diff --git a/.gitignore b/.gitignore index adb8493282c..0122a35bfb8 100644 --- a/.gitignore +++ b/.gitignore @@ -80,3 +80,5 @@ sysroot/ latest.txt /web-common/coverage + +web-local/duckdb* diff --git a/web-local/.gitignore b/web-local/.gitignore index 87d5b795f39..00f6ca02a68 100644 --- a/web-local/.gitignore +++ b/web-local/.gitignore @@ -9,4 +9,5 @@ *.wal log /playwright-report -/test-results \ No newline at end of file +/test-results +duckdb* \ No newline at end of file diff --git a/web-local/tests/UI/check-inspector-source-model.spec.ts b/web-local/tests/UI/check-inspector-source-model.spec.ts new file mode 100644 index 00000000000..fa03534d6a5 --- /dev/null +++ b/web-local/tests/UI/check-inspector-source-model.spec.ts @@ -0,0 +1,131 @@ +import { test } from "@playwright/test"; +import { test as RillTest } from "../utils/test"; +import { cloud, waitForTable } from "../utils/sourceHelpers"; +import { + checkInspectorSource, + checkInspectorModel, +} from "../utils/inspectorHelpers"; +import { createModel } from "../utils/modelHelpers"; + +// Testing the contents of the Inspector Panel +// Does the correct rows and columns appear, and does each column have a visible graph? +test.describe("Checking the Inspector Panel for Source and Model. Check if values are correct as well as if the UI populates graph.", () => { + RillTest("Reading Source into Rill from GCS", async ({ page }) => { + console.log("Testing cloud sales data ingestion..."); + await Promise.all([ + waitForTable(page, "/sources/sales.yaml", [ + "sale_date", + "sale_id", + "duration_ms", + "customer_id", + "sales_amount_usd", + "products", + "discounts", + "region", + "is_online", + ]), + cloud(page, "sales.csv", "gcs"), + ]); + console.log("Sales table validated."); + + await checkInspectorSource(page, "100,000", "9", [ + "sale_date", + "sale_id", + "duration_ms", + "customer_id", + "sales_amount_usd", + "products", + "discounts", + "region", + "is_online", + ]); + console.log("Testing cloud customer data ingestion..."); + await Promise.all([ + waitForTable(page, "/sources/customer_data.yaml", [ + "customer_id", + "name", + "email", + "signup_date", + "preferences", + "total_spent_usd", + "loyalty_tier", + "is_active", + ]), + cloud(page, "customer_data.csv", "gcs"), + ]); + console.log("Customer data table validated."); + await checkInspectorSource(page, "10,000", "8", [ + "signup_date", + "customer_id", + "name", + "email", + "preferences", + "total_spent_usd", + "loyalty_tier", + "is_active", + ]), + console.log("Creating model to join sources."); + await createModel(page, "joined_model.sql"); + // wait for textbox to appear for model + await page.waitForSelector('div[role="textbox"]'); + + await page.evaluate(() => { + // Ensure the parent textbox is focused for typing + const parentTextbox = document.querySelector('div[role="textbox"]'); + if (parentTextbox) { + parentTextbox.focus(); + } else { + console.error("Parent textbox not found!"); + } + }); + + // Mimic typing in the child contenteditable div + const childTextbox = await page.locator( + 'div[role="textbox"] div.cm-content', + ); + await childTextbox.click(); // Ensure it's focused for typing + + // Clear existing contents + await childTextbox.press("Meta+A"); // need to check this + await childTextbox.press("Backspace"); // Delete selected text + + const lines = [ + "-- Model SQL", + "-- Reference documentation: https://docs.rilldata.com/reference/project-files/models", + "SELECT a.*,", + " b.* exclude customer_id", + "FROM sales AS a", + "LEFT JOIN customer_data AS b", + "ON a.customer_id = b.customer_id", + "", + "", + ]; + + // Type each line with a newline after + for (const line of lines) { + await childTextbox.type(line); // Type the line + await childTextbox.press("Enter"); // Press Enter for a new line + } + + console.log("Content typed successfully."); + await checkInspectorModel(page, "100,000", "16", [ + "sale_date", + "sale_id", + "duration_ms", + "customer_id", + "sales_amount_usd", + "products", + "discounts", + "region", + "is_online", + "signup_date", + "customer_id", + "name", + "email", + "preferences", + "total_spent_usd", + "loyalty_tier", + "is_active", + ]); + }); +}); diff --git a/web-local/tests/UI/check-model-ui-buttons.spec.ts b/web-local/tests/UI/check-model-ui-buttons.spec.ts new file mode 100644 index 00000000000..529fc689470 --- /dev/null +++ b/web-local/tests/UI/check-model-ui-buttons.spec.ts @@ -0,0 +1,176 @@ +import { test, expect } from "@playwright/test"; +import { test as RillTest } from "../utils/test"; +import { cloud, waitForTable } from "../utils/sourceHelpers"; +import { waitForFileNavEntry } from "../utils/waitHelpers"; +import { + actionUsingMenu, + checkExistInConnector, + renameFileUsingMenu, +} from "../utils/commonHelpers"; + +// GCS source ingestion test +// based on public bucket gs://playwright-gcs-qa/* +// Can add more files as required, currently parquet.gz files are erroring so removed. + +test.describe("Check Source UI buttons.", () => { + RillTest("Reading Source into Rill from GCS", async ({ page }) => { + console.log("Testing cloud sales data ingestion..."); + await Promise.all([ + waitForTable(page, "/sources/sales.yaml", [ + "sale_date", + "sale_id", + "duration_ms", + "customer_id", + "sales_amount_usd", + "products", + "discounts", + "region", + "is_online", + ]), + cloud(page, "sales.csv", "gcs"), + ]); + console.log("Sales table validated..."); + + // Create Model! + console.log("Creating Create Model Button..."); + await Promise.all([ + waitForFileNavEntry(page, "/models/sales_model.sql", false), //set true? + page.getByRole("button", { name: "Create model" }).click(), + ]); + + // CHECK CONNECTORS for MODEL (table name dynamic so wildcard) + await checkExistInConnector(page, "duckdb", "main_db", "sales_model"); + + // CHECKING BUTTONS + //Close File Explore Sidebar + await page.locator('span[aria-label="Close sidebar"]').click(); + // Assert that the class changes + const sidebarClose = page.locator(".sidebar.svelte-5nrsv4"); + await expect(sidebarClose).toHaveClass("sidebar svelte-5nrsv4 hide"); + + await page.locator('span[aria-label="Show sidebar"]').click(); + // Assert that the class changes + const sidebarOpen = page.locator(".sidebar.svelte-5nrsv4"); + await expect(sidebarOpen).toHaveClass("sidebar svelte-5nrsv4"); + + // checking the refresh button + await page.locator('button[aria-label="Refresh Model"]').click(); //#6316, need to find where this gets added + await expect( + page.getByText("Building model sales_model").first().isVisible(), + ).toBeTruthy(); // Test will fail if the text is not visible + + // checking the panels , + await page.getByRole("button", { name: "Toggle table visibility" }).click(); // #6308 + const resultsPreviewTable = await page.locator( + '[aria-label="Results Preview Table"]', + ); // #6316 + await expect(resultsPreviewTable).toBeHidden(); + await expect(resultsPreviewTable.locator(`text="sale_id"`)).toHaveCount(0); + + await page + .getByRole("button", { name: "Toggle inspector visibility" }) + .click(); // #6308 + const inspectorPanel = await page.locator('[aria-label="Inspector Panel"]'); // #6316 + await expect(inspectorPanel).toBeHidden(); + await expect(inspectorPanel.locator(`text="rows"`)).toHaveCount(0); + + // Wait for the download and confirm success (CSV, XLSX, Parquet) + const [downloadCSV] = await Promise.all([ + page.waitForEvent("download"), // Wait for the download event + page.getByLabel("Export Model Data").click(), // Dropdown + page.getByRole("menuitem", { name: "Export as CSV" }).click(), // Export + ]); + + const filePathCSV = await downloadCSV.path(); + if (filePathCSV) { + console.log(`File successfully downloaded to: ${filePathCSV}`); + } else { + console.error("Download failed."); + } + + const [downloadParquet] = await Promise.all([ + page.waitForEvent("download"), // Wait for the download event + page.getByLabel("Export Model Data").click(), // Dropdown + page + .locator('div[role="menuitem"]:has-text("Export as Parquet")') + .click(), // Export + ]); + + const filePathParquet = await downloadParquet.path(); + if (filePathParquet) { + console.log(`File successfully downloaded to: ${filePathParquet}`); + } else { + console.error("Download failed."); + } + + const [downloadXSLX] = await Promise.all([ + page.waitForEvent("download"), // Wait for the download event + page.getByLabel("Export Model Data").click(), // Dropdown + page.locator('div[role="menuitem"]:has-text("Export as XLSX")').click(), // Export + ]); + + const filePathXLSX = await downloadXSLX.path(); + if (filePathXLSX) { + console.log(`File successfully downloaded to: ${filePathXLSX}`); + } else { + console.error("Download failed."); + } + + // Select "Generate Metrics with AI", + await Promise.all([ + waitForFileNavEntry(page, "/metrics/sales_model_metrics.yaml", false), //set true? + page.getByRole("button", { name: "Generate metrics view" }).click(), + ]); + + // Return to source and check Go to for both models. + await page.locator('span:has-text("sales_model.sql")').click(); + + await page.getByRole("button", { name: "Go to metrics view" }).click(); + + await Promise.all([ + waitForFileNavEntry(page, "/metrics/sales_model_metrics_1.yaml", false), //set true? + page.getByText("Create metrics view").click(), + ]); + + await expect( + page.getByRole("link", { name: "sales_model_metrics.yaml" }), + ).toBeVisible(); + await expect( + page.getByRole("link", { name: "sales_model_metrics_1.yaml" }), + ).toBeVisible(); + + // Delete a metrics vie and rename another + await page.locator('span:has-text("sales_model_metrics.yaml")').hover(); + await actionUsingMenu(page, "/sales_model_metrics.yaml", "Delete"); + + await renameFileUsingMenu( + page, + "/metrics/sales_model_metrics_1.yaml", + "random_metrics.yaml", + ); + + // Check the model and metrics are still linked + await page.locator('span:has-text("sales_model.sql")').click(); + await page.getByRole("button", { name: "Go to metrics view" }).click(); + await page + .locator('div[role="menuitem"]:has-text("Create metrics view")') + .waitFor(); + await expect( + page.getByRole("menuitem", { name: "random_metrics", exact: true }), + ).toBeVisible(); + await page + .getByRole("menuitem", { name: "random_metrics", exact: true }) + .click(); + + // Can add further testing like renaming files and creating metrics from button to see if number is correct. + + await page.locator('span:has-text("random_metrics.yaml")').hover(); + await actionUsingMenu(page, "/random_metrics.yaml", "Delete"); + + // Check the UI has returned to Generate metrics view with AI + await page.locator('span:has-text("sales_model.sql")').click(); + await expect( + page.getByRole("button", { name: "Generate metrics view" }), + ).toBeVisible(); + }); +}); diff --git a/web-local/tests/UI/check-source-ui-buttons.spec.ts b/web-local/tests/UI/check-source-ui-buttons.spec.ts new file mode 100644 index 00000000000..a94185700ce --- /dev/null +++ b/web-local/tests/UI/check-source-ui-buttons.spec.ts @@ -0,0 +1,147 @@ +import { test, expect } from "@playwright/test"; +import { test as RillTest } from "../utils/test"; +import { cloud, waitForTable } from "../utils/sourceHelpers"; +import { + actionUsingMenu, + renameFileUsingMenu, + checkExistInConnector, +} from "../utils/commonHelpers"; + +// Testing functionality of all the buttons in the source page. +// Refresh, "Create Model", "Go to "(after creating model), panels + +test.describe("Check Source UI buttons.", () => { + RillTest("Reading Source into Rill from GCS", async ({ page }) => { + console.log("Testing cloud sales data ingestion..."); + await Promise.all([ + waitForTable(page, "/sources/sales.yaml", [ + "sale_date", + "sale_id", + "duration_ms", + "customer_id", + "sales_amount_usd", + "products", + "discounts", + "region", + "is_online", + ]), + cloud(page, "sales.csv", "gcs"), + ]); + console.log("Sales table validated..."); + + // CHECK CONNECTORS for SOURCE (table name dynamic so wildcard) + await checkExistInConnector(page, "duckdb", "main_db", "sales"); + + // CHECKING BUTTONS + + //Close File Explore Sidebar + await page.locator('span[aria-label="Close sidebar"]').click(); + // Assert that the class changes + const sidebarClose = page.locator(".sidebar.svelte-5nrsv4"); + await expect(sidebarClose).toHaveClass("sidebar svelte-5nrsv4 hide"); + + await page.locator('span[aria-label="Show sidebar"]').click(); + // Assert that the class changes + const sidebarOpen = page.locator(".sidebar.svelte-5nrsv4"); + await expect(sidebarOpen).toHaveClass("sidebar svelte-5nrsv4"); + + // checking the refresh button + await Promise.all([ + page.locator('button[aria-label="Refresh"]').click(), + expect(page.getByText("Ingesting source sales").first()).toBeVisible(), // Test will fail if the text is not visible + ]); + // checking the panels , + await page.getByRole("button", { name: "Toggle table visibility" }).click(); // #6308 + const resultsPreviewTableClose = await page.locator( + '[aria-label="Results Preview Table"]', + ); // #6316 + await expect(resultsPreviewTableClose).toBeHidden(); + + await page.getByRole("button", { name: "Toggle table visibility" }).click(); // #6308 + const resultsPreviewTableOpen = await page.locator( + '[aria-label="Results Preview Table"]', + ); // #6316 + await expect(resultsPreviewTableOpen).toBeVisible(); + + await page + .getByRole("button", { name: "Toggle inspector visibility" }) + .click(); // #6308 + const inspectorPanelClose = await page.locator( + '[aria-label="Inspector Panel"]', + ); // #6316 + await expect(inspectorPanelClose).toBeHidden(); + + await page + .getByRole("button", { name: "Toggle inspector visibility" }) + .click(); // #6308 + const inspectorPanelOpen = await page.locator( + '[aria-label="Inspector Panel"]', + ); // #6316 + await expect(inspectorPanelOpen).toBeVisible(); + + // Create Model! + console.log("Creating Create Model Button..."); + await Promise.all([ + // waitForFileNavEntry(page, "/files/models/sales_model.sql", false), //set true? + page.getByRole("button", { name: "Create model" }).click(), + ]); + + // Return to Source, Select Go to. -> create model, check that its suffixed "_1" + await page.locator('span:has-text("sales.yaml")').click(); + + // waitForFileNavEntry(page, "/models/sales_model_1.sql", false), //set true? + await page.getByRole("button", { name: "Go to" }).click(); + await page + .locator('div[role="menuitem"]:has-text("Create model")') + .waitFor(); + await page.locator('div[role="menuitem"]:has-text("Create model")').click(); + + // Return to source and check Go to for both models. + await page.locator('span:has-text("sales.yaml")').click(); + await page.getByRole("button", { name: "Go to" }).click(); + await page + .locator('div[role="menuitem"]:has-text("Create model")') + .waitFor(); + await expect( + page.locator('a[role="menuitem"][href="/files/models/sales_model.sql"]'), + ).toBeVisible(); + await expect( + page.locator( + 'a[role="menuitem"][href="/files/models/sales_model_1.sql"]', + ), + ).toBeVisible(); + + // Delete and rename models and confirm back to Create model + await page.locator('span:has-text("sales_model.sql")').hover(); + await actionUsingMenu(page, "/sales_model.sql", "Delete"); + + await renameFileUsingMenu( + page, + "/models/sales_model_1.sql", + "random_model.sql", + ); + + // Check the source and model are still linked + await page.locator('span:has-text("sales.yaml")').click(); + await page.getByRole("button", { name: "Go to" }).click(); + await page + .locator('div[role="menuitem"]:has-text("Create model")') + .waitFor(); + await expect( + page.locator('a[role="menuitem"][href="/files/models/random_model.sql"]'), + ).toBeVisible(); + await page + .locator('a[role="menuitem"][href="/files/models/random_model.sql"]') + .click(); + + // Delete new model + await page.locator('span:has-text("random_model.sql")').hover(); + await actionUsingMenu(page, "/random_model.sql", "Delete"); + + // Check the UI has returned to Create Model + await page.locator('span:has-text("sales.yaml")').click(); + await expect( + page.getByRole("button", { name: "Create model" }), + ).toBeVisible(); + }); +}); diff --git a/web-local/tests/data/customer_data_mysql.csv b/web-local/tests/data/customer_data_mysql.csv new file mode 100644 index 00000000000..f8ce593a8ab --- /dev/null +++ b/web-local/tests/data/customer_data_mysql.csv @@ -0,0 +1,10001 @@ +customer_id,name,email,signup_date,preferences,total_spent_usd,loyalty_tier,is_active +1,Courtney Burke,ssolis@gmail.com,2024-05-19,"{""language"": ""DE"", ""currency"": ""CAD""}",7123.62,Silver,1 +2,Angela Smith,hebertkristen@yahoo.com,2021-02-18,"{""language"": ""DE"", ""currency"": ""GBP""}",5859.67,Bronze,1 +3,Nicholas Guzman,michellecochran@king-harrison.net,2024-09-30,"{""language"": ""IT"", ""currency"": ""GBP""}",3640.24,Bronze,1 +4,Sara Sanchez,donaldlarson@yahoo.com,2024-06-14,"{""language"": ""FR"", ""currency"": ""USD""}",9800.27,Silver,1 +5,James Juarez,patriciamiller@hotmail.com,2023-10-21,"{""language"": ""FR"", ""currency"": ""CAD""}",8205.67,Bronze,0 +6,Katherine Kennedy,christopherramirez@gonzalez.com,2023-01-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7898.1,Silver,1 +7,Maria Ramirez,duffyaustin@yahoo.com,2024-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",3224.22,Bronze,1 +8,Carla Harvey,christopher94@gmail.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",378.84,Gold,0 +9,Beth Hall,fieldskari@richards-hall.com,2023-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",4699.92,Silver,1 +10,Veronica Adkins,uwhite@yahoo.com,2024-10-30,"{""language"": ""FR"", ""currency"": ""GBP""}",9375.77,Gold,1 +11,Cindy George,kristinaperry@hotmail.com,2021-03-01,"{""language"": ""FR"", ""currency"": ""MXN""}",4826.01,Silver,1 +12,James Carter,pittmanerin@yahoo.com,2021-09-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9866.7,Silver,0 +13,Nicole Edwards,robert40@glenn.biz,2021-11-14,"{""language"": ""EN"", ""currency"": ""USD""}",582.69,Bronze,0 +14,Kristin Hudson,davilarobert@gmail.com,2020-03-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1302.32,Gold,0 +15,Sarah Barrett,medinarichard@gmail.com,2022-04-23,"{""language"": ""IT"", ""currency"": ""MXN""}",6209.26,Silver,0 +16,Casey Chen,cardenasalicia@perez.com,2021-08-12,"{""language"": ""IT"", ""currency"": ""MXN""}",9849.33,Silver,0 +17,Carla Schwartz,williamsshannon@smith.com,2022-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",800.89,Bronze,0 +18,James Johns,williamsrobert@singleton.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5635.43,Silver,1 +19,Tommy Williams,spencerkayla@clark.com,2022-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",6044.41,Bronze,0 +20,Devon Taylor,chelsey35@taylor-harris.info,2022-01-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6486.02,Gold,1 +21,Charles Wilson,sgrimes@yahoo.com,2020-11-08,"{""language"": ""EN"", ""currency"": ""CAD""}",3368.51,Silver,0 +22,Edward Garcia,martinbrandy@orr.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""USD""}",4513.7,Bronze,1 +23,Jason Burns,markmoore@gmail.com,2021-01-16,"{""language"": ""EN"", ""currency"": ""EUR""}",2646.63,Gold,0 +24,William Wiggins,butlersherry@hotmail.com,2021-07-31,"{""language"": ""FR"", ""currency"": ""EUR""}",4808.56,Bronze,1 +25,Kyle Hopkins,xthompson@bird-neal.com,2024-08-15,"{""language"": ""EN"", ""currency"": ""EUR""}",433.35,Gold,1 +26,Tristan Mckenzie,kathleenhamilton@taylor.biz,2021-12-25,"{""language"": ""DE"", ""currency"": ""GBP""}",8871.99,Gold,0 +27,Ashley Jenkins,nsanders@guzman.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8682.14,Silver,1 +28,Mary Harris,amy09@kerr.com,2020-01-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6400.06,Silver,0 +29,Adrian Gonzales,miranda19@yahoo.com,2021-09-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2677.6,Bronze,1 +30,Kurt Allen,amandaflynn@lewis.net,2020-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5652.42,Gold,0 +31,Eric Henry,michaelhunter@gmail.com,2021-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",8095.01,Silver,1 +32,Sergio Miller,robert34@edwards.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",6549.54,Bronze,1 +33,Alejandro Gomez,darrell28@perez.org,2021-01-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7978.03,Gold,1 +34,Elizabeth Ramirez,andrew13@hotmail.com,2022-06-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3911.25,Gold,0 +35,Rebecca Campos,gilljulie@hughes-brown.com,2021-03-27,"{""language"": ""FR"", ""currency"": ""EUR""}",4884.72,Bronze,0 +36,Adam Hunter,kgallagher@bass.com,2022-07-19,"{""language"": ""FR"", ""currency"": ""CAD""}",1736.64,Gold,0 +37,Richard Clark MD,awilson@potts.net,2024-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8982.47,Bronze,0 +38,Suzanne Ramsey,tmartinez@gmail.com,2020-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",226.45,Bronze,0 +39,Clayton Frazier,bryanday@gmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8498.52,Silver,1 +40,Angela Weber,oorozco@yahoo.com,2024-05-30,"{""language"": ""IT"", ""currency"": ""CAD""}",5389.37,Bronze,0 +41,Loretta Jackson,sarapalmer@hotmail.com,2022-11-16,"{""language"": ""IT"", ""currency"": ""CAD""}",2218.16,Silver,0 +42,Robert Barnes,tyler52@acosta.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""MXN""}",1309.5,Bronze,0 +43,Jesse Young,cortezchad@hotmail.com,2020-07-27,"{""language"": ""IT"", ""currency"": ""USD""}",7693.87,Silver,1 +44,Adam Thompson,aford@yahoo.com,2024-04-12,"{""language"": ""EN"", ""currency"": ""MXN""}",4626.84,Gold,1 +45,Hannah Little,eugene56@allen.com,2024-04-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2742.3,Silver,1 +46,Amanda Alvarez,griffinwilliam@williams-kelly.org,2022-09-25,"{""language"": ""EN"", ""currency"": ""EUR""}",7111.69,Gold,1 +47,Stephanie Alexander,uturner@gmail.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""EUR""}",4802.07,Gold,1 +48,William Carter,weberjerry@yahoo.com,2020-07-08,"{""language"": ""FR"", ""currency"": ""USD""}",969.69,Gold,0 +49,Tonya Jones,robin98@morgan.com,2021-04-17,"{""language"": ""IT"", ""currency"": ""USD""}",1598.18,Gold,1 +50,Michelle Duran,rwalker@gmail.com,2024-07-28,"{""language"": ""EN"", ""currency"": ""USD""}",6267.56,Gold,1 +51,Brian Rodriguez,sawyerkaren@hotmail.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""GBP""}",6711.0,Bronze,0 +52,Julie Luna,astewart@curry.com,2022-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9488.43,Bronze,0 +53,Chad Gibson,paul90@hotmail.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",2085.44,Bronze,0 +54,Nicole Mosley,nicholasgibbs@gmail.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""EUR""}",1432.37,Bronze,0 +55,Wendy Myers,wattsbrooke@oneal.com,2023-05-22,"{""language"": ""ES"", ""currency"": ""MXN""}",2421.21,Silver,1 +56,Brian Lawrence,michellefranklin@gmail.com,2021-11-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6219.3,Silver,1 +57,Tiffany Cole,samueldixon@martinez.biz,2020-10-10,"{""language"": ""FR"", ""currency"": ""MXN""}",1272.88,Gold,1 +58,Allen Ferguson,lambamanda@gmail.com,2020-02-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4332.66,Gold,0 +59,Erik Stewart,kristi29@gmail.com,2021-11-07,"{""language"": ""DE"", ""currency"": ""MXN""}",2641.19,Gold,1 +60,Jason Miller,curtismcintosh@wright-woods.com,2020-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5399.43,Gold,1 +61,Vanessa Jones,blakejames@nelson.org,2021-10-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1168.24,Gold,0 +62,Sandra Elliott,jrice@le-phillips.com,2023-12-31,"{""language"": ""ES"", ""currency"": ""MXN""}",6967.95,Gold,0 +63,Todd Hall,bmassey@bryant-hernandez.com,2020-07-29,"{""language"": ""DE"", ""currency"": ""CAD""}",7105.86,Bronze,0 +64,George Williams,smithallison@rivera.com,2022-12-18,"{""language"": ""EN"", ""currency"": ""USD""}",3840.8,Gold,1 +65,Wayne Fitzpatrick,marcus56@yahoo.com,2020-12-12,"{""language"": ""FR"", ""currency"": ""EUR""}",2728.59,Silver,0 +66,Daniel Hernandez,james83@yahoo.com,2021-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",3232.77,Bronze,0 +67,Kathy Duke,robinsonsonya@pratt.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""CAD""}",206.83,Bronze,0 +68,Derrick Elliott,megan97@brown.com,2021-09-19,"{""language"": ""IT"", ""currency"": ""CAD""}",4870.2,Silver,1 +69,Kevin Nunez,emilyjones@hotmail.com,2021-07-20,"{""language"": ""EN"", ""currency"": ""CAD""}",8560.34,Silver,0 +70,Eric Daniels,morganbrittany@gmail.com,2021-01-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5485.59,Silver,0 +71,Randy Juarez,elizabethscott@jones.biz,2024-11-21,"{""language"": ""DE"", ""currency"": ""MXN""}",6672.9,Bronze,1 +72,Emily Dixon,vasquezsamantha@white-franklin.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""EUR""}",559.13,Bronze,1 +73,Timothy Medina,kristenmason@gmail.com,2021-09-10,"{""language"": ""IT"", ""currency"": ""USD""}",4652.41,Silver,0 +74,Sergio Griffin,stevenperry@yahoo.com,2020-08-16,"{""language"": ""IT"", ""currency"": ""EUR""}",1140.66,Gold,0 +75,Johnny Leonard,matthew98@yahoo.com,2022-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",3755.32,Gold,1 +76,Alex Willis,lanedanielle@thompson.com,2021-01-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5160.02,Silver,1 +77,Susan Hall,ypage@dyer-roberts.com,2022-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",3385.04,Silver,1 +78,Cathy Owens,jonesmichael@williams.org,2021-05-17,"{""language"": ""IT"", ""currency"": ""GBP""}",4272.04,Silver,0 +79,Christie Johnson,vshort@gmail.com,2022-11-03,"{""language"": ""EN"", ""currency"": ""USD""}",682.62,Gold,0 +80,Donna Mills,hillpaula@allen.com,2024-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",369.61,Bronze,1 +81,Jenny Costa,melissa98@hotmail.com,2023-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",5273.76,Silver,0 +82,Vickie Gonzalez,bguerrero@hotmail.com,2020-09-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1273.01,Silver,1 +83,Sherry Stevens,bhunter@hotmail.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""CAD""}",8560.51,Gold,0 +84,Stephen Jacobson,turnershelly@gmail.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4247.89,Gold,1 +85,Diane Sullivan,kimedward@harris.com,2022-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6602.1,Gold,0 +86,Juan Allen,larry47@elliott-ware.com,2021-07-21,"{""language"": ""IT"", ""currency"": ""GBP""}",7877.33,Bronze,0 +87,Lydia Collins,tamarascott@ross.com,2024-03-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5412.38,Gold,0 +88,William Taylor DVM,cynthia47@young-allen.info,2024-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6951.74,Bronze,0 +89,Douglas Crawford,kimberly76@graham-smith.biz,2020-05-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9351.72,Gold,0 +90,Samantha Murillo,andrew50@hotmail.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",8964.67,Gold,0 +91,Tiffany Mathews,johnsonmalik@nguyen-anderson.com,2021-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",1756.8,Silver,0 +92,Lee Brown,loribrown@hotmail.com,2022-09-08,"{""language"": ""EN"", ""currency"": ""GBP""}",6307.87,Bronze,0 +93,Michelle Johnson,alexandriahutchinson@gmail.com,2023-05-20,"{""language"": ""ES"", ""currency"": ""EUR""}",9392.72,Bronze,0 +94,Nicole Hall,nolantravis@hotmail.com,2020-08-16,"{""language"": ""IT"", ""currency"": ""USD""}",9987.96,Bronze,1 +95,Kayla Bell,dkeller@hotmail.com,2020-04-13,"{""language"": ""FR"", ""currency"": ""MXN""}",4827.37,Bronze,1 +96,Misty Morales,leelauren@kelley-jenkins.com,2020-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",5360.53,Silver,0 +97,Lisa Santos,nvargas@hotmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""CAD""}",6219.09,Silver,1 +98,John Jones,jenniferhenry@yahoo.com,2022-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3549.94,Bronze,1 +99,Melissa Ward,meganbentley@gmail.com,2020-08-17,"{""language"": ""ES"", ""currency"": ""USD""}",2987.5,Silver,1 +100,Melissa Wallace,yangmelissa@cantrell.biz,2021-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3387.73,Silver,1 +101,Jessica Fitzgerald,ocruz@oconnell.com,2020-10-01,"{""language"": ""ES"", ""currency"": ""GBP""}",3181.17,Gold,0 +102,Jeremy Wilkins,melissawu@yahoo.com,2022-02-01,"{""language"": ""DE"", ""currency"": ""EUR""}",5270.94,Bronze,1 +103,Michael Gutierrez,djohnson@higgins.biz,2024-11-14,"{""language"": ""DE"", ""currency"": ""EUR""}",726.22,Silver,0 +104,Ryan Lloyd,fbruce@bonilla.info,2023-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",3766.1,Gold,0 +105,Shannon Cox,guerrerojames@gmail.com,2020-10-31,"{""language"": ""IT"", ""currency"": ""USD""}",3835.85,Silver,0 +106,Maria Thomas,zhurst@gmail.com,2023-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",6204.94,Bronze,0 +107,Charles Atkinson,beth03@hotmail.com,2021-10-06,"{""language"": ""ES"", ""currency"": ""MXN""}",5663.23,Silver,1 +108,Michael Henderson,wnelson@herrera-myers.org,2020-05-13,"{""language"": ""IT"", ""currency"": ""GBP""}",8817.7,Bronze,0 +109,Bryan Duran,nwatson@brown.info,2022-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6561.48,Bronze,1 +110,Derrick Shelton,joshua87@hotmail.com,2020-06-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3945.76,Gold,1 +111,Catherine Nguyen,afreeman@hotmail.com,2023-04-11,"{""language"": ""EN"", ""currency"": ""USD""}",382.59,Bronze,0 +112,Daniel Brewer,rivasjaclyn@mcmahon.net,2021-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6564.51,Gold,0 +113,Deborah Wade,jacqueline21@golden-powell.info,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",5142.9,Bronze,0 +114,Jennifer Lara,xfreeman@gmail.com,2020-03-11,"{""language"": ""DE"", ""currency"": ""EUR""}",9501.04,Bronze,0 +115,Travis Holmes,christinajohnson@white.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""USD""}",5134.86,Gold,1 +116,Michelle Cummings,bryantmallory@gmail.com,2023-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",7882.0,Silver,0 +117,John Ward,pbarker@hotmail.com,2021-12-25,"{""language"": ""DE"", ""currency"": ""CAD""}",9388.22,Silver,1 +118,Stephanie Johnston,robertmiranda@yahoo.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8856.07,Gold,1 +119,William Hubbard,patrick43@hotmail.com,2024-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8873.54,Gold,0 +120,Michael Murphy,lovesusan@barnett.info,2022-01-06,"{""language"": ""ES"", ""currency"": ""CAD""}",4519.82,Bronze,0 +121,Douglas Carlson,jeffreysmith@burns.com,2024-03-03,"{""language"": ""FR"", ""currency"": ""USD""}",8368.75,Bronze,1 +122,Thomas Walters,stephanie61@evans.com,2021-02-08,"{""language"": ""DE"", ""currency"": ""CAD""}",5819.0,Bronze,0 +123,Mary Davidson,elizabethmurphy@hotmail.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""EUR""}",4963.58,Gold,0 +124,Ashley Adams,christopher92@hotmail.com,2024-02-02,"{""language"": ""EN"", ""currency"": ""USD""}",6712.67,Gold,1 +125,Mrs. Julie Shaw PhD,parkstina@harrison.com,2023-09-23,"{""language"": ""EN"", ""currency"": ""CAD""}",5392.75,Gold,1 +126,Michael Schmidt,tyleroneal@hotmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",6453.49,Gold,1 +127,Justin Brown,jacobscott@gmail.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""EUR""}",616.69,Gold,1 +128,George Nielsen,omendoza@hunter.biz,2023-07-15,"{""language"": ""EN"", ""currency"": ""GBP""}",5089.61,Gold,1 +129,Julian Diaz,kbeltran@adkins-dixon.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2957.99,Gold,0 +130,Thomas Johnson,linkimberly@gmail.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4741.25,Gold,0 +131,Randy Preston,casey67@yahoo.com,2020-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",9169.0,Silver,1 +132,Michael Kim,diane59@hotmail.com,2023-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",9141.61,Gold,1 +133,Elizabeth Vasquez,tscott@yahoo.com,2020-12-25,"{""language"": ""DE"", ""currency"": ""EUR""}",1055.76,Silver,1 +134,Donna Shelton,diane31@jackson-myers.com,2021-05-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5942.54,Gold,1 +135,Brenda Booth,austincrystal@yahoo.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""GBP""}",438.74,Gold,1 +136,John Woods,christinathomas@hotmail.com,2022-08-19,"{""language"": ""EN"", ""currency"": ""USD""}",3543.87,Bronze,1 +137,Julie Davis,jonathanallen@hotmail.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",368.5,Silver,1 +138,Matthew Taylor,jamesmelendez@yahoo.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""EUR""}",9806.48,Gold,0 +139,Michelle Carter,amanda97@rush-wise.com,2020-02-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2354.08,Silver,1 +140,Nathaniel Bass,penakenneth@gmail.com,2023-01-04,"{""language"": ""ES"", ""currency"": ""CAD""}",2465.74,Silver,1 +141,Renee Mcgrath,glawrence@gmail.com,2022-09-23,"{""language"": ""ES"", ""currency"": ""CAD""}",3732.68,Gold,1 +142,Amber Murray,kellyjordan@gmail.com,2021-07-15,"{""language"": ""DE"", ""currency"": ""USD""}",5301.45,Silver,0 +143,Joseph Keller,kelseypeterson@ibarra-terry.info,2021-04-01,"{""language"": ""DE"", ""currency"": ""MXN""}",1715.89,Gold,0 +144,Chelsey Evans,hansonmatthew@middleton.com,2020-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",8031.71,Gold,1 +145,Samantha Thompson,duncanstephen@gmail.com,2020-04-17,"{""language"": ""DE"", ""currency"": ""EUR""}",7569.79,Bronze,1 +146,Jeremy Young,gardnermike@hotmail.com,2024-07-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3770.34,Silver,1 +147,Christopher Johnson,samanthacamacho@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2895.08,Bronze,0 +148,Valerie Thomas,jessicasnyder@yahoo.com,2020-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",1064.61,Bronze,1 +149,Janice Moon,sharon19@sanchez.com,2022-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",370.33,Silver,1 +150,Elizabeth Walker,justin60@benton-obrien.net,2021-12-31,"{""language"": ""FR"", ""currency"": ""CAD""}",5138.2,Bronze,0 +151,Melissa Richmond,hectorjones@winters.com,2020-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",3463.08,Bronze,1 +152,Cody Cruz,vincentking@yahoo.com,2020-08-29,"{""language"": ""FR"", ""currency"": ""USD""}",2836.74,Silver,0 +153,Glen Nelson,garciajames@chapman.com,2022-05-16,"{""language"": ""EN"", ""currency"": ""USD""}",3236.46,Bronze,0 +154,Lauren Everett,dianawilliams@yahoo.com,2020-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",8772.1,Gold,0 +155,Kari Cross,hschroeder@hotmail.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",6411.03,Gold,0 +156,Melanie Barker,smithsandra@edwards.biz,2021-02-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1637.59,Silver,1 +157,Daniel Mcknight,rwest@henry.info,2024-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",901.65,Gold,0 +158,Christopher Ball,lisastanley@bailey.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8084.25,Silver,1 +159,Mary Coleman,rodriguezpaul@hotmail.com,2022-11-06,"{""language"": ""IT"", ""currency"": ""CAD""}",1330.63,Bronze,1 +160,Joseph Mcintosh,nathanmercer@gmail.com,2021-04-24,"{""language"": ""DE"", ""currency"": ""USD""}",4490.18,Gold,1 +161,Michelle Leonard,xmarshall@yahoo.com,2024-11-17,"{""language"": ""EN"", ""currency"": ""EUR""}",6262.62,Silver,0 +162,Mary Coleman,alexandra77@yahoo.com,2024-02-14,"{""language"": ""IT"", ""currency"": ""CAD""}",9291.69,Bronze,0 +163,Jeremy Mckay,pattonstacey@gmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",689.78,Bronze,1 +164,Julia Villarreal,billcastillo@yahoo.com,2024-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",6619.88,Silver,0 +165,Michael Palmer,christinaalexander@carpenter.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",8181.9,Gold,0 +166,Luke Gutierrez,adam27@hotmail.com,2020-02-05,"{""language"": ""IT"", ""currency"": ""GBP""}",9980.84,Gold,0 +167,Kristopher Powell,gdennis@yahoo.com,2023-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5163.97,Gold,1 +168,Cody Nash,urivera@black-wilkerson.com,2022-01-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1090.12,Silver,0 +169,Crystal Martinez,casey97@shelton.com,2024-07-29,"{""language"": ""DE"", ""currency"": ""USD""}",6528.38,Silver,0 +170,Jennifer Li,jbrown@robertson-webb.com,2022-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",5462.19,Bronze,1 +171,Jacob Brown,matthewhamilton@brennan.info,2022-08-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9051.36,Bronze,0 +172,Melinda Taylor,maria49@barry.com,2020-12-20,"{""language"": ""EN"", ""currency"": ""USD""}",1093.88,Bronze,0 +173,Benjamin Cruz,james30@jordan-hanson.net,2022-02-24,"{""language"": ""FR"", ""currency"": ""USD""}",6857.36,Gold,1 +174,Mike Campbell,eileen19@gmail.com,2024-03-27,"{""language"": ""EN"", ""currency"": ""CAD""}",7029.94,Silver,1 +175,Paul Valdez,rcastillo@yahoo.com,2020-01-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1881.39,Gold,0 +176,Frank Hudson,randallnelson@yahoo.com,2023-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",8053.18,Gold,0 +177,Douglas Hayes,bradshawkyle@hotmail.com,2024-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",1314.5,Silver,0 +178,Monique Perez,othomas@proctor-miller.biz,2021-03-03,"{""language"": ""ES"", ""currency"": ""EUR""}",586.63,Gold,1 +179,Christopher Davis,bellemily@warren.com,2023-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",3732.65,Silver,1 +180,Steven Gomez,daniel77@bond-craig.com,2021-09-06,"{""language"": ""FR"", ""currency"": ""MXN""}",2362.59,Silver,0 +181,Timothy Gray,lorrainewilliams@guerrero-trujillo.com,2020-12-30,"{""language"": ""DE"", ""currency"": ""MXN""}",2029.62,Gold,1 +182,Mark Velasquez,ccherry@hotmail.com,2020-10-21,"{""language"": ""EN"", ""currency"": ""EUR""}",6668.41,Silver,0 +183,Steven Reyes,kimhale@smith.com,2020-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3523.33,Bronze,0 +184,Margaret Osborn,okelly@gmail.com,2024-03-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3689.53,Bronze,0 +185,Tina Huang,mcguireashley@conley-martinez.org,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2819.56,Gold,0 +186,Christopher Hernandez,kristagonzalez@williams.com,2023-08-19,"{""language"": ""FR"", ""currency"": ""CAD""}",9639.0,Silver,0 +187,Jennifer Caldwell,jacksonsandra@hotmail.com,2022-06-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1813.82,Silver,1 +188,Erik Sims,joseph25@gmail.com,2020-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",6340.79,Gold,0 +189,Jason Hampton,katrinacastro@hotmail.com,2022-06-25,"{""language"": ""IT"", ""currency"": ""CAD""}",2058.95,Silver,1 +190,Randy Juarez,dunnjoseph@benton.net,2021-11-27,"{""language"": ""IT"", ""currency"": ""MXN""}",7950.88,Bronze,1 +191,Steven Grant,edwardvalentine@hotmail.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""USD""}",694.84,Bronze,1 +192,Cindy Martinez,tmitchell@hotmail.com,2020-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",8962.5,Silver,1 +193,Sydney Myers,daniellechapman@yahoo.com,2021-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",4365.19,Gold,0 +194,Christopher Williams,kgreer@yahoo.com,2024-11-10,"{""language"": ""DE"", ""currency"": ""GBP""}",4650.5,Bronze,0 +195,Jeffrey Roberts,lisa21@hotmail.com,2022-02-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8147.62,Bronze,1 +196,Elizabeth Beck DVM,angelica84@armstrong.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1820.72,Bronze,0 +197,Tony Gutierrez,mark53@gay.biz,2020-01-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7053.89,Bronze,0 +198,Nicholas Smith,gouldchristina@yahoo.com,2022-12-19,"{""language"": ""ES"", ""currency"": ""USD""}",6904.27,Silver,0 +199,Madison Floyd,beckerscott@dunn-donaldson.com,2020-06-11,"{""language"": ""IT"", ""currency"": ""GBP""}",6393.21,Silver,0 +200,Lisa Bryant,johnsonkylie@gmail.com,2023-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",4585.06,Gold,0 +201,Ashley Franco,thompsonjohn@gmail.com,2024-10-16,"{""language"": ""IT"", ""currency"": ""USD""}",5701.21,Silver,0 +202,Christine Dodson,barrjohn@mccoy-johnson.com,2024-07-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3334.44,Bronze,0 +203,Kimberly Green,karlamcclain@christensen.com,2020-11-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4876.89,Bronze,1 +204,Brian Reese,raymondbrewer@tate-gardner.biz,2024-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",9738.68,Bronze,0 +205,Caitlin Andrade,castrojeffery@yahoo.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""MXN""}",6285.84,Gold,0 +206,Bryan Melendez,noahhenderson@howe.com,2023-05-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7930.18,Bronze,1 +207,Jill Michael,lorrainesullivan@gmail.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4658.99,Bronze,0 +208,Margaret Hatfield,crystaldavis@yahoo.com,2022-01-28,"{""language"": ""IT"", ""currency"": ""USD""}",7090.71,Gold,0 +209,Brian Smith,steven86@hotmail.com,2022-05-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2453.78,Gold,0 +210,Christopher Rodriguez,hedwards@hotmail.com,2023-04-02,"{""language"": ""DE"", ""currency"": ""EUR""}",8586.08,Silver,0 +211,Jennifer Nguyen,patelkristin@gmail.com,2023-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6950.09,Gold,1 +212,Justin Young,paul96@yahoo.com,2023-01-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3372.45,Silver,0 +213,Jon Martin,blanchardtiffany@gmail.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",4993.51,Gold,1 +214,Gina Knight,turnersandra@yahoo.com,2023-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",9361.56,Bronze,1 +215,Ryan Cardenas,halltimothy@white-allen.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""EUR""}",6534.87,Silver,1 +216,Gary Thompson,sharonhall@brown-graves.com,2024-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",9953.17,Silver,1 +217,Andrea Christian,jchapman@hotmail.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1858.55,Silver,0 +218,Jeff Stanley,brian59@banks.com,2024-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",936.69,Gold,1 +219,Lori Hobbs,gonzalezdarrell@yahoo.com,2022-08-28,"{""language"": ""IT"", ""currency"": ""EUR""}",7360.95,Gold,1 +220,Traci Noble,baileypatricia@gallagher.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""CAD""}",928.36,Silver,1 +221,Robert Harper,nelsoncurtis@hernandez.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""CAD""}",6017.88,Gold,0 +222,Teresa West,vmalone@bishop-alvarez.com,2021-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5698.13,Silver,0 +223,Justin Stevens,yfox@rivera-woods.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9943.44,Gold,0 +224,Courtney Graham,nathanpeterson@hotmail.com,2020-01-10,"{""language"": ""DE"", ""currency"": ""EUR""}",9041.13,Bronze,0 +225,Jennifer Owens,mullinsmolly@harris.com,2022-08-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6841.53,Gold,0 +226,James Gilbert,baileytina@smith-black.biz,2020-01-19,"{""language"": ""DE"", ""currency"": ""EUR""}",342.28,Silver,1 +227,Jennifer Prince DVM,jowens@yahoo.com,2020-07-05,"{""language"": ""ES"", ""currency"": ""CAD""}",4920.64,Bronze,1 +228,Stacy Brown,joshuamullen@smith-johnson.org,2022-08-14,"{""language"": ""DE"", ""currency"": ""MXN""}",2090.18,Silver,0 +229,Elizabeth Schultz,daniellerichards@hotmail.com,2023-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",2342.39,Gold,1 +230,Kelly Pierce,housejennifer@hotmail.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""USD""}",8749.25,Silver,0 +231,Michael Bennett,austinflores@wilson-crawford.com,2023-09-12,"{""language"": ""IT"", ""currency"": ""USD""}",3311.71,Gold,0 +232,Mr. David Peterson,chad97@daniels-watkins.biz,2021-05-15,"{""language"": ""DE"", ""currency"": ""EUR""}",2420.11,Silver,0 +233,Joel Collins,mistywilliams@holden-garrett.com,2024-07-19,"{""language"": ""ES"", ""currency"": ""CAD""}",8588.56,Gold,0 +234,Steven Williams,kendra71@mendoza-joyce.com,2024-05-28,"{""language"": ""ES"", ""currency"": ""MXN""}",2991.81,Silver,0 +235,Daniel Lin,hfisher@hall-wiggins.info,2024-09-25,"{""language"": ""ES"", ""currency"": ""USD""}",6686.69,Silver,1 +236,Anne Lang,bmendoza@hotmail.com,2021-05-25,"{""language"": ""ES"", ""currency"": ""MXN""}",7228.85,Gold,0 +237,Vanessa Patterson,gerald56@sanchez.biz,2022-04-23,"{""language"": ""EN"", ""currency"": ""GBP""}",3131.54,Silver,0 +238,Omar Flores,oscarjones@hotmail.com,2024-09-21,"{""language"": ""EN"", ""currency"": ""MXN""}",5487.49,Gold,1 +239,Caleb Martin,jaclynlara@obrien.com,2022-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",505.72,Silver,0 +240,Marc Macdonald,hpowell@gallagher-johnson.info,2024-09-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8883.75,Gold,0 +241,Andre Perez,kallen@hardy.com,2020-09-02,"{""language"": ""ES"", ""currency"": ""MXN""}",7263.42,Gold,1 +242,Angela Ellis,daniellewebb@phillips-peters.biz,2021-10-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5682.95,Bronze,1 +243,Daniel Richardson,meganbaker@hotmail.com,2020-05-29,"{""language"": ""FR"", ""currency"": ""MXN""}",7167.16,Silver,0 +244,Samantha Taylor,wattsdustin@gmail.com,2020-04-25,"{""language"": ""ES"", ""currency"": ""USD""}",4228.07,Silver,1 +245,Joseph Decker,ssmith@patton-stewart.com,2022-09-22,"{""language"": ""FR"", ""currency"": ""GBP""}",6542.13,Bronze,0 +246,Adam Diaz,xfarmer@hotmail.com,2021-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",8164.88,Gold,0 +247,Laura Weaver,kpruitt@gmail.com,2021-06-14,"{""language"": ""IT"", ""currency"": ""USD""}",5360.59,Gold,0 +248,Michael James,brenda89@gmail.com,2022-08-28,"{""language"": ""ES"", ""currency"": ""EUR""}",7062.05,Gold,0 +249,Brooke Kaufman,trancory@gmail.com,2020-05-29,"{""language"": ""ES"", ""currency"": ""MXN""}",6374.28,Gold,1 +250,Luis Hunter,chandlerkristine@bowers.org,2023-11-17,"{""language"": ""ES"", ""currency"": ""USD""}",3347.87,Silver,1 +251,Donald Price,calderonsheri@gmail.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3196.19,Gold,0 +252,Tristan Harris,jacquelineramirez@gmail.com,2023-10-07,"{""language"": ""FR"", ""currency"": ""USD""}",6142.12,Silver,1 +253,Jonathan Pace,christinagarcia@gmail.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""USD""}",5531.28,Silver,0 +254,David Clark,cummingsalyssa@taylor.com,2021-07-28,"{""language"": ""IT"", ""currency"": ""GBP""}",1244.26,Silver,1 +255,Steven Thomas DVM,fzamora@williams.org,2022-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",361.83,Gold,1 +256,Thomas Hicks,aweeks@stevens.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",9321.87,Silver,0 +257,Stephanie Davis,simpsonpaul@yahoo.com,2021-03-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1575.22,Silver,1 +258,Kimberly Delgado,courtney81@yahoo.com,2023-01-02,"{""language"": ""IT"", ""currency"": ""EUR""}",2898.02,Bronze,1 +259,Elizabeth Ramirez,coltonwallace@gmail.com,2024-07-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3273.32,Silver,1 +260,Shelly Wells,denisecain@barry.net,2022-06-28,"{""language"": ""ES"", ""currency"": ""USD""}",5779.83,Bronze,0 +261,Melanie Perez,christopher18@griffin.info,2022-12-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9659.31,Gold,1 +262,Kimberly Young,vincentfarrell@hotmail.com,2020-09-25,"{""language"": ""EN"", ""currency"": ""EUR""}",9287.77,Bronze,0 +263,Chad Carlson,arose@yahoo.com,2022-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",3571.13,Bronze,1 +264,Jackson Vasquez,kellyrobert@reyes-simpson.com,2023-03-21,"{""language"": ""EN"", ""currency"": ""EUR""}",8334.95,Bronze,1 +265,Kimberly Anderson,victoria01@gmail.com,2024-03-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7826.9,Silver,1 +266,Kevin Williamson,wardmichael@yahoo.com,2022-02-04,"{""language"": ""EN"", ""currency"": ""EUR""}",357.12,Silver,1 +267,Annette Williamson,james63@yahoo.com,2020-09-20,"{""language"": ""FR"", ""currency"": ""EUR""}",9819.88,Gold,0 +268,Mr. Richard Jennings,lfowler@hotmail.com,2020-07-24,"{""language"": ""ES"", ""currency"": ""EUR""}",8329.98,Gold,0 +269,Ryan Terrell,michael36@hotmail.com,2024-04-08,"{""language"": ""FR"", ""currency"": ""EUR""}",467.06,Bronze,1 +270,Samantha Downs,christopher00@yahoo.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""GBP""}",56.59,Gold,1 +271,Renee Bailey,anthonyrocha@gmail.com,2022-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",4182.57,Silver,1 +272,Dwayne Clark,smahoney@villanueva.net,2023-11-29,"{""language"": ""IT"", ""currency"": ""USD""}",6749.93,Bronze,0 +273,Frank Carlson,orobertson@bradley.com,2024-02-20,"{""language"": ""DE"", ""currency"": ""USD""}",7786.76,Bronze,1 +274,James Smith,williamsnicole@yahoo.com,2023-03-13,"{""language"": ""ES"", ""currency"": ""USD""}",925.1,Silver,1 +275,Sheryl Smith,vblackburn@davis.com,2020-05-20,"{""language"": ""FR"", ""currency"": ""EUR""}",7625.2,Silver,0 +276,Cynthia Calhoun,christopherclayton@gmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7207.92,Bronze,0 +277,Michelle Mills,woodadam@gmail.com,2023-02-14,"{""language"": ""FR"", ""currency"": ""CAD""}",4152.0,Bronze,1 +278,Katherine Copeland,awest@hotmail.com,2024-06-14,"{""language"": ""FR"", ""currency"": ""EUR""}",7481.03,Silver,1 +279,Marcus Thornton,mannmelinda@hotmail.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8221.01,Gold,1 +280,Michael Miller,emily99@yahoo.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",761.72,Silver,1 +281,Walter Wilkins,zolsen@hotmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",2575.72,Gold,0 +282,Mary Holmes,williamsspencer@ward-bond.com,2021-06-18,"{""language"": ""EN"", ""currency"": ""USD""}",5280.38,Silver,0 +283,Donald Curtis,donald54@higgins-erickson.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""CAD""}",8988.03,Bronze,1 +284,Keith Tran,taylortoni@acosta.biz,2021-11-08,"{""language"": ""FR"", ""currency"": ""MXN""}",2627.68,Silver,1 +285,Katelyn Hurst,jonesnicole@hotmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8951.2,Bronze,0 +286,Edwin Daniels,katherine37@gmail.com,2021-04-25,"{""language"": ""DE"", ""currency"": ""USD""}",5145.43,Silver,1 +287,Joseph Williams,johnsonjohn@hotmail.com,2023-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",2751.17,Gold,0 +288,Kristen Jacobs,heather99@yahoo.com,2023-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",5729.12,Gold,0 +289,Samantha Johnson,obrewer@gmail.com,2024-03-24,"{""language"": ""IT"", ""currency"": ""EUR""}",1561.51,Bronze,0 +290,Robert Thompson,jenkinsjennifer@gmail.com,2023-01-29,"{""language"": ""IT"", ""currency"": ""CAD""}",6737.78,Silver,0 +291,Robert Summers,sheliadurham@hotmail.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7462.23,Silver,0 +292,Chloe Phillips,courtney23@armstrong.biz,2020-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",5022.17,Silver,1 +293,Kevin Wilson,mckinneytina@hayes.biz,2022-05-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1122.56,Bronze,0 +294,James Phillips,raymondlee@gmail.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""MXN""}",7820.25,Silver,0 +295,Donald Lopez,ujohnson@stanton.com,2023-05-06,"{""language"": ""FR"", ""currency"": ""EUR""}",3281.98,Bronze,0 +296,Patricia Walker DDS,francisco51@gmail.com,2022-05-24,"{""language"": ""FR"", ""currency"": ""MXN""}",9475.47,Gold,1 +297,Russell Lang,jose91@mann.biz,2020-04-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8657.6,Gold,1 +298,James Martin,jennifer98@estrada-marquez.biz,2023-04-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9587.66,Gold,0 +299,Brenda Acosta,william19@yahoo.com,2024-08-04,"{""language"": ""ES"", ""currency"": ""GBP""}",4208.18,Bronze,0 +300,Shelby Pierce,nicole00@yahoo.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",7345.77,Silver,1 +301,Pamela Williams,cruztracy@yahoo.com,2023-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",9584.55,Gold,0 +302,Laura Garcia,bdavies@cortez-rhodes.net,2020-08-25,"{""language"": ""EN"", ""currency"": ""GBP""}",2442.96,Gold,1 +303,Kristin Summers,brenda76@davis-kramer.net,2024-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1757.06,Gold,0 +304,Christopher Chan,joseph08@wood-wheeler.biz,2021-02-23,"{""language"": ""IT"", ""currency"": ""EUR""}",7076.45,Bronze,0 +305,Steven Lyons,wvance@norman.com,2024-06-20,"{""language"": ""FR"", ""currency"": ""CAD""}",6258.15,Bronze,1 +306,Rebecca Manning,michael59@hotmail.com,2023-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",346.15,Bronze,0 +307,Holly Martin,laurenwilliams@gmail.com,2021-05-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2705.65,Silver,0 +308,Natalie Evans,michelle87@hill-roth.info,2020-05-26,"{""language"": ""EN"", ""currency"": ""EUR""}",8771.18,Bronze,1 +309,Kim Walsh,nicolereed@watson-english.com,2024-02-28,"{""language"": ""EN"", ""currency"": ""EUR""}",7688.93,Bronze,0 +310,Mrs. Jacqueline Gray DDS,cramos@yahoo.com,2020-04-01,"{""language"": ""EN"", ""currency"": ""EUR""}",6149.55,Gold,0 +311,Krista Gonzalez,milessabrina@gmail.com,2021-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",917.28,Silver,0 +312,Tyler King,vanessa20@gmail.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3123.42,Gold,1 +313,Shawn Garcia,morrisjack@robinson.biz,2021-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",6299.58,Bronze,0 +314,Mr. Robert Carpenter,rodgersbenjamin@gmail.com,2022-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",303.73,Silver,0 +315,Kristina Smith,ihines@gmail.com,2024-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5106.45,Gold,0 +316,Ronnie Richardson,eaguilar@gmail.com,2024-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",334.45,Gold,1 +317,Kevin Ochoa,penapaul@yahoo.com,2023-07-04,"{""language"": ""EN"", ""currency"": ""EUR""}",6161.03,Gold,0 +318,Brian Jenkins,christinejoseph@walton-sanders.net,2020-03-26,"{""language"": ""ES"", ""currency"": ""CAD""}",4173.45,Silver,1 +319,Sydney Cantu,rachelgarcia@gmail.com,2020-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",7944.23,Bronze,1 +320,Crystal Trevino,kristy19@jordan.net,2024-09-09,"{""language"": ""EN"", ""currency"": ""EUR""}",283.84,Gold,0 +321,Stephen Brown,gsullivan@alvarez-marquez.com,2020-12-18,"{""language"": ""IT"", ""currency"": ""EUR""}",6201.28,Silver,0 +322,Debra Whitehead,amanda76@patterson.org,2020-10-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7336.21,Bronze,1 +323,Molly Patrick,nelsonlee@levy-valencia.net,2022-08-14,"{""language"": ""DE"", ""currency"": ""MXN""}",3402.63,Silver,1 +324,Jennifer Stewart,terrellgrant@pena.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""CAD""}",7891.3,Silver,1 +325,John Murphy,karen82@gmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",1436.28,Bronze,0 +326,Kevin Wilson,crivas@gmail.com,2024-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",2898.65,Silver,1 +327,Alexis Duarte,diana46@harrison.net,2019-12-24,"{""language"": ""DE"", ""currency"": ""CAD""}",3189.32,Silver,0 +328,Jacob Barker,mooredouglas@merritt-long.info,2022-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7599.43,Silver,0 +329,Mr. Randy Chapman,mendezmichelle@hernandez.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""USD""}",705.22,Bronze,1 +330,Kevin Reynolds,johnshort@pierce-ramirez.com,2024-11-17,"{""language"": ""IT"", ""currency"": ""CAD""}",5713.29,Bronze,0 +331,Alexis Wheeler,kelsey51@perez-miller.com,2023-02-21,"{""language"": ""EN"", ""currency"": ""EUR""}",2016.29,Silver,1 +332,Roger Sandoval,nolanrobert@hotmail.com,2020-02-10,"{""language"": ""EN"", ""currency"": ""GBP""}",1666.98,Bronze,0 +333,Matthew Martinez,sharonolsen@miller-willis.org,2020-04-22,"{""language"": ""EN"", ""currency"": ""EUR""}",6714.68,Silver,0 +334,Tami Lewis,nboyd@bean.com,2024-03-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8257.51,Bronze,1 +335,Samuel White,wstevens@hotmail.com,2023-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6954.64,Bronze,1 +336,Lynn Martin,joseph03@chang-ward.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""EUR""}",5028.43,Bronze,0 +337,Rhonda Edwards,ymyers@hotmail.com,2022-08-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5004.78,Bronze,1 +338,Stephen Chen,drakekristen@gmail.com,2024-11-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2520.79,Silver,0 +339,Erica Adams,vsmall@hotmail.com,2024-08-02,"{""language"": ""EN"", ""currency"": ""EUR""}",8219.24,Silver,1 +340,Jessica Davis,umoore@hotmail.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",5089.54,Bronze,1 +341,Glenn Graham,wbrown@yahoo.com,2020-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",219.81,Gold,0 +342,Brian Scott,rcain@horton.info,2021-05-25,"{""language"": ""ES"", ""currency"": ""GBP""}",3892.54,Silver,1 +343,Elizabeth Mendoza,allencaleb@gmail.com,2022-03-25,"{""language"": ""ES"", ""currency"": ""CAD""}",4577.02,Silver,1 +344,Hayley Watkins,taylortaylor@barber.com,2020-04-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9018.73,Gold,1 +345,Jeff Baxter,johnsonjason@gmail.com,2024-06-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4325.21,Bronze,1 +346,Luis Moore,wandacarney@hotmail.com,2021-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4038.76,Gold,1 +347,Matthew Moore,kimberly14@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",5059.71,Gold,0 +348,Jacob Tucker,matakayla@jackson.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""USD""}",9342.95,Silver,0 +349,Tammy Snyder,uchavez@hotmail.com,2019-12-25,"{""language"": ""FR"", ""currency"": ""MXN""}",9751.52,Gold,0 +350,Richard Collins,fullerjennifer@patterson.com,2024-08-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3703.64,Silver,0 +351,Michael Christensen,jhuerta@hotmail.com,2023-02-23,"{""language"": ""EN"", ""currency"": ""EUR""}",9129.36,Gold,1 +352,Aimee Thomas,crystalgarcia@yahoo.com,2024-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7225.22,Silver,1 +353,Kenneth Jones,ptorres@hotmail.com,2023-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3024.93,Silver,0 +354,Judy Hoffman,otorres@wilkins.info,2023-06-30,"{""language"": ""DE"", ""currency"": ""MXN""}",2643.55,Bronze,1 +355,Deanna Leonard,benjamin98@yahoo.com,2021-09-18,"{""language"": ""EN"", ""currency"": ""USD""}",9676.25,Bronze,0 +356,Christopher Kelly,brenda00@yahoo.com,2021-03-28,"{""language"": ""EN"", ""currency"": ""EUR""}",7455.33,Silver,0 +357,John Powers,turnersara@gmail.com,2024-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",787.15,Silver,1 +358,Angela Gomez,rwoodward@hotmail.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8778.69,Bronze,1 +359,Carolyn Richardson,jessicabailey@gmail.com,2022-01-20,"{""language"": ""EN"", ""currency"": ""USD""}",9705.8,Bronze,0 +360,Tonya Gill,joshuamays@hotmail.com,2021-08-30,"{""language"": ""EN"", ""currency"": ""USD""}",1107.58,Silver,0 +361,Kristina Harvey,vingram@santos.info,2022-01-12,"{""language"": ""IT"", ""currency"": ""MXN""}",2871.26,Silver,1 +362,Kelly Johnson,rowlanddouglas@jackson-bryan.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",3280.97,Bronze,0 +363,Brandi Vance,icunningham@bennett.com,2022-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",8954.05,Silver,1 +364,John King,lindaedwards@knapp-graham.com,2021-12-07,"{""language"": ""FR"", ""currency"": ""GBP""}",3030.71,Bronze,1 +365,Robert Duke,lmitchell@meza.org,2021-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4541.82,Silver,1 +366,James Harding,tonyperez@hotmail.com,2021-09-09,"{""language"": ""FR"", ""currency"": ""EUR""}",5523.84,Silver,0 +367,Traci Blanchard,acase@hotmail.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5813.65,Bronze,1 +368,Desiree Smith,rholmes@yahoo.com,2020-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",1147.42,Bronze,1 +369,Heather Randolph,laustin@lewis.info,2021-02-20,"{""language"": ""EN"", ""currency"": ""CAD""}",552.69,Gold,0 +370,Doris Ferguson MD,uhubbard@yahoo.com,2023-03-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5884.23,Gold,1 +371,Amanda Robinson,iramos@hotmail.com,2020-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4157.17,Gold,1 +372,Michael Esparza,njenkins@george.info,2019-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",1780.9,Silver,0 +373,Laura Weaver,zamorapriscilla@hernandez.com,2021-10-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9180.76,Silver,1 +374,Samuel Ellison,ccrawford@hotmail.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",6823.76,Silver,0 +375,Christopher Fisher,xwilcox@jimenez.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""GBP""}",1560.14,Silver,0 +376,Erika Snyder,mpalmer@yahoo.com,2020-11-19,"{""language"": ""FR"", ""currency"": ""MXN""}",755.18,Silver,0 +377,Eduardo Shea,santostaylor@jones.com,2020-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",720.21,Silver,1 +378,Christina Velazquez,vharris@braun.com,2020-10-14,"{""language"": ""DE"", ""currency"": ""CAD""}",4241.92,Silver,1 +379,Spencer White,ddiaz@stephenson.com,2022-06-17,"{""language"": ""FR"", ""currency"": ""EUR""}",1277.35,Bronze,0 +380,Patrick Davis,lisacobb@yahoo.com,2022-07-04,"{""language"": ""ES"", ""currency"": ""MXN""}",3173.3,Gold,1 +381,Vanessa Smith,michelle11@hotmail.com,2023-10-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6587.4,Bronze,0 +382,Benjamin Harris,lanekelly@mercer.com,2022-02-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4469.8,Gold,1 +383,Larry Elliott,stevensonlisa@gmail.com,2023-10-17,"{""language"": ""DE"", ""currency"": ""USD""}",3325.81,Gold,1 +384,Daniel Fleming,thompsonlauren@johnson.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",651.6,Bronze,1 +385,Tiffany Osborn,ucarter@robertson-nelson.net,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",9760.53,Bronze,1 +386,Sarah Patterson,christopherharper@gmail.com,2020-08-06,"{""language"": ""EN"", ""currency"": ""GBP""}",6643.36,Gold,1 +387,Kelsey Ferguson,loretta24@brown-ross.biz,2020-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7571.47,Gold,1 +388,Ashley Boyd,shernandez@hotmail.com,2022-01-29,"{""language"": ""ES"", ""currency"": ""MXN""}",3637.17,Bronze,1 +389,Cheyenne Ramirez,lrobles@gmail.com,2024-09-21,"{""language"": ""EN"", ""currency"": ""EUR""}",9009.13,Bronze,1 +390,Heather Reed,aliciacarter@gmail.com,2020-11-24,"{""language"": ""FR"", ""currency"": ""EUR""}",4409.76,Gold,1 +391,Richard Arnold,cathy73@yahoo.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",1936.51,Silver,1 +392,Drew Powell,welchcassandra@ward-bailey.net,2020-09-18,"{""language"": ""DE"", ""currency"": ""MXN""}",7962.44,Silver,1 +393,Courtney Horton,cholloway@bryan-george.org,2020-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8281.48,Bronze,0 +394,Mrs. Cindy Clark,ricky17@gmail.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4384.1,Gold,0 +395,Emily Garcia,hicksamanda@allen-carrillo.info,2024-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",9611.53,Gold,0 +396,Nancy Brock,shelley40@gmail.com,2023-08-29,"{""language"": ""FR"", ""currency"": ""MXN""}",2003.44,Silver,1 +397,Tim Williams,andreabarnes@allen.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""USD""}",637.54,Silver,0 +398,Mariah Gomez,amy53@hotmail.com,2022-09-03,"{""language"": ""FR"", ""currency"": ""GBP""}",1775.9,Bronze,1 +399,Katie Ochoa,gordonbrandon@hotmail.com,2023-08-30,"{""language"": ""DE"", ""currency"": ""USD""}",6730.95,Gold,0 +400,Taylor Gross,jonessteven@mccoy-morrison.info,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",7817.82,Silver,0 +401,John Brown,bowmannicholas@warren.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5938.84,Silver,1 +402,Sandra Hamilton,hmartinez@yahoo.com,2020-12-23,"{""language"": ""ES"", ""currency"": ""MXN""}",3844.26,Silver,1 +403,William Lara,hwilson@bishop-logan.com,2021-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",339.03,Gold,0 +404,Eric Wilson,clarkwilliam@robinson.com,2021-04-19,"{""language"": ""EN"", ""currency"": ""CAD""}",8584.99,Bronze,0 +405,Theresa Martinez,katherinefranco@yahoo.com,2022-03-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9413.22,Silver,1 +406,Alicia Gardner,jacobnichols@hotmail.com,2020-10-29,"{""language"": ""DE"", ""currency"": ""CAD""}",5685.35,Gold,0 +407,Mackenzie Estrada,carolynavila@perez.com,2024-01-06,"{""language"": ""FR"", ""currency"": ""CAD""}",1349.0,Gold,0 +408,Karen Page,natalie92@becker.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9689.32,Silver,1 +409,Theresa Fitzgerald,robert87@hotmail.com,2022-04-27,"{""language"": ""FR"", ""currency"": ""CAD""}",9125.95,Gold,0 +410,Ashley Johnson,johnsonrebecca@johnson.com,2020-04-18,"{""language"": ""ES"", ""currency"": ""USD""}",5419.03,Silver,0 +411,Sean Moran,nosborne@smith-allen.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""GBP""}",8174.17,Bronze,1 +412,Holly Castillo,johnsonmary@gardner.biz,2019-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6402.57,Silver,0 +413,Jill Sanford,kimberly17@martinez-hernandez.com,2021-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",4866.47,Silver,0 +414,Mark Conley II,andrewskaren@edwards-jones.com,2021-10-19,"{""language"": ""ES"", ""currency"": ""CAD""}",3357.75,Gold,1 +415,Whitney Miller,qgonzales@gmail.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""EUR""}",6455.3,Bronze,0 +416,Emily Shaw,adamsalexa@gmail.com,2024-05-22,"{""language"": ""FR"", ""currency"": ""USD""}",6521.97,Gold,1 +417,Eugene Schultz,breanna66@yahoo.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""MXN""}",2571.57,Bronze,1 +418,Tommy Bullock,anthonymeza@gmail.com,2023-03-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5962.1,Gold,1 +419,Sara Dudley,xcox@gmail.com,2022-06-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2668.92,Silver,0 +420,Stephen Steele,angelabanks@yahoo.com,2023-12-28,"{""language"": ""ES"", ""currency"": ""EUR""}",8176.29,Bronze,0 +421,Abigail Mcmahon,sean67@trevino.info,2020-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",728.38,Silver,0 +422,David Jenkins,lauren71@gmail.com,2021-11-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7941.7,Bronze,1 +423,Angela Ward,shawnrice@garrett-jackson.org,2024-06-04,"{""language"": ""FR"", ""currency"": ""MXN""}",9502.06,Gold,0 +424,James Bray,andrenewman@gilbert-gillespie.biz,2020-02-28,"{""language"": ""ES"", ""currency"": ""GBP""}",4014.86,Gold,1 +425,Andre Campbell,xclements@bradshaw-lucas.com,2021-09-10,"{""language"": ""IT"", ""currency"": ""GBP""}",9923.52,Bronze,1 +426,Timothy Armstrong,morgandorothy@hotmail.com,2024-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",6884.93,Silver,1 +427,Adam Larson,smithbrittany@perez.net,2021-11-30,"{""language"": ""EN"", ""currency"": ""USD""}",5552.15,Bronze,1 +428,Nicole Johnson,hendersonsteven@yahoo.com,2021-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",6290.56,Bronze,1 +429,Andrew Baker,qmiller@gmail.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",5402.21,Bronze,1 +430,Jessica Keller,bwest@martinez.com,2024-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",8742.7,Silver,0 +431,Amber Miller,pjenkins@gmail.com,2020-01-02,"{""language"": ""IT"", ""currency"": ""MXN""}",9234.09,Silver,0 +432,Carol West,lori69@hotmail.com,2022-10-24,"{""language"": ""EN"", ""currency"": ""USD""}",1423.9,Gold,1 +433,Richard Hatfield,reedcynthia@yahoo.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""CAD""}",3613.48,Gold,1 +434,Brittany Bishop,kaylacisneros@jordan.org,2024-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",5801.26,Silver,1 +435,Adam Wade Jr.,morrisondaniel@hotmail.com,2021-06-01,"{""language"": ""EN"", ""currency"": ""CAD""}",9182.73,Silver,1 +436,Kevin Graham,judith05@butler.biz,2023-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7871.77,Bronze,1 +437,Jeff Pace,richardcraig@mclaughlin-davila.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",3918.6,Bronze,1 +438,Javier Coleman,larrypatrick@yahoo.com,2024-07-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1477.62,Silver,0 +439,Daniel Stevens,luispope@hotmail.com,2020-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",6127.79,Gold,0 +440,Jessica Anderson,kimberly65@vang.info,2024-09-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4796.17,Gold,0 +441,Rachel Estrada,conleyjennifer@gmail.com,2021-12-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2989.6,Bronze,0 +442,Robin Davis,jlopez@vazquez-newman.com,2021-05-17,"{""language"": ""DE"", ""currency"": ""CAD""}",9492.07,Bronze,1 +443,Robert Spencer,iholloway@yahoo.com,2024-05-04,"{""language"": ""EN"", ""currency"": ""MXN""}",88.72,Silver,1 +444,Kristi Murphy,lauramiller@hicks-evans.com,2022-09-17,"{""language"": ""ES"", ""currency"": ""EUR""}",9889.91,Gold,0 +445,Frederick Smith,pgillespie@palmer.net,2020-12-10,"{""language"": ""ES"", ""currency"": ""MXN""}",314.02,Gold,0 +446,Jennifer Mcgee,qbrown@jenkins.net,2020-03-26,"{""language"": ""ES"", ""currency"": ""CAD""}",139.6,Gold,1 +447,Michael Glover,zdawson@yahoo.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",7670.15,Gold,0 +448,Joseph Terry,christopherbarnett@gmail.com,2023-03-29,"{""language"": ""ES"", ""currency"": ""EUR""}",4897.28,Gold,0 +449,Cory Gonzales,hsmith@hotmail.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6920.83,Gold,0 +450,Anthony Hebert,hallmark@hotmail.com,2021-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",5727.92,Bronze,0 +451,Natasha Mckinney,austin92@yahoo.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9021.51,Bronze,1 +452,Keith Frost,bclark@johnson.info,2023-03-09,"{""language"": ""IT"", ""currency"": ""GBP""}",8374.34,Bronze,1 +453,John Burton,denise83@smith.org,2022-05-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5362.71,Bronze,0 +454,Timothy Guerrero,taylorjones@miller-davis.com,2023-12-22,"{""language"": ""ES"", ""currency"": ""USD""}",7402.88,Bronze,0 +455,Victoria Smith,mariah82@bennett-boyd.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",2147.27,Gold,0 +456,Veronica Wilson,lsutton@yahoo.com,2021-11-01,"{""language"": ""ES"", ""currency"": ""EUR""}",7366.12,Bronze,1 +457,Jennifer Meyer,xjohnson@gmail.com,2021-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",5290.37,Silver,0 +458,Erin Miller,vnewman@gmail.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""USD""}",947.97,Bronze,1 +459,Sandra Miller,valdezdarius@gmail.com,2022-05-13,"{""language"": ""IT"", ""currency"": ""USD""}",4125.58,Gold,0 +460,Ann Griffith,matthewhall@paul.com,2022-12-14,"{""language"": ""FR"", ""currency"": ""EUR""}",8413.15,Silver,0 +461,Brian Murphy,wclark@davenport.biz,2021-06-02,"{""language"": ""ES"", ""currency"": ""EUR""}",7235.36,Bronze,1 +462,Colleen Perez,walkerstacy@harrison.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""EUR""}",1441.88,Bronze,0 +463,Shelly Warner,robert59@sullivan-weaver.com,2024-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9245.52,Gold,0 +464,Dawn Holland,christophersanchez@martin.org,2020-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",3585.76,Gold,0 +465,Tamara Lamb,jacobfrazier@yahoo.com,2020-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8004.44,Bronze,0 +466,Alicia Johnson,tammychristian@webb.com,2024-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",4574.95,Bronze,0 +467,Andrew Guerrero,daniel50@dixon-anderson.com,2023-11-17,"{""language"": ""EN"", ""currency"": ""EUR""}",9663.01,Bronze,1 +468,Juan Davidson,ybeck@anderson.com,2022-06-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9486.87,Bronze,1 +469,Alexander Wilkins,ipatel@osborn-harrington.net,2020-07-20,"{""language"": ""IT"", ""currency"": ""USD""}",2255.67,Gold,0 +470,Vanessa Sanders,brandon69@hotmail.com,2022-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",4951.29,Bronze,0 +471,Mr. Charles Dixon DDS,christine33@hotmail.com,2023-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1303.06,Gold,0 +472,Andrew Smith,joseph07@hotmail.com,2023-12-21,"{""language"": ""DE"", ""currency"": ""GBP""}",4412.66,Bronze,0 +473,Dorothy Davis,zjackson@hotmail.com,2024-07-01,"{""language"": ""EN"", ""currency"": ""MXN""}",3872.27,Bronze,0 +474,Harold Daniel,ihardy@gmail.com,2023-03-16,"{""language"": ""IT"", ""currency"": ""USD""}",921.72,Bronze,1 +475,Ashlee Ross,floresbrandy@johnson.com,2020-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7599.65,Gold,0 +476,David Torres,katiereynolds@gmail.com,2022-02-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5065.85,Bronze,0 +477,Elizabeth King,djohnson@coleman.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",8672.67,Silver,1 +478,Todd Salazar,joeryan@gmail.com,2020-10-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9619.79,Gold,0 +479,Derek Baker,gardnerrodney@hotmail.com,2023-02-15,"{""language"": ""DE"", ""currency"": ""MXN""}",6921.15,Silver,1 +480,Erin Smith,debbiewaters@santos.net,2022-04-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9094.07,Silver,1 +481,Veronica Robinson,bpowell@graham.org,2021-11-10,"{""language"": ""IT"", ""currency"": ""GBP""}",8323.94,Bronze,0 +482,David Nicholson,bmcfarland@adams.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",9025.98,Gold,0 +483,Jennifer Greene,morrisonraymond@hotmail.com,2023-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",1386.83,Bronze,1 +484,Kevin Mason,benjamin92@nguyen.com,2023-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",2159.77,Gold,0 +485,Travis Pierce,shaun58@coleman.com,2022-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",3992.04,Gold,1 +486,Arthur Chapman,zalexander@gmail.com,2022-05-12,"{""language"": ""DE"", ""currency"": ""GBP""}",1027.37,Gold,1 +487,Luke Silva,melissamccullough@hotmail.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""GBP""}",9727.6,Bronze,1 +488,Benjamin Johnson,wbutler@nguyen.org,2024-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",322.07,Gold,0 +489,Teresa King,benjamin83@gmail.com,2023-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",6476.83,Gold,0 +490,Roberta Ramirez,charles83@taylor-stanley.biz,2023-09-01,"{""language"": ""FR"", ""currency"": ""MXN""}",5403.77,Bronze,1 +491,Jeremy Smith,wilsonnancy@hotmail.com,2021-08-24,"{""language"": ""EN"", ""currency"": ""USD""}",4264.34,Gold,0 +492,Dana Russo,stevenwillis@hotmail.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8504.71,Bronze,0 +493,Michaela Collins,angela14@yahoo.com,2021-08-25,"{""language"": ""EN"", ""currency"": ""CAD""}",886.78,Bronze,0 +494,Brittney Gutierrez,erika12@duncan.info,2019-12-23,"{""language"": ""ES"", ""currency"": ""EUR""}",698.88,Gold,1 +495,Kristine Singh,kathleen92@hodge.com,2021-08-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2852.75,Silver,1 +496,Matthew Summers,cwalters@barnes.com,2023-10-21,"{""language"": ""ES"", ""currency"": ""GBP""}",4614.78,Bronze,1 +497,Scott Ingram,bryanbrenda@yahoo.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""EUR""}",6083.14,Silver,1 +498,Calvin Martin,jordanmyers@gmail.com,2024-09-29,"{""language"": ""IT"", ""currency"": ""USD""}",6029.56,Gold,1 +499,Adriana Peterson,john07@hotmail.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4639.27,Bronze,1 +500,Joshua Mathis,maria45@hotmail.com,2020-09-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8900.14,Silver,0 +501,Christopher Wilson,joshualyons@walsh.info,2022-10-09,"{""language"": ""FR"", ""currency"": ""EUR""}",1620.96,Silver,0 +502,Mary Lawrence,wholt@diaz.com,2022-08-17,"{""language"": ""IT"", ""currency"": ""GBP""}",1391.93,Gold,0 +503,Jackie Hall,elee@roberson.com,2020-03-05,"{""language"": ""FR"", ""currency"": ""GBP""}",5901.66,Silver,1 +504,Krystal Garcia,oliviamclean@yahoo.com,2023-12-20,"{""language"": ""IT"", ""currency"": ""MXN""}",2692.19,Silver,0 +505,Daniel Ray,fvalenzuela@hotmail.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",2477.72,Bronze,1 +506,Jack Green,bobby21@stanley.org,2024-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",256.6,Silver,0 +507,Tonya Gilbert,xstone@gmail.com,2021-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",9670.95,Gold,1 +508,Alicia Jackson,andersonluis@hotmail.com,2020-01-06,"{""language"": ""FR"", ""currency"": ""EUR""}",167.55,Bronze,1 +509,Natalie Williams,troberts@gmail.com,2022-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",4824.22,Bronze,1 +510,David Kemp,phelpscaitlin@mcintosh.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",3299.34,Gold,0 +511,Michelle Bush,carolsanchez@lang-villanueva.info,2023-10-29,"{""language"": ""DE"", ""currency"": ""GBP""}",6416.49,Silver,1 +512,Troy Trujillo,jennifersharp@gmail.com,2023-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",9776.61,Bronze,1 +513,Justin Savage,bradshawjessica@hotmail.com,2020-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",5302.04,Gold,1 +514,Mary Perry,lisaandrews@williamson-griffin.com,2022-08-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2368.57,Gold,1 +515,Jimmy Gonzalez,michele47@ferguson.net,2022-02-05,"{""language"": ""EN"", ""currency"": ""USD""}",3257.15,Silver,0 +516,Caitlin Silva,glenn02@yahoo.com,2023-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3491.65,Bronze,1 +517,David Abbott,stephaniefoley@yahoo.com,2020-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",358.52,Silver,1 +518,James Rodriguez,omelendez@yahoo.com,2023-03-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8456.43,Bronze,0 +519,Natasha Cunningham,schultzdana@hotmail.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""USD""}",203.48,Gold,1 +520,Erica Morales,ustevenson@yahoo.com,2021-03-11,"{""language"": ""DE"", ""currency"": ""GBP""}",1283.72,Gold,1 +521,Ryan Carney,bherrera@wheeler-velasquez.net,2022-06-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3338.85,Gold,1 +522,Timothy Hanna,steven28@yahoo.com,2024-02-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2709.6,Silver,1 +523,Amy Morgan,sandralong@carter.biz,2023-02-23,"{""language"": ""ES"", ""currency"": ""USD""}",1508.34,Silver,0 +524,Rhonda Bruce,jduncan@yahoo.com,2024-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2739.92,Silver,0 +525,Jonathan Thomas,gonzalezcheryl@shelton.com,2022-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",2839.03,Gold,0 +526,Erin Middleton,tbrowning@gmail.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""CAD""}",5132.85,Silver,1 +527,Melissa Taylor,tonya55@rhodes.biz,2021-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",9768.31,Gold,1 +528,Patrick Davidson,jimenezsamuel@gross-watkins.info,2020-09-01,"{""language"": ""IT"", ""currency"": ""EUR""}",9803.79,Gold,0 +529,Wendy Schneider,parksstephen@hudson-johnson.biz,2024-08-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9531.05,Gold,0 +530,Michael Spears,chardy@gomez.org,2024-07-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4542.99,Silver,0 +531,John Ewing,hallalicia@martinez.net,2024-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",4489.81,Silver,1 +532,Richard Miller,russell87@gmail.com,2020-07-26,"{""language"": ""ES"", ""currency"": ""CAD""}",4507.01,Gold,0 +533,Pam Gordon,rossmelinda@rose.com,2022-12-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1173.07,Gold,1 +534,Kimberly Olson,heatherwilliams@gmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7852.51,Bronze,1 +535,Christopher Bennett,erica81@davis-franklin.org,2022-06-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8341.79,Silver,1 +536,Teresa Fields,aaronrodriguez@hotmail.com,2020-07-20,"{""language"": ""ES"", ""currency"": ""EUR""}",4036.88,Silver,0 +537,Megan Hahn,elainesimmons@hotmail.com,2020-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",4171.15,Gold,0 +538,Nancy Olson,vyoung@wood.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""MXN""}",5522.98,Silver,0 +539,Ms. Pamela Morris,lmclean@gmail.com,2024-08-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1705.37,Bronze,1 +540,Emma Johnson,richmondjerry@butler.net,2021-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",1913.3,Silver,1 +541,Lindsay Simmons,andersoncindy@gmail.com,2024-05-07,"{""language"": ""FR"", ""currency"": ""MXN""}",430.66,Bronze,1 +542,Ann Campbell,cdoyle@hotmail.com,2024-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9682.43,Silver,0 +543,Trevor Gibson,ajackson@gmail.com,2021-11-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3872.02,Bronze,0 +544,Heidi Murphy,donald79@williams.net,2021-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",4924.96,Bronze,0 +545,Robert Brown,imarshall@richardson.info,2020-11-29,"{""language"": ""IT"", ""currency"": ""USD""}",5365.08,Silver,1 +546,Joshua Little,christophermcdonald@hancock-king.com,2020-06-29,"{""language"": ""DE"", ""currency"": ""USD""}",1616.33,Silver,0 +547,Jennifer Vaughan,nelsonandrew@hicks.com,2024-05-10,"{""language"": ""ES"", ""currency"": ""USD""}",5894.91,Gold,1 +548,Ryan Huang,tmack@ferguson.info,2020-11-04,"{""language"": ""FR"", ""currency"": ""EUR""}",873.33,Gold,0 +549,Sarah Kramer,debrahudson@alexander-church.com,2022-09-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8841.99,Gold,1 +550,Thomas Moore,rachelhenderson@hotmail.com,2020-06-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2401.35,Silver,1 +551,Carlos Herring,michaelrobinson@hotmail.com,2020-07-07,"{""language"": ""DE"", ""currency"": ""CAD""}",8399.1,Bronze,0 +552,Brianna Harris,stonerichard@brock-williams.com,2020-09-22,"{""language"": ""FR"", ""currency"": ""GBP""}",4040.48,Bronze,1 +553,Craig Butler,youngkristina@robinson.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7272.82,Silver,1 +554,Andrew Bryant,jenniferjackson@lambert.net,2021-12-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5416.91,Silver,1 +555,Elizabeth Moyer,wnelson@west.org,2024-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9589.35,Silver,1 +556,Katherine Smith,qfoster@smith.com,2020-03-31,"{""language"": ""DE"", ""currency"": ""MXN""}",1449.07,Bronze,0 +557,Paul Johnson,wilsonvanessa@miller.com,2020-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",7284.2,Bronze,0 +558,Rebecca Cochran,michelehoffman@pierce.com,2020-12-21,"{""language"": ""ES"", ""currency"": ""USD""}",3978.18,Gold,0 +559,Mr. Timothy Tanner,ann20@yahoo.com,2024-08-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6417.51,Gold,0 +560,David Greene,eyoung@hotmail.com,2023-02-21,"{""language"": ""ES"", ""currency"": ""MXN""}",7919.09,Silver,1 +561,Carl Snyder,rmalone@dougherty-mclean.info,2021-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",6847.15,Gold,0 +562,Megan Dawson,floressarah@castro.org,2022-10-11,"{""language"": ""EN"", ""currency"": ""USD""}",3607.83,Bronze,1 +563,Mark Wood,richmondashley@hotmail.com,2020-03-04,"{""language"": ""IT"", ""currency"": ""USD""}",8039.56,Gold,1 +564,Marcus Gomez,josephrodriguez@hotmail.com,2024-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6286.03,Bronze,0 +565,Troy Walker,harrismatthew@watson-johnson.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7367.94,Silver,1 +566,Dennis Peterson,briggsderek@hotmail.com,2022-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",8718.43,Silver,1 +567,Patricia Paul,jeremycain@walsh.org,2020-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",1854.02,Gold,1 +568,Sandra Berg,ofoley@jones.com,2020-04-22,"{""language"": ""ES"", ""currency"": ""MXN""}",9173.58,Gold,0 +569,Jennifer Munoz,kimberlymeyers@padilla-mueller.biz,2021-10-27,"{""language"": ""EN"", ""currency"": ""EUR""}",521.99,Silver,1 +570,April Johnson,kelly03@wood.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3377.13,Gold,0 +571,Michelle Brown PhD,walterdonovan@smith-stewart.com,2022-01-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6772.7,Gold,1 +572,Alison Mckee,terri17@brandt-smith.com,2020-11-12,"{""language"": ""IT"", ""currency"": ""MXN""}",2879.91,Silver,0 +573,Kenneth Williams,matthew75@hotmail.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""USD""}",4338.28,Gold,1 +574,Dale Barnett II,sbennett@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1524.8,Silver,1 +575,Edward Matthews,robertojohnson@velasquez-morris.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7328.12,Silver,0 +576,Mathew Brown,phelpskevin@wells-medina.net,2024-08-09,"{""language"": ""IT"", ""currency"": ""MXN""}",2817.66,Bronze,0 +577,Lori Ortiz,deanstone@gmail.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",8578.88,Bronze,0 +578,Daniel Soto,edecker@hotmail.com,2023-02-04,"{""language"": ""IT"", ""currency"": ""USD""}",1157.38,Bronze,0 +579,Barbara Carson,michaelhull@gmail.com,2020-04-20,"{""language"": ""ES"", ""currency"": ""EUR""}",6248.72,Gold,1 +580,James Phillips,fgriffin@robertson.com,2021-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",1088.59,Silver,0 +581,Robert White,steven46@brown.com,2024-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",9372.27,Bronze,1 +582,Jermaine Jackson,christopher42@kemp.org,2023-07-24,"{""language"": ""DE"", ""currency"": ""USD""}",8344.65,Gold,0 +583,Monica James,matthewbond@gmail.com,2021-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",5861.37,Gold,1 +584,Joseph Brown,ricky59@fischer.info,2021-08-05,"{""language"": ""FR"", ""currency"": ""CAD""}",7102.37,Gold,1 +585,Richard Thomas,boltonlori@sanford-leonard.com,2023-04-23,"{""language"": ""FR"", ""currency"": ""EUR""}",8352.8,Silver,1 +586,Dalton Hudson,maryfernandez@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""MXN""}",8691.92,Bronze,0 +587,Steven Smith,morrisonlisa@yahoo.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""GBP""}",6161.87,Gold,0 +588,Timothy Carroll,christy35@baker-logan.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",9465.31,Gold,0 +589,Antonio Valenzuela,anthonyfuller@gmail.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""MXN""}",6918.3,Gold,0 +590,Donna Ross,chad88@hotmail.com,2023-12-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2224.41,Gold,1 +591,Randall Joseph,smithfrancisco@luna.org,2020-10-02,"{""language"": ""DE"", ""currency"": ""CAD""}",3800.89,Silver,0 +592,Sandra Joyce,gravesmichael@mcneil-miller.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9731.6,Gold,0 +593,Craig Johnson,stewartpatricia@hotmail.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1810.82,Bronze,1 +594,James Morgan,alishaoliver@gmail.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",6197.63,Gold,1 +595,Patty Lewis,wadeshelley@jones.com,2021-12-08,"{""language"": ""DE"", ""currency"": ""GBP""}",4393.88,Gold,0 +596,Andrew Berger,tmaddox@yahoo.com,2021-08-31,"{""language"": ""EN"", ""currency"": ""MXN""}",4376.35,Gold,1 +597,William Hall,brittanypalmer@gmail.com,2023-03-07,"{""language"": ""ES"", ""currency"": ""GBP""}",9286.03,Bronze,1 +598,Thomas Reed,bonnie33@gmail.com,2020-01-31,"{""language"": ""DE"", ""currency"": ""MXN""}",3102.29,Bronze,1 +599,Nicole Rosales,charleschapman@hotmail.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",9979.18,Silver,1 +600,Joshua Shaw,bgreer@adams-thompson.com,2020-02-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1126.22,Gold,1 +601,Jason Morales,dustin82@gmail.com,2023-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8445.29,Gold,0 +602,Andrea Hall,taylor87@chaney.com,2022-11-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1034.43,Silver,0 +603,Jennifer Ford,rogerskinner@brown.net,2021-06-06,"{""language"": ""ES"", ""currency"": ""USD""}",3711.5,Gold,1 +604,Adrian Brown,vicki20@salinas.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""USD""}",3012.94,Silver,1 +605,Christopher Jordan IV,callahankathy@gmail.com,2021-08-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2177.74,Bronze,0 +606,Michelle Bradley,april79@gmail.com,2021-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",2319.18,Bronze,0 +607,Michael Thomas,keithcantu@lowe.com,2023-02-15,"{""language"": ""ES"", ""currency"": ""GBP""}",5799.79,Bronze,1 +608,Michael Murphy,sarahcalhoun@yahoo.com,2024-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",3314.23,Bronze,0 +609,Jennifer Powers,raymond46@cox-phillips.com,2020-11-28,"{""language"": ""IT"", ""currency"": ""CAD""}",3846.88,Silver,1 +610,Wendy Webb,iparker@yahoo.com,2021-12-28,"{""language"": ""ES"", ""currency"": ""MXN""}",4732.83,Bronze,1 +611,Dennis Young,thompsoncassandra@hotmail.com,2024-12-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3553.41,Bronze,1 +612,Tiffany Frank,limichele@ryan.net,2022-10-05,"{""language"": ""IT"", ""currency"": ""USD""}",7220.63,Gold,0 +613,Vanessa Ayala,ubailey@gmail.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6743.33,Gold,1 +614,Mark Edwards DVM,johnduncan@thomas.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""EUR""}",5250.16,Gold,0 +615,Catherine Schneider,harrisbrittany@soto.com,2022-05-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2124.91,Gold,1 +616,Donald Valdez,brittanystokes@hotmail.com,2022-11-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7738.3,Bronze,1 +617,Michael Adams,hjohnson@hotmail.com,2022-12-26,"{""language"": ""FR"", ""currency"": ""MXN""}",6617.5,Bronze,0 +618,Timothy Hicks,hernandezmary@hotmail.com,2023-07-18,"{""language"": ""IT"", ""currency"": ""GBP""}",5979.64,Bronze,1 +619,Grant Schultz,nelsoneileen@hotmail.com,2020-07-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3394.04,Bronze,1 +620,Shannon Johnson,suzanne08@gmail.com,2023-10-28,"{""language"": ""DE"", ""currency"": ""USD""}",6827.53,Silver,1 +621,Jason Schneider,nicole26@gmail.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",2897.84,Bronze,1 +622,Cynthia George,jillstone@gmail.com,2024-03-09,"{""language"": ""FR"", ""currency"": ""USD""}",2542.51,Silver,0 +623,Michelle Baker,bethanyjohnson@gmail.com,2021-06-07,"{""language"": ""ES"", ""currency"": ""USD""}",2502.92,Silver,0 +624,Kenneth Miller,amandaanderson@yahoo.com,2024-10-14,"{""language"": ""DE"", ""currency"": ""CAD""}",8926.77,Gold,0 +625,Stacey Drake,iburgess@yahoo.com,2020-01-07,"{""language"": ""ES"", ""currency"": ""GBP""}",9912.45,Gold,1 +626,Amy Turner,dhall@lopez.biz,2021-05-04,"{""language"": ""DE"", ""currency"": ""EUR""}",927.95,Silver,0 +627,Jessica Simpson,aellis@yahoo.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5682.27,Bronze,0 +628,Crystal Sullivan,guerrapaige@rodriguez.org,2022-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",720.87,Gold,1 +629,Kara Alvarez,roylatasha@perez.com,2024-06-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1398.66,Silver,1 +630,Kyle Rivera,hscott@flowers.com,2020-06-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1836.85,Gold,1 +631,Robert Andrade,qkelly@ortiz.net,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",7365.01,Bronze,1 +632,Patricia Cook,rmcdonald@quinn-williams.com,2022-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",4882.19,Silver,0 +633,Stephen Bowen,taylorhopkins@hotmail.com,2023-06-15,"{""language"": ""EN"", ""currency"": ""EUR""}",3192.94,Bronze,1 +634,Eric Rodriguez,hallshannon@mccoy.com,2024-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",1165.71,Silver,1 +635,Jordan Mathis,ericafoster@yahoo.com,2020-06-23,"{""language"": ""EN"", ""currency"": ""GBP""}",7216.47,Silver,1 +636,Amy Johnson,christophergilbert@yahoo.com,2021-07-15,"{""language"": ""FR"", ""currency"": ""MXN""}",5663.1,Silver,1 +637,Jessica Mcknight,anthonylittle@parker.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""USD""}",1770.38,Silver,1 +638,Jamie Smith,trobinson@gmail.com,2021-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",1249.92,Bronze,1 +639,Sarah Hicks,rsandoval@gmail.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3972.79,Gold,0 +640,Trevor Oliver,mistycastillo@hotmail.com,2020-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9186.62,Gold,1 +641,Craig Steele,brittanygarcia@smith-colon.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8742.23,Gold,0 +642,Devin Mckee,angelafranklin@berry.biz,2022-08-23,"{""language"": ""DE"", ""currency"": ""GBP""}",5855.92,Bronze,1 +643,Jesse Manning,nicolas64@fischer-blevins.biz,2022-05-30,"{""language"": ""DE"", ""currency"": ""MXN""}",1469.65,Silver,0 +644,Nicholas Campbell,danielwise@carter.biz,2020-08-27,"{""language"": ""ES"", ""currency"": ""GBP""}",3000.35,Silver,1 +645,Brian Lynch,juarezanthony@hotmail.com,2023-11-23,"{""language"": ""ES"", ""currency"": ""EUR""}",8971.67,Bronze,1 +646,Cameron Price,harrischristine@hotmail.com,2022-10-02,"{""language"": ""IT"", ""currency"": ""MXN""}",2199.05,Gold,0 +647,Norma Solomon,josehart@ortiz.com,2023-06-23,"{""language"": ""DE"", ""currency"": ""GBP""}",323.21,Gold,1 +648,Patricia Keller,bcampbell@yahoo.com,2023-01-27,"{""language"": ""DE"", ""currency"": ""EUR""}",5050.97,Gold,1 +649,Beverly Sullivan,mwest@hotmail.com,2021-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",4714.45,Bronze,0 +650,Justin Gill,lherman@yahoo.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""USD""}",1610.34,Gold,1 +651,Kristen Taylor,jennifer16@gmail.com,2021-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5073.09,Silver,0 +652,Leonard Smith,nwilliams@white.org,2024-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",9465.77,Silver,0 +653,Savannah Castro,wilkinskyle@jones.biz,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",6377.21,Gold,1 +654,Joyce Mcgee,jboyle@gmail.com,2023-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",8103.62,Bronze,1 +655,Craig Lang,sandra01@burton.com,2024-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1878.65,Silver,1 +656,Ashley Ward,tiffany09@miller-harrison.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8029.15,Silver,1 +657,Peter Fleming,angelicagraham@hotmail.com,2020-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",3297.17,Silver,1 +658,Justin Johnson,grossthomas@white-fields.biz,2024-03-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7483.86,Silver,0 +659,Lisa Mitchell,wrightkaren@gmail.com,2023-02-14,"{""language"": ""DE"", ""currency"": ""GBP""}",7330.9,Silver,1 +660,Nancy Contreras,dreed@hanna.net,2023-04-17,"{""language"": ""IT"", ""currency"": ""USD""}",9101.64,Silver,1 +661,Teresa Howard,welchcharles@freeman.com,2024-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",6241.58,Bronze,0 +662,David Green,judithsherman@gmail.com,2020-07-02,"{""language"": ""IT"", ""currency"": ""MXN""}",7547.64,Silver,0 +663,Gabriella Zimmerman,johnsonmarie@young-coleman.info,2022-08-07,"{""language"": ""EN"", ""currency"": ""EUR""}",725.99,Bronze,0 +664,John Watson,patricia58@yahoo.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""EUR""}",3537.86,Bronze,1 +665,Jesus Boyle,amanda76@gmail.com,2020-02-29,"{""language"": ""ES"", ""currency"": ""EUR""}",4778.07,Gold,1 +666,Scott Hall,jonathanhall@pruitt.net,2020-02-10,"{""language"": ""IT"", ""currency"": ""EUR""}",3510.5,Gold,0 +667,Lisa Boyd,davidmitchell@yahoo.com,2022-07-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6865.4,Bronze,0 +668,Casey Moore,michelle56@smith-mercer.org,2020-12-25,"{""language"": ""IT"", ""currency"": ""MXN""}",7443.0,Bronze,1 +669,Bradley Crawford,oadams@yahoo.com,2020-12-01,"{""language"": ""ES"", ""currency"": ""GBP""}",7328.12,Silver,0 +670,Sandra Jones,crystal20@gmail.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""EUR""}",717.23,Gold,0 +671,Brandon Stewart,shahcrystal@gmail.com,2021-03-24,"{""language"": ""ES"", ""currency"": ""GBP""}",708.5,Bronze,1 +672,Kristen Reyes,dana12@stewart-brown.info,2021-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",4821.88,Gold,1 +673,Robert Lopez,daustin@gmail.com,2021-03-21,"{""language"": ""IT"", ""currency"": ""USD""}",4509.31,Silver,0 +674,Hector Smith,nathansanchez@anderson-warren.com,2022-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2933.2,Gold,0 +675,Walter Schmidt,solomonthomas@aguirre.com,2023-11-17,"{""language"": ""IT"", ""currency"": ""MXN""}",7883.72,Silver,0 +676,Morgan Hill,brownmichelle@gmail.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""MXN""}",5972.67,Silver,1 +677,Melinda Graham,kfreeman@hotmail.com,2023-02-20,"{""language"": ""EN"", ""currency"": ""USD""}",3614.58,Silver,1 +678,Charles Jones,norristammy@gmail.com,2020-06-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3504.21,Gold,0 +679,Lauren Smith,gregory95@morris.com,2024-08-21,"{""language"": ""FR"", ""currency"": ""GBP""}",9952.66,Gold,1 +680,Mr. Mark Blair MD,nicholasgutierrez@parker.com,2023-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",6943.96,Bronze,1 +681,Monica Johnson,maria72@carlson-jackson.com,2021-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",7341.64,Gold,0 +682,Jose Rose,khandavid@bowman.com,2023-09-22,"{""language"": ""IT"", ""currency"": ""MXN""}",6827.78,Silver,1 +683,Kimberly Day,hevans@yahoo.com,2024-06-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1378.3,Bronze,1 +684,Tracy Jones,jose76@levine-mcintyre.com,2020-01-26,"{""language"": ""FR"", ""currency"": ""MXN""}",1259.63,Bronze,0 +685,Christina Bishop,paulcarrillo@white-young.info,2021-12-07,"{""language"": ""EN"", ""currency"": ""EUR""}",9471.13,Silver,1 +686,Tyler Smith,osbornebryan@hotmail.com,2024-08-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7808.9,Gold,0 +687,Dennis Hernandez,isimmons@webb.biz,2021-06-25,"{""language"": ""IT"", ""currency"": ""USD""}",3927.01,Silver,0 +688,Michelle Mitchell,josephwarren@edwards-hubbard.com,2021-04-22,"{""language"": ""DE"", ""currency"": ""CAD""}",8036.12,Gold,0 +689,Brian Atkinson Jr.,woodmonica@hernandez-kelly.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""EUR""}",5949.38,Gold,0 +690,Crystal Rodriguez,lleonard@hotmail.com,2024-10-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8523.76,Gold,0 +691,Gary Mendoza,munozlouis@downs-griffith.com,2021-12-24,"{""language"": ""EN"", ""currency"": ""EUR""}",585.02,Silver,1 +692,Rachel Ramirez,karen00@martinez-bailey.com,2024-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",4696.04,Silver,0 +693,Heather Torres,manuelmontgomery@gmail.com,2021-07-05,"{""language"": ""ES"", ""currency"": ""USD""}",9119.23,Bronze,0 +694,Nicholas Mills,amandasolomon@steele.com,2024-08-01,"{""language"": ""EN"", ""currency"": ""USD""}",774.37,Bronze,1 +695,Justin Luna,simmonsstefanie@gmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",824.69,Bronze,1 +696,Theresa Buchanan,karen16@yahoo.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",1200.56,Silver,1 +697,Alison Castillo,sparkscheryl@hall-joseph.org,2020-12-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1690.79,Bronze,1 +698,Benjamin Little,lharper@hopkins.org,2021-11-06,"{""language"": ""ES"", ""currency"": ""USD""}",3656.72,Bronze,1 +699,Hannah Robinson,kbailey@yahoo.com,2023-03-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9932.58,Silver,0 +700,Matthew Larson,fwoods@rodriguez.org,2020-10-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5371.77,Silver,0 +701,Nicole David,ronald56@mendoza.com,2020-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2768.66,Bronze,0 +702,Dorothy Diaz,lauralam@nash.com,2023-07-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7789.03,Silver,1 +703,Joshua Henry,alowe@yahoo.com,2020-05-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5877.01,Silver,0 +704,Sydney Alvarez,jenkinsvincent@jones-lewis.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",1157.57,Silver,0 +705,Christopher Greene,michelledavis@yahoo.com,2022-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",6651.0,Bronze,0 +706,Katherine Rios,corey38@yahoo.com,2023-04-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5906.39,Gold,0 +707,Shelley Mccall,imelendez@armstrong.net,2021-07-28,"{""language"": ""FR"", ""currency"": ""MXN""}",2315.89,Bronze,0 +708,Sherry Strickland,cjoseph@morris.org,2020-08-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7495.8,Silver,0 +709,Amy Rosales,taylortroy@gmail.com,2023-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",3403.82,Gold,0 +710,Debra Diaz,nkelly@yahoo.com,2023-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6809.64,Gold,0 +711,Ms. Amanda Sandoval DDS,farleykevin@mcdaniel.com,2021-03-04,"{""language"": ""DE"", ""currency"": ""USD""}",8958.64,Bronze,0 +712,James Anthony,allen87@hotmail.com,2023-07-13,"{""language"": ""EN"", ""currency"": ""EUR""}",5323.07,Silver,1 +713,Dr. Anthony Brooks,zrussell@yahoo.com,2022-12-24,"{""language"": ""FR"", ""currency"": ""MXN""}",2580.75,Gold,0 +714,Susan Swanson,jeremy75@gmail.com,2022-09-08,"{""language"": ""DE"", ""currency"": ""USD""}",6127.87,Bronze,0 +715,Vanessa Garcia,david66@ward-pratt.com,2021-09-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2561.3,Gold,0 +716,Nathaniel Green,dennisbarton@ramirez.info,2024-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",1877.83,Silver,0 +717,Alexis Peters,nichole10@daniel-white.net,2022-08-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3148.54,Silver,0 +718,Karen Morales,mlove@gmail.com,2022-08-30,"{""language"": ""FR"", ""currency"": ""EUR""}",5382.81,Silver,0 +719,Dillon Powell,jenniferdavis@lopez.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""GBP""}",2020.19,Bronze,0 +720,Melissa Williams,alexis98@valenzuela.info,2023-11-12,"{""language"": ""ES"", ""currency"": ""USD""}",3606.97,Silver,0 +721,Russell Olson,rebecca09@hotmail.com,2021-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",3501.49,Bronze,1 +722,Erik Hoffman,grice@yahoo.com,2020-12-28,"{""language"": ""FR"", ""currency"": ""MXN""}",2094.99,Gold,1 +723,Michael Leon,heidiallen@gmail.com,2020-01-03,"{""language"": ""ES"", ""currency"": ""EUR""}",1151.0,Silver,0 +724,Amanda Gonzalez,xhall@yahoo.com,2023-09-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3068.19,Gold,1 +725,Mr. Jeremy Black,ipowers@yahoo.com,2020-07-19,"{""language"": ""EN"", ""currency"": ""USD""}",9820.27,Gold,0 +726,Rose Jones,eric05@hill-hernandez.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",638.57,Bronze,0 +727,Russell Kim,clee@hotmail.com,2020-04-16,"{""language"": ""FR"", ""currency"": ""GBP""}",1894.57,Bronze,1 +728,Dustin Vaughn,yramirez@gmail.com,2024-10-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9881.13,Gold,0 +729,Mario Webb,rodney49@gmail.com,2021-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5942.67,Bronze,0 +730,Charlene Little,rstanley@wilson.net,2024-04-14,"{""language"": ""EN"", ""currency"": ""USD""}",2966.83,Silver,1 +731,Haley West,cookmarissa@miller-klein.biz,2023-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",6494.85,Bronze,1 +732,Robert Beasley,qmaxwell@yahoo.com,2021-03-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8532.83,Gold,1 +733,Lauren Taylor,paul62@gmail.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",4508.01,Gold,0 +734,Pamela Murray,kelseymurray@petty.org,2022-08-03,"{""language"": ""ES"", ""currency"": ""USD""}",7777.01,Gold,0 +735,Mark Lloyd,weaveramber@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",2977.97,Gold,1 +736,Timothy Meyer,ryancurtis@horton.com,2020-04-19,"{""language"": ""IT"", ""currency"": ""MXN""}",1783.73,Bronze,1 +737,Misty Hull,codygould@pittman-mckinney.com,2024-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6735.24,Silver,1 +738,Matthew Ruiz,khernandez@gmail.com,2024-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",7174.02,Gold,0 +739,Charles Riddle,allenomar@yahoo.com,2022-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",5430.19,Gold,0 +740,Veronica Hicks,michael44@aguilar.info,2023-08-02,"{""language"": ""ES"", ""currency"": ""EUR""}",6202.26,Gold,0 +741,Karina Pace,ycoleman@rogers.info,2023-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4284.89,Bronze,0 +742,Jonathan Williams,kevinsmith@yahoo.com,2022-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",3343.94,Gold,1 +743,Janet Patton,torr@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5152.36,Silver,0 +744,Tiffany Garza,davidjohnson@soto.com,2024-01-10,"{""language"": ""FR"", ""currency"": ""CAD""}",4133.12,Bronze,0 +745,Bradley Russell,chadrodriguez@yahoo.com,2020-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4216.75,Silver,1 +746,Henry Vasquez,renee34@gmail.com,2020-05-24,"{""language"": ""DE"", ""currency"": ""MXN""}",5401.37,Bronze,0 +747,Krista Williams,susanbecker@hotmail.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7159.32,Bronze,1 +748,Tracy Parker,jason59@yahoo.com,2020-01-15,"{""language"": ""IT"", ""currency"": ""EUR""}",9022.8,Bronze,1 +749,Morgan Bender,jenkinseric@gmail.com,2024-04-01,"{""language"": ""DE"", ""currency"": ""USD""}",3334.42,Bronze,1 +750,Cathy Walter,beckerpeter@hunt.com,2022-06-11,"{""language"": ""ES"", ""currency"": ""EUR""}",8010.42,Gold,0 +751,Jennifer Perez,hamptonmitchell@brady-hunter.com,2024-07-14,"{""language"": ""DE"", ""currency"": ""CAD""}",4395.97,Bronze,1 +752,Michael Hall,raymond54@hotmail.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""USD""}",3114.85,Gold,0 +753,Steven Mccoy,michelleyork@hotmail.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""MXN""}",6813.56,Gold,1 +754,Sarah Kim,matthewrice@gmail.com,2023-08-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9067.02,Silver,0 +755,Tiffany Bryant,david70@hotmail.com,2021-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",6769.23,Bronze,1 +756,Nicole Sullivan,hdennis@stein-kelly.com,2021-11-13,"{""language"": ""FR"", ""currency"": ""GBP""}",9179.61,Bronze,0 +757,Brittany Le,garyferguson@caldwell.com,2022-03-20,"{""language"": ""EN"", ""currency"": ""GBP""}",1131.97,Silver,1 +758,Melissa Flynn,shannonchen@gmail.com,2024-02-13,"{""language"": ""EN"", ""currency"": ""USD""}",1293.03,Silver,0 +759,Bryan White,lucashenderson@dickerson-carlson.biz,2023-07-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8452.47,Silver,1 +760,Gabrielle Young,glassbradley@foster-mcgrath.com,2021-11-21,"{""language"": ""DE"", ""currency"": ""GBP""}",1743.27,Bronze,0 +761,Jacob Buck,kristyhouse@yahoo.com,2022-09-17,"{""language"": ""ES"", ""currency"": ""EUR""}",7562.01,Bronze,0 +762,Dylan Robinson,terryphillip@gmail.com,2022-10-13,"{""language"": ""IT"", ""currency"": ""GBP""}",2563.44,Gold,0 +763,Debra Morris,dbooth@gmail.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2054.91,Gold,0 +764,Marcus Adkins,ashleymaldonado@gmail.com,2024-10-26,"{""language"": ""IT"", ""currency"": ""GBP""}",4164.61,Gold,1 +765,Justin Sims,hwade@gmail.com,2021-11-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5774.05,Gold,0 +766,Katie Morton,wrighttravis@chapman-bernard.com,2024-05-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6052.55,Bronze,1 +767,Julia Robbins,egoodman@yahoo.com,2020-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",3341.24,Silver,0 +768,Lisa Diaz,michelle19@yahoo.com,2023-03-15,"{""language"": ""IT"", ""currency"": ""EUR""}",1168.65,Silver,0 +769,Mark Mccarthy,karen51@moyer.com,2021-02-06,"{""language"": ""IT"", ""currency"": ""USD""}",5351.0,Gold,0 +770,Samantha Hayden MD,murphycharles@gmail.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""USD""}",1824.24,Bronze,0 +771,Cheryl Nelson,ljones@hotmail.com,2021-02-27,"{""language"": ""DE"", ""currency"": ""GBP""}",6484.89,Silver,0 +772,Sherry Cline,jmiller@foster.com,2023-05-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8047.51,Silver,1 +773,Micheal Thomas,gregorywoodard@walker.org,2024-03-26,"{""language"": ""DE"", ""currency"": ""USD""}",2237.78,Bronze,1 +774,Christopher Allison,bautistaangela@ortiz.org,2024-01-08,"{""language"": ""DE"", ""currency"": ""USD""}",3593.08,Silver,1 +775,Douglas Oconnell,zhangsierra@yahoo.com,2023-02-20,"{""language"": ""EN"", ""currency"": ""MXN""}",5764.24,Gold,0 +776,Phillip Steele,isabella18@yahoo.com,2024-03-11,"{""language"": ""ES"", ""currency"": ""USD""}",2479.03,Gold,0 +777,Rebecca Fox,mlee@jacobs.com,2022-02-10,"{""language"": ""DE"", ""currency"": ""EUR""}",9390.05,Gold,0 +778,Jeffrey Hahn,carolineanderson@gmail.com,2020-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",6787.94,Silver,0 +779,Angela Perry,jonathancontreras@gmail.com,2021-03-18,"{""language"": ""IT"", ""currency"": ""USD""}",6809.23,Gold,1 +780,Mrs. Taylor Murphy,crawfordsally@jensen.com,2020-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",8974.97,Bronze,0 +781,Eric Holland,burkeemily@hill.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""GBP""}",8546.65,Gold,1 +782,Dr. Mary Le,phancock@yahoo.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",6948.05,Silver,1 +783,Darren Jackson,cookstephen@jackson.org,2024-06-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5241.24,Bronze,0 +784,Tracy Bryan,robertrodriguez@sloan.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",3324.22,Gold,0 +785,Walter Washington,brownandrew@gmail.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",4429.37,Silver,1 +786,Carlos Dean,ewise@yahoo.com,2021-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",8664.72,Bronze,1 +787,Martin Jones,brandonadams@gmail.com,2020-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",5426.73,Bronze,0 +788,Gary Johnson,kelly03@yahoo.com,2020-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",9503.37,Gold,0 +789,Anthony Beard,kimderrick@brown-munoz.org,2022-10-08,"{""language"": ""IT"", ""currency"": ""USD""}",4654.82,Gold,0 +790,Robert Martinez,dianamarks@hotmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""GBP""}",387.94,Gold,0 +791,Glenn Waters,mbaker@yahoo.com,2024-06-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5444.19,Gold,0 +792,Elizabeth Colon,erin51@beck.com,2022-05-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1672.92,Silver,0 +793,Brandon Davis,summer25@yahoo.com,2022-03-16,"{""language"": ""DE"", ""currency"": ""CAD""}",8842.05,Bronze,1 +794,Jacqueline Garcia,davislinda@harvey.net,2021-09-08,"{""language"": ""EN"", ""currency"": ""GBP""}",1074.0,Silver,0 +795,Mary Griffin,hughesfelicia@gordon.com,2021-12-08,"{""language"": ""FR"", ""currency"": ""USD""}",4866.73,Silver,1 +796,Jeremy Garcia,nicolehunt@gmail.com,2023-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",683.36,Silver,1 +797,Mike Foster,xsherman@gonzalez.com,2024-06-19,"{""language"": ""ES"", ""currency"": ""MXN""}",576.47,Bronze,0 +798,Kristen Simmons,jessicaanderson@hotmail.com,2024-11-11,"{""language"": ""IT"", ""currency"": ""USD""}",6909.04,Bronze,1 +799,Grace Ortiz,sarahhall@lee.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",3677.89,Silver,0 +800,Mallory Diaz,arnoldstacey@leonard.info,2021-02-09,"{""language"": ""EN"", ""currency"": ""USD""}",291.34,Silver,1 +801,Janice Duncan,jenniferlambert@hotmail.com,2021-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",6651.73,Bronze,1 +802,Chris West,cpalmer@griffin.com,2024-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5169.88,Bronze,0 +803,Miranda Harris MD,esnow@harvey.com,2021-07-31,"{""language"": ""EN"", ""currency"": ""USD""}",4996.48,Bronze,0 +804,Theresa Hernandez,lawrencechristian@king.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",3785.09,Silver,0 +805,Kimberly Wade,rebeccawalker@hotmail.com,2023-03-16,"{""language"": ""ES"", ""currency"": ""GBP""}",7616.25,Silver,1 +806,Terri Smith,msmith@hendricks-meadows.biz,2024-07-01,"{""language"": ""FR"", ""currency"": ""MXN""}",145.15,Bronze,0 +807,Cassandra Garner,ashleyfletcher@parker.net,2024-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",4011.34,Bronze,1 +808,Christopher Jimenez,vphillips@west.com,2022-02-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6930.2,Gold,0 +809,David Murillo,coleclifford@gmail.com,2021-05-04,"{""language"": ""FR"", ""currency"": ""CAD""}",8074.58,Silver,1 +810,David Hanson,danielnguyen@romero.com,2024-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",4739.82,Bronze,0 +811,Kevin Howe,michaelkerr@hotmail.com,2019-12-31,"{""language"": ""IT"", ""currency"": ""EUR""}",5553.5,Silver,1 +812,Lisa Hoffman,lynchdonald@conley.com,2023-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",8624.44,Bronze,1 +813,Gina Fritz,petersrobert@ray-smith.com,2021-03-17,"{""language"": ""EN"", ""currency"": ""USD""}",8959.5,Gold,1 +814,Ashley Scott,santanajennifer@gmail.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""EUR""}",9856.67,Gold,1 +815,Karen Hudson,peterstravis@wyatt.net,2021-09-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1747.21,Bronze,0 +816,Dr. Henry Anderson MD,jacob60@hotmail.com,2019-12-14,"{""language"": ""IT"", ""currency"": ""USD""}",5138.17,Bronze,0 +817,Miranda Terrell,wjones@hotmail.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""EUR""}",8308.38,Silver,1 +818,Taylor Duke,amandalee@perez.org,2022-07-27,"{""language"": ""FR"", ""currency"": ""MXN""}",2121.93,Silver,1 +819,Jay Hart,kevin28@wagner.com,2020-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",2057.08,Bronze,0 +820,Melissa Wheeler,marymeyers@boone.com,2024-03-16,"{""language"": ""FR"", ""currency"": ""MXN""}",7797.24,Bronze,0 +821,Nichole Dixon,billy66@rush-cox.com,2021-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",3940.31,Silver,0 +822,Megan Skinner,vmiller@campbell.com,2020-10-29,"{""language"": ""FR"", ""currency"": ""USD""}",3240.37,Bronze,1 +823,Jerry Owen,joannturner@campbell.com,2020-01-30,"{""language"": ""ES"", ""currency"": ""USD""}",6567.83,Bronze,1 +824,Jennifer Butler,jking@jackson-bailey.com,2024-07-09,"{""language"": ""DE"", ""currency"": ""USD""}",7318.64,Silver,1 +825,Andrew Brown,ygraham@yahoo.com,2024-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",8385.45,Gold,1 +826,Tristan Frederick,brandon10@johnson-oneill.org,2020-03-26,"{""language"": ""EN"", ""currency"": ""USD""}",1937.21,Gold,0 +827,Tyler Dillon,bthompson@yahoo.com,2020-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8813.3,Gold,1 +828,April Bishop,rmendoza@yahoo.com,2022-08-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2292.12,Gold,0 +829,Nathaniel Singh,iking@butler.com,2021-05-11,"{""language"": ""FR"", ""currency"": ""EUR""}",4246.3,Silver,0 +830,Cesar Moore,danielrogers@gmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",356.92,Bronze,0 +831,Denise Perez,ebailey@garcia.org,2022-12-22,"{""language"": ""EN"", ""currency"": ""EUR""}",7300.09,Silver,1 +832,Nicole Huffman,melanieperez@henderson-lewis.biz,2023-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",3359.23,Gold,0 +833,Douglas Byrd,hgates@yahoo.com,2020-08-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7842.07,Gold,0 +834,Amber Everett,scott08@sparks-howe.biz,2021-05-12,"{""language"": ""FR"", ""currency"": ""EUR""}",8047.03,Bronze,0 +835,Alexandra Lopez,davidbrooks@hotmail.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""EUR""}",2639.38,Gold,0 +836,Austin Perez,ryanstevens@hotmail.com,2023-09-10,"{""language"": ""FR"", ""currency"": ""USD""}",4824.16,Bronze,0 +837,Alison Butler,moodymichael@yahoo.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",9011.74,Silver,1 +838,Nicole French,reedrobin@gmail.com,2021-03-29,"{""language"": ""IT"", ""currency"": ""EUR""}",3750.57,Gold,1 +839,George Hamilton,hubertimothy@evans.com,2021-06-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2987.19,Silver,0 +840,Cristina Johnson MD,elizabethjohnson@george.com,2022-04-07,"{""language"": ""DE"", ""currency"": ""CAD""}",8775.27,Gold,0 +841,Randall Flores,buchananalejandro@gmail.com,2021-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2773.79,Gold,1 +842,Jeffrey Lee,fhernandez@yahoo.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",7519.96,Silver,1 +843,Tiffany Cisneros,monica11@yahoo.com,2024-05-02,"{""language"": ""EN"", ""currency"": ""GBP""}",4190.55,Bronze,1 +844,Anita Smith,ecole@hamilton.com,2020-12-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4679.59,Silver,0 +845,Patricia Rodriguez,breanna48@rojas-johnson.com,2022-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4771.02,Bronze,0 +846,Nancy Juarez,shane48@turner.biz,2024-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",1528.37,Bronze,1 +847,James Wang,ana66@gmail.com,2024-05-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7083.45,Bronze,1 +848,Andrew Day,montgomeryjoseph@thompson.com,2021-06-02,"{""language"": ""IT"", ""currency"": ""MXN""}",969.22,Silver,1 +849,Christine Hogan,glenthornton@gmail.com,2023-09-07,"{""language"": ""FR"", ""currency"": ""USD""}",4140.55,Gold,1 +850,Richard Cannon,leejohn@hotmail.com,2024-08-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4584.53,Gold,1 +851,Debra May,juan53@burns-alexander.com,2024-03-03,"{""language"": ""DE"", ""currency"": ""MXN""}",351.28,Silver,0 +852,Nicole Moore,amandagarcia@ritter-rodriguez.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""GBP""}",3965.1,Silver,0 +853,Travis Gonzalez,osweeney@gmail.com,2022-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",4478.91,Bronze,0 +854,Brittany Gillespie,smithjennifer@murillo-gray.com,2021-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",7464.13,Gold,0 +855,Kathryn White,sharon94@gmail.com,2024-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6770.89,Silver,0 +856,Julie Garner,andrewpoole@espinoza.net,2023-07-19,"{""language"": ""ES"", ""currency"": ""GBP""}",4392.19,Gold,0 +857,Kelly Ruiz PhD,alexander41@hayes.com,2022-05-22,"{""language"": ""FR"", ""currency"": ""MXN""}",1821.75,Silver,0 +858,David Price,vanessa55@hotmail.com,2021-10-19,"{""language"": ""IT"", ""currency"": ""GBP""}",4097.74,Bronze,1 +859,Robin Garcia,mkeller@yahoo.com,2024-05-19,"{""language"": ""FR"", ""currency"": ""GBP""}",2848.76,Gold,1 +860,Billy Snyder,hudsonkimberly@randall.com,2021-10-03,"{""language"": ""FR"", ""currency"": ""USD""}",9562.31,Bronze,1 +861,Patricia Alvarez,jamie76@harper.com,2024-01-29,"{""language"": ""EN"", ""currency"": ""USD""}",175.07,Bronze,0 +862,Ronald Copeland,ambersullivan@hotmail.com,2021-11-20,"{""language"": ""ES"", ""currency"": ""CAD""}",3364.43,Gold,1 +863,James Herrera,coxvalerie@cook.biz,2023-02-06,"{""language"": ""EN"", ""currency"": ""USD""}",7367.97,Bronze,1 +864,Nicholas Berry,emmajohnson@yahoo.com,2019-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",301.08,Gold,1 +865,Lindsay Adams,alicia89@gmail.com,2021-08-13,"{""language"": ""FR"", ""currency"": ""GBP""}",7968.09,Silver,1 +866,Larry Torres,clarkapril@yahoo.com,2022-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7883.67,Gold,1 +867,Matthew Hanson,lisaschroeder@west.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5512.94,Silver,0 +868,Patricia Davis,mirandablake@gmail.com,2021-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",3526.03,Gold,1 +869,Cassie Frey,spencerjohn@gmail.com,2020-03-11,"{""language"": ""IT"", ""currency"": ""GBP""}",88.34,Bronze,1 +870,Selena Morris,lindadyer@garrett-clark.com,2021-11-23,"{""language"": ""EN"", ""currency"": ""USD""}",4675.34,Silver,0 +871,Lisa Ward,bryantrachael@yahoo.com,2022-07-16,"{""language"": ""EN"", ""currency"": ""EUR""}",1517.2,Gold,1 +872,John Wilcox,samanthapalmer@gmail.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""CAD""}",506.74,Bronze,0 +873,Jason Rodgers,katherine56@brown.com,2020-11-30,"{""language"": ""IT"", ""currency"": ""GBP""}",1328.37,Gold,1 +874,Sean Payne,jessica83@skinner.com,2024-02-03,"{""language"": ""DE"", ""currency"": ""CAD""}",5594.97,Silver,1 +875,Priscilla Cervantes,figueroareginald@villa-king.com,2021-11-04,"{""language"": ""FR"", ""currency"": ""MXN""}",6621.98,Bronze,0 +876,Marc Kelly,garrettbrittany@gmail.com,2024-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8630.4,Bronze,1 +877,Carol Gomez,michael15@yahoo.com,2021-07-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1355.27,Bronze,1 +878,James Kramer,yclark@gmail.com,2024-07-04,"{""language"": ""FR"", ""currency"": ""GBP""}",4078.96,Gold,0 +879,Madison Rollins,lgonzalez@yahoo.com,2022-06-17,"{""language"": ""DE"", ""currency"": ""GBP""}",5544.04,Silver,1 +880,Christopher Simpson,mroberts@robinson.com,2021-12-13,"{""language"": ""EN"", ""currency"": ""MXN""}",933.13,Bronze,1 +881,Michael Patel,angelalowe@gmail.com,2022-11-18,"{""language"": ""FR"", ""currency"": ""USD""}",2474.43,Silver,0 +882,Larry Jones,susanjohnson@brock-mahoney.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3173.84,Silver,1 +883,Diana Anderson,morganandre@valencia.biz,2023-04-20,"{""language"": ""DE"", ""currency"": ""USD""}",2025.33,Silver,0 +884,Ronald Ramsey,michael97@hotmail.com,2022-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4748.67,Bronze,0 +885,Nancy Hanna,cathynewton@gmail.com,2022-12-10,"{""language"": ""FR"", ""currency"": ""EUR""}",299.1,Silver,1 +886,Gregory Booker,griffithsamuel@cooper.com,2022-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",9598.83,Gold,1 +887,Andrew Carpenter,ialexander@bishop.com,2020-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",6699.58,Silver,0 +888,Michael Hernandez,santiagoluis@gmail.com,2023-10-03,"{""language"": ""IT"", ""currency"": ""GBP""}",6202.14,Gold,0 +889,Kenneth Marks,buckleytimothy@gmail.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2066.57,Silver,0 +890,Jill Wilson,irodriguez@hotmail.com,2022-01-01,"{""language"": ""IT"", ""currency"": ""CAD""}",8387.23,Bronze,1 +891,Nicole Nunez,pattersonjennifer@yahoo.com,2023-04-30,"{""language"": ""ES"", ""currency"": ""MXN""}",795.83,Bronze,0 +892,Debra Johnson,jennifer92@bennett.biz,2024-03-14,"{""language"": ""DE"", ""currency"": ""EUR""}",819.47,Bronze,1 +893,Matthew Smith,robertali@yahoo.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",8996.13,Bronze,0 +894,Courtney Watkins DVM,mark30@gmail.com,2020-12-26,"{""language"": ""IT"", ""currency"": ""USD""}",9694.88,Gold,1 +895,Robert Perez,ryanlove@nash-ortiz.org,2021-11-01,"{""language"": ""ES"", ""currency"": ""GBP""}",8505.82,Gold,1 +896,Tara Reed,robertjohnson@yahoo.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7999.36,Gold,0 +897,Samuel Medina,carlos58@yahoo.com,2021-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",127.57,Bronze,0 +898,George Rivera,egreen@hotmail.com,2021-01-05,"{""language"": ""FR"", ""currency"": ""MXN""}",129.33,Bronze,0 +899,Cathy Henderson,petersashley@sanchez.com,2022-01-02,"{""language"": ""DE"", ""currency"": ""MXN""}",9294.1,Gold,0 +900,Mary Holden,rbrown@gmail.com,2021-06-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9269.25,Gold,1 +901,Rhonda Lin,stoneandre@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""EUR""}",7711.06,Gold,1 +902,Joseph Nicholson,timothy11@gmail.com,2024-12-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1138.07,Gold,1 +903,Pamela Cruz,catherine46@castillo-dudley.org,2020-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9902.4,Gold,1 +904,Tracy Petty,uyoung@hotmail.com,2024-11-27,"{""language"": ""IT"", ""currency"": ""CAD""}",9876.65,Silver,1 +905,Vincent Vazquez,adam14@mcgee.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""EUR""}",990.66,Bronze,0 +906,Gary Miranda,harringtondouglas@rogers.com,2022-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",6239.3,Gold,1 +907,Juan Smith,amyfleming@wilson.org,2023-04-10,"{""language"": ""ES"", ""currency"": ""CAD""}",9244.42,Bronze,1 +908,Mr. Jason Silva,maryjones@yahoo.com,2021-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",2025.28,Gold,0 +909,Joseph Allen,kendra65@nelson-gomez.biz,2023-11-07,"{""language"": ""EN"", ""currency"": ""EUR""}",4748.85,Silver,1 +910,Joseph Wilson,michael83@orozco.org,2022-07-24,"{""language"": ""EN"", ""currency"": ""GBP""}",1303.98,Gold,0 +911,Erin Arroyo,qsteele@hotmail.com,2024-07-26,"{""language"": ""IT"", ""currency"": ""CAD""}",7433.29,Silver,1 +912,Michael Gallagher,garciamiranda@hotmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9056.68,Bronze,0 +913,Danielle Anderson,rebeccastevens@gmail.com,2020-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1571.11,Gold,0 +914,Aaron Adams,paulwells@weber-blackwell.biz,2024-10-28,"{""language"": ""IT"", ""currency"": ""GBP""}",5354.91,Silver,0 +915,Emily Pope,parkerryan@mckinney.com,2020-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",8955.56,Bronze,0 +916,Stephanie Peterson,yhart@ayers.org,2024-09-06,"{""language"": ""FR"", ""currency"": ""GBP""}",9795.36,Gold,1 +917,Andrew Wood,gordontammy@yahoo.com,2024-10-01,"{""language"": ""IT"", ""currency"": ""USD""}",626.23,Silver,1 +918,Carla Gray,gina19@gmail.com,2020-07-10,"{""language"": ""IT"", ""currency"": ""CAD""}",9392.58,Silver,1 +919,Jamie Lee,rogerskyle@yahoo.com,2022-05-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8558.0,Silver,0 +920,Sabrina Mosley,christopher05@gmail.com,2020-11-04,"{""language"": ""EN"", ""currency"": ""EUR""}",7147.31,Gold,0 +921,Linda Duncan,rebecca39@gmail.com,2024-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",200.15,Bronze,0 +922,Mrs. Lisa Horne,katelyn60@becker.com,2021-06-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1645.92,Silver,1 +923,Karen Moreno,tracyduke@gmail.com,2021-09-09,"{""language"": ""ES"", ""currency"": ""GBP""}",8421.26,Silver,0 +924,Randall Evans,lauren88@hotmail.com,2024-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",6216.7,Gold,1 +925,James Williams,aramirez@parker.com,2023-11-05,"{""language"": ""ES"", ""currency"": ""USD""}",9552.04,Silver,1 +926,Alexis Espinoza,kenneth79@richardson-mclean.com,2023-02-04,"{""language"": ""FR"", ""currency"": ""EUR""}",6596.42,Bronze,0 +927,Susan Stephenson,mark76@yahoo.com,2023-07-13,"{""language"": ""DE"", ""currency"": ""MXN""}",208.86,Gold,0 +928,Frank Beck,nmurphy@anderson.com,2020-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",9198.65,Gold,0 +929,Heather Wagner,shannonedwards@yahoo.com,2020-12-21,"{""language"": ""DE"", ""currency"": ""EUR""}",977.98,Silver,1 +930,Eric Thompson,dennisvincent@gmail.com,2021-12-25,"{""language"": ""ES"", ""currency"": ""USD""}",8824.37,Silver,1 +931,Colin Mitchell,butlerjonathan@thomas-clark.com,2024-07-02,"{""language"": ""DE"", ""currency"": ""CAD""}",7810.81,Silver,1 +932,Ana Whitney,andreaprince@macias-rogers.com,2024-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2389.81,Silver,1 +933,Frank Jennings,ballen@gmail.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""USD""}",5786.1,Bronze,0 +934,Robin Reilly,hahnmaria@yahoo.com,2024-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5480.76,Silver,1 +935,Brittney Hall,amanda47@cunningham.net,2021-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",531.64,Silver,1 +936,Brittney Johnson,michelle67@reynolds.com,2020-01-08,"{""language"": ""IT"", ""currency"": ""EUR""}",9420.02,Bronze,1 +937,Dillon Johnson,xruiz@carter.com,2024-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",1753.87,Gold,0 +938,Craig King,patrick72@allen.biz,2020-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4362.48,Bronze,1 +939,Eugene Sanchez,jonesterri@hotmail.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""MXN""}",7994.57,Gold,1 +940,Rachel Brown,marcusjones@garrison-kennedy.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",3235.67,Gold,1 +941,Joseph Blair,emilyjohnson@finley.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""GBP""}",7569.69,Gold,1 +942,Christina Ellis,kguerrero@yahoo.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4625.95,Gold,0 +943,Catherine Sanchez,ruizmaria@gmail.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",7029.11,Silver,1 +944,Shannon Blanchard,tammygibson@martin.com,2023-05-15,"{""language"": ""EN"", ""currency"": ""MXN""}",9955.3,Gold,0 +945,Jared Mcbride,cdiaz@hotmail.com,2024-01-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2484.7,Silver,0 +946,Jennifer Mcdonald,anthony46@martinez.info,2023-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5397.44,Silver,0 +947,Charles Wilson,hansonmonica@yahoo.com,2023-09-27,"{""language"": ""DE"", ""currency"": ""GBP""}",549.4,Bronze,1 +948,Bryan Miller,lisa26@yahoo.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",3491.44,Silver,0 +949,Kenneth Campbell,tammy25@simpson.com,2024-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",839.28,Bronze,1 +950,Thomas Davis,fspears@hotmail.com,2020-11-28,"{""language"": ""EN"", ""currency"": ""USD""}",8721.16,Bronze,0 +951,James Burns,horneandrea@gmail.com,2022-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9393.8,Silver,0 +952,John Reynolds,hzamora@brown.net,2020-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6534.07,Silver,0 +953,Amanda Lawrence,pcastillo@conrad.com,2019-12-18,"{""language"": ""FR"", ""currency"": ""GBP""}",2922.54,Silver,1 +954,Heather Young,matthew88@hotmail.com,2023-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",9209.04,Silver,1 +955,Patricia Navarro,llamb@yahoo.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",5312.34,Gold,1 +956,Tara Braun,joshua70@dillon.com,2022-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",2572.97,Silver,0 +957,Anna Curry,paul19@yahoo.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""EUR""}",6937.2,Silver,1 +958,Carol James,thorntonkristen@young.com,2020-07-15,"{""language"": ""IT"", ""currency"": ""MXN""}",3803.91,Bronze,1 +959,Jennifer Snyder,ijones@hotmail.com,2023-09-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7355.76,Silver,1 +960,Pamela Campbell,umaxwell@ellis.biz,2024-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",7852.27,Bronze,1 +961,Emily Sutton,eadams@jackson.com,2024-01-10,"{""language"": ""ES"", ""currency"": ""GBP""}",6478.44,Bronze,0 +962,Jessica Burnett,gcooper@hickman.com,2020-08-26,"{""language"": ""EN"", ""currency"": ""CAD""}",604.09,Silver,1 +963,Jason Campbell,jeffrey65@alexander-davis.com,2024-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",5690.33,Bronze,1 +964,Jennifer Sullivan,udavis@black.info,2024-06-21,"{""language"": ""EN"", ""currency"": ""CAD""}",2474.76,Bronze,1 +965,Jonathan Thomas,theresa37@hotmail.com,2021-07-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2794.82,Silver,1 +966,Paul Fitzpatrick,jesusstone@gmail.com,2020-03-18,"{""language"": ""FR"", ""currency"": ""USD""}",364.57,Gold,1 +967,Angel Daniels,vlane@gmail.com,2021-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5259.24,Bronze,1 +968,Jill Everett,kristen11@yahoo.com,2021-05-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4250.92,Bronze,1 +969,Edwin Escobar,ymartinez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",6147.83,Bronze,1 +970,James Hawkins,jhernandez@yahoo.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4292.26,Gold,1 +971,Angelica Miller,christopherwilson@hotmail.com,2021-11-05,"{""language"": ""DE"", ""currency"": ""MXN""}",4037.4,Silver,0 +972,Aaron Vega,ovillarreal@yahoo.com,2021-06-27,"{""language"": ""ES"", ""currency"": ""MXN""}",3464.66,Silver,0 +973,Anthony Williams,hallvictoria@alvarado-little.net,2021-04-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9762.94,Silver,0 +974,Donna Becker,lewisbriana@johnson.com,2023-01-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4150.41,Gold,1 +975,Deborah Smith,jasonlopez@yahoo.com,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",5796.63,Bronze,0 +976,William White,anthonyrodriguez@hotmail.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5128.03,Silver,0 +977,Jessica Johnson,evanjordan@yahoo.com,2021-09-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2905.05,Bronze,0 +978,Karen Jones,ann72@rodriguez.org,2020-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",1997.34,Silver,0 +979,Jonathan Figueroa,jlee@hotmail.com,2022-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",8373.27,Gold,1 +980,Jade Brown,brownkelly@yahoo.com,2023-07-17,"{""language"": ""EN"", ""currency"": ""EUR""}",1828.74,Gold,1 +981,Brandi Palmer,hillchristopher@hotmail.com,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",861.03,Gold,1 +982,Tina Phillips,charles07@valdez-davidson.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8227.05,Silver,1 +983,Victoria Edwards,barry13@yahoo.com,2023-05-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1906.54,Bronze,1 +984,Jordan Wyatt,wyattpatrick@ramos.com,2022-09-08,"{""language"": ""IT"", ""currency"": ""GBP""}",5856.09,Gold,0 +985,Devon Miller,hbrown@carpenter.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",814.42,Gold,0 +986,Amanda Griffin,chenry@hotmail.com,2021-11-24,"{""language"": ""EN"", ""currency"": ""USD""}",3114.29,Silver,1 +987,Nicholas Harris,ashley15@hotmail.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4525.1,Bronze,0 +988,Jane Williams,matthew67@davis-shaw.com,2024-02-20,"{""language"": ""ES"", ""currency"": ""USD""}",2062.44,Gold,1 +989,Daniel Leach,holmestammy@yahoo.com,2023-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",265.8,Bronze,1 +990,Ronald Perry,qrosario@gmail.com,2022-12-01,"{""language"": ""IT"", ""currency"": ""GBP""}",9697.75,Gold,1 +991,Cindy Cooke,kennethmendez@yahoo.com,2024-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",3061.34,Bronze,0 +992,Jose Lee,marcdaniel@rogers.org,2021-09-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5386.02,Silver,0 +993,Cory Valencia,rspencer@brooks.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""GBP""}",5637.77,Gold,1 +994,Mr. Max Clay,alison73@gonzalez.net,2022-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",2859.87,Bronze,0 +995,Karen Clark,johnny37@ward-flores.net,2021-04-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1115.86,Gold,0 +996,Jennifer Mccoy,chadmiller@flores.org,2023-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",8161.53,Silver,1 +997,Miguel Brown,sara30@bishop.net,2022-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",9384.36,Bronze,0 +998,David Dunlap,dennisstanley@hotmail.com,2021-03-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7695.82,Silver,0 +999,Michael Garcia,tolson@kane.com,2020-07-25,"{""language"": ""ES"", ""currency"": ""USD""}",5740.09,Bronze,0 +1000,Michael Johnson,lamleon@sparks.com,2020-03-26,"{""language"": ""ES"", ""currency"": ""GBP""}",5869.59,Gold,0 +1001,Mary Hall,cheryl15@martin.com,2023-06-28,"{""language"": ""DE"", ""currency"": ""MXN""}",2267.55,Silver,0 +1002,Randall Lang,valerieperez@jackson.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""CAD""}",2077.73,Silver,0 +1003,Kristin White,ifoster@hotmail.com,2024-04-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2744.92,Silver,0 +1004,Shawn Sloan,hensondavid@johnson-hunter.com,2020-10-03,"{""language"": ""ES"", ""currency"": ""USD""}",71.37,Bronze,0 +1005,Adam Kirby,ashley26@kelley.biz,2024-05-01,"{""language"": ""ES"", ""currency"": ""USD""}",9431.18,Silver,0 +1006,Joseph Wagner,aaronpratt@hotmail.com,2022-04-01,"{""language"": ""ES"", ""currency"": ""USD""}",3029.54,Bronze,1 +1007,James Hale Jr.,benjaminbrown@yahoo.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""GBP""}",8263.0,Gold,0 +1008,Jose Thompson,urodgers@yahoo.com,2021-04-14,"{""language"": ""EN"", ""currency"": ""CAD""}",7955.79,Gold,1 +1009,Cody Watkins,thomasmark@yahoo.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6918.63,Gold,0 +1010,Jillian Jimenez,fblake@gmail.com,2023-03-14,"{""language"": ""FR"", ""currency"": ""EUR""}",670.84,Silver,1 +1011,Michael Townsend,john21@gates.com,2021-08-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2111.35,Gold,0 +1012,Michele Smith,stevenbailey@solis.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6434.66,Silver,1 +1013,Brian Phillips,scottgwendolyn@robinson.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""USD""}",937.49,Bronze,1 +1014,David Hart,taylorjames@gmail.com,2024-11-27,"{""language"": ""DE"", ""currency"": ""GBP""}",5760.96,Silver,1 +1015,William White,rebeccamills@wong.com,2020-06-30,"{""language"": ""IT"", ""currency"": ""USD""}",9779.89,Bronze,0 +1016,Kari Harrison,ethansmith@yahoo.com,2024-10-06,"{""language"": ""IT"", ""currency"": ""MXN""}",6088.39,Gold,0 +1017,Gary Short,scott91@yahoo.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""MXN""}",3456.89,Gold,0 +1018,John Leonard,barbara13@owen.biz,2023-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",9047.23,Gold,1 +1019,Kevin Williamson,sancheztony@gaines.info,2023-09-12,"{""language"": ""ES"", ""currency"": ""USD""}",3305.9,Silver,0 +1020,Victor Sutton,melindamason@gmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5558.66,Gold,0 +1021,Dr. Samuel Shannon,vbray@young.net,2020-10-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7482.32,Gold,1 +1022,Dawn Ray,renee86@hotmail.com,2023-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",7174.78,Silver,0 +1023,Maurice Nelson,stephaniemoore@shields-smith.org,2022-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6452.61,Gold,1 +1024,Michael Robinson,wendybraun@harrington.net,2022-08-12,"{""language"": ""IT"", ""currency"": ""USD""}",1674.41,Bronze,1 +1025,Donald Scott,randallmorris@yahoo.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4356.9,Bronze,1 +1026,John Robinson,jennifer67@gmail.com,2020-09-07,"{""language"": ""ES"", ""currency"": ""USD""}",3356.26,Silver,1 +1027,Lisa Reed,swade@rice.org,2021-12-31,"{""language"": ""ES"", ""currency"": ""CAD""}",2806.82,Gold,0 +1028,Lisa Ball,mflores@yahoo.com,2022-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7171.31,Silver,0 +1029,Joseph Saunders,loriwilliams@gmail.com,2023-06-29,"{""language"": ""ES"", ""currency"": ""MXN""}",5314.59,Bronze,0 +1030,Mark Rodriguez,samuelporter@davis.net,2020-08-18,"{""language"": ""FR"", ""currency"": ""MXN""}",2055.92,Bronze,1 +1031,Randy Clark,monroelisa@gmail.com,2022-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",8861.8,Silver,0 +1032,Rebecca Diaz,odavis@yahoo.com,2020-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",430.68,Silver,0 +1033,Phillip Johnson,jeremy53@hotmail.com,2023-07-18,"{""language"": ""FR"", ""currency"": ""USD""}",7368.57,Gold,0 +1034,April Holloway,kayla28@smith.com,2021-11-23,"{""language"": ""DE"", ""currency"": ""USD""}",681.9,Silver,1 +1035,Bradley Lee,michaelruiz@pearson.com,2024-04-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6225.7,Silver,1 +1036,Jennifer Rollins,leebrandon@gmail.com,2023-03-17,"{""language"": ""FR"", ""currency"": ""EUR""}",556.25,Gold,1 +1037,Jessica Griffin,timothyfoster@gonzales-joyce.net,2021-09-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5054.73,Bronze,0 +1038,Michael Warren,sarah38@coleman.com,2021-11-11,"{""language"": ""IT"", ""currency"": ""MXN""}",7957.28,Gold,0 +1039,Steven Henry,crawfordcatherine@greene-williams.biz,2021-09-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1956.21,Bronze,1 +1040,Christopher Rodriguez,burchjacob@garcia-burgess.biz,2023-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2569.72,Gold,0 +1041,Mrs. Megan Moore,caitlinroberson@gmail.com,2022-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7730.81,Bronze,1 +1042,Vickie Castro,johnsondonna@cross.com,2021-07-25,"{""language"": ""DE"", ""currency"": ""USD""}",3429.56,Gold,0 +1043,Kayla Hernandez,karla64@davis-dunn.net,2024-11-16,"{""language"": ""FR"", ""currency"": ""CAD""}",3754.3,Gold,0 +1044,Taylor Bennett MD,ufrancis@gmail.com,2021-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",838.82,Silver,1 +1045,Nicholas Patel,stevenharmon@gmail.com,2022-06-01,"{""language"": ""IT"", ""currency"": ""EUR""}",217.44,Silver,1 +1046,Catherine Fuller,tonygross@rose.biz,2021-04-24,"{""language"": ""ES"", ""currency"": ""USD""}",7361.16,Bronze,1 +1047,Stephanie Rivers,adam42@ballard.com,2020-12-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6583.1,Silver,1 +1048,Pamela Reed,fthomas@rodriguez-brown.com,2022-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",5574.14,Bronze,0 +1049,Jermaine Leonard,joy55@thompson.biz,2024-05-13,"{""language"": ""IT"", ""currency"": ""MXN""}",8338.65,Silver,0 +1050,Jennifer Peterson,haleyhumphrey@yahoo.com,2019-12-12,"{""language"": ""FR"", ""currency"": ""USD""}",4158.36,Gold,0 +1051,Michael Hunter,catherinecase@ford.net,2023-07-04,"{""language"": ""FR"", ""currency"": ""MXN""}",8320.33,Bronze,0 +1052,Miguel Rodriguez,gonzaleslatoya@smith.com,2021-05-02,"{""language"": ""FR"", ""currency"": ""USD""}",2998.02,Silver,1 +1053,William Scott,victorcrawford@hotmail.com,2021-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9064.04,Silver,0 +1054,Jeremy Perez,elizabethflores@hotmail.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""USD""}",171.0,Silver,0 +1055,Taylor Mullins,gregory33@johnson.com,2020-10-17,"{""language"": ""ES"", ""currency"": ""EUR""}",3011.17,Silver,1 +1056,Andrew Lyons,williampowers@gmail.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""USD""}",7119.3,Bronze,0 +1057,Tracy Miranda,jacksoneric@christensen-johnson.info,2021-09-10,"{""language"": ""FR"", ""currency"": ""GBP""}",1561.32,Silver,1 +1058,Mrs. Catherine Griffin,hannah20@hanson.info,2022-02-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4362.36,Silver,0 +1059,Mr. Nicholas Martin,boyerkevin@yahoo.com,2020-05-02,"{""language"": ""IT"", ""currency"": ""CAD""}",3191.9,Bronze,0 +1060,Terry Garner,kelli40@gmail.com,2021-10-09,"{""language"": ""FR"", ""currency"": ""CAD""}",4565.88,Bronze,1 +1061,Jessica Johnson,coxneil@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""MXN""}",1418.0,Bronze,1 +1062,Dr. Adrienne Day DDS,rebeccanewton@gmail.com,2022-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",4367.76,Gold,1 +1063,Linda Molina,wvincent@hotmail.com,2021-01-31,"{""language"": ""EN"", ""currency"": ""CAD""}",4005.86,Bronze,0 +1064,Timothy Manning,henrybrooke@yahoo.com,2020-12-05,"{""language"": ""EN"", ""currency"": ""USD""}",7264.68,Silver,0 +1065,Eddie Johnson,bateswilliam@yahoo.com,2022-04-08,"{""language"": ""EN"", ""currency"": ""EUR""}",9958.13,Bronze,0 +1066,Jennifer Jones,maynardjames@young.org,2021-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7551.33,Gold,1 +1067,Robert Aguilar,webbchristopher@gmail.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""EUR""}",3434.18,Silver,0 +1068,Elizabeth Wells,benjamin79@wright-roberts.org,2024-06-12,"{""language"": ""ES"", ""currency"": ""MXN""}",5099.8,Silver,0 +1069,Dennis Clark,ericksonfelicia@gmail.com,2024-07-07,"{""language"": ""IT"", ""currency"": ""CAD""}",6033.19,Bronze,1 +1070,Joshua Wade,riveraamber@hotmail.com,2020-03-03,"{""language"": ""FR"", ""currency"": ""GBP""}",6997.37,Bronze,1 +1071,Kenneth Stone,nmendez@hotmail.com,2023-07-09,"{""language"": ""DE"", ""currency"": ""GBP""}",6014.65,Silver,0 +1072,Crystal Mendez,jerry63@gmail.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",8860.3,Gold,0 +1073,Bradley Clark,coxnicole@barnes.com,2023-09-21,"{""language"": ""DE"", ""currency"": ""USD""}",1866.8,Silver,1 +1074,Tammy Roberts,teresaallison@tapia.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""USD""}",6996.5,Gold,1 +1075,David Everett,ramosgabrielle@gmail.com,2022-09-22,"{""language"": ""ES"", ""currency"": ""MXN""}",517.33,Silver,1 +1076,Raven Hobbs,haynesnathan@herman.info,2023-08-13,"{""language"": ""DE"", ""currency"": ""CAD""}",5461.81,Silver,1 +1077,Lisa Yoder,katrina84@gmail.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4796.95,Gold,1 +1078,Leah Mendez,dominic72@hotmail.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2781.31,Gold,0 +1079,Brad Smith,sheriwright@shaw.com,2021-03-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1458.68,Silver,0 +1080,Jesse Hamilton,tarahickman@johnson.com,2021-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",8260.4,Silver,1 +1081,Andrew Martinez,millsjonathan@hotmail.com,2024-11-04,"{""language"": ""ES"", ""currency"": ""EUR""}",490.05,Bronze,0 +1082,Jeanne Smith,daniel03@smith.biz,2023-11-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9545.06,Gold,0 +1083,Ryan Hatfield,kadams@mayo-vasquez.biz,2024-01-31,"{""language"": ""ES"", ""currency"": ""CAD""}",1350.29,Silver,1 +1084,Heather Campbell,davidharris@lopez.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5241.66,Silver,0 +1085,Patricia Castillo,vwarren@yahoo.com,2021-09-11,"{""language"": ""FR"", ""currency"": ""GBP""}",5537.12,Gold,0 +1086,David Rodriguez,ijohnson@phillips.com,2024-05-10,"{""language"": ""FR"", ""currency"": ""USD""}",1450.85,Gold,1 +1087,Rebecca Anderson,kenneth21@hotmail.com,2023-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",5276.26,Gold,0 +1088,James Hodge,todd94@yahoo.com,2020-01-11,"{""language"": ""IT"", ""currency"": ""CAD""}",1332.99,Gold,1 +1089,Marie Fernandez,kmorales@yahoo.com,2022-01-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7506.47,Bronze,1 +1090,Kiara Roberts,samuel37@gmail.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""USD""}",5954.28,Bronze,0 +1091,Tonya Zavala,meghan10@gmail.com,2020-11-29,"{""language"": ""FR"", ""currency"": ""USD""}",9298.74,Silver,1 +1092,Maureen Burgess,kyle81@gmail.com,2021-09-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8745.41,Bronze,1 +1093,Carlos Mclaughlin,riversheidi@yahoo.com,2021-11-20,"{""language"": ""EN"", ""currency"": ""EUR""}",2838.69,Silver,1 +1094,Jody Harmon,kaiserheather@gardner-lee.com,2024-12-01,"{""language"": ""EN"", ""currency"": ""MXN""}",6609.19,Bronze,0 +1095,Adam Rocha,fsummers@hotmail.com,2021-03-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5136.79,Bronze,1 +1096,Abigail Marquez,james23@yahoo.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",2584.21,Silver,1 +1097,David Collins,xsingleton@small.info,2022-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3315.65,Silver,1 +1098,Elizabeth Brock,camachosamuel@cochran.org,2020-08-05,"{""language"": ""IT"", ""currency"": ""USD""}",3842.07,Silver,0 +1099,Lisa Wolfe,savannah72@yahoo.com,2023-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4269.82,Gold,1 +1100,Richard Wolfe,lauren64@gordon.biz,2022-05-14,"{""language"": ""IT"", ""currency"": ""EUR""}",6966.89,Silver,1 +1101,Linda Garcia,nbrown@smith.biz,2022-10-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1463.57,Silver,1 +1102,Paula Carter,heather33@white-deleon.info,2022-05-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6382.54,Silver,1 +1103,Phillip Collins,kellyhill@hall.biz,2023-02-21,"{""language"": ""ES"", ""currency"": ""MXN""}",7696.89,Bronze,0 +1104,Charles Carter,murphyjohn@hotmail.com,2024-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",3470.71,Gold,1 +1105,Stephen Blanchard,swright@moore.info,2019-12-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9311.42,Bronze,0 +1106,Laura Martinez,wilsondalton@hotmail.com,2022-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",3752.71,Bronze,1 +1107,Todd Johnson,justinmoore@torres.com,2020-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",1758.78,Bronze,1 +1108,Derrick Gilbert,nross@gmail.com,2023-09-10,"{""language"": ""EN"", ""currency"": ""MXN""}",6649.82,Gold,0 +1109,Peter Perez,davidkelly@hotmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1703.44,Silver,1 +1110,Lori Johnson,tdaniels@yahoo.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""EUR""}",5103.52,Silver,1 +1111,Kim Hurley,anthonyday@hotmail.com,2024-06-13,"{""language"": ""DE"", ""currency"": ""CAD""}",2278.09,Silver,1 +1112,James Tran,noah52@gmail.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5583.19,Bronze,1 +1113,Joshua Berger,esimpson@whitehead.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""EUR""}",6890.83,Gold,1 +1114,Lisa Gordon,fbarnes@gmail.com,2022-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8713.82,Silver,0 +1115,Timothy Ramirez,ronalddunn@jones.com,2023-11-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5448.47,Gold,0 +1116,Paul Joyce,jesuspeters@ellis.net,2024-05-30,"{""language"": ""ES"", ""currency"": ""CAD""}",482.67,Gold,1 +1117,Molly Russo,ashley87@elliott.biz,2022-05-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3220.23,Bronze,0 +1118,Randy Phillips,tyler57@gmail.com,2023-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",3934.27,Bronze,1 +1119,Lindsay Morgan,patriciamccullough@chan.info,2020-10-17,"{""language"": ""IT"", ""currency"": ""USD""}",5445.49,Silver,1 +1120,Lauren Hampton,jordanjonathan@li-webster.com,2020-03-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8638.89,Silver,1 +1121,Robert Hernandez,zberry@hotmail.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""EUR""}",8415.94,Silver,1 +1122,Jessica Hicks,paul32@gmail.com,2022-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",7713.31,Silver,0 +1123,Dr. Victoria Tucker MD,john28@ellis.com,2023-05-24,"{""language"": ""IT"", ""currency"": ""USD""}",4622.82,Bronze,1 +1124,Michael Jensen,pughcynthia@yahoo.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",5290.98,Silver,1 +1125,Mark Miller,eric48@mcdaniel.com,2023-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8926.37,Bronze,0 +1126,Crystal Vega,phillipsnyder@gmail.com,2024-02-14,"{""language"": ""FR"", ""currency"": ""USD""}",1485.94,Bronze,1 +1127,Kevin Nicholson,ericjohnson@gilbert-austin.com,2022-06-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5361.58,Gold,1 +1128,Nicole Murphy,andrew11@andrade-hobbs.info,2020-07-27,"{""language"": ""IT"", ""currency"": ""USD""}",5481.55,Silver,1 +1129,Steven King,richardwhitehead@nelson.com,2021-12-22,"{""language"": ""ES"", ""currency"": ""USD""}",1695.2,Bronze,1 +1130,Eduardo Lane,qcross@lee.org,2021-11-27,"{""language"": ""EN"", ""currency"": ""MXN""}",5431.7,Gold,1 +1131,Joel Jackson,uwilliamson@hotmail.com,2021-09-25,"{""language"": ""DE"", ""currency"": ""EUR""}",5557.9,Gold,0 +1132,Michael Thomas,troyroman@torres.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""EUR""}",4037.85,Silver,0 +1133,Randy Buck,anthony16@brown.biz,2023-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2937.42,Silver,0 +1134,Brittany Ferguson,tylerparks@crawford-wright.info,2021-06-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3175.64,Bronze,0 +1135,Joshua Davis,bclark@yahoo.com,2022-12-25,"{""language"": ""IT"", ""currency"": ""USD""}",882.17,Bronze,1 +1136,Johnny Garcia,burtonmegan@hall.net,2023-10-31,"{""language"": ""FR"", ""currency"": ""USD""}",3201.44,Gold,0 +1137,Thomas Ford,portermichael@carpenter-moss.net,2024-08-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4885.15,Silver,1 +1138,Jennifer Flores DDS,georgevazquez@hotmail.com,2024-08-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8999.05,Bronze,0 +1139,Erika Miller,kennethtaylor@brown.net,2022-05-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3666.92,Gold,1 +1140,Mark Jones,ethanmcdonald@hotmail.com,2020-07-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8546.6,Gold,0 +1141,Molly Clayton,tvillegas@kennedy-potts.info,2024-04-11,"{""language"": ""DE"", ""currency"": ""MXN""}",7210.38,Silver,0 +1142,Nancy Reed,ljacobson@yahoo.com,2024-06-01,"{""language"": ""ES"", ""currency"": ""MXN""}",5048.93,Bronze,0 +1143,Cynthia Riley,alexanderhunt@macdonald.com,2021-02-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2730.94,Bronze,1 +1144,Danielle Wilson,awilliams@hotmail.com,2020-11-03,"{""language"": ""IT"", ""currency"": ""USD""}",9504.39,Gold,1 +1145,Jennifer Howell,wrightann@hotmail.com,2023-11-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6209.45,Silver,0 +1146,Benjamin Todd,blankenshipkimberly@anderson.com,2024-04-25,"{""language"": ""DE"", ""currency"": ""GBP""}",9445.52,Bronze,1 +1147,Lindsay Beck,montgomerymatthew@casey.com,2023-10-26,"{""language"": ""FR"", ""currency"": ""EUR""}",1563.9,Bronze,1 +1148,Stephanie Aguilar,qwilliams@yahoo.com,2021-03-28,"{""language"": ""DE"", ""currency"": ""MXN""}",7666.76,Bronze,0 +1149,John Miller,kimberlybarrett@hotmail.com,2024-11-06,"{""language"": ""DE"", ""currency"": ""USD""}",2130.19,Gold,1 +1150,Deborah Joseph,galexander@white.org,2020-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8310.21,Silver,0 +1151,John Williams,vsmith@gmail.com,2024-10-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5942.35,Silver,0 +1152,James Lewis,williamsalexander@gmail.com,2020-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",4276.08,Gold,0 +1153,Andrea Martin,hornerobyn@torres.org,2021-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",4602.66,Silver,1 +1154,Caitlin Haley,vsaunders@rodriguez.com,2021-12-21,"{""language"": ""DE"", ""currency"": ""MXN""}",6096.48,Silver,1 +1155,William Williams,davissamantha@robinson.com,2020-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1946.53,Silver,0 +1156,Jason Lee,kari42@yahoo.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""EUR""}",2145.03,Gold,0 +1157,Catherine Day,perezbrenda@hotmail.com,2024-11-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7740.03,Gold,0 +1158,Tammy Henry,nicole55@gmail.com,2022-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",2514.63,Silver,0 +1159,Joshua Peterson,melissa54@yahoo.com,2023-05-13,"{""language"": ""EN"", ""currency"": ""EUR""}",628.08,Silver,0 +1160,John Mack,xgray@yahoo.com,2020-07-29,"{""language"": ""DE"", ""currency"": ""EUR""}",3354.73,Bronze,0 +1161,James Perez,davidaustin@yahoo.com,2022-03-17,"{""language"": ""FR"", ""currency"": ""MXN""}",2687.2,Gold,0 +1162,Susan Arroyo,ymartinez@hotmail.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""CAD""}",712.61,Silver,1 +1163,Renee Hogan,dtyler@alvarado.com,2020-01-20,"{""language"": ""IT"", ""currency"": ""USD""}",2592.18,Silver,0 +1164,Abigail Pierce,obrienjaime@george-chang.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""MXN""}",7206.41,Gold,1 +1165,Kayla Thompson,maryjackson@jones.net,2020-05-05,"{""language"": ""ES"", ""currency"": ""GBP""}",2984.06,Gold,0 +1166,Michael Clark,vwoods@hotmail.com,2021-06-22,"{""language"": ""EN"", ""currency"": ""USD""}",9289.42,Bronze,1 +1167,Barbara Walker,kirbysteven@hotmail.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2314.23,Gold,1 +1168,Aaron Bell,herrerakaren@dawson.com,2023-03-26,"{""language"": ""FR"", ""currency"": ""GBP""}",9055.73,Bronze,1 +1169,Robert Li,manderson@snyder-phillips.net,2024-01-04,"{""language"": ""EN"", ""currency"": ""USD""}",3296.28,Bronze,1 +1170,Sean Griffith,mark09@beck.net,2020-10-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3884.68,Bronze,0 +1171,Kevin Marshall,charles20@torres-garner.com,2021-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",6447.41,Bronze,0 +1172,Justin Carson,bellcarlos@perry-compton.com,2021-09-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4343.54,Bronze,0 +1173,Jacqueline Rogers,russelljonathan@gmail.com,2024-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",5866.57,Bronze,0 +1174,Kevin Ward,swest@bailey.org,2024-12-10,"{""language"": ""EN"", ""currency"": ""EUR""}",4740.13,Bronze,0 +1175,Michelle Burke,emcbride@hodge.com,2022-08-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6398.34,Bronze,0 +1176,Valerie Miller,judy78@hotmail.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5436.31,Silver,0 +1177,Michele Raymond,rwoods@lamb.com,2022-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",5806.62,Silver,0 +1178,Maria Heath,whitehannah@gmail.com,2022-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",6236.22,Gold,1 +1179,Logan Johnson,robinsonchase@hotmail.com,2023-01-12,"{""language"": ""FR"", ""currency"": ""USD""}",4974.39,Bronze,0 +1180,Richard Hernandez,pmyers@hotmail.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""CAD""}",9926.14,Gold,1 +1181,Johnny Smith,cpaul@gmail.com,2023-08-23,"{""language"": ""IT"", ""currency"": ""USD""}",1575.76,Gold,0 +1182,William Avila,jreid@gmail.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",6301.95,Bronze,1 +1183,Linda Moore,johnsondiane@gmail.com,2020-08-23,"{""language"": ""IT"", ""currency"": ""GBP""}",913.08,Bronze,0 +1184,April Lopez,wilkersoneric@yahoo.com,2022-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",7501.72,Bronze,1 +1185,Stephen Beck,cwilson@fitzgerald.com,2024-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",663.08,Gold,0 +1186,Jason Hughes,wooddavid@mack.com,2022-01-28,"{""language"": ""IT"", ""currency"": ""CAD""}",4590.34,Gold,1 +1187,Elizabeth Wallace,justin98@gmail.com,2022-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",4015.63,Bronze,0 +1188,Anthony Zimmerman,kthompson@johnson.biz,2023-11-01,"{""language"": ""DE"", ""currency"": ""MXN""}",6741.81,Bronze,1 +1189,Hunter Church,richard74@hotmail.com,2020-10-04,"{""language"": ""DE"", ""currency"": ""EUR""}",1215.38,Gold,0 +1190,Robert Mccullough,ychurch@bowers.com,2021-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",8169.99,Silver,0 +1191,Ann Morgan,anthonybennett@burns-barrett.com,2022-04-07,"{""language"": ""IT"", ""currency"": ""CAD""}",55.02,Gold,0 +1192,Adrian Wilson,millerdanielle@gmail.com,2022-02-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2740.61,Gold,0 +1193,Jordan Miller,cardenasnicole@hernandez.com,2021-01-03,"{""language"": ""EN"", ""currency"": ""EUR""}",6812.49,Bronze,1 +1194,Andrew Miller,robertstevens@yahoo.com,2023-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",7655.49,Silver,0 +1195,Jasmine Welch,jason60@jones-diaz.com,2021-02-09,"{""language"": ""IT"", ""currency"": ""GBP""}",8064.76,Gold,0 +1196,Thomas Brown,brownjason@young-gonzalez.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1535.08,Silver,1 +1197,James Matthews,mary47@gmail.com,2020-10-21,"{""language"": ""DE"", ""currency"": ""MXN""}",2528.0,Silver,1 +1198,Dustin Williams,edward17@gmail.com,2020-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",346.76,Silver,0 +1199,George Williams,umolina@hotmail.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""GBP""}",1006.83,Bronze,0 +1200,Sabrina Stokes,christinecallahan@dodson-david.biz,2021-12-08,"{""language"": ""DE"", ""currency"": ""MXN""}",6507.49,Gold,1 +1201,Brittany Bailey,gonzalezchristopher@yahoo.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6579.46,Bronze,0 +1202,Timothy Spears,reiddeanna@gates-golden.com,2020-01-05,"{""language"": ""ES"", ""currency"": ""CAD""}",543.07,Silver,0 +1203,Lauren Ruiz,nancyaguirre@trevino.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",8161.91,Gold,1 +1204,Jennifer Burnett,frodriguez@patton-mcbride.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2287.11,Silver,1 +1205,Teresa Hutchinson,amandawilson@nielsen-richardson.com,2024-03-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1877.61,Gold,1 +1206,Mary Kim,qcarr@burnett.net,2022-09-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8937.31,Bronze,1 +1207,Beth Huang,ssutton@may.com,2021-01-08,"{""language"": ""FR"", ""currency"": ""USD""}",6681.01,Bronze,0 +1208,Kristi Simpson,echavez@gmail.com,2024-06-17,"{""language"": ""DE"", ""currency"": ""CAD""}",3115.95,Bronze,1 +1209,Mario Lynch,romansierra@gmail.com,2020-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",1076.91,Bronze,0 +1210,Diana Moore,karen59@yahoo.com,2020-12-01,"{""language"": ""FR"", ""currency"": ""USD""}",6719.68,Gold,0 +1211,Dr. Brooke Robinson,atkinsonmichael@morgan.com,2023-01-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7028.21,Bronze,1 +1212,Jennifer Villa,adamwhite@johnson-jones.com,2022-11-14,"{""language"": ""DE"", ""currency"": ""USD""}",5820.33,Silver,0 +1213,Andrea Lewis,sergio07@sullivan-walters.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""USD""}",8643.62,Gold,0 +1214,Alyssa Martin,pwade@branch.com,2023-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",1306.11,Bronze,1 +1215,Joshua Bishop,livingstonheather@gmail.com,2020-03-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1068.56,Bronze,1 +1216,Matthew Johnson,omcguire@chavez.com,2023-04-19,"{""language"": ""ES"", ""currency"": ""GBP""}",6223.72,Gold,1 +1217,Derrick Lopez,gillhannah@brooks.biz,2024-10-03,"{""language"": ""IT"", ""currency"": ""CAD""}",9951.94,Silver,0 +1218,Barbara Taylor,millerlindsey@cook.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""CAD""}",644.17,Gold,1 +1219,Sarah Lewis,mcneiljason@gmail.com,2021-11-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2365.38,Silver,1 +1220,John Walker,heathersanders@hotmail.com,2023-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",8295.41,Gold,1 +1221,Christine Page,aaronwilson@roberts-howell.com,2023-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",4852.14,Gold,0 +1222,Robert Mendez,jared33@hernandez.info,2022-02-12,"{""language"": ""ES"", ""currency"": ""MXN""}",5232.09,Silver,0 +1223,Isaac Adams,barnesjade@hotmail.com,2020-03-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3383.66,Gold,0 +1224,Anna Barnes,martinezjennifer@wheeler.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""MXN""}",3034.18,Gold,0 +1225,Mr. Derek Doyle,amy56@nixon-levy.com,2022-02-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2180.24,Silver,1 +1226,Grant Castillo,warrentiffany@gmail.com,2023-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",7759.65,Bronze,0 +1227,Laura Perry,amandavazquez@ramsey-perez.info,2020-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",4515.62,Silver,0 +1228,Stacie Solomon,shawn68@harris-roberts.com,2020-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",202.15,Bronze,1 +1229,Jared Thompson,ucrosby@taylor-coffey.org,2021-11-10,"{""language"": ""ES"", ""currency"": ""USD""}",9860.02,Silver,0 +1230,Heather Stewart,ohill@ramirez.com,2023-09-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4966.35,Silver,1 +1231,Sarah Cruz,oliviaallen@yahoo.com,2024-05-04,"{""language"": ""IT"", ""currency"": ""MXN""}",1962.26,Gold,1 +1232,Sharon Armstrong,garrettneal@barton-hansen.com,2024-03-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9049.7,Gold,0 +1233,Martha Rivas,urobinson@bryant-alvarado.com,2020-09-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8118.03,Bronze,1 +1234,Jared Carpenter,jessica70@morris.info,2023-01-12,"{""language"": ""DE"", ""currency"": ""CAD""}",51.7,Gold,1 +1235,Brian Medina,alyssa43@hotmail.com,2023-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8016.07,Bronze,1 +1236,Kristi Mullins,michaelescobar@yahoo.com,2020-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9132.01,Gold,1 +1237,Jennifer Cole,rachelwalsh@taylor.biz,2020-07-28,"{""language"": ""ES"", ""currency"": ""CAD""}",7768.7,Gold,1 +1238,Andrea Rodriguez,rittersean@faulkner.info,2024-03-23,"{""language"": ""DE"", ""currency"": ""MXN""}",631.09,Silver,0 +1239,Kyle Valencia,jill23@yahoo.com,2024-05-08,"{""language"": ""ES"", ""currency"": ""MXN""}",8952.13,Gold,1 +1240,Thomas Dixon,kimberlysandoval@hotmail.com,2021-09-18,"{""language"": ""ES"", ""currency"": ""EUR""}",1766.57,Silver,0 +1241,Mikayla Jackson,qsmith@arellano.com,2024-08-23,"{""language"": ""DE"", ""currency"": ""USD""}",644.63,Gold,0 +1242,Robert Moyer,mortonkevin@gmail.com,2023-06-29,"{""language"": ""ES"", ""currency"": ""MXN""}",9995.31,Gold,1 +1243,Jonathan Miller,imeyer@king-spencer.com,2020-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",9010.62,Bronze,1 +1244,Renee Wilson,danielwhite@garcia.info,2020-12-28,"{""language"": ""EN"", ""currency"": ""USD""}",5140.6,Bronze,1 +1245,Geoffrey Barnes,blackdominique@yahoo.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""MXN""}",67.37,Silver,1 +1246,Stephen Campbell,bmccoy@miller-diaz.biz,2023-05-08,"{""language"": ""IT"", ""currency"": ""CAD""}",1847.05,Bronze,0 +1247,Evelyn Herman,stonelisa@ryan.com,2021-05-17,"{""language"": ""EN"", ""currency"": ""USD""}",4257.18,Gold,1 +1248,Lisa Martinez,ramirezrichard@yahoo.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""USD""}",9107.47,Silver,1 +1249,Robert Smith,amanda30@hotmail.com,2020-09-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5827.75,Bronze,0 +1250,Michelle Summers,kspears@yahoo.com,2024-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",1637.59,Silver,0 +1251,Patricia Edwards,edelgado@gmail.com,2023-11-06,"{""language"": ""FR"", ""currency"": ""GBP""}",2345.35,Bronze,1 +1252,Elizabeth Garcia,mjones@valenzuela.com,2021-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",6017.29,Silver,0 +1253,Anthony Hudson,wattskevin@rosario-rodriguez.org,2022-11-21,"{""language"": ""ES"", ""currency"": ""USD""}",1951.38,Bronze,1 +1254,Phillip Rowland,garciacourtney@delgado.com,2024-04-20,"{""language"": ""DE"", ""currency"": ""CAD""}",9473.59,Silver,1 +1255,Daniel Miller,williamssonya@phillips.com,2021-06-30,"{""language"": ""IT"", ""currency"": ""EUR""}",5712.11,Silver,1 +1256,Audrey Davis,smithrobert@johnson.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""GBP""}",7740.42,Silver,1 +1257,Kayla Wilson,staciesimmons@bush-ball.com,2021-05-27,"{""language"": ""DE"", ""currency"": ""CAD""}",4047.82,Silver,1 +1258,James Gonzalez,hectorholder@hotmail.com,2021-03-18,"{""language"": ""FR"", ""currency"": ""GBP""}",783.57,Bronze,1 +1259,Jessica Brown,milleraaron@yahoo.com,2023-06-23,"{""language"": ""EN"", ""currency"": ""GBP""}",7328.4,Silver,0 +1260,Jason Collins,davidsmith@smith.com,2024-08-26,"{""language"": ""IT"", ""currency"": ""GBP""}",7042.88,Bronze,0 +1261,George Hines,bryantdouglas@gmail.com,2020-11-07,"{""language"": ""ES"", ""currency"": ""EUR""}",7497.71,Gold,0 +1262,Seth Jennings,makaylaturner@mitchell.com,2022-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",430.7,Gold,1 +1263,Eric Harmon,scottgamble@gmail.com,2024-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",6706.66,Gold,0 +1264,Jason Elliott,jeffreymartinez@mcmahon.biz,2024-09-20,"{""language"": ""DE"", ""currency"": ""MXN""}",3108.33,Silver,1 +1265,Parker Kim,kristophercurtis@gmail.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",8966.5,Silver,0 +1266,Jill Martinez,susan89@gibson.net,2024-03-29,"{""language"": ""FR"", ""currency"": ""MXN""}",6845.51,Silver,0 +1267,Michelle Sandoval,thomas94@yahoo.com,2023-07-11,"{""language"": ""EN"", ""currency"": ""MXN""}",8419.01,Bronze,0 +1268,Antonio Fowler,karenjuarez@gmail.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""CAD""}",9993.45,Gold,1 +1269,April Smith,ericharmon@avila.com,2023-07-21,"{""language"": ""FR"", ""currency"": ""USD""}",2522.53,Silver,0 +1270,Alice Coleman,nichole83@davis-chambers.com,2021-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",2597.13,Silver,1 +1271,Rebecca Thompson,steve77@moore.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""USD""}",5209.87,Bronze,1 +1272,Colton Brooks,yeaton@hotmail.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7943.32,Silver,0 +1273,David Farmer,davidmoreno@medina.net,2020-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",527.92,Silver,1 +1274,Tracey Smith,judyfuentes@sweeney.net,2024-06-29,"{""language"": ""IT"", ""currency"": ""GBP""}",3100.68,Gold,1 +1275,Ms. Kimberly Wright PhD,danielhamilton@moore.info,2022-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",9905.9,Gold,1 +1276,Cristian Smith,mbarton@gmail.com,2022-05-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9634.62,Silver,1 +1277,Misty Fisher,aconway@gmail.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""GBP""}",4677.57,Silver,0 +1278,Christopher Calhoun,lisa40@ford.com,2022-06-18,"{""language"": ""IT"", ""currency"": ""CAD""}",804.27,Bronze,0 +1279,Renee Brewer,shanewebb@lynch.com,2022-01-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1199.73,Gold,0 +1280,Deanna Payne,rickeymoore@hotmail.com,2022-12-26,"{""language"": ""IT"", ""currency"": ""MXN""}",5473.22,Silver,0 +1281,Leon Brennan,larryjimenez@weeks.com,2022-03-10,"{""language"": ""EN"", ""currency"": ""EUR""}",1852.8,Gold,1 +1282,Kathryn Thornton,carterjeff@collins-romero.com,2023-11-16,"{""language"": ""ES"", ""currency"": ""USD""}",1564.95,Bronze,0 +1283,John Martinez,donaldwood@cannon.info,2022-09-22,"{""language"": ""ES"", ""currency"": ""USD""}",4341.95,Silver,1 +1284,William Fisher,dhamilton@yahoo.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1580.19,Gold,0 +1285,James Tucker,richardcarroll@woods.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7100.93,Silver,0 +1286,Angela Simmons,dawsoneric@ray.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""MXN""}",507.0,Gold,1 +1287,Annette Holloway,ivan95@vega.biz,2020-12-24,"{""language"": ""FR"", ""currency"": ""EUR""}",4732.64,Bronze,1 +1288,Morgan Mercado,obrienconnor@alvarez-vaughn.com,2023-12-12,"{""language"": ""DE"", ""currency"": ""USD""}",1655.96,Bronze,1 +1289,Patricia Mitchell,calebhernandez@hotmail.com,2020-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",902.42,Bronze,0 +1290,Jennifer Allison,frankwalker@hotmail.com,2022-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",8841.48,Bronze,0 +1291,Joshua Moore,millergwendolyn@perry.net,2020-05-09,"{""language"": ""FR"", ""currency"": ""CAD""}",9180.2,Gold,1 +1292,Vanessa Dawson,sabrinamartin@hernandez.net,2024-07-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1172.41,Gold,1 +1293,Thomas Reeves,michael54@hotmail.com,2021-06-12,"{""language"": ""FR"", ""currency"": ""CAD""}",8409.51,Gold,1 +1294,Charles Mueller,kylekeller@moreno-craig.com,2021-11-10,"{""language"": ""IT"", ""currency"": ""CAD""}",5762.16,Bronze,1 +1295,Charles Copeland,langshannon@gmail.com,2021-02-09,"{""language"": ""EN"", ""currency"": ""USD""}",2172.45,Bronze,0 +1296,Barbara Thomas,maria50@henry-hanna.biz,2022-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",4879.62,Bronze,0 +1297,Larry Fletcher,watersaustin@gmail.com,2021-05-09,"{""language"": ""FR"", ""currency"": ""CAD""}",3689.96,Bronze,0 +1298,Ethan Brock,yolanda81@lynch-barnes.com,2023-07-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7964.8,Silver,0 +1299,Tyler Walker,ywilliams@duran.com,2020-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3763.99,Gold,0 +1300,Jason Ferrell,egordon@jackson.info,2024-07-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1238.39,Bronze,0 +1301,Nathan Boyd,nashlarry@gmail.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",4597.32,Silver,0 +1302,Grace Schultz,curtis46@ryan.com,2021-04-18,"{""language"": ""EN"", ""currency"": ""CAD""}",7075.37,Silver,1 +1303,Michelle Jones,russelltony@goodwin-hernandez.org,2024-01-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1522.9,Gold,1 +1304,Jason Chan,ramirezsarah@dawson.com,2022-02-16,"{""language"": ""DE"", ""currency"": ""USD""}",2802.52,Gold,0 +1305,Danielle Wilson,jessica78@gmail.com,2020-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",5820.23,Bronze,0 +1306,Karen Collins,pamelaclark@garza.net,2020-01-21,"{""language"": ""FR"", ""currency"": ""USD""}",3679.11,Silver,1 +1307,Abigail Evans,timothyjohnson@hernandez.com,2021-02-02,"{""language"": ""FR"", ""currency"": ""MXN""}",6079.97,Bronze,0 +1308,Karen Campbell,ugallegos@hall-white.biz,2023-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6106.72,Silver,0 +1309,Alison Tucker,gail34@gmail.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5049.73,Silver,1 +1310,Charles Davis,martinezdavid@kirby.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""EUR""}",8651.55,Gold,0 +1311,Sharon Moreno,laurensmith@yahoo.com,2022-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",5115.46,Bronze,0 +1312,Kenneth Wells,brownrandy@evans.com,2022-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",317.37,Bronze,0 +1313,Sandra Torres,millerrandy@donovan.org,2023-07-04,"{""language"": ""FR"", ""currency"": ""EUR""}",9741.86,Silver,0 +1314,Dennis Williams,ricesophia@patterson-green.org,2021-03-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5298.07,Gold,0 +1315,Daniel Davis,odeleon@walter.com,2021-11-17,"{""language"": ""ES"", ""currency"": ""GBP""}",5178.98,Silver,0 +1316,Adrian Quinn,richardmurillo@reid-hart.org,2022-12-07,"{""language"": ""ES"", ""currency"": ""GBP""}",6631.27,Silver,1 +1317,David Moreno,sethgeorge@yahoo.com,2021-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",8099.95,Silver,1 +1318,Michelle Harding,ystuart@russell.com,2020-08-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2457.47,Gold,1 +1319,Andrea Nguyen,medinaaustin@jones.com,2022-03-19,"{""language"": ""FR"", ""currency"": ""GBP""}",2190.37,Silver,0 +1320,Denise Webb,youngmarissa@gmail.com,2024-11-29,"{""language"": ""ES"", ""currency"": ""MXN""}",434.35,Gold,1 +1321,Jose Edwards,ambermurphy@espinoza-mitchell.org,2020-05-09,"{""language"": ""ES"", ""currency"": ""MXN""}",3961.29,Bronze,0 +1322,Nicole Wilson,ebrooks@durham.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6930.94,Bronze,0 +1323,Cassandra Hayes,janice98@eaton.biz,2020-04-13,"{""language"": ""ES"", ""currency"": ""CAD""}",1078.46,Bronze,0 +1324,Morgan Weeks,longnathaniel@hotmail.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""MXN""}",7286.06,Bronze,0 +1325,Timothy Rivera,vanessabrewer@gmail.com,2022-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",2755.43,Gold,0 +1326,Paula Thomas,reginabeard@jones.com,2021-05-13,"{""language"": ""ES"", ""currency"": ""MXN""}",1531.33,Bronze,0 +1327,Suzanne Murray,jamie05@yahoo.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8297.1,Gold,1 +1328,Rebecca Arnold,watsonlisa@scott.com,2022-09-16,"{""language"": ""ES"", ""currency"": ""USD""}",6541.85,Gold,1 +1329,Madison Schwartz,bburnett@watson-barrett.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""USD""}",9320.99,Gold,0 +1330,Megan Wyatt,morganscott@jackson-romero.com,2022-11-23,"{""language"": ""IT"", ""currency"": ""CAD""}",1447.93,Silver,0 +1331,Rebecca Beard,smithgregory@yahoo.com,2020-03-03,"{""language"": ""DE"", ""currency"": ""MXN""}",703.41,Gold,0 +1332,Craig Lawrence,jeremyreyes@zavala-bruce.org,2022-08-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6147.49,Bronze,0 +1333,Christine Stephenson,keithcarpenter@hotmail.com,2020-08-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2293.58,Silver,1 +1334,Luis Yang,zwade@gmail.com,2022-06-24,"{""language"": ""DE"", ""currency"": ""MXN""}",2339.65,Silver,0 +1335,Sean Coffey,barnettsharon@lopez.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",6932.26,Silver,0 +1336,Jennifer Parker,hawkinskevin@yahoo.com,2021-03-26,"{""language"": ""IT"", ""currency"": ""EUR""}",397.31,Silver,1 +1337,Wayne Reed,allison64@gmail.com,2022-02-05,"{""language"": ""ES"", ""currency"": ""MXN""}",5958.59,Silver,0 +1338,Larry Carey,traviskramer@barrera.com,2021-02-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9418.53,Gold,1 +1339,Lauren Hanna,meyersdaniel@gmail.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""CAD""}",4477.38,Bronze,1 +1340,Jaclyn Ho,foleyjose@smith.com,2023-03-27,"{""language"": ""ES"", ""currency"": ""EUR""}",7644.38,Gold,0 +1341,Jason Bell,lisa65@yahoo.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""GBP""}",3091.51,Silver,1 +1342,Jorge Wheeler,icook@yahoo.com,2023-09-05,"{""language"": ""DE"", ""currency"": ""MXN""}",3600.39,Bronze,1 +1343,Angela Mills,heather65@rogers.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3806.79,Bronze,0 +1344,Erica Montes,thompsonchloe@bass.com,2021-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",8738.11,Gold,1 +1345,Colin Vasquez,adamsandrea@braun.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""USD""}",1845.17,Bronze,1 +1346,Monica Travis,wrightjenna@yahoo.com,2022-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",1913.05,Gold,0 +1347,Gregory Chang,neil36@jordan.com,2024-01-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9959.09,Gold,1 +1348,Dr. Jason Dennis,ashleymata@gmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",3330.59,Silver,1 +1349,Amy Henderson,fclements@yahoo.com,2022-02-03,"{""language"": ""ES"", ""currency"": ""MXN""}",8179.32,Gold,0 +1350,Christina George,wparker@hotmail.com,2020-12-14,"{""language"": ""DE"", ""currency"": ""USD""}",9180.8,Bronze,1 +1351,Andrew Meadows,sheila15@guzman-dyer.com,2024-12-01,"{""language"": ""EN"", ""currency"": ""USD""}",9508.21,Bronze,1 +1352,Willie Williams,kirkobrien@edwards-williams.info,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7140.99,Silver,0 +1353,Jerry Clark,johnwilliams@arias.com,2020-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",3952.52,Silver,1 +1354,Tina Brooks,michaelagreen@mcdowell-douglas.org,2021-12-04,"{""language"": ""ES"", ""currency"": ""MXN""}",192.21,Gold,0 +1355,Jacob Nelson,lcain@yahoo.com,2023-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3579.28,Gold,0 +1356,Alicia White,molly04@yahoo.com,2020-04-16,"{""language"": ""DE"", ""currency"": ""GBP""}",2215.01,Gold,1 +1357,Joanne Daniels,gregwilson@strickland.com,2020-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2683.81,Gold,0 +1358,Shawn Gomez,cpineda@terry-levy.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4267.56,Gold,1 +1359,Phillip Coleman,ballen@glenn.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""EUR""}",8196.47,Bronze,1 +1360,Wayne Jensen,kimberlybailey@yahoo.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""MXN""}",4569.08,Gold,1 +1361,Jeffrey Baker,xryan@hotmail.com,2024-08-23,"{""language"": ""EN"", ""currency"": ""CAD""}",6772.71,Bronze,0 +1362,Daniel Wallace,wfletcher@yahoo.com,2020-08-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5857.85,Bronze,0 +1363,Heidi Gutierrez,mercadomadeline@webster.net,2020-05-30,"{""language"": ""FR"", ""currency"": ""MXN""}",5086.54,Gold,0 +1364,Catherine Hamilton,sanchezsamantha@gmail.com,2024-08-16,"{""language"": ""IT"", ""currency"": ""EUR""}",5079.08,Bronze,0 +1365,Megan Flowers,christopherdavis@gmail.com,2023-06-26,"{""language"": ""FR"", ""currency"": ""CAD""}",9996.53,Silver,1 +1366,Courtney Castro,johnsonmarcus@hotmail.com,2020-03-28,"{""language"": ""FR"", ""currency"": ""CAD""}",8314.36,Silver,1 +1367,Julie Collins,kathleen72@yahoo.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4038.84,Gold,1 +1368,Max Lloyd,gbeard@jones-jones.org,2020-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",7711.8,Gold,0 +1369,Joshua Hendrix,charlesbrown@yahoo.com,2024-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1462.01,Gold,0 +1370,Danielle Cain,qlawson@zimmerman.biz,2024-10-16,"{""language"": ""ES"", ""currency"": ""MXN""}",670.67,Silver,1 +1371,John Ruiz,sullivanmichelle@hotmail.com,2021-10-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7163.62,Silver,0 +1372,Mark Curry,gmontgomery@guerra.org,2020-11-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1045.7,Silver,1 +1373,Mr. Brandon Singleton,nicholsreginald@garcia.com,2021-05-15,"{""language"": ""ES"", ""currency"": ""USD""}",8130.93,Gold,0 +1374,Kelly Alexander,anne14@gmail.com,2021-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7756.45,Silver,1 +1375,Willie Carter,heather32@yahoo.com,2023-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",1620.69,Bronze,1 +1376,Robert Ross,lvasquez@hotmail.com,2021-02-23,"{""language"": ""EN"", ""currency"": ""GBP""}",5333.29,Bronze,1 +1377,William Ryan,nicholas34@hotmail.com,2022-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",3067.11,Gold,1 +1378,Nicole Walton,nguyenjennifer@yahoo.com,2023-02-18,"{""language"": ""IT"", ""currency"": ""CAD""}",127.4,Gold,1 +1379,Jordan Martin,kmiller@smith.org,2020-09-23,"{""language"": ""EN"", ""currency"": ""GBP""}",5073.09,Bronze,0 +1380,Patricia Mcmahon,asmith@gonzalez-riddle.com,2020-12-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4326.01,Gold,1 +1381,Nicole Mcclain,grice@riggs.com,2021-09-20,"{""language"": ""EN"", ""currency"": ""EUR""}",4869.87,Gold,1 +1382,David Hill,stevenbutler@yahoo.com,2020-10-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6299.67,Bronze,1 +1383,Richard Green,qstein@yahoo.com,2020-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",962.29,Bronze,0 +1384,Wanda Cook,cdalton@gmail.com,2024-03-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2781.37,Bronze,1 +1385,Kaitlin Leblanc,zacharysoto@gmail.com,2021-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5310.58,Bronze,1 +1386,Darrell Choi,allisonford@hogan.biz,2024-03-04,"{""language"": ""ES"", ""currency"": ""CAD""}",8151.17,Gold,1 +1387,Lawrence Dixon,joshua99@smith-thomas.com,2020-02-05,"{""language"": ""FR"", ""currency"": ""GBP""}",3736.75,Bronze,1 +1388,John Kemp,sampsonjames@stephens-montgomery.info,2021-11-15,"{""language"": ""DE"", ""currency"": ""CAD""}",7282.42,Silver,0 +1389,Thomas Robertson,evanwillis@hotmail.com,2021-06-12,"{""language"": ""EN"", ""currency"": ""EUR""}",3539.55,Silver,1 +1390,Angela Kirk,susan26@hotmail.com,2024-06-12,"{""language"": ""DE"", ""currency"": ""USD""}",2006.04,Gold,1 +1391,Michelle Blair,michael59@villanueva-strickland.com,2022-09-08,"{""language"": ""DE"", ""currency"": ""MXN""}",223.45,Silver,1 +1392,Gary Welch,scottsuarez@brady-thompson.org,2020-12-21,"{""language"": ""DE"", ""currency"": ""MXN""}",876.98,Gold,0 +1393,Amanda Murphy,markramirez@yahoo.com,2022-08-06,"{""language"": ""IT"", ""currency"": ""CAD""}",94.71,Bronze,1 +1394,Sherry Davis,erin62@yahoo.com,2020-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",8037.49,Silver,0 +1395,Amy Murphy,ljones@jackson.com,2024-06-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5341.63,Gold,0 +1396,Andrew Lyons,fknapp@gmail.com,2024-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",9022.81,Gold,1 +1397,Krystal Allison,emily74@ochoa-perez.com,2023-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",9442.55,Gold,0 +1398,Mr. John Bishop MD,thomas27@brown-dixon.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1411.46,Bronze,1 +1399,Matthew Bell,vbyrd@green.com,2023-10-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9255.63,Bronze,0 +1400,Craig Burke,aking@powers.info,2020-07-05,"{""language"": ""FR"", ""currency"": ""MXN""}",9459.59,Bronze,0 +1401,Richard Patterson,ronaldhughes@mills-martinez.info,2021-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",6721.08,Gold,0 +1402,Dakota Lopez,pricebarbara@berger-lindsey.biz,2022-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",3012.94,Gold,0 +1403,Brittany Castillo,danielstewart@hotmail.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6864.64,Silver,1 +1404,Tracy Jackson,daniel10@nguyen-miller.net,2024-11-26,"{""language"": ""ES"", ""currency"": ""CAD""}",2883.83,Bronze,1 +1405,Benjamin Alvarado,monica86@morris.org,2022-03-29,"{""language"": ""FR"", ""currency"": ""CAD""}",5765.49,Bronze,0 +1406,Edward Huffman,james43@booker.com,2022-12-30,"{""language"": ""IT"", ""currency"": ""USD""}",1946.09,Bronze,1 +1407,Dr. Erin Graham,rodney98@gmail.com,2021-06-07,"{""language"": ""ES"", ""currency"": ""EUR""}",1677.28,Gold,1 +1408,Jack Murphy,hharris@hotmail.com,2020-07-22,"{""language"": ""DE"", ""currency"": ""EUR""}",1461.36,Silver,1 +1409,Michael Bailey,lthompson@alexander.info,2023-06-05,"{""language"": ""EN"", ""currency"": ""GBP""}",9729.38,Bronze,0 +1410,Jeffery Evans,ericmcdowell@martin-hill.com,2022-07-16,"{""language"": ""IT"", ""currency"": ""CAD""}",2978.26,Silver,0 +1411,Chris Phillips,kingriley@martin.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""MXN""}",3830.28,Silver,0 +1412,Grace Scott,nguerra@weaver.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1311.85,Bronze,0 +1413,Laurie Charles,mmartinez@yahoo.com,2020-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",4670.47,Silver,0 +1414,David Owen,rbrown@walters.info,2023-11-14,"{""language"": ""IT"", ""currency"": ""CAD""}",2862.48,Gold,1 +1415,Dawn Davis,lisa49@chambers.com,2024-06-05,"{""language"": ""FR"", ""currency"": ""CAD""}",8097.06,Bronze,0 +1416,Eddie Smith,larsentamara@yahoo.com,2022-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",1120.01,Bronze,1 +1417,Anne Hill,zacharymeyer@yahoo.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""CAD""}",5358.09,Silver,0 +1418,James Miller,leemary@yahoo.com,2024-08-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5974.01,Bronze,0 +1419,Wendy Vazquez,lawsonkrystal@williams-morgan.info,2024-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",5480.75,Bronze,1 +1420,Jose Garrett,ycameron@yahoo.com,2021-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",1590.64,Silver,0 +1421,Kristin Harper,lewisbilly@berry.net,2021-12-14,"{""language"": ""ES"", ""currency"": ""MXN""}",5999.22,Silver,1 +1422,Alyssa Terry,staceyward@nelson.biz,2023-03-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9152.13,Bronze,0 +1423,Thomas Morgan,robertfranco@yahoo.com,2019-12-12,"{""language"": ""IT"", ""currency"": ""USD""}",6305.31,Silver,0 +1424,Thomas Turner,evargas@hotmail.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""GBP""}",3816.04,Gold,0 +1425,Bonnie Rodriguez,wberry@yahoo.com,2024-04-17,"{""language"": ""EN"", ""currency"": ""GBP""}",9199.99,Silver,1 +1426,Teresa Romero,charles72@yahoo.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2870.46,Silver,1 +1427,Gene Sloan,todd52@yahoo.com,2020-11-26,"{""language"": ""EN"", ""currency"": ""USD""}",5083.6,Gold,1 +1428,Deborah Johnson,kenneth08@gmail.com,2020-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2596.41,Gold,0 +1429,Rose Cruz,gregory38@watson-gomez.com,2019-12-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6942.46,Gold,0 +1430,Keith Hood,ijackson@yahoo.com,2021-02-16,"{""language"": ""ES"", ""currency"": ""EUR""}",1080.3,Bronze,1 +1431,Jessica Gardner,james55@richmond-nelson.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""USD""}",9780.83,Gold,1 +1432,Calvin Wilson,steven53@james-orozco.com,2021-09-19,"{""language"": ""EN"", ""currency"": ""EUR""}",7098.63,Gold,0 +1433,Ashley Perry,michelle79@anderson.com,2020-04-12,"{""language"": ""EN"", ""currency"": ""EUR""}",882.64,Bronze,0 +1434,Paul Solis,joe72@yahoo.com,2021-04-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4111.44,Gold,0 +1435,James Mcdonald,robertmorgan@gmail.com,2024-04-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7255.8,Gold,1 +1436,Ian Hill,singhamber@yahoo.com,2020-08-11,"{""language"": ""FR"", ""currency"": ""EUR""}",3953.13,Bronze,1 +1437,Samantha Blair,ryanmcbride@terry.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",8280.62,Gold,0 +1438,Donald Wilcox,david43@hotmail.com,2022-03-29,"{""language"": ""DE"", ""currency"": ""GBP""}",1842.06,Silver,1 +1439,Bailey Williams,mario39@hotmail.com,2021-03-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5250.57,Silver,1 +1440,Brian Castillo,gallegoselizabeth@yahoo.com,2020-03-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6665.11,Silver,1 +1441,John Robertson,clopez@hotmail.com,2024-06-12,"{""language"": ""ES"", ""currency"": ""USD""}",1507.13,Gold,1 +1442,Donald Allen,larsonamy@hotmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",815.6,Bronze,1 +1443,Ashlee Mahoney MD,ireed@hoffman.org,2020-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",9050.8,Gold,1 +1444,Jessica Pham,grodriguez@hotmail.com,2020-11-16,"{""language"": ""IT"", ""currency"": ""EUR""}",2967.57,Silver,0 +1445,Victoria Mueller,chad55@russell.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""MXN""}",4057.21,Bronze,1 +1446,Dawn Norton,michael97@fields.com,2019-12-20,"{""language"": ""DE"", ""currency"": ""USD""}",3949.15,Silver,1 +1447,Wendy Floyd,elizabethmartinez@gmail.com,2020-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7669.88,Gold,1 +1448,Michael Reese,ortizbryan@rodgers.com,2024-05-20,"{""language"": ""FR"", ""currency"": ""GBP""}",5464.87,Bronze,0 +1449,Steven Hughes,ereese@lucas.com,2020-11-04,"{""language"": ""IT"", ""currency"": ""EUR""}",3764.34,Gold,0 +1450,Peter Marshall,ebailey@hotmail.com,2022-05-22,"{""language"": ""DE"", ""currency"": ""EUR""}",8904.75,Silver,0 +1451,Diana Gray,cervantesdennis@yahoo.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6369.33,Bronze,0 +1452,Alison Porter,anthonyperry@hotmail.com,2021-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",596.71,Silver,1 +1453,Betty Williams,shelly65@jackson.com,2020-04-23,"{""language"": ""IT"", ""currency"": ""EUR""}",2679.31,Bronze,1 +1454,Pamela Martinez,skinnerpam@vaughn-moore.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""GBP""}",8362.83,Silver,1 +1455,Kathryn Davis,wagnerdavid@baker.org,2020-02-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1400.86,Silver,0 +1456,Kerri Bass,pricetimothy@cardenas-boyer.biz,2022-06-13,"{""language"": ""ES"", ""currency"": ""GBP""}",3782.23,Gold,0 +1457,Jennifer Gibson,andrewbryant@garcia.com,2022-12-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5366.58,Bronze,1 +1458,Laura Livingston,john98@alexander.biz,2024-08-21,"{""language"": ""DE"", ""currency"": ""USD""}",4777.39,Silver,0 +1459,Steven Ray,kmanning@hotmail.com,2024-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",7241.18,Bronze,1 +1460,Thomas Stewart,fhopkins@gmail.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""GBP""}",2400.0,Gold,0 +1461,Scott Osborne,alisonmccormick@yahoo.com,2024-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",5314.47,Bronze,0 +1462,Charles Woodard,fweaver@hotmail.com,2021-09-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1636.23,Silver,1 +1463,Shane Sanchez,peterrogers@gmail.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",4286.89,Gold,1 +1464,Tammy Hoffman,sarah14@campbell.com,2024-10-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6922.95,Bronze,1 +1465,Rhonda Johnston,larryrobinson@cameron.com,2022-12-28,"{""language"": ""ES"", ""currency"": ""CAD""}",8192.78,Gold,0 +1466,Matthew Matthews,ifrost@james.net,2021-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",52.66,Gold,1 +1467,Michael Walsh,gina01@stanley-sexton.info,2021-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9816.09,Silver,0 +1468,Karen Barker,danielsbrenda@gmail.com,2021-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5166.96,Bronze,1 +1469,Jill Weber,amclaughlin@gmail.com,2022-10-23,"{""language"": ""ES"", ""currency"": ""EUR""}",7780.89,Bronze,0 +1470,Donna Castro,alanchapman@frederick.com,2023-05-31,"{""language"": ""ES"", ""currency"": ""EUR""}",5678.25,Silver,0 +1471,Spencer Crosby,joann64@reynolds.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""EUR""}",4283.32,Bronze,1 +1472,Michael Herring,allendana@dyer.com,2022-01-29,"{""language"": ""FR"", ""currency"": ""EUR""}",1402.93,Gold,1 +1473,Alexandra Dalton,james84@gmail.com,2022-08-27,"{""language"": ""EN"", ""currency"": ""MXN""}",7633.36,Gold,1 +1474,Angela Smith,ldaugherty@martinez.com,2024-06-17,"{""language"": ""EN"", ""currency"": ""GBP""}",2459.74,Silver,1 +1475,Ryan Banks,lauren49@johnson.com,2022-08-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2524.8,Bronze,1 +1476,Mary Smith,zparker@hotmail.com,2019-12-23,"{""language"": ""FR"", ""currency"": ""USD""}",982.86,Bronze,1 +1477,Shelley Gonzales,qmolina@jones-kelley.com,2022-05-07,"{""language"": ""ES"", ""currency"": ""MXN""}",3959.09,Silver,1 +1478,Crystal Green,dawn69@yahoo.com,2023-01-02,"{""language"": ""FR"", ""currency"": ""CAD""}",97.1,Gold,1 +1479,Megan Fuller,collinssteven@schultz.com,2019-12-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6437.32,Gold,0 +1480,Frances Mcclure,kyle09@mcguire.biz,2022-04-02,"{""language"": ""DE"", ""currency"": ""USD""}",6519.94,Silver,1 +1481,Jennifer Roberson,forderin@pratt-hansen.org,2023-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",4474.99,Bronze,1 +1482,Harry Griffin,huntjack@parker-kemp.com,2023-09-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4923.86,Bronze,1 +1483,Keith Mcdaniel,michelle67@gmail.com,2024-06-25,"{""language"": ""FR"", ""currency"": ""USD""}",5430.95,Gold,0 +1484,Thomas Wells,ronaldortiz@hotmail.com,2022-09-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7930.33,Gold,0 +1485,Alyssa Ball,karenrodgers@hotmail.com,2021-07-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7879.4,Gold,1 +1486,Vanessa Moss,christine46@gmail.com,2020-04-27,"{""language"": ""ES"", ""currency"": ""USD""}",8598.34,Silver,1 +1487,Jason Griffin,clarkejames@hotmail.com,2021-05-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2499.92,Bronze,1 +1488,Lisa Watts,ogarcia@hotmail.com,2023-11-07,"{""language"": ""DE"", ""currency"": ""USD""}",5459.55,Bronze,1 +1489,Amy Madden,savagebrent@yahoo.com,2020-03-04,"{""language"": ""ES"", ""currency"": ""MXN""}",2754.35,Bronze,0 +1490,Jeffrey Durham,flynnbecky@watkins-bishop.org,2024-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",3575.92,Silver,0 +1491,Kevin Wolf,sean00@alvarez-clark.biz,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2772.42,Gold,0 +1492,Kathleen Erickson,johnberry@smith.info,2023-04-29,"{""language"": ""DE"", ""currency"": ""EUR""}",7962.16,Bronze,0 +1493,Michael Frazier,huntermatthew@yahoo.com,2024-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",730.4,Silver,1 +1494,Geoffrey Ortega,oscaraguilar@yahoo.com,2021-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9879.8,Silver,1 +1495,Ryan Copeland,jennifer73@lucas-harris.info,2021-07-27,"{""language"": ""IT"", ""currency"": ""EUR""}",5647.57,Bronze,1 +1496,Jenny Gardner,heatherschwartz@williams-yang.net,2022-10-31,"{""language"": ""ES"", ""currency"": ""USD""}",2511.74,Bronze,0 +1497,Christopher Miller,joshuapatterson@cole.info,2024-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5195.37,Bronze,1 +1498,Melissa Warren,walter28@williams-curry.com,2023-04-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1666.54,Bronze,0 +1499,Matthew Roberts,michaeltorres@lopez-williams.com,2024-04-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7667.89,Silver,0 +1500,Amber Hawkins,williambarker@yahoo.com,2024-10-11,"{""language"": ""ES"", ""currency"": ""GBP""}",6183.06,Bronze,1 +1501,Rickey Frazier,housewilliam@gmail.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""MXN""}",2302.46,Bronze,1 +1502,Larry Crosby,donaldcarter@yahoo.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6206.16,Silver,1 +1503,Steven Cruz,melindasingleton@gmail.com,2021-01-27,"{""language"": ""IT"", ""currency"": ""GBP""}",6017.58,Silver,1 +1504,Brian Cook,tking@yahoo.com,2023-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",5000.79,Bronze,0 +1505,Patrick Taylor,david43@ortiz-torres.com,2020-10-17,"{""language"": ""FR"", ""currency"": ""MXN""}",9529.97,Silver,0 +1506,Edward Bell,michellethomas@hotmail.com,2021-07-19,"{""language"": ""IT"", ""currency"": ""GBP""}",2647.54,Bronze,0 +1507,Robert Santana,amberberg@yahoo.com,2020-11-24,"{""language"": ""FR"", ""currency"": ""USD""}",6460.54,Gold,1 +1508,Rachel Marshall,ericbolton@hotmail.com,2022-03-08,"{""language"": ""ES"", ""currency"": ""MXN""}",9343.87,Silver,1 +1509,Dr. Jessica White,elizabeth12@scott.net,2022-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",9439.78,Bronze,1 +1510,Amanda Schmidt,shannongoodwin@hotmail.com,2024-10-04,"{""language"": ""ES"", ""currency"": ""CAD""}",293.62,Bronze,1 +1511,Danielle Davis,richard06@graham.com,2022-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",6409.27,Silver,0 +1512,Randy Johnson,murillorobert@yahoo.com,2021-08-08,"{""language"": ""ES"", ""currency"": ""USD""}",1395.25,Silver,1 +1513,Kyle Young,keith40@hotmail.com,2020-09-19,"{""language"": ""EN"", ""currency"": ""EUR""}",7904.23,Bronze,0 +1514,Megan Pacheco,terrance37@hernandez.biz,2024-08-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8672.62,Silver,0 +1515,Allison Calhoun,andersonlori@gmail.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""EUR""}",9432.11,Gold,0 +1516,Lauren Callahan,brianwoodward@yahoo.com,2024-05-19,"{""language"": ""ES"", ""currency"": ""CAD""}",1595.2,Gold,0 +1517,Jeffrey Davis MD,jesseestrada@nelson-alvarado.org,2024-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4793.49,Gold,1 +1518,Rebecca Sawyer,cproctor@ramirez.com,2024-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",9962.11,Bronze,1 +1519,Lisa Martinez,wgarcia@gmail.com,2022-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",7937.17,Gold,0 +1520,Matthew Gates,jonestiffany@rose.com,2022-09-01,"{""language"": ""ES"", ""currency"": ""EUR""}",1607.31,Gold,0 +1521,Amanda Murphy,lauren56@hotmail.com,2020-03-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6812.85,Bronze,0 +1522,Gregory Swanson,ritamorgan@wilcox-mcdaniel.biz,2022-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",8437.02,Gold,0 +1523,Jennifer Arellano,qwilliams@ayala-mccarthy.org,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",697.65,Bronze,0 +1524,Matthew Mendoza,charlesholt@hotmail.com,2021-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",4641.15,Silver,0 +1525,Colleen Richardson,ngutierrez@hart-rodriguez.com,2020-02-25,"{""language"": ""DE"", ""currency"": ""MXN""}",2969.89,Bronze,0 +1526,William Harrison,trobertson@hotmail.com,2021-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",8660.55,Gold,1 +1527,John Mayer,randy49@hotmail.com,2023-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",559.62,Bronze,1 +1528,Andrea Valenzuela,alexander53@hotmail.com,2020-06-26,"{""language"": ""FR"", ""currency"": ""USD""}",3066.68,Gold,1 +1529,Kevin Mcpherson,ihuber@lee.com,2023-06-06,"{""language"": ""DE"", ""currency"": ""MXN""}",6026.39,Silver,1 +1530,Gloria Williams,gonzalesjoe@yahoo.com,2022-04-08,"{""language"": ""EN"", ""currency"": ""USD""}",1225.64,Gold,1 +1531,Katie Jones,xgibbs@allen.info,2021-10-01,"{""language"": ""IT"", ""currency"": ""GBP""}",6158.52,Bronze,1 +1532,Timothy Ray,wmiller@taylor-terry.info,2024-11-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3521.81,Bronze,0 +1533,Adrian Hunter,brian68@yahoo.com,2023-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2557.41,Bronze,1 +1534,Sean Lee,ycrosby@barnes-gonzalez.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3782.21,Silver,1 +1535,Brenda Turner DDS,mcgeemary@gmail.com,2023-05-03,"{""language"": ""EN"", ""currency"": ""CAD""}",4508.7,Bronze,0 +1536,Rose Cook,bbrown@yahoo.com,2020-08-11,"{""language"": ""EN"", ""currency"": ""GBP""}",199.87,Gold,1 +1537,Elizabeth Estrada,april60@buckley.org,2020-08-27,"{""language"": ""DE"", ""currency"": ""GBP""}",3818.57,Silver,1 +1538,Kylie Martin,lisa46@duke.com,2022-11-13,"{""language"": ""DE"", ""currency"": ""USD""}",3282.9,Bronze,1 +1539,Dana Rice,kyleryan@owen.com,2021-09-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8951.32,Gold,1 +1540,Adam Smith,robert73@gmail.com,2023-09-24,"{""language"": ""DE"", ""currency"": ""EUR""}",9557.14,Bronze,0 +1541,Jessica Mays,rsanchez@gmail.com,2022-02-14,"{""language"": ""EN"", ""currency"": ""MXN""}",269.95,Bronze,0 +1542,Michael Guzman,mariahshaw@jackson.com,2023-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",8017.78,Silver,1 +1543,Rodney Miles,faulknerandrew@gmail.com,2019-12-12,"{""language"": ""EN"", ""currency"": ""USD""}",9390.62,Silver,0 +1544,Jennifer Rivera,hollygreen@yahoo.com,2024-05-22,"{""language"": ""DE"", ""currency"": ""GBP""}",4629.35,Gold,1 +1545,Crystal Schmidt,steven60@hotmail.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",7788.06,Silver,1 +1546,Stephanie Hunt,catherinecollins@gmail.com,2022-11-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6194.84,Silver,0 +1547,Patricia Wheeler,davidbrown@thompson.com,2024-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",4001.5,Gold,1 +1548,Bethany Leonard,zhawkins@gmail.com,2022-08-14,"{""language"": ""DE"", ""currency"": ""GBP""}",1509.61,Bronze,0 +1549,Mark Myers,juan32@yahoo.com,2022-06-07,"{""language"": ""FR"", ""currency"": ""EUR""}",6542.28,Gold,1 +1550,Catherine Hernandez,richardsonpatricia@hotmail.com,2020-01-03,"{""language"": ""IT"", ""currency"": ""GBP""}",4326.26,Bronze,1 +1551,Samuel Golden,ccooper@gmail.com,2020-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",2969.34,Gold,0 +1552,Derek Reed,martin80@pena-norton.biz,2021-12-18,"{""language"": ""FR"", ""currency"": ""MXN""}",1318.81,Bronze,0 +1553,Steven Lewis,sherryharrison@malone.com,2022-07-16,"{""language"": ""FR"", ""currency"": ""USD""}",8954.28,Bronze,0 +1554,Michael Powell,matthewking@gmail.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""USD""}",3656.48,Bronze,1 +1555,William Morris,hpark@gmail.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",1928.72,Bronze,1 +1556,Bianca Hall,thomas37@clark.com,2021-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",7994.98,Gold,1 +1557,Craig Clay,scott99@bell-sanchez.com,2019-12-29,"{""language"": ""DE"", ""currency"": ""EUR""}",2459.32,Bronze,0 +1558,Jose Nelson,elizabethellis@hotmail.com,2020-01-14,"{""language"": ""DE"", ""currency"": ""CAD""}",1718.9,Gold,0 +1559,Theodore Huerta,joannachristensen@yahoo.com,2019-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",5529.96,Bronze,1 +1560,Jeffrey Mitchell,adrianaholmes@ball.net,2022-01-25,"{""language"": ""DE"", ""currency"": ""CAD""}",9158.11,Gold,0 +1561,Adam Mosley,dawnparks@gmail.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6688.9,Bronze,1 +1562,Jennifer Ramos,matthewmiller@sanchez.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""EUR""}",5687.56,Bronze,1 +1563,April Collins,garciachristopher@hotmail.com,2023-03-28,"{""language"": ""EN"", ""currency"": ""CAD""}",1153.57,Bronze,0 +1564,Nicole Weaver,jamiejohnson@yahoo.com,2020-04-23,"{""language"": ""DE"", ""currency"": ""GBP""}",2575.72,Bronze,0 +1565,Diane Moore,juliapham@hotmail.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7144.33,Silver,0 +1566,Timothy Russell,lisamcguire@morgan-nichols.com,2024-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",2890.4,Silver,1 +1567,Mary Garcia,jacqueline23@yahoo.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""EUR""}",9498.98,Gold,1 +1568,Breanna Adams,nroy@rogers.net,2021-09-18,"{""language"": ""IT"", ""currency"": ""CAD""}",6484.77,Silver,1 +1569,Mitchell Hernandez,anthony22@yahoo.com,2020-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",129.23,Silver,0 +1570,Gerald Webb,laurajohnson@yahoo.com,2022-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",726.32,Silver,1 +1571,Christine Huffman,danielleharris@hotmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""GBP""}",1344.24,Silver,1 +1572,Nicole Miller,linda21@park-nichols.biz,2021-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",4533.51,Gold,0 +1573,Nathan Stone,fmills@hall.com,2023-05-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3147.56,Silver,0 +1574,Judy Sanchez,teresacarter@hotmail.com,2023-06-21,"{""language"": ""FR"", ""currency"": ""MXN""}",4947.98,Bronze,0 +1575,Kimberly Manning,trananna@hotmail.com,2022-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1531.26,Silver,1 +1576,Christopher Bennett,salinasmichelle@gutierrez.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",1136.36,Bronze,1 +1577,Stephanie Terry,jessica27@cole-hensley.com,2023-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",3131.0,Gold,1 +1578,Elizabeth Phillips,frank24@gmail.com,2024-07-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4748.78,Gold,0 +1579,Joseph Rodriguez Jr.,rodneyowens@peterson-lucas.com,2020-07-29,"{""language"": ""IT"", ""currency"": ""USD""}",2071.65,Silver,0 +1580,Diana Lewis,pricekrista@gmail.com,2020-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",5906.0,Silver,1 +1581,Tara Savage,stevenwood@rosales-bell.biz,2022-10-30,"{""language"": ""IT"", ""currency"": ""CAD""}",3986.21,Bronze,0 +1582,Ross Grimes,kellyprice@gmail.com,2021-06-06,"{""language"": ""ES"", ""currency"": ""USD""}",9777.66,Gold,1 +1583,Andrew Hernandez,megan42@hotmail.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",7467.19,Gold,1 +1584,Lori Pacheco,mariahill@gmail.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",8623.89,Bronze,1 +1585,Ricardo French,tylerveronica@yahoo.com,2024-05-15,"{""language"": ""DE"", ""currency"": ""CAD""}",294.45,Silver,0 +1586,Jennifer Mata,russelllaura@gmail.com,2024-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1168.14,Bronze,0 +1587,Sean Miller,barnesashley@hotmail.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",2026.4,Silver,0 +1588,Derrick Garrison,hughestammy@hotmail.com,2021-12-11,"{""language"": ""EN"", ""currency"": ""GBP""}",9225.8,Silver,0 +1589,Peter Jimenez,sanchezkyle@jones.com,2023-11-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2948.96,Gold,1 +1590,Lisa Sanford,fernandezhelen@robinson-taylor.com,2024-05-19,"{""language"": ""EN"", ""currency"": ""EUR""}",2733.78,Gold,1 +1591,Kathleen Patrick,ellisjames@yahoo.com,2022-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",3627.89,Gold,0 +1592,Rebecca Love,casey76@gilbert.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",6387.13,Gold,0 +1593,Eric Hernandez,morrischeyenne@diaz.org,2021-10-28,"{""language"": ""EN"", ""currency"": ""EUR""}",5052.04,Bronze,1 +1594,John Harris,davisjon@yahoo.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""GBP""}",776.5,Gold,1 +1595,Ian Smith,cooperjenny@hotmail.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""CAD""}",3632.8,Silver,1 +1596,Michael Rhodes,donald21@perez.com,2024-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5884.6,Silver,1 +1597,Jennifer Brown,bshannon@navarro.com,2022-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8338.32,Silver,0 +1598,Phillip Knight,coreyhammond@davidson.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1489.03,Bronze,1 +1599,Angela Salas,evansphilip@gmail.com,2020-06-10,"{""language"": ""ES"", ""currency"": ""CAD""}",2601.45,Bronze,1 +1600,Gregory Smith,molly37@gmail.com,2024-10-15,"{""language"": ""DE"", ""currency"": ""USD""}",6601.88,Gold,1 +1601,Denise Ellis,alan78@gmail.com,2022-08-06,"{""language"": ""FR"", ""currency"": ""EUR""}",5516.83,Gold,1 +1602,Colleen Williams,karen58@hotmail.com,2022-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",6375.02,Silver,1 +1603,Paul Howard,tcox@harvey.info,2024-11-12,"{""language"": ""EN"", ""currency"": ""MXN""}",854.41,Gold,1 +1604,Nancy Johnson,ryan57@hall-perez.org,2020-09-29,"{""language"": ""ES"", ""currency"": ""CAD""}",467.14,Bronze,1 +1605,Mr. Jeremy Thompson,michael96@woods.com,2022-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",228.68,Gold,0 +1606,John Deleon,joneschristian@hotmail.com,2021-03-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8509.7,Gold,1 +1607,Jerry Bond,travis61@yahoo.com,2023-08-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9590.0,Silver,0 +1608,David Petty,jacobcollins@hotmail.com,2022-05-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3211.97,Gold,0 +1609,Alison Meadows,hphillips@james.org,2022-08-20,"{""language"": ""IT"", ""currency"": ""EUR""}",4935.52,Silver,0 +1610,Sierra Alexander,gary29@preston-carter.com,2020-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",883.87,Gold,1 +1611,Melissa Smith,russellhenry@woods-hayes.org,2020-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",4725.02,Gold,0 +1612,Christopher Warner,jessica75@duran.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3334.68,Bronze,0 +1613,Michael Richardson,timothyhernandez@dyer.info,2022-03-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7598.36,Gold,0 +1614,Sarah Welch,hhenderson@hotmail.com,2023-03-05,"{""language"": ""DE"", ""currency"": ""GBP""}",7111.96,Bronze,0 +1615,William Middleton,thompsonmary@hotmail.com,2022-03-09,"{""language"": ""ES"", ""currency"": ""EUR""}",3062.13,Bronze,0 +1616,Courtney Lopez,clarkjames@yahoo.com,2019-12-17,"{""language"": ""FR"", ""currency"": ""EUR""}",5287.02,Bronze,1 +1617,Anna Padilla,melaniejones@gmail.com,2020-06-17,"{""language"": ""DE"", ""currency"": ""EUR""}",59.05,Bronze,1 +1618,Frederick Mccall,adam62@gonzales.com,2022-12-10,"{""language"": ""IT"", ""currency"": ""CAD""}",7794.93,Gold,0 +1619,Paula Pham,yburns@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6921.36,Silver,1 +1620,Patrick Hall,kingmark@armstrong-freeman.net,2023-03-16,"{""language"": ""DE"", ""currency"": ""USD""}",5868.5,Gold,0 +1621,Stephanie Hart,jenniferpowers@hopkins-haynes.net,2021-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",9246.4,Bronze,0 +1622,Jimmy Valdez,fkelley@gmail.com,2023-12-29,"{""language"": ""ES"", ""currency"": ""MXN""}",4267.32,Silver,0 +1623,Charles Hogan,camerondrake@smith.com,2021-11-17,"{""language"": ""IT"", ""currency"": ""CAD""}",1705.44,Silver,1 +1624,Ryan Smith,robert06@hotmail.com,2021-03-05,"{""language"": ""EN"", ""currency"": ""GBP""}",4751.38,Gold,1 +1625,Walter Arnold,millermegan@weiss-johnson.biz,2022-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",80.56,Bronze,0 +1626,Teresa Carson,susansingleton@hardy.net,2022-05-06,"{""language"": ""EN"", ""currency"": ""USD""}",7821.86,Bronze,1 +1627,Angela Ross,sdrake@gmail.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""USD""}",9930.57,Silver,1 +1628,Samantha King,bethanyallison@tanner.biz,2024-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",3775.7,Bronze,0 +1629,John Miller,pacetracy@dillon-crosby.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""EUR""}",4975.89,Bronze,0 +1630,Paul Ponce,davisscott@yahoo.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2373.45,Bronze,1 +1631,Nicholas Grimes,buckhelen@hunter.com,2021-11-09,"{""language"": ""DE"", ""currency"": ""MXN""}",2887.71,Bronze,0 +1632,Jamie Smith,pali@myers.com,2024-02-27,"{""language"": ""DE"", ""currency"": ""MXN""}",4880.51,Gold,0 +1633,Vanessa Burns,colinmurphy@gmail.com,2024-09-18,"{""language"": ""FR"", ""currency"": ""GBP""}",2951.1,Gold,0 +1634,Brandy King,vritter@hotmail.com,2021-03-20,"{""language"": ""EN"", ""currency"": ""EUR""}",3305.2,Silver,1 +1635,Jeffrey Chung,vshelton@yahoo.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",6741.22,Gold,1 +1636,Regina Byrd,jacobscatherine@gmail.com,2022-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8604.32,Bronze,1 +1637,Wendy Murray,knightbradley@hotmail.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8419.6,Bronze,1 +1638,Paige Morse,watkinsjustin@hansen-reynolds.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",3354.28,Silver,1 +1639,Martin Brown,tarawest@gmail.com,2021-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1130.55,Gold,1 +1640,Austin Reed,jray@colon.com,2020-07-24,"{""language"": ""EN"", ""currency"": ""CAD""}",1253.18,Silver,1 +1641,Nicholas Brown,warddean@gmail.com,2022-03-16,"{""language"": ""EN"", ""currency"": ""MXN""}",2787.15,Silver,0 +1642,Brenda Lopez,michelle90@gmail.com,2023-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",2963.45,Silver,0 +1643,Mario Blackwell,michaelschmidt@page-cisneros.com,2021-01-06,"{""language"": ""DE"", ""currency"": ""MXN""}",2509.67,Silver,0 +1644,Kathryn Murray,parkerkimberly@gmail.com,2022-11-11,"{""language"": ""IT"", ""currency"": ""USD""}",4566.06,Silver,1 +1645,Anthony Phillips,rashley@hotmail.com,2022-01-19,"{""language"": ""DE"", ""currency"": ""MXN""}",2068.75,Bronze,1 +1646,Kelly Taylor,gjoseph@armstrong-horn.com,2021-08-21,"{""language"": ""FR"", ""currency"": ""MXN""}",6348.14,Gold,0 +1647,Heather Foley,qleonard@gamble.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5445.28,Bronze,1 +1648,Sarah Garcia,juan38@sherman.com,2023-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",9399.1,Gold,0 +1649,Scott Walker,vincent48@stevenson.com,2024-04-23,"{""language"": ""ES"", ""currency"": ""CAD""}",2329.91,Silver,0 +1650,Mrs. Christine Melendez,clarkeangela@smith.info,2024-06-25,"{""language"": ""IT"", ""currency"": ""USD""}",2570.47,Silver,1 +1651,James Cannon,cruzmichael@grant.com,2023-06-03,"{""language"": ""EN"", ""currency"": ""MXN""}",1818.33,Gold,1 +1652,Kelly Wong,jessicabell@zimmerman.org,2021-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",6444.97,Gold,0 +1653,Brian Pope,nicolebrown@yahoo.com,2023-10-24,"{""language"": ""IT"", ""currency"": ""USD""}",7196.91,Gold,0 +1654,Nicole Ellis,dyermatthew@gmail.com,2022-04-15,"{""language"": ""EN"", ""currency"": ""EUR""}",3758.9,Gold,0 +1655,Sabrina Holmes,dgarcia@hotmail.com,2021-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",5877.37,Bronze,1 +1656,Mr. Gerald Cooper,craigallen@gmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9536.03,Gold,1 +1657,Crystal Keith,stanleybass@hotmail.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",4534.94,Bronze,1 +1658,Daniel Dean,cathyhicks@bird-davis.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8138.54,Bronze,1 +1659,Kevin Oneill,james17@smith.biz,2020-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",2039.01,Silver,1 +1660,Justin Cross,pwaller@smith-bailey.com,2022-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",1499.83,Silver,1 +1661,Brandy Smith,ikoch@yahoo.com,2020-09-10,"{""language"": ""IT"", ""currency"": ""EUR""}",313.42,Gold,0 +1662,Anthony Thompson,nathan27@yahoo.com,2023-03-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2847.45,Gold,0 +1663,Rose Jensen,othomas@gmail.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",5744.3,Bronze,0 +1664,Joseph Murray,fmosley@wilkins.net,2024-06-11,"{""language"": ""FR"", ""currency"": ""CAD""}",8598.94,Gold,1 +1665,Mark Sexton,kristen54@hotmail.com,2021-11-29,"{""language"": ""FR"", ""currency"": ""MXN""}",76.08,Bronze,1 +1666,Bryan Brown,arellanomichael@long-keith.info,2024-01-26,"{""language"": ""FR"", ""currency"": ""GBP""}",3396.19,Bronze,0 +1667,Erik Brown,thomasangel@humphrey.biz,2023-08-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4667.3,Gold,1 +1668,John Phillips,zoneal@hotmail.com,2020-02-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3270.36,Bronze,1 +1669,Caleb Guerra,ashley29@frederick.com,2023-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",731.11,Silver,0 +1670,William Martinez,amy58@gmail.com,2021-10-12,"{""language"": ""DE"", ""currency"": ""USD""}",8239.99,Bronze,0 +1671,Mr. Joseph Russo,derekyates@hotmail.com,2022-01-20,"{""language"": ""IT"", ""currency"": ""GBP""}",4094.91,Bronze,0 +1672,Courtney Griffin,ramirezroberto@guerrero.net,2021-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",5458.17,Gold,1 +1673,Diane Ford,ortizwilliam@hotmail.com,2020-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",7051.26,Silver,0 +1674,Leah Carlson,andrew76@gmail.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""MXN""}",155.69,Gold,0 +1675,Alejandro Molina,nlee@snyder.com,2022-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",3852.81,Gold,0 +1676,Courtney Fisher,jonesashley@flores.org,2024-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",538.84,Silver,1 +1677,Michelle Hays,jason40@gmail.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8969.04,Gold,0 +1678,Brandon Jones,frank13@le.com,2021-08-21,"{""language"": ""IT"", ""currency"": ""GBP""}",7822.29,Bronze,0 +1679,Matthew Hernandez,betty45@yahoo.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""GBP""}",7098.54,Gold,0 +1680,Marcus Murray,kgomez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1557.82,Bronze,1 +1681,Terry Smith,xramirez@herman-harvey.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",1214.95,Silver,1 +1682,Nicole Lopez,scott51@craig.com,2020-11-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7947.3,Gold,0 +1683,Melinda Davis,brandylarsen@yahoo.com,2023-06-18,"{""language"": ""DE"", ""currency"": ""USD""}",3347.14,Silver,1 +1684,Jose Hamilton,ortegapatrick@gmail.com,2023-02-14,"{""language"": ""IT"", ""currency"": ""MXN""}",6947.11,Bronze,1 +1685,Margaret Walton,mercadobrittany@hotmail.com,2022-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",7696.55,Silver,1 +1686,John Russell,brandonaustin@gmail.com,2020-09-13,"{""language"": ""DE"", ""currency"": ""MXN""}",473.59,Gold,0 +1687,Jay Ellis,mary14@rose-murphy.com,2024-11-28,"{""language"": ""DE"", ""currency"": ""EUR""}",286.57,Silver,1 +1688,Rodney Farmer,kenneth85@miranda-brown.org,2024-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",5868.0,Bronze,0 +1689,Ricky Osborne,theresa61@yahoo.com,2024-10-21,"{""language"": ""DE"", ""currency"": ""USD""}",8963.44,Bronze,1 +1690,Shane Beck,zwalton@hotmail.com,2022-04-15,"{""language"": ""DE"", ""currency"": ""EUR""}",870.33,Gold,1 +1691,Diana Anderson,clarkeric@rivas-perry.com,2024-01-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7778.13,Silver,0 +1692,Jesse White,cgreen@harris-harvey.net,2024-03-17,"{""language"": ""DE"", ""currency"": ""GBP""}",680.24,Silver,0 +1693,Gary Jones,griffithanthony@rangel.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""USD""}",7412.21,Gold,0 +1694,Thomas Lee,swallace@snyder-williams.com,2020-01-21,"{""language"": ""ES"", ""currency"": ""USD""}",7689.31,Gold,0 +1695,Kathryn Rodriguez,derekmartin@johnson-ortiz.com,2024-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",4063.64,Silver,1 +1696,Brian Martin,angela30@gmail.com,2020-02-02,"{""language"": ""EN"", ""currency"": ""GBP""}",8646.85,Gold,1 +1697,Jasmine Moreno,sjefferson@hotmail.com,2021-02-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7895.22,Gold,1 +1698,Brian Wright,archerdavid@hotmail.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""EUR""}",9404.3,Silver,1 +1699,Devin Hoffman,codypetty@gmail.com,2020-10-04,"{""language"": ""EN"", ""currency"": ""USD""}",9702.51,Silver,1 +1700,Kristina Wood,ramostyler@flores.com,2022-06-13,"{""language"": ""DE"", ""currency"": ""MXN""}",7401.12,Silver,0 +1701,Ronald Browning,hernandezsarah@hotmail.com,2024-11-20,"{""language"": ""ES"", ""currency"": ""USD""}",2559.24,Silver,1 +1702,Maria Castillo,cspencer@hotmail.com,2024-11-08,"{""language"": ""ES"", ""currency"": ""GBP""}",8236.95,Gold,1 +1703,William Gardner,rmcdonald@hunter.net,2022-09-27,"{""language"": ""ES"", ""currency"": ""EUR""}",5583.29,Silver,0 +1704,Emily Mccullough,reginaldmiller@gmail.com,2020-07-12,"{""language"": ""FR"", ""currency"": ""MXN""}",9056.42,Bronze,0 +1705,Eric Hall,anthonygilbert@knapp.org,2024-02-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9873.75,Bronze,0 +1706,Laura Livingston,stacey04@yahoo.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",3507.56,Silver,0 +1707,Jordan Mendez,hallnicole@hotmail.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",888.27,Silver,1 +1708,Robert Sexton,bennettamanda@young.biz,2020-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3371.33,Bronze,1 +1709,Taylor Hickman,franklang@yahoo.com,2022-10-24,"{""language"": ""ES"", ""currency"": ""USD""}",3153.86,Bronze,0 +1710,Mrs. Destiny Thompson,jeffrey75@todd.com,2020-03-03,"{""language"": ""FR"", ""currency"": ""EUR""}",2156.44,Bronze,0 +1711,Jeffrey Jordan,rodriguezmichael@yahoo.com,2020-02-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3377.55,Gold,1 +1712,Manuel Payne,george84@herrera-thompson.org,2020-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",679.95,Silver,0 +1713,Eric Young,sierrakelly@smith.net,2024-08-19,"{""language"": ""FR"", ""currency"": ""CAD""}",4741.24,Silver,1 +1714,Aaron White,anthony95@gmail.com,2024-05-28,"{""language"": ""FR"", ""currency"": ""CAD""}",8288.69,Silver,1 +1715,Melissa Decker,ycollins@gmail.com,2024-09-16,"{""language"": ""IT"", ""currency"": ""MXN""}",538.95,Silver,0 +1716,Tiffany Proctor,lisa51@cooper.com,2023-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",2818.17,Bronze,1 +1717,Andrew Ramsey,tiffanysilva@hotmail.com,2024-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5054.72,Bronze,0 +1718,Maureen Young MD,samantha85@hotmail.com,2022-03-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2323.21,Gold,0 +1719,Lisa Martin,hardingcory@campbell-munoz.info,2019-12-31,"{""language"": ""DE"", ""currency"": ""CAD""}",7661.9,Bronze,1 +1720,Selena Nicholson,jacklester@yahoo.com,2020-01-25,"{""language"": ""DE"", ""currency"": ""GBP""}",8943.24,Silver,1 +1721,John Cannon,michael51@hotmail.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",9739.9,Silver,0 +1722,Andrew Allison,garciahannah@fleming.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",3714.25,Silver,1 +1723,Hannah Summers,melissaerickson@hotmail.com,2022-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",1051.38,Silver,1 +1724,Jenna Jones,jimenezjennifer@garcia-brown.info,2020-01-01,"{""language"": ""EN"", ""currency"": ""MXN""}",3799.53,Silver,1 +1725,Jeffrey Lawrence,pagecynthia@hotmail.com,2023-06-27,"{""language"": ""DE"", ""currency"": ""GBP""}",9513.73,Silver,1 +1726,Mr. Matthew Chase,kristinparker@meyer.com,2024-03-29,"{""language"": ""IT"", ""currency"": ""MXN""}",5585.26,Bronze,0 +1727,Beverly Martinez,timothydavis@gmail.com,2020-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",6402.53,Gold,0 +1728,Sara Reese,shawnaustin@gmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""CAD""}",9610.75,Gold,0 +1729,Nicholas Walters,bwilkins@hotmail.com,2023-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",6323.29,Bronze,1 +1730,Michael Smith,briansanchez@yahoo.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""MXN""}",1244.74,Silver,1 +1731,Daniel Weiss,davidward@delgado.org,2022-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3303.68,Gold,0 +1732,Melinda Crawford,lthompson@payne.com,2022-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",5967.02,Gold,0 +1733,William Johnson,williamallen@hotmail.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5296.95,Bronze,1 +1734,Brett Hopkins,lwilson@hotmail.com,2021-03-08,"{""language"": ""FR"", ""currency"": ""MXN""}",4711.21,Silver,0 +1735,Kimberly Valdez,hammondstacey@gmail.com,2024-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",2203.42,Silver,0 +1736,Whitney Bell,alicia02@baxter.com,2021-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",9224.62,Gold,1 +1737,Mike Holloway,david95@hotmail.com,2023-07-25,"{""language"": ""FR"", ""currency"": ""USD""}",3830.04,Gold,1 +1738,William Yu,stewartsamantha@walker-bell.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4187.91,Gold,0 +1739,John Owens,jay16@hotmail.com,2024-02-13,"{""language"": ""ES"", ""currency"": ""GBP""}",6111.78,Silver,1 +1740,Nicholas Jackson,wellscynthia@yahoo.com,2020-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",2099.39,Silver,1 +1741,David Miller,bradley32@lindsey.com,2023-01-26,"{""language"": ""FR"", ""currency"": ""USD""}",5246.31,Silver,1 +1742,Karen Lang,qmoore@olson.net,2023-08-23,"{""language"": ""IT"", ""currency"": ""EUR""}",4194.87,Gold,1 +1743,David Russo,jmcneil@hotmail.com,2024-03-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4509.74,Bronze,1 +1744,John Lee Jr.,matthew40@barker.net,2022-10-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1621.78,Bronze,1 +1745,Dakota Davis,cherylbell@perez.com,2024-03-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8450.35,Gold,0 +1746,Donna Dunlap,zwilliams@yahoo.com,2020-08-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9636.77,Silver,0 +1747,Mr. Jackson Deleon,ktaylor@yahoo.com,2021-03-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4472.26,Bronze,0 +1748,Jennifer West,andrew31@hotmail.com,2020-12-16,"{""language"": ""FR"", ""currency"": ""EUR""}",2522.75,Silver,1 +1749,Jason Carrillo,hhart@hotmail.com,2020-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7677.33,Gold,0 +1750,Karen Reynolds,wphillips@hanson.com,2023-04-17,"{""language"": ""FR"", ""currency"": ""USD""}",9145.99,Gold,0 +1751,David Mccormick,gamblesarah@gmail.com,2021-05-25,"{""language"": ""IT"", ""currency"": ""CAD""}",9181.21,Bronze,0 +1752,Corey Smith,andreaperez@lee.com,2023-06-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7234.95,Silver,0 +1753,Emily Burke,jforbes@stephens.net,2021-08-17,"{""language"": ""IT"", ""currency"": ""CAD""}",8940.14,Bronze,0 +1754,Isaac Norman,traciking@montgomery.com,2022-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",7318.57,Bronze,1 +1755,Kelly Mitchell,hutchinsonrichard@lopez-taylor.com,2024-01-23,"{""language"": ""DE"", ""currency"": ""EUR""}",5033.5,Bronze,0 +1756,Kerry Banks,shaunrichardson@yahoo.com,2020-08-31,"{""language"": ""DE"", ""currency"": ""MXN""}",7450.07,Gold,0 +1757,Michelle Walker,jordan18@yahoo.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",4909.23,Silver,0 +1758,Bianca Perez,vgreen@yahoo.com,2022-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",798.24,Gold,1 +1759,Sophia Buck,patriciabooker@fields.com,2023-10-15,"{""language"": ""ES"", ""currency"": ""USD""}",1261.85,Silver,1 +1760,Jacob Smith,dlarson@gmail.com,2020-04-24,"{""language"": ""FR"", ""currency"": ""USD""}",7710.34,Gold,1 +1761,Sarah Dorsey,tracyjones@walker-peck.net,2024-03-04,"{""language"": ""IT"", ""currency"": ""USD""}",9044.21,Gold,0 +1762,Rebecca Carlson,kaiserjason@yahoo.com,2024-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",7457.55,Bronze,0 +1763,Jeanette Collins,michelleleon@cowan.com,2021-03-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5861.88,Silver,0 +1764,Michelle Horton,proctortimothy@harrison.biz,2020-01-18,"{""language"": ""DE"", ""currency"": ""CAD""}",1051.99,Silver,1 +1765,Jennifer Davis,michelle75@hotmail.com,2021-07-09,"{""language"": ""FR"", ""currency"": ""CAD""}",1627.37,Bronze,1 +1766,Cathy Wilson,donnarogers@hotmail.com,2024-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",3806.49,Bronze,1 +1767,Mr. Daniel Hill,michelle16@yahoo.com,2022-03-06,"{""language"": ""FR"", ""currency"": ""GBP""}",8945.44,Gold,1 +1768,Denise Collins,stephengallegos@douglas.com,2024-09-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7714.25,Silver,0 +1769,Breanna Harrison,donaldflores@flowers-henderson.org,2020-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",9616.99,Silver,0 +1770,Chris Barnes,saunderslisa@fitzgerald.com,2020-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5666.45,Bronze,0 +1771,Mathew Oneal,sheila08@weiss.com,2022-03-17,"{""language"": ""EN"", ""currency"": ""MXN""}",7404.5,Gold,0 +1772,Jacqueline Smith,kempphyllis@gmail.com,2020-05-27,"{""language"": ""EN"", ""currency"": ""MXN""}",9028.33,Bronze,1 +1773,Johnathan Schwartz,jeffreyharris@mosley.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",4417.68,Silver,0 +1774,Chris Henderson,jackieclark@hotmail.com,2022-11-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3030.95,Silver,0 +1775,Morgan Estes,ashley65@hotmail.com,2021-09-17,"{""language"": ""FR"", ""currency"": ""GBP""}",1330.21,Bronze,0 +1776,Carl Snow,shawnmeyer@dixon.com,2022-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",544.66,Gold,0 +1777,Peter Berry,david03@weiss-smith.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",4547.64,Gold,0 +1778,Dawn Knapp,trogers@dougherty.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""EUR""}",9282.12,Bronze,0 +1779,Ashley Romero,mcintoshandrea@gmail.com,2023-06-29,"{""language"": ""FR"", ""currency"": ""MXN""}",5617.85,Silver,0 +1780,Jeffery Christensen,daniel33@yahoo.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""CAD""}",727.1,Bronze,0 +1781,Betty Morales,frenchisaac@jones-glass.net,2022-04-20,"{""language"": ""EN"", ""currency"": ""EUR""}",8658.74,Gold,0 +1782,Dawn Bell,rothjoseph@porter.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""GBP""}",7393.29,Gold,1 +1783,Deborah Paul,nicholas31@gmail.com,2024-03-02,"{""language"": ""ES"", ""currency"": ""MXN""}",9298.3,Silver,1 +1784,Samantha Macdonald,brooksangela@hotmail.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""GBP""}",2816.0,Gold,0 +1785,Thomas Daniels,vgreene@davis-sanchez.com,2023-04-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1091.9,Gold,1 +1786,Alex Kelly,troy76@yahoo.com,2024-07-16,"{""language"": ""EN"", ""currency"": ""GBP""}",2130.03,Silver,0 +1787,Dustin Randolph,christopherlyons@gmail.com,2024-05-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8998.71,Gold,0 +1788,Stanley Duran,vdonaldson@hotmail.com,2020-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7474.61,Silver,1 +1789,James Cooper,juliecoleman@fowler.com,2024-10-01,"{""language"": ""IT"", ""currency"": ""MXN""}",8910.7,Bronze,0 +1790,Joseph Hartman,jacksonamanda@yahoo.com,2022-09-24,"{""language"": ""DE"", ""currency"": ""GBP""}",5324.15,Gold,0 +1791,Derrick Barron,derrickray@yahoo.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7254.84,Bronze,1 +1792,Jerry Jones,emilywilliams@mendez.com,2023-12-24,"{""language"": ""DE"", ""currency"": ""EUR""}",528.14,Gold,1 +1793,Katherine Garcia,jenniferspencer@gmail.com,2020-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",3736.57,Silver,1 +1794,Deborah Scott,vanessa77@spears.net,2024-01-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7797.43,Bronze,0 +1795,Jacob Fox,kylethompson@gmail.com,2022-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1671.18,Silver,0 +1796,Jason Mcclure,johnsmith@herman.net,2021-01-10,"{""language"": ""DE"", ""currency"": ""CAD""}",4457.52,Gold,1 +1797,Ashley Singleton,msanchez@sherman-galvan.com,2022-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",6149.41,Bronze,1 +1798,Lawrence Garner,huffmanemily@gmail.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""USD""}",961.95,Gold,0 +1799,Mary Gonzalez,rrobinson@yahoo.com,2022-12-08,"{""language"": ""EN"", ""currency"": ""EUR""}",5583.82,Gold,1 +1800,Candice Miller,kellyclark@hotmail.com,2021-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",8260.01,Bronze,0 +1801,Ashley White,lmercado@yahoo.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",3634.7,Gold,0 +1802,Joseph Bender,lunajeffrey@humphrey-hall.info,2022-12-23,"{""language"": ""EN"", ""currency"": ""MXN""}",6920.49,Gold,0 +1803,Brett Baker,justinweaver@payne.org,2020-12-05,"{""language"": ""DE"", ""currency"": ""CAD""}",5322.58,Bronze,1 +1804,Troy Sims,michaelmckinney@moore.net,2022-09-18,"{""language"": ""IT"", ""currency"": ""CAD""}",6204.28,Gold,1 +1805,Lisa Reynolds,anita80@ortiz.com,2022-05-27,"{""language"": ""EN"", ""currency"": ""GBP""}",5251.59,Gold,0 +1806,Harry Johns,hamptonpatricia@gmail.com,2022-12-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6995.45,Gold,1 +1807,Michele White,vjames@hotmail.com,2024-10-23,"{""language"": ""IT"", ""currency"": ""CAD""}",8631.64,Silver,1 +1808,Lisa Lynch,stephanie76@gmail.com,2021-07-10,"{""language"": ""ES"", ""currency"": ""MXN""}",8472.46,Bronze,1 +1809,Dustin Chen,mariahmitchell@tanner-stone.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""CAD""}",6153.7,Silver,0 +1810,Samantha Petersen,romerotracey@hotmail.com,2024-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3490.9,Silver,0 +1811,Katherine Mcfarland,wbrown@yahoo.com,2021-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8932.76,Bronze,1 +1812,Timothy Simmons,xlucas@yahoo.com,2024-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6220.0,Gold,0 +1813,Teresa Martin,mtaylor@yahoo.com,2022-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",8284.18,Gold,1 +1814,Jennifer Richards,zmartin@gmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""USD""}",7166.63,Silver,1 +1815,Robert Pratt,christina88@williams-walters.net,2022-03-25,"{""language"": ""FR"", ""currency"": ""USD""}",7037.74,Gold,0 +1816,Mary Wilson,christinesmith@greer-robinson.com,2022-12-27,"{""language"": ""IT"", ""currency"": ""GBP""}",9018.4,Silver,1 +1817,Scott Hopkins,stephen80@guerra-whitehead.com,2020-02-29,"{""language"": ""DE"", ""currency"": ""MXN""}",2398.82,Bronze,0 +1818,Christian Hardin,tonyclayton@vang.net,2024-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",927.71,Bronze,1 +1819,Gregory Watson,brownbrittney@yahoo.com,2024-04-27,"{""language"": ""EN"", ""currency"": ""EUR""}",124.21,Gold,0 +1820,Sarah Campbell,ijennings@roberts-ferguson.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""GBP""}",6232.2,Bronze,0 +1821,Deborah Lowe,ymiller@hotmail.com,2020-04-19,"{""language"": ""EN"", ""currency"": ""USD""}",4187.75,Bronze,0 +1822,Christina Moon,james71@yahoo.com,2022-01-14,"{""language"": ""DE"", ""currency"": ""USD""}",8221.28,Silver,1 +1823,Monica Miller,williamsbryan@hotmail.com,2022-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",7364.1,Gold,0 +1824,Thomas Jackson,vtaylor@hotmail.com,2024-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",2788.57,Gold,0 +1825,Jennifer Olson,daniel03@bradley.com,2021-04-11,"{""language"": ""EN"", ""currency"": ""EUR""}",7219.03,Silver,0 +1826,Jay Wilson,allenwilliam@yahoo.com,2023-02-03,"{""language"": ""DE"", ""currency"": ""CAD""}",3160.17,Gold,1 +1827,Donald Jones,jacksonelizabeth@ramsey-patterson.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5500.3,Bronze,0 +1828,Elizabeth Dawson,bradfordsamantha@hotmail.com,2020-02-16,"{""language"": ""FR"", ""currency"": ""EUR""}",3678.53,Gold,0 +1829,Stephanie Gonzales,ramseynicole@franklin-greer.net,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",8048.4,Bronze,1 +1830,Erika Pennington,jacoblawson@yahoo.com,2023-08-20,"{""language"": ""DE"", ""currency"": ""USD""}",3418.4,Silver,1 +1831,Rhonda Moreno,larajennifer@hotmail.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""USD""}",6916.18,Bronze,1 +1832,Sean Frey,kwilkins@yahoo.com,2024-09-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1730.12,Bronze,0 +1833,Casey Reyes,rosalesstacy@gmail.com,2020-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9254.16,Gold,0 +1834,Brian Wheeler,elizabethrogers@hotmail.com,2024-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3404.46,Gold,1 +1835,Joshua Baldwin,owalker@howell-lee.com,2020-12-09,"{""language"": ""ES"", ""currency"": ""USD""}",1998.83,Bronze,0 +1836,Russell Porter,shelbygarcia@yahoo.com,2021-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",5851.16,Bronze,0 +1837,Christopher Miller,owensanthony@hotmail.com,2023-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",2527.83,Silver,0 +1838,Kathryn Rice,dbranch@martin-torres.com,2020-02-19,"{""language"": ""EN"", ""currency"": ""EUR""}",3607.59,Bronze,0 +1839,John Anderson,melissafreeman@neal.com,2024-12-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3837.99,Silver,0 +1840,Julie Goodwin,danielhale@gmail.com,2023-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",5219.21,Gold,1 +1841,Joseph Hawkins,williamskristin@day.com,2021-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",2030.65,Gold,0 +1842,Dr. Jonathan Bass MD,jlove@solis.org,2021-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",1607.69,Gold,0 +1843,Kimberly Aguilar,catherine49@valenzuela.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6689.54,Bronze,1 +1844,Jenna Rojas,milesanthony@haley-mcintyre.biz,2023-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",4760.29,Silver,1 +1845,John Webb,marywilliams@hotmail.com,2021-06-08,"{""language"": ""DE"", ""currency"": ""USD""}",2617.6,Gold,0 +1846,Timothy Winters,daniel68@hotmail.com,2022-10-27,"{""language"": ""FR"", ""currency"": ""CAD""}",317.2,Bronze,1 +1847,Kaitlin Nichols,kevinshelton@hotmail.com,2021-08-15,"{""language"": ""DE"", ""currency"": ""MXN""}",7842.5,Gold,0 +1848,Timothy Schultz,sonyafisher@yahoo.com,2024-03-02,"{""language"": ""FR"", ""currency"": ""USD""}",7210.73,Bronze,1 +1849,Sabrina Ramirez,ashley14@hotmail.com,2024-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",1219.6,Gold,0 +1850,Jason Martin,michael82@gmail.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2778.56,Silver,0 +1851,Clinton Neal,ayalakenneth@yahoo.com,2022-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6512.95,Silver,1 +1852,Julia Acosta,youngmonica@gmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""MXN""}",3092.97,Bronze,1 +1853,Lawrence Beltran,michael06@henson.com,2019-12-14,"{""language"": ""EN"", ""currency"": ""CAD""}",9231.17,Gold,0 +1854,Melissa Anderson,alicia47@yahoo.com,2022-07-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4050.04,Bronze,1 +1855,Randy Schneider,xrose@orr.com,2022-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",975.31,Bronze,1 +1856,Robert Oliver,ejohnson@hill.com,2021-12-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9929.64,Gold,1 +1857,William Schneider,ykennedy@jones.org,2020-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4172.59,Silver,1 +1858,Jade Medina,jefferyhansen@yahoo.com,2023-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",852.42,Silver,0 +1859,Neil Davis,daniel12@phillips.com,2024-05-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7078.34,Gold,1 +1860,David Hodges,jessicaclarke@rogers.info,2024-01-27,"{""language"": ""FR"", ""currency"": ""USD""}",1547.66,Silver,0 +1861,Jimmy Liu,pmurphy@hernandez-brady.biz,2021-10-04,"{""language"": ""ES"", ""currency"": ""MXN""}",6526.31,Silver,1 +1862,Joann Baldwin,doliver@yahoo.com,2023-02-10,"{""language"": ""IT"", ""currency"": ""USD""}",7950.12,Bronze,1 +1863,Angel Chandler,xbarajas@yahoo.com,2020-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5676.18,Bronze,1 +1864,Brenda Alexander,allison41@yahoo.com,2020-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",740.11,Bronze,0 +1865,Sonia Torres,karenashley@williams-davis.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""GBP""}",7764.86,Gold,1 +1866,Victoria Turner,marybailey@berg-taylor.com,2020-01-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8110.55,Gold,0 +1867,Laura Walters,marymedina@perkins.com,2022-07-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8126.43,Gold,1 +1868,Allison Cooley MD,jenna08@bailey-ramos.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4060.72,Bronze,0 +1869,Jose Snyder,eayala@diaz.com,2021-10-26,"{""language"": ""IT"", ""currency"": ""USD""}",3927.69,Gold,0 +1870,Amy Cunningham,monica62@lynch-ward.info,2024-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4865.08,Silver,1 +1871,Teresa Walsh,moralesaudrey@brown-wheeler.net,2021-06-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3422.3,Gold,1 +1872,Stephanie Randall,anthonygregory@davis-russell.net,2021-06-23,"{""language"": ""DE"", ""currency"": ""USD""}",2910.67,Gold,1 +1873,Jason Doyle,kristin75@waters-cooke.com,2024-11-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4139.14,Silver,0 +1874,Michael Wheeler,martinezstephanie@warren.com,2024-01-09,"{""language"": ""ES"", ""currency"": ""GBP""}",302.59,Silver,1 +1875,David Ruiz,jenkinsariel@prince.org,2020-01-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5341.25,Silver,0 +1876,Laura Rollins,bmathis@hotmail.com,2022-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",5111.87,Silver,0 +1877,Tina Nguyen,jasongonzalez@smith-booker.info,2022-09-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4947.99,Bronze,0 +1878,Dale Oneill,christophermurphy@craig-williams.info,2020-10-11,"{""language"": ""EN"", ""currency"": ""CAD""}",1418.66,Bronze,0 +1879,Joyce Barnett,earmstrong@deleon.org,2023-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",7550.64,Silver,0 +1880,Sandra Ward,marc87@davis.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8668.16,Gold,1 +1881,Laura Cooper,robertandrews@robbins.com,2021-01-18,"{""language"": ""IT"", ""currency"": ""USD""}",3471.82,Bronze,1 +1882,Heather Robinson,clarkeric@yahoo.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""GBP""}",9760.84,Gold,1 +1883,Amanda Huffman,elizabethpennington@gill.com,2022-06-24,"{""language"": ""FR"", ""currency"": ""MXN""}",5143.65,Silver,0 +1884,Alyssa Brown,elizabeth71@yahoo.com,2023-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",5298.62,Bronze,0 +1885,Erin Hudson,jason71@white.info,2021-07-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4401.47,Silver,1 +1886,Jonathan Martin,courtneygarcia@herrera.com,2023-03-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5692.93,Bronze,1 +1887,Thomas Solis,psmith@rodgers-peck.com,2019-12-22,"{""language"": ""IT"", ""currency"": ""MXN""}",7423.54,Silver,1 +1888,Kelsey Smith,justin52@gonzalez-mcgee.com,2020-09-16,"{""language"": ""EN"", ""currency"": ""CAD""}",818.24,Gold,0 +1889,Nicole Neal,whitney39@singleton.info,2022-06-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5591.3,Bronze,1 +1890,Amy White,shortfrancisco@smith-tran.org,2022-09-24,"{""language"": ""EN"", ""currency"": ""MXN""}",4978.73,Silver,1 +1891,Kyle Spencer,coxteresa@peters.net,2021-06-21,"{""language"": ""DE"", ""currency"": ""USD""}",5310.26,Silver,0 +1892,Daniel Parks,reginahart@brown.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6442.3,Bronze,0 +1893,Nicholas Cohen,elliottangela@foley.org,2021-08-19,"{""language"": ""EN"", ""currency"": ""CAD""}",5884.13,Bronze,1 +1894,Michael Peterson,willie98@wolf.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",5488.4,Silver,1 +1895,Jennifer Benjamin,tbaldwin@gmail.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",66.27,Silver,1 +1896,John Johnson,valerie54@stewart.com,2020-03-13,"{""language"": ""FR"", ""currency"": ""GBP""}",4634.6,Silver,0 +1897,Evan Mayer,ogreen@johnson.org,2022-07-31,"{""language"": ""IT"", ""currency"": ""USD""}",1975.99,Silver,1 +1898,Amber Barrera,gardnercraig@welch-rose.com,2020-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9292.0,Silver,0 +1899,Nancy Flores,usantos@gmail.com,2020-02-01,"{""language"": ""IT"", ""currency"": ""USD""}",1957.37,Silver,1 +1900,Patty Williams,marshallconnor@gmail.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""MXN""}",2080.66,Bronze,0 +1901,Evan Melton,davidsonnorma@floyd.com,2020-06-19,"{""language"": ""DE"", ""currency"": ""EUR""}",2066.3,Silver,0 +1902,Nicholas Arnold,nicolasgarcia@fletcher.com,2021-02-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2000.42,Gold,1 +1903,Robert Guerrero DDS,omartin@hotmail.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4342.4,Gold,0 +1904,Joseph Anderson,bakerjason@smith-rose.com,2021-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",848.26,Silver,1 +1905,Monica Hamilton,pamela56@hotmail.com,2021-07-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1795.95,Silver,0 +1906,Allen Nguyen,megan12@gallegos-palmer.com,2021-08-22,"{""language"": ""ES"", ""currency"": ""USD""}",6516.85,Bronze,1 +1907,Jonathan Anderson,herrerajoseph@gmail.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",6611.47,Bronze,1 +1908,Richard Miller,hmurphy@hotmail.com,2021-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",2191.57,Bronze,1 +1909,Stephen Cline,jessicamorris@adams.com,2022-05-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5172.5,Gold,0 +1910,Andrew Atkins,danielharper@gmail.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""CAD""}",2907.48,Gold,1 +1911,Tara Alvarado,wgordon@crawford-nielsen.org,2024-05-25,"{""language"": ""EN"", ""currency"": ""CAD""}",5307.28,Gold,0 +1912,Deborah Baker,christensenmichael@dorsey.com,2024-03-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2969.98,Gold,0 +1913,Nicole Carey,diazsteven@hotmail.com,2023-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",8513.6,Bronze,0 +1914,Amanda Rogers,torresjohn@hotmail.com,2022-04-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1669.27,Silver,1 +1915,Hector Goodman,ballardmatthew@brown.com,2020-11-11,"{""language"": ""DE"", ""currency"": ""CAD""}",3208.06,Silver,0 +1916,Jamie Kelly,pobrien@wilson.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""USD""}",2725.8,Silver,1 +1917,Kurt Shaw,mcalderon@bailey-garrison.com,2023-11-22,"{""language"": ""DE"", ""currency"": ""USD""}",6702.95,Bronze,1 +1918,Valerie Morris,charlottegreen@buckley-zhang.com,2021-10-29,"{""language"": ""DE"", ""currency"": ""USD""}",5619.69,Bronze,1 +1919,Michele Wagner,tylercameron@cochran.com,2020-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1816.32,Bronze,1 +1920,Brittany Kim,matthew97@gmail.com,2021-12-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5045.42,Bronze,0 +1921,Megan Rodriguez,andres48@harris-gordon.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""USD""}",7631.16,Silver,0 +1922,Garrett Marquez,kgoodman@gmail.com,2024-02-03,"{""language"": ""ES"", ""currency"": ""GBP""}",5210.1,Gold,1 +1923,Jonathan Franco,amartin@hotmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""USD""}",3811.81,Bronze,1 +1924,Bobby Love,kevin37@mckinney.info,2022-08-10,"{""language"": ""DE"", ""currency"": ""GBP""}",1289.97,Bronze,1 +1925,Austin Ford,beckdaniel@gmail.com,2023-08-08,"{""language"": ""EN"", ""currency"": ""MXN""}",9059.97,Bronze,1 +1926,Erik Ramirez,millerrachel@simon-jacobs.net,2024-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",1958.13,Gold,1 +1927,Adam Miller,ftrevino@hotmail.com,2022-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",9096.0,Bronze,0 +1928,Nicholas Wilson,stephaniemyers@gmail.com,2024-07-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2090.91,Silver,0 +1929,Thomas Wade,xmonroe@brooks-sosa.com,2022-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",186.72,Gold,0 +1930,Stephanie Decker,awheeler@gutierrez.biz,2020-08-27,"{""language"": ""IT"", ""currency"": ""MXN""}",1139.73,Bronze,0 +1931,Jeremy Lewis,zwilson@yahoo.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8231.93,Silver,1 +1932,Sara Day,olsonsteven@wilson-wright.com,2022-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",4268.76,Gold,1 +1933,Jermaine Long,catherine18@matthews.org,2024-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4536.77,Silver,0 +1934,Kathleen Johnson,terrelldavid@jones-ross.net,2020-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",2392.23,Bronze,0 +1935,Nicole Garza,laceyfrancis@gmail.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9709.21,Bronze,0 +1936,Joseph Lee,ronald92@hotmail.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",3570.87,Gold,1 +1937,Melissa Smith,gturner@burns.biz,2020-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",968.0,Silver,0 +1938,Kelsey George,ahuff@collins.com,2023-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",4089.25,Bronze,1 +1939,Taylor Andrade,butlerjeffrey@ballard.info,2024-09-13,"{""language"": ""IT"", ""currency"": ""USD""}",2249.31,Gold,1 +1940,Corey Marshall,hmoon@hotmail.com,2024-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",744.95,Silver,0 +1941,Antonio Clark,gfranco@hotmail.com,2021-05-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7663.27,Silver,0 +1942,Jaime Schwartz,hernandezanthony@mendoza.com,2023-11-06,"{""language"": ""EN"", ""currency"": ""GBP""}",4485.24,Bronze,1 +1943,Willie Perez,browncorey@hotmail.com,2023-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",5463.37,Gold,0 +1944,Michael Ross,jeffrey42@hotmail.com,2024-10-17,"{""language"": ""DE"", ""currency"": ""EUR""}",2664.48,Gold,1 +1945,Regina Olson,curtis13@hotmail.com,2024-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",7810.97,Silver,0 +1946,Michael Hernandez,aclark@hotmail.com,2023-12-30,"{""language"": ""IT"", ""currency"": ""MXN""}",4780.47,Silver,0 +1947,Sierra Petersen,qmeyer@stafford-fisher.com,2024-12-01,"{""language"": ""ES"", ""currency"": ""EUR""}",7413.65,Silver,0 +1948,Mark Murphy,austinjohnson@caldwell.org,2023-12-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4423.43,Silver,0 +1949,Jordan Compton,tdawson@kelly.info,2020-10-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1446.4,Gold,0 +1950,James Rodriguez,kingwyatt@paul-oconnell.com,2020-03-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2207.28,Silver,0 +1951,Monica Boyd,janice31@gmail.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",6118.18,Silver,1 +1952,Wendy Wilkinson,megan90@gmail.com,2022-06-26,"{""language"": ""ES"", ""currency"": ""MXN""}",3419.42,Bronze,1 +1953,Bradley Pierce,frank54@richardson-alexander.com,2024-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",2328.52,Bronze,1 +1954,Michael Moore,laurabrown@velasquez.biz,2021-06-29,"{""language"": ""DE"", ""currency"": ""GBP""}",7761.3,Gold,1 +1955,David Knight,rhondahuffman@yahoo.com,2022-06-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4601.25,Silver,1 +1956,Eric Smith,jamesdarlene@mcclure.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",7886.06,Silver,1 +1957,Glen Miller,carl15@powers.com,2020-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3150.55,Silver,1 +1958,Rachel Le,vsmith@vega.org,2024-10-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3831.19,Gold,1 +1959,Michael Blake,brandy45@graves.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""USD""}",2836.16,Bronze,0 +1960,Stuart Smith,cynthiajohnson@hotmail.com,2024-07-02,"{""language"": ""FR"", ""currency"": ""MXN""}",4919.37,Bronze,0 +1961,Monica Bridges,david94@moore-summers.org,2023-06-03,"{""language"": ""DE"", ""currency"": ""GBP""}",874.85,Gold,0 +1962,Melissa Daniels,sullivanthomas@yahoo.com,2023-07-09,"{""language"": ""EN"", ""currency"": ""GBP""}",3319.63,Silver,1 +1963,Christina Russell,foleywendy@hotmail.com,2024-04-05,"{""language"": ""IT"", ""currency"": ""USD""}",712.14,Silver,0 +1964,Randy Evans,elee@hotmail.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8761.01,Bronze,0 +1965,John Lin,sellis@ortiz.com,2023-07-29,"{""language"": ""IT"", ""currency"": ""USD""}",2694.28,Gold,1 +1966,Daniel Smith,logancollins@brown.com,2022-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",5032.66,Gold,0 +1967,Kristy Lopez,kenneth08@hughes.com,2022-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9424.11,Silver,1 +1968,Reginald Miller,bstevens@cooper-calhoun.com,2024-03-28,"{""language"": ""FR"", ""currency"": ""EUR""}",3324.09,Silver,1 +1969,Matthew Hines,linda71@adams-carr.com,2020-04-11,"{""language"": ""EN"", ""currency"": ""GBP""}",356.12,Silver,0 +1970,Donna Smith,sarahill@yahoo.com,2020-05-15,"{""language"": ""EN"", ""currency"": ""MXN""}",7597.16,Gold,0 +1971,Matthew Hansen,ejenkins@green.com,2020-10-01,"{""language"": ""FR"", ""currency"": ""GBP""}",1675.42,Silver,1 +1972,Savannah Holland,ljones@hudson.com,2024-09-27,"{""language"": ""EN"", ""currency"": ""CAD""}",8199.45,Bronze,0 +1973,Brandon Dixon,ydavis@yahoo.com,2022-10-31,"{""language"": ""DE"", ""currency"": ""GBP""}",3704.6,Silver,0 +1974,Dawn Murphy,grice@robbins.info,2020-07-03,"{""language"": ""EN"", ""currency"": ""GBP""}",693.85,Silver,1 +1975,Mrs. Hannah Tyler PhD,moniquemcdaniel@gmail.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7203.59,Silver,1 +1976,Kayla Carter,mstewart@hotmail.com,2022-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",2281.04,Silver,0 +1977,Stephen Montes,austin84@ewing.com,2022-12-12,"{""language"": ""ES"", ""currency"": ""USD""}",194.06,Silver,1 +1978,Joseph Reed,scotttommy@mathews-gross.com,2023-06-30,"{""language"": ""DE"", ""currency"": ""GBP""}",162.86,Bronze,0 +1979,Lori Alexander,karencain@yahoo.com,2022-05-29,"{""language"": ""DE"", ""currency"": ""EUR""}",7211.44,Silver,1 +1980,Benjamin Gonzales,floresnicole@gmail.com,2020-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",4534.61,Gold,0 +1981,Laura Perez,xrocha@yahoo.com,2021-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",5563.72,Gold,1 +1982,Jennifer Kirk,sylviawilson@gmail.com,2023-09-01,"{""language"": ""FR"", ""currency"": ""GBP""}",1221.87,Silver,1 +1983,Steve Hunt,paulbraun@hotmail.com,2024-06-25,"{""language"": ""FR"", ""currency"": ""USD""}",4362.06,Gold,0 +1984,John King,crowe@barker.com,2022-06-04,"{""language"": ""FR"", ""currency"": ""GBP""}",3303.53,Gold,1 +1985,Christopher Thomas,robert15@gmail.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""EUR""}",3365.26,Bronze,1 +1986,Mark Fuentes,yrivera@yahoo.com,2021-08-08,"{""language"": ""IT"", ""currency"": ""USD""}",7324.2,Silver,1 +1987,Russell Moreno,jensensharon@ward.com,2021-05-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3046.99,Silver,1 +1988,Tony Johnson III,vali@davila-acosta.info,2021-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",6488.06,Silver,1 +1989,Nathaniel Wright MD,jennifer07@gmail.com,2024-01-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1067.48,Silver,0 +1990,Suzanne Hernandez,brandi82@garcia.org,2023-11-29,"{""language"": ""ES"", ""currency"": ""GBP""}",8023.23,Silver,0 +1991,David Clark,joneswendy@grant-walker.info,2023-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",6037.69,Bronze,1 +1992,Julia Wilson,cheryl11@gmail.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6819.85,Gold,1 +1993,Brandon Nelson,johnsmith@bruce.biz,2023-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9086.41,Bronze,0 +1994,Terry Byrd,fcollins@rosales.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""CAD""}",7334.62,Gold,1 +1995,Charles Thomas,carolynjordan@hotmail.com,2020-10-11,"{""language"": ""DE"", ""currency"": ""CAD""}",7028.21,Gold,0 +1996,Michael Ayers,delgadojennifer@yahoo.com,2022-09-16,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.87,Gold,1 +1997,Robert Jackson,pdean@gmail.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""USD""}",7907.88,Bronze,1 +1998,Anthony Reyes,rosebrian@diaz.biz,2020-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",3225.35,Gold,0 +1999,Paul Brown,coopermichael@gmail.com,2020-12-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6757.6,Gold,1 +2000,Scott Harmon,barbara10@hotmail.com,2020-10-27,"{""language"": ""ES"", ""currency"": ""EUR""}",8137.88,Bronze,0 +2001,Rachel Smith,marcia26@hotmail.com,2021-10-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1829.6,Bronze,0 +2002,Ashley Gonzalez,zalexander@hotmail.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""CAD""}",838.0,Silver,0 +2003,Brian Carey,kellymoore@gmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""EUR""}",5145.06,Silver,0 +2004,Michael Johnson,mwood@yahoo.com,2021-07-22,"{""language"": ""IT"", ""currency"": ""GBP""}",6952.02,Silver,0 +2005,Dean Duncan,jjohnson@dyer.com,2021-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7539.59,Bronze,1 +2006,Ronald Cooper,timothy36@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""GBP""}",530.65,Gold,0 +2007,Benjamin Smith,yholmes@patel.biz,2022-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",6684.5,Bronze,0 +2008,Jacob Murphy,fblack@brown.info,2022-02-13,"{""language"": ""DE"", ""currency"": ""MXN""}",516.97,Silver,0 +2009,William Harrison,robert78@hotmail.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""USD""}",5145.14,Silver,1 +2010,Julie Stevenson,williamsdaniel@hogan-le.org,2024-08-30,"{""language"": ""FR"", ""currency"": ""CAD""}",8581.51,Silver,1 +2011,Steven Woods,xparker@phillips-butler.com,2023-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5628.98,Silver,0 +2012,Christina James,kanderson@gmail.com,2020-05-24,"{""language"": ""IT"", ""currency"": ""GBP""}",4527.09,Silver,0 +2013,Ann Thomas,richardsondonna@hotmail.com,2024-07-27,"{""language"": ""DE"", ""currency"": ""USD""}",3910.75,Gold,1 +2014,Eric Greene,nancyunderwood@ritter-sampson.com,2023-08-20,"{""language"": ""EN"", ""currency"": ""MXN""}",4375.26,Gold,1 +2015,Lisa Welch,kristina46@gmail.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",1904.65,Bronze,0 +2016,Tina Hale,karen73@yahoo.com,2022-01-05,"{""language"": ""DE"", ""currency"": ""EUR""}",7828.31,Silver,1 +2017,Tonya Fernandez,brownmelanie@gmail.com,2023-07-24,"{""language"": ""EN"", ""currency"": ""USD""}",5859.49,Silver,1 +2018,Dr. Jennifer Obrien,sdorsey@hotmail.com,2023-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",9237.01,Bronze,0 +2019,Julia Mcdonald,garciakevin@yahoo.com,2022-08-11,"{""language"": ""EN"", ""currency"": ""USD""}",503.64,Silver,0 +2020,Gina Valdez,iedwards@hotmail.com,2020-07-09,"{""language"": ""DE"", ""currency"": ""CAD""}",686.1,Bronze,1 +2021,Latasha Cole,vclark@michael-benson.com,2022-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",7780.38,Gold,1 +2022,Brandy Campos,sheltontimothy@roberts-brown.com,2022-05-19,"{""language"": ""ES"", ""currency"": ""CAD""}",2746.03,Bronze,1 +2023,Connor Silva,sloangary@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""USD""}",3862.2,Gold,0 +2024,Vincent Schaefer,tracyjohnson@yahoo.com,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",8331.81,Silver,0 +2025,Travis White,kristinbolton@yahoo.com,2023-07-25,"{""language"": ""FR"", ""currency"": ""GBP""}",887.76,Gold,0 +2026,Kimberly Burns,victorbutler@yahoo.com,2023-10-31,"{""language"": ""DE"", ""currency"": ""CAD""}",2513.96,Bronze,0 +2027,Oscar Morris,gary87@yahoo.com,2021-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8321.33,Bronze,0 +2028,Nancy Sherman,lewisthomas@chavez.com,2020-02-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8381.23,Gold,1 +2029,Sean Castro,tatechris@velazquez.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""GBP""}",1259.59,Bronze,0 +2030,Patrick Jones,claytonkane@harris.com,2020-05-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7893.31,Bronze,0 +2031,Timothy Cox,xmelendez@wu.net,2022-11-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7805.96,Bronze,1 +2032,Amanda Mccarty,barry66@gmail.com,2024-10-20,"{""language"": ""EN"", ""currency"": ""USD""}",3047.05,Bronze,0 +2033,Shirley Todd,osmith@williams.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""EUR""}",1715.17,Gold,0 +2034,Jenny Nguyen,petersonamanda@yahoo.com,2024-02-09,"{""language"": ""IT"", ""currency"": ""USD""}",5942.35,Silver,1 +2035,Nathaniel Collins,bellkyle@yahoo.com,2020-01-15,"{""language"": ""DE"", ""currency"": ""CAD""}",606.22,Bronze,0 +2036,Daniel Davies,kingmichael@hotmail.com,2024-08-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7988.7,Silver,0 +2037,Christopher Graham,charles81@hotmail.com,2020-05-21,"{""language"": ""IT"", ""currency"": ""MXN""}",8037.75,Gold,0 +2038,Morgan Martin,kristina71@gmail.com,2022-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5666.94,Gold,1 +2039,Donald Pierce,rosebryant@yahoo.com,2020-03-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7346.68,Gold,1 +2040,Sandy Long,stephenwebb@williams-hopkins.com,2021-02-11,"{""language"": ""IT"", ""currency"": ""USD""}",4718.63,Gold,1 +2041,Kurt Young,mary90@russo.biz,2021-11-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4714.83,Bronze,1 +2042,George Coleman,andrewbrown@hotmail.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""CAD""}",330.93,Gold,0 +2043,Gerald Mason,hclark@gmail.com,2024-10-27,"{""language"": ""ES"", ""currency"": ""MXN""}",5133.2,Silver,1 +2044,Taylor Hinton,cainjasmine@stanton.com,2022-01-20,"{""language"": ""DE"", ""currency"": ""USD""}",892.41,Bronze,0 +2045,Emma Terry,awhite@gmail.com,2021-08-20,"{""language"": ""IT"", ""currency"": ""CAD""}",2650.12,Gold,0 +2046,Nicholas Burns,dyerdarrell@harris-foster.com,2021-08-08,"{""language"": ""ES"", ""currency"": ""EUR""}",785.28,Bronze,0 +2047,Sandra Fields,langalexander@carr.com,2020-01-23,"{""language"": ""FR"", ""currency"": ""EUR""}",7042.79,Bronze,1 +2048,Laura Simpson,sallytaylor@henderson.net,2020-09-09,"{""language"": ""FR"", ""currency"": ""GBP""}",3628.94,Bronze,0 +2049,Mathew Graham,plambert@rivera-sanders.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",7927.41,Silver,1 +2050,Brandy Gibson,marybolton@yahoo.com,2023-05-24,"{""language"": ""EN"", ""currency"": ""GBP""}",4775.99,Bronze,1 +2051,Roger Griffin,codyblankenship@smith-bartlett.com,2023-08-12,"{""language"": ""EN"", ""currency"": ""MXN""}",5242.36,Silver,1 +2052,Eric Collins,xduffy@hotmail.com,2023-07-07,"{""language"": ""ES"", ""currency"": ""USD""}",5385.08,Gold,1 +2053,Samantha Stevenson,elaine64@yahoo.com,2020-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6915.82,Gold,1 +2054,Mr. Marcus Guerrero,josephsmith@perry.com,2024-10-10,"{""language"": ""FR"", ""currency"": ""EUR""}",9101.85,Gold,1 +2055,Alexis Moore,james96@gmail.com,2022-12-09,"{""language"": ""DE"", ""currency"": ""USD""}",5382.41,Bronze,0 +2056,Tammy Smith,kellylaura@gmail.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""USD""}",4177.29,Gold,0 +2057,Alicia Kirby,smithkeith@yahoo.com,2020-09-11,"{""language"": ""IT"", ""currency"": ""USD""}",6611.85,Silver,1 +2058,Krystal Smith,michaelpayne@yahoo.com,2023-02-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9507.63,Gold,0 +2059,Benjamin Smith,lfuentes@nichols.com,2023-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7213.78,Silver,1 +2060,Vanessa Anderson,fisherjoshua@sanford-thomas.biz,2024-04-01,"{""language"": ""IT"", ""currency"": ""CAD""}",2544.86,Silver,0 +2061,Samantha Lee,christianstewart@yahoo.com,2022-09-30,"{""language"": ""FR"", ""currency"": ""USD""}",8158.83,Gold,1 +2062,Angela Leon,brianna14@hotmail.com,2020-10-21,"{""language"": ""FR"", ""currency"": ""MXN""}",1514.95,Gold,0 +2063,Richard Perkins,wrightkenneth@olsen-mccormick.com,2023-05-26,"{""language"": ""FR"", ""currency"": ""EUR""}",2448.77,Silver,0 +2064,Jo Williams,traceyscott@roberts-rivera.biz,2020-02-05,"{""language"": ""EN"", ""currency"": ""CAD""}",4005.52,Silver,0 +2065,Zoe Avila,gutierrezdouglas@kelly-bruce.com,2021-07-20,"{""language"": ""ES"", ""currency"": ""MXN""}",6164.68,Silver,1 +2066,John Davis MD,joneslisa@yahoo.com,2020-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",4462.36,Gold,0 +2067,Terri Morton,isanchez@hotmail.com,2024-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",2992.86,Bronze,0 +2068,James Richardson,ylee@dalton-walker.com,2021-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",1823.05,Bronze,1 +2069,Wanda Rhodes,nmartin@petersen.biz,2020-04-29,"{""language"": ""DE"", ""currency"": ""MXN""}",1659.13,Bronze,0 +2070,Zachary Nielsen,carolyn63@davies.net,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",3961.4,Silver,1 +2071,Virginia Diaz,umccarthy@blackburn.info,2023-08-31,"{""language"": ""IT"", ""currency"": ""USD""}",1232.98,Gold,0 +2072,Brian Roman,etownsend@melton.biz,2023-10-31,"{""language"": ""ES"", ""currency"": ""USD""}",844.57,Silver,0 +2073,Nicholas Snow,daniellejohnson@hotmail.com,2019-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",5205.28,Silver,1 +2074,Micheal Wiggins,smithmelissa@hotmail.com,2021-01-14,"{""language"": ""EN"", ""currency"": ""GBP""}",9405.0,Bronze,1 +2075,Joseph Johnston,stephanie35@watkins.com,2023-12-30,"{""language"": ""IT"", ""currency"": ""EUR""}",1592.65,Silver,0 +2076,Katherine Holmes,davidkeith@yahoo.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""EUR""}",8519.59,Silver,1 +2077,Carolyn Bailey,michaelhill@yahoo.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""USD""}",536.76,Bronze,0 +2078,Seth Herring,makayla49@bradford.com,2020-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",1966.74,Bronze,1 +2079,Corey Adams,penalawrence@yahoo.com,2021-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",6913.01,Silver,0 +2080,David Davidson,ddean@mills.com,2021-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",93.41,Bronze,0 +2081,James Alvarez,lisarodriguez@wheeler.com,2023-03-19,"{""language"": ""DE"", ""currency"": ""CAD""}",2164.46,Silver,0 +2082,Jacob Lee,jscott@yahoo.com,2022-02-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9436.1,Silver,0 +2083,Joshua Arias,samantha08@yahoo.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""CAD""}",903.54,Bronze,1 +2084,Wayne Burke,ulewis@gmail.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8658.31,Silver,0 +2085,Julie Bowers,uhart@gmail.com,2021-03-21,"{""language"": ""ES"", ""currency"": ""EUR""}",5387.86,Gold,0 +2086,Timothy Miller,jo83@holt.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""EUR""}",408.71,Silver,0 +2087,Holly Pittman,linda56@yahoo.com,2020-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",259.65,Gold,1 +2088,David Brown,samuelhooper@yahoo.com,2023-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",7639.26,Bronze,1 +2089,Brenda Ramos,jmitchell@gmail.com,2021-12-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1299.88,Silver,0 +2090,Juan Jackson DVM,cliffordbeck@moore.biz,2024-05-03,"{""language"": ""IT"", ""currency"": ""MXN""}",4147.91,Gold,0 +2091,Angelica Shepard,craig56@gmail.com,2020-04-07,"{""language"": ""FR"", ""currency"": ""MXN""}",6861.32,Gold,1 +2092,Jeremy Gardner,nicole19@perry.com,2024-10-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9146.7,Silver,1 +2093,Trevor Armstrong,heatherbrock@rodgers.org,2023-01-20,"{""language"": ""IT"", ""currency"": ""CAD""}",3241.77,Silver,0 +2094,Scott Key,michaelbeltran@garrett.org,2024-06-20,"{""language"": ""EN"", ""currency"": ""GBP""}",4001.82,Gold,1 +2095,Sandra Martin,cmorales@yahoo.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",1412.28,Gold,0 +2096,Jennifer Robinson,kevin12@gmail.com,2020-08-11,"{""language"": ""EN"", ""currency"": ""MXN""}",1469.51,Gold,0 +2097,Colton Weber,qperry@parrish-rush.com,2021-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9187.48,Bronze,0 +2098,Kimberly Davis,victoria07@hotmail.com,2021-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",7146.9,Bronze,0 +2099,Alex Francis,david14@melendez.com,2023-10-25,"{""language"": ""EN"", ""currency"": ""MXN""}",8710.6,Bronze,0 +2100,Megan Harvey,hrobinson@hotmail.com,2023-07-20,"{""language"": ""ES"", ""currency"": ""GBP""}",4156.19,Gold,1 +2101,Todd Chambers,johnsonjenna@yahoo.com,2022-01-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2926.28,Gold,1 +2102,Virginia Dunlap,brettmoore@francis.com,2021-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5038.43,Gold,0 +2103,Jessica Patel,gordonmeghan@gmail.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1699.64,Gold,0 +2104,Barbara Yang,zryan@gutierrez-boyd.biz,2022-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7601.99,Silver,0 +2105,Kerry Watts,harpersandra@cox.com,2021-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",5441.6,Bronze,1 +2106,Laura Miller,christophercole@house-sandoval.com,2022-05-21,"{""language"": ""EN"", ""currency"": ""EUR""}",1923.51,Gold,1 +2107,Deanna Harris,leah38@yahoo.com,2020-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5834.22,Silver,1 +2108,Linda Scott MD,ycrosby@yahoo.com,2021-12-22,"{""language"": ""DE"", ""currency"": ""USD""}",9170.32,Silver,0 +2109,Megan Thompson,benjaminbarber@yahoo.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4247.3,Gold,0 +2110,Rachel Owen,doylemegan@montgomery.info,2024-03-22,"{""language"": ""IT"", ""currency"": ""USD""}",6101.45,Gold,0 +2111,Anthony Bennett,cherylnelson@yahoo.com,2020-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",3376.18,Silver,0 +2112,Amanda Rodgers,nguyenjacob@bass.net,2021-04-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8678.79,Silver,1 +2113,Benjamin Romero,parknicole@yahoo.com,2021-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1304.77,Gold,0 +2114,Matthew Fisher,collinsnicholas@yahoo.com,2023-04-10,"{""language"": ""IT"", ""currency"": ""GBP""}",1283.03,Silver,0 +2115,Kevin Martinez,josephmeza@davis.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",6895.27,Bronze,1 +2116,Barbara Harrison,abrown@duran.biz,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",2341.7,Gold,1 +2117,Angela Lee,hburns@lee-hanson.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",1203.96,Silver,0 +2118,Anthony Mitchell,ebutler@gill.com,2020-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3178.86,Silver,1 +2119,Carol Frye,diana88@torres.com,2022-01-16,"{""language"": ""ES"", ""currency"": ""CAD""}",3416.31,Bronze,1 +2120,Diane Parker,tmeza@powell.com,2022-02-10,"{""language"": ""EN"", ""currency"": ""USD""}",6173.24,Gold,1 +2121,Joel Marshall,angelaharvey@yahoo.com,2024-01-28,"{""language"": ""FR"", ""currency"": ""EUR""}",7076.85,Bronze,0 +2122,Juan Washington,dianemills@gmail.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""GBP""}",2959.58,Bronze,1 +2123,Trevor Kane,ucampos@hotmail.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4342.55,Silver,0 +2124,Ian Fisher,obuchanan@green.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3509.79,Gold,1 +2125,Jennifer Brown,carol32@skinner.net,2022-09-07,"{""language"": ""FR"", ""currency"": ""GBP""}",7224.32,Silver,1 +2126,Tammy Snow,kyle40@armstrong.com,2021-04-08,"{""language"": ""FR"", ""currency"": ""USD""}",7976.6,Bronze,0 +2127,Jimmy Turner,douglas15@yahoo.com,2022-12-13,"{""language"": ""EN"", ""currency"": ""USD""}",4271.67,Gold,1 +2128,Mrs. Cynthia Wood,johndavis@hotmail.com,2022-09-20,"{""language"": ""FR"", ""currency"": ""MXN""}",5991.17,Gold,1 +2129,Susan Gray,daltonchloe@petersen.biz,2020-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",9197.32,Silver,1 +2130,Natalie Walker,xsanchez@yahoo.com,2022-02-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6408.37,Bronze,1 +2131,Jessica Davis,lisabrock@gmail.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""USD""}",2296.23,Gold,1 +2132,Christopher Thompson,djohnston@yahoo.com,2021-04-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9642.33,Bronze,1 +2133,Patricia Brown,robert43@yahoo.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2205.43,Silver,1 +2134,Rachel Price,hmorris@lopez.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3712.16,Bronze,1 +2135,Curtis Frazier,michelle22@hotmail.com,2020-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3824.45,Bronze,1 +2136,Alicia Martinez,bonnie92@yahoo.com,2021-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",7180.85,Gold,0 +2137,Robert Nelson,daryl16@yahoo.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""MXN""}",1454.89,Gold,1 +2138,Anthony Watson,martinezrachel@yahoo.com,2023-07-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4499.24,Bronze,1 +2139,Kevin Terry,patricialucero@barron.biz,2022-05-10,"{""language"": ""EN"", ""currency"": ""EUR""}",3325.95,Silver,1 +2140,Adam Davis,morrisrobert@holloway-patton.com,2023-12-03,"{""language"": ""DE"", ""currency"": ""GBP""}",7170.15,Bronze,0 +2141,David Anthony,aaronjohnson@burns.biz,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5334.04,Silver,0 +2142,Alejandro Brown,cwatson@gmail.com,2020-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",1709.45,Silver,1 +2143,Jessica Davenport,ghernandez@cisneros.net,2021-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",2249.39,Gold,0 +2144,Mr. Joseph Willis,hilledward@sawyer.com,2021-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",4196.69,Gold,0 +2145,Bryan Evans,xbarnes@yahoo.com,2023-09-27,"{""language"": ""IT"", ""currency"": ""CAD""}",6773.06,Silver,0 +2146,Sarah Thomas,vphelps@hotmail.com,2022-08-06,"{""language"": ""EN"", ""currency"": ""USD""}",8267.23,Bronze,0 +2147,Danielle Hopkins,karen46@watson.info,2021-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",9459.66,Bronze,1 +2148,Colin Barnett,walterrichard@wu.biz,2021-03-30,"{""language"": ""EN"", ""currency"": ""EUR""}",162.85,Silver,1 +2149,Charlotte Price,brittanybryant@yahoo.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2543.66,Gold,0 +2150,Jonathan Saunders,kimberlykelley@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""CAD""}",1499.13,Silver,1 +2151,Mark Sanchez,janicewarner@gmail.com,2023-12-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7915.99,Gold,1 +2152,Samantha Williamson,rhonda17@yahoo.com,2022-03-26,"{""language"": ""EN"", ""currency"": ""EUR""}",5258.49,Gold,0 +2153,Kurt Welch,hansensteven@gmail.com,2021-07-20,"{""language"": ""IT"", ""currency"": ""GBP""}",8945.54,Gold,1 +2154,Heidi Solis,hhuynh@nicholson.com,2024-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",4267.78,Silver,1 +2155,Heather Page,johnathan27@gmail.com,2021-02-02,"{""language"": ""DE"", ""currency"": ""USD""}",5373.13,Gold,1 +2156,John Hardy,krichardson@pierce-graham.com,2022-11-08,"{""language"": ""EN"", ""currency"": ""CAD""}",664.32,Silver,0 +2157,Denise Duke,jstephens@mccarty.org,2021-06-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3361.52,Gold,1 +2158,Holly Harmon,anna77@mckenzie.biz,2022-10-28,"{""language"": ""IT"", ""currency"": ""CAD""}",1690.05,Gold,1 +2159,Thomas Brown,yrobinson@hotmail.com,2024-08-14,"{""language"": ""ES"", ""currency"": ""GBP""}",5387.65,Bronze,0 +2160,Michael Lamb,alexandra68@yahoo.com,2022-01-26,"{""language"": ""ES"", ""currency"": ""USD""}",8607.45,Silver,1 +2161,Brian Brown,allenshawn@walker-davila.com,2024-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",6517.2,Bronze,0 +2162,Emily Moreno,joseph11@johnson.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""CAD""}",6779.1,Silver,1 +2163,Kristen Kelley,john23@gmail.com,2024-11-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9595.81,Gold,0 +2164,Jasmine Brown,rogersleslie@bean.com,2024-03-19,"{""language"": ""EN"", ""currency"": ""CAD""}",4105.34,Bronze,0 +2165,Debbie Gray,lopezmichael@yahoo.com,2021-12-31,"{""language"": ""IT"", ""currency"": ""GBP""}",9404.58,Bronze,1 +2166,Shelley Yoder,jmolina@figueroa.info,2022-11-26,"{""language"": ""IT"", ""currency"": ""USD""}",7214.21,Bronze,1 +2167,Lauren Spencer,cindy01@hotmail.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",9842.89,Bronze,1 +2168,Lauren Adkins,kathydeleon@wong.com,2024-04-21,"{""language"": ""IT"", ""currency"": ""CAD""}",6690.73,Silver,0 +2169,Michael Johnson,tammie59@hayes-perez.net,2024-04-22,"{""language"": ""IT"", ""currency"": ""USD""}",8447.37,Gold,1 +2170,Jeffrey Ferguson,danaenglish@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""GBP""}",1453.73,Silver,1 +2171,Joanna Munoz,qbarnett@wagner-jordan.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5416.76,Gold,1 +2172,Jason Gonzales,samuelrogers@gay.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""EUR""}",9424.41,Bronze,1 +2173,Jerry Rivera,torresdeborah@yahoo.com,2020-11-18,"{""language"": ""IT"", ""currency"": ""MXN""}",6848.73,Gold,0 +2174,Timothy Bradley,lisarodriguez@yahoo.com,2020-08-26,"{""language"": ""DE"", ""currency"": ""GBP""}",5116.31,Silver,1 +2175,Brandi Hernandez,margaret25@yahoo.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",9031.76,Bronze,1 +2176,Luis Montgomery,jrobles@torres.net,2022-06-04,"{""language"": ""EN"", ""currency"": ""USD""}",3810.19,Bronze,1 +2177,Scott Clark,mmarshall@edwards.info,2023-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",9106.18,Bronze,1 +2178,Bryan West,chad34@gmail.com,2023-11-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4997.73,Silver,0 +2179,Andrew Mueller,jarroyo@ashley.net,2022-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",1636.25,Gold,1 +2180,David Day,brenda14@hotmail.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5226.01,Gold,1 +2181,Theresa Ward,courtney16@yahoo.com,2023-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",7685.66,Gold,1 +2182,Timothy Miller,paul09@cole.biz,2024-09-17,"{""language"": ""EN"", ""currency"": ""USD""}",9894.16,Silver,1 +2183,Kimberly Reed,uholden@hotmail.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1409.57,Gold,0 +2184,Paul Mullins,christopher16@clark-dalton.biz,2022-06-07,"{""language"": ""FR"", ""currency"": ""USD""}",3094.07,Silver,0 +2185,Jonathon Becker,omar21@hotmail.com,2020-05-01,"{""language"": ""EN"", ""currency"": ""USD""}",1548.27,Gold,1 +2186,David Williams,vanderson@yahoo.com,2024-02-07,"{""language"": ""ES"", ""currency"": ""GBP""}",8985.97,Silver,0 +2187,Frederick Walter,chavezmargaret@clayton.com,2024-11-14,"{""language"": ""FR"", ""currency"": ""CAD""}",9188.91,Bronze,1 +2188,Marcia Melton,rmiranda@mora.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7021.27,Gold,1 +2189,Helen Yoder,juliasharp@lee.com,2023-03-27,"{""language"": ""FR"", ""currency"": ""USD""}",1443.91,Silver,1 +2190,Kristie Stewart,parkstephanie@yahoo.com,2020-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4807.13,Gold,1 +2191,Roger Ibarra,heather92@martin-duffy.info,2021-11-18,"{""language"": ""EN"", ""currency"": ""GBP""}",1205.15,Bronze,1 +2192,Edward Blackwell,crystalrodriguez@gmail.com,2020-05-03,"{""language"": ""IT"", ""currency"": ""EUR""}",3802.81,Gold,1 +2193,Gina Sheppard,djackson@yahoo.com,2020-03-21,"{""language"": ""IT"", ""currency"": ""EUR""}",1485.35,Bronze,1 +2194,Wanda Stafford,ggraham@yahoo.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8919.97,Bronze,0 +2195,Todd Price,ewilliams@yahoo.com,2023-10-09,"{""language"": ""DE"", ""currency"": ""USD""}",1301.73,Bronze,1 +2196,Wendy Clark,xbishop@rice-briggs.org,2023-07-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5845.22,Gold,0 +2197,Linda Bell,nlong@hotmail.com,2023-02-18,"{""language"": ""FR"", ""currency"": ""USD""}",3402.1,Gold,1 +2198,Julia Johnson,tinadeleon@yahoo.com,2023-12-06,"{""language"": ""DE"", ""currency"": ""USD""}",4387.05,Silver,1 +2199,Crystal Daniel,robert03@hotmail.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""EUR""}",9743.64,Gold,1 +2200,Yolanda Anderson,ashleyedwards@gmail.com,2022-08-08,"{""language"": ""FR"", ""currency"": ""EUR""}",8665.85,Silver,0 +2201,David Jones,znavarro@yahoo.com,2021-12-22,"{""language"": ""FR"", ""currency"": ""MXN""}",4338.35,Silver,0 +2202,Adrian Arnold,freyruth@gmail.com,2023-09-29,"{""language"": ""DE"", ""currency"": ""EUR""}",6956.64,Gold,1 +2203,Steve Wilson,richard04@johnson-barrera.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""USD""}",9448.88,Silver,0 +2204,Mrs. Jeanne Richardson MD,ernesthuynh@gmail.com,2021-01-12,"{""language"": ""IT"", ""currency"": ""CAD""}",307.68,Bronze,1 +2205,Brandon Fox,adam56@franklin.com,2024-02-03,"{""language"": ""DE"", ""currency"": ""EUR""}",8518.9,Bronze,0 +2206,Jorge Williams,smithmichelle@yahoo.com,2022-07-04,"{""language"": ""FR"", ""currency"": ""CAD""}",7606.97,Bronze,1 +2207,Benjamin Scott,colleenbutler@barrett-craig.com,2020-03-29,"{""language"": ""FR"", ""currency"": ""USD""}",9314.96,Silver,1 +2208,Melissa Stein,johnjohnson@yahoo.com,2024-07-19,"{""language"": ""DE"", ""currency"": ""EUR""}",9373.12,Silver,0 +2209,Christopher Pope,gharrison@lang-powers.info,2022-10-24,"{""language"": ""DE"", ""currency"": ""GBP""}",8391.08,Silver,1 +2210,Ashley Velazquez,michael03@gmail.com,2024-09-01,"{""language"": ""ES"", ""currency"": ""MXN""}",9108.67,Gold,1 +2211,John Dennis,micheleperez@martin-kim.net,2021-06-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3722.12,Silver,0 +2212,Kelsey Ball MD,wheeleryesenia@yahoo.com,2024-09-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9096.82,Bronze,0 +2213,Julie Dominguez,wesleygamble@gmail.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",187.55,Gold,0 +2214,Joshua Baxter,tracy59@gmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",9598.56,Bronze,1 +2215,Dean Miller,jsnyder@phillips.info,2024-05-29,"{""language"": ""IT"", ""currency"": ""USD""}",1276.06,Bronze,1 +2216,Christian Rush,chrishoward@gmail.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",1732.05,Bronze,0 +2217,James Walker,regina85@hill-lowe.com,2022-02-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3171.04,Silver,0 +2218,Samuel Smith,erikablair@gmail.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9951.88,Silver,1 +2219,Kelsey White,eburke@morrow.com,2020-04-24,"{""language"": ""DE"", ""currency"": ""CAD""}",4880.69,Silver,0 +2220,Veronica Smith,bthomas@hodges-kemp.biz,2022-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",4997.26,Silver,1 +2221,Joan Franco,scottfernandez@walls.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""MXN""}",2730.08,Silver,0 +2222,Jason Webb,christopherferguson@yahoo.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""USD""}",5662.49,Gold,1 +2223,Robert Schwartz,lisa88@anderson.info,2023-06-20,"{""language"": ""FR"", ""currency"": ""GBP""}",1605.93,Silver,1 +2224,Paula Huffman,xsmith@davis.com,2022-11-04,"{""language"": ""EN"", ""currency"": ""MXN""}",7502.12,Gold,1 +2225,Angela Quinn,guerragloria@yahoo.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""USD""}",3903.07,Bronze,0 +2226,Brenda Ortiz,joanna70@yahoo.com,2020-07-22,"{""language"": ""ES"", ""currency"": ""EUR""}",8853.18,Gold,0 +2227,Christina Harris,diazjennifer@soto.com,2024-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",2161.05,Gold,0 +2228,Robert Hardy,sarahfuller@macias.com,2024-01-04,"{""language"": ""IT"", ""currency"": ""CAD""}",2432.31,Bronze,0 +2229,Wayne Hernandez,brian13@brooks-oliver.org,2021-01-16,"{""language"": ""ES"", ""currency"": ""EUR""}",133.76,Bronze,0 +2230,Sara Castaneda,diane12@montoya.com,2023-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",1445.97,Gold,1 +2231,Sara Bennett,jeremyturner@payne.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2177.98,Gold,0 +2232,David Smith,ruizwilliam@jackson.net,2020-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",2162.49,Bronze,0 +2233,Jessica Doyle,joe39@rogers-reynolds.com,2022-12-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8957.04,Gold,0 +2234,Stephanie Davis,bflowers@johnson.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9899.47,Silver,0 +2235,Taylor Thompson,terripierce@cook-jensen.com,2021-08-04,"{""language"": ""DE"", ""currency"": ""MXN""}",6992.74,Gold,1 +2236,Tracy Allen,shariglass@walsh-thomas.com,2021-11-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3759.61,Bronze,0 +2237,Shannon Trujillo,allenerica@norris.com,2024-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",177.3,Bronze,1 +2238,Walter Mitchell,henryspencer@manning-white.org,2020-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",830.35,Bronze,1 +2239,Amber Rodriguez,jameseaton@gmail.com,2020-10-20,"{""language"": ""FR"", ""currency"": ""USD""}",2930.52,Bronze,0 +2240,Darren Bishop,johnsonmelanie@hotmail.com,2020-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",5879.29,Silver,1 +2241,Patrick Thomas,evan91@gmail.com,2020-03-14,"{""language"": ""IT"", ""currency"": ""MXN""}",799.73,Bronze,1 +2242,Christopher Watson,michelle39@wright.com,2023-08-04,"{""language"": ""IT"", ""currency"": ""USD""}",3919.86,Silver,0 +2243,Angela Smith MD,clayton82@yahoo.com,2021-02-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1282.16,Bronze,0 +2244,Tara Kim,torresrachel@gmail.com,2023-06-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6510.53,Bronze,0 +2245,Elizabeth Hughes,anthonyli@hunt.com,2024-01-20,"{""language"": ""IT"", ""currency"": ""MXN""}",1467.21,Gold,1 +2246,Hannah Ray,chelsea79@yahoo.com,2021-04-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2514.07,Gold,1 +2247,Brandon Greer,alexnelson@henry.org,2021-02-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5820.58,Gold,0 +2248,Stacey Scott,david56@yahoo.com,2024-08-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2272.59,Silver,0 +2249,Jessica Dawson,nicole09@hotmail.com,2022-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",5804.04,Silver,1 +2250,Benjamin Webb,jamie72@williams.com,2024-11-10,"{""language"": ""ES"", ""currency"": ""EUR""}",9850.07,Silver,0 +2251,Shelly Eaton,donald00@gmail.com,2023-04-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8142.97,Gold,0 +2252,Laura Hansen,anthonyberry@yahoo.com,2023-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",9402.64,Silver,0 +2253,Joshua Russell,qalvarez@kirk.com,2021-07-06,"{""language"": ""EN"", ""currency"": ""USD""}",6179.47,Gold,0 +2254,Eugene Ochoa II,trivas@mcintosh.com,2022-12-21,"{""language"": ""EN"", ""currency"": ""MXN""}",993.78,Gold,0 +2255,Erin Morales,gbrown@yahoo.com,2024-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",4360.79,Bronze,1 +2256,Catherine Mosley,nathan11@rasmussen-taylor.biz,2020-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",7602.87,Silver,0 +2257,Justin Gomez,jason23@gmail.com,2021-05-07,"{""language"": ""IT"", ""currency"": ""USD""}",9416.08,Silver,1 +2258,Julie Daniels,jeanette95@russell-leach.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",8192.47,Bronze,0 +2259,Aaron Black,gregory93@yahoo.com,2022-12-14,"{""language"": ""FR"", ""currency"": ""CAD""}",1276.84,Silver,0 +2260,Lisa Craig,ayalarichard@dickerson.net,2024-08-26,"{""language"": ""IT"", ""currency"": ""MXN""}",7043.86,Bronze,0 +2261,Angela Newton,bankseric@yahoo.com,2021-03-26,"{""language"": ""IT"", ""currency"": ""EUR""}",8630.06,Silver,0 +2262,Angela Mcfarland,charles03@edwards.com,2021-01-02,"{""language"": ""DE"", ""currency"": ""USD""}",9790.96,Gold,0 +2263,Erin Rodriguez,mbaker@hull-rowe.org,2024-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7772.86,Silver,1 +2264,Adrian Greer,amberbutler@wu-salazar.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""CAD""}",6103.79,Silver,0 +2265,Amanda Ramirez,cjones@garza-nguyen.biz,2020-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",5965.29,Silver,1 +2266,Mrs. Valerie Phillips DVM,michaelsanchez@gmail.com,2020-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",3635.24,Gold,1 +2267,Elizabeth Brooks,susan31@stewart.com,2023-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",4418.7,Gold,1 +2268,Pam Walker,michaelrussell@gmail.com,2023-12-19,"{""language"": ""DE"", ""currency"": ""USD""}",8610.21,Silver,0 +2269,Travis Wiley,ydelgado@hotmail.com,2023-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9771.92,Silver,0 +2270,Karen Miller,robertsweeney@cameron.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""USD""}",4706.5,Gold,0 +2271,Courtney Osborne MD,eshaffer@gmail.com,2022-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",1413.01,Gold,0 +2272,Christian Dickerson,moranicholas@evans-jones.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""GBP""}",2259.08,Gold,0 +2273,Benjamin Soto,jessica02@moreno.com,2022-02-13,"{""language"": ""FR"", ""currency"": ""EUR""}",4832.52,Silver,1 +2274,Kayla May,adam96@yahoo.com,2023-08-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5858.92,Bronze,0 +2275,Jessica Diaz,william38@hotmail.com,2023-06-01,"{""language"": ""EN"", ""currency"": ""GBP""}",6080.72,Gold,1 +2276,Stephanie Adams,marybush@bowman-watson.com,2021-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",1324.52,Bronze,1 +2277,Audrey Hammond,davisandrea@flores.com,2020-09-08,"{""language"": ""EN"", ""currency"": ""CAD""}",553.24,Bronze,1 +2278,Mary Crawford,martinstephanie@hotmail.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5976.65,Gold,0 +2279,Andrew Lane,ysmith@wright.org,2024-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7148.61,Silver,1 +2280,Dr. Joshua Calderon,julie65@bryant.com,2021-10-25,"{""language"": ""ES"", ""currency"": ""GBP""}",8277.76,Silver,0 +2281,John Reeves,bowersveronica@king-cain.info,2024-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",3822.66,Gold,1 +2282,Ricardo Moore,christophermccarty@parker.info,2023-04-30,"{""language"": ""ES"", ""currency"": ""EUR""}",8063.54,Bronze,0 +2283,Donald Baird,dustin70@gmail.com,2022-04-22,"{""language"": ""FR"", ""currency"": ""EUR""}",8884.78,Bronze,1 +2284,Cynthia Mitchell,susan81@yahoo.com,2023-06-15,"{""language"": ""DE"", ""currency"": ""MXN""}",9622.4,Silver,0 +2285,Rodney King,mathewsmatthew@knapp.biz,2024-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",9869.35,Silver,0 +2286,Kimberly Ruiz,rosejanice@ortega.com,2022-05-03,"{""language"": ""IT"", ""currency"": ""CAD""}",1409.86,Gold,0 +2287,Michelle Ford,fstewart@hawkins.info,2022-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",6284.82,Bronze,1 +2288,Lisa Todd,pwalters@hotmail.com,2023-04-02,"{""language"": ""FR"", ""currency"": ""GBP""}",1972.51,Silver,0 +2289,Robert Mueller,josephmaldonado@bowman.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3693.02,Silver,0 +2290,Joseph Baker,cbowman@gmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8842.34,Silver,1 +2291,Amber Nelson,williamking@gmail.com,2020-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",604.76,Gold,0 +2292,Robert Hebert,deborahcastillo@thompson.org,2020-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",1660.27,Bronze,0 +2293,James Young,bnielsen@perez.org,2023-06-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5520.05,Gold,1 +2294,Paul Castillo,dthompson@cherry.com,2024-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",865.59,Bronze,1 +2295,Donna Taylor,paynerobert@jacobs.info,2020-01-07,"{""language"": ""DE"", ""currency"": ""USD""}",3879.63,Gold,1 +2296,Joshua Williams,charles63@white.com,2024-07-16,"{""language"": ""FR"", ""currency"": ""USD""}",5149.71,Gold,0 +2297,Calvin Rodriguez,lindsay89@hart.com,2022-09-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4509.45,Bronze,0 +2298,Jordan Powell,diazjamie@gmail.com,2020-05-26,"{""language"": ""FR"", ""currency"": ""GBP""}",755.08,Bronze,0 +2299,Greg Martinez,vmiller@walls.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2712.55,Silver,0 +2300,Michael Pittman,djohnson@hotmail.com,2021-09-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7990.2,Silver,1 +2301,Monica Murray,johnnytaylor@hotmail.com,2023-05-24,"{""language"": ""ES"", ""currency"": ""GBP""}",7216.44,Silver,0 +2302,Elizabeth Luna,heather69@fritz.info,2021-12-28,"{""language"": ""EN"", ""currency"": ""GBP""}",5293.9,Gold,0 +2303,Randy Allen,peterselizabeth@lewis.com,2021-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",3259.21,Bronze,1 +2304,Charles Mendoza,michaelcarter@hotmail.com,2024-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",8782.77,Bronze,1 +2305,Kathleen Sanders,deannapatrick@hill.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",3391.03,Gold,1 +2306,David Morgan,skim@williams-garcia.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""GBP""}",8564.52,Gold,0 +2307,Jessica Thomas,bushwendy@klein-harris.net,2023-11-23,"{""language"": ""EN"", ""currency"": ""MXN""}",4482.66,Silver,0 +2308,Stacy Gardner,gcarlson@gmail.com,2021-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9745.87,Gold,1 +2309,Robert Jacobson,hilldeanna@hernandez-cummings.info,2023-05-29,"{""language"": ""FR"", ""currency"": ""USD""}",3543.63,Silver,1 +2310,Tanya Yang,connerdominique@henry-contreras.biz,2024-09-29,"{""language"": ""ES"", ""currency"": ""USD""}",4915.94,Bronze,0 +2311,Ian Lawson,ohoffman@mcdonald-smith.com,2020-02-18,"{""language"": ""ES"", ""currency"": ""EUR""}",7868.1,Bronze,1 +2312,Kaitlyn Lara,courtneysmith@gmail.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",5157.2,Gold,0 +2313,Lauren Craig,grose@blackburn-king.com,2021-01-10,"{""language"": ""IT"", ""currency"": ""MXN""}",2213.09,Silver,1 +2314,Jonathan Olson,adamslaurie@hotmail.com,2024-11-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3254.89,Silver,1 +2315,Kristina Watkins,teresamason@yahoo.com,2023-03-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4546.77,Gold,0 +2316,Christopher Richardson,farrellgarrett@gmail.com,2020-09-23,"{""language"": ""FR"", ""currency"": ""GBP""}",415.5,Gold,1 +2317,Cole Mcfarland,adam36@gonzalez.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6273.68,Gold,0 +2318,Brandon Macias,jasonyoung@yahoo.com,2020-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",7465.14,Gold,0 +2319,Michael Mann,taylorwilliam@baird.com,2020-07-29,"{""language"": ""FR"", ""currency"": ""MXN""}",2600.94,Gold,0 +2320,Gabrielle Bell,jrobbins@ramirez.com,2020-02-29,"{""language"": ""FR"", ""currency"": ""CAD""}",4832.33,Bronze,1 +2321,David Ruiz,vchen@brown.com,2020-07-16,"{""language"": ""EN"", ""currency"": ""GBP""}",6183.27,Bronze,1 +2322,Justin Mason,lisamckinney@hotmail.com,2020-04-09,"{""language"": ""DE"", ""currency"": ""USD""}",4529.46,Gold,0 +2323,Donald Knox,ocruz@hall.com,2021-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",1413.1,Silver,1 +2324,Jorge Tucker,robertvaldez@yahoo.com,2021-03-02,"{""language"": ""IT"", ""currency"": ""GBP""}",8039.09,Bronze,1 +2325,Julie Clay,scalderon@berger-roman.com,2022-09-25,"{""language"": ""ES"", ""currency"": ""GBP""}",5604.34,Bronze,1 +2326,James Lee,russocharles@hotmail.com,2020-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",625.7,Gold,0 +2327,Mario Lynn,jcoffey@gmail.com,2021-04-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8097.1,Silver,1 +2328,Cesar Burns,jason83@hamilton.net,2022-11-08,"{""language"": ""EN"", ""currency"": ""USD""}",1517.22,Gold,0 +2329,Jason Gardner,fdiaz@gmail.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""CAD""}",9758.21,Gold,1 +2330,Vincent Estrada,vmejia@hotmail.com,2023-03-30,"{""language"": ""ES"", ""currency"": ""EUR""}",6887.88,Bronze,1 +2331,Abigail Reeves,talexander@diaz.net,2024-06-04,"{""language"": ""IT"", ""currency"": ""CAD""}",3743.61,Gold,1 +2332,Matthew Smith,belljeffrey@hotmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7236.17,Gold,0 +2333,Holly Herrera,sjohnson@maddox.org,2022-02-05,"{""language"": ""DE"", ""currency"": ""MXN""}",3032.04,Gold,1 +2334,Frank Johnson,jessica68@friedman.org,2022-03-19,"{""language"": ""IT"", ""currency"": ""CAD""}",733.92,Silver,1 +2335,Adam Hogan,novakjill@hurst-gonzales.com,2021-12-25,"{""language"": ""EN"", ""currency"": ""USD""}",7024.74,Bronze,1 +2336,Tiffany Davis,danaroman@hotmail.com,2022-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9039.28,Silver,1 +2337,Sue Thomas,jeffery53@montoya-johnson.com,2020-05-29,"{""language"": ""DE"", ""currency"": ""GBP""}",9374.99,Silver,1 +2338,Teresa Martin,harrisdonald@mitchell-torres.com,2024-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3193.59,Silver,0 +2339,Cheryl Romero,cperry@hotmail.com,2020-09-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5641.79,Gold,0 +2340,Sara Smith,valdezwilliam@gmail.com,2023-12-20,"{""language"": ""IT"", ""currency"": ""USD""}",9191.11,Silver,0 +2341,Larry Mullins,rachel54@gmail.com,2022-12-30,"{""language"": ""EN"", ""currency"": ""USD""}",2301.84,Silver,1 +2342,Allison Morrow,gkline@mason.com,2021-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",4005.65,Silver,0 +2343,Scott Ortiz,christopher63@gmail.com,2022-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",7479.46,Bronze,1 +2344,Jennifer Montgomery,fmckinney@hotmail.com,2021-01-21,"{""language"": ""FR"", ""currency"": ""EUR""}",323.17,Bronze,1 +2345,Vincent Drake,bridget13@yahoo.com,2024-05-19,"{""language"": ""IT"", ""currency"": ""CAD""}",8450.78,Bronze,1 +2346,Stephanie Liu,klinemichael@yahoo.com,2020-11-19,"{""language"": ""IT"", ""currency"": ""CAD""}",6688.15,Bronze,0 +2347,Vanessa Hansen,yrosales@williams.biz,2021-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",235.37,Bronze,0 +2348,Jimmy Dougherty,carl65@yahoo.com,2022-09-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4677.24,Silver,1 +2349,Alexander Gray,matthewanderson@yahoo.com,2022-01-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9206.18,Gold,1 +2350,Jeremy Salazar,nhuynh@yahoo.com,2020-06-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9434.87,Silver,0 +2351,Kent Santiago,dwade@yahoo.com,2021-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",778.3,Silver,1 +2352,Emily Henry,melissa57@robinson.net,2022-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",7748.29,Gold,0 +2353,Briana Edwards,vargaschristian@hotmail.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",9461.2,Silver,1 +2354,Renee Rodriguez,lcollins@gmail.com,2020-11-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4494.84,Gold,0 +2355,Steven Serrano,james44@gmail.com,2023-07-01,"{""language"": ""IT"", ""currency"": ""USD""}",9857.59,Bronze,0 +2356,Melissa Bender,katelynhines@yahoo.com,2021-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",4859.45,Silver,0 +2357,Kimberly Foley,robertwerner@yahoo.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9746.58,Gold,1 +2358,Kyle Hicks,aallen@yahoo.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1801.6,Gold,0 +2359,Calvin Sheppard,jonathan01@yahoo.com,2020-11-23,"{""language"": ""EN"", ""currency"": ""GBP""}",2946.97,Silver,1 +2360,Michael Gay,samuelblack@cooper.info,2023-12-21,"{""language"": ""EN"", ""currency"": ""USD""}",9991.92,Bronze,0 +2361,Shaun West,frank00@chavez.com,2022-08-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4329.56,Silver,1 +2362,Clifford Heath,matthewhoward@lopez-dennis.com,2021-06-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6840.02,Silver,0 +2363,Gregory Martinez,jacquelinelynch@hotmail.com,2021-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",4712.91,Bronze,1 +2364,Veronica Mckay,ohall@hotmail.com,2022-01-28,"{""language"": ""ES"", ""currency"": ""USD""}",9971.02,Gold,1 +2365,Jason Frederick,crystal47@harris.net,2022-07-09,"{""language"": ""DE"", ""currency"": ""USD""}",4755.65,Silver,1 +2366,Stephen Lee,jennifer75@anderson-alvarado.com,2022-01-15,"{""language"": ""IT"", ""currency"": ""GBP""}",311.35,Silver,0 +2367,Erin Foley,joshuabrown@gmail.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""EUR""}",1308.38,Gold,0 +2368,Amy Robbins,smithvictoria@leblanc.com,2021-10-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2779.79,Silver,1 +2369,Molly Ramirez,asmith@thomas-brooks.com,2020-12-06,"{""language"": ""DE"", ""currency"": ""MXN""}",4737.3,Silver,1 +2370,Nicole White,montoyaalyssa@stark.net,2022-01-25,"{""language"": ""FR"", ""currency"": ""USD""}",9060.51,Gold,0 +2371,Kimberly Stein,mark72@valenzuela.net,2021-05-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9071.78,Bronze,1 +2372,Joshua Martinez,nmartinez@christensen.org,2023-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",7765.18,Gold,0 +2373,Barbara Callahan,tnoble@bonilla.net,2020-12-11,"{""language"": ""EN"", ""currency"": ""EUR""}",4857.21,Silver,1 +2374,Olivia Long,ishelton@miller.com,2020-11-28,"{""language"": ""ES"", ""currency"": ""GBP""}",1459.04,Bronze,0 +2375,George Mayer,greenbeverly@francis.net,2023-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",3015.39,Bronze,0 +2376,Jessica Taylor,morgankimberly@branch.org,2021-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1645.17,Silver,1 +2377,Christine Bowen,briannaball@hotmail.com,2023-12-25,"{""language"": ""IT"", ""currency"": ""CAD""}",7555.49,Bronze,1 +2378,Aaron Barrett,eric30@allen.com,2024-09-28,"{""language"": ""EN"", ""currency"": ""CAD""}",1908.71,Silver,1 +2379,Daniel Bright,gbell@hotmail.com,2020-04-25,"{""language"": ""IT"", ""currency"": ""EUR""}",896.9,Bronze,0 +2380,Travis Herring,ortizrachel@figueroa.biz,2021-12-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9769.68,Silver,1 +2381,Jordan Ashley,hayeselizabeth@costa.biz,2021-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2348.5,Gold,0 +2382,Nicholas Hall,smithmichael@yahoo.com,2023-09-28,"{""language"": ""EN"", ""currency"": ""USD""}",2725.0,Bronze,0 +2383,Emily Palmer,michael27@hotmail.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",7378.95,Gold,0 +2384,Rebecca Sims,cunninghambarbara@stanley.com,2023-11-20,"{""language"": ""ES"", ""currency"": ""MXN""}",8873.34,Gold,1 +2385,Brenda Fields,caitlin73@wheeler.com,2024-10-30,"{""language"": ""DE"", ""currency"": ""EUR""}",3214.97,Gold,0 +2386,Raymond Davis,adrienne63@yahoo.com,2024-02-04,"{""language"": ""DE"", ""currency"": ""EUR""}",372.0,Silver,1 +2387,William Tate,knappjared@gmail.com,2024-01-02,"{""language"": ""IT"", ""currency"": ""CAD""}",7835.38,Gold,1 +2388,Eric Lewis,daniel82@harper.com,2021-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",3248.14,Silver,1 +2389,Alisha Wilson,vargasjames@brown.com,2022-06-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4856.46,Silver,1 +2390,Amy Stanley,lee56@harris.com,2020-12-15,"{""language"": ""IT"", ""currency"": ""EUR""}",8958.85,Bronze,1 +2391,Lindsay Rogers,jamieleon@mata.info,2021-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5413.19,Bronze,0 +2392,Jake Duarte,amy11@yahoo.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""EUR""}",2462.43,Gold,0 +2393,Gilbert Farley,xneal@young-parker.com,2023-11-09,"{""language"": ""DE"", ""currency"": ""EUR""}",7825.91,Gold,0 +2394,Amanda Moore,melissamyers@yahoo.com,2021-02-10,"{""language"": ""ES"", ""currency"": ""USD""}",9423.9,Bronze,0 +2395,Jamie Robertson,jacob01@hughes.org,2020-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",8438.87,Bronze,0 +2396,Mr. Kevin Leach MD,michele16@campbell-anderson.biz,2021-03-22,"{""language"": ""IT"", ""currency"": ""USD""}",6865.09,Bronze,1 +2397,Stacey Daniels,hortonnatalie@osborne.com,2024-08-07,"{""language"": ""DE"", ""currency"": ""USD""}",4174.68,Bronze,0 +2398,Andrew Gonzalez,andersenvirginia@yahoo.com,2020-05-24,"{""language"": ""FR"", ""currency"": ""EUR""}",7615.73,Bronze,0 +2399,Jeremiah Hart,johnny50@rubio.org,2022-04-25,"{""language"": ""EN"", ""currency"": ""EUR""}",6763.16,Silver,1 +2400,Erika Kane,paulwilliams@hill-wilson.com,2021-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",6678.26,Bronze,0 +2401,Douglas Glass,elliottbrittany@gmail.com,2021-05-29,"{""language"": ""EN"", ""currency"": ""GBP""}",1572.71,Gold,1 +2402,Chase Schultz,rodriguezjeffery@hotmail.com,2023-02-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7706.69,Gold,1 +2403,Stacie Howard,tinadavid@gmail.com,2024-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",845.5,Gold,1 +2404,Mrs. Debra Everett,rwatson@hotmail.com,2023-04-03,"{""language"": ""DE"", ""currency"": ""GBP""}",758.98,Bronze,1 +2405,Eric Jennings,shannonzhang@yahoo.com,2024-01-07,"{""language"": ""DE"", ""currency"": ""EUR""}",251.72,Gold,0 +2406,Alexandria Ball,mklein@lucas.info,2023-11-17,"{""language"": ""DE"", ""currency"": ""EUR""}",9466.05,Silver,0 +2407,Tracy Fry,ematthews@thomas.org,2020-04-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8750.73,Gold,0 +2408,Sherry Parks,darrell26@yahoo.com,2021-03-15,"{""language"": ""FR"", ""currency"": ""MXN""}",3415.09,Silver,1 +2409,Michelle Herrera,jeffersonbrenda@gmail.com,2021-02-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5936.29,Silver,0 +2410,Dawn Mullins,myersjessica@hotmail.com,2021-07-06,"{""language"": ""IT"", ""currency"": ""GBP""}",5332.12,Bronze,1 +2411,Robin Thompson,corymcdonald@hotmail.com,2023-09-08,"{""language"": ""EN"", ""currency"": ""CAD""}",2758.12,Bronze,1 +2412,Nicole Fischer,lauramendoza@alvarez.com,2024-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",6379.09,Gold,1 +2413,Bryan Franklin,brian86@hotmail.com,2024-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",1015.07,Gold,1 +2414,Kevin Smith,tylerallison@yahoo.com,2020-10-25,"{""language"": ""DE"", ""currency"": ""MXN""}",6345.98,Silver,0 +2415,Katelyn Roberts,hernandezangel@hotmail.com,2021-07-31,"{""language"": ""DE"", ""currency"": ""CAD""}",6477.88,Bronze,1 +2416,Christian Fuentes,trevorcoffey@green.com,2020-05-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6361.85,Bronze,1 +2417,Darren Thomas,shane38@hotmail.com,2021-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",7855.85,Gold,1 +2418,Karen Ortiz,vwalker@gmail.com,2024-04-05,"{""language"": ""EN"", ""currency"": ""GBP""}",7799.97,Bronze,1 +2419,Jerry Rodriguez,wrightjessica@strickland-barnett.com,2024-06-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9433.76,Silver,1 +2420,Melissa Forbes,ramirezmadeline@yahoo.com,2020-07-30,"{""language"": ""EN"", ""currency"": ""CAD""}",776.04,Silver,0 +2421,Lisa Howe,greenkenneth@gomez.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7428.75,Bronze,0 +2422,Jose Guerrero,smartinez@hotmail.com,2020-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9432.43,Bronze,0 +2423,Matthew Riley,angela36@hotmail.com,2023-05-02,"{""language"": ""ES"", ""currency"": ""USD""}",2544.48,Gold,0 +2424,Jonathan Salas,rodgersshane@brock-perkins.info,2020-06-24,"{""language"": ""DE"", ""currency"": ""EUR""}",8118.78,Silver,1 +2425,Brent Chavez,lawrencegarcia@turner-brown.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",5633.42,Gold,1 +2426,Nicholas Cowan,jonesjames@sanders.org,2024-11-17,"{""language"": ""FR"", ""currency"": ""CAD""}",1762.65,Silver,1 +2427,David Lucas,atkinsonjacob@hotmail.com,2021-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",1492.71,Gold,1 +2428,April Johnson,garciasteven@gmail.com,2022-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4881.5,Bronze,0 +2429,Antonio Martin,ejohnson@brennan.com,2022-07-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3726.43,Silver,0 +2430,Tracey Yu,sharon85@patel.com,2021-01-22,"{""language"": ""ES"", ""currency"": ""MXN""}",1022.68,Bronze,0 +2431,Anne Solis,bhernandez@walker.com,2022-03-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8624.44,Gold,0 +2432,Robert Hudson,christopher89@yahoo.com,2024-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",9832.13,Gold,0 +2433,Alex Moore,mlester@hotmail.com,2022-10-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4231.52,Silver,1 +2434,Alexandra Cook,bradleygarcia@wong.info,2024-03-05,"{""language"": ""ES"", ""currency"": ""CAD""}",2918.98,Gold,0 +2435,Michael George,catherine41@freeman.com,2021-11-04,"{""language"": ""FR"", ""currency"": ""GBP""}",7313.65,Gold,0 +2436,Joshua Collins,brookemiller@russell.info,2021-07-17,"{""language"": ""DE"", ""currency"": ""EUR""}",3962.71,Gold,0 +2437,Christopher Bradford,joseph04@hotmail.com,2021-10-22,"{""language"": ""DE"", ""currency"": ""CAD""}",5936.39,Gold,1 +2438,Amy Chandler,velasquezisabella@yahoo.com,2023-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",9757.55,Bronze,1 +2439,Albert Wilkerson,zachary91@hotmail.com,2022-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",1846.67,Gold,1 +2440,Timothy Brown,corey06@anderson-rogers.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4558.98,Silver,0 +2441,Isaac Torres,amartinez@hotmail.com,2022-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",3388.77,Gold,1 +2442,Gabrielle Strickland,tiffany69@osborne-lewis.com,2024-03-19,"{""language"": ""FR"", ""currency"": ""USD""}",2777.49,Silver,0 +2443,Connie Owens,dennisdavid@moore-sloan.org,2020-05-13,"{""language"": ""EN"", ""currency"": ""EUR""}",6133.82,Bronze,1 +2444,Brian Wright,rebeccahenry@hotmail.com,2021-09-20,"{""language"": ""ES"", ""currency"": ""USD""}",3303.52,Silver,1 +2445,Paige Richardson,vbeard@matthews.com,2022-08-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7649.94,Bronze,0 +2446,Robert Douglas,hernandezcraig@shaw.biz,2021-03-25,"{""language"": ""DE"", ""currency"": ""CAD""}",6949.01,Gold,0 +2447,Felicia Jefferson,nelsonkaren@hotmail.com,2021-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9964.13,Bronze,1 +2448,Robert Murphy,barberjoseph@freeman.biz,2022-12-05,"{""language"": ""ES"", ""currency"": ""EUR""}",5403.72,Bronze,1 +2449,Mike Eaton,waterschristina@salazar-frazier.biz,2024-06-19,"{""language"": ""EN"", ""currency"": ""CAD""}",2704.22,Gold,1 +2450,Maxwell Robinson,robertroth@gmail.com,2021-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8481.12,Silver,1 +2451,Bradley Ross,jeromenguyen@knight-green.com,2019-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",4482.8,Gold,0 +2452,Andrew Kennedy,holtanne@gmail.com,2021-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",4571.42,Bronze,1 +2453,Jaime Harris,davidstein@yahoo.com,2020-08-17,"{""language"": ""IT"", ""currency"": ""CAD""}",7289.79,Silver,1 +2454,Christine Joseph,vazquezapril@hotmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",4965.39,Gold,0 +2455,Bobby Brandt,veronica23@gmail.com,2021-08-03,"{""language"": ""DE"", ""currency"": ""MXN""}",2891.36,Bronze,0 +2456,Richard Jacobs,franklindiane@stewart-clark.net,2021-11-27,"{""language"": ""EN"", ""currency"": ""EUR""}",3014.24,Bronze,0 +2457,Jessica Rice,xhenderson@gmail.com,2020-07-10,"{""language"": ""ES"", ""currency"": ""GBP""}",8491.51,Gold,0 +2458,Claudia Washington,kimberly27@gmail.com,2022-03-25,"{""language"": ""IT"", ""currency"": ""MXN""}",6389.02,Silver,1 +2459,Christopher Nolan,larsenlinda@nguyen.org,2023-09-26,"{""language"": ""ES"", ""currency"": ""MXN""}",3412.74,Gold,1 +2460,Jason Lewis,gonzalezjennifer@gmail.com,2022-10-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1030.43,Gold,1 +2461,Lorraine Smith,dominiquejones@gmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4427.48,Gold,0 +2462,Alicia Garrett,emily35@gmail.com,2023-07-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4992.58,Gold,0 +2463,Gilbert Murphy,taylorantonio@hotmail.com,2020-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",203.7,Silver,1 +2464,Janet Massey,greenejamie@black-lynch.com,2021-11-16,"{""language"": ""ES"", ""currency"": ""EUR""}",1824.55,Bronze,0 +2465,Dillon Quinn,william85@tucker.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""CAD""}",7836.91,Bronze,1 +2466,Stacey Welch,zachary28@hotmail.com,2023-05-18,"{""language"": ""FR"", ""currency"": ""USD""}",2197.43,Gold,1 +2467,Ronald Gonzalez,clarknatasha@wade.com,2023-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",9218.15,Silver,0 +2468,Amanda Young,johnsonbradley@moore.com,2023-04-20,"{""language"": ""EN"", ""currency"": ""MXN""}",8020.41,Bronze,0 +2469,Zachary Elliott,huberamy@hotmail.com,2021-04-17,"{""language"": ""ES"", ""currency"": ""USD""}",8436.87,Bronze,1 +2470,Leslie Lopez,fperez@yahoo.com,2021-03-25,"{""language"": ""FR"", ""currency"": ""EUR""}",8491.12,Silver,0 +2471,Carla Smith,jamesturner@mathis.com,2021-10-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7230.71,Bronze,1 +2472,Frank Ward,kelly41@hotmail.com,2021-02-07,"{""language"": ""IT"", ""currency"": ""CAD""}",8643.12,Gold,0 +2473,Megan Reese,joseph11@martinez-mendoza.biz,2020-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6344.89,Silver,1 +2474,Peggy Golden,elynn@mckinney.com,2023-04-21,"{""language"": ""ES"", ""currency"": ""MXN""}",897.26,Silver,0 +2475,Carlos Moss,willie48@lee-knight.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2128.02,Gold,0 +2476,Erika Kidd,bdawson@gmail.com,2020-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",6917.39,Silver,1 +2477,Melissa Cordova,tlara@carr-lowe.com,2024-09-20,"{""language"": ""FR"", ""currency"": ""GBP""}",7713.25,Silver,1 +2478,Tyler Cruz,sherrybrown@nunez-robertson.net,2024-04-11,"{""language"": ""FR"", ""currency"": ""USD""}",6483.74,Bronze,1 +2479,Suzanne Thomas,taylorjessica@becker-mcfarland.net,2024-08-02,"{""language"": ""ES"", ""currency"": ""CAD""}",6802.95,Silver,0 +2480,Holly Reyes,xhurley@yahoo.com,2022-06-04,"{""language"": ""ES"", ""currency"": ""CAD""}",7750.2,Silver,1 +2481,Christy Underwood,walterhelen@vaughn-smith.com,2020-04-28,"{""language"": ""IT"", ""currency"": ""EUR""}",4636.32,Gold,1 +2482,Mary Chen,dedwards@bond.net,2020-03-20,"{""language"": ""FR"", ""currency"": ""USD""}",5004.33,Bronze,1 +2483,James Lester,fsawyer@yahoo.com,2023-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",471.83,Silver,1 +2484,Bradley Alexander,courtneyperkins@carey-tucker.com,2022-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",5505.01,Silver,0 +2485,Sabrina Fox,alexis23@gmail.com,2022-04-04,"{""language"": ""EN"", ""currency"": ""EUR""}",428.1,Silver,0 +2486,Janet Peterson,cheryl45@cruz-green.net,2024-11-18,"{""language"": ""ES"", ""currency"": ""CAD""}",7659.32,Gold,1 +2487,Michael Farmer,tcombs@gmail.com,2022-07-21,"{""language"": ""DE"", ""currency"": ""EUR""}",7771.39,Bronze,1 +2488,Tracy Barrett,michaelramirez@sanders.com,2023-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",5530.7,Bronze,0 +2489,Jonathan Jenkins,benjamin03@johnston.info,2020-12-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8527.51,Silver,1 +2490,Kelly Hall,johnsonelizabeth@gmail.com,2020-06-06,"{""language"": ""IT"", ""currency"": ""USD""}",2195.18,Silver,1 +2491,Alice Hickman,lisa87@hotmail.com,2023-02-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2386.27,Bronze,0 +2492,Collin Allen,kristinaward@gmail.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3230.9,Gold,1 +2493,Erin Espinoza,matthewsangela@hotmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5246.89,Silver,0 +2494,Marco Cruz,zacharyyoung@hotmail.com,2021-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",6727.67,Silver,0 +2495,Theresa Fletcher,hcampos@hotmail.com,2019-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4402.6,Silver,0 +2496,Veronica Wolfe,gonzalezdanny@hotmail.com,2024-07-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3007.3,Silver,1 +2497,Tracy Brown,osbornemelanie@johnson-flores.com,2023-10-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4780.53,Gold,0 +2498,Nancy Steele,hawkinselizabeth@james.com,2024-05-08,"{""language"": ""EN"", ""currency"": ""USD""}",3262.84,Bronze,0 +2499,Emily White,browningkimberly@gmail.com,2023-02-05,"{""language"": ""ES"", ""currency"": ""EUR""}",3852.09,Bronze,0 +2500,Edward Davenport,cguzman@murphy.com,2021-09-23,"{""language"": ""IT"", ""currency"": ""USD""}",4095.78,Bronze,0 +2501,Michael Maldonado,olivia92@yahoo.com,2024-06-10,"{""language"": ""FR"", ""currency"": ""USD""}",3551.82,Gold,0 +2502,Aaron Harper,davisamanda@gonzalez.com,2021-01-01,"{""language"": ""EN"", ""currency"": ""USD""}",7428.32,Bronze,1 +2503,Thomas Conner,vmorris@yahoo.com,2023-04-28,"{""language"": ""DE"", ""currency"": ""CAD""}",6739.12,Silver,0 +2504,Dana Rasmussen,mary48@rogers.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""USD""}",4564.75,Silver,1 +2505,Crystal Pittman,heatherbutler@duran.com,2023-07-11,"{""language"": ""ES"", ""currency"": ""USD""}",5239.47,Bronze,1 +2506,John Contreras,allenadam@yahoo.com,2023-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",772.65,Gold,0 +2507,Michael Young,tbrown@pena.com,2024-09-15,"{""language"": ""DE"", ""currency"": ""MXN""}",7536.78,Gold,0 +2508,Latoya Stokes,annehubbard@gmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""EUR""}",4284.32,Gold,1 +2509,Maria Norris,nicholashunter@freeman.org,2020-05-01,"{""language"": ""EN"", ""currency"": ""USD""}",2120.53,Gold,1 +2510,Brandon Perez,fjohnson@collins.com,2023-12-27,"{""language"": ""ES"", ""currency"": ""GBP""}",5606.2,Silver,1 +2511,Sara Martinez,dustin71@gmail.com,2021-10-07,"{""language"": ""ES"", ""currency"": ""GBP""}",7224.41,Bronze,1 +2512,Debra Parks,awolf@hotmail.com,2022-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",8882.2,Bronze,0 +2513,Eric Young,alexandria76@hotmail.com,2021-10-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8309.58,Silver,1 +2514,Theresa Gilbert,david24@montgomery-munoz.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",768.51,Bronze,1 +2515,Terry Haney,jennifer30@hotmail.com,2024-10-02,"{""language"": ""ES"", ""currency"": ""CAD""}",3906.07,Silver,0 +2516,Paige Reed,grahamrichard@reed.info,2023-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",1379.63,Gold,1 +2517,Beverly Tran,owenjaime@yahoo.com,2024-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",920.77,Gold,1 +2518,Lawrence Thomas,brandon64@caldwell.org,2021-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",8597.06,Bronze,1 +2519,Crystal Smith,laurie10@hotmail.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""GBP""}",360.09,Gold,1 +2520,Jamie Baker,ocortez@hotmail.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",1954.92,Bronze,0 +2521,Alexandra Jones,tjackson@rivas.com,2020-07-06,"{""language"": ""DE"", ""currency"": ""EUR""}",8195.45,Silver,1 +2522,Mark Montgomery Jr.,lisa70@noble.net,2021-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",744.44,Bronze,1 +2523,Catherine Martin,jeffreypowers@pineda-figueroa.com,2023-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8247.59,Silver,0 +2524,Wendy Huerta,ehill@alvarez-guerrero.info,2023-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",351.54,Bronze,0 +2525,Rachel Gomez,cjackson@hotmail.com,2020-01-28,"{""language"": ""IT"", ""currency"": ""EUR""}",7577.67,Gold,0 +2526,Angela Steele,rosetiffany@hotmail.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""CAD""}",2800.25,Silver,0 +2527,Jennifer Evans,emilyturner@brown-stanley.com,2024-06-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6758.04,Gold,1 +2528,Joseph Davis,kirstencarr@yahoo.com,2023-06-13,"{""language"": ""FR"", ""currency"": ""USD""}",5717.97,Silver,1 +2529,Adam Hughes,anthonyking@yahoo.com,2022-04-28,"{""language"": ""IT"", ""currency"": ""MXN""}",1461.95,Silver,0 +2530,Sarah Christensen,allentheresa@flores.com,2022-10-16,"{""language"": ""IT"", ""currency"": ""GBP""}",5093.85,Bronze,0 +2531,Amanda Carpenter,kathrynalvarado@yahoo.com,2024-01-19,"{""language"": ""FR"", ""currency"": ""USD""}",1085.88,Bronze,1 +2532,Samuel Flores,anthony50@barrett-smith.info,2021-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",1422.82,Bronze,1 +2533,Kim Rodriguez,rebeccamclaughlin@gmail.com,2021-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",9008.03,Gold,0 +2534,Isaiah Skinner,kevin36@hotmail.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5145.09,Silver,0 +2535,Nathan Rivera,xdavis@peters-watkins.biz,2021-12-15,"{""language"": ""DE"", ""currency"": ""GBP""}",2025.29,Bronze,1 +2536,Diane Reyes,hernandezheather@jones-tran.info,2020-02-06,"{""language"": ""ES"", ""currency"": ""USD""}",5077.06,Gold,0 +2537,Pamela Tate,eowens@green-wright.net,2023-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",4634.44,Gold,0 +2538,Sierra Brown,debbie05@hotmail.com,2020-11-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1452.67,Silver,0 +2539,Jason Curry,ryan14@valdez.net,2020-05-31,"{""language"": ""IT"", ""currency"": ""GBP""}",7668.15,Silver,1 +2540,Gregory Stevenson,lewisrichard@gmail.com,2024-01-05,"{""language"": ""ES"", ""currency"": ""MXN""}",1668.07,Bronze,1 +2541,Katherine Beasley,gcarter@hicks.org,2024-10-17,"{""language"": ""ES"", ""currency"": ""GBP""}",333.31,Gold,0 +2542,Billy Griffin,norrisjason@yahoo.com,2020-01-23,"{""language"": ""ES"", ""currency"": ""USD""}",1987.81,Bronze,1 +2543,Rebekah Cole,patriciameyer@jones.org,2022-09-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6907.91,Silver,1 +2544,James Cortez,michael06@long.info,2023-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8872.3,Silver,0 +2545,Christine Flores,mossmatthew@parks.com,2023-06-24,"{""language"": ""ES"", ""currency"": ""GBP""}",4696.9,Bronze,0 +2546,Steve Elliott,margaretrichardson@baker-golden.com,2023-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",3358.78,Gold,1 +2547,Megan Warren,ddavis@hotmail.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""USD""}",311.73,Gold,0 +2548,Travis Gray,ronaldstone@white.com,2020-11-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1156.84,Bronze,0 +2549,Denise Young,luisbradshaw@gmail.com,2022-05-27,"{""language"": ""DE"", ""currency"": ""GBP""}",8858.72,Gold,0 +2550,Elizabeth Mckay,adickerson@gmail.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6086.78,Gold,1 +2551,Stacy Dixon,ksuarez@thomas-chapman.com,2021-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",2745.3,Gold,0 +2552,Alexander Love,gharris@turner.org,2023-09-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1318.58,Bronze,0 +2553,Gregory Lloyd,bruce07@gmail.com,2020-04-07,"{""language"": ""EN"", ""currency"": ""EUR""}",2429.27,Bronze,1 +2554,Jeremiah Gomez,dean84@gmail.com,2020-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1796.65,Bronze,1 +2555,Randy Golden,ascott@weber.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",5779.83,Gold,0 +2556,Stephen Wilson,apatton@cline.com,2022-09-21,"{""language"": ""ES"", ""currency"": ""GBP""}",5338.36,Silver,0 +2557,Lisa Roman,gsalazar@serrano-west.com,2021-09-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4660.22,Bronze,0 +2558,Juan Gutierrez,samantha08@morris-pierce.biz,2020-01-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5177.04,Bronze,0 +2559,Ronald Ayala,oneillcheryl@gmail.com,2023-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",7400.7,Bronze,0 +2560,Brenda Patton,rodgersashley@gmail.com,2021-11-30,"{""language"": ""EN"", ""currency"": ""CAD""}",4259.83,Bronze,1 +2561,Daniel French,jody10@hotmail.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",2115.72,Bronze,1 +2562,Jeffery Page,figueroaryan@farmer.biz,2022-10-30,"{""language"": ""EN"", ""currency"": ""GBP""}",2470.0,Gold,1 +2563,Kelli Hart,andersonjocelyn@yahoo.com,2020-07-16,"{""language"": ""FR"", ""currency"": ""CAD""}",9240.03,Silver,0 +2564,Lisa Shelton,smartin@hotmail.com,2021-07-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9471.8,Bronze,0 +2565,Michelle Schmidt,stephen45@gmail.com,2020-02-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6976.3,Silver,1 +2566,Anne Howard,brandon23@robinson.net,2019-12-30,"{""language"": ""IT"", ""currency"": ""USD""}",3898.82,Silver,1 +2567,Amanda Parker,megangood@stewart.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1943.58,Silver,0 +2568,Ian Woods,mweiss@yahoo.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4012.06,Silver,1 +2569,Ashley Johnson,spencerjessica@strickland.com,2021-06-16,"{""language"": ""EN"", ""currency"": ""GBP""}",3955.06,Gold,1 +2570,Tina Hardy,chadlong@gonzalez-kim.com,2022-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",5408.88,Gold,1 +2571,Kathleen Harvey,ann10@gmail.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""GBP""}",8125.22,Bronze,0 +2572,Paul Bowen,karenortega@hotmail.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9725.27,Silver,0 +2573,Kathy Fuentes,perezmichele@spence-mason.com,2020-10-25,"{""language"": ""ES"", ""currency"": ""USD""}",9577.65,Gold,1 +2574,Frank Terry,karenfuller@aguilar.com,2020-12-18,"{""language"": ""IT"", ""currency"": ""MXN""}",4254.93,Silver,0 +2575,Kayla Brock,berrytimothy@brown.com,2020-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",376.74,Gold,0 +2576,Daniel Ward,juandoyle@yahoo.com,2021-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7718.09,Silver,1 +2577,Megan Faulkner,lisaduran@gmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""CAD""}",7671.16,Silver,1 +2578,Erin Alvarez,thoffman@johnson.org,2021-11-13,"{""language"": ""DE"", ""currency"": ""CAD""}",3332.62,Gold,1 +2579,Michael Reid,swells@evans-nichols.net,2021-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",2769.14,Gold,1 +2580,Denise Price,spatel@goodwin.com,2024-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9400.21,Bronze,0 +2581,Teresa Fox,paulchambers@yahoo.com,2023-05-16,"{""language"": ""EN"", ""currency"": ""USD""}",3271.01,Gold,0 +2582,Shawn Melton,joneshaley@jimenez.com,2020-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",9588.91,Bronze,0 +2583,Keith Guerrero,kristinmcintosh@gmail.com,2023-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",2809.42,Gold,0 +2584,Sierra Bradley,candicecantrell@gmail.com,2022-09-18,"{""language"": ""EN"", ""currency"": ""EUR""}",593.7,Silver,0 +2585,James Russo,jesussingh@gmail.com,2021-05-19,"{""language"": ""DE"", ""currency"": ""CAD""}",9471.84,Gold,1 +2586,Mark Bryant,hooperangela@hendricks.info,2023-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",739.44,Bronze,1 +2587,Jon Foster,nmacdonald@warner.org,2023-04-30,"{""language"": ""FR"", ""currency"": ""CAD""}",1616.86,Gold,0 +2588,Kristy Larsen DVM,rsuarez@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""USD""}",193.47,Gold,0 +2589,Tara Williams,jason76@gmail.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""MXN""}",2674.33,Silver,1 +2590,Robin Hess,hornekevin@hotmail.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""MXN""}",769.49,Bronze,0 +2591,Carla Crawford,ashleehamilton@hotmail.com,2024-10-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4355.6,Gold,1 +2592,Kenneth Smith,susanmoore@miller.org,2020-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",960.29,Gold,1 +2593,Kenneth Martin,kross@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6012.8,Bronze,1 +2594,Alan Moreno,coledennis@rosario.org,2023-03-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9494.9,Silver,0 +2595,Lisa Kim,phillipsbenjamin@bass-murray.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6982.35,Silver,0 +2596,Emily Meyer,thomas86@yahoo.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""EUR""}",2419.1,Gold,1 +2597,Tara Taylor,millerdiane@lane-smith.biz,2020-05-02,"{""language"": ""EN"", ""currency"": ""EUR""}",4736.81,Silver,1 +2598,Amanda Braun MD,ulee@powell.info,2022-08-26,"{""language"": ""EN"", ""currency"": ""CAD""}",8929.63,Bronze,1 +2599,Angela Taylor,morrisalexander@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7553.1,Silver,1 +2600,William Obrien,uyang@yahoo.com,2020-02-02,"{""language"": ""FR"", ""currency"": ""MXN""}",7235.24,Bronze,0 +2601,Alicia Aguilar,christopherwatson@freeman.com,2021-03-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9950.36,Gold,1 +2602,Anthony Stark MD,alicia48@yahoo.com,2022-11-23,"{""language"": ""DE"", ""currency"": ""CAD""}",3615.85,Bronze,1 +2603,Dominic Lewis,cramirez@yahoo.com,2023-01-12,"{""language"": ""FR"", ""currency"": ""USD""}",9341.18,Gold,0 +2604,Nathan Krueger,andradejack@hotmail.com,2022-10-11,"{""language"": ""IT"", ""currency"": ""MXN""}",5173.26,Bronze,0 +2605,Edwin Benitez,nelsonapril@yahoo.com,2020-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",252.6,Gold,1 +2606,Jessica Wallace,barrlaura@miller.com,2020-12-16,"{""language"": ""FR"", ""currency"": ""USD""}",6064.67,Bronze,0 +2607,Maria Myers,robertholmes@gmail.com,2020-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5506.99,Silver,0 +2608,Michael Morrison,bauerzachary@hill.com,2021-09-19,"{""language"": ""FR"", ""currency"": ""EUR""}",2115.9,Silver,0 +2609,Alexandra Smith,edavis@pierce.info,2024-05-17,"{""language"": ""FR"", ""currency"": ""MXN""}",523.68,Silver,1 +2610,Anthony Duarte,chapmancourtney@hicks-hogan.com,2023-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",624.47,Gold,0 +2611,Amber Watson,bobby80@kaiser.com,2022-05-31,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.66,Silver,1 +2612,Michelle Robinson,tammyrivera@torres.com,2024-08-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3668.89,Silver,0 +2613,Stephanie Huffman,walter36@hotmail.com,2021-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",7386.25,Bronze,1 +2614,Julie Underwood,emorgan@holmes.com,2020-01-27,"{""language"": ""IT"", ""currency"": ""MXN""}",9863.25,Bronze,1 +2615,William Simmons,dsmith@johnson.biz,2022-09-15,"{""language"": ""ES"", ""currency"": ""CAD""}",6066.28,Silver,0 +2616,Rhonda Duran,schmittsherry@johnson.info,2024-04-10,"{""language"": ""IT"", ""currency"": ""CAD""}",3167.56,Bronze,0 +2617,Douglas Kelley,jamesgibson@hester.com,2024-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",8696.89,Gold,1 +2618,Mary Pratt,llawson@hotmail.com,2024-01-02,"{""language"": ""DE"", ""currency"": ""EUR""}",2268.1,Gold,1 +2619,Mackenzie Weber,vespinoza@shaw.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",510.67,Silver,0 +2620,Adam Porter,smithemily@pittman-farley.com,2024-02-12,"{""language"": ""EN"", ""currency"": ""USD""}",5734.66,Bronze,0 +2621,Scott Dunn,cookashley@hotmail.com,2021-06-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4316.47,Gold,0 +2622,Noah Rose,jennifer11@yahoo.com,2021-09-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3954.19,Bronze,0 +2623,Keith Alexander,owilliams@soto-lewis.biz,2020-02-24,"{""language"": ""DE"", ""currency"": ""USD""}",1432.93,Gold,1 +2624,Courtney Serrano,william86@hotmail.com,2021-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",6241.32,Silver,0 +2625,Christina Mcintosh,sharon40@cruz.com,2020-11-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4820.46,Gold,1 +2626,Angela Jordan,heathsandra@yahoo.com,2019-12-21,"{""language"": ""EN"", ""currency"": ""EUR""}",7274.27,Silver,1 +2627,Jeffery Peterson,kmunoz@thompson.org,2021-12-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4782.59,Gold,1 +2628,Michael Leon,mwilliams@brown.com,2024-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",496.97,Bronze,1 +2629,Steven Evans,tmullins@garcia.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""MXN""}",7617.69,Bronze,0 +2630,Joshua Simmons,jacobsoncraig@robinson.com,2020-04-03,"{""language"": ""IT"", ""currency"": ""USD""}",538.46,Silver,0 +2631,Johnathan Simpson,jonathan00@scott-ware.com,2020-06-07,"{""language"": ""FR"", ""currency"": ""USD""}",7959.97,Silver,0 +2632,Shannon Myers,donnanorris@williams.org,2020-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6611.56,Silver,0 +2633,Joshua Cruz,whitearthur@edwards.com,2024-07-21,"{""language"": ""IT"", ""currency"": ""MXN""}",5989.64,Silver,0 +2634,Kyle Smith,amymiller@luna.com,2024-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",5594.76,Gold,0 +2635,Vincent Richardson,sheilamartinez@gmail.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",2050.65,Silver,1 +2636,Danielle Moore,roy56@jackson.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9547.3,Silver,1 +2637,Steven Young,castillochristopher@gmail.com,2023-07-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3244.37,Bronze,0 +2638,Melissa Jenkins,alexanderwhite@hotmail.com,2022-03-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4279.37,Gold,1 +2639,Ian Richardson,sullivanalbert@morgan-reyes.org,2024-07-04,"{""language"": ""DE"", ""currency"": ""USD""}",4206.65,Gold,1 +2640,Paula Andersen,blakelisa@johnson-lopez.com,2022-09-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9378.71,Gold,0 +2641,Joseph Lopez,lhernandez@long-kline.info,2023-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",2084.92,Silver,0 +2642,Jennifer Mcdaniel,qgutierrez@allen.com,2024-04-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4239.94,Silver,0 +2643,William Elliott,susan49@buck.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",465.3,Gold,0 +2644,Ronald Martinez,santosbarry@yahoo.com,2021-03-14,"{""language"": ""ES"", ""currency"": ""CAD""}",7395.32,Bronze,0 +2645,Aaron Mcbride,josephdavis@hotmail.com,2020-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",7907.93,Bronze,1 +2646,Robert Hansen,diana43@montoya-gomez.biz,2020-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",8869.01,Bronze,0 +2647,David Jones,cynthiawaller@douglas.info,2021-07-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3149.22,Bronze,1 +2648,Erika Hicks DVM,jason98@gmail.com,2024-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",2560.32,Gold,0 +2649,Kristin Carson,pricecourtney@hotmail.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5539.35,Gold,1 +2650,Philip King,melissa95@baker-knight.net,2020-10-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8134.2,Gold,1 +2651,Janet Burns,nwoods@white.com,2021-08-15,"{""language"": ""FR"", ""currency"": ""CAD""}",9442.94,Gold,1 +2652,Jaime Paul,michelle89@shields-mack.com,2023-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7048.81,Silver,1 +2653,Denise Wood,jason75@gmail.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4388.36,Bronze,0 +2654,Lindsay Carr,wardvirginia@hotmail.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8883.71,Silver,1 +2655,Kelly Mills,hlawson@gmail.com,2024-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",3353.86,Bronze,1 +2656,Cheryl Sanders,joneschristopher@yahoo.com,2022-12-03,"{""language"": ""ES"", ""currency"": ""GBP""}",9484.22,Gold,1 +2657,Juan Clark,nicholas65@cannon-gill.net,2021-04-12,"{""language"": ""IT"", ""currency"": ""CAD""}",2787.83,Bronze,0 +2658,Bruce Ruiz,masonharrison@hotmail.com,2023-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",9735.01,Gold,0 +2659,Donald Watson,nelsonjames@gmail.com,2022-02-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4536.7,Gold,1 +2660,Erika Houston,knightcorey@yahoo.com,2022-06-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1176.05,Silver,0 +2661,Deborah Gray,bkhan@yahoo.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""MXN""}",1478.47,Silver,0 +2662,Laura Ramirez,martinrichard@robinson.com,2022-06-01,"{""language"": ""ES"", ""currency"": ""EUR""}",3056.52,Bronze,1 +2663,Pamela Johnson,sanderskristy@hotmail.com,2022-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",6140.12,Gold,1 +2664,Marie Wright,longcolleen@chang.com,2020-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6212.06,Gold,1 +2665,John Moody,waltersjohn@yahoo.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",8029.09,Gold,1 +2666,Colleen Washington,crystal04@gmail.com,2020-05-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9234.62,Silver,1 +2667,Tamara Ferguson,randy72@yahoo.com,2021-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2141.27,Silver,0 +2668,Tonya Ross,james21@moss.com,2021-05-27,"{""language"": ""IT"", ""currency"": ""MXN""}",2502.4,Gold,1 +2669,Sean Medina,wallacejoseph@rodriguez.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""CAD""}",7367.18,Bronze,1 +2670,Erin Mann,lisa39@gmail.com,2022-03-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4387.09,Gold,1 +2671,Melissa Alexander,andrea12@edwards-calderon.com,2020-02-16,"{""language"": ""ES"", ""currency"": ""GBP""}",4358.16,Bronze,1 +2672,Terry Smith,sarah69@hotmail.com,2021-09-11,"{""language"": ""DE"", ""currency"": ""GBP""}",1550.67,Bronze,1 +2673,Katherine Hensley,jimmy71@hotmail.com,2023-11-05,"{""language"": ""IT"", ""currency"": ""USD""}",8147.9,Silver,1 +2674,Kristine Hodge,xpeterson@mccoy.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""CAD""}",273.67,Gold,1 +2675,Rachel Hunt,josephstevens@johnson.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",1482.48,Silver,1 +2676,Elizabeth Moyer,omar47@roberts-robinson.com,2024-09-17,"{""language"": ""IT"", ""currency"": ""MXN""}",3858.22,Gold,1 +2677,Laura Howell,justin32@pierce-wallace.com,2022-09-06,"{""language"": ""EN"", ""currency"": ""GBP""}",2212.29,Bronze,0 +2678,David Acevedo,melissalara@schultz.org,2024-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",5957.01,Gold,1 +2679,James Cooper,michaelfranklin@jackson.info,2024-08-24,"{""language"": ""ES"", ""currency"": ""MXN""}",6555.9,Gold,0 +2680,Jacob Rogers,bbryant@yahoo.com,2021-09-12,"{""language"": ""ES"", ""currency"": ""CAD""}",4287.91,Silver,1 +2681,David Stone,nlynn@herring-moore.com,2024-11-20,"{""language"": ""EN"", ""currency"": ""GBP""}",2296.93,Bronze,0 +2682,Lori Gross,amendez@gmail.com,2022-10-13,"{""language"": ""DE"", ""currency"": ""GBP""}",3042.49,Silver,0 +2683,Jason Dean,danielnunez@gmail.com,2024-05-22,"{""language"": ""DE"", ""currency"": ""CAD""}",5355.95,Silver,0 +2684,Robert Cain,martinezpaul@cross.biz,2021-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",4701.64,Bronze,1 +2685,Gabrielle Cox,katherinewatkins@smith.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8887.98,Bronze,1 +2686,Kimberly Booth,tdyer@hotmail.com,2021-07-02,"{""language"": ""FR"", ""currency"": ""USD""}",679.93,Bronze,0 +2687,Charles Martin,gainestimothy@white-hansen.com,2022-11-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8386.9,Gold,1 +2688,Robert Watson,monique64@randolph-lewis.com,2023-01-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3723.21,Gold,1 +2689,Craig Johnson,reyesricky@rodriguez.biz,2022-03-05,"{""language"": ""IT"", ""currency"": ""GBP""}",2913.67,Silver,1 +2690,Amanda Young,weberrussell@hotmail.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",3907.48,Gold,1 +2691,Joanna Lloyd,lynchmatthew@hotmail.com,2023-04-09,"{""language"": ""FR"", ""currency"": ""MXN""}",596.36,Gold,0 +2692,Michelle Diaz,whiteblake@hoffman.info,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8861.25,Bronze,1 +2693,Samuel Moore,qmedina@yahoo.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""EUR""}",3735.68,Bronze,0 +2694,Sarah Wright,bcervantes@washington.biz,2019-12-30,"{""language"": ""IT"", ""currency"": ""CAD""}",7028.85,Silver,1 +2695,Stephen Terrell,frogers@hotmail.com,2020-01-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6290.69,Silver,1 +2696,Lauren Garcia,lcarey@smith.org,2020-02-04,"{""language"": ""FR"", ""currency"": ""USD""}",4929.61,Silver,0 +2697,David Werner,vmoore@jenkins.net,2023-11-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9203.55,Silver,1 +2698,Jimmy Brown,jessicachristensen@turner-barnes.com,2020-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",1514.44,Silver,1 +2699,Kevin Fernandez,dianabishop@gmail.com,2024-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",2272.75,Silver,0 +2700,Karen Johnson,zamoraemily@mckee-turner.net,2023-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4059.33,Gold,0 +2701,Amy Jimenez,austinsmith@gmail.com,2020-02-27,"{""language"": ""EN"", ""currency"": ""USD""}",1701.37,Gold,1 +2702,Kimberly Hess,dennisjason@johnson.info,2022-08-23,"{""language"": ""DE"", ""currency"": ""MXN""}",6706.75,Silver,1 +2703,Jimmy White,bnewman@rocha.info,2024-03-24,"{""language"": ""ES"", ""currency"": ""EUR""}",8507.02,Bronze,1 +2704,Erica Hernandez,hernandezmark@yahoo.com,2023-09-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2456.95,Gold,0 +2705,Nicole Krause,mary95@gmail.com,2021-07-21,"{""language"": ""IT"", ""currency"": ""USD""}",3767.03,Gold,0 +2706,Jamie James,averylinda@smith.com,2021-01-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2109.22,Bronze,1 +2707,David Brown,ghess@adams-may.biz,2023-04-07,"{""language"": ""ES"", ""currency"": ""USD""}",7911.52,Silver,1 +2708,Kristina Bailey,swansondavid@sanchez.org,2024-09-19,"{""language"": ""DE"", ""currency"": ""GBP""}",848.15,Silver,1 +2709,Walter Chapman,david62@wilson.com,2020-04-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4272.01,Gold,1 +2710,Emily Stevenson,brookeblack@osborn.info,2019-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",1540.75,Bronze,0 +2711,Elizabeth George,taylorshawn@roy.biz,2021-03-04,"{""language"": ""DE"", ""currency"": ""EUR""}",1907.9,Gold,1 +2712,Kelly Riddle,mayerkent@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""EUR""}",6860.89,Silver,1 +2713,Bryce Pineda,sloancaitlin@lamb-smith.org,2022-11-11,"{""language"": ""FR"", ""currency"": ""MXN""}",5148.3,Bronze,0 +2714,Megan Chapman,karnold@rivas.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",7405.39,Gold,0 +2715,Amanda Patel,xdavidson@smith-heath.com,2021-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7706.65,Gold,0 +2716,Kevin Walker,danielbridges@hotmail.com,2023-05-15,"{""language"": ""FR"", ""currency"": ""MXN""}",524.43,Silver,1 +2717,Jesse Jones,gdodson@livingston-campbell.com,2024-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1057.14,Bronze,0 +2718,Gabriel Chandler,davidporter@yahoo.com,2024-07-26,"{""language"": ""FR"", ""currency"": ""CAD""}",2323.59,Silver,1 +2719,Kristen Snow,rebeccanavarro@yahoo.com,2020-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3629.89,Silver,0 +2720,Karen Phillips,shellychan@rivera.com,2022-02-07,"{""language"": ""FR"", ""currency"": ""CAD""}",9096.62,Bronze,1 +2721,Amy Hall,garciaeric@gmail.com,2023-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",7871.85,Gold,1 +2722,Jonathan Yang,rebecca93@lester.info,2023-07-08,"{""language"": ""FR"", ""currency"": ""GBP""}",1115.7,Bronze,1 +2723,Jennifer Miller,johnmyers@gmail.com,2023-04-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8711.13,Silver,1 +2724,Charles Roy,qross@yahoo.com,2024-09-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5230.73,Bronze,1 +2725,Jeffrey Bell,wjenkins@yahoo.com,2021-07-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3277.23,Silver,0 +2726,Carly Thomas,jacquelinewhite@hotmail.com,2024-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7557.51,Gold,0 +2727,Kim Hooper,lindsaygonzalez@downs.org,2022-02-20,"{""language"": ""ES"", ""currency"": ""USD""}",3133.74,Silver,1 +2728,Brian Lawrence,peter26@white-meadows.com,2022-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",6984.21,Silver,1 +2729,Tiffany Solis,vrodriguez@hammond.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2675.59,Gold,1 +2730,Corey Rodriguez,yfrey@suarez-johnson.com,2024-02-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2697.78,Bronze,1 +2731,Carlos Moody,tshaw@delacruz-acosta.com,2022-10-06,"{""language"": ""FR"", ""currency"": ""USD""}",3568.97,Silver,0 +2732,Joel Hernandez,tylerwoodward@white.net,2024-04-15,"{""language"": ""DE"", ""currency"": ""GBP""}",2299.56,Silver,0 +2733,Angela Davis,jessicamatthews@gmail.com,2021-09-03,"{""language"": ""FR"", ""currency"": ""CAD""}",2320.43,Bronze,1 +2734,Allison Sosa,johnnyolson@bush.biz,2023-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",806.52,Silver,0 +2735,Alexander Coleman,grossleah@yahoo.com,2024-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2928.33,Bronze,1 +2736,Mr. Patrick Lucero,benjamin50@yahoo.com,2021-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8875.81,Bronze,0 +2737,Kristen Smith,richard25@gmail.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""MXN""}",8043.34,Gold,0 +2738,Larry Fisher,bethanymiller@hotmail.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9917.2,Bronze,1 +2739,James Stewart,daniel10@brown.net,2023-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9372.68,Silver,0 +2740,Brandon Newton,garciajulie@stewart-hall.net,2020-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",4795.53,Silver,1 +2741,Susan Wagner,howekayla@williams.com,2021-06-15,"{""language"": ""IT"", ""currency"": ""USD""}",9666.91,Gold,1 +2742,James Davis,mariodixon@harris.biz,2023-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4012.29,Bronze,0 +2743,Terry West,njones@yahoo.com,2024-11-16,"{""language"": ""EN"", ""currency"": ""GBP""}",5743.02,Silver,0 +2744,Keith Duncan,foleybrenda@long.com,2020-06-24,"{""language"": ""ES"", ""currency"": ""GBP""}",1903.73,Silver,0 +2745,Kerri Williams,ann89@hotmail.com,2024-11-22,"{""language"": ""ES"", ""currency"": ""USD""}",7929.67,Bronze,0 +2746,Marcus Bryant MD,bpatel@thompson.com,2023-11-24,"{""language"": ""ES"", ""currency"": ""GBP""}",152.46,Gold,1 +2747,Jeffrey Gutierrez,oyang@gregory.info,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",5800.9,Bronze,0 +2748,Douglas Atkinson,gonzalezchristopher@hotmail.com,2021-11-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9436.98,Gold,1 +2749,William Rodriguez,dlawrence@gmail.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3173.6,Bronze,1 +2750,Christy Briggs,hunterpatrick@gmail.com,2022-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",4837.74,Bronze,0 +2751,Keith Munoz,scarlson@davis.org,2022-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",9143.23,Gold,1 +2752,Evelyn Drake,rhayes@gmail.com,2022-11-04,"{""language"": ""FR"", ""currency"": ""EUR""}",4386.64,Silver,1 +2753,Julia Bentley,eglass@wilkerson.com,2024-04-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5329.7,Silver,1 +2754,Janet Hall,wagneralyssa@gmail.com,2020-10-05,"{""language"": ""IT"", ""currency"": ""USD""}",172.28,Silver,0 +2755,Kenneth Hill,phillipsjohn@archer.com,2023-04-02,"{""language"": ""EN"", ""currency"": ""USD""}",4797.78,Silver,1 +2756,Hayden Noble,qterry@hotmail.com,2023-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8189.97,Silver,0 +2757,Bobby Perez,zwright@hunter.com,2021-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1811.49,Silver,1 +2758,Anthony Scott,christophersmith@yahoo.com,2023-08-28,"{""language"": ""ES"", ""currency"": ""USD""}",8696.26,Gold,0 +2759,Kathryn Campos,delgadomichael@yahoo.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""GBP""}",6935.96,Silver,0 +2760,Christopher Crane,hudsonjessica@parks-levine.biz,2023-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",5599.18,Silver,1 +2761,Brenda Irwin,matthew26@taylor.com,2024-05-10,"{""language"": ""IT"", ""currency"": ""MXN""}",3183.08,Silver,1 +2762,Robert Kirk,martinpatrick@gmail.com,2024-08-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2171.7,Bronze,1 +2763,Aaron Bennett,pjoyce@ingram-baldwin.com,2020-01-27,"{""language"": ""DE"", ""currency"": ""GBP""}",685.13,Gold,1 +2764,Steven Woodward,lutzraymond@miller.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""USD""}",4648.88,Gold,1 +2765,Dale Olson,alexanderallen@yahoo.com,2021-05-29,"{""language"": ""IT"", ""currency"": ""CAD""}",3595.03,Gold,0 +2766,Susan Washington,batesandrew@gmail.com,2020-09-28,"{""language"": ""EN"", ""currency"": ""GBP""}",1549.73,Bronze,0 +2767,Janice Diaz,stephen25@gmail.com,2022-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2149.53,Silver,1 +2768,Justin Mclaughlin,rebeccaatkins@murphy.org,2020-03-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4449.32,Silver,0 +2769,Thomas Green,rodgersamanda@williams-allen.org,2021-09-30,"{""language"": ""IT"", ""currency"": ""CAD""}",317.93,Bronze,0 +2770,Michael Torres,tdavis@gmail.com,2021-07-22,"{""language"": ""DE"", ""currency"": ""USD""}",9666.04,Bronze,1 +2771,Anne Bennett,hjennings@gmail.com,2023-08-24,"{""language"": ""IT"", ""currency"": ""CAD""}",8090.08,Bronze,0 +2772,Theresa Moore,jillian45@mendez-ray.com,2021-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9107.48,Bronze,0 +2773,Christopher Morris,aaron23@yahoo.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",4896.13,Gold,0 +2774,Manuel Cohen,tschaefer@osborne.net,2024-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",5675.45,Bronze,1 +2775,Heather Miller,mkennedy@yang.com,2022-06-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9277.89,Gold,1 +2776,Megan Farmer,monica34@jimenez-watkins.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""EUR""}",1851.53,Silver,1 +2777,Jessica Wilson,baileykaren@gmail.com,2023-09-14,"{""language"": ""ES"", ""currency"": ""MXN""}",6648.53,Bronze,1 +2778,Lindsay Lewis,zwilson@yahoo.com,2023-12-14,"{""language"": ""IT"", ""currency"": ""MXN""}",5670.67,Bronze,1 +2779,Daniel Kennedy,ajohnson@yahoo.com,2020-09-23,"{""language"": ""DE"", ""currency"": ""USD""}",1717.69,Silver,0 +2780,Jennifer Ross,ryan54@gmail.com,2024-01-02,"{""language"": ""ES"", ""currency"": ""GBP""}",1144.23,Gold,1 +2781,Andrew Conrad,mayodaniel@gmail.com,2022-07-03,"{""language"": ""FR"", ""currency"": ""GBP""}",6229.6,Bronze,1 +2782,Mary Ramos,zgoodman@baker.com,2022-08-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1475.71,Silver,1 +2783,Dustin Miller,kevincooper@gmail.com,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",6347.55,Gold,0 +2784,Justin Roberts,andreabailey@hotmail.com,2023-03-03,"{""language"": ""IT"", ""currency"": ""CAD""}",5740.67,Bronze,1 +2785,Crystal Mcintyre,kristinroberts@brock.net,2021-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",8803.48,Bronze,1 +2786,Cheryl Anderson,susan65@williams-reed.net,2024-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5019.64,Silver,1 +2787,Kevin Andrade,martinrebekah@hotmail.com,2024-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",7111.75,Gold,0 +2788,Randall Fry,qmelendez@tanner.com,2022-03-18,"{""language"": ""ES"", ""currency"": ""MXN""}",915.1,Gold,0 +2789,Donna Saunders,dmorris@guerra-hughes.net,2023-08-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3927.95,Gold,0 +2790,Sandra Patel,daniel67@gmail.com,2023-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5765.09,Gold,1 +2791,Herbert Cooper,blackwellmanuel@ramos.info,2021-10-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3897.29,Silver,0 +2792,Mark Miller,hmiller@lewis.net,2021-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7864.93,Silver,0 +2793,Christopher Sanchez,qmiles@gmail.com,2024-02-11,"{""language"": ""IT"", ""currency"": ""USD""}",449.81,Gold,0 +2794,Matthew Ward,bonderic@yahoo.com,2020-06-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5509.49,Silver,1 +2795,April Abbott,kberg@alexander-brock.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",8168.09,Silver,1 +2796,Nathan Dominguez,marthaperez@hotmail.com,2020-08-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3214.93,Gold,0 +2797,Eugene Hernandez,jamesrobertson@hotmail.com,2021-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",7090.67,Gold,1 +2798,Tammy Johnson,sgarcia@gmail.com,2020-07-11,"{""language"": ""DE"", ""currency"": ""GBP""}",6508.07,Gold,0 +2799,Matthew White,natashalynn@yahoo.com,2022-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",8865.17,Silver,0 +2800,Valerie Green,charles65@mclaughlin-james.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7010.06,Gold,1 +2801,Kristina Alvarado,nathanlong@lopez-mckay.com,2022-11-30,"{""language"": ""DE"", ""currency"": ""MXN""}",306.12,Gold,0 +2802,Molly Jenkins,raguirre@yahoo.com,2022-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",469.05,Silver,1 +2803,Dr. Kim Chambers,kduncan@taylor-sanford.com,2020-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",5640.37,Gold,1 +2804,Lauren Solis,xwilson@galvan.info,2022-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6552.82,Silver,1 +2805,Mary Richardson,zwilliams@yahoo.com,2022-08-21,"{""language"": ""DE"", ""currency"": ""CAD""}",9442.51,Silver,1 +2806,Alyssa Burch,donaldsondaniel@flores.com,2024-04-09,"{""language"": ""IT"", ""currency"": ""GBP""}",5322.43,Gold,0 +2807,Tina Patel,carlparker@kerr.com,2024-01-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3883.56,Silver,0 +2808,Patricia Bean,tayloralexander@cabrera.com,2023-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9086.06,Bronze,0 +2809,Cindy Clark,john41@gmail.com,2024-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",6805.68,Gold,1 +2810,Steve Garcia,bbarnett@hotmail.com,2019-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5038.34,Bronze,0 +2811,Meghan Becker,ikennedy@rose-perez.org,2023-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3271.96,Gold,0 +2812,Andre Clark,jessica84@davis.com,2021-01-15,"{""language"": ""EN"", ""currency"": ""EUR""}",8748.31,Silver,0 +2813,Kathryn Mays,bryan55@yahoo.com,2020-04-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2178.9,Silver,1 +2814,James Graham,rodriguezkayla@allen.net,2020-10-28,"{""language"": ""FR"", ""currency"": ""EUR""}",6886.27,Silver,0 +2815,Sheila Sims,samanthaharris@gray-kennedy.com,2021-04-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2609.33,Silver,1 +2816,Alexandria Lawson,andrew71@yahoo.com,2023-04-09,"{""language"": ""FR"", ""currency"": ""GBP""}",4074.0,Gold,1 +2817,Steven Schmidt,chelsea58@hotmail.com,2024-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5804.63,Silver,1 +2818,Miguel Delgado,villarrealjacob@white.org,2024-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2271.54,Silver,0 +2819,Laura Jones MD,tconley@stephens.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""EUR""}",9637.19,Bronze,0 +2820,Jerry Thompson,pjones@stewart.biz,2024-09-30,"{""language"": ""ES"", ""currency"": ""CAD""}",8993.61,Bronze,0 +2821,Sara Gray,bmartin@hotmail.com,2024-10-11,"{""language"": ""DE"", ""currency"": ""USD""}",2502.06,Bronze,1 +2822,Lance Foster,vcarrillo@gmail.com,2021-09-05,"{""language"": ""IT"", ""currency"": ""MXN""}",3600.85,Gold,0 +2823,Kaitlyn Mcknight,blevinstodd@yahoo.com,2022-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",8327.72,Bronze,0 +2824,Katrina Curry,katie58@perez.info,2020-09-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8905.39,Silver,1 +2825,Katherine Gray,ihudson@hotmail.com,2020-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",5607.57,Gold,0 +2826,Ray Ruiz,timothyburke@flores-cole.org,2021-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4284.05,Silver,0 +2827,Matthew Valdez,youngrebecca@yahoo.com,2020-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",2139.61,Silver,0 +2828,John Thomas,alexiscopeland@hotmail.com,2021-07-17,"{""language"": ""IT"", ""currency"": ""GBP""}",3051.02,Bronze,0 +2829,Christopher Sullivan,crystalmartinez@gmail.com,2021-03-26,"{""language"": ""DE"", ""currency"": ""CAD""}",7202.52,Gold,0 +2830,Angela Day,maria64@braun-edwards.info,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6933.65,Gold,1 +2831,Christopher Stewart MD,obradford@hotmail.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2790.52,Bronze,1 +2832,Maria Alexander,jimmypierce@larson-myers.org,2022-08-25,"{""language"": ""FR"", ""currency"": ""GBP""}",8025.08,Gold,0 +2833,Zachary Cortez,egibson@hotmail.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2713.0,Gold,0 +2834,Jonathan Marquez,kristen41@hernandez.com,2024-04-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1829.41,Silver,0 +2835,Jonathan Moses,daniel46@wallace.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""MXN""}",1841.6,Bronze,0 +2836,Rodney Forbes,nancyrichards@yahoo.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""GBP""}",945.52,Gold,1 +2837,Brandy Rivera,jessica21@yahoo.com,2023-08-23,"{""language"": ""IT"", ""currency"": ""CAD""}",9971.57,Gold,1 +2838,Virginia Clayton,james47@page.com,2024-09-23,"{""language"": ""ES"", ""currency"": ""GBP""}",2931.03,Silver,1 +2839,Shelly Hall,adavis@hammond.com,2021-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",5822.65,Bronze,0 +2840,John Wang,chanrobert@yahoo.com,2023-03-11,"{""language"": ""ES"", ""currency"": ""MXN""}",7068.59,Silver,1 +2841,Charles Holland,kyle67@howell-butler.com,2024-03-13,"{""language"": ""EN"", ""currency"": ""MXN""}",8439.68,Bronze,0 +2842,Alex Ellis,nicoleflowers@clark.com,2022-09-11,"{""language"": ""IT"", ""currency"": ""GBP""}",645.04,Silver,0 +2843,Kenneth Henson,qporter@hotmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",106.22,Gold,0 +2844,Paul Bryant,amanda40@johnson.org,2021-03-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7734.25,Gold,0 +2845,Debra Jordan,carolsmith@martin-stewart.com,2023-06-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9753.0,Bronze,0 +2846,Jessica Russell,natalie70@hotmail.com,2021-02-08,"{""language"": ""EN"", ""currency"": ""CAD""}",5116.24,Silver,1 +2847,Sean Mcgee,blakehays@gmail.com,2023-12-02,"{""language"": ""FR"", ""currency"": ""USD""}",9946.92,Gold,1 +2848,Kimberly Morgan,kirklindsey@scott.biz,2023-09-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2581.59,Gold,1 +2849,Jennifer Best,eberger@ramos.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",4738.5,Silver,0 +2850,Jordan Prince,frice@yahoo.com,2022-04-27,"{""language"": ""DE"", ""currency"": ""EUR""}",493.27,Bronze,1 +2851,Gabrielle Atkinson,julia56@hotmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""MXN""}",4809.77,Silver,1 +2852,Luis Black,katelynmiller@yahoo.com,2020-10-21,"{""language"": ""FR"", ""currency"": ""GBP""}",3474.57,Silver,0 +2853,Catherine Erickson,john13@thompson-rodriguez.com,2019-12-17,"{""language"": ""DE"", ""currency"": ""USD""}",7128.7,Bronze,0 +2854,Brittany Melton,justin64@davis.com,2021-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",9742.59,Silver,0 +2855,Ryan Morrison,michael10@hotmail.com,2024-08-17,"{""language"": ""EN"", ""currency"": ""GBP""}",5097.11,Gold,0 +2856,Margaret Kelly,thoward@long.com,2024-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",108.11,Gold,0 +2857,William Watkins,hannah47@contreras-gonzalez.biz,2023-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",3089.08,Gold,1 +2858,Amy Bell,andrew71@yahoo.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""EUR""}",4408.38,Silver,1 +2859,Cassandra Contreras,wilsonshannon@gmail.com,2022-06-23,"{""language"": ""DE"", ""currency"": ""MXN""}",9208.16,Gold,0 +2860,Renee Medina,thomaskimberly@huff.org,2020-11-20,"{""language"": ""FR"", ""currency"": ""USD""}",8715.19,Bronze,1 +2861,Travis Marsh,dorseydana@yahoo.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",907.33,Silver,0 +2862,Benjamin Bolton,sarahford@gmail.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""CAD""}",6980.48,Bronze,0 +2863,Amanda Bell,john13@yahoo.com,2021-08-18,"{""language"": ""IT"", ""currency"": ""CAD""}",2222.98,Silver,1 +2864,Alexis Dodson,kathygriffin@hotmail.com,2020-12-30,"{""language"": ""EN"", ""currency"": ""EUR""}",8791.8,Bronze,0 +2865,Timothy Bradshaw,bernardmichele@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4778.86,Bronze,0 +2866,Jonathan Brown,gregorylloyd@sullivan.org,2021-01-21,"{""language"": ""FR"", ""currency"": ""MXN""}",683.78,Bronze,1 +2867,Jason Lopez,floresjessica@davis-brennan.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",1774.39,Silver,1 +2868,Caleb Cook,diazjames@diaz.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6584.09,Bronze,1 +2869,Tony Pacheco,nguyensamantha@hernandez-robinson.info,2022-11-27,"{""language"": ""ES"", ""currency"": ""MXN""}",7953.83,Silver,0 +2870,Randy Cole,tmorgan@yahoo.com,2020-04-08,"{""language"": ""IT"", ""currency"": ""USD""}",7896.69,Silver,1 +2871,Margaret Elliott,larrychristian@hotmail.com,2021-05-03,"{""language"": ""DE"", ""currency"": ""CAD""}",4173.74,Gold,1 +2872,Adam Turner,ericrichard@gmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""USD""}",1084.11,Silver,1 +2873,Courtney Barr,tiffanyking@hotmail.com,2022-01-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2223.78,Bronze,1 +2874,Marissa Hill,yateschristopher@hotmail.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""CAD""}",9852.86,Bronze,0 +2875,Sara Dunn,lheath@yahoo.com,2024-04-07,"{""language"": ""EN"", ""currency"": ""USD""}",1345.59,Gold,0 +2876,Holly Matthews,brent10@hotmail.com,2021-10-04,"{""language"": ""ES"", ""currency"": ""USD""}",3519.79,Silver,0 +2877,Jerry Jefferson,tevans@garrett.info,2020-09-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8446.3,Silver,1 +2878,Christine Blanchard,walterserin@mueller.biz,2024-06-06,"{""language"": ""DE"", ""currency"": ""EUR""}",7224.19,Silver,1 +2879,Lindsay Bell,amber81@johnson.com,2022-10-19,"{""language"": ""EN"", ""currency"": ""CAD""}",8912.17,Bronze,0 +2880,Dr. Jennifer Bryant,maryreese@hotmail.com,2020-03-28,"{""language"": ""IT"", ""currency"": ""GBP""}",2544.76,Silver,0 +2881,Suzanne Conner,annette80@garcia.com,2024-05-31,"{""language"": ""DE"", ""currency"": ""MXN""}",9853.27,Gold,0 +2882,David Barron,amber36@hotmail.com,2024-05-29,"{""language"": ""EN"", ""currency"": ""CAD""}",8716.94,Gold,0 +2883,Justin Beard,mrodriguez@hotmail.com,2022-07-24,"{""language"": ""FR"", ""currency"": ""CAD""}",4087.07,Silver,0 +2884,Shawn Vaughan,andrew15@yahoo.com,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7986.44,Bronze,1 +2885,Alexander Bishop,bullocklindsay@ray.com,2021-08-01,"{""language"": ""ES"", ""currency"": ""GBP""}",3607.26,Silver,1 +2886,Gregory Roth,cgoodman@johnson-freeman.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",6337.45,Bronze,1 +2887,Samantha Flores,hcollins@golden-boone.com,2021-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",9714.88,Gold,1 +2888,Malik Lynch,owest@gmail.com,2020-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9352.22,Silver,0 +2889,Steven Hudson,bradyjessica@brennan.com,2022-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",1807.88,Silver,0 +2890,Christina Valenzuela,sdavis@woodward-morales.info,2022-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",516.04,Silver,1 +2891,Patrick Smith,gewing@dunlap.com,2023-10-08,"{""language"": ""IT"", ""currency"": ""USD""}",1726.59,Gold,0 +2892,James Ochoa,laurastrong@gmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8593.25,Bronze,0 +2893,Mr. Christopher Roberts,monica21@hotmail.com,2022-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7817.95,Bronze,1 +2894,Brandy Love,snydertracey@hotmail.com,2021-11-28,"{""language"": ""ES"", ""currency"": ""EUR""}",232.6,Gold,1 +2895,Michael Baker,vdelgado@vasquez-sampson.info,2022-01-15,"{""language"": ""DE"", ""currency"": ""MXN""}",6912.2,Gold,0 +2896,Jared Moon,brandi42@patrick.net,2023-09-02,"{""language"": ""EN"", ""currency"": ""GBP""}",1880.26,Silver,1 +2897,Scott Barnes,riversbrenda@yahoo.com,2024-07-31,"{""language"": ""ES"", ""currency"": ""EUR""}",8198.44,Bronze,1 +2898,David Walters,aaron50@hotmail.com,2021-05-06,"{""language"": ""FR"", ""currency"": ""CAD""}",1236.13,Gold,0 +2899,Ryan Jones,xallen@maddox.org,2023-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",8375.51,Gold,0 +2900,Christie Garcia,juliesanders@conner-bryant.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""USD""}",7974.02,Gold,0 +2901,Donald Kennedy,ronaldgonzalez@gmail.com,2020-04-12,"{""language"": ""DE"", ""currency"": ""CAD""}",1571.01,Silver,1 +2902,William Wilson,jacksonseth@bullock-peterson.biz,2024-08-26,"{""language"": ""FR"", ""currency"": ""MXN""}",3687.72,Gold,0 +2903,Anthony Harmon,ericfowler@hotmail.com,2023-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",8058.91,Silver,1 +2904,Danielle Knight,bruceerica@yahoo.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""MXN""}",8228.94,Bronze,1 +2905,James Hall,katiecortez@williams-miller.org,2022-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",1797.21,Gold,0 +2906,Lisa Watson,rsmith@lewis.com,2021-08-25,"{""language"": ""IT"", ""currency"": ""USD""}",7537.13,Gold,0 +2907,Maria Mann,qwells@woodard.info,2023-05-16,"{""language"": ""IT"", ""currency"": ""GBP""}",9155.04,Gold,1 +2908,Kara Mccormick,fschmidt@gmail.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5021.22,Silver,1 +2909,George Douglas,madison40@shepard-robinson.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""EUR""}",2041.01,Bronze,1 +2910,Robert Bowen,calhounkevin@long.com,2020-01-05,"{""language"": ""EN"", ""currency"": ""EUR""}",8463.61,Gold,1 +2911,Judith Price,kirbyandrew@hotmail.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""USD""}",1602.08,Gold,1 +2912,Marco Rodriguez,rachelwalker@yahoo.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8771.49,Bronze,0 +2913,Paul Ward,qbarrera@conrad-pruitt.biz,2022-06-30,"{""language"": ""ES"", ""currency"": ""CAD""}",8458.27,Silver,1 +2914,David Turner,cbarrera@watson.com,2022-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1403.02,Bronze,0 +2915,Paul Perry,jill35@manning.biz,2023-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4094.32,Gold,1 +2916,Valerie Williams,scottwalker@garcia.net,2022-04-06,"{""language"": ""IT"", ""currency"": ""CAD""}",8163.88,Bronze,1 +2917,Gregory Bennett,ashley30@gmail.com,2022-12-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2996.66,Gold,1 +2918,Jesse Jackson,smithwilliam@gmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",92.13,Silver,1 +2919,Steven Casey,malexander@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""CAD""}",6771.44,Gold,1 +2920,Jerry Garcia,linda19@hotmail.com,2024-04-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9069.15,Bronze,0 +2921,Michael Hess,pjimenez@yahoo.com,2023-07-22,"{""language"": ""IT"", ""currency"": ""USD""}",7685.52,Bronze,0 +2922,Bradley Chambers,jryan@walker-foster.net,2023-09-23,"{""language"": ""FR"", ""currency"": ""CAD""}",9757.97,Silver,0 +2923,Donald Flores,irice@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",929.16,Bronze,1 +2924,Michael Robbins DDS,maria76@beltran.com,2024-03-23,"{""language"": ""ES"", ""currency"": ""MXN""}",1190.4,Bronze,0 +2925,Chad Kelley,danielmiller@gmail.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3287.42,Gold,0 +2926,Kelly Padilla,robert93@elliott-weber.com,2021-04-19,"{""language"": ""ES"", ""currency"": ""CAD""}",122.03,Bronze,1 +2927,Sandra Sheppard,rebecca20@hotmail.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",8365.5,Bronze,1 +2928,Jeffrey Carter,castrofrederick@gmail.com,2020-01-10,"{""language"": ""DE"", ""currency"": ""GBP""}",4010.65,Bronze,0 +2929,Curtis Parker,amandameyers@green.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""USD""}",2519.41,Silver,1 +2930,Kenneth Lopez,madisonbarnes@hotmail.com,2022-01-15,"{""language"": ""ES"", ""currency"": ""CAD""}",9287.49,Silver,1 +2931,Ashley Wallace,hunterandrew@tran-martinez.com,2023-06-08,"{""language"": ""FR"", ""currency"": ""GBP""}",8377.77,Gold,1 +2932,Jeremy Bowers,jessica74@yahoo.com,2023-01-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3181.47,Bronze,0 +2933,Anne Johnson,jortega@gmail.com,2022-08-18,"{""language"": ""IT"", ""currency"": ""CAD""}",655.87,Bronze,0 +2934,Kaitlyn Nielsen,ericmontoya@stanley.biz,2020-02-03,"{""language"": ""DE"", ""currency"": ""USD""}",7993.16,Gold,1 +2935,Natalie Sweeney,qhernandez@gmail.com,2020-12-21,"{""language"": ""DE"", ""currency"": ""GBP""}",383.68,Silver,1 +2936,Lisa Meyer,jacobsandoval@hotmail.com,2021-06-24,"{""language"": ""DE"", ""currency"": ""CAD""}",7435.01,Silver,1 +2937,April Lewis,sharpshawn@yahoo.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9490.7,Bronze,1 +2938,Steven Jennings,ywagner@lane.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""USD""}",5879.16,Gold,1 +2939,Robert Banks,wbyrd@richardson.com,2023-09-04,"{""language"": ""EN"", ""currency"": ""MXN""}",667.12,Silver,1 +2940,Anthony Singh,angelagonzales@hotmail.com,2020-11-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8680.1,Gold,1 +2941,Carly Jacobson,wyattodonnell@lewis-holloway.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",8348.1,Silver,0 +2942,David Sullivan,hphillips@pacheco-rodriguez.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1668.84,Silver,1 +2943,James Mccullough,elainecruz@yahoo.com,2020-09-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5015.67,Gold,0 +2944,Nancy Greene,mirandajohn@dean.info,2022-02-02,"{""language"": ""IT"", ""currency"": ""EUR""}",6555.71,Bronze,0 +2945,Vincent Warner,kellyandrews@hotmail.com,2024-01-18,"{""language"": ""ES"", ""currency"": ""EUR""}",8626.55,Silver,0 +2946,Daniel Bennett,heather64@harding.org,2021-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",9921.31,Silver,0 +2947,Gary Wall,trevor73@lucas.com,2024-05-02,"{""language"": ""DE"", ""currency"": ""EUR""}",3527.75,Gold,1 +2948,Julia Walker,haneyashley@ryan-turner.info,2023-08-19,"{""language"": ""IT"", ""currency"": ""CAD""}",4349.45,Bronze,1 +2949,Kristin Taylor,randy24@orozco.biz,2021-10-13,"{""language"": ""IT"", ""currency"": ""CAD""}",2335.63,Bronze,0 +2950,Brandon Valencia,shanerice@smith.com,2024-10-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8523.78,Silver,0 +2951,Mark Watson,astephens@gmail.com,2022-10-20,"{""language"": ""DE"", ""currency"": ""GBP""}",8470.15,Bronze,0 +2952,Rachel Murphy,stephen77@webb-miller.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",4007.19,Gold,0 +2953,Christopher Sanders,lindseyortega@cox-espinoza.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""EUR""}",2577.23,Bronze,1 +2954,Kristin Horton,perezjulian@brown.biz,2020-12-14,"{""language"": ""IT"", ""currency"": ""EUR""}",1889.53,Gold,0 +2955,Stacy Morrison,dennislisa@gmail.com,2020-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4919.56,Gold,1 +2956,Michelle Johnson,ryansteven@browning-harrington.com,2022-06-03,"{""language"": ""DE"", ""currency"": ""MXN""}",8901.4,Gold,1 +2957,Robert Sharp,jeffreycurry@gmail.com,2022-08-30,"{""language"": ""IT"", ""currency"": ""CAD""}",1855.43,Silver,0 +2958,Vincent Doyle,fortiz@yahoo.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""USD""}",4599.2,Gold,1 +2959,Frank Ramsey,kathleen38@williams.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",3001.45,Gold,0 +2960,Marissa Fernandez,davidjimenez@hotmail.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9428.33,Gold,1 +2961,Deborah Gregory,christian15@lewis.biz,2021-11-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8254.65,Silver,0 +2962,Jennifer Dunn,nicholas85@warren.org,2021-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",6754.76,Gold,0 +2963,Thomas Smith,qsparks@hotmail.com,2024-06-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4761.37,Silver,0 +2964,Alan Jackson,lucas71@yahoo.com,2022-03-11,"{""language"": ""EN"", ""currency"": ""GBP""}",3296.72,Bronze,0 +2965,Valerie Rodriguez,vholmes@johnson.org,2020-09-14,"{""language"": ""EN"", ""currency"": ""USD""}",8465.61,Bronze,0 +2966,Scott Hughes,jwood@peterson.com,2020-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7087.59,Silver,1 +2967,Tiffany Hines,cookevictoria@hotmail.com,2022-05-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1770.42,Gold,0 +2968,Kenneth Lee,onguyen@hotmail.com,2020-06-08,"{""language"": ""EN"", ""currency"": ""EUR""}",9238.53,Bronze,1 +2969,Jenny Barrett,fmurray@alexander.com,2022-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",5447.88,Bronze,1 +2970,Sherry Thompson,fordlee@hotmail.com,2024-02-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4659.83,Silver,1 +2971,Lori Cooper,banksjames@frazier.com,2022-10-23,"{""language"": ""IT"", ""currency"": ""USD""}",569.9,Gold,0 +2972,Leah Miller,katiethomas@gmail.com,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",4461.67,Silver,0 +2973,Michelle Beck,stephenreynolds@wilson-bullock.com,2021-12-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1644.21,Gold,1 +2974,Suzanne Rojas,gjohnson@wall.com,2020-09-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8482.86,Bronze,0 +2975,Laura Ruiz,leonardjodi@hampton.com,2023-06-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4631.31,Silver,0 +2976,Kristen Lewis,smithsabrina@yahoo.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",3011.8,Gold,1 +2977,Stacey Wall,reginahoffman@gmail.com,2020-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",8996.7,Silver,1 +2978,Michael Sanchez,paigewilson@ward-page.com,2020-04-02,"{""language"": ""EN"", ""currency"": ""USD""}",2197.92,Silver,0 +2979,Lori Robertson,ronaldhaley@yahoo.com,2023-02-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6688.41,Gold,1 +2980,Kyle Walton,woodjessica@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",845.7,Silver,0 +2981,Barbara Benton,nbrown@hill.com,2021-10-23,"{""language"": ""IT"", ""currency"": ""CAD""}",6446.09,Bronze,1 +2982,Dylan Mann,charlessharp@gmail.com,2024-08-17,"{""language"": ""IT"", ""currency"": ""USD""}",6238.57,Silver,1 +2983,April Lewis,calvin46@gmail.com,2022-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",4538.6,Gold,1 +2984,James Williams,villegasdylan@gmail.com,2022-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",9805.47,Bronze,0 +2985,Sherry Wall,adrian94@yahoo.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4284.7,Gold,0 +2986,Thomas Harris,banksvalerie@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""USD""}",1365.34,Bronze,1 +2987,Barbara Flowers,xherrera@kelly.org,2023-12-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8105.55,Gold,1 +2988,Laura Bell,moorejustin@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3019.9,Gold,1 +2989,Donald Carter,whitebrian@robbins.com,2021-07-26,"{""language"": ""ES"", ""currency"": ""EUR""}",6756.84,Silver,0 +2990,Christopher Lopez,richardhughes@yahoo.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""MXN""}",7007.4,Silver,1 +2991,Christopher Martinez,courtneywells@yahoo.com,2021-10-06,"{""language"": ""IT"", ""currency"": ""USD""}",4867.06,Gold,1 +2992,Becky Patrick,david47@yahoo.com,2024-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",1727.96,Gold,0 +2993,Michael Patterson,mark65@wood-evans.com,2020-03-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3593.03,Bronze,0 +2994,Daniel Cameron,hernandezamanda@smith-dalton.info,2019-12-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6404.59,Silver,0 +2995,Shari Chen DVM,jenningsmonique@fuller-wagner.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4684.9,Silver,1 +2996,Francisco Barry,keith75@gmail.com,2023-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",9420.66,Gold,0 +2997,Kenneth Peters,xshannon@costa.net,2020-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",5632.11,Bronze,0 +2998,Thomas Adams,erin44@yahoo.com,2022-03-03,"{""language"": ""FR"", ""currency"": ""USD""}",2559.63,Gold,0 +2999,Michelle Smith,kathryn00@yahoo.com,2022-11-22,"{""language"": ""ES"", ""currency"": ""USD""}",7765.14,Silver,0 +3000,David Santiago,joel64@yahoo.com,2021-12-11,"{""language"": ""EN"", ""currency"": ""CAD""}",7055.41,Silver,1 +3001,Dustin Turner,valerieburns@morales.net,2021-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",2904.94,Bronze,1 +3002,Diana Guerrero,pevans@watson.com,2023-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6886.63,Gold,0 +3003,Tyler Wong,paul96@hotmail.com,2024-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",7589.53,Bronze,1 +3004,Scott Kaiser,deancharles@lopez-rogers.com,2022-04-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8056.65,Silver,1 +3005,Sean Graves,ryan61@jackson-gibson.org,2024-04-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9138.06,Silver,0 +3006,Kenneth Atkinson,mario10@taylor.org,2022-03-09,"{""language"": ""FR"", ""currency"": ""GBP""}",3107.65,Gold,1 +3007,Brad Shaw,kristin38@flores.com,2020-02-08,"{""language"": ""DE"", ""currency"": ""GBP""}",7490.03,Bronze,0 +3008,Jon Noble,davidbennett@yahoo.com,2020-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3330.85,Bronze,1 +3009,Ashley Hall,todd31@gmail.com,2020-07-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4412.34,Gold,1 +3010,Ricky Ramsey,matthew55@young.biz,2021-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",7032.58,Silver,1 +3011,Raymond Black,chelsea50@taylor-phelps.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""MXN""}",578.32,Bronze,0 +3012,Cassandra Brown,julieramsey@yahoo.com,2019-12-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1156.02,Bronze,0 +3013,Brittany Avery,brittany64@yahoo.com,2024-04-21,"{""language"": ""ES"", ""currency"": ""GBP""}",1880.57,Bronze,1 +3014,Daniel Martin,jacksonanne@wood.com,2023-04-14,"{""language"": ""IT"", ""currency"": ""GBP""}",6875.91,Bronze,1 +3015,Jesus Soto,joshua90@mcgee-sandoval.net,2021-04-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4398.16,Bronze,1 +3016,Ann Evans,langcarrie@hernandez.info,2021-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",5979.58,Bronze,1 +3017,Jeremy Macias,laura10@gmail.com,2024-03-30,"{""language"": ""EN"", ""currency"": ""GBP""}",9726.96,Silver,0 +3018,Julie Vaughn PhD,devin71@gmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""MXN""}",5022.96,Gold,1 +3019,Cody Boyd,hartpatricia@hotmail.com,2022-05-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3744.96,Silver,0 +3020,Charles Harris,pennyadams@gmail.com,2022-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",9885.25,Silver,0 +3021,Andrew Baird,xguzman@russell-sherman.com,2022-12-19,"{""language"": ""EN"", ""currency"": ""EUR""}",4343.86,Silver,1 +3022,David Fernandez,tina50@jones.com,2021-10-03,"{""language"": ""ES"", ""currency"": ""GBP""}",1929.01,Gold,0 +3023,Nathan Hensley,ashley98@yahoo.com,2023-06-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5439.99,Bronze,0 +3024,Elizabeth Short,joshuamcmillan@brennan.net,2022-07-26,"{""language"": ""IT"", ""currency"": ""CAD""}",579.3,Bronze,1 +3025,Christian Chambers,joseph69@gmail.com,2021-03-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9824.9,Silver,1 +3026,Alex Woods,thomasgarcia@bennett-hughes.com,2022-06-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8675.17,Silver,0 +3027,Derek Rivera,wangnicholas@gmail.com,2021-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",4490.51,Silver,1 +3028,Catherine Goodman,trogers@hotmail.com,2024-03-03,"{""language"": ""FR"", ""currency"": ""EUR""}",2933.29,Silver,0 +3029,Thomas Serrano,dyoung@hotmail.com,2023-03-12,"{""language"": ""ES"", ""currency"": ""GBP""}",656.5,Bronze,0 +3030,Matthew Torres,colekimberly@johnson-garcia.net,2024-09-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4950.74,Gold,1 +3031,Kevin Stuart,ugonzales@gonzalez-lewis.com,2023-04-26,"{""language"": ""ES"", ""currency"": ""GBP""}",1786.48,Bronze,1 +3032,Amanda Campbell,merritttonya@yahoo.com,2023-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",8436.2,Gold,1 +3033,Aaron Mcguire,eriksantiago@white-brown.com,2023-10-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6512.12,Bronze,0 +3034,Charles Hendricks,rojasjennifer@norris.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""EUR""}",7897.83,Silver,1 +3035,Destiny Leon,smccoy@espinoza.com,2021-12-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8618.1,Gold,0 +3036,Alexander Moreno,richard42@little.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7600.92,Gold,0 +3037,Karen Scott,edwardmurphy@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",4553.74,Silver,1 +3038,Latasha Lowery,asummers@gmail.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5584.47,Bronze,1 +3039,Erik Franklin,zstevens@joseph.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""CAD""}",7833.12,Bronze,1 +3040,Anthony Myers PhD,jessicaballard@schaefer-mcdonald.biz,2022-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",8454.13,Silver,0 +3041,Kyle Riggs,trhodes@yahoo.com,2024-02-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5554.56,Silver,1 +3042,Victoria Kirby,romaneric@hotmail.com,2020-04-09,"{""language"": ""EN"", ""currency"": ""USD""}",4113.81,Bronze,1 +3043,Michael Williams,carolyn73@yahoo.com,2020-04-03,"{""language"": ""IT"", ""currency"": ""GBP""}",1108.23,Gold,1 +3044,David Thomas,ramosangela@soto-todd.biz,2023-01-15,"{""language"": ""IT"", ""currency"": ""CAD""}",3772.36,Gold,1 +3045,Chad Sanchez,jamiearroyo@hotmail.com,2022-06-23,"{""language"": ""IT"", ""currency"": ""USD""}",7818.0,Bronze,1 +3046,Miss Ashley Reynolds,nicholstaylor@hotmail.com,2020-01-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5085.63,Bronze,0 +3047,Michael Douglas,austinflores@gmail.com,2020-01-19,"{""language"": ""EN"", ""currency"": ""CAD""}",7470.31,Silver,1 +3048,Cindy Brandt,lsparks@yahoo.com,2023-04-13,"{""language"": ""DE"", ""currency"": ""USD""}",6873.19,Silver,1 +3049,Regina Floyd,dylanlopez@gmail.com,2023-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",7525.45,Silver,0 +3050,Connie Mcgrath MD,yedwards@king-russell.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""CAD""}",9161.21,Bronze,0 +3051,John Combs,carrieturner@perez-clark.net,2023-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",950.59,Silver,0 +3052,Mrs. Mariah Jackson,wardbarbara@fletcher-barnes.biz,2021-12-24,"{""language"": ""EN"", ""currency"": ""USD""}",2646.45,Silver,1 +3053,Bailey Smith,michael86@white-santiago.com,2023-12-07,"{""language"": ""IT"", ""currency"": ""GBP""}",3362.95,Gold,1 +3054,Anthony Esparza,michelle71@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",314.5,Gold,0 +3055,Ryan King,smithanthony@garcia.com,2022-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7534.21,Gold,1 +3056,Michelle Wilson,alvaradosteve@hotmail.com,2022-05-02,"{""language"": ""EN"", ""currency"": ""USD""}",9370.53,Gold,0 +3057,Tanya Garcia,wwood@snyder.com,2023-09-08,"{""language"": ""DE"", ""currency"": ""MXN""}",9627.17,Gold,1 +3058,Brenda Wilson,ihoffman@stone.org,2020-04-15,"{""language"": ""ES"", ""currency"": ""MXN""}",795.3,Silver,1 +3059,Kelsey Hickman,emily33@gmail.com,2021-09-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6866.4,Silver,0 +3060,Theresa Mendoza,hoffmanlinda@green.com,2021-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",9430.81,Bronze,1 +3061,Miss Teresa James,pnelson@gmail.com,2024-08-14,"{""language"": ""DE"", ""currency"": ""GBP""}",8029.17,Bronze,1 +3062,Marissa Garcia,matthew96@hotmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",2987.13,Gold,1 +3063,Kelly Peterson,juan42@carter.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",850.6,Gold,0 +3064,Seth Johnson,morrisjulie@sherman.com,2023-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",1853.69,Silver,0 +3065,Marcus Atkins,howard16@mason.com,2024-09-07,"{""language"": ""DE"", ""currency"": ""MXN""}",9387.63,Bronze,0 +3066,Henry Cruz,rallen@yahoo.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""USD""}",9558.43,Bronze,0 +3067,Scott Williams,brendadickerson@banks.info,2020-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",8467.22,Bronze,0 +3068,Nicholas Patton,debrakline@yahoo.com,2021-10-21,"{""language"": ""FR"", ""currency"": ""EUR""}",6596.3,Gold,1 +3069,Caitlin Mason,nathan05@hoffman.info,2024-05-17,"{""language"": ""DE"", ""currency"": ""GBP""}",301.23,Bronze,0 +3070,Elizabeth Smith,craigrush@sanchez.com,2021-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",1170.02,Bronze,0 +3071,Tina Acosta,sophiaclay@gmail.com,2020-10-05,"{""language"": ""ES"", ""currency"": ""MXN""}",6884.19,Silver,1 +3072,Richard Kim,rebecca13@hurley.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""GBP""}",3318.34,Silver,0 +3073,Jocelyn Garcia,howardallen@carpenter-fuller.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""USD""}",8301.38,Gold,1 +3074,Linda Medina,dcalhoun@hotmail.com,2020-10-22,"{""language"": ""EN"", ""currency"": ""EUR""}",9331.13,Bronze,0 +3075,Brittany Armstrong,vanceabigail@sparks.org,2021-05-12,"{""language"": ""FR"", ""currency"": ""GBP""}",7065.9,Bronze,1 +3076,Melissa Parker,granthancock@yahoo.com,2023-08-09,"{""language"": ""DE"", ""currency"": ""MXN""}",2235.43,Bronze,0 +3077,Diana Williams,kimberlyhernandez@hotmail.com,2024-06-03,"{""language"": ""FR"", ""currency"": ""GBP""}",481.42,Bronze,1 +3078,Wesley Perry,thompsontimothy@gmail.com,2022-12-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4737.25,Gold,0 +3079,Adam West,robert15@atkins.com,2024-07-04,"{""language"": ""IT"", ""currency"": ""EUR""}",5108.29,Bronze,1 +3080,Jeffrey Thompson Jr.,aliciarangel@yahoo.com,2023-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8308.68,Gold,0 +3081,Erica Moody,jonathonwhite@little-vang.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3159.99,Silver,1 +3082,Matthew Stark,uking@gmail.com,2022-05-11,"{""language"": ""IT"", ""currency"": ""CAD""}",6043.94,Bronze,0 +3083,Nicolas Turner,khoffman@ramirez.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",894.3,Gold,0 +3084,Diane Curtis,jamespotter@hotmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",3662.45,Silver,1 +3085,William Mullen,henrydawn@martinez.com,2020-05-10,"{""language"": ""ES"", ""currency"": ""GBP""}",7204.26,Silver,1 +3086,Sara Murillo,shawdarrell@brown.com,2022-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",865.48,Silver,0 +3087,Lauren Mcclain,meyerstaylor@yahoo.com,2021-11-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9822.6,Bronze,1 +3088,Joseph Shepherd,joneskara@mendez.com,2024-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",490.51,Silver,0 +3089,Eric Smith,carolyn53@grant-taylor.com,2023-10-29,"{""language"": ""EN"", ""currency"": ""USD""}",9343.37,Gold,1 +3090,Stacey Simmons,johnsonsandra@gilbert-crane.biz,2021-06-07,"{""language"": ""EN"", ""currency"": ""GBP""}",3282.88,Bronze,1 +3091,Tony Gutierrez,janetmcdonald@yahoo.com,2022-08-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5828.65,Gold,1 +3092,Monique Campos,david13@mitchell.com,2021-03-15,"{""language"": ""FR"", ""currency"": ""MXN""}",5354.65,Silver,0 +3093,Elaine Stewart,shepherdjulie@fuller-harris.com,2023-07-27,"{""language"": ""EN"", ""currency"": ""MXN""}",839.07,Bronze,1 +3094,Dawn Hoffman,pageamy@brooks-kelly.com,2021-10-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6467.18,Bronze,1 +3095,Karen Torres,john47@yahoo.com,2024-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4125.0,Silver,0 +3096,Dawn Alexander,doylewilliam@yahoo.com,2023-07-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6200.59,Bronze,0 +3097,Robin Baldwin,ericwade@wright-sanchez.org,2020-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3800.73,Silver,1 +3098,Robert Thompson,darrenwiggins@hotmail.com,2024-10-02,"{""language"": ""FR"", ""currency"": ""CAD""}",7549.68,Gold,1 +3099,Matthew Fox,randallmelissa@gmail.com,2019-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",3821.56,Bronze,1 +3100,Miss Holly Gonzalez,johnny29@yahoo.com,2021-01-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3076.59,Silver,1 +3101,Daniel Thompson,pramirez@gmail.com,2021-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9440.88,Silver,0 +3102,Christopher Nguyen,nsmith@hotmail.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",2451.03,Bronze,0 +3103,Jack Griffin,christynguyen@austin.com,2022-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",9764.93,Gold,1 +3104,Johnny Robinson,janet35@hotmail.com,2023-06-28,"{""language"": ""EN"", ""currency"": ""EUR""}",5320.37,Silver,0 +3105,Marie Clark,robertthompson@hotmail.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",832.69,Gold,0 +3106,Andre Summers,betty49@yahoo.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9850.22,Gold,1 +3107,Jonathan Schmidt,vickihess@hotmail.com,2024-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",2393.14,Gold,1 +3108,Lee Smith,kimberly20@hotmail.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",3164.95,Bronze,1 +3109,Nichole Williams,ricky60@moreno.com,2024-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4480.92,Bronze,0 +3110,Tammy Miller,andreagriffin@gmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3436.24,Bronze,0 +3111,Debbie Foster,jimenezjamie@martinez.com,2023-03-22,"{""language"": ""DE"", ""currency"": ""MXN""}",7816.77,Bronze,1 +3112,John Austin,nkennedy@wiggins-yu.info,2021-05-18,"{""language"": ""EN"", ""currency"": ""CAD""}",5479.87,Bronze,1 +3113,Jessica Simpson,joannebarrera@gmail.com,2020-12-31,"{""language"": ""EN"", ""currency"": ""MXN""}",5815.52,Bronze,0 +3114,Ethan Young,tiffany65@gmail.com,2020-08-04,"{""language"": ""IT"", ""currency"": ""CAD""}",1262.97,Gold,1 +3115,Angela Harrison,weavergarrett@jackson.biz,2021-12-14,"{""language"": ""DE"", ""currency"": ""EUR""}",9595.73,Gold,0 +3116,Noah Cruz,rschroeder@yahoo.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""GBP""}",5670.08,Bronze,1 +3117,Christopher Levy,wsantos@hotmail.com,2022-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4785.38,Gold,0 +3118,Darryl Bowman,shannonbarr@yahoo.com,2022-10-28,"{""language"": ""ES"", ""currency"": ""MXN""}",4213.55,Bronze,1 +3119,Troy Hughes Jr.,samantha76@yahoo.com,2023-01-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4624.19,Silver,1 +3120,Mark Salazar,bortiz@hotmail.com,2020-09-19,"{""language"": ""DE"", ""currency"": ""USD""}",4456.37,Gold,1 +3121,Edward Whitehead,nrobinson@yahoo.com,2023-06-28,"{""language"": ""EN"", ""currency"": ""EUR""}",6641.34,Silver,1 +3122,Molly Mitchell MD,johnsonkevin@yahoo.com,2023-04-09,"{""language"": ""DE"", ""currency"": ""GBP""}",1156.35,Bronze,1 +3123,Jeffrey Moreno,brandy57@torres.com,2023-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2949.52,Gold,1 +3124,Matthew Higgins,garciajoshua@gmail.com,2024-01-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4108.77,Silver,1 +3125,Monica Davis,villamichael@yahoo.com,2023-09-05,"{""language"": ""EN"", ""currency"": ""MXN""}",1738.96,Bronze,0 +3126,Melissa Smith,hillmeredith@yahoo.com,2021-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",2485.66,Silver,1 +3127,Tracy Gonzalez,bradley40@henson.org,2020-12-27,"{""language"": ""EN"", ""currency"": ""CAD""}",2869.9,Silver,1 +3128,Nathan Gibson,gortiz@thomas-alvarez.biz,2021-09-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9113.73,Bronze,0 +3129,Ashley Ward,gstout@gmail.com,2024-02-26,"{""language"": ""ES"", ""currency"": ""USD""}",8926.46,Gold,1 +3130,Michael Davis,kimberly54@hotmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",2192.02,Silver,0 +3131,Justin Martinez,ohoover@hernandez.net,2021-05-28,"{""language"": ""DE"", ""currency"": ""CAD""}",697.83,Bronze,1 +3132,Hector Allen,ubrown@hotmail.com,2024-04-01,"{""language"": ""FR"", ""currency"": ""EUR""}",4598.62,Silver,1 +3133,Daniel Villarreal,evansscott@gmail.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""USD""}",4878.05,Bronze,1 +3134,Joshua Evans,haleydiamond@taylor-robbins.org,2020-03-08,"{""language"": ""EN"", ""currency"": ""MXN""}",7669.9,Bronze,1 +3135,Alicia Cooley,astein@hotmail.com,2022-09-24,"{""language"": ""IT"", ""currency"": ""GBP""}",4391.13,Gold,0 +3136,Cynthia Wilson,xwatson@gmail.com,2022-05-09,"{""language"": ""IT"", ""currency"": ""MXN""}",4583.6,Gold,1 +3137,Sarah Thompson,deannakim@gmail.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""CAD""}",7301.51,Gold,0 +3138,Angel Day,asanchez@yahoo.com,2023-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1904.69,Bronze,1 +3139,Jennifer Parker,sarahrobles@doyle.biz,2024-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",6254.19,Bronze,0 +3140,Noah Simmons,matthew56@austin.com,2024-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",621.59,Silver,1 +3141,Catherine George,vhall@hotmail.com,2023-05-15,"{""language"": ""IT"", ""currency"": ""MXN""}",614.5,Gold,0 +3142,Haley Reilly,david38@taylor-robinson.org,2021-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",9882.14,Bronze,0 +3143,Melanie Morales,ejones@gmail.com,2022-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8633.95,Gold,0 +3144,Alan Hayes,ryan41@mason.com,2023-10-04,"{""language"": ""DE"", ""currency"": ""USD""}",2987.14,Silver,0 +3145,Christian Wise,scottrussell@hotmail.com,2020-04-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4392.49,Bronze,1 +3146,Jason Adams,vnelson@hotmail.com,2023-12-18,"{""language"": ""DE"", ""currency"": ""EUR""}",9523.82,Bronze,0 +3147,Patricia Miller,kirbychristopher@anthony-strickland.com,2023-03-08,"{""language"": ""DE"", ""currency"": ""USD""}",1463.43,Silver,1 +3148,Robert Foster,jose60@gmail.com,2024-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",9306.19,Bronze,1 +3149,Justin Sullivan,cwilliams@turner.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",7397.46,Silver,1 +3150,Andrew Olson,cameronhughes@gmail.com,2021-11-03,"{""language"": ""DE"", ""currency"": ""EUR""}",6508.43,Gold,0 +3151,Stacy Roberson,barbara42@hotmail.com,2023-08-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4436.43,Gold,1 +3152,Yolanda Soto,brianaward@archer-burgess.org,2020-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",8269.03,Silver,1 +3153,Diane Cook,zthompson@peck-ochoa.biz,2020-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",566.85,Bronze,0 +3154,Alyssa Chan,ddaugherty@cannon.info,2020-08-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8488.0,Bronze,0 +3155,Bobby Warner,barbarawilliams@hotmail.com,2023-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6934.69,Bronze,0 +3156,Jacob Page,william12@hotmail.com,2022-02-16,"{""language"": ""ES"", ""currency"": ""MXN""}",3132.04,Bronze,1 +3157,Christina Phillips,angelgreen@hines.info,2020-12-03,"{""language"": ""DE"", ""currency"": ""EUR""}",6418.92,Bronze,1 +3158,Manuel Leach,vpayne@stanley.com,2022-08-16,"{""language"": ""EN"", ""currency"": ""MXN""}",8207.76,Gold,0 +3159,Brian Hubbard,jessica96@yahoo.com,2022-09-19,"{""language"": ""IT"", ""currency"": ""GBP""}",9265.42,Gold,1 +3160,Sharon Murphy,gloriasanders@moreno.org,2022-07-04,"{""language"": ""FR"", ""currency"": ""USD""}",1409.13,Silver,0 +3161,Grace Hawkins,bowersjason@hotmail.com,2021-02-01,"{""language"": ""ES"", ""currency"": ""USD""}",8542.08,Gold,1 +3162,Melissa Thornton,ycortez@yahoo.com,2021-07-07,"{""language"": ""IT"", ""currency"": ""GBP""}",7045.56,Bronze,1 +3163,Jacqueline Jackson,xclay@jones.com,2020-03-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6582.59,Gold,1 +3164,Ivan Mcdonald,teresa35@yahoo.com,2022-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1688.91,Silver,0 +3165,Tammy James,marisabrooks@allen-sloan.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""USD""}",1717.18,Bronze,1 +3166,Laura Thompson,blee@robbins-saunders.com,2024-04-05,"{""language"": ""FR"", ""currency"": ""USD""}",6914.18,Bronze,0 +3167,Desiree Dorsey,markclay@yahoo.com,2023-05-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1955.62,Silver,1 +3168,Dillon Goodwin,reedaaron@clark-montgomery.org,2024-08-12,"{""language"": ""FR"", ""currency"": ""EUR""}",9568.92,Silver,0 +3169,Kimberly Thomas,agould@gmail.com,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9302.77,Bronze,1 +3170,Wanda Rasmussen,holmesmary@evans.com,2022-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",3021.27,Gold,1 +3171,Carolyn Flores,angelicaowens@gmail.com,2022-08-25,"{""language"": ""IT"", ""currency"": ""GBP""}",743.3,Silver,0 +3172,Maria Krueger,justinjohnson@gmail.com,2023-10-31,"{""language"": ""DE"", ""currency"": ""MXN""}",7048.31,Gold,1 +3173,Amy Ford,laura88@webb.org,2024-09-26,"{""language"": ""EN"", ""currency"": ""CAD""}",6899.79,Gold,0 +3174,Stacey Perry,kevinwebster@gmail.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2838.17,Bronze,1 +3175,Troy Stewart,awoods@yahoo.com,2021-11-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2242.92,Bronze,1 +3176,Lynn Jones,aaron36@henderson.org,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",8297.04,Silver,1 +3177,Nicolas Aguilar,morganchambers@peterson-ware.com,2020-11-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1545.45,Gold,0 +3178,Nathaniel Wilkinson,courtneyfranklin@yahoo.com,2020-01-22,"{""language"": ""FR"", ""currency"": ""CAD""}",2305.37,Bronze,1 +3179,Kenneth Myers,dawn86@castro.info,2023-07-17,"{""language"": ""FR"", ""currency"": ""MXN""}",3617.67,Silver,1 +3180,Darren Pruitt,keithmariah@hansen-riddle.net,2022-09-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3811.83,Gold,0 +3181,Patrick Dean,xcrane@gmail.com,2023-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",1621.12,Bronze,0 +3182,Grant Smith,aguirredawn@hotmail.com,2022-07-30,"{""language"": ""IT"", ""currency"": ""MXN""}",1341.7,Bronze,1 +3183,Brian Meyer,charles65@hotmail.com,2022-11-04,"{""language"": ""IT"", ""currency"": ""GBP""}",575.27,Bronze,0 +3184,Jose Hatfield,sarahharris@johnson-cordova.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6444.92,Bronze,1 +3185,James Parks,michaelmoreno@smith-rodriguez.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""USD""}",6393.51,Silver,0 +3186,Alejandra Briggs,edwardsdarrell@yahoo.com,2021-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9379.48,Bronze,1 +3187,Renee Humphrey,crystalpena@pena.com,2020-12-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1006.37,Silver,0 +3188,Terri Smith,timothyrowe@miller-hobbs.org,2024-07-28,"{""language"": ""DE"", ""currency"": ""MXN""}",52.02,Silver,0 +3189,Miguel Jones,michael93@hotmail.com,2021-07-13,"{""language"": ""DE"", ""currency"": ""MXN""}",1580.97,Bronze,1 +3190,Christopher Wright,brendascott@gmail.com,2020-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",3619.17,Gold,0 +3191,Kelly Shaw,paulbaker@hotmail.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""CAD""}",1714.82,Bronze,0 +3192,Autumn Martin,emilyfranklin@yahoo.com,2023-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",8086.31,Gold,1 +3193,Emily Cameron,carrillojessica@roberson.com,2023-09-15,"{""language"": ""DE"", ""currency"": ""CAD""}",5458.07,Bronze,1 +3194,Jerry Hawkins,lcook@yahoo.com,2021-12-21,"{""language"": ""EN"", ""currency"": ""GBP""}",7165.23,Bronze,1 +3195,Jesse Mcclure,hilldylan@gmail.com,2019-12-14,"{""language"": ""EN"", ""currency"": ""EUR""}",4316.73,Bronze,1 +3196,Carolyn Harris,sally16@mckenzie-kelly.com,2023-01-23,"{""language"": ""EN"", ""currency"": ""MXN""}",3273.52,Bronze,0 +3197,Debbie Martinez,shunt@sanders.com,2024-07-01,"{""language"": ""EN"", ""currency"": ""USD""}",9372.82,Bronze,1 +3198,Laura Simpson,martindevin@gmail.com,2023-07-25,"{""language"": ""DE"", ""currency"": ""GBP""}",6676.11,Bronze,0 +3199,Nancy White,rhudson@gmail.com,2022-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",1250.55,Gold,0 +3200,Todd Johnston,angela84@martin.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""GBP""}",2419.45,Bronze,0 +3201,Michael Thomas,michaelthompson@salinas.biz,2022-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",207.19,Gold,0 +3202,Monica Adams,nielsenchristopher@phillips-jones.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""USD""}",7891.63,Silver,0 +3203,Crystal Adkins,kentlori@kelly.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""CAD""}",9992.04,Bronze,1 +3204,Alexis Smith,kimberly06@hart.biz,2020-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",5209.31,Bronze,1 +3205,Heather Powell,timothymatthews@yahoo.com,2022-07-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4318.55,Bronze,1 +3206,Michelle Shepherd,whitneyjones@hotmail.com,2022-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",2276.34,Silver,0 +3207,Brian Tran,paul21@wood.com,2024-07-02,"{""language"": ""IT"", ""currency"": ""MXN""}",5075.26,Gold,1 +3208,Brandon Howard,julie15@hotmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",2417.77,Bronze,1 +3209,Chad Tucker,fjohnson@osborne.info,2020-04-24,"{""language"": ""EN"", ""currency"": ""USD""}",1781.24,Silver,1 +3210,Michael Koch,vwheeler@raymond.com,2023-08-05,"{""language"": ""EN"", ""currency"": ""CAD""}",6998.25,Gold,1 +3211,Lisa Bridges,floresjessica@cuevas.org,2022-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",800.1,Silver,1 +3212,Jordan Fleming,savannahross@turner.biz,2022-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",2361.59,Gold,0 +3213,Megan Mitchell,karen18@gmail.com,2021-03-05,"{""language"": ""ES"", ""currency"": ""USD""}",2585.46,Bronze,0 +3214,Daniel Cooper,cochrandiane@gmail.com,2020-04-28,"{""language"": ""EN"", ""currency"": ""USD""}",2948.67,Bronze,1 +3215,Andrew Berry,patricia95@gmail.com,2024-06-17,"{""language"": ""FR"", ""currency"": ""CAD""}",6417.23,Silver,1 +3216,Michael Nichols,scottanderson@griffith-pollard.org,2024-11-19,"{""language"": ""DE"", ""currency"": ""MXN""}",2229.7,Bronze,0 +3217,Janet Payne,woodshawn@jones-ball.com,2021-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",2607.47,Bronze,0 +3218,Eric Pierce,michael75@yahoo.com,2022-04-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5427.41,Bronze,1 +3219,Thomas Banks,mackenzie86@sexton-franco.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""USD""}",8790.2,Bronze,0 +3220,Gabrielle Sweeney,brian46@cortez-curry.com,2022-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",9266.75,Bronze,1 +3221,Adam Hicks,omora@gmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""EUR""}",8996.94,Silver,0 +3222,Katie Sharp,frank61@hotmail.com,2022-12-23,"{""language"": ""DE"", ""currency"": ""USD""}",8199.85,Gold,0 +3223,Elizabeth Jones,nbrooks@gmail.com,2022-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3133.25,Bronze,1 +3224,Samantha Rivera,rgarcia@hotmail.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5595.79,Silver,0 +3225,Danielle Mckay,willie97@hotmail.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7199.89,Silver,0 +3226,Timothy Arroyo,valenzuelascott@yahoo.com,2020-08-30,"{""language"": ""FR"", ""currency"": ""USD""}",1024.58,Silver,1 +3227,Kurt Duke,hensleyderek@hotmail.com,2020-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8905.46,Bronze,0 +3228,Eric Stone,brittany11@robbins-kelly.info,2021-08-27,"{""language"": ""EN"", ""currency"": ""MXN""}",3065.67,Silver,0 +3229,Mrs. Kathleen Phillips MD,vwatts@yahoo.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""EUR""}",2016.89,Silver,0 +3230,Jeffrey English,gwendolynferguson@brown.com,2023-04-14,"{""language"": ""EN"", ""currency"": ""MXN""}",7990.0,Bronze,0 +3231,Gordon Snyder,stephen06@guerrero-brown.com,2024-01-11,"{""language"": ""EN"", ""currency"": ""CAD""}",8622.2,Gold,1 +3232,Candace Smith,wallacechristian@hotmail.com,2023-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",4955.81,Bronze,1 +3233,Gregg Carter,katherine11@hotmail.com,2022-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6118.2,Silver,0 +3234,Cody Watts,steven94@yahoo.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""GBP""}",7415.47,Bronze,0 +3235,Jean Pierce,vramos@gmail.com,2023-06-09,"{""language"": ""IT"", ""currency"": ""EUR""}",6830.86,Bronze,0 +3236,Nicholas Christensen,uconner@yahoo.com,2024-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",2331.9,Bronze,0 +3237,Leon Miller,cheryl67@gmail.com,2022-08-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3509.93,Gold,1 +3238,Michelle Simpson,lindahartman@jones.biz,2023-03-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9756.03,Silver,0 +3239,Carla Poole,williamthompson@bush.info,2020-08-09,"{""language"": ""ES"", ""currency"": ""USD""}",9345.06,Gold,0 +3240,Maria Miller,qwalker@lam.com,2020-12-07,"{""language"": ""DE"", ""currency"": ""MXN""}",1776.73,Bronze,1 +3241,Steven Peterson,brandontaylor@perez.com,2021-07-08,"{""language"": ""DE"", ""currency"": ""EUR""}",5459.3,Gold,1 +3242,Johnny Brown,graydavid@gmail.com,2020-05-24,"{""language"": ""FR"", ""currency"": ""USD""}",4373.21,Bronze,1 +3243,Pam Woods,rickrobertson@gmail.com,2024-07-08,"{""language"": ""EN"", ""currency"": ""CAD""}",7857.99,Silver,1 +3244,Joseph Leonard,michaelcook@barnes-davies.com,2024-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",7836.25,Silver,1 +3245,Sharon Harris,victoria73@harris-white.com,2024-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",5525.61,Gold,0 +3246,William Perry,patelmichelle@shaffer.com,2020-10-13,"{""language"": ""FR"", ""currency"": ""MXN""}",5821.47,Gold,1 +3247,Elizabeth Wallace,flemingstephanie@poole.com,2024-10-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6959.09,Silver,0 +3248,Nicholas Collins,kennedyjoel@johnson.com,2020-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",6669.71,Gold,0 +3249,Michael Jacobs,pricebrad@yahoo.com,2022-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",6541.74,Silver,0 +3250,Christopher Barnes,richarddominguez@yahoo.com,2020-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",607.73,Bronze,0 +3251,Yvonne Craig,xfields@hotmail.com,2022-02-13,"{""language"": ""EN"", ""currency"": ""EUR""}",8341.21,Gold,0 +3252,Kurt Payne,john34@gmail.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""CAD""}",8310.84,Bronze,0 +3253,Matthew Hoover,williamsselena@moss.info,2022-10-21,"{""language"": ""ES"", ""currency"": ""MXN""}",2562.08,Silver,1 +3254,Christopher Martinez,luis77@saunders-hale.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""USD""}",8242.65,Silver,1 +3255,Emily Moore,brentguerrero@johnson-lawson.com,2020-06-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6787.85,Silver,0 +3256,Stephen Mercado,bobby80@yahoo.com,2019-12-19,"{""language"": ""DE"", ""currency"": ""USD""}",1914.61,Gold,1 +3257,Charles Hampton,donnamartin@phillips-cook.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5510.11,Silver,1 +3258,Madeline Serrano,juliemccall@yahoo.com,2022-04-18,"{""language"": ""IT"", ""currency"": ""CAD""}",4951.2,Gold,0 +3259,Morgan Gallegos,howardtaylor@hotmail.com,2024-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",4064.26,Gold,1 +3260,Maria Griffin,susan69@gmail.com,2023-11-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2776.27,Gold,1 +3261,Elizabeth Miles,waderebecca@yahoo.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""USD""}",5138.37,Bronze,0 +3262,Shannon Wiley,johnsondeborah@barajas.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""EUR""}",4563.19,Silver,0 +3263,Alexandra Long,joshua98@gmail.com,2021-02-05,"{""language"": ""ES"", ""currency"": ""USD""}",1429.59,Bronze,0 +3264,Alexandra Navarro,pattonjessica@hotmail.com,2020-05-21,"{""language"": ""IT"", ""currency"": ""USD""}",3126.77,Silver,1 +3265,Mary Garcia,johnjones@diaz.com,2021-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",4853.89,Gold,1 +3266,Kayla Rodriguez,lewiscrystal@yahoo.com,2021-11-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9823.74,Bronze,0 +3267,Mackenzie Vargas,julie42@hansen.org,2020-06-08,"{""language"": ""FR"", ""currency"": ""GBP""}",6720.64,Bronze,1 +3268,Deborah Doyle,garrett18@hotmail.com,2022-07-30,"{""language"": ""DE"", ""currency"": ""CAD""}",8104.5,Silver,1 +3269,Ashley Rollins,marybarton@gmail.com,2021-10-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2261.52,Silver,0 +3270,John Nguyen,greenbryan@hotmail.com,2024-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",6964.6,Silver,1 +3271,Mr. Mark Chapman,felliott@gmail.com,2024-11-22,"{""language"": ""FR"", ""currency"": ""USD""}",5307.71,Silver,0 +3272,Jeffrey Bates,holdersharon@taylor.info,2020-03-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1475.52,Gold,0 +3273,Steven Hernandez,jeffery40@jimenez.com,2023-11-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7988.77,Bronze,1 +3274,Erica Freeman,benitezmorgan@hotmail.com,2020-05-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8647.37,Bronze,0 +3275,Amber Frost,ehamilton@reyes.com,2022-07-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4023.33,Bronze,1 +3276,Alyssa Ramirez,michael25@hotmail.com,2020-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",6725.84,Bronze,1 +3277,James Scott,meganpadilla@charles-george.info,2024-04-14,"{""language"": ""IT"", ""currency"": ""USD""}",709.03,Gold,1 +3278,Erin Anderson,adamedwards@craig-townsend.biz,2024-08-17,"{""language"": ""DE"", ""currency"": ""CAD""}",2670.52,Silver,0 +3279,Dr. Craig Allison,phillipsmonica@hotmail.com,2023-11-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9370.47,Gold,1 +3280,Luke Oliver,bellmichael@henderson-hampton.com,2023-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",5945.17,Gold,0 +3281,Nicholas Sutton,nicole50@delacruz-jackson.com,2024-10-31,"{""language"": ""IT"", ""currency"": ""MXN""}",3065.79,Silver,1 +3282,Donald Turner,parkheather@yahoo.com,2022-10-23,"{""language"": ""EN"", ""currency"": ""USD""}",780.36,Bronze,1 +3283,Candace Ward,ronnie26@yahoo.com,2020-01-28,"{""language"": ""IT"", ""currency"": ""CAD""}",7096.61,Bronze,1 +3284,Claudia Harrington,nicholas35@davis.com,2021-12-02,"{""language"": ""ES"", ""currency"": ""CAD""}",1793.71,Silver,1 +3285,Amy Williams,cliffordpetersen@adams-thomas.com,2020-07-25,"{""language"": ""EN"", ""currency"": ""EUR""}",9786.92,Bronze,1 +3286,Tommy Lopez,diana42@gray.org,2022-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",6940.76,Bronze,1 +3287,Michelle Moran,christopher40@chapman-white.com,2023-03-21,"{""language"": ""ES"", ""currency"": ""CAD""}",9905.41,Bronze,1 +3288,Frank Moore,arivera@hotmail.com,2023-09-17,"{""language"": ""DE"", ""currency"": ""GBP""}",3439.01,Gold,1 +3289,Jennifer Norris,charlene76@hotmail.com,2024-09-29,"{""language"": ""FR"", ""currency"": ""USD""}",2171.61,Silver,1 +3290,Martin Schultz,chadkim@gmail.com,2023-04-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1328.84,Gold,1 +3291,Elaine Hall,fkim@kelley-barnes.com,2021-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",418.94,Silver,0 +3292,Valerie Carr,davisgina@murphy.biz,2020-10-25,"{""language"": ""DE"", ""currency"": ""CAD""}",2358.63,Silver,1 +3293,Deborah Owens,barbaralucas@yahoo.com,2024-02-11,"{""language"": ""ES"", ""currency"": ""EUR""}",576.09,Silver,0 +3294,Kathleen Turner,ramirezkristy@wood-hunt.com,2023-10-04,"{""language"": ""DE"", ""currency"": ""USD""}",8116.33,Bronze,0 +3295,Sara Fleming,lopezcarol@hotmail.com,2020-02-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8722.49,Silver,1 +3296,Heather Burton,jacqueline94@gmail.com,2023-12-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3019.95,Bronze,0 +3297,Chad Miller,priceandrew@hotmail.com,2020-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",1295.12,Silver,1 +3298,Justin Lopez,theresacook@johnson.com,2022-06-05,"{""language"": ""FR"", ""currency"": ""MXN""}",1168.8,Gold,1 +3299,Michael Stout,dweber@russell-wilson.com,2022-12-07,"{""language"": ""EN"", ""currency"": ""MXN""}",3309.88,Gold,0 +3300,Justin Smith,laura63@hotmail.com,2024-08-11,"{""language"": ""EN"", ""currency"": ""USD""}",2258.8,Silver,1 +3301,Kenneth Mcneil,ualvarez@yahoo.com,2021-11-11,"{""language"": ""ES"", ""currency"": ""USD""}",6243.92,Silver,1 +3302,Sarah Brooks,rgraham@gmail.com,2022-01-13,"{""language"": ""IT"", ""currency"": ""USD""}",1511.4,Gold,1 +3303,Ms. Julie James,michaelnelson@yahoo.com,2023-12-14,"{""language"": ""EN"", ""currency"": ""MXN""}",804.99,Bronze,1 +3304,Anthony Noble,william53@yahoo.com,2023-04-30,"{""language"": ""EN"", ""currency"": ""USD""}",5559.45,Silver,1 +3305,Jennifer Terry,jchavez@gmail.com,2022-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",1238.62,Silver,1 +3306,John Flores,uhorn@yahoo.com,2024-09-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8876.59,Bronze,1 +3307,Ashley Stewart,ianbradley@hotmail.com,2024-08-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2514.27,Bronze,1 +3308,Brian Butler,ashley51@walker.info,2023-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4653.5,Bronze,0 +3309,Elizabeth Patterson,petersonjoel@cook.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""USD""}",9623.34,Bronze,1 +3310,Benjamin Perez,matthew10@hotmail.com,2024-04-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3136.09,Bronze,1 +3311,Stephanie King,brandonayers@morgan-phillips.info,2024-05-29,"{""language"": ""ES"", ""currency"": ""USD""}",6728.88,Silver,1 +3312,John Mason,stephenbyrd@fowler.com,2020-07-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7393.87,Gold,0 +3313,Stephen Maynard,barbarathompson@beck.com,2021-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2044.4,Silver,0 +3314,Rachael Knight,richardfoster@hotmail.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1069.19,Bronze,1 +3315,Dawn Erickson,djones@oneill-hill.com,2023-07-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1789.0,Gold,1 +3316,Harold Wright,jennifergonzales@yahoo.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",5281.3,Bronze,1 +3317,Crystal Salazar,perrychad@owens.com,2021-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7685.96,Silver,0 +3318,Julian Hill,veronicajimenez@yahoo.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",655.29,Gold,1 +3319,Dakota Cox,jessica19@hotmail.com,2023-01-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4092.33,Bronze,0 +3320,Jeremiah Cohen,zwalsh@gmail.com,2020-11-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7531.85,Gold,0 +3321,Miguel Lopez,roger41@wilson.org,2021-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6451.4,Silver,0 +3322,Linda Fitzgerald,oneillsarah@gmail.com,2020-02-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8106.77,Bronze,1 +3323,Dana Savage,steven24@yahoo.com,2021-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",7890.14,Gold,0 +3324,David Murphy,wayne86@hotmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""USD""}",2986.55,Silver,0 +3325,Katherine Salazar,suttonmatthew@reed.info,2023-08-10,"{""language"": ""EN"", ""currency"": ""GBP""}",3999.16,Bronze,1 +3326,Ebony Chavez,williamsbrandon@gmail.com,2020-10-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4838.54,Bronze,0 +3327,Denise Harrison,reginaroth@gmail.com,2023-02-26,"{""language"": ""DE"", ""currency"": ""GBP""}",3463.34,Bronze,1 +3328,Frederick Preston,rubiojack@roman.net,2021-10-11,"{""language"": ""IT"", ""currency"": ""USD""}",8196.08,Gold,1 +3329,Donna Ware,gbrown@henderson-smith.info,2023-10-27,"{""language"": ""IT"", ""currency"": ""MXN""}",8012.36,Bronze,0 +3330,Michael Johnson,velazquezstephanie@henderson.com,2022-12-31,"{""language"": ""ES"", ""currency"": ""EUR""}",5620.29,Gold,1 +3331,Matthew Burton MD,youngkyle@gmail.com,2024-03-27,"{""language"": ""DE"", ""currency"": ""CAD""}",5191.71,Gold,1 +3332,Alyssa Weaver,aliciagreen@yahoo.com,2021-08-02,"{""language"": ""FR"", ""currency"": ""USD""}",6161.93,Gold,0 +3333,Richard Porter,deanna19@hotmail.com,2021-12-30,"{""language"": ""IT"", ""currency"": ""MXN""}",9992.16,Bronze,0 +3334,Margaret Sharp,hhudson@yahoo.com,2022-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",6757.02,Gold,1 +3335,Tracie Gomez,tomduncan@yahoo.com,2023-08-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2371.63,Bronze,1 +3336,Ann Carrillo MD,nathaniellloyd@richardson-stephenson.net,2024-04-04,"{""language"": ""ES"", ""currency"": ""EUR""}",1869.26,Gold,0 +3337,Carol Leon,hwilson@reyes-thomas.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""EUR""}",3730.25,Gold,0 +3338,Daniel Gray,katherinebyrd@shepherd.net,2020-09-15,"{""language"": ""ES"", ""currency"": ""GBP""}",8307.13,Gold,0 +3339,Christopher Garcia,aestrada@hotmail.com,2024-03-24,"{""language"": ""DE"", ""currency"": ""CAD""}",6271.27,Gold,0 +3340,Christopher Brown,browningmiguel@hotmail.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""USD""}",9073.71,Gold,0 +3341,Calvin Robertson,racheljackson@hotmail.com,2024-05-06,"{""language"": ""EN"", ""currency"": ""CAD""}",2066.92,Gold,0 +3342,Ryan Garrett,brian87@hotmail.com,2021-02-19,"{""language"": ""FR"", ""currency"": ""MXN""}",4139.94,Bronze,0 +3343,Christine Mckee,buckwilliam@yahoo.com,2022-03-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8804.93,Silver,1 +3344,Kimberly Turner,erikarios@newman-martinez.com,2021-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4831.45,Bronze,0 +3345,Jennifer Roberts,tdavis@gmail.com,2021-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1188.72,Gold,0 +3346,Timothy Villanueva,cynthiacopeland@hudson.com,2024-11-08,"{""language"": ""EN"", ""currency"": ""MXN""}",5034.12,Bronze,0 +3347,Cynthia Sullivan,mcintoshdonald@gonzalez.info,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",6846.89,Bronze,1 +3348,Carolyn Lee,davisrichard@hotmail.com,2024-08-12,"{""language"": ""DE"", ""currency"": ""EUR""}",7419.4,Silver,1 +3349,Brian Sutton,cwright@morris.com,2021-06-28,"{""language"": ""DE"", ""currency"": ""CAD""}",2334.5,Gold,0 +3350,Mr. Jeremy Hunter,wcarrillo@hotmail.com,2020-03-25,"{""language"": ""IT"", ""currency"": ""EUR""}",7748.23,Silver,1 +3351,Lisa Ball,gluna@jackson.com,2022-11-01,"{""language"": ""ES"", ""currency"": ""USD""}",5766.61,Silver,1 +3352,Eric Boyer,bgomez@yahoo.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""GBP""}",9150.58,Bronze,0 +3353,Keith Palmer,heather88@gmail.com,2024-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",3236.67,Bronze,0 +3354,Sarah Green,myersjoshua@yahoo.com,2023-04-12,"{""language"": ""DE"", ""currency"": ""MXN""}",9542.48,Silver,1 +3355,Kurt Smith,lhamilton@hotmail.com,2020-02-25,"{""language"": ""EN"", ""currency"": ""USD""}",1689.13,Gold,0 +3356,Teresa Schneider,susan57@aguirre.biz,2023-08-09,"{""language"": ""IT"", ""currency"": ""USD""}",8784.46,Gold,1 +3357,Benjamin Sanchez,curtisbutler@walker.info,2020-12-31,"{""language"": ""EN"", ""currency"": ""MXN""}",7983.66,Gold,1 +3358,Sarah Rivera,kimberlyschmidt@gmail.com,2021-12-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2161.63,Bronze,1 +3359,Brittney Hart,jason71@smith.net,2023-05-23,"{""language"": ""ES"", ""currency"": ""USD""}",1412.68,Bronze,1 +3360,Wesley Rodriguez DDS,oortega@gallagher-peterson.com,2024-03-03,"{""language"": ""IT"", ""currency"": ""EUR""}",2099.12,Bronze,0 +3361,Sharon Richard,usmith@yahoo.com,2024-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",3196.5,Gold,0 +3362,Joseph Hartman,hnunez@bowers.org,2022-01-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3968.82,Bronze,0 +3363,Thomas Nelson,mcgeejerry@garner.com,2022-08-14,"{""language"": ""ES"", ""currency"": ""USD""}",5851.4,Gold,1 +3364,Shelby Franklin,ajones@hotmail.com,2022-06-14,"{""language"": ""DE"", ""currency"": ""USD""}",1195.03,Bronze,0 +3365,Jonathan Fernandez,edavis@kaiser-jones.com,2020-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",3230.51,Bronze,0 +3366,Gary Deleon,epena@scott.biz,2020-01-01,"{""language"": ""EN"", ""currency"": ""MXN""}",4649.24,Silver,1 +3367,Shannon Perry,tsmith@anderson.com,2020-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",3119.55,Gold,0 +3368,Stacey Craig,aramirez@miranda.com,2024-03-14,"{""language"": ""IT"", ""currency"": ""GBP""}",7239.81,Silver,0 +3369,Cindy Brewer,kimberly04@montgomery.com,2022-02-19,"{""language"": ""ES"", ""currency"": ""CAD""}",9127.21,Silver,1 +3370,William Reeves,andrew00@gonzales.info,2022-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",5537.55,Bronze,1 +3371,Bobby Hahn,debbiekelly@frost.com,2021-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",784.11,Silver,1 +3372,Travis Robinson,sara91@gmail.com,2024-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",1590.39,Bronze,1 +3373,Lori Burke,raydanielle@collins-neal.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""CAD""}",5579.79,Silver,1 +3374,Jesse Leach,mariakelly@gmail.com,2022-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",5388.51,Gold,1 +3375,Sandra Hanna,janetroberts@brown.com,2021-01-29,"{""language"": ""DE"", ""currency"": ""CAD""}",6123.59,Bronze,0 +3376,Kimberly Sparks,jeremysanchez@johnson-harmon.com,2024-07-04,"{""language"": ""EN"", ""currency"": ""USD""}",4177.27,Gold,1 +3377,Mr. James Drake,bethlittle@mercado-nelson.com,2022-06-02,"{""language"": ""IT"", ""currency"": ""GBP""}",4163.46,Silver,1 +3378,David Suarez,colemanemily@mcdonald.com,2022-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",5905.3,Gold,1 +3379,Charles Brown,lthompson@kelly-santana.com,2023-07-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9527.04,Gold,1 +3380,Kathryn Robertson,hdavis@hotmail.com,2020-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",9134.85,Bronze,0 +3381,William Jordan,samantharobinson@gmail.com,2023-08-29,"{""language"": ""EN"", ""currency"": ""USD""}",8229.96,Silver,0 +3382,Albert Jackson,blankenshipmatthew@gmail.com,2023-05-04,"{""language"": ""DE"", ""currency"": ""USD""}",3796.63,Silver,0 +3383,Roy Turner,gardnermichael@joseph.info,2023-12-17,"{""language"": ""FR"", ""currency"": ""USD""}",1042.15,Silver,0 +3384,Stephanie Hamilton,abigail20@hotmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",676.88,Silver,0 +3385,George Price,vanessa61@black-walsh.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",4842.74,Bronze,1 +3386,Jennifer Murphy,barmstrong@yahoo.com,2022-08-03,"{""language"": ""ES"", ""currency"": ""CAD""}",8025.5,Bronze,0 +3387,Logan Patterson,uwest@yahoo.com,2021-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",4015.57,Bronze,1 +3388,Kristin Black,myersmorgan@mclaughlin-fox.com,2021-06-30,"{""language"": ""EN"", ""currency"": ""CAD""}",6558.39,Bronze,1 +3389,Robert Johnson,garciaamanda@hester.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""EUR""}",9309.1,Bronze,0 +3390,Krystal Roberts,robertssteven@yahoo.com,2024-11-24,"{""language"": ""DE"", ""currency"": ""CAD""}",539.81,Bronze,0 +3391,Debra Crosby,sergio50@weiss.info,2020-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4282.9,Gold,0 +3392,Judy Daniel,amandadixon@hotmail.com,2021-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",5222.01,Silver,0 +3393,Brittany Martin,orobinson@lewis.com,2023-08-05,"{""language"": ""IT"", ""currency"": ""GBP""}",3805.32,Gold,1 +3394,Elizabeth Wilcox,kathleen84@russell-rasmussen.org,2023-04-14,"{""language"": ""FR"", ""currency"": ""CAD""}",6129.91,Silver,1 +3395,Carrie Chapman,obowen@humphrey.net,2021-06-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4910.97,Gold,1 +3396,Tyler Freeman,wowens@caldwell.net,2024-07-03,"{""language"": ""FR"", ""currency"": ""GBP""}",3684.9,Gold,0 +3397,Lisa Wolf,elizabeth49@robinson.com,2023-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",2561.1,Silver,1 +3398,Aaron Martin,ronald42@gmail.com,2020-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",4727.22,Silver,1 +3399,Victoria King,dianajoyce@hotmail.com,2023-08-19,"{""language"": ""ES"", ""currency"": ""GBP""}",376.58,Gold,1 +3400,Bryce Ramirez,rle@hotmail.com,2024-05-13,"{""language"": ""FR"", ""currency"": ""CAD""}",6481.14,Bronze,0 +3401,Kenneth Nunez,twilliams@higgins-lane.biz,2024-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",6877.25,Silver,0 +3402,Kimberly Howe,vobrien@rogers.com,2021-03-19,"{""language"": ""EN"", ""currency"": ""EUR""}",2511.34,Gold,0 +3403,Mark Brown,oguzman@davis.com,2024-09-06,"{""language"": ""ES"", ""currency"": ""USD""}",1956.26,Silver,1 +3404,David Griffin,karen55@hotmail.com,2020-05-15,"{""language"": ""IT"", ""currency"": ""USD""}",4918.16,Silver,0 +3405,Casey Flowers,devin85@bishop-lewis.info,2022-07-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4715.24,Gold,1 +3406,Scott Hoffman,stanleyangel@sims.com,2020-08-27,"{""language"": ""ES"", ""currency"": ""CAD""}",4965.86,Gold,1 +3407,Angelica Horton,karenrodriguez@hotmail.com,2021-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",4095.68,Bronze,1 +3408,Richard Dennis,john97@hunt.info,2023-12-30,"{""language"": ""ES"", ""currency"": ""USD""}",1303.56,Silver,1 +3409,Louis Johnston,blakedavid@hotmail.com,2023-02-06,"{""language"": ""ES"", ""currency"": ""USD""}",354.78,Silver,0 +3410,Roy Simon,kathleencortez@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""EUR""}",9871.67,Gold,0 +3411,Kristen Ross,devin85@yahoo.com,2020-09-16,"{""language"": ""IT"", ""currency"": ""USD""}",8875.14,Bronze,0 +3412,Ricky Livingston,orice@yahoo.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5784.2,Silver,1 +3413,Ricky Long,handerson@adams-riley.com,2024-06-24,"{""language"": ""ES"", ""currency"": ""USD""}",3363.27,Bronze,1 +3414,Megan Sullivan,amyvaldez@yahoo.com,2023-02-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5691.74,Gold,1 +3415,Joel Wilson,johnsondonna@hotmail.com,2022-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",2440.65,Gold,1 +3416,Heather Morgan,aprilbird@yahoo.com,2023-04-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9336.96,Bronze,1 +3417,Elizabeth Fuentes,sara20@hotmail.com,2023-05-27,"{""language"": ""DE"", ""currency"": ""USD""}",3204.51,Silver,1 +3418,Joshua Campbell,kevinmacdonald@hotmail.com,2023-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2231.11,Silver,1 +3419,Renee Johnson,lunanatasha@may.com,2021-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",8215.8,Silver,0 +3420,Richard Woods,patrickswanson@hotmail.com,2020-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8336.8,Gold,1 +3421,Mr. Joshua Rodriguez PhD,ybarber@smith.com,2020-07-06,"{""language"": ""FR"", ""currency"": ""GBP""}",787.5,Bronze,1 +3422,Heidi Fox,salinasstephanie@yahoo.com,2024-04-27,"{""language"": ""FR"", ""currency"": ""EUR""}",9163.25,Bronze,0 +3423,Jessica Robertson,ashley76@dixon.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""MXN""}",9688.74,Silver,1 +3424,Kim Barnes,nherrera@yahoo.com,2021-07-27,"{""language"": ""ES"", ""currency"": ""CAD""}",5775.42,Silver,1 +3425,John Johnson,juan85@yahoo.com,2021-09-06,"{""language"": ""IT"", ""currency"": ""GBP""}",7130.98,Silver,0 +3426,Justin Contreras,amandaruiz@chambers-bowman.net,2023-07-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4901.46,Bronze,0 +3427,John Perez,pamelafitzgerald@gonzalez-cox.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",4891.83,Bronze,0 +3428,Kelly Lawrence MD,coxsherry@gmail.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""EUR""}",2890.77,Silver,0 +3429,Zachary Guerrero,jacquelinebrown@jefferson.com,2024-11-07,"{""language"": ""ES"", ""currency"": ""EUR""}",9483.5,Gold,1 +3430,Mark Hatfield,jenniferhaynes@benitez.com,2022-05-13,"{""language"": ""EN"", ""currency"": ""MXN""}",6210.99,Gold,0 +3431,Tiffany Peck DDS,zhangjames@yahoo.com,2023-12-15,"{""language"": ""ES"", ""currency"": ""USD""}",8737.42,Gold,1 +3432,Julie Meyer,carrie66@thompson.biz,2021-10-15,"{""language"": ""ES"", ""currency"": ""MXN""}",1379.56,Bronze,0 +3433,Michelle Johnson,williamsbrian@yahoo.com,2021-10-07,"{""language"": ""ES"", ""currency"": ""CAD""}",814.26,Silver,0 +3434,Deborah English,dillonjames@drake.com,2020-10-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9388.66,Gold,1 +3435,James Dean,robinsonmichael@harris.com,2020-10-03,"{""language"": ""ES"", ""currency"": ""MXN""}",53.13,Gold,0 +3436,Maria Barrett,jennifer10@brennan.com,2020-06-27,"{""language"": ""DE"", ""currency"": ""EUR""}",1174.12,Gold,0 +3437,Kimberly Johnson,davidthomas@yahoo.com,2020-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4086.7,Silver,1 +3438,Dawn Myers,roachcassandra@gray.net,2020-09-05,"{""language"": ""DE"", ""currency"": ""GBP""}",3083.73,Silver,0 +3439,Gregory Duffy,torresangie@gmail.com,2023-12-06,"{""language"": ""EN"", ""currency"": ""EUR""}",3572.71,Bronze,0 +3440,Dawn Stewart,blane@stewart.com,2022-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",9310.16,Silver,1 +3441,Lauren Griffin,bthompson@gmail.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""GBP""}",446.28,Bronze,1 +3442,Heather Mccarthy,etorres@yahoo.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9093.51,Bronze,1 +3443,Jonathan Tucker,perryjessica@hotmail.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",4412.68,Bronze,0 +3444,Jason Lambert,daniel52@burnett.net,2023-02-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5637.05,Bronze,1 +3445,Robert Crawford,tinalynn@gmail.com,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",8815.32,Bronze,1 +3446,Shari Lee,dominic06@alvarado-page.org,2021-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",939.43,Bronze,0 +3447,Timothy Mercado,jmcguire@gmail.com,2020-03-02,"{""language"": ""FR"", ""currency"": ""EUR""}",3353.77,Bronze,0 +3448,Cynthia Miller,barbarajoyce@hotmail.com,2023-12-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4035.65,Silver,0 +3449,William Jarvis,peter61@finley.biz,2021-01-18,"{""language"": ""IT"", ""currency"": ""GBP""}",1925.59,Silver,0 +3450,Travis Bailey,martinezstephen@hernandez-jacobson.biz,2022-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",1581.23,Gold,1 +3451,Mr. Dale Morales Jr.,bowersderek@mccarthy.net,2020-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",3927.45,Silver,0 +3452,Amanda Brewer,burgessangela@hotmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""MXN""}",8533.36,Gold,0 +3453,Lisa Butler,wrightveronica@hotmail.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",7148.87,Bronze,1 +3454,Michael Richards,walterhancock@johnson.org,2024-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",5548.73,Silver,1 +3455,Laura Hernandez,danielhatfield@sanchez-kaiser.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",5256.58,Silver,0 +3456,Sarah Green,kfowler@gmail.com,2023-10-20,"{""language"": ""ES"", ""currency"": ""USD""}",680.2,Silver,0 +3457,Christina Smith,cummingsjoseph@carroll.info,2021-01-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2320.14,Bronze,1 +3458,Stephen Jones,campbellchristina@cooley.com,2019-12-20,"{""language"": ""DE"", ""currency"": ""MXN""}",2060.11,Bronze,1 +3459,Laura Cameron,jasonclark@hotmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9727.86,Silver,1 +3460,Natasha Peterson,mackenziefreeman@yahoo.com,2023-04-18,"{""language"": ""FR"", ""currency"": ""CAD""}",4160.53,Gold,1 +3461,Tiffany King,bateslynn@phillips.com,2020-12-08,"{""language"": ""FR"", ""currency"": ""CAD""}",8159.73,Silver,1 +3462,Blake Marquez,jacksonangela@robinson-baker.com,2023-08-17,"{""language"": ""FR"", ""currency"": ""EUR""}",9943.58,Gold,0 +3463,Todd Mccormick,larsensierra@valentine.org,2022-04-15,"{""language"": ""EN"", ""currency"": ""CAD""}",9506.62,Bronze,0 +3464,John Miller,kayla88@jones.com,2021-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",7879.88,Bronze,0 +3465,Lauren Long,nicolevega@gonzalez.com,2019-12-13,"{""language"": ""FR"", ""currency"": ""GBP""}",2941.98,Gold,0 +3466,Heather Watkins,michael64@gallagher.com,2024-04-05,"{""language"": ""EN"", ""currency"": ""GBP""}",4373.39,Gold,0 +3467,Barbara Hunt,khughes@mercado.info,2024-11-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3497.83,Gold,1 +3468,Mark Hart,craigglass@gmail.com,2024-09-24,"{""language"": ""DE"", ""currency"": ""MXN""}",2518.57,Gold,0 +3469,Jennifer Johnson DDS,qlee@gmail.com,2020-07-02,"{""language"": ""EN"", ""currency"": ""GBP""}",414.96,Gold,0 +3470,Joshua Gonzalez,frankanthony@yahoo.com,2021-09-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9083.13,Gold,1 +3471,Amanda Hicks,ysimmons@rice.com,2024-05-07,"{""language"": ""ES"", ""currency"": ""EUR""}",6793.74,Silver,1 +3472,Suzanne Sanders,lisataylor@reed.com,2021-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",674.29,Bronze,1 +3473,Kyle White,william65@yahoo.com,2022-11-11,"{""language"": ""EN"", ""currency"": ""USD""}",3690.89,Silver,0 +3474,Lisa Gonzales,ginaskinner@barber.org,2020-05-26,"{""language"": ""ES"", ""currency"": ""GBP""}",4756.89,Bronze,0 +3475,Derek Lee,vmartin@woods-mclean.com,2024-05-08,"{""language"": ""DE"", ""currency"": ""CAD""}",1139.98,Silver,1 +3476,Alexandra Lopez,bartlettchris@gmail.com,2020-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",1590.46,Silver,1 +3477,Connie Hawkins,desireelopez@cruz-nelson.com,2023-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",4445.97,Gold,0 +3478,Nicolas Mcconnell,gordoncarl@gmail.com,2022-07-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5372.51,Gold,0 +3479,Jeremy Hicks,rstone@edwards.com,2021-01-28,"{""language"": ""ES"", ""currency"": ""MXN""}",6792.31,Gold,0 +3480,Joshua Hensley Jr.,ericjackson@hotmail.com,2021-12-06,"{""language"": ""IT"", ""currency"": ""USD""}",1196.73,Silver,1 +3481,Mr. David Pugh,nramos@espinoza.org,2024-07-28,"{""language"": ""EN"", ""currency"": ""GBP""}",7731.23,Gold,0 +3482,Mary Mendez,dunlapjoseph@hotmail.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9597.5,Bronze,0 +3483,Daniel Jackson,parkerashley@gmail.com,2024-01-22,"{""language"": ""EN"", ""currency"": ""CAD""}",225.33,Gold,1 +3484,John Ferguson,sarahclark@thompson-frost.org,2020-01-12,"{""language"": ""DE"", ""currency"": ""EUR""}",203.79,Silver,1 +3485,Robert Patterson,patriciareyes@yahoo.com,2023-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",6591.63,Silver,1 +3486,Zachary Sims,david97@yahoo.com,2024-06-16,"{""language"": ""DE"", ""currency"": ""USD""}",7773.02,Bronze,0 +3487,Ashley Hicks,bonniehess@fletcher.biz,2020-10-06,"{""language"": ""IT"", ""currency"": ""CAD""}",7639.83,Bronze,0 +3488,Richard Terry,jboone@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""MXN""}",2893.75,Gold,0 +3489,Allison Hill,levans@fitzpatrick.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""USD""}",9912.08,Bronze,0 +3490,Jasmine Wilcox,twilliams@andrews.biz,2022-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9203.05,Gold,0 +3491,Logan Thomas,fwu@howard-miller.com,2020-06-10,"{""language"": ""FR"", ""currency"": ""GBP""}",8486.44,Silver,1 +3492,Matthew Gonzalez,joshuapeters@gmail.com,2022-07-30,"{""language"": ""ES"", ""currency"": ""CAD""}",4593.16,Gold,0 +3493,Kimberly Gentry,ygeorge@gmail.com,2020-05-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5784.16,Bronze,1 +3494,Victoria Jones,ericfranklin@yahoo.com,2021-01-24,"{""language"": ""IT"", ""currency"": ""USD""}",85.44,Gold,0 +3495,Connor Michael,martinezmichele@yahoo.com,2021-01-10,"{""language"": ""FR"", ""currency"": ""USD""}",8624.91,Silver,0 +3496,Danielle Davis,dwayne30@hanson-davidson.com,2023-02-18,"{""language"": ""DE"", ""currency"": ""USD""}",7971.52,Silver,0 +3497,Jonathan Clark,cohencurtis@hutchinson-henry.com,2021-04-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4313.16,Silver,0 +3498,Stephanie Mendoza,robert27@yahoo.com,2020-09-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3990.96,Silver,1 +3499,Christopher Espinoza,roseholloway@hotmail.com,2023-10-04,"{""language"": ""IT"", ""currency"": ""MXN""}",4692.0,Silver,1 +3500,Tracy Rodriguez,nancymaxwell@hotmail.com,2022-01-30,"{""language"": ""IT"", ""currency"": ""USD""}",8811.65,Gold,0 +3501,Aaron Howell,watsonsydney@gmail.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""USD""}",4836.25,Gold,0 +3502,Duane Foster,howardlisa@hamilton.com,2021-11-06,"{""language"": ""EN"", ""currency"": ""CAD""}",5530.6,Silver,1 +3503,Kelly Malone,phanna@james.com,2021-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6035.2,Bronze,1 +3504,Kyle Jackson,hcase@hotmail.com,2022-05-12,"{""language"": ""EN"", ""currency"": ""CAD""}",916.03,Gold,0 +3505,Gerald Roth,smithkaren@hotmail.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7198.73,Gold,1 +3506,Tyler Wong,richardyu@yu-miller.org,2022-08-22,"{""language"": ""DE"", ""currency"": ""GBP""}",5420.78,Silver,0 +3507,Johnathan Murray,brownjasmin@gutierrez.net,2020-03-01,"{""language"": ""DE"", ""currency"": ""USD""}",8493.22,Bronze,1 +3508,Rhonda Burke,kristi19@padilla.com,2021-12-18,"{""language"": ""EN"", ""currency"": ""EUR""}",2187.78,Silver,0 +3509,Matthew Park,johnsondakota@hotmail.com,2020-10-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7855.24,Silver,1 +3510,Paul Walker,edwindavis@patterson.com,2024-05-21,"{""language"": ""EN"", ""currency"": ""GBP""}",75.59,Silver,1 +3511,Catherine Hatfield,brentrubio@jackson.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""MXN""}",8038.81,Bronze,0 +3512,Amy Patterson,martinjonathan@hotmail.com,2023-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",861.41,Bronze,0 +3513,Mark Alvarez,hmiller@gmail.com,2024-12-05,"{""language"": ""DE"", ""currency"": ""USD""}",2945.46,Gold,1 +3514,Ricky Scott,michellecollins@gmail.com,2024-06-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5583.78,Bronze,0 +3515,Terry Stewart,johnblair@garcia-johnson.com,2023-09-13,"{""language"": ""DE"", ""currency"": ""EUR""}",3154.85,Gold,0 +3516,Taylor Barajas,michaelburke@ponce.com,2021-06-10,"{""language"": ""ES"", ""currency"": ""USD""}",9429.39,Gold,0 +3517,Jack Morris,tiffanyleonard@hotmail.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""MXN""}",6497.07,Gold,1 +3518,Yvette Turner,scottchen@yahoo.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",4731.23,Silver,0 +3519,Debra Rios,christophergonzalez@hotmail.com,2022-11-22,"{""language"": ""DE"", ""currency"": ""USD""}",2140.48,Silver,0 +3520,Jessica Leonard,paige18@pacheco.com,2024-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",3770.07,Gold,1 +3521,Christopher Black,sthomas@luna-joseph.com,2020-08-06,"{""language"": ""IT"", ""currency"": ""USD""}",9181.63,Bronze,0 +3522,Melinda Clark,carolyn68@le.com,2021-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",9148.73,Gold,0 +3523,David Kent,carla84@sandoval.com,2023-03-13,"{""language"": ""IT"", ""currency"": ""EUR""}",4715.31,Silver,1 +3524,William Fisher,justinthomas@hotmail.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""MXN""}",9737.56,Bronze,0 +3525,Jason Bailey,jennifermartin@yahoo.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""GBP""}",4067.67,Gold,0 +3526,Amy Ward,rowejill@hotmail.com,2021-02-17,"{""language"": ""EN"", ""currency"": ""EUR""}",9606.72,Gold,1 +3527,Lydia Brown,qlawson@yahoo.com,2021-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",8700.05,Bronze,0 +3528,Dawn Robbins,judith21@hotmail.com,2024-05-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4689.6,Bronze,0 +3529,Stacey Rogers,goldenbradley@gmail.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2373.46,Silver,1 +3530,Susan Watkins,kathleenwilson@hotmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",4198.63,Bronze,0 +3531,Brittney Jones,conwayjuan@king.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",3022.75,Silver,0 +3532,Ryan Hernandez,richardlee@gmail.com,2022-09-05,"{""language"": ""IT"", ""currency"": ""USD""}",5542.99,Gold,0 +3533,Derek Jackson,hartnancy@velez-saunders.com,2022-11-25,"{""language"": ""DE"", ""currency"": ""EUR""}",3554.5,Silver,0 +3534,Mercedes Graham,brandonjackson@hall.biz,2021-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",3362.01,Bronze,0 +3535,Lisa Miller,ytyler@howell.com,2021-04-03,"{""language"": ""IT"", ""currency"": ""MXN""}",8094.19,Bronze,0 +3536,Brian Jones,bmacias@jordan.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4242.11,Bronze,1 +3537,Timothy Moore,amanda19@gmail.com,2020-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",362.21,Gold,1 +3538,Catherine Carr,ksmith@gmail.com,2023-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",6524.1,Bronze,0 +3539,Mark Tyler,clarence63@forbes.com,2021-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8284.68,Bronze,1 +3540,Dana Smith,qadkins@hodge-ortiz.com,2023-11-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8888.28,Silver,1 +3541,Wendy Barnes,glee@lewis.info,2022-12-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4871.11,Gold,0 +3542,Timothy Reynolds,lydia67@warren.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",5674.15,Silver,0 +3543,Angela Cruz,awalker@castro-casey.com,2023-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",1078.46,Gold,0 +3544,Beth Walls,xgarcia@hotmail.com,2021-12-16,"{""language"": ""IT"", ""currency"": ""EUR""}",4620.59,Silver,1 +3545,Stephanie Hendrix,kochrobert@gmail.com,2020-12-28,"{""language"": ""IT"", ""currency"": ""CAD""}",3949.98,Gold,0 +3546,Deborah Martinez,lisa74@hotmail.com,2022-11-26,"{""language"": ""IT"", ""currency"": ""CAD""}",3257.26,Gold,0 +3547,Brandon Miller,ctaylor@barrera-poole.biz,2019-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",6430.71,Bronze,0 +3548,Margaret Vaughn,cwoods@gmail.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5411.79,Gold,1 +3549,Karen Shaw,ashleyholmes@yahoo.com,2020-02-20,"{""language"": ""IT"", ""currency"": ""CAD""}",9879.51,Gold,1 +3550,Laura Hall,samanthawallace@yahoo.com,2020-09-14,"{""language"": ""EN"", ""currency"": ""CAD""}",7514.47,Silver,1 +3551,Taylor Roberts,david78@hicks.com,2020-05-27,"{""language"": ""IT"", ""currency"": ""CAD""}",3732.1,Bronze,1 +3552,Seth Gonzalez,hannah00@zimmerman-cox.com,2020-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",127.9,Bronze,0 +3553,Guy Ellis,matthewwilliams@smith.com,2021-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",362.55,Gold,1 +3554,Kathryn Davidson,cassandra24@murphy-fleming.com,2020-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",247.58,Silver,0 +3555,Michael Murray,aaronrose@yahoo.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",7455.2,Gold,0 +3556,Christopher Lutz,revans@jones.biz,2024-07-17,"{""language"": ""FR"", ""currency"": ""USD""}",8930.12,Silver,1 +3557,Tracy Manning,tcarney@brown.net,2022-02-12,"{""language"": ""IT"", ""currency"": ""EUR""}",3380.42,Gold,0 +3558,Angela Taylor,plopez@guerrero-chaney.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""GBP""}",8400.52,Bronze,1 +3559,Sara Hill,doriswilson@ward.net,2021-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",3742.42,Bronze,0 +3560,Louis Edwards,janiceshaw@mitchell.com,2022-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",3791.27,Gold,1 +3561,Michael Bennett,forbesamy@gmail.com,2024-01-22,"{""language"": ""IT"", ""currency"": ""MXN""}",3734.11,Silver,1 +3562,Crystal Fernandez,robert20@gmail.com,2020-04-15,"{""language"": ""DE"", ""currency"": ""CAD""}",3630.43,Gold,1 +3563,Darlene Hobbs MD,donald49@perez.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",7404.62,Silver,1 +3564,Suzanne Williams,bthomas@hotmail.com,2020-02-20,"{""language"": ""FR"", ""currency"": ""MXN""}",3717.23,Bronze,1 +3565,Christopher Weber,autumnmiller@gmail.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7581.04,Bronze,1 +3566,Matthew Lara,bpena@hotmail.com,2023-11-18,"{""language"": ""EN"", ""currency"": ""EUR""}",1670.9,Gold,0 +3567,Joseph Santos,michael40@yahoo.com,2019-12-31,"{""language"": ""FR"", ""currency"": ""MXN""}",7612.56,Bronze,0 +3568,Christopher Mann,triciaesparza@jenkins-harrison.com,2022-10-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6634.57,Gold,0 +3569,Blake Barker,sharonmann@yahoo.com,2023-05-19,"{""language"": ""DE"", ""currency"": ""USD""}",360.61,Gold,1 +3570,Jamie Davis,sandra22@saunders.com,2022-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9452.36,Silver,0 +3571,Jeffery Robinson,eatonglenn@hotmail.com,2023-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",4201.53,Silver,0 +3572,Dr. Linda Bird,wflowers@hotmail.com,2021-03-19,"{""language"": ""ES"", ""currency"": ""USD""}",2035.62,Bronze,1 +3573,Betty Chen,jgibson@hotmail.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""GBP""}",1334.75,Gold,1 +3574,Jay Davis,nancymoore@gmail.com,2023-12-31,"{""language"": ""EN"", ""currency"": ""GBP""}",3413.88,Gold,0 +3575,Brian Levy,galvanmark@yahoo.com,2023-03-09,"{""language"": ""FR"", ""currency"": ""GBP""}",8016.76,Bronze,1 +3576,Todd Horton,dawn90@farley.com,2021-03-12,"{""language"": ""FR"", ""currency"": ""GBP""}",9781.88,Gold,1 +3577,Ernest Perez,kennethgoodman@gmail.com,2021-06-27,"{""language"": ""ES"", ""currency"": ""MXN""}",2233.74,Gold,1 +3578,Kevin Friedman,markmcintyre@wright-evans.com,2020-02-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8626.38,Silver,1 +3579,Melissa Hernandez,ujacobs@keith.info,2022-08-29,"{""language"": ""ES"", ""currency"": ""GBP""}",7185.61,Silver,1 +3580,Robert Lamb,mbishop@mcdaniel.com,2023-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",1894.7,Silver,1 +3581,Larry Gonzales,kristina83@yahoo.com,2020-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5449.86,Silver,0 +3582,Dean Warren,lmyers@hotmail.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3028.68,Bronze,0 +3583,Leon Kramer,jacquelinejimenez@hotmail.com,2024-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",9178.46,Silver,1 +3584,Christopher Carpenter,meganrobinson@yahoo.com,2023-12-07,"{""language"": ""EN"", ""currency"": ""GBP""}",572.9,Bronze,1 +3585,Kendra Campos,brandonchandler@watson.info,2024-07-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8232.89,Bronze,1 +3586,Angela Mayer,wlopez@hoover.info,2022-12-18,"{""language"": ""DE"", ""currency"": ""USD""}",8636.1,Bronze,0 +3587,Julia Wilson,rosekim@yahoo.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""CAD""}",8529.89,Bronze,1 +3588,Eric Rodriguez,johnyoung@yahoo.com,2024-01-21,"{""language"": ""FR"", ""currency"": ""USD""}",133.06,Silver,1 +3589,Noah Jensen,amymeyers@lowe.com,2024-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",2428.05,Bronze,0 +3590,Dr. Rachel Cummings,valentineryan@wilson.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4686.81,Bronze,1 +3591,David Williams,bsilva@yahoo.com,2023-09-28,"{""language"": ""DE"", ""currency"": ""EUR""}",8266.64,Gold,1 +3592,Jonathan Brady MD,bowmanjulie@yahoo.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",9345.7,Silver,0 +3593,Whitney Young,robert74@mullins-lee.com,2024-04-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8452.57,Silver,1 +3594,Jason Oconnell,crystalforbes@hotmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9566.06,Bronze,0 +3595,Lindsey Herman,otrujillo@hotmail.com,2024-07-09,"{""language"": ""DE"", ""currency"": ""CAD""}",5374.98,Gold,0 +3596,Cynthia Moore,hayesthomas@harris-fletcher.biz,2020-02-03,"{""language"": ""ES"", ""currency"": ""MXN""}",8174.74,Gold,0 +3597,Bryan Mitchell,keith74@weaver.com,2024-11-02,"{""language"": ""IT"", ""currency"": ""CAD""}",7544.46,Bronze,0 +3598,Martin Figueroa,ggrant@foster.com,2023-03-04,"{""language"": ""DE"", ""currency"": ""CAD""}",3006.94,Gold,1 +3599,Paula Cox,daniel09@montes-lopez.com,2024-03-17,"{""language"": ""DE"", ""currency"": ""CAD""}",1872.44,Bronze,0 +3600,Philip Ward,victoria65@hotmail.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""EUR""}",2264.77,Gold,0 +3601,Brian Webster PhD,sfrank@hughes.net,2023-02-18,"{""language"": ""FR"", ""currency"": ""CAD""}",6901.49,Gold,0 +3602,Brandon Little,krodriguez@yahoo.com,2021-08-05,"{""language"": ""ES"", ""currency"": ""CAD""}",706.91,Bronze,1 +3603,Rebecca Anderson,uhouston@yahoo.com,2024-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",9723.38,Bronze,1 +3604,Andrew Cross,jwilliamson@hotmail.com,2020-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7302.69,Silver,0 +3605,Mike Watson,pamela92@yahoo.com,2023-02-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4652.82,Gold,0 +3606,Tracy Morrison MD,smithkim@stevenson.com,2022-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",1171.33,Silver,1 +3607,Emily Davidson,mistyedwards@carney.com,2022-12-14,"{""language"": ""IT"", ""currency"": ""USD""}",6982.52,Bronze,0 +3608,Jacob Powell,richardhawkins@yahoo.com,2020-12-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5480.83,Silver,1 +3609,Julie Parker,elopez@gmail.com,2020-11-03,"{""language"": ""ES"", ""currency"": ""USD""}",5749.53,Bronze,1 +3610,Aaron Brooks,oking@ward-thomas.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""MXN""}",107.56,Silver,1 +3611,Debra Franklin,matthew90@gould-cortez.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""USD""}",9461.77,Bronze,1 +3612,Tonya Martin,brian78@yahoo.com,2023-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",8754.44,Bronze,0 +3613,Chad Skinner,ralphmartinez@hotmail.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9825.9,Gold,0 +3614,Nicole Cunningham,amycrane@baker-mcdonald.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",6869.18,Bronze,1 +3615,Crystal Ellis,fredericksilva@allen-mccarty.net,2024-02-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9784.65,Bronze,1 +3616,John Fritz DDS,bhenderson@gmail.com,2021-06-03,"{""language"": ""EN"", ""currency"": ""GBP""}",4162.0,Gold,0 +3617,Melissa Anderson,zlawrence@lawrence.com,2024-01-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8464.24,Bronze,0 +3618,Juan Johnson,wmartinez@castillo.com,2024-01-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9685.48,Gold,1 +3619,Kathleen Lucas,hughescrystal@thompson.com,2024-09-03,"{""language"": ""IT"", ""currency"": ""EUR""}",9040.72,Silver,0 +3620,Judy Ramirez,wcline@hanson.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4087.53,Gold,1 +3621,Dawn Deleon,gomezchristopher@oconnor.com,2021-01-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3929.49,Gold,1 +3622,Amy Atkinson,estesevelyn@sanchez.info,2020-02-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7146.99,Gold,0 +3623,Antonio Fletcher,johnriley@alexander-turner.biz,2024-01-29,"{""language"": ""EN"", ""currency"": ""MXN""}",6153.92,Gold,1 +3624,Sue Montgomery,joseph69@gmail.com,2024-03-14,"{""language"": ""DE"", ""currency"": ""EUR""}",4834.1,Bronze,1 +3625,Keith Mendoza,nicholas64@smith-sherman.net,2024-05-18,"{""language"": ""FR"", ""currency"": ""USD""}",7274.05,Bronze,1 +3626,Allison Jacobs,samantha37@mccall.com,2021-05-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9740.18,Silver,1 +3627,Lisa Henry,brenda02@hotmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""USD""}",6126.31,Gold,1 +3628,Lori Rodgers,taguilar@hotmail.com,2021-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7604.02,Bronze,0 +3629,David Mathews,adamunderwood@cohen.com,2022-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7130.54,Gold,0 +3630,Shannon Weeks,ryanpope@hotmail.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",9102.04,Bronze,1 +3631,Samantha Roy,amandanelson@yahoo.com,2024-09-03,"{""language"": ""DE"", ""currency"": ""MXN""}",7092.04,Gold,0 +3632,Sonia Rangel,michellerobinson@parks-dixon.com,2023-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",4071.41,Silver,1 +3633,Michele Le,waynecross@hotmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",8980.3,Gold,0 +3634,Terri Allen,jamestorres@yahoo.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5835.77,Silver,1 +3635,Cassie Black,webbbryan@anthony-miller.com,2021-02-28,"{""language"": ""ES"", ""currency"": ""GBP""}",5146.68,Gold,0 +3636,Jessica May,suzanne05@yahoo.com,2020-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",354.45,Gold,0 +3637,Elizabeth Wheeler,ohuang@leonard.com,2020-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6069.87,Silver,1 +3638,Tracy Pierce,kvelasquez@gomez.org,2021-05-18,"{""language"": ""ES"", ""currency"": ""MXN""}",4227.68,Bronze,1 +3639,Jon Cooke,ethan92@rose-smith.net,2021-11-22,"{""language"": ""ES"", ""currency"": ""MXN""}",9293.34,Silver,0 +3640,Trevor Rivera,stewartdavid@yahoo.com,2021-02-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1636.91,Silver,1 +3641,Jennifer Villarreal,stonesusan@lopez-kidd.biz,2021-12-25,"{""language"": ""FR"", ""currency"": ""EUR""}",9108.07,Gold,1 +3642,Samantha Ruiz,mary77@hotmail.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",9420.44,Gold,0 +3643,Kenneth Meyers,sandovaljames@levy.com,2020-01-30,"{""language"": ""DE"", ""currency"": ""USD""}",8741.58,Gold,1 +3644,Joel Choi,donaldmathews@adams-gilbert.net,2020-01-26,"{""language"": ""ES"", ""currency"": ""GBP""}",3516.43,Silver,1 +3645,Brianna Crawford,williamthomas@garrett.com,2021-08-31,"{""language"": ""FR"", ""currency"": ""CAD""}",2594.95,Silver,0 +3646,Scott Wilson,esparzaashley@english.org,2022-06-08,"{""language"": ""ES"", ""currency"": ""GBP""}",227.49,Silver,0 +3647,Laura Lowe,wdowns@gmail.com,2024-02-18,"{""language"": ""EN"", ""currency"": ""GBP""}",8142.8,Silver,1 +3648,Donna Henry,davidjones@hotmail.com,2022-01-14,"{""language"": ""ES"", ""currency"": ""GBP""}",4380.61,Gold,1 +3649,Bridget Nielsen,yhernandez@alexander.info,2023-04-01,"{""language"": ""FR"", ""currency"": ""GBP""}",7694.01,Silver,1 +3650,Shannon Marquez,amy06@hotmail.com,2020-08-24,"{""language"": ""ES"", ""currency"": ""CAD""}",8385.74,Silver,1 +3651,Timothy Curtis,jpena@graham.com,2022-03-04,"{""language"": ""DE"", ""currency"": ""USD""}",1634.64,Gold,0 +3652,Lonnie Serrano,kenneth68@gmail.com,2024-07-06,"{""language"": ""EN"", ""currency"": ""EUR""}",3944.22,Bronze,0 +3653,Ashley Powell,joshuayoung@wright.com,2021-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6584.77,Bronze,1 +3654,Sean Greene,bryanholder@yahoo.com,2021-10-02,"{""language"": ""DE"", ""currency"": ""GBP""}",8447.87,Bronze,1 +3655,Nancy Cooper,jonathan84@hotmail.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""USD""}",5038.11,Silver,0 +3656,Kayla Wood,xbrewer@schroeder.biz,2022-11-18,"{""language"": ""ES"", ""currency"": ""EUR""}",569.85,Gold,1 +3657,Jerry Johnson,nwoodard@gmail.com,2021-01-02,"{""language"": ""IT"", ""currency"": ""EUR""}",7571.92,Silver,1 +3658,Debra Miranda,fleach@daniels-gross.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""GBP""}",5236.31,Bronze,1 +3659,Clinton Herman,allison15@gmail.com,2020-04-22,"{""language"": ""EN"", ""currency"": ""EUR""}",6206.23,Silver,1 +3660,Dr. Billy Wiley,morgan24@gmail.com,2023-10-11,"{""language"": ""IT"", ""currency"": ""GBP""}",9510.51,Bronze,0 +3661,Brian Carter,yrosales@jones-lewis.net,2021-07-15,"{""language"": ""FR"", ""currency"": ""CAD""}",1354.14,Gold,1 +3662,Nathan Braun,robertlee@butler.com,2023-08-30,"{""language"": ""EN"", ""currency"": ""EUR""}",2288.18,Gold,1 +3663,Kenneth Burton,henry53@klein.info,2023-07-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1520.19,Bronze,0 +3664,John Powell,gtravis@gmail.com,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",433.71,Silver,1 +3665,Joanna Ferrell,ahughes@gmail.com,2024-02-12,"{""language"": ""IT"", ""currency"": ""USD""}",353.81,Gold,0 +3666,Kimberly Williams,iking@gmail.com,2019-12-12,"{""language"": ""FR"", ""currency"": ""USD""}",7257.46,Gold,1 +3667,Jordan Terry,debrawilson@stewart.biz,2022-05-25,"{""language"": ""EN"", ""currency"": ""GBP""}",4434.14,Silver,1 +3668,Jeffrey Fisher,lleonard@todd-ho.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6939.77,Gold,0 +3669,Marcus Le,shanemullins@wiley.info,2024-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",7438.27,Gold,1 +3670,Megan Morales,trevor91@lee.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""USD""}",3245.14,Gold,0 +3671,Angela Garrett,mackwilliam@odom-hall.com,2023-12-15,"{""language"": ""DE"", ""currency"": ""MXN""}",8534.75,Gold,0 +3672,Shane Ross,michaelwhite@dunn.biz,2022-03-29,"{""language"": ""DE"", ""currency"": ""MXN""}",9213.33,Silver,1 +3673,Angel James,kyle68@tran.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1013.13,Silver,1 +3674,Dr. Ann Whitaker MD,iroberts@yahoo.com,2024-03-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3517.26,Bronze,0 +3675,Edwin Clark,laura28@peters.net,2023-12-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1879.21,Bronze,0 +3676,Alex Farrell,heather89@gmail.com,2022-01-29,"{""language"": ""FR"", ""currency"": ""USD""}",8179.88,Silver,0 +3677,Kylie Moore,sean46@gmail.com,2024-08-31,"{""language"": ""FR"", ""currency"": ""MXN""}",5176.69,Gold,0 +3678,Dustin Alvarez,bdurham@sellers.net,2024-03-02,"{""language"": ""FR"", ""currency"": ""MXN""}",4991.88,Silver,0 +3679,James Paul,herrerajoanna@gmail.com,2020-03-29,"{""language"": ""IT"", ""currency"": ""CAD""}",2756.3,Bronze,1 +3680,Laura Smith,andrewalvarado@wiley.info,2020-07-22,"{""language"": ""DE"", ""currency"": ""EUR""}",4213.59,Bronze,1 +3681,Melissa Rich,kevin64@bates.com,2023-07-07,"{""language"": ""DE"", ""currency"": ""USD""}",3298.02,Bronze,0 +3682,Megan Carlson,brownshelby@yahoo.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5154.03,Silver,1 +3683,Casey Evans,garzajeremiah@kelly.com,2023-04-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8027.17,Bronze,1 +3684,Amy Romero,morenomatthew@wilson.net,2020-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",7829.96,Gold,0 +3685,Tyler Hall,sshelton@campbell-roach.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1066.58,Bronze,1 +3686,Sabrina Evans,nathan62@gamble.com,2024-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8171.67,Bronze,0 +3687,Alexander Costa,jerry41@dunn.com,2021-03-12,"{""language"": ""FR"", ""currency"": ""USD""}",2174.63,Bronze,1 +3688,Amy Martinez,johnathan32@yahoo.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",8733.91,Bronze,1 +3689,Brianna Clark,dramirez@gmail.com,2020-08-01,"{""language"": ""DE"", ""currency"": ""EUR""}",2401.22,Gold,0 +3690,Ashley Montgomery,lterry@austin-kaufman.info,2020-02-03,"{""language"": ""ES"", ""currency"": ""GBP""}",7986.95,Gold,0 +3691,Michael Fields,kimberly78@wells.biz,2020-08-01,"{""language"": ""FR"", ""currency"": ""MXN""}",6895.86,Gold,1 +3692,Lisa Williams,guerrerothomas@gmail.com,2024-03-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7929.92,Gold,1 +3693,Kevin Bowman,buchanantyler@yahoo.com,2022-03-31,"{""language"": ""FR"", ""currency"": ""CAD""}",2303.75,Gold,1 +3694,Lindsay Hampton,obaird@yahoo.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""CAD""}",8047.73,Silver,1 +3695,Sierra Holland,xwest@hotmail.com,2024-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",289.56,Bronze,1 +3696,Jeffrey Santiago,chapmannicole@serrano.net,2021-11-30,"{""language"": ""ES"", ""currency"": ""MXN""}",5068.43,Bronze,0 +3697,Jason Adams,julie09@yahoo.com,2022-05-04,"{""language"": ""DE"", ""currency"": ""USD""}",493.48,Gold,0 +3698,Robert White,rharris@gmail.com,2024-09-24,"{""language"": ""IT"", ""currency"": ""USD""}",4429.44,Gold,0 +3699,Amanda Thompson,marywoods@hotmail.com,2021-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",9136.77,Gold,0 +3700,Denise Holt,gillchristopher@salinas-mcbride.biz,2021-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3213.12,Bronze,1 +3701,Lori Riley,jeremy18@yahoo.com,2021-10-30,"{""language"": ""DE"", ""currency"": ""USD""}",393.58,Bronze,1 +3702,Peter Brown,hamptonjessica@cook.info,2024-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",1471.53,Gold,1 +3703,Joseph Horton,tammy42@hotmail.com,2022-03-14,"{""language"": ""ES"", ""currency"": ""MXN""}",3168.04,Gold,0 +3704,Ariana Daugherty,robert73@hopkins-king.com,2023-08-20,"{""language"": ""EN"", ""currency"": ""USD""}",5528.98,Silver,1 +3705,Rachel Floyd,rodriguezmary@king.com,2020-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",2672.07,Bronze,1 +3706,Javier Jimenez,mckeerickey@gmail.com,2023-07-21,"{""language"": ""FR"", ""currency"": ""CAD""}",4945.12,Gold,1 +3707,Samantha Flores,jasonwright@wells.com,2022-02-02,"{""language"": ""EN"", ""currency"": ""USD""}",7618.73,Bronze,0 +3708,Matthew Carrillo,jwalker@hotmail.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""MXN""}",2997.84,Silver,1 +3709,Diana Humphrey,jimmy50@hotmail.com,2022-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8903.49,Silver,0 +3710,Wendy Payne,perkinsjennifer@yahoo.com,2020-10-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1627.35,Silver,0 +3711,Monica Davis,hortonjohn@mccarthy-bailey.info,2023-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4667.94,Gold,0 +3712,Roy Sherman,richard74@yahoo.com,2024-09-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7256.43,Bronze,0 +3713,Mary Rojas,sheila69@yahoo.com,2023-02-16,"{""language"": ""DE"", ""currency"": ""USD""}",4252.07,Gold,1 +3714,Robin Cooper,kjimenez@randall.com,2022-07-15,"{""language"": ""IT"", ""currency"": ""CAD""}",503.88,Silver,1 +3715,Ryan Saunders,bridget76@young-stone.biz,2020-11-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9085.3,Gold,0 +3716,Katherine Christensen,michelevasquez@hotmail.com,2024-11-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5601.05,Bronze,1 +3717,Kayla Davis,bgonzalez@bush.biz,2020-08-31,"{""language"": ""FR"", ""currency"": ""EUR""}",5023.08,Silver,1 +3718,Cory Rodriguez,alexa96@gmail.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7904.26,Bronze,0 +3719,Michael Paul,petersonstephen@hotmail.com,2024-11-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2927.58,Bronze,0 +3720,Deborah Montgomery,ydavis@hotmail.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""GBP""}",1162.87,Silver,0 +3721,John Russell,wrightkeith@fisher-baker.com,2022-02-19,"{""language"": ""DE"", ""currency"": ""MXN""}",5109.11,Silver,1 +3722,Kyle Thomas,qandrews@sanders-mcmahon.net,2023-08-14,"{""language"": ""FR"", ""currency"": ""USD""}",1908.86,Silver,1 +3723,Ashley Smith,westjennifer@lozano.com,2023-01-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4869.8,Gold,1 +3724,Christopher Crawford,henryerin@miller-warner.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",6288.47,Bronze,0 +3725,Mark Mcdonald,javiergonzalez@hotmail.com,2020-10-01,"{""language"": ""DE"", ""currency"": ""CAD""}",6806.72,Bronze,1 +3726,Stephanie Peterson,eric55@yahoo.com,2023-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",1566.11,Gold,0 +3727,John Hall,adamscurtis@hotmail.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""USD""}",5283.48,Gold,0 +3728,Morgan Mcmahon,cvaldez@hotmail.com,2024-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",4094.43,Gold,1 +3729,Christopher Moore,heidi02@hotmail.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""USD""}",1185.04,Silver,1 +3730,Jacob Hill,hstephens@butler-preston.com,2024-06-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1085.23,Silver,0 +3731,Alan Long,nlloyd@hotmail.com,2020-07-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9594.46,Silver,1 +3732,Nicole Hays,tolson@hotmail.com,2024-11-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1732.18,Gold,0 +3733,Janice Brown,barbara91@yahoo.com,2023-05-23,"{""language"": ""IT"", ""currency"": ""EUR""}",1381.24,Bronze,1 +3734,Stephanie Wallace MD,michaelortega@martinez.com,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",623.38,Silver,1 +3735,Alexis Hughes,robert43@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5993.5,Silver,0 +3736,Melinda Holmes,benjaminsavage@hotmail.com,2020-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5245.73,Silver,1 +3737,Terri Hunter,martin00@yahoo.com,2021-06-07,"{""language"": ""FR"", ""currency"": ""GBP""}",1607.74,Gold,0 +3738,Toni Rodriguez,fleminggary@hotmail.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""CAD""}",1391.4,Bronze,0 +3739,Richard Williams,sextonscott@gmail.com,2021-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",1875.26,Bronze,1 +3740,Brandon Lutz,hfisher@gmail.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""EUR""}",2586.85,Bronze,1 +3741,Maurice Smith,gouldkimberly@bennett-richardson.com,2022-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",9194.57,Silver,0 +3742,Michael Bennett,sgreene@yahoo.com,2021-12-26,"{""language"": ""DE"", ""currency"": ""USD""}",7720.98,Gold,1 +3743,Dr. Jane Keith,sarah96@hotmail.com,2022-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6560.26,Silver,1 +3744,Faith Blair,elizabeth68@gmail.com,2022-06-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3295.8,Silver,0 +3745,Gilbert Boyd,hrodriguez@bean.com,2024-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7108.78,Bronze,1 +3746,Rebecca Bender,randy53@bell-mahoney.biz,2020-06-28,"{""language"": ""IT"", ""currency"": ""USD""}",309.35,Bronze,0 +3747,Jerry Rodriguez,washingtonjean@bryant.com,2023-07-29,"{""language"": ""EN"", ""currency"": ""MXN""}",430.64,Gold,1 +3748,Victor Price,howardcatherine@hotmail.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""USD""}",9320.65,Bronze,1 +3749,Elizabeth Sherman,francispamela@wallace.com,2024-06-20,"{""language"": ""ES"", ""currency"": ""MXN""}",1172.86,Bronze,1 +3750,Danielle Strong,jeffrey00@pierce.org,2021-06-19,"{""language"": ""DE"", ""currency"": ""EUR""}",2477.74,Gold,0 +3751,Stephanie Jordan,grantashley@gmail.com,2020-04-21,"{""language"": ""EN"", ""currency"": ""MXN""}",6098.88,Gold,1 +3752,John Lee,kathrynhart@reed-carter.net,2020-01-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8080.41,Silver,1 +3753,Lawrence Bruce,wcooper@jones-gray.com,2023-11-07,"{""language"": ""DE"", ""currency"": ""GBP""}",4622.18,Bronze,1 +3754,Courtney Gonzalez,gomezashley@gmail.com,2023-07-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5416.35,Bronze,0 +3755,Thomas Gentry,davisjulia@gmail.com,2023-09-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5499.87,Silver,1 +3756,James Buchanan,colemangeorge@hotmail.com,2023-01-30,"{""language"": ""EN"", ""currency"": ""CAD""}",4072.72,Bronze,1 +3757,Alex Horton,ndavidson@simmons-rogers.info,2021-09-24,"{""language"": ""DE"", ""currency"": ""CAD""}",600.48,Gold,0 +3758,Kayla Thompson,heathercooke@gmail.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""EUR""}",8584.11,Bronze,0 +3759,Roger Decker,lgalloway@hotmail.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4946.05,Gold,1 +3760,Juan Wright,bmoses@hotmail.com,2021-07-25,"{""language"": ""ES"", ""currency"": ""EUR""}",6292.97,Bronze,1 +3761,Brett Mcclain,petersmichael@hotmail.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""MXN""}",3724.26,Bronze,0 +3762,Jonathan Bonilla,anthonywheeler@yahoo.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""EUR""}",5890.95,Bronze,1 +3763,James Jimenez,coopernathan@chen-guerrero.com,2020-09-13,"{""language"": ""FR"", ""currency"": ""CAD""}",358.55,Gold,1 +3764,Jason Leblanc,gillterri@anderson-benson.com,2024-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",1985.47,Silver,0 +3765,Pamela Ellis,amcdowell@gmail.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",9858.02,Gold,1 +3766,Felicia Jones,christinecoffey@yahoo.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",5061.18,Gold,1 +3767,Samuel Mays,mullinstony@herman-martin.com,2020-06-14,"{""language"": ""EN"", ""currency"": ""MXN""}",369.8,Gold,1 +3768,Troy Rivers,jtorres@yahoo.com,2022-11-11,"{""language"": ""DE"", ""currency"": ""GBP""}",7013.11,Bronze,0 +3769,Brittany Kelly,jamestorres@gmail.com,2023-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9684.37,Bronze,1 +3770,Cheyenne Parsons,williamspatrick@yahoo.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7350.38,Bronze,1 +3771,Andrew Robertson,mark51@hotmail.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2367.32,Gold,0 +3772,Antonio Walker,anthony11@yahoo.com,2021-02-19,"{""language"": ""EN"", ""currency"": ""CAD""}",889.07,Silver,0 +3773,Jimmy Harrison,danielle78@miller-riggs.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""USD""}",1614.07,Silver,0 +3774,Joel Wyatt DVM,ronaldgrimes@sanchez-white.com,2023-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",7956.45,Silver,1 +3775,Heather Soto,tylercopeland@clark.com,2020-02-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4627.92,Silver,0 +3776,Diana Torres,alicia01@gmail.com,2022-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7897.14,Gold,0 +3777,Jennifer Thomas,lambertross@meyers.info,2022-10-03,"{""language"": ""DE"", ""currency"": ""EUR""}",5960.77,Silver,1 +3778,Joseph Wilson,rbarber@yahoo.com,2022-05-30,"{""language"": ""ES"", ""currency"": ""GBP""}",5207.63,Gold,0 +3779,Jay Zavala,lperez@romero.net,2021-03-20,"{""language"": ""DE"", ""currency"": ""CAD""}",1487.02,Silver,0 +3780,Bonnie Crawford,carolynbrennan@paul.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""EUR""}",5670.81,Bronze,1 +3781,Brett Smith,patrick23@henderson-thompson.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",6550.8,Silver,1 +3782,Paul Maldonado,smithamanda@mack.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""GBP""}",851.76,Silver,1 +3783,Shawn Koch DDS,wanderson@king-hopkins.com,2023-03-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5618.25,Silver,0 +3784,Krista Brown,ericksonlisa@smith.com,2024-02-21,"{""language"": ""IT"", ""currency"": ""GBP""}",6028.97,Gold,1 +3785,Kathleen Thompson,kelly02@george.com,2023-12-31,"{""language"": ""EN"", ""currency"": ""CAD""}",3916.27,Gold,0 +3786,Jonathan Cook,jacob79@hotmail.com,2022-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6711.42,Silver,1 +3787,Christopher Carter,samanthawatson@gmail.com,2023-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7865.12,Bronze,0 +3788,Nicole Williams,adam92@torres.org,2023-09-28,"{""language"": ""DE"", ""currency"": ""GBP""}",7449.45,Gold,1 +3789,Dana Rivera,natalie83@hotmail.com,2023-07-13,"{""language"": ""ES"", ""currency"": ""CAD""}",2809.74,Bronze,1 +3790,Joanna Wheeler,tommydunn@gmail.com,2021-01-11,"{""language"": ""EN"", ""currency"": ""CAD""}",9725.69,Silver,0 +3791,David Sutton,jonestamara@king-hamilton.com,2023-04-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4017.75,Silver,0 +3792,David Perez,michaelclark@lee.com,2024-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",4732.3,Silver,1 +3793,Casey Gibbs,angela81@ellison.com,2023-07-13,"{""language"": ""IT"", ""currency"": ""EUR""}",4314.1,Silver,0 +3794,Barbara Smith,carmenmcpherson@hotmail.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",4092.18,Gold,0 +3795,Eric Park,lindawilliams@hotmail.com,2021-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1721.68,Bronze,1 +3796,Brandy Rios,jeremymcdonald@wilson.com,2023-11-02,"{""language"": ""FR"", ""currency"": ""EUR""}",697.61,Bronze,1 +3797,Adam Barrett,elizabethwilliams@hotmail.com,2022-12-25,"{""language"": ""DE"", ""currency"": ""EUR""}",8572.3,Bronze,1 +3798,Patrick Parker,andersonpatrick@smith.info,2023-11-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1378.7,Bronze,1 +3799,Mr. Michael Abbott Jr.,pamelajohnson@yahoo.com,2023-09-28,"{""language"": ""IT"", ""currency"": ""MXN""}",4729.86,Bronze,1 +3800,Stacey Riggs,shannon44@yahoo.com,2023-11-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2073.28,Gold,1 +3801,Elizabeth Koch,frobertson@shaw.biz,2021-02-17,"{""language"": ""EN"", ""currency"": ""GBP""}",4763.25,Bronze,0 +3802,Anthony West,emily99@yahoo.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""USD""}",6504.69,Gold,0 +3803,Allen Branch,thomascynthia@gmail.com,2022-05-03,"{""language"": ""FR"", ""currency"": ""CAD""}",8853.43,Gold,1 +3804,Megan Rodriguez,michelle56@gmail.com,2024-04-14,"{""language"": ""FR"", ""currency"": ""GBP""}",867.66,Silver,1 +3805,Christian Nguyen,rjacobson@johnson-petty.com,2022-06-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7694.97,Silver,1 +3806,Julie Foster,gibsonmarcus@gmail.com,2022-07-18,"{""language"": ""DE"", ""currency"": ""MXN""}",474.16,Bronze,1 +3807,Melvin Castillo,williamsanthony@hotmail.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",9829.95,Silver,1 +3808,Tonya Spencer,thomas32@yahoo.com,2023-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3541.61,Silver,1 +3809,Frank Whitehead,fitzgeraldkimberly@cole.net,2023-01-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2113.7,Gold,1 +3810,Michael Singh,xmartinez@hatfield.info,2023-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1607.09,Silver,0 +3811,Dennis Murray,torresphillip@hamilton.info,2023-11-19,"{""language"": ""ES"", ""currency"": ""GBP""}",5569.89,Silver,1 +3812,Aaron Steele,rogerspatrick@hayes.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""EUR""}",914.86,Bronze,1 +3813,Gerald Ayala,gchen@humphrey.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",7470.48,Gold,0 +3814,Tiffany Mack,elizabeth99@sanchez.com,2020-09-24,"{""language"": ""DE"", ""currency"": ""MXN""}",9167.09,Bronze,1 +3815,Kendra Ochoa,mcclainmichael@cole.com,2024-12-09,"{""language"": ""IT"", ""currency"": ""EUR""}",7695.05,Silver,1 +3816,Brandy Palmer,popetimothy@gmail.com,2020-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",250.88,Bronze,1 +3817,Edward Lewis,fgarza@cooper.org,2022-06-25,"{""language"": ""DE"", ""currency"": ""GBP""}",9151.7,Silver,1 +3818,Sean Mcclure,samantha83@butler.com,2023-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5139.87,Bronze,1 +3819,Cory Russell,kellifisher@snyder-jacobs.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""USD""}",8400.92,Silver,1 +3820,Mindy Daniels,carrdonna@gmail.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""USD""}",6279.01,Gold,0 +3821,Amber Warren,spatel@hotmail.com,2023-02-07,"{""language"": ""IT"", ""currency"": ""CAD""}",5389.2,Silver,0 +3822,Wendy Hernandez,kelsey09@hotmail.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5427.97,Bronze,1 +3823,Tracy Rodriguez,thompsonmarissa@pearson-evans.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""EUR""}",5118.23,Bronze,0 +3824,Tiffany Hernandez,xmitchell@bauer.info,2023-10-17,"{""language"": ""EN"", ""currency"": ""USD""}",2871.14,Silver,1 +3825,Joshua Austin,cynthiasmith@blanchard-castaneda.com,2020-06-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6020.96,Gold,1 +3826,Amanda Oneal,billjohnson@yahoo.com,2024-08-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4634.78,Silver,1 +3827,Christy Alexander,jordanmark@yahoo.com,2022-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5889.22,Silver,0 +3828,Christopher Jackson,lauracole@clark-lee.biz,2022-08-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8920.53,Silver,1 +3829,Diane Mills,perkinskayla@gmail.com,2020-10-16,"{""language"": ""EN"", ""currency"": ""GBP""}",1109.84,Gold,0 +3830,Andrew Rodriguez,amandataylor@walters-jennings.com,2021-03-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8013.67,Gold,0 +3831,Brittany Roth,parkerpaul@hotmail.com,2022-04-13,"{""language"": ""ES"", ""currency"": ""GBP""}",2054.69,Silver,0 +3832,Michele Young,ruizsarah@hotmail.com,2024-09-06,"{""language"": ""ES"", ""currency"": ""CAD""}",2669.36,Bronze,1 +3833,Gary Atkins,michael26@hoffman.com,2024-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",9108.29,Silver,0 +3834,Kristin Logan,erin75@miller.net,2020-12-07,"{""language"": ""EN"", ""currency"": ""USD""}",6102.37,Bronze,0 +3835,Terry Singh,ryancollins@sanchez.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8546.66,Gold,1 +3836,Brady Holloway PhD,fernandeztheresa@graham-mitchell.com,2020-11-06,"{""language"": ""IT"", ""currency"": ""MXN""}",6777.25,Bronze,0 +3837,Natalie Robinson,morrisfrances@hotmail.com,2021-04-11,"{""language"": ""DE"", ""currency"": ""MXN""}",692.35,Silver,0 +3838,Shari Stewart,eric39@yahoo.com,2021-05-18,"{""language"": ""FR"", ""currency"": ""GBP""}",3117.6,Bronze,0 +3839,Ann Henderson,lopezteresa@jenkins.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""MXN""}",7784.78,Bronze,1 +3840,Melissa Burns,zcross@fisher.info,2021-04-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2829.95,Bronze,1 +3841,Nicholas Dalton,michael72@gmail.com,2022-10-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6702.61,Gold,0 +3842,Daniel Williams,fergusonsarah@sharp.info,2021-06-03,"{""language"": ""DE"", ""currency"": ""EUR""}",2288.85,Silver,0 +3843,Patricia Wade,robert94@gmail.com,2023-03-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7469.56,Silver,0 +3844,Marissa Hardy,amanda24@gmail.com,2021-06-13,"{""language"": ""IT"", ""currency"": ""CAD""}",9301.61,Bronze,0 +3845,Jacob Stevenson,davisbrandon@henderson.com,2020-02-18,"{""language"": ""IT"", ""currency"": ""CAD""}",258.48,Bronze,0 +3846,Howard Sexton,osanchez@hotmail.com,2020-11-27,"{""language"": ""DE"", ""currency"": ""USD""}",3685.55,Gold,1 +3847,Mary Willis,lindamartinez@harrison.com,2022-03-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8418.14,Silver,0 +3848,Steven Kirk,piercedenise@yahoo.com,2020-04-26,"{""language"": ""FR"", ""currency"": ""CAD""}",5170.4,Bronze,1 +3849,Rebecca Baker,angelica66@thompson-delacruz.com,2020-09-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9272.48,Bronze,0 +3850,Alejandro Smith,christina47@taylor-greene.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""GBP""}",632.9,Gold,1 +3851,Teresa Young,bensonandrew@gmail.com,2020-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",3380.15,Silver,0 +3852,Andrea Sutton,codyarnold@bishop-marshall.com,2021-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2123.77,Bronze,1 +3853,Amber Dennis,danielflores@cardenas.net,2022-09-11,"{""language"": ""ES"", ""currency"": ""MXN""}",4435.76,Gold,1 +3854,Gary Duke,navarrotheresa@davis.info,2022-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8449.83,Silver,1 +3855,Patricia Wagner,anthony76@gmail.com,2023-05-07,"{""language"": ""FR"", ""currency"": ""USD""}",3236.91,Silver,0 +3856,Rachel Harris,dwhitney@yahoo.com,2024-06-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4580.12,Silver,0 +3857,Samantha Charles,tiffany10@fernandez.com,2020-01-03,"{""language"": ""DE"", ""currency"": ""CAD""}",2709.33,Gold,1 +3858,Amanda Bryant,donaldsonkatrina@villarreal-klein.com,2023-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",6191.63,Silver,1 +3859,Timothy Brown,greenandrew@yahoo.com,2022-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",2238.01,Gold,1 +3860,Michael Parker,paul43@johnson.com,2020-11-25,"{""language"": ""DE"", ""currency"": ""CAD""}",8838.41,Gold,0 +3861,Todd Meyers,brooke70@yahoo.com,2024-10-12,"{""language"": ""IT"", ""currency"": ""GBP""}",9752.48,Silver,0 +3862,Nicole Summers,heathmelanie@duffy.com,2024-09-12,"{""language"": ""IT"", ""currency"": ""USD""}",2399.6,Gold,0 +3863,Amy Jacobs,pamela95@jones-bray.biz,2020-07-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8894.91,Silver,1 +3864,Sheryl Rogers,kellymoore@smith-adams.org,2023-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",2641.24,Bronze,1 +3865,Rhonda Spencer,ryan32@gmail.com,2021-01-14,"{""language"": ""FR"", ""currency"": ""GBP""}",6444.79,Bronze,0 +3866,Amy Vaughn,richardwilliams@kent.com,2024-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",8046.56,Gold,1 +3867,Katherine Clark,ericksoncristina@burnett.info,2024-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",3212.93,Gold,1 +3868,Caleb Cooper,ronald46@grant.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""GBP""}",9539.82,Bronze,1 +3869,John Robles,dana20@mccoy.com,2021-06-07,"{""language"": ""DE"", ""currency"": ""USD""}",6273.76,Gold,0 +3870,Gerald Lopez,brian86@gmail.com,2022-11-04,"{""language"": ""EN"", ""currency"": ""USD""}",8185.38,Silver,1 +3871,Mary Oliver,katherinefinley@ferguson.net,2021-05-18,"{""language"": ""ES"", ""currency"": ""GBP""}",1674.68,Gold,0 +3872,Curtis Grant,jacksonharry@gmail.com,2022-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",273.56,Bronze,0 +3873,Mary Cannon,jennifer01@armstrong.com,2022-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",979.73,Gold,1 +3874,Jacob Khan,anthony18@hotmail.com,2020-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3374.84,Gold,1 +3875,Charles Robinson,taylorhooper@henry.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8268.9,Bronze,0 +3876,Mrs. Diana Mclean DDS,morrismegan@smith-lee.info,2020-03-20,"{""language"": ""ES"", ""currency"": ""EUR""}",446.24,Silver,0 +3877,Christopher Robles,cynthiahernandez@reeves-stephens.com,2023-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",1578.94,Silver,1 +3878,Jessica Daniels,hbautista@jennings-dennis.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",1411.01,Gold,0 +3879,Betty Conner,waltermonique@carrillo-green.com,2022-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",2343.5,Gold,1 +3880,Cassandra Lawrence,gmurray@bryant.org,2024-10-15,"{""language"": ""FR"", ""currency"": ""GBP""}",9375.86,Gold,0 +3881,Laura Moore,dstevens@yahoo.com,2022-08-18,"{""language"": ""DE"", ""currency"": ""USD""}",4658.69,Gold,0 +3882,Mary Meyer,christopher45@yahoo.com,2024-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",3879.77,Silver,0 +3883,Frederick Burns,kirsten33@stokes.com,2020-07-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6088.33,Bronze,0 +3884,Frank Stewart,ryan53@gmail.com,2022-06-10,"{""language"": ""DE"", ""currency"": ""USD""}",5366.22,Gold,1 +3885,Nathan Walker,jeffrey08@mills-king.net,2023-09-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5728.53,Bronze,1 +3886,Michelle Shepherd,crystalturner@walker-murphy.com,2023-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",1930.95,Silver,0 +3887,Jennifer Benson,christina25@yahoo.com,2023-05-04,"{""language"": ""EN"", ""currency"": ""MXN""}",9036.86,Bronze,0 +3888,Patricia Wilkins,eolson@wong-torres.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""CAD""}",7214.44,Bronze,0 +3889,Brandon Howard,brandihughes@gmail.com,2020-12-07,"{""language"": ""DE"", ""currency"": ""CAD""}",1812.94,Bronze,1 +3890,Andrea Stafford,evansmichael@mccoy.info,2020-03-09,"{""language"": ""FR"", ""currency"": ""MXN""}",1285.53,Silver,0 +3891,Susan Sutton,melissaadams@clayton.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""CAD""}",6331.59,Bronze,0 +3892,Beth Robinson,stephen06@gmail.com,2022-01-14,"{""language"": ""EN"", ""currency"": ""USD""}",7872.89,Bronze,0 +3893,Diane Mosley,kristin25@hunter-serrano.com,2021-04-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7196.44,Silver,0 +3894,Tamara Berry,susangonzalez@may.info,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1439.97,Bronze,1 +3895,Bradley Meza,littleashley@rich.com,2022-03-04,"{""language"": ""IT"", ""currency"": ""MXN""}",1988.08,Bronze,0 +3896,Denise Anderson,agray@vega-pierce.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""EUR""}",632.89,Silver,1 +3897,Daniel Escobar,floresmatthew@gardner.com,2022-07-14,"{""language"": ""ES"", ""currency"": ""EUR""}",4395.89,Gold,1 +3898,Stacy Burch,blankenshippatrick@underwood.com,2023-08-05,"{""language"": ""EN"", ""currency"": ""MXN""}",1066.17,Silver,1 +3899,Jennifer Mendoza,beth85@hotmail.com,2020-01-18,"{""language"": ""DE"", ""currency"": ""MXN""}",7191.09,Bronze,0 +3900,Ryan Perry,brandon11@yahoo.com,2020-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7914.61,Silver,1 +3901,Rhonda Henderson,mitchelljennifer@ortega.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""CAD""}",6780.74,Gold,1 +3902,Jean Diaz,lsalinas@mason.org,2020-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9385.24,Gold,0 +3903,Antonio Ross,antoniostrickland@bailey.net,2022-07-16,"{""language"": ""ES"", ""currency"": ""GBP""}",3873.65,Gold,0 +3904,Jesse Scott,stacey25@hotmail.com,2021-09-25,"{""language"": ""IT"", ""currency"": ""USD""}",8376.95,Silver,1 +3905,Rachel Stone DDS,bakerkelly@powers.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""CAD""}",7229.93,Silver,0 +3906,John Hancock,jjordan@hart.com,2022-04-19,"{""language"": ""DE"", ""currency"": ""GBP""}",435.1,Gold,0 +3907,Donald Myers,robinsonhelen@meyers.info,2020-10-17,"{""language"": ""DE"", ""currency"": ""GBP""}",6861.91,Silver,1 +3908,Susan Potts,leevictor@gmail.com,2024-08-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9840.67,Bronze,1 +3909,James Harper,charles45@yahoo.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5305.89,Gold,1 +3910,Donald Douglas,griffinjohn@wiley.com,2023-03-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3752.49,Bronze,0 +3911,Cheryl Pollard,cunninghamcody@hotmail.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""GBP""}",7698.57,Silver,1 +3912,Katie Ramirez,mikewilson@yahoo.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""USD""}",4780.96,Bronze,1 +3913,James Lopez,ricematthew@henderson.net,2024-10-08,"{""language"": ""EN"", ""currency"": ""GBP""}",107.23,Gold,0 +3914,Sean Kerr,nicholas16@yahoo.com,2023-12-08,"{""language"": ""IT"", ""currency"": ""GBP""}",8370.78,Gold,0 +3915,Michelle Martinez,margaret20@hill.org,2020-10-26,"{""language"": ""DE"", ""currency"": ""USD""}",6082.2,Gold,1 +3916,James Myers,martincarla@hotmail.com,2023-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",4892.16,Silver,0 +3917,Mark Garcia,tfrench@gmail.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""EUR""}",6288.72,Bronze,1 +3918,Stephen Lewis,shelly53@evans.biz,2021-01-28,"{""language"": ""EN"", ""currency"": ""USD""}",3478.98,Silver,1 +3919,Matthew Mclean,perrykatherine@gmail.com,2020-08-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1332.97,Gold,0 +3920,Nathaniel Palmer,wilsonhannah@hotmail.com,2020-11-09,"{""language"": ""IT"", ""currency"": ""USD""}",8400.92,Silver,0 +3921,Heather Silva,qferrell@gmail.com,2023-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",8039.88,Silver,1 +3922,Jose Duncan,shermanerica@perez.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3428.45,Bronze,0 +3923,Jason Johnston,briansanchez@yahoo.com,2020-04-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4169.37,Bronze,1 +3924,Chloe Green,justin77@anderson.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""EUR""}",386.2,Bronze,0 +3925,Mark Black,jdean@hotmail.com,2021-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",5363.22,Silver,0 +3926,Kristin Walker,longanthony@hotmail.com,2021-01-29,"{""language"": ""FR"", ""currency"": ""MXN""}",321.58,Gold,1 +3927,Micheal Myers MD,hevans@hall.com,2024-09-15,"{""language"": ""DE"", ""currency"": ""GBP""}",6353.71,Silver,1 +3928,Amy Steele,bjohnston@gmail.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2889.35,Bronze,0 +3929,James Clark,akelley@watson-hicks.com,2020-03-30,"{""language"": ""IT"", ""currency"": ""EUR""}",87.45,Silver,1 +3930,Jeffrey Johnson,huntteresa@miller.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",9687.05,Silver,0 +3931,Michelle Martinez,ihill@smith-weber.biz,2020-12-15,"{""language"": ""FR"", ""currency"": ""USD""}",6526.35,Gold,0 +3932,Julie Cordova,marissareyes@gray-dixon.biz,2023-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",263.82,Bronze,1 +3933,John Zuniga,huynhsharon@hotmail.com,2023-08-07,"{""language"": ""EN"", ""currency"": ""MXN""}",299.58,Bronze,0 +3934,Shawn Bush,nathan60@gmail.com,2023-10-26,"{""language"": ""IT"", ""currency"": ""GBP""}",2955.02,Bronze,1 +3935,Mrs. Rachel Willis,ryanmay@bennett.com,2020-01-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5918.2,Bronze,0 +3936,Clifford Garcia,tanyaanderson@yahoo.com,2022-11-11,"{""language"": ""DE"", ""currency"": ""EUR""}",7003.28,Silver,1 +3937,Mary Allen,wwiggins@bryant-palmer.com,2024-10-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7384.4,Bronze,1 +3938,Karen Hernandez,shelbyperez@walker.info,2020-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",175.53,Silver,0 +3939,Monica Nguyen,richard17@hotmail.com,2024-07-31,"{""language"": ""DE"", ""currency"": ""EUR""}",2508.24,Bronze,0 +3940,Matthew Stewart,clarkedouglas@yahoo.com,2020-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",5881.61,Gold,0 +3941,Michael Hawkins,gsanchez@sloan.net,2024-08-28,"{""language"": ""DE"", ""currency"": ""CAD""}",4209.72,Gold,1 +3942,Daniel Sawyer,shelby07@gmail.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""CAD""}",8841.9,Silver,0 +3943,Anna Wright,davenporttroy@wolf.org,2022-04-16,"{""language"": ""ES"", ""currency"": ""GBP""}",4004.62,Silver,0 +3944,Michelle Walsh,swansonamanda@gmail.com,2024-05-02,"{""language"": ""ES"", ""currency"": ""EUR""}",2571.42,Silver,1 +3945,Aaron Robinson,phillipmorgan@fowler.com,2023-12-28,"{""language"": ""FR"", ""currency"": ""CAD""}",2797.73,Silver,1 +3946,Anita Fisher,rasmussendawn@rivera-gray.com,2022-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",8209.26,Gold,1 +3947,Melissa Ross,fperez@walker-patterson.info,2024-11-13,"{""language"": ""IT"", ""currency"": ""USD""}",8335.15,Gold,1 +3948,Lauren Moore,vbarrera@hotmail.com,2024-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",218.2,Gold,0 +3949,Angela Miller,othompson@anderson.info,2023-05-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8568.7,Silver,0 +3950,David Parker,nathan69@yahoo.com,2021-02-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4932.5,Silver,0 +3951,Sheri Reyes,spierce@russo.com,2024-08-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3731.05,Gold,1 +3952,James Foster,swebb@diaz.com,2023-03-13,"{""language"": ""FR"", ""currency"": ""GBP""}",6470.72,Gold,0 +3953,Meagan Mcclain,potterjeffrey@trevino.com,2022-01-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3424.79,Bronze,1 +3954,Elaine Hawkins,courtneyhaas@durham.com,2024-04-02,"{""language"": ""DE"", ""currency"": ""MXN""}",105.64,Gold,0 +3955,Rebecca Brennan,owalter@cox.com,2024-11-06,"{""language"": ""FR"", ""currency"": ""USD""}",2767.65,Bronze,1 +3956,Nicholas Jenkins,vcrawford@gibbs-ortiz.com,2024-03-15,"{""language"": ""DE"", ""currency"": ""GBP""}",3989.24,Gold,1 +3957,Rebecca Chen,virginia72@gmail.com,2022-04-07,"{""language"": ""EN"", ""currency"": ""GBP""}",4792.35,Silver,1 +3958,Christopher Pham,michael75@yahoo.com,2021-10-26,"{""language"": ""ES"", ""currency"": ""MXN""}",6443.42,Bronze,1 +3959,Amanda Allen,lawsonlori@hill.info,2022-09-18,"{""language"": ""DE"", ""currency"": ""MXN""}",6484.25,Silver,0 +3960,Kathleen Casey,jimmy01@yahoo.com,2023-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",3249.95,Bronze,0 +3961,Michael Atkins,wagnerann@preston.biz,2021-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",2412.54,Silver,1 +3962,Joshua Black,hurstshaun@white.com,2024-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",3175.51,Bronze,1 +3963,Savannah Ryan,blackkrystal@anderson.com,2023-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",9826.93,Gold,0 +3964,Stephen Hernandez,kenneth79@moreno-hill.com,2023-10-14,"{""language"": ""DE"", ""currency"": ""MXN""}",1829.16,Bronze,1 +3965,Mrs. Melinda Waters,patrick01@gmail.com,2024-07-11,"{""language"": ""DE"", ""currency"": ""EUR""}",7926.21,Bronze,1 +3966,Jacob Maldonado,zroach@horton.com,2021-03-05,"{""language"": ""IT"", ""currency"": ""MXN""}",1243.35,Gold,1 +3967,Donald Riddle,qdavis@kent.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""GBP""}",4279.13,Gold,0 +3968,Brandon Lee,yboyd@yahoo.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",2758.73,Bronze,0 +3969,James Boone,starkjennifer@henderson.com,2023-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6415.55,Gold,0 +3970,Nicholas Bishop,jonesjennifer@gardner.biz,2020-05-16,"{""language"": ""ES"", ""currency"": ""MXN""}",9160.49,Gold,1 +3971,Monica Sanchez,turnermelinda@kim-parker.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5467.35,Bronze,0 +3972,Joan Duncan,frank26@yahoo.com,2020-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4772.38,Bronze,0 +3973,Herbert Sheppard,tina10@yahoo.com,2022-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2485.85,Gold,0 +3974,Sheila Munoz,crodgers@smith.com,2021-08-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3188.82,Gold,1 +3975,Debbie Ali,wbernard@hotmail.com,2022-07-27,"{""language"": ""EN"", ""currency"": ""CAD""}",1433.14,Silver,0 +3976,Kyle King,qdavis@yahoo.com,2024-03-09,"{""language"": ""IT"", ""currency"": ""CAD""}",8269.32,Silver,1 +3977,Melissa Baker,nwilliams@yahoo.com,2020-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1657.48,Bronze,0 +3978,Donna Moore,leezachary@gmail.com,2024-03-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3620.56,Silver,0 +3979,Emily Webb,abennett@gmail.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",5010.09,Gold,0 +3980,Robert Flores,bartonandrea@gmail.com,2021-05-05,"{""language"": ""FR"", ""currency"": ""CAD""}",8704.71,Silver,0 +3981,Jason Davis,hardinryan@yahoo.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3033.16,Gold,1 +3982,Eric Bray,kaitlin70@barton.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9514.42,Silver,0 +3983,Lisa Chang,adamlester@gmail.com,2023-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",9334.79,Silver,0 +3984,Eduardo Dominguez,walkerkatrina@hotmail.com,2020-08-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1233.76,Gold,0 +3985,Robert Jensen,rickychandler@haas-brown.net,2023-08-15,"{""language"": ""DE"", ""currency"": ""MXN""}",5284.04,Gold,1 +3986,Jessica Rhodes,william34@gmail.com,2020-09-04,"{""language"": ""ES"", ""currency"": ""EUR""}",7944.26,Silver,1 +3987,Heather Dalton,eperez@hotmail.com,2023-03-12,"{""language"": ""FR"", ""currency"": ""USD""}",2613.92,Gold,0 +3988,Chad Jimenez,tgomez@gmail.com,2023-01-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3698.36,Bronze,0 +3989,Mrs. Amanda Myers,robert82@larson.org,2023-06-17,"{""language"": ""EN"", ""currency"": ""GBP""}",4478.55,Bronze,0 +3990,Melissa Compton MD,nancy77@yahoo.com,2021-09-01,"{""language"": ""FR"", ""currency"": ""CAD""}",5058.94,Bronze,0 +3991,Daniel Smith,kgonzales@hotmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",6014.05,Silver,1 +3992,Norma Silva,garzawilliam@hernandez-lane.com,2021-12-20,"{""language"": ""EN"", ""currency"": ""USD""}",8771.15,Silver,0 +3993,Craig Hall,bowmanvincent@yahoo.com,2022-03-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3219.42,Bronze,1 +3994,Tyler Young,dianabenson@hotmail.com,2020-12-28,"{""language"": ""ES"", ""currency"": ""GBP""}",6411.36,Bronze,0 +3995,Brenda Shelton,xparker@gmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""GBP""}",2227.14,Gold,1 +3996,Pamela Long,kari04@hotmail.com,2022-02-17,"{""language"": ""EN"", ""currency"": ""USD""}",6968.08,Silver,1 +3997,Christopher Morris,davidanderson@mason.net,2020-03-22,"{""language"": ""ES"", ""currency"": ""USD""}",60.92,Silver,0 +3998,Benjamin Lang,millerdavid@keller.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""MXN""}",475.89,Bronze,0 +3999,William Davies,robertroberts@cruz.net,2024-05-14,"{""language"": ""EN"", ""currency"": ""EUR""}",722.11,Silver,0 +4000,Megan Garcia,weaverjose@wall-beard.net,2024-08-22,"{""language"": ""IT"", ""currency"": ""USD""}",3752.96,Gold,0 +4001,Matthew Moore,xrodriguez@gmail.com,2023-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",558.08,Gold,0 +4002,Michael Hawkins,michaelmccullough@woods-fitzgerald.com,2023-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",476.99,Gold,0 +4003,Brandon Simpson,julie45@miller-williams.biz,2020-09-03,"{""language"": ""IT"", ""currency"": ""MXN""}",3687.77,Silver,1 +4004,Jeff Martinez,sarah37@frazier-ellis.net,2022-02-11,"{""language"": ""DE"", ""currency"": ""EUR""}",5278.14,Silver,1 +4005,Stacy Morales,estradakristin@clark-hahn.com,2021-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",5393.29,Silver,1 +4006,Marcia James,wbrooks@gmail.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4414.33,Silver,1 +4007,Renee Kelly,chasematthews@yahoo.com,2021-10-31,"{""language"": ""EN"", ""currency"": ""USD""}",6017.84,Gold,1 +4008,Martha Mcpherson,victoriamejia@gmail.com,2020-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5328.18,Gold,1 +4009,Matthew Moore,amandaaguilar@vargas.com,2022-11-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7531.19,Silver,1 +4010,Jennifer Smith,douglascampbell@cochran-baker.org,2022-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",3527.62,Silver,0 +4011,Nicolas Gonzales,jameskathryn@gordon.com,2020-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8676.71,Gold,1 +4012,Vanessa Whitney,robinsonjuan@smith-harmon.com,2020-01-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5407.63,Silver,0 +4013,Nicholas Snyder,melissapena@hill-payne.com,2023-11-04,"{""language"": ""IT"", ""currency"": ""GBP""}",3259.82,Silver,0 +4014,Jason Walls,melindabridges@gmail.com,2023-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9283.49,Silver,0 +4015,Michael Price,danielhernandez@gmail.com,2021-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1604.68,Silver,0 +4016,Amber Thomas,usmith@lee-ryan.org,2023-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",6582.57,Silver,0 +4017,Jacob Cruz,jerome49@hotmail.com,2024-08-28,"{""language"": ""FR"", ""currency"": ""USD""}",8416.82,Silver,1 +4018,Lindsey Reed,sherricurtis@buchanan.com,2022-11-30,"{""language"": ""EN"", ""currency"": ""GBP""}",9392.81,Bronze,1 +4019,Jonathan Gregory,erinjohnson@yahoo.com,2020-05-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8695.63,Gold,1 +4020,Joshua Wheeler,martinezdarius@hebert.org,2022-07-02,"{""language"": ""FR"", ""currency"": ""USD""}",1484.74,Bronze,0 +4021,Maria Kelly,tlopez@lang.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""GBP""}",3293.18,Silver,0 +4022,Daniel Martinez,kathleensawyer@yahoo.com,2023-09-21,"{""language"": ""IT"", ""currency"": ""GBP""}",8037.84,Silver,1 +4023,Steven Salinas,xthomas@yahoo.com,2022-12-20,"{""language"": ""EN"", ""currency"": ""MXN""}",6912.54,Silver,1 +4024,Maria Baxter,martinmichelle@french-owens.net,2024-04-08,"{""language"": ""IT"", ""currency"": ""CAD""}",3153.14,Gold,0 +4025,Samantha Orozco,victoria32@rose.com,2023-05-08,"{""language"": ""IT"", ""currency"": ""USD""}",7440.33,Bronze,1 +4026,David Turner,clarkricardo@yahoo.com,2023-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",7584.48,Gold,0 +4027,Cassandra Lopez,stephanie45@mueller-krause.biz,2021-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8484.95,Silver,1 +4028,Christina Williams,alex12@morales-brown.com,2023-05-28,"{""language"": ""FR"", ""currency"": ""USD""}",6678.01,Gold,0 +4029,Mark Johnson,dianewilson@hotmail.com,2024-10-06,"{""language"": ""FR"", ""currency"": ""USD""}",3467.58,Gold,1 +4030,Cynthia Henderson,lucas23@yahoo.com,2020-11-08,"{""language"": ""FR"", ""currency"": ""USD""}",5634.19,Silver,0 +4031,Christopher Khan,tammy90@murray.com,2020-09-08,"{""language"": ""ES"", ""currency"": ""CAD""}",1480.04,Bronze,1 +4032,Pamela Terry,carolyn10@jackson-palmer.com,2022-06-06,"{""language"": ""EN"", ""currency"": ""GBP""}",1114.63,Bronze,1 +4033,Alexandria Kemp,ucuevas@jackson.com,2023-04-21,"{""language"": ""IT"", ""currency"": ""EUR""}",241.21,Silver,1 +4034,Monica Rodriguez,alvarezjames@yahoo.com,2021-12-05,"{""language"": ""FR"", ""currency"": ""MXN""}",2057.84,Bronze,0 +4035,Nancy James,bhoover@hotmail.com,2021-01-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5513.68,Bronze,1 +4036,Stacy Figueroa,krista44@hartman-jackson.org,2021-06-08,"{""language"": ""IT"", ""currency"": ""CAD""}",7587.3,Gold,1 +4037,Amanda Pratt,anthonybarry@gmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",3143.48,Gold,1 +4038,Andrew Robertson,wrodgers@steele.com,2020-10-27,"{""language"": ""DE"", ""currency"": ""EUR""}",3415.37,Gold,0 +4039,James Mendoza,stanleyralph@daniel.com,2023-08-22,"{""language"": ""IT"", ""currency"": ""GBP""}",4499.12,Gold,0 +4040,Raymond Espinoza,batesmichelle@thornton-lopez.info,2021-03-10,"{""language"": ""EN"", ""currency"": ""USD""}",2182.7,Silver,0 +4041,Karen Boyd,leslie47@yahoo.com,2019-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9469.53,Gold,1 +4042,Brian Greer,zjames@gmail.com,2023-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9464.29,Bronze,1 +4043,Heather Le,bmills@hotmail.com,2023-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3031.92,Gold,0 +4044,Deborah Perry,dylan96@hotmail.com,2023-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5349.65,Bronze,1 +4045,Lawrence Walker,gharrington@yahoo.com,2024-05-05,"{""language"": ""IT"", ""currency"": ""USD""}",6184.89,Bronze,1 +4046,Bryan Graves,tonyperkins@yahoo.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""EUR""}",6935.92,Gold,1 +4047,Ryan Sims,uerickson@yahoo.com,2022-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",9841.05,Gold,1 +4048,Joyce Castro,astuart@gmail.com,2023-06-06,"{""language"": ""DE"", ""currency"": ""USD""}",8489.85,Gold,0 +4049,Joanna Hickman,rowlandanthony@smith-davis.com,2024-01-22,"{""language"": ""IT"", ""currency"": ""CAD""}",396.0,Bronze,1 +4050,Rachel Marshall,david74@jones.com,2020-03-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7833.0,Gold,0 +4051,Cheryl Goodwin,justin41@hotmail.com,2022-08-19,"{""language"": ""FR"", ""currency"": ""EUR""}",3530.94,Gold,0 +4052,Diana Kennedy,joshua28@gmail.com,2020-07-15,"{""language"": ""FR"", ""currency"": ""GBP""}",594.17,Gold,0 +4053,Jennifer Richardson,cfox@gmail.com,2024-08-06,"{""language"": ""IT"", ""currency"": ""USD""}",3923.7,Silver,0 +4054,Karen Richards,erictyler@yahoo.com,2024-01-17,"{""language"": ""EN"", ""currency"": ""GBP""}",5669.97,Gold,1 +4055,Christina Ward,watsonjackson@yahoo.com,2022-11-05,"{""language"": ""DE"", ""currency"": ""GBP""}",9007.21,Gold,0 +4056,Alan Fox,josemassey@yahoo.com,2021-10-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8158.56,Bronze,0 +4057,Derek Osborne,ellislarry@hoffman.org,2021-07-31,"{""language"": ""ES"", ""currency"": ""GBP""}",8161.82,Gold,0 +4058,Gina Wright,ericksonstephen@anderson.net,2020-10-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1669.5,Gold,0 +4059,Curtis Daugherty,hortonlaura@brown.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",9881.53,Silver,0 +4060,Daniel Smith,timothy29@gmail.com,2020-05-31,"{""language"": ""DE"", ""currency"": ""USD""}",6228.61,Gold,0 +4061,Patricia Cummings,pinedachristine@hotmail.com,2024-01-18,"{""language"": ""IT"", ""currency"": ""CAD""}",7756.63,Bronze,0 +4062,Brad Bentley,lorirogers@hotmail.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",8773.41,Gold,1 +4063,Amy Santiago MD,william72@vega-harris.biz,2023-05-17,"{""language"": ""FR"", ""currency"": ""GBP""}",7077.88,Bronze,1 +4064,David Hill,bdavis@henderson.info,2021-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4385.92,Gold,0 +4065,Kimberly Murillo,richard99@smith.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",7490.14,Bronze,0 +4066,Kathy Alvarez,carmensimpson@gmail.com,2022-02-11,"{""language"": ""ES"", ""currency"": ""CAD""}",541.19,Gold,1 +4067,Douglas Page,adamskevin@benson-smith.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""CAD""}",8509.92,Gold,0 +4068,Joshua Spencer,jennaromero@larsen.com,2023-10-17,"{""language"": ""DE"", ""currency"": ""GBP""}",1284.75,Bronze,0 +4069,Jill Mccall,bduffy@steele-ramirez.com,2022-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",1902.58,Gold,0 +4070,Sherry Jensen PhD,cynthia09@yahoo.com,2020-02-13,"{""language"": ""EN"", ""currency"": ""CAD""}",5815.15,Silver,0 +4071,James Zamora,nroman@hotmail.com,2024-04-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6128.54,Silver,1 +4072,Lauren Harper,michael67@strong.biz,2022-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",7824.67,Gold,1 +4073,Courtney James,virginia10@gmail.com,2020-12-06,"{""language"": ""ES"", ""currency"": ""CAD""}",1404.87,Gold,0 +4074,Ashley Smith,helen06@moss.com,2020-07-02,"{""language"": ""FR"", ""currency"": ""GBP""}",7546.03,Bronze,1 +4075,Luke Oliver,kevin79@gmail.com,2022-07-15,"{""language"": ""FR"", ""currency"": ""EUR""}",6967.45,Bronze,1 +4076,Chris Fuller,cindycarr@yahoo.com,2023-12-15,"{""language"": ""IT"", ""currency"": ""USD""}",632.7,Silver,1 +4077,Robert Reed,charles03@gmail.com,2020-10-14,"{""language"": ""DE"", ""currency"": ""GBP""}",1678.18,Bronze,0 +4078,Randy Todd,dennis83@lucas.com,2023-04-06,"{""language"": ""ES"", ""currency"": ""MXN""}",5626.51,Bronze,1 +4079,Mark Sullivan,samuelcunningham@dunlap.info,2024-07-27,"{""language"": ""FR"", ""currency"": ""USD""}",2582.25,Gold,1 +4080,Ricky Wheeler,lesliecarter@jones.com,2022-03-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5567.41,Gold,1 +4081,Larry Foster,fmorgan@valencia.com,2021-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5886.02,Silver,1 +4082,Aaron White,gabriela57@hotmail.com,2023-12-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1566.4,Gold,1 +4083,Jacob Ramirez,joshua56@woods-dean.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""CAD""}",6173.63,Silver,1 +4084,Sarah Johnson,leesteven@gmail.com,2024-02-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8409.27,Silver,1 +4085,Kristen Martinez,icurtis@yahoo.com,2024-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",2878.99,Gold,0 +4086,Emily Ford,cbray@tran.net,2022-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",6739.03,Bronze,0 +4087,Lori Torres,ethanburgess@yahoo.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""EUR""}",7488.71,Bronze,0 +4088,Ana Harris,marywilliams@gmail.com,2024-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",196.58,Bronze,1 +4089,Paige Coleman,fgood@hall.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",2595.45,Bronze,0 +4090,Ethan Martin,qdyer@mosley-chang.com,2023-05-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8361.81,Bronze,1 +4091,William Mcfarland MD,yorkwanda@gmail.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""USD""}",7291.73,Gold,0 +4092,Jennifer Rhodes,kentderek@cook.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",618.4,Gold,0 +4093,Elizabeth Nelson,marksexton@yahoo.com,2024-04-26,"{""language"": ""ES"", ""currency"": ""USD""}",1522.24,Gold,1 +4094,Eric Scott,sonyavance@yahoo.com,2020-07-07,"{""language"": ""IT"", ""currency"": ""USD""}",393.14,Bronze,1 +4095,Robert Moore,hoscott@anderson.info,2022-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",5258.21,Gold,1 +4096,Linda Hansen,reedtara@yahoo.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""USD""}",2395.93,Silver,0 +4097,Terrance Smith DDS,corey20@yahoo.com,2024-02-25,"{""language"": ""IT"", ""currency"": ""EUR""}",417.3,Silver,1 +4098,Thomas Cole,jbush@yahoo.com,2020-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",7286.83,Bronze,1 +4099,David Williams,angela69@king-hammond.info,2022-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6599.61,Silver,1 +4100,Robert Gilbert,kelly09@anderson.com,2022-03-14,"{""language"": ""IT"", ""currency"": ""USD""}",4126.48,Bronze,0 +4101,Sara Wolfe,scott11@hotmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",8652.31,Gold,0 +4102,Katherine Williams,vgates@hotmail.com,2022-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",9648.4,Silver,1 +4103,Jennifer Hughes,udowns@yahoo.com,2020-09-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9818.35,Silver,1 +4104,Christopher Cook,alex99@hotmail.com,2021-02-10,"{""language"": ""IT"", ""currency"": ""USD""}",7145.67,Bronze,0 +4105,Pamela Miller,canderson@gmail.com,2020-08-02,"{""language"": ""ES"", ""currency"": ""USD""}",7603.73,Silver,1 +4106,Jacqueline Norris,zachary54@gmail.com,2022-08-05,"{""language"": ""DE"", ""currency"": ""EUR""}",5895.69,Bronze,0 +4107,Tyler Floyd,anthonyhiggins@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7821.38,Gold,1 +4108,Justin Thompson,leonardkaren@gmail.com,2022-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",401.11,Bronze,1 +4109,Matthew Richards,sally06@hotmail.com,2023-05-22,"{""language"": ""DE"", ""currency"": ""GBP""}",745.85,Silver,0 +4110,Rodney Keith,davidthomas@gates.org,2023-07-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6699.71,Silver,0 +4111,Michele Collins,brandon89@yahoo.com,2022-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6608.42,Gold,1 +4112,Catherine Thompson,donna46@yahoo.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",501.95,Gold,0 +4113,Christopher Hicks,gnelson@gutierrez-bailey.net,2024-11-04,"{""language"": ""IT"", ""currency"": ""CAD""}",6853.82,Bronze,0 +4114,Karen Le,davidjennifer@yahoo.com,2022-11-01,"{""language"": ""ES"", ""currency"": ""EUR""}",755.05,Gold,0 +4115,Henry Kerr,joshuablack@gmail.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",4027.8,Gold,0 +4116,Mark Allen,huntkayla@gmail.com,2021-10-17,"{""language"": ""ES"", ""currency"": ""MXN""}",4191.24,Gold,0 +4117,Alexis Cruz,phillipmoore@giles.info,2020-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8082.66,Gold,1 +4118,Ashley Oconnell,wolfdana@wright.com,2023-12-05,"{""language"": ""IT"", ""currency"": ""MXN""}",1740.04,Silver,0 +4119,Monica Fleming,emma63@harris.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3397.37,Silver,0 +4120,Steven Peters,troywest@hotmail.com,2023-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",3306.32,Gold,1 +4121,Cynthia White,stephaniecarter@miller.com,2024-06-02,"{""language"": ""FR"", ""currency"": ""GBP""}",2421.61,Bronze,0 +4122,Dave Riley,schwartzmichael@thomas.biz,2020-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",1178.24,Bronze,0 +4123,Holly Randall,scott20@ferrell.com,2024-09-07,"{""language"": ""FR"", ""currency"": ""EUR""}",391.51,Bronze,0 +4124,Dr. Anthony Myers,vgreer@hotmail.com,2021-07-21,"{""language"": ""EN"", ""currency"": ""USD""}",6084.68,Gold,0 +4125,Angela Velazquez,isaiahwilson@yahoo.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""GBP""}",87.29,Silver,0 +4126,Victoria Frederick,sandra37@hotmail.com,2023-10-24,"{""language"": ""FR"", ""currency"": ""USD""}",1545.39,Gold,0 +4127,Cameron Buck,jeremy99@baldwin.org,2024-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",894.01,Bronze,1 +4128,Brian Everett,kristenfrye@calderon.biz,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2066.4,Gold,1 +4129,Willie Evans,lisa43@lopez.com,2021-02-27,"{""language"": ""DE"", ""currency"": ""EUR""}",8110.3,Gold,1 +4130,Sean Rodriguez,leekelsey@hotmail.com,2019-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4132.99,Silver,0 +4131,Patricia Sanchez,fordisabella@yahoo.com,2021-11-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4672.02,Silver,1 +4132,Gregory Hanson,nicholas40@welch.com,2022-09-04,"{""language"": ""IT"", ""currency"": ""USD""}",9622.52,Bronze,1 +4133,Jimmy Miller,hillbecky@yahoo.com,2024-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",5409.39,Bronze,0 +4134,John Chen,richard80@yahoo.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""GBP""}",9927.17,Silver,1 +4135,Kirsten Jackson,scottbrown@moore.com,2020-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",2139.13,Gold,1 +4136,Edwin Harrell,teresaolson@lopez-brown.com,2024-09-25,"{""language"": ""IT"", ""currency"": ""MXN""}",3929.71,Gold,0 +4137,Amy Anderson,williamhines@yahoo.com,2021-12-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4224.41,Gold,0 +4138,Miss Jaime Flowers,jared31@yahoo.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""USD""}",5511.73,Bronze,0 +4139,Melissa Montoya,pennyrivera@gmail.com,2022-07-18,"{""language"": ""IT"", ""currency"": ""GBP""}",9053.4,Silver,1 +4140,Jennifer Harrison,emorris@green.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""CAD""}",4144.82,Silver,0 +4141,Carol Paul,smithlance@hotmail.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5339.79,Bronze,0 +4142,Gary Ross,pwilliams@hart-cabrera.org,2020-02-17,"{""language"": ""EN"", ""currency"": ""CAD""}",603.01,Bronze,0 +4143,Gina Cobb,guerraeric@mclaughlin-wood.info,2024-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",4020.25,Bronze,0 +4144,Jamie Parker,mike77@gmail.com,2024-03-08,"{""language"": ""FR"", ""currency"": ""EUR""}",3757.8,Bronze,1 +4145,Tammy Brewer,dpetersen@wilson.com,2023-09-11,"{""language"": ""ES"", ""currency"": ""EUR""}",7810.96,Silver,0 +4146,Dylan Dodson,christinesalazar@tate.com,2024-04-09,"{""language"": ""DE"", ""currency"": ""USD""}",8081.25,Gold,0 +4147,Loretta Cruz,banksthomas@skinner-johnson.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2042.17,Silver,0 +4148,Jillian Thompson,cheryltaylor@washington.biz,2024-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6554.09,Silver,0 +4149,Brittany Baker,bpalmer@osborne-mitchell.com,2020-12-04,"{""language"": ""IT"", ""currency"": ""EUR""}",8720.91,Silver,1 +4150,Douglas Wilson,johnny82@lawrence.com,2020-08-22,"{""language"": ""FR"", ""currency"": ""GBP""}",3355.9,Silver,1 +4151,Michael White,gomezdonald@yahoo.com,2021-04-15,"{""language"": ""DE"", ""currency"": ""USD""}",8865.75,Silver,1 +4152,Brandon Steele,charles22@murray-kemp.com,2022-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7722.43,Bronze,0 +4153,Mr. Matthew Marshall,eatonandrew@yahoo.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""USD""}",463.73,Gold,0 +4154,Jacqueline Hart,imartinez@chase.info,2023-01-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6543.21,Gold,1 +4155,Mary Reeves,samantha05@charles.biz,2022-12-06,"{""language"": ""IT"", ""currency"": ""GBP""}",5959.94,Bronze,0 +4156,Levi Henry,ifischer@barron.com,2024-11-02,"{""language"": ""FR"", ""currency"": ""MXN""}",5395.0,Gold,0 +4157,Darlene Scott,merrittrachel@gmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",3441.81,Bronze,1 +4158,Brad Potter,maria14@thompson-nelson.net,2022-04-14,"{""language"": ""ES"", ""currency"": ""EUR""}",848.12,Silver,0 +4159,Jeffrey Farrell,jenniferwilliams@pratt-rubio.com,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",8916.48,Silver,0 +4160,Thomas Camacho,oestrada@hodges.net,2022-03-23,"{""language"": ""IT"", ""currency"": ""GBP""}",56.34,Bronze,0 +4161,Mr. Stephen Collier,wrightcory@johnson.biz,2024-03-05,"{""language"": ""EN"", ""currency"": ""USD""}",1996.68,Bronze,0 +4162,Tamara Harvey,nallen@khan.com,2024-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",9840.47,Gold,0 +4163,Mark Stanley,ekramer@rose.com,2022-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5250.89,Silver,0 +4164,Jennifer Gonzalez,traci79@garza.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3268.33,Gold,0 +4165,Dean Williamson,petersensteven@gmail.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",4400.91,Bronze,0 +4166,Bruce Ruiz,kyle00@hotmail.com,2022-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",8177.53,Silver,1 +4167,Lisa Weaver,cartersusan@odonnell.org,2023-07-26,"{""language"": ""DE"", ""currency"": ""MXN""}",2320.81,Gold,1 +4168,Chad Washington,scottdonovan@bass.org,2022-07-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5767.07,Silver,1 +4169,Kenneth Dodson,fyoder@wright.org,2024-10-31,"{""language"": ""ES"", ""currency"": ""GBP""}",6652.31,Gold,0 +4170,Thomas Lambert,williamlarson@gmail.com,2024-09-07,"{""language"": ""EN"", ""currency"": ""EUR""}",6164.57,Silver,1 +4171,Michael Rodriguez,mortonmatthew@brennan-li.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5013.4,Silver,1 +4172,Jacob Saunders,stevenmurray@smith.biz,2021-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",5713.78,Bronze,0 +4173,Andrew Harris,kirbywilliam@atkins-johnson.com,2022-04-19,"{""language"": ""DE"", ""currency"": ""EUR""}",6016.9,Gold,1 +4174,Claire Ibarra,dennis91@yahoo.com,2021-09-07,"{""language"": ""FR"", ""currency"": ""USD""}",6665.57,Bronze,0 +4175,Jared Johnson,lyonscharles@baldwin.com,2020-10-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6403.19,Bronze,0 +4176,Michelle Murillo,randallmichelle@sanford.info,2021-11-08,"{""language"": ""IT"", ""currency"": ""EUR""}",3985.83,Silver,0 +4177,Craig Chandler,candaceallen@hotmail.com,2024-01-18,"{""language"": ""IT"", ""currency"": ""CAD""}",9930.33,Gold,0 +4178,Paul Davidson,jacqueline94@hotmail.com,2021-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",8213.32,Silver,1 +4179,Steven Moody,cmartinez@hayes-russell.biz,2021-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",9440.16,Silver,1 +4180,Lauren Velasquez,jasminebrown@yahoo.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""CAD""}",6066.57,Gold,1 +4181,Maureen Richardson,lorilee@riggs.net,2022-10-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3049.33,Silver,1 +4182,Raymond Roman,mccoyjoseph@johnson-fleming.com,2024-04-02,"{""language"": ""IT"", ""currency"": ""USD""}",8693.82,Silver,1 +4183,Logan Kaiser,rebecca71@hotmail.com,2020-02-17,"{""language"": ""FR"", ""currency"": ""USD""}",9427.18,Bronze,0 +4184,Michael Joseph,greenkelsey@gmail.com,2022-07-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1580.81,Gold,1 +4185,John Lopez,ncooke@torres-stokes.com,2021-10-18,"{""language"": ""EN"", ""currency"": ""CAD""}",7438.69,Bronze,1 +4186,Elizabeth Rosario,frobinson@kim.com,2023-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",8912.37,Gold,1 +4187,Gary Crawford,tyler63@jordan.com,2021-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",5671.65,Silver,0 +4188,Sarah Lewis,mccoyjonathan@grant.com,2021-05-14,"{""language"": ""IT"", ""currency"": ""GBP""}",7481.16,Silver,0 +4189,Brian Strong,amanda90@moore.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""EUR""}",7448.79,Bronze,0 +4190,Katherine Nichols,russellkenneth@ford.info,2022-10-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5740.47,Gold,1 +4191,Karen Griffin,ronaldmarshall@franklin.info,2024-11-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3350.18,Gold,1 +4192,Andrew Rowe,daniel78@yahoo.com,2021-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",7691.5,Bronze,0 +4193,Amanda Anderson,jesse93@gmail.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",9702.62,Gold,1 +4194,David Keith,jameswilliams@yahoo.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""USD""}",1159.61,Bronze,0 +4195,Scott Miller,blackbrian@bauer.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",5719.21,Bronze,1 +4196,Anthony Melendez,russellwilliams@watson.com,2022-10-24,"{""language"": ""DE"", ""currency"": ""EUR""}",8026.72,Gold,1 +4197,Julia Gibson,jessicavasquez@gmail.com,2022-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",8215.51,Gold,0 +4198,Evelyn Lee,jermainerobertson@silva.info,2020-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",6080.0,Bronze,0 +4199,Leslie Hernandez,vsanchez@johnson-johnson.info,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",7768.18,Bronze,0 +4200,Morgan Harris,kreynolds@greer-rodriguez.com,2020-02-03,"{""language"": ""FR"", ""currency"": ""GBP""}",7773.94,Gold,0 +4201,Johnathan Hatfield,tortiz@yahoo.com,2021-10-10,"{""language"": ""EN"", ""currency"": ""GBP""}",3800.22,Bronze,0 +4202,Beth Chavez,davidford@martin-carter.com,2021-12-24,"{""language"": ""ES"", ""currency"": ""EUR""}",4060.65,Silver,0 +4203,Samantha Byrd,greed@cunningham.biz,2024-03-29,"{""language"": ""EN"", ""currency"": ""CAD""}",8730.34,Gold,0 +4204,Patrick Richmond,thompsoncaroline@rojas-davis.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""CAD""}",6015.85,Silver,0 +4205,Thomas Owens,coxbenjamin@hotmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7425.62,Gold,1 +4206,Robin Taylor,mhouse@hotmail.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",891.82,Bronze,0 +4207,Jay Benitez,nicholascoleman@barber-smith.biz,2022-09-23,"{""language"": ""FR"", ""currency"": ""GBP""}",6286.34,Bronze,1 +4208,Kelsey Lin,vmartinez@hotmail.com,2023-09-06,"{""language"": ""EN"", ""currency"": ""MXN""}",2061.34,Silver,0 +4209,Mitchell Hernandez,rodgerslisa@watson-henry.biz,2020-02-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4197.27,Gold,0 +4210,Margaret Juarez,cfisher@benson-fox.biz,2020-10-29,"{""language"": ""ES"", ""currency"": ""USD""}",6701.47,Silver,1 +4211,Parker Mcdonald,josephlloyd@lewis-gonzalez.com,2020-05-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7112.47,Bronze,0 +4212,Jodi Nunez,kelleyjulia@martin-cunningham.com,2021-06-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2924.63,Bronze,0 +4213,Matthew Howard,isherman@yahoo.com,2023-07-20,"{""language"": ""DE"", ""currency"": ""USD""}",3167.31,Bronze,0 +4214,Jessica Spencer,joshuacruz@hotmail.com,2020-08-18,"{""language"": ""ES"", ""currency"": ""EUR""}",7559.01,Gold,1 +4215,Amber Brooks,russell42@martinez-nelson.com,2024-03-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1979.57,Silver,0 +4216,Jessica Lara,elijaharmstrong@bailey.biz,2024-10-02,"{""language"": ""EN"", ""currency"": ""USD""}",675.1,Silver,1 +4217,James Wells,waltonscott@hansen-barton.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""USD""}",5083.92,Bronze,0 +4218,John Green,stephen75@rodriguez.com,2022-10-03,"{""language"": ""DE"", ""currency"": ""MXN""}",3576.64,Silver,1 +4219,Sabrina Ellis,davisisaiah@hotmail.com,2020-12-25,"{""language"": ""DE"", ""currency"": ""GBP""}",6507.23,Silver,0 +4220,Joshua Wright,qhughes@yahoo.com,2023-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9105.08,Bronze,0 +4221,Margaret Ortega,thomas78@hotmail.com,2024-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",7959.15,Bronze,1 +4222,Elizabeth Medina,cgarcia@mitchell-gonzales.com,2023-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",6390.45,Gold,1 +4223,Heather Saunders,smithcurtis@yahoo.com,2020-09-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5230.75,Gold,1 +4224,Michele Bates,hernandezjillian@smith-delgado.com,2021-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7125.46,Bronze,0 +4225,Dawn Bradshaw,meadowsjoseph@jarvis.com,2022-05-08,"{""language"": ""EN"", ""currency"": ""USD""}",5043.62,Bronze,1 +4226,Luis Moore,alan68@yahoo.com,2020-07-20,"{""language"": ""FR"", ""currency"": ""CAD""}",9861.08,Bronze,1 +4227,Sarah Simmons,osharp@yahoo.com,2021-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8591.14,Silver,0 +4228,Kenneth Reed,clozano@chang-simpson.com,2024-07-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3300.9,Bronze,0 +4229,Megan Rodgers,lucasparker@patton.com,2024-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4637.82,Gold,1 +4230,Marvin Pugh,andrewortiz@simpson-gonzalez.com,2024-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6316.11,Gold,1 +4231,Mary Ross,usmith@hotmail.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",417.9,Bronze,0 +4232,Michael Davis,twalsh@gmail.com,2021-06-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3945.73,Silver,1 +4233,Mrs. Emily Thomas,csandoval@yahoo.com,2021-03-20,"{""language"": ""DE"", ""currency"": ""GBP""}",6514.25,Gold,1 +4234,Natalie Garcia,mcconnellkatherine@hotmail.com,2022-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",2325.8,Silver,1 +4235,Nicole Hernandez,vthompson@hotmail.com,2022-11-21,"{""language"": ""EN"", ""currency"": ""USD""}",7577.49,Gold,1 +4236,Warren Williams,christopherturner@hotmail.com,2021-11-20,"{""language"": ""ES"", ""currency"": ""GBP""}",7669.4,Gold,0 +4237,Samuel Taylor,wbarnett@estrada.com,2022-06-16,"{""language"": ""FR"", ""currency"": ""USD""}",7251.45,Bronze,1 +4238,Mr. Brandon Price,peter36@hotmail.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",5517.23,Bronze,1 +4239,Krystal Thornton,shelly60@gmail.com,2021-03-13,"{""language"": ""IT"", ""currency"": ""GBP""}",6212.12,Bronze,0 +4240,Joshua Brown,sarahdean@gmail.com,2020-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",690.19,Bronze,1 +4241,Brittany Jones,timothy64@cross.com,2023-03-27,"{""language"": ""IT"", ""currency"": ""CAD""}",1732.74,Silver,1 +4242,Bryan Hall,xmitchell@yahoo.com,2022-04-25,"{""language"": ""DE"", ""currency"": ""EUR""}",7684.41,Bronze,1 +4243,Bryan Johnson,qgarza@bush.org,2020-10-01,"{""language"": ""ES"", ""currency"": ""GBP""}",6083.45,Bronze,1 +4244,Jodi Henry MD,dgarner@padilla.com,2020-08-11,"{""language"": ""ES"", ""currency"": ""USD""}",1322.66,Bronze,0 +4245,Tonya Stephens,wilsonmatthew@flores.org,2023-08-22,"{""language"": ""FR"", ""currency"": ""USD""}",7495.51,Silver,1 +4246,Michael Miller,kempronald@vargas-tucker.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""CAD""}",8692.96,Gold,1 +4247,Denise Pacheco,paula41@hotmail.com,2024-10-28,"{""language"": ""FR"", ""currency"": ""GBP""}",6317.89,Gold,1 +4248,Kristen Hanson,orusso@brooks.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""USD""}",4017.59,Bronze,1 +4249,Randall Carr,monicariley@hotmail.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",1911.73,Bronze,1 +4250,Rebecca Maldonado,kenneth25@hotmail.com,2021-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",936.81,Bronze,1 +4251,Leslie Zhang,ambergarcia@gmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",1882.02,Silver,1 +4252,Steve Cook,lisalane@hotmail.com,2020-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",9714.59,Silver,1 +4253,Elizabeth Robinson,johnsonjohn@sutton-harmon.net,2021-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",2124.74,Silver,0 +4254,Dr. Brenda Hull DDS,asmith@cunningham-fischer.org,2022-08-08,"{""language"": ""IT"", ""currency"": ""USD""}",2778.91,Bronze,1 +4255,Antonio Porter,carlos45@henderson.com,2023-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",4249.3,Gold,0 +4256,Patricia Floyd,jamesturner@king.org,2020-09-14,"{""language"": ""EN"", ""currency"": ""CAD""}",1218.46,Silver,1 +4257,Brian Brooks,raymondstewart@martinez.org,2024-08-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8163.42,Silver,0 +4258,Matthew Fleming,daviscrystal@mclaughlin.com,2022-01-09,"{""language"": ""IT"", ""currency"": ""EUR""}",1201.62,Bronze,0 +4259,Dennis Elliott,woodwardthomas@smith.com,2020-08-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8122.57,Silver,1 +4260,Dr. Kathleen Daniels,brett24@hill.com,2023-07-02,"{""language"": ""DE"", ""currency"": ""GBP""}",3061.34,Gold,0 +4261,Kylie Howell,higginsalejandro@griffin.biz,2022-12-19,"{""language"": ""DE"", ""currency"": ""MXN""}",6097.77,Gold,0 +4262,Taylor Carter,joseph60@yahoo.com,2024-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",2571.78,Gold,1 +4263,Patrick Williams,maryschmidt@hughes.com,2023-07-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6545.65,Bronze,0 +4264,Heather Moore,scottkenneth@gonzalez-taylor.org,2023-11-28,"{""language"": ""ES"", ""currency"": ""MXN""}",773.66,Silver,1 +4265,Timothy Jones,scottmarie@yahoo.com,2021-03-13,"{""language"": ""EN"", ""currency"": ""EUR""}",421.52,Gold,0 +4266,Henry Lawson,kenneth43@jones-vega.com,2024-06-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1469.56,Silver,1 +4267,Bryce Anderson,danielmccullough@gmail.com,2022-01-24,"{""language"": ""DE"", ""currency"": ""USD""}",8265.2,Gold,1 +4268,Jenna Peck,jasminemartin@peters.info,2024-08-05,"{""language"": ""IT"", ""currency"": ""MXN""}",618.93,Bronze,0 +4269,Larry Mcclain,erinnunez@williams.info,2020-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4403.65,Gold,1 +4270,Kimberly Mahoney,stuartrebecca@warren.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7865.59,Gold,1 +4271,Stacy Pearson,walkersteven@yahoo.com,2022-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",7710.19,Silver,0 +4272,Victoria Hansen,marshallbrian@gmail.com,2020-10-24,"{""language"": ""DE"", ""currency"": ""MXN""}",7285.96,Bronze,1 +4273,Todd Rios,ihart@townsend.com,2023-09-19,"{""language"": ""EN"", ""currency"": ""USD""}",5699.01,Gold,0 +4274,Katie Johnston,danielpatricia@yahoo.com,2021-09-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3340.36,Silver,0 +4275,Amy Cameron,gail66@hotmail.com,2020-03-07,"{""language"": ""ES"", ""currency"": ""EUR""}",6209.59,Gold,0 +4276,Paul Johnson,icampbell@mills.org,2021-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3564.84,Bronze,0 +4277,Scott Wilkerson,rachelmoore@holmes.com,2024-06-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3472.66,Gold,0 +4278,Amber Carrillo,mcguirechase@hotmail.com,2023-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",3990.48,Silver,1 +4279,Daniel Lyons,thomastanner@yahoo.com,2022-04-27,"{""language"": ""IT"", ""currency"": ""USD""}",3567.53,Bronze,1 +4280,Bonnie Garcia,qperez@yahoo.com,2022-10-27,"{""language"": ""IT"", ""currency"": ""MXN""}",5687.42,Gold,1 +4281,Russell Shields,ibailey@fox-reyes.com,2021-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",5820.38,Silver,1 +4282,Alexis Brown,lisahopkins@gmail.com,2023-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",4273.92,Bronze,1 +4283,Michelle Gonzalez,williamsbryan@garcia.biz,2023-08-18,"{""language"": ""DE"", ""currency"": ""CAD""}",3238.23,Bronze,1 +4284,Shannon Luna,nmooney@murphy.com,2021-07-28,"{""language"": ""IT"", ""currency"": ""EUR""}",8204.09,Gold,1 +4285,Angela Reyes,joneskyle@christian-baldwin.com,2020-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",762.41,Gold,1 +4286,Bobby Nelson,tlong@gmail.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""MXN""}",9508.71,Bronze,1 +4287,Lisa Warren,xmiller@yahoo.com,2023-02-01,"{""language"": ""ES"", ""currency"": ""USD""}",892.37,Silver,0 +4288,Hannah Navarro,joneskevin@hurley.biz,2024-11-01,"{""language"": ""EN"", ""currency"": ""CAD""}",4587.57,Silver,0 +4289,Brian Brown,wrodriguez@gmail.com,2021-09-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1847.01,Bronze,1 +4290,Jennifer Campbell,warrenchad@hotmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7990.63,Gold,1 +4291,Christopher Anderson,tiffany06@rojas.net,2023-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",9106.96,Gold,1 +4292,Oscar Williams,dylan68@gmail.com,2020-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",8459.23,Bronze,1 +4293,Bryan Dixon,marysparks@villarreal-gamble.org,2024-08-23,"{""language"": ""EN"", ""currency"": ""GBP""}",639.02,Bronze,1 +4294,Barbara Ellis,pkirby@yahoo.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",6244.94,Gold,0 +4295,Katie Garcia,robinmalone@gmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6961.2,Bronze,0 +4296,Lori Ford,fwhite@briggs.com,2024-04-16,"{""language"": ""EN"", ""currency"": ""USD""}",8514.4,Bronze,1 +4297,Debra Jones,lisabond@gmail.com,2024-05-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6498.01,Silver,1 +4298,Erika Delgado,timmoore@wright-velazquez.org,2021-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8258.99,Silver,0 +4299,Ethan Jackson,hjones@simpson.net,2023-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",3620.52,Bronze,1 +4300,Jennifer Cook,shawn78@wilkinson.com,2021-01-24,"{""language"": ""DE"", ""currency"": ""MXN""}",9751.46,Gold,1 +4301,Billy Saunders,sarahfritz@gmail.com,2023-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",5887.09,Silver,0 +4302,Brianna Moore,annamcpherson@gmail.com,2022-09-19,"{""language"": ""ES"", ""currency"": ""EUR""}",9737.71,Silver,1 +4303,David Perez,davidjames@shaw.com,2021-07-15,"{""language"": ""EN"", ""currency"": ""GBP""}",1945.35,Silver,1 +4304,Lynn White MD,garciakatherine@lucero.com,2022-02-01,"{""language"": ""IT"", ""currency"": ""MXN""}",7279.37,Silver,1 +4305,Melissa Werner,lorihurley@donovan.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""EUR""}",873.29,Bronze,1 +4306,Sarah Rice,pamela39@gmail.com,2022-12-28,"{""language"": ""FR"", ""currency"": ""GBP""}",8483.14,Gold,1 +4307,Erin Salas,fhawkins@castillo.net,2022-09-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3840.86,Silver,1 +4308,George Cooper,ellisonerica@yahoo.com,2022-04-11,"{""language"": ""IT"", ""currency"": ""USD""}",2554.14,Bronze,0 +4309,John Durham,wsimpson@wells-rodriguez.com,2023-12-21,"{""language"": ""DE"", ""currency"": ""USD""}",5313.92,Silver,0 +4310,Jodi Clark,awright@hotmail.com,2021-09-14,"{""language"": ""DE"", ""currency"": ""EUR""}",8709.25,Bronze,1 +4311,Trevor Moody,monicawolfe@yahoo.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3513.7,Gold,0 +4312,Ryan Espinoza,bentleyscott@arellano-ochoa.com,2022-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7461.0,Bronze,1 +4313,Joseph Lewis,nicholeramos@hunt-jacobson.com,2020-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3634.89,Gold,0 +4314,Tiffany Price,benjamin05@alvarez.com,2020-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",6884.56,Silver,0 +4315,James Hoffman,slee@brown-diaz.com,2022-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",6687.65,Gold,0 +4316,Eileen Lewis DDS,george97@yahoo.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3886.13,Silver,0 +4317,Daniel Lopez,rebeccajohnson@brooks-baker.org,2021-06-19,"{""language"": ""ES"", ""currency"": ""MXN""}",5759.81,Silver,0 +4318,Donald Davis,kristin58@gmail.com,2022-11-24,"{""language"": ""EN"", ""currency"": ""MXN""}",2893.9,Silver,1 +4319,Thomas Murphy,klyons@hotmail.com,2020-04-15,"{""language"": ""ES"", ""currency"": ""CAD""}",1340.5,Silver,1 +4320,Eric Cole,wgeorge@yahoo.com,2020-05-17,"{""language"": ""EN"", ""currency"": ""GBP""}",6232.56,Bronze,0 +4321,Kimberly Riley,bjohnson@chambers.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",8812.64,Silver,1 +4322,Samuel Figueroa,bakermichelle@jackson-mcdaniel.biz,2022-01-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2162.93,Gold,0 +4323,Charles Smith,pamelaorozco@hotmail.com,2023-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",4713.73,Silver,0 +4324,Dennis Davis,kennethsmith@graham.net,2021-12-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7201.21,Bronze,1 +4325,Anita Navarro,eric72@butler.com,2022-10-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6457.75,Bronze,1 +4326,Henry Kelly,brendanmanning@gmail.com,2020-05-14,"{""language"": ""ES"", ""currency"": ""EUR""}",3741.25,Gold,0 +4327,Michael Sawyer,anarose@yahoo.com,2024-11-23,"{""language"": ""IT"", ""currency"": ""MXN""}",5942.22,Gold,1 +4328,Meghan Calderon,fspencer@meyer.com,2023-09-14,"{""language"": ""IT"", ""currency"": ""USD""}",7229.52,Bronze,0 +4329,Susan Sherman,gballard@yahoo.com,2020-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8544.57,Bronze,0 +4330,Kelly Everett,elizabeth22@morton.com,2024-05-25,"{""language"": ""EN"", ""currency"": ""EUR""}",1934.2,Silver,1 +4331,Christina Yang,erinallen@hotmail.com,2021-04-03,"{""language"": ""FR"", ""currency"": ""USD""}",3270.55,Gold,1 +4332,Edwin Andrade,lopezhaley@gmail.com,2024-03-20,"{""language"": ""FR"", ""currency"": ""MXN""}",6580.76,Gold,0 +4333,Mary Carter,elliottsabrina@yahoo.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",9526.51,Gold,0 +4334,William Butler,glenntheresa@freeman.com,2023-03-25,"{""language"": ""EN"", ""currency"": ""CAD""}",5735.22,Silver,1 +4335,Ashley Smith,sweaver@yahoo.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2046.99,Bronze,1 +4336,Jeanette Powell,porterstephen@myers.net,2020-11-02,"{""language"": ""IT"", ""currency"": ""MXN""}",7223.04,Bronze,0 +4337,Valerie Nichols,brian82@johnson.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",1106.04,Bronze,0 +4338,Ashlee Villa,carrie73@hotmail.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""MXN""}",7200.91,Bronze,0 +4339,James Smith,jamietorres@gmail.com,2023-03-09,"{""language"": ""ES"", ""currency"": ""MXN""}",1905.66,Gold,1 +4340,Joseph Mccormick,bnicholson@white.com,2022-08-26,"{""language"": ""DE"", ""currency"": ""USD""}",5857.98,Silver,0 +4341,Emily Stephenson,peter97@yahoo.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",1117.89,Bronze,1 +4342,Susan Thornton,molly48@williams-alvarez.biz,2023-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",7658.41,Silver,1 +4343,Carolyn Mccoy,mccannkendra@gmail.com,2024-05-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2319.72,Silver,0 +4344,Caitlin Williams MD,tiffanybrock@gmail.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1642.47,Gold,1 +4345,Patrick Rosales,scott78@castro.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",8458.56,Bronze,0 +4346,Jill Brooks,hollowaycynthia@cole.info,2024-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4882.78,Gold,1 +4347,Donald Taylor,connor52@hotmail.com,2023-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",7412.96,Silver,0 +4348,Cindy Rose,melissaedwards@douglas.com,2020-08-05,"{""language"": ""EN"", ""currency"": ""GBP""}",2787.56,Gold,0 +4349,Dwayne Logan,karenpatterson@yahoo.com,2022-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",7095.79,Gold,0 +4350,Eugene Myers,hillwilliam@yahoo.com,2024-02-29,"{""language"": ""ES"", ""currency"": ""CAD""}",9706.89,Bronze,1 +4351,Christopher Alvarez,birdlisa@reeves.com,2020-11-24,"{""language"": ""EN"", ""currency"": ""USD""}",967.16,Silver,0 +4352,Patricia Torres,murillokara@gmail.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2854.85,Gold,0 +4353,David Lewis,ronald94@garcia.com,2022-06-02,"{""language"": ""ES"", ""currency"": ""EUR""}",2490.2,Silver,0 +4354,Michael Fields,timothybuckley@hotmail.com,2021-02-21,"{""language"": ""ES"", ""currency"": ""CAD""}",7376.13,Bronze,1 +4355,Vickie Kelley,woodsgregory@thompson.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",6381.55,Silver,1 +4356,Julie Peterson,jasonbenson@gmail.com,2021-07-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7183.19,Silver,0 +4357,Jennifer Petty,duncanphillip@robinson-carpenter.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3792.82,Gold,0 +4358,Mary Floyd,devinmitchell@gmail.com,2023-01-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1286.1,Gold,1 +4359,Andrew Williams,burkejeffrey@yahoo.com,2023-08-22,"{""language"": ""ES"", ""currency"": ""GBP""}",760.94,Bronze,1 +4360,Amy Moody,reedalexandra@davis-barnes.info,2022-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",2960.18,Bronze,1 +4361,Darryl Haley,kenneth57@johnson-smith.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""GBP""}",5956.09,Bronze,0 +4362,George Schmidt,orivera@gmail.com,2023-05-01,"{""language"": ""EN"", ""currency"": ""MXN""}",5054.02,Bronze,1 +4363,Dr. Ricardo Lowe,smithdanielle@gmail.com,2024-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2551.89,Bronze,0 +4364,Samantha James,josephhurst@gmail.com,2020-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",4351.29,Silver,0 +4365,Antonio Logan,ana38@wong-willis.com,2022-11-03,"{""language"": ""EN"", ""currency"": ""MXN""}",722.82,Silver,0 +4366,Ryan Henry,alex85@jones-montoya.com,2021-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",499.97,Gold,1 +4367,Christopher Bailey,fernandezgregory@hotmail.com,2024-03-24,"{""language"": ""ES"", ""currency"": ""MXN""}",3179.25,Bronze,1 +4368,Kiara Jackson,stephanie90@hotmail.com,2022-05-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7719.77,Silver,0 +4369,Pamela Vaughn,hbrown@gibson.net,2024-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",1920.71,Gold,1 +4370,Laura Scott,rogersjason@wood.org,2021-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",9603.03,Gold,1 +4371,Mrs. Robin Osborn,qsingleton@yahoo.com,2024-09-15,"{""language"": ""IT"", ""currency"": ""EUR""}",5851.88,Silver,0 +4372,Douglas Sanchez,desiree03@hotmail.com,2024-09-26,"{""language"": ""IT"", ""currency"": ""EUR""}",2730.27,Silver,1 +4373,Rachel Lowery,dcarroll@gmail.com,2024-01-17,"{""language"": ""IT"", ""currency"": ""CAD""}",1881.82,Bronze,1 +4374,Michael Murphy,cesparza@peters.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",5117.74,Silver,0 +4375,Tammy Moore,webergeorge@williams.com,2022-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",8067.62,Bronze,1 +4376,Matthew Sanchez,brian74@hernandez.com,2023-10-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1900.47,Bronze,0 +4377,Jean Matthews,utorres@gmail.com,2021-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",609.41,Silver,0 +4378,Brandon Brooks,huangjessica@bauer.com,2022-07-03,"{""language"": ""EN"", ""currency"": ""MXN""}",6200.98,Bronze,1 +4379,Michael Wheeler,brittanyrojas@gmail.com,2024-04-13,"{""language"": ""IT"", ""currency"": ""CAD""}",4194.24,Silver,0 +4380,Jenna Russell,teresawu@phillips-wilkins.com,2022-09-05,"{""language"": ""IT"", ""currency"": ""USD""}",4675.71,Bronze,0 +4381,Keith Baker,feliciajohnson@hotmail.com,2021-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",1776.35,Gold,0 +4382,Joshua Brown,xnelson@wong.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""USD""}",8475.25,Gold,0 +4383,Dr. Hannah Maxwell DDS,praymond@yahoo.com,2022-05-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9310.78,Gold,0 +4384,Dylan Kline,rgreen@hotmail.com,2022-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",5642.95,Silver,0 +4385,Devin Perry,obernard@thomas.net,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",2301.39,Gold,1 +4386,Amanda Martin,weissmatthew@hotmail.com,2021-11-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5007.68,Bronze,1 +4387,Margaret Houston,phicks@hotmail.com,2020-01-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2688.76,Gold,0 +4388,Andrea Peters,mariamiller@gmail.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""GBP""}",1882.81,Bronze,1 +4389,Amber Mitchell,williamssue@wyatt.com,2024-08-01,"{""language"": ""EN"", ""currency"": ""CAD""}",5449.53,Gold,0 +4390,Susan Vazquez,boothchristopher@gmail.com,2023-04-30,"{""language"": ""ES"", ""currency"": ""EUR""}",6751.34,Silver,1 +4391,Anna Moore,tedwards@yahoo.com,2021-09-14,"{""language"": ""FR"", ""currency"": ""CAD""}",6196.08,Gold,0 +4392,Brianna Alexander,hallalexander@hotmail.com,2023-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8522.23,Silver,0 +4393,Matthew Cohen,huffmanlisa@gmail.com,2023-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",4159.09,Gold,1 +4394,Mrs. Jill Campbell,mooneycharlene@hotmail.com,2024-01-01,"{""language"": ""DE"", ""currency"": ""EUR""}",1538.88,Gold,1 +4395,Ronnie Crawford,wrussell@hotmail.com,2024-10-25,"{""language"": ""EN"", ""currency"": ""USD""}",7422.13,Silver,1 +4396,Debbie Ellis,annefletcher@yahoo.com,2020-11-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2502.08,Silver,1 +4397,Robert Garcia,rmartinez@hotmail.com,2021-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",1725.68,Bronze,1 +4398,Steven Davis DDS,brenda67@hotmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",2582.26,Silver,1 +4399,Madison Schaefer,slong@gmail.com,2023-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4489.87,Bronze,1 +4400,Derek Spears,jamesgonzalez@gmail.com,2021-12-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1309.23,Silver,1 +4401,William Barajas,alexander91@young.com,2020-07-18,"{""language"": ""EN"", ""currency"": ""MXN""}",6015.47,Gold,0 +4402,Cynthia Rocha,alexa65@douglas.com,2021-11-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6620.23,Gold,1 +4403,Henry Bush,norma19@hotmail.com,2021-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",6409.83,Silver,0 +4404,Jeremy Ferguson,michaelsmith@gill-hill.com,2023-04-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3691.3,Silver,0 +4405,Kathy Johnson,julianlee@hotmail.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7738.03,Gold,1 +4406,Valerie Peterson,tommyvaughn@barker.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",6675.96,Silver,0 +4407,Jacob Ayala,epeterson@robinson-king.net,2023-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",1534.29,Silver,0 +4408,Mary Farmer,leslie21@hotmail.com,2021-12-30,"{""language"": ""FR"", ""currency"": ""USD""}",8264.73,Gold,1 +4409,Tiffany Mendez,jared45@harrington.com,2020-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",3160.29,Bronze,0 +4410,Christine Savage,udavis@gmail.com,2022-05-25,"{""language"": ""ES"", ""currency"": ""USD""}",673.28,Gold,0 +4411,Ryan Marks,daniel14@graham.com,2023-10-02,"{""language"": ""ES"", ""currency"": ""USD""}",9830.5,Gold,0 +4412,Nathan Flynn,frysandra@walters.com,2022-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",674.65,Bronze,0 +4413,Briana Smith,jesse20@yahoo.com,2023-12-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6688.84,Bronze,1 +4414,Gail Parker,joseph92@johnson.com,2023-06-23,"{""language"": ""ES"", ""currency"": ""USD""}",4579.57,Silver,1 +4415,Kevin Cole,eric57@gmail.com,2024-12-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5771.69,Gold,1 +4416,Marissa Richmond,norozco@hotmail.com,2020-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9467.66,Gold,0 +4417,Jennifer Durham,gtaylor@osborn-davenport.com,2023-07-08,"{""language"": ""ES"", ""currency"": ""CAD""}",3676.82,Gold,0 +4418,Jonathan Copeland,gkennedy@davis-campos.org,2022-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",9021.69,Bronze,0 +4419,Linda Melendez,lauragreen@simpson.org,2021-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3689.54,Silver,0 +4420,Anthony Soto,marylloyd@gmail.com,2023-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",1200.46,Bronze,1 +4421,Joel Johnston,acastillo@gmail.com,2022-05-13,"{""language"": ""IT"", ""currency"": ""USD""}",3828.71,Bronze,0 +4422,Ryan Conway,riverakimberly@mendoza.info,2020-04-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7735.8,Bronze,0 +4423,Steven Miller,williamthomas@yahoo.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""CAD""}",3221.4,Gold,1 +4424,Michael Lucero,hwhite@farrell.info,2020-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4921.11,Gold,1 +4425,John Ochoa,westgina@hotmail.com,2022-03-10,"{""language"": ""FR"", ""currency"": ""CAD""}",2323.6,Silver,1 +4426,Christopher Mathis,robert75@hotmail.com,2021-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",8929.21,Silver,1 +4427,Angela Bright,amckenzie@harrison-dickerson.com,2020-10-13,"{""language"": ""FR"", ""currency"": ""CAD""}",2908.16,Bronze,1 +4428,Bradley Jennings,bradleystacy@yahoo.com,2024-10-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7691.91,Bronze,0 +4429,Rebecca Parker,amccall@pena.biz,2022-12-16,"{""language"": ""FR"", ""currency"": ""MXN""}",1820.87,Silver,1 +4430,Charles Douglas,zbell@saunders.com,2024-07-02,"{""language"": ""DE"", ""currency"": ""MXN""}",808.72,Bronze,1 +4431,Jennifer Johnson,jennifer02@rodriguez-blake.org,2022-10-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4095.01,Bronze,1 +4432,Allen Morgan,lrivera@yahoo.com,2020-09-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6002.74,Gold,1 +4433,Kristen Allison,martinsergio@yahoo.com,2020-10-16,"{""language"": ""ES"", ""currency"": ""USD""}",1196.73,Bronze,0 +4434,Shelly Jackson,david69@richards.com,2020-07-26,"{""language"": ""IT"", ""currency"": ""USD""}",2635.73,Silver,0 +4435,Krystal Fields,peterhale@lester.com,2021-01-23,"{""language"": ""ES"", ""currency"": ""CAD""}",4359.05,Silver,1 +4436,Marilyn Wolfe,cprince@edwards.com,2021-01-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8546.7,Bronze,0 +4437,Briana Smith,davidstewart@jensen.com,2021-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1077.6,Silver,1 +4438,James Soto,natalie93@yahoo.com,2022-05-23,"{""language"": ""EN"", ""currency"": ""USD""}",2079.83,Bronze,1 +4439,Heather May,martinangela@hotmail.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",6616.15,Silver,0 +4440,Brian Juarez,gdixon@pena.com,2023-07-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3658.07,Silver,0 +4441,Julia Flynn,kelseymiller@woods.com,2024-11-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9728.5,Gold,1 +4442,Mary Higgins,natalieparks@montgomery.com,2023-06-03,"{""language"": ""ES"", ""currency"": ""GBP""}",7707.64,Gold,0 +4443,Derek Alexander,bartonscott@lynn.info,2021-05-15,"{""language"": ""FR"", ""currency"": ""GBP""}",3611.06,Silver,0 +4444,David Sanchez,luke17@hotmail.com,2022-04-09,"{""language"": ""ES"", ""currency"": ""MXN""}",517.95,Bronze,0 +4445,Keith Hensley,matthew54@yahoo.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",5173.71,Silver,0 +4446,Christopher Williams,uyoung@paul.org,2021-06-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2773.12,Silver,0 +4447,Cody Erickson,joseph24@yahoo.com,2023-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1041.54,Bronze,1 +4448,Sherri Thompson,gomezcarrie@gmail.com,2021-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",8372.06,Gold,1 +4449,Kayla Kline,parksbrenda@holder-hall.info,2023-03-13,"{""language"": ""FR"", ""currency"": ""USD""}",4505.75,Gold,1 +4450,Rick Turner,krista89@moss.com,2024-02-17,"{""language"": ""EN"", ""currency"": ""MXN""}",2859.98,Bronze,0 +4451,Brian Patterson,wrichardson@thompson.net,2022-10-06,"{""language"": ""EN"", ""currency"": ""GBP""}",8312.49,Gold,0 +4452,Kathleen Huber,lespinoza@gmail.com,2022-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",5854.9,Silver,0 +4453,Dr. Justin Kelley,juliehernandez@hotmail.com,2024-04-25,"{""language"": ""EN"", ""currency"": ""GBP""}",1088.87,Bronze,1 +4454,Antonio Dennis,uking@fernandez.org,2024-10-23,"{""language"": ""EN"", ""currency"": ""GBP""}",6387.72,Bronze,1 +4455,Anthony Miller,jwilkerson@powers-hanson.info,2020-05-20,"{""language"": ""ES"", ""currency"": ""GBP""}",6885.12,Gold,0 +4456,Jonathan Martin DVM,shawnmoreno@gmail.com,2023-03-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9524.68,Silver,1 +4457,Frank Cohen,zrogers@mejia-perry.info,2023-07-09,"{""language"": ""FR"", ""currency"": ""EUR""}",1970.65,Bronze,0 +4458,Bailey Copeland,richardsmith@smith.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8664.87,Gold,0 +4459,Mary Harris,alan96@brooks-ruiz.com,2020-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",330.05,Silver,1 +4460,Kenneth Harris,huffkristine@peterson-arroyo.biz,2021-08-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6071.91,Silver,0 +4461,Brett Wilson,crosbylouis@yahoo.com,2021-03-13,"{""language"": ""DE"", ""currency"": ""USD""}",1624.65,Silver,1 +4462,Alex Hunter,newmanjames@gmail.com,2023-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2991.66,Silver,1 +4463,Travis Russo,qsmith@yahoo.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6511.37,Bronze,0 +4464,Katherine Ruiz,qflores@murphy.com,2020-05-24,"{""language"": ""EN"", ""currency"": ""USD""}",6914.61,Gold,0 +4465,Charles Martin,cdelgado@norris-palmer.com,2024-09-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4730.91,Silver,1 +4466,Alexandra Green,leah17@gmail.com,2024-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",5387.57,Silver,0 +4467,Amanda Williams,megan22@heath-oneal.com,2023-09-12,"{""language"": ""EN"", ""currency"": ""CAD""}",8715.15,Gold,1 +4468,Audrey Ramos,vfoster@hotmail.com,2023-11-17,"{""language"": ""FR"", ""currency"": ""CAD""}",7441.58,Bronze,1 +4469,Arthur Foster,thompsonjeffrey@brown-nelson.info,2023-10-20,"{""language"": ""IT"", ""currency"": ""EUR""}",5841.72,Silver,1 +4470,Justin Collins,baldwintimothy@reed-munoz.com,2024-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",3784.69,Silver,1 +4471,Mary Harris,danieldunn@hotmail.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1466.8,Silver,1 +4472,Michelle Massey,stephanie22@brown-scott.com,2020-04-27,"{""language"": ""DE"", ""currency"": ""CAD""}",5032.94,Bronze,0 +4473,Jonathan Mills,xyang@hotmail.com,2022-06-27,"{""language"": ""DE"", ""currency"": ""MXN""}",2114.24,Gold,1 +4474,Suzanne Henry,josesandoval@yahoo.com,2023-06-30,"{""language"": ""FR"", ""currency"": ""USD""}",4358.43,Gold,0 +4475,Scott Lowery,powelltony@johnson-newton.com,2022-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",5856.03,Silver,0 +4476,Terry Parker,heather71@warren-watson.biz,2021-05-22,"{""language"": ""DE"", ""currency"": ""USD""}",9281.87,Silver,1 +4477,Michael Alvarado,webbjesse@gmail.com,2022-05-21,"{""language"": ""IT"", ""currency"": ""EUR""}",3961.23,Bronze,0 +4478,Heather Hamilton,sheilaschneider@medina.com,2022-11-27,"{""language"": ""EN"", ""currency"": ""EUR""}",1324.1,Bronze,0 +4479,Bradley Whitaker,loricunningham@gmail.com,2022-12-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6132.24,Gold,1 +4480,Sarah Ross,grimesbernard@johnson.org,2021-10-12,"{""language"": ""FR"", ""currency"": ""USD""}",7902.59,Bronze,1 +4481,Benjamin Thomas,shelly13@armstrong-grant.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",716.63,Gold,1 +4482,James Deleon,lfernandez@yahoo.com,2021-10-01,"{""language"": ""IT"", ""currency"": ""USD""}",5148.23,Gold,1 +4483,Colin Reed,qjohnson@hotmail.com,2023-11-03,"{""language"": ""IT"", ""currency"": ""CAD""}",4063.35,Silver,1 +4484,Travis Blake,michaelwells@gmail.com,2024-09-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3703.5,Bronze,1 +4485,Dr. Jesus Mays III,aramirez@yahoo.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5488.41,Silver,0 +4486,Taylor Flowers,rachelmontes@hotmail.com,2023-12-07,"{""language"": ""FR"", ""currency"": ""CAD""}",482.91,Silver,0 +4487,Rodney Dickerson,sramsey@phillips.biz,2024-07-20,"{""language"": ""EN"", ""currency"": ""CAD""}",720.15,Silver,0 +4488,Lauren Tucker,melanieolson@gmail.com,2022-01-10,"{""language"": ""DE"", ""currency"": ""CAD""}",139.98,Bronze,0 +4489,Joshua Moreno,lowemelissa@walters.com,2024-05-04,"{""language"": ""FR"", ""currency"": ""USD""}",7026.38,Bronze,0 +4490,Ashley Torres,vdelacruz@roberts.com,2022-03-27,"{""language"": ""EN"", ""currency"": ""EUR""}",717.9,Silver,0 +4491,Jennifer Reed,kristen29@yahoo.com,2024-07-17,"{""language"": ""EN"", ""currency"": ""EUR""}",5799.72,Gold,1 +4492,Lisa Sullivan,lvang@hotmail.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",266.75,Gold,1 +4493,Kelli Hernandez,morenojack@hotmail.com,2020-12-05,"{""language"": ""ES"", ""currency"": ""GBP""}",842.41,Gold,1 +4494,Calvin Hicks,ibarrabonnie@hotmail.com,2023-12-10,"{""language"": ""ES"", ""currency"": ""EUR""}",1499.2,Bronze,1 +4495,Kimberly Jones,danielingram@morgan.biz,2023-12-19,"{""language"": ""FR"", ""currency"": ""MXN""}",3931.12,Bronze,0 +4496,James Booker DDS,michael28@hart.info,2024-02-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9414.0,Silver,1 +4497,Daniel Acosta,rsteele@smith-barnes.com,2022-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",1607.17,Silver,1 +4498,Brittany Ramos,kayla62@butler-daniels.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7500.49,Bronze,1 +4499,Peter Diaz,coreymitchell@jacobs.org,2023-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",8711.51,Gold,1 +4500,Brenda Williams,debracobb@davis.com,2023-05-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6532.36,Gold,1 +4501,Matthew Bowers,stephanierogers@hale.com,2022-03-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7816.15,Gold,1 +4502,Danny Bernard,johnmccormick@meyer.com,2020-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",7982.33,Gold,0 +4503,Richard Rice,wongvictor@chen-williams.com,2021-12-30,"{""language"": ""ES"", ""currency"": ""GBP""}",6151.3,Gold,0 +4504,Christopher Joseph,mary49@yahoo.com,2020-10-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8301.5,Bronze,1 +4505,Jennifer Ingram,moorechristopher@hotmail.com,2020-08-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7842.44,Bronze,1 +4506,Robert Coffey,suzanne91@ortiz.info,2024-11-22,"{""language"": ""FR"", ""currency"": ""USD""}",7273.75,Silver,0 +4507,Kenneth Jackson,xmitchell@hotmail.com,2024-11-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8259.03,Silver,1 +4508,Michelle Gonzales,omason@washington.info,2022-08-20,"{""language"": ""DE"", ""currency"": ""CAD""}",1555.36,Gold,1 +4509,Scott Fuller,williamwhite@yahoo.com,2024-08-16,"{""language"": ""FR"", ""currency"": ""MXN""}",989.01,Bronze,1 +4510,Karen Huff,ashley04@hotmail.com,2023-04-26,"{""language"": ""FR"", ""currency"": ""GBP""}",8829.62,Gold,1 +4511,Andrew Lozano,jessica53@stanley.org,2022-02-03,"{""language"": ""IT"", ""currency"": ""CAD""}",9382.91,Bronze,0 +4512,Joel Miles,christopher50@thompson.net,2024-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4235.63,Silver,1 +4513,Amanda Levine,mckaykim@schwartz.com,2023-03-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1046.75,Bronze,1 +4514,Linda Herring,kcampbell@clarke.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",623.74,Silver,1 +4515,Jason Thompson,emilycurry@smith-smith.com,2023-11-08,"{""language"": ""ES"", ""currency"": ""MXN""}",6968.66,Gold,0 +4516,Andrew Mercado,luis45@miles.net,2022-05-16,"{""language"": ""ES"", ""currency"": ""MXN""}",4779.35,Silver,1 +4517,Samuel Smith,ngibson@hobbs.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",1057.58,Gold,0 +4518,Jody White,sharvey@yahoo.com,2020-11-06,"{""language"": ""DE"", ""currency"": ""EUR""}",8654.26,Gold,0 +4519,Dorothy Robbins,csnyder@yahoo.com,2021-11-08,"{""language"": ""EN"", ""currency"": ""USD""}",296.34,Gold,0 +4520,Michelle Hardy,josephnoble@velazquez.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""USD""}",5502.78,Silver,1 +4521,Tammy Goodman,susancarter@gmail.com,2020-11-11,"{""language"": ""EN"", ""currency"": ""MXN""}",8166.88,Bronze,1 +4522,Todd Nelson,jennifervelez@yahoo.com,2024-08-11,"{""language"": ""IT"", ""currency"": ""MXN""}",7731.55,Silver,0 +4523,Anna Brown,kimmichael@clark.org,2023-02-11,"{""language"": ""DE"", ""currency"": ""GBP""}",2954.27,Bronze,1 +4524,Earl Jordan,barryevans@hotmail.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1701.04,Silver,1 +4525,David Goodwin,sfloyd@ramirez.biz,2020-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",3284.5,Silver,0 +4526,Donald Cervantes II,audrey32@yahoo.com,2024-03-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7997.4,Bronze,0 +4527,Michael Medina,ulewis@newton.com,2020-09-03,"{""language"": ""EN"", ""currency"": ""MXN""}",4996.37,Bronze,0 +4528,Steven Diaz DDS,hannahvalenzuela@yahoo.com,2021-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",2627.02,Gold,0 +4529,Ryan Freeman,gonzalezsusan@hotmail.com,2021-07-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1239.72,Silver,1 +4530,Mitchell Velez,griffinrandy@garcia.net,2024-02-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9922.9,Gold,1 +4531,Timothy Barnett,victor17@hotmail.com,2020-01-16,"{""language"": ""DE"", ""currency"": ""GBP""}",9258.9,Gold,1 +4532,Mrs. Jennifer Mitchell,collierchristopher@yahoo.com,2021-10-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9507.15,Bronze,1 +4533,Derrick Rodriguez,alexandrasmith@lawrence.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""USD""}",4439.09,Gold,1 +4534,Tina Bell,canderson@mathis-roberson.net,2023-01-31,"{""language"": ""DE"", ""currency"": ""EUR""}",8062.49,Gold,0 +4535,Joshua Mckee,hhall@drake-grant.net,2024-02-11,"{""language"": ""IT"", ""currency"": ""GBP""}",3159.14,Bronze,1 +4536,Maria Werner,joshuareynolds@craig.com,2021-04-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8138.26,Silver,0 +4537,Rebecca Pierce,maria33@gmail.com,2019-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",8208.43,Silver,0 +4538,Brian Martinez,hutchinsonchristy@ortega.com,2021-07-14,"{""language"": ""IT"", ""currency"": ""USD""}",7832.34,Silver,1 +4539,Dr. Daniel Moody,reedjudy@hotmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""CAD""}",5955.97,Gold,1 +4540,Andrew Rangel,samuel97@grant.biz,2023-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5711.05,Bronze,0 +4541,Vernon Clark,emayo@hotmail.com,2023-06-15,"{""language"": ""ES"", ""currency"": ""CAD""}",3753.74,Bronze,0 +4542,Laura Carpenter,mccormickcarolyn@glenn.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""MXN""}",1990.69,Gold,1 +4543,Brooke Wilson,millerdavid@gmail.com,2023-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",3791.19,Bronze,1 +4544,David Smith,reedjessica@gmail.com,2024-11-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2657.54,Bronze,0 +4545,Lisa Tucker,smithrebecca@yahoo.com,2021-02-23,"{""language"": ""EN"", ""currency"": ""EUR""}",6910.2,Bronze,0 +4546,Kevin Moreno,nataliebarrera@yahoo.com,2020-06-20,"{""language"": ""EN"", ""currency"": ""EUR""}",4447.82,Silver,0 +4547,Jennifer Adams,marcusmyers@burgess-clayton.biz,2024-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",3029.9,Gold,0 +4548,Erin Mcclure,theresabutler@baker-lawrence.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""CAD""}",9060.5,Silver,0 +4549,Andrew Rhodes,zperry@hotmail.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3817.44,Silver,1 +4550,Lawrence Mills,qwise@franco.info,2021-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9797.67,Silver,0 +4551,Mrs. Leah Cordova,martinezmichael@woods.com,2023-10-04,"{""language"": ""EN"", ""currency"": ""CAD""}",2224.46,Silver,0 +4552,Isabella Wilkins,nsanders@fernandez.org,2020-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",9498.59,Bronze,1 +4553,Kathleen Hoffman,amy41@hotmail.com,2023-08-27,"{""language"": ""ES"", ""currency"": ""CAD""}",4206.17,Bronze,0 +4554,Isabella Mitchell,kevinyang@raymond-cox.com,2024-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7781.87,Silver,1 +4555,Michelle Fritz,amberstevenson@nielsen.info,2024-12-08,"{""language"": ""FR"", ""currency"": ""MXN""}",9928.12,Silver,1 +4556,Nicholas Green,amanda16@hotmail.com,2022-12-31,"{""language"": ""IT"", ""currency"": ""CAD""}",5589.59,Bronze,1 +4557,Brett Hubbard,matthew79@graham.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""USD""}",342.01,Gold,1 +4558,John Vargas,campbellmelinda@gmail.com,2024-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",223.47,Bronze,1 +4559,Heather Thompson,nmoore@alvarado.com,2024-04-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2963.04,Gold,1 +4560,Kim Thompson,hillkimberly@hotmail.com,2023-11-20,"{""language"": ""DE"", ""currency"": ""CAD""}",6375.41,Gold,0 +4561,Kaitlyn Pineda,schneiderchristine@daniel-hebert.com,2024-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2996.87,Gold,0 +4562,Brandy Jensen,gilbertlaura@barnett.com,2022-07-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2126.81,Bronze,0 +4563,Stephanie Cowan MD,sjacobs@gmail.com,2021-05-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2932.79,Bronze,1 +4564,Kyle Torres,devin49@moore.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""USD""}",6464.36,Bronze,1 +4565,Kathryn Jackson,spencerrichard@gmail.com,2022-10-06,"{""language"": ""FR"", ""currency"": ""MXN""}",7834.62,Gold,1 +4566,Nichole Underwood,ulynn@gmail.com,2022-05-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3805.01,Gold,0 +4567,Katherine Goodwin,bradleykim@harris.info,2020-12-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7112.9,Silver,0 +4568,Lisa Contreras,dmeyer@gmail.com,2021-06-15,"{""language"": ""IT"", ""currency"": ""EUR""}",5838.16,Silver,0 +4569,Jamie Holland,johnmorgan@hotmail.com,2021-03-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1225.01,Gold,0 +4570,Jennifer Mann,travis47@gentry-adams.net,2024-08-07,"{""language"": ""ES"", ""currency"": ""MXN""}",6513.39,Gold,0 +4571,Michelle Rose,anthony49@burns.info,2023-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2115.23,Gold,0 +4572,William Franco,kevin27@burns.com,2024-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",1131.69,Gold,0 +4573,Erin Quinn,nhayes@yahoo.com,2021-09-19,"{""language"": ""EN"", ""currency"": ""MXN""}",9713.17,Gold,0 +4574,Cody Morgan,christopherhayden@olsen.org,2022-04-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9968.94,Bronze,0 +4575,Reginald Johnston,donaldgonzalez@yahoo.com,2022-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",7227.31,Bronze,1 +4576,Christopher Farley,pwalker@rogers.biz,2020-01-16,"{""language"": ""FR"", ""currency"": ""USD""}",5780.12,Gold,1 +4577,Eric Johnson,ycallahan@yahoo.com,2020-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",2718.8,Gold,0 +4578,Susan Snow,adamskelsey@yahoo.com,2024-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",9489.03,Bronze,0 +4579,Amy Mercado,dwhitehead@torres.net,2024-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",470.45,Bronze,1 +4580,William Washington,taylorzoe@gmail.com,2023-10-10,"{""language"": ""EN"", ""currency"": ""USD""}",5536.75,Gold,0 +4581,Joshua Barnes,sfuller@lawrence-rhodes.com,2021-06-01,"{""language"": ""ES"", ""currency"": ""USD""}",2989.08,Gold,1 +4582,Stephanie Carter,christophercraig@gmail.com,2024-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",3768.09,Bronze,1 +4583,Jonathan Santana,pcampbell@little-sanchez.com,2020-05-14,"{""language"": ""EN"", ""currency"": ""USD""}",6934.42,Bronze,0 +4584,Jacqueline Phillips,bethany29@hotmail.com,2023-05-21,"{""language"": ""ES"", ""currency"": ""CAD""}",7325.74,Gold,1 +4585,Travis Merritt,catherinepeters@yahoo.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",9861.69,Gold,1 +4586,Brian Sawyer,henry48@hotmail.com,2023-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",2813.12,Gold,1 +4587,James Perez,flivingston@zamora-weaver.org,2023-03-05,"{""language"": ""IT"", ""currency"": ""EUR""}",7371.97,Gold,0 +4588,Sean Coleman,brittanywagner@gmail.com,2021-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",5525.35,Bronze,1 +4589,Annette Watts,huberdavid@davis.com,2019-12-13,"{""language"": ""EN"", ""currency"": ""GBP""}",3911.1,Gold,0 +4590,Tina Gallegos,patricia91@chen.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",1513.07,Gold,1 +4591,Kimberly Watkins,williamslori@smith-curtis.org,2024-11-26,"{""language"": ""EN"", ""currency"": ""EUR""}",4263.93,Bronze,1 +4592,Ian Wilson,brookerivas@yahoo.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",6511.67,Bronze,1 +4593,Kimberly Thomas,lucaschristina@ramirez-cummings.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",1920.71,Gold,0 +4594,Edward Benitez,thomasmorrison@evans.com,2020-03-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6902.0,Silver,1 +4595,Wesley Higgins,yanderson@choi.com,2022-07-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2053.23,Bronze,1 +4596,Tyler Cruz,zrich@romero-trevino.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5885.86,Gold,1 +4597,Sarah Rodriguez,williamscatherine@gmail.com,2021-09-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9866.26,Gold,1 +4598,Kevin Hall,laurenlittle@yahoo.com,2024-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",1899.42,Silver,0 +4599,Natalie Freeman,bernardweeks@walsh-marquez.org,2020-09-26,"{""language"": ""ES"", ""currency"": ""MXN""}",7857.24,Silver,0 +4600,Robert Henderson,danielle95@gmail.com,2021-05-02,"{""language"": ""ES"", ""currency"": ""CAD""}",9245.23,Bronze,1 +4601,Jason Hawkins,tjohnson@brown-freeman.com,2020-02-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7124.24,Silver,1 +4602,Dr. Kathryn Norton,julie37@gmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8616.21,Bronze,1 +4603,Ryan Novak,gilljill@deleon-thompson.net,2022-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",1205.21,Silver,1 +4604,Diana Taylor,cheryl90@yahoo.com,2022-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9831.98,Silver,1 +4605,Kayla Williams,mlane@flores.org,2023-08-26,"{""language"": ""ES"", ""currency"": ""CAD""}",5047.01,Gold,0 +4606,Nicholas Allen,janequinn@hotmail.com,2024-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",650.18,Silver,0 +4607,Andrea Barnett,rcox@stewart-cruz.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7922.73,Bronze,1 +4608,Amanda Blake,stevensteele@harris-mitchell.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",9746.64,Silver,0 +4609,Chad Parker,ohale@hotmail.com,2020-08-27,"{""language"": ""DE"", ""currency"": ""USD""}",1112.24,Gold,0 +4610,Elizabeth Howe,kristennavarro@dunn.com,2020-10-11,"{""language"": ""EN"", ""currency"": ""EUR""}",6018.98,Bronze,1 +4611,Shelly Wilson,ilee@yahoo.com,2020-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",5230.93,Silver,0 +4612,Angelica Molina,avilamegan@gmail.com,2021-01-29,"{""language"": ""EN"", ""currency"": ""USD""}",5999.89,Bronze,1 +4613,Karen Hodge,glee@williamson.org,2023-07-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6438.93,Gold,0 +4614,Mark Blair,thomas49@carlson-saunders.info,2023-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",1631.81,Bronze,0 +4615,Vicki Callahan,toddmason@yahoo.com,2022-09-26,"{""language"": ""FR"", ""currency"": ""CAD""}",222.81,Bronze,0 +4616,Richard Taylor,gonzalezkeith@hotmail.com,2021-03-09,"{""language"": ""FR"", ""currency"": ""USD""}",6477.27,Silver,1 +4617,Alexander Chambers,danielharper@yahoo.com,2021-09-27,"{""language"": ""ES"", ""currency"": ""EUR""}",817.92,Silver,0 +4618,Gilbert Parker,carol07@gmail.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""EUR""}",7387.27,Gold,1 +4619,Amy Marshall,rachel90@hotmail.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""EUR""}",6322.84,Bronze,0 +4620,Gabriela Hines,grahamcolleen@chen.com,2022-04-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8666.98,Gold,1 +4621,Kerry Rice,howard65@yahoo.com,2023-08-16,"{""language"": ""FR"", ""currency"": ""CAD""}",63.21,Bronze,0 +4622,Steven Wang,linda28@gmail.com,2021-07-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6596.91,Gold,1 +4623,Jennifer Evans,kenneth94@fleming-newton.biz,2024-10-02,"{""language"": ""IT"", ""currency"": ""GBP""}",4184.0,Bronze,0 +4624,Marie Weaver,robertskathleen@yahoo.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""EUR""}",5723.12,Silver,0 +4625,Lindsay Davis,melissa08@yahoo.com,2023-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1061.34,Silver,1 +4626,Paula Mills,bridgestina@hotmail.com,2021-09-23,"{""language"": ""IT"", ""currency"": ""MXN""}",6060.01,Silver,0 +4627,Donna Baker,ftucker@hunter.com,2020-02-14,"{""language"": ""EN"", ""currency"": ""USD""}",6776.83,Gold,1 +4628,Lucas Good,connie35@gmail.com,2024-07-21,"{""language"": ""IT"", ""currency"": ""MXN""}",4657.42,Silver,1 +4629,Tina Douglas,michelle74@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""USD""}",1631.53,Silver,1 +4630,Tina Young,uthomas@nicholson.com,2020-11-18,"{""language"": ""DE"", ""currency"": ""GBP""}",1924.21,Gold,1 +4631,Charles Moore,thoover@hotmail.com,2020-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",3453.23,Bronze,0 +4632,Jason Anderson,vriggs@hotmail.com,2020-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8099.52,Gold,1 +4633,Chelsea Parker,kgonzalez@gmail.com,2021-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",3585.82,Gold,0 +4634,Kayla Evans,jray@hotmail.com,2020-02-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1804.11,Silver,0 +4635,Hunter Rose,glasskatie@gmail.com,2023-09-16,"{""language"": ""FR"", ""currency"": ""CAD""}",6928.98,Silver,1 +4636,Latoya Young,stephensonbrittany@yahoo.com,2024-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",8096.6,Silver,1 +4637,Melissa West,lewislynn@rodriguez.org,2023-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",1651.83,Bronze,0 +4638,Melissa Rodriguez,eugenewillis@gmail.com,2020-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4516.21,Silver,0 +4639,Kristen Schneider,gabrielperez@austin-hale.org,2022-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",123.16,Gold,1 +4640,Connie Lane,davidshepard@brady-chapman.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",4136.94,Silver,0 +4641,Samuel Jenkins,susan70@james.org,2024-12-08,"{""language"": ""DE"", ""currency"": ""USD""}",2118.63,Silver,1 +4642,Haley Weeks,deborahsmith@gmail.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8766.4,Gold,1 +4643,Kathryn Stevens,timothyherrera@jones-hill.com,2023-04-08,"{""language"": ""ES"", ""currency"": ""MXN""}",688.98,Bronze,0 +4644,Lori Cole,tyler68@yahoo.com,2020-03-08,"{""language"": ""FR"", ""currency"": ""CAD""}",6409.75,Bronze,1 +4645,Dale Rios,brittney74@yahoo.com,2020-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",247.96,Silver,1 +4646,William Harding,denise02@hotmail.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",6217.9,Bronze,1 +4647,Courtney Anderson,willielowe@gmail.com,2024-06-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8122.39,Silver,1 +4648,Christopher Adams,harperkathryn@baldwin-peters.biz,2023-05-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5607.96,Gold,1 +4649,Carol Ortiz,wsmith@hotmail.com,2022-03-27,"{""language"": ""ES"", ""currency"": ""MXN""}",1501.72,Silver,0 +4650,Christopher Burton,melissa39@yahoo.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""CAD""}",162.7,Bronze,1 +4651,Rachael Fuller,hcurry@moody.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5068.54,Gold,0 +4652,John Houston,mccarthyclarence@gmail.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""MXN""}",3077.14,Bronze,0 +4653,Lisa Brown,stephanie16@turner.info,2023-09-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6201.43,Bronze,1 +4654,Jerry Allen,sydney50@smith-may.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",8432.44,Gold,0 +4655,Christopher Perez,ruthwilliams@hughes.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""MXN""}",5892.78,Bronze,0 +4656,Kristin Ramsey,frydebra@yahoo.com,2020-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",699.52,Bronze,1 +4657,Terry Lee,paulasimpson@ramirez.com,2022-07-12,"{""language"": ""EN"", ""currency"": ""USD""}",3060.08,Silver,1 +4658,Travis Anderson,elizabeth65@gmail.com,2024-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",5263.87,Silver,0 +4659,Jonathan Williamson,wbean@rodriguez.biz,2023-05-02,"{""language"": ""FR"", ""currency"": ""USD""}",9784.53,Silver,1 +4660,Elizabeth Vargas,markmills@gmail.com,2021-03-15,"{""language"": ""EN"", ""currency"": ""GBP""}",482.41,Gold,1 +4661,Michael Carrillo,nmaddox@yahoo.com,2021-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4413.43,Gold,0 +4662,Angel Carter,mmueller@hotmail.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""GBP""}",5055.81,Silver,0 +4663,Brandon Barnes,andreadawson@vasquez.biz,2020-11-06,"{""language"": ""IT"", ""currency"": ""USD""}",8418.67,Gold,0 +4664,Martin Williams,jeffreyluna@hotmail.com,2021-01-07,"{""language"": ""EN"", ""currency"": ""USD""}",9578.13,Bronze,0 +4665,Sheila Medina,piercebarbara@hotmail.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""USD""}",8690.75,Gold,0 +4666,Wendy Gutierrez,michaelgray@george.org,2022-12-27,"{""language"": ""FR"", ""currency"": ""USD""}",9136.24,Bronze,1 +4667,Charles Harris,nclayton@gmail.com,2021-04-16,"{""language"": ""EN"", ""currency"": ""USD""}",1447.04,Bronze,1 +4668,Brenda Velazquez,kristenbeck@yahoo.com,2023-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3739.83,Silver,0 +4669,Shirley Ramirez,erikawhite@little.info,2022-10-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2968.85,Bronze,1 +4670,Sherry Monroe,ywilliams@hicks-clark.com,2021-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",443.06,Gold,0 +4671,Matthew Brock,merrittmichael@yahoo.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""EUR""}",5762.8,Bronze,1 +4672,David Wilson,asanchez@wallace-jackson.net,2020-02-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6002.37,Bronze,1 +4673,Michele Knight,rharrington@gmail.com,2021-04-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1868.99,Silver,1 +4674,Michael Silva,hbanks@taylor-roberts.info,2023-09-27,"{""language"": ""ES"", ""currency"": ""GBP""}",6141.79,Gold,0 +4675,Tiffany Gonzales,lhogan@ellison-beard.com,2022-12-23,"{""language"": ""FR"", ""currency"": ""USD""}",6664.98,Bronze,0 +4676,Amanda Travis,bellmichael@wagner.com,2022-05-02,"{""language"": ""IT"", ""currency"": ""EUR""}",5695.05,Gold,0 +4677,Jennifer Anderson,ufrench@scott.com,2021-09-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8713.62,Bronze,0 +4678,Richard Palmer,lauren45@hotmail.com,2022-10-02,"{""language"": ""DE"", ""currency"": ""USD""}",5425.49,Bronze,0 +4679,Scott Vasquez,hmurillo@estrada.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",2827.29,Silver,0 +4680,Emily Villanueva,terrelltara@yahoo.com,2023-08-11,"{""language"": ""FR"", ""currency"": ""MXN""}",9008.69,Bronze,0 +4681,Tamara Johnston,tmorrison@george.com,2023-09-03,"{""language"": ""ES"", ""currency"": ""MXN""}",7513.17,Silver,1 +4682,Jennifer Spence,dyerlauren@crane-salinas.org,2024-08-23,"{""language"": ""ES"", ""currency"": ""MXN""}",3568.78,Bronze,1 +4683,Cameron Harvey,wpruitt@young.info,2021-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",9250.27,Bronze,1 +4684,Brooke Garrett,andrewroberts@hotmail.com,2020-05-11,"{""language"": ""DE"", ""currency"": ""USD""}",2424.05,Gold,0 +4685,Brian Fritz,richard26@calderon.info,2021-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4040.9,Bronze,0 +4686,Jose Warren,richmondlaura@hotmail.com,2022-03-20,"{""language"": ""ES"", ""currency"": ""USD""}",4264.71,Silver,0 +4687,Joseph Davis,jayayala@farmer-lamb.net,2024-06-14,"{""language"": ""DE"", ""currency"": ""USD""}",2937.21,Gold,0 +4688,Kerry Scott,lee16@ochoa.org,2023-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8090.72,Bronze,1 +4689,Angela Schneider,kimberly43@keller.com,2022-09-15,"{""language"": ""IT"", ""currency"": ""USD""}",9511.84,Bronze,0 +4690,Kenneth Thompson,paulramsey@yahoo.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",3657.06,Silver,1 +4691,Ronald Riddle,katie04@frye.com,2022-09-09,"{""language"": ""FR"", ""currency"": ""MXN""}",141.87,Silver,0 +4692,Dan Phillips Jr.,tstewart@gmail.com,2023-07-19,"{""language"": ""ES"", ""currency"": ""USD""}",2208.23,Gold,0 +4693,Melissa Williams,kingbrian@hotmail.com,2020-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",9159.32,Gold,0 +4694,Amanda Jones,deborah87@hotmail.com,2023-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",5672.16,Silver,0 +4695,Nathaniel Campos,matthewjones@cook.com,2021-10-22,"{""language"": ""ES"", ""currency"": ""GBP""}",4581.81,Silver,0 +4696,Michelle Jones,glenn85@hawkins.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""GBP""}",3953.23,Gold,1 +4697,Scott Holt,jeffreybutler@gmail.com,2024-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",4538.28,Gold,0 +4698,David Berry,jenkinsheather@gmail.com,2020-08-28,"{""language"": ""EN"", ""currency"": ""USD""}",1283.49,Gold,1 +4699,Zachary Nolan,andradeanthony@payne.info,2023-01-16,"{""language"": ""DE"", ""currency"": ""MXN""}",6027.66,Gold,1 +4700,Jennifer Morris,jamesmoody@ross-daniels.com,2021-09-17,"{""language"": ""EN"", ""currency"": ""CAD""}",5706.66,Silver,0 +4701,Kevin Hernandez,turneralexis@conley.com,2023-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",7225.88,Gold,1 +4702,Jeremy Koch,nicholas27@diaz-valdez.info,2023-08-25,"{""language"": ""DE"", ""currency"": ""MXN""}",4632.48,Silver,1 +4703,Sabrina Mcclain,rayhernandez@jones-johnson.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""USD""}",6904.77,Silver,1 +4704,Joseph Wilson,thardy@nelson.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",236.53,Bronze,1 +4705,Courtney Campos,brad91@miranda-mullen.com,2022-11-24,"{""language"": ""ES"", ""currency"": ""EUR""}",1492.99,Bronze,1 +4706,Ryan Savage,judith07@watson.info,2021-11-04,"{""language"": ""FR"", ""currency"": ""GBP""}",121.96,Silver,1 +4707,John Francis,leebecker@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""GBP""}",4853.65,Bronze,0 +4708,Gabriel Sparks,campbellkarina@mendoza.net,2020-03-12,"{""language"": ""DE"", ""currency"": ""CAD""}",5952.9,Silver,0 +4709,Rachel Hampton,ryan41@johnson.com,2021-05-09,"{""language"": ""EN"", ""currency"": ""USD""}",2239.08,Silver,1 +4710,Christy Wong,kellyshelton@nichols.com,2024-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",2321.45,Bronze,1 +4711,Traci Merritt,lamaustin@gmail.com,2024-06-27,"{""language"": ""IT"", ""currency"": ""GBP""}",2673.83,Bronze,0 +4712,Patrick Alvarado,mirandachristine@harris.net,2023-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",2177.53,Bronze,1 +4713,Karen Arellano,santiagocody@shannon-bautista.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",6963.08,Bronze,1 +4714,Christopher Dawson,huangandrea@woods.com,2023-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",9510.54,Silver,0 +4715,Stephen Stevens,lmckay@gmail.com,2023-06-16,"{""language"": ""FR"", ""currency"": ""GBP""}",5988.82,Bronze,1 +4716,Marcus Guerra,sanderssarah@hotmail.com,2020-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",3330.76,Silver,0 +4717,Kathy Nguyen,margaret51@torres.com,2022-03-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4982.77,Gold,1 +4718,Eric Terrell,hbrown@mason-martin.com,2021-07-11,"{""language"": ""FR"", ""currency"": ""EUR""}",1736.67,Bronze,1 +4719,Kimberly Santiago,krista60@phillips.com,2020-07-11,"{""language"": ""IT"", ""currency"": ""CAD""}",7329.99,Gold,1 +4720,John Foster,michellerose@gmail.com,2023-12-19,"{""language"": ""EN"", ""currency"": ""CAD""}",2056.05,Gold,1 +4721,Anna Moore,thomas96@yahoo.com,2020-11-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7696.3,Silver,1 +4722,Felicia Meyer,fmcclain@hebert.com,2021-06-24,"{""language"": ""EN"", ""currency"": ""MXN""}",2734.16,Bronze,1 +4723,Jocelyn Carpenter,morrisronald@gmail.com,2024-04-20,"{""language"": ""ES"", ""currency"": ""EUR""}",2988.37,Gold,0 +4724,Thomas Williams,velasquezjacqueline@gmail.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""USD""}",1292.47,Gold,1 +4725,Kyle Ponce,brownkristen@yahoo.com,2021-03-30,"{""language"": ""IT"", ""currency"": ""CAD""}",5847.76,Bronze,0 +4726,Timothy Arnold,joseph22@flores.org,2021-04-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9564.6,Silver,1 +4727,Edward Wiley,phillipsmichael@dean-hendricks.biz,2022-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",6013.06,Bronze,1 +4728,John Hernandez,kellyallen@stanley-green.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4781.86,Silver,0 +4729,Melissa Edwards,evansmichael@lambert.biz,2021-11-05,"{""language"": ""ES"", ""currency"": ""EUR""}",6183.21,Gold,1 +4730,Jennifer Gonzalez,samanthaaustin@yahoo.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""GBP""}",206.06,Bronze,0 +4731,Wesley Wells,william03@hotmail.com,2020-10-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3718.54,Bronze,0 +4732,Aaron Watson,kristindavies@hotmail.com,2020-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",1547.22,Gold,0 +4733,Melissa West,sandrews@gmail.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5043.79,Gold,0 +4734,Michael Edwards,derek99@howard.com,2019-12-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1719.39,Silver,0 +4735,Diane Hernandez,cathymendoza@fischer.org,2021-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8445.75,Gold,1 +4736,Shawn Harris,michele27@keller-garza.info,2024-05-05,"{""language"": ""FR"", ""currency"": ""USD""}",8010.5,Bronze,0 +4737,Jeffrey Calhoun,juliecurry@schmitt.com,2024-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",882.85,Gold,0 +4738,Matthew Torres,bmartinez@hotmail.com,2020-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5844.05,Gold,0 +4739,Mark Owens,victorsmith@smith-flores.org,2023-01-01,"{""language"": ""EN"", ""currency"": ""CAD""}",3095.08,Silver,1 +4740,Randy Brown,qvargas@yahoo.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",7335.2,Bronze,0 +4741,Mandy Schwartz,justin51@gmail.com,2022-09-09,"{""language"": ""FR"", ""currency"": ""USD""}",7479.68,Bronze,0 +4742,Dennis Shepard,jill95@oconnor-randall.org,2020-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1237.44,Bronze,0 +4743,Lisa Cameron,whitedakota@hotmail.com,2023-02-23,"{""language"": ""ES"", ""currency"": ""EUR""}",4404.9,Gold,1 +4744,Robert Welch,wigginschristopher@ray.info,2020-06-26,"{""language"": ""FR"", ""currency"": ""USD""}",8109.3,Silver,1 +4745,Tracy Ochoa,owilkins@gmail.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""MXN""}",8950.19,Silver,0 +4746,Christopher Davis,brittany54@chase-carson.com,2022-01-15,"{""language"": ""DE"", ""currency"": ""GBP""}",6104.97,Silver,0 +4747,Cheryl Brown,kwilliams@johnson-huffman.com,2020-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1966.18,Bronze,1 +4748,Lacey Morgan,shawnlee@williams-rhodes.com,2019-12-28,"{""language"": ""DE"", ""currency"": ""GBP""}",9373.28,Silver,1 +4749,Crystal Watkins,jordanheather@yahoo.com,2023-12-26,"{""language"": ""FR"", ""currency"": ""USD""}",9903.64,Bronze,1 +4750,Samantha Patel,james10@yahoo.com,2021-03-19,"{""language"": ""DE"", ""currency"": ""USD""}",812.77,Silver,1 +4751,Manuel Hickman,danielrich@yahoo.com,2024-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9631.45,Gold,1 +4752,Cindy Rowe,john70@yahoo.com,2024-10-13,"{""language"": ""ES"", ""currency"": ""USD""}",1636.51,Bronze,1 +4753,John Wells,garzajoshua@gmail.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6857.02,Bronze,0 +4754,Amy Webb,christopher43@hotmail.com,2022-12-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3472.6,Bronze,1 +4755,Jennifer Valdez,stephanie46@benson-hall.com,2020-02-08,"{""language"": ""ES"", ""currency"": ""USD""}",3501.01,Gold,0 +4756,Andrew Hoover,dalewatson@yahoo.com,2021-06-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9594.31,Gold,0 +4757,Thomas Fernandez,kimberly34@adams.com,2021-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9264.9,Bronze,1 +4758,William Russell,watersdarlene@yahoo.com,2020-07-03,"{""language"": ""IT"", ""currency"": ""MXN""}",2500.66,Silver,1 +4759,Teresa Scott,elizabeth21@yahoo.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""USD""}",6664.8,Bronze,1 +4760,Katherine Ramos,brandonharrison@thomas-villarreal.com,2020-12-08,"{""language"": ""EN"", ""currency"": ""GBP""}",6828.79,Silver,0 +4761,Cheryl Hamilton,glovernancy@carr.net,2021-05-20,"{""language"": ""DE"", ""currency"": ""MXN""}",1548.76,Bronze,0 +4762,Kendra Smith DDS,juliebean@hotmail.com,2022-12-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4601.33,Gold,1 +4763,Julie Hunter,elizabeth41@johnson.com,2023-10-09,"{""language"": ""ES"", ""currency"": ""CAD""}",929.15,Silver,1 +4764,Tina Johnson,mhouston@wade-silva.com,2020-05-28,"{""language"": ""EN"", ""currency"": ""USD""}",9747.62,Gold,0 +4765,Ruth Morales,edgar75@gmail.com,2020-05-02,"{""language"": ""DE"", ""currency"": ""USD""}",238.33,Gold,1 +4766,Mark Davila,jessica80@hotmail.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1205.33,Bronze,1 +4767,Elizabeth Mcdaniel,amanda32@hotmail.com,2020-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",8159.63,Gold,0 +4768,Patricia Miller,scott71@miller.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""USD""}",9765.68,Silver,0 +4769,Jose Johnson,victorryan@sparks.org,2021-08-28,"{""language"": ""FR"", ""currency"": ""EUR""}",5631.16,Gold,1 +4770,Thomas Page,wilsonbarbara@barker-jones.com,2021-02-02,"{""language"": ""FR"", ""currency"": ""USD""}",9806.04,Gold,1 +4771,Christopher Brown,jacksonstephens@wong.com,2022-12-17,"{""language"": ""EN"", ""currency"": ""EUR""}",2773.67,Gold,1 +4772,Tyler Smith,lnewman@yahoo.com,2020-09-04,"{""language"": ""FR"", ""currency"": ""MXN""}",7867.06,Silver,1 +4773,Michael Allen,austinlindsey@sherman-murray.info,2024-06-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9252.78,Gold,0 +4774,Timothy Bailey,hcastro@yahoo.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""MXN""}",7914.77,Bronze,0 +4775,Alisha Hansen,iramirez@rose.info,2020-06-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7300.96,Bronze,1 +4776,James Campos,oburch@gmail.com,2022-05-07,"{""language"": ""FR"", ""currency"": ""USD""}",9583.75,Silver,1 +4777,Amanda Taylor,christina11@hotmail.com,2020-12-27,"{""language"": ""ES"", ""currency"": ""MXN""}",8131.27,Gold,1 +4778,Jamie Tran,sarahallen@gardner.info,2023-10-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8856.56,Gold,1 +4779,Patricia Nelson,lambtyler@lam-bishop.biz,2023-10-16,"{""language"": ""FR"", ""currency"": ""USD""}",5684.12,Bronze,1 +4780,Shelby Mcdonald,wongjohn@yahoo.com,2021-08-02,"{""language"": ""ES"", ""currency"": ""CAD""}",6105.84,Bronze,1 +4781,Mallory Ford,iholt@fuentes.net,2023-02-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5403.96,Silver,0 +4782,Charles Jones,ksnyder@thomas.net,2022-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",9864.78,Gold,1 +4783,Maurice Wright,stuartsteve@yahoo.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7137.05,Gold,1 +4784,Darius Griffin,uwarren@gmail.com,2020-10-30,"{""language"": ""EN"", ""currency"": ""GBP""}",1305.18,Silver,0 +4785,Ashley Hayes,hayesfranklin@yahoo.com,2021-04-20,"{""language"": ""EN"", ""currency"": ""CAD""}",8221.94,Silver,0 +4786,Kevin Barnett,crystalmorales@bates-chaney.com,2020-03-04,"{""language"": ""ES"", ""currency"": ""GBP""}",7581.97,Bronze,1 +4787,Felicia Smith,elozano@yahoo.com,2024-05-23,"{""language"": ""DE"", ""currency"": ""USD""}",7796.9,Gold,0 +4788,Juan Barnett,prodriguez@hotmail.com,2020-03-31,"{""language"": ""ES"", ""currency"": ""CAD""}",953.14,Silver,0 +4789,Mikayla Schmidt,tcooke@garcia.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",1814.11,Silver,1 +4790,Melinda Wilson,daniel16@crane.biz,2020-05-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4506.63,Gold,1 +4791,Debra Martinez,matthewlopez@yahoo.com,2020-05-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3036.31,Silver,1 +4792,Gabriella Pierce,charleshunter@barnett.info,2024-02-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5999.05,Bronze,0 +4793,Justin Singh,krobinson@gmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""USD""}",3458.44,Silver,1 +4794,Dominic Wise,heatherwhite@yahoo.com,2023-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",3266.73,Bronze,1 +4795,Andrew Rivera,debra26@yahoo.com,2022-10-19,"{""language"": ""ES"", ""currency"": ""USD""}",4272.21,Bronze,0 +4796,Tammy Wade,andersonkeith@gmail.com,2023-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",900.24,Bronze,1 +4797,Patrick Rhodes,robert18@robinson.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""GBP""}",4638.04,Gold,0 +4798,Carlos Sherman,clarkalicia@little.net,2020-12-21,"{""language"": ""IT"", ""currency"": ""USD""}",2408.45,Gold,1 +4799,Lisa Brewer,lawrence48@gardner.biz,2022-01-26,"{""language"": ""EN"", ""currency"": ""EUR""}",6723.66,Silver,1 +4800,Michelle Johnson,charles11@yahoo.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4969.94,Gold,0 +4801,Samuel Davis,vincentdixon@weiss-lopez.org,2024-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1224.32,Bronze,0 +4802,Joseph Howard,kimberlyowens@gmail.com,2023-05-05,"{""language"": ""IT"", ""currency"": ""CAD""}",4477.25,Gold,0 +4803,Johnny Livingston,daniellopez@white-howell.com,2021-05-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2325.12,Bronze,0 +4804,Joseph Medina,william30@yahoo.com,2021-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",931.29,Bronze,0 +4805,David Thomas,amy43@werner.com,2024-02-11,"{""language"": ""IT"", ""currency"": ""EUR""}",3420.85,Gold,0 +4806,Kenneth Reeves,trodriguez@martinez.com,2020-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6238.6,Silver,0 +4807,Angelica Floyd,jamesbrown@hotmail.com,2022-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",6249.22,Bronze,1 +4808,Lauren Morris,bridgethoover@brooks.com,2021-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",8019.02,Silver,0 +4809,Renee Chavez,butlerwilliam@boyer-ramos.biz,2022-05-04,"{""language"": ""FR"", ""currency"": ""USD""}",3170.8,Gold,1 +4810,Andres Wolf,mollycalhoun@simpson.org,2022-09-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7244.42,Gold,1 +4811,John Hendricks,bradleythomas@wood-molina.com,2024-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",4741.41,Gold,1 +4812,Tammy Yang,scott20@rios.com,2022-04-22,"{""language"": ""DE"", ""currency"": ""GBP""}",6927.95,Bronze,0 +4813,Shannon Allen,parker11@miller.com,2021-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2542.21,Bronze,1 +4814,Hannah Lee,melissa25@barnett-griffith.net,2020-08-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8256.8,Silver,1 +4815,David Wade,johnreynolds@gmail.com,2023-06-15,"{""language"": ""EN"", ""currency"": ""EUR""}",5831.04,Silver,1 +4816,Laurie Wells,nancyfranklin@hotmail.com,2021-12-21,"{""language"": ""EN"", ""currency"": ""GBP""}",2386.34,Silver,0 +4817,Connie Perez,kathleen80@gmail.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4430.76,Bronze,1 +4818,Jennifer Berry,scottcraig@bates.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7010.09,Bronze,0 +4819,Ryan Wiggins,alexandriatapia@hart.com,2023-05-09,"{""language"": ""EN"", ""currency"": ""GBP""}",5664.73,Gold,1 +4820,Janice Calhoun,johnmoon@grimes-atkins.com,2021-03-27,"{""language"": ""EN"", ""currency"": ""GBP""}",3016.5,Gold,0 +4821,Joseph Miller,strongmadison@hotmail.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",3709.69,Bronze,1 +4822,Mitchell Martin,jclark@perry.biz,2023-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7935.91,Bronze,0 +4823,Linda Mccoy,michael60@gmail.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""GBP""}",5691.48,Bronze,0 +4824,Nichole Williamson,theresa81@kramer-henry.org,2020-06-24,"{""language"": ""FR"", ""currency"": ""USD""}",2784.88,Bronze,0 +4825,Daniel Frazier,sarawong@gmail.com,2023-11-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8841.32,Bronze,0 +4826,Briana Spencer,knightvictoria@yahoo.com,2023-07-26,"{""language"": ""ES"", ""currency"": ""USD""}",7111.19,Silver,1 +4827,Jeffrey Morgan,zparks@baker.com,2021-09-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3043.29,Bronze,0 +4828,Craig Todd,wgarcia@white.biz,2022-06-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9857.74,Bronze,1 +4829,Amber Austin,mccartylonnie@cruz.info,2022-02-13,"{""language"": ""DE"", ""currency"": ""EUR""}",5295.83,Bronze,0 +4830,Robert Stuart,mezajulie@gmail.com,2020-11-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6855.7,Bronze,0 +4831,Bryan Flores,brian41@mann.com,2024-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",4164.74,Gold,0 +4832,Jamie Kim,kathryn14@wyatt.com,2020-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2385.13,Bronze,0 +4833,Laura Thompson,antonioadams@gmail.com,2024-01-25,"{""language"": ""ES"", ""currency"": ""EUR""}",3118.11,Bronze,0 +4834,Meredith Villanueva,benitezedward@elliott.com,2022-10-14,"{""language"": ""DE"", ""currency"": ""EUR""}",5528.91,Silver,1 +4835,Steven Evans,ithompson@ortiz.org,2021-08-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6811.71,Gold,1 +4836,Aimee Ferguson,paynechristopher@morales.net,2020-02-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3569.08,Silver,1 +4837,Stephanie Neal,sethkrause@burnett.net,2023-12-19,"{""language"": ""FR"", ""currency"": ""USD""}",8317.0,Silver,1 +4838,Michael Reyes,frederick01@ortiz.com,2023-07-13,"{""language"": ""DE"", ""currency"": ""USD""}",2805.19,Bronze,0 +4839,Jermaine Schneider,douglasamanda@yahoo.com,2024-06-02,"{""language"": ""DE"", ""currency"": ""EUR""}",9791.77,Silver,0 +4840,Aaron Jackson,lisa43@yahoo.com,2020-12-31,"{""language"": ""ES"", ""currency"": ""CAD""}",6792.33,Bronze,0 +4841,Abigail Wilkinson,craigbishop@gmail.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",7626.06,Silver,1 +4842,Jack Douglas,brobertson@howe.com,2023-06-27,"{""language"": ""FR"", ""currency"": ""CAD""}",2177.05,Gold,1 +4843,Sean Hill,gburke@gmail.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""MXN""}",5586.9,Gold,0 +4844,Derek Lin,iryan@pacheco-white.info,2023-10-06,"{""language"": ""ES"", ""currency"": ""USD""}",1805.92,Bronze,0 +4845,Brianna Burnett,leejames@yahoo.com,2023-11-06,"{""language"": ""EN"", ""currency"": ""GBP""}",3831.68,Silver,1 +4846,Greg Lambert Jr.,angela74@curtis-hoover.info,2023-05-25,"{""language"": ""FR"", ""currency"": ""GBP""}",1872.17,Gold,1 +4847,Virginia Graham,dianaschaefer@russell-flores.biz,2024-07-15,"{""language"": ""EN"", ""currency"": ""USD""}",5486.71,Bronze,0 +4848,Jennifer King,steven72@miles.com,2021-10-16,"{""language"": ""ES"", ""currency"": ""USD""}",3920.5,Gold,0 +4849,Tanya Joseph,rodriguezjose@villarreal-williams.com,2024-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",8304.12,Silver,1 +4850,Mark Martin,chill@marshall.com,2021-06-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8189.12,Bronze,1 +4851,Angela Higgins,nicolemckay@hotmail.com,2020-04-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6193.17,Silver,0 +4852,Samuel Dawson,tiffany49@torres.info,2020-05-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8930.32,Gold,0 +4853,Javier Huber,zrose@holloway-davis.org,2023-10-10,"{""language"": ""IT"", ""currency"": ""EUR""}",174.67,Gold,0 +4854,Joanna Allen,david46@gmail.com,2022-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",491.3,Bronze,0 +4855,Nancy Lewis,leedeanna@hotmail.com,2020-04-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2895.99,Silver,1 +4856,Blake Browning,echavez@armstrong-allen.com,2024-12-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4723.88,Silver,0 +4857,Carrie Fields,kathleenjohnson@hampton.com,2023-11-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8457.86,Silver,0 +4858,Steven Rivas,douglaswashington@gmail.com,2021-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",3893.96,Silver,1 +4859,Angela Mueller,lisagraham@hopkins.com,2022-09-30,"{""language"": ""EN"", ""currency"": ""USD""}",8687.28,Gold,1 +4860,Todd Jones,debrasingleton@mcintyre.com,2021-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1646.75,Silver,0 +4861,Theresa Williams,stevenstimothy@hotmail.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",613.86,Silver,0 +4862,Brent Thompson,gconway@gregory.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""CAD""}",5952.02,Bronze,0 +4863,Charles Cox,youngjames@stewart.com,2022-01-21,"{""language"": ""EN"", ""currency"": ""EUR""}",5620.94,Silver,0 +4864,Brian Jones,susanlong@hotmail.com,2021-05-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9594.5,Gold,1 +4865,Heather Cannon,eperez@weber.com,2020-07-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2718.16,Gold,0 +4866,Tara Brown,pettyanna@higgins.biz,2021-06-15,"{""language"": ""FR"", ""currency"": ""MXN""}",119.52,Gold,0 +4867,Benjamin Hall,foxshannon@willis.com,2024-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",1982.27,Silver,0 +4868,Maria Shelton,xfischer@gmail.com,2023-10-15,"{""language"": ""IT"", ""currency"": ""MXN""}",803.1,Silver,1 +4869,Kelly Walker,parsonsana@gmail.com,2022-06-10,"{""language"": ""DE"", ""currency"": ""USD""}",1137.96,Silver,1 +4870,Tiffany Young,garnermichael@mueller-lopez.info,2021-05-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3841.62,Gold,0 +4871,David Cunningham,tanderson@moore.info,2020-09-13,"{""language"": ""ES"", ""currency"": ""CAD""}",5527.26,Silver,1 +4872,Christopher Carroll,dave21@sampson.com,2023-12-22,"{""language"": ""ES"", ""currency"": ""MXN""}",913.37,Silver,1 +4873,Kenneth Williams,rebeccabrennan@yahoo.com,2021-02-04,"{""language"": ""ES"", ""currency"": ""USD""}",1587.01,Bronze,0 +4874,Cheryl Clark,kwhite@hernandez.biz,2022-11-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2916.06,Gold,1 +4875,Melinda Adams,jessica76@davis-washington.com,2021-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",7632.61,Gold,0 +4876,Benjamin Martin,ugoodman@wallace.com,2022-09-17,"{""language"": ""EN"", ""currency"": ""MXN""}",8366.22,Silver,1 +4877,Carol Marshall,stephenskayla@sims.com,2024-11-09,"{""language"": ""ES"", ""currency"": ""USD""}",5749.15,Silver,1 +4878,Oscar Lawson,huntjoshua@hotmail.com,2021-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4812.32,Silver,1 +4879,Karen Garcia,ssantos@gmail.com,2023-06-13,"{""language"": ""DE"", ""currency"": ""EUR""}",8413.75,Silver,0 +4880,Charles Clark,halldylan@yahoo.com,2022-10-12,"{""language"": ""FR"", ""currency"": ""GBP""}",6198.33,Bronze,1 +4881,Brian Gay,medinabecky@gmail.com,2023-11-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2033.11,Silver,1 +4882,Brian Wilson,bpowell@mcmillan.info,2021-05-26,"{""language"": ""EN"", ""currency"": ""USD""}",3344.76,Bronze,0 +4883,Hannah Lopez,xbrown@gmail.com,2020-09-05,"{""language"": ""FR"", ""currency"": ""GBP""}",9023.57,Bronze,1 +4884,Anna Wong,nathaniel78@hotmail.com,2022-11-21,"{""language"": ""DE"", ""currency"": ""USD""}",2971.37,Silver,1 +4885,Patrick Ward,dcarlson@tucker.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",8468.77,Bronze,0 +4886,Joshua Stewart,william17@boone.net,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7938.13,Bronze,1 +4887,Anna Rodgers,rachel38@gmail.com,2023-12-04,"{""language"": ""IT"", ""currency"": ""MXN""}",6033.61,Silver,1 +4888,Kelly Gray,benjamin51@hotmail.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""CAD""}",3065.35,Bronze,0 +4889,Francis Johnson,kristinmontoya@thompson.com,2020-04-27,"{""language"": ""ES"", ""currency"": ""GBP""}",440.6,Gold,0 +4890,Donald Rodriguez,sarah76@carter.com,2021-03-25,"{""language"": ""IT"", ""currency"": ""MXN""}",9328.47,Bronze,1 +4891,Cynthia Carney,chavezmarc@hotmail.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""CAD""}",7591.87,Silver,1 +4892,Andrew Rice,mckenziediamond@yahoo.com,2021-07-11,"{""language"": ""ES"", ""currency"": ""CAD""}",4891.37,Gold,0 +4893,Mariah Rose,jordan05@watts-rice.com,2021-05-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7506.01,Silver,1 +4894,Craig Thompson,leblancalexis@hotmail.com,2023-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",5311.72,Gold,1 +4895,Joel Pena,peter73@hotmail.com,2023-08-24,"{""language"": ""IT"", ""currency"": ""USD""}",2460.97,Silver,1 +4896,Jennifer Silva,melissathomas@brown-schroeder.net,2023-03-02,"{""language"": ""ES"", ""currency"": ""USD""}",3411.66,Bronze,1 +4897,Kathleen Singleton,garciaalejandra@gmail.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""MXN""}",7904.87,Silver,1 +4898,Robert Pham,swansonrobert@gmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",4646.68,Silver,1 +4899,Christopher Wright,darlene94@gonzales.net,2021-08-08,"{""language"": ""DE"", ""currency"": ""GBP""}",163.22,Bronze,1 +4900,Melissa Johnson,scott70@reed.org,2021-05-19,"{""language"": ""EN"", ""currency"": ""GBP""}",3731.39,Gold,1 +4901,Stacy Pitts,htorres@hotmail.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",2220.35,Silver,0 +4902,Miranda Trujillo,matthew31@yahoo.com,2024-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",6652.12,Bronze,0 +4903,Alexandra Hill,drakenicole@gmail.com,2022-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",1346.6,Silver,1 +4904,Lauren Cox,rjohnson@johnson.com,2022-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",6362.28,Gold,0 +4905,Samantha Perez,ashley01@hotmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",6923.49,Silver,1 +4906,Martin Bray,jamesmiller@yahoo.com,2022-09-16,"{""language"": ""FR"", ""currency"": ""EUR""}",9291.6,Silver,0 +4907,Kelly Anderson,troy60@smith.com,2024-12-06,"{""language"": ""EN"", ""currency"": ""GBP""}",4211.04,Gold,0 +4908,Kimberly Smith,tjones@gmail.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",651.36,Gold,1 +4909,Michael Ferguson,tdean@yahoo.com,2020-10-19,"{""language"": ""DE"", ""currency"": ""CAD""}",1434.06,Silver,1 +4910,Mrs. Barbara Krueger DVM,bbean@carlson.com,2023-05-26,"{""language"": ""ES"", ""currency"": ""CAD""}",533.2,Bronze,0 +4911,Eric Dixon,jhansen@moore.com,2020-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9244.94,Silver,1 +4912,James Kline,sgordon@gonzalez-meyer.com,2023-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2970.95,Bronze,1 +4913,Savannah Casey,smithphilip@gmail.com,2021-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4443.01,Bronze,1 +4914,Amy Simpson,austinann@long.com,2020-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6721.64,Gold,0 +4915,Sierra Todd,stanleymichelle@snyder.com,2023-06-01,"{""language"": ""IT"", ""currency"": ""GBP""}",536.69,Silver,1 +4916,Juan King,watsonchad@lambert.org,2021-12-16,"{""language"": ""EN"", ""currency"": ""USD""}",6280.91,Silver,0 +4917,Jill Nash,wmcguire@yahoo.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",4782.44,Gold,1 +4918,Sherry Cruz,sterrell@gmail.com,2021-03-14,"{""language"": ""FR"", ""currency"": ""EUR""}",8881.66,Bronze,0 +4919,Peter Bowman,jamesriggs@hotmail.com,2022-06-09,"{""language"": ""ES"", ""currency"": ""MXN""}",551.41,Gold,1 +4920,Miranda Stevens,wdowns@gmail.com,2020-08-03,"{""language"": ""ES"", ""currency"": ""GBP""}",6449.64,Bronze,0 +4921,Christy Le,kroberts@hood.com,2021-03-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7859.11,Silver,1 +4922,Christopher Wade,mark61@wallace.net,2023-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",2724.26,Silver,0 +4923,Shannon Foster,kingjoe@daniels.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7671.38,Gold,0 +4924,Julie Schaefer,brian16@gmail.com,2022-01-17,"{""language"": ""FR"", ""currency"": ""EUR""}",9285.23,Gold,1 +4925,Eric Spencer,joseph37@spence-ward.com,2020-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8681.72,Silver,0 +4926,Charles Huber,ryates@gmail.com,2021-07-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2793.03,Bronze,1 +4927,James Ward,scott98@brown.org,2024-06-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3649.96,Gold,1 +4928,Kelsey Campos,mary22@smith.com,2022-06-08,"{""language"": ""DE"", ""currency"": ""USD""}",6457.01,Gold,0 +4929,Jeffrey Gibson,brian24@brown.org,2024-01-11,"{""language"": ""EN"", ""currency"": ""EUR""}",3042.41,Gold,0 +4930,Justin Owens,kochmicheal@hotmail.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""GBP""}",6847.42,Silver,1 +4931,Leah Hubbard,heatherdavis@sullivan.com,2022-01-13,"{""language"": ""FR"", ""currency"": ""CAD""}",5976.32,Silver,1 +4932,John Kerr,thomasdavis@gmail.com,2024-05-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4786.67,Silver,1 +4933,Samuel Estes,keithortiz@smith.org,2024-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",6722.4,Gold,0 +4934,Natalie Krause,acastro@gmail.com,2021-07-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8507.92,Silver,1 +4935,Mrs. Hannah Jefferson DVM,whensley@perry.org,2019-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3984.05,Silver,0 +4936,Megan Cooper,patricia73@ramsey.org,2022-10-30,"{""language"": ""IT"", ""currency"": ""GBP""}",5375.15,Silver,0 +4937,Michele Chandler,leslie42@yahoo.com,2020-09-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3657.1,Silver,1 +4938,Kim Gilbert,dennis86@johnson.net,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4124.49,Gold,1 +4939,Andrew Ward,jonathan39@thompson.net,2022-08-31,"{""language"": ""DE"", ""currency"": ""EUR""}",6897.02,Bronze,0 +4940,Zachary Jones,laurabrown@hotmail.com,2021-12-05,"{""language"": ""ES"", ""currency"": ""CAD""}",5290.5,Bronze,1 +4941,Bryan King,darlene11@gmail.com,2021-02-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6137.4,Gold,0 +4942,Sarah Jones,linda54@hotmail.com,2020-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7753.96,Gold,0 +4943,Lisa Williams,kennethshepherd@brown-francis.org,2023-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4845.9,Gold,0 +4944,Arthur Taylor,clarkkaren@yahoo.com,2021-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",5544.91,Bronze,1 +4945,Pamela Barnes,hbrown@yahoo.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",1144.98,Silver,1 +4946,Courtney Huang,christopher65@gmail.com,2023-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6676.8,Silver,0 +4947,Bruce Scott MD,ashleyross@hotmail.com,2021-10-15,"{""language"": ""IT"", ""currency"": ""USD""}",5729.67,Gold,0 +4948,Joshua Mcdonald,iwatkins@thompson-chambers.info,2023-10-11,"{""language"": ""DE"", ""currency"": ""USD""}",4106.07,Bronze,0 +4949,Eric Floyd,uaustin@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""MXN""}",7108.54,Gold,0 +4950,Jasmine Thompson,wendypeters@oliver.net,2021-12-04,"{""language"": ""EN"", ""currency"": ""MXN""}",3684.25,Bronze,0 +4951,Rebecca Wilson,annrichardson@gmail.com,2020-11-25,"{""language"": ""EN"", ""currency"": ""CAD""}",1398.57,Silver,1 +4952,Craig Knight,bradleydavidson@collins.com,2020-01-20,"{""language"": ""IT"", ""currency"": ""USD""}",282.61,Bronze,1 +4953,Joseph Bass,peckwendy@williams.biz,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1435.01,Silver,0 +4954,Melanie Hernandez,njohnson@evans.com,2024-08-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9550.87,Silver,0 +4955,Kathryn Santos,michael19@brown-rojas.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""CAD""}",2102.62,Gold,1 +4956,Mrs. Glenda Jones,teresa02@yahoo.com,2020-01-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5150.97,Gold,0 +4957,Jennifer Vincent,anna70@gmail.com,2021-07-22,"{""language"": ""FR"", ""currency"": ""MXN""}",4732.8,Gold,1 +4958,John Ellis,dale18@smith.org,2024-04-04,"{""language"": ""DE"", ""currency"": ""GBP""}",8893.64,Silver,0 +4959,Amber Barry,monicagross@hotmail.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""USD""}",9060.43,Silver,1 +4960,Desiree Gilbert,steven23@hotmail.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3814.74,Silver,1 +4961,Wesley Johnson,kevinmartinez@hotmail.com,2021-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",5856.91,Bronze,0 +4962,Kimberly Martinez,simshayley@hotmail.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""USD""}",7312.76,Silver,1 +4963,Mrs. Alicia Sanchez,ronald41@welch-sutton.com,2020-08-15,"{""language"": ""IT"", ""currency"": ""USD""}",6505.53,Gold,0 +4964,Abigail Baker,chad48@bond.biz,2021-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",8282.45,Bronze,1 +4965,Joann Rivera,davismaria@carpenter.com,2020-08-01,"{""language"": ""FR"", ""currency"": ""USD""}",2538.67,Bronze,0 +4966,Kristina Anderson,tonimoody@yahoo.com,2020-02-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5902.62,Silver,1 +4967,Sandra House,michael59@wallace.com,2022-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1392.37,Bronze,0 +4968,Alisha Dawson,mariebarnes@gmail.com,2021-04-07,"{""language"": ""ES"", ""currency"": ""CAD""}",3421.95,Bronze,0 +4969,Gary Heath,leonardnelson@yahoo.com,2022-06-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5137.58,Silver,0 +4970,Mary Miranda,keith56@yahoo.com,2024-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8251.49,Bronze,1 +4971,Heather Ramirez,michellemitchell@yahoo.com,2020-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",4964.22,Silver,0 +4972,Ann Greene,lsmith@evans.com,2023-11-11,"{""language"": ""EN"", ""currency"": ""GBP""}",8125.05,Silver,1 +4973,Charles Cook,michaelthompson@johnson-barber.net,2021-12-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9933.33,Silver,0 +4974,John Martinez,moodynancy@hotmail.com,2020-06-16,"{""language"": ""EN"", ""currency"": ""USD""}",2779.8,Bronze,1 +4975,Patricia Avila,briandavis@yahoo.com,2020-02-12,"{""language"": ""IT"", ""currency"": ""GBP""}",7325.67,Bronze,0 +4976,Diana Bradshaw,jwalls@gmail.com,2022-02-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6180.62,Bronze,1 +4977,Jason Bentley,mcmillannathan@mccoy.com,2020-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1332.63,Gold,0 +4978,Amanda Peterson,melissapatterson@ward.org,2021-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1055.2,Silver,0 +4979,Whitney Cruz,lucassteven@pena-horton.net,2020-06-07,"{""language"": ""IT"", ""currency"": ""GBP""}",5687.67,Silver,1 +4980,Charles Freeman,wryan@schroeder-washington.com,2020-10-22,"{""language"": ""IT"", ""currency"": ""GBP""}",5136.66,Bronze,0 +4981,Danielle Caldwell,damonrodriguez@long.biz,2020-02-16,"{""language"": ""ES"", ""currency"": ""USD""}",7597.11,Gold,1 +4982,Susan Henry,klawson@hotmail.com,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",3988.11,Silver,1 +4983,William Webb,crystal64@warner-lee.com,2021-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",1074.43,Gold,1 +4984,Ashley Jones,mpugh@gmail.com,2020-09-17,"{""language"": ""ES"", ""currency"": ""GBP""}",4036.65,Gold,0 +4985,Raymond Smith,rebeccawebb@brown.info,2021-09-29,"{""language"": ""EN"", ""currency"": ""USD""}",1626.71,Silver,0 +4986,Shawn Dixon,hrios@leach.biz,2021-06-10,"{""language"": ""ES"", ""currency"": ""GBP""}",5141.76,Bronze,0 +4987,Tammy Martinez,masonmary@hotmail.com,2023-11-28,"{""language"": ""IT"", ""currency"": ""GBP""}",2389.94,Bronze,0 +4988,Nathan Farrell,elizabeth09@gallegos.net,2019-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7317.66,Bronze,0 +4989,Bruce Bishop,masseykathryn@crawford-payne.com,2020-05-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1188.55,Bronze,1 +4990,Kristina Bowman,jallen@hotmail.com,2022-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2194.93,Bronze,1 +4991,Jack Shaw,jbarry@gmail.com,2021-10-01,"{""language"": ""EN"", ""currency"": ""USD""}",4506.05,Bronze,1 +4992,Robert Stewart,martinezsusan@joseph.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5153.27,Silver,0 +4993,Sarah Alexander,julienovak@yahoo.com,2024-01-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9017.18,Gold,1 +4994,Jacob Strickland,jamiehaas@stewart.com,2020-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",8636.48,Silver,0 +4995,Monica Moreno,fowlererin@yahoo.com,2022-07-02,"{""language"": ""DE"", ""currency"": ""GBP""}",5802.92,Gold,0 +4996,Patrick Williams,martinezalexis@pennington.com,2021-10-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7669.3,Silver,0 +4997,Jacob Smith,bhall@yahoo.com,2023-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",8151.34,Silver,0 +4998,Patrick Blankenship,jgardner@gmail.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""USD""}",3688.27,Bronze,1 +4999,Clifford Proctor,nathaniel29@vargas.com,2024-11-12,"{""language"": ""FR"", ""currency"": ""GBP""}",4306.93,Gold,1 +5000,Tyler Garrett,jennymiranda@gmail.com,2023-12-17,"{""language"": ""IT"", ""currency"": ""USD""}",289.83,Gold,1 +5001,Cheryl Reed,scarroll@gmail.com,2024-07-13,"{""language"": ""FR"", ""currency"": ""USD""}",6546.46,Silver,0 +5002,Laurie Thompson,tgardner@gmail.com,2020-03-19,"{""language"": ""DE"", ""currency"": ""USD""}",1823.35,Gold,1 +5003,Renee Wilson,russohunter@henderson-jimenez.biz,2024-07-26,"{""language"": ""FR"", ""currency"": ""CAD""}",5942.17,Bronze,0 +5004,Jon Gonzalez,kristy91@gmail.com,2020-11-25,"{""language"": ""FR"", ""currency"": ""MXN""}",3269.86,Silver,1 +5005,Eric Mccullough,rsmith@donovan.info,2022-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",4671.62,Gold,1 +5006,Natasha Hawkins,philip48@walton.info,2021-11-08,"{""language"": ""DE"", ""currency"": ""USD""}",4461.61,Bronze,0 +5007,Elizabeth Bentley,ronnieallen@knight.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""USD""}",2791.64,Gold,1 +5008,Eric Walton,lgay@gmail.com,2023-04-10,"{""language"": ""IT"", ""currency"": ""GBP""}",4782.56,Gold,1 +5009,Tyrone Gibson,davidpaul@ford.net,2023-07-22,"{""language"": ""ES"", ""currency"": ""CAD""}",3292.97,Silver,0 +5010,Sharon Torres,sara90@fitzpatrick.biz,2022-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",5131.76,Gold,1 +5011,Cheryl Miller,cooktonya@hotmail.com,2022-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",6366.23,Bronze,0 +5012,April Crawford,alejandro72@phelps.com,2022-07-24,"{""language"": ""IT"", ""currency"": ""USD""}",2933.09,Gold,0 +5013,Carlos Johnson,james13@carey.com,2023-11-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3407.58,Gold,0 +5014,Erica Moore,gbowman@gmail.com,2024-03-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5766.6,Bronze,0 +5015,Catherine Rosario,kelli49@hotmail.com,2021-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4164.25,Gold,0 +5016,Christopher Freeman,ghill@yahoo.com,2022-05-10,"{""language"": ""EN"", ""currency"": ""USD""}",8228.96,Silver,0 +5017,Sherry Mcdonald,nguyenelizabeth@ross.com,2021-07-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8488.15,Silver,1 +5018,Curtis Levy,mariastewart@yahoo.com,2024-09-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9771.49,Silver,1 +5019,David Green,bradleytran@hotmail.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""EUR""}",1693.98,Silver,1 +5020,Alice Gallegos,reginalynch@yahoo.com,2024-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2067.14,Bronze,0 +5021,Alexandra Kramer,marissa09@mccarthy-chapman.com,2020-05-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5566.91,Silver,1 +5022,Tina Gibson,lweaver@gmail.com,2023-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",6727.69,Bronze,1 +5023,Joshua Coffey,michaelmeadows@hotmail.com,2024-05-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6858.61,Bronze,1 +5024,Penny Davis,xchristensen@carpenter.biz,2020-04-14,"{""language"": ""EN"", ""currency"": ""MXN""}",7791.84,Silver,1 +5025,Cathy Mullins,fclark@dixon.net,2020-07-02,"{""language"": ""DE"", ""currency"": ""MXN""}",5742.82,Gold,1 +5026,Jerry Erickson,sararichardson@peterson.com,2024-08-14,"{""language"": ""DE"", ""currency"": ""EUR""}",225.08,Bronze,0 +5027,Barbara Jones,garciaeduardo@gmail.com,2024-11-04,"{""language"": ""ES"", ""currency"": ""EUR""}",2218.08,Silver,0 +5028,Maria Taylor,kimjulie@morales.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",9394.64,Gold,0 +5029,Alexandria Williams,nicholefleming@horton.com,2022-06-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6184.93,Silver,1 +5030,Diane Garner,carmenortiz@gmail.com,2020-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",6368.17,Gold,0 +5031,Jerry Kramer,dawn90@jimenez.info,2022-05-23,"{""language"": ""FR"", ""currency"": ""EUR""}",6325.66,Silver,0 +5032,Patrick Cooper,villanuevatimothy@yahoo.com,2023-03-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9574.7,Gold,1 +5033,Sandra Adams,hallrebekah@johnson.net,2020-05-26,"{""language"": ""ES"", ""currency"": ""USD""}",6599.72,Bronze,0 +5034,Heather Patterson,ftaylor@ryan-pacheco.com,2020-06-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7840.63,Bronze,0 +5035,Audrey King,christopher07@welch-watts.com,2024-05-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8964.76,Silver,1 +5036,Paige Brown,joshua12@vaughan.org,2021-12-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7527.33,Gold,0 +5037,David Powell,andrewwilliams@hotmail.com,2022-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",2672.2,Gold,0 +5038,Richard Sanchez,yatesmaria@dawson-walker.net,2021-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",5386.17,Gold,1 +5039,Brittany Caldwell,jerrycallahan@yahoo.com,2021-05-08,"{""language"": ""FR"", ""currency"": ""GBP""}",4111.76,Gold,1 +5040,Nancy Graham,simonbenjamin@huffman.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",9503.35,Silver,1 +5041,Joseph Brooks,stewartwilliam@harris-garcia.com,2022-10-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1958.45,Gold,1 +5042,Alyssa Green,tonya67@gmail.com,2024-10-22,"{""language"": ""DE"", ""currency"": ""CAD""}",2043.59,Gold,0 +5043,Vincent Perez,cindymcclain@gmail.com,2023-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",6181.41,Silver,1 +5044,Melissa Pierce,bobbyreyes@thomas.net,2021-04-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1578.59,Bronze,0 +5045,Michael Roberts,victor49@yu-ruiz.com,2021-11-19,"{""language"": ""IT"", ""currency"": ""EUR""}",2143.07,Gold,1 +5046,David Gibson,qwilson@hotmail.com,2023-11-21,"{""language"": ""EN"", ""currency"": ""GBP""}",6805.1,Bronze,0 +5047,Samantha Garrison,thomas06@rivas.com,2024-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",7406.77,Gold,0 +5048,Brent Baxter,johnsonsara@paul.com,2022-08-02,"{""language"": ""FR"", ""currency"": ""CAD""}",53.61,Bronze,0 +5049,Tina Ruiz,ooconnell@buck.com,2022-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6905.89,Bronze,0 +5050,Tara Taylor,igreene@delgado-arnold.com,2023-05-03,"{""language"": ""FR"", ""currency"": ""USD""}",2750.29,Gold,1 +5051,Robert Cobb,melanie94@james-duncan.com,2024-08-18,"{""language"": ""DE"", ""currency"": ""EUR""}",2552.5,Silver,0 +5052,William Garner,jhurst@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",3783.37,Silver,1 +5053,Dr. Julie Ward,kellyjeff@scott-serrano.com,2022-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3828.97,Gold,1 +5054,Charles Wheeler,scottheather@hotmail.com,2020-10-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5532.83,Bronze,1 +5055,Nicholas Graham,richard33@yahoo.com,2021-10-04,"{""language"": ""FR"", ""currency"": ""GBP""}",1533.56,Bronze,1 +5056,Lee Smith,davidterrell@johnson-garcia.com,2024-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",6681.18,Gold,0 +5057,Eric Salas,jenkinstina@yahoo.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3982.94,Gold,0 +5058,Melissa Butler,georgemichael@gmail.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""GBP""}",5758.71,Gold,0 +5059,Steven Mercado,warneralyssa@gmail.com,2020-11-05,"{""language"": ""ES"", ""currency"": ""MXN""}",4587.31,Gold,1 +5060,Ryan Durham,petersonstephanie@yahoo.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""CAD""}",9609.52,Gold,0 +5061,Gwendolyn Strong,tannercollins@harris-miller.biz,2024-10-31,"{""language"": ""EN"", ""currency"": ""USD""}",3489.75,Silver,0 +5062,Natasha Barnett,cherylwagner@gray.com,2022-05-23,"{""language"": ""DE"", ""currency"": ""EUR""}",861.21,Bronze,1 +5063,Ashley Stuart,spennington@fleming.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1370.52,Bronze,1 +5064,David Spencer,pamelawatkins@gmail.com,2024-10-13,"{""language"": ""ES"", ""currency"": ""CAD""}",3947.42,Bronze,1 +5065,Kimberly Jones,ucole@wright.com,2024-03-17,"{""language"": ""DE"", ""currency"": ""USD""}",9316.7,Gold,1 +5066,Ivan Steele,danielserin@campbell-johnston.net,2023-04-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9931.06,Bronze,0 +5067,Taylor Dennis,christopher71@davenport-stewart.com,2020-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",194.19,Bronze,0 +5068,Nicholas Martin,lindsayhuber@pope.biz,2020-10-24,"{""language"": ""FR"", ""currency"": ""MXN""}",3783.63,Gold,0 +5069,Tracy Stewart,vanessaoliver@brennan.org,2023-10-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2420.61,Gold,1 +5070,Steven Clarke,zjackson@austin-young.biz,2024-01-28,"{""language"": ""DE"", ""currency"": ""CAD""}",1124.21,Bronze,0 +5071,Rebecca Esparza,morgandavis@rodriguez.org,2024-11-04,"{""language"": ""DE"", ""currency"": ""USD""}",1400.13,Gold,1 +5072,Tammy Hinton,leslie22@yahoo.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",5031.01,Bronze,1 +5073,Jeffrey Vega,david02@hotmail.com,2024-01-28,"{""language"": ""DE"", ""currency"": ""GBP""}",9987.47,Silver,0 +5074,Stephanie Hudson,patricia82@yahoo.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2432.53,Silver,1 +5075,Brooke Perez,james80@clarke.biz,2020-08-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4361.75,Silver,0 +5076,Philip Carter,shelbycraig@gmail.com,2023-06-06,"{""language"": ""EN"", ""currency"": ""MXN""}",9143.04,Gold,0 +5077,Rachel Valencia,rebekahgarner@yahoo.com,2020-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1157.94,Silver,1 +5078,Lauren Meyer,thompsonregina@yahoo.com,2023-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",6916.7,Bronze,0 +5079,Reginald Brown,cbrown@yahoo.com,2023-10-05,"{""language"": ""ES"", ""currency"": ""CAD""}",1238.58,Silver,1 +5080,James Conner,jackhicks@adams.com,2019-12-13,"{""language"": ""EN"", ""currency"": ""CAD""}",6758.16,Silver,0 +5081,Vincent Walls,jeanbryant@gmail.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""CAD""}",1838.26,Gold,1 +5082,John Bennett,brianlopez@yahoo.com,2022-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",4656.52,Gold,0 +5083,Susan Gates,reyeskathleen@simmons.com,2020-07-28,"{""language"": ""FR"", ""currency"": ""USD""}",3390.39,Bronze,0 +5084,Patrick Torres,nicholearroyo@yahoo.com,2022-01-17,"{""language"": ""ES"", ""currency"": ""USD""}",2347.16,Bronze,0 +5085,Stephanie Alvarez,matthewmoore@mcconnell.com,2021-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8630.96,Gold,1 +5086,Calvin Jones,thompsonmonica@rodgers-simmons.info,2020-12-29,"{""language"": ""FR"", ""currency"": ""EUR""}",537.8,Silver,0 +5087,Jeffery Howell,zthornton@dougherty-thomas.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""CAD""}",6242.51,Gold,0 +5088,Sheila Campbell,wendycampbell@hotmail.com,2020-08-31,"{""language"": ""IT"", ""currency"": ""MXN""}",1510.27,Bronze,0 +5089,Olivia Rodriguez,adam91@parker.org,2023-09-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1792.63,Gold,1 +5090,Sarah Williams,joshua84@blake.info,2021-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",6119.21,Bronze,0 +5091,Stanley Rodgers,kristinegeorge@rojas.com,2023-09-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1377.24,Gold,0 +5092,Timothy Jones,pford@yahoo.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5700.47,Bronze,1 +5093,Veronica Wilson PhD,pmora@thomas.com,2020-03-12,"{""language"": ""IT"", ""currency"": ""EUR""}",349.28,Silver,0 +5094,Tyler Warren,floresmargaret@hotmail.com,2022-02-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5418.04,Gold,0 +5095,Joseph Fitzpatrick,williamsaaron@walters.net,2020-09-24,"{""language"": ""DE"", ""currency"": ""USD""}",1845.44,Silver,1 +5096,Victor Shannon,craigfitzpatrick@hotmail.com,2024-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3402.66,Gold,1 +5097,Patrick Williams,amurray@yahoo.com,2023-10-21,"{""language"": ""DE"", ""currency"": ""USD""}",648.57,Bronze,1 +5098,Zachary Rodriguez,zramsey@waters-paul.biz,2024-08-05,"{""language"": ""DE"", ""currency"": ""USD""}",5007.29,Bronze,0 +5099,Logan Hansen,danielgarrison@gmail.com,2023-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5023.28,Silver,0 +5100,Mr. Ronald Richmond,aarontaylor@yahoo.com,2020-03-03,"{""language"": ""ES"", ""currency"": ""GBP""}",1227.22,Silver,0 +5101,Brian Collins,jonesalicia@hotmail.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7623.63,Gold,1 +5102,Edward Lopez,jennifer19@yahoo.com,2019-12-23,"{""language"": ""ES"", ""currency"": ""MXN""}",400.05,Gold,0 +5103,Ronald Higgins,ewilliams@yahoo.com,2020-11-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2627.14,Bronze,0 +5104,Hunter Lewis,anthonybrowning@solomon-ramirez.info,2024-12-08,"{""language"": ""EN"", ""currency"": ""CAD""}",9059.86,Silver,1 +5105,Tyler Leon,matthew82@hotmail.com,2021-10-14,"{""language"": ""FR"", ""currency"": ""EUR""}",5385.13,Bronze,0 +5106,Elizabeth Cordova,esparzadenise@yahoo.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9910.71,Silver,0 +5107,Robert Simpson,zhaynes@yahoo.com,2023-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",6794.26,Gold,1 +5108,Michael Bridges,jameselliott@hotmail.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5590.94,Silver,0 +5109,Mrs. Heather Hayes,turnerbrian@griffith-kidd.com,2023-03-01,"{""language"": ""FR"", ""currency"": ""CAD""}",3257.77,Bronze,0 +5110,Cynthia Hayes,mhaas@johnston.com,2022-04-29,"{""language"": ""ES"", ""currency"": ""GBP""}",3984.27,Gold,1 +5111,Albert Jones,christopherwatson@yahoo.com,2024-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",3835.66,Silver,0 +5112,Robert Savage,kevincarter@gmail.com,2022-08-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1660.73,Bronze,0 +5113,Stanley Hunt,sabrina19@yahoo.com,2023-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1836.39,Silver,1 +5114,Jimmy Cooper,judy45@yahoo.com,2020-03-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9380.33,Bronze,1 +5115,Anna Perry,sandrasmith@burke.com,2021-12-24,"{""language"": ""IT"", ""currency"": ""MXN""}",7669.31,Bronze,0 +5116,Nathan Harvey,joelblackwell@gmail.com,2020-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",2359.2,Bronze,0 +5117,David Robertson,jacobhudson@gmail.com,2020-08-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1166.23,Bronze,1 +5118,Patricia Green,matthewmartinez@hotmail.com,2022-06-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6933.27,Silver,1 +5119,Melissa Maldonado,rushsherri@mckinney.com,2023-09-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6422.89,Bronze,1 +5120,Dennis Olsen,wesley53@yahoo.com,2023-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",7225.04,Gold,1 +5121,Walter Lam,travis75@morales.com,2020-06-28,"{""language"": ""FR"", ""currency"": ""USD""}",7355.47,Bronze,0 +5122,Lauren Harris,soliver@yahoo.com,2020-09-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1743.23,Silver,1 +5123,Jennifer Barber,jermaine79@chen.com,2024-02-19,"{""language"": ""DE"", ""currency"": ""USD""}",8095.92,Gold,0 +5124,Eric Mitchell,tonyasmith@gmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",3085.18,Gold,1 +5125,Barbara Andrade,acole@hotmail.com,2023-07-24,"{""language"": ""DE"", ""currency"": ""USD""}",459.35,Gold,1 +5126,Larry Gordon,bcrawford@yahoo.com,2021-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",9072.99,Silver,1 +5127,Kelly Huber,millssteven@molina-brown.info,2020-02-05,"{""language"": ""ES"", ""currency"": ""USD""}",6889.88,Silver,1 +5128,Joshua Daniel,jennifermorris@yahoo.com,2021-08-13,"{""language"": ""DE"", ""currency"": ""GBP""}",4810.16,Bronze,1 +5129,Natalie Lopez,davidthompson@yang-gallagher.net,2022-03-07,"{""language"": ""ES"", ""currency"": ""CAD""}",5645.09,Gold,0 +5130,Nicole Fuller,jose15@hotmail.com,2023-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",5848.79,Silver,1 +5131,Carl Carpenter,reeddana@cook-clayton.com,2020-04-16,"{""language"": ""DE"", ""currency"": ""USD""}",5947.42,Bronze,1 +5132,Jennifer Walker,marquezsarah@smith.com,2024-01-03,"{""language"": ""FR"", ""currency"": ""EUR""}",97.15,Silver,1 +5133,Brenda Melton,vharris@lopez.org,2023-04-18,"{""language"": ""ES"", ""currency"": ""MXN""}",1450.83,Gold,0 +5134,Justin Cook,christopherpowers@johnson-rivera.net,2024-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",2053.77,Silver,1 +5135,Raymond Brown MD,jason60@hotmail.com,2024-07-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8534.87,Gold,0 +5136,Johnny Smith,dixontyler@gillespie.biz,2022-07-20,"{""language"": ""IT"", ""currency"": ""MXN""}",8577.87,Gold,1 +5137,Katherine Gardner,david07@moore-bates.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""USD""}",9521.15,Gold,1 +5138,Michael Ford,mfrench@gmail.com,2023-06-10,"{""language"": ""FR"", ""currency"": ""CAD""}",9277.84,Bronze,0 +5139,Jacob Huff,xroberts@williams.com,2020-07-11,"{""language"": ""DE"", ""currency"": ""USD""}",1168.71,Gold,0 +5140,Martin Mcintyre,christina02@hotmail.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""CAD""}",335.6,Bronze,1 +5141,Gerald Tran,warrenronnie@hotmail.com,2024-04-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6396.82,Gold,1 +5142,Brittney Espinoza,davidthompson@johnson.info,2024-06-21,"{""language"": ""ES"", ""currency"": ""EUR""}",442.76,Silver,1 +5143,Randy Morales,dshannon@gomez.com,2023-10-30,"{""language"": ""ES"", ""currency"": ""MXN""}",5675.75,Gold,1 +5144,Sean Freeman,audreysellers@kelly.com,2020-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",2172.95,Gold,0 +5145,Maria Thomas,sarah58@gmail.com,2024-08-25,"{""language"": ""EN"", ""currency"": ""GBP""}",6495.18,Bronze,0 +5146,William Brooks,jwiggins@hotmail.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7687.42,Gold,1 +5147,Erin Brown,aguilardillon@gmail.com,2021-05-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8002.2,Gold,0 +5148,Allison Molina,melinda07@williams-may.org,2021-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6371.68,Gold,1 +5149,Jenna Vargas,vprice@hotmail.com,2021-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",431.57,Silver,0 +5150,Nicole White,tiffanywhite@yahoo.com,2020-11-28,"{""language"": ""ES"", ""currency"": ""EUR""}",6242.49,Silver,0 +5151,Jonathan Gonzales DVM,wallacebryan@gomez.info,2020-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9656.69,Silver,0 +5152,Adam Hoover,curtis96@edwards.net,2021-10-23,"{""language"": ""FR"", ""currency"": ""USD""}",757.06,Gold,1 +5153,Tyler Fischer,afoley@robinson-adams.com,2020-09-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5385.44,Gold,0 +5154,Elizabeth Curry,schavez@villanueva-simmons.com,2023-08-10,"{""language"": ""EN"", ""currency"": ""USD""}",9616.37,Silver,0 +5155,Tonya Allen,hhopkins@yahoo.com,2023-07-10,"{""language"": ""IT"", ""currency"": ""CAD""}",986.95,Bronze,0 +5156,Dr. Bruce Morris,jsimpson@harris-scott.com,2024-02-14,"{""language"": ""EN"", ""currency"": ""CAD""}",6786.55,Silver,1 +5157,Kristen Jones,martinezjames@ellison-scott.net,2022-04-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1540.06,Gold,1 +5158,Melissa Clark,omedina@gmail.com,2022-03-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3084.31,Silver,1 +5159,Joyce Harding,eric60@gmail.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""GBP""}",6912.83,Bronze,0 +5160,Amanda Martin,mark35@yahoo.com,2024-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",2784.17,Gold,0 +5161,Denise Miller,perezvirginia@hotmail.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""GBP""}",2951.36,Gold,0 +5162,Michael Rodriguez,ryanwhite@yahoo.com,2020-02-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4796.6,Gold,0 +5163,Elizabeth Austin,leah11@gmail.com,2021-10-08,"{""language"": ""ES"", ""currency"": ""CAD""}",3540.21,Silver,1 +5164,Douglas Dougherty,rileysavannah@moss-taylor.com,2022-08-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5774.12,Silver,0 +5165,Sean Jimenez,bradleylarson@gmail.com,2024-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",8159.07,Gold,1 +5166,Jessica Adams,diane57@haas.com,2023-08-02,"{""language"": ""DE"", ""currency"": ""CAD""}",8392.6,Gold,1 +5167,Rachel Russell,danieldudley@harrison.com,2023-12-02,"{""language"": ""ES"", ""currency"": ""CAD""}",3684.92,Gold,0 +5168,Kevin Harding,ashlee31@rodriguez-gray.com,2024-06-04,"{""language"": ""IT"", ""currency"": ""MXN""}",5745.03,Gold,1 +5169,Erica Williams,jthompson@gmail.com,2020-03-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6360.92,Gold,0 +5170,David Frey,theresacollins@gmail.com,2021-12-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1210.07,Bronze,1 +5171,Benjamin Williams,kari04@gmail.com,2022-01-10,"{""language"": ""FR"", ""currency"": ""GBP""}",5879.84,Gold,0 +5172,Larry Steele,tararogers@ochoa.org,2023-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",2410.83,Bronze,0 +5173,Kevin Martin,pboone@turner.net,2020-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3496.36,Bronze,1 +5174,Melvin Hughes,cynthiamacdonald@gmail.com,2020-12-02,"{""language"": ""FR"", ""currency"": ""MXN""}",2297.89,Silver,0 +5175,Matthew Turner,pattonnathan@hotmail.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""EUR""}",6818.28,Gold,1 +5176,Christine Ortiz,sean06@hotmail.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""CAD""}",7323.37,Gold,1 +5177,Matthew Hammond,bradley34@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5209.8,Gold,0 +5178,John Patrick,cannonkenneth@gmail.com,2021-10-23,"{""language"": ""EN"", ""currency"": ""CAD""}",1641.97,Silver,1 +5179,Michael Hernandez,jamesmaureen@brown.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",7151.75,Bronze,0 +5180,Steven Flynn,penakimberly@yahoo.com,2022-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",6595.45,Silver,0 +5181,Jessica Ramirez,denise51@hotmail.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""GBP""}",5110.1,Silver,1 +5182,Beth Lang,morancharlene@yahoo.com,2022-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",8258.7,Gold,1 +5183,Tina Cox,pearsonmonica@jensen.com,2024-11-08,"{""language"": ""FR"", ""currency"": ""USD""}",3418.08,Silver,0 +5184,Maria Rogers,jonesamanda@henson-peterson.org,2020-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7460.27,Bronze,1 +5185,Gene Mata,jasonerickson@hotmail.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",9002.49,Bronze,1 +5186,Eduardo Gilbert,wtate@yahoo.com,2022-12-09,"{""language"": ""EN"", ""currency"": ""MXN""}",1264.46,Gold,0 +5187,Christopher Campbell Jr.,pattondavid@perez.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",9254.88,Silver,1 +5188,Kendra Clarke MD,pamelamarquez@gmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""GBP""}",9174.24,Gold,0 +5189,Jasmine Erickson,castrobrandon@hotmail.com,2020-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2490.76,Silver,0 +5190,Jessica Torres,brownjamie@yahoo.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3100.89,Silver,1 +5191,Brendan Kelley,mooreelizabeth@bruce.biz,2020-06-16,"{""language"": ""EN"", ""currency"": ""USD""}",2464.96,Gold,0 +5192,Amy Jackson,scottjacobs@gmail.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""MXN""}",1874.09,Gold,0 +5193,Chad Griffin,jamiecantu@gmail.com,2024-05-16,"{""language"": ""IT"", ""currency"": ""CAD""}",1896.33,Gold,0 +5194,Tina Hooper,cynthiamccormick@yahoo.com,2024-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4015.11,Silver,0 +5195,Carrie Parker MD,jesusbowers@coleman.info,2023-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",6086.71,Silver,0 +5196,Vanessa Griffin,laura15@gmail.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""EUR""}",4700.88,Bronze,0 +5197,Jack Hill,nicolefernandez@freeman.com,2020-02-29,"{""language"": ""IT"", ""currency"": ""USD""}",9508.41,Gold,0 +5198,Phillip Jimenez,tfields@elliott.com,2020-10-11,"{""language"": ""FR"", ""currency"": ""USD""}",7944.37,Silver,1 +5199,Matthew Rogers,braytravis@yahoo.com,2020-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",1630.37,Gold,1 +5200,Nancy Riddle,zoe20@hotmail.com,2021-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",1823.76,Silver,0 +5201,Mary Gordon,kimberlyjohnson@contreras.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",9884.32,Bronze,0 +5202,Kristen Marshall,david31@johnson.com,2023-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",874.01,Silver,1 +5203,Pamela Thomas,emily75@yahoo.com,2019-12-19,"{""language"": ""ES"", ""currency"": ""GBP""}",8276.17,Gold,0 +5204,Brett Lopez,umills@hotmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""CAD""}",8853.32,Silver,1 +5205,Dr. Tina Brown,monicalewis@gmail.com,2021-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",5237.87,Bronze,1 +5206,Joe Ramos,robert69@hotmail.com,2020-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",5107.9,Gold,0 +5207,Benjamin Peterson,hhoward@gmail.com,2021-12-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9346.66,Bronze,0 +5208,Andrew Zimmerman,caseymichael@hotmail.com,2021-08-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9720.2,Silver,1 +5209,Brandon Gilbert,robin16@gmail.com,2023-11-29,"{""language"": ""FR"", ""currency"": ""EUR""}",3029.37,Gold,0 +5210,Amanda Sims,larry12@hotmail.com,2023-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",6379.06,Gold,0 +5211,Melissa Warren,garcialisa@manning.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7837.01,Gold,0 +5212,Tammy Becker,stephanieyoung@gmail.com,2023-01-06,"{""language"": ""IT"", ""currency"": ""CAD""}",66.92,Silver,0 +5213,Kevin Phillips,alexisward@young.com,2023-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",6022.84,Gold,1 +5214,Andrea Carroll,nwilliams@gmail.com,2023-11-26,"{""language"": ""ES"", ""currency"": ""MXN""}",4920.18,Bronze,1 +5215,Michael Sherman,brian07@yahoo.com,2020-05-27,"{""language"": ""IT"", ""currency"": ""MXN""}",4976.52,Gold,0 +5216,Charles Simon,gdavis@yahoo.com,2022-09-02,"{""language"": ""ES"", ""currency"": ""CAD""}",5795.28,Silver,0 +5217,Thomas Lang,torrestonya@mcdaniel-lopez.info,2023-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",2613.91,Bronze,1 +5218,Eric Hale,james69@hotmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""GBP""}",6063.47,Silver,1 +5219,David Gonzalez,goodmantimothy@yahoo.com,2020-06-20,"{""language"": ""IT"", ""currency"": ""MXN""}",8992.33,Gold,1 +5220,Theresa Oconnor,whitneypaula@yahoo.com,2021-12-27,"{""language"": ""ES"", ""currency"": ""USD""}",4780.98,Bronze,0 +5221,Melinda Mccarthy,james26@jones.net,2024-11-25,"{""language"": ""IT"", ""currency"": ""MXN""}",8706.01,Gold,0 +5222,Crystal Rhodes,xjohnson@hotmail.com,2021-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",5443.62,Gold,0 +5223,Jordan Logan,james55@murillo-crawford.com,2021-01-21,"{""language"": ""ES"", ""currency"": ""MXN""}",5266.06,Bronze,1 +5224,Lauren Robinson,stephensonjohn@powell.org,2022-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",4646.19,Bronze,0 +5225,Todd Anderson,crivas@white.com,2021-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",531.41,Gold,1 +5226,Randy Hall,jasonpowers@yahoo.com,2022-06-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6502.26,Silver,0 +5227,Robert Rosales,qwaters@jensen-hawkins.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4136.02,Bronze,0 +5228,Julie Montgomery,yhughes@stephens.net,2023-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8863.35,Bronze,1 +5229,Jessica Thompson,moniqueerickson@johnson-davis.biz,2023-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",205.34,Silver,1 +5230,Casey Stuart,jasonsanders@yahoo.com,2021-02-25,"{""language"": ""EN"", ""currency"": ""EUR""}",5870.78,Bronze,0 +5231,Derek Allen,adrianbrown@woods.org,2020-09-27,"{""language"": ""DE"", ""currency"": ""MXN""}",3660.38,Gold,0 +5232,Mark Davis,williamscurtis@gmail.com,2024-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9609.84,Gold,0 +5233,Mr. Steve Johnson,brenda48@cook.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""EUR""}",7525.89,Silver,0 +5234,Amanda Foster,daniel87@parks-wilson.com,2021-09-01,"{""language"": ""DE"", ""currency"": ""CAD""}",2775.14,Gold,1 +5235,Steven Bates,kristenmiller@kelley.com,2021-06-27,"{""language"": ""EN"", ""currency"": ""GBP""}",5861.33,Bronze,1 +5236,Mary Lee,john22@cervantes-poole.net,2023-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",4590.43,Bronze,1 +5237,Brianna Burke,michael38@contreras.net,2022-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",6203.72,Gold,1 +5238,Stephen Bennett,elizabeth41@garcia-wilson.com,2021-02-06,"{""language"": ""DE"", ""currency"": ""EUR""}",7891.69,Gold,0 +5239,Jason Klein,andrew69@young.com,2020-02-21,"{""language"": ""FR"", ""currency"": ""CAD""}",5168.16,Bronze,1 +5240,Paul Harris,alvarezryan@yahoo.com,2024-07-24,"{""language"": ""FR"", ""currency"": ""MXN""}",4073.52,Gold,0 +5241,Jerry Brown,debrasullivan@ward-bowers.info,2021-07-13,"{""language"": ""FR"", ""currency"": ""CAD""}",128.89,Bronze,0 +5242,Taylor Brock,walkerdoris@mckinney-johnson.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6662.06,Silver,1 +5243,David Welch,dshaw@young-morales.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""CAD""}",7214.19,Bronze,0 +5244,Joseph Brown,ronald46@gmail.com,2023-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",1247.35,Gold,1 +5245,Carol Harrison,krista22@wilson.com,2024-05-29,"{""language"": ""FR"", ""currency"": ""USD""}",5340.22,Gold,1 +5246,Eric Robles,dperez@landry-sanchez.com,2021-07-07,"{""language"": ""DE"", ""currency"": ""CAD""}",7160.11,Bronze,1 +5247,Sean Chase,marcus62@martin.com,2024-02-09,"{""language"": ""ES"", ""currency"": ""MXN""}",801.55,Bronze,0 +5248,Mr. Edward Neal,michael49@yahoo.com,2021-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6706.1,Silver,0 +5249,Richard Mccarty,christopher46@yahoo.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""CAD""}",8065.65,Bronze,0 +5250,Lisa Potter,jblack@wright.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2253.99,Bronze,1 +5251,Thomas Collier,jason32@dalton-holmes.com,2021-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6640.29,Silver,1 +5252,Andrew Fox,qwheeler@richard.com,2023-06-13,"{""language"": ""DE"", ""currency"": ""EUR""}",5072.91,Silver,1 +5253,Don Guerrero,michelle10@gmail.com,2022-11-19,"{""language"": ""FR"", ""currency"": ""USD""}",9688.08,Silver,0 +5254,Brandi Hayden,cohenjessica@gmail.com,2022-05-25,"{""language"": ""FR"", ""currency"": ""USD""}",6915.2,Bronze,0 +5255,Traci Johnson,alexiswinters@hotmail.com,2023-04-12,"{""language"": ""FR"", ""currency"": ""CAD""}",9259.02,Bronze,0 +5256,Christopher Wells,nbishop@hotmail.com,2023-04-26,"{""language"": ""EN"", ""currency"": ""EUR""}",9052.18,Gold,1 +5257,Andrew Gutierrez,traceymills@hotmail.com,2023-10-10,"{""language"": ""DE"", ""currency"": ""EUR""}",2739.85,Silver,1 +5258,Jose Donovan,stevensaaron@gamble-reynolds.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""MXN""}",4689.49,Silver,0 +5259,Edwin Reed,haledaniel@stokes.org,2023-06-19,"{""language"": ""DE"", ""currency"": ""CAD""}",5269.17,Silver,1 +5260,Christina Perez,sblack@hill.com,2023-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6848.01,Bronze,0 +5261,Ann Brewer,wallacecheyenne@jones-smith.net,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1335.47,Bronze,1 +5262,Barbara Griffith,eortiz@yahoo.com,2021-05-12,"{""language"": ""ES"", ""currency"": ""USD""}",1225.01,Bronze,1 +5263,Rachel Hughes,erika62@gmail.com,2020-09-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5159.8,Silver,1 +5264,Pamela Johnson,jermainescott@bond-cunningham.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3011.57,Silver,0 +5265,William Weaver,mlewis@gmail.com,2020-02-27,"{""language"": ""ES"", ""currency"": ""USD""}",1833.55,Bronze,1 +5266,Linda Edwards,brittany63@gmail.com,2022-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8404.19,Bronze,1 +5267,Travis Lloyd,jason01@yahoo.com,2023-09-21,"{""language"": ""IT"", ""currency"": ""CAD""}",4408.31,Silver,1 +5268,Felicia Schultz,lyonstracey@yahoo.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""GBP""}",1375.82,Gold,0 +5269,Calvin Quinn,jessicahoffman@hotmail.com,2023-12-04,"{""language"": ""EN"", ""currency"": ""USD""}",8135.11,Silver,0 +5270,Anna Wolf,williamstewart@armstrong.com,2020-12-04,"{""language"": ""FR"", ""currency"": ""EUR""}",1103.93,Bronze,0 +5271,Kurt Walker,ymoore@thompson-clark.info,2020-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",4819.53,Silver,1 +5272,Judy Carter,kenneth49@hotmail.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",105.83,Gold,1 +5273,William Rivera,aaronmartin@nichols.biz,2021-07-21,"{""language"": ""ES"", ""currency"": ""MXN""}",4830.79,Bronze,0 +5274,Karen King,sullivananne@myers.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""EUR""}",1429.1,Bronze,1 +5275,Raymond Bell,richardlopez@gmail.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""MXN""}",1241.56,Bronze,1 +5276,Charles Lucas,natalie62@castillo.org,2024-11-29,"{""language"": ""DE"", ""currency"": ""CAD""}",5884.87,Silver,0 +5277,Terri Medina,jamesamanda@jimenez.info,2020-06-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8752.96,Gold,1 +5278,Elaine Hoffman,cbennett@york.net,2020-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6695.49,Gold,0 +5279,Charles Jones,turnerdanielle@miles.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""CAD""}",5290.29,Silver,1 +5280,Jacob Ellis PhD,paul63@gmail.com,2020-07-10,"{""language"": ""FR"", ""currency"": ""USD""}",1724.81,Bronze,1 +5281,Keith Williams,debra39@hotmail.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""GBP""}",2024.07,Silver,1 +5282,Jo Harris,cunninghamjoshua@sanders.org,2024-04-12,"{""language"": ""EN"", ""currency"": ""CAD""}",8594.18,Gold,1 +5283,Michael Bailey,esmith@waters.biz,2020-05-04,"{""language"": ""ES"", ""currency"": ""USD""}",338.03,Silver,1 +5284,Leah Martin,trevorwells@arroyo-anderson.com,2021-08-31,"{""language"": ""EN"", ""currency"": ""CAD""}",6726.72,Bronze,1 +5285,Samuel Ali,drojas@anderson.biz,2023-04-26,"{""language"": ""EN"", ""currency"": ""MXN""}",8734.56,Bronze,1 +5286,Spencer Fuller,fdavis@hill.com,2024-11-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6804.21,Gold,0 +5287,Edward Wolf,davidjackson@barker.info,2023-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",8438.53,Silver,1 +5288,John Barnes,maxwelllouis@hotmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",6016.7,Bronze,0 +5289,Tamara Huynh,vaguilar@brewer-lewis.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",9098.04,Bronze,1 +5290,Anthony Patterson,julie75@yahoo.com,2020-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8939.53,Bronze,0 +5291,Monica Floyd,jasonberry@webb.com,2024-01-09,"{""language"": ""EN"", ""currency"": ""GBP""}",9470.49,Bronze,1 +5292,Scott Santiago,kennethwilson@watts-myers.org,2021-07-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4083.0,Gold,1 +5293,Alec Fischer,oknapp@patterson.com,2020-06-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2096.45,Bronze,0 +5294,Steven Wright,lorettaglenn@yahoo.com,2021-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",8645.98,Bronze,1 +5295,Dawn Gomez,varmstrong@king.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""EUR""}",7976.75,Silver,0 +5296,Erika Vargas,butlerjennifer@gmail.com,2020-04-20,"{""language"": ""IT"", ""currency"": ""USD""}",7838.08,Silver,0 +5297,Sandra Sanders,wthomas@lewis.com,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",3631.26,Gold,0 +5298,Nathan Orr,inunez@yahoo.com,2022-12-07,"{""language"": ""EN"", ""currency"": ""CAD""}",4279.91,Silver,1 +5299,Megan Martinez,browncory@yahoo.com,2021-10-05,"{""language"": ""ES"", ""currency"": ""USD""}",2520.05,Bronze,0 +5300,Leslie Hernandez,robertrodriguez@gmail.com,2021-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",9061.63,Silver,1 +5301,Crystal King,katherinejackson@yahoo.com,2020-12-19,"{""language"": ""ES"", ""currency"": ""EUR""}",6022.5,Bronze,1 +5302,Donna Weaver,daniel27@gmail.com,2020-01-16,"{""language"": ""ES"", ""currency"": ""CAD""}",9632.53,Silver,0 +5303,Casey Flores,robert90@hotmail.com,2022-09-11,"{""language"": ""IT"", ""currency"": ""CAD""}",6216.04,Silver,1 +5304,Frank Moore MD,steven31@ramirez-hernandez.net,2024-07-14,"{""language"": ""FR"", ""currency"": ""USD""}",9663.63,Gold,0 +5305,Randy Alvarez,ngutierrez@gmail.com,2020-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",3521.49,Silver,1 +5306,Ann James,ctorres@gmail.com,2020-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",8315.23,Gold,0 +5307,David Bishop,lsloan@cobb.net,2021-12-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8843.52,Gold,1 +5308,April Washington,jbrown@hotmail.com,2022-09-28,"{""language"": ""FR"", ""currency"": ""GBP""}",3637.81,Gold,1 +5309,Eric Newton,paul46@krueger.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",8558.74,Gold,1 +5310,William Davidson,bbird@chambers.com,2022-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",9709.61,Silver,0 +5311,Jacob Baker,jonathanjackson@conley-coleman.info,2023-09-16,"{""language"": ""FR"", ""currency"": ""GBP""}",161.69,Silver,0 +5312,Cynthia Hernandez,evanschwartz@jensen.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",7919.58,Bronze,0 +5313,Lauren Taylor,jose32@yahoo.com,2024-04-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9101.01,Gold,1 +5314,Andrew Mccarthy,wrightanthony@gregory-wilson.com,2024-01-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5337.92,Gold,1 +5315,Christina Taylor,melanie85@espinoza.com,2023-06-06,"{""language"": ""ES"", ""currency"": ""CAD""}",3202.82,Bronze,1 +5316,Deborah Mayo,alyssabryant@weber.biz,2020-06-06,"{""language"": ""IT"", ""currency"": ""MXN""}",7109.93,Gold,0 +5317,Jeremy Ware,meganjohnson@yahoo.com,2023-03-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6875.41,Silver,0 +5318,Sean Johnson,ryanbrooks@joseph.net,2024-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",6118.24,Silver,0 +5319,Jeremy Torres,hreynolds@gmail.com,2019-12-21,"{""language"": ""EN"", ""currency"": ""CAD""}",5431.41,Gold,1 +5320,Michael Kennedy,kayla75@weber-cervantes.biz,2021-04-17,"{""language"": ""IT"", ""currency"": ""GBP""}",911.35,Silver,1 +5321,Monica Monroe,harrisamy@hotmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""GBP""}",408.49,Gold,1 +5322,Becky Alvarez,tonya99@gmail.com,2023-07-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2734.81,Bronze,0 +5323,Robert Gallagher,aparker@mccann-evans.net,2022-06-11,"{""language"": ""EN"", ""currency"": ""MXN""}",2817.9,Bronze,0 +5324,Wendy Fitzpatrick,scottsteve@yahoo.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5941.67,Gold,1 +5325,Samuel Hall,erica91@yahoo.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""MXN""}",2532.52,Silver,1 +5326,Michael Wright,freythomas@stewart.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",5019.24,Silver,0 +5327,Felicia Maldonado,bradleyscott@foster.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9921.5,Bronze,1 +5328,Jeffrey Kennedy,reneewalker@bradford.com,2020-12-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8194.44,Silver,0 +5329,Scott Solis,corey79@yahoo.com,2024-04-15,"{""language"": ""EN"", ""currency"": ""EUR""}",5426.75,Silver,1 +5330,Kimberly Medina,deborahbray@hotmail.com,2024-02-28,"{""language"": ""EN"", ""currency"": ""MXN""}",7450.6,Silver,1 +5331,Kenneth Leonard,wrobinson@sandoval.com,2023-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",5836.19,Bronze,1 +5332,Matthew Rivas,llynch@gmail.com,2023-10-02,"{""language"": ""IT"", ""currency"": ""EUR""}",4016.85,Bronze,1 +5333,Kathy Johnson,beth35@hopkins-garrison.com,2022-04-24,"{""language"": ""ES"", ""currency"": ""EUR""}",1939.96,Bronze,0 +5334,Adriana Ryan,zachary81@yahoo.com,2024-01-28,"{""language"": ""IT"", ""currency"": ""EUR""}",623.38,Bronze,1 +5335,Charles Perry,dharrison@russell-hernandez.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""USD""}",8774.68,Bronze,0 +5336,Justin Bowen,marcrodriguez@gmail.com,2022-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",9731.14,Silver,0 +5337,Andre Kirk,andreaschultz@yahoo.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6327.46,Bronze,1 +5338,Andrea Perez,vjohnson@hotmail.com,2020-09-15,"{""language"": ""FR"", ""currency"": ""USD""}",8728.24,Gold,1 +5339,Robert Smith,rodriguezjason@yahoo.com,2023-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8652.14,Bronze,0 +5340,Charles Larson,amyweaver@conley-jenkins.biz,2021-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",1377.75,Gold,0 +5341,Joseph Miller,william36@thompson-spencer.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",2869.68,Gold,1 +5342,Keith Mcintosh,jonesemily@gmail.com,2022-07-19,"{""language"": ""EN"", ""currency"": ""CAD""}",5582.21,Gold,1 +5343,Wesley Vance,allenkatie@golden-martinez.com,2020-12-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1355.42,Silver,1 +5344,Karen Miller,brianmay@gmail.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6605.29,Bronze,0 +5345,Brian Bell,rodney66@murray.biz,2023-09-08,"{""language"": ""ES"", ""currency"": ""GBP""}",5726.15,Bronze,0 +5346,Hannah Grant,jdavis@knox.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",7470.23,Gold,1 +5347,Nicholas Jacobs,ryan10@reyes.com,2024-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",2651.13,Gold,1 +5348,Christopher Mitchell,mariooneill@robinson.info,2022-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",627.56,Silver,1 +5349,Ryan Johnson,randygilbert@jones.biz,2021-07-31,"{""language"": ""IT"", ""currency"": ""GBP""}",9092.81,Silver,1 +5350,Amanda Cruz,xwebb@bryant-perez.net,2023-06-07,"{""language"": ""EN"", ""currency"": ""CAD""}",8185.84,Silver,1 +5351,Megan Rogers,pmccall@ramirez-valenzuela.biz,2023-08-16,"{""language"": ""ES"", ""currency"": ""MXN""}",4838.79,Gold,1 +5352,Sandra Briggs,qrojas@hotmail.com,2023-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9253.77,Silver,0 +5353,Alicia Bradford,robert32@haley.com,2023-08-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8757.86,Gold,1 +5354,Diana Howard,samanthafleming@hammond-cruz.net,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",2191.17,Silver,0 +5355,Cindy Hernandez,daviddavis@pace.com,2021-03-22,"{""language"": ""FR"", ""currency"": ""CAD""}",5955.47,Bronze,0 +5356,Brenda Greene,evancrosby@gmail.com,2021-08-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1339.13,Bronze,1 +5357,Cheryl Jackson,normabrown@buchanan.com,2022-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",3158.83,Gold,1 +5358,Antonio Coleman,rodriguezcorey@andrews.net,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7060.44,Gold,0 +5359,Donna Schmidt,nancy12@dickson.biz,2021-06-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1730.43,Silver,0 +5360,Melinda Duncan,romerolaura@green.info,2023-10-06,"{""language"": ""ES"", ""currency"": ""CAD""}",2239.36,Gold,1 +5361,Carol Chavez,reedguy@yahoo.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""MXN""}",634.51,Gold,0 +5362,Michele Beasley,leejack@yahoo.com,2021-09-29,"{""language"": ""DE"", ""currency"": ""GBP""}",3706.82,Silver,0 +5363,Connie Murphy,stephenmartinez@yahoo.com,2020-07-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6678.6,Silver,0 +5364,Michael Griffin,tedwards@yahoo.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",4305.69,Bronze,0 +5365,Tiffany White,angela60@yahoo.com,2021-05-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7424.8,Silver,1 +5366,Eric Baldwin,casehannah@gmail.com,2021-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",5242.86,Gold,1 +5367,Paul Lopez,kevin20@middleton.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",458.69,Gold,0 +5368,Mitchell Fischer,singhsean@wagner.org,2023-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6681.64,Silver,1 +5369,Bonnie Miller,brenda45@gmail.com,2023-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",1158.05,Silver,1 +5370,Robert Silva,stevenevans@rodriguez.info,2021-11-06,"{""language"": ""IT"", ""currency"": ""EUR""}",5668.64,Gold,1 +5371,Dawn Martinez,vancegary@hotmail.com,2022-03-01,"{""language"": ""IT"", ""currency"": ""CAD""}",4586.67,Silver,0 +5372,Shelly Berg,nguyenchristopher@yahoo.com,2021-01-27,"{""language"": ""EN"", ""currency"": ""EUR""}",5785.8,Gold,1 +5373,Arthur Pena,hodgetracey@mills-hansen.com,2023-05-15,"{""language"": ""DE"", ""currency"": ""USD""}",9155.61,Silver,1 +5374,Kathleen Lang,brewermichael@yahoo.com,2023-01-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4206.27,Gold,0 +5375,Scott Barnett,michaelgonzales@hotmail.com,2023-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",4192.68,Silver,1 +5376,Erin Gill,jessica58@elliott-myers.net,2024-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2124.54,Silver,1 +5377,Christopher Hampton,reidstacie@yahoo.com,2019-12-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4842.23,Gold,1 +5378,Tracy Russell,gentrynathan@hotmail.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""EUR""}",5315.91,Bronze,0 +5379,Shawn Robinson,tjoyce@kelley.com,2021-06-17,"{""language"": ""DE"", ""currency"": ""USD""}",6245.8,Gold,0 +5380,James Khan,robert47@gmail.com,2021-09-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4327.72,Silver,1 +5381,Jason Reyes,anawilliams@ferguson.com,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",9126.72,Bronze,1 +5382,Craig Harmon,williecruz@hotmail.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9148.37,Bronze,0 +5383,Emily Moore,juarezkellie@yahoo.com,2022-11-16,"{""language"": ""ES"", ""currency"": ""USD""}",1040.7,Silver,1 +5384,Bryan Duarte,ihopkins@hill-smith.com,2023-09-07,"{""language"": ""IT"", ""currency"": ""CAD""}",7859.1,Gold,0 +5385,Amy Lloyd,icarpenter@hotmail.com,2022-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",2832.57,Bronze,1 +5386,Kristina Robinson,carl43@gmail.com,2022-09-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2590.89,Bronze,1 +5387,Johnny Smith,bradfordmegan@henry-brown.com,2022-05-18,"{""language"": ""ES"", ""currency"": ""GBP""}",9818.14,Silver,1 +5388,Edward Bradford,nwood@obrien.info,2022-01-19,"{""language"": ""EN"", ""currency"": ""MXN""}",2729.08,Gold,1 +5389,Julia Diaz,annathomas@sullivan-mccarthy.com,2020-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",2714.75,Silver,0 +5390,Casey Miller,johnsonbrian@alvarez-peck.com,2020-11-23,"{""language"": ""FR"", ""currency"": ""MXN""}",5016.64,Silver,0 +5391,Justin Hendricks,jamiesolomon@ryan.biz,2024-04-30,"{""language"": ""DE"", ""currency"": ""GBP""}",3277.76,Silver,1 +5392,Bruce Rice,acostamelanie@hotmail.com,2023-05-06,"{""language"": ""DE"", ""currency"": ""CAD""}",5292.18,Bronze,0 +5393,Christina Warren,velazquezjoshua@hotmail.com,2022-11-29,"{""language"": ""FR"", ""currency"": ""GBP""}",8757.24,Bronze,1 +5394,Holly Harris,davidricardo@lee.biz,2023-08-08,"{""language"": ""DE"", ""currency"": ""MXN""}",6178.81,Gold,0 +5395,Valerie Walters,fordkrystal@fernandez.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3156.23,Gold,1 +5396,Timothy Weaver,kevin03@watson-cooper.com,2024-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",3224.85,Bronze,0 +5397,Cristina Keith,charles01@yahoo.com,2020-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",446.9,Bronze,0 +5398,Joel Zavala,stoutjessica@valencia-brewer.com,2023-11-07,"{""language"": ""FR"", ""currency"": ""EUR""}",4391.39,Silver,0 +5399,Alexandra Anderson,kimberlyhoward@hotmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""MXN""}",362.93,Silver,1 +5400,Kimberly Young,aaron56@gmail.com,2021-04-30,"{""language"": ""FR"", ""currency"": ""CAD""}",3914.07,Bronze,1 +5401,Ashley Shaw,zhuerta@gmail.com,2021-01-13,"{""language"": ""ES"", ""currency"": ""CAD""}",7283.44,Silver,0 +5402,Brenda Lopez,lynchjoshua@gmail.com,2021-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",890.7,Bronze,1 +5403,Joshua Mitchell Jr.,davidsonsarah@yahoo.com,2021-12-30,"{""language"": ""FR"", ""currency"": ""MXN""}",2635.82,Bronze,0 +5404,Nicholas Reeves,barajascarol@yahoo.com,2019-12-21,"{""language"": ""FR"", ""currency"": ""USD""}",8592.58,Bronze,0 +5405,Nicole Keller,danny93@ballard.com,2023-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1496.81,Bronze,1 +5406,Caroline Quinn,reynoldsjasmine@potter-kelley.com,2021-01-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9691.76,Gold,1 +5407,Dakota Eaton,mark43@gmail.com,2021-05-20,"{""language"": ""IT"", ""currency"": ""USD""}",2332.67,Silver,0 +5408,Julie Matthews,kbarnett@gmail.com,2024-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",7151.74,Silver,1 +5409,Christie Patterson,fernandezcourtney@yahoo.com,2023-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",371.82,Gold,0 +5410,Ryan Farley,perryantonio@hall.com,2022-11-20,"{""language"": ""DE"", ""currency"": ""EUR""}",290.97,Gold,1 +5411,Francisco Cochran,caleb40@rose.biz,2020-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",2052.77,Silver,0 +5412,Anthony Allen,bwilkins@maldonado.com,2023-08-03,"{""language"": ""IT"", ""currency"": ""GBP""}",2215.71,Bronze,0 +5413,Dr. Andrew Flowers,tcastro@hotmail.com,2021-09-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1922.31,Silver,1 +5414,Rebecca Preston,courtney81@yahoo.com,2021-04-03,"{""language"": ""DE"", ""currency"": ""MXN""}",3896.54,Silver,1 +5415,Brady Harris,lindsey97@yahoo.com,2021-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",4022.25,Gold,0 +5416,Madison Williams,iwalker@miller.com,2020-11-16,"{""language"": ""FR"", ""currency"": ""USD""}",2602.21,Gold,0 +5417,Phillip Sanchez,derrickmiller@yahoo.com,2019-12-18,"{""language"": ""FR"", ""currency"": ""EUR""}",3531.55,Silver,1 +5418,Jessica Acevedo,gomezkenneth@lopez.com,2023-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",6021.93,Gold,1 +5419,David Castaneda,bwilson@thomas.com,2021-01-05,"{""language"": ""EN"", ""currency"": ""GBP""}",5986.92,Silver,1 +5420,Glenn Henry,erikawyatt@jimenez-garrett.com,2021-06-29,"{""language"": ""DE"", ""currency"": ""USD""}",8210.64,Bronze,1 +5421,Meredith Krueger,charlesbates@gmail.com,2019-12-17,"{""language"": ""DE"", ""currency"": ""GBP""}",7848.49,Silver,1 +5422,Brian Carr,regina38@walker-lane.biz,2020-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4183.3,Bronze,1 +5423,Brian Thomas,cody49@yahoo.com,2024-05-31,"{""language"": ""IT"", ""currency"": ""GBP""}",6610.23,Gold,1 +5424,Gloria Marshall,yobrien@figueroa.org,2020-07-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9912.5,Bronze,0 +5425,Jason Zavala,pduncan@hotmail.com,2020-07-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1980.28,Silver,0 +5426,Jenna Hanson,oliu@yahoo.com,2022-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5753.04,Gold,1 +5427,Cassie Patrick,hullhaley@moran-blake.info,2023-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",2101.92,Silver,1 +5428,Erin Wallace,brice@hotmail.com,2020-07-05,"{""language"": ""ES"", ""currency"": ""USD""}",4527.77,Silver,0 +5429,Jeffery Callahan,sberry@flores-jackson.net,2021-01-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9249.21,Bronze,0 +5430,Bethany Robinson,ymacias@yahoo.com,2021-12-31,"{""language"": ""DE"", ""currency"": ""USD""}",140.46,Gold,0 +5431,Samuel Stewart,sbarnes@gmail.com,2020-04-10,"{""language"": ""FR"", ""currency"": ""USD""}",1326.64,Silver,0 +5432,Justin Johnson,vmorris@brown-moreno.com,2023-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",7698.66,Bronze,0 +5433,Christine Moore,mcknightruben@page-hampton.biz,2024-01-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8599.22,Silver,1 +5434,Kathy Smith,amandahardy@yahoo.com,2021-10-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8187.72,Gold,0 +5435,Charles Huber,nelsonallison@davis-hunter.biz,2024-02-19,"{""language"": ""EN"", ""currency"": ""USD""}",5954.05,Gold,1 +5436,Jason Smith,danielle91@yahoo.com,2023-03-20,"{""language"": ""DE"", ""currency"": ""GBP""}",6532.48,Silver,1 +5437,Bonnie Rodriguez,michaelfisher@baker.info,2024-08-22,"{""language"": ""ES"", ""currency"": ""MXN""}",8802.22,Silver,0 +5438,Cheryl Turner,deannahoffman@hotmail.com,2023-05-17,"{""language"": ""IT"", ""currency"": ""MXN""}",4529.16,Gold,1 +5439,Melissa Brown,parkerjames@jones-ramirez.info,2023-10-22,"{""language"": ""ES"", ""currency"": ""GBP""}",5052.38,Silver,0 +5440,Robin Hogan,dalejensen@adkins-freeman.biz,2021-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",3965.99,Bronze,0 +5441,Angel Baxter,john85@gates-gallegos.biz,2023-07-10,"{""language"": ""DE"", ""currency"": ""EUR""}",3501.28,Gold,0 +5442,Christopher Ross,michael03@hotmail.com,2023-06-04,"{""language"": ""IT"", ""currency"": ""EUR""}",5376.03,Silver,0 +5443,Carl Padilla,kylewilson@yahoo.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""MXN""}",3464.86,Silver,1 +5444,Tara Ross,juliaglover@harrison.com,2023-07-26,"{""language"": ""FR"", ""currency"": ""EUR""}",8625.83,Gold,1 +5445,William Ward,kayla96@burns.com,2021-10-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8234.23,Gold,1 +5446,Kerry Gregory,jeffrey08@hotmail.com,2023-02-23,"{""language"": ""FR"", ""currency"": ""USD""}",9824.51,Silver,0 +5447,Aaron Cline,townsendtim@anderson.com,2020-06-11,"{""language"": ""DE"", ""currency"": ""EUR""}",2341.26,Silver,0 +5448,Erin Perez,carlos39@hotmail.com,2024-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2839.13,Gold,0 +5449,Holly Hood,nicolediaz@walton.info,2020-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",9756.05,Gold,1 +5450,Susan Henry,wshort@gmail.com,2021-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",7381.06,Gold,1 +5451,Ricardo Stevenson,elizabeth76@mitchell.com,2023-11-17,"{""language"": ""DE"", ""currency"": ""MXN""}",5932.17,Gold,1 +5452,Deborah Porter,barronkelly@larson.com,2023-11-14,"{""language"": ""IT"", ""currency"": ""EUR""}",1504.04,Gold,1 +5453,Brooke Miller,vargastravis@gmail.com,2023-12-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1668.74,Bronze,1 +5454,Mr. Thomas Williams,richard06@dixon.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""MXN""}",8120.14,Bronze,0 +5455,Julie Harper,kellyhunter@hotmail.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""CAD""}",1558.33,Bronze,0 +5456,Jonathan Wolfe,wkane@gmail.com,2024-04-10,"{""language"": ""IT"", ""currency"": ""CAD""}",6178.94,Gold,1 +5457,Kyle Stanton,dawnburke@yahoo.com,2022-10-11,"{""language"": ""DE"", ""currency"": ""GBP""}",88.18,Bronze,1 +5458,Adriana Richard,tanyaarias@lopez.info,2023-05-08,"{""language"": ""IT"", ""currency"": ""USD""}",6574.54,Bronze,1 +5459,Jasmine Richardson,taylor02@hotmail.com,2021-10-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5229.15,Silver,1 +5460,Ashley Welch,xbaker@gmail.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",3543.98,Gold,1 +5461,Melissa Small,bishopdenise@mccoy.com,2021-12-01,"{""language"": ""FR"", ""currency"": ""CAD""}",360.87,Gold,1 +5462,Denise Morales,englishjose@gmail.com,2020-12-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3433.03,Silver,1 +5463,Miguel Stein,zachary79@gmail.com,2020-01-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4701.22,Gold,1 +5464,Christine Mcdonald,sandra94@hotmail.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""EUR""}",3561.45,Silver,1 +5465,Christopher Peterson,mgriffith@lawrence.com,2023-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4134.38,Bronze,1 +5466,Blake Kirby,smithstephanie@hotmail.com,2020-05-16,"{""language"": ""IT"", ""currency"": ""GBP""}",2079.73,Silver,1 +5467,Meagan Williams,unguyen@marsh.com,2024-01-09,"{""language"": ""DE"", ""currency"": ""USD""}",1253.27,Gold,1 +5468,Brooke Reeves,connorcooper@johnson-savage.com,2022-05-30,"{""language"": ""ES"", ""currency"": ""EUR""}",76.7,Gold,1 +5469,Adam Vargas,qcrawford@gmail.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4946.79,Gold,0 +5470,Elizabeth Monroe,sandragallagher@gray.com,2021-09-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5854.57,Silver,1 +5471,Danielle Rhodes,rjohnson@gmail.com,2020-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",3206.13,Bronze,0 +5472,Christopher Hurst,cassidybriggs@gmail.com,2022-06-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7998.24,Silver,0 +5473,Pamela Garcia,ihernandez@gmail.com,2023-07-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5694.92,Gold,0 +5474,Victor Daniels,srodriguez@monroe.com,2024-08-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4526.01,Gold,1 +5475,Benjamin Strickland,murraykatie@patel-reynolds.com,2020-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",9321.62,Bronze,1 +5476,Darren Cross,michaelwilson@green.com,2022-09-16,"{""language"": ""EN"", ""currency"": ""GBP""}",2331.0,Bronze,1 +5477,Andrew Holder,andreaowens@yang.org,2023-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",98.37,Gold,0 +5478,Rachel Williams,dthompson@larsen-diaz.info,2020-08-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9013.56,Bronze,0 +5479,Kimberly Richardson,scott77@hotmail.com,2024-09-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3648.86,Bronze,0 +5480,Natasha Jackson,john09@gmail.com,2023-03-17,"{""language"": ""FR"", ""currency"": ""USD""}",7855.28,Silver,0 +5481,Douglas Blanchard,walter86@gmail.com,2020-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",5303.99,Silver,0 +5482,Patricia Jones,vfuentes@yahoo.com,2021-08-26,"{""language"": ""FR"", ""currency"": ""EUR""}",689.29,Silver,0 +5483,Maria Bell,jonathonallen@martin.net,2024-06-01,"{""language"": ""DE"", ""currency"": ""USD""}",974.79,Bronze,1 +5484,Michael Thomas,teresa12@gmail.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3294.04,Silver,0 +5485,Shannon Young,lisamejia@yahoo.com,2020-08-09,"{""language"": ""DE"", ""currency"": ""GBP""}",8416.95,Gold,0 +5486,Angela Sharp,johncastillo@hotmail.com,2023-05-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9831.61,Silver,1 +5487,John Taylor,jonathan46@bonilla.com,2020-03-15,"{""language"": ""FR"", ""currency"": ""CAD""}",4619.88,Bronze,1 +5488,Terri Matthews,pattersonduane@yahoo.com,2020-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",1977.32,Bronze,0 +5489,Sean Li,janetsmith@yahoo.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",3054.23,Bronze,1 +5490,Andrea Henry,ygarcia@hotmail.com,2020-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",805.65,Silver,1 +5491,Allen Simpson,curtisnicholas@nelson-myers.biz,2024-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",2014.43,Bronze,0 +5492,Shannon Lewis,john04@yahoo.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",4513.28,Bronze,0 +5493,Gary Williams,sward@gmail.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",528.76,Gold,0 +5494,Kevin Gonzalez,dana18@gmail.com,2021-11-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2933.29,Silver,1 +5495,Kelly Young,emmajordan@gmail.com,2023-01-18,"{""language"": ""ES"", ""currency"": ""MXN""}",9634.76,Silver,1 +5496,Carla Parsons,thomas25@hotmail.com,2020-11-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2083.58,Bronze,0 +5497,Martha Davis,pmurphy@yahoo.com,2022-05-09,"{""language"": ""IT"", ""currency"": ""MXN""}",6570.78,Bronze,1 +5498,Melanie Hughes,hharris@gmail.com,2021-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",5246.67,Silver,0 +5499,Nancy Smith,brandonjacobs@gmail.com,2022-10-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5028.65,Gold,0 +5500,Robert Jones,scott97@hotmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""EUR""}",1674.28,Gold,1 +5501,Jessica Lawrence,ellisbilly@dorsey-arnold.com,2022-07-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2485.13,Silver,1 +5502,Alexandra Cortez,tharrison@hotmail.com,2023-06-05,"{""language"": ""IT"", ""currency"": ""USD""}",1481.61,Silver,0 +5503,Gregory Forbes,bridget80@gibbs-crawford.com,2023-04-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7476.26,Bronze,1 +5504,Anthony Sanchez,xconley@gmail.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",8295.29,Bronze,1 +5505,Todd Chandler,tcabrera@yahoo.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""CAD""}",3617.49,Gold,1 +5506,Brian Skinner,davisdevin@gmail.com,2024-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",4985.78,Gold,0 +5507,Joe Bowers,aduran@yahoo.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""USD""}",2741.88,Gold,1 +5508,Michelle Parrish,whitneyaustin@monroe.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""EUR""}",5479.73,Gold,1 +5509,Jennifer Lucero,gmerritt@wright.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""USD""}",3191.47,Bronze,1 +5510,Mrs. Angela Richards MD,brianamartinez@valdez.org,2023-11-11,"{""language"": ""ES"", ""currency"": ""CAD""}",4299.2,Silver,0 +5511,Evelyn Price MD,ericksonamanda@gibson.info,2020-04-17,"{""language"": ""ES"", ""currency"": ""GBP""}",1899.42,Silver,0 +5512,Tracy Arias,bbyrd@smith.net,2021-07-17,"{""language"": ""EN"", ""currency"": ""CAD""}",1774.61,Gold,0 +5513,Joyce Erickson,bjackson@yahoo.com,2020-11-04,"{""language"": ""ES"", ""currency"": ""MXN""}",2794.04,Bronze,0 +5514,Audrey Bell,katherine46@yahoo.com,2022-12-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7820.81,Bronze,0 +5515,Juan Cohen,jeremyjohnston@gmail.com,2024-06-22,"{""language"": ""DE"", ""currency"": ""MXN""}",6660.72,Silver,0 +5516,Matthew Andrews,christopher36@hansen.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",2512.69,Bronze,1 +5517,Christian Green,shortmelissa@gmail.com,2022-05-28,"{""language"": ""FR"", ""currency"": ""GBP""}",2146.47,Bronze,1 +5518,Ruth Johnson,knightcharles@cole.org,2021-05-02,"{""language"": ""DE"", ""currency"": ""GBP""}",1080.19,Silver,0 +5519,Vincent Simmons,jason93@moore.com,2021-01-23,"{""language"": ""EN"", ""currency"": ""EUR""}",6984.44,Bronze,0 +5520,Laura Hodge,marcusparker@perez-parker.com,2022-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9488.6,Gold,0 +5521,Tiffany Munoz,emilywilliams@hotmail.com,2020-09-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9814.58,Bronze,0 +5522,Tyler Davis,meltondebbie@white.com,2022-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",4125.82,Silver,1 +5523,Kimberly Thompson,karennorton@gmail.com,2023-02-07,"{""language"": ""EN"", ""currency"": ""GBP""}",4358.29,Bronze,1 +5524,Mr. Brian Brown,tyronehernandez@hotmail.com,2022-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",69.05,Silver,0 +5525,Cole Hill,jmcclain@rodgers-smith.info,2020-10-06,"{""language"": ""EN"", ""currency"": ""GBP""}",3564.68,Bronze,0 +5526,Miss Shelly Hernandez,mendozaeileen@yahoo.com,2023-01-10,"{""language"": ""EN"", ""currency"": ""USD""}",2320.35,Gold,1 +5527,Caleb Young,richardsonjoann@yahoo.com,2024-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",4904.92,Gold,1 +5528,Dr. Debra Butler,cynthia99@yahoo.com,2021-01-31,"{""language"": ""IT"", ""currency"": ""MXN""}",8972.78,Bronze,0 +5529,Jessica Gibson,travisbeltran@hotmail.com,2020-12-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2381.93,Silver,0 +5530,Nicolas Savage,glenda86@hotmail.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""USD""}",3124.66,Silver,1 +5531,Danielle Miller,gregorynorris@chaney-watkins.info,2020-02-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2698.93,Bronze,0 +5532,James Edwards,campbellnancy@adams.biz,2022-10-31,"{""language"": ""FR"", ""currency"": ""MXN""}",9815.1,Silver,1 +5533,Richard Simmons,matthew08@lara-johnson.com,2022-05-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4987.41,Silver,0 +5534,James Flores,danielmaddox@gmail.com,2024-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",7654.81,Bronze,1 +5535,Kathryn Villegas,rromero@yahoo.com,2020-10-01,"{""language"": ""DE"", ""currency"": ""EUR""}",5721.87,Silver,1 +5536,Ethan Leonard,andrea17@yahoo.com,2022-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",1708.79,Bronze,0 +5537,Gregory Barnes,ginaclark@carlson-pineda.net,2021-04-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6433.96,Bronze,1 +5538,Brenda Jackson,michael31@hotmail.com,2021-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1380.46,Gold,1 +5539,Bryan Day,patricia89@gmail.com,2021-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",5322.05,Silver,1 +5540,Curtis Cobb,zachary38@miller-williams.com,2022-08-25,"{""language"": ""DE"", ""currency"": ""CAD""}",1532.14,Gold,1 +5541,Jared Hayes,apierce@barnett.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",1054.56,Gold,1 +5542,Jordan Tran,peggybridges@hotmail.com,2022-10-23,"{""language"": ""DE"", ""currency"": ""MXN""}",4661.71,Gold,0 +5543,Megan Guzman,mccormickcody@flowers.com,2023-07-09,"{""language"": ""IT"", ""currency"": ""EUR""}",1011.34,Bronze,1 +5544,Benjamin Thomas,karahughes@stephens.biz,2021-11-19,"{""language"": ""ES"", ""currency"": ""USD""}",2275.97,Bronze,0 +5545,James Huber,joseph94@manning.com,2020-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6370.24,Silver,0 +5546,Jennifer Reed,gcoleman@yahoo.com,2021-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",4603.6,Bronze,0 +5547,Michelle Diaz,mcconnelldonald@lewis-cox.com,2024-02-17,"{""language"": ""FR"", ""currency"": ""EUR""}",928.18,Gold,0 +5548,Craig Thomas,mary37@yahoo.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""MXN""}",4994.23,Silver,0 +5549,William Alexander,tammy73@lara.com,2020-05-21,"{""language"": ""EN"", ""currency"": ""GBP""}",4401.23,Silver,1 +5550,Robin Pierce,tracey27@yahoo.com,2024-04-16,"{""language"": ""FR"", ""currency"": ""EUR""}",5368.28,Bronze,0 +5551,Sarah Allen,wilkersoncaroline@warren.org,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4363.38,Bronze,0 +5552,Victoria Wilson,gmiller@hotmail.com,2023-10-18,"{""language"": ""FR"", ""currency"": ""MXN""}",4708.49,Silver,1 +5553,Blake Payne,thomaskendra@johnson.com,2022-02-21,"{""language"": ""FR"", ""currency"": ""USD""}",6036.76,Silver,1 +5554,Crystal Collins,courtneyyork@hurst-davis.com,2020-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",7738.06,Silver,1 +5555,Collin Wilkins,wendybrown@gonzalez.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""EUR""}",9781.94,Bronze,0 +5556,Dr. Heather Braun,hammondkristina@barnett.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""GBP""}",1394.03,Gold,1 +5557,Elizabeth Salinas,ritterjohnny@yahoo.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""EUR""}",1425.05,Gold,1 +5558,Andre Wilkins,edaugherty@leon.org,2021-12-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9388.53,Silver,0 +5559,Ashley Walker,pateljill@odonnell-pierce.com,2021-09-23,"{""language"": ""ES"", ""currency"": ""USD""}",8751.32,Silver,0 +5560,Daniel Daniel,xcarter@gmail.com,2021-06-03,"{""language"": ""EN"", ""currency"": ""USD""}",9499.9,Bronze,0 +5561,Jose Brooks,birdsarah@gonzalez.info,2021-02-20,"{""language"": ""FR"", ""currency"": ""EUR""}",7048.52,Gold,1 +5562,Maria Bennett,kaitlynmoreno@yahoo.com,2023-07-03,"{""language"": ""DE"", ""currency"": ""GBP""}",3889.06,Bronze,0 +5563,Jennifer Watkins,dianethompson@gmail.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""EUR""}",6644.23,Bronze,0 +5564,William Smith,petersonstacy@hotmail.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""USD""}",1919.73,Gold,0 +5565,Dr. Ashley Warren MD,jodytran@hotmail.com,2024-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",9087.58,Gold,0 +5566,Mr. Jonathan Wolfe,pthompson@yang.com,2020-01-23,"{""language"": ""DE"", ""currency"": ""MXN""}",1842.28,Bronze,0 +5567,Janet Pena,fordryan@hartman-andersen.com,2021-11-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8309.32,Silver,0 +5568,Kendra Massey,john55@yahoo.com,2022-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",181.03,Gold,1 +5569,Ryan Parker,wdyer@gmail.com,2020-04-11,"{""language"": ""DE"", ""currency"": ""CAD""}",2134.66,Silver,0 +5570,Victor Ortiz,angelballard@yahoo.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7776.96,Gold,1 +5571,Katherine Garcia,adrian82@yahoo.com,2023-10-09,"{""language"": ""FR"", ""currency"": ""USD""}",8213.91,Silver,1 +5572,Emma Reid,rmcdaniel@mathews-johnson.info,2022-06-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1863.57,Gold,1 +5573,Jamie Burke,youngmelanie@sherman.com,2023-07-21,"{""language"": ""ES"", ""currency"": ""GBP""}",7302.67,Gold,0 +5574,Sean Oliver,griffithshannon@hotmail.com,2021-01-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8889.34,Gold,0 +5575,Holly Bradley,vrangel@yahoo.com,2023-05-23,"{""language"": ""ES"", ""currency"": ""CAD""}",7756.27,Bronze,1 +5576,Megan Brown,nelsonmark@gmail.com,2024-11-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4293.97,Gold,0 +5577,Michael Patterson,zsilva@yahoo.com,2024-01-16,"{""language"": ""FR"", ""currency"": ""MXN""}",5795.85,Gold,1 +5578,Brenda Horn,craig89@gmail.com,2023-02-24,"{""language"": ""ES"", ""currency"": ""CAD""}",7173.26,Gold,0 +5579,Brittany Hall,jwalker@gmail.com,2022-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6328.76,Bronze,1 +5580,Haley Wagner,robinsonheidi@gmail.com,2020-12-25,"{""language"": ""EN"", ""currency"": ""GBP""}",5134.72,Bronze,0 +5581,Danny Cooke,katie06@gmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3497.15,Bronze,0 +5582,Amanda Stevens,stephaniedennis@yahoo.com,2021-04-09,"{""language"": ""FR"", ""currency"": ""EUR""}",8571.18,Bronze,1 +5583,Suzanne Stewart,bdixon@daniels.com,2024-11-14,"{""language"": ""EN"", ""currency"": ""EUR""}",6227.05,Silver,1 +5584,Benjamin Shea,hollowaytabitha@yahoo.com,2021-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6612.24,Gold,1 +5585,Joseph Stone,reneejensen@myers-burns.com,2021-11-21,"{""language"": ""FR"", ""currency"": ""EUR""}",9483.74,Silver,0 +5586,Garrett Paul,carterroger@gmail.com,2022-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",5628.34,Bronze,1 +5587,Amanda Mclean,iramsey@hotmail.com,2020-04-17,"{""language"": ""EN"", ""currency"": ""USD""}",443.31,Silver,1 +5588,Kenneth Taylor,cynthiasmith@hotmail.com,2021-06-07,"{""language"": ""IT"", ""currency"": ""MXN""}",4287.94,Gold,1 +5589,Kimberly Taylor,jonesthomas@baker.biz,2022-06-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6522.12,Bronze,1 +5590,Alexandra Banks,sharon39@gmail.com,2021-11-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9951.31,Gold,1 +5591,Steven Nguyen,robert70@salinas.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",1214.65,Bronze,1 +5592,Denise Vazquez,elewis@wallace-anderson.com,2023-11-20,"{""language"": ""ES"", ""currency"": ""CAD""}",514.03,Gold,1 +5593,Clifford Mccoy,morgansteven@yahoo.com,2023-01-29,"{""language"": ""ES"", ""currency"": ""CAD""}",8088.17,Bronze,0 +5594,Megan Watson,clayton89@burke-gonzales.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",3618.14,Gold,1 +5595,Jennifer Owen,nicholsbrendan@hurley.biz,2020-10-16,"{""language"": ""IT"", ""currency"": ""MXN""}",8225.77,Silver,0 +5596,James James,wbeasley@gmail.com,2024-06-21,"{""language"": ""EN"", ""currency"": ""GBP""}",2313.13,Bronze,0 +5597,Timothy Anthony,jesse71@walker.com,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",766.59,Bronze,1 +5598,Diane Salas,jimmyhughes@yahoo.com,2022-02-07,"{""language"": ""DE"", ""currency"": ""MXN""}",4287.86,Bronze,1 +5599,Gregory Morgan,omaynard@yahoo.com,2022-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",834.74,Silver,0 +5600,Gregory Larsen,vsanders@yahoo.com,2023-01-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4748.2,Silver,1 +5601,Mark Martin,robertschristine@gmail.com,2021-10-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3058.68,Gold,0 +5602,Ashley Harris,aaron29@ramos.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",664.25,Bronze,1 +5603,Mikayla Martinez,ianferguson@yahoo.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""CAD""}",2782.11,Bronze,0 +5604,Amy Patel,davidanderson@nguyen-marks.com,2024-09-19,"{""language"": ""ES"", ""currency"": ""USD""}",8331.44,Silver,0 +5605,Audrey Williams,mcfarlandmichael@hotmail.com,2024-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6644.37,Bronze,1 +5606,Ronald Potter,ccoleman@reed.biz,2022-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",9505.67,Silver,0 +5607,Mary Mullen,gibsonsarah@west.com,2020-12-06,"{""language"": ""FR"", ""currency"": ""USD""}",897.04,Silver,1 +5608,Stephen Lester,gonzalezerika@gmail.com,2020-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",8929.99,Gold,1 +5609,Kyle Moore,eaustin@hotmail.com,2020-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",4868.75,Silver,0 +5610,Ralph Roberts,robertramirez@nolan.info,2024-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",2433.03,Bronze,1 +5611,David Clark,breanna62@russell-ward.biz,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",2846.96,Gold,0 +5612,William Joseph,ymiller@yahoo.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",545.52,Gold,0 +5613,Carrie Arnold,millerjeffrey@yahoo.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5139.35,Gold,1 +5614,Richard Wood,nicholas16@rivera-olson.com,2021-06-24,"{""language"": ""DE"", ""currency"": ""CAD""}",2070.86,Silver,0 +5615,Jason Brooks,lcarlson@rivers.biz,2020-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",179.33,Gold,1 +5616,Sean Obrien,jsullivan@hotmail.com,2024-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",2437.28,Gold,1 +5617,Monique Thompson,dwilliams@gmail.com,2023-03-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9103.86,Gold,0 +5618,Rhonda Howell,brettmccall@nguyen-dixon.com,2020-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",3303.14,Bronze,0 +5619,Sara Mitchell,melissaowen@glenn.com,2022-10-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7724.13,Silver,0 +5620,Eric Colon,bradfordjeffery@gmail.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""EUR""}",9149.54,Silver,0 +5621,Shawn Meyer,stacyfernandez@silva-peterson.info,2020-09-15,"{""language"": ""DE"", ""currency"": ""MXN""}",867.67,Bronze,0 +5622,Courtney Bowen,linda73@zimmerman.net,2023-09-25,"{""language"": ""DE"", ""currency"": ""EUR""}",5687.97,Silver,1 +5623,Amanda Keller,kelleycassie@bell.net,2022-05-26,"{""language"": ""EN"", ""currency"": ""GBP""}",4948.61,Gold,1 +5624,Brianna Bryant,jessica56@roman.com,2024-04-18,"{""language"": ""IT"", ""currency"": ""MXN""}",5632.23,Silver,0 +5625,Daniel Williams,allen38@yahoo.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",3225.5,Bronze,1 +5626,Charles Mcdaniel,katherineclark@hotmail.com,2021-07-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3156.12,Silver,1 +5627,Kimberly Guerrero,christopher02@hotmail.com,2020-05-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8169.71,Bronze,0 +5628,Robert Meyers Jr.,andrewadkins@hotmail.com,2022-03-16,"{""language"": ""FR"", ""currency"": ""GBP""}",9299.52,Gold,1 +5629,Barbara Dickerson,phillipkrause@houston.net,2020-11-18,"{""language"": ""FR"", ""currency"": ""CAD""}",483.06,Silver,1 +5630,Jermaine Bryant,clarkmeredith@morgan-riddle.com,2022-08-22,"{""language"": ""DE"", ""currency"": ""EUR""}",3192.34,Bronze,0 +5631,Ryan Bowers,tamara15@day.net,2023-06-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9739.09,Bronze,1 +5632,David Gomez,walshjeffrey@pena.com,2020-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",2111.31,Silver,1 +5633,Matthew Frost,laura69@hotmail.com,2024-02-17,"{""language"": ""EN"", ""currency"": ""CAD""}",4624.22,Gold,0 +5634,Sarah Williams,ronalddaniels@gmail.com,2024-05-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9941.27,Gold,1 +5635,Audrey Roberts,flemingjessica@peterson-cruz.biz,2020-12-21,"{""language"": ""IT"", ""currency"": ""GBP""}",5162.85,Bronze,0 +5636,Nicholas Ware,bernardjimmy@hotmail.com,2021-11-28,"{""language"": ""IT"", ""currency"": ""GBP""}",5148.34,Gold,0 +5637,Megan Ortega,hhood@simon.com,2020-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8182.97,Bronze,1 +5638,Megan Bates,johnsonroy@hotmail.com,2020-02-10,"{""language"": ""ES"", ""currency"": ""EUR""}",7769.35,Silver,0 +5639,Courtney Foster,douglaslaura@graham.com,2022-01-30,"{""language"": ""ES"", ""currency"": ""EUR""}",401.02,Bronze,0 +5640,Robert Mcgrath,nicholas29@gmail.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",2080.35,Silver,0 +5641,Austin Riley,markdouglas@alexander.com,2021-03-16,"{""language"": ""EN"", ""currency"": ""USD""}",4505.27,Silver,0 +5642,Darlene Sandoval,derrick49@gmail.com,2022-07-15,"{""language"": ""FR"", ""currency"": ""GBP""}",333.56,Silver,1 +5643,Sara Turner,wagnerhenry@potts.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7819.7,Silver,1 +5644,Virginia Thomas,judy35@mcneil-tucker.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1431.8,Gold,1 +5645,Kathryn Jones,justinpace@gmail.com,2021-05-08,"{""language"": ""EN"", ""currency"": ""GBP""}",9451.79,Gold,0 +5646,Lindsay Mcdowell,phughes@rogers.com,2023-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",8493.9,Silver,1 +5647,Gail Bond,sean41@gmail.com,2023-08-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4389.45,Bronze,0 +5648,Savannah Rich,michellemoon@gomez-casey.org,2021-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",1963.92,Gold,1 +5649,Maria Norris,twilliams@hotmail.com,2024-11-04,"{""language"": ""IT"", ""currency"": ""USD""}",3847.88,Gold,1 +5650,Anthony Thomas,phillipprice@hotmail.com,2023-02-03,"{""language"": ""EN"", ""currency"": ""MXN""}",5151.92,Bronze,0 +5651,Jamie Cobb,triciaclark@vargas.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",4584.22,Gold,0 +5652,Laura King,porr@hotmail.com,2020-12-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3814.62,Gold,1 +5653,Cheryl Richards,emclean@hotmail.com,2023-02-25,"{""language"": ""IT"", ""currency"": ""MXN""}",4932.44,Gold,1 +5654,Christy Carlson,joshuagutierrez@hotmail.com,2023-09-20,"{""language"": ""DE"", ""currency"": ""GBP""}",651.71,Silver,0 +5655,Regina Turner,aaronbrandt@miller-moss.com,2024-10-07,"{""language"": ""IT"", ""currency"": ""CAD""}",3783.55,Silver,1 +5656,Colin Sanchez,audrey37@morgan.biz,2023-02-01,"{""language"": ""FR"", ""currency"": ""MXN""}",9882.49,Gold,1 +5657,Joshua Miller,hernandezstephanie@gmail.com,2020-11-22,"{""language"": ""IT"", ""currency"": ""USD""}",5836.43,Silver,1 +5658,Kelsey Montoya,barkerbenjamin@mitchell-flores.net,2024-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",7774.38,Silver,0 +5659,Kimberly Johnson DVM,ejones@burke-harper.info,2023-11-18,"{""language"": ""IT"", ""currency"": ""USD""}",8573.16,Gold,1 +5660,Allison Cole,fchen@leblanc.com,2021-06-12,"{""language"": ""ES"", ""currency"": ""EUR""}",7173.66,Bronze,0 +5661,Jeffrey Valdez,brianna45@schultz.biz,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",786.65,Bronze,1 +5662,Cynthia Henry,larry99@haley-nunez.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1247.3,Gold,1 +5663,Elizabeth Cortez,cwang@camacho.com,2020-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9975.79,Bronze,1 +5664,Melissa Johnson,daniel15@hotmail.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""MXN""}",9274.74,Gold,0 +5665,Steven Peterson,laura96@burke.com,2022-02-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3697.9,Bronze,1 +5666,Michael Warren,anthony11@gmail.com,2020-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",9817.82,Silver,0 +5667,Angela Howell,nicolecurtis@gmail.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",6629.94,Gold,1 +5668,Mitchell Walters,josehughes@harris-hayes.com,2023-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",2032.97,Bronze,0 +5669,Kevin Mitchell,lozanosara@russell.com,2021-12-07,"{""language"": ""EN"", ""currency"": ""GBP""}",9668.33,Gold,0 +5670,Maria Smith,kristen81@landry.com,2021-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",428.07,Gold,1 +5671,Denise Donovan,christinasimpson@gmail.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",5750.29,Bronze,1 +5672,Dennis Sloan,huffashley@yahoo.com,2021-01-03,"{""language"": ""ES"", ""currency"": ""USD""}",7065.74,Bronze,0 +5673,Amy Shannon,vlopez@gmail.com,2023-02-25,"{""language"": ""IT"", ""currency"": ""USD""}",3126.2,Gold,1 +5674,Courtney Hernandez,tracyjenkins@cross.net,2021-12-23,"{""language"": ""DE"", ""currency"": ""GBP""}",2095.42,Gold,1 +5675,Kelly Morales,timothy12@park.com,2021-11-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6307.93,Silver,0 +5676,Erin Walker,usmith@gmail.com,2024-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",7267.85,Silver,1 +5677,Peter Woods,stevensonstefanie@williamson-smith.org,2020-11-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5460.86,Bronze,0 +5678,Paige Mcmillan,anthonygriffin@simmons-price.net,2022-09-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2317.68,Silver,1 +5679,Gerald Wilson,jessica57@martin-gonzalez.info,2023-03-17,"{""language"": ""FR"", ""currency"": ""CAD""}",5773.64,Bronze,0 +5680,Christian Rios,christinegarza@martin.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4692.57,Bronze,0 +5681,Kristy Clark,nicole65@hotmail.com,2023-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1499.27,Bronze,1 +5682,Jessica Ross,timothyzimmerman@yahoo.com,2024-06-22,"{""language"": ""DE"", ""currency"": ""EUR""}",6140.86,Bronze,0 +5683,Lisa Brown,pmoore@hotmail.com,2022-03-04,"{""language"": ""EN"", ""currency"": ""EUR""}",9574.53,Bronze,0 +5684,Logan Gregory,hawkinsmary@kennedy-donovan.com,2023-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9305.21,Bronze,1 +5685,Richard Morrison,ericapatton@hotmail.com,2021-11-02,"{""language"": ""FR"", ""currency"": ""CAD""}",9064.7,Silver,1 +5686,Kevin Todd,ydiaz@hotmail.com,2024-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9699.18,Silver,0 +5687,April Orozco,collierbrett@peterson-jones.com,2021-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5095.44,Gold,1 +5688,Samantha Bolton,ruizanthony@young.com,2024-02-22,"{""language"": ""EN"", ""currency"": ""USD""}",9607.73,Silver,1 +5689,Bryan Collins,megansimmons@gmail.com,2024-07-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5650.64,Gold,1 +5690,Morgan Spence,patrickortiz@yahoo.com,2020-09-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5020.42,Silver,1 +5691,Christopher Krueger,hallbrady@sanchez.net,2019-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",7685.59,Gold,1 +5692,Richard Mitchell,sandra68@campbell.biz,2024-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",8531.09,Gold,0 +5693,Bethany Stanton,dustinlopez@baker.com,2020-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9144.59,Bronze,0 +5694,Shawn Taylor,gonzalezcindy@burgess.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""EUR""}",554.46,Bronze,0 +5695,Timothy Martin,sanchezdiane@gmail.com,2020-10-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3264.79,Bronze,0 +5696,John Guerra,jonathan33@yahoo.com,2023-07-15,"{""language"": ""ES"", ""currency"": ""GBP""}",6176.01,Bronze,0 +5697,Melvin Bailey,larrysimmons@yahoo.com,2020-07-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1765.33,Gold,0 +5698,Jade Daugherty,maybenjamin@yahoo.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""MXN""}",9573.61,Silver,0 +5699,Carrie Patel,stacie94@gmail.com,2021-09-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8057.84,Bronze,1 +5700,Margaret Kennedy,katrinalutz@yahoo.com,2023-01-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6201.28,Silver,1 +5701,Jessica Williams,huynhdon@hotmail.com,2024-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9764.5,Gold,0 +5702,Gregory Gonzalez,pbird@yahoo.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8105.13,Gold,1 +5703,Cynthia Hopkins,torrescorey@hotmail.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""USD""}",6061.48,Silver,0 +5704,Patrick Coleman,roachjon@miller.net,2021-02-12,"{""language"": ""FR"", ""currency"": ""EUR""}",4894.82,Bronze,0 +5705,Shawn Steele,alexanderali@hotmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""GBP""}",5520.42,Bronze,1 +5706,Dr. Jason Reynolds,nrodriguez@banks.com,2023-05-24,"{""language"": ""DE"", ""currency"": ""MXN""}",8576.88,Gold,0 +5707,Cynthia Walker,nicole03@young-brennan.com,2020-03-05,"{""language"": ""ES"", ""currency"": ""USD""}",1955.74,Bronze,1 +5708,Jennifer Brown,ithomas@ruiz.com,2020-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",6613.6,Silver,1 +5709,Justin Thomas,jonesdeborah@kim-carpenter.net,2020-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8426.06,Gold,1 +5710,Laura Burns,ujohnson@scott.net,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",8684.37,Bronze,0 +5711,Danny Mendez,catherine27@webster.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",1514.27,Bronze,1 +5712,Paul Estes,ndavenport@davis.biz,2023-11-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4610.25,Bronze,1 +5713,Todd George,carlypeterson@gmail.com,2020-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",5738.68,Silver,0 +5714,Jennifer Nelson,apriltaylor@gmail.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8307.9,Bronze,0 +5715,Charlotte Rivera,hoovermonica@yahoo.com,2020-10-26,"{""language"": ""FR"", ""currency"": ""EUR""}",1441.6,Bronze,1 +5716,Marie Anderson,greenmario@silva.com,2021-05-10,"{""language"": ""EN"", ""currency"": ""EUR""}",5336.01,Silver,1 +5717,David Singh,abigailsosa@gmail.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""USD""}",7026.48,Bronze,0 +5718,Katherine Wilson,longwilliam@yahoo.com,2023-06-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2456.79,Bronze,0 +5719,Ivan Wilson,tonya17@yahoo.com,2022-08-04,"{""language"": ""FR"", ""currency"": ""MXN""}",3481.74,Silver,1 +5720,Ashley Castillo,anthonyhall@sanford.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""USD""}",6533.1,Silver,0 +5721,Jennifer Wells,imerritt@morales-huber.com,2024-01-24,"{""language"": ""FR"", ""currency"": ""CAD""}",7592.55,Silver,1 +5722,Antonio Bradshaw,zhouston@robles.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""USD""}",4933.46,Bronze,1 +5723,Michael Rowe,zimmermanjoel@valentine.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""EUR""}",4093.07,Silver,1 +5724,Laurie Thompson,michelewoodard@bullock-lara.com,2020-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",7206.88,Gold,0 +5725,Benjamin Russell,nray@jones.org,2020-02-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9870.62,Gold,1 +5726,Dr. Alyssa Turner,mlambert@walker.biz,2020-12-15,"{""language"": ""EN"", ""currency"": ""USD""}",5231.82,Silver,1 +5727,Joseph Carroll,hstewart@lucas.net,2024-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7385.5,Bronze,0 +5728,Marco Adams,kennedycrystal@gmail.com,2024-09-27,"{""language"": ""ES"", ""currency"": ""USD""}",5166.67,Bronze,0 +5729,Eddie Andrews,stephensanthony@hernandez.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""GBP""}",3095.66,Gold,0 +5730,Kristi Munoz,michaelbaker@lewis.org,2023-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",3142.06,Silver,0 +5731,Tiffany Bryant,michaelreed@yahoo.com,2023-11-05,"{""language"": ""DE"", ""currency"": ""USD""}",3378.6,Gold,0 +5732,Lori Hall,dfoster@bean.info,2022-05-23,"{""language"": ""ES"", ""currency"": ""USD""}",8239.03,Gold,0 +5733,Jon Stein,robertsonmarissa@yahoo.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6968.11,Gold,1 +5734,Andrew Schaefer,pevans@yahoo.com,2020-08-15,"{""language"": ""EN"", ""currency"": ""USD""}",1513.28,Bronze,0 +5735,Sharon Hanson,xdavies@edwards.com,2022-07-05,"{""language"": ""IT"", ""currency"": ""GBP""}",4479.08,Silver,1 +5736,Lori Marshall,greerrebecca@yahoo.com,2024-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",9548.6,Bronze,0 +5737,Mark Jensen,richard25@yahoo.com,2022-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3030.35,Bronze,0 +5738,Bruce Morrison,amy14@hotmail.com,2022-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5576.9,Bronze,0 +5739,Brenda Hill,moorejoshua@parker.com,2021-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",9933.58,Bronze,1 +5740,Nicole Johnson,vazquezsharon@gmail.com,2020-10-07,"{""language"": ""FR"", ""currency"": ""GBP""}",4973.33,Gold,1 +5741,Connie Avila,pthompson@holmes.com,2024-02-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4756.89,Gold,1 +5742,Sarah Butler,mary07@hotmail.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""EUR""}",1678.55,Gold,0 +5743,Karla Walker,andrewmorris@yahoo.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""EUR""}",75.25,Bronze,1 +5744,Dawn Thomas,matthewramos@barr.info,2023-11-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4813.59,Gold,1 +5745,John Hutchinson,juannunez@gmail.com,2021-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",7905.59,Gold,0 +5746,Tiffany Hill,douglas38@williams.com,2022-03-08,"{""language"": ""DE"", ""currency"": ""USD""}",5414.54,Silver,0 +5747,Christopher Harrison,heather39@rogers-willis.com,2022-05-23,"{""language"": ""IT"", ""currency"": ""USD""}",7305.67,Silver,0 +5748,Lori Turner,emilyhardin@yahoo.com,2019-12-16,"{""language"": ""EN"", ""currency"": ""GBP""}",395.42,Gold,0 +5749,Kristen Gilbert,rebeccabrown@gmail.com,2020-04-27,"{""language"": ""FR"", ""currency"": ""CAD""}",4470.72,Silver,1 +5750,Daniel Berger,philip56@garcia.com,2023-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1841.34,Gold,0 +5751,Matthew Stephens,dallen@elliott.com,2023-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",84.06,Silver,1 +5752,Laura Skinner,jamesmeyers@yahoo.com,2022-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",5008.21,Bronze,0 +5753,Brenda Sanders,mariabeard@hotmail.com,2023-08-06,"{""language"": ""FR"", ""currency"": ""MXN""}",5392.4,Silver,0 +5754,Barbara Young,khanmark@hurley.net,2023-06-22,"{""language"": ""DE"", ""currency"": ""MXN""}",5174.34,Bronze,0 +5755,Mary Trujillo,christophergreen@buckley-moss.biz,2023-06-20,"{""language"": ""IT"", ""currency"": ""USD""}",7727.65,Silver,1 +5756,Wendy Adams,jerryhebert@campbell.org,2023-09-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9602.66,Silver,0 +5757,Michael Tapia,heather15@fuentes.com,2024-09-19,"{""language"": ""FR"", ""currency"": ""MXN""}",8305.48,Gold,1 +5758,Crystal Webster,cassandrawilliams@oconnor.net,2020-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3528.86,Bronze,1 +5759,Matthew Nelson,johnsonlisa@hotmail.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""EUR""}",8565.3,Gold,1 +5760,Jamie Garner,martinezscott@yahoo.com,2023-11-13,"{""language"": ""IT"", ""currency"": ""MXN""}",2122.35,Bronze,0 +5761,Mark Thompson,wilsonmatthew@mclaughlin-brown.com,2023-07-31,"{""language"": ""FR"", ""currency"": ""MXN""}",55.57,Gold,1 +5762,Eric Mcmillan,john25@armstrong.com,2022-09-24,"{""language"": ""EN"", ""currency"": ""CAD""}",3640.5,Silver,1 +5763,Victoria Reyes,denisemoore@gmail.com,2023-09-21,"{""language"": ""DE"", ""currency"": ""GBP""}",8614.77,Silver,1 +5764,Darlene Osborn,lauriejones@hotmail.com,2022-12-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5149.39,Gold,1 +5765,Amber Huber,ojoseph@yahoo.com,2022-02-25,"{""language"": ""DE"", ""currency"": ""GBP""}",3597.33,Bronze,0 +5766,Makayla Lee,krodriguez@gmail.com,2020-12-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1711.13,Silver,1 +5767,Lisa Perez,tbishop@yahoo.com,2021-12-16,"{""language"": ""ES"", ""currency"": ""USD""}",7432.55,Gold,1 +5768,Steven Clark,christinakelly@hotmail.com,2024-11-07,"{""language"": ""EN"", ""currency"": ""USD""}",237.68,Silver,1 +5769,Jennifer Bishop,tyler71@mitchell.info,2020-02-09,"{""language"": ""DE"", ""currency"": ""USD""}",3314.2,Silver,1 +5770,John Russell,ccruz@ward.info,2022-11-24,"{""language"": ""DE"", ""currency"": ""EUR""}",5819.98,Bronze,0 +5771,Christine Anderson,amorse@gmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",3869.33,Gold,0 +5772,Tammy Solis,mmitchell@douglas.com,2022-05-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8393.39,Silver,1 +5773,Jeffrey Wise,johnsonsandra@hotmail.com,2022-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5090.17,Silver,0 +5774,Antonio Jones,michaelallen@gmail.com,2022-06-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1965.77,Bronze,1 +5775,Franklin Davis,nstewart@hotmail.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""GBP""}",8398.03,Silver,0 +5776,Jasmine Fowler,alexander66@clements.com,2022-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",6530.38,Bronze,1 +5777,Martin Kelley,aaronmiller@yahoo.com,2023-09-01,"{""language"": ""DE"", ""currency"": ""GBP""}",1908.77,Bronze,0 +5778,Allison Ramirez,pwright@yahoo.com,2023-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",4366.68,Bronze,0 +5779,Gina Bass,bowenlindsay@sandoval.com,2023-06-10,"{""language"": ""FR"", ""currency"": ""USD""}",3360.54,Silver,1 +5780,Shelly Martin,jarvisbrittany@watts-gonzalez.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5593.01,Bronze,1 +5781,Mrs. Pamela Anderson DVM,madisonromero@humphrey.com,2020-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7098.68,Silver,0 +5782,Sean Morgan,tabitha59@pena.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""CAD""}",2662.29,Silver,1 +5783,Mrs. Beth Robinson,taramoore@hill.info,2022-02-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4964.21,Gold,0 +5784,Lori Wood,englishmary@frost.com,2020-06-19,"{""language"": ""DE"", ""currency"": ""MXN""}",9830.26,Gold,0 +5785,Dennis Buchanan,jennifer82@hotmail.com,2020-04-28,"{""language"": ""ES"", ""currency"": ""GBP""}",8068.85,Bronze,1 +5786,Samantha Reeves,wilkinscathy@gmail.com,2021-10-06,"{""language"": ""ES"", ""currency"": ""USD""}",9166.97,Bronze,1 +5787,Tracy Mcmillan,morrissandra@allen.com,2021-08-24,"{""language"": ""ES"", ""currency"": ""EUR""}",566.16,Gold,1 +5788,Julie Anderson,michaelgreen@johnson-harris.com,2024-01-09,"{""language"": ""DE"", ""currency"": ""CAD""}",3083.03,Silver,0 +5789,Seth Miller,estescarolyn@hotmail.com,2024-12-08,"{""language"": ""IT"", ""currency"": ""USD""}",9963.96,Bronze,1 +5790,Jonathan Olson,mckinneystephanie@shea.com,2023-01-06,"{""language"": ""DE"", ""currency"": ""MXN""}",3912.26,Gold,0 +5791,Lance Kerr,chadhill@palmer.com,2022-05-31,"{""language"": ""EN"", ""currency"": ""USD""}",9850.05,Silver,0 +5792,Kristen Rodriguez,matthew06@reed.com,2023-12-23,"{""language"": ""DE"", ""currency"": ""GBP""}",6553.14,Silver,1 +5793,Ashley Jones,charper@hotmail.com,2023-04-27,"{""language"": ""EN"", ""currency"": ""USD""}",6949.96,Bronze,0 +5794,Bryan Bennett,hensondavid@dickson-williams.com,2020-04-01,"{""language"": ""EN"", ""currency"": ""EUR""}",7415.36,Gold,0 +5795,Haley Hall,ashley80@gmail.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""USD""}",2280.87,Bronze,0 +5796,Alexander Gonzalez,nicholashorton@edwards-patterson.com,2021-01-16,"{""language"": ""EN"", ""currency"": ""MXN""}",557.34,Silver,0 +5797,Nicholas Lyons,heather00@hotmail.com,2022-09-28,"{""language"": ""FR"", ""currency"": ""EUR""}",8292.09,Gold,0 +5798,Cynthia Wilcox,tholt@yahoo.com,2022-03-11,"{""language"": ""ES"", ""currency"": ""USD""}",5888.43,Bronze,0 +5799,Kimberly Brooks,wbryan@moore.com,2023-07-27,"{""language"": ""DE"", ""currency"": ""GBP""}",7182.1,Silver,0 +5800,Amber Richardson,reyessamantha@gmail.com,2023-08-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7537.05,Bronze,0 +5801,Luis Hill,slee@thompson.org,2021-06-03,"{""language"": ""FR"", ""currency"": ""MXN""}",9259.52,Silver,0 +5802,James Collins,deborahbaker@hill.com,2022-05-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4697.17,Bronze,1 +5803,Robin Kirk,bailey58@gmail.com,2023-07-09,"{""language"": ""IT"", ""currency"": ""USD""}",4095.06,Gold,0 +5804,Peter Williamson,mbutler@huff-berry.biz,2020-04-28,"{""language"": ""IT"", ""currency"": ""CAD""}",9930.27,Bronze,1 +5805,Stephanie Johnson,ganderson@contreras.biz,2020-01-11,"{""language"": ""FR"", ""currency"": ""MXN""}",963.14,Gold,1 +5806,Shelly Thompson,dannyjackson@stanley.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",5926.75,Silver,1 +5807,Diana Sanders,kelly26@yahoo.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""USD""}",8002.57,Silver,0 +5808,Judy Powell MD,albert11@hotmail.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2929.79,Silver,1 +5809,Robert Steele,david43@zamora.org,2023-04-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1577.94,Silver,0 +5810,Steven Villarreal,telliott@miranda.com,2021-02-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9354.05,Silver,0 +5811,Linda Howard,kimberlyrasmussen@yahoo.com,2024-10-19,"{""language"": ""IT"", ""currency"": ""USD""}",794.16,Bronze,1 +5812,Amanda Rogers,gordonanderson@richardson.biz,2021-06-17,"{""language"": ""ES"", ""currency"": ""USD""}",7550.04,Bronze,0 +5813,Laura Smith,mendezjames@jones-parker.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""USD""}",9953.5,Silver,0 +5814,Edward Stanton,jimmyterry@hotmail.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2246.33,Silver,0 +5815,Joseph Rollins,monroeaaron@logan.com,2023-07-02,"{""language"": ""FR"", ""currency"": ""MXN""}",7472.95,Silver,1 +5816,Jerry Gutierrez,uherrera@yahoo.com,2020-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3386.22,Silver,0 +5817,Jeffrey Parker,cookyolanda@yahoo.com,2024-04-23,"{""language"": ""FR"", ""currency"": ""USD""}",8356.11,Gold,1 +5818,Tabitha Hernandez,phillipscarlos@gmail.com,2020-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",9014.18,Silver,1 +5819,Kellie Deleon,rachaelballard@gmail.com,2024-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",781.92,Gold,0 +5820,Mrs. Audrey Jarvis MD,perrycole@kennedy.com,2022-01-16,"{""language"": ""EN"", ""currency"": ""GBP""}",5776.86,Bronze,0 +5821,Travis Smith,fullerisaiah@gmail.com,2022-09-21,"{""language"": ""DE"", ""currency"": ""MXN""}",4390.21,Silver,1 +5822,Thomas Carey,mccannricardo@hotmail.com,2024-05-05,"{""language"": ""FR"", ""currency"": ""MXN""}",4736.33,Bronze,0 +5823,Jenna Garcia,lmayer@galloway.com,2022-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",4887.15,Bronze,0 +5824,Kimberly Lawrence,sandovalterri@oneal.com,2022-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2249.89,Bronze,0 +5825,Jenna Jacobs MD,sarah41@gmail.com,2023-05-20,"{""language"": ""FR"", ""currency"": ""MXN""}",5466.66,Bronze,0 +5826,Dr. Thomas Thomas MD,mcdanielannette@ray-thomas.com,2023-06-20,"{""language"": ""IT"", ""currency"": ""MXN""}",3030.22,Silver,0 +5827,David Castillo,mariah15@stevenson-ellis.com,2023-06-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3066.89,Bronze,1 +5828,Kimberly Cherry,jeremygibson@yahoo.com,2022-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",2127.06,Bronze,0 +5829,Randy Frost,jermainefrederick@bell.com,2020-10-25,"{""language"": ""FR"", ""currency"": ""USD""}",8507.83,Gold,1 +5830,Gloria Brown,zthomas@yahoo.com,2023-10-04,"{""language"": ""FR"", ""currency"": ""USD""}",2775.82,Silver,0 +5831,Monica Morgan,lbridges@hotmail.com,2021-11-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7790.24,Silver,0 +5832,Justin Wright,davischarles@cummings.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""EUR""}",6696.27,Silver,0 +5833,Jennifer Wright,davissamantha@yahoo.com,2023-09-04,"{""language"": ""IT"", ""currency"": ""USD""}",3451.2,Gold,1 +5834,Terri Williams,austingordon@fry-murray.org,2023-05-12,"{""language"": ""IT"", ""currency"": ""USD""}",3370.24,Gold,1 +5835,Danielle Powell,egibson@torres.com,2023-02-26,"{""language"": ""EN"", ""currency"": ""MXN""}",1151.85,Silver,0 +5836,Donna Long,benjamin77@gmail.com,2020-07-21,"{""language"": ""FR"", ""currency"": ""EUR""}",756.93,Gold,0 +5837,Karen Owens,powelljeanne@rivas.com,2023-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",1191.06,Silver,1 +5838,Brittany Hill,thomas49@hotmail.com,2022-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",7022.58,Bronze,1 +5839,Connie Winters,njackson@martin.com,2020-11-12,"{""language"": ""DE"", ""currency"": ""GBP""}",9248.12,Silver,0 +5840,Heather Fischer,christopher22@davis.com,2024-05-05,"{""language"": ""IT"", ""currency"": ""USD""}",360.02,Silver,0 +5841,Kevin Sutton,william41@garza.net,2020-02-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3476.16,Silver,0 +5842,Leah Miller,juliejackson@phillips.info,2021-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",4392.41,Silver,0 +5843,Sergio Rodriguez,nathanielwilliams@snyder.com,2023-04-21,"{""language"": ""FR"", ""currency"": ""GBP""}",6257.02,Bronze,1 +5844,Christopher Jones,cooktodd@willis.org,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",3813.15,Bronze,0 +5845,James Reynolds,xwoods@hotmail.com,2021-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1682.31,Silver,1 +5846,Michelle Bates,kimberlycooper@hotmail.com,2020-12-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3806.24,Silver,0 +5847,Shaun Roberts,dawnbush@ellis.com,2022-12-31,"{""language"": ""DE"", ""currency"": ""GBP""}",4664.42,Gold,0 +5848,Jonathan Hickman,wrightmaria@gmail.com,2021-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",5856.31,Bronze,0 +5849,Olivia Brown,jessica60@cole.com,2020-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",1305.35,Bronze,0 +5850,Jessica Long,pwelch@yahoo.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1523.66,Bronze,1 +5851,Daniel Rodriguez,adkinsnicole@wilson-warren.org,2020-11-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2461.14,Silver,0 +5852,Alexis Brown,contreraslaura@jones-fox.com,2023-10-17,"{""language"": ""ES"", ""currency"": ""USD""}",3628.74,Gold,0 +5853,Cameron Rios,jsanchez@turner-shaw.com,2020-06-25,"{""language"": ""ES"", ""currency"": ""USD""}",5061.04,Silver,1 +5854,Joseph Long,eschmidt@yahoo.com,2020-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",1731.2,Bronze,0 +5855,Brianna Santiago,taylordanielle@gmail.com,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",8726.13,Silver,0 +5856,Leah Bonilla,ellisanna@yahoo.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",974.45,Gold,1 +5857,William Brown,stephen92@spencer.com,2021-11-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8654.03,Silver,1 +5858,Kelsey Santiago,smithangela@brown.com,2022-05-04,"{""language"": ""IT"", ""currency"": ""CAD""}",4637.54,Gold,1 +5859,Sean Cooper,martinezmaria@yahoo.com,2021-10-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1407.1,Bronze,0 +5860,Tammy Hughes,zthompson@mcneil.info,2021-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7471.79,Bronze,1 +5861,Rachel Romero,skinnerangela@russell.net,2024-05-18,"{""language"": ""EN"", ""currency"": ""GBP""}",6452.7,Gold,0 +5862,Brett Johnson,ldunlap@hotmail.com,2020-06-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1829.25,Bronze,0 +5863,Courtney Carroll,tinamiller@robbins.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",369.14,Gold,0 +5864,Patrick Sutton,joshuahowe@white.com,2024-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",4970.25,Gold,0 +5865,Alyssa Smith,derekbass@gmail.com,2024-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",2380.42,Bronze,0 +5866,Joan Caldwell,krose@bishop.biz,2020-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",313.6,Bronze,1 +5867,Matthew Lopez,brian74@shaw.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""GBP""}",5564.8,Bronze,1 +5868,Erin Davis DDS,richardcunningham@gmail.com,2024-05-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7738.56,Silver,1 +5869,Jeffrey Holland,wallacedanielle@edwards.com,2020-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",9862.14,Gold,0 +5870,Charles Clark,stewarterik@miller-davis.org,2020-11-29,"{""language"": ""FR"", ""currency"": ""USD""}",2953.4,Silver,0 +5871,Mary Faulkner,fedwards@hotmail.com,2023-12-16,"{""language"": ""FR"", ""currency"": ""EUR""}",8363.33,Bronze,1 +5872,Jason Hernandez,henry27@calderon-steele.com,2024-08-05,"{""language"": ""ES"", ""currency"": ""EUR""}",302.91,Gold,1 +5873,Erica Smith,alejandradudley@yahoo.com,2021-06-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2474.32,Bronze,1 +5874,Pamela Bell,shannon78@baldwin-acosta.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9929.45,Gold,1 +5875,Courtney Miller,austin09@zimmerman-hawkins.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8490.86,Gold,0 +5876,Brian Green,xcarr@gmail.com,2023-08-03,"{""language"": ""FR"", ""currency"": ""CAD""}",4234.06,Bronze,0 +5877,Brittany Hardin,oblack@hotmail.com,2021-12-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5185.58,Bronze,1 +5878,Joanne Diaz,michaelcarlson@yahoo.com,2024-07-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3496.67,Silver,1 +5879,Robert Hill,christopherhernandez@nelson.com,2020-03-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2688.48,Silver,1 +5880,Maurice Moore,jasminedalton@hotmail.com,2020-06-15,"{""language"": ""EN"", ""currency"": ""MXN""}",4584.2,Gold,0 +5881,Timothy Hodges,wray@johnson-blackwell.net,2021-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",6808.35,Silver,0 +5882,Sarah Yang,brandon31@yahoo.com,2020-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",6133.94,Gold,0 +5883,Herbert York,tiffanyadams@gmail.com,2023-08-29,"{""language"": ""IT"", ""currency"": ""EUR""}",426.6,Bronze,0 +5884,James Wallace,melindabanks@hotmail.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""GBP""}",221.89,Bronze,0 +5885,Rebecca Moore,michael19@jones.net,2024-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",4829.29,Gold,0 +5886,Tyler Smith,darryledwards@castaneda-romero.com,2023-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",4075.86,Silver,0 +5887,Micheal Wagner,mary79@frost-myers.net,2024-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",5814.29,Silver,1 +5888,Jeremy Mcmillan,willie99@gmail.com,2024-01-10,"{""language"": ""FR"", ""currency"": ""MXN""}",111.87,Gold,0 +5889,Virginia Harris,wilsonfrank@lee-summers.info,2023-01-19,"{""language"": ""FR"", ""currency"": ""CAD""}",6079.1,Silver,1 +5890,Charles James,christineosborne@hotmail.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""USD""}",4641.02,Bronze,1 +5891,Wendy Reese,jonathan88@jefferson.com,2020-03-09,"{""language"": ""FR"", ""currency"": ""EUR""}",9770.74,Silver,0 +5892,Katrina Tanner,jose50@gmail.com,2023-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",6132.78,Gold,0 +5893,Tammy Fisher,loriklein@hotmail.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",2274.86,Bronze,0 +5894,Andrea Smith,abradley@yahoo.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",8531.91,Bronze,0 +5895,Jonathan Crawford,zphillips@gmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8907.59,Silver,1 +5896,Carrie Reid,imoreno@hotmail.com,2024-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",6665.84,Gold,0 +5897,James Owen,rortiz@hotmail.com,2023-08-10,"{""language"": ""FR"", ""currency"": ""USD""}",6919.09,Gold,1 +5898,Victor Dickson,cmays@gmail.com,2024-05-10,"{""language"": ""EN"", ""currency"": ""GBP""}",2921.1,Bronze,1 +5899,Angelica Edwards,deanvanessa@yahoo.com,2021-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",8936.53,Bronze,0 +5900,Wendy Taylor,thomasjennifer@simmons.org,2020-02-01,"{""language"": ""DE"", ""currency"": ""USD""}",3501.76,Bronze,1 +5901,Jeffrey Ruiz,dhall@hotmail.com,2022-12-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3649.73,Bronze,1 +5902,Christopher Flynn,kimrodney@yahoo.com,2020-07-05,"{""language"": ""IT"", ""currency"": ""USD""}",2094.68,Gold,0 +5903,John Russell,dreed@mccullough-rollins.net,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",9343.51,Bronze,1 +5904,Michael Sullivan,flopez@thomas.com,2024-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4625.9,Bronze,1 +5905,Daniel Hernandez,jennifergonzalez@yahoo.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",6658.38,Gold,0 +5906,Jacqueline Cunningham,hudsonandrew@vincent-mendez.biz,2023-02-02,"{""language"": ""IT"", ""currency"": ""USD""}",9891.91,Gold,1 +5907,Vanessa Phelps,ostevens@gmail.com,2020-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",3909.95,Gold,0 +5908,Madison Robinson,bobby21@ingram.com,2021-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",8670.67,Gold,0 +5909,Kristen Meyers,lisa75@johnson-douglas.com,2022-01-04,"{""language"": ""DE"", ""currency"": ""EUR""}",8709.21,Silver,0 +5910,Jennifer Kirby,pamela78@gmail.com,2020-02-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5992.1,Bronze,0 +5911,Nicholas Ramirez,uwhitney@flores.com,2023-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2469.31,Bronze,1 +5912,Jesse White,audrey80@walker-thompson.info,2021-02-26,"{""language"": ""FR"", ""currency"": ""GBP""}",1017.52,Bronze,1 +5913,Alex Ayers,cookmaurice@yahoo.com,2023-06-01,"{""language"": ""FR"", ""currency"": ""USD""}",9060.59,Gold,0 +5914,Lauren Parker MD,dstewart@hotmail.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",4632.9,Silver,1 +5915,Megan Melendez,michellemurphy@hotmail.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4885.59,Gold,0 +5916,Rebecca Huang,burtonmichael@hotmail.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""GBP""}",7358.47,Silver,1 +5917,Billy Sutton,amandakim@hotmail.com,2022-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",8104.45,Bronze,1 +5918,Linda Williams,esmith@webster.com,2024-09-06,"{""language"": ""IT"", ""currency"": ""EUR""}",5855.23,Silver,0 +5919,Abigail Reese,edward01@cross-cummings.com,2022-10-11,"{""language"": ""DE"", ""currency"": ""MXN""}",8527.8,Silver,0 +5920,Jessica Smith,robertpeterson@gmail.com,2021-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7710.21,Silver,0 +5921,Kyle Schmidt,shellyhunter@reyes.com,2022-04-03,"{""language"": ""FR"", ""currency"": ""MXN""}",8192.33,Gold,1 +5922,Adam Ellis,vreynolds@allison.biz,2021-11-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3069.14,Silver,1 +5923,Brian Blackwell,brooke17@yahoo.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",6964.62,Silver,0 +5924,Matthew Jones,collinscarol@poole-medina.net,2022-02-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5521.03,Silver,0 +5925,Kurt Stephens,agregory@yahoo.com,2021-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",7294.43,Silver,0 +5926,Angela Rhodes,jking@gmail.com,2020-03-23,"{""language"": ""DE"", ""currency"": ""MXN""}",1993.54,Bronze,0 +5927,Dr. Hannah Herrera MD,elizabeth61@hotmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8830.4,Bronze,1 +5928,Henry Lee,meredithtorres@johnson.com,2020-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",595.69,Gold,0 +5929,Mrs. Nicole Sanchez,heather48@anderson.net,2020-07-19,"{""language"": ""FR"", ""currency"": ""GBP""}",379.44,Bronze,1 +5930,Neil Evans,nicholas87@blake-cortez.biz,2024-02-25,"{""language"": ""IT"", ""currency"": ""USD""}",9483.91,Silver,1 +5931,Lance Bernard,hendersonmichael@wilcox-sandoval.com,2019-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1535.35,Silver,1 +5932,Ronald Cortez,jonesashley@gmail.com,2024-05-06,"{""language"": ""IT"", ""currency"": ""CAD""}",6615.25,Silver,0 +5933,Mrs. Melissa Clark,laurie71@yahoo.com,2022-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",4107.51,Gold,1 +5934,Stephen Johnson,kim56@hotmail.com,2021-12-20,"{""language"": ""IT"", ""currency"": ""EUR""}",230.81,Bronze,0 +5935,Cathy French,cschmidt@gmail.com,2024-07-04,"{""language"": ""ES"", ""currency"": ""MXN""}",6978.48,Silver,0 +5936,Kimberly Shaw,christopher69@young.com,2020-04-14,"{""language"": ""DE"", ""currency"": ""MXN""}",302.1,Silver,0 +5937,Justin Lawson,padillajacob@ponce-dickerson.net,2023-02-23,"{""language"": ""ES"", ""currency"": ""CAD""}",498.72,Silver,1 +5938,Brett Lopez,davidchavez@hotmail.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""MXN""}",4381.77,Bronze,1 +5939,Michelle Martin,zbishop@guzman.com,2020-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9640.21,Silver,0 +5940,Patricia Henderson PhD,gonzalestroy@yahoo.com,2020-10-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6759.8,Silver,0 +5941,Destiny Bonilla,mpena@shelton.org,2022-12-21,"{""language"": ""DE"", ""currency"": ""USD""}",6028.65,Bronze,1 +5942,Anna Smith DDS,hwhite@yahoo.com,2023-07-12,"{""language"": ""IT"", ""currency"": ""USD""}",4664.71,Bronze,1 +5943,David Morris,karen05@ellis.com,2023-08-31,"{""language"": ""EN"", ""currency"": ""MXN""}",79.82,Bronze,0 +5944,Tiffany Kelly,andersonjudy@carney-boyer.org,2024-06-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1655.15,Silver,0 +5945,Dennis Johnson,tina04@yahoo.com,2020-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6131.37,Bronze,0 +5946,Amber Wilson,olam@nguyen.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6095.44,Bronze,1 +5947,Savannah Morris,oliviaturner@lee.com,2020-07-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6072.49,Bronze,0 +5948,Phillip Walker,lwalker@boyd.com,2020-06-19,"{""language"": ""FR"", ""currency"": ""MXN""}",2837.07,Silver,1 +5949,Angela Osborn,burnsrachel@hotmail.com,2022-06-21,"{""language"": ""DE"", ""currency"": ""EUR""}",2924.49,Gold,0 +5950,Amy Martinez,kentkyle@gmail.com,2024-06-27,"{""language"": ""FR"", ""currency"": ""GBP""}",3575.71,Silver,0 +5951,Cindy Rodriguez,juanwilson@edwards-herring.com,2024-05-10,"{""language"": ""ES"", ""currency"": ""CAD""}",3945.15,Gold,1 +5952,Maria Patrick,patriciahill@yahoo.com,2022-10-02,"{""language"": ""EN"", ""currency"": ""USD""}",7359.71,Gold,1 +5953,Emily Osborne,williamnavarro@yahoo.com,2020-03-15,"{""language"": ""EN"", ""currency"": ""MXN""}",1364.66,Gold,1 +5954,Russell Hubbard,jnelson@gmail.com,2023-08-04,"{""language"": ""DE"", ""currency"": ""USD""}",1506.66,Bronze,1 +5955,Denise Miller,gruiz@gmail.com,2020-09-30,"{""language"": ""ES"", ""currency"": ""MXN""}",7666.09,Gold,1 +5956,Matthew Oneill,brownmike@hotmail.com,2023-10-15,"{""language"": ""ES"", ""currency"": ""GBP""}",7607.64,Silver,1 +5957,Sean Garcia,kathybush@yahoo.com,2023-06-09,"{""language"": ""EN"", ""currency"": ""GBP""}",1566.33,Silver,1 +5958,Steven Willis,lovenatasha@hotmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7819.15,Bronze,1 +5959,Mackenzie Coleman,webermeredith@gmail.com,2023-03-10,"{""language"": ""IT"", ""currency"": ""CAD""}",9509.46,Gold,1 +5960,Kathryn Phillips,martineztrevor@hotmail.com,2023-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",3687.01,Gold,1 +5961,Jennifer Brown,ymartin@buchanan.biz,2023-11-13,"{""language"": ""ES"", ""currency"": ""MXN""}",5684.96,Bronze,1 +5962,Brian Howell,singhrhonda@gmail.com,2021-05-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6294.28,Silver,0 +5963,Meghan Russo MD,davidmahoney@yahoo.com,2020-02-26,"{""language"": ""ES"", ""currency"": ""USD""}",4432.34,Bronze,1 +5964,Mark Rogers,albert00@yahoo.com,2024-02-13,"{""language"": ""ES"", ""currency"": ""MXN""}",7010.35,Bronze,0 +5965,Steven Davis,thomas17@moran-jackson.com,2022-02-20,"{""language"": ""IT"", ""currency"": ""GBP""}",8376.37,Bronze,0 +5966,Edward Jackson,valeriejimenez@gmail.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""GBP""}",956.31,Bronze,0 +5967,Drew Waters,garrettritter@moore.com,2022-09-08,"{""language"": ""IT"", ""currency"": ""CAD""}",2607.21,Bronze,0 +5968,Kimberly Frazier,rossjill@potter-gross.com,2023-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",4793.34,Bronze,0 +5969,Dale Bell,oliviamitchell@steele-schwartz.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""USD""}",9978.17,Silver,1 +5970,Emily Rodriguez,cynthiabaldwin@yahoo.com,2022-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",2827.73,Bronze,0 +5971,Andrew Gomez,jjordan@yahoo.com,2021-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",3881.22,Gold,1 +5972,Deborah Gibson,matthewquinn@yahoo.com,2023-04-24,"{""language"": ""ES"", ""currency"": ""GBP""}",915.54,Gold,1 +5973,Jackson White,zparker@yahoo.com,2021-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5774.44,Gold,1 +5974,Michelle Hunter,taylormichael@gmail.com,2022-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",3834.2,Bronze,1 +5975,Aaron Faulkner,catherine62@wilson-lin.com,2024-10-06,"{""language"": ""FR"", ""currency"": ""EUR""}",5322.85,Silver,0 +5976,Aaron Gonzalez,myerssharon@yahoo.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",4271.27,Silver,1 +5977,George Hammond,rebeccabruce@hotmail.com,2022-02-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5251.16,Gold,1 +5978,Jeffery Bautista,joseph87@garcia.biz,2020-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",2297.33,Silver,0 +5979,Erik Baker,bsnow@martinez.com,2021-12-15,"{""language"": ""ES"", ""currency"": ""CAD""}",9029.64,Gold,1 +5980,Stephanie White,blake20@yahoo.com,2023-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4947.35,Bronze,0 +5981,James Garcia,halljeremy@hotmail.com,2024-12-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7484.03,Bronze,0 +5982,Lisa Jackson,jcoleman@gmail.com,2021-06-08,"{""language"": ""DE"", ""currency"": ""MXN""}",7746.38,Bronze,1 +5983,Andrea Pennington,rogerscorey@martinez.com,2020-03-01,"{""language"": ""DE"", ""currency"": ""GBP""}",6971.21,Gold,0 +5984,Christina Johnson,nicolechapman@scott.info,2023-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",3095.5,Gold,0 +5985,Maria Conner,xholloway@edwards.com,2020-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",5035.19,Gold,0 +5986,Amber Dalton,davidlittle@hotmail.com,2021-06-14,"{""language"": ""EN"", ""currency"": ""GBP""}",5693.98,Silver,0 +5987,John Ryan,christina15@huerta.info,2020-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",5606.28,Bronze,0 +5988,Michael Hicks,chad68@hotmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",2735.01,Bronze,1 +5989,Samantha Anderson,destinybarrera@hotmail.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6106.74,Silver,0 +5990,William Ortiz,osmith@vasquez-patterson.org,2022-07-27,"{""language"": ""DE"", ""currency"": ""EUR""}",2368.09,Silver,0 +5991,Stephanie Gonzalez,monroedavid@atkinson-king.com,2022-11-15,"{""language"": ""EN"", ""currency"": ""USD""}",9011.73,Silver,0 +5992,Christopher Williams,phendrix@gmail.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3889.66,Bronze,1 +5993,Luis Fuentes,rrussell@gmail.com,2024-09-21,"{""language"": ""DE"", ""currency"": ""GBP""}",3330.37,Bronze,0 +5994,Katherine Archer,lwilliamson@yahoo.com,2022-09-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1604.03,Bronze,0 +5995,Jennifer Murphy,justin42@rivera.com,2024-07-16,"{""language"": ""DE"", ""currency"": ""USD""}",761.24,Bronze,0 +5996,Joseph Vega,blake63@walsh.org,2021-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2850.68,Silver,0 +5997,Joseph Alvarado,moorekevin@beck.com,2020-06-22,"{""language"": ""ES"", ""currency"": ""MXN""}",3414.8,Silver,0 +5998,Elizabeth Noble,andrewconway@gmail.com,2024-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",6157.41,Bronze,1 +5999,Dakota Lynn,hoovertricia@yahoo.com,2021-09-04,"{""language"": ""DE"", ""currency"": ""EUR""}",2970.38,Gold,1 +6000,Guy Jackson,tmccullough@gmail.com,2022-09-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1231.38,Gold,0 +6001,Paul Black,oduke@andrade.com,2020-03-22,"{""language"": ""ES"", ""currency"": ""USD""}",8730.55,Gold,1 +6002,Samantha Murphy,awalker@hotmail.com,2020-02-17,"{""language"": ""ES"", ""currency"": ""CAD""}",1380.36,Gold,0 +6003,Amy Williams,beltrantabitha@hotmail.com,2024-01-15,"{""language"": ""EN"", ""currency"": ""GBP""}",7837.53,Gold,1 +6004,Kevin Anderson,jason16@hall-thompson.com,2020-10-18,"{""language"": ""FR"", ""currency"": ""GBP""}",8718.44,Silver,0 +6005,Gabrielle Stevens,dylanyang@yahoo.com,2023-05-29,"{""language"": ""ES"", ""currency"": ""USD""}",5699.75,Bronze,1 +6006,Donald Gutierrez,victoriawinters@jordan-fry.biz,2024-01-30,"{""language"": ""DE"", ""currency"": ""USD""}",3143.61,Silver,1 +6007,Joseph Hale,qescobar@conley.com,2023-02-28,"{""language"": ""DE"", ""currency"": ""GBP""}",3412.38,Bronze,0 +6008,Amanda Johnson,lori17@franco-williams.com,2024-08-24,"{""language"": ""EN"", ""currency"": ""USD""}",7791.83,Gold,0 +6009,Justin Harrison,jessicablanchard@parker.com,2021-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",651.77,Bronze,1 +6010,Kathryn Miller,kristen60@sanchez.com,2023-12-11,"{""language"": ""EN"", ""currency"": ""USD""}",9535.2,Silver,1 +6011,Duane Bowman,mariahsmith@hotmail.com,2024-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2671.32,Bronze,1 +6012,Anne Krause,grantwendy@nguyen-freeman.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""EUR""}",2851.42,Silver,0 +6013,Michelle Sanchez,donaldsonjames@hall.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1835.01,Gold,0 +6014,Tammy West,howardkendra@williams.info,2022-08-15,"{""language"": ""ES"", ""currency"": ""GBP""}",6761.81,Gold,0 +6015,Sarah Lee,autumnbrown@parker.com,2022-12-31,"{""language"": ""IT"", ""currency"": ""CAD""}",514.29,Gold,0 +6016,Patrick Evans,donald72@adams-scott.org,2022-01-10,"{""language"": ""DE"", ""currency"": ""MXN""}",1013.25,Bronze,0 +6017,Dr. Christopher Turner,valeriemoore@hotmail.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9406.06,Bronze,1 +6018,Angela Mitchell,tstone@cummings.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""USD""}",8464.82,Bronze,0 +6019,Suzanne Gates,howardperry@gmail.com,2023-04-12,"{""language"": ""FR"", ""currency"": ""MXN""}",526.32,Silver,1 +6020,Martin Williams,grossdiane@yahoo.com,2023-06-11,"{""language"": ""IT"", ""currency"": ""EUR""}",8263.13,Gold,0 +6021,John Cox,nshaw@mcclure.com,2024-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",4026.75,Silver,1 +6022,Diana Shaw,denisemoreno@walters.org,2021-08-25,"{""language"": ""DE"", ""currency"": ""CAD""}",3558.59,Gold,0 +6023,Jeffrey Nash,dconway@yahoo.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",5233.49,Silver,0 +6024,Danielle Thompson,johnallen@gomez.com,2021-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4794.47,Gold,1 +6025,Kyle Daniel,russellreilly@hotmail.com,2021-03-20,"{""language"": ""DE"", ""currency"": ""EUR""}",1501.01,Gold,0 +6026,Kimberly Torres,joel77@hotmail.com,2024-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6439.65,Gold,1 +6027,Tanner Wagner,tcrawford@vasquez-patterson.info,2024-01-12,"{""language"": ""EN"", ""currency"": ""GBP""}",4087.98,Bronze,1 +6028,Cindy Gray,ortegaomar@gmail.com,2024-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3474.08,Gold,0 +6029,Thomas Gibson,dustinrodriguez@hotmail.com,2023-07-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7495.66,Bronze,0 +6030,Timothy Armstrong,carol72@yahoo.com,2021-12-24,"{""language"": ""DE"", ""currency"": ""GBP""}",1399.08,Silver,0 +6031,Richard Martinez,masseybethany@barker.com,2021-08-16,"{""language"": ""FR"", ""currency"": ""USD""}",9896.82,Silver,1 +6032,Jacob Robinson,derekowens@gmail.com,2022-02-17,"{""language"": ""FR"", ""currency"": ""USD""}",3205.23,Bronze,1 +6033,Kenneth Manning,nancy18@franco.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6859.31,Bronze,1 +6034,Mr. Steven Thomas,brandon50@whitehead.net,2020-02-16,"{""language"": ""FR"", ""currency"": ""MXN""}",6126.76,Bronze,1 +6035,Nicole Cooper,rrussell@obrien-mendez.com,2023-02-22,"{""language"": ""FR"", ""currency"": ""EUR""}",5017.74,Gold,0 +6036,Michael Simmons,richard03@clark-anderson.biz,2022-09-16,"{""language"": ""EN"", ""currency"": ""USD""}",119.06,Gold,0 +6037,Kenneth Smith,emilygeorge@hotmail.com,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1366.18,Silver,1 +6038,Felicia Daniels,angelaphillips@yahoo.com,2022-11-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3851.06,Silver,0 +6039,Yolanda Rose,campbellemily@schroeder.com,2023-01-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8692.57,Gold,0 +6040,Jennifer Williams,jacksonharris@yahoo.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4140.05,Gold,1 +6041,Victoria White,xsexton@johnson.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3622.21,Bronze,0 +6042,Seth Gomez,vdelgado@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""MXN""}",7551.34,Bronze,0 +6043,Gregory Potter,welchdeborah@kelly.com,2021-11-04,"{""language"": ""IT"", ""currency"": ""MXN""}",5862.11,Bronze,1 +6044,Maria Lewis,jimenezshannon@lopez.org,2022-11-07,"{""language"": ""IT"", ""currency"": ""CAD""}",9257.7,Silver,1 +6045,Jill Calderon,james19@yahoo.com,2021-04-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2048.83,Silver,1 +6046,Mrs. Melanie Hardy,ryan58@daugherty.com,2021-04-11,"{""language"": ""EN"", ""currency"": ""USD""}",8326.05,Bronze,0 +6047,Dawn Martin,sarah55@jackson.com,2022-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.52,Gold,0 +6048,Felicia Walker,vbrown@chambers.com,2022-08-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9990.92,Silver,0 +6049,Jeffrey Anderson,rachel03@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7041.47,Silver,1 +6050,Sabrina Rivera,dustin76@gmail.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9813.45,Gold,0 +6051,Jason Cohen,monica47@gmail.com,2023-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",3536.58,Gold,1 +6052,Elizabeth Suarez,hamiltonwalter@robinson-west.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2202.67,Bronze,0 +6053,Elijah Craig,tammymoreno@hotmail.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",5814.63,Bronze,1 +6054,Maxwell James,matthewbaker@buckley.com,2024-11-26,"{""language"": ""FR"", ""currency"": ""EUR""}",602.69,Bronze,0 +6055,Michelle Hansen,simonchristine@wise-graves.info,2022-02-25,"{""language"": ""ES"", ""currency"": ""MXN""}",6261.01,Silver,1 +6056,Tracy Moyer,vmccoy@pugh-garza.biz,2023-03-23,"{""language"": ""IT"", ""currency"": ""CAD""}",3503.55,Silver,1 +6057,Jessica Cox,troy79@hays.com,2021-03-20,"{""language"": ""FR"", ""currency"": ""USD""}",6517.9,Gold,1 +6058,Gina Carlson,baileynicholas@garza-rogers.com,2022-09-24,"{""language"": ""ES"", ""currency"": ""GBP""}",4598.1,Gold,1 +6059,Amy Brown,miguel57@gmail.com,2021-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",355.76,Bronze,0 +6060,Carmen Mann,rivasalexis@yahoo.com,2021-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",1622.35,Gold,1 +6061,Wendy King,wlawson@yahoo.com,2021-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1896.45,Gold,0 +6062,Justin Bryant,kaylascott@hotmail.com,2023-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1336.09,Bronze,0 +6063,Susan Smith,george93@farrell-ellis.info,2019-12-24,"{""language"": ""IT"", ""currency"": ""USD""}",7433.3,Bronze,1 +6064,April Lindsey,williamssandra@bean.net,2021-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7118.23,Bronze,0 +6065,Eric Young,ashlee95@gmail.com,2021-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",9036.07,Gold,0 +6066,Kendra Meza,iwang@holt-riley.com,2024-10-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8531.87,Gold,0 +6067,Nicholas Garcia MD,esherman@yahoo.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4673.52,Bronze,0 +6068,Ashley Kim,valerie74@roberts.org,2022-12-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8905.63,Gold,1 +6069,Alisha Jones,kelsey04@alvarado-morrow.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""GBP""}",4306.18,Gold,1 +6070,Todd Jones,john30@flores.org,2024-02-10,"{""language"": ""IT"", ""currency"": ""MXN""}",3943.51,Bronze,0 +6071,Kenneth Francis,williamsontroy@gmail.com,2021-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",5976.42,Silver,0 +6072,Andrew Shields,jamesrodriguez@sullivan-clark.com,2023-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",9909.5,Bronze,0 +6073,Shawn Holt,matthew61@webb.biz,2020-08-19,"{""language"": ""DE"", ""currency"": ""USD""}",1252.82,Silver,0 +6074,Joyce Miller,adrienne81@hotmail.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7307.22,Silver,1 +6075,Javier Newman,benjaminhull@butler.net,2022-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1747.44,Bronze,0 +6076,Jay Mata,melissa28@maxwell.com,2024-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",2927.71,Silver,0 +6077,Katie White,kimberly49@hughes-cooper.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",980.24,Gold,1 +6078,Ellen Gomez,paulvega@yahoo.com,2020-03-18,"{""language"": ""ES"", ""currency"": ""MXN""}",5511.08,Bronze,1 +6079,John Brady,donna63@yahoo.com,2022-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",3460.84,Bronze,0 +6080,Andrea Meyers,anita53@yahoo.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4491.85,Silver,1 +6081,Donna Lawrence,oriddle@martinez.info,2024-08-08,"{""language"": ""FR"", ""currency"": ""EUR""}",755.91,Gold,0 +6082,Michael Stein,timothywolfe@howard.com,2022-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",7222.66,Gold,1 +6083,Taylor Donovan,barry56@morales.biz,2021-10-06,"{""language"": ""FR"", ""currency"": ""MXN""}",6892.6,Bronze,0 +6084,Kathy Williams,westaaron@yahoo.com,2024-09-23,"{""language"": ""FR"", ""currency"": ""USD""}",1646.46,Silver,0 +6085,Michelle Robinson,cassandralambert@hotmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""CAD""}",3030.69,Bronze,0 +6086,Jeffrey Hayes,justinnicholson@morgan-hall.com,2021-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",5941.88,Bronze,0 +6087,Jose Ford,ngibson@yahoo.com,2020-05-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7948.94,Silver,0 +6088,Jeffery Ross,aperez@chandler-woods.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3815.64,Bronze,1 +6089,Noah Edwards,michaeltaylor@gmail.com,2024-06-15,"{""language"": ""DE"", ""currency"": ""CAD""}",8877.58,Bronze,1 +6090,Penny Dunn,ellistodd@cook.org,2024-01-13,"{""language"": ""ES"", ""currency"": ""CAD""}",1499.78,Gold,0 +6091,Sarah Clark,fray@yahoo.com,2022-12-10,"{""language"": ""EN"", ""currency"": ""GBP""}",9630.02,Silver,0 +6092,Christina Snyder,taylortodd@yahoo.com,2023-12-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3450.57,Gold,1 +6093,Travis Hawkins,gperkins@hotmail.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2593.85,Silver,0 +6094,Kimberly Collins,adamsalicia@hotmail.com,2022-08-22,"{""language"": ""FR"", ""currency"": ""GBP""}",8927.65,Silver,1 +6095,Monica Wilson,hweaver@howard-mcdonald.info,2021-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3164.75,Silver,0 +6096,Darrell Ray,dylanpowers@gmail.com,2024-05-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1295.92,Bronze,0 +6097,Dawn Greene,ramosroy@murphy.net,2020-07-18,"{""language"": ""ES"", ""currency"": ""USD""}",8703.1,Silver,0 +6098,Jose Thompson,jscott@gmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",1292.66,Gold,1 +6099,Amber Carroll,danielletaylor@gmail.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",1382.43,Bronze,1 +6100,Christine Arroyo,njones@yahoo.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",6596.66,Bronze,1 +6101,Diamond Calderon,xperry@gmail.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""CAD""}",502.71,Gold,1 +6102,Alan Gutierrez,cortezdavid@allen-sloan.net,2022-10-23,"{""language"": ""FR"", ""currency"": ""USD""}",7531.57,Silver,0 +6103,Kirsten Rivera,johnbrown@hubbard.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",4593.7,Gold,0 +6104,Christopher Lewis,matthew19@aguilar.com,2024-06-23,"{""language"": ""IT"", ""currency"": ""MXN""}",9366.99,Bronze,1 +6105,Jacob Mcguire,scottlindsey@gmail.com,2022-02-17,"{""language"": ""ES"", ""currency"": ""GBP""}",6054.57,Silver,1 +6106,Madeline Smith,gonzalezlisa@hernandez-mullins.info,2023-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",9356.84,Bronze,1 +6107,Karen Humphrey,thomasbriggs@ward.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""CAD""}",6910.67,Bronze,0 +6108,Carrie Dorsey,blackwellluke@gmail.com,2022-04-07,"{""language"": ""EN"", ""currency"": ""USD""}",4924.1,Bronze,1 +6109,Ryan Rivera,pottererik@miranda.com,2024-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",871.63,Gold,0 +6110,David Williams,jamesstewart@wright.com,2020-05-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9295.02,Bronze,1 +6111,Tyrone Miller,collinsmelissa@obrien.com,2020-12-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9790.99,Silver,0 +6112,Robin Booker,lisa66@vega.com,2021-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",8426.87,Gold,0 +6113,Jason Kim,brussell@yahoo.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""EUR""}",8397.57,Gold,1 +6114,Philip King,daviladennis@gonzalez-lopez.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8046.18,Gold,0 +6115,Margaret Shaw,velezstephanie@gmail.com,2021-08-11,"{""language"": ""ES"", ""currency"": ""GBP""}",755.49,Bronze,0 +6116,Jonathan Cook,arnoldmichael@gmail.com,2023-03-29,"{""language"": ""ES"", ""currency"": ""MXN""}",8526.92,Silver,0 +6117,Morgan Hurley,fosterscott@gonzalez-anderson.com,2022-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6304.38,Silver,1 +6118,Kayla Tran,hancockandrew@hotmail.com,2024-01-18,"{""language"": ""ES"", ""currency"": ""GBP""}",5797.12,Silver,0 +6119,Gregg Mckinney,christopherrose@hotmail.com,2020-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",3259.08,Silver,1 +6120,Michael Grant,davidmclaughlin@hunter.com,2022-05-14,"{""language"": ""IT"", ""currency"": ""CAD""}",8965.22,Bronze,0 +6121,Diana Gallegos,heather69@gmail.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""USD""}",8412.86,Silver,0 +6122,Gina Carr,hillmary@fischer.net,2021-09-08,"{""language"": ""ES"", ""currency"": ""USD""}",2750.69,Silver,1 +6123,Bonnie Freeman,lmoran@simon-curtis.net,2024-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",6234.24,Silver,1 +6124,Frances Leonard,mcclurebradley@hotmail.com,2024-02-08,"{""language"": ""DE"", ""currency"": ""USD""}",9541.26,Bronze,0 +6125,Michael Sanchez,jessejones@yahoo.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""CAD""}",1748.32,Silver,0 +6126,Matthew Brown,lesliejones@hawkins.com,2024-09-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5452.37,Bronze,0 +6127,Raymond Wiggins,heatherstevens@hotmail.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""MXN""}",3574.71,Bronze,1 +6128,Jacqueline Williamson,lynn05@morgan.info,2024-11-08,"{""language"": ""EN"", ""currency"": ""MXN""}",3612.26,Bronze,1 +6129,Rachel Baker,samantha86@flores.com,2024-08-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8401.4,Gold,0 +6130,Anthony Carter,victoriabaxter@yahoo.com,2020-04-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6449.2,Gold,1 +6131,Susan Armstrong,brittneymorris@bates.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""EUR""}",3719.02,Silver,1 +6132,David Delgado,robertpetersen@yahoo.com,2024-08-12,"{""language"": ""ES"", ""currency"": ""USD""}",9314.73,Gold,0 +6133,Ariana Rocha,rmatthews@yahoo.com,2022-09-13,"{""language"": ""DE"", ""currency"": ""MXN""}",4911.8,Silver,0 +6134,Dennis Shaw,amberbrown@gmail.com,2021-05-04,"{""language"": ""FR"", ""currency"": ""GBP""}",2629.1,Gold,1 +6135,Paul Olson,mramos@little.com,2020-01-13,"{""language"": ""IT"", ""currency"": ""EUR""}",497.48,Bronze,1 +6136,Sue Lucas,susanolson@yahoo.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",993.82,Silver,0 +6137,Tara Perez,larryshaffer@perez.biz,2022-06-17,"{""language"": ""EN"", ""currency"": ""MXN""}",9417.98,Gold,0 +6138,Lisa Watson,edward34@gmail.com,2022-05-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6716.91,Gold,0 +6139,Dawn Hale,aweaver@phelps.com,2021-04-05,"{""language"": ""DE"", ""currency"": ""MXN""}",1245.03,Bronze,1 +6140,Ashley Pineda,ballardlaura@baker.com,2023-02-21,"{""language"": ""IT"", ""currency"": ""USD""}",5863.99,Silver,0 +6141,Mary House,vyang@hotmail.com,2022-07-02,"{""language"": ""ES"", ""currency"": ""GBP""}",7351.29,Silver,1 +6142,Donald Stein,kgomez@perry.biz,2020-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3971.6,Bronze,0 +6143,Jerome Moore,jose77@gmail.com,2023-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5448.85,Gold,0 +6144,Kimberly Davidson,tyler44@gmail.com,2023-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",1067.47,Gold,0 +6145,Sean Sawyer,brettwatson@yahoo.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""EUR""}",4980.89,Bronze,1 +6146,William Paul,nathanlucas@gmail.com,2024-01-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6853.16,Bronze,0 +6147,Rachel Harrison,chrisgomez@robinson-bradford.com,2022-06-01,"{""language"": ""ES"", ""currency"": ""CAD""}",8052.75,Silver,0 +6148,Emily Todd,denise75@gmail.com,2021-10-10,"{""language"": ""DE"", ""currency"": ""USD""}",2863.6,Gold,0 +6149,Mark King,kevinrogers@yahoo.com,2021-01-04,"{""language"": ""EN"", ""currency"": ""CAD""}",9458.4,Silver,0 +6150,Jeffrey Perkins,kevin97@hotmail.com,2023-08-28,"{""language"": ""EN"", ""currency"": ""GBP""}",9949.01,Gold,1 +6151,Beth Brown,gallegosann@hotmail.com,2024-04-04,"{""language"": ""EN"", ""currency"": ""USD""}",5546.05,Silver,1 +6152,Ebony Diaz,sharonmoody@hotmail.com,2023-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9945.93,Gold,0 +6153,Dana Martin,brookskristina@bradley.info,2023-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2504.76,Bronze,1 +6154,Kimberly Flores,michaelmiller@yahoo.com,2022-03-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3509.63,Silver,0 +6155,Penny Jones,ramosjeremy@yahoo.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""GBP""}",7711.05,Silver,0 +6156,Jerry Gilbert,ghill@gmail.com,2022-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",8799.99,Silver,0 +6157,William Osborne,michael54@yahoo.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""MXN""}",6764.98,Gold,0 +6158,Bradley Baker,hhampton@yahoo.com,2023-10-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4581.64,Bronze,1 +6159,Emily Williams,gibsonangela@yahoo.com,2023-10-24,"{""language"": ""DE"", ""currency"": ""USD""}",5359.03,Gold,0 +6160,Keith Landry,andrew03@yahoo.com,2024-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",535.2,Bronze,0 +6161,Terry Becker,browncynthia@hotmail.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""USD""}",1933.43,Bronze,0 +6162,James Chavez,tomsimmons@gmail.com,2020-01-28,"{""language"": ""FR"", ""currency"": ""MXN""}",4147.13,Gold,0 +6163,Jessica Chung,fergusonrebecca@yahoo.com,2024-01-06,"{""language"": ""FR"", ""currency"": ""EUR""}",6179.48,Silver,1 +6164,Karen Christian,fhenry@yahoo.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3876.51,Gold,0 +6165,Cindy Robinson,jharrison@yahoo.com,2022-07-14,"{""language"": ""FR"", ""currency"": ""CAD""}",7074.25,Gold,0 +6166,Jenna Espinoza,michellejohnson@pacheco-moore.com,2021-07-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6486.09,Silver,0 +6167,Shawn Blevins,johnsondonald@hotmail.com,2022-02-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5285.92,Gold,0 +6168,Alexis Stanley,nerickson@gmail.com,2023-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6043.68,Bronze,1 +6169,Jason Horne,bfitzgerald@gmail.com,2021-05-06,"{""language"": ""IT"", ""currency"": ""EUR""}",8273.66,Bronze,1 +6170,Michael Miller,kaylamcgee@hernandez-williams.com,2021-12-17,"{""language"": ""IT"", ""currency"": ""CAD""}",7279.11,Bronze,0 +6171,Sharon Thomas,amy25@gmail.com,2023-05-03,"{""language"": ""ES"", ""currency"": ""CAD""}",8541.13,Gold,0 +6172,Kathleen Davis,martinezmatthew@willis.info,2024-03-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6824.35,Gold,1 +6173,Ebony Wilson,manningemily@ellison-harrison.info,2020-08-06,"{""language"": ""DE"", ""currency"": ""EUR""}",2099.47,Bronze,1 +6174,Emily Owen,brookssonya@gonzalez-johnson.com,2022-09-23,"{""language"": ""DE"", ""currency"": ""CAD""}",1775.93,Gold,1 +6175,Tricia King,nhart@beck-johnson.com,2023-06-02,"{""language"": ""DE"", ""currency"": ""CAD""}",5614.27,Gold,1 +6176,Larry Bryant,turnerjoel@hotmail.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",804.94,Gold,0 +6177,Alexander Wolfe,megan89@alvarez.com,2024-07-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2264.31,Gold,1 +6178,Darren Carr,fvargas@gmail.com,2021-07-12,"{""language"": ""FR"", ""currency"": ""MXN""}",504.61,Silver,0 +6179,Sharon Rogers,ismall@hotmail.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""CAD""}",7230.51,Silver,1 +6180,Luis Carter,christopherpeterson@yahoo.com,2024-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",6021.05,Bronze,0 +6181,Michelle Anderson,jblair@gmail.com,2021-07-26,"{""language"": ""IT"", ""currency"": ""EUR""}",1816.73,Gold,0 +6182,John Miller,riverabrandy@mccarthy-hall.com,2024-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3222.11,Bronze,0 +6183,Sheri Martin,obrienrichard@mcintosh.com,2020-11-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3331.35,Gold,0 +6184,Mark Collins,sandracastaneda@hotmail.com,2022-08-09,"{""language"": ""DE"", ""currency"": ""MXN""}",9973.81,Silver,1 +6185,Margaret King,erica64@valenzuela.info,2023-02-26,"{""language"": ""IT"", ""currency"": ""USD""}",8905.78,Bronze,1 +6186,Chad Gonzalez,ucampbell@moore.com,2021-12-12,"{""language"": ""ES"", ""currency"": ""USD""}",8465.28,Silver,1 +6187,Calvin Gomez,butlerfrank@gmail.com,2020-02-13,"{""language"": ""FR"", ""currency"": ""USD""}",6782.91,Bronze,0 +6188,Scott Riley,kweiss@gmail.com,2023-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",8604.42,Bronze,1 +6189,Pamela Wilson,amysmith@johnson.biz,2021-11-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6670.14,Silver,1 +6190,Darrell Martinez,jasondrake@taylor.com,2021-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",361.94,Silver,0 +6191,Tyler Harris,zlozano@long.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""MXN""}",9495.78,Bronze,1 +6192,Briana Moore,kinglisa@gmail.com,2021-01-16,"{""language"": ""IT"", ""currency"": ""EUR""}",8409.71,Silver,1 +6193,William Lee,yroman@hotmail.com,2021-02-24,"{""language"": ""FR"", ""currency"": ""EUR""}",552.27,Gold,1 +6194,Kathleen Lee,susanhughes@williams-clark.net,2024-05-05,"{""language"": ""DE"", ""currency"": ""MXN""}",8549.31,Gold,1 +6195,Amber Ramirez,eric42@hotmail.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""USD""}",4488.16,Bronze,1 +6196,Angela Watson,andrew14@ball-lowery.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4441.33,Gold,0 +6197,Robert Salazar,coxvanessa@gmail.com,2024-05-29,"{""language"": ""IT"", ""currency"": ""EUR""}",3377.8,Bronze,0 +6198,Gloria Smith,anthony64@flores.com,2022-03-21,"{""language"": ""FR"", ""currency"": ""USD""}",7312.93,Gold,0 +6199,James Mcdaniel,jessica54@valenzuela.com,2020-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",7018.06,Silver,1 +6200,Wendy Gibson,morrisjessica@merritt-shepherd.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6478.83,Gold,1 +6201,Michelle Molina,rosstony@yahoo.com,2020-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",4982.77,Gold,0 +6202,Anita Richardson,nathan98@jackson.com,2022-04-12,"{""language"": ""FR"", ""currency"": ""USD""}",612.67,Silver,1 +6203,Melinda Lopez,summersbrianna@kane-kennedy.com,2022-11-04,"{""language"": ""DE"", ""currency"": ""USD""}",6747.24,Bronze,0 +6204,Dr. Christopher Haynes,lisa33@jones.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""GBP""}",1776.06,Bronze,1 +6205,Fred Elliott,kwatkins@maxwell.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",2543.33,Gold,1 +6206,Jimmy Rodriguez,robert95@robinson-colon.biz,2021-08-19,"{""language"": ""ES"", ""currency"": ""EUR""}",6782.68,Gold,0 +6207,Vincent Lynch,sarah46@yahoo.com,2023-05-18,"{""language"": ""FR"", ""currency"": ""GBP""}",7765.2,Silver,1 +6208,Todd Harvey,hudsontodd@holmes-lopez.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",6271.16,Bronze,1 +6209,Laura Young,francisco43@turner-moore.info,2023-12-25,"{""language"": ""DE"", ""currency"": ""MXN""}",7805.31,Gold,1 +6210,Julia Manning,benjamin29@olson.com,2021-12-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2210.16,Bronze,0 +6211,Haley Long,bradley15@nelson.com,2020-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",796.62,Gold,0 +6212,Francisco Harris,blairmelissa@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",9310.71,Gold,0 +6213,Tammy Smith,gregory69@gmail.com,2020-12-18,"{""language"": ""FR"", ""currency"": ""GBP""}",6712.73,Silver,1 +6214,Ashley Green,jessica61@bowers.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""CAD""}",7777.54,Bronze,0 +6215,Charles Morales,abentley@andrews-davis.biz,2022-10-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8153.07,Gold,1 +6216,Wanda Evans,jamesabbott@gmail.com,2022-05-27,"{""language"": ""ES"", ""currency"": ""MXN""}",6234.37,Bronze,0 +6217,Jeffery Taylor,andersonalicia@scott-phillips.com,2022-01-07,"{""language"": ""ES"", ""currency"": ""EUR""}",4380.77,Silver,1 +6218,Christopher Woodard,fletcherchristina@johnson.org,2020-12-23,"{""language"": ""IT"", ""currency"": ""EUR""}",8693.17,Gold,0 +6219,Brandy Bernard,vhopkins@yahoo.com,2020-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3961.04,Silver,0 +6220,Gregory Thomas,robinsondonna@mckenzie.biz,2021-09-06,"{""language"": ""ES"", ""currency"": ""GBP""}",6161.33,Gold,0 +6221,Katherine Taylor DDS,ruizmichelle@yahoo.com,2022-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5258.74,Bronze,0 +6222,Julia Dougherty,christinastevens@gmail.com,2020-05-20,"{""language"": ""EN"", ""currency"": ""GBP""}",4625.46,Bronze,0 +6223,Natalie Johnson,kellygould@gmail.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""EUR""}",1713.68,Gold,0 +6224,Fernando Miller,sarah95@dixon-williamson.net,2022-07-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1554.74,Bronze,1 +6225,David Hendricks,andersondonna@gmail.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",3053.14,Bronze,1 +6226,Andrew Banks,lcochran@erickson-lee.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",482.04,Bronze,0 +6227,Kelly Steele,randyodonnell@scott.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",8881.85,Bronze,1 +6228,Tiffany Jones,vsmith@king.org,2021-05-24,"{""language"": ""EN"", ""currency"": ""EUR""}",2539.9,Bronze,1 +6229,Karen Kramer,vasquezmichael@sosa.com,2020-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",6660.43,Gold,1 +6230,Eric Jacobs,nwalker@lane.info,2022-04-21,"{""language"": ""IT"", ""currency"": ""GBP""}",9786.85,Bronze,1 +6231,Christopher Jones,simonlarry@gmail.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1392.82,Gold,1 +6232,Seth Jones DDS,wwright@hotmail.com,2020-02-21,"{""language"": ""DE"", ""currency"": ""MXN""}",5458.66,Silver,0 +6233,Pamela Rojas,ywilcox@carpenter.com,2021-02-21,"{""language"": ""EN"", ""currency"": ""GBP""}",8428.1,Gold,1 +6234,Dean Hart,ibarker@hotmail.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3821.7,Gold,0 +6235,Alyssa Garza,qvaughn@hotmail.com,2024-11-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5193.33,Gold,0 +6236,Jennifer Winters,cardenaskimberly@mccoy.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4183.92,Silver,0 +6237,Theresa Sanchez,gnunez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",3659.9,Gold,1 +6238,Rodney Williams,sherrisloan@williams.com,2020-09-10,"{""language"": ""DE"", ""currency"": ""USD""}",8394.6,Gold,1 +6239,Jonathan Valdez,tammy46@holmes-miller.com,2020-11-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3297.77,Silver,0 +6240,Carla Avila,xrojas@gmail.com,2022-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9304.8,Gold,0 +6241,Shannon Smith,tracy90@clark.com,2023-01-29,"{""language"": ""DE"", ""currency"": ""EUR""}",9542.58,Bronze,1 +6242,Julian Smith,tylerortiz@hotmail.com,2023-04-07,"{""language"": ""EN"", ""currency"": ""CAD""}",4821.77,Bronze,0 +6243,Valerie Wade,spotter@vargas-johnson.biz,2023-06-01,"{""language"": ""EN"", ""currency"": ""USD""}",8821.08,Bronze,0 +6244,Jonathan Buchanan,jmckinney@green.com,2021-06-02,"{""language"": ""ES"", ""currency"": ""CAD""}",1314.89,Gold,1 +6245,Rachel Mitchell,robert16@yahoo.com,2021-11-07,"{""language"": ""ES"", ""currency"": ""GBP""}",1184.57,Bronze,1 +6246,Miss Evelyn Elliott,sbrock@yahoo.com,2022-09-29,"{""language"": ""ES"", ""currency"": ""CAD""}",5012.73,Gold,0 +6247,Katrina Allen,ncarlson@castillo.com,2024-05-29,"{""language"": ""EN"", ""currency"": ""EUR""}",1597.37,Bronze,0 +6248,Jack Hudson,jaredlopez@strickland.com,2024-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",99.89,Gold,1 +6249,Stuart Phillips,nancy74@yahoo.com,2020-01-21,"{""language"": ""DE"", ""currency"": ""CAD""}",3199.47,Bronze,0 +6250,Todd Hicks,moorenancy@yahoo.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""EUR""}",52.83,Silver,1 +6251,Tammy Graham,pdavis@cook.com,2022-03-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2392.0,Bronze,0 +6252,Thomas Peterson,lucasalexander@smith.com,2023-12-05,"{""language"": ""IT"", ""currency"": ""EUR""}",668.73,Bronze,0 +6253,Sandra Russell,dayjeremy@gmail.com,2021-05-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2280.08,Silver,0 +6254,Joseph Hull,gregorydonna@yahoo.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",6164.01,Silver,1 +6255,David Smith,michaeltaylor@bowers.net,2022-09-09,"{""language"": ""DE"", ""currency"": ""GBP""}",223.39,Bronze,1 +6256,Karen Myers,harveynicole@gmail.com,2024-04-09,"{""language"": ""EN"", ""currency"": ""EUR""}",7970.16,Gold,0 +6257,Nicole Jennings,allisonthornton@sanchez-joseph.info,2021-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8133.12,Bronze,1 +6258,Melanie Ochoa,caguirre@gmail.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",4301.98,Gold,0 +6259,Jennifer Williams,michaelespinoza@hotmail.com,2023-10-11,"{""language"": ""IT"", ""currency"": ""EUR""}",1205.35,Gold,0 +6260,Cindy Lambert,ujones@gordon.biz,2024-06-21,"{""language"": ""IT"", ""currency"": ""CAD""}",636.75,Bronze,0 +6261,Matthew Roberts,krivera@gmail.com,2023-04-11,"{""language"": ""EN"", ""currency"": ""CAD""}",491.68,Silver,1 +6262,Jamie Henson,turnerkimberly@simon.com,2024-08-30,"{""language"": ""IT"", ""currency"": ""CAD""}",9515.73,Silver,1 +6263,Jason Logan,ohardy@roberts.net,2024-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",4949.73,Gold,0 +6264,Amber Vaughan,sarah12@hotmail.com,2020-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",7401.6,Gold,0 +6265,Kimberly Walker,yrios@hotmail.com,2022-10-29,"{""language"": ""ES"", ""currency"": ""EUR""}",5231.52,Gold,0 +6266,Tracy Forbes,michellehall@green.com,2022-08-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6838.93,Gold,0 +6267,George Davis,brian28@gmail.com,2024-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",5486.05,Bronze,0 +6268,Heather Thomas,rayjessica@holland.com,2021-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",3261.29,Bronze,1 +6269,Michele Obrien,stephanie55@hill-smith.net,2024-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",5654.78,Bronze,0 +6270,Robert Reed,kellylaura@hotmail.com,2022-12-17,"{""language"": ""ES"", ""currency"": ""EUR""}",966.48,Silver,0 +6271,Alexis Erickson,barnesbenjamin@yahoo.com,2021-02-26,"{""language"": ""DE"", ""currency"": ""EUR""}",6417.1,Bronze,1 +6272,James Kennedy,samantha77@yahoo.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""USD""}",5376.57,Silver,0 +6273,David Trujillo,mary07@gmail.com,2024-01-28,"{""language"": ""IT"", ""currency"": ""MXN""}",1567.03,Bronze,1 +6274,Jennifer Lam,brandyharrison@yahoo.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""CAD""}",8738.6,Silver,1 +6275,George Camacho,nelsonelaine@rodriguez.net,2022-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3776.75,Gold,1 +6276,Renee Anthony,wheelerdavid@martinez.com,2021-06-03,"{""language"": ""IT"", ""currency"": ""GBP""}",325.93,Bronze,1 +6277,Robert Alvarado,kristintaylor@washington.com,2020-09-12,"{""language"": ""EN"", ""currency"": ""MXN""}",3614.77,Silver,0 +6278,Betty Jones,sarahyates@lamb-hendricks.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3445.85,Bronze,0 +6279,Thomas Scott,jennifer31@gmail.com,2022-12-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8064.53,Bronze,0 +6280,Catherine Holt,herrerakimberly@yahoo.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""CAD""}",6322.12,Silver,0 +6281,James Jones,bradley67@bailey.biz,2024-06-07,"{""language"": ""EN"", ""currency"": ""USD""}",117.14,Silver,1 +6282,Michael Cook,trujillogabriel@hicks-ho.net,2021-04-03,"{""language"": ""ES"", ""currency"": ""MXN""}",7622.19,Silver,1 +6283,Sarah Ford,harrisonkendra@simon.net,2022-01-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3157.79,Silver,1 +6284,Robert Stewart,xsmith@warren.info,2022-11-13,"{""language"": ""ES"", ""currency"": ""GBP""}",7320.25,Silver,0 +6285,Ashley Lee,qgarcia@hotmail.com,2021-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",3777.54,Bronze,1 +6286,Mandy Barker,sandra64@yahoo.com,2024-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",3468.76,Bronze,0 +6287,Nichole Greer,cmoore@hotmail.com,2023-07-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5699.25,Bronze,1 +6288,Elizabeth Ruiz,kim37@delgado-hill.com,2020-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2857.4,Gold,1 +6289,Nicholas Bradley,youngvalerie@hotmail.com,2021-02-12,"{""language"": ""DE"", ""currency"": ""EUR""}",1841.69,Gold,1 +6290,Gary Li,lutzmarie@gmail.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""EUR""}",9927.3,Bronze,1 +6291,Sharon Fisher,xgarcia@shepherd-daniels.com,2024-01-24,"{""language"": ""EN"", ""currency"": ""EUR""}",3065.79,Silver,0 +6292,Richard Shea,simselizabeth@yahoo.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""CAD""}",4833.66,Silver,1 +6293,Lori Kane,kaitlinsalazar@hotmail.com,2023-12-06,"{""language"": ""FR"", ""currency"": ""EUR""}",8851.83,Bronze,0 +6294,Paul Newman,richard91@yahoo.com,2020-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",1402.28,Silver,1 +6295,Vanessa Patel,brownjennifer@gmail.com,2022-01-18,"{""language"": ""FR"", ""currency"": ""CAD""}",3750.46,Gold,1 +6296,Toni Allen,edwardbennett@marsh-hartman.com,2024-03-06,"{""language"": ""FR"", ""currency"": ""GBP""}",9110.32,Gold,1 +6297,Peter Snyder,beth20@johnson-fernandez.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",7968.01,Silver,1 +6298,Christopher Woods,heidi69@garcia.biz,2023-12-27,"{""language"": ""DE"", ""currency"": ""CAD""}",9050.21,Bronze,0 +6299,Jeanette Stanton,larsondaniel@hotmail.com,2020-08-07,"{""language"": ""EN"", ""currency"": ""USD""}",8224.49,Silver,1 +6300,Stanley May,matthew54@yahoo.com,2024-03-21,"{""language"": ""DE"", ""currency"": ""GBP""}",9515.28,Silver,1 +6301,Brian Bryant,jenniferhopkins@hotmail.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8934.29,Gold,1 +6302,Christopher Bradley,bobby75@hotmail.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""CAD""}",2869.91,Silver,1 +6303,Emily Landry,uthomas@yahoo.com,2021-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3902.36,Bronze,1 +6304,Amanda Reed,brianmay@gmail.com,2020-11-07,"{""language"": ""EN"", ""currency"": ""MXN""}",3410.83,Gold,1 +6305,Jesse Henry DVM,mcclurelisa@marshall.com,2020-11-19,"{""language"": ""DE"", ""currency"": ""EUR""}",6440.92,Bronze,1 +6306,Robert Andrade,craigmiller@stewart-rice.org,2021-03-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3192.74,Gold,0 +6307,Jerry Lyons,rodriguezsteven@gmail.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""GBP""}",3848.39,Silver,1 +6308,Jessica Smith,anne44@ewing-knox.info,2022-06-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9407.67,Silver,1 +6309,Jessica Greer,deannaharris@hotmail.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",5705.73,Gold,0 +6310,Raymond Rowland,fdavis@hotmail.com,2024-01-25,"{""language"": ""EN"", ""currency"": ""CAD""}",1432.47,Gold,0 +6311,Bernard Wright,ymitchell@gmail.com,2020-03-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3767.73,Bronze,0 +6312,Albert Christensen,cheryl46@bradshaw.biz,2020-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",7970.16,Bronze,1 +6313,Lisa Rios DVM,andrea64@peterson-taylor.com,2024-05-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1992.65,Bronze,0 +6314,Kenneth Gonzales,patrick90@johnson.com,2021-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",2971.34,Bronze,0 +6315,Derek Williams,terrencemcdaniel@hotmail.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""CAD""}",8418.6,Bronze,0 +6316,Danny Mitchell Jr.,vparker@kent-gonzalez.net,2022-01-30,"{""language"": ""FR"", ""currency"": ""USD""}",3805.57,Bronze,1 +6317,William Dyer,dhaynes@moore-fox.com,2024-07-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4157.71,Gold,0 +6318,Alexander Newman,patrickmiller@gmail.com,2023-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2471.36,Gold,1 +6319,Eric Davis,robinsonpeter@garcia.com,2023-12-29,"{""language"": ""DE"", ""currency"": ""EUR""}",5155.68,Bronze,0 +6320,Kevin Wall,tboyd@yahoo.com,2021-06-01,"{""language"": ""DE"", ""currency"": ""CAD""}",2597.67,Silver,0 +6321,Christopher Crawford,patriciaschneider@wood-stevenson.net,2024-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",2353.22,Bronze,1 +6322,Courtney Perkins,monique00@hotmail.com,2023-01-07,"{""language"": ""EN"", ""currency"": ""USD""}",8102.41,Silver,0 +6323,Allison Cruz,sandersmelinda@hernandez.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""USD""}",9833.97,Silver,1 +6324,Joseph Andrews Jr.,gproctor@gmail.com,2021-12-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2503.34,Bronze,0 +6325,Briana Schultz,cannonmatthew@clark.info,2020-03-18,"{""language"": ""DE"", ""currency"": ""USD""}",7224.92,Gold,0 +6326,Matthew Gonzales,jessicajackson@doyle-williams.com,2023-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1740.5,Gold,0 +6327,Jason Ball,kevin42@sims-roth.org,2021-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",5690.05,Bronze,0 +6328,Lisa Miller,langapril@moreno.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5157.98,Gold,0 +6329,Michael Smith,sarah76@yahoo.com,2020-04-26,"{""language"": ""FR"", ""currency"": ""MXN""}",7288.31,Bronze,0 +6330,Lisa Shaffer,ramirezdenise@hinton.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""USD""}",350.6,Gold,1 +6331,Christine Kelly,fisherkenneth@davis.info,2021-12-11,"{""language"": ""FR"", ""currency"": ""MXN""}",3161.07,Gold,0 +6332,Melissa Livingston,trussell@young-walker.com,2024-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8767.65,Gold,0 +6333,Olivia Martin,samuelavery@gmail.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5537.26,Silver,1 +6334,Kim Oneill,erodriguez@hotmail.com,2022-04-19,"{""language"": ""ES"", ""currency"": ""CAD""}",1733.6,Gold,0 +6335,Tammy Thompson,sarah79@hotmail.com,2021-08-22,"{""language"": ""DE"", ""currency"": ""EUR""}",2076.59,Bronze,1 +6336,Kathleen Hill,jsanders@yahoo.com,2021-11-07,"{""language"": ""ES"", ""currency"": ""MXN""}",8253.59,Gold,1 +6337,Travis Anderson,phill@gmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""GBP""}",3085.53,Silver,0 +6338,Anthony Cunningham,qwood@hotmail.com,2020-05-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3772.24,Bronze,0 +6339,April Garza,joan56@yahoo.com,2020-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",1109.09,Bronze,0 +6340,Timothy Johns,carrie65@warren.com,2022-03-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1456.26,Silver,1 +6341,Gary Palmer,devonporter@yahoo.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",2367.63,Silver,0 +6342,Jason Jones,wcarter@yahoo.com,2020-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",1073.15,Silver,0 +6343,Matthew Burns,carrilloheather@cisneros.net,2024-01-15,"{""language"": ""EN"", ""currency"": ""GBP""}",3621.29,Gold,1 +6344,Jason Bailey,qbrown@gmail.com,2020-10-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6879.83,Gold,1 +6345,Michelle Chan,jaredlucas@lee-jones.com,2022-01-18,"{""language"": ""DE"", ""currency"": ""USD""}",6760.01,Bronze,1 +6346,Jerry Swanson,gleonard@gmail.com,2022-11-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8620.33,Silver,0 +6347,Rachel Klein,piercewilliam@hotmail.com,2021-10-29,"{""language"": ""FR"", ""currency"": ""CAD""}",7325.85,Gold,1 +6348,Jennifer Brooks,victor47@hotmail.com,2022-10-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6645.05,Bronze,1 +6349,Jacob Taylor,morristami@hotmail.com,2024-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",5097.74,Bronze,0 +6350,Brian Harper,robertayala@perry.com,2024-10-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6665.2,Gold,1 +6351,Ryan Anderson,catherinebaker@hotmail.com,2020-08-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9451.88,Bronze,1 +6352,Cassandra Berg,ryan83@gonzales.biz,2023-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4422.24,Silver,0 +6353,Angela Luna,barneskathleen@reed.info,2023-06-22,"{""language"": ""ES"", ""currency"": ""MXN""}",7797.11,Silver,1 +6354,Samantha Allen,pennybanks@hotmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9364.22,Silver,0 +6355,Jean Gallagher,vpotter@gmail.com,2021-07-21,"{""language"": ""EN"", ""currency"": ""GBP""}",1658.61,Silver,1 +6356,Tyrone Ferrell,pconley@yahoo.com,2023-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",7218.08,Bronze,0 +6357,Jacob Andrews,williamsondanielle@pena.net,2022-09-03,"{""language"": ""FR"", ""currency"": ""GBP""}",8982.81,Bronze,0 +6358,Steven King,jenniferdavis@yahoo.com,2024-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",9587.77,Bronze,0 +6359,Mrs. Laura Beck,zimmermanchristina@hotmail.com,2020-08-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4863.65,Bronze,1 +6360,Connie Daniels,lisagallegos@yahoo.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8688.21,Gold,1 +6361,Michelle White,tjones@gmail.com,2022-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",4113.77,Gold,1 +6362,Michael George,edwardward@hotmail.com,2023-07-04,"{""language"": ""IT"", ""currency"": ""EUR""}",6042.66,Bronze,0 +6363,Douglas Orozco,joseph30@roberts-obrien.com,2023-06-14,"{""language"": ""EN"", ""currency"": ""EUR""}",8644.88,Bronze,0 +6364,Patrick Crawford,kristy47@cooper.org,2023-10-12,"{""language"": ""ES"", ""currency"": ""MXN""}",268.45,Bronze,1 +6365,Benjamin Maldonado,wrobinson@yahoo.com,2021-03-16,"{""language"": ""EN"", ""currency"": ""USD""}",8157.32,Silver,0 +6366,Rebecca Barnes,andersenjoshua@monroe.com,2022-01-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1337.31,Bronze,0 +6367,Christopher Ross,mitchellhartman@gmail.com,2021-06-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5112.43,Bronze,0 +6368,Daniel Valencia,sherry41@yahoo.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",5035.37,Bronze,1 +6369,Richard Richardson,karengonzales@harper-ferguson.net,2022-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",7440.55,Bronze,0 +6370,Lisa Lucas,veronicaadams@trujillo.com,2024-09-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2281.28,Silver,1 +6371,Dr. Michael Webb,jose54@king-fisher.info,2020-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",3750.65,Gold,1 +6372,Chase Williams,hstewart@hotmail.com,2020-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",2852.09,Gold,0 +6373,George Wallace,jesussmith@gmail.com,2020-01-21,"{""language"": ""EN"", ""currency"": ""GBP""}",7937.87,Bronze,1 +6374,Kyle Walton,derekatkins@ramirez-harris.com,2022-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4809.77,Gold,0 +6375,Arthur Washington,alyssa24@hotmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""EUR""}",885.02,Bronze,0 +6376,Pamela Vaughan,gerald69@summers.com,2021-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",1843.82,Silver,0 +6377,Matthew Berry,cindy87@gmail.com,2021-04-23,"{""language"": ""ES"", ""currency"": ""USD""}",7115.89,Gold,1 +6378,George Hayes,apena@gmail.com,2024-01-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9202.43,Bronze,1 +6379,Brandon Hamilton,audreymorton@hotmail.com,2020-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",8686.74,Silver,1 +6380,Keith Simpson,antonioodonnell@romero.com,2024-10-23,"{""language"": ""FR"", ""currency"": ""MXN""}",8710.93,Bronze,1 +6381,David Foster,mooresharon@hotmail.com,2021-07-25,"{""language"": ""IT"", ""currency"": ""CAD""}",8771.74,Bronze,1 +6382,Stacey Ware,mary44@hotmail.com,2024-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",256.3,Gold,0 +6383,Charles Hernandez,danieledwards@hotmail.com,2020-05-20,"{""language"": ""IT"", ""currency"": ""EUR""}",5955.02,Silver,0 +6384,Ann Flowers,albertmartinez@gmail.com,2023-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",5659.99,Bronze,0 +6385,Mary Fischer,vthomas@brandt.com,2020-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1295.91,Silver,0 +6386,Cheryl Williams,wdouglas@yahoo.com,2023-02-10,"{""language"": ""ES"", ""currency"": ""USD""}",6535.05,Silver,0 +6387,Sara Rodriguez,xwilliams@gmail.com,2021-01-06,"{""language"": ""IT"", ""currency"": ""CAD""}",3129.69,Silver,1 +6388,James Ho,narmstrong@lee.com,2023-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",6515.54,Bronze,1 +6389,Jerry Morrison,teresawade@logan.com,2023-03-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7110.71,Bronze,0 +6390,Mackenzie Hall DDS,joshua76@gmail.com,2021-01-10,"{""language"": ""DE"", ""currency"": ""USD""}",2938.61,Gold,1 +6391,Stephanie Galvan,bjones@hotmail.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",257.69,Bronze,0 +6392,Kayla Hall,ehicks@medina.net,2022-05-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9065.92,Gold,1 +6393,Jeremy Flores,peter86@horton.org,2021-01-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2003.23,Bronze,1 +6394,Joseph Oconnor,coledavid@cole-long.com,2020-04-11,"{""language"": ""IT"", ""currency"": ""USD""}",4917.12,Bronze,0 +6395,Kathy Lloyd,benjamin44@gmail.com,2021-08-24,"{""language"": ""DE"", ""currency"": ""USD""}",3917.69,Bronze,1 +6396,Earl Carroll,bentonmichael@gmail.com,2024-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6721.4,Gold,0 +6397,Gloria Cruz,bennettanthony@decker.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",9176.21,Gold,1 +6398,Michael Ramirez,jwilliams@hotmail.com,2020-10-19,"{""language"": ""FR"", ""currency"": ""EUR""}",9338.55,Bronze,0 +6399,William Mullins,deborah05@martinez-carlson.com,2024-07-10,"{""language"": ""DE"", ""currency"": ""USD""}",2762.62,Bronze,1 +6400,Tammy Hines,michael90@solomon.com,2020-09-21,"{""language"": ""IT"", ""currency"": ""CAD""}",8057.9,Bronze,1 +6401,Janet Smith,jensenmichelle@yahoo.com,2021-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",591.49,Silver,1 +6402,Mark Jimenez,stephenboyd@gmail.com,2020-05-22,"{""language"": ""IT"", ""currency"": ""CAD""}",223.06,Silver,1 +6403,Lorraine Melendez,millsmichael@rodriguez.info,2022-12-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2630.53,Bronze,1 +6404,Lisa Hill DDS,janetprice@gmail.com,2022-01-18,"{""language"": ""EN"", ""currency"": ""USD""}",1916.87,Gold,1 +6405,Angel Gardner,umitchell@holland-morales.com,2020-09-15,"{""language"": ""ES"", ""currency"": ""CAD""}",1986.81,Gold,1 +6406,Kenneth Jennings,troypatel@hotmail.com,2020-09-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1593.55,Bronze,0 +6407,Meredith Wilson,davisanthony@hotmail.com,2020-06-03,"{""language"": ""ES"", ""currency"": ""MXN""}",2934.09,Bronze,0 +6408,Malik Jones,logan41@scott.com,2020-02-13,"{""language"": ""ES"", ""currency"": ""GBP""}",3946.26,Gold,1 +6409,John Dickerson,catherineclements@taylor.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1823.28,Bronze,1 +6410,Mr. Brian Smith Jr.,qwilson@medina-santos.com,2023-11-01,"{""language"": ""DE"", ""currency"": ""USD""}",3230.04,Bronze,0 +6411,Sarah Lopez,corey95@gmail.com,2023-03-27,"{""language"": ""EN"", ""currency"": ""EUR""}",796.39,Gold,0 +6412,Mary Thomas,bryantchristian@cortez-kemp.com,2020-10-29,"{""language"": ""IT"", ""currency"": ""MXN""}",58.62,Bronze,1 +6413,Mrs. Angela Price,haynescharles@hotmail.com,2024-01-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9773.66,Silver,0 +6414,Barbara Torres,jramos@turner-terry.com,2024-07-30,"{""language"": ""ES"", ""currency"": ""USD""}",3665.4,Bronze,0 +6415,Benjamin Morales,rgarrett@gmail.com,2024-11-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1175.29,Gold,1 +6416,Pamela Vaughn,courtney47@yahoo.com,2024-12-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3277.59,Silver,0 +6417,Terry Ford,jesuscross@boyd.org,2023-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1745.42,Silver,0 +6418,Dr. Justin Dawson II,lheath@brennan.com,2020-11-14,"{""language"": ""ES"", ""currency"": ""MXN""}",4924.44,Bronze,0 +6419,Mary Gonzalez,hendersonvanessa@hotmail.com,2021-07-04,"{""language"": ""DE"", ""currency"": ""USD""}",9578.94,Bronze,0 +6420,Margaret Brown,kathrynsanchez@hotmail.com,2021-09-12,"{""language"": ""EN"", ""currency"": ""GBP""}",7274.01,Bronze,1 +6421,Alexander Hicks,shawnsmith@anderson.biz,2024-01-24,"{""language"": ""EN"", ""currency"": ""CAD""}",5647.82,Bronze,0 +6422,Christopher Watson,danielhartman@gmail.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""EUR""}",9361.04,Silver,0 +6423,Christina Cox,hernandezmakayla@diaz.com,2022-07-30,"{""language"": ""FR"", ""currency"": ""CAD""}",7175.54,Bronze,1 +6424,Michael Pham,jeffrey25@gmail.com,2020-12-26,"{""language"": ""ES"", ""currency"": ""GBP""}",5155.14,Gold,0 +6425,Meghan Mckinney,gmartinez@hotmail.com,2023-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6239.59,Gold,0 +6426,Willie Moore,susan49@hotmail.com,2024-04-21,"{""language"": ""IT"", ""currency"": ""CAD""}",1227.4,Silver,1 +6427,Michelle Gentry,samuelmartin@yahoo.com,2024-03-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2574.96,Silver,0 +6428,David Barker,dlambert@torres-brooks.com,2020-06-04,"{""language"": ""EN"", ""currency"": ""MXN""}",3039.68,Silver,0 +6429,Kevin Ramsey,medinacarrie@hotmail.com,2024-08-03,"{""language"": ""ES"", ""currency"": ""GBP""}",528.43,Bronze,1 +6430,Dr. Mariah Smith MD,roycharles@gmail.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",2497.97,Gold,0 +6431,John Hartman,jody83@hotmail.com,2022-05-31,"{""language"": ""ES"", ""currency"": ""CAD""}",5906.37,Gold,0 +6432,Richard Davis,kimberly97@lewis.net,2022-12-01,"{""language"": ""DE"", ""currency"": ""USD""}",6779.38,Bronze,0 +6433,Mark Tucker,sullivandarlene@odonnell.com,2022-08-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5236.68,Gold,0 +6434,Richard Clark,jenniferberg@rivera-koch.com,2024-02-27,"{""language"": ""DE"", ""currency"": ""CAD""}",3682.83,Gold,1 +6435,Lindsey Chambers,rwyatt@gmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",6525.85,Silver,0 +6436,Laura Vega,gonzalezkerri@singleton.org,2023-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",1245.48,Bronze,1 +6437,Crystal Nichols,xhenry@yahoo.com,2024-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",3597.08,Silver,0 +6438,Michael Archer,joannelson@gmail.com,2023-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",8563.8,Bronze,0 +6439,Lori Myers,zhall@yahoo.com,2023-07-19,"{""language"": ""FR"", ""currency"": ""EUR""}",9102.68,Bronze,0 +6440,John Wu,wendy89@gmail.com,2023-04-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7389.71,Silver,1 +6441,Christie Kelley,kellyconner@hotmail.com,2021-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",5653.6,Bronze,0 +6442,Lisa Knox,christopherfranklin@bell-morgan.com,2022-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6880.4,Bronze,0 +6443,Monica Butler,karensanders@yahoo.com,2020-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8492.21,Silver,1 +6444,Alyssa Sharp,edward05@warren.net,2020-03-28,"{""language"": ""ES"", ""currency"": ""GBP""}",5017.48,Bronze,1 +6445,Daniel Taylor,qfigueroa@johnson.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9760.78,Silver,1 +6446,Carlos Fields,joan20@little.com,2023-10-04,"{""language"": ""EN"", ""currency"": ""GBP""}",4541.42,Silver,1 +6447,Cheyenne Gardner,brittany56@yahoo.com,2023-04-24,"{""language"": ""ES"", ""currency"": ""USD""}",4107.12,Gold,0 +6448,Robert Hill,wesleyray@estes-villegas.net,2024-03-09,"{""language"": ""ES"", ""currency"": ""EUR""}",226.83,Silver,0 +6449,Mary Williamson,peterle@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""CAD""}",266.56,Bronze,1 +6450,Cheryl Hudson,lgreen@hayden.com,2021-02-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6713.8,Bronze,1 +6451,Ashley Hernandez,sara75@gmail.com,2024-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3316.01,Gold,1 +6452,Andrea Lopez,mdavis@gmail.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",4305.63,Silver,1 +6453,Luis Wood,kevin47@james.info,2021-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",3938.24,Bronze,0 +6454,Cassidy Mayer,danielhall@martinez.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""CAD""}",5175.83,Gold,0 +6455,Elizabeth Johnson,robertadams@king-kemp.net,2023-02-02,"{""language"": ""DE"", ""currency"": ""GBP""}",7139.5,Silver,1 +6456,Mr. Jose Jordan,ybrowning@davidson-marshall.biz,2024-05-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3234.34,Silver,1 +6457,Gina Gomez,bmaddox@elliott-flores.biz,2021-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",1520.24,Bronze,0 +6458,Ryan Murray,christopher00@sanders.info,2023-11-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2028.5,Bronze,1 +6459,Frank Williams,marissagrimes@hotmail.com,2022-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5423.92,Silver,1 +6460,Rebecca Martin,ihenry@howard-randall.com,2024-07-15,"{""language"": ""EN"", ""currency"": ""MXN""}",6666.93,Silver,0 +6461,David Parks,scott38@holmes.org,2021-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",6662.15,Silver,1 +6462,Christina Greer,kanegeorge@rivera.net,2020-08-31,"{""language"": ""FR"", ""currency"": ""EUR""}",4695.64,Bronze,1 +6463,Cheyenne Wood,michellemoore@wilkerson.com,2024-09-17,"{""language"": ""DE"", ""currency"": ""GBP""}",292.54,Silver,1 +6464,Brianna Schroeder,halljason@holmes.com,2021-08-18,"{""language"": ""IT"", ""currency"": ""USD""}",714.0,Silver,0 +6465,Mallory Adams,shawn67@white.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",8382.85,Gold,0 +6466,Michael Thornton,sarahbates@yahoo.com,2020-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",5876.01,Gold,1 +6467,Dominique Peterson,michael69@gmail.com,2024-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",4650.61,Silver,0 +6468,David Mann,hsimmons@ford-santos.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""GBP""}",6023.41,Silver,0 +6469,Denise Mills MD,austin71@perry.net,2024-10-27,"{""language"": ""EN"", ""currency"": ""CAD""}",7438.81,Bronze,0 +6470,Elizabeth Lane,mariapatton@taylor.com,2024-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",5971.73,Silver,1 +6471,Phyllis Johnson,kramercarolyn@maddox.com,2024-04-16,"{""language"": ""IT"", ""currency"": ""EUR""}",3261.63,Gold,1 +6472,James Marsh,kimberlycowan@odonnell.com,2024-05-21,"{""language"": ""IT"", ""currency"": ""CAD""}",6954.48,Silver,1 +6473,Lawrence Campbell,reyesphillip@hotmail.com,2022-02-09,"{""language"": ""ES"", ""currency"": ""EUR""}",705.42,Gold,1 +6474,Dan Garcia,lisa53@hotmail.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""CAD""}",4308.92,Gold,0 +6475,Angela Klein,scott45@yahoo.com,2020-12-15,"{""language"": ""ES"", ""currency"": ""EUR""}",3177.85,Silver,1 +6476,Eric Wright,xreyes@gmail.com,2021-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",487.81,Bronze,0 +6477,Jasmine Monroe,vpruitt@eaton-sullivan.info,2022-11-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2119.95,Gold,1 +6478,Timothy Wiley,james73@gmail.com,2023-11-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1156.93,Gold,1 +6479,Elizabeth Smith,melissajohnson@lee-williams.com,2022-10-21,"{""language"": ""IT"", ""currency"": ""GBP""}",3003.64,Silver,0 +6480,Nathan Garcia,vangwilliam@yahoo.com,2021-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",9008.37,Gold,0 +6481,Allison Rodriguez,dylan74@green-grant.net,2021-05-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8686.03,Bronze,0 +6482,Christopher Castillo,gsmith@gmail.com,2020-10-22,"{""language"": ""DE"", ""currency"": ""USD""}",3743.67,Bronze,1 +6483,Susan Bird,wendy52@yahoo.com,2023-01-12,"{""language"": ""DE"", ""currency"": ""GBP""}",332.23,Bronze,1 +6484,Brian Wilson,hwilson@yahoo.com,2021-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4400.59,Gold,1 +6485,Alexandria Hall,bradleyturner@hotmail.com,2024-05-04,"{""language"": ""DE"", ""currency"": ""MXN""}",758.58,Bronze,0 +6486,Elizabeth Tucker,jennifer80@duffy-williams.com,2022-09-25,"{""language"": ""DE"", ""currency"": ""MXN""}",6460.0,Bronze,0 +6487,Julie Carroll,shawnyang@alexander.org,2022-07-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9383.12,Bronze,0 +6488,Christian Mcdowell DDS,sandersbrittney@hotmail.com,2020-10-26,"{""language"": ""IT"", ""currency"": ""EUR""}",428.79,Silver,1 +6489,Shawn Peterson,bgarcia@hotmail.com,2023-10-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3215.78,Silver,0 +6490,Amanda Ochoa,kristi63@thompson.com,2020-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4424.74,Gold,0 +6491,Mark Hall,oparker@hotmail.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""GBP""}",7986.1,Gold,1 +6492,Jeffrey Gomez,freemandeborah@hotmail.com,2024-12-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8985.46,Gold,1 +6493,Robert Taylor,cynthiascott@mathews.com,2020-12-12,"{""language"": ""IT"", ""currency"": ""EUR""}",1476.8,Silver,0 +6494,Ms. Jacqueline Sexton,dawngibbs@joyce.com,2023-06-19,"{""language"": ""FR"", ""currency"": ""USD""}",4214.44,Gold,0 +6495,James Jones,smclaughlin@gmail.com,2019-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",716.84,Bronze,0 +6496,Sarah Stewart,jmcknight@gmail.com,2022-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",2558.59,Silver,1 +6497,Sarah Salazar,walter28@yahoo.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4224.54,Gold,1 +6498,Robert Kaiser,sarah73@powell.com,2020-02-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2735.97,Silver,0 +6499,Natalie Ellis,edwardgarner@yahoo.com,2023-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1438.18,Silver,0 +6500,Elizabeth Gutierrez,lisaodonnell@watson.org,2020-02-10,"{""language"": ""DE"", ""currency"": ""USD""}",708.85,Silver,0 +6501,Danielle Morgan,stephenwhite@mcdaniel.com,2023-12-03,"{""language"": ""IT"", ""currency"": ""USD""}",59.97,Silver,1 +6502,Erin Cox,greenjeffrey@yahoo.com,2022-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3960.09,Gold,0 +6503,David Preston,katherine47@benitez.com,2020-09-22,"{""language"": ""IT"", ""currency"": ""GBP""}",9067.15,Bronze,1 +6504,Virginia Johnson,michele70@adams.net,2024-01-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9263.82,Bronze,0 +6505,Ashley Richards,mary27@yahoo.com,2020-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",672.16,Gold,1 +6506,Ian Farmer,youngricardo@riddle.net,2023-07-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8182.94,Bronze,0 +6507,Samuel Byrd,suzanne95@hotmail.com,2024-11-21,"{""language"": ""EN"", ""currency"": ""EUR""}",6886.38,Gold,1 +6508,Joseph Lewis,westtimothy@hotmail.com,2022-02-25,"{""language"": ""DE"", ""currency"": ""CAD""}",905.71,Silver,1 +6509,Matthew Stout,fgentry@hotmail.com,2024-01-05,"{""language"": ""IT"", ""currency"": ""GBP""}",5445.71,Bronze,1 +6510,Anthony Herrera,kinglogan@hotmail.com,2022-10-21,"{""language"": ""FR"", ""currency"": ""CAD""}",1781.23,Silver,0 +6511,Robert Ryan,middletonkelly@cole.com,2020-02-12,"{""language"": ""IT"", ""currency"": ""MXN""}",151.31,Gold,1 +6512,Debra Cox,qfischer@hotmail.com,2020-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1409.42,Silver,1 +6513,Larry Harris,morgan50@hotmail.com,2024-02-11,"{""language"": ""ES"", ""currency"": ""USD""}",5643.7,Gold,0 +6514,David Holland,timothyschneider@yahoo.com,2023-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",5387.92,Gold,1 +6515,Jose Park,phillipsdawn@stevens.org,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",3104.61,Bronze,1 +6516,Bob Stewart,carolynburns@yahoo.com,2024-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",6179.94,Bronze,0 +6517,Samantha Carr,jessica56@gmail.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",732.25,Gold,0 +6518,Colleen Vang,mgeorge@hotmail.com,2023-11-26,"{""language"": ""IT"", ""currency"": ""USD""}",8648.64,Gold,0 +6519,Eric Torres,erikawilliams@boyle-johnson.com,2023-03-14,"{""language"": ""FR"", ""currency"": ""MXN""}",2960.05,Bronze,1 +6520,Kelly Martin,grussell@murray.info,2021-03-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7113.08,Silver,1 +6521,Christopher Cooper,christy05@hansen.org,2022-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",5826.68,Silver,1 +6522,David Moore,dtownsend@yahoo.com,2020-04-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4524.97,Bronze,1 +6523,Matthew Andrews,xmartinez@yahoo.com,2024-04-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5546.16,Gold,1 +6524,David Myers,kyle01@hotmail.com,2023-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",54.14,Silver,1 +6525,Thomas Vasquez,andrewmartin@gmail.com,2024-07-26,"{""language"": ""EN"", ""currency"": ""CAD""}",4567.57,Bronze,1 +6526,Christopher Miller,william13@gmail.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6808.74,Gold,1 +6527,Amanda Crosby,hunter12@briggs.com,2024-07-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1136.11,Gold,0 +6528,Kim Castillo,ashley97@williams.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",7679.67,Bronze,0 +6529,Daniel Gaines,david07@taylor.com,2022-12-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5957.28,Silver,0 +6530,Kyle Morris,piercerebecca@yahoo.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",3369.38,Silver,0 +6531,Janice Thomas,ymccann@peterson.com,2020-02-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4201.88,Gold,0 +6532,Thomas Scott,rhodesamanda@hotmail.com,2023-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",8788.19,Silver,1 +6533,Brittany Martin,matthew83@roberson.net,2020-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",7512.56,Gold,1 +6534,Victoria Peters,alewis@smith.net,2020-10-08,"{""language"": ""DE"", ""currency"": ""CAD""}",6065.99,Gold,0 +6535,Christina Brooks,michelleking@hotmail.com,2022-10-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5158.27,Gold,0 +6536,Stephen Wilson,maria95@weber.org,2024-11-20,"{""language"": ""ES"", ""currency"": ""GBP""}",8947.8,Bronze,0 +6537,Jean Moore,christopher16@huber.info,2021-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",7585.79,Gold,0 +6538,Michael Zimmerman,patricia08@gmail.com,2021-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",8682.75,Gold,1 +6539,Sarah Henderson,carlosmiller@yahoo.com,2020-02-17,"{""language"": ""FR"", ""currency"": ""MXN""}",8911.21,Bronze,0 +6540,Donna Williams,kristen36@hotmail.com,2023-08-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6744.55,Bronze,0 +6541,Gerald Rodriguez,zrobinson@sanchez.info,2022-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6851.12,Silver,0 +6542,Randy Hull,antonio61@gmail.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",8123.26,Bronze,0 +6543,Phillip Morrison,dennismartin@burke.com,2024-11-20,"{""language"": ""IT"", ""currency"": ""USD""}",225.63,Bronze,1 +6544,Jason Mays,troyreid@gmail.com,2023-03-14,"{""language"": ""IT"", ""currency"": ""USD""}",4266.2,Bronze,1 +6545,Keith Wu,shauncastro@hotmail.com,2023-03-12,"{""language"": ""ES"", ""currency"": ""USD""}",2293.65,Bronze,0 +6546,Teresa Sanders,uestrada@johnston-hoffman.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",2063.1,Silver,1 +6547,Charles Johnson,fmckinney@johnson.com,2022-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3606.37,Bronze,1 +6548,Mary Glass,tmason@gmail.com,2024-07-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6730.5,Gold,1 +6549,Stuart Henry,ambersullivan@yahoo.com,2022-10-28,"{""language"": ""EN"", ""currency"": ""GBP""}",8669.74,Gold,1 +6550,Ricky Ortiz,teresajohnson@clark.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",7526.84,Gold,1 +6551,Michelle Edwards,oliverbrett@king.com,2022-04-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9136.78,Gold,0 +6552,Richard Todd,mharvey@gmail.com,2024-07-08,"{""language"": ""IT"", ""currency"": ""CAD""}",4652.19,Bronze,0 +6553,Eric Johnson,beth79@kim.info,2024-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",7328.79,Bronze,1 +6554,John Ramirez,samanthalawrence@perez.com,2023-03-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9964.38,Bronze,0 +6555,Tony Buchanan,olsenmichael@norton-friedman.biz,2024-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",5248.55,Silver,0 +6556,Christopher Dorsey,fergusonangela@bass.com,2022-10-24,"{""language"": ""DE"", ""currency"": ""EUR""}",3611.14,Silver,0 +6557,Shawn Wilkerson,amanda28@gmail.com,2023-03-10,"{""language"": ""FR"", ""currency"": ""CAD""}",9347.37,Silver,0 +6558,Stacy Gillespie,adamali@hotmail.com,2024-11-06,"{""language"": ""ES"", ""currency"": ""GBP""}",2031.09,Bronze,1 +6559,Carla Rodriguez,kennethsimmons@gmail.com,2021-07-10,"{""language"": ""ES"", ""currency"": ""USD""}",82.93,Bronze,1 +6560,Angela Torres,uchavez@martin.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8542.76,Gold,0 +6561,Heidi Perez,lblackwell@hotmail.com,2021-05-31,"{""language"": ""IT"", ""currency"": ""EUR""}",9002.72,Silver,1 +6562,Robin Baker,joseph92@gmail.com,2020-09-30,"{""language"": ""IT"", ""currency"": ""EUR""}",6936.64,Bronze,1 +6563,Sylvia Harris,jamesluis@neal.com,2021-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",3591.77,Bronze,1 +6564,Ashley Klein,mikayla38@reed-kennedy.org,2024-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4717.37,Silver,1 +6565,Shannon Howard,adamherring@hayes.com,2020-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1946.72,Bronze,0 +6566,Justin Jimenez,david88@price.com,2020-02-22,"{""language"": ""EN"", ""currency"": ""CAD""}",565.53,Gold,1 +6567,Michael Young,karencontreras@brown-dickerson.org,2024-06-10,"{""language"": ""FR"", ""currency"": ""MXN""}",8359.58,Gold,1 +6568,Jillian Braun,murphymichelle@dunn-sanchez.info,2021-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1096.16,Silver,1 +6569,Paul Collins,rebecca50@hotmail.com,2023-12-26,"{""language"": ""DE"", ""currency"": ""USD""}",60.75,Gold,0 +6570,John Ross,jenniferduran@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""CAD""}",3349.69,Bronze,0 +6571,Lance Hammond,haledaniel@lowery.info,2023-02-17,"{""language"": ""DE"", ""currency"": ""EUR""}",9781.75,Gold,1 +6572,Keith Humphrey,keith57@hall.com,2023-03-06,"{""language"": ""DE"", ""currency"": ""USD""}",3881.78,Gold,1 +6573,Michael Davis,maria58@gmail.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9261.88,Bronze,0 +6574,Brandy Carter,vshannon@callahan.info,2022-08-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5022.75,Silver,1 +6575,Shelby Gibson,charlesclark@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""GBP""}",1976.81,Gold,0 +6576,Michael Mclean,michelle83@rodriguez-krause.info,2020-01-13,"{""language"": ""FR"", ""currency"": ""USD""}",1086.18,Bronze,0 +6577,Kim Coleman,mary58@yahoo.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8989.68,Bronze,1 +6578,Laura Chavez,alexisvaldez@flynn.biz,2023-11-13,"{""language"": ""FR"", ""currency"": ""MXN""}",8503.39,Bronze,0 +6579,Amanda Owens,rebecca23@gmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7318.27,Bronze,1 +6580,Richard Stanton,lauren18@washington.com,2022-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",3727.88,Gold,0 +6581,Jill Coleman,gstewart@hotmail.com,2024-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",4538.37,Silver,0 +6582,Richard Sullivan,mstafford@gibson.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8482.54,Gold,1 +6583,Rebecca Conrad,timothystokes@wheeler-herrera.com,2023-05-22,"{""language"": ""FR"", ""currency"": ""MXN""}",8646.72,Bronze,1 +6584,Makayla Lee,elizabethrush@hotmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",7864.22,Bronze,0 +6585,Mark Leach,alyssa12@simpson.info,2024-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4151.88,Silver,0 +6586,Scott Merritt,markwright@hotmail.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",552.87,Silver,0 +6587,Bobby Compton,wrightallen@berry.biz,2021-12-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1108.24,Silver,0 +6588,Kimberly Ryan,glennpayne@hotmail.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5298.19,Gold,0 +6589,Misty Grant,cgonzalez@rogers-cruz.biz,2020-10-26,"{""language"": ""ES"", ""currency"": ""CAD""}",8183.64,Silver,1 +6590,Christopher Smith,yoderaaron@banks.info,2023-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",9996.77,Gold,1 +6591,Robert Robinson,heather84@hotmail.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""CAD""}",930.17,Gold,0 +6592,Paula Dunn,johnhardin@anthony.com,2020-09-02,"{""language"": ""DE"", ""currency"": ""GBP""}",5634.74,Gold,0 +6593,Tony Mejia,elizabethgray@yahoo.com,2022-11-17,"{""language"": ""IT"", ""currency"": ""GBP""}",6029.41,Bronze,1 +6594,Tracy Arellano,courtneydaniels@hotmail.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1131.92,Silver,1 +6595,Brett Vincent,rodney29@yahoo.com,2022-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",581.2,Bronze,0 +6596,Michael Williams,jon45@hotmail.com,2021-03-21,"{""language"": ""EN"", ""currency"": ""EUR""}",3205.71,Bronze,1 +6597,Kelly Carter,shannon30@thompson-sandoval.net,2024-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",4998.62,Bronze,0 +6598,Michael Green,james44@hotmail.com,2024-10-08,"{""language"": ""IT"", ""currency"": ""GBP""}",4990.65,Bronze,0 +6599,Tiffany Cuevas,gregoryjohnson@gmail.com,2024-07-29,"{""language"": ""DE"", ""currency"": ""GBP""}",1951.22,Gold,1 +6600,Benjamin Fernandez,bradley32@gmail.com,2021-11-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2459.22,Bronze,0 +6601,Amanda Anderson,michaellopez@gmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""GBP""}",8995.75,Bronze,1 +6602,James Rose,katrinajimenez@summers-walker.net,2023-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",7708.9,Silver,0 +6603,Dr. Alyssa Vega,epeters@hill.com,2024-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",815.63,Gold,0 +6604,Julia Lee,mswanson@hotmail.com,2024-05-21,"{""language"": ""IT"", ""currency"": ""MXN""}",3789.18,Bronze,1 +6605,Susan Green,ujackson@rice-forbes.com,2024-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",982.45,Gold,1 +6606,Patricia Wells,kevinli@gmail.com,2024-08-09,"{""language"": ""FR"", ""currency"": ""EUR""}",3339.3,Gold,1 +6607,Maria Meyers,brendabooker@gmail.com,2023-08-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8099.4,Gold,1 +6608,Lydia Santos,jamesrobinson@hotmail.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""USD""}",1527.0,Gold,0 +6609,Robert Rios,sharonchen@spencer.com,2023-09-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3838.27,Gold,0 +6610,Jeremiah Klein,cochranandrew@griffin-waller.com,2021-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8593.95,Gold,1 +6611,Michele Hamilton,zmarshall@brown.com,2024-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",4210.88,Silver,1 +6612,Andrew Diaz DDS,kevin68@yahoo.com,2022-01-30,"{""language"": ""IT"", ""currency"": ""MXN""}",66.69,Gold,0 +6613,Erin Roberts MD,deannakeller@hood-bray.com,2024-11-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6499.57,Bronze,1 +6614,Jamie Garza,eileen61@johnson.com,2023-06-17,"{""language"": ""FR"", ""currency"": ""USD""}",1006.07,Silver,0 +6615,Kimberly Davis,andrew69@acevedo.com,2024-05-10,"{""language"": ""IT"", ""currency"": ""USD""}",3286.85,Bronze,0 +6616,Stanley Vance,taylorjones@bryant.com,2024-11-29,"{""language"": ""DE"", ""currency"": ""MXN""}",5131.09,Bronze,0 +6617,Rebecca Hernandez,monicamaxwell@church.com,2022-08-21,"{""language"": ""ES"", ""currency"": ""USD""}",3517.91,Bronze,1 +6618,Lori Sanders,melinda40@martin-ball.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""EUR""}",532.64,Bronze,1 +6619,Mindy Carter,wdodson@burnett.net,2022-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",169.18,Silver,0 +6620,Danielle Leon,kevin95@alexander.net,2023-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",8560.97,Silver,0 +6621,Kimberly Taylor,ybrown@jordan-farmer.com,2021-03-07,"{""language"": ""IT"", ""currency"": ""MXN""}",7507.87,Bronze,1 +6622,Anna Perez,vjohnson@hernandez.net,2022-12-08,"{""language"": ""FR"", ""currency"": ""GBP""}",7918.28,Bronze,1 +6623,Roberta Jackson,kinganita@hayes-lee.com,2020-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",1881.33,Bronze,1 +6624,Zachary Mueller,gcooke@avila-wilson.biz,2024-05-17,"{""language"": ""IT"", ""currency"": ""USD""}",6468.55,Gold,0 +6625,Joseph Smith,arthurmiller@gmail.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4744.34,Gold,0 +6626,Mary Davis,lisarobinson@rivera.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5546.91,Gold,0 +6627,Tyler Henry,maryrobinson@fisher.org,2023-06-19,"{""language"": ""DE"", ""currency"": ""USD""}",9467.36,Gold,1 +6628,Susan Miller,deborah39@clark.info,2024-06-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7037.95,Gold,0 +6629,Jenna Baird,toddchang@powell-taylor.com,2022-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3176.28,Silver,0 +6630,Jennifer Moore,langjennifer@gmail.com,2023-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4597.47,Gold,1 +6631,Jeremy Perez MD,linda88@crawford-burton.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5825.36,Bronze,1 +6632,Paula Turner,burtonbrandi@donaldson.com,2023-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",2086.24,Gold,0 +6633,Samantha Newton,rachelperez@hotmail.com,2024-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",1410.94,Bronze,0 +6634,Jeremy Santos,michelestevens@hotmail.com,2022-05-01,"{""language"": ""ES"", ""currency"": ""MXN""}",396.62,Gold,1 +6635,Kyle Hall,brownmichael@gould.com,2021-02-01,"{""language"": ""FR"", ""currency"": ""CAD""}",4110.69,Bronze,0 +6636,James Rivas,mary96@hebert-munoz.com,2022-12-11,"{""language"": ""ES"", ""currency"": ""CAD""}",776.51,Gold,1 +6637,Beverly Gonzales,richardcook@estrada.org,2024-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",6740.74,Silver,1 +6638,Brenda Gonzales MD,hnguyen@dean.biz,2020-12-15,"{""language"": ""ES"", ""currency"": ""CAD""}",3692.22,Silver,0 +6639,Melissa Miller,nathanfrost@gmail.com,2023-09-19,"{""language"": ""DE"", ""currency"": ""EUR""}",428.27,Silver,0 +6640,Brandon Jackson,david99@fernandez.com,2020-10-09,"{""language"": ""FR"", ""currency"": ""CAD""}",8991.79,Silver,1 +6641,Ashley Garcia,pblack@gmail.com,2021-06-12,"{""language"": ""EN"", ""currency"": ""USD""}",3815.07,Silver,1 +6642,Kristin Ortega,wallaceerica@hotmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""CAD""}",4320.84,Silver,0 +6643,Paul Martinez,cookkaren@baxter.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3645.33,Bronze,1 +6644,Richard Townsend,michael76@henry-martinez.com,2020-07-28,"{""language"": ""EN"", ""currency"": ""USD""}",4959.36,Bronze,1 +6645,Danny Perkins,heather12@haynes.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""USD""}",949.07,Gold,1 +6646,Emily Fields,eolson@yahoo.com,2023-07-23,"{""language"": ""FR"", ""currency"": ""USD""}",2165.74,Silver,0 +6647,Meagan Murray,cooperrobin@gmail.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",2060.39,Silver,0 +6648,Michael King,marywilliams@taylor-jackson.info,2024-01-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2848.19,Bronze,1 +6649,Stanley Livingston,aguilarolivia@brown.com,2022-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3729.26,Bronze,0 +6650,Nicole Smith,kelleyrodney@kelly.com,2020-10-12,"{""language"": ""FR"", ""currency"": ""GBP""}",7056.7,Gold,0 +6651,Susan Chapman,robert25@rodriguez.net,2019-12-17,"{""language"": ""ES"", ""currency"": ""USD""}",9766.74,Gold,0 +6652,Thomas Moore,iarnold@yahoo.com,2020-09-23,"{""language"": ""DE"", ""currency"": ""EUR""}",7476.12,Gold,0 +6653,Donald Castillo,iramirez@brown.biz,2024-08-01,"{""language"": ""ES"", ""currency"": ""GBP""}",4633.41,Bronze,0 +6654,Brooke Williams,wilsonmichelle@bishop.com,2020-08-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2308.11,Gold,1 +6655,Terri Johnson,allenbarrett@yahoo.com,2020-08-26,"{""language"": ""ES"", ""currency"": ""MXN""}",7744.74,Bronze,0 +6656,Sherry Patton,katrinajones@hotmail.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5780.01,Gold,0 +6657,Melvin Wood,akelly@gmail.com,2024-09-19,"{""language"": ""DE"", ""currency"": ""CAD""}",8646.58,Silver,1 +6658,Stephanie Brown,markpayne@young.com,2021-12-13,"{""language"": ""FR"", ""currency"": ""USD""}",2977.81,Silver,0 +6659,Barbara Perry,lewisbrandon@hotmail.com,2023-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",4112.21,Bronze,1 +6660,Richard Black,pdickerson@yahoo.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1428.85,Bronze,1 +6661,Aaron Davis,gilmoredennis@russell-duncan.info,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",1540.15,Bronze,1 +6662,Mr. Timothy Woods,jhudson@gomez-dennis.com,2020-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",4268.47,Silver,1 +6663,Janet Edwards,wrighthannah@hoffman.biz,2022-10-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7675.44,Silver,0 +6664,Mr. Nicholas Lucero,hallcurtis@petersen.com,2024-04-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5180.9,Bronze,1 +6665,William Beck,kelly86@gmail.com,2022-10-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8234.32,Gold,1 +6666,Ashley Hamilton,cwilliams@herman-campbell.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""GBP""}",515.42,Bronze,1 +6667,William Kramer,hickslaurie@hotmail.com,2024-06-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6594.89,Gold,0 +6668,Leah Lawrence,burnskenneth@smith-everett.info,2023-12-08,"{""language"": ""ES"", ""currency"": ""MXN""}",2549.17,Silver,1 +6669,Jocelyn Miller,gking@owens.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",8053.66,Bronze,1 +6670,Andre Marshall,mayheather@frye-king.com,2023-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",9129.09,Bronze,1 +6671,Brianna Williams,peckmelissa@yahoo.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""USD""}",970.59,Bronze,0 +6672,Craig Mann,brenda97@jackson-flowers.info,2020-05-25,"{""language"": ""DE"", ""currency"": ""EUR""}",127.18,Bronze,1 +6673,Cameron Hahn,melissakim@kelley.info,2020-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",1128.45,Silver,1 +6674,Rachel Smith,jonesshelby@gmail.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""USD""}",3903.46,Bronze,0 +6675,Alexis Walton,mirandapetersen@gmail.com,2023-10-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7804.32,Silver,0 +6676,Andrea Pitts,marissa46@rogers.com,2023-07-22,"{""language"": ""IT"", ""currency"": ""MXN""}",9947.3,Silver,1 +6677,Christopher Williams,hayesgeorge@hotmail.com,2024-03-06,"{""language"": ""EN"", ""currency"": ""CAD""}",5309.91,Bronze,1 +6678,Steven Leonard,jasonherrera@barber.com,2024-08-20,"{""language"": ""ES"", ""currency"": ""USD""}",591.73,Gold,1 +6679,Todd Zuniga,amanda18@griffin.org,2020-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",8065.1,Silver,1 +6680,Howard Anderson,teresa82@thompson.info,2024-12-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9725.88,Silver,0 +6681,Lauren Gordon,fordsally@hotmail.com,2024-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8648.09,Bronze,1 +6682,Daniel Reyes,tgarcia@yahoo.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5017.59,Gold,0 +6683,Victor Gray,hcampbell@johnson-shaw.net,2022-03-08,"{""language"": ""ES"", ""currency"": ""USD""}",133.59,Silver,1 +6684,Sarah Sims,clarkmalik@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6679.59,Gold,0 +6685,Robert Mullins,trivera@hotmail.com,2020-07-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5629.6,Silver,1 +6686,Robert Deleon,beckjames@vance.biz,2023-10-13,"{""language"": ""FR"", ""currency"": ""USD""}",3082.18,Silver,0 +6687,Randall Harrison,monicaturner@hotmail.com,2024-02-17,"{""language"": ""ES"", ""currency"": ""USD""}",5206.89,Gold,1 +6688,Joshua Sullivan,james20@black.com,2021-03-31,"{""language"": ""IT"", ""currency"": ""USD""}",2261.11,Bronze,0 +6689,Sara Harrison,owallace@yahoo.com,2022-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9285.21,Bronze,1 +6690,Jill Smith,morrismichael@yahoo.com,2020-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",3462.61,Bronze,1 +6691,Nicholas George,martinezjennifer@smith.com,2022-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",5664.31,Silver,1 +6692,Cindy Vega,shale@hotmail.com,2024-07-22,"{""language"": ""IT"", ""currency"": ""MXN""}",8949.87,Gold,1 +6693,Luis Ellison,bconner@yahoo.com,2021-05-26,"{""language"": ""DE"", ""currency"": ""USD""}",5419.11,Gold,0 +6694,Sylvia Daniels,bvilla@gmail.com,2020-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",5442.87,Gold,1 +6695,Bailey Fields,tinaroberts@yahoo.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",4528.82,Gold,1 +6696,Alexa Gonzalez,ronald96@yahoo.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5855.76,Silver,0 +6697,Christopher Patel,sullivanelizabeth@anderson-jensen.com,2020-05-07,"{""language"": ""IT"", ""currency"": ""CAD""}",9141.28,Silver,0 +6698,Robyn Choi,jeremyrodriguez@gmail.com,2021-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",203.69,Gold,0 +6699,Seth Rhodes,ericwong@tucker.com,2023-08-19,"{""language"": ""IT"", ""currency"": ""USD""}",2315.77,Bronze,1 +6700,Eric Johnson,thompsonbetty@johnson-brewer.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""GBP""}",8202.13,Bronze,1 +6701,Jessica Harris,mshields@schroeder-garcia.org,2022-12-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2355.15,Bronze,1 +6702,Anna Reid,christyvazquez@sullivan-adams.org,2023-01-24,"{""language"": ""IT"", ""currency"": ""USD""}",3696.48,Silver,1 +6703,Jose Williams,steven69@russell-pineda.org,2021-08-20,"{""language"": ""ES"", ""currency"": ""CAD""}",5681.79,Gold,1 +6704,Randall Patterson,williamfox@humphrey.net,2023-05-31,"{""language"": ""ES"", ""currency"": ""MXN""}",6971.38,Silver,1 +6705,Tiffany Taylor,amandabrown@gmail.com,2022-09-28,"{""language"": ""EN"", ""currency"": ""EUR""}",9404.43,Gold,0 +6706,Gregory Thompson,hwilliams@hotmail.com,2024-07-24,"{""language"": ""DE"", ""currency"": ""CAD""}",6030.12,Gold,0 +6707,Matthew Smith,progers@gmail.com,2024-08-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7162.82,Gold,0 +6708,Eric Flores,qchase@poole-rivas.com,2022-12-21,"{""language"": ""ES"", ""currency"": ""GBP""}",4516.26,Bronze,1 +6709,Danielle Hoffman,brandi77@castillo.biz,2022-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",6775.76,Gold,1 +6710,Christopher Orozco,stephanie89@yahoo.com,2022-12-09,"{""language"": ""FR"", ""currency"": ""MXN""}",1582.81,Gold,1 +6711,Theresa Wallace,aaron73@yahoo.com,2020-02-01,"{""language"": ""DE"", ""currency"": ""GBP""}",1677.64,Gold,0 +6712,Jeffrey Brown,millstiffany@yahoo.com,2021-04-20,"{""language"": ""FR"", ""currency"": ""MXN""}",2673.27,Bronze,0 +6713,Corey Mack,aestrada@rasmussen.info,2024-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",7127.75,Bronze,0 +6714,Alexandra Riley,twilliams@carney.com,2020-03-16,"{""language"": ""ES"", ""currency"": ""GBP""}",9525.72,Bronze,0 +6715,Raymond Davis,karirichardson@yahoo.com,2021-03-09,"{""language"": ""DE"", ""currency"": ""GBP""}",9025.65,Bronze,1 +6716,Gerald Manning,bbender@hotmail.com,2021-01-04,"{""language"": ""EN"", ""currency"": ""EUR""}",9449.74,Bronze,1 +6717,Judy Hurst,timothymartinez@johnson.com,2021-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1220.99,Bronze,0 +6718,Michael Day,vthomas@reed.com,2021-01-16,"{""language"": ""ES"", ""currency"": ""EUR""}",3117.36,Silver,1 +6719,Kelly Melton,morrisrachael@hotmail.com,2021-04-13,"{""language"": ""FR"", ""currency"": ""MXN""}",6407.4,Bronze,1 +6720,Carol Thomas,nunezdavid@gmail.com,2020-06-21,"{""language"": ""DE"", ""currency"": ""MXN""}",1070.58,Gold,1 +6721,Chloe Silva,cjordan@monroe-jones.com,2021-04-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9982.53,Gold,0 +6722,Kara Whitaker,oconnordavid@wyatt-hernandez.org,2024-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6626.42,Bronze,1 +6723,Tyler Lewis,stephanieenglish@yahoo.com,2022-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",6162.95,Gold,0 +6724,James Miller,pierceandres@gmail.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""CAD""}",7956.69,Bronze,1 +6725,Sharon Cook,casey06@mccarthy-johnson.net,2024-07-01,"{""language"": ""FR"", ""currency"": ""GBP""}",9095.46,Gold,1 +6726,Jasmine Bush,howardflowers@sosa.com,2021-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1712.17,Gold,0 +6727,Rachel Woods,christina56@yahoo.com,2024-07-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8602.62,Bronze,1 +6728,Douglas Newton,gellis@yahoo.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""GBP""}",9706.15,Silver,0 +6729,Mr. Andrew Mack DDS,adamsdustin@hotmail.com,2020-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",9368.99,Silver,1 +6730,Laura Finley,tuckerjames@murray.com,2024-09-23,"{""language"": ""EN"", ""currency"": ""USD""}",3304.47,Bronze,0 +6731,Lauren Boyer,thodges@cooper.info,2023-03-19,"{""language"": ""EN"", ""currency"": ""USD""}",9511.33,Silver,0 +6732,Alan Baker,xbray@mcdonald.com,2021-10-06,"{""language"": ""EN"", ""currency"": ""USD""}",4487.62,Bronze,1 +6733,Joanna Bush,zgraves@nelson.biz,2023-09-14,"{""language"": ""DE"", ""currency"": ""GBP""}",7559.28,Silver,1 +6734,Ronnie Howell,browngabriella@yahoo.com,2024-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5902.03,Gold,1 +6735,Cynthia Knight,debbie80@ortiz.com,2022-05-05,"{""language"": ""FR"", ""currency"": ""EUR""}",1254.16,Bronze,1 +6736,Vincent Rodriguez,rhondaduke@gibson.com,2023-11-03,"{""language"": ""DE"", ""currency"": ""GBP""}",8889.28,Bronze,1 +6737,Shawna Griffin,hollandisaac@ellis-perez.org,2023-09-20,"{""language"": ""FR"", ""currency"": ""EUR""}",9612.91,Gold,1 +6738,Monica Christian,robin44@nguyen.com,2021-03-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4147.87,Bronze,1 +6739,David Thompson,allencarl@hotmail.com,2020-12-08,"{""language"": ""ES"", ""currency"": ""GBP""}",9239.0,Bronze,1 +6740,Stephanie Harrison,williamsjermaine@gmail.com,2024-09-30,"{""language"": ""FR"", ""currency"": ""CAD""}",8850.68,Bronze,0 +6741,Elizabeth Campbell,padkins@king.biz,2021-12-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6598.89,Silver,1 +6742,Carla Moore,monicalong@hotmail.com,2023-03-03,"{""language"": ""FR"", ""currency"": ""MXN""}",7275.51,Silver,0 +6743,Tamara Salazar DVM,uromero@hotmail.com,2022-07-30,"{""language"": ""EN"", ""currency"": ""CAD""}",1586.5,Gold,1 +6744,Christina White,kevin73@yahoo.com,2021-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",4185.33,Silver,0 +6745,Robert Miller,victoriajohnson@montgomery.com,2024-04-04,"{""language"": ""FR"", ""currency"": ""MXN""}",3360.09,Gold,0 +6746,Lacey Watkins,pateleric@green-robertson.com,2024-11-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9192.81,Gold,0 +6747,Daniel Rice,lucasbradley@sanchez.net,2024-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4427.75,Bronze,1 +6748,Colleen Wagner,xsloan@garcia.com,2022-06-17,"{""language"": ""FR"", ""currency"": ""USD""}",7205.82,Silver,1 +6749,Misty Pollard,sarahshaffer@evans.com,2024-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",9180.49,Bronze,0 +6750,Dr. Lori Matthews,pshepard@stewart.com,2024-02-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8454.56,Silver,0 +6751,Joseph Weaver,robertjoyce@smith.com,2021-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6961.05,Bronze,0 +6752,Tracy Fletcher,ywright@smith.net,2022-01-28,"{""language"": ""IT"", ""currency"": ""GBP""}",8191.82,Silver,0 +6753,Kerry Johnson,jonathan55@holland.com,2022-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",391.35,Silver,0 +6754,Jerome Meadows,melinda22@hotmail.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",5763.92,Bronze,0 +6755,Ryan Lawson,alexis71@gmail.com,2022-02-21,"{""language"": ""EN"", ""currency"": ""EUR""}",5994.26,Silver,0 +6756,Christian Anderson,blackwelljustin@ritter-liu.com,2024-02-14,"{""language"": ""DE"", ""currency"": ""GBP""}",3067.65,Gold,0 +6757,Thomas Scott,samantharobbins@yahoo.com,2022-01-16,"{""language"": ""FR"", ""currency"": ""GBP""}",8643.18,Silver,0 +6758,Nicole Fields,vazquezdavid@hotmail.com,2023-12-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3883.63,Bronze,0 +6759,Sandra Dixon,dlambert@mitchell.com,2021-04-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4184.97,Bronze,0 +6760,Kelly Hebert,vasquezdiana@hotmail.com,2020-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",6094.36,Gold,0 +6761,Molly Taylor,iduncan@gmail.com,2021-11-28,"{""language"": ""IT"", ""currency"": ""EUR""}",696.38,Bronze,0 +6762,Teresa Parrish,lisa81@peters-page.biz,2023-04-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6278.33,Bronze,1 +6763,Danielle Herrera,andrewslauren@gmail.com,2021-09-14,"{""language"": ""ES"", ""currency"": ""USD""}",1947.77,Gold,1 +6764,Michael English,austin16@hotmail.com,2024-05-07,"{""language"": ""EN"", ""currency"": ""MXN""}",7752.72,Gold,0 +6765,Brian Wolfe,ychandler@yahoo.com,2022-05-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6316.98,Gold,0 +6766,Mrs. Tina Perez,clarkmichelle@hotmail.com,2023-08-09,"{""language"": ""DE"", ""currency"": ""CAD""}",1559.86,Silver,1 +6767,John Hart,chaseconner@yahoo.com,2023-10-14,"{""language"": ""DE"", ""currency"": ""USD""}",8033.82,Bronze,1 +6768,Jonathan Fisher,matthewandersen@reyes.com,2023-01-06,"{""language"": ""FR"", ""currency"": ""USD""}",1175.51,Silver,1 +6769,Alexis Miller,levyphilip@gmail.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""MXN""}",1108.11,Gold,0 +6770,Eric Jones,butlerdavid@yahoo.com,2024-09-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9520.02,Gold,1 +6771,Paul Parker,jacksonjames@mueller.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""CAD""}",882.86,Gold,0 +6772,Jennifer Kidd,stevenramos@johnson-johnson.biz,2024-07-07,"{""language"": ""FR"", ""currency"": ""USD""}",1845.68,Gold,0 +6773,Andre Robles,mcgeecrystal@yahoo.com,2021-03-06,"{""language"": ""EN"", ""currency"": ""USD""}",9476.7,Gold,0 +6774,Gregory Bishop,matthew29@hotmail.com,2023-02-28,"{""language"": ""IT"", ""currency"": ""GBP""}",3887.47,Gold,1 +6775,Paul Trevino,qwashington@bell-lopez.org,2021-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8265.32,Silver,1 +6776,Pamela Ramirez,nicole12@gmail.com,2019-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7516.74,Gold,0 +6777,Eric Cunningham,tyler47@villegas.com,2022-09-25,"{""language"": ""ES"", ""currency"": ""EUR""}",9264.75,Bronze,0 +6778,Jennifer Moreno,zacharyrivera@gmail.com,2024-02-21,"{""language"": ""EN"", ""currency"": ""USD""}",1588.82,Bronze,0 +6779,Melissa Davis,wwilliams@gmail.com,2022-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",2950.6,Gold,0 +6780,Brandy Gilmore,bsalazar@hotmail.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""USD""}",9310.47,Bronze,1 +6781,Randy Mayer,emily82@gmail.com,2023-08-17,"{""language"": ""DE"", ""currency"": ""CAD""}",7705.52,Silver,0 +6782,Jeremy Buchanan,jodyherrera@stephens-mcdonald.com,2023-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",1403.75,Bronze,1 +6783,Matthew Hicks,matthewarias@hotmail.com,2024-02-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8338.73,Silver,0 +6784,John Mcdaniel,mackenzie72@gmail.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8957.07,Bronze,1 +6785,Kelly Stanley,nmedina@gmail.com,2024-01-25,"{""language"": ""EN"", ""currency"": ""GBP""}",6438.85,Gold,1 +6786,Teresa Stanley,manningpaul@horne-james.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""GBP""}",795.99,Gold,1 +6787,Mr. Christopher Meadows,lmartin@yahoo.com,2024-03-15,"{""language"": ""FR"", ""currency"": ""GBP""}",639.86,Silver,0 +6788,David Moore,davidmartinez@gray-johnson.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",9536.41,Silver,1 +6789,Chad Long,conleymelissa@hotmail.com,2023-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",244.4,Bronze,0 +6790,Christopher Hoover,darlene44@gmail.com,2021-02-10,"{""language"": ""ES"", ""currency"": ""GBP""}",488.82,Gold,0 +6791,Stephanie Santiago,bflores@nunez-dixon.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",284.83,Silver,1 +6792,Janice Robinson,udunn@yahoo.com,2021-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",8013.88,Bronze,0 +6793,Shannon Powers,sherririddle@hotmail.com,2024-03-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8316.9,Silver,0 +6794,Juan Fuller,williamsmith@gmail.com,2024-10-24,"{""language"": ""IT"", ""currency"": ""MXN""}",2516.65,Gold,1 +6795,Samantha Baxter,alanshepherd@fernandez.com,2022-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3192.46,Silver,0 +6796,Eric Rowland,nancygibson@avery.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""USD""}",740.54,Gold,0 +6797,Ellen Foster,clewis@jones.biz,2020-07-22,"{""language"": ""DE"", ""currency"": ""CAD""}",8078.65,Gold,1 +6798,William Sutton,linda64@mcconnell.biz,2022-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",459.32,Bronze,0 +6799,Brenda Kelly,nduran@griffin.com,2020-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",3966.17,Bronze,1 +6800,James Estrada,deanna23@hotmail.com,2020-03-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9115.32,Gold,1 +6801,Daniel Lewis,andrewgillespie@gmail.com,2024-03-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3598.45,Silver,1 +6802,Miranda Morgan,sandersangela@gmail.com,2020-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",9769.45,Bronze,0 +6803,Alicia King,jeff08@yahoo.com,2022-07-14,"{""language"": ""FR"", ""currency"": ""GBP""}",7608.95,Silver,0 +6804,Billy Andrews,jenniferwarren@gmail.com,2020-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3947.07,Bronze,1 +6805,Edward Chaney,davidcasey@yahoo.com,2021-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",9398.85,Silver,1 +6806,William Meyer,xrodriguez@ferguson.com,2023-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",1842.59,Silver,1 +6807,Dana Smith,brucenichols@gmail.com,2022-05-03,"{""language"": ""EN"", ""currency"": ""USD""}",8246.0,Bronze,0 +6808,Kevin Palmer MD,ulopez@gmail.com,2020-08-28,"{""language"": ""ES"", ""currency"": ""USD""}",9714.26,Silver,1 +6809,Derek Robertson,laura35@gmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",681.3,Silver,1 +6810,Mrs. Julie Fleming,umitchell@gmail.com,2021-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4901.88,Gold,0 +6811,Cody Baker,zkidd@barnes.org,2021-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",6052.36,Silver,1 +6812,Dawn Romero,richard97@hotmail.com,2023-02-20,"{""language"": ""DE"", ""currency"": ""MXN""}",6616.16,Bronze,0 +6813,Kelly Reed,kirkcarl@cox-knapp.com,2021-12-06,"{""language"": ""ES"", ""currency"": ""USD""}",6598.5,Gold,0 +6814,Christopher Lawrence,acevedohannah@gmail.com,2023-09-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9956.35,Bronze,0 +6815,Julie Hernandez,bushjohn@taylor-green.com,2024-06-09,"{""language"": ""IT"", ""currency"": ""USD""}",329.05,Bronze,0 +6816,Pamela Rangel,victoriasmith@king.com,2021-01-30,"{""language"": ""IT"", ""currency"": ""USD""}",4889.0,Bronze,0 +6817,Colin Mack,jordanmichael@hamilton.net,2022-05-09,"{""language"": ""ES"", ""currency"": ""USD""}",595.82,Gold,1 +6818,Stacy Gonzalez,phillipreed@hotmail.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",8331.83,Silver,1 +6819,Troy Morales,elizabethholmes@gmail.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",1329.86,Gold,0 +6820,Tim Brown,herreraian@hotmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",3210.6,Bronze,0 +6821,Kristina Jones,wortiz@sparks.com,2024-04-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2507.59,Silver,0 +6822,Phillip Gutierrez,lmartinez@mitchell.com,2021-07-03,"{""language"": ""DE"", ""currency"": ""CAD""}",2037.32,Bronze,1 +6823,Jaclyn Gomez,reginastevens@yahoo.com,2023-09-04,"{""language"": ""ES"", ""currency"": ""MXN""}",4119.33,Bronze,0 +6824,William Singh,tammy54@gmail.com,2022-10-04,"{""language"": ""ES"", ""currency"": ""USD""}",3975.16,Bronze,0 +6825,Tammy Smith,donald73@yahoo.com,2022-04-03,"{""language"": ""DE"", ""currency"": ""CAD""}",1718.5,Bronze,0 +6826,Deanna Herrera,thomasross@yahoo.com,2022-05-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7351.36,Silver,0 +6827,Jennifer Webb,sholt@munoz-miller.org,2024-01-31,"{""language"": ""FR"", ""currency"": ""MXN""}",517.38,Gold,1 +6828,Scott Doyle,zallen@nelson.com,2022-10-09,"{""language"": ""DE"", ""currency"": ""GBP""}",1873.22,Gold,1 +6829,Caleb Jones,meganmonroe@weaver-matthews.com,2021-03-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1313.73,Bronze,0 +6830,Kenneth Moore,tcooper@yahoo.com,2022-06-04,"{""language"": ""IT"", ""currency"": ""USD""}",3341.28,Gold,0 +6831,Ian Cox,nsmith@sanders-martinez.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1417.72,Bronze,1 +6832,Mark Beck,danny30@hotmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""CAD""}",142.74,Gold,1 +6833,Joanna Smith,alexandersnyder@hotmail.com,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",906.45,Silver,1 +6834,Bryan Fletcher,howardmario@huff.com,2024-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7913.72,Silver,0 +6835,Ms. Gabrielle Tran,joshua84@reeves.com,2022-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",3438.68,Silver,1 +6836,Glenn Kelly,scott12@hotmail.com,2022-02-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5993.13,Gold,0 +6837,Jacqueline Parker,danielle83@gmail.com,2020-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",1840.07,Gold,0 +6838,Richard Miller,evasquez@yahoo.com,2023-03-28,"{""language"": ""FR"", ""currency"": ""USD""}",4907.59,Silver,0 +6839,Jacob Savage,billy81@hotmail.com,2020-06-20,"{""language"": ""ES"", ""currency"": ""EUR""}",4760.21,Gold,0 +6840,Dana Navarro,williamparker@yahoo.com,2023-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5988.16,Bronze,0 +6841,Jacqueline Martin,fishershawn@santos.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",7462.45,Gold,0 +6842,Mark Martinez,lisabarker@rivera-allen.com,2022-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",2812.68,Silver,1 +6843,Kyle Potts,thomasstewart@bell-howell.com,2023-09-16,"{""language"": ""IT"", ""currency"": ""EUR""}",6643.18,Silver,0 +6844,Robin Arroyo,dhawkins@west.org,2022-06-30,"{""language"": ""ES"", ""currency"": ""USD""}",9040.1,Silver,0 +6845,Becky Maxwell,tammymorales@sullivan.net,2024-01-29,"{""language"": ""IT"", ""currency"": ""CAD""}",4174.73,Gold,0 +6846,Tim Kim,zjones@hendricks.biz,2020-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",8576.08,Silver,1 +6847,Jacqueline Avila,onorton@gmail.com,2022-10-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8907.91,Bronze,1 +6848,Jeffrey Deleon,andrewsalazar@bowers.biz,2023-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",9346.42,Gold,1 +6849,Robert Grant,wrightdennis@gmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7349.77,Bronze,1 +6850,Nancy Hurst,ndalton@briggs.com,2020-06-11,"{""language"": ""DE"", ""currency"": ""USD""}",1384.62,Gold,0 +6851,Michael Oneill,mary80@gmail.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""EUR""}",1366.13,Gold,1 +6852,Austin Daniels,hware@white-parker.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""EUR""}",3013.6,Bronze,1 +6853,Jessica Santiago,lauriemoreno@yahoo.com,2020-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",5041.78,Bronze,1 +6854,Kim Hall,zbyrd@marshall-higgins.com,2021-03-22,"{""language"": ""DE"", ""currency"": ""GBP""}",9152.94,Gold,0 +6855,Christy Howard,chavezmaria@curtis-berry.biz,2024-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",3678.45,Bronze,0 +6856,Justin Williams,tricia64@gmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",9090.93,Silver,1 +6857,Karen Herrera,curtisjohnson@gmail.com,2020-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",3469.32,Silver,0 +6858,Taylor Walton,johndunn@howard.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",311.47,Gold,1 +6859,Mary Wallace,kayla95@gmail.com,2021-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",1238.12,Silver,1 +6860,Stephen Ramirez,jturner@davis.com,2020-05-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4877.14,Gold,1 +6861,Steven Daniels,alejandroboyd@smith.net,2023-08-13,"{""language"": ""FR"", ""currency"": ""EUR""}",5382.34,Bronze,1 +6862,Melinda Riley,kevin09@aguirre.org,2022-09-20,"{""language"": ""ES"", ""currency"": ""MXN""}",4001.57,Gold,1 +6863,Brian Ruiz,daniel91@gmail.com,2024-11-21,"{""language"": ""IT"", ""currency"": ""GBP""}",9369.36,Gold,0 +6864,Brenda Peck,connie72@reeves.info,2020-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2062.53,Gold,1 +6865,Hannah Lane,eschneider@hotmail.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8313.15,Bronze,0 +6866,Patricia Montgomery,jeanneperkins@bray.com,2020-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",7963.72,Bronze,1 +6867,Kelly Pineda,ulyons@mcbride.com,2023-01-21,"{""language"": ""EN"", ""currency"": ""CAD""}",7274.13,Gold,1 +6868,Todd Knight,melissa48@moreno.biz,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",164.77,Gold,1 +6869,Kyle Logan,danielhunter@harrington-scott.info,2022-08-19,"{""language"": ""IT"", ""currency"": ""USD""}",7130.95,Silver,0 +6870,Rachael Hunter,jacobcampbell@yahoo.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""GBP""}",4321.02,Bronze,0 +6871,Melissa Wu,thomastraci@gmail.com,2024-06-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4486.47,Gold,0 +6872,Yvonne Irwin,elijahaustin@gmail.com,2024-03-06,"{""language"": ""EN"", ""currency"": ""GBP""}",8157.04,Bronze,0 +6873,Charles Gonzalez,alvaradosara@hotmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""CAD""}",9502.89,Silver,0 +6874,James Fuller DDS,michaelcox@gmail.com,2023-03-28,"{""language"": ""IT"", ""currency"": ""USD""}",1364.63,Gold,1 +6875,Amy Davis,lreyes@yahoo.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",2783.81,Silver,1 +6876,Mario Villarreal,wkelly@hotmail.com,2024-07-14,"{""language"": ""FR"", ""currency"": ""USD""}",5850.75,Bronze,0 +6877,Alexis Ramirez,croy@hotmail.com,2021-05-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8628.64,Bronze,1 +6878,Daniel Benson PhD,sherry28@berry.net,2024-12-07,"{""language"": ""FR"", ""currency"": ""USD""}",2521.3,Silver,0 +6879,Elizabeth Brewer,geraldedwards@rivera-bennett.biz,2020-02-24,"{""language"": ""DE"", ""currency"": ""GBP""}",5303.15,Gold,1 +6880,Melissa Payne DDS,markrichard@yahoo.com,2023-11-14,"{""language"": ""DE"", ""currency"": ""EUR""}",5226.9,Silver,0 +6881,Richard Hart,wilsonashley@yahoo.com,2022-07-17,"{""language"": ""DE"", ""currency"": ""GBP""}",1814.08,Silver,1 +6882,Carolyn Smith DVM,larryperkins@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7430.02,Bronze,1 +6883,Alyssa Anderson,thorn@gmail.com,2024-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6048.19,Silver,0 +6884,Jessica Lee,leebrandy@bennett-shepherd.com,2021-02-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9618.37,Silver,0 +6885,Marc Cruz,christinacardenas@gomez-stevens.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1943.05,Gold,0 +6886,Rebecca Gilbert,georgeallen@macdonald.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",7357.87,Gold,1 +6887,Jesse Spencer,omiller@castro-young.com,2020-05-27,"{""language"": ""DE"", ""currency"": ""CAD""}",7996.03,Silver,1 +6888,Sarah Goodwin,katherine17@gmail.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""USD""}",771.24,Bronze,0 +6889,Cindy Smith,rosalesbrenda@price.net,2020-02-22,"{""language"": ""ES"", ""currency"": ""GBP""}",884.33,Silver,0 +6890,Shelley Deleon,lesliejensen@morris.biz,2023-03-10,"{""language"": ""DE"", ""currency"": ""USD""}",2008.79,Bronze,0 +6891,Mary Escobar,briana14@yahoo.com,2021-09-16,"{""language"": ""DE"", ""currency"": ""USD""}",557.01,Silver,0 +6892,Julie Medina,chasesmith@lester-sanford.biz,2020-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9082.73,Gold,0 +6893,Emily Miller,amber43@rowland-peters.org,2020-06-25,"{""language"": ""FR"", ""currency"": ""MXN""}",6342.38,Silver,0 +6894,Anthony Hicks,jameshenson@yahoo.com,2023-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",8464.96,Gold,0 +6895,Ian Brown MD,williamfigueroa@gmail.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""USD""}",7381.59,Gold,1 +6896,Randy Martinez,whitegary@franklin.com,2023-10-12,"{""language"": ""EN"", ""currency"": ""GBP""}",5319.66,Gold,1 +6897,Shannon Raymond,david94@griffin.info,2020-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",5624.07,Silver,0 +6898,Keith Austin,lwalker@yahoo.com,2022-03-28,"{""language"": ""DE"", ""currency"": ""MXN""}",9897.96,Gold,1 +6899,Todd Elliott,pwatkins@gmail.com,2024-02-10,"{""language"": ""EN"", ""currency"": ""CAD""}",4336.34,Bronze,1 +6900,Elizabeth Williams,gardneranthony@hotmail.com,2023-06-30,"{""language"": ""IT"", ""currency"": ""CAD""}",2448.76,Gold,1 +6901,Jonathan Atkins,hwilcox@walker.org,2022-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",4216.17,Bronze,1 +6902,Michelle Gonzalez MD,veronicajackson@gmail.com,2023-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",2737.4,Silver,0 +6903,Carolyn Bailey,mendozamargaret@hotmail.com,2023-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",2191.78,Silver,1 +6904,Natasha Gonzalez,jonathan73@hotmail.com,2022-12-27,"{""language"": ""ES"", ""currency"": ""MXN""}",4495.71,Bronze,1 +6905,Christina Rogers,pandrews@hampton.net,2024-04-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3816.31,Bronze,1 +6906,Sara Chavez,rwhite@gmail.com,2020-07-20,"{""language"": ""IT"", ""currency"": ""EUR""}",9614.92,Silver,0 +6907,Savannah Cochran,lloydandrew@hotmail.com,2021-12-23,"{""language"": ""IT"", ""currency"": ""MXN""}",7819.53,Gold,1 +6908,Evan Todd,mooreryan@nguyen-mann.net,2023-12-15,"{""language"": ""IT"", ""currency"": ""CAD""}",458.77,Bronze,0 +6909,Andre Rhodes Jr.,raymond51@morris.com,2022-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",7573.94,Gold,0 +6910,Crystal Tanner,leejohn@case-anderson.com,2024-03-08,"{""language"": ""IT"", ""currency"": ""GBP""}",7533.92,Bronze,0 +6911,Deborah Phelps,timothy99@garcia.com,2024-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8307.07,Silver,1 +6912,Sean Johnson,shawashley@hotmail.com,2023-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",813.06,Gold,1 +6913,Molly Jimenez,larry09@gmail.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""USD""}",6257.54,Silver,1 +6914,Latoya Neal,nhill@robinson-chen.org,2022-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",4935.55,Gold,1 +6915,Aaron Lewis,wwilson@harris.org,2022-10-15,"{""language"": ""EN"", ""currency"": ""EUR""}",1631.96,Silver,0 +6916,Sarah Shields,dkline@fitzpatrick.net,2024-03-26,"{""language"": ""EN"", ""currency"": ""CAD""}",1261.06,Silver,0 +6917,Sierra Garcia,tammy08@gmail.com,2022-11-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8151.17,Silver,1 +6918,Jorge Williams,smithnatalie@yahoo.com,2023-08-10,"{""language"": ""IT"", ""currency"": ""USD""}",7760.7,Silver,0 +6919,David Kennedy,matthewcruz@mcmahon.com,2022-08-25,"{""language"": ""EN"", ""currency"": ""CAD""}",7620.91,Gold,0 +6920,Nicholas Cooper,adrienne73@yahoo.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""CAD""}",8585.81,Bronze,1 +6921,Jennifer Cook,velasquezsarah@yahoo.com,2023-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8145.69,Bronze,0 +6922,David Young,uriley@yahoo.com,2023-08-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1634.8,Silver,1 +6923,Andre Thomas,carloswilliams@hotmail.com,2024-10-14,"{""language"": ""DE"", ""currency"": ""MXN""}",3971.71,Bronze,0 +6924,Gabriel Carter,brianbennett@yahoo.com,2023-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",5069.18,Silver,1 +6925,Gavin Conner,mary82@hotmail.com,2022-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9206.39,Gold,1 +6926,Aaron West,tanya04@logan-robinson.com,2023-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1222.62,Gold,1 +6927,Mark Young,carlosbaker@schmitt.com,2021-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1363.82,Silver,1 +6928,Tiffany Bush,kennethhoover@mcclure-robles.com,2023-06-22,"{""language"": ""DE"", ""currency"": ""CAD""}",6429.57,Gold,1 +6929,Michele Phillips,ezamora@thompson-jones.info,2019-12-20,"{""language"": ""EN"", ""currency"": ""EUR""}",8215.89,Bronze,0 +6930,Tracy Hughes,qcarr@bell-hoffman.com,2022-05-17,"{""language"": ""ES"", ""currency"": ""EUR""}",1641.46,Silver,1 +6931,Samuel Dominguez,omaxwell@gmail.com,2022-08-30,"{""language"": ""EN"", ""currency"": ""GBP""}",8747.17,Silver,1 +6932,Brooke Roberts,rubiodavid@butler.com,2022-09-21,"{""language"": ""IT"", ""currency"": ""USD""}",2671.35,Silver,1 +6933,Emily Hale,james40@hotmail.com,2023-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",101.66,Silver,0 +6934,Jacob Jackson,melodyking@jackson.com,2021-01-05,"{""language"": ""FR"", ""currency"": ""USD""}",4882.16,Silver,1 +6935,Bryan Zimmerman,john07@larson.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""USD""}",8200.24,Bronze,1 +6936,Audrey Butler,tracey36@yahoo.com,2022-12-06,"{""language"": ""IT"", ""currency"": ""USD""}",615.95,Gold,0 +6937,Brittany Lee,raymond62@gmail.com,2022-05-24,"{""language"": ""ES"", ""currency"": ""USD""}",1019.92,Gold,1 +6938,Matthew Howard,garnermichael@yahoo.com,2020-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2269.28,Silver,0 +6939,Julie Roberts,jodiwilliams@yahoo.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1107.4,Silver,1 +6940,Donna Blackwell,millerlori@hotmail.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""EUR""}",5922.38,Silver,0 +6941,Sandy Brown,saradiaz@walker.net,2019-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",5884.22,Silver,1 +6942,Gregory Wilson,stephanie05@gmail.com,2020-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",5981.86,Silver,1 +6943,Valerie Campbell,matthewmorales@ibarra-kelly.com,2021-08-15,"{""language"": ""EN"", ""currency"": ""EUR""}",1925.63,Gold,0 +6944,Marcia Velasquez,dorothyfoster@myers-martinez.com,2022-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5832.8,Silver,0 +6945,Michael Casey,odonnellariana@terrell.biz,2023-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4904.83,Bronze,0 +6946,Alexander Salinas,brownkaren@daniels-garcia.net,2020-07-21,"{""language"": ""FR"", ""currency"": ""MXN""}",2421.27,Gold,0 +6947,Nancy Frye,hornemarvin@gmail.com,2024-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3162.41,Gold,1 +6948,Brian Kennedy,lopezkathryn@yahoo.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""CAD""}",3952.25,Bronze,0 +6949,Carla Hopkins,rodgersjeffrey@gmail.com,2020-09-27,"{""language"": ""EN"", ""currency"": ""GBP""}",2896.75,Gold,1 +6950,Brandon Byrd,floresjames@gmail.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6275.95,Bronze,1 +6951,Stephanie Sanders,davischad@clark.com,2020-12-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6883.01,Silver,0 +6952,Jonathan Brewer,qbowen@yahoo.com,2024-02-08,"{""language"": ""ES"", ""currency"": ""MXN""}",2124.35,Bronze,1 +6953,Danielle Coleman,christinaparker@ayala.com,2020-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9273.18,Bronze,0 +6954,Wendy Bryant,scottsamuel@hotmail.com,2024-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",134.33,Bronze,0 +6955,Andre Waller,stephanie28@gmail.com,2020-06-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4197.45,Bronze,0 +6956,Matthew Higgins,jonathan13@garcia-moon.com,2020-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",3147.49,Bronze,0 +6957,Curtis Saunders,rebecca13@byrd.com,2023-08-01,"{""language"": ""EN"", ""currency"": ""USD""}",2416.55,Bronze,1 +6958,Jerry Washington,jonathansmith@turner.net,2023-03-08,"{""language"": ""IT"", ""currency"": ""MXN""}",9068.4,Bronze,1 +6959,Patrick Cannon,kathleenlester@gmail.com,2023-05-07,"{""language"": ""IT"", ""currency"": ""GBP""}",74.0,Silver,0 +6960,Lori Dixon,jamesrichard@hall.org,2024-05-19,"{""language"": ""DE"", ""currency"": ""MXN""}",8642.81,Bronze,1 +6961,Michelle Davidson,yhale@gmail.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""GBP""}",7772.75,Bronze,1 +6962,Keith Gonzalez,michellestewart@pierce.biz,2022-09-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2825.38,Bronze,0 +6963,Alexandra Meyer,levinejulie@yahoo.com,2023-10-23,"{""language"": ""IT"", ""currency"": ""GBP""}",8665.69,Gold,1 +6964,Teresa Rhodes,asantiago@collins.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9642.0,Bronze,0 +6965,David Hernandez,blackkenneth@ferguson.com,2021-01-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9690.85,Gold,0 +6966,George Hanson,christophermacdonald@gmail.com,2023-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",5486.57,Bronze,0 +6967,Jennifer Wilson,toddholloway@sullivan-brown.com,2023-01-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2876.01,Silver,1 +6968,Mary Schwartz,holly48@hotmail.com,2024-02-17,"{""language"": ""IT"", ""currency"": ""EUR""}",573.5,Gold,0 +6969,Catherine Herman,bellkyle@foster.com,2024-02-10,"{""language"": ""DE"", ""currency"": ""CAD""}",9867.43,Silver,0 +6970,Carolyn Andrews,irwinmichael@yahoo.com,2021-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9425.24,Gold,1 +6971,Ryan Gill,juanhowell@williams.org,2023-03-15,"{""language"": ""FR"", ""currency"": ""USD""}",6531.13,Bronze,0 +6972,Eric Burke,renee13@sanders-hayes.com,2024-07-05,"{""language"": ""EN"", ""currency"": ""USD""}",5051.74,Silver,0 +6973,Gary Tran,vwhite@vaughan.com,2022-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6816.47,Silver,1 +6974,Margaret Hall,brownbailey@yahoo.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",2643.46,Bronze,0 +6975,Jose Roberts,wrightcatherine@peterson.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""USD""}",313.95,Gold,0 +6976,Cassandra Rose,qbailey@gmail.com,2020-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",3019.54,Bronze,1 +6977,Paul Rodriguez MD,vowens@malone.net,2021-06-25,"{""language"": ""ES"", ""currency"": ""EUR""}",466.53,Silver,1 +6978,Phillip Hernandez,nscott@hotmail.com,2020-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",2609.96,Bronze,1 +6979,Johnny Smith,ccruz@lewis.info,2021-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",2489.0,Gold,1 +6980,Jeremy Miller,brownricardo@hotmail.com,2024-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",3524.13,Gold,1 +6981,Peggy Hoover,olarson@hart.net,2024-01-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7574.76,Bronze,1 +6982,Joshua Clark,bspencer@hotmail.com,2021-06-29,"{""language"": ""DE"", ""currency"": ""GBP""}",6350.21,Silver,1 +6983,Heather Cooper,dianaedwards@yahoo.com,2020-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1468.0,Gold,0 +6984,Nathan Payne,annafowler@gmail.com,2024-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7180.07,Bronze,0 +6985,Thomas Garcia,katrina56@barnes.com,2022-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",86.94,Bronze,1 +6986,Taylor Rogers,qhancock@gmail.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""USD""}",5253.35,Silver,0 +6987,Joshua Sandoval,huntlisa@yahoo.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",2780.23,Gold,0 +6988,James Franklin,nataliecarter@yahoo.com,2021-01-01,"{""language"": ""ES"", ""currency"": ""USD""}",6047.26,Silver,1 +6989,Eric Daniels,isteele@garcia-keith.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""CAD""}",1959.77,Silver,1 +6990,Danielle Ramirez,felicia20@hotmail.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""MXN""}",5416.42,Bronze,0 +6991,Tyler Graham,justin54@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""MXN""}",74.92,Bronze,0 +6992,Mr. Kevin Fisher,susan82@hotmail.com,2023-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",1631.08,Silver,0 +6993,Erica Farmer,johnsonlydia@hotmail.com,2023-06-27,"{""language"": ""DE"", ""currency"": ""EUR""}",9881.84,Gold,1 +6994,Melinda Bonilla,justin53@webb-adams.com,2020-11-12,"{""language"": ""EN"", ""currency"": ""MXN""}",476.78,Bronze,0 +6995,Kelly Moran,john64@gmail.com,2021-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",3828.07,Bronze,0 +6996,Frank Braun,burkejohn@gmail.com,2023-01-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1063.8,Gold,0 +6997,Debra Dickerson,olivia48@davis.biz,2021-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",1831.93,Silver,1 +6998,Peggy Griffin,dawsonsandra@gmail.com,2021-10-28,"{""language"": ""IT"", ""currency"": ""CAD""}",5286.11,Silver,0 +6999,Dr. Seth Scott,rwilson@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""EUR""}",7947.73,Silver,0 +7000,Joshua Hancock,khumphrey@gmail.com,2021-04-15,"{""language"": ""DE"", ""currency"": ""EUR""}",1488.28,Gold,1 +7001,Renee Mcclure PhD,alicia50@li.net,2023-07-22,"{""language"": ""ES"", ""currency"": ""USD""}",5761.58,Silver,0 +7002,Desiree Gibson,thomas34@noble-hernandez.com,2021-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",86.98,Silver,0 +7003,Mrs. Debbie Spencer,pgray@perez-casey.org,2021-03-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5468.69,Silver,0 +7004,Thomas Rowland,susan88@williams.info,2022-02-22,"{""language"": ""FR"", ""currency"": ""CAD""}",5494.02,Silver,1 +7005,Nathan Bates Jr.,dkim@moore.com,2021-02-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6561.3,Gold,1 +7006,Melissa Brown,gmayo@gmail.com,2020-11-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9468.5,Bronze,1 +7007,Rebecca Jones,moralesmaria@hotmail.com,2020-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",258.27,Silver,1 +7008,Julie Yang,hanthony@reed.com,2022-03-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1359.81,Silver,1 +7009,Laura Morris,lhawkins@hotmail.com,2020-06-07,"{""language"": ""EN"", ""currency"": ""CAD""}",549.29,Bronze,0 +7010,James Torres,gordonluke@yahoo.com,2022-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2425.53,Silver,0 +7011,Eric Fisher,johnsonmary@yahoo.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",6386.41,Silver,0 +7012,Paul Lopez,pughdebra@yahoo.com,2024-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",6311.42,Gold,0 +7013,Matthew Norman,john62@hotmail.com,2023-05-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5997.7,Gold,0 +7014,David Dunn,jenniferwise@hotmail.com,2023-05-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5757.6,Bronze,0 +7015,Christopher Charles,jacquelinefischer@yahoo.com,2022-04-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4798.96,Bronze,0 +7016,David Reeves,oconnorbetty@atkinson-hughes.com,2021-07-22,"{""language"": ""ES"", ""currency"": ""EUR""}",1494.83,Gold,1 +7017,Nicholas Kelly,smithtyler@yahoo.com,2021-03-30,"{""language"": ""EN"", ""currency"": ""MXN""}",309.53,Silver,1 +7018,Michael Peters,nicholsonfelicia@lopez.biz,2021-02-04,"{""language"": ""EN"", ""currency"": ""MXN""}",9645.68,Gold,0 +7019,Christopher Brown,brittany25@gmail.com,2020-05-22,"{""language"": ""IT"", ""currency"": ""GBP""}",3513.7,Gold,1 +7020,Michael Humphrey,karenandrade@hotmail.com,2020-06-15,"{""language"": ""FR"", ""currency"": ""EUR""}",7890.22,Silver,0 +7021,Shawna Davis,jason86@gmail.com,2020-04-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3600.51,Gold,0 +7022,Alec Moore,charlottehunter@parks.org,2022-07-05,"{""language"": ""IT"", ""currency"": ""USD""}",1491.53,Gold,0 +7023,David Bradshaw,hallkathleen@griffin.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7020.53,Silver,1 +7024,Logan Mills,ojones@gmail.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",6686.97,Bronze,0 +7025,Maria Carter,rachelrodriguez@johnson.com,2021-01-31,"{""language"": ""DE"", ""currency"": ""USD""}",9465.44,Bronze,0 +7026,Kim Hernandez,luis10@simmons.info,2020-10-31,"{""language"": ""ES"", ""currency"": ""CAD""}",5567.95,Bronze,1 +7027,Samuel Kennedy,julie86@tyler.com,2023-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5223.22,Bronze,0 +7028,Stephen Frederick,justinsolomon@davis-hoover.info,2019-12-31,"{""language"": ""FR"", ""currency"": ""EUR""}",8038.56,Bronze,0 +7029,Joseph Chavez,wrightmelissa@anderson.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""CAD""}",463.66,Gold,0 +7030,Carl Smith,williamsemily@yahoo.com,2021-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",2396.41,Gold,0 +7031,Emily Jenkins,kfreeman@williams.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9812.01,Bronze,1 +7032,Daniel Smith,bjohnston@cline.biz,2022-06-26,"{""language"": ""EN"", ""currency"": ""USD""}",5065.26,Gold,1 +7033,Paula Nixon,ewilliams@haney.com,2020-07-02,"{""language"": ""FR"", ""currency"": ""CAD""}",6101.87,Bronze,1 +7034,Joseph Harvey,howardkenneth@rodriguez.com,2024-03-18,"{""language"": ""FR"", ""currency"": ""CAD""}",2032.38,Silver,1 +7035,Jeffery Brown,thompsonshannon@wood-suarez.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""CAD""}",1817.52,Gold,1 +7036,Joanna Perez,shawhannah@hotmail.com,2024-05-13,"{""language"": ""EN"", ""currency"": ""GBP""}",3982.94,Silver,1 +7037,Lindsay Gilbert,staceydecker@yahoo.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",9219.65,Bronze,1 +7038,Kenneth Roberts,joseph21@house.biz,2020-06-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8505.8,Silver,1 +7039,Dave Lyons PhD,mcdowelllinda@smith-cole.com,2023-12-14,"{""language"": ""FR"", ""currency"": ""USD""}",9414.1,Gold,0 +7040,Cynthia Edwards,johnsonamanda@gmail.com,2023-01-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1357.93,Gold,1 +7041,Micheal Castro,goodwinmelissa@hotmail.com,2022-09-02,"{""language"": ""EN"", ""currency"": ""CAD""}",5080.4,Silver,1 +7042,James Maynard,julierose@hotmail.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",4066.44,Silver,0 +7043,Brian Hart,brandi99@hubbard-johnson.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""MXN""}",6961.21,Silver,1 +7044,Jeffrey Perez,paynenicole@clark-robinson.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",209.52,Silver,1 +7045,Shannon Buck,david07@vasquez-bates.net,2023-08-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9248.39,Gold,0 +7046,Christopher Doyle,martinlaura@gmail.com,2021-10-03,"{""language"": ""ES"", ""currency"": ""EUR""}",1908.55,Silver,0 +7047,Melinda Christensen,garciapatrick@haynes.com,2023-07-15,"{""language"": ""EN"", ""currency"": ""USD""}",1268.12,Bronze,0 +7048,Alyssa Steele,ericvega@rivera.net,2022-02-09,"{""language"": ""DE"", ""currency"": ""MXN""}",1977.06,Gold,0 +7049,Meghan West,pholder@hotmail.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""MXN""}",3423.12,Gold,0 +7050,Dustin Sullivan,fanderson@hotmail.com,2024-11-11,"{""language"": ""ES"", ""currency"": ""CAD""}",7560.87,Silver,1 +7051,Lauren Hicks,anthonyhiggins@kerr-rush.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",3701.38,Bronze,1 +7052,Leon Hoffman,jonathan94@robertson-barrett.com,2023-03-24,"{""language"": ""DE"", ""currency"": ""MXN""}",7006.47,Silver,1 +7053,Andrew Wagner,misty87@gmail.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""CAD""}",4352.35,Silver,1 +7054,Brittney Ramos,ytorres@hotmail.com,2024-07-07,"{""language"": ""ES"", ""currency"": ""MXN""}",4927.7,Silver,1 +7055,Kimberly Lopez,emma28@hotmail.com,2024-06-09,"{""language"": ""DE"", ""currency"": ""CAD""}",2095.85,Gold,1 +7056,Tanya Carson,justinjohnson@sullivan-moses.info,2023-07-26,"{""language"": ""DE"", ""currency"": ""CAD""}",6060.56,Bronze,1 +7057,Carrie Peters,jgalloway@yahoo.com,2020-07-25,"{""language"": ""IT"", ""currency"": ""EUR""}",6007.8,Gold,1 +7058,Theresa Rodriguez,cheryl53@yahoo.com,2021-01-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5576.89,Gold,1 +7059,Patrick Lowery,zlove@gmail.com,2020-01-22,"{""language"": ""IT"", ""currency"": ""MXN""}",4842.87,Silver,0 +7060,Martin Rich,angela42@miller.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""MXN""}",4644.71,Bronze,0 +7061,Sabrina Williams,ibruce@watson.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",690.27,Silver,0 +7062,Scott Bradford,derrick65@livingston.info,2019-12-20,"{""language"": ""ES"", ""currency"": ""CAD""}",3714.5,Bronze,0 +7063,Leslie Francis,adamsanthony@christensen.info,2021-09-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6094.73,Silver,1 +7064,Rebekah Solis,stephen45@yahoo.com,2023-08-26,"{""language"": ""ES"", ""currency"": ""USD""}",6881.4,Silver,1 +7065,Nichole Krause,heatherchristensen@yahoo.com,2023-09-22,"{""language"": ""ES"", ""currency"": ""USD""}",1042.04,Gold,0 +7066,Jason Lewis,yodonnell@gomez.net,2022-12-19,"{""language"": ""IT"", ""currency"": ""EUR""}",1657.57,Gold,1 +7067,Paul Hines,hbanks@yahoo.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""GBP""}",8527.39,Gold,0 +7068,Natalie Butler,lgomez@fowler.info,2021-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",2653.28,Silver,0 +7069,Donna Smith,steven62@santos.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",9469.73,Bronze,1 +7070,Philip Smith,winterskristin@cline.org,2021-01-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8255.77,Bronze,1 +7071,Scott Schaefer,wilcoxkristi@gmail.com,2023-12-16,"{""language"": ""DE"", ""currency"": ""CAD""}",309.47,Bronze,1 +7072,Zachary Anderson,pnichols@yahoo.com,2022-09-30,"{""language"": ""IT"", ""currency"": ""USD""}",1145.34,Bronze,1 +7073,Marissa Nash,johnchavez@montgomery.net,2021-08-23,"{""language"": ""DE"", ""currency"": ""USD""}",7326.41,Bronze,1 +7074,Michael Gomez,nicholassanchez@gutierrez-harris.net,2023-08-01,"{""language"": ""ES"", ""currency"": ""CAD""}",665.92,Gold,0 +7075,Sarah Wall,djones@gmail.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2576.67,Gold,0 +7076,Robin Gardner,amanda98@hotmail.com,2020-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",3993.28,Bronze,0 +7077,Theresa Lynch,charlesmyers@rodriguez.com,2020-07-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2071.37,Gold,1 +7078,Erica Sosa,vrobinson@reynolds.info,2024-07-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4725.06,Silver,1 +7079,Christina Coffey,rebeccastewart@hotmail.com,2022-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6191.52,Silver,0 +7080,Jamie Salazar,voconnor@yahoo.com,2023-08-20,"{""language"": ""IT"", ""currency"": ""EUR""}",9981.19,Gold,0 +7081,Brenda Guerra,gilbertzachary@lee.org,2024-10-25,"{""language"": ""DE"", ""currency"": ""MXN""}",2150.77,Bronze,1 +7082,Melissa Roberson,zmcgrath@yahoo.com,2023-08-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6609.57,Silver,1 +7083,Sara Craig,stewartallen@ashley.info,2021-07-26,"{""language"": ""IT"", ""currency"": ""USD""}",2117.4,Gold,0 +7084,Thomas Bates,craigmontgomery@yahoo.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""GBP""}",6139.54,Gold,0 +7085,Patricia Williams,ugarcia@gmail.com,2020-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",6126.42,Bronze,0 +7086,Cristina Jefferson,millerscott@nelson.com,2020-08-30,"{""language"": ""ES"", ""currency"": ""GBP""}",5220.79,Gold,1 +7087,Jennifer Campbell,mschroeder@dominguez-lopez.biz,2021-05-12,"{""language"": ""IT"", ""currency"": ""CAD""}",6610.05,Silver,0 +7088,Danielle Ramirez,cassandrabarker@smith.com,2022-01-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5806.77,Bronze,0 +7089,Michael Reynolds,drakeruth@booker.org,2023-10-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1516.84,Silver,1 +7090,Dorothy Flores,joseph96@gmail.com,2020-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4115.14,Bronze,1 +7091,John Jones,mallen@garcia.org,2021-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",2554.02,Gold,0 +7092,Meghan Mcdaniel,onelson@jones-rogers.com,2024-07-25,"{""language"": ""DE"", ""currency"": ""USD""}",4878.16,Silver,1 +7093,James Tucker,sarah91@yahoo.com,2024-09-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4570.24,Bronze,0 +7094,Ashley Singh,donald55@brown-higgins.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""CAD""}",528.69,Bronze,0 +7095,Jessica Davis,nevans@yahoo.com,2023-03-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1054.67,Gold,1 +7096,Sherri Matthews,whitesamantha@ramos.com,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4722.07,Bronze,1 +7097,Vincent Adams,fherring@ochoa.com,2024-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",9758.44,Bronze,1 +7098,Richard Gillespie,michael53@gmail.com,2024-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4075.79,Silver,1 +7099,Deborah Weber,kristen80@yahoo.com,2019-12-12,"{""language"": ""IT"", ""currency"": ""USD""}",5455.64,Gold,1 +7100,Mark Logan,pdavis@carter-valencia.com,2024-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5162.11,Silver,0 +7101,Jodi Lowery,pgarrett@davis.com,2024-05-07,"{""language"": ""FR"", ""currency"": ""GBP""}",437.66,Gold,0 +7102,Ms. Amy Mitchell,christianparker@yahoo.com,2023-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",1598.01,Gold,0 +7103,Michele Nelson,jamestran@hotmail.com,2022-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",7784.84,Silver,1 +7104,Tonya Jackson,conniehoward@molina-ramirez.net,2023-05-16,"{""language"": ""FR"", ""currency"": ""EUR""}",6468.61,Silver,0 +7105,Keith Allen,amyalexander@gmail.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",5241.04,Bronze,1 +7106,Randall Craig,jacksonlucas@moran.com,2020-04-30,"{""language"": ""DE"", ""currency"": ""USD""}",5265.43,Bronze,0 +7107,Julia Daniel,fking@yahoo.com,2021-08-16,"{""language"": ""FR"", ""currency"": ""CAD""}",763.96,Silver,1 +7108,William Anderson,victor06@bartlett.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",5095.12,Gold,1 +7109,Zachary Park,oball@hotmail.com,2023-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",8487.05,Silver,0 +7110,Edward Rice,robertgalvan@gmail.com,2024-01-30,"{""language"": ""EN"", ""currency"": ""USD""}",2764.87,Silver,1 +7111,Eric Jones,delacruzjennifer@yahoo.com,2020-01-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2124.12,Gold,0 +7112,Larry Gonzalez,albert76@fisher-lopez.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""USD""}",2001.51,Bronze,0 +7113,Daniel Sellers,sherry37@gallegos-stevens.org,2022-12-17,"{""language"": ""FR"", ""currency"": ""GBP""}",6309.08,Bronze,1 +7114,Trevor Clark,kimmeghan@hotmail.com,2022-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",1483.81,Bronze,0 +7115,Gloria Douglas,joannabriggs@yahoo.com,2020-08-26,"{""language"": ""ES"", ""currency"": ""EUR""}",7082.43,Silver,1 +7116,Jeremy Mcguire,pevans@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""USD""}",5855.52,Bronze,1 +7117,Wesley White,christophernelson@hernandez.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""MXN""}",8515.19,Gold,0 +7118,Traci Black,rachel79@yahoo.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""MXN""}",9411.3,Bronze,1 +7119,Alexander Horn,thess@gmail.com,2021-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",2275.15,Gold,0 +7120,James Hill,iwashington@yahoo.com,2020-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7154.61,Gold,0 +7121,Frank Dillon,linchase@gmail.com,2023-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",4698.65,Gold,1 +7122,Charles Miles,mrobinson@yahoo.com,2022-05-13,"{""language"": ""EN"", ""currency"": ""USD""}",2510.12,Bronze,0 +7123,Rebecca Baker,fdoyle@gonzalez.com,2022-02-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9238.93,Silver,0 +7124,Arthur Brown,matthew21@hotmail.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""EUR""}",8934.43,Gold,1 +7125,Greg Byrd DVM,moralesmark@carr-hansen.org,2023-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",6263.37,Bronze,0 +7126,Haley Woodward,jacqueline17@hotmail.com,2023-12-27,"{""language"": ""EN"", ""currency"": ""USD""}",5435.81,Bronze,0 +7127,Robert Sanders,michael08@gmail.com,2021-09-12,"{""language"": ""EN"", ""currency"": ""CAD""}",2783.12,Silver,1 +7128,Jenna Reynolds,heather43@hotmail.com,2020-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",742.45,Gold,0 +7129,Cynthia Johnson,donna93@nelson-williams.biz,2023-08-04,"{""language"": ""DE"", ""currency"": ""GBP""}",2642.93,Silver,0 +7130,Jeffrey Davila,villarrealjerry@lee-delacruz.biz,2021-09-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8437.19,Silver,0 +7131,Cynthia Martinez,swilliams@yahoo.com,2024-02-02,"{""language"": ""ES"", ""currency"": ""EUR""}",7582.94,Silver,1 +7132,Erica Mora,singletontyler@keith.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""USD""}",9912.66,Silver,1 +7133,Mary Barnes,xproctor@yahoo.com,2024-05-02,"{""language"": ""IT"", ""currency"": ""EUR""}",7129.1,Bronze,0 +7134,Melissa Wagner,sfoster@collins.org,2023-09-07,"{""language"": ""EN"", ""currency"": ""GBP""}",822.85,Bronze,1 +7135,Travis Cruz,marcusscott@jefferson.net,2021-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",3933.83,Bronze,0 +7136,Mark Russell,favila@lee.com,2024-10-29,"{""language"": ""IT"", ""currency"": ""EUR""}",4581.76,Gold,0 +7137,Nicole Palmer,gregorygordon@parker-meyer.com,2022-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",9080.51,Silver,0 +7138,Tammy Fernandez,julie26@anderson-moore.info,2022-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",696.09,Bronze,0 +7139,Charles Mckinney,devinvega@hotmail.com,2020-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",9371.47,Silver,1 +7140,Emily Mcgrath,blackwelldanielle@marsh.com,2024-08-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3147.44,Gold,0 +7141,Nicole Hughes,sanfordjoshua@ruiz.org,2022-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",7869.92,Silver,0 +7142,Daniel Young,codybryant@cole-rios.com,2020-09-07,"{""language"": ""IT"", ""currency"": ""EUR""}",2199.29,Silver,1 +7143,Christopher Hill,whitekevin@yahoo.com,2020-05-25,"{""language"": ""EN"", ""currency"": ""MXN""}",2684.39,Bronze,0 +7144,Amy Palmer,zjohnston@stevens.org,2023-07-13,"{""language"": ""FR"", ""currency"": ""MXN""}",4299.17,Silver,1 +7145,Harold Cox,renee65@hotmail.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""USD""}",2000.66,Silver,1 +7146,John Berry,kristopher01@carroll-moore.com,2020-01-29,"{""language"": ""FR"", ""currency"": ""GBP""}",9776.59,Silver,0 +7147,Crystal Daniels,lisaschwartz@powell.com,2024-10-02,"{""language"": ""EN"", ""currency"": ""CAD""}",8215.0,Gold,1 +7148,Scott Garcia MD,sharon72@harrington.com,2021-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",6674.65,Bronze,0 +7149,Melvin Boyd,brodriguez@andrews.com,2022-05-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9666.5,Gold,0 +7150,Miguel Cherry,dvega@brown.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",2123.45,Bronze,0 +7151,Michael Martinez,phelpschristina@gmail.com,2022-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",1869.66,Silver,1 +7152,John Brown,michaelhenson@lewis.com,2020-01-18,"{""language"": ""FR"", ""currency"": ""MXN""}",6981.85,Silver,0 +7153,Mary Garcia,joseph09@blackwell.info,2024-02-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3719.64,Bronze,1 +7154,Leonard Gonzalez,meghan93@hall-romero.net,2023-12-15,"{""language"": ""FR"", ""currency"": ""CAD""}",3467.22,Gold,0 +7155,Lisa Shelton,tasha92@hotmail.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2280.62,Gold,1 +7156,Justin Peterson,evansmith@hotmail.com,2023-02-17,"{""language"": ""FR"", ""currency"": ""MXN""}",4743.4,Bronze,1 +7157,Casey Henson,brittanywilson@hotmail.com,2022-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7775.05,Bronze,1 +7158,Jordan Gomez,olsonlisa@mccormick-smith.info,2024-11-15,"{""language"": ""FR"", ""currency"": ""GBP""}",2945.96,Gold,0 +7159,Jason Hall,villarrealclayton@hotmail.com,2024-04-21,"{""language"": ""FR"", ""currency"": ""CAD""}",5918.68,Silver,1 +7160,Kevin Thompson,smithdavid@gmail.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""USD""}",4181.54,Bronze,1 +7161,Alicia Hart,zachary47@taylor-nelson.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""CAD""}",197.84,Bronze,0 +7162,Rebecca Clay,ycampbell@yahoo.com,2024-08-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1964.77,Bronze,0 +7163,Charles Cox,kevin92@gmail.com,2021-11-13,"{""language"": ""FR"", ""currency"": ""MXN""}",8368.56,Gold,1 +7164,Ms. Jennifer Berry,christopher27@gmail.com,2023-08-04,"{""language"": ""ES"", ""currency"": ""USD""}",75.57,Silver,0 +7165,Steven Harris,michael82@yahoo.com,2024-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",6937.12,Bronze,0 +7166,Leah Wong,coltonhardy@gmail.com,2021-04-04,"{""language"": ""DE"", ""currency"": ""CAD""}",5939.27,Gold,0 +7167,Dr. James Sanders,madeline65@gmail.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",9361.14,Silver,1 +7168,Scott Torres,hclark@yahoo.com,2021-05-21,"{""language"": ""IT"", ""currency"": ""GBP""}",843.45,Gold,0 +7169,Jill Diaz,bjenkins@carr-walter.com,2022-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",6714.05,Silver,1 +7170,Jacob Bradford,tiffanyandrews@gmail.com,2021-08-08,"{""language"": ""FR"", ""currency"": ""CAD""}",9157.78,Gold,0 +7171,Patricia Rivas,craighernandez@gmail.com,2024-01-22,"{""language"": ""FR"", ""currency"": ""MXN""}",3336.01,Bronze,1 +7172,Tammy Martin,kurt71@powell.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",4895.1,Bronze,1 +7173,Lindsey Price,patrick64@moon-porter.com,2020-12-14,"{""language"": ""FR"", ""currency"": ""USD""}",6288.05,Gold,1 +7174,Corey Barnes,fquinn@andrade.com,2023-07-05,"{""language"": ""DE"", ""currency"": ""CAD""}",4475.27,Silver,1 +7175,Jamie Myers,rhonda80@shannon-johnson.com,2024-10-09,"{""language"": ""DE"", ""currency"": ""MXN""}",4652.98,Gold,1 +7176,Willie Sanchez,roberthicks@hotmail.com,2022-07-26,"{""language"": ""EN"", ""currency"": ""GBP""}",7124.37,Silver,1 +7177,Alexander Munoz,eclark@brown.org,2022-02-27,"{""language"": ""DE"", ""currency"": ""EUR""}",8043.65,Gold,1 +7178,Travis Jacobs,stevenelson@sanders.com,2024-03-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8468.24,Gold,0 +7179,Jason Davis,grahammichael@west-peck.com,2023-04-07,"{""language"": ""ES"", ""currency"": ""GBP""}",944.43,Gold,1 +7180,Brian Fitzgerald,teresa87@cortez.org,2021-04-29,"{""language"": ""FR"", ""currency"": ""GBP""}",6676.91,Gold,0 +7181,Kayla Wagner,renee57@welch-watts.net,2023-07-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7240.2,Bronze,1 +7182,Jennifer Wilson,marilynward@hoover-higgins.com,2021-08-07,"{""language"": ""DE"", ""currency"": ""MXN""}",670.8,Silver,0 +7183,Colleen Mcintosh,cochrandana@yahoo.com,2023-07-01,"{""language"": ""DE"", ""currency"": ""GBP""}",5523.34,Gold,0 +7184,David Howard,jill57@kennedy-gibbs.biz,2022-05-19,"{""language"": ""EN"", ""currency"": ""MXN""}",2318.23,Gold,1 +7185,Brian Sanchez,owhite@yahoo.com,2024-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",7583.83,Gold,1 +7186,Kimberly Saunders,todddominguez@gmail.com,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",772.47,Silver,0 +7187,Michele Gray,twade@martinez.org,2023-10-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7449.51,Bronze,1 +7188,Heather Davies,kennethcallahan@sutton.info,2020-12-08,"{""language"": ""DE"", ""currency"": ""CAD""}",1222.18,Silver,0 +7189,Joshua Foster,rebeccawillis@holland-evans.com,2021-06-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4610.8,Gold,0 +7190,Sarah Elliott,bpowers@gmail.com,2022-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",2146.16,Silver,0 +7191,Kristy Brooks,ryanhoward@hotmail.com,2023-03-11,"{""language"": ""DE"", ""currency"": ""USD""}",1056.87,Gold,1 +7192,Lauren White,nicholaspowell@schwartz-sherman.info,2020-04-10,"{""language"": ""IT"", ""currency"": ""USD""}",864.16,Gold,0 +7193,Maria Kemp,jessicajordan@esparza.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",1902.23,Gold,1 +7194,Kim Chen,rileymegan@gmail.com,2024-05-11,"{""language"": ""IT"", ""currency"": ""EUR""}",853.95,Bronze,1 +7195,Sarah Ochoa,jmarsh@yahoo.com,2023-11-02,"{""language"": ""IT"", ""currency"": ""USD""}",7990.57,Silver,1 +7196,Leslie Moore,osbornejorge@yahoo.com,2022-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3761.23,Gold,1 +7197,Victoria Williams,jordanchristopher@riley.com,2023-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",9014.36,Bronze,0 +7198,Donald Holland,dharper@gmail.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6799.97,Silver,0 +7199,William Henderson,maryjohnson@gmail.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""EUR""}",8190.7,Silver,0 +7200,Casey Clark,frankbrenda@yahoo.com,2020-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",1569.94,Gold,1 +7201,Andre Harper,ann90@burnett.com,2022-08-23,"{""language"": ""FR"", ""currency"": ""USD""}",6265.74,Gold,1 +7202,Aaron Wilson,rcarrillo@keller-christian.org,2020-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",1134.08,Silver,1 +7203,Janet Kelly,lynnwilson@gmail.com,2023-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",3729.84,Gold,1 +7204,Courtney Smith,charlesbryant@martinez.com,2020-12-12,"{""language"": ""ES"", ""currency"": ""MXN""}",141.28,Bronze,1 +7205,Sarah Noble,stephaniedelacruz@hotmail.com,2022-02-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5138.94,Bronze,0 +7206,Donna Sharp,daviskenneth@yahoo.com,2023-05-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4668.81,Gold,0 +7207,John Lee,elaineraymond@chavez-ramirez.com,2024-10-16,"{""language"": ""DE"", ""currency"": ""CAD""}",1835.84,Silver,1 +7208,Karen Johnson,whitenicholas@chang.net,2022-10-10,"{""language"": ""ES"", ""currency"": ""USD""}",1012.15,Silver,0 +7209,Julie Patrick,kimberlyglenn@hotmail.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""CAD""}",206.38,Silver,0 +7210,Christine Mcfarland,anthonygarrett@smith.com,2021-01-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2375.31,Gold,0 +7211,Sarah Harris,adrianacosta@hotmail.com,2021-05-03,"{""language"": ""FR"", ""currency"": ""EUR""}",4938.2,Bronze,0 +7212,Lindsey Armstrong,hansonjames@yahoo.com,2020-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",3628.73,Gold,0 +7213,Adam Stevenson,tporter@yahoo.com,2024-05-13,"{""language"": ""DE"", ""currency"": ""EUR""}",9832.51,Bronze,1 +7214,Lorraine Potts,freemanmalik@may.com,2024-05-17,"{""language"": ""DE"", ""currency"": ""CAD""}",234.72,Silver,0 +7215,Jeremiah Mitchell,pterrell@deleon.org,2022-08-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1709.93,Gold,1 +7216,Susan Gonzalez DDS,devincook@yahoo.com,2024-09-06,"{""language"": ""IT"", ""currency"": ""EUR""}",8021.76,Bronze,0 +7217,Dana Stark,caldwelljamie@hotmail.com,2022-02-06,"{""language"": ""EN"", ""currency"": ""CAD""}",1475.47,Gold,1 +7218,Jessica Knox,chensley@yahoo.com,2023-05-20,"{""language"": ""EN"", ""currency"": ""MXN""}",5795.09,Silver,1 +7219,Frank Parker,hespinoza@simmons.biz,2023-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",1383.86,Silver,1 +7220,Aimee Hopkins,aestrada@perez.net,2022-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",9964.91,Gold,0 +7221,Manuel Dixon,jessepearson@thompson-orozco.com,2020-06-18,"{""language"": ""ES"", ""currency"": ""USD""}",1011.59,Gold,1 +7222,Shannon Scott,joehill@gmail.com,2023-04-06,"{""language"": ""ES"", ""currency"": ""USD""}",1916.62,Gold,1 +7223,Nancy Taylor,rebeccasmith@hotmail.com,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",7099.36,Silver,1 +7224,Tammy Lyons,richard47@bennett.net,2021-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",7283.18,Bronze,1 +7225,Bernard Gallegos,lisaglenn@riggs-carter.com,2022-04-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1068.87,Gold,1 +7226,Jonathan Taylor,joshuarandall@hotmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2511.81,Gold,1 +7227,Maurice Brock,munozrebecca@taylor.com,2024-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5204.94,Gold,0 +7228,Michael Smith,brendan24@baker.net,2023-01-05,"{""language"": ""IT"", ""currency"": ""GBP""}",5205.27,Bronze,1 +7229,Tammy Warner,kevinkidd@hotmail.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""USD""}",8030.84,Gold,1 +7230,Adrian Pena,joysmith@harmon-williams.org,2021-02-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8305.65,Gold,0 +7231,Savannah Thomas,rebecca21@yahoo.com,2024-03-04,"{""language"": ""ES"", ""currency"": ""MXN""}",4160.79,Bronze,1 +7232,Destiny Perry,qedwards@gmail.com,2020-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4829.6,Gold,1 +7233,Charles Simmons,oliviapalmer@gmail.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4023.68,Silver,1 +7234,Heather Berry,zcontreras@gmail.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2646.83,Bronze,0 +7235,David Garcia,mcastillo@hotmail.com,2020-06-30,"{""language"": ""FR"", ""currency"": ""CAD""}",7789.8,Bronze,0 +7236,Daniel Walker,tara93@donaldson.com,2024-02-25,"{""language"": ""FR"", ""currency"": ""USD""}",4019.37,Silver,0 +7237,Richard Stevens,zweeks@lewis-hamilton.biz,2021-01-24,"{""language"": ""ES"", ""currency"": ""USD""}",1768.22,Gold,1 +7238,Andrew Ballard,jason42@gmail.com,2021-02-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8021.34,Silver,0 +7239,Julia Parker,osbornethomas@gmail.com,2022-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",8449.61,Silver,0 +7240,Felicia Espinoza,scott24@richards.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",9248.78,Silver,1 +7241,Sean Mendoza,perezjessica@gmail.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",5541.03,Silver,1 +7242,Jane Perez,ydelacruz@yahoo.com,2024-02-19,"{""language"": ""FR"", ""currency"": ""CAD""}",5891.17,Silver,1 +7243,Bruce Tucker,alvarezjennifer@harris.com,2022-04-09,"{""language"": ""EN"", ""currency"": ""GBP""}",7197.78,Bronze,1 +7244,Mr. James Mckee,steven87@choi.net,2020-12-05,"{""language"": ""IT"", ""currency"": ""CAD""}",4181.91,Gold,0 +7245,Rebecca Galloway,christopher97@hotmail.com,2020-06-26,"{""language"": ""DE"", ""currency"": ""USD""}",3999.85,Silver,1 +7246,Michael Jenkins,yvonnegriffin@hotmail.com,2022-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",520.66,Silver,1 +7247,Mark May,woodardpaul@brown.biz,2024-03-18,"{""language"": ""ES"", ""currency"": ""USD""}",524.32,Gold,0 +7248,Kathryn Watkins,michael81@yahoo.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""USD""}",1520.69,Bronze,0 +7249,Lonnie Peterson,nsanchez@hotmail.com,2023-01-28,"{""language"": ""DE"", ""currency"": ""EUR""}",9610.38,Bronze,0 +7250,Kevin Acevedo,thomas25@young-cantu.com,2022-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1089.66,Silver,0 +7251,Danielle White,pollardjennifer@king.com,2021-10-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3145.57,Silver,0 +7252,Caleb Sweeney,dianeclark@klein-warren.com,2020-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2201.23,Gold,1 +7253,Catherine Robinson,joelmoore@hotmail.com,2024-11-21,"{""language"": ""DE"", ""currency"": ""USD""}",5416.97,Gold,1 +7254,Christina King,jenniferharding@hotmail.com,2020-05-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1171.35,Silver,0 +7255,Angie Rhodes,curtisemma@avila.com,2022-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",8942.96,Gold,1 +7256,Melinda Smith,patrick87@christian-morales.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1037.52,Silver,1 +7257,Lisa Lawrence,bkrueger@farmer-miller.info,2024-06-19,"{""language"": ""IT"", ""currency"": ""MXN""}",8667.62,Bronze,1 +7258,Travis Harrington,ubooker@hotmail.com,2021-02-04,"{""language"": ""IT"", ""currency"": ""GBP""}",3015.8,Bronze,0 +7259,John Adkins,kristin80@yahoo.com,2023-05-02,"{""language"": ""EN"", ""currency"": ""GBP""}",3511.8,Bronze,0 +7260,John Rosales,kingvalerie@bradford.com,2020-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",6725.26,Silver,1 +7261,David Miller,zking@hernandez-johnson.com,2021-04-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6295.09,Gold,1 +7262,Dr. Stanley Johnson DDS,samuellopez@yahoo.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3192.24,Bronze,0 +7263,Omar Horton,williamlawrence@mckay-parker.com,2023-07-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3276.63,Bronze,1 +7264,Charles Mitchell,stephen71@gmail.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""GBP""}",5175.61,Gold,0 +7265,Karen Kennedy,linda11@davis-martinez.biz,2021-03-02,"{""language"": ""DE"", ""currency"": ""MXN""}",8161.34,Gold,1 +7266,Erica Buck,jeffersongarrett@carr.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",5370.92,Gold,0 +7267,Sandra West,melinda90@bird.com,2024-01-26,"{""language"": ""FR"", ""currency"": ""GBP""}",7319.07,Silver,1 +7268,Elizabeth Hickman,randy95@meza-johnson.biz,2020-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",6898.56,Bronze,0 +7269,Michael Campbell,dsimmons@irwin-warren.com,2023-03-24,"{""language"": ""DE"", ""currency"": ""GBP""}",961.8,Silver,0 +7270,Aaron Griffin,hgonzales@cummings-stein.org,2024-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",613.14,Bronze,1 +7271,Daniel Russell,tammyromero@hotmail.com,2023-11-11,"{""language"": ""DE"", ""currency"": ""GBP""}",864.16,Silver,0 +7272,Robert Wagner,erin70@bauer.com,2023-01-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3500.63,Gold,0 +7273,Dr. Johnathan Vega,jorge73@ramirez.org,2020-12-16,"{""language"": ""IT"", ""currency"": ""CAD""}",3945.31,Bronze,1 +7274,Travis Browning,joe77@yahoo.com,2021-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5230.89,Gold,1 +7275,Jacob Fitzpatrick,brandon92@sutton-lee.info,2020-02-26,"{""language"": ""DE"", ""currency"": ""CAD""}",1628.97,Silver,0 +7276,Amanda Massey,jeremyrodriguez@manning.com,2024-01-06,"{""language"": ""EN"", ""currency"": ""EUR""}",6040.51,Silver,1 +7277,Lisa Clark,justin48@hotmail.com,2022-11-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8686.17,Bronze,0 +7278,Amanda Conley,iali@bryant-cox.info,2024-12-04,"{""language"": ""IT"", ""currency"": ""GBP""}",4524.55,Silver,1 +7279,Michelle Shepherd,derrickbrown@yahoo.com,2020-05-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8855.23,Gold,1 +7280,Kayla Robinson,jerrymarks@clark.org,2020-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",3239.51,Bronze,1 +7281,Stephanie Davis DVM,daletucker@alvarez.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2926.08,Gold,0 +7282,Robert Lopez,brendalewis@pearson.info,2023-08-27,"{""language"": ""EN"", ""currency"": ""GBP""}",1323.84,Silver,0 +7283,Nichole Fisher,zdiaz@gmail.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""USD""}",2685.04,Bronze,0 +7284,Carol Bennett,harveyjuan@hotmail.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""EUR""}",2100.62,Gold,0 +7285,Mariah Santos,gravesthomas@gmail.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",4910.13,Bronze,1 +7286,Leah Chapman,charlesmontoya@steele.org,2021-04-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3192.65,Silver,1 +7287,Brett Melendez,sparksrenee@shepard-gross.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",7199.53,Gold,1 +7288,Deborah Rodriguez,silvalori@velasquez-martinez.com,2024-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",2582.74,Silver,1 +7289,Kelly Bell,elizabethroberts@gmail.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""USD""}",2692.62,Gold,1 +7290,Danielle Simon,lisaperez@gmail.com,2021-11-24,"{""language"": ""IT"", ""currency"": ""MXN""}",465.64,Bronze,0 +7291,Audrey Mathews,lewisjackie@hotmail.com,2020-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",65.28,Gold,1 +7292,Lisa Haynes,adam38@yahoo.com,2024-02-21,"{""language"": ""ES"", ""currency"": ""GBP""}",3796.34,Gold,1 +7293,Laura Espinoza,frances66@hotmail.com,2023-03-26,"{""language"": ""ES"", ""currency"": ""MXN""}",1758.64,Gold,1 +7294,Teresa Miller,samantha16@gmail.com,2022-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",1507.9,Bronze,1 +7295,Michelle Hoffman,klee@gmail.com,2022-07-03,"{""language"": ""DE"", ""currency"": ""CAD""}",1732.76,Bronze,0 +7296,Anthony Gibson,susan72@gmail.com,2022-03-09,"{""language"": ""ES"", ""currency"": ""GBP""}",9179.0,Silver,1 +7297,Joanne Murphy,bishopdillon@porter.org,2024-04-09,"{""language"": ""FR"", ""currency"": ""MXN""}",3146.48,Bronze,1 +7298,Daniel Murphy,luke31@yahoo.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""USD""}",4921.16,Silver,1 +7299,Robert Hunter,sheilareilly@price-jones.org,2024-07-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2835.23,Gold,0 +7300,Debra Cox,smithmercedes@wells.com,2022-04-26,"{""language"": ""DE"", ""currency"": ""GBP""}",666.07,Silver,0 +7301,Melanie Fernandez,michael69@yahoo.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""GBP""}",5941.14,Gold,0 +7302,Justin Hayes,ggarcia@hotmail.com,2021-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2817.01,Silver,1 +7303,Amy Steele,kathy11@clay.com,2020-06-26,"{""language"": ""EN"", ""currency"": ""USD""}",7689.77,Bronze,0 +7304,Nathan Bishop,billy80@williams.net,2021-06-22,"{""language"": ""IT"", ""currency"": ""GBP""}",6730.51,Silver,0 +7305,Kristy Campbell,ashleyabbott@hunt.net,2022-04-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2660.18,Gold,0 +7306,Joshua Smith,brianpotter@yahoo.com,2021-09-20,"{""language"": ""DE"", ""currency"": ""CAD""}",6997.07,Bronze,1 +7307,Rachel Edwards,pfigueroa@bowman.org,2024-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5824.2,Bronze,0 +7308,Brittany Hansen,alan37@hotmail.com,2021-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",2155.95,Bronze,1 +7309,Christina Allen,boydkatherine@cruz.com,2024-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",9081.5,Silver,0 +7310,Mary Wells,lauren75@gmail.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3796.86,Gold,0 +7311,Haley Phelps,casealexander@davis.com,2024-08-02,"{""language"": ""IT"", ""currency"": ""MXN""}",4549.93,Silver,1 +7312,Douglas Anderson,alexander74@gonzalez.biz,2024-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",7096.63,Silver,0 +7313,Christina Smith,douglasscott@hicks.com,2024-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",3032.76,Bronze,0 +7314,Brittney Whitehead,james25@gmail.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6966.88,Silver,1 +7315,Lee Lin,lwilson@yahoo.com,2021-12-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4243.36,Silver,0 +7316,Kathy Johnson,melissaarnold@olson-sullivan.com,2020-11-16,"{""language"": ""ES"", ""currency"": ""CAD""}",2223.15,Silver,1 +7317,Kayla Pope,owashington@hotmail.com,2023-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",5762.83,Bronze,0 +7318,Stephanie Evans,steven34@burke-rodriguez.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""CAD""}",5955.78,Gold,0 +7319,Michelle Andersen,theresa38@williams.com,2020-09-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4971.43,Gold,1 +7320,Amy Graham,nicole70@moss-parks.net,2022-08-02,"{""language"": ""EN"", ""currency"": ""GBP""}",752.67,Bronze,1 +7321,Karen Cruz,inavarro@shannon-dawson.info,2022-12-22,"{""language"": ""ES"", ""currency"": ""EUR""}",490.47,Silver,1 +7322,Kylie Walker,sean76@garcia-harris.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""USD""}",4288.31,Gold,1 +7323,Alexa Harper,eavery@robles.com,2020-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",8875.25,Gold,0 +7324,Monica Brown,davidross@orozco.net,2024-07-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4258.92,Bronze,1 +7325,Mrs. Susan Campbell,oweaver@yahoo.com,2023-09-04,"{""language"": ""DE"", ""currency"": ""EUR""}",7187.62,Silver,0 +7326,Angela Hunter,bennettandrea@gmail.com,2022-11-17,"{""language"": ""IT"", ""currency"": ""MXN""}",1464.42,Silver,1 +7327,Michael Anderson,haassusan@yahoo.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""GBP""}",6794.29,Silver,0 +7328,Deborah Morgan,lroman@morris.info,2022-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1231.44,Silver,1 +7329,Daniel Bush,susan24@gmail.com,2023-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",9860.35,Silver,1 +7330,Jessica Tran,campbellrobert@hester-knapp.info,2024-12-07,"{""language"": ""EN"", ""currency"": ""CAD""}",7600.1,Gold,0 +7331,John Mccormick,knightelizabeth@yahoo.com,2020-10-26,"{""language"": ""EN"", ""currency"": ""USD""}",9963.87,Silver,0 +7332,Krystal Moreno,anthonylee@yahoo.com,2020-01-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5676.68,Silver,0 +7333,Erica Brooks,lynchjeffrey@yahoo.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",6468.67,Gold,0 +7334,Christina Brown,rogersvincent@yahoo.com,2021-03-06,"{""language"": ""DE"", ""currency"": ""CAD""}",1672.81,Gold,0 +7335,Michelle Burke,geoffrey19@mueller.com,2022-10-22,"{""language"": ""DE"", ""currency"": ""EUR""}",9229.57,Bronze,0 +7336,Courtney Mcdonald,hcraig@yahoo.com,2021-04-23,"{""language"": ""IT"", ""currency"": ""EUR""}",9415.84,Silver,0 +7337,Timothy Williams,kara33@petty.info,2024-03-19,"{""language"": ""DE"", ""currency"": ""MXN""}",6802.65,Gold,1 +7338,Christopher Miller,kelly82@andrade-campbell.com,2023-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2142.45,Silver,1 +7339,Lisa Carter,kelsey84@hotmail.com,2023-04-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4723.37,Silver,0 +7340,Marie Sandoval,lisarodriguez@hayes.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",8163.69,Silver,1 +7341,Courtney Harrison,sanchezmatthew@compton-benson.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",1818.69,Bronze,0 +7342,Nicholas Hall,timothy28@hotmail.com,2024-04-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2561.99,Bronze,0 +7343,Anna Day,orichardson@gmail.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4963.82,Bronze,0 +7344,Michael Flores,seth88@lynch-george.com,2020-01-04,"{""language"": ""FR"", ""currency"": ""MXN""}",4362.38,Silver,0 +7345,Christopher Leonard,kenneth79@hotmail.com,2022-05-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4277.78,Bronze,0 +7346,Darryl Willis,jessicamorales@yahoo.com,2021-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",3021.09,Silver,1 +7347,Andrea Davila,thompsonlaura@hotmail.com,2024-10-31,"{""language"": ""FR"", ""currency"": ""EUR""}",7417.88,Bronze,1 +7348,Philip Cortez,crobinson@brooks.com,2021-01-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4184.12,Bronze,0 +7349,James Orozco,brownamy@yahoo.com,2020-02-03,"{""language"": ""DE"", ""currency"": ""EUR""}",2624.91,Gold,1 +7350,Kara Campos,benjaminblackburn@hotmail.com,2024-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",1405.48,Silver,1 +7351,David Barnett,gwendolyn41@chambers.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""CAD""}",3939.97,Silver,0 +7352,Thomas Jones,clinetodd@gmail.com,2023-07-28,"{""language"": ""DE"", ""currency"": ""MXN""}",805.76,Bronze,0 +7353,Tommy Mccoy,megan51@hotmail.com,2022-11-28,"{""language"": ""EN"", ""currency"": ""EUR""}",3052.07,Gold,0 +7354,Tina Gentry,derek74@gmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""MXN""}",4572.73,Bronze,0 +7355,Barbara Buckley,lisaibarra@yahoo.com,2023-09-01,"{""language"": ""DE"", ""currency"": ""EUR""}",3524.17,Gold,1 +7356,Lisa Stokes,ybell@wilson-marshall.org,2024-02-10,"{""language"": ""DE"", ""currency"": ""EUR""}",5903.74,Gold,1 +7357,April Williams,schneiderkelly@thompson.net,2023-03-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6848.75,Gold,0 +7358,Brian Shannon,annwoods@gmail.com,2023-03-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9192.34,Bronze,1 +7359,Kenneth Turner,paul13@parks.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""USD""}",5321.43,Gold,1 +7360,Sharon Benson,torresryan@yahoo.com,2024-09-09,"{""language"": ""DE"", ""currency"": ""MXN""}",9492.94,Gold,1 +7361,Stephen Shelton,timothy29@cruz.com,2020-06-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7534.52,Bronze,0 +7362,Robin Colon,echapman@gmail.com,2022-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",5615.06,Gold,0 +7363,David Garza,danielle99@sullivan.org,2021-11-30,"{""language"": ""FR"", ""currency"": ""USD""}",7797.46,Silver,0 +7364,Lauren Sosa DDS,jason91@peck-jones.net,2023-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",390.52,Bronze,0 +7365,Diamond Torres,daniel91@yahoo.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4219.41,Silver,1 +7366,Jenna Jackson,william01@smith.com,2024-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1999.44,Bronze,0 +7367,Christina Hardin,kevin56@griffin.info,2020-07-23,"{""language"": ""IT"", ""currency"": ""EUR""}",5056.21,Gold,0 +7368,Jennifer Leach,michaelsarah@yahoo.com,2024-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7058.99,Gold,0 +7369,Linda Mccormick,karl98@perez.org,2020-07-01,"{""language"": ""IT"", ""currency"": ""CAD""}",2371.36,Silver,1 +7370,Melanie Whitney,brian63@yahoo.com,2020-01-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7736.13,Gold,0 +7371,Ebony Bishop,ronald44@yang-robinson.org,2023-11-07,"{""language"": ""FR"", ""currency"": ""USD""}",9004.58,Gold,1 +7372,Brandi Shepard,cwilson@horn-manning.info,2023-06-21,"{""language"": ""IT"", ""currency"": ""EUR""}",4370.35,Bronze,1 +7373,John Jones,peterreeves@smith.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""MXN""}",644.15,Bronze,1 +7374,Lauren Duran,ljones@hotmail.com,2023-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",4227.98,Gold,1 +7375,Caitlin Davis,robertsmith@ray.info,2021-03-11,"{""language"": ""IT"", ""currency"": ""GBP""}",1102.14,Gold,0 +7376,Robert Lee,haley86@perez-jones.info,2023-09-06,"{""language"": ""EN"", ""currency"": ""MXN""}",4937.55,Silver,0 +7377,Courtney Johnson,perezmaurice@smith.net,2020-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",4899.35,Gold,0 +7378,Darryl Herring,kellis@hotmail.com,2023-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",766.99,Bronze,0 +7379,Adam Olson,cunninghamalice@gmail.com,2023-04-21,"{""language"": ""ES"", ""currency"": ""USD""}",656.1,Gold,0 +7380,Richard Tapia,robert80@yahoo.com,2020-03-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2112.88,Gold,1 +7381,Gabriel Baker,frederickpham@deleon.com,2024-11-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6048.64,Gold,1 +7382,Brian Gallegos,tylerhunt@hotmail.com,2020-08-15,"{""language"": ""FR"", ""currency"": ""GBP""}",4801.54,Gold,0 +7383,Tyler Martinez,patricia02@gmail.com,2022-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9215.82,Silver,1 +7384,Angela Li,joseph55@gmail.com,2024-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",9133.08,Gold,0 +7385,Jennifer Ibarra,ianderson@gmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""CAD""}",5858.62,Bronze,0 +7386,Donald Garcia,thompsontiffany@cisneros.com,2022-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",9349.3,Bronze,0 +7387,Heather Burke,davidcarter@yahoo.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5466.38,Silver,0 +7388,Jose Perez,brewerjessica@gmail.com,2023-02-07,"{""language"": ""FR"", ""currency"": ""MXN""}",4063.18,Bronze,1 +7389,Ricardo Merritt,oramos@hotmail.com,2021-01-25,"{""language"": ""FR"", ""currency"": ""EUR""}",8593.11,Gold,0 +7390,Mary Garcia,pyoung@barton-campbell.org,2021-09-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9808.39,Bronze,1 +7391,Elizabeth Myers,perezangel@yahoo.com,2022-01-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6780.35,Bronze,0 +7392,Michael Castro,hnelson@hotmail.com,2022-04-04,"{""language"": ""FR"", ""currency"": ""GBP""}",6909.64,Silver,1 +7393,Thomas Jensen,steventravis@scott.com,2024-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9459.41,Bronze,0 +7394,Melissa Melendez,wrichardson@miller.com,2023-09-15,"{""language"": ""DE"", ""currency"": ""USD""}",9120.79,Bronze,1 +7395,Jordan Smith,benjaminstanton@woodward.info,2020-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",352.87,Gold,1 +7396,Shawn Vega,zkeller@andrews.com,2024-11-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5378.45,Silver,1 +7397,Todd Martin,thompsonjack@yahoo.com,2021-12-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1497.84,Silver,1 +7398,Hannah Frazier,lmolina@peterson.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3007.2,Gold,0 +7399,Brenda Crawford,barbaraolsen@howell.info,2022-04-10,"{""language"": ""EN"", ""currency"": ""MXN""}",3344.59,Bronze,0 +7400,Miguel Howell,edwardscody@rodriguez.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""CAD""}",8070.57,Bronze,0 +7401,Christopher Chandler,christian96@oneill.com,2023-06-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6725.42,Gold,1 +7402,Phillip Anderson,pmatthews@wagner-carey.com,2024-02-06,"{""language"": ""ES"", ""currency"": ""MXN""}",3626.88,Bronze,1 +7403,Jared White,lisa38@hotmail.com,2024-10-10,"{""language"": ""DE"", ""currency"": ""MXN""}",9266.99,Gold,0 +7404,Melanie Martin,daniel69@hotmail.com,2020-07-07,"{""language"": ""IT"", ""currency"": ""CAD""}",3574.07,Silver,1 +7405,Ian Wise,youngkayla@gmail.com,2021-09-29,"{""language"": ""DE"", ""currency"": ""GBP""}",7950.97,Gold,0 +7406,Kyle Smith,michaelhill@yahoo.com,2024-02-14,"{""language"": ""DE"", ""currency"": ""EUR""}",3269.37,Bronze,1 +7407,William Stewart,cruzelizabeth@hotmail.com,2023-06-09,"{""language"": ""FR"", ""currency"": ""GBP""}",9504.6,Silver,0 +7408,Julie Castro,andrearamirez@woodward-ayala.com,2024-08-20,"{""language"": ""EN"", ""currency"": ""EUR""}",9125.52,Gold,1 +7409,Heather Richardson,carolynwagner@gmail.com,2022-04-28,"{""language"": ""FR"", ""currency"": ""MXN""}",8467.0,Silver,0 +7410,Elizabeth Middleton,xwelch@yahoo.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",7649.54,Bronze,0 +7411,Taylor Hopkins,hickmanjoshua@hotmail.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""CAD""}",1980.3,Silver,0 +7412,Stephen Meadows,isaiah00@gould-bass.com,2022-10-28,"{""language"": ""DE"", ""currency"": ""USD""}",1274.7,Bronze,1 +7413,Jasmine Owens,mary72@lambert-cooke.info,2023-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7615.85,Silver,0 +7414,Lisa Lopez,collinsashley@rivers.com,2024-02-23,"{""language"": ""DE"", ""currency"": ""CAD""}",1154.4,Gold,0 +7415,Jessica Williams,zacharyserrano@casey-ward.info,2023-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8341.94,Silver,0 +7416,Mark Jones,steven20@yahoo.com,2024-11-26,"{""language"": ""FR"", ""currency"": ""MXN""}",4897.79,Bronze,0 +7417,Jamie Erickson,spatel@washington-alexander.info,2024-05-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1612.5,Gold,0 +7418,Margaret Shannon,jasonevans@brown.com,2023-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",1727.94,Bronze,1 +7419,Chad Martinez,wellskristin@yahoo.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4177.39,Gold,0 +7420,Arthur Lucas,rachel66@smith.org,2023-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",3393.8,Silver,1 +7421,Maria Ramirez,barbernathan@gmail.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""EUR""}",3737.79,Gold,1 +7422,Tom Williams,ashley04@liu-clayton.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6122.36,Gold,1 +7423,Kenneth Johnson,nramirez@bradford.com,2020-02-29,"{""language"": ""FR"", ""currency"": ""USD""}",5409.35,Bronze,0 +7424,Lindsay Perez,brownmatthew@hotmail.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""MXN""}",431.15,Gold,0 +7425,Emma Smith,mgarcia@gmail.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""EUR""}",504.38,Silver,0 +7426,Andrew Lopez,tonyweaver@williams.biz,2024-11-11,"{""language"": ""EN"", ""currency"": ""USD""}",6675.58,Bronze,1 +7427,Adam Phelps,crosbystephanie@griffin.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8316.7,Silver,0 +7428,Jeffrey Cohen,wayne55@hotmail.com,2020-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",6686.12,Gold,0 +7429,Spencer Rodriguez,matthew38@hotmail.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1215.12,Silver,1 +7430,Pamela Walsh,elizabethpowell@hotmail.com,2021-10-18,"{""language"": ""DE"", ""currency"": ""USD""}",3811.14,Gold,1 +7431,Maria Thomas,andrezuniga@skinner.net,2021-10-17,"{""language"": ""ES"", ""currency"": ""EUR""}",3724.92,Silver,0 +7432,Jennifer Heath MD,kstewart@dawson-mcdonald.com,2023-01-11,"{""language"": ""DE"", ""currency"": ""USD""}",4361.27,Silver,0 +7433,Shawn Werner,davidwebster@willis-davis.biz,2022-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8076.69,Silver,0 +7434,Sarah Lopez,joan44@farrell-myers.biz,2023-11-12,"{""language"": ""ES"", ""currency"": ""USD""}",5546.72,Bronze,1 +7435,Tyler Mason,edward85@salinas-ortiz.biz,2024-08-15,"{""language"": ""ES"", ""currency"": ""MXN""}",582.5,Silver,0 +7436,David Simpson,nicholasarmstrong@hotmail.com,2021-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",514.3,Silver,1 +7437,James Medina,margaretreed@martin-jackson.com,2023-04-18,"{""language"": ""IT"", ""currency"": ""USD""}",430.53,Silver,1 +7438,Carly Martinez,debra18@gmail.com,2021-10-06,"{""language"": ""IT"", ""currency"": ""GBP""}",8383.41,Bronze,1 +7439,Kathleen Brewer,fsullivan@hotmail.com,2022-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2677.95,Silver,0 +7440,Veronica Barnes,jflores@wright.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""MXN""}",939.46,Silver,1 +7441,Kayla Riddle,wowen@greer.net,2024-08-12,"{""language"": ""EN"", ""currency"": ""USD""}",520.41,Gold,0 +7442,Barbara Sandoval,gregorywilliamson@young-anderson.com,2020-11-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6336.09,Bronze,1 +7443,Tonya Herring,tammy72@yahoo.com,2023-08-28,"{""language"": ""EN"", ""currency"": ""EUR""}",2995.32,Silver,0 +7444,Tammy Johnson,jordancourtney@yahoo.com,2021-02-16,"{""language"": ""FR"", ""currency"": ""EUR""}",3477.52,Gold,0 +7445,Kenneth Jones,bernard02@hotmail.com,2024-10-22,"{""language"": ""DE"", ""currency"": ""USD""}",4520.07,Gold,1 +7446,Ronald Bauer,danamccarthy@acosta.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""GBP""}",7131.22,Bronze,1 +7447,Chad Robinson III,bjones@harris-rivera.com,2023-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",3080.74,Silver,0 +7448,Nicholas Garcia,ericacooper@gmail.com,2023-12-09,"{""language"": ""ES"", ""currency"": ""USD""}",7086.16,Bronze,1 +7449,Jodi Mcneil,kwoodard@yahoo.com,2020-10-24,"{""language"": ""EN"", ""currency"": ""USD""}",7830.12,Silver,1 +7450,Michael Richardson,sandra39@gmail.com,2021-08-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6749.62,Gold,0 +7451,Jose Campbell,brianjohnson@carson.com,2021-01-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5013.29,Gold,0 +7452,Steven Peters,ijimenez@smith.org,2024-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",2205.28,Bronze,1 +7453,Carl Hogan,robert59@brown.biz,2021-09-29,"{""language"": ""IT"", ""currency"": ""USD""}",3436.35,Silver,1 +7454,Andrew Garcia,jayjohnson@moore-ayers.biz,2021-10-10,"{""language"": ""ES"", ""currency"": ""CAD""}",6295.05,Bronze,0 +7455,Mr. Matthew Cabrera,jeremy02@yahoo.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""USD""}",7924.68,Gold,0 +7456,Laura Mckinney,lawrencejessica@hotmail.com,2021-10-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3236.65,Silver,0 +7457,Sara Anderson,mchavez@tran.com,2023-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",7521.86,Silver,1 +7458,Jessica Rodriguez,plucero@hotmail.com,2022-08-19,"{""language"": ""IT"", ""currency"": ""MXN""}",7977.91,Gold,1 +7459,Troy Baxter,kgraves@hurst.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",2736.84,Silver,0 +7460,Eduardo Adams,brandygomez@barrera.org,2022-10-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6340.03,Gold,0 +7461,Leslie Anderson,matthewgarcia@phillips.com,2021-05-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9824.58,Silver,1 +7462,Brittney Fischer,rubiostephanie@harris-johnson.com,2020-11-26,"{""language"": ""ES"", ""currency"": ""CAD""}",1670.34,Silver,1 +7463,Erica Smith,fryegerald@yahoo.com,2023-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",7224.74,Silver,1 +7464,Joseph Moody,bnelson@yahoo.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""USD""}",62.6,Bronze,1 +7465,Larry Johnson,dominguezrebecca@herrera.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""USD""}",770.33,Bronze,0 +7466,Dylan Cook,wlucas@yahoo.com,2023-10-15,"{""language"": ""EN"", ""currency"": ""USD""}",1831.26,Silver,0 +7467,Erica Scott,debra21@gmail.com,2022-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7345.5,Silver,1 +7468,Matthew Reynolds,brandonparker@hotmail.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1385.72,Bronze,1 +7469,Michelle Smith,fflores@gmail.com,2024-11-05,"{""language"": ""ES"", ""currency"": ""EUR""}",9055.42,Gold,0 +7470,Julia Forbes,holly42@hotmail.com,2021-07-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2426.07,Silver,1 +7471,Steven Zimmerman,collinslori@lane.net,2023-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2485.22,Silver,0 +7472,Meghan Romero,jacksonbrad@yahoo.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3135.11,Silver,1 +7473,Marcus Marquez,butlerjessica@fuller.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",7136.93,Bronze,0 +7474,Abigail Matthews,debra43@peterson.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""USD""}",8649.77,Gold,0 +7475,Nicholas Smith,matthewgardner@brown.com,2023-09-11,"{""language"": ""EN"", ""currency"": ""CAD""}",2022.32,Gold,1 +7476,Erika Green,jameswilliams@gmail.com,2023-10-14,"{""language"": ""IT"", ""currency"": ""USD""}",549.78,Bronze,0 +7477,Sara Browning,evansbrian@hotmail.com,2021-01-19,"{""language"": ""FR"", ""currency"": ""GBP""}",1479.32,Bronze,1 +7478,Ryan Fox,glopez@gmail.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""EUR""}",4094.09,Gold,0 +7479,Brent Williams,gregory64@bruce.org,2024-09-28,"{""language"": ""EN"", ""currency"": ""USD""}",6364.62,Gold,1 +7480,Ryan Brooks,vpittman@hotmail.com,2020-01-01,"{""language"": ""IT"", ""currency"": ""CAD""}",7075.97,Bronze,1 +7481,Jennifer Bryant,gonzalezjohn@hotmail.com,2021-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",1179.48,Bronze,0 +7482,Jenny Mitchell,ashlee33@jones-walker.com,2020-11-16,"{""language"": ""FR"", ""currency"": ""GBP""}",464.19,Bronze,1 +7483,Natalie Jones,pfisher@smith.com,2024-07-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4751.75,Silver,1 +7484,Barbara Spencer,amanda12@turner.com,2021-09-06,"{""language"": ""IT"", ""currency"": ""USD""}",9355.6,Gold,1 +7485,Keith Newton,thompsonshannon@williams.com,2023-12-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5606.23,Bronze,1 +7486,Mr. Karl Fowler,patrick35@hotmail.com,2022-06-19,"{""language"": ""DE"", ""currency"": ""USD""}",5632.58,Bronze,0 +7487,Louis Ferguson,victoriaparks@gmail.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""GBP""}",9102.78,Bronze,0 +7488,Melinda Simmons,ngraham@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3799.81,Bronze,1 +7489,Morgan Greer,brian84@yahoo.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""MXN""}",1987.82,Bronze,1 +7490,Lucas Benson,stephanie86@hotmail.com,2022-09-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4030.33,Silver,1 +7491,Jeremiah Hunter,ronaldjohnson@miller.com,2023-05-23,"{""language"": ""FR"", ""currency"": ""CAD""}",8897.89,Gold,1 +7492,Chelsea Mason,wendyhuff@york-thomas.info,2023-05-24,"{""language"": ""DE"", ""currency"": ""CAD""}",1523.43,Gold,0 +7493,Ryan Perez,thomasmoore@cordova.biz,2020-11-16,"{""language"": ""EN"", ""currency"": ""MXN""}",8245.23,Silver,1 +7494,Jacob Aguilar,curtisstephen@johnson-booker.com,2021-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",1605.77,Bronze,1 +7495,Brandon Dixon,sarah95@yahoo.com,2020-02-27,"{""language"": ""EN"", ""currency"": ""EUR""}",6268.39,Bronze,0 +7496,Brittany Floyd,hestergina@hotmail.com,2024-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",7116.67,Silver,1 +7497,David Johnson Jr.,xmorton@bishop.com,2023-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",7518.67,Bronze,0 +7498,Adam Buchanan,nicholas28@anderson.net,2021-03-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7769.06,Gold,1 +7499,Ryan Anderson,mestrada@lewis-rodriguez.info,2022-03-19,"{""language"": ""FR"", ""currency"": ""CAD""}",6631.68,Bronze,0 +7500,Karen Davies,zimmermannancy@duran.com,2023-01-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7939.39,Silver,0 +7501,Chelsea Powell,annatyler@foster.com,2020-10-04,"{""language"": ""FR"", ""currency"": ""EUR""}",8023.16,Bronze,0 +7502,Shannon Hansen,ifarley@williams.com,2024-01-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2741.32,Gold,0 +7503,Christine Brown DVM,samantha26@yahoo.com,2022-09-10,"{""language"": ""IT"", ""currency"": ""CAD""}",4705.4,Gold,0 +7504,Christopher Delacruz,mitchell03@torres-pearson.com,2020-09-14,"{""language"": ""IT"", ""currency"": ""MXN""}",546.13,Bronze,0 +7505,Barbara Zhang,shepardrandy@bowen-stuart.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",8247.26,Bronze,0 +7506,John Peterson,andrewroberts@merritt-pena.com,2023-04-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8474.1,Silver,1 +7507,Leslie Hill,swhite@gmail.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""GBP""}",1593.51,Silver,0 +7508,Rachael Turner,newtontraci@castaneda.com,2023-03-11,"{""language"": ""FR"", ""currency"": ""MXN""}",5630.68,Bronze,1 +7509,James Johnson,elizabethgallegos@yahoo.com,2021-10-05,"{""language"": ""DE"", ""currency"": ""GBP""}",2526.15,Bronze,1 +7510,Scott Jenkins,stanleymatthew@davis.com,2023-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",8472.7,Silver,1 +7511,Anthony Trevino,erin18@thompson.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",7753.14,Bronze,0 +7512,Tracy Gomez,lauren58@hull.net,2022-09-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9230.47,Gold,0 +7513,John Warren,katherinelowe@vazquez.com,2020-12-08,"{""language"": ""DE"", ""currency"": ""MXN""}",3593.12,Silver,1 +7514,Kimberly Randolph,kathryn78@yahoo.com,2023-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",953.32,Bronze,1 +7515,Peter Martin,carrie87@yahoo.com,2024-10-12,"{""language"": ""FR"", ""currency"": ""CAD""}",1035.16,Silver,1 +7516,Carla Fleming,robertsandrew@hotmail.com,2020-03-20,"{""language"": ""IT"", ""currency"": ""CAD""}",754.16,Silver,1 +7517,Kendra Miller,sfigueroa@thompson.org,2020-05-01,"{""language"": ""DE"", ""currency"": ""GBP""}",4180.75,Silver,0 +7518,Jillian Mcdonald,suzannemann@gmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",7116.62,Bronze,1 +7519,Steven Williams,russellandrew@hotmail.com,2022-11-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3342.78,Silver,1 +7520,Melanie Robinson,njacobs@gmail.com,2021-10-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3391.18,Silver,1 +7521,Mark Brooks,halejennifer@campbell-mitchell.com,2024-08-01,"{""language"": ""ES"", ""currency"": ""EUR""}",6122.87,Gold,1 +7522,Andrew Stein,samuel67@martin.com,2021-09-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2802.3,Gold,0 +7523,Matthew Rodriguez,joseph58@hotmail.com,2022-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",3334.53,Silver,0 +7524,Robert Ortiz,danielferguson@joyce.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4440.24,Gold,0 +7525,Thomas Irwin,zamoramarcus@hale-fields.biz,2023-03-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5409.59,Silver,0 +7526,Lauren Hanson,floresnancy@yahoo.com,2021-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",8494.07,Gold,1 +7527,John Ball,greenedawn@avery-le.org,2021-02-16,"{""language"": ""IT"", ""currency"": ""USD""}",7107.02,Gold,1 +7528,Jennifer Nguyen,maldonadokatie@gmail.com,2021-05-04,"{""language"": ""EN"", ""currency"": ""EUR""}",8576.67,Bronze,0 +7529,Rebecca Reed,dana52@hotmail.com,2023-12-05,"{""language"": ""FR"", ""currency"": ""GBP""}",9683.73,Bronze,1 +7530,Todd Kent,emilykhan@cooper.com,2023-11-04,"{""language"": ""IT"", ""currency"": ""MXN""}",891.03,Silver,1 +7531,Mathew Wood,susanbaker@hotmail.com,2023-04-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6984.0,Bronze,0 +7532,Julie Mejia,muelleramber@yahoo.com,2021-12-20,"{""language"": ""ES"", ""currency"": ""USD""}",9020.61,Gold,1 +7533,Susan Martin,rachel81@rodriguez.net,2021-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3593.87,Gold,0 +7534,Michelle Thomas,melindascott@yahoo.com,2023-01-05,"{""language"": ""DE"", ""currency"": ""CAD""}",8061.01,Gold,0 +7535,Jessica Flores,xhanson@yahoo.com,2022-09-27,"{""language"": ""FR"", ""currency"": ""CAD""}",1558.69,Bronze,1 +7536,Erin Schmidt,john41@gmail.com,2020-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",7989.0,Bronze,1 +7537,Mary Harmon,williamsdawn@mann.com,2022-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",910.4,Bronze,0 +7538,Mark Silva,lori96@yahoo.com,2021-05-19,"{""language"": ""FR"", ""currency"": ""USD""}",9964.67,Bronze,0 +7539,Jonathan Berry,williamdavis@hernandez.com,2020-09-30,"{""language"": ""DE"", ""currency"": ""MXN""}",9079.4,Gold,1 +7540,Elizabeth Delacruz,bsweeney@yahoo.com,2021-10-02,"{""language"": ""IT"", ""currency"": ""CAD""}",6518.34,Silver,0 +7541,David Miller,scottrodney@hotmail.com,2020-01-19,"{""language"": ""EN"", ""currency"": ""EUR""}",542.44,Silver,1 +7542,Carl Ford,jill32@allen.com,2024-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3669.04,Silver,0 +7543,Travis Brown,eobrien@ashley.com,2022-09-19,"{""language"": ""IT"", ""currency"": ""USD""}",3418.23,Silver,0 +7544,Megan Murphy,ccampbell@weaver.net,2022-09-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3070.68,Bronze,0 +7545,Laura Thornton,johnsonlaurie@gmail.com,2022-06-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6633.62,Gold,0 +7546,Monique Gonzalez,pstanley@yahoo.com,2020-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",4555.35,Silver,0 +7547,Edward Patton,vincent62@washington.com,2020-05-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4374.02,Gold,1 +7548,Tiffany Little,davidpotter@combs.biz,2020-10-16,"{""language"": ""IT"", ""currency"": ""EUR""}",259.1,Silver,0 +7549,Robert Smith,duncanmichael@hotmail.com,2022-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",7392.29,Gold,1 +7550,Jessica Anderson,brittany19@gmail.com,2024-02-29,"{""language"": ""DE"", ""currency"": ""EUR""}",1102.58,Gold,1 +7551,Adam Phillips,hughesdavid@gregory-herman.com,2021-02-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5333.83,Silver,0 +7552,Melissa Gibson,rcarroll@yahoo.com,2024-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5213.62,Bronze,1 +7553,Dylan Martinez,graydana@chapman-anderson.net,2020-02-20,"{""language"": ""IT"", ""currency"": ""USD""}",6358.8,Bronze,1 +7554,Gerald Ortega,brookemorales@morgan.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""MXN""}",1382.49,Silver,0 +7555,Erik Griffith,jgraham@yahoo.com,2021-11-28,"{""language"": ""EN"", ""currency"": ""MXN""}",4253.87,Bronze,0 +7556,Valerie Andrews,jessicayoung@fuentes-taylor.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""GBP""}",2297.23,Bronze,1 +7557,Sheena Zhang,jacqueline51@benjamin.com,2021-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",3032.53,Bronze,1 +7558,Miranda Pruitt,allenlane@schneider.com,2021-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",3792.28,Gold,1 +7559,Julie Levine,sharon90@hotmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""USD""}",9994.35,Bronze,1 +7560,Cheryl Vargas,kelly61@hotmail.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""EUR""}",1239.05,Gold,0 +7561,Chelsea Aguilar,milleredward@hotmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2867.38,Gold,1 +7562,Aaron Cooper,fishermelissa@taylor.com,2020-02-07,"{""language"": ""EN"", ""currency"": ""MXN""}",1883.15,Gold,0 +7563,Brittany Black,nataliepennington@pena.com,2021-02-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8181.3,Bronze,0 +7564,David Hudson,uayala@ryan.com,2020-03-16,"{""language"": ""IT"", ""currency"": ""GBP""}",8864.67,Bronze,0 +7565,Debra Hensley,michael36@sanchez.com,2021-02-13,"{""language"": ""DE"", ""currency"": ""MXN""}",1689.08,Bronze,0 +7566,Emily Mcdonald,valeriedrake@adams.com,2020-01-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7450.81,Bronze,0 +7567,Clinton Bennett,troy97@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6242.09,Bronze,0 +7568,Wesley Perkins,jaclyn82@chandler.com,2023-07-05,"{""language"": ""EN"", ""currency"": ""EUR""}",5926.55,Gold,1 +7569,Randy Archer,christinadurham@gmail.com,2021-04-02,"{""language"": ""DE"", ""currency"": ""EUR""}",5593.85,Gold,1 +7570,Ashley Davis,qmiranda@yahoo.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",852.98,Silver,1 +7571,Melanie Miller,steven32@buckley-rodriguez.com,2021-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4205.77,Silver,0 +7572,Barry Herman,bellsarah@brown.com,2023-05-24,"{""language"": ""IT"", ""currency"": ""EUR""}",5526.49,Silver,1 +7573,Jose Hughes,brandy43@yahoo.com,2021-02-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5865.88,Bronze,1 +7574,Jessica Juarez,michaeloneal@valentine.com,2022-01-01,"{""language"": ""DE"", ""currency"": ""EUR""}",1097.33,Silver,1 +7575,Karen Davis,stevenmarquez@smith.com,2023-09-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8783.8,Bronze,1 +7576,Edward Dalton,jamesperez@yahoo.com,2020-07-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2066.29,Silver,0 +7577,Lori Edwards,rreynolds@hotmail.com,2024-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",1661.45,Gold,1 +7578,Nicole French,rhill@cole-mays.biz,2024-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",2524.42,Bronze,1 +7579,Melinda Sanchez,kristinramirez@yahoo.com,2021-02-07,"{""language"": ""ES"", ""currency"": ""USD""}",1772.35,Bronze,0 +7580,Matthew Garcia,robertstracy@gmail.com,2023-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",7361.87,Gold,1 +7581,Hannah Gonzalez,ygross@yahoo.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""GBP""}",4774.61,Gold,1 +7582,Mr. Randy Morgan,erikareynolds@yahoo.com,2021-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",1259.34,Silver,1 +7583,Daisy Riley,adamallen@yahoo.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8621.47,Gold,1 +7584,William Johnson MD,amanda12@gmail.com,2022-12-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5382.17,Bronze,0 +7585,Jennifer Montoya,stephanielopez@green.com,2024-07-28,"{""language"": ""FR"", ""currency"": ""GBP""}",5892.44,Silver,1 +7586,Anthony Vega,emilymartinez@gmail.com,2021-09-16,"{""language"": ""ES"", ""currency"": ""USD""}",840.97,Bronze,1 +7587,Emily Wilson,tanner84@moore-marshall.biz,2020-08-26,"{""language"": ""ES"", ""currency"": ""GBP""}",3928.24,Gold,1 +7588,Kenneth Reeves,jesusmitchell@yahoo.com,2021-09-04,"{""language"": ""DE"", ""currency"": ""CAD""}",9426.72,Silver,0 +7589,Shannon Gamble,htapia@gmail.com,2022-05-31,"{""language"": ""DE"", ""currency"": ""MXN""}",2824.27,Silver,1 +7590,James Grant,jmaldonado@gmail.com,2022-07-27,"{""language"": ""EN"", ""currency"": ""MXN""}",5949.86,Gold,1 +7591,Shawn Johnson,tonibishop@sellers-smith.com,2022-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",195.09,Gold,1 +7592,Brendan Nelson,thomastorres@yahoo.com,2021-10-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5721.95,Gold,1 +7593,Dr. Mary White,william21@davis-mcguire.org,2020-01-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1145.35,Bronze,1 +7594,Reginald Franklin,monica00@yahoo.com,2022-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",5234.25,Gold,0 +7595,Michelle Johnson,kfuller@monroe-hernandez.com,2023-03-10,"{""language"": ""IT"", ""currency"": ""EUR""}",3329.56,Bronze,0 +7596,Alex Howard,dguzman@hotmail.com,2020-11-14,"{""language"": ""IT"", ""currency"": ""CAD""}",7033.9,Bronze,0 +7597,Ronnie Barber,jennifer39@hotmail.com,2022-08-05,"{""language"": ""IT"", ""currency"": ""GBP""}",8461.8,Gold,1 +7598,Stephanie Mcclure,stevenharris@hotmail.com,2022-07-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1567.39,Silver,1 +7599,Joy Douglas,alicia65@jones.info,2020-09-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4882.83,Bronze,1 +7600,Michael Griffin,james61@ross.info,2024-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",4119.36,Silver,1 +7601,Valerie Barrett,veronicahernandez@scott-hopkins.com,2022-05-19,"{""language"": ""EN"", ""currency"": ""MXN""}",3015.95,Gold,1 +7602,Elijah Barnes,newtonandrew@hotmail.com,2021-08-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9244.53,Gold,1 +7603,Zachary Valenzuela,qhatfield@gmail.com,2020-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9722.6,Gold,1 +7604,Carlos Gibson,robinlivingston@jacobs.net,2023-05-10,"{""language"": ""EN"", ""currency"": ""CAD""}",1839.68,Bronze,1 +7605,Roberto Carlson,clarkreginald@gmail.com,2024-08-07,"{""language"": ""FR"", ""currency"": ""USD""}",8360.47,Bronze,1 +7606,Stephanie Bush,matthew22@adams.info,2020-05-05,"{""language"": ""ES"", ""currency"": ""USD""}",8453.05,Bronze,0 +7607,William Moore,alanjones@becker.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",1654.71,Silver,0 +7608,Derek Green,stevenlee@hamilton-cox.biz,2022-03-16,"{""language"": ""DE"", ""currency"": ""USD""}",693.24,Bronze,0 +7609,Peggy White,deannarandolph@gmail.com,2024-03-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8102.42,Gold,0 +7610,Katelyn Hudson,james74@gmail.com,2022-08-08,"{""language"": ""IT"", ""currency"": ""MXN""}",7694.8,Bronze,1 +7611,Bradley Navarro,williamfrost@alvarado.org,2024-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",4377.97,Gold,0 +7612,Alexander Donovan,alisha67@yahoo.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""USD""}",6939.89,Silver,1 +7613,Nicholas Mckenzie,ogomez@hotmail.com,2022-11-10,"{""language"": ""IT"", ""currency"": ""USD""}",4980.04,Bronze,0 +7614,Sarah Johnson,pdunn@hotmail.com,2021-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",6777.68,Bronze,1 +7615,Antonio Anderson,ipineda@hotmail.com,2024-11-25,"{""language"": ""IT"", ""currency"": ""USD""}",1251.36,Silver,0 +7616,John Miranda,janetpennington@harvey-hobbs.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""USD""}",4761.75,Gold,1 +7617,Rachel Becker,xberg@clark.info,2024-08-30,"{""language"": ""ES"", ""currency"": ""MXN""}",2447.61,Bronze,0 +7618,Ryan Webster,theodoregonzalez@smith.com,2021-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5482.38,Silver,1 +7619,Hunter Peterson,albertholmes@reeves.info,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",9952.58,Silver,1 +7620,Diana Delacruz,aguilarpatrick@harrell.info,2020-11-25,"{""language"": ""DE"", ""currency"": ""USD""}",7789.25,Bronze,1 +7621,Stephen Mueller,lphillips@kidd-bell.com,2022-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2778.58,Gold,1 +7622,Edward Davenport,tony92@yahoo.com,2023-10-08,"{""language"": ""FR"", ""currency"": ""EUR""}",1582.35,Silver,1 +7623,Alexis Butler,john51@hotmail.com,2024-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",7580.58,Bronze,1 +7624,Miguel Aguilar,nsantiago@mcclain.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",8459.08,Gold,1 +7625,Richard Eaton,aguilarjames@hotmail.com,2020-07-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5654.32,Silver,0 +7626,Meghan Rose,scott59@gmail.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9798.41,Bronze,1 +7627,Lindsey Watkins,zlopez@yahoo.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""CAD""}",8054.93,Bronze,1 +7628,Denise Campbell,atkinssheryl@gmail.com,2020-06-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5220.63,Silver,0 +7629,Melody Johnson,zcollins@gmail.com,2020-03-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3838.1,Gold,0 +7630,Penny Thompson,avilajoanne@holland.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5224.48,Silver,1 +7631,Richard Daniel,caitlinheath@yahoo.com,2020-10-10,"{""language"": ""IT"", ""currency"": ""USD""}",4015.39,Silver,1 +7632,Jake Cruz,jsmith@gmail.com,2023-03-10,"{""language"": ""ES"", ""currency"": ""CAD""}",1961.33,Gold,0 +7633,Martin Black,qalexander@gmail.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5042.16,Bronze,1 +7634,William Velazquez,gonzalezsue@yahoo.com,2024-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",4094.38,Bronze,0 +7635,Dennis Kramer,hodgestaylor@hotmail.com,2023-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",8924.78,Gold,0 +7636,Stephanie West,cclark@norman-wallace.net,2023-11-05,"{""language"": ""FR"", ""currency"": ""USD""}",8123.83,Silver,1 +7637,Susan Barton,sarahsosa@johnson.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2974.73,Gold,0 +7638,Rodney King,jason23@hotmail.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9911.01,Silver,0 +7639,Bradley Davis,kimberlymartin@wheeler.info,2023-01-21,"{""language"": ""ES"", ""currency"": ""MXN""}",1347.37,Silver,0 +7640,Stephanie Young MD,ashley75@hotmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",702.11,Gold,1 +7641,Clayton Howe,belldenise@miller.com,2022-02-13,"{""language"": ""EN"", ""currency"": ""USD""}",9972.17,Silver,0 +7642,Lisa Rhodes,dorr@gmail.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""EUR""}",4003.13,Bronze,1 +7643,Karen Watson,lauren91@aguirre.org,2022-11-04,"{""language"": ""DE"", ""currency"": ""CAD""}",9650.59,Bronze,1 +7644,Randy Anderson,wilkinsonryan@gmail.com,2022-03-13,"{""language"": ""EN"", ""currency"": ""MXN""}",3393.5,Silver,1 +7645,James Oliver,jimmymartinez@kelley.com,2021-04-12,"{""language"": ""FR"", ""currency"": ""CAD""}",3183.87,Bronze,1 +7646,Alexis Butler,lindseymeza@gmail.com,2021-12-06,"{""language"": ""ES"", ""currency"": ""EUR""}",8480.79,Silver,1 +7647,Willie Ballard,gmcgee@gmail.com,2022-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6701.88,Bronze,1 +7648,Jonathan Johnson,christophergilmore@yahoo.com,2021-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",7129.59,Gold,1 +7649,Jason Watkins,timothy02@floyd-nunez.net,2020-02-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8649.73,Bronze,0 +7650,Barbara Smith,zachary13@perez-bush.biz,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6076.05,Bronze,1 +7651,Cody Horton,pattyjohnson@hotmail.com,2022-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",9038.03,Silver,0 +7652,Natasha Bennett,ywise@yahoo.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2278.53,Silver,0 +7653,Susan Ramos,taylorodonnell@adams.com,2020-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2971.78,Bronze,1 +7654,Olivia Parker,qrivera@hotmail.com,2020-09-21,"{""language"": ""ES"", ""currency"": ""USD""}",6872.86,Silver,1 +7655,Martha Cain,dbarajas@smith.com,2024-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",6852.47,Bronze,0 +7656,Alexander Mcmahon,bridgesgilbert@yahoo.com,2021-01-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8466.91,Silver,1 +7657,Matthew Smith,pamela78@mata-frazier.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",1357.11,Bronze,0 +7658,Robert Williams,derek56@gmail.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",1325.05,Silver,1 +7659,Joanna Harris,carl26@hicks.org,2020-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1260.0,Gold,0 +7660,Michael Rangel,christinalawrence@sheppard.com,2023-06-05,"{""language"": ""FR"", ""currency"": ""USD""}",5160.5,Gold,0 +7661,Terri Palmer,aliemily@hotmail.com,2021-01-13,"{""language"": ""IT"", ""currency"": ""GBP""}",6345.47,Silver,0 +7662,Tracy Russell,brownfrank@gmail.com,2021-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8910.25,Bronze,1 +7663,Brittney Bauer,mistyrodriguez@gmail.com,2021-09-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7303.8,Silver,1 +7664,Ronald Barker,kenneth89@gmail.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9854.27,Gold,1 +7665,Janet Martin,dpatterson@kline.com,2022-02-22,"{""language"": ""DE"", ""currency"": ""USD""}",7210.77,Bronze,0 +7666,Amanda Garcia,alexa47@gmail.com,2021-01-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1866.39,Bronze,1 +7667,David Kelley,derekking@gmail.com,2022-11-10,"{""language"": ""IT"", ""currency"": ""EUR""}",8611.6,Bronze,1 +7668,Michael Carlson,grahamevan@cummings.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7120.79,Bronze,1 +7669,Mr. Jose Miller,fwilkerson@garcia.org,2023-07-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5193.29,Silver,1 +7670,Donna Williams PhD,warnerstacey@miranda.org,2022-10-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6621.54,Gold,1 +7671,Alan Lopez,patrick05@gmail.com,2022-08-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3271.98,Silver,0 +7672,Theresa Cooley,samantha03@tapia.com,2024-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",1119.41,Bronze,0 +7673,Krista Turner,daniellehammond@hotmail.com,2020-03-14,"{""language"": ""ES"", ""currency"": ""USD""}",2773.6,Gold,1 +7674,Philip Moses,tiffanyflores@gmail.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9293.83,Gold,0 +7675,Jessica Griffin,joshuaramirez@yahoo.com,2019-12-18,"{""language"": ""DE"", ""currency"": ""MXN""}",1426.98,Bronze,0 +7676,David Frazier,davidroy@schneider.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""EUR""}",3280.5,Gold,1 +7677,Timothy Ochoa,xnewman@hotmail.com,2020-11-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4893.31,Gold,0 +7678,Kathy Kirk,garysoto@yahoo.com,2021-08-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2777.69,Gold,1 +7679,Gloria Ingram,lauren47@hotmail.com,2023-10-15,"{""language"": ""EN"", ""currency"": ""CAD""}",8647.83,Silver,0 +7680,Rhonda Jackson,brittanygarcia@yahoo.com,2022-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",861.23,Bronze,1 +7681,Jose Williams,meredithrhodes@yahoo.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""CAD""}",9746.65,Silver,1 +7682,Jasmine Petty,derekwalters@tran.com,2020-07-20,"{""language"": ""ES"", ""currency"": ""GBP""}",661.31,Gold,1 +7683,Richard Turner,maldonadosharon@figueroa.com,2021-09-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2258.55,Silver,0 +7684,Eric Allen,jamesmatthews@baker-fisher.info,2023-07-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9949.11,Bronze,0 +7685,Kelly Branch,simmonscatherine@reyes.com,2023-08-02,"{""language"": ""IT"", ""currency"": ""EUR""}",59.06,Silver,0 +7686,Dawn Alvarez,joneschad@yahoo.com,2021-12-14,"{""language"": ""IT"", ""currency"": ""GBP""}",4889.86,Silver,0 +7687,Susan Stephens,huntsteven@gmail.com,2022-05-26,"{""language"": ""FR"", ""currency"": ""GBP""}",6407.97,Bronze,0 +7688,Nicholas Hardy,david21@kelly.com,2022-02-14,"{""language"": ""IT"", ""currency"": ""CAD""}",6821.41,Bronze,1 +7689,Leah Fisher,obrown@rodriguez.com,2024-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7966.18,Gold,1 +7690,Dana Carr,kyle81@chavez.info,2020-11-23,"{""language"": ""ES"", ""currency"": ""CAD""}",9510.49,Gold,0 +7691,Stephanie Morales,goodmandonald@yahoo.com,2024-09-16,"{""language"": ""IT"", ""currency"": ""GBP""}",6913.38,Gold,0 +7692,Andrew Boyd,gsexton@wang.org,2024-05-05,"{""language"": ""ES"", ""currency"": ""GBP""}",942.9,Bronze,1 +7693,Diane Jackson,rebeccasmith@robles-williams.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",4907.88,Silver,1 +7694,Alison Klein,mario96@gmail.com,2019-12-22,"{""language"": ""EN"", ""currency"": ""MXN""}",6055.83,Silver,1 +7695,Darrell Jordan,carlsoncynthia@yahoo.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2690.92,Bronze,1 +7696,Michael Marshall,scott42@matthews.com,2021-05-17,"{""language"": ""ES"", ""currency"": ""GBP""}",1566.14,Gold,0 +7697,Michelle Harris,ianjones@gmail.com,2020-01-11,"{""language"": ""ES"", ""currency"": ""GBP""}",2418.87,Bronze,1 +7698,Chad Carter,kristen85@gmail.com,2023-12-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3645.33,Silver,0 +7699,Tammie Wood,michaelmueller@turner.biz,2020-07-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8093.09,Silver,0 +7700,Sandra Phillips,bestnicholas@hotmail.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""CAD""}",1498.36,Bronze,0 +7701,Erin Walker,klinekeith@hotmail.com,2023-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",1473.85,Silver,0 +7702,Seth Holder,stewartadam@chung-lynch.com,2024-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4514.66,Bronze,0 +7703,Karen Costa,toddhernandez@benton.net,2021-04-13,"{""language"": ""IT"", ""currency"": ""GBP""}",1265.46,Gold,1 +7704,Annette Mendoza,wellsbrandon@yahoo.com,2022-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",9687.72,Gold,0 +7705,Taylor Stephens,caldwelldennis@yahoo.com,2023-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",2445.7,Silver,0 +7706,Nicole Harris,meredithmorales@hotmail.com,2023-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",2015.43,Bronze,0 +7707,Elizabeth Olsen,scott74@edwards.com,2021-08-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4619.8,Gold,1 +7708,Glenn Martin,robinsonwilliam@gmail.com,2024-05-26,"{""language"": ""EN"", ""currency"": ""EUR""}",3144.03,Bronze,1 +7709,Nicole Stevens,hhansen@juarez-frost.com,2021-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",1436.0,Bronze,0 +7710,Patricia Garza,john55@gmail.com,2021-03-03,"{""language"": ""EN"", ""currency"": ""MXN""}",3325.45,Gold,1 +7711,Jason Elliott,hensleysarah@yahoo.com,2022-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8196.57,Bronze,0 +7712,Stephanie Rodriguez,darryl22@hotmail.com,2024-03-16,"{""language"": ""ES"", ""currency"": ""CAD""}",5029.88,Silver,1 +7713,Brian Nelson,navarrojoseph@stanton.com,2023-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1374.98,Gold,1 +7714,Casey Barnes,jacob95@hotmail.com,2024-02-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7704.98,Bronze,0 +7715,Stacey Webb,kelly65@lopez.com,2023-09-13,"{""language"": ""IT"", ""currency"": ""USD""}",4244.37,Gold,0 +7716,Martin Randall,rebeccaking@white.com,2024-07-20,"{""language"": ""FR"", ""currency"": ""GBP""}",5371.59,Silver,1 +7717,Ana Wong,ryan47@gmail.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2238.72,Gold,1 +7718,Adam Hernandez,chrisduke@morris.info,2022-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9181.51,Bronze,0 +7719,Rebecca Ruiz,twilliams@gmail.com,2022-04-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4861.53,Silver,0 +7720,Laura Brown,oedwards@stewart.net,2024-01-26,"{""language"": ""FR"", ""currency"": ""CAD""}",2851.67,Gold,1 +7721,Shannon Conway,deborahfisher@yahoo.com,2021-09-15,"{""language"": ""FR"", ""currency"": ""MXN""}",7737.03,Gold,0 +7722,Daniel Olson,alyssaharrison@weiss.com,2024-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",852.95,Gold,1 +7723,Mary Jackson,alyssa62@montoya-carter.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""GBP""}",8005.8,Bronze,0 +7724,Robin Jones,randerson@gmail.com,2024-03-14,"{""language"": ""FR"", ""currency"": ""USD""}",373.42,Silver,0 +7725,Travis Brown,jamescastro@gmail.com,2023-11-23,"{""language"": ""FR"", ""currency"": ""CAD""}",294.08,Silver,0 +7726,Ronald Jones,penningtonlauren@gmail.com,2020-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",8195.5,Silver,1 +7727,Kimberly Chambers,brianmccormick@whitney.net,2020-12-09,"{""language"": ""EN"", ""currency"": ""GBP""}",7130.64,Gold,0 +7728,Jonathan Alvarez,leah35@hotmail.com,2020-05-02,"{""language"": ""EN"", ""currency"": ""EUR""}",1263.24,Bronze,1 +7729,Jackson Wilkerson,usmith@yahoo.com,2023-04-26,"{""language"": ""DE"", ""currency"": ""EUR""}",9760.68,Silver,0 +7730,Albert Henderson,bondryan@love.info,2023-10-07,"{""language"": ""IT"", ""currency"": ""GBP""}",5151.57,Silver,1 +7731,Alyssa Perry,dbaker@hotmail.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""USD""}",296.68,Bronze,1 +7732,Joshua Cole,robin07@fox.com,2022-03-30,"{""language"": ""DE"", ""currency"": ""CAD""}",8033.44,Bronze,0 +7733,James Burton,lcastro@garcia.biz,2022-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",2977.9,Gold,0 +7734,Robert Munoz,swansonanna@gmail.com,2020-03-22,"{""language"": ""EN"", ""currency"": ""USD""}",6164.11,Gold,0 +7735,Brian Rodriguez,eric98@miller-russell.com,2024-02-21,"{""language"": ""IT"", ""currency"": ""EUR""}",6271.2,Gold,0 +7736,Colleen Gardner,yrogers@yahoo.com,2020-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7860.28,Bronze,1 +7737,Michael Huff,camachosamantha@martinez.biz,2021-03-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3261.72,Silver,1 +7738,Susan Bowman,carloserickson@gmail.com,2024-09-25,"{""language"": ""FR"", ""currency"": ""MXN""}",1465.25,Bronze,1 +7739,William White,austin00@gmail.com,2021-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",2738.49,Silver,1 +7740,Donna Cole,stevenmiller@hotmail.com,2021-01-03,"{""language"": ""IT"", ""currency"": ""USD""}",1469.61,Silver,0 +7741,Barry Howell,elizabethpalmer@buchanan.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",166.31,Silver,0 +7742,Tabitha Smith,wrightbrenda@hotmail.com,2022-09-03,"{""language"": ""IT"", ""currency"": ""EUR""}",8058.48,Silver,1 +7743,Robin Sullivan,parkervictoria@wade.com,2022-01-31,"{""language"": ""EN"", ""currency"": ""GBP""}",9284.54,Bronze,1 +7744,Cathy Vasquez,rklein@hotmail.com,2021-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",1125.48,Bronze,0 +7745,Melissa Coleman,sandovaljessica@yahoo.com,2021-11-27,"{""language"": ""DE"", ""currency"": ""GBP""}",7139.79,Gold,0 +7746,Pamela Washington,edwardchan@larsen.com,2024-07-16,"{""language"": ""FR"", ""currency"": ""CAD""}",2816.23,Silver,1 +7747,Courtney Knight,allen78@griffin.com,2021-10-06,"{""language"": ""EN"", ""currency"": ""MXN""}",5120.82,Bronze,0 +7748,Vanessa Dean,jasonrodriguez@smith-savage.biz,2021-08-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4484.04,Silver,0 +7749,Brandon Rodriguez,lgrimes@gmail.com,2021-06-06,"{""language"": ""FR"", ""currency"": ""GBP""}",3602.32,Silver,1 +7750,Amanda Robertson,sheilastrickland@gmail.com,2024-07-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8819.28,Gold,1 +7751,Jessica Owen,xrodriguez@gmail.com,2024-09-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8387.36,Gold,0 +7752,Billy Maxwell,robertsamy@yahoo.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""USD""}",1662.57,Gold,1 +7753,Kelly Harrison,ajones@bright.com,2021-04-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2280.54,Bronze,1 +7754,Darren Martin,lortiz@moran.org,2021-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",9839.47,Silver,1 +7755,Carlos Davis,james46@gmail.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8820.82,Bronze,1 +7756,Jimmy Allen,vford@hotmail.com,2022-02-08,"{""language"": ""EN"", ""currency"": ""USD""}",7089.17,Bronze,1 +7757,Daniel Rubio,jamesjohnson@hotmail.com,2019-12-23,"{""language"": ""FR"", ""currency"": ""GBP""}",3257.42,Bronze,0 +7758,Adam Alexander,hicksjames@gmail.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""MXN""}",1642.17,Bronze,1 +7759,Matthew Burke,mdeleon@hotmail.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""USD""}",1737.13,Silver,0 +7760,Jennifer Nguyen,greenrodney@perez-sheppard.com,2022-10-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1546.59,Gold,0 +7761,Julie Calhoun,flynngregory@gmail.com,2022-10-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7596.03,Bronze,0 +7762,Bridget Turner,ajoseph@gordon.net,2021-02-11,"{""language"": ""DE"", ""currency"": ""MXN""}",948.96,Bronze,0 +7763,Mark Thompson,seanharris@hart.com,2024-02-23,"{""language"": ""EN"", ""currency"": ""MXN""}",3628.68,Bronze,0 +7764,Ronald Perez,prichardson@gmail.com,2024-01-18,"{""language"": ""DE"", ""currency"": ""GBP""}",7057.76,Silver,1 +7765,Scott Williams,cooperkathryn@woods-horton.com,2024-02-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2567.04,Silver,0 +7766,Connie Mcintosh,nlopez@pennington-garcia.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8717.59,Silver,0 +7767,Joseph Lopez,kevin56@hill-smith.biz,2021-03-07,"{""language"": ""IT"", ""currency"": ""USD""}",6975.29,Bronze,0 +7768,Tonya Murphy,torreshelen@patterson-leonard.com,2022-02-21,"{""language"": ""FR"", ""currency"": ""USD""}",7342.85,Gold,1 +7769,Ashley Sanchez,santanaerin@hotmail.com,2024-01-13,"{""language"": ""DE"", ""currency"": ""CAD""}",9152.65,Gold,1 +7770,Darryl Wagner,ann03@mitchell.com,2020-03-25,"{""language"": ""DE"", ""currency"": ""GBP""}",7532.0,Silver,0 +7771,Tyler Martin,charles74@simon.com,2024-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",1214.74,Gold,1 +7772,Samantha Boyle,ryan23@ward.com,2020-12-06,"{""language"": ""IT"", ""currency"": ""GBP""}",8694.8,Silver,1 +7773,Vernon Brown,josephcox@hotmail.com,2022-09-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6977.2,Silver,1 +7774,Lauren Joyce,littlejeremy@campos.org,2023-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",6636.47,Gold,0 +7775,William Johnston,zunigajustin@shelton.com,2024-09-23,"{""language"": ""ES"", ""currency"": ""CAD""}",1072.4,Gold,0 +7776,William Jacobs,creed@marshall.net,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",5713.9,Bronze,1 +7777,Nathan Smith,moralesmichael@gmail.com,2022-04-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6952.43,Gold,1 +7778,Mary Cox,crystaljones@graves.com,2023-10-08,"{""language"": ""IT"", ""currency"": ""MXN""}",3271.8,Silver,0 +7779,Christine Parsons,williamsmichele@wu.com,2021-03-08,"{""language"": ""FR"", ""currency"": ""USD""}",1602.21,Silver,1 +7780,Teresa Rodgers,shari00@gmail.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",7201.74,Gold,0 +7781,Scott Fischer,jacquelinedavis@olsen.com,2024-09-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2794.42,Gold,0 +7782,Randy Turner,greenjacqueline@gmail.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""USD""}",464.48,Silver,1 +7783,Candace Brown,salazarangela@hotmail.com,2023-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",2409.19,Bronze,0 +7784,Tracy Anderson,nicholasking@hotmail.com,2021-02-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3028.57,Bronze,1 +7785,Daniel Robertson,emilypatel@yahoo.com,2019-12-20,"{""language"": ""FR"", ""currency"": ""CAD""}",524.63,Bronze,1 +7786,Eugene Yates,stevenkelley@benson-baxter.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""CAD""}",9554.21,Silver,0 +7787,Miguel White,yolandajackson@hotmail.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6944.78,Silver,1 +7788,Joseph Moore,denise30@yahoo.com,2023-07-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8424.81,Gold,0 +7789,Elizabeth Mendez,tracy79@sims.org,2024-02-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8455.38,Silver,1 +7790,Darlene Hall,zlopez@gmail.com,2024-05-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7614.02,Gold,0 +7791,Jessica Simon,whitericky@gmail.com,2020-01-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2923.58,Silver,1 +7792,Matthew Dunn,smithryan@hotmail.com,2020-02-22,"{""language"": ""FR"", ""currency"": ""CAD""}",3833.14,Silver,1 +7793,Patricia Lee,allenapril@hansen-hess.com,2022-05-29,"{""language"": ""ES"", ""currency"": ""CAD""}",8356.52,Bronze,1 +7794,Denise Trujillo,gregory71@gmail.com,2020-11-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5685.92,Bronze,0 +7795,Susan Williams,stephensoto@yahoo.com,2023-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",9840.13,Gold,0 +7796,Justin Hill,uharvey@hotmail.com,2024-06-08,"{""language"": ""DE"", ""currency"": ""EUR""}",1437.48,Gold,0 +7797,Lisa Miller,morenoapril@little.com,2023-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5351.67,Bronze,0 +7798,Erin Baker MD,ywalker@hotmail.com,2021-06-21,"{""language"": ""FR"", ""currency"": ""MXN""}",159.24,Bronze,0 +7799,Patrick Strickland,duranpatricia@yahoo.com,2020-11-08,"{""language"": ""IT"", ""currency"": ""GBP""}",2857.63,Gold,0 +7800,Virginia Gutierrez,martinjohn@hotmail.com,2024-07-12,"{""language"": ""IT"", ""currency"": ""GBP""}",5493.55,Bronze,1 +7801,Tina Peterson,spowers@hotmail.com,2022-08-23,"{""language"": ""DE"", ""currency"": ""MXN""}",5624.31,Gold,1 +7802,Eric Lawson,michael49@hotmail.com,2024-04-09,"{""language"": ""EN"", ""currency"": ""MXN""}",370.02,Gold,0 +7803,Nicholas Allen,amymayo@mahoney.com,2024-02-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4510.14,Bronze,1 +7804,Tara Singh,gary63@higgins.net,2024-01-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2231.15,Gold,0 +7805,Chelsea Smith,zdelgado@knapp.com,2024-02-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2224.49,Gold,0 +7806,Angela Perez,myerspatrick@romero.com,2023-02-21,"{""language"": ""IT"", ""currency"": ""EUR""}",619.84,Silver,0 +7807,Matthew Mckenzie,ugarrison@johnston-taylor.com,2022-03-13,"{""language"": ""ES"", ""currency"": ""CAD""}",540.3,Gold,0 +7808,Ryan Woods,harrisonnicole@yahoo.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",1815.12,Silver,1 +7809,Jeffrey Gonzalez,scott96@yahoo.com,2022-08-14,"{""language"": ""EN"", ""currency"": ""MXN""}",1696.62,Gold,1 +7810,Joshua Fields,amanda55@hotmail.com,2023-01-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7819.06,Silver,1 +7811,Curtis Lee,nicholas66@hotmail.com,2021-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",7846.0,Gold,0 +7812,Melissa Pratt,monicagreer@yahoo.com,2024-09-10,"{""language"": ""ES"", ""currency"": ""MXN""}",788.28,Gold,1 +7813,Deborah Zamora,qramirez@hotmail.com,2024-01-28,"{""language"": ""ES"", ""currency"": ""GBP""}",8824.71,Silver,1 +7814,Jeffrey Lopez,benjaminshannon@reynolds.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""EUR""}",3492.53,Silver,0 +7815,Brendan Gray,bryantalexander@yahoo.com,2023-05-25,"{""language"": ""FR"", ""currency"": ""USD""}",8087.08,Silver,0 +7816,Robert Bradford,sanchezerica@hotmail.com,2021-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",4731.84,Gold,0 +7817,Denise Perez,jhoffman@hotmail.com,2023-01-15,"{""language"": ""ES"", ""currency"": ""EUR""}",4224.02,Bronze,0 +7818,Aaron Smith,marycarey@gmail.com,2022-06-27,"{""language"": ""EN"", ""currency"": ""USD""}",9441.58,Silver,0 +7819,Andrew Thomas,wisesarah@hotmail.com,2023-01-26,"{""language"": ""FR"", ""currency"": ""EUR""}",3749.52,Gold,0 +7820,Jose Miller,imiller@ross.com,2024-07-05,"{""language"": ""DE"", ""currency"": ""EUR""}",771.92,Gold,1 +7821,Lisa Castillo,lawrence45@brooks-torres.info,2021-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",4088.69,Gold,1 +7822,Catherine Washington,zsimpson@torres-brooks.org,2024-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",4454.43,Silver,1 +7823,Courtney Lee,lpace@dorsey-ayala.com,2023-06-24,"{""language"": ""IT"", ""currency"": ""MXN""}",7044.27,Bronze,0 +7824,Sherry Rivera,brobinson@wilson.biz,2021-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",2005.48,Silver,0 +7825,Mr. Kenneth Martinez PhD,salazaralexander@hammond.com,2021-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",7910.75,Bronze,0 +7826,Karen Thomas,james70@jenkins.org,2022-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",3317.41,Gold,0 +7827,Lisa Moore,cbrown@peterson.com,2021-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9473.42,Silver,1 +7828,Timothy Bullock,warrenaustin@james.com,2023-09-24,"{""language"": ""ES"", ""currency"": ""CAD""}",3642.12,Gold,0 +7829,Deborah Brown,christopher94@garza.com,2020-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",8518.47,Bronze,0 +7830,Robert Thompson,daniel03@yahoo.com,2020-01-15,"{""language"": ""DE"", ""currency"": ""USD""}",8952.85,Gold,1 +7831,Michael Leon,brownelizabeth@hotmail.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",9712.91,Gold,1 +7832,Joseph Castillo,edwardsgregg@gmail.com,2020-01-08,"{""language"": ""IT"", ""currency"": ""GBP""}",8765.79,Gold,0 +7833,Mr. Jason Singh,ielliott@hotmail.com,2021-10-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2859.96,Bronze,0 +7834,Eric Gaines,millerkimberly@reilly.com,2024-01-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1311.94,Silver,1 +7835,Lydia Price,valeriemitchell@stanley.com,2022-09-16,"{""language"": ""FR"", ""currency"": ""GBP""}",6817.69,Gold,1 +7836,Zachary Johnson,jonathan67@yahoo.com,2022-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",7475.14,Bronze,1 +7837,Douglas Carney,derek83@hotmail.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""USD""}",1460.86,Gold,1 +7838,Mrs. Melanie George DVM,moorejason@thomas.com,2023-11-25,"{""language"": ""FR"", ""currency"": ""CAD""}",4298.98,Gold,1 +7839,Gary Hensley,upham@murphy.com,2020-11-23,"{""language"": ""DE"", ""currency"": ""EUR""}",9741.3,Gold,0 +7840,Tina Benson,ramosjose@townsend.biz,2022-10-20,"{""language"": ""DE"", ""currency"": ""MXN""}",7216.07,Bronze,1 +7841,Nicholas Johnson,umurray@yahoo.com,2021-03-24,"{""language"": ""EN"", ""currency"": ""MXN""}",362.14,Gold,0 +7842,Amanda Jenkins,whutchinson@thomas.com,2023-03-13,"{""language"": ""EN"", ""currency"": ""GBP""}",5880.98,Gold,0 +7843,Steven Johnson MD,smithrebecca@koch.com,2022-06-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3987.49,Silver,0 +7844,Philip Johnson,christine57@yahoo.com,2021-10-24,"{""language"": ""IT"", ""currency"": ""EUR""}",9121.7,Silver,1 +7845,David Jackson,powersolivia@hotmail.com,2020-09-14,"{""language"": ""DE"", ""currency"": ""EUR""}",8718.08,Gold,1 +7846,Jennifer Lane,scott95@leach-young.org,2024-01-21,"{""language"": ""IT"", ""currency"": ""GBP""}",325.58,Silver,0 +7847,Jessica Dawson,seanlozano@gmail.com,2021-01-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3762.12,Bronze,1 +7848,Carrie Guzman,iwarren@yahoo.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",9594.1,Silver,0 +7849,Timothy Robertson,deanalexandria@hotmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7189.35,Bronze,1 +7850,Anita Jones,kristin32@nunez.net,2021-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",650.21,Silver,1 +7851,Elaine Jones,johnsonkristi@gmail.com,2020-09-02,"{""language"": ""ES"", ""currency"": ""MXN""}",5795.89,Gold,1 +7852,Patrick Harrington,jonathan86@christian-fowler.com,2021-12-18,"{""language"": ""FR"", ""currency"": ""USD""}",142.48,Gold,1 +7853,Laura Johnston,andrew99@baker-west.com,2022-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",9775.8,Gold,0 +7854,Victoria Jones,brownerica@yahoo.com,2021-05-12,"{""language"": ""FR"", ""currency"": ""GBP""}",4511.55,Bronze,0 +7855,Alexandria York,harrisonjessica@campbell.com,2024-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",2815.77,Bronze,0 +7856,Andrea Mosley,madison63@gmail.com,2023-09-15,"{""language"": ""IT"", ""currency"": ""USD""}",9889.18,Silver,1 +7857,Jeffrey Li,katherine06@gmail.com,2022-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",65.85,Bronze,0 +7858,Ryan Bender,michelejohnston@gmail.com,2020-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",7192.91,Silver,0 +7859,Diana Keith,danielkoch@yahoo.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",6285.73,Silver,1 +7860,William Garcia,sandovalbrittany@allen-ingram.com,2021-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",9104.08,Silver,0 +7861,Brian Warner,kari58@davidson.com,2023-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",5746.85,Gold,0 +7862,Daniel Schaefer DDS,sanderson@hotmail.com,2023-02-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2433.75,Bronze,0 +7863,Timothy Flores,johnsonamber@singh.com,2023-05-13,"{""language"": ""ES"", ""currency"": ""GBP""}",6657.71,Silver,0 +7864,Shannon Davis,maddencindy@gmail.com,2022-02-26,"{""language"": ""EN"", ""currency"": ""GBP""}",195.44,Bronze,1 +7865,Andrew Reed,david83@yahoo.com,2020-12-30,"{""language"": ""DE"", ""currency"": ""USD""}",9508.84,Silver,1 +7866,Ashley Huber,ysuarez@yahoo.com,2021-08-13,"{""language"": ""ES"", ""currency"": ""USD""}",3827.43,Silver,1 +7867,Brian Wagner,patelshawn@jackson.com,2022-04-04,"{""language"": ""IT"", ""currency"": ""CAD""}",8382.52,Bronze,0 +7868,Kerry Lucero,christinaperry@dean.org,2021-07-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1145.18,Bronze,1 +7869,Jonathan Watts,kandrade@gmail.com,2020-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",1774.54,Gold,1 +7870,Carlos Johnson,taylorgary@gmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""USD""}",5759.25,Gold,1 +7871,Matthew Castro,swade@keller-jones.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""MXN""}",1794.92,Gold,1 +7872,Paul Glenn,torresdennis@vazquez.org,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",1338.8,Silver,1 +7873,Karina Young,crystal33@yahoo.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""MXN""}",2944.66,Gold,1 +7874,Jennifer Barton,wilsonjessica@lin-armstrong.biz,2021-12-27,"{""language"": ""DE"", ""currency"": ""EUR""}",511.77,Gold,0 +7875,Tami Reyes,seanwilliams@stephens.org,2023-06-02,"{""language"": ""DE"", ""currency"": ""USD""}",9893.65,Silver,0 +7876,William Curtis,doliver@jackson.com,2022-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8254.34,Bronze,1 +7877,Kelsey Golden,qwatkins@yahoo.com,2023-08-20,"{""language"": ""ES"", ""currency"": ""USD""}",6285.56,Silver,1 +7878,Susan Joseph,cobbbryan@hotmail.com,2020-01-18,"{""language"": ""FR"", ""currency"": ""USD""}",1211.79,Silver,1 +7879,Mark Jackson,wward@gmail.com,2020-10-03,"{""language"": ""DE"", ""currency"": ""EUR""}",199.03,Gold,1 +7880,Sharon Hamilton,meyersbrett@yahoo.com,2020-01-15,"{""language"": ""ES"", ""currency"": ""CAD""}",817.2,Gold,0 +7881,Paul Ortega,dewing@yahoo.com,2020-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",6428.8,Gold,0 +7882,John Delacruz,lawrencejamie@williams.com,2020-04-18,"{""language"": ""DE"", ""currency"": ""USD""}",4329.73,Bronze,1 +7883,John Taylor,jasonmiller@frost-hansen.com,2022-05-17,"{""language"": ""EN"", ""currency"": ""EUR""}",2300.21,Silver,0 +7884,Francis Steele,karen17@jones.info,2021-11-07,"{""language"": ""FR"", ""currency"": ""USD""}",893.7,Silver,0 +7885,Phillip Castaneda,housemichelle@brown-obrien.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""CAD""}",7856.11,Bronze,0 +7886,Sean Blevins,mosleybrandon@kidd-haynes.org,2021-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",5825.73,Gold,1 +7887,Nicole Martin,smithjimmy@callahan.com,2022-05-21,"{""language"": ""EN"", ""currency"": ""MXN""}",2117.88,Gold,0 +7888,Kim Finley,karen62@yahoo.com,2022-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",7181.24,Bronze,1 +7889,Christopher Johnson,debra66@gmail.com,2024-10-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3413.51,Gold,0 +7890,Jennifer Wilson,richard68@yahoo.com,2021-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5321.84,Gold,0 +7891,Keith Fowler,thomasharper@brown.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3313.71,Bronze,1 +7892,William Lawrence,brentholloway@hotmail.com,2023-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",4963.5,Silver,0 +7893,Aaron Turner,ramosrobert@yahoo.com,2023-12-29,"{""language"": ""ES"", ""currency"": ""EUR""}",2983.57,Gold,1 +7894,Laura Woodard,hpierce@gmail.com,2021-08-23,"{""language"": ""EN"", ""currency"": ""GBP""}",4369.41,Silver,0 +7895,Nancy Page,kylerivera@yahoo.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""USD""}",602.31,Bronze,1 +7896,Marie Medina,davidnelson@gmail.com,2022-06-26,"{""language"": ""FR"", ""currency"": ""EUR""}",5559.46,Bronze,0 +7897,Megan Cain,yharper@dunn-parker.com,2022-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",1332.75,Silver,1 +7898,Joseph Jones,sarabennett@smith.com,2023-05-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4919.57,Gold,1 +7899,Michelle Baker,jamie57@banks.biz,2021-06-26,"{""language"": ""FR"", ""currency"": ""EUR""}",3179.41,Silver,0 +7900,Howard Henry,nicolepierce@hotmail.com,2021-01-26,"{""language"": ""ES"", ""currency"": ""EUR""}",5400.88,Silver,0 +7901,David Johnson,johnsonchad@jimenez.org,2024-02-01,"{""language"": ""FR"", ""currency"": ""EUR""}",5063.86,Gold,1 +7902,Elizabeth Hudson,zpayne@hotmail.com,2021-04-09,"{""language"": ""IT"", ""currency"": ""EUR""}",7551.74,Bronze,1 +7903,Caitlin Thompson,fordjeffrey@fitzgerald.net,2022-03-20,"{""language"": ""ES"", ""currency"": ""EUR""}",6536.93,Silver,0 +7904,Roger Vaughn,alexanderbates@hayes.biz,2022-12-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5422.09,Bronze,0 +7905,Bridget Nguyen,zfreeman@miller.com,2021-02-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9813.18,Bronze,1 +7906,Angela Fox,andrea03@rodriguez-rodriguez.com,2022-01-05,"{""language"": ""IT"", ""currency"": ""EUR""}",198.71,Gold,1 +7907,Barry Fisher,briana31@hotmail.com,2021-10-31,"{""language"": ""IT"", ""currency"": ""CAD""}",597.22,Silver,0 +7908,Raymond Buck,lori25@hines-perry.com,2021-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",874.31,Bronze,0 +7909,Steven Bowman,morgandana@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3153.97,Silver,1 +7910,Rick Vargas,gmarshall@edwards-douglas.com,2021-03-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1708.73,Silver,1 +7911,Justin Martin,grant63@hotmail.com,2021-09-20,"{""language"": ""ES"", ""currency"": ""USD""}",578.33,Gold,0 +7912,Rebecca Galloway,linda97@gmail.com,2024-10-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5035.7,Gold,0 +7913,Michael Yoder,ricerobert@smith.biz,2021-12-10,"{""language"": ""DE"", ""currency"": ""CAD""}",1826.15,Bronze,1 +7914,Jesse Lynn,robinsonabigail@vasquez.com,2020-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",5712.34,Gold,0 +7915,Matthew Davidson,yvonnebailey@crane-hodges.net,2021-03-06,"{""language"": ""DE"", ""currency"": ""USD""}",7750.05,Gold,0 +7916,Todd Lyons,krystalgilmore@campbell.org,2022-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1925.6,Gold,1 +7917,Douglas Meyer,ashleymclaughlin@flores.net,2022-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",7906.34,Gold,0 +7918,Jerry Garcia PhD,mgarcia@wilson.com,2023-04-25,"{""language"": ""IT"", ""currency"": ""CAD""}",4062.25,Gold,0 +7919,Mary Cox,wdaniel@burton-rodriguez.net,2022-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",4927.26,Bronze,1 +7920,Tiffany Doyle,claytonkatie@martin-graham.com,2023-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",1045.42,Gold,0 +7921,Joel Mitchell,bbutler@smith.com,2020-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",8854.28,Gold,1 +7922,Donald Knapp,whunt@hotmail.com,2023-04-25,"{""language"": ""DE"", ""currency"": ""EUR""}",2847.5,Gold,0 +7923,Terri Crawford,timothy08@hotmail.com,2023-10-01,"{""language"": ""IT"", ""currency"": ""GBP""}",1297.97,Bronze,1 +7924,Michael Briggs,wjones@daniels.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",2013.79,Bronze,1 +7925,Dana Gonzalez,leslie24@gmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""GBP""}",5787.99,Silver,0 +7926,Mary Davidson,sarahbrown@clark.biz,2021-02-27,"{""language"": ""FR"", ""currency"": ""CAD""}",6975.92,Silver,1 +7927,Christopher Sandoval,lanesheryl@hanson.com,2023-01-20,"{""language"": ""EN"", ""currency"": ""USD""}",8204.23,Bronze,0 +7928,Jeremy Jones,brendacook@gmail.com,2024-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",4478.72,Bronze,0 +7929,Amanda Maxwell,vbates@nolan.org,2023-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",6489.44,Silver,1 +7930,Joshua Dean,michael32@gmail.com,2021-02-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2074.19,Silver,0 +7931,Brandy Stone,xwyatt@everett.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""USD""}",4758.22,Gold,0 +7932,Jonathan Moran DVM,lopezcorey@gmail.com,2024-08-07,"{""language"": ""DE"", ""currency"": ""MXN""}",6399.92,Silver,1 +7933,Stephanie Hall,moniqueryan@yahoo.com,2024-08-29,"{""language"": ""EN"", ""currency"": ""USD""}",6874.18,Bronze,0 +7934,David Schneider,bianca65@yahoo.com,2022-01-13,"{""language"": ""IT"", ""currency"": ""MXN""}",3745.94,Silver,0 +7935,James Walton,brooksamanda@english-mann.com,2022-04-19,"{""language"": ""FR"", ""currency"": ""EUR""}",1712.55,Bronze,1 +7936,Steven Rodriguez,anthony74@gmail.com,2023-07-23,"{""language"": ""DE"", ""currency"": ""CAD""}",4174.82,Gold,1 +7937,Kimberly Wood,glenn73@hotmail.com,2020-02-17,"{""language"": ""EN"", ""currency"": ""EUR""}",3600.96,Bronze,0 +7938,Paul Cooke,cobbcharles@brown-lewis.com,2020-02-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5427.27,Gold,1 +7939,Thomas Frank,sandersmargaret@lopez.com,2024-08-21,"{""language"": ""DE"", ""currency"": ""GBP""}",4883.12,Gold,0 +7940,Theresa Anderson MD,anna79@hotmail.com,2021-01-29,"{""language"": ""EN"", ""currency"": ""CAD""}",2582.71,Bronze,1 +7941,Christopher Bryant,diazbrent@hudson.com,2024-06-06,"{""language"": ""ES"", ""currency"": ""MXN""}",2084.35,Silver,1 +7942,Susan Hill,walkerphilip@hopkins.org,2023-01-12,"{""language"": ""ES"", ""currency"": ""EUR""}",2822.21,Bronze,0 +7943,Christopher Schultz,rcarter@galvan.com,2022-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2424.73,Silver,0 +7944,Joshua Rodgers,ernest55@schwartz.com,2024-03-27,"{""language"": ""DE"", ""currency"": ""CAD""}",3172.07,Bronze,0 +7945,Sarah Morgan,stephenskyle@yahoo.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",8316.07,Gold,0 +7946,Katherine Ramirez,clementsjacqueline@gmail.com,2022-09-28,"{""language"": ""IT"", ""currency"": ""USD""}",8269.65,Silver,0 +7947,Donna Nelson,gonzalezmatthew@hotmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",6003.01,Gold,1 +7948,Stephanie Smith,lvaughan@yahoo.com,2023-04-13,"{""language"": ""IT"", ""currency"": ""MXN""}",8514.19,Bronze,1 +7949,Steve Mora,evanfischer@williams.com,2023-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",1717.52,Bronze,0 +7950,Mr. Joseph Thomas,waynestewart@perry.net,2020-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",617.67,Gold,1 +7951,Sierra Vasquez,whitemolly@todd-hill.com,2024-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",1999.77,Silver,1 +7952,Andrew Mckee,amyhaynes@gmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",4930.08,Gold,1 +7953,Brooke Gomez,dbishop@serrano-garcia.net,2024-04-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6405.59,Gold,1 +7954,Edgar Miller,deborah75@gmail.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6549.53,Silver,0 +7955,Brandi Bentley,diana61@gmail.com,2024-06-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8924.43,Gold,1 +7956,Thomas Blevins,bellchristopher@ward-hernandez.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9857.32,Gold,1 +7957,Dr. Christopher Freeman,nicholas87@hansen.com,2023-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5054.28,Silver,0 +7958,Mary Lynch,mooneybryce@gmail.com,2023-07-05,"{""language"": ""EN"", ""currency"": ""USD""}",3106.32,Silver,1 +7959,Michael Yates,jeremyking@murphy.org,2021-01-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8669.56,Bronze,0 +7960,Emily Herrera,lynnmcclain@gmail.com,2023-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",3269.0,Silver,1 +7961,Shari Gallagher,thomascortez@hotmail.com,2023-10-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2975.72,Silver,0 +7962,Elizabeth Wilcox,browncrystal@hotmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8761.93,Silver,0 +7963,Nancy Williams,bryanhughes@moore.net,2024-07-31,"{""language"": ""ES"", ""currency"": ""EUR""}",4382.83,Gold,0 +7964,Crystal Phillips,qthompson@gmail.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7328.54,Gold,0 +7965,Derrick Hill,carla66@hotmail.com,2021-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",1453.33,Silver,1 +7966,Dwayne Lynn,jordanbrittany@yahoo.com,2021-11-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8334.43,Silver,1 +7967,Joseph Mcclain,louismendez@parsons.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""EUR""}",8810.85,Bronze,0 +7968,Jon Hardin,cruzdennis@hotmail.com,2020-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",5273.59,Silver,1 +7969,Kimberly Armstrong,jennifer50@hotmail.com,2021-03-06,"{""language"": ""FR"", ""currency"": ""EUR""}",3878.7,Gold,1 +7970,Ashley Martin,shenson@gibson.info,2024-07-24,"{""language"": ""IT"", ""currency"": ""USD""}",9676.34,Bronze,0 +7971,Jacob Butler,wendybartlett@gmail.com,2023-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",5417.53,Silver,0 +7972,Teresa Baker,vbarker@hotmail.com,2021-09-06,"{""language"": ""ES"", ""currency"": ""USD""}",1523.11,Silver,1 +7973,Julie Ferrell,jmarquez@irwin.net,2021-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",5157.78,Bronze,0 +7974,Heather Ruiz,littlebradley@hotmail.com,2023-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",653.28,Silver,0 +7975,Daniel Smith,kirbychristian@yahoo.com,2023-08-30,"{""language"": ""EN"", ""currency"": ""CAD""}",5909.51,Bronze,0 +7976,Joseph Rodriguez,brenda56@marquez.com,2022-04-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5584.01,Silver,1 +7977,Michael Adams,joshua53@yahoo.com,2023-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",7415.22,Gold,0 +7978,Kelsey Snyder,albert67@gmail.com,2024-05-13,"{""language"": ""FR"", ""currency"": ""USD""}",8598.49,Silver,0 +7979,John Jimenez,cynthiamartinez@francis-johnson.com,2022-10-18,"{""language"": ""EN"", ""currency"": ""CAD""}",729.36,Gold,0 +7980,Robert Martin,jeanetteholmes@grant.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""EUR""}",7494.74,Bronze,0 +7981,Tina Daniels,emiller@yahoo.com,2023-12-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2692.59,Gold,0 +7982,Dawn Rodriguez,cortezmeredith@gonzalez.com,2023-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",3629.19,Gold,0 +7983,Sarah Jones,brent23@lopez.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""EUR""}",7147.79,Bronze,1 +7984,Lori Brown,ulewis@hotmail.com,2021-01-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5324.56,Bronze,1 +7985,Amy Rodriguez,operez@cooper.biz,2022-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",7048.78,Bronze,0 +7986,Janice Conner,lberry@yahoo.com,2020-04-17,"{""language"": ""EN"", ""currency"": ""USD""}",8841.54,Silver,1 +7987,Michael Reyes,vincentmartin@yahoo.com,2023-10-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3513.38,Bronze,0 +7988,Kevin Padilla,cynthia56@williams.com,2021-01-08,"{""language"": ""ES"", ""currency"": ""CAD""}",1720.23,Silver,1 +7989,Michael Pearson,michelecrawford@marquez.net,2023-03-31,"{""language"": ""FR"", ""currency"": ""GBP""}",5473.84,Gold,0 +7990,Jesse Alvarez,murrayrachel@vazquez-gray.biz,2023-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9057.58,Gold,0 +7991,Lisa Pratt,zvasquez@stewart.org,2021-06-13,"{""language"": ""FR"", ""currency"": ""GBP""}",2613.71,Gold,0 +7992,Kevin Ellis,peter38@fields-pruitt.com,2021-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",8187.44,Gold,1 +7993,Jose Beck,gonzalezdeborah@yahoo.com,2020-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",6049.59,Silver,1 +7994,Anna Davis,jonathan72@johnson.com,2023-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4185.18,Silver,1 +7995,Lindsey Freeman,atate@ross-gonzalez.com,2023-10-09,"{""language"": ""FR"", ""currency"": ""GBP""}",4064.04,Bronze,1 +7996,Evan Garcia,sperry@smith.org,2021-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8406.26,Gold,0 +7997,Audrey Garcia,carol15@lindsey.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",5692.92,Bronze,1 +7998,Susan Banks,wrightchelsea@yahoo.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",9136.48,Gold,1 +7999,April Wright,gburke@leonard.info,2024-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",2928.0,Gold,1 +8000,Stephanie Davis,connie05@hernandez-hebert.org,2022-06-23,"{""language"": ""ES"", ""currency"": ""USD""}",9788.68,Silver,1 +8001,Erika Cole,kathy51@yahoo.com,2022-01-15,"{""language"": ""EN"", ""currency"": ""USD""}",5154.52,Bronze,1 +8002,Jessica Smith,rmcmillan@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""GBP""}",5261.45,Bronze,1 +8003,Alisha Patel,adam18@hill-coleman.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",4608.79,Bronze,1 +8004,Kimberly Wiley,zroberts@williams.net,2024-07-02,"{""language"": ""EN"", ""currency"": ""USD""}",1431.87,Silver,0 +8005,Kyle Massey,carrie69@ramirez.biz,2022-02-09,"{""language"": ""IT"", ""currency"": ""EUR""}",479.42,Silver,0 +8006,Kelsey Cohen,teresa37@hotmail.com,2023-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",6503.81,Gold,1 +8007,Aaron Garcia,russellmccoy@yahoo.com,2022-07-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2881.18,Silver,1 +8008,Stephen Turner,nataliejohnson@hanson.com,2022-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5413.46,Bronze,1 +8009,Alexis Lopez,briandelgado@phillips.com,2020-06-29,"{""language"": ""FR"", ""currency"": ""USD""}",2375.19,Gold,1 +8010,Marcus Smith,xdavidson@davis-williams.com,2020-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",1612.24,Silver,0 +8011,Elizabeth Freeman,qnelson@hotmail.com,2021-01-01,"{""language"": ""ES"", ""currency"": ""USD""}",8881.09,Bronze,1 +8012,Ana Johnson,dmitchell@trujillo.com,2022-08-27,"{""language"": ""FR"", ""currency"": ""USD""}",9260.25,Silver,0 +8013,Steven Allen,courtneyburton@morgan.info,2023-02-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6194.15,Bronze,0 +8014,David Blake,igarcia@hotmail.com,2020-12-29,"{""language"": ""ES"", ""currency"": ""EUR""}",6241.9,Silver,0 +8015,Mr. Karl Brooks PhD,williamsteresa@hotmail.com,2023-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",9378.2,Silver,0 +8016,Melissa Greene,laurenford@paul.net,2022-12-18,"{""language"": ""ES"", ""currency"": ""GBP""}",1152.05,Bronze,1 +8017,Ryan Miller,kimberlysmith@grant.com,2022-02-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8194.59,Silver,1 +8018,Jane Thompson,alexandraperez@yahoo.com,2023-08-27,"{""language"": ""EN"", ""currency"": ""USD""}",6214.97,Gold,0 +8019,Sandra Freeman,royjose@hotmail.com,2020-09-17,"{""language"": ""DE"", ""currency"": ""MXN""}",1281.88,Silver,1 +8020,Tammy Nicholson,mikegarcia@henderson.info,2024-10-25,"{""language"": ""ES"", ""currency"": ""USD""}",7332.62,Gold,0 +8021,Allison Gallagher,pottsashley@nelson.com,2021-04-17,"{""language"": ""DE"", ""currency"": ""MXN""}",1251.45,Silver,0 +8022,Alyssa Douglas,wdavis@gmail.com,2020-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8949.54,Silver,0 +8023,Michael Evans,dbrown@yahoo.com,2021-05-23,"{""language"": ""IT"", ""currency"": ""EUR""}",8912.24,Gold,1 +8024,Jasmine Miller,jeffreybarron@yahoo.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""GBP""}",6111.22,Gold,1 +8025,Michael Boyd,elong@sanders.com,2024-03-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8974.19,Gold,1 +8026,Kenneth Arnold,tmartinez@morales.com,2020-06-15,"{""language"": ""ES"", ""currency"": ""CAD""}",7928.59,Silver,1 +8027,Kenneth Rios,lanealexander@gmail.com,2022-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",1712.26,Bronze,1 +8028,Joshua Alexander,wfrost@floyd.net,2021-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",8771.44,Gold,0 +8029,Vanessa Gilbert,kimberly76@yahoo.com,2023-10-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3891.51,Bronze,1 +8030,Teresa Jimenez,westmichael@harris-lopez.net,2021-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",2458.38,Gold,0 +8031,Rebecca Key,njohnson@johnson-frazier.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",8164.63,Silver,1 +8032,Elizabeth Hamilton,kristy94@hotmail.com,2022-12-31,"{""language"": ""EN"", ""currency"": ""USD""}",9080.92,Bronze,1 +8033,Robert Johnson,rhondashaw@yahoo.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",4996.28,Silver,1 +8034,Christine Henry,prose@garcia.org,2021-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",1284.8,Bronze,1 +8035,Allison Hernandez,christiejordan@hotmail.com,2020-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",339.94,Gold,1 +8036,Marissa Kemp,racheljohnson@avila-peters.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""GBP""}",2190.4,Gold,0 +8037,Michael Romero,eperry@yahoo.com,2021-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3315.69,Bronze,0 +8038,Nicole Davis,coxjeffrey@andersen.org,2022-04-03,"{""language"": ""EN"", ""currency"": ""MXN""}",928.04,Bronze,1 +8039,Anthony Martinez,vrosario@avila.net,2021-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",2343.28,Silver,0 +8040,Laura Lindsey,charleshughes@yahoo.com,2024-12-01,"{""language"": ""DE"", ""currency"": ""GBP""}",7303.97,Bronze,1 +8041,Vincent Blevins,lewisvalerie@yahoo.com,2023-10-12,"{""language"": ""EN"", ""currency"": ""USD""}",2765.75,Silver,1 +8042,Brian Berger,michaelramos@moore.com,2023-07-24,"{""language"": ""IT"", ""currency"": ""EUR""}",2744.23,Silver,1 +8043,Ralph Thomas,wmiller@yahoo.com,2021-04-10,"{""language"": ""FR"", ""currency"": ""GBP""}",6009.1,Silver,0 +8044,Heather Brown,davidcarrillo@reyes.com,2022-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",7309.3,Gold,0 +8045,Samuel Green,james14@wiley-terrell.com,2021-03-24,"{""language"": ""FR"", ""currency"": ""USD""}",9670.8,Bronze,1 +8046,Charles Howard,karl39@yahoo.com,2023-12-15,"{""language"": ""IT"", ""currency"": ""GBP""}",1024.24,Gold,0 +8047,Susan Johnson,jnelson@thompson.net,2020-01-09,"{""language"": ""FR"", ""currency"": ""CAD""}",3845.58,Gold,1 +8048,Michelle Shields,sgray@yahoo.com,2024-06-10,"{""language"": ""ES"", ""currency"": ""MXN""}",5754.69,Silver,0 +8049,Michaela Glass,aodom@werner.info,2021-05-15,"{""language"": ""DE"", ""currency"": ""USD""}",5066.09,Silver,1 +8050,Shannon Weiss,amandamiles@mcknight.com,2020-06-16,"{""language"": ""DE"", ""currency"": ""USD""}",4318.69,Silver,0 +8051,Amber Simpson,rowlandmichele@decker-simon.com,2021-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",9139.15,Silver,1 +8052,William Rhodes,vicki81@walters.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2172.78,Silver,0 +8053,Ashley Lopez,carterandrea@gmail.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""GBP""}",9673.35,Gold,1 +8054,Stephanie Quinn,stewartlogan@gmail.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",3084.22,Bronze,1 +8055,Paul Jones,nbrown@moore.com,2021-09-22,"{""language"": ""FR"", ""currency"": ""USD""}",4172.81,Bronze,1 +8056,Nicole Arroyo,kathy61@phillips.biz,2020-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",7820.49,Bronze,0 +8057,Krystal Ford,carolwatkins@kim-perez.org,2023-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",7257.99,Silver,0 +8058,Henry Robinson,phubbard@gmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9937.16,Bronze,0 +8059,Trevor Hernandez,kristen99@gmail.com,2024-03-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4235.39,Silver,0 +8060,Kayla Vega,kochmichael@anderson-smith.com,2022-07-01,"{""language"": ""EN"", ""currency"": ""GBP""}",7307.96,Silver,0 +8061,Michael Brown,sgraham@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1137.28,Gold,0 +8062,Tina Larsen,carriejohnson@gmail.com,2024-12-11,"{""language"": ""EN"", ""currency"": ""USD""}",8084.0,Bronze,0 +8063,Alexis Mcclure,martinleonard@hotmail.com,2021-03-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7080.51,Silver,1 +8064,Kyle Boyle,rroberts@hotmail.com,2024-11-13,"{""language"": ""EN"", ""currency"": ""USD""}",5595.3,Silver,0 +8065,Andrew White,angelasanders@hotmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7632.85,Gold,1 +8066,Daniel Hernandez,parkchristopher@carter-moore.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",360.36,Bronze,0 +8067,Kyle Roberts,lucerothomas@yahoo.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""EUR""}",7491.89,Silver,0 +8068,Angela Parker,amanda52@yahoo.com,2020-01-19,"{""language"": ""ES"", ""currency"": ""EUR""}",657.23,Gold,1 +8069,Kevin Bray,philipgreen@hotmail.com,2020-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",2467.16,Silver,1 +8070,Anthony Macias,terri72@hotmail.com,2020-12-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8730.34,Gold,0 +8071,Margaret Bishop MD,hansencharles@sanchez.com,2022-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",1166.91,Silver,1 +8072,Laura Juarez,beverlyphillips@pierce.com,2020-12-03,"{""language"": ""FR"", ""currency"": ""CAD""}",2680.1,Silver,1 +8073,Cynthia Turner,ztaylor@hotmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1797.59,Gold,1 +8074,Ricardo Adkins,montgomeryalexa@gmail.com,2021-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",3012.15,Bronze,1 +8075,Kimberly Romero,carrtheresa@gmail.com,2024-07-17,"{""language"": ""EN"", ""currency"": ""CAD""}",3459.31,Gold,1 +8076,Richard Graham,rebecca68@nolan.com,2022-07-06,"{""language"": ""FR"", ""currency"": ""MXN""}",2268.92,Silver,0 +8077,Vanessa Woods,qlambert@morgan.org,2023-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",6366.5,Bronze,0 +8078,Dr. Amy Harris,bbaldwin@yahoo.com,2022-02-27,"{""language"": ""DE"", ""currency"": ""GBP""}",9940.29,Bronze,1 +8079,Raven Davenport,robertsonkaren@gmail.com,2022-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",3562.85,Bronze,0 +8080,Emily Perez,obrienjenny@yahoo.com,2021-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1160.86,Gold,0 +8081,Benjamin Cline,christina84@davies-robertson.com,2023-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",2701.7,Gold,0 +8082,Shannon Oliver,qhall@hotmail.com,2024-02-21,"{""language"": ""DE"", ""currency"": ""EUR""}",2357.66,Silver,0 +8083,Denise Griffith,clarkabigail@hotmail.com,2020-10-07,"{""language"": ""EN"", ""currency"": ""GBP""}",440.63,Silver,1 +8084,Jonathan Mayo,mmiller@deleon-flores.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2893.85,Bronze,1 +8085,Gene Moore,stewartrichard@hotmail.com,2024-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",5156.93,Bronze,0 +8086,Alan Wood,christian94@gmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""GBP""}",4748.85,Bronze,1 +8087,Veronica Miranda,stevecooke@gmail.com,2023-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",9348.88,Bronze,0 +8088,Christopher Cantu,gsimmons@hunter.com,2022-03-06,"{""language"": ""DE"", ""currency"": ""MXN""}",6203.71,Silver,0 +8089,Gregory Salazar,aguirredesiree@gmail.com,2023-08-23,"{""language"": ""DE"", ""currency"": ""CAD""}",581.87,Bronze,0 +8090,Angela Berg,ryan99@bowman.biz,2020-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",6553.07,Silver,0 +8091,Matthew Glover,jessicadavis@hotmail.com,2022-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",3522.28,Silver,0 +8092,Sandra Jackson,ginapineda@lam-silva.info,2021-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",9852.92,Gold,0 +8093,Joseph Smith,kevinflores@yahoo.com,2021-05-06,"{""language"": ""DE"", ""currency"": ""MXN""}",584.17,Silver,1 +8094,Thomas Evans,johnlee@gmail.com,2020-12-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9163.69,Bronze,1 +8095,Heidi Bradford,megan58@yahoo.com,2023-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8838.12,Silver,1 +8096,Stacy Mendez,phillipsjames@hotmail.com,2020-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",9066.74,Bronze,1 +8097,Jaime Davis,anthonymiller@harris.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3857.73,Bronze,1 +8098,Jordan Brown,rachel58@hotmail.com,2024-09-03,"{""language"": ""IT"", ""currency"": ""USD""}",4015.21,Bronze,1 +8099,Katie Johnson,jerry95@gmail.com,2023-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",6375.32,Silver,1 +8100,Derek Walker,wrightpamela@rivera.com,2023-10-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9193.64,Gold,1 +8101,Jerry Maldonado,jamesnguyen@lyons.com,2021-08-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1916.74,Silver,0 +8102,Gary Figueroa,rrandall@hotmail.com,2022-08-28,"{""language"": ""ES"", ""currency"": ""GBP""}",2899.6,Silver,0 +8103,Douglas Martinez,davismario@gmail.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""GBP""}",1561.55,Bronze,1 +8104,Paul Yang,curtiskatie@hotmail.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""MXN""}",1748.55,Silver,0 +8105,Monica Hawkins,holmesjason@yahoo.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4971.95,Silver,0 +8106,Gabriel Massey,wgarcia@haynes-cabrera.com,2024-03-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9926.75,Gold,1 +8107,John Reyes,webbsteven@morrison-sullivan.net,2023-11-21,"{""language"": ""IT"", ""currency"": ""CAD""}",2561.76,Bronze,1 +8108,Randall Jackson,hannahsimpson@yahoo.com,2022-05-28,"{""language"": ""ES"", ""currency"": ""EUR""}",2266.24,Silver,0 +8109,Keith Jones,qweber@chen-watson.com,2021-07-18,"{""language"": ""FR"", ""currency"": ""CAD""}",3392.21,Silver,0 +8110,Jonathan Thompson,amber61@robinson.org,2021-12-12,"{""language"": ""FR"", ""currency"": ""GBP""}",3058.54,Gold,0 +8111,Karen Oconnor,russellglover@lynch-bautista.com,2022-01-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5234.97,Gold,0 +8112,Christina Rodriguez,arielfletcher@hotmail.com,2020-05-13,"{""language"": ""EN"", ""currency"": ""GBP""}",7496.85,Bronze,0 +8113,Thomas Gutierrez,whitecorey@clark.com,2024-05-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4570.78,Silver,1 +8114,Breanna Martin,marygriffith@page.org,2020-06-16,"{""language"": ""IT"", ""currency"": ""GBP""}",5190.51,Silver,0 +8115,Anthony Hamilton,kimberlysalazar@miller-jimenez.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""USD""}",4060.43,Gold,1 +8116,Roger Shaffer,iwilliams@yahoo.com,2024-11-17,"{""language"": ""ES"", ""currency"": ""GBP""}",5398.73,Silver,1 +8117,Joe Marsh,cassandra38@gutierrez-lowery.org,2022-09-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7016.43,Gold,1 +8118,Christopher Richards,angela95@yahoo.com,2022-09-07,"{""language"": ""DE"", ""currency"": ""CAD""}",9898.85,Gold,1 +8119,Vanessa Walters,sarahkaiser@lamb-gordon.com,2024-12-10,"{""language"": ""FR"", ""currency"": ""USD""}",7711.95,Silver,1 +8120,Christina Barker,curtiseric@hotmail.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2987.01,Gold,1 +8121,John Stevens,kim59@floyd-rice.biz,2024-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",525.66,Silver,1 +8122,Stephanie Bailey,halljoshua@price.com,2021-10-11,"{""language"": ""ES"", ""currency"": ""CAD""}",2273.67,Bronze,1 +8123,Adam Buchanan,jeremythomas@graves.biz,2020-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",538.71,Gold,0 +8124,Peggy Brooks,sscott@clark-smith.com,2022-08-10,"{""language"": ""EN"", ""currency"": ""MXN""}",4466.18,Gold,0 +8125,Mary Banks,isims@mcdonald.org,2020-06-20,"{""language"": ""DE"", ""currency"": ""USD""}",2439.41,Gold,1 +8126,Michael Warner,wyattjonathan@walter.com,2020-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9721.36,Gold,1 +8127,Kaitlyn Osborne,billy11@hotmail.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""USD""}",1085.37,Bronze,0 +8128,Ashley Andrews,johngarrett@johnson.com,2020-08-04,"{""language"": ""FR"", ""currency"": ""USD""}",4174.26,Bronze,1 +8129,Robert Shaw,tammy89@prince-james.info,2024-07-11,"{""language"": ""DE"", ""currency"": ""GBP""}",4566.99,Silver,1 +8130,Garrett Young,tylerjames@franklin-smith.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",1152.19,Gold,0 +8131,Margaret Cain,williamsjoanna@yahoo.com,2020-06-17,"{""language"": ""FR"", ""currency"": ""GBP""}",3684.96,Gold,1 +8132,Christopher Day,rodriguezwilliam@yahoo.com,2020-12-01,"{""language"": ""EN"", ""currency"": ""CAD""}",767.37,Gold,0 +8133,Tammy Sanchez,manderson@hotmail.com,2022-05-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7651.49,Silver,1 +8134,Eric Austin,umoreno@hotmail.com,2023-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",1886.62,Silver,0 +8135,Annette Parks,teresacampbell@white.com,2021-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7126.28,Silver,0 +8136,Jason Suarez,amandagood@bolton.com,2024-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",724.93,Gold,0 +8137,Debra Anderson,cday@beard.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5147.54,Gold,1 +8138,James Thompson,xfernandez@hotmail.com,2024-09-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1104.86,Gold,0 +8139,Tracy Andrews,brandi70@yahoo.com,2021-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8556.85,Silver,0 +8140,James Dunn,adrienneedwards@hotmail.com,2021-03-10,"{""language"": ""IT"", ""currency"": ""USD""}",7334.52,Bronze,1 +8141,James Moreno,holtkatelyn@gmail.com,2021-01-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8921.02,Gold,0 +8142,Natalie Green,luceronathan@gmail.com,2021-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",1443.49,Silver,0 +8143,Melissa Odom,brandyalvarez@martinez.com,2021-01-28,"{""language"": ""FR"", ""currency"": ""USD""}",4967.81,Bronze,1 +8144,Donald Gutierrez,michelle99@berry-carter.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",6943.14,Bronze,1 +8145,Zachary Rivera,owhite@williams.com,2023-01-05,"{""language"": ""DE"", ""currency"": ""USD""}",4230.41,Bronze,1 +8146,Craig Paul,kelly32@harper.org,2022-04-03,"{""language"": ""EN"", ""currency"": ""GBP""}",5546.62,Gold,0 +8147,Christina Nunez,msoto@hotmail.com,2023-12-14,"{""language"": ""FR"", ""currency"": ""EUR""}",3565.95,Silver,0 +8148,Ryan Lopez,lisa79@gmail.com,2021-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",9827.78,Bronze,0 +8149,Alicia Dawson,clozano@davis.com,2022-10-17,"{""language"": ""ES"", ""currency"": ""CAD""}",2073.19,Gold,0 +8150,Robert Cook,lthompson@yahoo.com,2022-03-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4069.89,Bronze,1 +8151,Steve Jimenez,david15@gmail.com,2020-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",7489.86,Gold,1 +8152,Kristin Young,cheyenne46@poole.info,2020-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",5888.54,Bronze,0 +8153,Christie Russo,cervantesstephanie@yahoo.com,2020-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",5169.64,Gold,1 +8154,Corey Davis,fowlermegan@ferguson.com,2021-04-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6343.98,Silver,0 +8155,Patrick Guzman,randerson@hotmail.com,2021-11-23,"{""language"": ""ES"", ""currency"": ""GBP""}",4886.83,Bronze,0 +8156,Gregory Hodges,franciscraig@steele.net,2022-07-26,"{""language"": ""EN"", ""currency"": ""EUR""}",2199.88,Bronze,0 +8157,Christine Gutierrez,campbelljeremy@gmail.com,2022-08-31,"{""language"": ""ES"", ""currency"": ""GBP""}",2436.34,Gold,1 +8158,Laura Bell,terri09@yahoo.com,2022-12-09,"{""language"": ""EN"", ""currency"": ""EUR""}",7810.4,Silver,0 +8159,Michael Hernandez,dbrown@hotmail.com,2021-05-01,"{""language"": ""EN"", ""currency"": ""EUR""}",3668.45,Gold,1 +8160,Dorothy Cooley,aclark@mendoza.com,2020-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",821.54,Bronze,0 +8161,Billy Singh,charlesgonzales@yahoo.com,2021-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",5082.84,Gold,1 +8162,Todd Reynolds,xsimpson@gmail.com,2020-03-02,"{""language"": ""FR"", ""currency"": ""CAD""}",1703.68,Silver,0 +8163,Heather Bates,julie04@benton.com,2023-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",2174.7,Gold,1 +8164,Ryan Garcia,scontreras@bradley.com,2021-07-20,"{""language"": ""DE"", ""currency"": ""CAD""}",4303.52,Gold,0 +8165,Todd Mills,josephandrews@nelson.com,2022-06-26,"{""language"": ""DE"", ""currency"": ""EUR""}",6322.28,Bronze,1 +8166,Tammy Foster,fmalone@davis.com,2022-08-30,"{""language"": ""FR"", ""currency"": ""GBP""}",9640.29,Silver,1 +8167,Amanda Mills,brownalyssa@holland.biz,2021-12-12,"{""language"": ""ES"", ""currency"": ""GBP""}",2810.66,Bronze,0 +8168,Briana Miranda,srice@hotmail.com,2020-12-20,"{""language"": ""DE"", ""currency"": ""USD""}",568.91,Bronze,1 +8169,Meagan Blackwell,patty76@gmail.com,2020-04-04,"{""language"": ""IT"", ""currency"": ""GBP""}",1707.67,Gold,0 +8170,Alexis Smith,jennawillis@yahoo.com,2023-11-01,"{""language"": ""EN"", ""currency"": ""CAD""}",6893.58,Gold,0 +8171,Jamie Martinez,harperlinda@hotmail.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""MXN""}",3061.94,Silver,1 +8172,Russell Cox,agordon@hotmail.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",5554.07,Bronze,0 +8173,Michael Simmons,edward41@castaneda.info,2021-11-02,"{""language"": ""ES"", ""currency"": ""EUR""}",4090.31,Silver,0 +8174,Jasmine Curtis,jgarza@odom-smith.com,2021-05-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3495.83,Bronze,0 +8175,Meghan Ramirez,brockmaria@stevens.com,2023-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",1594.73,Bronze,0 +8176,Bryan Dawson DDS,rmartin@cole.com,2021-06-25,"{""language"": ""EN"", ""currency"": ""EUR""}",4763.72,Silver,1 +8177,Jeremy Moore,raychris@gmail.com,2020-09-07,"{""language"": ""EN"", ""currency"": ""CAD""}",849.15,Gold,0 +8178,Carol Jordan,claudiacruz@nunez.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""EUR""}",7110.56,Gold,1 +8179,Patrick Bishop,msheppard@williams-rodriguez.org,2021-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",3173.92,Gold,0 +8180,Travis Rubio,ctaylor@hampton.com,2020-04-20,"{""language"": ""ES"", ""currency"": ""USD""}",935.21,Silver,1 +8181,Michael Evans,jorgewashington@gmail.com,2024-06-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4607.85,Gold,1 +8182,Deborah Walters,aarongarcia@richardson.com,2019-12-27,"{""language"": ""ES"", ""currency"": ""USD""}",3817.14,Gold,0 +8183,Perry Johnson,grahamlori@frederick.com,2021-04-20,"{""language"": ""ES"", ""currency"": ""MXN""}",4564.87,Gold,1 +8184,Frank Hess,lbradshaw@gonzalez.org,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5748.13,Bronze,0 +8185,Paula Thomas,hannah41@yahoo.com,2024-07-06,"{""language"": ""ES"", ""currency"": ""GBP""}",7791.2,Gold,0 +8186,Dwayne Parks,montoyadaniel@gmail.com,2023-11-17,"{""language"": ""FR"", ""currency"": ""EUR""}",3377.57,Gold,1 +8187,Wendy Garcia,kimberly14@mendez.com,2024-12-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5443.1,Bronze,1 +8188,Jessica Adams,anthony68@gmail.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",6346.27,Silver,0 +8189,Toni Flores,patrick82@yahoo.com,2022-04-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4807.04,Gold,1 +8190,Roy Alexander,mariamorris@wright-scott.info,2022-10-30,"{""language"": ""FR"", ""currency"": ""USD""}",4520.55,Gold,1 +8191,Dan Hahn,juliarojas@bennett.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""MXN""}",2860.25,Silver,0 +8192,Christopher Williams,michaelnorton@thomas.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""MXN""}",6252.58,Silver,1 +8193,Adam Garrison,anthonyjones@lawson-jones.com,2020-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",6670.76,Silver,1 +8194,David Franco,matajohn@yahoo.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""EUR""}",1928.96,Gold,0 +8195,Christine Anthony,jamesshannon@hotmail.com,2022-09-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5324.48,Silver,0 +8196,Nathan Richardson,ortizthomas@baird.org,2021-08-26,"{""language"": ""EN"", ""currency"": ""USD""}",2276.53,Gold,0 +8197,George Goodman DVM,reidgabrielle@hotmail.com,2021-12-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9052.85,Bronze,1 +8198,Brandon Erickson,riverajustin@dickerson.biz,2023-06-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6424.34,Bronze,0 +8199,Lee Hall,willie52@sweeney.biz,2022-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8305.01,Gold,0 +8200,Tiffany Johns,sergio62@matthews.biz,2022-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4455.68,Bronze,0 +8201,Lisa Garcia,evansnicholas@santos.biz,2021-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8348.29,Silver,1 +8202,Emily Williams,jennifer94@yahoo.com,2020-04-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3696.13,Silver,0 +8203,Hector Mccullough,farleysuzanne@ryan-maldonado.org,2023-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",2944.0,Gold,1 +8204,Christopher Proctor,villadaniel@frey.com,2022-05-14,"{""language"": ""EN"", ""currency"": ""USD""}",9425.44,Bronze,0 +8205,Matthew Guerrero,millerdawn@gmail.com,2023-01-25,"{""language"": ""EN"", ""currency"": ""CAD""}",2622.91,Silver,1 +8206,Nancy Huynh,matthew87@keith.info,2023-08-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5988.69,Bronze,0 +8207,Megan Becker,maryrubio@yahoo.com,2024-05-21,"{""language"": ""FR"", ""currency"": ""USD""}",1830.63,Gold,1 +8208,Kyle Riddle,obrienerica@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7520.49,Bronze,0 +8209,Amanda Carter,regina92@bishop-torres.com,2023-09-05,"{""language"": ""IT"", ""currency"": ""GBP""}",9428.52,Bronze,0 +8210,Jordan Scott,sheilawilliams@yahoo.com,2020-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",4636.05,Bronze,0 +8211,Karen Johnson,william84@yahoo.com,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3441.83,Gold,1 +8212,Sara Robbins,obailey@sexton-beasley.org,2021-10-07,"{""language"": ""DE"", ""currency"": ""MXN""}",6501.28,Bronze,1 +8213,Amy Bowen,gbanks@yahoo.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",2962.09,Bronze,0 +8214,Dave Vazquez,robynjacobson@gomez.net,2021-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",662.76,Gold,1 +8215,Kaitlyn Wilson,robertleonard@burton.com,2023-05-22,"{""language"": ""ES"", ""currency"": ""MXN""}",6231.05,Gold,1 +8216,Charles Barnes,todd40@gonzales-bradley.net,2021-06-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4482.53,Bronze,1 +8217,Bonnie Moran,amandahudson@gmail.com,2022-12-25,"{""language"": ""ES"", ""currency"": ""MXN""}",9196.94,Silver,0 +8218,Eric Taylor,penapatrick@webb-cooper.net,2022-12-18,"{""language"": ""EN"", ""currency"": ""EUR""}",8227.74,Gold,1 +8219,Heather Perry,vmacdonald@yahoo.com,2020-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2634.87,Bronze,0 +8220,Lisa Hull,mthornton@hotmail.com,2020-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",4805.97,Bronze,0 +8221,Kathryn Brown,holderarthur@hotmail.com,2020-08-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7153.23,Silver,1 +8222,Justin Reilly,lawrence54@king.org,2023-11-18,"{""language"": ""ES"", ""currency"": ""MXN""}",221.43,Silver,0 +8223,Angela Jones,soniamorrison@yahoo.com,2022-05-29,"{""language"": ""ES"", ""currency"": ""MXN""}",1798.97,Bronze,0 +8224,Sara Jones,tbrown@roberts.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""USD""}",8769.16,Bronze,0 +8225,Frank Patel,jordanjacob@adams-barnett.com,2022-06-11,"{""language"": ""IT"", ""currency"": ""EUR""}",3658.44,Silver,0 +8226,Donald Hall,ashleybell@hammond.com,2021-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",1724.0,Bronze,1 +8227,Gregory Mcdonald,vmiller@meyer-hanson.biz,2020-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8636.79,Bronze,0 +8228,Matthew Delacruz,murphystacy@hotmail.com,2021-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",254.15,Bronze,0 +8229,Brenda Waters,browndiana@gmail.com,2024-03-20,"{""language"": ""ES"", ""currency"": ""MXN""}",3426.4,Gold,0 +8230,Joseph Adams,uparker@cole.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1491.59,Bronze,0 +8231,Kristen Garcia,mitchellwilliam@gmail.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",2420.22,Silver,1 +8232,Danny Sampson,brandonvaldez@holt.org,2021-09-06,"{""language"": ""IT"", ""currency"": ""GBP""}",6394.4,Silver,1 +8233,Lisa Gibson,debbie69@gonzalez.biz,2021-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",3704.71,Silver,0 +8234,Lisa Myers,kwagner@gmail.com,2021-07-09,"{""language"": ""FR"", ""currency"": ""USD""}",1234.0,Silver,1 +8235,Alex Turner,scott49@yahoo.com,2022-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6764.11,Silver,0 +8236,Raymond Morales,dave47@johnson-williamson.com,2023-03-14,"{""language"": ""IT"", ""currency"": ""CAD""}",2301.72,Silver,0 +8237,Earl Sullivan,dennissusan@deleon-campbell.com,2022-10-23,"{""language"": ""ES"", ""currency"": ""MXN""}",916.48,Silver,1 +8238,Brandy Landry,eric15@roth.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""MXN""}",5725.4,Silver,1 +8239,Eddie Barber,farmerautumn@hotmail.com,2023-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",7430.83,Bronze,1 +8240,Melissa Blake,alexfranco@chapman.com,2021-01-24,"{""language"": ""DE"", ""currency"": ""GBP""}",8870.57,Silver,0 +8241,William Morris,christopher26@gmail.com,2022-05-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5942.69,Gold,0 +8242,David Hester,meadowsbrian@english.com,2020-12-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7365.4,Silver,0 +8243,Jasmine Stewart,alexisball@yahoo.com,2023-05-04,"{""language"": ""ES"", ""currency"": ""GBP""}",4789.51,Silver,1 +8244,Jenna Ellison,vmarks@carroll.com,2020-05-11,"{""language"": ""DE"", ""currency"": ""EUR""}",6708.18,Bronze,1 +8245,Shirley Murphy,caseypatel@gmail.com,2023-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5151.24,Gold,1 +8246,Anthony Diaz,alex87@watts.net,2022-07-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7968.81,Bronze,1 +8247,Nathan Peterson,hensonadam@woodard-brown.com,2024-09-12,"{""language"": ""ES"", ""currency"": ""USD""}",5528.72,Gold,0 +8248,Melinda Henderson,markward@maldonado-webb.com,2022-12-16,"{""language"": ""ES"", ""currency"": ""GBP""}",5950.97,Gold,0 +8249,James Miles,amcdonald@rodriguez-duncan.com,2022-02-16,"{""language"": ""IT"", ""currency"": ""GBP""}",1664.06,Bronze,0 +8250,Jordan Kim,acostasandra@gmail.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""CAD""}",4952.17,Silver,0 +8251,Rita Mcgrath,ycooper@watts.org,2023-03-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6438.07,Bronze,0 +8252,Amanda Oconnor,umartinez@hotmail.com,2020-10-16,"{""language"": ""FR"", ""currency"": ""USD""}",3077.17,Bronze,1 +8253,Tracey Carney,crystalhodge@lopez.com,2022-11-22,"{""language"": ""FR"", ""currency"": ""MXN""}",6257.77,Bronze,0 +8254,Bradley Shaw,powellkatelyn@gmail.com,2021-08-21,"{""language"": ""FR"", ""currency"": ""MXN""}",2470.12,Bronze,0 +8255,Sandra Park,zwilson@yahoo.com,2023-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7943.87,Gold,0 +8256,Travis Gonzalez,chase06@miller-little.com,2023-10-30,"{""language"": ""ES"", ""currency"": ""USD""}",2564.04,Gold,1 +8257,Kelly Lee,johnsondavid@brown.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2431.26,Gold,0 +8258,Amanda Richardson,susan19@jenkins.net,2021-04-03,"{""language"": ""IT"", ""currency"": ""EUR""}",9841.87,Gold,0 +8259,Jamie Brown,figueroaheidi@hotmail.com,2023-06-24,"{""language"": ""FR"", ""currency"": ""USD""}",189.39,Bronze,0 +8260,Tiffany Poole,philip42@lee-lara.com,2023-09-13,"{""language"": ""ES"", ""currency"": ""MXN""}",1444.86,Silver,1 +8261,Sherry Mann,baileykimberly@yahoo.com,2021-05-26,"{""language"": ""IT"", ""currency"": ""MXN""}",6591.98,Bronze,0 +8262,Blake Wilkerson,hansenjackson@green.com,2020-03-30,"{""language"": ""IT"", ""currency"": ""MXN""}",7551.0,Bronze,1 +8263,Mrs. Rachel Morrison,uwebb@gmail.com,2023-11-15,"{""language"": ""ES"", ""currency"": ""CAD""}",6746.42,Silver,1 +8264,Crystal Taylor,gentrytony@hotmail.com,2022-04-24,"{""language"": ""ES"", ""currency"": ""EUR""}",2200.98,Gold,0 +8265,Lauren Crawford,umarks@stone.com,2024-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",6108.48,Gold,0 +8266,Julie Ellis,robertcamacho@contreras.org,2023-08-29,"{""language"": ""IT"", ""currency"": ""EUR""}",5259.13,Gold,0 +8267,Gregory Garcia,ryan38@finley.com,2021-03-01,"{""language"": ""DE"", ""currency"": ""MXN""}",1168.68,Silver,1 +8268,Peggy White,asmith@wilson-jennings.info,2023-02-09,"{""language"": ""IT"", ""currency"": ""CAD""}",3085.53,Silver,1 +8269,Brian Delgado,ojackson@hotmail.com,2020-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",9377.34,Bronze,0 +8270,Suzanne Walker,meganbuck@casey-jones.com,2021-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5291.73,Gold,0 +8271,Jonathan Woodward,stevenhoward@martinez.com,2021-09-07,"{""language"": ""EN"", ""currency"": ""EUR""}",7272.16,Bronze,1 +8272,Matthew Parker,danielle51@randolph.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8934.61,Bronze,0 +8273,Suzanne Freeman,evanssusan@monroe.biz,2023-10-30,"{""language"": ""FR"", ""currency"": ""GBP""}",4669.29,Gold,1 +8274,Allison Duarte,hodgesjoseph@butler-ortiz.com,2022-02-01,"{""language"": ""ES"", ""currency"": ""GBP""}",297.75,Silver,1 +8275,Debra Rosario,vking@horne.org,2021-04-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1662.74,Bronze,1 +8276,Jacqueline Rich,cwiley@yahoo.com,2022-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",7522.83,Bronze,0 +8277,Sharon Park,montesdebra@gmail.com,2023-11-16,"{""language"": ""EN"", ""currency"": ""MXN""}",6787.0,Silver,1 +8278,Stanley Colon,jonesnathan@campbell.biz,2023-01-13,"{""language"": ""FR"", ""currency"": ""USD""}",4348.81,Bronze,0 +8279,Dawn Rangel,christinafrye@marquez-tate.info,2022-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",3483.9,Bronze,0 +8280,Alexander Patterson,pharrison@gmail.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1063.42,Silver,0 +8281,Kevin Banks,nancy38@gmail.com,2020-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",2164.75,Gold,1 +8282,Stephen Hale,shirley19@mitchell.com,2022-01-30,"{""language"": ""FR"", ""currency"": ""GBP""}",7458.87,Silver,0 +8283,Michael Stevenson,jasonwatson@gmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",4863.35,Bronze,0 +8284,Rebekah Clark,allisonwilliams@gordon.com,2021-10-11,"{""language"": ""IT"", ""currency"": ""CAD""}",9496.26,Gold,1 +8285,Gabriella Carter,avilla@pierce.com,2023-10-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8423.73,Gold,1 +8286,Anita Murillo,ldavis@johnson.biz,2023-07-19,"{""language"": ""IT"", ""currency"": ""USD""}",499.63,Silver,1 +8287,Jason Koch,melissa34@gmail.com,2021-01-10,"{""language"": ""ES"", ""currency"": ""EUR""}",4212.76,Gold,1 +8288,Andrew Tate,carl58@thomas.com,2021-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",9249.65,Gold,1 +8289,Tammy Andrews,oconnelljoan@gmail.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""MXN""}",6438.32,Gold,1 +8290,Travis Coleman,dgardner@gmail.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""CAD""}",9477.99,Gold,0 +8291,Jessica Park,zmorton@rogers.org,2021-06-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9565.47,Gold,0 +8292,John Parsons,kathleen75@gibson.net,2024-09-12,"{""language"": ""FR"", ""currency"": ""USD""}",454.22,Bronze,1 +8293,Mr. Joseph Cooke,iking@ellis.biz,2021-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",593.1,Silver,1 +8294,Robert Wheeler,xhall@walker.biz,2023-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",9505.17,Bronze,1 +8295,Carol Diaz,kholden@taylor.biz,2023-01-29,"{""language"": ""DE"", ""currency"": ""EUR""}",6260.47,Silver,0 +8296,Richard Rhodes,zjones@wilson-ferguson.biz,2024-10-21,"{""language"": ""FR"", ""currency"": ""USD""}",2987.83,Bronze,0 +8297,Lisa Finley,chelseaowens@gmail.com,2020-07-30,"{""language"": ""DE"", ""currency"": ""GBP""}",2686.58,Silver,0 +8298,Bianca Harper,batessarah@mcfarland.com,2022-02-09,"{""language"": ""FR"", ""currency"": ""GBP""}",6921.4,Gold,1 +8299,Bryan Ellis,scottbrenda@nichols.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5086.07,Silver,0 +8300,John Ramsey,sherimcconnell@caldwell.net,2022-11-28,"{""language"": ""ES"", ""currency"": ""USD""}",7073.71,Gold,0 +8301,Lori Gibbs,moorebarbara@patterson.org,2024-06-28,"{""language"": ""DE"", ""currency"": ""USD""}",9075.48,Bronze,0 +8302,Ashley Heath,tinajackson@yahoo.com,2022-06-24,"{""language"": ""IT"", ""currency"": ""MXN""}",5588.41,Bronze,1 +8303,Gerald Thompson,mjohnson@hotmail.com,2022-01-12,"{""language"": ""FR"", ""currency"": ""EUR""}",8197.26,Gold,0 +8304,Samantha Hamilton,charles80@hotmail.com,2020-06-05,"{""language"": ""IT"", ""currency"": ""MXN""}",8371.17,Bronze,1 +8305,Bonnie Perez,kturner@hotmail.com,2022-07-02,"{""language"": ""IT"", ""currency"": ""USD""}",794.19,Gold,1 +8306,Karina Swanson,kellicamacho@tucker.info,2024-11-22,"{""language"": ""IT"", ""currency"": ""CAD""}",359.6,Gold,1 +8307,Brian Dickerson,cassandra12@parker-adams.info,2024-01-04,"{""language"": ""DE"", ""currency"": ""EUR""}",4578.18,Silver,0 +8308,Jessica Fitzgerald,curtisthompson@hotmail.com,2023-11-14,"{""language"": ""DE"", ""currency"": ""CAD""}",5874.23,Bronze,0 +8309,Jordan Mitchell,martha82@gmail.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""USD""}",6277.54,Gold,1 +8310,Jennifer Lee,rodriguezalyssa@gmail.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3382.95,Bronze,1 +8311,Bianca Johnson,jake60@robinson.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""USD""}",8204.74,Silver,1 +8312,Michael Cox,davisdawn@hotmail.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""EUR""}",5009.76,Gold,1 +8313,Terri Christian,sarawilliamson@castaneda.biz,2021-09-28,"{""language"": ""ES"", ""currency"": ""MXN""}",5957.08,Silver,0 +8314,Oscar Butler,amandajenkins@wilson-hanson.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",9484.63,Silver,0 +8315,Diana Baker,mwong@gmail.com,2021-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2148.11,Gold,0 +8316,Michele Hurst,ryan62@wells-leblanc.org,2024-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",3816.71,Bronze,1 +8317,Taylor Watts,brent81@yahoo.com,2022-08-17,"{""language"": ""EN"", ""currency"": ""USD""}",98.19,Silver,0 +8318,Kimberly Dixon,adamsdenise@gmail.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""USD""}",1602.75,Silver,0 +8319,Joy Molina,lisahoward@yahoo.com,2021-08-15,"{""language"": ""ES"", ""currency"": ""CAD""}",2809.64,Gold,1 +8320,Katrina Lopez,hrodriguez@hotmail.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",8159.52,Gold,0 +8321,Katherine Benitez,martinezlaura@hotmail.com,2020-10-26,"{""language"": ""IT"", ""currency"": ""MXN""}",1839.11,Silver,0 +8322,Scott Richardson,wgibson@hotmail.com,2024-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3222.05,Gold,1 +8323,Crystal Farley,tstewart@moore.com,2021-10-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2431.44,Gold,1 +8324,Jenna Ball,carl55@yahoo.com,2021-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",7170.18,Bronze,0 +8325,Carolyn Mack,debra37@le.net,2021-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1245.35,Bronze,0 +8326,Veronica Martin,jacob97@simpson.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9629.48,Bronze,0 +8327,Cassandra Morton,zbell@clark-spence.biz,2022-02-01,"{""language"": ""EN"", ""currency"": ""CAD""}",163.92,Bronze,1 +8328,Wendy Frederick,pbecker@freeman.biz,2022-01-23,"{""language"": ""EN"", ""currency"": ""MXN""}",810.92,Bronze,0 +8329,Tyler Robinson,tiffanywashington@smith.org,2024-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",5710.6,Bronze,0 +8330,Katherine Martin,lukeholder@hotmail.com,2020-05-03,"{""language"": ""FR"", ""currency"": ""USD""}",6410.31,Silver,0 +8331,Stacey King,lauraweeks@dickson.info,2020-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",4677.29,Gold,1 +8332,Brian Brown,ppeters@lang.info,2020-09-04,"{""language"": ""ES"", ""currency"": ""GBP""}",3614.64,Silver,1 +8333,Douglas Mcdonald,susanmcclure@ford-gonzalez.com,2024-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",4232.06,Silver,0 +8334,Joseph Galloway,michaelbarker@yahoo.com,2020-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",3268.57,Gold,1 +8335,Heather Thompson,robin51@wright.com,2022-07-29,"{""language"": ""DE"", ""currency"": ""EUR""}",4046.69,Silver,1 +8336,Allen Anderson,quinnerin@yahoo.com,2021-10-28,"{""language"": ""IT"", ""currency"": ""GBP""}",6875.38,Silver,1 +8337,Caitlin Pearson,qvillanueva@gmail.com,2021-11-04,"{""language"": ""DE"", ""currency"": ""GBP""}",922.55,Gold,0 +8338,John Nicholson,zwarren@carpenter.org,2021-05-06,"{""language"": ""ES"", ""currency"": ""CAD""}",7612.59,Gold,0 +8339,Molly Gibson,zhernandez@yahoo.com,2021-12-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1348.6,Gold,0 +8340,Tony Cruz,jordannicholas@hotmail.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""CAD""}",513.15,Silver,1 +8341,Jimmy Hoffman,joseph40@hotmail.com,2023-04-03,"{""language"": ""DE"", ""currency"": ""GBP""}",2862.44,Silver,0 +8342,Lisa Jordan,ganderson@gmail.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",6096.66,Gold,1 +8343,Tracy Carney,cynthiaallen@thomas.com,2024-11-04,"{""language"": ""EN"", ""currency"": ""GBP""}",94.6,Silver,1 +8344,Charles Fuller,fischerlouis@yahoo.com,2023-08-16,"{""language"": ""ES"", ""currency"": ""EUR""}",6553.96,Bronze,0 +8345,James Camacho,philip98@gmail.com,2021-02-07,"{""language"": ""EN"", ""currency"": ""EUR""}",3604.84,Silver,0 +8346,Gary Kane,medinatimothy@hotmail.com,2022-12-19,"{""language"": ""IT"", ""currency"": ""EUR""}",8439.01,Silver,0 +8347,Lisa White,davidellison@quinn-smith.com,2023-10-15,"{""language"": ""IT"", ""currency"": ""GBP""}",5926.53,Bronze,0 +8348,Daniel Bishop,james41@jensen.com,2024-09-13,"{""language"": ""ES"", ""currency"": ""EUR""}",1527.92,Gold,0 +8349,Michael Coleman,pwade@gmail.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""CAD""}",8507.68,Silver,1 +8350,Brenda Brown,ucasey@gmail.com,2022-10-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5244.08,Gold,0 +8351,Kurt Hayes,candacemcgee@yahoo.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""USD""}",4564.64,Silver,0 +8352,Emma Morrison,tschultz@baker.com,2020-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",338.37,Gold,1 +8353,Suzanne Webster,mooremichael@alvarado.com,2021-10-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2725.88,Gold,0 +8354,David Johnson,weissnathan@gmail.com,2020-01-25,"{""language"": ""IT"", ""currency"": ""MXN""}",7538.83,Bronze,0 +8355,Tara Reed,micheallee@goodwin.info,2024-05-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7881.09,Silver,0 +8356,Megan Michael,deanna16@morrison.com,2022-10-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4350.08,Bronze,0 +8357,Catherine Hart,sandrabenson@yahoo.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",6199.77,Gold,1 +8358,Becky Chapman,joanhodges@gmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""MXN""}",7464.74,Silver,1 +8359,Leslie Hamilton,debrajenkins@yahoo.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7839.7,Silver,1 +8360,Kara Garcia,jamie36@gmail.com,2024-05-26,"{""language"": ""ES"", ""currency"": ""CAD""}",7132.93,Silver,0 +8361,Ray Mcdaniel,avargas@harris.com,2023-06-18,"{""language"": ""DE"", ""currency"": ""GBP""}",9303.14,Gold,0 +8362,Jessica Small,stevenszachary@sparks-burke.com,2020-02-06,"{""language"": ""DE"", ""currency"": ""GBP""}",7923.29,Bronze,1 +8363,Aaron Stanley,schneiderchristine@vance-lee.com,2024-01-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7337.12,Gold,0 +8364,Carrie Ashley,amygarcia@dennis.com,2021-10-07,"{""language"": ""IT"", ""currency"": ""USD""}",5863.0,Bronze,1 +8365,Brandon Cline,richardsoncatherine@powell.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""EUR""}",2389.29,Gold,1 +8366,Robert Hernandez,wbenson@strong-thomas.org,2021-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3072.3,Gold,1 +8367,Scott Mathews,dgallegos@garcia.org,2024-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",6523.24,Bronze,0 +8368,Emily Johnson,rossjennifer@lewis-west.com,2020-08-03,"{""language"": ""IT"", ""currency"": ""MXN""}",3901.35,Bronze,0 +8369,Amber Brown,justin46@yahoo.com,2024-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",9635.86,Silver,0 +8370,Ian Howard,michael10@hotmail.com,2021-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",4011.85,Gold,0 +8371,Angela Murray,crawfordkimberly@gmail.com,2022-02-25,"{""language"": ""EN"", ""currency"": ""GBP""}",5150.45,Silver,0 +8372,Sherry Martin,kwilson@gmail.com,2024-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",7945.14,Bronze,1 +8373,Tina Gray,gmoore@porter.com,2021-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",7833.46,Gold,1 +8374,Mrs. Christina Madden,hernandezmelinda@hotmail.com,2020-09-22,"{""language"": ""ES"", ""currency"": ""MXN""}",7020.8,Silver,1 +8375,Andrea Jimenez,xgarcia@ramirez-ramos.info,2023-06-19,"{""language"": ""IT"", ""currency"": ""GBP""}",577.82,Gold,1 +8376,Micheal Watkins,sgarcia@hotmail.com,2022-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",1956.03,Gold,1 +8377,Erik Kennedy,emilybird@hall.biz,2019-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",8603.51,Gold,1 +8378,Kelly Quinn,tracymorales@yahoo.com,2020-04-10,"{""language"": ""DE"", ""currency"": ""EUR""}",1968.03,Bronze,0 +8379,Nicholas Yoder,ericaevans@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",3768.25,Silver,1 +8380,Shane Flores,tochoa@gmail.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",1294.33,Bronze,1 +8381,Casey Oliver,gibbsdavid@hotmail.com,2022-10-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3152.77,Silver,0 +8382,Anthony Garza,daltonthomas@cherry.com,2021-03-01,"{""language"": ""EN"", ""currency"": ""CAD""}",4920.73,Gold,1 +8383,Samantha Stevens,brendanford@castro-marshall.biz,2020-10-24,"{""language"": ""IT"", ""currency"": ""GBP""}",9201.07,Silver,1 +8384,Tiffany Martinez,castillomelanie@yahoo.com,2021-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",9192.72,Bronze,0 +8385,Mrs. Alexis Jones,samuel48@hotmail.com,2021-05-28,"{""language"": ""IT"", ""currency"": ""CAD""}",4178.92,Silver,0 +8386,Keith Cook,fschroeder@hotmail.com,2023-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",66.97,Silver,0 +8387,Mr. Daniel Charles,yjohnson@ford.info,2022-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",4565.0,Silver,0 +8388,Paula Davidson,xnolan@norris-meyers.info,2020-08-12,"{""language"": ""EN"", ""currency"": ""GBP""}",7660.32,Bronze,0 +8389,Angela Stone,tracygomez@hamilton-davis.net,2023-10-19,"{""language"": ""DE"", ""currency"": ""MXN""}",3601.59,Bronze,1 +8390,Howard House,vrodriguez@gmail.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""GBP""}",2582.14,Bronze,1 +8391,Tyler Johnson,vbrock@brady.com,2020-02-15,"{""language"": ""FR"", ""currency"": ""GBP""}",4699.53,Silver,0 +8392,James Perez,ejoseph@hawkins.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1802.51,Silver,0 +8393,Ms. Mary Dorsey MD,reginald03@ramos-shelton.com,2022-05-25,"{""language"": ""ES"", ""currency"": ""CAD""}",3951.35,Bronze,0 +8394,Cynthia Patterson,willie87@hotmail.com,2021-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6279.97,Bronze,1 +8395,Jay Simon,alexandergarcia@hotmail.com,2023-03-18,"{""language"": ""DE"", ""currency"": ""CAD""}",9774.33,Bronze,1 +8396,Tyrone Shaw,hsimon@hotmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",5501.34,Gold,1 +8397,Daniel Robinson,christian84@gmail.com,2024-05-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8300.17,Gold,1 +8398,Danielle Lambert,jgarrison@trujillo.net,2020-05-10,"{""language"": ""FR"", ""currency"": ""MXN""}",9646.63,Silver,0 +8399,Mary Frazier,grahamkurt@gmail.com,2021-01-26,"{""language"": ""IT"", ""currency"": ""USD""}",4370.23,Gold,1 +8400,Darrell Russell,sarahrobinson@roberts.com,2020-06-17,"{""language"": ""ES"", ""currency"": ""MXN""}",9320.62,Gold,1 +8401,Timothy Myers,brucelam@martinez.biz,2022-05-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6985.17,Bronze,0 +8402,Jennifer Garrett,jlopez@gmail.com,2024-03-08,"{""language"": ""EN"", ""currency"": ""CAD""}",389.85,Gold,0 +8403,Terri Smith,jennifertaylor@brown.com,2024-08-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9958.28,Bronze,1 +8404,Chloe Garner,jenniferking@cunningham.com,2024-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7923.27,Gold,1 +8405,Daniel Ballard,michelle12@santos.info,2024-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",9788.66,Gold,0 +8406,Kristen Hughes,dean19@hotmail.com,2022-04-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3730.4,Bronze,0 +8407,Bethany Ramirez,qstephens@hotmail.com,2020-10-15,"{""language"": ""EN"", ""currency"": ""GBP""}",615.05,Silver,1 +8408,Patrick Carney,crystalcopeland@harrison.org,2021-01-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5538.04,Bronze,1 +8409,Craig Rogers,kari91@fischer-thomas.info,2023-09-23,"{""language"": ""FR"", ""currency"": ""CAD""}",9261.15,Gold,1 +8410,Robin Lee,watkinspamela@fisher.com,2020-02-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6310.76,Gold,0 +8411,Christina Bentley,woodsmichael@yahoo.com,2022-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9435.36,Silver,1 +8412,Laura Lopez,mjones@reed.com,2021-05-23,"{""language"": ""ES"", ""currency"": ""MXN""}",7422.33,Bronze,1 +8413,Miranda Ellis,kbryant@lee.info,2020-10-24,"{""language"": ""FR"", ""currency"": ""MXN""}",7767.81,Silver,1 +8414,Terry Jackson,maryramirez@johnson-robbins.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4726.45,Bronze,1 +8415,Michelle Brandt,morganjacqueline@fleming.com,2022-11-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7277.33,Silver,1 +8416,Olivia Smith,cristiancox@fisher.com,2024-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",2817.45,Silver,0 +8417,Kenneth Patterson,zbradley@garcia.com,2023-12-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2827.65,Gold,1 +8418,Anthony Schmidt,sarah21@hotmail.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",7904.86,Silver,1 +8419,Eric Baker,ywagner@gmail.com,2024-04-15,"{""language"": ""IT"", ""currency"": ""EUR""}",2526.35,Gold,0 +8420,Robert Rice,smithmark@collins.com,2023-01-09,"{""language"": ""FR"", ""currency"": ""CAD""}",4755.26,Gold,1 +8421,Michael Thompson,yhouston@hotmail.com,2023-08-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8078.12,Silver,0 +8422,William Coleman,latoyalopez@hotmail.com,2023-09-28,"{""language"": ""EN"", ""currency"": ""GBP""}",7049.26,Gold,1 +8423,Joshua Flynn,melaniesmith@jimenez.biz,2022-06-10,"{""language"": ""IT"", ""currency"": ""CAD""}",5053.71,Silver,0 +8424,Adam Massey,newmanandrea@hotmail.com,2024-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",4555.5,Silver,0 +8425,Joshua Gonzalez,sethschultz@sheppard-robinson.info,2022-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",1642.25,Bronze,1 +8426,Justin Ortiz,petershannon@hotmail.com,2021-07-05,"{""language"": ""DE"", ""currency"": ""USD""}",9144.54,Silver,1 +8427,Amy Velazquez,hannah16@rodriguez.biz,2022-09-21,"{""language"": ""ES"", ""currency"": ""CAD""}",8758.12,Silver,0 +8428,Paul Hickman,john39@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2958.55,Gold,0 +8429,Kyle Perez,jaime56@hotmail.com,2022-07-03,"{""language"": ""DE"", ""currency"": ""USD""}",1902.43,Gold,1 +8430,Kimberly Reed,patricia45@castillo-kelley.net,2021-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",9489.39,Silver,0 +8431,Patricia Martinez,zacharykramer@vincent-patrick.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8686.95,Silver,0 +8432,Susan Harvey,justinmaxwell@hotmail.com,2023-09-06,"{""language"": ""EN"", ""currency"": ""GBP""}",1527.11,Silver,1 +8433,Lucas Hawkins DDS,robinchoi@campbell-branch.info,2024-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",2687.49,Gold,1 +8434,Aaron Gutierrez,angelarice@estrada.com,2024-05-29,"{""language"": ""ES"", ""currency"": ""EUR""}",2699.72,Gold,0 +8435,Brent Williams,matthewbright@king.com,2020-07-14,"{""language"": ""ES"", ""currency"": ""GBP""}",2131.5,Gold,1 +8436,Krista Graham,angelchristian@smith.org,2023-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",9747.55,Silver,0 +8437,Alexis Nielsen,ucalderon@hotmail.com,2022-02-19,"{""language"": ""ES"", ""currency"": ""MXN""}",7454.93,Gold,1 +8438,Robert Levine,megancooke@andrews.net,2019-12-17,"{""language"": ""FR"", ""currency"": ""CAD""}",5706.54,Silver,0 +8439,Eric Marquez,michael25@gmail.com,2020-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",244.01,Silver,0 +8440,Mary Ferrell,steven90@hotmail.com,2021-09-20,"{""language"": ""IT"", ""currency"": ""CAD""}",5684.33,Bronze,0 +8441,Stephen Moyer,christinasmith@cox.com,2024-09-26,"{""language"": ""IT"", ""currency"": ""GBP""}",545.43,Gold,1 +8442,Geoffrey Davis,danielgarcia@jones-bell.com,2022-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1916.58,Silver,0 +8443,Andrew Martinez,patriciasnow@hotmail.com,2021-10-05,"{""language"": ""IT"", ""currency"": ""GBP""}",6322.82,Bronze,0 +8444,John Nguyen,jeffreyclarke@yahoo.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9737.68,Gold,0 +8445,Rebecca Martinez,amanda54@hotmail.com,2021-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",4613.88,Silver,1 +8446,Leah Waters,kimberlygutierrez@hotmail.com,2020-10-22,"{""language"": ""DE"", ""currency"": ""GBP""}",2700.39,Silver,0 +8447,Christopher Solis,wilkinsonadam@jordan.com,2023-06-08,"{""language"": ""EN"", ""currency"": ""USD""}",3560.18,Bronze,1 +8448,Amanda Gonzalez,pittmantravis@taylor-walker.info,2020-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",1202.55,Gold,0 +8449,Elizabeth Davis,kimberly37@tyler.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""MXN""}",1401.24,Silver,1 +8450,Ann Scott,daniel67@holder.org,2020-09-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2044.21,Gold,0 +8451,Blake Perry,marialynch@rose-lee.biz,2022-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7914.67,Silver,0 +8452,Jason Brown,collinsjillian@gmail.com,2024-01-10,"{""language"": ""ES"", ""currency"": ""USD""}",3937.05,Gold,1 +8453,April Allen,lrussell@smith.net,2021-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",9334.53,Gold,0 +8454,Deborah Taylor,ggay@owens.com,2024-09-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1197.06,Gold,1 +8455,Jesus Lewis,rcook@gmail.com,2022-08-26,"{""language"": ""IT"", ""currency"": ""GBP""}",7017.12,Bronze,1 +8456,Pamela Atkins,burnettalicia@martin.net,2021-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",8395.73,Bronze,1 +8457,Brian Johnson,jonesrobin@yahoo.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""GBP""}",7128.3,Bronze,1 +8458,Paul Hansen,greenemisty@pham.com,2024-04-19,"{""language"": ""EN"", ""currency"": ""GBP""}",9963.36,Bronze,1 +8459,Brett Graham,glassamy@macias.com,2022-01-31,"{""language"": ""EN"", ""currency"": ""GBP""}",544.42,Gold,1 +8460,Kelly Walsh,vbuckley@hotmail.com,2022-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2909.85,Bronze,0 +8461,Alan Guzman,williamselizabeth@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""GBP""}",537.59,Silver,1 +8462,Nicole Maxwell,lammegan@mccarthy.com,2021-12-15,"{""language"": ""EN"", ""currency"": ""MXN""}",6108.72,Gold,0 +8463,Darius Lewis,festrada@yahoo.com,2023-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",1179.22,Gold,0 +8464,Tara Webb,reginaldgrant@gmail.com,2020-12-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7371.55,Silver,1 +8465,Julie Taylor,wyoung@gmail.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""EUR""}",3800.07,Gold,0 +8466,Christina Zimmerman,brianmorton@nguyen-johnson.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",7816.38,Bronze,1 +8467,Sherry Reed,michaelmichael@mayer-zimmerman.info,2020-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",7225.92,Silver,1 +8468,Dr. Jill Lee,david34@hendrix-elliott.com,2022-12-28,"{""language"": ""IT"", ""currency"": ""EUR""}",6324.35,Gold,1 +8469,Sara Lopez,billy42@gmail.com,2022-05-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3833.09,Silver,1 +8470,Andrea Williams,melissa37@gmail.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""CAD""}",383.24,Gold,0 +8471,Amber Castaneda,angelawright@yahoo.com,2021-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",7443.66,Bronze,1 +8472,Devin Jackson,oneilllaura@hotmail.com,2023-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8475.46,Bronze,0 +8473,Andrew Wise,wanda75@gmail.com,2021-08-20,"{""language"": ""DE"", ""currency"": ""MXN""}",791.11,Bronze,1 +8474,Gregory Velez,clewis@gmail.com,2024-07-23,"{""language"": ""IT"", ""currency"": ""CAD""}",539.58,Gold,0 +8475,Nichole Morgan PhD,jesseharper@benjamin.biz,2020-05-02,"{""language"": ""IT"", ""currency"": ""GBP""}",5803.87,Silver,1 +8476,Jason Perry,warelaurie@gmail.com,2020-06-27,"{""language"": ""FR"", ""currency"": ""MXN""}",817.75,Silver,0 +8477,Shane Wilkins,deancarpenter@lucas.org,2022-07-12,"{""language"": ""ES"", ""currency"": ""CAD""}",7458.63,Silver,1 +8478,Deborah Hopkins,egreen@kerr.com,2022-08-28,"{""language"": ""EN"", ""currency"": ""USD""}",8492.78,Silver,1 +8479,Sarah Davis,davidphillips@hotmail.com,2023-10-16,"{""language"": ""ES"", ""currency"": ""CAD""}",7170.42,Silver,0 +8480,Michael Myers,ijohnson@ross.info,2022-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3583.65,Bronze,1 +8481,Jessica Smith,xperry@gmail.com,2022-12-05,"{""language"": ""FR"", ""currency"": ""EUR""}",2530.1,Gold,0 +8482,Christine Rodriguez,hoodpatrick@yahoo.com,2020-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",827.08,Gold,1 +8483,Keith Duarte,jacqueline07@torres.com,2022-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5345.76,Gold,0 +8484,Ebony Benson,jefferymyers@watkins.com,2021-06-25,"{""language"": ""DE"", ""currency"": ""CAD""}",5327.98,Silver,0 +8485,Sean Wheeler,john68@bruce.com,2020-03-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3681.25,Silver,0 +8486,Natalie Robinson,josephtonya@rogers.biz,2022-01-27,"{""language"": ""IT"", ""currency"": ""MXN""}",902.37,Gold,1 +8487,Christine Shields,bmorton@wright.net,2021-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",7449.53,Gold,1 +8488,David Mccullough,justinphillips@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""EUR""}",4230.35,Gold,1 +8489,Julie Lloyd,charles95@barnes.com,2021-07-27,"{""language"": ""ES"", ""currency"": ""GBP""}",7177.22,Gold,0 +8490,Jeanette Cardenas,lesliemurphy@martinez-merritt.com,2022-04-29,"{""language"": ""ES"", ""currency"": ""USD""}",5528.38,Bronze,0 +8491,Christopher Garcia,chandlercourtney@thomas.com,2023-11-22,"{""language"": ""EN"", ""currency"": ""USD""}",777.53,Bronze,1 +8492,Anna Cox,richardmarquez@bradshaw.org,2022-03-23,"{""language"": ""IT"", ""currency"": ""EUR""}",6725.65,Silver,1 +8493,Margaret Wu,michelledavis@farmer-gilbert.com,2024-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",9813.89,Gold,0 +8494,Melissa Hernandez,jonathancarroll@yahoo.com,2022-11-30,"{""language"": ""FR"", ""currency"": ""GBP""}",6302.67,Bronze,0 +8495,Kelsey Walters,susan06@hotmail.com,2024-10-17,"{""language"": ""EN"", ""currency"": ""EUR""}",3991.4,Gold,1 +8496,Taylor Stuart,briannale@lang-crawford.net,2020-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",5420.55,Silver,0 +8497,Russell Walker,barbara57@yang.net,2022-11-15,"{""language"": ""DE"", ""currency"": ""CAD""}",8924.93,Bronze,0 +8498,Rebecca Galloway,casey12@day.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""MXN""}",6464.61,Gold,0 +8499,Angel Vargas,johnsonallen@morton.com,2020-07-31,"{""language"": ""EN"", ""currency"": ""MXN""}",8086.42,Gold,0 +8500,Anna Morrison,lawrencemichael@yahoo.com,2022-07-07,"{""language"": ""DE"", ""currency"": ""USD""}",1278.96,Silver,1 +8501,Eric Diaz,rosscolleen@maxwell.com,2023-12-28,"{""language"": ""IT"", ""currency"": ""USD""}",5878.06,Gold,1 +8502,George Reed,william65@gray-hampton.info,2023-07-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9071.02,Gold,0 +8503,Lisa Alvarado,victorbrown@hotmail.com,2022-06-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4832.71,Bronze,0 +8504,Anthony Li,ajackson@yahoo.com,2023-09-22,"{""language"": ""FR"", ""currency"": ""EUR""}",309.26,Gold,1 +8505,Joseph Cobb,adam69@russell.com,2023-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5738.77,Silver,0 +8506,Tyler Mcgrath,brenda38@yahoo.com,2021-06-04,"{""language"": ""DE"", ""currency"": ""USD""}",803.66,Gold,0 +8507,Matthew Kelly,charles42@lewis.info,2021-11-25,"{""language"": ""FR"", ""currency"": ""EUR""}",7082.53,Bronze,0 +8508,Shawna Miller,egonzalez@gmail.com,2021-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6616.11,Bronze,1 +8509,Jacob Dunlap,ariel74@porter-reed.org,2020-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",5125.11,Silver,0 +8510,Ryan Martinez,shannonjason@velez-nelson.com,2022-02-13,"{""language"": ""IT"", ""currency"": ""EUR""}",1745.56,Silver,1 +8511,Noah Patterson,thomasbelinda@landry-rice.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",4624.02,Silver,1 +8512,Ryan Bryan,ffitzgerald@gonzalez.com,2024-03-13,"{""language"": ""IT"", ""currency"": ""CAD""}",425.37,Bronze,0 +8513,Scott Garcia,micheal73@yahoo.com,2024-08-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7251.09,Silver,1 +8514,Steven Torres,fowlerstacy@hotmail.com,2021-03-12,"{""language"": ""EN"", ""currency"": ""USD""}",1723.09,Bronze,1 +8515,Catherine Singleton,sanderson@hotmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""GBP""}",6885.03,Silver,0 +8516,Gerald Solis,mgallegos@bradley.info,2023-10-15,"{""language"": ""EN"", ""currency"": ""MXN""}",2670.27,Bronze,1 +8517,Jennifer Johnson,samanthabowman@joseph-cruz.com,2020-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",6521.33,Gold,0 +8518,David Washington,kennethwu@yahoo.com,2020-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3926.55,Gold,1 +8519,Jason Hernandez,ann41@montgomery.info,2021-05-14,"{""language"": ""IT"", ""currency"": ""EUR""}",7311.92,Bronze,1 +8520,Dan Malone,uwang@hotmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",7700.9,Silver,1 +8521,William Hoffman,qbarber@vance.com,2019-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",6184.39,Silver,1 +8522,Calvin Johnson,mooreleslie@curtis.com,2020-05-23,"{""language"": ""IT"", ""currency"": ""GBP""}",5558.66,Silver,0 +8523,Tyler Perkins,yescobar@mcintosh-warren.org,2023-05-07,"{""language"": ""FR"", ""currency"": ""CAD""}",1314.71,Gold,0 +8524,Stephanie Marsh,matthewjones@edwards.com,2022-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",7849.75,Bronze,0 +8525,Richard Logan,pthomas@lara-crawford.com,2022-12-15,"{""language"": ""IT"", ""currency"": ""EUR""}",6026.08,Gold,1 +8526,Patrick Mitchell,vlane@yahoo.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""CAD""}",9847.28,Bronze,0 +8527,Levi Marshall,villarrealdaniel@baker.biz,2021-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5335.58,Gold,1 +8528,Susan Smith,harrisvictoria@lopez.com,2024-10-26,"{""language"": ""DE"", ""currency"": ""GBP""}",2250.75,Gold,0 +8529,Michael Ingram,myersmatthew@holmes.com,2022-02-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4426.21,Gold,1 +8530,Ms. Paula Peters,jefferymitchell@williams.info,2022-03-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6590.78,Bronze,1 +8531,Paul Brooks DVM,wolfelarry@reilly.com,2021-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",3779.27,Gold,0 +8532,Joshua Lopez,morserenee@hotmail.com,2021-04-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4435.29,Gold,0 +8533,Michael Smith,jwells@gmail.com,2020-08-15,"{""language"": ""IT"", ""currency"": ""GBP""}",5828.28,Silver,1 +8534,Jordan Sullivan,davidbrown@gmail.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3201.25,Gold,0 +8535,Laura Johnson,bensonanthony@hotmail.com,2022-03-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9646.01,Silver,1 +8536,Adam Roth,kathleen33@gmail.com,2022-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2835.62,Gold,0 +8537,George Mcdaniel,matthew77@yahoo.com,2022-12-26,"{""language"": ""EN"", ""currency"": ""MXN""}",2652.57,Bronze,1 +8538,Susan Barrett,kjackson@le.com,2020-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",6078.31,Gold,1 +8539,Christopher Marquez,ffox@boyer.net,2022-01-14,"{""language"": ""FR"", ""currency"": ""CAD""}",8633.8,Bronze,0 +8540,Carol Steele,rodriguezjoel@brown.org,2021-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",4257.73,Gold,0 +8541,Angel Hester,powelljesse@hotmail.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""USD""}",2211.63,Bronze,0 +8542,Michael Meyers,brenda84@lawrence-lee.biz,2022-04-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8914.92,Gold,0 +8543,Robert Larson,scottamber@robinson-nixon.com,2024-08-05,"{""language"": ""IT"", ""currency"": ""USD""}",2608.64,Silver,0 +8544,Gavin Farley,richard53@george.biz,2023-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",2929.23,Silver,1 +8545,Tommy Carpenter,mcdonaldjohn@pena-brown.info,2020-07-11,"{""language"": ""IT"", ""currency"": ""GBP""}",5574.27,Gold,1 +8546,Allen Perkins,douglas81@yahoo.com,2023-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8120.06,Gold,1 +8547,William Miller,david27@morrow.com,2022-10-25,"{""language"": ""DE"", ""currency"": ""CAD""}",2425.34,Silver,1 +8548,Ryan Lopez,qpeterson@watts.com,2020-06-30,"{""language"": ""IT"", ""currency"": ""USD""}",9737.79,Bronze,1 +8549,Rachael Lewis,vickie60@gmail.com,2022-11-25,"{""language"": ""ES"", ""currency"": ""MXN""}",4529.75,Gold,1 +8550,Suzanne Stephens,stephanie85@jenkins.biz,2024-05-13,"{""language"": ""FR"", ""currency"": ""MXN""}",5185.4,Gold,0 +8551,Diane Scott,cward@nelson.org,2021-03-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8399.9,Silver,0 +8552,Donald Jackson,quinneugene@yahoo.com,2024-05-16,"{""language"": ""FR"", ""currency"": ""GBP""}",5617.18,Gold,0 +8553,Christine Gonzalez,phart@gmail.com,2022-01-02,"{""language"": ""ES"", ""currency"": ""EUR""}",9384.06,Silver,0 +8554,Lindsay Simpson,millerdustin@yahoo.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7954.98,Silver,1 +8555,Karen Willis,fergusoncody@carrillo.org,2020-01-17,"{""language"": ""DE"", ""currency"": ""GBP""}",7976.27,Gold,1 +8556,Lisa Ortiz,kelsey54@yahoo.com,2020-01-09,"{""language"": ""DE"", ""currency"": ""MXN""}",5116.6,Gold,1 +8557,Jamie Elliott,gregory48@yahoo.com,2023-08-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7275.79,Gold,1 +8558,Erik Shepherd,joy70@wood.com,2020-12-21,"{""language"": ""IT"", ""currency"": ""CAD""}",3143.24,Gold,0 +8559,Thomas Walker,macdonaldlauren@yahoo.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",3181.76,Bronze,1 +8560,Margaret Charles,alyssa20@yahoo.com,2022-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",4462.63,Gold,1 +8561,Angela Meyer,ellisonjennifer@mack-wallace.com,2024-10-25,"{""language"": ""IT"", ""currency"": ""CAD""}",2569.28,Silver,1 +8562,Ashley Daniels,imorales@bullock.info,2022-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",5310.1,Gold,0 +8563,Matthew Aguilar,michaelnelson@young.org,2024-09-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4936.86,Bronze,1 +8564,Natalie Howard,haleysherry@yahoo.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""GBP""}",401.58,Silver,1 +8565,Steve Anthony,carlosrichards@schwartz.com,2020-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",7022.59,Silver,0 +8566,Joshua Brock,walkerpaul@hotmail.com,2020-03-03,"{""language"": ""IT"", ""currency"": ""USD""}",4415.78,Bronze,1 +8567,Elizabeth Morris MD,lchan@mccann.com,2021-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",91.73,Silver,1 +8568,Troy Hunt,terrirodriguez@white.com,2022-03-12,"{""language"": ""ES"", ""currency"": ""CAD""}",9544.73,Silver,0 +8569,Zachary Young,david79@gmail.com,2021-01-05,"{""language"": ""ES"", ""currency"": ""MXN""}",3958.77,Bronze,1 +8570,Chad Pearson,xvillanueva@gmail.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",1371.45,Gold,0 +8571,Ryan Cunningham,fpratt@hall-jackson.biz,2024-01-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8943.99,Silver,0 +8572,Stephen Allison,rachelmendoza@walker.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""EUR""}",4059.96,Silver,1 +8573,Jacqueline Diaz,denise07@hotmail.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""USD""}",1903.51,Gold,0 +8574,Rebecca Taylor,kwalker@hotmail.com,2021-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",2666.41,Bronze,1 +8575,Sheila Keller,amy81@brewer.com,2023-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",7985.23,Gold,0 +8576,Brittany Kennedy,kmassey@gmail.com,2024-09-09,"{""language"": ""FR"", ""currency"": ""USD""}",5936.41,Bronze,1 +8577,Alan Smith,matthewfox@hotmail.com,2024-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9034.58,Silver,0 +8578,Marie Cooper,lauramitchell@gmail.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",3233.08,Silver,1 +8579,Ian Shelton MD,benjamin89@gmail.com,2020-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",6755.55,Bronze,0 +8580,Janet Salas,ibond@warren.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""MXN""}",5606.4,Silver,1 +8581,Michael Huynh,nunezdavid@gibbs.com,2022-11-06,"{""language"": ""DE"", ""currency"": ""MXN""}",2811.86,Bronze,0 +8582,Teresa Freeman,michael63@lane.com,2020-04-19,"{""language"": ""ES"", ""currency"": ""GBP""}",3088.18,Bronze,0 +8583,Dr. Kevin Bradford,markroberts@yahoo.com,2024-08-24,"{""language"": ""DE"", ""currency"": ""EUR""}",688.67,Bronze,1 +8584,Margaret Moss,edwardleonard@hess.org,2020-08-13,"{""language"": ""ES"", ""currency"": ""MXN""}",7143.52,Bronze,1 +8585,Mary Owen,markparker@yahoo.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""MXN""}",4091.48,Gold,1 +8586,Lisa Flores,kthompson@ayala-lambert.biz,2024-01-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7152.65,Silver,1 +8587,Dawn Campbell,ryanberger@nguyen.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7023.66,Silver,0 +8588,Bryan Moore,melissasmith@reyes-hall.com,2022-04-06,"{""language"": ""IT"", ""currency"": ""GBP""}",6837.51,Bronze,1 +8589,Darren Young,emily46@yahoo.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""GBP""}",4531.33,Gold,1 +8590,Thomas Flores,tfox@christensen.info,2021-04-24,"{""language"": ""EN"", ""currency"": ""GBP""}",4499.16,Gold,1 +8591,Steven Miller,elizabethgutierrez@yahoo.com,2023-01-10,"{""language"": ""IT"", ""currency"": ""GBP""}",1788.19,Silver,0 +8592,Richard Owens,uwells@gmail.com,2024-01-10,"{""language"": ""EN"", ""currency"": ""USD""}",542.03,Bronze,1 +8593,Alexander Edwards,ewilliams@pennington-ware.com,2022-04-29,"{""language"": ""IT"", ""currency"": ""MXN""}",1821.4,Silver,0 +8594,Eric Gonzalez,sarahernandez@hotmail.com,2021-06-30,"{""language"": ""DE"", ""currency"": ""USD""}",8720.33,Bronze,0 +8595,Susan Mccoy,kcooke@gordon.com,2021-03-22,"{""language"": ""FR"", ""currency"": ""MXN""}",7582.37,Silver,0 +8596,Stephen Gonzalez,rhopkins@yahoo.com,2020-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",2953.34,Silver,0 +8597,Dr. Kathy Hayes,xgonzalez@gmail.com,2023-02-13,"{""language"": ""ES"", ""currency"": ""CAD""}",815.49,Gold,1 +8598,Melanie Gould,dortiz@spears-gomez.com,2022-07-07,"{""language"": ""IT"", ""currency"": ""USD""}",8071.02,Silver,1 +8599,Jon Richardson,apriltorres@gmail.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7916.35,Bronze,1 +8600,Carol Ho,ylowery@gmail.com,2023-08-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5343.86,Bronze,1 +8601,Matthew Brooks,joseph55@davis.com,2022-03-29,"{""language"": ""EN"", ""currency"": ""USD""}",4794.04,Gold,1 +8602,Samantha Adams,jeffreythompson@yahoo.com,2024-11-25,"{""language"": ""DE"", ""currency"": ""USD""}",4418.3,Gold,0 +8603,Cynthia Allen,vdavies@yahoo.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""EUR""}",9963.44,Bronze,0 +8604,Robin Scott,pricejon@hill.info,2022-10-27,"{""language"": ""EN"", ""currency"": ""CAD""}",9914.55,Silver,0 +8605,Larry Jennings,dvalenzuela@burgess.com,2021-09-14,"{""language"": ""IT"", ""currency"": ""CAD""}",5802.17,Silver,0 +8606,Veronica Ruiz,kristinaryan@yahoo.com,2024-04-14,"{""language"": ""ES"", ""currency"": ""EUR""}",3972.5,Bronze,0 +8607,Randy Brock,amber57@ortiz-wyatt.com,2023-04-04,"{""language"": ""EN"", ""currency"": ""USD""}",5313.68,Gold,0 +8608,Jonathan Wang,shawnraymond@hotmail.com,2024-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3886.04,Silver,0 +8609,Justin Garcia,elizabethpatel@hotmail.com,2024-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",3857.56,Silver,1 +8610,John Butler,briannanicholson@prince.net,2022-11-13,"{""language"": ""DE"", ""currency"": ""CAD""}",786.48,Bronze,0 +8611,Stephen Burton,clarkmary@hotmail.com,2020-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",145.18,Bronze,0 +8612,James Kirby,jennifer75@jones.com,2024-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",7261.47,Bronze,0 +8613,Stephanie Owens,andrea95@dodson-ortiz.biz,2023-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",4758.56,Bronze,1 +8614,Jennifer Campbell,beltranshelley@yahoo.com,2021-02-18,"{""language"": ""DE"", ""currency"": ""MXN""}",5066.67,Gold,1 +8615,Michael Maldonado,baxtertyler@yahoo.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8580.62,Bronze,0 +8616,Michael Graham,christopherroberts@stewart-martin.com,2022-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",546.92,Gold,1 +8617,Ana Hanna,lee29@crosby.com,2023-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",9818.77,Silver,0 +8618,Kristen Duncan,alvarezkenneth@hotmail.com,2023-01-29,"{""language"": ""DE"", ""currency"": ""MXN""}",5575.62,Bronze,1 +8619,Douglas Green,elizabethlowe@martinez.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",4598.59,Silver,1 +8620,Jorge Stewart,christina28@lee-miller.com,2024-06-26,"{""language"": ""EN"", ""currency"": ""EUR""}",715.09,Gold,0 +8621,Timothy Potter,cynthiahood@garza.com,2024-11-12,"{""language"": ""DE"", ""currency"": ""EUR""}",3761.78,Gold,0 +8622,John Villanueva,owilliams@bryant.info,2021-02-13,"{""language"": ""ES"", ""currency"": ""CAD""}",994.04,Bronze,0 +8623,Christopher Conway,kirk97@gibbs.com,2024-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",8034.5,Gold,1 +8624,Joshua Williams,michael27@gmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""EUR""}",5810.36,Bronze,1 +8625,Edward Webb,dfoster@yahoo.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6091.05,Gold,1 +8626,Mark Best,youngnoah@yahoo.com,2024-06-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6019.07,Gold,0 +8627,Joel Holder,wardmonique@hotmail.com,2022-09-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5380.66,Gold,1 +8628,Kenneth Martin,andrea56@mccarthy.biz,2023-03-16,"{""language"": ""IT"", ""currency"": ""EUR""}",9248.51,Silver,1 +8629,Stephen Mills,kathrynmartinez@gmail.com,2019-12-17,"{""language"": ""IT"", ""currency"": ""GBP""}",8265.87,Silver,0 +8630,Dr. Ann Larson,stephenriddle@gmail.com,2020-05-05,"{""language"": ""FR"", ""currency"": ""MXN""}",1824.94,Bronze,1 +8631,Wayne Rhodes,christopher02@wu.info,2024-01-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6843.77,Gold,0 +8632,Benjamin Wall,christophershea@gmail.com,2024-02-22,"{""language"": ""IT"", ""currency"": ""USD""}",4063.09,Gold,0 +8633,Janet Chavez,meganwatkins@hotmail.com,2021-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",9284.75,Bronze,0 +8634,Eduardo Reed,mwhitehead@harris.info,2024-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",8154.24,Gold,1 +8635,Fernando Marquez,mckeejoseph@yahoo.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1205.47,Bronze,0 +8636,Erik Wilson,diazjamie@yahoo.com,2020-03-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5854.52,Bronze,1 +8637,Deborah Strickland,nicole75@yahoo.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""EUR""}",2001.19,Silver,0 +8638,Bryan Lucas,john61@hotmail.com,2023-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",1849.33,Silver,1 +8639,Jennifer Fox,charlenecarney@yang.info,2024-03-11,"{""language"": ""EN"", ""currency"": ""EUR""}",7568.56,Gold,0 +8640,Jennifer Adams,alyssa18@gmail.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""USD""}",7509.0,Bronze,0 +8641,Lisa Dean,todd11@williams-wright.com,2022-01-06,"{""language"": ""EN"", ""currency"": ""MXN""}",978.08,Silver,1 +8642,Dennis Morton,bwalton@daniel.com,2020-11-23,"{""language"": ""FR"", ""currency"": ""USD""}",2916.58,Gold,0 +8643,Mrs. Tina Ross,daviswilliam@ward.org,2020-03-14,"{""language"": ""ES"", ""currency"": ""USD""}",79.85,Bronze,1 +8644,Kimberly James,bgutierrez@thomas.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2072.38,Silver,0 +8645,Mikayla Todd,jamesjohnson@spears.com,2023-12-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3700.6,Bronze,1 +8646,Michael Morris,lewisanthony@houston.com,2022-04-12,"{""language"": ""IT"", ""currency"": ""USD""}",2512.62,Silver,1 +8647,Adam Bullock,cwilson@hotmail.com,2020-05-31,"{""language"": ""EN"", ""currency"": ""MXN""}",5579.93,Silver,1 +8648,Charles Waters,rwilson@hotmail.com,2023-08-06,"{""language"": ""IT"", ""currency"": ""MXN""}",812.98,Silver,0 +8649,David Howard,chris39@gmail.com,2021-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4192.01,Silver,1 +8650,Teresa Steele,churchtaylor@jones.biz,2021-10-16,"{""language"": ""IT"", ""currency"": ""USD""}",1718.34,Bronze,0 +8651,Kevin Foster,tracyfranklin@gmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9757.78,Gold,0 +8652,Christopher Ramsey,lopezandrew@gordon.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""GBP""}",2140.92,Bronze,0 +8653,Bethany Sanchez,amandalee@yahoo.com,2022-09-27,"{""language"": ""IT"", ""currency"": ""GBP""}",4376.05,Gold,0 +8654,William Gonzalez,codygarcia@cobb.net,2020-12-17,"{""language"": ""ES"", ""currency"": ""USD""}",2543.46,Silver,1 +8655,Connor Walker,dianedunn@fuller.org,2020-07-01,"{""language"": ""DE"", ""currency"": ""CAD""}",4240.62,Bronze,1 +8656,Cynthia Lee,amandaramos@oneal-walter.net,2020-01-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2357.52,Bronze,1 +8657,Jessica Romero,zachary34@gmail.com,2023-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",9952.81,Silver,1 +8658,Jennifer Robinson,shieldssabrina@mcknight.com,2022-04-08,"{""language"": ""DE"", ""currency"": ""GBP""}",1511.58,Bronze,1 +8659,David Lin,kingcody@gmail.com,2020-11-18,"{""language"": ""IT"", ""currency"": ""USD""}",7896.37,Gold,0 +8660,Dean Baker,meghanrodriguez@gmail.com,2021-01-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5704.04,Gold,1 +8661,Lisa Hayden,hernandezcarolyn@hotmail.com,2022-08-22,"{""language"": ""FR"", ""currency"": ""CAD""}",2200.14,Gold,1 +8662,Phillip Johnson,billyjohnston@perez.info,2021-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",9255.59,Silver,1 +8663,Clayton Patterson,nicholasgonzalez@gmail.com,2021-03-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6211.48,Bronze,0 +8664,Brandy Bailey,bennetthaley@gmail.com,2023-02-03,"{""language"": ""EN"", ""currency"": ""CAD""}",5447.21,Bronze,0 +8665,Tracy Gonzalez,vhall@lewis-lopez.com,2021-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",2804.27,Gold,0 +8666,Tina Curry,yallen@yahoo.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""USD""}",6072.52,Gold,0 +8667,Rhonda Gallagher,khernandez@gmail.com,2020-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",6234.41,Bronze,1 +8668,Mark James,gonzalezstacy@yahoo.com,2022-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",7914.11,Gold,1 +8669,David Hines,matthewgonzalez@solomon.com,2023-06-25,"{""language"": ""EN"", ""currency"": ""USD""}",1239.56,Silver,1 +8670,Tami Wells,clarkjames@gmail.com,2022-04-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5198.13,Silver,1 +8671,Jonathan Hughes,alicia01@munoz-anderson.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",794.08,Silver,1 +8672,Jeffrey Kennedy,shellypeterson@nguyen-hernandez.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",2172.36,Silver,0 +8673,Sean King,paula00@cole.org,2021-12-17,"{""language"": ""IT"", ""currency"": ""CAD""}",5615.58,Silver,1 +8674,Christopher Miller,qalvarez@montes.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""EUR""}",486.56,Gold,0 +8675,Krista Green,donnamathews@gmail.com,2024-11-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6047.87,Silver,1 +8676,Benjamin Daugherty,michael94@jacobson-donaldson.com,2021-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",8092.75,Gold,1 +8677,Sabrina Gray,isabel12@hotmail.com,2024-08-18,"{""language"": ""IT"", ""currency"": ""USD""}",3477.4,Gold,1 +8678,Jacqueline Martin,kyle52@hotmail.com,2020-07-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5300.26,Bronze,0 +8679,Zachary Franklin,fherrera@andrews.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""GBP""}",8905.75,Bronze,1 +8680,Patricia Martin,sheila32@berger.info,2024-03-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4595.62,Bronze,0 +8681,Adam Stephens,weeksterri@coleman.org,2021-01-29,"{""language"": ""DE"", ""currency"": ""GBP""}",8775.62,Gold,0 +8682,Kerry Cruz,zbailey@collins.com,2023-06-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8085.76,Silver,0 +8683,Kathleen Jones,iprice@woods.biz,2020-12-04,"{""language"": ""EN"", ""currency"": ""GBP""}",5312.86,Silver,0 +8684,Steven Mendez,carrolljennifer@rodriguez-peck.info,2024-01-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4314.65,Bronze,0 +8685,Alexandria Hunt,hollandlori@hotmail.com,2022-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",8165.03,Bronze,0 +8686,Stefanie Atkins,james72@hotmail.com,2024-08-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4207.73,Bronze,1 +8687,Linda Young,ahaynes@hotmail.com,2023-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",4483.3,Bronze,1 +8688,Karen Smith,combschristian@hotmail.com,2022-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4188.32,Bronze,0 +8689,Sara Alexander,travisbishop@shelton-lewis.com,2022-11-29,"{""language"": ""IT"", ""currency"": ""EUR""}",4026.87,Silver,0 +8690,Chad Santiago,richarddavis@oliver.org,2021-05-26,"{""language"": ""IT"", ""currency"": ""CAD""}",8858.91,Silver,1 +8691,Christopher Morris,nancyadkins@ewing.com,2021-10-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7473.67,Silver,0 +8692,Richard Riddle,olsonjohn@simmons.org,2020-09-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3886.18,Silver,0 +8693,Thomas Jones,jasonmcclain@martin.com,2023-08-01,"{""language"": ""IT"", ""currency"": ""EUR""}",2141.65,Gold,1 +8694,Sierra Donaldson,esantos@randolph.com,2020-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",1459.64,Gold,0 +8695,Colin Maxwell,goodwinscott@yahoo.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2220.75,Gold,0 +8696,Susan Morales,christophergill@gmail.com,2020-12-30,"{""language"": ""EN"", ""currency"": ""USD""}",4000.8,Bronze,0 +8697,Joshua Butler,brittanykane@miller.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""MXN""}",2735.89,Silver,0 +8698,Paul Thomas,andrew90@finley-davis.com,2021-07-17,"{""language"": ""EN"", ""currency"": ""MXN""}",8893.49,Gold,1 +8699,Christopher Short,mullinsleslie@peterson-wilson.com,2024-08-19,"{""language"": ""EN"", ""currency"": ""GBP""}",6046.8,Bronze,0 +8700,Angela Smith,karlmoody@hudson-aguirre.biz,2023-04-08,"{""language"": ""IT"", ""currency"": ""MXN""}",6129.88,Silver,1 +8701,Mr. Timothy Smith,andrew79@martin-bennett.com,2022-02-27,"{""language"": ""FR"", ""currency"": ""GBP""}",2882.11,Gold,1 +8702,Erika Vaughn MD,nathancamacho@hotmail.com,2024-07-28,"{""language"": ""ES"", ""currency"": ""GBP""}",7002.73,Gold,0 +8703,Tammy Cooper,michaelnelson@hotmail.com,2020-02-03,"{""language"": ""ES"", ""currency"": ""CAD""}",5342.85,Bronze,0 +8704,Michael Johnson,mia74@brooks.net,2021-06-20,"{""language"": ""ES"", ""currency"": ""USD""}",3956.41,Gold,1 +8705,Debra Johnson,emiller@miller.com,2022-11-09,"{""language"": ""EN"", ""currency"": ""GBP""}",2158.08,Silver,1 +8706,Kim Bryant,nina73@hotmail.com,2023-09-02,"{""language"": ""ES"", ""currency"": ""GBP""}",655.11,Gold,1 +8707,Rebecca Craig,nthompson@hotmail.com,2020-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",4626.69,Silver,0 +8708,Jennifer Reyes,estestheodore@hotmail.com,2023-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2242.58,Bronze,0 +8709,Jean Bradshaw,melissalawson@hotmail.com,2023-02-13,"{""language"": ""EN"", ""currency"": ""MXN""}",6102.04,Bronze,1 +8710,Scott Brown,vrodriguez@hotmail.com,2021-05-29,"{""language"": ""ES"", ""currency"": ""CAD""}",5340.15,Bronze,1 +8711,Tyler Miller,zchen@gmail.com,2022-06-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4224.75,Bronze,0 +8712,Andrew Torres,shicks@gmail.com,2022-04-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4116.31,Bronze,1 +8713,Cindy Ewing,tyler83@hotmail.com,2023-01-20,"{""language"": ""DE"", ""currency"": ""MXN""}",6368.52,Gold,0 +8714,Katherine Gonzales,joshua94@hotmail.com,2023-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",6065.44,Gold,0 +8715,Michael Lewis,susanreynolds@gmail.com,2024-08-09,"{""language"": ""IT"", ""currency"": ""GBP""}",335.31,Gold,0 +8716,Jessica Bradford,amanda80@yahoo.com,2020-12-16,"{""language"": ""EN"", ""currency"": ""GBP""}",4292.83,Bronze,0 +8717,Katherine Khan,smithkathy@hotmail.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4606.37,Gold,1 +8718,Craig Reynolds,dlarson@hotmail.com,2021-03-06,"{""language"": ""IT"", ""currency"": ""EUR""}",6602.24,Silver,1 +8719,John Stevens,mooreeugene@hotmail.com,2023-05-08,"{""language"": ""FR"", ""currency"": ""USD""}",5943.68,Silver,0 +8720,Whitney Salazar,claytonemily@gmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",9004.08,Bronze,1 +8721,Stephanie Johnson,tguzman@yahoo.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""MXN""}",5970.88,Gold,0 +8722,Christopher Patterson,joshuajackson@gmail.com,2024-03-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1804.32,Bronze,1 +8723,Carol Brooks,gainesriley@rhodes-riley.com,2021-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",8134.67,Silver,1 +8724,Karla Cummings,jaredparker@yahoo.com,2023-08-17,"{""language"": ""IT"", ""currency"": ""EUR""}",8760.41,Bronze,0 +8725,Christina Arellano,joelkim@yahoo.com,2022-10-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2344.88,Gold,1 +8726,Lori Wood,tmartinez@yahoo.com,2024-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3563.95,Bronze,1 +8727,Kim Young,obailey@hotmail.com,2021-04-29,"{""language"": ""IT"", ""currency"": ""MXN""}",2995.97,Gold,0 +8728,Colton Peterson,jacksonjoseph@yahoo.com,2024-05-18,"{""language"": ""IT"", ""currency"": ""USD""}",2492.82,Gold,0 +8729,Christopher Jackson,cindyhorton@marshall.com,2021-01-24,"{""language"": ""EN"", ""currency"": ""EUR""}",5995.37,Gold,0 +8730,David Schultz,rivaschad@gmail.com,2024-05-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4962.34,Bronze,0 +8731,Joy Hoffman,rlopez@ward.com,2024-07-17,"{""language"": ""DE"", ""currency"": ""USD""}",7117.79,Silver,1 +8732,Ryan Bowen,turnerlinda@gmail.com,2020-07-09,"{""language"": ""FR"", ""currency"": ""EUR""}",8569.5,Bronze,0 +8733,Veronica Martinez,rbrown@davis.com,2022-10-26,"{""language"": ""ES"", ""currency"": ""EUR""}",7504.34,Silver,0 +8734,Tracey Vasquez,johnsonerik@hotmail.com,2024-07-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1651.33,Bronze,1 +8735,Travis Chambers,david90@gmail.com,2022-04-28,"{""language"": ""IT"", ""currency"": ""USD""}",3027.76,Bronze,1 +8736,Michele Ortiz,crossdanielle@hotmail.com,2024-05-18,"{""language"": ""EN"", ""currency"": ""CAD""}",9557.91,Silver,0 +8737,Sarah Compton,jessicarodriguez@tucker.com,2020-04-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7935.37,Bronze,0 +8738,Cynthia Weber,jamiemedina@gmail.com,2020-01-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3862.4,Gold,1 +8739,Amanda Watkins,emily30@villanueva.com,2024-03-19,"{""language"": ""FR"", ""currency"": ""MXN""}",1887.53,Bronze,0 +8740,Melissa Webb,larrytaylor@gmail.com,2023-01-15,"{""language"": ""DE"", ""currency"": ""USD""}",2139.6,Silver,1 +8741,Lisa Williams,taylormorris@thomas-arellano.com,2022-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",4283.54,Silver,0 +8742,George Weber,megan03@hotmail.com,2022-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",3495.64,Silver,0 +8743,Adrian Rivera,odavis@brown.com,2024-03-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7444.64,Silver,0 +8744,Michael Wiggins,wtucker@yahoo.com,2020-10-25,"{""language"": ""ES"", ""currency"": ""MXN""}",428.65,Silver,1 +8745,Christina Berg,hnelson@hotmail.com,2021-12-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8283.79,Bronze,1 +8746,Jacob Bridges,elizabeth02@shaw.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""CAD""}",1933.62,Silver,1 +8747,Victoria Odom,sharon37@gmail.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1204.99,Gold,0 +8748,John Mason,john73@campbell.biz,2021-06-05,"{""language"": ""DE"", ""currency"": ""MXN""}",5177.64,Silver,1 +8749,Shawn Stevens,robinsonmatthew@johnson.info,2021-04-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8173.18,Bronze,0 +8750,Michele Smith,rachel08@lee-drake.net,2021-02-19,"{""language"": ""FR"", ""currency"": ""EUR""}",4303.22,Silver,0 +8751,David Williams,rachaelmueller@yahoo.com,2022-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2395.14,Gold,1 +8752,Walter Burch,ellisdean@yahoo.com,2023-04-23,"{""language"": ""DE"", ""currency"": ""CAD""}",3866.23,Gold,0 +8753,Jeffrey Kelly,kevin01@rice.com,2023-04-07,"{""language"": ""EN"", ""currency"": ""CAD""}",6312.94,Silver,1 +8754,Eric Tanner,leahthompson@gmail.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""EUR""}",889.84,Bronze,1 +8755,Jessica Wade,pking@yahoo.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4715.51,Gold,1 +8756,Samantha Mullen,morrisdawn@sullivan-collier.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",7041.63,Silver,0 +8757,Nathaniel Brown,cantuheather@yahoo.com,2019-12-23,"{""language"": ""ES"", ""currency"": ""CAD""}",6859.39,Gold,1 +8758,Tara Cooley,paulhamilton@hotmail.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9430.85,Silver,0 +8759,Nicole Orozco,jessecastillo@walker-gonzalez.com,2021-05-21,"{""language"": ""FR"", ""currency"": ""EUR""}",711.01,Bronze,0 +8760,Derek Oneal,parrishcarl@yahoo.com,2021-05-25,"{""language"": ""IT"", ""currency"": ""EUR""}",4831.02,Bronze,1 +8761,Diana Norris,ksweeney@wilson-jordan.com,2023-02-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8775.28,Silver,1 +8762,Ana Thomas,zwilliams@hotmail.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8307.94,Bronze,1 +8763,Jacob Rocha,brittanyramos@gmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",1750.89,Gold,1 +8764,Steven Garcia,rbrown@parker.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3298.8,Bronze,1 +8765,Andre King,leahobrien@hotmail.com,2020-05-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5119.83,Gold,0 +8766,Brittany Petersen,leroy64@gmail.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",555.82,Silver,1 +8767,Christopher Reed,jjennings@yahoo.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""MXN""}",3978.31,Silver,1 +8768,Darryl Beltran,bschmidt@gmail.com,2020-04-08,"{""language"": ""EN"", ""currency"": ""CAD""}",4611.48,Bronze,0 +8769,Sarah Vega,mullinsbrittany@jones-silva.com,2022-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9842.97,Bronze,1 +8770,Christopher Davis,delgadobenjamin@townsend.com,2021-06-07,"{""language"": ""EN"", ""currency"": ""EUR""}",3145.02,Silver,0 +8771,Rebecca Monroe,nicole88@manning-cole.biz,2022-03-03,"{""language"": ""ES"", ""currency"": ""GBP""}",6783.27,Gold,0 +8772,Charles Murray,ryan32@brooks-bradley.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7862.99,Silver,1 +8773,Joyce Mills,darrellgardner@yahoo.com,2022-03-03,"{""language"": ""EN"", ""currency"": ""USD""}",4882.6,Gold,1 +8774,Kathleen Page,deniseclark@myers.com,2023-05-08,"{""language"": ""DE"", ""currency"": ""GBP""}",9095.53,Silver,1 +8775,Brian Stewart,caitlyn96@gmail.com,2022-03-26,"{""language"": ""ES"", ""currency"": ""MXN""}",8865.19,Gold,0 +8776,Ryan Griffin,donaldrobinson@yahoo.com,2023-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",1739.34,Gold,0 +8777,Sherry Garner,mooremichael@johnson.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""GBP""}",9448.53,Bronze,1 +8778,Blake Snyder,saracollins@duran.com,2020-06-16,"{""language"": ""IT"", ""currency"": ""USD""}",4484.09,Gold,0 +8779,Brenda Jones,blam@newman.com,2020-10-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3771.84,Bronze,1 +8780,John Cabrera,aguilarcandace@hotmail.com,2022-03-29,"{""language"": ""FR"", ""currency"": ""GBP""}",5017.94,Silver,1 +8781,Hannah Wood,judith70@miller.com,2019-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",4649.85,Silver,0 +8782,Eric Thompson,kruegerjeffrey@williams.org,2023-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2394.81,Gold,0 +8783,William Rodriguez,deckercody@hotmail.com,2023-05-02,"{""language"": ""DE"", ""currency"": ""CAD""}",4575.94,Silver,0 +8784,Patrick Duran,amy42@hall-miller.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""CAD""}",9393.5,Bronze,0 +8785,Sarah Taylor,qdavis@lynch.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8567.88,Bronze,1 +8786,Timothy Walker,qwilliams@hurst-aguilar.org,2021-12-15,"{""language"": ""DE"", ""currency"": ""USD""}",1300.8,Bronze,0 +8787,Jared Hill,fphillips@murphy.org,2021-09-20,"{""language"": ""DE"", ""currency"": ""USD""}",676.45,Gold,0 +8788,Jimmy Gaines,cody43@gmail.com,2020-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",8298.03,Gold,1 +8789,Robin Mathis,robersontiffany@moreno.com,2020-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6531.61,Gold,1 +8790,Kim Hawkins,christophergarcia@roberts-finley.com,2020-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",9325.02,Gold,1 +8791,Bruce King,timothyjohnson@wilson.com,2022-09-22,"{""language"": ""DE"", ""currency"": ""USD""}",7996.7,Bronze,0 +8792,Cindy Mosley,heather97@gmail.com,2021-04-13,"{""language"": ""IT"", ""currency"": ""CAD""}",68.67,Silver,0 +8793,Edward Miller,burnsluke@houston.net,2024-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",198.29,Silver,0 +8794,Karen Thomas,marchayes@gmail.com,2023-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5371.5,Gold,0 +8795,Sean King,hicksapril@gmail.com,2022-05-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3871.74,Gold,1 +8796,Richard Smith,meagan48@orozco.biz,2022-05-11,"{""language"": ""ES"", ""currency"": ""MXN""}",629.98,Silver,1 +8797,Travis Smith,kimberlyramirez@hotmail.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""GBP""}",3013.37,Silver,1 +8798,Michael Bartlett,hortontodd@pacheco.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""GBP""}",6673.64,Gold,0 +8799,Stacy Butler,lrivas@gmail.com,2024-04-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7706.01,Bronze,1 +8800,Stuart Cuevas,laura14@adams-wood.biz,2024-03-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8872.27,Gold,0 +8801,Brent Tran,pwoods@lopez.com,2024-11-01,"{""language"": ""EN"", ""currency"": ""USD""}",2177.77,Gold,1 +8802,Jeffrey Morris,petersondaisy@hotmail.com,2024-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4882.5,Silver,1 +8803,Theresa Sanchez,bushandrew@hotmail.com,2020-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",9814.5,Bronze,0 +8804,Amanda Pearson,gallowaydarlene@hotmail.com,2022-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8089.45,Gold,1 +8805,Gina Barnes,lawrence74@hooper.biz,2022-07-23,"{""language"": ""EN"", ""currency"": ""CAD""}",1735.68,Silver,0 +8806,Danny Johnson,david60@coleman.biz,2022-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",5751.68,Bronze,0 +8807,Jack Cole,vbowman@houston-carter.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",5981.66,Bronze,0 +8808,Dana Johnson,ncobb@gmail.com,2022-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4170.15,Gold,1 +8809,Amanda Hawkins,daniellegonzalez@yahoo.com,2020-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",5452.15,Silver,0 +8810,John Burton,caldwelljoshua@bruce.com,2022-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",9524.45,Silver,0 +8811,Tim Murphy,jenniferthompson@yahoo.com,2024-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",4079.33,Bronze,1 +8812,Mark Stark,philip23@hotmail.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""GBP""}",9174.17,Gold,0 +8813,Sheri Jones,mshields@yahoo.com,2024-07-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9085.24,Bronze,0 +8814,Timothy Mcdonald,stephanie17@bell-strickland.com,2021-10-07,"{""language"": ""DE"", ""currency"": ""CAD""}",7597.7,Gold,1 +8815,Stephen Patterson,christophermatthews@walls.biz,2023-03-02,"{""language"": ""IT"", ""currency"": ""USD""}",4316.08,Silver,1 +8816,Adam Hunt,scottkelly@hotmail.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",940.06,Gold,1 +8817,Jacqueline Walters,ywoods@cameron-robinson.biz,2024-02-23,"{""language"": ""DE"", ""currency"": ""GBP""}",7095.5,Silver,0 +8818,Dennis Carter,lballard@yahoo.com,2022-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",9370.25,Gold,1 +8819,Sonya Hamilton,timothy45@yahoo.com,2023-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1400.32,Bronze,1 +8820,Christine Hughes,arielsmith@robinson.com,2021-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",4909.8,Bronze,0 +8821,Katherine Fisher,shepherdmary@gmail.com,2022-03-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7494.94,Bronze,1 +8822,Ryan Perez II,justin77@hotmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7627.97,Bronze,0 +8823,Randy Green,christopherwolf@hotmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""USD""}",7434.13,Bronze,0 +8824,Terry Meyers,pinedadonald@hotmail.com,2023-09-05,"{""language"": ""DE"", ""currency"": ""CAD""}",3651.53,Bronze,0 +8825,Lee Walker,meredith85@turner.com,2023-02-20,"{""language"": ""FR"", ""currency"": ""GBP""}",721.07,Gold,1 +8826,Anna Kelley,stephanie88@melendez.net,2021-01-27,"{""language"": ""FR"", ""currency"": ""CAD""}",6491.57,Gold,1 +8827,Jessica Clark,alexandria73@hotmail.com,2024-10-14,"{""language"": ""IT"", ""currency"": ""EUR""}",3653.05,Gold,1 +8828,Richard Richmond,hernandezdanielle@gmail.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1173.14,Silver,1 +8829,Barbara Lopez,carrie14@wilson.com,2024-05-26,"{""language"": ""EN"", ""currency"": ""MXN""}",8689.75,Bronze,1 +8830,Seth Bass,kwise@simmons.net,2022-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",8824.09,Silver,1 +8831,Pamela Myers,isaaclee@powell.org,2021-03-16,"{""language"": ""IT"", ""currency"": ""GBP""}",7488.07,Gold,0 +8832,Sarah Mason,michele07@gmail.com,2023-03-24,"{""language"": ""ES"", ""currency"": ""GBP""}",3163.2,Silver,0 +8833,Megan Thompson,travishernandez@nelson.com,2021-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",8271.1,Bronze,1 +8834,Vickie Shaw,catherinemaldonado@hotmail.com,2022-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",4654.74,Gold,1 +8835,Shannon Smith,weaverdavid@gmail.com,2023-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9358.21,Silver,1 +8836,Jeffrey Owens,hernandezmichael@yahoo.com,2023-04-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8742.42,Bronze,0 +8837,Summer Phillips,ecraig@hotmail.com,2019-12-13,"{""language"": ""FR"", ""currency"": ""USD""}",7751.42,Silver,1 +8838,Derek Flores,paul12@gmail.com,2021-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",7813.46,Bronze,0 +8839,Molly Woods,carroyo@gmail.com,2022-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",2519.07,Silver,1 +8840,Robert Johnson,xmichael@douglas.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8967.1,Gold,0 +8841,Christina Santiago,ahowell@gmail.com,2020-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",488.72,Silver,0 +8842,Elizabeth Byrd,hermanshawn@gibson.com,2021-03-19,"{""language"": ""IT"", ""currency"": ""USD""}",1606.14,Silver,0 +8843,Jennifer Rice,davisrichard@turner.com,2021-05-08,"{""language"": ""EN"", ""currency"": ""GBP""}",5235.6,Silver,1 +8844,Jacob Moore,zhiggins@richardson.com,2021-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",5868.1,Bronze,0 +8845,Ronald Smith,vcole@griffith.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",993.49,Gold,0 +8846,Dawn Newman,ssmith@hotmail.com,2023-04-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1115.04,Gold,1 +8847,Leslie Mejia,arnoldwilliam@foster-navarro.com,2022-08-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2625.96,Bronze,0 +8848,Carol Henderson,sterry@mora.com,2022-06-14,"{""language"": ""ES"", ""currency"": ""USD""}",1902.13,Gold,0 +8849,Hannah West,yschaefer@gmail.com,2022-11-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6059.39,Silver,1 +8850,Ethan Murphy,cynthialee@cooley.net,2021-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6420.93,Silver,1 +8851,Kyle Taylor,evanhaynes@gmail.com,2023-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",227.58,Silver,1 +8852,Mr. Joseph Stevenson Jr.,hodgechristopher@gmail.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""GBP""}",6720.89,Silver,1 +8853,Daniel Benson,larsonjason@jones.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2191.99,Bronze,0 +8854,Meredith Taylor,aaron15@hotmail.com,2024-03-06,"{""language"": ""DE"", ""currency"": ""CAD""}",3967.37,Gold,0 +8855,Lisa Barber,hmitchell@yahoo.com,2022-09-22,"{""language"": ""EN"", ""currency"": ""USD""}",8309.12,Bronze,0 +8856,Mary Benton,ryanhernandez@gmail.com,2021-01-09,"{""language"": ""ES"", ""currency"": ""EUR""}",5299.38,Gold,0 +8857,Christina Watkins,johnsonivan@yahoo.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1169.87,Silver,1 +8858,Christopher Galloway,wmendez@gmail.com,2023-12-09,"{""language"": ""EN"", ""currency"": ""USD""}",885.28,Silver,1 +8859,Anna Cunningham,claudia46@gmail.com,2020-08-07,"{""language"": ""IT"", ""currency"": ""EUR""}",8713.64,Bronze,1 +8860,Tyler Martinez,marshalljackson@smith-gill.com,2024-11-15,"{""language"": ""DE"", ""currency"": ""USD""}",6326.89,Bronze,0 +8861,Tracy Turner,gmason@hotmail.com,2024-03-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6805.53,Silver,0 +8862,Destiny Knight,thomasjulie@cook-king.com,2024-06-17,"{""language"": ""FR"", ""currency"": ""MXN""}",7937.48,Bronze,1 +8863,Ricky Terry,aimeethompson@brown.info,2021-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",6600.28,Bronze,0 +8864,Veronica English PhD,tanner92@gmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",7766.17,Gold,1 +8865,Margaret Gray,levi69@lane.com,2019-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2879.67,Bronze,0 +8866,Patricia White,imckay@gmail.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""EUR""}",9052.5,Gold,1 +8867,David Brown,gsingh@yahoo.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",9993.34,Silver,1 +8868,Leah Sherman,patrickgabriel@sanders.org,2024-10-18,"{""language"": ""EN"", ""currency"": ""USD""}",3886.33,Bronze,1 +8869,Mark Lawrence,baileydouglas@yahoo.com,2021-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",7983.02,Bronze,1 +8870,Stephanie Rios,nelsonlindsey@yahoo.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""CAD""}",2261.66,Bronze,0 +8871,Rachael Bradley,bbush@clark.net,2024-09-27,"{""language"": ""DE"", ""currency"": ""CAD""}",1245.46,Silver,0 +8872,Michelle Weeks,carly07@gmail.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""USD""}",6421.14,Gold,0 +8873,Michael Moran,sjohnson@cole.info,2024-10-18,"{""language"": ""EN"", ""currency"": ""GBP""}",1635.75,Bronze,0 +8874,Dr. Kyle Carpenter,hannah84@hotmail.com,2020-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",2498.78,Silver,1 +8875,Marc Combs,ulawson@hotmail.com,2022-03-08,"{""language"": ""IT"", ""currency"": ""USD""}",8171.37,Bronze,0 +8876,Darlene Shaw,daltonchandler@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6266.4,Silver,1 +8877,Cathy Padilla,afigueroa@jones.info,2020-11-15,"{""language"": ""ES"", ""currency"": ""USD""}",7122.67,Gold,0 +8878,Richard Miller,ismith@gmail.com,2024-01-21,"{""language"": ""DE"", ""currency"": ""MXN""}",1483.13,Silver,0 +8879,Debra Braun,acoleman@brown.com,2024-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4276.84,Silver,1 +8880,Mary Martinez,patriciaobrien@yahoo.com,2021-11-22,"{""language"": ""ES"", ""currency"": ""GBP""}",986.72,Gold,1 +8881,Gabriella Williams,wardjason@stark.com,2024-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",8349.68,Gold,0 +8882,Cody Porter,smithchristopher@sparks.org,2024-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",9305.16,Silver,0 +8883,Christina Williams,rbanks@lopez.com,2022-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",368.06,Gold,0 +8884,Donna Davis,eric24@vega-lewis.com,2020-01-18,"{""language"": ""IT"", ""currency"": ""GBP""}",4156.49,Silver,0 +8885,Patrick Murray,sara11@gmail.com,2023-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",8736.82,Bronze,0 +8886,Chad Villanueva,william06@hotmail.com,2020-08-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7243.95,Bronze,1 +8887,Monique Short,scott31@brewer-harper.info,2024-01-05,"{""language"": ""IT"", ""currency"": ""CAD""}",7901.49,Silver,0 +8888,Jill Lopez,mrangel@garza.com,2020-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",673.51,Silver,0 +8889,Joann Johnson MD,lvasquez@hotmail.com,2021-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",6328.35,Bronze,1 +8890,Ann Sanchez,miguel62@gates-johnson.net,2024-10-16,"{""language"": ""IT"", ""currency"": ""CAD""}",54.61,Silver,0 +8891,Ruth Swanson,carlosdowns@davis.com,2020-10-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2581.12,Gold,1 +8892,Andrea Hernandez,ricardoholloway@ayers.com,2021-09-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9986.58,Gold,1 +8893,Jenna Lindsey,phill@smith.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8082.65,Silver,1 +8894,Kristin Mitchell PhD,williamsjames@hotmail.com,2023-09-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9569.05,Silver,0 +8895,Olivia Gates,livingstonandrew@oneill.net,2019-12-24,"{""language"": ""EN"", ""currency"": ""GBP""}",9771.93,Silver,1 +8896,Anna Robinson,jacob88@hanson.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",3628.11,Bronze,1 +8897,Zachary Wright,umanning@gmail.com,2020-09-18,"{""language"": ""EN"", ""currency"": ""CAD""}",465.03,Gold,1 +8898,Matthew Williams,robertsscott@frazier-waters.com,2020-10-12,"{""language"": ""DE"", ""currency"": ""MXN""}",4581.48,Bronze,0 +8899,Emily Bowers,lhale@yahoo.com,2021-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",5980.65,Bronze,0 +8900,Christine Davis,brittanymitchell@townsend.info,2024-04-10,"{""language"": ""ES"", ""currency"": ""USD""}",1748.23,Bronze,0 +8901,Michelle Reid,gtanner@hotmail.com,2020-10-04,"{""language"": ""FR"", ""currency"": ""EUR""}",7671.68,Bronze,0 +8902,Maria Macdonald,johnsonbrian@carr.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",7782.78,Silver,0 +8903,Julia Schroeder,cjames@gmail.com,2020-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",1528.72,Bronze,0 +8904,Valerie Ryan,travisbarr@gmail.com,2021-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",2020.4,Gold,0 +8905,Daniel Burnett,tmason@henry-smith.com,2022-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",2562.0,Gold,0 +8906,David Rogers,zdavies@yahoo.com,2024-01-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3800.85,Silver,0 +8907,Patricia Foster,greenmichele@juarez.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1219.99,Bronze,1 +8908,Eric Phillips,whiteheadcarly@yahoo.com,2023-09-26,"{""language"": ""EN"", ""currency"": ""USD""}",3802.18,Gold,1 +8909,Amy Morgan,marioroman@barnes.com,2022-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",7095.33,Silver,0 +8910,Gordon Roach,scottwalker@hotmail.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""USD""}",3657.94,Bronze,0 +8911,Maria Swanson,kim56@gmail.com,2019-12-23,"{""language"": ""IT"", ""currency"": ""MXN""}",3932.56,Bronze,1 +8912,Michael Farley,virginia68@andersen.com,2020-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",197.88,Silver,1 +8913,Troy Powell,stewartdarren@gmail.com,2024-11-19,"{""language"": ""FR"", ""currency"": ""CAD""}",3299.2,Silver,0 +8914,Jeremy Jarvis,njackson@mckinney-hernandez.biz,2021-07-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4366.32,Gold,1 +8915,Timothy Harris,cody67@jones-dickson.com,2021-05-04,"{""language"": ""ES"", ""currency"": ""EUR""}",3854.43,Bronze,0 +8916,Martin Franklin,fcook@harrell.info,2020-01-25,"{""language"": ""ES"", ""currency"": ""GBP""}",3324.66,Gold,0 +8917,Priscilla Davis,kennethbrooks@gmail.com,2024-10-05,"{""language"": ""DE"", ""currency"": ""EUR""}",7668.65,Gold,0 +8918,Timothy Herrera,karengross@kim.com,2020-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",275.16,Bronze,1 +8919,Jim Robbins,lindsayallen@gonzalez.net,2023-10-28,"{""language"": ""ES"", ""currency"": ""GBP""}",6117.37,Silver,1 +8920,Emily Garcia,williamscharles@church-carpenter.com,2021-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7679.93,Silver,1 +8921,Lisa Chapman,owensmelissa@gmail.com,2022-08-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9373.68,Bronze,1 +8922,Aimee Beltran,christopherholland@yahoo.com,2024-09-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8223.62,Silver,1 +8923,Jennifer Leach,hfitzpatrick@hotmail.com,2023-03-15,"{""language"": ""FR"", ""currency"": ""EUR""}",5248.02,Gold,1 +8924,Joyce Schmidt,jayrobles@berry.biz,2020-05-03,"{""language"": ""DE"", ""currency"": ""USD""}",4964.82,Bronze,1 +8925,Gina Mays,ryandavis@gmail.com,2020-09-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5539.21,Bronze,1 +8926,Gregory Brown,monicahurst@roy-dillon.org,2023-10-04,"{""language"": ""IT"", ""currency"": ""GBP""}",6335.47,Bronze,1 +8927,Elizabeth Ortega,tyler86@gmail.com,2024-09-18,"{""language"": ""EN"", ""currency"": ""MXN""}",4748.72,Bronze,1 +8928,Erik Bush,martineztyler@gmail.com,2024-11-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5356.73,Gold,1 +8929,Justin Mendoza,williamgarza@gmail.com,2024-01-18,"{""language"": ""EN"", ""currency"": ""CAD""}",8265.56,Bronze,0 +8930,Chad Phillips,douglasbarajas@brown-hays.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""MXN""}",5106.16,Gold,0 +8931,Mary Nicholson,garciarobert@yahoo.com,2020-11-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9878.86,Bronze,0 +8932,Katherine Cooper,lsanchez@hotmail.com,2023-06-05,"{""language"": ""IT"", ""currency"": ""GBP""}",2963.88,Gold,1 +8933,Mary Herring,mortonlatasha@yahoo.com,2020-01-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1351.93,Gold,0 +8934,Katherine Vasquez,kevin50@petersen.net,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4757.27,Bronze,1 +8935,Ryan Bender,jennifer06@smith.com,2023-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",4075.64,Silver,0 +8936,Denise Carter DVM,perezloretta@collins.com,2020-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3618.06,Gold,1 +8937,Miss Amy Stevens,davidharris@flores.info,2022-02-09,"{""language"": ""IT"", ""currency"": ""CAD""}",2339.78,Silver,1 +8938,Daniel Allen,jennifer47@gmail.com,2022-05-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2295.25,Silver,1 +8939,Sara Osborne,jessicastokes@saunders.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1490.87,Gold,1 +8940,Jeanette Andrews,gonzalezcindy@gmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""USD""}",8676.6,Silver,0 +8941,Ashley Odom,morgandylan@gilmore.info,2024-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8498.5,Silver,0 +8942,Gabriel Carter,sheri67@jackson-sims.com,2024-09-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4403.34,Gold,1 +8943,Gina Perez,whughes@gmail.com,2021-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",4745.13,Bronze,1 +8944,Erin Ray,djohnson@sims-patrick.com,2020-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8890.16,Bronze,0 +8945,Shane Edwards,zferguson@bowman.biz,2024-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",8163.79,Gold,0 +8946,David Hogan,steven74@yahoo.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4707.94,Bronze,0 +8947,Brooke Nelson,kellyjacob@booth-wolf.info,2024-08-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7085.76,Silver,1 +8948,Sheila Mccormick,zachary02@gmail.com,2024-02-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7581.5,Bronze,0 +8949,Ryan Thompson,claire87@yahoo.com,2023-06-17,"{""language"": ""IT"", ""currency"": ""CAD""}",9886.82,Silver,1 +8950,Mrs. Lori Parker,tammyfrench@gmail.com,2020-10-19,"{""language"": ""IT"", ""currency"": ""GBP""}",1859.01,Bronze,1 +8951,William Cooper,christineramirez@yahoo.com,2023-11-03,"{""language"": ""IT"", ""currency"": ""GBP""}",3922.3,Bronze,1 +8952,Christina Diaz,ryancruz@velasquez.com,2024-02-16,"{""language"": ""FR"", ""currency"": ""GBP""}",4524.44,Bronze,1 +8953,Michael Cabrera,atkinsdavid@morse.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""USD""}",4172.08,Silver,1 +8954,Sarah Flores,heathlori@holland.com,2020-08-06,"{""language"": ""FR"", ""currency"": ""GBP""}",1629.96,Gold,0 +8955,Robert Davis,daniel70@hotmail.com,2022-01-19,"{""language"": ""ES"", ""currency"": ""GBP""}",5228.95,Bronze,1 +8956,Katie Cooley,tamara56@salinas.com,2023-07-02,"{""language"": ""DE"", ""currency"": ""USD""}",4006.7,Bronze,1 +8957,Taylor White,elizabethhodge@gonzalez-bennett.com,2020-03-04,"{""language"": ""EN"", ""currency"": ""USD""}",3200.64,Silver,1 +8958,Susan Molina,grodriguez@yahoo.com,2022-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",4889.01,Gold,1 +8959,Christopher Wright,james01@barnett.info,2023-06-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2110.24,Gold,1 +8960,Jay Wood,gregory84@yahoo.com,2022-08-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8354.31,Gold,1 +8961,Brian Ward,xlee@yahoo.com,2023-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5906.13,Bronze,0 +8962,Maria Brown,bryan64@hampton-chen.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""USD""}",8807.36,Bronze,1 +8963,Ann Cruz DDS,currysamantha@yahoo.com,2024-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",8352.54,Bronze,0 +8964,Timothy Carpenter,sgreen@cabrera-lee.org,2024-07-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6899.4,Silver,1 +8965,Kerri Shah,everettsarah@yahoo.com,2021-01-15,"{""language"": ""FR"", ""currency"": ""GBP""}",7605.87,Silver,0 +8966,Christopher Castro,brandonmueller@ross.biz,2023-06-08,"{""language"": ""EN"", ""currency"": ""MXN""}",6331.34,Bronze,1 +8967,Aaron Frederick,aimee64@yahoo.com,2022-10-22,"{""language"": ""ES"", ""currency"": ""USD""}",3880.57,Bronze,0 +8968,Michael Fischer Jr.,nelsoncharles@reynolds-martinez.info,2020-08-04,"{""language"": ""FR"", ""currency"": ""GBP""}",1388.03,Gold,0 +8969,Tracy Arnold,jaimemorris@hotmail.com,2022-06-05,"{""language"": ""EN"", ""currency"": ""CAD""}",2492.63,Silver,0 +8970,Karen Thompson,wmiller@stone-thomas.com,2023-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8663.33,Gold,0 +8971,Joshua Donovan,bethhoffman@black-acosta.biz,2023-01-03,"{""language"": ""FR"", ""currency"": ""CAD""}",4274.3,Bronze,1 +8972,Jennifer Smith,wrighteric@morales-sanford.com,2020-12-04,"{""language"": ""IT"", ""currency"": ""GBP""}",1174.29,Gold,0 +8973,Mr. Brett Hunter,yrichards@johnson.com,2024-03-27,"{""language"": ""EN"", ""currency"": ""MXN""}",276.04,Silver,0 +8974,Chad Weaver,victoriabarrera@crane.info,2021-09-03,"{""language"": ""ES"", ""currency"": ""EUR""}",8652.36,Bronze,1 +8975,Jared Adkins,cruzlaura@gmail.com,2020-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",3923.13,Gold,0 +8976,Jason Mendoza,jessica67@gmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4414.74,Bronze,1 +8977,Carol Kelly,davidwilliams@anderson.org,2021-01-09,"{""language"": ""IT"", ""currency"": ""USD""}",7114.73,Bronze,1 +8978,Sharon Hanna DDS,tjohnson@garcia-anderson.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",936.78,Bronze,0 +8979,Antonio Evans,willie67@franco.com,2024-03-05,"{""language"": ""DE"", ""currency"": ""EUR""}",4404.26,Gold,1 +8980,Dustin Nguyen,zchandler@gutierrez.com,2021-02-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4026.7,Bronze,1 +8981,Dr. Savannah Murphy MD,sarah77@nash-reynolds.com,2022-08-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9381.0,Silver,0 +8982,Robert Palmer,evelynortega@yahoo.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",1860.55,Silver,0 +8983,Scott Carter,ymarquez@gonzalez-smith.com,2020-02-01,"{""language"": ""FR"", ""currency"": ""USD""}",6548.48,Silver,0 +8984,Michael Lee,pbrown@yahoo.com,2020-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",1131.08,Gold,0 +8985,Danny Robinson,tinalindsey@yahoo.com,2022-01-09,"{""language"": ""DE"", ""currency"": ""CAD""}",3844.06,Gold,1 +8986,Mrs. Miranda Smith,laura22@rice.com,2022-06-21,"{""language"": ""EN"", ""currency"": ""GBP""}",3940.1,Bronze,0 +8987,Brian Mclaughlin,rebecca96@yahoo.com,2023-08-29,"{""language"": ""IT"", ""currency"": ""GBP""}",3097.17,Gold,0 +8988,Rhonda Miller DDS,susanbrown@ramsey.org,2024-02-01,"{""language"": ""DE"", ""currency"": ""GBP""}",9722.74,Bronze,1 +8989,Michael Wilson,jwyatt@gmail.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""MXN""}",5167.44,Gold,0 +8990,Daniel Jones,jennifernelson@gmail.com,2020-09-29,"{""language"": ""IT"", ""currency"": ""CAD""}",4406.04,Silver,1 +8991,Kaitlyn Green,markshannah@yahoo.com,2022-07-03,"{""language"": ""IT"", ""currency"": ""USD""}",7159.07,Silver,1 +8992,Michelle Smith,wjackson@gmail.com,2020-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4451.73,Silver,1 +8993,Jessica Knox,npeck@hotmail.com,2023-07-31,"{""language"": ""FR"", ""currency"": ""USD""}",3780.85,Silver,0 +8994,Steven Brown,ucruz@merritt.biz,2023-12-07,"{""language"": ""EN"", ""currency"": ""MXN""}",2153.54,Gold,0 +8995,Jeffrey Kelly,gaydavid@massey.com,2021-06-26,"{""language"": ""FR"", ""currency"": ""CAD""}",3414.78,Silver,0 +8996,Patricia Mccormick,huntermichael@lopez-robinson.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8065.98,Silver,1 +8997,Paul Thornton,brandon41@krause.com,2022-08-17,"{""language"": ""IT"", ""currency"": ""GBP""}",9190.25,Bronze,0 +8998,Matthew Parker,doylemartin@kaiser-faulkner.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",3294.06,Gold,0 +8999,Mr. Brandon Smith,cheryl25@wilson-rodriguez.net,2021-01-16,"{""language"": ""FR"", ""currency"": ""GBP""}",1037.52,Gold,1 +9000,James Boyer,johnsonamanda@smith.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""GBP""}",8374.62,Gold,1 +9001,Angela Hall,grahamlouis@gmail.com,2021-07-17,"{""language"": ""IT"", ""currency"": ""MXN""}",235.47,Bronze,0 +9002,Austin Evans,kjennings@luna.org,2020-02-15,"{""language"": ""EN"", ""currency"": ""MXN""}",422.26,Gold,0 +9003,Cynthia Henson,virginia40@whitaker.com,2021-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2864.05,Gold,0 +9004,Ryan Rowland,megan77@gmail.com,2023-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",3061.33,Gold,1 +9005,Jaime Brown,tammy43@henderson.net,2024-06-06,"{""language"": ""ES"", ""currency"": ""MXN""}",3932.99,Silver,1 +9006,Erin Strong,eric50@hotmail.com,2024-07-10,"{""language"": ""IT"", ""currency"": ""EUR""}",898.81,Gold,0 +9007,Zachary Stokes,kent34@hotmail.com,2020-10-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4987.41,Gold,1 +9008,Madison Green,jacksonkaren@gonzalez-foster.com,2024-09-16,"{""language"": ""DE"", ""currency"": ""USD""}",6789.52,Bronze,1 +9009,Margaret Rogers,bradfaulkner@nicholson.net,2024-04-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4429.36,Bronze,0 +9010,Dan Cannon,brentyoung@knox-cameron.com,2020-10-29,"{""language"": ""FR"", ""currency"": ""MXN""}",9180.21,Bronze,0 +9011,John Love,raymond54@yahoo.com,2024-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",5917.24,Bronze,0 +9012,Ashley Mercado,martinezaaron@hotmail.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",9387.93,Gold,1 +9013,Robert Gonzalez,johnlarson@hotmail.com,2022-12-12,"{""language"": ""IT"", ""currency"": ""GBP""}",8141.97,Gold,1 +9014,Patricia Montoya,nfernandez@hotmail.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""GBP""}",4285.22,Gold,0 +9015,Walter Wiggins,malloryirwin@hoover-woodard.biz,2024-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",474.1,Silver,0 +9016,Amanda Fisher,tiffany70@gonzalez-lucas.org,2023-11-26,"{""language"": ""EN"", ""currency"": ""USD""}",2397.53,Silver,1 +9017,Ashley Turner,jeffreymontgomery@hotmail.com,2024-03-13,"{""language"": ""FR"", ""currency"": ""USD""}",8704.02,Gold,0 +9018,Tracy Trevino,jennifer58@gmail.com,2024-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",3052.92,Gold,1 +9019,Jacqueline Chambers MD,carterjoshua@hardy.com,2022-05-19,"{""language"": ""DE"", ""currency"": ""GBP""}",9003.55,Bronze,1 +9020,Vanessa Sanders,oliviahunter@hahn-tran.com,2023-02-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4728.45,Bronze,0 +9021,Michael Hunt,michellebanks@castro-medina.net,2022-01-08,"{""language"": ""IT"", ""currency"": ""MXN""}",7323.25,Gold,0 +9022,Kathleen Scott,shawnwilliams@preston-garner.biz,2020-10-30,"{""language"": ""IT"", ""currency"": ""EUR""}",1042.07,Silver,1 +9023,Lisa Walter,fsanders@ortiz.org,2024-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",1741.02,Silver,1 +9024,Sheri Li,zrodriguez@smith-weaver.com,2024-10-17,"{""language"": ""FR"", ""currency"": ""CAD""}",3040.39,Silver,0 +9025,John Hernandez,rogerobrien@hotmail.com,2020-03-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6870.95,Silver,1 +9026,Jeremy Walters,marybates@hotmail.com,2020-10-17,"{""language"": ""EN"", ""currency"": ""CAD""}",8239.48,Silver,1 +9027,Martha Hoffman,ronald96@stevens-good.com,2023-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",4581.55,Gold,1 +9028,Jay Barber,derekdean@meyer-richard.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""USD""}",844.65,Bronze,0 +9029,Dr. Mark Martin,murphybrandon@hotmail.com,2020-12-17,"{""language"": ""ES"", ""currency"": ""CAD""}",2202.75,Silver,1 +9030,Deanna Lewis,joseph11@yahoo.com,2021-09-24,"{""language"": ""DE"", ""currency"": ""CAD""}",2170.06,Bronze,0 +9031,Melissa Myers,austinsaunders@hotmail.com,2020-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2541.47,Gold,1 +9032,Dana Ramsey,brianna34@sosa-ryan.com,2020-02-18,"{""language"": ""FR"", ""currency"": ""CAD""}",5016.16,Bronze,0 +9033,Kenneth Olson,grahamrebecca@gmail.com,2021-05-23,"{""language"": ""DE"", ""currency"": ""MXN""}",8957.74,Gold,1 +9034,Joyce Salazar,lindawilliams@yahoo.com,2020-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",1596.67,Bronze,0 +9035,Michele Huerta,jasontapia@yahoo.com,2024-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5743.24,Gold,0 +9036,Ryan Smith,jackrivera@davis-ingram.com,2020-01-13,"{""language"": ""DE"", ""currency"": ""USD""}",9640.74,Gold,1 +9037,David Tapia,jamesthompson@yahoo.com,2020-12-19,"{""language"": ""DE"", ""currency"": ""CAD""}",2643.09,Gold,0 +9038,Nicholas Welch,wallsdrew@jones-watts.com,2023-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",4218.38,Silver,0 +9039,Felicia Moody,christina51@bentley.com,2023-12-22,"{""language"": ""IT"", ""currency"": ""MXN""}",5331.06,Silver,1 +9040,Gregory Jefferson,heathersmith@lee-harris.biz,2021-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7318.15,Bronze,0 +9041,Adam Aguilar DVM,wsmith@jones-west.com,2020-04-18,"{""language"": ""IT"", ""currency"": ""MXN""}",5469.54,Bronze,1 +9042,Eric Rogers,dave81@jones-clark.biz,2022-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",8936.36,Gold,0 +9043,Joseph Manning,linda83@navarro-jones.net,2024-09-14,"{""language"": ""ES"", ""currency"": ""USD""}",3551.81,Bronze,0 +9044,Evan Sharp,john87@howard.com,2023-08-08,"{""language"": ""FR"", ""currency"": ""USD""}",7161.24,Bronze,0 +9045,Nicholas Palmer,joshua28@gmail.com,2020-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3145.26,Bronze,1 +9046,Tiffany Hill,susanmeyers@santiago-weber.net,2023-09-25,"{""language"": ""ES"", ""currency"": ""USD""}",1412.81,Gold,1 +9047,William Woods,zlong@yahoo.com,2023-09-18,"{""language"": ""IT"", ""currency"": ""USD""}",6347.65,Silver,1 +9048,Jason Wade,amanda95@gmail.com,2020-09-25,"{""language"": ""IT"", ""currency"": ""EUR""}",9576.88,Gold,0 +9049,Richard Turner,stevefernandez@cervantes.com,2021-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9510.76,Silver,1 +9050,Alan Nelson,russellkelli@yahoo.com,2023-02-11,"{""language"": ""EN"", ""currency"": ""MXN""}",6300.02,Gold,1 +9051,Miranda Salazar,troy28@green-ferguson.net,2020-02-11,"{""language"": ""IT"", ""currency"": ""GBP""}",1271.22,Bronze,0 +9052,Paul Zimmerman,prattsteven@yahoo.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""USD""}",1313.29,Silver,1 +9053,William Walker,zbrown@stone-barton.biz,2023-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",8254.08,Gold,0 +9054,Christopher Zavala,amanda37@hotmail.com,2023-05-29,"{""language"": ""FR"", ""currency"": ""CAD""}",9921.48,Bronze,1 +9055,Douglas Bryant,pamelagonzalez@clark.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""EUR""}",4421.93,Bronze,0 +9056,Shelly Adams,xwhite@gmail.com,2023-12-03,"{""language"": ""EN"", ""currency"": ""EUR""}",8663.38,Bronze,0 +9057,Jesus Rodriguez,welchjeremy@hotmail.com,2021-01-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5424.66,Bronze,1 +9058,Sierra Cunningham,teresamorris@gonzales-palmer.biz,2020-09-20,"{""language"": ""IT"", ""currency"": ""MXN""}",7553.86,Gold,1 +9059,William Bryant,aholt@yahoo.com,2020-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1351.04,Gold,1 +9060,Kirk Arnold,harriskelli@hotmail.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",9259.48,Silver,1 +9061,David Holt Jr.,lindsey08@allison.com,2021-07-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5692.41,Bronze,1 +9062,Dawn Miller,valenciajoe@yahoo.com,2024-02-25,"{""language"": ""IT"", ""currency"": ""CAD""}",1251.11,Bronze,0 +9063,Tiffany Davenport,joshua39@pearson-james.biz,2020-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",5304.36,Gold,1 +9064,Marvin Jones,lisarivera@gmail.com,2022-02-04,"{""language"": ""DE"", ""currency"": ""USD""}",2306.77,Gold,0 +9065,Erin Cohen,mcmillankayla@hotmail.com,2024-07-31,"{""language"": ""EN"", ""currency"": ""GBP""}",7662.96,Bronze,1 +9066,Amber Hayden,williamstimothy@hotmail.com,2024-12-08,"{""language"": ""FR"", ""currency"": ""USD""}",6232.62,Gold,0 +9067,Meagan Underwood,brennandiane@mathews-jenkins.net,2020-09-12,"{""language"": ""DE"", ""currency"": ""USD""}",7559.25,Gold,0 +9068,Victoria Washington,ehill@yahoo.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",2877.74,Bronze,0 +9069,Jason Allen,juanarmstrong@hotmail.com,2021-04-27,"{""language"": ""FR"", ""currency"": ""MXN""}",6743.81,Gold,0 +9070,Jason Harris,ubaker@lambert-chapman.org,2022-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",6903.05,Bronze,0 +9071,Nicole Elliott,xallen@powell.net,2021-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",3987.34,Gold,0 +9072,Melissa Khan,danielwilkins@hotmail.com,2021-05-14,"{""language"": ""DE"", ""currency"": ""CAD""}",5994.54,Bronze,0 +9073,Kenneth Lam,taylorwendy@carpenter.com,2022-06-16,"{""language"": ""IT"", ""currency"": ""CAD""}",5348.78,Silver,1 +9074,Carlos Morrison,qperry@collins-buck.com,2020-07-26,"{""language"": ""ES"", ""currency"": ""USD""}",6247.95,Gold,0 +9075,Brian Jones,dmunoz@brown-taylor.org,2021-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8659.19,Bronze,0 +9076,Steven Garcia,marissalambert@hotmail.com,2024-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",8751.09,Gold,1 +9077,Taylor Lynch,garciasusan@west.com,2024-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6359.01,Silver,0 +9078,Katrina Johnson,burnsmelissa@robinson-day.com,2023-09-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3127.41,Silver,0 +9079,Steven Morrison,xcopeland@ingram.net,2024-01-11,"{""language"": ""ES"", ""currency"": ""USD""}",7050.63,Silver,0 +9080,Marc Evans,graybrooke@hotmail.com,2020-03-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4440.98,Silver,1 +9081,Monica Best,meyervictoria@berry.net,2020-03-18,"{""language"": ""IT"", ""currency"": ""CAD""}",1502.14,Bronze,1 +9082,Jasmine Young,wrice@hotmail.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",630.88,Bronze,1 +9083,Eric Schultz,dalton15@yahoo.com,2020-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",3091.35,Bronze,0 +9084,Carol Arnold,belindawilkerson@yahoo.com,2022-08-07,"{""language"": ""EN"", ""currency"": ""CAD""}",3109.41,Bronze,0 +9085,Rachel Martinez,pamela60@hotmail.com,2020-06-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5802.05,Silver,1 +9086,Andre Lane,jasonstrong@gmail.com,2021-02-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2278.33,Bronze,1 +9087,Jennifer Norris,allenshields@hotmail.com,2021-09-07,"{""language"": ""FR"", ""currency"": ""CAD""}",2326.02,Gold,0 +9088,Grant Flynn,qvalencia@yahoo.com,2022-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",4359.14,Silver,1 +9089,Stephanie Clark,vrobertson@yahoo.com,2022-03-10,"{""language"": ""DE"", ""currency"": ""USD""}",9187.2,Silver,1 +9090,Jennifer Powers,curtisburns@yahoo.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""MXN""}",8980.28,Silver,0 +9091,Tristan Lewis,ricky55@yahoo.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""EUR""}",2891.6,Silver,0 +9092,Michael Graves,joshuaknight@hotmail.com,2022-08-03,"{""language"": ""DE"", ""currency"": ""GBP""}",2369.11,Bronze,1 +9093,Jonathan Hart,ejohnson@anderson-edwards.net,2021-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4981.8,Gold,1 +9094,Lee Estrada,qcastro@hotmail.com,2022-09-17,"{""language"": ""IT"", ""currency"": ""GBP""}",4677.98,Gold,1 +9095,Dr. Damon Hess,alyssariddle@graham.biz,2020-07-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8590.75,Gold,0 +9096,Jordan Lee,schultzhayley@yahoo.com,2022-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5373.56,Bronze,0 +9097,Craig Ramos,jefferybond@diaz.com,2023-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",1594.93,Bronze,1 +9098,Thomas Cannon,mwebster@yahoo.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""GBP""}",60.56,Gold,0 +9099,Dawn Pacheco,erikgarcia@mcfarland.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""USD""}",2965.14,Bronze,0 +9100,Melissa Robertson,john55@gmail.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5768.51,Silver,1 +9101,Kerry Charles,ericanderson@gmail.com,2023-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",2659.6,Bronze,0 +9102,Connie Floyd,shane49@gmail.com,2021-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",5984.77,Gold,0 +9103,Paul James,wsnow@hotmail.com,2022-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",6939.98,Bronze,1 +9104,Patricia Coleman,xanderson@jensen.com,2021-06-15,"{""language"": ""FR"", ""currency"": ""USD""}",5340.95,Gold,0 +9105,Michele Coleman,nramirez@gmail.com,2023-10-10,"{""language"": ""DE"", ""currency"": ""USD""}",8795.95,Gold,1 +9106,Michelle Morgan,robertbrown@mitchell.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""MXN""}",4029.75,Bronze,1 +9107,Jessica Kim,sydneyrhodes@gmail.com,2022-03-22,"{""language"": ""ES"", ""currency"": ""MXN""}",8581.01,Gold,0 +9108,Tonya Ross,fordbrenda@yahoo.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",1898.44,Bronze,1 +9109,Lisa Carter,campbellsandra@bonilla.net,2020-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",3887.27,Silver,0 +9110,Elizabeth Spencer,brandi01@robinson-williams.com,2021-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5875.81,Bronze,0 +9111,Jennifer Cooper,aortega@simpson.com,2023-11-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2143.41,Gold,1 +9112,Daniel Harrison,johnsonlisa@briggs.com,2023-03-18,"{""language"": ""ES"", ""currency"": ""CAD""}",6665.56,Gold,1 +9113,Michelle Smith,cookjack@gmail.com,2020-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",6150.54,Silver,0 +9114,Stephanie Taylor,khunter@lane-clark.com,2023-02-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3646.17,Silver,0 +9115,Gerald Gordon,lchoi@hester.org,2022-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",4132.97,Bronze,0 +9116,Felicia Wilson,johnsonshawn@yahoo.com,2020-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",7894.63,Silver,0 +9117,Wendy Roman MD,perezmichael@gmail.com,2022-01-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8046.96,Bronze,0 +9118,Rodney Miranda,ayates@herring-sanchez.info,2021-05-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5781.77,Bronze,1 +9119,Gerald Nelson PhD,farleyangela@hotmail.com,2021-09-19,"{""language"": ""FR"", ""currency"": ""EUR""}",8116.48,Bronze,0 +9120,Angela Gonzalez,paulsanders@richardson.net,2024-05-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7936.33,Bronze,0 +9121,Katherine Meyer,michaela88@chang-malone.info,2021-11-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7914.33,Silver,1 +9122,Abigail Ferrell,whitestephen@kirk.info,2022-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4894.12,Bronze,1 +9123,Mario Moreno,schwartzheather@hotmail.com,2020-05-03,"{""language"": ""ES"", ""currency"": ""GBP""}",662.04,Silver,0 +9124,Patricia Davis,amanda52@miller.net,2023-10-22,"{""language"": ""EN"", ""currency"": ""GBP""}",3158.37,Gold,1 +9125,Rebecca Hodge,elizabeth98@hotmail.com,2024-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2977.18,Silver,0 +9126,Robert Thompson,richard63@peterson-wyatt.org,2023-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9999.73,Bronze,1 +9127,Kara Day,kmarks@martin.net,2021-07-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2004.28,Gold,0 +9128,Clayton Jensen,tracyjames@gmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3812.93,Gold,1 +9129,Crystal Charles,ohunter@smith.net,2021-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",4488.2,Silver,0 +9130,Robert Calderon,kelly43@gonzalez-cantu.org,2022-03-26,"{""language"": ""DE"", ""currency"": ""USD""}",7048.59,Bronze,0 +9131,Michelle Delgado,michaelbowers@gmail.com,2024-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",5880.99,Gold,1 +9132,Sharon Phillips,amandathompson@mcdonald-hawkins.com,2024-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",2147.26,Gold,1 +9133,Katie Newton,sandramcdonald@gmail.com,2022-04-15,"{""language"": ""ES"", ""currency"": ""MXN""}",5678.53,Bronze,0 +9134,Heather Moore,zduran@brown.org,2021-11-08,"{""language"": ""ES"", ""currency"": ""MXN""}",9337.04,Gold,0 +9135,Megan Chen,hallkimberly@yahoo.com,2021-04-24,"{""language"": ""DE"", ""currency"": ""USD""}",2101.85,Silver,1 +9136,Joseph Flores,thomasmelendez@yahoo.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",5320.7,Gold,1 +9137,Kimberly Berg,zachary94@marquez.info,2021-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",695.06,Bronze,0 +9138,Jennifer Zavala,jameslang@white.biz,2020-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6475.79,Silver,1 +9139,Michael Welch,allison78@gmail.com,2020-06-02,"{""language"": ""DE"", ""currency"": ""USD""}",9070.53,Gold,1 +9140,Samantha Powers,egriffin@hotmail.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1964.55,Bronze,1 +9141,Monica Hanson,owenslindsay@gmail.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2073.07,Gold,0 +9142,Marissa Montes,marcusgallegos@hotmail.com,2024-07-12,"{""language"": ""FR"", ""currency"": ""CAD""}",8150.17,Silver,1 +9143,Sandra Nichols,ndiaz@davis-gordon.com,2020-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",7199.88,Bronze,0 +9144,Mr. Paul Morris,jperry@gmail.com,2021-11-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6434.04,Silver,1 +9145,Emma Parsons,joshuareyes@gmail.com,2024-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",9147.1,Silver,0 +9146,Daniel Fields,kaneantonio@davis.com,2021-04-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8266.84,Silver,0 +9147,Sandra Graves,fanderson@stafford.biz,2022-07-20,"{""language"": ""ES"", ""currency"": ""EUR""}",1033.85,Gold,0 +9148,Jeffrey Mason,timothy16@bryant-hall.com,2020-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",8840.68,Gold,1 +9149,Jacqueline Carter,jacksonwilliam@hotmail.com,2020-08-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6978.24,Bronze,0 +9150,Sherry Parker,allisonadams@gmail.com,2020-05-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9902.65,Gold,1 +9151,Samantha Reeves,michaelmolina@curry.org,2022-01-15,"{""language"": ""EN"", ""currency"": ""MXN""}",4956.28,Bronze,0 +9152,Amanda Thomas,ninarivera@yahoo.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",5559.13,Bronze,0 +9153,Heather Jenkins,carloskim@yahoo.com,2020-01-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7187.99,Silver,0 +9154,Casey Ellis,rayamy@santiago-campbell.org,2021-07-17,"{""language"": ""FR"", ""currency"": ""GBP""}",9402.26,Bronze,0 +9155,Kimberly Henderson,cdudley@gmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",6211.28,Gold,1 +9156,Ebony Rodriguez,thomas56@hotmail.com,2021-07-25,"{""language"": ""EN"", ""currency"": ""USD""}",1795.66,Bronze,1 +9157,Danielle Thomas,aprilharvey@gonzalez.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9550.34,Silver,1 +9158,Jeffrey Keith,donnafrost@robinson.info,2021-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",3100.95,Silver,0 +9159,Glenda Bishop DVM,sarah42@gmail.com,2020-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",9920.7,Silver,1 +9160,Kelly Knight,floydchristopher@lopez-murphy.com,2022-09-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5282.86,Silver,1 +9161,Jonathan Cooke,lisagarcia@yahoo.com,2024-01-30,"{""language"": ""IT"", ""currency"": ""EUR""}",7757.43,Silver,0 +9162,Amanda Rodriguez,stricklandjohn@delgado-reese.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",1238.54,Bronze,1 +9163,Anna Jackson,hunter70@yahoo.com,2023-11-28,"{""language"": ""ES"", ""currency"": ""GBP""}",9092.4,Gold,1 +9164,Alan Mora,gregoryrichard@yahoo.com,2020-07-24,"{""language"": ""DE"", ""currency"": ""EUR""}",755.61,Gold,0 +9165,Michael Donaldson,michael65@gmail.com,2021-02-12,"{""language"": ""DE"", ""currency"": ""USD""}",8329.4,Gold,1 +9166,Brittany Nguyen,qtucker@yahoo.com,2021-08-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9165.52,Gold,1 +9167,Jessica Gillespie,nmcdaniel@hotmail.com,2020-12-28,"{""language"": ""IT"", ""currency"": ""GBP""}",98.87,Bronze,1 +9168,Erica Gomez,brett68@reynolds-randall.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7934.1,Silver,1 +9169,Drew Long,cpena@yahoo.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""CAD""}",4293.6,Gold,1 +9170,Stephanie Johnson,cmartinez@gmail.com,2024-12-03,"{""language"": ""DE"", ""currency"": ""GBP""}",263.95,Gold,1 +9171,William Aguilar,andrew17@yahoo.com,2022-03-28,"{""language"": ""FR"", ""currency"": ""MXN""}",1513.97,Gold,1 +9172,John Buck,mcmillansabrina@yahoo.com,2024-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",855.13,Silver,0 +9173,Mr. Eric Pope,pereznicole@gmail.com,2020-04-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1376.43,Bronze,1 +9174,Sandra Castillo,christiansoto@hotmail.com,2022-05-01,"{""language"": ""IT"", ""currency"": ""CAD""}",7856.24,Gold,1 +9175,Jacqueline Gillespie,oweaver@gmail.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",226.63,Silver,1 +9176,Michelle Garza,jon06@hotmail.com,2022-11-29,"{""language"": ""FR"", ""currency"": ""GBP""}",903.86,Bronze,1 +9177,Kristin Marshall,smithmichael@gmail.com,2024-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",3078.15,Gold,1 +9178,Julia Farrell,lukehorn@hotmail.com,2023-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",7256.07,Bronze,1 +9179,Paul Hayes,yvonne38@mercer-alvarez.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""EUR""}",4438.93,Gold,0 +9180,Daniel Bradley,sarah79@yahoo.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3870.0,Bronze,0 +9181,Nicholas Edwards,melissatrevino@meyers.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""USD""}",2825.35,Silver,1 +9182,Cynthia Wood,sbennett@edwards-turner.biz,2022-01-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1954.36,Silver,0 +9183,Emily Ferguson,fosterjimmy@miller.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6383.74,Gold,1 +9184,Kenneth Oliver,ucervantes@chavez.com,2021-06-05,"{""language"": ""IT"", ""currency"": ""GBP""}",1201.44,Silver,0 +9185,Anthony Johnson,nrodriguez@smith.com,2023-02-05,"{""language"": ""ES"", ""currency"": ""MXN""}",7147.41,Gold,0 +9186,Jamie Mccullough,cbaldwin@graham-kennedy.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",6003.63,Gold,1 +9187,Karen Drake,lunatina@ramirez.net,2024-08-31,"{""language"": ""EN"", ""currency"": ""GBP""}",3600.74,Gold,0 +9188,Melissa Kramer,lori87@arroyo.com,2020-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1086.2,Bronze,1 +9189,Joyce Diaz,ericharris@bond.com,2020-08-18,"{""language"": ""EN"", ""currency"": ""EUR""}",4587.66,Bronze,0 +9190,Cynthia Mckinney,sherry92@barnes.com,2023-04-14,"{""language"": ""DE"", ""currency"": ""MXN""}",651.26,Bronze,1 +9191,Charles Garrison,jorgeesparza@silva.biz,2022-01-22,"{""language"": ""ES"", ""currency"": ""USD""}",3474.83,Gold,1 +9192,Christopher Riley,bradleyleon@martin.info,2021-09-18,"{""language"": ""IT"", ""currency"": ""EUR""}",9288.48,Bronze,0 +9193,Kathleen Espinoza,brookskimberly@yahoo.com,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8265.64,Silver,1 +9194,Earl Stevenson,angelastevens@hotmail.com,2021-02-23,"{""language"": ""IT"", ""currency"": ""GBP""}",1100.84,Silver,0 +9195,James Davis,wandawilliams@mendez-elliott.com,2020-01-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8417.27,Bronze,1 +9196,Jason French,shawn09@mejia.com,2023-09-07,"{""language"": ""ES"", ""currency"": ""USD""}",4467.58,Gold,1 +9197,Pamela Brooks,cruiz@gmail.com,2022-05-27,"{""language"": ""DE"", ""currency"": ""MXN""}",5790.01,Silver,0 +9198,Terry Juarez,asuarez@rose-reese.biz,2023-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9104.86,Bronze,1 +9199,Kenneth Rodriguez,glandry@gmail.com,2021-04-25,"{""language"": ""DE"", ""currency"": ""MXN""}",8681.95,Bronze,0 +9200,Patrick Murphy,crystal14@powell.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""USD""}",3896.31,Gold,0 +9201,Ronald Green,kevin40@gmail.com,2021-04-15,"{""language"": ""EN"", ""currency"": ""CAD""}",8000.44,Silver,1 +9202,Christopher Morrison,aaron91@hotmail.com,2024-11-02,"{""language"": ""IT"", ""currency"": ""EUR""}",929.07,Gold,1 +9203,Priscilla Graves,santhony@hotmail.com,2024-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6062.02,Bronze,1 +9204,Gene Merritt,armstrongcharles@gmail.com,2023-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4007.51,Silver,0 +9205,Dakota Haney,amalone@gmail.com,2020-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",9169.68,Gold,0 +9206,Stephanie Cortez,patricia71@gmail.com,2022-01-13,"{""language"": ""ES"", ""currency"": ""MXN""}",2516.7,Silver,0 +9207,Gail Myers,mckinneygregory@gmail.com,2021-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2453.66,Bronze,1 +9208,Ethan Jones,stantonernest@smith.net,2020-07-19,"{""language"": ""DE"", ""currency"": ""GBP""}",1948.1,Gold,1 +9209,Kimberly Cox,brian19@hotmail.com,2023-04-29,"{""language"": ""ES"", ""currency"": ""EUR""}",6349.59,Bronze,0 +9210,Mary Klein,andreabell@malone.biz,2024-02-09,"{""language"": ""EN"", ""currency"": ""GBP""}",2500.55,Gold,1 +9211,Leslie Mcgee,cassandra31@gmail.com,2022-04-30,"{""language"": ""DE"", ""currency"": ""GBP""}",3339.95,Gold,1 +9212,Linda Short,robertrivera@yahoo.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2832.18,Gold,0 +9213,Jonathan Miller,jessicawong@haynes.info,2022-06-20,"{""language"": ""ES"", ""currency"": ""MXN""}",1937.19,Gold,1 +9214,Lance Ramirez,ppoole@gmail.com,2022-07-29,"{""language"": ""DE"", ""currency"": ""GBP""}",2791.86,Silver,1 +9215,Kathy Jones,johnsonstephen@conner.com,2024-01-08,"{""language"": ""FR"", ""currency"": ""EUR""}",1306.91,Gold,1 +9216,Antonio Rowland,thomas62@yahoo.com,2021-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",5623.88,Gold,1 +9217,Edgar Turner,chicks@walker.com,2023-08-17,"{""language"": ""DE"", ""currency"": ""GBP""}",2767.71,Gold,0 +9218,Rachel Harvey,spencemichael@yahoo.com,2020-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",9038.2,Gold,1 +9219,Tammy Smith,danielmcdonald@berry-cruz.com,2022-01-26,"{""language"": ""FR"", ""currency"": ""MXN""}",3093.44,Silver,1 +9220,Margaret Palmer,lowens@hotmail.com,2024-08-13,"{""language"": ""FR"", ""currency"": ""GBP""}",5466.43,Gold,1 +9221,William Lewis,sharon34@gmail.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",5325.18,Bronze,0 +9222,Lindsay Freeman,shannon35@yahoo.com,2022-04-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6319.37,Bronze,1 +9223,William Holloway,tamara48@jackson.com,2023-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",1833.26,Bronze,1 +9224,Mario Williams,ebeard@bryan.biz,2021-01-29,"{""language"": ""DE"", ""currency"": ""MXN""}",4169.77,Bronze,0 +9225,James Carter,grantdavid@riggs.com,2024-11-27,"{""language"": ""ES"", ""currency"": ""CAD""}",6468.03,Gold,0 +9226,John Wilkins,andrea75@palmer.biz,2021-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",368.57,Bronze,0 +9227,Justin Wilson,charlesrichard@moore-huffman.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7288.27,Bronze,1 +9228,Mr. Michael Pittman,ihood@lopez.biz,2022-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",7689.14,Gold,1 +9229,Beverly Johnson,sfranco@smith-arnold.com,2021-06-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1442.81,Gold,1 +9230,David Jones,woodmelissa@yahoo.com,2022-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",9247.49,Bronze,0 +9231,Thomas Ochoa,kpearson@gmail.com,2022-03-14,"{""language"": ""IT"", ""currency"": ""MXN""}",8449.46,Gold,0 +9232,James Gonzalez,fblevins@nelson.com,2021-06-10,"{""language"": ""EN"", ""currency"": ""MXN""}",1723.22,Bronze,1 +9233,Sarah Rios,sanchezmitchell@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",961.57,Gold,0 +9234,Frank Jensen,gonzalesmichael@gmail.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",5262.79,Gold,0 +9235,Jennifer Singh,justin94@hotmail.com,2024-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",446.71,Gold,1 +9236,Jennifer Salas,watsonjennifer@buckley.com,2023-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",8653.74,Gold,1 +9237,Carlos Rodriguez,bensonjoseph@kennedy.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5155.85,Gold,0 +9238,Kyle Woods,elizabeth71@hotmail.com,2022-12-20,"{""language"": ""EN"", ""currency"": ""CAD""}",1994.67,Silver,1 +9239,Shannon Perez,qallen@kaufman.biz,2024-10-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3975.14,Bronze,0 +9240,Mr. Keith Fowler,larrysullivan@alexander.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""MXN""}",7922.64,Gold,0 +9241,Dustin Rivera,tvaldez@yahoo.com,2022-04-02,"{""language"": ""FR"", ""currency"": ""CAD""}",1943.1,Bronze,0 +9242,Rebekah Hahn,garciajeffrey@harrison-rodriguez.com,2021-01-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9291.74,Silver,1 +9243,Cynthia Long,egaines@hotmail.com,2023-06-16,"{""language"": ""FR"", ""currency"": ""GBP""}",279.01,Gold,1 +9244,Jose Leach,xthompson@marquez.com,2023-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",1905.49,Silver,0 +9245,Tony Kennedy,tmurphy@hotmail.com,2022-07-27,"{""language"": ""ES"", ""currency"": ""USD""}",3234.71,Silver,0 +9246,David Thomas,jeremy02@gmail.com,2020-02-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9342.12,Gold,1 +9247,Joshua Powers,gutierrezfrank@day-williams.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""EUR""}",3073.24,Bronze,1 +9248,David Neal,pbradley@hotmail.com,2020-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8678.37,Bronze,1 +9249,Carrie Hanson,whuang@hall-willis.com,2023-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",164.02,Gold,1 +9250,Tonya Johnston,wcampbell@hotmail.com,2021-07-23,"{""language"": ""FR"", ""currency"": ""CAD""}",7197.83,Gold,0 +9251,Christopher Brown,travis36@bailey.com,2021-08-22,"{""language"": ""IT"", ""currency"": ""USD""}",4508.02,Bronze,0 +9252,Joshua Murray,xjimenez@shaffer.com,2023-10-26,"{""language"": ""ES"", ""currency"": ""MXN""}",9024.54,Gold,1 +9253,Tracy Potter,blakekristen@washington-lee.com,2020-06-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9044.86,Silver,1 +9254,John Mclean,mercadojoshua@scott.net,2020-01-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8990.98,Gold,0 +9255,Gregory Thomas,jfreeman@yahoo.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3521.17,Silver,1 +9256,Billy Macias,cdavis@hotmail.com,2022-08-18,"{""language"": ""ES"", ""currency"": ""USD""}",7450.48,Silver,0 +9257,Donald Porter,crosssarah@leach.biz,2020-05-26,"{""language"": ""FR"", ""currency"": ""EUR""}",7795.87,Silver,0 +9258,Jennifer Smith,carlarobinson@gmail.com,2024-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",2794.63,Silver,0 +9259,Morgan Curry,shawn84@newton.com,2022-07-21,"{""language"": ""FR"", ""currency"": ""USD""}",459.43,Gold,1 +9260,Ryan Allen,aguilarcrystal@gmail.com,2024-09-15,"{""language"": ""EN"", ""currency"": ""USD""}",6868.3,Silver,0 +9261,Carol Rangel,brightbrittney@yahoo.com,2020-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",3855.51,Gold,1 +9262,Mark Cruz,bjohnson@gmail.com,2022-06-15,"{""language"": ""ES"", ""currency"": ""MXN""}",7368.88,Silver,1 +9263,Valerie Harrington,brownlaura@yahoo.com,2022-01-13,"{""language"": ""ES"", ""currency"": ""USD""}",275.61,Bronze,0 +9264,Christina Phillips,kathleenmatthews@hodge.biz,2021-03-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6217.05,Silver,0 +9265,Barbara Garcia,jonathangregory@hill.com,2021-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4954.85,Bronze,0 +9266,Daniel Morton,erica31@perkins.com,2020-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",8633.92,Bronze,0 +9267,Michael Irwin,susan98@nguyen-villanueva.com,2024-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",947.93,Bronze,1 +9268,Heather Bennett,colleen16@edwards-adams.org,2023-11-22,"{""language"": ""IT"", ""currency"": ""EUR""}",7442.18,Bronze,0 +9269,Patricia Vargas,sarahle@yahoo.com,2022-06-10,"{""language"": ""ES"", ""currency"": ""CAD""}",5899.64,Bronze,1 +9270,Matthew Thompson,andresmith@martin-allen.biz,2022-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",9869.06,Gold,0 +9271,Colleen Contreras,kendra40@gibson-chen.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""CAD""}",3951.23,Silver,1 +9272,Frances Thomas,stewartstephen@white-lambert.com,2023-01-03,"{""language"": ""IT"", ""currency"": ""USD""}",6803.51,Gold,0 +9273,Andrew Price,joanne30@hotmail.com,2022-08-28,"{""language"": ""DE"", ""currency"": ""MXN""}",4809.24,Gold,1 +9274,Taylor Williams,roymoore@yahoo.com,2022-03-28,"{""language"": ""FR"", ""currency"": ""MXN""}",9586.16,Silver,1 +9275,Brandon Morgan,lesliecarey@hotmail.com,2020-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3822.13,Silver,0 +9276,Kenneth Robinson,vbarnett@gmail.com,2024-09-05,"{""language"": ""ES"", ""currency"": ""MXN""}",2132.37,Gold,1 +9277,Tanya Nelson,douglaswebb@yahoo.com,2020-08-05,"{""language"": ""EN"", ""currency"": ""MXN""}",236.47,Bronze,1 +9278,Kathy Morris,pollardcrystal@gmail.com,2022-04-12,"{""language"": ""FR"", ""currency"": ""EUR""}",2251.82,Bronze,0 +9279,Anthony Gonzales,glassnatalie@fuller-cohen.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""EUR""}",5987.71,Gold,1 +9280,John Rogers,ublackburn@jones.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""EUR""}",8413.46,Gold,1 +9281,Paul Taylor,sstuart@hotmail.com,2023-06-27,"{""language"": ""ES"", ""currency"": ""USD""}",1205.59,Silver,1 +9282,Timothy Neal,hopkinskelly@hotmail.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7979.11,Silver,1 +9283,Jeffrey Miller,vbarr@hernandez.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8417.76,Silver,1 +9284,Christian Montoya,kschroeder@gmail.com,2022-08-03,"{""language"": ""DE"", ""currency"": ""MXN""}",1359.53,Gold,0 +9285,Danielle Baird,ubrown@gmail.com,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9590.32,Gold,0 +9286,Emily James,rasmussentara@mason-garcia.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""USD""}",5054.6,Silver,0 +9287,Tyler Roth,debra99@turner.biz,2020-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",1304.43,Gold,1 +9288,Christopher Adams,sandovalcassandra@woodward.com,2021-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",3319.44,Silver,0 +9289,Bradley King,crodriguez@gallagher.com,2020-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",5840.64,Gold,1 +9290,Jonathan Harris,barbara22@tucker.com,2020-04-15,"{""language"": ""EN"", ""currency"": ""USD""}",4299.88,Bronze,0 +9291,Deborah Ward,kellysteven@gmail.com,2021-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7947.25,Silver,0 +9292,Sarah Gilbert,gonzalesyvette@hotmail.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9647.51,Bronze,0 +9293,Christopher Matthews,kristin48@smith.com,2021-05-12,"{""language"": ""EN"", ""currency"": ""EUR""}",2749.57,Gold,0 +9294,Danielle Wilson,hendersonmichelle@cuevas.biz,2021-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5263.76,Gold,1 +9295,Randall Ellis,davidwalters@jackson-bass.com,2023-08-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1719.29,Gold,0 +9296,Ian Vance,lindarangel@hotmail.com,2020-12-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5231.16,Bronze,1 +9297,Jackson Obrien,stephanieschultz@hotmail.com,2019-12-15,"{""language"": ""DE"", ""currency"": ""CAD""}",3131.42,Silver,0 +9298,Donald Mccoy,xmorris@hotmail.com,2021-01-07,"{""language"": ""FR"", ""currency"": ""GBP""}",5224.48,Gold,1 +9299,Laura Mora,morrissteven@martinez.com,2021-05-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5932.92,Gold,0 +9300,James Ryan,williamsonnicole@abbott.com,2022-11-19,"{""language"": ""ES"", ""currency"": ""USD""}",6978.36,Bronze,0 +9301,Kathleen Young,pgonzalez@yahoo.com,2020-08-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3322.38,Silver,0 +9302,Scott Waters,moraleschristopher@hotmail.com,2023-01-24,"{""language"": ""DE"", ""currency"": ""MXN""}",8311.57,Bronze,1 +9303,Christina Sparks,ericwade@gmail.com,2023-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",942.22,Bronze,0 +9304,Eric Kline,pwatts@hotmail.com,2021-06-04,"{""language"": ""DE"", ""currency"": ""EUR""}",5176.68,Bronze,1 +9305,Susan Patel,heather55@yahoo.com,2021-05-12,"{""language"": ""ES"", ""currency"": ""EUR""}",6155.48,Bronze,1 +9306,Adam Tyler,blackwellrobin@walls.biz,2024-02-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7657.29,Gold,0 +9307,Beth Preston,emilymiller@carter.net,2022-04-10,"{""language"": ""ES"", ""currency"": ""CAD""}",6835.7,Bronze,1 +9308,Terri Long,stricklandsamantha@faulkner-jones.com,2021-08-22,"{""language"": ""FR"", ""currency"": ""USD""}",3439.49,Gold,1 +9309,Christopher Rodriguez,sandra64@hotmail.com,2024-04-05,"{""language"": ""FR"", ""currency"": ""USD""}",2482.02,Bronze,1 +9310,Alejandro Stein,ccalderon@hotmail.com,2023-12-31,"{""language"": ""ES"", ""currency"": ""EUR""}",1806.17,Bronze,1 +9311,Sharon Vega,bowmanamanda@yahoo.com,2020-01-25,"{""language"": ""IT"", ""currency"": ""CAD""}",8926.46,Bronze,1 +9312,Anthony Fuller,alexis91@hotmail.com,2023-04-04,"{""language"": ""DE"", ""currency"": ""EUR""}",6729.02,Silver,0 +9313,Angela Taylor,julianavarro@gmail.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6131.11,Gold,0 +9314,Stephanie Edwards,ypayne@perkins.com,2022-07-24,"{""language"": ""FR"", ""currency"": ""EUR""}",6826.65,Gold,0 +9315,Christian Morris,james28@yahoo.com,2020-12-29,"{""language"": ""EN"", ""currency"": ""GBP""}",1359.62,Gold,1 +9316,Lindsey Lin,shearebecca@stone.biz,2022-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",9319.14,Gold,1 +9317,Erin Warren,kaufmanbrandon@hahn.com,2023-02-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4761.28,Bronze,1 +9318,Elizabeth Haley,rwheeler@yahoo.com,2022-11-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3910.73,Gold,0 +9319,David Martinez,bjones@gmail.com,2022-12-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1537.53,Bronze,0 +9320,Caitlin Jimenez,randolphtimothy@graves-stanley.net,2023-08-26,"{""language"": ""IT"", ""currency"": ""MXN""}",9809.98,Silver,0 +9321,Valerie Carter,kirbynicholas@robinson.com,2020-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",7271.72,Gold,1 +9322,Keith Miller,ashlee10@santana.com,2024-10-04,"{""language"": ""IT"", ""currency"": ""GBP""}",7038.43,Silver,0 +9323,Spencer Ramirez,barbara31@harris.com,2023-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",7208.82,Silver,1 +9324,Lisa Cruz,meagan18@wright-adams.com,2022-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6725.66,Bronze,0 +9325,Adriana Walker,ricky68@yahoo.com,2023-10-11,"{""language"": ""EN"", ""currency"": ""CAD""}",4683.3,Silver,0 +9326,Carol Malone,ericahaney@frye-rollins.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5270.07,Bronze,0 +9327,Amber Bruce,ann78@lambert-davidson.com,2023-08-08,"{""language"": ""EN"", ""currency"": ""EUR""}",5807.02,Gold,0 +9328,Sandra Sloan,achang@armstrong.com,2022-07-22,"{""language"": ""DE"", ""currency"": ""MXN""}",9838.39,Gold,0 +9329,Marisa Maddox,yjones@rodriguez.com,2022-01-15,"{""language"": ""FR"", ""currency"": ""USD""}",7788.61,Gold,1 +9330,Angela Bass,grice@reid.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""GBP""}",2096.57,Silver,0 +9331,Robert Holmes,ocoleman@mason-oneill.com,2021-05-11,"{""language"": ""IT"", ""currency"": ""USD""}",495.67,Gold,1 +9332,Erika Cardenas,rmoore@hotmail.com,2021-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4565.75,Gold,0 +9333,David Rodriguez,hdavis@wilson-welch.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2112.72,Gold,1 +9334,Kathleen Smith MD,april46@yahoo.com,2023-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",5763.01,Bronze,1 +9335,Jason Hicks,vhoward@gmail.com,2021-10-02,"{""language"": ""IT"", ""currency"": ""CAD""}",6088.92,Bronze,1 +9336,John Williams,jeremycochran@hill.com,2021-08-19,"{""language"": ""IT"", ""currency"": ""GBP""}",5188.91,Gold,0 +9337,Virginia Smith,thomas03@wilson.com,2021-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",193.43,Silver,0 +9338,Sharon Hanna,thomaswilson@hotmail.com,2023-05-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5916.16,Gold,0 +9339,Matthew Blackburn,lisa35@clarke-burton.com,2020-04-06,"{""language"": ""EN"", ""currency"": ""USD""}",4049.74,Gold,0 +9340,Samantha Cummings,georgecheryl@whitaker-green.com,2021-08-25,"{""language"": ""ES"", ""currency"": ""USD""}",7260.27,Bronze,0 +9341,Abigail Taylor,jhill@gmail.com,2021-11-16,"{""language"": ""ES"", ""currency"": ""MXN""}",9560.33,Bronze,1 +9342,Loretta Chavez,leealyssa@lewis.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9988.1,Gold,0 +9343,Jennifer Smith,william28@kidd.com,2024-12-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8166.16,Silver,1 +9344,Stephanie Simon MD,danielthompson@moore.info,2021-04-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7706.29,Silver,1 +9345,Karen Castro,joemarshall@hotmail.com,2022-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",363.87,Gold,1 +9346,Sean Berry,williamsalicia@cox.com,2023-08-25,"{""language"": ""ES"", ""currency"": ""CAD""}",3181.73,Gold,0 +9347,Andrew Lawson,dwilson@yahoo.com,2022-01-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6774.08,Silver,1 +9348,Evelyn Rush,chenderson@hotmail.com,2023-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",3058.1,Bronze,1 +9349,Jennifer Franco,cameron24@yahoo.com,2019-12-30,"{""language"": ""FR"", ""currency"": ""MXN""}",591.04,Bronze,0 +9350,Todd Soto,kathyjacobs@tran.com,2020-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7711.28,Bronze,1 +9351,Mrs. Jessica Eaton,robinmcclain@yahoo.com,2021-05-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9348.48,Gold,1 +9352,Donald Hubbard,fwillis@gmail.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",5945.57,Silver,0 +9353,Bob Smith,lloydbrandy@gmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""MXN""}",8370.46,Bronze,1 +9354,Lisa Bennett,victoriaperez@gmail.com,2020-07-08,"{""language"": ""EN"", ""currency"": ""MXN""}",3290.8,Silver,1 +9355,Jerry Cardenas,tkelly@sims.com,2023-04-22,"{""language"": ""IT"", ""currency"": ""GBP""}",5681.79,Silver,0 +9356,Sergio King,johnrowland@gmail.com,2021-10-29,"{""language"": ""IT"", ""currency"": ""USD""}",3061.58,Silver,1 +9357,Barry Hill,carla52@morton-warren.org,2021-05-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6392.63,Bronze,0 +9358,Megan Gardner,adamsbrian@dougherty.com,2020-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",5560.84,Silver,0 +9359,Teresa Wolfe,julie50@gmail.com,2023-05-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8818.73,Bronze,1 +9360,Joshua Barnes,matthewcohen@hotmail.com,2020-12-09,"{""language"": ""FR"", ""currency"": ""GBP""}",1004.81,Silver,1 +9361,Cassie Smith,johnshah@baker-escobar.org,2020-12-03,"{""language"": ""FR"", ""currency"": ""EUR""}",4589.37,Gold,1 +9362,Jessica Sanchez,jack80@horn-lawrence.com,2023-09-18,"{""language"": ""ES"", ""currency"": ""GBP""}",7460.05,Silver,0 +9363,Clayton Estrada,ruizdavid@garcia.org,2022-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",3659.38,Gold,1 +9364,Daniel Gomez,frenchheather@yahoo.com,2021-10-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8145.57,Bronze,0 +9365,Stephanie Jimenez,igallagher@gould.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5973.02,Bronze,0 +9366,Amanda Lyons,brooke56@gmail.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4678.33,Silver,1 +9367,Patrick Potts,pking@yahoo.com,2021-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",3487.15,Silver,0 +9368,Richard Ayers,justinlopez@stanley.net,2023-10-15,"{""language"": ""IT"", ""currency"": ""EUR""}",3812.41,Silver,0 +9369,Curtis Lyons,leslieellis@adams-henderson.info,2024-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2781.54,Gold,1 +9370,Amy Gilbert,pburke@gmail.com,2021-05-04,"{""language"": ""EN"", ""currency"": ""CAD""}",3551.91,Bronze,0 +9371,Todd Armstrong,hlopez@gmail.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""USD""}",4446.54,Gold,0 +9372,Jonathan Hartman,baileykara@gmail.com,2022-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5795.11,Silver,0 +9373,Monica Ward,bairdbrandon@goodman.biz,2024-03-16,"{""language"": ""DE"", ""currency"": ""GBP""}",9269.18,Silver,1 +9374,Roger Schwartz,nbrown@yahoo.com,2020-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",3585.13,Bronze,0 +9375,Tiffany Anderson,jbarrett@yahoo.com,2020-09-19,"{""language"": ""ES"", ""currency"": ""USD""}",7118.58,Bronze,1 +9376,Chelsea Valdez,nharris@gmail.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8015.47,Silver,0 +9377,Christian Drake,davischristian@jordan.com,2020-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",880.51,Bronze,0 +9378,Ryan Burke,kimberlyfitzgerald@hernandez.com,2024-11-10,"{""language"": ""FR"", ""currency"": ""CAD""}",1675.38,Gold,0 +9379,Ashlee James,kimberlymays@yahoo.com,2024-01-20,"{""language"": ""FR"", ""currency"": ""MXN""}",7279.38,Gold,1 +9380,Tammy Gonzalez,desiree31@collins.net,2022-02-12,"{""language"": ""EN"", ""currency"": ""EUR""}",2699.77,Bronze,0 +9381,Tanya Edwards,edwardsandrew@herrera.com,2020-11-07,"{""language"": ""IT"", ""currency"": ""GBP""}",7912.28,Gold,0 +9382,Cindy Jones,saratucker@ellis-fletcher.info,2020-06-19,"{""language"": ""EN"", ""currency"": ""USD""}",2128.73,Gold,1 +9383,Catherine Daniels,upeterson@chase.biz,2024-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",4193.12,Gold,1 +9384,Amanda Oliver,hillrebecca@gmail.com,2024-06-06,"{""language"": ""IT"", ""currency"": ""CAD""}",9835.66,Silver,0 +9385,Caleb Everett,xwalker@pope-howell.org,2021-10-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9254.41,Silver,1 +9386,Jennifer Rodriguez,brandtbrian@yahoo.com,2023-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4038.36,Silver,1 +9387,Brian Hernandez,davidbaker@yahoo.com,2022-07-27,"{""language"": ""DE"", ""currency"": ""GBP""}",5960.64,Bronze,0 +9388,Justin Tucker,teresa60@mejia.com,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9572.27,Bronze,0 +9389,Jonathan Butler,stephanie45@gmail.com,2020-07-24,"{""language"": ""ES"", ""currency"": ""USD""}",6258.05,Bronze,1 +9390,Stacy Hicks,stephenskaitlyn@hotmail.com,2024-11-22,"{""language"": ""IT"", ""currency"": ""GBP""}",1579.77,Silver,0 +9391,Jack Butler,qcook@rivera-brown.biz,2021-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",6977.36,Bronze,0 +9392,Shannon Pierce,tammy76@frost-estrada.org,2020-04-09,"{""language"": ""DE"", ""currency"": ""MXN""}",8374.65,Gold,0 +9393,Hannah Cole,qbrennan@hotmail.com,2020-05-28,"{""language"": ""EN"", ""currency"": ""EUR""}",60.82,Silver,1 +9394,Mr. David Walton,tamaracooley@gmail.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",7461.47,Silver,1 +9395,Michael Santiago,stacy93@yahoo.com,2024-01-01,"{""language"": ""DE"", ""currency"": ""USD""}",7058.59,Bronze,0 +9396,Douglas Johnson,youngmiranda@wallace.com,2021-07-02,"{""language"": ""DE"", ""currency"": ""USD""}",5493.71,Bronze,0 +9397,Steven Ramirez,vaughnjulian@hotmail.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6855.6,Bronze,0 +9398,Amy Bennett,tdavidson@calhoun-bowman.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",2792.59,Silver,0 +9399,Brian Frazier,jacqueline92@reynolds.biz,2020-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",3595.97,Silver,1 +9400,Joshua Cox,cookkatherine@gregory.biz,2021-07-27,"{""language"": ""EN"", ""currency"": ""USD""}",7617.77,Bronze,0 +9401,Ryan Holt,brose@griffin.com,2020-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",3383.89,Gold,0 +9402,Olivia Rojas,michael59@fitzgerald.com,2023-04-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8771.62,Gold,0 +9403,Mackenzie Miranda,marshallscott@gmail.com,2021-10-14,"{""language"": ""DE"", ""currency"": ""EUR""}",1343.88,Bronze,1 +9404,Timothy Baker,bdaniels@roberts.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",9020.65,Gold,1 +9405,Brandon Williams,carloscardenas@houston-stephenson.com,2024-11-18,"{""language"": ""IT"", ""currency"": ""CAD""}",691.61,Bronze,0 +9406,Amy Duncan,hmcdonald@craig-doyle.net,2024-08-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9928.95,Bronze,1 +9407,Dr. Kathleen Christian MD,gflores@yahoo.com,2020-04-14,"{""language"": ""ES"", ""currency"": ""GBP""}",6223.78,Gold,0 +9408,Eric Thomas,whouston@yahoo.com,2021-12-14,"{""language"": ""IT"", ""currency"": ""GBP""}",3550.45,Gold,0 +9409,Kelly Palmer,bishopmelissa@burke.com,2021-04-30,"{""language"": ""ES"", ""currency"": ""CAD""}",5665.48,Gold,0 +9410,Todd Lopez,cheryl96@hotmail.com,2022-10-25,"{""language"": ""ES"", ""currency"": ""EUR""}",2624.91,Gold,1 +9411,Tara Parker,velasquezdaniel@smith.org,2022-07-18,"{""language"": ""FR"", ""currency"": ""MXN""}",7655.38,Gold,0 +9412,Donald Miller,plewis@livingston-welch.com,2024-02-27,"{""language"": ""ES"", ""currency"": ""MXN""}",5586.63,Gold,0 +9413,Alan York,stephenmercer@yahoo.com,2021-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",439.92,Gold,1 +9414,Julie Hoffman,jessicahenry@yahoo.com,2023-05-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5838.08,Gold,0 +9415,Traci Scott MD,bchung@mendoza.com,2020-02-08,"{""language"": ""EN"", ""currency"": ""CAD""}",293.32,Bronze,1 +9416,Phillip Gibson,elizabeth58@hotmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""USD""}",9221.73,Gold,1 +9417,Samantha Fletcher,hking@gmail.com,2020-01-10,"{""language"": ""FR"", ""currency"": ""EUR""}",9215.16,Silver,1 +9418,William Summers,debbie23@haynes.com,2020-09-12,"{""language"": ""EN"", ""currency"": ""USD""}",1545.85,Silver,0 +9419,Kenneth Hartman,johnjordan@hotmail.com,2024-04-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5606.8,Silver,1 +9420,Megan Esparza,hstevens@phillips.org,2022-04-27,"{""language"": ""DE"", ""currency"": ""EUR""}",5243.87,Silver,1 +9421,Melissa Mckee,jdaniels@keith.biz,2024-05-22,"{""language"": ""FR"", ""currency"": ""EUR""}",980.73,Gold,0 +9422,Edward Morales,dbailey@ford.biz,2021-10-12,"{""language"": ""DE"", ""currency"": ""GBP""}",1395.09,Gold,0 +9423,Jennifer Collins,stephanie46@rich-henson.com,2022-12-03,"{""language"": ""FR"", ""currency"": ""MXN""}",3674.32,Bronze,0 +9424,Christopher Ramirez,randall81@frazier.org,2023-11-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7239.1,Gold,1 +9425,Marie Smith,megan69@yahoo.com,2020-01-22,"{""language"": ""IT"", ""currency"": ""USD""}",1430.41,Silver,0 +9426,Rodney Craig,jameswise@hodge.com,2024-05-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1513.13,Bronze,1 +9427,David Lewis,hlewis@gmail.com,2021-08-13,"{""language"": ""EN"", ""currency"": ""GBP""}",1243.79,Silver,0 +9428,Michael Ortega,zgarrett@hotmail.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2276.59,Gold,1 +9429,Bradley Montgomery,smithcesar@lee.org,2023-05-24,"{""language"": ""FR"", ""currency"": ""MXN""}",6518.32,Silver,0 +9430,Jeffery Bell,hbryant@rodriguez-middleton.org,2022-11-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9986.81,Silver,0 +9431,Taylor Rush,amy30@gmail.com,2021-12-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4866.23,Silver,1 +9432,Elizabeth Hudson,hernandezshannon@jensen.com,2021-10-10,"{""language"": ""FR"", ""currency"": ""USD""}",7894.48,Gold,0 +9433,Martin Nelson,patrickalexandra@hotmail.com,2024-05-01,"{""language"": ""FR"", ""currency"": ""CAD""}",7293.02,Gold,0 +9434,Larry Olson,williamsdarren@gmail.com,2022-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",277.83,Gold,0 +9435,Grace Barron,mark14@miller.net,2024-04-18,"{""language"": ""IT"", ""currency"": ""GBP""}",2323.97,Bronze,0 +9436,Pamela Hatfield,russellbenjamin@garner.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6729.61,Bronze,0 +9437,Katrina Carlson,kbryant@archer.com,2021-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",4125.53,Gold,1 +9438,Mr. Jeffrey Orozco,nielsencody@bennett-stewart.biz,2023-09-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3029.31,Bronze,0 +9439,Robin Hogan,ycoleman@gmail.com,2021-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",4462.66,Gold,0 +9440,Andrew Meyer MD,edward25@rios.com,2022-01-25,"{""language"": ""FR"", ""currency"": ""GBP""}",3997.28,Bronze,1 +9441,Nicholas Lowe,lopezdebra@craig.com,2024-02-07,"{""language"": ""FR"", ""currency"": ""MXN""}",6263.65,Silver,1 +9442,Hannah Riddle,zachary00@torres.biz,2020-07-26,"{""language"": ""IT"", ""currency"": ""GBP""}",8192.02,Gold,0 +9443,Haley Joseph,brettingram@hotmail.com,2023-05-29,"{""language"": ""ES"", ""currency"": ""GBP""}",7154.27,Silver,1 +9444,Claudia Kaufman,bfleming@yahoo.com,2021-08-25,"{""language"": ""IT"", ""currency"": ""MXN""}",8724.41,Silver,1 +9445,Michelle Price,rholland@hotmail.com,2023-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",4025.3,Silver,0 +9446,Randy Jordan,jamieellis@hotmail.com,2024-06-13,"{""language"": ""DE"", ""currency"": ""USD""}",5811.03,Silver,0 +9447,Alexis Mcpherson,nbrown@hotmail.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""MXN""}",6511.48,Silver,0 +9448,Brent Ramirez,joel33@gmail.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",8225.87,Bronze,0 +9449,Wesley Stevens,kpeters@thompson.info,2022-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1610.47,Gold,0 +9450,Anthony Lee,christophersummers@yahoo.com,2020-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",8296.03,Gold,1 +9451,Nathaniel Quinn,ewilliams@rodriguez.com,2023-10-07,"{""language"": ""IT"", ""currency"": ""GBP""}",8377.81,Bronze,1 +9452,Samantha Villa,ambermathews@johnson.com,2023-02-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5152.46,Silver,1 +9453,Kenneth Perry,davidharrison@carter-park.net,2024-02-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6563.17,Bronze,1 +9454,William Gray,murphypaul@yahoo.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7055.54,Silver,1 +9455,Richard Charles,joseph84@hotmail.com,2021-10-20,"{""language"": ""EN"", ""currency"": ""MXN""}",3782.59,Gold,1 +9456,Jacob Chapman,meyerdawn@shaw.net,2023-11-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1036.36,Silver,0 +9457,Dana Greene,cynthia07@bennett.org,2021-08-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5612.77,Bronze,1 +9458,Tyler Keller,cassandra09@matthews-long.info,2022-05-20,"{""language"": ""FR"", ""currency"": ""USD""}",7299.63,Silver,0 +9459,Kathleen Mccann,djohnson@yahoo.com,2022-09-25,"{""language"": ""EN"", ""currency"": ""CAD""}",6026.43,Gold,0 +9460,Ashley Morales,dking@hotmail.com,2020-07-17,"{""language"": ""DE"", ""currency"": ""EUR""}",4099.86,Silver,1 +9461,Keith Hampton,victoria50@gmail.com,2021-04-27,"{""language"": ""DE"", ""currency"": ""USD""}",9597.9,Gold,1 +9462,Tara Morales,sean18@brown.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""GBP""}",8408.48,Gold,0 +9463,Kristen Roman,julietravis@turner.com,2022-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",6313.69,Bronze,0 +9464,Raymond Wilson,owenkatherine@gmail.com,2020-03-01,"{""language"": ""IT"", ""currency"": ""USD""}",6505.06,Gold,1 +9465,Robert Garcia,tony51@beard.com,2024-08-05,"{""language"": ""IT"", ""currency"": ""EUR""}",7971.6,Gold,1 +9466,Tracy Cook,qthomas@miller-fisher.org,2020-12-18,"{""language"": ""ES"", ""currency"": ""MXN""}",837.27,Silver,0 +9467,Kelsey Larson,jessica58@wolfe.net,2021-04-09,"{""language"": ""IT"", ""currency"": ""EUR""}",6803.39,Silver,1 +9468,Andrea Lambert,piercejohn@jones.com,2021-04-27,"{""language"": ""IT"", ""currency"": ""GBP""}",3250.12,Gold,0 +9469,Geoffrey Rodgers,nicholas01@yahoo.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3131.36,Gold,0 +9470,Vanessa Haney,perezamy@phillips.com,2021-08-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2508.98,Gold,0 +9471,Teresa Rodriguez,michaelwallace@white-mueller.org,2021-04-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2721.6,Bronze,1 +9472,James Terry,butlerjose@yahoo.com,2022-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",1078.31,Bronze,0 +9473,Richard Jackson,chad77@hotmail.com,2024-08-14,"{""language"": ""FR"", ""currency"": ""MXN""}",7833.5,Bronze,1 +9474,Amy Turner,kyle73@yahoo.com,2020-05-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7588.58,Gold,1 +9475,Cameron Hunter,ehunt@hotmail.com,2023-05-20,"{""language"": ""FR"", ""currency"": ""CAD""}",4707.72,Gold,1 +9476,Frank Boyer,caroline55@harris-taylor.org,2023-05-17,"{""language"": ""ES"", ""currency"": ""MXN""}",6088.63,Silver,0 +9477,Cindy Cole,kimberlymartinez@gmail.com,2021-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",5758.28,Gold,0 +9478,Miguel Webb,yolanda18@gmail.com,2020-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",9084.69,Bronze,1 +9479,James Garcia,archerdebbie@spencer-martin.com,2020-02-16,"{""language"": ""FR"", ""currency"": ""USD""}",6673.42,Silver,1 +9480,Allen Goodman,erinjones@quinn.info,2021-06-28,"{""language"": ""DE"", ""currency"": ""CAD""}",8419.56,Silver,0 +9481,Leslie King,jkeller@vargas.com,2022-08-29,"{""language"": ""ES"", ""currency"": ""EUR""}",118.2,Gold,0 +9482,Stanley Santana,schaefernorma@gmail.com,2020-09-24,"{""language"": ""ES"", ""currency"": ""USD""}",5606.7,Bronze,0 +9483,Samuel Barker,anovak@hotmail.com,2024-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",2860.45,Gold,0 +9484,Brenda Brown,anthony76@gmail.com,2020-09-08,"{""language"": ""IT"", ""currency"": ""EUR""}",2186.48,Bronze,1 +9485,Travis Browning,lauren90@bryant.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",762.93,Gold,1 +9486,Brandon Carlson,bjackson@gmail.com,2021-02-24,"{""language"": ""ES"", ""currency"": ""MXN""}",1461.7,Gold,1 +9487,Matthew Contreras,ariel61@gmail.com,2024-04-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6888.73,Gold,0 +9488,Thomas Dorsey,stevenfisher@gmail.com,2020-08-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4181.55,Silver,1 +9489,Laura Gonzalez,donaldmorrison@anderson.com,2023-05-30,"{""language"": ""IT"", ""currency"": ""CAD""}",7887.79,Gold,1 +9490,Jim Mejia,ethanschroeder@gmail.com,2024-07-17,"{""language"": ""ES"", ""currency"": ""USD""}",5380.64,Bronze,1 +9491,Nathan Padilla,amy46@hotmail.com,2023-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",762.58,Bronze,0 +9492,James Edwards,gbrown@wilson.com,2022-04-07,"{""language"": ""ES"", ""currency"": ""USD""}",5770.89,Bronze,1 +9493,Bradley Simmons,lramirez@hotmail.com,2020-04-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9079.02,Silver,1 +9494,Anna Burns,crawforddillon@thompson.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",7615.55,Bronze,0 +9495,Denise Benson,mary86@yahoo.com,2020-11-04,"{""language"": ""EN"", ""currency"": ""CAD""}",488.45,Silver,1 +9496,Katherine Rich,stevensanna@yahoo.com,2024-04-25,"{""language"": ""EN"", ""currency"": ""MXN""}",4567.67,Silver,0 +9497,Samuel Thompson,millerlauren@jenkins.org,2020-12-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8178.78,Silver,0 +9498,Jennifer Kelly,hoffmanjoshua@boyd.com,2022-02-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5553.7,Gold,0 +9499,Maria Johnson,georgelatoya@hotmail.com,2022-03-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9245.05,Silver,0 +9500,Danielle Robinson,michael92@yahoo.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7086.33,Bronze,1 +9501,Claire Thomas,cookkelly@brooks.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1136.12,Gold,0 +9502,Keith White,rachelpayne@hughes.org,2021-04-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3071.52,Gold,0 +9503,Victor Young,nancy26@yahoo.com,2021-01-09,"{""language"": ""IT"", ""currency"": ""CAD""}",5705.87,Bronze,0 +9504,Todd Rodriguez,josephpaula@hotmail.com,2023-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8270.51,Gold,0 +9505,Cynthia Mullins,hillfrancis@parsons.com,2021-07-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9685.86,Silver,0 +9506,Kenneth Smith,monica29@randall.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""EUR""}",5753.24,Silver,1 +9507,Mary Aguilar,lrose@yahoo.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""GBP""}",2071.45,Silver,0 +9508,Dr. Jill Castillo,michellecarter@hotmail.com,2022-08-16,"{""language"": ""FR"", ""currency"": ""MXN""}",7919.67,Gold,0 +9509,Steven Miller,ryannelson@gmail.com,2024-07-16,"{""language"": ""IT"", ""currency"": ""USD""}",9830.68,Gold,1 +9510,Kelly Reyes,mary67@yahoo.com,2024-11-20,"{""language"": ""FR"", ""currency"": ""MXN""}",3183.49,Silver,0 +9511,Amanda Flores,pshields@hotmail.com,2023-03-01,"{""language"": ""DE"", ""currency"": ""EUR""}",4488.42,Bronze,0 +9512,Shelley Scott,davidmarquez@gmail.com,2019-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",5880.49,Gold,1 +9513,Tina Jacobson,qeaton@chang.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""GBP""}",5865.93,Gold,0 +9514,Sarah Evans,barnesmelissa@bradley-solis.com,2022-09-19,"{""language"": ""EN"", ""currency"": ""GBP""}",4956.64,Silver,1 +9515,Sarah Torres DDS,bergerclayton@yahoo.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7058.46,Gold,0 +9516,Melissa Smith,yujason@yahoo.com,2021-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",9463.11,Bronze,0 +9517,Mr. Eric Crosby,sherridyer@lopez.com,2024-04-08,"{""language"": ""FR"", ""currency"": ""GBP""}",8649.5,Bronze,0 +9518,Spencer Ramsey,sandersclaudia@hotmail.com,2024-08-18,"{""language"": ""DE"", ""currency"": ""USD""}",7195.72,Bronze,1 +9519,Toni Robinson,michelle52@gmail.com,2021-10-15,"{""language"": ""IT"", ""currency"": ""CAD""}",5751.39,Silver,1 +9520,Crystal Carter,kroberts@thomas-mitchell.com,2020-06-10,"{""language"": ""EN"", ""currency"": ""GBP""}",9718.62,Gold,0 +9521,Sherry Hawkins,salinastina@elliott.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2988.28,Gold,1 +9522,Tara Sparks,melissa87@johnson.net,2022-04-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3385.11,Gold,0 +9523,Shane Parks MD,millerjames@powell.info,2020-12-05,"{""language"": ""DE"", ""currency"": ""MXN""}",7797.41,Silver,0 +9524,Maria Fleming,alexanderjessica@jackson-taylor.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7089.88,Gold,0 +9525,Todd Cabrera,ltaylor@gmail.com,2021-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",5151.05,Silver,0 +9526,Jennifer Mason,michele62@boyer.info,2023-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1548.49,Bronze,1 +9527,Bruce Kelly,blairmary@yahoo.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",600.04,Silver,1 +9528,Dr. Marc Moore Jr.,martinezbenjamin@gonzalez.biz,2024-03-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4816.81,Bronze,1 +9529,Robert Hernandez,sullivanmonica@hotmail.com,2021-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4997.23,Gold,0 +9530,Jeffrey Alvarez,sydney34@hotmail.com,2023-05-05,"{""language"": ""EN"", ""currency"": ""EUR""}",1482.26,Gold,0 +9531,Trevor Hogan,oliviadavis@wong.com,2024-06-23,"{""language"": ""EN"", ""currency"": ""USD""}",2014.27,Gold,0 +9532,Barbara Terry,erodriguez@walker.org,2020-11-25,"{""language"": ""ES"", ""currency"": ""GBP""}",7672.64,Bronze,1 +9533,Anthony Velez,christopher89@yahoo.com,2023-10-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2477.1,Gold,0 +9534,Edward Smith,twilkinson@lindsey-warren.net,2020-07-01,"{""language"": ""IT"", ""currency"": ""MXN""}",1367.74,Gold,1 +9535,Connor Clarke,parkstina@yahoo.com,2024-09-26,"{""language"": ""DE"", ""currency"": ""GBP""}",4443.88,Silver,0 +9536,Michael Ortega,joe92@hotmail.com,2024-02-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8950.96,Bronze,0 +9537,Jennifer Gay,pmiller@hotmail.com,2021-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3078.26,Silver,0 +9538,Elizabeth Pitts,simpsonolivia@gmail.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""MXN""}",3101.76,Silver,1 +9539,Rebecca Woods,mckenzierichards@gmail.com,2024-08-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4015.6,Gold,0 +9540,Lisa Owens,kristie83@sanchez-wheeler.biz,2021-06-14,"{""language"": ""EN"", ""currency"": ""MXN""}",1334.22,Gold,1 +9541,Pamela Holmes,mgraves@pierce.net,2024-06-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3501.66,Bronze,1 +9542,Paul Acevedo,gmartinez@lee.biz,2024-03-23,"{""language"": ""IT"", ""currency"": ""USD""}",8991.03,Silver,0 +9543,Sara Richardson,erica88@mitchell.com,2022-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",9347.01,Gold,1 +9544,Ronald Ferguson,torresbrian@yahoo.com,2024-09-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6814.1,Bronze,1 +9545,Alicia Bryant,edwardsmelanie@gmail.com,2022-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",8106.29,Silver,0 +9546,Michelle Santos,riveradiane@gmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",4831.36,Bronze,0 +9547,Edward Hunt,elizabeth41@bender.biz,2023-04-21,"{""language"": ""EN"", ""currency"": ""MXN""}",3901.25,Gold,1 +9548,Gary Diaz,daniel82@yahoo.com,2023-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",936.35,Gold,0 +9549,Chelsea Davis,benjamin79@hotmail.com,2024-09-24,"{""language"": ""IT"", ""currency"": ""MXN""}",8254.13,Silver,1 +9550,Melissa Lawrence,ssantiago@hotmail.com,2020-03-20,"{""language"": ""IT"", ""currency"": ""CAD""}",2739.1,Gold,0 +9551,Zachary Harrell,bauermichael@scott-sanchez.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6260.49,Silver,1 +9552,Rebecca Salas,alexandrasims@gmail.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9564.99,Silver,1 +9553,Heidi Hughes DDS,regina86@hotmail.com,2024-06-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9259.34,Silver,0 +9554,Brianna Robinson,jonestroy@francis.com,2024-06-02,"{""language"": ""ES"", ""currency"": ""CAD""}",8804.71,Bronze,0 +9555,Jamie Smith,warejanice@richardson.com,2022-11-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6668.86,Silver,0 +9556,Kimberly Dawson,higginsalexandra@yahoo.com,2020-05-31,"{""language"": ""FR"", ""currency"": ""EUR""}",115.44,Gold,1 +9557,Latoya Lopez,johnsonjennifer@gmail.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""EUR""}",8784.44,Bronze,0 +9558,Derrick Goodwin,james12@weber.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",5153.4,Gold,1 +9559,Cody Bishop,michelle72@yahoo.com,2024-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",4116.38,Silver,0 +9560,Elizabeth Hill,btaylor@hunter.biz,2022-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",8187.02,Bronze,0 +9561,Andrew Burnett,brenda64@yahoo.com,2023-05-11,"{""language"": ""DE"", ""currency"": ""MXN""}",8294.82,Bronze,0 +9562,Andrea Byrd,eparks@perkins.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",2887.5,Bronze,0 +9563,Ashley Russell,vwatson@morgan-bowen.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4103.32,Silver,1 +9564,Beth Nelson,maldonadosuzanne@garcia.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6459.21,Silver,0 +9565,Amanda Harvey,josephjohnson@gmail.com,2022-12-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7472.18,Gold,0 +9566,Tina Walters,brobles@davis.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",8757.67,Gold,1 +9567,Michelle Chavez,thompsondavid@landry-warner.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7246.97,Gold,1 +9568,Jacob Logan,paularoman@hotmail.com,2024-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",7413.27,Bronze,0 +9569,April Becker,adam51@gmail.com,2022-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",2582.68,Bronze,0 +9570,Shawn Johns,rogerstammy@hotmail.com,2023-12-13,"{""language"": ""ES"", ""currency"": ""CAD""}",5730.21,Silver,0 +9571,Matthew Gay,juliaschmitt@yahoo.com,2021-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",7564.84,Bronze,1 +9572,Cameron Parker,scasey@clark.com,2023-05-31,"{""language"": ""FR"", ""currency"": ""CAD""}",9067.68,Silver,0 +9573,James Hatfield,patrick56@hotmail.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6107.91,Silver,0 +9574,Charles Nichols,hernandezjustin@marquez-smith.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1001.54,Bronze,0 +9575,Brian Wyatt,roymorris@gilbert-hicks.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""GBP""}",3403.31,Bronze,0 +9576,Priscilla Pope,mcdanielkevin@gmail.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""CAD""}",8282.46,Gold,1 +9577,Jasmine Mcmahon,paigesullivan@hernandez.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""USD""}",719.45,Bronze,1 +9578,Mark Nunez,savagejim@levy-perkins.biz,2021-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",7035.98,Gold,1 +9579,Shirley Anderson,erosario@cruz-ali.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""EUR""}",4768.69,Bronze,1 +9580,Jon Scott,stephanie14@gmail.com,2024-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",1936.13,Gold,0 +9581,John Foley,theresa75@meza-harrington.com,2023-06-10,"{""language"": ""EN"", ""currency"": ""USD""}",3264.45,Silver,1 +9582,Nicholas Jones,alexandertaylor@king.com,2023-01-01,"{""language"": ""EN"", ""currency"": ""GBP""}",161.88,Bronze,1 +9583,Tony Bryant,hallbryan@yahoo.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""EUR""}",5467.82,Gold,0 +9584,Amanda Kelley,jason51@gonzalez.com,2023-02-18,"{""language"": ""FR"", ""currency"": ""MXN""}",9088.54,Gold,0 +9585,Mrs. Terri Moore,maddenrobyn@hotmail.com,2022-10-08,"{""language"": ""ES"", ""currency"": ""EUR""}",9125.34,Bronze,0 +9586,Alexis Fernandez,gilmorejohn@gmail.com,2024-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2509.7,Bronze,0 +9587,Dana Alexander,matthew24@hotmail.com,2020-10-10,"{""language"": ""FR"", ""currency"": ""GBP""}",7087.27,Silver,1 +9588,Gregory Lawrence,margaret38@villanueva.biz,2021-07-23,"{""language"": ""ES"", ""currency"": ""USD""}",7753.92,Silver,1 +9589,Deborah Benton,umeyer@bennett.com,2021-03-03,"{""language"": ""EN"", ""currency"": ""EUR""}",6964.42,Bronze,0 +9590,Wanda Mendoza,jeffreygibson@smith-lee.com,2023-01-09,"{""language"": ""IT"", ""currency"": ""MXN""}",2663.69,Bronze,0 +9591,Michelle Hughes,plopez@hanna.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",2171.55,Bronze,1 +9592,Devin White,martinezbrendan@lawrence.com,2023-12-30,"{""language"": ""FR"", ""currency"": ""GBP""}",8419.27,Gold,0 +9593,Megan Vargas,kevinmiddleton@hotmail.com,2023-01-31,"{""language"": ""IT"", ""currency"": ""USD""}",8880.02,Silver,1 +9594,Miranda Nichols,christine30@yates-ramirez.com,2022-06-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4975.82,Gold,1 +9595,Paula Martinez,jimmywolf@hodges.com,2024-01-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2815.82,Silver,0 +9596,Brittany Wood,milleranthony@yahoo.com,2023-07-06,"{""language"": ""FR"", ""currency"": ""MXN""}",9696.76,Bronze,1 +9597,Bobby Bailey,joseph82@jackson.com,2022-06-11,"{""language"": ""DE"", ""currency"": ""EUR""}",1040.69,Silver,0 +9598,Barbara Dalton,cheyennehenderson@mills-solis.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",4085.79,Gold,1 +9599,Aaron King DDS,jeffreygomez@barker.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""GBP""}",2896.62,Bronze,0 +9600,Cameron Mcgee,douglasallison@wolfe.info,2023-09-25,"{""language"": ""ES"", ""currency"": ""GBP""}",9883.59,Bronze,0 +9601,Brian Henderson,gregorymiller@smith.com,2022-12-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8683.95,Silver,1 +9602,Lori Cherry,mparker@sanchez.biz,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",8508.98,Bronze,0 +9603,Molly Mitchell,sarah47@gmail.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""GBP""}",7211.95,Silver,1 +9604,Julia Cole,scottbrittney@gmail.com,2023-10-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9549.91,Gold,0 +9605,Brenda Trujillo,colliersergio@kennedy.com,2022-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4289.89,Silver,1 +9606,Sierra Carter,stephen23@hotmail.com,2024-02-10,"{""language"": ""FR"", ""currency"": ""GBP""}",9583.42,Bronze,1 +9607,Tina Price,erichenry@gmail.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""USD""}",7122.53,Gold,0 +9608,Katelyn Baker,victorbeck@yahoo.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""USD""}",4381.39,Gold,0 +9609,Christine Cox,jesse57@turner.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5936.95,Bronze,0 +9610,Robert Ray DDS,williamsdana@gmail.com,2024-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",3742.37,Silver,1 +9611,Robert Espinoza,matthew65@hotmail.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5971.83,Bronze,1 +9612,Lisa Russell,christine81@hotmail.com,2021-07-02,"{""language"": ""IT"", ""currency"": ""EUR""}",8636.26,Gold,1 +9613,Casey Peterson,mgreen@hotmail.com,2020-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",9797.72,Silver,1 +9614,Diana Martin,brianhernandez@miller.com,2024-12-02,"{""language"": ""DE"", ""currency"": ""EUR""}",3655.98,Bronze,0 +9615,Karen Taylor,vincent21@hotmail.com,2021-12-13,"{""language"": ""DE"", ""currency"": ""CAD""}",701.97,Bronze,1 +9616,Elizabeth Singleton,cynthia70@yahoo.com,2021-02-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3772.85,Bronze,0 +9617,Darlene Jones,johnsonstephanie@yahoo.com,2022-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",5389.61,Silver,1 +9618,Robert Miranda,adam84@hotmail.com,2022-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",8974.14,Gold,1 +9619,Patrick Perkins,pstephens@hotmail.com,2022-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3896.77,Gold,1 +9620,Tabitha Case,oroman@harris.org,2020-11-26,"{""language"": ""IT"", ""currency"": ""GBP""}",2783.12,Silver,0 +9621,Tara Williams,kingtiffany@potter.biz,2022-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5658.89,Gold,1 +9622,Edward Tran,zjones@yahoo.com,2024-06-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9053.68,Silver,0 +9623,John Flynn,hollymendoza@jackson.com,2022-02-16,"{""language"": ""ES"", ""currency"": ""GBP""}",5260.92,Gold,1 +9624,James Perez,lisa03@vang.net,2020-05-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5691.54,Bronze,0 +9625,Ashley King,istewart@hotmail.com,2021-04-20,"{""language"": ""ES"", ""currency"": ""GBP""}",4696.05,Bronze,0 +9626,Don Lowe,anthony12@gmail.com,2024-07-28,"{""language"": ""DE"", ""currency"": ""USD""}",1413.23,Silver,1 +9627,Mark Burns,cthomas@thomas.com,2024-10-20,"{""language"": ""ES"", ""currency"": ""USD""}",4904.53,Silver,1 +9628,Julie English,anthony64@yahoo.com,2022-07-02,"{""language"": ""DE"", ""currency"": ""EUR""}",431.04,Bronze,1 +9629,Nicholas Rhodes,tsmith@hotmail.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",5895.86,Bronze,1 +9630,Amanda Palmer,kimberlysmith@smith.biz,2023-04-25,"{""language"": ""ES"", ""currency"": ""EUR""}",5990.68,Silver,0 +9631,Scott Garrison,ajones@hayes.com,2021-12-13,"{""language"": ""EN"", ""currency"": ""USD""}",8609.71,Bronze,0 +9632,Bryan Mcbride,lisa93@burns-king.com,2022-04-26,"{""language"": ""EN"", ""currency"": ""USD""}",7804.3,Gold,1 +9633,Carlos Hines,lreid@wright.biz,2024-07-29,"{""language"": ""FR"", ""currency"": ""GBP""}",721.04,Gold,1 +9634,Scott Archer,ggibson@yahoo.com,2024-10-12,"{""language"": ""FR"", ""currency"": ""MXN""}",4978.14,Silver,0 +9635,Jacqueline Miller,lori07@allison.com,2022-09-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1075.7,Bronze,1 +9636,Roberto Wang,nicholasgonzalez@brown-bowers.com,2022-08-12,"{""language"": ""FR"", ""currency"": ""CAD""}",6342.35,Gold,1 +9637,Teresa Leonard,lindapineda@perry.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7450.06,Silver,0 +9638,Steven Allen,williamsjennifer@johnston-savage.info,2020-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",9063.06,Silver,0 +9639,Adam Hunt,garciakevin@shepherd.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3749.58,Bronze,1 +9640,Tracey Allen,thomasroberts@hotmail.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8632.62,Silver,1 +9641,Tiffany Pham,jonathanskinner@walters.biz,2020-01-19,"{""language"": ""IT"", ""currency"": ""GBP""}",3870.91,Gold,1 +9642,Jesus Acosta,patricklawson@gilbert.com,2021-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",1537.81,Bronze,0 +9643,Nancy Anderson,tpowell@hotmail.com,2024-07-14,"{""language"": ""ES"", ""currency"": ""USD""}",5538.05,Silver,0 +9644,Julia Brown,warderic@munoz-edwards.com,2023-02-13,"{""language"": ""EN"", ""currency"": ""GBP""}",706.7,Bronze,1 +9645,Michelle Stewart,wellscharles@gmail.com,2023-01-24,"{""language"": ""FR"", ""currency"": ""MXN""}",2760.68,Silver,0 +9646,Valerie Pennington,anthony97@levine.com,2020-03-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9011.81,Gold,1 +9647,Doris Delgado,katherine11@hogan.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",4339.12,Gold,1 +9648,Lisa Clark,knightmark@yahoo.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",2136.85,Bronze,1 +9649,Jessica Hayes PhD,jennifer28@yahoo.com,2024-08-15,"{""language"": ""IT"", ""currency"": ""CAD""}",8988.61,Gold,1 +9650,Michael Jones,samuel56@gmail.com,2021-09-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5200.95,Gold,1 +9651,Nicholas Myers,deborah10@hotmail.com,2021-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",8374.67,Bronze,1 +9652,Tara Knapp,muellersean@mccarty.info,2021-12-15,"{""language"": ""EN"", ""currency"": ""GBP""}",7357.53,Bronze,1 +9653,Sean Morrow,pricemark@yahoo.com,2024-10-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4252.0,Bronze,1 +9654,Nicholas Ford,iscott@yahoo.com,2022-04-03,"{""language"": ""IT"", ""currency"": ""GBP""}",1426.63,Gold,1 +9655,Dr. Cory Turner,ramirezashley@yahoo.com,2021-12-06,"{""language"": ""FR"", ""currency"": ""EUR""}",4237.25,Gold,0 +9656,Cheryl Tyler,gdean@nelson-ross.com,2020-03-03,"{""language"": ""EN"", ""currency"": ""USD""}",5912.17,Gold,0 +9657,Bryan Vasquez,tmyers@hotmail.com,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",3729.47,Silver,0 +9658,Duane Willis,jordan19@yahoo.com,2024-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2445.12,Gold,0 +9659,Anthony Kelly,jordanjoseph@richard.info,2023-10-12,"{""language"": ""EN"", ""currency"": ""MXN""}",9372.97,Bronze,1 +9660,Lydia Edwards,robertclark@hotmail.com,2021-11-27,"{""language"": ""IT"", ""currency"": ""CAD""}",793.38,Gold,1 +9661,Victoria Gray,gmartinez@rodriguez-white.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""CAD""}",2715.11,Bronze,0 +9662,James Ware,nmaxwell@hotmail.com,2024-06-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5093.08,Silver,1 +9663,Gary Mccoy,robin22@hotmail.com,2021-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",9491.37,Gold,0 +9664,Tina Gordon,mduran@freeman.com,2021-06-07,"{""language"": ""DE"", ""currency"": ""USD""}",4175.23,Gold,0 +9665,Kristin Wilson,mathew89@lara-peterson.net,2021-01-27,"{""language"": ""ES"", ""currency"": ""GBP""}",1946.6,Gold,0 +9666,Christine Noble,robertjackson@hotmail.com,2022-04-15,"{""language"": ""DE"", ""currency"": ""MXN""}",455.85,Silver,0 +9667,Nicole Perry,sherry41@gmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",4272.38,Silver,0 +9668,Whitney Joseph,stephaniemiles@hotmail.com,2023-10-02,"{""language"": ""EN"", ""currency"": ""MXN""}",2583.38,Gold,0 +9669,Thomas Jennings,chansen@thomas-bates.info,2021-03-06,"{""language"": ""EN"", ""currency"": ""MXN""}",9267.04,Bronze,1 +9670,Julie Ingram,julie28@yahoo.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",3854.12,Silver,0 +9671,Willie Benjamin,stacy18@hotmail.com,2024-10-25,"{""language"": ""EN"", ""currency"": ""GBP""}",7520.47,Silver,1 +9672,Shelly Hill,vjohnson@yahoo.com,2023-01-02,"{""language"": ""EN"", ""currency"": ""GBP""}",5105.14,Silver,1 +9673,Marcus Baird,patrick62@yahoo.com,2021-03-26,"{""language"": ""EN"", ""currency"": ""MXN""}",7172.04,Silver,0 +9674,Christina Fisher,hfox@gmail.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",530.7,Silver,1 +9675,Felicia Murray,lopezjuan@hotmail.com,2024-07-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7782.81,Silver,0 +9676,Anthony Brown,vargasalexander@yahoo.com,2024-08-10,"{""language"": ""FR"", ""currency"": ""USD""}",2109.05,Silver,0 +9677,Brian Perry,handerson@hotmail.com,2024-02-26,"{""language"": ""EN"", ""currency"": ""GBP""}",3212.43,Silver,1 +9678,Kevin Reed,patricia47@gmail.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7012.92,Gold,0 +9679,Matthew White DVM,gallaghermark@sexton.com,2023-01-18,"{""language"": ""EN"", ""currency"": ""GBP""}",8211.02,Silver,1 +9680,Anna Russell,hollyterry@gillespie-callahan.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""USD""}",3573.23,Silver,1 +9681,Teresa Terry,allen16@moore-lewis.com,2022-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9139.15,Bronze,1 +9682,Rhonda Davis,jcox@yahoo.com,2022-12-10,"{""language"": ""EN"", ""currency"": ""MXN""}",2297.6,Bronze,1 +9683,Steven Melendez,rsmith@castillo.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4702.99,Gold,0 +9684,Jennifer Pearson,eduardo50@eaton-simmons.com,2020-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7255.78,Gold,0 +9685,Joan Munoz,wyattsara@elliott-garcia.com,2020-09-17,"{""language"": ""IT"", ""currency"": ""USD""}",6579.51,Bronze,0 +9686,Christine Campbell,iadkins@gmail.com,2020-07-03,"{""language"": ""ES"", ""currency"": ""EUR""}",576.8,Bronze,1 +9687,Bryan Barron,aaronellis@hotmail.com,2022-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",82.77,Bronze,0 +9688,Gerald Daniels,jeffrey43@hotmail.com,2024-07-16,"{""language"": ""IT"", ""currency"": ""GBP""}",2640.78,Gold,1 +9689,Robert Flores,patricia43@yahoo.com,2024-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",2266.98,Silver,1 +9690,Rebecca Young,sandra64@hotmail.com,2021-07-18,"{""language"": ""EN"", ""currency"": ""USD""}",2006.07,Bronze,1 +9691,Donna Doyle,lozanochristian@gmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5679.6,Gold,0 +9692,Jason Salinas,luke48@mcgee-jackson.com,2020-03-21,"{""language"": ""IT"", ""currency"": ""EUR""}",4379.25,Silver,1 +9693,Rachel Hernandez,sgilbert@brown.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",2185.88,Gold,1 +9694,Andrea Hayes,scott19@hotmail.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5724.24,Silver,0 +9695,Toni Romero,halejerry@murphy.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9208.01,Gold,1 +9696,Emily Mendoza,klinechristopher@elliott.com,2022-01-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2797.37,Bronze,0 +9697,April Avila,cavery@steele-trujillo.com,2021-05-13,"{""language"": ""DE"", ""currency"": ""MXN""}",6657.9,Silver,0 +9698,Dennis West,fryealicia@bond.biz,2020-09-28,"{""language"": ""DE"", ""currency"": ""USD""}",7784.99,Bronze,1 +9699,Andrew Duncan,maxwell57@green.com,2020-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",6696.93,Silver,1 +9700,Elizabeth Hart DVM,lstanley@hotmail.com,2022-05-05,"{""language"": ""IT"", ""currency"": ""MXN""}",8890.08,Silver,0 +9701,James Owens,sotobrandon@flowers-willis.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2117.27,Silver,0 +9702,Richard Mills,edward55@powell.org,2021-05-03,"{""language"": ""IT"", ""currency"": ""USD""}",6040.21,Gold,1 +9703,Craig Foley,john51@grimes.org,2023-02-23,"{""language"": ""FR"", ""currency"": ""USD""}",6693.36,Bronze,1 +9704,Ashley Martin,ryanburnett@smith-white.com,2020-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5558.3,Silver,0 +9705,Elizabeth Hardy,jameshernandez@yahoo.com,2022-03-31,"{""language"": ""DE"", ""currency"": ""EUR""}",415.9,Silver,1 +9706,Joseph Ramirez,fmartin@beasley.com,2024-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",4798.45,Gold,0 +9707,Patricia Parsons,stanleytina@gmail.com,2024-12-08,"{""language"": ""IT"", ""currency"": ""EUR""}",728.11,Gold,0 +9708,Jennifer Walls,larsonmary@gordon.com,2022-08-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8000.79,Silver,0 +9709,Lauren Lawson,fernandezsandra@hotmail.com,2022-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",4635.11,Gold,1 +9710,Jessica Davis,lball@rivera.com,2024-08-08,"{""language"": ""ES"", ""currency"": ""MXN""}",116.88,Silver,0 +9711,Adam Cline,john41@solis.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""EUR""}",761.23,Silver,0 +9712,Kevin Rios,dwall@gmail.com,2024-06-03,"{""language"": ""EN"", ""currency"": ""USD""}",7362.91,Bronze,0 +9713,Andrew Todd,vpatrick@gmail.com,2020-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8760.12,Silver,0 +9714,Nicole Hansen,mathewseric@nichols.biz,2020-02-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2907.62,Bronze,0 +9715,Donald Snyder,james51@lee.com,2024-01-14,"{""language"": ""ES"", ""currency"": ""GBP""}",7808.29,Silver,0 +9716,Michael Lee,bakernicole@martin.info,2021-01-26,"{""language"": ""DE"", ""currency"": ""GBP""}",8348.7,Gold,0 +9717,Seth Lopez,adavis@hotmail.com,2021-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",2489.98,Gold,1 +9718,Michelle Acosta,robert73@gmail.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3323.36,Bronze,1 +9719,Melissa Johnson,tammy37@hernandez-stephens.com,2022-03-27,"{""language"": ""EN"", ""currency"": ""USD""}",9597.64,Gold,1 +9720,Teresa Johnson,steve98@ward-spencer.net,2024-11-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6193.61,Gold,0 +9721,Steven Carlson,corey14@gmail.com,2020-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",3848.79,Silver,1 +9722,Scott Liu,mbolton@mclean.net,2021-02-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2960.5,Silver,1 +9723,Jessica Wiley,kimberly58@gmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",9653.8,Bronze,0 +9724,Nancy Liu,joshuamedina@cox.com,2022-04-22,"{""language"": ""ES"", ""currency"": ""USD""}",1764.11,Silver,1 +9725,Tammy Gill,longdustin@gmail.com,2020-08-23,"{""language"": ""EN"", ""currency"": ""MXN""}",1760.49,Gold,1 +9726,Ryan Ruiz,zcoleman@gmail.com,2019-12-16,"{""language"": ""ES"", ""currency"": ""MXN""}",5710.13,Silver,0 +9727,Jason Johnson,samanthawilliams@johnson.com,2024-09-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6803.72,Silver,1 +9728,Veronica Wilson,jason32@yahoo.com,2024-10-01,"{""language"": ""EN"", ""currency"": ""MXN""}",2567.68,Silver,1 +9729,Tracy Harrington,johnsonlisa@guerrero-williams.com,2020-08-28,"{""language"": ""IT"", ""currency"": ""USD""}",2367.45,Silver,0 +9730,Dr. Nathan Neal Jr.,devinwilson@anderson.net,2020-07-27,"{""language"": ""DE"", ""currency"": ""CAD""}",1269.31,Bronze,0 +9731,Elizabeth Lee,romerostephen@yahoo.com,2020-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",833.4,Silver,0 +9732,Ann Spencer,watsonnicole@yahoo.com,2023-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8247.17,Gold,1 +9733,Kelly Mccall,hphillips@yahoo.com,2022-08-16,"{""language"": ""ES"", ""currency"": ""USD""}",1205.09,Bronze,0 +9734,Diana Harmon,baileymerritt@cardenas.net,2022-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",3446.88,Gold,0 +9735,Christine Clark,mullinssue@yahoo.com,2021-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5549.81,Gold,0 +9736,Paul Taylor,rbrown@hotmail.com,2020-04-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2109.85,Bronze,0 +9737,Douglas Carlson,erika63@hotmail.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9243.84,Bronze,1 +9738,Madeline English,ferrellmaria@gmail.com,2020-12-06,"{""language"": ""FR"", ""currency"": ""USD""}",8190.58,Gold,0 +9739,Larry Bridges,ihensley@williams-larson.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",8056.55,Silver,1 +9740,Amy Morales,pknox@gmail.com,2024-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",2038.09,Silver,0 +9741,Andrew Dunn,heatherfuentes@gmail.com,2021-11-10,"{""language"": ""DE"", ""currency"": ""GBP""}",6694.65,Silver,0 +9742,Jennifer Pitts,sandra70@yahoo.com,2021-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",2351.99,Silver,0 +9743,David White,elizabeth85@yahoo.com,2023-09-10,"{""language"": ""FR"", ""currency"": ""GBP""}",4590.5,Bronze,1 +9744,Mike Figueroa DDS,youngdanny@ramos-holland.info,2021-02-26,"{""language"": ""ES"", ""currency"": ""CAD""}",2156.03,Gold,0 +9745,Barry Potts,sylvia67@gmail.com,2020-12-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1610.7,Bronze,1 +9746,Tiffany Henderson,nguyenwilliam@yahoo.com,2022-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",6018.03,Gold,1 +9747,Lisa Reynolds,stevenlewis@perez.com,2021-11-16,"{""language"": ""FR"", ""currency"": ""EUR""}",5209.93,Silver,0 +9748,David Salinas,krivera@yahoo.com,2024-09-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7147.28,Bronze,0 +9749,Gerald Ramos,zrivers@jackson.com,2024-04-28,"{""language"": ""FR"", ""currency"": ""USD""}",8526.64,Bronze,0 +9750,Hailey Ross,ibarraaustin@hotmail.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5826.59,Bronze,1 +9751,Chelsea Williams,sharonbaker@gmail.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",2391.04,Silver,0 +9752,Elizabeth Brown,emorris@hopkins.com,2021-05-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1634.5,Bronze,1 +9753,David Johnson,crossmichelle@gill-allen.com,2020-07-07,"{""language"": ""ES"", ""currency"": ""USD""}",1602.74,Gold,0 +9754,Jacob Crosby,brandonkane@cowan.com,2021-06-02,"{""language"": ""DE"", ""currency"": ""CAD""}",6543.35,Silver,0 +9755,Mark Warren,moniquebruce@gmail.com,2020-08-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2508.6,Silver,1 +9756,Jessica Montgomery,evansmatthew@gmail.com,2023-04-20,"{""language"": ""ES"", ""currency"": ""USD""}",7391.21,Silver,1 +9757,Becky Gibson,rebekah94@smith.com,2020-06-21,"{""language"": ""DE"", ""currency"": ""USD""}",1722.77,Silver,0 +9758,Nancy Jones PhD,marycruz@gmail.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""USD""}",6079.11,Gold,1 +9759,Kimberly Perry,hillcurtis@craig.net,2022-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7958.53,Silver,1 +9760,Maria Sosa,moorejesse@gmail.com,2023-10-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2881.38,Bronze,1 +9761,Micheal Chavez,bnewman@herring.info,2021-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",3177.06,Silver,1 +9762,Benjamin Miller,courtneyacosta@yahoo.com,2021-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",4584.53,Bronze,1 +9763,Breanna Wallace,fnorman@hotmail.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1481.99,Silver,0 +9764,Kristy Young,jonathanmckinney@edwards-mcclain.com,2021-09-14,"{""language"": ""ES"", ""currency"": ""EUR""}",2312.57,Gold,0 +9765,Pamela Huerta,robin59@bennett.com,2022-01-03,"{""language"": ""EN"", ""currency"": ""GBP""}",8078.35,Gold,1 +9766,Holly Miller,philipstevens@hotmail.com,2022-07-01,"{""language"": ""DE"", ""currency"": ""CAD""}",1993.53,Gold,0 +9767,Christopher Freeman,mjones@hernandez.com,2023-07-18,"{""language"": ""FR"", ""currency"": ""GBP""}",7647.83,Bronze,0 +9768,Justin Jones,grusso@jones-thomas.com,2023-07-26,"{""language"": ""EN"", ""currency"": ""CAD""}",2128.71,Silver,0 +9769,Joshua Roy,kevinmcdaniel@yahoo.com,2024-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",5122.06,Gold,1 +9770,Cristina Branch,david42@gmail.com,2020-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",7137.59,Bronze,0 +9771,Jessica Jones,opeterson@gmail.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""USD""}",3913.99,Silver,0 +9772,Briana Watson,robinharmon@yahoo.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2643.46,Silver,0 +9773,Emma Smith,julie20@alvarado.com,2024-03-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5481.12,Bronze,0 +9774,Jill Hart,jose68@curry.info,2024-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",1731.73,Gold,0 +9775,Karen Morris,melissagriffin@gmail.com,2024-03-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1826.8,Silver,1 +9776,Eric Chavez,nharris@hansen.biz,2024-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",9968.2,Silver,0 +9777,Julie Campbell,judithbates@yahoo.com,2023-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",2665.07,Gold,0 +9778,Mrs. Wendy Drake MD,eric66@hotmail.com,2024-06-17,"{""language"": ""IT"", ""currency"": ""USD""}",1691.76,Gold,1 +9779,Mitchell Underwood,danielle70@hotmail.com,2023-01-11,"{""language"": ""DE"", ""currency"": ""MXN""}",5434.27,Bronze,0 +9780,Chris Bailey,jacobbradford@hotmail.com,2023-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",2833.78,Gold,0 +9781,David Rice,hodgelee@williams.com,2020-08-06,"{""language"": ""DE"", ""currency"": ""USD""}",2671.37,Bronze,1 +9782,Kimberly Mccullough,fhernandez@sherman-reynolds.com,2020-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",7148.52,Gold,0 +9783,Taylor Adams,johngraham@hotmail.com,2021-12-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8366.92,Gold,0 +9784,Jeffrey Haas,keith44@hotmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",3965.45,Gold,0 +9785,Dawn Pruitt,ewaller@watts.com,2023-05-19,"{""language"": ""IT"", ""currency"": ""USD""}",3407.12,Gold,0 +9786,Maria Harrison,ryannelson@gmail.com,2024-09-12,"{""language"": ""EN"", ""currency"": ""MXN""}",6579.08,Gold,0 +9787,Maria Greene,craigjacobs@gmail.com,2023-01-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7576.36,Gold,1 +9788,Chelsea Baldwin,davidnash@kelley.com,2022-11-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5046.95,Bronze,1 +9789,David Richardson,bherrera@howard-payne.com,2020-08-16,"{""language"": ""DE"", ""currency"": ""USD""}",1867.4,Bronze,0 +9790,Michael Finley,terri24@hotmail.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""USD""}",7214.35,Bronze,0 +9791,Eric Oliver,wjones@yahoo.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""EUR""}",944.66,Silver,1 +9792,Angela Lamb,williamstimothy@yahoo.com,2023-07-10,"{""language"": ""EN"", ""currency"": ""USD""}",4940.74,Bronze,1 +9793,William Walter,jacob24@gmail.com,2024-03-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8860.77,Bronze,1 +9794,Angela Jensen,thomas88@hotmail.com,2020-01-19,"{""language"": ""FR"", ""currency"": ""MXN""}",2149.37,Bronze,0 +9795,Donald Pollard,anthony78@yahoo.com,2020-09-21,"{""language"": ""IT"", ""currency"": ""EUR""}",9219.39,Silver,0 +9796,Drew Henderson,allenkaren@lopez.net,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9413.04,Silver,0 +9797,Edward Morgan,srice@ruiz.org,2020-04-11,"{""language"": ""IT"", ""currency"": ""MXN""}",4525.15,Gold,1 +9798,Kathryn Bryant,deborah65@flynn.org,2020-10-29,"{""language"": ""ES"", ""currency"": ""USD""}",1782.72,Gold,0 +9799,Amy Wang,alvarezsusan@livingston.biz,2024-12-06,"{""language"": ""ES"", ""currency"": ""GBP""}",2350.32,Bronze,0 +9800,Justin Frederick,jamiejones@hopkins.com,2021-04-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3131.72,Gold,1 +9801,Anna Gay,hectoredwards@yahoo.com,2024-07-31,"{""language"": ""FR"", ""currency"": ""MXN""}",3179.66,Gold,0 +9802,Amy Freeman,karenpope@stokes.org,2022-11-10,"{""language"": ""ES"", ""currency"": ""USD""}",8585.14,Bronze,1 +9803,Sarah Hartman,dennis15@webb-frost.com,2022-11-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8677.07,Silver,0 +9804,Jessica Brown,kimberlymartinez@gonzalez.com,2021-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",1202.25,Bronze,0 +9805,Andrew Hawkins,goodrobert@frazier.com,2022-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",8876.05,Gold,0 +9806,Brad Vargas,daughertyjason@mcknight.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",9592.48,Bronze,0 +9807,Tyrone Smith,mkim@yahoo.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""CAD""}",611.46,Bronze,0 +9808,Jacob Lawson,ylarsen@parrish-harris.net,2021-05-28,"{""language"": ""EN"", ""currency"": ""GBP""}",8679.24,Gold,0 +9809,Michael Anderson,lindaharris@williams.info,2021-06-05,"{""language"": ""IT"", ""currency"": ""USD""}",7801.04,Silver,1 +9810,Sarah White DDS,ebrown@yahoo.com,2024-07-08,"{""language"": ""FR"", ""currency"": ""GBP""}",9244.16,Gold,1 +9811,Melissa Walters,natalie03@davis.biz,2020-12-12,"{""language"": ""DE"", ""currency"": ""GBP""}",7415.96,Gold,0 +9812,Alexander Griffith,alec71@peterson-henry.biz,2024-07-29,"{""language"": ""FR"", ""currency"": ""CAD""}",1042.77,Bronze,1 +9813,Thomas Houston,christianwilliams@kelly.com,2022-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5051.71,Bronze,1 +9814,Mary Hale,rkelly@price-williams.com,2023-11-12,"{""language"": ""FR"", ""currency"": ""GBP""}",350.9,Silver,1 +9815,Lee Ryan,ereyes@gmail.com,2021-10-18,"{""language"": ""IT"", ""currency"": ""GBP""}",5565.08,Silver,1 +9816,Stacy Jones,ysmith@gmail.com,2021-10-05,"{""language"": ""ES"", ""currency"": ""MXN""}",7869.87,Bronze,0 +9817,Kelsey Alvarez,ronaldrasmussen@gmail.com,2023-07-05,"{""language"": ""FR"", ""currency"": ""CAD""}",6625.7,Silver,0 +9818,Norma Cannon,goodwinpaul@gomez-ramirez.com,2019-12-25,"{""language"": ""EN"", ""currency"": ""CAD""}",6597.42,Bronze,1 +9819,Ronnie Gomez,joseparsons@acevedo.com,2020-01-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1210.41,Silver,0 +9820,Rebecca Taylor,dianebaker@hotmail.com,2022-04-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7272.91,Gold,0 +9821,Julie Garcia,courtney22@williams-valencia.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1211.15,Bronze,0 +9822,Colin Steele,boyletammy@rice-myers.com,2024-11-09,"{""language"": ""IT"", ""currency"": ""USD""}",9987.93,Bronze,0 +9823,Anthony Friedman,rlewis@espinoza-collins.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""USD""}",6439.94,Gold,1 +9824,Nicholas Walker,nacosta@hotmail.com,2021-05-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4123.68,Gold,1 +9825,Alexander Leach,hicksjose@parrish.net,2022-02-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8785.97,Gold,1 +9826,Joanne Park,davidryan@yahoo.com,2022-11-13,"{""language"": ""DE"", ""currency"": ""MXN""}",8697.35,Silver,0 +9827,Cathy Robinson,madeline31@hotmail.com,2020-07-09,"{""language"": ""EN"", ""currency"": ""USD""}",9687.15,Gold,1 +9828,Brandy Blackburn,raymondelliott@sharp.info,2024-11-12,"{""language"": ""FR"", ""currency"": ""EUR""}",779.08,Silver,0 +9829,Christina Pham,keithwilliams@tran-adams.org,2024-10-01,"{""language"": ""EN"", ""currency"": ""USD""}",5011.62,Bronze,1 +9830,Amy Ellis,allisonsullivan@hotmail.com,2023-03-19,"{""language"": ""IT"", ""currency"": ""CAD""}",302.06,Bronze,1 +9831,Lori Soto,yatesdavid@ali-herrera.org,2020-05-06,"{""language"": ""DE"", ""currency"": ""CAD""}",907.98,Bronze,1 +9832,Joshua Huff,gmcpherson@gmail.com,2024-04-27,"{""language"": ""IT"", ""currency"": ""EUR""}",3266.31,Gold,0 +9833,Ashley Mullins,david30@bennett-ramirez.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""USD""}",3978.44,Bronze,1 +9834,Anthony Hill,emilyhenderson@hotmail.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3339.04,Bronze,0 +9835,Austin Bonilla,wolfjoseph@hotmail.com,2023-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",2399.15,Silver,1 +9836,Miranda Miller,lclark@hall-hawkins.org,2020-02-21,"{""language"": ""EN"", ""currency"": ""GBP""}",5981.81,Silver,1 +9837,Robert Compton,nicole46@kirk-arnold.com,2024-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",6525.65,Silver,0 +9838,Christopher Castro,phillipsdanny@hotmail.com,2024-11-09,"{""language"": ""ES"", ""currency"": ""EUR""}",406.31,Silver,1 +9839,Nancy Jackson,frank80@roth.com,2021-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",8723.0,Bronze,0 +9840,Joseph Scott,stricklanderic@rasmussen.com,2022-09-13,"{""language"": ""FR"", ""currency"": ""EUR""}",6381.32,Bronze,0 +9841,Thomas Chandler Jr.,theodorerichardson@hotmail.com,2024-05-12,"{""language"": ""IT"", ""currency"": ""MXN""}",7321.78,Silver,0 +9842,James Sanders,clopez@hotmail.com,2021-06-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1741.26,Silver,0 +9843,Ashley Lopez,molly97@hotmail.com,2022-01-11,"{""language"": ""IT"", ""currency"": ""CAD""}",9115.19,Silver,1 +9844,Catherine Phillips,mooresherry@taylor.com,2024-03-01,"{""language"": ""IT"", ""currency"": ""EUR""}",4903.44,Gold,1 +9845,Gregory Jones,robert47@evans-miller.com,2020-11-28,"{""language"": ""DE"", ""currency"": ""EUR""}",528.46,Silver,0 +9846,Fred Morrison,johnsmith@powell.com,2022-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",3581.42,Silver,1 +9847,Amy Williams,robertsimon@gmail.com,2021-01-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6594.44,Gold,0 +9848,Maria Valdez,gramirez@gomez-dunn.net,2021-08-25,"{""language"": ""ES"", ""currency"": ""GBP""}",4765.17,Silver,1 +9849,Gabriella Oneal,davidcook@dixon.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9871.36,Gold,1 +9850,Tina Gordon,davidfisher@yahoo.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",7074.95,Bronze,0 +9851,Crystal Watson,robertallison@thornton-stephens.net,2020-01-14,"{""language"": ""ES"", ""currency"": ""USD""}",8155.42,Gold,1 +9852,Victoria Walton,jrodriguez@scott-myers.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""MXN""}",7313.04,Silver,0 +9853,Jessica Sawyer,mforbes@yahoo.com,2022-09-19,"{""language"": ""EN"", ""currency"": ""GBP""}",704.36,Bronze,0 +9854,Terri Mcbride,kward@moss.net,2021-02-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5518.74,Gold,0 +9855,Jason Gonzalez,gabrielkemp@walker-moyer.com,2021-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",7640.01,Silver,0 +9856,Bryan Rogers,evanssharon@gmail.com,2021-05-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8417.8,Bronze,1 +9857,Tiffany Lloyd,alvaradorebecca@hotmail.com,2020-11-02,"{""language"": ""FR"", ""currency"": ""GBP""}",6915.09,Bronze,0 +9858,Sandra Cardenas,wmercado@gmail.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",8786.15,Gold,1 +9859,James Roberts,andrewkelly@marks-martinez.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6160.77,Silver,1 +9860,Samantha Curry,vickicolon@shields.com,2021-02-18,"{""language"": ""FR"", ""currency"": ""USD""}",2269.35,Bronze,1 +9861,Natalie Wright,tjenkins@ball.biz,2024-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",5754.38,Gold,1 +9862,Shelly Young,james16@hotmail.com,2021-07-13,"{""language"": ""ES"", ""currency"": ""USD""}",6926.81,Silver,0 +9863,Rebecca Banks,russobrandon@yahoo.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""GBP""}",220.42,Bronze,0 +9864,Erika Levine,garzadarin@gmail.com,2020-09-03,"{""language"": ""EN"", ""currency"": ""USD""}",821.11,Bronze,0 +9865,Philip Johnson,fmills@gmail.com,2024-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",8506.19,Silver,1 +9866,Alejandra Butler,jonessheila@hotmail.com,2022-12-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5794.88,Gold,0 +9867,Erik Castillo,amber97@hotmail.com,2020-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",8717.99,Silver,1 +9868,Philip Hale,lmontgomery@valenzuela.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7640.4,Silver,0 +9869,Anthony Alexander,vjefferson@hotmail.com,2024-08-20,"{""language"": ""DE"", ""currency"": ""USD""}",4148.3,Bronze,0 +9870,Richard Smith,millermonica@winters-pitts.net,2023-12-31,"{""language"": ""FR"", ""currency"": ""GBP""}",5927.35,Silver,0 +9871,Tiffany Quinn,jasonwilliams@gmail.com,2023-09-10,"{""language"": ""EN"", ""currency"": ""USD""}",7698.13,Bronze,0 +9872,Kyle Reed,caitlyn60@yahoo.com,2024-02-09,"{""language"": ""IT"", ""currency"": ""USD""}",3234.63,Silver,0 +9873,Shaun Munoz,oscar06@garza.com,2024-08-27,"{""language"": ""DE"", ""currency"": ""USD""}",7686.42,Gold,1 +9874,Raymond Parker,barbara16@gmail.com,2021-01-09,"{""language"": ""DE"", ""currency"": ""GBP""}",5962.62,Silver,0 +9875,Michael Tucker,susan77@lewis-rogers.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6376.8,Silver,1 +9876,Raymond Nolan,stanley64@gmail.com,2020-07-21,"{""language"": ""EN"", ""currency"": ""GBP""}",5067.13,Bronze,1 +9877,Jeremy Hernandez,fpatterson@hotmail.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""CAD""}",9254.6,Gold,1 +9878,Jaime Vazquez,rrodriguez@schneider.com,2021-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",6029.98,Gold,1 +9879,James Avila,zachary50@hotmail.com,2020-03-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7450.81,Gold,1 +9880,Karen Hicks,nwest@edwards.com,2020-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",5430.41,Gold,0 +9881,Tanya Morrison,abaker@gmail.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3378.58,Gold,1 +9882,Mrs. Monica Martin,norriskyle@brown.org,2024-01-09,"{""language"": ""ES"", ""currency"": ""GBP""}",7549.33,Gold,1 +9883,Mary Armstrong,jessicawhite@yahoo.com,2022-09-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7812.09,Gold,0 +9884,Mario Green Jr.,michaelaortiz@yahoo.com,2022-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4983.01,Gold,0 +9885,Nicholas Collins,shawnamueller@hoffman.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",2353.68,Bronze,0 +9886,Douglas Douglas,carterbrandon@hotmail.com,2023-01-27,"{""language"": ""IT"", ""currency"": ""EUR""}",7792.9,Silver,1 +9887,Willie Ewing,andersonmatthew@lee.com,2023-05-19,"{""language"": ""IT"", ""currency"": ""EUR""}",9976.54,Silver,1 +9888,Stacy Espinoza MD,shawn32@ramos-hurst.info,2022-02-15,"{""language"": ""FR"", ""currency"": ""MXN""}",6785.58,Silver,0 +9889,Brandon Meyer,victoriareynolds@hotmail.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""CAD""}",2801.93,Gold,1 +9890,Nancy Murphy,rodriguezkathleen@weber-palmer.org,2024-06-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4728.86,Silver,0 +9891,Douglas Franco,trussell@reynolds.com,2020-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9022.66,Gold,0 +9892,Lisa Giles,kpearson@gmail.com,2024-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",7067.94,Gold,1 +9893,Kathryn Woods,stephaniehopkins@yahoo.com,2023-05-16,"{""language"": ""IT"", ""currency"": ""EUR""}",3839.79,Gold,0 +9894,Mary Downs,rrichardson@watson.biz,2021-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",1900.09,Silver,1 +9895,Kimberly Curry,barbara37@yahoo.com,2024-01-20,"{""language"": ""FR"", ""currency"": ""MXN""}",254.44,Silver,1 +9896,Michael Preston,robertsjohn@martin.com,2023-12-20,"{""language"": ""ES"", ""currency"": ""EUR""}",802.87,Gold,1 +9897,Jeffrey Flores,michael28@gmail.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",6472.2,Silver,0 +9898,Paula Martin,qmiller@gray.net,2021-10-14,"{""language"": ""EN"", ""currency"": ""USD""}",9811.57,Bronze,0 +9899,Michael Rodriguez,zhenderson@gmail.com,2023-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",2092.21,Silver,1 +9900,John Newton,brianna82@carter.com,2022-08-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3050.17,Silver,1 +9901,James Martinez,jennifer31@hotmail.com,2021-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",7412.43,Silver,1 +9902,Katherine Mueller,gordonsmith@yahoo.com,2020-08-31,"{""language"": ""IT"", ""currency"": ""CAD""}",6865.99,Silver,1 +9903,Kimberly Hughes,jessicashaw@young.com,2020-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",6441.42,Gold,1 +9904,Albert Moore,virginia17@rios-jones.com,2020-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7538.67,Bronze,1 +9905,Scott Clark,jonesangela@hotmail.com,2023-09-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7925.24,Silver,0 +9906,Seth Harrington,pmosley@gmail.com,2024-05-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9645.61,Bronze,0 +9907,Katrina Johnson,vellis@tanner-mason.org,2024-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8356.73,Silver,1 +9908,Joseph Lopez,rstrickland@gmail.com,2023-08-15,"{""language"": ""FR"", ""currency"": ""CAD""}",6839.17,Gold,1 +9909,Lori Morton,george32@thomas.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""MXN""}",5668.31,Bronze,1 +9910,Kevin Neal,griffinbarry@hotmail.com,2022-04-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5554.93,Silver,1 +9911,Dan Serrano,hmathis@hotmail.com,2021-11-04,"{""language"": ""DE"", ""currency"": ""CAD""}",2752.57,Bronze,0 +9912,Judith Lee,jlynn@stewart.org,2021-03-08,"{""language"": ""FR"", ""currency"": ""GBP""}",7901.72,Bronze,1 +9913,Sara Johnson,amanda67@gmail.com,2023-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4827.52,Silver,1 +9914,Renee Lewis,chamberskaren@gmail.com,2024-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",1765.09,Silver,0 +9915,Cynthia Camacho,hallanthony@smith.com,2023-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",5098.37,Silver,0 +9916,James Long,mcarey@moreno-hudson.com,2020-12-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7970.75,Silver,1 +9917,Amanda May,wisejacob@yahoo.com,2023-01-09,"{""language"": ""DE"", ""currency"": ""EUR""}",8380.15,Silver,1 +9918,Bryan Cruz,james13@hutchinson.com,2023-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2730.54,Bronze,0 +9919,Jason Townsend,psantiago@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""GBP""}",7525.47,Silver,1 +9920,Brad Gutierrez,mramirez@hotmail.com,2021-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",5934.44,Gold,0 +9921,Shannon Knight,sarahbrown@day-sanchez.com,2022-03-10,"{""language"": ""DE"", ""currency"": ""GBP""}",156.26,Bronze,0 +9922,Tonya Bauer,rhernandez@francis-kelly.biz,2021-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",6055.86,Silver,1 +9923,Matthew Carlson,gina50@roberts-bailey.com,2022-05-17,"{""language"": ""ES"", ""currency"": ""USD""}",1163.42,Bronze,0 +9924,Angela Ross,jasoncline@le.info,2023-05-04,"{""language"": ""DE"", ""currency"": ""CAD""}",8699.57,Bronze,1 +9925,Mrs. Lisa Johnson,brownmark@yahoo.com,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",7233.11,Bronze,0 +9926,Justin Smith,john71@gill.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""USD""}",1561.51,Bronze,0 +9927,Eric Andrews,john32@yahoo.com,2022-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",5746.25,Silver,0 +9928,Nancy Chandler,uburton@yahoo.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""USD""}",4970.15,Silver,0 +9929,Dustin Johnson,markolson@gmail.com,2023-01-26,"{""language"": ""EN"", ""currency"": ""CAD""}",8384.38,Bronze,1 +9930,Cameron Baxter,millerdwayne@black.com,2024-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7490.35,Silver,0 +9931,Steven Haney,boydkimberly@mitchell-thomas.com,2020-09-26,"{""language"": ""DE"", ""currency"": ""EUR""}",247.28,Gold,1 +9932,Kayla Hanson,fgardner@chan.com,2024-08-25,"{""language"": ""DE"", ""currency"": ""GBP""}",1736.23,Silver,1 +9933,Ashley Hall,amberblack@gmail.com,2021-07-07,"{""language"": ""IT"", ""currency"": ""GBP""}",2443.91,Bronze,0 +9934,Ronald Marquez,joan47@vance-curtis.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",6378.78,Gold,1 +9935,James Manning,bsmith@martin.info,2023-02-24,"{""language"": ""IT"", ""currency"": ""MXN""}",8675.16,Silver,0 +9936,Brian Phillips,xwillis@yahoo.com,2022-10-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7918.79,Bronze,1 +9937,Adam Lin MD,huberchristie@hotmail.com,2024-06-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8680.84,Silver,1 +9938,Joseph Gonzalez,andrewcollins@davis.com,2021-09-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1097.54,Bronze,1 +9939,Troy Jones,patrick73@murphy.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8302.42,Silver,0 +9940,Richard Watson,cindy02@hotmail.com,2020-07-29,"{""language"": ""IT"", ""currency"": ""MXN""}",8689.38,Bronze,0 +9941,Chelsea Foster,miranda28@yahoo.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""USD""}",7115.33,Gold,1 +9942,Angela Johnson,psullivan@hotmail.com,2023-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",912.95,Bronze,1 +9943,David Bruce,frenchdawn@king-horton.com,2024-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",8344.47,Gold,0 +9944,Sarah Kemp,smithisaiah@yahoo.com,2021-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",5986.95,Silver,1 +9945,Heather Gonzalez,wattsdouglas@yahoo.com,2023-04-27,"{""language"": ""ES"", ""currency"": ""GBP""}",8045.18,Bronze,0 +9946,Stephanie Allen,mhernandez@norton-perez.org,2022-06-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7307.54,Silver,1 +9947,Regina Wolf,jenniferwilliams@gmail.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4995.53,Silver,0 +9948,Dana Randolph,zchang@phelps-lewis.info,2020-02-21,"{""language"": ""EN"", ""currency"": ""USD""}",4740.29,Gold,1 +9949,Juan Bennett,melvinjohnson@wu.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",5885.01,Silver,1 +9950,Lindsey Richards,burtonchristina@hotmail.com,2023-01-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3796.32,Gold,0 +9951,Brian Davis,andrewstroy@gmail.com,2023-11-09,"{""language"": ""EN"", ""currency"": ""CAD""}",667.13,Silver,0 +9952,Kari Lynn,bradleyday@yahoo.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""GBP""}",305.33,Gold,1 +9953,Sandra Hoover,deborahwilliams@thompson-smith.org,2022-08-29,"{""language"": ""IT"", ""currency"": ""USD""}",852.7,Silver,1 +9954,Jeffrey Turner,vcopeland@yahoo.com,2020-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",950.81,Bronze,1 +9955,Julie Smith,kingbethany@hotmail.com,2020-05-17,"{""language"": ""IT"", ""currency"": ""GBP""}",2530.1,Bronze,1 +9956,Jennifer Davenport,burtondaniel@meyer.org,2023-02-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2913.77,Gold,1 +9957,Robert Wright,henrylee@gmail.com,2020-04-02,"{""language"": ""ES"", ""currency"": ""GBP""}",6995.67,Gold,1 +9958,Marcus Williams,proctorjohn@cochran.org,2023-06-24,"{""language"": ""IT"", ""currency"": ""EUR""}",9681.42,Bronze,0 +9959,Leslie Ray,dwayne30@gmail.com,2023-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",389.78,Silver,0 +9960,Jennifer Morris,torreslaura@ochoa.net,2024-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5458.84,Gold,1 +9961,Andrea Nichols,boydamanda@gmail.com,2024-09-09,"{""language"": ""IT"", ""currency"": ""GBP""}",1372.94,Silver,0 +9962,Ronald Hawkins,glenn56@hotmail.com,2024-03-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7271.52,Bronze,1 +9963,Margaret Jackson,austindurham@griffin-phelps.net,2021-02-01,"{""language"": ""EN"", ""currency"": ""MXN""}",2123.07,Silver,0 +9964,Stephen Reed Jr.,joneslisa@mitchell.info,2023-06-06,"{""language"": ""FR"", ""currency"": ""GBP""}",8215.81,Gold,1 +9965,Thomas Faulkner,icampbell@padilla-carter.com,2021-07-04,"{""language"": ""IT"", ""currency"": ""CAD""}",926.74,Gold,0 +9966,Scott Hill,harveykirk@hall.com,2021-10-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4677.47,Gold,1 +9967,Anthony Joyce,nicholsmargaret@humphrey.com,2024-08-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7714.76,Bronze,0 +9968,Raymond Goodman,maryhickman@gmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""EUR""}",7005.73,Gold,1 +9969,Sabrina Rogers,thomashannah@herrera-hill.net,2021-04-06,"{""language"": ""IT"", ""currency"": ""CAD""}",5133.7,Silver,1 +9970,Christopher Young,laurenritter@owens.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""USD""}",6361.79,Gold,1 +9971,Jason Jones,halllinda@gmail.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8676.84,Gold,1 +9972,Gregory Walsh,nicole39@gmail.com,2023-11-23,"{""language"": ""EN"", ""currency"": ""GBP""}",1252.89,Gold,0 +9973,Larry Miller,lthomas@hotmail.com,2022-10-10,"{""language"": ""ES"", ""currency"": ""EUR""}",345.42,Silver,1 +9974,David Chambers,andreakhan@warren-kennedy.com,2023-03-04,"{""language"": ""FR"", ""currency"": ""USD""}",2570.63,Silver,1 +9975,James Guerrero,carolinesalinas@yahoo.com,2021-12-29,"{""language"": ""ES"", ""currency"": ""USD""}",2318.32,Silver,1 +9976,Claire Miller,pgray@simpson-nelson.com,2022-09-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4474.33,Gold,1 +9977,Timothy Gates,brianna42@moyer.info,2022-07-27,"{""language"": ""EN"", ""currency"": ""USD""}",4515.18,Gold,1 +9978,Christine King,floresjoshua@hotmail.com,2020-10-13,"{""language"": ""DE"", ""currency"": ""EUR""}",8712.78,Silver,1 +9979,Laura Abbott,paulmullins@yahoo.com,2022-01-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1496.65,Silver,1 +9980,Jennifer Christensen,catherine41@monroe.info,2022-07-08,"{""language"": ""IT"", ""currency"": ""USD""}",7156.67,Bronze,1 +9981,David Smith,jfernandez@yahoo.com,2023-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",8896.22,Gold,1 +9982,Elizabeth Reid,lwilliams@nunez-moore.net,2021-08-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4456.48,Bronze,1 +9983,Adrian Richmond,danielleortega@hotmail.com,2020-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",322.51,Gold,1 +9984,Allen Martin,richard72@gmail.com,2020-03-08,"{""language"": ""IT"", ""currency"": ""GBP""}",9946.19,Bronze,1 +9985,Joseph Vance,cynthiathomas@yahoo.com,2020-01-30,"{""language"": ""ES"", ""currency"": ""CAD""}",9140.68,Bronze,0 +9986,Alexandra Kelly,fgarcia@ramsey.org,2021-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6893.79,Silver,0 +9987,Deanna Weaver,chloe66@rodriguez.net,2020-11-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3798.58,Gold,0 +9988,Krista Thomas,mramirez@gmail.com,2024-01-04,"{""language"": ""IT"", ""currency"": ""CAD""}",8765.15,Silver,1 +9989,Shawn Jacobs,otrevino@torres-padilla.com,2021-10-24,"{""language"": ""FR"", ""currency"": ""EUR""}",6446.27,Silver,0 +9990,Mrs. Michelle Lopez,yescobar@gmail.com,2024-10-07,"{""language"": ""IT"", ""currency"": ""USD""}",9658.73,Silver,0 +9991,Ricardo Johnson,kristinwaters@yahoo.com,2020-10-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2588.15,Silver,1 +9992,Thomas Gibson,terri98@hotmail.com,2019-12-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5579.17,Bronze,1 +9993,Sean Baker,medinadanielle@curtis.info,2023-07-04,"{""language"": ""FR"", ""currency"": ""GBP""}",2385.23,Bronze,1 +9994,Jennifer Harris,zroberts@yahoo.com,2021-05-02,"{""language"": ""ES"", ""currency"": ""MXN""}",206.78,Gold,1 +9995,Angie Casey,nicholslynn@allen-houston.net,2023-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",7818.21,Gold,1 +9996,Wesley Johnson,reginaclark@yahoo.com,2021-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",4896.95,Gold,1 +9997,Dustin Herrera,tvilla@hotmail.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9792.41,Gold,0 +9998,Stacy Rogers,martinezmeghan@martinez-huerta.net,2020-06-08,"{""language"": ""IT"", ""currency"": ""EUR""}",8189.67,Gold,0 +9999,Felicia Miles,harrisashley@diaz.com,2021-11-07,"{""language"": ""EN"", ""currency"": ""USD""}",2787.15,Silver,1 +10000,Mark Davidson,william38@rogers-may.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2798.88,Gold,0 diff --git a/web-local/tests/data/customer_data_sqlite.csv b/web-local/tests/data/customer_data_sqlite.csv new file mode 100644 index 00000000000..f8ce593a8ab --- /dev/null +++ b/web-local/tests/data/customer_data_sqlite.csv @@ -0,0 +1,10001 @@ +customer_id,name,email,signup_date,preferences,total_spent_usd,loyalty_tier,is_active +1,Courtney Burke,ssolis@gmail.com,2024-05-19,"{""language"": ""DE"", ""currency"": ""CAD""}",7123.62,Silver,1 +2,Angela Smith,hebertkristen@yahoo.com,2021-02-18,"{""language"": ""DE"", ""currency"": ""GBP""}",5859.67,Bronze,1 +3,Nicholas Guzman,michellecochran@king-harrison.net,2024-09-30,"{""language"": ""IT"", ""currency"": ""GBP""}",3640.24,Bronze,1 +4,Sara Sanchez,donaldlarson@yahoo.com,2024-06-14,"{""language"": ""FR"", ""currency"": ""USD""}",9800.27,Silver,1 +5,James Juarez,patriciamiller@hotmail.com,2023-10-21,"{""language"": ""FR"", ""currency"": ""CAD""}",8205.67,Bronze,0 +6,Katherine Kennedy,christopherramirez@gonzalez.com,2023-01-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7898.1,Silver,1 +7,Maria Ramirez,duffyaustin@yahoo.com,2024-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",3224.22,Bronze,1 +8,Carla Harvey,christopher94@gmail.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",378.84,Gold,0 +9,Beth Hall,fieldskari@richards-hall.com,2023-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",4699.92,Silver,1 +10,Veronica Adkins,uwhite@yahoo.com,2024-10-30,"{""language"": ""FR"", ""currency"": ""GBP""}",9375.77,Gold,1 +11,Cindy George,kristinaperry@hotmail.com,2021-03-01,"{""language"": ""FR"", ""currency"": ""MXN""}",4826.01,Silver,1 +12,James Carter,pittmanerin@yahoo.com,2021-09-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9866.7,Silver,0 +13,Nicole Edwards,robert40@glenn.biz,2021-11-14,"{""language"": ""EN"", ""currency"": ""USD""}",582.69,Bronze,0 +14,Kristin Hudson,davilarobert@gmail.com,2020-03-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1302.32,Gold,0 +15,Sarah Barrett,medinarichard@gmail.com,2022-04-23,"{""language"": ""IT"", ""currency"": ""MXN""}",6209.26,Silver,0 +16,Casey Chen,cardenasalicia@perez.com,2021-08-12,"{""language"": ""IT"", ""currency"": ""MXN""}",9849.33,Silver,0 +17,Carla Schwartz,williamsshannon@smith.com,2022-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",800.89,Bronze,0 +18,James Johns,williamsrobert@singleton.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5635.43,Silver,1 +19,Tommy Williams,spencerkayla@clark.com,2022-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",6044.41,Bronze,0 +20,Devon Taylor,chelsey35@taylor-harris.info,2022-01-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6486.02,Gold,1 +21,Charles Wilson,sgrimes@yahoo.com,2020-11-08,"{""language"": ""EN"", ""currency"": ""CAD""}",3368.51,Silver,0 +22,Edward Garcia,martinbrandy@orr.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""USD""}",4513.7,Bronze,1 +23,Jason Burns,markmoore@gmail.com,2021-01-16,"{""language"": ""EN"", ""currency"": ""EUR""}",2646.63,Gold,0 +24,William Wiggins,butlersherry@hotmail.com,2021-07-31,"{""language"": ""FR"", ""currency"": ""EUR""}",4808.56,Bronze,1 +25,Kyle Hopkins,xthompson@bird-neal.com,2024-08-15,"{""language"": ""EN"", ""currency"": ""EUR""}",433.35,Gold,1 +26,Tristan Mckenzie,kathleenhamilton@taylor.biz,2021-12-25,"{""language"": ""DE"", ""currency"": ""GBP""}",8871.99,Gold,0 +27,Ashley Jenkins,nsanders@guzman.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8682.14,Silver,1 +28,Mary Harris,amy09@kerr.com,2020-01-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6400.06,Silver,0 +29,Adrian Gonzales,miranda19@yahoo.com,2021-09-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2677.6,Bronze,1 +30,Kurt Allen,amandaflynn@lewis.net,2020-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5652.42,Gold,0 +31,Eric Henry,michaelhunter@gmail.com,2021-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",8095.01,Silver,1 +32,Sergio Miller,robert34@edwards.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",6549.54,Bronze,1 +33,Alejandro Gomez,darrell28@perez.org,2021-01-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7978.03,Gold,1 +34,Elizabeth Ramirez,andrew13@hotmail.com,2022-06-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3911.25,Gold,0 +35,Rebecca Campos,gilljulie@hughes-brown.com,2021-03-27,"{""language"": ""FR"", ""currency"": ""EUR""}",4884.72,Bronze,0 +36,Adam Hunter,kgallagher@bass.com,2022-07-19,"{""language"": ""FR"", ""currency"": ""CAD""}",1736.64,Gold,0 +37,Richard Clark MD,awilson@potts.net,2024-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8982.47,Bronze,0 +38,Suzanne Ramsey,tmartinez@gmail.com,2020-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",226.45,Bronze,0 +39,Clayton Frazier,bryanday@gmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8498.52,Silver,1 +40,Angela Weber,oorozco@yahoo.com,2024-05-30,"{""language"": ""IT"", ""currency"": ""CAD""}",5389.37,Bronze,0 +41,Loretta Jackson,sarapalmer@hotmail.com,2022-11-16,"{""language"": ""IT"", ""currency"": ""CAD""}",2218.16,Silver,0 +42,Robert Barnes,tyler52@acosta.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""MXN""}",1309.5,Bronze,0 +43,Jesse Young,cortezchad@hotmail.com,2020-07-27,"{""language"": ""IT"", ""currency"": ""USD""}",7693.87,Silver,1 +44,Adam Thompson,aford@yahoo.com,2024-04-12,"{""language"": ""EN"", ""currency"": ""MXN""}",4626.84,Gold,1 +45,Hannah Little,eugene56@allen.com,2024-04-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2742.3,Silver,1 +46,Amanda Alvarez,griffinwilliam@williams-kelly.org,2022-09-25,"{""language"": ""EN"", ""currency"": ""EUR""}",7111.69,Gold,1 +47,Stephanie Alexander,uturner@gmail.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""EUR""}",4802.07,Gold,1 +48,William Carter,weberjerry@yahoo.com,2020-07-08,"{""language"": ""FR"", ""currency"": ""USD""}",969.69,Gold,0 +49,Tonya Jones,robin98@morgan.com,2021-04-17,"{""language"": ""IT"", ""currency"": ""USD""}",1598.18,Gold,1 +50,Michelle Duran,rwalker@gmail.com,2024-07-28,"{""language"": ""EN"", ""currency"": ""USD""}",6267.56,Gold,1 +51,Brian Rodriguez,sawyerkaren@hotmail.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""GBP""}",6711.0,Bronze,0 +52,Julie Luna,astewart@curry.com,2022-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9488.43,Bronze,0 +53,Chad Gibson,paul90@hotmail.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",2085.44,Bronze,0 +54,Nicole Mosley,nicholasgibbs@gmail.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""EUR""}",1432.37,Bronze,0 +55,Wendy Myers,wattsbrooke@oneal.com,2023-05-22,"{""language"": ""ES"", ""currency"": ""MXN""}",2421.21,Silver,1 +56,Brian Lawrence,michellefranklin@gmail.com,2021-11-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6219.3,Silver,1 +57,Tiffany Cole,samueldixon@martinez.biz,2020-10-10,"{""language"": ""FR"", ""currency"": ""MXN""}",1272.88,Gold,1 +58,Allen Ferguson,lambamanda@gmail.com,2020-02-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4332.66,Gold,0 +59,Erik Stewart,kristi29@gmail.com,2021-11-07,"{""language"": ""DE"", ""currency"": ""MXN""}",2641.19,Gold,1 +60,Jason Miller,curtismcintosh@wright-woods.com,2020-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5399.43,Gold,1 +61,Vanessa Jones,blakejames@nelson.org,2021-10-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1168.24,Gold,0 +62,Sandra Elliott,jrice@le-phillips.com,2023-12-31,"{""language"": ""ES"", ""currency"": ""MXN""}",6967.95,Gold,0 +63,Todd Hall,bmassey@bryant-hernandez.com,2020-07-29,"{""language"": ""DE"", ""currency"": ""CAD""}",7105.86,Bronze,0 +64,George Williams,smithallison@rivera.com,2022-12-18,"{""language"": ""EN"", ""currency"": ""USD""}",3840.8,Gold,1 +65,Wayne Fitzpatrick,marcus56@yahoo.com,2020-12-12,"{""language"": ""FR"", ""currency"": ""EUR""}",2728.59,Silver,0 +66,Daniel Hernandez,james83@yahoo.com,2021-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",3232.77,Bronze,0 +67,Kathy Duke,robinsonsonya@pratt.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""CAD""}",206.83,Bronze,0 +68,Derrick Elliott,megan97@brown.com,2021-09-19,"{""language"": ""IT"", ""currency"": ""CAD""}",4870.2,Silver,1 +69,Kevin Nunez,emilyjones@hotmail.com,2021-07-20,"{""language"": ""EN"", ""currency"": ""CAD""}",8560.34,Silver,0 +70,Eric Daniels,morganbrittany@gmail.com,2021-01-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5485.59,Silver,0 +71,Randy Juarez,elizabethscott@jones.biz,2024-11-21,"{""language"": ""DE"", ""currency"": ""MXN""}",6672.9,Bronze,1 +72,Emily Dixon,vasquezsamantha@white-franklin.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""EUR""}",559.13,Bronze,1 +73,Timothy Medina,kristenmason@gmail.com,2021-09-10,"{""language"": ""IT"", ""currency"": ""USD""}",4652.41,Silver,0 +74,Sergio Griffin,stevenperry@yahoo.com,2020-08-16,"{""language"": ""IT"", ""currency"": ""EUR""}",1140.66,Gold,0 +75,Johnny Leonard,matthew98@yahoo.com,2022-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",3755.32,Gold,1 +76,Alex Willis,lanedanielle@thompson.com,2021-01-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5160.02,Silver,1 +77,Susan Hall,ypage@dyer-roberts.com,2022-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",3385.04,Silver,1 +78,Cathy Owens,jonesmichael@williams.org,2021-05-17,"{""language"": ""IT"", ""currency"": ""GBP""}",4272.04,Silver,0 +79,Christie Johnson,vshort@gmail.com,2022-11-03,"{""language"": ""EN"", ""currency"": ""USD""}",682.62,Gold,0 +80,Donna Mills,hillpaula@allen.com,2024-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",369.61,Bronze,1 +81,Jenny Costa,melissa98@hotmail.com,2023-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",5273.76,Silver,0 +82,Vickie Gonzalez,bguerrero@hotmail.com,2020-09-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1273.01,Silver,1 +83,Sherry Stevens,bhunter@hotmail.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""CAD""}",8560.51,Gold,0 +84,Stephen Jacobson,turnershelly@gmail.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4247.89,Gold,1 +85,Diane Sullivan,kimedward@harris.com,2022-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6602.1,Gold,0 +86,Juan Allen,larry47@elliott-ware.com,2021-07-21,"{""language"": ""IT"", ""currency"": ""GBP""}",7877.33,Bronze,0 +87,Lydia Collins,tamarascott@ross.com,2024-03-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5412.38,Gold,0 +88,William Taylor DVM,cynthia47@young-allen.info,2024-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6951.74,Bronze,0 +89,Douglas Crawford,kimberly76@graham-smith.biz,2020-05-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9351.72,Gold,0 +90,Samantha Murillo,andrew50@hotmail.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",8964.67,Gold,0 +91,Tiffany Mathews,johnsonmalik@nguyen-anderson.com,2021-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",1756.8,Silver,0 +92,Lee Brown,loribrown@hotmail.com,2022-09-08,"{""language"": ""EN"", ""currency"": ""GBP""}",6307.87,Bronze,0 +93,Michelle Johnson,alexandriahutchinson@gmail.com,2023-05-20,"{""language"": ""ES"", ""currency"": ""EUR""}",9392.72,Bronze,0 +94,Nicole Hall,nolantravis@hotmail.com,2020-08-16,"{""language"": ""IT"", ""currency"": ""USD""}",9987.96,Bronze,1 +95,Kayla Bell,dkeller@hotmail.com,2020-04-13,"{""language"": ""FR"", ""currency"": ""MXN""}",4827.37,Bronze,1 +96,Misty Morales,leelauren@kelley-jenkins.com,2020-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",5360.53,Silver,0 +97,Lisa Santos,nvargas@hotmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""CAD""}",6219.09,Silver,1 +98,John Jones,jenniferhenry@yahoo.com,2022-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3549.94,Bronze,1 +99,Melissa Ward,meganbentley@gmail.com,2020-08-17,"{""language"": ""ES"", ""currency"": ""USD""}",2987.5,Silver,1 +100,Melissa Wallace,yangmelissa@cantrell.biz,2021-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3387.73,Silver,1 +101,Jessica Fitzgerald,ocruz@oconnell.com,2020-10-01,"{""language"": ""ES"", ""currency"": ""GBP""}",3181.17,Gold,0 +102,Jeremy Wilkins,melissawu@yahoo.com,2022-02-01,"{""language"": ""DE"", ""currency"": ""EUR""}",5270.94,Bronze,1 +103,Michael Gutierrez,djohnson@higgins.biz,2024-11-14,"{""language"": ""DE"", ""currency"": ""EUR""}",726.22,Silver,0 +104,Ryan Lloyd,fbruce@bonilla.info,2023-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",3766.1,Gold,0 +105,Shannon Cox,guerrerojames@gmail.com,2020-10-31,"{""language"": ""IT"", ""currency"": ""USD""}",3835.85,Silver,0 +106,Maria Thomas,zhurst@gmail.com,2023-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",6204.94,Bronze,0 +107,Charles Atkinson,beth03@hotmail.com,2021-10-06,"{""language"": ""ES"", ""currency"": ""MXN""}",5663.23,Silver,1 +108,Michael Henderson,wnelson@herrera-myers.org,2020-05-13,"{""language"": ""IT"", ""currency"": ""GBP""}",8817.7,Bronze,0 +109,Bryan Duran,nwatson@brown.info,2022-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6561.48,Bronze,1 +110,Derrick Shelton,joshua87@hotmail.com,2020-06-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3945.76,Gold,1 +111,Catherine Nguyen,afreeman@hotmail.com,2023-04-11,"{""language"": ""EN"", ""currency"": ""USD""}",382.59,Bronze,0 +112,Daniel Brewer,rivasjaclyn@mcmahon.net,2021-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6564.51,Gold,0 +113,Deborah Wade,jacqueline21@golden-powell.info,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",5142.9,Bronze,0 +114,Jennifer Lara,xfreeman@gmail.com,2020-03-11,"{""language"": ""DE"", ""currency"": ""EUR""}",9501.04,Bronze,0 +115,Travis Holmes,christinajohnson@white.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""USD""}",5134.86,Gold,1 +116,Michelle Cummings,bryantmallory@gmail.com,2023-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",7882.0,Silver,0 +117,John Ward,pbarker@hotmail.com,2021-12-25,"{""language"": ""DE"", ""currency"": ""CAD""}",9388.22,Silver,1 +118,Stephanie Johnston,robertmiranda@yahoo.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8856.07,Gold,1 +119,William Hubbard,patrick43@hotmail.com,2024-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8873.54,Gold,0 +120,Michael Murphy,lovesusan@barnett.info,2022-01-06,"{""language"": ""ES"", ""currency"": ""CAD""}",4519.82,Bronze,0 +121,Douglas Carlson,jeffreysmith@burns.com,2024-03-03,"{""language"": ""FR"", ""currency"": ""USD""}",8368.75,Bronze,1 +122,Thomas Walters,stephanie61@evans.com,2021-02-08,"{""language"": ""DE"", ""currency"": ""CAD""}",5819.0,Bronze,0 +123,Mary Davidson,elizabethmurphy@hotmail.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""EUR""}",4963.58,Gold,0 +124,Ashley Adams,christopher92@hotmail.com,2024-02-02,"{""language"": ""EN"", ""currency"": ""USD""}",6712.67,Gold,1 +125,Mrs. Julie Shaw PhD,parkstina@harrison.com,2023-09-23,"{""language"": ""EN"", ""currency"": ""CAD""}",5392.75,Gold,1 +126,Michael Schmidt,tyleroneal@hotmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",6453.49,Gold,1 +127,Justin Brown,jacobscott@gmail.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""EUR""}",616.69,Gold,1 +128,George Nielsen,omendoza@hunter.biz,2023-07-15,"{""language"": ""EN"", ""currency"": ""GBP""}",5089.61,Gold,1 +129,Julian Diaz,kbeltran@adkins-dixon.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2957.99,Gold,0 +130,Thomas Johnson,linkimberly@gmail.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4741.25,Gold,0 +131,Randy Preston,casey67@yahoo.com,2020-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",9169.0,Silver,1 +132,Michael Kim,diane59@hotmail.com,2023-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",9141.61,Gold,1 +133,Elizabeth Vasquez,tscott@yahoo.com,2020-12-25,"{""language"": ""DE"", ""currency"": ""EUR""}",1055.76,Silver,1 +134,Donna Shelton,diane31@jackson-myers.com,2021-05-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5942.54,Gold,1 +135,Brenda Booth,austincrystal@yahoo.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""GBP""}",438.74,Gold,1 +136,John Woods,christinathomas@hotmail.com,2022-08-19,"{""language"": ""EN"", ""currency"": ""USD""}",3543.87,Bronze,1 +137,Julie Davis,jonathanallen@hotmail.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",368.5,Silver,1 +138,Matthew Taylor,jamesmelendez@yahoo.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""EUR""}",9806.48,Gold,0 +139,Michelle Carter,amanda97@rush-wise.com,2020-02-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2354.08,Silver,1 +140,Nathaniel Bass,penakenneth@gmail.com,2023-01-04,"{""language"": ""ES"", ""currency"": ""CAD""}",2465.74,Silver,1 +141,Renee Mcgrath,glawrence@gmail.com,2022-09-23,"{""language"": ""ES"", ""currency"": ""CAD""}",3732.68,Gold,1 +142,Amber Murray,kellyjordan@gmail.com,2021-07-15,"{""language"": ""DE"", ""currency"": ""USD""}",5301.45,Silver,0 +143,Joseph Keller,kelseypeterson@ibarra-terry.info,2021-04-01,"{""language"": ""DE"", ""currency"": ""MXN""}",1715.89,Gold,0 +144,Chelsey Evans,hansonmatthew@middleton.com,2020-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",8031.71,Gold,1 +145,Samantha Thompson,duncanstephen@gmail.com,2020-04-17,"{""language"": ""DE"", ""currency"": ""EUR""}",7569.79,Bronze,1 +146,Jeremy Young,gardnermike@hotmail.com,2024-07-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3770.34,Silver,1 +147,Christopher Johnson,samanthacamacho@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2895.08,Bronze,0 +148,Valerie Thomas,jessicasnyder@yahoo.com,2020-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",1064.61,Bronze,1 +149,Janice Moon,sharon19@sanchez.com,2022-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",370.33,Silver,1 +150,Elizabeth Walker,justin60@benton-obrien.net,2021-12-31,"{""language"": ""FR"", ""currency"": ""CAD""}",5138.2,Bronze,0 +151,Melissa Richmond,hectorjones@winters.com,2020-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",3463.08,Bronze,1 +152,Cody Cruz,vincentking@yahoo.com,2020-08-29,"{""language"": ""FR"", ""currency"": ""USD""}",2836.74,Silver,0 +153,Glen Nelson,garciajames@chapman.com,2022-05-16,"{""language"": ""EN"", ""currency"": ""USD""}",3236.46,Bronze,0 +154,Lauren Everett,dianawilliams@yahoo.com,2020-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",8772.1,Gold,0 +155,Kari Cross,hschroeder@hotmail.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",6411.03,Gold,0 +156,Melanie Barker,smithsandra@edwards.biz,2021-02-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1637.59,Silver,1 +157,Daniel Mcknight,rwest@henry.info,2024-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",901.65,Gold,0 +158,Christopher Ball,lisastanley@bailey.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8084.25,Silver,1 +159,Mary Coleman,rodriguezpaul@hotmail.com,2022-11-06,"{""language"": ""IT"", ""currency"": ""CAD""}",1330.63,Bronze,1 +160,Joseph Mcintosh,nathanmercer@gmail.com,2021-04-24,"{""language"": ""DE"", ""currency"": ""USD""}",4490.18,Gold,1 +161,Michelle Leonard,xmarshall@yahoo.com,2024-11-17,"{""language"": ""EN"", ""currency"": ""EUR""}",6262.62,Silver,0 +162,Mary Coleman,alexandra77@yahoo.com,2024-02-14,"{""language"": ""IT"", ""currency"": ""CAD""}",9291.69,Bronze,0 +163,Jeremy Mckay,pattonstacey@gmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",689.78,Bronze,1 +164,Julia Villarreal,billcastillo@yahoo.com,2024-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",6619.88,Silver,0 +165,Michael Palmer,christinaalexander@carpenter.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",8181.9,Gold,0 +166,Luke Gutierrez,adam27@hotmail.com,2020-02-05,"{""language"": ""IT"", ""currency"": ""GBP""}",9980.84,Gold,0 +167,Kristopher Powell,gdennis@yahoo.com,2023-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5163.97,Gold,1 +168,Cody Nash,urivera@black-wilkerson.com,2022-01-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1090.12,Silver,0 +169,Crystal Martinez,casey97@shelton.com,2024-07-29,"{""language"": ""DE"", ""currency"": ""USD""}",6528.38,Silver,0 +170,Jennifer Li,jbrown@robertson-webb.com,2022-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",5462.19,Bronze,1 +171,Jacob Brown,matthewhamilton@brennan.info,2022-08-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9051.36,Bronze,0 +172,Melinda Taylor,maria49@barry.com,2020-12-20,"{""language"": ""EN"", ""currency"": ""USD""}",1093.88,Bronze,0 +173,Benjamin Cruz,james30@jordan-hanson.net,2022-02-24,"{""language"": ""FR"", ""currency"": ""USD""}",6857.36,Gold,1 +174,Mike Campbell,eileen19@gmail.com,2024-03-27,"{""language"": ""EN"", ""currency"": ""CAD""}",7029.94,Silver,1 +175,Paul Valdez,rcastillo@yahoo.com,2020-01-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1881.39,Gold,0 +176,Frank Hudson,randallnelson@yahoo.com,2023-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",8053.18,Gold,0 +177,Douglas Hayes,bradshawkyle@hotmail.com,2024-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",1314.5,Silver,0 +178,Monique Perez,othomas@proctor-miller.biz,2021-03-03,"{""language"": ""ES"", ""currency"": ""EUR""}",586.63,Gold,1 +179,Christopher Davis,bellemily@warren.com,2023-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",3732.65,Silver,1 +180,Steven Gomez,daniel77@bond-craig.com,2021-09-06,"{""language"": ""FR"", ""currency"": ""MXN""}",2362.59,Silver,0 +181,Timothy Gray,lorrainewilliams@guerrero-trujillo.com,2020-12-30,"{""language"": ""DE"", ""currency"": ""MXN""}",2029.62,Gold,1 +182,Mark Velasquez,ccherry@hotmail.com,2020-10-21,"{""language"": ""EN"", ""currency"": ""EUR""}",6668.41,Silver,0 +183,Steven Reyes,kimhale@smith.com,2020-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3523.33,Bronze,0 +184,Margaret Osborn,okelly@gmail.com,2024-03-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3689.53,Bronze,0 +185,Tina Huang,mcguireashley@conley-martinez.org,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2819.56,Gold,0 +186,Christopher Hernandez,kristagonzalez@williams.com,2023-08-19,"{""language"": ""FR"", ""currency"": ""CAD""}",9639.0,Silver,0 +187,Jennifer Caldwell,jacksonsandra@hotmail.com,2022-06-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1813.82,Silver,1 +188,Erik Sims,joseph25@gmail.com,2020-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",6340.79,Gold,0 +189,Jason Hampton,katrinacastro@hotmail.com,2022-06-25,"{""language"": ""IT"", ""currency"": ""CAD""}",2058.95,Silver,1 +190,Randy Juarez,dunnjoseph@benton.net,2021-11-27,"{""language"": ""IT"", ""currency"": ""MXN""}",7950.88,Bronze,1 +191,Steven Grant,edwardvalentine@hotmail.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""USD""}",694.84,Bronze,1 +192,Cindy Martinez,tmitchell@hotmail.com,2020-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",8962.5,Silver,1 +193,Sydney Myers,daniellechapman@yahoo.com,2021-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",4365.19,Gold,0 +194,Christopher Williams,kgreer@yahoo.com,2024-11-10,"{""language"": ""DE"", ""currency"": ""GBP""}",4650.5,Bronze,0 +195,Jeffrey Roberts,lisa21@hotmail.com,2022-02-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8147.62,Bronze,1 +196,Elizabeth Beck DVM,angelica84@armstrong.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1820.72,Bronze,0 +197,Tony Gutierrez,mark53@gay.biz,2020-01-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7053.89,Bronze,0 +198,Nicholas Smith,gouldchristina@yahoo.com,2022-12-19,"{""language"": ""ES"", ""currency"": ""USD""}",6904.27,Silver,0 +199,Madison Floyd,beckerscott@dunn-donaldson.com,2020-06-11,"{""language"": ""IT"", ""currency"": ""GBP""}",6393.21,Silver,0 +200,Lisa Bryant,johnsonkylie@gmail.com,2023-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",4585.06,Gold,0 +201,Ashley Franco,thompsonjohn@gmail.com,2024-10-16,"{""language"": ""IT"", ""currency"": ""USD""}",5701.21,Silver,0 +202,Christine Dodson,barrjohn@mccoy-johnson.com,2024-07-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3334.44,Bronze,0 +203,Kimberly Green,karlamcclain@christensen.com,2020-11-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4876.89,Bronze,1 +204,Brian Reese,raymondbrewer@tate-gardner.biz,2024-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",9738.68,Bronze,0 +205,Caitlin Andrade,castrojeffery@yahoo.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""MXN""}",6285.84,Gold,0 +206,Bryan Melendez,noahhenderson@howe.com,2023-05-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7930.18,Bronze,1 +207,Jill Michael,lorrainesullivan@gmail.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4658.99,Bronze,0 +208,Margaret Hatfield,crystaldavis@yahoo.com,2022-01-28,"{""language"": ""IT"", ""currency"": ""USD""}",7090.71,Gold,0 +209,Brian Smith,steven86@hotmail.com,2022-05-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2453.78,Gold,0 +210,Christopher Rodriguez,hedwards@hotmail.com,2023-04-02,"{""language"": ""DE"", ""currency"": ""EUR""}",8586.08,Silver,0 +211,Jennifer Nguyen,patelkristin@gmail.com,2023-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6950.09,Gold,1 +212,Justin Young,paul96@yahoo.com,2023-01-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3372.45,Silver,0 +213,Jon Martin,blanchardtiffany@gmail.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",4993.51,Gold,1 +214,Gina Knight,turnersandra@yahoo.com,2023-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",9361.56,Bronze,1 +215,Ryan Cardenas,halltimothy@white-allen.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""EUR""}",6534.87,Silver,1 +216,Gary Thompson,sharonhall@brown-graves.com,2024-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",9953.17,Silver,1 +217,Andrea Christian,jchapman@hotmail.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1858.55,Silver,0 +218,Jeff Stanley,brian59@banks.com,2024-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",936.69,Gold,1 +219,Lori Hobbs,gonzalezdarrell@yahoo.com,2022-08-28,"{""language"": ""IT"", ""currency"": ""EUR""}",7360.95,Gold,1 +220,Traci Noble,baileypatricia@gallagher.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""CAD""}",928.36,Silver,1 +221,Robert Harper,nelsoncurtis@hernandez.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""CAD""}",6017.88,Gold,0 +222,Teresa West,vmalone@bishop-alvarez.com,2021-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5698.13,Silver,0 +223,Justin Stevens,yfox@rivera-woods.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9943.44,Gold,0 +224,Courtney Graham,nathanpeterson@hotmail.com,2020-01-10,"{""language"": ""DE"", ""currency"": ""EUR""}",9041.13,Bronze,0 +225,Jennifer Owens,mullinsmolly@harris.com,2022-08-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6841.53,Gold,0 +226,James Gilbert,baileytina@smith-black.biz,2020-01-19,"{""language"": ""DE"", ""currency"": ""EUR""}",342.28,Silver,1 +227,Jennifer Prince DVM,jowens@yahoo.com,2020-07-05,"{""language"": ""ES"", ""currency"": ""CAD""}",4920.64,Bronze,1 +228,Stacy Brown,joshuamullen@smith-johnson.org,2022-08-14,"{""language"": ""DE"", ""currency"": ""MXN""}",2090.18,Silver,0 +229,Elizabeth Schultz,daniellerichards@hotmail.com,2023-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",2342.39,Gold,1 +230,Kelly Pierce,housejennifer@hotmail.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""USD""}",8749.25,Silver,0 +231,Michael Bennett,austinflores@wilson-crawford.com,2023-09-12,"{""language"": ""IT"", ""currency"": ""USD""}",3311.71,Gold,0 +232,Mr. David Peterson,chad97@daniels-watkins.biz,2021-05-15,"{""language"": ""DE"", ""currency"": ""EUR""}",2420.11,Silver,0 +233,Joel Collins,mistywilliams@holden-garrett.com,2024-07-19,"{""language"": ""ES"", ""currency"": ""CAD""}",8588.56,Gold,0 +234,Steven Williams,kendra71@mendoza-joyce.com,2024-05-28,"{""language"": ""ES"", ""currency"": ""MXN""}",2991.81,Silver,0 +235,Daniel Lin,hfisher@hall-wiggins.info,2024-09-25,"{""language"": ""ES"", ""currency"": ""USD""}",6686.69,Silver,1 +236,Anne Lang,bmendoza@hotmail.com,2021-05-25,"{""language"": ""ES"", ""currency"": ""MXN""}",7228.85,Gold,0 +237,Vanessa Patterson,gerald56@sanchez.biz,2022-04-23,"{""language"": ""EN"", ""currency"": ""GBP""}",3131.54,Silver,0 +238,Omar Flores,oscarjones@hotmail.com,2024-09-21,"{""language"": ""EN"", ""currency"": ""MXN""}",5487.49,Gold,1 +239,Caleb Martin,jaclynlara@obrien.com,2022-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",505.72,Silver,0 +240,Marc Macdonald,hpowell@gallagher-johnson.info,2024-09-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8883.75,Gold,0 +241,Andre Perez,kallen@hardy.com,2020-09-02,"{""language"": ""ES"", ""currency"": ""MXN""}",7263.42,Gold,1 +242,Angela Ellis,daniellewebb@phillips-peters.biz,2021-10-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5682.95,Bronze,1 +243,Daniel Richardson,meganbaker@hotmail.com,2020-05-29,"{""language"": ""FR"", ""currency"": ""MXN""}",7167.16,Silver,0 +244,Samantha Taylor,wattsdustin@gmail.com,2020-04-25,"{""language"": ""ES"", ""currency"": ""USD""}",4228.07,Silver,1 +245,Joseph Decker,ssmith@patton-stewart.com,2022-09-22,"{""language"": ""FR"", ""currency"": ""GBP""}",6542.13,Bronze,0 +246,Adam Diaz,xfarmer@hotmail.com,2021-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",8164.88,Gold,0 +247,Laura Weaver,kpruitt@gmail.com,2021-06-14,"{""language"": ""IT"", ""currency"": ""USD""}",5360.59,Gold,0 +248,Michael James,brenda89@gmail.com,2022-08-28,"{""language"": ""ES"", ""currency"": ""EUR""}",7062.05,Gold,0 +249,Brooke Kaufman,trancory@gmail.com,2020-05-29,"{""language"": ""ES"", ""currency"": ""MXN""}",6374.28,Gold,1 +250,Luis Hunter,chandlerkristine@bowers.org,2023-11-17,"{""language"": ""ES"", ""currency"": ""USD""}",3347.87,Silver,1 +251,Donald Price,calderonsheri@gmail.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3196.19,Gold,0 +252,Tristan Harris,jacquelineramirez@gmail.com,2023-10-07,"{""language"": ""FR"", ""currency"": ""USD""}",6142.12,Silver,1 +253,Jonathan Pace,christinagarcia@gmail.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""USD""}",5531.28,Silver,0 +254,David Clark,cummingsalyssa@taylor.com,2021-07-28,"{""language"": ""IT"", ""currency"": ""GBP""}",1244.26,Silver,1 +255,Steven Thomas DVM,fzamora@williams.org,2022-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",361.83,Gold,1 +256,Thomas Hicks,aweeks@stevens.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",9321.87,Silver,0 +257,Stephanie Davis,simpsonpaul@yahoo.com,2021-03-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1575.22,Silver,1 +258,Kimberly Delgado,courtney81@yahoo.com,2023-01-02,"{""language"": ""IT"", ""currency"": ""EUR""}",2898.02,Bronze,1 +259,Elizabeth Ramirez,coltonwallace@gmail.com,2024-07-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3273.32,Silver,1 +260,Shelly Wells,denisecain@barry.net,2022-06-28,"{""language"": ""ES"", ""currency"": ""USD""}",5779.83,Bronze,0 +261,Melanie Perez,christopher18@griffin.info,2022-12-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9659.31,Gold,1 +262,Kimberly Young,vincentfarrell@hotmail.com,2020-09-25,"{""language"": ""EN"", ""currency"": ""EUR""}",9287.77,Bronze,0 +263,Chad Carlson,arose@yahoo.com,2022-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",3571.13,Bronze,1 +264,Jackson Vasquez,kellyrobert@reyes-simpson.com,2023-03-21,"{""language"": ""EN"", ""currency"": ""EUR""}",8334.95,Bronze,1 +265,Kimberly Anderson,victoria01@gmail.com,2024-03-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7826.9,Silver,1 +266,Kevin Williamson,wardmichael@yahoo.com,2022-02-04,"{""language"": ""EN"", ""currency"": ""EUR""}",357.12,Silver,1 +267,Annette Williamson,james63@yahoo.com,2020-09-20,"{""language"": ""FR"", ""currency"": ""EUR""}",9819.88,Gold,0 +268,Mr. Richard Jennings,lfowler@hotmail.com,2020-07-24,"{""language"": ""ES"", ""currency"": ""EUR""}",8329.98,Gold,0 +269,Ryan Terrell,michael36@hotmail.com,2024-04-08,"{""language"": ""FR"", ""currency"": ""EUR""}",467.06,Bronze,1 +270,Samantha Downs,christopher00@yahoo.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""GBP""}",56.59,Gold,1 +271,Renee Bailey,anthonyrocha@gmail.com,2022-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",4182.57,Silver,1 +272,Dwayne Clark,smahoney@villanueva.net,2023-11-29,"{""language"": ""IT"", ""currency"": ""USD""}",6749.93,Bronze,0 +273,Frank Carlson,orobertson@bradley.com,2024-02-20,"{""language"": ""DE"", ""currency"": ""USD""}",7786.76,Bronze,1 +274,James Smith,williamsnicole@yahoo.com,2023-03-13,"{""language"": ""ES"", ""currency"": ""USD""}",925.1,Silver,1 +275,Sheryl Smith,vblackburn@davis.com,2020-05-20,"{""language"": ""FR"", ""currency"": ""EUR""}",7625.2,Silver,0 +276,Cynthia Calhoun,christopherclayton@gmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7207.92,Bronze,0 +277,Michelle Mills,woodadam@gmail.com,2023-02-14,"{""language"": ""FR"", ""currency"": ""CAD""}",4152.0,Bronze,1 +278,Katherine Copeland,awest@hotmail.com,2024-06-14,"{""language"": ""FR"", ""currency"": ""EUR""}",7481.03,Silver,1 +279,Marcus Thornton,mannmelinda@hotmail.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8221.01,Gold,1 +280,Michael Miller,emily99@yahoo.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",761.72,Silver,1 +281,Walter Wilkins,zolsen@hotmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",2575.72,Gold,0 +282,Mary Holmes,williamsspencer@ward-bond.com,2021-06-18,"{""language"": ""EN"", ""currency"": ""USD""}",5280.38,Silver,0 +283,Donald Curtis,donald54@higgins-erickson.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""CAD""}",8988.03,Bronze,1 +284,Keith Tran,taylortoni@acosta.biz,2021-11-08,"{""language"": ""FR"", ""currency"": ""MXN""}",2627.68,Silver,1 +285,Katelyn Hurst,jonesnicole@hotmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8951.2,Bronze,0 +286,Edwin Daniels,katherine37@gmail.com,2021-04-25,"{""language"": ""DE"", ""currency"": ""USD""}",5145.43,Silver,1 +287,Joseph Williams,johnsonjohn@hotmail.com,2023-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",2751.17,Gold,0 +288,Kristen Jacobs,heather99@yahoo.com,2023-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",5729.12,Gold,0 +289,Samantha Johnson,obrewer@gmail.com,2024-03-24,"{""language"": ""IT"", ""currency"": ""EUR""}",1561.51,Bronze,0 +290,Robert Thompson,jenkinsjennifer@gmail.com,2023-01-29,"{""language"": ""IT"", ""currency"": ""CAD""}",6737.78,Silver,0 +291,Robert Summers,sheliadurham@hotmail.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7462.23,Silver,0 +292,Chloe Phillips,courtney23@armstrong.biz,2020-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",5022.17,Silver,1 +293,Kevin Wilson,mckinneytina@hayes.biz,2022-05-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1122.56,Bronze,0 +294,James Phillips,raymondlee@gmail.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""MXN""}",7820.25,Silver,0 +295,Donald Lopez,ujohnson@stanton.com,2023-05-06,"{""language"": ""FR"", ""currency"": ""EUR""}",3281.98,Bronze,0 +296,Patricia Walker DDS,francisco51@gmail.com,2022-05-24,"{""language"": ""FR"", ""currency"": ""MXN""}",9475.47,Gold,1 +297,Russell Lang,jose91@mann.biz,2020-04-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8657.6,Gold,1 +298,James Martin,jennifer98@estrada-marquez.biz,2023-04-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9587.66,Gold,0 +299,Brenda Acosta,william19@yahoo.com,2024-08-04,"{""language"": ""ES"", ""currency"": ""GBP""}",4208.18,Bronze,0 +300,Shelby Pierce,nicole00@yahoo.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",7345.77,Silver,1 +301,Pamela Williams,cruztracy@yahoo.com,2023-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",9584.55,Gold,0 +302,Laura Garcia,bdavies@cortez-rhodes.net,2020-08-25,"{""language"": ""EN"", ""currency"": ""GBP""}",2442.96,Gold,1 +303,Kristin Summers,brenda76@davis-kramer.net,2024-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1757.06,Gold,0 +304,Christopher Chan,joseph08@wood-wheeler.biz,2021-02-23,"{""language"": ""IT"", ""currency"": ""EUR""}",7076.45,Bronze,0 +305,Steven Lyons,wvance@norman.com,2024-06-20,"{""language"": ""FR"", ""currency"": ""CAD""}",6258.15,Bronze,1 +306,Rebecca Manning,michael59@hotmail.com,2023-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",346.15,Bronze,0 +307,Holly Martin,laurenwilliams@gmail.com,2021-05-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2705.65,Silver,0 +308,Natalie Evans,michelle87@hill-roth.info,2020-05-26,"{""language"": ""EN"", ""currency"": ""EUR""}",8771.18,Bronze,1 +309,Kim Walsh,nicolereed@watson-english.com,2024-02-28,"{""language"": ""EN"", ""currency"": ""EUR""}",7688.93,Bronze,0 +310,Mrs. Jacqueline Gray DDS,cramos@yahoo.com,2020-04-01,"{""language"": ""EN"", ""currency"": ""EUR""}",6149.55,Gold,0 +311,Krista Gonzalez,milessabrina@gmail.com,2021-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",917.28,Silver,0 +312,Tyler King,vanessa20@gmail.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3123.42,Gold,1 +313,Shawn Garcia,morrisjack@robinson.biz,2021-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",6299.58,Bronze,0 +314,Mr. Robert Carpenter,rodgersbenjamin@gmail.com,2022-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",303.73,Silver,0 +315,Kristina Smith,ihines@gmail.com,2024-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5106.45,Gold,0 +316,Ronnie Richardson,eaguilar@gmail.com,2024-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",334.45,Gold,1 +317,Kevin Ochoa,penapaul@yahoo.com,2023-07-04,"{""language"": ""EN"", ""currency"": ""EUR""}",6161.03,Gold,0 +318,Brian Jenkins,christinejoseph@walton-sanders.net,2020-03-26,"{""language"": ""ES"", ""currency"": ""CAD""}",4173.45,Silver,1 +319,Sydney Cantu,rachelgarcia@gmail.com,2020-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",7944.23,Bronze,1 +320,Crystal Trevino,kristy19@jordan.net,2024-09-09,"{""language"": ""EN"", ""currency"": ""EUR""}",283.84,Gold,0 +321,Stephen Brown,gsullivan@alvarez-marquez.com,2020-12-18,"{""language"": ""IT"", ""currency"": ""EUR""}",6201.28,Silver,0 +322,Debra Whitehead,amanda76@patterson.org,2020-10-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7336.21,Bronze,1 +323,Molly Patrick,nelsonlee@levy-valencia.net,2022-08-14,"{""language"": ""DE"", ""currency"": ""MXN""}",3402.63,Silver,1 +324,Jennifer Stewart,terrellgrant@pena.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""CAD""}",7891.3,Silver,1 +325,John Murphy,karen82@gmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",1436.28,Bronze,0 +326,Kevin Wilson,crivas@gmail.com,2024-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",2898.65,Silver,1 +327,Alexis Duarte,diana46@harrison.net,2019-12-24,"{""language"": ""DE"", ""currency"": ""CAD""}",3189.32,Silver,0 +328,Jacob Barker,mooredouglas@merritt-long.info,2022-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7599.43,Silver,0 +329,Mr. Randy Chapman,mendezmichelle@hernandez.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""USD""}",705.22,Bronze,1 +330,Kevin Reynolds,johnshort@pierce-ramirez.com,2024-11-17,"{""language"": ""IT"", ""currency"": ""CAD""}",5713.29,Bronze,0 +331,Alexis Wheeler,kelsey51@perez-miller.com,2023-02-21,"{""language"": ""EN"", ""currency"": ""EUR""}",2016.29,Silver,1 +332,Roger Sandoval,nolanrobert@hotmail.com,2020-02-10,"{""language"": ""EN"", ""currency"": ""GBP""}",1666.98,Bronze,0 +333,Matthew Martinez,sharonolsen@miller-willis.org,2020-04-22,"{""language"": ""EN"", ""currency"": ""EUR""}",6714.68,Silver,0 +334,Tami Lewis,nboyd@bean.com,2024-03-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8257.51,Bronze,1 +335,Samuel White,wstevens@hotmail.com,2023-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6954.64,Bronze,1 +336,Lynn Martin,joseph03@chang-ward.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""EUR""}",5028.43,Bronze,0 +337,Rhonda Edwards,ymyers@hotmail.com,2022-08-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5004.78,Bronze,1 +338,Stephen Chen,drakekristen@gmail.com,2024-11-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2520.79,Silver,0 +339,Erica Adams,vsmall@hotmail.com,2024-08-02,"{""language"": ""EN"", ""currency"": ""EUR""}",8219.24,Silver,1 +340,Jessica Davis,umoore@hotmail.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",5089.54,Bronze,1 +341,Glenn Graham,wbrown@yahoo.com,2020-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",219.81,Gold,0 +342,Brian Scott,rcain@horton.info,2021-05-25,"{""language"": ""ES"", ""currency"": ""GBP""}",3892.54,Silver,1 +343,Elizabeth Mendoza,allencaleb@gmail.com,2022-03-25,"{""language"": ""ES"", ""currency"": ""CAD""}",4577.02,Silver,1 +344,Hayley Watkins,taylortaylor@barber.com,2020-04-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9018.73,Gold,1 +345,Jeff Baxter,johnsonjason@gmail.com,2024-06-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4325.21,Bronze,1 +346,Luis Moore,wandacarney@hotmail.com,2021-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4038.76,Gold,1 +347,Matthew Moore,kimberly14@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",5059.71,Gold,0 +348,Jacob Tucker,matakayla@jackson.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""USD""}",9342.95,Silver,0 +349,Tammy Snyder,uchavez@hotmail.com,2019-12-25,"{""language"": ""FR"", ""currency"": ""MXN""}",9751.52,Gold,0 +350,Richard Collins,fullerjennifer@patterson.com,2024-08-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3703.64,Silver,0 +351,Michael Christensen,jhuerta@hotmail.com,2023-02-23,"{""language"": ""EN"", ""currency"": ""EUR""}",9129.36,Gold,1 +352,Aimee Thomas,crystalgarcia@yahoo.com,2024-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7225.22,Silver,1 +353,Kenneth Jones,ptorres@hotmail.com,2023-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3024.93,Silver,0 +354,Judy Hoffman,otorres@wilkins.info,2023-06-30,"{""language"": ""DE"", ""currency"": ""MXN""}",2643.55,Bronze,1 +355,Deanna Leonard,benjamin98@yahoo.com,2021-09-18,"{""language"": ""EN"", ""currency"": ""USD""}",9676.25,Bronze,0 +356,Christopher Kelly,brenda00@yahoo.com,2021-03-28,"{""language"": ""EN"", ""currency"": ""EUR""}",7455.33,Silver,0 +357,John Powers,turnersara@gmail.com,2024-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",787.15,Silver,1 +358,Angela Gomez,rwoodward@hotmail.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8778.69,Bronze,1 +359,Carolyn Richardson,jessicabailey@gmail.com,2022-01-20,"{""language"": ""EN"", ""currency"": ""USD""}",9705.8,Bronze,0 +360,Tonya Gill,joshuamays@hotmail.com,2021-08-30,"{""language"": ""EN"", ""currency"": ""USD""}",1107.58,Silver,0 +361,Kristina Harvey,vingram@santos.info,2022-01-12,"{""language"": ""IT"", ""currency"": ""MXN""}",2871.26,Silver,1 +362,Kelly Johnson,rowlanddouglas@jackson-bryan.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",3280.97,Bronze,0 +363,Brandi Vance,icunningham@bennett.com,2022-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",8954.05,Silver,1 +364,John King,lindaedwards@knapp-graham.com,2021-12-07,"{""language"": ""FR"", ""currency"": ""GBP""}",3030.71,Bronze,1 +365,Robert Duke,lmitchell@meza.org,2021-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4541.82,Silver,1 +366,James Harding,tonyperez@hotmail.com,2021-09-09,"{""language"": ""FR"", ""currency"": ""EUR""}",5523.84,Silver,0 +367,Traci Blanchard,acase@hotmail.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5813.65,Bronze,1 +368,Desiree Smith,rholmes@yahoo.com,2020-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",1147.42,Bronze,1 +369,Heather Randolph,laustin@lewis.info,2021-02-20,"{""language"": ""EN"", ""currency"": ""CAD""}",552.69,Gold,0 +370,Doris Ferguson MD,uhubbard@yahoo.com,2023-03-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5884.23,Gold,1 +371,Amanda Robinson,iramos@hotmail.com,2020-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4157.17,Gold,1 +372,Michael Esparza,njenkins@george.info,2019-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",1780.9,Silver,0 +373,Laura Weaver,zamorapriscilla@hernandez.com,2021-10-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9180.76,Silver,1 +374,Samuel Ellison,ccrawford@hotmail.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",6823.76,Silver,0 +375,Christopher Fisher,xwilcox@jimenez.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""GBP""}",1560.14,Silver,0 +376,Erika Snyder,mpalmer@yahoo.com,2020-11-19,"{""language"": ""FR"", ""currency"": ""MXN""}",755.18,Silver,0 +377,Eduardo Shea,santostaylor@jones.com,2020-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",720.21,Silver,1 +378,Christina Velazquez,vharris@braun.com,2020-10-14,"{""language"": ""DE"", ""currency"": ""CAD""}",4241.92,Silver,1 +379,Spencer White,ddiaz@stephenson.com,2022-06-17,"{""language"": ""FR"", ""currency"": ""EUR""}",1277.35,Bronze,0 +380,Patrick Davis,lisacobb@yahoo.com,2022-07-04,"{""language"": ""ES"", ""currency"": ""MXN""}",3173.3,Gold,1 +381,Vanessa Smith,michelle11@hotmail.com,2023-10-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6587.4,Bronze,0 +382,Benjamin Harris,lanekelly@mercer.com,2022-02-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4469.8,Gold,1 +383,Larry Elliott,stevensonlisa@gmail.com,2023-10-17,"{""language"": ""DE"", ""currency"": ""USD""}",3325.81,Gold,1 +384,Daniel Fleming,thompsonlauren@johnson.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",651.6,Bronze,1 +385,Tiffany Osborn,ucarter@robertson-nelson.net,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",9760.53,Bronze,1 +386,Sarah Patterson,christopherharper@gmail.com,2020-08-06,"{""language"": ""EN"", ""currency"": ""GBP""}",6643.36,Gold,1 +387,Kelsey Ferguson,loretta24@brown-ross.biz,2020-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7571.47,Gold,1 +388,Ashley Boyd,shernandez@hotmail.com,2022-01-29,"{""language"": ""ES"", ""currency"": ""MXN""}",3637.17,Bronze,1 +389,Cheyenne Ramirez,lrobles@gmail.com,2024-09-21,"{""language"": ""EN"", ""currency"": ""EUR""}",9009.13,Bronze,1 +390,Heather Reed,aliciacarter@gmail.com,2020-11-24,"{""language"": ""FR"", ""currency"": ""EUR""}",4409.76,Gold,1 +391,Richard Arnold,cathy73@yahoo.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",1936.51,Silver,1 +392,Drew Powell,welchcassandra@ward-bailey.net,2020-09-18,"{""language"": ""DE"", ""currency"": ""MXN""}",7962.44,Silver,1 +393,Courtney Horton,cholloway@bryan-george.org,2020-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8281.48,Bronze,0 +394,Mrs. Cindy Clark,ricky17@gmail.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4384.1,Gold,0 +395,Emily Garcia,hicksamanda@allen-carrillo.info,2024-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",9611.53,Gold,0 +396,Nancy Brock,shelley40@gmail.com,2023-08-29,"{""language"": ""FR"", ""currency"": ""MXN""}",2003.44,Silver,1 +397,Tim Williams,andreabarnes@allen.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""USD""}",637.54,Silver,0 +398,Mariah Gomez,amy53@hotmail.com,2022-09-03,"{""language"": ""FR"", ""currency"": ""GBP""}",1775.9,Bronze,1 +399,Katie Ochoa,gordonbrandon@hotmail.com,2023-08-30,"{""language"": ""DE"", ""currency"": ""USD""}",6730.95,Gold,0 +400,Taylor Gross,jonessteven@mccoy-morrison.info,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",7817.82,Silver,0 +401,John Brown,bowmannicholas@warren.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5938.84,Silver,1 +402,Sandra Hamilton,hmartinez@yahoo.com,2020-12-23,"{""language"": ""ES"", ""currency"": ""MXN""}",3844.26,Silver,1 +403,William Lara,hwilson@bishop-logan.com,2021-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",339.03,Gold,0 +404,Eric Wilson,clarkwilliam@robinson.com,2021-04-19,"{""language"": ""EN"", ""currency"": ""CAD""}",8584.99,Bronze,0 +405,Theresa Martinez,katherinefranco@yahoo.com,2022-03-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9413.22,Silver,1 +406,Alicia Gardner,jacobnichols@hotmail.com,2020-10-29,"{""language"": ""DE"", ""currency"": ""CAD""}",5685.35,Gold,0 +407,Mackenzie Estrada,carolynavila@perez.com,2024-01-06,"{""language"": ""FR"", ""currency"": ""CAD""}",1349.0,Gold,0 +408,Karen Page,natalie92@becker.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9689.32,Silver,1 +409,Theresa Fitzgerald,robert87@hotmail.com,2022-04-27,"{""language"": ""FR"", ""currency"": ""CAD""}",9125.95,Gold,0 +410,Ashley Johnson,johnsonrebecca@johnson.com,2020-04-18,"{""language"": ""ES"", ""currency"": ""USD""}",5419.03,Silver,0 +411,Sean Moran,nosborne@smith-allen.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""GBP""}",8174.17,Bronze,1 +412,Holly Castillo,johnsonmary@gardner.biz,2019-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6402.57,Silver,0 +413,Jill Sanford,kimberly17@martinez-hernandez.com,2021-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",4866.47,Silver,0 +414,Mark Conley II,andrewskaren@edwards-jones.com,2021-10-19,"{""language"": ""ES"", ""currency"": ""CAD""}",3357.75,Gold,1 +415,Whitney Miller,qgonzales@gmail.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""EUR""}",6455.3,Bronze,0 +416,Emily Shaw,adamsalexa@gmail.com,2024-05-22,"{""language"": ""FR"", ""currency"": ""USD""}",6521.97,Gold,1 +417,Eugene Schultz,breanna66@yahoo.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""MXN""}",2571.57,Bronze,1 +418,Tommy Bullock,anthonymeza@gmail.com,2023-03-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5962.1,Gold,1 +419,Sara Dudley,xcox@gmail.com,2022-06-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2668.92,Silver,0 +420,Stephen Steele,angelabanks@yahoo.com,2023-12-28,"{""language"": ""ES"", ""currency"": ""EUR""}",8176.29,Bronze,0 +421,Abigail Mcmahon,sean67@trevino.info,2020-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",728.38,Silver,0 +422,David Jenkins,lauren71@gmail.com,2021-11-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7941.7,Bronze,1 +423,Angela Ward,shawnrice@garrett-jackson.org,2024-06-04,"{""language"": ""FR"", ""currency"": ""MXN""}",9502.06,Gold,0 +424,James Bray,andrenewman@gilbert-gillespie.biz,2020-02-28,"{""language"": ""ES"", ""currency"": ""GBP""}",4014.86,Gold,1 +425,Andre Campbell,xclements@bradshaw-lucas.com,2021-09-10,"{""language"": ""IT"", ""currency"": ""GBP""}",9923.52,Bronze,1 +426,Timothy Armstrong,morgandorothy@hotmail.com,2024-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",6884.93,Silver,1 +427,Adam Larson,smithbrittany@perez.net,2021-11-30,"{""language"": ""EN"", ""currency"": ""USD""}",5552.15,Bronze,1 +428,Nicole Johnson,hendersonsteven@yahoo.com,2021-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",6290.56,Bronze,1 +429,Andrew Baker,qmiller@gmail.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",5402.21,Bronze,1 +430,Jessica Keller,bwest@martinez.com,2024-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",8742.7,Silver,0 +431,Amber Miller,pjenkins@gmail.com,2020-01-02,"{""language"": ""IT"", ""currency"": ""MXN""}",9234.09,Silver,0 +432,Carol West,lori69@hotmail.com,2022-10-24,"{""language"": ""EN"", ""currency"": ""USD""}",1423.9,Gold,1 +433,Richard Hatfield,reedcynthia@yahoo.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""CAD""}",3613.48,Gold,1 +434,Brittany Bishop,kaylacisneros@jordan.org,2024-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",5801.26,Silver,1 +435,Adam Wade Jr.,morrisondaniel@hotmail.com,2021-06-01,"{""language"": ""EN"", ""currency"": ""CAD""}",9182.73,Silver,1 +436,Kevin Graham,judith05@butler.biz,2023-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7871.77,Bronze,1 +437,Jeff Pace,richardcraig@mclaughlin-davila.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",3918.6,Bronze,1 +438,Javier Coleman,larrypatrick@yahoo.com,2024-07-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1477.62,Silver,0 +439,Daniel Stevens,luispope@hotmail.com,2020-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",6127.79,Gold,0 +440,Jessica Anderson,kimberly65@vang.info,2024-09-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4796.17,Gold,0 +441,Rachel Estrada,conleyjennifer@gmail.com,2021-12-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2989.6,Bronze,0 +442,Robin Davis,jlopez@vazquez-newman.com,2021-05-17,"{""language"": ""DE"", ""currency"": ""CAD""}",9492.07,Bronze,1 +443,Robert Spencer,iholloway@yahoo.com,2024-05-04,"{""language"": ""EN"", ""currency"": ""MXN""}",88.72,Silver,1 +444,Kristi Murphy,lauramiller@hicks-evans.com,2022-09-17,"{""language"": ""ES"", ""currency"": ""EUR""}",9889.91,Gold,0 +445,Frederick Smith,pgillespie@palmer.net,2020-12-10,"{""language"": ""ES"", ""currency"": ""MXN""}",314.02,Gold,0 +446,Jennifer Mcgee,qbrown@jenkins.net,2020-03-26,"{""language"": ""ES"", ""currency"": ""CAD""}",139.6,Gold,1 +447,Michael Glover,zdawson@yahoo.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",7670.15,Gold,0 +448,Joseph Terry,christopherbarnett@gmail.com,2023-03-29,"{""language"": ""ES"", ""currency"": ""EUR""}",4897.28,Gold,0 +449,Cory Gonzales,hsmith@hotmail.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6920.83,Gold,0 +450,Anthony Hebert,hallmark@hotmail.com,2021-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",5727.92,Bronze,0 +451,Natasha Mckinney,austin92@yahoo.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9021.51,Bronze,1 +452,Keith Frost,bclark@johnson.info,2023-03-09,"{""language"": ""IT"", ""currency"": ""GBP""}",8374.34,Bronze,1 +453,John Burton,denise83@smith.org,2022-05-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5362.71,Bronze,0 +454,Timothy Guerrero,taylorjones@miller-davis.com,2023-12-22,"{""language"": ""ES"", ""currency"": ""USD""}",7402.88,Bronze,0 +455,Victoria Smith,mariah82@bennett-boyd.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",2147.27,Gold,0 +456,Veronica Wilson,lsutton@yahoo.com,2021-11-01,"{""language"": ""ES"", ""currency"": ""EUR""}",7366.12,Bronze,1 +457,Jennifer Meyer,xjohnson@gmail.com,2021-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",5290.37,Silver,0 +458,Erin Miller,vnewman@gmail.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""USD""}",947.97,Bronze,1 +459,Sandra Miller,valdezdarius@gmail.com,2022-05-13,"{""language"": ""IT"", ""currency"": ""USD""}",4125.58,Gold,0 +460,Ann Griffith,matthewhall@paul.com,2022-12-14,"{""language"": ""FR"", ""currency"": ""EUR""}",8413.15,Silver,0 +461,Brian Murphy,wclark@davenport.biz,2021-06-02,"{""language"": ""ES"", ""currency"": ""EUR""}",7235.36,Bronze,1 +462,Colleen Perez,walkerstacy@harrison.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""EUR""}",1441.88,Bronze,0 +463,Shelly Warner,robert59@sullivan-weaver.com,2024-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9245.52,Gold,0 +464,Dawn Holland,christophersanchez@martin.org,2020-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",3585.76,Gold,0 +465,Tamara Lamb,jacobfrazier@yahoo.com,2020-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8004.44,Bronze,0 +466,Alicia Johnson,tammychristian@webb.com,2024-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",4574.95,Bronze,0 +467,Andrew Guerrero,daniel50@dixon-anderson.com,2023-11-17,"{""language"": ""EN"", ""currency"": ""EUR""}",9663.01,Bronze,1 +468,Juan Davidson,ybeck@anderson.com,2022-06-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9486.87,Bronze,1 +469,Alexander Wilkins,ipatel@osborn-harrington.net,2020-07-20,"{""language"": ""IT"", ""currency"": ""USD""}",2255.67,Gold,0 +470,Vanessa Sanders,brandon69@hotmail.com,2022-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",4951.29,Bronze,0 +471,Mr. Charles Dixon DDS,christine33@hotmail.com,2023-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1303.06,Gold,0 +472,Andrew Smith,joseph07@hotmail.com,2023-12-21,"{""language"": ""DE"", ""currency"": ""GBP""}",4412.66,Bronze,0 +473,Dorothy Davis,zjackson@hotmail.com,2024-07-01,"{""language"": ""EN"", ""currency"": ""MXN""}",3872.27,Bronze,0 +474,Harold Daniel,ihardy@gmail.com,2023-03-16,"{""language"": ""IT"", ""currency"": ""USD""}",921.72,Bronze,1 +475,Ashlee Ross,floresbrandy@johnson.com,2020-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7599.65,Gold,0 +476,David Torres,katiereynolds@gmail.com,2022-02-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5065.85,Bronze,0 +477,Elizabeth King,djohnson@coleman.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",8672.67,Silver,1 +478,Todd Salazar,joeryan@gmail.com,2020-10-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9619.79,Gold,0 +479,Derek Baker,gardnerrodney@hotmail.com,2023-02-15,"{""language"": ""DE"", ""currency"": ""MXN""}",6921.15,Silver,1 +480,Erin Smith,debbiewaters@santos.net,2022-04-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9094.07,Silver,1 +481,Veronica Robinson,bpowell@graham.org,2021-11-10,"{""language"": ""IT"", ""currency"": ""GBP""}",8323.94,Bronze,0 +482,David Nicholson,bmcfarland@adams.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",9025.98,Gold,0 +483,Jennifer Greene,morrisonraymond@hotmail.com,2023-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",1386.83,Bronze,1 +484,Kevin Mason,benjamin92@nguyen.com,2023-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",2159.77,Gold,0 +485,Travis Pierce,shaun58@coleman.com,2022-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",3992.04,Gold,1 +486,Arthur Chapman,zalexander@gmail.com,2022-05-12,"{""language"": ""DE"", ""currency"": ""GBP""}",1027.37,Gold,1 +487,Luke Silva,melissamccullough@hotmail.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""GBP""}",9727.6,Bronze,1 +488,Benjamin Johnson,wbutler@nguyen.org,2024-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",322.07,Gold,0 +489,Teresa King,benjamin83@gmail.com,2023-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",6476.83,Gold,0 +490,Roberta Ramirez,charles83@taylor-stanley.biz,2023-09-01,"{""language"": ""FR"", ""currency"": ""MXN""}",5403.77,Bronze,1 +491,Jeremy Smith,wilsonnancy@hotmail.com,2021-08-24,"{""language"": ""EN"", ""currency"": ""USD""}",4264.34,Gold,0 +492,Dana Russo,stevenwillis@hotmail.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8504.71,Bronze,0 +493,Michaela Collins,angela14@yahoo.com,2021-08-25,"{""language"": ""EN"", ""currency"": ""CAD""}",886.78,Bronze,0 +494,Brittney Gutierrez,erika12@duncan.info,2019-12-23,"{""language"": ""ES"", ""currency"": ""EUR""}",698.88,Gold,1 +495,Kristine Singh,kathleen92@hodge.com,2021-08-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2852.75,Silver,1 +496,Matthew Summers,cwalters@barnes.com,2023-10-21,"{""language"": ""ES"", ""currency"": ""GBP""}",4614.78,Bronze,1 +497,Scott Ingram,bryanbrenda@yahoo.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""EUR""}",6083.14,Silver,1 +498,Calvin Martin,jordanmyers@gmail.com,2024-09-29,"{""language"": ""IT"", ""currency"": ""USD""}",6029.56,Gold,1 +499,Adriana Peterson,john07@hotmail.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4639.27,Bronze,1 +500,Joshua Mathis,maria45@hotmail.com,2020-09-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8900.14,Silver,0 +501,Christopher Wilson,joshualyons@walsh.info,2022-10-09,"{""language"": ""FR"", ""currency"": ""EUR""}",1620.96,Silver,0 +502,Mary Lawrence,wholt@diaz.com,2022-08-17,"{""language"": ""IT"", ""currency"": ""GBP""}",1391.93,Gold,0 +503,Jackie Hall,elee@roberson.com,2020-03-05,"{""language"": ""FR"", ""currency"": ""GBP""}",5901.66,Silver,1 +504,Krystal Garcia,oliviamclean@yahoo.com,2023-12-20,"{""language"": ""IT"", ""currency"": ""MXN""}",2692.19,Silver,0 +505,Daniel Ray,fvalenzuela@hotmail.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",2477.72,Bronze,1 +506,Jack Green,bobby21@stanley.org,2024-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",256.6,Silver,0 +507,Tonya Gilbert,xstone@gmail.com,2021-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",9670.95,Gold,1 +508,Alicia Jackson,andersonluis@hotmail.com,2020-01-06,"{""language"": ""FR"", ""currency"": ""EUR""}",167.55,Bronze,1 +509,Natalie Williams,troberts@gmail.com,2022-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",4824.22,Bronze,1 +510,David Kemp,phelpscaitlin@mcintosh.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",3299.34,Gold,0 +511,Michelle Bush,carolsanchez@lang-villanueva.info,2023-10-29,"{""language"": ""DE"", ""currency"": ""GBP""}",6416.49,Silver,1 +512,Troy Trujillo,jennifersharp@gmail.com,2023-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",9776.61,Bronze,1 +513,Justin Savage,bradshawjessica@hotmail.com,2020-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",5302.04,Gold,1 +514,Mary Perry,lisaandrews@williamson-griffin.com,2022-08-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2368.57,Gold,1 +515,Jimmy Gonzalez,michele47@ferguson.net,2022-02-05,"{""language"": ""EN"", ""currency"": ""USD""}",3257.15,Silver,0 +516,Caitlin Silva,glenn02@yahoo.com,2023-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3491.65,Bronze,1 +517,David Abbott,stephaniefoley@yahoo.com,2020-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",358.52,Silver,1 +518,James Rodriguez,omelendez@yahoo.com,2023-03-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8456.43,Bronze,0 +519,Natasha Cunningham,schultzdana@hotmail.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""USD""}",203.48,Gold,1 +520,Erica Morales,ustevenson@yahoo.com,2021-03-11,"{""language"": ""DE"", ""currency"": ""GBP""}",1283.72,Gold,1 +521,Ryan Carney,bherrera@wheeler-velasquez.net,2022-06-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3338.85,Gold,1 +522,Timothy Hanna,steven28@yahoo.com,2024-02-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2709.6,Silver,1 +523,Amy Morgan,sandralong@carter.biz,2023-02-23,"{""language"": ""ES"", ""currency"": ""USD""}",1508.34,Silver,0 +524,Rhonda Bruce,jduncan@yahoo.com,2024-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2739.92,Silver,0 +525,Jonathan Thomas,gonzalezcheryl@shelton.com,2022-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",2839.03,Gold,0 +526,Erin Middleton,tbrowning@gmail.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""CAD""}",5132.85,Silver,1 +527,Melissa Taylor,tonya55@rhodes.biz,2021-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",9768.31,Gold,1 +528,Patrick Davidson,jimenezsamuel@gross-watkins.info,2020-09-01,"{""language"": ""IT"", ""currency"": ""EUR""}",9803.79,Gold,0 +529,Wendy Schneider,parksstephen@hudson-johnson.biz,2024-08-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9531.05,Gold,0 +530,Michael Spears,chardy@gomez.org,2024-07-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4542.99,Silver,0 +531,John Ewing,hallalicia@martinez.net,2024-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",4489.81,Silver,1 +532,Richard Miller,russell87@gmail.com,2020-07-26,"{""language"": ""ES"", ""currency"": ""CAD""}",4507.01,Gold,0 +533,Pam Gordon,rossmelinda@rose.com,2022-12-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1173.07,Gold,1 +534,Kimberly Olson,heatherwilliams@gmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7852.51,Bronze,1 +535,Christopher Bennett,erica81@davis-franklin.org,2022-06-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8341.79,Silver,1 +536,Teresa Fields,aaronrodriguez@hotmail.com,2020-07-20,"{""language"": ""ES"", ""currency"": ""EUR""}",4036.88,Silver,0 +537,Megan Hahn,elainesimmons@hotmail.com,2020-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",4171.15,Gold,0 +538,Nancy Olson,vyoung@wood.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""MXN""}",5522.98,Silver,0 +539,Ms. Pamela Morris,lmclean@gmail.com,2024-08-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1705.37,Bronze,1 +540,Emma Johnson,richmondjerry@butler.net,2021-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",1913.3,Silver,1 +541,Lindsay Simmons,andersoncindy@gmail.com,2024-05-07,"{""language"": ""FR"", ""currency"": ""MXN""}",430.66,Bronze,1 +542,Ann Campbell,cdoyle@hotmail.com,2024-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9682.43,Silver,0 +543,Trevor Gibson,ajackson@gmail.com,2021-11-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3872.02,Bronze,0 +544,Heidi Murphy,donald79@williams.net,2021-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",4924.96,Bronze,0 +545,Robert Brown,imarshall@richardson.info,2020-11-29,"{""language"": ""IT"", ""currency"": ""USD""}",5365.08,Silver,1 +546,Joshua Little,christophermcdonald@hancock-king.com,2020-06-29,"{""language"": ""DE"", ""currency"": ""USD""}",1616.33,Silver,0 +547,Jennifer Vaughan,nelsonandrew@hicks.com,2024-05-10,"{""language"": ""ES"", ""currency"": ""USD""}",5894.91,Gold,1 +548,Ryan Huang,tmack@ferguson.info,2020-11-04,"{""language"": ""FR"", ""currency"": ""EUR""}",873.33,Gold,0 +549,Sarah Kramer,debrahudson@alexander-church.com,2022-09-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8841.99,Gold,1 +550,Thomas Moore,rachelhenderson@hotmail.com,2020-06-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2401.35,Silver,1 +551,Carlos Herring,michaelrobinson@hotmail.com,2020-07-07,"{""language"": ""DE"", ""currency"": ""CAD""}",8399.1,Bronze,0 +552,Brianna Harris,stonerichard@brock-williams.com,2020-09-22,"{""language"": ""FR"", ""currency"": ""GBP""}",4040.48,Bronze,1 +553,Craig Butler,youngkristina@robinson.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7272.82,Silver,1 +554,Andrew Bryant,jenniferjackson@lambert.net,2021-12-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5416.91,Silver,1 +555,Elizabeth Moyer,wnelson@west.org,2024-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9589.35,Silver,1 +556,Katherine Smith,qfoster@smith.com,2020-03-31,"{""language"": ""DE"", ""currency"": ""MXN""}",1449.07,Bronze,0 +557,Paul Johnson,wilsonvanessa@miller.com,2020-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",7284.2,Bronze,0 +558,Rebecca Cochran,michelehoffman@pierce.com,2020-12-21,"{""language"": ""ES"", ""currency"": ""USD""}",3978.18,Gold,0 +559,Mr. Timothy Tanner,ann20@yahoo.com,2024-08-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6417.51,Gold,0 +560,David Greene,eyoung@hotmail.com,2023-02-21,"{""language"": ""ES"", ""currency"": ""MXN""}",7919.09,Silver,1 +561,Carl Snyder,rmalone@dougherty-mclean.info,2021-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",6847.15,Gold,0 +562,Megan Dawson,floressarah@castro.org,2022-10-11,"{""language"": ""EN"", ""currency"": ""USD""}",3607.83,Bronze,1 +563,Mark Wood,richmondashley@hotmail.com,2020-03-04,"{""language"": ""IT"", ""currency"": ""USD""}",8039.56,Gold,1 +564,Marcus Gomez,josephrodriguez@hotmail.com,2024-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6286.03,Bronze,0 +565,Troy Walker,harrismatthew@watson-johnson.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7367.94,Silver,1 +566,Dennis Peterson,briggsderek@hotmail.com,2022-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",8718.43,Silver,1 +567,Patricia Paul,jeremycain@walsh.org,2020-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",1854.02,Gold,1 +568,Sandra Berg,ofoley@jones.com,2020-04-22,"{""language"": ""ES"", ""currency"": ""MXN""}",9173.58,Gold,0 +569,Jennifer Munoz,kimberlymeyers@padilla-mueller.biz,2021-10-27,"{""language"": ""EN"", ""currency"": ""EUR""}",521.99,Silver,1 +570,April Johnson,kelly03@wood.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3377.13,Gold,0 +571,Michelle Brown PhD,walterdonovan@smith-stewart.com,2022-01-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6772.7,Gold,1 +572,Alison Mckee,terri17@brandt-smith.com,2020-11-12,"{""language"": ""IT"", ""currency"": ""MXN""}",2879.91,Silver,0 +573,Kenneth Williams,matthew75@hotmail.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""USD""}",4338.28,Gold,1 +574,Dale Barnett II,sbennett@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1524.8,Silver,1 +575,Edward Matthews,robertojohnson@velasquez-morris.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7328.12,Silver,0 +576,Mathew Brown,phelpskevin@wells-medina.net,2024-08-09,"{""language"": ""IT"", ""currency"": ""MXN""}",2817.66,Bronze,0 +577,Lori Ortiz,deanstone@gmail.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",8578.88,Bronze,0 +578,Daniel Soto,edecker@hotmail.com,2023-02-04,"{""language"": ""IT"", ""currency"": ""USD""}",1157.38,Bronze,0 +579,Barbara Carson,michaelhull@gmail.com,2020-04-20,"{""language"": ""ES"", ""currency"": ""EUR""}",6248.72,Gold,1 +580,James Phillips,fgriffin@robertson.com,2021-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",1088.59,Silver,0 +581,Robert White,steven46@brown.com,2024-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",9372.27,Bronze,1 +582,Jermaine Jackson,christopher42@kemp.org,2023-07-24,"{""language"": ""DE"", ""currency"": ""USD""}",8344.65,Gold,0 +583,Monica James,matthewbond@gmail.com,2021-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",5861.37,Gold,1 +584,Joseph Brown,ricky59@fischer.info,2021-08-05,"{""language"": ""FR"", ""currency"": ""CAD""}",7102.37,Gold,1 +585,Richard Thomas,boltonlori@sanford-leonard.com,2023-04-23,"{""language"": ""FR"", ""currency"": ""EUR""}",8352.8,Silver,1 +586,Dalton Hudson,maryfernandez@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""MXN""}",8691.92,Bronze,0 +587,Steven Smith,morrisonlisa@yahoo.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""GBP""}",6161.87,Gold,0 +588,Timothy Carroll,christy35@baker-logan.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",9465.31,Gold,0 +589,Antonio Valenzuela,anthonyfuller@gmail.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""MXN""}",6918.3,Gold,0 +590,Donna Ross,chad88@hotmail.com,2023-12-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2224.41,Gold,1 +591,Randall Joseph,smithfrancisco@luna.org,2020-10-02,"{""language"": ""DE"", ""currency"": ""CAD""}",3800.89,Silver,0 +592,Sandra Joyce,gravesmichael@mcneil-miller.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9731.6,Gold,0 +593,Craig Johnson,stewartpatricia@hotmail.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1810.82,Bronze,1 +594,James Morgan,alishaoliver@gmail.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",6197.63,Gold,1 +595,Patty Lewis,wadeshelley@jones.com,2021-12-08,"{""language"": ""DE"", ""currency"": ""GBP""}",4393.88,Gold,0 +596,Andrew Berger,tmaddox@yahoo.com,2021-08-31,"{""language"": ""EN"", ""currency"": ""MXN""}",4376.35,Gold,1 +597,William Hall,brittanypalmer@gmail.com,2023-03-07,"{""language"": ""ES"", ""currency"": ""GBP""}",9286.03,Bronze,1 +598,Thomas Reed,bonnie33@gmail.com,2020-01-31,"{""language"": ""DE"", ""currency"": ""MXN""}",3102.29,Bronze,1 +599,Nicole Rosales,charleschapman@hotmail.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",9979.18,Silver,1 +600,Joshua Shaw,bgreer@adams-thompson.com,2020-02-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1126.22,Gold,1 +601,Jason Morales,dustin82@gmail.com,2023-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8445.29,Gold,0 +602,Andrea Hall,taylor87@chaney.com,2022-11-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1034.43,Silver,0 +603,Jennifer Ford,rogerskinner@brown.net,2021-06-06,"{""language"": ""ES"", ""currency"": ""USD""}",3711.5,Gold,1 +604,Adrian Brown,vicki20@salinas.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""USD""}",3012.94,Silver,1 +605,Christopher Jordan IV,callahankathy@gmail.com,2021-08-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2177.74,Bronze,0 +606,Michelle Bradley,april79@gmail.com,2021-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",2319.18,Bronze,0 +607,Michael Thomas,keithcantu@lowe.com,2023-02-15,"{""language"": ""ES"", ""currency"": ""GBP""}",5799.79,Bronze,1 +608,Michael Murphy,sarahcalhoun@yahoo.com,2024-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",3314.23,Bronze,0 +609,Jennifer Powers,raymond46@cox-phillips.com,2020-11-28,"{""language"": ""IT"", ""currency"": ""CAD""}",3846.88,Silver,1 +610,Wendy Webb,iparker@yahoo.com,2021-12-28,"{""language"": ""ES"", ""currency"": ""MXN""}",4732.83,Bronze,1 +611,Dennis Young,thompsoncassandra@hotmail.com,2024-12-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3553.41,Bronze,1 +612,Tiffany Frank,limichele@ryan.net,2022-10-05,"{""language"": ""IT"", ""currency"": ""USD""}",7220.63,Gold,0 +613,Vanessa Ayala,ubailey@gmail.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6743.33,Gold,1 +614,Mark Edwards DVM,johnduncan@thomas.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""EUR""}",5250.16,Gold,0 +615,Catherine Schneider,harrisbrittany@soto.com,2022-05-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2124.91,Gold,1 +616,Donald Valdez,brittanystokes@hotmail.com,2022-11-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7738.3,Bronze,1 +617,Michael Adams,hjohnson@hotmail.com,2022-12-26,"{""language"": ""FR"", ""currency"": ""MXN""}",6617.5,Bronze,0 +618,Timothy Hicks,hernandezmary@hotmail.com,2023-07-18,"{""language"": ""IT"", ""currency"": ""GBP""}",5979.64,Bronze,1 +619,Grant Schultz,nelsoneileen@hotmail.com,2020-07-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3394.04,Bronze,1 +620,Shannon Johnson,suzanne08@gmail.com,2023-10-28,"{""language"": ""DE"", ""currency"": ""USD""}",6827.53,Silver,1 +621,Jason Schneider,nicole26@gmail.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",2897.84,Bronze,1 +622,Cynthia George,jillstone@gmail.com,2024-03-09,"{""language"": ""FR"", ""currency"": ""USD""}",2542.51,Silver,0 +623,Michelle Baker,bethanyjohnson@gmail.com,2021-06-07,"{""language"": ""ES"", ""currency"": ""USD""}",2502.92,Silver,0 +624,Kenneth Miller,amandaanderson@yahoo.com,2024-10-14,"{""language"": ""DE"", ""currency"": ""CAD""}",8926.77,Gold,0 +625,Stacey Drake,iburgess@yahoo.com,2020-01-07,"{""language"": ""ES"", ""currency"": ""GBP""}",9912.45,Gold,1 +626,Amy Turner,dhall@lopez.biz,2021-05-04,"{""language"": ""DE"", ""currency"": ""EUR""}",927.95,Silver,0 +627,Jessica Simpson,aellis@yahoo.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5682.27,Bronze,0 +628,Crystal Sullivan,guerrapaige@rodriguez.org,2022-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",720.87,Gold,1 +629,Kara Alvarez,roylatasha@perez.com,2024-06-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1398.66,Silver,1 +630,Kyle Rivera,hscott@flowers.com,2020-06-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1836.85,Gold,1 +631,Robert Andrade,qkelly@ortiz.net,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",7365.01,Bronze,1 +632,Patricia Cook,rmcdonald@quinn-williams.com,2022-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",4882.19,Silver,0 +633,Stephen Bowen,taylorhopkins@hotmail.com,2023-06-15,"{""language"": ""EN"", ""currency"": ""EUR""}",3192.94,Bronze,1 +634,Eric Rodriguez,hallshannon@mccoy.com,2024-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",1165.71,Silver,1 +635,Jordan Mathis,ericafoster@yahoo.com,2020-06-23,"{""language"": ""EN"", ""currency"": ""GBP""}",7216.47,Silver,1 +636,Amy Johnson,christophergilbert@yahoo.com,2021-07-15,"{""language"": ""FR"", ""currency"": ""MXN""}",5663.1,Silver,1 +637,Jessica Mcknight,anthonylittle@parker.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""USD""}",1770.38,Silver,1 +638,Jamie Smith,trobinson@gmail.com,2021-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",1249.92,Bronze,1 +639,Sarah Hicks,rsandoval@gmail.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3972.79,Gold,0 +640,Trevor Oliver,mistycastillo@hotmail.com,2020-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9186.62,Gold,1 +641,Craig Steele,brittanygarcia@smith-colon.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8742.23,Gold,0 +642,Devin Mckee,angelafranklin@berry.biz,2022-08-23,"{""language"": ""DE"", ""currency"": ""GBP""}",5855.92,Bronze,1 +643,Jesse Manning,nicolas64@fischer-blevins.biz,2022-05-30,"{""language"": ""DE"", ""currency"": ""MXN""}",1469.65,Silver,0 +644,Nicholas Campbell,danielwise@carter.biz,2020-08-27,"{""language"": ""ES"", ""currency"": ""GBP""}",3000.35,Silver,1 +645,Brian Lynch,juarezanthony@hotmail.com,2023-11-23,"{""language"": ""ES"", ""currency"": ""EUR""}",8971.67,Bronze,1 +646,Cameron Price,harrischristine@hotmail.com,2022-10-02,"{""language"": ""IT"", ""currency"": ""MXN""}",2199.05,Gold,0 +647,Norma Solomon,josehart@ortiz.com,2023-06-23,"{""language"": ""DE"", ""currency"": ""GBP""}",323.21,Gold,1 +648,Patricia Keller,bcampbell@yahoo.com,2023-01-27,"{""language"": ""DE"", ""currency"": ""EUR""}",5050.97,Gold,1 +649,Beverly Sullivan,mwest@hotmail.com,2021-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",4714.45,Bronze,0 +650,Justin Gill,lherman@yahoo.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""USD""}",1610.34,Gold,1 +651,Kristen Taylor,jennifer16@gmail.com,2021-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5073.09,Silver,0 +652,Leonard Smith,nwilliams@white.org,2024-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",9465.77,Silver,0 +653,Savannah Castro,wilkinskyle@jones.biz,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",6377.21,Gold,1 +654,Joyce Mcgee,jboyle@gmail.com,2023-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",8103.62,Bronze,1 +655,Craig Lang,sandra01@burton.com,2024-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1878.65,Silver,1 +656,Ashley Ward,tiffany09@miller-harrison.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8029.15,Silver,1 +657,Peter Fleming,angelicagraham@hotmail.com,2020-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",3297.17,Silver,1 +658,Justin Johnson,grossthomas@white-fields.biz,2024-03-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7483.86,Silver,0 +659,Lisa Mitchell,wrightkaren@gmail.com,2023-02-14,"{""language"": ""DE"", ""currency"": ""GBP""}",7330.9,Silver,1 +660,Nancy Contreras,dreed@hanna.net,2023-04-17,"{""language"": ""IT"", ""currency"": ""USD""}",9101.64,Silver,1 +661,Teresa Howard,welchcharles@freeman.com,2024-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",6241.58,Bronze,0 +662,David Green,judithsherman@gmail.com,2020-07-02,"{""language"": ""IT"", ""currency"": ""MXN""}",7547.64,Silver,0 +663,Gabriella Zimmerman,johnsonmarie@young-coleman.info,2022-08-07,"{""language"": ""EN"", ""currency"": ""EUR""}",725.99,Bronze,0 +664,John Watson,patricia58@yahoo.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""EUR""}",3537.86,Bronze,1 +665,Jesus Boyle,amanda76@gmail.com,2020-02-29,"{""language"": ""ES"", ""currency"": ""EUR""}",4778.07,Gold,1 +666,Scott Hall,jonathanhall@pruitt.net,2020-02-10,"{""language"": ""IT"", ""currency"": ""EUR""}",3510.5,Gold,0 +667,Lisa Boyd,davidmitchell@yahoo.com,2022-07-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6865.4,Bronze,0 +668,Casey Moore,michelle56@smith-mercer.org,2020-12-25,"{""language"": ""IT"", ""currency"": ""MXN""}",7443.0,Bronze,1 +669,Bradley Crawford,oadams@yahoo.com,2020-12-01,"{""language"": ""ES"", ""currency"": ""GBP""}",7328.12,Silver,0 +670,Sandra Jones,crystal20@gmail.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""EUR""}",717.23,Gold,0 +671,Brandon Stewart,shahcrystal@gmail.com,2021-03-24,"{""language"": ""ES"", ""currency"": ""GBP""}",708.5,Bronze,1 +672,Kristen Reyes,dana12@stewart-brown.info,2021-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",4821.88,Gold,1 +673,Robert Lopez,daustin@gmail.com,2021-03-21,"{""language"": ""IT"", ""currency"": ""USD""}",4509.31,Silver,0 +674,Hector Smith,nathansanchez@anderson-warren.com,2022-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2933.2,Gold,0 +675,Walter Schmidt,solomonthomas@aguirre.com,2023-11-17,"{""language"": ""IT"", ""currency"": ""MXN""}",7883.72,Silver,0 +676,Morgan Hill,brownmichelle@gmail.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""MXN""}",5972.67,Silver,1 +677,Melinda Graham,kfreeman@hotmail.com,2023-02-20,"{""language"": ""EN"", ""currency"": ""USD""}",3614.58,Silver,1 +678,Charles Jones,norristammy@gmail.com,2020-06-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3504.21,Gold,0 +679,Lauren Smith,gregory95@morris.com,2024-08-21,"{""language"": ""FR"", ""currency"": ""GBP""}",9952.66,Gold,1 +680,Mr. Mark Blair MD,nicholasgutierrez@parker.com,2023-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",6943.96,Bronze,1 +681,Monica Johnson,maria72@carlson-jackson.com,2021-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",7341.64,Gold,0 +682,Jose Rose,khandavid@bowman.com,2023-09-22,"{""language"": ""IT"", ""currency"": ""MXN""}",6827.78,Silver,1 +683,Kimberly Day,hevans@yahoo.com,2024-06-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1378.3,Bronze,1 +684,Tracy Jones,jose76@levine-mcintyre.com,2020-01-26,"{""language"": ""FR"", ""currency"": ""MXN""}",1259.63,Bronze,0 +685,Christina Bishop,paulcarrillo@white-young.info,2021-12-07,"{""language"": ""EN"", ""currency"": ""EUR""}",9471.13,Silver,1 +686,Tyler Smith,osbornebryan@hotmail.com,2024-08-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7808.9,Gold,0 +687,Dennis Hernandez,isimmons@webb.biz,2021-06-25,"{""language"": ""IT"", ""currency"": ""USD""}",3927.01,Silver,0 +688,Michelle Mitchell,josephwarren@edwards-hubbard.com,2021-04-22,"{""language"": ""DE"", ""currency"": ""CAD""}",8036.12,Gold,0 +689,Brian Atkinson Jr.,woodmonica@hernandez-kelly.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""EUR""}",5949.38,Gold,0 +690,Crystal Rodriguez,lleonard@hotmail.com,2024-10-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8523.76,Gold,0 +691,Gary Mendoza,munozlouis@downs-griffith.com,2021-12-24,"{""language"": ""EN"", ""currency"": ""EUR""}",585.02,Silver,1 +692,Rachel Ramirez,karen00@martinez-bailey.com,2024-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",4696.04,Silver,0 +693,Heather Torres,manuelmontgomery@gmail.com,2021-07-05,"{""language"": ""ES"", ""currency"": ""USD""}",9119.23,Bronze,0 +694,Nicholas Mills,amandasolomon@steele.com,2024-08-01,"{""language"": ""EN"", ""currency"": ""USD""}",774.37,Bronze,1 +695,Justin Luna,simmonsstefanie@gmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",824.69,Bronze,1 +696,Theresa Buchanan,karen16@yahoo.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",1200.56,Silver,1 +697,Alison Castillo,sparkscheryl@hall-joseph.org,2020-12-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1690.79,Bronze,1 +698,Benjamin Little,lharper@hopkins.org,2021-11-06,"{""language"": ""ES"", ""currency"": ""USD""}",3656.72,Bronze,1 +699,Hannah Robinson,kbailey@yahoo.com,2023-03-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9932.58,Silver,0 +700,Matthew Larson,fwoods@rodriguez.org,2020-10-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5371.77,Silver,0 +701,Nicole David,ronald56@mendoza.com,2020-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2768.66,Bronze,0 +702,Dorothy Diaz,lauralam@nash.com,2023-07-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7789.03,Silver,1 +703,Joshua Henry,alowe@yahoo.com,2020-05-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5877.01,Silver,0 +704,Sydney Alvarez,jenkinsvincent@jones-lewis.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",1157.57,Silver,0 +705,Christopher Greene,michelledavis@yahoo.com,2022-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",6651.0,Bronze,0 +706,Katherine Rios,corey38@yahoo.com,2023-04-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5906.39,Gold,0 +707,Shelley Mccall,imelendez@armstrong.net,2021-07-28,"{""language"": ""FR"", ""currency"": ""MXN""}",2315.89,Bronze,0 +708,Sherry Strickland,cjoseph@morris.org,2020-08-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7495.8,Silver,0 +709,Amy Rosales,taylortroy@gmail.com,2023-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",3403.82,Gold,0 +710,Debra Diaz,nkelly@yahoo.com,2023-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6809.64,Gold,0 +711,Ms. Amanda Sandoval DDS,farleykevin@mcdaniel.com,2021-03-04,"{""language"": ""DE"", ""currency"": ""USD""}",8958.64,Bronze,0 +712,James Anthony,allen87@hotmail.com,2023-07-13,"{""language"": ""EN"", ""currency"": ""EUR""}",5323.07,Silver,1 +713,Dr. Anthony Brooks,zrussell@yahoo.com,2022-12-24,"{""language"": ""FR"", ""currency"": ""MXN""}",2580.75,Gold,0 +714,Susan Swanson,jeremy75@gmail.com,2022-09-08,"{""language"": ""DE"", ""currency"": ""USD""}",6127.87,Bronze,0 +715,Vanessa Garcia,david66@ward-pratt.com,2021-09-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2561.3,Gold,0 +716,Nathaniel Green,dennisbarton@ramirez.info,2024-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",1877.83,Silver,0 +717,Alexis Peters,nichole10@daniel-white.net,2022-08-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3148.54,Silver,0 +718,Karen Morales,mlove@gmail.com,2022-08-30,"{""language"": ""FR"", ""currency"": ""EUR""}",5382.81,Silver,0 +719,Dillon Powell,jenniferdavis@lopez.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""GBP""}",2020.19,Bronze,0 +720,Melissa Williams,alexis98@valenzuela.info,2023-11-12,"{""language"": ""ES"", ""currency"": ""USD""}",3606.97,Silver,0 +721,Russell Olson,rebecca09@hotmail.com,2021-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",3501.49,Bronze,1 +722,Erik Hoffman,grice@yahoo.com,2020-12-28,"{""language"": ""FR"", ""currency"": ""MXN""}",2094.99,Gold,1 +723,Michael Leon,heidiallen@gmail.com,2020-01-03,"{""language"": ""ES"", ""currency"": ""EUR""}",1151.0,Silver,0 +724,Amanda Gonzalez,xhall@yahoo.com,2023-09-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3068.19,Gold,1 +725,Mr. Jeremy Black,ipowers@yahoo.com,2020-07-19,"{""language"": ""EN"", ""currency"": ""USD""}",9820.27,Gold,0 +726,Rose Jones,eric05@hill-hernandez.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",638.57,Bronze,0 +727,Russell Kim,clee@hotmail.com,2020-04-16,"{""language"": ""FR"", ""currency"": ""GBP""}",1894.57,Bronze,1 +728,Dustin Vaughn,yramirez@gmail.com,2024-10-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9881.13,Gold,0 +729,Mario Webb,rodney49@gmail.com,2021-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5942.67,Bronze,0 +730,Charlene Little,rstanley@wilson.net,2024-04-14,"{""language"": ""EN"", ""currency"": ""USD""}",2966.83,Silver,1 +731,Haley West,cookmarissa@miller-klein.biz,2023-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",6494.85,Bronze,1 +732,Robert Beasley,qmaxwell@yahoo.com,2021-03-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8532.83,Gold,1 +733,Lauren Taylor,paul62@gmail.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",4508.01,Gold,0 +734,Pamela Murray,kelseymurray@petty.org,2022-08-03,"{""language"": ""ES"", ""currency"": ""USD""}",7777.01,Gold,0 +735,Mark Lloyd,weaveramber@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",2977.97,Gold,1 +736,Timothy Meyer,ryancurtis@horton.com,2020-04-19,"{""language"": ""IT"", ""currency"": ""MXN""}",1783.73,Bronze,1 +737,Misty Hull,codygould@pittman-mckinney.com,2024-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6735.24,Silver,1 +738,Matthew Ruiz,khernandez@gmail.com,2024-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",7174.02,Gold,0 +739,Charles Riddle,allenomar@yahoo.com,2022-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",5430.19,Gold,0 +740,Veronica Hicks,michael44@aguilar.info,2023-08-02,"{""language"": ""ES"", ""currency"": ""EUR""}",6202.26,Gold,0 +741,Karina Pace,ycoleman@rogers.info,2023-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4284.89,Bronze,0 +742,Jonathan Williams,kevinsmith@yahoo.com,2022-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",3343.94,Gold,1 +743,Janet Patton,torr@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5152.36,Silver,0 +744,Tiffany Garza,davidjohnson@soto.com,2024-01-10,"{""language"": ""FR"", ""currency"": ""CAD""}",4133.12,Bronze,0 +745,Bradley Russell,chadrodriguez@yahoo.com,2020-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4216.75,Silver,1 +746,Henry Vasquez,renee34@gmail.com,2020-05-24,"{""language"": ""DE"", ""currency"": ""MXN""}",5401.37,Bronze,0 +747,Krista Williams,susanbecker@hotmail.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7159.32,Bronze,1 +748,Tracy Parker,jason59@yahoo.com,2020-01-15,"{""language"": ""IT"", ""currency"": ""EUR""}",9022.8,Bronze,1 +749,Morgan Bender,jenkinseric@gmail.com,2024-04-01,"{""language"": ""DE"", ""currency"": ""USD""}",3334.42,Bronze,1 +750,Cathy Walter,beckerpeter@hunt.com,2022-06-11,"{""language"": ""ES"", ""currency"": ""EUR""}",8010.42,Gold,0 +751,Jennifer Perez,hamptonmitchell@brady-hunter.com,2024-07-14,"{""language"": ""DE"", ""currency"": ""CAD""}",4395.97,Bronze,1 +752,Michael Hall,raymond54@hotmail.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""USD""}",3114.85,Gold,0 +753,Steven Mccoy,michelleyork@hotmail.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""MXN""}",6813.56,Gold,1 +754,Sarah Kim,matthewrice@gmail.com,2023-08-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9067.02,Silver,0 +755,Tiffany Bryant,david70@hotmail.com,2021-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",6769.23,Bronze,1 +756,Nicole Sullivan,hdennis@stein-kelly.com,2021-11-13,"{""language"": ""FR"", ""currency"": ""GBP""}",9179.61,Bronze,0 +757,Brittany Le,garyferguson@caldwell.com,2022-03-20,"{""language"": ""EN"", ""currency"": ""GBP""}",1131.97,Silver,1 +758,Melissa Flynn,shannonchen@gmail.com,2024-02-13,"{""language"": ""EN"", ""currency"": ""USD""}",1293.03,Silver,0 +759,Bryan White,lucashenderson@dickerson-carlson.biz,2023-07-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8452.47,Silver,1 +760,Gabrielle Young,glassbradley@foster-mcgrath.com,2021-11-21,"{""language"": ""DE"", ""currency"": ""GBP""}",1743.27,Bronze,0 +761,Jacob Buck,kristyhouse@yahoo.com,2022-09-17,"{""language"": ""ES"", ""currency"": ""EUR""}",7562.01,Bronze,0 +762,Dylan Robinson,terryphillip@gmail.com,2022-10-13,"{""language"": ""IT"", ""currency"": ""GBP""}",2563.44,Gold,0 +763,Debra Morris,dbooth@gmail.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2054.91,Gold,0 +764,Marcus Adkins,ashleymaldonado@gmail.com,2024-10-26,"{""language"": ""IT"", ""currency"": ""GBP""}",4164.61,Gold,1 +765,Justin Sims,hwade@gmail.com,2021-11-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5774.05,Gold,0 +766,Katie Morton,wrighttravis@chapman-bernard.com,2024-05-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6052.55,Bronze,1 +767,Julia Robbins,egoodman@yahoo.com,2020-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",3341.24,Silver,0 +768,Lisa Diaz,michelle19@yahoo.com,2023-03-15,"{""language"": ""IT"", ""currency"": ""EUR""}",1168.65,Silver,0 +769,Mark Mccarthy,karen51@moyer.com,2021-02-06,"{""language"": ""IT"", ""currency"": ""USD""}",5351.0,Gold,0 +770,Samantha Hayden MD,murphycharles@gmail.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""USD""}",1824.24,Bronze,0 +771,Cheryl Nelson,ljones@hotmail.com,2021-02-27,"{""language"": ""DE"", ""currency"": ""GBP""}",6484.89,Silver,0 +772,Sherry Cline,jmiller@foster.com,2023-05-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8047.51,Silver,1 +773,Micheal Thomas,gregorywoodard@walker.org,2024-03-26,"{""language"": ""DE"", ""currency"": ""USD""}",2237.78,Bronze,1 +774,Christopher Allison,bautistaangela@ortiz.org,2024-01-08,"{""language"": ""DE"", ""currency"": ""USD""}",3593.08,Silver,1 +775,Douglas Oconnell,zhangsierra@yahoo.com,2023-02-20,"{""language"": ""EN"", ""currency"": ""MXN""}",5764.24,Gold,0 +776,Phillip Steele,isabella18@yahoo.com,2024-03-11,"{""language"": ""ES"", ""currency"": ""USD""}",2479.03,Gold,0 +777,Rebecca Fox,mlee@jacobs.com,2022-02-10,"{""language"": ""DE"", ""currency"": ""EUR""}",9390.05,Gold,0 +778,Jeffrey Hahn,carolineanderson@gmail.com,2020-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",6787.94,Silver,0 +779,Angela Perry,jonathancontreras@gmail.com,2021-03-18,"{""language"": ""IT"", ""currency"": ""USD""}",6809.23,Gold,1 +780,Mrs. Taylor Murphy,crawfordsally@jensen.com,2020-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",8974.97,Bronze,0 +781,Eric Holland,burkeemily@hill.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""GBP""}",8546.65,Gold,1 +782,Dr. Mary Le,phancock@yahoo.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",6948.05,Silver,1 +783,Darren Jackson,cookstephen@jackson.org,2024-06-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5241.24,Bronze,0 +784,Tracy Bryan,robertrodriguez@sloan.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",3324.22,Gold,0 +785,Walter Washington,brownandrew@gmail.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",4429.37,Silver,1 +786,Carlos Dean,ewise@yahoo.com,2021-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",8664.72,Bronze,1 +787,Martin Jones,brandonadams@gmail.com,2020-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",5426.73,Bronze,0 +788,Gary Johnson,kelly03@yahoo.com,2020-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",9503.37,Gold,0 +789,Anthony Beard,kimderrick@brown-munoz.org,2022-10-08,"{""language"": ""IT"", ""currency"": ""USD""}",4654.82,Gold,0 +790,Robert Martinez,dianamarks@hotmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""GBP""}",387.94,Gold,0 +791,Glenn Waters,mbaker@yahoo.com,2024-06-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5444.19,Gold,0 +792,Elizabeth Colon,erin51@beck.com,2022-05-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1672.92,Silver,0 +793,Brandon Davis,summer25@yahoo.com,2022-03-16,"{""language"": ""DE"", ""currency"": ""CAD""}",8842.05,Bronze,1 +794,Jacqueline Garcia,davislinda@harvey.net,2021-09-08,"{""language"": ""EN"", ""currency"": ""GBP""}",1074.0,Silver,0 +795,Mary Griffin,hughesfelicia@gordon.com,2021-12-08,"{""language"": ""FR"", ""currency"": ""USD""}",4866.73,Silver,1 +796,Jeremy Garcia,nicolehunt@gmail.com,2023-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",683.36,Silver,1 +797,Mike Foster,xsherman@gonzalez.com,2024-06-19,"{""language"": ""ES"", ""currency"": ""MXN""}",576.47,Bronze,0 +798,Kristen Simmons,jessicaanderson@hotmail.com,2024-11-11,"{""language"": ""IT"", ""currency"": ""USD""}",6909.04,Bronze,1 +799,Grace Ortiz,sarahhall@lee.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",3677.89,Silver,0 +800,Mallory Diaz,arnoldstacey@leonard.info,2021-02-09,"{""language"": ""EN"", ""currency"": ""USD""}",291.34,Silver,1 +801,Janice Duncan,jenniferlambert@hotmail.com,2021-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",6651.73,Bronze,1 +802,Chris West,cpalmer@griffin.com,2024-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5169.88,Bronze,0 +803,Miranda Harris MD,esnow@harvey.com,2021-07-31,"{""language"": ""EN"", ""currency"": ""USD""}",4996.48,Bronze,0 +804,Theresa Hernandez,lawrencechristian@king.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",3785.09,Silver,0 +805,Kimberly Wade,rebeccawalker@hotmail.com,2023-03-16,"{""language"": ""ES"", ""currency"": ""GBP""}",7616.25,Silver,1 +806,Terri Smith,msmith@hendricks-meadows.biz,2024-07-01,"{""language"": ""FR"", ""currency"": ""MXN""}",145.15,Bronze,0 +807,Cassandra Garner,ashleyfletcher@parker.net,2024-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",4011.34,Bronze,1 +808,Christopher Jimenez,vphillips@west.com,2022-02-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6930.2,Gold,0 +809,David Murillo,coleclifford@gmail.com,2021-05-04,"{""language"": ""FR"", ""currency"": ""CAD""}",8074.58,Silver,1 +810,David Hanson,danielnguyen@romero.com,2024-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",4739.82,Bronze,0 +811,Kevin Howe,michaelkerr@hotmail.com,2019-12-31,"{""language"": ""IT"", ""currency"": ""EUR""}",5553.5,Silver,1 +812,Lisa Hoffman,lynchdonald@conley.com,2023-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",8624.44,Bronze,1 +813,Gina Fritz,petersrobert@ray-smith.com,2021-03-17,"{""language"": ""EN"", ""currency"": ""USD""}",8959.5,Gold,1 +814,Ashley Scott,santanajennifer@gmail.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""EUR""}",9856.67,Gold,1 +815,Karen Hudson,peterstravis@wyatt.net,2021-09-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1747.21,Bronze,0 +816,Dr. Henry Anderson MD,jacob60@hotmail.com,2019-12-14,"{""language"": ""IT"", ""currency"": ""USD""}",5138.17,Bronze,0 +817,Miranda Terrell,wjones@hotmail.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""EUR""}",8308.38,Silver,1 +818,Taylor Duke,amandalee@perez.org,2022-07-27,"{""language"": ""FR"", ""currency"": ""MXN""}",2121.93,Silver,1 +819,Jay Hart,kevin28@wagner.com,2020-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",2057.08,Bronze,0 +820,Melissa Wheeler,marymeyers@boone.com,2024-03-16,"{""language"": ""FR"", ""currency"": ""MXN""}",7797.24,Bronze,0 +821,Nichole Dixon,billy66@rush-cox.com,2021-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",3940.31,Silver,0 +822,Megan Skinner,vmiller@campbell.com,2020-10-29,"{""language"": ""FR"", ""currency"": ""USD""}",3240.37,Bronze,1 +823,Jerry Owen,joannturner@campbell.com,2020-01-30,"{""language"": ""ES"", ""currency"": ""USD""}",6567.83,Bronze,1 +824,Jennifer Butler,jking@jackson-bailey.com,2024-07-09,"{""language"": ""DE"", ""currency"": ""USD""}",7318.64,Silver,1 +825,Andrew Brown,ygraham@yahoo.com,2024-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",8385.45,Gold,1 +826,Tristan Frederick,brandon10@johnson-oneill.org,2020-03-26,"{""language"": ""EN"", ""currency"": ""USD""}",1937.21,Gold,0 +827,Tyler Dillon,bthompson@yahoo.com,2020-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8813.3,Gold,1 +828,April Bishop,rmendoza@yahoo.com,2022-08-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2292.12,Gold,0 +829,Nathaniel Singh,iking@butler.com,2021-05-11,"{""language"": ""FR"", ""currency"": ""EUR""}",4246.3,Silver,0 +830,Cesar Moore,danielrogers@gmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",356.92,Bronze,0 +831,Denise Perez,ebailey@garcia.org,2022-12-22,"{""language"": ""EN"", ""currency"": ""EUR""}",7300.09,Silver,1 +832,Nicole Huffman,melanieperez@henderson-lewis.biz,2023-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",3359.23,Gold,0 +833,Douglas Byrd,hgates@yahoo.com,2020-08-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7842.07,Gold,0 +834,Amber Everett,scott08@sparks-howe.biz,2021-05-12,"{""language"": ""FR"", ""currency"": ""EUR""}",8047.03,Bronze,0 +835,Alexandra Lopez,davidbrooks@hotmail.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""EUR""}",2639.38,Gold,0 +836,Austin Perez,ryanstevens@hotmail.com,2023-09-10,"{""language"": ""FR"", ""currency"": ""USD""}",4824.16,Bronze,0 +837,Alison Butler,moodymichael@yahoo.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",9011.74,Silver,1 +838,Nicole French,reedrobin@gmail.com,2021-03-29,"{""language"": ""IT"", ""currency"": ""EUR""}",3750.57,Gold,1 +839,George Hamilton,hubertimothy@evans.com,2021-06-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2987.19,Silver,0 +840,Cristina Johnson MD,elizabethjohnson@george.com,2022-04-07,"{""language"": ""DE"", ""currency"": ""CAD""}",8775.27,Gold,0 +841,Randall Flores,buchananalejandro@gmail.com,2021-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2773.79,Gold,1 +842,Jeffrey Lee,fhernandez@yahoo.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",7519.96,Silver,1 +843,Tiffany Cisneros,monica11@yahoo.com,2024-05-02,"{""language"": ""EN"", ""currency"": ""GBP""}",4190.55,Bronze,1 +844,Anita Smith,ecole@hamilton.com,2020-12-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4679.59,Silver,0 +845,Patricia Rodriguez,breanna48@rojas-johnson.com,2022-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4771.02,Bronze,0 +846,Nancy Juarez,shane48@turner.biz,2024-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",1528.37,Bronze,1 +847,James Wang,ana66@gmail.com,2024-05-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7083.45,Bronze,1 +848,Andrew Day,montgomeryjoseph@thompson.com,2021-06-02,"{""language"": ""IT"", ""currency"": ""MXN""}",969.22,Silver,1 +849,Christine Hogan,glenthornton@gmail.com,2023-09-07,"{""language"": ""FR"", ""currency"": ""USD""}",4140.55,Gold,1 +850,Richard Cannon,leejohn@hotmail.com,2024-08-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4584.53,Gold,1 +851,Debra May,juan53@burns-alexander.com,2024-03-03,"{""language"": ""DE"", ""currency"": ""MXN""}",351.28,Silver,0 +852,Nicole Moore,amandagarcia@ritter-rodriguez.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""GBP""}",3965.1,Silver,0 +853,Travis Gonzalez,osweeney@gmail.com,2022-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",4478.91,Bronze,0 +854,Brittany Gillespie,smithjennifer@murillo-gray.com,2021-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",7464.13,Gold,0 +855,Kathryn White,sharon94@gmail.com,2024-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6770.89,Silver,0 +856,Julie Garner,andrewpoole@espinoza.net,2023-07-19,"{""language"": ""ES"", ""currency"": ""GBP""}",4392.19,Gold,0 +857,Kelly Ruiz PhD,alexander41@hayes.com,2022-05-22,"{""language"": ""FR"", ""currency"": ""MXN""}",1821.75,Silver,0 +858,David Price,vanessa55@hotmail.com,2021-10-19,"{""language"": ""IT"", ""currency"": ""GBP""}",4097.74,Bronze,1 +859,Robin Garcia,mkeller@yahoo.com,2024-05-19,"{""language"": ""FR"", ""currency"": ""GBP""}",2848.76,Gold,1 +860,Billy Snyder,hudsonkimberly@randall.com,2021-10-03,"{""language"": ""FR"", ""currency"": ""USD""}",9562.31,Bronze,1 +861,Patricia Alvarez,jamie76@harper.com,2024-01-29,"{""language"": ""EN"", ""currency"": ""USD""}",175.07,Bronze,0 +862,Ronald Copeland,ambersullivan@hotmail.com,2021-11-20,"{""language"": ""ES"", ""currency"": ""CAD""}",3364.43,Gold,1 +863,James Herrera,coxvalerie@cook.biz,2023-02-06,"{""language"": ""EN"", ""currency"": ""USD""}",7367.97,Bronze,1 +864,Nicholas Berry,emmajohnson@yahoo.com,2019-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",301.08,Gold,1 +865,Lindsay Adams,alicia89@gmail.com,2021-08-13,"{""language"": ""FR"", ""currency"": ""GBP""}",7968.09,Silver,1 +866,Larry Torres,clarkapril@yahoo.com,2022-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7883.67,Gold,1 +867,Matthew Hanson,lisaschroeder@west.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5512.94,Silver,0 +868,Patricia Davis,mirandablake@gmail.com,2021-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",3526.03,Gold,1 +869,Cassie Frey,spencerjohn@gmail.com,2020-03-11,"{""language"": ""IT"", ""currency"": ""GBP""}",88.34,Bronze,1 +870,Selena Morris,lindadyer@garrett-clark.com,2021-11-23,"{""language"": ""EN"", ""currency"": ""USD""}",4675.34,Silver,0 +871,Lisa Ward,bryantrachael@yahoo.com,2022-07-16,"{""language"": ""EN"", ""currency"": ""EUR""}",1517.2,Gold,1 +872,John Wilcox,samanthapalmer@gmail.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""CAD""}",506.74,Bronze,0 +873,Jason Rodgers,katherine56@brown.com,2020-11-30,"{""language"": ""IT"", ""currency"": ""GBP""}",1328.37,Gold,1 +874,Sean Payne,jessica83@skinner.com,2024-02-03,"{""language"": ""DE"", ""currency"": ""CAD""}",5594.97,Silver,1 +875,Priscilla Cervantes,figueroareginald@villa-king.com,2021-11-04,"{""language"": ""FR"", ""currency"": ""MXN""}",6621.98,Bronze,0 +876,Marc Kelly,garrettbrittany@gmail.com,2024-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8630.4,Bronze,1 +877,Carol Gomez,michael15@yahoo.com,2021-07-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1355.27,Bronze,1 +878,James Kramer,yclark@gmail.com,2024-07-04,"{""language"": ""FR"", ""currency"": ""GBP""}",4078.96,Gold,0 +879,Madison Rollins,lgonzalez@yahoo.com,2022-06-17,"{""language"": ""DE"", ""currency"": ""GBP""}",5544.04,Silver,1 +880,Christopher Simpson,mroberts@robinson.com,2021-12-13,"{""language"": ""EN"", ""currency"": ""MXN""}",933.13,Bronze,1 +881,Michael Patel,angelalowe@gmail.com,2022-11-18,"{""language"": ""FR"", ""currency"": ""USD""}",2474.43,Silver,0 +882,Larry Jones,susanjohnson@brock-mahoney.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3173.84,Silver,1 +883,Diana Anderson,morganandre@valencia.biz,2023-04-20,"{""language"": ""DE"", ""currency"": ""USD""}",2025.33,Silver,0 +884,Ronald Ramsey,michael97@hotmail.com,2022-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4748.67,Bronze,0 +885,Nancy Hanna,cathynewton@gmail.com,2022-12-10,"{""language"": ""FR"", ""currency"": ""EUR""}",299.1,Silver,1 +886,Gregory Booker,griffithsamuel@cooper.com,2022-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",9598.83,Gold,1 +887,Andrew Carpenter,ialexander@bishop.com,2020-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",6699.58,Silver,0 +888,Michael Hernandez,santiagoluis@gmail.com,2023-10-03,"{""language"": ""IT"", ""currency"": ""GBP""}",6202.14,Gold,0 +889,Kenneth Marks,buckleytimothy@gmail.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2066.57,Silver,0 +890,Jill Wilson,irodriguez@hotmail.com,2022-01-01,"{""language"": ""IT"", ""currency"": ""CAD""}",8387.23,Bronze,1 +891,Nicole Nunez,pattersonjennifer@yahoo.com,2023-04-30,"{""language"": ""ES"", ""currency"": ""MXN""}",795.83,Bronze,0 +892,Debra Johnson,jennifer92@bennett.biz,2024-03-14,"{""language"": ""DE"", ""currency"": ""EUR""}",819.47,Bronze,1 +893,Matthew Smith,robertali@yahoo.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",8996.13,Bronze,0 +894,Courtney Watkins DVM,mark30@gmail.com,2020-12-26,"{""language"": ""IT"", ""currency"": ""USD""}",9694.88,Gold,1 +895,Robert Perez,ryanlove@nash-ortiz.org,2021-11-01,"{""language"": ""ES"", ""currency"": ""GBP""}",8505.82,Gold,1 +896,Tara Reed,robertjohnson@yahoo.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7999.36,Gold,0 +897,Samuel Medina,carlos58@yahoo.com,2021-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",127.57,Bronze,0 +898,George Rivera,egreen@hotmail.com,2021-01-05,"{""language"": ""FR"", ""currency"": ""MXN""}",129.33,Bronze,0 +899,Cathy Henderson,petersashley@sanchez.com,2022-01-02,"{""language"": ""DE"", ""currency"": ""MXN""}",9294.1,Gold,0 +900,Mary Holden,rbrown@gmail.com,2021-06-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9269.25,Gold,1 +901,Rhonda Lin,stoneandre@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""EUR""}",7711.06,Gold,1 +902,Joseph Nicholson,timothy11@gmail.com,2024-12-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1138.07,Gold,1 +903,Pamela Cruz,catherine46@castillo-dudley.org,2020-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9902.4,Gold,1 +904,Tracy Petty,uyoung@hotmail.com,2024-11-27,"{""language"": ""IT"", ""currency"": ""CAD""}",9876.65,Silver,1 +905,Vincent Vazquez,adam14@mcgee.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""EUR""}",990.66,Bronze,0 +906,Gary Miranda,harringtondouglas@rogers.com,2022-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",6239.3,Gold,1 +907,Juan Smith,amyfleming@wilson.org,2023-04-10,"{""language"": ""ES"", ""currency"": ""CAD""}",9244.42,Bronze,1 +908,Mr. Jason Silva,maryjones@yahoo.com,2021-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",2025.28,Gold,0 +909,Joseph Allen,kendra65@nelson-gomez.biz,2023-11-07,"{""language"": ""EN"", ""currency"": ""EUR""}",4748.85,Silver,1 +910,Joseph Wilson,michael83@orozco.org,2022-07-24,"{""language"": ""EN"", ""currency"": ""GBP""}",1303.98,Gold,0 +911,Erin Arroyo,qsteele@hotmail.com,2024-07-26,"{""language"": ""IT"", ""currency"": ""CAD""}",7433.29,Silver,1 +912,Michael Gallagher,garciamiranda@hotmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9056.68,Bronze,0 +913,Danielle Anderson,rebeccastevens@gmail.com,2020-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1571.11,Gold,0 +914,Aaron Adams,paulwells@weber-blackwell.biz,2024-10-28,"{""language"": ""IT"", ""currency"": ""GBP""}",5354.91,Silver,0 +915,Emily Pope,parkerryan@mckinney.com,2020-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",8955.56,Bronze,0 +916,Stephanie Peterson,yhart@ayers.org,2024-09-06,"{""language"": ""FR"", ""currency"": ""GBP""}",9795.36,Gold,1 +917,Andrew Wood,gordontammy@yahoo.com,2024-10-01,"{""language"": ""IT"", ""currency"": ""USD""}",626.23,Silver,1 +918,Carla Gray,gina19@gmail.com,2020-07-10,"{""language"": ""IT"", ""currency"": ""CAD""}",9392.58,Silver,1 +919,Jamie Lee,rogerskyle@yahoo.com,2022-05-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8558.0,Silver,0 +920,Sabrina Mosley,christopher05@gmail.com,2020-11-04,"{""language"": ""EN"", ""currency"": ""EUR""}",7147.31,Gold,0 +921,Linda Duncan,rebecca39@gmail.com,2024-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",200.15,Bronze,0 +922,Mrs. Lisa Horne,katelyn60@becker.com,2021-06-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1645.92,Silver,1 +923,Karen Moreno,tracyduke@gmail.com,2021-09-09,"{""language"": ""ES"", ""currency"": ""GBP""}",8421.26,Silver,0 +924,Randall Evans,lauren88@hotmail.com,2024-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",6216.7,Gold,1 +925,James Williams,aramirez@parker.com,2023-11-05,"{""language"": ""ES"", ""currency"": ""USD""}",9552.04,Silver,1 +926,Alexis Espinoza,kenneth79@richardson-mclean.com,2023-02-04,"{""language"": ""FR"", ""currency"": ""EUR""}",6596.42,Bronze,0 +927,Susan Stephenson,mark76@yahoo.com,2023-07-13,"{""language"": ""DE"", ""currency"": ""MXN""}",208.86,Gold,0 +928,Frank Beck,nmurphy@anderson.com,2020-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",9198.65,Gold,0 +929,Heather Wagner,shannonedwards@yahoo.com,2020-12-21,"{""language"": ""DE"", ""currency"": ""EUR""}",977.98,Silver,1 +930,Eric Thompson,dennisvincent@gmail.com,2021-12-25,"{""language"": ""ES"", ""currency"": ""USD""}",8824.37,Silver,1 +931,Colin Mitchell,butlerjonathan@thomas-clark.com,2024-07-02,"{""language"": ""DE"", ""currency"": ""CAD""}",7810.81,Silver,1 +932,Ana Whitney,andreaprince@macias-rogers.com,2024-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2389.81,Silver,1 +933,Frank Jennings,ballen@gmail.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""USD""}",5786.1,Bronze,0 +934,Robin Reilly,hahnmaria@yahoo.com,2024-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5480.76,Silver,1 +935,Brittney Hall,amanda47@cunningham.net,2021-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",531.64,Silver,1 +936,Brittney Johnson,michelle67@reynolds.com,2020-01-08,"{""language"": ""IT"", ""currency"": ""EUR""}",9420.02,Bronze,1 +937,Dillon Johnson,xruiz@carter.com,2024-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",1753.87,Gold,0 +938,Craig King,patrick72@allen.biz,2020-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4362.48,Bronze,1 +939,Eugene Sanchez,jonesterri@hotmail.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""MXN""}",7994.57,Gold,1 +940,Rachel Brown,marcusjones@garrison-kennedy.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",3235.67,Gold,1 +941,Joseph Blair,emilyjohnson@finley.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""GBP""}",7569.69,Gold,1 +942,Christina Ellis,kguerrero@yahoo.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4625.95,Gold,0 +943,Catherine Sanchez,ruizmaria@gmail.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",7029.11,Silver,1 +944,Shannon Blanchard,tammygibson@martin.com,2023-05-15,"{""language"": ""EN"", ""currency"": ""MXN""}",9955.3,Gold,0 +945,Jared Mcbride,cdiaz@hotmail.com,2024-01-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2484.7,Silver,0 +946,Jennifer Mcdonald,anthony46@martinez.info,2023-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5397.44,Silver,0 +947,Charles Wilson,hansonmonica@yahoo.com,2023-09-27,"{""language"": ""DE"", ""currency"": ""GBP""}",549.4,Bronze,1 +948,Bryan Miller,lisa26@yahoo.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",3491.44,Silver,0 +949,Kenneth Campbell,tammy25@simpson.com,2024-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",839.28,Bronze,1 +950,Thomas Davis,fspears@hotmail.com,2020-11-28,"{""language"": ""EN"", ""currency"": ""USD""}",8721.16,Bronze,0 +951,James Burns,horneandrea@gmail.com,2022-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9393.8,Silver,0 +952,John Reynolds,hzamora@brown.net,2020-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6534.07,Silver,0 +953,Amanda Lawrence,pcastillo@conrad.com,2019-12-18,"{""language"": ""FR"", ""currency"": ""GBP""}",2922.54,Silver,1 +954,Heather Young,matthew88@hotmail.com,2023-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",9209.04,Silver,1 +955,Patricia Navarro,llamb@yahoo.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",5312.34,Gold,1 +956,Tara Braun,joshua70@dillon.com,2022-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",2572.97,Silver,0 +957,Anna Curry,paul19@yahoo.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""EUR""}",6937.2,Silver,1 +958,Carol James,thorntonkristen@young.com,2020-07-15,"{""language"": ""IT"", ""currency"": ""MXN""}",3803.91,Bronze,1 +959,Jennifer Snyder,ijones@hotmail.com,2023-09-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7355.76,Silver,1 +960,Pamela Campbell,umaxwell@ellis.biz,2024-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",7852.27,Bronze,1 +961,Emily Sutton,eadams@jackson.com,2024-01-10,"{""language"": ""ES"", ""currency"": ""GBP""}",6478.44,Bronze,0 +962,Jessica Burnett,gcooper@hickman.com,2020-08-26,"{""language"": ""EN"", ""currency"": ""CAD""}",604.09,Silver,1 +963,Jason Campbell,jeffrey65@alexander-davis.com,2024-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",5690.33,Bronze,1 +964,Jennifer Sullivan,udavis@black.info,2024-06-21,"{""language"": ""EN"", ""currency"": ""CAD""}",2474.76,Bronze,1 +965,Jonathan Thomas,theresa37@hotmail.com,2021-07-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2794.82,Silver,1 +966,Paul Fitzpatrick,jesusstone@gmail.com,2020-03-18,"{""language"": ""FR"", ""currency"": ""USD""}",364.57,Gold,1 +967,Angel Daniels,vlane@gmail.com,2021-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5259.24,Bronze,1 +968,Jill Everett,kristen11@yahoo.com,2021-05-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4250.92,Bronze,1 +969,Edwin Escobar,ymartinez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",6147.83,Bronze,1 +970,James Hawkins,jhernandez@yahoo.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4292.26,Gold,1 +971,Angelica Miller,christopherwilson@hotmail.com,2021-11-05,"{""language"": ""DE"", ""currency"": ""MXN""}",4037.4,Silver,0 +972,Aaron Vega,ovillarreal@yahoo.com,2021-06-27,"{""language"": ""ES"", ""currency"": ""MXN""}",3464.66,Silver,0 +973,Anthony Williams,hallvictoria@alvarado-little.net,2021-04-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9762.94,Silver,0 +974,Donna Becker,lewisbriana@johnson.com,2023-01-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4150.41,Gold,1 +975,Deborah Smith,jasonlopez@yahoo.com,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",5796.63,Bronze,0 +976,William White,anthonyrodriguez@hotmail.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5128.03,Silver,0 +977,Jessica Johnson,evanjordan@yahoo.com,2021-09-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2905.05,Bronze,0 +978,Karen Jones,ann72@rodriguez.org,2020-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",1997.34,Silver,0 +979,Jonathan Figueroa,jlee@hotmail.com,2022-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",8373.27,Gold,1 +980,Jade Brown,brownkelly@yahoo.com,2023-07-17,"{""language"": ""EN"", ""currency"": ""EUR""}",1828.74,Gold,1 +981,Brandi Palmer,hillchristopher@hotmail.com,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",861.03,Gold,1 +982,Tina Phillips,charles07@valdez-davidson.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8227.05,Silver,1 +983,Victoria Edwards,barry13@yahoo.com,2023-05-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1906.54,Bronze,1 +984,Jordan Wyatt,wyattpatrick@ramos.com,2022-09-08,"{""language"": ""IT"", ""currency"": ""GBP""}",5856.09,Gold,0 +985,Devon Miller,hbrown@carpenter.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",814.42,Gold,0 +986,Amanda Griffin,chenry@hotmail.com,2021-11-24,"{""language"": ""EN"", ""currency"": ""USD""}",3114.29,Silver,1 +987,Nicholas Harris,ashley15@hotmail.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4525.1,Bronze,0 +988,Jane Williams,matthew67@davis-shaw.com,2024-02-20,"{""language"": ""ES"", ""currency"": ""USD""}",2062.44,Gold,1 +989,Daniel Leach,holmestammy@yahoo.com,2023-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",265.8,Bronze,1 +990,Ronald Perry,qrosario@gmail.com,2022-12-01,"{""language"": ""IT"", ""currency"": ""GBP""}",9697.75,Gold,1 +991,Cindy Cooke,kennethmendez@yahoo.com,2024-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",3061.34,Bronze,0 +992,Jose Lee,marcdaniel@rogers.org,2021-09-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5386.02,Silver,0 +993,Cory Valencia,rspencer@brooks.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""GBP""}",5637.77,Gold,1 +994,Mr. Max Clay,alison73@gonzalez.net,2022-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",2859.87,Bronze,0 +995,Karen Clark,johnny37@ward-flores.net,2021-04-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1115.86,Gold,0 +996,Jennifer Mccoy,chadmiller@flores.org,2023-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",8161.53,Silver,1 +997,Miguel Brown,sara30@bishop.net,2022-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",9384.36,Bronze,0 +998,David Dunlap,dennisstanley@hotmail.com,2021-03-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7695.82,Silver,0 +999,Michael Garcia,tolson@kane.com,2020-07-25,"{""language"": ""ES"", ""currency"": ""USD""}",5740.09,Bronze,0 +1000,Michael Johnson,lamleon@sparks.com,2020-03-26,"{""language"": ""ES"", ""currency"": ""GBP""}",5869.59,Gold,0 +1001,Mary Hall,cheryl15@martin.com,2023-06-28,"{""language"": ""DE"", ""currency"": ""MXN""}",2267.55,Silver,0 +1002,Randall Lang,valerieperez@jackson.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""CAD""}",2077.73,Silver,0 +1003,Kristin White,ifoster@hotmail.com,2024-04-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2744.92,Silver,0 +1004,Shawn Sloan,hensondavid@johnson-hunter.com,2020-10-03,"{""language"": ""ES"", ""currency"": ""USD""}",71.37,Bronze,0 +1005,Adam Kirby,ashley26@kelley.biz,2024-05-01,"{""language"": ""ES"", ""currency"": ""USD""}",9431.18,Silver,0 +1006,Joseph Wagner,aaronpratt@hotmail.com,2022-04-01,"{""language"": ""ES"", ""currency"": ""USD""}",3029.54,Bronze,1 +1007,James Hale Jr.,benjaminbrown@yahoo.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""GBP""}",8263.0,Gold,0 +1008,Jose Thompson,urodgers@yahoo.com,2021-04-14,"{""language"": ""EN"", ""currency"": ""CAD""}",7955.79,Gold,1 +1009,Cody Watkins,thomasmark@yahoo.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6918.63,Gold,0 +1010,Jillian Jimenez,fblake@gmail.com,2023-03-14,"{""language"": ""FR"", ""currency"": ""EUR""}",670.84,Silver,1 +1011,Michael Townsend,john21@gates.com,2021-08-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2111.35,Gold,0 +1012,Michele Smith,stevenbailey@solis.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6434.66,Silver,1 +1013,Brian Phillips,scottgwendolyn@robinson.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""USD""}",937.49,Bronze,1 +1014,David Hart,taylorjames@gmail.com,2024-11-27,"{""language"": ""DE"", ""currency"": ""GBP""}",5760.96,Silver,1 +1015,William White,rebeccamills@wong.com,2020-06-30,"{""language"": ""IT"", ""currency"": ""USD""}",9779.89,Bronze,0 +1016,Kari Harrison,ethansmith@yahoo.com,2024-10-06,"{""language"": ""IT"", ""currency"": ""MXN""}",6088.39,Gold,0 +1017,Gary Short,scott91@yahoo.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""MXN""}",3456.89,Gold,0 +1018,John Leonard,barbara13@owen.biz,2023-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",9047.23,Gold,1 +1019,Kevin Williamson,sancheztony@gaines.info,2023-09-12,"{""language"": ""ES"", ""currency"": ""USD""}",3305.9,Silver,0 +1020,Victor Sutton,melindamason@gmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5558.66,Gold,0 +1021,Dr. Samuel Shannon,vbray@young.net,2020-10-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7482.32,Gold,1 +1022,Dawn Ray,renee86@hotmail.com,2023-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",7174.78,Silver,0 +1023,Maurice Nelson,stephaniemoore@shields-smith.org,2022-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6452.61,Gold,1 +1024,Michael Robinson,wendybraun@harrington.net,2022-08-12,"{""language"": ""IT"", ""currency"": ""USD""}",1674.41,Bronze,1 +1025,Donald Scott,randallmorris@yahoo.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4356.9,Bronze,1 +1026,John Robinson,jennifer67@gmail.com,2020-09-07,"{""language"": ""ES"", ""currency"": ""USD""}",3356.26,Silver,1 +1027,Lisa Reed,swade@rice.org,2021-12-31,"{""language"": ""ES"", ""currency"": ""CAD""}",2806.82,Gold,0 +1028,Lisa Ball,mflores@yahoo.com,2022-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7171.31,Silver,0 +1029,Joseph Saunders,loriwilliams@gmail.com,2023-06-29,"{""language"": ""ES"", ""currency"": ""MXN""}",5314.59,Bronze,0 +1030,Mark Rodriguez,samuelporter@davis.net,2020-08-18,"{""language"": ""FR"", ""currency"": ""MXN""}",2055.92,Bronze,1 +1031,Randy Clark,monroelisa@gmail.com,2022-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",8861.8,Silver,0 +1032,Rebecca Diaz,odavis@yahoo.com,2020-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",430.68,Silver,0 +1033,Phillip Johnson,jeremy53@hotmail.com,2023-07-18,"{""language"": ""FR"", ""currency"": ""USD""}",7368.57,Gold,0 +1034,April Holloway,kayla28@smith.com,2021-11-23,"{""language"": ""DE"", ""currency"": ""USD""}",681.9,Silver,1 +1035,Bradley Lee,michaelruiz@pearson.com,2024-04-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6225.7,Silver,1 +1036,Jennifer Rollins,leebrandon@gmail.com,2023-03-17,"{""language"": ""FR"", ""currency"": ""EUR""}",556.25,Gold,1 +1037,Jessica Griffin,timothyfoster@gonzales-joyce.net,2021-09-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5054.73,Bronze,0 +1038,Michael Warren,sarah38@coleman.com,2021-11-11,"{""language"": ""IT"", ""currency"": ""MXN""}",7957.28,Gold,0 +1039,Steven Henry,crawfordcatherine@greene-williams.biz,2021-09-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1956.21,Bronze,1 +1040,Christopher Rodriguez,burchjacob@garcia-burgess.biz,2023-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2569.72,Gold,0 +1041,Mrs. Megan Moore,caitlinroberson@gmail.com,2022-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7730.81,Bronze,1 +1042,Vickie Castro,johnsondonna@cross.com,2021-07-25,"{""language"": ""DE"", ""currency"": ""USD""}",3429.56,Gold,0 +1043,Kayla Hernandez,karla64@davis-dunn.net,2024-11-16,"{""language"": ""FR"", ""currency"": ""CAD""}",3754.3,Gold,0 +1044,Taylor Bennett MD,ufrancis@gmail.com,2021-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",838.82,Silver,1 +1045,Nicholas Patel,stevenharmon@gmail.com,2022-06-01,"{""language"": ""IT"", ""currency"": ""EUR""}",217.44,Silver,1 +1046,Catherine Fuller,tonygross@rose.biz,2021-04-24,"{""language"": ""ES"", ""currency"": ""USD""}",7361.16,Bronze,1 +1047,Stephanie Rivers,adam42@ballard.com,2020-12-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6583.1,Silver,1 +1048,Pamela Reed,fthomas@rodriguez-brown.com,2022-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",5574.14,Bronze,0 +1049,Jermaine Leonard,joy55@thompson.biz,2024-05-13,"{""language"": ""IT"", ""currency"": ""MXN""}",8338.65,Silver,0 +1050,Jennifer Peterson,haleyhumphrey@yahoo.com,2019-12-12,"{""language"": ""FR"", ""currency"": ""USD""}",4158.36,Gold,0 +1051,Michael Hunter,catherinecase@ford.net,2023-07-04,"{""language"": ""FR"", ""currency"": ""MXN""}",8320.33,Bronze,0 +1052,Miguel Rodriguez,gonzaleslatoya@smith.com,2021-05-02,"{""language"": ""FR"", ""currency"": ""USD""}",2998.02,Silver,1 +1053,William Scott,victorcrawford@hotmail.com,2021-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9064.04,Silver,0 +1054,Jeremy Perez,elizabethflores@hotmail.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""USD""}",171.0,Silver,0 +1055,Taylor Mullins,gregory33@johnson.com,2020-10-17,"{""language"": ""ES"", ""currency"": ""EUR""}",3011.17,Silver,1 +1056,Andrew Lyons,williampowers@gmail.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""USD""}",7119.3,Bronze,0 +1057,Tracy Miranda,jacksoneric@christensen-johnson.info,2021-09-10,"{""language"": ""FR"", ""currency"": ""GBP""}",1561.32,Silver,1 +1058,Mrs. Catherine Griffin,hannah20@hanson.info,2022-02-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4362.36,Silver,0 +1059,Mr. Nicholas Martin,boyerkevin@yahoo.com,2020-05-02,"{""language"": ""IT"", ""currency"": ""CAD""}",3191.9,Bronze,0 +1060,Terry Garner,kelli40@gmail.com,2021-10-09,"{""language"": ""FR"", ""currency"": ""CAD""}",4565.88,Bronze,1 +1061,Jessica Johnson,coxneil@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""MXN""}",1418.0,Bronze,1 +1062,Dr. Adrienne Day DDS,rebeccanewton@gmail.com,2022-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",4367.76,Gold,1 +1063,Linda Molina,wvincent@hotmail.com,2021-01-31,"{""language"": ""EN"", ""currency"": ""CAD""}",4005.86,Bronze,0 +1064,Timothy Manning,henrybrooke@yahoo.com,2020-12-05,"{""language"": ""EN"", ""currency"": ""USD""}",7264.68,Silver,0 +1065,Eddie Johnson,bateswilliam@yahoo.com,2022-04-08,"{""language"": ""EN"", ""currency"": ""EUR""}",9958.13,Bronze,0 +1066,Jennifer Jones,maynardjames@young.org,2021-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7551.33,Gold,1 +1067,Robert Aguilar,webbchristopher@gmail.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""EUR""}",3434.18,Silver,0 +1068,Elizabeth Wells,benjamin79@wright-roberts.org,2024-06-12,"{""language"": ""ES"", ""currency"": ""MXN""}",5099.8,Silver,0 +1069,Dennis Clark,ericksonfelicia@gmail.com,2024-07-07,"{""language"": ""IT"", ""currency"": ""CAD""}",6033.19,Bronze,1 +1070,Joshua Wade,riveraamber@hotmail.com,2020-03-03,"{""language"": ""FR"", ""currency"": ""GBP""}",6997.37,Bronze,1 +1071,Kenneth Stone,nmendez@hotmail.com,2023-07-09,"{""language"": ""DE"", ""currency"": ""GBP""}",6014.65,Silver,0 +1072,Crystal Mendez,jerry63@gmail.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",8860.3,Gold,0 +1073,Bradley Clark,coxnicole@barnes.com,2023-09-21,"{""language"": ""DE"", ""currency"": ""USD""}",1866.8,Silver,1 +1074,Tammy Roberts,teresaallison@tapia.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""USD""}",6996.5,Gold,1 +1075,David Everett,ramosgabrielle@gmail.com,2022-09-22,"{""language"": ""ES"", ""currency"": ""MXN""}",517.33,Silver,1 +1076,Raven Hobbs,haynesnathan@herman.info,2023-08-13,"{""language"": ""DE"", ""currency"": ""CAD""}",5461.81,Silver,1 +1077,Lisa Yoder,katrina84@gmail.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4796.95,Gold,1 +1078,Leah Mendez,dominic72@hotmail.com,2023-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2781.31,Gold,0 +1079,Brad Smith,sheriwright@shaw.com,2021-03-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1458.68,Silver,0 +1080,Jesse Hamilton,tarahickman@johnson.com,2021-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",8260.4,Silver,1 +1081,Andrew Martinez,millsjonathan@hotmail.com,2024-11-04,"{""language"": ""ES"", ""currency"": ""EUR""}",490.05,Bronze,0 +1082,Jeanne Smith,daniel03@smith.biz,2023-11-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9545.06,Gold,0 +1083,Ryan Hatfield,kadams@mayo-vasquez.biz,2024-01-31,"{""language"": ""ES"", ""currency"": ""CAD""}",1350.29,Silver,1 +1084,Heather Campbell,davidharris@lopez.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5241.66,Silver,0 +1085,Patricia Castillo,vwarren@yahoo.com,2021-09-11,"{""language"": ""FR"", ""currency"": ""GBP""}",5537.12,Gold,0 +1086,David Rodriguez,ijohnson@phillips.com,2024-05-10,"{""language"": ""FR"", ""currency"": ""USD""}",1450.85,Gold,1 +1087,Rebecca Anderson,kenneth21@hotmail.com,2023-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",5276.26,Gold,0 +1088,James Hodge,todd94@yahoo.com,2020-01-11,"{""language"": ""IT"", ""currency"": ""CAD""}",1332.99,Gold,1 +1089,Marie Fernandez,kmorales@yahoo.com,2022-01-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7506.47,Bronze,1 +1090,Kiara Roberts,samuel37@gmail.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""USD""}",5954.28,Bronze,0 +1091,Tonya Zavala,meghan10@gmail.com,2020-11-29,"{""language"": ""FR"", ""currency"": ""USD""}",9298.74,Silver,1 +1092,Maureen Burgess,kyle81@gmail.com,2021-09-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8745.41,Bronze,1 +1093,Carlos Mclaughlin,riversheidi@yahoo.com,2021-11-20,"{""language"": ""EN"", ""currency"": ""EUR""}",2838.69,Silver,1 +1094,Jody Harmon,kaiserheather@gardner-lee.com,2024-12-01,"{""language"": ""EN"", ""currency"": ""MXN""}",6609.19,Bronze,0 +1095,Adam Rocha,fsummers@hotmail.com,2021-03-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5136.79,Bronze,1 +1096,Abigail Marquez,james23@yahoo.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",2584.21,Silver,1 +1097,David Collins,xsingleton@small.info,2022-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3315.65,Silver,1 +1098,Elizabeth Brock,camachosamuel@cochran.org,2020-08-05,"{""language"": ""IT"", ""currency"": ""USD""}",3842.07,Silver,0 +1099,Lisa Wolfe,savannah72@yahoo.com,2023-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4269.82,Gold,1 +1100,Richard Wolfe,lauren64@gordon.biz,2022-05-14,"{""language"": ""IT"", ""currency"": ""EUR""}",6966.89,Silver,1 +1101,Linda Garcia,nbrown@smith.biz,2022-10-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1463.57,Silver,1 +1102,Paula Carter,heather33@white-deleon.info,2022-05-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6382.54,Silver,1 +1103,Phillip Collins,kellyhill@hall.biz,2023-02-21,"{""language"": ""ES"", ""currency"": ""MXN""}",7696.89,Bronze,0 +1104,Charles Carter,murphyjohn@hotmail.com,2024-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",3470.71,Gold,1 +1105,Stephen Blanchard,swright@moore.info,2019-12-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9311.42,Bronze,0 +1106,Laura Martinez,wilsondalton@hotmail.com,2022-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",3752.71,Bronze,1 +1107,Todd Johnson,justinmoore@torres.com,2020-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",1758.78,Bronze,1 +1108,Derrick Gilbert,nross@gmail.com,2023-09-10,"{""language"": ""EN"", ""currency"": ""MXN""}",6649.82,Gold,0 +1109,Peter Perez,davidkelly@hotmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1703.44,Silver,1 +1110,Lori Johnson,tdaniels@yahoo.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""EUR""}",5103.52,Silver,1 +1111,Kim Hurley,anthonyday@hotmail.com,2024-06-13,"{""language"": ""DE"", ""currency"": ""CAD""}",2278.09,Silver,1 +1112,James Tran,noah52@gmail.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5583.19,Bronze,1 +1113,Joshua Berger,esimpson@whitehead.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""EUR""}",6890.83,Gold,1 +1114,Lisa Gordon,fbarnes@gmail.com,2022-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8713.82,Silver,0 +1115,Timothy Ramirez,ronalddunn@jones.com,2023-11-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5448.47,Gold,0 +1116,Paul Joyce,jesuspeters@ellis.net,2024-05-30,"{""language"": ""ES"", ""currency"": ""CAD""}",482.67,Gold,1 +1117,Molly Russo,ashley87@elliott.biz,2022-05-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3220.23,Bronze,0 +1118,Randy Phillips,tyler57@gmail.com,2023-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",3934.27,Bronze,1 +1119,Lindsay Morgan,patriciamccullough@chan.info,2020-10-17,"{""language"": ""IT"", ""currency"": ""USD""}",5445.49,Silver,1 +1120,Lauren Hampton,jordanjonathan@li-webster.com,2020-03-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8638.89,Silver,1 +1121,Robert Hernandez,zberry@hotmail.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""EUR""}",8415.94,Silver,1 +1122,Jessica Hicks,paul32@gmail.com,2022-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",7713.31,Silver,0 +1123,Dr. Victoria Tucker MD,john28@ellis.com,2023-05-24,"{""language"": ""IT"", ""currency"": ""USD""}",4622.82,Bronze,1 +1124,Michael Jensen,pughcynthia@yahoo.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",5290.98,Silver,1 +1125,Mark Miller,eric48@mcdaniel.com,2023-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8926.37,Bronze,0 +1126,Crystal Vega,phillipsnyder@gmail.com,2024-02-14,"{""language"": ""FR"", ""currency"": ""USD""}",1485.94,Bronze,1 +1127,Kevin Nicholson,ericjohnson@gilbert-austin.com,2022-06-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5361.58,Gold,1 +1128,Nicole Murphy,andrew11@andrade-hobbs.info,2020-07-27,"{""language"": ""IT"", ""currency"": ""USD""}",5481.55,Silver,1 +1129,Steven King,richardwhitehead@nelson.com,2021-12-22,"{""language"": ""ES"", ""currency"": ""USD""}",1695.2,Bronze,1 +1130,Eduardo Lane,qcross@lee.org,2021-11-27,"{""language"": ""EN"", ""currency"": ""MXN""}",5431.7,Gold,1 +1131,Joel Jackson,uwilliamson@hotmail.com,2021-09-25,"{""language"": ""DE"", ""currency"": ""EUR""}",5557.9,Gold,0 +1132,Michael Thomas,troyroman@torres.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""EUR""}",4037.85,Silver,0 +1133,Randy Buck,anthony16@brown.biz,2023-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2937.42,Silver,0 +1134,Brittany Ferguson,tylerparks@crawford-wright.info,2021-06-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3175.64,Bronze,0 +1135,Joshua Davis,bclark@yahoo.com,2022-12-25,"{""language"": ""IT"", ""currency"": ""USD""}",882.17,Bronze,1 +1136,Johnny Garcia,burtonmegan@hall.net,2023-10-31,"{""language"": ""FR"", ""currency"": ""USD""}",3201.44,Gold,0 +1137,Thomas Ford,portermichael@carpenter-moss.net,2024-08-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4885.15,Silver,1 +1138,Jennifer Flores DDS,georgevazquez@hotmail.com,2024-08-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8999.05,Bronze,0 +1139,Erika Miller,kennethtaylor@brown.net,2022-05-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3666.92,Gold,1 +1140,Mark Jones,ethanmcdonald@hotmail.com,2020-07-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8546.6,Gold,0 +1141,Molly Clayton,tvillegas@kennedy-potts.info,2024-04-11,"{""language"": ""DE"", ""currency"": ""MXN""}",7210.38,Silver,0 +1142,Nancy Reed,ljacobson@yahoo.com,2024-06-01,"{""language"": ""ES"", ""currency"": ""MXN""}",5048.93,Bronze,0 +1143,Cynthia Riley,alexanderhunt@macdonald.com,2021-02-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2730.94,Bronze,1 +1144,Danielle Wilson,awilliams@hotmail.com,2020-11-03,"{""language"": ""IT"", ""currency"": ""USD""}",9504.39,Gold,1 +1145,Jennifer Howell,wrightann@hotmail.com,2023-11-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6209.45,Silver,0 +1146,Benjamin Todd,blankenshipkimberly@anderson.com,2024-04-25,"{""language"": ""DE"", ""currency"": ""GBP""}",9445.52,Bronze,1 +1147,Lindsay Beck,montgomerymatthew@casey.com,2023-10-26,"{""language"": ""FR"", ""currency"": ""EUR""}",1563.9,Bronze,1 +1148,Stephanie Aguilar,qwilliams@yahoo.com,2021-03-28,"{""language"": ""DE"", ""currency"": ""MXN""}",7666.76,Bronze,0 +1149,John Miller,kimberlybarrett@hotmail.com,2024-11-06,"{""language"": ""DE"", ""currency"": ""USD""}",2130.19,Gold,1 +1150,Deborah Joseph,galexander@white.org,2020-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8310.21,Silver,0 +1151,John Williams,vsmith@gmail.com,2024-10-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5942.35,Silver,0 +1152,James Lewis,williamsalexander@gmail.com,2020-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",4276.08,Gold,0 +1153,Andrea Martin,hornerobyn@torres.org,2021-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",4602.66,Silver,1 +1154,Caitlin Haley,vsaunders@rodriguez.com,2021-12-21,"{""language"": ""DE"", ""currency"": ""MXN""}",6096.48,Silver,1 +1155,William Williams,davissamantha@robinson.com,2020-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1946.53,Silver,0 +1156,Jason Lee,kari42@yahoo.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""EUR""}",2145.03,Gold,0 +1157,Catherine Day,perezbrenda@hotmail.com,2024-11-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7740.03,Gold,0 +1158,Tammy Henry,nicole55@gmail.com,2022-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",2514.63,Silver,0 +1159,Joshua Peterson,melissa54@yahoo.com,2023-05-13,"{""language"": ""EN"", ""currency"": ""EUR""}",628.08,Silver,0 +1160,John Mack,xgray@yahoo.com,2020-07-29,"{""language"": ""DE"", ""currency"": ""EUR""}",3354.73,Bronze,0 +1161,James Perez,davidaustin@yahoo.com,2022-03-17,"{""language"": ""FR"", ""currency"": ""MXN""}",2687.2,Gold,0 +1162,Susan Arroyo,ymartinez@hotmail.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""CAD""}",712.61,Silver,1 +1163,Renee Hogan,dtyler@alvarado.com,2020-01-20,"{""language"": ""IT"", ""currency"": ""USD""}",2592.18,Silver,0 +1164,Abigail Pierce,obrienjaime@george-chang.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""MXN""}",7206.41,Gold,1 +1165,Kayla Thompson,maryjackson@jones.net,2020-05-05,"{""language"": ""ES"", ""currency"": ""GBP""}",2984.06,Gold,0 +1166,Michael Clark,vwoods@hotmail.com,2021-06-22,"{""language"": ""EN"", ""currency"": ""USD""}",9289.42,Bronze,1 +1167,Barbara Walker,kirbysteven@hotmail.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2314.23,Gold,1 +1168,Aaron Bell,herrerakaren@dawson.com,2023-03-26,"{""language"": ""FR"", ""currency"": ""GBP""}",9055.73,Bronze,1 +1169,Robert Li,manderson@snyder-phillips.net,2024-01-04,"{""language"": ""EN"", ""currency"": ""USD""}",3296.28,Bronze,1 +1170,Sean Griffith,mark09@beck.net,2020-10-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3884.68,Bronze,0 +1171,Kevin Marshall,charles20@torres-garner.com,2021-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",6447.41,Bronze,0 +1172,Justin Carson,bellcarlos@perry-compton.com,2021-09-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4343.54,Bronze,0 +1173,Jacqueline Rogers,russelljonathan@gmail.com,2024-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",5866.57,Bronze,0 +1174,Kevin Ward,swest@bailey.org,2024-12-10,"{""language"": ""EN"", ""currency"": ""EUR""}",4740.13,Bronze,0 +1175,Michelle Burke,emcbride@hodge.com,2022-08-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6398.34,Bronze,0 +1176,Valerie Miller,judy78@hotmail.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5436.31,Silver,0 +1177,Michele Raymond,rwoods@lamb.com,2022-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",5806.62,Silver,0 +1178,Maria Heath,whitehannah@gmail.com,2022-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",6236.22,Gold,1 +1179,Logan Johnson,robinsonchase@hotmail.com,2023-01-12,"{""language"": ""FR"", ""currency"": ""USD""}",4974.39,Bronze,0 +1180,Richard Hernandez,pmyers@hotmail.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""CAD""}",9926.14,Gold,1 +1181,Johnny Smith,cpaul@gmail.com,2023-08-23,"{""language"": ""IT"", ""currency"": ""USD""}",1575.76,Gold,0 +1182,William Avila,jreid@gmail.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",6301.95,Bronze,1 +1183,Linda Moore,johnsondiane@gmail.com,2020-08-23,"{""language"": ""IT"", ""currency"": ""GBP""}",913.08,Bronze,0 +1184,April Lopez,wilkersoneric@yahoo.com,2022-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",7501.72,Bronze,1 +1185,Stephen Beck,cwilson@fitzgerald.com,2024-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",663.08,Gold,0 +1186,Jason Hughes,wooddavid@mack.com,2022-01-28,"{""language"": ""IT"", ""currency"": ""CAD""}",4590.34,Gold,1 +1187,Elizabeth Wallace,justin98@gmail.com,2022-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",4015.63,Bronze,0 +1188,Anthony Zimmerman,kthompson@johnson.biz,2023-11-01,"{""language"": ""DE"", ""currency"": ""MXN""}",6741.81,Bronze,1 +1189,Hunter Church,richard74@hotmail.com,2020-10-04,"{""language"": ""DE"", ""currency"": ""EUR""}",1215.38,Gold,0 +1190,Robert Mccullough,ychurch@bowers.com,2021-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",8169.99,Silver,0 +1191,Ann Morgan,anthonybennett@burns-barrett.com,2022-04-07,"{""language"": ""IT"", ""currency"": ""CAD""}",55.02,Gold,0 +1192,Adrian Wilson,millerdanielle@gmail.com,2022-02-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2740.61,Gold,0 +1193,Jordan Miller,cardenasnicole@hernandez.com,2021-01-03,"{""language"": ""EN"", ""currency"": ""EUR""}",6812.49,Bronze,1 +1194,Andrew Miller,robertstevens@yahoo.com,2023-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",7655.49,Silver,0 +1195,Jasmine Welch,jason60@jones-diaz.com,2021-02-09,"{""language"": ""IT"", ""currency"": ""GBP""}",8064.76,Gold,0 +1196,Thomas Brown,brownjason@young-gonzalez.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1535.08,Silver,1 +1197,James Matthews,mary47@gmail.com,2020-10-21,"{""language"": ""DE"", ""currency"": ""MXN""}",2528.0,Silver,1 +1198,Dustin Williams,edward17@gmail.com,2020-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",346.76,Silver,0 +1199,George Williams,umolina@hotmail.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""GBP""}",1006.83,Bronze,0 +1200,Sabrina Stokes,christinecallahan@dodson-david.biz,2021-12-08,"{""language"": ""DE"", ""currency"": ""MXN""}",6507.49,Gold,1 +1201,Brittany Bailey,gonzalezchristopher@yahoo.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6579.46,Bronze,0 +1202,Timothy Spears,reiddeanna@gates-golden.com,2020-01-05,"{""language"": ""ES"", ""currency"": ""CAD""}",543.07,Silver,0 +1203,Lauren Ruiz,nancyaguirre@trevino.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",8161.91,Gold,1 +1204,Jennifer Burnett,frodriguez@patton-mcbride.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2287.11,Silver,1 +1205,Teresa Hutchinson,amandawilson@nielsen-richardson.com,2024-03-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1877.61,Gold,1 +1206,Mary Kim,qcarr@burnett.net,2022-09-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8937.31,Bronze,1 +1207,Beth Huang,ssutton@may.com,2021-01-08,"{""language"": ""FR"", ""currency"": ""USD""}",6681.01,Bronze,0 +1208,Kristi Simpson,echavez@gmail.com,2024-06-17,"{""language"": ""DE"", ""currency"": ""CAD""}",3115.95,Bronze,1 +1209,Mario Lynch,romansierra@gmail.com,2020-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",1076.91,Bronze,0 +1210,Diana Moore,karen59@yahoo.com,2020-12-01,"{""language"": ""FR"", ""currency"": ""USD""}",6719.68,Gold,0 +1211,Dr. Brooke Robinson,atkinsonmichael@morgan.com,2023-01-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7028.21,Bronze,1 +1212,Jennifer Villa,adamwhite@johnson-jones.com,2022-11-14,"{""language"": ""DE"", ""currency"": ""USD""}",5820.33,Silver,0 +1213,Andrea Lewis,sergio07@sullivan-walters.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""USD""}",8643.62,Gold,0 +1214,Alyssa Martin,pwade@branch.com,2023-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",1306.11,Bronze,1 +1215,Joshua Bishop,livingstonheather@gmail.com,2020-03-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1068.56,Bronze,1 +1216,Matthew Johnson,omcguire@chavez.com,2023-04-19,"{""language"": ""ES"", ""currency"": ""GBP""}",6223.72,Gold,1 +1217,Derrick Lopez,gillhannah@brooks.biz,2024-10-03,"{""language"": ""IT"", ""currency"": ""CAD""}",9951.94,Silver,0 +1218,Barbara Taylor,millerlindsey@cook.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""CAD""}",644.17,Gold,1 +1219,Sarah Lewis,mcneiljason@gmail.com,2021-11-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2365.38,Silver,1 +1220,John Walker,heathersanders@hotmail.com,2023-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",8295.41,Gold,1 +1221,Christine Page,aaronwilson@roberts-howell.com,2023-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",4852.14,Gold,0 +1222,Robert Mendez,jared33@hernandez.info,2022-02-12,"{""language"": ""ES"", ""currency"": ""MXN""}",5232.09,Silver,0 +1223,Isaac Adams,barnesjade@hotmail.com,2020-03-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3383.66,Gold,0 +1224,Anna Barnes,martinezjennifer@wheeler.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""MXN""}",3034.18,Gold,0 +1225,Mr. Derek Doyle,amy56@nixon-levy.com,2022-02-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2180.24,Silver,1 +1226,Grant Castillo,warrentiffany@gmail.com,2023-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",7759.65,Bronze,0 +1227,Laura Perry,amandavazquez@ramsey-perez.info,2020-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",4515.62,Silver,0 +1228,Stacie Solomon,shawn68@harris-roberts.com,2020-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",202.15,Bronze,1 +1229,Jared Thompson,ucrosby@taylor-coffey.org,2021-11-10,"{""language"": ""ES"", ""currency"": ""USD""}",9860.02,Silver,0 +1230,Heather Stewart,ohill@ramirez.com,2023-09-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4966.35,Silver,1 +1231,Sarah Cruz,oliviaallen@yahoo.com,2024-05-04,"{""language"": ""IT"", ""currency"": ""MXN""}",1962.26,Gold,1 +1232,Sharon Armstrong,garrettneal@barton-hansen.com,2024-03-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9049.7,Gold,0 +1233,Martha Rivas,urobinson@bryant-alvarado.com,2020-09-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8118.03,Bronze,1 +1234,Jared Carpenter,jessica70@morris.info,2023-01-12,"{""language"": ""DE"", ""currency"": ""CAD""}",51.7,Gold,1 +1235,Brian Medina,alyssa43@hotmail.com,2023-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8016.07,Bronze,1 +1236,Kristi Mullins,michaelescobar@yahoo.com,2020-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9132.01,Gold,1 +1237,Jennifer Cole,rachelwalsh@taylor.biz,2020-07-28,"{""language"": ""ES"", ""currency"": ""CAD""}",7768.7,Gold,1 +1238,Andrea Rodriguez,rittersean@faulkner.info,2024-03-23,"{""language"": ""DE"", ""currency"": ""MXN""}",631.09,Silver,0 +1239,Kyle Valencia,jill23@yahoo.com,2024-05-08,"{""language"": ""ES"", ""currency"": ""MXN""}",8952.13,Gold,1 +1240,Thomas Dixon,kimberlysandoval@hotmail.com,2021-09-18,"{""language"": ""ES"", ""currency"": ""EUR""}",1766.57,Silver,0 +1241,Mikayla Jackson,qsmith@arellano.com,2024-08-23,"{""language"": ""DE"", ""currency"": ""USD""}",644.63,Gold,0 +1242,Robert Moyer,mortonkevin@gmail.com,2023-06-29,"{""language"": ""ES"", ""currency"": ""MXN""}",9995.31,Gold,1 +1243,Jonathan Miller,imeyer@king-spencer.com,2020-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",9010.62,Bronze,1 +1244,Renee Wilson,danielwhite@garcia.info,2020-12-28,"{""language"": ""EN"", ""currency"": ""USD""}",5140.6,Bronze,1 +1245,Geoffrey Barnes,blackdominique@yahoo.com,2022-11-21,"{""language"": ""IT"", ""currency"": ""MXN""}",67.37,Silver,1 +1246,Stephen Campbell,bmccoy@miller-diaz.biz,2023-05-08,"{""language"": ""IT"", ""currency"": ""CAD""}",1847.05,Bronze,0 +1247,Evelyn Herman,stonelisa@ryan.com,2021-05-17,"{""language"": ""EN"", ""currency"": ""USD""}",4257.18,Gold,1 +1248,Lisa Martinez,ramirezrichard@yahoo.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""USD""}",9107.47,Silver,1 +1249,Robert Smith,amanda30@hotmail.com,2020-09-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5827.75,Bronze,0 +1250,Michelle Summers,kspears@yahoo.com,2024-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",1637.59,Silver,0 +1251,Patricia Edwards,edelgado@gmail.com,2023-11-06,"{""language"": ""FR"", ""currency"": ""GBP""}",2345.35,Bronze,1 +1252,Elizabeth Garcia,mjones@valenzuela.com,2021-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",6017.29,Silver,0 +1253,Anthony Hudson,wattskevin@rosario-rodriguez.org,2022-11-21,"{""language"": ""ES"", ""currency"": ""USD""}",1951.38,Bronze,1 +1254,Phillip Rowland,garciacourtney@delgado.com,2024-04-20,"{""language"": ""DE"", ""currency"": ""CAD""}",9473.59,Silver,1 +1255,Daniel Miller,williamssonya@phillips.com,2021-06-30,"{""language"": ""IT"", ""currency"": ""EUR""}",5712.11,Silver,1 +1256,Audrey Davis,smithrobert@johnson.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""GBP""}",7740.42,Silver,1 +1257,Kayla Wilson,staciesimmons@bush-ball.com,2021-05-27,"{""language"": ""DE"", ""currency"": ""CAD""}",4047.82,Silver,1 +1258,James Gonzalez,hectorholder@hotmail.com,2021-03-18,"{""language"": ""FR"", ""currency"": ""GBP""}",783.57,Bronze,1 +1259,Jessica Brown,milleraaron@yahoo.com,2023-06-23,"{""language"": ""EN"", ""currency"": ""GBP""}",7328.4,Silver,0 +1260,Jason Collins,davidsmith@smith.com,2024-08-26,"{""language"": ""IT"", ""currency"": ""GBP""}",7042.88,Bronze,0 +1261,George Hines,bryantdouglas@gmail.com,2020-11-07,"{""language"": ""ES"", ""currency"": ""EUR""}",7497.71,Gold,0 +1262,Seth Jennings,makaylaturner@mitchell.com,2022-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",430.7,Gold,1 +1263,Eric Harmon,scottgamble@gmail.com,2024-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",6706.66,Gold,0 +1264,Jason Elliott,jeffreymartinez@mcmahon.biz,2024-09-20,"{""language"": ""DE"", ""currency"": ""MXN""}",3108.33,Silver,1 +1265,Parker Kim,kristophercurtis@gmail.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",8966.5,Silver,0 +1266,Jill Martinez,susan89@gibson.net,2024-03-29,"{""language"": ""FR"", ""currency"": ""MXN""}",6845.51,Silver,0 +1267,Michelle Sandoval,thomas94@yahoo.com,2023-07-11,"{""language"": ""EN"", ""currency"": ""MXN""}",8419.01,Bronze,0 +1268,Antonio Fowler,karenjuarez@gmail.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""CAD""}",9993.45,Gold,1 +1269,April Smith,ericharmon@avila.com,2023-07-21,"{""language"": ""FR"", ""currency"": ""USD""}",2522.53,Silver,0 +1270,Alice Coleman,nichole83@davis-chambers.com,2021-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",2597.13,Silver,1 +1271,Rebecca Thompson,steve77@moore.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""USD""}",5209.87,Bronze,1 +1272,Colton Brooks,yeaton@hotmail.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7943.32,Silver,0 +1273,David Farmer,davidmoreno@medina.net,2020-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",527.92,Silver,1 +1274,Tracey Smith,judyfuentes@sweeney.net,2024-06-29,"{""language"": ""IT"", ""currency"": ""GBP""}",3100.68,Gold,1 +1275,Ms. Kimberly Wright PhD,danielhamilton@moore.info,2022-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",9905.9,Gold,1 +1276,Cristian Smith,mbarton@gmail.com,2022-05-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9634.62,Silver,1 +1277,Misty Fisher,aconway@gmail.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""GBP""}",4677.57,Silver,0 +1278,Christopher Calhoun,lisa40@ford.com,2022-06-18,"{""language"": ""IT"", ""currency"": ""CAD""}",804.27,Bronze,0 +1279,Renee Brewer,shanewebb@lynch.com,2022-01-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1199.73,Gold,0 +1280,Deanna Payne,rickeymoore@hotmail.com,2022-12-26,"{""language"": ""IT"", ""currency"": ""MXN""}",5473.22,Silver,0 +1281,Leon Brennan,larryjimenez@weeks.com,2022-03-10,"{""language"": ""EN"", ""currency"": ""EUR""}",1852.8,Gold,1 +1282,Kathryn Thornton,carterjeff@collins-romero.com,2023-11-16,"{""language"": ""ES"", ""currency"": ""USD""}",1564.95,Bronze,0 +1283,John Martinez,donaldwood@cannon.info,2022-09-22,"{""language"": ""ES"", ""currency"": ""USD""}",4341.95,Silver,1 +1284,William Fisher,dhamilton@yahoo.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1580.19,Gold,0 +1285,James Tucker,richardcarroll@woods.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7100.93,Silver,0 +1286,Angela Simmons,dawsoneric@ray.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""MXN""}",507.0,Gold,1 +1287,Annette Holloway,ivan95@vega.biz,2020-12-24,"{""language"": ""FR"", ""currency"": ""EUR""}",4732.64,Bronze,1 +1288,Morgan Mercado,obrienconnor@alvarez-vaughn.com,2023-12-12,"{""language"": ""DE"", ""currency"": ""USD""}",1655.96,Bronze,1 +1289,Patricia Mitchell,calebhernandez@hotmail.com,2020-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",902.42,Bronze,0 +1290,Jennifer Allison,frankwalker@hotmail.com,2022-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",8841.48,Bronze,0 +1291,Joshua Moore,millergwendolyn@perry.net,2020-05-09,"{""language"": ""FR"", ""currency"": ""CAD""}",9180.2,Gold,1 +1292,Vanessa Dawson,sabrinamartin@hernandez.net,2024-07-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1172.41,Gold,1 +1293,Thomas Reeves,michael54@hotmail.com,2021-06-12,"{""language"": ""FR"", ""currency"": ""CAD""}",8409.51,Gold,1 +1294,Charles Mueller,kylekeller@moreno-craig.com,2021-11-10,"{""language"": ""IT"", ""currency"": ""CAD""}",5762.16,Bronze,1 +1295,Charles Copeland,langshannon@gmail.com,2021-02-09,"{""language"": ""EN"", ""currency"": ""USD""}",2172.45,Bronze,0 +1296,Barbara Thomas,maria50@henry-hanna.biz,2022-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",4879.62,Bronze,0 +1297,Larry Fletcher,watersaustin@gmail.com,2021-05-09,"{""language"": ""FR"", ""currency"": ""CAD""}",3689.96,Bronze,0 +1298,Ethan Brock,yolanda81@lynch-barnes.com,2023-07-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7964.8,Silver,0 +1299,Tyler Walker,ywilliams@duran.com,2020-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3763.99,Gold,0 +1300,Jason Ferrell,egordon@jackson.info,2024-07-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1238.39,Bronze,0 +1301,Nathan Boyd,nashlarry@gmail.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",4597.32,Silver,0 +1302,Grace Schultz,curtis46@ryan.com,2021-04-18,"{""language"": ""EN"", ""currency"": ""CAD""}",7075.37,Silver,1 +1303,Michelle Jones,russelltony@goodwin-hernandez.org,2024-01-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1522.9,Gold,1 +1304,Jason Chan,ramirezsarah@dawson.com,2022-02-16,"{""language"": ""DE"", ""currency"": ""USD""}",2802.52,Gold,0 +1305,Danielle Wilson,jessica78@gmail.com,2020-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",5820.23,Bronze,0 +1306,Karen Collins,pamelaclark@garza.net,2020-01-21,"{""language"": ""FR"", ""currency"": ""USD""}",3679.11,Silver,1 +1307,Abigail Evans,timothyjohnson@hernandez.com,2021-02-02,"{""language"": ""FR"", ""currency"": ""MXN""}",6079.97,Bronze,0 +1308,Karen Campbell,ugallegos@hall-white.biz,2023-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6106.72,Silver,0 +1309,Alison Tucker,gail34@gmail.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5049.73,Silver,1 +1310,Charles Davis,martinezdavid@kirby.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""EUR""}",8651.55,Gold,0 +1311,Sharon Moreno,laurensmith@yahoo.com,2022-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",5115.46,Bronze,0 +1312,Kenneth Wells,brownrandy@evans.com,2022-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",317.37,Bronze,0 +1313,Sandra Torres,millerrandy@donovan.org,2023-07-04,"{""language"": ""FR"", ""currency"": ""EUR""}",9741.86,Silver,0 +1314,Dennis Williams,ricesophia@patterson-green.org,2021-03-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5298.07,Gold,0 +1315,Daniel Davis,odeleon@walter.com,2021-11-17,"{""language"": ""ES"", ""currency"": ""GBP""}",5178.98,Silver,0 +1316,Adrian Quinn,richardmurillo@reid-hart.org,2022-12-07,"{""language"": ""ES"", ""currency"": ""GBP""}",6631.27,Silver,1 +1317,David Moreno,sethgeorge@yahoo.com,2021-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",8099.95,Silver,1 +1318,Michelle Harding,ystuart@russell.com,2020-08-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2457.47,Gold,1 +1319,Andrea Nguyen,medinaaustin@jones.com,2022-03-19,"{""language"": ""FR"", ""currency"": ""GBP""}",2190.37,Silver,0 +1320,Denise Webb,youngmarissa@gmail.com,2024-11-29,"{""language"": ""ES"", ""currency"": ""MXN""}",434.35,Gold,1 +1321,Jose Edwards,ambermurphy@espinoza-mitchell.org,2020-05-09,"{""language"": ""ES"", ""currency"": ""MXN""}",3961.29,Bronze,0 +1322,Nicole Wilson,ebrooks@durham.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6930.94,Bronze,0 +1323,Cassandra Hayes,janice98@eaton.biz,2020-04-13,"{""language"": ""ES"", ""currency"": ""CAD""}",1078.46,Bronze,0 +1324,Morgan Weeks,longnathaniel@hotmail.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""MXN""}",7286.06,Bronze,0 +1325,Timothy Rivera,vanessabrewer@gmail.com,2022-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",2755.43,Gold,0 +1326,Paula Thomas,reginabeard@jones.com,2021-05-13,"{""language"": ""ES"", ""currency"": ""MXN""}",1531.33,Bronze,0 +1327,Suzanne Murray,jamie05@yahoo.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8297.1,Gold,1 +1328,Rebecca Arnold,watsonlisa@scott.com,2022-09-16,"{""language"": ""ES"", ""currency"": ""USD""}",6541.85,Gold,1 +1329,Madison Schwartz,bburnett@watson-barrett.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""USD""}",9320.99,Gold,0 +1330,Megan Wyatt,morganscott@jackson-romero.com,2022-11-23,"{""language"": ""IT"", ""currency"": ""CAD""}",1447.93,Silver,0 +1331,Rebecca Beard,smithgregory@yahoo.com,2020-03-03,"{""language"": ""DE"", ""currency"": ""MXN""}",703.41,Gold,0 +1332,Craig Lawrence,jeremyreyes@zavala-bruce.org,2022-08-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6147.49,Bronze,0 +1333,Christine Stephenson,keithcarpenter@hotmail.com,2020-08-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2293.58,Silver,1 +1334,Luis Yang,zwade@gmail.com,2022-06-24,"{""language"": ""DE"", ""currency"": ""MXN""}",2339.65,Silver,0 +1335,Sean Coffey,barnettsharon@lopez.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",6932.26,Silver,0 +1336,Jennifer Parker,hawkinskevin@yahoo.com,2021-03-26,"{""language"": ""IT"", ""currency"": ""EUR""}",397.31,Silver,1 +1337,Wayne Reed,allison64@gmail.com,2022-02-05,"{""language"": ""ES"", ""currency"": ""MXN""}",5958.59,Silver,0 +1338,Larry Carey,traviskramer@barrera.com,2021-02-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9418.53,Gold,1 +1339,Lauren Hanna,meyersdaniel@gmail.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""CAD""}",4477.38,Bronze,1 +1340,Jaclyn Ho,foleyjose@smith.com,2023-03-27,"{""language"": ""ES"", ""currency"": ""EUR""}",7644.38,Gold,0 +1341,Jason Bell,lisa65@yahoo.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""GBP""}",3091.51,Silver,1 +1342,Jorge Wheeler,icook@yahoo.com,2023-09-05,"{""language"": ""DE"", ""currency"": ""MXN""}",3600.39,Bronze,1 +1343,Angela Mills,heather65@rogers.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3806.79,Bronze,0 +1344,Erica Montes,thompsonchloe@bass.com,2021-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",8738.11,Gold,1 +1345,Colin Vasquez,adamsandrea@braun.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""USD""}",1845.17,Bronze,1 +1346,Monica Travis,wrightjenna@yahoo.com,2022-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",1913.05,Gold,0 +1347,Gregory Chang,neil36@jordan.com,2024-01-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9959.09,Gold,1 +1348,Dr. Jason Dennis,ashleymata@gmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",3330.59,Silver,1 +1349,Amy Henderson,fclements@yahoo.com,2022-02-03,"{""language"": ""ES"", ""currency"": ""MXN""}",8179.32,Gold,0 +1350,Christina George,wparker@hotmail.com,2020-12-14,"{""language"": ""DE"", ""currency"": ""USD""}",9180.8,Bronze,1 +1351,Andrew Meadows,sheila15@guzman-dyer.com,2024-12-01,"{""language"": ""EN"", ""currency"": ""USD""}",9508.21,Bronze,1 +1352,Willie Williams,kirkobrien@edwards-williams.info,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7140.99,Silver,0 +1353,Jerry Clark,johnwilliams@arias.com,2020-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",3952.52,Silver,1 +1354,Tina Brooks,michaelagreen@mcdowell-douglas.org,2021-12-04,"{""language"": ""ES"", ""currency"": ""MXN""}",192.21,Gold,0 +1355,Jacob Nelson,lcain@yahoo.com,2023-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3579.28,Gold,0 +1356,Alicia White,molly04@yahoo.com,2020-04-16,"{""language"": ""DE"", ""currency"": ""GBP""}",2215.01,Gold,1 +1357,Joanne Daniels,gregwilson@strickland.com,2020-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2683.81,Gold,0 +1358,Shawn Gomez,cpineda@terry-levy.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4267.56,Gold,1 +1359,Phillip Coleman,ballen@glenn.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""EUR""}",8196.47,Bronze,1 +1360,Wayne Jensen,kimberlybailey@yahoo.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""MXN""}",4569.08,Gold,1 +1361,Jeffrey Baker,xryan@hotmail.com,2024-08-23,"{""language"": ""EN"", ""currency"": ""CAD""}",6772.71,Bronze,0 +1362,Daniel Wallace,wfletcher@yahoo.com,2020-08-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5857.85,Bronze,0 +1363,Heidi Gutierrez,mercadomadeline@webster.net,2020-05-30,"{""language"": ""FR"", ""currency"": ""MXN""}",5086.54,Gold,0 +1364,Catherine Hamilton,sanchezsamantha@gmail.com,2024-08-16,"{""language"": ""IT"", ""currency"": ""EUR""}",5079.08,Bronze,0 +1365,Megan Flowers,christopherdavis@gmail.com,2023-06-26,"{""language"": ""FR"", ""currency"": ""CAD""}",9996.53,Silver,1 +1366,Courtney Castro,johnsonmarcus@hotmail.com,2020-03-28,"{""language"": ""FR"", ""currency"": ""CAD""}",8314.36,Silver,1 +1367,Julie Collins,kathleen72@yahoo.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4038.84,Gold,1 +1368,Max Lloyd,gbeard@jones-jones.org,2020-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",7711.8,Gold,0 +1369,Joshua Hendrix,charlesbrown@yahoo.com,2024-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1462.01,Gold,0 +1370,Danielle Cain,qlawson@zimmerman.biz,2024-10-16,"{""language"": ""ES"", ""currency"": ""MXN""}",670.67,Silver,1 +1371,John Ruiz,sullivanmichelle@hotmail.com,2021-10-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7163.62,Silver,0 +1372,Mark Curry,gmontgomery@guerra.org,2020-11-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1045.7,Silver,1 +1373,Mr. Brandon Singleton,nicholsreginald@garcia.com,2021-05-15,"{""language"": ""ES"", ""currency"": ""USD""}",8130.93,Gold,0 +1374,Kelly Alexander,anne14@gmail.com,2021-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7756.45,Silver,1 +1375,Willie Carter,heather32@yahoo.com,2023-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",1620.69,Bronze,1 +1376,Robert Ross,lvasquez@hotmail.com,2021-02-23,"{""language"": ""EN"", ""currency"": ""GBP""}",5333.29,Bronze,1 +1377,William Ryan,nicholas34@hotmail.com,2022-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",3067.11,Gold,1 +1378,Nicole Walton,nguyenjennifer@yahoo.com,2023-02-18,"{""language"": ""IT"", ""currency"": ""CAD""}",127.4,Gold,1 +1379,Jordan Martin,kmiller@smith.org,2020-09-23,"{""language"": ""EN"", ""currency"": ""GBP""}",5073.09,Bronze,0 +1380,Patricia Mcmahon,asmith@gonzalez-riddle.com,2020-12-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4326.01,Gold,1 +1381,Nicole Mcclain,grice@riggs.com,2021-09-20,"{""language"": ""EN"", ""currency"": ""EUR""}",4869.87,Gold,1 +1382,David Hill,stevenbutler@yahoo.com,2020-10-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6299.67,Bronze,1 +1383,Richard Green,qstein@yahoo.com,2020-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",962.29,Bronze,0 +1384,Wanda Cook,cdalton@gmail.com,2024-03-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2781.37,Bronze,1 +1385,Kaitlin Leblanc,zacharysoto@gmail.com,2021-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5310.58,Bronze,1 +1386,Darrell Choi,allisonford@hogan.biz,2024-03-04,"{""language"": ""ES"", ""currency"": ""CAD""}",8151.17,Gold,1 +1387,Lawrence Dixon,joshua99@smith-thomas.com,2020-02-05,"{""language"": ""FR"", ""currency"": ""GBP""}",3736.75,Bronze,1 +1388,John Kemp,sampsonjames@stephens-montgomery.info,2021-11-15,"{""language"": ""DE"", ""currency"": ""CAD""}",7282.42,Silver,0 +1389,Thomas Robertson,evanwillis@hotmail.com,2021-06-12,"{""language"": ""EN"", ""currency"": ""EUR""}",3539.55,Silver,1 +1390,Angela Kirk,susan26@hotmail.com,2024-06-12,"{""language"": ""DE"", ""currency"": ""USD""}",2006.04,Gold,1 +1391,Michelle Blair,michael59@villanueva-strickland.com,2022-09-08,"{""language"": ""DE"", ""currency"": ""MXN""}",223.45,Silver,1 +1392,Gary Welch,scottsuarez@brady-thompson.org,2020-12-21,"{""language"": ""DE"", ""currency"": ""MXN""}",876.98,Gold,0 +1393,Amanda Murphy,markramirez@yahoo.com,2022-08-06,"{""language"": ""IT"", ""currency"": ""CAD""}",94.71,Bronze,1 +1394,Sherry Davis,erin62@yahoo.com,2020-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",8037.49,Silver,0 +1395,Amy Murphy,ljones@jackson.com,2024-06-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5341.63,Gold,0 +1396,Andrew Lyons,fknapp@gmail.com,2024-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",9022.81,Gold,1 +1397,Krystal Allison,emily74@ochoa-perez.com,2023-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",9442.55,Gold,0 +1398,Mr. John Bishop MD,thomas27@brown-dixon.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1411.46,Bronze,1 +1399,Matthew Bell,vbyrd@green.com,2023-10-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9255.63,Bronze,0 +1400,Craig Burke,aking@powers.info,2020-07-05,"{""language"": ""FR"", ""currency"": ""MXN""}",9459.59,Bronze,0 +1401,Richard Patterson,ronaldhughes@mills-martinez.info,2021-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",6721.08,Gold,0 +1402,Dakota Lopez,pricebarbara@berger-lindsey.biz,2022-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",3012.94,Gold,0 +1403,Brittany Castillo,danielstewart@hotmail.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6864.64,Silver,1 +1404,Tracy Jackson,daniel10@nguyen-miller.net,2024-11-26,"{""language"": ""ES"", ""currency"": ""CAD""}",2883.83,Bronze,1 +1405,Benjamin Alvarado,monica86@morris.org,2022-03-29,"{""language"": ""FR"", ""currency"": ""CAD""}",5765.49,Bronze,0 +1406,Edward Huffman,james43@booker.com,2022-12-30,"{""language"": ""IT"", ""currency"": ""USD""}",1946.09,Bronze,1 +1407,Dr. Erin Graham,rodney98@gmail.com,2021-06-07,"{""language"": ""ES"", ""currency"": ""EUR""}",1677.28,Gold,1 +1408,Jack Murphy,hharris@hotmail.com,2020-07-22,"{""language"": ""DE"", ""currency"": ""EUR""}",1461.36,Silver,1 +1409,Michael Bailey,lthompson@alexander.info,2023-06-05,"{""language"": ""EN"", ""currency"": ""GBP""}",9729.38,Bronze,0 +1410,Jeffery Evans,ericmcdowell@martin-hill.com,2022-07-16,"{""language"": ""IT"", ""currency"": ""CAD""}",2978.26,Silver,0 +1411,Chris Phillips,kingriley@martin.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""MXN""}",3830.28,Silver,0 +1412,Grace Scott,nguerra@weaver.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1311.85,Bronze,0 +1413,Laurie Charles,mmartinez@yahoo.com,2020-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",4670.47,Silver,0 +1414,David Owen,rbrown@walters.info,2023-11-14,"{""language"": ""IT"", ""currency"": ""CAD""}",2862.48,Gold,1 +1415,Dawn Davis,lisa49@chambers.com,2024-06-05,"{""language"": ""FR"", ""currency"": ""CAD""}",8097.06,Bronze,0 +1416,Eddie Smith,larsentamara@yahoo.com,2022-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",1120.01,Bronze,1 +1417,Anne Hill,zacharymeyer@yahoo.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""CAD""}",5358.09,Silver,0 +1418,James Miller,leemary@yahoo.com,2024-08-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5974.01,Bronze,0 +1419,Wendy Vazquez,lawsonkrystal@williams-morgan.info,2024-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",5480.75,Bronze,1 +1420,Jose Garrett,ycameron@yahoo.com,2021-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",1590.64,Silver,0 +1421,Kristin Harper,lewisbilly@berry.net,2021-12-14,"{""language"": ""ES"", ""currency"": ""MXN""}",5999.22,Silver,1 +1422,Alyssa Terry,staceyward@nelson.biz,2023-03-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9152.13,Bronze,0 +1423,Thomas Morgan,robertfranco@yahoo.com,2019-12-12,"{""language"": ""IT"", ""currency"": ""USD""}",6305.31,Silver,0 +1424,Thomas Turner,evargas@hotmail.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""GBP""}",3816.04,Gold,0 +1425,Bonnie Rodriguez,wberry@yahoo.com,2024-04-17,"{""language"": ""EN"", ""currency"": ""GBP""}",9199.99,Silver,1 +1426,Teresa Romero,charles72@yahoo.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2870.46,Silver,1 +1427,Gene Sloan,todd52@yahoo.com,2020-11-26,"{""language"": ""EN"", ""currency"": ""USD""}",5083.6,Gold,1 +1428,Deborah Johnson,kenneth08@gmail.com,2020-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2596.41,Gold,0 +1429,Rose Cruz,gregory38@watson-gomez.com,2019-12-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6942.46,Gold,0 +1430,Keith Hood,ijackson@yahoo.com,2021-02-16,"{""language"": ""ES"", ""currency"": ""EUR""}",1080.3,Bronze,1 +1431,Jessica Gardner,james55@richmond-nelson.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""USD""}",9780.83,Gold,1 +1432,Calvin Wilson,steven53@james-orozco.com,2021-09-19,"{""language"": ""EN"", ""currency"": ""EUR""}",7098.63,Gold,0 +1433,Ashley Perry,michelle79@anderson.com,2020-04-12,"{""language"": ""EN"", ""currency"": ""EUR""}",882.64,Bronze,0 +1434,Paul Solis,joe72@yahoo.com,2021-04-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4111.44,Gold,0 +1435,James Mcdonald,robertmorgan@gmail.com,2024-04-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7255.8,Gold,1 +1436,Ian Hill,singhamber@yahoo.com,2020-08-11,"{""language"": ""FR"", ""currency"": ""EUR""}",3953.13,Bronze,1 +1437,Samantha Blair,ryanmcbride@terry.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",8280.62,Gold,0 +1438,Donald Wilcox,david43@hotmail.com,2022-03-29,"{""language"": ""DE"", ""currency"": ""GBP""}",1842.06,Silver,1 +1439,Bailey Williams,mario39@hotmail.com,2021-03-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5250.57,Silver,1 +1440,Brian Castillo,gallegoselizabeth@yahoo.com,2020-03-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6665.11,Silver,1 +1441,John Robertson,clopez@hotmail.com,2024-06-12,"{""language"": ""ES"", ""currency"": ""USD""}",1507.13,Gold,1 +1442,Donald Allen,larsonamy@hotmail.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",815.6,Bronze,1 +1443,Ashlee Mahoney MD,ireed@hoffman.org,2020-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",9050.8,Gold,1 +1444,Jessica Pham,grodriguez@hotmail.com,2020-11-16,"{""language"": ""IT"", ""currency"": ""EUR""}",2967.57,Silver,0 +1445,Victoria Mueller,chad55@russell.com,2022-09-23,"{""language"": ""IT"", ""currency"": ""MXN""}",4057.21,Bronze,1 +1446,Dawn Norton,michael97@fields.com,2019-12-20,"{""language"": ""DE"", ""currency"": ""USD""}",3949.15,Silver,1 +1447,Wendy Floyd,elizabethmartinez@gmail.com,2020-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7669.88,Gold,1 +1448,Michael Reese,ortizbryan@rodgers.com,2024-05-20,"{""language"": ""FR"", ""currency"": ""GBP""}",5464.87,Bronze,0 +1449,Steven Hughes,ereese@lucas.com,2020-11-04,"{""language"": ""IT"", ""currency"": ""EUR""}",3764.34,Gold,0 +1450,Peter Marshall,ebailey@hotmail.com,2022-05-22,"{""language"": ""DE"", ""currency"": ""EUR""}",8904.75,Silver,0 +1451,Diana Gray,cervantesdennis@yahoo.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6369.33,Bronze,0 +1452,Alison Porter,anthonyperry@hotmail.com,2021-05-21,"{""language"": ""ES"", ""currency"": ""MXN""}",596.71,Silver,1 +1453,Betty Williams,shelly65@jackson.com,2020-04-23,"{""language"": ""IT"", ""currency"": ""EUR""}",2679.31,Bronze,1 +1454,Pamela Martinez,skinnerpam@vaughn-moore.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""GBP""}",8362.83,Silver,1 +1455,Kathryn Davis,wagnerdavid@baker.org,2020-02-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1400.86,Silver,0 +1456,Kerri Bass,pricetimothy@cardenas-boyer.biz,2022-06-13,"{""language"": ""ES"", ""currency"": ""GBP""}",3782.23,Gold,0 +1457,Jennifer Gibson,andrewbryant@garcia.com,2022-12-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5366.58,Bronze,1 +1458,Laura Livingston,john98@alexander.biz,2024-08-21,"{""language"": ""DE"", ""currency"": ""USD""}",4777.39,Silver,0 +1459,Steven Ray,kmanning@hotmail.com,2024-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",7241.18,Bronze,1 +1460,Thomas Stewart,fhopkins@gmail.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""GBP""}",2400.0,Gold,0 +1461,Scott Osborne,alisonmccormick@yahoo.com,2024-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",5314.47,Bronze,0 +1462,Charles Woodard,fweaver@hotmail.com,2021-09-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1636.23,Silver,1 +1463,Shane Sanchez,peterrogers@gmail.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",4286.89,Gold,1 +1464,Tammy Hoffman,sarah14@campbell.com,2024-10-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6922.95,Bronze,1 +1465,Rhonda Johnston,larryrobinson@cameron.com,2022-12-28,"{""language"": ""ES"", ""currency"": ""CAD""}",8192.78,Gold,0 +1466,Matthew Matthews,ifrost@james.net,2021-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",52.66,Gold,1 +1467,Michael Walsh,gina01@stanley-sexton.info,2021-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9816.09,Silver,0 +1468,Karen Barker,danielsbrenda@gmail.com,2021-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5166.96,Bronze,1 +1469,Jill Weber,amclaughlin@gmail.com,2022-10-23,"{""language"": ""ES"", ""currency"": ""EUR""}",7780.89,Bronze,0 +1470,Donna Castro,alanchapman@frederick.com,2023-05-31,"{""language"": ""ES"", ""currency"": ""EUR""}",5678.25,Silver,0 +1471,Spencer Crosby,joann64@reynolds.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""EUR""}",4283.32,Bronze,1 +1472,Michael Herring,allendana@dyer.com,2022-01-29,"{""language"": ""FR"", ""currency"": ""EUR""}",1402.93,Gold,1 +1473,Alexandra Dalton,james84@gmail.com,2022-08-27,"{""language"": ""EN"", ""currency"": ""MXN""}",7633.36,Gold,1 +1474,Angela Smith,ldaugherty@martinez.com,2024-06-17,"{""language"": ""EN"", ""currency"": ""GBP""}",2459.74,Silver,1 +1475,Ryan Banks,lauren49@johnson.com,2022-08-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2524.8,Bronze,1 +1476,Mary Smith,zparker@hotmail.com,2019-12-23,"{""language"": ""FR"", ""currency"": ""USD""}",982.86,Bronze,1 +1477,Shelley Gonzales,qmolina@jones-kelley.com,2022-05-07,"{""language"": ""ES"", ""currency"": ""MXN""}",3959.09,Silver,1 +1478,Crystal Green,dawn69@yahoo.com,2023-01-02,"{""language"": ""FR"", ""currency"": ""CAD""}",97.1,Gold,1 +1479,Megan Fuller,collinssteven@schultz.com,2019-12-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6437.32,Gold,0 +1480,Frances Mcclure,kyle09@mcguire.biz,2022-04-02,"{""language"": ""DE"", ""currency"": ""USD""}",6519.94,Silver,1 +1481,Jennifer Roberson,forderin@pratt-hansen.org,2023-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",4474.99,Bronze,1 +1482,Harry Griffin,huntjack@parker-kemp.com,2023-09-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4923.86,Bronze,1 +1483,Keith Mcdaniel,michelle67@gmail.com,2024-06-25,"{""language"": ""FR"", ""currency"": ""USD""}",5430.95,Gold,0 +1484,Thomas Wells,ronaldortiz@hotmail.com,2022-09-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7930.33,Gold,0 +1485,Alyssa Ball,karenrodgers@hotmail.com,2021-07-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7879.4,Gold,1 +1486,Vanessa Moss,christine46@gmail.com,2020-04-27,"{""language"": ""ES"", ""currency"": ""USD""}",8598.34,Silver,1 +1487,Jason Griffin,clarkejames@hotmail.com,2021-05-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2499.92,Bronze,1 +1488,Lisa Watts,ogarcia@hotmail.com,2023-11-07,"{""language"": ""DE"", ""currency"": ""USD""}",5459.55,Bronze,1 +1489,Amy Madden,savagebrent@yahoo.com,2020-03-04,"{""language"": ""ES"", ""currency"": ""MXN""}",2754.35,Bronze,0 +1490,Jeffrey Durham,flynnbecky@watkins-bishop.org,2024-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",3575.92,Silver,0 +1491,Kevin Wolf,sean00@alvarez-clark.biz,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2772.42,Gold,0 +1492,Kathleen Erickson,johnberry@smith.info,2023-04-29,"{""language"": ""DE"", ""currency"": ""EUR""}",7962.16,Bronze,0 +1493,Michael Frazier,huntermatthew@yahoo.com,2024-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",730.4,Silver,1 +1494,Geoffrey Ortega,oscaraguilar@yahoo.com,2021-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9879.8,Silver,1 +1495,Ryan Copeland,jennifer73@lucas-harris.info,2021-07-27,"{""language"": ""IT"", ""currency"": ""EUR""}",5647.57,Bronze,1 +1496,Jenny Gardner,heatherschwartz@williams-yang.net,2022-10-31,"{""language"": ""ES"", ""currency"": ""USD""}",2511.74,Bronze,0 +1497,Christopher Miller,joshuapatterson@cole.info,2024-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5195.37,Bronze,1 +1498,Melissa Warren,walter28@williams-curry.com,2023-04-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1666.54,Bronze,0 +1499,Matthew Roberts,michaeltorres@lopez-williams.com,2024-04-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7667.89,Silver,0 +1500,Amber Hawkins,williambarker@yahoo.com,2024-10-11,"{""language"": ""ES"", ""currency"": ""GBP""}",6183.06,Bronze,1 +1501,Rickey Frazier,housewilliam@gmail.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""MXN""}",2302.46,Bronze,1 +1502,Larry Crosby,donaldcarter@yahoo.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6206.16,Silver,1 +1503,Steven Cruz,melindasingleton@gmail.com,2021-01-27,"{""language"": ""IT"", ""currency"": ""GBP""}",6017.58,Silver,1 +1504,Brian Cook,tking@yahoo.com,2023-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",5000.79,Bronze,0 +1505,Patrick Taylor,david43@ortiz-torres.com,2020-10-17,"{""language"": ""FR"", ""currency"": ""MXN""}",9529.97,Silver,0 +1506,Edward Bell,michellethomas@hotmail.com,2021-07-19,"{""language"": ""IT"", ""currency"": ""GBP""}",2647.54,Bronze,0 +1507,Robert Santana,amberberg@yahoo.com,2020-11-24,"{""language"": ""FR"", ""currency"": ""USD""}",6460.54,Gold,1 +1508,Rachel Marshall,ericbolton@hotmail.com,2022-03-08,"{""language"": ""ES"", ""currency"": ""MXN""}",9343.87,Silver,1 +1509,Dr. Jessica White,elizabeth12@scott.net,2022-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",9439.78,Bronze,1 +1510,Amanda Schmidt,shannongoodwin@hotmail.com,2024-10-04,"{""language"": ""ES"", ""currency"": ""CAD""}",293.62,Bronze,1 +1511,Danielle Davis,richard06@graham.com,2022-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",6409.27,Silver,0 +1512,Randy Johnson,murillorobert@yahoo.com,2021-08-08,"{""language"": ""ES"", ""currency"": ""USD""}",1395.25,Silver,1 +1513,Kyle Young,keith40@hotmail.com,2020-09-19,"{""language"": ""EN"", ""currency"": ""EUR""}",7904.23,Bronze,0 +1514,Megan Pacheco,terrance37@hernandez.biz,2024-08-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8672.62,Silver,0 +1515,Allison Calhoun,andersonlori@gmail.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""EUR""}",9432.11,Gold,0 +1516,Lauren Callahan,brianwoodward@yahoo.com,2024-05-19,"{""language"": ""ES"", ""currency"": ""CAD""}",1595.2,Gold,0 +1517,Jeffrey Davis MD,jesseestrada@nelson-alvarado.org,2024-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4793.49,Gold,1 +1518,Rebecca Sawyer,cproctor@ramirez.com,2024-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",9962.11,Bronze,1 +1519,Lisa Martinez,wgarcia@gmail.com,2022-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",7937.17,Gold,0 +1520,Matthew Gates,jonestiffany@rose.com,2022-09-01,"{""language"": ""ES"", ""currency"": ""EUR""}",1607.31,Gold,0 +1521,Amanda Murphy,lauren56@hotmail.com,2020-03-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6812.85,Bronze,0 +1522,Gregory Swanson,ritamorgan@wilcox-mcdaniel.biz,2022-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",8437.02,Gold,0 +1523,Jennifer Arellano,qwilliams@ayala-mccarthy.org,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",697.65,Bronze,0 +1524,Matthew Mendoza,charlesholt@hotmail.com,2021-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",4641.15,Silver,0 +1525,Colleen Richardson,ngutierrez@hart-rodriguez.com,2020-02-25,"{""language"": ""DE"", ""currency"": ""MXN""}",2969.89,Bronze,0 +1526,William Harrison,trobertson@hotmail.com,2021-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",8660.55,Gold,1 +1527,John Mayer,randy49@hotmail.com,2023-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",559.62,Bronze,1 +1528,Andrea Valenzuela,alexander53@hotmail.com,2020-06-26,"{""language"": ""FR"", ""currency"": ""USD""}",3066.68,Gold,1 +1529,Kevin Mcpherson,ihuber@lee.com,2023-06-06,"{""language"": ""DE"", ""currency"": ""MXN""}",6026.39,Silver,1 +1530,Gloria Williams,gonzalesjoe@yahoo.com,2022-04-08,"{""language"": ""EN"", ""currency"": ""USD""}",1225.64,Gold,1 +1531,Katie Jones,xgibbs@allen.info,2021-10-01,"{""language"": ""IT"", ""currency"": ""GBP""}",6158.52,Bronze,1 +1532,Timothy Ray,wmiller@taylor-terry.info,2024-11-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3521.81,Bronze,0 +1533,Adrian Hunter,brian68@yahoo.com,2023-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2557.41,Bronze,1 +1534,Sean Lee,ycrosby@barnes-gonzalez.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3782.21,Silver,1 +1535,Brenda Turner DDS,mcgeemary@gmail.com,2023-05-03,"{""language"": ""EN"", ""currency"": ""CAD""}",4508.7,Bronze,0 +1536,Rose Cook,bbrown@yahoo.com,2020-08-11,"{""language"": ""EN"", ""currency"": ""GBP""}",199.87,Gold,1 +1537,Elizabeth Estrada,april60@buckley.org,2020-08-27,"{""language"": ""DE"", ""currency"": ""GBP""}",3818.57,Silver,1 +1538,Kylie Martin,lisa46@duke.com,2022-11-13,"{""language"": ""DE"", ""currency"": ""USD""}",3282.9,Bronze,1 +1539,Dana Rice,kyleryan@owen.com,2021-09-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8951.32,Gold,1 +1540,Adam Smith,robert73@gmail.com,2023-09-24,"{""language"": ""DE"", ""currency"": ""EUR""}",9557.14,Bronze,0 +1541,Jessica Mays,rsanchez@gmail.com,2022-02-14,"{""language"": ""EN"", ""currency"": ""MXN""}",269.95,Bronze,0 +1542,Michael Guzman,mariahshaw@jackson.com,2023-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",8017.78,Silver,1 +1543,Rodney Miles,faulknerandrew@gmail.com,2019-12-12,"{""language"": ""EN"", ""currency"": ""USD""}",9390.62,Silver,0 +1544,Jennifer Rivera,hollygreen@yahoo.com,2024-05-22,"{""language"": ""DE"", ""currency"": ""GBP""}",4629.35,Gold,1 +1545,Crystal Schmidt,steven60@hotmail.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",7788.06,Silver,1 +1546,Stephanie Hunt,catherinecollins@gmail.com,2022-11-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6194.84,Silver,0 +1547,Patricia Wheeler,davidbrown@thompson.com,2024-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",4001.5,Gold,1 +1548,Bethany Leonard,zhawkins@gmail.com,2022-08-14,"{""language"": ""DE"", ""currency"": ""GBP""}",1509.61,Bronze,0 +1549,Mark Myers,juan32@yahoo.com,2022-06-07,"{""language"": ""FR"", ""currency"": ""EUR""}",6542.28,Gold,1 +1550,Catherine Hernandez,richardsonpatricia@hotmail.com,2020-01-03,"{""language"": ""IT"", ""currency"": ""GBP""}",4326.26,Bronze,1 +1551,Samuel Golden,ccooper@gmail.com,2020-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",2969.34,Gold,0 +1552,Derek Reed,martin80@pena-norton.biz,2021-12-18,"{""language"": ""FR"", ""currency"": ""MXN""}",1318.81,Bronze,0 +1553,Steven Lewis,sherryharrison@malone.com,2022-07-16,"{""language"": ""FR"", ""currency"": ""USD""}",8954.28,Bronze,0 +1554,Michael Powell,matthewking@gmail.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""USD""}",3656.48,Bronze,1 +1555,William Morris,hpark@gmail.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",1928.72,Bronze,1 +1556,Bianca Hall,thomas37@clark.com,2021-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",7994.98,Gold,1 +1557,Craig Clay,scott99@bell-sanchez.com,2019-12-29,"{""language"": ""DE"", ""currency"": ""EUR""}",2459.32,Bronze,0 +1558,Jose Nelson,elizabethellis@hotmail.com,2020-01-14,"{""language"": ""DE"", ""currency"": ""CAD""}",1718.9,Gold,0 +1559,Theodore Huerta,joannachristensen@yahoo.com,2019-12-26,"{""language"": ""ES"", ""currency"": ""USD""}",5529.96,Bronze,1 +1560,Jeffrey Mitchell,adrianaholmes@ball.net,2022-01-25,"{""language"": ""DE"", ""currency"": ""CAD""}",9158.11,Gold,0 +1561,Adam Mosley,dawnparks@gmail.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6688.9,Bronze,1 +1562,Jennifer Ramos,matthewmiller@sanchez.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""EUR""}",5687.56,Bronze,1 +1563,April Collins,garciachristopher@hotmail.com,2023-03-28,"{""language"": ""EN"", ""currency"": ""CAD""}",1153.57,Bronze,0 +1564,Nicole Weaver,jamiejohnson@yahoo.com,2020-04-23,"{""language"": ""DE"", ""currency"": ""GBP""}",2575.72,Bronze,0 +1565,Diane Moore,juliapham@hotmail.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7144.33,Silver,0 +1566,Timothy Russell,lisamcguire@morgan-nichols.com,2024-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",2890.4,Silver,1 +1567,Mary Garcia,jacqueline23@yahoo.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""EUR""}",9498.98,Gold,1 +1568,Breanna Adams,nroy@rogers.net,2021-09-18,"{""language"": ""IT"", ""currency"": ""CAD""}",6484.77,Silver,1 +1569,Mitchell Hernandez,anthony22@yahoo.com,2020-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",129.23,Silver,0 +1570,Gerald Webb,laurajohnson@yahoo.com,2022-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",726.32,Silver,1 +1571,Christine Huffman,danielleharris@hotmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""GBP""}",1344.24,Silver,1 +1572,Nicole Miller,linda21@park-nichols.biz,2021-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",4533.51,Gold,0 +1573,Nathan Stone,fmills@hall.com,2023-05-01,"{""language"": ""ES"", ""currency"": ""MXN""}",3147.56,Silver,0 +1574,Judy Sanchez,teresacarter@hotmail.com,2023-06-21,"{""language"": ""FR"", ""currency"": ""MXN""}",4947.98,Bronze,0 +1575,Kimberly Manning,trananna@hotmail.com,2022-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",1531.26,Silver,1 +1576,Christopher Bennett,salinasmichelle@gutierrez.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",1136.36,Bronze,1 +1577,Stephanie Terry,jessica27@cole-hensley.com,2023-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",3131.0,Gold,1 +1578,Elizabeth Phillips,frank24@gmail.com,2024-07-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4748.78,Gold,0 +1579,Joseph Rodriguez Jr.,rodneyowens@peterson-lucas.com,2020-07-29,"{""language"": ""IT"", ""currency"": ""USD""}",2071.65,Silver,0 +1580,Diana Lewis,pricekrista@gmail.com,2020-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",5906.0,Silver,1 +1581,Tara Savage,stevenwood@rosales-bell.biz,2022-10-30,"{""language"": ""IT"", ""currency"": ""CAD""}",3986.21,Bronze,0 +1582,Ross Grimes,kellyprice@gmail.com,2021-06-06,"{""language"": ""ES"", ""currency"": ""USD""}",9777.66,Gold,1 +1583,Andrew Hernandez,megan42@hotmail.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",7467.19,Gold,1 +1584,Lori Pacheco,mariahill@gmail.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",8623.89,Bronze,1 +1585,Ricardo French,tylerveronica@yahoo.com,2024-05-15,"{""language"": ""DE"", ""currency"": ""CAD""}",294.45,Silver,0 +1586,Jennifer Mata,russelllaura@gmail.com,2024-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1168.14,Bronze,0 +1587,Sean Miller,barnesashley@hotmail.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",2026.4,Silver,0 +1588,Derrick Garrison,hughestammy@hotmail.com,2021-12-11,"{""language"": ""EN"", ""currency"": ""GBP""}",9225.8,Silver,0 +1589,Peter Jimenez,sanchezkyle@jones.com,2023-11-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2948.96,Gold,1 +1590,Lisa Sanford,fernandezhelen@robinson-taylor.com,2024-05-19,"{""language"": ""EN"", ""currency"": ""EUR""}",2733.78,Gold,1 +1591,Kathleen Patrick,ellisjames@yahoo.com,2022-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",3627.89,Gold,0 +1592,Rebecca Love,casey76@gilbert.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",6387.13,Gold,0 +1593,Eric Hernandez,morrischeyenne@diaz.org,2021-10-28,"{""language"": ""EN"", ""currency"": ""EUR""}",5052.04,Bronze,1 +1594,John Harris,davisjon@yahoo.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""GBP""}",776.5,Gold,1 +1595,Ian Smith,cooperjenny@hotmail.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""CAD""}",3632.8,Silver,1 +1596,Michael Rhodes,donald21@perez.com,2024-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5884.6,Silver,1 +1597,Jennifer Brown,bshannon@navarro.com,2022-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8338.32,Silver,0 +1598,Phillip Knight,coreyhammond@davidson.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1489.03,Bronze,1 +1599,Angela Salas,evansphilip@gmail.com,2020-06-10,"{""language"": ""ES"", ""currency"": ""CAD""}",2601.45,Bronze,1 +1600,Gregory Smith,molly37@gmail.com,2024-10-15,"{""language"": ""DE"", ""currency"": ""USD""}",6601.88,Gold,1 +1601,Denise Ellis,alan78@gmail.com,2022-08-06,"{""language"": ""FR"", ""currency"": ""EUR""}",5516.83,Gold,1 +1602,Colleen Williams,karen58@hotmail.com,2022-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",6375.02,Silver,1 +1603,Paul Howard,tcox@harvey.info,2024-11-12,"{""language"": ""EN"", ""currency"": ""MXN""}",854.41,Gold,1 +1604,Nancy Johnson,ryan57@hall-perez.org,2020-09-29,"{""language"": ""ES"", ""currency"": ""CAD""}",467.14,Bronze,1 +1605,Mr. Jeremy Thompson,michael96@woods.com,2022-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",228.68,Gold,0 +1606,John Deleon,joneschristian@hotmail.com,2021-03-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8509.7,Gold,1 +1607,Jerry Bond,travis61@yahoo.com,2023-08-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9590.0,Silver,0 +1608,David Petty,jacobcollins@hotmail.com,2022-05-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3211.97,Gold,0 +1609,Alison Meadows,hphillips@james.org,2022-08-20,"{""language"": ""IT"", ""currency"": ""EUR""}",4935.52,Silver,0 +1610,Sierra Alexander,gary29@preston-carter.com,2020-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",883.87,Gold,1 +1611,Melissa Smith,russellhenry@woods-hayes.org,2020-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",4725.02,Gold,0 +1612,Christopher Warner,jessica75@duran.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3334.68,Bronze,0 +1613,Michael Richardson,timothyhernandez@dyer.info,2022-03-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7598.36,Gold,0 +1614,Sarah Welch,hhenderson@hotmail.com,2023-03-05,"{""language"": ""DE"", ""currency"": ""GBP""}",7111.96,Bronze,0 +1615,William Middleton,thompsonmary@hotmail.com,2022-03-09,"{""language"": ""ES"", ""currency"": ""EUR""}",3062.13,Bronze,0 +1616,Courtney Lopez,clarkjames@yahoo.com,2019-12-17,"{""language"": ""FR"", ""currency"": ""EUR""}",5287.02,Bronze,1 +1617,Anna Padilla,melaniejones@gmail.com,2020-06-17,"{""language"": ""DE"", ""currency"": ""EUR""}",59.05,Bronze,1 +1618,Frederick Mccall,adam62@gonzales.com,2022-12-10,"{""language"": ""IT"", ""currency"": ""CAD""}",7794.93,Gold,0 +1619,Paula Pham,yburns@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6921.36,Silver,1 +1620,Patrick Hall,kingmark@armstrong-freeman.net,2023-03-16,"{""language"": ""DE"", ""currency"": ""USD""}",5868.5,Gold,0 +1621,Stephanie Hart,jenniferpowers@hopkins-haynes.net,2021-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",9246.4,Bronze,0 +1622,Jimmy Valdez,fkelley@gmail.com,2023-12-29,"{""language"": ""ES"", ""currency"": ""MXN""}",4267.32,Silver,0 +1623,Charles Hogan,camerondrake@smith.com,2021-11-17,"{""language"": ""IT"", ""currency"": ""CAD""}",1705.44,Silver,1 +1624,Ryan Smith,robert06@hotmail.com,2021-03-05,"{""language"": ""EN"", ""currency"": ""GBP""}",4751.38,Gold,1 +1625,Walter Arnold,millermegan@weiss-johnson.biz,2022-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",80.56,Bronze,0 +1626,Teresa Carson,susansingleton@hardy.net,2022-05-06,"{""language"": ""EN"", ""currency"": ""USD""}",7821.86,Bronze,1 +1627,Angela Ross,sdrake@gmail.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""USD""}",9930.57,Silver,1 +1628,Samantha King,bethanyallison@tanner.biz,2024-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",3775.7,Bronze,0 +1629,John Miller,pacetracy@dillon-crosby.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""EUR""}",4975.89,Bronze,0 +1630,Paul Ponce,davisscott@yahoo.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2373.45,Bronze,1 +1631,Nicholas Grimes,buckhelen@hunter.com,2021-11-09,"{""language"": ""DE"", ""currency"": ""MXN""}",2887.71,Bronze,0 +1632,Jamie Smith,pali@myers.com,2024-02-27,"{""language"": ""DE"", ""currency"": ""MXN""}",4880.51,Gold,0 +1633,Vanessa Burns,colinmurphy@gmail.com,2024-09-18,"{""language"": ""FR"", ""currency"": ""GBP""}",2951.1,Gold,0 +1634,Brandy King,vritter@hotmail.com,2021-03-20,"{""language"": ""EN"", ""currency"": ""EUR""}",3305.2,Silver,1 +1635,Jeffrey Chung,vshelton@yahoo.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",6741.22,Gold,1 +1636,Regina Byrd,jacobscatherine@gmail.com,2022-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8604.32,Bronze,1 +1637,Wendy Murray,knightbradley@hotmail.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8419.6,Bronze,1 +1638,Paige Morse,watkinsjustin@hansen-reynolds.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",3354.28,Silver,1 +1639,Martin Brown,tarawest@gmail.com,2021-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1130.55,Gold,1 +1640,Austin Reed,jray@colon.com,2020-07-24,"{""language"": ""EN"", ""currency"": ""CAD""}",1253.18,Silver,1 +1641,Nicholas Brown,warddean@gmail.com,2022-03-16,"{""language"": ""EN"", ""currency"": ""MXN""}",2787.15,Silver,0 +1642,Brenda Lopez,michelle90@gmail.com,2023-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",2963.45,Silver,0 +1643,Mario Blackwell,michaelschmidt@page-cisneros.com,2021-01-06,"{""language"": ""DE"", ""currency"": ""MXN""}",2509.67,Silver,0 +1644,Kathryn Murray,parkerkimberly@gmail.com,2022-11-11,"{""language"": ""IT"", ""currency"": ""USD""}",4566.06,Silver,1 +1645,Anthony Phillips,rashley@hotmail.com,2022-01-19,"{""language"": ""DE"", ""currency"": ""MXN""}",2068.75,Bronze,1 +1646,Kelly Taylor,gjoseph@armstrong-horn.com,2021-08-21,"{""language"": ""FR"", ""currency"": ""MXN""}",6348.14,Gold,0 +1647,Heather Foley,qleonard@gamble.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5445.28,Bronze,1 +1648,Sarah Garcia,juan38@sherman.com,2023-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",9399.1,Gold,0 +1649,Scott Walker,vincent48@stevenson.com,2024-04-23,"{""language"": ""ES"", ""currency"": ""CAD""}",2329.91,Silver,0 +1650,Mrs. Christine Melendez,clarkeangela@smith.info,2024-06-25,"{""language"": ""IT"", ""currency"": ""USD""}",2570.47,Silver,1 +1651,James Cannon,cruzmichael@grant.com,2023-06-03,"{""language"": ""EN"", ""currency"": ""MXN""}",1818.33,Gold,1 +1652,Kelly Wong,jessicabell@zimmerman.org,2021-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",6444.97,Gold,0 +1653,Brian Pope,nicolebrown@yahoo.com,2023-10-24,"{""language"": ""IT"", ""currency"": ""USD""}",7196.91,Gold,0 +1654,Nicole Ellis,dyermatthew@gmail.com,2022-04-15,"{""language"": ""EN"", ""currency"": ""EUR""}",3758.9,Gold,0 +1655,Sabrina Holmes,dgarcia@hotmail.com,2021-06-20,"{""language"": ""EN"", ""currency"": ""USD""}",5877.37,Bronze,1 +1656,Mr. Gerald Cooper,craigallen@gmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9536.03,Gold,1 +1657,Crystal Keith,stanleybass@hotmail.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",4534.94,Bronze,1 +1658,Daniel Dean,cathyhicks@bird-davis.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8138.54,Bronze,1 +1659,Kevin Oneill,james17@smith.biz,2020-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",2039.01,Silver,1 +1660,Justin Cross,pwaller@smith-bailey.com,2022-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",1499.83,Silver,1 +1661,Brandy Smith,ikoch@yahoo.com,2020-09-10,"{""language"": ""IT"", ""currency"": ""EUR""}",313.42,Gold,0 +1662,Anthony Thompson,nathan27@yahoo.com,2023-03-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2847.45,Gold,0 +1663,Rose Jensen,othomas@gmail.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",5744.3,Bronze,0 +1664,Joseph Murray,fmosley@wilkins.net,2024-06-11,"{""language"": ""FR"", ""currency"": ""CAD""}",8598.94,Gold,1 +1665,Mark Sexton,kristen54@hotmail.com,2021-11-29,"{""language"": ""FR"", ""currency"": ""MXN""}",76.08,Bronze,1 +1666,Bryan Brown,arellanomichael@long-keith.info,2024-01-26,"{""language"": ""FR"", ""currency"": ""GBP""}",3396.19,Bronze,0 +1667,Erik Brown,thomasangel@humphrey.biz,2023-08-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4667.3,Gold,1 +1668,John Phillips,zoneal@hotmail.com,2020-02-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3270.36,Bronze,1 +1669,Caleb Guerra,ashley29@frederick.com,2023-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",731.11,Silver,0 +1670,William Martinez,amy58@gmail.com,2021-10-12,"{""language"": ""DE"", ""currency"": ""USD""}",8239.99,Bronze,0 +1671,Mr. Joseph Russo,derekyates@hotmail.com,2022-01-20,"{""language"": ""IT"", ""currency"": ""GBP""}",4094.91,Bronze,0 +1672,Courtney Griffin,ramirezroberto@guerrero.net,2021-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",5458.17,Gold,1 +1673,Diane Ford,ortizwilliam@hotmail.com,2020-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",7051.26,Silver,0 +1674,Leah Carlson,andrew76@gmail.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""MXN""}",155.69,Gold,0 +1675,Alejandro Molina,nlee@snyder.com,2022-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",3852.81,Gold,0 +1676,Courtney Fisher,jonesashley@flores.org,2024-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",538.84,Silver,1 +1677,Michelle Hays,jason40@gmail.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8969.04,Gold,0 +1678,Brandon Jones,frank13@le.com,2021-08-21,"{""language"": ""IT"", ""currency"": ""GBP""}",7822.29,Bronze,0 +1679,Matthew Hernandez,betty45@yahoo.com,2021-04-14,"{""language"": ""ES"", ""currency"": ""GBP""}",7098.54,Gold,0 +1680,Marcus Murray,kgomez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1557.82,Bronze,1 +1681,Terry Smith,xramirez@herman-harvey.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",1214.95,Silver,1 +1682,Nicole Lopez,scott51@craig.com,2020-11-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7947.3,Gold,0 +1683,Melinda Davis,brandylarsen@yahoo.com,2023-06-18,"{""language"": ""DE"", ""currency"": ""USD""}",3347.14,Silver,1 +1684,Jose Hamilton,ortegapatrick@gmail.com,2023-02-14,"{""language"": ""IT"", ""currency"": ""MXN""}",6947.11,Bronze,1 +1685,Margaret Walton,mercadobrittany@hotmail.com,2022-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",7696.55,Silver,1 +1686,John Russell,brandonaustin@gmail.com,2020-09-13,"{""language"": ""DE"", ""currency"": ""MXN""}",473.59,Gold,0 +1687,Jay Ellis,mary14@rose-murphy.com,2024-11-28,"{""language"": ""DE"", ""currency"": ""EUR""}",286.57,Silver,1 +1688,Rodney Farmer,kenneth85@miranda-brown.org,2024-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",5868.0,Bronze,0 +1689,Ricky Osborne,theresa61@yahoo.com,2024-10-21,"{""language"": ""DE"", ""currency"": ""USD""}",8963.44,Bronze,1 +1690,Shane Beck,zwalton@hotmail.com,2022-04-15,"{""language"": ""DE"", ""currency"": ""EUR""}",870.33,Gold,1 +1691,Diana Anderson,clarkeric@rivas-perry.com,2024-01-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7778.13,Silver,0 +1692,Jesse White,cgreen@harris-harvey.net,2024-03-17,"{""language"": ""DE"", ""currency"": ""GBP""}",680.24,Silver,0 +1693,Gary Jones,griffithanthony@rangel.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""USD""}",7412.21,Gold,0 +1694,Thomas Lee,swallace@snyder-williams.com,2020-01-21,"{""language"": ""ES"", ""currency"": ""USD""}",7689.31,Gold,0 +1695,Kathryn Rodriguez,derekmartin@johnson-ortiz.com,2024-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",4063.64,Silver,1 +1696,Brian Martin,angela30@gmail.com,2020-02-02,"{""language"": ""EN"", ""currency"": ""GBP""}",8646.85,Gold,1 +1697,Jasmine Moreno,sjefferson@hotmail.com,2021-02-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7895.22,Gold,1 +1698,Brian Wright,archerdavid@hotmail.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""EUR""}",9404.3,Silver,1 +1699,Devin Hoffman,codypetty@gmail.com,2020-10-04,"{""language"": ""EN"", ""currency"": ""USD""}",9702.51,Silver,1 +1700,Kristina Wood,ramostyler@flores.com,2022-06-13,"{""language"": ""DE"", ""currency"": ""MXN""}",7401.12,Silver,0 +1701,Ronald Browning,hernandezsarah@hotmail.com,2024-11-20,"{""language"": ""ES"", ""currency"": ""USD""}",2559.24,Silver,1 +1702,Maria Castillo,cspencer@hotmail.com,2024-11-08,"{""language"": ""ES"", ""currency"": ""GBP""}",8236.95,Gold,1 +1703,William Gardner,rmcdonald@hunter.net,2022-09-27,"{""language"": ""ES"", ""currency"": ""EUR""}",5583.29,Silver,0 +1704,Emily Mccullough,reginaldmiller@gmail.com,2020-07-12,"{""language"": ""FR"", ""currency"": ""MXN""}",9056.42,Bronze,0 +1705,Eric Hall,anthonygilbert@knapp.org,2024-02-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9873.75,Bronze,0 +1706,Laura Livingston,stacey04@yahoo.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",3507.56,Silver,0 +1707,Jordan Mendez,hallnicole@hotmail.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",888.27,Silver,1 +1708,Robert Sexton,bennettamanda@young.biz,2020-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3371.33,Bronze,1 +1709,Taylor Hickman,franklang@yahoo.com,2022-10-24,"{""language"": ""ES"", ""currency"": ""USD""}",3153.86,Bronze,0 +1710,Mrs. Destiny Thompson,jeffrey75@todd.com,2020-03-03,"{""language"": ""FR"", ""currency"": ""EUR""}",2156.44,Bronze,0 +1711,Jeffrey Jordan,rodriguezmichael@yahoo.com,2020-02-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3377.55,Gold,1 +1712,Manuel Payne,george84@herrera-thompson.org,2020-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",679.95,Silver,0 +1713,Eric Young,sierrakelly@smith.net,2024-08-19,"{""language"": ""FR"", ""currency"": ""CAD""}",4741.24,Silver,1 +1714,Aaron White,anthony95@gmail.com,2024-05-28,"{""language"": ""FR"", ""currency"": ""CAD""}",8288.69,Silver,1 +1715,Melissa Decker,ycollins@gmail.com,2024-09-16,"{""language"": ""IT"", ""currency"": ""MXN""}",538.95,Silver,0 +1716,Tiffany Proctor,lisa51@cooper.com,2023-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",2818.17,Bronze,1 +1717,Andrew Ramsey,tiffanysilva@hotmail.com,2024-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5054.72,Bronze,0 +1718,Maureen Young MD,samantha85@hotmail.com,2022-03-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2323.21,Gold,0 +1719,Lisa Martin,hardingcory@campbell-munoz.info,2019-12-31,"{""language"": ""DE"", ""currency"": ""CAD""}",7661.9,Bronze,1 +1720,Selena Nicholson,jacklester@yahoo.com,2020-01-25,"{""language"": ""DE"", ""currency"": ""GBP""}",8943.24,Silver,1 +1721,John Cannon,michael51@hotmail.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",9739.9,Silver,0 +1722,Andrew Allison,garciahannah@fleming.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",3714.25,Silver,1 +1723,Hannah Summers,melissaerickson@hotmail.com,2022-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",1051.38,Silver,1 +1724,Jenna Jones,jimenezjennifer@garcia-brown.info,2020-01-01,"{""language"": ""EN"", ""currency"": ""MXN""}",3799.53,Silver,1 +1725,Jeffrey Lawrence,pagecynthia@hotmail.com,2023-06-27,"{""language"": ""DE"", ""currency"": ""GBP""}",9513.73,Silver,1 +1726,Mr. Matthew Chase,kristinparker@meyer.com,2024-03-29,"{""language"": ""IT"", ""currency"": ""MXN""}",5585.26,Bronze,0 +1727,Beverly Martinez,timothydavis@gmail.com,2020-05-17,"{""language"": ""DE"", ""currency"": ""MXN""}",6402.53,Gold,0 +1728,Sara Reese,shawnaustin@gmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""CAD""}",9610.75,Gold,0 +1729,Nicholas Walters,bwilkins@hotmail.com,2023-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",6323.29,Bronze,1 +1730,Michael Smith,briansanchez@yahoo.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""MXN""}",1244.74,Silver,1 +1731,Daniel Weiss,davidward@delgado.org,2022-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3303.68,Gold,0 +1732,Melinda Crawford,lthompson@payne.com,2022-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",5967.02,Gold,0 +1733,William Johnson,williamallen@hotmail.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5296.95,Bronze,1 +1734,Brett Hopkins,lwilson@hotmail.com,2021-03-08,"{""language"": ""FR"", ""currency"": ""MXN""}",4711.21,Silver,0 +1735,Kimberly Valdez,hammondstacey@gmail.com,2024-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",2203.42,Silver,0 +1736,Whitney Bell,alicia02@baxter.com,2021-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",9224.62,Gold,1 +1737,Mike Holloway,david95@hotmail.com,2023-07-25,"{""language"": ""FR"", ""currency"": ""USD""}",3830.04,Gold,1 +1738,William Yu,stewartsamantha@walker-bell.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4187.91,Gold,0 +1739,John Owens,jay16@hotmail.com,2024-02-13,"{""language"": ""ES"", ""currency"": ""GBP""}",6111.78,Silver,1 +1740,Nicholas Jackson,wellscynthia@yahoo.com,2020-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",2099.39,Silver,1 +1741,David Miller,bradley32@lindsey.com,2023-01-26,"{""language"": ""FR"", ""currency"": ""USD""}",5246.31,Silver,1 +1742,Karen Lang,qmoore@olson.net,2023-08-23,"{""language"": ""IT"", ""currency"": ""EUR""}",4194.87,Gold,1 +1743,David Russo,jmcneil@hotmail.com,2024-03-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4509.74,Bronze,1 +1744,John Lee Jr.,matthew40@barker.net,2022-10-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1621.78,Bronze,1 +1745,Dakota Davis,cherylbell@perez.com,2024-03-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8450.35,Gold,0 +1746,Donna Dunlap,zwilliams@yahoo.com,2020-08-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9636.77,Silver,0 +1747,Mr. Jackson Deleon,ktaylor@yahoo.com,2021-03-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4472.26,Bronze,0 +1748,Jennifer West,andrew31@hotmail.com,2020-12-16,"{""language"": ""FR"", ""currency"": ""EUR""}",2522.75,Silver,1 +1749,Jason Carrillo,hhart@hotmail.com,2020-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",7677.33,Gold,0 +1750,Karen Reynolds,wphillips@hanson.com,2023-04-17,"{""language"": ""FR"", ""currency"": ""USD""}",9145.99,Gold,0 +1751,David Mccormick,gamblesarah@gmail.com,2021-05-25,"{""language"": ""IT"", ""currency"": ""CAD""}",9181.21,Bronze,0 +1752,Corey Smith,andreaperez@lee.com,2023-06-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7234.95,Silver,0 +1753,Emily Burke,jforbes@stephens.net,2021-08-17,"{""language"": ""IT"", ""currency"": ""CAD""}",8940.14,Bronze,0 +1754,Isaac Norman,traciking@montgomery.com,2022-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",7318.57,Bronze,1 +1755,Kelly Mitchell,hutchinsonrichard@lopez-taylor.com,2024-01-23,"{""language"": ""DE"", ""currency"": ""EUR""}",5033.5,Bronze,0 +1756,Kerry Banks,shaunrichardson@yahoo.com,2020-08-31,"{""language"": ""DE"", ""currency"": ""MXN""}",7450.07,Gold,0 +1757,Michelle Walker,jordan18@yahoo.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",4909.23,Silver,0 +1758,Bianca Perez,vgreen@yahoo.com,2022-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",798.24,Gold,1 +1759,Sophia Buck,patriciabooker@fields.com,2023-10-15,"{""language"": ""ES"", ""currency"": ""USD""}",1261.85,Silver,1 +1760,Jacob Smith,dlarson@gmail.com,2020-04-24,"{""language"": ""FR"", ""currency"": ""USD""}",7710.34,Gold,1 +1761,Sarah Dorsey,tracyjones@walker-peck.net,2024-03-04,"{""language"": ""IT"", ""currency"": ""USD""}",9044.21,Gold,0 +1762,Rebecca Carlson,kaiserjason@yahoo.com,2024-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",7457.55,Bronze,0 +1763,Jeanette Collins,michelleleon@cowan.com,2021-03-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5861.88,Silver,0 +1764,Michelle Horton,proctortimothy@harrison.biz,2020-01-18,"{""language"": ""DE"", ""currency"": ""CAD""}",1051.99,Silver,1 +1765,Jennifer Davis,michelle75@hotmail.com,2021-07-09,"{""language"": ""FR"", ""currency"": ""CAD""}",1627.37,Bronze,1 +1766,Cathy Wilson,donnarogers@hotmail.com,2024-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",3806.49,Bronze,1 +1767,Mr. Daniel Hill,michelle16@yahoo.com,2022-03-06,"{""language"": ""FR"", ""currency"": ""GBP""}",8945.44,Gold,1 +1768,Denise Collins,stephengallegos@douglas.com,2024-09-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7714.25,Silver,0 +1769,Breanna Harrison,donaldflores@flowers-henderson.org,2020-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",9616.99,Silver,0 +1770,Chris Barnes,saunderslisa@fitzgerald.com,2020-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5666.45,Bronze,0 +1771,Mathew Oneal,sheila08@weiss.com,2022-03-17,"{""language"": ""EN"", ""currency"": ""MXN""}",7404.5,Gold,0 +1772,Jacqueline Smith,kempphyllis@gmail.com,2020-05-27,"{""language"": ""EN"", ""currency"": ""MXN""}",9028.33,Bronze,1 +1773,Johnathan Schwartz,jeffreyharris@mosley.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",4417.68,Silver,0 +1774,Chris Henderson,jackieclark@hotmail.com,2022-11-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3030.95,Silver,0 +1775,Morgan Estes,ashley65@hotmail.com,2021-09-17,"{""language"": ""FR"", ""currency"": ""GBP""}",1330.21,Bronze,0 +1776,Carl Snow,shawnmeyer@dixon.com,2022-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",544.66,Gold,0 +1777,Peter Berry,david03@weiss-smith.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",4547.64,Gold,0 +1778,Dawn Knapp,trogers@dougherty.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""EUR""}",9282.12,Bronze,0 +1779,Ashley Romero,mcintoshandrea@gmail.com,2023-06-29,"{""language"": ""FR"", ""currency"": ""MXN""}",5617.85,Silver,0 +1780,Jeffery Christensen,daniel33@yahoo.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""CAD""}",727.1,Bronze,0 +1781,Betty Morales,frenchisaac@jones-glass.net,2022-04-20,"{""language"": ""EN"", ""currency"": ""EUR""}",8658.74,Gold,0 +1782,Dawn Bell,rothjoseph@porter.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""GBP""}",7393.29,Gold,1 +1783,Deborah Paul,nicholas31@gmail.com,2024-03-02,"{""language"": ""ES"", ""currency"": ""MXN""}",9298.3,Silver,1 +1784,Samantha Macdonald,brooksangela@hotmail.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""GBP""}",2816.0,Gold,0 +1785,Thomas Daniels,vgreene@davis-sanchez.com,2023-04-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1091.9,Gold,1 +1786,Alex Kelly,troy76@yahoo.com,2024-07-16,"{""language"": ""EN"", ""currency"": ""GBP""}",2130.03,Silver,0 +1787,Dustin Randolph,christopherlyons@gmail.com,2024-05-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8998.71,Gold,0 +1788,Stanley Duran,vdonaldson@hotmail.com,2020-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7474.61,Silver,1 +1789,James Cooper,juliecoleman@fowler.com,2024-10-01,"{""language"": ""IT"", ""currency"": ""MXN""}",8910.7,Bronze,0 +1790,Joseph Hartman,jacksonamanda@yahoo.com,2022-09-24,"{""language"": ""DE"", ""currency"": ""GBP""}",5324.15,Gold,0 +1791,Derrick Barron,derrickray@yahoo.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7254.84,Bronze,1 +1792,Jerry Jones,emilywilliams@mendez.com,2023-12-24,"{""language"": ""DE"", ""currency"": ""EUR""}",528.14,Gold,1 +1793,Katherine Garcia,jenniferspencer@gmail.com,2020-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",3736.57,Silver,1 +1794,Deborah Scott,vanessa77@spears.net,2024-01-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7797.43,Bronze,0 +1795,Jacob Fox,kylethompson@gmail.com,2022-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1671.18,Silver,0 +1796,Jason Mcclure,johnsmith@herman.net,2021-01-10,"{""language"": ""DE"", ""currency"": ""CAD""}",4457.52,Gold,1 +1797,Ashley Singleton,msanchez@sherman-galvan.com,2022-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",6149.41,Bronze,1 +1798,Lawrence Garner,huffmanemily@gmail.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""USD""}",961.95,Gold,0 +1799,Mary Gonzalez,rrobinson@yahoo.com,2022-12-08,"{""language"": ""EN"", ""currency"": ""EUR""}",5583.82,Gold,1 +1800,Candice Miller,kellyclark@hotmail.com,2021-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",8260.01,Bronze,0 +1801,Ashley White,lmercado@yahoo.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",3634.7,Gold,0 +1802,Joseph Bender,lunajeffrey@humphrey-hall.info,2022-12-23,"{""language"": ""EN"", ""currency"": ""MXN""}",6920.49,Gold,0 +1803,Brett Baker,justinweaver@payne.org,2020-12-05,"{""language"": ""DE"", ""currency"": ""CAD""}",5322.58,Bronze,1 +1804,Troy Sims,michaelmckinney@moore.net,2022-09-18,"{""language"": ""IT"", ""currency"": ""CAD""}",6204.28,Gold,1 +1805,Lisa Reynolds,anita80@ortiz.com,2022-05-27,"{""language"": ""EN"", ""currency"": ""GBP""}",5251.59,Gold,0 +1806,Harry Johns,hamptonpatricia@gmail.com,2022-12-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6995.45,Gold,1 +1807,Michele White,vjames@hotmail.com,2024-10-23,"{""language"": ""IT"", ""currency"": ""CAD""}",8631.64,Silver,1 +1808,Lisa Lynch,stephanie76@gmail.com,2021-07-10,"{""language"": ""ES"", ""currency"": ""MXN""}",8472.46,Bronze,1 +1809,Dustin Chen,mariahmitchell@tanner-stone.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""CAD""}",6153.7,Silver,0 +1810,Samantha Petersen,romerotracey@hotmail.com,2024-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3490.9,Silver,0 +1811,Katherine Mcfarland,wbrown@yahoo.com,2021-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8932.76,Bronze,1 +1812,Timothy Simmons,xlucas@yahoo.com,2024-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6220.0,Gold,0 +1813,Teresa Martin,mtaylor@yahoo.com,2022-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",8284.18,Gold,1 +1814,Jennifer Richards,zmartin@gmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""USD""}",7166.63,Silver,1 +1815,Robert Pratt,christina88@williams-walters.net,2022-03-25,"{""language"": ""FR"", ""currency"": ""USD""}",7037.74,Gold,0 +1816,Mary Wilson,christinesmith@greer-robinson.com,2022-12-27,"{""language"": ""IT"", ""currency"": ""GBP""}",9018.4,Silver,1 +1817,Scott Hopkins,stephen80@guerra-whitehead.com,2020-02-29,"{""language"": ""DE"", ""currency"": ""MXN""}",2398.82,Bronze,0 +1818,Christian Hardin,tonyclayton@vang.net,2024-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",927.71,Bronze,1 +1819,Gregory Watson,brownbrittney@yahoo.com,2024-04-27,"{""language"": ""EN"", ""currency"": ""EUR""}",124.21,Gold,0 +1820,Sarah Campbell,ijennings@roberts-ferguson.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""GBP""}",6232.2,Bronze,0 +1821,Deborah Lowe,ymiller@hotmail.com,2020-04-19,"{""language"": ""EN"", ""currency"": ""USD""}",4187.75,Bronze,0 +1822,Christina Moon,james71@yahoo.com,2022-01-14,"{""language"": ""DE"", ""currency"": ""USD""}",8221.28,Silver,1 +1823,Monica Miller,williamsbryan@hotmail.com,2022-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",7364.1,Gold,0 +1824,Thomas Jackson,vtaylor@hotmail.com,2024-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",2788.57,Gold,0 +1825,Jennifer Olson,daniel03@bradley.com,2021-04-11,"{""language"": ""EN"", ""currency"": ""EUR""}",7219.03,Silver,0 +1826,Jay Wilson,allenwilliam@yahoo.com,2023-02-03,"{""language"": ""DE"", ""currency"": ""CAD""}",3160.17,Gold,1 +1827,Donald Jones,jacksonelizabeth@ramsey-patterson.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5500.3,Bronze,0 +1828,Elizabeth Dawson,bradfordsamantha@hotmail.com,2020-02-16,"{""language"": ""FR"", ""currency"": ""EUR""}",3678.53,Gold,0 +1829,Stephanie Gonzales,ramseynicole@franklin-greer.net,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",8048.4,Bronze,1 +1830,Erika Pennington,jacoblawson@yahoo.com,2023-08-20,"{""language"": ""DE"", ""currency"": ""USD""}",3418.4,Silver,1 +1831,Rhonda Moreno,larajennifer@hotmail.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""USD""}",6916.18,Bronze,1 +1832,Sean Frey,kwilkins@yahoo.com,2024-09-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1730.12,Bronze,0 +1833,Casey Reyes,rosalesstacy@gmail.com,2020-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9254.16,Gold,0 +1834,Brian Wheeler,elizabethrogers@hotmail.com,2024-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3404.46,Gold,1 +1835,Joshua Baldwin,owalker@howell-lee.com,2020-12-09,"{""language"": ""ES"", ""currency"": ""USD""}",1998.83,Bronze,0 +1836,Russell Porter,shelbygarcia@yahoo.com,2021-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",5851.16,Bronze,0 +1837,Christopher Miller,owensanthony@hotmail.com,2023-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",2527.83,Silver,0 +1838,Kathryn Rice,dbranch@martin-torres.com,2020-02-19,"{""language"": ""EN"", ""currency"": ""EUR""}",3607.59,Bronze,0 +1839,John Anderson,melissafreeman@neal.com,2024-12-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3837.99,Silver,0 +1840,Julie Goodwin,danielhale@gmail.com,2023-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",5219.21,Gold,1 +1841,Joseph Hawkins,williamskristin@day.com,2021-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",2030.65,Gold,0 +1842,Dr. Jonathan Bass MD,jlove@solis.org,2021-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",1607.69,Gold,0 +1843,Kimberly Aguilar,catherine49@valenzuela.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6689.54,Bronze,1 +1844,Jenna Rojas,milesanthony@haley-mcintyre.biz,2023-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",4760.29,Silver,1 +1845,John Webb,marywilliams@hotmail.com,2021-06-08,"{""language"": ""DE"", ""currency"": ""USD""}",2617.6,Gold,0 +1846,Timothy Winters,daniel68@hotmail.com,2022-10-27,"{""language"": ""FR"", ""currency"": ""CAD""}",317.2,Bronze,1 +1847,Kaitlin Nichols,kevinshelton@hotmail.com,2021-08-15,"{""language"": ""DE"", ""currency"": ""MXN""}",7842.5,Gold,0 +1848,Timothy Schultz,sonyafisher@yahoo.com,2024-03-02,"{""language"": ""FR"", ""currency"": ""USD""}",7210.73,Bronze,1 +1849,Sabrina Ramirez,ashley14@hotmail.com,2024-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",1219.6,Gold,0 +1850,Jason Martin,michael82@gmail.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2778.56,Silver,0 +1851,Clinton Neal,ayalakenneth@yahoo.com,2022-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6512.95,Silver,1 +1852,Julia Acosta,youngmonica@gmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""MXN""}",3092.97,Bronze,1 +1853,Lawrence Beltran,michael06@henson.com,2019-12-14,"{""language"": ""EN"", ""currency"": ""CAD""}",9231.17,Gold,0 +1854,Melissa Anderson,alicia47@yahoo.com,2022-07-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4050.04,Bronze,1 +1855,Randy Schneider,xrose@orr.com,2022-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",975.31,Bronze,1 +1856,Robert Oliver,ejohnson@hill.com,2021-12-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9929.64,Gold,1 +1857,William Schneider,ykennedy@jones.org,2020-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4172.59,Silver,1 +1858,Jade Medina,jefferyhansen@yahoo.com,2023-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",852.42,Silver,0 +1859,Neil Davis,daniel12@phillips.com,2024-05-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7078.34,Gold,1 +1860,David Hodges,jessicaclarke@rogers.info,2024-01-27,"{""language"": ""FR"", ""currency"": ""USD""}",1547.66,Silver,0 +1861,Jimmy Liu,pmurphy@hernandez-brady.biz,2021-10-04,"{""language"": ""ES"", ""currency"": ""MXN""}",6526.31,Silver,1 +1862,Joann Baldwin,doliver@yahoo.com,2023-02-10,"{""language"": ""IT"", ""currency"": ""USD""}",7950.12,Bronze,1 +1863,Angel Chandler,xbarajas@yahoo.com,2020-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5676.18,Bronze,1 +1864,Brenda Alexander,allison41@yahoo.com,2020-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",740.11,Bronze,0 +1865,Sonia Torres,karenashley@williams-davis.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""GBP""}",7764.86,Gold,1 +1866,Victoria Turner,marybailey@berg-taylor.com,2020-01-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8110.55,Gold,0 +1867,Laura Walters,marymedina@perkins.com,2022-07-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8126.43,Gold,1 +1868,Allison Cooley MD,jenna08@bailey-ramos.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4060.72,Bronze,0 +1869,Jose Snyder,eayala@diaz.com,2021-10-26,"{""language"": ""IT"", ""currency"": ""USD""}",3927.69,Gold,0 +1870,Amy Cunningham,monica62@lynch-ward.info,2024-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4865.08,Silver,1 +1871,Teresa Walsh,moralesaudrey@brown-wheeler.net,2021-06-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3422.3,Gold,1 +1872,Stephanie Randall,anthonygregory@davis-russell.net,2021-06-23,"{""language"": ""DE"", ""currency"": ""USD""}",2910.67,Gold,1 +1873,Jason Doyle,kristin75@waters-cooke.com,2024-11-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4139.14,Silver,0 +1874,Michael Wheeler,martinezstephanie@warren.com,2024-01-09,"{""language"": ""ES"", ""currency"": ""GBP""}",302.59,Silver,1 +1875,David Ruiz,jenkinsariel@prince.org,2020-01-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5341.25,Silver,0 +1876,Laura Rollins,bmathis@hotmail.com,2022-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",5111.87,Silver,0 +1877,Tina Nguyen,jasongonzalez@smith-booker.info,2022-09-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4947.99,Bronze,0 +1878,Dale Oneill,christophermurphy@craig-williams.info,2020-10-11,"{""language"": ""EN"", ""currency"": ""CAD""}",1418.66,Bronze,0 +1879,Joyce Barnett,earmstrong@deleon.org,2023-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",7550.64,Silver,0 +1880,Sandra Ward,marc87@davis.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8668.16,Gold,1 +1881,Laura Cooper,robertandrews@robbins.com,2021-01-18,"{""language"": ""IT"", ""currency"": ""USD""}",3471.82,Bronze,1 +1882,Heather Robinson,clarkeric@yahoo.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""GBP""}",9760.84,Gold,1 +1883,Amanda Huffman,elizabethpennington@gill.com,2022-06-24,"{""language"": ""FR"", ""currency"": ""MXN""}",5143.65,Silver,0 +1884,Alyssa Brown,elizabeth71@yahoo.com,2023-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",5298.62,Bronze,0 +1885,Erin Hudson,jason71@white.info,2021-07-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4401.47,Silver,1 +1886,Jonathan Martin,courtneygarcia@herrera.com,2023-03-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5692.93,Bronze,1 +1887,Thomas Solis,psmith@rodgers-peck.com,2019-12-22,"{""language"": ""IT"", ""currency"": ""MXN""}",7423.54,Silver,1 +1888,Kelsey Smith,justin52@gonzalez-mcgee.com,2020-09-16,"{""language"": ""EN"", ""currency"": ""CAD""}",818.24,Gold,0 +1889,Nicole Neal,whitney39@singleton.info,2022-06-10,"{""language"": ""EN"", ""currency"": ""CAD""}",5591.3,Bronze,1 +1890,Amy White,shortfrancisco@smith-tran.org,2022-09-24,"{""language"": ""EN"", ""currency"": ""MXN""}",4978.73,Silver,1 +1891,Kyle Spencer,coxteresa@peters.net,2021-06-21,"{""language"": ""DE"", ""currency"": ""USD""}",5310.26,Silver,0 +1892,Daniel Parks,reginahart@brown.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6442.3,Bronze,0 +1893,Nicholas Cohen,elliottangela@foley.org,2021-08-19,"{""language"": ""EN"", ""currency"": ""CAD""}",5884.13,Bronze,1 +1894,Michael Peterson,willie98@wolf.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",5488.4,Silver,1 +1895,Jennifer Benjamin,tbaldwin@gmail.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",66.27,Silver,1 +1896,John Johnson,valerie54@stewart.com,2020-03-13,"{""language"": ""FR"", ""currency"": ""GBP""}",4634.6,Silver,0 +1897,Evan Mayer,ogreen@johnson.org,2022-07-31,"{""language"": ""IT"", ""currency"": ""USD""}",1975.99,Silver,1 +1898,Amber Barrera,gardnercraig@welch-rose.com,2020-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9292.0,Silver,0 +1899,Nancy Flores,usantos@gmail.com,2020-02-01,"{""language"": ""IT"", ""currency"": ""USD""}",1957.37,Silver,1 +1900,Patty Williams,marshallconnor@gmail.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""MXN""}",2080.66,Bronze,0 +1901,Evan Melton,davidsonnorma@floyd.com,2020-06-19,"{""language"": ""DE"", ""currency"": ""EUR""}",2066.3,Silver,0 +1902,Nicholas Arnold,nicolasgarcia@fletcher.com,2021-02-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2000.42,Gold,1 +1903,Robert Guerrero DDS,omartin@hotmail.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4342.4,Gold,0 +1904,Joseph Anderson,bakerjason@smith-rose.com,2021-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",848.26,Silver,1 +1905,Monica Hamilton,pamela56@hotmail.com,2021-07-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1795.95,Silver,0 +1906,Allen Nguyen,megan12@gallegos-palmer.com,2021-08-22,"{""language"": ""ES"", ""currency"": ""USD""}",6516.85,Bronze,1 +1907,Jonathan Anderson,herrerajoseph@gmail.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",6611.47,Bronze,1 +1908,Richard Miller,hmurphy@hotmail.com,2021-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",2191.57,Bronze,1 +1909,Stephen Cline,jessicamorris@adams.com,2022-05-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5172.5,Gold,0 +1910,Andrew Atkins,danielharper@gmail.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""CAD""}",2907.48,Gold,1 +1911,Tara Alvarado,wgordon@crawford-nielsen.org,2024-05-25,"{""language"": ""EN"", ""currency"": ""CAD""}",5307.28,Gold,0 +1912,Deborah Baker,christensenmichael@dorsey.com,2024-03-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2969.98,Gold,0 +1913,Nicole Carey,diazsteven@hotmail.com,2023-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",8513.6,Bronze,0 +1914,Amanda Rogers,torresjohn@hotmail.com,2022-04-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1669.27,Silver,1 +1915,Hector Goodman,ballardmatthew@brown.com,2020-11-11,"{""language"": ""DE"", ""currency"": ""CAD""}",3208.06,Silver,0 +1916,Jamie Kelly,pobrien@wilson.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""USD""}",2725.8,Silver,1 +1917,Kurt Shaw,mcalderon@bailey-garrison.com,2023-11-22,"{""language"": ""DE"", ""currency"": ""USD""}",6702.95,Bronze,1 +1918,Valerie Morris,charlottegreen@buckley-zhang.com,2021-10-29,"{""language"": ""DE"", ""currency"": ""USD""}",5619.69,Bronze,1 +1919,Michele Wagner,tylercameron@cochran.com,2020-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1816.32,Bronze,1 +1920,Brittany Kim,matthew97@gmail.com,2021-12-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5045.42,Bronze,0 +1921,Megan Rodriguez,andres48@harris-gordon.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""USD""}",7631.16,Silver,0 +1922,Garrett Marquez,kgoodman@gmail.com,2024-02-03,"{""language"": ""ES"", ""currency"": ""GBP""}",5210.1,Gold,1 +1923,Jonathan Franco,amartin@hotmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""USD""}",3811.81,Bronze,1 +1924,Bobby Love,kevin37@mckinney.info,2022-08-10,"{""language"": ""DE"", ""currency"": ""GBP""}",1289.97,Bronze,1 +1925,Austin Ford,beckdaniel@gmail.com,2023-08-08,"{""language"": ""EN"", ""currency"": ""MXN""}",9059.97,Bronze,1 +1926,Erik Ramirez,millerrachel@simon-jacobs.net,2024-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",1958.13,Gold,1 +1927,Adam Miller,ftrevino@hotmail.com,2022-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",9096.0,Bronze,0 +1928,Nicholas Wilson,stephaniemyers@gmail.com,2024-07-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2090.91,Silver,0 +1929,Thomas Wade,xmonroe@brooks-sosa.com,2022-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",186.72,Gold,0 +1930,Stephanie Decker,awheeler@gutierrez.biz,2020-08-27,"{""language"": ""IT"", ""currency"": ""MXN""}",1139.73,Bronze,0 +1931,Jeremy Lewis,zwilson@yahoo.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8231.93,Silver,1 +1932,Sara Day,olsonsteven@wilson-wright.com,2022-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",4268.76,Gold,1 +1933,Jermaine Long,catherine18@matthews.org,2024-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4536.77,Silver,0 +1934,Kathleen Johnson,terrelldavid@jones-ross.net,2020-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",2392.23,Bronze,0 +1935,Nicole Garza,laceyfrancis@gmail.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9709.21,Bronze,0 +1936,Joseph Lee,ronald92@hotmail.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",3570.87,Gold,1 +1937,Melissa Smith,gturner@burns.biz,2020-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",968.0,Silver,0 +1938,Kelsey George,ahuff@collins.com,2023-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",4089.25,Bronze,1 +1939,Taylor Andrade,butlerjeffrey@ballard.info,2024-09-13,"{""language"": ""IT"", ""currency"": ""USD""}",2249.31,Gold,1 +1940,Corey Marshall,hmoon@hotmail.com,2024-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",744.95,Silver,0 +1941,Antonio Clark,gfranco@hotmail.com,2021-05-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7663.27,Silver,0 +1942,Jaime Schwartz,hernandezanthony@mendoza.com,2023-11-06,"{""language"": ""EN"", ""currency"": ""GBP""}",4485.24,Bronze,1 +1943,Willie Perez,browncorey@hotmail.com,2023-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",5463.37,Gold,0 +1944,Michael Ross,jeffrey42@hotmail.com,2024-10-17,"{""language"": ""DE"", ""currency"": ""EUR""}",2664.48,Gold,1 +1945,Regina Olson,curtis13@hotmail.com,2024-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",7810.97,Silver,0 +1946,Michael Hernandez,aclark@hotmail.com,2023-12-30,"{""language"": ""IT"", ""currency"": ""MXN""}",4780.47,Silver,0 +1947,Sierra Petersen,qmeyer@stafford-fisher.com,2024-12-01,"{""language"": ""ES"", ""currency"": ""EUR""}",7413.65,Silver,0 +1948,Mark Murphy,austinjohnson@caldwell.org,2023-12-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4423.43,Silver,0 +1949,Jordan Compton,tdawson@kelly.info,2020-10-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1446.4,Gold,0 +1950,James Rodriguez,kingwyatt@paul-oconnell.com,2020-03-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2207.28,Silver,0 +1951,Monica Boyd,janice31@gmail.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",6118.18,Silver,1 +1952,Wendy Wilkinson,megan90@gmail.com,2022-06-26,"{""language"": ""ES"", ""currency"": ""MXN""}",3419.42,Bronze,1 +1953,Bradley Pierce,frank54@richardson-alexander.com,2024-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",2328.52,Bronze,1 +1954,Michael Moore,laurabrown@velasquez.biz,2021-06-29,"{""language"": ""DE"", ""currency"": ""GBP""}",7761.3,Gold,1 +1955,David Knight,rhondahuffman@yahoo.com,2022-06-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4601.25,Silver,1 +1956,Eric Smith,jamesdarlene@mcclure.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""GBP""}",7886.06,Silver,1 +1957,Glen Miller,carl15@powers.com,2020-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3150.55,Silver,1 +1958,Rachel Le,vsmith@vega.org,2024-10-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3831.19,Gold,1 +1959,Michael Blake,brandy45@graves.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""USD""}",2836.16,Bronze,0 +1960,Stuart Smith,cynthiajohnson@hotmail.com,2024-07-02,"{""language"": ""FR"", ""currency"": ""MXN""}",4919.37,Bronze,0 +1961,Monica Bridges,david94@moore-summers.org,2023-06-03,"{""language"": ""DE"", ""currency"": ""GBP""}",874.85,Gold,0 +1962,Melissa Daniels,sullivanthomas@yahoo.com,2023-07-09,"{""language"": ""EN"", ""currency"": ""GBP""}",3319.63,Silver,1 +1963,Christina Russell,foleywendy@hotmail.com,2024-04-05,"{""language"": ""IT"", ""currency"": ""USD""}",712.14,Silver,0 +1964,Randy Evans,elee@hotmail.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8761.01,Bronze,0 +1965,John Lin,sellis@ortiz.com,2023-07-29,"{""language"": ""IT"", ""currency"": ""USD""}",2694.28,Gold,1 +1966,Daniel Smith,logancollins@brown.com,2022-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",5032.66,Gold,0 +1967,Kristy Lopez,kenneth08@hughes.com,2022-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9424.11,Silver,1 +1968,Reginald Miller,bstevens@cooper-calhoun.com,2024-03-28,"{""language"": ""FR"", ""currency"": ""EUR""}",3324.09,Silver,1 +1969,Matthew Hines,linda71@adams-carr.com,2020-04-11,"{""language"": ""EN"", ""currency"": ""GBP""}",356.12,Silver,0 +1970,Donna Smith,sarahill@yahoo.com,2020-05-15,"{""language"": ""EN"", ""currency"": ""MXN""}",7597.16,Gold,0 +1971,Matthew Hansen,ejenkins@green.com,2020-10-01,"{""language"": ""FR"", ""currency"": ""GBP""}",1675.42,Silver,1 +1972,Savannah Holland,ljones@hudson.com,2024-09-27,"{""language"": ""EN"", ""currency"": ""CAD""}",8199.45,Bronze,0 +1973,Brandon Dixon,ydavis@yahoo.com,2022-10-31,"{""language"": ""DE"", ""currency"": ""GBP""}",3704.6,Silver,0 +1974,Dawn Murphy,grice@robbins.info,2020-07-03,"{""language"": ""EN"", ""currency"": ""GBP""}",693.85,Silver,1 +1975,Mrs. Hannah Tyler PhD,moniquemcdaniel@gmail.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7203.59,Silver,1 +1976,Kayla Carter,mstewart@hotmail.com,2022-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",2281.04,Silver,0 +1977,Stephen Montes,austin84@ewing.com,2022-12-12,"{""language"": ""ES"", ""currency"": ""USD""}",194.06,Silver,1 +1978,Joseph Reed,scotttommy@mathews-gross.com,2023-06-30,"{""language"": ""DE"", ""currency"": ""GBP""}",162.86,Bronze,0 +1979,Lori Alexander,karencain@yahoo.com,2022-05-29,"{""language"": ""DE"", ""currency"": ""EUR""}",7211.44,Silver,1 +1980,Benjamin Gonzales,floresnicole@gmail.com,2020-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",4534.61,Gold,0 +1981,Laura Perez,xrocha@yahoo.com,2021-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",5563.72,Gold,1 +1982,Jennifer Kirk,sylviawilson@gmail.com,2023-09-01,"{""language"": ""FR"", ""currency"": ""GBP""}",1221.87,Silver,1 +1983,Steve Hunt,paulbraun@hotmail.com,2024-06-25,"{""language"": ""FR"", ""currency"": ""USD""}",4362.06,Gold,0 +1984,John King,crowe@barker.com,2022-06-04,"{""language"": ""FR"", ""currency"": ""GBP""}",3303.53,Gold,1 +1985,Christopher Thomas,robert15@gmail.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""EUR""}",3365.26,Bronze,1 +1986,Mark Fuentes,yrivera@yahoo.com,2021-08-08,"{""language"": ""IT"", ""currency"": ""USD""}",7324.2,Silver,1 +1987,Russell Moreno,jensensharon@ward.com,2021-05-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3046.99,Silver,1 +1988,Tony Johnson III,vali@davila-acosta.info,2021-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",6488.06,Silver,1 +1989,Nathaniel Wright MD,jennifer07@gmail.com,2024-01-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1067.48,Silver,0 +1990,Suzanne Hernandez,brandi82@garcia.org,2023-11-29,"{""language"": ""ES"", ""currency"": ""GBP""}",8023.23,Silver,0 +1991,David Clark,joneswendy@grant-walker.info,2023-09-01,"{""language"": ""ES"", ""currency"": ""GBP""}",6037.69,Bronze,1 +1992,Julia Wilson,cheryl11@gmail.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6819.85,Gold,1 +1993,Brandon Nelson,johnsmith@bruce.biz,2023-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9086.41,Bronze,0 +1994,Terry Byrd,fcollins@rosales.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""CAD""}",7334.62,Gold,1 +1995,Charles Thomas,carolynjordan@hotmail.com,2020-10-11,"{""language"": ""DE"", ""currency"": ""CAD""}",7028.21,Gold,0 +1996,Michael Ayers,delgadojennifer@yahoo.com,2022-09-16,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.87,Gold,1 +1997,Robert Jackson,pdean@gmail.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""USD""}",7907.88,Bronze,1 +1998,Anthony Reyes,rosebrian@diaz.biz,2020-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",3225.35,Gold,0 +1999,Paul Brown,coopermichael@gmail.com,2020-12-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6757.6,Gold,1 +2000,Scott Harmon,barbara10@hotmail.com,2020-10-27,"{""language"": ""ES"", ""currency"": ""EUR""}",8137.88,Bronze,0 +2001,Rachel Smith,marcia26@hotmail.com,2021-10-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1829.6,Bronze,0 +2002,Ashley Gonzalez,zalexander@hotmail.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""CAD""}",838.0,Silver,0 +2003,Brian Carey,kellymoore@gmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""EUR""}",5145.06,Silver,0 +2004,Michael Johnson,mwood@yahoo.com,2021-07-22,"{""language"": ""IT"", ""currency"": ""GBP""}",6952.02,Silver,0 +2005,Dean Duncan,jjohnson@dyer.com,2021-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7539.59,Bronze,1 +2006,Ronald Cooper,timothy36@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""GBP""}",530.65,Gold,0 +2007,Benjamin Smith,yholmes@patel.biz,2022-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",6684.5,Bronze,0 +2008,Jacob Murphy,fblack@brown.info,2022-02-13,"{""language"": ""DE"", ""currency"": ""MXN""}",516.97,Silver,0 +2009,William Harrison,robert78@hotmail.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""USD""}",5145.14,Silver,1 +2010,Julie Stevenson,williamsdaniel@hogan-le.org,2024-08-30,"{""language"": ""FR"", ""currency"": ""CAD""}",8581.51,Silver,1 +2011,Steven Woods,xparker@phillips-butler.com,2023-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5628.98,Silver,0 +2012,Christina James,kanderson@gmail.com,2020-05-24,"{""language"": ""IT"", ""currency"": ""GBP""}",4527.09,Silver,0 +2013,Ann Thomas,richardsondonna@hotmail.com,2024-07-27,"{""language"": ""DE"", ""currency"": ""USD""}",3910.75,Gold,1 +2014,Eric Greene,nancyunderwood@ritter-sampson.com,2023-08-20,"{""language"": ""EN"", ""currency"": ""MXN""}",4375.26,Gold,1 +2015,Lisa Welch,kristina46@gmail.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",1904.65,Bronze,0 +2016,Tina Hale,karen73@yahoo.com,2022-01-05,"{""language"": ""DE"", ""currency"": ""EUR""}",7828.31,Silver,1 +2017,Tonya Fernandez,brownmelanie@gmail.com,2023-07-24,"{""language"": ""EN"", ""currency"": ""USD""}",5859.49,Silver,1 +2018,Dr. Jennifer Obrien,sdorsey@hotmail.com,2023-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",9237.01,Bronze,0 +2019,Julia Mcdonald,garciakevin@yahoo.com,2022-08-11,"{""language"": ""EN"", ""currency"": ""USD""}",503.64,Silver,0 +2020,Gina Valdez,iedwards@hotmail.com,2020-07-09,"{""language"": ""DE"", ""currency"": ""CAD""}",686.1,Bronze,1 +2021,Latasha Cole,vclark@michael-benson.com,2022-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",7780.38,Gold,1 +2022,Brandy Campos,sheltontimothy@roberts-brown.com,2022-05-19,"{""language"": ""ES"", ""currency"": ""CAD""}",2746.03,Bronze,1 +2023,Connor Silva,sloangary@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""USD""}",3862.2,Gold,0 +2024,Vincent Schaefer,tracyjohnson@yahoo.com,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",8331.81,Silver,0 +2025,Travis White,kristinbolton@yahoo.com,2023-07-25,"{""language"": ""FR"", ""currency"": ""GBP""}",887.76,Gold,0 +2026,Kimberly Burns,victorbutler@yahoo.com,2023-10-31,"{""language"": ""DE"", ""currency"": ""CAD""}",2513.96,Bronze,0 +2027,Oscar Morris,gary87@yahoo.com,2021-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8321.33,Bronze,0 +2028,Nancy Sherman,lewisthomas@chavez.com,2020-02-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8381.23,Gold,1 +2029,Sean Castro,tatechris@velazquez.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""GBP""}",1259.59,Bronze,0 +2030,Patrick Jones,claytonkane@harris.com,2020-05-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7893.31,Bronze,0 +2031,Timothy Cox,xmelendez@wu.net,2022-11-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7805.96,Bronze,1 +2032,Amanda Mccarty,barry66@gmail.com,2024-10-20,"{""language"": ""EN"", ""currency"": ""USD""}",3047.05,Bronze,0 +2033,Shirley Todd,osmith@williams.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""EUR""}",1715.17,Gold,0 +2034,Jenny Nguyen,petersonamanda@yahoo.com,2024-02-09,"{""language"": ""IT"", ""currency"": ""USD""}",5942.35,Silver,1 +2035,Nathaniel Collins,bellkyle@yahoo.com,2020-01-15,"{""language"": ""DE"", ""currency"": ""CAD""}",606.22,Bronze,0 +2036,Daniel Davies,kingmichael@hotmail.com,2024-08-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7988.7,Silver,0 +2037,Christopher Graham,charles81@hotmail.com,2020-05-21,"{""language"": ""IT"", ""currency"": ""MXN""}",8037.75,Gold,0 +2038,Morgan Martin,kristina71@gmail.com,2022-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5666.94,Gold,1 +2039,Donald Pierce,rosebryant@yahoo.com,2020-03-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7346.68,Gold,1 +2040,Sandy Long,stephenwebb@williams-hopkins.com,2021-02-11,"{""language"": ""IT"", ""currency"": ""USD""}",4718.63,Gold,1 +2041,Kurt Young,mary90@russo.biz,2021-11-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4714.83,Bronze,1 +2042,George Coleman,andrewbrown@hotmail.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""CAD""}",330.93,Gold,0 +2043,Gerald Mason,hclark@gmail.com,2024-10-27,"{""language"": ""ES"", ""currency"": ""MXN""}",5133.2,Silver,1 +2044,Taylor Hinton,cainjasmine@stanton.com,2022-01-20,"{""language"": ""DE"", ""currency"": ""USD""}",892.41,Bronze,0 +2045,Emma Terry,awhite@gmail.com,2021-08-20,"{""language"": ""IT"", ""currency"": ""CAD""}",2650.12,Gold,0 +2046,Nicholas Burns,dyerdarrell@harris-foster.com,2021-08-08,"{""language"": ""ES"", ""currency"": ""EUR""}",785.28,Bronze,0 +2047,Sandra Fields,langalexander@carr.com,2020-01-23,"{""language"": ""FR"", ""currency"": ""EUR""}",7042.79,Bronze,1 +2048,Laura Simpson,sallytaylor@henderson.net,2020-09-09,"{""language"": ""FR"", ""currency"": ""GBP""}",3628.94,Bronze,0 +2049,Mathew Graham,plambert@rivera-sanders.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",7927.41,Silver,1 +2050,Brandy Gibson,marybolton@yahoo.com,2023-05-24,"{""language"": ""EN"", ""currency"": ""GBP""}",4775.99,Bronze,1 +2051,Roger Griffin,codyblankenship@smith-bartlett.com,2023-08-12,"{""language"": ""EN"", ""currency"": ""MXN""}",5242.36,Silver,1 +2052,Eric Collins,xduffy@hotmail.com,2023-07-07,"{""language"": ""ES"", ""currency"": ""USD""}",5385.08,Gold,1 +2053,Samantha Stevenson,elaine64@yahoo.com,2020-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6915.82,Gold,1 +2054,Mr. Marcus Guerrero,josephsmith@perry.com,2024-10-10,"{""language"": ""FR"", ""currency"": ""EUR""}",9101.85,Gold,1 +2055,Alexis Moore,james96@gmail.com,2022-12-09,"{""language"": ""DE"", ""currency"": ""USD""}",5382.41,Bronze,0 +2056,Tammy Smith,kellylaura@gmail.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""USD""}",4177.29,Gold,0 +2057,Alicia Kirby,smithkeith@yahoo.com,2020-09-11,"{""language"": ""IT"", ""currency"": ""USD""}",6611.85,Silver,1 +2058,Krystal Smith,michaelpayne@yahoo.com,2023-02-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9507.63,Gold,0 +2059,Benjamin Smith,lfuentes@nichols.com,2023-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7213.78,Silver,1 +2060,Vanessa Anderson,fisherjoshua@sanford-thomas.biz,2024-04-01,"{""language"": ""IT"", ""currency"": ""CAD""}",2544.86,Silver,0 +2061,Samantha Lee,christianstewart@yahoo.com,2022-09-30,"{""language"": ""FR"", ""currency"": ""USD""}",8158.83,Gold,1 +2062,Angela Leon,brianna14@hotmail.com,2020-10-21,"{""language"": ""FR"", ""currency"": ""MXN""}",1514.95,Gold,0 +2063,Richard Perkins,wrightkenneth@olsen-mccormick.com,2023-05-26,"{""language"": ""FR"", ""currency"": ""EUR""}",2448.77,Silver,0 +2064,Jo Williams,traceyscott@roberts-rivera.biz,2020-02-05,"{""language"": ""EN"", ""currency"": ""CAD""}",4005.52,Silver,0 +2065,Zoe Avila,gutierrezdouglas@kelly-bruce.com,2021-07-20,"{""language"": ""ES"", ""currency"": ""MXN""}",6164.68,Silver,1 +2066,John Davis MD,joneslisa@yahoo.com,2020-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",4462.36,Gold,0 +2067,Terri Morton,isanchez@hotmail.com,2024-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",2992.86,Bronze,0 +2068,James Richardson,ylee@dalton-walker.com,2021-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",1823.05,Bronze,1 +2069,Wanda Rhodes,nmartin@petersen.biz,2020-04-29,"{""language"": ""DE"", ""currency"": ""MXN""}",1659.13,Bronze,0 +2070,Zachary Nielsen,carolyn63@davies.net,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",3961.4,Silver,1 +2071,Virginia Diaz,umccarthy@blackburn.info,2023-08-31,"{""language"": ""IT"", ""currency"": ""USD""}",1232.98,Gold,0 +2072,Brian Roman,etownsend@melton.biz,2023-10-31,"{""language"": ""ES"", ""currency"": ""USD""}",844.57,Silver,0 +2073,Nicholas Snow,daniellejohnson@hotmail.com,2019-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",5205.28,Silver,1 +2074,Micheal Wiggins,smithmelissa@hotmail.com,2021-01-14,"{""language"": ""EN"", ""currency"": ""GBP""}",9405.0,Bronze,1 +2075,Joseph Johnston,stephanie35@watkins.com,2023-12-30,"{""language"": ""IT"", ""currency"": ""EUR""}",1592.65,Silver,0 +2076,Katherine Holmes,davidkeith@yahoo.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""EUR""}",8519.59,Silver,1 +2077,Carolyn Bailey,michaelhill@yahoo.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""USD""}",536.76,Bronze,0 +2078,Seth Herring,makayla49@bradford.com,2020-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",1966.74,Bronze,1 +2079,Corey Adams,penalawrence@yahoo.com,2021-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",6913.01,Silver,0 +2080,David Davidson,ddean@mills.com,2021-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",93.41,Bronze,0 +2081,James Alvarez,lisarodriguez@wheeler.com,2023-03-19,"{""language"": ""DE"", ""currency"": ""CAD""}",2164.46,Silver,0 +2082,Jacob Lee,jscott@yahoo.com,2022-02-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9436.1,Silver,0 +2083,Joshua Arias,samantha08@yahoo.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""CAD""}",903.54,Bronze,1 +2084,Wayne Burke,ulewis@gmail.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8658.31,Silver,0 +2085,Julie Bowers,uhart@gmail.com,2021-03-21,"{""language"": ""ES"", ""currency"": ""EUR""}",5387.86,Gold,0 +2086,Timothy Miller,jo83@holt.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""EUR""}",408.71,Silver,0 +2087,Holly Pittman,linda56@yahoo.com,2020-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",259.65,Gold,1 +2088,David Brown,samuelhooper@yahoo.com,2023-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",7639.26,Bronze,1 +2089,Brenda Ramos,jmitchell@gmail.com,2021-12-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1299.88,Silver,0 +2090,Juan Jackson DVM,cliffordbeck@moore.biz,2024-05-03,"{""language"": ""IT"", ""currency"": ""MXN""}",4147.91,Gold,0 +2091,Angelica Shepard,craig56@gmail.com,2020-04-07,"{""language"": ""FR"", ""currency"": ""MXN""}",6861.32,Gold,1 +2092,Jeremy Gardner,nicole19@perry.com,2024-10-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9146.7,Silver,1 +2093,Trevor Armstrong,heatherbrock@rodgers.org,2023-01-20,"{""language"": ""IT"", ""currency"": ""CAD""}",3241.77,Silver,0 +2094,Scott Key,michaelbeltran@garrett.org,2024-06-20,"{""language"": ""EN"", ""currency"": ""GBP""}",4001.82,Gold,1 +2095,Sandra Martin,cmorales@yahoo.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",1412.28,Gold,0 +2096,Jennifer Robinson,kevin12@gmail.com,2020-08-11,"{""language"": ""EN"", ""currency"": ""MXN""}",1469.51,Gold,0 +2097,Colton Weber,qperry@parrish-rush.com,2021-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9187.48,Bronze,0 +2098,Kimberly Davis,victoria07@hotmail.com,2021-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",7146.9,Bronze,0 +2099,Alex Francis,david14@melendez.com,2023-10-25,"{""language"": ""EN"", ""currency"": ""MXN""}",8710.6,Bronze,0 +2100,Megan Harvey,hrobinson@hotmail.com,2023-07-20,"{""language"": ""ES"", ""currency"": ""GBP""}",4156.19,Gold,1 +2101,Todd Chambers,johnsonjenna@yahoo.com,2022-01-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2926.28,Gold,1 +2102,Virginia Dunlap,brettmoore@francis.com,2021-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5038.43,Gold,0 +2103,Jessica Patel,gordonmeghan@gmail.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1699.64,Gold,0 +2104,Barbara Yang,zryan@gutierrez-boyd.biz,2022-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7601.99,Silver,0 +2105,Kerry Watts,harpersandra@cox.com,2021-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",5441.6,Bronze,1 +2106,Laura Miller,christophercole@house-sandoval.com,2022-05-21,"{""language"": ""EN"", ""currency"": ""EUR""}",1923.51,Gold,1 +2107,Deanna Harris,leah38@yahoo.com,2020-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5834.22,Silver,1 +2108,Linda Scott MD,ycrosby@yahoo.com,2021-12-22,"{""language"": ""DE"", ""currency"": ""USD""}",9170.32,Silver,0 +2109,Megan Thompson,benjaminbarber@yahoo.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4247.3,Gold,0 +2110,Rachel Owen,doylemegan@montgomery.info,2024-03-22,"{""language"": ""IT"", ""currency"": ""USD""}",6101.45,Gold,0 +2111,Anthony Bennett,cherylnelson@yahoo.com,2020-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",3376.18,Silver,0 +2112,Amanda Rodgers,nguyenjacob@bass.net,2021-04-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8678.79,Silver,1 +2113,Benjamin Romero,parknicole@yahoo.com,2021-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1304.77,Gold,0 +2114,Matthew Fisher,collinsnicholas@yahoo.com,2023-04-10,"{""language"": ""IT"", ""currency"": ""GBP""}",1283.03,Silver,0 +2115,Kevin Martinez,josephmeza@davis.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",6895.27,Bronze,1 +2116,Barbara Harrison,abrown@duran.biz,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",2341.7,Gold,1 +2117,Angela Lee,hburns@lee-hanson.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",1203.96,Silver,0 +2118,Anthony Mitchell,ebutler@gill.com,2020-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3178.86,Silver,1 +2119,Carol Frye,diana88@torres.com,2022-01-16,"{""language"": ""ES"", ""currency"": ""CAD""}",3416.31,Bronze,1 +2120,Diane Parker,tmeza@powell.com,2022-02-10,"{""language"": ""EN"", ""currency"": ""USD""}",6173.24,Gold,1 +2121,Joel Marshall,angelaharvey@yahoo.com,2024-01-28,"{""language"": ""FR"", ""currency"": ""EUR""}",7076.85,Bronze,0 +2122,Juan Washington,dianemills@gmail.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""GBP""}",2959.58,Bronze,1 +2123,Trevor Kane,ucampos@hotmail.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4342.55,Silver,0 +2124,Ian Fisher,obuchanan@green.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3509.79,Gold,1 +2125,Jennifer Brown,carol32@skinner.net,2022-09-07,"{""language"": ""FR"", ""currency"": ""GBP""}",7224.32,Silver,1 +2126,Tammy Snow,kyle40@armstrong.com,2021-04-08,"{""language"": ""FR"", ""currency"": ""USD""}",7976.6,Bronze,0 +2127,Jimmy Turner,douglas15@yahoo.com,2022-12-13,"{""language"": ""EN"", ""currency"": ""USD""}",4271.67,Gold,1 +2128,Mrs. Cynthia Wood,johndavis@hotmail.com,2022-09-20,"{""language"": ""FR"", ""currency"": ""MXN""}",5991.17,Gold,1 +2129,Susan Gray,daltonchloe@petersen.biz,2020-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",9197.32,Silver,1 +2130,Natalie Walker,xsanchez@yahoo.com,2022-02-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6408.37,Bronze,1 +2131,Jessica Davis,lisabrock@gmail.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""USD""}",2296.23,Gold,1 +2132,Christopher Thompson,djohnston@yahoo.com,2021-04-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9642.33,Bronze,1 +2133,Patricia Brown,robert43@yahoo.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2205.43,Silver,1 +2134,Rachel Price,hmorris@lopez.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3712.16,Bronze,1 +2135,Curtis Frazier,michelle22@hotmail.com,2020-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3824.45,Bronze,1 +2136,Alicia Martinez,bonnie92@yahoo.com,2021-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",7180.85,Gold,0 +2137,Robert Nelson,daryl16@yahoo.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""MXN""}",1454.89,Gold,1 +2138,Anthony Watson,martinezrachel@yahoo.com,2023-07-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4499.24,Bronze,1 +2139,Kevin Terry,patricialucero@barron.biz,2022-05-10,"{""language"": ""EN"", ""currency"": ""EUR""}",3325.95,Silver,1 +2140,Adam Davis,morrisrobert@holloway-patton.com,2023-12-03,"{""language"": ""DE"", ""currency"": ""GBP""}",7170.15,Bronze,0 +2141,David Anthony,aaronjohnson@burns.biz,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5334.04,Silver,0 +2142,Alejandro Brown,cwatson@gmail.com,2020-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",1709.45,Silver,1 +2143,Jessica Davenport,ghernandez@cisneros.net,2021-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",2249.39,Gold,0 +2144,Mr. Joseph Willis,hilledward@sawyer.com,2021-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",4196.69,Gold,0 +2145,Bryan Evans,xbarnes@yahoo.com,2023-09-27,"{""language"": ""IT"", ""currency"": ""CAD""}",6773.06,Silver,0 +2146,Sarah Thomas,vphelps@hotmail.com,2022-08-06,"{""language"": ""EN"", ""currency"": ""USD""}",8267.23,Bronze,0 +2147,Danielle Hopkins,karen46@watson.info,2021-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",9459.66,Bronze,1 +2148,Colin Barnett,walterrichard@wu.biz,2021-03-30,"{""language"": ""EN"", ""currency"": ""EUR""}",162.85,Silver,1 +2149,Charlotte Price,brittanybryant@yahoo.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2543.66,Gold,0 +2150,Jonathan Saunders,kimberlykelley@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""CAD""}",1499.13,Silver,1 +2151,Mark Sanchez,janicewarner@gmail.com,2023-12-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7915.99,Gold,1 +2152,Samantha Williamson,rhonda17@yahoo.com,2022-03-26,"{""language"": ""EN"", ""currency"": ""EUR""}",5258.49,Gold,0 +2153,Kurt Welch,hansensteven@gmail.com,2021-07-20,"{""language"": ""IT"", ""currency"": ""GBP""}",8945.54,Gold,1 +2154,Heidi Solis,hhuynh@nicholson.com,2024-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",4267.78,Silver,1 +2155,Heather Page,johnathan27@gmail.com,2021-02-02,"{""language"": ""DE"", ""currency"": ""USD""}",5373.13,Gold,1 +2156,John Hardy,krichardson@pierce-graham.com,2022-11-08,"{""language"": ""EN"", ""currency"": ""CAD""}",664.32,Silver,0 +2157,Denise Duke,jstephens@mccarty.org,2021-06-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3361.52,Gold,1 +2158,Holly Harmon,anna77@mckenzie.biz,2022-10-28,"{""language"": ""IT"", ""currency"": ""CAD""}",1690.05,Gold,1 +2159,Thomas Brown,yrobinson@hotmail.com,2024-08-14,"{""language"": ""ES"", ""currency"": ""GBP""}",5387.65,Bronze,0 +2160,Michael Lamb,alexandra68@yahoo.com,2022-01-26,"{""language"": ""ES"", ""currency"": ""USD""}",8607.45,Silver,1 +2161,Brian Brown,allenshawn@walker-davila.com,2024-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",6517.2,Bronze,0 +2162,Emily Moreno,joseph11@johnson.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""CAD""}",6779.1,Silver,1 +2163,Kristen Kelley,john23@gmail.com,2024-11-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9595.81,Gold,0 +2164,Jasmine Brown,rogersleslie@bean.com,2024-03-19,"{""language"": ""EN"", ""currency"": ""CAD""}",4105.34,Bronze,0 +2165,Debbie Gray,lopezmichael@yahoo.com,2021-12-31,"{""language"": ""IT"", ""currency"": ""GBP""}",9404.58,Bronze,1 +2166,Shelley Yoder,jmolina@figueroa.info,2022-11-26,"{""language"": ""IT"", ""currency"": ""USD""}",7214.21,Bronze,1 +2167,Lauren Spencer,cindy01@hotmail.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",9842.89,Bronze,1 +2168,Lauren Adkins,kathydeleon@wong.com,2024-04-21,"{""language"": ""IT"", ""currency"": ""CAD""}",6690.73,Silver,0 +2169,Michael Johnson,tammie59@hayes-perez.net,2024-04-22,"{""language"": ""IT"", ""currency"": ""USD""}",8447.37,Gold,1 +2170,Jeffrey Ferguson,danaenglish@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""GBP""}",1453.73,Silver,1 +2171,Joanna Munoz,qbarnett@wagner-jordan.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5416.76,Gold,1 +2172,Jason Gonzales,samuelrogers@gay.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""EUR""}",9424.41,Bronze,1 +2173,Jerry Rivera,torresdeborah@yahoo.com,2020-11-18,"{""language"": ""IT"", ""currency"": ""MXN""}",6848.73,Gold,0 +2174,Timothy Bradley,lisarodriguez@yahoo.com,2020-08-26,"{""language"": ""DE"", ""currency"": ""GBP""}",5116.31,Silver,1 +2175,Brandi Hernandez,margaret25@yahoo.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",9031.76,Bronze,1 +2176,Luis Montgomery,jrobles@torres.net,2022-06-04,"{""language"": ""EN"", ""currency"": ""USD""}",3810.19,Bronze,1 +2177,Scott Clark,mmarshall@edwards.info,2023-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",9106.18,Bronze,1 +2178,Bryan West,chad34@gmail.com,2023-11-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4997.73,Silver,0 +2179,Andrew Mueller,jarroyo@ashley.net,2022-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",1636.25,Gold,1 +2180,David Day,brenda14@hotmail.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5226.01,Gold,1 +2181,Theresa Ward,courtney16@yahoo.com,2023-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",7685.66,Gold,1 +2182,Timothy Miller,paul09@cole.biz,2024-09-17,"{""language"": ""EN"", ""currency"": ""USD""}",9894.16,Silver,1 +2183,Kimberly Reed,uholden@hotmail.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1409.57,Gold,0 +2184,Paul Mullins,christopher16@clark-dalton.biz,2022-06-07,"{""language"": ""FR"", ""currency"": ""USD""}",3094.07,Silver,0 +2185,Jonathon Becker,omar21@hotmail.com,2020-05-01,"{""language"": ""EN"", ""currency"": ""USD""}",1548.27,Gold,1 +2186,David Williams,vanderson@yahoo.com,2024-02-07,"{""language"": ""ES"", ""currency"": ""GBP""}",8985.97,Silver,0 +2187,Frederick Walter,chavezmargaret@clayton.com,2024-11-14,"{""language"": ""FR"", ""currency"": ""CAD""}",9188.91,Bronze,1 +2188,Marcia Melton,rmiranda@mora.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7021.27,Gold,1 +2189,Helen Yoder,juliasharp@lee.com,2023-03-27,"{""language"": ""FR"", ""currency"": ""USD""}",1443.91,Silver,1 +2190,Kristie Stewart,parkstephanie@yahoo.com,2020-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4807.13,Gold,1 +2191,Roger Ibarra,heather92@martin-duffy.info,2021-11-18,"{""language"": ""EN"", ""currency"": ""GBP""}",1205.15,Bronze,1 +2192,Edward Blackwell,crystalrodriguez@gmail.com,2020-05-03,"{""language"": ""IT"", ""currency"": ""EUR""}",3802.81,Gold,1 +2193,Gina Sheppard,djackson@yahoo.com,2020-03-21,"{""language"": ""IT"", ""currency"": ""EUR""}",1485.35,Bronze,1 +2194,Wanda Stafford,ggraham@yahoo.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8919.97,Bronze,0 +2195,Todd Price,ewilliams@yahoo.com,2023-10-09,"{""language"": ""DE"", ""currency"": ""USD""}",1301.73,Bronze,1 +2196,Wendy Clark,xbishop@rice-briggs.org,2023-07-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5845.22,Gold,0 +2197,Linda Bell,nlong@hotmail.com,2023-02-18,"{""language"": ""FR"", ""currency"": ""USD""}",3402.1,Gold,1 +2198,Julia Johnson,tinadeleon@yahoo.com,2023-12-06,"{""language"": ""DE"", ""currency"": ""USD""}",4387.05,Silver,1 +2199,Crystal Daniel,robert03@hotmail.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""EUR""}",9743.64,Gold,1 +2200,Yolanda Anderson,ashleyedwards@gmail.com,2022-08-08,"{""language"": ""FR"", ""currency"": ""EUR""}",8665.85,Silver,0 +2201,David Jones,znavarro@yahoo.com,2021-12-22,"{""language"": ""FR"", ""currency"": ""MXN""}",4338.35,Silver,0 +2202,Adrian Arnold,freyruth@gmail.com,2023-09-29,"{""language"": ""DE"", ""currency"": ""EUR""}",6956.64,Gold,1 +2203,Steve Wilson,richard04@johnson-barrera.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""USD""}",9448.88,Silver,0 +2204,Mrs. Jeanne Richardson MD,ernesthuynh@gmail.com,2021-01-12,"{""language"": ""IT"", ""currency"": ""CAD""}",307.68,Bronze,1 +2205,Brandon Fox,adam56@franklin.com,2024-02-03,"{""language"": ""DE"", ""currency"": ""EUR""}",8518.9,Bronze,0 +2206,Jorge Williams,smithmichelle@yahoo.com,2022-07-04,"{""language"": ""FR"", ""currency"": ""CAD""}",7606.97,Bronze,1 +2207,Benjamin Scott,colleenbutler@barrett-craig.com,2020-03-29,"{""language"": ""FR"", ""currency"": ""USD""}",9314.96,Silver,1 +2208,Melissa Stein,johnjohnson@yahoo.com,2024-07-19,"{""language"": ""DE"", ""currency"": ""EUR""}",9373.12,Silver,0 +2209,Christopher Pope,gharrison@lang-powers.info,2022-10-24,"{""language"": ""DE"", ""currency"": ""GBP""}",8391.08,Silver,1 +2210,Ashley Velazquez,michael03@gmail.com,2024-09-01,"{""language"": ""ES"", ""currency"": ""MXN""}",9108.67,Gold,1 +2211,John Dennis,micheleperez@martin-kim.net,2021-06-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3722.12,Silver,0 +2212,Kelsey Ball MD,wheeleryesenia@yahoo.com,2024-09-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9096.82,Bronze,0 +2213,Julie Dominguez,wesleygamble@gmail.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",187.55,Gold,0 +2214,Joshua Baxter,tracy59@gmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",9598.56,Bronze,1 +2215,Dean Miller,jsnyder@phillips.info,2024-05-29,"{""language"": ""IT"", ""currency"": ""USD""}",1276.06,Bronze,1 +2216,Christian Rush,chrishoward@gmail.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",1732.05,Bronze,0 +2217,James Walker,regina85@hill-lowe.com,2022-02-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3171.04,Silver,0 +2218,Samuel Smith,erikablair@gmail.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9951.88,Silver,1 +2219,Kelsey White,eburke@morrow.com,2020-04-24,"{""language"": ""DE"", ""currency"": ""CAD""}",4880.69,Silver,0 +2220,Veronica Smith,bthomas@hodges-kemp.biz,2022-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",4997.26,Silver,1 +2221,Joan Franco,scottfernandez@walls.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""MXN""}",2730.08,Silver,0 +2222,Jason Webb,christopherferguson@yahoo.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""USD""}",5662.49,Gold,1 +2223,Robert Schwartz,lisa88@anderson.info,2023-06-20,"{""language"": ""FR"", ""currency"": ""GBP""}",1605.93,Silver,1 +2224,Paula Huffman,xsmith@davis.com,2022-11-04,"{""language"": ""EN"", ""currency"": ""MXN""}",7502.12,Gold,1 +2225,Angela Quinn,guerragloria@yahoo.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""USD""}",3903.07,Bronze,0 +2226,Brenda Ortiz,joanna70@yahoo.com,2020-07-22,"{""language"": ""ES"", ""currency"": ""EUR""}",8853.18,Gold,0 +2227,Christina Harris,diazjennifer@soto.com,2024-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",2161.05,Gold,0 +2228,Robert Hardy,sarahfuller@macias.com,2024-01-04,"{""language"": ""IT"", ""currency"": ""CAD""}",2432.31,Bronze,0 +2229,Wayne Hernandez,brian13@brooks-oliver.org,2021-01-16,"{""language"": ""ES"", ""currency"": ""EUR""}",133.76,Bronze,0 +2230,Sara Castaneda,diane12@montoya.com,2023-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",1445.97,Gold,1 +2231,Sara Bennett,jeremyturner@payne.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2177.98,Gold,0 +2232,David Smith,ruizwilliam@jackson.net,2020-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",2162.49,Bronze,0 +2233,Jessica Doyle,joe39@rogers-reynolds.com,2022-12-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8957.04,Gold,0 +2234,Stephanie Davis,bflowers@johnson.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9899.47,Silver,0 +2235,Taylor Thompson,terripierce@cook-jensen.com,2021-08-04,"{""language"": ""DE"", ""currency"": ""MXN""}",6992.74,Gold,1 +2236,Tracy Allen,shariglass@walsh-thomas.com,2021-11-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3759.61,Bronze,0 +2237,Shannon Trujillo,allenerica@norris.com,2024-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",177.3,Bronze,1 +2238,Walter Mitchell,henryspencer@manning-white.org,2020-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",830.35,Bronze,1 +2239,Amber Rodriguez,jameseaton@gmail.com,2020-10-20,"{""language"": ""FR"", ""currency"": ""USD""}",2930.52,Bronze,0 +2240,Darren Bishop,johnsonmelanie@hotmail.com,2020-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",5879.29,Silver,1 +2241,Patrick Thomas,evan91@gmail.com,2020-03-14,"{""language"": ""IT"", ""currency"": ""MXN""}",799.73,Bronze,1 +2242,Christopher Watson,michelle39@wright.com,2023-08-04,"{""language"": ""IT"", ""currency"": ""USD""}",3919.86,Silver,0 +2243,Angela Smith MD,clayton82@yahoo.com,2021-02-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1282.16,Bronze,0 +2244,Tara Kim,torresrachel@gmail.com,2023-06-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6510.53,Bronze,0 +2245,Elizabeth Hughes,anthonyli@hunt.com,2024-01-20,"{""language"": ""IT"", ""currency"": ""MXN""}",1467.21,Gold,1 +2246,Hannah Ray,chelsea79@yahoo.com,2021-04-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2514.07,Gold,1 +2247,Brandon Greer,alexnelson@henry.org,2021-02-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5820.58,Gold,0 +2248,Stacey Scott,david56@yahoo.com,2024-08-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2272.59,Silver,0 +2249,Jessica Dawson,nicole09@hotmail.com,2022-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",5804.04,Silver,1 +2250,Benjamin Webb,jamie72@williams.com,2024-11-10,"{""language"": ""ES"", ""currency"": ""EUR""}",9850.07,Silver,0 +2251,Shelly Eaton,donald00@gmail.com,2023-04-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8142.97,Gold,0 +2252,Laura Hansen,anthonyberry@yahoo.com,2023-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",9402.64,Silver,0 +2253,Joshua Russell,qalvarez@kirk.com,2021-07-06,"{""language"": ""EN"", ""currency"": ""USD""}",6179.47,Gold,0 +2254,Eugene Ochoa II,trivas@mcintosh.com,2022-12-21,"{""language"": ""EN"", ""currency"": ""MXN""}",993.78,Gold,0 +2255,Erin Morales,gbrown@yahoo.com,2024-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",4360.79,Bronze,1 +2256,Catherine Mosley,nathan11@rasmussen-taylor.biz,2020-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",7602.87,Silver,0 +2257,Justin Gomez,jason23@gmail.com,2021-05-07,"{""language"": ""IT"", ""currency"": ""USD""}",9416.08,Silver,1 +2258,Julie Daniels,jeanette95@russell-leach.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",8192.47,Bronze,0 +2259,Aaron Black,gregory93@yahoo.com,2022-12-14,"{""language"": ""FR"", ""currency"": ""CAD""}",1276.84,Silver,0 +2260,Lisa Craig,ayalarichard@dickerson.net,2024-08-26,"{""language"": ""IT"", ""currency"": ""MXN""}",7043.86,Bronze,0 +2261,Angela Newton,bankseric@yahoo.com,2021-03-26,"{""language"": ""IT"", ""currency"": ""EUR""}",8630.06,Silver,0 +2262,Angela Mcfarland,charles03@edwards.com,2021-01-02,"{""language"": ""DE"", ""currency"": ""USD""}",9790.96,Gold,0 +2263,Erin Rodriguez,mbaker@hull-rowe.org,2024-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7772.86,Silver,1 +2264,Adrian Greer,amberbutler@wu-salazar.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""CAD""}",6103.79,Silver,0 +2265,Amanda Ramirez,cjones@garza-nguyen.biz,2020-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",5965.29,Silver,1 +2266,Mrs. Valerie Phillips DVM,michaelsanchez@gmail.com,2020-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",3635.24,Gold,1 +2267,Elizabeth Brooks,susan31@stewart.com,2023-03-29,"{""language"": ""IT"", ""currency"": ""USD""}",4418.7,Gold,1 +2268,Pam Walker,michaelrussell@gmail.com,2023-12-19,"{""language"": ""DE"", ""currency"": ""USD""}",8610.21,Silver,0 +2269,Travis Wiley,ydelgado@hotmail.com,2023-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9771.92,Silver,0 +2270,Karen Miller,robertsweeney@cameron.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""USD""}",4706.5,Gold,0 +2271,Courtney Osborne MD,eshaffer@gmail.com,2022-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",1413.01,Gold,0 +2272,Christian Dickerson,moranicholas@evans-jones.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""GBP""}",2259.08,Gold,0 +2273,Benjamin Soto,jessica02@moreno.com,2022-02-13,"{""language"": ""FR"", ""currency"": ""EUR""}",4832.52,Silver,1 +2274,Kayla May,adam96@yahoo.com,2023-08-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5858.92,Bronze,0 +2275,Jessica Diaz,william38@hotmail.com,2023-06-01,"{""language"": ""EN"", ""currency"": ""GBP""}",6080.72,Gold,1 +2276,Stephanie Adams,marybush@bowman-watson.com,2021-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",1324.52,Bronze,1 +2277,Audrey Hammond,davisandrea@flores.com,2020-09-08,"{""language"": ""EN"", ""currency"": ""CAD""}",553.24,Bronze,1 +2278,Mary Crawford,martinstephanie@hotmail.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5976.65,Gold,0 +2279,Andrew Lane,ysmith@wright.org,2024-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7148.61,Silver,1 +2280,Dr. Joshua Calderon,julie65@bryant.com,2021-10-25,"{""language"": ""ES"", ""currency"": ""GBP""}",8277.76,Silver,0 +2281,John Reeves,bowersveronica@king-cain.info,2024-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",3822.66,Gold,1 +2282,Ricardo Moore,christophermccarty@parker.info,2023-04-30,"{""language"": ""ES"", ""currency"": ""EUR""}",8063.54,Bronze,0 +2283,Donald Baird,dustin70@gmail.com,2022-04-22,"{""language"": ""FR"", ""currency"": ""EUR""}",8884.78,Bronze,1 +2284,Cynthia Mitchell,susan81@yahoo.com,2023-06-15,"{""language"": ""DE"", ""currency"": ""MXN""}",9622.4,Silver,0 +2285,Rodney King,mathewsmatthew@knapp.biz,2024-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",9869.35,Silver,0 +2286,Kimberly Ruiz,rosejanice@ortega.com,2022-05-03,"{""language"": ""IT"", ""currency"": ""CAD""}",1409.86,Gold,0 +2287,Michelle Ford,fstewart@hawkins.info,2022-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",6284.82,Bronze,1 +2288,Lisa Todd,pwalters@hotmail.com,2023-04-02,"{""language"": ""FR"", ""currency"": ""GBP""}",1972.51,Silver,0 +2289,Robert Mueller,josephmaldonado@bowman.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3693.02,Silver,0 +2290,Joseph Baker,cbowman@gmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8842.34,Silver,1 +2291,Amber Nelson,williamking@gmail.com,2020-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",604.76,Gold,0 +2292,Robert Hebert,deborahcastillo@thompson.org,2020-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",1660.27,Bronze,0 +2293,James Young,bnielsen@perez.org,2023-06-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5520.05,Gold,1 +2294,Paul Castillo,dthompson@cherry.com,2024-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",865.59,Bronze,1 +2295,Donna Taylor,paynerobert@jacobs.info,2020-01-07,"{""language"": ""DE"", ""currency"": ""USD""}",3879.63,Gold,1 +2296,Joshua Williams,charles63@white.com,2024-07-16,"{""language"": ""FR"", ""currency"": ""USD""}",5149.71,Gold,0 +2297,Calvin Rodriguez,lindsay89@hart.com,2022-09-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4509.45,Bronze,0 +2298,Jordan Powell,diazjamie@gmail.com,2020-05-26,"{""language"": ""FR"", ""currency"": ""GBP""}",755.08,Bronze,0 +2299,Greg Martinez,vmiller@walls.com,2023-09-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2712.55,Silver,0 +2300,Michael Pittman,djohnson@hotmail.com,2021-09-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7990.2,Silver,1 +2301,Monica Murray,johnnytaylor@hotmail.com,2023-05-24,"{""language"": ""ES"", ""currency"": ""GBP""}",7216.44,Silver,0 +2302,Elizabeth Luna,heather69@fritz.info,2021-12-28,"{""language"": ""EN"", ""currency"": ""GBP""}",5293.9,Gold,0 +2303,Randy Allen,peterselizabeth@lewis.com,2021-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",3259.21,Bronze,1 +2304,Charles Mendoza,michaelcarter@hotmail.com,2024-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",8782.77,Bronze,1 +2305,Kathleen Sanders,deannapatrick@hill.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",3391.03,Gold,1 +2306,David Morgan,skim@williams-garcia.com,2023-08-11,"{""language"": ""IT"", ""currency"": ""GBP""}",8564.52,Gold,0 +2307,Jessica Thomas,bushwendy@klein-harris.net,2023-11-23,"{""language"": ""EN"", ""currency"": ""MXN""}",4482.66,Silver,0 +2308,Stacy Gardner,gcarlson@gmail.com,2021-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",9745.87,Gold,1 +2309,Robert Jacobson,hilldeanna@hernandez-cummings.info,2023-05-29,"{""language"": ""FR"", ""currency"": ""USD""}",3543.63,Silver,1 +2310,Tanya Yang,connerdominique@henry-contreras.biz,2024-09-29,"{""language"": ""ES"", ""currency"": ""USD""}",4915.94,Bronze,0 +2311,Ian Lawson,ohoffman@mcdonald-smith.com,2020-02-18,"{""language"": ""ES"", ""currency"": ""EUR""}",7868.1,Bronze,1 +2312,Kaitlyn Lara,courtneysmith@gmail.com,2020-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",5157.2,Gold,0 +2313,Lauren Craig,grose@blackburn-king.com,2021-01-10,"{""language"": ""IT"", ""currency"": ""MXN""}",2213.09,Silver,1 +2314,Jonathan Olson,adamslaurie@hotmail.com,2024-11-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3254.89,Silver,1 +2315,Kristina Watkins,teresamason@yahoo.com,2023-03-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4546.77,Gold,0 +2316,Christopher Richardson,farrellgarrett@gmail.com,2020-09-23,"{""language"": ""FR"", ""currency"": ""GBP""}",415.5,Gold,1 +2317,Cole Mcfarland,adam36@gonzalez.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6273.68,Gold,0 +2318,Brandon Macias,jasonyoung@yahoo.com,2020-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",7465.14,Gold,0 +2319,Michael Mann,taylorwilliam@baird.com,2020-07-29,"{""language"": ""FR"", ""currency"": ""MXN""}",2600.94,Gold,0 +2320,Gabrielle Bell,jrobbins@ramirez.com,2020-02-29,"{""language"": ""FR"", ""currency"": ""CAD""}",4832.33,Bronze,1 +2321,David Ruiz,vchen@brown.com,2020-07-16,"{""language"": ""EN"", ""currency"": ""GBP""}",6183.27,Bronze,1 +2322,Justin Mason,lisamckinney@hotmail.com,2020-04-09,"{""language"": ""DE"", ""currency"": ""USD""}",4529.46,Gold,0 +2323,Donald Knox,ocruz@hall.com,2021-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",1413.1,Silver,1 +2324,Jorge Tucker,robertvaldez@yahoo.com,2021-03-02,"{""language"": ""IT"", ""currency"": ""GBP""}",8039.09,Bronze,1 +2325,Julie Clay,scalderon@berger-roman.com,2022-09-25,"{""language"": ""ES"", ""currency"": ""GBP""}",5604.34,Bronze,1 +2326,James Lee,russocharles@hotmail.com,2020-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",625.7,Gold,0 +2327,Mario Lynn,jcoffey@gmail.com,2021-04-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8097.1,Silver,1 +2328,Cesar Burns,jason83@hamilton.net,2022-11-08,"{""language"": ""EN"", ""currency"": ""USD""}",1517.22,Gold,0 +2329,Jason Gardner,fdiaz@gmail.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""CAD""}",9758.21,Gold,1 +2330,Vincent Estrada,vmejia@hotmail.com,2023-03-30,"{""language"": ""ES"", ""currency"": ""EUR""}",6887.88,Bronze,1 +2331,Abigail Reeves,talexander@diaz.net,2024-06-04,"{""language"": ""IT"", ""currency"": ""CAD""}",3743.61,Gold,1 +2332,Matthew Smith,belljeffrey@hotmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7236.17,Gold,0 +2333,Holly Herrera,sjohnson@maddox.org,2022-02-05,"{""language"": ""DE"", ""currency"": ""MXN""}",3032.04,Gold,1 +2334,Frank Johnson,jessica68@friedman.org,2022-03-19,"{""language"": ""IT"", ""currency"": ""CAD""}",733.92,Silver,1 +2335,Adam Hogan,novakjill@hurst-gonzales.com,2021-12-25,"{""language"": ""EN"", ""currency"": ""USD""}",7024.74,Bronze,1 +2336,Tiffany Davis,danaroman@hotmail.com,2022-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9039.28,Silver,1 +2337,Sue Thomas,jeffery53@montoya-johnson.com,2020-05-29,"{""language"": ""DE"", ""currency"": ""GBP""}",9374.99,Silver,1 +2338,Teresa Martin,harrisdonald@mitchell-torres.com,2024-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3193.59,Silver,0 +2339,Cheryl Romero,cperry@hotmail.com,2020-09-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5641.79,Gold,0 +2340,Sara Smith,valdezwilliam@gmail.com,2023-12-20,"{""language"": ""IT"", ""currency"": ""USD""}",9191.11,Silver,0 +2341,Larry Mullins,rachel54@gmail.com,2022-12-30,"{""language"": ""EN"", ""currency"": ""USD""}",2301.84,Silver,1 +2342,Allison Morrow,gkline@mason.com,2021-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",4005.65,Silver,0 +2343,Scott Ortiz,christopher63@gmail.com,2022-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",7479.46,Bronze,1 +2344,Jennifer Montgomery,fmckinney@hotmail.com,2021-01-21,"{""language"": ""FR"", ""currency"": ""EUR""}",323.17,Bronze,1 +2345,Vincent Drake,bridget13@yahoo.com,2024-05-19,"{""language"": ""IT"", ""currency"": ""CAD""}",8450.78,Bronze,1 +2346,Stephanie Liu,klinemichael@yahoo.com,2020-11-19,"{""language"": ""IT"", ""currency"": ""CAD""}",6688.15,Bronze,0 +2347,Vanessa Hansen,yrosales@williams.biz,2021-12-22,"{""language"": ""FR"", ""currency"": ""GBP""}",235.37,Bronze,0 +2348,Jimmy Dougherty,carl65@yahoo.com,2022-09-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4677.24,Silver,1 +2349,Alexander Gray,matthewanderson@yahoo.com,2022-01-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9206.18,Gold,1 +2350,Jeremy Salazar,nhuynh@yahoo.com,2020-06-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9434.87,Silver,0 +2351,Kent Santiago,dwade@yahoo.com,2021-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",778.3,Silver,1 +2352,Emily Henry,melissa57@robinson.net,2022-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",7748.29,Gold,0 +2353,Briana Edwards,vargaschristian@hotmail.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",9461.2,Silver,1 +2354,Renee Rodriguez,lcollins@gmail.com,2020-11-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4494.84,Gold,0 +2355,Steven Serrano,james44@gmail.com,2023-07-01,"{""language"": ""IT"", ""currency"": ""USD""}",9857.59,Bronze,0 +2356,Melissa Bender,katelynhines@yahoo.com,2021-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",4859.45,Silver,0 +2357,Kimberly Foley,robertwerner@yahoo.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9746.58,Gold,1 +2358,Kyle Hicks,aallen@yahoo.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1801.6,Gold,0 +2359,Calvin Sheppard,jonathan01@yahoo.com,2020-11-23,"{""language"": ""EN"", ""currency"": ""GBP""}",2946.97,Silver,1 +2360,Michael Gay,samuelblack@cooper.info,2023-12-21,"{""language"": ""EN"", ""currency"": ""USD""}",9991.92,Bronze,0 +2361,Shaun West,frank00@chavez.com,2022-08-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4329.56,Silver,1 +2362,Clifford Heath,matthewhoward@lopez-dennis.com,2021-06-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6840.02,Silver,0 +2363,Gregory Martinez,jacquelinelynch@hotmail.com,2021-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",4712.91,Bronze,1 +2364,Veronica Mckay,ohall@hotmail.com,2022-01-28,"{""language"": ""ES"", ""currency"": ""USD""}",9971.02,Gold,1 +2365,Jason Frederick,crystal47@harris.net,2022-07-09,"{""language"": ""DE"", ""currency"": ""USD""}",4755.65,Silver,1 +2366,Stephen Lee,jennifer75@anderson-alvarado.com,2022-01-15,"{""language"": ""IT"", ""currency"": ""GBP""}",311.35,Silver,0 +2367,Erin Foley,joshuabrown@gmail.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""EUR""}",1308.38,Gold,0 +2368,Amy Robbins,smithvictoria@leblanc.com,2021-10-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2779.79,Silver,1 +2369,Molly Ramirez,asmith@thomas-brooks.com,2020-12-06,"{""language"": ""DE"", ""currency"": ""MXN""}",4737.3,Silver,1 +2370,Nicole White,montoyaalyssa@stark.net,2022-01-25,"{""language"": ""FR"", ""currency"": ""USD""}",9060.51,Gold,0 +2371,Kimberly Stein,mark72@valenzuela.net,2021-05-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9071.78,Bronze,1 +2372,Joshua Martinez,nmartinez@christensen.org,2023-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",7765.18,Gold,0 +2373,Barbara Callahan,tnoble@bonilla.net,2020-12-11,"{""language"": ""EN"", ""currency"": ""EUR""}",4857.21,Silver,1 +2374,Olivia Long,ishelton@miller.com,2020-11-28,"{""language"": ""ES"", ""currency"": ""GBP""}",1459.04,Bronze,0 +2375,George Mayer,greenbeverly@francis.net,2023-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",3015.39,Bronze,0 +2376,Jessica Taylor,morgankimberly@branch.org,2021-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1645.17,Silver,1 +2377,Christine Bowen,briannaball@hotmail.com,2023-12-25,"{""language"": ""IT"", ""currency"": ""CAD""}",7555.49,Bronze,1 +2378,Aaron Barrett,eric30@allen.com,2024-09-28,"{""language"": ""EN"", ""currency"": ""CAD""}",1908.71,Silver,1 +2379,Daniel Bright,gbell@hotmail.com,2020-04-25,"{""language"": ""IT"", ""currency"": ""EUR""}",896.9,Bronze,0 +2380,Travis Herring,ortizrachel@figueroa.biz,2021-12-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9769.68,Silver,1 +2381,Jordan Ashley,hayeselizabeth@costa.biz,2021-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2348.5,Gold,0 +2382,Nicholas Hall,smithmichael@yahoo.com,2023-09-28,"{""language"": ""EN"", ""currency"": ""USD""}",2725.0,Bronze,0 +2383,Emily Palmer,michael27@hotmail.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",7378.95,Gold,0 +2384,Rebecca Sims,cunninghambarbara@stanley.com,2023-11-20,"{""language"": ""ES"", ""currency"": ""MXN""}",8873.34,Gold,1 +2385,Brenda Fields,caitlin73@wheeler.com,2024-10-30,"{""language"": ""DE"", ""currency"": ""EUR""}",3214.97,Gold,0 +2386,Raymond Davis,adrienne63@yahoo.com,2024-02-04,"{""language"": ""DE"", ""currency"": ""EUR""}",372.0,Silver,1 +2387,William Tate,knappjared@gmail.com,2024-01-02,"{""language"": ""IT"", ""currency"": ""CAD""}",7835.38,Gold,1 +2388,Eric Lewis,daniel82@harper.com,2021-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",3248.14,Silver,1 +2389,Alisha Wilson,vargasjames@brown.com,2022-06-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4856.46,Silver,1 +2390,Amy Stanley,lee56@harris.com,2020-12-15,"{""language"": ""IT"", ""currency"": ""EUR""}",8958.85,Bronze,1 +2391,Lindsay Rogers,jamieleon@mata.info,2021-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5413.19,Bronze,0 +2392,Jake Duarte,amy11@yahoo.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""EUR""}",2462.43,Gold,0 +2393,Gilbert Farley,xneal@young-parker.com,2023-11-09,"{""language"": ""DE"", ""currency"": ""EUR""}",7825.91,Gold,0 +2394,Amanda Moore,melissamyers@yahoo.com,2021-02-10,"{""language"": ""ES"", ""currency"": ""USD""}",9423.9,Bronze,0 +2395,Jamie Robertson,jacob01@hughes.org,2020-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",8438.87,Bronze,0 +2396,Mr. Kevin Leach MD,michele16@campbell-anderson.biz,2021-03-22,"{""language"": ""IT"", ""currency"": ""USD""}",6865.09,Bronze,1 +2397,Stacey Daniels,hortonnatalie@osborne.com,2024-08-07,"{""language"": ""DE"", ""currency"": ""USD""}",4174.68,Bronze,0 +2398,Andrew Gonzalez,andersenvirginia@yahoo.com,2020-05-24,"{""language"": ""FR"", ""currency"": ""EUR""}",7615.73,Bronze,0 +2399,Jeremiah Hart,johnny50@rubio.org,2022-04-25,"{""language"": ""EN"", ""currency"": ""EUR""}",6763.16,Silver,1 +2400,Erika Kane,paulwilliams@hill-wilson.com,2021-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",6678.26,Bronze,0 +2401,Douglas Glass,elliottbrittany@gmail.com,2021-05-29,"{""language"": ""EN"", ""currency"": ""GBP""}",1572.71,Gold,1 +2402,Chase Schultz,rodriguezjeffery@hotmail.com,2023-02-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7706.69,Gold,1 +2403,Stacie Howard,tinadavid@gmail.com,2024-10-28,"{""language"": ""FR"", ""currency"": ""CAD""}",845.5,Gold,1 +2404,Mrs. Debra Everett,rwatson@hotmail.com,2023-04-03,"{""language"": ""DE"", ""currency"": ""GBP""}",758.98,Bronze,1 +2405,Eric Jennings,shannonzhang@yahoo.com,2024-01-07,"{""language"": ""DE"", ""currency"": ""EUR""}",251.72,Gold,0 +2406,Alexandria Ball,mklein@lucas.info,2023-11-17,"{""language"": ""DE"", ""currency"": ""EUR""}",9466.05,Silver,0 +2407,Tracy Fry,ematthews@thomas.org,2020-04-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8750.73,Gold,0 +2408,Sherry Parks,darrell26@yahoo.com,2021-03-15,"{""language"": ""FR"", ""currency"": ""MXN""}",3415.09,Silver,1 +2409,Michelle Herrera,jeffersonbrenda@gmail.com,2021-02-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5936.29,Silver,0 +2410,Dawn Mullins,myersjessica@hotmail.com,2021-07-06,"{""language"": ""IT"", ""currency"": ""GBP""}",5332.12,Bronze,1 +2411,Robin Thompson,corymcdonald@hotmail.com,2023-09-08,"{""language"": ""EN"", ""currency"": ""CAD""}",2758.12,Bronze,1 +2412,Nicole Fischer,lauramendoza@alvarez.com,2024-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",6379.09,Gold,1 +2413,Bryan Franklin,brian86@hotmail.com,2024-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",1015.07,Gold,1 +2414,Kevin Smith,tylerallison@yahoo.com,2020-10-25,"{""language"": ""DE"", ""currency"": ""MXN""}",6345.98,Silver,0 +2415,Katelyn Roberts,hernandezangel@hotmail.com,2021-07-31,"{""language"": ""DE"", ""currency"": ""CAD""}",6477.88,Bronze,1 +2416,Christian Fuentes,trevorcoffey@green.com,2020-05-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6361.85,Bronze,1 +2417,Darren Thomas,shane38@hotmail.com,2021-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",7855.85,Gold,1 +2418,Karen Ortiz,vwalker@gmail.com,2024-04-05,"{""language"": ""EN"", ""currency"": ""GBP""}",7799.97,Bronze,1 +2419,Jerry Rodriguez,wrightjessica@strickland-barnett.com,2024-06-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9433.76,Silver,1 +2420,Melissa Forbes,ramirezmadeline@yahoo.com,2020-07-30,"{""language"": ""EN"", ""currency"": ""CAD""}",776.04,Silver,0 +2421,Lisa Howe,greenkenneth@gomez.com,2023-07-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7428.75,Bronze,0 +2422,Jose Guerrero,smartinez@hotmail.com,2020-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9432.43,Bronze,0 +2423,Matthew Riley,angela36@hotmail.com,2023-05-02,"{""language"": ""ES"", ""currency"": ""USD""}",2544.48,Gold,0 +2424,Jonathan Salas,rodgersshane@brock-perkins.info,2020-06-24,"{""language"": ""DE"", ""currency"": ""EUR""}",8118.78,Silver,1 +2425,Brent Chavez,lawrencegarcia@turner-brown.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",5633.42,Gold,1 +2426,Nicholas Cowan,jonesjames@sanders.org,2024-11-17,"{""language"": ""FR"", ""currency"": ""CAD""}",1762.65,Silver,1 +2427,David Lucas,atkinsonjacob@hotmail.com,2021-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",1492.71,Gold,1 +2428,April Johnson,garciasteven@gmail.com,2022-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4881.5,Bronze,0 +2429,Antonio Martin,ejohnson@brennan.com,2022-07-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3726.43,Silver,0 +2430,Tracey Yu,sharon85@patel.com,2021-01-22,"{""language"": ""ES"", ""currency"": ""MXN""}",1022.68,Bronze,0 +2431,Anne Solis,bhernandez@walker.com,2022-03-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8624.44,Gold,0 +2432,Robert Hudson,christopher89@yahoo.com,2024-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",9832.13,Gold,0 +2433,Alex Moore,mlester@hotmail.com,2022-10-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4231.52,Silver,1 +2434,Alexandra Cook,bradleygarcia@wong.info,2024-03-05,"{""language"": ""ES"", ""currency"": ""CAD""}",2918.98,Gold,0 +2435,Michael George,catherine41@freeman.com,2021-11-04,"{""language"": ""FR"", ""currency"": ""GBP""}",7313.65,Gold,0 +2436,Joshua Collins,brookemiller@russell.info,2021-07-17,"{""language"": ""DE"", ""currency"": ""EUR""}",3962.71,Gold,0 +2437,Christopher Bradford,joseph04@hotmail.com,2021-10-22,"{""language"": ""DE"", ""currency"": ""CAD""}",5936.39,Gold,1 +2438,Amy Chandler,velasquezisabella@yahoo.com,2023-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",9757.55,Bronze,1 +2439,Albert Wilkerson,zachary91@hotmail.com,2022-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",1846.67,Gold,1 +2440,Timothy Brown,corey06@anderson-rogers.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4558.98,Silver,0 +2441,Isaac Torres,amartinez@hotmail.com,2022-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",3388.77,Gold,1 +2442,Gabrielle Strickland,tiffany69@osborne-lewis.com,2024-03-19,"{""language"": ""FR"", ""currency"": ""USD""}",2777.49,Silver,0 +2443,Connie Owens,dennisdavid@moore-sloan.org,2020-05-13,"{""language"": ""EN"", ""currency"": ""EUR""}",6133.82,Bronze,1 +2444,Brian Wright,rebeccahenry@hotmail.com,2021-09-20,"{""language"": ""ES"", ""currency"": ""USD""}",3303.52,Silver,1 +2445,Paige Richardson,vbeard@matthews.com,2022-08-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7649.94,Bronze,0 +2446,Robert Douglas,hernandezcraig@shaw.biz,2021-03-25,"{""language"": ""DE"", ""currency"": ""CAD""}",6949.01,Gold,0 +2447,Felicia Jefferson,nelsonkaren@hotmail.com,2021-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9964.13,Bronze,1 +2448,Robert Murphy,barberjoseph@freeman.biz,2022-12-05,"{""language"": ""ES"", ""currency"": ""EUR""}",5403.72,Bronze,1 +2449,Mike Eaton,waterschristina@salazar-frazier.biz,2024-06-19,"{""language"": ""EN"", ""currency"": ""CAD""}",2704.22,Gold,1 +2450,Maxwell Robinson,robertroth@gmail.com,2021-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8481.12,Silver,1 +2451,Bradley Ross,jeromenguyen@knight-green.com,2019-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",4482.8,Gold,0 +2452,Andrew Kennedy,holtanne@gmail.com,2021-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",4571.42,Bronze,1 +2453,Jaime Harris,davidstein@yahoo.com,2020-08-17,"{""language"": ""IT"", ""currency"": ""CAD""}",7289.79,Silver,1 +2454,Christine Joseph,vazquezapril@hotmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",4965.39,Gold,0 +2455,Bobby Brandt,veronica23@gmail.com,2021-08-03,"{""language"": ""DE"", ""currency"": ""MXN""}",2891.36,Bronze,0 +2456,Richard Jacobs,franklindiane@stewart-clark.net,2021-11-27,"{""language"": ""EN"", ""currency"": ""EUR""}",3014.24,Bronze,0 +2457,Jessica Rice,xhenderson@gmail.com,2020-07-10,"{""language"": ""ES"", ""currency"": ""GBP""}",8491.51,Gold,0 +2458,Claudia Washington,kimberly27@gmail.com,2022-03-25,"{""language"": ""IT"", ""currency"": ""MXN""}",6389.02,Silver,1 +2459,Christopher Nolan,larsenlinda@nguyen.org,2023-09-26,"{""language"": ""ES"", ""currency"": ""MXN""}",3412.74,Gold,1 +2460,Jason Lewis,gonzalezjennifer@gmail.com,2022-10-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1030.43,Gold,1 +2461,Lorraine Smith,dominiquejones@gmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4427.48,Gold,0 +2462,Alicia Garrett,emily35@gmail.com,2023-07-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4992.58,Gold,0 +2463,Gilbert Murphy,taylorantonio@hotmail.com,2020-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",203.7,Silver,1 +2464,Janet Massey,greenejamie@black-lynch.com,2021-11-16,"{""language"": ""ES"", ""currency"": ""EUR""}",1824.55,Bronze,0 +2465,Dillon Quinn,william85@tucker.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""CAD""}",7836.91,Bronze,1 +2466,Stacey Welch,zachary28@hotmail.com,2023-05-18,"{""language"": ""FR"", ""currency"": ""USD""}",2197.43,Gold,1 +2467,Ronald Gonzalez,clarknatasha@wade.com,2023-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",9218.15,Silver,0 +2468,Amanda Young,johnsonbradley@moore.com,2023-04-20,"{""language"": ""EN"", ""currency"": ""MXN""}",8020.41,Bronze,0 +2469,Zachary Elliott,huberamy@hotmail.com,2021-04-17,"{""language"": ""ES"", ""currency"": ""USD""}",8436.87,Bronze,1 +2470,Leslie Lopez,fperez@yahoo.com,2021-03-25,"{""language"": ""FR"", ""currency"": ""EUR""}",8491.12,Silver,0 +2471,Carla Smith,jamesturner@mathis.com,2021-10-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7230.71,Bronze,1 +2472,Frank Ward,kelly41@hotmail.com,2021-02-07,"{""language"": ""IT"", ""currency"": ""CAD""}",8643.12,Gold,0 +2473,Megan Reese,joseph11@martinez-mendoza.biz,2020-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6344.89,Silver,1 +2474,Peggy Golden,elynn@mckinney.com,2023-04-21,"{""language"": ""ES"", ""currency"": ""MXN""}",897.26,Silver,0 +2475,Carlos Moss,willie48@lee-knight.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2128.02,Gold,0 +2476,Erika Kidd,bdawson@gmail.com,2020-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",6917.39,Silver,1 +2477,Melissa Cordova,tlara@carr-lowe.com,2024-09-20,"{""language"": ""FR"", ""currency"": ""GBP""}",7713.25,Silver,1 +2478,Tyler Cruz,sherrybrown@nunez-robertson.net,2024-04-11,"{""language"": ""FR"", ""currency"": ""USD""}",6483.74,Bronze,1 +2479,Suzanne Thomas,taylorjessica@becker-mcfarland.net,2024-08-02,"{""language"": ""ES"", ""currency"": ""CAD""}",6802.95,Silver,0 +2480,Holly Reyes,xhurley@yahoo.com,2022-06-04,"{""language"": ""ES"", ""currency"": ""CAD""}",7750.2,Silver,1 +2481,Christy Underwood,walterhelen@vaughn-smith.com,2020-04-28,"{""language"": ""IT"", ""currency"": ""EUR""}",4636.32,Gold,1 +2482,Mary Chen,dedwards@bond.net,2020-03-20,"{""language"": ""FR"", ""currency"": ""USD""}",5004.33,Bronze,1 +2483,James Lester,fsawyer@yahoo.com,2023-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",471.83,Silver,1 +2484,Bradley Alexander,courtneyperkins@carey-tucker.com,2022-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",5505.01,Silver,0 +2485,Sabrina Fox,alexis23@gmail.com,2022-04-04,"{""language"": ""EN"", ""currency"": ""EUR""}",428.1,Silver,0 +2486,Janet Peterson,cheryl45@cruz-green.net,2024-11-18,"{""language"": ""ES"", ""currency"": ""CAD""}",7659.32,Gold,1 +2487,Michael Farmer,tcombs@gmail.com,2022-07-21,"{""language"": ""DE"", ""currency"": ""EUR""}",7771.39,Bronze,1 +2488,Tracy Barrett,michaelramirez@sanders.com,2023-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",5530.7,Bronze,0 +2489,Jonathan Jenkins,benjamin03@johnston.info,2020-12-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8527.51,Silver,1 +2490,Kelly Hall,johnsonelizabeth@gmail.com,2020-06-06,"{""language"": ""IT"", ""currency"": ""USD""}",2195.18,Silver,1 +2491,Alice Hickman,lisa87@hotmail.com,2023-02-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2386.27,Bronze,0 +2492,Collin Allen,kristinaward@gmail.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3230.9,Gold,1 +2493,Erin Espinoza,matthewsangela@hotmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5246.89,Silver,0 +2494,Marco Cruz,zacharyyoung@hotmail.com,2021-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",6727.67,Silver,0 +2495,Theresa Fletcher,hcampos@hotmail.com,2019-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4402.6,Silver,0 +2496,Veronica Wolfe,gonzalezdanny@hotmail.com,2024-07-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3007.3,Silver,1 +2497,Tracy Brown,osbornemelanie@johnson-flores.com,2023-10-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4780.53,Gold,0 +2498,Nancy Steele,hawkinselizabeth@james.com,2024-05-08,"{""language"": ""EN"", ""currency"": ""USD""}",3262.84,Bronze,0 +2499,Emily White,browningkimberly@gmail.com,2023-02-05,"{""language"": ""ES"", ""currency"": ""EUR""}",3852.09,Bronze,0 +2500,Edward Davenport,cguzman@murphy.com,2021-09-23,"{""language"": ""IT"", ""currency"": ""USD""}",4095.78,Bronze,0 +2501,Michael Maldonado,olivia92@yahoo.com,2024-06-10,"{""language"": ""FR"", ""currency"": ""USD""}",3551.82,Gold,0 +2502,Aaron Harper,davisamanda@gonzalez.com,2021-01-01,"{""language"": ""EN"", ""currency"": ""USD""}",7428.32,Bronze,1 +2503,Thomas Conner,vmorris@yahoo.com,2023-04-28,"{""language"": ""DE"", ""currency"": ""CAD""}",6739.12,Silver,0 +2504,Dana Rasmussen,mary48@rogers.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""USD""}",4564.75,Silver,1 +2505,Crystal Pittman,heatherbutler@duran.com,2023-07-11,"{""language"": ""ES"", ""currency"": ""USD""}",5239.47,Bronze,1 +2506,John Contreras,allenadam@yahoo.com,2023-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",772.65,Gold,0 +2507,Michael Young,tbrown@pena.com,2024-09-15,"{""language"": ""DE"", ""currency"": ""MXN""}",7536.78,Gold,0 +2508,Latoya Stokes,annehubbard@gmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""EUR""}",4284.32,Gold,1 +2509,Maria Norris,nicholashunter@freeman.org,2020-05-01,"{""language"": ""EN"", ""currency"": ""USD""}",2120.53,Gold,1 +2510,Brandon Perez,fjohnson@collins.com,2023-12-27,"{""language"": ""ES"", ""currency"": ""GBP""}",5606.2,Silver,1 +2511,Sara Martinez,dustin71@gmail.com,2021-10-07,"{""language"": ""ES"", ""currency"": ""GBP""}",7224.41,Bronze,1 +2512,Debra Parks,awolf@hotmail.com,2022-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",8882.2,Bronze,0 +2513,Eric Young,alexandria76@hotmail.com,2021-10-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8309.58,Silver,1 +2514,Theresa Gilbert,david24@montgomery-munoz.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",768.51,Bronze,1 +2515,Terry Haney,jennifer30@hotmail.com,2024-10-02,"{""language"": ""ES"", ""currency"": ""CAD""}",3906.07,Silver,0 +2516,Paige Reed,grahamrichard@reed.info,2023-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",1379.63,Gold,1 +2517,Beverly Tran,owenjaime@yahoo.com,2024-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",920.77,Gold,1 +2518,Lawrence Thomas,brandon64@caldwell.org,2021-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",8597.06,Bronze,1 +2519,Crystal Smith,laurie10@hotmail.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""GBP""}",360.09,Gold,1 +2520,Jamie Baker,ocortez@hotmail.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",1954.92,Bronze,0 +2521,Alexandra Jones,tjackson@rivas.com,2020-07-06,"{""language"": ""DE"", ""currency"": ""EUR""}",8195.45,Silver,1 +2522,Mark Montgomery Jr.,lisa70@noble.net,2021-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",744.44,Bronze,1 +2523,Catherine Martin,jeffreypowers@pineda-figueroa.com,2023-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8247.59,Silver,0 +2524,Wendy Huerta,ehill@alvarez-guerrero.info,2023-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",351.54,Bronze,0 +2525,Rachel Gomez,cjackson@hotmail.com,2020-01-28,"{""language"": ""IT"", ""currency"": ""EUR""}",7577.67,Gold,0 +2526,Angela Steele,rosetiffany@hotmail.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""CAD""}",2800.25,Silver,0 +2527,Jennifer Evans,emilyturner@brown-stanley.com,2024-06-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6758.04,Gold,1 +2528,Joseph Davis,kirstencarr@yahoo.com,2023-06-13,"{""language"": ""FR"", ""currency"": ""USD""}",5717.97,Silver,1 +2529,Adam Hughes,anthonyking@yahoo.com,2022-04-28,"{""language"": ""IT"", ""currency"": ""MXN""}",1461.95,Silver,0 +2530,Sarah Christensen,allentheresa@flores.com,2022-10-16,"{""language"": ""IT"", ""currency"": ""GBP""}",5093.85,Bronze,0 +2531,Amanda Carpenter,kathrynalvarado@yahoo.com,2024-01-19,"{""language"": ""FR"", ""currency"": ""USD""}",1085.88,Bronze,1 +2532,Samuel Flores,anthony50@barrett-smith.info,2021-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",1422.82,Bronze,1 +2533,Kim Rodriguez,rebeccamclaughlin@gmail.com,2021-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",9008.03,Gold,0 +2534,Isaiah Skinner,kevin36@hotmail.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5145.09,Silver,0 +2535,Nathan Rivera,xdavis@peters-watkins.biz,2021-12-15,"{""language"": ""DE"", ""currency"": ""GBP""}",2025.29,Bronze,1 +2536,Diane Reyes,hernandezheather@jones-tran.info,2020-02-06,"{""language"": ""ES"", ""currency"": ""USD""}",5077.06,Gold,0 +2537,Pamela Tate,eowens@green-wright.net,2023-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",4634.44,Gold,0 +2538,Sierra Brown,debbie05@hotmail.com,2020-11-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1452.67,Silver,0 +2539,Jason Curry,ryan14@valdez.net,2020-05-31,"{""language"": ""IT"", ""currency"": ""GBP""}",7668.15,Silver,1 +2540,Gregory Stevenson,lewisrichard@gmail.com,2024-01-05,"{""language"": ""ES"", ""currency"": ""MXN""}",1668.07,Bronze,1 +2541,Katherine Beasley,gcarter@hicks.org,2024-10-17,"{""language"": ""ES"", ""currency"": ""GBP""}",333.31,Gold,0 +2542,Billy Griffin,norrisjason@yahoo.com,2020-01-23,"{""language"": ""ES"", ""currency"": ""USD""}",1987.81,Bronze,1 +2543,Rebekah Cole,patriciameyer@jones.org,2022-09-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6907.91,Silver,1 +2544,James Cortez,michael06@long.info,2023-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8872.3,Silver,0 +2545,Christine Flores,mossmatthew@parks.com,2023-06-24,"{""language"": ""ES"", ""currency"": ""GBP""}",4696.9,Bronze,0 +2546,Steve Elliott,margaretrichardson@baker-golden.com,2023-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",3358.78,Gold,1 +2547,Megan Warren,ddavis@hotmail.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""USD""}",311.73,Gold,0 +2548,Travis Gray,ronaldstone@white.com,2020-11-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1156.84,Bronze,0 +2549,Denise Young,luisbradshaw@gmail.com,2022-05-27,"{""language"": ""DE"", ""currency"": ""GBP""}",8858.72,Gold,0 +2550,Elizabeth Mckay,adickerson@gmail.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6086.78,Gold,1 +2551,Stacy Dixon,ksuarez@thomas-chapman.com,2021-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",2745.3,Gold,0 +2552,Alexander Love,gharris@turner.org,2023-09-07,"{""language"": ""IT"", ""currency"": ""CAD""}",1318.58,Bronze,0 +2553,Gregory Lloyd,bruce07@gmail.com,2020-04-07,"{""language"": ""EN"", ""currency"": ""EUR""}",2429.27,Bronze,1 +2554,Jeremiah Gomez,dean84@gmail.com,2020-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1796.65,Bronze,1 +2555,Randy Golden,ascott@weber.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",5779.83,Gold,0 +2556,Stephen Wilson,apatton@cline.com,2022-09-21,"{""language"": ""ES"", ""currency"": ""GBP""}",5338.36,Silver,0 +2557,Lisa Roman,gsalazar@serrano-west.com,2021-09-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4660.22,Bronze,0 +2558,Juan Gutierrez,samantha08@morris-pierce.biz,2020-01-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5177.04,Bronze,0 +2559,Ronald Ayala,oneillcheryl@gmail.com,2023-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",7400.7,Bronze,0 +2560,Brenda Patton,rodgersashley@gmail.com,2021-11-30,"{""language"": ""EN"", ""currency"": ""CAD""}",4259.83,Bronze,1 +2561,Daniel French,jody10@hotmail.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",2115.72,Bronze,1 +2562,Jeffery Page,figueroaryan@farmer.biz,2022-10-30,"{""language"": ""EN"", ""currency"": ""GBP""}",2470.0,Gold,1 +2563,Kelli Hart,andersonjocelyn@yahoo.com,2020-07-16,"{""language"": ""FR"", ""currency"": ""CAD""}",9240.03,Silver,0 +2564,Lisa Shelton,smartin@hotmail.com,2021-07-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9471.8,Bronze,0 +2565,Michelle Schmidt,stephen45@gmail.com,2020-02-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6976.3,Silver,1 +2566,Anne Howard,brandon23@robinson.net,2019-12-30,"{""language"": ""IT"", ""currency"": ""USD""}",3898.82,Silver,1 +2567,Amanda Parker,megangood@stewart.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1943.58,Silver,0 +2568,Ian Woods,mweiss@yahoo.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4012.06,Silver,1 +2569,Ashley Johnson,spencerjessica@strickland.com,2021-06-16,"{""language"": ""EN"", ""currency"": ""GBP""}",3955.06,Gold,1 +2570,Tina Hardy,chadlong@gonzalez-kim.com,2022-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",5408.88,Gold,1 +2571,Kathleen Harvey,ann10@gmail.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""GBP""}",8125.22,Bronze,0 +2572,Paul Bowen,karenortega@hotmail.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9725.27,Silver,0 +2573,Kathy Fuentes,perezmichele@spence-mason.com,2020-10-25,"{""language"": ""ES"", ""currency"": ""USD""}",9577.65,Gold,1 +2574,Frank Terry,karenfuller@aguilar.com,2020-12-18,"{""language"": ""IT"", ""currency"": ""MXN""}",4254.93,Silver,0 +2575,Kayla Brock,berrytimothy@brown.com,2020-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",376.74,Gold,0 +2576,Daniel Ward,juandoyle@yahoo.com,2021-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7718.09,Silver,1 +2577,Megan Faulkner,lisaduran@gmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""CAD""}",7671.16,Silver,1 +2578,Erin Alvarez,thoffman@johnson.org,2021-11-13,"{""language"": ""DE"", ""currency"": ""CAD""}",3332.62,Gold,1 +2579,Michael Reid,swells@evans-nichols.net,2021-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",2769.14,Gold,1 +2580,Denise Price,spatel@goodwin.com,2024-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9400.21,Bronze,0 +2581,Teresa Fox,paulchambers@yahoo.com,2023-05-16,"{""language"": ""EN"", ""currency"": ""USD""}",3271.01,Gold,0 +2582,Shawn Melton,joneshaley@jimenez.com,2020-02-08,"{""language"": ""FR"", ""currency"": ""USD""}",9588.91,Bronze,0 +2583,Keith Guerrero,kristinmcintosh@gmail.com,2023-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",2809.42,Gold,0 +2584,Sierra Bradley,candicecantrell@gmail.com,2022-09-18,"{""language"": ""EN"", ""currency"": ""EUR""}",593.7,Silver,0 +2585,James Russo,jesussingh@gmail.com,2021-05-19,"{""language"": ""DE"", ""currency"": ""CAD""}",9471.84,Gold,1 +2586,Mark Bryant,hooperangela@hendricks.info,2023-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",739.44,Bronze,1 +2587,Jon Foster,nmacdonald@warner.org,2023-04-30,"{""language"": ""FR"", ""currency"": ""CAD""}",1616.86,Gold,0 +2588,Kristy Larsen DVM,rsuarez@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""USD""}",193.47,Gold,0 +2589,Tara Williams,jason76@gmail.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""MXN""}",2674.33,Silver,1 +2590,Robin Hess,hornekevin@hotmail.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""MXN""}",769.49,Bronze,0 +2591,Carla Crawford,ashleehamilton@hotmail.com,2024-10-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4355.6,Gold,1 +2592,Kenneth Smith,susanmoore@miller.org,2020-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",960.29,Gold,1 +2593,Kenneth Martin,kross@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",6012.8,Bronze,1 +2594,Alan Moreno,coledennis@rosario.org,2023-03-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9494.9,Silver,0 +2595,Lisa Kim,phillipsbenjamin@bass-murray.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""MXN""}",6982.35,Silver,0 +2596,Emily Meyer,thomas86@yahoo.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""EUR""}",2419.1,Gold,1 +2597,Tara Taylor,millerdiane@lane-smith.biz,2020-05-02,"{""language"": ""EN"", ""currency"": ""EUR""}",4736.81,Silver,1 +2598,Amanda Braun MD,ulee@powell.info,2022-08-26,"{""language"": ""EN"", ""currency"": ""CAD""}",8929.63,Bronze,1 +2599,Angela Taylor,morrisalexander@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7553.1,Silver,1 +2600,William Obrien,uyang@yahoo.com,2020-02-02,"{""language"": ""FR"", ""currency"": ""MXN""}",7235.24,Bronze,0 +2601,Alicia Aguilar,christopherwatson@freeman.com,2021-03-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9950.36,Gold,1 +2602,Anthony Stark MD,alicia48@yahoo.com,2022-11-23,"{""language"": ""DE"", ""currency"": ""CAD""}",3615.85,Bronze,1 +2603,Dominic Lewis,cramirez@yahoo.com,2023-01-12,"{""language"": ""FR"", ""currency"": ""USD""}",9341.18,Gold,0 +2604,Nathan Krueger,andradejack@hotmail.com,2022-10-11,"{""language"": ""IT"", ""currency"": ""MXN""}",5173.26,Bronze,0 +2605,Edwin Benitez,nelsonapril@yahoo.com,2020-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",252.6,Gold,1 +2606,Jessica Wallace,barrlaura@miller.com,2020-12-16,"{""language"": ""FR"", ""currency"": ""USD""}",6064.67,Bronze,0 +2607,Maria Myers,robertholmes@gmail.com,2020-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5506.99,Silver,0 +2608,Michael Morrison,bauerzachary@hill.com,2021-09-19,"{""language"": ""FR"", ""currency"": ""EUR""}",2115.9,Silver,0 +2609,Alexandra Smith,edavis@pierce.info,2024-05-17,"{""language"": ""FR"", ""currency"": ""MXN""}",523.68,Silver,1 +2610,Anthony Duarte,chapmancourtney@hicks-hogan.com,2023-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",624.47,Gold,0 +2611,Amber Watson,bobby80@kaiser.com,2022-05-31,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.66,Silver,1 +2612,Michelle Robinson,tammyrivera@torres.com,2024-08-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3668.89,Silver,0 +2613,Stephanie Huffman,walter36@hotmail.com,2021-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",7386.25,Bronze,1 +2614,Julie Underwood,emorgan@holmes.com,2020-01-27,"{""language"": ""IT"", ""currency"": ""MXN""}",9863.25,Bronze,1 +2615,William Simmons,dsmith@johnson.biz,2022-09-15,"{""language"": ""ES"", ""currency"": ""CAD""}",6066.28,Silver,0 +2616,Rhonda Duran,schmittsherry@johnson.info,2024-04-10,"{""language"": ""IT"", ""currency"": ""CAD""}",3167.56,Bronze,0 +2617,Douglas Kelley,jamesgibson@hester.com,2024-01-08,"{""language"": ""DE"", ""currency"": ""EUR""}",8696.89,Gold,1 +2618,Mary Pratt,llawson@hotmail.com,2024-01-02,"{""language"": ""DE"", ""currency"": ""EUR""}",2268.1,Gold,1 +2619,Mackenzie Weber,vespinoza@shaw.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",510.67,Silver,0 +2620,Adam Porter,smithemily@pittman-farley.com,2024-02-12,"{""language"": ""EN"", ""currency"": ""USD""}",5734.66,Bronze,0 +2621,Scott Dunn,cookashley@hotmail.com,2021-06-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4316.47,Gold,0 +2622,Noah Rose,jennifer11@yahoo.com,2021-09-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3954.19,Bronze,0 +2623,Keith Alexander,owilliams@soto-lewis.biz,2020-02-24,"{""language"": ""DE"", ""currency"": ""USD""}",1432.93,Gold,1 +2624,Courtney Serrano,william86@hotmail.com,2021-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",6241.32,Silver,0 +2625,Christina Mcintosh,sharon40@cruz.com,2020-11-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4820.46,Gold,1 +2626,Angela Jordan,heathsandra@yahoo.com,2019-12-21,"{""language"": ""EN"", ""currency"": ""EUR""}",7274.27,Silver,1 +2627,Jeffery Peterson,kmunoz@thompson.org,2021-12-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4782.59,Gold,1 +2628,Michael Leon,mwilliams@brown.com,2024-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",496.97,Bronze,1 +2629,Steven Evans,tmullins@garcia.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""MXN""}",7617.69,Bronze,0 +2630,Joshua Simmons,jacobsoncraig@robinson.com,2020-04-03,"{""language"": ""IT"", ""currency"": ""USD""}",538.46,Silver,0 +2631,Johnathan Simpson,jonathan00@scott-ware.com,2020-06-07,"{""language"": ""FR"", ""currency"": ""USD""}",7959.97,Silver,0 +2632,Shannon Myers,donnanorris@williams.org,2020-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6611.56,Silver,0 +2633,Joshua Cruz,whitearthur@edwards.com,2024-07-21,"{""language"": ""IT"", ""currency"": ""MXN""}",5989.64,Silver,0 +2634,Kyle Smith,amymiller@luna.com,2024-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",5594.76,Gold,0 +2635,Vincent Richardson,sheilamartinez@gmail.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",2050.65,Silver,1 +2636,Danielle Moore,roy56@jackson.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9547.3,Silver,1 +2637,Steven Young,castillochristopher@gmail.com,2023-07-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3244.37,Bronze,0 +2638,Melissa Jenkins,alexanderwhite@hotmail.com,2022-03-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4279.37,Gold,1 +2639,Ian Richardson,sullivanalbert@morgan-reyes.org,2024-07-04,"{""language"": ""DE"", ""currency"": ""USD""}",4206.65,Gold,1 +2640,Paula Andersen,blakelisa@johnson-lopez.com,2022-09-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9378.71,Gold,0 +2641,Joseph Lopez,lhernandez@long-kline.info,2023-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",2084.92,Silver,0 +2642,Jennifer Mcdaniel,qgutierrez@allen.com,2024-04-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4239.94,Silver,0 +2643,William Elliott,susan49@buck.com,2023-03-12,"{""language"": ""EN"", ""currency"": ""CAD""}",465.3,Gold,0 +2644,Ronald Martinez,santosbarry@yahoo.com,2021-03-14,"{""language"": ""ES"", ""currency"": ""CAD""}",7395.32,Bronze,0 +2645,Aaron Mcbride,josephdavis@hotmail.com,2020-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",7907.93,Bronze,1 +2646,Robert Hansen,diana43@montoya-gomez.biz,2020-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",8869.01,Bronze,0 +2647,David Jones,cynthiawaller@douglas.info,2021-07-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3149.22,Bronze,1 +2648,Erika Hicks DVM,jason98@gmail.com,2024-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",2560.32,Gold,0 +2649,Kristin Carson,pricecourtney@hotmail.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",5539.35,Gold,1 +2650,Philip King,melissa95@baker-knight.net,2020-10-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8134.2,Gold,1 +2651,Janet Burns,nwoods@white.com,2021-08-15,"{""language"": ""FR"", ""currency"": ""CAD""}",9442.94,Gold,1 +2652,Jaime Paul,michelle89@shields-mack.com,2023-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7048.81,Silver,1 +2653,Denise Wood,jason75@gmail.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4388.36,Bronze,0 +2654,Lindsay Carr,wardvirginia@hotmail.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8883.71,Silver,1 +2655,Kelly Mills,hlawson@gmail.com,2024-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",3353.86,Bronze,1 +2656,Cheryl Sanders,joneschristopher@yahoo.com,2022-12-03,"{""language"": ""ES"", ""currency"": ""GBP""}",9484.22,Gold,1 +2657,Juan Clark,nicholas65@cannon-gill.net,2021-04-12,"{""language"": ""IT"", ""currency"": ""CAD""}",2787.83,Bronze,0 +2658,Bruce Ruiz,masonharrison@hotmail.com,2023-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",9735.01,Gold,0 +2659,Donald Watson,nelsonjames@gmail.com,2022-02-15,"{""language"": ""IT"", ""currency"": ""CAD""}",4536.7,Gold,1 +2660,Erika Houston,knightcorey@yahoo.com,2022-06-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1176.05,Silver,0 +2661,Deborah Gray,bkhan@yahoo.com,2020-06-27,"{""language"": ""EN"", ""currency"": ""MXN""}",1478.47,Silver,0 +2662,Laura Ramirez,martinrichard@robinson.com,2022-06-01,"{""language"": ""ES"", ""currency"": ""EUR""}",3056.52,Bronze,1 +2663,Pamela Johnson,sanderskristy@hotmail.com,2022-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",6140.12,Gold,1 +2664,Marie Wright,longcolleen@chang.com,2020-02-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6212.06,Gold,1 +2665,John Moody,waltersjohn@yahoo.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""GBP""}",8029.09,Gold,1 +2666,Colleen Washington,crystal04@gmail.com,2020-05-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9234.62,Silver,1 +2667,Tamara Ferguson,randy72@yahoo.com,2021-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2141.27,Silver,0 +2668,Tonya Ross,james21@moss.com,2021-05-27,"{""language"": ""IT"", ""currency"": ""MXN""}",2502.4,Gold,1 +2669,Sean Medina,wallacejoseph@rodriguez.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""CAD""}",7367.18,Bronze,1 +2670,Erin Mann,lisa39@gmail.com,2022-03-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4387.09,Gold,1 +2671,Melissa Alexander,andrea12@edwards-calderon.com,2020-02-16,"{""language"": ""ES"", ""currency"": ""GBP""}",4358.16,Bronze,1 +2672,Terry Smith,sarah69@hotmail.com,2021-09-11,"{""language"": ""DE"", ""currency"": ""GBP""}",1550.67,Bronze,1 +2673,Katherine Hensley,jimmy71@hotmail.com,2023-11-05,"{""language"": ""IT"", ""currency"": ""USD""}",8147.9,Silver,1 +2674,Kristine Hodge,xpeterson@mccoy.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""CAD""}",273.67,Gold,1 +2675,Rachel Hunt,josephstevens@johnson.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",1482.48,Silver,1 +2676,Elizabeth Moyer,omar47@roberts-robinson.com,2024-09-17,"{""language"": ""IT"", ""currency"": ""MXN""}",3858.22,Gold,1 +2677,Laura Howell,justin32@pierce-wallace.com,2022-09-06,"{""language"": ""EN"", ""currency"": ""GBP""}",2212.29,Bronze,0 +2678,David Acevedo,melissalara@schultz.org,2024-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",5957.01,Gold,1 +2679,James Cooper,michaelfranklin@jackson.info,2024-08-24,"{""language"": ""ES"", ""currency"": ""MXN""}",6555.9,Gold,0 +2680,Jacob Rogers,bbryant@yahoo.com,2021-09-12,"{""language"": ""ES"", ""currency"": ""CAD""}",4287.91,Silver,1 +2681,David Stone,nlynn@herring-moore.com,2024-11-20,"{""language"": ""EN"", ""currency"": ""GBP""}",2296.93,Bronze,0 +2682,Lori Gross,amendez@gmail.com,2022-10-13,"{""language"": ""DE"", ""currency"": ""GBP""}",3042.49,Silver,0 +2683,Jason Dean,danielnunez@gmail.com,2024-05-22,"{""language"": ""DE"", ""currency"": ""CAD""}",5355.95,Silver,0 +2684,Robert Cain,martinezpaul@cross.biz,2021-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",4701.64,Bronze,1 +2685,Gabrielle Cox,katherinewatkins@smith.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8887.98,Bronze,1 +2686,Kimberly Booth,tdyer@hotmail.com,2021-07-02,"{""language"": ""FR"", ""currency"": ""USD""}",679.93,Bronze,0 +2687,Charles Martin,gainestimothy@white-hansen.com,2022-11-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8386.9,Gold,1 +2688,Robert Watson,monique64@randolph-lewis.com,2023-01-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3723.21,Gold,1 +2689,Craig Johnson,reyesricky@rodriguez.biz,2022-03-05,"{""language"": ""IT"", ""currency"": ""GBP""}",2913.67,Silver,1 +2690,Amanda Young,weberrussell@hotmail.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",3907.48,Gold,1 +2691,Joanna Lloyd,lynchmatthew@hotmail.com,2023-04-09,"{""language"": ""FR"", ""currency"": ""MXN""}",596.36,Gold,0 +2692,Michelle Diaz,whiteblake@hoffman.info,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8861.25,Bronze,1 +2693,Samuel Moore,qmedina@yahoo.com,2021-05-04,"{""language"": ""DE"", ""currency"": ""EUR""}",3735.68,Bronze,0 +2694,Sarah Wright,bcervantes@washington.biz,2019-12-30,"{""language"": ""IT"", ""currency"": ""CAD""}",7028.85,Silver,1 +2695,Stephen Terrell,frogers@hotmail.com,2020-01-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6290.69,Silver,1 +2696,Lauren Garcia,lcarey@smith.org,2020-02-04,"{""language"": ""FR"", ""currency"": ""USD""}",4929.61,Silver,0 +2697,David Werner,vmoore@jenkins.net,2023-11-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9203.55,Silver,1 +2698,Jimmy Brown,jessicachristensen@turner-barnes.com,2020-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",1514.44,Silver,1 +2699,Kevin Fernandez,dianabishop@gmail.com,2024-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",2272.75,Silver,0 +2700,Karen Johnson,zamoraemily@mckee-turner.net,2023-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4059.33,Gold,0 +2701,Amy Jimenez,austinsmith@gmail.com,2020-02-27,"{""language"": ""EN"", ""currency"": ""USD""}",1701.37,Gold,1 +2702,Kimberly Hess,dennisjason@johnson.info,2022-08-23,"{""language"": ""DE"", ""currency"": ""MXN""}",6706.75,Silver,1 +2703,Jimmy White,bnewman@rocha.info,2024-03-24,"{""language"": ""ES"", ""currency"": ""EUR""}",8507.02,Bronze,1 +2704,Erica Hernandez,hernandezmark@yahoo.com,2023-09-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2456.95,Gold,0 +2705,Nicole Krause,mary95@gmail.com,2021-07-21,"{""language"": ""IT"", ""currency"": ""USD""}",3767.03,Gold,0 +2706,Jamie James,averylinda@smith.com,2021-01-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2109.22,Bronze,1 +2707,David Brown,ghess@adams-may.biz,2023-04-07,"{""language"": ""ES"", ""currency"": ""USD""}",7911.52,Silver,1 +2708,Kristina Bailey,swansondavid@sanchez.org,2024-09-19,"{""language"": ""DE"", ""currency"": ""GBP""}",848.15,Silver,1 +2709,Walter Chapman,david62@wilson.com,2020-04-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4272.01,Gold,1 +2710,Emily Stevenson,brookeblack@osborn.info,2019-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",1540.75,Bronze,0 +2711,Elizabeth George,taylorshawn@roy.biz,2021-03-04,"{""language"": ""DE"", ""currency"": ""EUR""}",1907.9,Gold,1 +2712,Kelly Riddle,mayerkent@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""EUR""}",6860.89,Silver,1 +2713,Bryce Pineda,sloancaitlin@lamb-smith.org,2022-11-11,"{""language"": ""FR"", ""currency"": ""MXN""}",5148.3,Bronze,0 +2714,Megan Chapman,karnold@rivas.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",7405.39,Gold,0 +2715,Amanda Patel,xdavidson@smith-heath.com,2021-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7706.65,Gold,0 +2716,Kevin Walker,danielbridges@hotmail.com,2023-05-15,"{""language"": ""FR"", ""currency"": ""MXN""}",524.43,Silver,1 +2717,Jesse Jones,gdodson@livingston-campbell.com,2024-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1057.14,Bronze,0 +2718,Gabriel Chandler,davidporter@yahoo.com,2024-07-26,"{""language"": ""FR"", ""currency"": ""CAD""}",2323.59,Silver,1 +2719,Kristen Snow,rebeccanavarro@yahoo.com,2020-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3629.89,Silver,0 +2720,Karen Phillips,shellychan@rivera.com,2022-02-07,"{""language"": ""FR"", ""currency"": ""CAD""}",9096.62,Bronze,1 +2721,Amy Hall,garciaeric@gmail.com,2023-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",7871.85,Gold,1 +2722,Jonathan Yang,rebecca93@lester.info,2023-07-08,"{""language"": ""FR"", ""currency"": ""GBP""}",1115.7,Bronze,1 +2723,Jennifer Miller,johnmyers@gmail.com,2023-04-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8711.13,Silver,1 +2724,Charles Roy,qross@yahoo.com,2024-09-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5230.73,Bronze,1 +2725,Jeffrey Bell,wjenkins@yahoo.com,2021-07-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3277.23,Silver,0 +2726,Carly Thomas,jacquelinewhite@hotmail.com,2024-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7557.51,Gold,0 +2727,Kim Hooper,lindsaygonzalez@downs.org,2022-02-20,"{""language"": ""ES"", ""currency"": ""USD""}",3133.74,Silver,1 +2728,Brian Lawrence,peter26@white-meadows.com,2022-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",6984.21,Silver,1 +2729,Tiffany Solis,vrodriguez@hammond.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2675.59,Gold,1 +2730,Corey Rodriguez,yfrey@suarez-johnson.com,2024-02-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2697.78,Bronze,1 +2731,Carlos Moody,tshaw@delacruz-acosta.com,2022-10-06,"{""language"": ""FR"", ""currency"": ""USD""}",3568.97,Silver,0 +2732,Joel Hernandez,tylerwoodward@white.net,2024-04-15,"{""language"": ""DE"", ""currency"": ""GBP""}",2299.56,Silver,0 +2733,Angela Davis,jessicamatthews@gmail.com,2021-09-03,"{""language"": ""FR"", ""currency"": ""CAD""}",2320.43,Bronze,1 +2734,Allison Sosa,johnnyolson@bush.biz,2023-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",806.52,Silver,0 +2735,Alexander Coleman,grossleah@yahoo.com,2024-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2928.33,Bronze,1 +2736,Mr. Patrick Lucero,benjamin50@yahoo.com,2021-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8875.81,Bronze,0 +2737,Kristen Smith,richard25@gmail.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""MXN""}",8043.34,Gold,0 +2738,Larry Fisher,bethanymiller@hotmail.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9917.2,Bronze,1 +2739,James Stewart,daniel10@brown.net,2023-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9372.68,Silver,0 +2740,Brandon Newton,garciajulie@stewart-hall.net,2020-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",4795.53,Silver,1 +2741,Susan Wagner,howekayla@williams.com,2021-06-15,"{""language"": ""IT"", ""currency"": ""USD""}",9666.91,Gold,1 +2742,James Davis,mariodixon@harris.biz,2023-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",4012.29,Bronze,0 +2743,Terry West,njones@yahoo.com,2024-11-16,"{""language"": ""EN"", ""currency"": ""GBP""}",5743.02,Silver,0 +2744,Keith Duncan,foleybrenda@long.com,2020-06-24,"{""language"": ""ES"", ""currency"": ""GBP""}",1903.73,Silver,0 +2745,Kerri Williams,ann89@hotmail.com,2024-11-22,"{""language"": ""ES"", ""currency"": ""USD""}",7929.67,Bronze,0 +2746,Marcus Bryant MD,bpatel@thompson.com,2023-11-24,"{""language"": ""ES"", ""currency"": ""GBP""}",152.46,Gold,1 +2747,Jeffrey Gutierrez,oyang@gregory.info,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",5800.9,Bronze,0 +2748,Douglas Atkinson,gonzalezchristopher@hotmail.com,2021-11-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9436.98,Gold,1 +2749,William Rodriguez,dlawrence@gmail.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3173.6,Bronze,1 +2750,Christy Briggs,hunterpatrick@gmail.com,2022-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",4837.74,Bronze,0 +2751,Keith Munoz,scarlson@davis.org,2022-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",9143.23,Gold,1 +2752,Evelyn Drake,rhayes@gmail.com,2022-11-04,"{""language"": ""FR"", ""currency"": ""EUR""}",4386.64,Silver,1 +2753,Julia Bentley,eglass@wilkerson.com,2024-04-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5329.7,Silver,1 +2754,Janet Hall,wagneralyssa@gmail.com,2020-10-05,"{""language"": ""IT"", ""currency"": ""USD""}",172.28,Silver,0 +2755,Kenneth Hill,phillipsjohn@archer.com,2023-04-02,"{""language"": ""EN"", ""currency"": ""USD""}",4797.78,Silver,1 +2756,Hayden Noble,qterry@hotmail.com,2023-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8189.97,Silver,0 +2757,Bobby Perez,zwright@hunter.com,2021-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1811.49,Silver,1 +2758,Anthony Scott,christophersmith@yahoo.com,2023-08-28,"{""language"": ""ES"", ""currency"": ""USD""}",8696.26,Gold,0 +2759,Kathryn Campos,delgadomichael@yahoo.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""GBP""}",6935.96,Silver,0 +2760,Christopher Crane,hudsonjessica@parks-levine.biz,2023-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",5599.18,Silver,1 +2761,Brenda Irwin,matthew26@taylor.com,2024-05-10,"{""language"": ""IT"", ""currency"": ""MXN""}",3183.08,Silver,1 +2762,Robert Kirk,martinpatrick@gmail.com,2024-08-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2171.7,Bronze,1 +2763,Aaron Bennett,pjoyce@ingram-baldwin.com,2020-01-27,"{""language"": ""DE"", ""currency"": ""GBP""}",685.13,Gold,1 +2764,Steven Woodward,lutzraymond@miller.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""USD""}",4648.88,Gold,1 +2765,Dale Olson,alexanderallen@yahoo.com,2021-05-29,"{""language"": ""IT"", ""currency"": ""CAD""}",3595.03,Gold,0 +2766,Susan Washington,batesandrew@gmail.com,2020-09-28,"{""language"": ""EN"", ""currency"": ""GBP""}",1549.73,Bronze,0 +2767,Janice Diaz,stephen25@gmail.com,2022-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2149.53,Silver,1 +2768,Justin Mclaughlin,rebeccaatkins@murphy.org,2020-03-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4449.32,Silver,0 +2769,Thomas Green,rodgersamanda@williams-allen.org,2021-09-30,"{""language"": ""IT"", ""currency"": ""CAD""}",317.93,Bronze,0 +2770,Michael Torres,tdavis@gmail.com,2021-07-22,"{""language"": ""DE"", ""currency"": ""USD""}",9666.04,Bronze,1 +2771,Anne Bennett,hjennings@gmail.com,2023-08-24,"{""language"": ""IT"", ""currency"": ""CAD""}",8090.08,Bronze,0 +2772,Theresa Moore,jillian45@mendez-ray.com,2021-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9107.48,Bronze,0 +2773,Christopher Morris,aaron23@yahoo.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",4896.13,Gold,0 +2774,Manuel Cohen,tschaefer@osborne.net,2024-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",5675.45,Bronze,1 +2775,Heather Miller,mkennedy@yang.com,2022-06-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9277.89,Gold,1 +2776,Megan Farmer,monica34@jimenez-watkins.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""EUR""}",1851.53,Silver,1 +2777,Jessica Wilson,baileykaren@gmail.com,2023-09-14,"{""language"": ""ES"", ""currency"": ""MXN""}",6648.53,Bronze,1 +2778,Lindsay Lewis,zwilson@yahoo.com,2023-12-14,"{""language"": ""IT"", ""currency"": ""MXN""}",5670.67,Bronze,1 +2779,Daniel Kennedy,ajohnson@yahoo.com,2020-09-23,"{""language"": ""DE"", ""currency"": ""USD""}",1717.69,Silver,0 +2780,Jennifer Ross,ryan54@gmail.com,2024-01-02,"{""language"": ""ES"", ""currency"": ""GBP""}",1144.23,Gold,1 +2781,Andrew Conrad,mayodaniel@gmail.com,2022-07-03,"{""language"": ""FR"", ""currency"": ""GBP""}",6229.6,Bronze,1 +2782,Mary Ramos,zgoodman@baker.com,2022-08-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1475.71,Silver,1 +2783,Dustin Miller,kevincooper@gmail.com,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",6347.55,Gold,0 +2784,Justin Roberts,andreabailey@hotmail.com,2023-03-03,"{""language"": ""IT"", ""currency"": ""CAD""}",5740.67,Bronze,1 +2785,Crystal Mcintyre,kristinroberts@brock.net,2021-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",8803.48,Bronze,1 +2786,Cheryl Anderson,susan65@williams-reed.net,2024-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5019.64,Silver,1 +2787,Kevin Andrade,martinrebekah@hotmail.com,2024-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",7111.75,Gold,0 +2788,Randall Fry,qmelendez@tanner.com,2022-03-18,"{""language"": ""ES"", ""currency"": ""MXN""}",915.1,Gold,0 +2789,Donna Saunders,dmorris@guerra-hughes.net,2023-08-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3927.95,Gold,0 +2790,Sandra Patel,daniel67@gmail.com,2023-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5765.09,Gold,1 +2791,Herbert Cooper,blackwellmanuel@ramos.info,2021-10-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3897.29,Silver,0 +2792,Mark Miller,hmiller@lewis.net,2021-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7864.93,Silver,0 +2793,Christopher Sanchez,qmiles@gmail.com,2024-02-11,"{""language"": ""IT"", ""currency"": ""USD""}",449.81,Gold,0 +2794,Matthew Ward,bonderic@yahoo.com,2020-06-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5509.49,Silver,1 +2795,April Abbott,kberg@alexander-brock.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",8168.09,Silver,1 +2796,Nathan Dominguez,marthaperez@hotmail.com,2020-08-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3214.93,Gold,0 +2797,Eugene Hernandez,jamesrobertson@hotmail.com,2021-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",7090.67,Gold,1 +2798,Tammy Johnson,sgarcia@gmail.com,2020-07-11,"{""language"": ""DE"", ""currency"": ""GBP""}",6508.07,Gold,0 +2799,Matthew White,natashalynn@yahoo.com,2022-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",8865.17,Silver,0 +2800,Valerie Green,charles65@mclaughlin-james.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7010.06,Gold,1 +2801,Kristina Alvarado,nathanlong@lopez-mckay.com,2022-11-30,"{""language"": ""DE"", ""currency"": ""MXN""}",306.12,Gold,0 +2802,Molly Jenkins,raguirre@yahoo.com,2022-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",469.05,Silver,1 +2803,Dr. Kim Chambers,kduncan@taylor-sanford.com,2020-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",5640.37,Gold,1 +2804,Lauren Solis,xwilson@galvan.info,2022-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6552.82,Silver,1 +2805,Mary Richardson,zwilliams@yahoo.com,2022-08-21,"{""language"": ""DE"", ""currency"": ""CAD""}",9442.51,Silver,1 +2806,Alyssa Burch,donaldsondaniel@flores.com,2024-04-09,"{""language"": ""IT"", ""currency"": ""GBP""}",5322.43,Gold,0 +2807,Tina Patel,carlparker@kerr.com,2024-01-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3883.56,Silver,0 +2808,Patricia Bean,tayloralexander@cabrera.com,2023-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9086.06,Bronze,0 +2809,Cindy Clark,john41@gmail.com,2024-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",6805.68,Gold,1 +2810,Steve Garcia,bbarnett@hotmail.com,2019-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5038.34,Bronze,0 +2811,Meghan Becker,ikennedy@rose-perez.org,2023-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3271.96,Gold,0 +2812,Andre Clark,jessica84@davis.com,2021-01-15,"{""language"": ""EN"", ""currency"": ""EUR""}",8748.31,Silver,0 +2813,Kathryn Mays,bryan55@yahoo.com,2020-04-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2178.9,Silver,1 +2814,James Graham,rodriguezkayla@allen.net,2020-10-28,"{""language"": ""FR"", ""currency"": ""EUR""}",6886.27,Silver,0 +2815,Sheila Sims,samanthaharris@gray-kennedy.com,2021-04-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2609.33,Silver,1 +2816,Alexandria Lawson,andrew71@yahoo.com,2023-04-09,"{""language"": ""FR"", ""currency"": ""GBP""}",4074.0,Gold,1 +2817,Steven Schmidt,chelsea58@hotmail.com,2024-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5804.63,Silver,1 +2818,Miguel Delgado,villarrealjacob@white.org,2024-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2271.54,Silver,0 +2819,Laura Jones MD,tconley@stephens.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""EUR""}",9637.19,Bronze,0 +2820,Jerry Thompson,pjones@stewart.biz,2024-09-30,"{""language"": ""ES"", ""currency"": ""CAD""}",8993.61,Bronze,0 +2821,Sara Gray,bmartin@hotmail.com,2024-10-11,"{""language"": ""DE"", ""currency"": ""USD""}",2502.06,Bronze,1 +2822,Lance Foster,vcarrillo@gmail.com,2021-09-05,"{""language"": ""IT"", ""currency"": ""MXN""}",3600.85,Gold,0 +2823,Kaitlyn Mcknight,blevinstodd@yahoo.com,2022-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",8327.72,Bronze,0 +2824,Katrina Curry,katie58@perez.info,2020-09-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8905.39,Silver,1 +2825,Katherine Gray,ihudson@hotmail.com,2020-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",5607.57,Gold,0 +2826,Ray Ruiz,timothyburke@flores-cole.org,2021-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4284.05,Silver,0 +2827,Matthew Valdez,youngrebecca@yahoo.com,2020-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",2139.61,Silver,0 +2828,John Thomas,alexiscopeland@hotmail.com,2021-07-17,"{""language"": ""IT"", ""currency"": ""GBP""}",3051.02,Bronze,0 +2829,Christopher Sullivan,crystalmartinez@gmail.com,2021-03-26,"{""language"": ""DE"", ""currency"": ""CAD""}",7202.52,Gold,0 +2830,Angela Day,maria64@braun-edwards.info,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6933.65,Gold,1 +2831,Christopher Stewart MD,obradford@hotmail.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2790.52,Bronze,1 +2832,Maria Alexander,jimmypierce@larson-myers.org,2022-08-25,"{""language"": ""FR"", ""currency"": ""GBP""}",8025.08,Gold,0 +2833,Zachary Cortez,egibson@hotmail.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2713.0,Gold,0 +2834,Jonathan Marquez,kristen41@hernandez.com,2024-04-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1829.41,Silver,0 +2835,Jonathan Moses,daniel46@wallace.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""MXN""}",1841.6,Bronze,0 +2836,Rodney Forbes,nancyrichards@yahoo.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""GBP""}",945.52,Gold,1 +2837,Brandy Rivera,jessica21@yahoo.com,2023-08-23,"{""language"": ""IT"", ""currency"": ""CAD""}",9971.57,Gold,1 +2838,Virginia Clayton,james47@page.com,2024-09-23,"{""language"": ""ES"", ""currency"": ""GBP""}",2931.03,Silver,1 +2839,Shelly Hall,adavis@hammond.com,2021-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",5822.65,Bronze,0 +2840,John Wang,chanrobert@yahoo.com,2023-03-11,"{""language"": ""ES"", ""currency"": ""MXN""}",7068.59,Silver,1 +2841,Charles Holland,kyle67@howell-butler.com,2024-03-13,"{""language"": ""EN"", ""currency"": ""MXN""}",8439.68,Bronze,0 +2842,Alex Ellis,nicoleflowers@clark.com,2022-09-11,"{""language"": ""IT"", ""currency"": ""GBP""}",645.04,Silver,0 +2843,Kenneth Henson,qporter@hotmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",106.22,Gold,0 +2844,Paul Bryant,amanda40@johnson.org,2021-03-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7734.25,Gold,0 +2845,Debra Jordan,carolsmith@martin-stewart.com,2023-06-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9753.0,Bronze,0 +2846,Jessica Russell,natalie70@hotmail.com,2021-02-08,"{""language"": ""EN"", ""currency"": ""CAD""}",5116.24,Silver,1 +2847,Sean Mcgee,blakehays@gmail.com,2023-12-02,"{""language"": ""FR"", ""currency"": ""USD""}",9946.92,Gold,1 +2848,Kimberly Morgan,kirklindsey@scott.biz,2023-09-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2581.59,Gold,1 +2849,Jennifer Best,eberger@ramos.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",4738.5,Silver,0 +2850,Jordan Prince,frice@yahoo.com,2022-04-27,"{""language"": ""DE"", ""currency"": ""EUR""}",493.27,Bronze,1 +2851,Gabrielle Atkinson,julia56@hotmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""MXN""}",4809.77,Silver,1 +2852,Luis Black,katelynmiller@yahoo.com,2020-10-21,"{""language"": ""FR"", ""currency"": ""GBP""}",3474.57,Silver,0 +2853,Catherine Erickson,john13@thompson-rodriguez.com,2019-12-17,"{""language"": ""DE"", ""currency"": ""USD""}",7128.7,Bronze,0 +2854,Brittany Melton,justin64@davis.com,2021-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",9742.59,Silver,0 +2855,Ryan Morrison,michael10@hotmail.com,2024-08-17,"{""language"": ""EN"", ""currency"": ""GBP""}",5097.11,Gold,0 +2856,Margaret Kelly,thoward@long.com,2024-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",108.11,Gold,0 +2857,William Watkins,hannah47@contreras-gonzalez.biz,2023-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",3089.08,Gold,1 +2858,Amy Bell,andrew71@yahoo.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""EUR""}",4408.38,Silver,1 +2859,Cassandra Contreras,wilsonshannon@gmail.com,2022-06-23,"{""language"": ""DE"", ""currency"": ""MXN""}",9208.16,Gold,0 +2860,Renee Medina,thomaskimberly@huff.org,2020-11-20,"{""language"": ""FR"", ""currency"": ""USD""}",8715.19,Bronze,1 +2861,Travis Marsh,dorseydana@yahoo.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",907.33,Silver,0 +2862,Benjamin Bolton,sarahford@gmail.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""CAD""}",6980.48,Bronze,0 +2863,Amanda Bell,john13@yahoo.com,2021-08-18,"{""language"": ""IT"", ""currency"": ""CAD""}",2222.98,Silver,1 +2864,Alexis Dodson,kathygriffin@hotmail.com,2020-12-30,"{""language"": ""EN"", ""currency"": ""EUR""}",8791.8,Bronze,0 +2865,Timothy Bradshaw,bernardmichele@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4778.86,Bronze,0 +2866,Jonathan Brown,gregorylloyd@sullivan.org,2021-01-21,"{""language"": ""FR"", ""currency"": ""MXN""}",683.78,Bronze,1 +2867,Jason Lopez,floresjessica@davis-brennan.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",1774.39,Silver,1 +2868,Caleb Cook,diazjames@diaz.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6584.09,Bronze,1 +2869,Tony Pacheco,nguyensamantha@hernandez-robinson.info,2022-11-27,"{""language"": ""ES"", ""currency"": ""MXN""}",7953.83,Silver,0 +2870,Randy Cole,tmorgan@yahoo.com,2020-04-08,"{""language"": ""IT"", ""currency"": ""USD""}",7896.69,Silver,1 +2871,Margaret Elliott,larrychristian@hotmail.com,2021-05-03,"{""language"": ""DE"", ""currency"": ""CAD""}",4173.74,Gold,1 +2872,Adam Turner,ericrichard@gmail.com,2021-11-16,"{""language"": ""IT"", ""currency"": ""USD""}",1084.11,Silver,1 +2873,Courtney Barr,tiffanyking@hotmail.com,2022-01-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2223.78,Bronze,1 +2874,Marissa Hill,yateschristopher@hotmail.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""CAD""}",9852.86,Bronze,0 +2875,Sara Dunn,lheath@yahoo.com,2024-04-07,"{""language"": ""EN"", ""currency"": ""USD""}",1345.59,Gold,0 +2876,Holly Matthews,brent10@hotmail.com,2021-10-04,"{""language"": ""ES"", ""currency"": ""USD""}",3519.79,Silver,0 +2877,Jerry Jefferson,tevans@garrett.info,2020-09-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8446.3,Silver,1 +2878,Christine Blanchard,walterserin@mueller.biz,2024-06-06,"{""language"": ""DE"", ""currency"": ""EUR""}",7224.19,Silver,1 +2879,Lindsay Bell,amber81@johnson.com,2022-10-19,"{""language"": ""EN"", ""currency"": ""CAD""}",8912.17,Bronze,0 +2880,Dr. Jennifer Bryant,maryreese@hotmail.com,2020-03-28,"{""language"": ""IT"", ""currency"": ""GBP""}",2544.76,Silver,0 +2881,Suzanne Conner,annette80@garcia.com,2024-05-31,"{""language"": ""DE"", ""currency"": ""MXN""}",9853.27,Gold,0 +2882,David Barron,amber36@hotmail.com,2024-05-29,"{""language"": ""EN"", ""currency"": ""CAD""}",8716.94,Gold,0 +2883,Justin Beard,mrodriguez@hotmail.com,2022-07-24,"{""language"": ""FR"", ""currency"": ""CAD""}",4087.07,Silver,0 +2884,Shawn Vaughan,andrew15@yahoo.com,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7986.44,Bronze,1 +2885,Alexander Bishop,bullocklindsay@ray.com,2021-08-01,"{""language"": ""ES"", ""currency"": ""GBP""}",3607.26,Silver,1 +2886,Gregory Roth,cgoodman@johnson-freeman.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",6337.45,Bronze,1 +2887,Samantha Flores,hcollins@golden-boone.com,2021-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",9714.88,Gold,1 +2888,Malik Lynch,owest@gmail.com,2020-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9352.22,Silver,0 +2889,Steven Hudson,bradyjessica@brennan.com,2022-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",1807.88,Silver,0 +2890,Christina Valenzuela,sdavis@woodward-morales.info,2022-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",516.04,Silver,1 +2891,Patrick Smith,gewing@dunlap.com,2023-10-08,"{""language"": ""IT"", ""currency"": ""USD""}",1726.59,Gold,0 +2892,James Ochoa,laurastrong@gmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8593.25,Bronze,0 +2893,Mr. Christopher Roberts,monica21@hotmail.com,2022-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",7817.95,Bronze,1 +2894,Brandy Love,snydertracey@hotmail.com,2021-11-28,"{""language"": ""ES"", ""currency"": ""EUR""}",232.6,Gold,1 +2895,Michael Baker,vdelgado@vasquez-sampson.info,2022-01-15,"{""language"": ""DE"", ""currency"": ""MXN""}",6912.2,Gold,0 +2896,Jared Moon,brandi42@patrick.net,2023-09-02,"{""language"": ""EN"", ""currency"": ""GBP""}",1880.26,Silver,1 +2897,Scott Barnes,riversbrenda@yahoo.com,2024-07-31,"{""language"": ""ES"", ""currency"": ""EUR""}",8198.44,Bronze,1 +2898,David Walters,aaron50@hotmail.com,2021-05-06,"{""language"": ""FR"", ""currency"": ""CAD""}",1236.13,Gold,0 +2899,Ryan Jones,xallen@maddox.org,2023-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",8375.51,Gold,0 +2900,Christie Garcia,juliesanders@conner-bryant.com,2020-01-27,"{""language"": ""EN"", ""currency"": ""USD""}",7974.02,Gold,0 +2901,Donald Kennedy,ronaldgonzalez@gmail.com,2020-04-12,"{""language"": ""DE"", ""currency"": ""CAD""}",1571.01,Silver,1 +2902,William Wilson,jacksonseth@bullock-peterson.biz,2024-08-26,"{""language"": ""FR"", ""currency"": ""MXN""}",3687.72,Gold,0 +2903,Anthony Harmon,ericfowler@hotmail.com,2023-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",8058.91,Silver,1 +2904,Danielle Knight,bruceerica@yahoo.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""MXN""}",8228.94,Bronze,1 +2905,James Hall,katiecortez@williams-miller.org,2022-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",1797.21,Gold,0 +2906,Lisa Watson,rsmith@lewis.com,2021-08-25,"{""language"": ""IT"", ""currency"": ""USD""}",7537.13,Gold,0 +2907,Maria Mann,qwells@woodard.info,2023-05-16,"{""language"": ""IT"", ""currency"": ""GBP""}",9155.04,Gold,1 +2908,Kara Mccormick,fschmidt@gmail.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5021.22,Silver,1 +2909,George Douglas,madison40@shepard-robinson.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""EUR""}",2041.01,Bronze,1 +2910,Robert Bowen,calhounkevin@long.com,2020-01-05,"{""language"": ""EN"", ""currency"": ""EUR""}",8463.61,Gold,1 +2911,Judith Price,kirbyandrew@hotmail.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""USD""}",1602.08,Gold,1 +2912,Marco Rodriguez,rachelwalker@yahoo.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8771.49,Bronze,0 +2913,Paul Ward,qbarrera@conrad-pruitt.biz,2022-06-30,"{""language"": ""ES"", ""currency"": ""CAD""}",8458.27,Silver,1 +2914,David Turner,cbarrera@watson.com,2022-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1403.02,Bronze,0 +2915,Paul Perry,jill35@manning.biz,2023-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4094.32,Gold,1 +2916,Valerie Williams,scottwalker@garcia.net,2022-04-06,"{""language"": ""IT"", ""currency"": ""CAD""}",8163.88,Bronze,1 +2917,Gregory Bennett,ashley30@gmail.com,2022-12-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2996.66,Gold,1 +2918,Jesse Jackson,smithwilliam@gmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",92.13,Silver,1 +2919,Steven Casey,malexander@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""CAD""}",6771.44,Gold,1 +2920,Jerry Garcia,linda19@hotmail.com,2024-04-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9069.15,Bronze,0 +2921,Michael Hess,pjimenez@yahoo.com,2023-07-22,"{""language"": ""IT"", ""currency"": ""USD""}",7685.52,Bronze,0 +2922,Bradley Chambers,jryan@walker-foster.net,2023-09-23,"{""language"": ""FR"", ""currency"": ""CAD""}",9757.97,Silver,0 +2923,Donald Flores,irice@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",929.16,Bronze,1 +2924,Michael Robbins DDS,maria76@beltran.com,2024-03-23,"{""language"": ""ES"", ""currency"": ""MXN""}",1190.4,Bronze,0 +2925,Chad Kelley,danielmiller@gmail.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3287.42,Gold,0 +2926,Kelly Padilla,robert93@elliott-weber.com,2021-04-19,"{""language"": ""ES"", ""currency"": ""CAD""}",122.03,Bronze,1 +2927,Sandra Sheppard,rebecca20@hotmail.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",8365.5,Bronze,1 +2928,Jeffrey Carter,castrofrederick@gmail.com,2020-01-10,"{""language"": ""DE"", ""currency"": ""GBP""}",4010.65,Bronze,0 +2929,Curtis Parker,amandameyers@green.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""USD""}",2519.41,Silver,1 +2930,Kenneth Lopez,madisonbarnes@hotmail.com,2022-01-15,"{""language"": ""ES"", ""currency"": ""CAD""}",9287.49,Silver,1 +2931,Ashley Wallace,hunterandrew@tran-martinez.com,2023-06-08,"{""language"": ""FR"", ""currency"": ""GBP""}",8377.77,Gold,1 +2932,Jeremy Bowers,jessica74@yahoo.com,2023-01-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3181.47,Bronze,0 +2933,Anne Johnson,jortega@gmail.com,2022-08-18,"{""language"": ""IT"", ""currency"": ""CAD""}",655.87,Bronze,0 +2934,Kaitlyn Nielsen,ericmontoya@stanley.biz,2020-02-03,"{""language"": ""DE"", ""currency"": ""USD""}",7993.16,Gold,1 +2935,Natalie Sweeney,qhernandez@gmail.com,2020-12-21,"{""language"": ""DE"", ""currency"": ""GBP""}",383.68,Silver,1 +2936,Lisa Meyer,jacobsandoval@hotmail.com,2021-06-24,"{""language"": ""DE"", ""currency"": ""CAD""}",7435.01,Silver,1 +2937,April Lewis,sharpshawn@yahoo.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9490.7,Bronze,1 +2938,Steven Jennings,ywagner@lane.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""USD""}",5879.16,Gold,1 +2939,Robert Banks,wbyrd@richardson.com,2023-09-04,"{""language"": ""EN"", ""currency"": ""MXN""}",667.12,Silver,1 +2940,Anthony Singh,angelagonzales@hotmail.com,2020-11-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8680.1,Gold,1 +2941,Carly Jacobson,wyattodonnell@lewis-holloway.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",8348.1,Silver,0 +2942,David Sullivan,hphillips@pacheco-rodriguez.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""EUR""}",1668.84,Silver,1 +2943,James Mccullough,elainecruz@yahoo.com,2020-09-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5015.67,Gold,0 +2944,Nancy Greene,mirandajohn@dean.info,2022-02-02,"{""language"": ""IT"", ""currency"": ""EUR""}",6555.71,Bronze,0 +2945,Vincent Warner,kellyandrews@hotmail.com,2024-01-18,"{""language"": ""ES"", ""currency"": ""EUR""}",8626.55,Silver,0 +2946,Daniel Bennett,heather64@harding.org,2021-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",9921.31,Silver,0 +2947,Gary Wall,trevor73@lucas.com,2024-05-02,"{""language"": ""DE"", ""currency"": ""EUR""}",3527.75,Gold,1 +2948,Julia Walker,haneyashley@ryan-turner.info,2023-08-19,"{""language"": ""IT"", ""currency"": ""CAD""}",4349.45,Bronze,1 +2949,Kristin Taylor,randy24@orozco.biz,2021-10-13,"{""language"": ""IT"", ""currency"": ""CAD""}",2335.63,Bronze,0 +2950,Brandon Valencia,shanerice@smith.com,2024-10-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8523.78,Silver,0 +2951,Mark Watson,astephens@gmail.com,2022-10-20,"{""language"": ""DE"", ""currency"": ""GBP""}",8470.15,Bronze,0 +2952,Rachel Murphy,stephen77@webb-miller.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",4007.19,Gold,0 +2953,Christopher Sanders,lindseyortega@cox-espinoza.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""EUR""}",2577.23,Bronze,1 +2954,Kristin Horton,perezjulian@brown.biz,2020-12-14,"{""language"": ""IT"", ""currency"": ""EUR""}",1889.53,Gold,0 +2955,Stacy Morrison,dennislisa@gmail.com,2020-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4919.56,Gold,1 +2956,Michelle Johnson,ryansteven@browning-harrington.com,2022-06-03,"{""language"": ""DE"", ""currency"": ""MXN""}",8901.4,Gold,1 +2957,Robert Sharp,jeffreycurry@gmail.com,2022-08-30,"{""language"": ""IT"", ""currency"": ""CAD""}",1855.43,Silver,0 +2958,Vincent Doyle,fortiz@yahoo.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""USD""}",4599.2,Gold,1 +2959,Frank Ramsey,kathleen38@williams.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",3001.45,Gold,0 +2960,Marissa Fernandez,davidjimenez@hotmail.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""MXN""}",9428.33,Gold,1 +2961,Deborah Gregory,christian15@lewis.biz,2021-11-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8254.65,Silver,0 +2962,Jennifer Dunn,nicholas85@warren.org,2021-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",6754.76,Gold,0 +2963,Thomas Smith,qsparks@hotmail.com,2024-06-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4761.37,Silver,0 +2964,Alan Jackson,lucas71@yahoo.com,2022-03-11,"{""language"": ""EN"", ""currency"": ""GBP""}",3296.72,Bronze,0 +2965,Valerie Rodriguez,vholmes@johnson.org,2020-09-14,"{""language"": ""EN"", ""currency"": ""USD""}",8465.61,Bronze,0 +2966,Scott Hughes,jwood@peterson.com,2020-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7087.59,Silver,1 +2967,Tiffany Hines,cookevictoria@hotmail.com,2022-05-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1770.42,Gold,0 +2968,Kenneth Lee,onguyen@hotmail.com,2020-06-08,"{""language"": ""EN"", ""currency"": ""EUR""}",9238.53,Bronze,1 +2969,Jenny Barrett,fmurray@alexander.com,2022-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",5447.88,Bronze,1 +2970,Sherry Thompson,fordlee@hotmail.com,2024-02-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4659.83,Silver,1 +2971,Lori Cooper,banksjames@frazier.com,2022-10-23,"{""language"": ""IT"", ""currency"": ""USD""}",569.9,Gold,0 +2972,Leah Miller,katiethomas@gmail.com,2023-10-15,"{""language"": ""DE"", ""currency"": ""MXN""}",4461.67,Silver,0 +2973,Michelle Beck,stephenreynolds@wilson-bullock.com,2021-12-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1644.21,Gold,1 +2974,Suzanne Rojas,gjohnson@wall.com,2020-09-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8482.86,Bronze,0 +2975,Laura Ruiz,leonardjodi@hampton.com,2023-06-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4631.31,Silver,0 +2976,Kristen Lewis,smithsabrina@yahoo.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",3011.8,Gold,1 +2977,Stacey Wall,reginahoffman@gmail.com,2020-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",8996.7,Silver,1 +2978,Michael Sanchez,paigewilson@ward-page.com,2020-04-02,"{""language"": ""EN"", ""currency"": ""USD""}",2197.92,Silver,0 +2979,Lori Robertson,ronaldhaley@yahoo.com,2023-02-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6688.41,Gold,1 +2980,Kyle Walton,woodjessica@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",845.7,Silver,0 +2981,Barbara Benton,nbrown@hill.com,2021-10-23,"{""language"": ""IT"", ""currency"": ""CAD""}",6446.09,Bronze,1 +2982,Dylan Mann,charlessharp@gmail.com,2024-08-17,"{""language"": ""IT"", ""currency"": ""USD""}",6238.57,Silver,1 +2983,April Lewis,calvin46@gmail.com,2022-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",4538.6,Gold,1 +2984,James Williams,villegasdylan@gmail.com,2022-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",9805.47,Bronze,0 +2985,Sherry Wall,adrian94@yahoo.com,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4284.7,Gold,0 +2986,Thomas Harris,banksvalerie@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""USD""}",1365.34,Bronze,1 +2987,Barbara Flowers,xherrera@kelly.org,2023-12-27,"{""language"": ""DE"", ""currency"": ""MXN""}",8105.55,Gold,1 +2988,Laura Bell,moorejustin@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3019.9,Gold,1 +2989,Donald Carter,whitebrian@robbins.com,2021-07-26,"{""language"": ""ES"", ""currency"": ""EUR""}",6756.84,Silver,0 +2990,Christopher Lopez,richardhughes@yahoo.com,2023-06-19,"{""language"": ""IT"", ""currency"": ""MXN""}",7007.4,Silver,1 +2991,Christopher Martinez,courtneywells@yahoo.com,2021-10-06,"{""language"": ""IT"", ""currency"": ""USD""}",4867.06,Gold,1 +2992,Becky Patrick,david47@yahoo.com,2024-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",1727.96,Gold,0 +2993,Michael Patterson,mark65@wood-evans.com,2020-03-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3593.03,Bronze,0 +2994,Daniel Cameron,hernandezamanda@smith-dalton.info,2019-12-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6404.59,Silver,0 +2995,Shari Chen DVM,jenningsmonique@fuller-wagner.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4684.9,Silver,1 +2996,Francisco Barry,keith75@gmail.com,2023-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",9420.66,Gold,0 +2997,Kenneth Peters,xshannon@costa.net,2020-10-19,"{""language"": ""EN"", ""currency"": ""USD""}",5632.11,Bronze,0 +2998,Thomas Adams,erin44@yahoo.com,2022-03-03,"{""language"": ""FR"", ""currency"": ""USD""}",2559.63,Gold,0 +2999,Michelle Smith,kathryn00@yahoo.com,2022-11-22,"{""language"": ""ES"", ""currency"": ""USD""}",7765.14,Silver,0 +3000,David Santiago,joel64@yahoo.com,2021-12-11,"{""language"": ""EN"", ""currency"": ""CAD""}",7055.41,Silver,1 +3001,Dustin Turner,valerieburns@morales.net,2021-05-27,"{""language"": ""FR"", ""currency"": ""USD""}",2904.94,Bronze,1 +3002,Diana Guerrero,pevans@watson.com,2023-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6886.63,Gold,0 +3003,Tyler Wong,paul96@hotmail.com,2024-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",7589.53,Bronze,1 +3004,Scott Kaiser,deancharles@lopez-rogers.com,2022-04-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8056.65,Silver,1 +3005,Sean Graves,ryan61@jackson-gibson.org,2024-04-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9138.06,Silver,0 +3006,Kenneth Atkinson,mario10@taylor.org,2022-03-09,"{""language"": ""FR"", ""currency"": ""GBP""}",3107.65,Gold,1 +3007,Brad Shaw,kristin38@flores.com,2020-02-08,"{""language"": ""DE"", ""currency"": ""GBP""}",7490.03,Bronze,0 +3008,Jon Noble,davidbennett@yahoo.com,2020-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3330.85,Bronze,1 +3009,Ashley Hall,todd31@gmail.com,2020-07-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4412.34,Gold,1 +3010,Ricky Ramsey,matthew55@young.biz,2021-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",7032.58,Silver,1 +3011,Raymond Black,chelsea50@taylor-phelps.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""MXN""}",578.32,Bronze,0 +3012,Cassandra Brown,julieramsey@yahoo.com,2019-12-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1156.02,Bronze,0 +3013,Brittany Avery,brittany64@yahoo.com,2024-04-21,"{""language"": ""ES"", ""currency"": ""GBP""}",1880.57,Bronze,1 +3014,Daniel Martin,jacksonanne@wood.com,2023-04-14,"{""language"": ""IT"", ""currency"": ""GBP""}",6875.91,Bronze,1 +3015,Jesus Soto,joshua90@mcgee-sandoval.net,2021-04-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4398.16,Bronze,1 +3016,Ann Evans,langcarrie@hernandez.info,2021-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",5979.58,Bronze,1 +3017,Jeremy Macias,laura10@gmail.com,2024-03-30,"{""language"": ""EN"", ""currency"": ""GBP""}",9726.96,Silver,0 +3018,Julie Vaughn PhD,devin71@gmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""MXN""}",5022.96,Gold,1 +3019,Cody Boyd,hartpatricia@hotmail.com,2022-05-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3744.96,Silver,0 +3020,Charles Harris,pennyadams@gmail.com,2022-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",9885.25,Silver,0 +3021,Andrew Baird,xguzman@russell-sherman.com,2022-12-19,"{""language"": ""EN"", ""currency"": ""EUR""}",4343.86,Silver,1 +3022,David Fernandez,tina50@jones.com,2021-10-03,"{""language"": ""ES"", ""currency"": ""GBP""}",1929.01,Gold,0 +3023,Nathan Hensley,ashley98@yahoo.com,2023-06-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5439.99,Bronze,0 +3024,Elizabeth Short,joshuamcmillan@brennan.net,2022-07-26,"{""language"": ""IT"", ""currency"": ""CAD""}",579.3,Bronze,1 +3025,Christian Chambers,joseph69@gmail.com,2021-03-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9824.9,Silver,1 +3026,Alex Woods,thomasgarcia@bennett-hughes.com,2022-06-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8675.17,Silver,0 +3027,Derek Rivera,wangnicholas@gmail.com,2021-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",4490.51,Silver,1 +3028,Catherine Goodman,trogers@hotmail.com,2024-03-03,"{""language"": ""FR"", ""currency"": ""EUR""}",2933.29,Silver,0 +3029,Thomas Serrano,dyoung@hotmail.com,2023-03-12,"{""language"": ""ES"", ""currency"": ""GBP""}",656.5,Bronze,0 +3030,Matthew Torres,colekimberly@johnson-garcia.net,2024-09-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4950.74,Gold,1 +3031,Kevin Stuart,ugonzales@gonzalez-lewis.com,2023-04-26,"{""language"": ""ES"", ""currency"": ""GBP""}",1786.48,Bronze,1 +3032,Amanda Campbell,merritttonya@yahoo.com,2023-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",8436.2,Gold,1 +3033,Aaron Mcguire,eriksantiago@white-brown.com,2023-10-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6512.12,Bronze,0 +3034,Charles Hendricks,rojasjennifer@norris.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""EUR""}",7897.83,Silver,1 +3035,Destiny Leon,smccoy@espinoza.com,2021-12-08,"{""language"": ""DE"", ""currency"": ""GBP""}",8618.1,Gold,0 +3036,Alexander Moreno,richard42@little.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7600.92,Gold,0 +3037,Karen Scott,edwardmurphy@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",4553.74,Silver,1 +3038,Latasha Lowery,asummers@gmail.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5584.47,Bronze,1 +3039,Erik Franklin,zstevens@joseph.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""CAD""}",7833.12,Bronze,1 +3040,Anthony Myers PhD,jessicaballard@schaefer-mcdonald.biz,2022-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",8454.13,Silver,0 +3041,Kyle Riggs,trhodes@yahoo.com,2024-02-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5554.56,Silver,1 +3042,Victoria Kirby,romaneric@hotmail.com,2020-04-09,"{""language"": ""EN"", ""currency"": ""USD""}",4113.81,Bronze,1 +3043,Michael Williams,carolyn73@yahoo.com,2020-04-03,"{""language"": ""IT"", ""currency"": ""GBP""}",1108.23,Gold,1 +3044,David Thomas,ramosangela@soto-todd.biz,2023-01-15,"{""language"": ""IT"", ""currency"": ""CAD""}",3772.36,Gold,1 +3045,Chad Sanchez,jamiearroyo@hotmail.com,2022-06-23,"{""language"": ""IT"", ""currency"": ""USD""}",7818.0,Bronze,1 +3046,Miss Ashley Reynolds,nicholstaylor@hotmail.com,2020-01-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5085.63,Bronze,0 +3047,Michael Douglas,austinflores@gmail.com,2020-01-19,"{""language"": ""EN"", ""currency"": ""CAD""}",7470.31,Silver,1 +3048,Cindy Brandt,lsparks@yahoo.com,2023-04-13,"{""language"": ""DE"", ""currency"": ""USD""}",6873.19,Silver,1 +3049,Regina Floyd,dylanlopez@gmail.com,2023-03-15,"{""language"": ""ES"", ""currency"": ""USD""}",7525.45,Silver,0 +3050,Connie Mcgrath MD,yedwards@king-russell.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""CAD""}",9161.21,Bronze,0 +3051,John Combs,carrieturner@perez-clark.net,2023-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",950.59,Silver,0 +3052,Mrs. Mariah Jackson,wardbarbara@fletcher-barnes.biz,2021-12-24,"{""language"": ""EN"", ""currency"": ""USD""}",2646.45,Silver,1 +3053,Bailey Smith,michael86@white-santiago.com,2023-12-07,"{""language"": ""IT"", ""currency"": ""GBP""}",3362.95,Gold,1 +3054,Anthony Esparza,michelle71@hotmail.com,2020-03-24,"{""language"": ""IT"", ""currency"": ""USD""}",314.5,Gold,0 +3055,Ryan King,smithanthony@garcia.com,2022-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7534.21,Gold,1 +3056,Michelle Wilson,alvaradosteve@hotmail.com,2022-05-02,"{""language"": ""EN"", ""currency"": ""USD""}",9370.53,Gold,0 +3057,Tanya Garcia,wwood@snyder.com,2023-09-08,"{""language"": ""DE"", ""currency"": ""MXN""}",9627.17,Gold,1 +3058,Brenda Wilson,ihoffman@stone.org,2020-04-15,"{""language"": ""ES"", ""currency"": ""MXN""}",795.3,Silver,1 +3059,Kelsey Hickman,emily33@gmail.com,2021-09-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6866.4,Silver,0 +3060,Theresa Mendoza,hoffmanlinda@green.com,2021-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",9430.81,Bronze,1 +3061,Miss Teresa James,pnelson@gmail.com,2024-08-14,"{""language"": ""DE"", ""currency"": ""GBP""}",8029.17,Bronze,1 +3062,Marissa Garcia,matthew96@hotmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",2987.13,Gold,1 +3063,Kelly Peterson,juan42@carter.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""MXN""}",850.6,Gold,0 +3064,Seth Johnson,morrisjulie@sherman.com,2023-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",1853.69,Silver,0 +3065,Marcus Atkins,howard16@mason.com,2024-09-07,"{""language"": ""DE"", ""currency"": ""MXN""}",9387.63,Bronze,0 +3066,Henry Cruz,rallen@yahoo.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""USD""}",9558.43,Bronze,0 +3067,Scott Williams,brendadickerson@banks.info,2020-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",8467.22,Bronze,0 +3068,Nicholas Patton,debrakline@yahoo.com,2021-10-21,"{""language"": ""FR"", ""currency"": ""EUR""}",6596.3,Gold,1 +3069,Caitlin Mason,nathan05@hoffman.info,2024-05-17,"{""language"": ""DE"", ""currency"": ""GBP""}",301.23,Bronze,0 +3070,Elizabeth Smith,craigrush@sanchez.com,2021-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",1170.02,Bronze,0 +3071,Tina Acosta,sophiaclay@gmail.com,2020-10-05,"{""language"": ""ES"", ""currency"": ""MXN""}",6884.19,Silver,1 +3072,Richard Kim,rebecca13@hurley.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""GBP""}",3318.34,Silver,0 +3073,Jocelyn Garcia,howardallen@carpenter-fuller.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""USD""}",8301.38,Gold,1 +3074,Linda Medina,dcalhoun@hotmail.com,2020-10-22,"{""language"": ""EN"", ""currency"": ""EUR""}",9331.13,Bronze,0 +3075,Brittany Armstrong,vanceabigail@sparks.org,2021-05-12,"{""language"": ""FR"", ""currency"": ""GBP""}",7065.9,Bronze,1 +3076,Melissa Parker,granthancock@yahoo.com,2023-08-09,"{""language"": ""DE"", ""currency"": ""MXN""}",2235.43,Bronze,0 +3077,Diana Williams,kimberlyhernandez@hotmail.com,2024-06-03,"{""language"": ""FR"", ""currency"": ""GBP""}",481.42,Bronze,1 +3078,Wesley Perry,thompsontimothy@gmail.com,2022-12-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4737.25,Gold,0 +3079,Adam West,robert15@atkins.com,2024-07-04,"{""language"": ""IT"", ""currency"": ""EUR""}",5108.29,Bronze,1 +3080,Jeffrey Thompson Jr.,aliciarangel@yahoo.com,2023-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8308.68,Gold,0 +3081,Erica Moody,jonathonwhite@little-vang.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3159.99,Silver,1 +3082,Matthew Stark,uking@gmail.com,2022-05-11,"{""language"": ""IT"", ""currency"": ""CAD""}",6043.94,Bronze,0 +3083,Nicolas Turner,khoffman@ramirez.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",894.3,Gold,0 +3084,Diane Curtis,jamespotter@hotmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",3662.45,Silver,1 +3085,William Mullen,henrydawn@martinez.com,2020-05-10,"{""language"": ""ES"", ""currency"": ""GBP""}",7204.26,Silver,1 +3086,Sara Murillo,shawdarrell@brown.com,2022-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",865.48,Silver,0 +3087,Lauren Mcclain,meyerstaylor@yahoo.com,2021-11-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9822.6,Bronze,1 +3088,Joseph Shepherd,joneskara@mendez.com,2024-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",490.51,Silver,0 +3089,Eric Smith,carolyn53@grant-taylor.com,2023-10-29,"{""language"": ""EN"", ""currency"": ""USD""}",9343.37,Gold,1 +3090,Stacey Simmons,johnsonsandra@gilbert-crane.biz,2021-06-07,"{""language"": ""EN"", ""currency"": ""GBP""}",3282.88,Bronze,1 +3091,Tony Gutierrez,janetmcdonald@yahoo.com,2022-08-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5828.65,Gold,1 +3092,Monique Campos,david13@mitchell.com,2021-03-15,"{""language"": ""FR"", ""currency"": ""MXN""}",5354.65,Silver,0 +3093,Elaine Stewart,shepherdjulie@fuller-harris.com,2023-07-27,"{""language"": ""EN"", ""currency"": ""MXN""}",839.07,Bronze,1 +3094,Dawn Hoffman,pageamy@brooks-kelly.com,2021-10-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6467.18,Bronze,1 +3095,Karen Torres,john47@yahoo.com,2024-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4125.0,Silver,0 +3096,Dawn Alexander,doylewilliam@yahoo.com,2023-07-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6200.59,Bronze,0 +3097,Robin Baldwin,ericwade@wright-sanchez.org,2020-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3800.73,Silver,1 +3098,Robert Thompson,darrenwiggins@hotmail.com,2024-10-02,"{""language"": ""FR"", ""currency"": ""CAD""}",7549.68,Gold,1 +3099,Matthew Fox,randallmelissa@gmail.com,2019-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",3821.56,Bronze,1 +3100,Miss Holly Gonzalez,johnny29@yahoo.com,2021-01-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3076.59,Silver,1 +3101,Daniel Thompson,pramirez@gmail.com,2021-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9440.88,Silver,0 +3102,Christopher Nguyen,nsmith@hotmail.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",2451.03,Bronze,0 +3103,Jack Griffin,christynguyen@austin.com,2022-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",9764.93,Gold,1 +3104,Johnny Robinson,janet35@hotmail.com,2023-06-28,"{""language"": ""EN"", ""currency"": ""EUR""}",5320.37,Silver,0 +3105,Marie Clark,robertthompson@hotmail.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""USD""}",832.69,Gold,0 +3106,Andre Summers,betty49@yahoo.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9850.22,Gold,1 +3107,Jonathan Schmidt,vickihess@hotmail.com,2024-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",2393.14,Gold,1 +3108,Lee Smith,kimberly20@hotmail.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",3164.95,Bronze,1 +3109,Nichole Williams,ricky60@moreno.com,2024-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4480.92,Bronze,0 +3110,Tammy Miller,andreagriffin@gmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3436.24,Bronze,0 +3111,Debbie Foster,jimenezjamie@martinez.com,2023-03-22,"{""language"": ""DE"", ""currency"": ""MXN""}",7816.77,Bronze,1 +3112,John Austin,nkennedy@wiggins-yu.info,2021-05-18,"{""language"": ""EN"", ""currency"": ""CAD""}",5479.87,Bronze,1 +3113,Jessica Simpson,joannebarrera@gmail.com,2020-12-31,"{""language"": ""EN"", ""currency"": ""MXN""}",5815.52,Bronze,0 +3114,Ethan Young,tiffany65@gmail.com,2020-08-04,"{""language"": ""IT"", ""currency"": ""CAD""}",1262.97,Gold,1 +3115,Angela Harrison,weavergarrett@jackson.biz,2021-12-14,"{""language"": ""DE"", ""currency"": ""EUR""}",9595.73,Gold,0 +3116,Noah Cruz,rschroeder@yahoo.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""GBP""}",5670.08,Bronze,1 +3117,Christopher Levy,wsantos@hotmail.com,2022-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4785.38,Gold,0 +3118,Darryl Bowman,shannonbarr@yahoo.com,2022-10-28,"{""language"": ""ES"", ""currency"": ""MXN""}",4213.55,Bronze,1 +3119,Troy Hughes Jr.,samantha76@yahoo.com,2023-01-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4624.19,Silver,1 +3120,Mark Salazar,bortiz@hotmail.com,2020-09-19,"{""language"": ""DE"", ""currency"": ""USD""}",4456.37,Gold,1 +3121,Edward Whitehead,nrobinson@yahoo.com,2023-06-28,"{""language"": ""EN"", ""currency"": ""EUR""}",6641.34,Silver,1 +3122,Molly Mitchell MD,johnsonkevin@yahoo.com,2023-04-09,"{""language"": ""DE"", ""currency"": ""GBP""}",1156.35,Bronze,1 +3123,Jeffrey Moreno,brandy57@torres.com,2023-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2949.52,Gold,1 +3124,Matthew Higgins,garciajoshua@gmail.com,2024-01-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4108.77,Silver,1 +3125,Monica Davis,villamichael@yahoo.com,2023-09-05,"{""language"": ""EN"", ""currency"": ""MXN""}",1738.96,Bronze,0 +3126,Melissa Smith,hillmeredith@yahoo.com,2021-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",2485.66,Silver,1 +3127,Tracy Gonzalez,bradley40@henson.org,2020-12-27,"{""language"": ""EN"", ""currency"": ""CAD""}",2869.9,Silver,1 +3128,Nathan Gibson,gortiz@thomas-alvarez.biz,2021-09-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9113.73,Bronze,0 +3129,Ashley Ward,gstout@gmail.com,2024-02-26,"{""language"": ""ES"", ""currency"": ""USD""}",8926.46,Gold,1 +3130,Michael Davis,kimberly54@hotmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",2192.02,Silver,0 +3131,Justin Martinez,ohoover@hernandez.net,2021-05-28,"{""language"": ""DE"", ""currency"": ""CAD""}",697.83,Bronze,1 +3132,Hector Allen,ubrown@hotmail.com,2024-04-01,"{""language"": ""FR"", ""currency"": ""EUR""}",4598.62,Silver,1 +3133,Daniel Villarreal,evansscott@gmail.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""USD""}",4878.05,Bronze,1 +3134,Joshua Evans,haleydiamond@taylor-robbins.org,2020-03-08,"{""language"": ""EN"", ""currency"": ""MXN""}",7669.9,Bronze,1 +3135,Alicia Cooley,astein@hotmail.com,2022-09-24,"{""language"": ""IT"", ""currency"": ""GBP""}",4391.13,Gold,0 +3136,Cynthia Wilson,xwatson@gmail.com,2022-05-09,"{""language"": ""IT"", ""currency"": ""MXN""}",4583.6,Gold,1 +3137,Sarah Thompson,deannakim@gmail.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""CAD""}",7301.51,Gold,0 +3138,Angel Day,asanchez@yahoo.com,2023-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1904.69,Bronze,1 +3139,Jennifer Parker,sarahrobles@doyle.biz,2024-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",6254.19,Bronze,0 +3140,Noah Simmons,matthew56@austin.com,2024-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",621.59,Silver,1 +3141,Catherine George,vhall@hotmail.com,2023-05-15,"{""language"": ""IT"", ""currency"": ""MXN""}",614.5,Gold,0 +3142,Haley Reilly,david38@taylor-robinson.org,2021-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",9882.14,Bronze,0 +3143,Melanie Morales,ejones@gmail.com,2022-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8633.95,Gold,0 +3144,Alan Hayes,ryan41@mason.com,2023-10-04,"{""language"": ""DE"", ""currency"": ""USD""}",2987.14,Silver,0 +3145,Christian Wise,scottrussell@hotmail.com,2020-04-27,"{""language"": ""EN"", ""currency"": ""EUR""}",4392.49,Bronze,1 +3146,Jason Adams,vnelson@hotmail.com,2023-12-18,"{""language"": ""DE"", ""currency"": ""EUR""}",9523.82,Bronze,0 +3147,Patricia Miller,kirbychristopher@anthony-strickland.com,2023-03-08,"{""language"": ""DE"", ""currency"": ""USD""}",1463.43,Silver,1 +3148,Robert Foster,jose60@gmail.com,2024-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",9306.19,Bronze,1 +3149,Justin Sullivan,cwilliams@turner.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",7397.46,Silver,1 +3150,Andrew Olson,cameronhughes@gmail.com,2021-11-03,"{""language"": ""DE"", ""currency"": ""EUR""}",6508.43,Gold,0 +3151,Stacy Roberson,barbara42@hotmail.com,2023-08-30,"{""language"": ""ES"", ""currency"": ""EUR""}",4436.43,Gold,1 +3152,Yolanda Soto,brianaward@archer-burgess.org,2020-05-25,"{""language"": ""IT"", ""currency"": ""GBP""}",8269.03,Silver,1 +3153,Diane Cook,zthompson@peck-ochoa.biz,2020-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",566.85,Bronze,0 +3154,Alyssa Chan,ddaugherty@cannon.info,2020-08-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8488.0,Bronze,0 +3155,Bobby Warner,barbarawilliams@hotmail.com,2023-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6934.69,Bronze,0 +3156,Jacob Page,william12@hotmail.com,2022-02-16,"{""language"": ""ES"", ""currency"": ""MXN""}",3132.04,Bronze,1 +3157,Christina Phillips,angelgreen@hines.info,2020-12-03,"{""language"": ""DE"", ""currency"": ""EUR""}",6418.92,Bronze,1 +3158,Manuel Leach,vpayne@stanley.com,2022-08-16,"{""language"": ""EN"", ""currency"": ""MXN""}",8207.76,Gold,0 +3159,Brian Hubbard,jessica96@yahoo.com,2022-09-19,"{""language"": ""IT"", ""currency"": ""GBP""}",9265.42,Gold,1 +3160,Sharon Murphy,gloriasanders@moreno.org,2022-07-04,"{""language"": ""FR"", ""currency"": ""USD""}",1409.13,Silver,0 +3161,Grace Hawkins,bowersjason@hotmail.com,2021-02-01,"{""language"": ""ES"", ""currency"": ""USD""}",8542.08,Gold,1 +3162,Melissa Thornton,ycortez@yahoo.com,2021-07-07,"{""language"": ""IT"", ""currency"": ""GBP""}",7045.56,Bronze,1 +3163,Jacqueline Jackson,xclay@jones.com,2020-03-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6582.59,Gold,1 +3164,Ivan Mcdonald,teresa35@yahoo.com,2022-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1688.91,Silver,0 +3165,Tammy James,marisabrooks@allen-sloan.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""USD""}",1717.18,Bronze,1 +3166,Laura Thompson,blee@robbins-saunders.com,2024-04-05,"{""language"": ""FR"", ""currency"": ""USD""}",6914.18,Bronze,0 +3167,Desiree Dorsey,markclay@yahoo.com,2023-05-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1955.62,Silver,1 +3168,Dillon Goodwin,reedaaron@clark-montgomery.org,2024-08-12,"{""language"": ""FR"", ""currency"": ""EUR""}",9568.92,Silver,0 +3169,Kimberly Thomas,agould@gmail.com,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9302.77,Bronze,1 +3170,Wanda Rasmussen,holmesmary@evans.com,2022-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",3021.27,Gold,1 +3171,Carolyn Flores,angelicaowens@gmail.com,2022-08-25,"{""language"": ""IT"", ""currency"": ""GBP""}",743.3,Silver,0 +3172,Maria Krueger,justinjohnson@gmail.com,2023-10-31,"{""language"": ""DE"", ""currency"": ""MXN""}",7048.31,Gold,1 +3173,Amy Ford,laura88@webb.org,2024-09-26,"{""language"": ""EN"", ""currency"": ""CAD""}",6899.79,Gold,0 +3174,Stacey Perry,kevinwebster@gmail.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2838.17,Bronze,1 +3175,Troy Stewart,awoods@yahoo.com,2021-11-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2242.92,Bronze,1 +3176,Lynn Jones,aaron36@henderson.org,2024-04-12,"{""language"": ""ES"", ""currency"": ""MXN""}",8297.04,Silver,1 +3177,Nicolas Aguilar,morganchambers@peterson-ware.com,2020-11-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1545.45,Gold,0 +3178,Nathaniel Wilkinson,courtneyfranklin@yahoo.com,2020-01-22,"{""language"": ""FR"", ""currency"": ""CAD""}",2305.37,Bronze,1 +3179,Kenneth Myers,dawn86@castro.info,2023-07-17,"{""language"": ""FR"", ""currency"": ""MXN""}",3617.67,Silver,1 +3180,Darren Pruitt,keithmariah@hansen-riddle.net,2022-09-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3811.83,Gold,0 +3181,Patrick Dean,xcrane@gmail.com,2023-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",1621.12,Bronze,0 +3182,Grant Smith,aguirredawn@hotmail.com,2022-07-30,"{""language"": ""IT"", ""currency"": ""MXN""}",1341.7,Bronze,1 +3183,Brian Meyer,charles65@hotmail.com,2022-11-04,"{""language"": ""IT"", ""currency"": ""GBP""}",575.27,Bronze,0 +3184,Jose Hatfield,sarahharris@johnson-cordova.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6444.92,Bronze,1 +3185,James Parks,michaelmoreno@smith-rodriguez.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""USD""}",6393.51,Silver,0 +3186,Alejandra Briggs,edwardsdarrell@yahoo.com,2021-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9379.48,Bronze,1 +3187,Renee Humphrey,crystalpena@pena.com,2020-12-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1006.37,Silver,0 +3188,Terri Smith,timothyrowe@miller-hobbs.org,2024-07-28,"{""language"": ""DE"", ""currency"": ""MXN""}",52.02,Silver,0 +3189,Miguel Jones,michael93@hotmail.com,2021-07-13,"{""language"": ""DE"", ""currency"": ""MXN""}",1580.97,Bronze,1 +3190,Christopher Wright,brendascott@gmail.com,2020-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",3619.17,Gold,0 +3191,Kelly Shaw,paulbaker@hotmail.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""CAD""}",1714.82,Bronze,0 +3192,Autumn Martin,emilyfranklin@yahoo.com,2023-07-04,"{""language"": ""IT"", ""currency"": ""USD""}",8086.31,Gold,1 +3193,Emily Cameron,carrillojessica@roberson.com,2023-09-15,"{""language"": ""DE"", ""currency"": ""CAD""}",5458.07,Bronze,1 +3194,Jerry Hawkins,lcook@yahoo.com,2021-12-21,"{""language"": ""EN"", ""currency"": ""GBP""}",7165.23,Bronze,1 +3195,Jesse Mcclure,hilldylan@gmail.com,2019-12-14,"{""language"": ""EN"", ""currency"": ""EUR""}",4316.73,Bronze,1 +3196,Carolyn Harris,sally16@mckenzie-kelly.com,2023-01-23,"{""language"": ""EN"", ""currency"": ""MXN""}",3273.52,Bronze,0 +3197,Debbie Martinez,shunt@sanders.com,2024-07-01,"{""language"": ""EN"", ""currency"": ""USD""}",9372.82,Bronze,1 +3198,Laura Simpson,martindevin@gmail.com,2023-07-25,"{""language"": ""DE"", ""currency"": ""GBP""}",6676.11,Bronze,0 +3199,Nancy White,rhudson@gmail.com,2022-11-22,"{""language"": ""DE"", ""currency"": ""GBP""}",1250.55,Gold,0 +3200,Todd Johnston,angela84@martin.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""GBP""}",2419.45,Bronze,0 +3201,Michael Thomas,michaelthompson@salinas.biz,2022-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",207.19,Gold,0 +3202,Monica Adams,nielsenchristopher@phillips-jones.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""USD""}",7891.63,Silver,0 +3203,Crystal Adkins,kentlori@kelly.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""CAD""}",9992.04,Bronze,1 +3204,Alexis Smith,kimberly06@hart.biz,2020-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",5209.31,Bronze,1 +3205,Heather Powell,timothymatthews@yahoo.com,2022-07-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4318.55,Bronze,1 +3206,Michelle Shepherd,whitneyjones@hotmail.com,2022-07-30,"{""language"": ""EN"", ""currency"": ""USD""}",2276.34,Silver,0 +3207,Brian Tran,paul21@wood.com,2024-07-02,"{""language"": ""IT"", ""currency"": ""MXN""}",5075.26,Gold,1 +3208,Brandon Howard,julie15@hotmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",2417.77,Bronze,1 +3209,Chad Tucker,fjohnson@osborne.info,2020-04-24,"{""language"": ""EN"", ""currency"": ""USD""}",1781.24,Silver,1 +3210,Michael Koch,vwheeler@raymond.com,2023-08-05,"{""language"": ""EN"", ""currency"": ""CAD""}",6998.25,Gold,1 +3211,Lisa Bridges,floresjessica@cuevas.org,2022-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",800.1,Silver,1 +3212,Jordan Fleming,savannahross@turner.biz,2022-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",2361.59,Gold,0 +3213,Megan Mitchell,karen18@gmail.com,2021-03-05,"{""language"": ""ES"", ""currency"": ""USD""}",2585.46,Bronze,0 +3214,Daniel Cooper,cochrandiane@gmail.com,2020-04-28,"{""language"": ""EN"", ""currency"": ""USD""}",2948.67,Bronze,1 +3215,Andrew Berry,patricia95@gmail.com,2024-06-17,"{""language"": ""FR"", ""currency"": ""CAD""}",6417.23,Silver,1 +3216,Michael Nichols,scottanderson@griffith-pollard.org,2024-11-19,"{""language"": ""DE"", ""currency"": ""MXN""}",2229.7,Bronze,0 +3217,Janet Payne,woodshawn@jones-ball.com,2021-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",2607.47,Bronze,0 +3218,Eric Pierce,michael75@yahoo.com,2022-04-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5427.41,Bronze,1 +3219,Thomas Banks,mackenzie86@sexton-franco.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""USD""}",8790.2,Bronze,0 +3220,Gabrielle Sweeney,brian46@cortez-curry.com,2022-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",9266.75,Bronze,1 +3221,Adam Hicks,omora@gmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""EUR""}",8996.94,Silver,0 +3222,Katie Sharp,frank61@hotmail.com,2022-12-23,"{""language"": ""DE"", ""currency"": ""USD""}",8199.85,Gold,0 +3223,Elizabeth Jones,nbrooks@gmail.com,2022-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3133.25,Bronze,1 +3224,Samantha Rivera,rgarcia@hotmail.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5595.79,Silver,0 +3225,Danielle Mckay,willie97@hotmail.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7199.89,Silver,0 +3226,Timothy Arroyo,valenzuelascott@yahoo.com,2020-08-30,"{""language"": ""FR"", ""currency"": ""USD""}",1024.58,Silver,1 +3227,Kurt Duke,hensleyderek@hotmail.com,2020-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8905.46,Bronze,0 +3228,Eric Stone,brittany11@robbins-kelly.info,2021-08-27,"{""language"": ""EN"", ""currency"": ""MXN""}",3065.67,Silver,0 +3229,Mrs. Kathleen Phillips MD,vwatts@yahoo.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""EUR""}",2016.89,Silver,0 +3230,Jeffrey English,gwendolynferguson@brown.com,2023-04-14,"{""language"": ""EN"", ""currency"": ""MXN""}",7990.0,Bronze,0 +3231,Gordon Snyder,stephen06@guerrero-brown.com,2024-01-11,"{""language"": ""EN"", ""currency"": ""CAD""}",8622.2,Gold,1 +3232,Candace Smith,wallacechristian@hotmail.com,2023-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",4955.81,Bronze,1 +3233,Gregg Carter,katherine11@hotmail.com,2022-08-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6118.2,Silver,0 +3234,Cody Watts,steven94@yahoo.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""GBP""}",7415.47,Bronze,0 +3235,Jean Pierce,vramos@gmail.com,2023-06-09,"{""language"": ""IT"", ""currency"": ""EUR""}",6830.86,Bronze,0 +3236,Nicholas Christensen,uconner@yahoo.com,2024-04-10,"{""language"": ""FR"", ""currency"": ""EUR""}",2331.9,Bronze,0 +3237,Leon Miller,cheryl67@gmail.com,2022-08-28,"{""language"": ""DE"", ""currency"": ""EUR""}",3509.93,Gold,1 +3238,Michelle Simpson,lindahartman@jones.biz,2023-03-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9756.03,Silver,0 +3239,Carla Poole,williamthompson@bush.info,2020-08-09,"{""language"": ""ES"", ""currency"": ""USD""}",9345.06,Gold,0 +3240,Maria Miller,qwalker@lam.com,2020-12-07,"{""language"": ""DE"", ""currency"": ""MXN""}",1776.73,Bronze,1 +3241,Steven Peterson,brandontaylor@perez.com,2021-07-08,"{""language"": ""DE"", ""currency"": ""EUR""}",5459.3,Gold,1 +3242,Johnny Brown,graydavid@gmail.com,2020-05-24,"{""language"": ""FR"", ""currency"": ""USD""}",4373.21,Bronze,1 +3243,Pam Woods,rickrobertson@gmail.com,2024-07-08,"{""language"": ""EN"", ""currency"": ""CAD""}",7857.99,Silver,1 +3244,Joseph Leonard,michaelcook@barnes-davies.com,2024-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",7836.25,Silver,1 +3245,Sharon Harris,victoria73@harris-white.com,2024-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",5525.61,Gold,0 +3246,William Perry,patelmichelle@shaffer.com,2020-10-13,"{""language"": ""FR"", ""currency"": ""MXN""}",5821.47,Gold,1 +3247,Elizabeth Wallace,flemingstephanie@poole.com,2024-10-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6959.09,Silver,0 +3248,Nicholas Collins,kennedyjoel@johnson.com,2020-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",6669.71,Gold,0 +3249,Michael Jacobs,pricebrad@yahoo.com,2022-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",6541.74,Silver,0 +3250,Christopher Barnes,richarddominguez@yahoo.com,2020-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",607.73,Bronze,0 +3251,Yvonne Craig,xfields@hotmail.com,2022-02-13,"{""language"": ""EN"", ""currency"": ""EUR""}",8341.21,Gold,0 +3252,Kurt Payne,john34@gmail.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""CAD""}",8310.84,Bronze,0 +3253,Matthew Hoover,williamsselena@moss.info,2022-10-21,"{""language"": ""ES"", ""currency"": ""MXN""}",2562.08,Silver,1 +3254,Christopher Martinez,luis77@saunders-hale.com,2020-07-31,"{""language"": ""ES"", ""currency"": ""USD""}",8242.65,Silver,1 +3255,Emily Moore,brentguerrero@johnson-lawson.com,2020-06-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6787.85,Silver,0 +3256,Stephen Mercado,bobby80@yahoo.com,2019-12-19,"{""language"": ""DE"", ""currency"": ""USD""}",1914.61,Gold,1 +3257,Charles Hampton,donnamartin@phillips-cook.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5510.11,Silver,1 +3258,Madeline Serrano,juliemccall@yahoo.com,2022-04-18,"{""language"": ""IT"", ""currency"": ""CAD""}",4951.2,Gold,0 +3259,Morgan Gallegos,howardtaylor@hotmail.com,2024-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",4064.26,Gold,1 +3260,Maria Griffin,susan69@gmail.com,2023-11-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2776.27,Gold,1 +3261,Elizabeth Miles,waderebecca@yahoo.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""USD""}",5138.37,Bronze,0 +3262,Shannon Wiley,johnsondeborah@barajas.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""EUR""}",4563.19,Silver,0 +3263,Alexandra Long,joshua98@gmail.com,2021-02-05,"{""language"": ""ES"", ""currency"": ""USD""}",1429.59,Bronze,0 +3264,Alexandra Navarro,pattonjessica@hotmail.com,2020-05-21,"{""language"": ""IT"", ""currency"": ""USD""}",3126.77,Silver,1 +3265,Mary Garcia,johnjones@diaz.com,2021-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",4853.89,Gold,1 +3266,Kayla Rodriguez,lewiscrystal@yahoo.com,2021-11-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9823.74,Bronze,0 +3267,Mackenzie Vargas,julie42@hansen.org,2020-06-08,"{""language"": ""FR"", ""currency"": ""GBP""}",6720.64,Bronze,1 +3268,Deborah Doyle,garrett18@hotmail.com,2022-07-30,"{""language"": ""DE"", ""currency"": ""CAD""}",8104.5,Silver,1 +3269,Ashley Rollins,marybarton@gmail.com,2021-10-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2261.52,Silver,0 +3270,John Nguyen,greenbryan@hotmail.com,2024-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",6964.6,Silver,1 +3271,Mr. Mark Chapman,felliott@gmail.com,2024-11-22,"{""language"": ""FR"", ""currency"": ""USD""}",5307.71,Silver,0 +3272,Jeffrey Bates,holdersharon@taylor.info,2020-03-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1475.52,Gold,0 +3273,Steven Hernandez,jeffery40@jimenez.com,2023-11-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7988.77,Bronze,1 +3274,Erica Freeman,benitezmorgan@hotmail.com,2020-05-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8647.37,Bronze,0 +3275,Amber Frost,ehamilton@reyes.com,2022-07-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4023.33,Bronze,1 +3276,Alyssa Ramirez,michael25@hotmail.com,2020-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",6725.84,Bronze,1 +3277,James Scott,meganpadilla@charles-george.info,2024-04-14,"{""language"": ""IT"", ""currency"": ""USD""}",709.03,Gold,1 +3278,Erin Anderson,adamedwards@craig-townsend.biz,2024-08-17,"{""language"": ""DE"", ""currency"": ""CAD""}",2670.52,Silver,0 +3279,Dr. Craig Allison,phillipsmonica@hotmail.com,2023-11-22,"{""language"": ""FR"", ""currency"": ""EUR""}",9370.47,Gold,1 +3280,Luke Oliver,bellmichael@henderson-hampton.com,2023-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",5945.17,Gold,0 +3281,Nicholas Sutton,nicole50@delacruz-jackson.com,2024-10-31,"{""language"": ""IT"", ""currency"": ""MXN""}",3065.79,Silver,1 +3282,Donald Turner,parkheather@yahoo.com,2022-10-23,"{""language"": ""EN"", ""currency"": ""USD""}",780.36,Bronze,1 +3283,Candace Ward,ronnie26@yahoo.com,2020-01-28,"{""language"": ""IT"", ""currency"": ""CAD""}",7096.61,Bronze,1 +3284,Claudia Harrington,nicholas35@davis.com,2021-12-02,"{""language"": ""ES"", ""currency"": ""CAD""}",1793.71,Silver,1 +3285,Amy Williams,cliffordpetersen@adams-thomas.com,2020-07-25,"{""language"": ""EN"", ""currency"": ""EUR""}",9786.92,Bronze,1 +3286,Tommy Lopez,diana42@gray.org,2022-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",6940.76,Bronze,1 +3287,Michelle Moran,christopher40@chapman-white.com,2023-03-21,"{""language"": ""ES"", ""currency"": ""CAD""}",9905.41,Bronze,1 +3288,Frank Moore,arivera@hotmail.com,2023-09-17,"{""language"": ""DE"", ""currency"": ""GBP""}",3439.01,Gold,1 +3289,Jennifer Norris,charlene76@hotmail.com,2024-09-29,"{""language"": ""FR"", ""currency"": ""USD""}",2171.61,Silver,1 +3290,Martin Schultz,chadkim@gmail.com,2023-04-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1328.84,Gold,1 +3291,Elaine Hall,fkim@kelley-barnes.com,2021-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",418.94,Silver,0 +3292,Valerie Carr,davisgina@murphy.biz,2020-10-25,"{""language"": ""DE"", ""currency"": ""CAD""}",2358.63,Silver,1 +3293,Deborah Owens,barbaralucas@yahoo.com,2024-02-11,"{""language"": ""ES"", ""currency"": ""EUR""}",576.09,Silver,0 +3294,Kathleen Turner,ramirezkristy@wood-hunt.com,2023-10-04,"{""language"": ""DE"", ""currency"": ""USD""}",8116.33,Bronze,0 +3295,Sara Fleming,lopezcarol@hotmail.com,2020-02-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8722.49,Silver,1 +3296,Heather Burton,jacqueline94@gmail.com,2023-12-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3019.95,Bronze,0 +3297,Chad Miller,priceandrew@hotmail.com,2020-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",1295.12,Silver,1 +3298,Justin Lopez,theresacook@johnson.com,2022-06-05,"{""language"": ""FR"", ""currency"": ""MXN""}",1168.8,Gold,1 +3299,Michael Stout,dweber@russell-wilson.com,2022-12-07,"{""language"": ""EN"", ""currency"": ""MXN""}",3309.88,Gold,0 +3300,Justin Smith,laura63@hotmail.com,2024-08-11,"{""language"": ""EN"", ""currency"": ""USD""}",2258.8,Silver,1 +3301,Kenneth Mcneil,ualvarez@yahoo.com,2021-11-11,"{""language"": ""ES"", ""currency"": ""USD""}",6243.92,Silver,1 +3302,Sarah Brooks,rgraham@gmail.com,2022-01-13,"{""language"": ""IT"", ""currency"": ""USD""}",1511.4,Gold,1 +3303,Ms. Julie James,michaelnelson@yahoo.com,2023-12-14,"{""language"": ""EN"", ""currency"": ""MXN""}",804.99,Bronze,1 +3304,Anthony Noble,william53@yahoo.com,2023-04-30,"{""language"": ""EN"", ""currency"": ""USD""}",5559.45,Silver,1 +3305,Jennifer Terry,jchavez@gmail.com,2022-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",1238.62,Silver,1 +3306,John Flores,uhorn@yahoo.com,2024-09-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8876.59,Bronze,1 +3307,Ashley Stewart,ianbradley@hotmail.com,2024-08-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2514.27,Bronze,1 +3308,Brian Butler,ashley51@walker.info,2023-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4653.5,Bronze,0 +3309,Elizabeth Patterson,petersonjoel@cook.com,2020-03-29,"{""language"": ""ES"", ""currency"": ""USD""}",9623.34,Bronze,1 +3310,Benjamin Perez,matthew10@hotmail.com,2024-04-14,"{""language"": ""FR"", ""currency"": ""CAD""}",3136.09,Bronze,1 +3311,Stephanie King,brandonayers@morgan-phillips.info,2024-05-29,"{""language"": ""ES"", ""currency"": ""USD""}",6728.88,Silver,1 +3312,John Mason,stephenbyrd@fowler.com,2020-07-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7393.87,Gold,0 +3313,Stephen Maynard,barbarathompson@beck.com,2021-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2044.4,Silver,0 +3314,Rachael Knight,richardfoster@hotmail.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1069.19,Bronze,1 +3315,Dawn Erickson,djones@oneill-hill.com,2023-07-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1789.0,Gold,1 +3316,Harold Wright,jennifergonzales@yahoo.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",5281.3,Bronze,1 +3317,Crystal Salazar,perrychad@owens.com,2021-06-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7685.96,Silver,0 +3318,Julian Hill,veronicajimenez@yahoo.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",655.29,Gold,1 +3319,Dakota Cox,jessica19@hotmail.com,2023-01-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4092.33,Bronze,0 +3320,Jeremiah Cohen,zwalsh@gmail.com,2020-11-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7531.85,Gold,0 +3321,Miguel Lopez,roger41@wilson.org,2021-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6451.4,Silver,0 +3322,Linda Fitzgerald,oneillsarah@gmail.com,2020-02-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8106.77,Bronze,1 +3323,Dana Savage,steven24@yahoo.com,2021-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",7890.14,Gold,0 +3324,David Murphy,wayne86@hotmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""USD""}",2986.55,Silver,0 +3325,Katherine Salazar,suttonmatthew@reed.info,2023-08-10,"{""language"": ""EN"", ""currency"": ""GBP""}",3999.16,Bronze,1 +3326,Ebony Chavez,williamsbrandon@gmail.com,2020-10-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4838.54,Bronze,0 +3327,Denise Harrison,reginaroth@gmail.com,2023-02-26,"{""language"": ""DE"", ""currency"": ""GBP""}",3463.34,Bronze,1 +3328,Frederick Preston,rubiojack@roman.net,2021-10-11,"{""language"": ""IT"", ""currency"": ""USD""}",8196.08,Gold,1 +3329,Donna Ware,gbrown@henderson-smith.info,2023-10-27,"{""language"": ""IT"", ""currency"": ""MXN""}",8012.36,Bronze,0 +3330,Michael Johnson,velazquezstephanie@henderson.com,2022-12-31,"{""language"": ""ES"", ""currency"": ""EUR""}",5620.29,Gold,1 +3331,Matthew Burton MD,youngkyle@gmail.com,2024-03-27,"{""language"": ""DE"", ""currency"": ""CAD""}",5191.71,Gold,1 +3332,Alyssa Weaver,aliciagreen@yahoo.com,2021-08-02,"{""language"": ""FR"", ""currency"": ""USD""}",6161.93,Gold,0 +3333,Richard Porter,deanna19@hotmail.com,2021-12-30,"{""language"": ""IT"", ""currency"": ""MXN""}",9992.16,Bronze,0 +3334,Margaret Sharp,hhudson@yahoo.com,2022-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",6757.02,Gold,1 +3335,Tracie Gomez,tomduncan@yahoo.com,2023-08-25,"{""language"": ""IT"", ""currency"": ""EUR""}",2371.63,Bronze,1 +3336,Ann Carrillo MD,nathaniellloyd@richardson-stephenson.net,2024-04-04,"{""language"": ""ES"", ""currency"": ""EUR""}",1869.26,Gold,0 +3337,Carol Leon,hwilson@reyes-thomas.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""EUR""}",3730.25,Gold,0 +3338,Daniel Gray,katherinebyrd@shepherd.net,2020-09-15,"{""language"": ""ES"", ""currency"": ""GBP""}",8307.13,Gold,0 +3339,Christopher Garcia,aestrada@hotmail.com,2024-03-24,"{""language"": ""DE"", ""currency"": ""CAD""}",6271.27,Gold,0 +3340,Christopher Brown,browningmiguel@hotmail.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""USD""}",9073.71,Gold,0 +3341,Calvin Robertson,racheljackson@hotmail.com,2024-05-06,"{""language"": ""EN"", ""currency"": ""CAD""}",2066.92,Gold,0 +3342,Ryan Garrett,brian87@hotmail.com,2021-02-19,"{""language"": ""FR"", ""currency"": ""MXN""}",4139.94,Bronze,0 +3343,Christine Mckee,buckwilliam@yahoo.com,2022-03-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8804.93,Silver,1 +3344,Kimberly Turner,erikarios@newman-martinez.com,2021-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",4831.45,Bronze,0 +3345,Jennifer Roberts,tdavis@gmail.com,2021-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1188.72,Gold,0 +3346,Timothy Villanueva,cynthiacopeland@hudson.com,2024-11-08,"{""language"": ""EN"", ""currency"": ""MXN""}",5034.12,Bronze,0 +3347,Cynthia Sullivan,mcintoshdonald@gonzalez.info,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",6846.89,Bronze,1 +3348,Carolyn Lee,davisrichard@hotmail.com,2024-08-12,"{""language"": ""DE"", ""currency"": ""EUR""}",7419.4,Silver,1 +3349,Brian Sutton,cwright@morris.com,2021-06-28,"{""language"": ""DE"", ""currency"": ""CAD""}",2334.5,Gold,0 +3350,Mr. Jeremy Hunter,wcarrillo@hotmail.com,2020-03-25,"{""language"": ""IT"", ""currency"": ""EUR""}",7748.23,Silver,1 +3351,Lisa Ball,gluna@jackson.com,2022-11-01,"{""language"": ""ES"", ""currency"": ""USD""}",5766.61,Silver,1 +3352,Eric Boyer,bgomez@yahoo.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""GBP""}",9150.58,Bronze,0 +3353,Keith Palmer,heather88@gmail.com,2024-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",3236.67,Bronze,0 +3354,Sarah Green,myersjoshua@yahoo.com,2023-04-12,"{""language"": ""DE"", ""currency"": ""MXN""}",9542.48,Silver,1 +3355,Kurt Smith,lhamilton@hotmail.com,2020-02-25,"{""language"": ""EN"", ""currency"": ""USD""}",1689.13,Gold,0 +3356,Teresa Schneider,susan57@aguirre.biz,2023-08-09,"{""language"": ""IT"", ""currency"": ""USD""}",8784.46,Gold,1 +3357,Benjamin Sanchez,curtisbutler@walker.info,2020-12-31,"{""language"": ""EN"", ""currency"": ""MXN""}",7983.66,Gold,1 +3358,Sarah Rivera,kimberlyschmidt@gmail.com,2021-12-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2161.63,Bronze,1 +3359,Brittney Hart,jason71@smith.net,2023-05-23,"{""language"": ""ES"", ""currency"": ""USD""}",1412.68,Bronze,1 +3360,Wesley Rodriguez DDS,oortega@gallagher-peterson.com,2024-03-03,"{""language"": ""IT"", ""currency"": ""EUR""}",2099.12,Bronze,0 +3361,Sharon Richard,usmith@yahoo.com,2024-01-20,"{""language"": ""ES"", ""currency"": ""USD""}",3196.5,Gold,0 +3362,Joseph Hartman,hnunez@bowers.org,2022-01-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3968.82,Bronze,0 +3363,Thomas Nelson,mcgeejerry@garner.com,2022-08-14,"{""language"": ""ES"", ""currency"": ""USD""}",5851.4,Gold,1 +3364,Shelby Franklin,ajones@hotmail.com,2022-06-14,"{""language"": ""DE"", ""currency"": ""USD""}",1195.03,Bronze,0 +3365,Jonathan Fernandez,edavis@kaiser-jones.com,2020-10-22,"{""language"": ""IT"", ""currency"": ""MXN""}",3230.51,Bronze,0 +3366,Gary Deleon,epena@scott.biz,2020-01-01,"{""language"": ""EN"", ""currency"": ""MXN""}",4649.24,Silver,1 +3367,Shannon Perry,tsmith@anderson.com,2020-06-23,"{""language"": ""FR"", ""currency"": ""GBP""}",3119.55,Gold,0 +3368,Stacey Craig,aramirez@miranda.com,2024-03-14,"{""language"": ""IT"", ""currency"": ""GBP""}",7239.81,Silver,0 +3369,Cindy Brewer,kimberly04@montgomery.com,2022-02-19,"{""language"": ""ES"", ""currency"": ""CAD""}",9127.21,Silver,1 +3370,William Reeves,andrew00@gonzales.info,2022-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",5537.55,Bronze,1 +3371,Bobby Hahn,debbiekelly@frost.com,2021-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",784.11,Silver,1 +3372,Travis Robinson,sara91@gmail.com,2024-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",1590.39,Bronze,1 +3373,Lori Burke,raydanielle@collins-neal.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""CAD""}",5579.79,Silver,1 +3374,Jesse Leach,mariakelly@gmail.com,2022-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",5388.51,Gold,1 +3375,Sandra Hanna,janetroberts@brown.com,2021-01-29,"{""language"": ""DE"", ""currency"": ""CAD""}",6123.59,Bronze,0 +3376,Kimberly Sparks,jeremysanchez@johnson-harmon.com,2024-07-04,"{""language"": ""EN"", ""currency"": ""USD""}",4177.27,Gold,1 +3377,Mr. James Drake,bethlittle@mercado-nelson.com,2022-06-02,"{""language"": ""IT"", ""currency"": ""GBP""}",4163.46,Silver,1 +3378,David Suarez,colemanemily@mcdonald.com,2022-10-18,"{""language"": ""IT"", ""currency"": ""USD""}",5905.3,Gold,1 +3379,Charles Brown,lthompson@kelly-santana.com,2023-07-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9527.04,Gold,1 +3380,Kathryn Robertson,hdavis@hotmail.com,2020-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",9134.85,Bronze,0 +3381,William Jordan,samantharobinson@gmail.com,2023-08-29,"{""language"": ""EN"", ""currency"": ""USD""}",8229.96,Silver,0 +3382,Albert Jackson,blankenshipmatthew@gmail.com,2023-05-04,"{""language"": ""DE"", ""currency"": ""USD""}",3796.63,Silver,0 +3383,Roy Turner,gardnermichael@joseph.info,2023-12-17,"{""language"": ""FR"", ""currency"": ""USD""}",1042.15,Silver,0 +3384,Stephanie Hamilton,abigail20@hotmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",676.88,Silver,0 +3385,George Price,vanessa61@black-walsh.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",4842.74,Bronze,1 +3386,Jennifer Murphy,barmstrong@yahoo.com,2022-08-03,"{""language"": ""ES"", ""currency"": ""CAD""}",8025.5,Bronze,0 +3387,Logan Patterson,uwest@yahoo.com,2021-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",4015.57,Bronze,1 +3388,Kristin Black,myersmorgan@mclaughlin-fox.com,2021-06-30,"{""language"": ""EN"", ""currency"": ""CAD""}",6558.39,Bronze,1 +3389,Robert Johnson,garciaamanda@hester.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""EUR""}",9309.1,Bronze,0 +3390,Krystal Roberts,robertssteven@yahoo.com,2024-11-24,"{""language"": ""DE"", ""currency"": ""CAD""}",539.81,Bronze,0 +3391,Debra Crosby,sergio50@weiss.info,2020-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4282.9,Gold,0 +3392,Judy Daniel,amandadixon@hotmail.com,2021-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",5222.01,Silver,0 +3393,Brittany Martin,orobinson@lewis.com,2023-08-05,"{""language"": ""IT"", ""currency"": ""GBP""}",3805.32,Gold,1 +3394,Elizabeth Wilcox,kathleen84@russell-rasmussen.org,2023-04-14,"{""language"": ""FR"", ""currency"": ""CAD""}",6129.91,Silver,1 +3395,Carrie Chapman,obowen@humphrey.net,2021-06-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4910.97,Gold,1 +3396,Tyler Freeman,wowens@caldwell.net,2024-07-03,"{""language"": ""FR"", ""currency"": ""GBP""}",3684.9,Gold,0 +3397,Lisa Wolf,elizabeth49@robinson.com,2023-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",2561.1,Silver,1 +3398,Aaron Martin,ronald42@gmail.com,2020-03-31,"{""language"": ""IT"", ""currency"": ""EUR""}",4727.22,Silver,1 +3399,Victoria King,dianajoyce@hotmail.com,2023-08-19,"{""language"": ""ES"", ""currency"": ""GBP""}",376.58,Gold,1 +3400,Bryce Ramirez,rle@hotmail.com,2024-05-13,"{""language"": ""FR"", ""currency"": ""CAD""}",6481.14,Bronze,0 +3401,Kenneth Nunez,twilliams@higgins-lane.biz,2024-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",6877.25,Silver,0 +3402,Kimberly Howe,vobrien@rogers.com,2021-03-19,"{""language"": ""EN"", ""currency"": ""EUR""}",2511.34,Gold,0 +3403,Mark Brown,oguzman@davis.com,2024-09-06,"{""language"": ""ES"", ""currency"": ""USD""}",1956.26,Silver,1 +3404,David Griffin,karen55@hotmail.com,2020-05-15,"{""language"": ""IT"", ""currency"": ""USD""}",4918.16,Silver,0 +3405,Casey Flowers,devin85@bishop-lewis.info,2022-07-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4715.24,Gold,1 +3406,Scott Hoffman,stanleyangel@sims.com,2020-08-27,"{""language"": ""ES"", ""currency"": ""CAD""}",4965.86,Gold,1 +3407,Angelica Horton,karenrodriguez@hotmail.com,2021-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",4095.68,Bronze,1 +3408,Richard Dennis,john97@hunt.info,2023-12-30,"{""language"": ""ES"", ""currency"": ""USD""}",1303.56,Silver,1 +3409,Louis Johnston,blakedavid@hotmail.com,2023-02-06,"{""language"": ""ES"", ""currency"": ""USD""}",354.78,Silver,0 +3410,Roy Simon,kathleencortez@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""EUR""}",9871.67,Gold,0 +3411,Kristen Ross,devin85@yahoo.com,2020-09-16,"{""language"": ""IT"", ""currency"": ""USD""}",8875.14,Bronze,0 +3412,Ricky Livingston,orice@yahoo.com,2023-02-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5784.2,Silver,1 +3413,Ricky Long,handerson@adams-riley.com,2024-06-24,"{""language"": ""ES"", ""currency"": ""USD""}",3363.27,Bronze,1 +3414,Megan Sullivan,amyvaldez@yahoo.com,2023-02-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5691.74,Gold,1 +3415,Joel Wilson,johnsondonna@hotmail.com,2022-05-04,"{""language"": ""DE"", ""currency"": ""GBP""}",2440.65,Gold,1 +3416,Heather Morgan,aprilbird@yahoo.com,2023-04-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9336.96,Bronze,1 +3417,Elizabeth Fuentes,sara20@hotmail.com,2023-05-27,"{""language"": ""DE"", ""currency"": ""USD""}",3204.51,Silver,1 +3418,Joshua Campbell,kevinmacdonald@hotmail.com,2023-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2231.11,Silver,1 +3419,Renee Johnson,lunanatasha@may.com,2021-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",8215.8,Silver,0 +3420,Richard Woods,patrickswanson@hotmail.com,2020-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8336.8,Gold,1 +3421,Mr. Joshua Rodriguez PhD,ybarber@smith.com,2020-07-06,"{""language"": ""FR"", ""currency"": ""GBP""}",787.5,Bronze,1 +3422,Heidi Fox,salinasstephanie@yahoo.com,2024-04-27,"{""language"": ""FR"", ""currency"": ""EUR""}",9163.25,Bronze,0 +3423,Jessica Robertson,ashley76@dixon.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""MXN""}",9688.74,Silver,1 +3424,Kim Barnes,nherrera@yahoo.com,2021-07-27,"{""language"": ""ES"", ""currency"": ""CAD""}",5775.42,Silver,1 +3425,John Johnson,juan85@yahoo.com,2021-09-06,"{""language"": ""IT"", ""currency"": ""GBP""}",7130.98,Silver,0 +3426,Justin Contreras,amandaruiz@chambers-bowman.net,2023-07-20,"{""language"": ""FR"", ""currency"": ""MXN""}",4901.46,Bronze,0 +3427,John Perez,pamelafitzgerald@gonzalez-cox.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",4891.83,Bronze,0 +3428,Kelly Lawrence MD,coxsherry@gmail.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""EUR""}",2890.77,Silver,0 +3429,Zachary Guerrero,jacquelinebrown@jefferson.com,2024-11-07,"{""language"": ""ES"", ""currency"": ""EUR""}",9483.5,Gold,1 +3430,Mark Hatfield,jenniferhaynes@benitez.com,2022-05-13,"{""language"": ""EN"", ""currency"": ""MXN""}",6210.99,Gold,0 +3431,Tiffany Peck DDS,zhangjames@yahoo.com,2023-12-15,"{""language"": ""ES"", ""currency"": ""USD""}",8737.42,Gold,1 +3432,Julie Meyer,carrie66@thompson.biz,2021-10-15,"{""language"": ""ES"", ""currency"": ""MXN""}",1379.56,Bronze,0 +3433,Michelle Johnson,williamsbrian@yahoo.com,2021-10-07,"{""language"": ""ES"", ""currency"": ""CAD""}",814.26,Silver,0 +3434,Deborah English,dillonjames@drake.com,2020-10-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9388.66,Gold,1 +3435,James Dean,robinsonmichael@harris.com,2020-10-03,"{""language"": ""ES"", ""currency"": ""MXN""}",53.13,Gold,0 +3436,Maria Barrett,jennifer10@brennan.com,2020-06-27,"{""language"": ""DE"", ""currency"": ""EUR""}",1174.12,Gold,0 +3437,Kimberly Johnson,davidthomas@yahoo.com,2020-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4086.7,Silver,1 +3438,Dawn Myers,roachcassandra@gray.net,2020-09-05,"{""language"": ""DE"", ""currency"": ""GBP""}",3083.73,Silver,0 +3439,Gregory Duffy,torresangie@gmail.com,2023-12-06,"{""language"": ""EN"", ""currency"": ""EUR""}",3572.71,Bronze,0 +3440,Dawn Stewart,blane@stewart.com,2022-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",9310.16,Silver,1 +3441,Lauren Griffin,bthompson@gmail.com,2020-04-22,"{""language"": ""DE"", ""currency"": ""GBP""}",446.28,Bronze,1 +3442,Heather Mccarthy,etorres@yahoo.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9093.51,Bronze,1 +3443,Jonathan Tucker,perryjessica@hotmail.com,2022-05-04,"{""language"": ""FR"", ""currency"": ""MXN""}",4412.68,Bronze,0 +3444,Jason Lambert,daniel52@burnett.net,2023-02-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5637.05,Bronze,1 +3445,Robert Crawford,tinalynn@gmail.com,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",8815.32,Bronze,1 +3446,Shari Lee,dominic06@alvarado-page.org,2021-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",939.43,Bronze,0 +3447,Timothy Mercado,jmcguire@gmail.com,2020-03-02,"{""language"": ""FR"", ""currency"": ""EUR""}",3353.77,Bronze,0 +3448,Cynthia Miller,barbarajoyce@hotmail.com,2023-12-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4035.65,Silver,0 +3449,William Jarvis,peter61@finley.biz,2021-01-18,"{""language"": ""IT"", ""currency"": ""GBP""}",1925.59,Silver,0 +3450,Travis Bailey,martinezstephen@hernandez-jacobson.biz,2022-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",1581.23,Gold,1 +3451,Mr. Dale Morales Jr.,bowersderek@mccarthy.net,2020-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",3927.45,Silver,0 +3452,Amanda Brewer,burgessangela@hotmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""MXN""}",8533.36,Gold,0 +3453,Lisa Butler,wrightveronica@hotmail.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",7148.87,Bronze,1 +3454,Michael Richards,walterhancock@johnson.org,2024-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",5548.73,Silver,1 +3455,Laura Hernandez,danielhatfield@sanchez-kaiser.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",5256.58,Silver,0 +3456,Sarah Green,kfowler@gmail.com,2023-10-20,"{""language"": ""ES"", ""currency"": ""USD""}",680.2,Silver,0 +3457,Christina Smith,cummingsjoseph@carroll.info,2021-01-17,"{""language"": ""EN"", ""currency"": ""CAD""}",2320.14,Bronze,1 +3458,Stephen Jones,campbellchristina@cooley.com,2019-12-20,"{""language"": ""DE"", ""currency"": ""MXN""}",2060.11,Bronze,1 +3459,Laura Cameron,jasonclark@hotmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9727.86,Silver,1 +3460,Natasha Peterson,mackenziefreeman@yahoo.com,2023-04-18,"{""language"": ""FR"", ""currency"": ""CAD""}",4160.53,Gold,1 +3461,Tiffany King,bateslynn@phillips.com,2020-12-08,"{""language"": ""FR"", ""currency"": ""CAD""}",8159.73,Silver,1 +3462,Blake Marquez,jacksonangela@robinson-baker.com,2023-08-17,"{""language"": ""FR"", ""currency"": ""EUR""}",9943.58,Gold,0 +3463,Todd Mccormick,larsensierra@valentine.org,2022-04-15,"{""language"": ""EN"", ""currency"": ""CAD""}",9506.62,Bronze,0 +3464,John Miller,kayla88@jones.com,2021-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",7879.88,Bronze,0 +3465,Lauren Long,nicolevega@gonzalez.com,2019-12-13,"{""language"": ""FR"", ""currency"": ""GBP""}",2941.98,Gold,0 +3466,Heather Watkins,michael64@gallagher.com,2024-04-05,"{""language"": ""EN"", ""currency"": ""GBP""}",4373.39,Gold,0 +3467,Barbara Hunt,khughes@mercado.info,2024-11-08,"{""language"": ""DE"", ""currency"": ""EUR""}",3497.83,Gold,1 +3468,Mark Hart,craigglass@gmail.com,2024-09-24,"{""language"": ""DE"", ""currency"": ""MXN""}",2518.57,Gold,0 +3469,Jennifer Johnson DDS,qlee@gmail.com,2020-07-02,"{""language"": ""EN"", ""currency"": ""GBP""}",414.96,Gold,0 +3470,Joshua Gonzalez,frankanthony@yahoo.com,2021-09-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9083.13,Gold,1 +3471,Amanda Hicks,ysimmons@rice.com,2024-05-07,"{""language"": ""ES"", ""currency"": ""EUR""}",6793.74,Silver,1 +3472,Suzanne Sanders,lisataylor@reed.com,2021-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",674.29,Bronze,1 +3473,Kyle White,william65@yahoo.com,2022-11-11,"{""language"": ""EN"", ""currency"": ""USD""}",3690.89,Silver,0 +3474,Lisa Gonzales,ginaskinner@barber.org,2020-05-26,"{""language"": ""ES"", ""currency"": ""GBP""}",4756.89,Bronze,0 +3475,Derek Lee,vmartin@woods-mclean.com,2024-05-08,"{""language"": ""DE"", ""currency"": ""CAD""}",1139.98,Silver,1 +3476,Alexandra Lopez,bartlettchris@gmail.com,2020-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",1590.46,Silver,1 +3477,Connie Hawkins,desireelopez@cruz-nelson.com,2023-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",4445.97,Gold,0 +3478,Nicolas Mcconnell,gordoncarl@gmail.com,2022-07-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5372.51,Gold,0 +3479,Jeremy Hicks,rstone@edwards.com,2021-01-28,"{""language"": ""ES"", ""currency"": ""MXN""}",6792.31,Gold,0 +3480,Joshua Hensley Jr.,ericjackson@hotmail.com,2021-12-06,"{""language"": ""IT"", ""currency"": ""USD""}",1196.73,Silver,1 +3481,Mr. David Pugh,nramos@espinoza.org,2024-07-28,"{""language"": ""EN"", ""currency"": ""GBP""}",7731.23,Gold,0 +3482,Mary Mendez,dunlapjoseph@hotmail.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9597.5,Bronze,0 +3483,Daniel Jackson,parkerashley@gmail.com,2024-01-22,"{""language"": ""EN"", ""currency"": ""CAD""}",225.33,Gold,1 +3484,John Ferguson,sarahclark@thompson-frost.org,2020-01-12,"{""language"": ""DE"", ""currency"": ""EUR""}",203.79,Silver,1 +3485,Robert Patterson,patriciareyes@yahoo.com,2023-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",6591.63,Silver,1 +3486,Zachary Sims,david97@yahoo.com,2024-06-16,"{""language"": ""DE"", ""currency"": ""USD""}",7773.02,Bronze,0 +3487,Ashley Hicks,bonniehess@fletcher.biz,2020-10-06,"{""language"": ""IT"", ""currency"": ""CAD""}",7639.83,Bronze,0 +3488,Richard Terry,jboone@gmail.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""MXN""}",2893.75,Gold,0 +3489,Allison Hill,levans@fitzpatrick.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""USD""}",9912.08,Bronze,0 +3490,Jasmine Wilcox,twilliams@andrews.biz,2022-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9203.05,Gold,0 +3491,Logan Thomas,fwu@howard-miller.com,2020-06-10,"{""language"": ""FR"", ""currency"": ""GBP""}",8486.44,Silver,1 +3492,Matthew Gonzalez,joshuapeters@gmail.com,2022-07-30,"{""language"": ""ES"", ""currency"": ""CAD""}",4593.16,Gold,0 +3493,Kimberly Gentry,ygeorge@gmail.com,2020-05-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5784.16,Bronze,1 +3494,Victoria Jones,ericfranklin@yahoo.com,2021-01-24,"{""language"": ""IT"", ""currency"": ""USD""}",85.44,Gold,0 +3495,Connor Michael,martinezmichele@yahoo.com,2021-01-10,"{""language"": ""FR"", ""currency"": ""USD""}",8624.91,Silver,0 +3496,Danielle Davis,dwayne30@hanson-davidson.com,2023-02-18,"{""language"": ""DE"", ""currency"": ""USD""}",7971.52,Silver,0 +3497,Jonathan Clark,cohencurtis@hutchinson-henry.com,2021-04-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4313.16,Silver,0 +3498,Stephanie Mendoza,robert27@yahoo.com,2020-09-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3990.96,Silver,1 +3499,Christopher Espinoza,roseholloway@hotmail.com,2023-10-04,"{""language"": ""IT"", ""currency"": ""MXN""}",4692.0,Silver,1 +3500,Tracy Rodriguez,nancymaxwell@hotmail.com,2022-01-30,"{""language"": ""IT"", ""currency"": ""USD""}",8811.65,Gold,0 +3501,Aaron Howell,watsonsydney@gmail.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""USD""}",4836.25,Gold,0 +3502,Duane Foster,howardlisa@hamilton.com,2021-11-06,"{""language"": ""EN"", ""currency"": ""CAD""}",5530.6,Silver,1 +3503,Kelly Malone,phanna@james.com,2021-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6035.2,Bronze,1 +3504,Kyle Jackson,hcase@hotmail.com,2022-05-12,"{""language"": ""EN"", ""currency"": ""CAD""}",916.03,Gold,0 +3505,Gerald Roth,smithkaren@hotmail.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7198.73,Gold,1 +3506,Tyler Wong,richardyu@yu-miller.org,2022-08-22,"{""language"": ""DE"", ""currency"": ""GBP""}",5420.78,Silver,0 +3507,Johnathan Murray,brownjasmin@gutierrez.net,2020-03-01,"{""language"": ""DE"", ""currency"": ""USD""}",8493.22,Bronze,1 +3508,Rhonda Burke,kristi19@padilla.com,2021-12-18,"{""language"": ""EN"", ""currency"": ""EUR""}",2187.78,Silver,0 +3509,Matthew Park,johnsondakota@hotmail.com,2020-10-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7855.24,Silver,1 +3510,Paul Walker,edwindavis@patterson.com,2024-05-21,"{""language"": ""EN"", ""currency"": ""GBP""}",75.59,Silver,1 +3511,Catherine Hatfield,brentrubio@jackson.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""MXN""}",8038.81,Bronze,0 +3512,Amy Patterson,martinjonathan@hotmail.com,2023-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",861.41,Bronze,0 +3513,Mark Alvarez,hmiller@gmail.com,2024-12-05,"{""language"": ""DE"", ""currency"": ""USD""}",2945.46,Gold,1 +3514,Ricky Scott,michellecollins@gmail.com,2024-06-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5583.78,Bronze,0 +3515,Terry Stewart,johnblair@garcia-johnson.com,2023-09-13,"{""language"": ""DE"", ""currency"": ""EUR""}",3154.85,Gold,0 +3516,Taylor Barajas,michaelburke@ponce.com,2021-06-10,"{""language"": ""ES"", ""currency"": ""USD""}",9429.39,Gold,0 +3517,Jack Morris,tiffanyleonard@hotmail.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""MXN""}",6497.07,Gold,1 +3518,Yvette Turner,scottchen@yahoo.com,2024-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",4731.23,Silver,0 +3519,Debra Rios,christophergonzalez@hotmail.com,2022-11-22,"{""language"": ""DE"", ""currency"": ""USD""}",2140.48,Silver,0 +3520,Jessica Leonard,paige18@pacheco.com,2024-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",3770.07,Gold,1 +3521,Christopher Black,sthomas@luna-joseph.com,2020-08-06,"{""language"": ""IT"", ""currency"": ""USD""}",9181.63,Bronze,0 +3522,Melinda Clark,carolyn68@le.com,2021-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",9148.73,Gold,0 +3523,David Kent,carla84@sandoval.com,2023-03-13,"{""language"": ""IT"", ""currency"": ""EUR""}",4715.31,Silver,1 +3524,William Fisher,justinthomas@hotmail.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""MXN""}",9737.56,Bronze,0 +3525,Jason Bailey,jennifermartin@yahoo.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""GBP""}",4067.67,Gold,0 +3526,Amy Ward,rowejill@hotmail.com,2021-02-17,"{""language"": ""EN"", ""currency"": ""EUR""}",9606.72,Gold,1 +3527,Lydia Brown,qlawson@yahoo.com,2021-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",8700.05,Bronze,0 +3528,Dawn Robbins,judith21@hotmail.com,2024-05-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4689.6,Bronze,0 +3529,Stacey Rogers,goldenbradley@gmail.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2373.46,Silver,1 +3530,Susan Watkins,kathleenwilson@hotmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",4198.63,Bronze,0 +3531,Brittney Jones,conwayjuan@king.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",3022.75,Silver,0 +3532,Ryan Hernandez,richardlee@gmail.com,2022-09-05,"{""language"": ""IT"", ""currency"": ""USD""}",5542.99,Gold,0 +3533,Derek Jackson,hartnancy@velez-saunders.com,2022-11-25,"{""language"": ""DE"", ""currency"": ""EUR""}",3554.5,Silver,0 +3534,Mercedes Graham,brandonjackson@hall.biz,2021-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",3362.01,Bronze,0 +3535,Lisa Miller,ytyler@howell.com,2021-04-03,"{""language"": ""IT"", ""currency"": ""MXN""}",8094.19,Bronze,0 +3536,Brian Jones,bmacias@jordan.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4242.11,Bronze,1 +3537,Timothy Moore,amanda19@gmail.com,2020-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",362.21,Gold,1 +3538,Catherine Carr,ksmith@gmail.com,2023-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",6524.1,Bronze,0 +3539,Mark Tyler,clarence63@forbes.com,2021-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8284.68,Bronze,1 +3540,Dana Smith,qadkins@hodge-ortiz.com,2023-11-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8888.28,Silver,1 +3541,Wendy Barnes,glee@lewis.info,2022-12-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4871.11,Gold,0 +3542,Timothy Reynolds,lydia67@warren.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",5674.15,Silver,0 +3543,Angela Cruz,awalker@castro-casey.com,2023-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",1078.46,Gold,0 +3544,Beth Walls,xgarcia@hotmail.com,2021-12-16,"{""language"": ""IT"", ""currency"": ""EUR""}",4620.59,Silver,1 +3545,Stephanie Hendrix,kochrobert@gmail.com,2020-12-28,"{""language"": ""IT"", ""currency"": ""CAD""}",3949.98,Gold,0 +3546,Deborah Martinez,lisa74@hotmail.com,2022-11-26,"{""language"": ""IT"", ""currency"": ""CAD""}",3257.26,Gold,0 +3547,Brandon Miller,ctaylor@barrera-poole.biz,2019-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",6430.71,Bronze,0 +3548,Margaret Vaughn,cwoods@gmail.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5411.79,Gold,1 +3549,Karen Shaw,ashleyholmes@yahoo.com,2020-02-20,"{""language"": ""IT"", ""currency"": ""CAD""}",9879.51,Gold,1 +3550,Laura Hall,samanthawallace@yahoo.com,2020-09-14,"{""language"": ""EN"", ""currency"": ""CAD""}",7514.47,Silver,1 +3551,Taylor Roberts,david78@hicks.com,2020-05-27,"{""language"": ""IT"", ""currency"": ""CAD""}",3732.1,Bronze,1 +3552,Seth Gonzalez,hannah00@zimmerman-cox.com,2020-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",127.9,Bronze,0 +3553,Guy Ellis,matthewwilliams@smith.com,2021-05-02,"{""language"": ""EN"", ""currency"": ""CAD""}",362.55,Gold,1 +3554,Kathryn Davidson,cassandra24@murphy-fleming.com,2020-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",247.58,Silver,0 +3555,Michael Murray,aaronrose@yahoo.com,2023-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",7455.2,Gold,0 +3556,Christopher Lutz,revans@jones.biz,2024-07-17,"{""language"": ""FR"", ""currency"": ""USD""}",8930.12,Silver,1 +3557,Tracy Manning,tcarney@brown.net,2022-02-12,"{""language"": ""IT"", ""currency"": ""EUR""}",3380.42,Gold,0 +3558,Angela Taylor,plopez@guerrero-chaney.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""GBP""}",8400.52,Bronze,1 +3559,Sara Hill,doriswilson@ward.net,2021-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",3742.42,Bronze,0 +3560,Louis Edwards,janiceshaw@mitchell.com,2022-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",3791.27,Gold,1 +3561,Michael Bennett,forbesamy@gmail.com,2024-01-22,"{""language"": ""IT"", ""currency"": ""MXN""}",3734.11,Silver,1 +3562,Crystal Fernandez,robert20@gmail.com,2020-04-15,"{""language"": ""DE"", ""currency"": ""CAD""}",3630.43,Gold,1 +3563,Darlene Hobbs MD,donald49@perez.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",7404.62,Silver,1 +3564,Suzanne Williams,bthomas@hotmail.com,2020-02-20,"{""language"": ""FR"", ""currency"": ""MXN""}",3717.23,Bronze,1 +3565,Christopher Weber,autumnmiller@gmail.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7581.04,Bronze,1 +3566,Matthew Lara,bpena@hotmail.com,2023-11-18,"{""language"": ""EN"", ""currency"": ""EUR""}",1670.9,Gold,0 +3567,Joseph Santos,michael40@yahoo.com,2019-12-31,"{""language"": ""FR"", ""currency"": ""MXN""}",7612.56,Bronze,0 +3568,Christopher Mann,triciaesparza@jenkins-harrison.com,2022-10-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6634.57,Gold,0 +3569,Blake Barker,sharonmann@yahoo.com,2023-05-19,"{""language"": ""DE"", ""currency"": ""USD""}",360.61,Gold,1 +3570,Jamie Davis,sandra22@saunders.com,2022-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9452.36,Silver,0 +3571,Jeffery Robinson,eatonglenn@hotmail.com,2023-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",4201.53,Silver,0 +3572,Dr. Linda Bird,wflowers@hotmail.com,2021-03-19,"{""language"": ""ES"", ""currency"": ""USD""}",2035.62,Bronze,1 +3573,Betty Chen,jgibson@hotmail.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""GBP""}",1334.75,Gold,1 +3574,Jay Davis,nancymoore@gmail.com,2023-12-31,"{""language"": ""EN"", ""currency"": ""GBP""}",3413.88,Gold,0 +3575,Brian Levy,galvanmark@yahoo.com,2023-03-09,"{""language"": ""FR"", ""currency"": ""GBP""}",8016.76,Bronze,1 +3576,Todd Horton,dawn90@farley.com,2021-03-12,"{""language"": ""FR"", ""currency"": ""GBP""}",9781.88,Gold,1 +3577,Ernest Perez,kennethgoodman@gmail.com,2021-06-27,"{""language"": ""ES"", ""currency"": ""MXN""}",2233.74,Gold,1 +3578,Kevin Friedman,markmcintyre@wright-evans.com,2020-02-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8626.38,Silver,1 +3579,Melissa Hernandez,ujacobs@keith.info,2022-08-29,"{""language"": ""ES"", ""currency"": ""GBP""}",7185.61,Silver,1 +3580,Robert Lamb,mbishop@mcdaniel.com,2023-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",1894.7,Silver,1 +3581,Larry Gonzales,kristina83@yahoo.com,2020-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5449.86,Silver,0 +3582,Dean Warren,lmyers@hotmail.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3028.68,Bronze,0 +3583,Leon Kramer,jacquelinejimenez@hotmail.com,2024-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",9178.46,Silver,1 +3584,Christopher Carpenter,meganrobinson@yahoo.com,2023-12-07,"{""language"": ""EN"", ""currency"": ""GBP""}",572.9,Bronze,1 +3585,Kendra Campos,brandonchandler@watson.info,2024-07-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8232.89,Bronze,1 +3586,Angela Mayer,wlopez@hoover.info,2022-12-18,"{""language"": ""DE"", ""currency"": ""USD""}",8636.1,Bronze,0 +3587,Julia Wilson,rosekim@yahoo.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""CAD""}",8529.89,Bronze,1 +3588,Eric Rodriguez,johnyoung@yahoo.com,2024-01-21,"{""language"": ""FR"", ""currency"": ""USD""}",133.06,Silver,1 +3589,Noah Jensen,amymeyers@lowe.com,2024-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",2428.05,Bronze,0 +3590,Dr. Rachel Cummings,valentineryan@wilson.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4686.81,Bronze,1 +3591,David Williams,bsilva@yahoo.com,2023-09-28,"{""language"": ""DE"", ""currency"": ""EUR""}",8266.64,Gold,1 +3592,Jonathan Brady MD,bowmanjulie@yahoo.com,2024-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",9345.7,Silver,0 +3593,Whitney Young,robert74@mullins-lee.com,2024-04-01,"{""language"": ""ES"", ""currency"": ""MXN""}",8452.57,Silver,1 +3594,Jason Oconnell,crystalforbes@hotmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9566.06,Bronze,0 +3595,Lindsey Herman,otrujillo@hotmail.com,2024-07-09,"{""language"": ""DE"", ""currency"": ""CAD""}",5374.98,Gold,0 +3596,Cynthia Moore,hayesthomas@harris-fletcher.biz,2020-02-03,"{""language"": ""ES"", ""currency"": ""MXN""}",8174.74,Gold,0 +3597,Bryan Mitchell,keith74@weaver.com,2024-11-02,"{""language"": ""IT"", ""currency"": ""CAD""}",7544.46,Bronze,0 +3598,Martin Figueroa,ggrant@foster.com,2023-03-04,"{""language"": ""DE"", ""currency"": ""CAD""}",3006.94,Gold,1 +3599,Paula Cox,daniel09@montes-lopez.com,2024-03-17,"{""language"": ""DE"", ""currency"": ""CAD""}",1872.44,Bronze,0 +3600,Philip Ward,victoria65@hotmail.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""EUR""}",2264.77,Gold,0 +3601,Brian Webster PhD,sfrank@hughes.net,2023-02-18,"{""language"": ""FR"", ""currency"": ""CAD""}",6901.49,Gold,0 +3602,Brandon Little,krodriguez@yahoo.com,2021-08-05,"{""language"": ""ES"", ""currency"": ""CAD""}",706.91,Bronze,1 +3603,Rebecca Anderson,uhouston@yahoo.com,2024-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",9723.38,Bronze,1 +3604,Andrew Cross,jwilliamson@hotmail.com,2020-04-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7302.69,Silver,0 +3605,Mike Watson,pamela92@yahoo.com,2023-02-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4652.82,Gold,0 +3606,Tracy Morrison MD,smithkim@stevenson.com,2022-07-22,"{""language"": ""ES"", ""currency"": ""GBP""}",1171.33,Silver,1 +3607,Emily Davidson,mistyedwards@carney.com,2022-12-14,"{""language"": ""IT"", ""currency"": ""USD""}",6982.52,Bronze,0 +3608,Jacob Powell,richardhawkins@yahoo.com,2020-12-03,"{""language"": ""IT"", ""currency"": ""GBP""}",5480.83,Silver,1 +3609,Julie Parker,elopez@gmail.com,2020-11-03,"{""language"": ""ES"", ""currency"": ""USD""}",5749.53,Bronze,1 +3610,Aaron Brooks,oking@ward-thomas.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""MXN""}",107.56,Silver,1 +3611,Debra Franklin,matthew90@gould-cortez.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""USD""}",9461.77,Bronze,1 +3612,Tonya Martin,brian78@yahoo.com,2023-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",8754.44,Bronze,0 +3613,Chad Skinner,ralphmartinez@hotmail.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9825.9,Gold,0 +3614,Nicole Cunningham,amycrane@baker-mcdonald.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",6869.18,Bronze,1 +3615,Crystal Ellis,fredericksilva@allen-mccarty.net,2024-02-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9784.65,Bronze,1 +3616,John Fritz DDS,bhenderson@gmail.com,2021-06-03,"{""language"": ""EN"", ""currency"": ""GBP""}",4162.0,Gold,0 +3617,Melissa Anderson,zlawrence@lawrence.com,2024-01-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8464.24,Bronze,0 +3618,Juan Johnson,wmartinez@castillo.com,2024-01-07,"{""language"": ""ES"", ""currency"": ""MXN""}",9685.48,Gold,1 +3619,Kathleen Lucas,hughescrystal@thompson.com,2024-09-03,"{""language"": ""IT"", ""currency"": ""EUR""}",9040.72,Silver,0 +3620,Judy Ramirez,wcline@hanson.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4087.53,Gold,1 +3621,Dawn Deleon,gomezchristopher@oconnor.com,2021-01-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3929.49,Gold,1 +3622,Amy Atkinson,estesevelyn@sanchez.info,2020-02-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7146.99,Gold,0 +3623,Antonio Fletcher,johnriley@alexander-turner.biz,2024-01-29,"{""language"": ""EN"", ""currency"": ""MXN""}",6153.92,Gold,1 +3624,Sue Montgomery,joseph69@gmail.com,2024-03-14,"{""language"": ""DE"", ""currency"": ""EUR""}",4834.1,Bronze,1 +3625,Keith Mendoza,nicholas64@smith-sherman.net,2024-05-18,"{""language"": ""FR"", ""currency"": ""USD""}",7274.05,Bronze,1 +3626,Allison Jacobs,samantha37@mccall.com,2021-05-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9740.18,Silver,1 +3627,Lisa Henry,brenda02@hotmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""USD""}",6126.31,Gold,1 +3628,Lori Rodgers,taguilar@hotmail.com,2021-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7604.02,Bronze,0 +3629,David Mathews,adamunderwood@cohen.com,2022-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",7130.54,Gold,0 +3630,Shannon Weeks,ryanpope@hotmail.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",9102.04,Bronze,1 +3631,Samantha Roy,amandanelson@yahoo.com,2024-09-03,"{""language"": ""DE"", ""currency"": ""MXN""}",7092.04,Gold,0 +3632,Sonia Rangel,michellerobinson@parks-dixon.com,2023-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",4071.41,Silver,1 +3633,Michele Le,waynecross@hotmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",8980.3,Gold,0 +3634,Terri Allen,jamestorres@yahoo.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",5835.77,Silver,1 +3635,Cassie Black,webbbryan@anthony-miller.com,2021-02-28,"{""language"": ""ES"", ""currency"": ""GBP""}",5146.68,Gold,0 +3636,Jessica May,suzanne05@yahoo.com,2020-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",354.45,Gold,0 +3637,Elizabeth Wheeler,ohuang@leonard.com,2020-04-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6069.87,Silver,1 +3638,Tracy Pierce,kvelasquez@gomez.org,2021-05-18,"{""language"": ""ES"", ""currency"": ""MXN""}",4227.68,Bronze,1 +3639,Jon Cooke,ethan92@rose-smith.net,2021-11-22,"{""language"": ""ES"", ""currency"": ""MXN""}",9293.34,Silver,0 +3640,Trevor Rivera,stewartdavid@yahoo.com,2021-02-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1636.91,Silver,1 +3641,Jennifer Villarreal,stonesusan@lopez-kidd.biz,2021-12-25,"{""language"": ""FR"", ""currency"": ""EUR""}",9108.07,Gold,1 +3642,Samantha Ruiz,mary77@hotmail.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",9420.44,Gold,0 +3643,Kenneth Meyers,sandovaljames@levy.com,2020-01-30,"{""language"": ""DE"", ""currency"": ""USD""}",8741.58,Gold,1 +3644,Joel Choi,donaldmathews@adams-gilbert.net,2020-01-26,"{""language"": ""ES"", ""currency"": ""GBP""}",3516.43,Silver,1 +3645,Brianna Crawford,williamthomas@garrett.com,2021-08-31,"{""language"": ""FR"", ""currency"": ""CAD""}",2594.95,Silver,0 +3646,Scott Wilson,esparzaashley@english.org,2022-06-08,"{""language"": ""ES"", ""currency"": ""GBP""}",227.49,Silver,0 +3647,Laura Lowe,wdowns@gmail.com,2024-02-18,"{""language"": ""EN"", ""currency"": ""GBP""}",8142.8,Silver,1 +3648,Donna Henry,davidjones@hotmail.com,2022-01-14,"{""language"": ""ES"", ""currency"": ""GBP""}",4380.61,Gold,1 +3649,Bridget Nielsen,yhernandez@alexander.info,2023-04-01,"{""language"": ""FR"", ""currency"": ""GBP""}",7694.01,Silver,1 +3650,Shannon Marquez,amy06@hotmail.com,2020-08-24,"{""language"": ""ES"", ""currency"": ""CAD""}",8385.74,Silver,1 +3651,Timothy Curtis,jpena@graham.com,2022-03-04,"{""language"": ""DE"", ""currency"": ""USD""}",1634.64,Gold,0 +3652,Lonnie Serrano,kenneth68@gmail.com,2024-07-06,"{""language"": ""EN"", ""currency"": ""EUR""}",3944.22,Bronze,0 +3653,Ashley Powell,joshuayoung@wright.com,2021-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6584.77,Bronze,1 +3654,Sean Greene,bryanholder@yahoo.com,2021-10-02,"{""language"": ""DE"", ""currency"": ""GBP""}",8447.87,Bronze,1 +3655,Nancy Cooper,jonathan84@hotmail.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""USD""}",5038.11,Silver,0 +3656,Kayla Wood,xbrewer@schroeder.biz,2022-11-18,"{""language"": ""ES"", ""currency"": ""EUR""}",569.85,Gold,1 +3657,Jerry Johnson,nwoodard@gmail.com,2021-01-02,"{""language"": ""IT"", ""currency"": ""EUR""}",7571.92,Silver,1 +3658,Debra Miranda,fleach@daniels-gross.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""GBP""}",5236.31,Bronze,1 +3659,Clinton Herman,allison15@gmail.com,2020-04-22,"{""language"": ""EN"", ""currency"": ""EUR""}",6206.23,Silver,1 +3660,Dr. Billy Wiley,morgan24@gmail.com,2023-10-11,"{""language"": ""IT"", ""currency"": ""GBP""}",9510.51,Bronze,0 +3661,Brian Carter,yrosales@jones-lewis.net,2021-07-15,"{""language"": ""FR"", ""currency"": ""CAD""}",1354.14,Gold,1 +3662,Nathan Braun,robertlee@butler.com,2023-08-30,"{""language"": ""EN"", ""currency"": ""EUR""}",2288.18,Gold,1 +3663,Kenneth Burton,henry53@klein.info,2023-07-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1520.19,Bronze,0 +3664,John Powell,gtravis@gmail.com,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",433.71,Silver,1 +3665,Joanna Ferrell,ahughes@gmail.com,2024-02-12,"{""language"": ""IT"", ""currency"": ""USD""}",353.81,Gold,0 +3666,Kimberly Williams,iking@gmail.com,2019-12-12,"{""language"": ""FR"", ""currency"": ""USD""}",7257.46,Gold,1 +3667,Jordan Terry,debrawilson@stewart.biz,2022-05-25,"{""language"": ""EN"", ""currency"": ""GBP""}",4434.14,Silver,1 +3668,Jeffrey Fisher,lleonard@todd-ho.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6939.77,Gold,0 +3669,Marcus Le,shanemullins@wiley.info,2024-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",7438.27,Gold,1 +3670,Megan Morales,trevor91@lee.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""USD""}",3245.14,Gold,0 +3671,Angela Garrett,mackwilliam@odom-hall.com,2023-12-15,"{""language"": ""DE"", ""currency"": ""MXN""}",8534.75,Gold,0 +3672,Shane Ross,michaelwhite@dunn.biz,2022-03-29,"{""language"": ""DE"", ""currency"": ""MXN""}",9213.33,Silver,1 +3673,Angel James,kyle68@tran.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1013.13,Silver,1 +3674,Dr. Ann Whitaker MD,iroberts@yahoo.com,2024-03-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3517.26,Bronze,0 +3675,Edwin Clark,laura28@peters.net,2023-12-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1879.21,Bronze,0 +3676,Alex Farrell,heather89@gmail.com,2022-01-29,"{""language"": ""FR"", ""currency"": ""USD""}",8179.88,Silver,0 +3677,Kylie Moore,sean46@gmail.com,2024-08-31,"{""language"": ""FR"", ""currency"": ""MXN""}",5176.69,Gold,0 +3678,Dustin Alvarez,bdurham@sellers.net,2024-03-02,"{""language"": ""FR"", ""currency"": ""MXN""}",4991.88,Silver,0 +3679,James Paul,herrerajoanna@gmail.com,2020-03-29,"{""language"": ""IT"", ""currency"": ""CAD""}",2756.3,Bronze,1 +3680,Laura Smith,andrewalvarado@wiley.info,2020-07-22,"{""language"": ""DE"", ""currency"": ""EUR""}",4213.59,Bronze,1 +3681,Melissa Rich,kevin64@bates.com,2023-07-07,"{""language"": ""DE"", ""currency"": ""USD""}",3298.02,Bronze,0 +3682,Megan Carlson,brownshelby@yahoo.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5154.03,Silver,1 +3683,Casey Evans,garzajeremiah@kelly.com,2023-04-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8027.17,Bronze,1 +3684,Amy Romero,morenomatthew@wilson.net,2020-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",7829.96,Gold,0 +3685,Tyler Hall,sshelton@campbell-roach.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1066.58,Bronze,1 +3686,Sabrina Evans,nathan62@gamble.com,2024-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8171.67,Bronze,0 +3687,Alexander Costa,jerry41@dunn.com,2021-03-12,"{""language"": ""FR"", ""currency"": ""USD""}",2174.63,Bronze,1 +3688,Amy Martinez,johnathan32@yahoo.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",8733.91,Bronze,1 +3689,Brianna Clark,dramirez@gmail.com,2020-08-01,"{""language"": ""DE"", ""currency"": ""EUR""}",2401.22,Gold,0 +3690,Ashley Montgomery,lterry@austin-kaufman.info,2020-02-03,"{""language"": ""ES"", ""currency"": ""GBP""}",7986.95,Gold,0 +3691,Michael Fields,kimberly78@wells.biz,2020-08-01,"{""language"": ""FR"", ""currency"": ""MXN""}",6895.86,Gold,1 +3692,Lisa Williams,guerrerothomas@gmail.com,2024-03-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7929.92,Gold,1 +3693,Kevin Bowman,buchanantyler@yahoo.com,2022-03-31,"{""language"": ""FR"", ""currency"": ""CAD""}",2303.75,Gold,1 +3694,Lindsay Hampton,obaird@yahoo.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""CAD""}",8047.73,Silver,1 +3695,Sierra Holland,xwest@hotmail.com,2024-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",289.56,Bronze,1 +3696,Jeffrey Santiago,chapmannicole@serrano.net,2021-11-30,"{""language"": ""ES"", ""currency"": ""MXN""}",5068.43,Bronze,0 +3697,Jason Adams,julie09@yahoo.com,2022-05-04,"{""language"": ""DE"", ""currency"": ""USD""}",493.48,Gold,0 +3698,Robert White,rharris@gmail.com,2024-09-24,"{""language"": ""IT"", ""currency"": ""USD""}",4429.44,Gold,0 +3699,Amanda Thompson,marywoods@hotmail.com,2021-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",9136.77,Gold,0 +3700,Denise Holt,gillchristopher@salinas-mcbride.biz,2021-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3213.12,Bronze,1 +3701,Lori Riley,jeremy18@yahoo.com,2021-10-30,"{""language"": ""DE"", ""currency"": ""USD""}",393.58,Bronze,1 +3702,Peter Brown,hamptonjessica@cook.info,2024-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",1471.53,Gold,1 +3703,Joseph Horton,tammy42@hotmail.com,2022-03-14,"{""language"": ""ES"", ""currency"": ""MXN""}",3168.04,Gold,0 +3704,Ariana Daugherty,robert73@hopkins-king.com,2023-08-20,"{""language"": ""EN"", ""currency"": ""USD""}",5528.98,Silver,1 +3705,Rachel Floyd,rodriguezmary@king.com,2020-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",2672.07,Bronze,1 +3706,Javier Jimenez,mckeerickey@gmail.com,2023-07-21,"{""language"": ""FR"", ""currency"": ""CAD""}",4945.12,Gold,1 +3707,Samantha Flores,jasonwright@wells.com,2022-02-02,"{""language"": ""EN"", ""currency"": ""USD""}",7618.73,Bronze,0 +3708,Matthew Carrillo,jwalker@hotmail.com,2020-02-09,"{""language"": ""EN"", ""currency"": ""MXN""}",2997.84,Silver,1 +3709,Diana Humphrey,jimmy50@hotmail.com,2022-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8903.49,Silver,0 +3710,Wendy Payne,perkinsjennifer@yahoo.com,2020-10-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1627.35,Silver,0 +3711,Monica Davis,hortonjohn@mccarthy-bailey.info,2023-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4667.94,Gold,0 +3712,Roy Sherman,richard74@yahoo.com,2024-09-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7256.43,Bronze,0 +3713,Mary Rojas,sheila69@yahoo.com,2023-02-16,"{""language"": ""DE"", ""currency"": ""USD""}",4252.07,Gold,1 +3714,Robin Cooper,kjimenez@randall.com,2022-07-15,"{""language"": ""IT"", ""currency"": ""CAD""}",503.88,Silver,1 +3715,Ryan Saunders,bridget76@young-stone.biz,2020-11-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9085.3,Gold,0 +3716,Katherine Christensen,michelevasquez@hotmail.com,2024-11-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5601.05,Bronze,1 +3717,Kayla Davis,bgonzalez@bush.biz,2020-08-31,"{""language"": ""FR"", ""currency"": ""EUR""}",5023.08,Silver,1 +3718,Cory Rodriguez,alexa96@gmail.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7904.26,Bronze,0 +3719,Michael Paul,petersonstephen@hotmail.com,2024-11-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2927.58,Bronze,0 +3720,Deborah Montgomery,ydavis@hotmail.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""GBP""}",1162.87,Silver,0 +3721,John Russell,wrightkeith@fisher-baker.com,2022-02-19,"{""language"": ""DE"", ""currency"": ""MXN""}",5109.11,Silver,1 +3722,Kyle Thomas,qandrews@sanders-mcmahon.net,2023-08-14,"{""language"": ""FR"", ""currency"": ""USD""}",1908.86,Silver,1 +3723,Ashley Smith,westjennifer@lozano.com,2023-01-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4869.8,Gold,1 +3724,Christopher Crawford,henryerin@miller-warner.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",6288.47,Bronze,0 +3725,Mark Mcdonald,javiergonzalez@hotmail.com,2020-10-01,"{""language"": ""DE"", ""currency"": ""CAD""}",6806.72,Bronze,1 +3726,Stephanie Peterson,eric55@yahoo.com,2023-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",1566.11,Gold,0 +3727,John Hall,adamscurtis@hotmail.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""USD""}",5283.48,Gold,0 +3728,Morgan Mcmahon,cvaldez@hotmail.com,2024-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",4094.43,Gold,1 +3729,Christopher Moore,heidi02@hotmail.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""USD""}",1185.04,Silver,1 +3730,Jacob Hill,hstephens@butler-preston.com,2024-06-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1085.23,Silver,0 +3731,Alan Long,nlloyd@hotmail.com,2020-07-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9594.46,Silver,1 +3732,Nicole Hays,tolson@hotmail.com,2024-11-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1732.18,Gold,0 +3733,Janice Brown,barbara91@yahoo.com,2023-05-23,"{""language"": ""IT"", ""currency"": ""EUR""}",1381.24,Bronze,1 +3734,Stephanie Wallace MD,michaelortega@martinez.com,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",623.38,Silver,1 +3735,Alexis Hughes,robert43@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5993.5,Silver,0 +3736,Melinda Holmes,benjaminsavage@hotmail.com,2020-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5245.73,Silver,1 +3737,Terri Hunter,martin00@yahoo.com,2021-06-07,"{""language"": ""FR"", ""currency"": ""GBP""}",1607.74,Gold,0 +3738,Toni Rodriguez,fleminggary@hotmail.com,2023-02-04,"{""language"": ""ES"", ""currency"": ""CAD""}",1391.4,Bronze,0 +3739,Richard Williams,sextonscott@gmail.com,2021-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",1875.26,Bronze,1 +3740,Brandon Lutz,hfisher@gmail.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""EUR""}",2586.85,Bronze,1 +3741,Maurice Smith,gouldkimberly@bennett-richardson.com,2022-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",9194.57,Silver,0 +3742,Michael Bennett,sgreene@yahoo.com,2021-12-26,"{""language"": ""DE"", ""currency"": ""USD""}",7720.98,Gold,1 +3743,Dr. Jane Keith,sarah96@hotmail.com,2022-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6560.26,Silver,1 +3744,Faith Blair,elizabeth68@gmail.com,2022-06-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3295.8,Silver,0 +3745,Gilbert Boyd,hrodriguez@bean.com,2024-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7108.78,Bronze,1 +3746,Rebecca Bender,randy53@bell-mahoney.biz,2020-06-28,"{""language"": ""IT"", ""currency"": ""USD""}",309.35,Bronze,0 +3747,Jerry Rodriguez,washingtonjean@bryant.com,2023-07-29,"{""language"": ""EN"", ""currency"": ""MXN""}",430.64,Gold,1 +3748,Victor Price,howardcatherine@hotmail.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""USD""}",9320.65,Bronze,1 +3749,Elizabeth Sherman,francispamela@wallace.com,2024-06-20,"{""language"": ""ES"", ""currency"": ""MXN""}",1172.86,Bronze,1 +3750,Danielle Strong,jeffrey00@pierce.org,2021-06-19,"{""language"": ""DE"", ""currency"": ""EUR""}",2477.74,Gold,0 +3751,Stephanie Jordan,grantashley@gmail.com,2020-04-21,"{""language"": ""EN"", ""currency"": ""MXN""}",6098.88,Gold,1 +3752,John Lee,kathrynhart@reed-carter.net,2020-01-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8080.41,Silver,1 +3753,Lawrence Bruce,wcooper@jones-gray.com,2023-11-07,"{""language"": ""DE"", ""currency"": ""GBP""}",4622.18,Bronze,1 +3754,Courtney Gonzalez,gomezashley@gmail.com,2023-07-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5416.35,Bronze,0 +3755,Thomas Gentry,davisjulia@gmail.com,2023-09-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5499.87,Silver,1 +3756,James Buchanan,colemangeorge@hotmail.com,2023-01-30,"{""language"": ""EN"", ""currency"": ""CAD""}",4072.72,Bronze,1 +3757,Alex Horton,ndavidson@simmons-rogers.info,2021-09-24,"{""language"": ""DE"", ""currency"": ""CAD""}",600.48,Gold,0 +3758,Kayla Thompson,heathercooke@gmail.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""EUR""}",8584.11,Bronze,0 +3759,Roger Decker,lgalloway@hotmail.com,2021-01-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4946.05,Gold,1 +3760,Juan Wright,bmoses@hotmail.com,2021-07-25,"{""language"": ""ES"", ""currency"": ""EUR""}",6292.97,Bronze,1 +3761,Brett Mcclain,petersmichael@hotmail.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""MXN""}",3724.26,Bronze,0 +3762,Jonathan Bonilla,anthonywheeler@yahoo.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""EUR""}",5890.95,Bronze,1 +3763,James Jimenez,coopernathan@chen-guerrero.com,2020-09-13,"{""language"": ""FR"", ""currency"": ""CAD""}",358.55,Gold,1 +3764,Jason Leblanc,gillterri@anderson-benson.com,2024-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",1985.47,Silver,0 +3765,Pamela Ellis,amcdowell@gmail.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""USD""}",9858.02,Gold,1 +3766,Felicia Jones,christinecoffey@yahoo.com,2020-03-15,"{""language"": ""DE"", ""currency"": ""CAD""}",5061.18,Gold,1 +3767,Samuel Mays,mullinstony@herman-martin.com,2020-06-14,"{""language"": ""EN"", ""currency"": ""MXN""}",369.8,Gold,1 +3768,Troy Rivers,jtorres@yahoo.com,2022-11-11,"{""language"": ""DE"", ""currency"": ""GBP""}",7013.11,Bronze,0 +3769,Brittany Kelly,jamestorres@gmail.com,2023-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9684.37,Bronze,1 +3770,Cheyenne Parsons,williamspatrick@yahoo.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7350.38,Bronze,1 +3771,Andrew Robertson,mark51@hotmail.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2367.32,Gold,0 +3772,Antonio Walker,anthony11@yahoo.com,2021-02-19,"{""language"": ""EN"", ""currency"": ""CAD""}",889.07,Silver,0 +3773,Jimmy Harrison,danielle78@miller-riggs.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""USD""}",1614.07,Silver,0 +3774,Joel Wyatt DVM,ronaldgrimes@sanchez-white.com,2023-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",7956.45,Silver,1 +3775,Heather Soto,tylercopeland@clark.com,2020-02-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4627.92,Silver,0 +3776,Diana Torres,alicia01@gmail.com,2022-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7897.14,Gold,0 +3777,Jennifer Thomas,lambertross@meyers.info,2022-10-03,"{""language"": ""DE"", ""currency"": ""EUR""}",5960.77,Silver,1 +3778,Joseph Wilson,rbarber@yahoo.com,2022-05-30,"{""language"": ""ES"", ""currency"": ""GBP""}",5207.63,Gold,0 +3779,Jay Zavala,lperez@romero.net,2021-03-20,"{""language"": ""DE"", ""currency"": ""CAD""}",1487.02,Silver,0 +3780,Bonnie Crawford,carolynbrennan@paul.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""EUR""}",5670.81,Bronze,1 +3781,Brett Smith,patrick23@henderson-thompson.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",6550.8,Silver,1 +3782,Paul Maldonado,smithamanda@mack.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""GBP""}",851.76,Silver,1 +3783,Shawn Koch DDS,wanderson@king-hopkins.com,2023-03-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5618.25,Silver,0 +3784,Krista Brown,ericksonlisa@smith.com,2024-02-21,"{""language"": ""IT"", ""currency"": ""GBP""}",6028.97,Gold,1 +3785,Kathleen Thompson,kelly02@george.com,2023-12-31,"{""language"": ""EN"", ""currency"": ""CAD""}",3916.27,Gold,0 +3786,Jonathan Cook,jacob79@hotmail.com,2022-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6711.42,Silver,1 +3787,Christopher Carter,samanthawatson@gmail.com,2023-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7865.12,Bronze,0 +3788,Nicole Williams,adam92@torres.org,2023-09-28,"{""language"": ""DE"", ""currency"": ""GBP""}",7449.45,Gold,1 +3789,Dana Rivera,natalie83@hotmail.com,2023-07-13,"{""language"": ""ES"", ""currency"": ""CAD""}",2809.74,Bronze,1 +3790,Joanna Wheeler,tommydunn@gmail.com,2021-01-11,"{""language"": ""EN"", ""currency"": ""CAD""}",9725.69,Silver,0 +3791,David Sutton,jonestamara@king-hamilton.com,2023-04-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4017.75,Silver,0 +3792,David Perez,michaelclark@lee.com,2024-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",4732.3,Silver,1 +3793,Casey Gibbs,angela81@ellison.com,2023-07-13,"{""language"": ""IT"", ""currency"": ""EUR""}",4314.1,Silver,0 +3794,Barbara Smith,carmenmcpherson@hotmail.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",4092.18,Gold,0 +3795,Eric Park,lindawilliams@hotmail.com,2021-08-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1721.68,Bronze,1 +3796,Brandy Rios,jeremymcdonald@wilson.com,2023-11-02,"{""language"": ""FR"", ""currency"": ""EUR""}",697.61,Bronze,1 +3797,Adam Barrett,elizabethwilliams@hotmail.com,2022-12-25,"{""language"": ""DE"", ""currency"": ""EUR""}",8572.3,Bronze,1 +3798,Patrick Parker,andersonpatrick@smith.info,2023-11-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1378.7,Bronze,1 +3799,Mr. Michael Abbott Jr.,pamelajohnson@yahoo.com,2023-09-28,"{""language"": ""IT"", ""currency"": ""MXN""}",4729.86,Bronze,1 +3800,Stacey Riggs,shannon44@yahoo.com,2023-11-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2073.28,Gold,1 +3801,Elizabeth Koch,frobertson@shaw.biz,2021-02-17,"{""language"": ""EN"", ""currency"": ""GBP""}",4763.25,Bronze,0 +3802,Anthony West,emily99@yahoo.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""USD""}",6504.69,Gold,0 +3803,Allen Branch,thomascynthia@gmail.com,2022-05-03,"{""language"": ""FR"", ""currency"": ""CAD""}",8853.43,Gold,1 +3804,Megan Rodriguez,michelle56@gmail.com,2024-04-14,"{""language"": ""FR"", ""currency"": ""GBP""}",867.66,Silver,1 +3805,Christian Nguyen,rjacobson@johnson-petty.com,2022-06-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7694.97,Silver,1 +3806,Julie Foster,gibsonmarcus@gmail.com,2022-07-18,"{""language"": ""DE"", ""currency"": ""MXN""}",474.16,Bronze,1 +3807,Melvin Castillo,williamsanthony@hotmail.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",9829.95,Silver,1 +3808,Tonya Spencer,thomas32@yahoo.com,2023-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3541.61,Silver,1 +3809,Frank Whitehead,fitzgeraldkimberly@cole.net,2023-01-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2113.7,Gold,1 +3810,Michael Singh,xmartinez@hatfield.info,2023-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1607.09,Silver,0 +3811,Dennis Murray,torresphillip@hamilton.info,2023-11-19,"{""language"": ""ES"", ""currency"": ""GBP""}",5569.89,Silver,1 +3812,Aaron Steele,rogerspatrick@hayes.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""EUR""}",914.86,Bronze,1 +3813,Gerald Ayala,gchen@humphrey.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",7470.48,Gold,0 +3814,Tiffany Mack,elizabeth99@sanchez.com,2020-09-24,"{""language"": ""DE"", ""currency"": ""MXN""}",9167.09,Bronze,1 +3815,Kendra Ochoa,mcclainmichael@cole.com,2024-12-09,"{""language"": ""IT"", ""currency"": ""EUR""}",7695.05,Silver,1 +3816,Brandy Palmer,popetimothy@gmail.com,2020-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",250.88,Bronze,1 +3817,Edward Lewis,fgarza@cooper.org,2022-06-25,"{""language"": ""DE"", ""currency"": ""GBP""}",9151.7,Silver,1 +3818,Sean Mcclure,samantha83@butler.com,2023-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5139.87,Bronze,1 +3819,Cory Russell,kellifisher@snyder-jacobs.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""USD""}",8400.92,Silver,1 +3820,Mindy Daniels,carrdonna@gmail.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""USD""}",6279.01,Gold,0 +3821,Amber Warren,spatel@hotmail.com,2023-02-07,"{""language"": ""IT"", ""currency"": ""CAD""}",5389.2,Silver,0 +3822,Wendy Hernandez,kelsey09@hotmail.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5427.97,Bronze,1 +3823,Tracy Rodriguez,thompsonmarissa@pearson-evans.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""EUR""}",5118.23,Bronze,0 +3824,Tiffany Hernandez,xmitchell@bauer.info,2023-10-17,"{""language"": ""EN"", ""currency"": ""USD""}",2871.14,Silver,1 +3825,Joshua Austin,cynthiasmith@blanchard-castaneda.com,2020-06-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6020.96,Gold,1 +3826,Amanda Oneal,billjohnson@yahoo.com,2024-08-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4634.78,Silver,1 +3827,Christy Alexander,jordanmark@yahoo.com,2022-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5889.22,Silver,0 +3828,Christopher Jackson,lauracole@clark-lee.biz,2022-08-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8920.53,Silver,1 +3829,Diane Mills,perkinskayla@gmail.com,2020-10-16,"{""language"": ""EN"", ""currency"": ""GBP""}",1109.84,Gold,0 +3830,Andrew Rodriguez,amandataylor@walters-jennings.com,2021-03-14,"{""language"": ""IT"", ""currency"": ""EUR""}",8013.67,Gold,0 +3831,Brittany Roth,parkerpaul@hotmail.com,2022-04-13,"{""language"": ""ES"", ""currency"": ""GBP""}",2054.69,Silver,0 +3832,Michele Young,ruizsarah@hotmail.com,2024-09-06,"{""language"": ""ES"", ""currency"": ""CAD""}",2669.36,Bronze,1 +3833,Gary Atkins,michael26@hoffman.com,2024-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",9108.29,Silver,0 +3834,Kristin Logan,erin75@miller.net,2020-12-07,"{""language"": ""EN"", ""currency"": ""USD""}",6102.37,Bronze,0 +3835,Terry Singh,ryancollins@sanchez.com,2021-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8546.66,Gold,1 +3836,Brady Holloway PhD,fernandeztheresa@graham-mitchell.com,2020-11-06,"{""language"": ""IT"", ""currency"": ""MXN""}",6777.25,Bronze,0 +3837,Natalie Robinson,morrisfrances@hotmail.com,2021-04-11,"{""language"": ""DE"", ""currency"": ""MXN""}",692.35,Silver,0 +3838,Shari Stewart,eric39@yahoo.com,2021-05-18,"{""language"": ""FR"", ""currency"": ""GBP""}",3117.6,Bronze,0 +3839,Ann Henderson,lopezteresa@jenkins.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""MXN""}",7784.78,Bronze,1 +3840,Melissa Burns,zcross@fisher.info,2021-04-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2829.95,Bronze,1 +3841,Nicholas Dalton,michael72@gmail.com,2022-10-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6702.61,Gold,0 +3842,Daniel Williams,fergusonsarah@sharp.info,2021-06-03,"{""language"": ""DE"", ""currency"": ""EUR""}",2288.85,Silver,0 +3843,Patricia Wade,robert94@gmail.com,2023-03-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7469.56,Silver,0 +3844,Marissa Hardy,amanda24@gmail.com,2021-06-13,"{""language"": ""IT"", ""currency"": ""CAD""}",9301.61,Bronze,0 +3845,Jacob Stevenson,davisbrandon@henderson.com,2020-02-18,"{""language"": ""IT"", ""currency"": ""CAD""}",258.48,Bronze,0 +3846,Howard Sexton,osanchez@hotmail.com,2020-11-27,"{""language"": ""DE"", ""currency"": ""USD""}",3685.55,Gold,1 +3847,Mary Willis,lindamartinez@harrison.com,2022-03-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8418.14,Silver,0 +3848,Steven Kirk,piercedenise@yahoo.com,2020-04-26,"{""language"": ""FR"", ""currency"": ""CAD""}",5170.4,Bronze,1 +3849,Rebecca Baker,angelica66@thompson-delacruz.com,2020-09-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9272.48,Bronze,0 +3850,Alejandro Smith,christina47@taylor-greene.com,2023-04-09,"{""language"": ""IT"", ""currency"": ""GBP""}",632.9,Gold,1 +3851,Teresa Young,bensonandrew@gmail.com,2020-10-21,"{""language"": ""IT"", ""currency"": ""MXN""}",3380.15,Silver,0 +3852,Andrea Sutton,codyarnold@bishop-marshall.com,2021-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2123.77,Bronze,1 +3853,Amber Dennis,danielflores@cardenas.net,2022-09-11,"{""language"": ""ES"", ""currency"": ""MXN""}",4435.76,Gold,1 +3854,Gary Duke,navarrotheresa@davis.info,2022-10-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8449.83,Silver,1 +3855,Patricia Wagner,anthony76@gmail.com,2023-05-07,"{""language"": ""FR"", ""currency"": ""USD""}",3236.91,Silver,0 +3856,Rachel Harris,dwhitney@yahoo.com,2024-06-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4580.12,Silver,0 +3857,Samantha Charles,tiffany10@fernandez.com,2020-01-03,"{""language"": ""DE"", ""currency"": ""CAD""}",2709.33,Gold,1 +3858,Amanda Bryant,donaldsonkatrina@villarreal-klein.com,2023-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",6191.63,Silver,1 +3859,Timothy Brown,greenandrew@yahoo.com,2022-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",2238.01,Gold,1 +3860,Michael Parker,paul43@johnson.com,2020-11-25,"{""language"": ""DE"", ""currency"": ""CAD""}",8838.41,Gold,0 +3861,Todd Meyers,brooke70@yahoo.com,2024-10-12,"{""language"": ""IT"", ""currency"": ""GBP""}",9752.48,Silver,0 +3862,Nicole Summers,heathmelanie@duffy.com,2024-09-12,"{""language"": ""IT"", ""currency"": ""USD""}",2399.6,Gold,0 +3863,Amy Jacobs,pamela95@jones-bray.biz,2020-07-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8894.91,Silver,1 +3864,Sheryl Rogers,kellymoore@smith-adams.org,2023-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",2641.24,Bronze,1 +3865,Rhonda Spencer,ryan32@gmail.com,2021-01-14,"{""language"": ""FR"", ""currency"": ""GBP""}",6444.79,Bronze,0 +3866,Amy Vaughn,richardwilliams@kent.com,2024-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",8046.56,Gold,1 +3867,Katherine Clark,ericksoncristina@burnett.info,2024-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",3212.93,Gold,1 +3868,Caleb Cooper,ronald46@grant.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""GBP""}",9539.82,Bronze,1 +3869,John Robles,dana20@mccoy.com,2021-06-07,"{""language"": ""DE"", ""currency"": ""USD""}",6273.76,Gold,0 +3870,Gerald Lopez,brian86@gmail.com,2022-11-04,"{""language"": ""EN"", ""currency"": ""USD""}",8185.38,Silver,1 +3871,Mary Oliver,katherinefinley@ferguson.net,2021-05-18,"{""language"": ""ES"", ""currency"": ""GBP""}",1674.68,Gold,0 +3872,Curtis Grant,jacksonharry@gmail.com,2022-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",273.56,Bronze,0 +3873,Mary Cannon,jennifer01@armstrong.com,2022-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",979.73,Gold,1 +3874,Jacob Khan,anthony18@hotmail.com,2020-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3374.84,Gold,1 +3875,Charles Robinson,taylorhooper@henry.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8268.9,Bronze,0 +3876,Mrs. Diana Mclean DDS,morrismegan@smith-lee.info,2020-03-20,"{""language"": ""ES"", ""currency"": ""EUR""}",446.24,Silver,0 +3877,Christopher Robles,cynthiahernandez@reeves-stephens.com,2023-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",1578.94,Silver,1 +3878,Jessica Daniels,hbautista@jennings-dennis.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",1411.01,Gold,0 +3879,Betty Conner,waltermonique@carrillo-green.com,2022-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",2343.5,Gold,1 +3880,Cassandra Lawrence,gmurray@bryant.org,2024-10-15,"{""language"": ""FR"", ""currency"": ""GBP""}",9375.86,Gold,0 +3881,Laura Moore,dstevens@yahoo.com,2022-08-18,"{""language"": ""DE"", ""currency"": ""USD""}",4658.69,Gold,0 +3882,Mary Meyer,christopher45@yahoo.com,2024-08-30,"{""language"": ""IT"", ""currency"": ""USD""}",3879.77,Silver,0 +3883,Frederick Burns,kirsten33@stokes.com,2020-07-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6088.33,Bronze,0 +3884,Frank Stewart,ryan53@gmail.com,2022-06-10,"{""language"": ""DE"", ""currency"": ""USD""}",5366.22,Gold,1 +3885,Nathan Walker,jeffrey08@mills-king.net,2023-09-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5728.53,Bronze,1 +3886,Michelle Shepherd,crystalturner@walker-murphy.com,2023-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",1930.95,Silver,0 +3887,Jennifer Benson,christina25@yahoo.com,2023-05-04,"{""language"": ""EN"", ""currency"": ""MXN""}",9036.86,Bronze,0 +3888,Patricia Wilkins,eolson@wong-torres.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""CAD""}",7214.44,Bronze,0 +3889,Brandon Howard,brandihughes@gmail.com,2020-12-07,"{""language"": ""DE"", ""currency"": ""CAD""}",1812.94,Bronze,1 +3890,Andrea Stafford,evansmichael@mccoy.info,2020-03-09,"{""language"": ""FR"", ""currency"": ""MXN""}",1285.53,Silver,0 +3891,Susan Sutton,melissaadams@clayton.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""CAD""}",6331.59,Bronze,0 +3892,Beth Robinson,stephen06@gmail.com,2022-01-14,"{""language"": ""EN"", ""currency"": ""USD""}",7872.89,Bronze,0 +3893,Diane Mosley,kristin25@hunter-serrano.com,2021-04-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7196.44,Silver,0 +3894,Tamara Berry,susangonzalez@may.info,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1439.97,Bronze,1 +3895,Bradley Meza,littleashley@rich.com,2022-03-04,"{""language"": ""IT"", ""currency"": ""MXN""}",1988.08,Bronze,0 +3896,Denise Anderson,agray@vega-pierce.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""EUR""}",632.89,Silver,1 +3897,Daniel Escobar,floresmatthew@gardner.com,2022-07-14,"{""language"": ""ES"", ""currency"": ""EUR""}",4395.89,Gold,1 +3898,Stacy Burch,blankenshippatrick@underwood.com,2023-08-05,"{""language"": ""EN"", ""currency"": ""MXN""}",1066.17,Silver,1 +3899,Jennifer Mendoza,beth85@hotmail.com,2020-01-18,"{""language"": ""DE"", ""currency"": ""MXN""}",7191.09,Bronze,0 +3900,Ryan Perry,brandon11@yahoo.com,2020-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7914.61,Silver,1 +3901,Rhonda Henderson,mitchelljennifer@ortega.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""CAD""}",6780.74,Gold,1 +3902,Jean Diaz,lsalinas@mason.org,2020-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9385.24,Gold,0 +3903,Antonio Ross,antoniostrickland@bailey.net,2022-07-16,"{""language"": ""ES"", ""currency"": ""GBP""}",3873.65,Gold,0 +3904,Jesse Scott,stacey25@hotmail.com,2021-09-25,"{""language"": ""IT"", ""currency"": ""USD""}",8376.95,Silver,1 +3905,Rachel Stone DDS,bakerkelly@powers.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""CAD""}",7229.93,Silver,0 +3906,John Hancock,jjordan@hart.com,2022-04-19,"{""language"": ""DE"", ""currency"": ""GBP""}",435.1,Gold,0 +3907,Donald Myers,robinsonhelen@meyers.info,2020-10-17,"{""language"": ""DE"", ""currency"": ""GBP""}",6861.91,Silver,1 +3908,Susan Potts,leevictor@gmail.com,2024-08-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9840.67,Bronze,1 +3909,James Harper,charles45@yahoo.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5305.89,Gold,1 +3910,Donald Douglas,griffinjohn@wiley.com,2023-03-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3752.49,Bronze,0 +3911,Cheryl Pollard,cunninghamcody@hotmail.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""GBP""}",7698.57,Silver,1 +3912,Katie Ramirez,mikewilson@yahoo.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""USD""}",4780.96,Bronze,1 +3913,James Lopez,ricematthew@henderson.net,2024-10-08,"{""language"": ""EN"", ""currency"": ""GBP""}",107.23,Gold,0 +3914,Sean Kerr,nicholas16@yahoo.com,2023-12-08,"{""language"": ""IT"", ""currency"": ""GBP""}",8370.78,Gold,0 +3915,Michelle Martinez,margaret20@hill.org,2020-10-26,"{""language"": ""DE"", ""currency"": ""USD""}",6082.2,Gold,1 +3916,James Myers,martincarla@hotmail.com,2023-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",4892.16,Silver,0 +3917,Mark Garcia,tfrench@gmail.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""EUR""}",6288.72,Bronze,1 +3918,Stephen Lewis,shelly53@evans.biz,2021-01-28,"{""language"": ""EN"", ""currency"": ""USD""}",3478.98,Silver,1 +3919,Matthew Mclean,perrykatherine@gmail.com,2020-08-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1332.97,Gold,0 +3920,Nathaniel Palmer,wilsonhannah@hotmail.com,2020-11-09,"{""language"": ""IT"", ""currency"": ""USD""}",8400.92,Silver,0 +3921,Heather Silva,qferrell@gmail.com,2023-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",8039.88,Silver,1 +3922,Jose Duncan,shermanerica@perez.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3428.45,Bronze,0 +3923,Jason Johnston,briansanchez@yahoo.com,2020-04-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4169.37,Bronze,1 +3924,Chloe Green,justin77@anderson.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""EUR""}",386.2,Bronze,0 +3925,Mark Black,jdean@hotmail.com,2021-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",5363.22,Silver,0 +3926,Kristin Walker,longanthony@hotmail.com,2021-01-29,"{""language"": ""FR"", ""currency"": ""MXN""}",321.58,Gold,1 +3927,Micheal Myers MD,hevans@hall.com,2024-09-15,"{""language"": ""DE"", ""currency"": ""GBP""}",6353.71,Silver,1 +3928,Amy Steele,bjohnston@gmail.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2889.35,Bronze,0 +3929,James Clark,akelley@watson-hicks.com,2020-03-30,"{""language"": ""IT"", ""currency"": ""EUR""}",87.45,Silver,1 +3930,Jeffrey Johnson,huntteresa@miller.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",9687.05,Silver,0 +3931,Michelle Martinez,ihill@smith-weber.biz,2020-12-15,"{""language"": ""FR"", ""currency"": ""USD""}",6526.35,Gold,0 +3932,Julie Cordova,marissareyes@gray-dixon.biz,2023-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",263.82,Bronze,1 +3933,John Zuniga,huynhsharon@hotmail.com,2023-08-07,"{""language"": ""EN"", ""currency"": ""MXN""}",299.58,Bronze,0 +3934,Shawn Bush,nathan60@gmail.com,2023-10-26,"{""language"": ""IT"", ""currency"": ""GBP""}",2955.02,Bronze,1 +3935,Mrs. Rachel Willis,ryanmay@bennett.com,2020-01-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5918.2,Bronze,0 +3936,Clifford Garcia,tanyaanderson@yahoo.com,2022-11-11,"{""language"": ""DE"", ""currency"": ""EUR""}",7003.28,Silver,1 +3937,Mary Allen,wwiggins@bryant-palmer.com,2024-10-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7384.4,Bronze,1 +3938,Karen Hernandez,shelbyperez@walker.info,2020-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",175.53,Silver,0 +3939,Monica Nguyen,richard17@hotmail.com,2024-07-31,"{""language"": ""DE"", ""currency"": ""EUR""}",2508.24,Bronze,0 +3940,Matthew Stewart,clarkedouglas@yahoo.com,2020-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",5881.61,Gold,0 +3941,Michael Hawkins,gsanchez@sloan.net,2024-08-28,"{""language"": ""DE"", ""currency"": ""CAD""}",4209.72,Gold,1 +3942,Daniel Sawyer,shelby07@gmail.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""CAD""}",8841.9,Silver,0 +3943,Anna Wright,davenporttroy@wolf.org,2022-04-16,"{""language"": ""ES"", ""currency"": ""GBP""}",4004.62,Silver,0 +3944,Michelle Walsh,swansonamanda@gmail.com,2024-05-02,"{""language"": ""ES"", ""currency"": ""EUR""}",2571.42,Silver,1 +3945,Aaron Robinson,phillipmorgan@fowler.com,2023-12-28,"{""language"": ""FR"", ""currency"": ""CAD""}",2797.73,Silver,1 +3946,Anita Fisher,rasmussendawn@rivera-gray.com,2022-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",8209.26,Gold,1 +3947,Melissa Ross,fperez@walker-patterson.info,2024-11-13,"{""language"": ""IT"", ""currency"": ""USD""}",8335.15,Gold,1 +3948,Lauren Moore,vbarrera@hotmail.com,2024-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",218.2,Gold,0 +3949,Angela Miller,othompson@anderson.info,2023-05-22,"{""language"": ""FR"", ""currency"": ""CAD""}",8568.7,Silver,0 +3950,David Parker,nathan69@yahoo.com,2021-02-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4932.5,Silver,0 +3951,Sheri Reyes,spierce@russo.com,2024-08-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3731.05,Gold,1 +3952,James Foster,swebb@diaz.com,2023-03-13,"{""language"": ""FR"", ""currency"": ""GBP""}",6470.72,Gold,0 +3953,Meagan Mcclain,potterjeffrey@trevino.com,2022-01-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3424.79,Bronze,1 +3954,Elaine Hawkins,courtneyhaas@durham.com,2024-04-02,"{""language"": ""DE"", ""currency"": ""MXN""}",105.64,Gold,0 +3955,Rebecca Brennan,owalter@cox.com,2024-11-06,"{""language"": ""FR"", ""currency"": ""USD""}",2767.65,Bronze,1 +3956,Nicholas Jenkins,vcrawford@gibbs-ortiz.com,2024-03-15,"{""language"": ""DE"", ""currency"": ""GBP""}",3989.24,Gold,1 +3957,Rebecca Chen,virginia72@gmail.com,2022-04-07,"{""language"": ""EN"", ""currency"": ""GBP""}",4792.35,Silver,1 +3958,Christopher Pham,michael75@yahoo.com,2021-10-26,"{""language"": ""ES"", ""currency"": ""MXN""}",6443.42,Bronze,1 +3959,Amanda Allen,lawsonlori@hill.info,2022-09-18,"{""language"": ""DE"", ""currency"": ""MXN""}",6484.25,Silver,0 +3960,Kathleen Casey,jimmy01@yahoo.com,2023-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",3249.95,Bronze,0 +3961,Michael Atkins,wagnerann@preston.biz,2021-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",2412.54,Silver,1 +3962,Joshua Black,hurstshaun@white.com,2024-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",3175.51,Bronze,1 +3963,Savannah Ryan,blackkrystal@anderson.com,2023-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",9826.93,Gold,0 +3964,Stephen Hernandez,kenneth79@moreno-hill.com,2023-10-14,"{""language"": ""DE"", ""currency"": ""MXN""}",1829.16,Bronze,1 +3965,Mrs. Melinda Waters,patrick01@gmail.com,2024-07-11,"{""language"": ""DE"", ""currency"": ""EUR""}",7926.21,Bronze,1 +3966,Jacob Maldonado,zroach@horton.com,2021-03-05,"{""language"": ""IT"", ""currency"": ""MXN""}",1243.35,Gold,1 +3967,Donald Riddle,qdavis@kent.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""GBP""}",4279.13,Gold,0 +3968,Brandon Lee,yboyd@yahoo.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",2758.73,Bronze,0 +3969,James Boone,starkjennifer@henderson.com,2023-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6415.55,Gold,0 +3970,Nicholas Bishop,jonesjennifer@gardner.biz,2020-05-16,"{""language"": ""ES"", ""currency"": ""MXN""}",9160.49,Gold,1 +3971,Monica Sanchez,turnermelinda@kim-parker.com,2023-02-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5467.35,Bronze,0 +3972,Joan Duncan,frank26@yahoo.com,2020-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4772.38,Bronze,0 +3973,Herbert Sheppard,tina10@yahoo.com,2022-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2485.85,Gold,0 +3974,Sheila Munoz,crodgers@smith.com,2021-08-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3188.82,Gold,1 +3975,Debbie Ali,wbernard@hotmail.com,2022-07-27,"{""language"": ""EN"", ""currency"": ""CAD""}",1433.14,Silver,0 +3976,Kyle King,qdavis@yahoo.com,2024-03-09,"{""language"": ""IT"", ""currency"": ""CAD""}",8269.32,Silver,1 +3977,Melissa Baker,nwilliams@yahoo.com,2020-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1657.48,Bronze,0 +3978,Donna Moore,leezachary@gmail.com,2024-03-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3620.56,Silver,0 +3979,Emily Webb,abennett@gmail.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""CAD""}",5010.09,Gold,0 +3980,Robert Flores,bartonandrea@gmail.com,2021-05-05,"{""language"": ""FR"", ""currency"": ""CAD""}",8704.71,Silver,0 +3981,Jason Davis,hardinryan@yahoo.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3033.16,Gold,1 +3982,Eric Bray,kaitlin70@barton.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9514.42,Silver,0 +3983,Lisa Chang,adamlester@gmail.com,2023-11-26,"{""language"": ""DE"", ""currency"": ""MXN""}",9334.79,Silver,0 +3984,Eduardo Dominguez,walkerkatrina@hotmail.com,2020-08-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1233.76,Gold,0 +3985,Robert Jensen,rickychandler@haas-brown.net,2023-08-15,"{""language"": ""DE"", ""currency"": ""MXN""}",5284.04,Gold,1 +3986,Jessica Rhodes,william34@gmail.com,2020-09-04,"{""language"": ""ES"", ""currency"": ""EUR""}",7944.26,Silver,1 +3987,Heather Dalton,eperez@hotmail.com,2023-03-12,"{""language"": ""FR"", ""currency"": ""USD""}",2613.92,Gold,0 +3988,Chad Jimenez,tgomez@gmail.com,2023-01-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3698.36,Bronze,0 +3989,Mrs. Amanda Myers,robert82@larson.org,2023-06-17,"{""language"": ""EN"", ""currency"": ""GBP""}",4478.55,Bronze,0 +3990,Melissa Compton MD,nancy77@yahoo.com,2021-09-01,"{""language"": ""FR"", ""currency"": ""CAD""}",5058.94,Bronze,0 +3991,Daniel Smith,kgonzales@hotmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",6014.05,Silver,1 +3992,Norma Silva,garzawilliam@hernandez-lane.com,2021-12-20,"{""language"": ""EN"", ""currency"": ""USD""}",8771.15,Silver,0 +3993,Craig Hall,bowmanvincent@yahoo.com,2022-03-11,"{""language"": ""FR"", ""currency"": ""CAD""}",3219.42,Bronze,1 +3994,Tyler Young,dianabenson@hotmail.com,2020-12-28,"{""language"": ""ES"", ""currency"": ""GBP""}",6411.36,Bronze,0 +3995,Brenda Shelton,xparker@gmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""GBP""}",2227.14,Gold,1 +3996,Pamela Long,kari04@hotmail.com,2022-02-17,"{""language"": ""EN"", ""currency"": ""USD""}",6968.08,Silver,1 +3997,Christopher Morris,davidanderson@mason.net,2020-03-22,"{""language"": ""ES"", ""currency"": ""USD""}",60.92,Silver,0 +3998,Benjamin Lang,millerdavid@keller.com,2024-05-16,"{""language"": ""EN"", ""currency"": ""MXN""}",475.89,Bronze,0 +3999,William Davies,robertroberts@cruz.net,2024-05-14,"{""language"": ""EN"", ""currency"": ""EUR""}",722.11,Silver,0 +4000,Megan Garcia,weaverjose@wall-beard.net,2024-08-22,"{""language"": ""IT"", ""currency"": ""USD""}",3752.96,Gold,0 +4001,Matthew Moore,xrodriguez@gmail.com,2023-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",558.08,Gold,0 +4002,Michael Hawkins,michaelmccullough@woods-fitzgerald.com,2023-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",476.99,Gold,0 +4003,Brandon Simpson,julie45@miller-williams.biz,2020-09-03,"{""language"": ""IT"", ""currency"": ""MXN""}",3687.77,Silver,1 +4004,Jeff Martinez,sarah37@frazier-ellis.net,2022-02-11,"{""language"": ""DE"", ""currency"": ""EUR""}",5278.14,Silver,1 +4005,Stacy Morales,estradakristin@clark-hahn.com,2021-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",5393.29,Silver,1 +4006,Marcia James,wbrooks@gmail.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4414.33,Silver,1 +4007,Renee Kelly,chasematthews@yahoo.com,2021-10-31,"{""language"": ""EN"", ""currency"": ""USD""}",6017.84,Gold,1 +4008,Martha Mcpherson,victoriamejia@gmail.com,2020-12-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5328.18,Gold,1 +4009,Matthew Moore,amandaaguilar@vargas.com,2022-11-03,"{""language"": ""IT"", ""currency"": ""GBP""}",7531.19,Silver,1 +4010,Jennifer Smith,douglascampbell@cochran-baker.org,2022-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",3527.62,Silver,0 +4011,Nicolas Gonzales,jameskathryn@gordon.com,2020-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8676.71,Gold,1 +4012,Vanessa Whitney,robinsonjuan@smith-harmon.com,2020-01-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5407.63,Silver,0 +4013,Nicholas Snyder,melissapena@hill-payne.com,2023-11-04,"{""language"": ""IT"", ""currency"": ""GBP""}",3259.82,Silver,0 +4014,Jason Walls,melindabridges@gmail.com,2023-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9283.49,Silver,0 +4015,Michael Price,danielhernandez@gmail.com,2021-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1604.68,Silver,0 +4016,Amber Thomas,usmith@lee-ryan.org,2023-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",6582.57,Silver,0 +4017,Jacob Cruz,jerome49@hotmail.com,2024-08-28,"{""language"": ""FR"", ""currency"": ""USD""}",8416.82,Silver,1 +4018,Lindsey Reed,sherricurtis@buchanan.com,2022-11-30,"{""language"": ""EN"", ""currency"": ""GBP""}",9392.81,Bronze,1 +4019,Jonathan Gregory,erinjohnson@yahoo.com,2020-05-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8695.63,Gold,1 +4020,Joshua Wheeler,martinezdarius@hebert.org,2022-07-02,"{""language"": ""FR"", ""currency"": ""USD""}",1484.74,Bronze,0 +4021,Maria Kelly,tlopez@lang.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""GBP""}",3293.18,Silver,0 +4022,Daniel Martinez,kathleensawyer@yahoo.com,2023-09-21,"{""language"": ""IT"", ""currency"": ""GBP""}",8037.84,Silver,1 +4023,Steven Salinas,xthomas@yahoo.com,2022-12-20,"{""language"": ""EN"", ""currency"": ""MXN""}",6912.54,Silver,1 +4024,Maria Baxter,martinmichelle@french-owens.net,2024-04-08,"{""language"": ""IT"", ""currency"": ""CAD""}",3153.14,Gold,0 +4025,Samantha Orozco,victoria32@rose.com,2023-05-08,"{""language"": ""IT"", ""currency"": ""USD""}",7440.33,Bronze,1 +4026,David Turner,clarkricardo@yahoo.com,2023-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",7584.48,Gold,0 +4027,Cassandra Lopez,stephanie45@mueller-krause.biz,2021-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8484.95,Silver,1 +4028,Christina Williams,alex12@morales-brown.com,2023-05-28,"{""language"": ""FR"", ""currency"": ""USD""}",6678.01,Gold,0 +4029,Mark Johnson,dianewilson@hotmail.com,2024-10-06,"{""language"": ""FR"", ""currency"": ""USD""}",3467.58,Gold,1 +4030,Cynthia Henderson,lucas23@yahoo.com,2020-11-08,"{""language"": ""FR"", ""currency"": ""USD""}",5634.19,Silver,0 +4031,Christopher Khan,tammy90@murray.com,2020-09-08,"{""language"": ""ES"", ""currency"": ""CAD""}",1480.04,Bronze,1 +4032,Pamela Terry,carolyn10@jackson-palmer.com,2022-06-06,"{""language"": ""EN"", ""currency"": ""GBP""}",1114.63,Bronze,1 +4033,Alexandria Kemp,ucuevas@jackson.com,2023-04-21,"{""language"": ""IT"", ""currency"": ""EUR""}",241.21,Silver,1 +4034,Monica Rodriguez,alvarezjames@yahoo.com,2021-12-05,"{""language"": ""FR"", ""currency"": ""MXN""}",2057.84,Bronze,0 +4035,Nancy James,bhoover@hotmail.com,2021-01-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5513.68,Bronze,1 +4036,Stacy Figueroa,krista44@hartman-jackson.org,2021-06-08,"{""language"": ""IT"", ""currency"": ""CAD""}",7587.3,Gold,1 +4037,Amanda Pratt,anthonybarry@gmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",3143.48,Gold,1 +4038,Andrew Robertson,wrodgers@steele.com,2020-10-27,"{""language"": ""DE"", ""currency"": ""EUR""}",3415.37,Gold,0 +4039,James Mendoza,stanleyralph@daniel.com,2023-08-22,"{""language"": ""IT"", ""currency"": ""GBP""}",4499.12,Gold,0 +4040,Raymond Espinoza,batesmichelle@thornton-lopez.info,2021-03-10,"{""language"": ""EN"", ""currency"": ""USD""}",2182.7,Silver,0 +4041,Karen Boyd,leslie47@yahoo.com,2019-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",9469.53,Gold,1 +4042,Brian Greer,zjames@gmail.com,2023-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9464.29,Bronze,1 +4043,Heather Le,bmills@hotmail.com,2023-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3031.92,Gold,0 +4044,Deborah Perry,dylan96@hotmail.com,2023-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5349.65,Bronze,1 +4045,Lawrence Walker,gharrington@yahoo.com,2024-05-05,"{""language"": ""IT"", ""currency"": ""USD""}",6184.89,Bronze,1 +4046,Bryan Graves,tonyperkins@yahoo.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""EUR""}",6935.92,Gold,1 +4047,Ryan Sims,uerickson@yahoo.com,2022-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",9841.05,Gold,1 +4048,Joyce Castro,astuart@gmail.com,2023-06-06,"{""language"": ""DE"", ""currency"": ""USD""}",8489.85,Gold,0 +4049,Joanna Hickman,rowlandanthony@smith-davis.com,2024-01-22,"{""language"": ""IT"", ""currency"": ""CAD""}",396.0,Bronze,1 +4050,Rachel Marshall,david74@jones.com,2020-03-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7833.0,Gold,0 +4051,Cheryl Goodwin,justin41@hotmail.com,2022-08-19,"{""language"": ""FR"", ""currency"": ""EUR""}",3530.94,Gold,0 +4052,Diana Kennedy,joshua28@gmail.com,2020-07-15,"{""language"": ""FR"", ""currency"": ""GBP""}",594.17,Gold,0 +4053,Jennifer Richardson,cfox@gmail.com,2024-08-06,"{""language"": ""IT"", ""currency"": ""USD""}",3923.7,Silver,0 +4054,Karen Richards,erictyler@yahoo.com,2024-01-17,"{""language"": ""EN"", ""currency"": ""GBP""}",5669.97,Gold,1 +4055,Christina Ward,watsonjackson@yahoo.com,2022-11-05,"{""language"": ""DE"", ""currency"": ""GBP""}",9007.21,Gold,0 +4056,Alan Fox,josemassey@yahoo.com,2021-10-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8158.56,Bronze,0 +4057,Derek Osborne,ellislarry@hoffman.org,2021-07-31,"{""language"": ""ES"", ""currency"": ""GBP""}",8161.82,Gold,0 +4058,Gina Wright,ericksonstephen@anderson.net,2020-10-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1669.5,Gold,0 +4059,Curtis Daugherty,hortonlaura@brown.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",9881.53,Silver,0 +4060,Daniel Smith,timothy29@gmail.com,2020-05-31,"{""language"": ""DE"", ""currency"": ""USD""}",6228.61,Gold,0 +4061,Patricia Cummings,pinedachristine@hotmail.com,2024-01-18,"{""language"": ""IT"", ""currency"": ""CAD""}",7756.63,Bronze,0 +4062,Brad Bentley,lorirogers@hotmail.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",8773.41,Gold,1 +4063,Amy Santiago MD,william72@vega-harris.biz,2023-05-17,"{""language"": ""FR"", ""currency"": ""GBP""}",7077.88,Bronze,1 +4064,David Hill,bdavis@henderson.info,2021-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4385.92,Gold,0 +4065,Kimberly Murillo,richard99@smith.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",7490.14,Bronze,0 +4066,Kathy Alvarez,carmensimpson@gmail.com,2022-02-11,"{""language"": ""ES"", ""currency"": ""CAD""}",541.19,Gold,1 +4067,Douglas Page,adamskevin@benson-smith.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""CAD""}",8509.92,Gold,0 +4068,Joshua Spencer,jennaromero@larsen.com,2023-10-17,"{""language"": ""DE"", ""currency"": ""GBP""}",1284.75,Bronze,0 +4069,Jill Mccall,bduffy@steele-ramirez.com,2022-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",1902.58,Gold,0 +4070,Sherry Jensen PhD,cynthia09@yahoo.com,2020-02-13,"{""language"": ""EN"", ""currency"": ""CAD""}",5815.15,Silver,0 +4071,James Zamora,nroman@hotmail.com,2024-04-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6128.54,Silver,1 +4072,Lauren Harper,michael67@strong.biz,2022-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",7824.67,Gold,1 +4073,Courtney James,virginia10@gmail.com,2020-12-06,"{""language"": ""ES"", ""currency"": ""CAD""}",1404.87,Gold,0 +4074,Ashley Smith,helen06@moss.com,2020-07-02,"{""language"": ""FR"", ""currency"": ""GBP""}",7546.03,Bronze,1 +4075,Luke Oliver,kevin79@gmail.com,2022-07-15,"{""language"": ""FR"", ""currency"": ""EUR""}",6967.45,Bronze,1 +4076,Chris Fuller,cindycarr@yahoo.com,2023-12-15,"{""language"": ""IT"", ""currency"": ""USD""}",632.7,Silver,1 +4077,Robert Reed,charles03@gmail.com,2020-10-14,"{""language"": ""DE"", ""currency"": ""GBP""}",1678.18,Bronze,0 +4078,Randy Todd,dennis83@lucas.com,2023-04-06,"{""language"": ""ES"", ""currency"": ""MXN""}",5626.51,Bronze,1 +4079,Mark Sullivan,samuelcunningham@dunlap.info,2024-07-27,"{""language"": ""FR"", ""currency"": ""USD""}",2582.25,Gold,1 +4080,Ricky Wheeler,lesliecarter@jones.com,2022-03-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5567.41,Gold,1 +4081,Larry Foster,fmorgan@valencia.com,2021-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5886.02,Silver,1 +4082,Aaron White,gabriela57@hotmail.com,2023-12-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1566.4,Gold,1 +4083,Jacob Ramirez,joshua56@woods-dean.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""CAD""}",6173.63,Silver,1 +4084,Sarah Johnson,leesteven@gmail.com,2024-02-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8409.27,Silver,1 +4085,Kristen Martinez,icurtis@yahoo.com,2024-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",2878.99,Gold,0 +4086,Emily Ford,cbray@tran.net,2022-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",6739.03,Bronze,0 +4087,Lori Torres,ethanburgess@yahoo.com,2023-03-18,"{""language"": ""FR"", ""currency"": ""EUR""}",7488.71,Bronze,0 +4088,Ana Harris,marywilliams@gmail.com,2024-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",196.58,Bronze,1 +4089,Paige Coleman,fgood@hall.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",2595.45,Bronze,0 +4090,Ethan Martin,qdyer@mosley-chang.com,2023-05-07,"{""language"": ""FR"", ""currency"": ""EUR""}",8361.81,Bronze,1 +4091,William Mcfarland MD,yorkwanda@gmail.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""USD""}",7291.73,Gold,0 +4092,Jennifer Rhodes,kentderek@cook.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",618.4,Gold,0 +4093,Elizabeth Nelson,marksexton@yahoo.com,2024-04-26,"{""language"": ""ES"", ""currency"": ""USD""}",1522.24,Gold,1 +4094,Eric Scott,sonyavance@yahoo.com,2020-07-07,"{""language"": ""IT"", ""currency"": ""USD""}",393.14,Bronze,1 +4095,Robert Moore,hoscott@anderson.info,2022-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",5258.21,Gold,1 +4096,Linda Hansen,reedtara@yahoo.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""USD""}",2395.93,Silver,0 +4097,Terrance Smith DDS,corey20@yahoo.com,2024-02-25,"{""language"": ""IT"", ""currency"": ""EUR""}",417.3,Silver,1 +4098,Thomas Cole,jbush@yahoo.com,2020-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",7286.83,Bronze,1 +4099,David Williams,angela69@king-hammond.info,2022-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",6599.61,Silver,1 +4100,Robert Gilbert,kelly09@anderson.com,2022-03-14,"{""language"": ""IT"", ""currency"": ""USD""}",4126.48,Bronze,0 +4101,Sara Wolfe,scott11@hotmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",8652.31,Gold,0 +4102,Katherine Williams,vgates@hotmail.com,2022-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",9648.4,Silver,1 +4103,Jennifer Hughes,udowns@yahoo.com,2020-09-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9818.35,Silver,1 +4104,Christopher Cook,alex99@hotmail.com,2021-02-10,"{""language"": ""IT"", ""currency"": ""USD""}",7145.67,Bronze,0 +4105,Pamela Miller,canderson@gmail.com,2020-08-02,"{""language"": ""ES"", ""currency"": ""USD""}",7603.73,Silver,1 +4106,Jacqueline Norris,zachary54@gmail.com,2022-08-05,"{""language"": ""DE"", ""currency"": ""EUR""}",5895.69,Bronze,0 +4107,Tyler Floyd,anthonyhiggins@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7821.38,Gold,1 +4108,Justin Thompson,leonardkaren@gmail.com,2022-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",401.11,Bronze,1 +4109,Matthew Richards,sally06@hotmail.com,2023-05-22,"{""language"": ""DE"", ""currency"": ""GBP""}",745.85,Silver,0 +4110,Rodney Keith,davidthomas@gates.org,2023-07-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6699.71,Silver,0 +4111,Michele Collins,brandon89@yahoo.com,2022-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6608.42,Gold,1 +4112,Catherine Thompson,donna46@yahoo.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",501.95,Gold,0 +4113,Christopher Hicks,gnelson@gutierrez-bailey.net,2024-11-04,"{""language"": ""IT"", ""currency"": ""CAD""}",6853.82,Bronze,0 +4114,Karen Le,davidjennifer@yahoo.com,2022-11-01,"{""language"": ""ES"", ""currency"": ""EUR""}",755.05,Gold,0 +4115,Henry Kerr,joshuablack@gmail.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",4027.8,Gold,0 +4116,Mark Allen,huntkayla@gmail.com,2021-10-17,"{""language"": ""ES"", ""currency"": ""MXN""}",4191.24,Gold,0 +4117,Alexis Cruz,phillipmoore@giles.info,2020-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8082.66,Gold,1 +4118,Ashley Oconnell,wolfdana@wright.com,2023-12-05,"{""language"": ""IT"", ""currency"": ""MXN""}",1740.04,Silver,0 +4119,Monica Fleming,emma63@harris.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3397.37,Silver,0 +4120,Steven Peters,troywest@hotmail.com,2023-04-29,"{""language"": ""FR"", ""currency"": ""CAD""}",3306.32,Gold,1 +4121,Cynthia White,stephaniecarter@miller.com,2024-06-02,"{""language"": ""FR"", ""currency"": ""GBP""}",2421.61,Bronze,0 +4122,Dave Riley,schwartzmichael@thomas.biz,2020-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",1178.24,Bronze,0 +4123,Holly Randall,scott20@ferrell.com,2024-09-07,"{""language"": ""FR"", ""currency"": ""EUR""}",391.51,Bronze,0 +4124,Dr. Anthony Myers,vgreer@hotmail.com,2021-07-21,"{""language"": ""EN"", ""currency"": ""USD""}",6084.68,Gold,0 +4125,Angela Velazquez,isaiahwilson@yahoo.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""GBP""}",87.29,Silver,0 +4126,Victoria Frederick,sandra37@hotmail.com,2023-10-24,"{""language"": ""FR"", ""currency"": ""USD""}",1545.39,Gold,0 +4127,Cameron Buck,jeremy99@baldwin.org,2024-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",894.01,Bronze,1 +4128,Brian Everett,kristenfrye@calderon.biz,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2066.4,Gold,1 +4129,Willie Evans,lisa43@lopez.com,2021-02-27,"{""language"": ""DE"", ""currency"": ""EUR""}",8110.3,Gold,1 +4130,Sean Rodriguez,leekelsey@hotmail.com,2019-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4132.99,Silver,0 +4131,Patricia Sanchez,fordisabella@yahoo.com,2021-11-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4672.02,Silver,1 +4132,Gregory Hanson,nicholas40@welch.com,2022-09-04,"{""language"": ""IT"", ""currency"": ""USD""}",9622.52,Bronze,1 +4133,Jimmy Miller,hillbecky@yahoo.com,2024-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",5409.39,Bronze,0 +4134,John Chen,richard80@yahoo.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""GBP""}",9927.17,Silver,1 +4135,Kirsten Jackson,scottbrown@moore.com,2020-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",2139.13,Gold,1 +4136,Edwin Harrell,teresaolson@lopez-brown.com,2024-09-25,"{""language"": ""IT"", ""currency"": ""MXN""}",3929.71,Gold,0 +4137,Amy Anderson,williamhines@yahoo.com,2021-12-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4224.41,Gold,0 +4138,Miss Jaime Flowers,jared31@yahoo.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""USD""}",5511.73,Bronze,0 +4139,Melissa Montoya,pennyrivera@gmail.com,2022-07-18,"{""language"": ""IT"", ""currency"": ""GBP""}",9053.4,Silver,1 +4140,Jennifer Harrison,emorris@green.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""CAD""}",4144.82,Silver,0 +4141,Carol Paul,smithlance@hotmail.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5339.79,Bronze,0 +4142,Gary Ross,pwilliams@hart-cabrera.org,2020-02-17,"{""language"": ""EN"", ""currency"": ""CAD""}",603.01,Bronze,0 +4143,Gina Cobb,guerraeric@mclaughlin-wood.info,2024-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",4020.25,Bronze,0 +4144,Jamie Parker,mike77@gmail.com,2024-03-08,"{""language"": ""FR"", ""currency"": ""EUR""}",3757.8,Bronze,1 +4145,Tammy Brewer,dpetersen@wilson.com,2023-09-11,"{""language"": ""ES"", ""currency"": ""EUR""}",7810.96,Silver,0 +4146,Dylan Dodson,christinesalazar@tate.com,2024-04-09,"{""language"": ""DE"", ""currency"": ""USD""}",8081.25,Gold,0 +4147,Loretta Cruz,banksthomas@skinner-johnson.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2042.17,Silver,0 +4148,Jillian Thompson,cheryltaylor@washington.biz,2024-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6554.09,Silver,0 +4149,Brittany Baker,bpalmer@osborne-mitchell.com,2020-12-04,"{""language"": ""IT"", ""currency"": ""EUR""}",8720.91,Silver,1 +4150,Douglas Wilson,johnny82@lawrence.com,2020-08-22,"{""language"": ""FR"", ""currency"": ""GBP""}",3355.9,Silver,1 +4151,Michael White,gomezdonald@yahoo.com,2021-04-15,"{""language"": ""DE"", ""currency"": ""USD""}",8865.75,Silver,1 +4152,Brandon Steele,charles22@murray-kemp.com,2022-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7722.43,Bronze,0 +4153,Mr. Matthew Marshall,eatonandrew@yahoo.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""USD""}",463.73,Gold,0 +4154,Jacqueline Hart,imartinez@chase.info,2023-01-26,"{""language"": ""IT"", ""currency"": ""GBP""}",6543.21,Gold,1 +4155,Mary Reeves,samantha05@charles.biz,2022-12-06,"{""language"": ""IT"", ""currency"": ""GBP""}",5959.94,Bronze,0 +4156,Levi Henry,ifischer@barron.com,2024-11-02,"{""language"": ""FR"", ""currency"": ""MXN""}",5395.0,Gold,0 +4157,Darlene Scott,merrittrachel@gmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",3441.81,Bronze,1 +4158,Brad Potter,maria14@thompson-nelson.net,2022-04-14,"{""language"": ""ES"", ""currency"": ""EUR""}",848.12,Silver,0 +4159,Jeffrey Farrell,jenniferwilliams@pratt-rubio.com,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",8916.48,Silver,0 +4160,Thomas Camacho,oestrada@hodges.net,2022-03-23,"{""language"": ""IT"", ""currency"": ""GBP""}",56.34,Bronze,0 +4161,Mr. Stephen Collier,wrightcory@johnson.biz,2024-03-05,"{""language"": ""EN"", ""currency"": ""USD""}",1996.68,Bronze,0 +4162,Tamara Harvey,nallen@khan.com,2024-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",9840.47,Gold,0 +4163,Mark Stanley,ekramer@rose.com,2022-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5250.89,Silver,0 +4164,Jennifer Gonzalez,traci79@garza.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3268.33,Gold,0 +4165,Dean Williamson,petersensteven@gmail.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",4400.91,Bronze,0 +4166,Bruce Ruiz,kyle00@hotmail.com,2022-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",8177.53,Silver,1 +4167,Lisa Weaver,cartersusan@odonnell.org,2023-07-26,"{""language"": ""DE"", ""currency"": ""MXN""}",2320.81,Gold,1 +4168,Chad Washington,scottdonovan@bass.org,2022-07-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5767.07,Silver,1 +4169,Kenneth Dodson,fyoder@wright.org,2024-10-31,"{""language"": ""ES"", ""currency"": ""GBP""}",6652.31,Gold,0 +4170,Thomas Lambert,williamlarson@gmail.com,2024-09-07,"{""language"": ""EN"", ""currency"": ""EUR""}",6164.57,Silver,1 +4171,Michael Rodriguez,mortonmatthew@brennan-li.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5013.4,Silver,1 +4172,Jacob Saunders,stevenmurray@smith.biz,2021-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",5713.78,Bronze,0 +4173,Andrew Harris,kirbywilliam@atkins-johnson.com,2022-04-19,"{""language"": ""DE"", ""currency"": ""EUR""}",6016.9,Gold,1 +4174,Claire Ibarra,dennis91@yahoo.com,2021-09-07,"{""language"": ""FR"", ""currency"": ""USD""}",6665.57,Bronze,0 +4175,Jared Johnson,lyonscharles@baldwin.com,2020-10-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6403.19,Bronze,0 +4176,Michelle Murillo,randallmichelle@sanford.info,2021-11-08,"{""language"": ""IT"", ""currency"": ""EUR""}",3985.83,Silver,0 +4177,Craig Chandler,candaceallen@hotmail.com,2024-01-18,"{""language"": ""IT"", ""currency"": ""CAD""}",9930.33,Gold,0 +4178,Paul Davidson,jacqueline94@hotmail.com,2021-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",8213.32,Silver,1 +4179,Steven Moody,cmartinez@hayes-russell.biz,2021-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",9440.16,Silver,1 +4180,Lauren Velasquez,jasminebrown@yahoo.com,2021-06-29,"{""language"": ""EN"", ""currency"": ""CAD""}",6066.57,Gold,1 +4181,Maureen Richardson,lorilee@riggs.net,2022-10-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3049.33,Silver,1 +4182,Raymond Roman,mccoyjoseph@johnson-fleming.com,2024-04-02,"{""language"": ""IT"", ""currency"": ""USD""}",8693.82,Silver,1 +4183,Logan Kaiser,rebecca71@hotmail.com,2020-02-17,"{""language"": ""FR"", ""currency"": ""USD""}",9427.18,Bronze,0 +4184,Michael Joseph,greenkelsey@gmail.com,2022-07-02,"{""language"": ""ES"", ""currency"": ""MXN""}",1580.81,Gold,1 +4185,John Lopez,ncooke@torres-stokes.com,2021-10-18,"{""language"": ""EN"", ""currency"": ""CAD""}",7438.69,Bronze,1 +4186,Elizabeth Rosario,frobinson@kim.com,2023-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",8912.37,Gold,1 +4187,Gary Crawford,tyler63@jordan.com,2021-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",5671.65,Silver,0 +4188,Sarah Lewis,mccoyjonathan@grant.com,2021-05-14,"{""language"": ""IT"", ""currency"": ""GBP""}",7481.16,Silver,0 +4189,Brian Strong,amanda90@moore.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""EUR""}",7448.79,Bronze,0 +4190,Katherine Nichols,russellkenneth@ford.info,2022-10-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5740.47,Gold,1 +4191,Karen Griffin,ronaldmarshall@franklin.info,2024-11-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3350.18,Gold,1 +4192,Andrew Rowe,daniel78@yahoo.com,2021-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",7691.5,Bronze,0 +4193,Amanda Anderson,jesse93@gmail.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",9702.62,Gold,1 +4194,David Keith,jameswilliams@yahoo.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""USD""}",1159.61,Bronze,0 +4195,Scott Miller,blackbrian@bauer.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",5719.21,Bronze,1 +4196,Anthony Melendez,russellwilliams@watson.com,2022-10-24,"{""language"": ""DE"", ""currency"": ""EUR""}",8026.72,Gold,1 +4197,Julia Gibson,jessicavasquez@gmail.com,2022-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",8215.51,Gold,0 +4198,Evelyn Lee,jermainerobertson@silva.info,2020-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",6080.0,Bronze,0 +4199,Leslie Hernandez,vsanchez@johnson-johnson.info,2020-09-27,"{""language"": ""IT"", ""currency"": ""MXN""}",7768.18,Bronze,0 +4200,Morgan Harris,kreynolds@greer-rodriguez.com,2020-02-03,"{""language"": ""FR"", ""currency"": ""GBP""}",7773.94,Gold,0 +4201,Johnathan Hatfield,tortiz@yahoo.com,2021-10-10,"{""language"": ""EN"", ""currency"": ""GBP""}",3800.22,Bronze,0 +4202,Beth Chavez,davidford@martin-carter.com,2021-12-24,"{""language"": ""ES"", ""currency"": ""EUR""}",4060.65,Silver,0 +4203,Samantha Byrd,greed@cunningham.biz,2024-03-29,"{""language"": ""EN"", ""currency"": ""CAD""}",8730.34,Gold,0 +4204,Patrick Richmond,thompsoncaroline@rojas-davis.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""CAD""}",6015.85,Silver,0 +4205,Thomas Owens,coxbenjamin@hotmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7425.62,Gold,1 +4206,Robin Taylor,mhouse@hotmail.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",891.82,Bronze,0 +4207,Jay Benitez,nicholascoleman@barber-smith.biz,2022-09-23,"{""language"": ""FR"", ""currency"": ""GBP""}",6286.34,Bronze,1 +4208,Kelsey Lin,vmartinez@hotmail.com,2023-09-06,"{""language"": ""EN"", ""currency"": ""MXN""}",2061.34,Silver,0 +4209,Mitchell Hernandez,rodgerslisa@watson-henry.biz,2020-02-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4197.27,Gold,0 +4210,Margaret Juarez,cfisher@benson-fox.biz,2020-10-29,"{""language"": ""ES"", ""currency"": ""USD""}",6701.47,Silver,1 +4211,Parker Mcdonald,josephlloyd@lewis-gonzalez.com,2020-05-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7112.47,Bronze,0 +4212,Jodi Nunez,kelleyjulia@martin-cunningham.com,2021-06-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2924.63,Bronze,0 +4213,Matthew Howard,isherman@yahoo.com,2023-07-20,"{""language"": ""DE"", ""currency"": ""USD""}",3167.31,Bronze,0 +4214,Jessica Spencer,joshuacruz@hotmail.com,2020-08-18,"{""language"": ""ES"", ""currency"": ""EUR""}",7559.01,Gold,1 +4215,Amber Brooks,russell42@martinez-nelson.com,2024-03-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1979.57,Silver,0 +4216,Jessica Lara,elijaharmstrong@bailey.biz,2024-10-02,"{""language"": ""EN"", ""currency"": ""USD""}",675.1,Silver,1 +4217,James Wells,waltonscott@hansen-barton.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""USD""}",5083.92,Bronze,0 +4218,John Green,stephen75@rodriguez.com,2022-10-03,"{""language"": ""DE"", ""currency"": ""MXN""}",3576.64,Silver,1 +4219,Sabrina Ellis,davisisaiah@hotmail.com,2020-12-25,"{""language"": ""DE"", ""currency"": ""GBP""}",6507.23,Silver,0 +4220,Joshua Wright,qhughes@yahoo.com,2023-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9105.08,Bronze,0 +4221,Margaret Ortega,thomas78@hotmail.com,2024-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",7959.15,Bronze,1 +4222,Elizabeth Medina,cgarcia@mitchell-gonzales.com,2023-03-14,"{""language"": ""DE"", ""currency"": ""CAD""}",6390.45,Gold,1 +4223,Heather Saunders,smithcurtis@yahoo.com,2020-09-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5230.75,Gold,1 +4224,Michele Bates,hernandezjillian@smith-delgado.com,2021-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7125.46,Bronze,0 +4225,Dawn Bradshaw,meadowsjoseph@jarvis.com,2022-05-08,"{""language"": ""EN"", ""currency"": ""USD""}",5043.62,Bronze,1 +4226,Luis Moore,alan68@yahoo.com,2020-07-20,"{""language"": ""FR"", ""currency"": ""CAD""}",9861.08,Bronze,1 +4227,Sarah Simmons,osharp@yahoo.com,2021-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8591.14,Silver,0 +4228,Kenneth Reed,clozano@chang-simpson.com,2024-07-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3300.9,Bronze,0 +4229,Megan Rodgers,lucasparker@patton.com,2024-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",4637.82,Gold,1 +4230,Marvin Pugh,andrewortiz@simpson-gonzalez.com,2024-09-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6316.11,Gold,1 +4231,Mary Ross,usmith@hotmail.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",417.9,Bronze,0 +4232,Michael Davis,twalsh@gmail.com,2021-06-22,"{""language"": ""EN"", ""currency"": ""EUR""}",3945.73,Silver,1 +4233,Mrs. Emily Thomas,csandoval@yahoo.com,2021-03-20,"{""language"": ""DE"", ""currency"": ""GBP""}",6514.25,Gold,1 +4234,Natalie Garcia,mcconnellkatherine@hotmail.com,2022-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",2325.8,Silver,1 +4235,Nicole Hernandez,vthompson@hotmail.com,2022-11-21,"{""language"": ""EN"", ""currency"": ""USD""}",7577.49,Gold,1 +4236,Warren Williams,christopherturner@hotmail.com,2021-11-20,"{""language"": ""ES"", ""currency"": ""GBP""}",7669.4,Gold,0 +4237,Samuel Taylor,wbarnett@estrada.com,2022-06-16,"{""language"": ""FR"", ""currency"": ""USD""}",7251.45,Bronze,1 +4238,Mr. Brandon Price,peter36@hotmail.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",5517.23,Bronze,1 +4239,Krystal Thornton,shelly60@gmail.com,2021-03-13,"{""language"": ""IT"", ""currency"": ""GBP""}",6212.12,Bronze,0 +4240,Joshua Brown,sarahdean@gmail.com,2020-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",690.19,Bronze,1 +4241,Brittany Jones,timothy64@cross.com,2023-03-27,"{""language"": ""IT"", ""currency"": ""CAD""}",1732.74,Silver,1 +4242,Bryan Hall,xmitchell@yahoo.com,2022-04-25,"{""language"": ""DE"", ""currency"": ""EUR""}",7684.41,Bronze,1 +4243,Bryan Johnson,qgarza@bush.org,2020-10-01,"{""language"": ""ES"", ""currency"": ""GBP""}",6083.45,Bronze,1 +4244,Jodi Henry MD,dgarner@padilla.com,2020-08-11,"{""language"": ""ES"", ""currency"": ""USD""}",1322.66,Bronze,0 +4245,Tonya Stephens,wilsonmatthew@flores.org,2023-08-22,"{""language"": ""FR"", ""currency"": ""USD""}",7495.51,Silver,1 +4246,Michael Miller,kempronald@vargas-tucker.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""CAD""}",8692.96,Gold,1 +4247,Denise Pacheco,paula41@hotmail.com,2024-10-28,"{""language"": ""FR"", ""currency"": ""GBP""}",6317.89,Gold,1 +4248,Kristen Hanson,orusso@brooks.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""USD""}",4017.59,Bronze,1 +4249,Randall Carr,monicariley@hotmail.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",1911.73,Bronze,1 +4250,Rebecca Maldonado,kenneth25@hotmail.com,2021-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",936.81,Bronze,1 +4251,Leslie Zhang,ambergarcia@gmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",1882.02,Silver,1 +4252,Steve Cook,lisalane@hotmail.com,2020-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",9714.59,Silver,1 +4253,Elizabeth Robinson,johnsonjohn@sutton-harmon.net,2021-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",2124.74,Silver,0 +4254,Dr. Brenda Hull DDS,asmith@cunningham-fischer.org,2022-08-08,"{""language"": ""IT"", ""currency"": ""USD""}",2778.91,Bronze,1 +4255,Antonio Porter,carlos45@henderson.com,2023-06-18,"{""language"": ""EN"", ""currency"": ""EUR""}",4249.3,Gold,0 +4256,Patricia Floyd,jamesturner@king.org,2020-09-14,"{""language"": ""EN"", ""currency"": ""CAD""}",1218.46,Silver,1 +4257,Brian Brooks,raymondstewart@martinez.org,2024-08-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8163.42,Silver,0 +4258,Matthew Fleming,daviscrystal@mclaughlin.com,2022-01-09,"{""language"": ""IT"", ""currency"": ""EUR""}",1201.62,Bronze,0 +4259,Dennis Elliott,woodwardthomas@smith.com,2020-08-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8122.57,Silver,1 +4260,Dr. Kathleen Daniels,brett24@hill.com,2023-07-02,"{""language"": ""DE"", ""currency"": ""GBP""}",3061.34,Gold,0 +4261,Kylie Howell,higginsalejandro@griffin.biz,2022-12-19,"{""language"": ""DE"", ""currency"": ""MXN""}",6097.77,Gold,0 +4262,Taylor Carter,joseph60@yahoo.com,2024-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",2571.78,Gold,1 +4263,Patrick Williams,maryschmidt@hughes.com,2023-07-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6545.65,Bronze,0 +4264,Heather Moore,scottkenneth@gonzalez-taylor.org,2023-11-28,"{""language"": ""ES"", ""currency"": ""MXN""}",773.66,Silver,1 +4265,Timothy Jones,scottmarie@yahoo.com,2021-03-13,"{""language"": ""EN"", ""currency"": ""EUR""}",421.52,Gold,0 +4266,Henry Lawson,kenneth43@jones-vega.com,2024-06-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1469.56,Silver,1 +4267,Bryce Anderson,danielmccullough@gmail.com,2022-01-24,"{""language"": ""DE"", ""currency"": ""USD""}",8265.2,Gold,1 +4268,Jenna Peck,jasminemartin@peters.info,2024-08-05,"{""language"": ""IT"", ""currency"": ""MXN""}",618.93,Bronze,0 +4269,Larry Mcclain,erinnunez@williams.info,2020-06-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4403.65,Gold,1 +4270,Kimberly Mahoney,stuartrebecca@warren.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7865.59,Gold,1 +4271,Stacy Pearson,walkersteven@yahoo.com,2022-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",7710.19,Silver,0 +4272,Victoria Hansen,marshallbrian@gmail.com,2020-10-24,"{""language"": ""DE"", ""currency"": ""MXN""}",7285.96,Bronze,1 +4273,Todd Rios,ihart@townsend.com,2023-09-19,"{""language"": ""EN"", ""currency"": ""USD""}",5699.01,Gold,0 +4274,Katie Johnston,danielpatricia@yahoo.com,2021-09-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3340.36,Silver,0 +4275,Amy Cameron,gail66@hotmail.com,2020-03-07,"{""language"": ""ES"", ""currency"": ""EUR""}",6209.59,Gold,0 +4276,Paul Johnson,icampbell@mills.org,2021-08-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3564.84,Bronze,0 +4277,Scott Wilkerson,rachelmoore@holmes.com,2024-06-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3472.66,Gold,0 +4278,Amber Carrillo,mcguirechase@hotmail.com,2023-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",3990.48,Silver,1 +4279,Daniel Lyons,thomastanner@yahoo.com,2022-04-27,"{""language"": ""IT"", ""currency"": ""USD""}",3567.53,Bronze,1 +4280,Bonnie Garcia,qperez@yahoo.com,2022-10-27,"{""language"": ""IT"", ""currency"": ""MXN""}",5687.42,Gold,1 +4281,Russell Shields,ibailey@fox-reyes.com,2021-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",5820.38,Silver,1 +4282,Alexis Brown,lisahopkins@gmail.com,2023-01-26,"{""language"": ""IT"", ""currency"": ""CAD""}",4273.92,Bronze,1 +4283,Michelle Gonzalez,williamsbryan@garcia.biz,2023-08-18,"{""language"": ""DE"", ""currency"": ""CAD""}",3238.23,Bronze,1 +4284,Shannon Luna,nmooney@murphy.com,2021-07-28,"{""language"": ""IT"", ""currency"": ""EUR""}",8204.09,Gold,1 +4285,Angela Reyes,joneskyle@christian-baldwin.com,2020-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",762.41,Gold,1 +4286,Bobby Nelson,tlong@gmail.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""MXN""}",9508.71,Bronze,1 +4287,Lisa Warren,xmiller@yahoo.com,2023-02-01,"{""language"": ""ES"", ""currency"": ""USD""}",892.37,Silver,0 +4288,Hannah Navarro,joneskevin@hurley.biz,2024-11-01,"{""language"": ""EN"", ""currency"": ""CAD""}",4587.57,Silver,0 +4289,Brian Brown,wrodriguez@gmail.com,2021-09-08,"{""language"": ""FR"", ""currency"": ""MXN""}",1847.01,Bronze,1 +4290,Jennifer Campbell,warrenchad@hotmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7990.63,Gold,1 +4291,Christopher Anderson,tiffany06@rojas.net,2023-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",9106.96,Gold,1 +4292,Oscar Williams,dylan68@gmail.com,2020-07-15,"{""language"": ""IT"", ""currency"": ""GBP""}",8459.23,Bronze,1 +4293,Bryan Dixon,marysparks@villarreal-gamble.org,2024-08-23,"{""language"": ""EN"", ""currency"": ""GBP""}",639.02,Bronze,1 +4294,Barbara Ellis,pkirby@yahoo.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",6244.94,Gold,0 +4295,Katie Garcia,robinmalone@gmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6961.2,Bronze,0 +4296,Lori Ford,fwhite@briggs.com,2024-04-16,"{""language"": ""EN"", ""currency"": ""USD""}",8514.4,Bronze,1 +4297,Debra Jones,lisabond@gmail.com,2024-05-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6498.01,Silver,1 +4298,Erika Delgado,timmoore@wright-velazquez.org,2021-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8258.99,Silver,0 +4299,Ethan Jackson,hjones@simpson.net,2023-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",3620.52,Bronze,1 +4300,Jennifer Cook,shawn78@wilkinson.com,2021-01-24,"{""language"": ""DE"", ""currency"": ""MXN""}",9751.46,Gold,1 +4301,Billy Saunders,sarahfritz@gmail.com,2023-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",5887.09,Silver,0 +4302,Brianna Moore,annamcpherson@gmail.com,2022-09-19,"{""language"": ""ES"", ""currency"": ""EUR""}",9737.71,Silver,1 +4303,David Perez,davidjames@shaw.com,2021-07-15,"{""language"": ""EN"", ""currency"": ""GBP""}",1945.35,Silver,1 +4304,Lynn White MD,garciakatherine@lucero.com,2022-02-01,"{""language"": ""IT"", ""currency"": ""MXN""}",7279.37,Silver,1 +4305,Melissa Werner,lorihurley@donovan.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""EUR""}",873.29,Bronze,1 +4306,Sarah Rice,pamela39@gmail.com,2022-12-28,"{""language"": ""FR"", ""currency"": ""GBP""}",8483.14,Gold,1 +4307,Erin Salas,fhawkins@castillo.net,2022-09-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3840.86,Silver,1 +4308,George Cooper,ellisonerica@yahoo.com,2022-04-11,"{""language"": ""IT"", ""currency"": ""USD""}",2554.14,Bronze,0 +4309,John Durham,wsimpson@wells-rodriguez.com,2023-12-21,"{""language"": ""DE"", ""currency"": ""USD""}",5313.92,Silver,0 +4310,Jodi Clark,awright@hotmail.com,2021-09-14,"{""language"": ""DE"", ""currency"": ""EUR""}",8709.25,Bronze,1 +4311,Trevor Moody,monicawolfe@yahoo.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3513.7,Gold,0 +4312,Ryan Espinoza,bentleyscott@arellano-ochoa.com,2022-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7461.0,Bronze,1 +4313,Joseph Lewis,nicholeramos@hunt-jacobson.com,2020-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3634.89,Gold,0 +4314,Tiffany Price,benjamin05@alvarez.com,2020-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",6884.56,Silver,0 +4315,James Hoffman,slee@brown-diaz.com,2022-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",6687.65,Gold,0 +4316,Eileen Lewis DDS,george97@yahoo.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3886.13,Silver,0 +4317,Daniel Lopez,rebeccajohnson@brooks-baker.org,2021-06-19,"{""language"": ""ES"", ""currency"": ""MXN""}",5759.81,Silver,0 +4318,Donald Davis,kristin58@gmail.com,2022-11-24,"{""language"": ""EN"", ""currency"": ""MXN""}",2893.9,Silver,1 +4319,Thomas Murphy,klyons@hotmail.com,2020-04-15,"{""language"": ""ES"", ""currency"": ""CAD""}",1340.5,Silver,1 +4320,Eric Cole,wgeorge@yahoo.com,2020-05-17,"{""language"": ""EN"", ""currency"": ""GBP""}",6232.56,Bronze,0 +4321,Kimberly Riley,bjohnson@chambers.com,2022-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",8812.64,Silver,1 +4322,Samuel Figueroa,bakermichelle@jackson-mcdaniel.biz,2022-01-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2162.93,Gold,0 +4323,Charles Smith,pamelaorozco@hotmail.com,2023-12-22,"{""language"": ""EN"", ""currency"": ""GBP""}",4713.73,Silver,0 +4324,Dennis Davis,kennethsmith@graham.net,2021-12-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7201.21,Bronze,1 +4325,Anita Navarro,eric72@butler.com,2022-10-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6457.75,Bronze,1 +4326,Henry Kelly,brendanmanning@gmail.com,2020-05-14,"{""language"": ""ES"", ""currency"": ""EUR""}",3741.25,Gold,0 +4327,Michael Sawyer,anarose@yahoo.com,2024-11-23,"{""language"": ""IT"", ""currency"": ""MXN""}",5942.22,Gold,1 +4328,Meghan Calderon,fspencer@meyer.com,2023-09-14,"{""language"": ""IT"", ""currency"": ""USD""}",7229.52,Bronze,0 +4329,Susan Sherman,gballard@yahoo.com,2020-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8544.57,Bronze,0 +4330,Kelly Everett,elizabeth22@morton.com,2024-05-25,"{""language"": ""EN"", ""currency"": ""EUR""}",1934.2,Silver,1 +4331,Christina Yang,erinallen@hotmail.com,2021-04-03,"{""language"": ""FR"", ""currency"": ""USD""}",3270.55,Gold,1 +4332,Edwin Andrade,lopezhaley@gmail.com,2024-03-20,"{""language"": ""FR"", ""currency"": ""MXN""}",6580.76,Gold,0 +4333,Mary Carter,elliottsabrina@yahoo.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",9526.51,Gold,0 +4334,William Butler,glenntheresa@freeman.com,2023-03-25,"{""language"": ""EN"", ""currency"": ""CAD""}",5735.22,Silver,1 +4335,Ashley Smith,sweaver@yahoo.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""MXN""}",2046.99,Bronze,1 +4336,Jeanette Powell,porterstephen@myers.net,2020-11-02,"{""language"": ""IT"", ""currency"": ""MXN""}",7223.04,Bronze,0 +4337,Valerie Nichols,brian82@johnson.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",1106.04,Bronze,0 +4338,Ashlee Villa,carrie73@hotmail.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""MXN""}",7200.91,Bronze,0 +4339,James Smith,jamietorres@gmail.com,2023-03-09,"{""language"": ""ES"", ""currency"": ""MXN""}",1905.66,Gold,1 +4340,Joseph Mccormick,bnicholson@white.com,2022-08-26,"{""language"": ""DE"", ""currency"": ""USD""}",5857.98,Silver,0 +4341,Emily Stephenson,peter97@yahoo.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""CAD""}",1117.89,Bronze,1 +4342,Susan Thornton,molly48@williams-alvarez.biz,2023-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",7658.41,Silver,1 +4343,Carolyn Mccoy,mccannkendra@gmail.com,2024-05-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2319.72,Silver,0 +4344,Caitlin Williams MD,tiffanybrock@gmail.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1642.47,Gold,1 +4345,Patrick Rosales,scott78@castro.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",8458.56,Bronze,0 +4346,Jill Brooks,hollowaycynthia@cole.info,2024-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4882.78,Gold,1 +4347,Donald Taylor,connor52@hotmail.com,2023-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",7412.96,Silver,0 +4348,Cindy Rose,melissaedwards@douglas.com,2020-08-05,"{""language"": ""EN"", ""currency"": ""GBP""}",2787.56,Gold,0 +4349,Dwayne Logan,karenpatterson@yahoo.com,2022-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",7095.79,Gold,0 +4350,Eugene Myers,hillwilliam@yahoo.com,2024-02-29,"{""language"": ""ES"", ""currency"": ""CAD""}",9706.89,Bronze,1 +4351,Christopher Alvarez,birdlisa@reeves.com,2020-11-24,"{""language"": ""EN"", ""currency"": ""USD""}",967.16,Silver,0 +4352,Patricia Torres,murillokara@gmail.com,2022-12-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2854.85,Gold,0 +4353,David Lewis,ronald94@garcia.com,2022-06-02,"{""language"": ""ES"", ""currency"": ""EUR""}",2490.2,Silver,0 +4354,Michael Fields,timothybuckley@hotmail.com,2021-02-21,"{""language"": ""ES"", ""currency"": ""CAD""}",7376.13,Bronze,1 +4355,Vickie Kelley,woodsgregory@thompson.com,2023-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",6381.55,Silver,1 +4356,Julie Peterson,jasonbenson@gmail.com,2021-07-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7183.19,Silver,0 +4357,Jennifer Petty,duncanphillip@robinson-carpenter.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3792.82,Gold,0 +4358,Mary Floyd,devinmitchell@gmail.com,2023-01-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1286.1,Gold,1 +4359,Andrew Williams,burkejeffrey@yahoo.com,2023-08-22,"{""language"": ""ES"", ""currency"": ""GBP""}",760.94,Bronze,1 +4360,Amy Moody,reedalexandra@davis-barnes.info,2022-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",2960.18,Bronze,1 +4361,Darryl Haley,kenneth57@johnson-smith.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""GBP""}",5956.09,Bronze,0 +4362,George Schmidt,orivera@gmail.com,2023-05-01,"{""language"": ""EN"", ""currency"": ""MXN""}",5054.02,Bronze,1 +4363,Dr. Ricardo Lowe,smithdanielle@gmail.com,2024-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",2551.89,Bronze,0 +4364,Samantha James,josephhurst@gmail.com,2020-11-15,"{""language"": ""EN"", ""currency"": ""GBP""}",4351.29,Silver,0 +4365,Antonio Logan,ana38@wong-willis.com,2022-11-03,"{""language"": ""EN"", ""currency"": ""MXN""}",722.82,Silver,0 +4366,Ryan Henry,alex85@jones-montoya.com,2021-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",499.97,Gold,1 +4367,Christopher Bailey,fernandezgregory@hotmail.com,2024-03-24,"{""language"": ""ES"", ""currency"": ""MXN""}",3179.25,Bronze,1 +4368,Kiara Jackson,stephanie90@hotmail.com,2022-05-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7719.77,Silver,0 +4369,Pamela Vaughn,hbrown@gibson.net,2024-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",1920.71,Gold,1 +4370,Laura Scott,rogersjason@wood.org,2021-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",9603.03,Gold,1 +4371,Mrs. Robin Osborn,qsingleton@yahoo.com,2024-09-15,"{""language"": ""IT"", ""currency"": ""EUR""}",5851.88,Silver,0 +4372,Douglas Sanchez,desiree03@hotmail.com,2024-09-26,"{""language"": ""IT"", ""currency"": ""EUR""}",2730.27,Silver,1 +4373,Rachel Lowery,dcarroll@gmail.com,2024-01-17,"{""language"": ""IT"", ""currency"": ""CAD""}",1881.82,Bronze,1 +4374,Michael Murphy,cesparza@peters.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""USD""}",5117.74,Silver,0 +4375,Tammy Moore,webergeorge@williams.com,2022-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",8067.62,Bronze,1 +4376,Matthew Sanchez,brian74@hernandez.com,2023-10-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1900.47,Bronze,0 +4377,Jean Matthews,utorres@gmail.com,2021-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",609.41,Silver,0 +4378,Brandon Brooks,huangjessica@bauer.com,2022-07-03,"{""language"": ""EN"", ""currency"": ""MXN""}",6200.98,Bronze,1 +4379,Michael Wheeler,brittanyrojas@gmail.com,2024-04-13,"{""language"": ""IT"", ""currency"": ""CAD""}",4194.24,Silver,0 +4380,Jenna Russell,teresawu@phillips-wilkins.com,2022-09-05,"{""language"": ""IT"", ""currency"": ""USD""}",4675.71,Bronze,0 +4381,Keith Baker,feliciajohnson@hotmail.com,2021-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",1776.35,Gold,0 +4382,Joshua Brown,xnelson@wong.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""USD""}",8475.25,Gold,0 +4383,Dr. Hannah Maxwell DDS,praymond@yahoo.com,2022-05-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9310.78,Gold,0 +4384,Dylan Kline,rgreen@hotmail.com,2022-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",5642.95,Silver,0 +4385,Devin Perry,obernard@thomas.net,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",2301.39,Gold,1 +4386,Amanda Martin,weissmatthew@hotmail.com,2021-11-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5007.68,Bronze,1 +4387,Margaret Houston,phicks@hotmail.com,2020-01-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2688.76,Gold,0 +4388,Andrea Peters,mariamiller@gmail.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""GBP""}",1882.81,Bronze,1 +4389,Amber Mitchell,williamssue@wyatt.com,2024-08-01,"{""language"": ""EN"", ""currency"": ""CAD""}",5449.53,Gold,0 +4390,Susan Vazquez,boothchristopher@gmail.com,2023-04-30,"{""language"": ""ES"", ""currency"": ""EUR""}",6751.34,Silver,1 +4391,Anna Moore,tedwards@yahoo.com,2021-09-14,"{""language"": ""FR"", ""currency"": ""CAD""}",6196.08,Gold,0 +4392,Brianna Alexander,hallalexander@hotmail.com,2023-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",8522.23,Silver,0 +4393,Matthew Cohen,huffmanlisa@gmail.com,2023-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",4159.09,Gold,1 +4394,Mrs. Jill Campbell,mooneycharlene@hotmail.com,2024-01-01,"{""language"": ""DE"", ""currency"": ""EUR""}",1538.88,Gold,1 +4395,Ronnie Crawford,wrussell@hotmail.com,2024-10-25,"{""language"": ""EN"", ""currency"": ""USD""}",7422.13,Silver,1 +4396,Debbie Ellis,annefletcher@yahoo.com,2020-11-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2502.08,Silver,1 +4397,Robert Garcia,rmartinez@hotmail.com,2021-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",1725.68,Bronze,1 +4398,Steven Davis DDS,brenda67@hotmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",2582.26,Silver,1 +4399,Madison Schaefer,slong@gmail.com,2023-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4489.87,Bronze,1 +4400,Derek Spears,jamesgonzalez@gmail.com,2021-12-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1309.23,Silver,1 +4401,William Barajas,alexander91@young.com,2020-07-18,"{""language"": ""EN"", ""currency"": ""MXN""}",6015.47,Gold,0 +4402,Cynthia Rocha,alexa65@douglas.com,2021-11-18,"{""language"": ""EN"", ""currency"": ""EUR""}",6620.23,Gold,1 +4403,Henry Bush,norma19@hotmail.com,2021-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",6409.83,Silver,0 +4404,Jeremy Ferguson,michaelsmith@gill-hill.com,2023-04-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3691.3,Silver,0 +4405,Kathy Johnson,julianlee@hotmail.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7738.03,Gold,1 +4406,Valerie Peterson,tommyvaughn@barker.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",6675.96,Silver,0 +4407,Jacob Ayala,epeterson@robinson-king.net,2023-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",1534.29,Silver,0 +4408,Mary Farmer,leslie21@hotmail.com,2021-12-30,"{""language"": ""FR"", ""currency"": ""USD""}",8264.73,Gold,1 +4409,Tiffany Mendez,jared45@harrington.com,2020-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",3160.29,Bronze,0 +4410,Christine Savage,udavis@gmail.com,2022-05-25,"{""language"": ""ES"", ""currency"": ""USD""}",673.28,Gold,0 +4411,Ryan Marks,daniel14@graham.com,2023-10-02,"{""language"": ""ES"", ""currency"": ""USD""}",9830.5,Gold,0 +4412,Nathan Flynn,frysandra@walters.com,2022-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",674.65,Bronze,0 +4413,Briana Smith,jesse20@yahoo.com,2023-12-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6688.84,Bronze,1 +4414,Gail Parker,joseph92@johnson.com,2023-06-23,"{""language"": ""ES"", ""currency"": ""USD""}",4579.57,Silver,1 +4415,Kevin Cole,eric57@gmail.com,2024-12-11,"{""language"": ""FR"", ""currency"": ""EUR""}",5771.69,Gold,1 +4416,Marissa Richmond,norozco@hotmail.com,2020-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9467.66,Gold,0 +4417,Jennifer Durham,gtaylor@osborn-davenport.com,2023-07-08,"{""language"": ""ES"", ""currency"": ""CAD""}",3676.82,Gold,0 +4418,Jonathan Copeland,gkennedy@davis-campos.org,2022-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",9021.69,Bronze,0 +4419,Linda Melendez,lauragreen@simpson.org,2021-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",3689.54,Silver,0 +4420,Anthony Soto,marylloyd@gmail.com,2023-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",1200.46,Bronze,1 +4421,Joel Johnston,acastillo@gmail.com,2022-05-13,"{""language"": ""IT"", ""currency"": ""USD""}",3828.71,Bronze,0 +4422,Ryan Conway,riverakimberly@mendoza.info,2020-04-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7735.8,Bronze,0 +4423,Steven Miller,williamthomas@yahoo.com,2022-11-08,"{""language"": ""DE"", ""currency"": ""CAD""}",3221.4,Gold,1 +4424,Michael Lucero,hwhite@farrell.info,2020-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4921.11,Gold,1 +4425,John Ochoa,westgina@hotmail.com,2022-03-10,"{""language"": ""FR"", ""currency"": ""CAD""}",2323.6,Silver,1 +4426,Christopher Mathis,robert75@hotmail.com,2021-02-07,"{""language"": ""IT"", ""currency"": ""GBP""}",8929.21,Silver,1 +4427,Angela Bright,amckenzie@harrison-dickerson.com,2020-10-13,"{""language"": ""FR"", ""currency"": ""CAD""}",2908.16,Bronze,1 +4428,Bradley Jennings,bradleystacy@yahoo.com,2024-10-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7691.91,Bronze,0 +4429,Rebecca Parker,amccall@pena.biz,2022-12-16,"{""language"": ""FR"", ""currency"": ""MXN""}",1820.87,Silver,1 +4430,Charles Douglas,zbell@saunders.com,2024-07-02,"{""language"": ""DE"", ""currency"": ""MXN""}",808.72,Bronze,1 +4431,Jennifer Johnson,jennifer02@rodriguez-blake.org,2022-10-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4095.01,Bronze,1 +4432,Allen Morgan,lrivera@yahoo.com,2020-09-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6002.74,Gold,1 +4433,Kristen Allison,martinsergio@yahoo.com,2020-10-16,"{""language"": ""ES"", ""currency"": ""USD""}",1196.73,Bronze,0 +4434,Shelly Jackson,david69@richards.com,2020-07-26,"{""language"": ""IT"", ""currency"": ""USD""}",2635.73,Silver,0 +4435,Krystal Fields,peterhale@lester.com,2021-01-23,"{""language"": ""ES"", ""currency"": ""CAD""}",4359.05,Silver,1 +4436,Marilyn Wolfe,cprince@edwards.com,2021-01-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8546.7,Bronze,0 +4437,Briana Smith,davidstewart@jensen.com,2021-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1077.6,Silver,1 +4438,James Soto,natalie93@yahoo.com,2022-05-23,"{""language"": ""EN"", ""currency"": ""USD""}",2079.83,Bronze,1 +4439,Heather May,martinangela@hotmail.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",6616.15,Silver,0 +4440,Brian Juarez,gdixon@pena.com,2023-07-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3658.07,Silver,0 +4441,Julia Flynn,kelseymiller@woods.com,2024-11-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9728.5,Gold,1 +4442,Mary Higgins,natalieparks@montgomery.com,2023-06-03,"{""language"": ""ES"", ""currency"": ""GBP""}",7707.64,Gold,0 +4443,Derek Alexander,bartonscott@lynn.info,2021-05-15,"{""language"": ""FR"", ""currency"": ""GBP""}",3611.06,Silver,0 +4444,David Sanchez,luke17@hotmail.com,2022-04-09,"{""language"": ""ES"", ""currency"": ""MXN""}",517.95,Bronze,0 +4445,Keith Hensley,matthew54@yahoo.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",5173.71,Silver,0 +4446,Christopher Williams,uyoung@paul.org,2021-06-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2773.12,Silver,0 +4447,Cody Erickson,joseph24@yahoo.com,2023-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1041.54,Bronze,1 +4448,Sherri Thompson,gomezcarrie@gmail.com,2021-03-23,"{""language"": ""FR"", ""currency"": ""USD""}",8372.06,Gold,1 +4449,Kayla Kline,parksbrenda@holder-hall.info,2023-03-13,"{""language"": ""FR"", ""currency"": ""USD""}",4505.75,Gold,1 +4450,Rick Turner,krista89@moss.com,2024-02-17,"{""language"": ""EN"", ""currency"": ""MXN""}",2859.98,Bronze,0 +4451,Brian Patterson,wrichardson@thompson.net,2022-10-06,"{""language"": ""EN"", ""currency"": ""GBP""}",8312.49,Gold,0 +4452,Kathleen Huber,lespinoza@gmail.com,2022-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",5854.9,Silver,0 +4453,Dr. Justin Kelley,juliehernandez@hotmail.com,2024-04-25,"{""language"": ""EN"", ""currency"": ""GBP""}",1088.87,Bronze,1 +4454,Antonio Dennis,uking@fernandez.org,2024-10-23,"{""language"": ""EN"", ""currency"": ""GBP""}",6387.72,Bronze,1 +4455,Anthony Miller,jwilkerson@powers-hanson.info,2020-05-20,"{""language"": ""ES"", ""currency"": ""GBP""}",6885.12,Gold,0 +4456,Jonathan Martin DVM,shawnmoreno@gmail.com,2023-03-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9524.68,Silver,1 +4457,Frank Cohen,zrogers@mejia-perry.info,2023-07-09,"{""language"": ""FR"", ""currency"": ""EUR""}",1970.65,Bronze,0 +4458,Bailey Copeland,richardsmith@smith.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8664.87,Gold,0 +4459,Mary Harris,alan96@brooks-ruiz.com,2020-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",330.05,Silver,1 +4460,Kenneth Harris,huffkristine@peterson-arroyo.biz,2021-08-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6071.91,Silver,0 +4461,Brett Wilson,crosbylouis@yahoo.com,2021-03-13,"{""language"": ""DE"", ""currency"": ""USD""}",1624.65,Silver,1 +4462,Alex Hunter,newmanjames@gmail.com,2023-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2991.66,Silver,1 +4463,Travis Russo,qsmith@yahoo.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6511.37,Bronze,0 +4464,Katherine Ruiz,qflores@murphy.com,2020-05-24,"{""language"": ""EN"", ""currency"": ""USD""}",6914.61,Gold,0 +4465,Charles Martin,cdelgado@norris-palmer.com,2024-09-11,"{""language"": ""IT"", ""currency"": ""EUR""}",4730.91,Silver,1 +4466,Alexandra Green,leah17@gmail.com,2024-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",5387.57,Silver,0 +4467,Amanda Williams,megan22@heath-oneal.com,2023-09-12,"{""language"": ""EN"", ""currency"": ""CAD""}",8715.15,Gold,1 +4468,Audrey Ramos,vfoster@hotmail.com,2023-11-17,"{""language"": ""FR"", ""currency"": ""CAD""}",7441.58,Bronze,1 +4469,Arthur Foster,thompsonjeffrey@brown-nelson.info,2023-10-20,"{""language"": ""IT"", ""currency"": ""EUR""}",5841.72,Silver,1 +4470,Justin Collins,baldwintimothy@reed-munoz.com,2024-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",3784.69,Silver,1 +4471,Mary Harris,danieldunn@hotmail.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1466.8,Silver,1 +4472,Michelle Massey,stephanie22@brown-scott.com,2020-04-27,"{""language"": ""DE"", ""currency"": ""CAD""}",5032.94,Bronze,0 +4473,Jonathan Mills,xyang@hotmail.com,2022-06-27,"{""language"": ""DE"", ""currency"": ""MXN""}",2114.24,Gold,1 +4474,Suzanne Henry,josesandoval@yahoo.com,2023-06-30,"{""language"": ""FR"", ""currency"": ""USD""}",4358.43,Gold,0 +4475,Scott Lowery,powelltony@johnson-newton.com,2022-05-22,"{""language"": ""ES"", ""currency"": ""CAD""}",5856.03,Silver,0 +4476,Terry Parker,heather71@warren-watson.biz,2021-05-22,"{""language"": ""DE"", ""currency"": ""USD""}",9281.87,Silver,1 +4477,Michael Alvarado,webbjesse@gmail.com,2022-05-21,"{""language"": ""IT"", ""currency"": ""EUR""}",3961.23,Bronze,0 +4478,Heather Hamilton,sheilaschneider@medina.com,2022-11-27,"{""language"": ""EN"", ""currency"": ""EUR""}",1324.1,Bronze,0 +4479,Bradley Whitaker,loricunningham@gmail.com,2022-12-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6132.24,Gold,1 +4480,Sarah Ross,grimesbernard@johnson.org,2021-10-12,"{""language"": ""FR"", ""currency"": ""USD""}",7902.59,Bronze,1 +4481,Benjamin Thomas,shelly13@armstrong-grant.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",716.63,Gold,1 +4482,James Deleon,lfernandez@yahoo.com,2021-10-01,"{""language"": ""IT"", ""currency"": ""USD""}",5148.23,Gold,1 +4483,Colin Reed,qjohnson@hotmail.com,2023-11-03,"{""language"": ""IT"", ""currency"": ""CAD""}",4063.35,Silver,1 +4484,Travis Blake,michaelwells@gmail.com,2024-09-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3703.5,Bronze,1 +4485,Dr. Jesus Mays III,aramirez@yahoo.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5488.41,Silver,0 +4486,Taylor Flowers,rachelmontes@hotmail.com,2023-12-07,"{""language"": ""FR"", ""currency"": ""CAD""}",482.91,Silver,0 +4487,Rodney Dickerson,sramsey@phillips.biz,2024-07-20,"{""language"": ""EN"", ""currency"": ""CAD""}",720.15,Silver,0 +4488,Lauren Tucker,melanieolson@gmail.com,2022-01-10,"{""language"": ""DE"", ""currency"": ""CAD""}",139.98,Bronze,0 +4489,Joshua Moreno,lowemelissa@walters.com,2024-05-04,"{""language"": ""FR"", ""currency"": ""USD""}",7026.38,Bronze,0 +4490,Ashley Torres,vdelacruz@roberts.com,2022-03-27,"{""language"": ""EN"", ""currency"": ""EUR""}",717.9,Silver,0 +4491,Jennifer Reed,kristen29@yahoo.com,2024-07-17,"{""language"": ""EN"", ""currency"": ""EUR""}",5799.72,Gold,1 +4492,Lisa Sullivan,lvang@hotmail.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",266.75,Gold,1 +4493,Kelli Hernandez,morenojack@hotmail.com,2020-12-05,"{""language"": ""ES"", ""currency"": ""GBP""}",842.41,Gold,1 +4494,Calvin Hicks,ibarrabonnie@hotmail.com,2023-12-10,"{""language"": ""ES"", ""currency"": ""EUR""}",1499.2,Bronze,1 +4495,Kimberly Jones,danielingram@morgan.biz,2023-12-19,"{""language"": ""FR"", ""currency"": ""MXN""}",3931.12,Bronze,0 +4496,James Booker DDS,michael28@hart.info,2024-02-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9414.0,Silver,1 +4497,Daniel Acosta,rsteele@smith-barnes.com,2022-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",1607.17,Silver,1 +4498,Brittany Ramos,kayla62@butler-daniels.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7500.49,Bronze,1 +4499,Peter Diaz,coreymitchell@jacobs.org,2023-06-29,"{""language"": ""IT"", ""currency"": ""CAD""}",8711.51,Gold,1 +4500,Brenda Williams,debracobb@davis.com,2023-05-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6532.36,Gold,1 +4501,Matthew Bowers,stephanierogers@hale.com,2022-03-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7816.15,Gold,1 +4502,Danny Bernard,johnmccormick@meyer.com,2020-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",7982.33,Gold,0 +4503,Richard Rice,wongvictor@chen-williams.com,2021-12-30,"{""language"": ""ES"", ""currency"": ""GBP""}",6151.3,Gold,0 +4504,Christopher Joseph,mary49@yahoo.com,2020-10-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8301.5,Bronze,1 +4505,Jennifer Ingram,moorechristopher@hotmail.com,2020-08-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7842.44,Bronze,1 +4506,Robert Coffey,suzanne91@ortiz.info,2024-11-22,"{""language"": ""FR"", ""currency"": ""USD""}",7273.75,Silver,0 +4507,Kenneth Jackson,xmitchell@hotmail.com,2024-11-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8259.03,Silver,1 +4508,Michelle Gonzales,omason@washington.info,2022-08-20,"{""language"": ""DE"", ""currency"": ""CAD""}",1555.36,Gold,1 +4509,Scott Fuller,williamwhite@yahoo.com,2024-08-16,"{""language"": ""FR"", ""currency"": ""MXN""}",989.01,Bronze,1 +4510,Karen Huff,ashley04@hotmail.com,2023-04-26,"{""language"": ""FR"", ""currency"": ""GBP""}",8829.62,Gold,1 +4511,Andrew Lozano,jessica53@stanley.org,2022-02-03,"{""language"": ""IT"", ""currency"": ""CAD""}",9382.91,Bronze,0 +4512,Joel Miles,christopher50@thompson.net,2024-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",4235.63,Silver,1 +4513,Amanda Levine,mckaykim@schwartz.com,2023-03-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1046.75,Bronze,1 +4514,Linda Herring,kcampbell@clarke.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",623.74,Silver,1 +4515,Jason Thompson,emilycurry@smith-smith.com,2023-11-08,"{""language"": ""ES"", ""currency"": ""MXN""}",6968.66,Gold,0 +4516,Andrew Mercado,luis45@miles.net,2022-05-16,"{""language"": ""ES"", ""currency"": ""MXN""}",4779.35,Silver,1 +4517,Samuel Smith,ngibson@hobbs.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",1057.58,Gold,0 +4518,Jody White,sharvey@yahoo.com,2020-11-06,"{""language"": ""DE"", ""currency"": ""EUR""}",8654.26,Gold,0 +4519,Dorothy Robbins,csnyder@yahoo.com,2021-11-08,"{""language"": ""EN"", ""currency"": ""USD""}",296.34,Gold,0 +4520,Michelle Hardy,josephnoble@velazquez.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""USD""}",5502.78,Silver,1 +4521,Tammy Goodman,susancarter@gmail.com,2020-11-11,"{""language"": ""EN"", ""currency"": ""MXN""}",8166.88,Bronze,1 +4522,Todd Nelson,jennifervelez@yahoo.com,2024-08-11,"{""language"": ""IT"", ""currency"": ""MXN""}",7731.55,Silver,0 +4523,Anna Brown,kimmichael@clark.org,2023-02-11,"{""language"": ""DE"", ""currency"": ""GBP""}",2954.27,Bronze,1 +4524,Earl Jordan,barryevans@hotmail.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1701.04,Silver,1 +4525,David Goodwin,sfloyd@ramirez.biz,2020-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",3284.5,Silver,0 +4526,Donald Cervantes II,audrey32@yahoo.com,2024-03-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7997.4,Bronze,0 +4527,Michael Medina,ulewis@newton.com,2020-09-03,"{""language"": ""EN"", ""currency"": ""MXN""}",4996.37,Bronze,0 +4528,Steven Diaz DDS,hannahvalenzuela@yahoo.com,2021-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",2627.02,Gold,0 +4529,Ryan Freeman,gonzalezsusan@hotmail.com,2021-07-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1239.72,Silver,1 +4530,Mitchell Velez,griffinrandy@garcia.net,2024-02-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9922.9,Gold,1 +4531,Timothy Barnett,victor17@hotmail.com,2020-01-16,"{""language"": ""DE"", ""currency"": ""GBP""}",9258.9,Gold,1 +4532,Mrs. Jennifer Mitchell,collierchristopher@yahoo.com,2021-10-24,"{""language"": ""FR"", ""currency"": ""CAD""}",9507.15,Bronze,1 +4533,Derrick Rodriguez,alexandrasmith@lawrence.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""USD""}",4439.09,Gold,1 +4534,Tina Bell,canderson@mathis-roberson.net,2023-01-31,"{""language"": ""DE"", ""currency"": ""EUR""}",8062.49,Gold,0 +4535,Joshua Mckee,hhall@drake-grant.net,2024-02-11,"{""language"": ""IT"", ""currency"": ""GBP""}",3159.14,Bronze,1 +4536,Maria Werner,joshuareynolds@craig.com,2021-04-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8138.26,Silver,0 +4537,Rebecca Pierce,maria33@gmail.com,2019-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",8208.43,Silver,0 +4538,Brian Martinez,hutchinsonchristy@ortega.com,2021-07-14,"{""language"": ""IT"", ""currency"": ""USD""}",7832.34,Silver,1 +4539,Dr. Daniel Moody,reedjudy@hotmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""CAD""}",5955.97,Gold,1 +4540,Andrew Rangel,samuel97@grant.biz,2023-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",5711.05,Bronze,0 +4541,Vernon Clark,emayo@hotmail.com,2023-06-15,"{""language"": ""ES"", ""currency"": ""CAD""}",3753.74,Bronze,0 +4542,Laura Carpenter,mccormickcarolyn@glenn.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""MXN""}",1990.69,Gold,1 +4543,Brooke Wilson,millerdavid@gmail.com,2023-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",3791.19,Bronze,1 +4544,David Smith,reedjessica@gmail.com,2024-11-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2657.54,Bronze,0 +4545,Lisa Tucker,smithrebecca@yahoo.com,2021-02-23,"{""language"": ""EN"", ""currency"": ""EUR""}",6910.2,Bronze,0 +4546,Kevin Moreno,nataliebarrera@yahoo.com,2020-06-20,"{""language"": ""EN"", ""currency"": ""EUR""}",4447.82,Silver,0 +4547,Jennifer Adams,marcusmyers@burgess-clayton.biz,2024-07-31,"{""language"": ""ES"", ""currency"": ""MXN""}",3029.9,Gold,0 +4548,Erin Mcclure,theresabutler@baker-lawrence.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""CAD""}",9060.5,Silver,0 +4549,Andrew Rhodes,zperry@hotmail.com,2021-12-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3817.44,Silver,1 +4550,Lawrence Mills,qwise@franco.info,2021-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9797.67,Silver,0 +4551,Mrs. Leah Cordova,martinezmichael@woods.com,2023-10-04,"{""language"": ""EN"", ""currency"": ""CAD""}",2224.46,Silver,0 +4552,Isabella Wilkins,nsanders@fernandez.org,2020-04-02,"{""language"": ""EN"", ""currency"": ""EUR""}",9498.59,Bronze,1 +4553,Kathleen Hoffman,amy41@hotmail.com,2023-08-27,"{""language"": ""ES"", ""currency"": ""CAD""}",4206.17,Bronze,0 +4554,Isabella Mitchell,kevinyang@raymond-cox.com,2024-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",7781.87,Silver,1 +4555,Michelle Fritz,amberstevenson@nielsen.info,2024-12-08,"{""language"": ""FR"", ""currency"": ""MXN""}",9928.12,Silver,1 +4556,Nicholas Green,amanda16@hotmail.com,2022-12-31,"{""language"": ""IT"", ""currency"": ""CAD""}",5589.59,Bronze,1 +4557,Brett Hubbard,matthew79@graham.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""USD""}",342.01,Gold,1 +4558,John Vargas,campbellmelinda@gmail.com,2024-10-28,"{""language"": ""DE"", ""currency"": ""CAD""}",223.47,Bronze,1 +4559,Heather Thompson,nmoore@alvarado.com,2024-04-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2963.04,Gold,1 +4560,Kim Thompson,hillkimberly@hotmail.com,2023-11-20,"{""language"": ""DE"", ""currency"": ""CAD""}",6375.41,Gold,0 +4561,Kaitlyn Pineda,schneiderchristine@daniel-hebert.com,2024-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2996.87,Gold,0 +4562,Brandy Jensen,gilbertlaura@barnett.com,2022-07-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2126.81,Bronze,0 +4563,Stephanie Cowan MD,sjacobs@gmail.com,2021-05-13,"{""language"": ""DE"", ""currency"": ""GBP""}",2932.79,Bronze,1 +4564,Kyle Torres,devin49@moore.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""USD""}",6464.36,Bronze,1 +4565,Kathryn Jackson,spencerrichard@gmail.com,2022-10-06,"{""language"": ""FR"", ""currency"": ""MXN""}",7834.62,Gold,1 +4566,Nichole Underwood,ulynn@gmail.com,2022-05-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3805.01,Gold,0 +4567,Katherine Goodwin,bradleykim@harris.info,2020-12-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7112.9,Silver,0 +4568,Lisa Contreras,dmeyer@gmail.com,2021-06-15,"{""language"": ""IT"", ""currency"": ""EUR""}",5838.16,Silver,0 +4569,Jamie Holland,johnmorgan@hotmail.com,2021-03-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1225.01,Gold,0 +4570,Jennifer Mann,travis47@gentry-adams.net,2024-08-07,"{""language"": ""ES"", ""currency"": ""MXN""}",6513.39,Gold,0 +4571,Michelle Rose,anthony49@burns.info,2023-12-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2115.23,Gold,0 +4572,William Franco,kevin27@burns.com,2024-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",1131.69,Gold,0 +4573,Erin Quinn,nhayes@yahoo.com,2021-09-19,"{""language"": ""EN"", ""currency"": ""MXN""}",9713.17,Gold,0 +4574,Cody Morgan,christopherhayden@olsen.org,2022-04-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9968.94,Bronze,0 +4575,Reginald Johnston,donaldgonzalez@yahoo.com,2022-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",7227.31,Bronze,1 +4576,Christopher Farley,pwalker@rogers.biz,2020-01-16,"{""language"": ""FR"", ""currency"": ""USD""}",5780.12,Gold,1 +4577,Eric Johnson,ycallahan@yahoo.com,2020-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",2718.8,Gold,0 +4578,Susan Snow,adamskelsey@yahoo.com,2024-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",9489.03,Bronze,0 +4579,Amy Mercado,dwhitehead@torres.net,2024-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",470.45,Bronze,1 +4580,William Washington,taylorzoe@gmail.com,2023-10-10,"{""language"": ""EN"", ""currency"": ""USD""}",5536.75,Gold,0 +4581,Joshua Barnes,sfuller@lawrence-rhodes.com,2021-06-01,"{""language"": ""ES"", ""currency"": ""USD""}",2989.08,Gold,1 +4582,Stephanie Carter,christophercraig@gmail.com,2024-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",3768.09,Bronze,1 +4583,Jonathan Santana,pcampbell@little-sanchez.com,2020-05-14,"{""language"": ""EN"", ""currency"": ""USD""}",6934.42,Bronze,0 +4584,Jacqueline Phillips,bethany29@hotmail.com,2023-05-21,"{""language"": ""ES"", ""currency"": ""CAD""}",7325.74,Gold,1 +4585,Travis Merritt,catherinepeters@yahoo.com,2023-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",9861.69,Gold,1 +4586,Brian Sawyer,henry48@hotmail.com,2023-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",2813.12,Gold,1 +4587,James Perez,flivingston@zamora-weaver.org,2023-03-05,"{""language"": ""IT"", ""currency"": ""EUR""}",7371.97,Gold,0 +4588,Sean Coleman,brittanywagner@gmail.com,2021-02-06,"{""language"": ""DE"", ""currency"": ""USD""}",5525.35,Bronze,1 +4589,Annette Watts,huberdavid@davis.com,2019-12-13,"{""language"": ""EN"", ""currency"": ""GBP""}",3911.1,Gold,0 +4590,Tina Gallegos,patricia91@chen.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""EUR""}",1513.07,Gold,1 +4591,Kimberly Watkins,williamslori@smith-curtis.org,2024-11-26,"{""language"": ""EN"", ""currency"": ""EUR""}",4263.93,Bronze,1 +4592,Ian Wilson,brookerivas@yahoo.com,2023-07-06,"{""language"": ""IT"", ""currency"": ""CAD""}",6511.67,Bronze,1 +4593,Kimberly Thomas,lucaschristina@ramirez-cummings.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",1920.71,Gold,0 +4594,Edward Benitez,thomasmorrison@evans.com,2020-03-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6902.0,Silver,1 +4595,Wesley Higgins,yanderson@choi.com,2022-07-22,"{""language"": ""IT"", ""currency"": ""GBP""}",2053.23,Bronze,1 +4596,Tyler Cruz,zrich@romero-trevino.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5885.86,Gold,1 +4597,Sarah Rodriguez,williamscatherine@gmail.com,2021-09-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9866.26,Gold,1 +4598,Kevin Hall,laurenlittle@yahoo.com,2024-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",1899.42,Silver,0 +4599,Natalie Freeman,bernardweeks@walsh-marquez.org,2020-09-26,"{""language"": ""ES"", ""currency"": ""MXN""}",7857.24,Silver,0 +4600,Robert Henderson,danielle95@gmail.com,2021-05-02,"{""language"": ""ES"", ""currency"": ""CAD""}",9245.23,Bronze,1 +4601,Jason Hawkins,tjohnson@brown-freeman.com,2020-02-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7124.24,Silver,1 +4602,Dr. Kathryn Norton,julie37@gmail.com,2023-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8616.21,Bronze,1 +4603,Ryan Novak,gilljill@deleon-thompson.net,2022-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",1205.21,Silver,1 +4604,Diana Taylor,cheryl90@yahoo.com,2022-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9831.98,Silver,1 +4605,Kayla Williams,mlane@flores.org,2023-08-26,"{""language"": ""ES"", ""currency"": ""CAD""}",5047.01,Gold,0 +4606,Nicholas Allen,janequinn@hotmail.com,2024-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",650.18,Silver,0 +4607,Andrea Barnett,rcox@stewart-cruz.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",7922.73,Bronze,1 +4608,Amanda Blake,stevensteele@harris-mitchell.com,2021-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",9746.64,Silver,0 +4609,Chad Parker,ohale@hotmail.com,2020-08-27,"{""language"": ""DE"", ""currency"": ""USD""}",1112.24,Gold,0 +4610,Elizabeth Howe,kristennavarro@dunn.com,2020-10-11,"{""language"": ""EN"", ""currency"": ""EUR""}",6018.98,Bronze,1 +4611,Shelly Wilson,ilee@yahoo.com,2020-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",5230.93,Silver,0 +4612,Angelica Molina,avilamegan@gmail.com,2021-01-29,"{""language"": ""EN"", ""currency"": ""USD""}",5999.89,Bronze,1 +4613,Karen Hodge,glee@williamson.org,2023-07-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6438.93,Gold,0 +4614,Mark Blair,thomas49@carlson-saunders.info,2023-08-31,"{""language"": ""ES"", ""currency"": ""MXN""}",1631.81,Bronze,0 +4615,Vicki Callahan,toddmason@yahoo.com,2022-09-26,"{""language"": ""FR"", ""currency"": ""CAD""}",222.81,Bronze,0 +4616,Richard Taylor,gonzalezkeith@hotmail.com,2021-03-09,"{""language"": ""FR"", ""currency"": ""USD""}",6477.27,Silver,1 +4617,Alexander Chambers,danielharper@yahoo.com,2021-09-27,"{""language"": ""ES"", ""currency"": ""EUR""}",817.92,Silver,0 +4618,Gilbert Parker,carol07@gmail.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""EUR""}",7387.27,Gold,1 +4619,Amy Marshall,rachel90@hotmail.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""EUR""}",6322.84,Bronze,0 +4620,Gabriela Hines,grahamcolleen@chen.com,2022-04-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8666.98,Gold,1 +4621,Kerry Rice,howard65@yahoo.com,2023-08-16,"{""language"": ""FR"", ""currency"": ""CAD""}",63.21,Bronze,0 +4622,Steven Wang,linda28@gmail.com,2021-07-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6596.91,Gold,1 +4623,Jennifer Evans,kenneth94@fleming-newton.biz,2024-10-02,"{""language"": ""IT"", ""currency"": ""GBP""}",4184.0,Bronze,0 +4624,Marie Weaver,robertskathleen@yahoo.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""EUR""}",5723.12,Silver,0 +4625,Lindsay Davis,melissa08@yahoo.com,2023-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1061.34,Silver,1 +4626,Paula Mills,bridgestina@hotmail.com,2021-09-23,"{""language"": ""IT"", ""currency"": ""MXN""}",6060.01,Silver,0 +4627,Donna Baker,ftucker@hunter.com,2020-02-14,"{""language"": ""EN"", ""currency"": ""USD""}",6776.83,Gold,1 +4628,Lucas Good,connie35@gmail.com,2024-07-21,"{""language"": ""IT"", ""currency"": ""MXN""}",4657.42,Silver,1 +4629,Tina Douglas,michelle74@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""USD""}",1631.53,Silver,1 +4630,Tina Young,uthomas@nicholson.com,2020-11-18,"{""language"": ""DE"", ""currency"": ""GBP""}",1924.21,Gold,1 +4631,Charles Moore,thoover@hotmail.com,2020-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",3453.23,Bronze,0 +4632,Jason Anderson,vriggs@hotmail.com,2020-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8099.52,Gold,1 +4633,Chelsea Parker,kgonzalez@gmail.com,2021-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",3585.82,Gold,0 +4634,Kayla Evans,jray@hotmail.com,2020-02-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1804.11,Silver,0 +4635,Hunter Rose,glasskatie@gmail.com,2023-09-16,"{""language"": ""FR"", ""currency"": ""CAD""}",6928.98,Silver,1 +4636,Latoya Young,stephensonbrittany@yahoo.com,2024-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",8096.6,Silver,1 +4637,Melissa West,lewislynn@rodriguez.org,2023-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",1651.83,Bronze,0 +4638,Melissa Rodriguez,eugenewillis@gmail.com,2020-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4516.21,Silver,0 +4639,Kristen Schneider,gabrielperez@austin-hale.org,2022-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",123.16,Gold,1 +4640,Connie Lane,davidshepard@brady-chapman.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""EUR""}",4136.94,Silver,0 +4641,Samuel Jenkins,susan70@james.org,2024-12-08,"{""language"": ""DE"", ""currency"": ""USD""}",2118.63,Silver,1 +4642,Haley Weeks,deborahsmith@gmail.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8766.4,Gold,1 +4643,Kathryn Stevens,timothyherrera@jones-hill.com,2023-04-08,"{""language"": ""ES"", ""currency"": ""MXN""}",688.98,Bronze,0 +4644,Lori Cole,tyler68@yahoo.com,2020-03-08,"{""language"": ""FR"", ""currency"": ""CAD""}",6409.75,Bronze,1 +4645,Dale Rios,brittney74@yahoo.com,2020-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",247.96,Silver,1 +4646,William Harding,denise02@hotmail.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",6217.9,Bronze,1 +4647,Courtney Anderson,willielowe@gmail.com,2024-06-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8122.39,Silver,1 +4648,Christopher Adams,harperkathryn@baldwin-peters.biz,2023-05-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5607.96,Gold,1 +4649,Carol Ortiz,wsmith@hotmail.com,2022-03-27,"{""language"": ""ES"", ""currency"": ""MXN""}",1501.72,Silver,0 +4650,Christopher Burton,melissa39@yahoo.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""CAD""}",162.7,Bronze,1 +4651,Rachael Fuller,hcurry@moody.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",5068.54,Gold,0 +4652,John Houston,mccarthyclarence@gmail.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""MXN""}",3077.14,Bronze,0 +4653,Lisa Brown,stephanie16@turner.info,2023-09-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6201.43,Bronze,1 +4654,Jerry Allen,sydney50@smith-may.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",8432.44,Gold,0 +4655,Christopher Perez,ruthwilliams@hughes.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""MXN""}",5892.78,Bronze,0 +4656,Kristin Ramsey,frydebra@yahoo.com,2020-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",699.52,Bronze,1 +4657,Terry Lee,paulasimpson@ramirez.com,2022-07-12,"{""language"": ""EN"", ""currency"": ""USD""}",3060.08,Silver,1 +4658,Travis Anderson,elizabeth65@gmail.com,2024-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",5263.87,Silver,0 +4659,Jonathan Williamson,wbean@rodriguez.biz,2023-05-02,"{""language"": ""FR"", ""currency"": ""USD""}",9784.53,Silver,1 +4660,Elizabeth Vargas,markmills@gmail.com,2021-03-15,"{""language"": ""EN"", ""currency"": ""GBP""}",482.41,Gold,1 +4661,Michael Carrillo,nmaddox@yahoo.com,2021-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4413.43,Gold,0 +4662,Angel Carter,mmueller@hotmail.com,2020-10-15,"{""language"": ""FR"", ""currency"": ""GBP""}",5055.81,Silver,0 +4663,Brandon Barnes,andreadawson@vasquez.biz,2020-11-06,"{""language"": ""IT"", ""currency"": ""USD""}",8418.67,Gold,0 +4664,Martin Williams,jeffreyluna@hotmail.com,2021-01-07,"{""language"": ""EN"", ""currency"": ""USD""}",9578.13,Bronze,0 +4665,Sheila Medina,piercebarbara@hotmail.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""USD""}",8690.75,Gold,0 +4666,Wendy Gutierrez,michaelgray@george.org,2022-12-27,"{""language"": ""FR"", ""currency"": ""USD""}",9136.24,Bronze,1 +4667,Charles Harris,nclayton@gmail.com,2021-04-16,"{""language"": ""EN"", ""currency"": ""USD""}",1447.04,Bronze,1 +4668,Brenda Velazquez,kristenbeck@yahoo.com,2023-05-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3739.83,Silver,0 +4669,Shirley Ramirez,erikawhite@little.info,2022-10-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2968.85,Bronze,1 +4670,Sherry Monroe,ywilliams@hicks-clark.com,2021-09-04,"{""language"": ""FR"", ""currency"": ""GBP""}",443.06,Gold,0 +4671,Matthew Brock,merrittmichael@yahoo.com,2020-01-19,"{""language"": ""DE"", ""currency"": ""EUR""}",5762.8,Bronze,1 +4672,David Wilson,asanchez@wallace-jackson.net,2020-02-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6002.37,Bronze,1 +4673,Michele Knight,rharrington@gmail.com,2021-04-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1868.99,Silver,1 +4674,Michael Silva,hbanks@taylor-roberts.info,2023-09-27,"{""language"": ""ES"", ""currency"": ""GBP""}",6141.79,Gold,0 +4675,Tiffany Gonzales,lhogan@ellison-beard.com,2022-12-23,"{""language"": ""FR"", ""currency"": ""USD""}",6664.98,Bronze,0 +4676,Amanda Travis,bellmichael@wagner.com,2022-05-02,"{""language"": ""IT"", ""currency"": ""EUR""}",5695.05,Gold,0 +4677,Jennifer Anderson,ufrench@scott.com,2021-09-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8713.62,Bronze,0 +4678,Richard Palmer,lauren45@hotmail.com,2022-10-02,"{""language"": ""DE"", ""currency"": ""USD""}",5425.49,Bronze,0 +4679,Scott Vasquez,hmurillo@estrada.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",2827.29,Silver,0 +4680,Emily Villanueva,terrelltara@yahoo.com,2023-08-11,"{""language"": ""FR"", ""currency"": ""MXN""}",9008.69,Bronze,0 +4681,Tamara Johnston,tmorrison@george.com,2023-09-03,"{""language"": ""ES"", ""currency"": ""MXN""}",7513.17,Silver,1 +4682,Jennifer Spence,dyerlauren@crane-salinas.org,2024-08-23,"{""language"": ""ES"", ""currency"": ""MXN""}",3568.78,Bronze,1 +4683,Cameron Harvey,wpruitt@young.info,2021-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",9250.27,Bronze,1 +4684,Brooke Garrett,andrewroberts@hotmail.com,2020-05-11,"{""language"": ""DE"", ""currency"": ""USD""}",2424.05,Gold,0 +4685,Brian Fritz,richard26@calderon.info,2021-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4040.9,Bronze,0 +4686,Jose Warren,richmondlaura@hotmail.com,2022-03-20,"{""language"": ""ES"", ""currency"": ""USD""}",4264.71,Silver,0 +4687,Joseph Davis,jayayala@farmer-lamb.net,2024-06-14,"{""language"": ""DE"", ""currency"": ""USD""}",2937.21,Gold,0 +4688,Kerry Scott,lee16@ochoa.org,2023-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8090.72,Bronze,1 +4689,Angela Schneider,kimberly43@keller.com,2022-09-15,"{""language"": ""IT"", ""currency"": ""USD""}",9511.84,Bronze,0 +4690,Kenneth Thompson,paulramsey@yahoo.com,2024-06-05,"{""language"": ""DE"", ""currency"": ""CAD""}",3657.06,Silver,1 +4691,Ronald Riddle,katie04@frye.com,2022-09-09,"{""language"": ""FR"", ""currency"": ""MXN""}",141.87,Silver,0 +4692,Dan Phillips Jr.,tstewart@gmail.com,2023-07-19,"{""language"": ""ES"", ""currency"": ""USD""}",2208.23,Gold,0 +4693,Melissa Williams,kingbrian@hotmail.com,2020-05-05,"{""language"": ""EN"", ""currency"": ""USD""}",9159.32,Gold,0 +4694,Amanda Jones,deborah87@hotmail.com,2023-04-14,"{""language"": ""DE"", ""currency"": ""USD""}",5672.16,Silver,0 +4695,Nathaniel Campos,matthewjones@cook.com,2021-10-22,"{""language"": ""ES"", ""currency"": ""GBP""}",4581.81,Silver,0 +4696,Michelle Jones,glenn85@hawkins.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""GBP""}",3953.23,Gold,1 +4697,Scott Holt,jeffreybutler@gmail.com,2024-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",4538.28,Gold,0 +4698,David Berry,jenkinsheather@gmail.com,2020-08-28,"{""language"": ""EN"", ""currency"": ""USD""}",1283.49,Gold,1 +4699,Zachary Nolan,andradeanthony@payne.info,2023-01-16,"{""language"": ""DE"", ""currency"": ""MXN""}",6027.66,Gold,1 +4700,Jennifer Morris,jamesmoody@ross-daniels.com,2021-09-17,"{""language"": ""EN"", ""currency"": ""CAD""}",5706.66,Silver,0 +4701,Kevin Hernandez,turneralexis@conley.com,2023-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",7225.88,Gold,1 +4702,Jeremy Koch,nicholas27@diaz-valdez.info,2023-08-25,"{""language"": ""DE"", ""currency"": ""MXN""}",4632.48,Silver,1 +4703,Sabrina Mcclain,rayhernandez@jones-johnson.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""USD""}",6904.77,Silver,1 +4704,Joseph Wilson,thardy@nelson.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",236.53,Bronze,1 +4705,Courtney Campos,brad91@miranda-mullen.com,2022-11-24,"{""language"": ""ES"", ""currency"": ""EUR""}",1492.99,Bronze,1 +4706,Ryan Savage,judith07@watson.info,2021-11-04,"{""language"": ""FR"", ""currency"": ""GBP""}",121.96,Silver,1 +4707,John Francis,leebecker@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""GBP""}",4853.65,Bronze,0 +4708,Gabriel Sparks,campbellkarina@mendoza.net,2020-03-12,"{""language"": ""DE"", ""currency"": ""CAD""}",5952.9,Silver,0 +4709,Rachel Hampton,ryan41@johnson.com,2021-05-09,"{""language"": ""EN"", ""currency"": ""USD""}",2239.08,Silver,1 +4710,Christy Wong,kellyshelton@nichols.com,2024-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",2321.45,Bronze,1 +4711,Traci Merritt,lamaustin@gmail.com,2024-06-27,"{""language"": ""IT"", ""currency"": ""GBP""}",2673.83,Bronze,0 +4712,Patrick Alvarado,mirandachristine@harris.net,2023-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",2177.53,Bronze,1 +4713,Karen Arellano,santiagocody@shannon-bautista.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",6963.08,Bronze,1 +4714,Christopher Dawson,huangandrea@woods.com,2023-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",9510.54,Silver,0 +4715,Stephen Stevens,lmckay@gmail.com,2023-06-16,"{""language"": ""FR"", ""currency"": ""GBP""}",5988.82,Bronze,1 +4716,Marcus Guerra,sanderssarah@hotmail.com,2020-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",3330.76,Silver,0 +4717,Kathy Nguyen,margaret51@torres.com,2022-03-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4982.77,Gold,1 +4718,Eric Terrell,hbrown@mason-martin.com,2021-07-11,"{""language"": ""FR"", ""currency"": ""EUR""}",1736.67,Bronze,1 +4719,Kimberly Santiago,krista60@phillips.com,2020-07-11,"{""language"": ""IT"", ""currency"": ""CAD""}",7329.99,Gold,1 +4720,John Foster,michellerose@gmail.com,2023-12-19,"{""language"": ""EN"", ""currency"": ""CAD""}",2056.05,Gold,1 +4721,Anna Moore,thomas96@yahoo.com,2020-11-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7696.3,Silver,1 +4722,Felicia Meyer,fmcclain@hebert.com,2021-06-24,"{""language"": ""EN"", ""currency"": ""MXN""}",2734.16,Bronze,1 +4723,Jocelyn Carpenter,morrisronald@gmail.com,2024-04-20,"{""language"": ""ES"", ""currency"": ""EUR""}",2988.37,Gold,0 +4724,Thomas Williams,velasquezjacqueline@gmail.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""USD""}",1292.47,Gold,1 +4725,Kyle Ponce,brownkristen@yahoo.com,2021-03-30,"{""language"": ""IT"", ""currency"": ""CAD""}",5847.76,Bronze,0 +4726,Timothy Arnold,joseph22@flores.org,2021-04-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9564.6,Silver,1 +4727,Edward Wiley,phillipsmichael@dean-hendricks.biz,2022-11-11,"{""language"": ""FR"", ""currency"": ""GBP""}",6013.06,Bronze,1 +4728,John Hernandez,kellyallen@stanley-green.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4781.86,Silver,0 +4729,Melissa Edwards,evansmichael@lambert.biz,2021-11-05,"{""language"": ""ES"", ""currency"": ""EUR""}",6183.21,Gold,1 +4730,Jennifer Gonzalez,samanthaaustin@yahoo.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""GBP""}",206.06,Bronze,0 +4731,Wesley Wells,william03@hotmail.com,2020-10-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3718.54,Bronze,0 +4732,Aaron Watson,kristindavies@hotmail.com,2020-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",1547.22,Gold,0 +4733,Melissa West,sandrews@gmail.com,2024-03-12,"{""language"": ""DE"", ""currency"": ""EUR""}",5043.79,Gold,0 +4734,Michael Edwards,derek99@howard.com,2019-12-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1719.39,Silver,0 +4735,Diane Hernandez,cathymendoza@fischer.org,2021-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8445.75,Gold,1 +4736,Shawn Harris,michele27@keller-garza.info,2024-05-05,"{""language"": ""FR"", ""currency"": ""USD""}",8010.5,Bronze,0 +4737,Jeffrey Calhoun,juliecurry@schmitt.com,2024-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",882.85,Gold,0 +4738,Matthew Torres,bmartinez@hotmail.com,2020-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5844.05,Gold,0 +4739,Mark Owens,victorsmith@smith-flores.org,2023-01-01,"{""language"": ""EN"", ""currency"": ""CAD""}",3095.08,Silver,1 +4740,Randy Brown,qvargas@yahoo.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",7335.2,Bronze,0 +4741,Mandy Schwartz,justin51@gmail.com,2022-09-09,"{""language"": ""FR"", ""currency"": ""USD""}",7479.68,Bronze,0 +4742,Dennis Shepard,jill95@oconnor-randall.org,2020-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1237.44,Bronze,0 +4743,Lisa Cameron,whitedakota@hotmail.com,2023-02-23,"{""language"": ""ES"", ""currency"": ""EUR""}",4404.9,Gold,1 +4744,Robert Welch,wigginschristopher@ray.info,2020-06-26,"{""language"": ""FR"", ""currency"": ""USD""}",8109.3,Silver,1 +4745,Tracy Ochoa,owilkins@gmail.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""MXN""}",8950.19,Silver,0 +4746,Christopher Davis,brittany54@chase-carson.com,2022-01-15,"{""language"": ""DE"", ""currency"": ""GBP""}",6104.97,Silver,0 +4747,Cheryl Brown,kwilliams@johnson-huffman.com,2020-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1966.18,Bronze,1 +4748,Lacey Morgan,shawnlee@williams-rhodes.com,2019-12-28,"{""language"": ""DE"", ""currency"": ""GBP""}",9373.28,Silver,1 +4749,Crystal Watkins,jordanheather@yahoo.com,2023-12-26,"{""language"": ""FR"", ""currency"": ""USD""}",9903.64,Bronze,1 +4750,Samantha Patel,james10@yahoo.com,2021-03-19,"{""language"": ""DE"", ""currency"": ""USD""}",812.77,Silver,1 +4751,Manuel Hickman,danielrich@yahoo.com,2024-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9631.45,Gold,1 +4752,Cindy Rowe,john70@yahoo.com,2024-10-13,"{""language"": ""ES"", ""currency"": ""USD""}",1636.51,Bronze,1 +4753,John Wells,garzajoshua@gmail.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6857.02,Bronze,0 +4754,Amy Webb,christopher43@hotmail.com,2022-12-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3472.6,Bronze,1 +4755,Jennifer Valdez,stephanie46@benson-hall.com,2020-02-08,"{""language"": ""ES"", ""currency"": ""USD""}",3501.01,Gold,0 +4756,Andrew Hoover,dalewatson@yahoo.com,2021-06-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9594.31,Gold,0 +4757,Thomas Fernandez,kimberly34@adams.com,2021-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9264.9,Bronze,1 +4758,William Russell,watersdarlene@yahoo.com,2020-07-03,"{""language"": ""IT"", ""currency"": ""MXN""}",2500.66,Silver,1 +4759,Teresa Scott,elizabeth21@yahoo.com,2020-02-27,"{""language"": ""DE"", ""currency"": ""USD""}",6664.8,Bronze,1 +4760,Katherine Ramos,brandonharrison@thomas-villarreal.com,2020-12-08,"{""language"": ""EN"", ""currency"": ""GBP""}",6828.79,Silver,0 +4761,Cheryl Hamilton,glovernancy@carr.net,2021-05-20,"{""language"": ""DE"", ""currency"": ""MXN""}",1548.76,Bronze,0 +4762,Kendra Smith DDS,juliebean@hotmail.com,2022-12-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4601.33,Gold,1 +4763,Julie Hunter,elizabeth41@johnson.com,2023-10-09,"{""language"": ""ES"", ""currency"": ""CAD""}",929.15,Silver,1 +4764,Tina Johnson,mhouston@wade-silva.com,2020-05-28,"{""language"": ""EN"", ""currency"": ""USD""}",9747.62,Gold,0 +4765,Ruth Morales,edgar75@gmail.com,2020-05-02,"{""language"": ""DE"", ""currency"": ""USD""}",238.33,Gold,1 +4766,Mark Davila,jessica80@hotmail.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1205.33,Bronze,1 +4767,Elizabeth Mcdaniel,amanda32@hotmail.com,2020-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",8159.63,Gold,0 +4768,Patricia Miller,scott71@miller.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""USD""}",9765.68,Silver,0 +4769,Jose Johnson,victorryan@sparks.org,2021-08-28,"{""language"": ""FR"", ""currency"": ""EUR""}",5631.16,Gold,1 +4770,Thomas Page,wilsonbarbara@barker-jones.com,2021-02-02,"{""language"": ""FR"", ""currency"": ""USD""}",9806.04,Gold,1 +4771,Christopher Brown,jacksonstephens@wong.com,2022-12-17,"{""language"": ""EN"", ""currency"": ""EUR""}",2773.67,Gold,1 +4772,Tyler Smith,lnewman@yahoo.com,2020-09-04,"{""language"": ""FR"", ""currency"": ""MXN""}",7867.06,Silver,1 +4773,Michael Allen,austinlindsey@sherman-murray.info,2024-06-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9252.78,Gold,0 +4774,Timothy Bailey,hcastro@yahoo.com,2020-02-06,"{""language"": ""FR"", ""currency"": ""MXN""}",7914.77,Bronze,0 +4775,Alisha Hansen,iramirez@rose.info,2020-06-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7300.96,Bronze,1 +4776,James Campos,oburch@gmail.com,2022-05-07,"{""language"": ""FR"", ""currency"": ""USD""}",9583.75,Silver,1 +4777,Amanda Taylor,christina11@hotmail.com,2020-12-27,"{""language"": ""ES"", ""currency"": ""MXN""}",8131.27,Gold,1 +4778,Jamie Tran,sarahallen@gardner.info,2023-10-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8856.56,Gold,1 +4779,Patricia Nelson,lambtyler@lam-bishop.biz,2023-10-16,"{""language"": ""FR"", ""currency"": ""USD""}",5684.12,Bronze,1 +4780,Shelby Mcdonald,wongjohn@yahoo.com,2021-08-02,"{""language"": ""ES"", ""currency"": ""CAD""}",6105.84,Bronze,1 +4781,Mallory Ford,iholt@fuentes.net,2023-02-09,"{""language"": ""FR"", ""currency"": ""GBP""}",5403.96,Silver,0 +4782,Charles Jones,ksnyder@thomas.net,2022-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",9864.78,Gold,1 +4783,Maurice Wright,stuartsteve@yahoo.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7137.05,Gold,1 +4784,Darius Griffin,uwarren@gmail.com,2020-10-30,"{""language"": ""EN"", ""currency"": ""GBP""}",1305.18,Silver,0 +4785,Ashley Hayes,hayesfranklin@yahoo.com,2021-04-20,"{""language"": ""EN"", ""currency"": ""CAD""}",8221.94,Silver,0 +4786,Kevin Barnett,crystalmorales@bates-chaney.com,2020-03-04,"{""language"": ""ES"", ""currency"": ""GBP""}",7581.97,Bronze,1 +4787,Felicia Smith,elozano@yahoo.com,2024-05-23,"{""language"": ""DE"", ""currency"": ""USD""}",7796.9,Gold,0 +4788,Juan Barnett,prodriguez@hotmail.com,2020-03-31,"{""language"": ""ES"", ""currency"": ""CAD""}",953.14,Silver,0 +4789,Mikayla Schmidt,tcooke@garcia.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",1814.11,Silver,1 +4790,Melinda Wilson,daniel16@crane.biz,2020-05-19,"{""language"": ""DE"", ""currency"": ""GBP""}",4506.63,Gold,1 +4791,Debra Martinez,matthewlopez@yahoo.com,2020-05-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3036.31,Silver,1 +4792,Gabriella Pierce,charleshunter@barnett.info,2024-02-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5999.05,Bronze,0 +4793,Justin Singh,krobinson@gmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""USD""}",3458.44,Silver,1 +4794,Dominic Wise,heatherwhite@yahoo.com,2023-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",3266.73,Bronze,1 +4795,Andrew Rivera,debra26@yahoo.com,2022-10-19,"{""language"": ""ES"", ""currency"": ""USD""}",4272.21,Bronze,0 +4796,Tammy Wade,andersonkeith@gmail.com,2023-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",900.24,Bronze,1 +4797,Patrick Rhodes,robert18@robinson.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""GBP""}",4638.04,Gold,0 +4798,Carlos Sherman,clarkalicia@little.net,2020-12-21,"{""language"": ""IT"", ""currency"": ""USD""}",2408.45,Gold,1 +4799,Lisa Brewer,lawrence48@gardner.biz,2022-01-26,"{""language"": ""EN"", ""currency"": ""EUR""}",6723.66,Silver,1 +4800,Michelle Johnson,charles11@yahoo.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4969.94,Gold,0 +4801,Samuel Davis,vincentdixon@weiss-lopez.org,2024-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1224.32,Bronze,0 +4802,Joseph Howard,kimberlyowens@gmail.com,2023-05-05,"{""language"": ""IT"", ""currency"": ""CAD""}",4477.25,Gold,0 +4803,Johnny Livingston,daniellopez@white-howell.com,2021-05-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2325.12,Bronze,0 +4804,Joseph Medina,william30@yahoo.com,2021-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",931.29,Bronze,0 +4805,David Thomas,amy43@werner.com,2024-02-11,"{""language"": ""IT"", ""currency"": ""EUR""}",3420.85,Gold,0 +4806,Kenneth Reeves,trodriguez@martinez.com,2020-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6238.6,Silver,0 +4807,Angelica Floyd,jamesbrown@hotmail.com,2022-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",6249.22,Bronze,1 +4808,Lauren Morris,bridgethoover@brooks.com,2021-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",8019.02,Silver,0 +4809,Renee Chavez,butlerwilliam@boyer-ramos.biz,2022-05-04,"{""language"": ""FR"", ""currency"": ""USD""}",3170.8,Gold,1 +4810,Andres Wolf,mollycalhoun@simpson.org,2022-09-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7244.42,Gold,1 +4811,John Hendricks,bradleythomas@wood-molina.com,2024-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",4741.41,Gold,1 +4812,Tammy Yang,scott20@rios.com,2022-04-22,"{""language"": ""DE"", ""currency"": ""GBP""}",6927.95,Bronze,0 +4813,Shannon Allen,parker11@miller.com,2021-08-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2542.21,Bronze,1 +4814,Hannah Lee,melissa25@barnett-griffith.net,2020-08-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8256.8,Silver,1 +4815,David Wade,johnreynolds@gmail.com,2023-06-15,"{""language"": ""EN"", ""currency"": ""EUR""}",5831.04,Silver,1 +4816,Laurie Wells,nancyfranklin@hotmail.com,2021-12-21,"{""language"": ""EN"", ""currency"": ""GBP""}",2386.34,Silver,0 +4817,Connie Perez,kathleen80@gmail.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4430.76,Bronze,1 +4818,Jennifer Berry,scottcraig@bates.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7010.09,Bronze,0 +4819,Ryan Wiggins,alexandriatapia@hart.com,2023-05-09,"{""language"": ""EN"", ""currency"": ""GBP""}",5664.73,Gold,1 +4820,Janice Calhoun,johnmoon@grimes-atkins.com,2021-03-27,"{""language"": ""EN"", ""currency"": ""GBP""}",3016.5,Gold,0 +4821,Joseph Miller,strongmadison@hotmail.com,2020-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",3709.69,Bronze,1 +4822,Mitchell Martin,jclark@perry.biz,2023-07-04,"{""language"": ""DE"", ""currency"": ""MXN""}",7935.91,Bronze,0 +4823,Linda Mccoy,michael60@gmail.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""GBP""}",5691.48,Bronze,0 +4824,Nichole Williamson,theresa81@kramer-henry.org,2020-06-24,"{""language"": ""FR"", ""currency"": ""USD""}",2784.88,Bronze,0 +4825,Daniel Frazier,sarawong@gmail.com,2023-11-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8841.32,Bronze,0 +4826,Briana Spencer,knightvictoria@yahoo.com,2023-07-26,"{""language"": ""ES"", ""currency"": ""USD""}",7111.19,Silver,1 +4827,Jeffrey Morgan,zparks@baker.com,2021-09-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3043.29,Bronze,0 +4828,Craig Todd,wgarcia@white.biz,2022-06-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9857.74,Bronze,1 +4829,Amber Austin,mccartylonnie@cruz.info,2022-02-13,"{""language"": ""DE"", ""currency"": ""EUR""}",5295.83,Bronze,0 +4830,Robert Stuart,mezajulie@gmail.com,2020-11-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6855.7,Bronze,0 +4831,Bryan Flores,brian41@mann.com,2024-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",4164.74,Gold,0 +4832,Jamie Kim,kathryn14@wyatt.com,2020-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2385.13,Bronze,0 +4833,Laura Thompson,antonioadams@gmail.com,2024-01-25,"{""language"": ""ES"", ""currency"": ""EUR""}",3118.11,Bronze,0 +4834,Meredith Villanueva,benitezedward@elliott.com,2022-10-14,"{""language"": ""DE"", ""currency"": ""EUR""}",5528.91,Silver,1 +4835,Steven Evans,ithompson@ortiz.org,2021-08-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6811.71,Gold,1 +4836,Aimee Ferguson,paynechristopher@morales.net,2020-02-17,"{""language"": ""EN"", ""currency"": ""GBP""}",3569.08,Silver,1 +4837,Stephanie Neal,sethkrause@burnett.net,2023-12-19,"{""language"": ""FR"", ""currency"": ""USD""}",8317.0,Silver,1 +4838,Michael Reyes,frederick01@ortiz.com,2023-07-13,"{""language"": ""DE"", ""currency"": ""USD""}",2805.19,Bronze,0 +4839,Jermaine Schneider,douglasamanda@yahoo.com,2024-06-02,"{""language"": ""DE"", ""currency"": ""EUR""}",9791.77,Silver,0 +4840,Aaron Jackson,lisa43@yahoo.com,2020-12-31,"{""language"": ""ES"", ""currency"": ""CAD""}",6792.33,Bronze,0 +4841,Abigail Wilkinson,craigbishop@gmail.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",7626.06,Silver,1 +4842,Jack Douglas,brobertson@howe.com,2023-06-27,"{""language"": ""FR"", ""currency"": ""CAD""}",2177.05,Gold,1 +4843,Sean Hill,gburke@gmail.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""MXN""}",5586.9,Gold,0 +4844,Derek Lin,iryan@pacheco-white.info,2023-10-06,"{""language"": ""ES"", ""currency"": ""USD""}",1805.92,Bronze,0 +4845,Brianna Burnett,leejames@yahoo.com,2023-11-06,"{""language"": ""EN"", ""currency"": ""GBP""}",3831.68,Silver,1 +4846,Greg Lambert Jr.,angela74@curtis-hoover.info,2023-05-25,"{""language"": ""FR"", ""currency"": ""GBP""}",1872.17,Gold,1 +4847,Virginia Graham,dianaschaefer@russell-flores.biz,2024-07-15,"{""language"": ""EN"", ""currency"": ""USD""}",5486.71,Bronze,0 +4848,Jennifer King,steven72@miles.com,2021-10-16,"{""language"": ""ES"", ""currency"": ""USD""}",3920.5,Gold,0 +4849,Tanya Joseph,rodriguezjose@villarreal-williams.com,2024-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",8304.12,Silver,1 +4850,Mark Martin,chill@marshall.com,2021-06-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8189.12,Bronze,1 +4851,Angela Higgins,nicolemckay@hotmail.com,2020-04-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6193.17,Silver,0 +4852,Samuel Dawson,tiffany49@torres.info,2020-05-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8930.32,Gold,0 +4853,Javier Huber,zrose@holloway-davis.org,2023-10-10,"{""language"": ""IT"", ""currency"": ""EUR""}",174.67,Gold,0 +4854,Joanna Allen,david46@gmail.com,2022-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",491.3,Bronze,0 +4855,Nancy Lewis,leedeanna@hotmail.com,2020-04-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2895.99,Silver,1 +4856,Blake Browning,echavez@armstrong-allen.com,2024-12-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4723.88,Silver,0 +4857,Carrie Fields,kathleenjohnson@hampton.com,2023-11-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8457.86,Silver,0 +4858,Steven Rivas,douglaswashington@gmail.com,2021-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",3893.96,Silver,1 +4859,Angela Mueller,lisagraham@hopkins.com,2022-09-30,"{""language"": ""EN"", ""currency"": ""USD""}",8687.28,Gold,1 +4860,Todd Jones,debrasingleton@mcintyre.com,2021-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1646.75,Silver,0 +4861,Theresa Williams,stevenstimothy@hotmail.com,2020-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",613.86,Silver,0 +4862,Brent Thompson,gconway@gregory.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""CAD""}",5952.02,Bronze,0 +4863,Charles Cox,youngjames@stewart.com,2022-01-21,"{""language"": ""EN"", ""currency"": ""EUR""}",5620.94,Silver,0 +4864,Brian Jones,susanlong@hotmail.com,2021-05-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9594.5,Gold,1 +4865,Heather Cannon,eperez@weber.com,2020-07-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2718.16,Gold,0 +4866,Tara Brown,pettyanna@higgins.biz,2021-06-15,"{""language"": ""FR"", ""currency"": ""MXN""}",119.52,Gold,0 +4867,Benjamin Hall,foxshannon@willis.com,2024-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",1982.27,Silver,0 +4868,Maria Shelton,xfischer@gmail.com,2023-10-15,"{""language"": ""IT"", ""currency"": ""MXN""}",803.1,Silver,1 +4869,Kelly Walker,parsonsana@gmail.com,2022-06-10,"{""language"": ""DE"", ""currency"": ""USD""}",1137.96,Silver,1 +4870,Tiffany Young,garnermichael@mueller-lopez.info,2021-05-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3841.62,Gold,0 +4871,David Cunningham,tanderson@moore.info,2020-09-13,"{""language"": ""ES"", ""currency"": ""CAD""}",5527.26,Silver,1 +4872,Christopher Carroll,dave21@sampson.com,2023-12-22,"{""language"": ""ES"", ""currency"": ""MXN""}",913.37,Silver,1 +4873,Kenneth Williams,rebeccabrennan@yahoo.com,2021-02-04,"{""language"": ""ES"", ""currency"": ""USD""}",1587.01,Bronze,0 +4874,Cheryl Clark,kwhite@hernandez.biz,2022-11-07,"{""language"": ""ES"", ""currency"": ""MXN""}",2916.06,Gold,1 +4875,Melinda Adams,jessica76@davis-washington.com,2021-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",7632.61,Gold,0 +4876,Benjamin Martin,ugoodman@wallace.com,2022-09-17,"{""language"": ""EN"", ""currency"": ""MXN""}",8366.22,Silver,1 +4877,Carol Marshall,stephenskayla@sims.com,2024-11-09,"{""language"": ""ES"", ""currency"": ""USD""}",5749.15,Silver,1 +4878,Oscar Lawson,huntjoshua@hotmail.com,2021-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4812.32,Silver,1 +4879,Karen Garcia,ssantos@gmail.com,2023-06-13,"{""language"": ""DE"", ""currency"": ""EUR""}",8413.75,Silver,0 +4880,Charles Clark,halldylan@yahoo.com,2022-10-12,"{""language"": ""FR"", ""currency"": ""GBP""}",6198.33,Bronze,1 +4881,Brian Gay,medinabecky@gmail.com,2023-11-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2033.11,Silver,1 +4882,Brian Wilson,bpowell@mcmillan.info,2021-05-26,"{""language"": ""EN"", ""currency"": ""USD""}",3344.76,Bronze,0 +4883,Hannah Lopez,xbrown@gmail.com,2020-09-05,"{""language"": ""FR"", ""currency"": ""GBP""}",9023.57,Bronze,1 +4884,Anna Wong,nathaniel78@hotmail.com,2022-11-21,"{""language"": ""DE"", ""currency"": ""USD""}",2971.37,Silver,1 +4885,Patrick Ward,dcarlson@tucker.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",8468.77,Bronze,0 +4886,Joshua Stewart,william17@boone.net,2024-09-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7938.13,Bronze,1 +4887,Anna Rodgers,rachel38@gmail.com,2023-12-04,"{""language"": ""IT"", ""currency"": ""MXN""}",6033.61,Silver,1 +4888,Kelly Gray,benjamin51@hotmail.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""CAD""}",3065.35,Bronze,0 +4889,Francis Johnson,kristinmontoya@thompson.com,2020-04-27,"{""language"": ""ES"", ""currency"": ""GBP""}",440.6,Gold,0 +4890,Donald Rodriguez,sarah76@carter.com,2021-03-25,"{""language"": ""IT"", ""currency"": ""MXN""}",9328.47,Bronze,1 +4891,Cynthia Carney,chavezmarc@hotmail.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""CAD""}",7591.87,Silver,1 +4892,Andrew Rice,mckenziediamond@yahoo.com,2021-07-11,"{""language"": ""ES"", ""currency"": ""CAD""}",4891.37,Gold,0 +4893,Mariah Rose,jordan05@watts-rice.com,2021-05-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7506.01,Silver,1 +4894,Craig Thompson,leblancalexis@hotmail.com,2023-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",5311.72,Gold,1 +4895,Joel Pena,peter73@hotmail.com,2023-08-24,"{""language"": ""IT"", ""currency"": ""USD""}",2460.97,Silver,1 +4896,Jennifer Silva,melissathomas@brown-schroeder.net,2023-03-02,"{""language"": ""ES"", ""currency"": ""USD""}",3411.66,Bronze,1 +4897,Kathleen Singleton,garciaalejandra@gmail.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""MXN""}",7904.87,Silver,1 +4898,Robert Pham,swansonrobert@gmail.com,2024-11-09,"{""language"": ""DE"", ""currency"": ""CAD""}",4646.68,Silver,1 +4899,Christopher Wright,darlene94@gonzales.net,2021-08-08,"{""language"": ""DE"", ""currency"": ""GBP""}",163.22,Bronze,1 +4900,Melissa Johnson,scott70@reed.org,2021-05-19,"{""language"": ""EN"", ""currency"": ""GBP""}",3731.39,Gold,1 +4901,Stacy Pitts,htorres@hotmail.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",2220.35,Silver,0 +4902,Miranda Trujillo,matthew31@yahoo.com,2024-08-11,"{""language"": ""DE"", ""currency"": ""GBP""}",6652.12,Bronze,0 +4903,Alexandra Hill,drakenicole@gmail.com,2022-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",1346.6,Silver,1 +4904,Lauren Cox,rjohnson@johnson.com,2022-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",6362.28,Gold,0 +4905,Samantha Perez,ashley01@hotmail.com,2020-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",6923.49,Silver,1 +4906,Martin Bray,jamesmiller@yahoo.com,2022-09-16,"{""language"": ""FR"", ""currency"": ""EUR""}",9291.6,Silver,0 +4907,Kelly Anderson,troy60@smith.com,2024-12-06,"{""language"": ""EN"", ""currency"": ""GBP""}",4211.04,Gold,0 +4908,Kimberly Smith,tjones@gmail.com,2024-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",651.36,Gold,1 +4909,Michael Ferguson,tdean@yahoo.com,2020-10-19,"{""language"": ""DE"", ""currency"": ""CAD""}",1434.06,Silver,1 +4910,Mrs. Barbara Krueger DVM,bbean@carlson.com,2023-05-26,"{""language"": ""ES"", ""currency"": ""CAD""}",533.2,Bronze,0 +4911,Eric Dixon,jhansen@moore.com,2020-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9244.94,Silver,1 +4912,James Kline,sgordon@gonzalez-meyer.com,2023-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2970.95,Bronze,1 +4913,Savannah Casey,smithphilip@gmail.com,2021-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4443.01,Bronze,1 +4914,Amy Simpson,austinann@long.com,2020-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6721.64,Gold,0 +4915,Sierra Todd,stanleymichelle@snyder.com,2023-06-01,"{""language"": ""IT"", ""currency"": ""GBP""}",536.69,Silver,1 +4916,Juan King,watsonchad@lambert.org,2021-12-16,"{""language"": ""EN"", ""currency"": ""USD""}",6280.91,Silver,0 +4917,Jill Nash,wmcguire@yahoo.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",4782.44,Gold,1 +4918,Sherry Cruz,sterrell@gmail.com,2021-03-14,"{""language"": ""FR"", ""currency"": ""EUR""}",8881.66,Bronze,0 +4919,Peter Bowman,jamesriggs@hotmail.com,2022-06-09,"{""language"": ""ES"", ""currency"": ""MXN""}",551.41,Gold,1 +4920,Miranda Stevens,wdowns@gmail.com,2020-08-03,"{""language"": ""ES"", ""currency"": ""GBP""}",6449.64,Bronze,0 +4921,Christy Le,kroberts@hood.com,2021-03-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7859.11,Silver,1 +4922,Christopher Wade,mark61@wallace.net,2023-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",2724.26,Silver,0 +4923,Shannon Foster,kingjoe@daniels.com,2021-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7671.38,Gold,0 +4924,Julie Schaefer,brian16@gmail.com,2022-01-17,"{""language"": ""FR"", ""currency"": ""EUR""}",9285.23,Gold,1 +4925,Eric Spencer,joseph37@spence-ward.com,2020-05-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8681.72,Silver,0 +4926,Charles Huber,ryates@gmail.com,2021-07-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2793.03,Bronze,1 +4927,James Ward,scott98@brown.org,2024-06-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3649.96,Gold,1 +4928,Kelsey Campos,mary22@smith.com,2022-06-08,"{""language"": ""DE"", ""currency"": ""USD""}",6457.01,Gold,0 +4929,Jeffrey Gibson,brian24@brown.org,2024-01-11,"{""language"": ""EN"", ""currency"": ""EUR""}",3042.41,Gold,0 +4930,Justin Owens,kochmicheal@hotmail.com,2023-06-16,"{""language"": ""DE"", ""currency"": ""GBP""}",6847.42,Silver,1 +4931,Leah Hubbard,heatherdavis@sullivan.com,2022-01-13,"{""language"": ""FR"", ""currency"": ""CAD""}",5976.32,Silver,1 +4932,John Kerr,thomasdavis@gmail.com,2024-05-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4786.67,Silver,1 +4933,Samuel Estes,keithortiz@smith.org,2024-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",6722.4,Gold,0 +4934,Natalie Krause,acastro@gmail.com,2021-07-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8507.92,Silver,1 +4935,Mrs. Hannah Jefferson DVM,whensley@perry.org,2019-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3984.05,Silver,0 +4936,Megan Cooper,patricia73@ramsey.org,2022-10-30,"{""language"": ""IT"", ""currency"": ""GBP""}",5375.15,Silver,0 +4937,Michele Chandler,leslie42@yahoo.com,2020-09-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3657.1,Silver,1 +4938,Kim Gilbert,dennis86@johnson.net,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4124.49,Gold,1 +4939,Andrew Ward,jonathan39@thompson.net,2022-08-31,"{""language"": ""DE"", ""currency"": ""EUR""}",6897.02,Bronze,0 +4940,Zachary Jones,laurabrown@hotmail.com,2021-12-05,"{""language"": ""ES"", ""currency"": ""CAD""}",5290.5,Bronze,1 +4941,Bryan King,darlene11@gmail.com,2021-02-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6137.4,Gold,0 +4942,Sarah Jones,linda54@hotmail.com,2020-08-29,"{""language"": ""EN"", ""currency"": ""GBP""}",7753.96,Gold,0 +4943,Lisa Williams,kennethshepherd@brown-francis.org,2023-11-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4845.9,Gold,0 +4944,Arthur Taylor,clarkkaren@yahoo.com,2021-12-04,"{""language"": ""ES"", ""currency"": ""CAD""}",5544.91,Bronze,1 +4945,Pamela Barnes,hbrown@yahoo.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",1144.98,Silver,1 +4946,Courtney Huang,christopher65@gmail.com,2023-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",6676.8,Silver,0 +4947,Bruce Scott MD,ashleyross@hotmail.com,2021-10-15,"{""language"": ""IT"", ""currency"": ""USD""}",5729.67,Gold,0 +4948,Joshua Mcdonald,iwatkins@thompson-chambers.info,2023-10-11,"{""language"": ""DE"", ""currency"": ""USD""}",4106.07,Bronze,0 +4949,Eric Floyd,uaustin@gmail.com,2021-07-15,"{""language"": ""ES"", ""currency"": ""MXN""}",7108.54,Gold,0 +4950,Jasmine Thompson,wendypeters@oliver.net,2021-12-04,"{""language"": ""EN"", ""currency"": ""MXN""}",3684.25,Bronze,0 +4951,Rebecca Wilson,annrichardson@gmail.com,2020-11-25,"{""language"": ""EN"", ""currency"": ""CAD""}",1398.57,Silver,1 +4952,Craig Knight,bradleydavidson@collins.com,2020-01-20,"{""language"": ""IT"", ""currency"": ""USD""}",282.61,Bronze,1 +4953,Joseph Bass,peckwendy@williams.biz,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",1435.01,Silver,0 +4954,Melanie Hernandez,njohnson@evans.com,2024-08-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9550.87,Silver,0 +4955,Kathryn Santos,michael19@brown-rojas.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""CAD""}",2102.62,Gold,1 +4956,Mrs. Glenda Jones,teresa02@yahoo.com,2020-01-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5150.97,Gold,0 +4957,Jennifer Vincent,anna70@gmail.com,2021-07-22,"{""language"": ""FR"", ""currency"": ""MXN""}",4732.8,Gold,1 +4958,John Ellis,dale18@smith.org,2024-04-04,"{""language"": ""DE"", ""currency"": ""GBP""}",8893.64,Silver,0 +4959,Amber Barry,monicagross@hotmail.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""USD""}",9060.43,Silver,1 +4960,Desiree Gilbert,steven23@hotmail.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3814.74,Silver,1 +4961,Wesley Johnson,kevinmartinez@hotmail.com,2021-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",5856.91,Bronze,0 +4962,Kimberly Martinez,simshayley@hotmail.com,2021-01-23,"{""language"": ""IT"", ""currency"": ""USD""}",7312.76,Silver,1 +4963,Mrs. Alicia Sanchez,ronald41@welch-sutton.com,2020-08-15,"{""language"": ""IT"", ""currency"": ""USD""}",6505.53,Gold,0 +4964,Abigail Baker,chad48@bond.biz,2021-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",8282.45,Bronze,1 +4965,Joann Rivera,davismaria@carpenter.com,2020-08-01,"{""language"": ""FR"", ""currency"": ""USD""}",2538.67,Bronze,0 +4966,Kristina Anderson,tonimoody@yahoo.com,2020-02-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5902.62,Silver,1 +4967,Sandra House,michael59@wallace.com,2022-01-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1392.37,Bronze,0 +4968,Alisha Dawson,mariebarnes@gmail.com,2021-04-07,"{""language"": ""ES"", ""currency"": ""CAD""}",3421.95,Bronze,0 +4969,Gary Heath,leonardnelson@yahoo.com,2022-06-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5137.58,Silver,0 +4970,Mary Miranda,keith56@yahoo.com,2024-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8251.49,Bronze,1 +4971,Heather Ramirez,michellemitchell@yahoo.com,2020-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",4964.22,Silver,0 +4972,Ann Greene,lsmith@evans.com,2023-11-11,"{""language"": ""EN"", ""currency"": ""GBP""}",8125.05,Silver,1 +4973,Charles Cook,michaelthompson@johnson-barber.net,2021-12-02,"{""language"": ""EN"", ""currency"": ""CAD""}",9933.33,Silver,0 +4974,John Martinez,moodynancy@hotmail.com,2020-06-16,"{""language"": ""EN"", ""currency"": ""USD""}",2779.8,Bronze,1 +4975,Patricia Avila,briandavis@yahoo.com,2020-02-12,"{""language"": ""IT"", ""currency"": ""GBP""}",7325.67,Bronze,0 +4976,Diana Bradshaw,jwalls@gmail.com,2022-02-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6180.62,Bronze,1 +4977,Jason Bentley,mcmillannathan@mccoy.com,2020-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",1332.63,Gold,0 +4978,Amanda Peterson,melissapatterson@ward.org,2021-11-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1055.2,Silver,0 +4979,Whitney Cruz,lucassteven@pena-horton.net,2020-06-07,"{""language"": ""IT"", ""currency"": ""GBP""}",5687.67,Silver,1 +4980,Charles Freeman,wryan@schroeder-washington.com,2020-10-22,"{""language"": ""IT"", ""currency"": ""GBP""}",5136.66,Bronze,0 +4981,Danielle Caldwell,damonrodriguez@long.biz,2020-02-16,"{""language"": ""ES"", ""currency"": ""USD""}",7597.11,Gold,1 +4982,Susan Henry,klawson@hotmail.com,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",3988.11,Silver,1 +4983,William Webb,crystal64@warner-lee.com,2021-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",1074.43,Gold,1 +4984,Ashley Jones,mpugh@gmail.com,2020-09-17,"{""language"": ""ES"", ""currency"": ""GBP""}",4036.65,Gold,0 +4985,Raymond Smith,rebeccawebb@brown.info,2021-09-29,"{""language"": ""EN"", ""currency"": ""USD""}",1626.71,Silver,0 +4986,Shawn Dixon,hrios@leach.biz,2021-06-10,"{""language"": ""ES"", ""currency"": ""GBP""}",5141.76,Bronze,0 +4987,Tammy Martinez,masonmary@hotmail.com,2023-11-28,"{""language"": ""IT"", ""currency"": ""GBP""}",2389.94,Bronze,0 +4988,Nathan Farrell,elizabeth09@gallegos.net,2019-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7317.66,Bronze,0 +4989,Bruce Bishop,masseykathryn@crawford-payne.com,2020-05-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1188.55,Bronze,1 +4990,Kristina Bowman,jallen@hotmail.com,2022-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2194.93,Bronze,1 +4991,Jack Shaw,jbarry@gmail.com,2021-10-01,"{""language"": ""EN"", ""currency"": ""USD""}",4506.05,Bronze,1 +4992,Robert Stewart,martinezsusan@joseph.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5153.27,Silver,0 +4993,Sarah Alexander,julienovak@yahoo.com,2024-01-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9017.18,Gold,1 +4994,Jacob Strickland,jamiehaas@stewart.com,2020-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",8636.48,Silver,0 +4995,Monica Moreno,fowlererin@yahoo.com,2022-07-02,"{""language"": ""DE"", ""currency"": ""GBP""}",5802.92,Gold,0 +4996,Patrick Williams,martinezalexis@pennington.com,2021-10-09,"{""language"": ""IT"", ""currency"": ""GBP""}",7669.3,Silver,0 +4997,Jacob Smith,bhall@yahoo.com,2023-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",8151.34,Silver,0 +4998,Patrick Blankenship,jgardner@gmail.com,2021-10-29,"{""language"": ""EN"", ""currency"": ""USD""}",3688.27,Bronze,1 +4999,Clifford Proctor,nathaniel29@vargas.com,2024-11-12,"{""language"": ""FR"", ""currency"": ""GBP""}",4306.93,Gold,1 +5000,Tyler Garrett,jennymiranda@gmail.com,2023-12-17,"{""language"": ""IT"", ""currency"": ""USD""}",289.83,Gold,1 +5001,Cheryl Reed,scarroll@gmail.com,2024-07-13,"{""language"": ""FR"", ""currency"": ""USD""}",6546.46,Silver,0 +5002,Laurie Thompson,tgardner@gmail.com,2020-03-19,"{""language"": ""DE"", ""currency"": ""USD""}",1823.35,Gold,1 +5003,Renee Wilson,russohunter@henderson-jimenez.biz,2024-07-26,"{""language"": ""FR"", ""currency"": ""CAD""}",5942.17,Bronze,0 +5004,Jon Gonzalez,kristy91@gmail.com,2020-11-25,"{""language"": ""FR"", ""currency"": ""MXN""}",3269.86,Silver,1 +5005,Eric Mccullough,rsmith@donovan.info,2022-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",4671.62,Gold,1 +5006,Natasha Hawkins,philip48@walton.info,2021-11-08,"{""language"": ""DE"", ""currency"": ""USD""}",4461.61,Bronze,0 +5007,Elizabeth Bentley,ronnieallen@knight.com,2022-07-01,"{""language"": ""ES"", ""currency"": ""USD""}",2791.64,Gold,1 +5008,Eric Walton,lgay@gmail.com,2023-04-10,"{""language"": ""IT"", ""currency"": ""GBP""}",4782.56,Gold,1 +5009,Tyrone Gibson,davidpaul@ford.net,2023-07-22,"{""language"": ""ES"", ""currency"": ""CAD""}",3292.97,Silver,0 +5010,Sharon Torres,sara90@fitzpatrick.biz,2022-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",5131.76,Gold,1 +5011,Cheryl Miller,cooktonya@hotmail.com,2022-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",6366.23,Bronze,0 +5012,April Crawford,alejandro72@phelps.com,2022-07-24,"{""language"": ""IT"", ""currency"": ""USD""}",2933.09,Gold,0 +5013,Carlos Johnson,james13@carey.com,2023-11-08,"{""language"": ""FR"", ""currency"": ""GBP""}",3407.58,Gold,0 +5014,Erica Moore,gbowman@gmail.com,2024-03-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5766.6,Bronze,0 +5015,Catherine Rosario,kelli49@hotmail.com,2021-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4164.25,Gold,0 +5016,Christopher Freeman,ghill@yahoo.com,2022-05-10,"{""language"": ""EN"", ""currency"": ""USD""}",8228.96,Silver,0 +5017,Sherry Mcdonald,nguyenelizabeth@ross.com,2021-07-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8488.15,Silver,1 +5018,Curtis Levy,mariastewart@yahoo.com,2024-09-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9771.49,Silver,1 +5019,David Green,bradleytran@hotmail.com,2021-03-02,"{""language"": ""DE"", ""currency"": ""EUR""}",1693.98,Silver,1 +5020,Alice Gallegos,reginalynch@yahoo.com,2024-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2067.14,Bronze,0 +5021,Alexandra Kramer,marissa09@mccarthy-chapman.com,2020-05-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5566.91,Silver,1 +5022,Tina Gibson,lweaver@gmail.com,2023-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",6727.69,Bronze,1 +5023,Joshua Coffey,michaelmeadows@hotmail.com,2024-05-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6858.61,Bronze,1 +5024,Penny Davis,xchristensen@carpenter.biz,2020-04-14,"{""language"": ""EN"", ""currency"": ""MXN""}",7791.84,Silver,1 +5025,Cathy Mullins,fclark@dixon.net,2020-07-02,"{""language"": ""DE"", ""currency"": ""MXN""}",5742.82,Gold,1 +5026,Jerry Erickson,sararichardson@peterson.com,2024-08-14,"{""language"": ""DE"", ""currency"": ""EUR""}",225.08,Bronze,0 +5027,Barbara Jones,garciaeduardo@gmail.com,2024-11-04,"{""language"": ""ES"", ""currency"": ""EUR""}",2218.08,Silver,0 +5028,Maria Taylor,kimjulie@morales.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",9394.64,Gold,0 +5029,Alexandria Williams,nicholefleming@horton.com,2022-06-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6184.93,Silver,1 +5030,Diane Garner,carmenortiz@gmail.com,2020-07-30,"{""language"": ""IT"", ""currency"": ""GBP""}",6368.17,Gold,0 +5031,Jerry Kramer,dawn90@jimenez.info,2022-05-23,"{""language"": ""FR"", ""currency"": ""EUR""}",6325.66,Silver,0 +5032,Patrick Cooper,villanuevatimothy@yahoo.com,2023-03-28,"{""language"": ""FR"", ""currency"": ""GBP""}",9574.7,Gold,1 +5033,Sandra Adams,hallrebekah@johnson.net,2020-05-26,"{""language"": ""ES"", ""currency"": ""USD""}",6599.72,Bronze,0 +5034,Heather Patterson,ftaylor@ryan-pacheco.com,2020-06-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7840.63,Bronze,0 +5035,Audrey King,christopher07@welch-watts.com,2024-05-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8964.76,Silver,1 +5036,Paige Brown,joshua12@vaughan.org,2021-12-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7527.33,Gold,0 +5037,David Powell,andrewwilliams@hotmail.com,2022-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",2672.2,Gold,0 +5038,Richard Sanchez,yatesmaria@dawson-walker.net,2021-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",5386.17,Gold,1 +5039,Brittany Caldwell,jerrycallahan@yahoo.com,2021-05-08,"{""language"": ""FR"", ""currency"": ""GBP""}",4111.76,Gold,1 +5040,Nancy Graham,simonbenjamin@huffman.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",9503.35,Silver,1 +5041,Joseph Brooks,stewartwilliam@harris-garcia.com,2022-10-05,"{""language"": ""IT"", ""currency"": ""EUR""}",1958.45,Gold,1 +5042,Alyssa Green,tonya67@gmail.com,2024-10-22,"{""language"": ""DE"", ""currency"": ""CAD""}",2043.59,Gold,0 +5043,Vincent Perez,cindymcclain@gmail.com,2023-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",6181.41,Silver,1 +5044,Melissa Pierce,bobbyreyes@thomas.net,2021-04-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1578.59,Bronze,0 +5045,Michael Roberts,victor49@yu-ruiz.com,2021-11-19,"{""language"": ""IT"", ""currency"": ""EUR""}",2143.07,Gold,1 +5046,David Gibson,qwilson@hotmail.com,2023-11-21,"{""language"": ""EN"", ""currency"": ""GBP""}",6805.1,Bronze,0 +5047,Samantha Garrison,thomas06@rivas.com,2024-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",7406.77,Gold,0 +5048,Brent Baxter,johnsonsara@paul.com,2022-08-02,"{""language"": ""FR"", ""currency"": ""CAD""}",53.61,Bronze,0 +5049,Tina Ruiz,ooconnell@buck.com,2022-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6905.89,Bronze,0 +5050,Tara Taylor,igreene@delgado-arnold.com,2023-05-03,"{""language"": ""FR"", ""currency"": ""USD""}",2750.29,Gold,1 +5051,Robert Cobb,melanie94@james-duncan.com,2024-08-18,"{""language"": ""DE"", ""currency"": ""EUR""}",2552.5,Silver,0 +5052,William Garner,jhurst@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",3783.37,Silver,1 +5053,Dr. Julie Ward,kellyjeff@scott-serrano.com,2022-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3828.97,Gold,1 +5054,Charles Wheeler,scottheather@hotmail.com,2020-10-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5532.83,Bronze,1 +5055,Nicholas Graham,richard33@yahoo.com,2021-10-04,"{""language"": ""FR"", ""currency"": ""GBP""}",1533.56,Bronze,1 +5056,Lee Smith,davidterrell@johnson-garcia.com,2024-10-10,"{""language"": ""EN"", ""currency"": ""CAD""}",6681.18,Gold,0 +5057,Eric Salas,jenkinstina@yahoo.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""CAD""}",3982.94,Gold,0 +5058,Melissa Butler,georgemichael@gmail.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""GBP""}",5758.71,Gold,0 +5059,Steven Mercado,warneralyssa@gmail.com,2020-11-05,"{""language"": ""ES"", ""currency"": ""MXN""}",4587.31,Gold,1 +5060,Ryan Durham,petersonstephanie@yahoo.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""CAD""}",9609.52,Gold,0 +5061,Gwendolyn Strong,tannercollins@harris-miller.biz,2024-10-31,"{""language"": ""EN"", ""currency"": ""USD""}",3489.75,Silver,0 +5062,Natasha Barnett,cherylwagner@gray.com,2022-05-23,"{""language"": ""DE"", ""currency"": ""EUR""}",861.21,Bronze,1 +5063,Ashley Stuart,spennington@fleming.com,2023-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1370.52,Bronze,1 +5064,David Spencer,pamelawatkins@gmail.com,2024-10-13,"{""language"": ""ES"", ""currency"": ""CAD""}",3947.42,Bronze,1 +5065,Kimberly Jones,ucole@wright.com,2024-03-17,"{""language"": ""DE"", ""currency"": ""USD""}",9316.7,Gold,1 +5066,Ivan Steele,danielserin@campbell-johnston.net,2023-04-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9931.06,Bronze,0 +5067,Taylor Dennis,christopher71@davenport-stewart.com,2020-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",194.19,Bronze,0 +5068,Nicholas Martin,lindsayhuber@pope.biz,2020-10-24,"{""language"": ""FR"", ""currency"": ""MXN""}",3783.63,Gold,0 +5069,Tracy Stewart,vanessaoliver@brennan.org,2023-10-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2420.61,Gold,1 +5070,Steven Clarke,zjackson@austin-young.biz,2024-01-28,"{""language"": ""DE"", ""currency"": ""CAD""}",1124.21,Bronze,0 +5071,Rebecca Esparza,morgandavis@rodriguez.org,2024-11-04,"{""language"": ""DE"", ""currency"": ""USD""}",1400.13,Gold,1 +5072,Tammy Hinton,leslie22@yahoo.com,2024-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",5031.01,Bronze,1 +5073,Jeffrey Vega,david02@hotmail.com,2024-01-28,"{""language"": ""DE"", ""currency"": ""GBP""}",9987.47,Silver,0 +5074,Stephanie Hudson,patricia82@yahoo.com,2022-02-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2432.53,Silver,1 +5075,Brooke Perez,james80@clarke.biz,2020-08-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4361.75,Silver,0 +5076,Philip Carter,shelbycraig@gmail.com,2023-06-06,"{""language"": ""EN"", ""currency"": ""MXN""}",9143.04,Gold,0 +5077,Rachel Valencia,rebekahgarner@yahoo.com,2020-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1157.94,Silver,1 +5078,Lauren Meyer,thompsonregina@yahoo.com,2023-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",6916.7,Bronze,0 +5079,Reginald Brown,cbrown@yahoo.com,2023-10-05,"{""language"": ""ES"", ""currency"": ""CAD""}",1238.58,Silver,1 +5080,James Conner,jackhicks@adams.com,2019-12-13,"{""language"": ""EN"", ""currency"": ""CAD""}",6758.16,Silver,0 +5081,Vincent Walls,jeanbryant@gmail.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""CAD""}",1838.26,Gold,1 +5082,John Bennett,brianlopez@yahoo.com,2022-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",4656.52,Gold,0 +5083,Susan Gates,reyeskathleen@simmons.com,2020-07-28,"{""language"": ""FR"", ""currency"": ""USD""}",3390.39,Bronze,0 +5084,Patrick Torres,nicholearroyo@yahoo.com,2022-01-17,"{""language"": ""ES"", ""currency"": ""USD""}",2347.16,Bronze,0 +5085,Stephanie Alvarez,matthewmoore@mcconnell.com,2021-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",8630.96,Gold,1 +5086,Calvin Jones,thompsonmonica@rodgers-simmons.info,2020-12-29,"{""language"": ""FR"", ""currency"": ""EUR""}",537.8,Silver,0 +5087,Jeffery Howell,zthornton@dougherty-thomas.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""CAD""}",6242.51,Gold,0 +5088,Sheila Campbell,wendycampbell@hotmail.com,2020-08-31,"{""language"": ""IT"", ""currency"": ""MXN""}",1510.27,Bronze,0 +5089,Olivia Rodriguez,adam91@parker.org,2023-09-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1792.63,Gold,1 +5090,Sarah Williams,joshua84@blake.info,2021-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",6119.21,Bronze,0 +5091,Stanley Rodgers,kristinegeorge@rojas.com,2023-09-02,"{""language"": ""DE"", ""currency"": ""CAD""}",1377.24,Gold,0 +5092,Timothy Jones,pford@yahoo.com,2022-06-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5700.47,Bronze,1 +5093,Veronica Wilson PhD,pmora@thomas.com,2020-03-12,"{""language"": ""IT"", ""currency"": ""EUR""}",349.28,Silver,0 +5094,Tyler Warren,floresmargaret@hotmail.com,2022-02-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5418.04,Gold,0 +5095,Joseph Fitzpatrick,williamsaaron@walters.net,2020-09-24,"{""language"": ""DE"", ""currency"": ""USD""}",1845.44,Silver,1 +5096,Victor Shannon,craigfitzpatrick@hotmail.com,2024-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",3402.66,Gold,1 +5097,Patrick Williams,amurray@yahoo.com,2023-10-21,"{""language"": ""DE"", ""currency"": ""USD""}",648.57,Bronze,1 +5098,Zachary Rodriguez,zramsey@waters-paul.biz,2024-08-05,"{""language"": ""DE"", ""currency"": ""USD""}",5007.29,Bronze,0 +5099,Logan Hansen,danielgarrison@gmail.com,2023-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5023.28,Silver,0 +5100,Mr. Ronald Richmond,aarontaylor@yahoo.com,2020-03-03,"{""language"": ""ES"", ""currency"": ""GBP""}",1227.22,Silver,0 +5101,Brian Collins,jonesalicia@hotmail.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7623.63,Gold,1 +5102,Edward Lopez,jennifer19@yahoo.com,2019-12-23,"{""language"": ""ES"", ""currency"": ""MXN""}",400.05,Gold,0 +5103,Ronald Higgins,ewilliams@yahoo.com,2020-11-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2627.14,Bronze,0 +5104,Hunter Lewis,anthonybrowning@solomon-ramirez.info,2024-12-08,"{""language"": ""EN"", ""currency"": ""CAD""}",9059.86,Silver,1 +5105,Tyler Leon,matthew82@hotmail.com,2021-10-14,"{""language"": ""FR"", ""currency"": ""EUR""}",5385.13,Bronze,0 +5106,Elizabeth Cordova,esparzadenise@yahoo.com,2023-12-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9910.71,Silver,0 +5107,Robert Simpson,zhaynes@yahoo.com,2023-10-18,"{""language"": ""EN"", ""currency"": ""MXN""}",6794.26,Gold,1 +5108,Michael Bridges,jameselliott@hotmail.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5590.94,Silver,0 +5109,Mrs. Heather Hayes,turnerbrian@griffith-kidd.com,2023-03-01,"{""language"": ""FR"", ""currency"": ""CAD""}",3257.77,Bronze,0 +5110,Cynthia Hayes,mhaas@johnston.com,2022-04-29,"{""language"": ""ES"", ""currency"": ""GBP""}",3984.27,Gold,1 +5111,Albert Jones,christopherwatson@yahoo.com,2024-08-24,"{""language"": ""EN"", ""currency"": ""EUR""}",3835.66,Silver,0 +5112,Robert Savage,kevincarter@gmail.com,2022-08-09,"{""language"": ""DE"", ""currency"": ""EUR""}",1660.73,Bronze,0 +5113,Stanley Hunt,sabrina19@yahoo.com,2023-02-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1836.39,Silver,1 +5114,Jimmy Cooper,judy45@yahoo.com,2020-03-13,"{""language"": ""DE"", ""currency"": ""GBP""}",9380.33,Bronze,1 +5115,Anna Perry,sandrasmith@burke.com,2021-12-24,"{""language"": ""IT"", ""currency"": ""MXN""}",7669.31,Bronze,0 +5116,Nathan Harvey,joelblackwell@gmail.com,2020-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",2359.2,Bronze,0 +5117,David Robertson,jacobhudson@gmail.com,2020-08-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1166.23,Bronze,1 +5118,Patricia Green,matthewmartinez@hotmail.com,2022-06-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6933.27,Silver,1 +5119,Melissa Maldonado,rushsherri@mckinney.com,2023-09-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6422.89,Bronze,1 +5120,Dennis Olsen,wesley53@yahoo.com,2023-05-09,"{""language"": ""ES"", ""currency"": ""EUR""}",7225.04,Gold,1 +5121,Walter Lam,travis75@morales.com,2020-06-28,"{""language"": ""FR"", ""currency"": ""USD""}",7355.47,Bronze,0 +5122,Lauren Harris,soliver@yahoo.com,2020-09-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1743.23,Silver,1 +5123,Jennifer Barber,jermaine79@chen.com,2024-02-19,"{""language"": ""DE"", ""currency"": ""USD""}",8095.92,Gold,0 +5124,Eric Mitchell,tonyasmith@gmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",3085.18,Gold,1 +5125,Barbara Andrade,acole@hotmail.com,2023-07-24,"{""language"": ""DE"", ""currency"": ""USD""}",459.35,Gold,1 +5126,Larry Gordon,bcrawford@yahoo.com,2021-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",9072.99,Silver,1 +5127,Kelly Huber,millssteven@molina-brown.info,2020-02-05,"{""language"": ""ES"", ""currency"": ""USD""}",6889.88,Silver,1 +5128,Joshua Daniel,jennifermorris@yahoo.com,2021-08-13,"{""language"": ""DE"", ""currency"": ""GBP""}",4810.16,Bronze,1 +5129,Natalie Lopez,davidthompson@yang-gallagher.net,2022-03-07,"{""language"": ""ES"", ""currency"": ""CAD""}",5645.09,Gold,0 +5130,Nicole Fuller,jose15@hotmail.com,2023-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",5848.79,Silver,1 +5131,Carl Carpenter,reeddana@cook-clayton.com,2020-04-16,"{""language"": ""DE"", ""currency"": ""USD""}",5947.42,Bronze,1 +5132,Jennifer Walker,marquezsarah@smith.com,2024-01-03,"{""language"": ""FR"", ""currency"": ""EUR""}",97.15,Silver,1 +5133,Brenda Melton,vharris@lopez.org,2023-04-18,"{""language"": ""ES"", ""currency"": ""MXN""}",1450.83,Gold,0 +5134,Justin Cook,christopherpowers@johnson-rivera.net,2024-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",2053.77,Silver,1 +5135,Raymond Brown MD,jason60@hotmail.com,2024-07-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8534.87,Gold,0 +5136,Johnny Smith,dixontyler@gillespie.biz,2022-07-20,"{""language"": ""IT"", ""currency"": ""MXN""}",8577.87,Gold,1 +5137,Katherine Gardner,david07@moore-bates.com,2024-05-28,"{""language"": ""IT"", ""currency"": ""USD""}",9521.15,Gold,1 +5138,Michael Ford,mfrench@gmail.com,2023-06-10,"{""language"": ""FR"", ""currency"": ""CAD""}",9277.84,Bronze,0 +5139,Jacob Huff,xroberts@williams.com,2020-07-11,"{""language"": ""DE"", ""currency"": ""USD""}",1168.71,Gold,0 +5140,Martin Mcintyre,christina02@hotmail.com,2020-06-24,"{""language"": ""IT"", ""currency"": ""CAD""}",335.6,Bronze,1 +5141,Gerald Tran,warrenronnie@hotmail.com,2024-04-18,"{""language"": ""ES"", ""currency"": ""EUR""}",6396.82,Gold,1 +5142,Brittney Espinoza,davidthompson@johnson.info,2024-06-21,"{""language"": ""ES"", ""currency"": ""EUR""}",442.76,Silver,1 +5143,Randy Morales,dshannon@gomez.com,2023-10-30,"{""language"": ""ES"", ""currency"": ""MXN""}",5675.75,Gold,1 +5144,Sean Freeman,audreysellers@kelly.com,2020-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",2172.95,Gold,0 +5145,Maria Thomas,sarah58@gmail.com,2024-08-25,"{""language"": ""EN"", ""currency"": ""GBP""}",6495.18,Bronze,0 +5146,William Brooks,jwiggins@hotmail.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7687.42,Gold,1 +5147,Erin Brown,aguilardillon@gmail.com,2021-05-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8002.2,Gold,0 +5148,Allison Molina,melinda07@williams-may.org,2021-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6371.68,Gold,1 +5149,Jenna Vargas,vprice@hotmail.com,2021-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",431.57,Silver,0 +5150,Nicole White,tiffanywhite@yahoo.com,2020-11-28,"{""language"": ""ES"", ""currency"": ""EUR""}",6242.49,Silver,0 +5151,Jonathan Gonzales DVM,wallacebryan@gomez.info,2020-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",9656.69,Silver,0 +5152,Adam Hoover,curtis96@edwards.net,2021-10-23,"{""language"": ""FR"", ""currency"": ""USD""}",757.06,Gold,1 +5153,Tyler Fischer,afoley@robinson-adams.com,2020-09-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5385.44,Gold,0 +5154,Elizabeth Curry,schavez@villanueva-simmons.com,2023-08-10,"{""language"": ""EN"", ""currency"": ""USD""}",9616.37,Silver,0 +5155,Tonya Allen,hhopkins@yahoo.com,2023-07-10,"{""language"": ""IT"", ""currency"": ""CAD""}",986.95,Bronze,0 +5156,Dr. Bruce Morris,jsimpson@harris-scott.com,2024-02-14,"{""language"": ""EN"", ""currency"": ""CAD""}",6786.55,Silver,1 +5157,Kristen Jones,martinezjames@ellison-scott.net,2022-04-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1540.06,Gold,1 +5158,Melissa Clark,omedina@gmail.com,2022-03-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3084.31,Silver,1 +5159,Joyce Harding,eric60@gmail.com,2021-07-16,"{""language"": ""DE"", ""currency"": ""GBP""}",6912.83,Bronze,0 +5160,Amanda Martin,mark35@yahoo.com,2024-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",2784.17,Gold,0 +5161,Denise Miller,perezvirginia@hotmail.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""GBP""}",2951.36,Gold,0 +5162,Michael Rodriguez,ryanwhite@yahoo.com,2020-02-28,"{""language"": ""EN"", ""currency"": ""EUR""}",4796.6,Gold,0 +5163,Elizabeth Austin,leah11@gmail.com,2021-10-08,"{""language"": ""ES"", ""currency"": ""CAD""}",3540.21,Silver,1 +5164,Douglas Dougherty,rileysavannah@moss-taylor.com,2022-08-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5774.12,Silver,0 +5165,Sean Jimenez,bradleylarson@gmail.com,2024-10-30,"{""language"": ""DE"", ""currency"": ""MXN""}",8159.07,Gold,1 +5166,Jessica Adams,diane57@haas.com,2023-08-02,"{""language"": ""DE"", ""currency"": ""CAD""}",8392.6,Gold,1 +5167,Rachel Russell,danieldudley@harrison.com,2023-12-02,"{""language"": ""ES"", ""currency"": ""CAD""}",3684.92,Gold,0 +5168,Kevin Harding,ashlee31@rodriguez-gray.com,2024-06-04,"{""language"": ""IT"", ""currency"": ""MXN""}",5745.03,Gold,1 +5169,Erica Williams,jthompson@gmail.com,2020-03-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6360.92,Gold,0 +5170,David Frey,theresacollins@gmail.com,2021-12-26,"{""language"": ""EN"", ""currency"": ""EUR""}",1210.07,Bronze,1 +5171,Benjamin Williams,kari04@gmail.com,2022-01-10,"{""language"": ""FR"", ""currency"": ""GBP""}",5879.84,Gold,0 +5172,Larry Steele,tararogers@ochoa.org,2023-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",2410.83,Bronze,0 +5173,Kevin Martin,pboone@turner.net,2020-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3496.36,Bronze,1 +5174,Melvin Hughes,cynthiamacdonald@gmail.com,2020-12-02,"{""language"": ""FR"", ""currency"": ""MXN""}",2297.89,Silver,0 +5175,Matthew Turner,pattonnathan@hotmail.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""EUR""}",6818.28,Gold,1 +5176,Christine Ortiz,sean06@hotmail.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""CAD""}",7323.37,Gold,1 +5177,Matthew Hammond,bradley34@yahoo.com,2021-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5209.8,Gold,0 +5178,John Patrick,cannonkenneth@gmail.com,2021-10-23,"{""language"": ""EN"", ""currency"": ""CAD""}",1641.97,Silver,1 +5179,Michael Hernandez,jamesmaureen@brown.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""MXN""}",7151.75,Bronze,0 +5180,Steven Flynn,penakimberly@yahoo.com,2022-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",6595.45,Silver,0 +5181,Jessica Ramirez,denise51@hotmail.com,2023-05-07,"{""language"": ""ES"", ""currency"": ""GBP""}",5110.1,Silver,1 +5182,Beth Lang,morancharlene@yahoo.com,2022-11-12,"{""language"": ""IT"", ""currency"": ""USD""}",8258.7,Gold,1 +5183,Tina Cox,pearsonmonica@jensen.com,2024-11-08,"{""language"": ""FR"", ""currency"": ""USD""}",3418.08,Silver,0 +5184,Maria Rogers,jonesamanda@henson-peterson.org,2020-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7460.27,Bronze,1 +5185,Gene Mata,jasonerickson@hotmail.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",9002.49,Bronze,1 +5186,Eduardo Gilbert,wtate@yahoo.com,2022-12-09,"{""language"": ""EN"", ""currency"": ""MXN""}",1264.46,Gold,0 +5187,Christopher Campbell Jr.,pattondavid@perez.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",9254.88,Silver,1 +5188,Kendra Clarke MD,pamelamarquez@gmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""GBP""}",9174.24,Gold,0 +5189,Jasmine Erickson,castrobrandon@hotmail.com,2020-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2490.76,Silver,0 +5190,Jessica Torres,brownjamie@yahoo.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",3100.89,Silver,1 +5191,Brendan Kelley,mooreelizabeth@bruce.biz,2020-06-16,"{""language"": ""EN"", ""currency"": ""USD""}",2464.96,Gold,0 +5192,Amy Jackson,scottjacobs@gmail.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""MXN""}",1874.09,Gold,0 +5193,Chad Griffin,jamiecantu@gmail.com,2024-05-16,"{""language"": ""IT"", ""currency"": ""CAD""}",1896.33,Gold,0 +5194,Tina Hooper,cynthiamccormick@yahoo.com,2024-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4015.11,Silver,0 +5195,Carrie Parker MD,jesusbowers@coleman.info,2023-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",6086.71,Silver,0 +5196,Vanessa Griffin,laura15@gmail.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""EUR""}",4700.88,Bronze,0 +5197,Jack Hill,nicolefernandez@freeman.com,2020-02-29,"{""language"": ""IT"", ""currency"": ""USD""}",9508.41,Gold,0 +5198,Phillip Jimenez,tfields@elliott.com,2020-10-11,"{""language"": ""FR"", ""currency"": ""USD""}",7944.37,Silver,1 +5199,Matthew Rogers,braytravis@yahoo.com,2020-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",1630.37,Gold,1 +5200,Nancy Riddle,zoe20@hotmail.com,2021-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",1823.76,Silver,0 +5201,Mary Gordon,kimberlyjohnson@contreras.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",9884.32,Bronze,0 +5202,Kristen Marshall,david31@johnson.com,2023-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",874.01,Silver,1 +5203,Pamela Thomas,emily75@yahoo.com,2019-12-19,"{""language"": ""ES"", ""currency"": ""GBP""}",8276.17,Gold,0 +5204,Brett Lopez,umills@hotmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""CAD""}",8853.32,Silver,1 +5205,Dr. Tina Brown,monicalewis@gmail.com,2021-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",5237.87,Bronze,1 +5206,Joe Ramos,robert69@hotmail.com,2020-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",5107.9,Gold,0 +5207,Benjamin Peterson,hhoward@gmail.com,2021-12-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9346.66,Bronze,0 +5208,Andrew Zimmerman,caseymichael@hotmail.com,2021-08-23,"{""language"": ""FR"", ""currency"": ""MXN""}",9720.2,Silver,1 +5209,Brandon Gilbert,robin16@gmail.com,2023-11-29,"{""language"": ""FR"", ""currency"": ""EUR""}",3029.37,Gold,0 +5210,Amanda Sims,larry12@hotmail.com,2023-12-21,"{""language"": ""FR"", ""currency"": ""EUR""}",6379.06,Gold,0 +5211,Melissa Warren,garcialisa@manning.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7837.01,Gold,0 +5212,Tammy Becker,stephanieyoung@gmail.com,2023-01-06,"{""language"": ""IT"", ""currency"": ""CAD""}",66.92,Silver,0 +5213,Kevin Phillips,alexisward@young.com,2023-02-10,"{""language"": ""FR"", ""currency"": ""USD""}",6022.84,Gold,1 +5214,Andrea Carroll,nwilliams@gmail.com,2023-11-26,"{""language"": ""ES"", ""currency"": ""MXN""}",4920.18,Bronze,1 +5215,Michael Sherman,brian07@yahoo.com,2020-05-27,"{""language"": ""IT"", ""currency"": ""MXN""}",4976.52,Gold,0 +5216,Charles Simon,gdavis@yahoo.com,2022-09-02,"{""language"": ""ES"", ""currency"": ""CAD""}",5795.28,Silver,0 +5217,Thomas Lang,torrestonya@mcdaniel-lopez.info,2023-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",2613.91,Bronze,1 +5218,Eric Hale,james69@hotmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""GBP""}",6063.47,Silver,1 +5219,David Gonzalez,goodmantimothy@yahoo.com,2020-06-20,"{""language"": ""IT"", ""currency"": ""MXN""}",8992.33,Gold,1 +5220,Theresa Oconnor,whitneypaula@yahoo.com,2021-12-27,"{""language"": ""ES"", ""currency"": ""USD""}",4780.98,Bronze,0 +5221,Melinda Mccarthy,james26@jones.net,2024-11-25,"{""language"": ""IT"", ""currency"": ""MXN""}",8706.01,Gold,0 +5222,Crystal Rhodes,xjohnson@hotmail.com,2021-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",5443.62,Gold,0 +5223,Jordan Logan,james55@murillo-crawford.com,2021-01-21,"{""language"": ""ES"", ""currency"": ""MXN""}",5266.06,Bronze,1 +5224,Lauren Robinson,stephensonjohn@powell.org,2022-08-13,"{""language"": ""DE"", ""currency"": ""USD""}",4646.19,Bronze,0 +5225,Todd Anderson,crivas@white.com,2021-03-25,"{""language"": ""DE"", ""currency"": ""EUR""}",531.41,Gold,1 +5226,Randy Hall,jasonpowers@yahoo.com,2022-06-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6502.26,Silver,0 +5227,Robert Rosales,qwaters@jensen-hawkins.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4136.02,Bronze,0 +5228,Julie Montgomery,yhughes@stephens.net,2023-11-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8863.35,Bronze,1 +5229,Jessica Thompson,moniqueerickson@johnson-davis.biz,2023-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",205.34,Silver,1 +5230,Casey Stuart,jasonsanders@yahoo.com,2021-02-25,"{""language"": ""EN"", ""currency"": ""EUR""}",5870.78,Bronze,0 +5231,Derek Allen,adrianbrown@woods.org,2020-09-27,"{""language"": ""DE"", ""currency"": ""MXN""}",3660.38,Gold,0 +5232,Mark Davis,williamscurtis@gmail.com,2024-07-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9609.84,Gold,0 +5233,Mr. Steve Johnson,brenda48@cook.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""EUR""}",7525.89,Silver,0 +5234,Amanda Foster,daniel87@parks-wilson.com,2021-09-01,"{""language"": ""DE"", ""currency"": ""CAD""}",2775.14,Gold,1 +5235,Steven Bates,kristenmiller@kelley.com,2021-06-27,"{""language"": ""EN"", ""currency"": ""GBP""}",5861.33,Bronze,1 +5236,Mary Lee,john22@cervantes-poole.net,2023-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",4590.43,Bronze,1 +5237,Brianna Burke,michael38@contreras.net,2022-02-01,"{""language"": ""EN"", ""currency"": ""EUR""}",6203.72,Gold,1 +5238,Stephen Bennett,elizabeth41@garcia-wilson.com,2021-02-06,"{""language"": ""DE"", ""currency"": ""EUR""}",7891.69,Gold,0 +5239,Jason Klein,andrew69@young.com,2020-02-21,"{""language"": ""FR"", ""currency"": ""CAD""}",5168.16,Bronze,1 +5240,Paul Harris,alvarezryan@yahoo.com,2024-07-24,"{""language"": ""FR"", ""currency"": ""MXN""}",4073.52,Gold,0 +5241,Jerry Brown,debrasullivan@ward-bowers.info,2021-07-13,"{""language"": ""FR"", ""currency"": ""CAD""}",128.89,Bronze,0 +5242,Taylor Brock,walkerdoris@mckinney-johnson.org,2021-07-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6662.06,Silver,1 +5243,David Welch,dshaw@young-morales.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""CAD""}",7214.19,Bronze,0 +5244,Joseph Brown,ronald46@gmail.com,2023-12-26,"{""language"": ""FR"", ""currency"": ""GBP""}",1247.35,Gold,1 +5245,Carol Harrison,krista22@wilson.com,2024-05-29,"{""language"": ""FR"", ""currency"": ""USD""}",5340.22,Gold,1 +5246,Eric Robles,dperez@landry-sanchez.com,2021-07-07,"{""language"": ""DE"", ""currency"": ""CAD""}",7160.11,Bronze,1 +5247,Sean Chase,marcus62@martin.com,2024-02-09,"{""language"": ""ES"", ""currency"": ""MXN""}",801.55,Bronze,0 +5248,Mr. Edward Neal,michael49@yahoo.com,2021-08-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6706.1,Silver,0 +5249,Richard Mccarty,christopher46@yahoo.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""CAD""}",8065.65,Bronze,0 +5250,Lisa Potter,jblack@wright.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2253.99,Bronze,1 +5251,Thomas Collier,jason32@dalton-holmes.com,2021-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",6640.29,Silver,1 +5252,Andrew Fox,qwheeler@richard.com,2023-06-13,"{""language"": ""DE"", ""currency"": ""EUR""}",5072.91,Silver,1 +5253,Don Guerrero,michelle10@gmail.com,2022-11-19,"{""language"": ""FR"", ""currency"": ""USD""}",9688.08,Silver,0 +5254,Brandi Hayden,cohenjessica@gmail.com,2022-05-25,"{""language"": ""FR"", ""currency"": ""USD""}",6915.2,Bronze,0 +5255,Traci Johnson,alexiswinters@hotmail.com,2023-04-12,"{""language"": ""FR"", ""currency"": ""CAD""}",9259.02,Bronze,0 +5256,Christopher Wells,nbishop@hotmail.com,2023-04-26,"{""language"": ""EN"", ""currency"": ""EUR""}",9052.18,Gold,1 +5257,Andrew Gutierrez,traceymills@hotmail.com,2023-10-10,"{""language"": ""DE"", ""currency"": ""EUR""}",2739.85,Silver,1 +5258,Jose Donovan,stevensaaron@gamble-reynolds.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""MXN""}",4689.49,Silver,0 +5259,Edwin Reed,haledaniel@stokes.org,2023-06-19,"{""language"": ""DE"", ""currency"": ""CAD""}",5269.17,Silver,1 +5260,Christina Perez,sblack@hill.com,2023-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",6848.01,Bronze,0 +5261,Ann Brewer,wallacecheyenne@jones-smith.net,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1335.47,Bronze,1 +5262,Barbara Griffith,eortiz@yahoo.com,2021-05-12,"{""language"": ""ES"", ""currency"": ""USD""}",1225.01,Bronze,1 +5263,Rachel Hughes,erika62@gmail.com,2020-09-03,"{""language"": ""IT"", ""currency"": ""MXN""}",5159.8,Silver,1 +5264,Pamela Johnson,jermainescott@bond-cunningham.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3011.57,Silver,0 +5265,William Weaver,mlewis@gmail.com,2020-02-27,"{""language"": ""ES"", ""currency"": ""USD""}",1833.55,Bronze,1 +5266,Linda Edwards,brittany63@gmail.com,2022-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",8404.19,Bronze,1 +5267,Travis Lloyd,jason01@yahoo.com,2023-09-21,"{""language"": ""IT"", ""currency"": ""CAD""}",4408.31,Silver,1 +5268,Felicia Schultz,lyonstracey@yahoo.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""GBP""}",1375.82,Gold,0 +5269,Calvin Quinn,jessicahoffman@hotmail.com,2023-12-04,"{""language"": ""EN"", ""currency"": ""USD""}",8135.11,Silver,0 +5270,Anna Wolf,williamstewart@armstrong.com,2020-12-04,"{""language"": ""FR"", ""currency"": ""EUR""}",1103.93,Bronze,0 +5271,Kurt Walker,ymoore@thompson-clark.info,2020-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",4819.53,Silver,1 +5272,Judy Carter,kenneth49@hotmail.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",105.83,Gold,1 +5273,William Rivera,aaronmartin@nichols.biz,2021-07-21,"{""language"": ""ES"", ""currency"": ""MXN""}",4830.79,Bronze,0 +5274,Karen King,sullivananne@myers.com,2022-03-31,"{""language"": ""EN"", ""currency"": ""EUR""}",1429.1,Bronze,1 +5275,Raymond Bell,richardlopez@gmail.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""MXN""}",1241.56,Bronze,1 +5276,Charles Lucas,natalie62@castillo.org,2024-11-29,"{""language"": ""DE"", ""currency"": ""CAD""}",5884.87,Silver,0 +5277,Terri Medina,jamesamanda@jimenez.info,2020-06-21,"{""language"": ""EN"", ""currency"": ""MXN""}",8752.96,Gold,1 +5278,Elaine Hoffman,cbennett@york.net,2020-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6695.49,Gold,0 +5279,Charles Jones,turnerdanielle@miles.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""CAD""}",5290.29,Silver,1 +5280,Jacob Ellis PhD,paul63@gmail.com,2020-07-10,"{""language"": ""FR"", ""currency"": ""USD""}",1724.81,Bronze,1 +5281,Keith Williams,debra39@hotmail.com,2024-01-08,"{""language"": ""ES"", ""currency"": ""GBP""}",2024.07,Silver,1 +5282,Jo Harris,cunninghamjoshua@sanders.org,2024-04-12,"{""language"": ""EN"", ""currency"": ""CAD""}",8594.18,Gold,1 +5283,Michael Bailey,esmith@waters.biz,2020-05-04,"{""language"": ""ES"", ""currency"": ""USD""}",338.03,Silver,1 +5284,Leah Martin,trevorwells@arroyo-anderson.com,2021-08-31,"{""language"": ""EN"", ""currency"": ""CAD""}",6726.72,Bronze,1 +5285,Samuel Ali,drojas@anderson.biz,2023-04-26,"{""language"": ""EN"", ""currency"": ""MXN""}",8734.56,Bronze,1 +5286,Spencer Fuller,fdavis@hill.com,2024-11-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6804.21,Gold,0 +5287,Edward Wolf,davidjackson@barker.info,2023-03-25,"{""language"": ""EN"", ""currency"": ""MXN""}",8438.53,Silver,1 +5288,John Barnes,maxwelllouis@hotmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",6016.7,Bronze,0 +5289,Tamara Huynh,vaguilar@brewer-lewis.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",9098.04,Bronze,1 +5290,Anthony Patterson,julie75@yahoo.com,2020-01-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8939.53,Bronze,0 +5291,Monica Floyd,jasonberry@webb.com,2024-01-09,"{""language"": ""EN"", ""currency"": ""GBP""}",9470.49,Bronze,1 +5292,Scott Santiago,kennethwilson@watts-myers.org,2021-07-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4083.0,Gold,1 +5293,Alec Fischer,oknapp@patterson.com,2020-06-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2096.45,Bronze,0 +5294,Steven Wright,lorettaglenn@yahoo.com,2021-10-10,"{""language"": ""FR"", ""currency"": ""CAD""}",8645.98,Bronze,1 +5295,Dawn Gomez,varmstrong@king.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""EUR""}",7976.75,Silver,0 +5296,Erika Vargas,butlerjennifer@gmail.com,2020-04-20,"{""language"": ""IT"", ""currency"": ""USD""}",7838.08,Silver,0 +5297,Sandra Sanders,wthomas@lewis.com,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",3631.26,Gold,0 +5298,Nathan Orr,inunez@yahoo.com,2022-12-07,"{""language"": ""EN"", ""currency"": ""CAD""}",4279.91,Silver,1 +5299,Megan Martinez,browncory@yahoo.com,2021-10-05,"{""language"": ""ES"", ""currency"": ""USD""}",2520.05,Bronze,0 +5300,Leslie Hernandez,robertrodriguez@gmail.com,2021-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",9061.63,Silver,1 +5301,Crystal King,katherinejackson@yahoo.com,2020-12-19,"{""language"": ""ES"", ""currency"": ""EUR""}",6022.5,Bronze,1 +5302,Donna Weaver,daniel27@gmail.com,2020-01-16,"{""language"": ""ES"", ""currency"": ""CAD""}",9632.53,Silver,0 +5303,Casey Flores,robert90@hotmail.com,2022-09-11,"{""language"": ""IT"", ""currency"": ""CAD""}",6216.04,Silver,1 +5304,Frank Moore MD,steven31@ramirez-hernandez.net,2024-07-14,"{""language"": ""FR"", ""currency"": ""USD""}",9663.63,Gold,0 +5305,Randy Alvarez,ngutierrez@gmail.com,2020-04-05,"{""language"": ""ES"", ""currency"": ""EUR""}",3521.49,Silver,1 +5306,Ann James,ctorres@gmail.com,2020-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",8315.23,Gold,0 +5307,David Bishop,lsloan@cobb.net,2021-12-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8843.52,Gold,1 +5308,April Washington,jbrown@hotmail.com,2022-09-28,"{""language"": ""FR"", ""currency"": ""GBP""}",3637.81,Gold,1 +5309,Eric Newton,paul46@krueger.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",8558.74,Gold,1 +5310,William Davidson,bbird@chambers.com,2022-05-13,"{""language"": ""ES"", ""currency"": ""USD""}",9709.61,Silver,0 +5311,Jacob Baker,jonathanjackson@conley-coleman.info,2023-09-16,"{""language"": ""FR"", ""currency"": ""GBP""}",161.69,Silver,0 +5312,Cynthia Hernandez,evanschwartz@jensen.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",7919.58,Bronze,0 +5313,Lauren Taylor,jose32@yahoo.com,2024-04-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9101.01,Gold,1 +5314,Andrew Mccarthy,wrightanthony@gregory-wilson.com,2024-01-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5337.92,Gold,1 +5315,Christina Taylor,melanie85@espinoza.com,2023-06-06,"{""language"": ""ES"", ""currency"": ""CAD""}",3202.82,Bronze,1 +5316,Deborah Mayo,alyssabryant@weber.biz,2020-06-06,"{""language"": ""IT"", ""currency"": ""MXN""}",7109.93,Gold,0 +5317,Jeremy Ware,meganjohnson@yahoo.com,2023-03-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6875.41,Silver,0 +5318,Sean Johnson,ryanbrooks@joseph.net,2024-10-16,"{""language"": ""DE"", ""currency"": ""USD""}",6118.24,Silver,0 +5319,Jeremy Torres,hreynolds@gmail.com,2019-12-21,"{""language"": ""EN"", ""currency"": ""CAD""}",5431.41,Gold,1 +5320,Michael Kennedy,kayla75@weber-cervantes.biz,2021-04-17,"{""language"": ""IT"", ""currency"": ""GBP""}",911.35,Silver,1 +5321,Monica Monroe,harrisamy@hotmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""GBP""}",408.49,Gold,1 +5322,Becky Alvarez,tonya99@gmail.com,2023-07-14,"{""language"": ""IT"", ""currency"": ""GBP""}",2734.81,Bronze,0 +5323,Robert Gallagher,aparker@mccann-evans.net,2022-06-11,"{""language"": ""EN"", ""currency"": ""MXN""}",2817.9,Bronze,0 +5324,Wendy Fitzpatrick,scottsteve@yahoo.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5941.67,Gold,1 +5325,Samuel Hall,erica91@yahoo.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""MXN""}",2532.52,Silver,1 +5326,Michael Wright,freythomas@stewart.com,2021-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",5019.24,Silver,0 +5327,Felicia Maldonado,bradleyscott@foster.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9921.5,Bronze,1 +5328,Jeffrey Kennedy,reneewalker@bradford.com,2020-12-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8194.44,Silver,0 +5329,Scott Solis,corey79@yahoo.com,2024-04-15,"{""language"": ""EN"", ""currency"": ""EUR""}",5426.75,Silver,1 +5330,Kimberly Medina,deborahbray@hotmail.com,2024-02-28,"{""language"": ""EN"", ""currency"": ""MXN""}",7450.6,Silver,1 +5331,Kenneth Leonard,wrobinson@sandoval.com,2023-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",5836.19,Bronze,1 +5332,Matthew Rivas,llynch@gmail.com,2023-10-02,"{""language"": ""IT"", ""currency"": ""EUR""}",4016.85,Bronze,1 +5333,Kathy Johnson,beth35@hopkins-garrison.com,2022-04-24,"{""language"": ""ES"", ""currency"": ""EUR""}",1939.96,Bronze,0 +5334,Adriana Ryan,zachary81@yahoo.com,2024-01-28,"{""language"": ""IT"", ""currency"": ""EUR""}",623.38,Bronze,1 +5335,Charles Perry,dharrison@russell-hernandez.com,2024-04-28,"{""language"": ""IT"", ""currency"": ""USD""}",8774.68,Bronze,0 +5336,Justin Bowen,marcrodriguez@gmail.com,2022-11-27,"{""language"": ""FR"", ""currency"": ""GBP""}",9731.14,Silver,0 +5337,Andre Kirk,andreaschultz@yahoo.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6327.46,Bronze,1 +5338,Andrea Perez,vjohnson@hotmail.com,2020-09-15,"{""language"": ""FR"", ""currency"": ""USD""}",8728.24,Gold,1 +5339,Robert Smith,rodriguezjason@yahoo.com,2023-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8652.14,Bronze,0 +5340,Charles Larson,amyweaver@conley-jenkins.biz,2021-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",1377.75,Gold,0 +5341,Joseph Miller,william36@thompson-spencer.com,2021-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",2869.68,Gold,1 +5342,Keith Mcintosh,jonesemily@gmail.com,2022-07-19,"{""language"": ""EN"", ""currency"": ""CAD""}",5582.21,Gold,1 +5343,Wesley Vance,allenkatie@golden-martinez.com,2020-12-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1355.42,Silver,1 +5344,Karen Miller,brianmay@gmail.com,2023-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",6605.29,Bronze,0 +5345,Brian Bell,rodney66@murray.biz,2023-09-08,"{""language"": ""ES"", ""currency"": ""GBP""}",5726.15,Bronze,0 +5346,Hannah Grant,jdavis@knox.com,2023-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",7470.23,Gold,1 +5347,Nicholas Jacobs,ryan10@reyes.com,2024-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",2651.13,Gold,1 +5348,Christopher Mitchell,mariooneill@robinson.info,2022-12-08,"{""language"": ""EN"", ""currency"": ""MXN""}",627.56,Silver,1 +5349,Ryan Johnson,randygilbert@jones.biz,2021-07-31,"{""language"": ""IT"", ""currency"": ""GBP""}",9092.81,Silver,1 +5350,Amanda Cruz,xwebb@bryant-perez.net,2023-06-07,"{""language"": ""EN"", ""currency"": ""CAD""}",8185.84,Silver,1 +5351,Megan Rogers,pmccall@ramirez-valenzuela.biz,2023-08-16,"{""language"": ""ES"", ""currency"": ""MXN""}",4838.79,Gold,1 +5352,Sandra Briggs,qrojas@hotmail.com,2023-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9253.77,Silver,0 +5353,Alicia Bradford,robert32@haley.com,2023-08-27,"{""language"": ""IT"", ""currency"": ""GBP""}",8757.86,Gold,1 +5354,Diana Howard,samanthafleming@hammond-cruz.net,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",2191.17,Silver,0 +5355,Cindy Hernandez,daviddavis@pace.com,2021-03-22,"{""language"": ""FR"", ""currency"": ""CAD""}",5955.47,Bronze,0 +5356,Brenda Greene,evancrosby@gmail.com,2021-08-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1339.13,Bronze,1 +5357,Cheryl Jackson,normabrown@buchanan.com,2022-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",3158.83,Gold,1 +5358,Antonio Coleman,rodriguezcorey@andrews.net,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7060.44,Gold,0 +5359,Donna Schmidt,nancy12@dickson.biz,2021-06-10,"{""language"": ""FR"", ""currency"": ""EUR""}",1730.43,Silver,0 +5360,Melinda Duncan,romerolaura@green.info,2023-10-06,"{""language"": ""ES"", ""currency"": ""CAD""}",2239.36,Gold,1 +5361,Carol Chavez,reedguy@yahoo.com,2023-11-05,"{""language"": ""EN"", ""currency"": ""MXN""}",634.51,Gold,0 +5362,Michele Beasley,leejack@yahoo.com,2021-09-29,"{""language"": ""DE"", ""currency"": ""GBP""}",3706.82,Silver,0 +5363,Connie Murphy,stephenmartinez@yahoo.com,2020-07-27,"{""language"": ""DE"", ""currency"": ""CAD""}",6678.6,Silver,0 +5364,Michael Griffin,tedwards@yahoo.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",4305.69,Bronze,0 +5365,Tiffany White,angela60@yahoo.com,2021-05-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7424.8,Silver,1 +5366,Eric Baldwin,casehannah@gmail.com,2021-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",5242.86,Gold,1 +5367,Paul Lopez,kevin20@middleton.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",458.69,Gold,0 +5368,Mitchell Fischer,singhsean@wagner.org,2023-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",6681.64,Silver,1 +5369,Bonnie Miller,brenda45@gmail.com,2023-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",1158.05,Silver,1 +5370,Robert Silva,stevenevans@rodriguez.info,2021-11-06,"{""language"": ""IT"", ""currency"": ""EUR""}",5668.64,Gold,1 +5371,Dawn Martinez,vancegary@hotmail.com,2022-03-01,"{""language"": ""IT"", ""currency"": ""CAD""}",4586.67,Silver,0 +5372,Shelly Berg,nguyenchristopher@yahoo.com,2021-01-27,"{""language"": ""EN"", ""currency"": ""EUR""}",5785.8,Gold,1 +5373,Arthur Pena,hodgetracey@mills-hansen.com,2023-05-15,"{""language"": ""DE"", ""currency"": ""USD""}",9155.61,Silver,1 +5374,Kathleen Lang,brewermichael@yahoo.com,2023-01-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4206.27,Gold,0 +5375,Scott Barnett,michaelgonzales@hotmail.com,2023-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",4192.68,Silver,1 +5376,Erin Gill,jessica58@elliott-myers.net,2024-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2124.54,Silver,1 +5377,Christopher Hampton,reidstacie@yahoo.com,2019-12-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4842.23,Gold,1 +5378,Tracy Russell,gentrynathan@hotmail.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""EUR""}",5315.91,Bronze,0 +5379,Shawn Robinson,tjoyce@kelley.com,2021-06-17,"{""language"": ""DE"", ""currency"": ""USD""}",6245.8,Gold,0 +5380,James Khan,robert47@gmail.com,2021-09-19,"{""language"": ""DE"", ""currency"": ""CAD""}",4327.72,Silver,1 +5381,Jason Reyes,anawilliams@ferguson.com,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",9126.72,Bronze,1 +5382,Craig Harmon,williecruz@hotmail.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9148.37,Bronze,0 +5383,Emily Moore,juarezkellie@yahoo.com,2022-11-16,"{""language"": ""ES"", ""currency"": ""USD""}",1040.7,Silver,1 +5384,Bryan Duarte,ihopkins@hill-smith.com,2023-09-07,"{""language"": ""IT"", ""currency"": ""CAD""}",7859.1,Gold,0 +5385,Amy Lloyd,icarpenter@hotmail.com,2022-09-02,"{""language"": ""FR"", ""currency"": ""EUR""}",2832.57,Bronze,1 +5386,Kristina Robinson,carl43@gmail.com,2022-09-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2590.89,Bronze,1 +5387,Johnny Smith,bradfordmegan@henry-brown.com,2022-05-18,"{""language"": ""ES"", ""currency"": ""GBP""}",9818.14,Silver,1 +5388,Edward Bradford,nwood@obrien.info,2022-01-19,"{""language"": ""EN"", ""currency"": ""MXN""}",2729.08,Gold,1 +5389,Julia Diaz,annathomas@sullivan-mccarthy.com,2020-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",2714.75,Silver,0 +5390,Casey Miller,johnsonbrian@alvarez-peck.com,2020-11-23,"{""language"": ""FR"", ""currency"": ""MXN""}",5016.64,Silver,0 +5391,Justin Hendricks,jamiesolomon@ryan.biz,2024-04-30,"{""language"": ""DE"", ""currency"": ""GBP""}",3277.76,Silver,1 +5392,Bruce Rice,acostamelanie@hotmail.com,2023-05-06,"{""language"": ""DE"", ""currency"": ""CAD""}",5292.18,Bronze,0 +5393,Christina Warren,velazquezjoshua@hotmail.com,2022-11-29,"{""language"": ""FR"", ""currency"": ""GBP""}",8757.24,Bronze,1 +5394,Holly Harris,davidricardo@lee.biz,2023-08-08,"{""language"": ""DE"", ""currency"": ""MXN""}",6178.81,Gold,0 +5395,Valerie Walters,fordkrystal@fernandez.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3156.23,Gold,1 +5396,Timothy Weaver,kevin03@watson-cooper.com,2024-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",3224.85,Bronze,0 +5397,Cristina Keith,charles01@yahoo.com,2020-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",446.9,Bronze,0 +5398,Joel Zavala,stoutjessica@valencia-brewer.com,2023-11-07,"{""language"": ""FR"", ""currency"": ""EUR""}",4391.39,Silver,0 +5399,Alexandra Anderson,kimberlyhoward@hotmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""MXN""}",362.93,Silver,1 +5400,Kimberly Young,aaron56@gmail.com,2021-04-30,"{""language"": ""FR"", ""currency"": ""CAD""}",3914.07,Bronze,1 +5401,Ashley Shaw,zhuerta@gmail.com,2021-01-13,"{""language"": ""ES"", ""currency"": ""CAD""}",7283.44,Silver,0 +5402,Brenda Lopez,lynchjoshua@gmail.com,2021-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",890.7,Bronze,1 +5403,Joshua Mitchell Jr.,davidsonsarah@yahoo.com,2021-12-30,"{""language"": ""FR"", ""currency"": ""MXN""}",2635.82,Bronze,0 +5404,Nicholas Reeves,barajascarol@yahoo.com,2019-12-21,"{""language"": ""FR"", ""currency"": ""USD""}",8592.58,Bronze,0 +5405,Nicole Keller,danny93@ballard.com,2023-03-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1496.81,Bronze,1 +5406,Caroline Quinn,reynoldsjasmine@potter-kelley.com,2021-01-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9691.76,Gold,1 +5407,Dakota Eaton,mark43@gmail.com,2021-05-20,"{""language"": ""IT"", ""currency"": ""USD""}",2332.67,Silver,0 +5408,Julie Matthews,kbarnett@gmail.com,2024-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",7151.74,Silver,1 +5409,Christie Patterson,fernandezcourtney@yahoo.com,2023-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",371.82,Gold,0 +5410,Ryan Farley,perryantonio@hall.com,2022-11-20,"{""language"": ""DE"", ""currency"": ""EUR""}",290.97,Gold,1 +5411,Francisco Cochran,caleb40@rose.biz,2020-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",2052.77,Silver,0 +5412,Anthony Allen,bwilkins@maldonado.com,2023-08-03,"{""language"": ""IT"", ""currency"": ""GBP""}",2215.71,Bronze,0 +5413,Dr. Andrew Flowers,tcastro@hotmail.com,2021-09-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1922.31,Silver,1 +5414,Rebecca Preston,courtney81@yahoo.com,2021-04-03,"{""language"": ""DE"", ""currency"": ""MXN""}",3896.54,Silver,1 +5415,Brady Harris,lindsey97@yahoo.com,2021-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",4022.25,Gold,0 +5416,Madison Williams,iwalker@miller.com,2020-11-16,"{""language"": ""FR"", ""currency"": ""USD""}",2602.21,Gold,0 +5417,Phillip Sanchez,derrickmiller@yahoo.com,2019-12-18,"{""language"": ""FR"", ""currency"": ""EUR""}",3531.55,Silver,1 +5418,Jessica Acevedo,gomezkenneth@lopez.com,2023-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",6021.93,Gold,1 +5419,David Castaneda,bwilson@thomas.com,2021-01-05,"{""language"": ""EN"", ""currency"": ""GBP""}",5986.92,Silver,1 +5420,Glenn Henry,erikawyatt@jimenez-garrett.com,2021-06-29,"{""language"": ""DE"", ""currency"": ""USD""}",8210.64,Bronze,1 +5421,Meredith Krueger,charlesbates@gmail.com,2019-12-17,"{""language"": ""DE"", ""currency"": ""GBP""}",7848.49,Silver,1 +5422,Brian Carr,regina38@walker-lane.biz,2020-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",4183.3,Bronze,1 +5423,Brian Thomas,cody49@yahoo.com,2024-05-31,"{""language"": ""IT"", ""currency"": ""GBP""}",6610.23,Gold,1 +5424,Gloria Marshall,yobrien@figueroa.org,2020-07-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9912.5,Bronze,0 +5425,Jason Zavala,pduncan@hotmail.com,2020-07-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1980.28,Silver,0 +5426,Jenna Hanson,oliu@yahoo.com,2022-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5753.04,Gold,1 +5427,Cassie Patrick,hullhaley@moran-blake.info,2023-03-28,"{""language"": ""ES"", ""currency"": ""USD""}",2101.92,Silver,1 +5428,Erin Wallace,brice@hotmail.com,2020-07-05,"{""language"": ""ES"", ""currency"": ""USD""}",4527.77,Silver,0 +5429,Jeffery Callahan,sberry@flores-jackson.net,2021-01-04,"{""language"": ""ES"", ""currency"": ""GBP""}",9249.21,Bronze,0 +5430,Bethany Robinson,ymacias@yahoo.com,2021-12-31,"{""language"": ""DE"", ""currency"": ""USD""}",140.46,Gold,0 +5431,Samuel Stewart,sbarnes@gmail.com,2020-04-10,"{""language"": ""FR"", ""currency"": ""USD""}",1326.64,Silver,0 +5432,Justin Johnson,vmorris@brown-moreno.com,2023-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",7698.66,Bronze,0 +5433,Christine Moore,mcknightruben@page-hampton.biz,2024-01-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8599.22,Silver,1 +5434,Kathy Smith,amandahardy@yahoo.com,2021-10-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8187.72,Gold,0 +5435,Charles Huber,nelsonallison@davis-hunter.biz,2024-02-19,"{""language"": ""EN"", ""currency"": ""USD""}",5954.05,Gold,1 +5436,Jason Smith,danielle91@yahoo.com,2023-03-20,"{""language"": ""DE"", ""currency"": ""GBP""}",6532.48,Silver,1 +5437,Bonnie Rodriguez,michaelfisher@baker.info,2024-08-22,"{""language"": ""ES"", ""currency"": ""MXN""}",8802.22,Silver,0 +5438,Cheryl Turner,deannahoffman@hotmail.com,2023-05-17,"{""language"": ""IT"", ""currency"": ""MXN""}",4529.16,Gold,1 +5439,Melissa Brown,parkerjames@jones-ramirez.info,2023-10-22,"{""language"": ""ES"", ""currency"": ""GBP""}",5052.38,Silver,0 +5440,Robin Hogan,dalejensen@adkins-freeman.biz,2021-03-17,"{""language"": ""IT"", ""currency"": ""GBP""}",3965.99,Bronze,0 +5441,Angel Baxter,john85@gates-gallegos.biz,2023-07-10,"{""language"": ""DE"", ""currency"": ""EUR""}",3501.28,Gold,0 +5442,Christopher Ross,michael03@hotmail.com,2023-06-04,"{""language"": ""IT"", ""currency"": ""EUR""}",5376.03,Silver,0 +5443,Carl Padilla,kylewilson@yahoo.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""MXN""}",3464.86,Silver,1 +5444,Tara Ross,juliaglover@harrison.com,2023-07-26,"{""language"": ""FR"", ""currency"": ""EUR""}",8625.83,Gold,1 +5445,William Ward,kayla96@burns.com,2021-10-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8234.23,Gold,1 +5446,Kerry Gregory,jeffrey08@hotmail.com,2023-02-23,"{""language"": ""FR"", ""currency"": ""USD""}",9824.51,Silver,0 +5447,Aaron Cline,townsendtim@anderson.com,2020-06-11,"{""language"": ""DE"", ""currency"": ""EUR""}",2341.26,Silver,0 +5448,Erin Perez,carlos39@hotmail.com,2024-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2839.13,Gold,0 +5449,Holly Hood,nicolediaz@walton.info,2020-02-23,"{""language"": ""ES"", ""currency"": ""GBP""}",9756.05,Gold,1 +5450,Susan Henry,wshort@gmail.com,2021-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",7381.06,Gold,1 +5451,Ricardo Stevenson,elizabeth76@mitchell.com,2023-11-17,"{""language"": ""DE"", ""currency"": ""MXN""}",5932.17,Gold,1 +5452,Deborah Porter,barronkelly@larson.com,2023-11-14,"{""language"": ""IT"", ""currency"": ""EUR""}",1504.04,Gold,1 +5453,Brooke Miller,vargastravis@gmail.com,2023-12-07,"{""language"": ""IT"", ""currency"": ""GBP""}",1668.74,Bronze,1 +5454,Mr. Thomas Williams,richard06@dixon.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""MXN""}",8120.14,Bronze,0 +5455,Julie Harper,kellyhunter@hotmail.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""CAD""}",1558.33,Bronze,0 +5456,Jonathan Wolfe,wkane@gmail.com,2024-04-10,"{""language"": ""IT"", ""currency"": ""CAD""}",6178.94,Gold,1 +5457,Kyle Stanton,dawnburke@yahoo.com,2022-10-11,"{""language"": ""DE"", ""currency"": ""GBP""}",88.18,Bronze,1 +5458,Adriana Richard,tanyaarias@lopez.info,2023-05-08,"{""language"": ""IT"", ""currency"": ""USD""}",6574.54,Bronze,1 +5459,Jasmine Richardson,taylor02@hotmail.com,2021-10-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5229.15,Silver,1 +5460,Ashley Welch,xbaker@gmail.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",3543.98,Gold,1 +5461,Melissa Small,bishopdenise@mccoy.com,2021-12-01,"{""language"": ""FR"", ""currency"": ""CAD""}",360.87,Gold,1 +5462,Denise Morales,englishjose@gmail.com,2020-12-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3433.03,Silver,1 +5463,Miguel Stein,zachary79@gmail.com,2020-01-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4701.22,Gold,1 +5464,Christine Mcdonald,sandra94@hotmail.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""EUR""}",3561.45,Silver,1 +5465,Christopher Peterson,mgriffith@lawrence.com,2023-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",4134.38,Bronze,1 +5466,Blake Kirby,smithstephanie@hotmail.com,2020-05-16,"{""language"": ""IT"", ""currency"": ""GBP""}",2079.73,Silver,1 +5467,Meagan Williams,unguyen@marsh.com,2024-01-09,"{""language"": ""DE"", ""currency"": ""USD""}",1253.27,Gold,1 +5468,Brooke Reeves,connorcooper@johnson-savage.com,2022-05-30,"{""language"": ""ES"", ""currency"": ""EUR""}",76.7,Gold,1 +5469,Adam Vargas,qcrawford@gmail.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4946.79,Gold,0 +5470,Elizabeth Monroe,sandragallagher@gray.com,2021-09-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5854.57,Silver,1 +5471,Danielle Rhodes,rjohnson@gmail.com,2020-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",3206.13,Bronze,0 +5472,Christopher Hurst,cassidybriggs@gmail.com,2022-06-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7998.24,Silver,0 +5473,Pamela Garcia,ihernandez@gmail.com,2023-07-23,"{""language"": ""ES"", ""currency"": ""GBP""}",5694.92,Gold,0 +5474,Victor Daniels,srodriguez@monroe.com,2024-08-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4526.01,Gold,1 +5475,Benjamin Strickland,murraykatie@patel-reynolds.com,2020-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",9321.62,Bronze,1 +5476,Darren Cross,michaelwilson@green.com,2022-09-16,"{""language"": ""EN"", ""currency"": ""GBP""}",2331.0,Bronze,1 +5477,Andrew Holder,andreaowens@yang.org,2023-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",98.37,Gold,0 +5478,Rachel Williams,dthompson@larsen-diaz.info,2020-08-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9013.56,Bronze,0 +5479,Kimberly Richardson,scott77@hotmail.com,2024-09-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3648.86,Bronze,0 +5480,Natasha Jackson,john09@gmail.com,2023-03-17,"{""language"": ""FR"", ""currency"": ""USD""}",7855.28,Silver,0 +5481,Douglas Blanchard,walter86@gmail.com,2020-04-29,"{""language"": ""IT"", ""currency"": ""USD""}",5303.99,Silver,0 +5482,Patricia Jones,vfuentes@yahoo.com,2021-08-26,"{""language"": ""FR"", ""currency"": ""EUR""}",689.29,Silver,0 +5483,Maria Bell,jonathonallen@martin.net,2024-06-01,"{""language"": ""DE"", ""currency"": ""USD""}",974.79,Bronze,1 +5484,Michael Thomas,teresa12@gmail.com,2023-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3294.04,Silver,0 +5485,Shannon Young,lisamejia@yahoo.com,2020-08-09,"{""language"": ""DE"", ""currency"": ""GBP""}",8416.95,Gold,0 +5486,Angela Sharp,johncastillo@hotmail.com,2023-05-28,"{""language"": ""DE"", ""currency"": ""CAD""}",9831.61,Silver,1 +5487,John Taylor,jonathan46@bonilla.com,2020-03-15,"{""language"": ""FR"", ""currency"": ""CAD""}",4619.88,Bronze,1 +5488,Terri Matthews,pattersonduane@yahoo.com,2020-04-22,"{""language"": ""IT"", ""currency"": ""CAD""}",1977.32,Bronze,0 +5489,Sean Li,janetsmith@yahoo.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",3054.23,Bronze,1 +5490,Andrea Henry,ygarcia@hotmail.com,2020-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",805.65,Silver,1 +5491,Allen Simpson,curtisnicholas@nelson-myers.biz,2024-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",2014.43,Bronze,0 +5492,Shannon Lewis,john04@yahoo.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",4513.28,Bronze,0 +5493,Gary Williams,sward@gmail.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",528.76,Gold,0 +5494,Kevin Gonzalez,dana18@gmail.com,2021-11-16,"{""language"": ""FR"", ""currency"": ""MXN""}",2933.29,Silver,1 +5495,Kelly Young,emmajordan@gmail.com,2023-01-18,"{""language"": ""ES"", ""currency"": ""MXN""}",9634.76,Silver,1 +5496,Carla Parsons,thomas25@hotmail.com,2020-11-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2083.58,Bronze,0 +5497,Martha Davis,pmurphy@yahoo.com,2022-05-09,"{""language"": ""IT"", ""currency"": ""MXN""}",6570.78,Bronze,1 +5498,Melanie Hughes,hharris@gmail.com,2021-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",5246.67,Silver,0 +5499,Nancy Smith,brandonjacobs@gmail.com,2022-10-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5028.65,Gold,0 +5500,Robert Jones,scott97@hotmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""EUR""}",1674.28,Gold,1 +5501,Jessica Lawrence,ellisbilly@dorsey-arnold.com,2022-07-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2485.13,Silver,1 +5502,Alexandra Cortez,tharrison@hotmail.com,2023-06-05,"{""language"": ""IT"", ""currency"": ""USD""}",1481.61,Silver,0 +5503,Gregory Forbes,bridget80@gibbs-crawford.com,2023-04-20,"{""language"": ""IT"", ""currency"": ""GBP""}",7476.26,Bronze,1 +5504,Anthony Sanchez,xconley@gmail.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",8295.29,Bronze,1 +5505,Todd Chandler,tcabrera@yahoo.com,2024-11-18,"{""language"": ""EN"", ""currency"": ""CAD""}",3617.49,Gold,1 +5506,Brian Skinner,davisdevin@gmail.com,2024-09-20,"{""language"": ""IT"", ""currency"": ""USD""}",4985.78,Gold,0 +5507,Joe Bowers,aduran@yahoo.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""USD""}",2741.88,Gold,1 +5508,Michelle Parrish,whitneyaustin@monroe.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""EUR""}",5479.73,Gold,1 +5509,Jennifer Lucero,gmerritt@wright.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""USD""}",3191.47,Bronze,1 +5510,Mrs. Angela Richards MD,brianamartinez@valdez.org,2023-11-11,"{""language"": ""ES"", ""currency"": ""CAD""}",4299.2,Silver,0 +5511,Evelyn Price MD,ericksonamanda@gibson.info,2020-04-17,"{""language"": ""ES"", ""currency"": ""GBP""}",1899.42,Silver,0 +5512,Tracy Arias,bbyrd@smith.net,2021-07-17,"{""language"": ""EN"", ""currency"": ""CAD""}",1774.61,Gold,0 +5513,Joyce Erickson,bjackson@yahoo.com,2020-11-04,"{""language"": ""ES"", ""currency"": ""MXN""}",2794.04,Bronze,0 +5514,Audrey Bell,katherine46@yahoo.com,2022-12-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7820.81,Bronze,0 +5515,Juan Cohen,jeremyjohnston@gmail.com,2024-06-22,"{""language"": ""DE"", ""currency"": ""MXN""}",6660.72,Silver,0 +5516,Matthew Andrews,christopher36@hansen.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""USD""}",2512.69,Bronze,1 +5517,Christian Green,shortmelissa@gmail.com,2022-05-28,"{""language"": ""FR"", ""currency"": ""GBP""}",2146.47,Bronze,1 +5518,Ruth Johnson,knightcharles@cole.org,2021-05-02,"{""language"": ""DE"", ""currency"": ""GBP""}",1080.19,Silver,0 +5519,Vincent Simmons,jason93@moore.com,2021-01-23,"{""language"": ""EN"", ""currency"": ""EUR""}",6984.44,Bronze,0 +5520,Laura Hodge,marcusparker@perez-parker.com,2022-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9488.6,Gold,0 +5521,Tiffany Munoz,emilywilliams@hotmail.com,2020-09-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9814.58,Bronze,0 +5522,Tyler Davis,meltondebbie@white.com,2022-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",4125.82,Silver,1 +5523,Kimberly Thompson,karennorton@gmail.com,2023-02-07,"{""language"": ""EN"", ""currency"": ""GBP""}",4358.29,Bronze,1 +5524,Mr. Brian Brown,tyronehernandez@hotmail.com,2022-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",69.05,Silver,0 +5525,Cole Hill,jmcclain@rodgers-smith.info,2020-10-06,"{""language"": ""EN"", ""currency"": ""GBP""}",3564.68,Bronze,0 +5526,Miss Shelly Hernandez,mendozaeileen@yahoo.com,2023-01-10,"{""language"": ""EN"", ""currency"": ""USD""}",2320.35,Gold,1 +5527,Caleb Young,richardsonjoann@yahoo.com,2024-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",4904.92,Gold,1 +5528,Dr. Debra Butler,cynthia99@yahoo.com,2021-01-31,"{""language"": ""IT"", ""currency"": ""MXN""}",8972.78,Bronze,0 +5529,Jessica Gibson,travisbeltran@hotmail.com,2020-12-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2381.93,Silver,0 +5530,Nicolas Savage,glenda86@hotmail.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""USD""}",3124.66,Silver,1 +5531,Danielle Miller,gregorynorris@chaney-watkins.info,2020-02-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2698.93,Bronze,0 +5532,James Edwards,campbellnancy@adams.biz,2022-10-31,"{""language"": ""FR"", ""currency"": ""MXN""}",9815.1,Silver,1 +5533,Richard Simmons,matthew08@lara-johnson.com,2022-05-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4987.41,Silver,0 +5534,James Flores,danielmaddox@gmail.com,2024-04-10,"{""language"": ""EN"", ""currency"": ""EUR""}",7654.81,Bronze,1 +5535,Kathryn Villegas,rromero@yahoo.com,2020-10-01,"{""language"": ""DE"", ""currency"": ""EUR""}",5721.87,Silver,1 +5536,Ethan Leonard,andrea17@yahoo.com,2022-03-22,"{""language"": ""FR"", ""currency"": ""EUR""}",1708.79,Bronze,0 +5537,Gregory Barnes,ginaclark@carlson-pineda.net,2021-04-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6433.96,Bronze,1 +5538,Brenda Jackson,michael31@hotmail.com,2021-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1380.46,Gold,1 +5539,Bryan Day,patricia89@gmail.com,2021-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",5322.05,Silver,1 +5540,Curtis Cobb,zachary38@miller-williams.com,2022-08-25,"{""language"": ""DE"", ""currency"": ""CAD""}",1532.14,Gold,1 +5541,Jared Hayes,apierce@barnett.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",1054.56,Gold,1 +5542,Jordan Tran,peggybridges@hotmail.com,2022-10-23,"{""language"": ""DE"", ""currency"": ""MXN""}",4661.71,Gold,0 +5543,Megan Guzman,mccormickcody@flowers.com,2023-07-09,"{""language"": ""IT"", ""currency"": ""EUR""}",1011.34,Bronze,1 +5544,Benjamin Thomas,karahughes@stephens.biz,2021-11-19,"{""language"": ""ES"", ""currency"": ""USD""}",2275.97,Bronze,0 +5545,James Huber,joseph94@manning.com,2020-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6370.24,Silver,0 +5546,Jennifer Reed,gcoleman@yahoo.com,2021-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",4603.6,Bronze,0 +5547,Michelle Diaz,mcconnelldonald@lewis-cox.com,2024-02-17,"{""language"": ""FR"", ""currency"": ""EUR""}",928.18,Gold,0 +5548,Craig Thomas,mary37@yahoo.com,2021-12-03,"{""language"": ""EN"", ""currency"": ""MXN""}",4994.23,Silver,0 +5549,William Alexander,tammy73@lara.com,2020-05-21,"{""language"": ""EN"", ""currency"": ""GBP""}",4401.23,Silver,1 +5550,Robin Pierce,tracey27@yahoo.com,2024-04-16,"{""language"": ""FR"", ""currency"": ""EUR""}",5368.28,Bronze,0 +5551,Sarah Allen,wilkersoncaroline@warren.org,2023-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4363.38,Bronze,0 +5552,Victoria Wilson,gmiller@hotmail.com,2023-10-18,"{""language"": ""FR"", ""currency"": ""MXN""}",4708.49,Silver,1 +5553,Blake Payne,thomaskendra@johnson.com,2022-02-21,"{""language"": ""FR"", ""currency"": ""USD""}",6036.76,Silver,1 +5554,Crystal Collins,courtneyyork@hurst-davis.com,2020-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",7738.06,Silver,1 +5555,Collin Wilkins,wendybrown@gonzalez.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""EUR""}",9781.94,Bronze,0 +5556,Dr. Heather Braun,hammondkristina@barnett.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""GBP""}",1394.03,Gold,1 +5557,Elizabeth Salinas,ritterjohnny@yahoo.com,2020-01-17,"{""language"": ""IT"", ""currency"": ""EUR""}",1425.05,Gold,1 +5558,Andre Wilkins,edaugherty@leon.org,2021-12-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9388.53,Silver,0 +5559,Ashley Walker,pateljill@odonnell-pierce.com,2021-09-23,"{""language"": ""ES"", ""currency"": ""USD""}",8751.32,Silver,0 +5560,Daniel Daniel,xcarter@gmail.com,2021-06-03,"{""language"": ""EN"", ""currency"": ""USD""}",9499.9,Bronze,0 +5561,Jose Brooks,birdsarah@gonzalez.info,2021-02-20,"{""language"": ""FR"", ""currency"": ""EUR""}",7048.52,Gold,1 +5562,Maria Bennett,kaitlynmoreno@yahoo.com,2023-07-03,"{""language"": ""DE"", ""currency"": ""GBP""}",3889.06,Bronze,0 +5563,Jennifer Watkins,dianethompson@gmail.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""EUR""}",6644.23,Bronze,0 +5564,William Smith,petersonstacy@hotmail.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""USD""}",1919.73,Gold,0 +5565,Dr. Ashley Warren MD,jodytran@hotmail.com,2024-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",9087.58,Gold,0 +5566,Mr. Jonathan Wolfe,pthompson@yang.com,2020-01-23,"{""language"": ""DE"", ""currency"": ""MXN""}",1842.28,Bronze,0 +5567,Janet Pena,fordryan@hartman-andersen.com,2021-11-12,"{""language"": ""ES"", ""currency"": ""CAD""}",8309.32,Silver,0 +5568,Kendra Massey,john55@yahoo.com,2022-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",181.03,Gold,1 +5569,Ryan Parker,wdyer@gmail.com,2020-04-11,"{""language"": ""DE"", ""currency"": ""CAD""}",2134.66,Silver,0 +5570,Victor Ortiz,angelballard@yahoo.com,2024-02-05,"{""language"": ""DE"", ""currency"": ""CAD""}",7776.96,Gold,1 +5571,Katherine Garcia,adrian82@yahoo.com,2023-10-09,"{""language"": ""FR"", ""currency"": ""USD""}",8213.91,Silver,1 +5572,Emma Reid,rmcdaniel@mathews-johnson.info,2022-06-23,"{""language"": ""FR"", ""currency"": ""EUR""}",1863.57,Gold,1 +5573,Jamie Burke,youngmelanie@sherman.com,2023-07-21,"{""language"": ""ES"", ""currency"": ""GBP""}",7302.67,Gold,0 +5574,Sean Oliver,griffithshannon@hotmail.com,2021-01-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8889.34,Gold,0 +5575,Holly Bradley,vrangel@yahoo.com,2023-05-23,"{""language"": ""ES"", ""currency"": ""CAD""}",7756.27,Bronze,1 +5576,Megan Brown,nelsonmark@gmail.com,2024-11-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4293.97,Gold,0 +5577,Michael Patterson,zsilva@yahoo.com,2024-01-16,"{""language"": ""FR"", ""currency"": ""MXN""}",5795.85,Gold,1 +5578,Brenda Horn,craig89@gmail.com,2023-02-24,"{""language"": ""ES"", ""currency"": ""CAD""}",7173.26,Gold,0 +5579,Brittany Hall,jwalker@gmail.com,2022-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6328.76,Bronze,1 +5580,Haley Wagner,robinsonheidi@gmail.com,2020-12-25,"{""language"": ""EN"", ""currency"": ""GBP""}",5134.72,Bronze,0 +5581,Danny Cooke,katie06@gmail.com,2022-04-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3497.15,Bronze,0 +5582,Amanda Stevens,stephaniedennis@yahoo.com,2021-04-09,"{""language"": ""FR"", ""currency"": ""EUR""}",8571.18,Bronze,1 +5583,Suzanne Stewart,bdixon@daniels.com,2024-11-14,"{""language"": ""EN"", ""currency"": ""EUR""}",6227.05,Silver,1 +5584,Benjamin Shea,hollowaytabitha@yahoo.com,2021-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6612.24,Gold,1 +5585,Joseph Stone,reneejensen@myers-burns.com,2021-11-21,"{""language"": ""FR"", ""currency"": ""EUR""}",9483.74,Silver,0 +5586,Garrett Paul,carterroger@gmail.com,2022-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",5628.34,Bronze,1 +5587,Amanda Mclean,iramsey@hotmail.com,2020-04-17,"{""language"": ""EN"", ""currency"": ""USD""}",443.31,Silver,1 +5588,Kenneth Taylor,cynthiasmith@hotmail.com,2021-06-07,"{""language"": ""IT"", ""currency"": ""MXN""}",4287.94,Gold,1 +5589,Kimberly Taylor,jonesthomas@baker.biz,2022-06-22,"{""language"": ""EN"", ""currency"": ""GBP""}",6522.12,Bronze,1 +5590,Alexandra Banks,sharon39@gmail.com,2021-11-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9951.31,Gold,1 +5591,Steven Nguyen,robert70@salinas.com,2022-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",1214.65,Bronze,1 +5592,Denise Vazquez,elewis@wallace-anderson.com,2023-11-20,"{""language"": ""ES"", ""currency"": ""CAD""}",514.03,Gold,1 +5593,Clifford Mccoy,morgansteven@yahoo.com,2023-01-29,"{""language"": ""ES"", ""currency"": ""CAD""}",8088.17,Bronze,0 +5594,Megan Watson,clayton89@burke-gonzales.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",3618.14,Gold,1 +5595,Jennifer Owen,nicholsbrendan@hurley.biz,2020-10-16,"{""language"": ""IT"", ""currency"": ""MXN""}",8225.77,Silver,0 +5596,James James,wbeasley@gmail.com,2024-06-21,"{""language"": ""EN"", ""currency"": ""GBP""}",2313.13,Bronze,0 +5597,Timothy Anthony,jesse71@walker.com,2023-09-10,"{""language"": ""DE"", ""currency"": ""EUR""}",766.59,Bronze,1 +5598,Diane Salas,jimmyhughes@yahoo.com,2022-02-07,"{""language"": ""DE"", ""currency"": ""MXN""}",4287.86,Bronze,1 +5599,Gregory Morgan,omaynard@yahoo.com,2022-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",834.74,Silver,0 +5600,Gregory Larsen,vsanders@yahoo.com,2023-01-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4748.2,Silver,1 +5601,Mark Martin,robertschristine@gmail.com,2021-10-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3058.68,Gold,0 +5602,Ashley Harris,aaron29@ramos.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",664.25,Bronze,1 +5603,Mikayla Martinez,ianferguson@yahoo.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""CAD""}",2782.11,Bronze,0 +5604,Amy Patel,davidanderson@nguyen-marks.com,2024-09-19,"{""language"": ""ES"", ""currency"": ""USD""}",8331.44,Silver,0 +5605,Audrey Williams,mcfarlandmichael@hotmail.com,2024-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6644.37,Bronze,1 +5606,Ronald Potter,ccoleman@reed.biz,2022-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",9505.67,Silver,0 +5607,Mary Mullen,gibsonsarah@west.com,2020-12-06,"{""language"": ""FR"", ""currency"": ""USD""}",897.04,Silver,1 +5608,Stephen Lester,gonzalezerika@gmail.com,2020-02-04,"{""language"": ""EN"", ""currency"": ""GBP""}",8929.99,Gold,1 +5609,Kyle Moore,eaustin@hotmail.com,2020-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",4868.75,Silver,0 +5610,Ralph Roberts,robertramirez@nolan.info,2024-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",2433.03,Bronze,1 +5611,David Clark,breanna62@russell-ward.biz,2022-11-26,"{""language"": ""DE"", ""currency"": ""USD""}",2846.96,Gold,0 +5612,William Joseph,ymiller@yahoo.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",545.52,Gold,0 +5613,Carrie Arnold,millerjeffrey@yahoo.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5139.35,Gold,1 +5614,Richard Wood,nicholas16@rivera-olson.com,2021-06-24,"{""language"": ""DE"", ""currency"": ""CAD""}",2070.86,Silver,0 +5615,Jason Brooks,lcarlson@rivers.biz,2020-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",179.33,Gold,1 +5616,Sean Obrien,jsullivan@hotmail.com,2024-03-28,"{""language"": ""ES"", ""currency"": ""CAD""}",2437.28,Gold,1 +5617,Monique Thompson,dwilliams@gmail.com,2023-03-13,"{""language"": ""ES"", ""currency"": ""EUR""}",9103.86,Gold,0 +5618,Rhonda Howell,brettmccall@nguyen-dixon.com,2020-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",3303.14,Bronze,0 +5619,Sara Mitchell,melissaowen@glenn.com,2022-10-23,"{""language"": ""FR"", ""currency"": ""GBP""}",7724.13,Silver,0 +5620,Eric Colon,bradfordjeffery@gmail.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""EUR""}",9149.54,Silver,0 +5621,Shawn Meyer,stacyfernandez@silva-peterson.info,2020-09-15,"{""language"": ""DE"", ""currency"": ""MXN""}",867.67,Bronze,0 +5622,Courtney Bowen,linda73@zimmerman.net,2023-09-25,"{""language"": ""DE"", ""currency"": ""EUR""}",5687.97,Silver,1 +5623,Amanda Keller,kelleycassie@bell.net,2022-05-26,"{""language"": ""EN"", ""currency"": ""GBP""}",4948.61,Gold,1 +5624,Brianna Bryant,jessica56@roman.com,2024-04-18,"{""language"": ""IT"", ""currency"": ""MXN""}",5632.23,Silver,0 +5625,Daniel Williams,allen38@yahoo.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",3225.5,Bronze,1 +5626,Charles Mcdaniel,katherineclark@hotmail.com,2021-07-31,"{""language"": ""IT"", ""currency"": ""EUR""}",3156.12,Silver,1 +5627,Kimberly Guerrero,christopher02@hotmail.com,2020-05-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8169.71,Bronze,0 +5628,Robert Meyers Jr.,andrewadkins@hotmail.com,2022-03-16,"{""language"": ""FR"", ""currency"": ""GBP""}",9299.52,Gold,1 +5629,Barbara Dickerson,phillipkrause@houston.net,2020-11-18,"{""language"": ""FR"", ""currency"": ""CAD""}",483.06,Silver,1 +5630,Jermaine Bryant,clarkmeredith@morgan-riddle.com,2022-08-22,"{""language"": ""DE"", ""currency"": ""EUR""}",3192.34,Bronze,0 +5631,Ryan Bowers,tamara15@day.net,2023-06-05,"{""language"": ""ES"", ""currency"": ""CAD""}",9739.09,Bronze,1 +5632,David Gomez,walshjeffrey@pena.com,2020-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",2111.31,Silver,1 +5633,Matthew Frost,laura69@hotmail.com,2024-02-17,"{""language"": ""EN"", ""currency"": ""CAD""}",4624.22,Gold,0 +5634,Sarah Williams,ronalddaniels@gmail.com,2024-05-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9941.27,Gold,1 +5635,Audrey Roberts,flemingjessica@peterson-cruz.biz,2020-12-21,"{""language"": ""IT"", ""currency"": ""GBP""}",5162.85,Bronze,0 +5636,Nicholas Ware,bernardjimmy@hotmail.com,2021-11-28,"{""language"": ""IT"", ""currency"": ""GBP""}",5148.34,Gold,0 +5637,Megan Ortega,hhood@simon.com,2020-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",8182.97,Bronze,1 +5638,Megan Bates,johnsonroy@hotmail.com,2020-02-10,"{""language"": ""ES"", ""currency"": ""EUR""}",7769.35,Silver,0 +5639,Courtney Foster,douglaslaura@graham.com,2022-01-30,"{""language"": ""ES"", ""currency"": ""EUR""}",401.02,Bronze,0 +5640,Robert Mcgrath,nicholas29@gmail.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",2080.35,Silver,0 +5641,Austin Riley,markdouglas@alexander.com,2021-03-16,"{""language"": ""EN"", ""currency"": ""USD""}",4505.27,Silver,0 +5642,Darlene Sandoval,derrick49@gmail.com,2022-07-15,"{""language"": ""FR"", ""currency"": ""GBP""}",333.56,Silver,1 +5643,Sara Turner,wagnerhenry@potts.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7819.7,Silver,1 +5644,Virginia Thomas,judy35@mcneil-tucker.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1431.8,Gold,1 +5645,Kathryn Jones,justinpace@gmail.com,2021-05-08,"{""language"": ""EN"", ""currency"": ""GBP""}",9451.79,Gold,0 +5646,Lindsay Mcdowell,phughes@rogers.com,2023-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",8493.9,Silver,1 +5647,Gail Bond,sean41@gmail.com,2023-08-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4389.45,Bronze,0 +5648,Savannah Rich,michellemoon@gomez-casey.org,2021-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",1963.92,Gold,1 +5649,Maria Norris,twilliams@hotmail.com,2024-11-04,"{""language"": ""IT"", ""currency"": ""USD""}",3847.88,Gold,1 +5650,Anthony Thomas,phillipprice@hotmail.com,2023-02-03,"{""language"": ""EN"", ""currency"": ""MXN""}",5151.92,Bronze,0 +5651,Jamie Cobb,triciaclark@vargas.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""USD""}",4584.22,Gold,0 +5652,Laura King,porr@hotmail.com,2020-12-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3814.62,Gold,1 +5653,Cheryl Richards,emclean@hotmail.com,2023-02-25,"{""language"": ""IT"", ""currency"": ""MXN""}",4932.44,Gold,1 +5654,Christy Carlson,joshuagutierrez@hotmail.com,2023-09-20,"{""language"": ""DE"", ""currency"": ""GBP""}",651.71,Silver,0 +5655,Regina Turner,aaronbrandt@miller-moss.com,2024-10-07,"{""language"": ""IT"", ""currency"": ""CAD""}",3783.55,Silver,1 +5656,Colin Sanchez,audrey37@morgan.biz,2023-02-01,"{""language"": ""FR"", ""currency"": ""MXN""}",9882.49,Gold,1 +5657,Joshua Miller,hernandezstephanie@gmail.com,2020-11-22,"{""language"": ""IT"", ""currency"": ""USD""}",5836.43,Silver,1 +5658,Kelsey Montoya,barkerbenjamin@mitchell-flores.net,2024-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",7774.38,Silver,0 +5659,Kimberly Johnson DVM,ejones@burke-harper.info,2023-11-18,"{""language"": ""IT"", ""currency"": ""USD""}",8573.16,Gold,1 +5660,Allison Cole,fchen@leblanc.com,2021-06-12,"{""language"": ""ES"", ""currency"": ""EUR""}",7173.66,Bronze,0 +5661,Jeffrey Valdez,brianna45@schultz.biz,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",786.65,Bronze,1 +5662,Cynthia Henry,larry99@haley-nunez.com,2023-05-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1247.3,Gold,1 +5663,Elizabeth Cortez,cwang@camacho.com,2020-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9975.79,Bronze,1 +5664,Melissa Johnson,daniel15@hotmail.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""MXN""}",9274.74,Gold,0 +5665,Steven Peterson,laura96@burke.com,2022-02-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3697.9,Bronze,1 +5666,Michael Warren,anthony11@gmail.com,2020-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",9817.82,Silver,0 +5667,Angela Howell,nicolecurtis@gmail.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",6629.94,Gold,1 +5668,Mitchell Walters,josehughes@harris-hayes.com,2023-02-19,"{""language"": ""DE"", ""currency"": ""GBP""}",2032.97,Bronze,0 +5669,Kevin Mitchell,lozanosara@russell.com,2021-12-07,"{""language"": ""EN"", ""currency"": ""GBP""}",9668.33,Gold,0 +5670,Maria Smith,kristen81@landry.com,2021-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",428.07,Gold,1 +5671,Denise Donovan,christinasimpson@gmail.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",5750.29,Bronze,1 +5672,Dennis Sloan,huffashley@yahoo.com,2021-01-03,"{""language"": ""ES"", ""currency"": ""USD""}",7065.74,Bronze,0 +5673,Amy Shannon,vlopez@gmail.com,2023-02-25,"{""language"": ""IT"", ""currency"": ""USD""}",3126.2,Gold,1 +5674,Courtney Hernandez,tracyjenkins@cross.net,2021-12-23,"{""language"": ""DE"", ""currency"": ""GBP""}",2095.42,Gold,1 +5675,Kelly Morales,timothy12@park.com,2021-11-15,"{""language"": ""EN"", ""currency"": ""EUR""}",6307.93,Silver,0 +5676,Erin Walker,usmith@gmail.com,2024-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",7267.85,Silver,1 +5677,Peter Woods,stevensonstefanie@williamson-smith.org,2020-11-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5460.86,Bronze,0 +5678,Paige Mcmillan,anthonygriffin@simmons-price.net,2022-09-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2317.68,Silver,1 +5679,Gerald Wilson,jessica57@martin-gonzalez.info,2023-03-17,"{""language"": ""FR"", ""currency"": ""CAD""}",5773.64,Bronze,0 +5680,Christian Rios,christinegarza@martin.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4692.57,Bronze,0 +5681,Kristy Clark,nicole65@hotmail.com,2023-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1499.27,Bronze,1 +5682,Jessica Ross,timothyzimmerman@yahoo.com,2024-06-22,"{""language"": ""DE"", ""currency"": ""EUR""}",6140.86,Bronze,0 +5683,Lisa Brown,pmoore@hotmail.com,2022-03-04,"{""language"": ""EN"", ""currency"": ""EUR""}",9574.53,Bronze,0 +5684,Logan Gregory,hawkinsmary@kennedy-donovan.com,2023-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9305.21,Bronze,1 +5685,Richard Morrison,ericapatton@hotmail.com,2021-11-02,"{""language"": ""FR"", ""currency"": ""CAD""}",9064.7,Silver,1 +5686,Kevin Todd,ydiaz@hotmail.com,2024-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9699.18,Silver,0 +5687,April Orozco,collierbrett@peterson-jones.com,2021-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",5095.44,Gold,1 +5688,Samantha Bolton,ruizanthony@young.com,2024-02-22,"{""language"": ""EN"", ""currency"": ""USD""}",9607.73,Silver,1 +5689,Bryan Collins,megansimmons@gmail.com,2024-07-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5650.64,Gold,1 +5690,Morgan Spence,patrickortiz@yahoo.com,2020-09-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5020.42,Silver,1 +5691,Christopher Krueger,hallbrady@sanchez.net,2019-12-13,"{""language"": ""IT"", ""currency"": ""CAD""}",7685.59,Gold,1 +5692,Richard Mitchell,sandra68@campbell.biz,2024-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",8531.09,Gold,0 +5693,Bethany Stanton,dustinlopez@baker.com,2020-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9144.59,Bronze,0 +5694,Shawn Taylor,gonzalezcindy@burgess.com,2022-10-14,"{""language"": ""IT"", ""currency"": ""EUR""}",554.46,Bronze,0 +5695,Timothy Martin,sanchezdiane@gmail.com,2020-10-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3264.79,Bronze,0 +5696,John Guerra,jonathan33@yahoo.com,2023-07-15,"{""language"": ""ES"", ""currency"": ""GBP""}",6176.01,Bronze,0 +5697,Melvin Bailey,larrysimmons@yahoo.com,2020-07-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1765.33,Gold,0 +5698,Jade Daugherty,maybenjamin@yahoo.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""MXN""}",9573.61,Silver,0 +5699,Carrie Patel,stacie94@gmail.com,2021-09-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8057.84,Bronze,1 +5700,Margaret Kennedy,katrinalutz@yahoo.com,2023-01-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6201.28,Silver,1 +5701,Jessica Williams,huynhdon@hotmail.com,2024-08-20,"{""language"": ""FR"", ""currency"": ""MXN""}",9764.5,Gold,0 +5702,Gregory Gonzalez,pbird@yahoo.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8105.13,Gold,1 +5703,Cynthia Hopkins,torrescorey@hotmail.com,2020-08-17,"{""language"": ""DE"", ""currency"": ""USD""}",6061.48,Silver,0 +5704,Patrick Coleman,roachjon@miller.net,2021-02-12,"{""language"": ""FR"", ""currency"": ""EUR""}",4894.82,Bronze,0 +5705,Shawn Steele,alexanderali@hotmail.com,2024-08-05,"{""language"": ""EN"", ""currency"": ""GBP""}",5520.42,Bronze,1 +5706,Dr. Jason Reynolds,nrodriguez@banks.com,2023-05-24,"{""language"": ""DE"", ""currency"": ""MXN""}",8576.88,Gold,0 +5707,Cynthia Walker,nicole03@young-brennan.com,2020-03-05,"{""language"": ""ES"", ""currency"": ""USD""}",1955.74,Bronze,1 +5708,Jennifer Brown,ithomas@ruiz.com,2020-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",6613.6,Silver,1 +5709,Justin Thomas,jonesdeborah@kim-carpenter.net,2020-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8426.06,Gold,1 +5710,Laura Burns,ujohnson@scott.net,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",8684.37,Bronze,0 +5711,Danny Mendez,catherine27@webster.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",1514.27,Bronze,1 +5712,Paul Estes,ndavenport@davis.biz,2023-11-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4610.25,Bronze,1 +5713,Todd George,carlypeterson@gmail.com,2020-01-27,"{""language"": ""ES"", ""currency"": ""EUR""}",5738.68,Silver,0 +5714,Jennifer Nelson,apriltaylor@gmail.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8307.9,Bronze,0 +5715,Charlotte Rivera,hoovermonica@yahoo.com,2020-10-26,"{""language"": ""FR"", ""currency"": ""EUR""}",1441.6,Bronze,1 +5716,Marie Anderson,greenmario@silva.com,2021-05-10,"{""language"": ""EN"", ""currency"": ""EUR""}",5336.01,Silver,1 +5717,David Singh,abigailsosa@gmail.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""USD""}",7026.48,Bronze,0 +5718,Katherine Wilson,longwilliam@yahoo.com,2023-06-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2456.79,Bronze,0 +5719,Ivan Wilson,tonya17@yahoo.com,2022-08-04,"{""language"": ""FR"", ""currency"": ""MXN""}",3481.74,Silver,1 +5720,Ashley Castillo,anthonyhall@sanford.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""USD""}",6533.1,Silver,0 +5721,Jennifer Wells,imerritt@morales-huber.com,2024-01-24,"{""language"": ""FR"", ""currency"": ""CAD""}",7592.55,Silver,1 +5722,Antonio Bradshaw,zhouston@robles.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""USD""}",4933.46,Bronze,1 +5723,Michael Rowe,zimmermanjoel@valentine.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""EUR""}",4093.07,Silver,1 +5724,Laurie Thompson,michelewoodard@bullock-lara.com,2020-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",7206.88,Gold,0 +5725,Benjamin Russell,nray@jones.org,2020-02-11,"{""language"": ""DE"", ""currency"": ""CAD""}",9870.62,Gold,1 +5726,Dr. Alyssa Turner,mlambert@walker.biz,2020-12-15,"{""language"": ""EN"", ""currency"": ""USD""}",5231.82,Silver,1 +5727,Joseph Carroll,hstewart@lucas.net,2024-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7385.5,Bronze,0 +5728,Marco Adams,kennedycrystal@gmail.com,2024-09-27,"{""language"": ""ES"", ""currency"": ""USD""}",5166.67,Bronze,0 +5729,Eddie Andrews,stephensanthony@hernandez.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""GBP""}",3095.66,Gold,0 +5730,Kristi Munoz,michaelbaker@lewis.org,2023-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",3142.06,Silver,0 +5731,Tiffany Bryant,michaelreed@yahoo.com,2023-11-05,"{""language"": ""DE"", ""currency"": ""USD""}",3378.6,Gold,0 +5732,Lori Hall,dfoster@bean.info,2022-05-23,"{""language"": ""ES"", ""currency"": ""USD""}",8239.03,Gold,0 +5733,Jon Stein,robertsonmarissa@yahoo.com,2024-08-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6968.11,Gold,1 +5734,Andrew Schaefer,pevans@yahoo.com,2020-08-15,"{""language"": ""EN"", ""currency"": ""USD""}",1513.28,Bronze,0 +5735,Sharon Hanson,xdavies@edwards.com,2022-07-05,"{""language"": ""IT"", ""currency"": ""GBP""}",4479.08,Silver,1 +5736,Lori Marshall,greerrebecca@yahoo.com,2024-03-08,"{""language"": ""DE"", ""currency"": ""MXN""}",9548.6,Bronze,0 +5737,Mark Jensen,richard25@yahoo.com,2022-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3030.35,Bronze,0 +5738,Bruce Morrison,amy14@hotmail.com,2022-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5576.9,Bronze,0 +5739,Brenda Hill,moorejoshua@parker.com,2021-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",9933.58,Bronze,1 +5740,Nicole Johnson,vazquezsharon@gmail.com,2020-10-07,"{""language"": ""FR"", ""currency"": ""GBP""}",4973.33,Gold,1 +5741,Connie Avila,pthompson@holmes.com,2024-02-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4756.89,Gold,1 +5742,Sarah Butler,mary07@hotmail.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""EUR""}",1678.55,Gold,0 +5743,Karla Walker,andrewmorris@yahoo.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""EUR""}",75.25,Bronze,1 +5744,Dawn Thomas,matthewramos@barr.info,2023-11-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4813.59,Gold,1 +5745,John Hutchinson,juannunez@gmail.com,2021-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",7905.59,Gold,0 +5746,Tiffany Hill,douglas38@williams.com,2022-03-08,"{""language"": ""DE"", ""currency"": ""USD""}",5414.54,Silver,0 +5747,Christopher Harrison,heather39@rogers-willis.com,2022-05-23,"{""language"": ""IT"", ""currency"": ""USD""}",7305.67,Silver,0 +5748,Lori Turner,emilyhardin@yahoo.com,2019-12-16,"{""language"": ""EN"", ""currency"": ""GBP""}",395.42,Gold,0 +5749,Kristen Gilbert,rebeccabrown@gmail.com,2020-04-27,"{""language"": ""FR"", ""currency"": ""CAD""}",4470.72,Silver,1 +5750,Daniel Berger,philip56@garcia.com,2023-04-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1841.34,Gold,0 +5751,Matthew Stephens,dallen@elliott.com,2023-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",84.06,Silver,1 +5752,Laura Skinner,jamesmeyers@yahoo.com,2022-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",5008.21,Bronze,0 +5753,Brenda Sanders,mariabeard@hotmail.com,2023-08-06,"{""language"": ""FR"", ""currency"": ""MXN""}",5392.4,Silver,0 +5754,Barbara Young,khanmark@hurley.net,2023-06-22,"{""language"": ""DE"", ""currency"": ""MXN""}",5174.34,Bronze,0 +5755,Mary Trujillo,christophergreen@buckley-moss.biz,2023-06-20,"{""language"": ""IT"", ""currency"": ""USD""}",7727.65,Silver,1 +5756,Wendy Adams,jerryhebert@campbell.org,2023-09-13,"{""language"": ""EN"", ""currency"": ""GBP""}",9602.66,Silver,0 +5757,Michael Tapia,heather15@fuentes.com,2024-09-19,"{""language"": ""FR"", ""currency"": ""MXN""}",8305.48,Gold,1 +5758,Crystal Webster,cassandrawilliams@oconnor.net,2020-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3528.86,Bronze,1 +5759,Matthew Nelson,johnsonlisa@hotmail.com,2021-05-16,"{""language"": ""FR"", ""currency"": ""EUR""}",8565.3,Gold,1 +5760,Jamie Garner,martinezscott@yahoo.com,2023-11-13,"{""language"": ""IT"", ""currency"": ""MXN""}",2122.35,Bronze,0 +5761,Mark Thompson,wilsonmatthew@mclaughlin-brown.com,2023-07-31,"{""language"": ""FR"", ""currency"": ""MXN""}",55.57,Gold,1 +5762,Eric Mcmillan,john25@armstrong.com,2022-09-24,"{""language"": ""EN"", ""currency"": ""CAD""}",3640.5,Silver,1 +5763,Victoria Reyes,denisemoore@gmail.com,2023-09-21,"{""language"": ""DE"", ""currency"": ""GBP""}",8614.77,Silver,1 +5764,Darlene Osborn,lauriejones@hotmail.com,2022-12-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5149.39,Gold,1 +5765,Amber Huber,ojoseph@yahoo.com,2022-02-25,"{""language"": ""DE"", ""currency"": ""GBP""}",3597.33,Bronze,0 +5766,Makayla Lee,krodriguez@gmail.com,2020-12-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1711.13,Silver,1 +5767,Lisa Perez,tbishop@yahoo.com,2021-12-16,"{""language"": ""ES"", ""currency"": ""USD""}",7432.55,Gold,1 +5768,Steven Clark,christinakelly@hotmail.com,2024-11-07,"{""language"": ""EN"", ""currency"": ""USD""}",237.68,Silver,1 +5769,Jennifer Bishop,tyler71@mitchell.info,2020-02-09,"{""language"": ""DE"", ""currency"": ""USD""}",3314.2,Silver,1 +5770,John Russell,ccruz@ward.info,2022-11-24,"{""language"": ""DE"", ""currency"": ""EUR""}",5819.98,Bronze,0 +5771,Christine Anderson,amorse@gmail.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",3869.33,Gold,0 +5772,Tammy Solis,mmitchell@douglas.com,2022-05-20,"{""language"": ""FR"", ""currency"": ""MXN""}",8393.39,Silver,1 +5773,Jeffrey Wise,johnsonsandra@hotmail.com,2022-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",5090.17,Silver,0 +5774,Antonio Jones,michaelallen@gmail.com,2022-06-13,"{""language"": ""FR"", ""currency"": ""EUR""}",1965.77,Bronze,1 +5775,Franklin Davis,nstewart@hotmail.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""GBP""}",8398.03,Silver,0 +5776,Jasmine Fowler,alexander66@clements.com,2022-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",6530.38,Bronze,1 +5777,Martin Kelley,aaronmiller@yahoo.com,2023-09-01,"{""language"": ""DE"", ""currency"": ""GBP""}",1908.77,Bronze,0 +5778,Allison Ramirez,pwright@yahoo.com,2023-04-13,"{""language"": ""EN"", ""currency"": ""USD""}",4366.68,Bronze,0 +5779,Gina Bass,bowenlindsay@sandoval.com,2023-06-10,"{""language"": ""FR"", ""currency"": ""USD""}",3360.54,Silver,1 +5780,Shelly Martin,jarvisbrittany@watts-gonzalez.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5593.01,Bronze,1 +5781,Mrs. Pamela Anderson DVM,madisonromero@humphrey.com,2020-07-13,"{""language"": ""FR"", ""currency"": ""EUR""}",7098.68,Silver,0 +5782,Sean Morgan,tabitha59@pena.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""CAD""}",2662.29,Silver,1 +5783,Mrs. Beth Robinson,taramoore@hill.info,2022-02-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4964.21,Gold,0 +5784,Lori Wood,englishmary@frost.com,2020-06-19,"{""language"": ""DE"", ""currency"": ""MXN""}",9830.26,Gold,0 +5785,Dennis Buchanan,jennifer82@hotmail.com,2020-04-28,"{""language"": ""ES"", ""currency"": ""GBP""}",8068.85,Bronze,1 +5786,Samantha Reeves,wilkinscathy@gmail.com,2021-10-06,"{""language"": ""ES"", ""currency"": ""USD""}",9166.97,Bronze,1 +5787,Tracy Mcmillan,morrissandra@allen.com,2021-08-24,"{""language"": ""ES"", ""currency"": ""EUR""}",566.16,Gold,1 +5788,Julie Anderson,michaelgreen@johnson-harris.com,2024-01-09,"{""language"": ""DE"", ""currency"": ""CAD""}",3083.03,Silver,0 +5789,Seth Miller,estescarolyn@hotmail.com,2024-12-08,"{""language"": ""IT"", ""currency"": ""USD""}",9963.96,Bronze,1 +5790,Jonathan Olson,mckinneystephanie@shea.com,2023-01-06,"{""language"": ""DE"", ""currency"": ""MXN""}",3912.26,Gold,0 +5791,Lance Kerr,chadhill@palmer.com,2022-05-31,"{""language"": ""EN"", ""currency"": ""USD""}",9850.05,Silver,0 +5792,Kristen Rodriguez,matthew06@reed.com,2023-12-23,"{""language"": ""DE"", ""currency"": ""GBP""}",6553.14,Silver,1 +5793,Ashley Jones,charper@hotmail.com,2023-04-27,"{""language"": ""EN"", ""currency"": ""USD""}",6949.96,Bronze,0 +5794,Bryan Bennett,hensondavid@dickson-williams.com,2020-04-01,"{""language"": ""EN"", ""currency"": ""EUR""}",7415.36,Gold,0 +5795,Haley Hall,ashley80@gmail.com,2022-08-23,"{""language"": ""IT"", ""currency"": ""USD""}",2280.87,Bronze,0 +5796,Alexander Gonzalez,nicholashorton@edwards-patterson.com,2021-01-16,"{""language"": ""EN"", ""currency"": ""MXN""}",557.34,Silver,0 +5797,Nicholas Lyons,heather00@hotmail.com,2022-09-28,"{""language"": ""FR"", ""currency"": ""EUR""}",8292.09,Gold,0 +5798,Cynthia Wilcox,tholt@yahoo.com,2022-03-11,"{""language"": ""ES"", ""currency"": ""USD""}",5888.43,Bronze,0 +5799,Kimberly Brooks,wbryan@moore.com,2023-07-27,"{""language"": ""DE"", ""currency"": ""GBP""}",7182.1,Silver,0 +5800,Amber Richardson,reyessamantha@gmail.com,2023-08-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7537.05,Bronze,0 +5801,Luis Hill,slee@thompson.org,2021-06-03,"{""language"": ""FR"", ""currency"": ""MXN""}",9259.52,Silver,0 +5802,James Collins,deborahbaker@hill.com,2022-05-26,"{""language"": ""IT"", ""currency"": ""EUR""}",4697.17,Bronze,1 +5803,Robin Kirk,bailey58@gmail.com,2023-07-09,"{""language"": ""IT"", ""currency"": ""USD""}",4095.06,Gold,0 +5804,Peter Williamson,mbutler@huff-berry.biz,2020-04-28,"{""language"": ""IT"", ""currency"": ""CAD""}",9930.27,Bronze,1 +5805,Stephanie Johnson,ganderson@contreras.biz,2020-01-11,"{""language"": ""FR"", ""currency"": ""MXN""}",963.14,Gold,1 +5806,Shelly Thompson,dannyjackson@stanley.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",5926.75,Silver,1 +5807,Diana Sanders,kelly26@yahoo.com,2023-06-11,"{""language"": ""EN"", ""currency"": ""USD""}",8002.57,Silver,0 +5808,Judy Powell MD,albert11@hotmail.com,2024-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2929.79,Silver,1 +5809,Robert Steele,david43@zamora.org,2023-04-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1577.94,Silver,0 +5810,Steven Villarreal,telliott@miranda.com,2021-02-07,"{""language"": ""FR"", ""currency"": ""EUR""}",9354.05,Silver,0 +5811,Linda Howard,kimberlyrasmussen@yahoo.com,2024-10-19,"{""language"": ""IT"", ""currency"": ""USD""}",794.16,Bronze,1 +5812,Amanda Rogers,gordonanderson@richardson.biz,2021-06-17,"{""language"": ""ES"", ""currency"": ""USD""}",7550.04,Bronze,0 +5813,Laura Smith,mendezjames@jones-parker.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""USD""}",9953.5,Silver,0 +5814,Edward Stanton,jimmyterry@hotmail.com,2024-07-29,"{""language"": ""FR"", ""currency"": ""CAD""}",2246.33,Silver,0 +5815,Joseph Rollins,monroeaaron@logan.com,2023-07-02,"{""language"": ""FR"", ""currency"": ""MXN""}",7472.95,Silver,1 +5816,Jerry Gutierrez,uherrera@yahoo.com,2020-03-07,"{""language"": ""IT"", ""currency"": ""EUR""}",3386.22,Silver,0 +5817,Jeffrey Parker,cookyolanda@yahoo.com,2024-04-23,"{""language"": ""FR"", ""currency"": ""USD""}",8356.11,Gold,1 +5818,Tabitha Hernandez,phillipscarlos@gmail.com,2020-03-11,"{""language"": ""FR"", ""currency"": ""GBP""}",9014.18,Silver,1 +5819,Kellie Deleon,rachaelballard@gmail.com,2024-05-05,"{""language"": ""ES"", ""currency"": ""EUR""}",781.92,Gold,0 +5820,Mrs. Audrey Jarvis MD,perrycole@kennedy.com,2022-01-16,"{""language"": ""EN"", ""currency"": ""GBP""}",5776.86,Bronze,0 +5821,Travis Smith,fullerisaiah@gmail.com,2022-09-21,"{""language"": ""DE"", ""currency"": ""MXN""}",4390.21,Silver,1 +5822,Thomas Carey,mccannricardo@hotmail.com,2024-05-05,"{""language"": ""FR"", ""currency"": ""MXN""}",4736.33,Bronze,0 +5823,Jenna Garcia,lmayer@galloway.com,2022-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",4887.15,Bronze,0 +5824,Kimberly Lawrence,sandovalterri@oneal.com,2022-10-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2249.89,Bronze,0 +5825,Jenna Jacobs MD,sarah41@gmail.com,2023-05-20,"{""language"": ""FR"", ""currency"": ""MXN""}",5466.66,Bronze,0 +5826,Dr. Thomas Thomas MD,mcdanielannette@ray-thomas.com,2023-06-20,"{""language"": ""IT"", ""currency"": ""MXN""}",3030.22,Silver,0 +5827,David Castillo,mariah15@stevenson-ellis.com,2023-06-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3066.89,Bronze,1 +5828,Kimberly Cherry,jeremygibson@yahoo.com,2022-04-04,"{""language"": ""ES"", ""currency"": ""USD""}",2127.06,Bronze,0 +5829,Randy Frost,jermainefrederick@bell.com,2020-10-25,"{""language"": ""FR"", ""currency"": ""USD""}",8507.83,Gold,1 +5830,Gloria Brown,zthomas@yahoo.com,2023-10-04,"{""language"": ""FR"", ""currency"": ""USD""}",2775.82,Silver,0 +5831,Monica Morgan,lbridges@hotmail.com,2021-11-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7790.24,Silver,0 +5832,Justin Wright,davischarles@cummings.com,2020-10-06,"{""language"": ""DE"", ""currency"": ""EUR""}",6696.27,Silver,0 +5833,Jennifer Wright,davissamantha@yahoo.com,2023-09-04,"{""language"": ""IT"", ""currency"": ""USD""}",3451.2,Gold,1 +5834,Terri Williams,austingordon@fry-murray.org,2023-05-12,"{""language"": ""IT"", ""currency"": ""USD""}",3370.24,Gold,1 +5835,Danielle Powell,egibson@torres.com,2023-02-26,"{""language"": ""EN"", ""currency"": ""MXN""}",1151.85,Silver,0 +5836,Donna Long,benjamin77@gmail.com,2020-07-21,"{""language"": ""FR"", ""currency"": ""EUR""}",756.93,Gold,0 +5837,Karen Owens,powelljeanne@rivas.com,2023-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",1191.06,Silver,1 +5838,Brittany Hill,thomas49@hotmail.com,2022-01-24,"{""language"": ""EN"", ""currency"": ""USD""}",7022.58,Bronze,1 +5839,Connie Winters,njackson@martin.com,2020-11-12,"{""language"": ""DE"", ""currency"": ""GBP""}",9248.12,Silver,0 +5840,Heather Fischer,christopher22@davis.com,2024-05-05,"{""language"": ""IT"", ""currency"": ""USD""}",360.02,Silver,0 +5841,Kevin Sutton,william41@garza.net,2020-02-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3476.16,Silver,0 +5842,Leah Miller,juliejackson@phillips.info,2021-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",4392.41,Silver,0 +5843,Sergio Rodriguez,nathanielwilliams@snyder.com,2023-04-21,"{""language"": ""FR"", ""currency"": ""GBP""}",6257.02,Bronze,1 +5844,Christopher Jones,cooktodd@willis.org,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",3813.15,Bronze,0 +5845,James Reynolds,xwoods@hotmail.com,2021-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1682.31,Silver,1 +5846,Michelle Bates,kimberlycooper@hotmail.com,2020-12-14,"{""language"": ""ES"", ""currency"": ""CAD""}",3806.24,Silver,0 +5847,Shaun Roberts,dawnbush@ellis.com,2022-12-31,"{""language"": ""DE"", ""currency"": ""GBP""}",4664.42,Gold,0 +5848,Jonathan Hickman,wrightmaria@gmail.com,2021-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",5856.31,Bronze,0 +5849,Olivia Brown,jessica60@cole.com,2020-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",1305.35,Bronze,0 +5850,Jessica Long,pwelch@yahoo.com,2020-01-26,"{""language"": ""EN"", ""currency"": ""GBP""}",1523.66,Bronze,1 +5851,Daniel Rodriguez,adkinsnicole@wilson-warren.org,2020-11-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2461.14,Silver,0 +5852,Alexis Brown,contreraslaura@jones-fox.com,2023-10-17,"{""language"": ""ES"", ""currency"": ""USD""}",3628.74,Gold,0 +5853,Cameron Rios,jsanchez@turner-shaw.com,2020-06-25,"{""language"": ""ES"", ""currency"": ""USD""}",5061.04,Silver,1 +5854,Joseph Long,eschmidt@yahoo.com,2020-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",1731.2,Bronze,0 +5855,Brianna Santiago,taylordanielle@gmail.com,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",8726.13,Silver,0 +5856,Leah Bonilla,ellisanna@yahoo.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",974.45,Gold,1 +5857,William Brown,stephen92@spencer.com,2021-11-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8654.03,Silver,1 +5858,Kelsey Santiago,smithangela@brown.com,2022-05-04,"{""language"": ""IT"", ""currency"": ""CAD""}",4637.54,Gold,1 +5859,Sean Cooper,martinezmaria@yahoo.com,2021-10-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1407.1,Bronze,0 +5860,Tammy Hughes,zthompson@mcneil.info,2021-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7471.79,Bronze,1 +5861,Rachel Romero,skinnerangela@russell.net,2024-05-18,"{""language"": ""EN"", ""currency"": ""GBP""}",6452.7,Gold,0 +5862,Brett Johnson,ldunlap@hotmail.com,2020-06-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1829.25,Bronze,0 +5863,Courtney Carroll,tinamiller@robbins.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""MXN""}",369.14,Gold,0 +5864,Patrick Sutton,joshuahowe@white.com,2024-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",4970.25,Gold,0 +5865,Alyssa Smith,derekbass@gmail.com,2024-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",2380.42,Bronze,0 +5866,Joan Caldwell,krose@bishop.biz,2020-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",313.6,Bronze,1 +5867,Matthew Lopez,brian74@shaw.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""GBP""}",5564.8,Bronze,1 +5868,Erin Davis DDS,richardcunningham@gmail.com,2024-05-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7738.56,Silver,1 +5869,Jeffrey Holland,wallacedanielle@edwards.com,2020-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",9862.14,Gold,0 +5870,Charles Clark,stewarterik@miller-davis.org,2020-11-29,"{""language"": ""FR"", ""currency"": ""USD""}",2953.4,Silver,0 +5871,Mary Faulkner,fedwards@hotmail.com,2023-12-16,"{""language"": ""FR"", ""currency"": ""EUR""}",8363.33,Bronze,1 +5872,Jason Hernandez,henry27@calderon-steele.com,2024-08-05,"{""language"": ""ES"", ""currency"": ""EUR""}",302.91,Gold,1 +5873,Erica Smith,alejandradudley@yahoo.com,2021-06-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2474.32,Bronze,1 +5874,Pamela Bell,shannon78@baldwin-acosta.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",9929.45,Gold,1 +5875,Courtney Miller,austin09@zimmerman-hawkins.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",8490.86,Gold,0 +5876,Brian Green,xcarr@gmail.com,2023-08-03,"{""language"": ""FR"", ""currency"": ""CAD""}",4234.06,Bronze,0 +5877,Brittany Hardin,oblack@hotmail.com,2021-12-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5185.58,Bronze,1 +5878,Joanne Diaz,michaelcarlson@yahoo.com,2024-07-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3496.67,Silver,1 +5879,Robert Hill,christopherhernandez@nelson.com,2020-03-13,"{""language"": ""EN"", ""currency"": ""EUR""}",2688.48,Silver,1 +5880,Maurice Moore,jasminedalton@hotmail.com,2020-06-15,"{""language"": ""EN"", ""currency"": ""MXN""}",4584.2,Gold,0 +5881,Timothy Hodges,wray@johnson-blackwell.net,2021-06-13,"{""language"": ""EN"", ""currency"": ""GBP""}",6808.35,Silver,0 +5882,Sarah Yang,brandon31@yahoo.com,2020-02-28,"{""language"": ""IT"", ""currency"": ""USD""}",6133.94,Gold,0 +5883,Herbert York,tiffanyadams@gmail.com,2023-08-29,"{""language"": ""IT"", ""currency"": ""EUR""}",426.6,Bronze,0 +5884,James Wallace,melindabanks@hotmail.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""GBP""}",221.89,Bronze,0 +5885,Rebecca Moore,michael19@jones.net,2024-10-16,"{""language"": ""EN"", ""currency"": ""CAD""}",4829.29,Gold,0 +5886,Tyler Smith,darryledwards@castaneda-romero.com,2023-09-12,"{""language"": ""FR"", ""currency"": ""EUR""}",4075.86,Silver,0 +5887,Micheal Wagner,mary79@frost-myers.net,2024-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",5814.29,Silver,1 +5888,Jeremy Mcmillan,willie99@gmail.com,2024-01-10,"{""language"": ""FR"", ""currency"": ""MXN""}",111.87,Gold,0 +5889,Virginia Harris,wilsonfrank@lee-summers.info,2023-01-19,"{""language"": ""FR"", ""currency"": ""CAD""}",6079.1,Silver,1 +5890,Charles James,christineosborne@hotmail.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""USD""}",4641.02,Bronze,1 +5891,Wendy Reese,jonathan88@jefferson.com,2020-03-09,"{""language"": ""FR"", ""currency"": ""EUR""}",9770.74,Silver,0 +5892,Katrina Tanner,jose50@gmail.com,2023-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",6132.78,Gold,0 +5893,Tammy Fisher,loriklein@hotmail.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",2274.86,Bronze,0 +5894,Andrea Smith,abradley@yahoo.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",8531.91,Bronze,0 +5895,Jonathan Crawford,zphillips@gmail.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8907.59,Silver,1 +5896,Carrie Reid,imoreno@hotmail.com,2024-09-01,"{""language"": ""IT"", ""currency"": ""GBP""}",6665.84,Gold,0 +5897,James Owen,rortiz@hotmail.com,2023-08-10,"{""language"": ""FR"", ""currency"": ""USD""}",6919.09,Gold,1 +5898,Victor Dickson,cmays@gmail.com,2024-05-10,"{""language"": ""EN"", ""currency"": ""GBP""}",2921.1,Bronze,1 +5899,Angelica Edwards,deanvanessa@yahoo.com,2021-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",8936.53,Bronze,0 +5900,Wendy Taylor,thomasjennifer@simmons.org,2020-02-01,"{""language"": ""DE"", ""currency"": ""USD""}",3501.76,Bronze,1 +5901,Jeffrey Ruiz,dhall@hotmail.com,2022-12-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3649.73,Bronze,1 +5902,Christopher Flynn,kimrodney@yahoo.com,2020-07-05,"{""language"": ""IT"", ""currency"": ""USD""}",2094.68,Gold,0 +5903,John Russell,dreed@mccullough-rollins.net,2024-06-09,"{""language"": ""ES"", ""currency"": ""CAD""}",9343.51,Bronze,1 +5904,Michael Sullivan,flopez@thomas.com,2024-11-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4625.9,Bronze,1 +5905,Daniel Hernandez,jennifergonzalez@yahoo.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",6658.38,Gold,0 +5906,Jacqueline Cunningham,hudsonandrew@vincent-mendez.biz,2023-02-02,"{""language"": ""IT"", ""currency"": ""USD""}",9891.91,Gold,1 +5907,Vanessa Phelps,ostevens@gmail.com,2020-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",3909.95,Gold,0 +5908,Madison Robinson,bobby21@ingram.com,2021-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",8670.67,Gold,0 +5909,Kristen Meyers,lisa75@johnson-douglas.com,2022-01-04,"{""language"": ""DE"", ""currency"": ""EUR""}",8709.21,Silver,0 +5910,Jennifer Kirby,pamela78@gmail.com,2020-02-09,"{""language"": ""DE"", ""currency"": ""EUR""}",5992.1,Bronze,0 +5911,Nicholas Ramirez,uwhitney@flores.com,2023-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2469.31,Bronze,1 +5912,Jesse White,audrey80@walker-thompson.info,2021-02-26,"{""language"": ""FR"", ""currency"": ""GBP""}",1017.52,Bronze,1 +5913,Alex Ayers,cookmaurice@yahoo.com,2023-06-01,"{""language"": ""FR"", ""currency"": ""USD""}",9060.59,Gold,0 +5914,Lauren Parker MD,dstewart@hotmail.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",4632.9,Silver,1 +5915,Megan Melendez,michellemurphy@hotmail.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4885.59,Gold,0 +5916,Rebecca Huang,burtonmichael@hotmail.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""GBP""}",7358.47,Silver,1 +5917,Billy Sutton,amandakim@hotmail.com,2022-05-26,"{""language"": ""IT"", ""currency"": ""GBP""}",8104.45,Bronze,1 +5918,Linda Williams,esmith@webster.com,2024-09-06,"{""language"": ""IT"", ""currency"": ""EUR""}",5855.23,Silver,0 +5919,Abigail Reese,edward01@cross-cummings.com,2022-10-11,"{""language"": ""DE"", ""currency"": ""MXN""}",8527.8,Silver,0 +5920,Jessica Smith,robertpeterson@gmail.com,2021-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7710.21,Silver,0 +5921,Kyle Schmidt,shellyhunter@reyes.com,2022-04-03,"{""language"": ""FR"", ""currency"": ""MXN""}",8192.33,Gold,1 +5922,Adam Ellis,vreynolds@allison.biz,2021-11-14,"{""language"": ""EN"", ""currency"": ""CAD""}",3069.14,Silver,1 +5923,Brian Blackwell,brooke17@yahoo.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",6964.62,Silver,0 +5924,Matthew Jones,collinscarol@poole-medina.net,2022-02-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5521.03,Silver,0 +5925,Kurt Stephens,agregory@yahoo.com,2021-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",7294.43,Silver,0 +5926,Angela Rhodes,jking@gmail.com,2020-03-23,"{""language"": ""DE"", ""currency"": ""MXN""}",1993.54,Bronze,0 +5927,Dr. Hannah Herrera MD,elizabeth61@hotmail.com,2022-11-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8830.4,Bronze,1 +5928,Henry Lee,meredithtorres@johnson.com,2020-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",595.69,Gold,0 +5929,Mrs. Nicole Sanchez,heather48@anderson.net,2020-07-19,"{""language"": ""FR"", ""currency"": ""GBP""}",379.44,Bronze,1 +5930,Neil Evans,nicholas87@blake-cortez.biz,2024-02-25,"{""language"": ""IT"", ""currency"": ""USD""}",9483.91,Silver,1 +5931,Lance Bernard,hendersonmichael@wilcox-sandoval.com,2019-12-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1535.35,Silver,1 +5932,Ronald Cortez,jonesashley@gmail.com,2024-05-06,"{""language"": ""IT"", ""currency"": ""CAD""}",6615.25,Silver,0 +5933,Mrs. Melissa Clark,laurie71@yahoo.com,2022-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",4107.51,Gold,1 +5934,Stephen Johnson,kim56@hotmail.com,2021-12-20,"{""language"": ""IT"", ""currency"": ""EUR""}",230.81,Bronze,0 +5935,Cathy French,cschmidt@gmail.com,2024-07-04,"{""language"": ""ES"", ""currency"": ""MXN""}",6978.48,Silver,0 +5936,Kimberly Shaw,christopher69@young.com,2020-04-14,"{""language"": ""DE"", ""currency"": ""MXN""}",302.1,Silver,0 +5937,Justin Lawson,padillajacob@ponce-dickerson.net,2023-02-23,"{""language"": ""ES"", ""currency"": ""CAD""}",498.72,Silver,1 +5938,Brett Lopez,davidchavez@hotmail.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""MXN""}",4381.77,Bronze,1 +5939,Michelle Martin,zbishop@guzman.com,2020-06-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9640.21,Silver,0 +5940,Patricia Henderson PhD,gonzalestroy@yahoo.com,2020-10-23,"{""language"": ""ES"", ""currency"": ""GBP""}",6759.8,Silver,0 +5941,Destiny Bonilla,mpena@shelton.org,2022-12-21,"{""language"": ""DE"", ""currency"": ""USD""}",6028.65,Bronze,1 +5942,Anna Smith DDS,hwhite@yahoo.com,2023-07-12,"{""language"": ""IT"", ""currency"": ""USD""}",4664.71,Bronze,1 +5943,David Morris,karen05@ellis.com,2023-08-31,"{""language"": ""EN"", ""currency"": ""MXN""}",79.82,Bronze,0 +5944,Tiffany Kelly,andersonjudy@carney-boyer.org,2024-06-05,"{""language"": ""ES"", ""currency"": ""GBP""}",1655.15,Silver,0 +5945,Dennis Johnson,tina04@yahoo.com,2020-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6131.37,Bronze,0 +5946,Amber Wilson,olam@nguyen.com,2022-06-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6095.44,Bronze,1 +5947,Savannah Morris,oliviaturner@lee.com,2020-07-17,"{""language"": ""IT"", ""currency"": ""MXN""}",6072.49,Bronze,0 +5948,Phillip Walker,lwalker@boyd.com,2020-06-19,"{""language"": ""FR"", ""currency"": ""MXN""}",2837.07,Silver,1 +5949,Angela Osborn,burnsrachel@hotmail.com,2022-06-21,"{""language"": ""DE"", ""currency"": ""EUR""}",2924.49,Gold,0 +5950,Amy Martinez,kentkyle@gmail.com,2024-06-27,"{""language"": ""FR"", ""currency"": ""GBP""}",3575.71,Silver,0 +5951,Cindy Rodriguez,juanwilson@edwards-herring.com,2024-05-10,"{""language"": ""ES"", ""currency"": ""CAD""}",3945.15,Gold,1 +5952,Maria Patrick,patriciahill@yahoo.com,2022-10-02,"{""language"": ""EN"", ""currency"": ""USD""}",7359.71,Gold,1 +5953,Emily Osborne,williamnavarro@yahoo.com,2020-03-15,"{""language"": ""EN"", ""currency"": ""MXN""}",1364.66,Gold,1 +5954,Russell Hubbard,jnelson@gmail.com,2023-08-04,"{""language"": ""DE"", ""currency"": ""USD""}",1506.66,Bronze,1 +5955,Denise Miller,gruiz@gmail.com,2020-09-30,"{""language"": ""ES"", ""currency"": ""MXN""}",7666.09,Gold,1 +5956,Matthew Oneill,brownmike@hotmail.com,2023-10-15,"{""language"": ""ES"", ""currency"": ""GBP""}",7607.64,Silver,1 +5957,Sean Garcia,kathybush@yahoo.com,2023-06-09,"{""language"": ""EN"", ""currency"": ""GBP""}",1566.33,Silver,1 +5958,Steven Willis,lovenatasha@hotmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7819.15,Bronze,1 +5959,Mackenzie Coleman,webermeredith@gmail.com,2023-03-10,"{""language"": ""IT"", ""currency"": ""CAD""}",9509.46,Gold,1 +5960,Kathryn Phillips,martineztrevor@hotmail.com,2023-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",3687.01,Gold,1 +5961,Jennifer Brown,ymartin@buchanan.biz,2023-11-13,"{""language"": ""ES"", ""currency"": ""MXN""}",5684.96,Bronze,1 +5962,Brian Howell,singhrhonda@gmail.com,2021-05-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6294.28,Silver,0 +5963,Meghan Russo MD,davidmahoney@yahoo.com,2020-02-26,"{""language"": ""ES"", ""currency"": ""USD""}",4432.34,Bronze,1 +5964,Mark Rogers,albert00@yahoo.com,2024-02-13,"{""language"": ""ES"", ""currency"": ""MXN""}",7010.35,Bronze,0 +5965,Steven Davis,thomas17@moran-jackson.com,2022-02-20,"{""language"": ""IT"", ""currency"": ""GBP""}",8376.37,Bronze,0 +5966,Edward Jackson,valeriejimenez@gmail.com,2021-12-11,"{""language"": ""ES"", ""currency"": ""GBP""}",956.31,Bronze,0 +5967,Drew Waters,garrettritter@moore.com,2022-09-08,"{""language"": ""IT"", ""currency"": ""CAD""}",2607.21,Bronze,0 +5968,Kimberly Frazier,rossjill@potter-gross.com,2023-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",4793.34,Bronze,0 +5969,Dale Bell,oliviamitchell@steele-schwartz.com,2023-01-31,"{""language"": ""DE"", ""currency"": ""USD""}",9978.17,Silver,1 +5970,Emily Rodriguez,cynthiabaldwin@yahoo.com,2022-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",2827.73,Bronze,0 +5971,Andrew Gomez,jjordan@yahoo.com,2021-11-24,"{""language"": ""IT"", ""currency"": ""EUR""}",3881.22,Gold,1 +5972,Deborah Gibson,matthewquinn@yahoo.com,2023-04-24,"{""language"": ""ES"", ""currency"": ""GBP""}",915.54,Gold,1 +5973,Jackson White,zparker@yahoo.com,2021-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5774.44,Gold,1 +5974,Michelle Hunter,taylormichael@gmail.com,2022-06-19,"{""language"": ""ES"", ""currency"": ""EUR""}",3834.2,Bronze,1 +5975,Aaron Faulkner,catherine62@wilson-lin.com,2024-10-06,"{""language"": ""FR"", ""currency"": ""EUR""}",5322.85,Silver,0 +5976,Aaron Gonzalez,myerssharon@yahoo.com,2020-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",4271.27,Silver,1 +5977,George Hammond,rebeccabruce@hotmail.com,2022-02-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5251.16,Gold,1 +5978,Jeffery Bautista,joseph87@garcia.biz,2020-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",2297.33,Silver,0 +5979,Erik Baker,bsnow@martinez.com,2021-12-15,"{""language"": ""ES"", ""currency"": ""CAD""}",9029.64,Gold,1 +5980,Stephanie White,blake20@yahoo.com,2023-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4947.35,Bronze,0 +5981,James Garcia,halljeremy@hotmail.com,2024-12-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7484.03,Bronze,0 +5982,Lisa Jackson,jcoleman@gmail.com,2021-06-08,"{""language"": ""DE"", ""currency"": ""MXN""}",7746.38,Bronze,1 +5983,Andrea Pennington,rogerscorey@martinez.com,2020-03-01,"{""language"": ""DE"", ""currency"": ""GBP""}",6971.21,Gold,0 +5984,Christina Johnson,nicolechapman@scott.info,2023-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",3095.5,Gold,0 +5985,Maria Conner,xholloway@edwards.com,2020-02-24,"{""language"": ""EN"", ""currency"": ""MXN""}",5035.19,Gold,0 +5986,Amber Dalton,davidlittle@hotmail.com,2021-06-14,"{""language"": ""EN"", ""currency"": ""GBP""}",5693.98,Silver,0 +5987,John Ryan,christina15@huerta.info,2020-06-10,"{""language"": ""DE"", ""currency"": ""GBP""}",5606.28,Bronze,0 +5988,Michael Hicks,chad68@hotmail.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",2735.01,Bronze,1 +5989,Samantha Anderson,destinybarrera@hotmail.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""MXN""}",6106.74,Silver,0 +5990,William Ortiz,osmith@vasquez-patterson.org,2022-07-27,"{""language"": ""DE"", ""currency"": ""EUR""}",2368.09,Silver,0 +5991,Stephanie Gonzalez,monroedavid@atkinson-king.com,2022-11-15,"{""language"": ""EN"", ""currency"": ""USD""}",9011.73,Silver,0 +5992,Christopher Williams,phendrix@gmail.com,2024-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3889.66,Bronze,1 +5993,Luis Fuentes,rrussell@gmail.com,2024-09-21,"{""language"": ""DE"", ""currency"": ""GBP""}",3330.37,Bronze,0 +5994,Katherine Archer,lwilliamson@yahoo.com,2022-09-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1604.03,Bronze,0 +5995,Jennifer Murphy,justin42@rivera.com,2024-07-16,"{""language"": ""DE"", ""currency"": ""USD""}",761.24,Bronze,0 +5996,Joseph Vega,blake63@walsh.org,2021-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2850.68,Silver,0 +5997,Joseph Alvarado,moorekevin@beck.com,2020-06-22,"{""language"": ""ES"", ""currency"": ""MXN""}",3414.8,Silver,0 +5998,Elizabeth Noble,andrewconway@gmail.com,2024-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",6157.41,Bronze,1 +5999,Dakota Lynn,hoovertricia@yahoo.com,2021-09-04,"{""language"": ""DE"", ""currency"": ""EUR""}",2970.38,Gold,1 +6000,Guy Jackson,tmccullough@gmail.com,2022-09-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1231.38,Gold,0 +6001,Paul Black,oduke@andrade.com,2020-03-22,"{""language"": ""ES"", ""currency"": ""USD""}",8730.55,Gold,1 +6002,Samantha Murphy,awalker@hotmail.com,2020-02-17,"{""language"": ""ES"", ""currency"": ""CAD""}",1380.36,Gold,0 +6003,Amy Williams,beltrantabitha@hotmail.com,2024-01-15,"{""language"": ""EN"", ""currency"": ""GBP""}",7837.53,Gold,1 +6004,Kevin Anderson,jason16@hall-thompson.com,2020-10-18,"{""language"": ""FR"", ""currency"": ""GBP""}",8718.44,Silver,0 +6005,Gabrielle Stevens,dylanyang@yahoo.com,2023-05-29,"{""language"": ""ES"", ""currency"": ""USD""}",5699.75,Bronze,1 +6006,Donald Gutierrez,victoriawinters@jordan-fry.biz,2024-01-30,"{""language"": ""DE"", ""currency"": ""USD""}",3143.61,Silver,1 +6007,Joseph Hale,qescobar@conley.com,2023-02-28,"{""language"": ""DE"", ""currency"": ""GBP""}",3412.38,Bronze,0 +6008,Amanda Johnson,lori17@franco-williams.com,2024-08-24,"{""language"": ""EN"", ""currency"": ""USD""}",7791.83,Gold,0 +6009,Justin Harrison,jessicablanchard@parker.com,2021-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",651.77,Bronze,1 +6010,Kathryn Miller,kristen60@sanchez.com,2023-12-11,"{""language"": ""EN"", ""currency"": ""USD""}",9535.2,Silver,1 +6011,Duane Bowman,mariahsmith@hotmail.com,2024-03-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2671.32,Bronze,1 +6012,Anne Krause,grantwendy@nguyen-freeman.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""EUR""}",2851.42,Silver,0 +6013,Michelle Sanchez,donaldsonjames@hall.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1835.01,Gold,0 +6014,Tammy West,howardkendra@williams.info,2022-08-15,"{""language"": ""ES"", ""currency"": ""GBP""}",6761.81,Gold,0 +6015,Sarah Lee,autumnbrown@parker.com,2022-12-31,"{""language"": ""IT"", ""currency"": ""CAD""}",514.29,Gold,0 +6016,Patrick Evans,donald72@adams-scott.org,2022-01-10,"{""language"": ""DE"", ""currency"": ""MXN""}",1013.25,Bronze,0 +6017,Dr. Christopher Turner,valeriemoore@hotmail.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9406.06,Bronze,1 +6018,Angela Mitchell,tstone@cummings.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""USD""}",8464.82,Bronze,0 +6019,Suzanne Gates,howardperry@gmail.com,2023-04-12,"{""language"": ""FR"", ""currency"": ""MXN""}",526.32,Silver,1 +6020,Martin Williams,grossdiane@yahoo.com,2023-06-11,"{""language"": ""IT"", ""currency"": ""EUR""}",8263.13,Gold,0 +6021,John Cox,nshaw@mcclure.com,2024-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",4026.75,Silver,1 +6022,Diana Shaw,denisemoreno@walters.org,2021-08-25,"{""language"": ""DE"", ""currency"": ""CAD""}",3558.59,Gold,0 +6023,Jeffrey Nash,dconway@yahoo.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",5233.49,Silver,0 +6024,Danielle Thompson,johnallen@gomez.com,2021-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",4794.47,Gold,1 +6025,Kyle Daniel,russellreilly@hotmail.com,2021-03-20,"{""language"": ""DE"", ""currency"": ""EUR""}",1501.01,Gold,0 +6026,Kimberly Torres,joel77@hotmail.com,2024-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6439.65,Gold,1 +6027,Tanner Wagner,tcrawford@vasquez-patterson.info,2024-01-12,"{""language"": ""EN"", ""currency"": ""GBP""}",4087.98,Bronze,1 +6028,Cindy Gray,ortegaomar@gmail.com,2024-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",3474.08,Gold,0 +6029,Thomas Gibson,dustinrodriguez@hotmail.com,2023-07-18,"{""language"": ""IT"", ""currency"": ""EUR""}",7495.66,Bronze,0 +6030,Timothy Armstrong,carol72@yahoo.com,2021-12-24,"{""language"": ""DE"", ""currency"": ""GBP""}",1399.08,Silver,0 +6031,Richard Martinez,masseybethany@barker.com,2021-08-16,"{""language"": ""FR"", ""currency"": ""USD""}",9896.82,Silver,1 +6032,Jacob Robinson,derekowens@gmail.com,2022-02-17,"{""language"": ""FR"", ""currency"": ""USD""}",3205.23,Bronze,1 +6033,Kenneth Manning,nancy18@franco.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",6859.31,Bronze,1 +6034,Mr. Steven Thomas,brandon50@whitehead.net,2020-02-16,"{""language"": ""FR"", ""currency"": ""MXN""}",6126.76,Bronze,1 +6035,Nicole Cooper,rrussell@obrien-mendez.com,2023-02-22,"{""language"": ""FR"", ""currency"": ""EUR""}",5017.74,Gold,0 +6036,Michael Simmons,richard03@clark-anderson.biz,2022-09-16,"{""language"": ""EN"", ""currency"": ""USD""}",119.06,Gold,0 +6037,Kenneth Smith,emilygeorge@hotmail.com,2023-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",1366.18,Silver,1 +6038,Felicia Daniels,angelaphillips@yahoo.com,2022-11-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3851.06,Silver,0 +6039,Yolanda Rose,campbellemily@schroeder.com,2023-01-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8692.57,Gold,0 +6040,Jennifer Williams,jacksonharris@yahoo.com,2023-06-28,"{""language"": ""ES"", ""currency"": ""CAD""}",4140.05,Gold,1 +6041,Victoria White,xsexton@johnson.com,2023-04-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3622.21,Bronze,0 +6042,Seth Gomez,vdelgado@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""MXN""}",7551.34,Bronze,0 +6043,Gregory Potter,welchdeborah@kelly.com,2021-11-04,"{""language"": ""IT"", ""currency"": ""MXN""}",5862.11,Bronze,1 +6044,Maria Lewis,jimenezshannon@lopez.org,2022-11-07,"{""language"": ""IT"", ""currency"": ""CAD""}",9257.7,Silver,1 +6045,Jill Calderon,james19@yahoo.com,2021-04-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2048.83,Silver,1 +6046,Mrs. Melanie Hardy,ryan58@daugherty.com,2021-04-11,"{""language"": ""EN"", ""currency"": ""USD""}",8326.05,Bronze,0 +6047,Dawn Martin,sarah55@jackson.com,2022-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",8867.52,Gold,0 +6048,Felicia Walker,vbrown@chambers.com,2022-08-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9990.92,Silver,0 +6049,Jeffrey Anderson,rachel03@yahoo.com,2022-12-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7041.47,Silver,1 +6050,Sabrina Rivera,dustin76@gmail.com,2023-02-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9813.45,Gold,0 +6051,Jason Cohen,monica47@gmail.com,2023-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",3536.58,Gold,1 +6052,Elizabeth Suarez,hamiltonwalter@robinson-west.com,2024-07-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2202.67,Bronze,0 +6053,Elijah Craig,tammymoreno@hotmail.com,2021-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",5814.63,Bronze,1 +6054,Maxwell James,matthewbaker@buckley.com,2024-11-26,"{""language"": ""FR"", ""currency"": ""EUR""}",602.69,Bronze,0 +6055,Michelle Hansen,simonchristine@wise-graves.info,2022-02-25,"{""language"": ""ES"", ""currency"": ""MXN""}",6261.01,Silver,1 +6056,Tracy Moyer,vmccoy@pugh-garza.biz,2023-03-23,"{""language"": ""IT"", ""currency"": ""CAD""}",3503.55,Silver,1 +6057,Jessica Cox,troy79@hays.com,2021-03-20,"{""language"": ""FR"", ""currency"": ""USD""}",6517.9,Gold,1 +6058,Gina Carlson,baileynicholas@garza-rogers.com,2022-09-24,"{""language"": ""ES"", ""currency"": ""GBP""}",4598.1,Gold,1 +6059,Amy Brown,miguel57@gmail.com,2021-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",355.76,Bronze,0 +6060,Carmen Mann,rivasalexis@yahoo.com,2021-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",1622.35,Gold,1 +6061,Wendy King,wlawson@yahoo.com,2021-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1896.45,Gold,0 +6062,Justin Bryant,kaylascott@hotmail.com,2023-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1336.09,Bronze,0 +6063,Susan Smith,george93@farrell-ellis.info,2019-12-24,"{""language"": ""IT"", ""currency"": ""USD""}",7433.3,Bronze,1 +6064,April Lindsey,williamssandra@bean.net,2021-04-24,"{""language"": ""IT"", ""currency"": ""GBP""}",7118.23,Bronze,0 +6065,Eric Young,ashlee95@gmail.com,2021-12-05,"{""language"": ""FR"", ""currency"": ""CAD""}",9036.07,Gold,0 +6066,Kendra Meza,iwang@holt-riley.com,2024-10-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8531.87,Gold,0 +6067,Nicholas Garcia MD,esherman@yahoo.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4673.52,Bronze,0 +6068,Ashley Kim,valerie74@roberts.org,2022-12-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8905.63,Gold,1 +6069,Alisha Jones,kelsey04@alvarado-morrow.com,2023-02-04,"{""language"": ""DE"", ""currency"": ""GBP""}",4306.18,Gold,1 +6070,Todd Jones,john30@flores.org,2024-02-10,"{""language"": ""IT"", ""currency"": ""MXN""}",3943.51,Bronze,0 +6071,Kenneth Francis,williamsontroy@gmail.com,2021-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",5976.42,Silver,0 +6072,Andrew Shields,jamesrodriguez@sullivan-clark.com,2023-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",9909.5,Bronze,0 +6073,Shawn Holt,matthew61@webb.biz,2020-08-19,"{""language"": ""DE"", ""currency"": ""USD""}",1252.82,Silver,0 +6074,Joyce Miller,adrienne81@hotmail.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""GBP""}",7307.22,Silver,1 +6075,Javier Newman,benjaminhull@butler.net,2022-10-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1747.44,Bronze,0 +6076,Jay Mata,melissa28@maxwell.com,2024-04-07,"{""language"": ""IT"", ""currency"": ""USD""}",2927.71,Silver,0 +6077,Katie White,kimberly49@hughes-cooper.com,2022-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",980.24,Gold,1 +6078,Ellen Gomez,paulvega@yahoo.com,2020-03-18,"{""language"": ""ES"", ""currency"": ""MXN""}",5511.08,Bronze,1 +6079,John Brady,donna63@yahoo.com,2022-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",3460.84,Bronze,0 +6080,Andrea Meyers,anita53@yahoo.com,2021-01-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4491.85,Silver,1 +6081,Donna Lawrence,oriddle@martinez.info,2024-08-08,"{""language"": ""FR"", ""currency"": ""EUR""}",755.91,Gold,0 +6082,Michael Stein,timothywolfe@howard.com,2022-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",7222.66,Gold,1 +6083,Taylor Donovan,barry56@morales.biz,2021-10-06,"{""language"": ""FR"", ""currency"": ""MXN""}",6892.6,Bronze,0 +6084,Kathy Williams,westaaron@yahoo.com,2024-09-23,"{""language"": ""FR"", ""currency"": ""USD""}",1646.46,Silver,0 +6085,Michelle Robinson,cassandralambert@hotmail.com,2020-12-23,"{""language"": ""EN"", ""currency"": ""CAD""}",3030.69,Bronze,0 +6086,Jeffrey Hayes,justinnicholson@morgan-hall.com,2021-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",5941.88,Bronze,0 +6087,Jose Ford,ngibson@yahoo.com,2020-05-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7948.94,Silver,0 +6088,Jeffery Ross,aperez@chandler-woods.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3815.64,Bronze,1 +6089,Noah Edwards,michaeltaylor@gmail.com,2024-06-15,"{""language"": ""DE"", ""currency"": ""CAD""}",8877.58,Bronze,1 +6090,Penny Dunn,ellistodd@cook.org,2024-01-13,"{""language"": ""ES"", ""currency"": ""CAD""}",1499.78,Gold,0 +6091,Sarah Clark,fray@yahoo.com,2022-12-10,"{""language"": ""EN"", ""currency"": ""GBP""}",9630.02,Silver,0 +6092,Christina Snyder,taylortodd@yahoo.com,2023-12-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3450.57,Gold,1 +6093,Travis Hawkins,gperkins@hotmail.com,2023-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2593.85,Silver,0 +6094,Kimberly Collins,adamsalicia@hotmail.com,2022-08-22,"{""language"": ""FR"", ""currency"": ""GBP""}",8927.65,Silver,1 +6095,Monica Wilson,hweaver@howard-mcdonald.info,2021-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3164.75,Silver,0 +6096,Darrell Ray,dylanpowers@gmail.com,2024-05-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1295.92,Bronze,0 +6097,Dawn Greene,ramosroy@murphy.net,2020-07-18,"{""language"": ""ES"", ""currency"": ""USD""}",8703.1,Silver,0 +6098,Jose Thompson,jscott@gmail.com,2023-02-16,"{""language"": ""FR"", ""currency"": ""CAD""}",1292.66,Gold,1 +6099,Amber Carroll,danielletaylor@gmail.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",1382.43,Bronze,1 +6100,Christine Arroyo,njones@yahoo.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",6596.66,Bronze,1 +6101,Diamond Calderon,xperry@gmail.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""CAD""}",502.71,Gold,1 +6102,Alan Gutierrez,cortezdavid@allen-sloan.net,2022-10-23,"{""language"": ""FR"", ""currency"": ""USD""}",7531.57,Silver,0 +6103,Kirsten Rivera,johnbrown@hubbard.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",4593.7,Gold,0 +6104,Christopher Lewis,matthew19@aguilar.com,2024-06-23,"{""language"": ""IT"", ""currency"": ""MXN""}",9366.99,Bronze,1 +6105,Jacob Mcguire,scottlindsey@gmail.com,2022-02-17,"{""language"": ""ES"", ""currency"": ""GBP""}",6054.57,Silver,1 +6106,Madeline Smith,gonzalezlisa@hernandez-mullins.info,2023-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",9356.84,Bronze,1 +6107,Karen Humphrey,thomasbriggs@ward.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""CAD""}",6910.67,Bronze,0 +6108,Carrie Dorsey,blackwellluke@gmail.com,2022-04-07,"{""language"": ""EN"", ""currency"": ""USD""}",4924.1,Bronze,1 +6109,Ryan Rivera,pottererik@miranda.com,2024-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",871.63,Gold,0 +6110,David Williams,jamesstewart@wright.com,2020-05-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9295.02,Bronze,1 +6111,Tyrone Miller,collinsmelissa@obrien.com,2020-12-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9790.99,Silver,0 +6112,Robin Booker,lisa66@vega.com,2021-08-18,"{""language"": ""FR"", ""currency"": ""EUR""}",8426.87,Gold,0 +6113,Jason Kim,brussell@yahoo.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""EUR""}",8397.57,Gold,1 +6114,Philip King,daviladennis@gonzalez-lopez.com,2024-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8046.18,Gold,0 +6115,Margaret Shaw,velezstephanie@gmail.com,2021-08-11,"{""language"": ""ES"", ""currency"": ""GBP""}",755.49,Bronze,0 +6116,Jonathan Cook,arnoldmichael@gmail.com,2023-03-29,"{""language"": ""ES"", ""currency"": ""MXN""}",8526.92,Silver,0 +6117,Morgan Hurley,fosterscott@gonzalez-anderson.com,2022-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6304.38,Silver,1 +6118,Kayla Tran,hancockandrew@hotmail.com,2024-01-18,"{""language"": ""ES"", ""currency"": ""GBP""}",5797.12,Silver,0 +6119,Gregg Mckinney,christopherrose@hotmail.com,2020-05-28,"{""language"": ""IT"", ""currency"": ""GBP""}",3259.08,Silver,1 +6120,Michael Grant,davidmclaughlin@hunter.com,2022-05-14,"{""language"": ""IT"", ""currency"": ""CAD""}",8965.22,Bronze,0 +6121,Diana Gallegos,heather69@gmail.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""USD""}",8412.86,Silver,0 +6122,Gina Carr,hillmary@fischer.net,2021-09-08,"{""language"": ""ES"", ""currency"": ""USD""}",2750.69,Silver,1 +6123,Bonnie Freeman,lmoran@simon-curtis.net,2024-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",6234.24,Silver,1 +6124,Frances Leonard,mcclurebradley@hotmail.com,2024-02-08,"{""language"": ""DE"", ""currency"": ""USD""}",9541.26,Bronze,0 +6125,Michael Sanchez,jessejones@yahoo.com,2024-04-18,"{""language"": ""FR"", ""currency"": ""CAD""}",1748.32,Silver,0 +6126,Matthew Brown,lesliejones@hawkins.com,2024-09-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5452.37,Bronze,0 +6127,Raymond Wiggins,heatherstevens@hotmail.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""MXN""}",3574.71,Bronze,1 +6128,Jacqueline Williamson,lynn05@morgan.info,2024-11-08,"{""language"": ""EN"", ""currency"": ""MXN""}",3612.26,Bronze,1 +6129,Rachel Baker,samantha86@flores.com,2024-08-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8401.4,Gold,0 +6130,Anthony Carter,victoriabaxter@yahoo.com,2020-04-05,"{""language"": ""IT"", ""currency"": ""MXN""}",6449.2,Gold,1 +6131,Susan Armstrong,brittneymorris@bates.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""EUR""}",3719.02,Silver,1 +6132,David Delgado,robertpetersen@yahoo.com,2024-08-12,"{""language"": ""ES"", ""currency"": ""USD""}",9314.73,Gold,0 +6133,Ariana Rocha,rmatthews@yahoo.com,2022-09-13,"{""language"": ""DE"", ""currency"": ""MXN""}",4911.8,Silver,0 +6134,Dennis Shaw,amberbrown@gmail.com,2021-05-04,"{""language"": ""FR"", ""currency"": ""GBP""}",2629.1,Gold,1 +6135,Paul Olson,mramos@little.com,2020-01-13,"{""language"": ""IT"", ""currency"": ""EUR""}",497.48,Bronze,1 +6136,Sue Lucas,susanolson@yahoo.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",993.82,Silver,0 +6137,Tara Perez,larryshaffer@perez.biz,2022-06-17,"{""language"": ""EN"", ""currency"": ""MXN""}",9417.98,Gold,0 +6138,Lisa Watson,edward34@gmail.com,2022-05-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6716.91,Gold,0 +6139,Dawn Hale,aweaver@phelps.com,2021-04-05,"{""language"": ""DE"", ""currency"": ""MXN""}",1245.03,Bronze,1 +6140,Ashley Pineda,ballardlaura@baker.com,2023-02-21,"{""language"": ""IT"", ""currency"": ""USD""}",5863.99,Silver,0 +6141,Mary House,vyang@hotmail.com,2022-07-02,"{""language"": ""ES"", ""currency"": ""GBP""}",7351.29,Silver,1 +6142,Donald Stein,kgomez@perry.biz,2020-10-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3971.6,Bronze,0 +6143,Jerome Moore,jose77@gmail.com,2023-02-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5448.85,Gold,0 +6144,Kimberly Davidson,tyler44@gmail.com,2023-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",1067.47,Gold,0 +6145,Sean Sawyer,brettwatson@yahoo.com,2022-10-17,"{""language"": ""EN"", ""currency"": ""EUR""}",4980.89,Bronze,1 +6146,William Paul,nathanlucas@gmail.com,2024-01-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6853.16,Bronze,0 +6147,Rachel Harrison,chrisgomez@robinson-bradford.com,2022-06-01,"{""language"": ""ES"", ""currency"": ""CAD""}",8052.75,Silver,0 +6148,Emily Todd,denise75@gmail.com,2021-10-10,"{""language"": ""DE"", ""currency"": ""USD""}",2863.6,Gold,0 +6149,Mark King,kevinrogers@yahoo.com,2021-01-04,"{""language"": ""EN"", ""currency"": ""CAD""}",9458.4,Silver,0 +6150,Jeffrey Perkins,kevin97@hotmail.com,2023-08-28,"{""language"": ""EN"", ""currency"": ""GBP""}",9949.01,Gold,1 +6151,Beth Brown,gallegosann@hotmail.com,2024-04-04,"{""language"": ""EN"", ""currency"": ""USD""}",5546.05,Silver,1 +6152,Ebony Diaz,sharonmoody@hotmail.com,2023-06-07,"{""language"": ""IT"", ""currency"": ""EUR""}",9945.93,Gold,0 +6153,Dana Martin,brookskristina@bradley.info,2023-11-02,"{""language"": ""ES"", ""currency"": ""MXN""}",2504.76,Bronze,1 +6154,Kimberly Flores,michaelmiller@yahoo.com,2022-03-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3509.63,Silver,0 +6155,Penny Jones,ramosjeremy@yahoo.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""GBP""}",7711.05,Silver,0 +6156,Jerry Gilbert,ghill@gmail.com,2022-12-16,"{""language"": ""IT"", ""currency"": ""MXN""}",8799.99,Silver,0 +6157,William Osborne,michael54@yahoo.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""MXN""}",6764.98,Gold,0 +6158,Bradley Baker,hhampton@yahoo.com,2023-10-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4581.64,Bronze,1 +6159,Emily Williams,gibsonangela@yahoo.com,2023-10-24,"{""language"": ""DE"", ""currency"": ""USD""}",5359.03,Gold,0 +6160,Keith Landry,andrew03@yahoo.com,2024-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",535.2,Bronze,0 +6161,Terry Becker,browncynthia@hotmail.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""USD""}",1933.43,Bronze,0 +6162,James Chavez,tomsimmons@gmail.com,2020-01-28,"{""language"": ""FR"", ""currency"": ""MXN""}",4147.13,Gold,0 +6163,Jessica Chung,fergusonrebecca@yahoo.com,2024-01-06,"{""language"": ""FR"", ""currency"": ""EUR""}",6179.48,Silver,1 +6164,Karen Christian,fhenry@yahoo.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",3876.51,Gold,0 +6165,Cindy Robinson,jharrison@yahoo.com,2022-07-14,"{""language"": ""FR"", ""currency"": ""CAD""}",7074.25,Gold,0 +6166,Jenna Espinoza,michellejohnson@pacheco-moore.com,2021-07-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6486.09,Silver,0 +6167,Shawn Blevins,johnsondonald@hotmail.com,2022-02-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5285.92,Gold,0 +6168,Alexis Stanley,nerickson@gmail.com,2023-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6043.68,Bronze,1 +6169,Jason Horne,bfitzgerald@gmail.com,2021-05-06,"{""language"": ""IT"", ""currency"": ""EUR""}",8273.66,Bronze,1 +6170,Michael Miller,kaylamcgee@hernandez-williams.com,2021-12-17,"{""language"": ""IT"", ""currency"": ""CAD""}",7279.11,Bronze,0 +6171,Sharon Thomas,amy25@gmail.com,2023-05-03,"{""language"": ""ES"", ""currency"": ""CAD""}",8541.13,Gold,0 +6172,Kathleen Davis,martinezmatthew@willis.info,2024-03-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6824.35,Gold,1 +6173,Ebony Wilson,manningemily@ellison-harrison.info,2020-08-06,"{""language"": ""DE"", ""currency"": ""EUR""}",2099.47,Bronze,1 +6174,Emily Owen,brookssonya@gonzalez-johnson.com,2022-09-23,"{""language"": ""DE"", ""currency"": ""CAD""}",1775.93,Gold,1 +6175,Tricia King,nhart@beck-johnson.com,2023-06-02,"{""language"": ""DE"", ""currency"": ""CAD""}",5614.27,Gold,1 +6176,Larry Bryant,turnerjoel@hotmail.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",804.94,Gold,0 +6177,Alexander Wolfe,megan89@alvarez.com,2024-07-23,"{""language"": ""DE"", ""currency"": ""CAD""}",2264.31,Gold,1 +6178,Darren Carr,fvargas@gmail.com,2021-07-12,"{""language"": ""FR"", ""currency"": ""MXN""}",504.61,Silver,0 +6179,Sharon Rogers,ismall@hotmail.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""CAD""}",7230.51,Silver,1 +6180,Luis Carter,christopherpeterson@yahoo.com,2024-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",6021.05,Bronze,0 +6181,Michelle Anderson,jblair@gmail.com,2021-07-26,"{""language"": ""IT"", ""currency"": ""EUR""}",1816.73,Gold,0 +6182,John Miller,riverabrandy@mccarthy-hall.com,2024-05-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3222.11,Bronze,0 +6183,Sheri Martin,obrienrichard@mcintosh.com,2020-11-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3331.35,Gold,0 +6184,Mark Collins,sandracastaneda@hotmail.com,2022-08-09,"{""language"": ""DE"", ""currency"": ""MXN""}",9973.81,Silver,1 +6185,Margaret King,erica64@valenzuela.info,2023-02-26,"{""language"": ""IT"", ""currency"": ""USD""}",8905.78,Bronze,1 +6186,Chad Gonzalez,ucampbell@moore.com,2021-12-12,"{""language"": ""ES"", ""currency"": ""USD""}",8465.28,Silver,1 +6187,Calvin Gomez,butlerfrank@gmail.com,2020-02-13,"{""language"": ""FR"", ""currency"": ""USD""}",6782.91,Bronze,0 +6188,Scott Riley,kweiss@gmail.com,2023-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",8604.42,Bronze,1 +6189,Pamela Wilson,amysmith@johnson.biz,2021-11-15,"{""language"": ""ES"", ""currency"": ""EUR""}",6670.14,Silver,1 +6190,Darrell Martinez,jasondrake@taylor.com,2021-09-29,"{""language"": ""ES"", ""currency"": ""GBP""}",361.94,Silver,0 +6191,Tyler Harris,zlozano@long.com,2023-12-19,"{""language"": ""FR"", ""currency"": ""MXN""}",9495.78,Bronze,1 +6192,Briana Moore,kinglisa@gmail.com,2021-01-16,"{""language"": ""IT"", ""currency"": ""EUR""}",8409.71,Silver,1 +6193,William Lee,yroman@hotmail.com,2021-02-24,"{""language"": ""FR"", ""currency"": ""EUR""}",552.27,Gold,1 +6194,Kathleen Lee,susanhughes@williams-clark.net,2024-05-05,"{""language"": ""DE"", ""currency"": ""MXN""}",8549.31,Gold,1 +6195,Amber Ramirez,eric42@hotmail.com,2020-10-23,"{""language"": ""DE"", ""currency"": ""USD""}",4488.16,Bronze,1 +6196,Angela Watson,andrew14@ball-lowery.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4441.33,Gold,0 +6197,Robert Salazar,coxvanessa@gmail.com,2024-05-29,"{""language"": ""IT"", ""currency"": ""EUR""}",3377.8,Bronze,0 +6198,Gloria Smith,anthony64@flores.com,2022-03-21,"{""language"": ""FR"", ""currency"": ""USD""}",7312.93,Gold,0 +6199,James Mcdaniel,jessica54@valenzuela.com,2020-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",7018.06,Silver,1 +6200,Wendy Gibson,morrisjessica@merritt-shepherd.com,2024-04-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6478.83,Gold,1 +6201,Michelle Molina,rosstony@yahoo.com,2020-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",4982.77,Gold,0 +6202,Anita Richardson,nathan98@jackson.com,2022-04-12,"{""language"": ""FR"", ""currency"": ""USD""}",612.67,Silver,1 +6203,Melinda Lopez,summersbrianna@kane-kennedy.com,2022-11-04,"{""language"": ""DE"", ""currency"": ""USD""}",6747.24,Bronze,0 +6204,Dr. Christopher Haynes,lisa33@jones.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""GBP""}",1776.06,Bronze,1 +6205,Fred Elliott,kwatkins@maxwell.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""MXN""}",2543.33,Gold,1 +6206,Jimmy Rodriguez,robert95@robinson-colon.biz,2021-08-19,"{""language"": ""ES"", ""currency"": ""EUR""}",6782.68,Gold,0 +6207,Vincent Lynch,sarah46@yahoo.com,2023-05-18,"{""language"": ""FR"", ""currency"": ""GBP""}",7765.2,Silver,1 +6208,Todd Harvey,hudsontodd@holmes-lopez.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",6271.16,Bronze,1 +6209,Laura Young,francisco43@turner-moore.info,2023-12-25,"{""language"": ""DE"", ""currency"": ""MXN""}",7805.31,Gold,1 +6210,Julia Manning,benjamin29@olson.com,2021-12-28,"{""language"": ""FR"", ""currency"": ""EUR""}",2210.16,Bronze,0 +6211,Haley Long,bradley15@nelson.com,2020-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",796.62,Gold,0 +6212,Francisco Harris,blairmelissa@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",9310.71,Gold,0 +6213,Tammy Smith,gregory69@gmail.com,2020-12-18,"{""language"": ""FR"", ""currency"": ""GBP""}",6712.73,Silver,1 +6214,Ashley Green,jessica61@bowers.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""CAD""}",7777.54,Bronze,0 +6215,Charles Morales,abentley@andrews-davis.biz,2022-10-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8153.07,Gold,1 +6216,Wanda Evans,jamesabbott@gmail.com,2022-05-27,"{""language"": ""ES"", ""currency"": ""MXN""}",6234.37,Bronze,0 +6217,Jeffery Taylor,andersonalicia@scott-phillips.com,2022-01-07,"{""language"": ""ES"", ""currency"": ""EUR""}",4380.77,Silver,1 +6218,Christopher Woodard,fletcherchristina@johnson.org,2020-12-23,"{""language"": ""IT"", ""currency"": ""EUR""}",8693.17,Gold,0 +6219,Brandy Bernard,vhopkins@yahoo.com,2020-02-15,"{""language"": ""IT"", ""currency"": ""GBP""}",3961.04,Silver,0 +6220,Gregory Thomas,robinsondonna@mckenzie.biz,2021-09-06,"{""language"": ""ES"", ""currency"": ""GBP""}",6161.33,Gold,0 +6221,Katherine Taylor DDS,ruizmichelle@yahoo.com,2022-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5258.74,Bronze,0 +6222,Julia Dougherty,christinastevens@gmail.com,2020-05-20,"{""language"": ""EN"", ""currency"": ""GBP""}",4625.46,Bronze,0 +6223,Natalie Johnson,kellygould@gmail.com,2022-09-01,"{""language"": ""IT"", ""currency"": ""EUR""}",1713.68,Gold,0 +6224,Fernando Miller,sarah95@dixon-williamson.net,2022-07-15,"{""language"": ""DE"", ""currency"": ""GBP""}",1554.74,Bronze,1 +6225,David Hendricks,andersondonna@gmail.com,2022-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",3053.14,Bronze,1 +6226,Andrew Banks,lcochran@erickson-lee.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""CAD""}",482.04,Bronze,0 +6227,Kelly Steele,randyodonnell@scott.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""CAD""}",8881.85,Bronze,1 +6228,Tiffany Jones,vsmith@king.org,2021-05-24,"{""language"": ""EN"", ""currency"": ""EUR""}",2539.9,Bronze,1 +6229,Karen Kramer,vasquezmichael@sosa.com,2020-03-20,"{""language"": ""ES"", ""currency"": ""CAD""}",6660.43,Gold,1 +6230,Eric Jacobs,nwalker@lane.info,2022-04-21,"{""language"": ""IT"", ""currency"": ""GBP""}",9786.85,Bronze,1 +6231,Christopher Jones,simonlarry@gmail.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",1392.82,Gold,1 +6232,Seth Jones DDS,wwright@hotmail.com,2020-02-21,"{""language"": ""DE"", ""currency"": ""MXN""}",5458.66,Silver,0 +6233,Pamela Rojas,ywilcox@carpenter.com,2021-02-21,"{""language"": ""EN"", ""currency"": ""GBP""}",8428.1,Gold,1 +6234,Dean Hart,ibarker@hotmail.com,2021-11-03,"{""language"": ""EN"", ""currency"": ""EUR""}",3821.7,Gold,0 +6235,Alyssa Garza,qvaughn@hotmail.com,2024-11-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5193.33,Gold,0 +6236,Jennifer Winters,cardenaskimberly@mccoy.com,2022-02-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4183.92,Silver,0 +6237,Theresa Sanchez,gnunez@gmail.com,2021-09-30,"{""language"": ""EN"", ""currency"": ""GBP""}",3659.9,Gold,1 +6238,Rodney Williams,sherrisloan@williams.com,2020-09-10,"{""language"": ""DE"", ""currency"": ""USD""}",8394.6,Gold,1 +6239,Jonathan Valdez,tammy46@holmes-miller.com,2020-11-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3297.77,Silver,0 +6240,Carla Avila,xrojas@gmail.com,2022-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9304.8,Gold,0 +6241,Shannon Smith,tracy90@clark.com,2023-01-29,"{""language"": ""DE"", ""currency"": ""EUR""}",9542.58,Bronze,1 +6242,Julian Smith,tylerortiz@hotmail.com,2023-04-07,"{""language"": ""EN"", ""currency"": ""CAD""}",4821.77,Bronze,0 +6243,Valerie Wade,spotter@vargas-johnson.biz,2023-06-01,"{""language"": ""EN"", ""currency"": ""USD""}",8821.08,Bronze,0 +6244,Jonathan Buchanan,jmckinney@green.com,2021-06-02,"{""language"": ""ES"", ""currency"": ""CAD""}",1314.89,Gold,1 +6245,Rachel Mitchell,robert16@yahoo.com,2021-11-07,"{""language"": ""ES"", ""currency"": ""GBP""}",1184.57,Bronze,1 +6246,Miss Evelyn Elliott,sbrock@yahoo.com,2022-09-29,"{""language"": ""ES"", ""currency"": ""CAD""}",5012.73,Gold,0 +6247,Katrina Allen,ncarlson@castillo.com,2024-05-29,"{""language"": ""EN"", ""currency"": ""EUR""}",1597.37,Bronze,0 +6248,Jack Hudson,jaredlopez@strickland.com,2024-06-08,"{""language"": ""EN"", ""currency"": ""CAD""}",99.89,Gold,1 +6249,Stuart Phillips,nancy74@yahoo.com,2020-01-21,"{""language"": ""DE"", ""currency"": ""CAD""}",3199.47,Bronze,0 +6250,Todd Hicks,moorenancy@yahoo.com,2022-02-14,"{""language"": ""FR"", ""currency"": ""EUR""}",52.83,Silver,1 +6251,Tammy Graham,pdavis@cook.com,2022-03-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2392.0,Bronze,0 +6252,Thomas Peterson,lucasalexander@smith.com,2023-12-05,"{""language"": ""IT"", ""currency"": ""EUR""}",668.73,Bronze,0 +6253,Sandra Russell,dayjeremy@gmail.com,2021-05-15,"{""language"": ""IT"", ""currency"": ""GBP""}",2280.08,Silver,0 +6254,Joseph Hull,gregorydonna@yahoo.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""GBP""}",6164.01,Silver,1 +6255,David Smith,michaeltaylor@bowers.net,2022-09-09,"{""language"": ""DE"", ""currency"": ""GBP""}",223.39,Bronze,1 +6256,Karen Myers,harveynicole@gmail.com,2024-04-09,"{""language"": ""EN"", ""currency"": ""EUR""}",7970.16,Gold,0 +6257,Nicole Jennings,allisonthornton@sanchez-joseph.info,2021-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8133.12,Bronze,1 +6258,Melanie Ochoa,caguirre@gmail.com,2024-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",4301.98,Gold,0 +6259,Jennifer Williams,michaelespinoza@hotmail.com,2023-10-11,"{""language"": ""IT"", ""currency"": ""EUR""}",1205.35,Gold,0 +6260,Cindy Lambert,ujones@gordon.biz,2024-06-21,"{""language"": ""IT"", ""currency"": ""CAD""}",636.75,Bronze,0 +6261,Matthew Roberts,krivera@gmail.com,2023-04-11,"{""language"": ""EN"", ""currency"": ""CAD""}",491.68,Silver,1 +6262,Jamie Henson,turnerkimberly@simon.com,2024-08-30,"{""language"": ""IT"", ""currency"": ""CAD""}",9515.73,Silver,1 +6263,Jason Logan,ohardy@roberts.net,2024-11-05,"{""language"": ""ES"", ""currency"": ""GBP""}",4949.73,Gold,0 +6264,Amber Vaughan,sarah12@hotmail.com,2020-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",7401.6,Gold,0 +6265,Kimberly Walker,yrios@hotmail.com,2022-10-29,"{""language"": ""ES"", ""currency"": ""EUR""}",5231.52,Gold,0 +6266,Tracy Forbes,michellehall@green.com,2022-08-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6838.93,Gold,0 +6267,George Davis,brian28@gmail.com,2024-07-27,"{""language"": ""FR"", ""currency"": ""EUR""}",5486.05,Bronze,0 +6268,Heather Thomas,rayjessica@holland.com,2021-12-16,"{""language"": ""ES"", ""currency"": ""CAD""}",3261.29,Bronze,1 +6269,Michele Obrien,stephanie55@hill-smith.net,2024-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",5654.78,Bronze,0 +6270,Robert Reed,kellylaura@hotmail.com,2022-12-17,"{""language"": ""ES"", ""currency"": ""EUR""}",966.48,Silver,0 +6271,Alexis Erickson,barnesbenjamin@yahoo.com,2021-02-26,"{""language"": ""DE"", ""currency"": ""EUR""}",6417.1,Bronze,1 +6272,James Kennedy,samantha77@yahoo.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""USD""}",5376.57,Silver,0 +6273,David Trujillo,mary07@gmail.com,2024-01-28,"{""language"": ""IT"", ""currency"": ""MXN""}",1567.03,Bronze,1 +6274,Jennifer Lam,brandyharrison@yahoo.com,2021-07-19,"{""language"": ""DE"", ""currency"": ""CAD""}",8738.6,Silver,1 +6275,George Camacho,nelsonelaine@rodriguez.net,2022-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3776.75,Gold,1 +6276,Renee Anthony,wheelerdavid@martinez.com,2021-06-03,"{""language"": ""IT"", ""currency"": ""GBP""}",325.93,Bronze,1 +6277,Robert Alvarado,kristintaylor@washington.com,2020-09-12,"{""language"": ""EN"", ""currency"": ""MXN""}",3614.77,Silver,0 +6278,Betty Jones,sarahyates@lamb-hendricks.com,2021-01-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3445.85,Bronze,0 +6279,Thomas Scott,jennifer31@gmail.com,2022-12-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8064.53,Bronze,0 +6280,Catherine Holt,herrerakimberly@yahoo.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""CAD""}",6322.12,Silver,0 +6281,James Jones,bradley67@bailey.biz,2024-06-07,"{""language"": ""EN"", ""currency"": ""USD""}",117.14,Silver,1 +6282,Michael Cook,trujillogabriel@hicks-ho.net,2021-04-03,"{""language"": ""ES"", ""currency"": ""MXN""}",7622.19,Silver,1 +6283,Sarah Ford,harrisonkendra@simon.net,2022-01-06,"{""language"": ""ES"", ""currency"": ""GBP""}",3157.79,Silver,1 +6284,Robert Stewart,xsmith@warren.info,2022-11-13,"{""language"": ""ES"", ""currency"": ""GBP""}",7320.25,Silver,0 +6285,Ashley Lee,qgarcia@hotmail.com,2021-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",3777.54,Bronze,1 +6286,Mandy Barker,sandra64@yahoo.com,2024-08-01,"{""language"": ""IT"", ""currency"": ""CAD""}",3468.76,Bronze,0 +6287,Nichole Greer,cmoore@hotmail.com,2023-07-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5699.25,Bronze,1 +6288,Elizabeth Ruiz,kim37@delgado-hill.com,2020-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2857.4,Gold,1 +6289,Nicholas Bradley,youngvalerie@hotmail.com,2021-02-12,"{""language"": ""DE"", ""currency"": ""EUR""}",1841.69,Gold,1 +6290,Gary Li,lutzmarie@gmail.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""EUR""}",9927.3,Bronze,1 +6291,Sharon Fisher,xgarcia@shepherd-daniels.com,2024-01-24,"{""language"": ""EN"", ""currency"": ""EUR""}",3065.79,Silver,0 +6292,Richard Shea,simselizabeth@yahoo.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""CAD""}",4833.66,Silver,1 +6293,Lori Kane,kaitlinsalazar@hotmail.com,2023-12-06,"{""language"": ""FR"", ""currency"": ""EUR""}",8851.83,Bronze,0 +6294,Paul Newman,richard91@yahoo.com,2020-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",1402.28,Silver,1 +6295,Vanessa Patel,brownjennifer@gmail.com,2022-01-18,"{""language"": ""FR"", ""currency"": ""CAD""}",3750.46,Gold,1 +6296,Toni Allen,edwardbennett@marsh-hartman.com,2024-03-06,"{""language"": ""FR"", ""currency"": ""GBP""}",9110.32,Gold,1 +6297,Peter Snyder,beth20@johnson-fernandez.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",7968.01,Silver,1 +6298,Christopher Woods,heidi69@garcia.biz,2023-12-27,"{""language"": ""DE"", ""currency"": ""CAD""}",9050.21,Bronze,0 +6299,Jeanette Stanton,larsondaniel@hotmail.com,2020-08-07,"{""language"": ""EN"", ""currency"": ""USD""}",8224.49,Silver,1 +6300,Stanley May,matthew54@yahoo.com,2024-03-21,"{""language"": ""DE"", ""currency"": ""GBP""}",9515.28,Silver,1 +6301,Brian Bryant,jenniferhopkins@hotmail.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8934.29,Gold,1 +6302,Christopher Bradley,bobby75@hotmail.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""CAD""}",2869.91,Silver,1 +6303,Emily Landry,uthomas@yahoo.com,2021-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3902.36,Bronze,1 +6304,Amanda Reed,brianmay@gmail.com,2020-11-07,"{""language"": ""EN"", ""currency"": ""MXN""}",3410.83,Gold,1 +6305,Jesse Henry DVM,mcclurelisa@marshall.com,2020-11-19,"{""language"": ""DE"", ""currency"": ""EUR""}",6440.92,Bronze,1 +6306,Robert Andrade,craigmiller@stewart-rice.org,2021-03-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3192.74,Gold,0 +6307,Jerry Lyons,rodriguezsteven@gmail.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""GBP""}",3848.39,Silver,1 +6308,Jessica Smith,anne44@ewing-knox.info,2022-06-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9407.67,Silver,1 +6309,Jessica Greer,deannaharris@hotmail.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",5705.73,Gold,0 +6310,Raymond Rowland,fdavis@hotmail.com,2024-01-25,"{""language"": ""EN"", ""currency"": ""CAD""}",1432.47,Gold,0 +6311,Bernard Wright,ymitchell@gmail.com,2020-03-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3767.73,Bronze,0 +6312,Albert Christensen,cheryl46@bradshaw.biz,2020-04-26,"{""language"": ""DE"", ""currency"": ""MXN""}",7970.16,Bronze,1 +6313,Lisa Rios DVM,andrea64@peterson-taylor.com,2024-05-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1992.65,Bronze,0 +6314,Kenneth Gonzales,patrick90@johnson.com,2021-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",2971.34,Bronze,0 +6315,Derek Williams,terrencemcdaniel@hotmail.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""CAD""}",8418.6,Bronze,0 +6316,Danny Mitchell Jr.,vparker@kent-gonzalez.net,2022-01-30,"{""language"": ""FR"", ""currency"": ""USD""}",3805.57,Bronze,1 +6317,William Dyer,dhaynes@moore-fox.com,2024-07-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4157.71,Gold,0 +6318,Alexander Newman,patrickmiller@gmail.com,2023-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2471.36,Gold,1 +6319,Eric Davis,robinsonpeter@garcia.com,2023-12-29,"{""language"": ""DE"", ""currency"": ""EUR""}",5155.68,Bronze,0 +6320,Kevin Wall,tboyd@yahoo.com,2021-06-01,"{""language"": ""DE"", ""currency"": ""CAD""}",2597.67,Silver,0 +6321,Christopher Crawford,patriciaschneider@wood-stevenson.net,2024-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",2353.22,Bronze,1 +6322,Courtney Perkins,monique00@hotmail.com,2023-01-07,"{""language"": ""EN"", ""currency"": ""USD""}",8102.41,Silver,0 +6323,Allison Cruz,sandersmelinda@hernandez.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""USD""}",9833.97,Silver,1 +6324,Joseph Andrews Jr.,gproctor@gmail.com,2021-12-09,"{""language"": ""EN"", ""currency"": ""CAD""}",2503.34,Bronze,0 +6325,Briana Schultz,cannonmatthew@clark.info,2020-03-18,"{""language"": ""DE"", ""currency"": ""USD""}",7224.92,Gold,0 +6326,Matthew Gonzales,jessicajackson@doyle-williams.com,2023-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1740.5,Gold,0 +6327,Jason Ball,kevin42@sims-roth.org,2021-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",5690.05,Bronze,0 +6328,Lisa Miller,langapril@moreno.com,2020-03-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5157.98,Gold,0 +6329,Michael Smith,sarah76@yahoo.com,2020-04-26,"{""language"": ""FR"", ""currency"": ""MXN""}",7288.31,Bronze,0 +6330,Lisa Shaffer,ramirezdenise@hinton.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""USD""}",350.6,Gold,1 +6331,Christine Kelly,fisherkenneth@davis.info,2021-12-11,"{""language"": ""FR"", ""currency"": ""MXN""}",3161.07,Gold,0 +6332,Melissa Livingston,trussell@young-walker.com,2024-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8767.65,Gold,0 +6333,Olivia Martin,samuelavery@gmail.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",5537.26,Silver,1 +6334,Kim Oneill,erodriguez@hotmail.com,2022-04-19,"{""language"": ""ES"", ""currency"": ""CAD""}",1733.6,Gold,0 +6335,Tammy Thompson,sarah79@hotmail.com,2021-08-22,"{""language"": ""DE"", ""currency"": ""EUR""}",2076.59,Bronze,1 +6336,Kathleen Hill,jsanders@yahoo.com,2021-11-07,"{""language"": ""ES"", ""currency"": ""MXN""}",8253.59,Gold,1 +6337,Travis Anderson,phill@gmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""GBP""}",3085.53,Silver,0 +6338,Anthony Cunningham,qwood@hotmail.com,2020-05-20,"{""language"": ""IT"", ""currency"": ""EUR""}",3772.24,Bronze,0 +6339,April Garza,joan56@yahoo.com,2020-09-05,"{""language"": ""ES"", ""currency"": ""USD""}",1109.09,Bronze,0 +6340,Timothy Johns,carrie65@warren.com,2022-03-21,"{""language"": ""EN"", ""currency"": ""MXN""}",1456.26,Silver,1 +6341,Gary Palmer,devonporter@yahoo.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",2367.63,Silver,0 +6342,Jason Jones,wcarter@yahoo.com,2020-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",1073.15,Silver,0 +6343,Matthew Burns,carrilloheather@cisneros.net,2024-01-15,"{""language"": ""EN"", ""currency"": ""GBP""}",3621.29,Gold,1 +6344,Jason Bailey,qbrown@gmail.com,2020-10-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6879.83,Gold,1 +6345,Michelle Chan,jaredlucas@lee-jones.com,2022-01-18,"{""language"": ""DE"", ""currency"": ""USD""}",6760.01,Bronze,1 +6346,Jerry Swanson,gleonard@gmail.com,2022-11-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8620.33,Silver,0 +6347,Rachel Klein,piercewilliam@hotmail.com,2021-10-29,"{""language"": ""FR"", ""currency"": ""CAD""}",7325.85,Gold,1 +6348,Jennifer Brooks,victor47@hotmail.com,2022-10-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6645.05,Bronze,1 +6349,Jacob Taylor,morristami@hotmail.com,2024-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",5097.74,Bronze,0 +6350,Brian Harper,robertayala@perry.com,2024-10-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6665.2,Gold,1 +6351,Ryan Anderson,catherinebaker@hotmail.com,2020-08-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9451.88,Bronze,1 +6352,Cassandra Berg,ryan83@gonzales.biz,2023-05-15,"{""language"": ""FR"", ""currency"": ""EUR""}",4422.24,Silver,0 +6353,Angela Luna,barneskathleen@reed.info,2023-06-22,"{""language"": ""ES"", ""currency"": ""MXN""}",7797.11,Silver,1 +6354,Samantha Allen,pennybanks@hotmail.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""CAD""}",9364.22,Silver,0 +6355,Jean Gallagher,vpotter@gmail.com,2021-07-21,"{""language"": ""EN"", ""currency"": ""GBP""}",1658.61,Silver,1 +6356,Tyrone Ferrell,pconley@yahoo.com,2023-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",7218.08,Bronze,0 +6357,Jacob Andrews,williamsondanielle@pena.net,2022-09-03,"{""language"": ""FR"", ""currency"": ""GBP""}",8982.81,Bronze,0 +6358,Steven King,jenniferdavis@yahoo.com,2024-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",9587.77,Bronze,0 +6359,Mrs. Laura Beck,zimmermanchristina@hotmail.com,2020-08-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4863.65,Bronze,1 +6360,Connie Daniels,lisagallegos@yahoo.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8688.21,Gold,1 +6361,Michelle White,tjones@gmail.com,2022-04-19,"{""language"": ""IT"", ""currency"": ""USD""}",4113.77,Gold,1 +6362,Michael George,edwardward@hotmail.com,2023-07-04,"{""language"": ""IT"", ""currency"": ""EUR""}",6042.66,Bronze,0 +6363,Douglas Orozco,joseph30@roberts-obrien.com,2023-06-14,"{""language"": ""EN"", ""currency"": ""EUR""}",8644.88,Bronze,0 +6364,Patrick Crawford,kristy47@cooper.org,2023-10-12,"{""language"": ""ES"", ""currency"": ""MXN""}",268.45,Bronze,1 +6365,Benjamin Maldonado,wrobinson@yahoo.com,2021-03-16,"{""language"": ""EN"", ""currency"": ""USD""}",8157.32,Silver,0 +6366,Rebecca Barnes,andersenjoshua@monroe.com,2022-01-01,"{""language"": ""ES"", ""currency"": ""GBP""}",1337.31,Bronze,0 +6367,Christopher Ross,mitchellhartman@gmail.com,2021-06-16,"{""language"": ""ES"", ""currency"": ""EUR""}",5112.43,Bronze,0 +6368,Daniel Valencia,sherry41@yahoo.com,2024-06-18,"{""language"": ""DE"", ""currency"": ""MXN""}",5035.37,Bronze,1 +6369,Richard Richardson,karengonzales@harper-ferguson.net,2022-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",7440.55,Bronze,0 +6370,Lisa Lucas,veronicaadams@trujillo.com,2024-09-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2281.28,Silver,1 +6371,Dr. Michael Webb,jose54@king-fisher.info,2020-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",3750.65,Gold,1 +6372,Chase Williams,hstewart@hotmail.com,2020-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",2852.09,Gold,0 +6373,George Wallace,jesussmith@gmail.com,2020-01-21,"{""language"": ""EN"", ""currency"": ""GBP""}",7937.87,Bronze,1 +6374,Kyle Walton,derekatkins@ramirez-harris.com,2022-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",4809.77,Gold,0 +6375,Arthur Washington,alyssa24@hotmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""EUR""}",885.02,Bronze,0 +6376,Pamela Vaughan,gerald69@summers.com,2021-03-30,"{""language"": ""FR"", ""currency"": ""USD""}",1843.82,Silver,0 +6377,Matthew Berry,cindy87@gmail.com,2021-04-23,"{""language"": ""ES"", ""currency"": ""USD""}",7115.89,Gold,1 +6378,George Hayes,apena@gmail.com,2024-01-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9202.43,Bronze,1 +6379,Brandon Hamilton,audreymorton@hotmail.com,2020-05-23,"{""language"": ""DE"", ""currency"": ""CAD""}",8686.74,Silver,1 +6380,Keith Simpson,antonioodonnell@romero.com,2024-10-23,"{""language"": ""FR"", ""currency"": ""MXN""}",8710.93,Bronze,1 +6381,David Foster,mooresharon@hotmail.com,2021-07-25,"{""language"": ""IT"", ""currency"": ""CAD""}",8771.74,Bronze,1 +6382,Stacey Ware,mary44@hotmail.com,2024-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",256.3,Gold,0 +6383,Charles Hernandez,danieledwards@hotmail.com,2020-05-20,"{""language"": ""IT"", ""currency"": ""EUR""}",5955.02,Silver,0 +6384,Ann Flowers,albertmartinez@gmail.com,2023-08-19,"{""language"": ""DE"", ""currency"": ""GBP""}",5659.99,Bronze,0 +6385,Mary Fischer,vthomas@brandt.com,2020-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",1295.91,Silver,0 +6386,Cheryl Williams,wdouglas@yahoo.com,2023-02-10,"{""language"": ""ES"", ""currency"": ""USD""}",6535.05,Silver,0 +6387,Sara Rodriguez,xwilliams@gmail.com,2021-01-06,"{""language"": ""IT"", ""currency"": ""CAD""}",3129.69,Silver,1 +6388,James Ho,narmstrong@lee.com,2023-12-06,"{""language"": ""EN"", ""currency"": ""MXN""}",6515.54,Bronze,1 +6389,Jerry Morrison,teresawade@logan.com,2023-03-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7110.71,Bronze,0 +6390,Mackenzie Hall DDS,joshua76@gmail.com,2021-01-10,"{""language"": ""DE"", ""currency"": ""USD""}",2938.61,Gold,1 +6391,Stephanie Galvan,bjones@hotmail.com,2021-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",257.69,Bronze,0 +6392,Kayla Hall,ehicks@medina.net,2022-05-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9065.92,Gold,1 +6393,Jeremy Flores,peter86@horton.org,2021-01-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2003.23,Bronze,1 +6394,Joseph Oconnor,coledavid@cole-long.com,2020-04-11,"{""language"": ""IT"", ""currency"": ""USD""}",4917.12,Bronze,0 +6395,Kathy Lloyd,benjamin44@gmail.com,2021-08-24,"{""language"": ""DE"", ""currency"": ""USD""}",3917.69,Bronze,1 +6396,Earl Carroll,bentonmichael@gmail.com,2024-05-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6721.4,Gold,0 +6397,Gloria Cruz,bennettanthony@decker.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",9176.21,Gold,1 +6398,Michael Ramirez,jwilliams@hotmail.com,2020-10-19,"{""language"": ""FR"", ""currency"": ""EUR""}",9338.55,Bronze,0 +6399,William Mullins,deborah05@martinez-carlson.com,2024-07-10,"{""language"": ""DE"", ""currency"": ""USD""}",2762.62,Bronze,1 +6400,Tammy Hines,michael90@solomon.com,2020-09-21,"{""language"": ""IT"", ""currency"": ""CAD""}",8057.9,Bronze,1 +6401,Janet Smith,jensenmichelle@yahoo.com,2021-12-06,"{""language"": ""FR"", ""currency"": ""CAD""}",591.49,Silver,1 +6402,Mark Jimenez,stephenboyd@gmail.com,2020-05-22,"{""language"": ""IT"", ""currency"": ""CAD""}",223.06,Silver,1 +6403,Lorraine Melendez,millsmichael@rodriguez.info,2022-12-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2630.53,Bronze,1 +6404,Lisa Hill DDS,janetprice@gmail.com,2022-01-18,"{""language"": ""EN"", ""currency"": ""USD""}",1916.87,Gold,1 +6405,Angel Gardner,umitchell@holland-morales.com,2020-09-15,"{""language"": ""ES"", ""currency"": ""CAD""}",1986.81,Gold,1 +6406,Kenneth Jennings,troypatel@hotmail.com,2020-09-03,"{""language"": ""DE"", ""currency"": ""EUR""}",1593.55,Bronze,0 +6407,Meredith Wilson,davisanthony@hotmail.com,2020-06-03,"{""language"": ""ES"", ""currency"": ""MXN""}",2934.09,Bronze,0 +6408,Malik Jones,logan41@scott.com,2020-02-13,"{""language"": ""ES"", ""currency"": ""GBP""}",3946.26,Gold,1 +6409,John Dickerson,catherineclements@taylor.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1823.28,Bronze,1 +6410,Mr. Brian Smith Jr.,qwilson@medina-santos.com,2023-11-01,"{""language"": ""DE"", ""currency"": ""USD""}",3230.04,Bronze,0 +6411,Sarah Lopez,corey95@gmail.com,2023-03-27,"{""language"": ""EN"", ""currency"": ""EUR""}",796.39,Gold,0 +6412,Mary Thomas,bryantchristian@cortez-kemp.com,2020-10-29,"{""language"": ""IT"", ""currency"": ""MXN""}",58.62,Bronze,1 +6413,Mrs. Angela Price,haynescharles@hotmail.com,2024-01-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9773.66,Silver,0 +6414,Barbara Torres,jramos@turner-terry.com,2024-07-30,"{""language"": ""ES"", ""currency"": ""USD""}",3665.4,Bronze,0 +6415,Benjamin Morales,rgarrett@gmail.com,2024-11-24,"{""language"": ""DE"", ""currency"": ""EUR""}",1175.29,Gold,1 +6416,Pamela Vaughn,courtney47@yahoo.com,2024-12-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3277.59,Silver,0 +6417,Terry Ford,jesuscross@boyd.org,2023-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",1745.42,Silver,0 +6418,Dr. Justin Dawson II,lheath@brennan.com,2020-11-14,"{""language"": ""ES"", ""currency"": ""MXN""}",4924.44,Bronze,0 +6419,Mary Gonzalez,hendersonvanessa@hotmail.com,2021-07-04,"{""language"": ""DE"", ""currency"": ""USD""}",9578.94,Bronze,0 +6420,Margaret Brown,kathrynsanchez@hotmail.com,2021-09-12,"{""language"": ""EN"", ""currency"": ""GBP""}",7274.01,Bronze,1 +6421,Alexander Hicks,shawnsmith@anderson.biz,2024-01-24,"{""language"": ""EN"", ""currency"": ""CAD""}",5647.82,Bronze,0 +6422,Christopher Watson,danielhartman@gmail.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""EUR""}",9361.04,Silver,0 +6423,Christina Cox,hernandezmakayla@diaz.com,2022-07-30,"{""language"": ""FR"", ""currency"": ""CAD""}",7175.54,Bronze,1 +6424,Michael Pham,jeffrey25@gmail.com,2020-12-26,"{""language"": ""ES"", ""currency"": ""GBP""}",5155.14,Gold,0 +6425,Meghan Mckinney,gmartinez@hotmail.com,2023-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",6239.59,Gold,0 +6426,Willie Moore,susan49@hotmail.com,2024-04-21,"{""language"": ""IT"", ""currency"": ""CAD""}",1227.4,Silver,1 +6427,Michelle Gentry,samuelmartin@yahoo.com,2024-03-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2574.96,Silver,0 +6428,David Barker,dlambert@torres-brooks.com,2020-06-04,"{""language"": ""EN"", ""currency"": ""MXN""}",3039.68,Silver,0 +6429,Kevin Ramsey,medinacarrie@hotmail.com,2024-08-03,"{""language"": ""ES"", ""currency"": ""GBP""}",528.43,Bronze,1 +6430,Dr. Mariah Smith MD,roycharles@gmail.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",2497.97,Gold,0 +6431,John Hartman,jody83@hotmail.com,2022-05-31,"{""language"": ""ES"", ""currency"": ""CAD""}",5906.37,Gold,0 +6432,Richard Davis,kimberly97@lewis.net,2022-12-01,"{""language"": ""DE"", ""currency"": ""USD""}",6779.38,Bronze,0 +6433,Mark Tucker,sullivandarlene@odonnell.com,2022-08-11,"{""language"": ""EN"", ""currency"": ""CAD""}",5236.68,Gold,0 +6434,Richard Clark,jenniferberg@rivera-koch.com,2024-02-27,"{""language"": ""DE"", ""currency"": ""CAD""}",3682.83,Gold,1 +6435,Lindsey Chambers,rwyatt@gmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",6525.85,Silver,0 +6436,Laura Vega,gonzalezkerri@singleton.org,2023-02-19,"{""language"": ""EN"", ""currency"": ""GBP""}",1245.48,Bronze,1 +6437,Crystal Nichols,xhenry@yahoo.com,2024-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",3597.08,Silver,0 +6438,Michael Archer,joannelson@gmail.com,2023-05-20,"{""language"": ""ES"", ""currency"": ""MXN""}",8563.8,Bronze,0 +6439,Lori Myers,zhall@yahoo.com,2023-07-19,"{""language"": ""FR"", ""currency"": ""EUR""}",9102.68,Bronze,0 +6440,John Wu,wendy89@gmail.com,2023-04-03,"{""language"": ""EN"", ""currency"": ""GBP""}",7389.71,Silver,1 +6441,Christie Kelley,kellyconner@hotmail.com,2021-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",5653.6,Bronze,0 +6442,Lisa Knox,christopherfranklin@bell-morgan.com,2022-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6880.4,Bronze,0 +6443,Monica Butler,karensanders@yahoo.com,2020-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8492.21,Silver,1 +6444,Alyssa Sharp,edward05@warren.net,2020-03-28,"{""language"": ""ES"", ""currency"": ""GBP""}",5017.48,Bronze,1 +6445,Daniel Taylor,qfigueroa@johnson.com,2022-08-09,"{""language"": ""IT"", ""currency"": ""EUR""}",9760.78,Silver,1 +6446,Carlos Fields,joan20@little.com,2023-10-04,"{""language"": ""EN"", ""currency"": ""GBP""}",4541.42,Silver,1 +6447,Cheyenne Gardner,brittany56@yahoo.com,2023-04-24,"{""language"": ""ES"", ""currency"": ""USD""}",4107.12,Gold,0 +6448,Robert Hill,wesleyray@estes-villegas.net,2024-03-09,"{""language"": ""ES"", ""currency"": ""EUR""}",226.83,Silver,0 +6449,Mary Williamson,peterle@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""CAD""}",266.56,Bronze,1 +6450,Cheryl Hudson,lgreen@hayden.com,2021-02-15,"{""language"": ""DE"", ""currency"": ""EUR""}",6713.8,Bronze,1 +6451,Ashley Hernandez,sara75@gmail.com,2024-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3316.01,Gold,1 +6452,Andrea Lopez,mdavis@gmail.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",4305.63,Silver,1 +6453,Luis Wood,kevin47@james.info,2021-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",3938.24,Bronze,0 +6454,Cassidy Mayer,danielhall@martinez.com,2020-03-30,"{""language"": ""FR"", ""currency"": ""CAD""}",5175.83,Gold,0 +6455,Elizabeth Johnson,robertadams@king-kemp.net,2023-02-02,"{""language"": ""DE"", ""currency"": ""GBP""}",7139.5,Silver,1 +6456,Mr. Jose Jordan,ybrowning@davidson-marshall.biz,2024-05-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3234.34,Silver,1 +6457,Gina Gomez,bmaddox@elliott-flores.biz,2021-03-06,"{""language"": ""FR"", ""currency"": ""MXN""}",1520.24,Bronze,0 +6458,Ryan Murray,christopher00@sanders.info,2023-11-23,"{""language"": ""EN"", ""currency"": ""MXN""}",2028.5,Bronze,1 +6459,Frank Williams,marissagrimes@hotmail.com,2022-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",5423.92,Silver,1 +6460,Rebecca Martin,ihenry@howard-randall.com,2024-07-15,"{""language"": ""EN"", ""currency"": ""MXN""}",6666.93,Silver,0 +6461,David Parks,scott38@holmes.org,2021-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",6662.15,Silver,1 +6462,Christina Greer,kanegeorge@rivera.net,2020-08-31,"{""language"": ""FR"", ""currency"": ""EUR""}",4695.64,Bronze,1 +6463,Cheyenne Wood,michellemoore@wilkerson.com,2024-09-17,"{""language"": ""DE"", ""currency"": ""GBP""}",292.54,Silver,1 +6464,Brianna Schroeder,halljason@holmes.com,2021-08-18,"{""language"": ""IT"", ""currency"": ""USD""}",714.0,Silver,0 +6465,Mallory Adams,shawn67@white.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",8382.85,Gold,0 +6466,Michael Thornton,sarahbates@yahoo.com,2020-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",5876.01,Gold,1 +6467,Dominique Peterson,michael69@gmail.com,2024-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",4650.61,Silver,0 +6468,David Mann,hsimmons@ford-santos.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""GBP""}",6023.41,Silver,0 +6469,Denise Mills MD,austin71@perry.net,2024-10-27,"{""language"": ""EN"", ""currency"": ""CAD""}",7438.81,Bronze,0 +6470,Elizabeth Lane,mariapatton@taylor.com,2024-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",5971.73,Silver,1 +6471,Phyllis Johnson,kramercarolyn@maddox.com,2024-04-16,"{""language"": ""IT"", ""currency"": ""EUR""}",3261.63,Gold,1 +6472,James Marsh,kimberlycowan@odonnell.com,2024-05-21,"{""language"": ""IT"", ""currency"": ""CAD""}",6954.48,Silver,1 +6473,Lawrence Campbell,reyesphillip@hotmail.com,2022-02-09,"{""language"": ""ES"", ""currency"": ""EUR""}",705.42,Gold,1 +6474,Dan Garcia,lisa53@hotmail.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""CAD""}",4308.92,Gold,0 +6475,Angela Klein,scott45@yahoo.com,2020-12-15,"{""language"": ""ES"", ""currency"": ""EUR""}",3177.85,Silver,1 +6476,Eric Wright,xreyes@gmail.com,2021-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",487.81,Bronze,0 +6477,Jasmine Monroe,vpruitt@eaton-sullivan.info,2022-11-25,"{""language"": ""FR"", ""currency"": ""MXN""}",2119.95,Gold,1 +6478,Timothy Wiley,james73@gmail.com,2023-11-03,"{""language"": ""EN"", ""currency"": ""GBP""}",1156.93,Gold,1 +6479,Elizabeth Smith,melissajohnson@lee-williams.com,2022-10-21,"{""language"": ""IT"", ""currency"": ""GBP""}",3003.64,Silver,0 +6480,Nathan Garcia,vangwilliam@yahoo.com,2021-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",9008.37,Gold,0 +6481,Allison Rodriguez,dylan74@green-grant.net,2021-05-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8686.03,Bronze,0 +6482,Christopher Castillo,gsmith@gmail.com,2020-10-22,"{""language"": ""DE"", ""currency"": ""USD""}",3743.67,Bronze,1 +6483,Susan Bird,wendy52@yahoo.com,2023-01-12,"{""language"": ""DE"", ""currency"": ""GBP""}",332.23,Bronze,1 +6484,Brian Wilson,hwilson@yahoo.com,2021-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4400.59,Gold,1 +6485,Alexandria Hall,bradleyturner@hotmail.com,2024-05-04,"{""language"": ""DE"", ""currency"": ""MXN""}",758.58,Bronze,0 +6486,Elizabeth Tucker,jennifer80@duffy-williams.com,2022-09-25,"{""language"": ""DE"", ""currency"": ""MXN""}",6460.0,Bronze,0 +6487,Julie Carroll,shawnyang@alexander.org,2022-07-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9383.12,Bronze,0 +6488,Christian Mcdowell DDS,sandersbrittney@hotmail.com,2020-10-26,"{""language"": ""IT"", ""currency"": ""EUR""}",428.79,Silver,1 +6489,Shawn Peterson,bgarcia@hotmail.com,2023-10-29,"{""language"": ""DE"", ""currency"": ""CAD""}",3215.78,Silver,0 +6490,Amanda Ochoa,kristi63@thompson.com,2020-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4424.74,Gold,0 +6491,Mark Hall,oparker@hotmail.com,2021-03-02,"{""language"": ""EN"", ""currency"": ""GBP""}",7986.1,Gold,1 +6492,Jeffrey Gomez,freemandeborah@hotmail.com,2024-12-02,"{""language"": ""IT"", ""currency"": ""MXN""}",8985.46,Gold,1 +6493,Robert Taylor,cynthiascott@mathews.com,2020-12-12,"{""language"": ""IT"", ""currency"": ""EUR""}",1476.8,Silver,0 +6494,Ms. Jacqueline Sexton,dawngibbs@joyce.com,2023-06-19,"{""language"": ""FR"", ""currency"": ""USD""}",4214.44,Gold,0 +6495,James Jones,smclaughlin@gmail.com,2019-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",716.84,Bronze,0 +6496,Sarah Stewart,jmcknight@gmail.com,2022-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",2558.59,Silver,1 +6497,Sarah Salazar,walter28@yahoo.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4224.54,Gold,1 +6498,Robert Kaiser,sarah73@powell.com,2020-02-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2735.97,Silver,0 +6499,Natalie Ellis,edwardgarner@yahoo.com,2023-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1438.18,Silver,0 +6500,Elizabeth Gutierrez,lisaodonnell@watson.org,2020-02-10,"{""language"": ""DE"", ""currency"": ""USD""}",708.85,Silver,0 +6501,Danielle Morgan,stephenwhite@mcdaniel.com,2023-12-03,"{""language"": ""IT"", ""currency"": ""USD""}",59.97,Silver,1 +6502,Erin Cox,greenjeffrey@yahoo.com,2022-12-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3960.09,Gold,0 +6503,David Preston,katherine47@benitez.com,2020-09-22,"{""language"": ""IT"", ""currency"": ""GBP""}",9067.15,Bronze,1 +6504,Virginia Johnson,michele70@adams.net,2024-01-06,"{""language"": ""ES"", ""currency"": ""EUR""}",9263.82,Bronze,0 +6505,Ashley Richards,mary27@yahoo.com,2020-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",672.16,Gold,1 +6506,Ian Farmer,youngricardo@riddle.net,2023-07-08,"{""language"": ""EN"", ""currency"": ""CAD""}",8182.94,Bronze,0 +6507,Samuel Byrd,suzanne95@hotmail.com,2024-11-21,"{""language"": ""EN"", ""currency"": ""EUR""}",6886.38,Gold,1 +6508,Joseph Lewis,westtimothy@hotmail.com,2022-02-25,"{""language"": ""DE"", ""currency"": ""CAD""}",905.71,Silver,1 +6509,Matthew Stout,fgentry@hotmail.com,2024-01-05,"{""language"": ""IT"", ""currency"": ""GBP""}",5445.71,Bronze,1 +6510,Anthony Herrera,kinglogan@hotmail.com,2022-10-21,"{""language"": ""FR"", ""currency"": ""CAD""}",1781.23,Silver,0 +6511,Robert Ryan,middletonkelly@cole.com,2020-02-12,"{""language"": ""IT"", ""currency"": ""MXN""}",151.31,Gold,1 +6512,Debra Cox,qfischer@hotmail.com,2020-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1409.42,Silver,1 +6513,Larry Harris,morgan50@hotmail.com,2024-02-11,"{""language"": ""ES"", ""currency"": ""USD""}",5643.7,Gold,0 +6514,David Holland,timothyschneider@yahoo.com,2023-06-04,"{""language"": ""ES"", ""currency"": ""MXN""}",5387.92,Gold,1 +6515,Jose Park,phillipsdawn@stevens.org,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",3104.61,Bronze,1 +6516,Bob Stewart,carolynburns@yahoo.com,2024-08-24,"{""language"": ""FR"", ""currency"": ""USD""}",6179.94,Bronze,0 +6517,Samantha Carr,jessica56@gmail.com,2021-02-27,"{""language"": ""IT"", ""currency"": ""MXN""}",732.25,Gold,0 +6518,Colleen Vang,mgeorge@hotmail.com,2023-11-26,"{""language"": ""IT"", ""currency"": ""USD""}",8648.64,Gold,0 +6519,Eric Torres,erikawilliams@boyle-johnson.com,2023-03-14,"{""language"": ""FR"", ""currency"": ""MXN""}",2960.05,Bronze,1 +6520,Kelly Martin,grussell@murray.info,2021-03-22,"{""language"": ""DE"", ""currency"": ""GBP""}",7113.08,Silver,1 +6521,Christopher Cooper,christy05@hansen.org,2022-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",5826.68,Silver,1 +6522,David Moore,dtownsend@yahoo.com,2020-04-03,"{""language"": ""DE"", ""currency"": ""EUR""}",4524.97,Bronze,1 +6523,Matthew Andrews,xmartinez@yahoo.com,2024-04-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5546.16,Gold,1 +6524,David Myers,kyle01@hotmail.com,2023-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",54.14,Silver,1 +6525,Thomas Vasquez,andrewmartin@gmail.com,2024-07-26,"{""language"": ""EN"", ""currency"": ""CAD""}",4567.57,Bronze,1 +6526,Christopher Miller,william13@gmail.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6808.74,Gold,1 +6527,Amanda Crosby,hunter12@briggs.com,2024-07-05,"{""language"": ""FR"", ""currency"": ""CAD""}",1136.11,Gold,0 +6528,Kim Castillo,ashley97@williams.com,2023-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",7679.67,Bronze,0 +6529,Daniel Gaines,david07@taylor.com,2022-12-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5957.28,Silver,0 +6530,Kyle Morris,piercerebecca@yahoo.com,2020-09-01,"{""language"": ""DE"", ""currency"": ""USD""}",3369.38,Silver,0 +6531,Janice Thomas,ymccann@peterson.com,2020-02-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4201.88,Gold,0 +6532,Thomas Scott,rhodesamanda@hotmail.com,2023-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",8788.19,Silver,1 +6533,Brittany Martin,matthew83@roberson.net,2020-05-12,"{""language"": ""FR"", ""currency"": ""MXN""}",7512.56,Gold,1 +6534,Victoria Peters,alewis@smith.net,2020-10-08,"{""language"": ""DE"", ""currency"": ""CAD""}",6065.99,Gold,0 +6535,Christina Brooks,michelleking@hotmail.com,2022-10-05,"{""language"": ""ES"", ""currency"": ""GBP""}",5158.27,Gold,0 +6536,Stephen Wilson,maria95@weber.org,2024-11-20,"{""language"": ""ES"", ""currency"": ""GBP""}",8947.8,Bronze,0 +6537,Jean Moore,christopher16@huber.info,2021-10-11,"{""language"": ""FR"", ""currency"": ""CAD""}",7585.79,Gold,0 +6538,Michael Zimmerman,patricia08@gmail.com,2021-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",8682.75,Gold,1 +6539,Sarah Henderson,carlosmiller@yahoo.com,2020-02-17,"{""language"": ""FR"", ""currency"": ""MXN""}",8911.21,Bronze,0 +6540,Donna Williams,kristen36@hotmail.com,2023-08-25,"{""language"": ""FR"", ""currency"": ""CAD""}",6744.55,Bronze,0 +6541,Gerald Rodriguez,zrobinson@sanchez.info,2022-12-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6851.12,Silver,0 +6542,Randy Hull,antonio61@gmail.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",8123.26,Bronze,0 +6543,Phillip Morrison,dennismartin@burke.com,2024-11-20,"{""language"": ""IT"", ""currency"": ""USD""}",225.63,Bronze,1 +6544,Jason Mays,troyreid@gmail.com,2023-03-14,"{""language"": ""IT"", ""currency"": ""USD""}",4266.2,Bronze,1 +6545,Keith Wu,shauncastro@hotmail.com,2023-03-12,"{""language"": ""ES"", ""currency"": ""USD""}",2293.65,Bronze,0 +6546,Teresa Sanders,uestrada@johnston-hoffman.com,2024-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",2063.1,Silver,1 +6547,Charles Johnson,fmckinney@johnson.com,2022-02-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3606.37,Bronze,1 +6548,Mary Glass,tmason@gmail.com,2024-07-23,"{""language"": ""IT"", ""currency"": ""GBP""}",6730.5,Gold,1 +6549,Stuart Henry,ambersullivan@yahoo.com,2022-10-28,"{""language"": ""EN"", ""currency"": ""GBP""}",8669.74,Gold,1 +6550,Ricky Ortiz,teresajohnson@clark.com,2024-07-03,"{""language"": ""ES"", ""currency"": ""USD""}",7526.84,Gold,1 +6551,Michelle Edwards,oliverbrett@king.com,2022-04-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9136.78,Gold,0 +6552,Richard Todd,mharvey@gmail.com,2024-07-08,"{""language"": ""IT"", ""currency"": ""CAD""}",4652.19,Bronze,0 +6553,Eric Johnson,beth79@kim.info,2024-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",7328.79,Bronze,1 +6554,John Ramirez,samanthalawrence@perez.com,2023-03-29,"{""language"": ""IT"", ""currency"": ""MXN""}",9964.38,Bronze,0 +6555,Tony Buchanan,olsenmichael@norton-friedman.biz,2024-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",5248.55,Silver,0 +6556,Christopher Dorsey,fergusonangela@bass.com,2022-10-24,"{""language"": ""DE"", ""currency"": ""EUR""}",3611.14,Silver,0 +6557,Shawn Wilkerson,amanda28@gmail.com,2023-03-10,"{""language"": ""FR"", ""currency"": ""CAD""}",9347.37,Silver,0 +6558,Stacy Gillespie,adamali@hotmail.com,2024-11-06,"{""language"": ""ES"", ""currency"": ""GBP""}",2031.09,Bronze,1 +6559,Carla Rodriguez,kennethsimmons@gmail.com,2021-07-10,"{""language"": ""ES"", ""currency"": ""USD""}",82.93,Bronze,1 +6560,Angela Torres,uchavez@martin.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8542.76,Gold,0 +6561,Heidi Perez,lblackwell@hotmail.com,2021-05-31,"{""language"": ""IT"", ""currency"": ""EUR""}",9002.72,Silver,1 +6562,Robin Baker,joseph92@gmail.com,2020-09-30,"{""language"": ""IT"", ""currency"": ""EUR""}",6936.64,Bronze,1 +6563,Sylvia Harris,jamesluis@neal.com,2021-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",3591.77,Bronze,1 +6564,Ashley Klein,mikayla38@reed-kennedy.org,2024-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4717.37,Silver,1 +6565,Shannon Howard,adamherring@hayes.com,2020-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1946.72,Bronze,0 +6566,Justin Jimenez,david88@price.com,2020-02-22,"{""language"": ""EN"", ""currency"": ""CAD""}",565.53,Gold,1 +6567,Michael Young,karencontreras@brown-dickerson.org,2024-06-10,"{""language"": ""FR"", ""currency"": ""MXN""}",8359.58,Gold,1 +6568,Jillian Braun,murphymichelle@dunn-sanchez.info,2021-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1096.16,Silver,1 +6569,Paul Collins,rebecca50@hotmail.com,2023-12-26,"{""language"": ""DE"", ""currency"": ""USD""}",60.75,Gold,0 +6570,John Ross,jenniferduran@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""CAD""}",3349.69,Bronze,0 +6571,Lance Hammond,haledaniel@lowery.info,2023-02-17,"{""language"": ""DE"", ""currency"": ""EUR""}",9781.75,Gold,1 +6572,Keith Humphrey,keith57@hall.com,2023-03-06,"{""language"": ""DE"", ""currency"": ""USD""}",3881.78,Gold,1 +6573,Michael Davis,maria58@gmail.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9261.88,Bronze,0 +6574,Brandy Carter,vshannon@callahan.info,2022-08-08,"{""language"": ""IT"", ""currency"": ""CAD""}",5022.75,Silver,1 +6575,Shelby Gibson,charlesclark@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""GBP""}",1976.81,Gold,0 +6576,Michael Mclean,michelle83@rodriguez-krause.info,2020-01-13,"{""language"": ""FR"", ""currency"": ""USD""}",1086.18,Bronze,0 +6577,Kim Coleman,mary58@yahoo.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8989.68,Bronze,1 +6578,Laura Chavez,alexisvaldez@flynn.biz,2023-11-13,"{""language"": ""FR"", ""currency"": ""MXN""}",8503.39,Bronze,0 +6579,Amanda Owens,rebecca23@gmail.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7318.27,Bronze,1 +6580,Richard Stanton,lauren18@washington.com,2022-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",3727.88,Gold,0 +6581,Jill Coleman,gstewart@hotmail.com,2024-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",4538.37,Silver,0 +6582,Richard Sullivan,mstafford@gibson.com,2021-02-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8482.54,Gold,1 +6583,Rebecca Conrad,timothystokes@wheeler-herrera.com,2023-05-22,"{""language"": ""FR"", ""currency"": ""MXN""}",8646.72,Bronze,1 +6584,Makayla Lee,elizabethrush@hotmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",7864.22,Bronze,0 +6585,Mark Leach,alyssa12@simpson.info,2024-11-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4151.88,Silver,0 +6586,Scott Merritt,markwright@hotmail.com,2023-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",552.87,Silver,0 +6587,Bobby Compton,wrightallen@berry.biz,2021-12-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1108.24,Silver,0 +6588,Kimberly Ryan,glennpayne@hotmail.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5298.19,Gold,0 +6589,Misty Grant,cgonzalez@rogers-cruz.biz,2020-10-26,"{""language"": ""ES"", ""currency"": ""CAD""}",8183.64,Silver,1 +6590,Christopher Smith,yoderaaron@banks.info,2023-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",9996.77,Gold,1 +6591,Robert Robinson,heather84@hotmail.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""CAD""}",930.17,Gold,0 +6592,Paula Dunn,johnhardin@anthony.com,2020-09-02,"{""language"": ""DE"", ""currency"": ""GBP""}",5634.74,Gold,0 +6593,Tony Mejia,elizabethgray@yahoo.com,2022-11-17,"{""language"": ""IT"", ""currency"": ""GBP""}",6029.41,Bronze,1 +6594,Tracy Arellano,courtneydaniels@hotmail.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1131.92,Silver,1 +6595,Brett Vincent,rodney29@yahoo.com,2022-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",581.2,Bronze,0 +6596,Michael Williams,jon45@hotmail.com,2021-03-21,"{""language"": ""EN"", ""currency"": ""EUR""}",3205.71,Bronze,1 +6597,Kelly Carter,shannon30@thompson-sandoval.net,2024-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",4998.62,Bronze,0 +6598,Michael Green,james44@hotmail.com,2024-10-08,"{""language"": ""IT"", ""currency"": ""GBP""}",4990.65,Bronze,0 +6599,Tiffany Cuevas,gregoryjohnson@gmail.com,2024-07-29,"{""language"": ""DE"", ""currency"": ""GBP""}",1951.22,Gold,1 +6600,Benjamin Fernandez,bradley32@gmail.com,2021-11-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2459.22,Bronze,0 +6601,Amanda Anderson,michaellopez@gmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""GBP""}",8995.75,Bronze,1 +6602,James Rose,katrinajimenez@summers-walker.net,2023-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",7708.9,Silver,0 +6603,Dr. Alyssa Vega,epeters@hill.com,2024-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",815.63,Gold,0 +6604,Julia Lee,mswanson@hotmail.com,2024-05-21,"{""language"": ""IT"", ""currency"": ""MXN""}",3789.18,Bronze,1 +6605,Susan Green,ujackson@rice-forbes.com,2024-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",982.45,Gold,1 +6606,Patricia Wells,kevinli@gmail.com,2024-08-09,"{""language"": ""FR"", ""currency"": ""EUR""}",3339.3,Gold,1 +6607,Maria Meyers,brendabooker@gmail.com,2023-08-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8099.4,Gold,1 +6608,Lydia Santos,jamesrobinson@hotmail.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""USD""}",1527.0,Gold,0 +6609,Robert Rios,sharonchen@spencer.com,2023-09-19,"{""language"": ""IT"", ""currency"": ""EUR""}",3838.27,Gold,0 +6610,Jeremiah Klein,cochranandrew@griffin-waller.com,2021-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8593.95,Gold,1 +6611,Michele Hamilton,zmarshall@brown.com,2024-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",4210.88,Silver,1 +6612,Andrew Diaz DDS,kevin68@yahoo.com,2022-01-30,"{""language"": ""IT"", ""currency"": ""MXN""}",66.69,Gold,0 +6613,Erin Roberts MD,deannakeller@hood-bray.com,2024-11-29,"{""language"": ""FR"", ""currency"": ""CAD""}",6499.57,Bronze,1 +6614,Jamie Garza,eileen61@johnson.com,2023-06-17,"{""language"": ""FR"", ""currency"": ""USD""}",1006.07,Silver,0 +6615,Kimberly Davis,andrew69@acevedo.com,2024-05-10,"{""language"": ""IT"", ""currency"": ""USD""}",3286.85,Bronze,0 +6616,Stanley Vance,taylorjones@bryant.com,2024-11-29,"{""language"": ""DE"", ""currency"": ""MXN""}",5131.09,Bronze,0 +6617,Rebecca Hernandez,monicamaxwell@church.com,2022-08-21,"{""language"": ""ES"", ""currency"": ""USD""}",3517.91,Bronze,1 +6618,Lori Sanders,melinda40@martin-ball.com,2024-06-27,"{""language"": ""ES"", ""currency"": ""EUR""}",532.64,Bronze,1 +6619,Mindy Carter,wdodson@burnett.net,2022-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",169.18,Silver,0 +6620,Danielle Leon,kevin95@alexander.net,2023-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",8560.97,Silver,0 +6621,Kimberly Taylor,ybrown@jordan-farmer.com,2021-03-07,"{""language"": ""IT"", ""currency"": ""MXN""}",7507.87,Bronze,1 +6622,Anna Perez,vjohnson@hernandez.net,2022-12-08,"{""language"": ""FR"", ""currency"": ""GBP""}",7918.28,Bronze,1 +6623,Roberta Jackson,kinganita@hayes-lee.com,2020-09-14,"{""language"": ""FR"", ""currency"": ""GBP""}",1881.33,Bronze,1 +6624,Zachary Mueller,gcooke@avila-wilson.biz,2024-05-17,"{""language"": ""IT"", ""currency"": ""USD""}",6468.55,Gold,0 +6625,Joseph Smith,arthurmiller@gmail.com,2022-11-27,"{""language"": ""IT"", ""currency"": ""EUR""}",4744.34,Gold,0 +6626,Mary Davis,lisarobinson@rivera.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5546.91,Gold,0 +6627,Tyler Henry,maryrobinson@fisher.org,2023-06-19,"{""language"": ""DE"", ""currency"": ""USD""}",9467.36,Gold,1 +6628,Susan Miller,deborah39@clark.info,2024-06-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7037.95,Gold,0 +6629,Jenna Baird,toddchang@powell-taylor.com,2022-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",3176.28,Silver,0 +6630,Jennifer Moore,langjennifer@gmail.com,2023-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",4597.47,Gold,1 +6631,Jeremy Perez MD,linda88@crawford-burton.com,2020-12-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5825.36,Bronze,1 +6632,Paula Turner,burtonbrandi@donaldson.com,2023-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",2086.24,Gold,0 +6633,Samantha Newton,rachelperez@hotmail.com,2024-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",1410.94,Bronze,0 +6634,Jeremy Santos,michelestevens@hotmail.com,2022-05-01,"{""language"": ""ES"", ""currency"": ""MXN""}",396.62,Gold,1 +6635,Kyle Hall,brownmichael@gould.com,2021-02-01,"{""language"": ""FR"", ""currency"": ""CAD""}",4110.69,Bronze,0 +6636,James Rivas,mary96@hebert-munoz.com,2022-12-11,"{""language"": ""ES"", ""currency"": ""CAD""}",776.51,Gold,1 +6637,Beverly Gonzales,richardcook@estrada.org,2024-10-31,"{""language"": ""FR"", ""currency"": ""CAD""}",6740.74,Silver,1 +6638,Brenda Gonzales MD,hnguyen@dean.biz,2020-12-15,"{""language"": ""ES"", ""currency"": ""CAD""}",3692.22,Silver,0 +6639,Melissa Miller,nathanfrost@gmail.com,2023-09-19,"{""language"": ""DE"", ""currency"": ""EUR""}",428.27,Silver,0 +6640,Brandon Jackson,david99@fernandez.com,2020-10-09,"{""language"": ""FR"", ""currency"": ""CAD""}",8991.79,Silver,1 +6641,Ashley Garcia,pblack@gmail.com,2021-06-12,"{""language"": ""EN"", ""currency"": ""USD""}",3815.07,Silver,1 +6642,Kristin Ortega,wallaceerica@hotmail.com,2023-02-01,"{""language"": ""FR"", ""currency"": ""CAD""}",4320.84,Silver,0 +6643,Paul Martinez,cookkaren@baxter.com,2021-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",3645.33,Bronze,1 +6644,Richard Townsend,michael76@henry-martinez.com,2020-07-28,"{""language"": ""EN"", ""currency"": ""USD""}",4959.36,Bronze,1 +6645,Danny Perkins,heather12@haynes.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""USD""}",949.07,Gold,1 +6646,Emily Fields,eolson@yahoo.com,2023-07-23,"{""language"": ""FR"", ""currency"": ""USD""}",2165.74,Silver,0 +6647,Meagan Murray,cooperrobin@gmail.com,2021-06-18,"{""language"": ""ES"", ""currency"": ""CAD""}",2060.39,Silver,0 +6648,Michael King,marywilliams@taylor-jackson.info,2024-01-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2848.19,Bronze,1 +6649,Stanley Livingston,aguilarolivia@brown.com,2022-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3729.26,Bronze,0 +6650,Nicole Smith,kelleyrodney@kelly.com,2020-10-12,"{""language"": ""FR"", ""currency"": ""GBP""}",7056.7,Gold,0 +6651,Susan Chapman,robert25@rodriguez.net,2019-12-17,"{""language"": ""ES"", ""currency"": ""USD""}",9766.74,Gold,0 +6652,Thomas Moore,iarnold@yahoo.com,2020-09-23,"{""language"": ""DE"", ""currency"": ""EUR""}",7476.12,Gold,0 +6653,Donald Castillo,iramirez@brown.biz,2024-08-01,"{""language"": ""ES"", ""currency"": ""GBP""}",4633.41,Bronze,0 +6654,Brooke Williams,wilsonmichelle@bishop.com,2020-08-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2308.11,Gold,1 +6655,Terri Johnson,allenbarrett@yahoo.com,2020-08-26,"{""language"": ""ES"", ""currency"": ""MXN""}",7744.74,Bronze,0 +6656,Sherry Patton,katrinajones@hotmail.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",5780.01,Gold,0 +6657,Melvin Wood,akelly@gmail.com,2024-09-19,"{""language"": ""DE"", ""currency"": ""CAD""}",8646.58,Silver,1 +6658,Stephanie Brown,markpayne@young.com,2021-12-13,"{""language"": ""FR"", ""currency"": ""USD""}",2977.81,Silver,0 +6659,Barbara Perry,lewisbrandon@hotmail.com,2023-11-30,"{""language"": ""ES"", ""currency"": ""USD""}",4112.21,Bronze,1 +6660,Richard Black,pdickerson@yahoo.com,2022-08-07,"{""language"": ""FR"", ""currency"": ""EUR""}",1428.85,Bronze,1 +6661,Aaron Davis,gilmoredennis@russell-duncan.info,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",1540.15,Bronze,1 +6662,Mr. Timothy Woods,jhudson@gomez-dennis.com,2020-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",4268.47,Silver,1 +6663,Janet Edwards,wrighthannah@hoffman.biz,2022-10-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7675.44,Silver,0 +6664,Mr. Nicholas Lucero,hallcurtis@petersen.com,2024-04-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5180.9,Bronze,1 +6665,William Beck,kelly86@gmail.com,2022-10-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8234.32,Gold,1 +6666,Ashley Hamilton,cwilliams@herman-campbell.com,2021-04-07,"{""language"": ""DE"", ""currency"": ""GBP""}",515.42,Bronze,1 +6667,William Kramer,hickslaurie@hotmail.com,2024-06-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6594.89,Gold,0 +6668,Leah Lawrence,burnskenneth@smith-everett.info,2023-12-08,"{""language"": ""ES"", ""currency"": ""MXN""}",2549.17,Silver,1 +6669,Jocelyn Miller,gking@owens.com,2023-12-24,"{""language"": ""EN"", ""currency"": ""CAD""}",8053.66,Bronze,1 +6670,Andre Marshall,mayheather@frye-king.com,2023-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",9129.09,Bronze,1 +6671,Brianna Williams,peckmelissa@yahoo.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""USD""}",970.59,Bronze,0 +6672,Craig Mann,brenda97@jackson-flowers.info,2020-05-25,"{""language"": ""DE"", ""currency"": ""EUR""}",127.18,Bronze,1 +6673,Cameron Hahn,melissakim@kelley.info,2020-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",1128.45,Silver,1 +6674,Rachel Smith,jonesshelby@gmail.com,2022-01-26,"{""language"": ""IT"", ""currency"": ""USD""}",3903.46,Bronze,0 +6675,Alexis Walton,mirandapetersen@gmail.com,2023-10-01,"{""language"": ""EN"", ""currency"": ""CAD""}",7804.32,Silver,0 +6676,Andrea Pitts,marissa46@rogers.com,2023-07-22,"{""language"": ""IT"", ""currency"": ""MXN""}",9947.3,Silver,1 +6677,Christopher Williams,hayesgeorge@hotmail.com,2024-03-06,"{""language"": ""EN"", ""currency"": ""CAD""}",5309.91,Bronze,1 +6678,Steven Leonard,jasonherrera@barber.com,2024-08-20,"{""language"": ""ES"", ""currency"": ""USD""}",591.73,Gold,1 +6679,Todd Zuniga,amanda18@griffin.org,2020-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",8065.1,Silver,1 +6680,Howard Anderson,teresa82@thompson.info,2024-12-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9725.88,Silver,0 +6681,Lauren Gordon,fordsally@hotmail.com,2024-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8648.09,Bronze,1 +6682,Daniel Reyes,tgarcia@yahoo.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5017.59,Gold,0 +6683,Victor Gray,hcampbell@johnson-shaw.net,2022-03-08,"{""language"": ""ES"", ""currency"": ""USD""}",133.59,Silver,1 +6684,Sarah Sims,clarkmalik@gmail.com,2020-04-13,"{""language"": ""ES"", ""currency"": ""MXN""}",6679.59,Gold,0 +6685,Robert Mullins,trivera@hotmail.com,2020-07-01,"{""language"": ""IT"", ""currency"": ""CAD""}",5629.6,Silver,1 +6686,Robert Deleon,beckjames@vance.biz,2023-10-13,"{""language"": ""FR"", ""currency"": ""USD""}",3082.18,Silver,0 +6687,Randall Harrison,monicaturner@hotmail.com,2024-02-17,"{""language"": ""ES"", ""currency"": ""USD""}",5206.89,Gold,1 +6688,Joshua Sullivan,james20@black.com,2021-03-31,"{""language"": ""IT"", ""currency"": ""USD""}",2261.11,Bronze,0 +6689,Sara Harrison,owallace@yahoo.com,2022-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9285.21,Bronze,1 +6690,Jill Smith,morrismichael@yahoo.com,2020-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",3462.61,Bronze,1 +6691,Nicholas George,martinezjennifer@smith.com,2022-03-13,"{""language"": ""ES"", ""currency"": ""MXN""}",5664.31,Silver,1 +6692,Cindy Vega,shale@hotmail.com,2024-07-22,"{""language"": ""IT"", ""currency"": ""MXN""}",8949.87,Gold,1 +6693,Luis Ellison,bconner@yahoo.com,2021-05-26,"{""language"": ""DE"", ""currency"": ""USD""}",5419.11,Gold,0 +6694,Sylvia Daniels,bvilla@gmail.com,2020-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",5442.87,Gold,1 +6695,Bailey Fields,tinaroberts@yahoo.com,2022-08-09,"{""language"": ""EN"", ""currency"": ""USD""}",4528.82,Gold,1 +6696,Alexa Gonzalez,ronald96@yahoo.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5855.76,Silver,0 +6697,Christopher Patel,sullivanelizabeth@anderson-jensen.com,2020-05-07,"{""language"": ""IT"", ""currency"": ""CAD""}",9141.28,Silver,0 +6698,Robyn Choi,jeremyrodriguez@gmail.com,2021-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",203.69,Gold,0 +6699,Seth Rhodes,ericwong@tucker.com,2023-08-19,"{""language"": ""IT"", ""currency"": ""USD""}",2315.77,Bronze,1 +6700,Eric Johnson,thompsonbetty@johnson-brewer.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""GBP""}",8202.13,Bronze,1 +6701,Jessica Harris,mshields@schroeder-garcia.org,2022-12-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2355.15,Bronze,1 +6702,Anna Reid,christyvazquez@sullivan-adams.org,2023-01-24,"{""language"": ""IT"", ""currency"": ""USD""}",3696.48,Silver,1 +6703,Jose Williams,steven69@russell-pineda.org,2021-08-20,"{""language"": ""ES"", ""currency"": ""CAD""}",5681.79,Gold,1 +6704,Randall Patterson,williamfox@humphrey.net,2023-05-31,"{""language"": ""ES"", ""currency"": ""MXN""}",6971.38,Silver,1 +6705,Tiffany Taylor,amandabrown@gmail.com,2022-09-28,"{""language"": ""EN"", ""currency"": ""EUR""}",9404.43,Gold,0 +6706,Gregory Thompson,hwilliams@hotmail.com,2024-07-24,"{""language"": ""DE"", ""currency"": ""CAD""}",6030.12,Gold,0 +6707,Matthew Smith,progers@gmail.com,2024-08-29,"{""language"": ""DE"", ""currency"": ""MXN""}",7162.82,Gold,0 +6708,Eric Flores,qchase@poole-rivas.com,2022-12-21,"{""language"": ""ES"", ""currency"": ""GBP""}",4516.26,Bronze,1 +6709,Danielle Hoffman,brandi77@castillo.biz,2022-08-19,"{""language"": ""ES"", ""currency"": ""USD""}",6775.76,Gold,1 +6710,Christopher Orozco,stephanie89@yahoo.com,2022-12-09,"{""language"": ""FR"", ""currency"": ""MXN""}",1582.81,Gold,1 +6711,Theresa Wallace,aaron73@yahoo.com,2020-02-01,"{""language"": ""DE"", ""currency"": ""GBP""}",1677.64,Gold,0 +6712,Jeffrey Brown,millstiffany@yahoo.com,2021-04-20,"{""language"": ""FR"", ""currency"": ""MXN""}",2673.27,Bronze,0 +6713,Corey Mack,aestrada@rasmussen.info,2024-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",7127.75,Bronze,0 +6714,Alexandra Riley,twilliams@carney.com,2020-03-16,"{""language"": ""ES"", ""currency"": ""GBP""}",9525.72,Bronze,0 +6715,Raymond Davis,karirichardson@yahoo.com,2021-03-09,"{""language"": ""DE"", ""currency"": ""GBP""}",9025.65,Bronze,1 +6716,Gerald Manning,bbender@hotmail.com,2021-01-04,"{""language"": ""EN"", ""currency"": ""EUR""}",9449.74,Bronze,1 +6717,Judy Hurst,timothymartinez@johnson.com,2021-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",1220.99,Bronze,0 +6718,Michael Day,vthomas@reed.com,2021-01-16,"{""language"": ""ES"", ""currency"": ""EUR""}",3117.36,Silver,1 +6719,Kelly Melton,morrisrachael@hotmail.com,2021-04-13,"{""language"": ""FR"", ""currency"": ""MXN""}",6407.4,Bronze,1 +6720,Carol Thomas,nunezdavid@gmail.com,2020-06-21,"{""language"": ""DE"", ""currency"": ""MXN""}",1070.58,Gold,1 +6721,Chloe Silva,cjordan@monroe-jones.com,2021-04-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9982.53,Gold,0 +6722,Kara Whitaker,oconnordavid@wyatt-hernandez.org,2024-10-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6626.42,Bronze,1 +6723,Tyler Lewis,stephanieenglish@yahoo.com,2022-06-16,"{""language"": ""DE"", ""currency"": ""CAD""}",6162.95,Gold,0 +6724,James Miller,pierceandres@gmail.com,2020-05-28,"{""language"": ""ES"", ""currency"": ""CAD""}",7956.69,Bronze,1 +6725,Sharon Cook,casey06@mccarthy-johnson.net,2024-07-01,"{""language"": ""FR"", ""currency"": ""GBP""}",9095.46,Gold,1 +6726,Jasmine Bush,howardflowers@sosa.com,2021-04-18,"{""language"": ""ES"", ""currency"": ""CAD""}",1712.17,Gold,0 +6727,Rachel Woods,christina56@yahoo.com,2024-07-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8602.62,Bronze,1 +6728,Douglas Newton,gellis@yahoo.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""GBP""}",9706.15,Silver,0 +6729,Mr. Andrew Mack DDS,adamsdustin@hotmail.com,2020-11-27,"{""language"": ""ES"", ""currency"": ""USD""}",9368.99,Silver,1 +6730,Laura Finley,tuckerjames@murray.com,2024-09-23,"{""language"": ""EN"", ""currency"": ""USD""}",3304.47,Bronze,0 +6731,Lauren Boyer,thodges@cooper.info,2023-03-19,"{""language"": ""EN"", ""currency"": ""USD""}",9511.33,Silver,0 +6732,Alan Baker,xbray@mcdonald.com,2021-10-06,"{""language"": ""EN"", ""currency"": ""USD""}",4487.62,Bronze,1 +6733,Joanna Bush,zgraves@nelson.biz,2023-09-14,"{""language"": ""DE"", ""currency"": ""GBP""}",7559.28,Silver,1 +6734,Ronnie Howell,browngabriella@yahoo.com,2024-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5902.03,Gold,1 +6735,Cynthia Knight,debbie80@ortiz.com,2022-05-05,"{""language"": ""FR"", ""currency"": ""EUR""}",1254.16,Bronze,1 +6736,Vincent Rodriguez,rhondaduke@gibson.com,2023-11-03,"{""language"": ""DE"", ""currency"": ""GBP""}",8889.28,Bronze,1 +6737,Shawna Griffin,hollandisaac@ellis-perez.org,2023-09-20,"{""language"": ""FR"", ""currency"": ""EUR""}",9612.91,Gold,1 +6738,Monica Christian,robin44@nguyen.com,2021-03-09,"{""language"": ""IT"", ""currency"": ""CAD""}",4147.87,Bronze,1 +6739,David Thompson,allencarl@hotmail.com,2020-12-08,"{""language"": ""ES"", ""currency"": ""GBP""}",9239.0,Bronze,1 +6740,Stephanie Harrison,williamsjermaine@gmail.com,2024-09-30,"{""language"": ""FR"", ""currency"": ""CAD""}",8850.68,Bronze,0 +6741,Elizabeth Campbell,padkins@king.biz,2021-12-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6598.89,Silver,1 +6742,Carla Moore,monicalong@hotmail.com,2023-03-03,"{""language"": ""FR"", ""currency"": ""MXN""}",7275.51,Silver,0 +6743,Tamara Salazar DVM,uromero@hotmail.com,2022-07-30,"{""language"": ""EN"", ""currency"": ""CAD""}",1586.5,Gold,1 +6744,Christina White,kevin73@yahoo.com,2021-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",4185.33,Silver,0 +6745,Robert Miller,victoriajohnson@montgomery.com,2024-04-04,"{""language"": ""FR"", ""currency"": ""MXN""}",3360.09,Gold,0 +6746,Lacey Watkins,pateleric@green-robertson.com,2024-11-10,"{""language"": ""EN"", ""currency"": ""CAD""}",9192.81,Gold,0 +6747,Daniel Rice,lucasbradley@sanchez.net,2024-03-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4427.75,Bronze,1 +6748,Colleen Wagner,xsloan@garcia.com,2022-06-17,"{""language"": ""FR"", ""currency"": ""USD""}",7205.82,Silver,1 +6749,Misty Pollard,sarahshaffer@evans.com,2024-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",9180.49,Bronze,0 +6750,Dr. Lori Matthews,pshepard@stewart.com,2024-02-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8454.56,Silver,0 +6751,Joseph Weaver,robertjoyce@smith.com,2021-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",6961.05,Bronze,0 +6752,Tracy Fletcher,ywright@smith.net,2022-01-28,"{""language"": ""IT"", ""currency"": ""GBP""}",8191.82,Silver,0 +6753,Kerry Johnson,jonathan55@holland.com,2022-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",391.35,Silver,0 +6754,Jerome Meadows,melinda22@hotmail.com,2023-06-26,"{""language"": ""IT"", ""currency"": ""CAD""}",5763.92,Bronze,0 +6755,Ryan Lawson,alexis71@gmail.com,2022-02-21,"{""language"": ""EN"", ""currency"": ""EUR""}",5994.26,Silver,0 +6756,Christian Anderson,blackwelljustin@ritter-liu.com,2024-02-14,"{""language"": ""DE"", ""currency"": ""GBP""}",3067.65,Gold,0 +6757,Thomas Scott,samantharobbins@yahoo.com,2022-01-16,"{""language"": ""FR"", ""currency"": ""GBP""}",8643.18,Silver,0 +6758,Nicole Fields,vazquezdavid@hotmail.com,2023-12-12,"{""language"": ""IT"", ""currency"": ""MXN""}",3883.63,Bronze,0 +6759,Sandra Dixon,dlambert@mitchell.com,2021-04-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4184.97,Bronze,0 +6760,Kelly Hebert,vasquezdiana@hotmail.com,2020-06-21,"{""language"": ""FR"", ""currency"": ""GBP""}",6094.36,Gold,0 +6761,Molly Taylor,iduncan@gmail.com,2021-11-28,"{""language"": ""IT"", ""currency"": ""EUR""}",696.38,Bronze,0 +6762,Teresa Parrish,lisa81@peters-page.biz,2023-04-13,"{""language"": ""DE"", ""currency"": ""GBP""}",6278.33,Bronze,1 +6763,Danielle Herrera,andrewslauren@gmail.com,2021-09-14,"{""language"": ""ES"", ""currency"": ""USD""}",1947.77,Gold,1 +6764,Michael English,austin16@hotmail.com,2024-05-07,"{""language"": ""EN"", ""currency"": ""MXN""}",7752.72,Gold,0 +6765,Brian Wolfe,ychandler@yahoo.com,2022-05-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6316.98,Gold,0 +6766,Mrs. Tina Perez,clarkmichelle@hotmail.com,2023-08-09,"{""language"": ""DE"", ""currency"": ""CAD""}",1559.86,Silver,1 +6767,John Hart,chaseconner@yahoo.com,2023-10-14,"{""language"": ""DE"", ""currency"": ""USD""}",8033.82,Bronze,1 +6768,Jonathan Fisher,matthewandersen@reyes.com,2023-01-06,"{""language"": ""FR"", ""currency"": ""USD""}",1175.51,Silver,1 +6769,Alexis Miller,levyphilip@gmail.com,2023-09-15,"{""language"": ""FR"", ""currency"": ""MXN""}",1108.11,Gold,0 +6770,Eric Jones,butlerdavid@yahoo.com,2024-09-20,"{""language"": ""FR"", ""currency"": ""GBP""}",9520.02,Gold,1 +6771,Paul Parker,jacksonjames@mueller.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""CAD""}",882.86,Gold,0 +6772,Jennifer Kidd,stevenramos@johnson-johnson.biz,2024-07-07,"{""language"": ""FR"", ""currency"": ""USD""}",1845.68,Gold,0 +6773,Andre Robles,mcgeecrystal@yahoo.com,2021-03-06,"{""language"": ""EN"", ""currency"": ""USD""}",9476.7,Gold,0 +6774,Gregory Bishop,matthew29@hotmail.com,2023-02-28,"{""language"": ""IT"", ""currency"": ""GBP""}",3887.47,Gold,1 +6775,Paul Trevino,qwashington@bell-lopez.org,2021-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8265.32,Silver,1 +6776,Pamela Ramirez,nicole12@gmail.com,2019-12-22,"{""language"": ""IT"", ""currency"": ""GBP""}",7516.74,Gold,0 +6777,Eric Cunningham,tyler47@villegas.com,2022-09-25,"{""language"": ""ES"", ""currency"": ""EUR""}",9264.75,Bronze,0 +6778,Jennifer Moreno,zacharyrivera@gmail.com,2024-02-21,"{""language"": ""EN"", ""currency"": ""USD""}",1588.82,Bronze,0 +6779,Melissa Davis,wwilliams@gmail.com,2022-11-19,"{""language"": ""FR"", ""currency"": ""EUR""}",2950.6,Gold,0 +6780,Brandy Gilmore,bsalazar@hotmail.com,2024-03-21,"{""language"": ""ES"", ""currency"": ""USD""}",9310.47,Bronze,1 +6781,Randy Mayer,emily82@gmail.com,2023-08-17,"{""language"": ""DE"", ""currency"": ""CAD""}",7705.52,Silver,0 +6782,Jeremy Buchanan,jodyherrera@stephens-mcdonald.com,2023-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",1403.75,Bronze,1 +6783,Matthew Hicks,matthewarias@hotmail.com,2024-02-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8338.73,Silver,0 +6784,John Mcdaniel,mackenzie72@gmail.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""MXN""}",8957.07,Bronze,1 +6785,Kelly Stanley,nmedina@gmail.com,2024-01-25,"{""language"": ""EN"", ""currency"": ""GBP""}",6438.85,Gold,1 +6786,Teresa Stanley,manningpaul@horne-james.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""GBP""}",795.99,Gold,1 +6787,Mr. Christopher Meadows,lmartin@yahoo.com,2024-03-15,"{""language"": ""FR"", ""currency"": ""GBP""}",639.86,Silver,0 +6788,David Moore,davidmartinez@gray-johnson.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",9536.41,Silver,1 +6789,Chad Long,conleymelissa@hotmail.com,2023-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",244.4,Bronze,0 +6790,Christopher Hoover,darlene44@gmail.com,2021-02-10,"{""language"": ""ES"", ""currency"": ""GBP""}",488.82,Gold,0 +6791,Stephanie Santiago,bflores@nunez-dixon.com,2022-03-19,"{""language"": ""EN"", ""currency"": ""GBP""}",284.83,Silver,1 +6792,Janice Robinson,udunn@yahoo.com,2021-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",8013.88,Bronze,0 +6793,Shannon Powers,sherririddle@hotmail.com,2024-03-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8316.9,Silver,0 +6794,Juan Fuller,williamsmith@gmail.com,2024-10-24,"{""language"": ""IT"", ""currency"": ""MXN""}",2516.65,Gold,1 +6795,Samantha Baxter,alanshepherd@fernandez.com,2022-05-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3192.46,Silver,0 +6796,Eric Rowland,nancygibson@avery.com,2024-02-18,"{""language"": ""ES"", ""currency"": ""USD""}",740.54,Gold,0 +6797,Ellen Foster,clewis@jones.biz,2020-07-22,"{""language"": ""DE"", ""currency"": ""CAD""}",8078.65,Gold,1 +6798,William Sutton,linda64@mcconnell.biz,2022-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",459.32,Bronze,0 +6799,Brenda Kelly,nduran@griffin.com,2020-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",3966.17,Bronze,1 +6800,James Estrada,deanna23@hotmail.com,2020-03-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9115.32,Gold,1 +6801,Daniel Lewis,andrewgillespie@gmail.com,2024-03-14,"{""language"": ""ES"", ""currency"": ""GBP""}",3598.45,Silver,1 +6802,Miranda Morgan,sandersangela@gmail.com,2020-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",9769.45,Bronze,0 +6803,Alicia King,jeff08@yahoo.com,2022-07-14,"{""language"": ""FR"", ""currency"": ""GBP""}",7608.95,Silver,0 +6804,Billy Andrews,jenniferwarren@gmail.com,2020-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3947.07,Bronze,1 +6805,Edward Chaney,davidcasey@yahoo.com,2021-09-27,"{""language"": ""IT"", ""currency"": ""USD""}",9398.85,Silver,1 +6806,William Meyer,xrodriguez@ferguson.com,2023-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",1842.59,Silver,1 +6807,Dana Smith,brucenichols@gmail.com,2022-05-03,"{""language"": ""EN"", ""currency"": ""USD""}",8246.0,Bronze,0 +6808,Kevin Palmer MD,ulopez@gmail.com,2020-08-28,"{""language"": ""ES"", ""currency"": ""USD""}",9714.26,Silver,1 +6809,Derek Robertson,laura35@gmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",681.3,Silver,1 +6810,Mrs. Julie Fleming,umitchell@gmail.com,2021-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4901.88,Gold,0 +6811,Cody Baker,zkidd@barnes.org,2021-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",6052.36,Silver,1 +6812,Dawn Romero,richard97@hotmail.com,2023-02-20,"{""language"": ""DE"", ""currency"": ""MXN""}",6616.16,Bronze,0 +6813,Kelly Reed,kirkcarl@cox-knapp.com,2021-12-06,"{""language"": ""ES"", ""currency"": ""USD""}",6598.5,Gold,0 +6814,Christopher Lawrence,acevedohannah@gmail.com,2023-09-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9956.35,Bronze,0 +6815,Julie Hernandez,bushjohn@taylor-green.com,2024-06-09,"{""language"": ""IT"", ""currency"": ""USD""}",329.05,Bronze,0 +6816,Pamela Rangel,victoriasmith@king.com,2021-01-30,"{""language"": ""IT"", ""currency"": ""USD""}",4889.0,Bronze,0 +6817,Colin Mack,jordanmichael@hamilton.net,2022-05-09,"{""language"": ""ES"", ""currency"": ""USD""}",595.82,Gold,1 +6818,Stacy Gonzalez,phillipreed@hotmail.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",8331.83,Silver,1 +6819,Troy Morales,elizabethholmes@gmail.com,2020-07-23,"{""language"": ""ES"", ""currency"": ""EUR""}",1329.86,Gold,0 +6820,Tim Brown,herreraian@hotmail.com,2021-10-21,"{""language"": ""EN"", ""currency"": ""MXN""}",3210.6,Bronze,0 +6821,Kristina Jones,wortiz@sparks.com,2024-04-15,"{""language"": ""EN"", ""currency"": ""GBP""}",2507.59,Silver,0 +6822,Phillip Gutierrez,lmartinez@mitchell.com,2021-07-03,"{""language"": ""DE"", ""currency"": ""CAD""}",2037.32,Bronze,1 +6823,Jaclyn Gomez,reginastevens@yahoo.com,2023-09-04,"{""language"": ""ES"", ""currency"": ""MXN""}",4119.33,Bronze,0 +6824,William Singh,tammy54@gmail.com,2022-10-04,"{""language"": ""ES"", ""currency"": ""USD""}",3975.16,Bronze,0 +6825,Tammy Smith,donald73@yahoo.com,2022-04-03,"{""language"": ""DE"", ""currency"": ""CAD""}",1718.5,Bronze,0 +6826,Deanna Herrera,thomasross@yahoo.com,2022-05-06,"{""language"": ""EN"", ""currency"": ""EUR""}",7351.36,Silver,0 +6827,Jennifer Webb,sholt@munoz-miller.org,2024-01-31,"{""language"": ""FR"", ""currency"": ""MXN""}",517.38,Gold,1 +6828,Scott Doyle,zallen@nelson.com,2022-10-09,"{""language"": ""DE"", ""currency"": ""GBP""}",1873.22,Gold,1 +6829,Caleb Jones,meganmonroe@weaver-matthews.com,2021-03-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1313.73,Bronze,0 +6830,Kenneth Moore,tcooper@yahoo.com,2022-06-04,"{""language"": ""IT"", ""currency"": ""USD""}",3341.28,Gold,0 +6831,Ian Cox,nsmith@sanders-martinez.com,2021-05-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1417.72,Bronze,1 +6832,Mark Beck,danny30@hotmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""CAD""}",142.74,Gold,1 +6833,Joanna Smith,alexandersnyder@hotmail.com,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",906.45,Silver,1 +6834,Bryan Fletcher,howardmario@huff.com,2024-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7913.72,Silver,0 +6835,Ms. Gabrielle Tran,joshua84@reeves.com,2022-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",3438.68,Silver,1 +6836,Glenn Kelly,scott12@hotmail.com,2022-02-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5993.13,Gold,0 +6837,Jacqueline Parker,danielle83@gmail.com,2020-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",1840.07,Gold,0 +6838,Richard Miller,evasquez@yahoo.com,2023-03-28,"{""language"": ""FR"", ""currency"": ""USD""}",4907.59,Silver,0 +6839,Jacob Savage,billy81@hotmail.com,2020-06-20,"{""language"": ""ES"", ""currency"": ""EUR""}",4760.21,Gold,0 +6840,Dana Navarro,williamparker@yahoo.com,2023-08-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5988.16,Bronze,0 +6841,Jacqueline Martin,fishershawn@santos.com,2023-07-30,"{""language"": ""DE"", ""currency"": ""EUR""}",7462.45,Gold,0 +6842,Mark Martinez,lisabarker@rivera-allen.com,2022-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",2812.68,Silver,1 +6843,Kyle Potts,thomasstewart@bell-howell.com,2023-09-16,"{""language"": ""IT"", ""currency"": ""EUR""}",6643.18,Silver,0 +6844,Robin Arroyo,dhawkins@west.org,2022-06-30,"{""language"": ""ES"", ""currency"": ""USD""}",9040.1,Silver,0 +6845,Becky Maxwell,tammymorales@sullivan.net,2024-01-29,"{""language"": ""IT"", ""currency"": ""CAD""}",4174.73,Gold,0 +6846,Tim Kim,zjones@hendricks.biz,2020-01-09,"{""language"": ""EN"", ""currency"": ""MXN""}",8576.08,Silver,1 +6847,Jacqueline Avila,onorton@gmail.com,2022-10-13,"{""language"": ""FR"", ""currency"": ""EUR""}",8907.91,Bronze,1 +6848,Jeffrey Deleon,andrewsalazar@bowers.biz,2023-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",9346.42,Gold,1 +6849,Robert Grant,wrightdennis@gmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7349.77,Bronze,1 +6850,Nancy Hurst,ndalton@briggs.com,2020-06-11,"{""language"": ""DE"", ""currency"": ""USD""}",1384.62,Gold,0 +6851,Michael Oneill,mary80@gmail.com,2020-06-04,"{""language"": ""ES"", ""currency"": ""EUR""}",1366.13,Gold,1 +6852,Austin Daniels,hware@white-parker.com,2023-03-23,"{""language"": ""DE"", ""currency"": ""EUR""}",3013.6,Bronze,1 +6853,Jessica Santiago,lauriemoreno@yahoo.com,2020-06-16,"{""language"": ""IT"", ""currency"": ""MXN""}",5041.78,Bronze,1 +6854,Kim Hall,zbyrd@marshall-higgins.com,2021-03-22,"{""language"": ""DE"", ""currency"": ""GBP""}",9152.94,Gold,0 +6855,Christy Howard,chavezmaria@curtis-berry.biz,2024-03-28,"{""language"": ""DE"", ""currency"": ""USD""}",3678.45,Bronze,0 +6856,Justin Williams,tricia64@gmail.com,2024-08-13,"{""language"": ""EN"", ""currency"": ""CAD""}",9090.93,Silver,1 +6857,Karen Herrera,curtisjohnson@gmail.com,2020-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",3469.32,Silver,0 +6858,Taylor Walton,johndunn@howard.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",311.47,Gold,1 +6859,Mary Wallace,kayla95@gmail.com,2021-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",1238.12,Silver,1 +6860,Stephen Ramirez,jturner@davis.com,2020-05-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4877.14,Gold,1 +6861,Steven Daniels,alejandroboyd@smith.net,2023-08-13,"{""language"": ""FR"", ""currency"": ""EUR""}",5382.34,Bronze,1 +6862,Melinda Riley,kevin09@aguirre.org,2022-09-20,"{""language"": ""ES"", ""currency"": ""MXN""}",4001.57,Gold,1 +6863,Brian Ruiz,daniel91@gmail.com,2024-11-21,"{""language"": ""IT"", ""currency"": ""GBP""}",9369.36,Gold,0 +6864,Brenda Peck,connie72@reeves.info,2020-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",2062.53,Gold,1 +6865,Hannah Lane,eschneider@hotmail.com,2021-03-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8313.15,Bronze,0 +6866,Patricia Montgomery,jeanneperkins@bray.com,2020-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",7963.72,Bronze,1 +6867,Kelly Pineda,ulyons@mcbride.com,2023-01-21,"{""language"": ""EN"", ""currency"": ""CAD""}",7274.13,Gold,1 +6868,Todd Knight,melissa48@moreno.biz,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",164.77,Gold,1 +6869,Kyle Logan,danielhunter@harrington-scott.info,2022-08-19,"{""language"": ""IT"", ""currency"": ""USD""}",7130.95,Silver,0 +6870,Rachael Hunter,jacobcampbell@yahoo.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""GBP""}",4321.02,Bronze,0 +6871,Melissa Wu,thomastraci@gmail.com,2024-06-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4486.47,Gold,0 +6872,Yvonne Irwin,elijahaustin@gmail.com,2024-03-06,"{""language"": ""EN"", ""currency"": ""GBP""}",8157.04,Bronze,0 +6873,Charles Gonzalez,alvaradosara@hotmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""CAD""}",9502.89,Silver,0 +6874,James Fuller DDS,michaelcox@gmail.com,2023-03-28,"{""language"": ""IT"", ""currency"": ""USD""}",1364.63,Gold,1 +6875,Amy Davis,lreyes@yahoo.com,2020-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",2783.81,Silver,1 +6876,Mario Villarreal,wkelly@hotmail.com,2024-07-14,"{""language"": ""FR"", ""currency"": ""USD""}",5850.75,Bronze,0 +6877,Alexis Ramirez,croy@hotmail.com,2021-05-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8628.64,Bronze,1 +6878,Daniel Benson PhD,sherry28@berry.net,2024-12-07,"{""language"": ""FR"", ""currency"": ""USD""}",2521.3,Silver,0 +6879,Elizabeth Brewer,geraldedwards@rivera-bennett.biz,2020-02-24,"{""language"": ""DE"", ""currency"": ""GBP""}",5303.15,Gold,1 +6880,Melissa Payne DDS,markrichard@yahoo.com,2023-11-14,"{""language"": ""DE"", ""currency"": ""EUR""}",5226.9,Silver,0 +6881,Richard Hart,wilsonashley@yahoo.com,2022-07-17,"{""language"": ""DE"", ""currency"": ""GBP""}",1814.08,Silver,1 +6882,Carolyn Smith DVM,larryperkins@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7430.02,Bronze,1 +6883,Alyssa Anderson,thorn@gmail.com,2024-01-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6048.19,Silver,0 +6884,Jessica Lee,leebrandy@bennett-shepherd.com,2021-02-20,"{""language"": ""IT"", ""currency"": ""MXN""}",9618.37,Silver,0 +6885,Marc Cruz,christinacardenas@gomez-stevens.com,2023-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",1943.05,Gold,0 +6886,Rebecca Gilbert,georgeallen@macdonald.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",7357.87,Gold,1 +6887,Jesse Spencer,omiller@castro-young.com,2020-05-27,"{""language"": ""DE"", ""currency"": ""CAD""}",7996.03,Silver,1 +6888,Sarah Goodwin,katherine17@gmail.com,2024-05-08,"{""language"": ""FR"", ""currency"": ""USD""}",771.24,Bronze,0 +6889,Cindy Smith,rosalesbrenda@price.net,2020-02-22,"{""language"": ""ES"", ""currency"": ""GBP""}",884.33,Silver,0 +6890,Shelley Deleon,lesliejensen@morris.biz,2023-03-10,"{""language"": ""DE"", ""currency"": ""USD""}",2008.79,Bronze,0 +6891,Mary Escobar,briana14@yahoo.com,2021-09-16,"{""language"": ""DE"", ""currency"": ""USD""}",557.01,Silver,0 +6892,Julie Medina,chasesmith@lester-sanford.biz,2020-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9082.73,Gold,0 +6893,Emily Miller,amber43@rowland-peters.org,2020-06-25,"{""language"": ""FR"", ""currency"": ""MXN""}",6342.38,Silver,0 +6894,Anthony Hicks,jameshenson@yahoo.com,2023-10-24,"{""language"": ""ES"", ""currency"": ""MXN""}",8464.96,Gold,0 +6895,Ian Brown MD,williamfigueroa@gmail.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""USD""}",7381.59,Gold,1 +6896,Randy Martinez,whitegary@franklin.com,2023-10-12,"{""language"": ""EN"", ""currency"": ""GBP""}",5319.66,Gold,1 +6897,Shannon Raymond,david94@griffin.info,2020-07-23,"{""language"": ""IT"", ""currency"": ""USD""}",5624.07,Silver,0 +6898,Keith Austin,lwalker@yahoo.com,2022-03-28,"{""language"": ""DE"", ""currency"": ""MXN""}",9897.96,Gold,1 +6899,Todd Elliott,pwatkins@gmail.com,2024-02-10,"{""language"": ""EN"", ""currency"": ""CAD""}",4336.34,Bronze,1 +6900,Elizabeth Williams,gardneranthony@hotmail.com,2023-06-30,"{""language"": ""IT"", ""currency"": ""CAD""}",2448.76,Gold,1 +6901,Jonathan Atkins,hwilcox@walker.org,2022-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",4216.17,Bronze,1 +6902,Michelle Gonzalez MD,veronicajackson@gmail.com,2023-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",2737.4,Silver,0 +6903,Carolyn Bailey,mendozamargaret@hotmail.com,2023-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",2191.78,Silver,1 +6904,Natasha Gonzalez,jonathan73@hotmail.com,2022-12-27,"{""language"": ""ES"", ""currency"": ""MXN""}",4495.71,Bronze,1 +6905,Christina Rogers,pandrews@hampton.net,2024-04-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3816.31,Bronze,1 +6906,Sara Chavez,rwhite@gmail.com,2020-07-20,"{""language"": ""IT"", ""currency"": ""EUR""}",9614.92,Silver,0 +6907,Savannah Cochran,lloydandrew@hotmail.com,2021-12-23,"{""language"": ""IT"", ""currency"": ""MXN""}",7819.53,Gold,1 +6908,Evan Todd,mooreryan@nguyen-mann.net,2023-12-15,"{""language"": ""IT"", ""currency"": ""CAD""}",458.77,Bronze,0 +6909,Andre Rhodes Jr.,raymond51@morris.com,2022-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",7573.94,Gold,0 +6910,Crystal Tanner,leejohn@case-anderson.com,2024-03-08,"{""language"": ""IT"", ""currency"": ""GBP""}",7533.92,Bronze,0 +6911,Deborah Phelps,timothy99@garcia.com,2024-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8307.07,Silver,1 +6912,Sean Johnson,shawashley@hotmail.com,2023-11-28,"{""language"": ""FR"", ""currency"": ""MXN""}",813.06,Gold,1 +6913,Molly Jimenez,larry09@gmail.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""USD""}",6257.54,Silver,1 +6914,Latoya Neal,nhill@robinson-chen.org,2022-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",4935.55,Gold,1 +6915,Aaron Lewis,wwilson@harris.org,2022-10-15,"{""language"": ""EN"", ""currency"": ""EUR""}",1631.96,Silver,0 +6916,Sarah Shields,dkline@fitzpatrick.net,2024-03-26,"{""language"": ""EN"", ""currency"": ""CAD""}",1261.06,Silver,0 +6917,Sierra Garcia,tammy08@gmail.com,2022-11-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8151.17,Silver,1 +6918,Jorge Williams,smithnatalie@yahoo.com,2023-08-10,"{""language"": ""IT"", ""currency"": ""USD""}",7760.7,Silver,0 +6919,David Kennedy,matthewcruz@mcmahon.com,2022-08-25,"{""language"": ""EN"", ""currency"": ""CAD""}",7620.91,Gold,0 +6920,Nicholas Cooper,adrienne73@yahoo.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""CAD""}",8585.81,Bronze,1 +6921,Jennifer Cook,velasquezsarah@yahoo.com,2023-05-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8145.69,Bronze,0 +6922,David Young,uriley@yahoo.com,2023-08-13,"{""language"": ""DE"", ""currency"": ""GBP""}",1634.8,Silver,1 +6923,Andre Thomas,carloswilliams@hotmail.com,2024-10-14,"{""language"": ""DE"", ""currency"": ""MXN""}",3971.71,Bronze,0 +6924,Gabriel Carter,brianbennett@yahoo.com,2023-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",5069.18,Silver,1 +6925,Gavin Conner,mary82@hotmail.com,2022-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",9206.39,Gold,1 +6926,Aaron West,tanya04@logan-robinson.com,2023-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1222.62,Gold,1 +6927,Mark Young,carlosbaker@schmitt.com,2021-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",1363.82,Silver,1 +6928,Tiffany Bush,kennethhoover@mcclure-robles.com,2023-06-22,"{""language"": ""DE"", ""currency"": ""CAD""}",6429.57,Gold,1 +6929,Michele Phillips,ezamora@thompson-jones.info,2019-12-20,"{""language"": ""EN"", ""currency"": ""EUR""}",8215.89,Bronze,0 +6930,Tracy Hughes,qcarr@bell-hoffman.com,2022-05-17,"{""language"": ""ES"", ""currency"": ""EUR""}",1641.46,Silver,1 +6931,Samuel Dominguez,omaxwell@gmail.com,2022-08-30,"{""language"": ""EN"", ""currency"": ""GBP""}",8747.17,Silver,1 +6932,Brooke Roberts,rubiodavid@butler.com,2022-09-21,"{""language"": ""IT"", ""currency"": ""USD""}",2671.35,Silver,1 +6933,Emily Hale,james40@hotmail.com,2023-03-11,"{""language"": ""ES"", ""currency"": ""GBP""}",101.66,Silver,0 +6934,Jacob Jackson,melodyking@jackson.com,2021-01-05,"{""language"": ""FR"", ""currency"": ""USD""}",4882.16,Silver,1 +6935,Bryan Zimmerman,john07@larson.com,2023-05-14,"{""language"": ""ES"", ""currency"": ""USD""}",8200.24,Bronze,1 +6936,Audrey Butler,tracey36@yahoo.com,2022-12-06,"{""language"": ""IT"", ""currency"": ""USD""}",615.95,Gold,0 +6937,Brittany Lee,raymond62@gmail.com,2022-05-24,"{""language"": ""ES"", ""currency"": ""USD""}",1019.92,Gold,1 +6938,Matthew Howard,garnermichael@yahoo.com,2020-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",2269.28,Silver,0 +6939,Julie Roberts,jodiwilliams@yahoo.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1107.4,Silver,1 +6940,Donna Blackwell,millerlori@hotmail.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""EUR""}",5922.38,Silver,0 +6941,Sandy Brown,saradiaz@walker.net,2019-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",5884.22,Silver,1 +6942,Gregory Wilson,stephanie05@gmail.com,2020-01-08,"{""language"": ""FR"", ""currency"": ""MXN""}",5981.86,Silver,1 +6943,Valerie Campbell,matthewmorales@ibarra-kelly.com,2021-08-15,"{""language"": ""EN"", ""currency"": ""EUR""}",1925.63,Gold,0 +6944,Marcia Velasquez,dorothyfoster@myers-martinez.com,2022-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5832.8,Silver,0 +6945,Michael Casey,odonnellariana@terrell.biz,2023-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",4904.83,Bronze,0 +6946,Alexander Salinas,brownkaren@daniels-garcia.net,2020-07-21,"{""language"": ""FR"", ""currency"": ""MXN""}",2421.27,Gold,0 +6947,Nancy Frye,hornemarvin@gmail.com,2024-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3162.41,Gold,1 +6948,Brian Kennedy,lopezkathryn@yahoo.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""CAD""}",3952.25,Bronze,0 +6949,Carla Hopkins,rodgersjeffrey@gmail.com,2020-09-27,"{""language"": ""EN"", ""currency"": ""GBP""}",2896.75,Gold,1 +6950,Brandon Byrd,floresjames@gmail.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""EUR""}",6275.95,Bronze,1 +6951,Stephanie Sanders,davischad@clark.com,2020-12-15,"{""language"": ""EN"", ""currency"": ""CAD""}",6883.01,Silver,0 +6952,Jonathan Brewer,qbowen@yahoo.com,2024-02-08,"{""language"": ""ES"", ""currency"": ""MXN""}",2124.35,Bronze,1 +6953,Danielle Coleman,christinaparker@ayala.com,2020-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",9273.18,Bronze,0 +6954,Wendy Bryant,scottsamuel@hotmail.com,2024-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",134.33,Bronze,0 +6955,Andre Waller,stephanie28@gmail.com,2020-06-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4197.45,Bronze,0 +6956,Matthew Higgins,jonathan13@garcia-moon.com,2020-10-28,"{""language"": ""DE"", ""currency"": ""GBP""}",3147.49,Bronze,0 +6957,Curtis Saunders,rebecca13@byrd.com,2023-08-01,"{""language"": ""EN"", ""currency"": ""USD""}",2416.55,Bronze,1 +6958,Jerry Washington,jonathansmith@turner.net,2023-03-08,"{""language"": ""IT"", ""currency"": ""MXN""}",9068.4,Bronze,1 +6959,Patrick Cannon,kathleenlester@gmail.com,2023-05-07,"{""language"": ""IT"", ""currency"": ""GBP""}",74.0,Silver,0 +6960,Lori Dixon,jamesrichard@hall.org,2024-05-19,"{""language"": ""DE"", ""currency"": ""MXN""}",8642.81,Bronze,1 +6961,Michelle Davidson,yhale@gmail.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""GBP""}",7772.75,Bronze,1 +6962,Keith Gonzalez,michellestewart@pierce.biz,2022-09-12,"{""language"": ""ES"", ""currency"": ""CAD""}",2825.38,Bronze,0 +6963,Alexandra Meyer,levinejulie@yahoo.com,2023-10-23,"{""language"": ""IT"", ""currency"": ""GBP""}",8665.69,Gold,1 +6964,Teresa Rhodes,asantiago@collins.com,2021-02-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9642.0,Bronze,0 +6965,David Hernandez,blackkenneth@ferguson.com,2021-01-05,"{""language"": ""EN"", ""currency"": ""EUR""}",9690.85,Gold,0 +6966,George Hanson,christophermacdonald@gmail.com,2023-12-26,"{""language"": ""ES"", ""currency"": ""CAD""}",5486.57,Bronze,0 +6967,Jennifer Wilson,toddholloway@sullivan-brown.com,2023-01-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2876.01,Silver,1 +6968,Mary Schwartz,holly48@hotmail.com,2024-02-17,"{""language"": ""IT"", ""currency"": ""EUR""}",573.5,Gold,0 +6969,Catherine Herman,bellkyle@foster.com,2024-02-10,"{""language"": ""DE"", ""currency"": ""CAD""}",9867.43,Silver,0 +6970,Carolyn Andrews,irwinmichael@yahoo.com,2021-08-23,"{""language"": ""FR"", ""currency"": ""GBP""}",9425.24,Gold,1 +6971,Ryan Gill,juanhowell@williams.org,2023-03-15,"{""language"": ""FR"", ""currency"": ""USD""}",6531.13,Bronze,0 +6972,Eric Burke,renee13@sanders-hayes.com,2024-07-05,"{""language"": ""EN"", ""currency"": ""USD""}",5051.74,Silver,0 +6973,Gary Tran,vwhite@vaughan.com,2022-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",6816.47,Silver,1 +6974,Margaret Hall,brownbailey@yahoo.com,2020-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",2643.46,Bronze,0 +6975,Jose Roberts,wrightcatherine@peterson.com,2022-07-27,"{""language"": ""FR"", ""currency"": ""USD""}",313.95,Gold,0 +6976,Cassandra Rose,qbailey@gmail.com,2020-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",3019.54,Bronze,1 +6977,Paul Rodriguez MD,vowens@malone.net,2021-06-25,"{""language"": ""ES"", ""currency"": ""EUR""}",466.53,Silver,1 +6978,Phillip Hernandez,nscott@hotmail.com,2020-11-16,"{""language"": ""EN"", ""currency"": ""USD""}",2609.96,Bronze,1 +6979,Johnny Smith,ccruz@lewis.info,2021-10-21,"{""language"": ""ES"", ""currency"": ""EUR""}",2489.0,Gold,1 +6980,Jeremy Miller,brownricardo@hotmail.com,2024-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",3524.13,Gold,1 +6981,Peggy Hoover,olarson@hart.net,2024-01-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7574.76,Bronze,1 +6982,Joshua Clark,bspencer@hotmail.com,2021-06-29,"{""language"": ""DE"", ""currency"": ""GBP""}",6350.21,Silver,1 +6983,Heather Cooper,dianaedwards@yahoo.com,2020-07-23,"{""language"": ""DE"", ""currency"": ""GBP""}",1468.0,Gold,0 +6984,Nathan Payne,annafowler@gmail.com,2024-08-12,"{""language"": ""EN"", ""currency"": ""EUR""}",7180.07,Bronze,0 +6985,Thomas Garcia,katrina56@barnes.com,2022-06-30,"{""language"": ""FR"", ""currency"": ""MXN""}",86.94,Bronze,1 +6986,Taylor Rogers,qhancock@gmail.com,2020-04-19,"{""language"": ""FR"", ""currency"": ""USD""}",5253.35,Silver,0 +6987,Joshua Sandoval,huntlisa@yahoo.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",2780.23,Gold,0 +6988,James Franklin,nataliecarter@yahoo.com,2021-01-01,"{""language"": ""ES"", ""currency"": ""USD""}",6047.26,Silver,1 +6989,Eric Daniels,isteele@garcia-keith.com,2020-11-01,"{""language"": ""IT"", ""currency"": ""CAD""}",1959.77,Silver,1 +6990,Danielle Ramirez,felicia20@hotmail.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""MXN""}",5416.42,Bronze,0 +6991,Tyler Graham,justin54@hotmail.com,2023-12-05,"{""language"": ""EN"", ""currency"": ""MXN""}",74.92,Bronze,0 +6992,Mr. Kevin Fisher,susan82@hotmail.com,2023-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",1631.08,Silver,0 +6993,Erica Farmer,johnsonlydia@hotmail.com,2023-06-27,"{""language"": ""DE"", ""currency"": ""EUR""}",9881.84,Gold,1 +6994,Melinda Bonilla,justin53@webb-adams.com,2020-11-12,"{""language"": ""EN"", ""currency"": ""MXN""}",476.78,Bronze,0 +6995,Kelly Moran,john64@gmail.com,2021-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",3828.07,Bronze,0 +6996,Frank Braun,burkejohn@gmail.com,2023-01-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1063.8,Gold,0 +6997,Debra Dickerson,olivia48@davis.biz,2021-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",1831.93,Silver,1 +6998,Peggy Griffin,dawsonsandra@gmail.com,2021-10-28,"{""language"": ""IT"", ""currency"": ""CAD""}",5286.11,Silver,0 +6999,Dr. Seth Scott,rwilson@hotmail.com,2019-12-15,"{""language"": ""EN"", ""currency"": ""EUR""}",7947.73,Silver,0 +7000,Joshua Hancock,khumphrey@gmail.com,2021-04-15,"{""language"": ""DE"", ""currency"": ""EUR""}",1488.28,Gold,1 +7001,Renee Mcclure PhD,alicia50@li.net,2023-07-22,"{""language"": ""ES"", ""currency"": ""USD""}",5761.58,Silver,0 +7002,Desiree Gibson,thomas34@noble-hernandez.com,2021-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",86.98,Silver,0 +7003,Mrs. Debbie Spencer,pgray@perez-casey.org,2021-03-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5468.69,Silver,0 +7004,Thomas Rowland,susan88@williams.info,2022-02-22,"{""language"": ""FR"", ""currency"": ""CAD""}",5494.02,Silver,1 +7005,Nathan Bates Jr.,dkim@moore.com,2021-02-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6561.3,Gold,1 +7006,Melissa Brown,gmayo@gmail.com,2020-11-11,"{""language"": ""EN"", ""currency"": ""EUR""}",9468.5,Bronze,1 +7007,Rebecca Jones,moralesmaria@hotmail.com,2020-09-01,"{""language"": ""EN"", ""currency"": ""USD""}",258.27,Silver,1 +7008,Julie Yang,hanthony@reed.com,2022-03-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1359.81,Silver,1 +7009,Laura Morris,lhawkins@hotmail.com,2020-06-07,"{""language"": ""EN"", ""currency"": ""CAD""}",549.29,Bronze,0 +7010,James Torres,gordonluke@yahoo.com,2022-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",2425.53,Silver,0 +7011,Eric Fisher,johnsonmary@yahoo.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",6386.41,Silver,0 +7012,Paul Lopez,pughdebra@yahoo.com,2024-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",6311.42,Gold,0 +7013,Matthew Norman,john62@hotmail.com,2023-05-13,"{""language"": ""EN"", ""currency"": ""MXN""}",5997.7,Gold,0 +7014,David Dunn,jenniferwise@hotmail.com,2023-05-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5757.6,Bronze,0 +7015,Christopher Charles,jacquelinefischer@yahoo.com,2022-04-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4798.96,Bronze,0 +7016,David Reeves,oconnorbetty@atkinson-hughes.com,2021-07-22,"{""language"": ""ES"", ""currency"": ""EUR""}",1494.83,Gold,1 +7017,Nicholas Kelly,smithtyler@yahoo.com,2021-03-30,"{""language"": ""EN"", ""currency"": ""MXN""}",309.53,Silver,1 +7018,Michael Peters,nicholsonfelicia@lopez.biz,2021-02-04,"{""language"": ""EN"", ""currency"": ""MXN""}",9645.68,Gold,0 +7019,Christopher Brown,brittany25@gmail.com,2020-05-22,"{""language"": ""IT"", ""currency"": ""GBP""}",3513.7,Gold,1 +7020,Michael Humphrey,karenandrade@hotmail.com,2020-06-15,"{""language"": ""FR"", ""currency"": ""EUR""}",7890.22,Silver,0 +7021,Shawna Davis,jason86@gmail.com,2020-04-24,"{""language"": ""FR"", ""currency"": ""EUR""}",3600.51,Gold,0 +7022,Alec Moore,charlottehunter@parks.org,2022-07-05,"{""language"": ""IT"", ""currency"": ""USD""}",1491.53,Gold,0 +7023,David Bradshaw,hallkathleen@griffin.com,2024-10-07,"{""language"": ""DE"", ""currency"": ""GBP""}",7020.53,Silver,1 +7024,Logan Mills,ojones@gmail.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""USD""}",6686.97,Bronze,0 +7025,Maria Carter,rachelrodriguez@johnson.com,2021-01-31,"{""language"": ""DE"", ""currency"": ""USD""}",9465.44,Bronze,0 +7026,Kim Hernandez,luis10@simmons.info,2020-10-31,"{""language"": ""ES"", ""currency"": ""CAD""}",5567.95,Bronze,1 +7027,Samuel Kennedy,julie86@tyler.com,2023-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",5223.22,Bronze,0 +7028,Stephen Frederick,justinsolomon@davis-hoover.info,2019-12-31,"{""language"": ""FR"", ""currency"": ""EUR""}",8038.56,Bronze,0 +7029,Joseph Chavez,wrightmelissa@anderson.com,2021-01-01,"{""language"": ""DE"", ""currency"": ""CAD""}",463.66,Gold,0 +7030,Carl Smith,williamsemily@yahoo.com,2021-12-20,"{""language"": ""FR"", ""currency"": ""USD""}",2396.41,Gold,0 +7031,Emily Jenkins,kfreeman@williams.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""CAD""}",9812.01,Bronze,1 +7032,Daniel Smith,bjohnston@cline.biz,2022-06-26,"{""language"": ""EN"", ""currency"": ""USD""}",5065.26,Gold,1 +7033,Paula Nixon,ewilliams@haney.com,2020-07-02,"{""language"": ""FR"", ""currency"": ""CAD""}",6101.87,Bronze,1 +7034,Joseph Harvey,howardkenneth@rodriguez.com,2024-03-18,"{""language"": ""FR"", ""currency"": ""CAD""}",2032.38,Silver,1 +7035,Jeffery Brown,thompsonshannon@wood-suarez.com,2022-09-09,"{""language"": ""IT"", ""currency"": ""CAD""}",1817.52,Gold,1 +7036,Joanna Perez,shawhannah@hotmail.com,2024-05-13,"{""language"": ""EN"", ""currency"": ""GBP""}",3982.94,Silver,1 +7037,Lindsay Gilbert,staceydecker@yahoo.com,2021-09-25,"{""language"": ""FR"", ""currency"": ""EUR""}",9219.65,Bronze,1 +7038,Kenneth Roberts,joseph21@house.biz,2020-06-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8505.8,Silver,1 +7039,Dave Lyons PhD,mcdowelllinda@smith-cole.com,2023-12-14,"{""language"": ""FR"", ""currency"": ""USD""}",9414.1,Gold,0 +7040,Cynthia Edwards,johnsonamanda@gmail.com,2023-01-06,"{""language"": ""DE"", ""currency"": ""EUR""}",1357.93,Gold,1 +7041,Micheal Castro,goodwinmelissa@hotmail.com,2022-09-02,"{""language"": ""EN"", ""currency"": ""CAD""}",5080.4,Silver,1 +7042,James Maynard,julierose@hotmail.com,2022-10-20,"{""language"": ""FR"", ""currency"": ""CAD""}",4066.44,Silver,0 +7043,Brian Hart,brandi99@hubbard-johnson.com,2022-08-06,"{""language"": ""ES"", ""currency"": ""MXN""}",6961.21,Silver,1 +7044,Jeffrey Perez,paynenicole@clark-robinson.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",209.52,Silver,1 +7045,Shannon Buck,david07@vasquez-bates.net,2023-08-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9248.39,Gold,0 +7046,Christopher Doyle,martinlaura@gmail.com,2021-10-03,"{""language"": ""ES"", ""currency"": ""EUR""}",1908.55,Silver,0 +7047,Melinda Christensen,garciapatrick@haynes.com,2023-07-15,"{""language"": ""EN"", ""currency"": ""USD""}",1268.12,Bronze,0 +7048,Alyssa Steele,ericvega@rivera.net,2022-02-09,"{""language"": ""DE"", ""currency"": ""MXN""}",1977.06,Gold,0 +7049,Meghan West,pholder@hotmail.com,2023-02-02,"{""language"": ""DE"", ""currency"": ""MXN""}",3423.12,Gold,0 +7050,Dustin Sullivan,fanderson@hotmail.com,2024-11-11,"{""language"": ""ES"", ""currency"": ""CAD""}",7560.87,Silver,1 +7051,Lauren Hicks,anthonyhiggins@kerr-rush.com,2022-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",3701.38,Bronze,1 +7052,Leon Hoffman,jonathan94@robertson-barrett.com,2023-03-24,"{""language"": ""DE"", ""currency"": ""MXN""}",7006.47,Silver,1 +7053,Andrew Wagner,misty87@gmail.com,2023-06-06,"{""language"": ""FR"", ""currency"": ""CAD""}",4352.35,Silver,1 +7054,Brittney Ramos,ytorres@hotmail.com,2024-07-07,"{""language"": ""ES"", ""currency"": ""MXN""}",4927.7,Silver,1 +7055,Kimberly Lopez,emma28@hotmail.com,2024-06-09,"{""language"": ""DE"", ""currency"": ""CAD""}",2095.85,Gold,1 +7056,Tanya Carson,justinjohnson@sullivan-moses.info,2023-07-26,"{""language"": ""DE"", ""currency"": ""CAD""}",6060.56,Bronze,1 +7057,Carrie Peters,jgalloway@yahoo.com,2020-07-25,"{""language"": ""IT"", ""currency"": ""EUR""}",6007.8,Gold,1 +7058,Theresa Rodriguez,cheryl53@yahoo.com,2021-01-13,"{""language"": ""IT"", ""currency"": ""EUR""}",5576.89,Gold,1 +7059,Patrick Lowery,zlove@gmail.com,2020-01-22,"{""language"": ""IT"", ""currency"": ""MXN""}",4842.87,Silver,0 +7060,Martin Rich,angela42@miller.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""MXN""}",4644.71,Bronze,0 +7061,Sabrina Williams,ibruce@watson.com,2022-04-07,"{""language"": ""FR"", ""currency"": ""USD""}",690.27,Silver,0 +7062,Scott Bradford,derrick65@livingston.info,2019-12-20,"{""language"": ""ES"", ""currency"": ""CAD""}",3714.5,Bronze,0 +7063,Leslie Francis,adamsanthony@christensen.info,2021-09-08,"{""language"": ""IT"", ""currency"": ""EUR""}",6094.73,Silver,1 +7064,Rebekah Solis,stephen45@yahoo.com,2023-08-26,"{""language"": ""ES"", ""currency"": ""USD""}",6881.4,Silver,1 +7065,Nichole Krause,heatherchristensen@yahoo.com,2023-09-22,"{""language"": ""ES"", ""currency"": ""USD""}",1042.04,Gold,0 +7066,Jason Lewis,yodonnell@gomez.net,2022-12-19,"{""language"": ""IT"", ""currency"": ""EUR""}",1657.57,Gold,1 +7067,Paul Hines,hbanks@yahoo.com,2024-11-21,"{""language"": ""ES"", ""currency"": ""GBP""}",8527.39,Gold,0 +7068,Natalie Butler,lgomez@fowler.info,2021-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",2653.28,Silver,0 +7069,Donna Smith,steven62@santos.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",9469.73,Bronze,1 +7070,Philip Smith,winterskristin@cline.org,2021-01-28,"{""language"": ""EN"", ""currency"": ""CAD""}",8255.77,Bronze,1 +7071,Scott Schaefer,wilcoxkristi@gmail.com,2023-12-16,"{""language"": ""DE"", ""currency"": ""CAD""}",309.47,Bronze,1 +7072,Zachary Anderson,pnichols@yahoo.com,2022-09-30,"{""language"": ""IT"", ""currency"": ""USD""}",1145.34,Bronze,1 +7073,Marissa Nash,johnchavez@montgomery.net,2021-08-23,"{""language"": ""DE"", ""currency"": ""USD""}",7326.41,Bronze,1 +7074,Michael Gomez,nicholassanchez@gutierrez-harris.net,2023-08-01,"{""language"": ""ES"", ""currency"": ""CAD""}",665.92,Gold,0 +7075,Sarah Wall,djones@gmail.com,2021-04-18,"{""language"": ""FR"", ""currency"": ""EUR""}",2576.67,Gold,0 +7076,Robin Gardner,amanda98@hotmail.com,2020-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",3993.28,Bronze,0 +7077,Theresa Lynch,charlesmyers@rodriguez.com,2020-07-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2071.37,Gold,1 +7078,Erica Sosa,vrobinson@reynolds.info,2024-07-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4725.06,Silver,1 +7079,Christina Coffey,rebeccastewart@hotmail.com,2022-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",6191.52,Silver,0 +7080,Jamie Salazar,voconnor@yahoo.com,2023-08-20,"{""language"": ""IT"", ""currency"": ""EUR""}",9981.19,Gold,0 +7081,Brenda Guerra,gilbertzachary@lee.org,2024-10-25,"{""language"": ""DE"", ""currency"": ""MXN""}",2150.77,Bronze,1 +7082,Melissa Roberson,zmcgrath@yahoo.com,2023-08-30,"{""language"": ""FR"", ""currency"": ""MXN""}",6609.57,Silver,1 +7083,Sara Craig,stewartallen@ashley.info,2021-07-26,"{""language"": ""IT"", ""currency"": ""USD""}",2117.4,Gold,0 +7084,Thomas Bates,craigmontgomery@yahoo.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""GBP""}",6139.54,Gold,0 +7085,Patricia Williams,ugarcia@gmail.com,2020-04-17,"{""language"": ""DE"", ""currency"": ""CAD""}",6126.42,Bronze,0 +7086,Cristina Jefferson,millerscott@nelson.com,2020-08-30,"{""language"": ""ES"", ""currency"": ""GBP""}",5220.79,Gold,1 +7087,Jennifer Campbell,mschroeder@dominguez-lopez.biz,2021-05-12,"{""language"": ""IT"", ""currency"": ""CAD""}",6610.05,Silver,0 +7088,Danielle Ramirez,cassandrabarker@smith.com,2022-01-22,"{""language"": ""EN"", ""currency"": ""EUR""}",5806.77,Bronze,0 +7089,Michael Reynolds,drakeruth@booker.org,2023-10-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1516.84,Silver,1 +7090,Dorothy Flores,joseph96@gmail.com,2020-07-16,"{""language"": ""IT"", ""currency"": ""MXN""}",4115.14,Bronze,1 +7091,John Jones,mallen@garcia.org,2021-04-09,"{""language"": ""IT"", ""currency"": ""CAD""}",2554.02,Gold,0 +7092,Meghan Mcdaniel,onelson@jones-rogers.com,2024-07-25,"{""language"": ""DE"", ""currency"": ""USD""}",4878.16,Silver,1 +7093,James Tucker,sarah91@yahoo.com,2024-09-24,"{""language"": ""ES"", ""currency"": ""MXN""}",4570.24,Bronze,0 +7094,Ashley Singh,donald55@brown-higgins.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""CAD""}",528.69,Bronze,0 +7095,Jessica Davis,nevans@yahoo.com,2023-03-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1054.67,Gold,1 +7096,Sherri Matthews,whitesamantha@ramos.com,2024-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",4722.07,Bronze,1 +7097,Vincent Adams,fherring@ochoa.com,2024-08-10,"{""language"": ""ES"", ""currency"": ""CAD""}",9758.44,Bronze,1 +7098,Richard Gillespie,michael53@gmail.com,2024-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",4075.79,Silver,1 +7099,Deborah Weber,kristen80@yahoo.com,2019-12-12,"{""language"": ""IT"", ""currency"": ""USD""}",5455.64,Gold,1 +7100,Mark Logan,pdavis@carter-valencia.com,2024-01-09,"{""language"": ""EN"", ""currency"": ""EUR""}",5162.11,Silver,0 +7101,Jodi Lowery,pgarrett@davis.com,2024-05-07,"{""language"": ""FR"", ""currency"": ""GBP""}",437.66,Gold,0 +7102,Ms. Amy Mitchell,christianparker@yahoo.com,2023-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",1598.01,Gold,0 +7103,Michele Nelson,jamestran@hotmail.com,2022-07-13,"{""language"": ""ES"", ""currency"": ""EUR""}",7784.84,Silver,1 +7104,Tonya Jackson,conniehoward@molina-ramirez.net,2023-05-16,"{""language"": ""FR"", ""currency"": ""EUR""}",6468.61,Silver,0 +7105,Keith Allen,amyalexander@gmail.com,2023-01-10,"{""language"": ""ES"", ""currency"": ""MXN""}",5241.04,Bronze,1 +7106,Randall Craig,jacksonlucas@moran.com,2020-04-30,"{""language"": ""DE"", ""currency"": ""USD""}",5265.43,Bronze,0 +7107,Julia Daniel,fking@yahoo.com,2021-08-16,"{""language"": ""FR"", ""currency"": ""CAD""}",763.96,Silver,1 +7108,William Anderson,victor06@bartlett.com,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",5095.12,Gold,1 +7109,Zachary Park,oball@hotmail.com,2023-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",8487.05,Silver,0 +7110,Edward Rice,robertgalvan@gmail.com,2024-01-30,"{""language"": ""EN"", ""currency"": ""USD""}",2764.87,Silver,1 +7111,Eric Jones,delacruzjennifer@yahoo.com,2020-01-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2124.12,Gold,0 +7112,Larry Gonzalez,albert76@fisher-lopez.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""USD""}",2001.51,Bronze,0 +7113,Daniel Sellers,sherry37@gallegos-stevens.org,2022-12-17,"{""language"": ""FR"", ""currency"": ""GBP""}",6309.08,Bronze,1 +7114,Trevor Clark,kimmeghan@hotmail.com,2022-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",1483.81,Bronze,0 +7115,Gloria Douglas,joannabriggs@yahoo.com,2020-08-26,"{""language"": ""ES"", ""currency"": ""EUR""}",7082.43,Silver,1 +7116,Jeremy Mcguire,pevans@gmail.com,2023-03-08,"{""language"": ""ES"", ""currency"": ""USD""}",5855.52,Bronze,1 +7117,Wesley White,christophernelson@hernandez.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""MXN""}",8515.19,Gold,0 +7118,Traci Black,rachel79@yahoo.com,2023-06-12,"{""language"": ""FR"", ""currency"": ""MXN""}",9411.3,Bronze,1 +7119,Alexander Horn,thess@gmail.com,2021-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",2275.15,Gold,0 +7120,James Hill,iwashington@yahoo.com,2020-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7154.61,Gold,0 +7121,Frank Dillon,linchase@gmail.com,2023-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",4698.65,Gold,1 +7122,Charles Miles,mrobinson@yahoo.com,2022-05-13,"{""language"": ""EN"", ""currency"": ""USD""}",2510.12,Bronze,0 +7123,Rebecca Baker,fdoyle@gonzalez.com,2022-02-05,"{""language"": ""IT"", ""currency"": ""CAD""}",9238.93,Silver,0 +7124,Arthur Brown,matthew21@hotmail.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""EUR""}",8934.43,Gold,1 +7125,Greg Byrd DVM,moralesmark@carr-hansen.org,2023-07-31,"{""language"": ""EN"", ""currency"": ""EUR""}",6263.37,Bronze,0 +7126,Haley Woodward,jacqueline17@hotmail.com,2023-12-27,"{""language"": ""EN"", ""currency"": ""USD""}",5435.81,Bronze,0 +7127,Robert Sanders,michael08@gmail.com,2021-09-12,"{""language"": ""EN"", ""currency"": ""CAD""}",2783.12,Silver,1 +7128,Jenna Reynolds,heather43@hotmail.com,2020-11-05,"{""language"": ""IT"", ""currency"": ""CAD""}",742.45,Gold,0 +7129,Cynthia Johnson,donna93@nelson-williams.biz,2023-08-04,"{""language"": ""DE"", ""currency"": ""GBP""}",2642.93,Silver,0 +7130,Jeffrey Davila,villarrealjerry@lee-delacruz.biz,2021-09-28,"{""language"": ""EN"", ""currency"": ""MXN""}",8437.19,Silver,0 +7131,Cynthia Martinez,swilliams@yahoo.com,2024-02-02,"{""language"": ""ES"", ""currency"": ""EUR""}",7582.94,Silver,1 +7132,Erica Mora,singletontyler@keith.com,2024-10-06,"{""language"": ""DE"", ""currency"": ""USD""}",9912.66,Silver,1 +7133,Mary Barnes,xproctor@yahoo.com,2024-05-02,"{""language"": ""IT"", ""currency"": ""EUR""}",7129.1,Bronze,0 +7134,Melissa Wagner,sfoster@collins.org,2023-09-07,"{""language"": ""EN"", ""currency"": ""GBP""}",822.85,Bronze,1 +7135,Travis Cruz,marcusscott@jefferson.net,2021-06-03,"{""language"": ""FR"", ""currency"": ""EUR""}",3933.83,Bronze,0 +7136,Mark Russell,favila@lee.com,2024-10-29,"{""language"": ""IT"", ""currency"": ""EUR""}",4581.76,Gold,0 +7137,Nicole Palmer,gregorygordon@parker-meyer.com,2022-10-23,"{""language"": ""EN"", ""currency"": ""MXN""}",9080.51,Silver,0 +7138,Tammy Fernandez,julie26@anderson-moore.info,2022-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",696.09,Bronze,0 +7139,Charles Mckinney,devinvega@hotmail.com,2020-02-06,"{""language"": ""ES"", ""currency"": ""GBP""}",9371.47,Silver,1 +7140,Emily Mcgrath,blackwelldanielle@marsh.com,2024-08-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3147.44,Gold,0 +7141,Nicole Hughes,sanfordjoshua@ruiz.org,2022-11-29,"{""language"": ""ES"", ""currency"": ""EUR""}",7869.92,Silver,0 +7142,Daniel Young,codybryant@cole-rios.com,2020-09-07,"{""language"": ""IT"", ""currency"": ""EUR""}",2199.29,Silver,1 +7143,Christopher Hill,whitekevin@yahoo.com,2020-05-25,"{""language"": ""EN"", ""currency"": ""MXN""}",2684.39,Bronze,0 +7144,Amy Palmer,zjohnston@stevens.org,2023-07-13,"{""language"": ""FR"", ""currency"": ""MXN""}",4299.17,Silver,1 +7145,Harold Cox,renee65@hotmail.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""USD""}",2000.66,Silver,1 +7146,John Berry,kristopher01@carroll-moore.com,2020-01-29,"{""language"": ""FR"", ""currency"": ""GBP""}",9776.59,Silver,0 +7147,Crystal Daniels,lisaschwartz@powell.com,2024-10-02,"{""language"": ""EN"", ""currency"": ""CAD""}",8215.0,Gold,1 +7148,Scott Garcia MD,sharon72@harrington.com,2021-04-28,"{""language"": ""ES"", ""currency"": ""MXN""}",6674.65,Bronze,0 +7149,Melvin Boyd,brodriguez@andrews.com,2022-05-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9666.5,Gold,0 +7150,Miguel Cherry,dvega@brown.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",2123.45,Bronze,0 +7151,Michael Martinez,phelpschristina@gmail.com,2022-01-04,"{""language"": ""DE"", ""currency"": ""GBP""}",1869.66,Silver,1 +7152,John Brown,michaelhenson@lewis.com,2020-01-18,"{""language"": ""FR"", ""currency"": ""MXN""}",6981.85,Silver,0 +7153,Mary Garcia,joseph09@blackwell.info,2024-02-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3719.64,Bronze,1 +7154,Leonard Gonzalez,meghan93@hall-romero.net,2023-12-15,"{""language"": ""FR"", ""currency"": ""CAD""}",3467.22,Gold,0 +7155,Lisa Shelton,tasha92@hotmail.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2280.62,Gold,1 +7156,Justin Peterson,evansmith@hotmail.com,2023-02-17,"{""language"": ""FR"", ""currency"": ""MXN""}",4743.4,Bronze,1 +7157,Casey Henson,brittanywilson@hotmail.com,2022-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7775.05,Bronze,1 +7158,Jordan Gomez,olsonlisa@mccormick-smith.info,2024-11-15,"{""language"": ""FR"", ""currency"": ""GBP""}",2945.96,Gold,0 +7159,Jason Hall,villarrealclayton@hotmail.com,2024-04-21,"{""language"": ""FR"", ""currency"": ""CAD""}",5918.68,Silver,1 +7160,Kevin Thompson,smithdavid@gmail.com,2021-10-11,"{""language"": ""FR"", ""currency"": ""USD""}",4181.54,Bronze,1 +7161,Alicia Hart,zachary47@taylor-nelson.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""CAD""}",197.84,Bronze,0 +7162,Rebecca Clay,ycampbell@yahoo.com,2024-08-26,"{""language"": ""DE"", ""currency"": ""GBP""}",1964.77,Bronze,0 +7163,Charles Cox,kevin92@gmail.com,2021-11-13,"{""language"": ""FR"", ""currency"": ""MXN""}",8368.56,Gold,1 +7164,Ms. Jennifer Berry,christopher27@gmail.com,2023-08-04,"{""language"": ""ES"", ""currency"": ""USD""}",75.57,Silver,0 +7165,Steven Harris,michael82@yahoo.com,2024-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",6937.12,Bronze,0 +7166,Leah Wong,coltonhardy@gmail.com,2021-04-04,"{""language"": ""DE"", ""currency"": ""CAD""}",5939.27,Gold,0 +7167,Dr. James Sanders,madeline65@gmail.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",9361.14,Silver,1 +7168,Scott Torres,hclark@yahoo.com,2021-05-21,"{""language"": ""IT"", ""currency"": ""GBP""}",843.45,Gold,0 +7169,Jill Diaz,bjenkins@carr-walter.com,2022-02-14,"{""language"": ""ES"", ""currency"": ""EUR""}",6714.05,Silver,1 +7170,Jacob Bradford,tiffanyandrews@gmail.com,2021-08-08,"{""language"": ""FR"", ""currency"": ""CAD""}",9157.78,Gold,0 +7171,Patricia Rivas,craighernandez@gmail.com,2024-01-22,"{""language"": ""FR"", ""currency"": ""MXN""}",3336.01,Bronze,1 +7172,Tammy Martin,kurt71@powell.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""CAD""}",4895.1,Bronze,1 +7173,Lindsey Price,patrick64@moon-porter.com,2020-12-14,"{""language"": ""FR"", ""currency"": ""USD""}",6288.05,Gold,1 +7174,Corey Barnes,fquinn@andrade.com,2023-07-05,"{""language"": ""DE"", ""currency"": ""CAD""}",4475.27,Silver,1 +7175,Jamie Myers,rhonda80@shannon-johnson.com,2024-10-09,"{""language"": ""DE"", ""currency"": ""MXN""}",4652.98,Gold,1 +7176,Willie Sanchez,roberthicks@hotmail.com,2022-07-26,"{""language"": ""EN"", ""currency"": ""GBP""}",7124.37,Silver,1 +7177,Alexander Munoz,eclark@brown.org,2022-02-27,"{""language"": ""DE"", ""currency"": ""EUR""}",8043.65,Gold,1 +7178,Travis Jacobs,stevenelson@sanders.com,2024-03-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8468.24,Gold,0 +7179,Jason Davis,grahammichael@west-peck.com,2023-04-07,"{""language"": ""ES"", ""currency"": ""GBP""}",944.43,Gold,1 +7180,Brian Fitzgerald,teresa87@cortez.org,2021-04-29,"{""language"": ""FR"", ""currency"": ""GBP""}",6676.91,Gold,0 +7181,Kayla Wagner,renee57@welch-watts.net,2023-07-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7240.2,Bronze,1 +7182,Jennifer Wilson,marilynward@hoover-higgins.com,2021-08-07,"{""language"": ""DE"", ""currency"": ""MXN""}",670.8,Silver,0 +7183,Colleen Mcintosh,cochrandana@yahoo.com,2023-07-01,"{""language"": ""DE"", ""currency"": ""GBP""}",5523.34,Gold,0 +7184,David Howard,jill57@kennedy-gibbs.biz,2022-05-19,"{""language"": ""EN"", ""currency"": ""MXN""}",2318.23,Gold,1 +7185,Brian Sanchez,owhite@yahoo.com,2024-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",7583.83,Gold,1 +7186,Kimberly Saunders,todddominguez@gmail.com,2023-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",772.47,Silver,0 +7187,Michele Gray,twade@martinez.org,2023-10-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7449.51,Bronze,1 +7188,Heather Davies,kennethcallahan@sutton.info,2020-12-08,"{""language"": ""DE"", ""currency"": ""CAD""}",1222.18,Silver,0 +7189,Joshua Foster,rebeccawillis@holland-evans.com,2021-06-04,"{""language"": ""ES"", ""currency"": ""CAD""}",4610.8,Gold,0 +7190,Sarah Elliott,bpowers@gmail.com,2022-02-03,"{""language"": ""IT"", ""currency"": ""EUR""}",2146.16,Silver,0 +7191,Kristy Brooks,ryanhoward@hotmail.com,2023-03-11,"{""language"": ""DE"", ""currency"": ""USD""}",1056.87,Gold,1 +7192,Lauren White,nicholaspowell@schwartz-sherman.info,2020-04-10,"{""language"": ""IT"", ""currency"": ""USD""}",864.16,Gold,0 +7193,Maria Kemp,jessicajordan@esparza.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",1902.23,Gold,1 +7194,Kim Chen,rileymegan@gmail.com,2024-05-11,"{""language"": ""IT"", ""currency"": ""EUR""}",853.95,Bronze,1 +7195,Sarah Ochoa,jmarsh@yahoo.com,2023-11-02,"{""language"": ""IT"", ""currency"": ""USD""}",7990.57,Silver,1 +7196,Leslie Moore,osbornejorge@yahoo.com,2022-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3761.23,Gold,1 +7197,Victoria Williams,jordanchristopher@riley.com,2023-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",9014.36,Bronze,0 +7198,Donald Holland,dharper@gmail.com,2024-05-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6799.97,Silver,0 +7199,William Henderson,maryjohnson@gmail.com,2022-04-01,"{""language"": ""IT"", ""currency"": ""EUR""}",8190.7,Silver,0 +7200,Casey Clark,frankbrenda@yahoo.com,2020-06-18,"{""language"": ""FR"", ""currency"": ""USD""}",1569.94,Gold,1 +7201,Andre Harper,ann90@burnett.com,2022-08-23,"{""language"": ""FR"", ""currency"": ""USD""}",6265.74,Gold,1 +7202,Aaron Wilson,rcarrillo@keller-christian.org,2020-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",1134.08,Silver,1 +7203,Janet Kelly,lynnwilson@gmail.com,2023-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",3729.84,Gold,1 +7204,Courtney Smith,charlesbryant@martinez.com,2020-12-12,"{""language"": ""ES"", ""currency"": ""MXN""}",141.28,Bronze,1 +7205,Sarah Noble,stephaniedelacruz@hotmail.com,2022-02-07,"{""language"": ""EN"", ""currency"": ""EUR""}",5138.94,Bronze,0 +7206,Donna Sharp,daviskenneth@yahoo.com,2023-05-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4668.81,Gold,0 +7207,John Lee,elaineraymond@chavez-ramirez.com,2024-10-16,"{""language"": ""DE"", ""currency"": ""CAD""}",1835.84,Silver,1 +7208,Karen Johnson,whitenicholas@chang.net,2022-10-10,"{""language"": ""ES"", ""currency"": ""USD""}",1012.15,Silver,0 +7209,Julie Patrick,kimberlyglenn@hotmail.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""CAD""}",206.38,Silver,0 +7210,Christine Mcfarland,anthonygarrett@smith.com,2021-01-13,"{""language"": ""ES"", ""currency"": ""EUR""}",2375.31,Gold,0 +7211,Sarah Harris,adrianacosta@hotmail.com,2021-05-03,"{""language"": ""FR"", ""currency"": ""EUR""}",4938.2,Bronze,0 +7212,Lindsey Armstrong,hansonjames@yahoo.com,2020-10-20,"{""language"": ""DE"", ""currency"": ""USD""}",3628.73,Gold,0 +7213,Adam Stevenson,tporter@yahoo.com,2024-05-13,"{""language"": ""DE"", ""currency"": ""EUR""}",9832.51,Bronze,1 +7214,Lorraine Potts,freemanmalik@may.com,2024-05-17,"{""language"": ""DE"", ""currency"": ""CAD""}",234.72,Silver,0 +7215,Jeremiah Mitchell,pterrell@deleon.org,2022-08-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1709.93,Gold,1 +7216,Susan Gonzalez DDS,devincook@yahoo.com,2024-09-06,"{""language"": ""IT"", ""currency"": ""EUR""}",8021.76,Bronze,0 +7217,Dana Stark,caldwelljamie@hotmail.com,2022-02-06,"{""language"": ""EN"", ""currency"": ""CAD""}",1475.47,Gold,1 +7218,Jessica Knox,chensley@yahoo.com,2023-05-20,"{""language"": ""EN"", ""currency"": ""MXN""}",5795.09,Silver,1 +7219,Frank Parker,hespinoza@simmons.biz,2023-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",1383.86,Silver,1 +7220,Aimee Hopkins,aestrada@perez.net,2022-06-04,"{""language"": ""IT"", ""currency"": ""GBP""}",9964.91,Gold,0 +7221,Manuel Dixon,jessepearson@thompson-orozco.com,2020-06-18,"{""language"": ""ES"", ""currency"": ""USD""}",1011.59,Gold,1 +7222,Shannon Scott,joehill@gmail.com,2023-04-06,"{""language"": ""ES"", ""currency"": ""USD""}",1916.62,Gold,1 +7223,Nancy Taylor,rebeccasmith@hotmail.com,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",7099.36,Silver,1 +7224,Tammy Lyons,richard47@bennett.net,2021-03-15,"{""language"": ""IT"", ""currency"": ""GBP""}",7283.18,Bronze,1 +7225,Bernard Gallegos,lisaglenn@riggs-carter.com,2022-04-26,"{""language"": ""ES"", ""currency"": ""EUR""}",1068.87,Gold,1 +7226,Jonathan Taylor,joshuarandall@hotmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""MXN""}",2511.81,Gold,1 +7227,Maurice Brock,munozrebecca@taylor.com,2024-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5204.94,Gold,0 +7228,Michael Smith,brendan24@baker.net,2023-01-05,"{""language"": ""IT"", ""currency"": ""GBP""}",5205.27,Bronze,1 +7229,Tammy Warner,kevinkidd@hotmail.com,2024-02-18,"{""language"": ""DE"", ""currency"": ""USD""}",8030.84,Gold,1 +7230,Adrian Pena,joysmith@harmon-williams.org,2021-02-17,"{""language"": ""IT"", ""currency"": ""MXN""}",8305.65,Gold,0 +7231,Savannah Thomas,rebecca21@yahoo.com,2024-03-04,"{""language"": ""ES"", ""currency"": ""MXN""}",4160.79,Bronze,1 +7232,Destiny Perry,qedwards@gmail.com,2020-03-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4829.6,Gold,1 +7233,Charles Simmons,oliviapalmer@gmail.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4023.68,Silver,1 +7234,Heather Berry,zcontreras@gmail.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2646.83,Bronze,0 +7235,David Garcia,mcastillo@hotmail.com,2020-06-30,"{""language"": ""FR"", ""currency"": ""CAD""}",7789.8,Bronze,0 +7236,Daniel Walker,tara93@donaldson.com,2024-02-25,"{""language"": ""FR"", ""currency"": ""USD""}",4019.37,Silver,0 +7237,Richard Stevens,zweeks@lewis-hamilton.biz,2021-01-24,"{""language"": ""ES"", ""currency"": ""USD""}",1768.22,Gold,1 +7238,Andrew Ballard,jason42@gmail.com,2021-02-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8021.34,Silver,0 +7239,Julia Parker,osbornethomas@gmail.com,2022-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",8449.61,Silver,0 +7240,Felicia Espinoza,scott24@richards.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",9248.78,Silver,1 +7241,Sean Mendoza,perezjessica@gmail.com,2022-06-23,"{""language"": ""FR"", ""currency"": ""MXN""}",5541.03,Silver,1 +7242,Jane Perez,ydelacruz@yahoo.com,2024-02-19,"{""language"": ""FR"", ""currency"": ""CAD""}",5891.17,Silver,1 +7243,Bruce Tucker,alvarezjennifer@harris.com,2022-04-09,"{""language"": ""EN"", ""currency"": ""GBP""}",7197.78,Bronze,1 +7244,Mr. James Mckee,steven87@choi.net,2020-12-05,"{""language"": ""IT"", ""currency"": ""CAD""}",4181.91,Gold,0 +7245,Rebecca Galloway,christopher97@hotmail.com,2020-06-26,"{""language"": ""DE"", ""currency"": ""USD""}",3999.85,Silver,1 +7246,Michael Jenkins,yvonnegriffin@hotmail.com,2022-02-04,"{""language"": ""IT"", ""currency"": ""EUR""}",520.66,Silver,1 +7247,Mark May,woodardpaul@brown.biz,2024-03-18,"{""language"": ""ES"", ""currency"": ""USD""}",524.32,Gold,0 +7248,Kathryn Watkins,michael81@yahoo.com,2022-07-25,"{""language"": ""ES"", ""currency"": ""USD""}",1520.69,Bronze,0 +7249,Lonnie Peterson,nsanchez@hotmail.com,2023-01-28,"{""language"": ""DE"", ""currency"": ""EUR""}",9610.38,Bronze,0 +7250,Kevin Acevedo,thomas25@young-cantu.com,2022-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1089.66,Silver,0 +7251,Danielle White,pollardjennifer@king.com,2021-10-05,"{""language"": ""FR"", ""currency"": ""MXN""}",3145.57,Silver,0 +7252,Caleb Sweeney,dianeclark@klein-warren.com,2020-07-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2201.23,Gold,1 +7253,Catherine Robinson,joelmoore@hotmail.com,2024-11-21,"{""language"": ""DE"", ""currency"": ""USD""}",5416.97,Gold,1 +7254,Christina King,jenniferharding@hotmail.com,2020-05-24,"{""language"": ""EN"", ""currency"": ""MXN""}",1171.35,Silver,0 +7255,Angie Rhodes,curtisemma@avila.com,2022-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",8942.96,Gold,1 +7256,Melinda Smith,patrick87@christian-morales.com,2022-11-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1037.52,Silver,1 +7257,Lisa Lawrence,bkrueger@farmer-miller.info,2024-06-19,"{""language"": ""IT"", ""currency"": ""MXN""}",8667.62,Bronze,1 +7258,Travis Harrington,ubooker@hotmail.com,2021-02-04,"{""language"": ""IT"", ""currency"": ""GBP""}",3015.8,Bronze,0 +7259,John Adkins,kristin80@yahoo.com,2023-05-02,"{""language"": ""EN"", ""currency"": ""GBP""}",3511.8,Bronze,0 +7260,John Rosales,kingvalerie@bradford.com,2020-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",6725.26,Silver,1 +7261,David Miller,zking@hernandez-johnson.com,2021-04-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6295.09,Gold,1 +7262,Dr. Stanley Johnson DDS,samuellopez@yahoo.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",3192.24,Bronze,0 +7263,Omar Horton,williamlawrence@mckay-parker.com,2023-07-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3276.63,Bronze,1 +7264,Charles Mitchell,stephen71@gmail.com,2024-06-15,"{""language"": ""EN"", ""currency"": ""GBP""}",5175.61,Gold,0 +7265,Karen Kennedy,linda11@davis-martinez.biz,2021-03-02,"{""language"": ""DE"", ""currency"": ""MXN""}",8161.34,Gold,1 +7266,Erica Buck,jeffersongarrett@carr.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",5370.92,Gold,0 +7267,Sandra West,melinda90@bird.com,2024-01-26,"{""language"": ""FR"", ""currency"": ""GBP""}",7319.07,Silver,1 +7268,Elizabeth Hickman,randy95@meza-johnson.biz,2020-12-04,"{""language"": ""DE"", ""currency"": ""GBP""}",6898.56,Bronze,0 +7269,Michael Campbell,dsimmons@irwin-warren.com,2023-03-24,"{""language"": ""DE"", ""currency"": ""GBP""}",961.8,Silver,0 +7270,Aaron Griffin,hgonzales@cummings-stein.org,2024-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",613.14,Bronze,1 +7271,Daniel Russell,tammyromero@hotmail.com,2023-11-11,"{""language"": ""DE"", ""currency"": ""GBP""}",864.16,Silver,0 +7272,Robert Wagner,erin70@bauer.com,2023-01-28,"{""language"": ""ES"", ""currency"": ""CAD""}",3500.63,Gold,0 +7273,Dr. Johnathan Vega,jorge73@ramirez.org,2020-12-16,"{""language"": ""IT"", ""currency"": ""CAD""}",3945.31,Bronze,1 +7274,Travis Browning,joe77@yahoo.com,2021-05-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5230.89,Gold,1 +7275,Jacob Fitzpatrick,brandon92@sutton-lee.info,2020-02-26,"{""language"": ""DE"", ""currency"": ""CAD""}",1628.97,Silver,0 +7276,Amanda Massey,jeremyrodriguez@manning.com,2024-01-06,"{""language"": ""EN"", ""currency"": ""EUR""}",6040.51,Silver,1 +7277,Lisa Clark,justin48@hotmail.com,2022-11-05,"{""language"": ""EN"", ""currency"": ""GBP""}",8686.17,Bronze,0 +7278,Amanda Conley,iali@bryant-cox.info,2024-12-04,"{""language"": ""IT"", ""currency"": ""GBP""}",4524.55,Silver,1 +7279,Michelle Shepherd,derrickbrown@yahoo.com,2020-05-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8855.23,Gold,1 +7280,Kayla Robinson,jerrymarks@clark.org,2020-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",3239.51,Bronze,1 +7281,Stephanie Davis DVM,daletucker@alvarez.com,2021-11-15,"{""language"": ""DE"", ""currency"": ""MXN""}",2926.08,Gold,0 +7282,Robert Lopez,brendalewis@pearson.info,2023-08-27,"{""language"": ""EN"", ""currency"": ""GBP""}",1323.84,Silver,0 +7283,Nichole Fisher,zdiaz@gmail.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""USD""}",2685.04,Bronze,0 +7284,Carol Bennett,harveyjuan@hotmail.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""EUR""}",2100.62,Gold,0 +7285,Mariah Santos,gravesthomas@gmail.com,2021-04-06,"{""language"": ""DE"", ""currency"": ""EUR""}",4910.13,Bronze,1 +7286,Leah Chapman,charlesmontoya@steele.org,2021-04-12,"{""language"": ""IT"", ""currency"": ""GBP""}",3192.65,Silver,1 +7287,Brett Melendez,sparksrenee@shepard-gross.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",7199.53,Gold,1 +7288,Deborah Rodriguez,silvalori@velasquez-martinez.com,2024-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",2582.74,Silver,1 +7289,Kelly Bell,elizabethroberts@gmail.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""USD""}",2692.62,Gold,1 +7290,Danielle Simon,lisaperez@gmail.com,2021-11-24,"{""language"": ""IT"", ""currency"": ""MXN""}",465.64,Bronze,0 +7291,Audrey Mathews,lewisjackie@hotmail.com,2020-11-02,"{""language"": ""ES"", ""currency"": ""USD""}",65.28,Gold,1 +7292,Lisa Haynes,adam38@yahoo.com,2024-02-21,"{""language"": ""ES"", ""currency"": ""GBP""}",3796.34,Gold,1 +7293,Laura Espinoza,frances66@hotmail.com,2023-03-26,"{""language"": ""ES"", ""currency"": ""MXN""}",1758.64,Gold,1 +7294,Teresa Miller,samantha16@gmail.com,2022-05-16,"{""language"": ""FR"", ""currency"": ""USD""}",1507.9,Bronze,1 +7295,Michelle Hoffman,klee@gmail.com,2022-07-03,"{""language"": ""DE"", ""currency"": ""CAD""}",1732.76,Bronze,0 +7296,Anthony Gibson,susan72@gmail.com,2022-03-09,"{""language"": ""ES"", ""currency"": ""GBP""}",9179.0,Silver,1 +7297,Joanne Murphy,bishopdillon@porter.org,2024-04-09,"{""language"": ""FR"", ""currency"": ""MXN""}",3146.48,Bronze,1 +7298,Daniel Murphy,luke31@yahoo.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""USD""}",4921.16,Silver,1 +7299,Robert Hunter,sheilareilly@price-jones.org,2024-07-04,"{""language"": ""FR"", ""currency"": ""MXN""}",2835.23,Gold,0 +7300,Debra Cox,smithmercedes@wells.com,2022-04-26,"{""language"": ""DE"", ""currency"": ""GBP""}",666.07,Silver,0 +7301,Melanie Fernandez,michael69@yahoo.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""GBP""}",5941.14,Gold,0 +7302,Justin Hayes,ggarcia@hotmail.com,2021-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2817.01,Silver,1 +7303,Amy Steele,kathy11@clay.com,2020-06-26,"{""language"": ""EN"", ""currency"": ""USD""}",7689.77,Bronze,0 +7304,Nathan Bishop,billy80@williams.net,2021-06-22,"{""language"": ""IT"", ""currency"": ""GBP""}",6730.51,Silver,0 +7305,Kristy Campbell,ashleyabbott@hunt.net,2022-04-05,"{""language"": ""FR"", ""currency"": ""CAD""}",2660.18,Gold,0 +7306,Joshua Smith,brianpotter@yahoo.com,2021-09-20,"{""language"": ""DE"", ""currency"": ""CAD""}",6997.07,Bronze,1 +7307,Rachel Edwards,pfigueroa@bowman.org,2024-03-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5824.2,Bronze,0 +7308,Brittany Hansen,alan37@hotmail.com,2021-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",2155.95,Bronze,1 +7309,Christina Allen,boydkatherine@cruz.com,2024-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",9081.5,Silver,0 +7310,Mary Wells,lauren75@gmail.com,2023-12-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3796.86,Gold,0 +7311,Haley Phelps,casealexander@davis.com,2024-08-02,"{""language"": ""IT"", ""currency"": ""MXN""}",4549.93,Silver,1 +7312,Douglas Anderson,alexander74@gonzalez.biz,2024-11-20,"{""language"": ""DE"", ""currency"": ""USD""}",7096.63,Silver,0 +7313,Christina Smith,douglasscott@hicks.com,2024-08-16,"{""language"": ""IT"", ""currency"": ""CAD""}",3032.76,Bronze,0 +7314,Brittney Whitehead,james25@gmail.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""EUR""}",6966.88,Silver,1 +7315,Lee Lin,lwilson@yahoo.com,2021-12-08,"{""language"": ""ES"", ""currency"": ""GBP""}",4243.36,Silver,0 +7316,Kathy Johnson,melissaarnold@olson-sullivan.com,2020-11-16,"{""language"": ""ES"", ""currency"": ""CAD""}",2223.15,Silver,1 +7317,Kayla Pope,owashington@hotmail.com,2023-10-04,"{""language"": ""ES"", ""currency"": ""GBP""}",5762.83,Bronze,0 +7318,Stephanie Evans,steven34@burke-rodriguez.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""CAD""}",5955.78,Gold,0 +7319,Michelle Andersen,theresa38@williams.com,2020-09-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4971.43,Gold,1 +7320,Amy Graham,nicole70@moss-parks.net,2022-08-02,"{""language"": ""EN"", ""currency"": ""GBP""}",752.67,Bronze,1 +7321,Karen Cruz,inavarro@shannon-dawson.info,2022-12-22,"{""language"": ""ES"", ""currency"": ""EUR""}",490.47,Silver,1 +7322,Kylie Walker,sean76@garcia-harris.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""USD""}",4288.31,Gold,1 +7323,Alexa Harper,eavery@robles.com,2020-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",8875.25,Gold,0 +7324,Monica Brown,davidross@orozco.net,2024-07-25,"{""language"": ""IT"", ""currency"": ""GBP""}",4258.92,Bronze,1 +7325,Mrs. Susan Campbell,oweaver@yahoo.com,2023-09-04,"{""language"": ""DE"", ""currency"": ""EUR""}",7187.62,Silver,0 +7326,Angela Hunter,bennettandrea@gmail.com,2022-11-17,"{""language"": ""IT"", ""currency"": ""MXN""}",1464.42,Silver,1 +7327,Michael Anderson,haassusan@yahoo.com,2023-09-18,"{""language"": ""FR"", ""currency"": ""GBP""}",6794.29,Silver,0 +7328,Deborah Morgan,lroman@morris.info,2022-10-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1231.44,Silver,1 +7329,Daniel Bush,susan24@gmail.com,2023-11-09,"{""language"": ""FR"", ""currency"": ""GBP""}",9860.35,Silver,1 +7330,Jessica Tran,campbellrobert@hester-knapp.info,2024-12-07,"{""language"": ""EN"", ""currency"": ""CAD""}",7600.1,Gold,0 +7331,John Mccormick,knightelizabeth@yahoo.com,2020-10-26,"{""language"": ""EN"", ""currency"": ""USD""}",9963.87,Silver,0 +7332,Krystal Moreno,anthonylee@yahoo.com,2020-01-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5676.68,Silver,0 +7333,Erica Brooks,lynchjeffrey@yahoo.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",6468.67,Gold,0 +7334,Christina Brown,rogersvincent@yahoo.com,2021-03-06,"{""language"": ""DE"", ""currency"": ""CAD""}",1672.81,Gold,0 +7335,Michelle Burke,geoffrey19@mueller.com,2022-10-22,"{""language"": ""DE"", ""currency"": ""EUR""}",9229.57,Bronze,0 +7336,Courtney Mcdonald,hcraig@yahoo.com,2021-04-23,"{""language"": ""IT"", ""currency"": ""EUR""}",9415.84,Silver,0 +7337,Timothy Williams,kara33@petty.info,2024-03-19,"{""language"": ""DE"", ""currency"": ""MXN""}",6802.65,Gold,1 +7338,Christopher Miller,kelly82@andrade-campbell.com,2023-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2142.45,Silver,1 +7339,Lisa Carter,kelsey84@hotmail.com,2023-04-15,"{""language"": ""DE"", ""currency"": ""CAD""}",4723.37,Silver,0 +7340,Marie Sandoval,lisarodriguez@hayes.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",8163.69,Silver,1 +7341,Courtney Harrison,sanchezmatthew@compton-benson.com,2022-10-22,"{""language"": ""FR"", ""currency"": ""USD""}",1818.69,Bronze,0 +7342,Nicholas Hall,timothy28@hotmail.com,2024-04-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2561.99,Bronze,0 +7343,Anna Day,orichardson@gmail.com,2023-06-20,"{""language"": ""DE"", ""currency"": ""EUR""}",4963.82,Bronze,0 +7344,Michael Flores,seth88@lynch-george.com,2020-01-04,"{""language"": ""FR"", ""currency"": ""MXN""}",4362.38,Silver,0 +7345,Christopher Leonard,kenneth79@hotmail.com,2022-05-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4277.78,Bronze,0 +7346,Darryl Willis,jessicamorales@yahoo.com,2021-05-12,"{""language"": ""EN"", ""currency"": ""MXN""}",3021.09,Silver,1 +7347,Andrea Davila,thompsonlaura@hotmail.com,2024-10-31,"{""language"": ""FR"", ""currency"": ""EUR""}",7417.88,Bronze,1 +7348,Philip Cortez,crobinson@brooks.com,2021-01-23,"{""language"": ""ES"", ""currency"": ""MXN""}",4184.12,Bronze,0 +7349,James Orozco,brownamy@yahoo.com,2020-02-03,"{""language"": ""DE"", ""currency"": ""EUR""}",2624.91,Gold,1 +7350,Kara Campos,benjaminblackburn@hotmail.com,2024-06-26,"{""language"": ""IT"", ""currency"": ""EUR""}",1405.48,Silver,1 +7351,David Barnett,gwendolyn41@chambers.com,2023-10-05,"{""language"": ""IT"", ""currency"": ""CAD""}",3939.97,Silver,0 +7352,Thomas Jones,clinetodd@gmail.com,2023-07-28,"{""language"": ""DE"", ""currency"": ""MXN""}",805.76,Bronze,0 +7353,Tommy Mccoy,megan51@hotmail.com,2022-11-28,"{""language"": ""EN"", ""currency"": ""EUR""}",3052.07,Gold,0 +7354,Tina Gentry,derek74@gmail.com,2023-04-11,"{""language"": ""FR"", ""currency"": ""MXN""}",4572.73,Bronze,0 +7355,Barbara Buckley,lisaibarra@yahoo.com,2023-09-01,"{""language"": ""DE"", ""currency"": ""EUR""}",3524.17,Gold,1 +7356,Lisa Stokes,ybell@wilson-marshall.org,2024-02-10,"{""language"": ""DE"", ""currency"": ""EUR""}",5903.74,Gold,1 +7357,April Williams,schneiderkelly@thompson.net,2023-03-12,"{""language"": ""EN"", ""currency"": ""EUR""}",6848.75,Gold,0 +7358,Brian Shannon,annwoods@gmail.com,2023-03-28,"{""language"": ""ES"", ""currency"": ""MXN""}",9192.34,Bronze,1 +7359,Kenneth Turner,paul13@parks.com,2023-04-09,"{""language"": ""ES"", ""currency"": ""USD""}",5321.43,Gold,1 +7360,Sharon Benson,torresryan@yahoo.com,2024-09-09,"{""language"": ""DE"", ""currency"": ""MXN""}",9492.94,Gold,1 +7361,Stephen Shelton,timothy29@cruz.com,2020-06-14,"{""language"": ""IT"", ""currency"": ""MXN""}",7534.52,Bronze,0 +7362,Robin Colon,echapman@gmail.com,2022-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",5615.06,Gold,0 +7363,David Garza,danielle99@sullivan.org,2021-11-30,"{""language"": ""FR"", ""currency"": ""USD""}",7797.46,Silver,0 +7364,Lauren Sosa DDS,jason91@peck-jones.net,2023-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",390.52,Bronze,0 +7365,Diamond Torres,daniel91@yahoo.com,2023-05-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4219.41,Silver,1 +7366,Jenna Jackson,william01@smith.com,2024-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1999.44,Bronze,0 +7367,Christina Hardin,kevin56@griffin.info,2020-07-23,"{""language"": ""IT"", ""currency"": ""EUR""}",5056.21,Gold,0 +7368,Jennifer Leach,michaelsarah@yahoo.com,2024-06-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7058.99,Gold,0 +7369,Linda Mccormick,karl98@perez.org,2020-07-01,"{""language"": ""IT"", ""currency"": ""CAD""}",2371.36,Silver,1 +7370,Melanie Whitney,brian63@yahoo.com,2020-01-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7736.13,Gold,0 +7371,Ebony Bishop,ronald44@yang-robinson.org,2023-11-07,"{""language"": ""FR"", ""currency"": ""USD""}",9004.58,Gold,1 +7372,Brandi Shepard,cwilson@horn-manning.info,2023-06-21,"{""language"": ""IT"", ""currency"": ""EUR""}",4370.35,Bronze,1 +7373,John Jones,peterreeves@smith.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""MXN""}",644.15,Bronze,1 +7374,Lauren Duran,ljones@hotmail.com,2023-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",4227.98,Gold,1 +7375,Caitlin Davis,robertsmith@ray.info,2021-03-11,"{""language"": ""IT"", ""currency"": ""GBP""}",1102.14,Gold,0 +7376,Robert Lee,haley86@perez-jones.info,2023-09-06,"{""language"": ""EN"", ""currency"": ""MXN""}",4937.55,Silver,0 +7377,Courtney Johnson,perezmaurice@smith.net,2020-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",4899.35,Gold,0 +7378,Darryl Herring,kellis@hotmail.com,2023-09-19,"{""language"": ""EN"", ""currency"": ""CAD""}",766.99,Bronze,0 +7379,Adam Olson,cunninghamalice@gmail.com,2023-04-21,"{""language"": ""ES"", ""currency"": ""USD""}",656.1,Gold,0 +7380,Richard Tapia,robert80@yahoo.com,2020-03-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2112.88,Gold,1 +7381,Gabriel Baker,frederickpham@deleon.com,2024-11-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6048.64,Gold,1 +7382,Brian Gallegos,tylerhunt@hotmail.com,2020-08-15,"{""language"": ""FR"", ""currency"": ""GBP""}",4801.54,Gold,0 +7383,Tyler Martinez,patricia02@gmail.com,2022-01-05,"{""language"": ""EN"", ""currency"": ""MXN""}",9215.82,Silver,1 +7384,Angela Li,joseph55@gmail.com,2024-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",9133.08,Gold,0 +7385,Jennifer Ibarra,ianderson@gmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""CAD""}",5858.62,Bronze,0 +7386,Donald Garcia,thompsontiffany@cisneros.com,2022-02-25,"{""language"": ""EN"", ""currency"": ""CAD""}",9349.3,Bronze,0 +7387,Heather Burke,davidcarter@yahoo.com,2020-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",5466.38,Silver,0 +7388,Jose Perez,brewerjessica@gmail.com,2023-02-07,"{""language"": ""FR"", ""currency"": ""MXN""}",4063.18,Bronze,1 +7389,Ricardo Merritt,oramos@hotmail.com,2021-01-25,"{""language"": ""FR"", ""currency"": ""EUR""}",8593.11,Gold,0 +7390,Mary Garcia,pyoung@barton-campbell.org,2021-09-21,"{""language"": ""ES"", ""currency"": ""MXN""}",9808.39,Bronze,1 +7391,Elizabeth Myers,perezangel@yahoo.com,2022-01-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6780.35,Bronze,0 +7392,Michael Castro,hnelson@hotmail.com,2022-04-04,"{""language"": ""FR"", ""currency"": ""GBP""}",6909.64,Silver,1 +7393,Thomas Jensen,steventravis@scott.com,2024-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",9459.41,Bronze,0 +7394,Melissa Melendez,wrichardson@miller.com,2023-09-15,"{""language"": ""DE"", ""currency"": ""USD""}",9120.79,Bronze,1 +7395,Jordan Smith,benjaminstanton@woodward.info,2020-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",352.87,Gold,1 +7396,Shawn Vega,zkeller@andrews.com,2024-11-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5378.45,Silver,1 +7397,Todd Martin,thompsonjack@yahoo.com,2021-12-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1497.84,Silver,1 +7398,Hannah Frazier,lmolina@peterson.com,2023-04-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3007.2,Gold,0 +7399,Brenda Crawford,barbaraolsen@howell.info,2022-04-10,"{""language"": ""EN"", ""currency"": ""MXN""}",3344.59,Bronze,0 +7400,Miguel Howell,edwardscody@rodriguez.com,2021-07-01,"{""language"": ""EN"", ""currency"": ""CAD""}",8070.57,Bronze,0 +7401,Christopher Chandler,christian96@oneill.com,2023-06-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6725.42,Gold,1 +7402,Phillip Anderson,pmatthews@wagner-carey.com,2024-02-06,"{""language"": ""ES"", ""currency"": ""MXN""}",3626.88,Bronze,1 +7403,Jared White,lisa38@hotmail.com,2024-10-10,"{""language"": ""DE"", ""currency"": ""MXN""}",9266.99,Gold,0 +7404,Melanie Martin,daniel69@hotmail.com,2020-07-07,"{""language"": ""IT"", ""currency"": ""CAD""}",3574.07,Silver,1 +7405,Ian Wise,youngkayla@gmail.com,2021-09-29,"{""language"": ""DE"", ""currency"": ""GBP""}",7950.97,Gold,0 +7406,Kyle Smith,michaelhill@yahoo.com,2024-02-14,"{""language"": ""DE"", ""currency"": ""EUR""}",3269.37,Bronze,1 +7407,William Stewart,cruzelizabeth@hotmail.com,2023-06-09,"{""language"": ""FR"", ""currency"": ""GBP""}",9504.6,Silver,0 +7408,Julie Castro,andrearamirez@woodward-ayala.com,2024-08-20,"{""language"": ""EN"", ""currency"": ""EUR""}",9125.52,Gold,1 +7409,Heather Richardson,carolynwagner@gmail.com,2022-04-28,"{""language"": ""FR"", ""currency"": ""MXN""}",8467.0,Silver,0 +7410,Elizabeth Middleton,xwelch@yahoo.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",7649.54,Bronze,0 +7411,Taylor Hopkins,hickmanjoshua@hotmail.com,2020-07-04,"{""language"": ""DE"", ""currency"": ""CAD""}",1980.3,Silver,0 +7412,Stephen Meadows,isaiah00@gould-bass.com,2022-10-28,"{""language"": ""DE"", ""currency"": ""USD""}",1274.7,Bronze,1 +7413,Jasmine Owens,mary72@lambert-cooke.info,2023-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7615.85,Silver,0 +7414,Lisa Lopez,collinsashley@rivers.com,2024-02-23,"{""language"": ""DE"", ""currency"": ""CAD""}",1154.4,Gold,0 +7415,Jessica Williams,zacharyserrano@casey-ward.info,2023-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8341.94,Silver,0 +7416,Mark Jones,steven20@yahoo.com,2024-11-26,"{""language"": ""FR"", ""currency"": ""MXN""}",4897.79,Bronze,0 +7417,Jamie Erickson,spatel@washington-alexander.info,2024-05-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1612.5,Gold,0 +7418,Margaret Shannon,jasonevans@brown.com,2023-04-21,"{""language"": ""DE"", ""currency"": ""USD""}",1727.94,Bronze,1 +7419,Chad Martinez,wellskristin@yahoo.com,2020-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4177.39,Gold,0 +7420,Arthur Lucas,rachel66@smith.org,2023-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",3393.8,Silver,1 +7421,Maria Ramirez,barbernathan@gmail.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""EUR""}",3737.79,Gold,1 +7422,Tom Williams,ashley04@liu-clayton.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6122.36,Gold,1 +7423,Kenneth Johnson,nramirez@bradford.com,2020-02-29,"{""language"": ""FR"", ""currency"": ""USD""}",5409.35,Bronze,0 +7424,Lindsay Perez,brownmatthew@hotmail.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""MXN""}",431.15,Gold,0 +7425,Emma Smith,mgarcia@gmail.com,2024-05-15,"{""language"": ""IT"", ""currency"": ""EUR""}",504.38,Silver,0 +7426,Andrew Lopez,tonyweaver@williams.biz,2024-11-11,"{""language"": ""EN"", ""currency"": ""USD""}",6675.58,Bronze,1 +7427,Adam Phelps,crosbystephanie@griffin.com,2023-06-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8316.7,Silver,0 +7428,Jeffrey Cohen,wayne55@hotmail.com,2020-07-12,"{""language"": ""EN"", ""currency"": ""MXN""}",6686.12,Gold,0 +7429,Spencer Rodriguez,matthew38@hotmail.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1215.12,Silver,1 +7430,Pamela Walsh,elizabethpowell@hotmail.com,2021-10-18,"{""language"": ""DE"", ""currency"": ""USD""}",3811.14,Gold,1 +7431,Maria Thomas,andrezuniga@skinner.net,2021-10-17,"{""language"": ""ES"", ""currency"": ""EUR""}",3724.92,Silver,0 +7432,Jennifer Heath MD,kstewart@dawson-mcdonald.com,2023-01-11,"{""language"": ""DE"", ""currency"": ""USD""}",4361.27,Silver,0 +7433,Shawn Werner,davidwebster@willis-davis.biz,2022-02-28,"{""language"": ""ES"", ""currency"": ""MXN""}",8076.69,Silver,0 +7434,Sarah Lopez,joan44@farrell-myers.biz,2023-11-12,"{""language"": ""ES"", ""currency"": ""USD""}",5546.72,Bronze,1 +7435,Tyler Mason,edward85@salinas-ortiz.biz,2024-08-15,"{""language"": ""ES"", ""currency"": ""MXN""}",582.5,Silver,0 +7436,David Simpson,nicholasarmstrong@hotmail.com,2021-11-19,"{""language"": ""ES"", ""currency"": ""CAD""}",514.3,Silver,1 +7437,James Medina,margaretreed@martin-jackson.com,2023-04-18,"{""language"": ""IT"", ""currency"": ""USD""}",430.53,Silver,1 +7438,Carly Martinez,debra18@gmail.com,2021-10-06,"{""language"": ""IT"", ""currency"": ""GBP""}",8383.41,Bronze,1 +7439,Kathleen Brewer,fsullivan@hotmail.com,2022-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2677.95,Silver,0 +7440,Veronica Barnes,jflores@wright.com,2022-04-04,"{""language"": ""DE"", ""currency"": ""MXN""}",939.46,Silver,1 +7441,Kayla Riddle,wowen@greer.net,2024-08-12,"{""language"": ""EN"", ""currency"": ""USD""}",520.41,Gold,0 +7442,Barbara Sandoval,gregorywilliamson@young-anderson.com,2020-11-11,"{""language"": ""ES"", ""currency"": ""EUR""}",6336.09,Bronze,1 +7443,Tonya Herring,tammy72@yahoo.com,2023-08-28,"{""language"": ""EN"", ""currency"": ""EUR""}",2995.32,Silver,0 +7444,Tammy Johnson,jordancourtney@yahoo.com,2021-02-16,"{""language"": ""FR"", ""currency"": ""EUR""}",3477.52,Gold,0 +7445,Kenneth Jones,bernard02@hotmail.com,2024-10-22,"{""language"": ""DE"", ""currency"": ""USD""}",4520.07,Gold,1 +7446,Ronald Bauer,danamccarthy@acosta.com,2022-12-04,"{""language"": ""ES"", ""currency"": ""GBP""}",7131.22,Bronze,1 +7447,Chad Robinson III,bjones@harris-rivera.com,2023-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",3080.74,Silver,0 +7448,Nicholas Garcia,ericacooper@gmail.com,2023-12-09,"{""language"": ""ES"", ""currency"": ""USD""}",7086.16,Bronze,1 +7449,Jodi Mcneil,kwoodard@yahoo.com,2020-10-24,"{""language"": ""EN"", ""currency"": ""USD""}",7830.12,Silver,1 +7450,Michael Richardson,sandra39@gmail.com,2021-08-24,"{""language"": ""DE"", ""currency"": ""GBP""}",6749.62,Gold,0 +7451,Jose Campbell,brianjohnson@carson.com,2021-01-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5013.29,Gold,0 +7452,Steven Peters,ijimenez@smith.org,2024-04-04,"{""language"": ""IT"", ""currency"": ""EUR""}",2205.28,Bronze,1 +7453,Carl Hogan,robert59@brown.biz,2021-09-29,"{""language"": ""IT"", ""currency"": ""USD""}",3436.35,Silver,1 +7454,Andrew Garcia,jayjohnson@moore-ayers.biz,2021-10-10,"{""language"": ""ES"", ""currency"": ""CAD""}",6295.05,Bronze,0 +7455,Mr. Matthew Cabrera,jeremy02@yahoo.com,2023-02-15,"{""language"": ""IT"", ""currency"": ""USD""}",7924.68,Gold,0 +7456,Laura Mckinney,lawrencejessica@hotmail.com,2021-10-10,"{""language"": ""IT"", ""currency"": ""GBP""}",3236.65,Silver,0 +7457,Sara Anderson,mchavez@tran.com,2023-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",7521.86,Silver,1 +7458,Jessica Rodriguez,plucero@hotmail.com,2022-08-19,"{""language"": ""IT"", ""currency"": ""MXN""}",7977.91,Gold,1 +7459,Troy Baxter,kgraves@hurst.com,2023-03-27,"{""language"": ""DE"", ""currency"": ""MXN""}",2736.84,Silver,0 +7460,Eduardo Adams,brandygomez@barrera.org,2022-10-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6340.03,Gold,0 +7461,Leslie Anderson,matthewgarcia@phillips.com,2021-05-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9824.58,Silver,1 +7462,Brittney Fischer,rubiostephanie@harris-johnson.com,2020-11-26,"{""language"": ""ES"", ""currency"": ""CAD""}",1670.34,Silver,1 +7463,Erica Smith,fryegerald@yahoo.com,2023-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",7224.74,Silver,1 +7464,Joseph Moody,bnelson@yahoo.com,2020-04-07,"{""language"": ""DE"", ""currency"": ""USD""}",62.6,Bronze,1 +7465,Larry Johnson,dominguezrebecca@herrera.com,2023-06-03,"{""language"": ""IT"", ""currency"": ""USD""}",770.33,Bronze,0 +7466,Dylan Cook,wlucas@yahoo.com,2023-10-15,"{""language"": ""EN"", ""currency"": ""USD""}",1831.26,Silver,0 +7467,Erica Scott,debra21@gmail.com,2022-04-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7345.5,Silver,1 +7468,Matthew Reynolds,brandonparker@hotmail.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""GBP""}",1385.72,Bronze,1 +7469,Michelle Smith,fflores@gmail.com,2024-11-05,"{""language"": ""ES"", ""currency"": ""EUR""}",9055.42,Gold,0 +7470,Julia Forbes,holly42@hotmail.com,2021-07-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2426.07,Silver,1 +7471,Steven Zimmerman,collinslori@lane.net,2023-09-10,"{""language"": ""ES"", ""currency"": ""GBP""}",2485.22,Silver,0 +7472,Meghan Romero,jacksonbrad@yahoo.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""CAD""}",3135.11,Silver,1 +7473,Marcus Marquez,butlerjessica@fuller.com,2020-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",7136.93,Bronze,0 +7474,Abigail Matthews,debra43@peterson.com,2022-09-15,"{""language"": ""ES"", ""currency"": ""USD""}",8649.77,Gold,0 +7475,Nicholas Smith,matthewgardner@brown.com,2023-09-11,"{""language"": ""EN"", ""currency"": ""CAD""}",2022.32,Gold,1 +7476,Erika Green,jameswilliams@gmail.com,2023-10-14,"{""language"": ""IT"", ""currency"": ""USD""}",549.78,Bronze,0 +7477,Sara Browning,evansbrian@hotmail.com,2021-01-19,"{""language"": ""FR"", ""currency"": ""GBP""}",1479.32,Bronze,1 +7478,Ryan Fox,glopez@gmail.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""EUR""}",4094.09,Gold,0 +7479,Brent Williams,gregory64@bruce.org,2024-09-28,"{""language"": ""EN"", ""currency"": ""USD""}",6364.62,Gold,1 +7480,Ryan Brooks,vpittman@hotmail.com,2020-01-01,"{""language"": ""IT"", ""currency"": ""CAD""}",7075.97,Bronze,1 +7481,Jennifer Bryant,gonzalezjohn@hotmail.com,2021-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",1179.48,Bronze,0 +7482,Jenny Mitchell,ashlee33@jones-walker.com,2020-11-16,"{""language"": ""FR"", ""currency"": ""GBP""}",464.19,Bronze,1 +7483,Natalie Jones,pfisher@smith.com,2024-07-22,"{""language"": ""IT"", ""currency"": ""CAD""}",4751.75,Silver,1 +7484,Barbara Spencer,amanda12@turner.com,2021-09-06,"{""language"": ""IT"", ""currency"": ""USD""}",9355.6,Gold,1 +7485,Keith Newton,thompsonshannon@williams.com,2023-12-27,"{""language"": ""IT"", ""currency"": ""CAD""}",5606.23,Bronze,1 +7486,Mr. Karl Fowler,patrick35@hotmail.com,2022-06-19,"{""language"": ""DE"", ""currency"": ""USD""}",5632.58,Bronze,0 +7487,Louis Ferguson,victoriaparks@gmail.com,2020-10-06,"{""language"": ""ES"", ""currency"": ""GBP""}",9102.78,Bronze,0 +7488,Melinda Simmons,ngraham@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3799.81,Bronze,1 +7489,Morgan Greer,brian84@yahoo.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""MXN""}",1987.82,Bronze,1 +7490,Lucas Benson,stephanie86@hotmail.com,2022-09-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4030.33,Silver,1 +7491,Jeremiah Hunter,ronaldjohnson@miller.com,2023-05-23,"{""language"": ""FR"", ""currency"": ""CAD""}",8897.89,Gold,1 +7492,Chelsea Mason,wendyhuff@york-thomas.info,2023-05-24,"{""language"": ""DE"", ""currency"": ""CAD""}",1523.43,Gold,0 +7493,Ryan Perez,thomasmoore@cordova.biz,2020-11-16,"{""language"": ""EN"", ""currency"": ""MXN""}",8245.23,Silver,1 +7494,Jacob Aguilar,curtisstephen@johnson-booker.com,2021-11-20,"{""language"": ""EN"", ""currency"": ""CAD""}",1605.77,Bronze,1 +7495,Brandon Dixon,sarah95@yahoo.com,2020-02-27,"{""language"": ""EN"", ""currency"": ""EUR""}",6268.39,Bronze,0 +7496,Brittany Floyd,hestergina@hotmail.com,2024-06-17,"{""language"": ""IT"", ""currency"": ""EUR""}",7116.67,Silver,1 +7497,David Johnson Jr.,xmorton@bishop.com,2023-04-14,"{""language"": ""FR"", ""currency"": ""MXN""}",7518.67,Bronze,0 +7498,Adam Buchanan,nicholas28@anderson.net,2021-03-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7769.06,Gold,1 +7499,Ryan Anderson,mestrada@lewis-rodriguez.info,2022-03-19,"{""language"": ""FR"", ""currency"": ""CAD""}",6631.68,Bronze,0 +7500,Karen Davies,zimmermannancy@duran.com,2023-01-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7939.39,Silver,0 +7501,Chelsea Powell,annatyler@foster.com,2020-10-04,"{""language"": ""FR"", ""currency"": ""EUR""}",8023.16,Bronze,0 +7502,Shannon Hansen,ifarley@williams.com,2024-01-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2741.32,Gold,0 +7503,Christine Brown DVM,samantha26@yahoo.com,2022-09-10,"{""language"": ""IT"", ""currency"": ""CAD""}",4705.4,Gold,0 +7504,Christopher Delacruz,mitchell03@torres-pearson.com,2020-09-14,"{""language"": ""IT"", ""currency"": ""MXN""}",546.13,Bronze,0 +7505,Barbara Zhang,shepardrandy@bowen-stuart.com,2020-01-21,"{""language"": ""IT"", ""currency"": ""USD""}",8247.26,Bronze,0 +7506,John Peterson,andrewroberts@merritt-pena.com,2023-04-20,"{""language"": ""ES"", ""currency"": ""CAD""}",8474.1,Silver,1 +7507,Leslie Hill,swhite@gmail.com,2020-06-05,"{""language"": ""DE"", ""currency"": ""GBP""}",1593.51,Silver,0 +7508,Rachael Turner,newtontraci@castaneda.com,2023-03-11,"{""language"": ""FR"", ""currency"": ""MXN""}",5630.68,Bronze,1 +7509,James Johnson,elizabethgallegos@yahoo.com,2021-10-05,"{""language"": ""DE"", ""currency"": ""GBP""}",2526.15,Bronze,1 +7510,Scott Jenkins,stanleymatthew@davis.com,2023-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",8472.7,Silver,1 +7511,Anthony Trevino,erin18@thompson.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",7753.14,Bronze,0 +7512,Tracy Gomez,lauren58@hull.net,2022-09-10,"{""language"": ""IT"", ""currency"": ""MXN""}",9230.47,Gold,0 +7513,John Warren,katherinelowe@vazquez.com,2020-12-08,"{""language"": ""DE"", ""currency"": ""MXN""}",3593.12,Silver,1 +7514,Kimberly Randolph,kathryn78@yahoo.com,2023-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",953.32,Bronze,1 +7515,Peter Martin,carrie87@yahoo.com,2024-10-12,"{""language"": ""FR"", ""currency"": ""CAD""}",1035.16,Silver,1 +7516,Carla Fleming,robertsandrew@hotmail.com,2020-03-20,"{""language"": ""IT"", ""currency"": ""CAD""}",754.16,Silver,1 +7517,Kendra Miller,sfigueroa@thompson.org,2020-05-01,"{""language"": ""DE"", ""currency"": ""GBP""}",4180.75,Silver,0 +7518,Jillian Mcdonald,suzannemann@gmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",7116.62,Bronze,1 +7519,Steven Williams,russellandrew@hotmail.com,2022-11-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3342.78,Silver,1 +7520,Melanie Robinson,njacobs@gmail.com,2021-10-26,"{""language"": ""EN"", ""currency"": ""CAD""}",3391.18,Silver,1 +7521,Mark Brooks,halejennifer@campbell-mitchell.com,2024-08-01,"{""language"": ""ES"", ""currency"": ""EUR""}",6122.87,Gold,1 +7522,Andrew Stein,samuel67@martin.com,2021-09-10,"{""language"": ""EN"", ""currency"": ""EUR""}",2802.3,Gold,0 +7523,Matthew Rodriguez,joseph58@hotmail.com,2022-12-17,"{""language"": ""FR"", ""currency"": ""MXN""}",3334.53,Silver,0 +7524,Robert Ortiz,danielferguson@joyce.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4440.24,Gold,0 +7525,Thomas Irwin,zamoramarcus@hale-fields.biz,2023-03-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5409.59,Silver,0 +7526,Lauren Hanson,floresnancy@yahoo.com,2021-10-19,"{""language"": ""FR"", ""currency"": ""USD""}",8494.07,Gold,1 +7527,John Ball,greenedawn@avery-le.org,2021-02-16,"{""language"": ""IT"", ""currency"": ""USD""}",7107.02,Gold,1 +7528,Jennifer Nguyen,maldonadokatie@gmail.com,2021-05-04,"{""language"": ""EN"", ""currency"": ""EUR""}",8576.67,Bronze,0 +7529,Rebecca Reed,dana52@hotmail.com,2023-12-05,"{""language"": ""FR"", ""currency"": ""GBP""}",9683.73,Bronze,1 +7530,Todd Kent,emilykhan@cooper.com,2023-11-04,"{""language"": ""IT"", ""currency"": ""MXN""}",891.03,Silver,1 +7531,Mathew Wood,susanbaker@hotmail.com,2023-04-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6984.0,Bronze,0 +7532,Julie Mejia,muelleramber@yahoo.com,2021-12-20,"{""language"": ""ES"", ""currency"": ""USD""}",9020.61,Gold,1 +7533,Susan Martin,rachel81@rodriguez.net,2021-04-06,"{""language"": ""EN"", ""currency"": ""CAD""}",3593.87,Gold,0 +7534,Michelle Thomas,melindascott@yahoo.com,2023-01-05,"{""language"": ""DE"", ""currency"": ""CAD""}",8061.01,Gold,0 +7535,Jessica Flores,xhanson@yahoo.com,2022-09-27,"{""language"": ""FR"", ""currency"": ""CAD""}",1558.69,Bronze,1 +7536,Erin Schmidt,john41@gmail.com,2020-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",7989.0,Bronze,1 +7537,Mary Harmon,williamsdawn@mann.com,2022-07-16,"{""language"": ""DE"", ""currency"": ""CAD""}",910.4,Bronze,0 +7538,Mark Silva,lori96@yahoo.com,2021-05-19,"{""language"": ""FR"", ""currency"": ""USD""}",9964.67,Bronze,0 +7539,Jonathan Berry,williamdavis@hernandez.com,2020-09-30,"{""language"": ""DE"", ""currency"": ""MXN""}",9079.4,Gold,1 +7540,Elizabeth Delacruz,bsweeney@yahoo.com,2021-10-02,"{""language"": ""IT"", ""currency"": ""CAD""}",6518.34,Silver,0 +7541,David Miller,scottrodney@hotmail.com,2020-01-19,"{""language"": ""EN"", ""currency"": ""EUR""}",542.44,Silver,1 +7542,Carl Ford,jill32@allen.com,2024-12-05,"{""language"": ""EN"", ""currency"": ""EUR""}",3669.04,Silver,0 +7543,Travis Brown,eobrien@ashley.com,2022-09-19,"{""language"": ""IT"", ""currency"": ""USD""}",3418.23,Silver,0 +7544,Megan Murphy,ccampbell@weaver.net,2022-09-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3070.68,Bronze,0 +7545,Laura Thornton,johnsonlaurie@gmail.com,2022-06-28,"{""language"": ""EN"", ""currency"": ""GBP""}",6633.62,Gold,0 +7546,Monique Gonzalez,pstanley@yahoo.com,2020-04-09,"{""language"": ""FR"", ""currency"": ""USD""}",4555.35,Silver,0 +7547,Edward Patton,vincent62@washington.com,2020-05-07,"{""language"": ""ES"", ""currency"": ""CAD""}",4374.02,Gold,1 +7548,Tiffany Little,davidpotter@combs.biz,2020-10-16,"{""language"": ""IT"", ""currency"": ""EUR""}",259.1,Silver,0 +7549,Robert Smith,duncanmichael@hotmail.com,2022-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",7392.29,Gold,1 +7550,Jessica Anderson,brittany19@gmail.com,2024-02-29,"{""language"": ""DE"", ""currency"": ""EUR""}",1102.58,Gold,1 +7551,Adam Phillips,hughesdavid@gregory-herman.com,2021-02-09,"{""language"": ""IT"", ""currency"": ""MXN""}",5333.83,Silver,0 +7552,Melissa Gibson,rcarroll@yahoo.com,2024-06-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5213.62,Bronze,1 +7553,Dylan Martinez,graydana@chapman-anderson.net,2020-02-20,"{""language"": ""IT"", ""currency"": ""USD""}",6358.8,Bronze,1 +7554,Gerald Ortega,brookemorales@morgan.com,2021-06-12,"{""language"": ""IT"", ""currency"": ""MXN""}",1382.49,Silver,0 +7555,Erik Griffith,jgraham@yahoo.com,2021-11-28,"{""language"": ""EN"", ""currency"": ""MXN""}",4253.87,Bronze,0 +7556,Valerie Andrews,jessicayoung@fuentes-taylor.com,2020-02-11,"{""language"": ""EN"", ""currency"": ""GBP""}",2297.23,Bronze,1 +7557,Sheena Zhang,jacqueline51@benjamin.com,2021-04-15,"{""language"": ""ES"", ""currency"": ""USD""}",3032.53,Bronze,1 +7558,Miranda Pruitt,allenlane@schneider.com,2021-06-06,"{""language"": ""IT"", ""currency"": ""EUR""}",3792.28,Gold,1 +7559,Julie Levine,sharon90@hotmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""USD""}",9994.35,Bronze,1 +7560,Cheryl Vargas,kelly61@hotmail.com,2022-12-19,"{""language"": ""DE"", ""currency"": ""EUR""}",1239.05,Gold,0 +7561,Chelsea Aguilar,milleredward@hotmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""GBP""}",2867.38,Gold,1 +7562,Aaron Cooper,fishermelissa@taylor.com,2020-02-07,"{""language"": ""EN"", ""currency"": ""MXN""}",1883.15,Gold,0 +7563,Brittany Black,nataliepennington@pena.com,2021-02-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8181.3,Bronze,0 +7564,David Hudson,uayala@ryan.com,2020-03-16,"{""language"": ""IT"", ""currency"": ""GBP""}",8864.67,Bronze,0 +7565,Debra Hensley,michael36@sanchez.com,2021-02-13,"{""language"": ""DE"", ""currency"": ""MXN""}",1689.08,Bronze,0 +7566,Emily Mcdonald,valeriedrake@adams.com,2020-01-11,"{""language"": ""FR"", ""currency"": ""EUR""}",7450.81,Bronze,0 +7567,Clinton Bennett,troy97@gmail.com,2024-02-20,"{""language"": ""EN"", ""currency"": ""GBP""}",6242.09,Bronze,0 +7568,Wesley Perkins,jaclyn82@chandler.com,2023-07-05,"{""language"": ""EN"", ""currency"": ""EUR""}",5926.55,Gold,1 +7569,Randy Archer,christinadurham@gmail.com,2021-04-02,"{""language"": ""DE"", ""currency"": ""EUR""}",5593.85,Gold,1 +7570,Ashley Davis,qmiranda@yahoo.com,2022-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",852.98,Silver,1 +7571,Melanie Miller,steven32@buckley-rodriguez.com,2021-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4205.77,Silver,0 +7572,Barry Herman,bellsarah@brown.com,2023-05-24,"{""language"": ""IT"", ""currency"": ""EUR""}",5526.49,Silver,1 +7573,Jose Hughes,brandy43@yahoo.com,2021-02-18,"{""language"": ""EN"", ""currency"": ""MXN""}",5865.88,Bronze,1 +7574,Jessica Juarez,michaeloneal@valentine.com,2022-01-01,"{""language"": ""DE"", ""currency"": ""EUR""}",1097.33,Silver,1 +7575,Karen Davis,stevenmarquez@smith.com,2023-09-13,"{""language"": ""ES"", ""currency"": ""MXN""}",8783.8,Bronze,1 +7576,Edward Dalton,jamesperez@yahoo.com,2020-07-17,"{""language"": ""DE"", ""currency"": ""MXN""}",2066.29,Silver,0 +7577,Lori Edwards,rreynolds@hotmail.com,2024-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",1661.45,Gold,1 +7578,Nicole French,rhill@cole-mays.biz,2024-06-29,"{""language"": ""FR"", ""currency"": ""EUR""}",2524.42,Bronze,1 +7579,Melinda Sanchez,kristinramirez@yahoo.com,2021-02-07,"{""language"": ""ES"", ""currency"": ""USD""}",1772.35,Bronze,0 +7580,Matthew Garcia,robertstracy@gmail.com,2023-08-31,"{""language"": ""FR"", ""currency"": ""GBP""}",7361.87,Gold,1 +7581,Hannah Gonzalez,ygross@yahoo.com,2023-06-11,"{""language"": ""FR"", ""currency"": ""GBP""}",4774.61,Gold,1 +7582,Mr. Randy Morgan,erikareynolds@yahoo.com,2021-09-16,"{""language"": ""EN"", ""currency"": ""EUR""}",1259.34,Silver,1 +7583,Daisy Riley,adamallen@yahoo.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",8621.47,Gold,1 +7584,William Johnson MD,amanda12@gmail.com,2022-12-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5382.17,Bronze,0 +7585,Jennifer Montoya,stephanielopez@green.com,2024-07-28,"{""language"": ""FR"", ""currency"": ""GBP""}",5892.44,Silver,1 +7586,Anthony Vega,emilymartinez@gmail.com,2021-09-16,"{""language"": ""ES"", ""currency"": ""USD""}",840.97,Bronze,1 +7587,Emily Wilson,tanner84@moore-marshall.biz,2020-08-26,"{""language"": ""ES"", ""currency"": ""GBP""}",3928.24,Gold,1 +7588,Kenneth Reeves,jesusmitchell@yahoo.com,2021-09-04,"{""language"": ""DE"", ""currency"": ""CAD""}",9426.72,Silver,0 +7589,Shannon Gamble,htapia@gmail.com,2022-05-31,"{""language"": ""DE"", ""currency"": ""MXN""}",2824.27,Silver,1 +7590,James Grant,jmaldonado@gmail.com,2022-07-27,"{""language"": ""EN"", ""currency"": ""MXN""}",5949.86,Gold,1 +7591,Shawn Johnson,tonibishop@sellers-smith.com,2022-01-25,"{""language"": ""DE"", ""currency"": ""USD""}",195.09,Gold,1 +7592,Brendan Nelson,thomastorres@yahoo.com,2021-10-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5721.95,Gold,1 +7593,Dr. Mary White,william21@davis-mcguire.org,2020-01-29,"{""language"": ""ES"", ""currency"": ""EUR""}",1145.35,Bronze,1 +7594,Reginald Franklin,monica00@yahoo.com,2022-03-05,"{""language"": ""DE"", ""currency"": ""USD""}",5234.25,Gold,0 +7595,Michelle Johnson,kfuller@monroe-hernandez.com,2023-03-10,"{""language"": ""IT"", ""currency"": ""EUR""}",3329.56,Bronze,0 +7596,Alex Howard,dguzman@hotmail.com,2020-11-14,"{""language"": ""IT"", ""currency"": ""CAD""}",7033.9,Bronze,0 +7597,Ronnie Barber,jennifer39@hotmail.com,2022-08-05,"{""language"": ""IT"", ""currency"": ""GBP""}",8461.8,Gold,1 +7598,Stephanie Mcclure,stevenharris@hotmail.com,2022-07-04,"{""language"": ""EN"", ""currency"": ""MXN""}",1567.39,Silver,1 +7599,Joy Douglas,alicia65@jones.info,2020-09-17,"{""language"": ""FR"", ""currency"": ""GBP""}",4882.83,Bronze,1 +7600,Michael Griffin,james61@ross.info,2024-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",4119.36,Silver,1 +7601,Valerie Barrett,veronicahernandez@scott-hopkins.com,2022-05-19,"{""language"": ""EN"", ""currency"": ""MXN""}",3015.95,Gold,1 +7602,Elijah Barnes,newtonandrew@hotmail.com,2021-08-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9244.53,Gold,1 +7603,Zachary Valenzuela,qhatfield@gmail.com,2020-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",9722.6,Gold,1 +7604,Carlos Gibson,robinlivingston@jacobs.net,2023-05-10,"{""language"": ""EN"", ""currency"": ""CAD""}",1839.68,Bronze,1 +7605,Roberto Carlson,clarkreginald@gmail.com,2024-08-07,"{""language"": ""FR"", ""currency"": ""USD""}",8360.47,Bronze,1 +7606,Stephanie Bush,matthew22@adams.info,2020-05-05,"{""language"": ""ES"", ""currency"": ""USD""}",8453.05,Bronze,0 +7607,William Moore,alanjones@becker.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",1654.71,Silver,0 +7608,Derek Green,stevenlee@hamilton-cox.biz,2022-03-16,"{""language"": ""DE"", ""currency"": ""USD""}",693.24,Bronze,0 +7609,Peggy White,deannarandolph@gmail.com,2024-03-29,"{""language"": ""FR"", ""currency"": ""EUR""}",8102.42,Gold,0 +7610,Katelyn Hudson,james74@gmail.com,2022-08-08,"{""language"": ""IT"", ""currency"": ""MXN""}",7694.8,Bronze,1 +7611,Bradley Navarro,williamfrost@alvarado.org,2024-11-19,"{""language"": ""EN"", ""currency"": ""USD""}",4377.97,Gold,0 +7612,Alexander Donovan,alisha67@yahoo.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""USD""}",6939.89,Silver,1 +7613,Nicholas Mckenzie,ogomez@hotmail.com,2022-11-10,"{""language"": ""IT"", ""currency"": ""USD""}",4980.04,Bronze,0 +7614,Sarah Johnson,pdunn@hotmail.com,2021-12-28,"{""language"": ""ES"", ""currency"": ""USD""}",6777.68,Bronze,1 +7615,Antonio Anderson,ipineda@hotmail.com,2024-11-25,"{""language"": ""IT"", ""currency"": ""USD""}",1251.36,Silver,0 +7616,John Miranda,janetpennington@harvey-hobbs.com,2023-12-16,"{""language"": ""IT"", ""currency"": ""USD""}",4761.75,Gold,1 +7617,Rachel Becker,xberg@clark.info,2024-08-30,"{""language"": ""ES"", ""currency"": ""MXN""}",2447.61,Bronze,0 +7618,Ryan Webster,theodoregonzalez@smith.com,2021-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5482.38,Silver,1 +7619,Hunter Peterson,albertholmes@reeves.info,2022-02-28,"{""language"": ""FR"", ""currency"": ""USD""}",9952.58,Silver,1 +7620,Diana Delacruz,aguilarpatrick@harrell.info,2020-11-25,"{""language"": ""DE"", ""currency"": ""USD""}",7789.25,Bronze,1 +7621,Stephen Mueller,lphillips@kidd-bell.com,2022-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2778.58,Gold,1 +7622,Edward Davenport,tony92@yahoo.com,2023-10-08,"{""language"": ""FR"", ""currency"": ""EUR""}",1582.35,Silver,1 +7623,Alexis Butler,john51@hotmail.com,2024-10-27,"{""language"": ""EN"", ""currency"": ""USD""}",7580.58,Bronze,1 +7624,Miguel Aguilar,nsantiago@mcclain.com,2021-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",8459.08,Gold,1 +7625,Richard Eaton,aguilarjames@hotmail.com,2020-07-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5654.32,Silver,0 +7626,Meghan Rose,scott59@gmail.com,2024-08-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9798.41,Bronze,1 +7627,Lindsey Watkins,zlopez@yahoo.com,2021-01-27,"{""language"": ""DE"", ""currency"": ""CAD""}",8054.93,Bronze,1 +7628,Denise Campbell,atkinssheryl@gmail.com,2020-06-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5220.63,Silver,0 +7629,Melody Johnson,zcollins@gmail.com,2020-03-05,"{""language"": ""ES"", ""currency"": ""GBP""}",3838.1,Gold,0 +7630,Penny Thompson,avilajoanne@holland.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""MXN""}",5224.48,Silver,1 +7631,Richard Daniel,caitlinheath@yahoo.com,2020-10-10,"{""language"": ""IT"", ""currency"": ""USD""}",4015.39,Silver,1 +7632,Jake Cruz,jsmith@gmail.com,2023-03-10,"{""language"": ""ES"", ""currency"": ""CAD""}",1961.33,Gold,0 +7633,Martin Black,qalexander@gmail.com,2022-11-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5042.16,Bronze,1 +7634,William Velazquez,gonzalezsue@yahoo.com,2024-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",4094.38,Bronze,0 +7635,Dennis Kramer,hodgestaylor@hotmail.com,2023-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",8924.78,Gold,0 +7636,Stephanie West,cclark@norman-wallace.net,2023-11-05,"{""language"": ""FR"", ""currency"": ""USD""}",8123.83,Silver,1 +7637,Susan Barton,sarahsosa@johnson.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",2974.73,Gold,0 +7638,Rodney King,jason23@hotmail.com,2020-01-24,"{""language"": ""EN"", ""currency"": ""MXN""}",9911.01,Silver,0 +7639,Bradley Davis,kimberlymartin@wheeler.info,2023-01-21,"{""language"": ""ES"", ""currency"": ""MXN""}",1347.37,Silver,0 +7640,Stephanie Young MD,ashley75@hotmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""EUR""}",702.11,Gold,1 +7641,Clayton Howe,belldenise@miller.com,2022-02-13,"{""language"": ""EN"", ""currency"": ""USD""}",9972.17,Silver,0 +7642,Lisa Rhodes,dorr@gmail.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""EUR""}",4003.13,Bronze,1 +7643,Karen Watson,lauren91@aguirre.org,2022-11-04,"{""language"": ""DE"", ""currency"": ""CAD""}",9650.59,Bronze,1 +7644,Randy Anderson,wilkinsonryan@gmail.com,2022-03-13,"{""language"": ""EN"", ""currency"": ""MXN""}",3393.5,Silver,1 +7645,James Oliver,jimmymartinez@kelley.com,2021-04-12,"{""language"": ""FR"", ""currency"": ""CAD""}",3183.87,Bronze,1 +7646,Alexis Butler,lindseymeza@gmail.com,2021-12-06,"{""language"": ""ES"", ""currency"": ""EUR""}",8480.79,Silver,1 +7647,Willie Ballard,gmcgee@gmail.com,2022-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",6701.88,Bronze,1 +7648,Jonathan Johnson,christophergilmore@yahoo.com,2021-10-27,"{""language"": ""DE"", ""currency"": ""CAD""}",7129.59,Gold,1 +7649,Jason Watkins,timothy02@floyd-nunez.net,2020-02-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8649.73,Bronze,0 +7650,Barbara Smith,zachary13@perez-bush.biz,2021-11-09,"{""language"": ""EN"", ""currency"": ""MXN""}",6076.05,Bronze,1 +7651,Cody Horton,pattyjohnson@hotmail.com,2022-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",9038.03,Silver,0 +7652,Natasha Bennett,ywise@yahoo.com,2022-09-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2278.53,Silver,0 +7653,Susan Ramos,taylorodonnell@adams.com,2020-09-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2971.78,Bronze,1 +7654,Olivia Parker,qrivera@hotmail.com,2020-09-21,"{""language"": ""ES"", ""currency"": ""USD""}",6872.86,Silver,1 +7655,Martha Cain,dbarajas@smith.com,2024-01-07,"{""language"": ""IT"", ""currency"": ""USD""}",6852.47,Bronze,0 +7656,Alexander Mcmahon,bridgesgilbert@yahoo.com,2021-01-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8466.91,Silver,1 +7657,Matthew Smith,pamela78@mata-frazier.com,2022-08-12,"{""language"": ""IT"", ""currency"": ""EUR""}",1357.11,Bronze,0 +7658,Robert Williams,derek56@gmail.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",1325.05,Silver,1 +7659,Joanna Harris,carl26@hicks.org,2020-12-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1260.0,Gold,0 +7660,Michael Rangel,christinalawrence@sheppard.com,2023-06-05,"{""language"": ""FR"", ""currency"": ""USD""}",5160.5,Gold,0 +7661,Terri Palmer,aliemily@hotmail.com,2021-01-13,"{""language"": ""IT"", ""currency"": ""GBP""}",6345.47,Silver,0 +7662,Tracy Russell,brownfrank@gmail.com,2021-01-29,"{""language"": ""IT"", ""currency"": ""EUR""}",8910.25,Bronze,1 +7663,Brittney Bauer,mistyrodriguez@gmail.com,2021-09-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7303.8,Silver,1 +7664,Ronald Barker,kenneth89@gmail.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9854.27,Gold,1 +7665,Janet Martin,dpatterson@kline.com,2022-02-22,"{""language"": ""DE"", ""currency"": ""USD""}",7210.77,Bronze,0 +7666,Amanda Garcia,alexa47@gmail.com,2021-01-22,"{""language"": ""EN"", ""currency"": ""EUR""}",1866.39,Bronze,1 +7667,David Kelley,derekking@gmail.com,2022-11-10,"{""language"": ""IT"", ""currency"": ""EUR""}",8611.6,Bronze,1 +7668,Michael Carlson,grahamevan@cummings.com,2021-01-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7120.79,Bronze,1 +7669,Mr. Jose Miller,fwilkerson@garcia.org,2023-07-08,"{""language"": ""DE"", ""currency"": ""GBP""}",5193.29,Silver,1 +7670,Donna Williams PhD,warnerstacey@miranda.org,2022-10-24,"{""language"": ""EN"", ""currency"": ""EUR""}",6621.54,Gold,1 +7671,Alan Lopez,patrick05@gmail.com,2022-08-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3271.98,Silver,0 +7672,Theresa Cooley,samantha03@tapia.com,2024-08-24,"{""language"": ""ES"", ""currency"": ""USD""}",1119.41,Bronze,0 +7673,Krista Turner,daniellehammond@hotmail.com,2020-03-14,"{""language"": ""ES"", ""currency"": ""USD""}",2773.6,Gold,1 +7674,Philip Moses,tiffanyflores@gmail.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9293.83,Gold,0 +7675,Jessica Griffin,joshuaramirez@yahoo.com,2019-12-18,"{""language"": ""DE"", ""currency"": ""MXN""}",1426.98,Bronze,0 +7676,David Frazier,davidroy@schneider.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""EUR""}",3280.5,Gold,1 +7677,Timothy Ochoa,xnewman@hotmail.com,2020-11-14,"{""language"": ""EN"", ""currency"": ""GBP""}",4893.31,Gold,0 +7678,Kathy Kirk,garysoto@yahoo.com,2021-08-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2777.69,Gold,1 +7679,Gloria Ingram,lauren47@hotmail.com,2023-10-15,"{""language"": ""EN"", ""currency"": ""CAD""}",8647.83,Silver,0 +7680,Rhonda Jackson,brittanygarcia@yahoo.com,2022-01-10,"{""language"": ""EN"", ""currency"": ""CAD""}",861.23,Bronze,1 +7681,Jose Williams,meredithrhodes@yahoo.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""CAD""}",9746.65,Silver,1 +7682,Jasmine Petty,derekwalters@tran.com,2020-07-20,"{""language"": ""ES"", ""currency"": ""GBP""}",661.31,Gold,1 +7683,Richard Turner,maldonadosharon@figueroa.com,2021-09-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2258.55,Silver,0 +7684,Eric Allen,jamesmatthews@baker-fisher.info,2023-07-24,"{""language"": ""EN"", ""currency"": ""EUR""}",9949.11,Bronze,0 +7685,Kelly Branch,simmonscatherine@reyes.com,2023-08-02,"{""language"": ""IT"", ""currency"": ""EUR""}",59.06,Silver,0 +7686,Dawn Alvarez,joneschad@yahoo.com,2021-12-14,"{""language"": ""IT"", ""currency"": ""GBP""}",4889.86,Silver,0 +7687,Susan Stephens,huntsteven@gmail.com,2022-05-26,"{""language"": ""FR"", ""currency"": ""GBP""}",6407.97,Bronze,0 +7688,Nicholas Hardy,david21@kelly.com,2022-02-14,"{""language"": ""IT"", ""currency"": ""CAD""}",6821.41,Bronze,1 +7689,Leah Fisher,obrown@rodriguez.com,2024-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",7966.18,Gold,1 +7690,Dana Carr,kyle81@chavez.info,2020-11-23,"{""language"": ""ES"", ""currency"": ""CAD""}",9510.49,Gold,0 +7691,Stephanie Morales,goodmandonald@yahoo.com,2024-09-16,"{""language"": ""IT"", ""currency"": ""GBP""}",6913.38,Gold,0 +7692,Andrew Boyd,gsexton@wang.org,2024-05-05,"{""language"": ""ES"", ""currency"": ""GBP""}",942.9,Bronze,1 +7693,Diane Jackson,rebeccasmith@robles-williams.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""USD""}",4907.88,Silver,1 +7694,Alison Klein,mario96@gmail.com,2019-12-22,"{""language"": ""EN"", ""currency"": ""MXN""}",6055.83,Silver,1 +7695,Darrell Jordan,carlsoncynthia@yahoo.com,2020-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",2690.92,Bronze,1 +7696,Michael Marshall,scott42@matthews.com,2021-05-17,"{""language"": ""ES"", ""currency"": ""GBP""}",1566.14,Gold,0 +7697,Michelle Harris,ianjones@gmail.com,2020-01-11,"{""language"": ""ES"", ""currency"": ""GBP""}",2418.87,Bronze,1 +7698,Chad Carter,kristen85@gmail.com,2023-12-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3645.33,Silver,0 +7699,Tammie Wood,michaelmueller@turner.biz,2020-07-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8093.09,Silver,0 +7700,Sandra Phillips,bestnicholas@hotmail.com,2022-10-30,"{""language"": ""IT"", ""currency"": ""CAD""}",1498.36,Bronze,0 +7701,Erin Walker,klinekeith@hotmail.com,2023-09-06,"{""language"": ""DE"", ""currency"": ""MXN""}",1473.85,Silver,0 +7702,Seth Holder,stewartadam@chung-lynch.com,2024-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",4514.66,Bronze,0 +7703,Karen Costa,toddhernandez@benton.net,2021-04-13,"{""language"": ""IT"", ""currency"": ""GBP""}",1265.46,Gold,1 +7704,Annette Mendoza,wellsbrandon@yahoo.com,2022-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",9687.72,Gold,0 +7705,Taylor Stephens,caldwelldennis@yahoo.com,2023-01-23,"{""language"": ""IT"", ""currency"": ""MXN""}",2445.7,Silver,0 +7706,Nicole Harris,meredithmorales@hotmail.com,2023-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",2015.43,Bronze,0 +7707,Elizabeth Olsen,scott74@edwards.com,2021-08-13,"{""language"": ""EN"", ""currency"": ""EUR""}",4619.8,Gold,1 +7708,Glenn Martin,robinsonwilliam@gmail.com,2024-05-26,"{""language"": ""EN"", ""currency"": ""EUR""}",3144.03,Bronze,1 +7709,Nicole Stevens,hhansen@juarez-frost.com,2021-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",1436.0,Bronze,0 +7710,Patricia Garza,john55@gmail.com,2021-03-03,"{""language"": ""EN"", ""currency"": ""MXN""}",3325.45,Gold,1 +7711,Jason Elliott,hensleysarah@yahoo.com,2022-10-20,"{""language"": ""DE"", ""currency"": ""EUR""}",8196.57,Bronze,0 +7712,Stephanie Rodriguez,darryl22@hotmail.com,2024-03-16,"{""language"": ""ES"", ""currency"": ""CAD""}",5029.88,Silver,1 +7713,Brian Nelson,navarrojoseph@stanton.com,2023-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1374.98,Gold,1 +7714,Casey Barnes,jacob95@hotmail.com,2024-02-11,"{""language"": ""EN"", ""currency"": ""GBP""}",7704.98,Bronze,0 +7715,Stacey Webb,kelly65@lopez.com,2023-09-13,"{""language"": ""IT"", ""currency"": ""USD""}",4244.37,Gold,0 +7716,Martin Randall,rebeccaking@white.com,2024-07-20,"{""language"": ""FR"", ""currency"": ""GBP""}",5371.59,Silver,1 +7717,Ana Wong,ryan47@gmail.com,2022-06-20,"{""language"": ""DE"", ""currency"": ""GBP""}",2238.72,Gold,1 +7718,Adam Hernandez,chrisduke@morris.info,2022-04-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9181.51,Bronze,0 +7719,Rebecca Ruiz,twilliams@gmail.com,2022-04-01,"{""language"": ""ES"", ""currency"": ""MXN""}",4861.53,Silver,0 +7720,Laura Brown,oedwards@stewart.net,2024-01-26,"{""language"": ""FR"", ""currency"": ""CAD""}",2851.67,Gold,1 +7721,Shannon Conway,deborahfisher@yahoo.com,2021-09-15,"{""language"": ""FR"", ""currency"": ""MXN""}",7737.03,Gold,0 +7722,Daniel Olson,alyssaharrison@weiss.com,2024-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",852.95,Gold,1 +7723,Mary Jackson,alyssa62@montoya-carter.com,2024-10-27,"{""language"": ""DE"", ""currency"": ""GBP""}",8005.8,Bronze,0 +7724,Robin Jones,randerson@gmail.com,2024-03-14,"{""language"": ""FR"", ""currency"": ""USD""}",373.42,Silver,0 +7725,Travis Brown,jamescastro@gmail.com,2023-11-23,"{""language"": ""FR"", ""currency"": ""CAD""}",294.08,Silver,0 +7726,Ronald Jones,penningtonlauren@gmail.com,2020-08-01,"{""language"": ""DE"", ""currency"": ""USD""}",8195.5,Silver,1 +7727,Kimberly Chambers,brianmccormick@whitney.net,2020-12-09,"{""language"": ""EN"", ""currency"": ""GBP""}",7130.64,Gold,0 +7728,Jonathan Alvarez,leah35@hotmail.com,2020-05-02,"{""language"": ""EN"", ""currency"": ""EUR""}",1263.24,Bronze,1 +7729,Jackson Wilkerson,usmith@yahoo.com,2023-04-26,"{""language"": ""DE"", ""currency"": ""EUR""}",9760.68,Silver,0 +7730,Albert Henderson,bondryan@love.info,2023-10-07,"{""language"": ""IT"", ""currency"": ""GBP""}",5151.57,Silver,1 +7731,Alyssa Perry,dbaker@hotmail.com,2020-12-18,"{""language"": ""ES"", ""currency"": ""USD""}",296.68,Bronze,1 +7732,Joshua Cole,robin07@fox.com,2022-03-30,"{""language"": ""DE"", ""currency"": ""CAD""}",8033.44,Bronze,0 +7733,James Burton,lcastro@garcia.biz,2022-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",2977.9,Gold,0 +7734,Robert Munoz,swansonanna@gmail.com,2020-03-22,"{""language"": ""EN"", ""currency"": ""USD""}",6164.11,Gold,0 +7735,Brian Rodriguez,eric98@miller-russell.com,2024-02-21,"{""language"": ""IT"", ""currency"": ""EUR""}",6271.2,Gold,0 +7736,Colleen Gardner,yrogers@yahoo.com,2020-09-16,"{""language"": ""DE"", ""currency"": ""GBP""}",7860.28,Bronze,1 +7737,Michael Huff,camachosamantha@martinez.biz,2021-03-01,"{""language"": ""ES"", ""currency"": ""CAD""}",3261.72,Silver,1 +7738,Susan Bowman,carloserickson@gmail.com,2024-09-25,"{""language"": ""FR"", ""currency"": ""MXN""}",1465.25,Bronze,1 +7739,William White,austin00@gmail.com,2021-01-12,"{""language"": ""FR"", ""currency"": ""MXN""}",2738.49,Silver,1 +7740,Donna Cole,stevenmiller@hotmail.com,2021-01-03,"{""language"": ""IT"", ""currency"": ""USD""}",1469.61,Silver,0 +7741,Barry Howell,elizabethpalmer@buchanan.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""EUR""}",166.31,Silver,0 +7742,Tabitha Smith,wrightbrenda@hotmail.com,2022-09-03,"{""language"": ""IT"", ""currency"": ""EUR""}",8058.48,Silver,1 +7743,Robin Sullivan,parkervictoria@wade.com,2022-01-31,"{""language"": ""EN"", ""currency"": ""GBP""}",9284.54,Bronze,1 +7744,Cathy Vasquez,rklein@hotmail.com,2021-04-02,"{""language"": ""FR"", ""currency"": ""EUR""}",1125.48,Bronze,0 +7745,Melissa Coleman,sandovaljessica@yahoo.com,2021-11-27,"{""language"": ""DE"", ""currency"": ""GBP""}",7139.79,Gold,0 +7746,Pamela Washington,edwardchan@larsen.com,2024-07-16,"{""language"": ""FR"", ""currency"": ""CAD""}",2816.23,Silver,1 +7747,Courtney Knight,allen78@griffin.com,2021-10-06,"{""language"": ""EN"", ""currency"": ""MXN""}",5120.82,Bronze,0 +7748,Vanessa Dean,jasonrodriguez@smith-savage.biz,2021-08-16,"{""language"": ""DE"", ""currency"": ""EUR""}",4484.04,Silver,0 +7749,Brandon Rodriguez,lgrimes@gmail.com,2021-06-06,"{""language"": ""FR"", ""currency"": ""GBP""}",3602.32,Silver,1 +7750,Amanda Robertson,sheilastrickland@gmail.com,2024-07-03,"{""language"": ""FR"", ""currency"": ""EUR""}",8819.28,Gold,1 +7751,Jessica Owen,xrodriguez@gmail.com,2024-09-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8387.36,Gold,0 +7752,Billy Maxwell,robertsamy@yahoo.com,2024-09-02,"{""language"": ""IT"", ""currency"": ""USD""}",1662.57,Gold,1 +7753,Kelly Harrison,ajones@bright.com,2021-04-23,"{""language"": ""FR"", ""currency"": ""CAD""}",2280.54,Bronze,1 +7754,Darren Martin,lortiz@moran.org,2021-03-19,"{""language"": ""IT"", ""currency"": ""EUR""}",9839.47,Silver,1 +7755,Carlos Davis,james46@gmail.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8820.82,Bronze,1 +7756,Jimmy Allen,vford@hotmail.com,2022-02-08,"{""language"": ""EN"", ""currency"": ""USD""}",7089.17,Bronze,1 +7757,Daniel Rubio,jamesjohnson@hotmail.com,2019-12-23,"{""language"": ""FR"", ""currency"": ""GBP""}",3257.42,Bronze,0 +7758,Adam Alexander,hicksjames@gmail.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""MXN""}",1642.17,Bronze,1 +7759,Matthew Burke,mdeleon@hotmail.com,2020-11-15,"{""language"": ""IT"", ""currency"": ""USD""}",1737.13,Silver,0 +7760,Jennifer Nguyen,greenrodney@perez-sheppard.com,2022-10-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1546.59,Gold,0 +7761,Julie Calhoun,flynngregory@gmail.com,2022-10-11,"{""language"": ""IT"", ""currency"": ""GBP""}",7596.03,Bronze,0 +7762,Bridget Turner,ajoseph@gordon.net,2021-02-11,"{""language"": ""DE"", ""currency"": ""MXN""}",948.96,Bronze,0 +7763,Mark Thompson,seanharris@hart.com,2024-02-23,"{""language"": ""EN"", ""currency"": ""MXN""}",3628.68,Bronze,0 +7764,Ronald Perez,prichardson@gmail.com,2024-01-18,"{""language"": ""DE"", ""currency"": ""GBP""}",7057.76,Silver,1 +7765,Scott Williams,cooperkathryn@woods-horton.com,2024-02-09,"{""language"": ""FR"", ""currency"": ""MXN""}",2567.04,Silver,0 +7766,Connie Mcintosh,nlopez@pennington-garcia.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""EUR""}",8717.59,Silver,0 +7767,Joseph Lopez,kevin56@hill-smith.biz,2021-03-07,"{""language"": ""IT"", ""currency"": ""USD""}",6975.29,Bronze,0 +7768,Tonya Murphy,torreshelen@patterson-leonard.com,2022-02-21,"{""language"": ""FR"", ""currency"": ""USD""}",7342.85,Gold,1 +7769,Ashley Sanchez,santanaerin@hotmail.com,2024-01-13,"{""language"": ""DE"", ""currency"": ""CAD""}",9152.65,Gold,1 +7770,Darryl Wagner,ann03@mitchell.com,2020-03-25,"{""language"": ""DE"", ""currency"": ""GBP""}",7532.0,Silver,0 +7771,Tyler Martin,charles74@simon.com,2024-08-10,"{""language"": ""IT"", ""currency"": ""EUR""}",1214.74,Gold,1 +7772,Samantha Boyle,ryan23@ward.com,2020-12-06,"{""language"": ""IT"", ""currency"": ""GBP""}",8694.8,Silver,1 +7773,Vernon Brown,josephcox@hotmail.com,2022-09-23,"{""language"": ""FR"", ""currency"": ""MXN""}",6977.2,Silver,1 +7774,Lauren Joyce,littlejeremy@campos.org,2023-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",6636.47,Gold,0 +7775,William Johnston,zunigajustin@shelton.com,2024-09-23,"{""language"": ""ES"", ""currency"": ""CAD""}",1072.4,Gold,0 +7776,William Jacobs,creed@marshall.net,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",5713.9,Bronze,1 +7777,Nathan Smith,moralesmichael@gmail.com,2022-04-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6952.43,Gold,1 +7778,Mary Cox,crystaljones@graves.com,2023-10-08,"{""language"": ""IT"", ""currency"": ""MXN""}",3271.8,Silver,0 +7779,Christine Parsons,williamsmichele@wu.com,2021-03-08,"{""language"": ""FR"", ""currency"": ""USD""}",1602.21,Silver,1 +7780,Teresa Rodgers,shari00@gmail.com,2023-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",7201.74,Gold,0 +7781,Scott Fischer,jacquelinedavis@olsen.com,2024-09-23,"{""language"": ""DE"", ""currency"": ""EUR""}",2794.42,Gold,0 +7782,Randy Turner,greenjacqueline@gmail.com,2023-10-02,"{""language"": ""FR"", ""currency"": ""USD""}",464.48,Silver,1 +7783,Candace Brown,salazarangela@hotmail.com,2023-04-23,"{""language"": ""ES"", ""currency"": ""GBP""}",2409.19,Bronze,0 +7784,Tracy Anderson,nicholasking@hotmail.com,2021-02-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3028.57,Bronze,1 +7785,Daniel Robertson,emilypatel@yahoo.com,2019-12-20,"{""language"": ""FR"", ""currency"": ""CAD""}",524.63,Bronze,1 +7786,Eugene Yates,stevenkelley@benson-baxter.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""CAD""}",9554.21,Silver,0 +7787,Miguel White,yolandajackson@hotmail.com,2020-01-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6944.78,Silver,1 +7788,Joseph Moore,denise30@yahoo.com,2023-07-05,"{""language"": ""ES"", ""currency"": ""EUR""}",8424.81,Gold,0 +7789,Elizabeth Mendez,tracy79@sims.org,2024-02-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8455.38,Silver,1 +7790,Darlene Hall,zlopez@gmail.com,2024-05-11,"{""language"": ""ES"", ""currency"": ""GBP""}",7614.02,Gold,0 +7791,Jessica Simon,whitericky@gmail.com,2020-01-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2923.58,Silver,1 +7792,Matthew Dunn,smithryan@hotmail.com,2020-02-22,"{""language"": ""FR"", ""currency"": ""CAD""}",3833.14,Silver,1 +7793,Patricia Lee,allenapril@hansen-hess.com,2022-05-29,"{""language"": ""ES"", ""currency"": ""CAD""}",8356.52,Bronze,1 +7794,Denise Trujillo,gregory71@gmail.com,2020-11-21,"{""language"": ""IT"", ""currency"": ""CAD""}",5685.92,Bronze,0 +7795,Susan Williams,stephensoto@yahoo.com,2023-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",9840.13,Gold,0 +7796,Justin Hill,uharvey@hotmail.com,2024-06-08,"{""language"": ""DE"", ""currency"": ""EUR""}",1437.48,Gold,0 +7797,Lisa Miller,morenoapril@little.com,2023-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5351.67,Bronze,0 +7798,Erin Baker MD,ywalker@hotmail.com,2021-06-21,"{""language"": ""FR"", ""currency"": ""MXN""}",159.24,Bronze,0 +7799,Patrick Strickland,duranpatricia@yahoo.com,2020-11-08,"{""language"": ""IT"", ""currency"": ""GBP""}",2857.63,Gold,0 +7800,Virginia Gutierrez,martinjohn@hotmail.com,2024-07-12,"{""language"": ""IT"", ""currency"": ""GBP""}",5493.55,Bronze,1 +7801,Tina Peterson,spowers@hotmail.com,2022-08-23,"{""language"": ""DE"", ""currency"": ""MXN""}",5624.31,Gold,1 +7802,Eric Lawson,michael49@hotmail.com,2024-04-09,"{""language"": ""EN"", ""currency"": ""MXN""}",370.02,Gold,0 +7803,Nicholas Allen,amymayo@mahoney.com,2024-02-17,"{""language"": ""ES"", ""currency"": ""CAD""}",4510.14,Bronze,1 +7804,Tara Singh,gary63@higgins.net,2024-01-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2231.15,Gold,0 +7805,Chelsea Smith,zdelgado@knapp.com,2024-02-16,"{""language"": ""DE"", ""currency"": ""MXN""}",2224.49,Gold,0 +7806,Angela Perez,myerspatrick@romero.com,2023-02-21,"{""language"": ""IT"", ""currency"": ""EUR""}",619.84,Silver,0 +7807,Matthew Mckenzie,ugarrison@johnston-taylor.com,2022-03-13,"{""language"": ""ES"", ""currency"": ""CAD""}",540.3,Gold,0 +7808,Ryan Woods,harrisonnicole@yahoo.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",1815.12,Silver,1 +7809,Jeffrey Gonzalez,scott96@yahoo.com,2022-08-14,"{""language"": ""EN"", ""currency"": ""MXN""}",1696.62,Gold,1 +7810,Joshua Fields,amanda55@hotmail.com,2023-01-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7819.06,Silver,1 +7811,Curtis Lee,nicholas66@hotmail.com,2021-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",7846.0,Gold,0 +7812,Melissa Pratt,monicagreer@yahoo.com,2024-09-10,"{""language"": ""ES"", ""currency"": ""MXN""}",788.28,Gold,1 +7813,Deborah Zamora,qramirez@hotmail.com,2024-01-28,"{""language"": ""ES"", ""currency"": ""GBP""}",8824.71,Silver,1 +7814,Jeffrey Lopez,benjaminshannon@reynolds.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""EUR""}",3492.53,Silver,0 +7815,Brendan Gray,bryantalexander@yahoo.com,2023-05-25,"{""language"": ""FR"", ""currency"": ""USD""}",8087.08,Silver,0 +7816,Robert Bradford,sanchezerica@hotmail.com,2021-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",4731.84,Gold,0 +7817,Denise Perez,jhoffman@hotmail.com,2023-01-15,"{""language"": ""ES"", ""currency"": ""EUR""}",4224.02,Bronze,0 +7818,Aaron Smith,marycarey@gmail.com,2022-06-27,"{""language"": ""EN"", ""currency"": ""USD""}",9441.58,Silver,0 +7819,Andrew Thomas,wisesarah@hotmail.com,2023-01-26,"{""language"": ""FR"", ""currency"": ""EUR""}",3749.52,Gold,0 +7820,Jose Miller,imiller@ross.com,2024-07-05,"{""language"": ""DE"", ""currency"": ""EUR""}",771.92,Gold,1 +7821,Lisa Castillo,lawrence45@brooks-torres.info,2021-10-13,"{""language"": ""IT"", ""currency"": ""MXN""}",4088.69,Gold,1 +7822,Catherine Washington,zsimpson@torres-brooks.org,2024-12-10,"{""language"": ""IT"", ""currency"": ""USD""}",4454.43,Silver,1 +7823,Courtney Lee,lpace@dorsey-ayala.com,2023-06-24,"{""language"": ""IT"", ""currency"": ""MXN""}",7044.27,Bronze,0 +7824,Sherry Rivera,brobinson@wilson.biz,2021-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",2005.48,Silver,0 +7825,Mr. Kenneth Martinez PhD,salazaralexander@hammond.com,2021-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",7910.75,Bronze,0 +7826,Karen Thomas,james70@jenkins.org,2022-10-27,"{""language"": ""DE"", ""currency"": ""USD""}",3317.41,Gold,0 +7827,Lisa Moore,cbrown@peterson.com,2021-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9473.42,Silver,1 +7828,Timothy Bullock,warrenaustin@james.com,2023-09-24,"{""language"": ""ES"", ""currency"": ""CAD""}",3642.12,Gold,0 +7829,Deborah Brown,christopher94@garza.com,2020-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",8518.47,Bronze,0 +7830,Robert Thompson,daniel03@yahoo.com,2020-01-15,"{""language"": ""DE"", ""currency"": ""USD""}",8952.85,Gold,1 +7831,Michael Leon,brownelizabeth@hotmail.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",9712.91,Gold,1 +7832,Joseph Castillo,edwardsgregg@gmail.com,2020-01-08,"{""language"": ""IT"", ""currency"": ""GBP""}",8765.79,Gold,0 +7833,Mr. Jason Singh,ielliott@hotmail.com,2021-10-30,"{""language"": ""EN"", ""currency"": ""MXN""}",2859.96,Bronze,0 +7834,Eric Gaines,millerkimberly@reilly.com,2024-01-14,"{""language"": ""IT"", ""currency"": ""MXN""}",1311.94,Silver,1 +7835,Lydia Price,valeriemitchell@stanley.com,2022-09-16,"{""language"": ""FR"", ""currency"": ""GBP""}",6817.69,Gold,1 +7836,Zachary Johnson,jonathan67@yahoo.com,2022-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",7475.14,Bronze,1 +7837,Douglas Carney,derek83@hotmail.com,2022-07-08,"{""language"": ""IT"", ""currency"": ""USD""}",1460.86,Gold,1 +7838,Mrs. Melanie George DVM,moorejason@thomas.com,2023-11-25,"{""language"": ""FR"", ""currency"": ""CAD""}",4298.98,Gold,1 +7839,Gary Hensley,upham@murphy.com,2020-11-23,"{""language"": ""DE"", ""currency"": ""EUR""}",9741.3,Gold,0 +7840,Tina Benson,ramosjose@townsend.biz,2022-10-20,"{""language"": ""DE"", ""currency"": ""MXN""}",7216.07,Bronze,1 +7841,Nicholas Johnson,umurray@yahoo.com,2021-03-24,"{""language"": ""EN"", ""currency"": ""MXN""}",362.14,Gold,0 +7842,Amanda Jenkins,whutchinson@thomas.com,2023-03-13,"{""language"": ""EN"", ""currency"": ""GBP""}",5880.98,Gold,0 +7843,Steven Johnson MD,smithrebecca@koch.com,2022-06-13,"{""language"": ""FR"", ""currency"": ""MXN""}",3987.49,Silver,0 +7844,Philip Johnson,christine57@yahoo.com,2021-10-24,"{""language"": ""IT"", ""currency"": ""EUR""}",9121.7,Silver,1 +7845,David Jackson,powersolivia@hotmail.com,2020-09-14,"{""language"": ""DE"", ""currency"": ""EUR""}",8718.08,Gold,1 +7846,Jennifer Lane,scott95@leach-young.org,2024-01-21,"{""language"": ""IT"", ""currency"": ""GBP""}",325.58,Silver,0 +7847,Jessica Dawson,seanlozano@gmail.com,2021-01-18,"{""language"": ""EN"", ""currency"": ""MXN""}",3762.12,Bronze,1 +7848,Carrie Guzman,iwarren@yahoo.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",9594.1,Silver,0 +7849,Timothy Robertson,deanalexandria@hotmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""EUR""}",7189.35,Bronze,1 +7850,Anita Jones,kristin32@nunez.net,2021-12-14,"{""language"": ""DE"", ""currency"": ""GBP""}",650.21,Silver,1 +7851,Elaine Jones,johnsonkristi@gmail.com,2020-09-02,"{""language"": ""ES"", ""currency"": ""MXN""}",5795.89,Gold,1 +7852,Patrick Harrington,jonathan86@christian-fowler.com,2021-12-18,"{""language"": ""FR"", ""currency"": ""USD""}",142.48,Gold,1 +7853,Laura Johnston,andrew99@baker-west.com,2022-10-11,"{""language"": ""FR"", ""currency"": ""EUR""}",9775.8,Gold,0 +7854,Victoria Jones,brownerica@yahoo.com,2021-05-12,"{""language"": ""FR"", ""currency"": ""GBP""}",4511.55,Bronze,0 +7855,Alexandria York,harrisonjessica@campbell.com,2024-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",2815.77,Bronze,0 +7856,Andrea Mosley,madison63@gmail.com,2023-09-15,"{""language"": ""IT"", ""currency"": ""USD""}",9889.18,Silver,1 +7857,Jeffrey Li,katherine06@gmail.com,2022-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",65.85,Bronze,0 +7858,Ryan Bender,michelejohnston@gmail.com,2020-04-30,"{""language"": ""FR"", ""currency"": ""GBP""}",7192.91,Silver,0 +7859,Diana Keith,danielkoch@yahoo.com,2021-03-22,"{""language"": ""ES"", ""currency"": ""GBP""}",6285.73,Silver,1 +7860,William Garcia,sandovalbrittany@allen-ingram.com,2021-12-08,"{""language"": ""EN"", ""currency"": ""USD""}",9104.08,Silver,0 +7861,Brian Warner,kari58@davidson.com,2023-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",5746.85,Gold,0 +7862,Daniel Schaefer DDS,sanderson@hotmail.com,2023-02-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2433.75,Bronze,0 +7863,Timothy Flores,johnsonamber@singh.com,2023-05-13,"{""language"": ""ES"", ""currency"": ""GBP""}",6657.71,Silver,0 +7864,Shannon Davis,maddencindy@gmail.com,2022-02-26,"{""language"": ""EN"", ""currency"": ""GBP""}",195.44,Bronze,1 +7865,Andrew Reed,david83@yahoo.com,2020-12-30,"{""language"": ""DE"", ""currency"": ""USD""}",9508.84,Silver,1 +7866,Ashley Huber,ysuarez@yahoo.com,2021-08-13,"{""language"": ""ES"", ""currency"": ""USD""}",3827.43,Silver,1 +7867,Brian Wagner,patelshawn@jackson.com,2022-04-04,"{""language"": ""IT"", ""currency"": ""CAD""}",8382.52,Bronze,0 +7868,Kerry Lucero,christinaperry@dean.org,2021-07-24,"{""language"": ""ES"", ""currency"": ""CAD""}",1145.18,Bronze,1 +7869,Jonathan Watts,kandrade@gmail.com,2020-06-11,"{""language"": ""EN"", ""currency"": ""CAD""}",1774.54,Gold,1 +7870,Carlos Johnson,taylorgary@gmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""USD""}",5759.25,Gold,1 +7871,Matthew Castro,swade@keller-jones.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""MXN""}",1794.92,Gold,1 +7872,Paul Glenn,torresdennis@vazquez.org,2024-04-12,"{""language"": ""FR"", ""currency"": ""GBP""}",1338.8,Silver,1 +7873,Karina Young,crystal33@yahoo.com,2021-05-04,"{""language"": ""IT"", ""currency"": ""MXN""}",2944.66,Gold,1 +7874,Jennifer Barton,wilsonjessica@lin-armstrong.biz,2021-12-27,"{""language"": ""DE"", ""currency"": ""EUR""}",511.77,Gold,0 +7875,Tami Reyes,seanwilliams@stephens.org,2023-06-02,"{""language"": ""DE"", ""currency"": ""USD""}",9893.65,Silver,0 +7876,William Curtis,doliver@jackson.com,2022-05-02,"{""language"": ""FR"", ""currency"": ""EUR""}",8254.34,Bronze,1 +7877,Kelsey Golden,qwatkins@yahoo.com,2023-08-20,"{""language"": ""ES"", ""currency"": ""USD""}",6285.56,Silver,1 +7878,Susan Joseph,cobbbryan@hotmail.com,2020-01-18,"{""language"": ""FR"", ""currency"": ""USD""}",1211.79,Silver,1 +7879,Mark Jackson,wward@gmail.com,2020-10-03,"{""language"": ""DE"", ""currency"": ""EUR""}",199.03,Gold,1 +7880,Sharon Hamilton,meyersbrett@yahoo.com,2020-01-15,"{""language"": ""ES"", ""currency"": ""CAD""}",817.2,Gold,0 +7881,Paul Ortega,dewing@yahoo.com,2020-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",6428.8,Gold,0 +7882,John Delacruz,lawrencejamie@williams.com,2020-04-18,"{""language"": ""DE"", ""currency"": ""USD""}",4329.73,Bronze,1 +7883,John Taylor,jasonmiller@frost-hansen.com,2022-05-17,"{""language"": ""EN"", ""currency"": ""EUR""}",2300.21,Silver,0 +7884,Francis Steele,karen17@jones.info,2021-11-07,"{""language"": ""FR"", ""currency"": ""USD""}",893.7,Silver,0 +7885,Phillip Castaneda,housemichelle@brown-obrien.com,2022-07-29,"{""language"": ""ES"", ""currency"": ""CAD""}",7856.11,Bronze,0 +7886,Sean Blevins,mosleybrandon@kidd-haynes.org,2021-02-11,"{""language"": ""FR"", ""currency"": ""USD""}",5825.73,Gold,1 +7887,Nicole Martin,smithjimmy@callahan.com,2022-05-21,"{""language"": ""EN"", ""currency"": ""MXN""}",2117.88,Gold,0 +7888,Kim Finley,karen62@yahoo.com,2022-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",7181.24,Bronze,1 +7889,Christopher Johnson,debra66@gmail.com,2024-10-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3413.51,Gold,0 +7890,Jennifer Wilson,richard68@yahoo.com,2021-05-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5321.84,Gold,0 +7891,Keith Fowler,thomasharper@brown.com,2019-12-28,"{""language"": ""IT"", ""currency"": ""MXN""}",3313.71,Bronze,1 +7892,William Lawrence,brentholloway@hotmail.com,2023-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",4963.5,Silver,0 +7893,Aaron Turner,ramosrobert@yahoo.com,2023-12-29,"{""language"": ""ES"", ""currency"": ""EUR""}",2983.57,Gold,1 +7894,Laura Woodard,hpierce@gmail.com,2021-08-23,"{""language"": ""EN"", ""currency"": ""GBP""}",4369.41,Silver,0 +7895,Nancy Page,kylerivera@yahoo.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""USD""}",602.31,Bronze,1 +7896,Marie Medina,davidnelson@gmail.com,2022-06-26,"{""language"": ""FR"", ""currency"": ""EUR""}",5559.46,Bronze,0 +7897,Megan Cain,yharper@dunn-parker.com,2022-07-25,"{""language"": ""DE"", ""currency"": ""CAD""}",1332.75,Silver,1 +7898,Joseph Jones,sarabennett@smith.com,2023-05-10,"{""language"": ""FR"", ""currency"": ""MXN""}",4919.57,Gold,1 +7899,Michelle Baker,jamie57@banks.biz,2021-06-26,"{""language"": ""FR"", ""currency"": ""EUR""}",3179.41,Silver,0 +7900,Howard Henry,nicolepierce@hotmail.com,2021-01-26,"{""language"": ""ES"", ""currency"": ""EUR""}",5400.88,Silver,0 +7901,David Johnson,johnsonchad@jimenez.org,2024-02-01,"{""language"": ""FR"", ""currency"": ""EUR""}",5063.86,Gold,1 +7902,Elizabeth Hudson,zpayne@hotmail.com,2021-04-09,"{""language"": ""IT"", ""currency"": ""EUR""}",7551.74,Bronze,1 +7903,Caitlin Thompson,fordjeffrey@fitzgerald.net,2022-03-20,"{""language"": ""ES"", ""currency"": ""EUR""}",6536.93,Silver,0 +7904,Roger Vaughn,alexanderbates@hayes.biz,2022-12-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5422.09,Bronze,0 +7905,Bridget Nguyen,zfreeman@miller.com,2021-02-10,"{""language"": ""IT"", ""currency"": ""EUR""}",9813.18,Bronze,1 +7906,Angela Fox,andrea03@rodriguez-rodriguez.com,2022-01-05,"{""language"": ""IT"", ""currency"": ""EUR""}",198.71,Gold,1 +7907,Barry Fisher,briana31@hotmail.com,2021-10-31,"{""language"": ""IT"", ""currency"": ""CAD""}",597.22,Silver,0 +7908,Raymond Buck,lori25@hines-perry.com,2021-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",874.31,Bronze,0 +7909,Steven Bowman,morgandana@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""MXN""}",3153.97,Silver,1 +7910,Rick Vargas,gmarshall@edwards-douglas.com,2021-03-04,"{""language"": ""IT"", ""currency"": ""EUR""}",1708.73,Silver,1 +7911,Justin Martin,grant63@hotmail.com,2021-09-20,"{""language"": ""ES"", ""currency"": ""USD""}",578.33,Gold,0 +7912,Rebecca Galloway,linda97@gmail.com,2024-10-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5035.7,Gold,0 +7913,Michael Yoder,ricerobert@smith.biz,2021-12-10,"{""language"": ""DE"", ""currency"": ""CAD""}",1826.15,Bronze,1 +7914,Jesse Lynn,robinsonabigail@vasquez.com,2020-10-07,"{""language"": ""ES"", ""currency"": ""USD""}",5712.34,Gold,0 +7915,Matthew Davidson,yvonnebailey@crane-hodges.net,2021-03-06,"{""language"": ""DE"", ""currency"": ""USD""}",7750.05,Gold,0 +7916,Todd Lyons,krystalgilmore@campbell.org,2022-11-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1925.6,Gold,1 +7917,Douglas Meyer,ashleymclaughlin@flores.net,2022-10-08,"{""language"": ""DE"", ""currency"": ""GBP""}",7906.34,Gold,0 +7918,Jerry Garcia PhD,mgarcia@wilson.com,2023-04-25,"{""language"": ""IT"", ""currency"": ""CAD""}",4062.25,Gold,0 +7919,Mary Cox,wdaniel@burton-rodriguez.net,2022-09-14,"{""language"": ""EN"", ""currency"": ""EUR""}",4927.26,Bronze,1 +7920,Tiffany Doyle,claytonkatie@martin-graham.com,2023-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",1045.42,Gold,0 +7921,Joel Mitchell,bbutler@smith.com,2020-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",8854.28,Gold,1 +7922,Donald Knapp,whunt@hotmail.com,2023-04-25,"{""language"": ""DE"", ""currency"": ""EUR""}",2847.5,Gold,0 +7923,Terri Crawford,timothy08@hotmail.com,2023-10-01,"{""language"": ""IT"", ""currency"": ""GBP""}",1297.97,Bronze,1 +7924,Michael Briggs,wjones@daniels.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""USD""}",2013.79,Bronze,1 +7925,Dana Gonzalez,leslie24@gmail.com,2021-01-13,"{""language"": ""EN"", ""currency"": ""GBP""}",5787.99,Silver,0 +7926,Mary Davidson,sarahbrown@clark.biz,2021-02-27,"{""language"": ""FR"", ""currency"": ""CAD""}",6975.92,Silver,1 +7927,Christopher Sandoval,lanesheryl@hanson.com,2023-01-20,"{""language"": ""EN"", ""currency"": ""USD""}",8204.23,Bronze,0 +7928,Jeremy Jones,brendacook@gmail.com,2024-05-23,"{""language"": ""IT"", ""currency"": ""CAD""}",4478.72,Bronze,0 +7929,Amanda Maxwell,vbates@nolan.org,2023-01-07,"{""language"": ""EN"", ""currency"": ""EUR""}",6489.44,Silver,1 +7930,Joshua Dean,michael32@gmail.com,2021-02-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2074.19,Silver,0 +7931,Brandy Stone,xwyatt@everett.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""USD""}",4758.22,Gold,0 +7932,Jonathan Moran DVM,lopezcorey@gmail.com,2024-08-07,"{""language"": ""DE"", ""currency"": ""MXN""}",6399.92,Silver,1 +7933,Stephanie Hall,moniqueryan@yahoo.com,2024-08-29,"{""language"": ""EN"", ""currency"": ""USD""}",6874.18,Bronze,0 +7934,David Schneider,bianca65@yahoo.com,2022-01-13,"{""language"": ""IT"", ""currency"": ""MXN""}",3745.94,Silver,0 +7935,James Walton,brooksamanda@english-mann.com,2022-04-19,"{""language"": ""FR"", ""currency"": ""EUR""}",1712.55,Bronze,1 +7936,Steven Rodriguez,anthony74@gmail.com,2023-07-23,"{""language"": ""DE"", ""currency"": ""CAD""}",4174.82,Gold,1 +7937,Kimberly Wood,glenn73@hotmail.com,2020-02-17,"{""language"": ""EN"", ""currency"": ""EUR""}",3600.96,Bronze,0 +7938,Paul Cooke,cobbcharles@brown-lewis.com,2020-02-25,"{""language"": ""FR"", ""currency"": ""EUR""}",5427.27,Gold,1 +7939,Thomas Frank,sandersmargaret@lopez.com,2024-08-21,"{""language"": ""DE"", ""currency"": ""GBP""}",4883.12,Gold,0 +7940,Theresa Anderson MD,anna79@hotmail.com,2021-01-29,"{""language"": ""EN"", ""currency"": ""CAD""}",2582.71,Bronze,1 +7941,Christopher Bryant,diazbrent@hudson.com,2024-06-06,"{""language"": ""ES"", ""currency"": ""MXN""}",2084.35,Silver,1 +7942,Susan Hill,walkerphilip@hopkins.org,2023-01-12,"{""language"": ""ES"", ""currency"": ""EUR""}",2822.21,Bronze,0 +7943,Christopher Schultz,rcarter@galvan.com,2022-06-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2424.73,Silver,0 +7944,Joshua Rodgers,ernest55@schwartz.com,2024-03-27,"{""language"": ""DE"", ""currency"": ""CAD""}",3172.07,Bronze,0 +7945,Sarah Morgan,stephenskyle@yahoo.com,2022-05-15,"{""language"": ""EN"", ""currency"": ""EUR""}",8316.07,Gold,0 +7946,Katherine Ramirez,clementsjacqueline@gmail.com,2022-09-28,"{""language"": ""IT"", ""currency"": ""USD""}",8269.65,Silver,0 +7947,Donna Nelson,gonzalezmatthew@hotmail.com,2021-03-30,"{""language"": ""ES"", ""currency"": ""CAD""}",6003.01,Gold,1 +7948,Stephanie Smith,lvaughan@yahoo.com,2023-04-13,"{""language"": ""IT"", ""currency"": ""MXN""}",8514.19,Bronze,1 +7949,Steve Mora,evanfischer@williams.com,2023-07-06,"{""language"": ""DE"", ""currency"": ""CAD""}",1717.52,Bronze,0 +7950,Mr. Joseph Thomas,waynestewart@perry.net,2020-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",617.67,Gold,1 +7951,Sierra Vasquez,whitemolly@todd-hill.com,2024-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",1999.77,Silver,1 +7952,Andrew Mckee,amyhaynes@gmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",4930.08,Gold,1 +7953,Brooke Gomez,dbishop@serrano-garcia.net,2024-04-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6405.59,Gold,1 +7954,Edgar Miller,deborah75@gmail.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""CAD""}",6549.53,Silver,0 +7955,Brandi Bentley,diana61@gmail.com,2024-06-23,"{""language"": ""EN"", ""currency"": ""EUR""}",8924.43,Gold,1 +7956,Thomas Blevins,bellchristopher@ward-hernandez.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9857.32,Gold,1 +7957,Dr. Christopher Freeman,nicholas87@hansen.com,2023-10-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5054.28,Silver,0 +7958,Mary Lynch,mooneybryce@gmail.com,2023-07-05,"{""language"": ""EN"", ""currency"": ""USD""}",3106.32,Silver,1 +7959,Michael Yates,jeremyking@murphy.org,2021-01-21,"{""language"": ""FR"", ""currency"": ""GBP""}",8669.56,Bronze,0 +7960,Emily Herrera,lynnmcclain@gmail.com,2023-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",3269.0,Silver,1 +7961,Shari Gallagher,thomascortez@hotmail.com,2023-10-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2975.72,Silver,0 +7962,Elizabeth Wilcox,browncrystal@hotmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8761.93,Silver,0 +7963,Nancy Williams,bryanhughes@moore.net,2024-07-31,"{""language"": ""ES"", ""currency"": ""EUR""}",4382.83,Gold,0 +7964,Crystal Phillips,qthompson@gmail.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""EUR""}",7328.54,Gold,0 +7965,Derrick Hill,carla66@hotmail.com,2021-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",1453.33,Silver,1 +7966,Dwayne Lynn,jordanbrittany@yahoo.com,2021-11-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8334.43,Silver,1 +7967,Joseph Mcclain,louismendez@parsons.com,2022-03-25,"{""language"": ""EN"", ""currency"": ""EUR""}",8810.85,Bronze,0 +7968,Jon Hardin,cruzdennis@hotmail.com,2020-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",5273.59,Silver,1 +7969,Kimberly Armstrong,jennifer50@hotmail.com,2021-03-06,"{""language"": ""FR"", ""currency"": ""EUR""}",3878.7,Gold,1 +7970,Ashley Martin,shenson@gibson.info,2024-07-24,"{""language"": ""IT"", ""currency"": ""USD""}",9676.34,Bronze,0 +7971,Jacob Butler,wendybartlett@gmail.com,2023-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",5417.53,Silver,0 +7972,Teresa Baker,vbarker@hotmail.com,2021-09-06,"{""language"": ""ES"", ""currency"": ""USD""}",1523.11,Silver,1 +7973,Julie Ferrell,jmarquez@irwin.net,2021-12-20,"{""language"": ""IT"", ""currency"": ""GBP""}",5157.78,Bronze,0 +7974,Heather Ruiz,littlebradley@hotmail.com,2023-03-03,"{""language"": ""IT"", ""currency"": ""MXN""}",653.28,Silver,0 +7975,Daniel Smith,kirbychristian@yahoo.com,2023-08-30,"{""language"": ""EN"", ""currency"": ""CAD""}",5909.51,Bronze,0 +7976,Joseph Rodriguez,brenda56@marquez.com,2022-04-18,"{""language"": ""ES"", ""currency"": ""EUR""}",5584.01,Silver,1 +7977,Michael Adams,joshua53@yahoo.com,2023-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",7415.22,Gold,0 +7978,Kelsey Snyder,albert67@gmail.com,2024-05-13,"{""language"": ""FR"", ""currency"": ""USD""}",8598.49,Silver,0 +7979,John Jimenez,cynthiamartinez@francis-johnson.com,2022-10-18,"{""language"": ""EN"", ""currency"": ""CAD""}",729.36,Gold,0 +7980,Robert Martin,jeanetteholmes@grant.com,2024-06-01,"{""language"": ""FR"", ""currency"": ""EUR""}",7494.74,Bronze,0 +7981,Tina Daniels,emiller@yahoo.com,2023-12-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2692.59,Gold,0 +7982,Dawn Rodriguez,cortezmeredith@gonzalez.com,2023-09-12,"{""language"": ""IT"", ""currency"": ""EUR""}",3629.19,Gold,0 +7983,Sarah Jones,brent23@lopez.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""EUR""}",7147.79,Bronze,1 +7984,Lori Brown,ulewis@hotmail.com,2021-01-26,"{""language"": ""DE"", ""currency"": ""MXN""}",5324.56,Bronze,1 +7985,Amy Rodriguez,operez@cooper.biz,2022-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",7048.78,Bronze,0 +7986,Janice Conner,lberry@yahoo.com,2020-04-17,"{""language"": ""EN"", ""currency"": ""USD""}",8841.54,Silver,1 +7987,Michael Reyes,vincentmartin@yahoo.com,2023-10-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3513.38,Bronze,0 +7988,Kevin Padilla,cynthia56@williams.com,2021-01-08,"{""language"": ""ES"", ""currency"": ""CAD""}",1720.23,Silver,1 +7989,Michael Pearson,michelecrawford@marquez.net,2023-03-31,"{""language"": ""FR"", ""currency"": ""GBP""}",5473.84,Gold,0 +7990,Jesse Alvarez,murrayrachel@vazquez-gray.biz,2023-07-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9057.58,Gold,0 +7991,Lisa Pratt,zvasquez@stewart.org,2021-06-13,"{""language"": ""FR"", ""currency"": ""GBP""}",2613.71,Gold,0 +7992,Kevin Ellis,peter38@fields-pruitt.com,2021-07-23,"{""language"": ""DE"", ""currency"": ""USD""}",8187.44,Gold,1 +7993,Jose Beck,gonzalezdeborah@yahoo.com,2020-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",6049.59,Silver,1 +7994,Anna Davis,jonathan72@johnson.com,2023-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",4185.18,Silver,1 +7995,Lindsey Freeman,atate@ross-gonzalez.com,2023-10-09,"{""language"": ""FR"", ""currency"": ""GBP""}",4064.04,Bronze,1 +7996,Evan Garcia,sperry@smith.org,2021-01-25,"{""language"": ""FR"", ""currency"": ""MXN""}",8406.26,Gold,0 +7997,Audrey Garcia,carol15@lindsey.com,2024-01-30,"{""language"": ""FR"", ""currency"": ""EUR""}",5692.92,Bronze,1 +7998,Susan Banks,wrightchelsea@yahoo.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""MXN""}",9136.48,Gold,1 +7999,April Wright,gburke@leonard.info,2024-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",2928.0,Gold,1 +8000,Stephanie Davis,connie05@hernandez-hebert.org,2022-06-23,"{""language"": ""ES"", ""currency"": ""USD""}",9788.68,Silver,1 +8001,Erika Cole,kathy51@yahoo.com,2022-01-15,"{""language"": ""EN"", ""currency"": ""USD""}",5154.52,Bronze,1 +8002,Jessica Smith,rmcmillan@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""GBP""}",5261.45,Bronze,1 +8003,Alisha Patel,adam18@hill-coleman.com,2024-04-06,"{""language"": ""IT"", ""currency"": ""USD""}",4608.79,Bronze,1 +8004,Kimberly Wiley,zroberts@williams.net,2024-07-02,"{""language"": ""EN"", ""currency"": ""USD""}",1431.87,Silver,0 +8005,Kyle Massey,carrie69@ramirez.biz,2022-02-09,"{""language"": ""IT"", ""currency"": ""EUR""}",479.42,Silver,0 +8006,Kelsey Cohen,teresa37@hotmail.com,2023-01-12,"{""language"": ""ES"", ""currency"": ""CAD""}",6503.81,Gold,1 +8007,Aaron Garcia,russellmccoy@yahoo.com,2022-07-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2881.18,Silver,1 +8008,Stephen Turner,nataliejohnson@hanson.com,2022-07-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5413.46,Bronze,1 +8009,Alexis Lopez,briandelgado@phillips.com,2020-06-29,"{""language"": ""FR"", ""currency"": ""USD""}",2375.19,Gold,1 +8010,Marcus Smith,xdavidson@davis-williams.com,2020-09-25,"{""language"": ""FR"", ""currency"": ""GBP""}",1612.24,Silver,0 +8011,Elizabeth Freeman,qnelson@hotmail.com,2021-01-01,"{""language"": ""ES"", ""currency"": ""USD""}",8881.09,Bronze,1 +8012,Ana Johnson,dmitchell@trujillo.com,2022-08-27,"{""language"": ""FR"", ""currency"": ""USD""}",9260.25,Silver,0 +8013,Steven Allen,courtneyburton@morgan.info,2023-02-18,"{""language"": ""ES"", ""currency"": ""GBP""}",6194.15,Bronze,0 +8014,David Blake,igarcia@hotmail.com,2020-12-29,"{""language"": ""ES"", ""currency"": ""EUR""}",6241.9,Silver,0 +8015,Mr. Karl Brooks PhD,williamsteresa@hotmail.com,2023-06-16,"{""language"": ""ES"", ""currency"": ""USD""}",9378.2,Silver,0 +8016,Melissa Greene,laurenford@paul.net,2022-12-18,"{""language"": ""ES"", ""currency"": ""GBP""}",1152.05,Bronze,1 +8017,Ryan Miller,kimberlysmith@grant.com,2022-02-04,"{""language"": ""FR"", ""currency"": ""GBP""}",8194.59,Silver,1 +8018,Jane Thompson,alexandraperez@yahoo.com,2023-08-27,"{""language"": ""EN"", ""currency"": ""USD""}",6214.97,Gold,0 +8019,Sandra Freeman,royjose@hotmail.com,2020-09-17,"{""language"": ""DE"", ""currency"": ""MXN""}",1281.88,Silver,1 +8020,Tammy Nicholson,mikegarcia@henderson.info,2024-10-25,"{""language"": ""ES"", ""currency"": ""USD""}",7332.62,Gold,0 +8021,Allison Gallagher,pottsashley@nelson.com,2021-04-17,"{""language"": ""DE"", ""currency"": ""MXN""}",1251.45,Silver,0 +8022,Alyssa Douglas,wdavis@gmail.com,2020-04-07,"{""language"": ""IT"", ""currency"": ""MXN""}",8949.54,Silver,0 +8023,Michael Evans,dbrown@yahoo.com,2021-05-23,"{""language"": ""IT"", ""currency"": ""EUR""}",8912.24,Gold,1 +8024,Jasmine Miller,jeffreybarron@yahoo.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""GBP""}",6111.22,Gold,1 +8025,Michael Boyd,elong@sanders.com,2024-03-26,"{""language"": ""DE"", ""currency"": ""EUR""}",8974.19,Gold,1 +8026,Kenneth Arnold,tmartinez@morales.com,2020-06-15,"{""language"": ""ES"", ""currency"": ""CAD""}",7928.59,Silver,1 +8027,Kenneth Rios,lanealexander@gmail.com,2022-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",1712.26,Bronze,1 +8028,Joshua Alexander,wfrost@floyd.net,2021-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",8771.44,Gold,0 +8029,Vanessa Gilbert,kimberly76@yahoo.com,2023-10-16,"{""language"": ""DE"", ""currency"": ""CAD""}",3891.51,Bronze,1 +8030,Teresa Jimenez,westmichael@harris-lopez.net,2021-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",2458.38,Gold,0 +8031,Rebecca Key,njohnson@johnson-frazier.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""USD""}",8164.63,Silver,1 +8032,Elizabeth Hamilton,kristy94@hotmail.com,2022-12-31,"{""language"": ""EN"", ""currency"": ""USD""}",9080.92,Bronze,1 +8033,Robert Johnson,rhondashaw@yahoo.com,2021-09-05,"{""language"": ""FR"", ""currency"": ""EUR""}",4996.28,Silver,1 +8034,Christine Henry,prose@garcia.org,2021-11-13,"{""language"": ""FR"", ""currency"": ""CAD""}",1284.8,Bronze,1 +8035,Allison Hernandez,christiejordan@hotmail.com,2020-01-13,"{""language"": ""EN"", ""currency"": ""EUR""}",339.94,Gold,1 +8036,Marissa Kemp,racheljohnson@avila-peters.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""GBP""}",2190.4,Gold,0 +8037,Michael Romero,eperry@yahoo.com,2021-12-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3315.69,Bronze,0 +8038,Nicole Davis,coxjeffrey@andersen.org,2022-04-03,"{""language"": ""EN"", ""currency"": ""MXN""}",928.04,Bronze,1 +8039,Anthony Martinez,vrosario@avila.net,2021-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",2343.28,Silver,0 +8040,Laura Lindsey,charleshughes@yahoo.com,2024-12-01,"{""language"": ""DE"", ""currency"": ""GBP""}",7303.97,Bronze,1 +8041,Vincent Blevins,lewisvalerie@yahoo.com,2023-10-12,"{""language"": ""EN"", ""currency"": ""USD""}",2765.75,Silver,1 +8042,Brian Berger,michaelramos@moore.com,2023-07-24,"{""language"": ""IT"", ""currency"": ""EUR""}",2744.23,Silver,1 +8043,Ralph Thomas,wmiller@yahoo.com,2021-04-10,"{""language"": ""FR"", ""currency"": ""GBP""}",6009.1,Silver,0 +8044,Heather Brown,davidcarrillo@reyes.com,2022-02-03,"{""language"": ""FR"", ""currency"": ""EUR""}",7309.3,Gold,0 +8045,Samuel Green,james14@wiley-terrell.com,2021-03-24,"{""language"": ""FR"", ""currency"": ""USD""}",9670.8,Bronze,1 +8046,Charles Howard,karl39@yahoo.com,2023-12-15,"{""language"": ""IT"", ""currency"": ""GBP""}",1024.24,Gold,0 +8047,Susan Johnson,jnelson@thompson.net,2020-01-09,"{""language"": ""FR"", ""currency"": ""CAD""}",3845.58,Gold,1 +8048,Michelle Shields,sgray@yahoo.com,2024-06-10,"{""language"": ""ES"", ""currency"": ""MXN""}",5754.69,Silver,0 +8049,Michaela Glass,aodom@werner.info,2021-05-15,"{""language"": ""DE"", ""currency"": ""USD""}",5066.09,Silver,1 +8050,Shannon Weiss,amandamiles@mcknight.com,2020-06-16,"{""language"": ""DE"", ""currency"": ""USD""}",4318.69,Silver,0 +8051,Amber Simpson,rowlandmichele@decker-simon.com,2021-05-27,"{""language"": ""IT"", ""currency"": ""USD""}",9139.15,Silver,1 +8052,William Rhodes,vicki81@walters.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2172.78,Silver,0 +8053,Ashley Lopez,carterandrea@gmail.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""GBP""}",9673.35,Gold,1 +8054,Stephanie Quinn,stewartlogan@gmail.com,2024-10-14,"{""language"": ""FR"", ""currency"": ""USD""}",3084.22,Bronze,1 +8055,Paul Jones,nbrown@moore.com,2021-09-22,"{""language"": ""FR"", ""currency"": ""USD""}",4172.81,Bronze,1 +8056,Nicole Arroyo,kathy61@phillips.biz,2020-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",7820.49,Bronze,0 +8057,Krystal Ford,carolwatkins@kim-perez.org,2023-06-25,"{""language"": ""DE"", ""currency"": ""USD""}",7257.99,Silver,0 +8058,Henry Robinson,phubbard@gmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9937.16,Bronze,0 +8059,Trevor Hernandez,kristen99@gmail.com,2024-03-12,"{""language"": ""EN"", ""currency"": ""EUR""}",4235.39,Silver,0 +8060,Kayla Vega,kochmichael@anderson-smith.com,2022-07-01,"{""language"": ""EN"", ""currency"": ""GBP""}",7307.96,Silver,0 +8061,Michael Brown,sgraham@hotmail.com,2020-05-27,"{""language"": ""ES"", ""currency"": ""EUR""}",1137.28,Gold,0 +8062,Tina Larsen,carriejohnson@gmail.com,2024-12-11,"{""language"": ""EN"", ""currency"": ""USD""}",8084.0,Bronze,0 +8063,Alexis Mcclure,martinleonard@hotmail.com,2021-03-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7080.51,Silver,1 +8064,Kyle Boyle,rroberts@hotmail.com,2024-11-13,"{""language"": ""EN"", ""currency"": ""USD""}",5595.3,Silver,0 +8065,Andrew White,angelasanders@hotmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""EUR""}",7632.85,Gold,1 +8066,Daniel Hernandez,parkchristopher@carter-moore.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",360.36,Bronze,0 +8067,Kyle Roberts,lucerothomas@yahoo.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""EUR""}",7491.89,Silver,0 +8068,Angela Parker,amanda52@yahoo.com,2020-01-19,"{""language"": ""ES"", ""currency"": ""EUR""}",657.23,Gold,1 +8069,Kevin Bray,philipgreen@hotmail.com,2020-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",2467.16,Silver,1 +8070,Anthony Macias,terri72@hotmail.com,2020-12-29,"{""language"": ""IT"", ""currency"": ""GBP""}",8730.34,Gold,0 +8071,Margaret Bishop MD,hansencharles@sanchez.com,2022-05-22,"{""language"": ""EN"", ""currency"": ""USD""}",1166.91,Silver,1 +8072,Laura Juarez,beverlyphillips@pierce.com,2020-12-03,"{""language"": ""FR"", ""currency"": ""CAD""}",2680.1,Silver,1 +8073,Cynthia Turner,ztaylor@hotmail.com,2022-08-30,"{""language"": ""DE"", ""currency"": ""CAD""}",1797.59,Gold,1 +8074,Ricardo Adkins,montgomeryalexa@gmail.com,2021-03-27,"{""language"": ""DE"", ""currency"": ""USD""}",3012.15,Bronze,1 +8075,Kimberly Romero,carrtheresa@gmail.com,2024-07-17,"{""language"": ""EN"", ""currency"": ""CAD""}",3459.31,Gold,1 +8076,Richard Graham,rebecca68@nolan.com,2022-07-06,"{""language"": ""FR"", ""currency"": ""MXN""}",2268.92,Silver,0 +8077,Vanessa Woods,qlambert@morgan.org,2023-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",6366.5,Bronze,0 +8078,Dr. Amy Harris,bbaldwin@yahoo.com,2022-02-27,"{""language"": ""DE"", ""currency"": ""GBP""}",9940.29,Bronze,1 +8079,Raven Davenport,robertsonkaren@gmail.com,2022-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",3562.85,Bronze,0 +8080,Emily Perez,obrienjenny@yahoo.com,2021-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",1160.86,Gold,0 +8081,Benjamin Cline,christina84@davies-robertson.com,2023-11-08,"{""language"": ""IT"", ""currency"": ""MXN""}",2701.7,Gold,0 +8082,Shannon Oliver,qhall@hotmail.com,2024-02-21,"{""language"": ""DE"", ""currency"": ""EUR""}",2357.66,Silver,0 +8083,Denise Griffith,clarkabigail@hotmail.com,2020-10-07,"{""language"": ""EN"", ""currency"": ""GBP""}",440.63,Silver,1 +8084,Jonathan Mayo,mmiller@deleon-flores.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2893.85,Bronze,1 +8085,Gene Moore,stewartrichard@hotmail.com,2024-06-02,"{""language"": ""EN"", ""currency"": ""USD""}",5156.93,Bronze,0 +8086,Alan Wood,christian94@gmail.com,2023-03-17,"{""language"": ""ES"", ""currency"": ""GBP""}",4748.85,Bronze,1 +8087,Veronica Miranda,stevecooke@gmail.com,2023-11-17,"{""language"": ""EN"", ""currency"": ""CAD""}",9348.88,Bronze,0 +8088,Christopher Cantu,gsimmons@hunter.com,2022-03-06,"{""language"": ""DE"", ""currency"": ""MXN""}",6203.71,Silver,0 +8089,Gregory Salazar,aguirredesiree@gmail.com,2023-08-23,"{""language"": ""DE"", ""currency"": ""CAD""}",581.87,Bronze,0 +8090,Angela Berg,ryan99@bowman.biz,2020-03-31,"{""language"": ""ES"", ""currency"": ""EUR""}",6553.07,Silver,0 +8091,Matthew Glover,jessicadavis@hotmail.com,2022-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",3522.28,Silver,0 +8092,Sandra Jackson,ginapineda@lam-silva.info,2021-07-21,"{""language"": ""DE"", ""currency"": ""CAD""}",9852.92,Gold,0 +8093,Joseph Smith,kevinflores@yahoo.com,2021-05-06,"{""language"": ""DE"", ""currency"": ""MXN""}",584.17,Silver,1 +8094,Thomas Evans,johnlee@gmail.com,2020-12-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9163.69,Bronze,1 +8095,Heidi Bradford,megan58@yahoo.com,2023-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8838.12,Silver,1 +8096,Stacy Mendez,phillipsjames@hotmail.com,2020-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",9066.74,Bronze,1 +8097,Jaime Davis,anthonymiller@harris.com,2024-08-14,"{""language"": ""IT"", ""currency"": ""CAD""}",3857.73,Bronze,1 +8098,Jordan Brown,rachel58@hotmail.com,2024-09-03,"{""language"": ""IT"", ""currency"": ""USD""}",4015.21,Bronze,1 +8099,Katie Johnson,jerry95@gmail.com,2023-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",6375.32,Silver,1 +8100,Derek Walker,wrightpamela@rivera.com,2023-10-26,"{""language"": ""ES"", ""currency"": ""EUR""}",9193.64,Gold,1 +8101,Jerry Maldonado,jamesnguyen@lyons.com,2021-08-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1916.74,Silver,0 +8102,Gary Figueroa,rrandall@hotmail.com,2022-08-28,"{""language"": ""ES"", ""currency"": ""GBP""}",2899.6,Silver,0 +8103,Douglas Martinez,davismario@gmail.com,2023-08-24,"{""language"": ""EN"", ""currency"": ""GBP""}",1561.55,Bronze,1 +8104,Paul Yang,curtiskatie@hotmail.com,2020-08-18,"{""language"": ""IT"", ""currency"": ""MXN""}",1748.55,Silver,0 +8105,Monica Hawkins,holmesjason@yahoo.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""CAD""}",4971.95,Silver,0 +8106,Gabriel Massey,wgarcia@haynes-cabrera.com,2024-03-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9926.75,Gold,1 +8107,John Reyes,webbsteven@morrison-sullivan.net,2023-11-21,"{""language"": ""IT"", ""currency"": ""CAD""}",2561.76,Bronze,1 +8108,Randall Jackson,hannahsimpson@yahoo.com,2022-05-28,"{""language"": ""ES"", ""currency"": ""EUR""}",2266.24,Silver,0 +8109,Keith Jones,qweber@chen-watson.com,2021-07-18,"{""language"": ""FR"", ""currency"": ""CAD""}",3392.21,Silver,0 +8110,Jonathan Thompson,amber61@robinson.org,2021-12-12,"{""language"": ""FR"", ""currency"": ""GBP""}",3058.54,Gold,0 +8111,Karen Oconnor,russellglover@lynch-bautista.com,2022-01-24,"{""language"": ""IT"", ""currency"": ""GBP""}",5234.97,Gold,0 +8112,Christina Rodriguez,arielfletcher@hotmail.com,2020-05-13,"{""language"": ""EN"", ""currency"": ""GBP""}",7496.85,Bronze,0 +8113,Thomas Gutierrez,whitecorey@clark.com,2024-05-06,"{""language"": ""IT"", ""currency"": ""GBP""}",4570.78,Silver,1 +8114,Breanna Martin,marygriffith@page.org,2020-06-16,"{""language"": ""IT"", ""currency"": ""GBP""}",5190.51,Silver,0 +8115,Anthony Hamilton,kimberlysalazar@miller-jimenez.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""USD""}",4060.43,Gold,1 +8116,Roger Shaffer,iwilliams@yahoo.com,2024-11-17,"{""language"": ""ES"", ""currency"": ""GBP""}",5398.73,Silver,1 +8117,Joe Marsh,cassandra38@gutierrez-lowery.org,2022-09-28,"{""language"": ""IT"", ""currency"": ""MXN""}",7016.43,Gold,1 +8118,Christopher Richards,angela95@yahoo.com,2022-09-07,"{""language"": ""DE"", ""currency"": ""CAD""}",9898.85,Gold,1 +8119,Vanessa Walters,sarahkaiser@lamb-gordon.com,2024-12-10,"{""language"": ""FR"", ""currency"": ""USD""}",7711.95,Silver,1 +8120,Christina Barker,curtiseric@hotmail.com,2020-07-14,"{""language"": ""EN"", ""currency"": ""GBP""}",2987.01,Gold,1 +8121,John Stevens,kim59@floyd-rice.biz,2024-05-28,"{""language"": ""DE"", ""currency"": ""GBP""}",525.66,Silver,1 +8122,Stephanie Bailey,halljoshua@price.com,2021-10-11,"{""language"": ""ES"", ""currency"": ""CAD""}",2273.67,Bronze,1 +8123,Adam Buchanan,jeremythomas@graves.biz,2020-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",538.71,Gold,0 +8124,Peggy Brooks,sscott@clark-smith.com,2022-08-10,"{""language"": ""EN"", ""currency"": ""MXN""}",4466.18,Gold,0 +8125,Mary Banks,isims@mcdonald.org,2020-06-20,"{""language"": ""DE"", ""currency"": ""USD""}",2439.41,Gold,1 +8126,Michael Warner,wyattjonathan@walter.com,2020-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",9721.36,Gold,1 +8127,Kaitlyn Osborne,billy11@hotmail.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""USD""}",1085.37,Bronze,0 +8128,Ashley Andrews,johngarrett@johnson.com,2020-08-04,"{""language"": ""FR"", ""currency"": ""USD""}",4174.26,Bronze,1 +8129,Robert Shaw,tammy89@prince-james.info,2024-07-11,"{""language"": ""DE"", ""currency"": ""GBP""}",4566.99,Silver,1 +8130,Garrett Young,tylerjames@franklin-smith.com,2020-11-09,"{""language"": ""FR"", ""currency"": ""USD""}",1152.19,Gold,0 +8131,Margaret Cain,williamsjoanna@yahoo.com,2020-06-17,"{""language"": ""FR"", ""currency"": ""GBP""}",3684.96,Gold,1 +8132,Christopher Day,rodriguezwilliam@yahoo.com,2020-12-01,"{""language"": ""EN"", ""currency"": ""CAD""}",767.37,Gold,0 +8133,Tammy Sanchez,manderson@hotmail.com,2022-05-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7651.49,Silver,1 +8134,Eric Austin,umoreno@hotmail.com,2023-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",1886.62,Silver,0 +8135,Annette Parks,teresacampbell@white.com,2021-09-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7126.28,Silver,0 +8136,Jason Suarez,amandagood@bolton.com,2024-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",724.93,Gold,0 +8137,Debra Anderson,cday@beard.com,2021-02-18,"{""language"": ""ES"", ""currency"": ""CAD""}",5147.54,Gold,1 +8138,James Thompson,xfernandez@hotmail.com,2024-09-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1104.86,Gold,0 +8139,Tracy Andrews,brandi70@yahoo.com,2021-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",8556.85,Silver,0 +8140,James Dunn,adrienneedwards@hotmail.com,2021-03-10,"{""language"": ""IT"", ""currency"": ""USD""}",7334.52,Bronze,1 +8141,James Moreno,holtkatelyn@gmail.com,2021-01-09,"{""language"": ""IT"", ""currency"": ""EUR""}",8921.02,Gold,0 +8142,Natalie Green,luceronathan@gmail.com,2021-11-21,"{""language"": ""ES"", ""currency"": ""CAD""}",1443.49,Silver,0 +8143,Melissa Odom,brandyalvarez@martinez.com,2021-01-28,"{""language"": ""FR"", ""currency"": ""USD""}",4967.81,Bronze,1 +8144,Donald Gutierrez,michelle99@berry-carter.com,2022-07-06,"{""language"": ""DE"", ""currency"": ""GBP""}",6943.14,Bronze,1 +8145,Zachary Rivera,owhite@williams.com,2023-01-05,"{""language"": ""DE"", ""currency"": ""USD""}",4230.41,Bronze,1 +8146,Craig Paul,kelly32@harper.org,2022-04-03,"{""language"": ""EN"", ""currency"": ""GBP""}",5546.62,Gold,0 +8147,Christina Nunez,msoto@hotmail.com,2023-12-14,"{""language"": ""FR"", ""currency"": ""EUR""}",3565.95,Silver,0 +8148,Ryan Lopez,lisa79@gmail.com,2021-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",9827.78,Bronze,0 +8149,Alicia Dawson,clozano@davis.com,2022-10-17,"{""language"": ""ES"", ""currency"": ""CAD""}",2073.19,Gold,0 +8150,Robert Cook,lthompson@yahoo.com,2022-03-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4069.89,Bronze,1 +8151,Steve Jimenez,david15@gmail.com,2020-01-09,"{""language"": ""ES"", ""currency"": ""MXN""}",7489.86,Gold,1 +8152,Kristin Young,cheyenne46@poole.info,2020-10-08,"{""language"": ""DE"", ""currency"": ""MXN""}",5888.54,Bronze,0 +8153,Christie Russo,cervantesstephanie@yahoo.com,2020-11-07,"{""language"": ""DE"", ""currency"": ""CAD""}",5169.64,Gold,1 +8154,Corey Davis,fowlermegan@ferguson.com,2021-04-30,"{""language"": ""ES"", ""currency"": ""MXN""}",6343.98,Silver,0 +8155,Patrick Guzman,randerson@hotmail.com,2021-11-23,"{""language"": ""ES"", ""currency"": ""GBP""}",4886.83,Bronze,0 +8156,Gregory Hodges,franciscraig@steele.net,2022-07-26,"{""language"": ""EN"", ""currency"": ""EUR""}",2199.88,Bronze,0 +8157,Christine Gutierrez,campbelljeremy@gmail.com,2022-08-31,"{""language"": ""ES"", ""currency"": ""GBP""}",2436.34,Gold,1 +8158,Laura Bell,terri09@yahoo.com,2022-12-09,"{""language"": ""EN"", ""currency"": ""EUR""}",7810.4,Silver,0 +8159,Michael Hernandez,dbrown@hotmail.com,2021-05-01,"{""language"": ""EN"", ""currency"": ""EUR""}",3668.45,Gold,1 +8160,Dorothy Cooley,aclark@mendoza.com,2020-10-30,"{""language"": ""FR"", ""currency"": ""MXN""}",821.54,Bronze,0 +8161,Billy Singh,charlesgonzales@yahoo.com,2021-03-31,"{""language"": ""ES"", ""currency"": ""GBP""}",5082.84,Gold,1 +8162,Todd Reynolds,xsimpson@gmail.com,2020-03-02,"{""language"": ""FR"", ""currency"": ""CAD""}",1703.68,Silver,0 +8163,Heather Bates,julie04@benton.com,2023-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",2174.7,Gold,1 +8164,Ryan Garcia,scontreras@bradley.com,2021-07-20,"{""language"": ""DE"", ""currency"": ""CAD""}",4303.52,Gold,0 +8165,Todd Mills,josephandrews@nelson.com,2022-06-26,"{""language"": ""DE"", ""currency"": ""EUR""}",6322.28,Bronze,1 +8166,Tammy Foster,fmalone@davis.com,2022-08-30,"{""language"": ""FR"", ""currency"": ""GBP""}",9640.29,Silver,1 +8167,Amanda Mills,brownalyssa@holland.biz,2021-12-12,"{""language"": ""ES"", ""currency"": ""GBP""}",2810.66,Bronze,0 +8168,Briana Miranda,srice@hotmail.com,2020-12-20,"{""language"": ""DE"", ""currency"": ""USD""}",568.91,Bronze,1 +8169,Meagan Blackwell,patty76@gmail.com,2020-04-04,"{""language"": ""IT"", ""currency"": ""GBP""}",1707.67,Gold,0 +8170,Alexis Smith,jennawillis@yahoo.com,2023-11-01,"{""language"": ""EN"", ""currency"": ""CAD""}",6893.58,Gold,0 +8171,Jamie Martinez,harperlinda@hotmail.com,2024-01-12,"{""language"": ""ES"", ""currency"": ""MXN""}",3061.94,Silver,1 +8172,Russell Cox,agordon@hotmail.com,2023-11-03,"{""language"": ""ES"", ""currency"": ""GBP""}",5554.07,Bronze,0 +8173,Michael Simmons,edward41@castaneda.info,2021-11-02,"{""language"": ""ES"", ""currency"": ""EUR""}",4090.31,Silver,0 +8174,Jasmine Curtis,jgarza@odom-smith.com,2021-05-13,"{""language"": ""ES"", ""currency"": ""MXN""}",3495.83,Bronze,0 +8175,Meghan Ramirez,brockmaria@stevens.com,2023-02-08,"{""language"": ""EN"", ""currency"": ""GBP""}",1594.73,Bronze,0 +8176,Bryan Dawson DDS,rmartin@cole.com,2021-06-25,"{""language"": ""EN"", ""currency"": ""EUR""}",4763.72,Silver,1 +8177,Jeremy Moore,raychris@gmail.com,2020-09-07,"{""language"": ""EN"", ""currency"": ""CAD""}",849.15,Gold,0 +8178,Carol Jordan,claudiacruz@nunez.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""EUR""}",7110.56,Gold,1 +8179,Patrick Bishop,msheppard@williams-rodriguez.org,2021-06-15,"{""language"": ""DE"", ""currency"": ""EUR""}",3173.92,Gold,0 +8180,Travis Rubio,ctaylor@hampton.com,2020-04-20,"{""language"": ""ES"", ""currency"": ""USD""}",935.21,Silver,1 +8181,Michael Evans,jorgewashington@gmail.com,2024-06-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4607.85,Gold,1 +8182,Deborah Walters,aarongarcia@richardson.com,2019-12-27,"{""language"": ""ES"", ""currency"": ""USD""}",3817.14,Gold,0 +8183,Perry Johnson,grahamlori@frederick.com,2021-04-20,"{""language"": ""ES"", ""currency"": ""MXN""}",4564.87,Gold,1 +8184,Frank Hess,lbradshaw@gonzalez.org,2021-08-14,"{""language"": ""IT"", ""currency"": ""GBP""}",5748.13,Bronze,0 +8185,Paula Thomas,hannah41@yahoo.com,2024-07-06,"{""language"": ""ES"", ""currency"": ""GBP""}",7791.2,Gold,0 +8186,Dwayne Parks,montoyadaniel@gmail.com,2023-11-17,"{""language"": ""FR"", ""currency"": ""EUR""}",3377.57,Gold,1 +8187,Wendy Garcia,kimberly14@mendez.com,2024-12-02,"{""language"": ""ES"", ""currency"": ""GBP""}",5443.1,Bronze,1 +8188,Jessica Adams,anthony68@gmail.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""GBP""}",6346.27,Silver,0 +8189,Toni Flores,patrick82@yahoo.com,2022-04-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4807.04,Gold,1 +8190,Roy Alexander,mariamorris@wright-scott.info,2022-10-30,"{""language"": ""FR"", ""currency"": ""USD""}",4520.55,Gold,1 +8191,Dan Hahn,juliarojas@bennett.com,2020-05-18,"{""language"": ""IT"", ""currency"": ""MXN""}",2860.25,Silver,0 +8192,Christopher Williams,michaelnorton@thomas.com,2022-10-03,"{""language"": ""EN"", ""currency"": ""MXN""}",6252.58,Silver,1 +8193,Adam Garrison,anthonyjones@lawson-jones.com,2020-06-16,"{""language"": ""EN"", ""currency"": ""EUR""}",6670.76,Silver,1 +8194,David Franco,matajohn@yahoo.com,2023-09-05,"{""language"": ""ES"", ""currency"": ""EUR""}",1928.96,Gold,0 +8195,Christine Anthony,jamesshannon@hotmail.com,2022-09-12,"{""language"": ""ES"", ""currency"": ""EUR""}",5324.48,Silver,0 +8196,Nathan Richardson,ortizthomas@baird.org,2021-08-26,"{""language"": ""EN"", ""currency"": ""USD""}",2276.53,Gold,0 +8197,George Goodman DVM,reidgabrielle@hotmail.com,2021-12-24,"{""language"": ""FR"", ""currency"": ""EUR""}",9052.85,Bronze,1 +8198,Brandon Erickson,riverajustin@dickerson.biz,2023-06-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6424.34,Bronze,0 +8199,Lee Hall,willie52@sweeney.biz,2022-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",8305.01,Gold,0 +8200,Tiffany Johns,sergio62@matthews.biz,2022-05-09,"{""language"": ""FR"", ""currency"": ""EUR""}",4455.68,Bronze,0 +8201,Lisa Garcia,evansnicholas@santos.biz,2021-09-18,"{""language"": ""IT"", ""currency"": ""MXN""}",8348.29,Silver,1 +8202,Emily Williams,jennifer94@yahoo.com,2020-04-22,"{""language"": ""FR"", ""currency"": ""EUR""}",3696.13,Silver,0 +8203,Hector Mccullough,farleysuzanne@ryan-maldonado.org,2023-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",2944.0,Gold,1 +8204,Christopher Proctor,villadaniel@frey.com,2022-05-14,"{""language"": ""EN"", ""currency"": ""USD""}",9425.44,Bronze,0 +8205,Matthew Guerrero,millerdawn@gmail.com,2023-01-25,"{""language"": ""EN"", ""currency"": ""CAD""}",2622.91,Silver,1 +8206,Nancy Huynh,matthew87@keith.info,2023-08-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5988.69,Bronze,0 +8207,Megan Becker,maryrubio@yahoo.com,2024-05-21,"{""language"": ""FR"", ""currency"": ""USD""}",1830.63,Gold,1 +8208,Kyle Riddle,obrienerica@gmail.com,2020-08-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7520.49,Bronze,0 +8209,Amanda Carter,regina92@bishop-torres.com,2023-09-05,"{""language"": ""IT"", ""currency"": ""GBP""}",9428.52,Bronze,0 +8210,Jordan Scott,sheilawilliams@yahoo.com,2020-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",4636.05,Bronze,0 +8211,Karen Johnson,william84@yahoo.com,2023-12-01,"{""language"": ""IT"", ""currency"": ""MXN""}",3441.83,Gold,1 +8212,Sara Robbins,obailey@sexton-beasley.org,2021-10-07,"{""language"": ""DE"", ""currency"": ""MXN""}",6501.28,Bronze,1 +8213,Amy Bowen,gbanks@yahoo.com,2024-02-06,"{""language"": ""FR"", ""currency"": ""CAD""}",2962.09,Bronze,0 +8214,Dave Vazquez,robynjacobson@gomez.net,2021-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",662.76,Gold,1 +8215,Kaitlyn Wilson,robertleonard@burton.com,2023-05-22,"{""language"": ""ES"", ""currency"": ""MXN""}",6231.05,Gold,1 +8216,Charles Barnes,todd40@gonzales-bradley.net,2021-06-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4482.53,Bronze,1 +8217,Bonnie Moran,amandahudson@gmail.com,2022-12-25,"{""language"": ""ES"", ""currency"": ""MXN""}",9196.94,Silver,0 +8218,Eric Taylor,penapatrick@webb-cooper.net,2022-12-18,"{""language"": ""EN"", ""currency"": ""EUR""}",8227.74,Gold,1 +8219,Heather Perry,vmacdonald@yahoo.com,2020-07-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2634.87,Bronze,0 +8220,Lisa Hull,mthornton@hotmail.com,2020-05-16,"{""language"": ""ES"", ""currency"": ""EUR""}",4805.97,Bronze,0 +8221,Kathryn Brown,holderarthur@hotmail.com,2020-08-24,"{""language"": ""EN"", ""currency"": ""MXN""}",7153.23,Silver,1 +8222,Justin Reilly,lawrence54@king.org,2023-11-18,"{""language"": ""ES"", ""currency"": ""MXN""}",221.43,Silver,0 +8223,Angela Jones,soniamorrison@yahoo.com,2022-05-29,"{""language"": ""ES"", ""currency"": ""MXN""}",1798.97,Bronze,0 +8224,Sara Jones,tbrown@roberts.com,2024-02-22,"{""language"": ""ES"", ""currency"": ""USD""}",8769.16,Bronze,0 +8225,Frank Patel,jordanjacob@adams-barnett.com,2022-06-11,"{""language"": ""IT"", ""currency"": ""EUR""}",3658.44,Silver,0 +8226,Donald Hall,ashleybell@hammond.com,2021-07-05,"{""language"": ""EN"", ""currency"": ""CAD""}",1724.0,Bronze,1 +8227,Gregory Mcdonald,vmiller@meyer-hanson.biz,2020-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8636.79,Bronze,0 +8228,Matthew Delacruz,murphystacy@hotmail.com,2021-02-12,"{""language"": ""ES"", ""currency"": ""CAD""}",254.15,Bronze,0 +8229,Brenda Waters,browndiana@gmail.com,2024-03-20,"{""language"": ""ES"", ""currency"": ""MXN""}",3426.4,Gold,0 +8230,Joseph Adams,uparker@cole.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",1491.59,Bronze,0 +8231,Kristen Garcia,mitchellwilliam@gmail.com,2023-12-09,"{""language"": ""FR"", ""currency"": ""USD""}",2420.22,Silver,1 +8232,Danny Sampson,brandonvaldez@holt.org,2021-09-06,"{""language"": ""IT"", ""currency"": ""GBP""}",6394.4,Silver,1 +8233,Lisa Gibson,debbie69@gonzalez.biz,2021-08-26,"{""language"": ""IT"", ""currency"": ""USD""}",3704.71,Silver,0 +8234,Lisa Myers,kwagner@gmail.com,2021-07-09,"{""language"": ""FR"", ""currency"": ""USD""}",1234.0,Silver,1 +8235,Alex Turner,scott49@yahoo.com,2022-01-07,"{""language"": ""IT"", ""currency"": ""EUR""}",6764.11,Silver,0 +8236,Raymond Morales,dave47@johnson-williamson.com,2023-03-14,"{""language"": ""IT"", ""currency"": ""CAD""}",2301.72,Silver,0 +8237,Earl Sullivan,dennissusan@deleon-campbell.com,2022-10-23,"{""language"": ""ES"", ""currency"": ""MXN""}",916.48,Silver,1 +8238,Brandy Landry,eric15@roth.com,2021-05-22,"{""language"": ""EN"", ""currency"": ""MXN""}",5725.4,Silver,1 +8239,Eddie Barber,farmerautumn@hotmail.com,2023-11-15,"{""language"": ""FR"", ""currency"": ""EUR""}",7430.83,Bronze,1 +8240,Melissa Blake,alexfranco@chapman.com,2021-01-24,"{""language"": ""DE"", ""currency"": ""GBP""}",8870.57,Silver,0 +8241,William Morris,christopher26@gmail.com,2022-05-26,"{""language"": ""EN"", ""currency"": ""CAD""}",5942.69,Gold,0 +8242,David Hester,meadowsbrian@english.com,2020-12-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7365.4,Silver,0 +8243,Jasmine Stewart,alexisball@yahoo.com,2023-05-04,"{""language"": ""ES"", ""currency"": ""GBP""}",4789.51,Silver,1 +8244,Jenna Ellison,vmarks@carroll.com,2020-05-11,"{""language"": ""DE"", ""currency"": ""EUR""}",6708.18,Bronze,1 +8245,Shirley Murphy,caseypatel@gmail.com,2023-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",5151.24,Gold,1 +8246,Anthony Diaz,alex87@watts.net,2022-07-20,"{""language"": ""EN"", ""currency"": ""EUR""}",7968.81,Bronze,1 +8247,Nathan Peterson,hensonadam@woodard-brown.com,2024-09-12,"{""language"": ""ES"", ""currency"": ""USD""}",5528.72,Gold,0 +8248,Melinda Henderson,markward@maldonado-webb.com,2022-12-16,"{""language"": ""ES"", ""currency"": ""GBP""}",5950.97,Gold,0 +8249,James Miles,amcdonald@rodriguez-duncan.com,2022-02-16,"{""language"": ""IT"", ""currency"": ""GBP""}",1664.06,Bronze,0 +8250,Jordan Kim,acostasandra@gmail.com,2022-01-27,"{""language"": ""EN"", ""currency"": ""CAD""}",4952.17,Silver,0 +8251,Rita Mcgrath,ycooper@watts.org,2023-03-15,"{""language"": ""IT"", ""currency"": ""MXN""}",6438.07,Bronze,0 +8252,Amanda Oconnor,umartinez@hotmail.com,2020-10-16,"{""language"": ""FR"", ""currency"": ""USD""}",3077.17,Bronze,1 +8253,Tracey Carney,crystalhodge@lopez.com,2022-11-22,"{""language"": ""FR"", ""currency"": ""MXN""}",6257.77,Bronze,0 +8254,Bradley Shaw,powellkatelyn@gmail.com,2021-08-21,"{""language"": ""FR"", ""currency"": ""MXN""}",2470.12,Bronze,0 +8255,Sandra Park,zwilson@yahoo.com,2023-12-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7943.87,Gold,0 +8256,Travis Gonzalez,chase06@miller-little.com,2023-10-30,"{""language"": ""ES"", ""currency"": ""USD""}",2564.04,Gold,1 +8257,Kelly Lee,johnsondavid@brown.com,2020-06-13,"{""language"": ""EN"", ""currency"": ""CAD""}",2431.26,Gold,0 +8258,Amanda Richardson,susan19@jenkins.net,2021-04-03,"{""language"": ""IT"", ""currency"": ""EUR""}",9841.87,Gold,0 +8259,Jamie Brown,figueroaheidi@hotmail.com,2023-06-24,"{""language"": ""FR"", ""currency"": ""USD""}",189.39,Bronze,0 +8260,Tiffany Poole,philip42@lee-lara.com,2023-09-13,"{""language"": ""ES"", ""currency"": ""MXN""}",1444.86,Silver,1 +8261,Sherry Mann,baileykimberly@yahoo.com,2021-05-26,"{""language"": ""IT"", ""currency"": ""MXN""}",6591.98,Bronze,0 +8262,Blake Wilkerson,hansenjackson@green.com,2020-03-30,"{""language"": ""IT"", ""currency"": ""MXN""}",7551.0,Bronze,1 +8263,Mrs. Rachel Morrison,uwebb@gmail.com,2023-11-15,"{""language"": ""ES"", ""currency"": ""CAD""}",6746.42,Silver,1 +8264,Crystal Taylor,gentrytony@hotmail.com,2022-04-24,"{""language"": ""ES"", ""currency"": ""EUR""}",2200.98,Gold,0 +8265,Lauren Crawford,umarks@stone.com,2024-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",6108.48,Gold,0 +8266,Julie Ellis,robertcamacho@contreras.org,2023-08-29,"{""language"": ""IT"", ""currency"": ""EUR""}",5259.13,Gold,0 +8267,Gregory Garcia,ryan38@finley.com,2021-03-01,"{""language"": ""DE"", ""currency"": ""MXN""}",1168.68,Silver,1 +8268,Peggy White,asmith@wilson-jennings.info,2023-02-09,"{""language"": ""IT"", ""currency"": ""CAD""}",3085.53,Silver,1 +8269,Brian Delgado,ojackson@hotmail.com,2020-06-19,"{""language"": ""IT"", ""currency"": ""CAD""}",9377.34,Bronze,0 +8270,Suzanne Walker,meganbuck@casey-jones.com,2021-04-05,"{""language"": ""DE"", ""currency"": ""GBP""}",5291.73,Gold,0 +8271,Jonathan Woodward,stevenhoward@martinez.com,2021-09-07,"{""language"": ""EN"", ""currency"": ""EUR""}",7272.16,Bronze,1 +8272,Matthew Parker,danielle51@randolph.com,2021-10-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8934.61,Bronze,0 +8273,Suzanne Freeman,evanssusan@monroe.biz,2023-10-30,"{""language"": ""FR"", ""currency"": ""GBP""}",4669.29,Gold,1 +8274,Allison Duarte,hodgesjoseph@butler-ortiz.com,2022-02-01,"{""language"": ""ES"", ""currency"": ""GBP""}",297.75,Silver,1 +8275,Debra Rosario,vking@horne.org,2021-04-21,"{""language"": ""IT"", ""currency"": ""GBP""}",1662.74,Bronze,1 +8276,Jacqueline Rich,cwiley@yahoo.com,2022-01-21,"{""language"": ""ES"", ""currency"": ""EUR""}",7522.83,Bronze,0 +8277,Sharon Park,montesdebra@gmail.com,2023-11-16,"{""language"": ""EN"", ""currency"": ""MXN""}",6787.0,Silver,1 +8278,Stanley Colon,jonesnathan@campbell.biz,2023-01-13,"{""language"": ""FR"", ""currency"": ""USD""}",4348.81,Bronze,0 +8279,Dawn Rangel,christinafrye@marquez-tate.info,2022-10-29,"{""language"": ""EN"", ""currency"": ""GBP""}",3483.9,Bronze,0 +8280,Alexander Patterson,pharrison@gmail.com,2020-09-30,"{""language"": ""EN"", ""currency"": ""EUR""}",1063.42,Silver,0 +8281,Kevin Banks,nancy38@gmail.com,2020-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",2164.75,Gold,1 +8282,Stephen Hale,shirley19@mitchell.com,2022-01-30,"{""language"": ""FR"", ""currency"": ""GBP""}",7458.87,Silver,0 +8283,Michael Stevenson,jasonwatson@gmail.com,2021-12-21,"{""language"": ""ES"", ""currency"": ""MXN""}",4863.35,Bronze,0 +8284,Rebekah Clark,allisonwilliams@gordon.com,2021-10-11,"{""language"": ""IT"", ""currency"": ""CAD""}",9496.26,Gold,1 +8285,Gabriella Carter,avilla@pierce.com,2023-10-19,"{""language"": ""ES"", ""currency"": ""MXN""}",8423.73,Gold,1 +8286,Anita Murillo,ldavis@johnson.biz,2023-07-19,"{""language"": ""IT"", ""currency"": ""USD""}",499.63,Silver,1 +8287,Jason Koch,melissa34@gmail.com,2021-01-10,"{""language"": ""ES"", ""currency"": ""EUR""}",4212.76,Gold,1 +8288,Andrew Tate,carl58@thomas.com,2021-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",9249.65,Gold,1 +8289,Tammy Andrews,oconnelljoan@gmail.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""MXN""}",6438.32,Gold,1 +8290,Travis Coleman,dgardner@gmail.com,2021-06-02,"{""language"": ""FR"", ""currency"": ""CAD""}",9477.99,Gold,0 +8291,Jessica Park,zmorton@rogers.org,2021-06-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9565.47,Gold,0 +8292,John Parsons,kathleen75@gibson.net,2024-09-12,"{""language"": ""FR"", ""currency"": ""USD""}",454.22,Bronze,1 +8293,Mr. Joseph Cooke,iking@ellis.biz,2021-09-16,"{""language"": ""IT"", ""currency"": ""CAD""}",593.1,Silver,1 +8294,Robert Wheeler,xhall@walker.biz,2023-07-21,"{""language"": ""ES"", ""currency"": ""CAD""}",9505.17,Bronze,1 +8295,Carol Diaz,kholden@taylor.biz,2023-01-29,"{""language"": ""DE"", ""currency"": ""EUR""}",6260.47,Silver,0 +8296,Richard Rhodes,zjones@wilson-ferguson.biz,2024-10-21,"{""language"": ""FR"", ""currency"": ""USD""}",2987.83,Bronze,0 +8297,Lisa Finley,chelseaowens@gmail.com,2020-07-30,"{""language"": ""DE"", ""currency"": ""GBP""}",2686.58,Silver,0 +8298,Bianca Harper,batessarah@mcfarland.com,2022-02-09,"{""language"": ""FR"", ""currency"": ""GBP""}",6921.4,Gold,1 +8299,Bryan Ellis,scottbrenda@nichols.com,2021-04-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5086.07,Silver,0 +8300,John Ramsey,sherimcconnell@caldwell.net,2022-11-28,"{""language"": ""ES"", ""currency"": ""USD""}",7073.71,Gold,0 +8301,Lori Gibbs,moorebarbara@patterson.org,2024-06-28,"{""language"": ""DE"", ""currency"": ""USD""}",9075.48,Bronze,0 +8302,Ashley Heath,tinajackson@yahoo.com,2022-06-24,"{""language"": ""IT"", ""currency"": ""MXN""}",5588.41,Bronze,1 +8303,Gerald Thompson,mjohnson@hotmail.com,2022-01-12,"{""language"": ""FR"", ""currency"": ""EUR""}",8197.26,Gold,0 +8304,Samantha Hamilton,charles80@hotmail.com,2020-06-05,"{""language"": ""IT"", ""currency"": ""MXN""}",8371.17,Bronze,1 +8305,Bonnie Perez,kturner@hotmail.com,2022-07-02,"{""language"": ""IT"", ""currency"": ""USD""}",794.19,Gold,1 +8306,Karina Swanson,kellicamacho@tucker.info,2024-11-22,"{""language"": ""IT"", ""currency"": ""CAD""}",359.6,Gold,1 +8307,Brian Dickerson,cassandra12@parker-adams.info,2024-01-04,"{""language"": ""DE"", ""currency"": ""EUR""}",4578.18,Silver,0 +8308,Jessica Fitzgerald,curtisthompson@hotmail.com,2023-11-14,"{""language"": ""DE"", ""currency"": ""CAD""}",5874.23,Bronze,0 +8309,Jordan Mitchell,martha82@gmail.com,2022-05-06,"{""language"": ""IT"", ""currency"": ""USD""}",6277.54,Gold,1 +8310,Jennifer Lee,rodriguezalyssa@gmail.com,2022-03-21,"{""language"": ""DE"", ""currency"": ""MXN""}",3382.95,Bronze,1 +8311,Bianca Johnson,jake60@robinson.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""USD""}",8204.74,Silver,1 +8312,Michael Cox,davisdawn@hotmail.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""EUR""}",5009.76,Gold,1 +8313,Terri Christian,sarawilliamson@castaneda.biz,2021-09-28,"{""language"": ""ES"", ""currency"": ""MXN""}",5957.08,Silver,0 +8314,Oscar Butler,amandajenkins@wilson-hanson.com,2020-05-01,"{""language"": ""FR"", ""currency"": ""USD""}",9484.63,Silver,0 +8315,Diana Baker,mwong@gmail.com,2021-09-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2148.11,Gold,0 +8316,Michele Hurst,ryan62@wells-leblanc.org,2024-08-14,"{""language"": ""DE"", ""currency"": ""USD""}",3816.71,Bronze,1 +8317,Taylor Watts,brent81@yahoo.com,2022-08-17,"{""language"": ""EN"", ""currency"": ""USD""}",98.19,Silver,0 +8318,Kimberly Dixon,adamsdenise@gmail.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""USD""}",1602.75,Silver,0 +8319,Joy Molina,lisahoward@yahoo.com,2021-08-15,"{""language"": ""ES"", ""currency"": ""CAD""}",2809.64,Gold,1 +8320,Katrina Lopez,hrodriguez@hotmail.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",8159.52,Gold,0 +8321,Katherine Benitez,martinezlaura@hotmail.com,2020-10-26,"{""language"": ""IT"", ""currency"": ""MXN""}",1839.11,Silver,0 +8322,Scott Richardson,wgibson@hotmail.com,2024-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",3222.05,Gold,1 +8323,Crystal Farley,tstewart@moore.com,2021-10-30,"{""language"": ""IT"", ""currency"": ""GBP""}",2431.44,Gold,1 +8324,Jenna Ball,carl55@yahoo.com,2021-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",7170.18,Bronze,0 +8325,Carolyn Mack,debra37@le.net,2021-02-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1245.35,Bronze,0 +8326,Veronica Martin,jacob97@simpson.com,2023-07-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9629.48,Bronze,0 +8327,Cassandra Morton,zbell@clark-spence.biz,2022-02-01,"{""language"": ""EN"", ""currency"": ""CAD""}",163.92,Bronze,1 +8328,Wendy Frederick,pbecker@freeman.biz,2022-01-23,"{""language"": ""EN"", ""currency"": ""MXN""}",810.92,Bronze,0 +8329,Tyler Robinson,tiffanywashington@smith.org,2024-03-04,"{""language"": ""EN"", ""currency"": ""MXN""}",5710.6,Bronze,0 +8330,Katherine Martin,lukeholder@hotmail.com,2020-05-03,"{""language"": ""FR"", ""currency"": ""USD""}",6410.31,Silver,0 +8331,Stacey King,lauraweeks@dickson.info,2020-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",4677.29,Gold,1 +8332,Brian Brown,ppeters@lang.info,2020-09-04,"{""language"": ""ES"", ""currency"": ""GBP""}",3614.64,Silver,1 +8333,Douglas Mcdonald,susanmcclure@ford-gonzalez.com,2024-01-25,"{""language"": ""ES"", ""currency"": ""CAD""}",4232.06,Silver,0 +8334,Joseph Galloway,michaelbarker@yahoo.com,2020-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",3268.57,Gold,1 +8335,Heather Thompson,robin51@wright.com,2022-07-29,"{""language"": ""DE"", ""currency"": ""EUR""}",4046.69,Silver,1 +8336,Allen Anderson,quinnerin@yahoo.com,2021-10-28,"{""language"": ""IT"", ""currency"": ""GBP""}",6875.38,Silver,1 +8337,Caitlin Pearson,qvillanueva@gmail.com,2021-11-04,"{""language"": ""DE"", ""currency"": ""GBP""}",922.55,Gold,0 +8338,John Nicholson,zwarren@carpenter.org,2021-05-06,"{""language"": ""ES"", ""currency"": ""CAD""}",7612.59,Gold,0 +8339,Molly Gibson,zhernandez@yahoo.com,2021-12-01,"{""language"": ""EN"", ""currency"": ""EUR""}",1348.6,Gold,0 +8340,Tony Cruz,jordannicholas@hotmail.com,2020-02-18,"{""language"": ""DE"", ""currency"": ""CAD""}",513.15,Silver,1 +8341,Jimmy Hoffman,joseph40@hotmail.com,2023-04-03,"{""language"": ""DE"", ""currency"": ""GBP""}",2862.44,Silver,0 +8342,Lisa Jordan,ganderson@gmail.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""CAD""}",6096.66,Gold,1 +8343,Tracy Carney,cynthiaallen@thomas.com,2024-11-04,"{""language"": ""EN"", ""currency"": ""GBP""}",94.6,Silver,1 +8344,Charles Fuller,fischerlouis@yahoo.com,2023-08-16,"{""language"": ""ES"", ""currency"": ""EUR""}",6553.96,Bronze,0 +8345,James Camacho,philip98@gmail.com,2021-02-07,"{""language"": ""EN"", ""currency"": ""EUR""}",3604.84,Silver,0 +8346,Gary Kane,medinatimothy@hotmail.com,2022-12-19,"{""language"": ""IT"", ""currency"": ""EUR""}",8439.01,Silver,0 +8347,Lisa White,davidellison@quinn-smith.com,2023-10-15,"{""language"": ""IT"", ""currency"": ""GBP""}",5926.53,Bronze,0 +8348,Daniel Bishop,james41@jensen.com,2024-09-13,"{""language"": ""ES"", ""currency"": ""EUR""}",1527.92,Gold,0 +8349,Michael Coleman,pwade@gmail.com,2021-01-14,"{""language"": ""IT"", ""currency"": ""CAD""}",8507.68,Silver,1 +8350,Brenda Brown,ucasey@gmail.com,2022-10-03,"{""language"": ""FR"", ""currency"": ""MXN""}",5244.08,Gold,0 +8351,Kurt Hayes,candacemcgee@yahoo.com,2021-10-13,"{""language"": ""EN"", ""currency"": ""USD""}",4564.64,Silver,0 +8352,Emma Morrison,tschultz@baker.com,2020-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",338.37,Gold,1 +8353,Suzanne Webster,mooremichael@alvarado.com,2021-10-02,"{""language"": ""FR"", ""currency"": ""CAD""}",2725.88,Gold,0 +8354,David Johnson,weissnathan@gmail.com,2020-01-25,"{""language"": ""IT"", ""currency"": ""MXN""}",7538.83,Bronze,0 +8355,Tara Reed,micheallee@goodwin.info,2024-05-21,"{""language"": ""DE"", ""currency"": ""MXN""}",7881.09,Silver,0 +8356,Megan Michael,deanna16@morrison.com,2022-10-23,"{""language"": ""FR"", ""currency"": ""EUR""}",4350.08,Bronze,0 +8357,Catherine Hart,sandrabenson@yahoo.com,2024-06-21,"{""language"": ""ES"", ""currency"": ""MXN""}",6199.77,Gold,1 +8358,Becky Chapman,joanhodges@gmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""MXN""}",7464.74,Silver,1 +8359,Leslie Hamilton,debrajenkins@yahoo.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7839.7,Silver,1 +8360,Kara Garcia,jamie36@gmail.com,2024-05-26,"{""language"": ""ES"", ""currency"": ""CAD""}",7132.93,Silver,0 +8361,Ray Mcdaniel,avargas@harris.com,2023-06-18,"{""language"": ""DE"", ""currency"": ""GBP""}",9303.14,Gold,0 +8362,Jessica Small,stevenszachary@sparks-burke.com,2020-02-06,"{""language"": ""DE"", ""currency"": ""GBP""}",7923.29,Bronze,1 +8363,Aaron Stanley,schneiderchristine@vance-lee.com,2024-01-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7337.12,Gold,0 +8364,Carrie Ashley,amygarcia@dennis.com,2021-10-07,"{""language"": ""IT"", ""currency"": ""USD""}",5863.0,Bronze,1 +8365,Brandon Cline,richardsoncatherine@powell.com,2022-10-18,"{""language"": ""ES"", ""currency"": ""EUR""}",2389.29,Gold,1 +8366,Robert Hernandez,wbenson@strong-thomas.org,2021-10-22,"{""language"": ""IT"", ""currency"": ""USD""}",3072.3,Gold,1 +8367,Scott Mathews,dgallegos@garcia.org,2024-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",6523.24,Bronze,0 +8368,Emily Johnson,rossjennifer@lewis-west.com,2020-08-03,"{""language"": ""IT"", ""currency"": ""MXN""}",3901.35,Bronze,0 +8369,Amber Brown,justin46@yahoo.com,2024-08-31,"{""language"": ""ES"", ""currency"": ""EUR""}",9635.86,Silver,0 +8370,Ian Howard,michael10@hotmail.com,2021-02-16,"{""language"": ""EN"", ""currency"": ""USD""}",4011.85,Gold,0 +8371,Angela Murray,crawfordkimberly@gmail.com,2022-02-25,"{""language"": ""EN"", ""currency"": ""GBP""}",5150.45,Silver,0 +8372,Sherry Martin,kwilson@gmail.com,2024-03-21,"{""language"": ""DE"", ""currency"": ""USD""}",7945.14,Bronze,1 +8373,Tina Gray,gmoore@porter.com,2021-12-27,"{""language"": ""EN"", ""currency"": ""GBP""}",7833.46,Gold,1 +8374,Mrs. Christina Madden,hernandezmelinda@hotmail.com,2020-09-22,"{""language"": ""ES"", ""currency"": ""MXN""}",7020.8,Silver,1 +8375,Andrea Jimenez,xgarcia@ramirez-ramos.info,2023-06-19,"{""language"": ""IT"", ""currency"": ""GBP""}",577.82,Gold,1 +8376,Micheal Watkins,sgarcia@hotmail.com,2022-05-30,"{""language"": ""FR"", ""currency"": ""USD""}",1956.03,Gold,1 +8377,Erik Kennedy,emilybird@hall.biz,2019-12-19,"{""language"": ""ES"", ""currency"": ""CAD""}",8603.51,Gold,1 +8378,Kelly Quinn,tracymorales@yahoo.com,2020-04-10,"{""language"": ""DE"", ""currency"": ""EUR""}",1968.03,Bronze,0 +8379,Nicholas Yoder,ericaevans@hotmail.com,2022-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",3768.25,Silver,1 +8380,Shane Flores,tochoa@gmail.com,2022-10-14,"{""language"": ""ES"", ""currency"": ""CAD""}",1294.33,Bronze,1 +8381,Casey Oliver,gibbsdavid@hotmail.com,2022-10-20,"{""language"": ""EN"", ""currency"": ""CAD""}",3152.77,Silver,0 +8382,Anthony Garza,daltonthomas@cherry.com,2021-03-01,"{""language"": ""EN"", ""currency"": ""CAD""}",4920.73,Gold,1 +8383,Samantha Stevens,brendanford@castro-marshall.biz,2020-10-24,"{""language"": ""IT"", ""currency"": ""GBP""}",9201.07,Silver,1 +8384,Tiffany Martinez,castillomelanie@yahoo.com,2021-02-19,"{""language"": ""IT"", ""currency"": ""USD""}",9192.72,Bronze,0 +8385,Mrs. Alexis Jones,samuel48@hotmail.com,2021-05-28,"{""language"": ""IT"", ""currency"": ""CAD""}",4178.92,Silver,0 +8386,Keith Cook,fschroeder@hotmail.com,2023-01-28,"{""language"": ""FR"", ""currency"": ""GBP""}",66.97,Silver,0 +8387,Mr. Daniel Charles,yjohnson@ford.info,2022-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",4565.0,Silver,0 +8388,Paula Davidson,xnolan@norris-meyers.info,2020-08-12,"{""language"": ""EN"", ""currency"": ""GBP""}",7660.32,Bronze,0 +8389,Angela Stone,tracygomez@hamilton-davis.net,2023-10-19,"{""language"": ""DE"", ""currency"": ""MXN""}",3601.59,Bronze,1 +8390,Howard House,vrodriguez@gmail.com,2024-05-27,"{""language"": ""IT"", ""currency"": ""GBP""}",2582.14,Bronze,1 +8391,Tyler Johnson,vbrock@brady.com,2020-02-15,"{""language"": ""FR"", ""currency"": ""GBP""}",4699.53,Silver,0 +8392,James Perez,ejoseph@hawkins.com,2023-02-26,"{""language"": ""IT"", ""currency"": ""CAD""}",1802.51,Silver,0 +8393,Ms. Mary Dorsey MD,reginald03@ramos-shelton.com,2022-05-25,"{""language"": ""ES"", ""currency"": ""CAD""}",3951.35,Bronze,0 +8394,Cynthia Patterson,willie87@hotmail.com,2021-04-18,"{""language"": ""DE"", ""currency"": ""CAD""}",6279.97,Bronze,1 +8395,Jay Simon,alexandergarcia@hotmail.com,2023-03-18,"{""language"": ""DE"", ""currency"": ""CAD""}",9774.33,Bronze,1 +8396,Tyrone Shaw,hsimon@hotmail.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""GBP""}",5501.34,Gold,1 +8397,Daniel Robinson,christian84@gmail.com,2024-05-21,"{""language"": ""FR"", ""currency"": ""EUR""}",8300.17,Gold,1 +8398,Danielle Lambert,jgarrison@trujillo.net,2020-05-10,"{""language"": ""FR"", ""currency"": ""MXN""}",9646.63,Silver,0 +8399,Mary Frazier,grahamkurt@gmail.com,2021-01-26,"{""language"": ""IT"", ""currency"": ""USD""}",4370.23,Gold,1 +8400,Darrell Russell,sarahrobinson@roberts.com,2020-06-17,"{""language"": ""ES"", ""currency"": ""MXN""}",9320.62,Gold,1 +8401,Timothy Myers,brucelam@martinez.biz,2022-05-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6985.17,Bronze,0 +8402,Jennifer Garrett,jlopez@gmail.com,2024-03-08,"{""language"": ""EN"", ""currency"": ""CAD""}",389.85,Gold,0 +8403,Terri Smith,jennifertaylor@brown.com,2024-08-15,"{""language"": ""IT"", ""currency"": ""MXN""}",9958.28,Bronze,1 +8404,Chloe Garner,jenniferking@cunningham.com,2024-11-15,"{""language"": ""IT"", ""currency"": ""EUR""}",7923.27,Gold,1 +8405,Daniel Ballard,michelle12@santos.info,2024-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",9788.66,Gold,0 +8406,Kristen Hughes,dean19@hotmail.com,2022-04-09,"{""language"": ""EN"", ""currency"": ""EUR""}",3730.4,Bronze,0 +8407,Bethany Ramirez,qstephens@hotmail.com,2020-10-15,"{""language"": ""EN"", ""currency"": ""GBP""}",615.05,Silver,1 +8408,Patrick Carney,crystalcopeland@harrison.org,2021-01-07,"{""language"": ""IT"", ""currency"": ""MXN""}",5538.04,Bronze,1 +8409,Craig Rogers,kari91@fischer-thomas.info,2023-09-23,"{""language"": ""FR"", ""currency"": ""CAD""}",9261.15,Gold,1 +8410,Robin Lee,watkinspamela@fisher.com,2020-02-02,"{""language"": ""FR"", ""currency"": ""EUR""}",6310.76,Gold,0 +8411,Christina Bentley,woodsmichael@yahoo.com,2022-07-12,"{""language"": ""ES"", ""currency"": ""EUR""}",9435.36,Silver,1 +8412,Laura Lopez,mjones@reed.com,2021-05-23,"{""language"": ""ES"", ""currency"": ""MXN""}",7422.33,Bronze,1 +8413,Miranda Ellis,kbryant@lee.info,2020-10-24,"{""language"": ""FR"", ""currency"": ""MXN""}",7767.81,Silver,1 +8414,Terry Jackson,maryramirez@johnson-robbins.com,2023-09-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4726.45,Bronze,1 +8415,Michelle Brandt,morganjacqueline@fleming.com,2022-11-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7277.33,Silver,1 +8416,Olivia Smith,cristiancox@fisher.com,2024-08-23,"{""language"": ""ES"", ""currency"": ""USD""}",2817.45,Silver,0 +8417,Kenneth Patterson,zbradley@garcia.com,2023-12-01,"{""language"": ""ES"", ""currency"": ""EUR""}",2827.65,Gold,1 +8418,Anthony Schmidt,sarah21@hotmail.com,2022-07-27,"{""language"": ""IT"", ""currency"": ""CAD""}",7904.86,Silver,1 +8419,Eric Baker,ywagner@gmail.com,2024-04-15,"{""language"": ""IT"", ""currency"": ""EUR""}",2526.35,Gold,0 +8420,Robert Rice,smithmark@collins.com,2023-01-09,"{""language"": ""FR"", ""currency"": ""CAD""}",4755.26,Gold,1 +8421,Michael Thompson,yhouston@hotmail.com,2023-08-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8078.12,Silver,0 +8422,William Coleman,latoyalopez@hotmail.com,2023-09-28,"{""language"": ""EN"", ""currency"": ""GBP""}",7049.26,Gold,1 +8423,Joshua Flynn,melaniesmith@jimenez.biz,2022-06-10,"{""language"": ""IT"", ""currency"": ""CAD""}",5053.71,Silver,0 +8424,Adam Massey,newmanandrea@hotmail.com,2024-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",4555.5,Silver,0 +8425,Joshua Gonzalez,sethschultz@sheppard-robinson.info,2022-10-11,"{""language"": ""EN"", ""currency"": ""MXN""}",1642.25,Bronze,1 +8426,Justin Ortiz,petershannon@hotmail.com,2021-07-05,"{""language"": ""DE"", ""currency"": ""USD""}",9144.54,Silver,1 +8427,Amy Velazquez,hannah16@rodriguez.biz,2022-09-21,"{""language"": ""ES"", ""currency"": ""CAD""}",8758.12,Silver,0 +8428,Paul Hickman,john39@gmail.com,2022-01-09,"{""language"": ""ES"", ""currency"": ""CAD""}",2958.55,Gold,0 +8429,Kyle Perez,jaime56@hotmail.com,2022-07-03,"{""language"": ""DE"", ""currency"": ""USD""}",1902.43,Gold,1 +8430,Kimberly Reed,patricia45@castillo-kelley.net,2021-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",9489.39,Silver,0 +8431,Patricia Martinez,zacharykramer@vincent-patrick.com,2024-01-08,"{""language"": ""EN"", ""currency"": ""GBP""}",8686.95,Silver,0 +8432,Susan Harvey,justinmaxwell@hotmail.com,2023-09-06,"{""language"": ""EN"", ""currency"": ""GBP""}",1527.11,Silver,1 +8433,Lucas Hawkins DDS,robinchoi@campbell-branch.info,2024-08-07,"{""language"": ""IT"", ""currency"": ""MXN""}",2687.49,Gold,1 +8434,Aaron Gutierrez,angelarice@estrada.com,2024-05-29,"{""language"": ""ES"", ""currency"": ""EUR""}",2699.72,Gold,0 +8435,Brent Williams,matthewbright@king.com,2020-07-14,"{""language"": ""ES"", ""currency"": ""GBP""}",2131.5,Gold,1 +8436,Krista Graham,angelchristian@smith.org,2023-02-22,"{""language"": ""ES"", ""currency"": ""EUR""}",9747.55,Silver,0 +8437,Alexis Nielsen,ucalderon@hotmail.com,2022-02-19,"{""language"": ""ES"", ""currency"": ""MXN""}",7454.93,Gold,1 +8438,Robert Levine,megancooke@andrews.net,2019-12-17,"{""language"": ""FR"", ""currency"": ""CAD""}",5706.54,Silver,0 +8439,Eric Marquez,michael25@gmail.com,2020-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",244.01,Silver,0 +8440,Mary Ferrell,steven90@hotmail.com,2021-09-20,"{""language"": ""IT"", ""currency"": ""CAD""}",5684.33,Bronze,0 +8441,Stephen Moyer,christinasmith@cox.com,2024-09-26,"{""language"": ""IT"", ""currency"": ""GBP""}",545.43,Gold,1 +8442,Geoffrey Davis,danielgarcia@jones-bell.com,2022-12-01,"{""language"": ""FR"", ""currency"": ""MXN""}",1916.58,Silver,0 +8443,Andrew Martinez,patriciasnow@hotmail.com,2021-10-05,"{""language"": ""IT"", ""currency"": ""GBP""}",6322.82,Bronze,0 +8444,John Nguyen,jeffreyclarke@yahoo.com,2024-03-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9737.68,Gold,0 +8445,Rebecca Martinez,amanda54@hotmail.com,2021-12-10,"{""language"": ""IT"", ""currency"": ""GBP""}",4613.88,Silver,1 +8446,Leah Waters,kimberlygutierrez@hotmail.com,2020-10-22,"{""language"": ""DE"", ""currency"": ""GBP""}",2700.39,Silver,0 +8447,Christopher Solis,wilkinsonadam@jordan.com,2023-06-08,"{""language"": ""EN"", ""currency"": ""USD""}",3560.18,Bronze,1 +8448,Amanda Gonzalez,pittmantravis@taylor-walker.info,2020-03-14,"{""language"": ""DE"", ""currency"": ""MXN""}",1202.55,Gold,0 +8449,Elizabeth Davis,kimberly37@tyler.com,2021-07-10,"{""language"": ""EN"", ""currency"": ""MXN""}",1401.24,Silver,1 +8450,Ann Scott,daniel67@holder.org,2020-09-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2044.21,Gold,0 +8451,Blake Perry,marialynch@rose-lee.biz,2022-07-01,"{""language"": ""ES"", ""currency"": ""CAD""}",7914.67,Silver,0 +8452,Jason Brown,collinsjillian@gmail.com,2024-01-10,"{""language"": ""ES"", ""currency"": ""USD""}",3937.05,Gold,1 +8453,April Allen,lrussell@smith.net,2021-03-16,"{""language"": ""ES"", ""currency"": ""EUR""}",9334.53,Gold,0 +8454,Deborah Taylor,ggay@owens.com,2024-09-01,"{""language"": ""EN"", ""currency"": ""GBP""}",1197.06,Gold,1 +8455,Jesus Lewis,rcook@gmail.com,2022-08-26,"{""language"": ""IT"", ""currency"": ""GBP""}",7017.12,Bronze,1 +8456,Pamela Atkins,burnettalicia@martin.net,2021-09-23,"{""language"": ""EN"", ""currency"": ""MXN""}",8395.73,Bronze,1 +8457,Brian Johnson,jonesrobin@yahoo.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""GBP""}",7128.3,Bronze,1 +8458,Paul Hansen,greenemisty@pham.com,2024-04-19,"{""language"": ""EN"", ""currency"": ""GBP""}",9963.36,Bronze,1 +8459,Brett Graham,glassamy@macias.com,2022-01-31,"{""language"": ""EN"", ""currency"": ""GBP""}",544.42,Gold,1 +8460,Kelly Walsh,vbuckley@hotmail.com,2022-10-31,"{""language"": ""ES"", ""currency"": ""EUR""}",2909.85,Bronze,0 +8461,Alan Guzman,williamselizabeth@yahoo.com,2023-09-09,"{""language"": ""EN"", ""currency"": ""GBP""}",537.59,Silver,1 +8462,Nicole Maxwell,lammegan@mccarthy.com,2021-12-15,"{""language"": ""EN"", ""currency"": ""MXN""}",6108.72,Gold,0 +8463,Darius Lewis,festrada@yahoo.com,2023-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",1179.22,Gold,0 +8464,Tara Webb,reginaldgrant@gmail.com,2020-12-16,"{""language"": ""DE"", ""currency"": ""CAD""}",7371.55,Silver,1 +8465,Julie Taylor,wyoung@gmail.com,2024-09-03,"{""language"": ""ES"", ""currency"": ""EUR""}",3800.07,Gold,0 +8466,Christina Zimmerman,brianmorton@nguyen-johnson.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""GBP""}",7816.38,Bronze,1 +8467,Sherry Reed,michaelmichael@mayer-zimmerman.info,2020-04-18,"{""language"": ""DE"", ""currency"": ""GBP""}",7225.92,Silver,1 +8468,Dr. Jill Lee,david34@hendrix-elliott.com,2022-12-28,"{""language"": ""IT"", ""currency"": ""EUR""}",6324.35,Gold,1 +8469,Sara Lopez,billy42@gmail.com,2022-05-30,"{""language"": ""EN"", ""currency"": ""MXN""}",3833.09,Silver,1 +8470,Andrea Williams,melissa37@gmail.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""CAD""}",383.24,Gold,0 +8471,Amber Castaneda,angelawright@yahoo.com,2021-03-01,"{""language"": ""ES"", ""currency"": ""GBP""}",7443.66,Bronze,1 +8472,Devin Jackson,oneilllaura@hotmail.com,2023-07-13,"{""language"": ""EN"", ""currency"": ""CAD""}",8475.46,Bronze,0 +8473,Andrew Wise,wanda75@gmail.com,2021-08-20,"{""language"": ""DE"", ""currency"": ""MXN""}",791.11,Bronze,1 +8474,Gregory Velez,clewis@gmail.com,2024-07-23,"{""language"": ""IT"", ""currency"": ""CAD""}",539.58,Gold,0 +8475,Nichole Morgan PhD,jesseharper@benjamin.biz,2020-05-02,"{""language"": ""IT"", ""currency"": ""GBP""}",5803.87,Silver,1 +8476,Jason Perry,warelaurie@gmail.com,2020-06-27,"{""language"": ""FR"", ""currency"": ""MXN""}",817.75,Silver,0 +8477,Shane Wilkins,deancarpenter@lucas.org,2022-07-12,"{""language"": ""ES"", ""currency"": ""CAD""}",7458.63,Silver,1 +8478,Deborah Hopkins,egreen@kerr.com,2022-08-28,"{""language"": ""EN"", ""currency"": ""USD""}",8492.78,Silver,1 +8479,Sarah Davis,davidphillips@hotmail.com,2023-10-16,"{""language"": ""ES"", ""currency"": ""CAD""}",7170.42,Silver,0 +8480,Michael Myers,ijohnson@ross.info,2022-03-22,"{""language"": ""ES"", ""currency"": ""EUR""}",3583.65,Bronze,1 +8481,Jessica Smith,xperry@gmail.com,2022-12-05,"{""language"": ""FR"", ""currency"": ""EUR""}",2530.1,Gold,0 +8482,Christine Rodriguez,hoodpatrick@yahoo.com,2020-12-28,"{""language"": ""EN"", ""currency"": ""EUR""}",827.08,Gold,1 +8483,Keith Duarte,jacqueline07@torres.com,2022-04-08,"{""language"": ""IT"", ""currency"": ""EUR""}",5345.76,Gold,0 +8484,Ebony Benson,jefferymyers@watkins.com,2021-06-25,"{""language"": ""DE"", ""currency"": ""CAD""}",5327.98,Silver,0 +8485,Sean Wheeler,john68@bruce.com,2020-03-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3681.25,Silver,0 +8486,Natalie Robinson,josephtonya@rogers.biz,2022-01-27,"{""language"": ""IT"", ""currency"": ""MXN""}",902.37,Gold,1 +8487,Christine Shields,bmorton@wright.net,2021-10-04,"{""language"": ""DE"", ""currency"": ""CAD""}",7449.53,Gold,1 +8488,David Mccullough,justinphillips@yahoo.com,2020-04-13,"{""language"": ""DE"", ""currency"": ""EUR""}",4230.35,Gold,1 +8489,Julie Lloyd,charles95@barnes.com,2021-07-27,"{""language"": ""ES"", ""currency"": ""GBP""}",7177.22,Gold,0 +8490,Jeanette Cardenas,lesliemurphy@martinez-merritt.com,2022-04-29,"{""language"": ""ES"", ""currency"": ""USD""}",5528.38,Bronze,0 +8491,Christopher Garcia,chandlercourtney@thomas.com,2023-11-22,"{""language"": ""EN"", ""currency"": ""USD""}",777.53,Bronze,1 +8492,Anna Cox,richardmarquez@bradshaw.org,2022-03-23,"{""language"": ""IT"", ""currency"": ""EUR""}",6725.65,Silver,1 +8493,Margaret Wu,michelledavis@farmer-gilbert.com,2024-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",9813.89,Gold,0 +8494,Melissa Hernandez,jonathancarroll@yahoo.com,2022-11-30,"{""language"": ""FR"", ""currency"": ""GBP""}",6302.67,Bronze,0 +8495,Kelsey Walters,susan06@hotmail.com,2024-10-17,"{""language"": ""EN"", ""currency"": ""EUR""}",3991.4,Gold,1 +8496,Taylor Stuart,briannale@lang-crawford.net,2020-05-24,"{""language"": ""ES"", ""currency"": ""CAD""}",5420.55,Silver,0 +8497,Russell Walker,barbara57@yang.net,2022-11-15,"{""language"": ""DE"", ""currency"": ""CAD""}",8924.93,Bronze,0 +8498,Rebecca Galloway,casey12@day.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""MXN""}",6464.61,Gold,0 +8499,Angel Vargas,johnsonallen@morton.com,2020-07-31,"{""language"": ""EN"", ""currency"": ""MXN""}",8086.42,Gold,0 +8500,Anna Morrison,lawrencemichael@yahoo.com,2022-07-07,"{""language"": ""DE"", ""currency"": ""USD""}",1278.96,Silver,1 +8501,Eric Diaz,rosscolleen@maxwell.com,2023-12-28,"{""language"": ""IT"", ""currency"": ""USD""}",5878.06,Gold,1 +8502,George Reed,william65@gray-hampton.info,2023-07-17,"{""language"": ""IT"", ""currency"": ""EUR""}",9071.02,Gold,0 +8503,Lisa Alvarado,victorbrown@hotmail.com,2022-06-11,"{""language"": ""IT"", ""currency"": ""CAD""}",4832.71,Bronze,0 +8504,Anthony Li,ajackson@yahoo.com,2023-09-22,"{""language"": ""FR"", ""currency"": ""EUR""}",309.26,Gold,1 +8505,Joseph Cobb,adam69@russell.com,2023-05-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5738.77,Silver,0 +8506,Tyler Mcgrath,brenda38@yahoo.com,2021-06-04,"{""language"": ""DE"", ""currency"": ""USD""}",803.66,Gold,0 +8507,Matthew Kelly,charles42@lewis.info,2021-11-25,"{""language"": ""FR"", ""currency"": ""EUR""}",7082.53,Bronze,0 +8508,Shawna Miller,egonzalez@gmail.com,2021-02-05,"{""language"": ""EN"", ""currency"": ""GBP""}",6616.11,Bronze,1 +8509,Jacob Dunlap,ariel74@porter-reed.org,2020-05-26,"{""language"": ""FR"", ""currency"": ""USD""}",5125.11,Silver,0 +8510,Ryan Martinez,shannonjason@velez-nelson.com,2022-02-13,"{""language"": ""IT"", ""currency"": ""EUR""}",1745.56,Silver,1 +8511,Noah Patterson,thomasbelinda@landry-rice.com,2023-09-11,"{""language"": ""IT"", ""currency"": ""MXN""}",4624.02,Silver,1 +8512,Ryan Bryan,ffitzgerald@gonzalez.com,2024-03-13,"{""language"": ""IT"", ""currency"": ""CAD""}",425.37,Bronze,0 +8513,Scott Garcia,micheal73@yahoo.com,2024-08-20,"{""language"": ""EN"", ""currency"": ""GBP""}",7251.09,Silver,1 +8514,Steven Torres,fowlerstacy@hotmail.com,2021-03-12,"{""language"": ""EN"", ""currency"": ""USD""}",1723.09,Bronze,1 +8515,Catherine Singleton,sanderson@hotmail.com,2020-05-14,"{""language"": ""DE"", ""currency"": ""GBP""}",6885.03,Silver,0 +8516,Gerald Solis,mgallegos@bradley.info,2023-10-15,"{""language"": ""EN"", ""currency"": ""MXN""}",2670.27,Bronze,1 +8517,Jennifer Johnson,samanthabowman@joseph-cruz.com,2020-05-30,"{""language"": ""EN"", ""currency"": ""EUR""}",6521.33,Gold,0 +8518,David Washington,kennethwu@yahoo.com,2020-10-10,"{""language"": ""DE"", ""currency"": ""CAD""}",3926.55,Gold,1 +8519,Jason Hernandez,ann41@montgomery.info,2021-05-14,"{""language"": ""IT"", ""currency"": ""EUR""}",7311.92,Bronze,1 +8520,Dan Malone,uwang@hotmail.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""GBP""}",7700.9,Silver,1 +8521,William Hoffman,qbarber@vance.com,2019-12-25,"{""language"": ""FR"", ""currency"": ""GBP""}",6184.39,Silver,1 +8522,Calvin Johnson,mooreleslie@curtis.com,2020-05-23,"{""language"": ""IT"", ""currency"": ""GBP""}",5558.66,Silver,0 +8523,Tyler Perkins,yescobar@mcintosh-warren.org,2023-05-07,"{""language"": ""FR"", ""currency"": ""CAD""}",1314.71,Gold,0 +8524,Stephanie Marsh,matthewjones@edwards.com,2022-08-01,"{""language"": ""FR"", ""currency"": ""GBP""}",7849.75,Bronze,0 +8525,Richard Logan,pthomas@lara-crawford.com,2022-12-15,"{""language"": ""IT"", ""currency"": ""EUR""}",6026.08,Gold,1 +8526,Patrick Mitchell,vlane@yahoo.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""CAD""}",9847.28,Bronze,0 +8527,Levi Marshall,villarrealdaniel@baker.biz,2021-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",5335.58,Gold,1 +8528,Susan Smith,harrisvictoria@lopez.com,2024-10-26,"{""language"": ""DE"", ""currency"": ""GBP""}",2250.75,Gold,0 +8529,Michael Ingram,myersmatthew@holmes.com,2022-02-16,"{""language"": ""DE"", ""currency"": ""GBP""}",4426.21,Gold,1 +8530,Ms. Paula Peters,jefferymitchell@williams.info,2022-03-21,"{""language"": ""DE"", ""currency"": ""CAD""}",6590.78,Bronze,1 +8531,Paul Brooks DVM,wolfelarry@reilly.com,2021-12-19,"{""language"": ""IT"", ""currency"": ""USD""}",3779.27,Gold,0 +8532,Joshua Lopez,morserenee@hotmail.com,2021-04-19,"{""language"": ""IT"", ""currency"": ""EUR""}",4435.29,Gold,0 +8533,Michael Smith,jwells@gmail.com,2020-08-15,"{""language"": ""IT"", ""currency"": ""GBP""}",5828.28,Silver,1 +8534,Jordan Sullivan,davidbrown@gmail.com,2020-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",3201.25,Gold,0 +8535,Laura Johnson,bensonanthony@hotmail.com,2022-03-20,"{""language"": ""ES"", ""currency"": ""GBP""}",9646.01,Silver,1 +8536,Adam Roth,kathleen33@gmail.com,2022-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",2835.62,Gold,0 +8537,George Mcdaniel,matthew77@yahoo.com,2022-12-26,"{""language"": ""EN"", ""currency"": ""MXN""}",2652.57,Bronze,1 +8538,Susan Barrett,kjackson@le.com,2020-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",6078.31,Gold,1 +8539,Christopher Marquez,ffox@boyer.net,2022-01-14,"{""language"": ""FR"", ""currency"": ""CAD""}",8633.8,Bronze,0 +8540,Carol Steele,rodriguezjoel@brown.org,2021-11-10,"{""language"": ""FR"", ""currency"": ""GBP""}",4257.73,Gold,0 +8541,Angel Hester,powelljesse@hotmail.com,2023-08-11,"{""language"": ""DE"", ""currency"": ""USD""}",2211.63,Bronze,0 +8542,Michael Meyers,brenda84@lawrence-lee.biz,2022-04-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8914.92,Gold,0 +8543,Robert Larson,scottamber@robinson-nixon.com,2024-08-05,"{""language"": ""IT"", ""currency"": ""USD""}",2608.64,Silver,0 +8544,Gavin Farley,richard53@george.biz,2023-03-31,"{""language"": ""DE"", ""currency"": ""CAD""}",2929.23,Silver,1 +8545,Tommy Carpenter,mcdonaldjohn@pena-brown.info,2020-07-11,"{""language"": ""IT"", ""currency"": ""GBP""}",5574.27,Gold,1 +8546,Allen Perkins,douglas81@yahoo.com,2023-12-18,"{""language"": ""IT"", ""currency"": ""GBP""}",8120.06,Gold,1 +8547,William Miller,david27@morrow.com,2022-10-25,"{""language"": ""DE"", ""currency"": ""CAD""}",2425.34,Silver,1 +8548,Ryan Lopez,qpeterson@watts.com,2020-06-30,"{""language"": ""IT"", ""currency"": ""USD""}",9737.79,Bronze,1 +8549,Rachael Lewis,vickie60@gmail.com,2022-11-25,"{""language"": ""ES"", ""currency"": ""MXN""}",4529.75,Gold,1 +8550,Suzanne Stephens,stephanie85@jenkins.biz,2024-05-13,"{""language"": ""FR"", ""currency"": ""MXN""}",5185.4,Gold,0 +8551,Diane Scott,cward@nelson.org,2021-03-06,"{""language"": ""ES"", ""currency"": ""GBP""}",8399.9,Silver,0 +8552,Donald Jackson,quinneugene@yahoo.com,2024-05-16,"{""language"": ""FR"", ""currency"": ""GBP""}",5617.18,Gold,0 +8553,Christine Gonzalez,phart@gmail.com,2022-01-02,"{""language"": ""ES"", ""currency"": ""EUR""}",9384.06,Silver,0 +8554,Lindsay Simpson,millerdustin@yahoo.com,2023-02-24,"{""language"": ""EN"", ""currency"": ""CAD""}",7954.98,Silver,1 +8555,Karen Willis,fergusoncody@carrillo.org,2020-01-17,"{""language"": ""DE"", ""currency"": ""GBP""}",7976.27,Gold,1 +8556,Lisa Ortiz,kelsey54@yahoo.com,2020-01-09,"{""language"": ""DE"", ""currency"": ""MXN""}",5116.6,Gold,1 +8557,Jamie Elliott,gregory48@yahoo.com,2023-08-07,"{""language"": ""EN"", ""currency"": ""GBP""}",7275.79,Gold,1 +8558,Erik Shepherd,joy70@wood.com,2020-12-21,"{""language"": ""IT"", ""currency"": ""CAD""}",3143.24,Gold,0 +8559,Thomas Walker,macdonaldlauren@yahoo.com,2021-01-08,"{""language"": ""EN"", ""currency"": ""CAD""}",3181.76,Bronze,1 +8560,Margaret Charles,alyssa20@yahoo.com,2022-01-23,"{""language"": ""DE"", ""currency"": ""USD""}",4462.63,Gold,1 +8561,Angela Meyer,ellisonjennifer@mack-wallace.com,2024-10-25,"{""language"": ""IT"", ""currency"": ""CAD""}",2569.28,Silver,1 +8562,Ashley Daniels,imorales@bullock.info,2022-07-20,"{""language"": ""DE"", ""currency"": ""GBP""}",5310.1,Gold,0 +8563,Matthew Aguilar,michaelnelson@young.org,2024-09-12,"{""language"": ""IT"", ""currency"": ""GBP""}",4936.86,Bronze,1 +8564,Natalie Howard,haleysherry@yahoo.com,2024-06-20,"{""language"": ""IT"", ""currency"": ""GBP""}",401.58,Silver,1 +8565,Steve Anthony,carlosrichards@schwartz.com,2020-08-04,"{""language"": ""ES"", ""currency"": ""EUR""}",7022.59,Silver,0 +8566,Joshua Brock,walkerpaul@hotmail.com,2020-03-03,"{""language"": ""IT"", ""currency"": ""USD""}",4415.78,Bronze,1 +8567,Elizabeth Morris MD,lchan@mccann.com,2021-07-18,"{""language"": ""IT"", ""currency"": ""USD""}",91.73,Silver,1 +8568,Troy Hunt,terrirodriguez@white.com,2022-03-12,"{""language"": ""ES"", ""currency"": ""CAD""}",9544.73,Silver,0 +8569,Zachary Young,david79@gmail.com,2021-01-05,"{""language"": ""ES"", ""currency"": ""MXN""}",3958.77,Bronze,1 +8570,Chad Pearson,xvillanueva@gmail.com,2024-08-13,"{""language"": ""IT"", ""currency"": ""GBP""}",1371.45,Gold,0 +8571,Ryan Cunningham,fpratt@hall-jackson.biz,2024-01-17,"{""language"": ""DE"", ""currency"": ""MXN""}",8943.99,Silver,0 +8572,Stephen Allison,rachelmendoza@walker.com,2024-09-24,"{""language"": ""EN"", ""currency"": ""EUR""}",4059.96,Silver,1 +8573,Jacqueline Diaz,denise07@hotmail.com,2022-06-27,"{""language"": ""IT"", ""currency"": ""USD""}",1903.51,Gold,0 +8574,Rebecca Taylor,kwalker@hotmail.com,2021-04-13,"{""language"": ""DE"", ""currency"": ""MXN""}",2666.41,Bronze,1 +8575,Sheila Keller,amy81@brewer.com,2023-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",7985.23,Gold,0 +8576,Brittany Kennedy,kmassey@gmail.com,2024-09-09,"{""language"": ""FR"", ""currency"": ""USD""}",5936.41,Bronze,1 +8577,Alan Smith,matthewfox@hotmail.com,2024-02-09,"{""language"": ""EN"", ""currency"": ""CAD""}",9034.58,Silver,0 +8578,Marie Cooper,lauramitchell@gmail.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",3233.08,Silver,1 +8579,Ian Shelton MD,benjamin89@gmail.com,2020-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",6755.55,Bronze,0 +8580,Janet Salas,ibond@warren.com,2024-02-01,"{""language"": ""ES"", ""currency"": ""MXN""}",5606.4,Silver,1 +8581,Michael Huynh,nunezdavid@gibbs.com,2022-11-06,"{""language"": ""DE"", ""currency"": ""MXN""}",2811.86,Bronze,0 +8582,Teresa Freeman,michael63@lane.com,2020-04-19,"{""language"": ""ES"", ""currency"": ""GBP""}",3088.18,Bronze,0 +8583,Dr. Kevin Bradford,markroberts@yahoo.com,2024-08-24,"{""language"": ""DE"", ""currency"": ""EUR""}",688.67,Bronze,1 +8584,Margaret Moss,edwardleonard@hess.org,2020-08-13,"{""language"": ""ES"", ""currency"": ""MXN""}",7143.52,Bronze,1 +8585,Mary Owen,markparker@yahoo.com,2024-06-22,"{""language"": ""IT"", ""currency"": ""MXN""}",4091.48,Gold,1 +8586,Lisa Flores,kthompson@ayala-lambert.biz,2024-01-02,"{""language"": ""DE"", ""currency"": ""EUR""}",7152.65,Silver,1 +8587,Dawn Campbell,ryanberger@nguyen.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""CAD""}",7023.66,Silver,0 +8588,Bryan Moore,melissasmith@reyes-hall.com,2022-04-06,"{""language"": ""IT"", ""currency"": ""GBP""}",6837.51,Bronze,1 +8589,Darren Young,emily46@yahoo.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""GBP""}",4531.33,Gold,1 +8590,Thomas Flores,tfox@christensen.info,2021-04-24,"{""language"": ""EN"", ""currency"": ""GBP""}",4499.16,Gold,1 +8591,Steven Miller,elizabethgutierrez@yahoo.com,2023-01-10,"{""language"": ""IT"", ""currency"": ""GBP""}",1788.19,Silver,0 +8592,Richard Owens,uwells@gmail.com,2024-01-10,"{""language"": ""EN"", ""currency"": ""USD""}",542.03,Bronze,1 +8593,Alexander Edwards,ewilliams@pennington-ware.com,2022-04-29,"{""language"": ""IT"", ""currency"": ""MXN""}",1821.4,Silver,0 +8594,Eric Gonzalez,sarahernandez@hotmail.com,2021-06-30,"{""language"": ""DE"", ""currency"": ""USD""}",8720.33,Bronze,0 +8595,Susan Mccoy,kcooke@gordon.com,2021-03-22,"{""language"": ""FR"", ""currency"": ""MXN""}",7582.37,Silver,0 +8596,Stephen Gonzalez,rhopkins@yahoo.com,2020-02-15,"{""language"": ""FR"", ""currency"": ""USD""}",2953.34,Silver,0 +8597,Dr. Kathy Hayes,xgonzalez@gmail.com,2023-02-13,"{""language"": ""ES"", ""currency"": ""CAD""}",815.49,Gold,1 +8598,Melanie Gould,dortiz@spears-gomez.com,2022-07-07,"{""language"": ""IT"", ""currency"": ""USD""}",8071.02,Silver,1 +8599,Jon Richardson,apriltorres@gmail.com,2024-08-16,"{""language"": ""EN"", ""currency"": ""CAD""}",7916.35,Bronze,1 +8600,Carol Ho,ylowery@gmail.com,2023-08-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5343.86,Bronze,1 +8601,Matthew Brooks,joseph55@davis.com,2022-03-29,"{""language"": ""EN"", ""currency"": ""USD""}",4794.04,Gold,1 +8602,Samantha Adams,jeffreythompson@yahoo.com,2024-11-25,"{""language"": ""DE"", ""currency"": ""USD""}",4418.3,Gold,0 +8603,Cynthia Allen,vdavies@yahoo.com,2022-03-24,"{""language"": ""ES"", ""currency"": ""EUR""}",9963.44,Bronze,0 +8604,Robin Scott,pricejon@hill.info,2022-10-27,"{""language"": ""EN"", ""currency"": ""CAD""}",9914.55,Silver,0 +8605,Larry Jennings,dvalenzuela@burgess.com,2021-09-14,"{""language"": ""IT"", ""currency"": ""CAD""}",5802.17,Silver,0 +8606,Veronica Ruiz,kristinaryan@yahoo.com,2024-04-14,"{""language"": ""ES"", ""currency"": ""EUR""}",3972.5,Bronze,0 +8607,Randy Brock,amber57@ortiz-wyatt.com,2023-04-04,"{""language"": ""EN"", ""currency"": ""USD""}",5313.68,Gold,0 +8608,Jonathan Wang,shawnraymond@hotmail.com,2024-08-10,"{""language"": ""ES"", ""currency"": ""EUR""}",3886.04,Silver,0 +8609,Justin Garcia,elizabethpatel@hotmail.com,2024-08-11,"{""language"": ""IT"", ""currency"": ""USD""}",3857.56,Silver,1 +8610,John Butler,briannanicholson@prince.net,2022-11-13,"{""language"": ""DE"", ""currency"": ""CAD""}",786.48,Bronze,0 +8611,Stephen Burton,clarkmary@hotmail.com,2020-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",145.18,Bronze,0 +8612,James Kirby,jennifer75@jones.com,2024-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",7261.47,Bronze,0 +8613,Stephanie Owens,andrea95@dodson-ortiz.biz,2023-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",4758.56,Bronze,1 +8614,Jennifer Campbell,beltranshelley@yahoo.com,2021-02-18,"{""language"": ""DE"", ""currency"": ""MXN""}",5066.67,Gold,1 +8615,Michael Maldonado,baxtertyler@yahoo.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",8580.62,Bronze,0 +8616,Michael Graham,christopherroberts@stewart-martin.com,2022-12-16,"{""language"": ""EN"", ""currency"": ""CAD""}",546.92,Gold,1 +8617,Ana Hanna,lee29@crosby.com,2023-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",9818.77,Silver,0 +8618,Kristen Duncan,alvarezkenneth@hotmail.com,2023-01-29,"{""language"": ""DE"", ""currency"": ""MXN""}",5575.62,Bronze,1 +8619,Douglas Green,elizabethlowe@martinez.com,2023-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",4598.59,Silver,1 +8620,Jorge Stewart,christina28@lee-miller.com,2024-06-26,"{""language"": ""EN"", ""currency"": ""EUR""}",715.09,Gold,0 +8621,Timothy Potter,cynthiahood@garza.com,2024-11-12,"{""language"": ""DE"", ""currency"": ""EUR""}",3761.78,Gold,0 +8622,John Villanueva,owilliams@bryant.info,2021-02-13,"{""language"": ""ES"", ""currency"": ""CAD""}",994.04,Bronze,0 +8623,Christopher Conway,kirk97@gibbs.com,2024-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",8034.5,Gold,1 +8624,Joshua Williams,michael27@gmail.com,2024-11-30,"{""language"": ""IT"", ""currency"": ""EUR""}",5810.36,Bronze,1 +8625,Edward Webb,dfoster@yahoo.com,2024-11-30,"{""language"": ""FR"", ""currency"": ""CAD""}",6091.05,Gold,1 +8626,Mark Best,youngnoah@yahoo.com,2024-06-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6019.07,Gold,0 +8627,Joel Holder,wardmonique@hotmail.com,2022-09-25,"{""language"": ""IT"", ""currency"": ""CAD""}",5380.66,Gold,1 +8628,Kenneth Martin,andrea56@mccarthy.biz,2023-03-16,"{""language"": ""IT"", ""currency"": ""EUR""}",9248.51,Silver,1 +8629,Stephen Mills,kathrynmartinez@gmail.com,2019-12-17,"{""language"": ""IT"", ""currency"": ""GBP""}",8265.87,Silver,0 +8630,Dr. Ann Larson,stephenriddle@gmail.com,2020-05-05,"{""language"": ""FR"", ""currency"": ""MXN""}",1824.94,Bronze,1 +8631,Wayne Rhodes,christopher02@wu.info,2024-01-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6843.77,Gold,0 +8632,Benjamin Wall,christophershea@gmail.com,2024-02-22,"{""language"": ""IT"", ""currency"": ""USD""}",4063.09,Gold,0 +8633,Janet Chavez,meganwatkins@hotmail.com,2021-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",9284.75,Bronze,0 +8634,Eduardo Reed,mwhitehead@harris.info,2024-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",8154.24,Gold,1 +8635,Fernando Marquez,mckeejoseph@yahoo.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""EUR""}",1205.47,Bronze,0 +8636,Erik Wilson,diazjamie@yahoo.com,2020-03-11,"{""language"": ""ES"", ""currency"": ""EUR""}",5854.52,Bronze,1 +8637,Deborah Strickland,nicole75@yahoo.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""EUR""}",2001.19,Silver,0 +8638,Bryan Lucas,john61@hotmail.com,2023-07-08,"{""language"": ""IT"", ""currency"": ""MXN""}",1849.33,Silver,1 +8639,Jennifer Fox,charlenecarney@yang.info,2024-03-11,"{""language"": ""EN"", ""currency"": ""EUR""}",7568.56,Gold,0 +8640,Jennifer Adams,alyssa18@gmail.com,2022-09-05,"{""language"": ""FR"", ""currency"": ""USD""}",7509.0,Bronze,0 +8641,Lisa Dean,todd11@williams-wright.com,2022-01-06,"{""language"": ""EN"", ""currency"": ""MXN""}",978.08,Silver,1 +8642,Dennis Morton,bwalton@daniel.com,2020-11-23,"{""language"": ""FR"", ""currency"": ""USD""}",2916.58,Gold,0 +8643,Mrs. Tina Ross,daviswilliam@ward.org,2020-03-14,"{""language"": ""ES"", ""currency"": ""USD""}",79.85,Bronze,1 +8644,Kimberly James,bgutierrez@thomas.com,2022-10-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2072.38,Silver,0 +8645,Mikayla Todd,jamesjohnson@spears.com,2023-12-16,"{""language"": ""EN"", ""currency"": ""MXN""}",3700.6,Bronze,1 +8646,Michael Morris,lewisanthony@houston.com,2022-04-12,"{""language"": ""IT"", ""currency"": ""USD""}",2512.62,Silver,1 +8647,Adam Bullock,cwilson@hotmail.com,2020-05-31,"{""language"": ""EN"", ""currency"": ""MXN""}",5579.93,Silver,1 +8648,Charles Waters,rwilson@hotmail.com,2023-08-06,"{""language"": ""IT"", ""currency"": ""MXN""}",812.98,Silver,0 +8649,David Howard,chris39@gmail.com,2021-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4192.01,Silver,1 +8650,Teresa Steele,churchtaylor@jones.biz,2021-10-16,"{""language"": ""IT"", ""currency"": ""USD""}",1718.34,Bronze,0 +8651,Kevin Foster,tracyfranklin@gmail.com,2024-05-17,"{""language"": ""FR"", ""currency"": ""USD""}",9757.78,Gold,0 +8652,Christopher Ramsey,lopezandrew@gordon.com,2022-07-13,"{""language"": ""EN"", ""currency"": ""GBP""}",2140.92,Bronze,0 +8653,Bethany Sanchez,amandalee@yahoo.com,2022-09-27,"{""language"": ""IT"", ""currency"": ""GBP""}",4376.05,Gold,0 +8654,William Gonzalez,codygarcia@cobb.net,2020-12-17,"{""language"": ""ES"", ""currency"": ""USD""}",2543.46,Silver,1 +8655,Connor Walker,dianedunn@fuller.org,2020-07-01,"{""language"": ""DE"", ""currency"": ""CAD""}",4240.62,Bronze,1 +8656,Cynthia Lee,amandaramos@oneal-walter.net,2020-01-31,"{""language"": ""IT"", ""currency"": ""CAD""}",2357.52,Bronze,1 +8657,Jessica Romero,zachary34@gmail.com,2023-07-28,"{""language"": ""IT"", ""currency"": ""MXN""}",9952.81,Silver,1 +8658,Jennifer Robinson,shieldssabrina@mcknight.com,2022-04-08,"{""language"": ""DE"", ""currency"": ""GBP""}",1511.58,Bronze,1 +8659,David Lin,kingcody@gmail.com,2020-11-18,"{""language"": ""IT"", ""currency"": ""USD""}",7896.37,Gold,0 +8660,Dean Baker,meghanrodriguez@gmail.com,2021-01-20,"{""language"": ""DE"", ""currency"": ""MXN""}",5704.04,Gold,1 +8661,Lisa Hayden,hernandezcarolyn@hotmail.com,2022-08-22,"{""language"": ""FR"", ""currency"": ""CAD""}",2200.14,Gold,1 +8662,Phillip Johnson,billyjohnston@perez.info,2021-09-29,"{""language"": ""ES"", ""currency"": ""EUR""}",9255.59,Silver,1 +8663,Clayton Patterson,nicholasgonzalez@gmail.com,2021-03-07,"{""language"": ""EN"", ""currency"": ""MXN""}",6211.48,Bronze,0 +8664,Brandy Bailey,bennetthaley@gmail.com,2023-02-03,"{""language"": ""EN"", ""currency"": ""CAD""}",5447.21,Bronze,0 +8665,Tracy Gonzalez,vhall@lewis-lopez.com,2021-10-02,"{""language"": ""FR"", ""currency"": ""MXN""}",2804.27,Gold,0 +8666,Tina Curry,yallen@yahoo.com,2020-04-20,"{""language"": ""EN"", ""currency"": ""USD""}",6072.52,Gold,0 +8667,Rhonda Gallagher,khernandez@gmail.com,2020-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",6234.41,Bronze,1 +8668,Mark James,gonzalezstacy@yahoo.com,2022-07-09,"{""language"": ""EN"", ""currency"": ""CAD""}",7914.11,Gold,1 +8669,David Hines,matthewgonzalez@solomon.com,2023-06-25,"{""language"": ""EN"", ""currency"": ""USD""}",1239.56,Silver,1 +8670,Tami Wells,clarkjames@gmail.com,2022-04-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5198.13,Silver,1 +8671,Jonathan Hughes,alicia01@munoz-anderson.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",794.08,Silver,1 +8672,Jeffrey Kennedy,shellypeterson@nguyen-hernandez.com,2024-04-22,"{""language"": ""ES"", ""currency"": ""CAD""}",2172.36,Silver,0 +8673,Sean King,paula00@cole.org,2021-12-17,"{""language"": ""IT"", ""currency"": ""CAD""}",5615.58,Silver,1 +8674,Christopher Miller,qalvarez@montes.com,2021-08-30,"{""language"": ""IT"", ""currency"": ""EUR""}",486.56,Gold,0 +8675,Krista Green,donnamathews@gmail.com,2024-11-25,"{""language"": ""FR"", ""currency"": ""EUR""}",6047.87,Silver,1 +8676,Benjamin Daugherty,michael94@jacobson-donaldson.com,2021-04-11,"{""language"": ""ES"", ""currency"": ""MXN""}",8092.75,Gold,1 +8677,Sabrina Gray,isabel12@hotmail.com,2024-08-18,"{""language"": ""IT"", ""currency"": ""USD""}",3477.4,Gold,1 +8678,Jacqueline Martin,kyle52@hotmail.com,2020-07-05,"{""language"": ""EN"", ""currency"": ""MXN""}",5300.26,Bronze,0 +8679,Zachary Franklin,fherrera@andrews.com,2020-08-28,"{""language"": ""FR"", ""currency"": ""GBP""}",8905.75,Bronze,1 +8680,Patricia Martin,sheila32@berger.info,2024-03-13,"{""language"": ""EN"", ""currency"": ""GBP""}",4595.62,Bronze,0 +8681,Adam Stephens,weeksterri@coleman.org,2021-01-29,"{""language"": ""DE"", ""currency"": ""GBP""}",8775.62,Gold,0 +8682,Kerry Cruz,zbailey@collins.com,2023-06-19,"{""language"": ""EN"", ""currency"": ""EUR""}",8085.76,Silver,0 +8683,Kathleen Jones,iprice@woods.biz,2020-12-04,"{""language"": ""EN"", ""currency"": ""GBP""}",5312.86,Silver,0 +8684,Steven Mendez,carrolljennifer@rodriguez-peck.info,2024-01-09,"{""language"": ""ES"", ""currency"": ""EUR""}",4314.65,Bronze,0 +8685,Alexandria Hunt,hollandlori@hotmail.com,2022-09-04,"{""language"": ""FR"", ""currency"": ""CAD""}",8165.03,Bronze,0 +8686,Stefanie Atkins,james72@hotmail.com,2024-08-02,"{""language"": ""FR"", ""currency"": ""GBP""}",4207.73,Bronze,1 +8687,Linda Young,ahaynes@hotmail.com,2023-02-07,"{""language"": ""DE"", ""currency"": ""CAD""}",4483.3,Bronze,1 +8688,Karen Smith,combschristian@hotmail.com,2022-03-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4188.32,Bronze,0 +8689,Sara Alexander,travisbishop@shelton-lewis.com,2022-11-29,"{""language"": ""IT"", ""currency"": ""EUR""}",4026.87,Silver,0 +8690,Chad Santiago,richarddavis@oliver.org,2021-05-26,"{""language"": ""IT"", ""currency"": ""CAD""}",8858.91,Silver,1 +8691,Christopher Morris,nancyadkins@ewing.com,2021-10-13,"{""language"": ""DE"", ""currency"": ""CAD""}",7473.67,Silver,0 +8692,Richard Riddle,olsonjohn@simmons.org,2020-09-25,"{""language"": ""EN"", ""currency"": ""GBP""}",3886.18,Silver,0 +8693,Thomas Jones,jasonmcclain@martin.com,2023-08-01,"{""language"": ""IT"", ""currency"": ""EUR""}",2141.65,Gold,1 +8694,Sierra Donaldson,esantos@randolph.com,2020-06-09,"{""language"": ""IT"", ""currency"": ""GBP""}",1459.64,Gold,0 +8695,Colin Maxwell,goodwinscott@yahoo.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2220.75,Gold,0 +8696,Susan Morales,christophergill@gmail.com,2020-12-30,"{""language"": ""EN"", ""currency"": ""USD""}",4000.8,Bronze,0 +8697,Joshua Butler,brittanykane@miller.com,2024-06-13,"{""language"": ""IT"", ""currency"": ""MXN""}",2735.89,Silver,0 +8698,Paul Thomas,andrew90@finley-davis.com,2021-07-17,"{""language"": ""EN"", ""currency"": ""MXN""}",8893.49,Gold,1 +8699,Christopher Short,mullinsleslie@peterson-wilson.com,2024-08-19,"{""language"": ""EN"", ""currency"": ""GBP""}",6046.8,Bronze,0 +8700,Angela Smith,karlmoody@hudson-aguirre.biz,2023-04-08,"{""language"": ""IT"", ""currency"": ""MXN""}",6129.88,Silver,1 +8701,Mr. Timothy Smith,andrew79@martin-bennett.com,2022-02-27,"{""language"": ""FR"", ""currency"": ""GBP""}",2882.11,Gold,1 +8702,Erika Vaughn MD,nathancamacho@hotmail.com,2024-07-28,"{""language"": ""ES"", ""currency"": ""GBP""}",7002.73,Gold,0 +8703,Tammy Cooper,michaelnelson@hotmail.com,2020-02-03,"{""language"": ""ES"", ""currency"": ""CAD""}",5342.85,Bronze,0 +8704,Michael Johnson,mia74@brooks.net,2021-06-20,"{""language"": ""ES"", ""currency"": ""USD""}",3956.41,Gold,1 +8705,Debra Johnson,emiller@miller.com,2022-11-09,"{""language"": ""EN"", ""currency"": ""GBP""}",2158.08,Silver,1 +8706,Kim Bryant,nina73@hotmail.com,2023-09-02,"{""language"": ""ES"", ""currency"": ""GBP""}",655.11,Gold,1 +8707,Rebecca Craig,nthompson@hotmail.com,2020-10-30,"{""language"": ""ES"", ""currency"": ""GBP""}",4626.69,Silver,0 +8708,Jennifer Reyes,estestheodore@hotmail.com,2023-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2242.58,Bronze,0 +8709,Jean Bradshaw,melissalawson@hotmail.com,2023-02-13,"{""language"": ""EN"", ""currency"": ""MXN""}",6102.04,Bronze,1 +8710,Scott Brown,vrodriguez@hotmail.com,2021-05-29,"{""language"": ""ES"", ""currency"": ""CAD""}",5340.15,Bronze,1 +8711,Tyler Miller,zchen@gmail.com,2022-06-18,"{""language"": ""ES"", ""currency"": ""GBP""}",4224.75,Bronze,0 +8712,Andrew Torres,shicks@gmail.com,2022-04-30,"{""language"": ""FR"", ""currency"": ""MXN""}",4116.31,Bronze,1 +8713,Cindy Ewing,tyler83@hotmail.com,2023-01-20,"{""language"": ""DE"", ""currency"": ""MXN""}",6368.52,Gold,0 +8714,Katherine Gonzales,joshua94@hotmail.com,2023-07-21,"{""language"": ""EN"", ""currency"": ""CAD""}",6065.44,Gold,0 +8715,Michael Lewis,susanreynolds@gmail.com,2024-08-09,"{""language"": ""IT"", ""currency"": ""GBP""}",335.31,Gold,0 +8716,Jessica Bradford,amanda80@yahoo.com,2020-12-16,"{""language"": ""EN"", ""currency"": ""GBP""}",4292.83,Bronze,0 +8717,Katherine Khan,smithkathy@hotmail.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""EUR""}",4606.37,Gold,1 +8718,Craig Reynolds,dlarson@hotmail.com,2021-03-06,"{""language"": ""IT"", ""currency"": ""EUR""}",6602.24,Silver,1 +8719,John Stevens,mooreeugene@hotmail.com,2023-05-08,"{""language"": ""FR"", ""currency"": ""USD""}",5943.68,Silver,0 +8720,Whitney Salazar,claytonemily@gmail.com,2023-12-17,"{""language"": ""EN"", ""currency"": ""CAD""}",9004.08,Bronze,1 +8721,Stephanie Johnson,tguzman@yahoo.com,2020-03-02,"{""language"": ""DE"", ""currency"": ""MXN""}",5970.88,Gold,0 +8722,Christopher Patterson,joshuajackson@gmail.com,2024-03-25,"{""language"": ""FR"", ""currency"": ""EUR""}",1804.32,Bronze,1 +8723,Carol Brooks,gainesriley@rhodes-riley.com,2021-06-08,"{""language"": ""ES"", ""currency"": ""EUR""}",8134.67,Silver,1 +8724,Karla Cummings,jaredparker@yahoo.com,2023-08-17,"{""language"": ""IT"", ""currency"": ""EUR""}",8760.41,Bronze,0 +8725,Christina Arellano,joelkim@yahoo.com,2022-10-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2344.88,Gold,1 +8726,Lori Wood,tmartinez@yahoo.com,2024-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",3563.95,Bronze,1 +8727,Kim Young,obailey@hotmail.com,2021-04-29,"{""language"": ""IT"", ""currency"": ""MXN""}",2995.97,Gold,0 +8728,Colton Peterson,jacksonjoseph@yahoo.com,2024-05-18,"{""language"": ""IT"", ""currency"": ""USD""}",2492.82,Gold,0 +8729,Christopher Jackson,cindyhorton@marshall.com,2021-01-24,"{""language"": ""EN"", ""currency"": ""EUR""}",5995.37,Gold,0 +8730,David Schultz,rivaschad@gmail.com,2024-05-10,"{""language"": ""EN"", ""currency"": ""GBP""}",4962.34,Bronze,0 +8731,Joy Hoffman,rlopez@ward.com,2024-07-17,"{""language"": ""DE"", ""currency"": ""USD""}",7117.79,Silver,1 +8732,Ryan Bowen,turnerlinda@gmail.com,2020-07-09,"{""language"": ""FR"", ""currency"": ""EUR""}",8569.5,Bronze,0 +8733,Veronica Martinez,rbrown@davis.com,2022-10-26,"{""language"": ""ES"", ""currency"": ""EUR""}",7504.34,Silver,0 +8734,Tracey Vasquez,johnsonerik@hotmail.com,2024-07-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1651.33,Bronze,1 +8735,Travis Chambers,david90@gmail.com,2022-04-28,"{""language"": ""IT"", ""currency"": ""USD""}",3027.76,Bronze,1 +8736,Michele Ortiz,crossdanielle@hotmail.com,2024-05-18,"{""language"": ""EN"", ""currency"": ""CAD""}",9557.91,Silver,0 +8737,Sarah Compton,jessicarodriguez@tucker.com,2020-04-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7935.37,Bronze,0 +8738,Cynthia Weber,jamiemedina@gmail.com,2020-01-12,"{""language"": ""DE"", ""currency"": ""GBP""}",3862.4,Gold,1 +8739,Amanda Watkins,emily30@villanueva.com,2024-03-19,"{""language"": ""FR"", ""currency"": ""MXN""}",1887.53,Bronze,0 +8740,Melissa Webb,larrytaylor@gmail.com,2023-01-15,"{""language"": ""DE"", ""currency"": ""USD""}",2139.6,Silver,1 +8741,Lisa Williams,taylormorris@thomas-arellano.com,2022-07-04,"{""language"": ""EN"", ""currency"": ""CAD""}",4283.54,Silver,0 +8742,George Weber,megan03@hotmail.com,2022-01-06,"{""language"": ""FR"", ""currency"": ""MXN""}",3495.64,Silver,0 +8743,Adrian Rivera,odavis@brown.com,2024-03-25,"{""language"": ""FR"", ""currency"": ""GBP""}",7444.64,Silver,0 +8744,Michael Wiggins,wtucker@yahoo.com,2020-10-25,"{""language"": ""ES"", ""currency"": ""MXN""}",428.65,Silver,1 +8745,Christina Berg,hnelson@hotmail.com,2021-12-12,"{""language"": ""FR"", ""currency"": ""MXN""}",8283.79,Bronze,1 +8746,Jacob Bridges,elizabeth02@shaw.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""CAD""}",1933.62,Silver,1 +8747,Victoria Odom,sharon37@gmail.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""EUR""}",1204.99,Gold,0 +8748,John Mason,john73@campbell.biz,2021-06-05,"{""language"": ""DE"", ""currency"": ""MXN""}",5177.64,Silver,1 +8749,Shawn Stevens,robinsonmatthew@johnson.info,2021-04-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8173.18,Bronze,0 +8750,Michele Smith,rachel08@lee-drake.net,2021-02-19,"{""language"": ""FR"", ""currency"": ""EUR""}",4303.22,Silver,0 +8751,David Williams,rachaelmueller@yahoo.com,2022-09-03,"{""language"": ""EN"", ""currency"": ""EUR""}",2395.14,Gold,1 +8752,Walter Burch,ellisdean@yahoo.com,2023-04-23,"{""language"": ""DE"", ""currency"": ""CAD""}",3866.23,Gold,0 +8753,Jeffrey Kelly,kevin01@rice.com,2023-04-07,"{""language"": ""EN"", ""currency"": ""CAD""}",6312.94,Silver,1 +8754,Eric Tanner,leahthompson@gmail.com,2021-06-05,"{""language"": ""EN"", ""currency"": ""EUR""}",889.84,Bronze,1 +8755,Jessica Wade,pking@yahoo.com,2024-04-27,"{""language"": ""ES"", ""currency"": ""EUR""}",4715.51,Gold,1 +8756,Samantha Mullen,morrisdawn@sullivan-collier.com,2021-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",7041.63,Silver,0 +8757,Nathaniel Brown,cantuheather@yahoo.com,2019-12-23,"{""language"": ""ES"", ""currency"": ""CAD""}",6859.39,Gold,1 +8758,Tara Cooley,paulhamilton@hotmail.com,2021-10-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9430.85,Silver,0 +8759,Nicole Orozco,jessecastillo@walker-gonzalez.com,2021-05-21,"{""language"": ""FR"", ""currency"": ""EUR""}",711.01,Bronze,0 +8760,Derek Oneal,parrishcarl@yahoo.com,2021-05-25,"{""language"": ""IT"", ""currency"": ""EUR""}",4831.02,Bronze,1 +8761,Diana Norris,ksweeney@wilson-jordan.com,2023-02-14,"{""language"": ""FR"", ""currency"": ""MXN""}",8775.28,Silver,1 +8762,Ana Thomas,zwilliams@hotmail.com,2021-04-06,"{""language"": ""IT"", ""currency"": ""MXN""}",8307.94,Bronze,1 +8763,Jacob Rocha,brittanyramos@gmail.com,2020-03-01,"{""language"": ""FR"", ""currency"": ""EUR""}",1750.89,Gold,1 +8764,Steven Garcia,rbrown@parker.com,2020-07-30,"{""language"": ""FR"", ""currency"": ""GBP""}",3298.8,Bronze,1 +8765,Andre King,leahobrien@hotmail.com,2020-05-18,"{""language"": ""FR"", ""currency"": ""EUR""}",5119.83,Gold,0 +8766,Brittany Petersen,leroy64@gmail.com,2021-04-24,"{""language"": ""IT"", ""currency"": ""EUR""}",555.82,Silver,1 +8767,Christopher Reed,jjennings@yahoo.com,2021-10-24,"{""language"": ""EN"", ""currency"": ""MXN""}",3978.31,Silver,1 +8768,Darryl Beltran,bschmidt@gmail.com,2020-04-08,"{""language"": ""EN"", ""currency"": ""CAD""}",4611.48,Bronze,0 +8769,Sarah Vega,mullinsbrittany@jones-silva.com,2022-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",9842.97,Bronze,1 +8770,Christopher Davis,delgadobenjamin@townsend.com,2021-06-07,"{""language"": ""EN"", ""currency"": ""EUR""}",3145.02,Silver,0 +8771,Rebecca Monroe,nicole88@manning-cole.biz,2022-03-03,"{""language"": ""ES"", ""currency"": ""GBP""}",6783.27,Gold,0 +8772,Charles Murray,ryan32@brooks-bradley.com,2022-07-22,"{""language"": ""FR"", ""currency"": ""GBP""}",7862.99,Silver,1 +8773,Joyce Mills,darrellgardner@yahoo.com,2022-03-03,"{""language"": ""EN"", ""currency"": ""USD""}",4882.6,Gold,1 +8774,Kathleen Page,deniseclark@myers.com,2023-05-08,"{""language"": ""DE"", ""currency"": ""GBP""}",9095.53,Silver,1 +8775,Brian Stewart,caitlyn96@gmail.com,2022-03-26,"{""language"": ""ES"", ""currency"": ""MXN""}",8865.19,Gold,0 +8776,Ryan Griffin,donaldrobinson@yahoo.com,2023-10-17,"{""language"": ""FR"", ""currency"": ""USD""}",1739.34,Gold,0 +8777,Sherry Garner,mooremichael@johnson.com,2023-08-21,"{""language"": ""EN"", ""currency"": ""GBP""}",9448.53,Bronze,1 +8778,Blake Snyder,saracollins@duran.com,2020-06-16,"{""language"": ""IT"", ""currency"": ""USD""}",4484.09,Gold,0 +8779,Brenda Jones,blam@newman.com,2020-10-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3771.84,Bronze,1 +8780,John Cabrera,aguilarcandace@hotmail.com,2022-03-29,"{""language"": ""FR"", ""currency"": ""GBP""}",5017.94,Silver,1 +8781,Hannah Wood,judith70@miller.com,2019-12-28,"{""language"": ""FR"", ""currency"": ""USD""}",4649.85,Silver,0 +8782,Eric Thompson,kruegerjeffrey@williams.org,2023-09-18,"{""language"": ""ES"", ""currency"": ""MXN""}",2394.81,Gold,0 +8783,William Rodriguez,deckercody@hotmail.com,2023-05-02,"{""language"": ""DE"", ""currency"": ""CAD""}",4575.94,Silver,0 +8784,Patrick Duran,amy42@hall-miller.com,2024-01-23,"{""language"": ""EN"", ""currency"": ""CAD""}",9393.5,Bronze,0 +8785,Sarah Taylor,qdavis@lynch.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""EUR""}",8567.88,Bronze,1 +8786,Timothy Walker,qwilliams@hurst-aguilar.org,2021-12-15,"{""language"": ""DE"", ""currency"": ""USD""}",1300.8,Bronze,0 +8787,Jared Hill,fphillips@murphy.org,2021-09-20,"{""language"": ""DE"", ""currency"": ""USD""}",676.45,Gold,0 +8788,Jimmy Gaines,cody43@gmail.com,2020-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",8298.03,Gold,1 +8789,Robin Mathis,robersontiffany@moreno.com,2020-12-29,"{""language"": ""EN"", ""currency"": ""EUR""}",6531.61,Gold,1 +8790,Kim Hawkins,christophergarcia@roberts-finley.com,2020-11-23,"{""language"": ""ES"", ""currency"": ""USD""}",9325.02,Gold,1 +8791,Bruce King,timothyjohnson@wilson.com,2022-09-22,"{""language"": ""DE"", ""currency"": ""USD""}",7996.7,Bronze,0 +8792,Cindy Mosley,heather97@gmail.com,2021-04-13,"{""language"": ""IT"", ""currency"": ""CAD""}",68.67,Silver,0 +8793,Edward Miller,burnsluke@houston.net,2024-11-22,"{""language"": ""EN"", ""currency"": ""MXN""}",198.29,Silver,0 +8794,Karen Thomas,marchayes@gmail.com,2023-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5371.5,Gold,0 +8795,Sean King,hicksapril@gmail.com,2022-05-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3871.74,Gold,1 +8796,Richard Smith,meagan48@orozco.biz,2022-05-11,"{""language"": ""ES"", ""currency"": ""MXN""}",629.98,Silver,1 +8797,Travis Smith,kimberlyramirez@hotmail.com,2022-03-18,"{""language"": ""IT"", ""currency"": ""GBP""}",3013.37,Silver,1 +8798,Michael Bartlett,hortontodd@pacheco.com,2022-11-26,"{""language"": ""DE"", ""currency"": ""GBP""}",6673.64,Gold,0 +8799,Stacy Butler,lrivas@gmail.com,2024-04-09,"{""language"": ""DE"", ""currency"": ""GBP""}",7706.01,Bronze,1 +8800,Stuart Cuevas,laura14@adams-wood.biz,2024-03-08,"{""language"": ""EN"", ""currency"": ""MXN""}",8872.27,Gold,0 +8801,Brent Tran,pwoods@lopez.com,2024-11-01,"{""language"": ""EN"", ""currency"": ""USD""}",2177.77,Gold,1 +8802,Jeffrey Morris,petersondaisy@hotmail.com,2024-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4882.5,Silver,1 +8803,Theresa Sanchez,bushandrew@hotmail.com,2020-08-03,"{""language"": ""IT"", ""currency"": ""USD""}",9814.5,Bronze,0 +8804,Amanda Pearson,gallowaydarlene@hotmail.com,2022-09-21,"{""language"": ""FR"", ""currency"": ""MXN""}",8089.45,Gold,1 +8805,Gina Barnes,lawrence74@hooper.biz,2022-07-23,"{""language"": ""EN"", ""currency"": ""CAD""}",1735.68,Silver,0 +8806,Danny Johnson,david60@coleman.biz,2022-10-09,"{""language"": ""EN"", ""currency"": ""USD""}",5751.68,Bronze,0 +8807,Jack Cole,vbowman@houston-carter.com,2023-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",5981.66,Bronze,0 +8808,Dana Johnson,ncobb@gmail.com,2022-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",4170.15,Gold,1 +8809,Amanda Hawkins,daniellegonzalez@yahoo.com,2020-11-01,"{""language"": ""FR"", ""currency"": ""USD""}",5452.15,Silver,0 +8810,John Burton,caldwelljoshua@bruce.com,2022-11-07,"{""language"": ""IT"", ""currency"": ""USD""}",9524.45,Silver,0 +8811,Tim Murphy,jenniferthompson@yahoo.com,2024-06-03,"{""language"": ""FR"", ""currency"": ""USD""}",4079.33,Bronze,1 +8812,Mark Stark,philip23@hotmail.com,2021-10-28,"{""language"": ""ES"", ""currency"": ""GBP""}",9174.17,Gold,0 +8813,Sheri Jones,mshields@yahoo.com,2024-07-25,"{""language"": ""EN"", ""currency"": ""MXN""}",9085.24,Bronze,0 +8814,Timothy Mcdonald,stephanie17@bell-strickland.com,2021-10-07,"{""language"": ""DE"", ""currency"": ""CAD""}",7597.7,Gold,1 +8815,Stephen Patterson,christophermatthews@walls.biz,2023-03-02,"{""language"": ""IT"", ""currency"": ""USD""}",4316.08,Silver,1 +8816,Adam Hunt,scottkelly@hotmail.com,2022-01-22,"{""language"": ""FR"", ""currency"": ""EUR""}",940.06,Gold,1 +8817,Jacqueline Walters,ywoods@cameron-robinson.biz,2024-02-23,"{""language"": ""DE"", ""currency"": ""GBP""}",7095.5,Silver,0 +8818,Dennis Carter,lballard@yahoo.com,2022-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",9370.25,Gold,1 +8819,Sonya Hamilton,timothy45@yahoo.com,2023-03-07,"{""language"": ""DE"", ""currency"": ""GBP""}",1400.32,Bronze,1 +8820,Christine Hughes,arielsmith@robinson.com,2021-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",4909.8,Bronze,0 +8821,Katherine Fisher,shepherdmary@gmail.com,2022-03-29,"{""language"": ""ES"", ""currency"": ""MXN""}",7494.94,Bronze,1 +8822,Ryan Perez II,justin77@hotmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7627.97,Bronze,0 +8823,Randy Green,christopherwolf@hotmail.com,2023-08-16,"{""language"": ""DE"", ""currency"": ""USD""}",7434.13,Bronze,0 +8824,Terry Meyers,pinedadonald@hotmail.com,2023-09-05,"{""language"": ""DE"", ""currency"": ""CAD""}",3651.53,Bronze,0 +8825,Lee Walker,meredith85@turner.com,2023-02-20,"{""language"": ""FR"", ""currency"": ""GBP""}",721.07,Gold,1 +8826,Anna Kelley,stephanie88@melendez.net,2021-01-27,"{""language"": ""FR"", ""currency"": ""CAD""}",6491.57,Gold,1 +8827,Jessica Clark,alexandria73@hotmail.com,2024-10-14,"{""language"": ""IT"", ""currency"": ""EUR""}",3653.05,Gold,1 +8828,Richard Richmond,hernandezdanielle@gmail.com,2024-03-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1173.14,Silver,1 +8829,Barbara Lopez,carrie14@wilson.com,2024-05-26,"{""language"": ""EN"", ""currency"": ""MXN""}",8689.75,Bronze,1 +8830,Seth Bass,kwise@simmons.net,2022-02-26,"{""language"": ""EN"", ""currency"": ""USD""}",8824.09,Silver,1 +8831,Pamela Myers,isaaclee@powell.org,2021-03-16,"{""language"": ""IT"", ""currency"": ""GBP""}",7488.07,Gold,0 +8832,Sarah Mason,michele07@gmail.com,2023-03-24,"{""language"": ""ES"", ""currency"": ""GBP""}",3163.2,Silver,0 +8833,Megan Thompson,travishernandez@nelson.com,2021-03-07,"{""language"": ""FR"", ""currency"": ""CAD""}",8271.1,Bronze,1 +8834,Vickie Shaw,catherinemaldonado@hotmail.com,2022-02-26,"{""language"": ""FR"", ""currency"": ""CAD""}",4654.74,Gold,1 +8835,Shannon Smith,weaverdavid@gmail.com,2023-11-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9358.21,Silver,1 +8836,Jeffrey Owens,hernandezmichael@yahoo.com,2023-04-22,"{""language"": ""EN"", ""currency"": ""MXN""}",8742.42,Bronze,0 +8837,Summer Phillips,ecraig@hotmail.com,2019-12-13,"{""language"": ""FR"", ""currency"": ""USD""}",7751.42,Silver,1 +8838,Derek Flores,paul12@gmail.com,2021-03-24,"{""language"": ""FR"", ""currency"": ""CAD""}",7813.46,Bronze,0 +8839,Molly Woods,carroyo@gmail.com,2022-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",2519.07,Silver,1 +8840,Robert Johnson,xmichael@douglas.com,2024-05-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8967.1,Gold,0 +8841,Christina Santiago,ahowell@gmail.com,2020-02-14,"{""language"": ""IT"", ""currency"": ""USD""}",488.72,Silver,0 +8842,Elizabeth Byrd,hermanshawn@gibson.com,2021-03-19,"{""language"": ""IT"", ""currency"": ""USD""}",1606.14,Silver,0 +8843,Jennifer Rice,davisrichard@turner.com,2021-05-08,"{""language"": ""EN"", ""currency"": ""GBP""}",5235.6,Silver,1 +8844,Jacob Moore,zhiggins@richardson.com,2021-07-18,"{""language"": ""ES"", ""currency"": ""GBP""}",5868.1,Bronze,0 +8845,Ronald Smith,vcole@griffith.com,2024-08-19,"{""language"": ""DE"", ""currency"": ""CAD""}",993.49,Gold,0 +8846,Dawn Newman,ssmith@hotmail.com,2023-04-08,"{""language"": ""ES"", ""currency"": ""MXN""}",1115.04,Gold,1 +8847,Leslie Mejia,arnoldwilliam@foster-navarro.com,2022-08-02,"{""language"": ""DE"", ""currency"": ""GBP""}",2625.96,Bronze,0 +8848,Carol Henderson,sterry@mora.com,2022-06-14,"{""language"": ""ES"", ""currency"": ""USD""}",1902.13,Gold,0 +8849,Hannah West,yschaefer@gmail.com,2022-11-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6059.39,Silver,1 +8850,Ethan Murphy,cynthialee@cooley.net,2021-08-15,"{""language"": ""EN"", ""currency"": ""GBP""}",6420.93,Silver,1 +8851,Kyle Taylor,evanhaynes@gmail.com,2023-04-28,"{""language"": ""FR"", ""currency"": ""EUR""}",227.58,Silver,1 +8852,Mr. Joseph Stevenson Jr.,hodgechristopher@gmail.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""GBP""}",6720.89,Silver,1 +8853,Daniel Benson,larsonjason@jones.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""CAD""}",2191.99,Bronze,0 +8854,Meredith Taylor,aaron15@hotmail.com,2024-03-06,"{""language"": ""DE"", ""currency"": ""CAD""}",3967.37,Gold,0 +8855,Lisa Barber,hmitchell@yahoo.com,2022-09-22,"{""language"": ""EN"", ""currency"": ""USD""}",8309.12,Bronze,0 +8856,Mary Benton,ryanhernandez@gmail.com,2021-01-09,"{""language"": ""ES"", ""currency"": ""EUR""}",5299.38,Gold,0 +8857,Christina Watkins,johnsonivan@yahoo.com,2022-03-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1169.87,Silver,1 +8858,Christopher Galloway,wmendez@gmail.com,2023-12-09,"{""language"": ""EN"", ""currency"": ""USD""}",885.28,Silver,1 +8859,Anna Cunningham,claudia46@gmail.com,2020-08-07,"{""language"": ""IT"", ""currency"": ""EUR""}",8713.64,Bronze,1 +8860,Tyler Martinez,marshalljackson@smith-gill.com,2024-11-15,"{""language"": ""DE"", ""currency"": ""USD""}",6326.89,Bronze,0 +8861,Tracy Turner,gmason@hotmail.com,2024-03-17,"{""language"": ""EN"", ""currency"": ""CAD""}",6805.53,Silver,0 +8862,Destiny Knight,thomasjulie@cook-king.com,2024-06-17,"{""language"": ""FR"", ""currency"": ""MXN""}",7937.48,Bronze,1 +8863,Ricky Terry,aimeethompson@brown.info,2021-06-06,"{""language"": ""EN"", ""currency"": ""USD""}",6600.28,Bronze,0 +8864,Veronica English PhD,tanner92@gmail.com,2023-01-22,"{""language"": ""DE"", ""currency"": ""MXN""}",7766.17,Gold,1 +8865,Margaret Gray,levi69@lane.com,2019-12-15,"{""language"": ""ES"", ""currency"": ""GBP""}",2879.67,Bronze,0 +8866,Patricia White,imckay@gmail.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""EUR""}",9052.5,Gold,1 +8867,David Brown,gsingh@yahoo.com,2022-12-11,"{""language"": ""DE"", ""currency"": ""USD""}",9993.34,Silver,1 +8868,Leah Sherman,patrickgabriel@sanders.org,2024-10-18,"{""language"": ""EN"", ""currency"": ""USD""}",3886.33,Bronze,1 +8869,Mark Lawrence,baileydouglas@yahoo.com,2021-11-18,"{""language"": ""DE"", ""currency"": ""CAD""}",7983.02,Bronze,1 +8870,Stephanie Rios,nelsonlindsey@yahoo.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""CAD""}",2261.66,Bronze,0 +8871,Rachael Bradley,bbush@clark.net,2024-09-27,"{""language"": ""DE"", ""currency"": ""CAD""}",1245.46,Silver,0 +8872,Michelle Weeks,carly07@gmail.com,2023-10-10,"{""language"": ""FR"", ""currency"": ""USD""}",6421.14,Gold,0 +8873,Michael Moran,sjohnson@cole.info,2024-10-18,"{""language"": ""EN"", ""currency"": ""GBP""}",1635.75,Bronze,0 +8874,Dr. Kyle Carpenter,hannah84@hotmail.com,2020-04-04,"{""language"": ""FR"", ""currency"": ""USD""}",2498.78,Silver,1 +8875,Marc Combs,ulawson@hotmail.com,2022-03-08,"{""language"": ""IT"", ""currency"": ""USD""}",8171.37,Bronze,0 +8876,Darlene Shaw,daltonchandler@yahoo.com,2020-07-11,"{""language"": ""FR"", ""currency"": ""MXN""}",6266.4,Silver,1 +8877,Cathy Padilla,afigueroa@jones.info,2020-11-15,"{""language"": ""ES"", ""currency"": ""USD""}",7122.67,Gold,0 +8878,Richard Miller,ismith@gmail.com,2024-01-21,"{""language"": ""DE"", ""currency"": ""MXN""}",1483.13,Silver,0 +8879,Debra Braun,acoleman@brown.com,2024-06-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4276.84,Silver,1 +8880,Mary Martinez,patriciaobrien@yahoo.com,2021-11-22,"{""language"": ""ES"", ""currency"": ""GBP""}",986.72,Gold,1 +8881,Gabriella Williams,wardjason@stark.com,2024-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",8349.68,Gold,0 +8882,Cody Porter,smithchristopher@sparks.org,2024-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",9305.16,Silver,0 +8883,Christina Williams,rbanks@lopez.com,2022-11-06,"{""language"": ""ES"", ""currency"": ""EUR""}",368.06,Gold,0 +8884,Donna Davis,eric24@vega-lewis.com,2020-01-18,"{""language"": ""IT"", ""currency"": ""GBP""}",4156.49,Silver,0 +8885,Patrick Murray,sara11@gmail.com,2023-06-14,"{""language"": ""FR"", ""currency"": ""GBP""}",8736.82,Bronze,0 +8886,Chad Villanueva,william06@hotmail.com,2020-08-06,"{""language"": ""DE"", ""currency"": ""CAD""}",7243.95,Bronze,1 +8887,Monique Short,scott31@brewer-harper.info,2024-01-05,"{""language"": ""IT"", ""currency"": ""CAD""}",7901.49,Silver,0 +8888,Jill Lopez,mrangel@garza.com,2020-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",673.51,Silver,0 +8889,Joann Johnson MD,lvasquez@hotmail.com,2021-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",6328.35,Bronze,1 +8890,Ann Sanchez,miguel62@gates-johnson.net,2024-10-16,"{""language"": ""IT"", ""currency"": ""CAD""}",54.61,Silver,0 +8891,Ruth Swanson,carlosdowns@davis.com,2020-10-02,"{""language"": ""EN"", ""currency"": ""EUR""}",2581.12,Gold,1 +8892,Andrea Hernandez,ricardoholloway@ayers.com,2021-09-09,"{""language"": ""DE"", ""currency"": ""CAD""}",9986.58,Gold,1 +8893,Jenna Lindsey,phill@smith.com,2020-08-12,"{""language"": ""FR"", ""currency"": ""GBP""}",8082.65,Silver,1 +8894,Kristin Mitchell PhD,williamsjames@hotmail.com,2023-09-16,"{""language"": ""FR"", ""currency"": ""MXN""}",9569.05,Silver,0 +8895,Olivia Gates,livingstonandrew@oneill.net,2019-12-24,"{""language"": ""EN"", ""currency"": ""GBP""}",9771.93,Silver,1 +8896,Anna Robinson,jacob88@hanson.com,2023-09-30,"{""language"": ""FR"", ""currency"": ""MXN""}",3628.11,Bronze,1 +8897,Zachary Wright,umanning@gmail.com,2020-09-18,"{""language"": ""EN"", ""currency"": ""CAD""}",465.03,Gold,1 +8898,Matthew Williams,robertsscott@frazier-waters.com,2020-10-12,"{""language"": ""DE"", ""currency"": ""MXN""}",4581.48,Bronze,0 +8899,Emily Bowers,lhale@yahoo.com,2021-10-27,"{""language"": ""FR"", ""currency"": ""USD""}",5980.65,Bronze,0 +8900,Christine Davis,brittanymitchell@townsend.info,2024-04-10,"{""language"": ""ES"", ""currency"": ""USD""}",1748.23,Bronze,0 +8901,Michelle Reid,gtanner@hotmail.com,2020-10-04,"{""language"": ""FR"", ""currency"": ""EUR""}",7671.68,Bronze,0 +8902,Maria Macdonald,johnsonbrian@carr.com,2024-03-02,"{""language"": ""DE"", ""currency"": ""USD""}",7782.78,Silver,0 +8903,Julia Schroeder,cjames@gmail.com,2020-03-05,"{""language"": ""IT"", ""currency"": ""USD""}",1528.72,Bronze,0 +8904,Valerie Ryan,travisbarr@gmail.com,2021-12-31,"{""language"": ""DE"", ""currency"": ""EUR""}",2020.4,Gold,0 +8905,Daniel Burnett,tmason@henry-smith.com,2022-09-15,"{""language"": ""EN"", ""currency"": ""CAD""}",2562.0,Gold,0 +8906,David Rogers,zdavies@yahoo.com,2024-01-18,"{""language"": ""FR"", ""currency"": ""MXN""}",3800.85,Silver,0 +8907,Patricia Foster,greenmichele@juarez.com,2021-06-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1219.99,Bronze,1 +8908,Eric Phillips,whiteheadcarly@yahoo.com,2023-09-26,"{""language"": ""EN"", ""currency"": ""USD""}",3802.18,Gold,1 +8909,Amy Morgan,marioroman@barnes.com,2022-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",7095.33,Silver,0 +8910,Gordon Roach,scottwalker@hotmail.com,2021-11-13,"{""language"": ""DE"", ""currency"": ""USD""}",3657.94,Bronze,0 +8911,Maria Swanson,kim56@gmail.com,2019-12-23,"{""language"": ""IT"", ""currency"": ""MXN""}",3932.56,Bronze,1 +8912,Michael Farley,virginia68@andersen.com,2020-07-18,"{""language"": ""EN"", ""currency"": ""GBP""}",197.88,Silver,1 +8913,Troy Powell,stewartdarren@gmail.com,2024-11-19,"{""language"": ""FR"", ""currency"": ""CAD""}",3299.2,Silver,0 +8914,Jeremy Jarvis,njackson@mckinney-hernandez.biz,2021-07-15,"{""language"": ""DE"", ""currency"": ""EUR""}",4366.32,Gold,1 +8915,Timothy Harris,cody67@jones-dickson.com,2021-05-04,"{""language"": ""ES"", ""currency"": ""EUR""}",3854.43,Bronze,0 +8916,Martin Franklin,fcook@harrell.info,2020-01-25,"{""language"": ""ES"", ""currency"": ""GBP""}",3324.66,Gold,0 +8917,Priscilla Davis,kennethbrooks@gmail.com,2024-10-05,"{""language"": ""DE"", ""currency"": ""EUR""}",7668.65,Gold,0 +8918,Timothy Herrera,karengross@kim.com,2020-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",275.16,Bronze,1 +8919,Jim Robbins,lindsayallen@gonzalez.net,2023-10-28,"{""language"": ""ES"", ""currency"": ""GBP""}",6117.37,Silver,1 +8920,Emily Garcia,williamscharles@church-carpenter.com,2021-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",7679.93,Silver,1 +8921,Lisa Chapman,owensmelissa@gmail.com,2022-08-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9373.68,Bronze,1 +8922,Aimee Beltran,christopherholland@yahoo.com,2024-09-16,"{""language"": ""ES"", ""currency"": ""GBP""}",8223.62,Silver,1 +8923,Jennifer Leach,hfitzpatrick@hotmail.com,2023-03-15,"{""language"": ""FR"", ""currency"": ""EUR""}",5248.02,Gold,1 +8924,Joyce Schmidt,jayrobles@berry.biz,2020-05-03,"{""language"": ""DE"", ""currency"": ""USD""}",4964.82,Bronze,1 +8925,Gina Mays,ryandavis@gmail.com,2020-09-02,"{""language"": ""FR"", ""currency"": ""GBP""}",5539.21,Bronze,1 +8926,Gregory Brown,monicahurst@roy-dillon.org,2023-10-04,"{""language"": ""IT"", ""currency"": ""GBP""}",6335.47,Bronze,1 +8927,Elizabeth Ortega,tyler86@gmail.com,2024-09-18,"{""language"": ""EN"", ""currency"": ""MXN""}",4748.72,Bronze,1 +8928,Erik Bush,martineztyler@gmail.com,2024-11-04,"{""language"": ""EN"", ""currency"": ""EUR""}",5356.73,Gold,1 +8929,Justin Mendoza,williamgarza@gmail.com,2024-01-18,"{""language"": ""EN"", ""currency"": ""CAD""}",8265.56,Bronze,0 +8930,Chad Phillips,douglasbarajas@brown-hays.com,2022-07-26,"{""language"": ""FR"", ""currency"": ""MXN""}",5106.16,Gold,0 +8931,Mary Nicholson,garciarobert@yahoo.com,2020-11-07,"{""language"": ""ES"", ""currency"": ""CAD""}",9878.86,Bronze,0 +8932,Katherine Cooper,lsanchez@hotmail.com,2023-06-05,"{""language"": ""IT"", ""currency"": ""GBP""}",2963.88,Gold,1 +8933,Mary Herring,mortonlatasha@yahoo.com,2020-01-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1351.93,Gold,0 +8934,Katherine Vasquez,kevin50@petersen.net,2020-08-10,"{""language"": ""DE"", ""currency"": ""EUR""}",4757.27,Bronze,1 +8935,Ryan Bender,jennifer06@smith.com,2023-03-30,"{""language"": ""ES"", ""currency"": ""USD""}",4075.64,Silver,0 +8936,Denise Carter DVM,perezloretta@collins.com,2020-10-08,"{""language"": ""ES"", ""currency"": ""GBP""}",3618.06,Gold,1 +8937,Miss Amy Stevens,davidharris@flores.info,2022-02-09,"{""language"": ""IT"", ""currency"": ""CAD""}",2339.78,Silver,1 +8938,Daniel Allen,jennifer47@gmail.com,2022-05-29,"{""language"": ""EN"", ""currency"": ""EUR""}",2295.25,Silver,1 +8939,Sara Osborne,jessicastokes@saunders.com,2021-04-01,"{""language"": ""EN"", ""currency"": ""CAD""}",1490.87,Gold,1 +8940,Jeanette Andrews,gonzalezcindy@gmail.com,2023-10-11,"{""language"": ""ES"", ""currency"": ""USD""}",8676.6,Silver,0 +8941,Ashley Odom,morgandylan@gilmore.info,2024-04-24,"{""language"": ""FR"", ""currency"": ""MXN""}",8498.5,Silver,0 +8942,Gabriel Carter,sheri67@jackson-sims.com,2024-09-13,"{""language"": ""IT"", ""currency"": ""GBP""}",4403.34,Gold,1 +8943,Gina Perez,whughes@gmail.com,2021-03-16,"{""language"": ""ES"", ""currency"": ""USD""}",4745.13,Bronze,1 +8944,Erin Ray,djohnson@sims-patrick.com,2020-01-01,"{""language"": ""DE"", ""currency"": ""GBP""}",8890.16,Bronze,0 +8945,Shane Edwards,zferguson@bowman.biz,2024-12-02,"{""language"": ""ES"", ""currency"": ""EUR""}",8163.79,Gold,0 +8946,David Hogan,steven74@yahoo.com,2023-09-29,"{""language"": ""EN"", ""currency"": ""CAD""}",4707.94,Bronze,0 +8947,Brooke Nelson,kellyjacob@booth-wolf.info,2024-08-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7085.76,Silver,1 +8948,Sheila Mccormick,zachary02@gmail.com,2024-02-12,"{""language"": ""FR"", ""currency"": ""EUR""}",7581.5,Bronze,0 +8949,Ryan Thompson,claire87@yahoo.com,2023-06-17,"{""language"": ""IT"", ""currency"": ""CAD""}",9886.82,Silver,1 +8950,Mrs. Lori Parker,tammyfrench@gmail.com,2020-10-19,"{""language"": ""IT"", ""currency"": ""GBP""}",1859.01,Bronze,1 +8951,William Cooper,christineramirez@yahoo.com,2023-11-03,"{""language"": ""IT"", ""currency"": ""GBP""}",3922.3,Bronze,1 +8952,Christina Diaz,ryancruz@velasquez.com,2024-02-16,"{""language"": ""FR"", ""currency"": ""GBP""}",4524.44,Bronze,1 +8953,Michael Cabrera,atkinsdavid@morse.com,2023-08-03,"{""language"": ""ES"", ""currency"": ""USD""}",4172.08,Silver,1 +8954,Sarah Flores,heathlori@holland.com,2020-08-06,"{""language"": ""FR"", ""currency"": ""GBP""}",1629.96,Gold,0 +8955,Robert Davis,daniel70@hotmail.com,2022-01-19,"{""language"": ""ES"", ""currency"": ""GBP""}",5228.95,Bronze,1 +8956,Katie Cooley,tamara56@salinas.com,2023-07-02,"{""language"": ""DE"", ""currency"": ""USD""}",4006.7,Bronze,1 +8957,Taylor White,elizabethhodge@gonzalez-bennett.com,2020-03-04,"{""language"": ""EN"", ""currency"": ""USD""}",3200.64,Silver,1 +8958,Susan Molina,grodriguez@yahoo.com,2022-05-08,"{""language"": ""IT"", ""currency"": ""EUR""}",4889.01,Gold,1 +8959,Christopher Wright,james01@barnett.info,2023-06-27,"{""language"": ""EN"", ""currency"": ""MXN""}",2110.24,Gold,1 +8960,Jay Wood,gregory84@yahoo.com,2022-08-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8354.31,Gold,1 +8961,Brian Ward,xlee@yahoo.com,2023-02-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5906.13,Bronze,0 +8962,Maria Brown,bryan64@hampton-chen.com,2022-03-07,"{""language"": ""DE"", ""currency"": ""USD""}",8807.36,Bronze,1 +8963,Ann Cruz DDS,currysamantha@yahoo.com,2024-04-17,"{""language"": ""FR"", ""currency"": ""GBP""}",8352.54,Bronze,0 +8964,Timothy Carpenter,sgreen@cabrera-lee.org,2024-07-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6899.4,Silver,1 +8965,Kerri Shah,everettsarah@yahoo.com,2021-01-15,"{""language"": ""FR"", ""currency"": ""GBP""}",7605.87,Silver,0 +8966,Christopher Castro,brandonmueller@ross.biz,2023-06-08,"{""language"": ""EN"", ""currency"": ""MXN""}",6331.34,Bronze,1 +8967,Aaron Frederick,aimee64@yahoo.com,2022-10-22,"{""language"": ""ES"", ""currency"": ""USD""}",3880.57,Bronze,0 +8968,Michael Fischer Jr.,nelsoncharles@reynolds-martinez.info,2020-08-04,"{""language"": ""FR"", ""currency"": ""GBP""}",1388.03,Gold,0 +8969,Tracy Arnold,jaimemorris@hotmail.com,2022-06-05,"{""language"": ""EN"", ""currency"": ""CAD""}",2492.63,Silver,0 +8970,Karen Thompson,wmiller@stone-thomas.com,2023-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8663.33,Gold,0 +8971,Joshua Donovan,bethhoffman@black-acosta.biz,2023-01-03,"{""language"": ""FR"", ""currency"": ""CAD""}",4274.3,Bronze,1 +8972,Jennifer Smith,wrighteric@morales-sanford.com,2020-12-04,"{""language"": ""IT"", ""currency"": ""GBP""}",1174.29,Gold,0 +8973,Mr. Brett Hunter,yrichards@johnson.com,2024-03-27,"{""language"": ""EN"", ""currency"": ""MXN""}",276.04,Silver,0 +8974,Chad Weaver,victoriabarrera@crane.info,2021-09-03,"{""language"": ""ES"", ""currency"": ""EUR""}",8652.36,Bronze,1 +8975,Jared Adkins,cruzlaura@gmail.com,2020-05-07,"{""language"": ""EN"", ""currency"": ""CAD""}",3923.13,Gold,0 +8976,Jason Mendoza,jessica67@gmail.com,2023-10-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4414.74,Bronze,1 +8977,Carol Kelly,davidwilliams@anderson.org,2021-01-09,"{""language"": ""IT"", ""currency"": ""USD""}",7114.73,Bronze,1 +8978,Sharon Hanna DDS,tjohnson@garcia-anderson.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""MXN""}",936.78,Bronze,0 +8979,Antonio Evans,willie67@franco.com,2024-03-05,"{""language"": ""DE"", ""currency"": ""EUR""}",4404.26,Gold,1 +8980,Dustin Nguyen,zchandler@gutierrez.com,2021-02-05,"{""language"": ""FR"", ""currency"": ""CAD""}",4026.7,Bronze,1 +8981,Dr. Savannah Murphy MD,sarah77@nash-reynolds.com,2022-08-21,"{""language"": ""EN"", ""currency"": ""MXN""}",9381.0,Silver,0 +8982,Robert Palmer,evelynortega@yahoo.com,2023-09-24,"{""language"": ""IT"", ""currency"": ""CAD""}",1860.55,Silver,0 +8983,Scott Carter,ymarquez@gonzalez-smith.com,2020-02-01,"{""language"": ""FR"", ""currency"": ""USD""}",6548.48,Silver,0 +8984,Michael Lee,pbrown@yahoo.com,2020-05-11,"{""language"": ""FR"", ""currency"": ""CAD""}",1131.08,Gold,0 +8985,Danny Robinson,tinalindsey@yahoo.com,2022-01-09,"{""language"": ""DE"", ""currency"": ""CAD""}",3844.06,Gold,1 +8986,Mrs. Miranda Smith,laura22@rice.com,2022-06-21,"{""language"": ""EN"", ""currency"": ""GBP""}",3940.1,Bronze,0 +8987,Brian Mclaughlin,rebecca96@yahoo.com,2023-08-29,"{""language"": ""IT"", ""currency"": ""GBP""}",3097.17,Gold,0 +8988,Rhonda Miller DDS,susanbrown@ramsey.org,2024-02-01,"{""language"": ""DE"", ""currency"": ""GBP""}",9722.74,Bronze,1 +8989,Michael Wilson,jwyatt@gmail.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""MXN""}",5167.44,Gold,0 +8990,Daniel Jones,jennifernelson@gmail.com,2020-09-29,"{""language"": ""IT"", ""currency"": ""CAD""}",4406.04,Silver,1 +8991,Kaitlyn Green,markshannah@yahoo.com,2022-07-03,"{""language"": ""IT"", ""currency"": ""USD""}",7159.07,Silver,1 +8992,Michelle Smith,wjackson@gmail.com,2020-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",4451.73,Silver,1 +8993,Jessica Knox,npeck@hotmail.com,2023-07-31,"{""language"": ""FR"", ""currency"": ""USD""}",3780.85,Silver,0 +8994,Steven Brown,ucruz@merritt.biz,2023-12-07,"{""language"": ""EN"", ""currency"": ""MXN""}",2153.54,Gold,0 +8995,Jeffrey Kelly,gaydavid@massey.com,2021-06-26,"{""language"": ""FR"", ""currency"": ""CAD""}",3414.78,Silver,0 +8996,Patricia Mccormick,huntermichael@lopez-robinson.com,2023-06-22,"{""language"": ""ES"", ""currency"": ""GBP""}",8065.98,Silver,1 +8997,Paul Thornton,brandon41@krause.com,2022-08-17,"{""language"": ""IT"", ""currency"": ""GBP""}",9190.25,Bronze,0 +8998,Matthew Parker,doylemartin@kaiser-faulkner.com,2022-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",3294.06,Gold,0 +8999,Mr. Brandon Smith,cheryl25@wilson-rodriguez.net,2021-01-16,"{""language"": ""FR"", ""currency"": ""GBP""}",1037.52,Gold,1 +9000,James Boyer,johnsonamanda@smith.com,2020-06-04,"{""language"": ""DE"", ""currency"": ""GBP""}",8374.62,Gold,1 +9001,Angela Hall,grahamlouis@gmail.com,2021-07-17,"{""language"": ""IT"", ""currency"": ""MXN""}",235.47,Bronze,0 +9002,Austin Evans,kjennings@luna.org,2020-02-15,"{""language"": ""EN"", ""currency"": ""MXN""}",422.26,Gold,0 +9003,Cynthia Henson,virginia40@whitaker.com,2021-12-04,"{""language"": ""FR"", ""currency"": ""CAD""}",2864.05,Gold,0 +9004,Ryan Rowland,megan77@gmail.com,2023-03-27,"{""language"": ""FR"", ""currency"": ""CAD""}",3061.33,Gold,1 +9005,Jaime Brown,tammy43@henderson.net,2024-06-06,"{""language"": ""ES"", ""currency"": ""MXN""}",3932.99,Silver,1 +9006,Erin Strong,eric50@hotmail.com,2024-07-10,"{""language"": ""IT"", ""currency"": ""EUR""}",898.81,Gold,0 +9007,Zachary Stokes,kent34@hotmail.com,2020-10-20,"{""language"": ""DE"", ""currency"": ""MXN""}",4987.41,Gold,1 +9008,Madison Green,jacksonkaren@gonzalez-foster.com,2024-09-16,"{""language"": ""DE"", ""currency"": ""USD""}",6789.52,Bronze,1 +9009,Margaret Rogers,bradfaulkner@nicholson.net,2024-04-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4429.36,Bronze,0 +9010,Dan Cannon,brentyoung@knox-cameron.com,2020-10-29,"{""language"": ""FR"", ""currency"": ""MXN""}",9180.21,Bronze,0 +9011,John Love,raymond54@yahoo.com,2024-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",5917.24,Bronze,0 +9012,Ashley Mercado,martinezaaron@hotmail.com,2023-08-18,"{""language"": ""FR"", ""currency"": ""GBP""}",9387.93,Gold,1 +9013,Robert Gonzalez,johnlarson@hotmail.com,2022-12-12,"{""language"": ""IT"", ""currency"": ""GBP""}",8141.97,Gold,1 +9014,Patricia Montoya,nfernandez@hotmail.com,2020-10-09,"{""language"": ""ES"", ""currency"": ""GBP""}",4285.22,Gold,0 +9015,Walter Wiggins,malloryirwin@hoover-woodard.biz,2024-11-09,"{""language"": ""IT"", ""currency"": ""MXN""}",474.1,Silver,0 +9016,Amanda Fisher,tiffany70@gonzalez-lucas.org,2023-11-26,"{""language"": ""EN"", ""currency"": ""USD""}",2397.53,Silver,1 +9017,Ashley Turner,jeffreymontgomery@hotmail.com,2024-03-13,"{""language"": ""FR"", ""currency"": ""USD""}",8704.02,Gold,0 +9018,Tracy Trevino,jennifer58@gmail.com,2024-09-06,"{""language"": ""FR"", ""currency"": ""CAD""}",3052.92,Gold,1 +9019,Jacqueline Chambers MD,carterjoshua@hardy.com,2022-05-19,"{""language"": ""DE"", ""currency"": ""GBP""}",9003.55,Bronze,1 +9020,Vanessa Sanders,oliviahunter@hahn-tran.com,2023-02-17,"{""language"": ""DE"", ""currency"": ""CAD""}",4728.45,Bronze,0 +9021,Michael Hunt,michellebanks@castro-medina.net,2022-01-08,"{""language"": ""IT"", ""currency"": ""MXN""}",7323.25,Gold,0 +9022,Kathleen Scott,shawnwilliams@preston-garner.biz,2020-10-30,"{""language"": ""IT"", ""currency"": ""EUR""}",1042.07,Silver,1 +9023,Lisa Walter,fsanders@ortiz.org,2024-03-17,"{""language"": ""EN"", ""currency"": ""EUR""}",1741.02,Silver,1 +9024,Sheri Li,zrodriguez@smith-weaver.com,2024-10-17,"{""language"": ""FR"", ""currency"": ""CAD""}",3040.39,Silver,0 +9025,John Hernandez,rogerobrien@hotmail.com,2020-03-03,"{""language"": ""IT"", ""currency"": ""EUR""}",6870.95,Silver,1 +9026,Jeremy Walters,marybates@hotmail.com,2020-10-17,"{""language"": ""EN"", ""currency"": ""CAD""}",8239.48,Silver,1 +9027,Martha Hoffman,ronald96@stevens-good.com,2023-05-17,"{""language"": ""DE"", ""currency"": ""USD""}",4581.55,Gold,1 +9028,Jay Barber,derekdean@meyer-richard.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""USD""}",844.65,Bronze,0 +9029,Dr. Mark Martin,murphybrandon@hotmail.com,2020-12-17,"{""language"": ""ES"", ""currency"": ""CAD""}",2202.75,Silver,1 +9030,Deanna Lewis,joseph11@yahoo.com,2021-09-24,"{""language"": ""DE"", ""currency"": ""CAD""}",2170.06,Bronze,0 +9031,Melissa Myers,austinsaunders@hotmail.com,2020-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",2541.47,Gold,1 +9032,Dana Ramsey,brianna34@sosa-ryan.com,2020-02-18,"{""language"": ""FR"", ""currency"": ""CAD""}",5016.16,Bronze,0 +9033,Kenneth Olson,grahamrebecca@gmail.com,2021-05-23,"{""language"": ""DE"", ""currency"": ""MXN""}",8957.74,Gold,1 +9034,Joyce Salazar,lindawilliams@yahoo.com,2020-01-02,"{""language"": ""EN"", ""currency"": ""MXN""}",1596.67,Bronze,0 +9035,Michele Huerta,jasontapia@yahoo.com,2024-10-04,"{""language"": ""IT"", ""currency"": ""CAD""}",5743.24,Gold,0 +9036,Ryan Smith,jackrivera@davis-ingram.com,2020-01-13,"{""language"": ""DE"", ""currency"": ""USD""}",9640.74,Gold,1 +9037,David Tapia,jamesthompson@yahoo.com,2020-12-19,"{""language"": ""DE"", ""currency"": ""CAD""}",2643.09,Gold,0 +9038,Nicholas Welch,wallsdrew@jones-watts.com,2023-04-03,"{""language"": ""EN"", ""currency"": ""EUR""}",4218.38,Silver,0 +9039,Felicia Moody,christina51@bentley.com,2023-12-22,"{""language"": ""IT"", ""currency"": ""MXN""}",5331.06,Silver,1 +9040,Gregory Jefferson,heathersmith@lee-harris.biz,2021-04-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7318.15,Bronze,0 +9041,Adam Aguilar DVM,wsmith@jones-west.com,2020-04-18,"{""language"": ""IT"", ""currency"": ""MXN""}",5469.54,Bronze,1 +9042,Eric Rogers,dave81@jones-clark.biz,2022-09-28,"{""language"": ""ES"", ""currency"": ""USD""}",8936.36,Gold,0 +9043,Joseph Manning,linda83@navarro-jones.net,2024-09-14,"{""language"": ""ES"", ""currency"": ""USD""}",3551.81,Bronze,0 +9044,Evan Sharp,john87@howard.com,2023-08-08,"{""language"": ""FR"", ""currency"": ""USD""}",7161.24,Bronze,0 +9045,Nicholas Palmer,joshua28@gmail.com,2020-12-31,"{""language"": ""ES"", ""currency"": ""GBP""}",3145.26,Bronze,1 +9046,Tiffany Hill,susanmeyers@santiago-weber.net,2023-09-25,"{""language"": ""ES"", ""currency"": ""USD""}",1412.81,Gold,1 +9047,William Woods,zlong@yahoo.com,2023-09-18,"{""language"": ""IT"", ""currency"": ""USD""}",6347.65,Silver,1 +9048,Jason Wade,amanda95@gmail.com,2020-09-25,"{""language"": ""IT"", ""currency"": ""EUR""}",9576.88,Gold,0 +9049,Richard Turner,stevefernandez@cervantes.com,2021-09-20,"{""language"": ""EN"", ""currency"": ""CAD""}",9510.76,Silver,1 +9050,Alan Nelson,russellkelli@yahoo.com,2023-02-11,"{""language"": ""EN"", ""currency"": ""MXN""}",6300.02,Gold,1 +9051,Miranda Salazar,troy28@green-ferguson.net,2020-02-11,"{""language"": ""IT"", ""currency"": ""GBP""}",1271.22,Bronze,0 +9052,Paul Zimmerman,prattsteven@yahoo.com,2023-01-01,"{""language"": ""IT"", ""currency"": ""USD""}",1313.29,Silver,1 +9053,William Walker,zbrown@stone-barton.biz,2023-04-24,"{""language"": ""EN"", ""currency"": ""CAD""}",8254.08,Gold,0 +9054,Christopher Zavala,amanda37@hotmail.com,2023-05-29,"{""language"": ""FR"", ""currency"": ""CAD""}",9921.48,Bronze,1 +9055,Douglas Bryant,pamelagonzalez@clark.com,2024-11-07,"{""language"": ""DE"", ""currency"": ""EUR""}",4421.93,Bronze,0 +9056,Shelly Adams,xwhite@gmail.com,2023-12-03,"{""language"": ""EN"", ""currency"": ""EUR""}",8663.38,Bronze,0 +9057,Jesus Rodriguez,welchjeremy@hotmail.com,2021-01-31,"{""language"": ""ES"", ""currency"": ""MXN""}",5424.66,Bronze,1 +9058,Sierra Cunningham,teresamorris@gonzales-palmer.biz,2020-09-20,"{""language"": ""IT"", ""currency"": ""MXN""}",7553.86,Gold,1 +9059,William Bryant,aholt@yahoo.com,2020-02-22,"{""language"": ""DE"", ""currency"": ""MXN""}",1351.04,Gold,1 +9060,Kirk Arnold,harriskelli@hotmail.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""GBP""}",9259.48,Silver,1 +9061,David Holt Jr.,lindsey08@allison.com,2021-07-06,"{""language"": ""DE"", ""currency"": ""EUR""}",5692.41,Bronze,1 +9062,Dawn Miller,valenciajoe@yahoo.com,2024-02-25,"{""language"": ""IT"", ""currency"": ""CAD""}",1251.11,Bronze,0 +9063,Tiffany Davenport,joshua39@pearson-james.biz,2020-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",5304.36,Gold,1 +9064,Marvin Jones,lisarivera@gmail.com,2022-02-04,"{""language"": ""DE"", ""currency"": ""USD""}",2306.77,Gold,0 +9065,Erin Cohen,mcmillankayla@hotmail.com,2024-07-31,"{""language"": ""EN"", ""currency"": ""GBP""}",7662.96,Bronze,1 +9066,Amber Hayden,williamstimothy@hotmail.com,2024-12-08,"{""language"": ""FR"", ""currency"": ""USD""}",6232.62,Gold,0 +9067,Meagan Underwood,brennandiane@mathews-jenkins.net,2020-09-12,"{""language"": ""DE"", ""currency"": ""USD""}",7559.25,Gold,0 +9068,Victoria Washington,ehill@yahoo.com,2021-03-11,"{""language"": ""IT"", ""currency"": ""USD""}",2877.74,Bronze,0 +9069,Jason Allen,juanarmstrong@hotmail.com,2021-04-27,"{""language"": ""FR"", ""currency"": ""MXN""}",6743.81,Gold,0 +9070,Jason Harris,ubaker@lambert-chapman.org,2022-06-01,"{""language"": ""DE"", ""currency"": ""GBP""}",6903.05,Bronze,0 +9071,Nicole Elliott,xallen@powell.net,2021-06-06,"{""language"": ""FR"", ""currency"": ""USD""}",3987.34,Gold,0 +9072,Melissa Khan,danielwilkins@hotmail.com,2021-05-14,"{""language"": ""DE"", ""currency"": ""CAD""}",5994.54,Bronze,0 +9073,Kenneth Lam,taylorwendy@carpenter.com,2022-06-16,"{""language"": ""IT"", ""currency"": ""CAD""}",5348.78,Silver,1 +9074,Carlos Morrison,qperry@collins-buck.com,2020-07-26,"{""language"": ""ES"", ""currency"": ""USD""}",6247.95,Gold,0 +9075,Brian Jones,dmunoz@brown-taylor.org,2021-11-30,"{""language"": ""FR"", ""currency"": ""EUR""}",8659.19,Bronze,0 +9076,Steven Garcia,marissalambert@hotmail.com,2024-07-22,"{""language"": ""DE"", ""currency"": ""GBP""}",8751.09,Gold,1 +9077,Taylor Lynch,garciasusan@west.com,2024-07-11,"{""language"": ""IT"", ""currency"": ""EUR""}",6359.01,Silver,0 +9078,Katrina Johnson,burnsmelissa@robinson-day.com,2023-09-05,"{""language"": ""EN"", ""currency"": ""CAD""}",3127.41,Silver,0 +9079,Steven Morrison,xcopeland@ingram.net,2024-01-11,"{""language"": ""ES"", ""currency"": ""USD""}",7050.63,Silver,0 +9080,Marc Evans,graybrooke@hotmail.com,2020-03-17,"{""language"": ""IT"", ""currency"": ""CAD""}",4440.98,Silver,1 +9081,Monica Best,meyervictoria@berry.net,2020-03-18,"{""language"": ""IT"", ""currency"": ""CAD""}",1502.14,Bronze,1 +9082,Jasmine Young,wrice@hotmail.com,2020-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",630.88,Bronze,1 +9083,Eric Schultz,dalton15@yahoo.com,2020-07-12,"{""language"": ""DE"", ""currency"": ""USD""}",3091.35,Bronze,0 +9084,Carol Arnold,belindawilkerson@yahoo.com,2022-08-07,"{""language"": ""EN"", ""currency"": ""CAD""}",3109.41,Bronze,0 +9085,Rachel Martinez,pamela60@hotmail.com,2020-06-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5802.05,Silver,1 +9086,Andre Lane,jasonstrong@gmail.com,2021-02-08,"{""language"": ""DE"", ""currency"": ""EUR""}",2278.33,Bronze,1 +9087,Jennifer Norris,allenshields@hotmail.com,2021-09-07,"{""language"": ""FR"", ""currency"": ""CAD""}",2326.02,Gold,0 +9088,Grant Flynn,qvalencia@yahoo.com,2022-10-11,"{""language"": ""EN"", ""currency"": ""GBP""}",4359.14,Silver,1 +9089,Stephanie Clark,vrobertson@yahoo.com,2022-03-10,"{""language"": ""DE"", ""currency"": ""USD""}",9187.2,Silver,1 +9090,Jennifer Powers,curtisburns@yahoo.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""MXN""}",8980.28,Silver,0 +9091,Tristan Lewis,ricky55@yahoo.com,2024-03-17,"{""language"": ""IT"", ""currency"": ""EUR""}",2891.6,Silver,0 +9092,Michael Graves,joshuaknight@hotmail.com,2022-08-03,"{""language"": ""DE"", ""currency"": ""GBP""}",2369.11,Bronze,1 +9093,Jonathan Hart,ejohnson@anderson-edwards.net,2021-06-04,"{""language"": ""DE"", ""currency"": ""CAD""}",4981.8,Gold,1 +9094,Lee Estrada,qcastro@hotmail.com,2022-09-17,"{""language"": ""IT"", ""currency"": ""GBP""}",4677.98,Gold,1 +9095,Dr. Damon Hess,alyssariddle@graham.biz,2020-07-18,"{""language"": ""ES"", ""currency"": ""MXN""}",8590.75,Gold,0 +9096,Jordan Lee,schultzhayley@yahoo.com,2022-07-14,"{""language"": ""ES"", ""currency"": ""CAD""}",5373.56,Bronze,0 +9097,Craig Ramos,jefferybond@diaz.com,2023-05-18,"{""language"": ""IT"", ""currency"": ""GBP""}",1594.93,Bronze,1 +9098,Thomas Cannon,mwebster@yahoo.com,2024-07-03,"{""language"": ""IT"", ""currency"": ""GBP""}",60.56,Gold,0 +9099,Dawn Pacheco,erikgarcia@mcfarland.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""USD""}",2965.14,Bronze,0 +9100,Melissa Robertson,john55@gmail.com,2021-08-31,"{""language"": ""DE"", ""currency"": ""GBP""}",5768.51,Silver,1 +9101,Kerry Charles,ericanderson@gmail.com,2023-04-30,"{""language"": ""IT"", ""currency"": ""USD""}",2659.6,Bronze,0 +9102,Connie Floyd,shane49@gmail.com,2021-12-13,"{""language"": ""FR"", ""currency"": ""EUR""}",5984.77,Gold,0 +9103,Paul James,wsnow@hotmail.com,2022-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",6939.98,Bronze,1 +9104,Patricia Coleman,xanderson@jensen.com,2021-06-15,"{""language"": ""FR"", ""currency"": ""USD""}",5340.95,Gold,0 +9105,Michele Coleman,nramirez@gmail.com,2023-10-10,"{""language"": ""DE"", ""currency"": ""USD""}",8795.95,Gold,1 +9106,Michelle Morgan,robertbrown@mitchell.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""MXN""}",4029.75,Bronze,1 +9107,Jessica Kim,sydneyrhodes@gmail.com,2022-03-22,"{""language"": ""ES"", ""currency"": ""MXN""}",8581.01,Gold,0 +9108,Tonya Ross,fordbrenda@yahoo.com,2024-01-29,"{""language"": ""IT"", ""currency"": ""USD""}",1898.44,Bronze,1 +9109,Lisa Carter,campbellsandra@bonilla.net,2020-02-08,"{""language"": ""IT"", ""currency"": ""CAD""}",3887.27,Silver,0 +9110,Elizabeth Spencer,brandi01@robinson-williams.com,2021-02-09,"{""language"": ""ES"", ""currency"": ""GBP""}",5875.81,Bronze,0 +9111,Jennifer Cooper,aortega@simpson.com,2023-11-16,"{""language"": ""ES"", ""currency"": ""GBP""}",2143.41,Gold,1 +9112,Daniel Harrison,johnsonlisa@briggs.com,2023-03-18,"{""language"": ""ES"", ""currency"": ""CAD""}",6665.56,Gold,1 +9113,Michelle Smith,cookjack@gmail.com,2020-05-12,"{""language"": ""IT"", ""currency"": ""GBP""}",6150.54,Silver,0 +9114,Stephanie Taylor,khunter@lane-clark.com,2023-02-14,"{""language"": ""EN"", ""currency"": ""GBP""}",3646.17,Silver,0 +9115,Gerald Gordon,lchoi@hester.org,2022-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",4132.97,Bronze,0 +9116,Felicia Wilson,johnsonshawn@yahoo.com,2020-03-27,"{""language"": ""IT"", ""currency"": ""GBP""}",7894.63,Silver,0 +9117,Wendy Roman MD,perezmichael@gmail.com,2022-01-12,"{""language"": ""DE"", ""currency"": ""CAD""}",8046.96,Bronze,0 +9118,Rodney Miranda,ayates@herring-sanchez.info,2021-05-05,"{""language"": ""IT"", ""currency"": ""EUR""}",5781.77,Bronze,1 +9119,Gerald Nelson PhD,farleyangela@hotmail.com,2021-09-19,"{""language"": ""FR"", ""currency"": ""EUR""}",8116.48,Bronze,0 +9120,Angela Gonzalez,paulsanders@richardson.net,2024-05-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7936.33,Bronze,0 +9121,Katherine Meyer,michaela88@chang-malone.info,2021-11-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7914.33,Silver,1 +9122,Abigail Ferrell,whitestephen@kirk.info,2022-01-30,"{""language"": ""DE"", ""currency"": ""GBP""}",4894.12,Bronze,1 +9123,Mario Moreno,schwartzheather@hotmail.com,2020-05-03,"{""language"": ""ES"", ""currency"": ""GBP""}",662.04,Silver,0 +9124,Patricia Davis,amanda52@miller.net,2023-10-22,"{""language"": ""EN"", ""currency"": ""GBP""}",3158.37,Gold,1 +9125,Rebecca Hodge,elizabeth98@hotmail.com,2024-04-28,"{""language"": ""DE"", ""currency"": ""EUR""}",2977.18,Silver,0 +9126,Robert Thompson,richard63@peterson-wyatt.org,2023-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9999.73,Bronze,1 +9127,Kara Day,kmarks@martin.net,2021-07-06,"{""language"": ""IT"", ""currency"": ""MXN""}",2004.28,Gold,0 +9128,Clayton Jensen,tracyjames@gmail.com,2024-10-07,"{""language"": ""FR"", ""currency"": ""EUR""}",3812.93,Gold,1 +9129,Crystal Charles,ohunter@smith.net,2021-10-07,"{""language"": ""DE"", ""currency"": ""USD""}",4488.2,Silver,0 +9130,Robert Calderon,kelly43@gonzalez-cantu.org,2022-03-26,"{""language"": ""DE"", ""currency"": ""USD""}",7048.59,Bronze,0 +9131,Michelle Delgado,michaelbowers@gmail.com,2024-02-24,"{""language"": ""IT"", ""currency"": ""CAD""}",5880.99,Gold,1 +9132,Sharon Phillips,amandathompson@mcdonald-hawkins.com,2024-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",2147.26,Gold,1 +9133,Katie Newton,sandramcdonald@gmail.com,2022-04-15,"{""language"": ""ES"", ""currency"": ""MXN""}",5678.53,Bronze,0 +9134,Heather Moore,zduran@brown.org,2021-11-08,"{""language"": ""ES"", ""currency"": ""MXN""}",9337.04,Gold,0 +9135,Megan Chen,hallkimberly@yahoo.com,2021-04-24,"{""language"": ""DE"", ""currency"": ""USD""}",2101.85,Silver,1 +9136,Joseph Flores,thomasmelendez@yahoo.com,2021-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",5320.7,Gold,1 +9137,Kimberly Berg,zachary94@marquez.info,2021-09-04,"{""language"": ""DE"", ""currency"": ""MXN""}",695.06,Bronze,0 +9138,Jennifer Zavala,jameslang@white.biz,2020-10-21,"{""language"": ""DE"", ""currency"": ""EUR""}",6475.79,Silver,1 +9139,Michael Welch,allison78@gmail.com,2020-06-02,"{""language"": ""DE"", ""currency"": ""USD""}",9070.53,Gold,1 +9140,Samantha Powers,egriffin@hotmail.com,2020-08-03,"{""language"": ""EN"", ""currency"": ""CAD""}",1964.55,Bronze,1 +9141,Monica Hanson,owenslindsay@gmail.com,2020-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",2073.07,Gold,0 +9142,Marissa Montes,marcusgallegos@hotmail.com,2024-07-12,"{""language"": ""FR"", ""currency"": ""CAD""}",8150.17,Silver,1 +9143,Sandra Nichols,ndiaz@davis-gordon.com,2020-08-11,"{""language"": ""DE"", ""currency"": ""MXN""}",7199.88,Bronze,0 +9144,Mr. Paul Morris,jperry@gmail.com,2021-11-07,"{""language"": ""FR"", ""currency"": ""GBP""}",6434.04,Silver,1 +9145,Emma Parsons,joshuareyes@gmail.com,2024-03-03,"{""language"": ""ES"", ""currency"": ""USD""}",9147.1,Silver,0 +9146,Daniel Fields,kaneantonio@davis.com,2021-04-29,"{""language"": ""DE"", ""currency"": ""CAD""}",8266.84,Silver,0 +9147,Sandra Graves,fanderson@stafford.biz,2022-07-20,"{""language"": ""ES"", ""currency"": ""EUR""}",1033.85,Gold,0 +9148,Jeffrey Mason,timothy16@bryant-hall.com,2020-10-12,"{""language"": ""IT"", ""currency"": ""USD""}",8840.68,Gold,1 +9149,Jacqueline Carter,jacksonwilliam@hotmail.com,2020-08-09,"{""language"": ""DE"", ""currency"": ""EUR""}",6978.24,Bronze,0 +9150,Sherry Parker,allisonadams@gmail.com,2020-05-12,"{""language"": ""EN"", ""currency"": ""GBP""}",9902.65,Gold,1 +9151,Samantha Reeves,michaelmolina@curry.org,2022-01-15,"{""language"": ""EN"", ""currency"": ""MXN""}",4956.28,Bronze,0 +9152,Amanda Thomas,ninarivera@yahoo.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""CAD""}",5559.13,Bronze,0 +9153,Heather Jenkins,carloskim@yahoo.com,2020-01-14,"{""language"": ""DE"", ""currency"": ""CAD""}",7187.99,Silver,0 +9154,Casey Ellis,rayamy@santiago-campbell.org,2021-07-17,"{""language"": ""FR"", ""currency"": ""GBP""}",9402.26,Bronze,0 +9155,Kimberly Henderson,cdudley@gmail.com,2024-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",6211.28,Gold,1 +9156,Ebony Rodriguez,thomas56@hotmail.com,2021-07-25,"{""language"": ""EN"", ""currency"": ""USD""}",1795.66,Bronze,1 +9157,Danielle Thomas,aprilharvey@gonzalez.com,2020-03-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9550.34,Silver,1 +9158,Jeffrey Keith,donnafrost@robinson.info,2021-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",3100.95,Silver,0 +9159,Glenda Bishop DVM,sarah42@gmail.com,2020-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",9920.7,Silver,1 +9160,Kelly Knight,floydchristopher@lopez-murphy.com,2022-09-20,"{""language"": ""EN"", ""currency"": ""GBP""}",5282.86,Silver,1 +9161,Jonathan Cooke,lisagarcia@yahoo.com,2024-01-30,"{""language"": ""IT"", ""currency"": ""EUR""}",7757.43,Silver,0 +9162,Amanda Rodriguez,stricklandjohn@delgado-reese.com,2021-01-04,"{""language"": ""FR"", ""currency"": ""EUR""}",1238.54,Bronze,1 +9163,Anna Jackson,hunter70@yahoo.com,2023-11-28,"{""language"": ""ES"", ""currency"": ""GBP""}",9092.4,Gold,1 +9164,Alan Mora,gregoryrichard@yahoo.com,2020-07-24,"{""language"": ""DE"", ""currency"": ""EUR""}",755.61,Gold,0 +9165,Michael Donaldson,michael65@gmail.com,2021-02-12,"{""language"": ""DE"", ""currency"": ""USD""}",8329.4,Gold,1 +9166,Brittany Nguyen,qtucker@yahoo.com,2021-08-04,"{""language"": ""IT"", ""currency"": ""MXN""}",9165.52,Gold,1 +9167,Jessica Gillespie,nmcdaniel@hotmail.com,2020-12-28,"{""language"": ""IT"", ""currency"": ""GBP""}",98.87,Bronze,1 +9168,Erica Gomez,brett68@reynolds-randall.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""GBP""}",7934.1,Silver,1 +9169,Drew Long,cpena@yahoo.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""CAD""}",4293.6,Gold,1 +9170,Stephanie Johnson,cmartinez@gmail.com,2024-12-03,"{""language"": ""DE"", ""currency"": ""GBP""}",263.95,Gold,1 +9171,William Aguilar,andrew17@yahoo.com,2022-03-28,"{""language"": ""FR"", ""currency"": ""MXN""}",1513.97,Gold,1 +9172,John Buck,mcmillansabrina@yahoo.com,2024-11-29,"{""language"": ""EN"", ""currency"": ""CAD""}",855.13,Silver,0 +9173,Mr. Eric Pope,pereznicole@gmail.com,2020-04-21,"{""language"": ""ES"", ""currency"": ""EUR""}",1376.43,Bronze,1 +9174,Sandra Castillo,christiansoto@hotmail.com,2022-05-01,"{""language"": ""IT"", ""currency"": ""CAD""}",7856.24,Gold,1 +9175,Jacqueline Gillespie,oweaver@gmail.com,2019-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",226.63,Silver,1 +9176,Michelle Garza,jon06@hotmail.com,2022-11-29,"{""language"": ""FR"", ""currency"": ""GBP""}",903.86,Bronze,1 +9177,Kristin Marshall,smithmichael@gmail.com,2024-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",3078.15,Gold,1 +9178,Julia Farrell,lukehorn@hotmail.com,2023-08-29,"{""language"": ""ES"", ""currency"": ""USD""}",7256.07,Bronze,1 +9179,Paul Hayes,yvonne38@mercer-alvarez.com,2020-06-28,"{""language"": ""IT"", ""currency"": ""EUR""}",4438.93,Gold,0 +9180,Daniel Bradley,sarah79@yahoo.com,2021-02-20,"{""language"": ""DE"", ""currency"": ""EUR""}",3870.0,Bronze,0 +9181,Nicholas Edwards,melissatrevino@meyers.com,2020-01-07,"{""language"": ""FR"", ""currency"": ""USD""}",2825.35,Silver,1 +9182,Cynthia Wood,sbennett@edwards-turner.biz,2022-01-23,"{""language"": ""FR"", ""currency"": ""CAD""}",1954.36,Silver,0 +9183,Emily Ferguson,fosterjimmy@miller.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6383.74,Gold,1 +9184,Kenneth Oliver,ucervantes@chavez.com,2021-06-05,"{""language"": ""IT"", ""currency"": ""GBP""}",1201.44,Silver,0 +9185,Anthony Johnson,nrodriguez@smith.com,2023-02-05,"{""language"": ""ES"", ""currency"": ""MXN""}",7147.41,Gold,0 +9186,Jamie Mccullough,cbaldwin@graham-kennedy.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""MXN""}",6003.63,Gold,1 +9187,Karen Drake,lunatina@ramirez.net,2024-08-31,"{""language"": ""EN"", ""currency"": ""GBP""}",3600.74,Gold,0 +9188,Melissa Kramer,lori87@arroyo.com,2020-04-15,"{""language"": ""FR"", ""currency"": ""EUR""}",1086.2,Bronze,1 +9189,Joyce Diaz,ericharris@bond.com,2020-08-18,"{""language"": ""EN"", ""currency"": ""EUR""}",4587.66,Bronze,0 +9190,Cynthia Mckinney,sherry92@barnes.com,2023-04-14,"{""language"": ""DE"", ""currency"": ""MXN""}",651.26,Bronze,1 +9191,Charles Garrison,jorgeesparza@silva.biz,2022-01-22,"{""language"": ""ES"", ""currency"": ""USD""}",3474.83,Gold,1 +9192,Christopher Riley,bradleyleon@martin.info,2021-09-18,"{""language"": ""IT"", ""currency"": ""EUR""}",9288.48,Bronze,0 +9193,Kathleen Espinoza,brookskimberly@yahoo.com,2023-02-19,"{""language"": ""EN"", ""currency"": ""MXN""}",8265.64,Silver,1 +9194,Earl Stevenson,angelastevens@hotmail.com,2021-02-23,"{""language"": ""IT"", ""currency"": ""GBP""}",1100.84,Silver,0 +9195,James Davis,wandawilliams@mendez-elliott.com,2020-01-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8417.27,Bronze,1 +9196,Jason French,shawn09@mejia.com,2023-09-07,"{""language"": ""ES"", ""currency"": ""USD""}",4467.58,Gold,1 +9197,Pamela Brooks,cruiz@gmail.com,2022-05-27,"{""language"": ""DE"", ""currency"": ""MXN""}",5790.01,Silver,0 +9198,Terry Juarez,asuarez@rose-reese.biz,2023-09-09,"{""language"": ""EN"", ""currency"": ""MXN""}",9104.86,Bronze,1 +9199,Kenneth Rodriguez,glandry@gmail.com,2021-04-25,"{""language"": ""DE"", ""currency"": ""MXN""}",8681.95,Bronze,0 +9200,Patrick Murphy,crystal14@powell.com,2022-08-05,"{""language"": ""FR"", ""currency"": ""USD""}",3896.31,Gold,0 +9201,Ronald Green,kevin40@gmail.com,2021-04-15,"{""language"": ""EN"", ""currency"": ""CAD""}",8000.44,Silver,1 +9202,Christopher Morrison,aaron91@hotmail.com,2024-11-02,"{""language"": ""IT"", ""currency"": ""EUR""}",929.07,Gold,1 +9203,Priscilla Graves,santhony@hotmail.com,2024-06-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6062.02,Bronze,1 +9204,Gene Merritt,armstrongcharles@gmail.com,2023-12-23,"{""language"": ""EN"", ""currency"": ""EUR""}",4007.51,Silver,0 +9205,Dakota Haney,amalone@gmail.com,2020-11-17,"{""language"": ""ES"", ""currency"": ""EUR""}",9169.68,Gold,0 +9206,Stephanie Cortez,patricia71@gmail.com,2022-01-13,"{""language"": ""ES"", ""currency"": ""MXN""}",2516.7,Silver,0 +9207,Gail Myers,mckinneygregory@gmail.com,2021-09-07,"{""language"": ""ES"", ""currency"": ""EUR""}",2453.66,Bronze,1 +9208,Ethan Jones,stantonernest@smith.net,2020-07-19,"{""language"": ""DE"", ""currency"": ""GBP""}",1948.1,Gold,1 +9209,Kimberly Cox,brian19@hotmail.com,2023-04-29,"{""language"": ""ES"", ""currency"": ""EUR""}",6349.59,Bronze,0 +9210,Mary Klein,andreabell@malone.biz,2024-02-09,"{""language"": ""EN"", ""currency"": ""GBP""}",2500.55,Gold,1 +9211,Leslie Mcgee,cassandra31@gmail.com,2022-04-30,"{""language"": ""DE"", ""currency"": ""GBP""}",3339.95,Gold,1 +9212,Linda Short,robertrivera@yahoo.com,2020-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2832.18,Gold,0 +9213,Jonathan Miller,jessicawong@haynes.info,2022-06-20,"{""language"": ""ES"", ""currency"": ""MXN""}",1937.19,Gold,1 +9214,Lance Ramirez,ppoole@gmail.com,2022-07-29,"{""language"": ""DE"", ""currency"": ""GBP""}",2791.86,Silver,1 +9215,Kathy Jones,johnsonstephen@conner.com,2024-01-08,"{""language"": ""FR"", ""currency"": ""EUR""}",1306.91,Gold,1 +9216,Antonio Rowland,thomas62@yahoo.com,2021-12-10,"{""language"": ""IT"", ""currency"": ""MXN""}",5623.88,Gold,1 +9217,Edgar Turner,chicks@walker.com,2023-08-17,"{""language"": ""DE"", ""currency"": ""GBP""}",2767.71,Gold,0 +9218,Rachel Harvey,spencemichael@yahoo.com,2020-12-24,"{""language"": ""DE"", ""currency"": ""USD""}",9038.2,Gold,1 +9219,Tammy Smith,danielmcdonald@berry-cruz.com,2022-01-26,"{""language"": ""FR"", ""currency"": ""MXN""}",3093.44,Silver,1 +9220,Margaret Palmer,lowens@hotmail.com,2024-08-13,"{""language"": ""FR"", ""currency"": ""GBP""}",5466.43,Gold,1 +9221,William Lewis,sharon34@gmail.com,2024-04-01,"{""language"": ""IT"", ""currency"": ""MXN""}",5325.18,Bronze,0 +9222,Lindsay Freeman,shannon35@yahoo.com,2022-04-01,"{""language"": ""DE"", ""currency"": ""EUR""}",6319.37,Bronze,1 +9223,William Holloway,tamara48@jackson.com,2023-09-22,"{""language"": ""ES"", ""currency"": ""EUR""}",1833.26,Bronze,1 +9224,Mario Williams,ebeard@bryan.biz,2021-01-29,"{""language"": ""DE"", ""currency"": ""MXN""}",4169.77,Bronze,0 +9225,James Carter,grantdavid@riggs.com,2024-11-27,"{""language"": ""ES"", ""currency"": ""CAD""}",6468.03,Gold,0 +9226,John Wilkins,andrea75@palmer.biz,2021-06-14,"{""language"": ""DE"", ""currency"": ""CAD""}",368.57,Bronze,0 +9227,Justin Wilson,charlesrichard@moore-huffman.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""CAD""}",7288.27,Bronze,1 +9228,Mr. Michael Pittman,ihood@lopez.biz,2022-02-04,"{""language"": ""EN"", ""currency"": ""USD""}",7689.14,Gold,1 +9229,Beverly Johnson,sfranco@smith-arnold.com,2021-06-15,"{""language"": ""ES"", ""currency"": ""GBP""}",1442.81,Gold,1 +9230,David Jones,woodmelissa@yahoo.com,2022-07-08,"{""language"": ""FR"", ""currency"": ""EUR""}",9247.49,Bronze,0 +9231,Thomas Ochoa,kpearson@gmail.com,2022-03-14,"{""language"": ""IT"", ""currency"": ""MXN""}",8449.46,Gold,0 +9232,James Gonzalez,fblevins@nelson.com,2021-06-10,"{""language"": ""EN"", ""currency"": ""MXN""}",1723.22,Bronze,1 +9233,Sarah Rios,sanchezmitchell@gmail.com,2020-06-14,"{""language"": ""DE"", ""currency"": ""EUR""}",961.57,Gold,0 +9234,Frank Jensen,gonzalesmichael@gmail.com,2023-05-19,"{""language"": ""ES"", ""currency"": ""USD""}",5262.79,Gold,0 +9235,Jennifer Singh,justin94@hotmail.com,2024-08-09,"{""language"": ""EN"", ""currency"": ""CAD""}",446.71,Gold,1 +9236,Jennifer Salas,watsonjennifer@buckley.com,2023-08-23,"{""language"": ""EN"", ""currency"": ""USD""}",8653.74,Gold,1 +9237,Carlos Rodriguez,bensonjoseph@kennedy.com,2020-06-28,"{""language"": ""EN"", ""currency"": ""CAD""}",5155.85,Gold,0 +9238,Kyle Woods,elizabeth71@hotmail.com,2022-12-20,"{""language"": ""EN"", ""currency"": ""CAD""}",1994.67,Silver,1 +9239,Shannon Perez,qallen@kaufman.biz,2024-10-18,"{""language"": ""EN"", ""currency"": ""GBP""}",3975.14,Bronze,0 +9240,Mr. Keith Fowler,larrysullivan@alexander.com,2022-02-24,"{""language"": ""ES"", ""currency"": ""MXN""}",7922.64,Gold,0 +9241,Dustin Rivera,tvaldez@yahoo.com,2022-04-02,"{""language"": ""FR"", ""currency"": ""CAD""}",1943.1,Bronze,0 +9242,Rebekah Hahn,garciajeffrey@harrison-rodriguez.com,2021-01-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9291.74,Silver,1 +9243,Cynthia Long,egaines@hotmail.com,2023-06-16,"{""language"": ""FR"", ""currency"": ""GBP""}",279.01,Gold,1 +9244,Jose Leach,xthompson@marquez.com,2023-12-05,"{""language"": ""ES"", ""currency"": ""MXN""}",1905.49,Silver,0 +9245,Tony Kennedy,tmurphy@hotmail.com,2022-07-27,"{""language"": ""ES"", ""currency"": ""USD""}",3234.71,Silver,0 +9246,David Thomas,jeremy02@gmail.com,2020-02-05,"{""language"": ""FR"", ""currency"": ""EUR""}",9342.12,Gold,1 +9247,Joshua Powers,gutierrezfrank@day-williams.com,2024-05-15,"{""language"": ""ES"", ""currency"": ""EUR""}",3073.24,Bronze,1 +9248,David Neal,pbradley@hotmail.com,2020-10-08,"{""language"": ""IT"", ""currency"": ""CAD""}",8678.37,Bronze,1 +9249,Carrie Hanson,whuang@hall-willis.com,2023-07-14,"{""language"": ""FR"", ""currency"": ""EUR""}",164.02,Gold,1 +9250,Tonya Johnston,wcampbell@hotmail.com,2021-07-23,"{""language"": ""FR"", ""currency"": ""CAD""}",7197.83,Gold,0 +9251,Christopher Brown,travis36@bailey.com,2021-08-22,"{""language"": ""IT"", ""currency"": ""USD""}",4508.02,Bronze,0 +9252,Joshua Murray,xjimenez@shaffer.com,2023-10-26,"{""language"": ""ES"", ""currency"": ""MXN""}",9024.54,Gold,1 +9253,Tracy Potter,blakekristen@washington-lee.com,2020-06-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9044.86,Silver,1 +9254,John Mclean,mercadojoshua@scott.net,2020-01-17,"{""language"": ""ES"", ""currency"": ""EUR""}",8990.98,Gold,0 +9255,Gregory Thomas,jfreeman@yahoo.com,2020-01-12,"{""language"": ""ES"", ""currency"": ""GBP""}",3521.17,Silver,1 +9256,Billy Macias,cdavis@hotmail.com,2022-08-18,"{""language"": ""ES"", ""currency"": ""USD""}",7450.48,Silver,0 +9257,Donald Porter,crosssarah@leach.biz,2020-05-26,"{""language"": ""FR"", ""currency"": ""EUR""}",7795.87,Silver,0 +9258,Jennifer Smith,carlarobinson@gmail.com,2024-02-25,"{""language"": ""DE"", ""currency"": ""EUR""}",2794.63,Silver,0 +9259,Morgan Curry,shawn84@newton.com,2022-07-21,"{""language"": ""FR"", ""currency"": ""USD""}",459.43,Gold,1 +9260,Ryan Allen,aguilarcrystal@gmail.com,2024-09-15,"{""language"": ""EN"", ""currency"": ""USD""}",6868.3,Silver,0 +9261,Carol Rangel,brightbrittney@yahoo.com,2020-09-09,"{""language"": ""IT"", ""currency"": ""MXN""}",3855.51,Gold,1 +9262,Mark Cruz,bjohnson@gmail.com,2022-06-15,"{""language"": ""ES"", ""currency"": ""MXN""}",7368.88,Silver,1 +9263,Valerie Harrington,brownlaura@yahoo.com,2022-01-13,"{""language"": ""ES"", ""currency"": ""USD""}",275.61,Bronze,0 +9264,Christina Phillips,kathleenmatthews@hodge.biz,2021-03-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6217.05,Silver,0 +9265,Barbara Garcia,jonathangregory@hill.com,2021-05-01,"{""language"": ""IT"", ""currency"": ""GBP""}",4954.85,Bronze,0 +9266,Daniel Morton,erica31@perkins.com,2020-05-04,"{""language"": ""IT"", ""currency"": ""GBP""}",8633.92,Bronze,0 +9267,Michael Irwin,susan98@nguyen-villanueva.com,2024-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",947.93,Bronze,1 +9268,Heather Bennett,colleen16@edwards-adams.org,2023-11-22,"{""language"": ""IT"", ""currency"": ""EUR""}",7442.18,Bronze,0 +9269,Patricia Vargas,sarahle@yahoo.com,2022-06-10,"{""language"": ""ES"", ""currency"": ""CAD""}",5899.64,Bronze,1 +9270,Matthew Thompson,andresmith@martin-allen.biz,2022-06-23,"{""language"": ""IT"", ""currency"": ""CAD""}",9869.06,Gold,0 +9271,Colleen Contreras,kendra40@gibson-chen.com,2020-05-06,"{""language"": ""FR"", ""currency"": ""CAD""}",3951.23,Silver,1 +9272,Frances Thomas,stewartstephen@white-lambert.com,2023-01-03,"{""language"": ""IT"", ""currency"": ""USD""}",6803.51,Gold,0 +9273,Andrew Price,joanne30@hotmail.com,2022-08-28,"{""language"": ""DE"", ""currency"": ""MXN""}",4809.24,Gold,1 +9274,Taylor Williams,roymoore@yahoo.com,2022-03-28,"{""language"": ""FR"", ""currency"": ""MXN""}",9586.16,Silver,1 +9275,Brandon Morgan,lesliecarey@hotmail.com,2020-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3822.13,Silver,0 +9276,Kenneth Robinson,vbarnett@gmail.com,2024-09-05,"{""language"": ""ES"", ""currency"": ""MXN""}",2132.37,Gold,1 +9277,Tanya Nelson,douglaswebb@yahoo.com,2020-08-05,"{""language"": ""EN"", ""currency"": ""MXN""}",236.47,Bronze,1 +9278,Kathy Morris,pollardcrystal@gmail.com,2022-04-12,"{""language"": ""FR"", ""currency"": ""EUR""}",2251.82,Bronze,0 +9279,Anthony Gonzales,glassnatalie@fuller-cohen.com,2023-05-05,"{""language"": ""DE"", ""currency"": ""EUR""}",5987.71,Gold,1 +9280,John Rogers,ublackburn@jones.com,2023-03-29,"{""language"": ""DE"", ""currency"": ""EUR""}",8413.46,Gold,1 +9281,Paul Taylor,sstuart@hotmail.com,2023-06-27,"{""language"": ""ES"", ""currency"": ""USD""}",1205.59,Silver,1 +9282,Timothy Neal,hopkinskelly@hotmail.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7979.11,Silver,1 +9283,Jeffrey Miller,vbarr@hernandez.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",8417.76,Silver,1 +9284,Christian Montoya,kschroeder@gmail.com,2022-08-03,"{""language"": ""DE"", ""currency"": ""MXN""}",1359.53,Gold,0 +9285,Danielle Baird,ubrown@gmail.com,2024-11-28,"{""language"": ""EN"", ""currency"": ""CAD""}",9590.32,Gold,0 +9286,Emily James,rasmussentara@mason-garcia.com,2021-01-27,"{""language"": ""FR"", ""currency"": ""USD""}",5054.6,Silver,0 +9287,Tyler Roth,debra99@turner.biz,2020-05-16,"{""language"": ""EN"", ""currency"": ""CAD""}",1304.43,Gold,1 +9288,Christopher Adams,sandovalcassandra@woodward.com,2021-11-28,"{""language"": ""FR"", ""currency"": ""GBP""}",3319.44,Silver,0 +9289,Bradley King,crodriguez@gallagher.com,2020-09-18,"{""language"": ""FR"", ""currency"": ""CAD""}",5840.64,Gold,1 +9290,Jonathan Harris,barbara22@tucker.com,2020-04-15,"{""language"": ""EN"", ""currency"": ""USD""}",4299.88,Bronze,0 +9291,Deborah Ward,kellysteven@gmail.com,2021-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7947.25,Silver,0 +9292,Sarah Gilbert,gonzalesyvette@hotmail.com,2022-04-10,"{""language"": ""DE"", ""currency"": ""GBP""}",9647.51,Bronze,0 +9293,Christopher Matthews,kristin48@smith.com,2021-05-12,"{""language"": ""EN"", ""currency"": ""EUR""}",2749.57,Gold,0 +9294,Danielle Wilson,hendersonmichelle@cuevas.biz,2021-07-03,"{""language"": ""ES"", ""currency"": ""MXN""}",5263.76,Gold,1 +9295,Randall Ellis,davidwalters@jackson-bass.com,2023-08-23,"{""language"": ""ES"", ""currency"": ""GBP""}",1719.29,Gold,0 +9296,Ian Vance,lindarangel@hotmail.com,2020-12-19,"{""language"": ""ES"", ""currency"": ""EUR""}",5231.16,Bronze,1 +9297,Jackson Obrien,stephanieschultz@hotmail.com,2019-12-15,"{""language"": ""DE"", ""currency"": ""CAD""}",3131.42,Silver,0 +9298,Donald Mccoy,xmorris@hotmail.com,2021-01-07,"{""language"": ""FR"", ""currency"": ""GBP""}",5224.48,Gold,1 +9299,Laura Mora,morrissteven@martinez.com,2021-05-28,"{""language"": ""ES"", ""currency"": ""CAD""}",5932.92,Gold,0 +9300,James Ryan,williamsonnicole@abbott.com,2022-11-19,"{""language"": ""ES"", ""currency"": ""USD""}",6978.36,Bronze,0 +9301,Kathleen Young,pgonzalez@yahoo.com,2020-08-06,"{""language"": ""ES"", ""currency"": ""EUR""}",3322.38,Silver,0 +9302,Scott Waters,moraleschristopher@hotmail.com,2023-01-24,"{""language"": ""DE"", ""currency"": ""MXN""}",8311.57,Bronze,1 +9303,Christina Sparks,ericwade@gmail.com,2023-05-01,"{""language"": ""EN"", ""currency"": ""CAD""}",942.22,Bronze,0 +9304,Eric Kline,pwatts@hotmail.com,2021-06-04,"{""language"": ""DE"", ""currency"": ""EUR""}",5176.68,Bronze,1 +9305,Susan Patel,heather55@yahoo.com,2021-05-12,"{""language"": ""ES"", ""currency"": ""EUR""}",6155.48,Bronze,1 +9306,Adam Tyler,blackwellrobin@walls.biz,2024-02-09,"{""language"": ""IT"", ""currency"": ""MXN""}",7657.29,Gold,0 +9307,Beth Preston,emilymiller@carter.net,2022-04-10,"{""language"": ""ES"", ""currency"": ""CAD""}",6835.7,Bronze,1 +9308,Terri Long,stricklandsamantha@faulkner-jones.com,2021-08-22,"{""language"": ""FR"", ""currency"": ""USD""}",3439.49,Gold,1 +9309,Christopher Rodriguez,sandra64@hotmail.com,2024-04-05,"{""language"": ""FR"", ""currency"": ""USD""}",2482.02,Bronze,1 +9310,Alejandro Stein,ccalderon@hotmail.com,2023-12-31,"{""language"": ""ES"", ""currency"": ""EUR""}",1806.17,Bronze,1 +9311,Sharon Vega,bowmanamanda@yahoo.com,2020-01-25,"{""language"": ""IT"", ""currency"": ""CAD""}",8926.46,Bronze,1 +9312,Anthony Fuller,alexis91@hotmail.com,2023-04-04,"{""language"": ""DE"", ""currency"": ""EUR""}",6729.02,Silver,0 +9313,Angela Taylor,julianavarro@gmail.com,2022-11-07,"{""language"": ""EN"", ""currency"": ""GBP""}",6131.11,Gold,0 +9314,Stephanie Edwards,ypayne@perkins.com,2022-07-24,"{""language"": ""FR"", ""currency"": ""EUR""}",6826.65,Gold,0 +9315,Christian Morris,james28@yahoo.com,2020-12-29,"{""language"": ""EN"", ""currency"": ""GBP""}",1359.62,Gold,1 +9316,Lindsey Lin,shearebecca@stone.biz,2022-06-03,"{""language"": ""IT"", ""currency"": ""MXN""}",9319.14,Gold,1 +9317,Erin Warren,kaufmanbrandon@hahn.com,2023-02-14,"{""language"": ""EN"", ""currency"": ""CAD""}",4761.28,Bronze,1 +9318,Elizabeth Haley,rwheeler@yahoo.com,2022-11-13,"{""language"": ""IT"", ""currency"": ""CAD""}",3910.73,Gold,0 +9319,David Martinez,bjones@gmail.com,2022-12-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1537.53,Bronze,0 +9320,Caitlin Jimenez,randolphtimothy@graves-stanley.net,2023-08-26,"{""language"": ""IT"", ""currency"": ""MXN""}",9809.98,Silver,0 +9321,Valerie Carter,kirbynicholas@robinson.com,2020-09-22,"{""language"": ""EN"", ""currency"": ""EUR""}",7271.72,Gold,1 +9322,Keith Miller,ashlee10@santana.com,2024-10-04,"{""language"": ""IT"", ""currency"": ""GBP""}",7038.43,Silver,0 +9323,Spencer Ramirez,barbara31@harris.com,2023-08-25,"{""language"": ""EN"", ""currency"": ""EUR""}",7208.82,Silver,1 +9324,Lisa Cruz,meagan18@wright-adams.com,2022-05-05,"{""language"": ""FR"", ""currency"": ""GBP""}",6725.66,Bronze,0 +9325,Adriana Walker,ricky68@yahoo.com,2023-10-11,"{""language"": ""EN"", ""currency"": ""CAD""}",4683.3,Silver,0 +9326,Carol Malone,ericahaney@frye-rollins.com,2024-02-08,"{""language"": ""IT"", ""currency"": ""MXN""}",5270.07,Bronze,0 +9327,Amber Bruce,ann78@lambert-davidson.com,2023-08-08,"{""language"": ""EN"", ""currency"": ""EUR""}",5807.02,Gold,0 +9328,Sandra Sloan,achang@armstrong.com,2022-07-22,"{""language"": ""DE"", ""currency"": ""MXN""}",9838.39,Gold,0 +9329,Marisa Maddox,yjones@rodriguez.com,2022-01-15,"{""language"": ""FR"", ""currency"": ""USD""}",7788.61,Gold,1 +9330,Angela Bass,grice@reid.com,2022-10-08,"{""language"": ""FR"", ""currency"": ""GBP""}",2096.57,Silver,0 +9331,Robert Holmes,ocoleman@mason-oneill.com,2021-05-11,"{""language"": ""IT"", ""currency"": ""USD""}",495.67,Gold,1 +9332,Erika Cardenas,rmoore@hotmail.com,2021-10-02,"{""language"": ""ES"", ""currency"": ""MXN""}",4565.75,Gold,0 +9333,David Rodriguez,hdavis@wilson-welch.com,2020-05-30,"{""language"": ""DE"", ""currency"": ""CAD""}",2112.72,Gold,1 +9334,Kathleen Smith MD,april46@yahoo.com,2023-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",5763.01,Bronze,1 +9335,Jason Hicks,vhoward@gmail.com,2021-10-02,"{""language"": ""IT"", ""currency"": ""CAD""}",6088.92,Bronze,1 +9336,John Williams,jeremycochran@hill.com,2021-08-19,"{""language"": ""IT"", ""currency"": ""GBP""}",5188.91,Gold,0 +9337,Virginia Smith,thomas03@wilson.com,2021-03-01,"{""language"": ""IT"", ""currency"": ""GBP""}",193.43,Silver,0 +9338,Sharon Hanna,thomaswilson@hotmail.com,2023-05-17,"{""language"": ""ES"", ""currency"": ""EUR""}",5916.16,Gold,0 +9339,Matthew Blackburn,lisa35@clarke-burton.com,2020-04-06,"{""language"": ""EN"", ""currency"": ""USD""}",4049.74,Gold,0 +9340,Samantha Cummings,georgecheryl@whitaker-green.com,2021-08-25,"{""language"": ""ES"", ""currency"": ""USD""}",7260.27,Bronze,0 +9341,Abigail Taylor,jhill@gmail.com,2021-11-16,"{""language"": ""ES"", ""currency"": ""MXN""}",9560.33,Bronze,1 +9342,Loretta Chavez,leealyssa@lewis.com,2024-05-26,"{""language"": ""IT"", ""currency"": ""CAD""}",9988.1,Gold,0 +9343,Jennifer Smith,william28@kidd.com,2024-12-10,"{""language"": ""ES"", ""currency"": ""EUR""}",8166.16,Silver,1 +9344,Stephanie Simon MD,danielthompson@moore.info,2021-04-18,"{""language"": ""IT"", ""currency"": ""GBP""}",7706.29,Silver,1 +9345,Karen Castro,joemarshall@hotmail.com,2022-01-11,"{""language"": ""FR"", ""currency"": ""CAD""}",363.87,Gold,1 +9346,Sean Berry,williamsalicia@cox.com,2023-08-25,"{""language"": ""ES"", ""currency"": ""CAD""}",3181.73,Gold,0 +9347,Andrew Lawson,dwilson@yahoo.com,2022-01-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6774.08,Silver,1 +9348,Evelyn Rush,chenderson@hotmail.com,2023-12-26,"{""language"": ""EN"", ""currency"": ""USD""}",3058.1,Bronze,1 +9349,Jennifer Franco,cameron24@yahoo.com,2019-12-30,"{""language"": ""FR"", ""currency"": ""MXN""}",591.04,Bronze,0 +9350,Todd Soto,kathyjacobs@tran.com,2020-05-21,"{""language"": ""DE"", ""currency"": ""CAD""}",7711.28,Bronze,1 +9351,Mrs. Jessica Eaton,robinmcclain@yahoo.com,2021-05-14,"{""language"": ""ES"", ""currency"": ""MXN""}",9348.48,Gold,1 +9352,Donald Hubbard,fwillis@gmail.com,2021-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",5945.57,Silver,0 +9353,Bob Smith,lloydbrandy@gmail.com,2023-06-04,"{""language"": ""FR"", ""currency"": ""MXN""}",8370.46,Bronze,1 +9354,Lisa Bennett,victoriaperez@gmail.com,2020-07-08,"{""language"": ""EN"", ""currency"": ""MXN""}",3290.8,Silver,1 +9355,Jerry Cardenas,tkelly@sims.com,2023-04-22,"{""language"": ""IT"", ""currency"": ""GBP""}",5681.79,Silver,0 +9356,Sergio King,johnrowland@gmail.com,2021-10-29,"{""language"": ""IT"", ""currency"": ""USD""}",3061.58,Silver,1 +9357,Barry Hill,carla52@morton-warren.org,2021-05-15,"{""language"": ""IT"", ""currency"": ""CAD""}",6392.63,Bronze,0 +9358,Megan Gardner,adamsbrian@dougherty.com,2020-11-16,"{""language"": ""DE"", ""currency"": ""USD""}",5560.84,Silver,0 +9359,Teresa Wolfe,julie50@gmail.com,2023-05-25,"{""language"": ""IT"", ""currency"": ""EUR""}",8818.73,Bronze,1 +9360,Joshua Barnes,matthewcohen@hotmail.com,2020-12-09,"{""language"": ""FR"", ""currency"": ""GBP""}",1004.81,Silver,1 +9361,Cassie Smith,johnshah@baker-escobar.org,2020-12-03,"{""language"": ""FR"", ""currency"": ""EUR""}",4589.37,Gold,1 +9362,Jessica Sanchez,jack80@horn-lawrence.com,2023-09-18,"{""language"": ""ES"", ""currency"": ""GBP""}",7460.05,Silver,0 +9363,Clayton Estrada,ruizdavid@garcia.org,2022-12-14,"{""language"": ""EN"", ""currency"": ""USD""}",3659.38,Gold,1 +9364,Daniel Gomez,frenchheather@yahoo.com,2021-10-10,"{""language"": ""DE"", ""currency"": ""MXN""}",8145.57,Bronze,0 +9365,Stephanie Jimenez,igallagher@gould.com,2021-06-04,"{""language"": ""EN"", ""currency"": ""CAD""}",5973.02,Bronze,0 +9366,Amanda Lyons,brooke56@gmail.com,2023-03-25,"{""language"": ""ES"", ""currency"": ""EUR""}",4678.33,Silver,1 +9367,Patrick Potts,pking@yahoo.com,2021-09-28,"{""language"": ""IT"", ""currency"": ""EUR""}",3487.15,Silver,0 +9368,Richard Ayers,justinlopez@stanley.net,2023-10-15,"{""language"": ""IT"", ""currency"": ""EUR""}",3812.41,Silver,0 +9369,Curtis Lyons,leslieellis@adams-henderson.info,2024-11-05,"{""language"": ""DE"", ""currency"": ""EUR""}",2781.54,Gold,1 +9370,Amy Gilbert,pburke@gmail.com,2021-05-04,"{""language"": ""EN"", ""currency"": ""CAD""}",3551.91,Bronze,0 +9371,Todd Armstrong,hlopez@gmail.com,2023-07-30,"{""language"": ""IT"", ""currency"": ""USD""}",4446.54,Gold,0 +9372,Jonathan Hartman,baileykara@gmail.com,2022-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5795.11,Silver,0 +9373,Monica Ward,bairdbrandon@goodman.biz,2024-03-16,"{""language"": ""DE"", ""currency"": ""GBP""}",9269.18,Silver,1 +9374,Roger Schwartz,nbrown@yahoo.com,2020-11-23,"{""language"": ""IT"", ""currency"": ""GBP""}",3585.13,Bronze,0 +9375,Tiffany Anderson,jbarrett@yahoo.com,2020-09-19,"{""language"": ""ES"", ""currency"": ""USD""}",7118.58,Bronze,1 +9376,Chelsea Valdez,nharris@gmail.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""GBP""}",8015.47,Silver,0 +9377,Christian Drake,davischristian@jordan.com,2020-07-12,"{""language"": ""EN"", ""currency"": ""EUR""}",880.51,Bronze,0 +9378,Ryan Burke,kimberlyfitzgerald@hernandez.com,2024-11-10,"{""language"": ""FR"", ""currency"": ""CAD""}",1675.38,Gold,0 +9379,Ashlee James,kimberlymays@yahoo.com,2024-01-20,"{""language"": ""FR"", ""currency"": ""MXN""}",7279.38,Gold,1 +9380,Tammy Gonzalez,desiree31@collins.net,2022-02-12,"{""language"": ""EN"", ""currency"": ""EUR""}",2699.77,Bronze,0 +9381,Tanya Edwards,edwardsandrew@herrera.com,2020-11-07,"{""language"": ""IT"", ""currency"": ""GBP""}",7912.28,Gold,0 +9382,Cindy Jones,saratucker@ellis-fletcher.info,2020-06-19,"{""language"": ""EN"", ""currency"": ""USD""}",2128.73,Gold,1 +9383,Catherine Daniels,upeterson@chase.biz,2024-07-31,"{""language"": ""DE"", ""currency"": ""GBP""}",4193.12,Gold,1 +9384,Amanda Oliver,hillrebecca@gmail.com,2024-06-06,"{""language"": ""IT"", ""currency"": ""CAD""}",9835.66,Silver,0 +9385,Caleb Everett,xwalker@pope-howell.org,2021-10-23,"{""language"": ""EN"", ""currency"": ""GBP""}",9254.41,Silver,1 +9386,Jennifer Rodriguez,brandtbrian@yahoo.com,2023-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4038.36,Silver,1 +9387,Brian Hernandez,davidbaker@yahoo.com,2022-07-27,"{""language"": ""DE"", ""currency"": ""GBP""}",5960.64,Bronze,0 +9388,Justin Tucker,teresa60@mejia.com,2022-09-04,"{""language"": ""EN"", ""currency"": ""GBP""}",9572.27,Bronze,0 +9389,Jonathan Butler,stephanie45@gmail.com,2020-07-24,"{""language"": ""ES"", ""currency"": ""USD""}",6258.05,Bronze,1 +9390,Stacy Hicks,stephenskaitlyn@hotmail.com,2024-11-22,"{""language"": ""IT"", ""currency"": ""GBP""}",1579.77,Silver,0 +9391,Jack Butler,qcook@rivera-brown.biz,2021-02-01,"{""language"": ""EN"", ""currency"": ""GBP""}",6977.36,Bronze,0 +9392,Shannon Pierce,tammy76@frost-estrada.org,2020-04-09,"{""language"": ""DE"", ""currency"": ""MXN""}",8374.65,Gold,0 +9393,Hannah Cole,qbrennan@hotmail.com,2020-05-28,"{""language"": ""EN"", ""currency"": ""EUR""}",60.82,Silver,1 +9394,Mr. David Walton,tamaracooley@gmail.com,2020-07-06,"{""language"": ""ES"", ""currency"": ""MXN""}",7461.47,Silver,1 +9395,Michael Santiago,stacy93@yahoo.com,2024-01-01,"{""language"": ""DE"", ""currency"": ""USD""}",7058.59,Bronze,0 +9396,Douglas Johnson,youngmiranda@wallace.com,2021-07-02,"{""language"": ""DE"", ""currency"": ""USD""}",5493.71,Bronze,0 +9397,Steven Ramirez,vaughnjulian@hotmail.com,2022-09-12,"{""language"": ""DE"", ""currency"": ""CAD""}",6855.6,Bronze,0 +9398,Amy Bennett,tdavidson@calhoun-bowman.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""EUR""}",2792.59,Silver,0 +9399,Brian Frazier,jacqueline92@reynolds.biz,2020-04-04,"{""language"": ""IT"", ""currency"": ""USD""}",3595.97,Silver,1 +9400,Joshua Cox,cookkatherine@gregory.biz,2021-07-27,"{""language"": ""EN"", ""currency"": ""USD""}",7617.77,Bronze,0 +9401,Ryan Holt,brose@griffin.com,2020-12-29,"{""language"": ""FR"", ""currency"": ""MXN""}",3383.89,Gold,0 +9402,Olivia Rojas,michael59@fitzgerald.com,2023-04-22,"{""language"": ""IT"", ""currency"": ""EUR""}",8771.62,Gold,0 +9403,Mackenzie Miranda,marshallscott@gmail.com,2021-10-14,"{""language"": ""DE"", ""currency"": ""EUR""}",1343.88,Bronze,1 +9404,Timothy Baker,bdaniels@roberts.com,2023-05-11,"{""language"": ""EN"", ""currency"": ""CAD""}",9020.65,Gold,1 +9405,Brandon Williams,carloscardenas@houston-stephenson.com,2024-11-18,"{""language"": ""IT"", ""currency"": ""CAD""}",691.61,Bronze,0 +9406,Amy Duncan,hmcdonald@craig-doyle.net,2024-08-09,"{""language"": ""IT"", ""currency"": ""MXN""}",9928.95,Bronze,1 +9407,Dr. Kathleen Christian MD,gflores@yahoo.com,2020-04-14,"{""language"": ""ES"", ""currency"": ""GBP""}",6223.78,Gold,0 +9408,Eric Thomas,whouston@yahoo.com,2021-12-14,"{""language"": ""IT"", ""currency"": ""GBP""}",3550.45,Gold,0 +9409,Kelly Palmer,bishopmelissa@burke.com,2021-04-30,"{""language"": ""ES"", ""currency"": ""CAD""}",5665.48,Gold,0 +9410,Todd Lopez,cheryl96@hotmail.com,2022-10-25,"{""language"": ""ES"", ""currency"": ""EUR""}",2624.91,Gold,1 +9411,Tara Parker,velasquezdaniel@smith.org,2022-07-18,"{""language"": ""FR"", ""currency"": ""MXN""}",7655.38,Gold,0 +9412,Donald Miller,plewis@livingston-welch.com,2024-02-27,"{""language"": ""ES"", ""currency"": ""MXN""}",5586.63,Gold,0 +9413,Alan York,stephenmercer@yahoo.com,2021-06-25,"{""language"": ""EN"", ""currency"": ""MXN""}",439.92,Gold,1 +9414,Julie Hoffman,jessicahenry@yahoo.com,2023-05-20,"{""language"": ""EN"", ""currency"": ""EUR""}",5838.08,Gold,0 +9415,Traci Scott MD,bchung@mendoza.com,2020-02-08,"{""language"": ""EN"", ""currency"": ""CAD""}",293.32,Bronze,1 +9416,Phillip Gibson,elizabeth58@hotmail.com,2021-12-05,"{""language"": ""EN"", ""currency"": ""USD""}",9221.73,Gold,1 +9417,Samantha Fletcher,hking@gmail.com,2020-01-10,"{""language"": ""FR"", ""currency"": ""EUR""}",9215.16,Silver,1 +9418,William Summers,debbie23@haynes.com,2020-09-12,"{""language"": ""EN"", ""currency"": ""USD""}",1545.85,Silver,0 +9419,Kenneth Hartman,johnjordan@hotmail.com,2024-04-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5606.8,Silver,1 +9420,Megan Esparza,hstevens@phillips.org,2022-04-27,"{""language"": ""DE"", ""currency"": ""EUR""}",5243.87,Silver,1 +9421,Melissa Mckee,jdaniels@keith.biz,2024-05-22,"{""language"": ""FR"", ""currency"": ""EUR""}",980.73,Gold,0 +9422,Edward Morales,dbailey@ford.biz,2021-10-12,"{""language"": ""DE"", ""currency"": ""GBP""}",1395.09,Gold,0 +9423,Jennifer Collins,stephanie46@rich-henson.com,2022-12-03,"{""language"": ""FR"", ""currency"": ""MXN""}",3674.32,Bronze,0 +9424,Christopher Ramirez,randall81@frazier.org,2023-11-20,"{""language"": ""ES"", ""currency"": ""MXN""}",7239.1,Gold,1 +9425,Marie Smith,megan69@yahoo.com,2020-01-22,"{""language"": ""IT"", ""currency"": ""USD""}",1430.41,Silver,0 +9426,Rodney Craig,jameswise@hodge.com,2024-05-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1513.13,Bronze,1 +9427,David Lewis,hlewis@gmail.com,2021-08-13,"{""language"": ""EN"", ""currency"": ""GBP""}",1243.79,Silver,0 +9428,Michael Ortega,zgarrett@hotmail.com,2020-11-10,"{""language"": ""FR"", ""currency"": ""MXN""}",2276.59,Gold,1 +9429,Bradley Montgomery,smithcesar@lee.org,2023-05-24,"{""language"": ""FR"", ""currency"": ""MXN""}",6518.32,Silver,0 +9430,Jeffery Bell,hbryant@rodriguez-middleton.org,2022-11-23,"{""language"": ""FR"", ""currency"": ""EUR""}",9986.81,Silver,0 +9431,Taylor Rush,amy30@gmail.com,2021-12-18,"{""language"": ""EN"", ""currency"": ""GBP""}",4866.23,Silver,1 +9432,Elizabeth Hudson,hernandezshannon@jensen.com,2021-10-10,"{""language"": ""FR"", ""currency"": ""USD""}",7894.48,Gold,0 +9433,Martin Nelson,patrickalexandra@hotmail.com,2024-05-01,"{""language"": ""FR"", ""currency"": ""CAD""}",7293.02,Gold,0 +9434,Larry Olson,williamsdarren@gmail.com,2022-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",277.83,Gold,0 +9435,Grace Barron,mark14@miller.net,2024-04-18,"{""language"": ""IT"", ""currency"": ""GBP""}",2323.97,Bronze,0 +9436,Pamela Hatfield,russellbenjamin@garner.com,2024-02-26,"{""language"": ""IT"", ""currency"": ""EUR""}",6729.61,Bronze,0 +9437,Katrina Carlson,kbryant@archer.com,2021-07-29,"{""language"": ""IT"", ""currency"": ""GBP""}",4125.53,Gold,1 +9438,Mr. Jeffrey Orozco,nielsencody@bennett-stewart.biz,2023-09-23,"{""language"": ""DE"", ""currency"": ""GBP""}",3029.31,Bronze,0 +9439,Robin Hogan,ycoleman@gmail.com,2021-04-15,"{""language"": ""IT"", ""currency"": ""USD""}",4462.66,Gold,0 +9440,Andrew Meyer MD,edward25@rios.com,2022-01-25,"{""language"": ""FR"", ""currency"": ""GBP""}",3997.28,Bronze,1 +9441,Nicholas Lowe,lopezdebra@craig.com,2024-02-07,"{""language"": ""FR"", ""currency"": ""MXN""}",6263.65,Silver,1 +9442,Hannah Riddle,zachary00@torres.biz,2020-07-26,"{""language"": ""IT"", ""currency"": ""GBP""}",8192.02,Gold,0 +9443,Haley Joseph,brettingram@hotmail.com,2023-05-29,"{""language"": ""ES"", ""currency"": ""GBP""}",7154.27,Silver,1 +9444,Claudia Kaufman,bfleming@yahoo.com,2021-08-25,"{""language"": ""IT"", ""currency"": ""MXN""}",8724.41,Silver,1 +9445,Michelle Price,rholland@hotmail.com,2023-05-26,"{""language"": ""DE"", ""currency"": ""MXN""}",4025.3,Silver,0 +9446,Randy Jordan,jamieellis@hotmail.com,2024-06-13,"{""language"": ""DE"", ""currency"": ""USD""}",5811.03,Silver,0 +9447,Alexis Mcpherson,nbrown@hotmail.com,2023-02-16,"{""language"": ""EN"", ""currency"": ""MXN""}",6511.48,Silver,0 +9448,Brent Ramirez,joel33@gmail.com,2024-10-03,"{""language"": ""EN"", ""currency"": ""GBP""}",8225.87,Bronze,0 +9449,Wesley Stevens,kpeters@thompson.info,2022-12-27,"{""language"": ""FR"", ""currency"": ""GBP""}",1610.47,Gold,0 +9450,Anthony Lee,christophersummers@yahoo.com,2020-04-30,"{""language"": ""EN"", ""currency"": ""CAD""}",8296.03,Gold,1 +9451,Nathaniel Quinn,ewilliams@rodriguez.com,2023-10-07,"{""language"": ""IT"", ""currency"": ""GBP""}",8377.81,Bronze,1 +9452,Samantha Villa,ambermathews@johnson.com,2023-02-22,"{""language"": ""FR"", ""currency"": ""GBP""}",5152.46,Silver,1 +9453,Kenneth Perry,davidharrison@carter-park.net,2024-02-16,"{""language"": ""EN"", ""currency"": ""CAD""}",6563.17,Bronze,1 +9454,William Gray,murphypaul@yahoo.com,2024-08-25,"{""language"": ""ES"", ""currency"": ""EUR""}",7055.54,Silver,1 +9455,Richard Charles,joseph84@hotmail.com,2021-10-20,"{""language"": ""EN"", ""currency"": ""MXN""}",3782.59,Gold,1 +9456,Jacob Chapman,meyerdawn@shaw.net,2023-11-03,"{""language"": ""ES"", ""currency"": ""CAD""}",1036.36,Silver,0 +9457,Dana Greene,cynthia07@bennett.org,2021-08-15,"{""language"": ""EN"", ""currency"": ""CAD""}",5612.77,Bronze,1 +9458,Tyler Keller,cassandra09@matthews-long.info,2022-05-20,"{""language"": ""FR"", ""currency"": ""USD""}",7299.63,Silver,0 +9459,Kathleen Mccann,djohnson@yahoo.com,2022-09-25,"{""language"": ""EN"", ""currency"": ""CAD""}",6026.43,Gold,0 +9460,Ashley Morales,dking@hotmail.com,2020-07-17,"{""language"": ""DE"", ""currency"": ""EUR""}",4099.86,Silver,1 +9461,Keith Hampton,victoria50@gmail.com,2021-04-27,"{""language"": ""DE"", ""currency"": ""USD""}",9597.9,Gold,1 +9462,Tara Morales,sean18@brown.com,2022-06-12,"{""language"": ""EN"", ""currency"": ""GBP""}",8408.48,Gold,0 +9463,Kristen Roman,julietravis@turner.com,2022-12-13,"{""language"": ""DE"", ""currency"": ""USD""}",6313.69,Bronze,0 +9464,Raymond Wilson,owenkatherine@gmail.com,2020-03-01,"{""language"": ""IT"", ""currency"": ""USD""}",6505.06,Gold,1 +9465,Robert Garcia,tony51@beard.com,2024-08-05,"{""language"": ""IT"", ""currency"": ""EUR""}",7971.6,Gold,1 +9466,Tracy Cook,qthomas@miller-fisher.org,2020-12-18,"{""language"": ""ES"", ""currency"": ""MXN""}",837.27,Silver,0 +9467,Kelsey Larson,jessica58@wolfe.net,2021-04-09,"{""language"": ""IT"", ""currency"": ""EUR""}",6803.39,Silver,1 +9468,Andrea Lambert,piercejohn@jones.com,2021-04-27,"{""language"": ""IT"", ""currency"": ""GBP""}",3250.12,Gold,0 +9469,Geoffrey Rodgers,nicholas01@yahoo.com,2024-03-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3131.36,Gold,0 +9470,Vanessa Haney,perezamy@phillips.com,2021-08-27,"{""language"": ""ES"", ""currency"": ""GBP""}",2508.98,Gold,0 +9471,Teresa Rodriguez,michaelwallace@white-mueller.org,2021-04-11,"{""language"": ""IT"", ""currency"": ""MXN""}",2721.6,Bronze,1 +9472,James Terry,butlerjose@yahoo.com,2022-07-26,"{""language"": ""IT"", ""currency"": ""MXN""}",1078.31,Bronze,0 +9473,Richard Jackson,chad77@hotmail.com,2024-08-14,"{""language"": ""FR"", ""currency"": ""MXN""}",7833.5,Bronze,1 +9474,Amy Turner,kyle73@yahoo.com,2020-05-19,"{""language"": ""DE"", ""currency"": ""MXN""}",7588.58,Gold,1 +9475,Cameron Hunter,ehunt@hotmail.com,2023-05-20,"{""language"": ""FR"", ""currency"": ""CAD""}",4707.72,Gold,1 +9476,Frank Boyer,caroline55@harris-taylor.org,2023-05-17,"{""language"": ""ES"", ""currency"": ""MXN""}",6088.63,Silver,0 +9477,Cindy Cole,kimberlymartinez@gmail.com,2021-04-14,"{""language"": ""IT"", ""currency"": ""MXN""}",5758.28,Gold,0 +9478,Miguel Webb,yolanda18@gmail.com,2020-02-26,"{""language"": ""EN"", ""currency"": ""CAD""}",9084.69,Bronze,1 +9479,James Garcia,archerdebbie@spencer-martin.com,2020-02-16,"{""language"": ""FR"", ""currency"": ""USD""}",6673.42,Silver,1 +9480,Allen Goodman,erinjones@quinn.info,2021-06-28,"{""language"": ""DE"", ""currency"": ""CAD""}",8419.56,Silver,0 +9481,Leslie King,jkeller@vargas.com,2022-08-29,"{""language"": ""ES"", ""currency"": ""EUR""}",118.2,Gold,0 +9482,Stanley Santana,schaefernorma@gmail.com,2020-09-24,"{""language"": ""ES"", ""currency"": ""USD""}",5606.7,Bronze,0 +9483,Samuel Barker,anovak@hotmail.com,2024-01-02,"{""language"": ""ES"", ""currency"": ""USD""}",2860.45,Gold,0 +9484,Brenda Brown,anthony76@gmail.com,2020-09-08,"{""language"": ""IT"", ""currency"": ""EUR""}",2186.48,Bronze,1 +9485,Travis Browning,lauren90@bryant.com,2023-10-01,"{""language"": ""FR"", ""currency"": ""MXN""}",762.93,Gold,1 +9486,Brandon Carlson,bjackson@gmail.com,2021-02-24,"{""language"": ""ES"", ""currency"": ""MXN""}",1461.7,Gold,1 +9487,Matthew Contreras,ariel61@gmail.com,2024-04-09,"{""language"": ""ES"", ""currency"": ""EUR""}",6888.73,Gold,0 +9488,Thomas Dorsey,stevenfisher@gmail.com,2020-08-24,"{""language"": ""ES"", ""currency"": ""CAD""}",4181.55,Silver,1 +9489,Laura Gonzalez,donaldmorrison@anderson.com,2023-05-30,"{""language"": ""IT"", ""currency"": ""CAD""}",7887.79,Gold,1 +9490,Jim Mejia,ethanschroeder@gmail.com,2024-07-17,"{""language"": ""ES"", ""currency"": ""USD""}",5380.64,Bronze,1 +9491,Nathan Padilla,amy46@hotmail.com,2023-09-07,"{""language"": ""DE"", ""currency"": ""EUR""}",762.58,Bronze,0 +9492,James Edwards,gbrown@wilson.com,2022-04-07,"{""language"": ""ES"", ""currency"": ""USD""}",5770.89,Bronze,1 +9493,Bradley Simmons,lramirez@hotmail.com,2020-04-05,"{""language"": ""EN"", ""currency"": ""CAD""}",9079.02,Silver,1 +9494,Anna Burns,crawforddillon@thompson.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""MXN""}",7615.55,Bronze,0 +9495,Denise Benson,mary86@yahoo.com,2020-11-04,"{""language"": ""EN"", ""currency"": ""CAD""}",488.45,Silver,1 +9496,Katherine Rich,stevensanna@yahoo.com,2024-04-25,"{""language"": ""EN"", ""currency"": ""MXN""}",4567.67,Silver,0 +9497,Samuel Thompson,millerlauren@jenkins.org,2020-12-10,"{""language"": ""EN"", ""currency"": ""EUR""}",8178.78,Silver,0 +9498,Jennifer Kelly,hoffmanjoshua@boyd.com,2022-02-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5553.7,Gold,0 +9499,Maria Johnson,georgelatoya@hotmail.com,2022-03-18,"{""language"": ""EN"", ""currency"": ""EUR""}",9245.05,Silver,0 +9500,Danielle Robinson,michael92@yahoo.com,2023-12-02,"{""language"": ""EN"", ""currency"": ""MXN""}",7086.33,Bronze,1 +9501,Claire Thomas,cookkelly@brooks.com,2022-10-18,"{""language"": ""DE"", ""currency"": ""EUR""}",1136.12,Gold,0 +9502,Keith White,rachelpayne@hughes.org,2021-04-28,"{""language"": ""EN"", ""currency"": ""MXN""}",3071.52,Gold,0 +9503,Victor Young,nancy26@yahoo.com,2021-01-09,"{""language"": ""IT"", ""currency"": ""CAD""}",5705.87,Bronze,0 +9504,Todd Rodriguez,josephpaula@hotmail.com,2023-02-02,"{""language"": ""ES"", ""currency"": ""GBP""}",8270.51,Gold,0 +9505,Cynthia Mullins,hillfrancis@parsons.com,2021-07-19,"{""language"": ""IT"", ""currency"": ""MXN""}",9685.86,Silver,0 +9506,Kenneth Smith,monica29@randall.com,2022-02-13,"{""language"": ""ES"", ""currency"": ""EUR""}",5753.24,Silver,1 +9507,Mary Aguilar,lrose@yahoo.com,2022-07-25,"{""language"": ""EN"", ""currency"": ""GBP""}",2071.45,Silver,0 +9508,Dr. Jill Castillo,michellecarter@hotmail.com,2022-08-16,"{""language"": ""FR"", ""currency"": ""MXN""}",7919.67,Gold,0 +9509,Steven Miller,ryannelson@gmail.com,2024-07-16,"{""language"": ""IT"", ""currency"": ""USD""}",9830.68,Gold,1 +9510,Kelly Reyes,mary67@yahoo.com,2024-11-20,"{""language"": ""FR"", ""currency"": ""MXN""}",3183.49,Silver,0 +9511,Amanda Flores,pshields@hotmail.com,2023-03-01,"{""language"": ""DE"", ""currency"": ""EUR""}",4488.42,Bronze,0 +9512,Shelley Scott,davidmarquez@gmail.com,2019-12-25,"{""language"": ""ES"", ""currency"": ""GBP""}",5880.49,Gold,1 +9513,Tina Jacobson,qeaton@chang.com,2024-04-08,"{""language"": ""IT"", ""currency"": ""GBP""}",5865.93,Gold,0 +9514,Sarah Evans,barnesmelissa@bradley-solis.com,2022-09-19,"{""language"": ""EN"", ""currency"": ""GBP""}",4956.64,Silver,1 +9515,Sarah Torres DDS,bergerclayton@yahoo.com,2024-09-19,"{""language"": ""EN"", ""currency"": ""MXN""}",7058.46,Gold,0 +9516,Melissa Smith,yujason@yahoo.com,2021-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",9463.11,Bronze,0 +9517,Mr. Eric Crosby,sherridyer@lopez.com,2024-04-08,"{""language"": ""FR"", ""currency"": ""GBP""}",8649.5,Bronze,0 +9518,Spencer Ramsey,sandersclaudia@hotmail.com,2024-08-18,"{""language"": ""DE"", ""currency"": ""USD""}",7195.72,Bronze,1 +9519,Toni Robinson,michelle52@gmail.com,2021-10-15,"{""language"": ""IT"", ""currency"": ""CAD""}",5751.39,Silver,1 +9520,Crystal Carter,kroberts@thomas-mitchell.com,2020-06-10,"{""language"": ""EN"", ""currency"": ""GBP""}",9718.62,Gold,0 +9521,Sherry Hawkins,salinastina@elliott.com,2022-01-06,"{""language"": ""DE"", ""currency"": ""CAD""}",2988.28,Gold,1 +9522,Tara Sparks,melissa87@johnson.net,2022-04-19,"{""language"": ""DE"", ""currency"": ""EUR""}",3385.11,Gold,0 +9523,Shane Parks MD,millerjames@powell.info,2020-12-05,"{""language"": ""DE"", ""currency"": ""MXN""}",7797.41,Silver,0 +9524,Maria Fleming,alexanderjessica@jackson-taylor.com,2022-07-07,"{""language"": ""FR"", ""currency"": ""MXN""}",7089.88,Gold,0 +9525,Todd Cabrera,ltaylor@gmail.com,2021-12-01,"{""language"": ""IT"", ""currency"": ""EUR""}",5151.05,Silver,0 +9526,Jennifer Mason,michele62@boyer.info,2023-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",1548.49,Bronze,1 +9527,Bruce Kelly,blairmary@yahoo.com,2021-11-27,"{""language"": ""FR"", ""currency"": ""EUR""}",600.04,Silver,1 +9528,Dr. Marc Moore Jr.,martinezbenjamin@gonzalez.biz,2024-03-19,"{""language"": ""IT"", ""currency"": ""MXN""}",4816.81,Bronze,1 +9529,Robert Hernandez,sullivanmonica@hotmail.com,2021-12-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4997.23,Gold,0 +9530,Jeffrey Alvarez,sydney34@hotmail.com,2023-05-05,"{""language"": ""EN"", ""currency"": ""EUR""}",1482.26,Gold,0 +9531,Trevor Hogan,oliviadavis@wong.com,2024-06-23,"{""language"": ""EN"", ""currency"": ""USD""}",2014.27,Gold,0 +9532,Barbara Terry,erodriguez@walker.org,2020-11-25,"{""language"": ""ES"", ""currency"": ""GBP""}",7672.64,Bronze,1 +9533,Anthony Velez,christopher89@yahoo.com,2023-10-02,"{""language"": ""EN"", ""currency"": ""GBP""}",2477.1,Gold,0 +9534,Edward Smith,twilkinson@lindsey-warren.net,2020-07-01,"{""language"": ""IT"", ""currency"": ""MXN""}",1367.74,Gold,1 +9535,Connor Clarke,parkstina@yahoo.com,2024-09-26,"{""language"": ""DE"", ""currency"": ""GBP""}",4443.88,Silver,0 +9536,Michael Ortega,joe92@hotmail.com,2024-02-08,"{""language"": ""FR"", ""currency"": ""MXN""}",8950.96,Bronze,0 +9537,Jennifer Gay,pmiller@hotmail.com,2021-11-25,"{""language"": ""DE"", ""currency"": ""MXN""}",3078.26,Silver,0 +9538,Elizabeth Pitts,simpsonolivia@gmail.com,2024-05-18,"{""language"": ""DE"", ""currency"": ""MXN""}",3101.76,Silver,1 +9539,Rebecca Woods,mckenzierichards@gmail.com,2024-08-20,"{""language"": ""IT"", ""currency"": ""CAD""}",4015.6,Gold,0 +9540,Lisa Owens,kristie83@sanchez-wheeler.biz,2021-06-14,"{""language"": ""EN"", ""currency"": ""MXN""}",1334.22,Gold,1 +9541,Pamela Holmes,mgraves@pierce.net,2024-06-07,"{""language"": ""IT"", ""currency"": ""MXN""}",3501.66,Bronze,1 +9542,Paul Acevedo,gmartinez@lee.biz,2024-03-23,"{""language"": ""IT"", ""currency"": ""USD""}",8991.03,Silver,0 +9543,Sara Richardson,erica88@mitchell.com,2022-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",9347.01,Gold,1 +9544,Ronald Ferguson,torresbrian@yahoo.com,2024-09-08,"{""language"": ""IT"", ""currency"": ""CAD""}",6814.1,Bronze,1 +9545,Alicia Bryant,edwardsmelanie@gmail.com,2022-09-25,"{""language"": ""DE"", ""currency"": ""USD""}",8106.29,Silver,0 +9546,Michelle Santos,riveradiane@gmail.com,2024-11-08,"{""language"": ""DE"", ""currency"": ""GBP""}",4831.36,Bronze,0 +9547,Edward Hunt,elizabeth41@bender.biz,2023-04-21,"{""language"": ""EN"", ""currency"": ""MXN""}",3901.25,Gold,1 +9548,Gary Diaz,daniel82@yahoo.com,2023-09-08,"{""language"": ""IT"", ""currency"": ""USD""}",936.35,Gold,0 +9549,Chelsea Davis,benjamin79@hotmail.com,2024-09-24,"{""language"": ""IT"", ""currency"": ""MXN""}",8254.13,Silver,1 +9550,Melissa Lawrence,ssantiago@hotmail.com,2020-03-20,"{""language"": ""IT"", ""currency"": ""CAD""}",2739.1,Gold,0 +9551,Zachary Harrell,bauermichael@scott-sanchez.com,2021-09-11,"{""language"": ""ES"", ""currency"": ""CAD""}",6260.49,Silver,1 +9552,Rebecca Salas,alexandrasims@gmail.com,2021-06-16,"{""language"": ""IT"", ""currency"": ""CAD""}",9564.99,Silver,1 +9553,Heidi Hughes DDS,regina86@hotmail.com,2024-06-01,"{""language"": ""IT"", ""currency"": ""MXN""}",9259.34,Silver,0 +9554,Brianna Robinson,jonestroy@francis.com,2024-06-02,"{""language"": ""ES"", ""currency"": ""CAD""}",8804.71,Bronze,0 +9555,Jamie Smith,warejanice@richardson.com,2022-11-09,"{""language"": ""IT"", ""currency"": ""GBP""}",6668.86,Silver,0 +9556,Kimberly Dawson,higginsalexandra@yahoo.com,2020-05-31,"{""language"": ""FR"", ""currency"": ""EUR""}",115.44,Gold,1 +9557,Latoya Lopez,johnsonjennifer@gmail.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""EUR""}",8784.44,Bronze,0 +9558,Derrick Goodwin,james12@weber.com,2021-05-31,"{""language"": ""FR"", ""currency"": ""USD""}",5153.4,Gold,1 +9559,Cody Bishop,michelle72@yahoo.com,2024-01-05,"{""language"": ""IT"", ""currency"": ""USD""}",4116.38,Silver,0 +9560,Elizabeth Hill,btaylor@hunter.biz,2022-10-06,"{""language"": ""EN"", ""currency"": ""CAD""}",8187.02,Bronze,0 +9561,Andrew Burnett,brenda64@yahoo.com,2023-05-11,"{""language"": ""DE"", ""currency"": ""MXN""}",8294.82,Bronze,0 +9562,Andrea Byrd,eparks@perkins.com,2024-10-30,"{""language"": ""IT"", ""currency"": ""USD""}",2887.5,Bronze,0 +9563,Ashley Russell,vwatson@morgan-bowen.com,2019-12-13,"{""language"": ""ES"", ""currency"": ""GBP""}",4103.32,Silver,1 +9564,Beth Nelson,maldonadosuzanne@garcia.com,2021-01-08,"{""language"": ""DE"", ""currency"": ""GBP""}",6459.21,Silver,0 +9565,Amanda Harvey,josephjohnson@gmail.com,2022-12-13,"{""language"": ""EN"", ""currency"": ""EUR""}",7472.18,Gold,0 +9566,Tina Walters,brobles@davis.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""GBP""}",8757.67,Gold,1 +9567,Michelle Chavez,thompsondavid@landry-warner.com,2024-04-16,"{""language"": ""DE"", ""currency"": ""MXN""}",7246.97,Gold,1 +9568,Jacob Logan,paularoman@hotmail.com,2024-02-13,"{""language"": ""IT"", ""currency"": ""GBP""}",7413.27,Bronze,0 +9569,April Becker,adam51@gmail.com,2022-03-17,"{""language"": ""FR"", ""currency"": ""GBP""}",2582.68,Bronze,0 +9570,Shawn Johns,rogerstammy@hotmail.com,2023-12-13,"{""language"": ""ES"", ""currency"": ""CAD""}",5730.21,Silver,0 +9571,Matthew Gay,juliaschmitt@yahoo.com,2021-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",7564.84,Bronze,1 +9572,Cameron Parker,scasey@clark.com,2023-05-31,"{""language"": ""FR"", ""currency"": ""CAD""}",9067.68,Silver,0 +9573,James Hatfield,patrick56@hotmail.com,2024-11-30,"{""language"": ""DE"", ""currency"": ""CAD""}",6107.91,Silver,0 +9574,Charles Nichols,hernandezjustin@marquez-smith.com,2022-09-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1001.54,Bronze,0 +9575,Brian Wyatt,roymorris@gilbert-hicks.com,2022-04-20,"{""language"": ""FR"", ""currency"": ""GBP""}",3403.31,Bronze,0 +9576,Priscilla Pope,mcdanielkevin@gmail.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""CAD""}",8282.46,Gold,1 +9577,Jasmine Mcmahon,paigesullivan@hernandez.com,2021-12-21,"{""language"": ""IT"", ""currency"": ""USD""}",719.45,Bronze,1 +9578,Mark Nunez,savagejim@levy-perkins.biz,2021-11-19,"{""language"": ""ES"", ""currency"": ""EUR""}",7035.98,Gold,1 +9579,Shirley Anderson,erosario@cruz-ali.com,2020-04-16,"{""language"": ""ES"", ""currency"": ""EUR""}",4768.69,Bronze,1 +9580,Jon Scott,stephanie14@gmail.com,2024-03-23,"{""language"": ""EN"", ""currency"": ""EUR""}",1936.13,Gold,0 +9581,John Foley,theresa75@meza-harrington.com,2023-06-10,"{""language"": ""EN"", ""currency"": ""USD""}",3264.45,Silver,1 +9582,Nicholas Jones,alexandertaylor@king.com,2023-01-01,"{""language"": ""EN"", ""currency"": ""GBP""}",161.88,Bronze,1 +9583,Tony Bryant,hallbryan@yahoo.com,2023-07-24,"{""language"": ""FR"", ""currency"": ""EUR""}",5467.82,Gold,0 +9584,Amanda Kelley,jason51@gonzalez.com,2023-02-18,"{""language"": ""FR"", ""currency"": ""MXN""}",9088.54,Gold,0 +9585,Mrs. Terri Moore,maddenrobyn@hotmail.com,2022-10-08,"{""language"": ""ES"", ""currency"": ""EUR""}",9125.34,Bronze,0 +9586,Alexis Fernandez,gilmorejohn@gmail.com,2024-01-17,"{""language"": ""FR"", ""currency"": ""CAD""}",2509.7,Bronze,0 +9587,Dana Alexander,matthew24@hotmail.com,2020-10-10,"{""language"": ""FR"", ""currency"": ""GBP""}",7087.27,Silver,1 +9588,Gregory Lawrence,margaret38@villanueva.biz,2021-07-23,"{""language"": ""ES"", ""currency"": ""USD""}",7753.92,Silver,1 +9589,Deborah Benton,umeyer@bennett.com,2021-03-03,"{""language"": ""EN"", ""currency"": ""EUR""}",6964.42,Bronze,0 +9590,Wanda Mendoza,jeffreygibson@smith-lee.com,2023-01-09,"{""language"": ""IT"", ""currency"": ""MXN""}",2663.69,Bronze,0 +9591,Michelle Hughes,plopez@hanna.com,2024-06-22,"{""language"": ""FR"", ""currency"": ""GBP""}",2171.55,Bronze,1 +9592,Devin White,martinezbrendan@lawrence.com,2023-12-30,"{""language"": ""FR"", ""currency"": ""GBP""}",8419.27,Gold,0 +9593,Megan Vargas,kevinmiddleton@hotmail.com,2023-01-31,"{""language"": ""IT"", ""currency"": ""USD""}",8880.02,Silver,1 +9594,Miranda Nichols,christine30@yates-ramirez.com,2022-06-03,"{""language"": ""ES"", ""currency"": ""MXN""}",4975.82,Gold,1 +9595,Paula Martinez,jimmywolf@hodges.com,2024-01-30,"{""language"": ""ES"", ""currency"": ""CAD""}",2815.82,Silver,0 +9596,Brittany Wood,milleranthony@yahoo.com,2023-07-06,"{""language"": ""FR"", ""currency"": ""MXN""}",9696.76,Bronze,1 +9597,Bobby Bailey,joseph82@jackson.com,2022-06-11,"{""language"": ""DE"", ""currency"": ""EUR""}",1040.69,Silver,0 +9598,Barbara Dalton,cheyennehenderson@mills-solis.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""MXN""}",4085.79,Gold,1 +9599,Aaron King DDS,jeffreygomez@barker.com,2022-03-08,"{""language"": ""FR"", ""currency"": ""GBP""}",2896.62,Bronze,0 +9600,Cameron Mcgee,douglasallison@wolfe.info,2023-09-25,"{""language"": ""ES"", ""currency"": ""GBP""}",9883.59,Bronze,0 +9601,Brian Henderson,gregorymiller@smith.com,2022-12-30,"{""language"": ""ES"", ""currency"": ""MXN""}",8683.95,Silver,1 +9602,Lori Cherry,mparker@sanchez.biz,2021-04-22,"{""language"": ""EN"", ""currency"": ""CAD""}",8508.98,Bronze,0 +9603,Molly Mitchell,sarah47@gmail.com,2024-09-10,"{""language"": ""DE"", ""currency"": ""GBP""}",7211.95,Silver,1 +9604,Julia Cole,scottbrittney@gmail.com,2023-10-27,"{""language"": ""ES"", ""currency"": ""GBP""}",9549.91,Gold,0 +9605,Brenda Trujillo,colliersergio@kennedy.com,2022-10-05,"{""language"": ""IT"", ""currency"": ""MXN""}",4289.89,Silver,1 +9606,Sierra Carter,stephen23@hotmail.com,2024-02-10,"{""language"": ""FR"", ""currency"": ""GBP""}",9583.42,Bronze,1 +9607,Tina Price,erichenry@gmail.com,2024-06-06,"{""language"": ""DE"", ""currency"": ""USD""}",7122.53,Gold,0 +9608,Katelyn Baker,victorbeck@yahoo.com,2021-08-05,"{""language"": ""DE"", ""currency"": ""USD""}",4381.39,Gold,0 +9609,Christine Cox,jesse57@turner.com,2020-06-10,"{""language"": ""DE"", ""currency"": ""MXN""}",5936.95,Bronze,0 +9610,Robert Ray DDS,williamsdana@gmail.com,2024-05-02,"{""language"": ""DE"", ""currency"": ""MXN""}",3742.37,Silver,1 +9611,Robert Espinoza,matthew65@hotmail.com,2022-02-19,"{""language"": ""IT"", ""currency"": ""CAD""}",5971.83,Bronze,1 +9612,Lisa Russell,christine81@hotmail.com,2021-07-02,"{""language"": ""IT"", ""currency"": ""EUR""}",8636.26,Gold,1 +9613,Casey Peterson,mgreen@hotmail.com,2020-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",9797.72,Silver,1 +9614,Diana Martin,brianhernandez@miller.com,2024-12-02,"{""language"": ""DE"", ""currency"": ""EUR""}",3655.98,Bronze,0 +9615,Karen Taylor,vincent21@hotmail.com,2021-12-13,"{""language"": ""DE"", ""currency"": ""CAD""}",701.97,Bronze,1 +9616,Elizabeth Singleton,cynthia70@yahoo.com,2021-02-16,"{""language"": ""FR"", ""currency"": ""MXN""}",3772.85,Bronze,0 +9617,Darlene Jones,johnsonstephanie@yahoo.com,2022-03-30,"{""language"": ""DE"", ""currency"": ""USD""}",5389.61,Silver,1 +9618,Robert Miranda,adam84@hotmail.com,2022-03-23,"{""language"": ""ES"", ""currency"": ""EUR""}",8974.14,Gold,1 +9619,Patrick Perkins,pstephens@hotmail.com,2022-05-11,"{""language"": ""IT"", ""currency"": ""MXN""}",3896.77,Gold,1 +9620,Tabitha Case,oroman@harris.org,2020-11-26,"{""language"": ""IT"", ""currency"": ""GBP""}",2783.12,Silver,0 +9621,Tara Williams,kingtiffany@potter.biz,2022-04-15,"{""language"": ""FR"", ""currency"": ""CAD""}",5658.89,Gold,1 +9622,Edward Tran,zjones@yahoo.com,2024-06-30,"{""language"": ""EN"", ""currency"": ""EUR""}",9053.68,Silver,0 +9623,John Flynn,hollymendoza@jackson.com,2022-02-16,"{""language"": ""ES"", ""currency"": ""GBP""}",5260.92,Gold,1 +9624,James Perez,lisa03@vang.net,2020-05-16,"{""language"": ""DE"", ""currency"": ""EUR""}",5691.54,Bronze,0 +9625,Ashley King,istewart@hotmail.com,2021-04-20,"{""language"": ""ES"", ""currency"": ""GBP""}",4696.05,Bronze,0 +9626,Don Lowe,anthony12@gmail.com,2024-07-28,"{""language"": ""DE"", ""currency"": ""USD""}",1413.23,Silver,1 +9627,Mark Burns,cthomas@thomas.com,2024-10-20,"{""language"": ""ES"", ""currency"": ""USD""}",4904.53,Silver,1 +9628,Julie English,anthony64@yahoo.com,2022-07-02,"{""language"": ""DE"", ""currency"": ""EUR""}",431.04,Bronze,1 +9629,Nicholas Rhodes,tsmith@hotmail.com,2020-08-27,"{""language"": ""FR"", ""currency"": ""MXN""}",5895.86,Bronze,1 +9630,Amanda Palmer,kimberlysmith@smith.biz,2023-04-25,"{""language"": ""ES"", ""currency"": ""EUR""}",5990.68,Silver,0 +9631,Scott Garrison,ajones@hayes.com,2021-12-13,"{""language"": ""EN"", ""currency"": ""USD""}",8609.71,Bronze,0 +9632,Bryan Mcbride,lisa93@burns-king.com,2022-04-26,"{""language"": ""EN"", ""currency"": ""USD""}",7804.3,Gold,1 +9633,Carlos Hines,lreid@wright.biz,2024-07-29,"{""language"": ""FR"", ""currency"": ""GBP""}",721.04,Gold,1 +9634,Scott Archer,ggibson@yahoo.com,2024-10-12,"{""language"": ""FR"", ""currency"": ""MXN""}",4978.14,Silver,0 +9635,Jacqueline Miller,lori07@allison.com,2022-09-20,"{""language"": ""EN"", ""currency"": ""MXN""}",1075.7,Bronze,1 +9636,Roberto Wang,nicholasgonzalez@brown-bowers.com,2022-08-12,"{""language"": ""FR"", ""currency"": ""CAD""}",6342.35,Gold,1 +9637,Teresa Leonard,lindapineda@perry.com,2022-03-22,"{""language"": ""EN"", ""currency"": ""GBP""}",7450.06,Silver,0 +9638,Steven Allen,williamsjennifer@johnston-savage.info,2020-01-16,"{""language"": ""IT"", ""currency"": ""MXN""}",9063.06,Silver,0 +9639,Adam Hunt,garciakevin@shepherd.com,2022-01-30,"{""language"": ""EN"", ""currency"": ""CAD""}",3749.58,Bronze,1 +9640,Tracey Allen,thomasroberts@hotmail.com,2022-02-16,"{""language"": ""EN"", ""currency"": ""EUR""}",8632.62,Silver,1 +9641,Tiffany Pham,jonathanskinner@walters.biz,2020-01-19,"{""language"": ""IT"", ""currency"": ""GBP""}",3870.91,Gold,1 +9642,Jesus Acosta,patricklawson@gilbert.com,2021-07-12,"{""language"": ""DE"", ""currency"": ""EUR""}",1537.81,Bronze,0 +9643,Nancy Anderson,tpowell@hotmail.com,2024-07-14,"{""language"": ""ES"", ""currency"": ""USD""}",5538.05,Silver,0 +9644,Julia Brown,warderic@munoz-edwards.com,2023-02-13,"{""language"": ""EN"", ""currency"": ""GBP""}",706.7,Bronze,1 +9645,Michelle Stewart,wellscharles@gmail.com,2023-01-24,"{""language"": ""FR"", ""currency"": ""MXN""}",2760.68,Silver,0 +9646,Valerie Pennington,anthony97@levine.com,2020-03-14,"{""language"": ""ES"", ""currency"": ""GBP""}",9011.81,Gold,1 +9647,Doris Delgado,katherine11@hogan.com,2021-10-30,"{""language"": ""ES"", ""currency"": ""CAD""}",4339.12,Gold,1 +9648,Lisa Clark,knightmark@yahoo.com,2020-10-27,"{""language"": ""FR"", ""currency"": ""EUR""}",2136.85,Bronze,1 +9649,Jessica Hayes PhD,jennifer28@yahoo.com,2024-08-15,"{""language"": ""IT"", ""currency"": ""CAD""}",8988.61,Gold,1 +9650,Michael Jones,samuel56@gmail.com,2021-09-22,"{""language"": ""FR"", ""currency"": ""MXN""}",5200.95,Gold,1 +9651,Nicholas Myers,deborah10@hotmail.com,2021-09-16,"{""language"": ""ES"", ""currency"": ""CAD""}",8374.67,Bronze,1 +9652,Tara Knapp,muellersean@mccarty.info,2021-12-15,"{""language"": ""EN"", ""currency"": ""GBP""}",7357.53,Bronze,1 +9653,Sean Morrow,pricemark@yahoo.com,2024-10-17,"{""language"": ""FR"", ""currency"": ""EUR""}",4252.0,Bronze,1 +9654,Nicholas Ford,iscott@yahoo.com,2022-04-03,"{""language"": ""IT"", ""currency"": ""GBP""}",1426.63,Gold,1 +9655,Dr. Cory Turner,ramirezashley@yahoo.com,2021-12-06,"{""language"": ""FR"", ""currency"": ""EUR""}",4237.25,Gold,0 +9656,Cheryl Tyler,gdean@nelson-ross.com,2020-03-03,"{""language"": ""EN"", ""currency"": ""USD""}",5912.17,Gold,0 +9657,Bryan Vasquez,tmyers@hotmail.com,2022-08-16,"{""language"": ""DE"", ""currency"": ""MXN""}",3729.47,Silver,0 +9658,Duane Willis,jordan19@yahoo.com,2024-06-02,"{""language"": ""IT"", ""currency"": ""CAD""}",2445.12,Gold,0 +9659,Anthony Kelly,jordanjoseph@richard.info,2023-10-12,"{""language"": ""EN"", ""currency"": ""MXN""}",9372.97,Bronze,1 +9660,Lydia Edwards,robertclark@hotmail.com,2021-11-27,"{""language"": ""IT"", ""currency"": ""CAD""}",793.38,Gold,1 +9661,Victoria Gray,gmartinez@rodriguez-white.com,2022-05-25,"{""language"": ""EN"", ""currency"": ""CAD""}",2715.11,Bronze,0 +9662,James Ware,nmaxwell@hotmail.com,2024-06-26,"{""language"": ""FR"", ""currency"": ""GBP""}",5093.08,Silver,1 +9663,Gary Mccoy,robin22@hotmail.com,2021-07-12,"{""language"": ""IT"", ""currency"": ""CAD""}",9491.37,Gold,0 +9664,Tina Gordon,mduran@freeman.com,2021-06-07,"{""language"": ""DE"", ""currency"": ""USD""}",4175.23,Gold,0 +9665,Kristin Wilson,mathew89@lara-peterson.net,2021-01-27,"{""language"": ""ES"", ""currency"": ""GBP""}",1946.6,Gold,0 +9666,Christine Noble,robertjackson@hotmail.com,2022-04-15,"{""language"": ""DE"", ""currency"": ""MXN""}",455.85,Silver,0 +9667,Nicole Perry,sherry41@gmail.com,2022-09-12,"{""language"": ""FR"", ""currency"": ""CAD""}",4272.38,Silver,0 +9668,Whitney Joseph,stephaniemiles@hotmail.com,2023-10-02,"{""language"": ""EN"", ""currency"": ""MXN""}",2583.38,Gold,0 +9669,Thomas Jennings,chansen@thomas-bates.info,2021-03-06,"{""language"": ""EN"", ""currency"": ""MXN""}",9267.04,Bronze,1 +9670,Julie Ingram,julie28@yahoo.com,2022-09-05,"{""language"": ""ES"", ""currency"": ""CAD""}",3854.12,Silver,0 +9671,Willie Benjamin,stacy18@hotmail.com,2024-10-25,"{""language"": ""EN"", ""currency"": ""GBP""}",7520.47,Silver,1 +9672,Shelly Hill,vjohnson@yahoo.com,2023-01-02,"{""language"": ""EN"", ""currency"": ""GBP""}",5105.14,Silver,1 +9673,Marcus Baird,patrick62@yahoo.com,2021-03-26,"{""language"": ""EN"", ""currency"": ""MXN""}",7172.04,Silver,0 +9674,Christina Fisher,hfox@gmail.com,2020-03-09,"{""language"": ""DE"", ""currency"": ""USD""}",530.7,Silver,1 +9675,Felicia Murray,lopezjuan@hotmail.com,2024-07-27,"{""language"": ""ES"", ""currency"": ""CAD""}",7782.81,Silver,0 +9676,Anthony Brown,vargasalexander@yahoo.com,2024-08-10,"{""language"": ""FR"", ""currency"": ""USD""}",2109.05,Silver,0 +9677,Brian Perry,handerson@hotmail.com,2024-02-26,"{""language"": ""EN"", ""currency"": ""GBP""}",3212.43,Silver,1 +9678,Kevin Reed,patricia47@gmail.com,2020-05-03,"{""language"": ""DE"", ""currency"": ""EUR""}",7012.92,Gold,0 +9679,Matthew White DVM,gallaghermark@sexton.com,2023-01-18,"{""language"": ""EN"", ""currency"": ""GBP""}",8211.02,Silver,1 +9680,Anna Russell,hollyterry@gillespie-callahan.com,2022-05-11,"{""language"": ""FR"", ""currency"": ""USD""}",3573.23,Silver,1 +9681,Teresa Terry,allen16@moore-lewis.com,2022-09-06,"{""language"": ""DE"", ""currency"": ""CAD""}",9139.15,Bronze,1 +9682,Rhonda Davis,jcox@yahoo.com,2022-12-10,"{""language"": ""EN"", ""currency"": ""MXN""}",2297.6,Bronze,1 +9683,Steven Melendez,rsmith@castillo.com,2022-01-16,"{""language"": ""IT"", ""currency"": ""CAD""}",4702.99,Gold,0 +9684,Jennifer Pearson,eduardo50@eaton-simmons.com,2020-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",7255.78,Gold,0 +9685,Joan Munoz,wyattsara@elliott-garcia.com,2020-09-17,"{""language"": ""IT"", ""currency"": ""USD""}",6579.51,Bronze,0 +9686,Christine Campbell,iadkins@gmail.com,2020-07-03,"{""language"": ""ES"", ""currency"": ""EUR""}",576.8,Bronze,1 +9687,Bryan Barron,aaronellis@hotmail.com,2022-07-26,"{""language"": ""DE"", ""currency"": ""USD""}",82.77,Bronze,0 +9688,Gerald Daniels,jeffrey43@hotmail.com,2024-07-16,"{""language"": ""IT"", ""currency"": ""GBP""}",2640.78,Gold,1 +9689,Robert Flores,patricia43@yahoo.com,2024-06-04,"{""language"": ""FR"", ""currency"": ""EUR""}",2266.98,Silver,1 +9690,Rebecca Young,sandra64@hotmail.com,2021-07-18,"{""language"": ""EN"", ""currency"": ""USD""}",2006.07,Bronze,1 +9691,Donna Doyle,lozanochristian@gmail.com,2020-09-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5679.6,Gold,0 +9692,Jason Salinas,luke48@mcgee-jackson.com,2020-03-21,"{""language"": ""IT"", ""currency"": ""EUR""}",4379.25,Silver,1 +9693,Rachel Hernandez,sgilbert@brown.com,2020-08-21,"{""language"": ""IT"", ""currency"": ""EUR""}",2185.88,Gold,1 +9694,Andrea Hayes,scott19@hotmail.com,2021-02-06,"{""language"": ""EN"", ""currency"": ""EUR""}",5724.24,Silver,0 +9695,Toni Romero,halejerry@murphy.com,2022-05-11,"{""language"": ""ES"", ""currency"": ""CAD""}",9208.01,Gold,1 +9696,Emily Mendoza,klinechristopher@elliott.com,2022-01-27,"{""language"": ""ES"", ""currency"": ""CAD""}",2797.37,Bronze,0 +9697,April Avila,cavery@steele-trujillo.com,2021-05-13,"{""language"": ""DE"", ""currency"": ""MXN""}",6657.9,Silver,0 +9698,Dennis West,fryealicia@bond.biz,2020-09-28,"{""language"": ""DE"", ""currency"": ""USD""}",7784.99,Bronze,1 +9699,Andrew Duncan,maxwell57@green.com,2020-04-10,"{""language"": ""ES"", ""currency"": ""MXN""}",6696.93,Silver,1 +9700,Elizabeth Hart DVM,lstanley@hotmail.com,2022-05-05,"{""language"": ""IT"", ""currency"": ""MXN""}",8890.08,Silver,0 +9701,James Owens,sotobrandon@flowers-willis.com,2022-11-28,"{""language"": ""DE"", ""currency"": ""GBP""}",2117.27,Silver,0 +9702,Richard Mills,edward55@powell.org,2021-05-03,"{""language"": ""IT"", ""currency"": ""USD""}",6040.21,Gold,1 +9703,Craig Foley,john51@grimes.org,2023-02-23,"{""language"": ""FR"", ""currency"": ""USD""}",6693.36,Bronze,1 +9704,Ashley Martin,ryanburnett@smith-white.com,2020-11-20,"{""language"": ""ES"", ""currency"": ""EUR""}",5558.3,Silver,0 +9705,Elizabeth Hardy,jameshernandez@yahoo.com,2022-03-31,"{""language"": ""DE"", ""currency"": ""EUR""}",415.9,Silver,1 +9706,Joseph Ramirez,fmartin@beasley.com,2024-06-30,"{""language"": ""EN"", ""currency"": ""MXN""}",4798.45,Gold,0 +9707,Patricia Parsons,stanleytina@gmail.com,2024-12-08,"{""language"": ""IT"", ""currency"": ""EUR""}",728.11,Gold,0 +9708,Jennifer Walls,larsonmary@gordon.com,2022-08-27,"{""language"": ""FR"", ""currency"": ""EUR""}",8000.79,Silver,0 +9709,Lauren Lawson,fernandezsandra@hotmail.com,2022-01-08,"{""language"": ""EN"", ""currency"": ""USD""}",4635.11,Gold,1 +9710,Jessica Davis,lball@rivera.com,2024-08-08,"{""language"": ""ES"", ""currency"": ""MXN""}",116.88,Silver,0 +9711,Adam Cline,john41@solis.com,2021-01-23,"{""language"": ""DE"", ""currency"": ""EUR""}",761.23,Silver,0 +9712,Kevin Rios,dwall@gmail.com,2024-06-03,"{""language"": ""EN"", ""currency"": ""USD""}",7362.91,Bronze,0 +9713,Andrew Todd,vpatrick@gmail.com,2020-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",8760.12,Silver,0 +9714,Nicole Hansen,mathewseric@nichols.biz,2020-02-22,"{""language"": ""IT"", ""currency"": ""MXN""}",2907.62,Bronze,0 +9715,Donald Snyder,james51@lee.com,2024-01-14,"{""language"": ""ES"", ""currency"": ""GBP""}",7808.29,Silver,0 +9716,Michael Lee,bakernicole@martin.info,2021-01-26,"{""language"": ""DE"", ""currency"": ""GBP""}",8348.7,Gold,0 +9717,Seth Lopez,adavis@hotmail.com,2021-11-28,"{""language"": ""ES"", ""currency"": ""CAD""}",2489.98,Gold,1 +9718,Michelle Acosta,robert73@gmail.com,2020-04-20,"{""language"": ""FR"", ""currency"": ""CAD""}",3323.36,Bronze,1 +9719,Melissa Johnson,tammy37@hernandez-stephens.com,2022-03-27,"{""language"": ""EN"", ""currency"": ""USD""}",9597.64,Gold,1 +9720,Teresa Johnson,steve98@ward-spencer.net,2024-11-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6193.61,Gold,0 +9721,Steven Carlson,corey14@gmail.com,2020-06-19,"{""language"": ""ES"", ""currency"": ""USD""}",3848.79,Silver,1 +9722,Scott Liu,mbolton@mclean.net,2021-02-06,"{""language"": ""IT"", ""currency"": ""CAD""}",2960.5,Silver,1 +9723,Jessica Wiley,kimberly58@gmail.com,2024-03-31,"{""language"": ""EN"", ""currency"": ""GBP""}",9653.8,Bronze,0 +9724,Nancy Liu,joshuamedina@cox.com,2022-04-22,"{""language"": ""ES"", ""currency"": ""USD""}",1764.11,Silver,1 +9725,Tammy Gill,longdustin@gmail.com,2020-08-23,"{""language"": ""EN"", ""currency"": ""MXN""}",1760.49,Gold,1 +9726,Ryan Ruiz,zcoleman@gmail.com,2019-12-16,"{""language"": ""ES"", ""currency"": ""MXN""}",5710.13,Silver,0 +9727,Jason Johnson,samanthawilliams@johnson.com,2024-09-22,"{""language"": ""EN"", ""currency"": ""CAD""}",6803.72,Silver,1 +9728,Veronica Wilson,jason32@yahoo.com,2024-10-01,"{""language"": ""EN"", ""currency"": ""MXN""}",2567.68,Silver,1 +9729,Tracy Harrington,johnsonlisa@guerrero-williams.com,2020-08-28,"{""language"": ""IT"", ""currency"": ""USD""}",2367.45,Silver,0 +9730,Dr. Nathan Neal Jr.,devinwilson@anderson.net,2020-07-27,"{""language"": ""DE"", ""currency"": ""CAD""}",1269.31,Bronze,0 +9731,Elizabeth Lee,romerostephen@yahoo.com,2020-12-13,"{""language"": ""DE"", ""currency"": ""GBP""}",833.4,Silver,0 +9732,Ann Spencer,watsonnicole@yahoo.com,2023-08-07,"{""language"": ""FR"", ""currency"": ""GBP""}",8247.17,Gold,1 +9733,Kelly Mccall,hphillips@yahoo.com,2022-08-16,"{""language"": ""ES"", ""currency"": ""USD""}",1205.09,Bronze,0 +9734,Diana Harmon,baileymerritt@cardenas.net,2022-11-25,"{""language"": ""IT"", ""currency"": ""EUR""}",3446.88,Gold,0 +9735,Christine Clark,mullinssue@yahoo.com,2021-04-30,"{""language"": ""DE"", ""currency"": ""MXN""}",5549.81,Gold,0 +9736,Paul Taylor,rbrown@hotmail.com,2020-04-05,"{""language"": ""EN"", ""currency"": ""EUR""}",2109.85,Bronze,0 +9737,Douglas Carlson,erika63@hotmail.com,2022-08-24,"{""language"": ""IT"", ""currency"": ""MXN""}",9243.84,Bronze,1 +9738,Madeline English,ferrellmaria@gmail.com,2020-12-06,"{""language"": ""FR"", ""currency"": ""USD""}",8190.58,Gold,0 +9739,Larry Bridges,ihensley@williams-larson.com,2022-04-12,"{""language"": ""EN"", ""currency"": ""USD""}",8056.55,Silver,1 +9740,Amy Morales,pknox@gmail.com,2024-04-28,"{""language"": ""EN"", ""currency"": ""GBP""}",2038.09,Silver,0 +9741,Andrew Dunn,heatherfuentes@gmail.com,2021-11-10,"{""language"": ""DE"", ""currency"": ""GBP""}",6694.65,Silver,0 +9742,Jennifer Pitts,sandra70@yahoo.com,2021-12-07,"{""language"": ""ES"", ""currency"": ""USD""}",2351.99,Silver,0 +9743,David White,elizabeth85@yahoo.com,2023-09-10,"{""language"": ""FR"", ""currency"": ""GBP""}",4590.5,Bronze,1 +9744,Mike Figueroa DDS,youngdanny@ramos-holland.info,2021-02-26,"{""language"": ""ES"", ""currency"": ""CAD""}",2156.03,Gold,0 +9745,Barry Potts,sylvia67@gmail.com,2020-12-12,"{""language"": ""ES"", ""currency"": ""CAD""}",1610.7,Bronze,1 +9746,Tiffany Henderson,nguyenwilliam@yahoo.com,2022-02-02,"{""language"": ""IT"", ""currency"": ""GBP""}",6018.03,Gold,1 +9747,Lisa Reynolds,stevenlewis@perez.com,2021-11-16,"{""language"": ""FR"", ""currency"": ""EUR""}",5209.93,Silver,0 +9748,David Salinas,krivera@yahoo.com,2024-09-21,"{""language"": ""IT"", ""currency"": ""EUR""}",7147.28,Bronze,0 +9749,Gerald Ramos,zrivers@jackson.com,2024-04-28,"{""language"": ""FR"", ""currency"": ""USD""}",8526.64,Bronze,0 +9750,Hailey Ross,ibarraaustin@hotmail.com,2020-08-23,"{""language"": ""ES"", ""currency"": ""CAD""}",5826.59,Bronze,1 +9751,Chelsea Williams,sharonbaker@gmail.com,2024-07-12,"{""language"": ""DE"", ""currency"": ""CAD""}",2391.04,Silver,0 +9752,Elizabeth Brown,emorris@hopkins.com,2021-05-24,"{""language"": ""EN"", ""currency"": ""EUR""}",1634.5,Bronze,1 +9753,David Johnson,crossmichelle@gill-allen.com,2020-07-07,"{""language"": ""ES"", ""currency"": ""USD""}",1602.74,Gold,0 +9754,Jacob Crosby,brandonkane@cowan.com,2021-06-02,"{""language"": ""DE"", ""currency"": ""CAD""}",6543.35,Silver,0 +9755,Mark Warren,moniquebruce@gmail.com,2020-08-16,"{""language"": ""EN"", ""currency"": ""CAD""}",2508.6,Silver,1 +9756,Jessica Montgomery,evansmatthew@gmail.com,2023-04-20,"{""language"": ""ES"", ""currency"": ""USD""}",7391.21,Silver,1 +9757,Becky Gibson,rebekah94@smith.com,2020-06-21,"{""language"": ""DE"", ""currency"": ""USD""}",1722.77,Silver,0 +9758,Nancy Jones PhD,marycruz@gmail.com,2021-05-19,"{""language"": ""EN"", ""currency"": ""USD""}",6079.11,Gold,1 +9759,Kimberly Perry,hillcurtis@craig.net,2022-09-10,"{""language"": ""ES"", ""currency"": ""CAD""}",7958.53,Silver,1 +9760,Maria Sosa,moorejesse@gmail.com,2023-10-12,"{""language"": ""FR"", ""currency"": ""CAD""}",2881.38,Bronze,1 +9761,Micheal Chavez,bnewman@herring.info,2021-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",3177.06,Silver,1 +9762,Benjamin Miller,courtneyacosta@yahoo.com,2021-08-14,"{""language"": ""FR"", ""currency"": ""GBP""}",4584.53,Bronze,1 +9763,Breanna Wallace,fnorman@hotmail.com,2022-12-30,"{""language"": ""DE"", ""currency"": ""GBP""}",1481.99,Silver,0 +9764,Kristy Young,jonathanmckinney@edwards-mcclain.com,2021-09-14,"{""language"": ""ES"", ""currency"": ""EUR""}",2312.57,Gold,0 +9765,Pamela Huerta,robin59@bennett.com,2022-01-03,"{""language"": ""EN"", ""currency"": ""GBP""}",8078.35,Gold,1 +9766,Holly Miller,philipstevens@hotmail.com,2022-07-01,"{""language"": ""DE"", ""currency"": ""CAD""}",1993.53,Gold,0 +9767,Christopher Freeman,mjones@hernandez.com,2023-07-18,"{""language"": ""FR"", ""currency"": ""GBP""}",7647.83,Bronze,0 +9768,Justin Jones,grusso@jones-thomas.com,2023-07-26,"{""language"": ""EN"", ""currency"": ""CAD""}",2128.71,Silver,0 +9769,Joshua Roy,kevinmcdaniel@yahoo.com,2024-02-15,"{""language"": ""DE"", ""currency"": ""USD""}",5122.06,Gold,1 +9770,Cristina Branch,david42@gmail.com,2020-04-04,"{""language"": ""DE"", ""currency"": ""USD""}",7137.59,Bronze,0 +9771,Jessica Jones,opeterson@gmail.com,2022-07-18,"{""language"": ""FR"", ""currency"": ""USD""}",3913.99,Silver,0 +9772,Briana Watson,robinharmon@yahoo.com,2020-01-04,"{""language"": ""EN"", ""currency"": ""GBP""}",2643.46,Silver,0 +9773,Emma Smith,julie20@alvarado.com,2024-03-10,"{""language"": ""FR"", ""currency"": ""EUR""}",5481.12,Bronze,0 +9774,Jill Hart,jose68@curry.info,2024-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",1731.73,Gold,0 +9775,Karen Morris,melissagriffin@gmail.com,2024-03-14,"{""language"": ""IT"", ""currency"": ""CAD""}",1826.8,Silver,1 +9776,Eric Chavez,nharris@hansen.biz,2024-08-06,"{""language"": ""IT"", ""currency"": ""GBP""}",9968.2,Silver,0 +9777,Julie Campbell,judithbates@yahoo.com,2023-02-06,"{""language"": ""FR"", ""currency"": ""GBP""}",2665.07,Gold,0 +9778,Mrs. Wendy Drake MD,eric66@hotmail.com,2024-06-17,"{""language"": ""IT"", ""currency"": ""USD""}",1691.76,Gold,1 +9779,Mitchell Underwood,danielle70@hotmail.com,2023-01-11,"{""language"": ""DE"", ""currency"": ""MXN""}",5434.27,Bronze,0 +9780,Chris Bailey,jacobbradford@hotmail.com,2023-01-08,"{""language"": ""FR"", ""currency"": ""CAD""}",2833.78,Gold,0 +9781,David Rice,hodgelee@williams.com,2020-08-06,"{""language"": ""DE"", ""currency"": ""USD""}",2671.37,Bronze,1 +9782,Kimberly Mccullough,fhernandez@sherman-reynolds.com,2020-03-22,"{""language"": ""DE"", ""currency"": ""USD""}",7148.52,Gold,0 +9783,Taylor Adams,johngraham@hotmail.com,2021-12-28,"{""language"": ""DE"", ""currency"": ""GBP""}",8366.92,Gold,0 +9784,Jeffrey Haas,keith44@hotmail.com,2024-09-28,"{""language"": ""DE"", ""currency"": ""CAD""}",3965.45,Gold,0 +9785,Dawn Pruitt,ewaller@watts.com,2023-05-19,"{""language"": ""IT"", ""currency"": ""USD""}",3407.12,Gold,0 +9786,Maria Harrison,ryannelson@gmail.com,2024-09-12,"{""language"": ""EN"", ""currency"": ""MXN""}",6579.08,Gold,0 +9787,Maria Greene,craigjacobs@gmail.com,2023-01-10,"{""language"": ""DE"", ""currency"": ""EUR""}",7576.36,Gold,1 +9788,Chelsea Baldwin,davidnash@kelley.com,2022-11-14,"{""language"": ""EN"", ""currency"": ""CAD""}",5046.95,Bronze,1 +9789,David Richardson,bherrera@howard-payne.com,2020-08-16,"{""language"": ""DE"", ""currency"": ""USD""}",1867.4,Bronze,0 +9790,Michael Finley,terri24@hotmail.com,2022-12-08,"{""language"": ""ES"", ""currency"": ""USD""}",7214.35,Bronze,0 +9791,Eric Oliver,wjones@yahoo.com,2020-12-07,"{""language"": ""ES"", ""currency"": ""EUR""}",944.66,Silver,1 +9792,Angela Lamb,williamstimothy@yahoo.com,2023-07-10,"{""language"": ""EN"", ""currency"": ""USD""}",4940.74,Bronze,1 +9793,William Walter,jacob24@gmail.com,2024-03-11,"{""language"": ""ES"", ""currency"": ""CAD""}",8860.77,Bronze,1 +9794,Angela Jensen,thomas88@hotmail.com,2020-01-19,"{""language"": ""FR"", ""currency"": ""MXN""}",2149.37,Bronze,0 +9795,Donald Pollard,anthony78@yahoo.com,2020-09-21,"{""language"": ""IT"", ""currency"": ""EUR""}",9219.39,Silver,0 +9796,Drew Henderson,allenkaren@lopez.net,2020-09-04,"{""language"": ""DE"", ""currency"": ""GBP""}",9413.04,Silver,0 +9797,Edward Morgan,srice@ruiz.org,2020-04-11,"{""language"": ""IT"", ""currency"": ""MXN""}",4525.15,Gold,1 +9798,Kathryn Bryant,deborah65@flynn.org,2020-10-29,"{""language"": ""ES"", ""currency"": ""USD""}",1782.72,Gold,0 +9799,Amy Wang,alvarezsusan@livingston.biz,2024-12-06,"{""language"": ""ES"", ""currency"": ""GBP""}",2350.32,Bronze,0 +9800,Justin Frederick,jamiejones@hopkins.com,2021-04-21,"{""language"": ""ES"", ""currency"": ""EUR""}",3131.72,Gold,1 +9801,Anna Gay,hectoredwards@yahoo.com,2024-07-31,"{""language"": ""FR"", ""currency"": ""MXN""}",3179.66,Gold,0 +9802,Amy Freeman,karenpope@stokes.org,2022-11-10,"{""language"": ""ES"", ""currency"": ""USD""}",8585.14,Bronze,1 +9803,Sarah Hartman,dennis15@webb-frost.com,2022-11-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8677.07,Silver,0 +9804,Jessica Brown,kimberlymartinez@gonzalez.com,2021-05-06,"{""language"": ""FR"", ""currency"": ""USD""}",1202.25,Bronze,0 +9805,Andrew Hawkins,goodrobert@frazier.com,2022-09-29,"{""language"": ""FR"", ""currency"": ""CAD""}",8876.05,Gold,0 +9806,Brad Vargas,daughertyjason@mcknight.com,2021-08-14,"{""language"": ""IT"", ""currency"": ""MXN""}",9592.48,Bronze,0 +9807,Tyrone Smith,mkim@yahoo.com,2024-01-22,"{""language"": ""ES"", ""currency"": ""CAD""}",611.46,Bronze,0 +9808,Jacob Lawson,ylarsen@parrish-harris.net,2021-05-28,"{""language"": ""EN"", ""currency"": ""GBP""}",8679.24,Gold,0 +9809,Michael Anderson,lindaharris@williams.info,2021-06-05,"{""language"": ""IT"", ""currency"": ""USD""}",7801.04,Silver,1 +9810,Sarah White DDS,ebrown@yahoo.com,2024-07-08,"{""language"": ""FR"", ""currency"": ""GBP""}",9244.16,Gold,1 +9811,Melissa Walters,natalie03@davis.biz,2020-12-12,"{""language"": ""DE"", ""currency"": ""GBP""}",7415.96,Gold,0 +9812,Alexander Griffith,alec71@peterson-henry.biz,2024-07-29,"{""language"": ""FR"", ""currency"": ""CAD""}",1042.77,Bronze,1 +9813,Thomas Houston,christianwilliams@kelly.com,2022-02-18,"{""language"": ""EN"", ""currency"": ""EUR""}",5051.71,Bronze,1 +9814,Mary Hale,rkelly@price-williams.com,2023-11-12,"{""language"": ""FR"", ""currency"": ""GBP""}",350.9,Silver,1 +9815,Lee Ryan,ereyes@gmail.com,2021-10-18,"{""language"": ""IT"", ""currency"": ""GBP""}",5565.08,Silver,1 +9816,Stacy Jones,ysmith@gmail.com,2021-10-05,"{""language"": ""ES"", ""currency"": ""MXN""}",7869.87,Bronze,0 +9817,Kelsey Alvarez,ronaldrasmussen@gmail.com,2023-07-05,"{""language"": ""FR"", ""currency"": ""CAD""}",6625.7,Silver,0 +9818,Norma Cannon,goodwinpaul@gomez-ramirez.com,2019-12-25,"{""language"": ""EN"", ""currency"": ""CAD""}",6597.42,Bronze,1 +9819,Ronnie Gomez,joseparsons@acevedo.com,2020-01-03,"{""language"": ""FR"", ""currency"": ""MXN""}",1210.41,Silver,0 +9820,Rebecca Taylor,dianebaker@hotmail.com,2022-04-08,"{""language"": ""FR"", ""currency"": ""MXN""}",7272.91,Gold,0 +9821,Julie Garcia,courtney22@williams-valencia.com,2024-05-23,"{""language"": ""FR"", ""currency"": ""GBP""}",1211.15,Bronze,0 +9822,Colin Steele,boyletammy@rice-myers.com,2024-11-09,"{""language"": ""IT"", ""currency"": ""USD""}",9987.93,Bronze,0 +9823,Anthony Friedman,rlewis@espinoza-collins.com,2024-04-25,"{""language"": ""FR"", ""currency"": ""USD""}",6439.94,Gold,1 +9824,Nicholas Walker,nacosta@hotmail.com,2021-05-27,"{""language"": ""DE"", ""currency"": ""GBP""}",4123.68,Gold,1 +9825,Alexander Leach,hicksjose@parrish.net,2022-02-24,"{""language"": ""IT"", ""currency"": ""GBP""}",8785.97,Gold,1 +9826,Joanne Park,davidryan@yahoo.com,2022-11-13,"{""language"": ""DE"", ""currency"": ""MXN""}",8697.35,Silver,0 +9827,Cathy Robinson,madeline31@hotmail.com,2020-07-09,"{""language"": ""EN"", ""currency"": ""USD""}",9687.15,Gold,1 +9828,Brandy Blackburn,raymondelliott@sharp.info,2024-11-12,"{""language"": ""FR"", ""currency"": ""EUR""}",779.08,Silver,0 +9829,Christina Pham,keithwilliams@tran-adams.org,2024-10-01,"{""language"": ""EN"", ""currency"": ""USD""}",5011.62,Bronze,1 +9830,Amy Ellis,allisonsullivan@hotmail.com,2023-03-19,"{""language"": ""IT"", ""currency"": ""CAD""}",302.06,Bronze,1 +9831,Lori Soto,yatesdavid@ali-herrera.org,2020-05-06,"{""language"": ""DE"", ""currency"": ""CAD""}",907.98,Bronze,1 +9832,Joshua Huff,gmcpherson@gmail.com,2024-04-27,"{""language"": ""IT"", ""currency"": ""EUR""}",3266.31,Gold,0 +9833,Ashley Mullins,david30@bennett-ramirez.com,2023-12-06,"{""language"": ""ES"", ""currency"": ""USD""}",3978.44,Bronze,1 +9834,Anthony Hill,emilyhenderson@hotmail.com,2024-01-26,"{""language"": ""DE"", ""currency"": ""CAD""}",3339.04,Bronze,0 +9835,Austin Bonilla,wolfjoseph@hotmail.com,2023-12-17,"{""language"": ""IT"", ""currency"": ""MXN""}",2399.15,Silver,1 +9836,Miranda Miller,lclark@hall-hawkins.org,2020-02-21,"{""language"": ""EN"", ""currency"": ""GBP""}",5981.81,Silver,1 +9837,Robert Compton,nicole46@kirk-arnold.com,2024-06-28,"{""language"": ""DE"", ""currency"": ""EUR""}",6525.65,Silver,0 +9838,Christopher Castro,phillipsdanny@hotmail.com,2024-11-09,"{""language"": ""ES"", ""currency"": ""EUR""}",406.31,Silver,1 +9839,Nancy Jackson,frank80@roth.com,2021-04-14,"{""language"": ""FR"", ""currency"": ""USD""}",8723.0,Bronze,0 +9840,Joseph Scott,stricklanderic@rasmussen.com,2022-09-13,"{""language"": ""FR"", ""currency"": ""EUR""}",6381.32,Bronze,0 +9841,Thomas Chandler Jr.,theodorerichardson@hotmail.com,2024-05-12,"{""language"": ""IT"", ""currency"": ""MXN""}",7321.78,Silver,0 +9842,James Sanders,clopez@hotmail.com,2021-06-23,"{""language"": ""IT"", ""currency"": ""MXN""}",1741.26,Silver,0 +9843,Ashley Lopez,molly97@hotmail.com,2022-01-11,"{""language"": ""IT"", ""currency"": ""CAD""}",9115.19,Silver,1 +9844,Catherine Phillips,mooresherry@taylor.com,2024-03-01,"{""language"": ""IT"", ""currency"": ""EUR""}",4903.44,Gold,1 +9845,Gregory Jones,robert47@evans-miller.com,2020-11-28,"{""language"": ""DE"", ""currency"": ""EUR""}",528.46,Silver,0 +9846,Fred Morrison,johnsmith@powell.com,2022-10-29,"{""language"": ""IT"", ""currency"": ""CAD""}",3581.42,Silver,1 +9847,Amy Williams,robertsimon@gmail.com,2021-01-02,"{""language"": ""ES"", ""currency"": ""MXN""}",6594.44,Gold,0 +9848,Maria Valdez,gramirez@gomez-dunn.net,2021-08-25,"{""language"": ""ES"", ""currency"": ""GBP""}",4765.17,Silver,1 +9849,Gabriella Oneal,davidcook@dixon.com,2023-10-19,"{""language"": ""FR"", ""currency"": ""GBP""}",9871.36,Gold,1 +9850,Tina Gordon,davidfisher@yahoo.com,2023-06-12,"{""language"": ""EN"", ""currency"": ""MXN""}",7074.95,Bronze,0 +9851,Crystal Watson,robertallison@thornton-stephens.net,2020-01-14,"{""language"": ""ES"", ""currency"": ""USD""}",8155.42,Gold,1 +9852,Victoria Walton,jrodriguez@scott-myers.com,2023-12-17,"{""language"": ""DE"", ""currency"": ""MXN""}",7313.04,Silver,0 +9853,Jessica Sawyer,mforbes@yahoo.com,2022-09-19,"{""language"": ""EN"", ""currency"": ""GBP""}",704.36,Bronze,0 +9854,Terri Mcbride,kward@moss.net,2021-02-28,"{""language"": ""DE"", ""currency"": ""MXN""}",5518.74,Gold,0 +9855,Jason Gonzalez,gabrielkemp@walker-moyer.com,2021-05-25,"{""language"": ""DE"", ""currency"": ""MXN""}",7640.01,Silver,0 +9856,Bryan Rogers,evanssharon@gmail.com,2021-05-22,"{""language"": ""DE"", ""currency"": ""MXN""}",8417.8,Bronze,1 +9857,Tiffany Lloyd,alvaradorebecca@hotmail.com,2020-11-02,"{""language"": ""FR"", ""currency"": ""GBP""}",6915.09,Bronze,0 +9858,Sandra Cardenas,wmercado@gmail.com,2020-06-08,"{""language"": ""IT"", ""currency"": ""MXN""}",8786.15,Gold,1 +9859,James Roberts,andrewkelly@marks-martinez.com,2021-02-11,"{""language"": ""FR"", ""currency"": ""CAD""}",6160.77,Silver,1 +9860,Samantha Curry,vickicolon@shields.com,2021-02-18,"{""language"": ""FR"", ""currency"": ""USD""}",2269.35,Bronze,1 +9861,Natalie Wright,tjenkins@ball.biz,2024-12-03,"{""language"": ""FR"", ""currency"": ""USD""}",5754.38,Gold,1 +9862,Shelly Young,james16@hotmail.com,2021-07-13,"{""language"": ""ES"", ""currency"": ""USD""}",6926.81,Silver,0 +9863,Rebecca Banks,russobrandon@yahoo.com,2021-05-03,"{""language"": ""IT"", ""currency"": ""GBP""}",220.42,Bronze,0 +9864,Erika Levine,garzadarin@gmail.com,2020-09-03,"{""language"": ""EN"", ""currency"": ""USD""}",821.11,Bronze,0 +9865,Philip Johnson,fmills@gmail.com,2024-05-08,"{""language"": ""DE"", ""currency"": ""USD""}",8506.19,Silver,1 +9866,Alejandra Butler,jonessheila@hotmail.com,2022-12-07,"{""language"": ""FR"", ""currency"": ""MXN""}",5794.88,Gold,0 +9867,Erik Castillo,amber97@hotmail.com,2020-09-05,"{""language"": ""IT"", ""currency"": ""EUR""}",8717.99,Silver,1 +9868,Philip Hale,lmontgomery@valenzuela.com,2024-07-10,"{""language"": ""FR"", ""currency"": ""CAD""}",7640.4,Silver,0 +9869,Anthony Alexander,vjefferson@hotmail.com,2024-08-20,"{""language"": ""DE"", ""currency"": ""USD""}",4148.3,Bronze,0 +9870,Richard Smith,millermonica@winters-pitts.net,2023-12-31,"{""language"": ""FR"", ""currency"": ""GBP""}",5927.35,Silver,0 +9871,Tiffany Quinn,jasonwilliams@gmail.com,2023-09-10,"{""language"": ""EN"", ""currency"": ""USD""}",7698.13,Bronze,0 +9872,Kyle Reed,caitlyn60@yahoo.com,2024-02-09,"{""language"": ""IT"", ""currency"": ""USD""}",3234.63,Silver,0 +9873,Shaun Munoz,oscar06@garza.com,2024-08-27,"{""language"": ""DE"", ""currency"": ""USD""}",7686.42,Gold,1 +9874,Raymond Parker,barbara16@gmail.com,2021-01-09,"{""language"": ""DE"", ""currency"": ""GBP""}",5962.62,Silver,0 +9875,Michael Tucker,susan77@lewis-rogers.com,2024-06-09,"{""language"": ""FR"", ""currency"": ""EUR""}",6376.8,Silver,1 +9876,Raymond Nolan,stanley64@gmail.com,2020-07-21,"{""language"": ""EN"", ""currency"": ""GBP""}",5067.13,Bronze,1 +9877,Jeremy Hernandez,fpatterson@hotmail.com,2023-10-05,"{""language"": ""DE"", ""currency"": ""CAD""}",9254.6,Gold,1 +9878,Jaime Vazquez,rrodriguez@schneider.com,2021-08-19,"{""language"": ""EN"", ""currency"": ""EUR""}",6029.98,Gold,1 +9879,James Avila,zachary50@hotmail.com,2020-03-17,"{""language"": ""EN"", ""currency"": ""GBP""}",7450.81,Gold,1 +9880,Karen Hicks,nwest@edwards.com,2020-04-03,"{""language"": ""ES"", ""currency"": ""USD""}",5430.41,Gold,0 +9881,Tanya Morrison,abaker@gmail.com,2023-04-29,"{""language"": ""EN"", ""currency"": ""MXN""}",3378.58,Gold,1 +9882,Mrs. Monica Martin,norriskyle@brown.org,2024-01-09,"{""language"": ""ES"", ""currency"": ""GBP""}",7549.33,Gold,1 +9883,Mary Armstrong,jessicawhite@yahoo.com,2022-09-11,"{""language"": ""FR"", ""currency"": ""MXN""}",7812.09,Gold,0 +9884,Mario Green Jr.,michaelaortiz@yahoo.com,2022-01-18,"{""language"": ""DE"", ""currency"": ""EUR""}",4983.01,Gold,0 +9885,Nicholas Collins,shawnamueller@hoffman.com,2023-06-11,"{""language"": ""DE"", ""currency"": ""MXN""}",2353.68,Bronze,0 +9886,Douglas Douglas,carterbrandon@hotmail.com,2023-01-27,"{""language"": ""IT"", ""currency"": ""EUR""}",7792.9,Silver,1 +9887,Willie Ewing,andersonmatthew@lee.com,2023-05-19,"{""language"": ""IT"", ""currency"": ""EUR""}",9976.54,Silver,1 +9888,Stacy Espinoza MD,shawn32@ramos-hurst.info,2022-02-15,"{""language"": ""FR"", ""currency"": ""MXN""}",6785.58,Silver,0 +9889,Brandon Meyer,victoriareynolds@hotmail.com,2021-01-17,"{""language"": ""DE"", ""currency"": ""CAD""}",2801.93,Gold,1 +9890,Nancy Murphy,rodriguezkathleen@weber-palmer.org,2024-06-12,"{""language"": ""DE"", ""currency"": ""GBP""}",4728.86,Silver,0 +9891,Douglas Franco,trussell@reynolds.com,2020-05-13,"{""language"": ""IT"", ""currency"": ""EUR""}",9022.66,Gold,0 +9892,Lisa Giles,kpearson@gmail.com,2024-03-22,"{""language"": ""IT"", ""currency"": ""MXN""}",7067.94,Gold,1 +9893,Kathryn Woods,stephaniehopkins@yahoo.com,2023-05-16,"{""language"": ""IT"", ""currency"": ""EUR""}",3839.79,Gold,0 +9894,Mary Downs,rrichardson@watson.biz,2021-04-19,"{""language"": ""IT"", ""currency"": ""GBP""}",1900.09,Silver,1 +9895,Kimberly Curry,barbara37@yahoo.com,2024-01-20,"{""language"": ""FR"", ""currency"": ""MXN""}",254.44,Silver,1 +9896,Michael Preston,robertsjohn@martin.com,2023-12-20,"{""language"": ""ES"", ""currency"": ""EUR""}",802.87,Gold,1 +9897,Jeffrey Flores,michael28@gmail.com,2022-08-17,"{""language"": ""ES"", ""currency"": ""EUR""}",6472.2,Silver,0 +9898,Paula Martin,qmiller@gray.net,2021-10-14,"{""language"": ""EN"", ""currency"": ""USD""}",9811.57,Bronze,0 +9899,Michael Rodriguez,zhenderson@gmail.com,2023-09-23,"{""language"": ""DE"", ""currency"": ""MXN""}",2092.21,Silver,1 +9900,John Newton,brianna82@carter.com,2022-08-20,"{""language"": ""ES"", ""currency"": ""GBP""}",3050.17,Silver,1 +9901,James Martinez,jennifer31@hotmail.com,2021-11-10,"{""language"": ""DE"", ""currency"": ""USD""}",7412.43,Silver,1 +9902,Katherine Mueller,gordonsmith@yahoo.com,2020-08-31,"{""language"": ""IT"", ""currency"": ""CAD""}",6865.99,Silver,1 +9903,Kimberly Hughes,jessicashaw@young.com,2020-09-18,"{""language"": ""DE"", ""currency"": ""GBP""}",6441.42,Gold,1 +9904,Albert Moore,virginia17@rios-jones.com,2020-01-03,"{""language"": ""IT"", ""currency"": ""CAD""}",7538.67,Bronze,1 +9905,Scott Clark,jonesangela@hotmail.com,2023-09-13,"{""language"": ""EN"", ""currency"": ""MXN""}",7925.24,Silver,0 +9906,Seth Harrington,pmosley@gmail.com,2024-05-11,"{""language"": ""DE"", ""currency"": ""MXN""}",9645.61,Bronze,0 +9907,Katrina Johnson,vellis@tanner-mason.org,2024-06-02,"{""language"": ""EN"", ""currency"": ""MXN""}",8356.73,Silver,1 +9908,Joseph Lopez,rstrickland@gmail.com,2023-08-15,"{""language"": ""FR"", ""currency"": ""CAD""}",6839.17,Gold,1 +9909,Lori Morton,george32@thomas.com,2021-01-21,"{""language"": ""IT"", ""currency"": ""MXN""}",5668.31,Bronze,1 +9910,Kevin Neal,griffinbarry@hotmail.com,2022-04-17,"{""language"": ""EN"", ""currency"": ""MXN""}",5554.93,Silver,1 +9911,Dan Serrano,hmathis@hotmail.com,2021-11-04,"{""language"": ""DE"", ""currency"": ""CAD""}",2752.57,Bronze,0 +9912,Judith Lee,jlynn@stewart.org,2021-03-08,"{""language"": ""FR"", ""currency"": ""GBP""}",7901.72,Bronze,1 +9913,Sara Johnson,amanda67@gmail.com,2023-11-12,"{""language"": ""ES"", ""currency"": ""MXN""}",4827.52,Silver,1 +9914,Renee Lewis,chamberskaren@gmail.com,2024-11-29,"{""language"": ""IT"", ""currency"": ""MXN""}",1765.09,Silver,0 +9915,Cynthia Camacho,hallanthony@smith.com,2023-05-14,"{""language"": ""IT"", ""currency"": ""USD""}",5098.37,Silver,0 +9916,James Long,mcarey@moreno-hudson.com,2020-12-29,"{""language"": ""IT"", ""currency"": ""MXN""}",7970.75,Silver,1 +9917,Amanda May,wisejacob@yahoo.com,2023-01-09,"{""language"": ""DE"", ""currency"": ""EUR""}",8380.15,Silver,1 +9918,Bryan Cruz,james13@hutchinson.com,2023-06-22,"{""language"": ""IT"", ""currency"": ""CAD""}",2730.54,Bronze,0 +9919,Jason Townsend,psantiago@hotmail.com,2022-02-10,"{""language"": ""FR"", ""currency"": ""GBP""}",7525.47,Silver,1 +9920,Brad Gutierrez,mramirez@hotmail.com,2021-09-27,"{""language"": ""FR"", ""currency"": ""MXN""}",5934.44,Gold,0 +9921,Shannon Knight,sarahbrown@day-sanchez.com,2022-03-10,"{""language"": ""DE"", ""currency"": ""GBP""}",156.26,Bronze,0 +9922,Tonya Bauer,rhernandez@francis-kelly.biz,2021-08-12,"{""language"": ""ES"", ""currency"": ""GBP""}",6055.86,Silver,1 +9923,Matthew Carlson,gina50@roberts-bailey.com,2022-05-17,"{""language"": ""ES"", ""currency"": ""USD""}",1163.42,Bronze,0 +9924,Angela Ross,jasoncline@le.info,2023-05-04,"{""language"": ""DE"", ""currency"": ""CAD""}",8699.57,Bronze,1 +9925,Mrs. Lisa Johnson,brownmark@yahoo.com,2023-11-25,"{""language"": ""EN"", ""currency"": ""USD""}",7233.11,Bronze,0 +9926,Justin Smith,john71@gill.com,2024-06-13,"{""language"": ""EN"", ""currency"": ""USD""}",1561.51,Bronze,0 +9927,Eric Andrews,john32@yahoo.com,2022-10-25,"{""language"": ""FR"", ""currency"": ""MXN""}",5746.25,Silver,0 +9928,Nancy Chandler,uburton@yahoo.com,2020-09-26,"{""language"": ""ES"", ""currency"": ""USD""}",4970.15,Silver,0 +9929,Dustin Johnson,markolson@gmail.com,2023-01-26,"{""language"": ""EN"", ""currency"": ""CAD""}",8384.38,Bronze,1 +9930,Cameron Baxter,millerdwayne@black.com,2024-09-29,"{""language"": ""EN"", ""currency"": ""MXN""}",7490.35,Silver,0 +9931,Steven Haney,boydkimberly@mitchell-thomas.com,2020-09-26,"{""language"": ""DE"", ""currency"": ""EUR""}",247.28,Gold,1 +9932,Kayla Hanson,fgardner@chan.com,2024-08-25,"{""language"": ""DE"", ""currency"": ""GBP""}",1736.23,Silver,1 +9933,Ashley Hall,amberblack@gmail.com,2021-07-07,"{""language"": ""IT"", ""currency"": ""GBP""}",2443.91,Bronze,0 +9934,Ronald Marquez,joan47@vance-curtis.com,2021-09-17,"{""language"": ""ES"", ""currency"": ""CAD""}",6378.78,Gold,1 +9935,James Manning,bsmith@martin.info,2023-02-24,"{""language"": ""IT"", ""currency"": ""MXN""}",8675.16,Silver,0 +9936,Brian Phillips,xwillis@yahoo.com,2022-10-30,"{""language"": ""EN"", ""currency"": ""CAD""}",7918.79,Bronze,1 +9937,Adam Lin MD,huberchristie@hotmail.com,2024-06-24,"{""language"": ""FR"", ""currency"": ""GBP""}",8680.84,Silver,1 +9938,Joseph Gonzalez,andrewcollins@davis.com,2021-09-28,"{""language"": ""FR"", ""currency"": ""EUR""}",1097.54,Bronze,1 +9939,Troy Jones,patrick73@murphy.com,2024-06-12,"{""language"": ""IT"", ""currency"": ""MXN""}",8302.42,Silver,0 +9940,Richard Watson,cindy02@hotmail.com,2020-07-29,"{""language"": ""IT"", ""currency"": ""MXN""}",8689.38,Bronze,0 +9941,Chelsea Foster,miranda28@yahoo.com,2023-01-30,"{""language"": ""FR"", ""currency"": ""USD""}",7115.33,Gold,1 +9942,Angela Johnson,psullivan@hotmail.com,2023-03-03,"{""language"": ""DE"", ""currency"": ""USD""}",912.95,Bronze,1 +9943,David Bruce,frenchdawn@king-horton.com,2024-07-31,"{""language"": ""IT"", ""currency"": ""CAD""}",8344.47,Gold,0 +9944,Sarah Kemp,smithisaiah@yahoo.com,2021-03-15,"{""language"": ""IT"", ""currency"": ""CAD""}",5986.95,Silver,1 +9945,Heather Gonzalez,wattsdouglas@yahoo.com,2023-04-27,"{""language"": ""ES"", ""currency"": ""GBP""}",8045.18,Bronze,0 +9946,Stephanie Allen,mhernandez@norton-perez.org,2022-06-07,"{""language"": ""ES"", ""currency"": ""CAD""}",7307.54,Silver,1 +9947,Regina Wolf,jenniferwilliams@gmail.com,2024-01-16,"{""language"": ""EN"", ""currency"": ""EUR""}",4995.53,Silver,0 +9948,Dana Randolph,zchang@phelps-lewis.info,2020-02-21,"{""language"": ""EN"", ""currency"": ""USD""}",4740.29,Gold,1 +9949,Juan Bennett,melvinjohnson@wu.com,2023-07-23,"{""language"": ""EN"", ""currency"": ""USD""}",5885.01,Silver,1 +9950,Lindsey Richards,burtonchristina@hotmail.com,2023-01-22,"{""language"": ""EN"", ""currency"": ""CAD""}",3796.32,Gold,0 +9951,Brian Davis,andrewstroy@gmail.com,2023-11-09,"{""language"": ""EN"", ""currency"": ""CAD""}",667.13,Silver,0 +9952,Kari Lynn,bradleyday@yahoo.com,2023-05-01,"{""language"": ""DE"", ""currency"": ""GBP""}",305.33,Gold,1 +9953,Sandra Hoover,deborahwilliams@thompson-smith.org,2022-08-29,"{""language"": ""IT"", ""currency"": ""USD""}",852.7,Silver,1 +9954,Jeffrey Turner,vcopeland@yahoo.com,2020-08-13,"{""language"": ""IT"", ""currency"": ""CAD""}",950.81,Bronze,1 +9955,Julie Smith,kingbethany@hotmail.com,2020-05-17,"{""language"": ""IT"", ""currency"": ""GBP""}",2530.1,Bronze,1 +9956,Jennifer Davenport,burtondaniel@meyer.org,2023-02-06,"{""language"": ""IT"", ""currency"": ""EUR""}",2913.77,Gold,1 +9957,Robert Wright,henrylee@gmail.com,2020-04-02,"{""language"": ""ES"", ""currency"": ""GBP""}",6995.67,Gold,1 +9958,Marcus Williams,proctorjohn@cochran.org,2023-06-24,"{""language"": ""IT"", ""currency"": ""EUR""}",9681.42,Bronze,0 +9959,Leslie Ray,dwayne30@gmail.com,2023-01-31,"{""language"": ""IT"", ""currency"": ""GBP""}",389.78,Silver,0 +9960,Jennifer Morris,torreslaura@ochoa.net,2024-10-07,"{""language"": ""DE"", ""currency"": ""EUR""}",5458.84,Gold,1 +9961,Andrea Nichols,boydamanda@gmail.com,2024-09-09,"{""language"": ""IT"", ""currency"": ""GBP""}",1372.94,Silver,0 +9962,Ronald Hawkins,glenn56@hotmail.com,2024-03-11,"{""language"": ""EN"", ""currency"": ""MXN""}",7271.52,Bronze,1 +9963,Margaret Jackson,austindurham@griffin-phelps.net,2021-02-01,"{""language"": ""EN"", ""currency"": ""MXN""}",2123.07,Silver,0 +9964,Stephen Reed Jr.,joneslisa@mitchell.info,2023-06-06,"{""language"": ""FR"", ""currency"": ""GBP""}",8215.81,Gold,1 +9965,Thomas Faulkner,icampbell@padilla-carter.com,2021-07-04,"{""language"": ""IT"", ""currency"": ""CAD""}",926.74,Gold,0 +9966,Scott Hill,harveykirk@hall.com,2021-10-16,"{""language"": ""FR"", ""currency"": ""MXN""}",4677.47,Gold,1 +9967,Anthony Joyce,nicholsmargaret@humphrey.com,2024-08-22,"{""language"": ""ES"", ""currency"": ""CAD""}",7714.76,Bronze,0 +9968,Raymond Goodman,maryhickman@gmail.com,2020-08-07,"{""language"": ""ES"", ""currency"": ""EUR""}",7005.73,Gold,1 +9969,Sabrina Rogers,thomashannah@herrera-hill.net,2021-04-06,"{""language"": ""IT"", ""currency"": ""CAD""}",5133.7,Silver,1 +9970,Christopher Young,laurenritter@owens.com,2022-09-10,"{""language"": ""FR"", ""currency"": ""USD""}",6361.79,Gold,1 +9971,Jason Jones,halllinda@gmail.com,2020-12-01,"{""language"": ""DE"", ""currency"": ""CAD""}",8676.84,Gold,1 +9972,Gregory Walsh,nicole39@gmail.com,2023-11-23,"{""language"": ""EN"", ""currency"": ""GBP""}",1252.89,Gold,0 +9973,Larry Miller,lthomas@hotmail.com,2022-10-10,"{""language"": ""ES"", ""currency"": ""EUR""}",345.42,Silver,1 +9974,David Chambers,andreakhan@warren-kennedy.com,2023-03-04,"{""language"": ""FR"", ""currency"": ""USD""}",2570.63,Silver,1 +9975,James Guerrero,carolinesalinas@yahoo.com,2021-12-29,"{""language"": ""ES"", ""currency"": ""USD""}",2318.32,Silver,1 +9976,Claire Miller,pgray@simpson-nelson.com,2022-09-10,"{""language"": ""IT"", ""currency"": ""MXN""}",4474.33,Gold,1 +9977,Timothy Gates,brianna42@moyer.info,2022-07-27,"{""language"": ""EN"", ""currency"": ""USD""}",4515.18,Gold,1 +9978,Christine King,floresjoshua@hotmail.com,2020-10-13,"{""language"": ""DE"", ""currency"": ""EUR""}",8712.78,Silver,1 +9979,Laura Abbott,paulmullins@yahoo.com,2022-01-26,"{""language"": ""DE"", ""currency"": ""MXN""}",1496.65,Silver,1 +9980,Jennifer Christensen,catherine41@monroe.info,2022-07-08,"{""language"": ""IT"", ""currency"": ""USD""}",7156.67,Bronze,1 +9981,David Smith,jfernandez@yahoo.com,2023-08-17,"{""language"": ""FR"", ""currency"": ""USD""}",8896.22,Gold,1 +9982,Elizabeth Reid,lwilliams@nunez-moore.net,2021-08-21,"{""language"": ""FR"", ""currency"": ""GBP""}",4456.48,Bronze,1 +9983,Adrian Richmond,danielleortega@hotmail.com,2020-08-19,"{""language"": ""FR"", ""currency"": ""GBP""}",322.51,Gold,1 +9984,Allen Martin,richard72@gmail.com,2020-03-08,"{""language"": ""IT"", ""currency"": ""GBP""}",9946.19,Bronze,1 +9985,Joseph Vance,cynthiathomas@yahoo.com,2020-01-30,"{""language"": ""ES"", ""currency"": ""CAD""}",9140.68,Bronze,0 +9986,Alexandra Kelly,fgarcia@ramsey.org,2021-11-24,"{""language"": ""EN"", ""currency"": ""GBP""}",6893.79,Silver,0 +9987,Deanna Weaver,chloe66@rodriguez.net,2020-11-21,"{""language"": ""FR"", ""currency"": ""CAD""}",3798.58,Gold,0 +9988,Krista Thomas,mramirez@gmail.com,2024-01-04,"{""language"": ""IT"", ""currency"": ""CAD""}",8765.15,Silver,1 +9989,Shawn Jacobs,otrevino@torres-padilla.com,2021-10-24,"{""language"": ""FR"", ""currency"": ""EUR""}",6446.27,Silver,0 +9990,Mrs. Michelle Lopez,yescobar@gmail.com,2024-10-07,"{""language"": ""IT"", ""currency"": ""USD""}",9658.73,Silver,0 +9991,Ricardo Johnson,kristinwaters@yahoo.com,2020-10-19,"{""language"": ""ES"", ""currency"": ""EUR""}",2588.15,Silver,1 +9992,Thomas Gibson,terri98@hotmail.com,2019-12-19,"{""language"": ""EN"", ""currency"": ""GBP""}",5579.17,Bronze,1 +9993,Sean Baker,medinadanielle@curtis.info,2023-07-04,"{""language"": ""FR"", ""currency"": ""GBP""}",2385.23,Bronze,1 +9994,Jennifer Harris,zroberts@yahoo.com,2021-05-02,"{""language"": ""ES"", ""currency"": ""MXN""}",206.78,Gold,1 +9995,Angie Casey,nicholslynn@allen-houston.net,2023-02-12,"{""language"": ""ES"", ""currency"": ""GBP""}",7818.21,Gold,1 +9996,Wesley Johnson,reginaclark@yahoo.com,2021-06-03,"{""language"": ""IT"", ""currency"": ""EUR""}",4896.95,Gold,1 +9997,Dustin Herrera,tvilla@hotmail.com,2024-04-15,"{""language"": ""FR"", ""currency"": ""MXN""}",9792.41,Gold,0 +9998,Stacy Rogers,martinezmeghan@martinez-huerta.net,2020-06-08,"{""language"": ""IT"", ""currency"": ""EUR""}",8189.67,Gold,0 +9999,Felicia Miles,harrisashley@diaz.com,2021-11-07,"{""language"": ""EN"", ""currency"": ""USD""}",2787.15,Silver,1 +10000,Mark Davidson,william38@rogers-may.com,2021-02-21,"{""language"": ""IT"", ""currency"": ""MXN""}",2798.88,Gold,0 diff --git a/web-local/tests/data/sales_data_mysql.csv b/web-local/tests/data/sales_data_mysql.csv new file mode 100644 index 00000000000..903cee5a976 --- /dev/null +++ b/web-local/tests/data/sales_data_mysql.csv @@ -0,0 +1,100001 @@ +sale_date,sale_id,customer_id,products,sales_amount_usd,discounts,duration_ms,is_online,region +2024-10-28,1,7486,"[""Monitor"", ""Keyboard""]",3719.88,"{"""": ""24%""}",161209,0,South America +2024-12-10,2,9573,"[""Keyboard""]",786.99,"{""loyalty"": ""7%""}",74657,1,South America +2023-03-24,3,1318,"[""Monitor"", ""Charger""]",2179.1,"{""loyalty"": ""19%""}",32637,0,North America +2024-03-09,4,7954,"[""Headphones"", ""Monitor"", ""Tablet""]",1903.31,"{""loyalty"": ""29%""}",277032,0,North America +2024-07-09,5,7929,"[""Wireless Mouse""]",4682.48,"{""promo"": ""21%""}",178899,0,Africa +2024-06-03,6,6147,"[""Laptop"", ""Keyboard"", ""Headphones""]",3515.28,"{"""": ""18%""}",251168,1,North America +2023-08-03,7,5196,"[""Laptop"", ""Charger""]",3387.63,"{"""": ""24%""}",58977,0,Africa +2023-06-30,8,4913,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4067.66,{},151242,1,South America +2023-01-25,9,182,"[""Charger"", ""Tablet"", ""Phone""]",4691.06,{},291810,1,South America +2024-08-01,10,2905,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1441.15,"{"""": ""6%""}",245375,1,Europe +2024-03-30,11,666,"[""Keyboard""]",2535.04,{},168093,0,Africa +2023-03-20,12,6803,"[""Monitor"", ""Laptop"", ""Keyboard""]",2976.03,"{""loyalty"": ""30%""}",42953,0,South America +2024-10-31,13,6541,"[""Headphones"", ""Keyboard""]",1222.26,{},263945,1,South America +2024-08-03,14,1377,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2236.61,"{"""": ""26%""}",254296,0,Asia +2024-05-22,15,2558,"[""Tablet"", ""Monitor"", ""Phone""]",2917.96,{},227952,0,Asia +2024-08-13,16,5511,"[""Monitor"", ""Wireless Mouse""]",3701.54,{},299184,0,North America +2023-02-27,17,7178,"[""Keyboard"", ""Charger""]",584.61,{},178820,0,Africa +2023-03-29,18,558,"[""Headphones""]",1541.47,{},107542,1,Asia +2024-01-06,19,9290,"[""Keyboard""]",3770.72,{},282856,0,Europe +2023-10-14,20,1974,"[""Charger"", ""Laptop""]",3870.63,"{"""": ""29%""}",199608,0,Africa +2024-02-26,21,1212,"[""Phone""]",3452.31,"{""promo"": ""26%""}",204261,1,North America +2024-01-01,22,5252,"[""Wireless Mouse"", ""Laptop""]",1417.61,{},21991,0,North America +2023-03-28,23,7202,"[""Tablet""]",4769.98,"{""loyalty"": ""29%""}",66079,0,Africa +2023-06-20,24,95,"[""Tablet"", ""Laptop""]",4602.0,{},185806,1,North America +2024-01-22,25,5891,"[""Headphones"", ""Keyboard"", ""Tablet""]",4716.31,"{""seasonal"": ""12%""}",144057,1,North America +2023-12-25,26,3921,"[""Phone""]",3017.93,{},160571,1,South America +2023-11-26,27,8041,"[""Charger"", ""Tablet""]",1639.34,{},103906,1,Africa +2023-11-04,28,4754,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4800.29,"{""promo"": ""23%""}",74309,1,Europe +2024-01-25,29,3620,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1439.06,"{""promo"": ""16%""}",214495,1,South America +2023-03-22,30,6002,"[""Monitor"", ""Phone""]",4981.83,{},131266,0,North America +2023-11-07,31,4896,"[""Headphones"", ""Phone""]",1407.72,{},128032,0,South America +2023-08-18,32,7015,"[""Tablet"", ""Headphones""]",4964.22,"{"""": ""22%""}",265018,0,Europe +2023-06-13,33,4952,"[""Laptop"", ""Tablet"", ""Phone""]",477.03,"{""seasonal"": ""20%""}",29649,0,South America +2023-03-11,34,1369,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1870.38,"{"""": ""25%""}",38161,0,Europe +2023-08-21,35,9911,"[""Keyboard""]",2944.91,"{"""": ""28%""}",245278,0,Asia +2023-02-18,36,6392,"[""Tablet"", ""Headphones"", ""Keyboard""]",838.21,"{""promo"": ""29%""}",122241,1,Africa +2023-02-01,37,2278,"[""Tablet""]",4259.99,"{""promo"": ""23%""}",94083,0,Asia +2024-11-10,38,1523,"[""Tablet"", ""Headphones""]",3697.42,"{"""": ""11%""}",156824,0,Asia +2023-01-06,39,1042,"[""Keyboard"", ""Laptop"", ""Phone""]",3278.0,"{""loyalty"": ""13%""}",165699,1,Asia +2024-04-26,40,3788,"[""Keyboard"", ""Charger""]",3168.02,"{""seasonal"": ""6%""}",161090,1,South America +2024-12-13,41,2903,"[""Headphones"", ""Charger"", ""Tablet""]",3526.05,"{""loyalty"": ""22%""}",261103,1,Asia +2023-01-17,42,8128,"[""Monitor""]",242.22,"{""seasonal"": ""12%""}",169866,1,Asia +2024-04-15,43,2736,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3897.68,{},172613,1,South America +2024-10-12,44,8579,"[""Headphones"", ""Laptop"", ""Keyboard""]",4160.06,{},83034,1,South America +2024-01-27,45,2745,"[""Headphones"", ""Phone"", ""Charger""]",1592.3,{},276288,1,Asia +2023-09-26,46,8642,"[""Headphones"", ""Charger""]",3940.73,"{""loyalty"": ""23%""}",151250,0,North America +2024-07-21,47,2160,"[""Tablet""]",1102.72,"{""seasonal"": ""14%""}",87944,1,South America +2024-12-12,48,7619,"[""Tablet"", ""Keyboard"", ""Charger""]",2337.37,"{""seasonal"": ""28%""}",95578,1,Asia +2024-11-23,49,8290,"[""Charger"", ""Keyboard""]",811.23,{},224162,1,Asia +2024-04-13,50,8911,"[""Charger"", ""Wireless Mouse""]",1202.81,{},111174,1,Africa +2024-09-12,51,2314,"[""Keyboard"", ""Tablet"", ""Laptop""]",424.28,"{"""": ""26%""}",277329,0,South America +2024-05-27,52,4234,"[""Keyboard"", ""Wireless Mouse""]",834.5,{},129131,1,South America +2023-05-23,53,1032,"[""Keyboard"", ""Phone"", ""Laptop""]",1028.06,"{""promo"": ""24%""}",45947,1,Africa +2024-11-21,54,6444,"[""Charger"", ""Laptop""]",2824.22,"{""promo"": ""29%""}",94028,1,Asia +2024-01-11,55,1283,"[""Tablet"", ""Laptop"", ""Headphones""]",4809.53,"{""loyalty"": ""16%""}",50790,1,Asia +2024-04-19,56,9974,"[""Keyboard""]",614.46,"{"""": ""24%""}",209091,0,Africa +2023-12-29,57,4523,"[""Wireless Mouse""]",4391.97,{},76986,0,Europe +2024-04-21,58,2730,"[""Laptop""]",491.66,"{""promo"": ""20%""}",276968,1,Africa +2024-06-18,59,3797,"[""Laptop""]",2103.36,"{"""": ""24%""}",184724,0,Asia +2024-03-09,60,6185,"[""Keyboard"", ""Phone""]",175.18,{},189325,0,Africa +2023-11-15,61,6059,"[""Keyboard"", ""Headphones"", ""Monitor""]",916.19,"{""promo"": ""16%""}",280891,0,Europe +2024-06-30,62,791,"[""Headphones"", ""Keyboard"", ""Charger""]",3633.23,{},177596,0,Asia +2023-12-13,63,8708,"[""Headphones""]",3793.7,"{""loyalty"": ""16%""}",259482,1,Europe +2024-03-25,64,5216,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2094.85,{},181796,1,Asia +2024-09-23,65,8603,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",285.85,"{""seasonal"": ""30%""}",293211,0,Europe +2023-04-08,66,3270,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1688.32,"{""loyalty"": ""26%""}",64726,0,Asia +2024-11-06,67,3396,"[""Headphones"", ""Laptop"", ""Phone""]",1668.46,{},147135,0,South America +2024-08-01,68,3135,"[""Wireless Mouse""]",1765.59,"{""loyalty"": ""5%""}",39078,1,North America +2024-02-22,69,3787,"[""Phone""]",1944.42,{},279786,1,North America +2024-11-06,70,7959,"[""Charger"", ""Keyboard""]",2005.12,"{"""": ""14%""}",41805,0,South America +2024-01-13,71,3449,"[""Keyboard""]",4492.69,"{"""": ""26%""}",9526,0,Europe +2024-10-20,72,7848,"[""Headphones""]",3097.97,{},250850,1,Asia +2024-04-15,73,9768,"[""Monitor"", ""Wireless Mouse""]",3317.3,"{"""": ""27%""}",1806,1,South America +2024-05-18,74,4960,"[""Laptop"", ""Headphones""]",4391.78,{},97611,0,Europe +2024-08-03,75,9315,"[""Charger"", ""Wireless Mouse""]",2752.2,"{""promo"": ""22%""}",7044,0,Africa +2024-11-06,76,5019,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1218.16,{},153415,1,South America +2023-05-07,77,4935,"[""Wireless Mouse""]",3208.69,{},297366,1,Asia +2024-11-18,78,2878,"[""Laptop"", ""Keyboard""]",3841.69,"{""seasonal"": ""21%""}",81449,1,South America +2023-01-26,79,7661,"[""Tablet"", ""Phone"", ""Charger""]",2431.86,"{"""": ""29%""}",279231,0,South America +2024-11-13,80,9927,"[""Monitor""]",1292.05,{},269710,1,North America +2024-09-13,81,3106,"[""Wireless Mouse"", ""Keyboard""]",605.75,{},201351,0,South America +2023-12-18,82,3934,"[""Wireless Mouse""]",4037.32,{},87846,0,Europe +2023-04-02,83,5710,"[""Phone"", ""Keyboard"", ""Headphones""]",1303.58,{},190266,1,South America +2023-02-03,84,3481,"[""Tablet"", ""Phone"", ""Charger""]",3451.54,{},7363,1,Africa +2023-08-18,85,3132,"[""Phone""]",2039.21,"{""loyalty"": ""25%""}",23198,1,Africa +2023-01-27,86,7942,"[""Phone"", ""Keyboard""]",1864.86,{},229718,1,Africa +2024-05-18,87,719,"[""Keyboard""]",598.97,{},43830,0,Asia +2023-09-18,88,563,"[""Wireless Mouse"", ""Tablet""]",4728.74,"{""loyalty"": ""30%""}",292311,0,Europe +2023-01-17,89,8934,"[""Tablet""]",1515.83,"{"""": ""19%""}",164038,1,Asia +2023-04-17,90,3413,"[""Charger"", ""Laptop""]",3635.66,{},191699,0,Asia +2023-06-05,91,3308,"[""Laptop"", ""Monitor""]",2784.46,"{"""": ""20%""}",216880,0,Europe +2024-10-05,92,990,"[""Laptop"", ""Keyboard"", ""Headphones""]",1968.22,"{"""": ""9%""}",253787,0,Asia +2023-01-24,93,9478,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3252.75,"{""loyalty"": ""8%""}",214495,0,Asia +2024-02-06,94,5535,"[""Monitor""]",3387.64,{},159442,1,South America +2023-08-21,95,8261,"[""Phone""]",2922.32,"{""loyalty"": ""9%""}",246125,1,Africa +2023-12-04,96,9920,"[""Wireless Mouse"", ""Keyboard""]",2521.63,{},275844,1,Europe +2024-12-01,97,4556,"[""Tablet"", ""Keyboard"", ""Monitor""]",443.53,"{""loyalty"": ""23%""}",140616,0,South America +2024-07-14,98,6022,"[""Phone""]",248.94,{},8307,0,Europe +2023-05-25,99,6054,"[""Keyboard""]",3671.19,{},95694,0,Africa +2023-12-06,100,2166,"[""Phone""]",468.43,{},201351,0,Europe +2024-01-18,101,2260,"[""Headphones""]",2274.67,{},87015,0,Africa +2024-08-06,102,3770,"[""Charger"", ""Monitor""]",3140.22,"{""seasonal"": ""30%""}",6643,0,North America +2024-03-02,103,7841,"[""Tablet""]",871.58,{},97357,0,Europe +2024-04-25,104,4272,"[""Phone"", ""Laptop""]",2770.5,{},165649,1,North America +2023-07-15,105,1789,"[""Laptop""]",3932.41,{},36299,1,Asia +2024-10-25,106,9018,"[""Charger""]",2250.13,"{"""": ""24%""}",227432,0,South America +2024-06-29,107,6626,"[""Wireless Mouse""]",3261.34,{},279306,0,Asia +2023-10-26,108,6668,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4106.68,"{""seasonal"": ""24%""}",271513,1,Europe +2023-05-21,109,1674,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4775.65,{},266537,1,North America +2023-02-21,110,8,"[""Phone"", ""Tablet""]",403.06,{},75684,0,Africa +2023-07-16,111,7104,"[""Charger""]",4556.72,"{""loyalty"": ""26%""}",78512,1,North America +2024-01-03,112,2526,"[""Monitor"", ""Headphones""]",3848.76,"{"""": ""18%""}",248914,1,Asia +2023-01-29,113,8560,"[""Headphones"", ""Phone""]",401.48,{},153327,0,Europe +2024-12-18,114,9182,"[""Headphones"", ""Laptop"", ""Keyboard""]",3813.71,"{"""": ""21%""}",121300,0,Asia +2023-06-12,115,6544,"[""Keyboard""]",1110.63,"{"""": ""14%""}",56298,1,Europe +2024-12-30,116,8426,"[""Tablet""]",1644.82,{},16115,1,Asia +2023-11-10,117,6458,"[""Monitor"", ""Tablet""]",603.97,"{""seasonal"": ""23%""}",1669,0,Europe +2023-06-16,118,4555,"[""Monitor"", ""Wireless Mouse""]",2453.4,"{"""": ""9%""}",6096,0,Europe +2023-07-10,119,86,"[""Headphones""]",733.49,{},49633,0,North America +2024-05-26,120,6445,"[""Headphones""]",4464.45,"{""seasonal"": ""5%""}",99796,0,Europe +2023-02-25,121,9466,"[""Wireless Mouse"", ""Headphones""]",490.94,"{""loyalty"": ""7%""}",271707,0,North America +2023-01-19,122,1327,"[""Keyboard"", ""Laptop"", ""Charger""]",1367.87,"{""promo"": ""23%""}",195641,0,North America +2023-10-18,123,6697,"[""Tablet""]",1571.41,{},110766,0,Africa +2024-12-17,124,3697,"[""Tablet"", ""Laptop"", ""Headphones""]",1480.77,"{""seasonal"": ""12%""}",4561,0,Asia +2024-01-23,125,1772,"[""Headphones"", ""Monitor""]",4097.72,{},13832,0,Asia +2024-01-29,126,4067,"[""Keyboard"", ""Tablet"", ""Laptop""]",2877.25,"{""promo"": ""16%""}",224662,0,South America +2023-10-15,127,9742,"[""Laptop"", ""Monitor"", ""Headphones""]",1913.14,{},262601,0,South America +2024-11-01,128,3368,"[""Tablet"", ""Charger"", ""Phone""]",4939.25,{},185929,1,North America +2023-08-12,129,4368,"[""Phone"", ""Headphones"", ""Monitor""]",3093.6,"{""promo"": ""23%""}",46611,0,Africa +2024-02-23,130,1771,"[""Phone"", ""Tablet"", ""Keyboard""]",2447.22,{},260950,0,Africa +2024-08-03,131,5723,"[""Monitor"", ""Tablet"", ""Laptop""]",3933.63,{},201899,1,South America +2023-07-20,132,6725,"[""Tablet""]",261.8,"{""loyalty"": ""8%""}",151522,1,Africa +2023-07-09,133,2273,"[""Wireless Mouse"", ""Monitor""]",4486.18,"{"""": ""28%""}",291203,0,Africa +2024-06-29,134,3984,"[""Tablet"", ""Monitor""]",2717.93,"{"""": ""17%""}",90201,0,North America +2024-06-16,135,9149,"[""Phone""]",512.98,"{"""": ""10%""}",162807,0,Asia +2024-10-23,136,5589,"[""Monitor""]",760.38,"{""seasonal"": ""8%""}",169753,1,Europe +2024-05-13,137,9735,"[""Tablet"", ""Charger"", ""Keyboard""]",4178.69,"{""loyalty"": ""14%""}",81642,1,South America +2024-02-14,138,6018,"[""Wireless Mouse"", ""Laptop""]",3646.27,"{""promo"": ""28%""}",23815,0,Europe +2023-03-29,139,3876,"[""Keyboard"", ""Monitor""]",1130.35,{},162340,1,Asia +2024-11-20,140,5187,"[""Keyboard""]",1044.75,"{""promo"": ""9%""}",289296,0,North America +2023-08-18,141,5963,"[""Charger""]",1810.57,"{""seasonal"": ""25%""}",58597,1,Asia +2023-02-22,142,319,"[""Laptop""]",2954.31,"{"""": ""24%""}",166743,0,Europe +2024-10-20,143,1999,"[""Phone"", ""Monitor"", ""Tablet""]",4788.13,"{""seasonal"": ""27%""}",221614,1,Asia +2024-12-09,144,5807,"[""Headphones"", ""Monitor""]",178.93,"{""seasonal"": ""13%""}",75826,1,South America +2023-05-09,145,209,"[""Charger"", ""Keyboard""]",3651.36,{},247895,1,North America +2023-04-05,146,7049,"[""Charger"", ""Laptop""]",1579.89,{},257950,1,Asia +2024-04-09,147,8220,"[""Tablet"", ""Phone"", ""Headphones""]",2261.66,{},108912,0,Asia +2024-11-26,148,8207,"[""Monitor""]",2776.69,{},293814,1,South America +2024-02-23,149,458,"[""Laptop"", ""Headphones"", ""Tablet""]",2122.87,"{"""": ""29%""}",47938,0,South America +2023-04-11,150,2625,"[""Monitor"", ""Keyboard""]",3629.58,{},49117,1,Asia +2024-04-23,151,624,"[""Keyboard""]",258.64,"{""promo"": ""30%""}",15582,1,Europe +2024-09-10,152,1178,"[""Monitor""]",4682.01,{},78913,0,Europe +2023-06-28,153,9457,"[""Tablet"", ""Keyboard"", ""Charger""]",4962.22,{},171755,1,Europe +2024-07-12,154,9728,"[""Monitor""]",3485.01,{},166134,0,Europe +2024-08-17,155,3044,"[""Keyboard"", ""Phone""]",4301.18,"{""seasonal"": ""25%""}",10399,1,Asia +2023-09-12,156,8509,"[""Headphones""]",2598.8,{},20596,1,Asia +2024-12-02,157,6914,"[""Headphones""]",2352.12,{},9061,1,Asia +2024-10-09,158,1017,"[""Tablet"", ""Laptop""]",2747.8,"{""promo"": ""20%""}",146634,1,North America +2024-02-24,159,3947,"[""Laptop"", ""Headphones"", ""Tablet""]",915.51,"{""promo"": ""21%""}",208280,1,South America +2023-09-26,160,8478,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4039.62,"{""seasonal"": ""7%""}",210997,1,North America +2024-05-01,161,8656,"[""Headphones""]",4421.72,"{""seasonal"": ""6%""}",24360,1,Africa +2023-08-29,162,6004,"[""Monitor"", ""Phone"", ""Charger""]",470.29,"{""promo"": ""8%""}",275408,0,Europe +2023-07-05,163,8323,"[""Phone""]",4192.42,{},154751,0,Europe +2024-08-27,164,774,"[""Charger""]",2186.69,{},203885,1,Asia +2023-09-17,165,6802,"[""Laptop""]",572.09,{},9408,1,Africa +2024-08-05,166,2432,"[""Tablet""]",3105.26,"{""promo"": ""13%""}",163774,1,Asia +2023-06-25,167,3229,"[""Phone"", ""Charger"", ""Laptop""]",2474.09,{},156963,0,Africa +2023-11-11,168,3319,"[""Charger"", ""Keyboard""]",199.59,{},30263,1,South America +2023-08-29,169,5535,"[""Keyboard""]",793.12,"{""promo"": ""15%""}",43445,0,South America +2023-12-26,170,5045,"[""Keyboard"", ""Charger"", ""Headphones""]",4872.36,"{""loyalty"": ""18%""}",171971,0,Africa +2024-01-07,171,1327,"[""Charger"", ""Laptop"", ""Keyboard""]",3231.8,{},68188,0,South America +2024-10-20,172,4575,"[""Charger"", ""Phone"", ""Monitor""]",2944.63,"{""loyalty"": ""28%""}",179597,0,North America +2023-10-05,173,6245,"[""Charger""]",1479.76,{},206740,0,Africa +2024-07-12,174,9783,"[""Charger""]",3165.48,"{""loyalty"": ""28%""}",94626,0,South America +2023-08-06,175,4130,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2062.49,{},245975,1,Africa +2023-03-29,176,4748,"[""Laptop"", ""Monitor""]",95.61,{},282785,0,South America +2023-09-02,177,1181,"[""Wireless Mouse"", ""Phone""]",848.48,"{"""": ""7%""}",98536,0,Europe +2024-01-06,178,7186,"[""Keyboard"", ""Phone""]",1353.15,{},220081,0,North America +2024-08-26,179,6592,"[""Phone"", ""Charger""]",1566.67,"{""seasonal"": ""30%""}",208411,0,Europe +2023-12-09,180,881,"[""Laptop"", ""Monitor"", ""Tablet""]",73.71,"{""seasonal"": ""19%""}",13124,1,Asia +2023-03-26,181,1236,"[""Keyboard"", ""Charger""]",807.73,{},104589,0,North America +2023-08-07,182,2525,"[""Phone""]",3626.99,{},176850,1,Africa +2023-11-25,183,7392,"[""Wireless Mouse""]",470.68,{},78294,1,North America +2023-06-20,184,715,"[""Laptop"", ""Keyboard""]",2778.11,"{""seasonal"": ""21%""}",79469,1,Asia +2023-07-15,185,3345,"[""Keyboard""]",3532.47,{},110233,1,Africa +2024-03-05,186,9172,"[""Keyboard"", ""Wireless Mouse""]",752.08,{},95194,0,Europe +2023-11-16,187,7189,"[""Headphones"", ""Tablet""]",4686.89,"{""seasonal"": ""24%""}",217169,0,North America +2024-10-17,188,7842,"[""Tablet""]",1835.32,"{""loyalty"": ""12%""}",148844,1,Africa +2023-02-06,189,7912,"[""Monitor""]",2360.47,{},244252,1,South America +2023-07-31,190,6312,"[""Tablet"", ""Monitor""]",4557.59,{},22327,1,Africa +2023-01-27,191,2758,"[""Headphones"", ""Monitor""]",4975.2,"{""seasonal"": ""7%""}",67347,1,South America +2023-03-20,192,3464,"[""Laptop"", ""Phone"", ""Monitor""]",3106.88,{},223901,1,Africa +2024-02-07,193,7242,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1151.58,{},159853,1,Asia +2024-12-31,194,8027,"[""Keyboard"", ""Phone""]",944.93,"{""promo"": ""13%""}",250181,1,North America +2023-04-24,195,5691,"[""Phone""]",718.24,{},281854,1,Asia +2024-12-19,196,2691,"[""Headphones"", ""Wireless Mouse""]",4537.58,"{""promo"": ""8%""}",115195,0,Europe +2024-04-07,197,8213,"[""Charger""]",3007.13,{},180742,1,North America +2024-09-27,198,6193,"[""Laptop""]",2235.31,"{""promo"": ""28%""}",6490,0,Asia +2023-03-16,199,1180,"[""Tablet"", ""Phone""]",1994.97,"{""loyalty"": ""14%""}",62764,1,North America +2024-08-29,200,1824,"[""Charger""]",2488.08,{},13860,0,North America +2023-07-24,201,1474,"[""Phone"", ""Charger"", ""Headphones""]",901.14,{},37069,1,North America +2024-12-19,202,5170,"[""Wireless Mouse"", ""Laptop""]",364.84,{},231752,0,Europe +2023-04-17,203,9478,"[""Tablet"", ""Wireless Mouse""]",3446.13,"{""promo"": ""27%""}",178531,1,Asia +2023-05-10,204,9391,"[""Phone"", ""Charger""]",4769.07,{},113011,0,South America +2024-02-16,205,3996,"[""Phone"", ""Headphones"", ""Laptop""]",3438.32,"{""loyalty"": ""27%""}",253904,1,South America +2023-12-21,206,683,"[""Monitor"", ""Tablet"", ""Charger""]",2503.05,"{""seasonal"": ""8%""}",119506,1,North America +2023-11-01,207,9585,"[""Wireless Mouse""]",396.06,"{"""": ""19%""}",236018,1,North America +2024-03-18,208,5413,"[""Wireless Mouse""]",4061.63,"{""promo"": ""24%""}",89448,0,North America +2024-05-19,209,5086,"[""Wireless Mouse"", ""Laptop""]",2934.93,{},52616,0,Europe +2024-05-24,210,6142,"[""Keyboard"", ""Laptop""]",3779.54,"{""promo"": ""19%""}",47433,1,Europe +2023-09-12,211,3934,"[""Laptop"", ""Monitor"", ""Phone""]",4216.35,"{""promo"": ""12%""}",227295,1,North America +2024-03-07,212,6310,"[""Monitor""]",1031.53,"{""seasonal"": ""20%""}",246025,1,South America +2024-04-15,213,1764,"[""Tablet"", ""Phone""]",3893.84,"{""seasonal"": ""10%""}",108427,0,South America +2023-02-09,214,6135,"[""Headphones""]",1554.83,{},231947,0,Asia +2024-12-15,215,7072,"[""Monitor""]",2513.12,"{""seasonal"": ""5%""}",102601,1,Asia +2023-04-30,216,2087,"[""Charger""]",420.54,{},217118,1,South America +2023-09-14,217,3129,"[""Tablet"", ""Wireless Mouse""]",3805.17,"{""loyalty"": ""29%""}",19019,0,North America +2023-09-09,218,508,"[""Keyboard"", ""Tablet"", ""Headphones""]",1510.13,"{"""": ""6%""}",205591,1,Africa +2023-05-20,219,6059,"[""Tablet"", ""Monitor""]",565.73,"{""promo"": ""11%""}",239651,0,South America +2024-06-03,220,6762,"[""Charger""]",3363.61,"{"""": ""8%""}",25091,0,South America +2024-07-30,221,1309,"[""Headphones"", ""Phone"", ""Monitor""]",4400.15,{},72542,0,North America +2024-01-17,222,3174,"[""Monitor"", ""Phone""]",3203.91,{},33803,0,South America +2023-05-02,223,9986,"[""Headphones"", ""Wireless Mouse""]",2390.75,"{""loyalty"": ""18%""}",241087,0,Africa +2023-07-21,224,3943,"[""Wireless Mouse"", ""Laptop""]",4114.6,"{""promo"": ""23%""}",281351,0,Asia +2024-08-18,225,5245,"[""Laptop"", ""Phone""]",2814.25,"{""promo"": ""30%""}",203189,1,Africa +2024-11-27,226,188,"[""Keyboard""]",1702.62,{},115566,0,Africa +2024-10-27,227,57,"[""Monitor""]",4825.43,"{""promo"": ""21%""}",255949,0,North America +2024-11-23,228,7586,"[""Laptop"", ""Headphones""]",3123.23,{},79383,1,South America +2024-02-11,229,683,"[""Charger""]",3026.95,"{""promo"": ""15%""}",144970,0,Africa +2023-03-25,230,3952,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",295.55,{},266375,0,Europe +2024-04-15,231,7408,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2129.68,"{""promo"": ""12%""}",90819,0,Africa +2023-05-07,232,4624,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",606.9,{},195894,1,Europe +2024-03-23,233,2811,"[""Headphones"", ""Charger"", ""Keyboard""]",2974.7,{},178812,0,North America +2024-07-13,234,5775,"[""Headphones"", ""Laptop""]",1945.08,"{""seasonal"": ""27%""}",138608,0,North America +2024-12-25,235,2444,"[""Wireless Mouse"", ""Phone""]",4618.67,{},206473,0,North America +2023-12-27,236,5586,"[""Charger"", ""Headphones""]",3012.15,"{""loyalty"": ""5%""}",240086,0,Asia +2023-09-22,237,8468,"[""Monitor"", ""Headphones""]",1670.26,{},174591,0,South America +2023-08-08,238,7864,"[""Charger"", ""Wireless Mouse""]",4312.94,"{""loyalty"": ""27%""}",184525,1,Africa +2023-06-16,239,28,"[""Keyboard""]",739.04,{},74320,1,South America +2023-03-27,240,4016,"[""Phone""]",1395.8,{},173914,1,North America +2024-11-20,241,8157,"[""Wireless Mouse"", ""Keyboard""]",1069.98,"{"""": ""19%""}",239973,1,Europe +2023-06-26,242,9944,"[""Monitor"", ""Tablet"", ""Charger""]",4215.4,"{"""": ""24%""}",168461,1,Africa +2024-03-19,243,4009,"[""Laptop""]",3683.78,"{""loyalty"": ""21%""}",289411,1,Africa +2023-02-04,244,8883,"[""Phone"", ""Laptop""]",2223.78,"{"""": ""6%""}",223376,1,South America +2023-06-28,245,5047,"[""Monitor"", ""Wireless Mouse""]",1255.56,{},105919,1,North America +2024-05-12,246,9555,"[""Wireless Mouse"", ""Monitor""]",1224.37,"{""promo"": ""28%""}",172429,0,North America +2023-02-22,247,6646,"[""Tablet""]",4774.98,{},130247,0,South America +2023-10-19,248,2891,"[""Monitor""]",4406.32,{},112348,1,Asia +2024-09-17,249,3536,"[""Keyboard""]",4391.89,{},162825,0,Europe +2023-02-03,250,2654,"[""Tablet"", ""Monitor"", ""Charger""]",3246.61,{},68423,1,Africa +2024-11-18,251,7649,"[""Tablet""]",3820.32,"{""promo"": ""15%""}",261723,0,Asia +2024-03-17,252,7984,"[""Monitor""]",2711.08,{},41464,0,Africa +2024-02-08,253,6431,"[""Keyboard""]",3192.62,{},148110,0,Africa +2023-04-28,254,9105,"[""Phone"", ""Laptop"", ""Keyboard""]",1644.26,{},197909,1,South America +2023-06-15,255,8761,"[""Phone"", ""Charger""]",1057.35,{},214281,1,Asia +2024-06-04,256,6636,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",903.81,"{"""": ""10%""}",157434,0,Europe +2024-06-24,257,7776,"[""Charger""]",2137.9,"{""seasonal"": ""9%""}",159508,0,Asia +2024-12-23,258,8384,"[""Laptop""]",4134.96,"{"""": ""9%""}",101694,1,Africa +2023-07-03,259,3365,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1721.97,"{"""": ""25%""}",207148,1,North America +2024-06-29,260,8623,"[""Laptop"", ""Keyboard"", ""Charger""]",2582.59,{},282261,1,Asia +2023-10-04,261,6782,"[""Keyboard""]",445.97,{},36647,1,Asia +2023-09-20,262,3528,"[""Wireless Mouse"", ""Tablet""]",3639.33,{},68699,1,Europe +2023-09-20,263,2419,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3829.55,{},5237,1,Africa +2024-07-31,264,6250,"[""Keyboard""]",3236.63,{},123967,1,South America +2023-04-06,265,2693,"[""Keyboard""]",63.84,{},138517,0,Asia +2023-10-26,266,5539,"[""Laptop"", ""Phone""]",1333.41,{},291750,1,Asia +2023-08-30,267,7843,"[""Charger"", ""Headphones""]",3203.48,{},159798,0,Asia +2023-12-24,268,6406,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",59.32,"{""loyalty"": ""11%""}",80374,0,Africa +2024-04-09,269,6244,"[""Keyboard""]",2869.03,"{""promo"": ""11%""}",130422,1,South America +2023-01-06,270,8263,"[""Phone"", ""Keyboard"", ""Headphones""]",726.75,"{""loyalty"": ""22%""}",271573,0,South America +2024-08-20,271,6883,"[""Wireless Mouse"", ""Monitor""]",2373.51,"{"""": ""5%""}",35207,1,Africa +2023-12-31,272,2236,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4523.84,"{"""": ""28%""}",251307,1,North America +2023-01-13,273,3055,"[""Keyboard""]",1533.34,"{""promo"": ""17%""}",9130,1,South America +2024-07-26,274,7620,"[""Phone"", ""Tablet""]",1281.93,"{""seasonal"": ""7%""}",38896,0,Europe +2024-02-16,275,5844,"[""Monitor""]",1140.02,{},78223,0,North America +2023-03-27,276,6892,"[""Keyboard""]",2739.77,"{""seasonal"": ""15%""}",237999,0,Europe +2024-03-16,277,2524,"[""Laptop""]",1735.8,{},263958,1,Asia +2023-10-19,278,9799,"[""Phone""]",1208.52,{},151793,0,Asia +2024-02-26,279,6385,"[""Wireless Mouse""]",2805.06,"{""seasonal"": ""29%""}",46012,0,South America +2024-03-24,280,2033,"[""Laptop""]",3188.51,{},20978,1,Europe +2023-06-16,281,8457,"[""Phone"", ""Wireless Mouse""]",3271.87,"{""seasonal"": ""21%""}",159043,1,North America +2024-06-07,282,2789,"[""Keyboard""]",1976.6,"{""promo"": ""27%""}",24958,1,Africa +2024-09-23,283,5148,"[""Keyboard"", ""Phone"", ""Tablet""]",1522.95,{},41690,0,Europe +2024-10-10,284,9344,"[""Charger"", ""Monitor"", ""Headphones""]",2553.1,"{""promo"": ""13%""}",149608,1,Asia +2024-08-29,285,8210,"[""Headphones"", ""Keyboard"", ""Monitor""]",3054.44,{},16726,0,Europe +2023-04-17,286,9354,"[""Wireless Mouse""]",409.68,"{"""": ""24%""}",10818,1,Africa +2024-03-12,287,4703,"[""Charger"", ""Headphones"", ""Phone""]",3491.48,"{"""": ""13%""}",246208,1,Africa +2023-05-17,288,4943,"[""Tablet""]",1441.33,"{""loyalty"": ""27%""}",169729,1,Europe +2024-07-26,289,6682,"[""Keyboard""]",2065.29,{},276831,1,Europe +2023-06-19,290,4086,"[""Phone"", ""Tablet""]",591.49,"{""promo"": ""18%""}",282596,0,North America +2024-05-21,291,3235,"[""Laptop""]",357.18,"{""loyalty"": ""12%""}",110837,0,Africa +2024-09-10,292,7690,"[""Tablet""]",1599.13,{},240533,1,South America +2023-06-09,293,1231,"[""Keyboard"", ""Monitor""]",1045.64,{},134667,1,Asia +2023-12-18,294,5927,"[""Charger"", ""Laptop""]",4756.44,"{""loyalty"": ""29%""}",87436,1,North America +2023-10-20,295,1947,"[""Headphones"", ""Phone"", ""Tablet""]",2315.66,{},14075,0,North America +2024-09-22,296,9332,"[""Phone""]",4448.53,"{""loyalty"": ""14%""}",82141,0,North America +2023-10-21,297,472,"[""Wireless Mouse""]",2942.41,{},221588,0,Europe +2023-02-19,298,6287,"[""Laptop"", ""Keyboard"", ""Charger""]",3321.72,{},38505,1,Europe +2023-04-10,299,7238,"[""Charger""]",4821.16,{},75041,1,Europe +2023-12-22,300,2214,"[""Laptop"", ""Charger""]",4927.22,"{"""": ""22%""}",19948,0,South America +2023-05-12,301,120,"[""Laptop""]",3390.46,{},45777,0,Europe +2023-04-29,302,1841,"[""Headphones""]",3255.12,"{""seasonal"": ""10%""}",66452,0,Africa +2024-07-06,303,8991,"[""Phone""]",1739.63,"{""promo"": ""17%""}",70246,1,North America +2024-02-06,304,8410,"[""Wireless Mouse""]",3587.51,{},97000,0,Asia +2024-07-06,305,5566,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4756.02,"{""seasonal"": ""29%""}",163964,1,North America +2024-12-20,306,7203,"[""Phone""]",3908.82,"{""seasonal"": ""29%""}",196388,1,Asia +2023-09-16,307,919,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3570.53,"{"""": ""9%""}",53609,1,Asia +2023-05-20,308,6236,"[""Monitor"", ""Laptop"", ""Headphones""]",56.17,{},46497,1,South America +2023-04-07,309,5667,"[""Charger"", ""Tablet""]",4371.71,{},130442,1,North America +2024-09-13,310,6628,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1323.14,"{"""": ""15%""}",43032,1,Africa +2023-06-27,311,3952,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",449.15,{},165617,0,Europe +2023-05-28,312,4064,"[""Laptop"", ""Keyboard""]",628.86,{},65933,0,Europe +2024-09-23,313,7926,"[""Keyboard""]",4629.51,"{""loyalty"": ""18%""}",255620,0,South America +2023-11-09,314,9119,"[""Monitor""]",3002.36,"{"""": ""26%""}",49783,1,North America +2023-11-23,315,9255,"[""Tablet""]",1860.29,{},238716,1,North America +2024-06-14,316,6856,"[""Phone""]",4339.68,"{""seasonal"": ""5%""}",245596,0,Europe +2023-01-12,317,275,"[""Laptop"", ""Phone""]",3705.24,"{""promo"": ""18%""}",135363,1,North America +2023-10-23,318,2636,"[""Headphones"", ""Charger"", ""Laptop""]",1794.21,"{""loyalty"": ""29%""}",162189,0,Africa +2023-09-04,319,1079,"[""Charger"", ""Laptop""]",3166.69,{},139779,1,Europe +2024-07-18,320,8828,"[""Laptop""]",875.06,{},133413,1,Asia +2024-11-15,321,6819,"[""Keyboard"", ""Headphones""]",3186.59,{},158484,1,Asia +2023-09-19,322,7174,"[""Tablet"", ""Keyboard"", ""Phone""]",2843.71,"{""promo"": ""26%""}",236699,0,Asia +2024-06-07,323,285,"[""Charger""]",3397.72,{},284546,1,Africa +2024-03-19,324,1845,"[""Wireless Mouse"", ""Charger"", ""Phone""]",300.04,"{""promo"": ""10%""}",191034,0,Africa +2024-10-28,325,7100,"[""Keyboard"", ""Phone""]",109.79,{},131276,0,Africa +2023-12-16,326,4108,"[""Headphones""]",140.81,{},41690,0,Europe +2023-05-17,327,6603,"[""Charger"", ""Tablet"", ""Phone""]",2861.98,"{""promo"": ""22%""}",130500,0,Europe +2024-06-19,328,2505,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1021.46,{},262345,0,Africa +2024-03-29,329,1086,"[""Headphones"", ""Keyboard"", ""Charger""]",2939.29,{},105716,1,Asia +2023-01-26,330,7010,"[""Wireless Mouse"", ""Laptop""]",3434.67,{},118605,0,North America +2024-08-01,331,8312,"[""Phone""]",81.81,{},114986,1,Europe +2024-11-18,332,4317,"[""Wireless Mouse"", ""Phone""]",3208.59,{},38295,0,North America +2024-02-22,333,3245,"[""Laptop""]",4521.6,{},51358,0,Asia +2024-10-14,334,1419,"[""Keyboard"", ""Headphones"", ""Phone""]",1793.65,{},150665,1,South America +2024-03-04,335,5588,"[""Charger""]",4644.15,{},251717,0,South America +2024-01-24,336,7997,"[""Tablet""]",2314.5,{},170264,0,Europe +2024-12-21,337,8161,"[""Phone"", ""Monitor"", ""Charger""]",3620.87,"{""promo"": ""20%""}",141580,0,Africa +2024-03-30,338,5284,"[""Monitor"", ""Charger""]",3688.84,"{""seasonal"": ""12%""}",235143,0,Europe +2024-10-22,339,8852,"[""Keyboard"", ""Headphones"", ""Laptop""]",3201.91,{},164262,0,Asia +2023-03-30,340,7803,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2359.78,"{""promo"": ""22%""}",156630,1,Europe +2023-06-30,341,3442,"[""Phone"", ""Monitor""]",782.3,"{"""": ""18%""}",148592,0,Asia +2023-01-21,342,4542,"[""Wireless Mouse""]",186.74,"{""promo"": ""17%""}",183673,0,North America +2024-06-13,343,8644,"[""Phone"", ""Headphones"", ""Charger""]",723.58,{},288877,0,Africa +2023-02-06,344,1743,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3926.76,"{""loyalty"": ""9%""}",89747,0,South America +2023-07-05,345,9821,"[""Keyboard"", ""Phone"", ""Charger""]",4246.94,"{""promo"": ""14%""}",53144,0,South America +2024-11-14,346,7199,"[""Laptop"", ""Charger""]",3190.57,"{""loyalty"": ""19%""}",293280,0,North America +2024-06-18,347,4879,"[""Monitor""]",477.18,{},92491,0,South America +2024-12-14,348,1865,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3387.07,{},37175,1,Asia +2024-06-25,349,7756,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2694.93,"{""promo"": ""10%""}",85912,1,Europe +2023-11-04,350,5669,"[""Tablet""]",1395.43,"{""loyalty"": ""30%""}",47814,1,North America +2024-07-01,351,864,"[""Wireless Mouse""]",2093.2,"{""seasonal"": ""17%""}",61272,1,Asia +2023-07-13,352,8676,"[""Charger"", ""Monitor""]",2968.03,{},276854,1,Africa +2023-11-05,353,1717,"[""Headphones"", ""Keyboard"", ""Laptop""]",2275.97,"{"""": ""12%""}",197915,1,South America +2024-07-25,354,1215,"[""Phone""]",2446.29,"{""promo"": ""5%""}",116103,1,Asia +2024-08-26,355,6606,"[""Charger""]",2562.52,"{""seasonal"": ""11%""}",140902,1,South America +2023-05-29,356,1277,"[""Phone"", ""Headphones"", ""Charger""]",1094.72,"{""promo"": ""7%""}",157783,1,North America +2023-12-28,357,9997,"[""Keyboard"", ""Charger""]",4953.42,{},18170,1,North America +2023-06-17,358,2345,"[""Phone"", ""Charger""]",1180.78,{},163252,1,North America +2024-08-16,359,3970,"[""Tablet""]",4228.91,{},55916,0,North America +2023-10-11,360,1078,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",527.38,{},133278,0,North America +2024-11-02,361,6925,"[""Headphones"", ""Wireless Mouse""]",1940.89,"{""promo"": ""24%""}",258353,0,Europe +2023-05-29,362,1792,"[""Monitor"", ""Keyboard"", ""Tablet""]",2102.74,{},90337,1,Asia +2023-08-07,363,374,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3430.75,"{""seasonal"": ""10%""}",14728,0,Africa +2024-08-06,364,3747,"[""Monitor"", ""Laptop"", ""Phone""]",4131.03,{},253193,1,Europe +2023-02-26,365,4805,"[""Headphones"", ""Monitor"", ""Laptop""]",3364.75,{},91582,0,South America +2023-09-21,366,540,"[""Tablet"", ""Headphones"", ""Keyboard""]",2688.02,"{""seasonal"": ""30%""}",198271,1,Asia +2024-11-29,367,1676,"[""Keyboard"", ""Headphones""]",3853.15,{},30490,0,Asia +2024-06-04,368,7792,"[""Tablet"", ""Wireless Mouse""]",3462.21,{},223351,1,North America +2024-07-09,369,9903,"[""Wireless Mouse""]",2960.92,{},101679,0,Africa +2023-04-24,370,3532,"[""Keyboard"", ""Laptop"", ""Charger""]",4386.34,"{""seasonal"": ""8%""}",98060,0,North America +2023-01-05,371,5005,"[""Wireless Mouse""]",3120.02,"{""loyalty"": ""17%""}",130455,1,Europe +2023-05-23,372,4306,"[""Charger""]",748.28,"{""promo"": ""12%""}",131801,0,Africa +2024-07-08,373,8863,"[""Monitor"", ""Phone""]",160.3,{},146919,1,North America +2023-01-25,374,2460,"[""Laptop""]",2285.72,{},124422,1,Europe +2024-09-16,375,7212,"[""Wireless Mouse"", ""Monitor""]",1580.24,"{""promo"": ""18%""}",159223,0,Asia +2023-06-17,376,7009,"[""Keyboard"", ""Wireless Mouse""]",834.7,{},32257,0,North America +2023-07-30,377,2740,"[""Keyboard"", ""Headphones""]",895.35,{},292443,1,Asia +2024-12-30,378,336,"[""Charger""]",3282.32,{},47547,1,South America +2023-06-06,379,1746,"[""Tablet""]",1278.37,"{"""": ""21%""}",104066,1,North America +2023-11-28,380,3072,"[""Keyboard"", ""Laptop""]",2991.14,"{"""": ""5%""}",224700,1,Asia +2023-08-12,381,2400,"[""Charger"", ""Phone"", ""Laptop""]",1306.25,"{""seasonal"": ""6%""}",195300,0,Asia +2023-06-02,382,9484,"[""Laptop"", ""Monitor"", ""Phone""]",3226.67,{},80780,0,North America +2024-07-13,383,2533,"[""Keyboard"", ""Phone""]",1618.49,"{""loyalty"": ""21%""}",242650,1,Europe +2024-02-12,384,3053,"[""Charger"", ""Wireless Mouse""]",1324.74,{},2091,0,South America +2023-07-02,385,5633,"[""Keyboard"", ""Charger""]",4678.44,"{"""": ""20%""}",115875,1,North America +2023-02-03,386,4261,"[""Charger"", ""Phone""]",1916.98,"{""promo"": ""26%""}",114050,1,North America +2023-08-18,387,8994,"[""Phone"", ""Headphones"", ""Laptop""]",457.27,{},206275,1,Africa +2024-02-26,388,4619,"[""Headphones""]",4160.32,"{""promo"": ""17%""}",286462,1,North America +2023-03-27,389,7538,"[""Wireless Mouse""]",160.12,{},93829,1,North America +2023-11-01,390,8915,"[""Headphones"", ""Tablet""]",4832.54,{},295506,1,South America +2023-06-18,391,6535,"[""Phone"", ""Laptop""]",3574.42,{},133643,1,South America +2023-01-05,392,9594,"[""Wireless Mouse""]",1092.72,{},2973,0,Asia +2023-12-07,393,224,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3863.11,"{""seasonal"": ""27%""}",188920,1,Asia +2024-04-23,394,4068,"[""Phone"", ""Tablet"", ""Keyboard""]",860.37,"{"""": ""29%""}",63150,1,Africa +2024-11-19,395,8580,"[""Wireless Mouse""]",401.33,"{""seasonal"": ""16%""}",295265,0,North America +2024-05-05,396,6284,"[""Keyboard"", ""Laptop""]",472.74,{},175358,0,Asia +2023-11-19,397,2381,"[""Keyboard"", ""Charger""]",4003.79,{},210783,0,Africa +2024-04-25,398,7229,"[""Phone"", ""Keyboard""]",2100.53,"{"""": ""9%""}",261496,0,Europe +2023-02-24,399,9532,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4105.45,"{""promo"": ""7%""}",35236,1,South America +2023-11-19,400,3080,"[""Laptop"", ""Tablet"", ""Charger""]",3481.53,{},172607,0,South America +2024-11-04,401,1938,"[""Charger"", ""Phone"", ""Tablet""]",3140.27,"{""promo"": ""19%""}",108519,0,Asia +2024-03-24,402,4970,"[""Charger""]",1207.43,{},41057,1,Asia +2023-12-28,403,6548,"[""Tablet"", ""Keyboard""]",4973.05,{},13144,1,Africa +2023-06-12,404,8408,"[""Charger"", ""Wireless Mouse""]",4212.54,{},73360,1,Europe +2024-08-04,405,7978,"[""Phone"", ""Tablet"", ""Keyboard""]",1741.49,"{""loyalty"": ""30%""}",27698,1,North America +2024-06-11,406,8185,"[""Laptop"", ""Headphones""]",1893.22,"{""loyalty"": ""26%""}",114537,1,Asia +2023-08-13,407,6551,"[""Headphones"", ""Wireless Mouse""]",422.81,{},264465,0,North America +2023-10-07,408,389,"[""Laptop"", ""Tablet""]",1095.81,"{""seasonal"": ""9%""}",201236,0,Europe +2024-01-14,409,9384,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1267.14,"{""loyalty"": ""16%""}",269603,1,South America +2023-03-29,410,7624,"[""Monitor"", ""Charger""]",214.7,{},149158,1,North America +2024-01-28,411,6186,"[""Keyboard"", ""Laptop""]",1909.29,"{"""": ""16%""}",125236,0,Asia +2023-12-22,412,7134,"[""Monitor"", ""Tablet""]",1320.99,"{""seasonal"": ""29%""}",147875,1,North America +2024-05-20,413,4659,"[""Tablet"", ""Phone""]",4685.09,{},96626,1,Asia +2024-06-09,414,8266,"[""Monitor"", ""Charger""]",2842.08,{},50278,0,Europe +2024-01-13,415,4019,"[""Headphones"", ""Charger""]",947.44,{},230169,1,Africa +2023-10-10,416,8738,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2402.1,{},267462,1,South America +2024-11-09,417,61,"[""Headphones"", ""Tablet""]",1590.63,{},292552,1,South America +2023-05-22,418,4079,"[""Charger"", ""Phone""]",400.8,{},181144,0,Europe +2024-02-23,419,8545,"[""Tablet"", ""Keyboard""]",3984.45,"{""loyalty"": ""30%""}",286029,0,Europe +2023-03-05,420,8722,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",596.07,{},197127,1,North America +2023-08-17,421,7089,"[""Tablet"", ""Laptop""]",1047.11,"{""seasonal"": ""16%""}",139400,0,North America +2024-02-06,422,7978,"[""Charger""]",3736.75,{},96809,1,North America +2024-02-10,423,1090,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1118.3,{},128155,1,Africa +2023-02-28,424,8200,"[""Laptop"", ""Charger"", ""Headphones""]",4385.5,"{""seasonal"": ""21%""}",103309,1,Asia +2023-04-09,425,4965,"[""Charger""]",70.04,{},55292,1,North America +2023-07-05,426,8273,"[""Monitor""]",3478.85,{},289381,0,Asia +2024-10-31,427,9817,"[""Laptop""]",3821.97,{},236209,0,Asia +2024-12-22,428,4667,"[""Phone"", ""Tablet"", ""Monitor""]",836.98,"{"""": ""12%""}",286988,0,South America +2023-07-14,429,3492,"[""Keyboard"", ""Phone""]",1646.94,"{"""": ""21%""}",254738,1,South America +2023-04-30,430,8175,"[""Keyboard""]",4412.78,"{""loyalty"": ""30%""}",219158,0,Europe +2023-07-31,431,3521,"[""Headphones""]",3520.93,"{""promo"": ""26%""}",153067,1,Asia +2024-09-18,432,3092,"[""Charger"", ""Laptop"", ""Monitor""]",575.74,{},277258,1,Europe +2023-10-19,433,7344,"[""Phone""]",4434.6,"{""seasonal"": ""14%""}",123499,1,Africa +2023-01-29,434,6930,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2002.2,{},202549,1,South America +2024-02-25,435,5211,"[""Phone"", ""Monitor"", ""Charger""]",1948.39,"{""loyalty"": ""10%""}",126101,0,Asia +2024-10-08,436,4980,"[""Tablet""]",2235.69,"{"""": ""24%""}",113405,1,Africa +2024-09-13,437,4166,"[""Charger""]",1410.1,{},124991,0,North America +2024-06-17,438,2367,"[""Headphones""]",1481.08,"{""promo"": ""22%""}",40316,0,Europe +2024-04-08,439,8397,"[""Phone""]",3626.95,{},209508,0,North America +2024-06-08,440,6281,"[""Keyboard"", ""Monitor"", ""Tablet""]",3442.53,{},71523,0,Africa +2024-05-04,441,8123,"[""Keyboard""]",2539.21,{},100309,1,Asia +2023-11-05,442,2174,"[""Headphones"", ""Keyboard"", ""Phone""]",2834.13,{},165937,0,South America +2023-08-13,443,7893,"[""Phone"", ""Headphones"", ""Monitor""]",2606.15,{},208002,0,South America +2023-02-26,444,1435,"[""Headphones"", ""Keyboard""]",1236.4,{},51964,0,Europe +2023-03-29,445,466,"[""Laptop""]",3436.82,"{""promo"": ""17%""}",11160,0,Asia +2023-06-18,446,3578,"[""Headphones"", ""Phone""]",1682.19,{},100961,1,Asia +2023-08-31,447,8885,"[""Charger"", ""Monitor"", ""Tablet""]",2595.9,{},193738,1,Africa +2024-02-07,448,5032,"[""Charger"", ""Keyboard"", ""Headphones""]",2220.46,{},243184,1,North America +2023-08-27,449,9723,"[""Headphones"", ""Charger"", ""Monitor""]",1292.9,"{"""": ""30%""}",83858,1,South America +2024-05-04,450,3376,"[""Phone"", ""Wireless Mouse""]",173.2,{},48952,0,Europe +2023-01-09,451,910,"[""Monitor""]",699.02,{},186310,1,South America +2023-11-15,452,48,"[""Tablet"", ""Charger""]",2422.92,"{"""": ""21%""}",292476,0,North America +2023-11-29,453,445,"[""Headphones"", ""Monitor""]",4724.6,{},185589,1,South America +2024-11-08,454,5026,"[""Phone""]",4456.3,"{"""": ""20%""}",157498,0,Europe +2023-09-08,455,3664,"[""Keyboard"", ""Headphones""]",2445.69,{},93190,1,Africa +2023-04-29,456,8829,"[""Charger""]",883.02,{},173376,0,South America +2023-03-19,457,677,"[""Wireless Mouse""]",3241.65,"{""loyalty"": ""25%""}",108365,1,Asia +2024-12-16,458,2800,"[""Charger"", ""Tablet"", ""Headphones""]",276.14,{},76792,1,North America +2024-08-09,459,5796,"[""Headphones"", ""Monitor"", ""Charger""]",1276.73,"{""promo"": ""27%""}",297635,1,Africa +2024-12-15,460,6162,"[""Laptop"", ""Keyboard""]",1442.41,"{"""": ""28%""}",246744,1,Asia +2024-09-26,461,7131,"[""Wireless Mouse"", ""Tablet""]",1671.38,"{""seasonal"": ""29%""}",281018,0,North America +2024-02-04,462,3539,"[""Tablet"", ""Charger"", ""Phone""]",3320.48,{},256173,1,Europe +2024-05-19,463,3996,"[""Monitor""]",4742.96,"{"""": ""13%""}",145495,1,Europe +2024-01-02,464,8405,"[""Tablet"", ""Charger""]",2497.44,{},33938,0,Europe +2023-07-04,465,568,"[""Keyboard""]",3592.63,{},51649,0,North America +2024-08-06,466,2532,"[""Monitor"", ""Laptop"", ""Keyboard""]",1679.37,{},21722,1,Africa +2023-05-09,467,5826,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2964.14,{},84001,1,North America +2024-01-23,468,4878,"[""Monitor"", ""Tablet""]",2649.85,"{""promo"": ""28%""}",97185,1,Africa +2024-02-28,469,9248,"[""Headphones""]",3248.98,{},53348,0,South America +2024-01-05,470,1975,"[""Phone""]",885.16,{},109971,0,North America +2023-12-15,471,5170,"[""Charger"", ""Wireless Mouse""]",1246.29,{},156458,1,Europe +2023-09-21,472,6508,"[""Phone""]",2516.0,{},4403,0,Asia +2023-04-18,473,4217,"[""Headphones"", ""Laptop"", ""Tablet""]",4666.38,{},58304,1,Europe +2023-01-27,474,2191,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3173.4,{},120436,1,South America +2023-02-21,475,5859,"[""Tablet"", ""Headphones"", ""Keyboard""]",620.6,{},75499,1,Africa +2023-10-24,476,1218,"[""Charger"", ""Tablet"", ""Laptop""]",632.16,{},93546,1,Africa +2023-11-09,477,1014,"[""Phone"", ""Headphones"", ""Keyboard""]",208.76,"{""loyalty"": ""26%""}",72869,0,South America +2024-05-19,478,9656,"[""Phone"", ""Keyboard""]",2707.71,"{""loyalty"": ""27%""}",78090,1,Europe +2023-06-28,479,8118,"[""Monitor"", ""Phone""]",4768.02,"{""loyalty"": ""25%""}",234873,0,North America +2023-11-26,480,5502,"[""Phone"", ""Keyboard""]",2547.05,"{""loyalty"": ""21%""}",129908,0,South America +2024-04-13,481,2859,"[""Charger""]",573.84,{},262222,1,South America +2023-03-03,482,6325,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3830.04,{},124379,0,South America +2024-03-04,483,7934,"[""Keyboard"", ""Phone""]",936.21,{},248722,0,Asia +2023-09-10,484,121,"[""Laptop"", ""Phone"", ""Keyboard""]",1589.16,"{""promo"": ""25%""}",93094,0,Asia +2024-01-06,485,7722,"[""Headphones"", ""Tablet"", ""Keyboard""]",884.74,{},26843,0,Africa +2024-11-24,486,6664,"[""Headphones""]",1166.18,"{"""": ""9%""}",106631,1,Africa +2023-08-12,487,3494,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1743.8,{},109788,0,South America +2024-06-06,488,6224,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4753.9,{},243644,0,North America +2023-03-09,489,6013,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1116.32,{},138185,1,Europe +2024-08-27,490,9283,"[""Tablet""]",3990.79,"{""loyalty"": ""26%""}",209308,1,North America +2024-04-16,491,5991,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",51.06,"{"""": ""22%""}",199995,0,Africa +2024-11-06,492,6725,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2525.76,{},37779,0,Africa +2023-01-17,493,8119,"[""Wireless Mouse""]",2926.23,"{"""": ""26%""}",163284,1,Asia +2024-06-26,494,9916,"[""Headphones"", ""Laptop""]",368.22,{},198896,1,North America +2024-12-27,495,7303,"[""Laptop"", ""Phone"", ""Headphones""]",709.5,{},122674,1,Europe +2024-05-20,496,5826,"[""Tablet""]",4704.08,{},157258,0,South America +2023-11-15,497,5097,"[""Phone"", ""Keyboard"", ""Charger""]",4260.15,{},100732,0,Africa +2023-04-20,498,8758,"[""Phone""]",1873.64,{},64043,1,Asia +2024-09-30,499,4269,"[""Keyboard""]",2226.98,{},169091,1,South America +2024-05-20,500,1161,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",369.0,"{""promo"": ""12%""}",19647,1,South America +2023-07-28,501,3634,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2250.37,"{""loyalty"": ""5%""}",146472,0,Asia +2023-01-02,502,2651,"[""Keyboard""]",1351.56,{},252413,1,Europe +2023-05-05,503,9147,"[""Headphones"", ""Monitor""]",1339.69,{},101956,0,Asia +2024-12-16,504,6088,"[""Monitor"", ""Tablet""]",2807.44,"{"""": ""12%""}",10958,0,Africa +2023-05-11,505,8638,"[""Tablet"", ""Wireless Mouse""]",4956.62,{},243615,0,South America +2024-05-12,506,1049,"[""Headphones"", ""Tablet""]",1811.75,{},77211,0,North America +2024-02-06,507,3629,"[""Tablet"", ""Charger""]",657.22,"{""promo"": ""23%""}",234576,1,North America +2023-01-06,508,9819,"[""Monitor""]",3696.78,"{""loyalty"": ""9%""}",189075,0,South America +2024-03-17,509,2954,"[""Charger"", ""Headphones""]",3530.07,{},293899,0,North America +2024-01-30,510,8716,"[""Laptop"", ""Headphones""]",3716.27,"{""seasonal"": ""6%""}",240849,0,South America +2023-08-19,511,4541,"[""Keyboard"", ""Phone"", ""Charger""]",4252.91,{},271756,0,North America +2024-01-02,512,6641,"[""Wireless Mouse""]",2475.13,{},225746,0,Europe +2023-10-02,513,6200,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",662.0,{},88173,1,Africa +2024-05-28,514,4646,"[""Charger""]",4369.71,"{"""": ""5%""}",125196,0,North America +2023-11-04,515,5041,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2808.1,"{""seasonal"": ""28%""}",167388,1,Asia +2024-04-12,516,842,"[""Keyboard""]",455.32,"{"""": ""8%""}",191932,1,Europe +2024-11-02,517,9123,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1372.13,{},241439,1,South America +2024-12-27,518,922,"[""Headphones""]",2168.08,{},183360,0,South America +2024-01-13,519,9067,"[""Phone""]",1334.5,"{""promo"": ""15%""}",245108,1,Asia +2023-08-22,520,6239,"[""Laptop""]",2368.23,"{"""": ""19%""}",213174,1,North America +2024-08-22,521,7737,"[""Keyboard"", ""Charger""]",3727.66,"{"""": ""6%""}",147621,0,Asia +2024-07-15,522,3714,"[""Phone""]",2602.38,"{""seasonal"": ""22%""}",19437,0,Europe +2023-09-04,523,169,"[""Tablet"", ""Phone""]",1588.59,"{""loyalty"": ""18%""}",213601,1,Asia +2024-09-11,524,4626,"[""Laptop"", ""Headphones""]",1886.51,"{""promo"": ""18%""}",38903,1,Africa +2023-08-28,525,7594,"[""Laptop"", ""Wireless Mouse""]",1853.09,"{""seasonal"": ""28%""}",154681,0,Africa +2024-09-30,526,6366,"[""Tablet""]",2724.41,"{""seasonal"": ""28%""}",87244,1,Asia +2023-10-15,527,3158,"[""Laptop""]",4308.85,{},101273,1,Africa +2024-12-04,528,4297,"[""Tablet"", ""Charger"", ""Laptop""]",1582.62,{},287352,0,South America +2024-03-12,529,8388,"[""Headphones"", ""Laptop""]",2195.57,"{"""": ""29%""}",140840,0,Asia +2024-01-26,530,7900,"[""Wireless Mouse"", ""Keyboard""]",4385.88,{},46644,1,South America +2024-07-12,531,7871,"[""Wireless Mouse"", ""Laptop""]",1538.45,{},21423,0,Africa +2024-10-26,532,4111,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1708.48,"{""promo"": ""6%""}",146897,0,Asia +2023-05-04,533,3612,"[""Monitor"", ""Charger""]",1787.55,{},41034,0,North America +2023-02-15,534,7270,"[""Phone"", ""Headphones""]",2827.35,{},171603,0,South America +2023-05-11,535,8865,"[""Laptop"", ""Headphones""]",3713.15,{},290097,1,Africa +2023-04-24,536,2566,"[""Laptop""]",662.49,"{""promo"": ""5%""}",9740,0,North America +2024-07-06,537,1240,"[""Charger"", ""Keyboard"", ""Laptop""]",803.26,{},12025,1,North America +2023-06-24,538,7453,"[""Wireless Mouse""]",2870.92,"{"""": ""5%""}",237634,0,Asia +2024-08-25,539,2849,"[""Laptop"", ""Charger""]",2131.84,{},223966,1,North America +2024-11-08,540,3307,"[""Keyboard"", ""Phone"", ""Monitor""]",4839.32,{},113191,1,North America +2023-11-09,541,929,"[""Phone"", ""Monitor""]",601.2,{},57761,0,South America +2024-04-01,542,5117,"[""Keyboard""]",4345.54,"{""promo"": ""29%""}",236717,1,Africa +2024-06-21,543,9298,"[""Laptop"", ""Monitor"", ""Tablet""]",4839.52,"{""loyalty"": ""22%""}",93477,1,South America +2023-06-24,544,6114,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2702.33,"{"""": ""28%""}",141137,1,Asia +2023-05-17,545,6819,"[""Monitor""]",1621.04,{},296054,0,South America +2024-07-16,546,3670,"[""Laptop""]",2506.04,"{""promo"": ""5%""}",57241,1,North America +2024-11-24,547,5740,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",318.71,"{""promo"": ""27%""}",39227,1,South America +2024-05-01,548,9162,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",584.47,"{"""": ""23%""}",248531,0,Africa +2024-03-05,549,7544,"[""Laptop""]",1257.4,"{""promo"": ""29%""}",234553,0,South America +2024-12-02,550,5566,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2591.07,{},110731,0,Africa +2023-11-17,551,8149,"[""Keyboard""]",2154.52,"{""promo"": ""29%""}",44418,0,Africa +2024-11-11,552,8223,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",589.05,"{""promo"": ""14%""}",273523,0,South America +2023-11-08,553,4485,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3206.76,{},236590,0,Africa +2023-03-25,554,8602,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4707.95,"{""seasonal"": ""17%""}",105056,1,Africa +2024-03-03,555,9095,"[""Tablet""]",2463.31,{},297302,1,Europe +2023-01-18,556,308,"[""Tablet""]",4198.83,"{""promo"": ""26%""}",214120,1,North America +2024-05-24,557,9150,"[""Monitor"", ""Tablet"", ""Headphones""]",2590.1,"{""seasonal"": ""14%""}",254747,1,Asia +2024-09-04,558,6202,"[""Keyboard"", ""Headphones""]",826.54,"{""seasonal"": ""19%""}",144367,1,Asia +2024-11-25,559,5553,"[""Keyboard""]",3194.62,{},164288,1,Asia +2023-05-16,560,8601,"[""Laptop"", ""Monitor""]",2213.34,{},115458,0,Europe +2024-06-25,561,573,"[""Keyboard"", ""Laptop""]",4222.48,{},22180,0,Africa +2024-10-23,562,5490,"[""Wireless Mouse"", ""Keyboard""]",1938.33,"{""seasonal"": ""5%""}",254734,0,South America +2023-05-10,563,6630,"[""Monitor"", ""Keyboard""]",2070.55,"{""promo"": ""15%""}",260710,1,Africa +2024-03-21,564,1793,"[""Phone""]",1119.42,"{"""": ""26%""}",274971,1,Asia +2023-08-24,565,5492,"[""Phone"", ""Tablet""]",2255.15,{},272088,1,Europe +2023-07-20,566,1624,"[""Wireless Mouse"", ""Phone""]",1107.03,{},101502,1,South America +2024-12-08,567,6219,"[""Monitor"", ""Laptop"", ""Headphones""]",1113.23,"{""seasonal"": ""30%""}",67259,0,North America +2023-04-06,568,778,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2949.02,{},141220,0,Europe +2024-07-03,569,8203,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2461.98,{},268745,0,Asia +2024-01-19,570,7363,"[""Laptop"", ""Tablet""]",3999.76,"{""loyalty"": ""17%""}",126544,0,Europe +2024-12-05,571,3954,"[""Tablet"", ""Monitor""]",2071.79,{},161622,1,Africa +2023-05-01,572,6840,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3544.38,"{""promo"": ""13%""}",152570,1,Asia +2024-09-11,573,8546,"[""Phone""]",1944.68,"{""seasonal"": ""21%""}",18881,0,Asia +2024-01-14,574,6959,"[""Laptop""]",1396.63,{},222856,1,North America +2024-08-01,575,673,"[""Charger""]",1037.74,"{"""": ""29%""}",72715,0,North America +2024-08-15,576,8208,"[""Headphones""]",3124.17,{},145425,0,Africa +2024-04-01,577,2599,"[""Phone""]",1448.94,"{"""": ""15%""}",247343,0,Africa +2024-12-11,578,5600,"[""Laptop"", ""Phone""]",4769.07,"{""promo"": ""17%""}",122777,1,Europe +2023-09-11,579,9636,"[""Laptop"", ""Tablet"", ""Charger""]",2191.47,{},135391,1,North America +2023-03-03,580,237,"[""Laptop"", ""Monitor""]",415.08,{},191512,0,Africa +2023-09-01,581,2810,"[""Charger""]",4593.16,{},258380,0,South America +2023-04-12,582,6177,"[""Monitor""]",279.06,"{"""": ""5%""}",177656,1,Asia +2023-10-05,583,5819,"[""Charger"", ""Keyboard"", ""Monitor""]",1100.32,{},13971,0,North America +2023-08-10,584,378,"[""Charger"", ""Wireless Mouse""]",72.1,{},264109,0,Asia +2024-05-31,585,4102,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4676.47,"{"""": ""22%""}",227151,1,South America +2023-10-22,586,3085,"[""Headphones"", ""Keyboard""]",1637.75,{},65037,0,Asia +2023-03-29,587,6375,"[""Monitor"", ""Laptop"", ""Phone""]",3485.88,"{"""": ""19%""}",283035,1,Europe +2024-12-17,588,2539,"[""Tablet"", ""Keyboard""]",4684.81,"{""seasonal"": ""30%""}",224616,0,Asia +2023-08-24,589,9267,"[""Headphones"", ""Monitor"", ""Laptop""]",2547.63,"{"""": ""10%""}",101566,0,Europe +2023-06-17,590,8448,"[""Headphones"", ""Charger""]",1146.77,{},237144,0,Europe +2023-07-21,591,7940,"[""Phone""]",3478.83,"{"""": ""27%""}",1768,1,Asia +2024-12-02,592,4721,"[""Keyboard""]",2286.58,{},152098,0,Europe +2023-06-02,593,2585,"[""Laptop"", ""Tablet""]",2903.96,"{"""": ""29%""}",226648,1,Asia +2023-06-21,594,421,"[""Laptop"", ""Charger"", ""Monitor""]",1806.15,{},184391,1,Europe +2024-07-03,595,5342,"[""Charger"", ""Laptop""]",2319.42,{},77531,1,Asia +2023-04-22,596,2481,"[""Laptop""]",4834.47,{},47668,0,North America +2023-07-04,597,7942,"[""Monitor""]",4089.1,{},144743,1,Europe +2024-05-27,598,1333,"[""Headphones""]",2994.42,"{""seasonal"": ""9%""}",31071,1,Asia +2024-02-13,599,2257,"[""Keyboard"", ""Headphones""]",4601.59,"{""promo"": ""24%""}",125993,0,Africa +2024-02-03,600,789,"[""Keyboard""]",2891.66,{},225408,1,Asia +2024-02-03,601,4150,"[""Keyboard"", ""Tablet"", ""Phone""]",204.11,{},175104,1,North America +2023-10-17,602,6493,"[""Keyboard"", ""Laptop"", ""Monitor""]",1648.04,"{""seasonal"": ""27%""}",164637,1,Africa +2023-08-25,603,1491,"[""Charger""]",2978.83,"{""seasonal"": ""9%""}",231595,1,Europe +2024-04-26,604,5619,"[""Charger"", ""Monitor""]",4529.65,"{""loyalty"": ""28%""}",185176,0,Asia +2023-08-14,605,8691,"[""Charger"", ""Laptop""]",2454.96,"{"""": ""25%""}",165748,0,Europe +2023-05-01,606,5922,"[""Headphones"", ""Laptop"", ""Phone""]",4313.52,"{""seasonal"": ""10%""}",176293,0,South America +2024-11-16,607,6390,"[""Tablet""]",2905.82,{},34777,1,Asia +2024-09-29,608,6825,"[""Monitor"", ""Phone""]",1124.12,{},209324,0,Europe +2024-08-15,609,3624,"[""Keyboard"", ""Monitor"", ""Phone""]",3253.94,{},55152,1,South America +2023-07-07,610,2952,"[""Laptop"", ""Phone""]",808.43,{},249448,1,North America +2023-03-09,611,23,"[""Laptop"", ""Monitor""]",4293.9,"{"""": ""9%""}",15259,0,Europe +2023-10-16,612,7216,"[""Laptop"", ""Keyboard"", ""Charger""]",4327.13,{},217282,0,Africa +2023-09-08,613,6900,"[""Laptop"", ""Phone""]",4470.94,{},241300,0,South America +2024-11-15,614,571,"[""Charger""]",4359.49,"{""seasonal"": ""22%""}",4861,1,Africa +2023-03-15,615,7100,"[""Charger"", ""Laptop"", ""Tablet""]",3699.28,"{""loyalty"": ""8%""}",183377,0,South America +2023-05-13,616,8144,"[""Charger"", ""Phone""]",3668.76,"{""promo"": ""20%""}",24746,1,Europe +2024-10-17,617,7427,"[""Phone"", ""Tablet""]",4040.56,"{""seasonal"": ""18%""}",75553,1,North America +2023-02-24,618,9597,"[""Charger"", ""Phone""]",4190.15,"{""seasonal"": ""18%""}",274177,1,South America +2024-05-09,619,5556,"[""Laptop""]",3689.44,"{""seasonal"": ""18%""}",99087,1,Africa +2024-04-05,620,757,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",89.39,{},176782,0,South America +2023-12-04,621,2242,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3146.35,"{""seasonal"": ""16%""}",144458,1,Asia +2024-01-11,622,1754,"[""Laptop"", ""Keyboard""]",1701.54,{},297767,0,Africa +2023-03-13,623,7939,"[""Wireless Mouse""]",1301.04,"{""promo"": ""19%""}",181867,0,Asia +2024-10-14,624,469,"[""Phone"", ""Keyboard"", ""Tablet""]",1311.79,{},187400,1,South America +2023-04-11,625,2606,"[""Headphones"", ""Charger""]",4549.59,"{""promo"": ""30%""}",90552,1,Asia +2024-11-16,626,2682,"[""Wireless Mouse""]",1399.14,"{"""": ""14%""}",276451,1,North America +2024-11-03,627,4436,"[""Phone"", ""Headphones""]",3209.47,"{""loyalty"": ""5%""}",98352,1,Europe +2023-12-29,628,7983,"[""Wireless Mouse"", ""Laptop""]",4987.05,"{""promo"": ""29%""}",247630,0,Europe +2023-12-28,629,7227,"[""Headphones"", ""Laptop""]",3306.7,"{""loyalty"": ""17%""}",226877,0,North America +2024-12-23,630,9442,"[""Laptop"", ""Headphones""]",2422.01,"{"""": ""24%""}",211892,0,Europe +2024-08-24,631,1212,"[""Tablet"", ""Phone"", ""Monitor""]",2924.6,{},31069,0,Europe +2023-07-22,632,7329,"[""Monitor""]",3575.2,{},17306,1,Europe +2024-08-05,633,4857,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1886.33,"{""promo"": ""19%""}",216692,1,North America +2024-12-13,634,6713,"[""Phone""]",4004.51,{},285570,1,Europe +2024-08-21,635,1806,"[""Headphones""]",1028.66,{},279149,0,Europe +2024-07-24,636,7476,"[""Phone""]",312.39,{},121118,0,Europe +2023-05-15,637,1802,"[""Phone"", ""Wireless Mouse""]",162.35,{},52352,0,North America +2023-08-01,638,2419,"[""Phone"", ""Wireless Mouse""]",597.02,{},159967,0,North America +2023-08-14,639,8432,"[""Monitor"", ""Laptop""]",3958.6,{},256577,1,North America +2023-02-16,640,2204,"[""Wireless Mouse""]",1455.01,"{""loyalty"": ""23%""}",147288,1,Asia +2024-01-14,641,311,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2292.37,{},284803,1,Europe +2023-01-20,642,6675,"[""Laptop""]",486.43,{},293191,0,Asia +2024-08-08,643,6674,"[""Charger""]",250.87,{},176495,0,South America +2023-08-10,644,3965,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1366.84,"{""loyalty"": ""17%""}",116704,1,South America +2024-12-13,645,9220,"[""Keyboard"", ""Headphones"", ""Laptop""]",1645.72,"{""seasonal"": ""14%""}",18553,0,South America +2023-01-15,646,1594,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2138.15,"{""loyalty"": ""17%""}",197718,1,North America +2023-06-21,647,7387,"[""Tablet"", ""Laptop""]",536.89,"{"""": ""26%""}",45653,1,South America +2023-12-16,648,6758,"[""Monitor"", ""Phone""]",4478.52,{},67720,0,Europe +2024-01-23,649,8703,"[""Tablet""]",3370.36,{},250973,0,South America +2023-03-09,650,1654,"[""Laptop"", ""Monitor""]",2135.13,"{"""": ""16%""}",292096,1,Europe +2024-01-09,651,1918,"[""Wireless Mouse""]",198.25,"{"""": ""21%""}",235484,1,South America +2023-07-05,652,9659,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2935.03,{},239802,1,Asia +2024-11-08,653,5090,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4028.82,"{""promo"": ""23%""}",77706,1,South America +2024-09-09,654,4759,"[""Keyboard""]",4317.12,{},3790,0,South America +2024-08-25,655,4808,"[""Charger"", ""Tablet"", ""Laptop""]",298.47,{},9786,1,Asia +2023-05-24,656,6311,"[""Monitor"", ""Wireless Mouse""]",3840.08,{},88615,0,Asia +2023-06-06,657,4530,"[""Charger"", ""Keyboard"", ""Tablet""]",3015.58,"{"""": ""14%""}",279053,1,Asia +2023-11-30,658,5136,"[""Keyboard""]",4928.81,{},294211,1,Europe +2023-05-13,659,3521,"[""Keyboard"", ""Phone""]",1771.69,{},148034,1,South America +2024-02-23,660,3077,"[""Headphones"", ""Keyboard"", ""Laptop""]",4921.79,{},159926,1,Asia +2024-01-23,661,5834,"[""Tablet""]",1591.8,"{""loyalty"": ""20%""}",169109,1,Europe +2024-05-03,662,6784,"[""Monitor"", ""Phone""]",3945.28,{},174994,0,Africa +2023-07-13,663,9664,"[""Phone"", ""Monitor"", ""Charger""]",1957.77,{},209120,0,South America +2023-08-27,664,7320,"[""Headphones"", ""Tablet""]",932.11,"{""loyalty"": ""7%""}",134495,0,South America +2023-08-04,665,5732,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2461.19,{},32364,0,Africa +2023-03-12,666,3248,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4817.06,{},179718,1,Europe +2024-01-10,667,6805,"[""Monitor"", ""Laptop""]",2551.3,{},180047,0,North America +2024-02-11,668,2407,"[""Monitor"", ""Headphones""]",2602.71,"{""promo"": ""22%""}",48044,0,North America +2024-04-12,669,5658,"[""Laptop""]",3927.25,{},7766,1,South America +2023-02-01,670,661,"[""Laptop"", ""Charger""]",1102.29,{},84002,1,Africa +2024-02-25,671,3892,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3700.39,"{""promo"": ""29%""}",38910,1,Africa +2023-05-17,672,6115,"[""Laptop""]",3216.69,{},36437,0,Africa +2023-06-15,673,1552,"[""Wireless Mouse""]",291.07,"{""seasonal"": ""22%""}",179251,0,North America +2023-03-05,674,3322,"[""Monitor"", ""Wireless Mouse""]",4342.63,{},9918,1,Africa +2024-11-16,675,4891,"[""Laptop"", ""Charger""]",1706.09,"{"""": ""23%""}",222527,1,Asia +2024-02-02,676,504,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1411.15,"{""promo"": ""29%""}",18795,0,Africa +2023-03-18,677,5152,"[""Headphones"", ""Keyboard"", ""Phone""]",1958.62,"{""seasonal"": ""7%""}",206652,1,South America +2024-09-16,678,244,"[""Headphones"", ""Phone""]",3468.07,"{""promo"": ""6%""}",71713,1,Europe +2023-07-03,679,264,"[""Tablet"", ""Laptop""]",1096.37,{},149457,0,Europe +2024-01-07,680,5321,"[""Headphones"", ""Keyboard"", ""Laptop""]",2187.67,{},63209,0,South America +2023-01-01,681,8361,"[""Phone"", ""Headphones"", ""Charger""]",1011.3,"{""loyalty"": ""16%""}",6296,0,North America +2023-06-02,682,5747,"[""Monitor"", ""Keyboard""]",2540.79,"{""promo"": ""24%""}",244957,1,South America +2024-09-25,683,8483,"[""Phone"", ""Keyboard""]",363.3,"{""promo"": ""25%""}",142795,1,Africa +2023-10-19,684,9724,"[""Keyboard""]",936.35,"{""promo"": ""6%""}",26508,0,Europe +2023-10-21,685,6401,"[""Keyboard"", ""Phone"", ""Laptop""]",2219.3,"{""promo"": ""5%""}",237656,1,North America +2024-12-30,686,343,"[""Phone"", ""Tablet""]",69.11,"{""loyalty"": ""18%""}",158949,1,North America +2024-02-06,687,6324,"[""Headphones"", ""Phone"", ""Monitor""]",2752.51,{},43316,1,Africa +2023-11-19,688,845,"[""Tablet"", ""Headphones""]",3590.06,{},130166,1,North America +2023-03-20,689,9695,"[""Headphones""]",1149.83,{},237918,0,Africa +2024-02-22,690,6053,"[""Keyboard""]",1380.55,"{""loyalty"": ""14%""}",204683,1,South America +2024-10-12,691,5327,"[""Laptop"", ""Keyboard"", ""Tablet""]",562.37,{},52846,0,South America +2024-08-17,692,1912,"[""Laptop""]",1542.74,"{"""": ""10%""}",110781,1,Asia +2023-11-16,693,7566,"[""Wireless Mouse""]",4033.32,"{""loyalty"": ""23%""}",85861,0,Europe +2023-02-21,694,2095,"[""Phone""]",3158.74,{},267087,1,Europe +2024-12-13,695,7052,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3584.77,{},66300,1,South America +2024-05-02,696,4905,"[""Charger"", ""Headphones""]",2862.96,"{"""": ""24%""}",172373,0,South America +2023-11-25,697,7152,"[""Monitor"", ""Charger""]",2497.32,{},37639,0,Europe +2024-11-05,698,9882,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4303.37,{},4109,1,South America +2023-06-28,699,7968,"[""Headphones"", ""Monitor""]",835.21,"{""loyalty"": ""6%""}",174309,0,North America +2023-04-30,700,6210,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4427.68,"{""promo"": ""30%""}",175851,1,North America +2023-08-31,701,7784,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3757.16,"{"""": ""11%""}",123603,1,North America +2023-07-28,702,6442,"[""Tablet""]",4678.6,{},72095,0,North America +2024-10-13,703,9582,"[""Charger"", ""Tablet""]",95.47,{},201387,1,North America +2024-07-04,704,8975,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3443.16,{},135348,1,North America +2024-04-28,705,2081,"[""Headphones"", ""Laptop""]",1281.19,"{"""": ""20%""}",198829,0,Asia +2024-01-17,706,9123,"[""Keyboard"", ""Tablet""]",137.91,"{""loyalty"": ""11%""}",230753,1,South America +2023-03-19,707,5637,"[""Charger"", ""Keyboard""]",298.57,"{""promo"": ""6%""}",95621,0,North America +2024-10-21,708,6183,"[""Headphones"", ""Laptop""]",358.17,"{""loyalty"": ""14%""}",249757,1,South America +2023-11-04,709,5493,"[""Tablet""]",1952.93,{},87768,1,Africa +2023-02-16,710,2603,"[""Keyboard"", ""Monitor"", ""Headphones""]",222.92,"{""seasonal"": ""8%""}",131922,1,South America +2023-05-09,711,9184,"[""Headphones""]",3989.15,{},6960,0,North America +2024-04-07,712,701,"[""Wireless Mouse"", ""Tablet""]",3131.26,"{""promo"": ""30%""}",242562,0,Europe +2024-03-04,713,3973,"[""Charger"", ""Tablet""]",4427.5,{},174360,0,Asia +2024-07-26,714,4932,"[""Monitor"", ""Wireless Mouse""]",125.83,"{""promo"": ""9%""}",232361,0,North America +2023-12-23,715,3311,"[""Monitor"", ""Charger"", ""Laptop""]",2466.24,"{""promo"": ""10%""}",42218,1,Europe +2024-07-24,716,4547,"[""Charger"", ""Phone""]",3005.74,"{"""": ""14%""}",218939,0,Asia +2024-02-07,717,7192,"[""Charger""]",1869.08,{},161393,0,North America +2024-07-04,718,6224,"[""Monitor"", ""Charger""]",975.66,"{"""": ""21%""}",292539,0,North America +2023-06-22,719,2509,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4075.05,"{"""": ""11%""}",198686,0,North America +2024-08-13,720,3644,"[""Laptop"", ""Keyboard"", ""Charger""]",3640.3,{},295225,1,South America +2024-07-04,721,6405,"[""Laptop""]",3153.61,"{"""": ""7%""}",133595,1,Africa +2023-03-05,722,2538,"[""Wireless Mouse"", ""Laptop""]",2179.61,"{"""": ""14%""}",221219,1,Asia +2023-03-15,723,7595,"[""Headphones"", ""Tablet""]",2411.85,"{""seasonal"": ""20%""}",91822,0,South America +2023-02-06,724,1724,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3342.52,{},277784,1,Asia +2024-01-12,725,3159,"[""Keyboard""]",297.29,"{""promo"": ""24%""}",16754,0,Asia +2024-01-09,726,7955,"[""Keyboard"", ""Charger""]",1756.46,{},150203,0,North America +2024-08-17,727,1267,"[""Tablet"", ""Charger""]",1193.78,"{""seasonal"": ""30%""}",120082,1,North America +2024-06-06,728,6055,"[""Headphones"", ""Keyboard""]",3236.95,"{""promo"": ""23%""}",295021,0,South America +2024-11-20,729,2431,"[""Monitor"", ""Laptop""]",3666.15,{},276367,1,Europe +2024-05-18,730,6623,"[""Wireless Mouse""]",1982.67,"{""seasonal"": ""27%""}",169869,1,Africa +2023-04-29,731,4482,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2958.64,"{"""": ""19%""}",22812,1,South America +2023-11-03,732,3808,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",74.39,"{"""": ""17%""}",263571,0,South America +2023-06-16,733,5079,"[""Laptop""]",3455.31,"{""promo"": ""20%""}",219744,1,South America +2024-06-27,734,9993,"[""Headphones"", ""Phone""]",313.5,{},273866,0,Africa +2023-02-13,735,1831,"[""Tablet""]",1514.88,"{""seasonal"": ""14%""}",173172,0,North America +2024-06-10,736,5285,"[""Headphones""]",657.6,{},103576,1,South America +2024-12-15,737,6375,"[""Headphones"", ""Laptop"", ""Charger""]",4492.47,"{""loyalty"": ""21%""}",180325,0,Europe +2024-05-17,738,62,"[""Laptop""]",552.03,"{"""": ""7%""}",183561,1,North America +2023-02-19,739,703,"[""Laptop"", ""Keyboard"", ""Phone""]",4329.94,{},262152,1,Europe +2023-06-22,740,3222,"[""Wireless Mouse""]",2768.96,{},113974,0,North America +2024-06-29,741,8423,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4787.8,"{""loyalty"": ""7%""}",228250,1,Europe +2023-11-17,742,6469,"[""Wireless Mouse""]",1895.96,"{""seasonal"": ""5%""}",9506,0,Europe +2024-05-22,743,6836,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2168.92,{},36893,1,Africa +2023-06-29,744,5215,"[""Charger"", ""Tablet"", ""Laptop""]",2317.82,"{""promo"": ""30%""}",80586,0,North America +2023-06-06,745,3883,"[""Wireless Mouse"", ""Monitor""]",1557.0,{},153275,0,South America +2024-11-23,746,9959,"[""Headphones"", ""Monitor""]",4387.33,{},167455,0,Africa +2024-05-09,747,7987,"[""Keyboard"", ""Tablet"", ""Laptop""]",2117.89,"{"""": ""29%""}",65855,1,Europe +2023-02-04,748,6567,"[""Monitor"", ""Tablet"", ""Laptop""]",3404.41,"{""loyalty"": ""8%""}",108777,0,Europe +2024-05-11,749,6376,"[""Laptop"", ""Keyboard""]",4557.33,"{"""": ""18%""}",171516,1,Africa +2023-07-23,750,171,"[""Keyboard""]",943.24,"{""promo"": ""12%""}",220066,0,South America +2024-07-09,751,3092,"[""Headphones"", ""Keyboard"", ""Laptop""]",1020.17,"{""seasonal"": ""17%""}",218297,1,Africa +2023-01-24,752,1824,"[""Laptop""]",527.61,"{""loyalty"": ""20%""}",53748,1,Asia +2023-08-03,753,9932,"[""Charger"", ""Laptop""]",3671.61,"{""loyalty"": ""20%""}",87727,0,Africa +2024-03-21,754,9360,"[""Keyboard""]",4786.81,"{""seasonal"": ""5%""}",238967,1,North America +2024-06-10,755,9921,"[""Keyboard"", ""Charger""]",1275.58,"{""promo"": ""13%""}",231877,1,Europe +2024-03-03,756,5977,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3991.48,{},115114,0,South America +2023-06-06,757,8846,"[""Keyboard"", ""Tablet"", ""Headphones""]",3151.94,"{""seasonal"": ""26%""}",42735,1,South America +2024-08-31,758,8476,"[""Phone"", ""Keyboard""]",2386.44,"{""seasonal"": ""12%""}",185510,0,Africa +2023-10-18,759,5909,"[""Phone"", ""Monitor""]",920.59,"{""loyalty"": ""21%""}",232609,0,Asia +2023-05-30,760,7629,"[""Keyboard"", ""Headphones""]",3786.36,{},5048,1,Africa +2024-11-03,761,9788,"[""Monitor"", ""Headphones"", ""Charger""]",1923.01,{},128531,1,South America +2024-01-01,762,4749,"[""Headphones""]",1208.67,{},70014,1,Europe +2023-06-29,763,5680,"[""Laptop"", ""Wireless Mouse""]",869.6,{},219805,1,Asia +2024-02-29,764,2404,"[""Phone""]",2355.67,{},9025,0,North America +2024-11-25,765,5080,"[""Phone"", ""Tablet"", ""Headphones""]",3173.9,{},77932,0,Europe +2023-12-22,766,7647,"[""Headphones""]",270.48,{},112285,1,Africa +2024-03-02,767,640,"[""Wireless Mouse""]",3778.58,{},61399,1,Asia +2023-03-24,768,3788,"[""Phone"", ""Keyboard""]",2234.71,{},164231,1,Europe +2024-04-20,769,747,"[""Wireless Mouse"", ""Laptop""]",4058.9,{},210138,0,Africa +2023-07-28,770,8550,"[""Tablet"", ""Laptop"", ""Headphones""]",4955.31,{},106262,1,Europe +2024-05-08,771,6609,"[""Charger""]",397.62,{},192704,1,Europe +2024-10-11,772,2137,"[""Charger""]",3411.66,{},204571,1,Africa +2023-03-08,773,9760,"[""Monitor""]",1200.75,"{""promo"": ""14%""}",10811,1,North America +2023-11-30,774,9288,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2423.54,"{""promo"": ""22%""}",33795,1,Asia +2024-09-09,775,5695,"[""Laptop"", ""Headphones"", ""Charger""]",2848.91,{},282778,1,Europe +2023-04-30,776,1901,"[""Laptop"", ""Monitor""]",938.9,"{""promo"": ""20%""}",5413,0,Europe +2023-07-05,777,1774,"[""Monitor"", ""Keyboard""]",468.69,{},41406,0,North America +2023-03-28,778,9223,"[""Monitor""]",1589.11,"{""loyalty"": ""28%""}",191484,0,Asia +2024-02-07,779,9119,"[""Charger""]",1191.59,{},30624,0,Europe +2024-03-02,780,8757,"[""Wireless Mouse"", ""Keyboard""]",2465.84,{},156451,1,North America +2023-09-12,781,2496,"[""Phone""]",1500.92,"{"""": ""26%""}",171487,1,South America +2024-12-10,782,4351,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4810.95,"{""loyalty"": ""15%""}",278878,0,Africa +2023-02-25,783,4083,"[""Charger"", ""Headphones""]",2096.31,"{""seasonal"": ""5%""}",92391,0,Asia +2024-12-31,784,674,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1189.28,"{""loyalty"": ""9%""}",2400,0,South America +2024-06-14,785,2740,"[""Keyboard"", ""Phone"", ""Tablet""]",2695.83,"{""promo"": ""26%""}",259022,1,North America +2024-11-09,786,8884,"[""Wireless Mouse""]",899.24,"{""seasonal"": ""8%""}",69086,1,Asia +2024-12-10,787,5267,"[""Laptop"", ""Wireless Mouse""]",311.82,"{""loyalty"": ""7%""}",85129,0,Asia +2024-11-12,788,236,"[""Phone"", ""Monitor"", ""Laptop""]",3676.75,{},24877,1,Asia +2024-02-10,789,1291,"[""Laptop"", ""Tablet""]",721.06,{},146179,0,South America +2024-04-30,790,434,"[""Charger"", ""Phone""]",1865.42,"{""seasonal"": ""11%""}",265193,0,Africa +2023-04-05,791,8524,"[""Monitor"", ""Keyboard"", ""Laptop""]",597.98,"{"""": ""6%""}",264933,0,Africa +2023-04-11,792,6851,"[""Phone"", ""Charger"", ""Tablet""]",2504.12,{},281610,1,South America +2024-02-05,793,7036,"[""Wireless Mouse"", ""Monitor""]",3163.2,"{"""": ""20%""}",48582,0,Africa +2023-07-02,794,1986,"[""Keyboard""]",1757.11,{},108713,1,Asia +2023-06-29,795,3908,"[""Charger""]",2115.5,{},47652,1,North America +2023-12-29,796,9041,"[""Laptop""]",297.68,{},215293,0,Asia +2023-02-27,797,6320,"[""Monitor""]",2273.85,"{"""": ""16%""}",143847,1,Asia +2023-08-02,798,1394,"[""Laptop"", ""Charger"", ""Phone""]",2719.17,{},139719,0,Asia +2024-07-04,799,3313,"[""Phone""]",164.61,{},61765,1,Europe +2024-04-08,800,6297,"[""Tablet"", ""Wireless Mouse""]",2821.94,{},199973,0,Asia +2023-03-04,801,5367,"[""Monitor""]",816.17,"{""promo"": ""22%""}",256170,1,North America +2024-12-16,802,53,"[""Monitor"", ""Keyboard"", ""Charger""]",2111.65,"{"""": ""30%""}",49645,0,Asia +2024-06-05,803,9598,"[""Headphones"", ""Monitor""]",3242.01,"{""promo"": ""18%""}",92286,1,South America +2024-12-15,804,6091,"[""Wireless Mouse""]",595.72,{},152835,1,Asia +2024-09-28,805,9762,"[""Charger""]",4008.53,"{""seasonal"": ""15%""}",13748,0,Asia +2023-09-30,806,791,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3040.0,{},260617,0,Africa +2024-12-08,807,8897,"[""Phone"", ""Tablet""]",4364.21,{},208844,0,Asia +2024-12-27,808,5617,"[""Headphones"", ""Monitor""]",182.2,{},216400,0,North America +2024-01-27,809,7965,"[""Headphones""]",2590.96,{},159350,1,Asia +2023-06-28,810,6560,"[""Laptop"", ""Tablet""]",2385.25,"{""seasonal"": ""28%""}",255638,1,Asia +2024-03-05,811,2502,"[""Keyboard"", ""Tablet"", ""Monitor""]",4402.33,{},7376,1,Europe +2024-01-25,812,920,"[""Headphones"", ""Phone""]",371.49,"{""loyalty"": ""17%""}",159313,1,Europe +2024-05-01,813,5880,"[""Charger""]",4438.46,"{""loyalty"": ""20%""}",179608,1,Africa +2024-02-12,814,3256,"[""Monitor""]",1467.84,{},97886,0,South America +2024-11-25,815,5167,"[""Laptop"", ""Charger""]",191.3,"{"""": ""21%""}",99430,0,South America +2023-12-10,816,4811,"[""Phone""]",2461.6,{},210051,0,Europe +2023-06-12,817,1583,"[""Charger""]",4253.18,{},144336,1,Europe +2023-12-21,818,3892,"[""Headphones""]",1371.88,{},254423,0,Asia +2023-11-16,819,2249,"[""Phone"", ""Monitor""]",1821.12,"{""promo"": ""25%""}",30314,1,Asia +2024-06-09,820,6438,"[""Wireless Mouse"", ""Laptop""]",2831.92,"{""loyalty"": ""20%""}",31781,0,Asia +2023-08-09,821,3104,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4496.27,{},173890,1,South America +2024-08-26,822,7669,"[""Keyboard"", ""Charger""]",1468.83,"{""loyalty"": ""30%""}",190528,0,Europe +2023-01-18,823,2066,"[""Laptop""]",899.62,{},106453,0,South America +2024-05-15,824,8244,"[""Headphones"", ""Keyboard"", ""Monitor""]",4785.97,{},169900,0,Africa +2023-01-27,825,8894,"[""Keyboard"", ""Charger""]",4731.4,"{""seasonal"": ""30%""}",229641,1,Europe +2024-08-03,826,8204,"[""Keyboard"", ""Phone"", ""Tablet""]",195.23,"{"""": ""18%""}",227939,1,Africa +2024-01-11,827,2028,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1948.18,"{""promo"": ""12%""}",69152,1,South America +2024-03-19,828,7955,"[""Phone"", ""Keyboard"", ""Laptop""]",2549.57,"{""loyalty"": ""27%""}",256235,0,Africa +2023-05-19,829,9190,"[""Tablet"", ""Keyboard"", ""Monitor""]",1423.0,{},138568,1,South America +2023-05-21,830,5730,"[""Monitor""]",4456.28,"{""loyalty"": ""14%""}",159421,0,North America +2023-09-09,831,4259,"[""Wireless Mouse""]",3361.84,{},150226,1,North America +2023-10-26,832,9595,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4764.83,{},118333,1,Europe +2024-09-15,833,5349,"[""Headphones"", ""Keyboard""]",4965.72,{},298845,1,Asia +2023-12-14,834,8426,"[""Keyboard"", ""Wireless Mouse""]",2583.06,"{""seasonal"": ""15%""}",123485,0,Africa +2024-01-09,835,1445,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",369.49,"{""loyalty"": ""9%""}",157109,0,Europe +2023-06-24,836,1696,"[""Headphones"", ""Phone""]",3135.25,{},27124,0,Europe +2024-03-25,837,1445,"[""Monitor"", ""Headphones""]",1811.04,{},60339,0,Europe +2023-04-17,838,3323,"[""Wireless Mouse"", ""Laptop""]",2559.67,"{""loyalty"": ""18%""}",94108,1,Asia +2024-04-24,839,6907,"[""Charger"", ""Tablet""]",258.48,{},98729,0,North America +2024-11-11,840,8507,"[""Tablet""]",2963.46,"{""seasonal"": ""27%""}",15638,1,Africa +2024-09-09,841,7544,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4969.08,"{""seasonal"": ""7%""}",71678,1,Europe +2023-11-30,842,3013,"[""Phone""]",3327.07,{},103413,0,Europe +2023-09-17,843,1969,"[""Wireless Mouse"", ""Headphones""]",3785.35,"{""promo"": ""20%""}",128629,1,Europe +2023-10-22,844,247,"[""Laptop"", ""Monitor"", ""Tablet""]",1722.66,"{""loyalty"": ""5%""}",105801,0,South America +2023-08-21,845,7215,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",773.82,{},142500,1,Europe +2024-12-10,846,5877,"[""Tablet""]",1390.12,"{"""": ""23%""}",36672,1,Europe +2024-11-30,847,2699,"[""Monitor"", ""Keyboard""]",182.43,"{""promo"": ""13%""}",127679,1,Africa +2023-09-06,848,5105,"[""Laptop"", ""Keyboard""]",4485.2,{},18879,0,North America +2023-03-25,849,6295,"[""Monitor"", ""Wireless Mouse""]",183.32,"{""promo"": ""13%""}",272698,1,South America +2023-07-18,850,4975,"[""Headphones"", ""Tablet"", ""Monitor""]",2518.21,"{""loyalty"": ""11%""}",221590,0,Asia +2023-06-25,851,3443,"[""Laptop"", ""Charger""]",3767.97,"{""seasonal"": ""26%""}",45153,1,North America +2024-08-12,852,3994,"[""Wireless Mouse""]",1871.09,"{"""": ""10%""}",201873,0,North America +2024-06-09,853,7757,"[""Phone""]",4324.74,{},221685,0,North America +2024-03-05,854,861,"[""Keyboard"", ""Charger"", ""Phone""]",856.85,"{""seasonal"": ""21%""}",27132,1,Europe +2023-12-28,855,3772,"[""Tablet""]",506.49,"{""loyalty"": ""26%""}",145687,1,South America +2023-06-22,856,621,"[""Charger"", ""Laptop"", ""Tablet""]",1439.39,"{"""": ""14%""}",241929,1,South America +2024-01-29,857,5045,"[""Wireless Mouse"", ""Charger""]",2545.53,"{""loyalty"": ""25%""}",198371,1,Asia +2023-06-01,858,6767,"[""Monitor"", ""Charger"", ""Tablet""]",2800.8,{},225862,1,Europe +2023-04-10,859,9621,"[""Headphones"", ""Phone"", ""Monitor""]",1566.8,"{"""": ""26%""}",80070,1,South America +2023-01-27,860,2971,"[""Wireless Mouse"", ""Laptop""]",571.12,"{"""": ""21%""}",19783,0,North America +2023-05-23,861,3059,"[""Monitor"", ""Laptop"", ""Phone""]",1433.4,"{""loyalty"": ""28%""}",43534,0,Africa +2024-01-24,862,4650,"[""Keyboard"", ""Monitor"", ""Laptop""]",2939.73,"{""promo"": ""8%""}",39010,0,Africa +2023-02-12,863,6775,"[""Wireless Mouse""]",1024.0,{},245078,0,North America +2024-03-05,864,2469,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1352.04,"{""seasonal"": ""7%""}",70969,1,Asia +2024-10-04,865,1683,"[""Keyboard""]",342.46,"{""promo"": ""22%""}",143191,0,South America +2024-03-15,866,646,"[""Headphones"", ""Keyboard""]",4719.94,"{""loyalty"": ""17%""}",281187,1,Africa +2024-09-26,867,1669,"[""Keyboard""]",1817.05,{},191753,1,North America +2024-03-05,868,1515,"[""Tablet"", ""Keyboard"", ""Monitor""]",1089.49,"{""promo"": ""7%""}",205496,0,South America +2023-05-17,869,5961,"[""Charger"", ""Tablet""]",3043.08,"{""promo"": ""30%""}",57833,0,Africa +2024-02-23,870,443,"[""Headphones"", ""Phone"", ""Keyboard""]",4687.46,"{"""": ""7%""}",14350,1,North America +2024-02-01,871,9836,"[""Phone"", ""Headphones"", ""Keyboard""]",2187.62,"{"""": ""7%""}",60335,1,South America +2024-10-15,872,5592,"[""Tablet"", ""Charger"", ""Laptop""]",2791.57,{},150538,1,Africa +2023-11-28,873,2273,"[""Monitor"", ""Laptop""]",4199.14,"{""seasonal"": ""24%""}",184573,1,North America +2023-10-29,874,5309,"[""Laptop"", ""Tablet"", ""Keyboard""]",3462.19,{},225184,0,North America +2023-08-07,875,4492,"[""Charger"", ""Monitor"", ""Keyboard""]",3620.74,{},175177,0,Africa +2024-11-28,876,1530,"[""Headphones"", ""Wireless Mouse""]",1794.05,{},22010,0,Europe +2024-01-28,877,2680,"[""Wireless Mouse"", ""Laptop""]",1871.7,{},134913,1,Asia +2023-02-25,878,8227,"[""Tablet"", ""Keyboard"", ""Charger""]",830.47,{},103934,0,South America +2023-06-25,879,146,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1657.81,{},126192,1,South America +2024-06-13,880,897,"[""Monitor""]",904.81,{},255225,1,South America +2023-08-21,881,3187,"[""Laptop""]",1993.55,{},94461,0,South America +2024-04-02,882,4499,"[""Keyboard"", ""Phone"", ""Headphones""]",2446.25,{},177628,1,South America +2024-06-24,883,6685,"[""Wireless Mouse"", ""Charger""]",1018.2,"{""loyalty"": ""27%""}",263642,1,Africa +2023-11-21,884,1472,"[""Wireless Mouse"", ""Phone""]",1695.98,"{""promo"": ""13%""}",29235,0,North America +2024-04-02,885,3543,"[""Keyboard"", ""Headphones""]",2110.96,"{""seasonal"": ""15%""}",196224,0,South America +2024-12-19,886,3353,"[""Laptop"", ""Monitor"", ""Tablet""]",1704.84,"{""promo"": ""8%""}",295294,1,North America +2024-05-25,887,9322,"[""Tablet""]",3794.14,{},266338,1,Africa +2024-09-09,888,5305,"[""Headphones""]",608.14,"{""promo"": ""21%""}",182948,1,Europe +2023-08-13,889,2751,"[""Monitor""]",2061.3,"{""loyalty"": ""15%""}",182624,0,Africa +2023-12-26,890,8174,"[""Charger"", ""Monitor""]",391.98,{},230500,0,North America +2023-07-08,891,9519,"[""Phone"", ""Wireless Mouse""]",1023.45,{},40092,1,Africa +2024-05-15,892,6230,"[""Tablet"", ""Monitor""]",4291.35,"{"""": ""8%""}",152496,0,Europe +2023-02-27,893,2506,"[""Keyboard"", ""Phone"", ""Monitor""]",1763.66,"{""seasonal"": ""13%""}",4796,1,Africa +2023-06-22,894,4608,"[""Charger""]",1946.36,"{""promo"": ""24%""}",47148,1,Europe +2024-10-04,895,835,"[""Tablet"", ""Headphones""]",1429.5,"{"""": ""18%""}",108490,0,Europe +2024-03-25,896,1445,"[""Phone""]",3964.46,"{""loyalty"": ""9%""}",247184,1,Asia +2024-03-25,897,8797,"[""Monitor"", ""Tablet"", ""Headphones""]",2050.65,{},243825,1,South America +2024-04-26,898,2754,"[""Headphones""]",2465.27,"{""loyalty"": ""11%""}",146624,0,South America +2023-10-09,899,6575,"[""Tablet""]",3970.08,{},24156,1,North America +2024-05-02,900,4933,"[""Keyboard""]",1283.34,{},148353,0,Europe +2023-03-12,901,2242,"[""Tablet""]",2837.41,"{""promo"": ""26%""}",201432,1,Europe +2023-08-02,902,7029,"[""Laptop""]",399.43,{},57844,1,Asia +2023-02-13,903,4270,"[""Charger"", ""Laptop""]",4576.69,"{"""": ""8%""}",203903,1,South America +2023-12-05,904,1087,"[""Laptop"", ""Monitor"", ""Phone""]",1859.02,"{""seasonal"": ""29%""}",160963,1,Europe +2024-10-27,905,6975,"[""Wireless Mouse""]",3521.97,{},284418,0,South America +2024-09-07,906,2903,"[""Monitor"", ""Wireless Mouse""]",2831.38,{},89530,1,Africa +2024-01-24,907,2955,"[""Charger"", ""Wireless Mouse""]",4703.2,{},125479,0,Asia +2023-10-22,908,60,"[""Wireless Mouse"", ""Tablet""]",3268.57,"{""loyalty"": ""22%""}",228436,0,Europe +2023-11-16,909,4645,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2142.8,"{""seasonal"": ""25%""}",11433,0,South America +2023-05-31,910,9804,"[""Laptop"", ""Charger""]",4302.18,"{"""": ""23%""}",288746,0,South America +2024-11-21,911,4554,"[""Laptop"", ""Wireless Mouse""]",2769.93,{},98555,0,North America +2024-06-30,912,4064,"[""Tablet"", ""Charger"", ""Headphones""]",270.66,{},166813,0,South America +2024-04-12,913,8629,"[""Headphones""]",1155.0,"{""promo"": ""27%""}",288692,0,Asia +2024-01-01,914,4322,"[""Tablet""]",3194.81,"{""promo"": ""25%""}",126051,1,South America +2024-08-02,915,9876,"[""Monitor""]",690.96,{},182744,0,Europe +2024-09-15,916,6258,"[""Laptop"", ""Phone""]",1451.6,"{"""": ""13%""}",294663,1,North America +2023-08-16,917,1786,"[""Tablet"", ""Wireless Mouse""]",3008.62,{},89146,0,South America +2024-11-03,918,9406,"[""Headphones"", ""Phone""]",4518.12,{},1626,0,Asia +2024-04-11,919,8920,"[""Phone"", ""Keyboard""]",568.61,{},124621,1,Europe +2024-11-16,920,2053,"[""Phone"", ""Headphones"", ""Monitor""]",900.79,{},236727,0,Asia +2023-08-13,921,2914,"[""Charger"", ""Monitor"", ""Phone""]",4722.54,{},210062,1,Africa +2023-02-15,922,4430,"[""Keyboard""]",3330.05,"{""promo"": ""18%""}",140716,1,North America +2023-02-11,923,2345,"[""Monitor"", ""Charger""]",1555.74,"{""seasonal"": ""7%""}",136309,0,Europe +2024-03-13,924,1555,"[""Charger"", ""Keyboard""]",3131.67,"{""loyalty"": ""20%""}",215240,0,Africa +2023-07-29,925,4840,"[""Headphones"", ""Phone"", ""Tablet""]",4190.37,{},42621,1,Europe +2023-05-17,926,9438,"[""Keyboard"", ""Monitor""]",1329.94,"{""seasonal"": ""19%""}",104813,0,Asia +2024-02-27,927,6814,"[""Tablet""]",2734.6,{},72293,0,North America +2023-07-02,928,3958,"[""Monitor"", ""Charger"", ""Keyboard""]",2672.42,"{"""": ""26%""}",182713,0,Africa +2023-05-27,929,9897,"[""Wireless Mouse""]",518.49,"{""promo"": ""6%""}",292022,1,North America +2024-07-16,930,2505,"[""Charger"", ""Keyboard""]",692.59,{},170439,1,Africa +2023-09-02,931,2271,"[""Wireless Mouse""]",4948.69,"{""promo"": ""7%""}",13948,0,South America +2024-01-15,932,3803,"[""Phone""]",2631.33,{},122104,1,North America +2024-07-11,933,9238,"[""Keyboard"", ""Phone"", ""Tablet""]",2744.28,{},281763,0,Europe +2023-04-26,934,4856,"[""Headphones"", ""Wireless Mouse""]",4563.79,"{"""": ""29%""}",243156,1,Africa +2024-03-12,935,3342,"[""Phone""]",1424.03,{},229382,1,North America +2024-04-01,936,3125,"[""Headphones""]",588.74,{},202357,0,Asia +2023-02-16,937,4879,"[""Keyboard"", ""Phone""]",4786.49,{},270156,0,North America +2024-06-07,938,2774,"[""Charger""]",4442.96,{},106356,1,Africa +2023-09-05,939,3326,"[""Monitor""]",2831.3,"{""promo"": ""14%""}",204793,1,North America +2024-03-15,940,2657,"[""Monitor"", ""Keyboard"", ""Headphones""]",752.49,{},274897,0,Europe +2023-02-02,941,3484,"[""Keyboard"", ""Phone""]",3684.8,{},239146,1,Europe +2023-11-30,942,4775,"[""Phone""]",3021.94,{},217986,0,North America +2023-06-17,943,223,"[""Tablet"", ""Phone"", ""Charger""]",4517.54,"{"""": ""26%""}",87619,1,Asia +2024-09-11,944,8807,"[""Keyboard"", ""Monitor"", ""Phone""]",3402.73,{},144769,1,Europe +2023-11-04,945,2946,"[""Phone"", ""Tablet""]",487.91,{},41413,0,Europe +2023-09-19,946,4427,"[""Wireless Mouse"", ""Tablet""]",4296.85,{},78085,0,North America +2023-11-25,947,8655,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",169.6,"{""promo"": ""18%""}",254635,0,North America +2023-03-31,948,3762,"[""Phone"", ""Monitor""]",1068.25,{},180885,0,South America +2023-11-15,949,2529,"[""Laptop"", ""Keyboard"", ""Phone""]",4054.58,"{"""": ""21%""}",67219,1,Asia +2024-12-07,950,4070,"[""Headphones""]",2515.3,"{""seasonal"": ""7%""}",225055,0,South America +2023-03-20,951,5878,"[""Charger"", ""Monitor""]",3955.53,"{""promo"": ""24%""}",207111,0,South America +2024-05-24,952,301,"[""Laptop""]",2029.3,"{""seasonal"": ""23%""}",255825,1,Africa +2023-02-25,953,8757,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",510.64,{},139266,0,North America +2023-12-06,954,7714,"[""Laptop"", ""Tablet""]",3199.74,"{"""": ""9%""}",46619,0,Asia +2024-12-15,955,3267,"[""Headphones"", ""Laptop"", ""Phone""]",4183.15,"{""loyalty"": ""29%""}",3803,1,Europe +2023-09-10,956,436,"[""Monitor""]",444.58,{},145060,0,Asia +2023-02-17,957,4087,"[""Laptop""]",483.33,{},39012,1,Asia +2023-05-11,958,2802,"[""Monitor"", ""Tablet"", ""Laptop""]",577.27,{},112091,1,Asia +2023-04-30,959,8236,"[""Tablet"", ""Laptop"", ""Keyboard""]",215.14,{},210621,0,South America +2024-07-15,960,8164,"[""Phone"", ""Charger""]",2514.03,"{""promo"": ""19%""}",157568,0,North America +2023-04-02,961,1748,"[""Keyboard"", ""Charger""]",4590.94,"{""loyalty"": ""16%""}",82124,0,North America +2023-01-26,962,1936,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3231.65,{},17579,1,Africa +2023-10-11,963,2329,"[""Phone"", ""Headphones"", ""Charger""]",3992.79,"{"""": ""28%""}",124421,0,North America +2024-09-20,964,681,"[""Laptop""]",3874.78,{},102893,0,Europe +2024-03-14,965,9478,"[""Wireless Mouse""]",2591.28,"{""loyalty"": ""11%""}",132246,1,Africa +2023-12-05,966,5944,"[""Keyboard"", ""Headphones""]",3429.6,{},268999,0,Asia +2024-01-18,967,1246,"[""Headphones""]",2099.81,"{""seasonal"": ""29%""}",161193,1,Africa +2024-08-08,968,7311,"[""Keyboard"", ""Charger"", ""Monitor""]",4720.35,{},40911,0,Asia +2023-07-17,969,6324,"[""Laptop"", ""Monitor"", ""Tablet""]",4051.96,"{""seasonal"": ""13%""}",48588,1,North America +2024-06-05,970,3997,"[""Charger"", ""Tablet""]",1888.59,"{"""": ""17%""}",26858,0,Asia +2023-12-20,971,9032,"[""Wireless Mouse"", ""Charger""]",4509.73,"{"""": ""8%""}",66842,1,Europe +2023-01-08,972,2463,"[""Headphones""]",482.15,{},284840,1,South America +2024-06-23,973,6845,"[""Headphones""]",3790.07,"{"""": ""12%""}",235810,1,Europe +2024-04-28,974,3238,"[""Laptop"", ""Tablet"", ""Keyboard""]",4989.98,{},261577,0,Africa +2024-08-28,975,5559,"[""Laptop"", ""Phone"", ""Tablet""]",1212.77,{},222424,1,North America +2024-12-17,976,3901,"[""Wireless Mouse""]",2356.77,"{""seasonal"": ""28%""}",117804,1,South America +2024-11-27,977,9082,"[""Charger"", ""Keyboard""]",4615.39,"{""promo"": ""29%""}",3761,0,Africa +2024-05-08,978,7367,"[""Headphones"", ""Keyboard"", ""Phone""]",3340.28,{},218840,0,Africa +2023-07-21,979,3418,"[""Keyboard""]",345.78,{},100221,1,Africa +2024-01-01,980,4348,"[""Tablet"", ""Laptop"", ""Keyboard""]",2734.92,{},185492,1,Europe +2023-05-30,981,3436,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1870.88,{},134828,0,Asia +2024-11-19,982,8988,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",888.68,{},228092,0,Asia +2024-12-16,983,6874,"[""Charger"", ""Monitor""]",1794.23,"{""promo"": ""9%""}",265517,1,North America +2024-02-25,984,1267,"[""Tablet"", ""Phone"", ""Keyboard""]",647.98,"{"""": ""13%""}",114128,0,Europe +2024-08-17,985,2843,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2198.49,{},162069,0,Africa +2023-11-02,986,619,"[""Monitor"", ""Laptop""]",3517.44,"{""loyalty"": ""25%""}",6490,1,Africa +2024-09-23,987,2510,"[""Tablet"", ""Laptop"", ""Monitor""]",2726.97,{},151495,0,Africa +2024-06-09,988,3531,"[""Headphones"", ""Laptop""]",3429.28,"{""loyalty"": ""15%""}",286132,0,Europe +2023-11-23,989,6684,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4390.55,"{""loyalty"": ""8%""}",1256,0,Europe +2023-12-30,990,44,"[""Phone"", ""Tablet"", ""Keyboard""]",836.28,"{""promo"": ""16%""}",153219,1,South America +2023-09-10,991,8655,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4183.63,{},154942,0,Europe +2023-04-19,992,9008,"[""Charger"", ""Keyboard""]",2578.56,"{""seasonal"": ""26%""}",277833,1,Africa +2024-10-19,993,7668,"[""Wireless Mouse"", ""Phone""]",3308.05,{},15337,1,South America +2023-09-02,994,3247,"[""Phone"", ""Wireless Mouse""]",3270.9,{},81715,1,Asia +2023-12-30,995,6944,"[""Phone""]",2797.22,"{""promo"": ""22%""}",288296,0,Africa +2023-11-05,996,9805,"[""Monitor"", ""Charger"", ""Phone""]",3905.57,{},277535,1,Europe +2023-08-28,997,3222,"[""Tablet"", ""Headphones"", ""Phone""]",1731.57,"{""seasonal"": ""16%""}",80394,1,North America +2024-04-30,998,262,"[""Headphones""]",817.13,"{""loyalty"": ""21%""}",293942,0,Africa +2023-09-29,999,4440,"[""Monitor"", ""Keyboard"", ""Phone""]",338.66,"{""promo"": ""8%""}",11310,0,North America +2024-04-09,1000,7964,"[""Keyboard""]",823.09,{},45857,0,North America +2024-01-15,1001,1644,"[""Keyboard""]",4528.0,"{""promo"": ""11%""}",54566,1,Africa +2024-11-11,1002,3503,"[""Tablet"", ""Keyboard""]",2516.79,{},70360,0,Asia +2024-03-05,1003,7836,"[""Phone"", ""Charger"", ""Tablet""]",2512.58,"{""loyalty"": ""7%""}",156448,1,South America +2024-05-10,1004,3571,"[""Monitor"", ""Laptop""]",4216.4,"{""seasonal"": ""27%""}",43782,0,Africa +2024-07-16,1005,5032,"[""Wireless Mouse""]",4219.62,{},184297,1,Europe +2023-05-25,1006,9015,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",890.25,{},32922,0,Europe +2024-12-06,1007,7955,"[""Laptop"", ""Tablet""]",981.68,{},225716,1,South America +2023-07-10,1008,9914,"[""Laptop"", ""Monitor"", ""Headphones""]",2203.06,"{""loyalty"": ""21%""}",34868,0,Africa +2024-08-03,1009,2856,"[""Wireless Mouse""]",4400.27,{},252041,1,Asia +2023-07-08,1010,7020,"[""Charger"", ""Tablet""]",2828.52,{},185453,0,North America +2023-06-21,1011,3263,"[""Laptop"", ""Headphones"", ""Charger""]",3876.51,"{""loyalty"": ""18%""}",119421,0,Asia +2024-01-16,1012,9611,"[""Phone"", ""Laptop"", ""Tablet""]",118.91,"{""loyalty"": ""5%""}",145930,0,Asia +2023-04-09,1013,8051,"[""Monitor"", ""Laptop"", ""Keyboard""]",3974.6,{},255994,1,Europe +2023-12-05,1014,6878,"[""Laptop""]",636.35,{},115717,1,South America +2024-01-26,1015,9416,"[""Tablet""]",3238.39,{},129254,1,Asia +2024-03-14,1016,4799,"[""Wireless Mouse"", ""Monitor""]",2290.8,"{""seasonal"": ""25%""}",224381,0,Africa +2024-11-13,1017,8520,"[""Keyboard""]",2788.08,"{""loyalty"": ""14%""}",160389,1,South America +2023-11-15,1018,6695,"[""Headphones"", ""Monitor"", ""Charger""]",4735.11,"{""seasonal"": ""27%""}",64727,0,Asia +2024-11-30,1019,2837,"[""Keyboard"", ""Headphones""]",620.59,"{""loyalty"": ""27%""}",112377,1,Europe +2024-03-09,1020,4319,"[""Wireless Mouse""]",4807.01,{},77328,1,Asia +2023-09-12,1021,7819,"[""Laptop"", ""Monitor"", ""Headphones""]",4230.79,{},175701,0,North America +2024-06-17,1022,5096,"[""Laptop""]",3837.3,{},24763,0,Africa +2024-04-12,1023,8513,"[""Wireless Mouse"", ""Laptop""]",3908.87,{},158574,0,South America +2024-11-04,1024,9217,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3367.03,"{""loyalty"": ""10%""}",260840,0,South America +2024-04-18,1025,8486,"[""Headphones""]",4840.27,{},266100,1,Asia +2023-09-17,1026,688,"[""Phone"", ""Monitor"", ""Tablet""]",3809.58,"{""promo"": ""30%""}",113283,1,Africa +2023-10-04,1027,3912,"[""Keyboard""]",4187.13,"{""seasonal"": ""11%""}",109196,0,Africa +2023-04-01,1028,1878,"[""Keyboard""]",3695.04,{},259942,0,Africa +2024-04-20,1029,2661,"[""Wireless Mouse"", ""Phone""]",4620.96,"{""seasonal"": ""6%""}",252209,0,Europe +2023-02-18,1030,7727,"[""Laptop"", ""Keyboard""]",2716.23,"{"""": ""6%""}",205644,0,Europe +2024-08-26,1031,1050,"[""Monitor"", ""Phone"", ""Tablet""]",4952.33,{},24883,1,North America +2024-03-29,1032,7814,"[""Charger"", ""Monitor""]",2595.61,{},199388,1,North America +2024-08-05,1033,5755,"[""Headphones"", ""Keyboard"", ""Tablet""]",3918.69,"{""loyalty"": ""23%""}",141425,1,Africa +2023-11-05,1034,2217,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3591.57,"{""promo"": ""11%""}",278728,0,South America +2024-08-03,1035,9797,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",409.78,{},2857,1,North America +2023-08-25,1036,6956,"[""Laptop"", ""Wireless Mouse""]",3819.29,{},251066,1,Africa +2024-10-15,1037,150,"[""Monitor"", ""Phone""]",153.62,"{""promo"": ""9%""}",137323,0,North America +2024-02-02,1038,8503,"[""Phone""]",2203.97,"{""promo"": ""15%""}",277639,0,Asia +2023-08-19,1039,8349,"[""Wireless Mouse"", ""Laptop""]",2568.59,"{""seasonal"": ""25%""}",93024,1,North America +2023-11-11,1040,2167,"[""Monitor""]",1116.54,{},150433,1,Europe +2024-12-21,1041,2153,"[""Charger""]",4441.54,"{""promo"": ""7%""}",187449,0,Europe +2024-08-10,1042,8890,"[""Keyboard""]",927.63,{},69473,0,South America +2023-10-14,1043,9293,"[""Headphones"", ""Phone""]",1262.61,{},235700,0,Asia +2024-11-30,1044,9069,"[""Headphones"", ""Monitor""]",4147.87,"{""seasonal"": ""6%""}",297164,0,Asia +2023-10-16,1045,5856,"[""Wireless Mouse""]",2766.43,{},31900,0,North America +2024-03-26,1046,5167,"[""Wireless Mouse""]",2595.94,{},203332,1,North America +2024-12-22,1047,8938,"[""Keyboard"", ""Headphones""]",3702.19,"{"""": ""6%""}",272957,0,Asia +2023-04-20,1048,9926,"[""Laptop"", ""Wireless Mouse""]",1430.27,{},122447,1,South America +2023-04-23,1049,520,"[""Monitor"", ""Phone""]",2465.18,"{""promo"": ""14%""}",38154,0,North America +2024-10-06,1050,9820,"[""Monitor"", ""Laptop"", ""Charger""]",4980.14,{},62519,1,Europe +2024-12-03,1051,8549,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1992.57,{},92283,0,Asia +2024-12-29,1052,1008,"[""Charger"", ""Headphones""]",1075.62,{},194388,1,Africa +2023-08-04,1053,2982,"[""Phone"", ""Headphones""]",2240.9,"{"""": ""12%""}",83753,0,Europe +2023-07-09,1054,6895,"[""Charger"", ""Keyboard"", ""Monitor""]",4018.94,"{""promo"": ""15%""}",12612,1,Africa +2024-04-04,1055,2850,"[""Tablet""]",4625.99,"{""seasonal"": ""9%""}",299328,1,Europe +2023-04-26,1056,8163,"[""Wireless Mouse""]",2739.16,{},144841,0,Africa +2024-03-22,1057,9710,"[""Wireless Mouse"", ""Keyboard""]",3678.44,"{""seasonal"": ""19%""}",225483,0,Asia +2024-01-10,1058,5019,"[""Headphones""]",3537.45,"{""seasonal"": ""19%""}",95828,0,North America +2024-11-05,1059,6733,"[""Tablet""]",867.75,{},50837,0,Europe +2023-04-11,1060,2428,"[""Laptop""]",2286.37,{},150584,0,Europe +2023-11-22,1061,5331,"[""Monitor"", ""Tablet""]",184.38,"{"""": ""8%""}",179375,0,Asia +2024-08-01,1062,3991,"[""Monitor""]",4857.02,{},168578,0,Asia +2023-08-09,1063,4979,"[""Wireless Mouse"", ""Laptop""]",3452.25,"{""seasonal"": ""9%""}",100247,1,Africa +2024-09-26,1064,6503,"[""Charger"", ""Monitor"", ""Phone""]",1483.73,"{""loyalty"": ""28%""}",98620,1,Asia +2023-12-14,1065,1865,"[""Wireless Mouse"", ""Tablet""]",4143.71,{},176124,0,North America +2023-12-21,1066,2284,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",159.96,{},161897,1,South America +2023-06-09,1067,2436,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1023.62,"{""promo"": ""23%""}",9435,0,North America +2024-01-16,1068,341,"[""Keyboard"", ""Charger""]",602.56,{},264712,0,North America +2024-02-15,1069,3045,"[""Headphones"", ""Charger""]",3569.76,"{""promo"": ""30%""}",249179,0,Europe +2024-03-14,1070,8045,"[""Wireless Mouse"", ""Keyboard""]",909.46,{},30722,0,Europe +2024-01-23,1071,1186,"[""Headphones""]",849.98,"{""seasonal"": ""6%""}",258454,0,Africa +2024-11-16,1072,9257,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2293.66,{},157366,0,Asia +2024-07-05,1073,9053,"[""Tablet"", ""Charger"", ""Phone""]",3888.22,"{""promo"": ""24%""}",101286,1,North America +2024-04-04,1074,8542,"[""Tablet"", ""Laptop""]",1560.43,{},191518,0,Europe +2023-11-09,1075,4964,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1882.34,"{""loyalty"": ""27%""}",148880,1,North America +2023-10-07,1076,2774,"[""Wireless Mouse""]",4332.78,"{"""": ""6%""}",170563,0,Europe +2024-11-05,1077,6850,"[""Monitor"", ""Tablet"", ""Phone""]",3832.68,"{""seasonal"": ""16%""}",46914,0,Europe +2023-02-22,1078,2691,"[""Phone"", ""Monitor""]",162.39,"{""loyalty"": ""18%""}",219576,0,Asia +2024-09-11,1079,3313,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",267.12,{},272695,0,South America +2023-04-24,1080,9761,"[""Keyboard"", ""Wireless Mouse""]",4237.64,{},277318,1,Asia +2023-03-05,1081,4952,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",299.27,"{""seasonal"": ""9%""}",298397,0,Europe +2023-04-19,1082,2495,"[""Monitor"", ""Keyboard"", ""Laptop""]",2290.32,{},173714,0,Asia +2023-10-01,1083,5192,"[""Headphones"", ""Charger""]",3493.8,{},9882,0,Africa +2023-03-22,1084,8158,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4430.83,"{""loyalty"": ""27%""}",245523,1,North America +2023-12-11,1085,5039,"[""Keyboard""]",166.37,"{"""": ""22%""}",37581,0,Africa +2024-01-02,1086,6183,"[""Phone"", ""Laptop""]",4391.34,{},108123,1,North America +2024-12-03,1087,123,"[""Monitor"", ""Wireless Mouse""]",1155.82,"{"""": ""13%""}",82116,0,South America +2024-12-12,1088,6680,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1996.49,{},110346,0,Africa +2023-03-11,1089,7352,"[""Keyboard"", ""Monitor"", ""Charger""]",3998.58,{},135004,1,Europe +2024-01-04,1090,5460,"[""Phone"", ""Headphones""]",4910.65,"{""seasonal"": ""30%""}",185064,0,North America +2023-05-15,1091,9011,"[""Headphones"", ""Charger"", ""Laptop""]",4121.17,{},271509,1,North America +2023-12-31,1092,5149,"[""Wireless Mouse"", ""Phone""]",3312.93,{},111340,0,Africa +2023-06-02,1093,6885,"[""Charger"", ""Keyboard""]",2447.01,{},228130,0,Asia +2024-08-28,1094,5652,"[""Headphones""]",4120.59,{},44968,1,Asia +2023-01-19,1095,8397,"[""Tablet"", ""Phone"", ""Monitor""]",3905.5,"{""promo"": ""24%""}",147365,0,South America +2023-07-02,1096,5961,"[""Laptop"", ""Charger""]",4604.49,{},127105,0,Africa +2023-12-01,1097,8227,"[""Charger"", ""Laptop"", ""Monitor""]",2394.6,{},231168,1,Europe +2023-08-07,1098,7891,"[""Tablet""]",2700.12,"{"""": ""7%""}",211607,0,North America +2023-01-02,1099,5766,"[""Headphones""]",3120.67,{},234392,1,Europe +2024-03-30,1100,7018,"[""Phone"", ""Keyboard"", ""Charger""]",901.38,{},48647,0,Europe +2024-12-18,1101,1335,"[""Charger""]",1277.78,{},146806,0,Africa +2024-10-19,1102,7660,"[""Headphones"", ""Charger""]",406.18,{},205483,0,Europe +2023-09-25,1103,1851,"[""Headphones"", ""Monitor"", ""Charger""]",2942.13,"{"""": ""8%""}",203797,1,Africa +2023-09-28,1104,4645,"[""Headphones"", ""Phone""]",3467.26,{},101711,1,Europe +2024-04-08,1105,3206,"[""Phone""]",1043.29,{},19588,0,Africa +2023-03-02,1106,9868,"[""Keyboard""]",1444.51,{},17273,1,South America +2023-06-21,1107,5519,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3542.89,{},167777,1,Asia +2023-11-17,1108,8607,"[""Charger"", ""Keyboard"", ""Tablet""]",1451.1,"{""loyalty"": ""27%""}",124469,1,North America +2023-01-10,1109,2813,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1000.06,"{""loyalty"": ""22%""}",46685,0,Asia +2023-03-07,1110,7822,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4672.64,{},1072,1,North America +2023-08-25,1111,4292,"[""Monitor""]",1876.67,{},267596,1,North America +2023-06-25,1112,6104,"[""Keyboard"", ""Headphones"", ""Phone""]",2132.73,"{""loyalty"": ""9%""}",247244,0,Europe +2024-06-11,1113,5108,"[""Keyboard""]",4368.39,"{""promo"": ""28%""}",22966,1,South America +2023-03-24,1114,8792,"[""Tablet""]",732.17,"{""seasonal"": ""11%""}",74352,0,Europe +2023-05-25,1115,6472,"[""Keyboard"", ""Tablet""]",4102.92,"{""promo"": ""20%""}",97647,1,North America +2023-10-11,1116,5305,"[""Headphones"", ""Charger"", ""Monitor""]",367.73,"{"""": ""10%""}",196180,0,North America +2023-02-20,1117,2348,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3130.92,{},90896,1,Asia +2024-12-07,1118,5658,"[""Wireless Mouse"", ""Tablet""]",3576.37,"{""seasonal"": ""19%""}",176545,0,Europe +2024-10-09,1119,7224,"[""Tablet""]",1123.99,{},229426,1,South America +2024-11-04,1120,7390,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",845.38,{},234286,0,South America +2023-01-30,1121,8879,"[""Monitor"", ""Laptop""]",2177.63,{},59071,1,Asia +2023-12-17,1122,5482,"[""Phone"", ""Tablet""]",2968.71,{},30564,0,North America +2023-02-05,1123,2432,"[""Wireless Mouse""]",2739.18,"{""promo"": ""8%""}",119560,1,North America +2023-06-05,1124,2521,"[""Keyboard"", ""Monitor""]",2712.27,{},217500,1,Asia +2023-06-08,1125,9526,"[""Tablet"", ""Keyboard""]",4474.22,"{""loyalty"": ""19%""}",213198,1,South America +2024-07-14,1126,21,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3497.26,{},280695,1,Africa +2024-07-26,1127,3623,"[""Laptop""]",4011.54,{},275084,0,Asia +2024-03-02,1128,4504,"[""Charger"", ""Phone"", ""Monitor""]",3787.48,"{"""": ""8%""}",135975,1,Africa +2023-11-17,1129,2942,"[""Laptop"", ""Monitor"", ""Charger""]",1162.48,"{""seasonal"": ""28%""}",206277,0,Africa +2023-05-28,1130,3895,"[""Phone""]",919.09,{},16140,0,South America +2024-03-10,1131,7650,"[""Charger"", ""Laptop""]",1604.1,{},186507,0,South America +2023-07-18,1132,4005,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2012.19,{},111743,1,Africa +2023-09-09,1133,8720,"[""Tablet"", ""Headphones"", ""Keyboard""]",4734.97,{},140688,0,South America +2023-09-30,1134,6354,"[""Tablet"", ""Monitor"", ""Headphones""]",2663.2,{},236652,1,Africa +2023-06-03,1135,1409,"[""Tablet"", ""Wireless Mouse""]",445.35,"{"""": ""23%""}",2705,0,Europe +2023-02-26,1136,9751,"[""Monitor"", ""Headphones"", ""Tablet""]",1564.03,{},238686,0,South America +2024-09-03,1137,1748,"[""Monitor"", ""Wireless Mouse""]",2558.32,"{""loyalty"": ""20%""}",128850,0,North America +2023-06-30,1138,2822,"[""Laptop"", ""Headphones"", ""Charger""]",4930.57,"{""seasonal"": ""5%""}",196624,1,South America +2023-08-01,1139,454,"[""Phone""]",3456.13,"{""loyalty"": ""5%""}",264918,1,North America +2024-09-17,1140,4726,"[""Headphones""]",4158.6,{},276961,1,Asia +2024-09-07,1141,5415,"[""Monitor"", ""Laptop"", ""Headphones""]",777.55,"{""loyalty"": ""22%""}",265701,1,South America +2024-05-14,1142,6501,"[""Headphones""]",2610.5,{},92390,0,South America +2024-01-01,1143,3882,"[""Tablet""]",1721.45,"{"""": ""5%""}",132844,0,North America +2023-01-29,1144,8699,"[""Charger"", ""Keyboard""]",3904.41,{},106093,1,North America +2023-12-21,1145,5554,"[""Keyboard"", ""Tablet""]",1772.99,"{""seasonal"": ""19%""}",241046,0,Africa +2023-01-18,1146,4606,"[""Monitor""]",4752.81,{},241436,0,Asia +2024-10-19,1147,8602,"[""Tablet""]",1009.09,{},71577,1,North America +2024-11-08,1148,3456,"[""Wireless Mouse"", ""Tablet""]",4488.13,"{""promo"": ""12%""}",240757,1,Europe +2023-12-22,1149,8528,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",274.45,{},192105,0,South America +2024-09-24,1150,2654,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2999.65,{},103723,0,Europe +2023-11-30,1151,6192,"[""Headphones"", ""Charger""]",2516.37,{},217056,0,Europe +2024-12-09,1152,264,"[""Phone"", ""Laptop""]",3458.55,"{""loyalty"": ""12%""}",14488,1,Europe +2024-01-28,1153,1578,"[""Phone""]",2061.77,"{""loyalty"": ""26%""}",239051,0,Europe +2023-09-17,1154,3094,"[""Charger"", ""Monitor"", ""Phone""]",2615.92,{},207458,0,Africa +2024-07-23,1155,8619,"[""Headphones""]",111.15,{},230537,1,South America +2023-03-30,1156,3305,"[""Charger"", ""Monitor""]",4111.03,{},188504,1,North America +2024-07-13,1157,5232,"[""Headphones"", ""Laptop""]",3216.86,"{""seasonal"": ""28%""}",181978,0,South America +2024-03-10,1158,4146,"[""Keyboard""]",4270.38,{},213373,1,Asia +2023-02-08,1159,3363,"[""Headphones""]",3395.67,"{""loyalty"": ""26%""}",154177,1,Africa +2023-03-20,1160,9109,"[""Phone"", ""Tablet"", ""Charger""]",1153.94,{},275593,1,Asia +2023-12-30,1161,5365,"[""Monitor"", ""Charger""]",3274.6,"{"""": ""7%""}",63096,0,Asia +2024-05-04,1162,1556,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2543.04,{},126130,1,Europe +2024-01-31,1163,2113,"[""Tablet""]",2385.45,{},135182,1,Europe +2023-07-15,1164,8858,"[""Monitor""]",411.59,"{"""": ""14%""}",164998,0,Europe +2024-02-16,1165,1759,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3183.28,{},150945,0,Africa +2024-11-26,1166,4245,"[""Charger"", ""Laptop"", ""Monitor""]",4582.55,{},292973,1,Asia +2023-02-23,1167,7444,"[""Monitor""]",1737.86,"{""loyalty"": ""27%""}",109398,0,Asia +2024-02-07,1168,339,"[""Monitor"", ""Headphones""]",4621.19,"{""promo"": ""9%""}",101094,1,Europe +2023-06-06,1169,8,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1458.23,{},298754,0,Asia +2024-11-27,1170,155,"[""Laptop"", ""Charger""]",2766.53,{},268671,1,Europe +2024-03-11,1171,8509,"[""Charger"", ""Monitor"", ""Tablet""]",2720.99,"{"""": ""12%""}",257599,0,Asia +2024-09-18,1172,6687,"[""Keyboard""]",1669.95,"{"""": ""30%""}",246610,0,North America +2023-12-06,1173,9217,"[""Headphones"", ""Monitor"", ""Keyboard""]",1075.36,"{"""": ""11%""}",38795,1,North America +2024-07-19,1174,5110,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1806.73,"{""seasonal"": ""26%""}",259554,0,South America +2023-04-29,1175,8687,"[""Monitor"", ""Keyboard""]",4669.71,"{""promo"": ""26%""}",170053,1,Europe +2024-09-20,1176,5626,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3193.48,"{""seasonal"": ""7%""}",143988,0,Africa +2024-05-27,1177,8048,"[""Headphones"", ""Tablet""]",3635.99,{},156438,1,Africa +2023-02-07,1178,7768,"[""Phone"", ""Headphones""]",1207.08,"{""seasonal"": ""7%""}",21231,0,Europe +2024-10-14,1179,7363,"[""Headphones""]",4828.3,"{"""": ""22%""}",276244,0,Europe +2023-06-10,1180,3507,"[""Monitor"", ""Phone""]",1346.35,{},294555,0,Europe +2024-03-09,1181,7060,"[""Tablet""]",2709.94,{},67509,1,South America +2023-11-12,1182,9754,"[""Wireless Mouse"", ""Tablet""]",3123.68,"{""loyalty"": ""19%""}",50688,0,South America +2023-04-09,1183,6250,"[""Keyboard""]",285.22,"{""promo"": ""6%""}",44601,1,Europe +2024-07-29,1184,564,"[""Phone"", ""Monitor""]",273.44,{},110017,1,Africa +2023-02-21,1185,4333,"[""Keyboard""]",746.73,"{""loyalty"": ""22%""}",213464,1,Europe +2023-07-06,1186,6952,"[""Keyboard"", ""Headphones""]",2168.31,"{""loyalty"": ""30%""}",32149,0,South America +2023-04-01,1187,2595,"[""Monitor""]",4761.4,"{""loyalty"": ""15%""}",21327,1,Asia +2024-08-02,1188,8191,"[""Headphones""]",3052.64,"{""promo"": ""22%""}",221205,0,Asia +2024-02-15,1189,8303,"[""Tablet"", ""Charger""]",4399.1,{},111307,0,Africa +2024-12-11,1190,7314,"[""Charger"", ""Tablet""]",2067.94,{},20818,0,Europe +2023-02-07,1191,2487,"[""Headphones"", ""Tablet"", ""Keyboard""]",4028.89,"{""promo"": ""10%""}",108103,0,Africa +2023-05-25,1192,3657,"[""Tablet"", ""Wireless Mouse""]",1292.68,{},255298,1,South America +2024-12-26,1193,9956,"[""Tablet""]",978.04,{},165621,1,North America +2024-01-08,1194,7193,"[""Tablet""]",1673.48,"{"""": ""28%""}",106426,0,Africa +2023-10-08,1195,2325,"[""Headphones""]",839.07,{},20830,1,Europe +2024-06-03,1196,634,"[""Monitor"", ""Charger"", ""Headphones""]",3980.42,"{""loyalty"": ""6%""}",56272,1,Europe +2024-05-04,1197,5274,"[""Laptop"", ""Charger""]",3813.89,"{""promo"": ""29%""}",33208,1,Asia +2023-11-20,1198,1182,"[""Charger"", ""Tablet""]",4988.95,"{""promo"": ""8%""}",113566,1,Africa +2023-04-22,1199,8873,"[""Charger"", ""Headphones"", ""Keyboard""]",3420.21,{},10390,0,South America +2023-04-09,1200,2077,"[""Wireless Mouse""]",1753.18,{},102468,1,South America +2024-06-15,1201,7343,"[""Monitor"", ""Wireless Mouse""]",4849.33,"{""loyalty"": ""26%""}",68938,1,Africa +2023-11-02,1202,4032,"[""Headphones"", ""Phone"", ""Tablet""]",167.37,{},17313,0,Africa +2024-02-16,1203,2592,"[""Phone""]",1742.24,"{"""": ""25%""}",65898,0,Europe +2023-01-21,1204,3347,"[""Laptop"", ""Charger"", ""Phone""]",4997.15,"{"""": ""27%""}",169572,1,Europe +2024-03-11,1205,1785,"[""Wireless Mouse"", ""Tablet""]",401.92,"{""seasonal"": ""26%""}",225116,1,North America +2024-05-23,1206,6935,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2477.89,"{"""": ""7%""}",213699,0,South America +2023-01-07,1207,7075,"[""Phone"", ""Charger"", ""Monitor""]",3904.82,{},62823,1,Europe +2024-06-21,1208,3537,"[""Monitor"", ""Keyboard""]",3011.15,"{""loyalty"": ""6%""}",146385,0,Asia +2023-09-17,1209,5536,"[""Wireless Mouse"", ""Phone""]",4747.56,{},260601,1,North America +2024-05-01,1210,8427,"[""Charger""]",3876.78,{},266714,0,North America +2023-03-15,1211,8693,"[""Charger""]",1388.42,{},238963,0,Africa +2024-11-23,1212,3605,"[""Headphones"", ""Keyboard""]",3252.46,"{""promo"": ""19%""}",16576,1,Asia +2024-02-21,1213,3613,"[""Charger""]",1501.94,{},35181,0,Africa +2023-03-22,1214,1209,"[""Tablet"", ""Wireless Mouse""]",3747.06,"{""seasonal"": ""26%""}",70216,1,Africa +2024-06-22,1215,2087,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2983.11,"{""seasonal"": ""20%""}",30756,1,South America +2023-06-20,1216,4412,"[""Phone"", ""Monitor""]",3020.28,{},141185,0,South America +2024-05-16,1217,6911,"[""Headphones""]",2345.04,"{""promo"": ""8%""}",12176,1,North America +2023-10-09,1218,5007,"[""Monitor""]",1784.06,"{""seasonal"": ""10%""}",25973,0,North America +2024-08-25,1219,5428,"[""Laptop"", ""Monitor"", ""Tablet""]",1012.33,{},102197,0,South America +2023-07-09,1220,9873,"[""Charger"", ""Laptop""]",1149.67,{},171414,1,Asia +2023-01-02,1221,143,"[""Phone"", ""Monitor"", ""Charger""]",4323.56,{},165814,0,Europe +2024-06-14,1222,16,"[""Charger""]",1724.66,{},215925,0,South America +2024-07-18,1223,8008,"[""Headphones"", ""Charger"", ""Keyboard""]",4344.97,"{""loyalty"": ""15%""}",115892,0,Asia +2023-06-13,1224,1303,"[""Wireless Mouse"", ""Phone""]",4471.53,{},42896,0,Asia +2024-01-22,1225,3993,"[""Tablet""]",1999.29,"{""seasonal"": ""13%""}",228355,1,Africa +2024-04-14,1226,9006,"[""Keyboard""]",3942.7,"{""loyalty"": ""8%""}",195313,0,South America +2024-12-11,1227,8437,"[""Laptop""]",4315.88,{},52062,0,Africa +2024-10-25,1228,6125,"[""Phone"", ""Laptop""]",2186.16,"{""promo"": ""12%""}",76414,1,North America +2023-01-16,1229,4994,"[""Tablet"", ""Phone""]",4081.32,{},29900,0,Europe +2023-10-22,1230,9995,"[""Charger"", ""Laptop""]",1670.36,"{""loyalty"": ""16%""}",143715,1,South America +2024-03-16,1231,1859,"[""Wireless Mouse"", ""Monitor""]",4744.93,{},256919,0,Africa +2024-05-28,1232,2637,"[""Headphones"", ""Keyboard""]",63.64,{},8512,1,Europe +2024-12-10,1233,2377,"[""Laptop"", ""Charger""]",4012.81,{},250030,1,North America +2023-07-01,1234,7730,"[""Wireless Mouse""]",3734.73,"{"""": ""28%""}",92274,1,North America +2024-10-01,1235,6394,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3544.47,"{""loyalty"": ""12%""}",238320,0,South America +2024-09-03,1236,8860,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",433.4,"{""seasonal"": ""6%""}",231883,0,South America +2023-01-03,1237,7496,"[""Headphones"", ""Phone""]",2632.4,"{""seasonal"": ""5%""}",286301,1,Asia +2024-07-12,1238,1955,"[""Keyboard""]",1142.66,"{""promo"": ""28%""}",161375,1,Africa +2024-07-29,1239,4208,"[""Wireless Mouse""]",3863.09,{},199249,0,North America +2023-04-24,1240,9851,"[""Phone""]",3170.14,"{"""": ""29%""}",125342,0,Africa +2024-07-16,1241,1941,"[""Tablet"", ""Headphones"", ""Charger""]",4634.96,"{"""": ""25%""}",292047,0,Europe +2024-03-01,1242,7421,"[""Monitor""]",241.84,{},59640,0,South America +2023-09-16,1243,1424,"[""Laptop""]",179.83,"{""promo"": ""14%""}",143635,1,Asia +2024-01-15,1244,8809,"[""Monitor"", ""Tablet""]",1703.59,{},18974,1,South America +2024-04-25,1245,9235,"[""Charger"", ""Monitor"", ""Tablet""]",4839.04,"{""seasonal"": ""29%""}",193533,1,Asia +2024-01-01,1246,6759,"[""Monitor"", ""Wireless Mouse""]",2705.65,{},41397,0,Africa +2024-07-05,1247,3512,"[""Wireless Mouse""]",1095.29,"{""loyalty"": ""7%""}",209086,1,Europe +2023-02-15,1248,6553,"[""Laptop"", ""Monitor""]",4528.97,{},28505,1,Africa +2023-08-26,1249,5481,"[""Laptop""]",330.43,{},220681,1,North America +2023-12-24,1250,4540,"[""Wireless Mouse""]",4100.04,"{""loyalty"": ""16%""}",56454,0,Africa +2023-01-21,1251,3292,"[""Keyboard""]",1591.45,{},210582,0,Asia +2023-06-14,1252,2815,"[""Monitor""]",1311.36,{},242574,0,Asia +2024-09-04,1253,6926,"[""Tablet"", ""Charger""]",534.17,"{""seasonal"": ""23%""}",79805,0,Africa +2024-06-27,1254,9038,"[""Laptop"", ""Charger""]",3015.79,{},70353,0,Asia +2023-04-28,1255,182,"[""Headphones"", ""Charger"", ""Tablet""]",1507.72,{},23186,1,Asia +2024-10-14,1256,1449,"[""Phone""]",3565.61,"{""seasonal"": ""23%""}",5850,0,Europe +2023-12-30,1257,2421,"[""Laptop"", ""Headphones""]",256.98,{},90099,1,Asia +2023-01-23,1258,7681,"[""Tablet"", ""Laptop""]",4831.89,"{""seasonal"": ""22%""}",74285,1,North America +2023-06-22,1259,2635,"[""Tablet"", ""Charger""]",3742.16,"{""seasonal"": ""13%""}",123744,0,Asia +2023-05-24,1260,2214,"[""Laptop"", ""Keyboard""]",4136.43,{},297786,0,South America +2023-11-23,1261,5128,"[""Monitor"", ""Keyboard""]",4424.52,"{""loyalty"": ""12%""}",40961,0,South America +2024-06-26,1262,3175,"[""Tablet""]",332.97,{},15800,1,South America +2024-02-03,1263,6974,"[""Headphones"", ""Phone"", ""Keyboard""]",1951.88,"{""loyalty"": ""17%""}",181666,1,Europe +2023-07-30,1264,2444,"[""Keyboard"", ""Tablet"", ""Monitor""]",218.79,{},101663,1,Asia +2023-09-26,1265,6415,"[""Monitor"", ""Charger""]",470.61,"{""loyalty"": ""18%""}",222200,0,Africa +2024-03-27,1266,8305,"[""Phone""]",1235.96,{},109934,1,South America +2024-01-13,1267,9433,"[""Headphones""]",4735.67,{},253465,0,North America +2024-03-18,1268,9424,"[""Wireless Mouse"", ""Phone""]",4119.1,{},113147,0,South America +2024-04-28,1269,2088,"[""Laptop""]",3896.44,"{"""": ""13%""}",10854,1,South America +2024-06-16,1270,4810,"[""Monitor"", ""Tablet"", ""Keyboard""]",4830.94,{},79882,0,North America +2023-12-14,1271,1196,"[""Laptop""]",4419.95,{},231955,1,South America +2023-04-25,1272,2491,"[""Headphones"", ""Phone"", ""Keyboard""]",1734.28,{},213642,0,Africa +2023-11-02,1273,7448,"[""Laptop""]",4604.12,{},40467,1,Europe +2024-12-27,1274,2570,"[""Monitor"", ""Keyboard"", ""Headphones""]",1070.32,"{"""": ""30%""}",296128,0,Europe +2024-06-11,1275,2493,"[""Monitor"", ""Headphones""]",4122.08,"{"""": ""13%""}",47130,0,Asia +2023-06-26,1276,9241,"[""Laptop"", ""Keyboard"", ""Monitor""]",1250.29,"{""loyalty"": ""7%""}",90381,1,Europe +2023-02-18,1277,1039,"[""Keyboard"", ""Phone""]",3763.44,{},201152,1,Asia +2024-09-13,1278,2156,"[""Keyboard"", ""Headphones"", ""Laptop""]",1386.58,"{""loyalty"": ""26%""}",88599,0,Europe +2024-05-30,1279,6653,"[""Phone""]",333.02,"{""loyalty"": ""21%""}",6107,1,Europe +2024-08-13,1280,4170,"[""Headphones"", ""Charger""]",4778.31,"{""promo"": ""28%""}",227570,1,Europe +2023-01-14,1281,612,"[""Monitor"", ""Laptop"", ""Keyboard""]",288.91,"{"""": ""14%""}",66535,1,South America +2023-04-06,1282,1830,"[""Phone""]",3742.22,"{""seasonal"": ""19%""}",55718,0,Africa +2023-01-10,1283,588,"[""Headphones"", ""Keyboard""]",3620.17,{},126204,0,Europe +2024-02-14,1284,1856,"[""Tablet"", ""Laptop""]",1795.38,{},169908,0,Asia +2024-01-08,1285,9027,"[""Headphones""]",4413.77,{},92641,1,Europe +2023-04-30,1286,2288,"[""Monitor""]",2451.79,{},281985,0,Africa +2023-03-15,1287,558,"[""Monitor"", ""Tablet""]",1473.63,{},47034,1,South America +2023-07-01,1288,4289,"[""Phone"", ""Laptop"", ""Keyboard""]",612.31,"{""loyalty"": ""10%""}",132875,1,Asia +2023-11-13,1289,973,"[""Wireless Mouse""]",2928.54,{},172692,0,Africa +2024-12-24,1290,2588,"[""Laptop"", ""Wireless Mouse""]",704.13,{},33458,0,Asia +2024-01-07,1291,651,"[""Tablet""]",1784.71,{},195729,1,Africa +2023-10-30,1292,8257,"[""Laptop"", ""Keyboard""]",3856.59,{},189413,0,North America +2023-01-10,1293,7864,"[""Tablet"", ""Charger"", ""Laptop""]",3029.45,{},245527,0,Europe +2023-09-19,1294,8930,"[""Keyboard"", ""Charger""]",3774.59,"{""loyalty"": ""24%""}",142928,0,Asia +2024-11-12,1295,1609,"[""Headphones""]",2239.03,"{""seasonal"": ""19%""}",147802,1,South America +2024-08-23,1296,1750,"[""Laptop""]",3197.19,{},184304,0,North America +2023-03-03,1297,6940,"[""Wireless Mouse"", ""Tablet""]",1509.8,{},208184,0,Asia +2024-11-13,1298,6845,"[""Headphones"", ""Monitor""]",4695.94,{},143456,1,North America +2024-12-30,1299,845,"[""Phone"", ""Headphones""]",353.5,"{""loyalty"": ""28%""}",33955,0,North America +2024-09-05,1300,2306,"[""Headphones""]",3067.9,{},196236,1,Asia +2023-12-29,1301,9791,"[""Phone"", ""Wireless Mouse""]",3645.77,{},3553,1,Europe +2023-09-23,1302,2222,"[""Monitor""]",3402.53,"{"""": ""29%""}",196555,0,South America +2023-12-27,1303,6705,"[""Headphones"", ""Charger""]",1832.0,"{""loyalty"": ""11%""}",178418,1,Asia +2024-06-09,1304,9381,"[""Charger"", ""Monitor"", ""Phone""]",4517.19,"{"""": ""9%""}",242491,1,Asia +2023-06-07,1305,85,"[""Tablet"", ""Headphones"", ""Charger""]",380.3,{},45522,1,Asia +2024-04-27,1306,936,"[""Keyboard"", ""Tablet"", ""Phone""]",1735.67,"{""promo"": ""6%""}",61736,1,Asia +2023-10-31,1307,5711,"[""Headphones"", ""Charger""]",652.12,{},53677,1,Asia +2024-03-26,1308,5047,"[""Phone""]",1990.59,"{""loyalty"": ""30%""}",210150,0,Asia +2024-09-05,1309,9918,"[""Laptop"", ""Tablet"", ""Keyboard""]",4209.74,{},241373,0,South America +2023-03-08,1310,3466,"[""Laptop"", ""Phone""]",1860.59,"{""seasonal"": ""12%""}",57222,1,Europe +2023-02-10,1311,9472,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3114.43,"{""seasonal"": ""8%""}",23892,0,Asia +2023-07-24,1312,8720,"[""Phone"", ""Monitor"", ""Headphones""]",141.83,"{""loyalty"": ""12%""}",223020,0,North America +2023-02-18,1313,8751,"[""Headphones"", ""Phone"", ""Laptop""]",3090.56,{},209928,1,Africa +2023-03-30,1314,7572,"[""Headphones""]",1680.81,{},282855,1,Africa +2024-12-11,1315,864,"[""Phone""]",2974.02,{},172057,0,North America +2024-05-06,1316,6047,"[""Tablet"", ""Headphones""]",2157.37,"{""loyalty"": ""22%""}",91540,1,North America +2024-07-30,1317,5613,"[""Monitor"", ""Tablet"", ""Charger""]",573.97,{},125805,1,North America +2023-12-18,1318,6441,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4867.68,"{"""": ""29%""}",20232,0,Europe +2023-06-01,1319,1032,"[""Tablet"", ""Laptop"", ""Monitor""]",4088.82,"{""promo"": ""10%""}",130765,1,Europe +2023-04-07,1320,9877,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4607.22,{},203699,1,North America +2024-01-02,1321,7553,"[""Tablet"", ""Laptop""]",3203.34,"{""promo"": ""18%""}",227528,0,Africa +2023-03-15,1322,8342,"[""Headphones"", ""Monitor"", ""Laptop""]",3848.2,"{""seasonal"": ""14%""}",276162,0,Asia +2024-10-19,1323,9617,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2867.53,{},76497,0,Africa +2023-06-27,1324,4157,"[""Tablet"", ""Keyboard""]",384.61,{},164643,1,Africa +2023-11-28,1325,1301,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2725.07,"{""promo"": ""22%""}",292214,0,North America +2024-06-17,1326,307,"[""Tablet"", ""Phone"", ""Laptop""]",3727.19,"{""promo"": ""10%""}",208503,0,North America +2023-12-31,1327,9064,"[""Monitor"", ""Keyboard""]",4268.59,{},182695,0,North America +2023-04-03,1328,7893,"[""Headphones""]",4838.72,"{""loyalty"": ""11%""}",140344,0,South America +2024-03-30,1329,401,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",416.19,{},96147,1,Africa +2023-01-23,1330,895,"[""Charger""]",4495.32,{},271232,1,Asia +2023-09-11,1331,9323,"[""Phone""]",878.8,"{""loyalty"": ""17%""}",110935,0,Europe +2023-11-12,1332,7024,"[""Laptop"", ""Monitor""]",4190.98,{},253916,1,South America +2024-06-29,1333,8896,"[""Monitor""]",192.22,{},171713,0,Europe +2024-03-28,1334,4404,"[""Charger"", ""Wireless Mouse""]",941.23,"{""seasonal"": ""18%""}",207855,1,Asia +2024-07-26,1335,7189,"[""Headphones"", ""Tablet"", ""Keyboard""]",4043.07,"{""loyalty"": ""26%""}",138617,0,Europe +2023-05-01,1336,1606,"[""Headphones"", ""Phone"", ""Monitor""]",136.67,"{""loyalty"": ""27%""}",100762,0,Europe +2023-01-09,1337,1561,"[""Laptop"", ""Keyboard"", ""Charger""]",2932.78,"{"""": ""24%""}",172433,0,Europe +2023-05-19,1338,7359,"[""Charger"", ""Monitor""]",3396.02,{},264657,0,North America +2024-10-01,1339,7678,"[""Charger"", ""Headphones"", ""Monitor""]",4145.23,{},170140,1,North America +2024-07-14,1340,542,"[""Tablet"", ""Monitor"", ""Keyboard""]",2592.29,{},41125,0,South America +2023-06-18,1341,869,"[""Keyboard"", ""Phone""]",523.58,"{""loyalty"": ""14%""}",184531,0,Africa +2023-05-28,1342,2303,"[""Laptop""]",2831.72,{},88059,1,Europe +2023-06-15,1343,1917,"[""Keyboard""]",1181.14,{},111198,0,North America +2023-05-15,1344,48,"[""Tablet"", ""Phone"", ""Laptop""]",3321.07,{},153090,1,Europe +2024-10-01,1345,2722,"[""Laptop"", ""Monitor""]",3830.22,"{""seasonal"": ""8%""}",59802,1,Europe +2024-11-08,1346,8887,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1459.78,"{""loyalty"": ""21%""}",284851,0,Europe +2023-07-24,1347,9384,"[""Monitor"", ""Headphones"", ""Charger""]",1275.04,"{""loyalty"": ""8%""}",174120,1,Africa +2024-01-02,1348,9830,"[""Headphones"", ""Charger""]",1610.14,{},140188,1,Asia +2023-03-22,1349,6098,"[""Monitor""]",2678.46,"{"""": ""17%""}",97229,1,Asia +2024-04-06,1350,3247,"[""Laptop""]",1126.1,{},76979,1,South America +2024-03-18,1351,7865,"[""Headphones"", ""Monitor""]",4783.09,"{"""": ""12%""}",83403,1,Africa +2024-08-07,1352,4279,"[""Headphones""]",2763.48,"{""loyalty"": ""6%""}",127945,1,South America +2024-12-20,1353,4228,"[""Tablet""]",1043.84,{},91001,1,Europe +2023-12-27,1354,7475,"[""Monitor""]",991.64,{},231460,1,Africa +2024-07-31,1355,749,"[""Keyboard""]",437.24,{},233931,1,South America +2023-10-12,1356,764,"[""Headphones""]",4045.02,"{"""": ""26%""}",72745,0,Africa +2023-12-08,1357,3667,"[""Headphones""]",2530.67,{},71678,0,South America +2023-08-05,1358,5819,"[""Tablet""]",3908.59,{},173699,0,South America +2023-11-23,1359,5774,"[""Keyboard""]",884.78,{},54936,1,South America +2024-07-28,1360,3707,"[""Headphones"", ""Keyboard"", ""Charger""]",4188.38,{},84243,0,Europe +2023-11-09,1361,2089,"[""Monitor"", ""Charger""]",1017.13,{},57365,1,North America +2023-10-02,1362,7698,"[""Laptop""]",1486.21,"{"""": ""17%""}",196897,0,Africa +2023-05-16,1363,872,"[""Phone"", ""Charger"", ""Laptop""]",2131.19,{},110888,1,South America +2023-06-05,1364,210,"[""Headphones"", ""Tablet""]",4675.81,{},218328,1,Europe +2023-07-29,1365,6934,"[""Laptop"", ""Headphones""]",442.5,"{""seasonal"": ""17%""}",206979,1,South America +2024-03-08,1366,2467,"[""Phone""]",1352.5,{},144352,1,North America +2024-10-05,1367,3764,"[""Laptop"", ""Monitor""]",3028.61,{},280559,1,Africa +2024-07-15,1368,9535,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",306.46,"{"""": ""10%""}",109236,1,Africa +2024-09-03,1369,8792,"[""Headphones"", ""Monitor"", ""Phone""]",4821.89,{},269755,0,South America +2024-09-17,1370,4998,"[""Tablet"", ""Headphones"", ""Charger""]",3136.43,{},69640,0,Asia +2024-04-05,1371,5923,"[""Keyboard""]",3258.6,"{""promo"": ""28%""}",268545,0,North America +2024-01-23,1372,6806,"[""Laptop"", ""Charger"", ""Headphones""]",3545.5,{},55881,1,South America +2024-06-20,1373,3387,"[""Charger"", ""Tablet""]",3771.29,"{""loyalty"": ""6%""}",91350,1,South America +2023-11-17,1374,9258,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",304.4,"{"""": ""14%""}",186449,0,South America +2023-05-19,1375,1806,"[""Wireless Mouse""]",3636.02,{},184517,1,North America +2023-06-27,1376,8873,"[""Wireless Mouse"", ""Laptop""]",4347.93,"{""promo"": ""12%""}",168798,0,Europe +2023-08-28,1377,4328,"[""Wireless Mouse"", ""Headphones""]",2042.64,{},293880,1,South America +2023-01-19,1378,3050,"[""Phone""]",3995.18,{},149427,1,Africa +2023-08-16,1379,8043,"[""Monitor"", ""Tablet"", ""Charger""]",3392.73,{},269431,0,South America +2023-09-24,1380,4060,"[""Tablet"", ""Laptop""]",2486.2,"{""promo"": ""17%""}",123871,1,North America +2024-08-17,1381,6073,"[""Keyboard"", ""Charger"", ""Laptop""]",337.51,"{""promo"": ""17%""}",65794,0,Asia +2024-06-05,1382,4644,"[""Laptop"", ""Phone""]",2853.31,{},228017,0,South America +2023-05-17,1383,4255,"[""Charger"", ""Tablet"", ""Keyboard""]",2335.99,"{""promo"": ""25%""}",46656,0,South America +2023-04-05,1384,9246,"[""Wireless Mouse""]",2395.31,"{"""": ""5%""}",192010,1,North America +2023-10-15,1385,6533,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1556.91,{},108209,1,South America +2024-12-09,1386,476,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4467.4,"{""seasonal"": ""15%""}",159892,0,South America +2024-04-05,1387,7698,"[""Tablet"", ""Keyboard""]",2607.86,"{""seasonal"": ""18%""}",150604,0,South America +2024-06-26,1388,2895,"[""Tablet"", ""Phone""]",2251.59,{},38445,1,Africa +2024-03-26,1389,3432,"[""Headphones""]",3704.57,"{""loyalty"": ""26%""}",235942,0,Asia +2023-10-25,1390,5520,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3757.6,{},118516,0,Africa +2023-05-23,1391,8056,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1439.35,{},217321,1,Europe +2023-08-22,1392,3034,"[""Phone""]",1754.33,"{"""": ""23%""}",42757,0,South America +2024-09-15,1393,6000,"[""Keyboard""]",2976.7,{},208106,1,North America +2024-02-09,1394,6420,"[""Charger"", ""Laptop""]",2759.82,"{""promo"": ""17%""}",234560,0,Europe +2023-11-29,1395,5799,"[""Monitor"", ""Keyboard""]",2304.16,{},84801,0,North America +2023-06-08,1396,7634,"[""Headphones""]",2865.08,"{""promo"": ""6%""}",281995,1,Europe +2024-03-07,1397,2789,"[""Phone""]",2178.06,{},240601,1,Europe +2024-04-27,1398,2010,"[""Tablet"", ""Keyboard"", ""Phone""]",1211.9,{},160792,0,Asia +2024-06-15,1399,7295,"[""Headphones"", ""Phone"", ""Laptop""]",3098.45,{},250791,1,Europe +2023-06-21,1400,7517,"[""Charger"", ""Tablet"", ""Headphones""]",299.68,{},82193,0,South America +2023-11-24,1401,6482,"[""Laptop"", ""Charger"", ""Keyboard""]",4515.68,"{""seasonal"": ""14%""}",58857,1,Africa +2024-01-07,1402,5173,"[""Phone""]",3146.24,"{""loyalty"": ""8%""}",203731,1,South America +2024-05-08,1403,886,"[""Charger"", ""Laptop""]",2582.8,{},101632,1,Africa +2024-09-20,1404,3914,"[""Phone"", ""Headphones""]",3565.98,{},52809,1,South America +2023-03-03,1405,7599,"[""Tablet"", ""Phone"", ""Monitor""]",275.13,"{""seasonal"": ""7%""}",27735,0,Europe +2023-05-22,1406,8634,"[""Phone""]",3960.79,"{""promo"": ""14%""}",176569,1,Asia +2024-12-16,1407,1666,"[""Headphones"", ""Wireless Mouse""]",3219.4,"{"""": ""23%""}",22507,0,Africa +2023-10-16,1408,6251,"[""Laptop"", ""Monitor"", ""Headphones""]",2153.65,"{""loyalty"": ""20%""}",121217,0,South America +2024-03-27,1409,7905,"[""Monitor""]",859.96,{},146360,1,North America +2023-09-19,1410,2402,"[""Keyboard""]",1370.14,{},202695,0,Europe +2023-03-27,1411,7380,"[""Keyboard""]",4269.12,"{""loyalty"": ""13%""}",107735,1,Africa +2023-05-31,1412,5720,"[""Laptop"", ""Keyboard"", ""Monitor""]",4580.77,{},169623,1,Asia +2024-04-11,1413,4377,"[""Keyboard"", ""Monitor""]",2765.07,{},137149,1,North America +2023-10-09,1414,6622,"[""Keyboard""]",955.45,"{""seasonal"": ""30%""}",119816,0,Asia +2024-01-27,1415,8163,"[""Phone"", ""Monitor"", ""Keyboard""]",4521.52,"{""loyalty"": ""26%""}",283416,1,South America +2023-11-19,1416,2646,"[""Phone""]",4843.84,{},138879,1,Europe +2024-10-26,1417,1773,"[""Charger""]",4499.46,"{""seasonal"": ""18%""}",259239,1,South America +2023-02-21,1418,7830,"[""Tablet"", ""Charger""]",4220.91,"{""loyalty"": ""10%""}",48205,1,Africa +2023-11-11,1419,1818,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",749.49,"{""promo"": ""25%""}",57705,0,North America +2023-02-10,1420,6108,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1884.56,{},13354,1,Asia +2024-04-21,1421,6611,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2575.4,{},180623,0,Africa +2023-03-08,1422,6081,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1526.08,"{""promo"": ""10%""}",257360,1,Africa +2024-10-02,1423,9916,"[""Charger""]",3333.11,"{""seasonal"": ""21%""}",134960,0,Europe +2023-09-25,1424,1552,"[""Keyboard"", ""Charger"", ""Headphones""]",3756.72,{},83843,0,South America +2023-05-12,1425,8157,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1812.31,"{""promo"": ""24%""}",184631,1,North America +2024-03-09,1426,6779,"[""Keyboard""]",1875.53,{},39600,0,Europe +2023-07-05,1427,3786,"[""Tablet""]",1209.94,"{""seasonal"": ""19%""}",32265,1,Asia +2023-06-28,1428,3699,"[""Tablet"", ""Charger""]",3379.31,{},209393,1,North America +2023-02-02,1429,6629,"[""Headphones""]",3888.03,{},112514,1,Asia +2023-07-28,1430,7360,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4614.75,{},71416,1,Asia +2023-05-19,1431,9406,"[""Laptop"", ""Headphones"", ""Monitor""]",3381.68,{},274629,1,Africa +2024-09-22,1432,7923,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4142.51,"{""seasonal"": ""29%""}",87751,1,South America +2023-10-09,1433,4367,"[""Laptop"", ""Monitor""]",652.18,"{""seasonal"": ""17%""}",278699,0,Africa +2023-01-26,1434,7289,"[""Laptop""]",767.33,{},18866,0,North America +2024-12-28,1435,7295,"[""Wireless Mouse"", ""Phone""]",239.66,"{""promo"": ""21%""}",53346,0,Asia +2023-11-25,1436,884,"[""Monitor"", ""Phone""]",4671.33,"{""loyalty"": ""29%""}",64740,1,Africa +2023-03-23,1437,3006,"[""Phone""]",3521.77,"{"""": ""26%""}",216562,0,Europe +2023-09-20,1438,9549,"[""Monitor""]",4865.87,{},25453,0,Asia +2024-01-27,1439,1782,"[""Monitor""]",2139.63,"{""promo"": ""13%""}",103861,0,South America +2024-06-20,1440,1674,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",269.57,"{""loyalty"": ""25%""}",158401,1,Asia +2023-12-31,1441,9655,"[""Laptop"", ""Tablet"", ""Charger""]",3137.38,"{""seasonal"": ""22%""}",37964,1,North America +2023-06-22,1442,2102,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4865.34,"{""seasonal"": ""12%""}",5283,1,Europe +2023-03-11,1443,6766,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2799.56,{},257941,0,Asia +2024-04-06,1444,6006,"[""Headphones""]",317.38,{},68840,1,North America +2024-10-22,1445,1338,"[""Headphones""]",3347.86,{},294794,1,North America +2023-05-21,1446,3437,"[""Keyboard""]",4558.91,"{""promo"": ""30%""}",231467,1,Europe +2023-01-18,1447,5862,"[""Charger""]",3997.58,"{"""": ""29%""}",289880,1,Europe +2023-12-30,1448,9329,"[""Wireless Mouse""]",3998.17,{},155737,1,South America +2023-08-14,1449,4165,"[""Keyboard""]",375.31,{},122153,1,Africa +2024-04-16,1450,3333,"[""Keyboard"", ""Monitor""]",2145.83,{},99488,1,North America +2023-01-21,1451,3768,"[""Monitor""]",2197.46,"{""loyalty"": ""9%""}",299747,0,Europe +2023-03-11,1452,6968,"[""Phone"", ""Charger"", ""Monitor""]",4819.75,{},13668,0,South America +2024-01-09,1453,1574,"[""Phone"", ""Wireless Mouse""]",3509.85,{},73772,0,Africa +2024-07-10,1454,8160,"[""Headphones"", ""Tablet"", ""Monitor""]",2771.85,{},67238,1,South America +2024-01-22,1455,2016,"[""Headphones"", ""Tablet"", ""Phone""]",1160.64,"{""promo"": ""12%""}",141188,0,Asia +2024-05-26,1456,1732,"[""Phone"", ""Charger""]",3601.46,{},275827,1,Asia +2023-05-24,1457,8827,"[""Monitor"", ""Headphones"", ""Tablet""]",2040.13,{},202304,1,Europe +2023-04-08,1458,362,"[""Keyboard"", ""Laptop"", ""Monitor""]",604.76,"{""promo"": ""7%""}",152379,1,South America +2023-08-10,1459,9582,"[""Laptop"", ""Keyboard""]",4189.71,"{""seasonal"": ""25%""}",254005,0,Asia +2024-03-30,1460,9438,"[""Keyboard""]",4308.63,{},236500,0,North America +2024-05-23,1461,3976,"[""Charger"", ""Tablet"", ""Phone""]",2476.12,"{""seasonal"": ""23%""}",109480,1,Africa +2024-01-24,1462,7569,"[""Tablet"", ""Keyboard""]",4670.39,"{""seasonal"": ""14%""}",150702,0,Africa +2023-08-27,1463,9468,"[""Headphones"", ""Monitor""]",3797.87,{},111035,0,Asia +2024-03-29,1464,4405,"[""Phone""]",4936.05,"{""loyalty"": ""27%""}",88829,1,Africa +2023-03-04,1465,4900,"[""Monitor"", ""Keyboard"", ""Laptop""]",3954.73,"{""loyalty"": ""25%""}",116212,1,North America +2023-01-29,1466,4953,"[""Monitor"", ""Charger""]",2932.95,"{""seasonal"": ""7%""}",17478,0,North America +2023-12-28,1467,4608,"[""Phone""]",650.17,"{"""": ""23%""}",42271,1,North America +2024-08-26,1468,4578,"[""Monitor""]",3595.75,"{""loyalty"": ""12%""}",206963,1,South America +2023-12-05,1469,4677,"[""Charger"", ""Headphones""]",2214.49,{},200232,0,South America +2024-05-24,1470,8086,"[""Tablet"", ""Charger"", ""Phone""]",1798.28,"{""promo"": ""17%""}",224423,1,Europe +2024-04-17,1471,1064,"[""Laptop"", ""Tablet""]",635.49,"{""seasonal"": ""16%""}",58563,0,South America +2024-01-31,1472,9824,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4669.71,"{"""": ""14%""}",34059,0,Africa +2023-12-29,1473,697,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",324.61,{},64578,0,South America +2024-09-19,1474,1234,"[""Tablet""]",3787.29,"{""promo"": ""19%""}",57101,1,Asia +2023-06-19,1475,7566,"[""Headphones"", ""Phone""]",3495.59,{},174862,0,Europe +2024-07-19,1476,1334,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2093.14,{},165002,1,North America +2023-12-23,1477,8303,"[""Keyboard""]",4148.14,{},83446,0,North America +2024-09-10,1478,6538,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",89.42,{},151862,1,North America +2023-07-01,1479,161,"[""Tablet"", ""Charger"", ""Monitor""]",1182.44,{},245818,0,Africa +2023-12-16,1480,6927,"[""Laptop""]",1729.25,{},15124,0,North America +2024-04-05,1481,4713,"[""Charger"", ""Phone""]",2351.89,{},259156,0,North America +2023-07-17,1482,1352,"[""Wireless Mouse""]",1943.91,{},41252,1,North America +2024-04-17,1483,2609,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4071.9,{},191545,0,North America +2024-05-24,1484,8077,"[""Monitor""]",118.29,"{"""": ""24%""}",163679,0,Europe +2024-05-25,1485,7792,"[""Keyboard"", ""Monitor"", ""Phone""]",2165.29,{},124032,0,Asia +2024-07-17,1486,5749,"[""Tablet"", ""Monitor""]",3888.88,"{"""": ""21%""}",168840,1,Asia +2023-10-06,1487,6616,"[""Phone"", ""Wireless Mouse""]",3106.13,"{"""": ""19%""}",119175,0,Asia +2024-05-20,1488,4069,"[""Monitor""]",1480.86,"{""seasonal"": ""26%""}",53645,0,Europe +2024-06-17,1489,952,"[""Charger"", ""Laptop"", ""Monitor""]",2700.98,"{""loyalty"": ""29%""}",83856,0,North America +2024-09-15,1490,3300,"[""Charger"", ""Laptop""]",4515.89,"{""seasonal"": ""13%""}",25452,0,Europe +2024-03-27,1491,1537,"[""Tablet"", ""Charger""]",1822.11,"{""promo"": ""17%""}",98526,0,Africa +2024-12-26,1492,8853,"[""Phone""]",1578.38,"{"""": ""9%""}",284834,0,Europe +2024-03-13,1493,8186,"[""Wireless Mouse"", ""Charger"", ""Phone""]",94.54,"{""seasonal"": ""10%""}",297816,0,North America +2023-07-22,1494,1966,"[""Monitor"", ""Wireless Mouse""]",3194.73,{},125530,1,South America +2023-07-18,1495,8953,"[""Keyboard"", ""Monitor""]",141.93,{},249876,1,South America +2024-04-28,1496,123,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3485.71,"{""loyalty"": ""27%""}",115120,1,South America +2024-10-12,1497,578,"[""Monitor"", ""Tablet"", ""Laptop""]",2752.32,"{""promo"": ""24%""}",64514,0,Asia +2024-03-19,1498,1770,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",353.13,"{""loyalty"": ""14%""}",278225,1,Europe +2024-09-19,1499,2814,"[""Headphones"", ""Tablet"", ""Laptop""]",199.55,"{""promo"": ""12%""}",45302,1,Asia +2023-02-22,1500,813,"[""Keyboard""]",617.42,{},115452,0,South America +2024-04-08,1501,5985,"[""Charger"", ""Tablet"", ""Laptop""]",3648.95,{},29926,1,Asia +2024-05-21,1502,1788,"[""Phone"", ""Laptop"", ""Monitor""]",4935.06,"{"""": ""30%""}",222043,1,South America +2024-03-19,1503,8761,"[""Headphones"", ""Charger""]",3526.54,{},164135,1,South America +2024-05-29,1504,3045,"[""Phone"", ""Tablet""]",2627.55,{},106931,0,Asia +2024-01-26,1505,5537,"[""Keyboard"", ""Monitor""]",3384.53,{},279310,0,Asia +2024-04-28,1506,9285,"[""Wireless Mouse"", ""Charger""]",1620.53,"{""loyalty"": ""21%""}",208030,1,Africa +2024-07-13,1507,2793,"[""Phone"", ""Monitor""]",2361.34,{},87855,1,Africa +2024-08-05,1508,8998,"[""Headphones""]",2654.76,{},172405,1,Europe +2023-09-30,1509,527,"[""Tablet""]",1874.06,{},113695,1,North America +2023-08-23,1510,2263,"[""Laptop""]",4670.65,"{""seasonal"": ""13%""}",161854,0,Europe +2024-11-28,1511,8166,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3696.54,{},64690,0,Asia +2023-02-14,1512,7879,"[""Monitor""]",4138.79,{},97522,0,North America +2024-05-03,1513,4836,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4338.73,"{"""": ""12%""}",85020,1,Africa +2023-10-05,1514,2292,"[""Monitor"", ""Charger""]",4638.25,{},177920,1,Europe +2024-09-22,1515,2804,"[""Monitor""]",1866.91,{},133780,0,North America +2024-05-12,1516,5947,"[""Keyboard"", ""Tablet""]",4247.03,"{""seasonal"": ""25%""}",148672,1,Africa +2023-08-03,1517,5246,"[""Laptop""]",4316.04,{},29635,0,Asia +2024-04-24,1518,6212,"[""Charger""]",1392.38,{},221290,0,Asia +2023-12-17,1519,9648,"[""Keyboard"", ""Phone""]",2782.13,"{""loyalty"": ""8%""}",175292,0,Africa +2024-06-24,1520,969,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4967.08,"{""promo"": ""17%""}",162929,1,Africa +2023-01-04,1521,6986,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2346.92,{},119876,0,North America +2023-10-19,1522,5521,"[""Tablet"", ""Laptop""]",497.65,{},186766,1,Africa +2023-06-04,1523,9489,"[""Laptop"", ""Charger"", ""Keyboard""]",720.38,"{""seasonal"": ""23%""}",293669,0,North America +2024-12-31,1524,3924,"[""Laptop"", ""Tablet""]",3503.94,"{""seasonal"": ""12%""}",250354,0,Europe +2023-02-09,1525,5144,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2021.59,{},106486,0,Africa +2023-10-07,1526,5246,"[""Tablet"", ""Keyboard""]",2506.48,{},283417,1,North America +2024-04-06,1527,4314,"[""Phone""]",4213.08,{},154669,1,Africa +2023-09-10,1528,1680,"[""Charger"", ""Keyboard""]",4992.78,{},18168,0,Asia +2023-05-12,1529,2109,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2784.41,"{"""": ""10%""}",261637,1,North America +2023-09-25,1530,8025,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2959.87,{},148078,0,North America +2024-01-16,1531,3739,"[""Headphones""]",1020.28,"{""loyalty"": ""15%""}",127532,1,Asia +2024-02-09,1532,1029,"[""Charger"", ""Laptop""]",526.58,"{""promo"": ""23%""}",244585,0,Asia +2024-09-06,1533,1277,"[""Monitor""]",1720.26,{},260022,1,North America +2024-03-23,1534,5273,"[""Headphones"", ""Charger"", ""Laptop""]",1539.48,"{""loyalty"": ""13%""}",131845,1,North America +2023-12-13,1535,1474,"[""Monitor"", ""Tablet"", ""Keyboard""]",4759.28,{},107762,0,Europe +2024-11-11,1536,8124,"[""Laptop"", ""Keyboard"", ""Tablet""]",1716.43,{},64379,0,North America +2024-03-16,1537,9585,"[""Keyboard""]",2602.0,{},259011,1,Africa +2024-02-27,1538,245,"[""Monitor""]",2975.35,{},203333,0,North America +2024-05-02,1539,6359,"[""Tablet"", ""Monitor""]",4356.34,"{""promo"": ""9%""}",37964,1,Europe +2024-06-05,1540,4840,"[""Headphones""]",4168.31,"{""seasonal"": ""13%""}",169237,0,Europe +2024-03-28,1541,4664,"[""Keyboard""]",4008.08,{},127904,1,Europe +2023-03-27,1542,2217,"[""Laptop"", ""Charger""]",4539.26,"{""promo"": ""7%""}",36218,1,Africa +2023-07-06,1543,8371,"[""Charger""]",2366.73,{},5813,0,South America +2023-05-28,1544,6202,"[""Charger"", ""Keyboard""]",3284.51,{},24092,0,Asia +2024-07-02,1545,422,"[""Tablet""]",771.66,"{"""": ""11%""}",124240,1,South America +2023-08-18,1546,8880,"[""Charger"", ""Wireless Mouse""]",1514.2,"{""seasonal"": ""24%""}",253422,1,Asia +2024-01-25,1547,6994,"[""Headphones""]",4121.4,{},168026,0,Asia +2024-11-27,1548,4638,"[""Charger""]",957.74,"{"""": ""19%""}",77546,0,Asia +2023-01-06,1549,2138,"[""Charger""]",3922.31,"{""seasonal"": ""25%""}",229877,1,Africa +2024-03-29,1550,6539,"[""Monitor"", ""Phone""]",2811.14,"{""seasonal"": ""10%""}",6030,1,Asia +2024-02-21,1551,161,"[""Headphones"", ""Phone""]",1780.46,{},51453,0,South America +2023-04-15,1552,9797,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2341.3,"{""loyalty"": ""7%""}",64311,1,North America +2023-05-02,1553,5139,"[""Wireless Mouse""]",2555.75,{},218578,0,Europe +2023-03-23,1554,7800,"[""Charger"", ""Keyboard"", ""Monitor""]",3524.99,{},185274,0,Europe +2024-09-29,1555,8995,"[""Headphones""]",997.21,"{""seasonal"": ""11%""}",172317,0,South America +2024-03-25,1556,7370,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1314.4,"{""loyalty"": ""19%""}",134003,1,Europe +2023-10-23,1557,8951,"[""Monitor"", ""Phone"", ""Tablet""]",223.06,"{""seasonal"": ""7%""}",232786,1,Asia +2024-08-05,1558,7357,"[""Charger"", ""Tablet"", ""Headphones""]",2702.57,{},13493,0,Asia +2024-01-23,1559,7583,"[""Keyboard""]",2306.39,{},162827,1,Asia +2023-09-18,1560,9582,"[""Wireless Mouse"", ""Headphones""]",3165.93,"{""seasonal"": ""14%""}",49511,0,South America +2023-09-06,1561,9024,"[""Tablet""]",1364.69,{},47838,0,North America +2024-06-02,1562,582,"[""Monitor""]",4464.01,{},281990,1,North America +2023-06-18,1563,1465,"[""Tablet"", ""Phone"", ""Headphones""]",2046.71,"{""loyalty"": ""6%""}",205732,0,Africa +2023-11-30,1564,5270,"[""Phone""]",455.8,"{""loyalty"": ""16%""}",62066,1,Europe +2023-05-07,1565,5019,"[""Charger""]",1041.45,"{"""": ""5%""}",162784,0,Asia +2023-05-11,1566,5110,"[""Phone"", ""Headphones""]",3081.25,"{"""": ""17%""}",264015,1,North America +2023-07-30,1567,2676,"[""Wireless Mouse"", ""Keyboard""]",1853.38,"{""seasonal"": ""21%""}",43729,1,Africa +2024-09-17,1568,6517,"[""Tablet""]",2963.03,"{""promo"": ""17%""}",147482,0,South America +2024-03-25,1569,941,"[""Phone"", ""Charger"", ""Laptop""]",3023.85,{},130715,0,South America +2023-08-09,1570,6005,"[""Charger"", ""Laptop"", ""Keyboard""]",2381.42,{},13776,0,Europe +2023-06-01,1571,6993,"[""Monitor"", ""Keyboard"", ""Charger""]",464.62,"{""loyalty"": ""27%""}",164548,1,Asia +2024-01-31,1572,911,"[""Charger"", ""Phone"", ""Headphones""]",4921.77,"{""seasonal"": ""5%""}",43205,0,North America +2024-08-05,1573,1776,"[""Tablet"", ""Charger""]",3836.48,{},151537,0,South America +2023-12-08,1574,9753,"[""Phone"", ""Laptop""]",4285.57,{},276890,1,Europe +2023-10-04,1575,3260,"[""Tablet"", ""Charger""]",677.06,{},134977,1,North America +2024-06-02,1576,8172,"[""Keyboard"", ""Wireless Mouse""]",4838.65,"{""promo"": ""21%""}",210943,1,North America +2023-03-14,1577,7842,"[""Charger""]",2800.75,{},83131,0,Asia +2024-10-28,1578,4434,"[""Monitor"", ""Keyboard"", ""Phone""]",3080.61,{},244163,1,Europe +2023-10-23,1579,1716,"[""Phone"", ""Laptop"", ""Keyboard""]",2542.48,"{"""": ""24%""}",104583,1,North America +2023-09-04,1580,8004,"[""Keyboard""]",4074.4,"{"""": ""8%""}",296391,0,North America +2024-03-20,1581,2891,"[""Keyboard"", ""Headphones""]",2011.55,{},157346,1,North America +2023-06-01,1582,2244,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2585.71,"{""loyalty"": ""10%""}",229486,0,South America +2024-07-17,1583,1516,"[""Tablet""]",3265.7,"{""promo"": ""20%""}",270090,1,Africa +2023-01-06,1584,6663,"[""Charger"", ""Tablet""]",3344.37,{},53876,1,South America +2024-07-02,1585,439,"[""Charger"", ""Headphones"", ""Laptop""]",1764.26,{},3085,0,South America +2024-06-15,1586,2774,"[""Laptop"", ""Phone""]",347.17,{},45016,1,South America +2023-10-05,1587,9292,"[""Phone""]",254.57,"{""loyalty"": ""21%""}",280395,1,North America +2023-06-14,1588,9630,"[""Wireless Mouse"", ""Headphones""]",1999.35,"{"""": ""28%""}",235618,1,South America +2024-09-29,1589,1171,"[""Tablet"", ""Phone"", ""Keyboard""]",245.59,"{"""": ""19%""}",222377,1,South America +2024-04-05,1590,1707,"[""Charger"", ""Tablet""]",4835.42,{},179082,0,Asia +2024-02-19,1591,8232,"[""Charger"", ""Tablet"", ""Headphones""]",2660.21,{},272114,0,North America +2023-01-27,1592,5828,"[""Monitor"", ""Headphones"", ""Tablet""]",254.37,{},176644,1,Asia +2023-09-21,1593,6358,"[""Headphones"", ""Monitor"", ""Laptop""]",2964.18,{},192488,0,Europe +2024-03-09,1594,6920,"[""Headphones""]",915.22,"{"""": ""20%""}",162188,1,Africa +2024-02-11,1595,6945,"[""Headphones"", ""Charger"", ""Phone""]",3989.49,"{""seasonal"": ""9%""}",148315,0,North America +2024-06-26,1596,3522,"[""Charger""]",523.21,"{""loyalty"": ""9%""}",9222,0,North America +2024-04-07,1597,5092,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",978.0,"{""loyalty"": ""6%""}",18727,0,Africa +2024-06-05,1598,4654,"[""Headphones"", ""Keyboard""]",1431.2,"{""loyalty"": ""21%""}",206565,0,South America +2024-08-09,1599,7333,"[""Wireless Mouse"", ""Tablet""]",3386.25,{},180527,0,South America +2023-03-10,1600,1448,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1688.83,"{""loyalty"": ""17%""}",105805,0,Asia +2024-05-25,1601,4153,"[""Monitor""]",4257.8,"{"""": ""27%""}",11225,1,Africa +2023-05-19,1602,6182,"[""Keyboard"", ""Tablet""]",1767.85,{},27462,0,Asia +2023-12-22,1603,813,"[""Phone"", ""Keyboard""]",314.7,{},281316,1,Africa +2023-12-05,1604,8735,"[""Headphones""]",1411.52,{},299062,0,Europe +2024-07-16,1605,8397,"[""Monitor"", ""Headphones"", ""Keyboard""]",4190.66,"{"""": ""22%""}",179634,0,South America +2023-12-22,1606,4234,"[""Charger"", ""Monitor"", ""Headphones""]",3571.88,{},159760,1,Africa +2023-09-28,1607,6578,"[""Monitor"", ""Keyboard""]",3168.35,{},50746,1,North America +2024-07-01,1608,2452,"[""Headphones""]",3933.24,"{"""": ""23%""}",195896,1,South America +2023-08-08,1609,6684,"[""Wireless Mouse"", ""Phone""]",2576.1,"{""seasonal"": ""29%""}",233697,0,Asia +2024-10-03,1610,3640,"[""Charger""]",3106.12,{},163318,0,North America +2024-10-03,1611,9247,"[""Tablet"", ""Charger""]",2668.62,{},18581,1,North America +2024-02-15,1612,9518,"[""Headphones"", ""Wireless Mouse""]",856.08,"{""loyalty"": ""24%""}",288757,1,Europe +2024-12-08,1613,7861,"[""Tablet"", ""Laptop"", ""Phone""]",3482.74,"{"""": ""6%""}",283899,0,Asia +2024-07-01,1614,5923,"[""Monitor""]",2769.66,"{""promo"": ""30%""}",167025,0,North America +2024-04-26,1615,3699,"[""Charger""]",3166.17,{},94185,0,Asia +2024-09-06,1616,7538,"[""Charger"", ""Keyboard"", ""Tablet""]",512.56,{},30661,1,Asia +2024-10-15,1617,6785,"[""Laptop""]",4862.95,"{"""": ""23%""}",40738,1,Europe +2024-11-07,1618,6458,"[""Wireless Mouse""]",3221.55,{},260331,0,Asia +2024-06-23,1619,2803,"[""Laptop"", ""Charger""]",2087.8,"{""seasonal"": ""17%""}",290481,0,South America +2023-03-10,1620,1972,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4026.7,{},200115,1,Europe +2023-03-04,1621,336,"[""Tablet""]",2741.68,"{""promo"": ""11%""}",224512,0,Europe +2023-03-21,1622,5248,"[""Charger"", ""Phone"", ""Laptop""]",3862.99,{},167772,1,South America +2023-11-30,1623,38,"[""Headphones""]",3514.72,{},94076,1,Europe +2023-08-21,1624,4005,"[""Monitor"", ""Charger""]",728.37,{},29182,0,Asia +2024-01-23,1625,9206,"[""Tablet"", ""Charger""]",1428.87,"{"""": ""5%""}",135187,1,North America +2024-11-20,1626,4346,"[""Headphones"", ""Phone"", ""Laptop""]",3550.07,{},13893,0,Asia +2023-05-20,1627,5346,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4620.51,{},202427,1,Asia +2024-02-21,1628,1547,"[""Tablet"", ""Headphones""]",1835.21,"{""seasonal"": ""16%""}",288126,1,North America +2023-05-10,1629,1570,"[""Monitor""]",4933.83,"{""seasonal"": ""14%""}",46012,1,Africa +2024-11-12,1630,7639,"[""Headphones""]",3322.36,"{""promo"": ""12%""}",168433,0,South America +2024-08-08,1631,1285,"[""Headphones""]",1195.92,{},258875,1,Asia +2024-06-30,1632,9160,"[""Laptop""]",4850.06,"{""seasonal"": ""17%""}",247226,1,Europe +2023-08-25,1633,4557,"[""Wireless Mouse""]",3008.01,{},36517,0,South America +2024-12-20,1634,8022,"[""Headphones"", ""Tablet""]",1395.56,"{"""": ""5%""}",291632,0,Europe +2024-02-29,1635,9625,"[""Headphones""]",1901.27,{},22435,1,North America +2023-04-14,1636,2865,"[""Tablet"", ""Charger"", ""Phone""]",4004.96,"{"""": ""22%""}",211209,1,North America +2024-07-25,1637,4618,"[""Wireless Mouse"", ""Headphones""]",2565.72,{},183099,0,Asia +2023-05-20,1638,9684,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2728.99,"{""promo"": ""20%""}",100254,0,Africa +2024-09-16,1639,2366,"[""Charger"", ""Tablet""]",3401.67,"{"""": ""20%""}",57212,1,South America +2024-05-15,1640,4187,"[""Monitor""]",2945.88,"{""loyalty"": ""19%""}",13252,1,Europe +2024-12-16,1641,8330,"[""Monitor"", ""Tablet"", ""Laptop""]",3764.91,{},26969,1,Europe +2023-12-27,1642,5779,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3392.73,{},34194,1,North America +2024-02-02,1643,7562,"[""Charger"", ""Laptop"", ""Tablet""]",4402.79,{},282627,0,Europe +2024-03-11,1644,5280,"[""Laptop"", ""Headphones""]",2399.39,{},268897,0,Europe +2023-01-26,1645,776,"[""Tablet"", ""Keyboard""]",911.34,"{""seasonal"": ""13%""}",191400,0,Europe +2024-05-12,1646,9489,"[""Headphones"", ""Tablet""]",720.12,{},84128,1,Africa +2023-01-31,1647,6530,"[""Wireless Mouse""]",3821.57,"{""seasonal"": ""9%""}",1255,1,Europe +2023-07-01,1648,3961,"[""Phone""]",2269.98,{},105196,0,Africa +2023-02-08,1649,3583,"[""Monitor"", ""Phone"", ""Laptop""]",1884.86,"{"""": ""18%""}",92562,1,Africa +2023-09-12,1650,192,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",902.97,"{""seasonal"": ""14%""}",112606,1,South America +2024-12-28,1651,7998,"[""Phone"", ""Charger"", ""Headphones""]",1294.8,{},187743,1,North America +2024-11-07,1652,9479,"[""Keyboard""]",3684.16,{},218036,0,Africa +2023-04-16,1653,8010,"[""Keyboard""]",2934.13,{},188806,1,Asia +2024-01-06,1654,4936,"[""Headphones"", ""Tablet"", ""Charger""]",2460.79,"{""seasonal"": ""25%""}",296038,1,Europe +2024-07-26,1655,615,"[""Wireless Mouse""]",2592.5,"{""loyalty"": ""9%""}",200669,0,South America +2024-08-05,1656,1005,"[""Wireless Mouse""]",4620.2,{},87667,1,Africa +2023-11-13,1657,2896,"[""Wireless Mouse"", ""Tablet""]",3917.75,"{""promo"": ""19%""}",152445,1,South America +2024-12-27,1658,6684,"[""Phone""]",1956.67,{},31110,1,South America +2023-05-16,1659,687,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",947.93,{},88756,0,Asia +2023-12-24,1660,5334,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",998.43,"{"""": ""29%""}",272101,0,North America +2023-12-06,1661,8386,"[""Phone""]",2619.64,"{""promo"": ""22%""}",174851,0,Africa +2024-06-25,1662,4319,"[""Charger""]",1462.93,"{""loyalty"": ""19%""}",74381,0,Asia +2023-03-29,1663,595,"[""Charger"", ""Keyboard""]",3386.37,{},222732,0,North America +2024-11-08,1664,274,"[""Headphones"", ""Keyboard""]",2560.74,"{""promo"": ""13%""}",157224,0,Africa +2023-11-28,1665,3662,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",561.19,{},70639,0,Asia +2023-04-25,1666,4210,"[""Wireless Mouse"", ""Phone""]",1476.42,{},103276,1,South America +2024-05-19,1667,498,"[""Charger"", ""Headphones""]",4702.42,"{""promo"": ""11%""}",1939,0,South America +2023-10-19,1668,7705,"[""Headphones"", ""Keyboard""]",3039.89,{},220291,0,North America +2024-03-16,1669,1382,"[""Charger""]",1776.29,"{""promo"": ""18%""}",246680,1,Africa +2024-12-02,1670,6342,"[""Charger"", ""Tablet""]",2112.83,{},209310,0,Africa +2023-10-25,1671,4736,"[""Monitor"", ""Laptop""]",965.24,{},280990,1,North America +2023-04-21,1672,7669,"[""Tablet""]",1540.02,{},252882,0,Africa +2023-09-06,1673,1206,"[""Tablet""]",2437.94,"{""promo"": ""23%""}",21915,1,South America +2023-10-13,1674,2854,"[""Phone""]",2289.79,{},165188,1,South America +2024-05-11,1675,3547,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2986.86,{},137417,0,Asia +2024-02-03,1676,318,"[""Charger"", ""Monitor""]",2623.17,{},279849,1,Europe +2024-12-02,1677,3520,"[""Charger""]",3157.45,"{""promo"": ""21%""}",222893,0,North America +2023-11-22,1678,664,"[""Phone"", ""Monitor""]",4912.85,{},165718,0,Europe +2023-09-27,1679,6393,"[""Headphones""]",847.95,"{""seasonal"": ""18%""}",235139,1,Asia +2024-12-07,1680,2179,"[""Keyboard"", ""Laptop"", ""Monitor""]",4357.97,"{""promo"": ""18%""}",81538,0,Asia +2023-11-16,1681,4285,"[""Charger"", ""Monitor"", ""Headphones""]",4614.98,"{""loyalty"": ""7%""}",39479,1,Africa +2024-06-10,1682,6850,"[""Charger""]",1040.41,"{""seasonal"": ""13%""}",29188,1,North America +2023-03-03,1683,6916,"[""Monitor"", ""Laptop""]",180.48,{},183713,1,South America +2024-08-03,1684,9134,"[""Headphones"", ""Keyboard"", ""Laptop""]",4638.61,"{""seasonal"": ""22%""}",248143,1,Europe +2023-06-30,1685,5337,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4581.68,{},274804,1,North America +2024-08-06,1686,1558,"[""Wireless Mouse"", ""Tablet""]",1502.15,{},209484,0,North America +2023-06-28,1687,7755,"[""Monitor"", ""Laptop"", ""Tablet""]",4804.21,{},68214,1,Africa +2024-04-02,1688,609,"[""Tablet"", ""Keyboard"", ""Phone""]",3543.35,"{""seasonal"": ""17%""}",98146,1,Africa +2023-03-20,1689,142,"[""Laptop"", ""Charger"", ""Monitor""]",3417.03,{},104628,1,Europe +2023-03-02,1690,6009,"[""Wireless Mouse"", ""Phone""]",58.33,"{"""": ""29%""}",163818,1,Asia +2023-02-02,1691,6182,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1290.84,"{""promo"": ""14%""}",165423,1,Africa +2024-05-04,1692,5302,"[""Charger"", ""Monitor""]",1413.43,{},170978,0,Europe +2024-02-11,1693,8868,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1207.22,"{""promo"": ""6%""}",157821,1,South America +2023-09-25,1694,7116,"[""Monitor"", ""Laptop""]",2852.52,{},131764,0,Asia +2023-08-02,1695,8749,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4496.73,{},154674,0,South America +2023-09-24,1696,5927,"[""Wireless Mouse"", ""Headphones""]",4710.33,{},110954,0,Europe +2024-12-02,1697,8501,"[""Headphones""]",417.78,"{""loyalty"": ""10%""}",158059,0,Africa +2024-11-13,1698,5656,"[""Phone"", ""Monitor""]",3986.5,"{""seasonal"": ""24%""}",279005,1,South America +2024-07-14,1699,1024,"[""Charger""]",3483.67,{},169717,1,Europe +2023-07-31,1700,3555,"[""Headphones"", ""Tablet""]",1310.47,"{""promo"": ""13%""}",207289,1,Asia +2023-06-07,1701,8772,"[""Charger""]",3364.89,"{""seasonal"": ""10%""}",108808,0,South America +2023-03-12,1702,5263,"[""Laptop"", ""Charger"", ""Phone""]",3484.9,{},23387,0,South America +2024-05-25,1703,1067,"[""Monitor"", ""Tablet""]",701.82,"{"""": ""19%""}",102863,0,South America +2024-02-28,1704,9006,"[""Phone""]",4558.05,"{""seasonal"": ""28%""}",118664,0,Asia +2023-10-10,1705,7930,"[""Tablet"", ""Wireless Mouse""]",3169.69,{},154814,0,Asia +2024-07-30,1706,3330,"[""Headphones"", ""Keyboard"", ""Charger""]",3029.69,"{"""": ""10%""}",212333,1,Africa +2024-09-17,1707,4938,"[""Monitor""]",4244.97,"{"""": ""11%""}",102626,1,North America +2023-08-21,1708,1065,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3622.06,{},12132,1,North America +2024-08-07,1709,5355,"[""Wireless Mouse"", ""Tablet""]",4173.82,"{""loyalty"": ""10%""}",211765,0,Europe +2024-06-09,1710,98,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1269.92,"{""loyalty"": ""6%""}",28640,1,Africa +2023-05-20,1711,4884,"[""Charger"", ""Monitor""]",2735.47,{},17602,0,Africa +2024-04-28,1712,1712,"[""Headphones"", ""Monitor"", ""Tablet""]",3609.29,"{"""": ""18%""}",111225,1,Africa +2023-12-01,1713,4847,"[""Laptop"", ""Monitor""]",2722.29,"{""promo"": ""24%""}",250036,1,Africa +2023-07-24,1714,3582,"[""Monitor""]",4570.61,"{""loyalty"": ""19%""}",206159,1,Asia +2024-08-24,1715,4898,"[""Charger"", ""Keyboard"", ""Monitor""]",3474.36,{},186480,1,North America +2023-01-13,1716,3765,"[""Phone"", ""Headphones"", ""Keyboard""]",1475.14,"{"""": ""14%""}",1261,0,Europe +2024-10-13,1717,4084,"[""Laptop""]",1253.54,{},32733,0,Europe +2023-10-17,1718,3345,"[""Charger"", ""Headphones""]",785.94,"{"""": ""28%""}",266664,0,Europe +2024-04-17,1719,8129,"[""Headphones"", ""Laptop""]",3572.18,"{""loyalty"": ""13%""}",292277,1,Asia +2023-11-28,1720,3687,"[""Laptop"", ""Monitor"", ""Keyboard""]",3396.46,"{""promo"": ""5%""}",103518,0,North America +2024-07-30,1721,2910,"[""Tablet"", ""Headphones"", ""Charger""]",4621.65,"{""promo"": ""15%""}",11994,1,Asia +2024-09-15,1722,3413,"[""Phone"", ""Tablet"", ""Laptop""]",1148.51,{},182403,0,Asia +2023-12-08,1723,5982,"[""Monitor""]",456.28,{},118063,0,North America +2024-02-13,1724,7949,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3319.29,{},33852,0,Asia +2024-03-02,1725,143,"[""Charger"", ""Headphones""]",2419.03,{},112371,0,South America +2023-12-15,1726,3543,"[""Phone""]",306.07,"{""loyalty"": ""5%""}",36581,0,North America +2023-02-09,1727,6383,"[""Charger""]",4342.94,{},37200,1,Europe +2024-02-13,1728,2121,"[""Headphones""]",1446.85,"{""promo"": ""20%""}",83594,1,Asia +2023-11-03,1729,3184,"[""Wireless Mouse""]",552.54,{},159321,0,South America +2023-02-23,1730,6714,"[""Charger"", ""Keyboard""]",709.51,{},114580,0,South America +2024-03-13,1731,7201,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2714.31,{},252106,1,Africa +2024-08-31,1732,5079,"[""Headphones"", ""Phone""]",2703.67,{},213009,0,Africa +2024-04-18,1733,2192,"[""Keyboard"", ""Laptop""]",3407.68,{},210484,1,South America +2024-02-20,1734,519,"[""Tablet""]",3158.76,"{""loyalty"": ""13%""}",35913,0,North America +2023-07-18,1735,5370,"[""Keyboard"", ""Charger""]",1736.62,{},258233,0,Asia +2023-04-05,1736,8705,"[""Wireless Mouse""]",3584.77,{},104949,0,Africa +2023-08-07,1737,1699,"[""Laptop""]",1689.58,{},148612,1,South America +2024-10-06,1738,4990,"[""Keyboard""]",4800.13,{},262843,0,Europe +2024-12-02,1739,8815,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2327.0,"{""promo"": ""27%""}",265394,1,Asia +2024-01-12,1740,1524,"[""Keyboard""]",4273.78,{},25998,1,Africa +2023-11-03,1741,6677,"[""Headphones""]",3824.1,"{""promo"": ""19%""}",189568,1,Europe +2024-08-03,1742,1786,"[""Keyboard"", ""Wireless Mouse""]",1523.06,"{""promo"": ""30%""}",199186,1,North America +2023-09-23,1743,1933,"[""Laptop""]",2107.18,"{"""": ""13%""}",240488,0,Europe +2023-03-13,1744,1678,"[""Keyboard""]",867.43,"{"""": ""14%""}",242327,0,Africa +2024-11-25,1745,1026,"[""Phone"", ""Charger"", ""Monitor""]",645.25,{},93722,0,Asia +2023-05-06,1746,6188,"[""Laptop"", ""Headphones""]",4877.31,"{""seasonal"": ""8%""}",261642,1,North America +2023-03-03,1747,2238,"[""Wireless Mouse""]",3039.12,"{""promo"": ""17%""}",262477,0,North America +2023-03-24,1748,7042,"[""Headphones""]",1230.44,{},268587,1,Africa +2023-05-15,1749,56,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1113.92,"{""loyalty"": ""16%""}",110749,1,North America +2024-05-02,1750,2964,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2708.37,{},181632,0,Europe +2024-02-03,1751,9908,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3520.32,"{""promo"": ""20%""}",119956,1,North America +2024-07-28,1752,9793,"[""Phone"", ""Headphones"", ""Monitor""]",4547.04,{},37680,1,North America +2024-06-06,1753,312,"[""Headphones""]",2785.17,{},109202,1,Asia +2023-11-12,1754,3909,"[""Keyboard"", ""Phone""]",4039.78,"{""loyalty"": ""10%""}",103328,1,North America +2024-08-03,1755,9220,"[""Headphones"", ""Tablet""]",2487.41,{},283170,0,South America +2023-11-10,1756,8057,"[""Laptop""]",322.22,{},269115,1,North America +2024-10-15,1757,8838,"[""Laptop""]",1002.79,"{""loyalty"": ""29%""}",133259,0,Europe +2023-08-18,1758,9598,"[""Laptop""]",3441.72,{},243926,0,Europe +2024-06-27,1759,7208,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3991.93,"{"""": ""26%""}",238862,1,Asia +2024-10-14,1760,770,"[""Keyboard"", ""Monitor"", ""Charger""]",3958.62,{},283181,1,South America +2023-06-21,1761,9439,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4445.13,"{""loyalty"": ""16%""}",78472,0,Europe +2024-08-23,1762,1254,"[""Phone"", ""Laptop"", ""Monitor""]",257.85,{},203157,1,North America +2024-12-29,1763,7966,"[""Phone"", ""Tablet""]",1483.02,{},175671,1,Europe +2023-05-01,1764,4357,"[""Charger""]",3080.01,{},24239,1,Africa +2024-05-31,1765,108,"[""Charger"", ""Headphones""]",1504.53,"{""loyalty"": ""8%""}",162391,0,Africa +2024-06-17,1766,8071,"[""Charger"", ""Tablet""]",4386.48,"{""loyalty"": ""25%""}",5423,0,Europe +2024-12-13,1767,8139,"[""Headphones"", ""Wireless Mouse""]",2387.93,"{"""": ""9%""}",294302,1,South America +2023-08-26,1768,7975,"[""Headphones"", ""Tablet""]",4972.24,{},289822,1,North America +2024-10-10,1769,449,"[""Keyboard"", ""Monitor"", ""Tablet""]",340.44,{},60572,1,North America +2024-04-27,1770,534,"[""Phone"", ""Monitor""]",3632.24,"{""loyalty"": ""24%""}",150688,1,Africa +2023-05-02,1771,9129,"[""Headphones""]",4224.59,"{""loyalty"": ""26%""}",111342,0,Asia +2023-05-14,1772,5497,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1059.8,"{""seasonal"": ""24%""}",29605,0,South America +2024-01-23,1773,1990,"[""Monitor""]",1645.51,"{"""": ""22%""}",239135,1,North America +2023-12-01,1774,7794,"[""Monitor"", ""Charger"", ""Phone""]",4574.13,"{""loyalty"": ""6%""}",192625,1,Africa +2023-07-30,1775,208,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",862.94,"{""promo"": ""11%""}",193106,0,South America +2024-05-24,1776,718,"[""Headphones""]",3967.24,{},294104,1,South America +2023-12-08,1777,5968,"[""Keyboard""]",2752.5,{},61274,1,Asia +2024-04-17,1778,7694,"[""Tablet""]",3112.77,"{"""": ""24%""}",290581,0,Asia +2023-09-09,1779,8532,"[""Monitor"", ""Keyboard"", ""Tablet""]",2520.27,"{""seasonal"": ""12%""}",146793,1,South America +2024-08-31,1780,1418,"[""Tablet"", ""Monitor"", ""Charger""]",3069.62,"{""loyalty"": ""11%""}",200114,0,Africa +2023-04-18,1781,8243,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",629.79,{},176795,0,Africa +2023-05-13,1782,4274,"[""Monitor"", ""Wireless Mouse""]",1068.55,"{""seasonal"": ""24%""}",287344,1,Europe +2024-05-11,1783,5780,"[""Charger"", ""Keyboard""]",2488.9,{},42918,1,Africa +2024-12-02,1784,4134,"[""Wireless Mouse""]",2410.31,"{""seasonal"": ""24%""}",234073,0,North America +2024-05-31,1785,942,"[""Monitor""]",126.29,{},207374,1,Asia +2024-01-17,1786,4947,"[""Monitor"", ""Laptop""]",2012.04,"{""promo"": ""13%""}",132750,1,North America +2024-06-24,1787,9701,"[""Keyboard"", ""Tablet""]",1269.93,{},225602,1,North America +2024-03-04,1788,7272,"[""Phone""]",2902.44,{},122287,0,Europe +2024-03-08,1789,861,"[""Monitor""]",3338.94,{},109166,1,Africa +2023-02-24,1790,3151,"[""Monitor"", ""Laptop"", ""Tablet""]",4455.28,{},68860,1,Asia +2023-09-08,1791,1336,"[""Keyboard"", ""Charger""]",205.91,"{""loyalty"": ""27%""}",155452,1,Africa +2024-07-13,1792,9679,"[""Keyboard"", ""Phone""]",3742.71,{},257376,0,North America +2023-04-25,1793,7036,"[""Keyboard"", ""Headphones"", ""Phone""]",1571.05,{},282758,0,Europe +2023-03-10,1794,6768,"[""Laptop"", ""Tablet""]",1148.13,{},96667,0,South America +2024-06-24,1795,1841,"[""Headphones"", ""Keyboard""]",2640.77,{},63632,0,Europe +2023-02-06,1796,2282,"[""Wireless Mouse""]",1846.5,"{"""": ""12%""}",204933,0,North America +2023-01-19,1797,4113,"[""Headphones"", ""Charger""]",3900.63,"{""loyalty"": ""8%""}",295954,0,North America +2023-06-12,1798,9177,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3768.78,{},168775,1,Africa +2023-11-20,1799,4216,"[""Monitor"", ""Keyboard""]",1513.46,{},34169,1,Africa +2024-02-01,1800,6428,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4488.55,{},163902,1,North America +2024-09-23,1801,9024,"[""Charger""]",505.52,{},224394,0,North America +2024-07-24,1802,8598,"[""Keyboard""]",1462.31,"{""seasonal"": ""28%""}",213533,1,South America +2024-12-25,1803,1407,"[""Charger"", ""Wireless Mouse""]",4910.48,{},57932,0,Europe +2024-05-25,1804,6722,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1703.83,{},135016,1,South America +2023-10-06,1805,6804,"[""Monitor"", ""Tablet""]",2180.22,{},239750,1,North America +2024-03-04,1806,1985,"[""Charger"", ""Wireless Mouse""]",2121.69,"{""seasonal"": ""22%""}",67840,0,Europe +2023-06-03,1807,2345,"[""Tablet""]",4618.07,"{""loyalty"": ""6%""}",172141,1,Africa +2023-01-20,1808,2874,"[""Phone"", ""Tablet"", ""Monitor""]",3294.95,{},191706,1,South America +2023-11-25,1809,5496,"[""Keyboard""]",3702.92,{},220621,1,South America +2024-02-25,1810,1836,"[""Monitor"", ""Charger"", ""Keyboard""]",4542.51,"{""promo"": ""13%""}",244761,1,Africa +2023-11-25,1811,7304,"[""Wireless Mouse"", ""Phone""]",3397.43,"{""promo"": ""10%""}",83025,0,South America +2024-04-16,1812,3941,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3536.49,"{"""": ""21%""}",207456,0,North America +2023-08-02,1813,264,"[""Laptop"", ""Headphones"", ""Phone""]",3052.87,"{"""": ""8%""}",46268,0,Africa +2024-02-26,1814,894,"[""Charger""]",309.07,{},258389,1,Africa +2024-03-13,1815,8720,"[""Tablet"", ""Monitor"", ""Charger""]",3146.57,"{""loyalty"": ""24%""}",188055,0,Europe +2023-09-13,1816,1213,"[""Laptop"", ""Phone""]",484.73,{},229314,1,Europe +2023-03-20,1817,8520,"[""Wireless Mouse""]",3105.03,"{""promo"": ""20%""}",39758,1,Europe +2024-11-03,1818,477,"[""Charger"", ""Headphones"", ""Phone""]",4847.27,"{""seasonal"": ""11%""}",175890,0,Europe +2024-02-19,1819,5052,"[""Phone"", ""Tablet"", ""Laptop""]",2522.99,{},198914,1,Europe +2024-12-13,1820,7683,"[""Keyboard""]",3785.85,{},97086,0,Asia +2023-05-21,1821,4159,"[""Wireless Mouse""]",2688.73,{},40363,0,Africa +2024-11-06,1822,2647,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1957.76,{},95763,1,North America +2024-06-05,1823,8828,"[""Monitor"", ""Headphones""]",3374.92,"{""loyalty"": ""16%""}",260053,1,North America +2024-12-06,1824,3909,"[""Headphones""]",4502.86,"{""loyalty"": ""20%""}",295838,0,South America +2023-11-21,1825,3702,"[""Charger"", ""Monitor""]",2583.0,{},299687,1,Europe +2024-07-29,1826,4562,"[""Keyboard"", ""Headphones"", ""Charger""]",3860.25,"{"""": ""17%""}",208957,1,North America +2023-02-05,1827,3309,"[""Phone""]",2197.07,"{""seasonal"": ""17%""}",9234,1,South America +2024-06-19,1828,2307,"[""Keyboard"", ""Tablet""]",2403.58,{},156133,1,Asia +2023-01-17,1829,5605,"[""Laptop"", ""Monitor""]",716.53,"{""loyalty"": ""5%""}",61377,1,Asia +2023-12-03,1830,6032,"[""Wireless Mouse"", ""Monitor""]",1366.48,"{""seasonal"": ""6%""}",89192,1,Africa +2023-08-30,1831,3239,"[""Wireless Mouse"", ""Phone""]",3469.82,"{""promo"": ""5%""}",248131,0,North America +2023-08-09,1832,9443,"[""Phone"", ""Laptop""]",635.48,{},176357,1,South America +2024-05-27,1833,6452,"[""Phone"", ""Tablet"", ""Headphones""]",3607.83,"{""promo"": ""23%""}",223535,1,South America +2023-05-12,1834,6773,"[""Phone"", ""Tablet""]",4727.52,{},105596,0,Africa +2023-12-02,1835,9253,"[""Headphones"", ""Wireless Mouse""]",3902.87,{},123175,0,Africa +2024-08-23,1836,1254,"[""Phone"", ""Wireless Mouse""]",1451.46,"{"""": ""10%""}",239970,0,South America +2023-07-28,1837,9264,"[""Phone""]",658.48,{},185168,1,Europe +2024-04-24,1838,9733,"[""Phone""]",4369.97,{},191041,0,Europe +2023-08-08,1839,3248,"[""Monitor"", ""Tablet""]",4564.03,"{"""": ""25%""}",203967,0,Europe +2023-12-04,1840,272,"[""Laptop""]",1147.31,"{""seasonal"": ""21%""}",106761,0,Asia +2023-05-08,1841,9523,"[""Tablet"", ""Keyboard"", ""Monitor""]",1101.77,{},140982,1,Africa +2024-03-29,1842,1910,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1978.68,"{""loyalty"": ""8%""}",34726,0,South America +2024-12-25,1843,4547,"[""Charger"", ""Tablet""]",966.57,{},170728,0,Africa +2024-05-16,1844,1951,"[""Wireless Mouse"", ""Monitor""]",4626.86,{},116491,0,South America +2024-06-30,1845,1826,"[""Phone""]",3546.19,{},202419,1,South America +2023-08-08,1846,6298,"[""Monitor"", ""Keyboard"", ""Phone""]",575.46,{},47404,0,South America +2024-11-01,1847,6253,"[""Keyboard"", ""Monitor"", ""Phone""]",1948.12,"{""seasonal"": ""27%""}",223433,1,Europe +2024-02-28,1848,3163,"[""Tablet"", ""Monitor"", ""Keyboard""]",4486.27,{},109545,1,Europe +2023-02-01,1849,9624,"[""Keyboard"", ""Wireless Mouse""]",4831.36,{},205089,1,North America +2024-06-26,1850,8057,"[""Charger""]",2232.15,{},88202,0,South America +2023-05-15,1851,7414,"[""Laptop""]",1580.99,"{""promo"": ""16%""}",32476,1,Asia +2023-12-15,1852,8880,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1513.05,{},179555,0,Asia +2023-08-09,1853,563,"[""Monitor"", ""Phone""]",1076.91,"{""seasonal"": ""19%""}",78069,0,South America +2024-05-01,1854,8315,"[""Laptop""]",3894.4,{},83210,0,Africa +2024-02-23,1855,9812,"[""Charger""]",3930.35,{},286444,1,South America +2024-11-26,1856,3682,"[""Charger"", ""Tablet"", ""Headphones""]",787.93,{},76333,0,Asia +2024-01-24,1857,3595,"[""Monitor"", ""Phone""]",78.02,"{""seasonal"": ""5%""}",111425,1,North America +2024-01-07,1858,7580,"[""Keyboard""]",3641.04,{},226970,0,North America +2024-09-23,1859,2686,"[""Phone""]",3077.38,{},232684,0,Asia +2024-06-08,1860,455,"[""Headphones"", ""Phone""]",3137.75,"{""promo"": ""29%""}",54181,0,South America +2024-06-17,1861,4998,"[""Laptop""]",3360.88,{},86758,1,Africa +2024-05-25,1862,9232,"[""Headphones"", ""Phone"", ""Charger""]",3814.2,{},3298,0,South America +2024-02-22,1863,5638,"[""Keyboard"", ""Monitor""]",2108.68,{},85824,0,Africa +2024-07-03,1864,3190,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4666.52,"{""seasonal"": ""6%""}",83517,0,Europe +2024-07-05,1865,6730,"[""Laptop""]",2349.77,{},124419,0,North America +2023-02-11,1866,8949,"[""Monitor""]",4944.31,{},158591,1,Africa +2024-01-31,1867,6279,"[""Keyboard"", ""Tablet""]",4973.69,{},167220,1,Asia +2024-12-04,1868,8012,"[""Phone"", ""Charger"", ""Monitor""]",4028.46,"{""promo"": ""10%""}",274777,1,Africa +2023-03-16,1869,1388,"[""Laptop"", ""Monitor""]",3484.44,{},81046,0,North America +2023-12-21,1870,4939,"[""Laptop"", ""Charger"", ""Keyboard""]",711.21,{},2089,1,Europe +2023-10-25,1871,9380,"[""Headphones"", ""Phone""]",4770.29,{},74416,0,Europe +2023-04-15,1872,4452,"[""Charger""]",2071.03,{},138423,0,South America +2024-08-16,1873,3545,"[""Tablet""]",2071.28,{},140557,1,Europe +2023-11-03,1874,6872,"[""Tablet"", ""Laptop""]",1903.6,{},22191,1,Asia +2023-07-16,1875,2345,"[""Wireless Mouse""]",4078.38,"{""loyalty"": ""14%""}",9969,0,North America +2024-10-23,1876,9558,"[""Charger""]",1550.68,"{""loyalty"": ""6%""}",238971,0,South America +2024-03-11,1877,8202,"[""Laptop"", ""Monitor""]",2647.2,"{""seasonal"": ""13%""}",19313,0,Europe +2023-07-31,1878,1621,"[""Phone"", ""Laptop"", ""Headphones""]",915.58,"{""promo"": ""29%""}",143804,0,Asia +2024-08-15,1879,9695,"[""Tablet"", ""Charger""]",4278.26,{},17209,1,South America +2024-02-27,1880,3198,"[""Phone"", ""Headphones"", ""Keyboard""]",2963.59,{},224934,0,Africa +2024-02-05,1881,5769,"[""Phone"", ""Headphones"", ""Keyboard""]",2899.99,{},167081,1,Europe +2024-02-14,1882,2464,"[""Headphones""]",2220.07,"{""seasonal"": ""16%""}",8780,0,South America +2024-10-14,1883,6178,"[""Tablet"", ""Monitor""]",3568.81,{},213138,0,North America +2024-01-10,1884,2526,"[""Phone"", ""Monitor"", ""Headphones""]",244.15,{},92143,0,Europe +2024-10-12,1885,3304,"[""Monitor""]",4023.01,"{""seasonal"": ""21%""}",174121,1,North America +2023-08-18,1886,241,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2657.64,{},273395,0,Africa +2023-10-25,1887,4574,"[""Tablet"", ""Charger"", ""Headphones""]",1473.47,{},138481,1,North America +2023-01-12,1888,6315,"[""Headphones"", ""Charger""]",117.67,{},199390,0,Africa +2024-02-09,1889,7741,"[""Keyboard""]",308.44,{},97688,0,Europe +2023-06-14,1890,3745,"[""Tablet""]",4825.77,{},250594,0,North America +2024-11-08,1891,557,"[""Phone"", ""Tablet""]",2725.65,{},167070,1,North America +2024-09-10,1892,624,"[""Wireless Mouse"", ""Laptop""]",1377.58,"{""loyalty"": ""16%""}",20482,0,Europe +2024-10-10,1893,2195,"[""Phone"", ""Charger""]",3932.93,{},281986,1,Asia +2024-06-15,1894,300,"[""Keyboard"", ""Charger""]",1533.35,{},257584,1,North America +2024-11-20,1895,222,"[""Tablet"", ""Charger""]",1329.58,"{""seasonal"": ""20%""}",236869,0,Europe +2023-08-01,1896,703,"[""Phone""]",886.96,{},137566,0,Europe +2023-01-17,1897,1798,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3501.57,{},253709,0,South America +2023-02-21,1898,2762,"[""Charger"", ""Monitor"", ""Headphones""]",3431.66,{},179717,1,Europe +2024-06-04,1899,6039,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3410.41,{},15850,0,Asia +2024-06-28,1900,7352,"[""Monitor"", ""Wireless Mouse""]",3685.73,"{""seasonal"": ""11%""}",90467,0,Asia +2023-10-07,1901,99,"[""Headphones"", ""Phone"", ""Keyboard""]",1959.96,"{"""": ""17%""}",115064,0,Africa +2024-04-29,1902,6161,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1547.87,"{"""": ""6%""}",162820,1,South America +2024-07-15,1903,6268,"[""Monitor"", ""Tablet""]",4930.91,"{""seasonal"": ""20%""}",45764,0,North America +2023-09-14,1904,9644,"[""Wireless Mouse""]",2414.7,{},165652,0,North America +2024-05-03,1905,1194,"[""Headphones""]",537.06,{},204779,1,Asia +2023-10-31,1906,7840,"[""Laptop"", ""Keyboard""]",358.31,"{"""": ""17%""}",17278,1,Africa +2024-08-09,1907,9570,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",903.64,{},149586,1,Asia +2024-02-17,1908,7135,"[""Charger""]",657.64,"{""promo"": ""13%""}",178773,1,Europe +2024-06-10,1909,7904,"[""Headphones"", ""Laptop"", ""Charger""]",1265.8,{},129060,0,North America +2023-07-14,1910,4442,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1438.89,{},3346,0,South America +2023-06-05,1911,7467,"[""Tablet"", ""Wireless Mouse""]",802.55,"{""loyalty"": ""19%""}",41927,1,Asia +2023-04-27,1912,1044,"[""Laptop"", ""Phone"", ""Tablet""]",3371.8,"{"""": ""29%""}",79189,1,South America +2023-08-11,1913,1969,"[""Tablet"", ""Keyboard""]",4467.85,"{""loyalty"": ""23%""}",12581,1,North America +2023-07-14,1914,6619,"[""Monitor""]",3162.35,{},144411,0,Asia +2023-10-24,1915,7772,"[""Phone""]",4507.39,{},213753,1,North America +2024-09-16,1916,4067,"[""Tablet"", ""Headphones""]",3315.13,{},66791,1,Asia +2023-03-13,1917,9591,"[""Laptop""]",1120.24,{},71012,1,Europe +2024-03-02,1918,2550,"[""Keyboard""]",2404.79,{},254397,1,North America +2023-05-21,1919,5128,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1387.3,"{"""": ""14%""}",179514,1,Europe +2023-10-04,1920,749,"[""Laptop"", ""Keyboard"", ""Monitor""]",2356.71,{},130421,0,Africa +2024-12-04,1921,2054,"[""Headphones""]",2340.68,{},76359,1,Africa +2023-05-30,1922,5940,"[""Tablet"", ""Charger"", ""Monitor""]",3110.27,"{""promo"": ""18%""}",120918,0,Europe +2023-11-03,1923,2870,"[""Laptop"", ""Monitor"", ""Charger""]",101.02,"{""seasonal"": ""6%""}",234286,0,Asia +2023-04-29,1924,5880,"[""Tablet"", ""Phone"", ""Charger""]",3008.35,"{""seasonal"": ""23%""}",177547,1,North America +2023-08-27,1925,588,"[""Monitor""]",4483.26,"{""seasonal"": ""14%""}",89577,1,Europe +2023-08-20,1926,4714,"[""Laptop"", ""Phone""]",1778.71,{},47602,0,Africa +2023-12-27,1927,4975,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1986.16,{},181685,0,Asia +2023-07-30,1928,2724,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1276.56,{},292872,1,Africa +2023-10-06,1929,4742,"[""Charger"", ""Wireless Mouse""]",2053.49,{},88957,0,South America +2024-12-04,1930,5499,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1878.49,"{""loyalty"": ""21%""}",78657,0,Asia +2024-12-30,1931,9757,"[""Headphones"", ""Laptop"", ""Keyboard""]",1332.26,{},23758,1,North America +2024-01-16,1932,3510,"[""Monitor"", ""Wireless Mouse""]",3539.1,{},63154,1,South America +2023-05-19,1933,3346,"[""Laptop"", ""Tablet""]",1918.55,"{""loyalty"": ""15%""}",102666,1,Europe +2024-04-10,1934,6389,"[""Phone"", ""Keyboard"", ""Headphones""]",4468.58,{},272714,0,Asia +2023-10-09,1935,4122,"[""Charger"", ""Monitor""]",1015.44,{},131470,0,Asia +2023-08-06,1936,2591,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3022.36,"{""promo"": ""12%""}",255440,0,South America +2024-11-14,1937,5190,"[""Charger"", ""Phone""]",3646.39,"{""loyalty"": ""9%""}",111305,0,North America +2024-04-29,1938,9272,"[""Laptop"", ""Charger""]",3277.19,"{""loyalty"": ""15%""}",13747,0,Asia +2024-01-29,1939,9128,"[""Phone"", ""Headphones"", ""Keyboard""]",567.23,{},129243,0,Africa +2023-08-25,1940,9338,"[""Monitor"", ""Tablet"", ""Headphones""]",3544.21,"{""loyalty"": ""21%""}",142002,0,South America +2024-11-02,1941,1958,"[""Phone"", ""Laptop"", ""Tablet""]",73.13,"{"""": ""8%""}",98852,0,Europe +2023-05-05,1942,3274,"[""Tablet""]",4427.37,{},176553,0,South America +2024-02-03,1943,2812,"[""Keyboard"", ""Laptop""]",2201.58,"{""loyalty"": ""28%""}",235969,1,South America +2023-09-17,1944,1113,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3455.37,{},170857,1,South America +2024-10-19,1945,2701,"[""Laptop"", ""Phone""]",3189.9,"{""loyalty"": ""5%""}",53046,0,Africa +2024-09-11,1946,8158,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2782.29,{},82298,0,North America +2023-03-17,1947,195,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1092.12,"{""promo"": ""18%""}",260822,0,South America +2023-02-24,1948,8025,"[""Tablet"", ""Charger""]",2722.85,"{""promo"": ""9%""}",13596,0,Europe +2024-12-21,1949,9844,"[""Headphones"", ""Phone""]",3226.55,"{"""": ""9%""}",299860,1,South America +2024-04-01,1950,2332,"[""Monitor""]",3231.44,"{""loyalty"": ""27%""}",188778,1,Asia +2024-10-12,1951,3445,"[""Laptop"", ""Phone""]",2354.32,"{""seasonal"": ""7%""}",178258,1,North America +2024-07-25,1952,8674,"[""Charger"", ""Keyboard""]",777.1,"{""promo"": ""6%""}",115059,0,Asia +2024-10-19,1953,1813,"[""Keyboard"", ""Charger"", ""Phone""]",4088.02,"{"""": ""17%""}",207103,0,South America +2023-04-02,1954,2736,"[""Laptop""]",623.37,{},46943,1,South America +2024-08-17,1955,7376,"[""Wireless Mouse""]",2203.86,{},117178,1,Africa +2024-03-25,1956,7236,"[""Tablet""]",4625.96,{},8207,1,Asia +2023-01-25,1957,5531,"[""Laptop"", ""Phone"", ""Headphones""]",2688.42,{},294711,1,Asia +2024-03-02,1958,7146,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2028.4,{},283628,0,Africa +2024-03-14,1959,7442,"[""Headphones""]",4235.35,{},17582,0,Europe +2024-06-05,1960,2961,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",81.16,"{""promo"": ""12%""}",184368,0,Africa +2024-10-23,1961,8523,"[""Monitor"", ""Phone"", ""Charger""]",898.45,"{"""": ""8%""}",154816,0,Africa +2024-06-22,1962,6868,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4189.75,{},157569,1,Asia +2023-09-17,1963,8842,"[""Charger""]",4611.62,"{""loyalty"": ""10%""}",142373,1,North America +2024-07-31,1964,5641,"[""Charger"", ""Laptop""]",3474.68,{},233564,0,Asia +2024-08-10,1965,5358,"[""Keyboard""]",1500.95,"{""promo"": ""27%""}",290950,1,South America +2023-09-11,1966,5195,"[""Charger""]",1986.18,"{"""": ""15%""}",70070,0,Europe +2023-07-10,1967,7330,"[""Phone"", ""Monitor""]",3639.95,"{"""": ""27%""}",214394,0,Europe +2023-01-25,1968,9141,"[""Charger"", ""Keyboard""]",3818.69,"{""loyalty"": ""5%""}",26704,1,Asia +2023-06-05,1969,4477,"[""Keyboard"", ""Tablet"", ""Phone""]",4362.86,{},267064,1,South America +2024-11-08,1970,4967,"[""Tablet""]",2768.71,"{"""": ""23%""}",110264,1,Europe +2024-02-19,1971,9821,"[""Tablet"", ""Wireless Mouse""]",4087.81,"{""seasonal"": ""24%""}",36731,1,South America +2024-10-08,1972,1296,"[""Laptop"", ""Headphones"", ""Charger""]",1237.51,"{""promo"": ""14%""}",10574,0,Africa +2024-01-18,1973,4693,"[""Laptop""]",3843.99,{},152770,1,Asia +2023-05-26,1974,2995,"[""Headphones"", ""Laptop"", ""Keyboard""]",4028.81,"{"""": ""12%""}",71500,1,North America +2024-07-06,1975,2832,"[""Laptop"", ""Phone"", ""Headphones""]",3684.72,"{""seasonal"": ""28%""}",173531,0,South America +2024-07-30,1976,5637,"[""Phone"", ""Laptop""]",811.99,"{"""": ""8%""}",25624,1,Asia +2024-12-08,1977,9282,"[""Headphones""]",4695.92,{},299016,0,Europe +2023-10-05,1978,4708,"[""Keyboard"", ""Monitor""]",2095.76,{},219920,1,Africa +2023-01-11,1979,2594,"[""Phone"", ""Charger"", ""Headphones""]",1804.6,{},182769,1,South America +2023-12-23,1980,5069,"[""Wireless Mouse"", ""Phone""]",2509.16,{},280157,1,Asia +2024-08-27,1981,7966,"[""Laptop""]",522.76,"{"""": ""20%""}",235741,0,South America +2023-11-11,1982,3812,"[""Charger""]",3778.32,"{""promo"": ""27%""}",105654,1,South America +2023-10-10,1983,9205,"[""Wireless Mouse"", ""Laptop""]",2390.27,{},292276,0,Asia +2024-07-09,1984,219,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1545.31,{},49226,0,Europe +2023-11-10,1985,267,"[""Charger"", ""Keyboard""]",4360.64,{},197341,1,Africa +2023-01-26,1986,2319,"[""Keyboard""]",419.12,{},188707,0,North America +2023-06-26,1987,161,"[""Tablet"", ""Keyboard""]",2309.84,{},234106,0,North America +2023-06-27,1988,4041,"[""Headphones"", ""Tablet""]",3735.79,{},162265,0,Africa +2023-11-04,1989,6160,"[""Headphones""]",1304.84,"{""promo"": ""9%""}",197195,0,Asia +2024-03-17,1990,3033,"[""Laptop""]",1522.51,{},65324,1,Africa +2023-05-22,1991,2175,"[""Laptop""]",1062.2,"{""seasonal"": ""24%""}",53903,0,South America +2024-05-01,1992,9106,"[""Headphones""]",964.53,{},156492,0,Africa +2024-03-25,1993,9384,"[""Phone"", ""Headphones""]",3523.97,{},78264,1,North America +2023-11-18,1994,1612,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3194.04,"{""seasonal"": ""20%""}",36985,0,South America +2023-01-05,1995,8282,"[""Headphones""]",3788.62,"{""promo"": ""9%""}",168143,1,Europe +2023-10-19,1996,1114,"[""Monitor"", ""Laptop"", ""Headphones""]",4575.58,"{""seasonal"": ""18%""}",154139,0,Asia +2023-08-14,1997,4006,"[""Headphones""]",2653.66,{},172177,1,Europe +2024-11-01,1998,6285,"[""Monitor""]",750.54,{},16141,0,North America +2024-02-05,1999,6424,"[""Monitor""]",2212.97,{},123818,1,North America +2024-05-02,2000,9954,"[""Monitor"", ""Laptop""]",3026.3,{},170421,0,Africa +2024-04-09,2001,4478,"[""Laptop""]",4441.61,{},64978,1,North America +2023-01-10,2002,1185,"[""Tablet"", ""Laptop""]",1429.09,{},206855,0,Africa +2024-04-08,2003,4377,"[""Tablet"", ""Keyboard""]",2712.32,"{""promo"": ""30%""}",215833,0,Asia +2023-08-12,2004,2101,"[""Charger"", ""Phone"", ""Monitor""]",251.47,{},140543,1,Europe +2024-08-02,2005,2247,"[""Monitor"", ""Laptop"", ""Phone""]",4377.19,"{""loyalty"": ""21%""}",95991,1,Asia +2024-06-07,2006,6895,"[""Tablet"", ""Laptop"", ""Monitor""]",1075.75,{},97686,1,Africa +2024-09-27,2007,1968,"[""Phone"", ""Charger""]",3531.6,"{""loyalty"": ""12%""}",11011,1,South America +2024-09-04,2008,1917,"[""Charger"", ""Tablet""]",3793.55,"{""loyalty"": ""23%""}",270669,0,South America +2024-01-14,2009,2242,"[""Monitor"", ""Headphones"", ""Charger""]",599.94,{},237183,0,South America +2023-05-08,2010,8065,"[""Monitor"", ""Keyboard""]",3779.94,{},176346,0,South America +2023-01-25,2011,3308,"[""Monitor"", ""Laptop"", ""Tablet""]",4964.07,"{""promo"": ""14%""}",246040,0,Europe +2024-10-10,2012,3866,"[""Wireless Mouse""]",1074.53,{},95623,1,Asia +2024-03-28,2013,9631,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1438.51,{},117997,0,South America +2023-11-23,2014,727,"[""Charger"", ""Phone""]",3567.54,"{""seasonal"": ""29%""}",75013,0,Asia +2023-06-02,2015,8566,"[""Laptop""]",448.43,{},198265,1,North America +2023-02-10,2016,8001,"[""Headphones"", ""Tablet""]",4036.7,{},102688,0,Africa +2023-09-13,2017,646,"[""Wireless Mouse""]",2718.6,"{""seasonal"": ""13%""}",148490,1,South America +2024-11-21,2018,5278,"[""Wireless Mouse"", ""Keyboard""]",3739.6,{},98944,0,Asia +2023-02-11,2019,8349,"[""Laptop""]",2848.59,{},139959,1,Europe +2024-12-21,2020,3602,"[""Laptop""]",1990.81,"{""seasonal"": ""10%""}",263255,1,Asia +2023-02-10,2021,943,"[""Phone""]",1863.49,"{""promo"": ""7%""}",193329,1,South America +2023-12-25,2022,2238,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2147.64,{},121346,1,Africa +2023-07-27,2023,1614,"[""Monitor"", ""Wireless Mouse""]",3628.59,{},205314,1,Asia +2024-02-27,2024,7228,"[""Headphones"", ""Monitor""]",217.58,{},70865,1,South America +2023-02-10,2025,116,"[""Headphones"", ""Phone"", ""Laptop""]",3280.48,"{"""": ""13%""}",197019,1,Africa +2023-02-11,2026,1844,"[""Laptop""]",4856.3,"{""promo"": ""20%""}",79488,0,Asia +2023-05-15,2027,933,"[""Charger"", ""Laptop""]",2192.82,{},136055,0,Europe +2023-12-14,2028,788,"[""Keyboard""]",2799.19,"{"""": ""25%""}",211479,0,Europe +2024-04-06,2029,1947,"[""Headphones""]",3261.83,{},229936,0,Africa +2023-09-27,2030,6295,"[""Charger"", ""Phone"", ""Keyboard""]",760.23,"{""loyalty"": ""13%""}",92167,0,Asia +2024-06-12,2031,765,"[""Tablet"", ""Wireless Mouse""]",4121.3,"{""seasonal"": ""22%""}",13010,1,Europe +2024-08-20,2032,7058,"[""Phone""]",3096.88,"{""loyalty"": ""19%""}",69367,0,South America +2023-02-26,2033,9613,"[""Tablet"", ""Laptop""]",3557.68,{},164667,1,Europe +2024-05-24,2034,1659,"[""Headphones"", ""Monitor""]",136.0,"{""promo"": ""19%""}",252307,1,Asia +2023-03-06,2035,7086,"[""Phone""]",355.67,"{""seasonal"": ""11%""}",163409,0,North America +2024-02-10,2036,1912,"[""Charger"", ""Phone"", ""Monitor""]",2418.68,{},200380,0,North America +2024-08-06,2037,7740,"[""Headphones""]",154.97,{},98656,0,South America +2023-05-13,2038,8604,"[""Tablet""]",3219.37,{},170277,1,Europe +2024-05-31,2039,957,"[""Charger"", ""Tablet""]",1903.56,{},43429,1,South America +2024-09-24,2040,3288,"[""Monitor""]",4389.44,"{""promo"": ""22%""}",123286,1,Europe +2024-05-28,2041,9411,"[""Tablet"", ""Laptop""]",2418.84,"{""loyalty"": ""16%""}",14931,0,South America +2023-12-28,2042,6485,"[""Charger""]",3692.84,{},114757,0,Europe +2023-09-16,2043,5755,"[""Phone"", ""Monitor""]",875.29,{},10522,0,South America +2024-05-22,2044,9763,"[""Charger"", ""Headphones""]",4361.55,"{""loyalty"": ""19%""}",44430,1,South America +2024-08-30,2045,428,"[""Charger"", ""Monitor"", ""Headphones""]",2228.39,"{"""": ""9%""}",250035,0,North America +2023-05-21,2046,4989,"[""Phone"", ""Tablet""]",1900.76,{},10076,1,South America +2023-05-25,2047,3499,"[""Laptop""]",901.7,"{""loyalty"": ""25%""}",71075,0,North America +2023-04-03,2048,9642,"[""Tablet""]",1775.35,{},8730,0,North America +2024-07-21,2049,3430,"[""Charger"", ""Laptop"", ""Monitor""]",4662.08,"{""seasonal"": ""26%""}",98292,0,South America +2024-03-07,2050,9194,"[""Phone"", ""Laptop""]",2857.87,"{""loyalty"": ""21%""}",176101,0,Africa +2023-10-12,2051,6958,"[""Tablet"", ""Keyboard""]",4406.77,"{""loyalty"": ""28%""}",246996,1,South America +2023-11-05,2052,6073,"[""Keyboard"", ""Tablet""]",4391.43,{},232550,0,Europe +2024-11-07,2053,2959,"[""Charger"", ""Tablet"", ""Laptop""]",2213.71,"{"""": ""12%""}",88336,1,Europe +2023-07-25,2054,4223,"[""Keyboard"", ""Laptop"", ""Phone""]",920.37,"{""promo"": ""21%""}",11744,1,South America +2024-03-28,2055,409,"[""Keyboard"", ""Laptop""]",2765.05,{},42265,0,Africa +2024-07-19,2056,6623,"[""Phone""]",1189.14,"{""loyalty"": ""16%""}",252520,0,Asia +2024-11-13,2057,1070,"[""Headphones"", ""Phone"", ""Laptop""]",1772.16,"{"""": ""28%""}",133115,0,North America +2023-08-04,2058,5312,"[""Tablet"", ""Monitor""]",4176.57,"{""promo"": ""29%""}",190024,1,Asia +2023-02-18,2059,4399,"[""Keyboard"", ""Charger""]",156.03,"{""loyalty"": ""11%""}",143194,1,Asia +2024-02-12,2060,3898,"[""Headphones"", ""Laptop"", ""Charger""]",3988.69,"{""seasonal"": ""27%""}",229142,0,Africa +2023-02-15,2061,1812,"[""Tablet"", ""Phone""]",4382.65,{},114951,1,North America +2024-11-08,2062,2468,"[""Wireless Mouse""]",1010.47,{},191186,1,Europe +2023-06-04,2063,3672,"[""Charger"", ""Headphones""]",3662.48,{},21229,0,Africa +2024-09-06,2064,3518,"[""Laptop""]",1079.11,"{"""": ""17%""}",286726,1,Europe +2023-12-05,2065,4932,"[""Wireless Mouse""]",2164.9,{},92402,0,Asia +2023-04-01,2066,2604,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3277.8,"{""loyalty"": ""28%""}",192800,0,Europe +2024-12-29,2067,8051,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1198.9,{},195573,1,South America +2023-09-09,2068,3260,"[""Keyboard"", ""Monitor"", ""Phone""]",1356.59,"{"""": ""10%""}",66138,1,South America +2024-07-17,2069,2648,"[""Tablet"", ""Headphones""]",1399.63,"{""promo"": ""10%""}",112751,0,Africa +2023-12-31,2070,3118,"[""Laptop"", ""Phone""]",274.13,"{""loyalty"": ""13%""}",234519,1,Asia +2024-09-03,2071,1249,"[""Monitor""]",3766.72,"{""loyalty"": ""24%""}",197007,1,Asia +2024-12-24,2072,2862,"[""Laptop"", ""Monitor""]",884.6,{},135273,1,Asia +2023-12-18,2073,8134,"[""Phone""]",2009.32,"{"""": ""29%""}",89125,1,Europe +2024-12-19,2074,9164,"[""Phone""]",1530.85,"{""loyalty"": ""6%""}",170254,0,Asia +2023-12-06,2075,2029,"[""Charger"", ""Monitor"", ""Phone""]",280.93,{},231347,0,North America +2023-04-03,2076,6825,"[""Tablet"", ""Phone"", ""Keyboard""]",1064.82,{},289445,0,Africa +2023-04-30,2077,3799,"[""Tablet"", ""Keyboard""]",3907.48,"{"""": ""6%""}",201079,1,North America +2023-10-20,2078,6820,"[""Monitor"", ""Headphones""]",898.3,{},277319,0,Europe +2023-02-19,2079,5847,"[""Laptop"", ""Monitor""]",915.72,{},268810,1,Europe +2023-01-02,2080,4905,"[""Charger""]",3700.06,"{""loyalty"": ""22%""}",194546,0,Europe +2024-05-25,2081,4046,"[""Wireless Mouse"", ""Laptop""]",952.01,{},55627,0,Asia +2023-07-13,2082,8567,"[""Laptop""]",4191.8,"{"""": ""21%""}",51590,0,South America +2023-12-17,2083,3691,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1249.52,"{"""": ""6%""}",268605,0,North America +2024-01-08,2084,6690,"[""Tablet""]",2720.0,"{""seasonal"": ""17%""}",3230,0,South America +2023-07-06,2085,9337,"[""Monitor""]",3466.23,"{""seasonal"": ""28%""}",8943,0,North America +2024-02-16,2086,532,"[""Charger"", ""Headphones"", ""Keyboard""]",1074.18,{},264324,1,South America +2024-01-06,2087,5166,"[""Charger"", ""Phone"", ""Keyboard""]",3805.85,"{""seasonal"": ""21%""}",176940,1,South America +2023-07-20,2088,7255,"[""Wireless Mouse"", ""Charger""]",4697.32,{},274599,0,Africa +2024-07-04,2089,4924,"[""Monitor"", ""Tablet"", ""Keyboard""]",1614.86,"{""promo"": ""6%""}",241086,0,Europe +2024-03-14,2090,2610,"[""Tablet""]",1358.9,{},165243,0,South America +2024-02-14,2091,5555,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1719.3,"{""promo"": ""19%""}",70040,1,South America +2024-03-23,2092,8597,"[""Monitor"", ""Charger"", ""Keyboard""]",3240.28,{},287635,1,South America +2023-06-17,2093,9602,"[""Monitor"", ""Tablet"", ""Keyboard""]",1703.73,"{""loyalty"": ""29%""}",116452,1,North America +2023-01-14,2094,6638,"[""Keyboard"", ""Wireless Mouse""]",3367.82,"{""loyalty"": ""17%""}",207240,1,North America +2023-05-16,2095,7813,"[""Monitor"", ""Tablet""]",2159.96,{},118158,0,Africa +2023-11-18,2096,9411,"[""Laptop"", ""Keyboard""]",2441.18,{},109713,1,Africa +2024-03-22,2097,1295,"[""Wireless Mouse""]",2801.63,{},185019,1,North America +2023-09-26,2098,3574,"[""Phone""]",3742.32,"{""seasonal"": ""21%""}",263131,1,South America +2024-07-03,2099,8893,"[""Monitor"", ""Headphones""]",4264.28,{},61457,0,South America +2023-06-08,2100,2247,"[""Laptop""]",571.04,{},268158,1,Asia +2023-08-25,2101,4447,"[""Charger""]",4547.9,{},41660,0,North America +2023-05-29,2102,7340,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4107.69,{},118817,1,North America +2023-12-25,2103,7473,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4616.28,"{""seasonal"": ""30%""}",23804,0,Europe +2024-04-24,2104,3482,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1793.96,{},242264,0,Europe +2024-07-03,2105,8437,"[""Tablet"", ""Laptop"", ""Headphones""]",2127.11,"{"""": ""21%""}",298095,0,South America +2024-03-15,2106,7392,"[""Charger""]",2081.89,{},72587,1,Asia +2023-05-02,2107,2974,"[""Phone""]",1577.34,{},180641,1,Africa +2023-12-04,2108,7476,"[""Headphones"", ""Charger"", ""Keyboard""]",3696.41,{},278483,0,Asia +2023-05-07,2109,9285,"[""Tablet"", ""Phone""]",4912.82,{},299876,0,Asia +2024-03-13,2110,9218,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1997.78,"{""loyalty"": ""7%""}",51645,1,North America +2024-01-18,2111,1632,"[""Laptop"", ""Monitor""]",249.12,"{""seasonal"": ""11%""}",11719,0,Europe +2023-02-22,2112,5447,"[""Headphones"", ""Charger""]",3214.21,{},135478,1,Europe +2023-10-24,2113,2576,"[""Wireless Mouse"", ""Headphones""]",3457.59,{},1459,1,Asia +2023-09-22,2114,1093,"[""Phone"", ""Laptop""]",3684.24,{},21485,0,North America +2023-12-15,2115,7781,"[""Headphones""]",645.92,{},24193,0,Africa +2023-02-09,2116,1356,"[""Wireless Mouse"", ""Headphones""]",106.06,{},114198,1,Europe +2023-08-18,2117,3262,"[""Wireless Mouse""]",2590.64,{},193261,1,South America +2024-09-02,2118,1740,"[""Wireless Mouse"", ""Keyboard""]",2609.59,{},193223,0,Asia +2024-09-29,2119,9927,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1799.47,{},173479,1,South America +2024-02-11,2120,7631,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1173.16,{},141216,0,Africa +2023-06-04,2121,8501,"[""Headphones"", ""Charger"", ""Laptop""]",1950.71,"{""promo"": ""15%""}",279237,1,North America +2023-04-10,2122,3336,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1172.41,"{""seasonal"": ""16%""}",24519,0,South America +2024-01-26,2123,2371,"[""Keyboard""]",1889.22,"{""seasonal"": ""5%""}",71889,1,Europe +2024-05-04,2124,6713,"[""Headphones""]",383.82,{},76377,1,Asia +2024-11-15,2125,9751,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4722.76,{},69401,0,North America +2023-05-18,2126,7332,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2354.43,"{""promo"": ""26%""}",128860,1,North America +2024-03-09,2127,2146,"[""Wireless Mouse"", ""Keyboard""]",2893.43,"{"""": ""15%""}",188321,0,North America +2023-05-14,2128,4627,"[""Headphones"", ""Laptop""]",3809.9,{},231646,0,Europe +2023-04-22,2129,983,"[""Keyboard""]",1619.49,{},53268,1,South America +2024-03-09,2130,3142,"[""Laptop""]",4222.78,"{""seasonal"": ""5%""}",120944,1,South America +2023-12-27,2131,6572,"[""Charger"", ""Tablet"", ""Keyboard""]",2898.58,{},30601,1,North America +2023-09-15,2132,1279,"[""Monitor"", ""Tablet"", ""Headphones""]",2686.38,{},97953,1,North America +2023-08-10,2133,1325,"[""Wireless Mouse""]",3781.35,{},15746,1,Africa +2023-09-30,2134,201,"[""Wireless Mouse""]",1844.74,{},19514,1,Europe +2023-09-10,2135,2857,"[""Laptop"", ""Charger"", ""Tablet""]",2028.29,{},170869,0,North America +2023-06-22,2136,1689,"[""Wireless Mouse"", ""Phone""]",1853.58,"{""seasonal"": ""19%""}",173695,0,Europe +2024-01-21,2137,4695,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2148.95,{},159773,0,Europe +2024-01-01,2138,2288,"[""Tablet""]",4190.24,"{""seasonal"": ""30%""}",75947,0,Europe +2024-07-09,2139,6819,"[""Monitor"", ""Laptop""]",3580.75,{},103590,1,Europe +2024-04-09,2140,2959,"[""Tablet"", ""Monitor""]",964.92,"{"""": ""11%""}",142165,0,Europe +2024-09-24,2141,665,"[""Headphones"", ""Charger"", ""Phone""]",4286.81,{},241613,0,Asia +2023-03-10,2142,6048,"[""Charger"", ""Laptop"", ""Monitor""]",159.27,"{""loyalty"": ""13%""}",296137,1,Europe +2024-04-25,2143,9535,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",844.08,"{"""": ""10%""}",83506,0,Europe +2024-04-13,2144,2593,"[""Wireless Mouse"", ""Charger""]",3018.31,"{"""": ""12%""}",101556,0,South America +2023-05-18,2145,8076,"[""Laptop""]",3503.93,{},263680,0,Europe +2023-01-23,2146,3590,"[""Phone"", ""Keyboard""]",2746.16,{},48437,0,South America +2024-01-24,2147,7404,"[""Laptop"", ""Keyboard"", ""Charger""]",874.36,"{""seasonal"": ""13%""}",262243,1,Asia +2024-09-23,2148,8430,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4169.17,{},157387,0,South America +2024-02-03,2149,134,"[""Charger"", ""Monitor"", ""Laptop""]",4757.47,{},296910,1,South America +2023-09-05,2150,4736,"[""Phone"", ""Tablet""]",536.94,"{""promo"": ""13%""}",11921,1,Europe +2024-03-27,2151,3983,"[""Wireless Mouse""]",3395.15,"{""promo"": ""19%""}",282926,0,Asia +2023-10-31,2152,7669,"[""Laptop"", ""Headphones""]",1995.13,{},13803,1,South America +2023-12-06,2153,4928,"[""Charger"", ""Tablet"", ""Monitor""]",3809.09,"{""promo"": ""20%""}",269888,0,South America +2023-06-15,2154,918,"[""Phone"", ""Headphones"", ""Laptop""]",4217.85,{},265049,0,South America +2024-04-24,2155,8733,"[""Wireless Mouse""]",708.65,{},256228,1,Africa +2023-03-12,2156,9221,"[""Headphones"", ""Tablet""]",1358.08,{},67253,1,South America +2024-12-17,2157,552,"[""Tablet""]",1465.51,{},185075,0,Europe +2023-12-19,2158,3907,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2147.53,{},276766,1,Africa +2024-07-16,2159,5063,"[""Phone""]",611.16,"{"""": ""12%""}",251372,0,Asia +2024-09-22,2160,4443,"[""Headphones"", ""Tablet""]",839.89,"{"""": ""6%""}",176967,0,Asia +2023-06-25,2161,1320,"[""Tablet"", ""Phone"", ""Laptop""]",2979.58,{},234502,1,South America +2023-07-31,2162,3935,"[""Tablet"", ""Monitor""]",2176.58,{},162528,0,Africa +2024-10-23,2163,3144,"[""Charger""]",4769.78,"{"""": ""25%""}",120591,1,Europe +2024-08-15,2164,665,"[""Tablet"", ""Laptop""]",4251.28,{},90420,0,South America +2024-09-05,2165,60,"[""Keyboard"", ""Monitor"", ""Phone""]",2972.19,"{""promo"": ""29%""}",224895,1,South America +2024-03-14,2166,4637,"[""Laptop""]",1685.95,"{"""": ""21%""}",4446,0,Africa +2023-11-26,2167,1946,"[""Laptop""]",1652.78,{},34833,0,North America +2023-02-08,2168,4221,"[""Tablet""]",2936.65,"{""seasonal"": ""16%""}",241173,0,Europe +2023-01-29,2169,1902,"[""Laptop"", ""Keyboard"", ""Tablet""]",1388.85,"{""seasonal"": ""30%""}",28992,1,South America +2023-06-20,2170,9127,"[""Phone"", ""Keyboard"", ""Headphones""]",535.59,{},195811,1,North America +2024-05-29,2171,655,"[""Tablet""]",359.37,{},104033,0,Asia +2023-01-31,2172,62,"[""Charger"", ""Laptop""]",4663.69,"{""promo"": ""21%""}",124038,0,Europe +2024-03-18,2173,6097,"[""Monitor""]",3879.28,{},138844,1,South America +2024-12-27,2174,6009,"[""Monitor""]",2261.24,{},41239,0,Europe +2023-01-03,2175,5788,"[""Headphones"", ""Laptop""]",4329.79,"{""seasonal"": ""29%""}",35004,0,Asia +2023-12-03,2176,1086,"[""Monitor"", ""Tablet""]",3301.93,{},253637,1,North America +2023-04-14,2177,7128,"[""Phone"", ""Keyboard"", ""Laptop""]",1361.85,"{""loyalty"": ""7%""}",263491,1,Asia +2023-03-24,2178,1356,"[""Phone""]",3990.02,"{"""": ""15%""}",141028,0,North America +2024-05-24,2179,9868,"[""Headphones""]",2696.12,{},187004,1,North America +2024-11-28,2180,5903,"[""Keyboard"", ""Wireless Mouse""]",743.9,{},143102,1,Europe +2023-11-04,2181,8567,"[""Monitor"", ""Wireless Mouse""]",154.3,{},177306,0,Europe +2023-11-16,2182,3031,"[""Keyboard""]",2776.86,"{"""": ""5%""}",162557,1,Europe +2023-09-28,2183,3699,"[""Charger"", ""Monitor"", ""Tablet""]",4951.15,"{"""": ""21%""}",206467,1,Africa +2024-09-14,2184,7065,"[""Wireless Mouse""]",1977.49,{},150954,1,North America +2023-03-20,2185,6811,"[""Phone"", ""Tablet""]",4805.0,"{""seasonal"": ""24%""}",207734,0,North America +2024-06-20,2186,4236,"[""Tablet"", ""Keyboard"", ""Charger""]",874.12,"{""loyalty"": ""30%""}",188625,0,North America +2023-04-24,2187,7902,"[""Monitor"", ""Wireless Mouse""]",4392.83,"{"""": ""27%""}",235239,1,North America +2024-12-26,2188,372,"[""Charger"", ""Phone""]",638.85,{},202498,0,Africa +2024-10-27,2189,9550,"[""Laptop"", ""Headphones"", ""Charger""]",3560.65,{},268304,1,Africa +2024-12-14,2190,1608,"[""Headphones"", ""Monitor"", ""Phone""]",1665.42,"{""seasonal"": ""22%""}",230133,1,South America +2023-01-20,2191,494,"[""Charger"", ""Tablet""]",4962.0,"{""seasonal"": ""30%""}",148245,0,North America +2023-02-28,2192,3336,"[""Phone"", ""Keyboard"", ""Headphones""]",2229.95,{},94644,1,Africa +2024-03-12,2193,9008,"[""Laptop"", ""Charger""]",1245.85,"{""seasonal"": ""26%""}",3072,0,North America +2024-11-25,2194,4801,"[""Monitor""]",536.51,"{"""": ""22%""}",284575,0,Asia +2023-02-26,2195,8408,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2433.86,"{""seasonal"": ""17%""}",97367,0,North America +2023-10-12,2196,1903,"[""Tablet"", ""Phone"", ""Charger""]",1197.69,"{""promo"": ""15%""}",193349,1,Africa +2023-12-14,2197,9853,"[""Phone"", ""Laptop""]",3668.57,{},84791,1,South America +2023-05-31,2198,6097,"[""Phone""]",1436.89,{},42218,0,South America +2024-09-19,2199,8741,"[""Headphones"", ""Laptop"", ""Tablet""]",2787.64,{},25886,0,South America +2023-10-01,2200,1844,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1547.53,"{""seasonal"": ""8%""}",18625,1,Africa +2023-04-10,2201,8644,"[""Keyboard"", ""Headphones""]",1314.13,{},85977,1,Africa +2023-03-11,2202,9794,"[""Keyboard""]",3887.93,{},274672,0,Europe +2023-02-15,2203,6755,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4719.5,{},191397,0,North America +2023-11-26,2204,5638,"[""Wireless Mouse""]",3602.82,{},156978,0,Africa +2024-09-17,2205,5008,"[""Laptop"", ""Keyboard"", ""Monitor""]",2461.0,{},230922,1,South America +2024-05-24,2206,2936,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3476.0,"{""seasonal"": ""10%""}",265173,1,Asia +2024-05-18,2207,638,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1440.75,"{"""": ""19%""}",116949,1,Europe +2024-03-05,2208,5852,"[""Monitor"", ""Charger""]",319.48,"{""loyalty"": ""30%""}",76244,1,Europe +2023-12-06,2209,5069,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",346.99,{},153855,1,North America +2024-01-07,2210,2251,"[""Tablet"", ""Headphones""]",2329.76,"{""seasonal"": ""10%""}",56771,1,North America +2023-04-16,2211,2848,"[""Headphones"", ""Keyboard""]",1720.31,{},258535,0,Asia +2024-11-21,2212,9312,"[""Keyboard""]",4429.24,{},287763,1,Africa +2023-10-30,2213,2136,"[""Wireless Mouse"", ""Phone""]",4423.95,{},222821,1,Europe +2023-01-12,2214,1419,"[""Laptop""]",2549.91,"{""promo"": ""19%""}",223919,1,Europe +2023-04-27,2215,147,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3809.57,"{"""": ""22%""}",139523,0,Asia +2024-12-27,2216,2203,"[""Monitor""]",1724.23,"{""loyalty"": ""22%""}",81788,0,South America +2024-04-02,2217,8549,"[""Wireless Mouse""]",2466.86,{},181123,1,Asia +2024-04-10,2218,6343,"[""Wireless Mouse"", ""Charger""]",79.32,"{""loyalty"": ""24%""}",25585,1,Africa +2023-03-18,2219,8526,"[""Monitor""]",1140.85,"{""promo"": ""20%""}",290244,0,Asia +2023-09-11,2220,5057,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1522.7,"{""loyalty"": ""13%""}",72995,0,North America +2024-01-06,2221,7359,"[""Phone"", ""Headphones""]",4770.35,"{""promo"": ""8%""}",83848,0,South America +2023-06-30,2222,1209,"[""Monitor""]",3747.42,"{""loyalty"": ""10%""}",54919,0,Africa +2024-09-22,2223,2450,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3348.64,"{"""": ""17%""}",92680,0,Asia +2023-11-10,2224,8678,"[""Keyboard"", ""Laptop""]",514.58,"{""seasonal"": ""24%""}",147670,0,Asia +2023-04-23,2225,7110,"[""Charger"", ""Tablet"", ""Phone""]",4305.57,{},45943,1,Europe +2023-06-04,2226,9900,"[""Monitor"", ""Phone"", ""Laptop""]",1396.14,{},204062,1,North America +2024-09-10,2227,9809,"[""Headphones""]",827.73,"{""loyalty"": ""19%""}",65876,1,Europe +2023-08-06,2228,4405,"[""Tablet"", ""Phone""]",1491.39,{},114933,0,Europe +2023-05-08,2229,6675,"[""Phone"", ""Laptop""]",2842.04,{},262748,0,North America +2024-01-08,2230,2723,"[""Charger""]",896.23,"{""promo"": ""21%""}",136896,1,Europe +2024-09-16,2231,7257,"[""Laptop"", ""Monitor""]",2308.58,"{""loyalty"": ""17%""}",204011,1,Asia +2024-07-24,2232,2591,"[""Charger"", ""Keyboard"", ""Laptop""]",4435.16,"{""seasonal"": ""12%""}",296160,1,South America +2024-03-15,2233,1209,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4863.93,{},4458,1,Europe +2023-10-13,2234,2854,"[""Tablet"", ""Wireless Mouse""]",242.25,"{""promo"": ""26%""}",182873,1,Africa +2024-07-26,2235,6809,"[""Headphones"", ""Monitor""]",698.65,"{""seasonal"": ""23%""}",68840,0,North America +2024-04-18,2236,8572,"[""Tablet""]",1854.33,{},62785,1,South America +2023-02-07,2237,24,"[""Laptop"", ""Keyboard"", ""Tablet""]",1894.73,{},207276,1,Asia +2024-09-30,2238,2643,"[""Monitor""]",624.68,"{"""": ""30%""}",270930,1,North America +2024-05-20,2239,2809,"[""Keyboard"", ""Phone""]",4609.07,{},27916,0,Africa +2024-03-29,2240,2647,"[""Headphones"", ""Phone"", ""Keyboard""]",4142.79,{},60740,1,Africa +2023-04-18,2241,1360,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3589.32,{},4065,0,Asia +2023-03-01,2242,7596,"[""Monitor""]",3907.79,"{""loyalty"": ""29%""}",277554,1,Africa +2024-01-22,2243,4213,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2826.5,"{""seasonal"": ""24%""}",141817,0,Africa +2024-06-02,2244,6201,"[""Phone"", ""Monitor""]",3929.33,"{"""": ""11%""}",41586,0,South America +2024-09-22,2245,8107,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",865.07,{},156864,0,Asia +2024-07-06,2246,1395,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",288.79,{},83250,0,North America +2023-03-10,2247,6002,"[""Monitor""]",1496.73,{},48244,1,Asia +2023-09-07,2248,7602,"[""Phone"", ""Wireless Mouse""]",2009.73,{},85948,0,South America +2023-02-20,2249,1046,"[""Keyboard"", ""Headphones"", ""Phone""]",2174.87,{},256639,1,North America +2023-12-04,2250,2910,"[""Phone"", ""Monitor""]",129.98,{},164928,1,Asia +2023-09-30,2251,7797,"[""Laptop"", ""Headphones""]",1516.16,{},217420,1,Europe +2024-07-12,2252,3582,"[""Headphones"", ""Wireless Mouse""]",2149.66,{},204760,1,North America +2024-11-24,2253,9427,"[""Headphones"", ""Tablet"", ""Charger""]",904.22,"{"""": ""9%""}",122041,1,Asia +2023-03-23,2254,134,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2297.42,"{""loyalty"": ""22%""}",232828,1,South America +2024-02-16,2255,4273,"[""Headphones""]",1473.81,"{""promo"": ""24%""}",264612,1,South America +2024-08-23,2256,1098,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4790.8,"{""loyalty"": ""28%""}",34012,0,Asia +2023-07-24,2257,7330,"[""Phone"", ""Monitor"", ""Keyboard""]",873.01,{},209927,1,Asia +2024-06-22,2258,8958,"[""Charger"", ""Wireless Mouse""]",1590.77,{},97785,0,South America +2023-01-30,2259,8912,"[""Phone"", ""Headphones""]",284.39,"{""promo"": ""29%""}",212713,0,Asia +2023-05-21,2260,5190,"[""Charger"", ""Wireless Mouse""]",422.86,"{""loyalty"": ""23%""}",74872,0,Europe +2024-12-30,2261,5913,"[""Phone"", ""Charger""]",3542.67,"{""seasonal"": ""10%""}",204641,1,Africa +2023-09-26,2262,2461,"[""Charger"", ""Headphones"", ""Monitor""]",4553.21,{},205588,0,North America +2024-07-06,2263,1306,"[""Phone""]",1922.75,"{""loyalty"": ""8%""}",201861,1,Europe +2024-07-19,2264,1434,"[""Keyboard""]",952.02,{},137900,1,Europe +2024-10-03,2265,5226,"[""Charger"", ""Tablet""]",4993.86,{},228547,1,Africa +2023-07-27,2266,5217,"[""Laptop""]",2657.98,"{"""": ""14%""}",210336,1,Europe +2024-11-28,2267,7756,"[""Laptop"", ""Monitor"", ""Phone""]",3390.91,"{""promo"": ""16%""}",44902,1,Africa +2023-05-21,2268,9665,"[""Charger"", ""Monitor""]",3281.01,"{"""": ""16%""}",94049,1,Africa +2023-04-03,2269,9959,"[""Phone"", ""Monitor"", ""Keyboard""]",4561.45,"{""loyalty"": ""9%""}",104310,1,Africa +2024-12-17,2270,190,"[""Tablet"", ""Monitor"", ""Keyboard""]",3524.41,"{"""": ""11%""}",287927,1,Africa +2024-07-30,2271,9463,"[""Monitor"", ""Phone""]",906.43,{},15427,1,North America +2024-03-18,2272,8746,"[""Phone"", ""Charger"", ""Tablet""]",717.75,{},257948,0,North America +2024-09-17,2273,1043,"[""Tablet""]",2928.65,"{""promo"": ""22%""}",109912,1,South America +2024-12-30,2274,2460,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",975.21,{},171330,0,Africa +2023-10-21,2275,8447,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1007.26,{},51834,0,South America +2023-09-08,2276,3848,"[""Tablet""]",2916.07,{},123219,1,Asia +2023-11-30,2277,7817,"[""Laptop"", ""Charger"", ""Headphones""]",3665.86,"{""promo"": ""19%""}",140593,1,Africa +2024-02-13,2278,7968,"[""Tablet"", ""Headphones""]",2534.13,{},142764,0,Asia +2023-12-20,2279,1644,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3886.28,{},89571,0,North America +2023-03-20,2280,7260,"[""Wireless Mouse""]",286.98,{},280021,1,South America +2024-02-05,2281,4469,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4795.5,"{""seasonal"": ""17%""}",157144,0,Asia +2023-05-22,2282,3742,"[""Laptop""]",2068.13,{},214632,1,North America +2023-11-19,2283,1803,"[""Keyboard"", ""Headphones""]",648.22,{},29681,0,Europe +2023-10-12,2284,8580,"[""Keyboard""]",2309.73,{},151683,0,South America +2024-04-27,2285,9164,"[""Monitor""]",4078.67,"{"""": ""29%""}",141138,1,Africa +2024-12-12,2286,4356,"[""Laptop""]",3430.29,"{""promo"": ""27%""}",159279,0,North America +2024-02-09,2287,5272,"[""Monitor""]",3833.83,"{""loyalty"": ""24%""}",199823,0,Africa +2023-04-05,2288,6486,"[""Tablet"", ""Monitor""]",2973.16,{},47702,0,Europe +2024-11-06,2289,4299,"[""Headphones""]",294.9,"{""loyalty"": ""11%""}",93635,1,Europe +2023-01-26,2290,7859,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3623.24,{},233143,1,Asia +2024-09-30,2291,3915,"[""Phone""]",1278.67,"{"""": ""12%""}",27410,1,Asia +2024-08-10,2292,7929,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2171.08,"{""seasonal"": ""27%""}",54814,0,North America +2024-12-22,2293,8410,"[""Tablet"", ""Keyboard"", ""Phone""]",686.3,"{""loyalty"": ""16%""}",171365,1,Africa +2023-05-21,2294,2300,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4997.67,"{""seasonal"": ""24%""}",266802,0,North America +2024-07-28,2295,8104,"[""Monitor""]",213.35,{},5591,0,South America +2023-08-23,2296,8007,"[""Monitor""]",4597.54,{},60239,0,South America +2024-11-22,2297,3516,"[""Keyboard""]",1093.37,{},111891,0,Europe +2023-02-07,2298,8782,"[""Keyboard"", ""Headphones"", ""Phone""]",4076.57,{},270712,0,South America +2024-04-05,2299,1813,"[""Monitor"", ""Wireless Mouse""]",324.98,"{"""": ""14%""}",39040,0,North America +2024-11-10,2300,6517,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4943.83,{},149629,1,South America +2024-03-29,2301,4385,"[""Charger"", ""Phone"", ""Monitor""]",2469.4,{},46871,1,North America +2023-03-25,2302,882,"[""Tablet"", ""Monitor""]",4892.39,"{""promo"": ""5%""}",201759,1,North America +2023-08-20,2303,7709,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1883.5,{},183692,0,North America +2023-08-10,2304,3698,"[""Laptop"", ""Monitor""]",905.46,{},181827,0,Africa +2024-11-26,2305,5856,"[""Monitor"", ""Laptop""]",1189.39,{},1019,0,Africa +2024-11-13,2306,7147,"[""Laptop""]",1540.08,"{""loyalty"": ""22%""}",49537,1,Asia +2024-06-05,2307,1165,"[""Phone"", ""Headphones""]",3995.96,"{""promo"": ""18%""}",283188,0,Europe +2023-08-13,2308,5040,"[""Keyboard"", ""Wireless Mouse""]",546.35,{},134521,1,Asia +2024-01-24,2309,1591,"[""Charger"", ""Monitor"", ""Tablet""]",1090.39,{},150238,0,Asia +2024-01-23,2310,9561,"[""Headphones""]",116.91,"{""loyalty"": ""9%""}",287566,1,Europe +2023-02-12,2311,8793,"[""Laptop""]",4520.06,{},99969,0,Asia +2023-09-02,2312,1246,"[""Charger""]",4757.94,"{"""": ""11%""}",122326,1,South America +2023-10-21,2313,7805,"[""Tablet""]",3098.35,{},132822,0,Asia +2024-03-05,2314,9041,"[""Laptop"", ""Charger"", ""Phone""]",1801.15,"{"""": ""10%""}",159342,0,Africa +2023-10-03,2315,8770,"[""Laptop""]",2195.61,"{"""": ""28%""}",179006,0,Africa +2024-06-30,2316,3734,"[""Monitor"", ""Charger""]",816.99,{},89989,0,Asia +2024-06-26,2317,5260,"[""Headphones"", ""Laptop""]",2784.3,{},102063,0,Asia +2023-11-18,2318,4219,"[""Wireless Mouse"", ""Keyboard""]",3653.93,{},297187,1,North America +2024-08-06,2319,2255,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1240.88,{},282418,0,North America +2023-01-15,2320,9356,"[""Monitor""]",417.59,{},229640,1,Africa +2024-12-04,2321,4105,"[""Laptop""]",595.5,{},164288,0,Asia +2023-03-10,2322,2710,"[""Tablet"", ""Headphones""]",1336.38,"{""promo"": ""30%""}",69818,1,South America +2023-11-20,2323,456,"[""Laptop""]",2445.69,{},96135,1,Europe +2023-01-01,2324,6572,"[""Laptop"", ""Charger"", ""Headphones""]",4464.4,"{"""": ""12%""}",17326,0,Africa +2023-08-27,2325,3176,"[""Monitor"", ""Tablet""]",3254.41,{},37494,1,South America +2023-07-30,2326,6601,"[""Charger"", ""Keyboard"", ""Tablet""]",2019.17,{},252556,0,North America +2023-10-17,2327,2219,"[""Wireless Mouse"", ""Headphones""]",4165.21,"{"""": ""30%""}",224871,1,South America +2024-01-23,2328,9930,"[""Headphones""]",1525.34,{},184681,1,Africa +2024-02-11,2329,2686,"[""Laptop"", ""Tablet""]",4709.06,{},239253,0,South America +2023-01-08,2330,6854,"[""Charger""]",3679.78,{},143999,0,Africa +2023-10-30,2331,364,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",704.6,{},21532,0,North America +2024-12-25,2332,9005,"[""Wireless Mouse"", ""Charger""]",2667.41,{},288341,0,North America +2023-01-03,2333,6114,"[""Monitor""]",4086.29,{},214920,1,Europe +2023-09-27,2334,4224,"[""Laptop"", ""Keyboard"", ""Phone""]",919.21,"{""promo"": ""24%""}",67669,1,South America +2024-10-20,2335,1031,"[""Laptop"", ""Phone""]",3231.99,"{"""": ""30%""}",114380,1,South America +2023-12-29,2336,49,"[""Monitor"", ""Phone""]",1160.58,"{"""": ""17%""}",162248,1,Africa +2024-01-28,2337,1417,"[""Monitor""]",1865.77,"{"""": ""17%""}",247292,0,South America +2023-04-09,2338,6515,"[""Keyboard"", ""Wireless Mouse""]",2033.9,{},78285,1,Africa +2023-08-05,2339,519,"[""Charger"", ""Monitor""]",2654.92,{},229954,0,Africa +2024-11-27,2340,783,"[""Wireless Mouse"", ""Phone""]",4402.36,{},103442,1,South America +2024-03-06,2341,7748,"[""Charger""]",4743.04,{},182380,1,Europe +2023-11-10,2342,2456,"[""Phone""]",4540.53,{},130745,1,North America +2024-02-18,2343,6698,"[""Tablet"", ""Keyboard""]",653.83,{},157217,0,South America +2023-09-18,2344,281,"[""Laptop"", ""Phone"", ""Monitor""]",3741.16,{},230566,1,North America +2023-05-01,2345,2382,"[""Tablet"", ""Charger"", ""Headphones""]",884.74,"{""loyalty"": ""5%""}",73313,1,Africa +2023-08-15,2346,5269,"[""Laptop"", ""Phone"", ""Headphones""]",4228.29,"{""seasonal"": ""9%""}",201284,1,Asia +2024-03-10,2347,5542,"[""Monitor"", ""Tablet""]",1566.38,"{""loyalty"": ""23%""}",95359,1,North America +2024-11-28,2348,7264,"[""Monitor"", ""Headphones""]",1774.87,{},90692,1,South America +2023-11-25,2349,2357,"[""Laptop"", ""Keyboard""]",389.26,"{""seasonal"": ""19%""}",46372,1,Asia +2023-08-19,2350,6919,"[""Tablet""]",1619.9,"{""loyalty"": ""15%""}",246880,1,North America +2023-06-01,2351,6812,"[""Charger""]",334.69,{},283827,0,Asia +2024-09-03,2352,6599,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1411.55,{},144492,1,North America +2024-04-28,2353,4654,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2045.13,"{"""": ""6%""}",171892,1,Asia +2024-11-12,2354,5542,"[""Charger"", ""Phone""]",442.27,{},93609,1,North America +2023-11-08,2355,6567,"[""Keyboard"", ""Tablet"", ""Laptop""]",1832.87,"{""loyalty"": ""11%""}",53006,1,South America +2023-10-13,2356,4714,"[""Laptop"", ""Phone""]",658.12,{},213279,1,North America +2023-01-16,2357,1156,"[""Monitor"", ""Charger"", ""Laptop""]",3824.06,"{""seasonal"": ""20%""}",129229,1,Africa +2024-08-09,2358,1058,"[""Tablet""]",776.83,"{""loyalty"": ""12%""}",141677,1,North America +2024-04-18,2359,4639,"[""Tablet""]",2651.05,"{""promo"": ""30%""}",199409,1,North America +2023-03-26,2360,8893,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",246.74,{},162658,0,Europe +2023-01-25,2361,5789,"[""Headphones""]",4279.75,{},24090,0,Asia +2023-08-06,2362,5081,"[""Laptop"", ""Charger""]",4940.93,"{""promo"": ""18%""}",132238,1,Africa +2023-12-25,2363,5413,"[""Charger"", ""Tablet"", ""Monitor""]",1045.22,"{"""": ""29%""}",13551,0,Africa +2024-08-16,2364,160,"[""Tablet""]",1066.52,{},268608,0,South America +2024-04-03,2365,4315,"[""Headphones"", ""Keyboard"", ""Laptop""]",2388.26,{},75451,0,North America +2023-04-28,2366,1559,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",814.55,"{"""": ""28%""}",220463,0,North America +2024-03-20,2367,5080,"[""Keyboard"", ""Tablet""]",2104.05,{},187552,1,South America +2024-04-18,2368,1459,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2363.84,"{""loyalty"": ""13%""}",82743,1,Asia +2024-01-25,2369,6311,"[""Tablet"", ""Monitor"", ""Phone""]",485.92,{},276810,1,Asia +2023-09-11,2370,8493,"[""Charger"", ""Laptop""]",1017.66,{},3208,0,Europe +2023-10-24,2371,2100,"[""Keyboard"", ""Headphones""]",365.82,{},6285,0,South America +2024-03-11,2372,5749,"[""Charger"", ""Keyboard"", ""Monitor""]",772.76,{},71644,0,South America +2023-10-30,2373,2550,"[""Charger"", ""Keyboard""]",4908.9,{},103235,0,Africa +2023-03-16,2374,9450,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3878.85,"{""loyalty"": ""25%""}",203944,0,South America +2024-10-17,2375,7381,"[""Charger""]",3453.86,{},245866,1,Africa +2023-12-03,2376,5513,"[""Phone"", ""Monitor""]",589.13,"{"""": ""6%""}",150100,0,North America +2024-06-19,2377,9084,"[""Phone"", ""Laptop""]",1700.14,"{""seasonal"": ""29%""}",141563,1,South America +2023-08-07,2378,3194,"[""Monitor"", ""Phone"", ""Charger""]",2989.32,"{""seasonal"": ""25%""}",113672,1,Africa +2024-10-11,2379,952,"[""Phone"", ""Headphones""]",2452.29,{},219486,1,North America +2024-09-16,2380,9516,"[""Headphones"", ""Phone""]",429.37,{},295316,0,Asia +2024-02-02,2381,2619,"[""Headphones""]",3316.61,"{""seasonal"": ""6%""}",177046,0,South America +2023-10-31,2382,6389,"[""Keyboard"", ""Monitor""]",3384.73,"{""promo"": ""13%""}",174822,1,Africa +2023-05-11,2383,4486,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4906.02,"{"""": ""27%""}",91228,1,Europe +2023-02-10,2384,8959,"[""Monitor""]",3174.34,"{""loyalty"": ""28%""}",141062,1,South America +2024-05-12,2385,6868,"[""Headphones"", ""Charger""]",4024.1,{},150185,0,North America +2023-02-20,2386,9547,"[""Wireless Mouse""]",2988.97,{},76345,0,North America +2024-05-02,2387,8279,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",975.53,{},163227,1,South America +2024-10-31,2388,2649,"[""Charger"", ""Laptop""]",4710.5,{},298858,0,South America +2024-07-25,2389,9045,"[""Charger"", ""Tablet""]",1370.66,"{""seasonal"": ""18%""}",113753,0,South America +2023-09-01,2390,3225,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2235.02,"{""promo"": ""9%""}",217093,1,Europe +2023-03-07,2391,8883,"[""Headphones""]",2434.66,"{""promo"": ""14%""}",269254,0,South America +2023-05-31,2392,4981,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",922.73,{},8632,0,Europe +2023-09-05,2393,5879,"[""Laptop""]",3665.64,{},231035,1,North America +2023-06-27,2394,5700,"[""Headphones""]",4663.38,"{"""": ""8%""}",179920,0,South America +2023-03-15,2395,4730,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3430.07,{},108774,1,North America +2024-03-27,2396,5972,"[""Keyboard"", ""Wireless Mouse""]",688.15,"{""loyalty"": ""22%""}",70433,1,Asia +2024-09-15,2397,4769,"[""Monitor""]",1230.01,"{""seasonal"": ""5%""}",75931,0,South America +2024-11-08,2398,4181,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3821.17,{},110884,0,Asia +2023-05-30,2399,9058,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1179.58,{},190163,1,Africa +2023-10-05,2400,4582,"[""Phone"", ""Monitor""]",213.32,{},250975,1,Asia +2023-05-23,2401,8528,"[""Headphones""]",3197.87,{},110569,0,Africa +2023-09-25,2402,2880,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",695.61,{},136456,0,Africa +2024-01-06,2403,3297,"[""Charger""]",3382.89,"{""seasonal"": ""20%""}",281705,0,Africa +2023-02-06,2404,963,"[""Tablet"", ""Charger""]",1235.0,{},155812,1,Asia +2023-11-03,2405,407,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1578.18,"{""promo"": ""20%""}",150743,1,Europe +2023-06-23,2406,6626,"[""Wireless Mouse""]",448.46,{},273464,1,Asia +2024-01-08,2407,2012,"[""Wireless Mouse"", ""Monitor""]",719.52,{},235499,1,Asia +2024-03-26,2408,4421,"[""Wireless Mouse"", ""Phone""]",2377.29,"{""promo"": ""7%""}",179873,0,Europe +2023-02-07,2409,3441,"[""Headphones"", ""Keyboard""]",1342.89,"{""promo"": ""14%""}",277866,1,North America +2023-01-12,2410,316,"[""Charger"", ""Keyboard""]",3909.81,"{"""": ""26%""}",138648,0,South America +2024-01-08,2411,1680,"[""Laptop""]",3809.7,"{"""": ""28%""}",279526,1,Asia +2023-02-21,2412,9418,"[""Laptop""]",1485.1,{},150766,1,South America +2024-12-10,2413,6016,"[""Wireless Mouse"", ""Keyboard""]",2432.82,"{""promo"": ""20%""}",106562,1,Asia +2023-06-30,2414,8507,"[""Laptop"", ""Phone""]",438.47,{},209603,1,North America +2023-04-06,2415,8641,"[""Wireless Mouse"", ""Charger""]",3473.63,"{""seasonal"": ""20%""}",105124,0,North America +2023-03-12,2416,9062,"[""Laptop""]",4213.11,"{"""": ""27%""}",66821,0,South America +2024-04-22,2417,8218,"[""Wireless Mouse"", ""Keyboard""]",1410.21,"{"""": ""23%""}",209257,0,Europe +2023-08-20,2418,6947,"[""Phone"", ""Keyboard"", ""Laptop""]",2710.3,{},148281,1,North America +2023-04-28,2419,6087,"[""Keyboard"", ""Headphones""]",2789.15,{},49074,0,North America +2024-08-14,2420,1201,"[""Wireless Mouse""]",3068.85,{},256339,0,South America +2024-04-07,2421,9914,"[""Keyboard"", ""Monitor""]",1981.13,"{""seasonal"": ""19%""}",61814,0,South America +2024-02-29,2422,8594,"[""Monitor"", ""Laptop""]",2753.89,"{"""": ""18%""}",128100,0,Europe +2024-04-25,2423,283,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4643.19,{},172280,1,Asia +2023-07-04,2424,3811,"[""Laptop"", ""Wireless Mouse""]",478.22,{},211385,0,Asia +2023-11-29,2425,9256,"[""Laptop"", ""Monitor""]",3975.4,"{""seasonal"": ""24%""}",281036,0,South America +2023-11-15,2426,9715,"[""Tablet"", ""Laptop""]",2501.7,"{""seasonal"": ""6%""}",175202,1,South America +2023-03-28,2427,2263,"[""Keyboard"", ""Laptop"", ""Headphones""]",834.19,{},95252,1,Europe +2024-11-23,2428,9816,"[""Laptop""]",1367.64,{},159446,1,South America +2023-10-06,2429,8221,"[""Tablet""]",2655.87,{},13580,0,South America +2024-09-04,2430,7880,"[""Tablet""]",2135.5,"{""seasonal"": ""17%""}",204572,1,Africa +2023-02-10,2431,7564,"[""Wireless Mouse""]",1829.84,{},60987,0,North America +2023-03-28,2432,6496,"[""Charger""]",4630.18,{},174202,0,South America +2024-10-30,2433,2865,"[""Monitor""]",3916.3,"{""seasonal"": ""26%""}",28626,1,North America +2023-07-12,2434,447,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",462.5,"{"""": ""18%""}",142536,0,South America +2024-04-05,2435,4353,"[""Headphones""]",4712.4,{},62792,1,Europe +2024-12-18,2436,1348,"[""Laptop""]",2679.03,"{""loyalty"": ""12%""}",6792,1,Asia +2024-07-14,2437,8435,"[""Keyboard"", ""Wireless Mouse""]",1204.21,"{""promo"": ""30%""}",7335,1,Europe +2023-11-21,2438,5430,"[""Monitor""]",4520.12,{},198469,0,North America +2024-10-03,2439,2006,"[""Charger""]",172.72,{},156859,0,Africa +2024-07-08,2440,8010,"[""Monitor"", ""Charger"", ""Headphones""]",2636.22,{},92865,1,North America +2024-08-04,2441,8271,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1236.81,"{"""": ""14%""}",68843,0,Asia +2023-08-27,2442,3564,"[""Monitor"", ""Charger""]",259.87,"{""loyalty"": ""6%""}",212023,1,Asia +2024-05-05,2443,1010,"[""Laptop""]",203.16,"{""seasonal"": ""18%""}",255366,1,North America +2024-03-29,2444,7644,"[""Charger""]",2634.39,{},155292,0,South America +2024-02-22,2445,3643,"[""Keyboard"", ""Tablet""]",2730.5,"{"""": ""20%""}",142685,1,Europe +2024-08-16,2446,9698,"[""Phone"", ""Wireless Mouse""]",2366.08,{},148154,0,South America +2023-07-20,2447,7506,"[""Tablet"", ""Charger"", ""Laptop""]",4432.3,"{""loyalty"": ""15%""}",93319,0,Africa +2024-09-17,2448,9164,"[""Phone""]",2993.06,"{""loyalty"": ""5%""}",211801,1,Asia +2023-01-29,2449,25,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3694.37,{},246808,1,Asia +2024-07-27,2450,2038,"[""Monitor"", ""Charger"", ""Keyboard""]",4522.73,"{"""": ""20%""}",172033,1,South America +2023-01-28,2451,9160,"[""Headphones"", ""Charger"", ""Tablet""]",1289.71,{},260785,0,Europe +2023-04-03,2452,9081,"[""Monitor"", ""Phone""]",3550.11,{},80405,1,South America +2023-12-10,2453,182,"[""Laptop"", ""Wireless Mouse""]",105.89,"{""promo"": ""10%""}",94950,1,North America +2023-08-07,2454,2546,"[""Phone"", ""Tablet""]",4565.7,{},70249,0,North America +2024-07-17,2455,8290,"[""Phone"", ""Tablet"", ""Laptop""]",1606.18,"{""seasonal"": ""19%""}",52126,1,South America +2024-09-29,2456,7437,"[""Headphones"", ""Charger""]",3706.48,"{""promo"": ""23%""}",260712,0,North America +2023-10-20,2457,4247,"[""Phone"", ""Headphones"", ""Monitor""]",2667.66,{},248658,1,Asia +2023-12-06,2458,1166,"[""Phone"", ""Keyboard"", ""Headphones""]",3496.66,"{"""": ""13%""}",211243,0,Africa +2023-10-18,2459,917,"[""Monitor"", ""Wireless Mouse""]",4202.12,"{"""": ""22%""}",13647,1,Africa +2023-04-30,2460,4655,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3082.3,"{""loyalty"": ""13%""}",131012,0,South America +2024-01-11,2461,3223,"[""Wireless Mouse""]",2476.85,"{""seasonal"": ""21%""}",160340,0,Europe +2024-12-20,2462,691,"[""Wireless Mouse"", ""Phone""]",511.31,{},268603,1,South America +2024-04-05,2463,2231,"[""Wireless Mouse"", ""Phone""]",2274.79,{},203485,1,North America +2023-11-04,2464,9343,"[""Tablet"", ""Headphones"", ""Keyboard""]",426.43,{},148279,1,Africa +2024-07-12,2465,2707,"[""Charger"", ""Phone""]",3125.84,"{""promo"": ""29%""}",233706,1,Africa +2023-07-11,2466,1313,"[""Laptop""]",2056.07,"{""loyalty"": ""23%""}",291367,1,Africa +2024-01-04,2467,9435,"[""Charger"", ""Laptop""]",3002.18,"{""loyalty"": ""5%""}",150161,0,North America +2024-05-09,2468,5287,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1690.45,"{""promo"": ""30%""}",122843,0,Asia +2023-01-09,2469,5755,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4711.67,"{""loyalty"": ""30%""}",44001,0,Europe +2023-05-11,2470,256,"[""Charger"", ""Monitor"", ""Phone""]",1203.49,"{""seasonal"": ""8%""}",46598,1,North America +2023-03-31,2471,3080,"[""Wireless Mouse""]",976.38,"{""promo"": ""13%""}",209756,1,Africa +2023-02-24,2472,3717,"[""Laptop"", ""Phone""]",1393.12,"{""seasonal"": ""16%""}",105987,1,Africa +2024-08-27,2473,5282,"[""Charger"", ""Keyboard""]",1403.27,{},49228,1,South America +2024-07-31,2474,2696,"[""Charger"", ""Tablet"", ""Phone""]",3923.8,{},236800,0,Africa +2023-09-07,2475,7325,"[""Laptop"", ""Headphones""]",2788.8,"{"""": ""7%""}",102460,0,South America +2024-10-12,2476,2055,"[""Charger""]",1619.61,"{""loyalty"": ""10%""}",154526,1,Asia +2023-05-23,2477,6841,"[""Headphones""]",1988.94,{},198602,0,South America +2024-03-10,2478,5353,"[""Charger"", ""Tablet"", ""Keyboard""]",525.42,{},294703,0,North America +2024-08-07,2479,4763,"[""Phone"", ""Monitor""]",3071.43,"{"""": ""20%""}",260318,1,North America +2023-11-14,2480,6934,"[""Tablet""]",1291.14,"{""promo"": ""27%""}",220567,1,Asia +2024-08-25,2481,8668,"[""Tablet""]",1513.66,"{"""": ""9%""}",169452,1,Africa +2024-08-12,2482,8906,"[""Keyboard"", ""Monitor""]",1528.44,"{""loyalty"": ""24%""}",199057,1,South America +2024-08-21,2483,7178,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4108.13,"{""seasonal"": ""28%""}",56076,0,Europe +2024-12-20,2484,2419,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",879.47,{},4035,0,Africa +2023-01-25,2485,3847,"[""Phone"", ""Headphones""]",3119.14,{},212016,1,North America +2024-03-26,2486,4971,"[""Headphones"", ""Tablet""]",2103.21,{},206245,1,North America +2023-10-10,2487,6288,"[""Wireless Mouse"", ""Headphones""]",729.32,{},38420,0,Africa +2023-06-30,2488,2626,"[""Phone""]",2468.52,{},120728,1,South America +2023-03-22,2489,6332,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2416.08,{},144254,1,North America +2023-09-20,2490,2564,"[""Phone"", ""Tablet""]",3063.57,"{""loyalty"": ""8%""}",287606,0,South America +2023-01-14,2491,8655,"[""Laptop"", ""Headphones"", ""Charger""]",2591.13,{},153211,1,South America +2024-03-01,2492,4391,"[""Monitor""]",3968.65,"{"""": ""23%""}",2390,0,South America +2024-08-10,2493,3714,"[""Phone""]",3525.33,{},213087,1,Europe +2024-10-11,2494,9343,"[""Monitor"", ""Charger""]",3495.17,"{"""": ""8%""}",296673,1,South America +2023-04-30,2495,9344,"[""Keyboard"", ""Tablet"", ""Monitor""]",4454.2,{},5174,1,Asia +2023-11-30,2496,5866,"[""Headphones"", ""Charger"", ""Keyboard""]",779.62,"{""seasonal"": ""12%""}",19505,1,Europe +2023-12-30,2497,6126,"[""Headphones"", ""Tablet""]",2377.78,"{""seasonal"": ""18%""}",66198,0,Europe +2023-07-29,2498,7823,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1604.12,{},255896,0,Europe +2023-11-03,2499,3527,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4444.81,{},254277,1,Asia +2024-10-30,2500,8452,"[""Tablet"", ""Monitor""]",3978.2,{},40295,1,Europe +2024-03-31,2501,4468,"[""Keyboard""]",2630.11,{},146533,0,North America +2024-01-30,2502,9491,"[""Monitor"", ""Headphones"", ""Keyboard""]",1887.02,{},269677,1,Europe +2024-10-25,2503,1871,"[""Wireless Mouse"", ""Tablet""]",2154.29,"{"""": ""11%""}",200905,0,Asia +2024-11-07,2504,2818,"[""Monitor""]",4287.02,{},91821,1,Europe +2024-01-30,2505,7647,"[""Headphones"", ""Charger"", ""Laptop""]",495.9,"{""promo"": ""18%""}",150511,1,North America +2023-10-04,2506,7578,"[""Laptop"", ""Keyboard""]",1150.84,"{""loyalty"": ""28%""}",257176,1,South America +2023-07-30,2507,858,"[""Keyboard"", ""Laptop""]",412.32,{},125365,1,Europe +2024-08-13,2508,1330,"[""Monitor"", ""Keyboard""]",2083.4,"{""seasonal"": ""10%""}",160663,1,Asia +2023-12-09,2509,4957,"[""Wireless Mouse""]",790.17,"{""loyalty"": ""27%""}",87759,0,South America +2024-06-29,2510,9460,"[""Laptop""]",2421.51,{},50761,1,South America +2024-01-16,2511,4511,"[""Headphones""]",3976.02,{},273580,1,Africa +2023-10-28,2512,1293,"[""Charger"", ""Monitor""]",58.98,"{""loyalty"": ""18%""}",137945,1,Asia +2024-08-03,2513,3303,"[""Charger"", ""Phone""]",3548.11,{},55489,1,South America +2024-10-14,2514,3048,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2829.95,"{""seasonal"": ""28%""}",151896,1,South America +2024-08-07,2515,712,"[""Wireless Mouse"", ""Monitor""]",3281.72,"{""loyalty"": ""12%""}",195934,1,North America +2024-02-12,2516,3031,"[""Tablet""]",2425.56,"{""seasonal"": ""26%""}",56069,1,Europe +2024-01-19,2517,2896,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1804.17,"{""loyalty"": ""6%""}",239173,0,Europe +2024-06-19,2518,4686,"[""Phone""]",2621.2,{},123781,0,South America +2024-03-08,2519,1987,"[""Headphones"", ""Laptop""]",2662.75,"{"""": ""21%""}",38812,0,Asia +2023-01-10,2520,9857,"[""Headphones"", ""Monitor"", ""Tablet""]",2362.63,"{""loyalty"": ""17%""}",140402,1,South America +2023-02-27,2521,7009,"[""Monitor"", ""Charger""]",679.82,{},225147,0,Asia +2024-01-27,2522,5706,"[""Tablet"", ""Monitor"", ""Laptop""]",1801.91,"{""seasonal"": ""19%""}",257204,0,Asia +2023-01-07,2523,3459,"[""Phone"", ""Headphones""]",4367.82,{},213019,0,Asia +2023-09-05,2524,8873,"[""Charger""]",321.23,{},187108,1,Europe +2023-01-24,2525,8402,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2343.82,"{""loyalty"": ""25%""}",114150,0,Africa +2024-05-24,2526,6341,"[""Wireless Mouse""]",2732.73,"{""promo"": ""10%""}",11236,0,Asia +2024-07-26,2527,5249,"[""Phone""]",4182.95,"{""seasonal"": ""6%""}",269272,1,Africa +2023-11-27,2528,4516,"[""Tablet""]",2006.98,{},40031,0,Africa +2024-05-07,2529,2136,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2624.57,"{""loyalty"": ""19%""}",267220,1,North America +2023-05-22,2530,6133,"[""Keyboard"", ""Headphones"", ""Monitor""]",300.14,{},143612,1,Europe +2023-09-10,2531,9642,"[""Headphones"", ""Charger"", ""Tablet""]",4880.21,"{"""": ""26%""}",198473,1,Europe +2023-08-18,2532,8428,"[""Monitor"", ""Charger"", ""Phone""]",1908.45,{},228411,1,Asia +2023-07-06,2533,2037,"[""Headphones"", ""Monitor""]",3662.21,{},140594,0,Europe +2023-06-09,2534,2695,"[""Monitor"", ""Charger"", ""Tablet""]",2806.45,"{""seasonal"": ""6%""}",159047,0,Europe +2024-07-01,2535,5395,"[""Tablet"", ""Laptop""]",2005.86,"{""promo"": ""12%""}",170699,0,North America +2024-10-01,2536,3428,"[""Tablet"", ""Charger""]",4490.32,{},66875,1,Asia +2024-06-26,2537,8902,"[""Charger""]",1993.03,{},111291,1,Europe +2024-10-29,2538,6466,"[""Laptop""]",3850.74,"{""loyalty"": ""28%""}",197550,1,South America +2024-12-30,2539,767,"[""Keyboard"", ""Phone""]",4882.67,{},236078,1,Europe +2023-02-10,2540,4130,"[""Charger"", ""Monitor""]",3035.2,{},38556,1,South America +2024-05-26,2541,7855,"[""Tablet""]",4291.63,{},31190,0,Europe +2023-07-11,2542,2502,"[""Tablet"", ""Wireless Mouse""]",3632.08,"{""seasonal"": ""14%""}",254411,0,Europe +2023-07-02,2543,7263,"[""Tablet"", ""Phone""]",4715.21,"{""promo"": ""6%""}",245194,0,North America +2023-09-15,2544,9212,"[""Tablet"", ""Monitor"", ""Headphones""]",4148.77,{},61067,0,South America +2023-10-13,2545,1308,"[""Keyboard""]",2626.56,"{""promo"": ""7%""}",8867,1,North America +2024-09-21,2546,3143,"[""Tablet""]",1219.71,"{""seasonal"": ""15%""}",206768,1,Africa +2024-08-12,2547,4144,"[""Headphones""]",215.26,{},151658,0,Europe +2023-01-28,2548,4806,"[""Monitor""]",547.6,{},202341,0,Africa +2023-07-04,2549,9259,"[""Tablet"", ""Keyboard"", ""Monitor""]",168.14,{},221545,1,Europe +2023-08-29,2550,9263,"[""Wireless Mouse"", ""Monitor""]",246.79,{},77171,1,Europe +2024-04-01,2551,8166,"[""Tablet""]",4868.04,{},1875,0,North America +2023-06-12,2552,181,"[""Keyboard"", ""Tablet""]",696.53,{},162937,1,Africa +2024-12-13,2553,6678,"[""Keyboard"", ""Laptop""]",1551.26,"{""seasonal"": ""26%""}",9420,0,North America +2023-06-05,2554,6764,"[""Tablet""]",1857.55,"{""seasonal"": ""26%""}",24990,1,North America +2024-02-18,2555,1366,"[""Wireless Mouse""]",3861.35,"{""loyalty"": ""5%""}",89024,1,South America +2024-01-03,2556,5613,"[""Keyboard"", ""Phone""]",4304.89,"{"""": ""20%""}",91671,0,North America +2023-10-08,2557,5391,"[""Headphones""]",1451.65,{},62256,1,Europe +2024-01-09,2558,247,"[""Headphones""]",2531.0,"{""seasonal"": ""10%""}",244022,0,Africa +2024-12-07,2559,9217,"[""Tablet"", ""Charger"", ""Phone""]",2157.8,"{""seasonal"": ""21%""}",74837,1,North America +2024-08-13,2560,6728,"[""Tablet"", ""Keyboard""]",4301.93,"{""seasonal"": ""23%""}",122025,0,Asia +2023-08-03,2561,2222,"[""Wireless Mouse"", ""Monitor""]",1493.34,{},171714,1,Asia +2023-05-27,2562,9490,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4553.01,"{"""": ""7%""}",296318,1,Africa +2023-03-23,2563,7862,"[""Monitor"", ""Wireless Mouse""]",1198.35,{},32087,0,Africa +2024-05-19,2564,7044,"[""Phone""]",190.24,"{""loyalty"": ""26%""}",59365,0,Europe +2024-12-30,2565,7497,"[""Keyboard"", ""Phone"", ""Monitor""]",389.72,"{""promo"": ""5%""}",170403,1,Africa +2023-08-15,2566,2367,"[""Wireless Mouse""]",2819.19,{},117295,0,South America +2024-08-03,2567,9593,"[""Monitor"", ""Keyboard""]",1456.05,"{""promo"": ""16%""}",179163,0,South America +2023-09-04,2568,8457,"[""Phone"", ""Laptop"", ""Keyboard""]",2334.64,"{"""": ""11%""}",227516,1,North America +2023-07-25,2569,5963,"[""Phone"", ""Monitor"", ""Headphones""]",984.49,{},128762,1,Africa +2023-01-10,2570,1178,"[""Wireless Mouse""]",2292.84,"{""seasonal"": ""27%""}",180180,1,North America +2023-05-06,2571,3043,"[""Wireless Mouse""]",3437.73,"{"""": ""27%""}",230369,1,North America +2024-03-22,2572,9876,"[""Headphones""]",1899.24,{},118866,0,Asia +2023-10-09,2573,916,"[""Headphones"", ""Keyboard"", ""Tablet""]",1787.04,"{"""": ""28%""}",253913,1,Europe +2024-05-22,2574,9351,"[""Wireless Mouse""]",2705.49,{},103567,1,Asia +2023-12-05,2575,4729,"[""Charger"", ""Keyboard"", ""Monitor""]",3358.09,{},258751,1,South America +2023-11-06,2576,8680,"[""Monitor"", ""Laptop""]",4881.15,{},142267,0,Africa +2024-10-27,2577,9959,"[""Tablet""]",639.05,"{"""": ""19%""}",202095,1,Europe +2023-01-15,2578,8917,"[""Laptop""]",671.12,"{""loyalty"": ""14%""}",41519,0,Europe +2024-03-30,2579,7804,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2051.12,"{"""": ""14%""}",79586,0,North America +2023-11-18,2580,2130,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4399.42,"{""loyalty"": ""25%""}",119551,1,South America +2024-06-25,2581,9238,"[""Headphones""]",3938.81,{},176831,1,South America +2023-05-11,2582,8775,"[""Charger"", ""Tablet"", ""Headphones""]",3945.16,"{"""": ""21%""}",90339,0,North America +2024-08-11,2583,3932,"[""Charger""]",4501.09,"{""seasonal"": ""30%""}",83991,0,North America +2024-02-09,2584,1850,"[""Headphones""]",4213.23,"{""promo"": ""10%""}",103612,1,South America +2024-11-09,2585,1586,"[""Keyboard"", ""Charger"", ""Headphones""]",1003.21,{},249933,0,Africa +2024-10-23,2586,4794,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",826.64,{},120258,0,South America +2024-05-15,2587,3239,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3045.4,"{""seasonal"": ""27%""}",36454,0,Europe +2024-03-14,2588,6515,"[""Tablet""]",2902.08,"{""seasonal"": ""15%""}",176184,1,Africa +2023-03-25,2589,1227,"[""Wireless Mouse"", ""Keyboard""]",227.27,"{""promo"": ""8%""}",283330,0,Africa +2023-12-11,2590,8191,"[""Laptop"", ""Tablet""]",4144.35,{},70526,0,Europe +2024-03-15,2591,2196,"[""Monitor""]",978.82,"{"""": ""15%""}",163516,1,North America +2023-11-01,2592,2698,"[""Wireless Mouse"", ""Laptop""]",3257.55,{},34611,0,Asia +2024-02-04,2593,6701,"[""Monitor"", ""Headphones"", ""Keyboard""]",2771.56,"{""promo"": ""30%""}",270232,1,North America +2024-08-24,2594,7103,"[""Laptop""]",524.53,{},182568,1,South America +2023-04-18,2595,5099,"[""Phone""]",3686.11,"{""promo"": ""6%""}",147145,0,Asia +2023-02-10,2596,722,"[""Charger""]",3060.67,{},9869,0,South America +2023-10-07,2597,9919,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4792.43,{},206530,0,Asia +2024-03-22,2598,9118,"[""Charger"", ""Wireless Mouse""]",4117.5,"{""promo"": ""11%""}",287641,1,Europe +2024-07-06,2599,9882,"[""Keyboard"", ""Tablet"", ""Charger""]",2671.95,"{""promo"": ""10%""}",99089,1,North America +2023-04-01,2600,2254,"[""Keyboard"", ""Tablet"", ""Phone""]",1301.56,"{"""": ""22%""}",163757,0,Asia +2023-06-05,2601,996,"[""Laptop"", ""Phone""]",1197.3,{},94779,0,North America +2023-06-18,2602,9544,"[""Tablet""]",2771.53,"{""loyalty"": ""12%""}",169678,0,Europe +2024-01-15,2603,4139,"[""Tablet"", ""Keyboard""]",1135.82,{},50410,0,South America +2023-11-15,2604,2659,"[""Keyboard"", ""Charger"", ""Headphones""]",1648.83,{},68824,0,Africa +2023-03-14,2605,2483,"[""Headphones"", ""Phone""]",4668.92,{},22010,1,Africa +2023-10-07,2606,8464,"[""Phone"", ""Keyboard""]",3708.03,"{""promo"": ""20%""}",195830,0,North America +2023-08-28,2607,6625,"[""Wireless Mouse""]",4878.92,{},139134,0,Europe +2024-04-02,2608,9794,"[""Monitor"", ""Headphones"", ""Tablet""]",2700.02,"{""promo"": ""13%""}",248879,1,Europe +2023-11-20,2609,2254,"[""Keyboard"", ""Monitor""]",926.78,{},70631,0,Europe +2024-08-21,2610,5696,"[""Monitor"", ""Phone""]",3838.8,{},128702,1,South America +2023-01-17,2611,5892,"[""Keyboard"", ""Monitor"", ""Laptop""]",2794.29,{},180663,0,Europe +2024-04-14,2612,8068,"[""Phone""]",1510.43,"{""loyalty"": ""21%""}",180793,0,Asia +2023-02-20,2613,5737,"[""Tablet"", ""Headphones"", ""Charger""]",1832.62,{},173133,0,North America +2023-11-08,2614,3886,"[""Phone""]",498.82,{},223001,1,Asia +2024-02-03,2615,8645,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",937.28,"{""loyalty"": ""17%""}",130494,0,Europe +2024-09-06,2616,3762,"[""Charger""]",3024.58,"{""promo"": ""26%""}",91028,0,North America +2023-01-05,2617,6363,"[""Headphones"", ""Monitor"", ""Laptop""]",691.76,{},216628,1,Asia +2023-09-26,2618,6729,"[""Laptop""]",4678.46,{},177862,1,Africa +2024-07-22,2619,5901,"[""Keyboard""]",1729.1,"{"""": ""9%""}",63449,0,South America +2024-02-20,2620,6861,"[""Monitor"", ""Laptop"", ""Keyboard""]",2992.54,"{"""": ""26%""}",229778,1,Africa +2023-10-19,2621,8632,"[""Monitor""]",940.3,"{""seasonal"": ""25%""}",150187,0,Africa +2023-03-06,2622,7589,"[""Tablet"", ""Monitor""]",1386.38,"{""loyalty"": ""29%""}",34279,0,Asia +2023-11-13,2623,6973,"[""Headphones""]",3112.61,{},75422,1,Europe +2024-05-15,2624,7177,"[""Laptop"", ""Tablet"", ""Monitor""]",1752.29,{},266263,1,Asia +2023-02-15,2625,5697,"[""Charger""]",3403.78,{},62713,0,Europe +2024-01-29,2626,3272,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4423.94,"{"""": ""6%""}",129522,1,Europe +2023-10-11,2627,542,"[""Headphones"", ""Laptop"", ""Monitor""]",3057.35,{},218638,1,South America +2023-11-03,2628,4595,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4176.72,"{""promo"": ""9%""}",108665,1,South America +2023-10-08,2629,4612,"[""Monitor"", ""Headphones"", ""Laptop""]",3107.89,{},55651,1,Africa +2024-03-19,2630,101,"[""Tablet""]",4463.1,"{""seasonal"": ""25%""}",24664,0,Africa +2023-10-29,2631,6308,"[""Tablet""]",1679.16,"{""seasonal"": ""13%""}",20493,1,North America +2023-05-03,2632,4844,"[""Charger"", ""Wireless Mouse""]",1294.25,{},22592,0,Africa +2024-06-30,2633,9825,"[""Charger"", ""Monitor""]",4704.88,"{""seasonal"": ""28%""}",72396,0,North America +2024-02-27,2634,6579,"[""Keyboard"", ""Laptop""]",451.89,{},282297,0,Africa +2024-07-03,2635,1052,"[""Headphones""]",3892.47,"{""promo"": ""11%""}",247436,1,Africa +2024-04-09,2636,5258,"[""Keyboard"", ""Monitor""]",2460.0,{},284766,0,Africa +2024-01-26,2637,9296,"[""Headphones"", ""Phone""]",266.57,"{""promo"": ""27%""}",294182,1,Europe +2024-12-12,2638,1603,"[""Monitor"", ""Charger""]",72.05,"{"""": ""28%""}",74873,1,Asia +2024-03-05,2639,9807,"[""Laptop"", ""Headphones"", ""Charger""]",4903.79,{},11768,1,South America +2023-09-09,2640,6729,"[""Headphones"", ""Laptop""]",3689.44,{},99566,1,South America +2023-09-12,2641,2668,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4564.29,"{"""": ""21%""}",246862,0,North America +2023-02-03,2642,5158,"[""Keyboard""]",844.04,{},141768,1,Europe +2023-05-11,2643,1056,"[""Tablet"", ""Keyboard""]",466.96,"{""promo"": ""28%""}",284510,0,Europe +2023-07-20,2644,3514,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1186.64,"{""loyalty"": ""24%""}",211902,1,Europe +2024-05-23,2645,9260,"[""Tablet"", ""Charger"", ""Keyboard""]",1433.11,"{""seasonal"": ""12%""}",252194,0,Africa +2024-08-23,2646,4070,"[""Keyboard"", ""Phone"", ""Charger""]",4670.25,{},27630,1,Africa +2023-08-12,2647,1132,"[""Monitor"", ""Phone"", ""Keyboard""]",4797.62,"{""seasonal"": ""15%""}",17080,0,Europe +2023-11-21,2648,8297,"[""Wireless Mouse"", ""Phone""]",3603.58,{},138443,0,South America +2023-05-14,2649,7568,"[""Charger"", ""Phone"", ""Laptop""]",841.82,"{""loyalty"": ""29%""}",192217,0,Europe +2024-10-30,2650,4358,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3360.92,"{""promo"": ""27%""}",45157,1,Europe +2024-06-23,2651,278,"[""Phone""]",1963.73,{},280509,0,Asia +2024-08-21,2652,8195,"[""Wireless Mouse"", ""Laptop""]",2096.31,"{""promo"": ""18%""}",49763,0,Africa +2023-01-25,2653,2291,"[""Charger"", ""Laptop"", ""Tablet""]",2842.01,{},22744,1,Europe +2024-04-09,2654,7966,"[""Laptop"", ""Charger""]",2608.51,{},185599,0,South America +2024-01-12,2655,5102,"[""Headphones"", ""Keyboard"", ""Phone""]",1828.78,"{""loyalty"": ""7%""}",103522,0,North America +2024-05-10,2656,7248,"[""Headphones""]",3225.63,{},59401,1,North America +2023-04-21,2657,7980,"[""Headphones""]",1741.15,"{""seasonal"": ""7%""}",103883,1,North America +2024-08-07,2658,1527,"[""Tablet"", ""Phone""]",2902.36,"{""loyalty"": ""23%""}",257053,0,Europe +2024-01-19,2659,5898,"[""Monitor"", ""Charger"", ""Headphones""]",1576.27,"{"""": ""5%""}",280507,1,South America +2024-08-09,2660,2075,"[""Keyboard"", ""Wireless Mouse""]",2197.75,{},109382,1,Asia +2024-06-07,2661,9503,"[""Charger""]",3257.17,"{""seasonal"": ""15%""}",67087,1,South America +2024-08-15,2662,6600,"[""Tablet""]",1344.4,{},216230,0,Africa +2024-04-26,2663,8887,"[""Tablet""]",2124.55,"{"""": ""22%""}",257288,1,Europe +2024-03-31,2664,2948,"[""Laptop"", ""Keyboard""]",869.92,{},50111,0,Europe +2023-11-08,2665,2788,"[""Tablet"", ""Phone""]",3253.23,{},79284,0,Africa +2023-10-11,2666,9709,"[""Charger""]",4173.72,{},7515,1,North America +2023-02-12,2667,7485,"[""Laptop"", ""Wireless Mouse""]",1037.31,"{""seasonal"": ""17%""}",281439,0,Africa +2023-11-26,2668,7950,"[""Monitor"", ""Tablet"", ""Laptop""]",4040.08,{},212325,1,Africa +2023-05-15,2669,6960,"[""Tablet""]",4448.8,{},43901,0,Europe +2024-09-15,2670,2200,"[""Charger"", ""Keyboard"", ""Headphones""]",3093.8,{},172698,1,Asia +2023-09-14,2671,991,"[""Monitor"", ""Headphones""]",887.41,"{""promo"": ""27%""}",202949,1,Asia +2023-01-16,2672,8329,"[""Headphones"", ""Charger"", ""Phone""]",3105.96,"{""loyalty"": ""13%""}",288324,0,Europe +2023-12-08,2673,2813,"[""Keyboard"", ""Charger""]",2566.74,"{""promo"": ""21%""}",204715,1,South America +2023-06-17,2674,5572,"[""Charger""]",2552.87,{},276927,0,South America +2023-01-07,2675,6936,"[""Wireless Mouse"", ""Charger""]",1200.66,"{""loyalty"": ""26%""}",108006,1,Europe +2023-08-19,2676,7581,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",457.81,{},226737,1,Asia +2023-06-24,2677,7179,"[""Laptop"", ""Keyboard"", ""Tablet""]",2505.93,"{""loyalty"": ""23%""}",176250,0,Africa +2023-08-18,2678,4799,"[""Charger"", ""Wireless Mouse""]",2575.54,{},24706,1,Europe +2024-08-25,2679,5360,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2698.93,"{""promo"": ""11%""}",288794,1,Europe +2023-11-21,2680,1285,"[""Headphones"", ""Charger""]",3710.79,"{""seasonal"": ""7%""}",126780,1,Africa +2023-12-28,2681,8641,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",298.21,{},98176,1,Asia +2024-11-11,2682,5597,"[""Laptop"", ""Headphones""]",4940.42,{},168761,1,South America +2023-02-02,2683,7390,"[""Keyboard"", ""Laptop""]",2293.67,"{"""": ""17%""}",228430,1,Africa +2023-05-17,2684,523,"[""Monitor"", ""Tablet"", ""Headphones""]",2973.88,"{""promo"": ""13%""}",226527,1,Europe +2023-01-08,2685,9192,"[""Charger"", ""Monitor"", ""Phone""]",822.69,{},75094,1,Europe +2024-02-05,2686,5545,"[""Charger"", ""Laptop"", ""Phone""]",440.11,"{""promo"": ""25%""}",211171,1,South America +2023-06-11,2687,8138,"[""Tablet""]",2832.11,{},67582,0,North America +2024-12-09,2688,3738,"[""Headphones"", ""Phone"", ""Laptop""]",3018.68,"{"""": ""14%""}",299346,0,Africa +2024-08-20,2689,7192,"[""Headphones"", ""Monitor"", ""Keyboard""]",2549.71,{},57853,1,North America +2023-12-29,2690,8345,"[""Charger"", ""Phone"", ""Laptop""]",593.37,"{""seasonal"": ""30%""}",102351,1,Asia +2024-01-08,2691,8301,"[""Monitor""]",4475.49,{},80486,1,Asia +2023-02-10,2692,8533,"[""Headphones""]",1842.92,"{""seasonal"": ""29%""}",229674,1,Asia +2024-08-29,2693,9132,"[""Monitor""]",376.51,"{""loyalty"": ""22%""}",191956,1,North America +2023-07-15,2694,2811,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4469.25,{},222244,0,Asia +2024-08-11,2695,1442,"[""Headphones""]",2131.04,{},240874,0,Asia +2023-04-26,2696,6348,"[""Charger""]",3078.38,{},30906,1,Africa +2023-11-16,2697,5480,"[""Charger"", ""Tablet"", ""Laptop""]",4428.34,{},96111,1,South America +2023-05-30,2698,4036,"[""Laptop"", ""Headphones"", ""Phone""]",3900.5,"{""promo"": ""8%""}",78847,1,North America +2023-04-25,2699,7664,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3954.33,"{""seasonal"": ""7%""}",100063,0,North America +2024-10-16,2700,2169,"[""Monitor"", ""Keyboard""]",2465.47,"{""loyalty"": ""14%""}",258878,1,Asia +2023-06-23,2701,7308,"[""Monitor"", ""Phone"", ""Tablet""]",270.5,"{""seasonal"": ""24%""}",282335,1,Africa +2023-01-29,2702,4669,"[""Laptop""]",1631.73,"{""promo"": ""27%""}",77676,1,Africa +2023-02-10,2703,868,"[""Charger""]",710.12,"{"""": ""7%""}",82191,0,South America +2024-10-21,2704,2798,"[""Charger"", ""Headphones""]",1301.09,{},155843,1,Europe +2024-08-05,2705,4287,"[""Phone""]",622.6,"{""promo"": ""27%""}",186740,1,Asia +2023-07-01,2706,359,"[""Keyboard"", ""Phone""]",1021.7,{},202718,0,Europe +2024-02-07,2707,4300,"[""Charger"", ""Tablet""]",1766.31,{},124171,1,Asia +2023-05-05,2708,3883,"[""Tablet"", ""Phone""]",342.4,"{""seasonal"": ""14%""}",94399,1,Africa +2024-09-18,2709,5022,"[""Keyboard"", ""Laptop"", ""Charger""]",562.89,{},124915,1,Europe +2023-07-29,2710,9829,"[""Phone"", ""Headphones""]",618.13,"{""promo"": ""27%""}",217699,0,South America +2023-04-17,2711,2251,"[""Tablet"", ""Headphones""]",4480.72,"{"""": ""9%""}",265983,1,North America +2024-06-23,2712,1673,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",818.56,"{""seasonal"": ""19%""}",136110,0,Asia +2023-12-21,2713,5602,"[""Tablet""]",3371.64,{},185377,0,Asia +2023-06-03,2714,870,"[""Headphones""]",3794.22,"{""loyalty"": ""12%""}",91877,0,Asia +2023-06-02,2715,138,"[""Charger"", ""Headphones"", ""Phone""]",1951.42,"{"""": ""29%""}",30118,0,Asia +2023-05-12,2716,3863,"[""Tablet""]",3369.26,{},16775,0,South America +2023-07-23,2717,9276,"[""Phone""]",395.55,{},233473,0,South America +2023-01-17,2718,803,"[""Keyboard""]",1214.69,"{""seasonal"": ""5%""}",19362,0,South America +2023-08-11,2719,1362,"[""Keyboard""]",651.13,"{""seasonal"": ""10%""}",168072,1,Europe +2024-01-24,2720,9177,"[""Headphones"", ""Phone""]",261.05,"{""loyalty"": ""9%""}",199194,1,Asia +2024-05-08,2721,2676,"[""Laptop"", ""Tablet""]",1676.96,{},267980,1,Africa +2024-04-25,2722,8264,"[""Monitor"", ""Phone"", ""Tablet""]",525.62,{},66199,0,Europe +2024-02-13,2723,6094,"[""Phone"", ""Headphones"", ""Laptop""]",1347.81,{},264212,0,Africa +2023-02-10,2724,3578,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1597.53,"{""seasonal"": ""15%""}",245489,1,Asia +2024-06-14,2725,5277,"[""Laptop""]",1679.81,{},212242,0,Asia +2023-05-16,2726,7895,"[""Tablet"", ""Phone"", ""Monitor""]",2288.31,"{""promo"": ""10%""}",95867,1,South America +2024-08-13,2727,6265,"[""Wireless Mouse"", ""Tablet""]",2764.72,{},272154,1,North America +2024-10-10,2728,1785,"[""Keyboard"", ""Phone"", ""Tablet""]",650.38,{},197036,1,North America +2024-05-15,2729,6406,"[""Laptop"", ""Tablet""]",1468.83,{},20507,1,North America +2024-11-22,2730,1057,"[""Headphones"", ""Phone""]",3757.5,"{""promo"": ""6%""}",88276,0,North America +2023-09-27,2731,9040,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3905.35,"{"""": ""6%""}",19725,0,Asia +2024-05-26,2732,4146,"[""Tablet""]",2957.21,"{""promo"": ""23%""}",171705,1,Africa +2023-11-08,2733,3055,"[""Monitor"", ""Charger"", ""Keyboard""]",719.56,"{""loyalty"": ""11%""}",49394,0,Africa +2024-06-02,2734,513,"[""Keyboard""]",679.69,"{"""": ""6%""}",2039,0,Asia +2024-11-09,2735,29,"[""Keyboard""]",1350.28,{},192846,0,South America +2024-02-07,2736,4470,"[""Wireless Mouse""]",1098.89,"{""seasonal"": ""26%""}",135260,0,South America +2023-09-14,2737,1273,"[""Monitor""]",2855.84,{},247824,0,Europe +2023-09-03,2738,9560,"[""Monitor"", ""Phone"", ""Charger""]",1539.04,{},40285,1,Africa +2024-08-02,2739,4012,"[""Keyboard"", ""Tablet""]",3170.28,{},33710,1,South America +2023-02-13,2740,77,"[""Charger""]",2362.01,{},39534,0,South America +2024-09-17,2741,2469,"[""Tablet"", ""Charger"", ""Monitor""]",2103.86,{},85711,1,Asia +2024-07-29,2742,146,"[""Charger"", ""Monitor"", ""Keyboard""]",1827.26,{},273124,1,Asia +2024-03-13,2743,3360,"[""Monitor"", ""Headphones"", ""Phone""]",3285.31,"{"""": ""10%""}",127580,0,Europe +2024-04-01,2744,4011,"[""Keyboard"", ""Tablet""]",2952.15,{},76137,1,Asia +2024-11-12,2745,216,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",264.45,"{""seasonal"": ""19%""}",26985,1,South America +2024-08-13,2746,7944,"[""Wireless Mouse"", ""Laptop""]",211.11,{},117644,0,Africa +2023-04-17,2747,3780,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4956.35,"{""seasonal"": ""22%""}",221841,0,North America +2024-06-02,2748,613,"[""Tablet"", ""Monitor"", ""Laptop""]",4836.76,"{""promo"": ""13%""}",222283,0,North America +2024-04-07,2749,6573,"[""Headphones"", ""Laptop"", ""Keyboard""]",1711.73,{},165424,1,Asia +2023-09-12,2750,1501,"[""Phone""]",488.99,"{""seasonal"": ""23%""}",22816,0,Africa +2024-08-08,2751,6339,"[""Wireless Mouse"", ""Headphones""]",4877.28,{},207855,1,Europe +2024-08-04,2752,7111,"[""Phone"", ""Charger"", ""Headphones""]",1989.57,"{""loyalty"": ""19%""}",55236,0,North America +2024-09-01,2753,1483,"[""Headphones"", ""Tablet"", ""Phone""]",4635.83,"{"""": ""30%""}",73169,1,Europe +2023-06-23,2754,5058,"[""Charger""]",3626.85,"{""loyalty"": ""17%""}",246196,1,South America +2023-06-08,2755,1585,"[""Charger""]",3251.58,"{""loyalty"": ""12%""}",224991,0,North America +2023-05-08,2756,9134,"[""Keyboard""]",221.19,"{""promo"": ""15%""}",77487,0,North America +2024-12-11,2757,8299,"[""Phone""]",2051.25,{},233252,1,Europe +2024-10-25,2758,1825,"[""Keyboard""]",2398.56,{},291125,0,South America +2023-08-17,2759,9953,"[""Laptop"", ""Tablet""]",435.07,{},269193,1,South America +2023-07-26,2760,4373,"[""Phone"", ""Tablet"", ""Monitor""]",4491.61,{},160848,0,South America +2023-11-14,2761,5642,"[""Charger""]",4498.32,"{""seasonal"": ""13%""}",264684,1,Africa +2024-01-16,2762,4675,"[""Wireless Mouse"", ""Tablet""]",3546.1,"{""promo"": ""30%""}",75159,1,Europe +2024-01-30,2763,4951,"[""Charger""]",4549.76,"{"""": ""12%""}",124969,0,Europe +2024-03-18,2764,462,"[""Tablet""]",4273.67,{},210171,0,Asia +2023-01-13,2765,893,"[""Laptop"", ""Monitor""]",3518.58,{},174918,1,South America +2023-01-21,2766,3834,"[""Keyboard""]",4562.92,"{""loyalty"": ""18%""}",181560,1,Africa +2023-10-28,2767,7753,"[""Keyboard"", ""Phone"", ""Charger""]",1108.42,"{""loyalty"": ""10%""}",260061,1,Asia +2024-10-15,2768,958,"[""Wireless Mouse"", ""Headphones""]",3003.69,{},36211,0,Europe +2023-04-10,2769,5033,"[""Phone""]",4383.13,"{""seasonal"": ""30%""}",61216,1,Europe +2023-02-24,2770,3614,"[""Charger"", ""Phone""]",4434.72,{},263206,1,Europe +2024-03-25,2771,9611,"[""Monitor""]",2099.36,{},44496,0,Europe +2024-01-21,2772,7000,"[""Monitor"", ""Keyboard""]",1575.56,"{"""": ""17%""}",241680,1,Europe +2024-02-27,2773,7472,"[""Keyboard""]",1469.07,"{""promo"": ""22%""}",172068,1,Asia +2023-11-17,2774,347,"[""Headphones"", ""Phone""]",2266.38,"{""seasonal"": ""25%""}",1760,0,Africa +2024-10-06,2775,6405,"[""Phone"", ""Keyboard"", ""Headphones""]",3380.52,{},109584,0,Asia +2023-12-10,2776,6154,"[""Headphones""]",3674.45,"{""promo"": ""8%""}",167789,1,Europe +2023-12-28,2777,4944,"[""Laptop"", ""Keyboard"", ""Headphones""]",1276.0,"{""seasonal"": ""30%""}",21142,0,Europe +2024-04-19,2778,7324,"[""Monitor""]",452.28,"{"""": ""24%""}",1816,0,Asia +2023-01-11,2779,2518,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1512.78,{},131207,0,South America +2024-05-01,2780,9507,"[""Charger""]",4301.34,{},10252,1,Africa +2024-10-31,2781,8929,"[""Charger""]",4620.62,{},91155,1,Asia +2023-08-27,2782,9535,"[""Tablet"", ""Monitor""]",4516.48,"{""loyalty"": ""22%""}",221895,1,Europe +2023-06-12,2783,1649,"[""Phone""]",1666.01,"{""promo"": ""11%""}",35662,0,South America +2023-06-17,2784,9735,"[""Monitor"", ""Phone""]",3818.84,"{""promo"": ""8%""}",216286,0,North America +2023-05-01,2785,3209,"[""Charger"", ""Phone"", ""Laptop""]",660.2,{},123992,0,North America +2024-01-12,2786,2261,"[""Phone""]",2747.61,"{""promo"": ""19%""}",88080,1,Africa +2024-09-14,2787,2065,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4387.65,{},256069,1,Africa +2024-09-13,2788,6744,"[""Headphones"", ""Phone""]",4730.67,"{""promo"": ""15%""}",127858,0,Africa +2024-12-20,2789,1642,"[""Monitor"", ""Phone""]",935.58,{},299648,1,Africa +2023-11-01,2790,4504,"[""Laptop""]",1771.81,{},188929,1,Asia +2023-05-09,2791,70,"[""Charger"", ""Keyboard""]",1674.72,"{"""": ""15%""}",42655,0,Africa +2024-08-21,2792,975,"[""Keyboard"", ""Charger"", ""Tablet""]",4690.92,{},73144,0,South America +2023-04-28,2793,6827,"[""Wireless Mouse"", ""Tablet""]",4311.79,{},288187,0,Africa +2024-08-18,2794,8482,"[""Tablet""]",598.11,"{""seasonal"": ""15%""}",18934,0,Asia +2024-11-24,2795,378,"[""Charger"", ""Headphones""]",1271.72,"{""seasonal"": ""17%""}",28825,0,Asia +2024-05-04,2796,3563,"[""Wireless Mouse"", ""Laptop""]",1477.65,{},127088,1,Europe +2023-03-07,2797,3894,"[""Tablet"", ""Monitor""]",3957.1,"{""seasonal"": ""13%""}",192442,1,South America +2023-11-15,2798,2898,"[""Laptop""]",3919.4,{},153443,1,Asia +2023-07-19,2799,8755,"[""Keyboard""]",4495.03,{},150664,0,Europe +2023-08-30,2800,8419,"[""Keyboard""]",535.44,"{"""": ""15%""}",181214,1,Africa +2023-11-24,2801,6035,"[""Keyboard"", ""Headphones"", ""Monitor""]",4831.75,"{"""": ""30%""}",67598,1,South America +2024-12-15,2802,3250,"[""Keyboard"", ""Tablet""]",1625.42,{},194920,0,Europe +2023-11-25,2803,9259,"[""Laptop"", ""Charger""]",1010.52,"{""loyalty"": ""27%""}",174920,1,Europe +2023-06-03,2804,9378,"[""Monitor"", ""Headphones""]",4539.85,{},44452,1,Africa +2023-06-09,2805,2688,"[""Wireless Mouse""]",1399.67,"{""loyalty"": ""6%""}",79959,0,Africa +2023-08-05,2806,4687,"[""Phone"", ""Laptop"", ""Keyboard""]",4284.36,{},44773,0,North America +2024-01-10,2807,7430,"[""Headphones"", ""Wireless Mouse""]",3673.13,"{""seasonal"": ""18%""}",63134,0,North America +2024-10-15,2808,8414,"[""Headphones""]",184.86,"{""seasonal"": ""29%""}",53232,1,Europe +2024-06-12,2809,3972,"[""Phone"", ""Keyboard""]",1506.54,{},217801,0,Europe +2024-05-22,2810,8882,"[""Headphones"", ""Tablet"", ""Charger""]",4305.79,"{""loyalty"": ""20%""}",43845,1,South America +2023-06-02,2811,3361,"[""Charger"", ""Keyboard""]",1356.77,{},126145,1,North America +2024-08-22,2812,6608,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3913.79,{},211117,0,Asia +2023-04-14,2813,3556,"[""Keyboard""]",607.54,"{""loyalty"": ""12%""}",252807,0,South America +2024-11-15,2814,7840,"[""Keyboard"", ""Charger""]",2918.02,"{""loyalty"": ""17%""}",46406,0,Asia +2023-04-17,2815,3088,"[""Monitor"", ""Headphones"", ""Tablet""]",1084.92,{},211532,1,North America +2024-02-10,2816,172,"[""Keyboard"", ""Laptop""]",738.63,{},190223,1,Europe +2023-06-20,2817,7594,"[""Phone""]",1291.27,"{""seasonal"": ""18%""}",286467,1,Africa +2024-02-17,2818,7989,"[""Headphones"", ""Charger""]",3840.75,{},248783,1,Asia +2024-09-10,2819,1197,"[""Phone""]",3426.7,{},156559,0,Asia +2024-05-21,2820,5026,"[""Charger"", ""Phone"", ""Laptop""]",1680.97,{},92225,1,Asia +2023-01-25,2821,137,"[""Phone"", ""Laptop""]",2087.07,{},194771,1,Europe +2023-06-23,2822,842,"[""Phone"", ""Keyboard""]",3681.27,{},59085,0,South America +2023-01-22,2823,4563,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4605.14,"{""loyalty"": ""21%""}",216136,1,Asia +2024-04-24,2824,1408,"[""Keyboard"", ""Tablet""]",2852.28,"{""loyalty"": ""21%""}",250677,0,North America +2023-08-06,2825,5061,"[""Charger""]",1402.6,"{"""": ""20%""}",284401,1,Asia +2023-04-22,2826,2398,"[""Phone"", ""Monitor"", ""Headphones""]",573.64,"{""promo"": ""19%""}",148851,0,Asia +2023-01-11,2827,9674,"[""Laptop"", ""Phone"", ""Keyboard""]",2794.61,"{""seasonal"": ""23%""}",128742,0,South America +2024-10-30,2828,5716,"[""Laptop""]",3012.69,"{""loyalty"": ""6%""}",76894,0,South America +2024-09-03,2829,735,"[""Monitor"", ""Charger"", ""Phone""]",3695.75,{},238871,0,South America +2024-04-18,2830,2020,"[""Headphones""]",640.13,"{""promo"": ""11%""}",96076,0,North America +2023-07-15,2831,6090,"[""Keyboard"", ""Phone"", ""Headphones""]",2030.5,"{""promo"": ""29%""}",19117,0,Africa +2024-05-20,2832,1897,"[""Laptop""]",4993.85,{},284830,0,Asia +2023-10-15,2833,8755,"[""Monitor"", ""Headphones"", ""Keyboard""]",1226.92,{},231330,1,North America +2024-11-13,2834,4615,"[""Wireless Mouse"", ""Charger""]",1402.76,{},236190,0,Europe +2024-07-03,2835,6108,"[""Phone"", ""Headphones"", ""Tablet""]",1712.34,{},209585,1,North America +2023-12-03,2836,6893,"[""Laptop"", ""Headphones"", ""Charger""]",4806.42,"{""loyalty"": ""26%""}",53709,1,Europe +2024-02-10,2837,61,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1267.75,{},80520,0,Europe +2023-02-07,2838,968,"[""Headphones""]",1925.36,{},149609,0,South America +2024-12-11,2839,634,"[""Charger""]",1421.77,{},155334,1,Asia +2024-02-09,2840,5127,"[""Keyboard"", ""Tablet"", ""Monitor""]",4654.29,{},56583,1,South America +2023-09-16,2841,4548,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2373.64,"{""seasonal"": ""30%""}",80840,1,South America +2024-11-21,2842,9340,"[""Wireless Mouse"", ""Keyboard""]",2329.13,"{""promo"": ""8%""}",75525,1,Europe +2023-03-08,2843,3788,"[""Headphones"", ""Keyboard""]",4030.64,"{""loyalty"": ""7%""}",76264,0,Europe +2023-07-23,2844,5857,"[""Monitor"", ""Charger"", ""Headphones""]",647.19,{},27228,1,North America +2023-06-29,2845,8646,"[""Headphones"", ""Monitor"", ""Charger""]",4558.47,{},148080,0,Asia +2024-03-11,2846,5604,"[""Monitor""]",2784.79,{},33734,0,Africa +2024-11-13,2847,3157,"[""Charger""]",817.4,"{"""": ""8%""}",297292,1,South America +2024-02-15,2848,2474,"[""Tablet"", ""Laptop"", ""Headphones""]",1958.79,"{""loyalty"": ""18%""}",144122,0,Asia +2024-07-06,2849,8538,"[""Monitor"", ""Laptop"", ""Phone""]",2236.32,"{"""": ""22%""}",26818,1,North America +2024-06-23,2850,2300,"[""Phone"", ""Laptop""]",1831.08,{},237219,1,North America +2024-11-04,2851,5731,"[""Phone""]",908.47,{},47889,1,Asia +2023-09-18,2852,2074,"[""Keyboard""]",1575.64,{},93705,0,South America +2023-04-11,2853,9289,"[""Tablet"", ""Monitor"", ""Headphones""]",3082.28,{},94804,1,Europe +2024-07-24,2854,9830,"[""Keyboard""]",1245.57,"{"""": ""6%""}",241395,1,South America +2024-11-21,2855,929,"[""Keyboard"", ""Tablet"", ""Laptop""]",4939.22,"{""promo"": ""12%""}",140092,0,Asia +2023-09-02,2856,5232,"[""Wireless Mouse"", ""Phone""]",2387.66,"{""loyalty"": ""16%""}",285859,1,Africa +2024-03-30,2857,2459,"[""Keyboard""]",1626.67,"{""promo"": ""28%""}",64342,0,Europe +2024-09-02,2858,4149,"[""Headphones"", ""Tablet""]",3278.52,{},288298,0,Asia +2024-01-09,2859,1631,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",191.56,{},184044,1,Africa +2024-05-07,2860,3628,"[""Laptop""]",1506.36,{},165203,0,Europe +2023-02-22,2861,42,"[""Tablet""]",4400.34,{},262009,1,Africa +2023-03-08,2862,4950,"[""Phone""]",2827.05,{},36516,0,Africa +2023-04-02,2863,6820,"[""Phone"", ""Monitor""]",4414.98,{},78100,1,Europe +2023-06-13,2864,608,"[""Keyboard"", ""Laptop"", ""Headphones""]",4644.65,{},181980,0,South America +2024-06-20,2865,5067,"[""Headphones"", ""Phone"", ""Laptop""]",3289.45,"{"""": ""17%""}",48572,0,Africa +2023-09-10,2866,2040,"[""Monitor"", ""Charger""]",3001.14,"{""seasonal"": ""29%""}",68094,1,Africa +2024-05-14,2867,5063,"[""Phone"", ""Tablet"", ""Monitor""]",732.6,"{""promo"": ""10%""}",223639,0,North America +2023-10-20,2868,6949,"[""Keyboard"", ""Charger"", ""Laptop""]",2372.75,"{"""": ""11%""}",24114,0,Europe +2023-08-21,2869,7160,"[""Phone""]",1169.64,{},46756,1,North America +2024-10-16,2870,5886,"[""Charger""]",4257.04,{},225311,0,Asia +2023-12-25,2871,9313,"[""Keyboard""]",1466.9,"{""loyalty"": ""9%""}",102103,0,South America +2023-05-03,2872,5822,"[""Laptop"", ""Keyboard""]",3249.4,"{""seasonal"": ""22%""}",282699,0,South America +2024-11-28,2873,5288,"[""Monitor""]",1803.55,"{"""": ""10%""}",268621,1,Asia +2024-03-01,2874,4030,"[""Tablet""]",3786.22,{},192290,0,North America +2024-10-29,2875,6268,"[""Charger"", ""Laptop""]",1213.43,{},117848,0,Asia +2024-12-17,2876,2240,"[""Headphones""]",4467.5,"{"""": ""20%""}",224497,1,North America +2023-06-20,2877,1156,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4779.0,{},111075,0,Africa +2023-06-20,2878,1013,"[""Keyboard""]",2316.25,{},66180,0,Europe +2024-02-16,2879,852,"[""Monitor""]",4388.57,{},148226,1,Asia +2024-12-22,2880,4652,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1881.02,{},86274,1,Asia +2023-09-20,2881,9770,"[""Monitor""]",2582.65,{},74780,1,Europe +2024-09-23,2882,9202,"[""Monitor"", ""Phone""]",316.38,{},271074,1,North America +2023-08-30,2883,9981,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1622.71,{},247504,1,South America +2024-02-03,2884,2988,"[""Tablet""]",4795.84,{},256256,0,Europe +2023-05-14,2885,3031,"[""Phone""]",1058.07,"{"""": ""30%""}",54720,1,Africa +2024-04-20,2886,4217,"[""Keyboard"", ""Laptop""]",788.61,"{""promo"": ""9%""}",213411,0,Africa +2024-12-01,2887,9871,"[""Tablet""]",3349.51,"{""seasonal"": ""7%""}",131827,1,South America +2024-05-07,2888,4106,"[""Monitor""]",2963.44,"{""seasonal"": ""7%""}",215540,1,Europe +2024-06-14,2889,1141,"[""Wireless Mouse"", ""Monitor""]",2065.37,{},17782,0,Africa +2023-11-27,2890,8652,"[""Keyboard""]",1657.48,{},116344,0,Europe +2023-04-09,2891,3837,"[""Charger"", ""Monitor""]",1663.97,{},200008,1,Europe +2023-12-15,2892,9889,"[""Tablet"", ""Headphones""]",4824.84,"{""promo"": ""8%""}",252061,1,Europe +2023-06-14,2893,3925,"[""Headphones""]",922.13,{},7304,0,South America +2023-08-31,2894,6278,"[""Keyboard"", ""Phone"", ""Headphones""]",3850.64,{},70735,0,Europe +2023-11-24,2895,4681,"[""Monitor"", ""Keyboard"", ""Headphones""]",728.25,"{"""": ""18%""}",270670,0,Asia +2023-12-04,2896,2524,"[""Tablet"", ""Keyboard""]",1559.88,"{""promo"": ""11%""}",56478,0,Africa +2023-06-04,2897,9644,"[""Wireless Mouse""]",4238.28,"{""loyalty"": ""25%""}",128862,1,Africa +2023-01-30,2898,3217,"[""Laptop""]",4680.23,{},215728,1,North America +2023-07-21,2899,9346,"[""Laptop"", ""Charger""]",3599.34,"{""seasonal"": ""26%""}",243160,1,Africa +2023-07-19,2900,9889,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2173.72,{},260169,0,Asia +2023-11-20,2901,7466,"[""Charger""]",3975.19,"{""loyalty"": ""29%""}",203254,1,North America +2023-11-01,2902,2894,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2647.57,{},188668,0,North America +2023-03-16,2903,3273,"[""Phone""]",4297.67,{},23362,1,Europe +2023-03-26,2904,5877,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4347.91,"{""seasonal"": ""10%""}",186433,0,North America +2024-12-22,2905,1665,"[""Tablet"", ""Wireless Mouse""]",2086.83,"{""loyalty"": ""25%""}",262485,0,Africa +2023-02-21,2906,3890,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3004.06,{},24222,0,Africa +2024-10-19,2907,6108,"[""Charger""]",2226.04,"{""promo"": ""30%""}",7230,1,North America +2024-03-21,2908,2104,"[""Laptop"", ""Wireless Mouse""]",283.88,"{""seasonal"": ""12%""}",80472,0,South America +2024-12-17,2909,1799,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1647.23,"{"""": ""10%""}",28570,0,North America +2024-03-30,2910,2436,"[""Phone""]",617.1,"{"""": ""19%""}",21646,0,Africa +2023-03-27,2911,6335,"[""Tablet"", ""Phone""]",4552.31,"{"""": ""17%""}",277899,1,South America +2024-01-28,2912,295,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1500.8,{},112724,0,Africa +2023-10-17,2913,4029,"[""Tablet"", ""Laptop""]",716.44,"{""promo"": ""29%""}",140801,1,North America +2023-01-17,2914,5029,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1503.29,{},42224,0,North America +2023-07-13,2915,7213,"[""Charger""]",433.98,{},15002,1,Europe +2023-02-13,2916,5829,"[""Wireless Mouse""]",322.15,"{""seasonal"": ""22%""}",205331,1,Europe +2023-09-27,2917,564,"[""Laptop""]",808.2,"{""seasonal"": ""5%""}",131646,1,Asia +2023-10-01,2918,2486,"[""Keyboard"", ""Monitor"", ""Tablet""]",3919.89,"{""loyalty"": ""22%""}",150610,1,Africa +2024-01-14,2919,1114,"[""Monitor""]",2271.02,"{""seasonal"": ""20%""}",157300,1,South America +2024-04-01,2920,8095,"[""Laptop""]",146.01,{},141759,0,North America +2024-12-21,2921,8981,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3887.57,"{""loyalty"": ""5%""}",118718,1,North America +2023-09-29,2922,5253,"[""Laptop"", ""Headphones"", ""Charger""]",1527.17,{},146962,1,Africa +2023-05-07,2923,950,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",977.67,"{""loyalty"": ""20%""}",214091,0,Europe +2023-01-31,2924,831,"[""Charger"", ""Laptop""]",2874.56,{},113050,0,Asia +2024-06-12,2925,9870,"[""Tablet"", ""Phone"", ""Keyboard""]",3829.15,"{""seasonal"": ""19%""}",49386,1,North America +2023-03-21,2926,4096,"[""Phone"", ""Laptop""]",418.4,{},282232,1,Asia +2023-05-13,2927,2566,"[""Charger"", ""Headphones"", ""Keyboard""]",4993.27,"{"""": ""26%""}",107229,0,Africa +2024-02-10,2928,9731,"[""Laptop"", ""Tablet""]",4746.29,{},44977,1,Europe +2023-06-17,2929,9144,"[""Phone"", ""Laptop""]",1904.5,{},202733,1,Africa +2024-06-06,2930,9727,"[""Headphones"", ""Tablet""]",1936.04,"{"""": ""19%""}",143805,1,Asia +2024-11-05,2931,3063,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3854.88,"{""seasonal"": ""13%""}",125247,1,Asia +2023-04-21,2932,715,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1369.72,"{""promo"": ""20%""}",46227,1,North America +2023-01-16,2933,3178,"[""Monitor"", ""Tablet"", ""Phone""]",4418.05,{},99053,1,South America +2024-05-23,2934,4734,"[""Wireless Mouse""]",721.32,"{""seasonal"": ""22%""}",230900,0,North America +2023-03-16,2935,1856,"[""Monitor"", ""Charger""]",3627.35,"{""seasonal"": ""12%""}",239248,1,Asia +2023-11-10,2936,8332,"[""Laptop"", ""Charger""]",952.33,"{""promo"": ""24%""}",77915,1,South America +2024-08-07,2937,8257,"[""Monitor"", ""Headphones""]",1193.46,{},246660,1,Africa +2023-04-13,2938,7964,"[""Keyboard""]",4563.91,"{"""": ""12%""}",1903,0,South America +2024-12-11,2939,9093,"[""Laptop"", ""Charger""]",1057.38,{},262559,1,Asia +2024-07-06,2940,6678,"[""Headphones"", ""Phone""]",2576.09,{},110380,1,Europe +2023-11-21,2941,8212,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3096.9,{},90418,0,Europe +2024-11-16,2942,6326,"[""Laptop"", ""Keyboard""]",112.33,{},235160,1,South America +2023-09-01,2943,9853,"[""Laptop"", ""Monitor"", ""Headphones""]",2694.01,"{""promo"": ""9%""}",126006,0,North America +2024-02-16,2944,7199,"[""Headphones"", ""Phone""]",3333.3,{},10824,0,Africa +2024-11-12,2945,1156,"[""Charger"", ""Monitor"", ""Phone""]",841.76,{},242409,1,North America +2024-10-24,2946,425,"[""Headphones"", ""Phone""]",699.18,"{""seasonal"": ""17%""}",266720,0,Asia +2023-10-15,2947,5150,"[""Phone"", ""Wireless Mouse""]",2519.09,{},167122,0,Europe +2024-10-13,2948,7537,"[""Phone""]",4463.56,{},299331,0,North America +2023-09-19,2949,9462,"[""Monitor""]",4158.84,"{""promo"": ""24%""}",178947,1,South America +2023-08-25,2950,6851,"[""Wireless Mouse"", ""Tablet""]",4662.16,{},283614,1,South America +2023-10-14,2951,6443,"[""Phone""]",2822.03,"{"""": ""22%""}",12926,0,North America +2023-11-02,2952,9014,"[""Monitor"", ""Headphones""]",3679.39,"{""seasonal"": ""12%""}",158669,1,North America +2023-09-07,2953,2213,"[""Tablet"", ""Wireless Mouse""]",3813.23,"{"""": ""8%""}",238690,1,Europe +2023-11-18,2954,4918,"[""Charger"", ""Wireless Mouse""]",3440.71,{},279966,0,South America +2023-05-22,2955,5587,"[""Keyboard"", ""Wireless Mouse""]",1853.55,"{""seasonal"": ""30%""}",80031,0,Africa +2024-04-08,2956,4445,"[""Wireless Mouse""]",4080.66,{},210438,0,Asia +2024-04-11,2957,3980,"[""Phone""]",3842.09,{},158106,1,Europe +2024-08-29,2958,7667,"[""Phone"", ""Wireless Mouse""]",643.82,"{""promo"": ""22%""}",49927,1,Africa +2023-01-12,2959,3009,"[""Phone"", ""Charger""]",652.51,{},55952,1,Asia +2024-01-03,2960,2459,"[""Wireless Mouse"", ""Phone""]",3499.44,{},15787,0,South America +2023-07-15,2961,9058,"[""Monitor""]",1611.99,{},94443,1,Africa +2023-08-02,2962,3403,"[""Wireless Mouse"", ""Phone""]",4758.78,"{""seasonal"": ""13%""}",241371,0,North America +2024-09-15,2963,7624,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4319.32,{},47265,1,Asia +2023-08-13,2964,3494,"[""Monitor"", ""Tablet"", ""Keyboard""]",3694.99,"{""seasonal"": ""5%""}",219880,1,Europe +2024-01-18,2965,9096,"[""Charger"", ""Keyboard""]",3780.97,{},3572,1,Asia +2024-01-09,2966,8562,"[""Phone"", ""Headphones"", ""Tablet""]",4889.35,"{""loyalty"": ""30%""}",117477,1,Africa +2024-01-19,2967,3572,"[""Phone"", ""Laptop"", ""Charger""]",255.38,"{"""": ""27%""}",85378,0,Europe +2023-04-18,2968,1569,"[""Laptop"", ""Headphones""]",659.97,{},101391,1,Asia +2023-01-19,2969,6169,"[""Wireless Mouse"", ""Phone""]",4656.49,{},252127,0,South America +2024-02-19,2970,4805,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4059.68,{},37334,0,Europe +2024-11-22,2971,1740,"[""Phone"", ""Laptop""]",999.22,"{""promo"": ""13%""}",60511,1,South America +2024-05-19,2972,7027,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",714.11,"{""seasonal"": ""28%""}",13516,1,South America +2024-12-28,2973,9409,"[""Wireless Mouse"", ""Phone""]",348.58,{},218600,0,North America +2023-05-27,2974,2800,"[""Laptop"", ""Headphones""]",3131.18,"{"""": ""21%""}",109284,0,South America +2023-06-07,2975,2786,"[""Headphones""]",2812.74,{},104906,0,South America +2023-09-05,2976,6688,"[""Wireless Mouse"", ""Laptop""]",1572.41,"{""promo"": ""30%""}",268147,1,Africa +2023-12-01,2977,6206,"[""Laptop"", ""Monitor"", ""Phone""]",1621.32,{},199582,0,Europe +2023-02-25,2978,9511,"[""Phone"", ""Wireless Mouse""]",1595.47,"{""loyalty"": ""23%""}",195198,0,Asia +2023-06-09,2979,4079,"[""Wireless Mouse"", ""Tablet""]",568.48,"{"""": ""8%""}",204504,1,South America +2023-05-03,2980,7717,"[""Charger""]",1847.66,"{"""": ""8%""}",215467,0,South America +2023-11-15,2981,7263,"[""Charger"", ""Monitor""]",4298.85,{},189411,0,Europe +2023-08-13,2982,5805,"[""Wireless Mouse""]",1889.58,{},208850,0,Africa +2023-07-02,2983,8864,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4941.91,{},253595,1,Africa +2023-01-08,2984,9815,"[""Charger""]",2626.18,"{""loyalty"": ""9%""}",17423,1,Africa +2024-10-09,2985,4325,"[""Phone"", ""Monitor"", ""Charger""]",3576.39,"{"""": ""28%""}",280639,0,Africa +2023-06-10,2986,1322,"[""Monitor"", ""Phone"", ""Charger""]",1264.25,{},192526,0,Asia +2024-01-13,2987,5854,"[""Wireless Mouse"", ""Laptop""]",1923.09,{},26001,1,Asia +2024-02-14,2988,5584,"[""Keyboard"", ""Laptop"", ""Phone""]",4264.88,"{"""": ""14%""}",280630,0,South America +2024-03-18,2989,5187,"[""Monitor"", ""Laptop"", ""Headphones""]",2031.6,"{""promo"": ""5%""}",246037,0,South America +2023-07-03,2990,1597,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1210.29,"{"""": ""18%""}",160622,0,Africa +2023-07-24,2991,9789,"[""Keyboard"", ""Charger""]",1672.71,{},289631,1,Africa +2024-03-29,2992,2137,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",409.17,"{""promo"": ""24%""}",8959,0,Europe +2024-03-21,2993,6559,"[""Laptop""]",3937.78,"{""loyalty"": ""25%""}",169714,0,South America +2024-06-22,2994,7442,"[""Headphones"", ""Charger""]",3883.2,{},172983,0,South America +2024-10-07,2995,830,"[""Keyboard"", ""Phone"", ""Laptop""]",3737.51,{},167984,1,South America +2023-10-05,2996,3155,"[""Charger""]",1134.07,"{""loyalty"": ""19%""}",62211,0,Asia +2023-02-22,2997,9654,"[""Headphones""]",3684.24,{},277920,1,North America +2024-09-29,2998,6635,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1380.05,{},40202,1,Europe +2024-04-07,2999,6307,"[""Charger"", ""Tablet""]",4144.78,{},34417,1,South America +2024-08-24,3000,315,"[""Wireless Mouse""]",4517.66,"{""loyalty"": ""30%""}",145919,1,North America +2024-01-03,3001,2115,"[""Laptop"", ""Charger"", ""Keyboard""]",2902.54,{},237530,0,Asia +2023-09-09,3002,5207,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4725.14,"{""promo"": ""30%""}",51881,1,Europe +2024-10-23,3003,2090,"[""Monitor"", ""Laptop"", ""Tablet""]",1172.0,"{""promo"": ""13%""}",144968,1,Asia +2024-06-23,3004,3019,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3155.68,{},22919,0,Africa +2023-02-22,3005,5999,"[""Wireless Mouse"", ""Laptop""]",2094.07,{},55909,1,South America +2023-11-11,3006,6991,"[""Keyboard"", ""Monitor""]",1910.57,"{""seasonal"": ""16%""}",144381,1,North America +2024-12-27,3007,379,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",310.81,"{""loyalty"": ""24%""}",245859,1,Africa +2023-10-16,3008,2578,"[""Headphones""]",3606.63,{},273185,1,North America +2023-04-19,3009,4773,"[""Laptop"", ""Monitor"", ""Tablet""]",2908.43,"{""promo"": ""25%""}",211039,0,Asia +2024-02-11,3010,6317,"[""Headphones""]",532.09,"{""loyalty"": ""9%""}",143521,0,Asia +2023-10-06,3011,2550,"[""Tablet"", ""Charger""]",3839.25,{},67577,0,Africa +2023-09-04,3012,1210,"[""Monitor"", ""Headphones"", ""Tablet""]",122.99,{},264114,0,Asia +2023-07-15,3013,2869,"[""Phone""]",185.97,"{""seasonal"": ""9%""}",175771,1,North America +2024-03-26,3014,6256,"[""Charger"", ""Phone"", ""Laptop""]",3639.62,{},116215,1,Europe +2024-12-16,3015,7173,"[""Charger"", ""Wireless Mouse""]",4159.36,"{""promo"": ""21%""}",218327,0,Asia +2024-09-19,3016,1730,"[""Keyboard"", ""Tablet"", ""Charger""]",4712.49,{},277030,0,North America +2023-04-12,3017,1678,"[""Laptop"", ""Charger""]",1140.34,"{""seasonal"": ""22%""}",177843,0,Europe +2023-09-18,3018,9867,"[""Headphones""]",1626.32,"{""seasonal"": ""20%""}",156038,1,Africa +2023-12-12,3019,3838,"[""Tablet""]",3078.75,{},151123,0,Europe +2024-07-26,3020,575,"[""Headphones"", ""Keyboard""]",1952.07,"{""promo"": ""27%""}",107224,0,Europe +2024-02-13,3021,7998,"[""Headphones"", ""Keyboard""]",4494.38,{},132821,0,Africa +2023-08-14,3022,1321,"[""Tablet""]",1298.77,"{""loyalty"": ""29%""}",114797,1,North America +2024-03-25,3023,3179,"[""Headphones"", ""Laptop""]",1731.01,"{""loyalty"": ""27%""}",154418,0,Asia +2024-10-18,3024,518,"[""Charger"", ""Headphones""]",3001.14,{},112186,1,Asia +2024-11-24,3025,1378,"[""Phone""]",3733.58,"{"""": ""11%""}",210614,0,South America +2024-04-22,3026,8604,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3301.84,"{""seasonal"": ""27%""}",249535,1,Asia +2024-08-08,3027,6400,"[""Phone""]",2911.9,{},26789,1,North America +2024-12-14,3028,5195,"[""Monitor"", ""Phone""]",2438.14,"{""seasonal"": ""24%""}",163555,1,Europe +2023-07-27,3029,9686,"[""Tablet"", ""Monitor"", ""Laptop""]",3917.41,{},34544,0,Africa +2023-01-23,3030,6749,"[""Charger"", ""Tablet""]",321.23,{},42054,1,Asia +2023-02-26,3031,3814,"[""Keyboard""]",3843.98,{},55114,1,North America +2023-06-02,3032,4329,"[""Keyboard"", ""Charger"", ""Phone""]",3716.67,{},194187,0,Africa +2023-04-23,3033,4482,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1933.69,{},224790,1,North America +2024-06-27,3034,8691,"[""Wireless Mouse""]",4212.42,"{""loyalty"": ""20%""}",238559,1,Africa +2024-11-04,3035,7022,"[""Phone""]",4767.8,{},11007,0,Africa +2023-04-28,3036,7849,"[""Headphones""]",3658.1,"{""loyalty"": ""10%""}",223196,1,South America +2023-10-25,3037,5817,"[""Charger"", ""Tablet""]",2426.99,{},215524,1,Europe +2024-11-05,3038,288,"[""Keyboard"", ""Laptop"", ""Monitor""]",3103.18,"{""seasonal"": ""16%""}",260808,0,Africa +2023-10-15,3039,6425,"[""Charger"", ""Laptop"", ""Headphones""]",2314.99,"{"""": ""13%""}",182720,1,Africa +2023-05-01,3040,5338,"[""Charger""]",4823.9,"{""loyalty"": ""16%""}",115349,1,South America +2023-03-10,3041,3353,"[""Laptop"", ""Keyboard""]",441.76,{},45106,0,Africa +2024-11-02,3042,9874,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2020.33,{},173154,1,South America +2023-05-03,3043,8393,"[""Wireless Mouse"", ""Laptop""]",2682.21,{},264543,0,Europe +2023-07-04,3044,669,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1250.43,"{""seasonal"": ""9%""}",280778,0,North America +2023-02-11,3045,5220,"[""Headphones"", ""Wireless Mouse""]",4376.64,"{""seasonal"": ""5%""}",131496,0,Asia +2023-04-13,3046,1986,"[""Tablet""]",1250.29,{},13445,0,North America +2023-06-19,3047,7063,"[""Phone"", ""Charger""]",2051.54,{},167690,0,Europe +2023-08-30,3048,5973,"[""Tablet""]",4190.39,"{""seasonal"": ""13%""}",224199,1,Europe +2023-12-17,3049,5541,"[""Charger""]",2486.11,"{""seasonal"": ""12%""}",288516,1,Europe +2024-09-02,3050,1409,"[""Charger"", ""Laptop""]",672.85,"{"""": ""5%""}",184920,0,North America +2023-07-16,3051,403,"[""Laptop""]",3719.76,"{""promo"": ""18%""}",231176,0,Europe +2024-04-06,3052,8030,"[""Phone"", ""Headphones""]",3068.14,"{""promo"": ""14%""}",262675,1,North America +2024-06-15,3053,6494,"[""Keyboard"", ""Tablet""]",465.48,{},53393,1,South America +2023-01-07,3054,4069,"[""Keyboard""]",2759.9,{},262644,0,Africa +2024-02-13,3055,3280,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4883.97,{},27592,1,North America +2023-07-30,3056,8387,"[""Tablet""]",3710.55,{},233270,0,North America +2024-08-05,3057,8033,"[""Tablet""]",4701.14,{},71618,1,Asia +2024-09-22,3058,9959,"[""Tablet"", ""Phone"", ""Charger""]",3373.59,"{""loyalty"": ""10%""}",1627,1,Europe +2024-05-25,3059,8181,"[""Keyboard""]",2667.69,"{""promo"": ""7%""}",138970,1,Africa +2024-06-27,3060,2105,"[""Wireless Mouse"", ""Monitor""]",1558.38,{},278176,0,South America +2024-12-19,3061,8457,"[""Monitor""]",1820.18,{},279869,1,Africa +2024-04-12,3062,9058,"[""Tablet"", ""Charger""]",1316.34,"{""seasonal"": ""22%""}",77965,0,Asia +2023-07-16,3063,1919,"[""Charger"", ""Phone""]",2749.05,"{""promo"": ""10%""}",182955,0,Asia +2024-05-21,3064,9619,"[""Laptop""]",3775.5,"{""seasonal"": ""23%""}",121690,1,Asia +2024-09-25,3065,4944,"[""Keyboard"", ""Tablet""]",2755.51,{},103975,0,Asia +2024-10-06,3066,5606,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1553.38,"{""seasonal"": ""24%""}",246246,0,Africa +2024-12-10,3067,377,"[""Charger""]",1885.11,{},147888,1,Africa +2024-06-05,3068,3663,"[""Phone"", ""Tablet""]",3852.09,"{""promo"": ""20%""}",41348,1,Asia +2024-12-23,3069,3717,"[""Keyboard""]",3899.24,"{"""": ""8%""}",216079,0,Africa +2024-04-24,3070,5885,"[""Tablet""]",2070.95,"{"""": ""11%""}",5547,0,South America +2023-10-11,3071,6559,"[""Charger"", ""Keyboard"", ""Tablet""]",4816.31,{},30428,1,South America +2023-11-27,3072,5642,"[""Headphones""]",397.81,"{""loyalty"": ""6%""}",238635,0,Africa +2024-02-15,3073,6427,"[""Wireless Mouse"", ""Tablet""]",4253.17,"{""seasonal"": ""26%""}",103091,0,Europe +2023-06-01,3074,6001,"[""Laptop""]",1137.5,{},289205,0,North America +2023-09-15,3075,3761,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3217.46,{},84746,0,South America +2024-11-14,3076,8194,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2086.07,{},275634,1,South America +2023-12-28,3077,8321,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2605.13,"{"""": ""12%""}",11339,1,Asia +2024-12-03,3078,7484,"[""Keyboard"", ""Tablet"", ""Laptop""]",1912.53,"{"""": ""16%""}",242557,0,South America +2024-05-21,3079,7368,"[""Wireless Mouse""]",3892.03,"{""promo"": ""27%""}",17310,0,Europe +2024-11-29,3080,2744,"[""Monitor"", ""Tablet"", ""Charger""]",960.67,{},123772,0,North America +2024-03-25,3081,7456,"[""Laptop"", ""Monitor""]",4712.06,{},45186,1,Africa +2024-05-04,3082,6904,"[""Monitor"", ""Phone"", ""Charger""]",2621.39,"{""loyalty"": ""14%""}",77320,0,North America +2023-11-21,3083,6966,"[""Keyboard""]",4286.07,{},112030,1,Europe +2023-02-16,3084,4772,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2620.01,"{""seasonal"": ""21%""}",197370,1,South America +2023-12-27,3085,6633,"[""Tablet"", ""Charger""]",634.95,"{""seasonal"": ""30%""}",297882,0,Africa +2024-11-23,3086,2172,"[""Wireless Mouse""]",417.79,{},93624,0,Africa +2024-03-08,3087,9896,"[""Wireless Mouse"", ""Phone""]",2888.39,"{""loyalty"": ""14%""}",144041,0,Asia +2024-09-20,3088,333,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1008.3,"{"""": ""17%""}",32072,0,Asia +2024-06-28,3089,2629,"[""Charger"", ""Laptop"", ""Phone""]",4149.89,"{""seasonal"": ""28%""}",3407,1,North America +2023-06-17,3090,7973,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1287.74,{},82836,1,Africa +2023-12-18,3091,656,"[""Laptop"", ""Monitor""]",148.77,{},102409,1,North America +2024-06-27,3092,996,"[""Wireless Mouse"", ""Monitor""]",2202.81,{},56419,0,Asia +2024-06-25,3093,2515,"[""Charger""]",2855.77,{},262397,1,Europe +2023-07-23,3094,9202,"[""Charger""]",89.65,"{"""": ""8%""}",274076,0,Asia +2023-11-22,3095,8253,"[""Headphones"", ""Charger"", ""Monitor""]",502.1,{},68960,1,Asia +2023-10-28,3096,2917,"[""Wireless Mouse""]",687.97,{},14457,1,Europe +2023-02-22,3097,7006,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4669.7,"{""promo"": ""6%""}",72241,0,Europe +2024-10-27,3098,1961,"[""Laptop"", ""Monitor""]",3540.63,{},270085,1,Africa +2024-03-17,3099,5736,"[""Laptop""]",4858.37,"{""seasonal"": ""30%""}",174061,0,North America +2024-04-22,3100,798,"[""Phone"", ""Keyboard""]",3051.9,{},190087,1,Africa +2023-09-25,3101,44,"[""Tablet""]",3419.23,"{""seasonal"": ""18%""}",153974,1,South America +2024-01-14,3102,9743,"[""Wireless Mouse""]",3114.12,{},264315,0,Asia +2024-01-08,3103,1853,"[""Tablet"", ""Headphones""]",4409.35,"{""loyalty"": ""25%""}",197271,0,North America +2024-08-03,3104,4159,"[""Headphones""]",520.67,{},3632,0,South America +2023-12-14,3105,4850,"[""Monitor"", ""Laptop""]",3450.9,"{"""": ""13%""}",235244,0,Asia +2024-02-24,3106,1349,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2970.99,"{""loyalty"": ""29%""}",162665,0,North America +2023-12-18,3107,2900,"[""Tablet""]",680.73,"{""promo"": ""14%""}",246813,0,North America +2023-08-04,3108,6582,"[""Phone"", ""Tablet""]",3689.13,"{"""": ""15%""}",292945,0,Asia +2024-08-28,3109,3998,"[""Tablet""]",979.65,{},263873,1,Europe +2024-04-22,3110,8321,"[""Laptop"", ""Monitor""]",2542.76,"{"""": ""24%""}",257151,0,South America +2023-11-01,3111,3934,"[""Headphones""]",4998.36,"{"""": ""25%""}",88689,1,North America +2024-10-31,3112,2510,"[""Keyboard""]",273.78,"{""seasonal"": ""16%""}",35821,0,Asia +2024-11-13,3113,8327,"[""Monitor"", ""Charger""]",4004.94,"{""loyalty"": ""26%""}",85136,0,Asia +2023-04-20,3114,7694,"[""Laptop"", ""Phone""]",1517.92,"{""promo"": ""30%""}",75835,0,Asia +2023-09-20,3115,5953,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",696.74,{},67457,1,Africa +2024-06-19,3116,6999,"[""Monitor"", ""Headphones"", ""Tablet""]",2739.46,{},53273,0,Europe +2023-02-10,3117,9092,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1474.12,{},102870,1,North America +2024-05-16,3118,9200,"[""Laptop"", ""Charger"", ""Tablet""]",459.86,{},261820,1,Asia +2023-10-06,3119,4732,"[""Phone"", ""Headphones"", ""Laptop""]",4331.26,{},139274,1,Asia +2023-05-12,3120,3531,"[""Headphones"", ""Keyboard"", ""Monitor""]",3978.86,"{""promo"": ""24%""}",261201,0,Asia +2024-05-06,3121,9158,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3984.93,{},81321,1,Europe +2023-12-20,3122,6782,"[""Charger""]",740.0,{},208066,1,Europe +2024-03-07,3123,1436,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3052.43,"{""seasonal"": ""21%""}",134032,1,South America +2023-10-31,3124,4344,"[""Monitor""]",2681.18,{},31625,1,Africa +2024-02-03,3125,5054,"[""Monitor"", ""Charger""]",2694.27,"{""loyalty"": ""30%""}",17740,0,South America +2023-08-23,3126,4460,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4689.26,{},236324,1,Asia +2023-06-24,3127,1508,"[""Tablet"", ""Charger"", ""Headphones""]",4731.23,{},74871,0,Europe +2024-09-14,3128,9327,"[""Tablet"", ""Charger""]",1189.02,"{""promo"": ""29%""}",274268,1,Asia +2024-07-22,3129,6322,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2648.04,{},196883,1,Europe +2024-07-17,3130,341,"[""Wireless Mouse""]",2654.64,{},245747,0,Europe +2023-10-22,3131,4939,"[""Charger""]",2438.03,{},177577,1,Europe +2023-12-24,3132,6305,"[""Charger""]",1871.26,"{"""": ""28%""}",101379,0,Africa +2024-02-24,3133,1107,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",357.44,"{"""": ""24%""}",210951,1,Europe +2023-03-26,3134,6869,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3814.48,{},15050,0,Asia +2024-01-27,3135,4919,"[""Charger""]",2656.98,{},232078,1,North America +2023-10-28,3136,5855,"[""Headphones"", ""Laptop"", ""Tablet""]",2171.3,{},245687,0,South America +2024-01-03,3137,9749,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4925.21,"{""loyalty"": ""10%""}",252626,0,Europe +2023-07-25,3138,7338,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3147.23,"{""seasonal"": ""29%""}",214423,1,South America +2023-10-14,3139,1626,"[""Phone""]",1522.92,"{""seasonal"": ""28%""}",291189,1,Asia +2023-03-17,3140,2764,"[""Monitor""]",4709.94,"{""loyalty"": ""29%""}",286088,0,North America +2023-08-06,3141,8148,"[""Wireless Mouse""]",620.89,{},261557,1,Asia +2024-04-10,3142,9843,"[""Headphones""]",1185.21,"{""promo"": ""30%""}",262836,0,North America +2024-11-25,3143,3582,"[""Tablet""]",2593.91,"{""promo"": ""17%""}",205672,1,North America +2024-05-29,3144,489,"[""Headphones""]",4334.31,{},16927,1,Europe +2024-02-16,3145,123,"[""Wireless Mouse""]",4537.99,"{"""": ""20%""}",286848,1,Asia +2024-12-07,3146,6992,"[""Monitor"", ""Headphones"", ""Charger""]",3041.7,{},99330,0,Europe +2023-03-14,3147,3665,"[""Monitor""]",2616.15,{},159036,0,South America +2024-06-07,3148,6431,"[""Charger""]",4136.61,{},19893,0,Asia +2023-12-25,3149,3265,"[""Headphones"", ""Laptop"", ""Phone""]",1639.59,"{""loyalty"": ""16%""}",260609,0,Asia +2023-06-08,3150,6534,"[""Laptop"", ""Charger""]",3370.51,{},176968,0,South America +2024-06-03,3151,8363,"[""Phone"", ""Charger""]",4458.21,"{"""": ""29%""}",174354,1,North America +2023-09-14,3152,829,"[""Keyboard""]",1061.32,"{""loyalty"": ""18%""}",147222,0,Africa +2024-05-06,3153,5808,"[""Wireless Mouse"", ""Keyboard""]",4378.72,{},128993,0,Africa +2024-01-05,3154,9574,"[""Tablet"", ""Laptop"", ""Charger""]",2470.68,{},256971,0,Europe +2024-04-26,3155,1795,"[""Headphones"", ""Laptop"", ""Monitor""]",154.28,{},65515,0,South America +2023-10-21,3156,3945,"[""Phone"", ""Headphones""]",227.98,"{""loyalty"": ""10%""}",60284,0,Africa +2024-05-16,3157,1651,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2464.63,"{"""": ""27%""}",131520,0,South America +2024-02-20,3158,3885,"[""Tablet"", ""Phone"", ""Charger""]",815.01,"{"""": ""30%""}",174557,0,Europe +2023-11-16,3159,5203,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2466.5,"{""loyalty"": ""26%""}",74317,0,Asia +2023-06-22,3160,6344,"[""Phone"", ""Charger""]",1374.18,{},207175,1,Europe +2023-12-19,3161,8255,"[""Phone"", ""Tablet""]",2056.12,"{""promo"": ""28%""}",133776,1,Africa +2024-08-24,3162,7261,"[""Keyboard"", ""Headphones"", ""Monitor""]",3802.38,{},268340,1,North America +2023-09-02,3163,4211,"[""Laptop""]",3689.4,"{"""": ""17%""}",21841,1,Europe +2023-04-28,3164,2967,"[""Phone""]",168.52,"{"""": ""26%""}",99088,0,North America +2024-01-22,3165,5258,"[""Keyboard""]",2408.77,{},101156,1,Asia +2023-01-12,3166,5067,"[""Tablet""]",2887.67,"{""loyalty"": ""30%""}",143803,1,South America +2023-04-15,3167,8438,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4032.65,{},179493,1,North America +2023-02-19,3168,8589,"[""Keyboard""]",417.19,"{""seasonal"": ""11%""}",93114,1,South America +2024-03-26,3169,6292,"[""Keyboard"", ""Headphones"", ""Monitor""]",4174.02,"{""loyalty"": ""19%""}",279911,0,North America +2023-01-28,3170,409,"[""Phone""]",2979.23,"{"""": ""14%""}",284785,0,Asia +2024-10-29,3171,1409,"[""Wireless Mouse"", ""Headphones""]",4839.35,{},144236,0,North America +2023-10-21,3172,3761,"[""Laptop"", ""Charger"", ""Headphones""]",3046.68,{},66444,0,Africa +2024-03-07,3173,5145,"[""Tablet"", ""Laptop""]",4386.91,"{""loyalty"": ""17%""}",203676,0,South America +2023-05-15,3174,6101,"[""Charger"", ""Headphones""]",3345.78,"{""seasonal"": ""22%""}",80722,0,South America +2023-08-29,3175,1008,"[""Monitor"", ""Phone"", ""Charger""]",2201.89,"{"""": ""27%""}",148877,0,Europe +2023-06-24,3176,5968,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1677.71,{},240122,0,North America +2023-06-29,3177,905,"[""Tablet""]",4803.73,{},55463,1,Asia +2024-01-09,3178,4133,"[""Charger""]",3772.44,{},89242,0,Africa +2023-07-05,3179,7503,"[""Phone"", ""Keyboard""]",3468.25,"{""loyalty"": ""24%""}",130708,1,South America +2023-08-03,3180,1917,"[""Tablet""]",483.52,{},85594,0,Asia +2023-08-26,3181,1227,"[""Laptop""]",604.47,"{""seasonal"": ""20%""}",151216,0,Europe +2024-06-28,3182,693,"[""Monitor""]",1011.31,"{""seasonal"": ""6%""}",207812,0,North America +2024-10-05,3183,4938,"[""Headphones"", ""Charger"", ""Laptop""]",2918.33,{},129747,0,Africa +2024-10-05,3184,7525,"[""Tablet"", ""Charger""]",3687.31,{},247139,0,North America +2024-06-03,3185,485,"[""Laptop"", ""Tablet"", ""Headphones""]",4383.87,"{""promo"": ""10%""}",256213,0,South America +2023-10-14,3186,3255,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3012.98,{},286069,1,South America +2023-03-30,3187,2138,"[""Charger""]",2680.34,"{"""": ""18%""}",105789,1,North America +2024-10-25,3188,6625,"[""Phone"", ""Laptop""]",2646.57,{},9124,0,South America +2023-03-27,3189,2184,"[""Phone"", ""Wireless Mouse""]",1086.8,"{"""": ""16%""}",132066,0,South America +2024-08-24,3190,6484,"[""Laptop"", ""Headphones""]",425.41,"{""loyalty"": ""13%""}",164025,0,Europe +2023-06-18,3191,1009,"[""Tablet"", ""Wireless Mouse""]",3080.57,{},102241,0,North America +2023-02-03,3192,3924,"[""Tablet"", ""Headphones"", ""Phone""]",129.56,"{"""": ""22%""}",110634,1,Europe +2023-01-21,3193,1831,"[""Phone""]",4208.57,{},131336,0,North America +2023-01-06,3194,6745,"[""Laptop"", ""Tablet""]",1206.82,"{""seasonal"": ""17%""}",107972,1,Europe +2024-04-05,3195,3474,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4591.07,"{""seasonal"": ""14%""}",45657,1,Europe +2023-10-16,3196,7078,"[""Monitor"", ""Charger"", ""Phone""]",4222.36,{},44943,0,Asia +2024-07-31,3197,729,"[""Laptop"", ""Tablet""]",2924.46,{},95180,0,Asia +2024-02-18,3198,7859,"[""Charger"", ""Laptop""]",1048.68,{},154679,0,Africa +2024-10-29,3199,3084,"[""Phone"", ""Monitor""]",2396.15,"{""promo"": ""15%""}",85470,1,Africa +2023-06-16,3200,6149,"[""Wireless Mouse""]",2397.12,{},227699,1,Asia +2024-03-26,3201,5244,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4152.96,"{""seasonal"": ""11%""}",108454,1,South America +2024-01-30,3202,5425,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3677.94,{},198564,0,Europe +2023-07-09,3203,7558,"[""Tablet"", ""Monitor""]",4177.78,"{""loyalty"": ""20%""}",222073,0,Asia +2024-08-22,3204,6880,"[""Headphones"", ""Keyboard""]",4210.22,"{""promo"": ""28%""}",146426,0,North America +2023-10-28,3205,6344,"[""Tablet""]",2236.12,"{""promo"": ""7%""}",23883,1,Europe +2024-03-24,3206,1074,"[""Monitor""]",432.55,{},84116,0,South America +2024-06-07,3207,2891,"[""Tablet""]",3456.96,{},204296,1,Asia +2023-12-26,3208,4836,"[""Charger"", ""Laptop"", ""Headphones""]",3724.62,{},103454,0,Asia +2023-03-21,3209,2186,"[""Charger""]",2123.09,{},140867,1,Asia +2023-12-23,3210,6413,"[""Headphones"", ""Tablet"", ""Laptop""]",3623.21,{},136806,0,South America +2024-04-01,3211,5827,"[""Keyboard"", ""Tablet"", ""Phone""]",3113.36,{},142479,1,Asia +2023-10-23,3212,6627,"[""Tablet"", ""Charger""]",1534.4,{},213903,1,Africa +2023-07-30,3213,723,"[""Laptop""]",2243.98,"{""promo"": ""20%""}",57896,1,Asia +2024-12-10,3214,7933,"[""Charger""]",267.7,{},138631,0,Europe +2024-01-05,3215,1843,"[""Charger"", ""Monitor"", ""Headphones""]",1863.28,"{""loyalty"": ""28%""}",21548,1,North America +2023-08-13,3216,3493,"[""Laptop"", ""Monitor""]",1241.89,{},116865,1,Africa +2024-03-05,3217,6460,"[""Phone"", ""Tablet"", ""Monitor""]",3644.8,"{""promo"": ""29%""}",44434,0,Asia +2024-03-25,3218,3226,"[""Keyboard"", ""Headphones"", ""Tablet""]",84.91,{},255731,0,Africa +2023-12-27,3219,1408,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3377.36,"{"""": ""24%""}",225771,1,Asia +2023-08-12,3220,5593,"[""Charger""]",4533.88,"{"""": ""15%""}",231355,1,North America +2023-05-29,3221,4776,"[""Keyboard""]",3115.23,{},236058,0,Europe +2023-11-16,3222,2247,"[""Monitor""]",3986.32,"{""loyalty"": ""16%""}",177973,1,Africa +2023-10-15,3223,471,"[""Wireless Mouse"", ""Headphones""]",1662.92,{},242620,0,South America +2024-06-19,3224,2709,"[""Keyboard"", ""Laptop""]",3128.03,"{""promo"": ""20%""}",156153,1,Europe +2024-02-14,3225,9160,"[""Keyboard""]",4305.17,{},236682,1,South America +2024-04-26,3226,1544,"[""Laptop"", ""Charger"", ""Phone""]",408.28,"{"""": ""7%""}",244851,1,South America +2023-12-14,3227,2674,"[""Charger""]",2546.23,{},80849,0,South America +2024-07-23,3228,4958,"[""Keyboard""]",4862.17,"{"""": ""7%""}",246392,0,South America +2024-04-17,3229,6334,"[""Wireless Mouse""]",1243.98,{},168138,0,Europe +2024-12-25,3230,1262,"[""Phone"", ""Tablet"", ""Keyboard""]",3758.15,{},269736,0,North America +2023-11-07,3231,421,"[""Laptop"", ""Monitor""]",4243.67,{},16801,0,Europe +2023-07-01,3232,5470,"[""Keyboard"", ""Phone"", ""Headphones""]",4888.74,"{"""": ""7%""}",127523,0,Asia +2024-10-19,3233,8740,"[""Headphones"", ""Laptop""]",2409.91,{},80790,1,South America +2023-12-16,3234,8690,"[""Phone""]",1983.54,"{""seasonal"": ""29%""}",245144,1,North America +2023-10-26,3235,8044,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2812.14,{},31664,1,South America +2024-03-21,3236,7649,"[""Tablet""]",691.06,{},163938,1,South America +2024-02-09,3237,1518,"[""Laptop"", ""Monitor"", ""Keyboard""]",1383.2,{},147389,1,Europe +2023-08-15,3238,394,"[""Tablet"", ""Laptop""]",711.96,"{""seasonal"": ""24%""}",185882,0,Europe +2023-12-07,3239,2031,"[""Phone""]",4709.93,"{""loyalty"": ""8%""}",12818,1,South America +2023-06-06,3240,7068,"[""Headphones""]",1726.18,"{""seasonal"": ""17%""}",91470,1,South America +2023-01-23,3241,4332,"[""Headphones""]",1454.6,{},188757,0,Africa +2024-06-26,3242,2597,"[""Keyboard"", ""Phone""]",260.88,{},249160,0,Asia +2023-02-21,3243,3770,"[""Laptop"", ""Wireless Mouse""]",4744.66,{},294349,0,North America +2024-12-24,3244,2102,"[""Monitor""]",4218.74,"{""loyalty"": ""6%""}",171030,1,Asia +2023-06-12,3245,3903,"[""Tablet"", ""Keyboard"", ""Charger""]",4617.41,"{"""": ""19%""}",277523,1,Asia +2023-12-13,3246,514,"[""Monitor""]",1348.48,{},105563,0,South America +2023-01-12,3247,8573,"[""Wireless Mouse"", ""Keyboard""]",4167.7,"{"""": ""30%""}",222820,1,Europe +2024-05-02,3248,6566,"[""Phone"", ""Headphones"", ""Tablet""]",168.87,"{""promo"": ""17%""}",192854,0,North America +2024-11-28,3249,6656,"[""Monitor""]",4514.59,"{"""": ""8%""}",75638,0,South America +2023-02-24,3250,6048,"[""Headphones"", ""Tablet"", ""Monitor""]",3221.23,"{""seasonal"": ""12%""}",196677,0,Africa +2023-10-27,3251,6454,"[""Headphones""]",1825.37,{},133796,0,South America +2024-03-05,3252,4441,"[""Laptop""]",3460.37,{},250529,0,Asia +2024-10-21,3253,9522,"[""Charger"", ""Wireless Mouse""]",2714.01,"{""loyalty"": ""20%""}",84822,1,Africa +2024-01-06,3254,5293,"[""Phone""]",3001.4,"{""promo"": ""17%""}",140411,1,Africa +2023-01-28,3255,6185,"[""Laptop"", ""Tablet"", ""Keyboard""]",3092.22,"{""loyalty"": ""8%""}",166545,1,North America +2023-05-04,3256,46,"[""Headphones""]",3925.36,"{""promo"": ""22%""}",280093,1,North America +2023-02-23,3257,4968,"[""Headphones"", ""Tablet"", ""Monitor""]",4491.83,"{"""": ""14%""}",230658,0,Africa +2023-06-12,3258,5392,"[""Keyboard""]",4936.69,{},185075,1,South America +2023-01-29,3259,8877,"[""Headphones"", ""Keyboard"", ""Tablet""]",761.67,{},258176,0,South America +2023-04-16,3260,7039,"[""Monitor"", ""Headphones""]",4192.0,"{""loyalty"": ""5%""}",167542,1,North America +2023-05-06,3261,7004,"[""Charger""]",2921.82,{},111752,1,North America +2024-04-22,3262,8486,"[""Monitor"", ""Laptop""]",4133.15,"{""loyalty"": ""27%""}",98607,1,South America +2024-02-09,3263,7090,"[""Keyboard"", ""Tablet"", ""Charger""]",2864.94,"{""seasonal"": ""6%""}",70302,0,South America +2023-12-27,3264,7760,"[""Keyboard"", ""Monitor""]",59.0,"{"""": ""6%""}",107640,0,Africa +2023-05-25,3265,4026,"[""Charger""]",2065.39,"{""promo"": ""8%""}",95860,0,Asia +2024-05-13,3266,6689,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3342.86,"{"""": ""16%""}",247805,1,North America +2024-12-28,3267,6675,"[""Laptop"", ""Charger"", ""Headphones""]",1313.23,"{""seasonal"": ""27%""}",194466,0,Europe +2023-10-23,3268,2115,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1444.89,"{""promo"": ""22%""}",138003,0,North America +2024-04-22,3269,2904,"[""Monitor""]",1787.21,"{"""": ""21%""}",86616,1,North America +2023-10-26,3270,8742,"[""Tablet"", ""Charger""]",1321.16,{},119426,1,Europe +2023-02-17,3271,3579,"[""Charger"", ""Laptop""]",531.01,"{""seasonal"": ""19%""}",186768,0,South America +2023-12-16,3272,5749,"[""Monitor"", ""Phone"", ""Keyboard""]",3202.54,"{""seasonal"": ""7%""}",46268,0,Europe +2023-11-02,3273,6962,"[""Monitor"", ""Phone""]",495.81,"{"""": ""27%""}",214498,0,Europe +2024-03-16,3274,7342,"[""Monitor"", ""Tablet""]",4440.91,"{"""": ""28%""}",94905,0,Asia +2024-05-19,3275,5387,"[""Phone"", ""Laptop""]",2523.53,{},73283,1,North America +2023-04-15,3276,2860,"[""Headphones""]",600.48,{},105938,0,North America +2023-11-12,3277,5906,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",858.89,{},42830,1,North America +2023-01-28,3278,836,"[""Keyboard"", ""Monitor"", ""Charger""]",997.97,"{"""": ""25%""}",107089,0,Africa +2024-06-04,3279,4198,"[""Laptop"", ""Phone"", ""Charger""]",4835.9,{},177214,0,South America +2023-08-20,3280,6587,"[""Laptop"", ""Headphones""]",2387.76,{},77957,0,Europe +2024-01-22,3281,8150,"[""Charger"", ""Headphones"", ""Laptop""]",3305.77,{},200974,1,South America +2024-05-25,3282,653,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4809.51,{},243582,0,North America +2024-07-23,3283,3156,"[""Wireless Mouse"", ""Headphones""]",4926.0,{},257369,0,North America +2023-04-30,3284,4346,"[""Charger"", ""Tablet""]",3967.17,{},275240,0,Africa +2023-09-16,3285,3119,"[""Phone"", ""Headphones"", ""Charger""]",1584.75,"{""seasonal"": ""29%""}",182539,0,South America +2024-11-08,3286,3498,"[""Wireless Mouse""]",4180.85,{},243490,0,Asia +2024-09-26,3287,598,"[""Headphones"", ""Wireless Mouse""]",2754.1,{},71523,1,Europe +2024-10-15,3288,5502,"[""Charger"", ""Tablet""]",1179.08,{},82013,0,South America +2024-08-06,3289,6873,"[""Wireless Mouse"", ""Keyboard""]",3623.37,"{""promo"": ""16%""}",270069,0,Asia +2023-09-25,3290,20,"[""Laptop""]",3433.95,"{"""": ""8%""}",109112,0,Asia +2024-06-13,3291,1333,"[""Laptop"", ""Keyboard"", ""Headphones""]",2609.55,{},95834,0,Europe +2023-05-05,3292,5229,"[""Tablet""]",4972.19,{},239048,0,South America +2023-02-21,3293,2662,"[""Charger"", ""Tablet""]",1809.39,{},189237,0,Asia +2024-06-20,3294,6933,"[""Charger"", ""Tablet""]",1420.69,"{""loyalty"": ""19%""}",258277,1,Africa +2023-03-21,3295,3982,"[""Keyboard""]",4990.16,{},276123,1,Africa +2024-03-23,3296,3854,"[""Wireless Mouse"", ""Tablet""]",196.93,"{""seasonal"": ""22%""}",33918,1,North America +2023-03-21,3297,5198,"[""Phone"", ""Charger""]",1300.31,{},41197,1,Asia +2024-05-23,3298,5301,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2076.49,{},180556,1,Africa +2023-01-18,3299,8224,"[""Laptop""]",2540.69,{},98670,0,Asia +2023-06-04,3300,5468,"[""Phone""]",688.33,{},228491,0,Europe +2024-10-27,3301,8339,"[""Monitor""]",3636.5,{},76155,0,South America +2023-10-26,3302,8397,"[""Phone"", ""Monitor"", ""Keyboard""]",396.32,"{""loyalty"": ""23%""}",198343,0,Europe +2024-04-14,3303,1541,"[""Phone"", ""Charger""]",657.63,"{""loyalty"": ""18%""}",295186,0,Europe +2024-11-28,3304,3748,"[""Keyboard"", ""Charger""]",2330.31,{},194252,1,South America +2024-05-27,3305,7811,"[""Wireless Mouse""]",1950.66,"{""seasonal"": ""15%""}",284995,1,Asia +2023-03-27,3306,4029,"[""Charger"", ""Wireless Mouse""]",2139.56,{},196077,0,North America +2023-08-06,3307,2690,"[""Laptop""]",4810.97,"{"""": ""6%""}",139412,1,North America +2023-03-30,3308,5337,"[""Tablet"", ""Wireless Mouse""]",4391.87,{},142503,0,North America +2023-12-15,3309,3693,"[""Monitor"", ""Phone"", ""Keyboard""]",3532.5,"{""seasonal"": ""6%""}",270090,1,Europe +2024-08-14,3310,5574,"[""Phone"", ""Keyboard"", ""Laptop""]",3302.21,"{""promo"": ""27%""}",40848,0,South America +2024-07-02,3311,2380,"[""Headphones"", ""Phone"", ""Tablet""]",1758.29,{},2985,1,North America +2024-04-07,3312,2687,"[""Charger"", ""Phone"", ""Keyboard""]",636.69,{},82629,1,Asia +2023-10-01,3313,2668,"[""Laptop"", ""Tablet"", ""Phone""]",1920.29,{},242235,1,Europe +2023-08-17,3314,840,"[""Tablet"", ""Headphones""]",3733.92,{},77548,0,Africa +2024-07-21,3315,470,"[""Charger"", ""Headphones""]",4973.47,"{""loyalty"": ""11%""}",170889,1,Africa +2024-08-04,3316,9256,"[""Charger"", ""Monitor""]",70.04,"{""promo"": ""29%""}",229242,1,North America +2024-02-17,3317,5605,"[""Tablet"", ""Phone"", ""Keyboard""]",4067.12,"{""promo"": ""8%""}",255723,1,North America +2023-10-19,3318,4632,"[""Laptop""]",4994.02,"{""promo"": ""14%""}",221601,0,South America +2024-01-18,3319,250,"[""Monitor""]",4890.4,"{"""": ""12%""}",246943,1,Africa +2023-07-25,3320,4834,"[""Headphones""]",3982.13,"{""seasonal"": ""5%""}",193826,0,Asia +2023-09-23,3321,889,"[""Tablet""]",1508.06,{},237839,0,Africa +2024-01-18,3322,5396,"[""Charger"", ""Tablet""]",1148.27,{},216999,1,Africa +2024-01-19,3323,8359,"[""Keyboard""]",459.35,"{"""": ""29%""}",125109,1,Africa +2023-11-24,3324,6291,"[""Wireless Mouse"", ""Keyboard""]",3900.89,"{"""": ""21%""}",6159,1,Europe +2024-03-24,3325,6134,"[""Phone"", ""Charger"", ""Tablet""]",2248.75,{},169260,1,Africa +2024-02-29,3326,7539,"[""Tablet""]",512.11,"{""seasonal"": ""23%""}",79278,1,Europe +2024-05-09,3327,9237,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",566.73,{},261771,1,Africa +2024-02-21,3328,3974,"[""Tablet"", ""Phone"", ""Charger""]",541.41,"{""loyalty"": ""17%""}",56179,0,North America +2024-03-03,3329,305,"[""Keyboard"", ""Laptop""]",1462.09,"{"""": ""14%""}",269105,1,Europe +2024-06-17,3330,6471,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4798.35,{},46008,1,North America +2023-03-13,3331,5172,"[""Headphones"", ""Phone""]",542.53,"{""seasonal"": ""20%""}",214720,1,Asia +2024-09-29,3332,3921,"[""Keyboard""]",1662.92,"{"""": ""11%""}",94228,0,South America +2024-05-13,3333,9195,"[""Laptop"", ""Keyboard"", ""Tablet""]",3822.93,{},194352,0,South America +2023-12-06,3334,7991,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3714.13,{},240285,1,Asia +2023-01-02,3335,4119,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1579.04,"{""seasonal"": ""12%""}",91081,0,Asia +2023-07-05,3336,8585,"[""Keyboard"", ""Headphones""]",798.97,{},41235,1,South America +2024-11-09,3337,4096,"[""Headphones"", ""Charger""]",4562.35,{},108323,0,Asia +2024-01-06,3338,6877,"[""Laptop"", ""Keyboard"", ""Tablet""]",3826.85,{},152449,0,South America +2024-03-25,3339,4521,"[""Headphones""]",4432.91,{},163022,0,Africa +2024-07-14,3340,4336,"[""Phone"", ""Tablet"", ""Keyboard""]",1600.61,"{"""": ""10%""}",96218,0,South America +2024-09-17,3341,7723,"[""Phone"", ""Charger"", ""Keyboard""]",3861.71,"{""loyalty"": ""20%""}",165882,1,Africa +2023-11-03,3342,5334,"[""Monitor""]",3564.5,{},181027,1,Asia +2024-07-27,3343,6045,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4430.33,"{""loyalty"": ""9%""}",274622,0,Africa +2024-02-12,3344,5697,"[""Headphones""]",2823.94,"{""promo"": ""26%""}",71326,1,South America +2023-04-02,3345,8878,"[""Tablet"", ""Keyboard"", ""Laptop""]",704.76,{},216814,0,Europe +2023-04-09,3346,6775,"[""Charger"", ""Monitor"", ""Headphones""]",2410.29,{},19127,0,Africa +2024-07-18,3347,108,"[""Wireless Mouse"", ""Phone""]",1545.14,{},187579,0,North America +2023-02-10,3348,8977,"[""Laptop"", ""Monitor""]",1443.41,{},248158,1,Asia +2023-02-22,3349,1900,"[""Headphones""]",1041.63,{},192727,1,North America +2023-07-04,3350,7572,"[""Laptop"", ""Phone""]",591.68,{},22755,1,Asia +2024-04-28,3351,7886,"[""Laptop""]",471.46,{},60513,1,South America +2023-09-25,3352,3415,"[""Wireless Mouse"", ""Laptop""]",1757.41,"{""seasonal"": ""20%""}",257529,0,Asia +2023-03-23,3353,1610,"[""Keyboard"", ""Laptop"", ""Monitor""]",2872.12,"{""promo"": ""29%""}",286970,1,North America +2023-06-16,3354,3345,"[""Laptop""]",2465.21,"{""loyalty"": ""21%""}",185862,1,Asia +2024-07-07,3355,5531,"[""Monitor"", ""Headphones"", ""Keyboard""]",1607.83,"{""seasonal"": ""18%""}",274702,1,South America +2024-03-22,3356,2038,"[""Monitor"", ""Laptop"", ""Headphones""]",2070.87,{},80842,0,South America +2023-03-09,3357,3539,"[""Phone"", ""Charger""]",1215.2,{},105063,1,South America +2024-02-14,3358,2499,"[""Headphones"", ""Charger""]",904.26,{},143031,0,North America +2023-04-01,3359,77,"[""Laptop"", ""Tablet"", ""Keyboard""]",4688.38,"{""seasonal"": ""5%""}",161848,1,South America +2023-01-02,3360,3391,"[""Monitor""]",2640.18,{},86894,1,Asia +2024-11-07,3361,8934,"[""Monitor"", ""Wireless Mouse""]",1017.93,"{""promo"": ""13%""}",252050,0,Asia +2023-10-31,3362,1356,"[""Keyboard""]",1160.58,"{""seasonal"": ""9%""}",235437,1,Africa +2023-05-12,3363,8991,"[""Phone""]",4931.44,{},3367,0,Asia +2024-04-21,3364,8612,"[""Laptop""]",410.94,"{""promo"": ""13%""}",89129,0,South America +2023-11-15,3365,8211,"[""Wireless Mouse"", ""Charger""]",811.64,{},157040,0,Africa +2024-05-21,3366,304,"[""Headphones"", ""Wireless Mouse""]",4626.09,{},80287,0,South America +2023-02-05,3367,5679,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4421.66,"{""promo"": ""20%""}",214592,1,Europe +2024-04-28,3368,4117,"[""Charger"", ""Tablet"", ""Monitor""]",4070.93,"{""seasonal"": ""10%""}",219555,1,South America +2023-03-24,3369,7036,"[""Laptop"", ""Wireless Mouse""]",246.18,"{""loyalty"": ""18%""}",208970,1,Africa +2023-01-17,3370,8864,"[""Headphones"", ""Tablet"", ""Charger""]",283.3,{},23908,0,Africa +2023-03-14,3371,5555,"[""Keyboard""]",1236.39,{},264674,1,Asia +2024-12-02,3372,5617,"[""Monitor"", ""Headphones"", ""Phone""]",3027.03,{},96771,1,Africa +2023-12-31,3373,6973,"[""Tablet""]",3997.59,{},77723,1,Asia +2024-10-05,3374,7302,"[""Wireless Mouse""]",1045.1,{},77296,1,Africa +2024-09-10,3375,2643,"[""Wireless Mouse""]",267.36,{},54877,1,South America +2024-06-27,3376,5201,"[""Charger""]",1969.82,"{"""": ""24%""}",115868,1,South America +2023-02-23,3377,7695,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",841.41,{},141146,1,North America +2024-09-27,3378,2493,"[""Charger"", ""Headphones"", ""Keyboard""]",837.13,{},232694,0,Africa +2024-09-22,3379,6350,"[""Laptop""]",2167.98,{},188168,0,Europe +2024-05-09,3380,2172,"[""Monitor"", ""Wireless Mouse""]",1141.0,{},219647,1,South America +2023-11-28,3381,5540,"[""Monitor"", ""Headphones""]",238.52,{},197380,0,South America +2023-07-22,3382,893,"[""Headphones"", ""Monitor"", ""Charger""]",4062.05,"{"""": ""11%""}",264386,0,Asia +2023-11-23,3383,7547,"[""Tablet""]",387.33,{},62369,0,North America +2024-07-29,3384,9799,"[""Tablet""]",426.65,"{""loyalty"": ""11%""}",174777,1,North America +2024-10-06,3385,3787,"[""Monitor""]",589.58,"{""seasonal"": ""7%""}",8785,0,Asia +2023-11-18,3386,9881,"[""Charger""]",4561.9,"{"""": ""12%""}",166806,1,Africa +2024-01-03,3387,7048,"[""Wireless Mouse""]",1567.55,"{""seasonal"": ""22%""}",212965,1,North America +2023-05-16,3388,2346,"[""Monitor""]",4514.43,"{"""": ""27%""}",136486,1,Asia +2023-03-31,3389,2854,"[""Keyboard"", ""Charger""]",3407.01,{},172733,1,North America +2024-11-26,3390,9967,"[""Tablet"", ""Charger"", ""Keyboard""]",255.12,{},67501,1,Asia +2024-07-16,3391,8778,"[""Tablet""]",3267.66,{},2083,0,Asia +2023-04-17,3392,4184,"[""Laptop""]",3025.62,{},86314,1,Asia +2023-01-25,3393,3088,"[""Headphones"", ""Keyboard""]",1331.51,"{""loyalty"": ""17%""}",92280,0,North America +2023-04-15,3394,9070,"[""Charger""]",1798.55,{},284520,0,North America +2023-09-10,3395,1274,"[""Laptop"", ""Monitor"", ""Charger""]",474.15,"{"""": ""14%""}",284190,1,South America +2023-11-25,3396,9732,"[""Keyboard""]",4916.3,{},117014,1,North America +2024-03-31,3397,7620,"[""Phone""]",2561.11,{},65653,0,Europe +2023-03-10,3398,4546,"[""Charger"", ""Headphones"", ""Phone""]",2616.99,{},24314,0,Europe +2023-10-26,3399,7388,"[""Phone"", ""Tablet"", ""Keyboard""]",3152.51,"{""promo"": ""13%""}",91965,0,Europe +2024-07-20,3400,3546,"[""Keyboard"", ""Charger""]",1238.19,"{""promo"": ""25%""}",255989,0,Asia +2023-07-16,3401,4395,"[""Phone"", ""Monitor"", ""Tablet""]",3040.75,"{"""": ""12%""}",97919,1,South America +2023-04-07,3402,7510,"[""Laptop"", ""Headphones""]",3710.21,"{""seasonal"": ""26%""}",171438,1,Africa +2023-05-30,3403,890,"[""Monitor"", ""Phone""]",4478.06,{},223093,1,Europe +2023-06-21,3404,1769,"[""Phone""]",606.56,{},165577,1,Asia +2024-12-16,3405,3832,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",556.84,"{""seasonal"": ""28%""}",273744,0,Europe +2024-01-20,3406,2844,"[""Charger"", ""Tablet"", ""Phone""]",4467.88,{},22257,1,Africa +2023-06-04,3407,9157,"[""Monitor"", ""Wireless Mouse""]",1828.85,"{""seasonal"": ""6%""}",18993,0,South America +2023-05-16,3408,342,"[""Tablet""]",2241.43,{},216156,0,South America +2024-09-07,3409,7633,"[""Laptop"", ""Monitor""]",2096.99,"{""seasonal"": ""27%""}",267052,1,Europe +2023-08-26,3410,3066,"[""Charger"", ""Monitor"", ""Laptop""]",1761.28,"{""seasonal"": ""11%""}",211892,0,Asia +2024-08-31,3411,7563,"[""Headphones"", ""Tablet""]",3186.42,"{""loyalty"": ""23%""}",93471,0,Asia +2023-07-03,3412,9105,"[""Monitor""]",4467.09,{},199079,0,South America +2023-03-31,3413,7121,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",650.12,"{""promo"": ""22%""}",30740,0,Africa +2023-08-11,3414,646,"[""Charger""]",3892.92,{},216657,0,South America +2024-04-16,3415,8203,"[""Keyboard"", ""Laptop"", ""Monitor""]",2899.93,{},166225,0,South America +2024-01-09,3416,2048,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1600.18,"{"""": ""19%""}",169462,0,Europe +2023-11-20,3417,2177,"[""Keyboard"", ""Headphones""]",2583.18,"{"""": ""22%""}",140097,0,North America +2024-04-12,3418,5008,"[""Monitor"", ""Laptop""]",2655.96,{},38504,1,Europe +2023-09-14,3419,5884,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",479.97,{},288753,0,North America +2024-03-01,3420,7017,"[""Keyboard"", ""Wireless Mouse""]",922.61,"{"""": ""6%""}",241409,0,North America +2024-03-23,3421,3439,"[""Tablet""]",1349.16,"{""promo"": ""13%""}",177777,0,Asia +2024-05-05,3422,5563,"[""Phone"", ""Laptop""]",4917.0,"{""seasonal"": ""24%""}",160549,1,Africa +2023-04-11,3423,1388,"[""Laptop"", ""Phone"", ""Tablet""]",4571.43,"{""seasonal"": ""6%""}",243650,0,North America +2024-04-21,3424,9318,"[""Keyboard"", ""Phone"", ""Monitor""]",4861.71,{},75918,1,Europe +2023-11-20,3425,2354,"[""Phone"", ""Headphones""]",1097.74,{},49670,1,North America +2023-02-17,3426,3269,"[""Tablet"", ""Monitor""]",1435.44,{},222182,1,Europe +2023-12-28,3427,4963,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4462.54,"{""seasonal"": ""24%""}",258884,0,Europe +2024-09-01,3428,8071,"[""Charger""]",2038.76,{},97887,1,Asia +2024-03-29,3429,5119,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2575.04,{},208417,1,Europe +2024-12-24,3430,8414,"[""Wireless Mouse""]",4386.91,{},11015,0,South America +2023-05-06,3431,982,"[""Headphones"", ""Monitor"", ""Phone""]",3270.04,"{""seasonal"": ""19%""}",211729,0,Europe +2023-08-25,3432,4456,"[""Monitor"", ""Charger"", ""Laptop""]",4562.11,{},110491,1,South America +2023-01-02,3433,8223,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",582.62,"{""promo"": ""27%""}",278257,1,Europe +2024-03-02,3434,7621,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4239.84,"{""seasonal"": ""16%""}",241698,1,South America +2024-06-23,3435,3834,"[""Headphones"", ""Charger""]",4390.7,{},82988,1,Europe +2024-02-11,3436,1448,"[""Charger"", ""Monitor"", ""Laptop""]",948.14,"{""promo"": ""5%""}",14008,1,Asia +2024-07-10,3437,8400,"[""Headphones"", ""Laptop"", ""Tablet""]",3460.35,{},286934,0,North America +2023-10-28,3438,1890,"[""Headphones""]",1068.99,{},249717,0,North America +2024-08-11,3439,8847,"[""Keyboard"", ""Monitor"", ""Phone""]",2283.92,"{"""": ""16%""}",58352,0,South America +2024-12-14,3440,7541,"[""Tablet"", ""Phone"", ""Charger""]",2850.62,{},19334,0,Asia +2023-05-13,3441,2681,"[""Headphones""]",1823.09,{},226388,1,Europe +2024-09-08,3442,3313,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",130.62,{},275928,0,Europe +2023-05-30,3443,9126,"[""Laptop"", ""Charger"", ""Monitor""]",3597.36,"{""loyalty"": ""9%""}",209622,0,Europe +2023-07-15,3444,7216,"[""Headphones"", ""Laptop""]",1372.71,{},136536,0,Asia +2024-03-06,3445,928,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1235.85,"{"""": ""22%""}",106988,0,South America +2024-08-15,3446,6241,"[""Keyboard"", ""Tablet""]",4981.44,{},234767,1,Asia +2023-05-09,3447,2267,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3523.54,"{""promo"": ""18%""}",26097,1,South America +2024-01-12,3448,8359,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",967.07,"{""seasonal"": ""18%""}",133589,0,Europe +2024-05-29,3449,3549,"[""Phone""]",1148.07,{},263071,1,South America +2024-09-29,3450,6376,"[""Laptop"", ""Phone"", ""Monitor""]",3290.0,"{"""": ""24%""}",94772,1,Europe +2023-03-14,3451,4492,"[""Keyboard"", ""Phone""]",4656.61,{},202320,1,North America +2023-03-15,3452,2042,"[""Laptop""]",1869.23,{},54564,0,Europe +2023-09-13,3453,9173,"[""Charger"", ""Laptop""]",3320.35,"{""seasonal"": ""9%""}",295320,1,South America +2024-09-14,3454,4545,"[""Phone""]",1286.03,"{"""": ""26%""}",239548,0,Asia +2023-03-17,3455,2311,"[""Phone""]",3889.26,{},201912,1,Africa +2024-08-16,3456,2213,"[""Wireless Mouse"", ""Keyboard""]",4598.17,{},151329,0,North America +2023-10-13,3457,4679,"[""Wireless Mouse"", ""Laptop""]",338.54,"{""seasonal"": ""23%""}",190403,0,Africa +2024-09-23,3458,7818,"[""Monitor"", ""Keyboard""]",3784.25,"{""loyalty"": ""22%""}",32172,1,Asia +2024-10-30,3459,8176,"[""Laptop"", ""Tablet""]",1374.96,{},67087,0,South America +2023-03-15,3460,3670,"[""Monitor""]",2353.84,"{"""": ""6%""}",134301,1,Africa +2023-11-16,3461,4470,"[""Phone""]",1470.53,"{""loyalty"": ""27%""}",202421,0,North America +2023-04-26,3462,466,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2166.55,{},285668,0,North America +2024-05-09,3463,8539,"[""Charger"", ""Wireless Mouse""]",3441.65,{},163232,0,Africa +2023-09-22,3464,4727,"[""Charger"", ""Phone""]",1613.22,"{""loyalty"": ""19%""}",26648,0,Africa +2024-02-08,3465,9703,"[""Charger"", ""Laptop"", ""Keyboard""]",1694.08,"{"""": ""28%""}",298913,0,South America +2024-12-29,3466,66,"[""Headphones"", ""Keyboard""]",3824.86,"{""promo"": ""8%""}",247118,1,South America +2024-12-30,3467,6705,"[""Monitor""]",3096.9,"{""seasonal"": ""13%""}",120231,1,Africa +2024-07-31,3468,3253,"[""Tablet"", ""Wireless Mouse""]",1936.88,{},106298,1,South America +2023-10-09,3469,4985,"[""Monitor"", ""Tablet"", ""Headphones""]",2033.99,{},63716,0,South America +2023-10-24,3470,1740,"[""Headphones"", ""Keyboard"", ""Phone""]",4830.3,{},58498,1,Europe +2023-11-07,3471,3419,"[""Phone""]",1244.26,{},260177,1,North America +2023-12-21,3472,4636,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2989.58,"{""seasonal"": ""22%""}",285329,0,South America +2023-08-09,3473,644,"[""Headphones""]",4908.91,"{""loyalty"": ""8%""}",196290,1,South America +2023-03-11,3474,9763,"[""Laptop"", ""Keyboard"", ""Monitor""]",4331.78,"{""loyalty"": ""15%""}",292124,0,North America +2023-02-09,3475,5039,"[""Phone"", ""Wireless Mouse""]",3140.26,{},1187,0,Africa +2023-11-29,3476,7848,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2504.39,"{"""": ""5%""}",57674,1,Africa +2023-08-25,3477,5071,"[""Wireless Mouse""]",4741.14,{},139479,0,Africa +2023-09-09,3478,8131,"[""Headphones"", ""Laptop"", ""Phone""]",4231.86,"{""promo"": ""17%""}",76804,1,Africa +2024-10-13,3479,200,"[""Monitor"", ""Headphones""]",2476.8,"{""promo"": ""16%""}",269801,1,South America +2023-04-14,3480,230,"[""Phone""]",4251.92,"{""seasonal"": ""8%""}",109198,1,North America +2024-03-22,3481,9553,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",770.09,"{"""": ""20%""}",35897,0,Europe +2024-09-16,3482,6273,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4103.68,{},268303,1,Asia +2023-10-21,3483,7959,"[""Charger""]",2760.78,"{""loyalty"": ""8%""}",188776,0,South America +2024-01-14,3484,3351,"[""Wireless Mouse"", ""Charger""]",2067.69,"{""loyalty"": ""17%""}",299608,0,North America +2023-02-15,3485,5198,"[""Headphones""]",593.86,"{""seasonal"": ""11%""}",175020,1,Africa +2023-06-03,3486,1469,"[""Laptop"", ""Tablet"", ""Keyboard""]",2185.01,"{""loyalty"": ""29%""}",122686,0,Asia +2024-10-18,3487,1091,"[""Laptop"", ""Phone""]",341.47,{},69824,0,North America +2024-03-16,3488,1510,"[""Laptop""]",880.06,{},62025,1,South America +2023-12-24,3489,7647,"[""Headphones"", ""Phone"", ""Monitor""]",2866.95,"{""promo"": ""22%""}",224305,1,Asia +2024-05-23,3490,2214,"[""Wireless Mouse"", ""Tablet""]",1508.25,"{""promo"": ""25%""}",147553,0,North America +2024-07-29,3491,4136,"[""Monitor"", ""Tablet""]",1108.6,{},124241,1,South America +2023-04-04,3492,3663,"[""Monitor"", ""Wireless Mouse""]",704.92,"{""promo"": ""17%""}",43894,1,Europe +2023-04-28,3493,1753,"[""Monitor"", ""Laptop""]",4320.27,{},271787,1,Asia +2023-11-01,3494,7719,"[""Charger"", ""Phone""]",3019.74,"{""seasonal"": ""24%""}",64639,1,Europe +2024-08-23,3495,2111,"[""Headphones"", ""Phone"", ""Tablet""]",232.57,{},222809,0,Africa +2024-01-11,3496,1297,"[""Headphones""]",904.71,{},232062,1,Europe +2024-03-10,3497,8512,"[""Monitor"", ""Phone"", ""Keyboard""]",2031.44,"{"""": ""18%""}",262596,1,Africa +2024-02-28,3498,1650,"[""Laptop""]",2485.33,{},235330,1,Europe +2023-07-18,3499,9496,"[""Tablet"", ""Monitor"", ""Phone""]",3392.97,"{""seasonal"": ""14%""}",84492,1,North America +2024-12-02,3500,7041,"[""Headphones""]",360.3,"{""seasonal"": ""10%""}",136407,1,Asia +2023-04-19,3501,2556,"[""Phone""]",2028.33,{},203486,0,Asia +2023-02-28,3502,3198,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1585.47,{},202256,1,Europe +2023-02-26,3503,6511,"[""Monitor""]",1223.0,{},96324,0,Africa +2024-07-11,3504,6490,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4513.27,"{""seasonal"": ""27%""}",205323,0,Africa +2024-02-07,3505,6523,"[""Phone"", ""Headphones""]",801.67,"{""promo"": ""15%""}",98667,0,Europe +2023-11-21,3506,3337,"[""Phone"", ""Monitor""]",637.13,{},243713,1,Asia +2024-08-15,3507,433,"[""Keyboard"", ""Laptop"", ""Headphones""]",4206.04,"{"""": ""10%""}",131973,1,Asia +2023-06-24,3508,7142,"[""Monitor""]",2475.8,"{""loyalty"": ""28%""}",173659,1,Africa +2024-06-20,3509,8680,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4234.58,{},290183,0,South America +2023-11-26,3510,597,"[""Laptop"", ""Headphones"", ""Tablet""]",992.17,{},109846,1,Europe +2024-03-09,3511,7930,"[""Laptop""]",1013.16,"{""promo"": ""10%""}",11311,1,Asia +2024-10-14,3512,9743,"[""Tablet"", ""Charger""]",4903.61,"{""loyalty"": ""27%""}",280777,1,Europe +2023-04-04,3513,3603,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3954.73,"{"""": ""20%""}",260901,0,Africa +2023-04-20,3514,7490,"[""Tablet""]",4703.37,"{""seasonal"": ""5%""}",273267,1,Africa +2023-04-22,3515,555,"[""Monitor""]",4870.44,"{""seasonal"": ""25%""}",270889,0,Asia +2023-10-01,3516,7136,"[""Wireless Mouse""]",1515.69,"{""seasonal"": ""25%""}",166678,1,Asia +2023-06-05,3517,8599,"[""Keyboard"", ""Laptop"", ""Tablet""]",1185.89,"{""loyalty"": ""19%""}",147773,1,Africa +2023-10-18,3518,3937,"[""Headphones""]",3883.45,{},54450,1,Europe +2024-07-01,3519,4040,"[""Headphones"", ""Tablet""]",482.23,"{""promo"": ""9%""}",99461,0,South America +2023-06-10,3520,5837,"[""Tablet"", ""Monitor"", ""Headphones""]",2584.52,"{"""": ""24%""}",28076,0,Europe +2024-06-15,3521,9030,"[""Monitor""]",584.09,{},192482,1,North America +2023-10-31,3522,4575,"[""Wireless Mouse""]",1528.84,"{"""": ""9%""}",107143,1,North America +2024-07-18,3523,7913,"[""Tablet"", ""Charger""]",4015.53,{},292579,0,South America +2024-11-15,3524,3835,"[""Headphones""]",4638.15,{},8632,1,Asia +2024-01-13,3525,9148,"[""Headphones"", ""Phone""]",467.45,{},13580,0,South America +2024-07-22,3526,7358,"[""Tablet"", ""Charger"", ""Phone""]",2091.48,"{""seasonal"": ""11%""}",207036,1,South America +2023-07-11,3527,1345,"[""Headphones""]",4242.68,"{""loyalty"": ""30%""}",207953,1,Africa +2023-09-22,3528,8294,"[""Monitor"", ""Tablet""]",1476.61,"{""promo"": ""17%""}",31115,0,North America +2023-11-27,3529,1414,"[""Charger""]",716.9,{},220271,1,South America +2024-07-30,3530,7667,"[""Monitor"", ""Wireless Mouse""]",1525.1,{},176024,1,Africa +2023-04-13,3531,2895,"[""Phone""]",4790.16,{},298204,1,Africa +2023-05-12,3532,7050,"[""Charger"", ""Monitor"", ""Headphones""]",2215.94,{},241662,0,North America +2023-07-21,3533,8155,"[""Phone"", ""Monitor""]",542.64,{},245321,0,South America +2023-08-27,3534,5591,"[""Monitor"", ""Keyboard""]",1594.56,{},290748,1,Europe +2023-04-06,3535,6476,"[""Monitor"", ""Keyboard"", ""Charger""]",754.63,{},266716,1,Asia +2024-04-23,3536,1153,"[""Wireless Mouse""]",2370.3,{},215507,1,Europe +2023-02-23,3537,1330,"[""Charger"", ""Tablet"", ""Phone""]",4912.22,{},237730,0,Europe +2024-08-15,3538,7310,"[""Laptop""]",2991.74,"{""loyalty"": ""25%""}",119507,1,South America +2023-11-25,3539,9793,"[""Phone"", ""Headphones""]",3304.91,{},38671,1,Asia +2024-10-20,3540,8776,"[""Headphones"", ""Wireless Mouse""]",1141.96,"{"""": ""24%""}",21529,0,Asia +2023-11-23,3541,8360,"[""Tablet"", ""Keyboard"", ""Headphones""]",4689.56,"{"""": ""16%""}",149156,1,Africa +2023-07-04,3542,7724,"[""Charger""]",4208.62,"{""seasonal"": ""12%""}",254871,1,Africa +2023-08-02,3543,5505,"[""Monitor""]",1854.08,"{""loyalty"": ""27%""}",1209,0,Asia +2024-03-03,3544,6909,"[""Charger"", ""Laptop""]",4328.52,"{"""": ""22%""}",23520,1,Europe +2023-09-15,3545,2480,"[""Keyboard""]",2126.49,{},82744,0,North America +2023-06-19,3546,7586,"[""Headphones""]",4096.95,{},248033,1,Asia +2023-12-24,3547,607,"[""Laptop""]",1748.23,{},173698,1,Asia +2023-03-14,3548,5571,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",91.64,{},275385,0,Asia +2024-01-31,3549,8483,"[""Phone""]",4167.91,{},115798,0,Europe +2024-04-28,3550,494,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1338.55,"{""promo"": ""21%""}",107967,0,Africa +2024-11-20,3551,8771,"[""Phone"", ""Laptop""]",2215.07,"{""promo"": ""15%""}",126550,0,Africa +2024-03-07,3552,8861,"[""Laptop"", ""Headphones""]",2420.75,{},258901,1,South America +2023-10-17,3553,2259,"[""Tablet"", ""Keyboard""]",4591.05,"{""promo"": ""13%""}",70665,0,Asia +2023-01-14,3554,9080,"[""Keyboard"", ""Monitor""]",669.66,"{""promo"": ""28%""}",239081,0,Asia +2023-05-04,3555,3298,"[""Charger"", ""Phone"", ""Laptop""]",4752.33,"{""promo"": ""23%""}",52462,1,Africa +2024-02-07,3556,8639,"[""Tablet""]",649.61,"{""promo"": ""26%""}",220423,0,Europe +2024-09-07,3557,7416,"[""Charger"", ""Keyboard""]",3786.63,"{""promo"": ""14%""}",296713,0,North America +2024-01-04,3558,5619,"[""Tablet""]",3844.05,"{""promo"": ""6%""}",166814,0,Asia +2024-12-10,3559,2152,"[""Monitor"", ""Wireless Mouse""]",4098.17,"{""promo"": ""18%""}",270507,0,Africa +2023-03-10,3560,6696,"[""Tablet""]",2151.5,{},177481,0,North America +2024-02-06,3561,3445,"[""Wireless Mouse"", ""Tablet""]",779.54,"{""promo"": ""8%""}",285945,1,Europe +2023-06-15,3562,7577,"[""Wireless Mouse""]",3794.14,"{""seasonal"": ""21%""}",274570,1,South America +2023-10-11,3563,1789,"[""Wireless Mouse"", ""Charger""]",3772.51,"{""seasonal"": ""26%""}",96035,0,Africa +2024-08-19,3564,1145,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3860.27,{},288628,0,Asia +2023-04-17,3565,2546,"[""Laptop"", ""Tablet"", ""Keyboard""]",983.85,"{"""": ""14%""}",18613,1,Europe +2023-07-11,3566,7787,"[""Tablet"", ""Phone""]",53.87,{},198331,1,Europe +2023-01-08,3567,3416,"[""Laptop""]",3435.81,{},235409,1,North America +2024-05-04,3568,6257,"[""Monitor"", ""Laptop""]",2072.49,"{""promo"": ""16%""}",291997,0,Asia +2024-04-08,3569,6879,"[""Phone""]",3191.26,"{""promo"": ""14%""}",137089,1,Asia +2024-08-29,3570,442,"[""Monitor""]",2224.7,{},263442,1,Asia +2023-02-01,3571,2411,"[""Keyboard"", ""Charger""]",1828.45,"{"""": ""23%""}",68824,0,Africa +2024-05-24,3572,6632,"[""Monitor"", ""Phone""]",4141.6,{},23104,1,Europe +2023-08-14,3573,9144,"[""Laptop""]",1803.4,"{"""": ""28%""}",267429,1,South America +2023-01-01,3574,9310,"[""Tablet"", ""Keyboard""]",1709.5,"{"""": ""22%""}",130123,1,Europe +2024-10-21,3575,9331,"[""Headphones"", ""Charger"", ""Tablet""]",504.26,{},255103,0,South America +2023-08-24,3576,2873,"[""Tablet"", ""Charger""]",1511.93,{},24994,0,Asia +2023-04-23,3577,2056,"[""Charger"", ""Monitor""]",4771.8,"{""promo"": ""11%""}",6802,0,North America +2023-09-29,3578,6888,"[""Headphones"", ""Charger""]",4770.6,"{""loyalty"": ""21%""}",86431,0,Europe +2023-07-05,3579,2443,"[""Wireless Mouse""]",2376.53,"{""promo"": ""20%""}",12326,0,Europe +2023-10-06,3580,795,"[""Charger""]",3887.77,"{""seasonal"": ""12%""}",240309,1,Asia +2024-04-01,3581,335,"[""Wireless Mouse"", ""Phone""]",846.05,{},127316,0,South America +2023-10-04,3582,2981,"[""Phone"", ""Tablet"", ""Monitor""]",1044.96,"{"""": ""14%""}",296414,1,North America +2024-08-10,3583,3545,"[""Keyboard"", ""Charger"", ""Phone""]",4938.18,{},147149,0,Africa +2024-12-10,3584,5081,"[""Laptop"", ""Headphones""]",4497.15,"{""promo"": ""12%""}",59216,1,Africa +2023-03-04,3585,7166,"[""Charger"", ""Phone"", ""Laptop""]",3521.54,"{""seasonal"": ""14%""}",98285,0,Africa +2024-12-11,3586,2410,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",226.39,"{""promo"": ""10%""}",19721,1,South America +2023-10-12,3587,7565,"[""Phone"", ""Headphones""]",1458.01,"{"""": ""24%""}",104310,0,South America +2024-12-07,3588,1240,"[""Keyboard""]",4375.68,{},274446,0,Asia +2024-04-09,3589,355,"[""Monitor"", ""Wireless Mouse""]",4383.5,"{"""": ""13%""}",13938,0,Europe +2024-10-18,3590,3806,"[""Laptop"", ""Headphones""]",2320.29,{},260265,1,Europe +2024-07-17,3591,4925,"[""Monitor"", ""Headphones""]",4368.81,"{"""": ""16%""}",291258,0,Africa +2023-06-29,3592,6220,"[""Phone""]",2451.36,{},140051,1,Europe +2023-01-02,3593,1042,"[""Phone"", ""Charger""]",2876.69,"{"""": ""9%""}",111520,0,Europe +2024-03-13,3594,1215,"[""Laptop""]",1902.16,"{"""": ""14%""}",49052,1,Africa +2023-01-02,3595,2004,"[""Phone"", ""Tablet"", ""Charger""]",4982.11,"{""promo"": ""30%""}",271854,0,South America +2023-09-07,3596,6792,"[""Monitor"", ""Laptop""]",2478.55,"{""seasonal"": ""26%""}",156824,0,South America +2023-03-06,3597,2287,"[""Wireless Mouse""]",1758.04,{},165247,0,South America +2023-11-04,3598,350,"[""Wireless Mouse"", ""Keyboard""]",682.38,"{""seasonal"": ""17%""}",6289,0,South America +2023-08-12,3599,4432,"[""Charger""]",1796.25,{},131795,0,Africa +2024-09-10,3600,8696,"[""Phone""]",1059.77,{},299960,1,North America +2024-05-02,3601,3053,"[""Tablet"", ""Phone"", ""Monitor""]",1786.28,"{"""": ""22%""}",268943,0,Africa +2023-09-30,3602,9138,"[""Headphones"", ""Tablet""]",639.05,{},99419,1,South America +2023-05-09,3603,3884,"[""Wireless Mouse""]",4627.17,"{""seasonal"": ""11%""}",112575,0,Africa +2024-10-22,3604,314,"[""Phone"", ""Laptop""]",2679.34,{},130182,1,Europe +2023-06-10,3605,4037,"[""Phone"", ""Monitor""]",4949.61,"{""seasonal"": ""24%""}",96100,0,South America +2023-02-15,3606,2468,"[""Headphones""]",4717.85,"{"""": ""11%""}",273426,0,Asia +2024-02-18,3607,686,"[""Monitor"", ""Phone"", ""Tablet""]",1466.08,{},198669,1,Europe +2023-06-01,3608,8987,"[""Monitor"", ""Laptop""]",2347.16,{},69756,0,Europe +2024-08-30,3609,1836,"[""Keyboard"", ""Headphones""]",4761.79,{},219837,0,Africa +2023-12-20,3610,9387,"[""Wireless Mouse""]",4269.01,"{""promo"": ""5%""}",260906,1,Europe +2024-10-27,3611,8496,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3670.08,{},181520,1,Africa +2024-02-26,3612,1232,"[""Laptop""]",4974.46,"{""seasonal"": ""30%""}",116126,1,South America +2024-03-29,3613,8261,"[""Charger"", ""Wireless Mouse""]",183.25,"{"""": ""5%""}",109535,1,North America +2023-04-22,3614,2583,"[""Wireless Mouse"", ""Keyboard""]",2819.03,{},136517,0,Asia +2023-02-15,3615,9719,"[""Monitor"", ""Laptop"", ""Keyboard""]",186.86,{},201490,1,Asia +2023-12-01,3616,2992,"[""Headphones""]",4233.63,{},251298,1,South America +2023-01-03,3617,5835,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2773.75,"{""promo"": ""12%""}",296983,0,Africa +2024-10-09,3618,5955,"[""Laptop"", ""Tablet""]",2871.66,{},237962,0,North America +2024-12-18,3619,6465,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4321.37,"{""seasonal"": ""23%""}",272064,1,North America +2024-07-28,3620,489,"[""Phone"", ""Keyboard""]",4818.85,{},287444,1,Asia +2024-02-13,3621,3203,"[""Wireless Mouse"", ""Phone""]",4078.75,{},197033,0,Africa +2023-08-09,3622,4940,"[""Headphones"", ""Charger"", ""Tablet""]",959.67,{},8728,0,Europe +2023-12-31,3623,7519,"[""Monitor"", ""Keyboard"", ""Headphones""]",3125.28,"{""seasonal"": ""26%""}",156373,0,Europe +2024-04-09,3624,6518,"[""Phone"", ""Headphones""]",98.7,"{""seasonal"": ""9%""}",111726,1,Europe +2023-08-12,3625,5735,"[""Keyboard"", ""Charger"", ""Headphones""]",525.99,{},150474,1,North America +2024-05-13,3626,402,"[""Keyboard""]",4564.16,"{""promo"": ""26%""}",138990,1,Europe +2023-07-12,3627,7575,"[""Monitor"", ""Keyboard"", ""Phone""]",3650.71,"{"""": ""7%""}",262490,0,Asia +2024-09-09,3628,4071,"[""Charger""]",1029.05,{},230890,0,South America +2024-10-19,3629,1662,"[""Phone"", ""Wireless Mouse""]",1900.82,"{""loyalty"": ""14%""}",256647,0,Europe +2023-08-05,3630,1347,"[""Charger""]",2251.21,"{""seasonal"": ""10%""}",235278,0,Europe +2023-05-23,3631,9635,"[""Phone"", ""Charger"", ""Laptop""]",2446.22,{},182456,1,North America +2023-07-14,3632,3582,"[""Charger"", ""Monitor""]",3716.53,"{""seasonal"": ""6%""}",2618,0,North America +2023-05-04,3633,5941,"[""Keyboard"", ""Laptop"", ""Phone""]",2368.22,{},118199,0,South America +2024-05-15,3634,6577,"[""Phone"", ""Laptop"", ""Charger""]",1307.01,{},265811,0,Europe +2024-01-30,3635,518,"[""Keyboard""]",4385.49,{},133952,0,Europe +2024-12-22,3636,431,"[""Headphones"", ""Wireless Mouse""]",514.03,{},238508,1,Africa +2024-01-29,3637,7012,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4198.14,{},156083,0,Asia +2023-11-09,3638,3585,"[""Charger"", ""Phone""]",1280.54,"{""seasonal"": ""27%""}",82175,1,Africa +2024-02-29,3639,5012,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3062.7,"{""loyalty"": ""30%""}",291139,0,Europe +2023-07-25,3640,5841,"[""Charger""]",4420.51,{},263880,0,Europe +2024-05-26,3641,8884,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2586.88,"{"""": ""26%""}",56656,0,Europe +2023-05-23,3642,3232,"[""Laptop""]",1709.6,"{""promo"": ""26%""}",57713,0,Asia +2023-12-30,3643,7524,"[""Wireless Mouse"", ""Monitor""]",4634.1,{},126648,1,Asia +2024-05-31,3644,331,"[""Monitor"", ""Charger""]",3353.29,{},23947,1,South America +2023-02-27,3645,2465,"[""Monitor""]",4501.62,"{""loyalty"": ""9%""}",164321,0,Africa +2024-06-09,3646,6174,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",459.23,{},290448,1,North America +2023-03-16,3647,4521,"[""Charger"", ""Monitor"", ""Keyboard""]",4722.96,"{""seasonal"": ""21%""}",173423,1,Asia +2024-10-23,3648,5587,"[""Monitor""]",4166.49,"{""seasonal"": ""6%""}",23094,0,Europe +2023-07-18,3649,490,"[""Charger"", ""Wireless Mouse""]",2218.86,{},103253,0,North America +2023-06-29,3650,3360,"[""Charger"", ""Tablet""]",3401.1,{},41294,0,Europe +2024-04-12,3651,926,"[""Monitor"", ""Tablet"", ""Headphones""]",4162.09,{},160257,1,Europe +2024-06-25,3652,2192,"[""Phone"", ""Laptop"", ""Charger""]",3476.81,{},77197,0,Europe +2023-03-02,3653,3647,"[""Phone"", ""Wireless Mouse""]",1574.33,"{""seasonal"": ""7%""}",32803,1,Asia +2023-06-03,3654,8841,"[""Phone""]",3682.71,{},225805,0,Asia +2023-09-13,3655,72,"[""Keyboard"", ""Monitor""]",96.51,{},204500,0,Europe +2023-04-07,3656,952,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2130.39,"{"""": ""10%""}",26617,1,South America +2023-01-16,3657,5729,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1370.61,{},69474,0,Europe +2023-01-27,3658,3528,"[""Laptop"", ""Charger"", ""Phone""]",4919.19,"{""loyalty"": ""9%""}",175365,1,Africa +2024-06-29,3659,8519,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1370.53,"{""promo"": ""29%""}",56294,0,North America +2023-05-27,3660,7323,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",517.02,"{"""": ""21%""}",198798,1,Europe +2023-08-08,3661,8053,"[""Wireless Mouse""]",4180.03,{},198605,0,Asia +2023-07-29,3662,5870,"[""Laptop"", ""Monitor""]",3479.43,{},170936,0,South America +2023-01-02,3663,1264,"[""Keyboard"", ""Charger"", ""Monitor""]",4274.31,{},57019,0,Europe +2024-11-15,3664,9527,"[""Keyboard""]",1797.09,"{""seasonal"": ""29%""}",72145,1,Europe +2023-01-28,3665,833,"[""Headphones""]",322.7,"{""promo"": ""24%""}",288308,1,Africa +2024-12-11,3666,4205,"[""Monitor"", ""Tablet""]",3543.92,{},131064,1,South America +2023-08-13,3667,9527,"[""Monitor""]",2198.91,"{"""": ""26%""}",198622,1,Europe +2024-05-05,3668,656,"[""Monitor"", ""Phone"", ""Tablet""]",4435.55,{},135328,0,South America +2023-09-10,3669,5430,"[""Phone"", ""Laptop""]",4107.61,{},211414,0,Africa +2023-06-19,3670,3777,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2042.14,"{""loyalty"": ""5%""}",62538,1,Africa +2024-03-22,3671,9594,"[""Keyboard""]",1655.41,{},86713,0,North America +2023-11-10,3672,322,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",681.54,"{""promo"": ""12%""}",14469,0,South America +2023-04-04,3673,820,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1635.63,{},229250,1,Europe +2023-01-15,3674,470,"[""Phone""]",1844.11,"{""promo"": ""13%""}",70862,0,Asia +2023-07-16,3675,4226,"[""Charger"", ""Wireless Mouse""]",2787.88,"{""loyalty"": ""19%""}",72523,1,South America +2024-09-28,3676,5698,"[""Tablet""]",4995.58,{},180457,0,Asia +2023-02-07,3677,295,"[""Keyboard"", ""Tablet""]",3603.73,{},169545,0,Africa +2024-03-20,3678,521,"[""Monitor""]",3767.56,"{""promo"": ""29%""}",58454,1,Africa +2024-03-24,3679,7711,"[""Laptop"", ""Charger""]",1827.67,{},213118,0,North America +2024-12-05,3680,3101,"[""Keyboard"", ""Laptop""]",4873.4,"{"""": ""28%""}",97454,1,North America +2023-01-23,3681,9288,"[""Keyboard"", ""Tablet""]",3029.34,"{""loyalty"": ""24%""}",114490,1,Asia +2023-11-07,3682,1088,"[""Headphones"", ""Phone"", ""Laptop""]",4643.32,"{""loyalty"": ""25%""}",298902,1,Europe +2023-01-02,3683,5176,"[""Wireless Mouse""]",1845.78,"{"""": ""17%""}",161658,0,North America +2023-07-02,3684,4466,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1753.23,"{""seasonal"": ""8%""}",37530,0,Asia +2024-12-06,3685,7550,"[""Charger"", ""Tablet""]",128.52,"{""seasonal"": ""15%""}",134197,1,Asia +2023-12-29,3686,9897,"[""Wireless Mouse"", ""Tablet""]",2137.14,{},261106,1,South America +2024-06-06,3687,3001,"[""Charger""]",1810.54,"{""seasonal"": ""17%""}",130280,0,Asia +2024-04-02,3688,7487,"[""Keyboard"", ""Monitor""]",2978.14,"{""seasonal"": ""9%""}",143655,0,North America +2023-05-05,3689,7400,"[""Monitor"", ""Wireless Mouse""]",1265.99,{},229950,0,North America +2024-07-01,3690,524,"[""Monitor"", ""Phone""]",3093.4,"{"""": ""12%""}",299521,0,Asia +2023-11-09,3691,9382,"[""Laptop"", ""Charger"", ""Headphones""]",1504.73,"{""seasonal"": ""6%""}",200776,1,South America +2023-08-11,3692,3935,"[""Laptop""]",2293.01,"{""promo"": ""11%""}",252036,1,Asia +2023-04-26,3693,2381,"[""Charger"", ""Monitor"", ""Phone""]",3767.14,{},26896,1,Europe +2023-10-02,3694,8311,"[""Charger"", ""Laptop"", ""Monitor""]",942.62,"{""seasonal"": ""27%""}",274032,1,Europe +2024-11-10,3695,4217,"[""Keyboard"", ""Tablet"", ""Charger""]",2077.25,"{""seasonal"": ""10%""}",1177,0,Africa +2024-09-01,3696,813,"[""Wireless Mouse"", ""Keyboard""]",1975.88,{},70406,0,North America +2023-04-05,3697,8866,"[""Headphones""]",2096.12,"{""seasonal"": ""19%""}",128566,0,South America +2024-07-03,3698,4516,"[""Wireless Mouse"", ""Monitor""]",3284.5,{},91500,0,Africa +2024-06-22,3699,8967,"[""Monitor"", ""Keyboard""]",608.81,{},201258,1,South America +2023-07-15,3700,8580,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1014.08,{},19891,1,South America +2023-04-13,3701,4599,"[""Keyboard"", ""Headphones""]",2166.97,{},235886,0,Africa +2024-10-11,3702,3154,"[""Tablet"", ""Charger""]",1166.77,"{"""": ""29%""}",194960,0,Europe +2024-12-24,3703,4873,"[""Phone"", ""Headphones""]",170.71,"{""seasonal"": ""16%""}",214229,1,South America +2023-11-11,3704,7271,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1738.14,"{""loyalty"": ""12%""}",43642,1,South America +2024-01-30,3705,6699,"[""Wireless Mouse""]",3710.83,{},72580,0,South America +2023-10-06,3706,7869,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",148.97,{},245424,0,Africa +2024-09-14,3707,6890,"[""Wireless Mouse""]",3929.04,"{""loyalty"": ""19%""}",74365,0,Asia +2024-03-06,3708,6203,"[""Monitor"", ""Phone"", ""Charger""]",3043.83,"{""seasonal"": ""23%""}",252405,1,Europe +2023-09-09,3709,8271,"[""Keyboard"", ""Phone""]",1984.69,{},260514,1,South America +2024-10-01,3710,2811,"[""Phone""]",185.97,{},245998,1,Europe +2023-04-18,3711,1010,"[""Keyboard""]",2775.14,"{""promo"": ""19%""}",104827,1,Africa +2024-08-09,3712,3763,"[""Charger""]",591.96,"{""loyalty"": ""18%""}",267705,0,Asia +2023-12-26,3713,716,"[""Wireless Mouse""]",2752.2,{},52417,0,Europe +2023-06-20,3714,7607,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3237.86,"{""seasonal"": ""15%""}",144456,1,South America +2023-04-07,3715,1564,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2609.66,"{"""": ""26%""}",86256,1,South America +2024-07-07,3716,8378,"[""Phone"", ""Monitor"", ""Headphones""]",4907.33,{},106822,0,Africa +2023-09-10,3717,713,"[""Phone"", ""Charger""]",3418.7,"{""loyalty"": ""5%""}",280164,0,Europe +2023-01-26,3718,8648,"[""Wireless Mouse""]",2029.68,"{"""": ""5%""}",125884,1,South America +2024-02-22,3719,7304,"[""Keyboard"", ""Phone"", ""Charger""]",2602.25,{},154167,0,South America +2023-03-10,3720,7357,"[""Monitor"", ""Laptop"", ""Keyboard""]",2067.59,{},195846,0,Europe +2023-10-12,3721,3303,"[""Keyboard"", ""Wireless Mouse""]",99.02,{},142705,0,Africa +2024-08-05,3722,7102,"[""Monitor""]",824.37,"{""promo"": ""24%""}",58041,0,South America +2024-10-20,3723,696,"[""Wireless Mouse""]",3543.86,"{""promo"": ""29%""}",48681,0,North America +2023-11-06,3724,7116,"[""Wireless Mouse"", ""Phone""]",594.67,{},82185,0,Asia +2024-06-30,3725,2256,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",349.43,"{""promo"": ""14%""}",128325,0,South America +2023-04-09,3726,3383,"[""Tablet""]",1920.69,{},164060,1,North America +2024-11-14,3727,2554,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",738.34,{},110326,1,South America +2024-02-10,3728,7751,"[""Tablet""]",889.29,{},4401,1,North America +2024-05-15,3729,6672,"[""Laptop"", ""Headphones""]",3604.03,{},50919,0,South America +2024-05-06,3730,3826,"[""Keyboard"", ""Wireless Mouse""]",3888.15,"{"""": ""27%""}",187507,0,South America +2023-01-16,3731,8022,"[""Keyboard""]",2758.14,{},232605,1,Asia +2024-09-11,3732,7492,"[""Phone""]",1070.24,"{"""": ""17%""}",11757,1,Europe +2024-09-11,3733,5382,"[""Charger"", ""Headphones"", ""Laptop""]",1426.06,{},26505,1,Europe +2023-02-28,3734,4627,"[""Headphones"", ""Laptop"", ""Charger""]",4946.98,"{""seasonal"": ""7%""}",163826,1,North America +2024-01-20,3735,6215,"[""Phone"", ""Monitor""]",3518.54,{},272444,0,South America +2023-03-29,3736,7257,"[""Headphones""]",119.27,{},223037,0,South America +2023-12-09,3737,1199,"[""Charger""]",1359.46,{},53185,0,Africa +2023-06-26,3738,1209,"[""Headphones"", ""Monitor"", ""Keyboard""]",1098.26,{},94516,0,Europe +2023-05-01,3739,8678,"[""Charger"", ""Monitor""]",263.11,"{""seasonal"": ""18%""}",60549,1,South America +2023-01-21,3740,8284,"[""Monitor""]",2813.35,{},34926,0,North America +2023-12-16,3741,3189,"[""Monitor"", ""Keyboard"", ""Headphones""]",2929.34,{},200191,0,South America +2023-05-29,3742,7422,"[""Monitor"", ""Charger""]",4532.75,"{""loyalty"": ""16%""}",152813,0,Africa +2023-09-15,3743,8848,"[""Laptop"", ""Keyboard""]",3008.89,"{""loyalty"": ""10%""}",225016,0,Asia +2024-02-04,3744,2346,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4756.25,{},290827,1,Africa +2024-08-17,3745,1420,"[""Headphones"", ""Tablet"", ""Monitor""]",2027.15,"{""promo"": ""14%""}",278748,1,North America +2024-09-14,3746,5895,"[""Monitor"", ""Phone""]",4868.05,{},137511,0,South America +2024-06-19,3747,3643,"[""Tablet""]",3697.73,{},291457,1,Africa +2024-06-25,3748,1274,"[""Wireless Mouse"", ""Keyboard""]",298.1,"{""loyalty"": ""24%""}",197286,0,North America +2024-03-17,3749,6895,"[""Keyboard""]",4962.37,{},250864,0,South America +2023-09-11,3750,7942,"[""Laptop""]",1878.08,{},194489,0,Africa +2024-11-11,3751,4201,"[""Keyboard"", ""Monitor""]",1132.12,"{""promo"": ""27%""}",59344,0,Africa +2024-05-05,3752,5709,"[""Keyboard"", ""Charger"", ""Monitor""]",699.26,"{""seasonal"": ""22%""}",293687,0,Europe +2024-07-19,3753,4638,"[""Tablet"", ""Laptop""]",3628.11,{},279277,1,North America +2024-09-25,3754,9904,"[""Charger"", ""Phone"", ""Monitor""]",2540.78,"{""seasonal"": ""30%""}",249638,1,Africa +2023-02-09,3755,3761,"[""Headphones"", ""Charger""]",2766.37,"{""promo"": ""9%""}",90233,0,South America +2024-07-21,3756,2534,"[""Charger"", ""Keyboard"", ""Tablet""]",2696.79,"{""promo"": ""13%""}",285006,1,Europe +2024-12-17,3757,7838,"[""Keyboard""]",616.95,"{""seasonal"": ""6%""}",284639,1,Asia +2024-05-09,3758,6820,"[""Tablet"", ""Phone"", ""Headphones""]",1370.67,{},129526,0,North America +2023-08-30,3759,2762,"[""Phone""]",2002.12,{},178017,1,Europe +2024-07-03,3760,34,"[""Charger""]",3539.84,{},227574,0,Africa +2023-12-28,3761,2882,"[""Wireless Mouse""]",3942.36,{},98542,1,Asia +2024-04-08,3762,8935,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2239.2,"{""seasonal"": ""22%""}",221859,1,North America +2023-12-14,3763,7958,"[""Laptop"", ""Charger""]",848.55,{},233793,0,North America +2024-09-23,3764,2698,"[""Headphones""]",2540.52,{},171068,1,North America +2023-01-15,3765,5323,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1461.79,{},243684,1,Africa +2024-03-08,3766,4967,"[""Charger"", ""Monitor"", ""Laptop""]",954.89,"{""promo"": ""12%""}",153881,0,Europe +2024-11-20,3767,5739,"[""Keyboard"", ""Charger""]",919.73,{},124487,1,Africa +2023-05-07,3768,8103,"[""Laptop"", ""Headphones"", ""Tablet""]",492.98,"{""promo"": ""28%""}",17150,0,Europe +2023-09-16,3769,6290,"[""Charger""]",854.51,{},36620,1,South America +2024-09-14,3770,8677,"[""Keyboard"", ""Headphones""]",4533.98,{},167370,0,Europe +2023-01-05,3771,9996,"[""Charger"", ""Wireless Mouse""]",2013.0,"{""seasonal"": ""18%""}",92750,0,Africa +2023-05-22,3772,3404,"[""Phone"", ""Laptop""]",1974.77,{},11113,1,Europe +2023-06-12,3773,4446,"[""Laptop"", ""Tablet""]",4805.35,{},125851,1,South America +2024-10-02,3774,2414,"[""Laptop"", ""Charger""]",2980.74,"{"""": ""22%""}",10137,1,Africa +2023-10-26,3775,5462,"[""Monitor"", ""Phone"", ""Keyboard""]",1737.81,{},241120,0,Africa +2024-03-01,3776,5410,"[""Charger"", ""Keyboard""]",746.49,"{""promo"": ""8%""}",268413,0,North America +2024-02-17,3777,8784,"[""Charger""]",2165.22,{},227954,0,Asia +2024-02-16,3778,5712,"[""Phone""]",238.4,{},260493,0,Asia +2024-06-20,3779,6880,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3695.82,"{"""": ""24%""}",24912,0,Europe +2023-06-23,3780,3685,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4862.28,{},201418,0,Africa +2023-01-08,3781,2037,"[""Monitor"", ""Tablet"", ""Charger""]",2848.46,{},143526,1,Asia +2024-05-17,3782,4387,"[""Tablet"", ""Wireless Mouse""]",4535.95,"{""loyalty"": ""29%""}",82255,0,North America +2024-10-05,3783,1520,"[""Tablet"", ""Laptop""]",998.42,{},125807,1,North America +2024-06-21,3784,3898,"[""Monitor""]",4410.34,"{""seasonal"": ""30%""}",51646,0,Africa +2024-04-29,3785,2679,"[""Charger""]",1007.15,"{""loyalty"": ""5%""}",3714,1,North America +2024-06-11,3786,9857,"[""Monitor"", ""Tablet"", ""Laptop""]",1879.37,{},287349,0,North America +2024-04-26,3787,1137,"[""Tablet""]",3252.28,{},287752,0,South America +2024-02-02,3788,7594,"[""Tablet""]",4953.64,{},231953,1,Asia +2023-10-29,3789,3802,"[""Headphones"", ""Laptop"", ""Monitor""]",612.03,"{""loyalty"": ""27%""}",273459,1,Africa +2023-05-02,3790,8511,"[""Laptop"", ""Tablet""]",535.88,{},46644,0,Africa +2024-04-05,3791,3436,"[""Tablet"", ""Monitor""]",4475.36,"{""seasonal"": ""14%""}",169145,1,Asia +2024-12-23,3792,2076,"[""Laptop""]",382.98,"{""promo"": ""20%""}",98585,1,Africa +2023-01-16,3793,3599,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3805.78,{},59833,1,South America +2024-12-03,3794,1721,"[""Charger""]",282.04,"{"""": ""6%""}",110791,1,South America +2024-06-25,3795,7302,"[""Laptop""]",903.4,{},66530,1,Asia +2024-10-10,3796,5586,"[""Phone"", ""Headphones"", ""Laptop""]",2745.62,"{""loyalty"": ""29%""}",210905,0,Africa +2024-08-29,3797,7389,"[""Headphones"", ""Monitor"", ""Tablet""]",1092.59,{},142931,1,South America +2024-10-26,3798,8190,"[""Wireless Mouse"", ""Phone""]",3325.32,"{"""": ""12%""}",272068,0,Africa +2023-11-08,3799,1005,"[""Wireless Mouse"", ""Charger""]",1952.33,{},45164,0,South America +2023-09-21,3800,561,"[""Phone"", ""Laptop"", ""Headphones""]",3644.82,{},89717,0,South America +2024-12-26,3801,377,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1685.69,"{""seasonal"": ""24%""}",150335,0,Europe +2024-03-16,3802,4197,"[""Wireless Mouse""]",1242.02,{},90133,1,Asia +2023-12-17,3803,9999,"[""Tablet""]",3162.16,{},260163,1,Asia +2024-10-25,3804,5087,"[""Tablet""]",4008.31,{},113699,1,Europe +2024-09-20,3805,4859,"[""Keyboard""]",3976.71,"{""promo"": ""25%""}",185824,1,North America +2024-09-19,3806,6975,"[""Keyboard"", ""Monitor""]",2897.77,"{""loyalty"": ""22%""}",219746,1,South America +2023-09-19,3807,5263,"[""Phone""]",2894.27,"{""seasonal"": ""9%""}",237402,1,North America +2024-11-20,3808,8470,"[""Laptop"", ""Monitor"", ""Tablet""]",3547.98,"{""seasonal"": ""16%""}",225320,0,North America +2023-12-12,3809,6254,"[""Monitor"", ""Keyboard""]",1527.71,"{"""": ""17%""}",79036,1,Europe +2023-10-03,3810,2026,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3935.39,{},249117,0,Asia +2023-10-16,3811,3628,"[""Laptop""]",3022.62,{},149279,0,Asia +2023-07-24,3812,1771,"[""Keyboard"", ""Laptop"", ""Phone""]",3866.75,{},94941,0,North America +2024-07-22,3813,6065,"[""Tablet""]",2685.49,{},5520,0,Africa +2024-07-20,3814,5238,"[""Headphones""]",3993.2,{},265005,0,Europe +2024-07-29,3815,1528,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1464.4,{},273756,1,Africa +2023-06-27,3816,3169,"[""Wireless Mouse"", ""Laptop""]",254.43,"{""loyalty"": ""7%""}",208081,1,North America +2024-02-16,3817,2873,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3015.06,"{""seasonal"": ""8%""}",92992,1,South America +2024-10-01,3818,5077,"[""Charger"", ""Headphones"", ""Monitor""]",1345.11,"{""loyalty"": ""5%""}",232550,0,Asia +2024-05-11,3819,7292,"[""Charger"", ""Keyboard""]",4393.78,"{""loyalty"": ""9%""}",208216,0,Asia +2023-11-05,3820,6682,"[""Phone"", ""Tablet"", ""Monitor""]",4091.6,{},223428,1,Africa +2024-12-24,3821,2088,"[""Headphones"", ""Wireless Mouse""]",557.22,"{""seasonal"": ""16%""}",192322,1,Europe +2023-03-28,3822,7619,"[""Tablet"", ""Monitor"", ""Phone""]",1512.38,"{""loyalty"": ""5%""}",100411,1,South America +2023-04-06,3823,3313,"[""Headphones""]",4040.59,"{""promo"": ""8%""}",35028,1,South America +2023-07-30,3824,1395,"[""Headphones""]",1238.53,{},266187,0,North America +2024-02-18,3825,6604,"[""Wireless Mouse""]",4821.69,"{""seasonal"": ""20%""}",51750,1,South America +2023-07-26,3826,7636,"[""Tablet"", ""Monitor"", ""Laptop""]",2537.08,{},45460,0,Europe +2023-04-15,3827,4232,"[""Tablet"", ""Headphones"", ""Monitor""]",756.42,"{""loyalty"": ""29%""}",91670,0,Africa +2024-09-03,3828,8837,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1691.51,"{""seasonal"": ""22%""}",103309,0,North America +2024-02-24,3829,1888,"[""Laptop"", ""Phone"", ""Keyboard""]",3470.94,{},213456,1,Europe +2024-09-16,3830,3656,"[""Phone"", ""Laptop""]",2550.52,{},294424,1,Africa +2023-12-22,3831,1258,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4212.89,"{""promo"": ""7%""}",2859,0,Asia +2023-08-18,3832,2320,"[""Keyboard"", ""Tablet""]",3932.91,{},251320,0,Europe +2024-09-13,3833,9098,"[""Phone""]",2956.1,"{""seasonal"": ""8%""}",189851,0,South America +2024-08-05,3834,4775,"[""Laptop"", ""Monitor"", ""Keyboard""]",445.59,"{""promo"": ""20%""}",163779,1,Europe +2024-07-02,3835,2993,"[""Keyboard"", ""Charger""]",3958.63,{},120067,1,South America +2023-10-15,3836,5279,"[""Phone"", ""Tablet""]",68.12,"{""promo"": ""14%""}",26046,1,Africa +2023-12-27,3837,8149,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1789.84,"{""promo"": ""22%""}",262955,0,Asia +2024-04-26,3838,6712,"[""Laptop"", ""Tablet""]",1973.45,{},210881,1,South America +2023-10-20,3839,1906,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4385.55,{},276283,1,Asia +2023-11-08,3840,7123,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1036.98,"{""loyalty"": ""16%""}",113085,1,South America +2023-04-02,3841,6765,"[""Tablet"", ""Phone""]",3071.11,{},207147,1,South America +2024-09-28,3842,4409,"[""Keyboard"", ""Wireless Mouse""]",4882.53,{},48309,0,Europe +2024-06-14,3843,2362,"[""Laptop""]",4533.81,"{""promo"": ""20%""}",223734,1,Europe +2024-10-03,3844,1011,"[""Phone"", ""Tablet""]",1795.19,"{""seasonal"": ""8%""}",251556,1,Africa +2023-10-10,3845,786,"[""Phone"", ""Tablet""]",830.34,{},241702,1,South America +2023-02-06,3846,8796,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1456.32,"{"""": ""18%""}",102919,0,Africa +2023-04-20,3847,199,"[""Phone"", ""Keyboard"", ""Laptop""]",4479.74,{},289998,1,South America +2023-03-06,3848,172,"[""Tablet""]",2338.47,"{"""": ""16%""}",29364,0,North America +2023-03-22,3849,2207,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3239.08,"{""seasonal"": ""21%""}",175569,1,Africa +2023-02-13,3850,9721,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2949.76,{},33870,1,South America +2024-06-17,3851,1484,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3340.75,{},77225,1,North America +2023-12-06,3852,4943,"[""Monitor""]",4859.33,{},15935,0,Asia +2024-02-02,3853,8098,"[""Phone"", ""Tablet""]",4709.37,{},143332,1,North America +2023-11-22,3854,7006,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4169.46,"{""loyalty"": ""14%""}",11714,1,South America +2023-07-29,3855,8843,"[""Charger"", ""Monitor""]",2086.09,"{"""": ""15%""}",155251,1,Asia +2024-12-06,3856,7684,"[""Wireless Mouse""]",4511.63,"{""promo"": ""24%""}",268516,0,South America +2023-11-19,3857,1243,"[""Phone"", ""Headphones"", ""Laptop""]",1086.92,"{""promo"": ""7%""}",97689,0,Asia +2024-12-29,3858,503,"[""Keyboard"", ""Tablet"", ""Monitor""]",1130.34,"{""loyalty"": ""14%""}",160548,0,North America +2023-01-17,3859,1185,"[""Wireless Mouse""]",2777.72,"{""seasonal"": ""25%""}",47198,0,South America +2024-07-28,3860,3224,"[""Charger"", ""Wireless Mouse""]",4701.67,"{""seasonal"": ""28%""}",186087,0,South America +2023-01-11,3861,9777,"[""Tablet""]",1438.08,{},33606,0,Europe +2024-03-12,3862,6078,"[""Tablet"", ""Keyboard""]",1835.47,{},211388,1,Asia +2024-08-05,3863,6416,"[""Charger"", ""Laptop""]",4170.74,{},175848,0,South America +2024-04-09,3864,4254,"[""Charger""]",2126.76,{},99041,1,Europe +2023-01-17,3865,7276,"[""Keyboard""]",1027.54,"{""promo"": ""20%""}",287490,1,North America +2023-02-04,3866,9832,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1067.41,{},258133,1,North America +2023-11-25,3867,4329,"[""Laptop""]",851.82,"{"""": ""5%""}",209881,1,Asia +2023-07-12,3868,5876,"[""Headphones"", ""Keyboard"", ""Tablet""]",1038.42,{},233704,0,South America +2024-07-22,3869,6299,"[""Charger"", ""Laptop"", ""Keyboard""]",577.15,"{"""": ""29%""}",164078,1,North America +2023-08-21,3870,1051,"[""Charger""]",2615.93,"{""seasonal"": ""5%""}",184672,1,Africa +2023-12-29,3871,5657,"[""Monitor"", ""Keyboard""]",3548.34,"{""loyalty"": ""15%""}",111705,0,Africa +2024-07-12,3872,8989,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2658.2,"{"""": ""21%""}",193117,0,South America +2024-06-20,3873,3364,"[""Wireless Mouse"", ""Monitor""]",918.18,"{""promo"": ""5%""}",191760,0,North America +2024-03-27,3874,9128,"[""Wireless Mouse"", ""Phone""]",823.06,"{""loyalty"": ""5%""}",234919,0,North America +2023-02-13,3875,1466,"[""Tablet""]",3777.4,"{"""": ""28%""}",145887,1,South America +2024-04-23,3876,2614,"[""Headphones"", ""Keyboard"", ""Tablet""]",1821.15,{},253929,0,South America +2024-05-08,3877,6368,"[""Laptop""]",802.45,{},252059,0,Europe +2023-10-05,3878,5614,"[""Wireless Mouse""]",1800.76,"{""seasonal"": ""10%""}",295867,0,Asia +2023-10-19,3879,9490,"[""Keyboard""]",3975.4,"{"""": ""14%""}",150906,0,Africa +2024-01-24,3880,8993,"[""Wireless Mouse"", ""Monitor""]",3311.14,{},68906,1,South America +2023-10-12,3881,7425,"[""Charger""]",4564.94,{},293644,0,North America +2023-06-27,3882,1537,"[""Headphones"", ""Monitor""]",1455.45,"{""seasonal"": ""13%""}",24185,1,Asia +2023-11-20,3883,3305,"[""Phone""]",3946.85,"{"""": ""12%""}",276976,1,South America +2023-10-10,3884,3977,"[""Charger"", ""Phone"", ""Laptop""]",4673.59,{},59645,0,Asia +2024-06-02,3885,8964,"[""Wireless Mouse""]",3022.63,{},98559,0,Asia +2024-09-02,3886,2391,"[""Charger"", ""Monitor""]",2850.37,"{""promo"": ""30%""}",132437,1,South America +2024-02-14,3887,1645,"[""Laptop""]",2702.83,"{"""": ""14%""}",251696,0,Asia +2023-03-28,3888,6815,"[""Laptop""]",442.04,{},260311,0,Asia +2024-04-21,3889,1753,"[""Laptop"", ""Tablet"", ""Headphones""]",3941.09,"{""loyalty"": ""28%""}",89359,0,Europe +2023-03-20,3890,3209,"[""Charger"", ""Phone"", ""Headphones""]",4939.9,{},16657,0,Africa +2024-07-02,3891,974,"[""Phone""]",2096.76,{},226938,0,Africa +2023-06-05,3892,2017,"[""Phone""]",2451.54,{},289535,0,Asia +2024-12-31,3893,9027,"[""Headphones"", ""Tablet"", ""Monitor""]",1740.12,"{""promo"": ""25%""}",226184,0,North America +2023-06-11,3894,5261,"[""Wireless Mouse""]",1208.73,{},291084,1,Asia +2024-09-03,3895,370,"[""Monitor"", ""Tablet"", ""Laptop""]",541.8,{},273106,0,Africa +2024-01-13,3896,9694,"[""Monitor"", ""Phone""]",1130.64,{},30624,1,Asia +2023-03-31,3897,7560,"[""Phone"", ""Headphones"", ""Laptop""]",522.27,"{"""": ""25%""}",138883,1,North America +2024-10-21,3898,112,"[""Tablet"", ""Headphones"", ""Phone""]",207.95,"{""seasonal"": ""21%""}",189484,0,Europe +2024-05-14,3899,1742,"[""Monitor""]",1808.58,{},29015,0,North America +2023-08-22,3900,8627,"[""Laptop""]",2276.22,{},230977,0,North America +2023-09-20,3901,6938,"[""Tablet"", ""Keyboard""]",2565.06,"{"""": ""6%""}",11158,1,Europe +2023-03-21,3902,6147,"[""Wireless Mouse"", ""Keyboard""]",391.24,{},17617,0,South America +2023-10-25,3903,5041,"[""Tablet"", ""Headphones"", ""Laptop""]",3213.77,"{""seasonal"": ""25%""}",158165,0,South America +2023-12-14,3904,2132,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",476.93,{},268278,1,South America +2024-06-14,3905,1468,"[""Phone""]",1500.51,{},42292,0,Asia +2024-11-24,3906,3903,"[""Keyboard"", ""Phone""]",895.29,"{""seasonal"": ""16%""}",227931,0,North America +2024-04-02,3907,1708,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4948.16,{},206890,1,Asia +2024-04-08,3908,5597,"[""Monitor"", ""Charger""]",845.98,"{""seasonal"": ""9%""}",218118,0,North America +2024-01-13,3909,2962,"[""Headphones"", ""Laptop""]",1086.18,"{""promo"": ""22%""}",131865,1,North America +2023-05-11,3910,6207,"[""Tablet"", ""Headphones""]",510.44,"{""promo"": ""23%""}",121094,1,Asia +2023-10-18,3911,7657,"[""Headphones""]",1350.96,{},296047,0,Europe +2024-09-19,3912,3676,"[""Wireless Mouse""]",1880.6,"{""promo"": ""13%""}",237904,1,Europe +2024-06-24,3913,547,"[""Keyboard"", ""Tablet""]",265.23,{},9308,1,Europe +2023-02-02,3914,5113,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1270.31,{},100782,0,South America +2024-04-07,3915,7540,"[""Tablet"", ""Monitor""]",1197.04,{},48673,1,Asia +2024-06-30,3916,6504,"[""Phone""]",2181.52,{},98242,1,North America +2023-10-07,3917,4555,"[""Charger"", ""Headphones""]",2319.61,"{""seasonal"": ""23%""}",229646,1,Asia +2024-09-24,3918,5538,"[""Monitor"", ""Laptop"", ""Keyboard""]",3850.45,"{""promo"": ""9%""}",134846,1,Asia +2024-02-17,3919,4645,"[""Charger"", ""Monitor"", ""Laptop""]",3225.21,"{""seasonal"": ""24%""}",88361,1,North America +2023-01-01,3920,1284,"[""Monitor""]",913.5,{},121116,0,North America +2024-01-08,3921,8879,"[""Tablet""]",1835.17,"{"""": ""8%""}",62513,0,North America +2023-06-27,3922,1509,"[""Laptop"", ""Monitor""]",386.2,"{""seasonal"": ""30%""}",51362,0,North America +2023-10-16,3923,7314,"[""Laptop"", ""Headphones""]",3843.69,"{""promo"": ""23%""}",20484,1,Asia +2023-01-17,3924,2123,"[""Tablet"", ""Monitor"", ""Laptop""]",3302.38,{},296845,0,Asia +2024-01-26,3925,6906,"[""Monitor"", ""Charger""]",3728.94,"{"""": ""14%""}",130983,0,South America +2024-03-08,3926,7161,"[""Charger""]",609.55,{},96494,0,Europe +2023-01-10,3927,2683,"[""Wireless Mouse"", ""Phone""]",4336.79,{},137073,0,North America +2023-12-21,3928,3852,"[""Tablet""]",1772.26,"{""loyalty"": ""28%""}",33265,1,North America +2023-08-26,3929,3232,"[""Headphones"", ""Tablet"", ""Monitor""]",2414.13,{},179519,1,Europe +2023-06-12,3930,1186,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",905.95,"{""promo"": ""8%""}",95646,0,North America +2024-09-09,3931,5671,"[""Tablet"", ""Wireless Mouse""]",3809.39,{},191929,1,Africa +2024-02-29,3932,1633,"[""Charger"", ""Laptop"", ""Monitor""]",1740.67,"{""loyalty"": ""27%""}",148762,1,Africa +2023-12-24,3933,762,"[""Charger""]",3328.01,{},217813,1,Asia +2024-12-14,3934,696,"[""Phone"", ""Keyboard"", ""Laptop""]",656.29,"{""seasonal"": ""25%""}",165188,0,Africa +2024-06-01,3935,4798,"[""Monitor"", ""Charger"", ""Phone""]",1596.56,"{""seasonal"": ""13%""}",254063,1,Africa +2023-05-09,3936,8265,"[""Monitor"", ""Charger""]",1963.64,"{""promo"": ""25%""}",291871,1,Africa +2024-03-03,3937,4542,"[""Laptop"", ""Monitor""]",1387.35,"{"""": ""17%""}",135286,0,South America +2024-09-16,3938,3733,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",112.58,"{""loyalty"": ""7%""}",27084,0,Asia +2023-04-15,3939,2907,"[""Charger"", ""Phone"", ""Keyboard""]",399.61,"{"""": ""20%""}",211608,0,Asia +2023-04-09,3940,4000,"[""Tablet"", ""Charger"", ""Keyboard""]",1272.25,"{""promo"": ""30%""}",95834,1,North America +2024-06-26,3941,5793,"[""Phone"", ""Tablet""]",961.94,{},115048,1,Europe +2023-07-14,3942,5901,"[""Charger"", ""Headphones""]",1330.55,{},204431,0,Africa +2023-05-20,3943,9929,"[""Charger""]",128.04,"{""seasonal"": ""30%""}",78538,0,Africa +2024-06-09,3944,5189,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4596.42,"{""promo"": ""22%""}",122664,0,Europe +2024-01-31,3945,6064,"[""Headphones"", ""Keyboard"", ""Charger""]",4143.95,{},211665,1,North America +2023-08-24,3946,1705,"[""Phone"", ""Laptop""]",4605.82,"{""promo"": ""14%""}",182287,1,North America +2024-11-09,3947,9812,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",557.55,"{"""": ""10%""}",95957,0,South America +2024-09-26,3948,3224,"[""Monitor"", ""Keyboard""]",3449.58,{},259396,0,Africa +2024-03-06,3949,4447,"[""Tablet""]",3335.99,"{"""": ""9%""}",85016,1,Europe +2023-05-11,3950,4085,"[""Tablet""]",2286.51,"{""seasonal"": ""14%""}",119249,1,Europe +2023-11-07,3951,4337,"[""Headphones"", ""Phone""]",4329.99,"{""seasonal"": ""21%""}",152477,1,North America +2024-08-27,3952,9097,"[""Headphones"", ""Charger"", ""Monitor""]",375.19,{},211436,0,South America +2023-03-04,3953,3381,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1299.61,{},215148,0,North America +2023-02-02,3954,918,"[""Charger""]",3777.53,{},15431,0,Africa +2023-01-27,3955,2445,"[""Wireless Mouse"", ""Headphones""]",4375.33,{},112020,1,South America +2023-02-22,3956,1460,"[""Tablet""]",3641.36,"{""loyalty"": ""13%""}",178813,0,North America +2024-02-15,3957,2970,"[""Phone""]",2837.21,{},155567,1,South America +2023-05-04,3958,2080,"[""Tablet"", ""Monitor""]",4444.38,{},211139,1,Asia +2024-06-18,3959,1273,"[""Keyboard"", ""Laptop"", ""Phone""]",1842.93,{},69346,1,Africa +2023-06-02,3960,9775,"[""Wireless Mouse"", ""Charger""]",467.86,"{""seasonal"": ""14%""}",252749,1,North America +2023-10-06,3961,5511,"[""Laptop""]",398.91,{},231071,0,North America +2023-11-19,3962,8173,"[""Monitor"", ""Phone""]",1083.09,{},211676,1,South America +2024-06-03,3963,3099,"[""Charger"", ""Phone"", ""Headphones""]",4546.54,{},111724,0,Europe +2023-12-05,3964,7281,"[""Monitor"", ""Phone"", ""Keyboard""]",376.63,"{"""": ""24%""}",86508,0,South America +2024-09-22,3965,1817,"[""Keyboard"", ""Tablet"", ""Headphones""]",4567.97,"{"""": ""11%""}",262210,0,South America +2024-11-27,3966,2125,"[""Monitor"", ""Headphones""]",1107.65,{},269259,1,Africa +2023-02-04,3967,5568,"[""Laptop"", ""Wireless Mouse""]",1922.71,{},196513,1,Europe +2023-12-09,3968,1273,"[""Keyboard""]",3703.88,{},277109,1,Europe +2024-09-29,3969,6115,"[""Laptop"", ""Charger""]",4641.08,{},141708,1,Africa +2023-08-16,3970,9465,"[""Monitor"", ""Laptop""]",2048.49,"{""seasonal"": ""21%""}",13914,1,South America +2024-09-28,3971,5251,"[""Charger""]",241.15,{},209909,0,Asia +2024-11-21,3972,3558,"[""Phone""]",3109.56,{},117126,1,Asia +2024-09-03,3973,1567,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3745.27,"{""seasonal"": ""14%""}",252969,1,Europe +2023-07-09,3974,2598,"[""Monitor"", ""Headphones""]",2617.83,"{"""": ""5%""}",43476,0,Africa +2024-09-24,3975,5001,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1618.81,"{""seasonal"": ""5%""}",240793,1,North America +2024-01-19,3976,8,"[""Keyboard"", ""Phone""]",3449.25,"{""promo"": ""6%""}",199226,0,Asia +2024-03-07,3977,1763,"[""Laptop"", ""Charger""]",4279.44,"{"""": ""7%""}",188424,1,North America +2024-05-27,3978,4614,"[""Keyboard""]",118.95,{},203068,1,Europe +2024-09-03,3979,4359,"[""Laptop""]",1023.45,"{"""": ""14%""}",279380,1,Asia +2024-04-25,3980,1931,"[""Tablet"", ""Monitor""]",2217.75,{},155168,0,Africa +2024-09-04,3981,514,"[""Tablet"", ""Charger"", ""Headphones""]",2064.25,{},291553,1,Asia +2023-11-01,3982,8841,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2798.37,{},78813,1,North America +2024-12-04,3983,7730,"[""Keyboard""]",2042.25,{},203136,1,Europe +2024-11-01,3984,2083,"[""Charger""]",1506.08,"{""seasonal"": ""29%""}",187038,0,South America +2024-11-17,3985,1673,"[""Monitor"", ""Tablet""]",4023.26,{},265151,0,Africa +2024-10-26,3986,914,"[""Headphones"", ""Tablet""]",768.06,{},242284,1,North America +2024-09-12,3987,9627,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",797.27,"{""loyalty"": ""23%""}",71059,1,North America +2023-06-12,3988,895,"[""Charger""]",4902.29,{},124632,0,Africa +2024-12-11,3989,5506,"[""Laptop""]",2545.09,{},54460,1,North America +2024-10-13,3990,4185,"[""Headphones""]",438.98,{},181059,1,North America +2023-06-16,3991,791,"[""Phone"", ""Keyboard"", ""Monitor""]",3553.61,"{""promo"": ""16%""}",27044,1,Africa +2023-08-23,3992,4217,"[""Keyboard"", ""Charger""]",1517.91,"{""loyalty"": ""26%""}",297017,0,Europe +2024-04-15,3993,8026,"[""Headphones""]",1645.68,"{"""": ""9%""}",293979,0,South America +2024-12-03,3994,3883,"[""Wireless Mouse""]",574.21,{},21136,0,Africa +2024-10-14,3995,2303,"[""Phone"", ""Charger""]",4274.86,{},271453,0,South America +2023-01-07,3996,8095,"[""Laptop"", ""Monitor""]",369.06,"{""loyalty"": ""12%""}",186213,1,North America +2023-12-02,3997,533,"[""Keyboard""]",1474.06,"{""seasonal"": ""9%""}",15024,1,Africa +2023-10-28,3998,2317,"[""Laptop"", ""Keyboard"", ""Charger""]",4597.06,"{""loyalty"": ""22%""}",222274,1,North America +2024-01-09,3999,4123,"[""Wireless Mouse""]",4523.64,"{""loyalty"": ""17%""}",192751,1,Europe +2023-05-22,4000,6628,"[""Wireless Mouse""]",208.01,"{""seasonal"": ""9%""}",54019,1,Europe +2023-04-10,4001,2851,"[""Laptop"", ""Tablet""]",3052.87,"{""loyalty"": ""11%""}",52110,0,Europe +2023-10-21,4002,5791,"[""Laptop""]",997.65,{},80235,1,North America +2023-10-10,4003,3376,"[""Headphones"", ""Charger""]",4759.29,"{""seasonal"": ""13%""}",277927,1,Europe +2023-02-12,4004,5666,"[""Laptop"", ""Monitor"", ""Phone""]",2053.87,{},67414,1,South America +2023-11-04,4005,1028,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4926.86,"{""promo"": ""15%""}",242966,1,North America +2023-03-27,4006,6022,"[""Tablet"", ""Laptop""]",2458.52,"{"""": ""19%""}",90299,0,Europe +2023-10-25,4007,5261,"[""Charger"", ""Tablet""]",4829.88,"{""loyalty"": ""22%""}",96659,1,Europe +2024-09-20,4008,1315,"[""Headphones""]",1479.24,{},238363,1,Asia +2023-06-25,4009,7877,"[""Monitor"", ""Tablet"", ""Phone""]",2959.46,{},12259,0,Europe +2023-01-03,4010,163,"[""Tablet""]",2316.0,"{"""": ""7%""}",267179,0,Europe +2024-12-10,4011,7775,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2922.87,{},17044,1,South America +2024-04-19,4012,7575,"[""Headphones"", ""Tablet"", ""Keyboard""]",3366.32,"{""seasonal"": ""30%""}",26195,0,Asia +2023-09-28,4013,1307,"[""Phone"", ""Keyboard"", ""Laptop""]",692.37,"{"""": ""26%""}",112866,1,North America +2024-10-29,4014,675,"[""Charger"", ""Phone""]",3184.2,"{""loyalty"": ""30%""}",36844,0,Africa +2024-06-15,4015,6680,"[""Phone"", ""Tablet"", ""Keyboard""]",1897.0,{},70179,0,Africa +2023-01-23,4016,7178,"[""Tablet"", ""Laptop""]",1681.66,"{""loyalty"": ""30%""}",64970,1,North America +2024-06-04,4017,2150,"[""Headphones"", ""Wireless Mouse""]",2647.64,{},238535,1,Asia +2023-04-17,4018,314,"[""Wireless Mouse"", ""Charger""]",1546.67,"{""seasonal"": ""30%""}",184623,0,Europe +2023-11-25,4019,7592,"[""Keyboard"", ""Laptop""]",2057.85,{},231036,0,South America +2024-03-02,4020,426,"[""Wireless Mouse"", ""Headphones""]",3151.8,"{""seasonal"": ""29%""}",288065,1,North America +2024-05-31,4021,7344,"[""Phone""]",1933.59,{},88401,1,Africa +2023-08-21,4022,157,"[""Phone"", ""Monitor"", ""Charger""]",1447.41,"{""loyalty"": ""26%""}",165651,1,North America +2023-01-10,4023,8428,"[""Keyboard"", ""Charger""]",1010.52,{},48698,1,Africa +2024-12-21,4024,1804,"[""Headphones"", ""Monitor""]",4150.63,"{"""": ""30%""}",272982,0,Europe +2024-10-14,4025,2276,"[""Keyboard"", ""Headphones""]",2685.25,{},171015,0,North America +2023-09-11,4026,5940,"[""Phone"", ""Tablet"", ""Keyboard""]",2004.93,"{""promo"": ""8%""}",95988,0,Europe +2023-10-24,4027,3102,"[""Charger""]",2159.79,"{"""": ""5%""}",17349,0,Europe +2024-09-25,4028,5135,"[""Phone"", ""Keyboard""]",3141.88,{},47487,0,Asia +2024-04-01,4029,6825,"[""Phone"", ""Keyboard""]",1376.71,{},283101,0,Asia +2023-09-25,4030,8051,"[""Phone""]",1095.75,"{""loyalty"": ""26%""}",138227,1,South America +2024-11-02,4031,2752,"[""Phone""]",354.76,"{"""": ""6%""}",199818,0,Europe +2024-03-11,4032,9855,"[""Wireless Mouse""]",4913.52,{},104984,0,Africa +2024-09-01,4033,8157,"[""Laptop"", ""Charger""]",1532.09,"{"""": ""22%""}",168158,1,Asia +2023-02-01,4034,3730,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1166.32,"{"""": ""6%""}",260621,1,Asia +2024-05-10,4035,2905,"[""Tablet"", ""Monitor""]",2307.05,"{"""": ""23%""}",266937,0,North America +2023-03-18,4036,4401,"[""Keyboard"", ""Phone""]",3429.1,"{""loyalty"": ""5%""}",185276,0,Europe +2024-02-18,4037,6168,"[""Charger"", ""Keyboard"", ""Headphones""]",640.68,"{""loyalty"": ""6%""}",91408,0,Asia +2024-01-28,4038,3467,"[""Wireless Mouse""]",2791.56,{},215472,0,North America +2024-07-31,4039,6082,"[""Headphones"", ""Keyboard""]",4593.47,"{"""": ""20%""}",208738,0,South America +2024-07-26,4040,6384,"[""Headphones"", ""Monitor"", ""Phone""]",876.96,{},180299,0,North America +2024-07-16,4041,691,"[""Monitor""]",1756.65,{},299679,1,Africa +2024-02-01,4042,3544,"[""Headphones""]",224.3,"{""loyalty"": ""9%""}",82195,0,South America +2023-07-18,4043,124,"[""Phone"", ""Laptop"", ""Tablet""]",2934.4,"{""promo"": ""13%""}",298257,0,Asia +2023-07-24,4044,5157,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4315.83,"{""promo"": ""25%""}",228947,0,South America +2023-04-07,4045,7426,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3026.89,{},29007,0,Europe +2024-10-11,4046,2019,"[""Laptop"", ""Monitor"", ""Tablet""]",4707.5,{},110698,1,North America +2023-11-29,4047,414,"[""Tablet"", ""Keyboard""]",3790.52,"{""seasonal"": ""6%""}",297722,1,North America +2023-09-03,4048,7134,"[""Keyboard""]",1583.57,"{"""": ""7%""}",146849,1,North America +2024-08-02,4049,4669,"[""Charger""]",563.58,{},86120,0,South America +2023-04-09,4050,3876,"[""Phone"", ""Headphones""]",2146.93,{},127057,0,Europe +2024-03-04,4051,3497,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",471.11,"{""seasonal"": ""13%""}",84059,0,Africa +2023-08-08,4052,6415,"[""Charger""]",3740.9,{},189635,1,North America +2023-09-26,4053,4928,"[""Headphones"", ""Monitor""]",3715.9,"{""promo"": ""26%""}",292673,1,Africa +2024-09-15,4054,9360,"[""Phone"", ""Charger""]",2128.94,{},283488,0,Europe +2023-11-19,4055,1468,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1323.23,"{""promo"": ""9%""}",56951,0,South America +2024-05-05,4056,3940,"[""Wireless Mouse"", ""Monitor""]",2627.33,"{"""": ""6%""}",141714,0,Asia +2024-09-16,4057,4369,"[""Charger""]",3546.72,"{""promo"": ""16%""}",78216,0,North America +2024-06-02,4058,3948,"[""Phone""]",2764.69,{},88347,0,Europe +2024-05-04,4059,4231,"[""Phone"", ""Tablet"", ""Keyboard""]",1876.23,"{"""": ""23%""}",131673,1,Europe +2024-01-11,4060,5683,"[""Phone""]",3637.83,{},178632,1,Asia +2023-11-27,4061,4351,"[""Tablet""]",1977.42,"{""seasonal"": ""27%""}",199982,0,Africa +2023-02-20,4062,6133,"[""Wireless Mouse"", ""Charger""]",918.64,"{"""": ""10%""}",34266,1,Africa +2024-09-28,4063,2615,"[""Wireless Mouse"", ""Phone""]",4844.59,"{""loyalty"": ""12%""}",248186,1,Asia +2023-08-01,4064,3775,"[""Charger"", ""Laptop""]",4001.29,"{"""": ""11%""}",235377,1,Africa +2023-05-01,4065,4382,"[""Wireless Mouse"", ""Monitor""]",2640.84,"{"""": ""14%""}",227069,0,Africa +2024-04-14,4066,6456,"[""Tablet""]",1902.08,"{""promo"": ""19%""}",126943,0,Europe +2024-05-24,4067,6473,"[""Wireless Mouse""]",1192.24,{},228368,1,North America +2024-08-06,4068,5907,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2980.19,{},61397,0,North America +2023-12-09,4069,4577,"[""Keyboard""]",4017.08,"{""seasonal"": ""17%""}",14170,0,South America +2023-05-19,4070,9058,"[""Tablet"", ""Charger""]",4222.91,{},257877,0,Asia +2024-12-26,4071,4777,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2297.22,"{"""": ""17%""}",153408,0,Africa +2024-11-12,4072,891,"[""Monitor"", ""Keyboard""]",2500.76,"{""loyalty"": ""16%""}",80169,0,Europe +2024-03-25,4073,4886,"[""Headphones"", ""Monitor""]",1173.22,"{""promo"": ""19%""}",106994,0,Asia +2023-06-10,4074,7107,"[""Wireless Mouse""]",1333.43,"{""seasonal"": ""23%""}",29321,1,South America +2023-07-04,4075,4981,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2727.12,"{"""": ""27%""}",108502,1,Africa +2024-07-04,4076,3161,"[""Charger""]",4361.98,"{""loyalty"": ""24%""}",272947,1,North America +2024-06-19,4077,6689,"[""Monitor"", ""Keyboard""]",4467.94,{},267382,0,South America +2023-07-08,4078,303,"[""Headphones"", ""Monitor"", ""Laptop""]",734.57,{},207098,0,Europe +2024-01-26,4079,6819,"[""Charger"", ""Laptop""]",3641.18,{},283585,0,Asia +2023-09-03,4080,3052,"[""Headphones""]",714.1,{},241414,1,North America +2023-12-08,4081,9707,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",117.04,"{""promo"": ""5%""}",133456,1,South America +2023-12-30,4082,598,"[""Tablet"", ""Phone""]",1076.96,{},47046,0,South America +2023-10-02,4083,7285,"[""Headphones"", ""Laptop"", ""Phone""]",2603.44,{},49931,1,Europe +2024-05-30,4084,3970,"[""Tablet""]",2510.29,"{""promo"": ""16%""}",173178,0,Europe +2023-05-09,4085,2819,"[""Phone"", ""Laptop""]",3814.99,{},177753,0,South America +2023-02-06,4086,9445,"[""Headphones""]",3945.87,{},70025,0,Europe +2023-05-05,4087,5664,"[""Phone"", ""Headphones""]",1006.55,"{""loyalty"": ""16%""}",42029,1,Africa +2023-07-04,4088,8362,"[""Wireless Mouse"", ""Phone""]",2463.69,{},1553,1,Africa +2023-08-18,4089,1094,"[""Laptop"", ""Charger"", ""Tablet""]",2426.5,{},290873,1,Europe +2023-01-20,4090,6398,"[""Headphones"", ""Monitor"", ""Keyboard""]",4481.39,{},272758,1,Europe +2023-10-13,4091,6074,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",632.25,{},29258,1,North America +2023-01-11,4092,6424,"[""Laptop""]",3059.48,{},259533,0,Asia +2023-03-30,4093,3603,"[""Monitor"", ""Phone"", ""Laptop""]",448.06,{},268881,1,Asia +2023-10-15,4094,7283,"[""Headphones""]",1360.74,"{"""": ""24%""}",79046,0,Asia +2023-11-14,4095,2456,"[""Phone"", ""Keyboard""]",4500.83,{},159758,0,North America +2023-10-03,4096,8647,"[""Tablet"", ""Monitor"", ""Laptop""]",4596.31,{},250304,0,Asia +2024-08-22,4097,4240,"[""Wireless Mouse"", ""Charger""]",963.65,{},152662,0,Africa +2023-12-01,4098,9679,"[""Tablet"", ""Keyboard""]",1974.47,"{"""": ""23%""}",79363,1,Africa +2023-06-25,4099,6726,"[""Phone"", ""Monitor""]",816.01,"{""loyalty"": ""7%""}",226394,0,Europe +2023-01-08,4100,2100,"[""Headphones"", ""Wireless Mouse""]",3027.63,{},273965,0,Asia +2023-09-12,4101,3906,"[""Laptop"", ""Charger""]",3076.73,{},139375,1,North America +2023-01-17,4102,8534,"[""Phone"", ""Tablet""]",1086.11,{},118882,1,Africa +2023-08-18,4103,4832,"[""Phone""]",2726.13,{},36103,0,North America +2024-01-21,4104,7893,"[""Laptop""]",1765.97,{},203972,0,Asia +2023-03-19,4105,7953,"[""Wireless Mouse""]",3456.91,{},122232,1,South America +2023-05-08,4106,20,"[""Keyboard""]",1406.26,"{""seasonal"": ""16%""}",106942,1,South America +2024-12-25,4107,4002,"[""Phone""]",3678.66,"{""promo"": ""11%""}",79668,0,North America +2024-02-18,4108,1541,"[""Tablet""]",1740.54,{},197036,1,Asia +2023-10-14,4109,4495,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4343.84,"{""promo"": ""20%""}",77254,1,South America +2023-10-17,4110,3613,"[""Wireless Mouse"", ""Monitor""]",2424.64,"{""loyalty"": ""10%""}",71788,1,Africa +2024-03-13,4111,969,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3181.62,{},212920,1,Africa +2024-03-07,4112,1960,"[""Headphones"", ""Laptop"", ""Tablet""]",931.53,"{""loyalty"": ""28%""}",153885,1,Europe +2024-04-22,4113,8111,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3637.07,{},173526,1,Africa +2024-02-16,4114,9709,"[""Keyboard"", ""Charger"", ""Tablet""]",856.47,"{"""": ""24%""}",167204,1,Africa +2024-08-17,4115,2419,"[""Tablet""]",522.71,{},31095,1,South America +2024-02-20,4116,2092,"[""Charger"", ""Wireless Mouse""]",2166.94,"{""promo"": ""19%""}",75411,1,Europe +2024-11-04,4117,2569,"[""Headphones"", ""Phone"", ""Laptop""]",219.07,"{""loyalty"": ""12%""}",53915,0,South America +2023-08-25,4118,3516,"[""Charger"", ""Keyboard""]",1684.71,{},220712,1,North America +2023-12-22,4119,4751,"[""Phone"", ""Laptop"", ""Monitor""]",2712.88,"{""seasonal"": ""14%""}",173290,0,Africa +2023-05-02,4120,7712,"[""Charger""]",4900.11,"{""seasonal"": ""28%""}",143443,0,Europe +2024-02-04,4121,6652,"[""Wireless Mouse""]",2718.5,{},106279,1,Europe +2024-08-23,4122,7107,"[""Laptop""]",3211.07,"{"""": ""12%""}",163656,1,Asia +2023-10-20,4123,8490,"[""Headphones""]",513.9,"{""loyalty"": ""6%""}",132938,0,North America +2023-01-13,4124,2272,"[""Charger"", ""Monitor"", ""Tablet""]",1110.04,"{"""": ""11%""}",281885,0,South America +2024-08-17,4125,6583,"[""Monitor"", ""Keyboard"", ""Phone""]",3754.5,"{""seasonal"": ""24%""}",123902,0,South America +2024-12-30,4126,9835,"[""Monitor"", ""Laptop""]",575.99,"{"""": ""26%""}",35939,0,North America +2024-12-06,4127,9355,"[""Wireless Mouse""]",526.38,{},167613,1,Africa +2023-11-25,4128,5162,"[""Charger"", ""Wireless Mouse""]",1372.28,{},270690,0,Asia +2024-05-17,4129,6812,"[""Charger""]",3644.65,{},78561,0,Europe +2023-05-22,4130,295,"[""Charger"", ""Keyboard"", ""Laptop""]",4811.17,"{""promo"": ""14%""}",235690,1,Europe +2023-01-23,4131,1232,"[""Tablet"", ""Monitor""]",4473.0,{},288468,1,North America +2023-09-22,4132,7585,"[""Keyboard""]",4910.35,"{""loyalty"": ""16%""}",287581,1,Asia +2024-12-11,4133,2261,"[""Headphones""]",375.96,"{""seasonal"": ""27%""}",58867,0,Africa +2024-08-24,4134,7148,"[""Charger""]",4800.25,"{""promo"": ""17%""}",265582,0,Africa +2024-01-22,4135,7364,"[""Keyboard"", ""Tablet"", ""Charger""]",988.27,{},154602,1,South America +2023-12-21,4136,2816,"[""Phone"", ""Laptop"", ""Monitor""]",1217.16,{},32572,0,North America +2024-05-09,4137,1146,"[""Phone"", ""Monitor""]",3366.37,"{""promo"": ""15%""}",280266,1,Africa +2023-04-11,4138,3325,"[""Tablet"", ""Wireless Mouse""]",888.79,"{"""": ""12%""}",111534,1,Asia +2024-02-14,4139,7170,"[""Charger""]",3746.02,"{""promo"": ""22%""}",164692,1,Africa +2024-09-02,4140,8063,"[""Laptop"", ""Keyboard""]",758.17,"{""loyalty"": ""20%""}",67147,1,South America +2023-02-20,4141,4914,"[""Laptop"", ""Tablet"", ""Phone""]",2376.42,"{""loyalty"": ""28%""}",22127,0,Europe +2023-09-27,4142,5670,"[""Keyboard"", ""Tablet"", ""Laptop""]",546.55,"{"""": ""24%""}",243063,0,Europe +2024-01-19,4143,7873,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",980.0,{},277593,0,South America +2024-08-08,4144,571,"[""Laptop"", ""Tablet""]",1093.92,{},193681,0,Europe +2024-12-13,4145,9966,"[""Keyboard"", ""Wireless Mouse""]",154.92,{},261605,1,Africa +2023-07-21,4146,1079,"[""Laptop"", ""Monitor""]",4441.44,"{""seasonal"": ""15%""}",10360,1,South America +2024-07-07,4147,1497,"[""Keyboard"", ""Phone""]",996.34,"{"""": ""27%""}",180697,0,North America +2024-08-24,4148,9554,"[""Charger"", ""Headphones""]",677.11,{},171209,1,South America +2023-08-12,4149,847,"[""Laptop"", ""Charger""]",295.98,{},215271,1,Africa +2024-02-29,4150,4790,"[""Charger"", ""Tablet"", ""Phone""]",2110.2,"{"""": ""21%""}",119444,1,Africa +2023-12-26,4151,8503,"[""Phone""]",903.27,{},262129,1,Europe +2023-03-10,4152,2349,"[""Headphones"", ""Laptop""]",1675.49,{},12305,1,North America +2024-06-01,4153,8048,"[""Wireless Mouse""]",702.33,"{"""": ""30%""}",227822,1,North America +2023-05-13,4154,7878,"[""Monitor"", ""Wireless Mouse""]",892.44,{},172719,1,Europe +2024-08-14,4155,6455,"[""Phone"", ""Keyboard""]",3615.94,"{"""": ""7%""}",15788,1,Europe +2023-03-25,4156,706,"[""Monitor"", ""Charger"", ""Laptop""]",4137.63,"{""loyalty"": ""30%""}",57718,0,Europe +2023-06-19,4157,3092,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",195.84,{},181828,1,Africa +2023-04-02,4158,4329,"[""Phone"", ""Laptop"", ""Charger""]",4089.74,"{""promo"": ""18%""}",146895,1,Europe +2023-10-26,4159,985,"[""Phone"", ""Keyboard""]",967.25,"{""promo"": ""17%""}",233144,0,Europe +2023-12-21,4160,6838,"[""Keyboard"", ""Monitor""]",703.48,{},226073,1,Asia +2024-12-08,4161,6988,"[""Phone"", ""Charger"", ""Laptop""]",3449.66,{},244560,0,North America +2023-12-14,4162,6191,"[""Laptop""]",2710.39,"{""seasonal"": ""17%""}",82797,1,North America +2024-06-17,4163,5294,"[""Monitor""]",4166.14,"{""loyalty"": ""19%""}",46912,0,Africa +2023-05-17,4164,9365,"[""Keyboard"", ""Headphones""]",4332.65,{},131305,0,Asia +2024-02-01,4165,3967,"[""Tablet"", ""Keyboard""]",514.19,{},235835,1,North America +2024-05-23,4166,3525,"[""Headphones"", ""Tablet"", ""Monitor""]",2461.71,"{"""": ""7%""}",232473,1,Africa +2024-04-02,4167,4412,"[""Monitor""]",4525.59,"{"""": ""14%""}",294412,1,North America +2023-05-12,4168,9913,"[""Headphones"", ""Monitor""]",1496.0,"{""promo"": ""11%""}",230499,0,North America +2024-03-26,4169,4294,"[""Laptop"", ""Headphones"", ""Charger""]",320.41,{},91827,1,Asia +2024-03-07,4170,9221,"[""Laptop"", ""Charger""]",2237.16,{},274531,0,Europe +2023-05-11,4171,2834,"[""Laptop""]",4301.83,"{"""": ""8%""}",259493,1,Europe +2024-09-24,4172,3350,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2527.69,"{"""": ""11%""}",39828,0,Asia +2023-10-18,4173,4888,"[""Keyboard""]",1963.34,{},133084,0,Africa +2024-04-26,4174,1500,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3269.4,{},10454,1,Europe +2023-08-02,4175,2289,"[""Wireless Mouse""]",1901.31,"{""seasonal"": ""16%""}",252731,1,Europe +2024-07-27,4176,8910,"[""Charger"", ""Phone"", ""Laptop""]",2635.61,{},291532,0,Europe +2024-08-06,4177,4319,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1632.27,{},165016,0,Asia +2024-02-25,4178,3839,"[""Wireless Mouse""]",3593.93,"{""promo"": ""7%""}",189621,0,South America +2023-01-20,4179,3794,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",327.72,{},193341,1,Africa +2023-05-16,4180,3622,"[""Tablet"", ""Phone"", ""Keyboard""]",450.22,{},217656,0,Europe +2023-10-24,4181,9394,"[""Headphones"", ""Monitor""]",2350.18,"{""promo"": ""11%""}",65334,0,Asia +2024-01-04,4182,2730,"[""Keyboard""]",3391.5,"{""seasonal"": ""7%""}",48686,0,Asia +2023-07-06,4183,6739,"[""Headphones"", ""Keyboard"", ""Tablet""]",1098.49,"{""promo"": ""30%""}",174866,1,South America +2023-11-16,4184,944,"[""Monitor""]",249.4,{},185308,0,Asia +2023-05-26,4185,5977,"[""Headphones"", ""Laptop""]",1720.75,{},224879,0,Africa +2024-03-18,4186,6949,"[""Laptop""]",2835.02,"{""seasonal"": ""25%""}",266703,0,Europe +2023-04-02,4187,225,"[""Monitor"", ""Charger"", ""Headphones""]",1996.44,{},201666,1,Europe +2023-08-22,4188,1920,"[""Keyboard"", ""Headphones""]",2395.63,{},150754,0,Europe +2023-12-03,4189,7386,"[""Laptop"", ""Monitor"", ""Phone""]",2612.81,{},134140,0,South America +2024-01-25,4190,1829,"[""Monitor""]",4489.1,{},171757,1,Europe +2024-04-21,4191,9368,"[""Laptop"", ""Headphones""]",4168.92,{},205754,1,Europe +2024-05-22,4192,2261,"[""Laptop""]",1240.08,{},180643,1,Asia +2024-02-28,4193,2158,"[""Charger""]",4354.61,"{""promo"": ""12%""}",41593,0,Asia +2023-11-13,4194,6699,"[""Keyboard"", ""Tablet""]",3393.42,{},120781,0,North America +2023-04-10,4195,3681,"[""Tablet""]",1952.56,{},268737,0,North America +2024-03-26,4196,4018,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1916.56,{},181580,0,Africa +2023-10-07,4197,2883,"[""Keyboard"", ""Monitor""]",4763.58,"{""loyalty"": ""11%""}",192964,1,Europe +2023-03-20,4198,9634,"[""Charger"", ""Laptop""]",1978.48,{},8522,0,Europe +2024-10-27,4199,9727,"[""Charger""]",4243.36,"{""seasonal"": ""26%""}",156680,1,South America +2023-04-16,4200,5497,"[""Monitor"", ""Headphones""]",417.8,"{"""": ""7%""}",125868,1,Europe +2024-12-21,4201,3845,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2482.57,"{""seasonal"": ""30%""}",89398,0,Africa +2024-10-24,4202,5148,"[""Monitor"", ""Charger"", ""Headphones""]",2225.39,"{""seasonal"": ""15%""}",282301,1,Africa +2024-10-04,4203,7458,"[""Laptop"", ""Headphones""]",4785.35,"{""loyalty"": ""8%""}",119897,0,North America +2023-04-07,4204,5440,"[""Monitor"", ""Charger"", ""Tablet""]",2488.15,{},143339,1,South America +2023-05-28,4205,3118,"[""Headphones"", ""Monitor""]",2899.67,{},297996,1,North America +2024-02-27,4206,5050,"[""Keyboard""]",2731.85,"{""promo"": ""14%""}",150115,1,South America +2024-04-03,4207,1388,"[""Headphones"", ""Tablet"", ""Keyboard""]",2493.8,"{"""": ""24%""}",178798,1,Asia +2023-09-05,4208,7049,"[""Charger""]",2503.38,"{""promo"": ""19%""}",57345,0,Asia +2023-03-07,4209,34,"[""Monitor"", ""Charger""]",1006.71,"{""seasonal"": ""11%""}",157717,0,Africa +2023-02-26,4210,220,"[""Headphones"", ""Phone""]",1400.11,{},220637,0,North America +2024-10-18,4211,1876,"[""Monitor""]",4933.5,"{""loyalty"": ""21%""}",288736,0,Asia +2024-06-25,4212,687,"[""Headphones"", ""Keyboard""]",2386.95,{},177973,1,Europe +2023-02-25,4213,7472,"[""Keyboard""]",2733.65,"{"""": ""30%""}",158537,1,Asia +2024-11-29,4214,7029,"[""Tablet"", ""Keyboard""]",4353.43,"{""seasonal"": ""13%""}",112254,1,Asia +2024-09-08,4215,3486,"[""Charger"", ""Headphones""]",352.32,{},270786,1,Asia +2023-09-04,4216,3574,"[""Phone"", ""Laptop"", ""Monitor""]",2017.91,{},208265,0,North America +2024-02-07,4217,7265,"[""Monitor"", ""Phone""]",1747.85,"{""seasonal"": ""16%""}",275233,1,Asia +2024-09-17,4218,1836,"[""Tablet"", ""Headphones"", ""Charger""]",4913.72,{},49108,0,North America +2024-06-25,4219,7846,"[""Charger"", ""Laptop"", ""Tablet""]",2187.16,{},61995,0,Asia +2023-12-06,4220,9592,"[""Headphones""]",1090.01,"{""seasonal"": ""18%""}",142523,0,North America +2023-07-02,4221,8325,"[""Phone""]",1625.91,{},46143,1,North America +2024-01-03,4222,9859,"[""Wireless Mouse""]",3572.83,"{""loyalty"": ""25%""}",187148,0,Europe +2023-08-02,4223,2102,"[""Phone""]",4899.71,{},10176,0,Europe +2023-02-19,4224,3245,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3499.7,{},136780,0,South America +2023-06-02,4225,7977,"[""Monitor""]",3313.43,{},191057,1,North America +2023-08-05,4226,823,"[""Keyboard""]",2445.13,{},164166,0,South America +2024-10-25,4227,4537,"[""Phone"", ""Wireless Mouse""]",1533.09,"{""promo"": ""10%""}",50726,1,Asia +2024-09-18,4228,462,"[""Headphones"", ""Phone""]",2872.92,"{""promo"": ""11%""}",264924,0,Africa +2023-09-04,4229,2610,"[""Keyboard""]",2599.2,"{"""": ""27%""}",160200,0,Africa +2023-01-06,4230,8929,"[""Monitor"", ""Headphones"", ""Laptop""]",124.86,"{""loyalty"": ""12%""}",121590,0,Europe +2024-05-13,4231,3891,"[""Wireless Mouse""]",525.48,"{""promo"": ""13%""}",278666,0,South America +2024-09-28,4232,3729,"[""Phone""]",3482.76,"{""loyalty"": ""18%""}",140779,1,Asia +2024-03-05,4233,3444,"[""Keyboard"", ""Charger""]",1522.23,"{""promo"": ""7%""}",141519,0,Europe +2024-10-19,4234,8504,"[""Laptop""]",2622.48,"{""promo"": ""19%""}",272702,0,Asia +2024-12-13,4235,1646,"[""Monitor""]",1652.18,{},174367,0,Africa +2024-12-12,4236,9433,"[""Keyboard""]",597.54,{},103714,1,Africa +2024-09-09,4237,5768,"[""Monitor""]",206.57,"{"""": ""15%""}",77385,0,Europe +2023-01-15,4238,8927,"[""Phone"", ""Monitor""]",1682.25,{},248452,1,Africa +2023-08-30,4239,946,"[""Monitor"", ""Tablet"", ""Phone""]",3369.15,"{""seasonal"": ""28%""}",271021,0,Asia +2024-08-04,4240,7987,"[""Monitor""]",2913.91,{},187578,1,Africa +2024-03-19,4241,7495,"[""Laptop""]",4786.87,{},295956,1,South America +2023-03-31,4242,9455,"[""Phone"", ""Charger"", ""Keyboard""]",4313.62,"{""seasonal"": ""11%""}",6782,0,North America +2024-05-14,4243,5287,"[""Charger""]",4286.89,"{""seasonal"": ""24%""}",116319,1,North America +2023-12-08,4244,813,"[""Keyboard"", ""Laptop""]",2661.87,"{""promo"": ""27%""}",83186,1,South America +2024-04-21,4245,4789,"[""Laptop""]",1512.19,{},122793,1,Africa +2024-12-27,4246,6414,"[""Tablet"", ""Headphones"", ""Keyboard""]",3940.76,"{"""": ""18%""}",288138,0,South America +2023-10-29,4247,6579,"[""Headphones"", ""Charger""]",3411.23,{},241773,0,Europe +2023-02-03,4248,9222,"[""Charger""]",4542.48,"{""seasonal"": ""17%""}",80225,1,Africa +2024-10-06,4249,4711,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2244.8,{},14467,1,South America +2023-06-13,4250,4003,"[""Charger""]",87.83,"{""loyalty"": ""15%""}",187081,0,South America +2024-04-18,4251,8602,"[""Headphones""]",442.19,{},259463,1,Europe +2024-03-16,4252,3098,"[""Laptop"", ""Tablet""]",2499.01,{},244394,0,Africa +2024-07-07,4253,5372,"[""Laptop""]",1872.42,"{""loyalty"": ""15%""}",47545,0,South America +2024-04-26,4254,1943,"[""Charger"", ""Headphones"", ""Keyboard""]",1336.33,{},162926,0,Europe +2024-06-20,4255,6771,"[""Laptop"", ""Headphones"", ""Keyboard""]",768.27,"{""seasonal"": ""13%""}",154903,1,South America +2023-09-18,4256,893,"[""Headphones"", ""Monitor"", ""Laptop""]",647.45,"{""seasonal"": ""25%""}",37883,1,South America +2023-02-20,4257,7168,"[""Keyboard"", ""Tablet"", ""Laptop""]",1041.93,"{"""": ""27%""}",219189,0,North America +2024-08-07,4258,1072,"[""Keyboard""]",1834.09,"{""loyalty"": ""28%""}",269562,1,Europe +2023-08-19,4259,5783,"[""Phone"", ""Tablet""]",4255.31,{},44511,1,Asia +2024-01-14,4260,4168,"[""Keyboard""]",1899.48,{},122256,0,North America +2024-11-20,4261,7425,"[""Charger""]",114.37,"{""loyalty"": ""25%""}",80101,1,Europe +2023-07-14,4262,8754,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2145.77,"{""loyalty"": ""29%""}",16670,1,Asia +2023-02-09,4263,7712,"[""Wireless Mouse"", ""Keyboard""]",4647.03,"{"""": ""29%""}",13767,1,South America +2023-05-21,4264,7973,"[""Phone""]",582.08,"{""promo"": ""26%""}",76260,0,Africa +2023-02-17,4265,5451,"[""Keyboard""]",3213.38,"{""seasonal"": ""29%""}",97637,0,Europe +2024-01-23,4266,6673,"[""Keyboard"", ""Laptop""]",1284.06,"{""promo"": ""12%""}",188718,0,North America +2024-10-27,4267,432,"[""Charger"", ""Keyboard"", ""Tablet""]",4339.72,{},11425,1,South America +2023-04-30,4268,653,"[""Laptop"", ""Wireless Mouse""]",3273.33,{},181900,1,Europe +2023-02-06,4269,5037,"[""Monitor""]",2729.19,"{""promo"": ""6%""}",2573,0,Africa +2023-04-03,4270,5005,"[""Charger"", ""Phone"", ""Monitor""]",570.02,"{"""": ""20%""}",60305,0,Asia +2023-11-05,4271,2801,"[""Tablet"", ""Keyboard""]",140.72,{},213495,1,Africa +2023-08-28,4272,856,"[""Monitor"", ""Wireless Mouse""]",4247.8,"{""promo"": ""28%""}",87588,0,North America +2023-01-05,4273,4528,"[""Keyboard""]",2052.22,{},74123,1,Asia +2024-08-20,4274,3478,"[""Headphones"", ""Keyboard"", ""Phone""]",2201.23,{},146421,0,North America +2024-10-02,4275,2907,"[""Charger"", ""Tablet"", ""Keyboard""]",1333.2,"{""seasonal"": ""30%""}",93375,0,Europe +2023-06-18,4276,2447,"[""Keyboard"", ""Charger""]",3360.63,{},230686,0,Europe +2024-10-25,4277,7955,"[""Headphones"", ""Charger""]",714.19,{},263547,1,North America +2024-05-03,4278,2232,"[""Wireless Mouse"", ""Monitor""]",2682.1,"{""seasonal"": ""18%""}",255490,1,Asia +2024-06-16,4279,3158,"[""Laptop""]",544.14,{},137094,1,Africa +2024-10-06,4280,1957,"[""Headphones"", ""Charger"", ""Laptop""]",1926.02,"{"""": ""5%""}",224829,0,North America +2023-12-25,4281,469,"[""Tablet"", ""Laptop""]",689.33,"{""loyalty"": ""6%""}",174756,0,North America +2024-06-17,4282,2919,"[""Headphones""]",2175.32,{},104135,0,Europe +2023-02-06,4283,498,"[""Keyboard""]",2489.91,"{"""": ""27%""}",233749,0,Asia +2024-06-13,4284,2665,"[""Laptop"", ""Keyboard"", ""Monitor""]",4478.55,{},99887,0,Europe +2024-01-08,4285,8686,"[""Monitor""]",424.0,{},68329,1,North America +2024-04-12,4286,6515,"[""Headphones"", ""Phone"", ""Laptop""]",4773.29,{},7701,1,Asia +2024-08-21,4287,2669,"[""Headphones"", ""Phone""]",1922.06,{},187980,0,Asia +2023-07-02,4288,5629,"[""Headphones"", ""Phone""]",4368.36,{},43272,0,North America +2024-10-07,4289,2360,"[""Headphones"", ""Phone"", ""Tablet""]",2395.01,"{""promo"": ""6%""}",188018,0,Asia +2023-03-13,4290,2167,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2782.91,{},146741,0,Europe +2024-01-12,4291,5548,"[""Tablet""]",4036.17,"{"""": ""15%""}",181719,0,North America +2023-11-14,4292,9345,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4340.3,{},114966,0,Asia +2023-08-17,4293,1081,"[""Headphones""]",4006.92,{},153838,0,Africa +2024-02-09,4294,7276,"[""Keyboard"", ""Headphones""]",1014.63,{},280052,1,South America +2024-06-27,4295,1619,"[""Charger"", ""Keyboard"", ""Phone""]",476.07,{},118595,0,Asia +2024-10-26,4296,3207,"[""Tablet""]",398.9,"{""seasonal"": ""26%""}",88508,1,Africa +2024-07-11,4297,2429,"[""Wireless Mouse""]",4824.51,{},249677,0,North America +2024-10-01,4298,5756,"[""Charger""]",4814.59,"{"""": ""8%""}",89308,1,Europe +2024-12-09,4299,7931,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2884.11,"{""seasonal"": ""28%""}",124980,0,Asia +2023-05-28,4300,9220,"[""Wireless Mouse"", ""Laptop""]",2758.37,{},86017,1,North America +2024-07-14,4301,2979,"[""Phone"", ""Tablet"", ""Keyboard""]",4917.68,{},221093,1,South America +2023-09-19,4302,2731,"[""Laptop"", ""Tablet""]",2301.16,{},17202,1,South America +2023-08-13,4303,2249,"[""Monitor"", ""Headphones""]",1675.02,{},245136,1,North America +2024-01-23,4304,1852,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3375.16,{},265463,0,Europe +2024-04-28,4305,9025,"[""Laptop"", ""Wireless Mouse""]",636.46,"{""loyalty"": ""30%""}",145544,0,North America +2023-11-11,4306,6746,"[""Laptop""]",3857.54,{},290580,0,Africa +2024-10-02,4307,9300,"[""Keyboard"", ""Phone"", ""Charger""]",1469.84,{},68066,0,South America +2024-11-11,4308,938,"[""Wireless Mouse""]",4398.39,{},23740,1,Europe +2023-11-10,4309,6797,"[""Headphones"", ""Keyboard""]",3996.41,"{""seasonal"": ""5%""}",256040,0,Europe +2023-10-08,4310,871,"[""Headphones""]",3163.19,{},5995,0,North America +2024-07-23,4311,6442,"[""Phone""]",368.81,"{"""": ""9%""}",112009,1,Africa +2023-03-09,4312,7623,"[""Keyboard"", ""Phone"", ""Headphones""]",4365.88,"{""seasonal"": ""26%""}",37073,1,South America +2023-04-10,4313,1972,"[""Phone"", ""Headphones""]",2929.63,"{""promo"": ""29%""}",24886,1,Europe +2024-10-03,4314,5045,"[""Monitor"", ""Keyboard"", ""Tablet""]",102.23,"{""promo"": ""25%""}",74638,0,Europe +2024-08-07,4315,9483,"[""Laptop"", ""Monitor"", ""Headphones""]",81.8,{},45737,1,North America +2024-06-21,4316,4870,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3383.32,"{""promo"": ""6%""}",252854,1,South America +2023-05-16,4317,1473,"[""Keyboard"", ""Monitor"", ""Tablet""]",1132.4,{},151433,0,Africa +2023-07-09,4318,7838,"[""Headphones""]",2577.03,"{"""": ""11%""}",24157,0,Europe +2023-05-30,4319,2850,"[""Headphones"", ""Phone"", ""Monitor""]",2989.8,{},14518,0,Asia +2023-12-12,4320,8085,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1628.21,"{""promo"": ""5%""}",213104,1,South America +2024-04-22,4321,53,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3487.0,"{""loyalty"": ""19%""}",281956,1,Asia +2024-08-05,4322,2929,"[""Laptop""]",2807.69,"{""loyalty"": ""24%""}",58734,0,Africa +2023-06-06,4323,8915,"[""Tablet""]",2479.82,{},118276,1,North America +2024-10-01,4324,8960,"[""Charger"", ""Laptop""]",3703.27,{},80794,0,South America +2024-04-02,4325,1365,"[""Monitor"", ""Phone""]",1785.92,"{""promo"": ""8%""}",114662,0,South America +2023-07-29,4326,9491,"[""Tablet""]",3330.43,{},61904,1,South America +2023-09-04,4327,7437,"[""Phone"", ""Monitor""]",1423.98,"{""promo"": ""25%""}",61963,1,South America +2024-03-22,4328,2462,"[""Charger"", ""Laptop""]",3006.62,{},82079,1,South America +2023-05-02,4329,4786,"[""Charger"", ""Tablet"", ""Headphones""]",4905.23,{},153872,0,South America +2024-12-26,4330,2632,"[""Laptop""]",1237.82,"{"""": ""9%""}",78042,1,Europe +2024-03-26,4331,4566,"[""Phone"", ""Monitor"", ""Keyboard""]",4193.54,"{""promo"": ""28%""}",176404,0,Africa +2024-02-24,4332,4885,"[""Charger"", ""Laptop"", ""Tablet""]",4826.81,"{""seasonal"": ""23%""}",265117,1,Europe +2023-05-23,4333,8808,"[""Monitor"", ""Tablet""]",2916.42,{},29494,1,South America +2024-07-02,4334,7959,"[""Tablet"", ""Headphones""]",1541.73,"{""promo"": ""26%""}",172540,0,North America +2023-07-19,4335,6038,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",303.65,"{""promo"": ""23%""}",265147,1,Asia +2024-12-03,4336,9128,"[""Tablet"", ""Headphones""]",2658.45,"{""loyalty"": ""17%""}",228944,0,North America +2023-03-13,4337,6753,"[""Wireless Mouse"", ""Headphones""]",1550.41,"{""seasonal"": ""24%""}",13898,0,South America +2023-04-12,4338,7067,"[""Laptop"", ""Phone""]",1302.45,{},4754,1,Europe +2023-12-30,4339,2264,"[""Keyboard"", ""Headphones"", ""Tablet""]",4862.99,"{""promo"": ""21%""}",150714,1,North America +2024-08-22,4340,722,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1124.87,{},191733,1,South America +2023-11-20,4341,7416,"[""Headphones"", ""Keyboard""]",3193.88,{},38215,1,South America +2023-02-17,4342,6383,"[""Wireless Mouse""]",4132.95,"{""promo"": ""10%""}",116405,1,Africa +2024-12-15,4343,9175,"[""Laptop""]",415.89,"{""promo"": ""8%""}",187518,1,North America +2023-09-27,4344,4719,"[""Monitor"", ""Tablet""]",552.67,"{""seasonal"": ""7%""}",82294,1,Europe +2023-08-28,4345,33,"[""Phone""]",2140.69,{},166427,0,South America +2023-01-30,4346,8743,"[""Monitor""]",2937.13,{},62091,0,Africa +2024-03-12,4347,1180,"[""Phone"", ""Charger""]",4682.22,{},33483,1,North America +2024-03-26,4348,6925,"[""Monitor"", ""Tablet""]",2021.74,{},295167,1,Asia +2023-09-03,4349,2261,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3159.62,"{""promo"": ""23%""}",50494,0,Europe +2023-06-01,4350,9388,"[""Keyboard"", ""Tablet"", ""Monitor""]",3808.37,{},231784,0,Asia +2023-08-07,4351,7566,"[""Tablet"", ""Laptop"", ""Headphones""]",2336.36,"{""seasonal"": ""13%""}",96407,1,South America +2024-02-09,4352,7935,"[""Headphones""]",765.74,"{""promo"": ""23%""}",191238,1,Asia +2023-11-17,4353,3150,"[""Headphones"", ""Monitor"", ""Laptop""]",2746.84,"{""promo"": ""19%""}",253532,1,Africa +2023-04-17,4354,9560,"[""Laptop""]",4020.37,{},297285,1,Europe +2023-10-11,4355,3361,"[""Tablet""]",1347.18,{},192796,0,Africa +2023-07-14,4356,3299,"[""Headphones"", ""Charger"", ""Keyboard""]",804.56,{},164249,1,North America +2024-04-26,4357,7179,"[""Monitor"", ""Laptop""]",3032.58,{},109884,1,North America +2023-11-26,4358,9720,"[""Phone""]",881.16,"{""seasonal"": ""14%""}",70642,1,Europe +2024-02-15,4359,2887,"[""Phone"", ""Wireless Mouse""]",2076.19,"{""seasonal"": ""29%""}",132437,0,North America +2023-12-23,4360,1246,"[""Laptop""]",3811.18,"{"""": ""29%""}",39024,0,Asia +2023-06-03,4361,2459,"[""Charger"", ""Tablet"", ""Monitor""]",4600.8,{},287599,1,South America +2023-12-11,4362,1625,"[""Tablet""]",4344.45,"{""loyalty"": ""6%""}",283547,1,Africa +2024-06-16,4363,2136,"[""Headphones""]",3258.27,"{"""": ""27%""}",247899,0,Asia +2024-09-30,4364,539,"[""Keyboard""]",3236.63,{},33443,1,Africa +2023-04-21,4365,946,"[""Keyboard"", ""Headphones""]",3738.0,"{""promo"": ""22%""}",160205,1,South America +2024-07-01,4366,4597,"[""Monitor"", ""Charger""]",2590.27,{},256962,1,Asia +2024-01-24,4367,8030,"[""Keyboard"", ""Laptop""]",4443.44,{},157687,0,Europe +2023-07-08,4368,8782,"[""Charger""]",2555.29,{},252791,1,Africa +2024-01-12,4369,3684,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",769.99,{},102537,0,Europe +2024-07-31,4370,1933,"[""Tablet"", ""Headphones""]",3071.11,{},144301,0,North America +2023-03-05,4371,1625,"[""Monitor""]",3087.39,{},154003,1,Africa +2023-09-11,4372,7518,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1732.39,"{""loyalty"": ""19%""}",267342,1,Europe +2023-08-11,4373,1275,"[""Keyboard"", ""Laptop"", ""Monitor""]",1423.4,"{"""": ""7%""}",133995,0,South America +2023-06-17,4374,906,"[""Headphones"", ""Tablet""]",2676.04,"{""seasonal"": ""29%""}",87517,1,Asia +2023-08-27,4375,2378,"[""Charger"", ""Laptop"", ""Tablet""]",2223.5,{},7321,1,Europe +2023-02-18,4376,9003,"[""Phone"", ""Laptop""]",971.82,"{""loyalty"": ""16%""}",264708,1,Asia +2024-09-14,4377,4988,"[""Tablet"", ""Laptop"", ""Keyboard""]",3563.79,{},208985,0,Africa +2024-07-25,4378,906,"[""Keyboard"", ""Laptop""]",3604.74,"{""seasonal"": ""27%""}",71804,1,Asia +2024-03-13,4379,1559,"[""Headphones"", ""Monitor""]",4964.21,{},122526,1,Africa +2024-11-06,4380,2291,"[""Laptop""]",3810.27,{},67382,0,Europe +2023-05-19,4381,9643,"[""Headphones"", ""Keyboard"", ""Monitor""]",941.76,{},266273,0,North America +2024-12-24,4382,2696,"[""Phone"", ""Monitor""]",4610.37,{},146691,1,Europe +2023-03-11,4383,5066,"[""Keyboard""]",3384.52,{},128434,0,Asia +2023-11-22,4384,9411,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",479.82,{},44906,0,Europe +2023-06-19,4385,928,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2660.59,"{""seasonal"": ""5%""}",134281,0,Asia +2024-01-16,4386,4821,"[""Laptop"", ""Monitor"", ""Keyboard""]",1758.83,{},25247,1,North America +2023-08-14,4387,3167,"[""Phone""]",4501.27,"{""promo"": ""28%""}",114401,1,South America +2023-05-31,4388,7041,"[""Headphones"", ""Tablet""]",4702.52,"{"""": ""10%""}",102779,1,South America +2024-02-07,4389,5151,"[""Laptop"", ""Phone""]",491.81,"{"""": ""7%""}",66717,1,Asia +2023-05-14,4390,764,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2930.13,{},291812,1,Africa +2023-08-21,4391,653,"[""Wireless Mouse""]",4287.26,{},17369,1,Asia +2024-11-08,4392,3549,"[""Laptop"", ""Tablet""]",3852.7,{},201147,0,Africa +2024-11-30,4393,4399,"[""Laptop"", ""Tablet"", ""Keyboard""]",1379.68,"{""promo"": ""29%""}",200430,0,Europe +2024-02-17,4394,4464,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2944.35,"{""promo"": ""27%""}",299351,1,North America +2024-11-17,4395,2918,"[""Headphones"", ""Wireless Mouse""]",3665.59,"{""seasonal"": ""28%""}",128944,1,North America +2023-02-20,4396,6410,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3309.29,"{""loyalty"": ""25%""}",257223,1,North America +2023-03-16,4397,7828,"[""Laptop"", ""Tablet""]",2995.9,"{""promo"": ""28%""}",98639,1,Africa +2023-03-14,4398,7282,"[""Wireless Mouse"", ""Monitor""]",651.26,{},2246,0,Asia +2023-03-11,4399,7854,"[""Charger"", ""Keyboard"", ""Tablet""]",3060.66,"{""seasonal"": ""26%""}",164734,1,Asia +2024-11-11,4400,1869,"[""Charger""]",383.21,{},281221,0,Africa +2023-09-06,4401,1984,"[""Wireless Mouse""]",369.25,{},61043,0,South America +2024-10-03,4402,8897,"[""Tablet"", ""Keyboard""]",2611.98,"{"""": ""15%""}",46911,1,Europe +2023-03-04,4403,7485,"[""Keyboard""]",1652.93,"{""promo"": ""15%""}",92642,1,Africa +2024-11-09,4404,4981,"[""Tablet"", ""Laptop""]",4969.68,{},29348,1,North America +2024-07-13,4405,2525,"[""Phone"", ""Keyboard""]",3234.27,{},149892,1,South America +2023-02-19,4406,4467,"[""Headphones"", ""Monitor"", ""Laptop""]",776.14,"{""seasonal"": ""17%""}",47091,0,South America +2024-02-22,4407,9652,"[""Wireless Mouse""]",1247.11,"{"""": ""14%""}",113930,1,South America +2024-02-02,4408,8161,"[""Tablet"", ""Phone"", ""Charger""]",4244.95,"{""loyalty"": ""30%""}",107663,1,Africa +2023-03-02,4409,8024,"[""Wireless Mouse""]",2436.74,{},2762,0,Asia +2023-05-08,4410,5026,"[""Keyboard"", ""Laptop""]",4156.17,"{""promo"": ""30%""}",81269,0,Asia +2024-05-12,4411,5506,"[""Tablet""]",2002.36,{},262278,1,North America +2023-08-15,4412,8928,"[""Phone""]",4536.06,"{""promo"": ""19%""}",128798,0,Europe +2024-01-23,4413,6043,"[""Headphones"", ""Monitor"", ""Tablet""]",4739.86,{},299731,1,South America +2024-12-12,4414,3329,"[""Keyboard"", ""Headphones""]",4857.58,"{""seasonal"": ""23%""}",117562,1,Asia +2023-04-04,4415,1826,"[""Laptop"", ""Wireless Mouse""]",3997.38,{},252544,0,Europe +2023-03-21,4416,3925,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4879.35,"{""promo"": ""12%""}",69163,0,South America +2024-03-26,4417,3330,"[""Wireless Mouse"", ""Charger""]",4208.97,{},232656,1,Africa +2024-03-14,4418,7860,"[""Charger"", ""Headphones""]",1625.42,{},255616,1,Europe +2024-10-30,4419,8783,"[""Charger""]",3641.77,{},174931,1,North America +2023-05-07,4420,5205,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2525.12,"{"""": ""8%""}",214493,0,North America +2024-01-21,4421,8972,"[""Tablet"", ""Headphones"", ""Monitor""]",2389.3,{},152019,0,Asia +2023-08-13,4422,5095,"[""Keyboard""]",239.41,{},77057,1,Africa +2023-06-19,4423,2344,"[""Keyboard""]",4557.9,{},87403,0,Europe +2023-07-23,4424,1825,"[""Laptop""]",4569.41,"{""seasonal"": ""27%""}",74265,0,Africa +2023-02-03,4425,5277,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3215.92,"{""loyalty"": ""20%""}",298618,1,South America +2023-08-04,4426,5375,"[""Tablet"", ""Keyboard"", ""Headphones""]",651.77,{},173825,0,Asia +2024-07-29,4427,8966,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1381.02,{},239077,1,North America +2024-04-05,4428,5221,"[""Laptop"", ""Keyboard"", ""Headphones""]",3750.6,{},47533,1,Asia +2024-04-06,4429,8559,"[""Wireless Mouse""]",1060.52,{},182694,0,South America +2023-03-26,4430,4852,"[""Laptop""]",72.68,{},153447,0,South America +2023-03-17,4431,8925,"[""Laptop"", ""Tablet""]",4000.5,"{"""": ""14%""}",228476,1,Europe +2023-05-19,4432,1346,"[""Charger"", ""Headphones"", ""Monitor""]",4480.36,{},187505,1,Africa +2024-07-07,4433,9060,"[""Laptop""]",3542.14,{},172274,1,North America +2024-07-29,4434,9329,"[""Headphones"", ""Phone"", ""Laptop""]",2894.44,{},158176,1,Africa +2023-12-18,4435,5595,"[""Laptop""]",2019.44,{},104724,0,Asia +2023-04-28,4436,5786,"[""Phone"", ""Tablet""]",1910.53,"{""loyalty"": ""25%""}",110556,1,North America +2023-12-18,4437,5632,"[""Laptop""]",3503.77,{},212212,1,South America +2023-06-14,4438,5145,"[""Tablet"", ""Wireless Mouse""]",2342.09,{},96283,1,South America +2024-11-21,4439,1751,"[""Monitor""]",1369.51,"{""seasonal"": ""19%""}",178166,0,South America +2024-08-06,4440,5883,"[""Charger"", ""Monitor""]",3177.72,{},185265,0,Europe +2024-11-28,4441,7430,"[""Monitor"", ""Keyboard""]",1869.42,{},56625,0,North America +2024-06-18,4442,7322,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4052.15,"{""loyalty"": ""28%""}",246889,0,Asia +2023-09-11,4443,6772,"[""Keyboard"", ""Wireless Mouse""]",4989.12,"{""loyalty"": ""29%""}",75880,1,North America +2024-06-21,4444,858,"[""Charger"", ""Monitor""]",2994.84,"{""loyalty"": ""17%""}",9574,1,Europe +2023-05-27,4445,6985,"[""Tablet"", ""Laptop"", ""Monitor""]",1004.01,{},139559,1,North America +2023-03-27,4446,4166,"[""Headphones"", ""Keyboard""]",1946.24,{},80178,0,Asia +2023-06-06,4447,5242,"[""Monitor"", ""Keyboard""]",2746.75,"{""promo"": ""16%""}",197961,1,South America +2024-12-15,4448,6544,"[""Laptop""]",1107.61,"{""promo"": ""8%""}",38367,1,Europe +2023-03-31,4449,3203,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1761.74,{},237881,1,North America +2024-01-22,4450,1035,"[""Laptop"", ""Wireless Mouse""]",2053.23,"{"""": ""5%""}",70469,0,North America +2024-10-05,4451,4743,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4135.71,"{""loyalty"": ""29%""}",28301,1,Europe +2023-06-29,4452,1026,"[""Tablet""]",2278.97,{},20816,0,Africa +2024-05-28,4453,3179,"[""Headphones"", ""Tablet"", ""Keyboard""]",1940.65,{},280801,1,South America +2023-03-21,4454,2950,"[""Charger"", ""Tablet""]",3564.19,"{""seasonal"": ""29%""}",125692,1,South America +2024-12-25,4455,7513,"[""Keyboard""]",1768.43,"{"""": ""16%""}",3551,0,Africa +2023-03-17,4456,1734,"[""Keyboard"", ""Phone"", ""Headphones""]",576.41,"{""seasonal"": ""7%""}",199583,0,Africa +2024-06-14,4457,1635,"[""Wireless Mouse""]",880.45,"{""loyalty"": ""6%""}",195743,1,Europe +2024-07-28,4458,3072,"[""Headphones""]",909.95,{},207135,0,South America +2024-05-26,4459,1508,"[""Laptop"", ""Headphones"", ""Phone""]",3629.11,{},58577,0,Asia +2024-05-12,4460,8583,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4973.17,"{""loyalty"": ""7%""}",232184,0,North America +2024-05-03,4461,4640,"[""Headphones"", ""Monitor""]",3637.85,{},30508,0,South America +2024-08-05,4462,5975,"[""Monitor""]",79.66,{},263763,0,Africa +2023-11-13,4463,9039,"[""Charger"", ""Wireless Mouse""]",1203.91,{},23062,0,Europe +2023-05-14,4464,4223,"[""Phone""]",1349.87,{},50655,0,Europe +2024-01-16,4465,112,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3017.94,{},60247,0,Europe +2023-11-04,4466,2886,"[""Laptop""]",2130.1,"{""loyalty"": ""6%""}",64371,0,South America +2023-06-19,4467,3190,"[""Keyboard""]",2403.74,"{""loyalty"": ""14%""}",283279,1,Europe +2024-02-12,4468,9602,"[""Charger"", ""Headphones""]",1308.0,{},280757,1,Asia +2024-11-02,4469,3021,"[""Monitor""]",53.95,"{""seasonal"": ""28%""}",290407,0,North America +2024-06-23,4470,5082,"[""Wireless Mouse""]",2565.39,"{""promo"": ""13%""}",217289,1,Africa +2023-06-28,4471,2641,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3102.88,{},236406,1,Asia +2024-03-04,4472,9044,"[""Keyboard"", ""Monitor""]",1512.88,"{""promo"": ""13%""}",141278,0,Asia +2023-06-05,4473,3919,"[""Tablet"", ""Phone"", ""Keyboard""]",4416.52,{},218997,1,North America +2024-02-11,4474,2259,"[""Laptop"", ""Headphones"", ""Charger""]",558.69,{},98037,0,North America +2024-04-05,4475,4067,"[""Phone"", ""Monitor""]",1004.55,"{"""": ""7%""}",115400,0,North America +2023-05-12,4476,8937,"[""Tablet""]",4767.55,"{""loyalty"": ""18%""}",50350,0,Asia +2023-08-22,4477,2154,"[""Headphones"", ""Charger""]",3788.59,{},13672,1,South America +2023-02-26,4478,595,"[""Tablet"", ""Keyboard"", ""Phone""]",1873.64,"{""promo"": ""21%""}",271013,0,Africa +2024-09-20,4479,167,"[""Headphones"", ""Tablet""]",4322.22,{},151988,0,South America +2024-05-17,4480,9210,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2122.07,"{""loyalty"": ""17%""}",21142,1,Africa +2024-08-16,4481,3693,"[""Headphones"", ""Monitor"", ""Laptop""]",3701.69,"{""promo"": ""30%""}",125361,0,Europe +2024-11-06,4482,4580,"[""Tablet"", ""Laptop""]",214.18,"{"""": ""24%""}",32103,1,Europe +2023-07-05,4483,1974,"[""Monitor"", ""Laptop"", ""Headphones""]",3759.3,{},239223,0,Europe +2023-12-30,4484,4539,"[""Laptop"", ""Headphones""]",1379.93,{},276908,1,North America +2024-02-05,4485,112,"[""Tablet"", ""Headphones""]",2643.99,"{""seasonal"": ""17%""}",124545,1,North America +2024-10-15,4486,1424,"[""Charger"", ""Headphones""]",4311.16,"{""loyalty"": ""30%""}",191114,1,North America +2024-03-03,4487,260,"[""Wireless Mouse""]",1517.93,{},46163,1,South America +2024-01-30,4488,4871,"[""Keyboard"", ""Monitor""]",3805.91,{},160656,0,Asia +2024-04-20,4489,3824,"[""Keyboard"", ""Headphones""]",1258.37,"{""promo"": ""17%""}",1799,1,Africa +2023-07-12,4490,8756,"[""Monitor"", ""Laptop""]",2015.43,"{"""": ""5%""}",65005,0,North America +2024-05-11,4491,689,"[""Tablet"", ""Charger"", ""Monitor""]",2527.65,"{"""": ""12%""}",133885,0,Africa +2023-03-28,4492,7305,"[""Laptop"", ""Charger""]",2936.82,"{"""": ""6%""}",184177,1,South America +2024-06-26,4493,3584,"[""Keyboard"", ""Laptop""]",3399.15,"{""loyalty"": ""24%""}",132495,1,South America +2023-08-05,4494,7038,"[""Monitor""]",3016.96,{},145235,0,Europe +2024-03-15,4495,8302,"[""Headphones"", ""Phone"", ""Laptop""]",2685.84,"{"""": ""21%""}",127723,1,Asia +2023-04-23,4496,3863,"[""Keyboard"", ""Monitor"", ""Laptop""]",2872.55,{},169295,1,Europe +2024-05-05,4497,4427,"[""Keyboard"", ""Charger"", ""Laptop""]",4830.43,"{""promo"": ""25%""}",250200,1,North America +2023-02-12,4498,3529,"[""Charger""]",1408.89,"{"""": ""28%""}",147653,1,South America +2024-10-31,4499,7109,"[""Keyboard"", ""Charger"", ""Headphones""]",1019.02,"{""loyalty"": ""22%""}",92645,0,Europe +2024-06-07,4500,6323,"[""Charger""]",2002.36,{},75641,0,Asia +2024-05-29,4501,9574,"[""Monitor"", ""Headphones"", ""Laptop""]",4311.76,{},105167,0,South America +2024-01-04,4502,2144,"[""Wireless Mouse""]",4380.34,{},255463,0,Africa +2024-02-18,4503,2082,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3940.24,"{""promo"": ""7%""}",9974,1,Africa +2024-04-12,4504,879,"[""Keyboard"", ""Phone""]",4929.62,{},47261,0,North America +2024-11-18,4505,9027,"[""Monitor"", ""Tablet""]",2296.76,{},163140,1,Asia +2023-04-08,4506,1026,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4969.41,"{""loyalty"": ""27%""}",126781,1,Asia +2023-01-13,4507,2623,"[""Monitor"", ""Laptop"", ""Headphones""]",1202.48,"{""promo"": ""19%""}",22820,1,Europe +2024-08-02,4508,7625,"[""Charger"", ""Keyboard"", ""Monitor""]",3508.77,"{""seasonal"": ""12%""}",29742,0,North America +2023-08-28,4509,1503,"[""Charger"", ""Keyboard"", ""Laptop""]",2901.62,"{""loyalty"": ""24%""}",115343,1,Asia +2023-06-19,4510,9049,"[""Laptop"", ""Headphones"", ""Tablet""]",4734.3,"{"""": ""6%""}",85880,1,South America +2024-06-15,4511,5975,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3254.07,{},281405,1,Africa +2024-03-06,4512,3325,"[""Charger""]",2717.04,{},220914,1,North America +2024-05-20,4513,1401,"[""Tablet""]",296.6,{},55220,1,Europe +2024-06-05,4514,7760,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",243.76,{},236258,0,Asia +2024-05-14,4515,312,"[""Headphones""]",2032.54,"{""promo"": ""22%""}",270569,0,Asia +2023-09-19,4516,9055,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1062.77,{},230720,0,South America +2024-01-06,4517,9281,"[""Headphones"", ""Charger"", ""Phone""]",3768.33,{},271577,0,North America +2023-01-25,4518,7337,"[""Phone"", ""Monitor"", ""Charger""]",4193.76,{},32911,1,Europe +2024-06-13,4519,3550,"[""Phone""]",1368.64,{},3734,0,Europe +2023-11-10,4520,6423,"[""Tablet"", ""Headphones""]",4772.67,"{""seasonal"": ""19%""}",242014,0,South America +2023-12-17,4521,906,"[""Keyboard"", ""Laptop"", ""Monitor""]",1611.11,{},183043,1,South America +2024-06-25,4522,1288,"[""Keyboard"", ""Charger""]",984.51,"{""loyalty"": ""16%""}",77448,1,Asia +2024-08-20,4523,6675,"[""Keyboard"", ""Monitor""]",1374.82,"{""promo"": ""19%""}",155793,1,South America +2023-07-08,4524,6402,"[""Laptop""]",2428.2,"{"""": ""27%""}",78549,1,South America +2023-10-26,4525,5905,"[""Wireless Mouse""]",4304.14,{},143506,1,Africa +2023-07-14,4526,6878,"[""Monitor"", ""Headphones""]",2565.51,{},133812,0,South America +2023-08-20,4527,2626,"[""Phone"", ""Keyboard"", ""Monitor""]",4782.74,{},73763,0,Europe +2024-08-11,4528,6594,"[""Headphones"", ""Tablet"", ""Laptop""]",2301.64,"{""promo"": ""8%""}",239882,0,South America +2023-11-07,4529,7854,"[""Headphones"", ""Keyboard"", ""Tablet""]",4915.1,{},13689,1,Europe +2023-01-01,4530,2217,"[""Headphones""]",2421.88,"{"""": ""27%""}",71645,0,Asia +2023-01-24,4531,3957,"[""Headphones"", ""Wireless Mouse""]",1820.97,{},53688,1,North America +2023-11-14,4532,915,"[""Keyboard"", ""Phone"", ""Headphones""]",776.54,"{""seasonal"": ""13%""}",232862,0,North America +2023-05-14,4533,4232,"[""Monitor"", ""Headphones""]",1401.19,{},74316,1,South America +2024-09-19,4534,5386,"[""Phone"", ""Tablet""]",3714.64,"{""promo"": ""13%""}",286568,0,South America +2024-10-08,4535,180,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4111.48,"{""promo"": ""24%""}",233784,1,Asia +2023-06-27,4536,7316,"[""Monitor"", ""Charger""]",3403.07,{},148084,0,South America +2024-12-18,4537,7289,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2942.6,{},188519,0,South America +2024-01-13,4538,3147,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",933.35,"{"""": ""14%""}",117220,0,Europe +2023-05-27,4539,693,"[""Wireless Mouse""]",3805.17,{},37916,0,Europe +2023-01-27,4540,6914,"[""Laptop""]",2118.43,{},284650,1,North America +2024-02-23,4541,5375,"[""Charger"", ""Tablet"", ""Monitor""]",117.53,"{""promo"": ""30%""}",27171,0,North America +2023-10-08,4542,1683,"[""Phone"", ""Laptop""]",889.67,{},251438,0,Europe +2023-02-10,4543,9619,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4803.18,"{""seasonal"": ""12%""}",215165,0,North America +2023-03-16,4544,7008,"[""Keyboard"", ""Monitor""]",2535.99,{},211738,1,North America +2023-06-24,4545,1068,"[""Keyboard""]",3928.01,{},258734,0,Asia +2024-02-13,4546,383,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4766.87,"{""seasonal"": ""22%""}",41151,0,Asia +2023-05-08,4547,5372,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1326.14,"{""promo"": ""7%""}",151371,0,North America +2024-04-26,4548,9820,"[""Laptop"", ""Monitor""]",1359.07,{},221360,0,Africa +2024-09-04,4549,4100,"[""Keyboard"", ""Monitor"", ""Charger""]",1334.87,{},177111,1,Africa +2023-10-27,4550,209,"[""Keyboard""]",2222.66,{},221722,0,Asia +2023-11-22,4551,9910,"[""Tablet"", ""Laptop""]",4798.51,{},168864,0,South America +2023-04-14,4552,6215,"[""Charger""]",795.84,"{""loyalty"": ""27%""}",65041,0,South America +2023-07-25,4553,2701,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2584.24,"{""loyalty"": ""26%""}",263622,0,Asia +2023-03-05,4554,4741,"[""Charger""]",2233.01,{},240783,0,Europe +2023-12-22,4555,8778,"[""Phone""]",1645.29,{},186081,0,Europe +2023-03-01,4556,9033,"[""Monitor""]",4615.51,{},224966,1,North America +2024-11-27,4557,1827,"[""Tablet""]",1242.27,"{""seasonal"": ""28%""}",69747,1,North America +2023-10-09,4558,1687,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2891.62,{},87679,1,Asia +2024-02-05,4559,8824,"[""Laptop"", ""Keyboard"", ""Monitor""]",3699.29,{},104146,1,North America +2024-09-10,4560,6504,"[""Phone"", ""Tablet"", ""Headphones""]",306.33,{},130639,1,North America +2024-06-30,4561,7484,"[""Charger""]",3041.2,"{"""": ""19%""}",5231,0,South America +2023-11-23,4562,5958,"[""Monitor""]",91.63,{},156360,0,Europe +2024-05-14,4563,640,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2741.64,"{""promo"": ""11%""}",197946,1,Europe +2023-03-04,4564,1121,"[""Laptop"", ""Tablet"", ""Headphones""]",3422.39,{},64853,1,South America +2024-05-31,4565,8751,"[""Charger"", ""Headphones""]",4262.44,"{""seasonal"": ""10%""}",245471,0,Asia +2023-05-26,4566,4596,"[""Keyboard""]",707.73,{},35319,1,Europe +2024-11-19,4567,3332,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3537.24,{},133865,0,South America +2023-04-12,4568,9963,"[""Phone"", ""Laptop""]",1970.58,{},227684,1,North America +2024-10-25,4569,3731,"[""Laptop""]",626.45,{},153296,1,Asia +2023-04-25,4570,3315,"[""Monitor"", ""Tablet"", ""Laptop""]",638.34,{},4842,0,Africa +2023-04-10,4571,6443,"[""Charger""]",2025.25,{},121276,1,South America +2023-01-02,4572,4739,"[""Tablet"", ""Wireless Mouse""]",1452.14,{},121291,0,South America +2024-07-21,4573,8054,"[""Keyboard""]",3859.62,"{""loyalty"": ""28%""}",219887,1,Asia +2024-07-25,4574,3997,"[""Charger"", ""Tablet"", ""Phone""]",713.7,"{"""": ""15%""}",178163,0,Africa +2023-02-21,4575,6120,"[""Keyboard"", ""Wireless Mouse""]",3598.49,"{""promo"": ""6%""}",260418,0,Europe +2023-01-02,4576,694,"[""Headphones""]",731.6,"{""loyalty"": ""16%""}",171705,1,North America +2024-07-24,4577,1826,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4415.55,{},148947,1,Asia +2023-07-23,4578,1889,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4371.06,{},44199,0,South America +2024-03-10,4579,7269,"[""Laptop"", ""Headphones"", ""Charger""]",2320.96,{},73793,1,North America +2024-03-13,4580,1594,"[""Laptop"", ""Monitor""]",1606.58,{},33102,1,Asia +2023-03-15,4581,6986,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1257.52,{},60021,1,Europe +2023-04-13,4582,3078,"[""Monitor"", ""Keyboard"", ""Tablet""]",2416.81,{},153167,0,Europe +2023-02-28,4583,6023,"[""Laptop""]",845.35,"{""promo"": ""25%""}",135792,0,North America +2024-04-15,4584,6507,"[""Charger""]",2266.41,{},67086,0,Africa +2023-03-17,4585,5393,"[""Keyboard"", ""Phone"", ""Headphones""]",3460.57,{},131335,1,South America +2024-12-17,4586,1595,"[""Phone"", ""Laptop"", ""Charger""]",2512.61,"{""promo"": ""6%""}",54747,0,South America +2023-02-06,4587,1857,"[""Phone"", ""Keyboard""]",2247.43,{},84812,1,Africa +2023-02-10,4588,6472,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2406.87,"{""loyalty"": ""10%""}",80679,0,Africa +2024-12-21,4589,4301,"[""Laptop""]",4082.32,{},180208,1,North America +2024-05-26,4590,4375,"[""Monitor"", ""Headphones""]",4571.45,{},189128,1,Africa +2024-06-17,4591,2572,"[""Headphones""]",4375.21,"{"""": ""6%""}",77854,1,Asia +2024-11-02,4592,2984,"[""Headphones"", ""Wireless Mouse""]",2110.99,"{""promo"": ""26%""}",8696,1,North America +2024-10-25,4593,8429,"[""Monitor"", ""Headphones""]",2171.67,"{""seasonal"": ""25%""}",91843,0,Europe +2024-05-10,4594,8796,"[""Phone""]",2317.5,"{""loyalty"": ""7%""}",231683,1,Africa +2024-01-08,4595,3634,"[""Keyboard"", ""Phone""]",2395.39,"{"""": ""28%""}",273249,0,Europe +2023-01-04,4596,7667,"[""Laptop""]",1951.13,{},77506,1,Africa +2024-10-04,4597,1763,"[""Monitor"", ""Keyboard""]",215.49,{},248427,1,South America +2023-05-30,4598,5379,"[""Tablet""]",578.36,"{"""": ""28%""}",101763,1,Europe +2023-05-22,4599,8241,"[""Laptop"", ""Wireless Mouse""]",2878.72,{},88447,0,Asia +2023-09-04,4600,9147,"[""Charger"", ""Headphones"", ""Phone""]",3163.25,{},66876,1,Africa +2023-07-30,4601,1881,"[""Laptop"", ""Headphones""]",3142.87,"{"""": ""7%""}",236539,1,South America +2024-03-30,4602,4867,"[""Charger"", ""Keyboard""]",2521.1,"{"""": ""28%""}",178343,0,South America +2024-10-02,4603,5616,"[""Phone"", ""Charger"", ""Headphones""]",4241.62,{},19630,1,Asia +2024-07-18,4604,6248,"[""Tablet"", ""Keyboard"", ""Charger""]",872.39,{},208476,1,North America +2024-10-10,4605,5708,"[""Laptop""]",2545.47,{},139733,0,Asia +2023-01-18,4606,4296,"[""Laptop"", ""Phone""]",973.28,{},161302,0,North America +2023-10-09,4607,4373,"[""Monitor""]",380.1,"{"""": ""28%""}",226046,0,Europe +2023-03-17,4608,8444,"[""Monitor""]",2571.68,"{"""": ""30%""}",182770,0,Asia +2023-09-18,4609,5782,"[""Wireless Mouse""]",1361.97,{},72763,1,Africa +2024-04-08,4610,4654,"[""Wireless Mouse""]",3982.86,{},298106,0,Africa +2024-05-05,4611,9470,"[""Headphones"", ""Monitor""]",949.87,"{"""": ""12%""}",88021,1,Asia +2024-10-30,4612,9725,"[""Monitor""]",1623.14,"{""promo"": ""14%""}",33333,0,South America +2023-04-08,4613,9184,"[""Tablet"", ""Charger"", ""Laptop""]",60.48,{},275011,1,Europe +2023-07-31,4614,2162,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1725.35,"{""loyalty"": ""25%""}",18450,1,South America +2023-09-25,4615,988,"[""Headphones"", ""Charger"", ""Phone""]",4271.54,{},51950,1,North America +2024-11-16,4616,2348,"[""Keyboard"", ""Wireless Mouse""]",1105.03,{},153515,0,South America +2023-04-18,4617,5334,"[""Wireless Mouse"", ""Keyboard""]",4467.29,"{"""": ""19%""}",146128,0,Europe +2024-08-26,4618,8555,"[""Wireless Mouse""]",2739.58,"{""seasonal"": ""27%""}",115153,1,North America +2023-08-02,4619,902,"[""Tablet"", ""Phone"", ""Charger""]",4935.59,"{""loyalty"": ""12%""}",166000,0,Africa +2024-04-26,4620,7871,"[""Charger"", ""Headphones"", ""Phone""]",315.86,{},62761,0,Africa +2023-07-08,4621,6873,"[""Charger""]",2698.99,{},3643,0,South America +2023-12-07,4622,7950,"[""Laptop"", ""Keyboard"", ""Headphones""]",3077.48,{},83193,1,South America +2024-10-27,4623,6952,"[""Monitor""]",1624.55,{},233654,1,Africa +2023-06-01,4624,8363,"[""Keyboard"", ""Laptop""]",2230.75,"{"""": ""21%""}",180444,0,Africa +2024-05-17,4625,2500,"[""Phone"", ""Charger""]",3459.38,{},141568,1,South America +2023-05-06,4626,2776,"[""Phone"", ""Keyboard""]",3762.51,"{""loyalty"": ""13%""}",36240,1,Europe +2024-02-29,4627,7416,"[""Charger"", ""Phone""]",4734.08,"{""seasonal"": ""21%""}",123591,1,North America +2024-05-15,4628,2496,"[""Monitor""]",1054.51,"{""seasonal"": ""8%""}",278153,0,Asia +2024-12-29,4629,755,"[""Phone"", ""Headphones""]",4135.46,"{""promo"": ""27%""}",73849,1,Africa +2024-03-14,4630,5221,"[""Wireless Mouse""]",2155.17,{},72720,0,North America +2023-10-02,4631,4030,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2824.52,"{""seasonal"": ""29%""}",174809,0,South America +2023-10-12,4632,7327,"[""Charger"", ""Monitor""]",4851.99,"{""promo"": ""9%""}",53395,1,Africa +2023-11-24,4633,3840,"[""Phone"", ""Keyboard""]",3994.02,"{"""": ""10%""}",257910,1,Europe +2023-01-05,4634,5005,"[""Phone""]",3974.14,{},195693,0,Africa +2024-04-23,4635,4711,"[""Tablet"", ""Wireless Mouse""]",2273.43,"{"""": ""11%""}",87768,0,Asia +2023-08-29,4636,1960,"[""Wireless Mouse"", ""Charger""]",1423.39,"{""loyalty"": ""17%""}",200090,1,Asia +2023-04-18,4637,843,"[""Tablet"", ""Laptop""]",3819.88,{},6402,0,North America +2023-12-20,4638,2639,"[""Monitor"", ""Tablet"", ""Charger""]",2744.52,"{"""": ""21%""}",177903,0,Africa +2024-01-11,4639,3615,"[""Headphones""]",3802.06,"{""loyalty"": ""14%""}",278493,0,North America +2024-01-10,4640,9840,"[""Headphones""]",3739.31,{},125501,0,North America +2023-10-15,4641,84,"[""Tablet"", ""Phone"", ""Laptop""]",4908.84,{},164943,0,Africa +2023-09-29,4642,9145,"[""Charger"", ""Tablet"", ""Headphones""]",4087.83,"{""seasonal"": ""22%""}",40866,0,North America +2023-07-10,4643,6112,"[""Keyboard""]",4988.52,{},236749,0,North America +2023-06-01,4644,6724,"[""Laptop""]",297.94,"{""loyalty"": ""18%""}",257359,0,Europe +2024-02-21,4645,4879,"[""Keyboard"", ""Wireless Mouse""]",1579.63,{},265014,1,Europe +2023-05-07,4646,7837,"[""Monitor"", ""Laptop"", ""Charger""]",1788.86,"{""promo"": ""27%""}",49830,0,Europe +2023-04-16,4647,1438,"[""Headphones"", ""Phone"", ""Tablet""]",975.97,"{""promo"": ""21%""}",38649,1,North America +2024-12-05,4648,8456,"[""Laptop""]",4638.89,{},57346,1,Europe +2024-07-27,4649,9956,"[""Tablet""]",3757.28,"{""loyalty"": ""5%""}",21862,0,Asia +2023-10-21,4650,4071,"[""Tablet"", ""Monitor""]",1498.43,{},278092,1,Africa +2023-01-07,4651,746,"[""Headphones"", ""Tablet""]",3300.58,"{""seasonal"": ""28%""}",251976,0,Asia +2023-12-22,4652,9881,"[""Headphones"", ""Tablet"", ""Laptop""]",359.22,"{""promo"": ""7%""}",151019,1,North America +2024-05-29,4653,9630,"[""Keyboard"", ""Tablet""]",1640.59,"{""loyalty"": ""24%""}",22432,1,Europe +2023-07-16,4654,6352,"[""Tablet"", ""Keyboard""]",3667.02,{},26433,1,Africa +2023-03-25,4655,9604,"[""Phone"", ""Charger"", ""Monitor""]",3544.08,{},100379,0,Europe +2024-04-21,4656,9906,"[""Monitor"", ""Wireless Mouse""]",3228.18,"{"""": ""16%""}",127620,0,North America +2023-04-25,4657,2296,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4545.29,{},65949,0,Africa +2023-12-22,4658,1130,"[""Charger"", ""Tablet""]",3261.99,"{""seasonal"": ""19%""}",215650,0,South America +2024-03-24,4659,3146,"[""Monitor""]",964.7,"{""promo"": ""22%""}",190505,0,Europe +2024-01-07,4660,1373,"[""Keyboard"", ""Wireless Mouse""]",54.97,{},29128,0,Asia +2024-02-22,4661,5106,"[""Wireless Mouse""]",3534.64,"{""loyalty"": ""27%""}",207628,1,North America +2023-03-24,4662,2060,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3396.08,"{""promo"": ""15%""}",137811,1,Europe +2024-04-12,4663,1944,"[""Charger"", ""Tablet"", ""Headphones""]",4347.27,{},181523,1,Africa +2024-02-14,4664,8586,"[""Headphones""]",4720.79,{},286912,0,North America +2024-12-08,4665,1485,"[""Wireless Mouse"", ""Charger""]",3168.76,"{"""": ""20%""}",99873,1,Europe +2023-12-17,4666,6026,"[""Laptop"", ""Wireless Mouse""]",2121.76,"{""seasonal"": ""17%""}",28870,0,Africa +2023-06-17,4667,5319,"[""Tablet""]",3071.98,{},165544,1,North America +2023-02-10,4668,8644,"[""Charger""]",1825.46,"{""promo"": ""24%""}",238984,1,North America +2024-07-03,4669,4577,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1438.64,"{"""": ""25%""}",116761,1,Asia +2023-01-27,4670,9575,"[""Phone"", ""Headphones""]",773.06,"{""loyalty"": ""16%""}",198237,0,Africa +2024-09-07,4671,7818,"[""Wireless Mouse"", ""Phone""]",663.14,{},215586,1,North America +2024-10-04,4672,6912,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1676.57,"{""promo"": ""20%""}",274802,0,Asia +2023-01-08,4673,6042,"[""Monitor"", ""Charger"", ""Keyboard""]",4428.67,{},235927,1,Asia +2023-02-07,4674,4756,"[""Keyboard"", ""Tablet"", ""Charger""]",3819.75,{},165080,0,Europe +2024-01-28,4675,1187,"[""Charger"", ""Tablet""]",897.31,{},21860,0,North America +2024-06-07,4676,2876,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2394.17,{},98922,1,North America +2024-03-20,4677,3286,"[""Charger"", ""Phone""]",2996.08,{},37479,1,North America +2024-07-03,4678,8819,"[""Keyboard"", ""Laptop""]",1076.04,{},21077,0,Europe +2023-09-26,4679,4681,"[""Headphones"", ""Phone"", ""Tablet""]",4023.37,{},21557,0,Europe +2023-01-29,4680,4670,"[""Keyboard"", ""Phone""]",4413.82,{},76213,0,South America +2024-04-27,4681,7471,"[""Charger""]",4391.39,{},99214,0,South America +2023-09-16,4682,5476,"[""Tablet"", ""Headphones"", ""Keyboard""]",2378.52,{},30430,0,South America +2023-01-18,4683,6398,"[""Headphones"", ""Wireless Mouse""]",193.55,"{""seasonal"": ""15%""}",191318,1,Africa +2024-03-31,4684,7464,"[""Phone"", ""Monitor""]",1700.42,{},202752,1,Africa +2024-07-29,4685,8078,"[""Laptop"", ""Tablet"", ""Headphones""]",1875.52,{},70405,1,North America +2024-05-19,4686,4777,"[""Phone"", ""Wireless Mouse""]",4294.64,"{""loyalty"": ""30%""}",63045,0,Europe +2023-01-07,4687,1428,"[""Keyboard"", ""Monitor""]",571.3,{},231209,0,Asia +2023-06-23,4688,9695,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",125.62,{},24385,0,North America +2024-08-27,4689,9592,"[""Headphones""]",4236.26,"{""promo"": ""30%""}",275584,1,Europe +2024-01-27,4690,1134,"[""Monitor"", ""Laptop""]",3311.73,"{""promo"": ""20%""}",277105,1,Europe +2023-09-16,4691,1341,"[""Laptop"", ""Keyboard""]",2000.58,{},134585,0,Africa +2024-04-24,4692,9078,"[""Keyboard"", ""Charger"", ""Tablet""]",1622.95,{},296939,0,North America +2023-01-27,4693,2238,"[""Tablet""]",570.55,{},14477,1,Asia +2024-12-08,4694,4144,"[""Phone"", ""Tablet""]",3642.9,{},284487,0,Europe +2023-08-24,4695,7646,"[""Monitor""]",1988.22,{},226318,0,North America +2023-09-14,4696,4241,"[""Charger""]",3340.75,{},35640,1,North America +2023-01-22,4697,5157,"[""Tablet"", ""Monitor"", ""Keyboard""]",2038.14,"{"""": ""26%""}",252437,1,Asia +2024-06-03,4698,7823,"[""Tablet"", ""Keyboard"", ""Phone""]",145.85,"{""promo"": ""8%""}",167084,1,Asia +2023-09-23,4699,5670,"[""Charger""]",1243.33,{},77204,0,South America +2024-01-15,4700,8660,"[""Wireless Mouse""]",4252.89,"{""seasonal"": ""19%""}",123810,1,South America +2024-04-30,4701,1683,"[""Tablet""]",2093.31,{},54986,0,North America +2023-04-08,4702,7268,"[""Headphones"", ""Monitor"", ""Keyboard""]",1640.06,{},207007,0,South America +2024-11-20,4703,1181,"[""Tablet"", ""Charger"", ""Headphones""]",4503.77,"{"""": ""29%""}",65706,1,South America +2023-01-17,4704,9846,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",652.11,"{""seasonal"": ""11%""}",257694,1,Africa +2024-03-22,4705,6967,"[""Wireless Mouse"", ""Keyboard""]",3791.24,{},263829,1,South America +2024-05-15,4706,1737,"[""Tablet"", ""Keyboard"", ""Laptop""]",4882.16,"{""seasonal"": ""27%""}",143288,0,Asia +2024-11-25,4707,9963,"[""Headphones""]",2883.01,{},142771,1,Africa +2023-09-13,4708,5589,"[""Wireless Mouse""]",4549.94,{},162819,1,South America +2024-08-03,4709,1151,"[""Headphones"", ""Laptop"", ""Charger""]",3180.08,{},148544,1,Africa +2023-12-25,4710,1993,"[""Phone"", ""Keyboard""]",4236.56,{},99468,1,Asia +2023-12-04,4711,9127,"[""Laptop""]",1318.47,"{"""": ""14%""}",199456,1,Africa +2024-07-30,4712,1747,"[""Phone"", ""Monitor"", ""Tablet""]",2807.85,{},33940,0,South America +2024-07-29,4713,5830,"[""Keyboard""]",4562.0,"{""promo"": ""5%""}",184475,0,Asia +2024-03-24,4714,8910,"[""Phone""]",3339.54,"{""loyalty"": ""22%""}",237954,1,Europe +2023-02-21,4715,225,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3976.1,{},43340,0,Europe +2023-03-05,4716,3023,"[""Charger"", ""Monitor""]",524.07,"{"""": ""15%""}",139463,1,South America +2024-08-07,4717,9511,"[""Phone""]",2981.81,"{""promo"": ""7%""}",115179,0,Europe +2024-12-14,4718,4771,"[""Charger""]",2847.55,{},173727,1,North America +2024-10-25,4719,1293,"[""Monitor""]",1121.95,{},144873,0,North America +2024-01-01,4720,5473,"[""Phone"", ""Keyboard"", ""Laptop""]",4266.1,{},50191,1,Europe +2023-02-12,4721,7757,"[""Phone"", ""Headphones"", ""Tablet""]",3050.56,"{"""": ""8%""}",202137,0,North America +2024-08-11,4722,9594,"[""Phone"", ""Wireless Mouse""]",1903.27,"{"""": ""29%""}",36873,1,Europe +2024-10-22,4723,1497,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3596.17,"{""promo"": ""5%""}",227625,0,North America +2024-03-24,4724,1883,"[""Headphones""]",743.34,"{""seasonal"": ""15%""}",183567,1,Asia +2023-02-23,4725,1143,"[""Headphones"", ""Laptop"", ""Monitor""]",4731.8,"{""promo"": ""29%""}",188705,0,South America +2024-06-13,4726,1357,"[""Phone""]",1429.2,{},218401,1,Africa +2023-04-17,4727,9237,"[""Charger"", ""Keyboard"", ""Tablet""]",98.25,{},127551,0,Europe +2024-10-01,4728,1998,"[""Keyboard""]",3187.14,"{""promo"": ""30%""}",162932,1,Europe +2024-08-21,4729,1201,"[""Headphones"", ""Tablet""]",1414.57,"{""seasonal"": ""18%""}",197178,1,South America +2023-02-18,4730,5029,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4859.67,"{""seasonal"": ""25%""}",144486,0,Asia +2024-02-13,4731,1904,"[""Headphones"", ""Laptop"", ""Charger""]",4511.54,"{""promo"": ""24%""}",135854,0,South America +2023-04-29,4732,4337,"[""Headphones"", ""Laptop""]",4026.92,"{""promo"": ""25%""}",59608,1,North America +2023-12-20,4733,1069,"[""Keyboard""]",4834.66,"{""promo"": ""22%""}",184680,0,North America +2023-04-28,4734,2804,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1704.15,{},48785,1,South America +2023-01-18,4735,4536,"[""Headphones"", ""Laptop""]",170.21,"{""promo"": ""12%""}",27778,1,Europe +2024-01-25,4736,4761,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",753.46,"{"""": ""10%""}",181054,0,Asia +2023-04-29,4737,9491,"[""Keyboard"", ""Headphones""]",2765.14,{},47494,0,North America +2024-10-05,4738,5355,"[""Headphones""]",3440.02,{},43187,0,South America +2023-03-06,4739,392,"[""Tablet"", ""Monitor""]",1668.3,"{""promo"": ""24%""}",229604,0,Asia +2024-11-25,4740,9040,"[""Laptop""]",1624.34,{},7106,0,South America +2023-04-21,4741,1729,"[""Keyboard""]",1440.73,{},257170,1,Europe +2023-02-03,4742,2121,"[""Charger"", ""Keyboard""]",2465.77,"{""seasonal"": ""11%""}",9195,1,Africa +2024-11-11,4743,3654,"[""Keyboard"", ""Tablet"", ""Charger""]",2771.82,{},297686,0,Africa +2023-02-02,4744,1068,"[""Laptop""]",190.57,"{""loyalty"": ""19%""}",231531,1,South America +2024-04-06,4745,3509,"[""Laptop"", ""Keyboard""]",1931.65,"{""promo"": ""16%""}",46933,0,Asia +2024-05-25,4746,6905,"[""Headphones""]",1541.41,"{""loyalty"": ""18%""}",108129,0,Asia +2024-09-09,4747,9221,"[""Headphones""]",2171.01,{},282839,0,South America +2023-10-04,4748,5166,"[""Keyboard"", ""Charger"", ""Laptop""]",2637.38,{},218753,0,Africa +2023-10-18,4749,7626,"[""Phone"", ""Laptop"", ""Charger""]",1226.13,{},49842,0,North America +2024-08-29,4750,4375,"[""Charger""]",1875.9,"{""seasonal"": ""10%""}",79043,1,North America +2023-05-17,4751,5607,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",659.44,"{""seasonal"": ""21%""}",160467,1,Europe +2023-08-01,4752,6240,"[""Phone""]",1017.83,{},28071,0,Asia +2023-01-30,4753,8952,"[""Phone"", ""Wireless Mouse""]",3047.24,{},151194,0,South America +2024-08-16,4754,8488,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1164.89,{},38025,1,North America +2023-04-14,4755,5940,"[""Headphones"", ""Monitor"", ""Charger""]",2964.99,"{"""": ""20%""}",148322,0,North America +2023-06-06,4756,945,"[""Keyboard""]",865.65,{},6698,1,Europe +2023-06-30,4757,2673,"[""Phone"", ""Charger""]",1838.71,"{""promo"": ""24%""}",227056,1,Africa +2024-12-08,4758,5209,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",951.52,"{""promo"": ""17%""}",177943,0,Asia +2024-01-05,4759,1168,"[""Keyboard""]",2538.59,{},84898,0,Africa +2023-03-24,4760,2666,"[""Monitor"", ""Laptop"", ""Phone""]",2466.54,"{""loyalty"": ""26%""}",214283,1,Africa +2023-09-08,4761,2789,"[""Monitor"", ""Tablet"", ""Charger""]",262.64,{},218749,0,Asia +2024-03-31,4762,1387,"[""Laptop"", ""Phone""]",2827.74,"{"""": ""27%""}",193860,1,Asia +2023-01-13,4763,3204,"[""Monitor"", ""Phone""]",1271.68,"{""promo"": ""24%""}",80630,0,Africa +2023-09-08,4764,1942,"[""Phone"", ""Keyboard""]",3851.27,"{""loyalty"": ""29%""}",57821,0,Asia +2024-03-18,4765,6214,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2558.93,{},197207,0,Africa +2023-01-05,4766,8644,"[""Phone""]",2248.82,{},262247,0,Asia +2024-12-05,4767,9247,"[""Charger"", ""Tablet"", ""Headphones""]",3580.77,"{"""": ""8%""}",150424,1,Asia +2024-02-12,4768,6150,"[""Monitor"", ""Keyboard""]",2577.24,"{"""": ""24%""}",80963,1,Africa +2023-02-19,4769,3624,"[""Headphones"", ""Monitor""]",1809.42,{},25172,1,Europe +2024-08-03,4770,3233,"[""Tablet"", ""Charger"", ""Phone""]",2449.13,{},5478,0,Africa +2023-04-20,4771,6995,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2788.19,"{""promo"": ""7%""}",72782,1,Europe +2024-07-22,4772,12,"[""Monitor"", ""Wireless Mouse""]",843.65,{},49609,0,South America +2024-01-28,4773,6384,"[""Charger""]",3139.36,"{""loyalty"": ""11%""}",267107,1,South America +2024-09-10,4774,2524,"[""Charger"", ""Laptop"", ""Headphones""]",589.92,"{""promo"": ""11%""}",204713,0,North America +2023-03-25,4775,3107,"[""Headphones""]",4972.84,{},135411,1,Africa +2023-11-22,4776,2328,"[""Keyboard""]",3734.49,"{"""": ""12%""}",233350,1,South America +2024-11-26,4777,5438,"[""Wireless Mouse"", ""Phone""]",2509.35,"{""loyalty"": ""6%""}",280740,0,North America +2023-06-30,4778,8663,"[""Keyboard"", ""Laptop""]",972.45,"{""seasonal"": ""5%""}",204248,1,Europe +2023-07-01,4779,7584,"[""Monitor"", ""Headphones""]",1422.69,"{""promo"": ""7%""}",114617,1,Asia +2024-11-13,4780,8631,"[""Laptop""]",2658.03,{},262284,1,Europe +2024-11-26,4781,5634,"[""Wireless Mouse"", ""Monitor""]",3698.05,"{""loyalty"": ""15%""}",61280,1,Africa +2023-12-30,4782,1294,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4380.52,{},77582,0,Africa +2023-01-09,4783,5443,"[""Monitor"", ""Laptop""]",782.66,"{""seasonal"": ""9%""}",77882,0,Asia +2023-07-18,4784,7527,"[""Wireless Mouse""]",4404.46,"{""loyalty"": ""17%""}",72171,0,Africa +2024-02-22,4785,1140,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1118.92,"{""seasonal"": ""22%""}",124862,1,Asia +2024-09-25,4786,3214,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2310.54,{},293962,1,Europe +2024-12-14,4787,5397,"[""Wireless Mouse""]",690.2,{},193562,1,Asia +2024-07-18,4788,1211,"[""Laptop""]",3991.6,{},204546,0,Asia +2024-04-22,4789,7893,"[""Charger"", ""Keyboard""]",1721.06,{},102294,0,Asia +2024-07-09,4790,5562,"[""Keyboard""]",2216.58,"{""promo"": ""29%""}",287261,1,Africa +2023-07-11,4791,7669,"[""Wireless Mouse"", ""Monitor""]",1613.68,{},5147,1,South America +2024-12-29,4792,6120,"[""Headphones"", ""Laptop""]",1730.96,"{"""": ""13%""}",218418,0,Asia +2023-09-23,4793,9062,"[""Tablet"", ""Keyboard""]",59.12,"{""seasonal"": ""22%""}",10513,1,Europe +2024-11-07,4794,7868,"[""Monitor""]",4976.88,"{""promo"": ""17%""}",240778,1,Europe +2024-08-27,4795,7064,"[""Laptop""]",2948.94,{},202768,0,Europe +2024-10-09,4796,5512,"[""Headphones"", ""Monitor""]",4749.16,{},191261,1,Africa +2023-03-06,4797,4589,"[""Charger"", ""Phone""]",159.25,{},202761,0,Africa +2024-04-06,4798,7163,"[""Charger"", ""Keyboard"", ""Phone""]",4565.59,{},224859,0,North America +2023-09-05,4799,775,"[""Tablet""]",4472.16,{},19185,1,Africa +2024-04-04,4800,9896,"[""Keyboard"", ""Tablet""]",4249.06,{},236301,0,South America +2024-05-18,4801,9777,"[""Monitor""]",1774.1,"{""promo"": ""26%""}",237110,1,South America +2024-06-13,4802,6708,"[""Monitor"", ""Headphones"", ""Laptop""]",3034.01,"{""seasonal"": ""6%""}",209362,0,South America +2023-01-18,4803,3607,"[""Headphones"", ""Keyboard"", ""Monitor""]",2180.75,"{""seasonal"": ""13%""}",185936,1,Europe +2024-11-19,4804,9593,"[""Charger"", ""Wireless Mouse""]",4647.89,"{""seasonal"": ""18%""}",47567,1,South America +2023-08-14,4805,2786,"[""Headphones"", ""Monitor""]",3725.09,{},263414,0,Africa +2024-10-28,4806,6492,"[""Wireless Mouse""]",3685.94,{},171561,0,Europe +2024-07-19,4807,1494,"[""Wireless Mouse""]",196.57,"{""promo"": ""25%""}",95001,0,South America +2023-07-30,4808,437,"[""Monitor""]",528.53,{},132440,1,Africa +2023-08-31,4809,2884,"[""Tablet"", ""Keyboard"", ""Phone""]",2291.99,{},265952,0,Africa +2023-04-10,4810,2888,"[""Monitor"", ""Wireless Mouse""]",1561.92,{},198199,0,Asia +2023-12-23,4811,6228,"[""Laptop"", ""Headphones"", ""Tablet""]",905.1,"{""seasonal"": ""20%""}",220087,1,Asia +2023-01-07,4812,4273,"[""Keyboard"", ""Charger""]",2270.46,{},70327,1,Asia +2024-09-05,4813,5132,"[""Tablet"", ""Phone"", ""Keyboard""]",3068.12,"{""loyalty"": ""9%""}",35775,1,North America +2023-05-15,4814,6234,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",226.14,{},179911,1,North America +2023-06-15,4815,1829,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3799.5,"{""seasonal"": ""18%""}",200669,1,Asia +2023-04-24,4816,9268,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4730.39,{},6361,0,Africa +2023-09-01,4817,1558,"[""Monitor""]",1389.52,{},194592,0,Asia +2024-01-15,4818,2517,"[""Monitor""]",1369.48,"{""loyalty"": ""29%""}",133000,0,Asia +2023-03-13,4819,1097,"[""Phone"", ""Headphones""]",4593.89,"{""seasonal"": ""11%""}",5090,0,South America +2024-08-28,4820,7177,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1106.47,{},90677,1,Asia +2024-06-11,4821,3781,"[""Laptop"", ""Keyboard""]",286.49,{},114007,0,North America +2024-01-03,4822,2778,"[""Headphones""]",4251.73,{},135768,0,Europe +2024-11-01,4823,7264,"[""Charger"", ""Tablet""]",3872.67,{},172190,1,Africa +2024-09-01,4824,1796,"[""Monitor""]",3605.93,"{""promo"": ""15%""}",240803,1,North America +2023-09-28,4825,9342,"[""Charger"", ""Phone""]",3235.62,"{""loyalty"": ""26%""}",17345,1,Africa +2023-05-05,4826,3485,"[""Monitor""]",794.71,{},103319,0,Asia +2023-12-28,4827,6733,"[""Keyboard""]",3417.43,"{""loyalty"": ""14%""}",103500,1,South America +2023-02-27,4828,5899,"[""Laptop"", ""Tablet""]",1514.11,"{"""": ""21%""}",272362,1,North America +2023-03-22,4829,5456,"[""Phone"", ""Monitor""]",1134.2,{},174724,0,Europe +2023-09-01,4830,3973,"[""Headphones""]",2181.2,"{"""": ""29%""}",119613,0,South America +2024-09-09,4831,9145,"[""Phone""]",484.61,"{""seasonal"": ""11%""}",39526,1,Asia +2024-08-06,4832,6743,"[""Monitor"", ""Headphones""]",947.95,"{""loyalty"": ""15%""}",117407,0,Europe +2024-01-29,4833,1377,"[""Tablet"", ""Keyboard"", ""Headphones""]",4804.31,"{"""": ""16%""}",39043,1,South America +2023-12-31,4834,7875,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",161.72,"{"""": ""5%""}",69631,0,South America +2024-11-02,4835,1722,"[""Tablet""]",2566.46,{},193569,1,Africa +2023-01-30,4836,3286,"[""Laptop"", ""Keyboard""]",883.09,"{""loyalty"": ""19%""}",169177,1,Asia +2024-03-30,4837,6150,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4630.57,"{""promo"": ""27%""}",25907,0,South America +2023-03-09,4838,9199,"[""Keyboard"", ""Laptop""]",3825.21,"{""seasonal"": ""18%""}",182672,1,Asia +2023-02-12,4839,9057,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",562.48,"{"""": ""24%""}",227633,0,Africa +2024-04-04,4840,6192,"[""Tablet"", ""Monitor""]",885.03,{},79980,0,North America +2023-03-08,4841,7071,"[""Phone"", ""Charger"", ""Laptop""]",1787.0,{},220570,1,Africa +2023-11-14,4842,1201,"[""Tablet""]",3258.11,"{""seasonal"": ""11%""}",232962,1,North America +2023-04-05,4843,1937,"[""Tablet""]",276.25,{},255086,1,Africa +2023-08-14,4844,4188,"[""Tablet""]",1220.19,{},299077,0,Asia +2024-12-23,4845,2973,"[""Keyboard""]",593.76,"{""promo"": ""7%""}",270776,1,Africa +2024-11-07,4846,5018,"[""Wireless Mouse"", ""Charger""]",2961.23,{},13583,1,Europe +2023-12-10,4847,135,"[""Wireless Mouse""]",486.37,{},151999,1,Asia +2023-09-26,4848,3309,"[""Wireless Mouse"", ""Headphones""]",891.82,"{""loyalty"": ""29%""}",247820,1,Europe +2023-06-29,4849,9512,"[""Tablet"", ""Phone""]",1962.33,{},63530,1,Africa +2024-10-19,4850,7158,"[""Headphones"", ""Tablet""]",4512.99,"{""promo"": ""6%""}",61422,1,Asia +2023-12-20,4851,5250,"[""Phone"", ""Wireless Mouse""]",4784.78,{},199428,0,South America +2024-05-29,4852,6571,"[""Monitor""]",3984.26,{},18112,0,South America +2023-06-10,4853,856,"[""Keyboard"", ""Phone"", ""Charger""]",1755.42,{},107263,1,Asia +2023-06-26,4854,2672,"[""Keyboard"", ""Laptop""]",967.28,"{""loyalty"": ""20%""}",171795,1,North America +2023-06-16,4855,5075,"[""Headphones"", ""Keyboard""]",70.49,"{""seasonal"": ""5%""}",90756,0,South America +2023-07-30,4856,8162,"[""Headphones""]",3560.27,"{""promo"": ""23%""}",107281,0,Asia +2024-12-29,4857,7220,"[""Keyboard"", ""Tablet""]",4877.18,{},166814,1,Africa +2024-12-29,4858,9117,"[""Phone""]",3409.77,"{""promo"": ""19%""}",41599,1,South America +2023-09-15,4859,3807,"[""Tablet"", ""Keyboard"", ""Headphones""]",962.08,"{""loyalty"": ""8%""}",125440,0,Europe +2023-04-08,4860,8935,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4780.25,{},266922,0,Africa +2023-03-04,4861,1605,"[""Keyboard"", ""Tablet""]",225.66,{},226468,1,Europe +2023-06-04,4862,5663,"[""Monitor"", ""Keyboard""]",3454.15,"{""loyalty"": ""11%""}",11436,0,North America +2024-09-21,4863,6258,"[""Laptop"", ""Keyboard""]",4736.44,{},197015,0,South America +2023-02-06,4864,9234,"[""Laptop"", ""Charger""]",4311.85,{},273285,1,Europe +2024-07-11,4865,2105,"[""Laptop"", ""Monitor""]",1698.72,{},13010,0,North America +2024-10-26,4866,2818,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",231.67,"{"""": ""26%""}",15646,1,North America +2023-07-08,4867,4641,"[""Headphones"", ""Laptop""]",2874.63,{},243365,1,Asia +2023-09-28,4868,179,"[""Tablet""]",3428.26,{},179491,1,North America +2023-07-08,4869,2444,"[""Tablet""]",3890.17,"{""promo"": ""25%""}",28500,0,Asia +2023-05-26,4870,8669,"[""Phone"", ""Tablet""]",4056.98,"{""loyalty"": ""15%""}",262393,0,South America +2023-09-20,4871,4342,"[""Headphones"", ""Tablet""]",650.96,"{""seasonal"": ""5%""}",246449,1,Asia +2024-03-22,4872,4919,"[""Laptop""]",2803.17,{},67621,0,Africa +2023-09-21,4873,7523,"[""Headphones""]",2121.58,"{""loyalty"": ""19%""}",173656,1,North America +2023-08-17,4874,9152,"[""Monitor""]",1780.18,{},258137,0,South America +2024-01-16,4875,7172,"[""Phone"", ""Wireless Mouse""]",336.28,{},57257,1,North America +2023-03-06,4876,9248,"[""Laptop"", ""Phone""]",1292.44,"{""promo"": ""23%""}",95918,1,Africa +2024-10-31,4877,189,"[""Keyboard"", ""Headphones"", ""Tablet""]",3721.62,{},253227,0,North America +2023-12-04,4878,7976,"[""Wireless Mouse""]",2781.44,{},170082,1,Europe +2023-07-15,4879,8597,"[""Tablet""]",2667.43,{},92675,1,Europe +2023-06-06,4880,3172,"[""Laptop""]",4926.04,"{"""": ""14%""}",78618,1,Africa +2023-11-09,4881,1368,"[""Wireless Mouse"", ""Charger""]",1657.54,{},33383,0,Africa +2023-03-03,4882,2263,"[""Charger"", ""Tablet"", ""Monitor""]",3542.99,"{""seasonal"": ""11%""}",299037,0,North America +2024-02-24,4883,3169,"[""Laptop"", ""Charger""]",1615.54,"{""loyalty"": ""30%""}",233110,1,North America +2023-08-16,4884,4094,"[""Charger""]",1673.2,{},176450,0,Europe +2023-08-22,4885,7112,"[""Monitor"", ""Wireless Mouse""]",845.77,{},7346,0,South America +2023-10-12,4886,4348,"[""Wireless Mouse"", ""Phone""]",3770.14,"{""promo"": ""16%""}",273846,0,Africa +2023-06-08,4887,7762,"[""Phone""]",2049.34,"{""promo"": ""19%""}",33423,0,Europe +2023-03-12,4888,2938,"[""Laptop""]",4745.91,{},276435,1,South America +2024-02-18,4889,9037,"[""Headphones"", ""Tablet""]",1546.03,"{""seasonal"": ""15%""}",153432,1,South America +2024-06-02,4890,8045,"[""Phone"", ""Headphones""]",2858.65,"{""loyalty"": ""8%""}",85195,1,Africa +2023-07-07,4891,532,"[""Headphones"", ""Keyboard""]",4384.78,"{""seasonal"": ""19%""}",30214,1,Asia +2024-01-10,4892,9073,"[""Monitor"", ""Phone"", ""Tablet""]",1074.88,"{""seasonal"": ""12%""}",53826,0,Europe +2024-03-03,4893,3071,"[""Wireless Mouse""]",1827.51,"{""loyalty"": ""28%""}",69512,0,Europe +2023-10-28,4894,6589,"[""Wireless Mouse""]",2280.18,{},176852,1,Asia +2024-08-06,4895,4047,"[""Phone"", ""Laptop"", ""Keyboard""]",920.1,{},180410,1,Africa +2024-10-28,4896,1788,"[""Laptop"", ""Tablet"", ""Headphones""]",2306.79,{},31527,1,Asia +2024-11-24,4897,3516,"[""Phone"", ""Tablet"", ""Charger""]",1366.91,{},147413,0,South America +2023-06-28,4898,2068,"[""Wireless Mouse""]",4355.48,"{""promo"": ""25%""}",67315,1,Asia +2023-11-14,4899,7584,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2420.15,"{"""": ""22%""}",20266,0,South America +2023-03-27,4900,1070,"[""Wireless Mouse""]",2226.09,{},266443,0,South America +2024-05-31,4901,4173,"[""Wireless Mouse"", ""Phone""]",2293.04,"{""promo"": ""27%""}",261909,0,South America +2024-05-20,4902,5561,"[""Tablet"", ""Laptop"", ""Headphones""]",2405.12,{},11748,0,Africa +2024-06-16,4903,226,"[""Tablet""]",304.66,"{""promo"": ""24%""}",275471,1,North America +2024-08-02,4904,5790,"[""Headphones"", ""Phone"", ""Laptop""]",201.98,"{""seasonal"": ""21%""}",9030,0,Asia +2023-10-12,4905,9504,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1466.02,"{""promo"": ""13%""}",141187,0,Europe +2023-02-25,4906,4011,"[""Wireless Mouse"", ""Phone""]",4748.52,"{""seasonal"": ""26%""}",120136,1,North America +2023-11-13,4907,5345,"[""Keyboard""]",4521.75,{},188351,0,South America +2023-07-11,4908,5090,"[""Monitor""]",3748.54,{},148538,0,Asia +2023-03-20,4909,2189,"[""Tablet""]",137.32,{},272247,1,Asia +2023-04-21,4910,6978,"[""Laptop""]",858.59,{},171764,1,South America +2023-12-02,4911,7412,"[""Headphones""]",4440.96,"{""loyalty"": ""28%""}",78890,0,Europe +2024-07-31,4912,9744,"[""Phone"", ""Headphones""]",3408.04,{},90683,0,North America +2023-06-20,4913,4093,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3282.14,{},74399,0,Europe +2023-09-08,4914,2838,"[""Laptop"", ""Phone""]",3205.31,{},220587,0,Africa +2024-04-22,4915,3568,"[""Tablet"", ""Laptop""]",3017.88,{},171393,0,Africa +2024-10-11,4916,7290,"[""Tablet"", ""Laptop"", ""Keyboard""]",1985.78,{},131685,1,Africa +2023-06-20,4917,4861,"[""Monitor""]",918.53,{},114679,0,South America +2024-08-14,4918,6326,"[""Charger"", ""Phone"", ""Tablet""]",4909.44,{},288282,1,North America +2024-01-06,4919,6919,"[""Charger"", ""Keyboard""]",1888.72,{},221223,1,South America +2023-02-23,4920,3992,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",297.32,"{""loyalty"": ""16%""}",246985,1,South America +2023-10-21,4921,4226,"[""Charger""]",4745.72,{},239444,1,North America +2024-02-14,4922,3242,"[""Tablet"", ""Headphones""]",3257.64,{},199034,0,Africa +2023-12-09,4923,2661,"[""Monitor"", ""Tablet"", ""Laptop""]",3299.86,"{"""": ""22%""}",44519,1,North America +2023-03-23,4924,5518,"[""Phone"", ""Tablet""]",1843.79,{},57361,0,Asia +2024-10-12,4925,8277,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",997.57,{},53902,0,Africa +2024-06-11,4926,9277,"[""Charger"", ""Phone"", ""Monitor""]",592.41,{},116714,1,South America +2023-04-08,4927,4422,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2793.48,{},152226,0,South America +2024-10-15,4928,1665,"[""Tablet"", ""Laptop""]",1689.93,{},249787,0,Africa +2023-05-14,4929,1378,"[""Tablet"", ""Phone"", ""Monitor""]",4977.76,{},111458,0,Africa +2024-12-27,4930,1569,"[""Wireless Mouse"", ""Tablet""]",2608.28,{},27117,1,Asia +2023-09-27,4931,3232,"[""Monitor""]",2502.59,{},239368,1,Europe +2024-01-22,4932,8961,"[""Monitor"", ""Headphones""]",1164.24,{},180213,0,North America +2024-02-15,4933,353,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2572.73,"{"""": ""8%""}",222601,1,North America +2024-07-30,4934,6110,"[""Headphones""]",1763.47,"{"""": ""12%""}",215702,1,Africa +2024-12-07,4935,601,"[""Wireless Mouse""]",3049.74,{},121854,0,Africa +2023-06-20,4936,6735,"[""Monitor"", ""Laptop""]",2633.07,"{""seasonal"": ""11%""}",154977,0,Europe +2024-08-27,4937,4918,"[""Wireless Mouse""]",2175.63,{},271882,0,Africa +2024-02-16,4938,3978,"[""Charger"", ""Monitor"", ""Tablet""]",1067.07,{},265287,0,South America +2023-12-08,4939,8829,"[""Monitor"", ""Wireless Mouse""]",4074.2,"{""promo"": ""8%""}",201617,1,Africa +2024-03-28,4940,3716,"[""Keyboard""]",1343.11,"{""promo"": ""26%""}",21775,1,Asia +2024-09-05,4941,377,"[""Tablet"", ""Keyboard"", ""Headphones""]",3917.37,"{""seasonal"": ""26%""}",157707,1,Asia +2024-06-14,4942,7769,"[""Phone"", ""Tablet""]",3187.51,"{""seasonal"": ""7%""}",51430,0,South America +2023-12-28,4943,8416,"[""Wireless Mouse""]",4494.6,{},25664,0,North America +2024-10-27,4944,1112,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3242.56,"{""seasonal"": ""13%""}",192115,0,North America +2023-10-14,4945,4553,"[""Headphones""]",3029.67,{},126744,1,Africa +2023-05-04,4946,6017,"[""Wireless Mouse"", ""Laptop""]",4878.58,"{""promo"": ""9%""}",50305,0,Europe +2023-10-04,4947,2983,"[""Laptop"", ""Headphones""]",3808.74,"{""promo"": ""8%""}",110892,0,South America +2024-01-01,4948,4740,"[""Laptop""]",551.94,{},25648,0,Asia +2024-01-04,4949,3648,"[""Tablet""]",1051.52,"{"""": ""10%""}",14556,0,Europe +2023-07-10,4950,1749,"[""Charger""]",4608.27,"{""loyalty"": ""26%""}",190848,0,North America +2023-08-05,4951,192,"[""Keyboard"", ""Tablet""]",117.49,"{""seasonal"": ""30%""}",121652,0,North America +2023-09-16,4952,6190,"[""Phone"", ""Headphones"", ""Monitor""]",1554.97,"{""loyalty"": ""12%""}",209614,0,Asia +2024-08-16,4953,5666,"[""Laptop"", ""Monitor"", ""Keyboard""]",4562.56,{},291342,0,North America +2023-08-30,4954,7448,"[""Charger""]",3258.76,{},199600,0,South America +2023-11-25,4955,9336,"[""Monitor""]",1147.64,{},121315,1,Europe +2024-05-01,4956,9749,"[""Keyboard""]",1790.49,"{""loyalty"": ""19%""}",100524,0,South America +2024-01-30,4957,1164,"[""Laptop"", ""Charger""]",444.04,"{""promo"": ""19%""}",108154,1,South America +2023-04-05,4958,9804,"[""Headphones"", ""Phone""]",2359.53,"{""promo"": ""16%""}",117671,1,Europe +2023-04-16,4959,1152,"[""Headphones""]",3664.17,"{""seasonal"": ""14%""}",52333,1,North America +2023-07-29,4960,3945,"[""Phone""]",906.04,"{""seasonal"": ""9%""}",213797,1,Africa +2024-09-05,4961,6000,"[""Headphones"", ""Keyboard""]",2322.42,{},17358,0,South America +2024-09-12,4962,8973,"[""Tablet""]",771.61,"{""loyalty"": ""11%""}",79040,1,South America +2024-07-24,4963,5347,"[""Phone""]",2761.59,{},65710,0,Asia +2023-05-06,4964,9086,"[""Wireless Mouse""]",3219.78,"{"""": ""12%""}",191217,1,South America +2023-05-24,4965,4942,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1979.03,"{"""": ""27%""}",149347,0,Asia +2023-02-08,4966,6971,"[""Charger"", ""Headphones"", ""Tablet""]",2605.85,{},174452,0,Africa +2023-07-18,4967,8414,"[""Charger"", ""Monitor""]",649.95,{},64237,1,Europe +2024-08-02,4968,9399,"[""Monitor""]",553.1,"{"""": ""9%""}",181579,1,Asia +2023-11-29,4969,5555,"[""Charger""]",1121.27,{},258511,0,North America +2023-12-18,4970,4558,"[""Wireless Mouse"", ""Phone""]",2410.44,{},147506,0,North America +2023-03-09,4971,1665,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4140.44,"{""seasonal"": ""27%""}",156944,0,North America +2024-01-24,4972,3351,"[""Wireless Mouse"", ""Laptop""]",3363.87,{},130329,0,Europe +2023-03-18,4973,3578,"[""Phone"", ""Keyboard""]",1006.84,"{""promo"": ""25%""}",173321,1,North America +2023-12-29,4974,8039,"[""Laptop"", ""Monitor"", ""Tablet""]",1669.78,{},40052,0,North America +2023-03-05,4975,5617,"[""Charger"", ""Wireless Mouse""]",4708.13,"{"""": ""8%""}",171849,0,Africa +2023-08-21,4976,8532,"[""Phone"", ""Monitor""]",4569.51,{},129259,0,Europe +2024-12-04,4977,5799,"[""Keyboard""]",4833.53,"{""loyalty"": ""5%""}",237075,1,South America +2023-05-09,4978,4091,"[""Tablet""]",821.63,{},290840,0,North America +2023-07-25,4979,8165,"[""Tablet"", ""Charger""]",2153.24,{},139796,1,Asia +2024-09-06,4980,9043,"[""Wireless Mouse"", ""Phone""]",1817.41,{},86943,0,Asia +2023-03-16,4981,8188,"[""Monitor"", ""Phone""]",1740.13,"{""seasonal"": ""9%""}",127054,1,Africa +2023-10-09,4982,3787,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4588.84,"{""loyalty"": ""6%""}",141171,1,Europe +2024-05-25,4983,7215,"[""Tablet"", ""Monitor""]",857.23,"{""loyalty"": ""8%""}",43470,0,Europe +2024-04-09,4984,4400,"[""Charger""]",470.39,"{""seasonal"": ""19%""}",27972,0,Asia +2023-12-10,4985,5496,"[""Keyboard"", ""Laptop"", ""Phone""]",799.99,{},70246,1,Europe +2024-04-04,4986,4310,"[""Wireless Mouse"", ""Headphones""]",3001.32,{},100531,1,Africa +2023-09-25,4987,8684,"[""Headphones"", ""Tablet""]",811.14,"{"""": ""20%""}",69901,0,North America +2024-05-16,4988,2724,"[""Monitor"", ""Phone"", ""Charger""]",1346.83,{},71283,0,Asia +2024-03-20,4989,5095,"[""Charger"", ""Tablet"", ""Phone""]",269.69,{},202678,1,Europe +2024-11-19,4990,79,"[""Tablet""]",108.15,"{""loyalty"": ""15%""}",273814,1,Asia +2024-05-25,4991,513,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1476.69,{},72545,1,South America +2024-06-23,4992,6352,"[""Laptop""]",3180.6,"{""loyalty"": ""17%""}",207507,0,Africa +2024-01-08,4993,1637,"[""Laptop"", ""Monitor""]",1506.82,{},187583,0,Europe +2024-03-17,4994,9176,"[""Wireless Mouse"", ""Keyboard""]",3754.63,"{"""": ""16%""}",277462,0,South America +2023-11-21,4995,1089,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4712.04,"{""loyalty"": ""10%""}",236079,1,Asia +2023-09-01,4996,1661,"[""Monitor""]",4902.32,{},96038,1,Asia +2024-12-23,4997,2904,"[""Charger""]",4192.88,"{""promo"": ""13%""}",10694,0,Asia +2023-01-10,4998,6836,"[""Tablet""]",2543.81,{},78482,1,South America +2023-08-22,4999,1408,"[""Wireless Mouse""]",3421.17,{},52529,0,Africa +2023-11-02,5000,7241,"[""Phone""]",2435.95,{},36958,0,South America +2023-10-25,5001,3923,"[""Monitor"", ""Tablet""]",3267.84,{},84967,0,Europe +2024-03-05,5002,7423,"[""Monitor""]",1368.09,{},215630,1,North America +2023-08-04,5003,8737,"[""Keyboard"", ""Tablet"", ""Charger""]",215.14,"{""loyalty"": ""13%""}",105108,1,North America +2024-08-09,5004,987,"[""Charger"", ""Tablet""]",249.1,"{""promo"": ""26%""}",241580,1,South America +2024-10-18,5005,8896,"[""Wireless Mouse""]",3887.15,{},85195,0,Africa +2023-11-03,5006,7368,"[""Headphones"", ""Phone""]",4621.16,"{""loyalty"": ""22%""}",158949,1,Europe +2023-10-09,5007,1157,"[""Tablet"", ""Monitor""]",3730.4,{},294877,0,North America +2023-02-27,5008,2674,"[""Phone"", ""Keyboard""]",3753.26,"{""promo"": ""28%""}",233975,0,Europe +2024-02-29,5009,7337,"[""Headphones"", ""Wireless Mouse""]",3506.77,"{""loyalty"": ""23%""}",274090,0,Europe +2024-05-27,5010,9545,"[""Phone"", ""Wireless Mouse""]",3981.69,"{""promo"": ""22%""}",268719,1,Africa +2023-11-27,5011,3810,"[""Tablet"", ""Wireless Mouse""]",2851.15,{},32207,1,South America +2023-11-14,5012,5686,"[""Laptop""]",369.07,"{""loyalty"": ""6%""}",199616,1,Europe +2024-09-23,5013,1698,"[""Keyboard"", ""Tablet""]",3295.28,{},125254,1,South America +2023-07-11,5014,637,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3586.59,{},105498,1,Europe +2023-02-08,5015,958,"[""Keyboard"", ""Laptop""]",2449.17,"{"""": ""28%""}",232399,0,South America +2023-07-07,5016,5588,"[""Monitor"", ""Keyboard""]",4775.25,{},259530,1,Europe +2024-03-30,5017,2777,"[""Wireless Mouse""]",3799.84,{},257772,1,North America +2024-09-11,5018,1095,"[""Phone"", ""Laptop"", ""Keyboard""]",784.98,"{""seasonal"": ""12%""}",27878,1,Europe +2024-04-29,5019,2681,"[""Phone"", ""Charger""]",940.33,{},190005,0,South America +2024-02-07,5020,3116,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4336.33,{},76943,0,North America +2024-06-06,5021,4019,"[""Wireless Mouse""]",252.33,"{""seasonal"": ""17%""}",20069,0,South America +2023-02-10,5022,296,"[""Phone""]",2077.42,{},254350,1,North America +2024-07-25,5023,5910,"[""Monitor"", ""Phone"", ""Tablet""]",516.02,{},253991,0,Europe +2024-01-12,5024,7371,"[""Charger""]",1903.32,"{""loyalty"": ""28%""}",136757,1,North America +2024-10-09,5025,2353,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4153.73,"{"""": ""30%""}",55650,1,Asia +2024-06-19,5026,5370,"[""Phone"", ""Laptop"", ""Keyboard""]",1428.37,"{""loyalty"": ""15%""}",1838,1,Europe +2024-07-12,5027,5813,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4747.32,{},252946,0,Africa +2023-08-24,5028,4026,"[""Tablet"", ""Monitor"", ""Laptop""]",4592.03,{},116830,0,North America +2024-02-16,5029,4128,"[""Tablet""]",4951.71,"{""loyalty"": ""30%""}",85085,0,North America +2024-08-17,5030,6626,"[""Phone""]",148.65,{},179328,1,Asia +2023-01-27,5031,3456,"[""Monitor""]",3299.45,"{""promo"": ""11%""}",267127,0,Europe +2024-07-23,5032,1592,"[""Charger"", ""Laptop""]",653.19,"{"""": ""10%""}",168988,1,North America +2023-02-18,5033,7352,"[""Charger"", ""Tablet""]",1361.36,"{"""": ""23%""}",101432,1,South America +2023-08-29,5034,8846,"[""Charger"", ""Tablet""]",2033.93,{},208387,1,Europe +2024-03-23,5035,792,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4381.24,"{""seasonal"": ""11%""}",102592,0,North America +2024-09-20,5036,6776,"[""Laptop"", ""Keyboard"", ""Phone""]",4956.72,"{"""": ""10%""}",155692,1,North America +2023-08-08,5037,4102,"[""Headphones""]",1536.87,{},222782,0,Europe +2024-02-09,5038,3,"[""Headphones"", ""Charger"", ""Tablet""]",3352.96,{},26519,0,North America +2024-11-28,5039,4849,"[""Charger"", ""Phone""]",2562.37,"{""promo"": ""5%""}",102119,0,North America +2023-08-15,5040,7179,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1345.15,"{""loyalty"": ""27%""}",216836,0,North America +2024-05-19,5041,4288,"[""Tablet""]",1899.94,{},119701,1,Africa +2024-10-30,5042,2973,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3331.33,{},67243,1,Europe +2023-08-14,5043,9693,"[""Wireless Mouse"", ""Headphones""]",2510.32,"{""loyalty"": ""26%""}",189409,0,North America +2024-10-09,5044,2559,"[""Charger""]",3698.38,{},278439,1,Asia +2023-07-18,5045,6505,"[""Phone""]",3242.44,"{""loyalty"": ""23%""}",13656,1,Europe +2023-07-01,5046,5619,"[""Keyboard"", ""Headphones""]",3713.45,"{""loyalty"": ""13%""}",113860,0,North America +2024-03-05,5047,3629,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1945.37,{},196342,0,North America +2023-09-01,5048,9286,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1503.99,{},202352,0,South America +2024-01-22,5049,4586,"[""Laptop"", ""Charger"", ""Headphones""]",4013.92,{},169699,0,South America +2023-11-25,5050,967,"[""Wireless Mouse""]",1520.88,"{""loyalty"": ""21%""}",36030,0,Europe +2023-12-30,5051,78,"[""Monitor"", ""Tablet"", ""Headphones""]",4242.85,"{"""": ""28%""}",195581,1,Africa +2023-04-23,5052,490,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",881.48,{},38060,1,South America +2023-03-17,5053,2813,"[""Keyboard"", ""Phone"", ""Headphones""]",796.55,"{""seasonal"": ""11%""}",93622,1,Asia +2024-04-07,5054,712,"[""Tablet"", ""Charger"", ""Phone""]",635.48,"{""loyalty"": ""8%""}",205509,0,Africa +2023-04-24,5055,8999,"[""Laptop""]",78.51,"{""promo"": ""20%""}",215464,1,Europe +2024-09-03,5056,9465,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1314.07,{},214461,0,Asia +2024-07-31,5057,7572,"[""Laptop"", ""Monitor""]",2929.74,{},221649,0,North America +2023-12-10,5058,8069,"[""Wireless Mouse""]",3883.9,"{""promo"": ""21%""}",249539,0,Africa +2023-06-23,5059,1374,"[""Keyboard""]",4097.19,"{""promo"": ""26%""}",266536,0,North America +2023-09-20,5060,4192,"[""Tablet"", ""Monitor"", ""Phone""]",1875.39,{},247844,1,Africa +2023-11-24,5061,2544,"[""Tablet""]",571.58,"{""promo"": ""20%""}",54307,1,South America +2023-07-22,5062,9148,"[""Keyboard"", ""Headphones""]",196.32,{},116484,0,North America +2023-10-09,5063,5470,"[""Charger"", ""Monitor"", ""Headphones""]",1093.6,"{""promo"": ""15%""}",65086,1,South America +2024-07-14,5064,2718,"[""Headphones""]",3186.04,{},163882,1,Asia +2023-01-04,5065,2591,"[""Headphones""]",710.93,{},182762,0,South America +2023-07-27,5066,6941,"[""Laptop"", ""Monitor"", ""Charger""]",3886.02,{},249413,1,Africa +2024-11-30,5067,6874,"[""Keyboard""]",1544.43,"{""seasonal"": ""11%""}",105809,1,Asia +2023-10-28,5068,7253,"[""Monitor"", ""Headphones"", ""Charger""]",2733.18,{},158717,1,Asia +2023-04-09,5069,7429,"[""Tablet"", ""Charger""]",3865.34,"{""seasonal"": ""30%""}",28236,0,South America +2023-10-10,5070,79,"[""Wireless Mouse"", ""Charger""]",3353.27,{},162345,1,South America +2024-12-25,5071,2067,"[""Monitor"", ""Charger"", ""Keyboard""]",2992.97,{},166261,0,Africa +2024-12-01,5072,8647,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1107.13,"{""seasonal"": ""30%""}",236202,0,North America +2024-01-31,5073,6086,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3277.89,{},292679,1,Asia +2023-06-17,5074,9629,"[""Phone""]",821.32,"{""promo"": ""5%""}",157230,1,Africa +2024-01-02,5075,8284,"[""Charger""]",3487.27,"{""loyalty"": ""17%""}",183390,1,South America +2024-03-13,5076,3118,"[""Headphones""]",3267.76,"{""promo"": ""7%""}",261768,1,South America +2023-11-20,5077,7918,"[""Charger""]",4853.08,{},182760,1,Europe +2023-01-12,5078,5051,"[""Headphones"", ""Tablet"", ""Phone""]",4893.41,{},126780,0,Europe +2024-12-19,5079,8181,"[""Laptop""]",3643.54,"{""promo"": ""25%""}",36918,0,South America +2024-02-01,5080,6828,"[""Tablet""]",1361.48,{},107511,1,South America +2023-07-02,5081,3848,"[""Wireless Mouse"", ""Headphones""]",321.79,"{""seasonal"": ""13%""}",46852,1,Europe +2024-12-22,5082,3151,"[""Tablet""]",1431.37,{},21789,0,South America +2023-10-24,5083,1148,"[""Phone"", ""Wireless Mouse""]",780.42,{},272999,1,South America +2023-07-24,5084,1255,"[""Tablet""]",170.61,{},250836,0,Europe +2024-11-07,5085,364,"[""Headphones"", ""Charger"", ""Monitor""]",3373.22,{},257149,0,North America +2024-10-03,5086,8915,"[""Keyboard""]",822.92,{},293407,1,South America +2024-06-27,5087,9663,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",999.98,"{""seasonal"": ""27%""}",207020,0,Asia +2023-01-11,5088,4396,"[""Wireless Mouse""]",2474.55,"{""seasonal"": ""8%""}",250224,1,North America +2023-04-15,5089,4563,"[""Tablet"", ""Laptop""]",561.34,"{"""": ""19%""}",62647,1,South America +2023-01-26,5090,6756,"[""Headphones""]",3372.3,"{""loyalty"": ""19%""}",82659,0,North America +2024-10-18,5091,3754,"[""Monitor"", ""Phone""]",1502.61,{},261011,0,Asia +2023-06-09,5092,7716,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4586.91,{},158009,0,South America +2023-09-04,5093,1448,"[""Phone"", ""Headphones""]",4686.47,{},76949,0,South America +2024-08-02,5094,2811,"[""Monitor""]",4886.49,{},68616,0,Asia +2024-11-09,5095,3590,"[""Wireless Mouse"", ""Headphones""]",2152.62,{},274859,0,North America +2023-01-09,5096,1223,"[""Tablet"", ""Monitor"", ""Charger""]",4477.27,"{""seasonal"": ""11%""}",76872,0,Europe +2024-08-16,5097,9459,"[""Monitor"", ""Charger""]",1471.93,{},147383,1,South America +2024-09-10,5098,1825,"[""Phone"", ""Laptop""]",753.42,{},40014,0,South America +2024-11-20,5099,5674,"[""Headphones""]",523.55,{},289182,0,South America +2024-09-23,5100,5220,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3816.58,"{""loyalty"": ""7%""}",87789,1,North America +2024-01-27,5101,4703,"[""Monitor""]",4120.78,"{""promo"": ""27%""}",253161,0,Asia +2023-11-03,5102,6194,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3983.04,"{"""": ""30%""}",214212,1,Africa +2023-04-14,5103,2105,"[""Headphones"", ""Tablet"", ""Charger""]",610.42,"{""promo"": ""18%""}",175105,1,South America +2024-01-25,5104,9193,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3139.54,{},76313,1,South America +2024-01-27,5105,2993,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",781.3,"{""promo"": ""5%""}",224040,0,South America +2024-05-01,5106,1794,"[""Charger"", ""Keyboard""]",4448.69,{},216050,1,South America +2023-11-30,5107,7827,"[""Laptop"", ""Tablet"", ""Headphones""]",4644.12,"{""promo"": ""30%""}",177549,1,Africa +2024-08-17,5108,3112,"[""Wireless Mouse""]",3086.17,{},239627,1,Europe +2023-11-03,5109,7858,"[""Phone"", ""Laptop""]",3878.83,{},203767,0,Africa +2024-04-22,5110,7549,"[""Laptop"", ""Keyboard"", ""Tablet""]",3500.41,"{""promo"": ""16%""}",81920,1,Africa +2024-04-23,5111,3967,"[""Keyboard"", ""Laptop""]",2307.39,{},59682,0,Europe +2024-05-06,5112,2887,"[""Headphones""]",4014.56,"{""seasonal"": ""19%""}",140007,1,Africa +2024-10-12,5113,8673,"[""Phone"", ""Charger""]",3444.5,"{""promo"": ""20%""}",197606,0,North America +2024-03-05,5114,2437,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",503.55,"{""loyalty"": ""25%""}",66635,0,North America +2024-05-06,5115,3059,"[""Charger"", ""Headphones""]",758.19,{},41593,1,North America +2023-04-30,5116,4814,"[""Charger""]",3757.44,"{""loyalty"": ""16%""}",219707,0,Europe +2023-10-23,5117,9038,"[""Laptop""]",118.76,{},140030,0,North America +2024-10-30,5118,596,"[""Headphones"", ""Monitor""]",2475.76,{},259698,1,Africa +2024-07-27,5119,7488,"[""Charger""]",952.92,"{""seasonal"": ""22%""}",169008,1,Europe +2024-04-22,5120,5974,"[""Headphones""]",791.13,"{""promo"": ""17%""}",204517,1,Asia +2024-04-16,5121,2595,"[""Phone""]",4457.13,{},146362,0,Europe +2023-04-06,5122,2342,"[""Wireless Mouse""]",1169.31,"{"""": ""5%""}",113937,0,Europe +2023-04-04,5123,8005,"[""Tablet"", ""Phone""]",2464.97,"{""promo"": ""23%""}",74816,1,Asia +2024-06-05,5124,8348,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3681.26,{},157220,1,Africa +2024-04-18,5125,3019,"[""Wireless Mouse""]",3407.5,"{""seasonal"": ""30%""}",33101,1,Asia +2024-12-31,5126,3887,"[""Charger"", ""Phone"", ""Tablet""]",4260.1,"{""seasonal"": ""26%""}",243171,0,North America +2024-08-20,5127,6080,"[""Phone"", ""Wireless Mouse""]",2314.86,"{""promo"": ""23%""}",114337,1,South America +2024-09-01,5128,7616,"[""Laptop"", ""Charger""]",1485.59,"{"""": ""21%""}",77612,1,Europe +2023-03-03,5129,9384,"[""Phone"", ""Wireless Mouse""]",2971.7,"{""promo"": ""21%""}",248289,1,North America +2024-09-24,5130,4208,"[""Phone""]",1198.81,"{"""": ""25%""}",188871,0,South America +2024-04-04,5131,9776,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",258.6,{},111759,0,Europe +2024-01-31,5132,4715,"[""Phone"", ""Tablet"", ""Charger""]",2400.63,"{""loyalty"": ""13%""}",8279,0,Europe +2023-12-07,5133,1946,"[""Wireless Mouse"", ""Phone""]",4728.25,{},153502,0,North America +2024-03-16,5134,5792,"[""Phone"", ""Laptop"", ""Charger""]",4765.27,{},117214,1,North America +2023-04-19,5135,9404,"[""Tablet""]",3142.17,"{""promo"": ""12%""}",297706,0,Africa +2023-05-03,5136,4902,"[""Charger"", ""Monitor"", ""Headphones""]",838.49,"{""promo"": ""23%""}",237424,0,Africa +2023-12-10,5137,7889,"[""Monitor""]",2934.76,{},206000,0,Europe +2024-05-13,5138,1184,"[""Tablet""]",3309.66,{},106876,0,Africa +2023-09-02,5139,3780,"[""Tablet""]",361.53,"{"""": ""9%""}",213222,1,North America +2024-11-03,5140,6057,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3144.14,{},149595,0,North America +2023-08-26,5141,6457,"[""Tablet"", ""Headphones""]",4733.73,"{""promo"": ""24%""}",216676,0,Asia +2023-06-16,5142,9108,"[""Phone"", ""Laptop"", ""Headphones""]",971.68,{},212901,0,South America +2024-01-31,5143,2118,"[""Phone"", ""Keyboard""]",767.77,"{""promo"": ""13%""}",241903,1,Asia +2024-08-06,5144,762,"[""Charger"", ""Phone""]",4829.69,{},285238,0,Africa +2024-11-27,5145,1794,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3106.78,"{""seasonal"": ""14%""}",249703,1,North America +2023-07-01,5146,5466,"[""Monitor"", ""Laptop"", ""Headphones""]",2701.3,{},57101,0,Asia +2023-11-01,5147,834,"[""Wireless Mouse""]",1725.2,"{""seasonal"": ""24%""}",84506,1,North America +2023-04-04,5148,381,"[""Keyboard"", ""Phone""]",784.17,"{""loyalty"": ""20%""}",178725,0,Asia +2024-12-05,5149,5238,"[""Tablet"", ""Keyboard"", ""Laptop""]",4779.14,{},202016,1,North America +2023-07-22,5150,318,"[""Tablet""]",3245.06,{},217195,1,Europe +2023-05-29,5151,6840,"[""Tablet"", ""Keyboard""]",4710.08,"{""promo"": ""13%""}",170064,1,Africa +2024-07-12,5152,4964,"[""Wireless Mouse"", ""Tablet""]",1851.3,{},256087,0,Europe +2024-08-28,5153,4131,"[""Phone""]",3459.99,{},165309,1,Europe +2024-07-05,5154,4837,"[""Charger""]",4191.32,"{""seasonal"": ""14%""}",122835,0,North America +2024-02-17,5155,2689,"[""Laptop""]",1919.54,{},112159,0,North America +2024-01-01,5156,2334,"[""Monitor"", ""Headphones"", ""Laptop""]",1628.1,{},152275,0,North America +2024-08-17,5157,2615,"[""Wireless Mouse""]",221.19,{},126250,0,North America +2023-01-17,5158,3838,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2685.0,"{"""": ""20%""}",32677,0,Europe +2024-10-02,5159,1204,"[""Phone"", ""Tablet""]",1388.23,{},44387,0,South America +2023-06-06,5160,5281,"[""Charger"", ""Phone"", ""Headphones""]",1555.67,"{""promo"": ""21%""}",127956,0,Africa +2023-08-28,5161,6491,"[""Charger"", ""Headphones""]",724.69,{},197101,0,Europe +2023-04-07,5162,512,"[""Tablet"", ""Phone""]",3303.56,"{""loyalty"": ""14%""}",80273,0,South America +2024-10-16,5163,6342,"[""Laptop"", ""Monitor""]",915.57,{},297335,1,Africa +2023-10-06,5164,4088,"[""Monitor""]",680.7,"{""seasonal"": ""20%""}",233815,1,Europe +2023-12-28,5165,6443,"[""Keyboard"", ""Phone""]",1194.59,{},60285,1,North America +2023-05-15,5166,6375,"[""Laptop""]",211.87,{},250316,1,South America +2024-08-19,5167,4764,"[""Phone""]",2876.42,"{""promo"": ""5%""}",5481,1,North America +2024-07-18,5168,8322,"[""Wireless Mouse""]",929.62,"{"""": ""20%""}",120912,0,Africa +2024-07-11,5169,5759,"[""Headphones"", ""Keyboard""]",2753.38,"{""seasonal"": ""13%""}",230413,0,Europe +2023-01-18,5170,9552,"[""Headphones"", ""Keyboard"", ""Laptop""]",3909.09,"{"""": ""8%""}",25065,1,Europe +2023-06-08,5171,5275,"[""Phone"", ""Tablet""]",3199.65,"{""loyalty"": ""29%""}",119593,1,Africa +2024-04-13,5172,7900,"[""Headphones"", ""Wireless Mouse""]",4334.33,"{""seasonal"": ""9%""}",202428,0,Europe +2023-12-02,5173,1707,"[""Monitor"", ""Keyboard""]",493.83,{},92178,0,Asia +2023-12-06,5174,6800,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2908.24,"{""seasonal"": ""23%""}",183765,0,Europe +2023-05-22,5175,8728,"[""Keyboard""]",1809.24,"{""seasonal"": ""27%""}",43887,0,South America +2023-07-18,5176,6608,"[""Headphones""]",1884.17,{},129519,0,Asia +2023-08-06,5177,556,"[""Keyboard""]",129.35,{},12312,1,North America +2024-01-31,5178,3440,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",504.85,"{""seasonal"": ""8%""}",135199,0,Asia +2023-07-16,5179,7699,"[""Monitor"", ""Tablet""]",2963.65,{},251156,0,South America +2023-02-11,5180,346,"[""Tablet"", ""Keyboard""]",909.81,{},225180,0,South America +2023-04-09,5181,3615,"[""Headphones"", ""Tablet"", ""Monitor""]",4653.56,{},185350,1,Europe +2024-12-14,5182,3612,"[""Tablet""]",4903.68,"{"""": ""27%""}",252082,0,Africa +2023-08-04,5183,2196,"[""Wireless Mouse""]",1716.97,"{""loyalty"": ""19%""}",57149,1,Europe +2024-07-02,5184,9816,"[""Keyboard""]",4320.44,{},225187,1,Asia +2023-01-06,5185,4057,"[""Keyboard""]",4971.19,{},180007,1,South America +2024-03-08,5186,4940,"[""Tablet""]",4880.15,{},163592,1,Europe +2023-02-28,5187,5653,"[""Keyboard"", ""Charger"", ""Headphones""]",717.2,{},111575,0,Asia +2024-11-16,5188,4108,"[""Phone"", ""Charger""]",3008.35,"{""seasonal"": ""9%""}",128902,0,South America +2023-07-23,5189,1060,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1764.03,{},196638,1,Africa +2023-12-07,5190,5274,"[""Charger"", ""Phone""]",1623.0,"{"""": ""14%""}",265251,1,Africa +2024-05-27,5191,5231,"[""Keyboard"", ""Monitor""]",406.0,{},16252,0,Africa +2023-11-08,5192,8608,"[""Charger""]",3187.79,{},45125,1,Africa +2023-08-02,5193,5186,"[""Charger""]",1449.96,{},78049,0,Asia +2023-10-08,5194,3550,"[""Wireless Mouse""]",1545.77,"{""seasonal"": ""8%""}",168246,1,Asia +2024-01-01,5195,6339,"[""Laptop"", ""Keyboard"", ""Phone""]",2058.38,"{"""": ""24%""}",298573,1,Africa +2024-09-11,5196,9117,"[""Charger"", ""Keyboard"", ""Laptop""]",3546.65,{},154725,1,Africa +2024-12-16,5197,5425,"[""Charger""]",844.24,"{""loyalty"": ""16%""}",31069,0,Africa +2024-10-05,5198,4677,"[""Laptop""]",3556.25,"{""seasonal"": ""14%""}",228630,1,Europe +2023-07-21,5199,1829,"[""Charger"", ""Monitor""]",1648.0,"{""seasonal"": ""25%""}",163981,1,Asia +2024-07-12,5200,2960,"[""Keyboard"", ""Phone""]",2373.49,{},131036,1,South America +2024-06-26,5201,6764,"[""Laptop"", ""Wireless Mouse""]",1137.21,"{""seasonal"": ""19%""}",185472,0,North America +2023-02-06,5202,1621,"[""Charger"", ""Tablet""]",911.37,"{""promo"": ""29%""}",117787,0,Asia +2023-07-12,5203,6204,"[""Monitor""]",210.01,{},4983,0,Africa +2023-10-14,5204,6526,"[""Headphones"", ""Charger"", ""Laptop""]",4469.66,"{""promo"": ""17%""}",111663,1,North America +2024-07-23,5205,2206,"[""Monitor"", ""Headphones""]",3946.97,{},278951,0,North America +2024-05-31,5206,2675,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1388.76,{},181539,0,South America +2023-12-18,5207,5807,"[""Phone"", ""Monitor"", ""Headphones""]",3188.97,"{""promo"": ""11%""}",16558,0,Europe +2023-12-06,5208,5858,"[""Tablet"", ""Keyboard""]",2773.62,{},56575,1,Asia +2023-06-11,5209,7342,"[""Monitor"", ""Charger""]",4039.56,"{""seasonal"": ""24%""}",3431,0,Africa +2024-10-15,5210,7785,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",968.88,{},166794,0,North America +2024-09-16,5211,6419,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",392.2,{},217649,1,Asia +2023-01-28,5212,2610,"[""Tablet"", ""Monitor""]",1075.57,{},62653,1,North America +2023-04-28,5213,897,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2614.2,"{""promo"": ""16%""}",164569,1,North America +2023-06-11,5214,4606,"[""Charger"", ""Wireless Mouse""]",4068.67,"{""loyalty"": ""6%""}",269334,0,Europe +2024-01-04,5215,4693,"[""Monitor""]",4207.1,"{""loyalty"": ""16%""}",174534,1,South America +2023-07-06,5216,5182,"[""Charger"", ""Phone""]",3653.86,"{""promo"": ""15%""}",60932,1,Asia +2024-10-02,5217,4135,"[""Headphones"", ""Monitor"", ""Laptop""]",4305.12,{},2160,0,North America +2024-03-07,5218,8932,"[""Phone"", ""Headphones"", ""Tablet""]",3191.12,{},231258,0,Asia +2023-10-27,5219,3699,"[""Charger""]",4617.69,{},175395,0,Africa +2024-03-04,5220,7749,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3907.25,"{""seasonal"": ""21%""}",141589,0,Europe +2024-09-26,5221,3503,"[""Laptop""]",4763.71,"{""seasonal"": ""9%""}",105395,0,Asia +2024-08-01,5222,9661,"[""Headphones""]",426.94,{},164047,0,Africa +2023-12-02,5223,9738,"[""Headphones"", ""Tablet"", ""Keyboard""]",552.43,{},49936,0,South America +2024-10-09,5224,3403,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2979.54,{},260293,1,Asia +2024-02-21,5225,3042,"[""Laptop"", ""Phone""]",2034.13,{},74977,0,Asia +2024-06-08,5226,4312,"[""Laptop""]",3055.75,"{""loyalty"": ""15%""}",51136,1,Europe +2024-06-16,5227,3372,"[""Laptop"", ""Charger""]",1972.77,{},188653,1,South America +2024-11-24,5228,259,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1246.58,"{""seasonal"": ""27%""}",3470,1,Europe +2024-05-15,5229,71,"[""Tablet"", ""Headphones""]",4937.07,{},91080,1,Asia +2023-11-22,5230,2361,"[""Wireless Mouse""]",2775.22,{},235148,0,South America +2024-06-26,5231,389,"[""Tablet"", ""Phone""]",71.26,"{""loyalty"": ""30%""}",42465,0,Europe +2024-09-02,5232,3688,"[""Phone""]",938.54,{},286455,0,South America +2024-07-11,5233,8419,"[""Monitor"", ""Charger"", ""Keyboard""]",4649.16,{},59183,1,Africa +2023-12-24,5234,8791,"[""Monitor"", ""Tablet"", ""Laptop""]",1771.12,"{""seasonal"": ""21%""}",243372,1,Asia +2024-09-05,5235,6499,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3964.13,{},15837,1,Europe +2024-10-06,5236,6850,"[""Keyboard"", ""Laptop"", ""Tablet""]",797.49,"{""loyalty"": ""21%""}",87514,1,Africa +2023-08-19,5237,3136,"[""Monitor"", ""Keyboard"", ""Tablet""]",711.35,{},121569,0,South America +2023-05-28,5238,9148,"[""Keyboard""]",295.44,"{""promo"": ""26%""}",215686,1,Asia +2023-06-12,5239,4136,"[""Headphones"", ""Tablet"", ""Laptop""]",668.88,{},196288,1,South America +2024-01-13,5240,1362,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4190.9,"{""promo"": ""21%""}",176065,1,North America +2024-09-30,5241,528,"[""Laptop"", ""Headphones""]",1487.62,"{""promo"": ""5%""}",273401,1,South America +2023-02-03,5242,9540,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4439.99,{},125032,0,Europe +2023-10-11,5243,8974,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3460.34,{},198507,1,North America +2023-04-28,5244,8942,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2658.54,"{""loyalty"": ""28%""}",109767,0,North America +2023-05-22,5245,2003,"[""Keyboard"", ""Wireless Mouse""]",1115.28,{},149322,0,South America +2024-09-12,5246,7986,"[""Monitor""]",3054.42,"{""seasonal"": ""8%""}",19514,1,Europe +2024-11-22,5247,2996,"[""Charger"", ""Headphones""]",3155.78,"{"""": ""8%""}",37133,1,South America +2023-02-26,5248,6025,"[""Laptop"", ""Wireless Mouse""]",4959.98,{},167770,0,North America +2023-10-30,5249,6258,"[""Headphones""]",1845.09,"{""promo"": ""20%""}",57096,0,South America +2024-07-02,5250,7764,"[""Laptop""]",3311.84,"{""promo"": ""28%""}",108204,0,Africa +2023-10-26,5251,673,"[""Monitor"", ""Keyboard""]",4634.47,{},140652,1,North America +2023-11-14,5252,3566,"[""Tablet"", ""Monitor""]",4478.62,{},12090,1,Europe +2023-09-01,5253,739,"[""Charger"", ""Keyboard"", ""Phone""]",214.81,{},228810,1,Asia +2023-04-11,5254,4402,"[""Phone""]",1035.61,{},169262,0,Europe +2023-06-19,5255,7349,"[""Monitor""]",4977.33,{},261378,0,Asia +2024-11-04,5256,8316,"[""Charger"", ""Monitor"", ""Keyboard""]",3134.93,{},296567,0,Asia +2024-08-05,5257,9129,"[""Wireless Mouse"", ""Headphones""]",903.13,"{"""": ""23%""}",28693,1,Asia +2023-02-08,5258,6427,"[""Tablet"", ""Keyboard""]",2169.18,"{""promo"": ""23%""}",210559,1,Africa +2023-08-27,5259,4518,"[""Headphones""]",2351.84,{},74543,0,Asia +2024-06-17,5260,4562,"[""Wireless Mouse"", ""Charger""]",2952.55,{},186230,0,Africa +2024-05-22,5261,4331,"[""Phone""]",3609.6,{},67395,0,Europe +2024-01-16,5262,9624,"[""Laptop"", ""Monitor""]",1499.99,"{""promo"": ""17%""}",110683,0,South America +2023-02-17,5263,5001,"[""Monitor""]",3888.06,"{""loyalty"": ""18%""}",86036,0,Europe +2024-04-12,5264,1062,"[""Wireless Mouse""]",4099.08,"{""loyalty"": ""17%""}",157161,1,Asia +2023-07-06,5265,225,"[""Phone"", ""Headphones"", ""Keyboard""]",2964.74,"{""seasonal"": ""7%""}",171979,0,North America +2024-08-26,5266,2678,"[""Phone""]",1754.99,{},240498,1,North America +2023-12-27,5267,2495,"[""Phone"", ""Wireless Mouse""]",1505.66,"{""promo"": ""17%""}",89753,1,Europe +2023-03-23,5268,8697,"[""Laptop"", ""Keyboard"", ""Tablet""]",1868.76,{},268293,1,Africa +2023-02-01,5269,1539,"[""Keyboard""]",3191.28,"{""seasonal"": ""7%""}",98695,1,Asia +2023-09-17,5270,263,"[""Tablet"", ""Laptop""]",2999.01,{},56973,1,Europe +2023-07-12,5271,5363,"[""Wireless Mouse""]",1778.59,{},175230,1,South America +2024-06-19,5272,6625,"[""Phone""]",461.3,"{""seasonal"": ""27%""}",112810,0,North America +2024-10-23,5273,3623,"[""Charger"", ""Tablet"", ""Headphones""]",3716.66,"{"""": ""29%""}",48580,0,Europe +2023-03-23,5274,4233,"[""Tablet""]",2239.53,"{""seasonal"": ""23%""}",209149,0,Europe +2024-08-13,5275,9170,"[""Monitor""]",3733.09,"{""promo"": ""28%""}",106187,0,Africa +2024-06-15,5276,4644,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3133.46,"{""seasonal"": ""14%""}",271677,0,North America +2024-07-26,5277,5527,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4139.8,"{""loyalty"": ""27%""}",247899,1,Asia +2024-11-14,5278,1416,"[""Laptop""]",4360.23,{},193431,0,North America +2024-08-22,5279,8870,"[""Headphones"", ""Phone"", ""Keyboard""]",2451.78,"{""seasonal"": ""13%""}",145158,1,Asia +2024-02-02,5280,2999,"[""Keyboard"", ""Tablet"", ""Charger""]",1479.39,{},231416,0,Europe +2024-12-18,5281,3679,"[""Phone""]",3361.76,"{"""": ""21%""}",142240,0,Europe +2023-05-21,5282,889,"[""Tablet"", ""Wireless Mouse""]",4213.23,{},17825,1,Asia +2024-05-20,5283,1603,"[""Charger"", ""Wireless Mouse""]",2206.24,"{""loyalty"": ""30%""}",34118,1,South America +2024-11-04,5284,4882,"[""Charger"", ""Tablet""]",3936.02,{},227977,1,Africa +2024-09-11,5285,2615,"[""Charger"", ""Laptop""]",1035.25,"{""seasonal"": ""28%""}",2661,0,Africa +2024-09-21,5286,4634,"[""Monitor""]",3695.8,"{""loyalty"": ""22%""}",196699,0,South America +2024-12-08,5287,3978,"[""Monitor"", ""Tablet""]",3300.18,"{""promo"": ""12%""}",187591,0,North America +2024-10-27,5288,7411,"[""Charger""]",1070.29,{},105160,1,North America +2023-10-11,5289,7315,"[""Charger"", ""Tablet""]",3480.46,"{""promo"": ""26%""}",112827,0,Africa +2024-07-08,5290,3795,"[""Headphones"", ""Keyboard""]",66.61,{},201848,1,Africa +2023-01-15,5291,1713,"[""Keyboard""]",4750.43,{},224810,1,Asia +2024-05-16,5292,2098,"[""Phone"", ""Laptop"", ""Charger""]",635.12,{},218819,0,North America +2023-11-04,5293,1275,"[""Wireless Mouse"", ""Laptop""]",3356.06,"{""seasonal"": ""20%""}",38717,0,Asia +2024-02-29,5294,2713,"[""Tablet"", ""Headphones""]",1860.83,"{""loyalty"": ""24%""}",266562,1,Asia +2024-12-06,5295,549,"[""Wireless Mouse"", ""Laptop""]",1899.2,{},290525,1,South America +2024-09-09,5296,6536,"[""Keyboard""]",4933.7,"{""promo"": ""26%""}",133081,1,Africa +2024-07-14,5297,2249,"[""Laptop""]",2886.46,{},251614,0,Africa +2024-06-05,5298,2515,"[""Charger"", ""Monitor"", ""Phone""]",102.53,"{""loyalty"": ""13%""}",246655,0,Asia +2024-08-22,5299,2147,"[""Laptop""]",3605.69,{},61546,0,Asia +2023-12-15,5300,7506,"[""Headphones"", ""Keyboard""]",734.94,{},117687,0,Europe +2024-11-14,5301,6571,"[""Charger"", ""Tablet""]",4639.85,{},261908,1,Asia +2024-09-13,5302,438,"[""Phone""]",1127.46,"{"""": ""28%""}",257645,1,Asia +2024-07-21,5303,3006,"[""Headphones"", ""Charger""]",3973.82,{},271766,0,South America +2024-05-09,5304,3105,"[""Phone""]",4830.2,{},3313,0,Africa +2024-06-09,5305,7710,"[""Wireless Mouse"", ""Tablet""]",2467.7,{},235777,1,South America +2023-12-30,5306,9910,"[""Wireless Mouse""]",4593.62,{},177720,1,Africa +2024-03-06,5307,8348,"[""Monitor"", ""Keyboard"", ""Tablet""]",4011.9,"{"""": ""7%""}",183264,0,Asia +2024-11-22,5308,8124,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2205.94,"{"""": ""14%""}",183009,1,North America +2023-06-11,5309,7143,"[""Wireless Mouse""]",2983.37,"{""seasonal"": ""10%""}",140864,0,North America +2023-04-06,5310,7645,"[""Wireless Mouse""]",3994.55,{},5529,0,South America +2023-06-21,5311,5379,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2270.05,{},79733,1,Africa +2023-03-29,5312,8785,"[""Headphones""]",2447.36,{},130137,1,Asia +2023-01-08,5313,4109,"[""Headphones""]",1168.76,"{"""": ""22%""}",212612,1,North America +2023-07-31,5314,8750,"[""Tablet"", ""Wireless Mouse""]",1155.03,{},53999,0,Africa +2024-07-02,5315,8666,"[""Charger""]",2599.64,"{""loyalty"": ""28%""}",170931,0,Africa +2024-08-05,5316,5409,"[""Tablet"", ""Charger"", ""Headphones""]",615.77,{},61568,0,Africa +2024-05-28,5317,4016,"[""Wireless Mouse""]",880.69,{},222546,0,Asia +2023-06-09,5318,7784,"[""Keyboard""]",1824.06,{},113660,0,North America +2024-09-04,5319,7817,"[""Phone"", ""Headphones"", ""Keyboard""]",4587.95,{},169289,0,South America +2024-06-01,5320,8808,"[""Wireless Mouse"", ""Headphones""]",3202.48,{},154866,0,Africa +2024-09-26,5321,5170,"[""Monitor"", ""Tablet"", ""Charger""]",4100.0,"{""promo"": ""19%""}",157255,1,South America +2024-09-12,5322,5288,"[""Headphones""]",76.7,{},254417,1,South America +2023-02-12,5323,9267,"[""Monitor"", ""Tablet"", ""Charger""]",2636.59,"{"""": ""5%""}",237566,1,Europe +2024-03-13,5324,4525,"[""Keyboard""]",785.18,{},147411,0,Asia +2024-06-04,5325,8824,"[""Headphones"", ""Tablet""]",2568.13,{},90779,1,South America +2024-03-17,5326,4515,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3691.06,"{"""": ""17%""}",96243,1,South America +2023-08-24,5327,383,"[""Charger""]",171.09,{},210766,1,Europe +2023-12-12,5328,2798,"[""Tablet""]",2811.11,{},207704,1,South America +2024-10-27,5329,4657,"[""Tablet"", ""Headphones"", ""Keyboard""]",3668.92,{},157299,0,North America +2023-06-26,5330,9235,"[""Charger""]",1250.3,{},77459,1,Europe +2023-02-02,5331,4608,"[""Headphones"", ""Wireless Mouse""]",2857.74,"{"""": ""20%""}",181740,1,Africa +2023-05-06,5332,4514,"[""Charger"", ""Tablet""]",4033.38,{},248578,1,Asia +2023-06-01,5333,9417,"[""Tablet""]",1056.15,"{"""": ""12%""}",157213,1,South America +2023-02-17,5334,628,"[""Monitor""]",3347.25,{},152090,1,South America +2023-02-17,5335,2222,"[""Monitor"", ""Charger""]",4102.44,{},101606,0,South America +2023-08-26,5336,6722,"[""Laptop"", ""Monitor""]",3629.3,{},96363,0,Asia +2024-01-31,5337,4089,"[""Laptop"", ""Keyboard"", ""Phone""]",2549.93,"{""seasonal"": ""13%""}",6178,1,North America +2024-12-07,5338,2212,"[""Tablet""]",4875.56,"{""promo"": ""16%""}",191734,1,Africa +2023-12-15,5339,2436,"[""Monitor"", ""Tablet""]",4473.07,"{""promo"": ""30%""}",237602,1,Asia +2024-12-25,5340,2236,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",146.26,{},31610,0,Europe +2024-03-12,5341,5709,"[""Wireless Mouse"", ""Tablet""]",4981.57,{},33150,1,Africa +2024-12-22,5342,9530,"[""Keyboard""]",713.61,"{""seasonal"": ""9%""}",107592,0,South America +2024-08-12,5343,2974,"[""Keyboard"", ""Monitor""]",2949.84,{},129442,1,Africa +2024-02-03,5344,6629,"[""Charger""]",4532.51,{},191056,1,South America +2024-11-21,5345,8650,"[""Tablet"", ""Keyboard""]",169.82,"{"""": ""14%""}",164768,0,Africa +2024-05-08,5346,6658,"[""Phone"", ""Tablet""]",306.48,"{""loyalty"": ""7%""}",96505,0,Africa +2023-05-31,5347,3268,"[""Tablet"", ""Monitor"", ""Headphones""]",652.93,"{""seasonal"": ""25%""}",10233,1,Asia +2024-09-14,5348,8040,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",284.47,"{"""": ""20%""}",10114,0,Africa +2023-11-12,5349,8720,"[""Laptop""]",4866.54,{},166098,0,Asia +2024-08-29,5350,3790,"[""Phone""]",2943.82,{},56316,1,Europe +2023-09-12,5351,4380,"[""Keyboard""]",1787.84,{},28757,0,South America +2023-11-23,5352,815,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1476.33,"{"""": ""11%""}",12175,1,Europe +2024-03-16,5353,2492,"[""Tablet"", ""Headphones"", ""Monitor""]",2831.53,"{""promo"": ""28%""}",191581,0,Asia +2023-09-18,5354,2355,"[""Phone"", ""Laptop""]",954.58,"{""loyalty"": ""19%""}",221802,0,Asia +2023-04-03,5355,6457,"[""Headphones""]",4848.2,"{""loyalty"": ""20%""}",13227,1,North America +2024-02-16,5356,9007,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2252.79,{},44364,1,Asia +2024-12-23,5357,2761,"[""Laptop"", ""Phone""]",890.61,{},166851,0,South America +2023-06-27,5358,4588,"[""Phone""]",4232.67,"{""seasonal"": ""14%""}",238226,1,North America +2023-06-19,5359,8700,"[""Keyboard"", ""Phone""]",3747.64,{},39192,0,South America +2023-10-06,5360,9432,"[""Wireless Mouse"", ""Tablet""]",3072.07,{},291389,0,Asia +2023-03-02,5361,298,"[""Headphones"", ""Charger"", ""Keyboard""]",1106.22,"{""seasonal"": ""16%""}",68765,0,Europe +2023-05-28,5362,951,"[""Charger""]",4002.5,"{""loyalty"": ""9%""}",187756,1,South America +2023-08-01,5363,7758,"[""Phone""]",3503.82,{},285160,0,Africa +2024-05-30,5364,809,"[""Keyboard"", ""Laptop""]",2209.27,"{""loyalty"": ""18%""}",211055,0,Europe +2023-06-03,5365,5615,"[""Charger"", ""Phone"", ""Tablet""]",4087.94,{},284651,1,Europe +2024-10-07,5366,9159,"[""Wireless Mouse"", ""Laptop""]",4962.47,"{""promo"": ""17%""}",268829,1,North America +2024-02-04,5367,2619,"[""Monitor"", ""Keyboard""]",2059.77,"{""seasonal"": ""5%""}",210279,0,Asia +2024-04-19,5368,148,"[""Headphones"", ""Keyboard""]",2360.79,"{""promo"": ""17%""}",15179,0,Europe +2024-08-11,5369,1256,"[""Monitor"", ""Wireless Mouse""]",2308.57,{},193368,0,Asia +2023-03-29,5370,4127,"[""Headphones"", ""Phone"", ""Tablet""]",1576.79,"{""promo"": ""12%""}",3773,0,Africa +2023-02-14,5371,5323,"[""Tablet""]",2795.13,"{""promo"": ""28%""}",56814,0,Europe +2024-07-17,5372,3342,"[""Headphones"", ""Charger""]",1725.13,"{""seasonal"": ""13%""}",249188,1,Europe +2023-01-01,5373,1449,"[""Headphones""]",591.17,{},5789,1,South America +2023-06-23,5374,5137,"[""Keyboard"", ""Laptop"", ""Charger""]",3657.67,{},284979,0,North America +2023-03-12,5375,1614,"[""Monitor"", ""Laptop"", ""Tablet""]",3927.77,{},51212,1,Europe +2024-04-29,5376,8623,"[""Keyboard"", ""Monitor""]",797.82,{},86158,0,Asia +2023-05-30,5377,6784,"[""Phone"", ""Tablet""]",2443.01,{},102615,1,Europe +2023-03-14,5378,7486,"[""Keyboard""]",864.16,{},279962,0,Africa +2024-11-14,5379,486,"[""Monitor""]",1848.24,{},19895,1,Africa +2024-06-11,5380,8547,"[""Monitor"", ""Keyboard""]",1336.24,{},113067,0,Europe +2023-10-03,5381,138,"[""Keyboard"", ""Headphones"", ""Charger""]",1454.21,{},156256,1,South America +2023-03-24,5382,86,"[""Phone""]",2527.34,"{""promo"": ""14%""}",65460,0,Asia +2023-02-22,5383,8965,"[""Charger""]",4850.05,"{""seasonal"": ""28%""}",176904,0,North America +2024-03-30,5384,4378,"[""Phone"", ""Laptop"", ""Headphones""]",3187.92,{},52988,0,Asia +2024-05-17,5385,6085,"[""Wireless Mouse"", ""Monitor""]",2391.7,{},17037,0,Asia +2024-12-04,5386,5469,"[""Wireless Mouse"", ""Keyboard""]",1264.8,{},32688,0,Africa +2023-11-02,5387,9250,"[""Phone"", ""Charger""]",2083.54,"{""promo"": ""25%""}",225362,1,Asia +2023-06-26,5388,802,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2579.71,"{""promo"": ""24%""}",198892,1,North America +2024-08-04,5389,6117,"[""Laptop""]",1474.44,{},177287,1,South America +2024-11-19,5390,167,"[""Laptop"", ""Tablet""]",3824.82,{},119438,1,South America +2024-06-12,5391,3090,"[""Monitor"", ""Laptop"", ""Charger""]",457.49,{},224944,0,Europe +2023-12-07,5392,3326,"[""Charger"", ""Wireless Mouse""]",4304.8,{},29248,0,Asia +2024-03-08,5393,4697,"[""Wireless Mouse""]",1931.75,{},239342,0,Europe +2023-03-31,5394,7437,"[""Monitor"", ""Charger"", ""Keyboard""]",562.02,"{""seasonal"": ""27%""}",139657,1,Asia +2023-04-20,5395,7314,"[""Tablet"", ""Wireless Mouse""]",1190.41,"{""seasonal"": ""25%""}",298286,1,Europe +2023-10-27,5396,9408,"[""Keyboard""]",4389.48,{},294962,1,Europe +2023-08-01,5397,911,"[""Monitor""]",2741.41,"{""promo"": ""20%""}",59075,0,North America +2024-07-17,5398,5788,"[""Phone"", ""Laptop"", ""Tablet""]",1810.74,"{""loyalty"": ""11%""}",205567,0,Asia +2024-03-02,5399,258,"[""Monitor"", ""Keyboard"", ""Headphones""]",4719.8,{},156518,1,Asia +2023-12-27,5400,1173,"[""Keyboard""]",3070.14,"{""seasonal"": ""10%""}",159662,1,North America +2024-10-19,5401,5002,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",327.44,{},178842,1,Africa +2023-06-11,5402,4705,"[""Charger""]",4172.47,"{""promo"": ""28%""}",213729,0,South America +2024-06-07,5403,9080,"[""Phone"", ""Laptop""]",1949.76,{},125967,1,Africa +2023-04-02,5404,1176,"[""Keyboard"", ""Tablet""]",3782.42,"{"""": ""17%""}",94191,1,Africa +2024-09-12,5405,464,"[""Monitor"", ""Keyboard""]",2835.66,"{""promo"": ""7%""}",188484,0,Europe +2023-11-01,5406,901,"[""Laptop"", ""Tablet""]",3559.71,"{"""": ""21%""}",83602,1,Europe +2023-02-05,5407,9565,"[""Keyboard"", ""Monitor"", ""Headphones""]",3799.76,"{""seasonal"": ""24%""}",166755,1,Africa +2024-02-07,5408,633,"[""Phone""]",3726.67,{},234099,1,South America +2024-03-22,5409,4675,"[""Headphones"", ""Keyboard""]",3899.82,"{""seasonal"": ""10%""}",243536,1,Africa +2024-12-27,5410,8130,"[""Phone""]",2691.27,"{""promo"": ""29%""}",99168,1,Europe +2024-05-17,5411,9383,"[""Keyboard"", ""Laptop""]",3381.62,"{""seasonal"": ""21%""}",213731,1,North America +2023-02-09,5412,8283,"[""Tablet"", ""Phone"", ""Laptop""]",4803.35,{},288560,0,Africa +2023-01-11,5413,308,"[""Wireless Mouse"", ""Charger""]",4217.65,"{""loyalty"": ""15%""}",62532,0,South America +2024-12-26,5414,3175,"[""Wireless Mouse""]",1324.96,"{""loyalty"": ""24%""}",113058,0,Africa +2023-03-28,5415,5098,"[""Laptop"", ""Monitor""]",783.13,{},221789,0,Africa +2024-07-02,5416,1841,"[""Wireless Mouse""]",1897.68,{},79655,1,South America +2024-02-10,5417,650,"[""Keyboard""]",4925.0,"{""seasonal"": ""19%""}",44883,0,North America +2023-11-04,5418,8879,"[""Tablet"", ""Laptop"", ""Monitor""]",4912.49,"{"""": ""7%""}",45231,0,South America +2024-11-22,5419,7992,"[""Keyboard""]",3495.28,"{"""": ""18%""}",95158,0,Africa +2023-10-12,5420,8119,"[""Keyboard"", ""Charger"", ""Headphones""]",4688.63,{},198817,1,Asia +2023-12-19,5421,1330,"[""Tablet"", ""Monitor""]",429.2,{},298565,1,Asia +2023-03-18,5422,115,"[""Headphones""]",4258.03,"{""loyalty"": ""27%""}",183400,1,South America +2024-02-22,5423,7626,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1916.76,{},116647,1,Europe +2023-03-03,5424,2219,"[""Charger"", ""Phone""]",746.01,{},279104,0,South America +2024-02-20,5425,855,"[""Headphones"", ""Phone""]",1376.19,"{""promo"": ""15%""}",164904,0,North America +2023-02-21,5426,2144,"[""Tablet"", ""Phone""]",2611.8,{},56280,1,Asia +2024-02-23,5427,4750,"[""Tablet""]",856.94,"{""seasonal"": ""24%""}",80535,1,Africa +2024-05-28,5428,2108,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",659.1,"{"""": ""8%""}",253465,0,North America +2023-12-19,5429,4904,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1872.9,{},164808,1,North America +2024-09-20,5430,1769,"[""Headphones""]",2960.23,{},149141,0,Africa +2023-09-26,5431,9248,"[""Wireless Mouse""]",3686.82,"{"""": ""13%""}",227925,1,North America +2023-12-04,5432,6588,"[""Headphones"", ""Keyboard""]",4052.14,{},227156,1,South America +2023-05-14,5433,8049,"[""Phone"", ""Monitor""]",4815.45,"{""promo"": ""21%""}",168471,0,Africa +2023-07-22,5434,7730,"[""Wireless Mouse""]",2124.68,{},29467,1,North America +2023-07-17,5435,6236,"[""Charger""]",2434.21,{},160182,0,North America +2023-05-03,5436,3189,"[""Tablet""]",3236.35,{},28455,0,South America +2023-06-21,5437,7640,"[""Keyboard"", ""Headphones""]",573.49,"{"""": ""29%""}",185302,1,Asia +2023-12-12,5438,5149,"[""Headphones""]",376.96,{},119300,1,Africa +2024-10-13,5439,2734,"[""Charger"", ""Tablet""]",2647.41,{},10470,1,North America +2023-12-15,5440,2054,"[""Charger"", ""Monitor""]",1206.1,"{""loyalty"": ""13%""}",165945,1,North America +2023-03-25,5441,4378,"[""Tablet"", ""Wireless Mouse""]",4914.38,"{""seasonal"": ""21%""}",279374,1,North America +2023-07-15,5442,8273,"[""Phone"", ""Laptop"", ""Headphones""]",2562.42,"{""promo"": ""30%""}",46547,1,South America +2024-05-29,5443,4409,"[""Laptop""]",1967.31,{},255544,0,Asia +2023-04-26,5444,815,"[""Tablet"", ""Monitor"", ""Headphones""]",1891.25,{},166329,0,North America +2024-10-05,5445,7461,"[""Keyboard""]",4331.71,"{""promo"": ""5%""}",88053,0,Asia +2024-09-13,5446,2226,"[""Tablet"", ""Phone""]",4257.04,{},94512,1,Europe +2024-05-19,5447,917,"[""Laptop"", ""Wireless Mouse""]",2418.47,{},120820,1,South America +2023-03-05,5448,3010,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3423.64,{},20132,0,Africa +2023-02-19,5449,2136,"[""Charger"", ""Laptop"", ""Tablet""]",3875.95,{},173943,1,Europe +2024-06-12,5450,5714,"[""Keyboard"", ""Phone""]",3603.33,"{"""": ""19%""}",82732,1,South America +2024-07-25,5451,7433,"[""Headphones"", ""Wireless Mouse""]",2024.86,{},46149,1,South America +2023-10-07,5452,4471,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1642.17,"{""loyalty"": ""16%""}",216785,1,Africa +2024-10-19,5453,9544,"[""Charger"", ""Wireless Mouse""]",2924.39,{},146265,0,Europe +2024-06-04,5454,8959,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",782.06,{},211786,0,South America +2023-06-15,5455,6669,"[""Laptop""]",1682.37,{},141096,1,Europe +2024-10-10,5456,1217,"[""Headphones"", ""Laptop"", ""Tablet""]",358.24,{},242331,0,North America +2024-02-23,5457,6098,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4488.98,"{""promo"": ""11%""}",278338,1,South America +2024-10-31,5458,4249,"[""Headphones"", ""Monitor"", ""Charger""]",171.51,{},233711,1,Asia +2024-03-19,5459,6923,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1196.48,"{""promo"": ""7%""}",228098,0,North America +2024-11-27,5460,863,"[""Keyboard"", ""Headphones"", ""Phone""]",244.86,{},118448,1,Africa +2023-08-28,5461,966,"[""Headphones"", ""Charger"", ""Monitor""]",3398.04,"{""seasonal"": ""28%""}",294664,1,Africa +2023-07-08,5462,9074,"[""Tablet""]",4936.61,{},86924,0,North America +2024-05-13,5463,1749,"[""Keyboard"", ""Charger"", ""Phone""]",3265.74,{},75407,1,Asia +2024-02-07,5464,545,"[""Headphones"", ""Charger"", ""Keyboard""]",4000.85,"{""loyalty"": ""26%""}",290966,1,Asia +2023-06-17,5465,6101,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2436.55,{},62451,1,Africa +2024-06-15,5466,7692,"[""Monitor"", ""Charger"", ""Tablet""]",2427.79,"{""seasonal"": ""27%""}",93525,1,Europe +2023-09-28,5467,2294,"[""Charger""]",2629.82,{},127683,0,Africa +2024-08-13,5468,1898,"[""Laptop""]",980.11,{},107882,1,Asia +2024-10-17,5469,1347,"[""Keyboard""]",1230.77,{},37260,0,Asia +2024-08-17,5470,945,"[""Keyboard"", ""Tablet""]",1157.47,{},38735,1,Asia +2024-10-20,5471,2992,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4706.67,{},277606,0,South America +2023-09-02,5472,3949,"[""Keyboard"", ""Monitor""]",233.81,"{"""": ""19%""}",1113,0,Europe +2024-06-12,5473,109,"[""Wireless Mouse""]",3259.18,{},76203,0,Asia +2023-10-18,5474,3675,"[""Phone""]",4945.35,"{""seasonal"": ""29%""}",10291,0,Africa +2024-04-30,5475,3532,"[""Tablet"", ""Phone"", ""Keyboard""]",2720.21,"{""promo"": ""21%""}",283840,1,Europe +2024-07-15,5476,5993,"[""Headphones"", ""Phone"", ""Charger""]",3299.69,{},61771,1,South America +2023-08-18,5477,6910,"[""Tablet"", ""Laptop""]",309.33,{},285854,0,Asia +2024-08-12,5478,188,"[""Phone"", ""Headphones""]",176.45,"{""seasonal"": ""29%""}",253124,1,South America +2023-02-08,5479,2784,"[""Monitor"", ""Tablet"", ""Headphones""]",1199.04,"{""loyalty"": ""7%""}",238870,1,North America +2024-09-09,5480,3688,"[""Monitor""]",640.24,"{""loyalty"": ""19%""}",250462,1,Africa +2024-03-30,5481,826,"[""Headphones"", ""Wireless Mouse""]",4322.22,{},267882,1,Europe +2023-10-13,5482,9585,"[""Wireless Mouse"", ""Keyboard""]",748.36,{},22055,0,North America +2024-05-01,5483,9994,"[""Headphones""]",2306.61,{},94807,1,Europe +2024-03-06,5484,294,"[""Monitor"", ""Wireless Mouse""]",1352.85,{},144421,0,South America +2023-04-08,5485,3823,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3175.8,{},237244,1,South America +2023-06-13,5486,162,"[""Keyboard"", ""Monitor""]",3036.15,"{""loyalty"": ""19%""}",182764,0,South America +2023-03-11,5487,1990,"[""Wireless Mouse""]",2151.49,"{"""": ""23%""}",167642,1,Africa +2023-09-01,5488,1739,"[""Headphones"", ""Keyboard""]",3744.38,{},266775,1,Europe +2024-03-18,5489,7865,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3456.99,"{"""": ""17%""}",119541,1,Africa +2023-07-16,5490,8907,"[""Charger""]",866.25,"{"""": ""7%""}",143802,1,Africa +2023-03-04,5491,3998,"[""Monitor"", ""Phone""]",4063.87,{},110841,0,North America +2024-09-24,5492,2147,"[""Monitor""]",4685.91,{},119768,0,Asia +2023-05-07,5493,8481,"[""Keyboard"", ""Tablet"", ""Phone""]",1418.69,{},64415,0,Africa +2024-06-14,5494,8864,"[""Monitor"", ""Tablet"", ""Laptop""]",4832.92,"{""seasonal"": ""16%""}",62667,1,North America +2024-11-02,5495,4,"[""Monitor"", ""Tablet""]",2625.82,"{""loyalty"": ""25%""}",260312,1,Asia +2023-12-06,5496,5085,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4106.2,"{""seasonal"": ""19%""}",36100,1,Africa +2024-10-27,5497,1919,"[""Wireless Mouse""]",2911.56,{},163416,1,Asia +2023-01-19,5498,4671,"[""Charger"", ""Phone""]",1306.87,"{""loyalty"": ""11%""}",69510,0,South America +2023-01-22,5499,2348,"[""Keyboard"", ""Tablet""]",4980.68,{},59696,1,Africa +2023-12-23,5500,894,"[""Charger""]",2578.35,{},296366,0,Africa +2024-04-21,5501,1712,"[""Phone""]",1732.27,{},283339,1,North America +2024-11-26,5502,8236,"[""Tablet""]",1615.48,{},160227,1,Africa +2023-11-11,5503,213,"[""Monitor"", ""Headphones"", ""Laptop""]",2869.66,{},176680,1,Africa +2023-07-28,5504,6314,"[""Headphones"", ""Laptop"", ""Monitor""]",688.17,"{""loyalty"": ""25%""}",268795,1,South America +2023-07-25,5505,3345,"[""Keyboard"", ""Laptop"", ""Tablet""]",3204.7,"{"""": ""11%""}",25958,1,Asia +2024-01-27,5506,7174,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4053.77,{},208822,1,Europe +2024-08-15,5507,7645,"[""Phone""]",3564.63,"{""promo"": ""10%""}",128185,0,North America +2024-03-22,5508,3012,"[""Monitor""]",1101.52,{},231453,1,Europe +2024-09-01,5509,9367,"[""Charger"", ""Laptop""]",1266.75,{},22523,0,North America +2024-06-05,5510,8499,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3600.38,"{""seasonal"": ""24%""}",239489,1,North America +2024-11-11,5511,9402,"[""Headphones"", ""Phone""]",1942.93,"{"""": ""25%""}",272871,0,Asia +2023-10-09,5512,1922,"[""Tablet"", ""Laptop"", ""Phone""]",2721.16,{},190817,0,Africa +2023-01-04,5513,9411,"[""Wireless Mouse"", ""Charger""]",1989.96,"{""loyalty"": ""23%""}",6114,1,South America +2024-04-02,5514,3233,"[""Charger"", ""Tablet""]",2030.84,{},109130,0,South America +2024-01-24,5515,270,"[""Phone"", ""Tablet"", ""Charger""]",4509.02,{},154172,1,North America +2024-12-20,5516,9897,"[""Charger""]",4977.65,{},90560,1,South America +2023-09-07,5517,7506,"[""Tablet""]",4769.21,{},264413,1,Asia +2024-10-21,5518,598,"[""Headphones""]",171.87,{},102416,0,Europe +2024-04-20,5519,551,"[""Headphones""]",1194.83,{},195216,1,South America +2023-08-20,5520,4642,"[""Laptop""]",4083.93,{},153415,0,Europe +2024-01-09,5521,3611,"[""Keyboard"", ""Laptop""]",3693.23,{},288452,0,Europe +2023-09-12,5522,9652,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",955.52,"{""promo"": ""22%""}",60667,1,Asia +2023-01-28,5523,8389,"[""Phone"", ""Charger"", ""Monitor""]",4730.22,"{""loyalty"": ""23%""}",7159,0,Africa +2023-10-20,5524,6261,"[""Keyboard"", ""Phone"", ""Tablet""]",4074.36,{},254114,0,Africa +2024-11-14,5525,8983,"[""Wireless Mouse"", ""Monitor""]",4687.91,"{""seasonal"": ""5%""}",248673,1,Asia +2024-11-19,5526,3515,"[""Headphones""]",2046.03,"{""loyalty"": ""17%""}",278458,0,Europe +2024-01-16,5527,7402,"[""Charger"", ""Wireless Mouse""]",4598.51,"{""promo"": ""24%""}",60119,0,Europe +2023-05-13,5528,4927,"[""Headphones"", ""Tablet""]",3736.86,{},63184,1,North America +2024-06-22,5529,2867,"[""Laptop"", ""Keyboard""]",4344.63,"{""seasonal"": ""12%""}",87586,0,Asia +2023-04-05,5530,9827,"[""Charger"", ""Tablet"", ""Phone""]",2763.04,"{""promo"": ""6%""}",197793,1,North America +2024-01-02,5531,4670,"[""Headphones""]",2235.53,"{""seasonal"": ""19%""}",171674,0,Europe +2024-09-07,5532,2255,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",884.81,"{""promo"": ""13%""}",207654,1,Asia +2024-10-22,5533,9558,"[""Phone"", ""Laptop""]",2156.51,{},42166,1,Europe +2024-03-21,5534,8452,"[""Monitor"", ""Laptop""]",1764.98,"{""promo"": ""23%""}",111972,1,South America +2024-06-09,5535,4368,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",542.01,"{""promo"": ""16%""}",131235,1,Africa +2024-07-30,5536,4794,"[""Monitor""]",200.57,{},53671,0,North America +2024-05-13,5537,7029,"[""Wireless Mouse"", ""Monitor""]",4365.26,{},289556,1,South America +2023-11-23,5538,9780,"[""Monitor"", ""Charger""]",1945.88,{},51024,1,North America +2023-01-07,5539,646,"[""Tablet"", ""Charger"", ""Keyboard""]",4430.62,{},282555,0,Africa +2023-07-19,5540,9134,"[""Phone""]",3855.37,{},13503,1,South America +2024-09-05,5541,6808,"[""Phone"", ""Tablet""]",3370.71,{},67994,0,Asia +2023-11-30,5542,9864,"[""Charger""]",3242.21,"{""seasonal"": ""14%""}",230785,0,Africa +2024-01-12,5543,4290,"[""Phone""]",988.6,"{""seasonal"": ""24%""}",248627,0,Europe +2023-12-07,5544,5319,"[""Headphones"", ""Tablet""]",2118.76,"{""seasonal"": ""18%""}",36585,1,Europe +2024-10-20,5545,6353,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",51.34,"{"""": ""17%""}",118335,1,Europe +2024-04-20,5546,225,"[""Keyboard""]",942.41,{},71730,1,North America +2023-10-23,5547,933,"[""Wireless Mouse""]",2436.59,"{""loyalty"": ""7%""}",10496,0,Europe +2023-06-01,5548,2164,"[""Headphones"", ""Tablet""]",697.19,"{""seasonal"": ""21%""}",256955,0,North America +2024-02-24,5549,4211,"[""Phone"", ""Laptop""]",645.17,{},17675,0,Asia +2024-08-12,5550,7360,"[""Tablet"", ""Phone""]",3574.36,"{"""": ""7%""}",75501,1,North America +2023-09-19,5551,7820,"[""Phone"", ""Keyboard"", ""Charger""]",4602.39,"{""seasonal"": ""10%""}",140105,0,Asia +2024-10-09,5552,5409,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4874.46,{},217695,0,South America +2024-06-22,5553,1661,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2395.76,"{""loyalty"": ""26%""}",19940,1,Africa +2023-06-10,5554,7841,"[""Laptop"", ""Phone""]",4656.35,{},56489,1,Africa +2023-08-22,5555,1844,"[""Headphones""]",1987.42,{},90085,1,Europe +2024-02-17,5556,4395,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4701.12,{},206232,1,Africa +2023-10-02,5557,3653,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3424.36,{},111225,1,Europe +2023-10-19,5558,7792,"[""Charger"", ""Tablet""]",1311.81,"{""loyalty"": ""11%""}",254326,1,South America +2023-12-18,5559,7789,"[""Phone""]",1584.92,"{""loyalty"": ""27%""}",65682,1,Africa +2023-12-30,5560,1350,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4839.61,"{""loyalty"": ""19%""}",147488,1,North America +2023-09-19,5561,6760,"[""Headphones"", ""Monitor"", ""Charger""]",3836.83,{},172121,1,Africa +2024-11-20,5562,4485,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",826.06,{},41813,1,North America +2023-10-16,5563,3755,"[""Keyboard"", ""Phone"", ""Tablet""]",3061.81,"{""loyalty"": ""22%""}",233682,1,North America +2023-04-08,5564,8679,"[""Laptop""]",2727.79,{},286006,1,North America +2023-02-25,5565,4803,"[""Headphones""]",1843.79,"{"""": ""23%""}",253886,0,Europe +2024-12-14,5566,1867,"[""Tablet"", ""Monitor"", ""Headphones""]",1344.95,"{""promo"": ""21%""}",53087,1,South America +2024-01-20,5567,872,"[""Headphones""]",1109.58,"{""seasonal"": ""16%""}",141614,0,Europe +2024-12-26,5568,5918,"[""Monitor""]",3609.13,{},6731,0,Asia +2024-02-04,5569,4373,"[""Charger"", ""Laptop"", ""Headphones""]",444.69,"{""seasonal"": ""12%""}",129354,1,North America +2024-01-19,5570,7947,"[""Charger"", ""Phone""]",3104.48,{},284210,0,Asia +2023-09-08,5571,2752,"[""Headphones"", ""Wireless Mouse""]",751.51,{},157841,1,North America +2023-05-04,5572,9206,"[""Charger"", ""Monitor""]",1707.61,"{""loyalty"": ""16%""}",165290,0,Africa +2024-06-21,5573,7835,"[""Monitor""]",117.16,{},232547,0,Asia +2023-08-23,5574,2348,"[""Laptop""]",4946.35,{},94358,0,Africa +2023-07-28,5575,8334,"[""Tablet"", ""Headphones""]",1887.35,"{""promo"": ""21%""}",214418,1,South America +2024-10-16,5576,1719,"[""Monitor""]",2866.7,{},125317,0,Europe +2023-11-26,5577,3960,"[""Laptop""]",2892.84,"{"""": ""25%""}",204476,1,North America +2024-11-15,5578,8205,"[""Keyboard"", ""Tablet"", ""Headphones""]",231.25,"{""loyalty"": ""15%""}",151310,1,Africa +2023-09-04,5579,4528,"[""Wireless Mouse"", ""Monitor""]",1550.9,{},6867,0,Africa +2023-04-13,5580,1003,"[""Keyboard"", ""Wireless Mouse""]",2586.53,{},219251,0,Europe +2023-12-07,5581,5702,"[""Monitor"", ""Phone""]",4140.36,{},77213,0,Africa +2023-04-09,5582,2935,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2867.09,"{""loyalty"": ""16%""}",198828,1,Asia +2023-12-16,5583,8825,"[""Keyboard"", ""Laptop"", ""Headphones""]",398.08,{},36889,0,North America +2023-09-08,5584,9694,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1417.7,{},248771,0,North America +2023-11-03,5585,8236,"[""Charger"", ""Monitor""]",4603.61,"{"""": ""11%""}",44905,0,Africa +2024-11-28,5586,3738,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2231.66,"{""loyalty"": ""23%""}",23305,0,South America +2023-09-20,5587,9198,"[""Tablet""]",4778.67,"{""promo"": ""30%""}",52008,0,Asia +2024-05-23,5588,899,"[""Phone"", ""Laptop""]",3943.53,{},137039,1,Europe +2024-12-13,5589,8481,"[""Laptop"", ""Tablet"", ""Phone""]",2470.15,"{"""": ""14%""}",248077,1,North America +2023-04-04,5590,2918,"[""Wireless Mouse"", ""Monitor""]",2567.73,"{"""": ""19%""}",215533,0,South America +2023-08-02,5591,172,"[""Phone""]",66.64,"{""loyalty"": ""30%""}",215474,0,South America +2023-03-09,5592,4525,"[""Headphones"", ""Laptop"", ""Phone""]",2351.94,{},166940,0,Africa +2023-07-13,5593,8516,"[""Keyboard""]",3006.36,{},96320,1,Africa +2024-02-23,5594,8182,"[""Keyboard""]",3849.58,"{""promo"": ""11%""}",136672,0,Africa +2024-10-01,5595,3436,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3875.11,"{""loyalty"": ""23%""}",173542,1,Europe +2024-10-26,5596,4886,"[""Tablet""]",4264.44,{},114475,1,South America +2023-06-26,5597,4469,"[""Charger"", ""Headphones""]",3471.37,"{"""": ""20%""}",249897,0,Europe +2023-04-07,5598,6050,"[""Wireless Mouse""]",3297.88,{},236528,1,South America +2023-01-02,5599,9170,"[""Monitor""]",2828.14,"{""loyalty"": ""9%""}",275882,1,Europe +2023-08-30,5600,6760,"[""Headphones"", ""Tablet""]",1800.58,"{"""": ""5%""}",227825,1,South America +2024-08-31,5601,6127,"[""Laptop"", ""Charger""]",293.91,{},22701,1,South America +2023-07-22,5602,3656,"[""Charger"", ""Headphones"", ""Monitor""]",3296.9,"{""loyalty"": ""25%""}",229230,0,North America +2024-07-28,5603,2456,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1135.89,"{""promo"": ""13%""}",108118,1,South America +2023-11-18,5604,852,"[""Laptop"", ""Headphones"", ""Charger""]",4866.86,{},259937,0,Africa +2023-03-26,5605,1413,"[""Laptop"", ""Headphones"", ""Keyboard""]",1413.27,"{""loyalty"": ""17%""}",176198,1,Africa +2024-03-24,5606,6415,"[""Laptop"", ""Headphones"", ""Phone""]",3843.85,"{""loyalty"": ""14%""}",134979,0,Europe +2024-01-18,5607,7193,"[""Laptop"", ""Phone"", ""Charger""]",3435.39,"{""loyalty"": ""22%""}",132174,0,Asia +2023-04-14,5608,9897,"[""Charger""]",2334.24,{},76853,0,Asia +2023-09-16,5609,3895,"[""Monitor"", ""Phone""]",3244.97,{},185637,0,Asia +2023-12-25,5610,1617,"[""Laptop"", ""Headphones""]",1827.06,{},182848,0,Africa +2024-08-27,5611,6758,"[""Monitor"", ""Headphones"", ""Laptop""]",283.31,"{"""": ""6%""}",86951,1,Africa +2024-05-08,5612,1070,"[""Headphones"", ""Monitor""]",3549.91,{},211429,0,North America +2024-03-29,5613,730,"[""Keyboard""]",4327.59,{},207261,1,South America +2023-04-30,5614,1411,"[""Keyboard"", ""Phone"", ""Monitor""]",3225.31,{},18361,1,South America +2023-08-02,5615,7888,"[""Laptop""]",4951.17,"{"""": ""25%""}",293068,1,Asia +2024-09-22,5616,4580,"[""Phone"", ""Tablet""]",4431.88,"{""loyalty"": ""12%""}",132037,1,Europe +2023-12-19,5617,7103,"[""Monitor""]",789.64,{},239915,1,South America +2023-06-17,5618,2985,"[""Laptop"", ""Monitor""]",1106.64,{},105432,1,Europe +2024-05-04,5619,7072,"[""Keyboard""]",913.99,{},292259,1,Asia +2023-12-17,5620,9376,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4859.49,"{""promo"": ""23%""}",44744,0,South America +2023-01-10,5621,7832,"[""Wireless Mouse"", ""Laptop""]",2014.5,{},279734,1,Africa +2024-10-08,5622,1189,"[""Charger"", ""Tablet""]",2797.19,"{"""": ""12%""}",117827,0,South America +2023-07-21,5623,7673,"[""Laptop"", ""Keyboard""]",629.49,"{"""": ""20%""}",34459,1,North America +2024-09-25,5624,204,"[""Headphones"", ""Laptop"", ""Phone""]",3140.38,"{""seasonal"": ""25%""}",116761,1,Asia +2024-07-03,5625,2766,"[""Monitor"", ""Wireless Mouse""]",2590.09,"{""promo"": ""13%""}",237920,1,Europe +2024-08-13,5626,1634,"[""Headphones"", ""Tablet""]",147.49,{},179500,1,Asia +2024-05-25,5627,1544,"[""Monitor"", ""Laptop"", ""Keyboard""]",2028.25,"{""seasonal"": ""10%""}",138638,0,Europe +2024-09-04,5628,5020,"[""Monitor""]",420.35,{},129259,0,Asia +2023-04-12,5629,556,"[""Keyboard""]",1433.8,"{""loyalty"": ""16%""}",291363,0,Asia +2023-08-29,5630,4450,"[""Headphones"", ""Tablet"", ""Laptop""]",3666.14,{},249962,0,Africa +2023-07-24,5631,925,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4090.34,{},183107,0,Europe +2024-06-09,5632,1732,"[""Headphones"", ""Phone"", ""Laptop""]",1748.58,{},109401,0,Europe +2024-05-17,5633,2999,"[""Monitor"", ""Charger""]",2506.01,"{""promo"": ""28%""}",57097,1,South America +2024-01-11,5634,5680,"[""Monitor"", ""Keyboard""]",4645.68,"{"""": ""14%""}",66561,0,South America +2023-04-04,5635,2137,"[""Keyboard""]",4167.85,"{"""": ""21%""}",94684,0,Africa +2023-10-04,5636,5839,"[""Wireless Mouse"", ""Laptop""]",4095.67,{},12210,0,North America +2023-09-03,5637,7358,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4307.59,"{""loyalty"": ""29%""}",261373,1,South America +2024-05-18,5638,6515,"[""Monitor"", ""Laptop""]",2263.57,{},86873,1,North America +2024-07-14,5639,5548,"[""Phone"", ""Laptop""]",3694.57,"{""loyalty"": ""28%""}",41644,1,North America +2023-11-18,5640,8484,"[""Tablet"", ""Keyboard""]",1539.28,"{""promo"": ""29%""}",264560,0,North America +2023-08-30,5641,4145,"[""Tablet"", ""Keyboard"", ""Laptop""]",4497.37,{},261963,0,Europe +2023-06-17,5642,5471,"[""Laptop"", ""Keyboard"", ""Headphones""]",145.3,"{""seasonal"": ""26%""}",273231,1,Europe +2023-06-09,5643,4820,"[""Wireless Mouse""]",3125.07,{},61530,0,Asia +2024-07-01,5644,1049,"[""Tablet"", ""Charger""]",347.21,{},150678,0,South America +2023-04-19,5645,3271,"[""Phone"", ""Headphones""]",1366.09,"{""promo"": ""13%""}",46624,1,South America +2024-10-31,5646,228,"[""Monitor"", ""Phone""]",4966.37,"{""loyalty"": ""10%""}",167813,1,Africa +2023-10-01,5647,5019,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3503.29,{},97261,1,Africa +2024-07-04,5648,9921,"[""Laptop"", ""Headphones""]",4983.18,"{"""": ""27%""}",121397,0,Asia +2024-03-07,5649,8027,"[""Monitor"", ""Phone""]",4213.91,{},96999,0,North America +2024-06-13,5650,8436,"[""Wireless Mouse"", ""Phone""]",3842.01,"{""promo"": ""22%""}",269061,0,Asia +2024-10-02,5651,9541,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4281.5,"{""loyalty"": ""18%""}",163805,0,Africa +2023-08-14,5652,1073,"[""Charger""]",108.67,"{"""": ""19%""}",233929,1,Europe +2024-04-12,5653,3679,"[""Keyboard"", ""Laptop"", ""Phone""]",3868.42,{},142908,1,South America +2023-11-09,5654,5379,"[""Laptop""]",3044.64,"{"""": ""28%""}",119859,1,Africa +2024-07-10,5655,9047,"[""Laptop""]",754.62,{},257825,1,South America +2023-12-20,5656,9216,"[""Charger"", ""Headphones""]",4696.33,"{""promo"": ""8%""}",34893,0,Europe +2023-03-24,5657,5264,"[""Tablet"", ""Laptop""]",2332.76,"{""seasonal"": ""14%""}",259392,0,Africa +2024-07-19,5658,7988,"[""Tablet"", ""Laptop"", ""Monitor""]",3972.31,"{""seasonal"": ""16%""}",101354,0,South America +2024-10-21,5659,9140,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4597.81,"{""promo"": ""26%""}",46674,0,North America +2024-04-23,5660,5282,"[""Keyboard"", ""Laptop""]",234.65,"{""promo"": ""30%""}",11805,0,Africa +2023-10-10,5661,7512,"[""Wireless Mouse""]",2186.75,{},162601,0,South America +2024-07-15,5662,3823,"[""Tablet""]",1281.13,{},189947,1,Europe +2023-01-17,5663,6817,"[""Monitor""]",2920.52,{},25919,1,Africa +2024-01-29,5664,8734,"[""Phone"", ""Tablet"", ""Laptop""]",237.14,{},59651,0,North America +2023-05-29,5665,8648,"[""Wireless Mouse"", ""Monitor""]",2737.54,"{""seasonal"": ""25%""}",299151,0,North America +2023-11-26,5666,929,"[""Laptop"", ""Tablet""]",2698.76,{},142061,0,North America +2024-02-10,5667,3112,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4220.83,{},141384,1,Europe +2024-11-29,5668,2345,"[""Laptop"", ""Keyboard""]",3647.92,"{""promo"": ""18%""}",239133,1,South America +2023-06-26,5669,3191,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1353.26,"{""seasonal"": ""26%""}",138996,0,North America +2023-06-20,5670,658,"[""Tablet"", ""Phone""]",3071.59,"{""seasonal"": ""21%""}",37052,1,North America +2023-09-11,5671,3931,"[""Keyboard"", ""Headphones"", ""Monitor""]",4381.67,{},121335,0,South America +2023-07-11,5672,7222,"[""Monitor"", ""Charger""]",1849.82,{},52986,0,Europe +2024-08-06,5673,822,"[""Monitor""]",4304.74,{},255843,0,Africa +2024-05-31,5674,2356,"[""Laptop"", ""Charger""]",3791.15,{},115399,0,North America +2024-12-08,5675,6336,"[""Monitor"", ""Charger"", ""Laptop""]",949.38,"{"""": ""8%""}",35582,0,South America +2024-09-29,5676,6130,"[""Wireless Mouse"", ""Headphones""]",3108.36,{},223803,1,Asia +2023-10-01,5677,8618,"[""Headphones"", ""Keyboard"", ""Laptop""]",3261.45,"{""loyalty"": ""9%""}",71850,0,Asia +2023-12-28,5678,7446,"[""Headphones""]",2468.91,{},287021,0,Africa +2023-03-20,5679,8799,"[""Phone"", ""Laptop"", ""Tablet""]",740.23,"{""loyalty"": ""25%""}",291987,1,North America +2024-01-29,5680,3177,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1490.37,"{""seasonal"": ""5%""}",247009,0,Africa +2023-12-16,5681,1403,"[""Tablet"", ""Charger""]",2387.18,"{""loyalty"": ""24%""}",134267,1,Europe +2024-10-02,5682,9899,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3906.7,"{""promo"": ""11%""}",84022,0,Asia +2024-05-24,5683,1351,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1453.86,{},204008,1,Africa +2023-05-22,5684,2243,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3948.18,{},12011,0,South America +2023-01-18,5685,4787,"[""Charger""]",2379.96,"{""loyalty"": ""27%""}",191657,1,North America +2024-08-15,5686,8220,"[""Laptop"", ""Headphones""]",1462.22,{},59307,0,South America +2024-09-28,5687,2684,"[""Headphones""]",792.51,{},279264,1,Europe +2024-04-06,5688,6414,"[""Headphones"", ""Laptop""]",1513.56,"{""promo"": ""25%""}",99904,1,Europe +2023-04-19,5689,2490,"[""Keyboard""]",1854.29,{},50310,1,Europe +2024-10-08,5690,3458,"[""Wireless Mouse"", ""Tablet""]",1128.08,{},35541,1,North America +2023-04-17,5691,2010,"[""Laptop"", ""Tablet"", ""Phone""]",274.63,"{""loyalty"": ""11%""}",241503,0,Africa +2023-12-07,5692,1086,"[""Headphones""]",808.79,"{"""": ""23%""}",127434,0,Asia +2023-12-19,5693,5928,"[""Keyboard""]",3483.87,"{"""": ""10%""}",5047,0,Europe +2023-12-10,5694,3299,"[""Wireless Mouse""]",2298.0,{},90623,0,South America +2024-01-06,5695,2131,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2849.88,"{""seasonal"": ""19%""}",136993,1,North America +2023-03-09,5696,7082,"[""Keyboard"", ""Phone"", ""Charger""]",354.28,{},285021,0,Asia +2023-12-19,5697,208,"[""Wireless Mouse"", ""Laptop""]",1426.15,{},82369,1,South America +2023-07-07,5698,2307,"[""Wireless Mouse"", ""Headphones""]",2240.02,{},18502,1,Africa +2023-06-29,5699,3786,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2893.63,{},10432,0,Asia +2023-07-11,5700,1851,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1064.62,"{""loyalty"": ""9%""}",29079,1,Africa +2024-03-17,5701,970,"[""Headphones""]",3596.06,{},98527,0,North America +2023-07-14,5702,6053,"[""Laptop""]",981.32,"{""loyalty"": ""24%""}",67425,1,South America +2024-06-03,5703,3198,"[""Phone""]",3318.62,"{""seasonal"": ""21%""}",34570,0,North America +2023-02-15,5704,6961,"[""Phone""]",869.94,{},180004,1,Europe +2023-01-01,5705,3178,"[""Laptop"", ""Wireless Mouse""]",3901.79,{},251807,0,South America +2024-02-18,5706,4313,"[""Headphones"", ""Keyboard"", ""Charger""]",2695.57,{},173440,0,South America +2024-11-25,5707,7300,"[""Wireless Mouse"", ""Charger""]",4086.85,"{"""": ""21%""}",284942,0,South America +2023-09-09,5708,8380,"[""Monitor"", ""Phone"", ""Charger""]",3147.11,"{""seasonal"": ""10%""}",182317,0,South America +2024-09-30,5709,8978,"[""Phone"", ""Charger"", ""Laptop""]",2116.69,"{"""": ""12%""}",35670,1,Europe +2023-03-01,5710,9211,"[""Charger"", ""Laptop""]",4307.45,"{"""": ""6%""}",231404,1,North America +2023-08-16,5711,4532,"[""Headphones"", ""Laptop""]",1512.24,"{""loyalty"": ""15%""}",144955,1,South America +2023-11-24,5712,9945,"[""Monitor""]",4136.52,{},268432,1,Africa +2024-03-09,5713,2332,"[""Laptop"", ""Phone"", ""Monitor""]",2863.15,"{""seasonal"": ""24%""}",35951,1,Asia +2024-03-22,5714,1947,"[""Phone""]",4588.43,"{""promo"": ""20%""}",69667,0,South America +2023-12-06,5715,6625,"[""Phone"", ""Charger"", ""Keyboard""]",4676.29,"{""loyalty"": ""12%""}",232619,1,North America +2023-05-04,5716,2026,"[""Charger"", ""Laptop""]",318.71,"{""seasonal"": ""29%""}",267710,1,Europe +2023-12-29,5717,4298,"[""Charger""]",1087.89,{},81965,1,South America +2023-07-02,5718,4049,"[""Tablet""]",3446.85,"{""promo"": ""5%""}",219695,1,Africa +2023-02-25,5719,2880,"[""Laptop"", ""Tablet""]",837.38,"{""loyalty"": ""19%""}",44046,1,Asia +2023-01-19,5720,1246,"[""Charger"", ""Phone""]",3606.24,"{"""": ""16%""}",72545,1,Asia +2023-04-24,5721,5663,"[""Monitor""]",4419.44,"{"""": ""18%""}",170580,1,North America +2023-03-13,5722,2071,"[""Tablet"", ""Phone"", ""Charger""]",3904.6,{},19759,1,South America +2023-01-06,5723,2142,"[""Monitor""]",3452.87,{},241837,0,Europe +2023-05-27,5724,5110,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4948.97,"{""seasonal"": ""29%""}",190665,1,Asia +2023-11-14,5725,9077,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",101.39,{},248038,1,Africa +2023-01-13,5726,4291,"[""Tablet""]",4633.61,"{"""": ""21%""}",251754,0,Asia +2024-05-22,5727,3528,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",72.31,{},146788,0,South America +2023-04-29,5728,8165,"[""Headphones"", ""Keyboard"", ""Charger""]",3447.85,{},209977,0,South America +2024-07-08,5729,581,"[""Headphones"", ""Phone""]",4739.61,"{""loyalty"": ""27%""}",10557,0,Africa +2024-01-23,5730,6830,"[""Headphones""]",1875.34,{},262439,1,Europe +2023-07-12,5731,4300,"[""Headphones"", ""Keyboard"", ""Laptop""]",2302.11,{},26036,1,North America +2023-08-13,5732,101,"[""Wireless Mouse"", ""Headphones""]",647.08,"{""seasonal"": ""12%""}",116518,1,Asia +2024-08-31,5733,7342,"[""Phone"", ""Charger"", ""Keyboard""]",1586.46,"{""loyalty"": ""25%""}",287879,1,North America +2023-04-11,5734,1631,"[""Tablet""]",3017.41,"{""seasonal"": ""28%""}",65460,1,South America +2023-07-15,5735,8824,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3485.08,{},44809,1,South America +2023-12-26,5736,2113,"[""Keyboard"", ""Laptop""]",4423.83,"{""loyalty"": ""20%""}",48575,0,South America +2024-10-29,5737,3206,"[""Laptop"", ""Tablet""]",502.4,"{""loyalty"": ""30%""}",111589,0,South America +2023-11-30,5738,2882,"[""Monitor""]",1692.66,"{""promo"": ""27%""}",216188,1,North America +2024-09-30,5739,3095,"[""Phone""]",3588.51,"{"""": ""14%""}",23971,0,Europe +2024-11-17,5740,5060,"[""Wireless Mouse""]",4025.59,{},31047,0,Africa +2024-01-07,5741,2023,"[""Phone""]",4261.3,{},131848,0,Europe +2024-01-23,5742,2064,"[""Phone"", ""Tablet"", ""Laptop""]",1259.8,"{"""": ""20%""}",201026,1,North America +2024-02-14,5743,669,"[""Wireless Mouse""]",1686.0,"{""promo"": ""24%""}",17806,1,Europe +2023-04-20,5744,1528,"[""Charger""]",2295.77,{},181678,1,Asia +2024-02-02,5745,9727,"[""Laptop""]",1394.0,{},170785,0,Europe +2023-02-26,5746,3845,"[""Wireless Mouse""]",1759.41,{},46960,1,North America +2023-03-07,5747,31,"[""Wireless Mouse""]",1573.88,{},119265,1,Europe +2023-07-08,5748,4122,"[""Headphones""]",3500.27,{},285332,0,Africa +2023-12-06,5749,2362,"[""Keyboard"", ""Charger"", ""Tablet""]",3839.49,"{""promo"": ""16%""}",79283,1,Europe +2023-04-25,5750,2757,"[""Charger"", ""Laptop"", ""Tablet""]",1118.59,"{""seasonal"": ""23%""}",85033,0,Africa +2024-06-21,5751,9246,"[""Tablet""]",1692.24,"{""seasonal"": ""24%""}",283431,0,Africa +2024-01-15,5752,2396,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3180.7,"{""promo"": ""10%""}",205489,0,Europe +2023-02-04,5753,791,"[""Wireless Mouse""]",2988.77,"{""seasonal"": ""12%""}",294465,0,Asia +2024-08-09,5754,8181,"[""Laptop""]",1857.19,{},88559,1,Europe +2024-09-20,5755,6955,"[""Wireless Mouse""]",347.98,"{"""": ""16%""}",96747,1,Asia +2023-07-11,5756,9479,"[""Tablet""]",3681.95,"{""promo"": ""23%""}",185622,0,South America +2023-02-14,5757,6198,"[""Phone"", ""Keyboard""]",1724.66,{},270536,0,North America +2024-02-26,5758,5031,"[""Charger"", ""Tablet"", ""Headphones""]",806.41,"{""seasonal"": ""26%""}",144752,0,North America +2024-12-07,5759,6112,"[""Tablet""]",4934.63,{},46163,0,Europe +2023-08-18,5760,2562,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2020.69,{},205570,1,Asia +2024-08-07,5761,3147,"[""Keyboard""]",1869.94,"{"""": ""22%""}",38552,1,Europe +2024-06-20,5762,4905,"[""Keyboard"", ""Headphones"", ""Charger""]",399.08,"{""promo"": ""16%""}",146491,0,Asia +2024-03-16,5763,8634,"[""Laptop"", ""Phone""]",603.7,"{""seasonal"": ""26%""}",188260,1,South America +2023-09-05,5764,6859,"[""Charger"", ""Monitor"", ""Tablet""]",458.12,{},104127,1,North America +2024-07-21,5765,6074,"[""Phone""]",343.93,"{"""": ""22%""}",96338,0,South America +2024-08-15,5766,4442,"[""Phone""]",4218.8,"{""seasonal"": ""30%""}",56629,1,South America +2023-05-28,5767,8001,"[""Phone"", ""Monitor""]",2798.56,"{""loyalty"": ""26%""}",205460,1,Asia +2023-05-05,5768,5381,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",815.79,{},86391,0,South America +2023-08-28,5769,2917,"[""Charger""]",4274.63,"{""loyalty"": ""21%""}",52836,0,Europe +2024-08-20,5770,799,"[""Monitor"", ""Keyboard""]",3919.2,{},17501,1,Asia +2023-06-14,5771,1741,"[""Keyboard"", ""Phone"", ""Laptop""]",4757.91,{},266372,0,South America +2023-06-26,5772,9576,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1361.86,{},94065,1,North America +2024-08-10,5773,7080,"[""Monitor""]",634.53,{},278568,1,South America +2024-05-10,5774,7375,"[""Headphones""]",4982.05,{},114099,0,Europe +2023-02-24,5775,2551,"[""Tablet""]",2144.13,"{"""": ""5%""}",191741,0,Africa +2023-05-01,5776,1888,"[""Charger"", ""Monitor""]",3607.09,"{"""": ""6%""}",138054,0,Africa +2024-01-29,5777,6152,"[""Phone""]",551.81,{},42861,0,Europe +2024-12-05,5778,5155,"[""Laptop"", ""Keyboard""]",273.7,"{""seasonal"": ""12%""}",275003,1,South America +2023-06-21,5779,190,"[""Phone"", ""Charger""]",1913.66,{},61405,0,North America +2023-08-02,5780,9511,"[""Headphones"", ""Keyboard""]",3418.58,"{""promo"": ""11%""}",110441,0,North America +2024-08-17,5781,8546,"[""Monitor"", ""Laptop"", ""Keyboard""]",2714.55,"{""promo"": ""11%""}",69870,1,Asia +2024-01-01,5782,2421,"[""Laptop"", ""Monitor""]",1929.05,{},42789,0,Asia +2024-04-26,5783,2268,"[""Wireless Mouse"", ""Tablet""]",900.4,{},281395,0,Europe +2023-06-01,5784,6811,"[""Monitor""]",1453.64,"{""loyalty"": ""14%""}",211143,1,Asia +2024-10-15,5785,8723,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4544.29,"{""loyalty"": ""8%""}",10135,0,North America +2023-12-02,5786,4063,"[""Wireless Mouse""]",3476.93,{},181988,1,Europe +2023-06-18,5787,3267,"[""Keyboard""]",2722.88,"{""seasonal"": ""20%""}",187695,0,North America +2024-06-08,5788,4797,"[""Keyboard""]",900.54,"{""seasonal"": ""20%""}",283760,1,Europe +2024-05-17,5789,7877,"[""Laptop"", ""Tablet""]",3333.68,"{"""": ""15%""}",208072,1,South America +2023-08-11,5790,4826,"[""Wireless Mouse"", ""Monitor""]",339.73,{},53302,0,Asia +2023-12-25,5791,3047,"[""Phone""]",4274.51,{},38956,0,Asia +2023-07-22,5792,7153,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4537.13,{},160994,1,Asia +2024-07-14,5793,9270,"[""Tablet"", ""Charger"", ""Monitor""]",2420.17,"{""promo"": ""12%""}",220186,1,Africa +2023-12-11,5794,9858,"[""Charger"", ""Laptop"", ""Monitor""]",698.3,"{""loyalty"": ""27%""}",271634,1,Asia +2024-03-03,5795,6891,"[""Charger"", ""Phone"", ""Keyboard""]",1747.96,{},16454,1,Asia +2024-03-20,5796,1007,"[""Phone""]",1582.52,"{""seasonal"": ""5%""}",253999,0,North America +2024-02-09,5797,9047,"[""Wireless Mouse"", ""Keyboard""]",2439.4,{},120358,1,South America +2024-11-26,5798,3818,"[""Keyboard""]",4951.98,"{""seasonal"": ""29%""}",238834,1,Europe +2023-09-11,5799,7841,"[""Headphones""]",3314.49,"{"""": ""15%""}",188665,1,North America +2024-01-26,5800,7755,"[""Tablet"", ""Monitor""]",3308.75,{},271854,0,South America +2023-12-10,5801,3154,"[""Tablet""]",1187.5,"{""seasonal"": ""29%""}",118809,0,Europe +2024-01-02,5802,4309,"[""Wireless Mouse"", ""Charger""]",2826.27,"{""loyalty"": ""24%""}",208648,1,South America +2024-11-26,5803,1221,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1147.73,{},170153,1,South America +2023-02-01,5804,8279,"[""Phone""]",2144.24,{},113700,1,North America +2024-08-17,5805,8157,"[""Headphones"", ""Keyboard"", ""Monitor""]",3474.82,{},296787,1,South America +2024-10-26,5806,6829,"[""Keyboard"", ""Monitor""]",4394.27,{},34255,0,Europe +2023-03-26,5807,6018,"[""Charger""]",3694.57,{},85485,0,Asia +2023-03-02,5808,4769,"[""Tablet"", ""Charger"", ""Monitor""]",3299.46,"{"""": ""30%""}",61478,1,Europe +2024-07-20,5809,8936,"[""Keyboard""]",4885.71,{},266438,0,North America +2024-04-03,5810,224,"[""Tablet"", ""Headphones""]",81.69,"{""seasonal"": ""13%""}",21429,0,North America +2024-04-02,5811,360,"[""Phone"", ""Charger"", ""Keyboard""]",691.34,"{""seasonal"": ""12%""}",55309,0,Europe +2023-04-10,5812,8347,"[""Monitor"", ""Tablet"", ""Keyboard""]",598.13,{},73142,1,Asia +2024-01-02,5813,1359,"[""Headphones"", ""Monitor"", ""Phone""]",1656.73,{},299435,1,Asia +2024-08-08,5814,4398,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1163.11,"{""seasonal"": ""27%""}",121037,0,Africa +2023-09-20,5815,1356,"[""Wireless Mouse"", ""Phone"", ""Charger""]",101.78,"{""loyalty"": ""11%""}",154958,1,North America +2023-07-24,5816,1940,"[""Headphones"", ""Keyboard"", ""Phone""]",2656.78,"{""loyalty"": ""25%""}",203816,0,Europe +2024-08-04,5817,6546,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",774.64,{},47390,0,South America +2023-12-13,5818,2825,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1917.18,{},138947,0,Africa +2023-07-24,5819,688,"[""Headphones"", ""Phone"", ""Monitor""]",1128.34,{},63644,1,Africa +2024-11-05,5820,4174,"[""Phone""]",3927.62,{},107676,0,Europe +2023-04-26,5821,2910,"[""Headphones"", ""Wireless Mouse""]",1837.6,"{""loyalty"": ""10%""}",103986,0,Africa +2023-06-01,5822,5488,"[""Phone""]",2328.77,{},172209,0,Europe +2023-12-24,5823,550,"[""Tablet"", ""Charger""]",1277.67,{},102333,1,Europe +2024-11-15,5824,542,"[""Headphones"", ""Charger"", ""Monitor""]",3690.02,"{""promo"": ""27%""}",248808,1,Asia +2024-10-06,5825,9123,"[""Laptop"", ""Headphones"", ""Monitor""]",1215.17,"{"""": ""28%""}",222808,1,Africa +2024-05-26,5826,1496,"[""Charger"", ""Laptop"", ""Phone""]",4733.23,"{""seasonal"": ""18%""}",19195,1,North America +2023-11-18,5827,5958,"[""Wireless Mouse"", ""Laptop""]",1114.62,{},114071,0,Africa +2023-01-04,5828,9699,"[""Keyboard""]",2126.52,{},67318,0,Africa +2024-12-13,5829,5990,"[""Headphones""]",1854.7,"{"""": ""10%""}",11952,0,South America +2023-02-10,5830,2850,"[""Monitor"", ""Keyboard"", ""Laptop""]",2316.86,{},162427,1,Asia +2023-06-20,5831,2851,"[""Keyboard"", ""Headphones""]",4951.96,{},288806,0,Africa +2023-03-22,5832,5361,"[""Charger""]",650.09,"{""promo"": ""17%""}",245687,0,South America +2024-11-15,5833,6378,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2445.49,{},162284,1,Asia +2023-09-15,5834,4218,"[""Phone"", ""Headphones"", ""Laptop""]",245.54,{},145503,0,South America +2023-01-15,5835,7711,"[""Charger""]",4176.94,"{""promo"": ""6%""}",148423,1,South America +2023-04-04,5836,971,"[""Monitor"", ""Headphones"", ""Phone""]",562.86,"{""promo"": ""18%""}",234650,1,South America +2023-12-22,5837,1055,"[""Headphones""]",2467.83,"{""promo"": ""24%""}",190932,0,Europe +2024-03-10,5838,3053,"[""Wireless Mouse""]",1740.27,{},216725,1,Africa +2024-05-30,5839,4565,"[""Headphones"", ""Laptop"", ""Tablet""]",4490.56,{},147036,0,Africa +2023-04-20,5840,8904,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2560.24,{},78440,0,Asia +2023-01-31,5841,2940,"[""Wireless Mouse""]",2651.52,"{""promo"": ""15%""}",154876,0,Europe +2023-02-01,5842,9395,"[""Phone""]",1352.17,"{""loyalty"": ""7%""}",210478,0,South America +2024-10-18,5843,2663,"[""Wireless Mouse""]",1665.21,{},103438,1,Africa +2024-07-23,5844,6840,"[""Wireless Mouse"", ""Keyboard""]",3820.12,"{""loyalty"": ""19%""}",182227,1,Europe +2024-11-24,5845,6373,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2318.81,"{""seasonal"": ""22%""}",284356,0,North America +2024-07-22,5846,7751,"[""Monitor"", ""Laptop"", ""Tablet""]",3602.6,"{""promo"": ""14%""}",141319,1,Asia +2024-11-06,5847,5695,"[""Headphones"", ""Keyboard""]",3562.78,{},63972,0,South America +2023-07-15,5848,8696,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1006.89,{},164948,0,South America +2023-05-30,5849,701,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3676.37,{},66352,0,North America +2024-01-30,5850,5248,"[""Laptop"", ""Phone""]",387.67,"{"""": ""13%""}",263385,1,North America +2023-11-15,5851,7089,"[""Tablet""]",3545.94,{},7961,0,Europe +2023-01-31,5852,411,"[""Charger"", ""Headphones"", ""Monitor""]",2606.64,"{""seasonal"": ""26%""}",174210,0,Europe +2023-01-16,5853,9925,"[""Charger""]",2487.39,{},27900,0,North America +2024-07-12,5854,8362,"[""Headphones"", ""Phone"", ""Charger""]",4493.13,"{""seasonal"": ""29%""}",174170,0,South America +2024-06-04,5855,5785,"[""Tablet"", ""Monitor"", ""Charger""]",1443.89,{},46241,1,Europe +2023-07-23,5856,3451,"[""Tablet"", ""Headphones"", ""Monitor""]",3962.71,"{""promo"": ""30%""}",30390,1,Africa +2023-10-28,5857,1679,"[""Keyboard""]",1131.14,"{"""": ""8%""}",103778,1,Asia +2024-07-21,5858,974,"[""Tablet""]",4507.44,{},233364,1,Asia +2023-06-02,5859,6296,"[""Phone"", ""Laptop"", ""Headphones""]",4323.43,{},237589,1,North America +2023-07-02,5860,8078,"[""Charger"", ""Wireless Mouse""]",3959.88,"{""loyalty"": ""23%""}",102221,0,South America +2023-07-29,5861,1192,"[""Phone""]",3782.32,"{""loyalty"": ""12%""}",29474,0,South America +2024-02-05,5862,4446,"[""Monitor"", ""Headphones"", ""Charger""]",2430.22,{},148321,1,Europe +2024-11-23,5863,8801,"[""Laptop""]",289.49,{},220124,1,Europe +2024-06-18,5864,259,"[""Keyboard"", ""Tablet"", ""Phone""]",3221.93,{},115350,0,Europe +2023-09-19,5865,9823,"[""Charger"", ""Headphones""]",3961.7,{},179607,1,Europe +2023-12-03,5866,5086,"[""Headphones"", ""Keyboard"", ""Charger""]",4193.82,"{""loyalty"": ""25%""}",208904,0,North America +2024-03-29,5867,4233,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2975.11,"{""loyalty"": ""18%""}",5635,1,Africa +2023-04-27,5868,2714,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4259.05,{},11305,0,Europe +2024-12-12,5869,437,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3968.5,{},84338,0,North America +2023-04-03,5870,8660,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",270.03,"{""seasonal"": ""29%""}",110488,0,Africa +2024-06-26,5871,2284,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4640.03,"{""loyalty"": ""14%""}",271641,1,Europe +2023-09-17,5872,6114,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1780.28,"{"""": ""26%""}",266304,1,Africa +2023-04-06,5873,3492,"[""Headphones"", ""Laptop""]",4405.02,{},101832,0,Asia +2023-12-19,5874,299,"[""Laptop""]",349.88,{},126309,1,North America +2024-08-25,5875,4320,"[""Monitor"", ""Charger""]",133.98,"{""loyalty"": ""15%""}",192386,1,Europe +2023-07-23,5876,8652,"[""Tablet""]",615.43,{},87313,0,Europe +2023-08-20,5877,2520,"[""Headphones""]",4263.62,"{""loyalty"": ""14%""}",91531,1,North America +2024-03-23,5878,4963,"[""Charger"", ""Monitor""]",3457.89,{},164325,0,Europe +2024-01-04,5879,5850,"[""Keyboard"", ""Tablet""]",4913.7,{},11527,1,Africa +2024-02-18,5880,2508,"[""Headphones""]",4519.74,{},217318,0,Europe +2024-11-21,5881,8892,"[""Keyboard""]",4837.04,{},183561,0,Europe +2024-07-15,5882,2559,"[""Charger"", ""Tablet""]",1713.17,{},114571,0,Europe +2024-04-25,5883,4178,"[""Phone"", ""Wireless Mouse""]",4846.83,{},253791,1,Africa +2024-09-09,5884,1573,"[""Wireless Mouse""]",1420.35,"{""seasonal"": ""28%""}",106917,1,North America +2024-01-09,5885,785,"[""Laptop"", ""Charger"", ""Headphones""]",1770.65,{},239544,1,North America +2024-08-25,5886,8867,"[""Headphones""]",696.13,"{""seasonal"": ""27%""}",75334,1,Africa +2024-03-06,5887,4780,"[""Keyboard""]",4200.03,"{""loyalty"": ""28%""}",278440,0,Europe +2024-07-14,5888,190,"[""Wireless Mouse"", ""Charger""]",1022.44,{},120655,0,Asia +2024-12-30,5889,4821,"[""Headphones""]",1162.83,"{""promo"": ""10%""}",59591,1,South America +2024-05-15,5890,9833,"[""Headphones""]",1267.11,{},65978,1,South America +2024-11-22,5891,2670,"[""Keyboard"", ""Laptop"", ""Monitor""]",2283.26,"{""loyalty"": ""29%""}",167572,1,Asia +2024-05-19,5892,1655,"[""Keyboard""]",4226.81,{},160165,1,Europe +2024-02-02,5893,5624,"[""Monitor"", ""Laptop"", ""Phone""]",1311.91,"{""seasonal"": ""15%""}",19404,0,North America +2024-04-22,5894,4489,"[""Headphones""]",3382.13,"{""promo"": ""9%""}",260249,1,South America +2024-04-22,5895,8499,"[""Tablet""]",3058.03,"{"""": ""19%""}",195641,0,Africa +2023-06-11,5896,8558,"[""Wireless Mouse""]",1002.01,"{""seasonal"": ""25%""}",295958,0,Africa +2024-04-05,5897,4088,"[""Monitor""]",4139.45,{},33280,0,Asia +2023-09-09,5898,2493,"[""Headphones"", ""Keyboard"", ""Phone""]",2156.61,"{""promo"": ""23%""}",84734,1,Europe +2024-10-27,5899,9726,"[""Monitor""]",3455.33,{},27967,0,South America +2024-01-14,5900,7720,"[""Charger"", ""Monitor""]",1556.38,"{"""": ""18%""}",164347,0,Europe +2023-02-02,5901,6803,"[""Charger""]",1418.99,"{""promo"": ""21%""}",194526,0,Europe +2024-06-15,5902,5797,"[""Keyboard""]",4138.16,{},174049,0,Asia +2023-10-27,5903,216,"[""Keyboard""]",4579.73,"{""loyalty"": ""9%""}",59256,1,Asia +2024-08-07,5904,2410,"[""Tablet""]",1982.67,{},88323,1,Europe +2024-09-09,5905,5008,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1950.98,{},16418,1,South America +2024-07-05,5906,6607,"[""Tablet"", ""Monitor"", ""Keyboard""]",405.0,"{""loyalty"": ""8%""}",50668,0,Asia +2023-04-12,5907,6785,"[""Tablet""]",2493.92,{},204998,1,Europe +2024-05-11,5908,8111,"[""Wireless Mouse"", ""Charger""]",476.97,{},133077,0,Europe +2023-03-12,5909,1784,"[""Phone"", ""Keyboard"", ""Monitor""]",3610.89,{},297681,1,North America +2024-02-27,5910,4134,"[""Laptop"", ""Tablet"", ""Charger""]",3720.34,"{"""": ""11%""}",219843,1,Europe +2024-07-18,5911,2955,"[""Tablet""]",2242.79,{},67887,0,North America +2023-10-20,5912,2354,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",664.02,"{"""": ""14%""}",206057,1,South America +2023-02-18,5913,7491,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1610.06,"{""loyalty"": ""16%""}",282777,1,Asia +2024-09-03,5914,6013,"[""Monitor"", ""Laptop""]",517.31,"{"""": ""24%""}",103629,1,Africa +2024-09-18,5915,8147,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",442.68,"{"""": ""22%""}",63598,1,Africa +2024-01-20,5916,8179,"[""Phone""]",1414.88,{},240032,0,Africa +2024-03-19,5917,5637,"[""Headphones"", ""Wireless Mouse""]",516.52,{},210742,0,South America +2023-01-16,5918,2778,"[""Keyboard"", ""Laptop"", ""Headphones""]",4946.5,{},50832,1,Asia +2024-11-14,5919,3296,"[""Charger""]",92.06,"{"""": ""18%""}",253495,1,North America +2024-09-30,5920,6341,"[""Phone""]",3474.95,"{""seasonal"": ""7%""}",63363,1,Europe +2023-01-24,5921,7429,"[""Tablet"", ""Charger""]",3524.43,{},203608,0,Africa +2023-02-13,5922,8577,"[""Charger"", ""Monitor"", ""Tablet""]",2024.97,"{""loyalty"": ""27%""}",175365,1,North America +2023-07-04,5923,1296,"[""Headphones"", ""Monitor""]",1925.53,{},73823,1,Asia +2023-11-18,5924,2735,"[""Laptop""]",1041.97,"{"""": ""13%""}",177081,1,Asia +2024-01-21,5925,388,"[""Laptop"", ""Charger""]",174.84,"{""loyalty"": ""20%""}",272878,0,North America +2023-11-12,5926,8558,"[""Laptop""]",1817.62,"{""seasonal"": ""12%""}",113212,1,South America +2023-08-01,5927,7589,"[""Tablet""]",3248.79,{},283013,0,North America +2024-05-20,5928,9284,"[""Keyboard"", ""Headphones"", ""Tablet""]",936.24,{},288352,1,South America +2023-04-06,5929,7373,"[""Tablet"", ""Monitor""]",1070.8,"{""seasonal"": ""20%""}",223792,0,Europe +2024-09-10,5930,6420,"[""Phone"", ""Keyboard"", ""Tablet""]",2623.61,{},134425,1,North America +2024-11-02,5931,4872,"[""Monitor""]",1133.83,{},294258,1,Asia +2023-10-26,5932,2733,"[""Charger"", ""Keyboard""]",3744.5,"{""seasonal"": ""23%""}",262219,1,Asia +2023-08-17,5933,9575,"[""Tablet""]",1144.16,{},270494,0,South America +2024-11-27,5934,2175,"[""Wireless Mouse""]",1888.32,{},65001,1,Europe +2024-01-16,5935,6462,"[""Keyboard"", ""Tablet"", ""Phone""]",4561.35,"{"""": ""24%""}",155803,1,South America +2024-01-17,5936,1859,"[""Wireless Mouse""]",1694.24,{},17080,1,Europe +2024-07-06,5937,7849,"[""Tablet"", ""Headphones""]",4414.05,{},282223,1,Africa +2024-07-26,5938,6774,"[""Phone"", ""Keyboard""]",1931.04,"{""seasonal"": ""21%""}",123642,1,Africa +2024-10-30,5939,6147,"[""Laptop"", ""Headphones""]",4635.93,{},284394,1,Asia +2024-04-23,5940,8106,"[""Headphones"", ""Charger"", ""Phone""]",3453.85,"{"""": ""17%""}",225688,0,South America +2024-08-08,5941,8052,"[""Phone"", ""Wireless Mouse""]",1461.69,{},32884,1,Europe +2023-03-31,5942,4577,"[""Tablet""]",1555.03,{},287075,1,South America +2024-12-21,5943,678,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1458.27,{},268016,1,Asia +2024-09-30,5944,7107,"[""Charger"", ""Monitor""]",1465.41,{},22977,0,Asia +2024-07-13,5945,5190,"[""Monitor"", ""Charger"", ""Headphones""]",3281.74,"{""promo"": ""6%""}",92822,1,Europe +2024-09-10,5946,2487,"[""Phone"", ""Keyboard""]",3217.17,"{"""": ""10%""}",92696,1,Africa +2024-11-10,5947,9092,"[""Laptop""]",1056.03,"{""loyalty"": ""6%""}",53666,0,Asia +2024-09-13,5948,6179,"[""Phone"", ""Keyboard"", ""Tablet""]",2837.42,"{""seasonal"": ""19%""}",130433,1,North America +2023-11-09,5949,5355,"[""Phone""]",3739.06,"{""seasonal"": ""26%""}",124678,1,North America +2024-08-05,5950,4781,"[""Wireless Mouse"", ""Tablet""]",929.13,"{""seasonal"": ""16%""}",272859,0,Asia +2023-09-21,5951,5220,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2108.26,{},214531,0,Africa +2024-02-11,5952,7149,"[""Wireless Mouse"", ""Laptop""]",1178.24,"{"""": ""23%""}",219007,1,North America +2023-11-09,5953,9978,"[""Headphones"", ""Charger"", ""Keyboard""]",1199.87,"{""promo"": ""17%""}",12979,1,Asia +2024-02-10,5954,4366,"[""Headphones"", ""Monitor"", ""Tablet""]",4262.38,{},131954,0,South America +2024-08-09,5955,6900,"[""Monitor"", ""Keyboard"", ""Tablet""]",3095.92,{},89938,0,Africa +2024-03-15,5956,9856,"[""Laptop""]",1860.79,{},88248,1,North America +2024-07-20,5957,5239,"[""Wireless Mouse""]",1016.83,"{""seasonal"": ""16%""}",166881,1,Africa +2023-03-06,5958,2975,"[""Monitor""]",4545.65,"{""loyalty"": ""27%""}",27626,0,Europe +2024-01-04,5959,3044,"[""Laptop""]",246.17,"{"""": ""11%""}",179867,1,Asia +2023-04-29,5960,9930,"[""Tablet""]",928.33,{},137662,1,Africa +2024-06-21,5961,3913,"[""Monitor"", ""Charger""]",1023.13,{},61040,1,North America +2024-12-14,5962,2983,"[""Monitor"", ""Headphones"", ""Keyboard""]",1005.14,{},106314,0,Africa +2024-02-14,5963,8150,"[""Phone"", ""Laptop""]",4309.01,"{""loyalty"": ""20%""}",26052,0,Africa +2024-04-10,5964,3379,"[""Charger""]",1136.38,{},236389,1,South America +2024-12-30,5965,8435,"[""Phone""]",1537.75,"{""loyalty"": ""28%""}",215264,0,Europe +2023-10-22,5966,3502,"[""Monitor""]",2276.88,"{""promo"": ""13%""}",43841,1,Africa +2024-05-02,5967,3405,"[""Charger"", ""Headphones"", ""Tablet""]",3792.26,{},47225,1,North America +2024-11-15,5968,2398,"[""Tablet""]",4433.43,{},202462,0,North America +2023-09-13,5969,3171,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4509.51,"{""loyalty"": ""30%""}",126408,0,Africa +2023-04-19,5970,5654,"[""Phone""]",4740.71,{},261292,1,South America +2023-06-08,5971,297,"[""Tablet""]",2821.37,{},42402,1,North America +2024-01-01,5972,3212,"[""Keyboard""]",166.28,"{""seasonal"": ""27%""}",8559,1,South America +2024-05-22,5973,7419,"[""Laptop"", ""Monitor"", ""Headphones""]",3192.79,{},281247,1,Asia +2024-03-14,5974,5362,"[""Laptop""]",211.1,{},123866,1,Asia +2023-03-19,5975,1644,"[""Phone"", ""Headphones"", ""Laptop""]",1696.17,"{""seasonal"": ""10%""}",295295,0,South America +2024-02-07,5976,1653,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",936.01,"{""promo"": ""17%""}",149839,0,Asia +2024-04-01,5977,1454,"[""Headphones"", ""Charger""]",836.76,"{""promo"": ""22%""}",78561,0,Africa +2023-02-13,5978,1589,"[""Tablet"", ""Headphones""]",1122.29,"{""loyalty"": ""20%""}",295942,0,Europe +2023-01-05,5979,9265,"[""Charger"", ""Monitor"", ""Tablet""]",2079.01,"{""seasonal"": ""20%""}",234325,1,Africa +2023-11-30,5980,2182,"[""Keyboard"", ""Laptop""]",791.68,{},292863,0,Africa +2024-02-24,5981,9902,"[""Wireless Mouse""]",2803.76,{},91460,1,North America +2023-12-20,5982,1491,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2696.28,"{""promo"": ""15%""}",43581,0,North America +2024-05-06,5983,3548,"[""Wireless Mouse""]",2044.9,"{"""": ""24%""}",176146,0,South America +2024-11-15,5984,9564,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1150.71,"{""seasonal"": ""24%""}",264003,0,North America +2024-07-07,5985,7161,"[""Phone"", ""Tablet"", ""Charger""]",1790.94,{},271389,1,Africa +2024-08-21,5986,2882,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3777.37,{},21242,0,Africa +2023-12-31,5987,5982,"[""Monitor"", ""Wireless Mouse""]",1793.57,"{"""": ""11%""}",277520,1,Europe +2024-08-01,5988,5832,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4820.56,"{""seasonal"": ""18%""}",200959,0,Europe +2024-03-07,5989,8133,"[""Tablet"", ""Monitor""]",2168.68,{},103387,1,Europe +2024-03-31,5990,9864,"[""Headphones""]",4277.14,{},130636,0,North America +2023-05-05,5991,3988,"[""Monitor"", ""Keyboard"", ""Charger""]",772.71,"{""promo"": ""7%""}",51239,0,North America +2024-04-07,5992,5714,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1131.31,"{""loyalty"": ""15%""}",224689,1,Europe +2023-04-03,5993,9999,"[""Monitor"", ""Charger""]",1519.59,{},38471,1,South America +2024-05-12,5994,6953,"[""Phone"", ""Keyboard""]",261.38,"{""promo"": ""23%""}",20805,0,Europe +2023-12-09,5995,2677,"[""Monitor""]",2352.56,"{""promo"": ""27%""}",6997,0,South America +2023-10-03,5996,7368,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1669.04,{},113205,1,Europe +2024-10-17,5997,65,"[""Monitor""]",4366.04,{},273144,0,Africa +2023-05-05,5998,8857,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3188.19,"{""promo"": ""6%""}",154534,1,North America +2024-07-17,5999,1675,"[""Headphones""]",3901.23,"{""seasonal"": ""21%""}",150051,0,South America +2023-01-16,6000,5655,"[""Tablet""]",1766.19,{},87867,1,Africa +2024-01-21,6001,1691,"[""Phone"", ""Tablet""]",3320.15,"{"""": ""9%""}",84104,0,South America +2024-10-04,6002,822,"[""Phone"", ""Monitor""]",1283.77,"{""loyalty"": ""22%""}",92087,0,Asia +2024-01-18,6003,8220,"[""Laptop"", ""Keyboard"", ""Headphones""]",4252.37,{},282367,1,Asia +2023-03-02,6004,6097,"[""Keyboard"", ""Phone"", ""Headphones""]",1334.38,{},127548,1,North America +2024-10-13,6005,902,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1709.87,"{""loyalty"": ""16%""}",11334,1,Europe +2023-05-02,6006,4411,"[""Charger""]",3778.14,{},197111,1,Africa +2023-08-11,6007,8036,"[""Tablet"", ""Charger""]",2909.97,"{""promo"": ""14%""}",105116,1,Africa +2024-05-02,6008,4610,"[""Charger""]",566.71,"{""loyalty"": ""5%""}",12859,0,Asia +2023-10-06,6009,7595,"[""Phone""]",994.37,{},229721,1,North America +2024-10-07,6010,4990,"[""Headphones"", ""Keyboard""]",1590.53,"{""loyalty"": ""16%""}",90771,0,North America +2023-07-23,6011,4736,"[""Headphones"", ""Keyboard""]",256.08,{},157306,1,South America +2024-05-29,6012,5959,"[""Wireless Mouse""]",4646.84,{},266898,0,Africa +2024-06-22,6013,5321,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",120.48,{},73139,0,North America +2024-05-04,6014,5462,"[""Phone""]",3202.38,{},44818,1,Asia +2023-08-25,6015,6413,"[""Wireless Mouse""]",296.55,"{""promo"": ""26%""}",82178,1,Europe +2024-06-12,6016,4344,"[""Headphones"", ""Charger""]",4158.65,"{""loyalty"": ""30%""}",143348,0,Europe +2023-10-20,6017,3904,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3328.82,"{""promo"": ""7%""}",74486,1,North America +2024-06-27,6018,5779,"[""Charger""]",3482.3,"{""loyalty"": ""30%""}",110813,1,Africa +2024-08-16,6019,1736,"[""Charger""]",3684.66,"{""seasonal"": ""21%""}",178222,0,South America +2023-05-11,6020,9394,"[""Laptop"", ""Headphones""]",796.6,"{""loyalty"": ""22%""}",115963,1,Africa +2023-02-04,6021,4224,"[""Keyboard""]",1774.26,"{""seasonal"": ""22%""}",2377,0,North America +2023-10-31,6022,1551,"[""Monitor""]",2457.24,{},147882,1,Africa +2024-05-15,6023,5237,"[""Wireless Mouse"", ""Keyboard""]",4289.72,{},12305,1,Europe +2023-03-07,6024,5828,"[""Laptop"", ""Tablet""]",4846.82,{},95358,1,South America +2023-07-12,6025,917,"[""Charger"", ""Keyboard""]",2606.36,{},30586,0,Europe +2024-12-19,6026,9308,"[""Headphones"", ""Keyboard"", ""Monitor""]",4203.95,{},170067,1,Africa +2024-06-11,6027,6232,"[""Tablet"", ""Wireless Mouse""]",4544.03,"{""promo"": ""11%""}",117125,0,Africa +2023-08-02,6028,7902,"[""Headphones"", ""Laptop""]",590.36,{},259969,0,Asia +2024-11-28,6029,7810,"[""Keyboard""]",3758.04,{},36744,1,Europe +2023-10-01,6030,7508,"[""Headphones""]",4148.11,{},276330,1,Africa +2024-07-16,6031,6483,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4507.21,{},127750,0,Asia +2023-04-03,6032,8454,"[""Keyboard""]",4209.91,{},122795,1,North America +2024-10-20,6033,3540,"[""Monitor"", ""Laptop""]",2820.97,{},158323,1,North America +2023-10-28,6034,4783,"[""Headphones""]",1324.75,{},239592,0,Europe +2024-06-02,6035,7619,"[""Keyboard"", ""Laptop""]",393.76,"{"""": ""26%""}",172844,0,Europe +2024-08-04,6036,100,"[""Tablet"", ""Headphones"", ""Charger""]",4472.92,{},91623,1,Asia +2023-10-20,6037,4440,"[""Laptop"", ""Monitor""]",4145.52,{},88954,1,Europe +2023-08-03,6038,3806,"[""Phone""]",210.28,"{"""": ""29%""}",191633,1,Europe +2023-12-29,6039,3521,"[""Wireless Mouse"", ""Charger""]",3096.8,{},265226,0,South America +2024-05-11,6040,8156,"[""Keyboard""]",4594.55,"{"""": ""22%""}",49736,0,South America +2023-09-17,6041,2422,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",663.17,"{""seasonal"": ""13%""}",138608,1,Asia +2024-04-01,6042,1790,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1747.41,"{""promo"": ""13%""}",102328,0,North America +2023-07-31,6043,2945,"[""Keyboard"", ""Headphones""]",2379.75,{},67058,1,Europe +2023-07-05,6044,6116,"[""Phone"", ""Monitor""]",1619.3,"{"""": ""10%""}",248886,0,North America +2023-05-18,6045,3967,"[""Headphones"", ""Wireless Mouse""]",4786.01,"{""loyalty"": ""13%""}",224373,1,Asia +2023-06-14,6046,7325,"[""Wireless Mouse"", ""Keyboard""]",159.56,{},54053,1,Europe +2024-09-15,6047,6626,"[""Charger""]",2160.47,"{""seasonal"": ""7%""}",109941,1,Africa +2024-02-01,6048,9537,"[""Monitor""]",1115.05,"{""loyalty"": ""8%""}",66901,0,South America +2024-06-25,6049,1444,"[""Monitor"", ""Headphones"", ""Keyboard""]",1609.0,"{""promo"": ""26%""}",267408,1,Africa +2023-05-03,6050,2172,"[""Charger"", ""Wireless Mouse""]",1029.64,"{""promo"": ""15%""}",276093,1,Africa +2024-03-16,6051,1491,"[""Keyboard"", ""Laptop"", ""Headphones""]",352.31,{},257071,1,Africa +2024-07-18,6052,8369,"[""Phone"", ""Headphones""]",2024.18,{},265209,1,Africa +2023-09-14,6053,9979,"[""Wireless Mouse"", ""Headphones""]",577.93,"{""promo"": ""20%""}",213774,1,Africa +2023-05-31,6054,9734,"[""Charger""]",4115.57,{},292544,0,Europe +2023-12-17,6055,4132,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1555.94,{},213435,0,Europe +2024-06-28,6056,8493,"[""Charger""]",1269.63,"{"""": ""5%""}",72257,0,South America +2023-07-09,6057,7228,"[""Charger"", ""Laptop""]",911.81,{},295172,1,North America +2023-04-13,6058,8835,"[""Charger"", ""Headphones"", ""Keyboard""]",4652.04,"{""loyalty"": ""10%""}",68625,0,North America +2023-01-19,6059,789,"[""Monitor"", ""Keyboard"", ""Headphones""]",737.12,"{""promo"": ""5%""}",121199,0,South America +2023-12-08,6060,8658,"[""Headphones""]",3908.93,{},206868,0,North America +2023-06-28,6061,3899,"[""Phone"", ""Keyboard""]",2097.77,{},6925,1,Europe +2024-05-06,6062,1963,"[""Wireless Mouse""]",3695.96,"{""promo"": ""10%""}",106157,0,Asia +2023-03-02,6063,5415,"[""Tablet"", ""Laptop"", ""Headphones""]",4848.47,"{"""": ""29%""}",95297,0,South America +2023-10-16,6064,1802,"[""Laptop"", ""Phone""]",229.61,{},109940,1,South America +2024-07-02,6065,8146,"[""Phone"", ""Headphones""]",1128.33,{},121477,1,South America +2024-09-05,6066,3599,"[""Phone"", ""Monitor""]",1382.65,{},223220,1,Asia +2023-12-06,6067,5720,"[""Laptop"", ""Tablet""]",159.26,{},184292,0,North America +2024-12-13,6068,7640,"[""Wireless Mouse""]",2415.29,{},229083,1,Asia +2024-06-26,6069,3553,"[""Wireless Mouse"", ""Laptop""]",3605.47,{},103566,0,South America +2023-03-30,6070,7270,"[""Charger"", ""Keyboard"", ""Laptop""]",1980.37,"{""promo"": ""14%""}",5945,1,South America +2023-03-19,6071,6093,"[""Monitor"", ""Phone""]",1422.56,"{""seasonal"": ""14%""}",152151,0,South America +2023-05-26,6072,7130,"[""Wireless Mouse"", ""Charger""]",2453.61,"{""seasonal"": ""26%""}",67574,1,North America +2024-09-01,6073,1074,"[""Wireless Mouse""]",1624.7,{},151469,1,Asia +2023-11-09,6074,398,"[""Tablet"", ""Phone"", ""Charger""]",801.43,{},247059,0,South America +2024-09-01,6075,4480,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2225.24,"{"""": ""28%""}",242774,0,North America +2023-08-22,6076,5719,"[""Headphones"", ""Wireless Mouse""]",4001.03,"{""promo"": ""28%""}",196838,1,North America +2023-02-25,6077,2827,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3984.1,{},251992,1,Africa +2024-09-12,6078,511,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3128.49,{},1136,1,Asia +2023-10-03,6079,9069,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2725.23,"{""promo"": ""10%""}",234104,0,South America +2023-05-22,6080,503,"[""Tablet"", ""Laptop"", ""Keyboard""]",3992.67,"{""seasonal"": ""6%""}",267426,1,South America +2024-06-22,6081,9808,"[""Charger"", ""Laptop"", ""Headphones""]",4929.28,{},194640,0,Africa +2023-09-23,6082,5160,"[""Keyboard"", ""Monitor""]",3728.68,"{""seasonal"": ""18%""}",91879,1,South America +2023-11-04,6083,7091,"[""Charger"", ""Wireless Mouse""]",587.33,"{""seasonal"": ""22%""}",144995,0,South America +2024-10-26,6084,8218,"[""Headphones"", ""Charger"", ""Tablet""]",1119.84,{},48163,1,North America +2023-11-18,6085,7565,"[""Keyboard"", ""Tablet""]",567.05,{},256830,1,Europe +2023-06-29,6086,610,"[""Laptop"", ""Keyboard"", ""Charger""]",4059.31,{},90839,0,South America +2024-10-06,6087,4904,"[""Laptop"", ""Phone""]",3637.92,"{""loyalty"": ""12%""}",252752,0,South America +2024-09-20,6088,2222,"[""Keyboard""]",2178.07,"{"""": ""12%""}",229003,0,South America +2024-04-30,6089,6287,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4747.8,"{""seasonal"": ""30%""}",52460,0,South America +2023-01-15,6090,2509,"[""Charger"", ""Headphones"", ""Tablet""]",2751.98,{},216617,0,North America +2023-04-14,6091,5650,"[""Headphones"", ""Charger"", ""Tablet""]",4126.12,"{""loyalty"": ""11%""}",228179,1,Africa +2024-09-01,6092,4612,"[""Monitor"", ""Laptop""]",4361.8,"{""loyalty"": ""12%""}",108833,0,Africa +2023-12-22,6093,6578,"[""Monitor""]",4189.78,"{"""": ""24%""}",284181,1,Asia +2023-03-23,6094,5057,"[""Charger""]",4881.38,{},251741,1,South America +2024-03-28,6095,9789,"[""Tablet"", ""Charger"", ""Headphones""]",2588.34,"{""seasonal"": ""16%""}",269160,0,Europe +2023-04-11,6096,9912,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1695.7,"{"""": ""18%""}",10071,0,Africa +2024-04-05,6097,1694,"[""Laptop""]",1921.3,"{""seasonal"": ""15%""}",55217,0,Europe +2023-08-26,6098,7605,"[""Headphones""]",2863.04,{},235986,0,Africa +2023-07-30,6099,7374,"[""Keyboard""]",1186.04,{},50146,1,North America +2024-05-06,6100,5661,"[""Monitor"", ""Phone"", ""Tablet""]",2231.26,"{""promo"": ""5%""}",73996,1,Africa +2023-06-26,6101,8131,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4698.82,{},195787,1,Africa +2024-09-15,6102,5453,"[""Monitor"", ""Wireless Mouse""]",127.53,"{"""": ""14%""}",186624,1,North America +2024-12-11,6103,2117,"[""Charger"", ""Tablet""]",2346.71,"{""loyalty"": ""9%""}",41639,0,South America +2024-11-09,6104,8459,"[""Keyboard""]",294.99,"{""promo"": ""20%""}",121885,0,Europe +2023-07-19,6105,782,"[""Tablet""]",163.68,{},266509,0,North America +2024-10-09,6106,7397,"[""Laptop"", ""Headphones""]",1705.07,{},132462,0,South America +2023-04-09,6107,1736,"[""Monitor""]",1022.77,{},114466,1,North America +2023-12-29,6108,7121,"[""Charger"", ""Tablet"", ""Monitor""]",2212.35,{},218449,1,Africa +2024-05-20,6109,8268,"[""Monitor"", ""Charger""]",422.12,{},152030,0,North America +2024-10-03,6110,7037,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4817.26,"{"""": ""20%""}",277460,1,Africa +2023-12-14,6111,1881,"[""Keyboard""]",2517.81,"{"""": ""21%""}",245598,0,South America +2024-09-04,6112,1945,"[""Headphones"", ""Monitor""]",4560.88,"{"""": ""18%""}",17740,0,North America +2024-05-12,6113,9360,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3410.38,"{""seasonal"": ""13%""}",240264,1,Asia +2023-03-03,6114,8907,"[""Headphones"", ""Tablet""]",217.85,"{""loyalty"": ""5%""}",101912,1,Africa +2023-06-03,6115,3684,"[""Tablet""]",3578.59,"{""loyalty"": ""25%""}",230194,0,South America +2023-04-23,6116,9406,"[""Monitor""]",2708.89,"{""loyalty"": ""7%""}",22290,1,North America +2023-10-09,6117,2935,"[""Phone"", ""Keyboard"", ""Tablet""]",3278.8,"{""loyalty"": ""14%""}",237343,0,North America +2024-06-21,6118,7798,"[""Tablet"", ""Keyboard""]",3542.57,{},260921,1,North America +2024-12-21,6119,1229,"[""Keyboard""]",3412.36,{},132863,0,Asia +2023-11-25,6120,354,"[""Tablet"", ""Keyboard"", ""Phone""]",1590.59,{},149405,1,Asia +2023-07-20,6121,7826,"[""Tablet"", ""Wireless Mouse""]",3145.33,{},200764,1,North America +2023-11-18,6122,9625,"[""Tablet""]",1361.05,"{"""": ""17%""}",223738,0,Asia +2023-01-27,6123,4878,"[""Wireless Mouse"", ""Laptop""]",278.13,{},57249,0,Europe +2023-01-09,6124,922,"[""Tablet"", ""Laptop"", ""Headphones""]",187.83,"{""promo"": ""6%""}",208114,1,Asia +2024-11-16,6125,1735,"[""Keyboard"", ""Headphones""]",3372.74,{},209341,1,Europe +2023-01-13,6126,9975,"[""Wireless Mouse""]",2560.19,{},29800,1,Africa +2024-03-19,6127,9074,"[""Wireless Mouse""]",4593.74,{},223347,0,North America +2023-06-28,6128,6340,"[""Headphones"", ""Keyboard"", ""Tablet""]",3105.0,"{"""": ""18%""}",57830,1,Europe +2023-02-06,6129,2987,"[""Keyboard"", ""Headphones""]",2629.53,{},241027,1,Europe +2023-02-19,6130,8701,"[""Phone""]",721.55,"{"""": ""17%""}",278303,1,North America +2024-10-26,6131,9826,"[""Phone""]",2905.54,"{""seasonal"": ""27%""}",135809,1,Europe +2023-08-10,6132,2739,"[""Keyboard""]",1480.85,"{""seasonal"": ""13%""}",287966,1,Europe +2023-05-20,6133,3893,"[""Wireless Mouse""]",2570.45,{},7896,1,Asia +2023-01-26,6134,9583,"[""Headphones""]",708.58,{},190594,1,Asia +2024-05-07,6135,5254,"[""Phone"", ""Keyboard"", ""Laptop""]",3259.68,"{"""": ""8%""}",233058,1,Asia +2023-10-26,6136,3038,"[""Laptop""]",4604.81,"{""seasonal"": ""23%""}",178394,0,Europe +2023-08-20,6137,9961,"[""Laptop""]",2310.43,{},41096,1,Asia +2024-12-23,6138,7536,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1035.92,{},235487,1,Europe +2023-12-31,6139,2946,"[""Phone""]",4260.82,{},53437,0,North America +2023-08-03,6140,2219,"[""Charger"", ""Headphones"", ""Laptop""]",3361.62,"{"""": ""25%""}",145480,0,Europe +2024-09-13,6141,1685,"[""Phone"", ""Tablet""]",2272.49,{},248463,0,Africa +2023-12-26,6142,9457,"[""Headphones"", ""Laptop""]",3773.79,"{""loyalty"": ""27%""}",27446,0,Asia +2023-11-18,6143,2288,"[""Laptop""]",3368.41,"{""loyalty"": ""11%""}",21543,0,South America +2023-06-15,6144,6526,"[""Phone""]",4515.44,{},128184,0,North America +2023-02-10,6145,8241,"[""Charger"", ""Wireless Mouse""]",2843.71,{},237153,1,North America +2024-04-26,6146,5201,"[""Tablet"", ""Monitor""]",2703.44,{},57442,1,South America +2024-05-25,6147,5503,"[""Monitor""]",4617.79,{},20662,0,South America +2024-05-17,6148,7725,"[""Charger"", ""Headphones"", ""Tablet""]",3805.06,{},137453,0,North America +2024-12-31,6149,3841,"[""Phone"", ""Tablet"", ""Keyboard""]",793.04,"{""seasonal"": ""23%""}",17760,1,Africa +2024-09-18,6150,547,"[""Tablet""]",1313.21,"{""promo"": ""15%""}",172715,1,South America +2024-06-23,6151,8713,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4634.53,"{""loyalty"": ""13%""}",76951,1,South America +2024-10-06,6152,5502,"[""Phone"", ""Laptop""]",1572.34,{},80882,1,North America +2023-12-13,6153,4632,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3493.39,"{""seasonal"": ""12%""}",219372,0,Europe +2023-05-25,6154,5574,"[""Keyboard"", ""Monitor""]",410.48,{},116066,1,Africa +2024-04-05,6155,6722,"[""Phone""]",1845.95,"{"""": ""11%""}",61078,0,South America +2023-05-23,6156,6461,"[""Wireless Mouse""]",4535.74,{},258932,0,South America +2024-01-19,6157,9388,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4555.75,{},80448,0,South America +2023-09-04,6158,3208,"[""Charger"", ""Monitor""]",4378.1,{},246187,1,Asia +2024-10-11,6159,4488,"[""Wireless Mouse"", ""Laptop""]",3874.49,{},162286,0,South America +2024-04-09,6160,7673,"[""Monitor"", ""Headphones""]",1899.88,{},111705,1,Europe +2024-04-02,6161,3800,"[""Monitor"", ""Headphones"", ""Phone""]",1755.61,{},155152,0,North America +2023-01-12,6162,3803,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3396.75,{},6006,0,Africa +2023-11-09,6163,6601,"[""Headphones"", ""Monitor"", ""Laptop""]",2276.3,"{""seasonal"": ""17%""}",239691,1,Europe +2023-05-26,6164,9371,"[""Wireless Mouse"", ""Monitor""]",1268.19,"{""seasonal"": ""9%""}",216144,0,South America +2024-05-15,6165,2355,"[""Charger"", ""Headphones""]",337.55,"{""promo"": ""8%""}",61606,1,South America +2023-01-05,6166,4158,"[""Tablet"", ""Wireless Mouse""]",2942.15,"{""promo"": ""13%""}",66853,0,Africa +2023-05-29,6167,9940,"[""Charger""]",3145.62,"{"""": ""19%""}",129013,1,South America +2024-05-25,6168,934,"[""Phone""]",2777.05,{},80167,0,South America +2024-07-31,6169,6558,"[""Phone"", ""Wireless Mouse""]",3768.42,"{""seasonal"": ""29%""}",192754,1,Africa +2024-05-14,6170,4181,"[""Phone"", ""Charger""]",82.53,{},160381,1,Africa +2024-08-18,6171,7720,"[""Laptop"", ""Headphones"", ""Tablet""]",379.1,"{""loyalty"": ""19%""}",112834,0,Africa +2024-07-01,6172,3119,"[""Headphones"", ""Tablet""]",627.64,{},290721,0,Africa +2024-02-03,6173,2922,"[""Laptop"", ""Monitor"", ""Keyboard""]",3591.37,{},66380,0,Asia +2024-04-11,6174,5600,"[""Keyboard"", ""Charger"", ""Monitor""]",1984.78,"{""promo"": ""29%""}",42562,0,South America +2024-08-25,6175,200,"[""Keyboard"", ""Charger""]",4525.5,"{""loyalty"": ""20%""}",85198,1,Asia +2024-01-13,6176,5444,"[""Headphones""]",2439.14,{},280180,1,Africa +2024-03-12,6177,3712,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1886.11,"{""seasonal"": ""9%""}",275785,1,North America +2024-10-11,6178,9235,"[""Laptop"", ""Phone"", ""Headphones""]",3820.01,{},150859,1,Asia +2023-06-25,6179,2525,"[""Charger"", ""Phone"", ""Monitor""]",4230.73,{},67662,1,Asia +2023-11-26,6180,5443,"[""Charger"", ""Laptop"", ""Keyboard""]",3839.58,"{""promo"": ""5%""}",161234,1,North America +2023-05-17,6181,3131,"[""Headphones"", ""Monitor""]",166.81,"{""loyalty"": ""15%""}",74830,1,North America +2024-04-24,6182,7051,"[""Keyboard"", ""Charger"", ""Headphones""]",979.54,{},43243,1,Europe +2024-10-30,6183,5167,"[""Charger"", ""Phone"", ""Monitor""]",3423.6,"{""promo"": ""15%""}",13085,1,Europe +2023-09-11,6184,372,"[""Tablet"", ""Charger"", ""Phone""]",2246.78,{},60663,0,Europe +2023-02-06,6185,3223,"[""Monitor"", ""Charger""]",386.62,"{"""": ""30%""}",227563,0,Europe +2024-11-18,6186,8084,"[""Charger"", ""Keyboard""]",1327.37,{},95725,1,South America +2023-07-17,6187,2951,"[""Headphones""]",3393.75,"{""loyalty"": ""21%""}",223744,1,Europe +2024-07-21,6188,7895,"[""Phone"", ""Headphones""]",3484.77,{},231561,1,South America +2024-05-06,6189,34,"[""Phone"", ""Monitor""]",1484.19,"{""loyalty"": ""16%""}",125385,0,Europe +2024-07-26,6190,8791,"[""Laptop""]",3041.46,"{"""": ""28%""}",136659,1,Asia +2023-12-19,6191,7043,"[""Monitor"", ""Charger"", ""Keyboard""]",567.97,{},263960,1,South America +2024-01-04,6192,6969,"[""Charger"", ""Tablet""]",2752.63,"{""seasonal"": ""15%""}",125199,1,Africa +2023-03-24,6193,9673,"[""Keyboard"", ""Charger""]",375.68,{},29652,0,Asia +2023-10-25,6194,141,"[""Tablet""]",2911.17,{},16632,0,North America +2024-10-20,6195,3101,"[""Tablet"", ""Monitor""]",1104.92,{},195883,1,North America +2023-07-13,6196,6279,"[""Laptop""]",197.97,"{""seasonal"": ""11%""}",84120,1,South America +2023-04-19,6197,5258,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4668.92,{},140208,1,Asia +2023-04-16,6198,3818,"[""Charger""]",2666.16,"{""loyalty"": ""30%""}",62491,1,Asia +2024-06-10,6199,4276,"[""Wireless Mouse""]",178.85,"{""promo"": ""29%""}",78432,0,Africa +2023-10-30,6200,1,"[""Charger""]",3612.91,"{""promo"": ""11%""}",230542,0,North America +2023-11-15,6201,3603,"[""Monitor"", ""Phone"", ""Charger""]",4856.95,{},196751,1,South America +2024-03-09,6202,6925,"[""Monitor"", ""Tablet""]",4440.56,{},170443,1,Africa +2023-10-27,6203,7941,"[""Phone""]",2793.28,{},113435,1,Asia +2024-01-13,6204,7756,"[""Wireless Mouse"", ""Headphones""]",478.98,{},162009,1,Asia +2024-06-15,6205,9056,"[""Charger"", ""Phone"", ""Headphones""]",863.54,"{"""": ""16%""}",92419,0,Europe +2023-11-06,6206,46,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1191.89,{},251059,1,Africa +2023-12-15,6207,9052,"[""Phone"", ""Laptop""]",4361.16,"{""seasonal"": ""5%""}",180304,0,Asia +2024-10-14,6208,6133,"[""Charger""]",3403.19,"{"""": ""14%""}",204499,0,Asia +2023-06-26,6209,9032,"[""Monitor""]",99.89,{},269513,0,Europe +2024-05-18,6210,8660,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4390.02,"{""seasonal"": ""6%""}",38872,0,Asia +2023-07-10,6211,5699,"[""Tablet"", ""Phone""]",1550.28,"{""seasonal"": ""19%""}",217520,0,Europe +2023-06-21,6212,7343,"[""Monitor""]",3661.66,"{""seasonal"": ""23%""}",32989,1,Africa +2023-08-01,6213,2381,"[""Phone"", ""Charger""]",3748.54,"{""promo"": ""29%""}",128291,0,Europe +2023-07-26,6214,2828,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3030.0,"{""promo"": ""20%""}",160395,0,North America +2023-06-04,6215,758,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1703.46,{},81141,1,Europe +2023-06-02,6216,9899,"[""Laptop"", ""Headphones"", ""Monitor""]",3778.58,"{"""": ""23%""}",49990,0,South America +2023-10-01,6217,7781,"[""Laptop"", ""Tablet""]",4747.48,"{""loyalty"": ""30%""}",275373,1,Europe +2024-01-03,6218,5390,"[""Keyboard"", ""Phone""]",301.22,"{""promo"": ""8%""}",263455,1,Africa +2023-09-14,6219,6403,"[""Phone"", ""Keyboard""]",1127.25,"{"""": ""27%""}",62924,1,Europe +2024-02-17,6220,6500,"[""Tablet"", ""Laptop"", ""Charger""]",3068.06,"{"""": ""15%""}",94352,1,Asia +2023-11-05,6221,3902,"[""Keyboard"", ""Monitor""]",2002.84,{},272609,0,Asia +2024-05-18,6222,7899,"[""Charger""]",3198.87,{},262802,1,Asia +2024-10-08,6223,4777,"[""Monitor"", ""Tablet""]",2769.51,"{""seasonal"": ""21%""}",69915,1,North America +2023-09-16,6224,9694,"[""Monitor"", ""Phone""]",3126.53,{},123444,0,Africa +2024-07-30,6225,4750,"[""Keyboard""]",553.12,"{""loyalty"": ""7%""}",293392,1,Africa +2023-05-24,6226,6158,"[""Keyboard"", ""Wireless Mouse""]",764.32,{},230289,0,South America +2023-08-20,6227,1663,"[""Keyboard"", ""Laptop"", ""Tablet""]",94.89,{},108337,0,North America +2023-05-21,6228,666,"[""Tablet"", ""Keyboard"", ""Phone""]",2121.27,{},171941,0,Asia +2024-10-20,6229,1169,"[""Laptop""]",4749.61,"{"""": ""21%""}",198449,1,South America +2024-05-13,6230,3168,"[""Charger"", ""Tablet""]",3874.26,{},144582,0,Africa +2023-02-05,6231,7078,"[""Tablet"", ""Laptop""]",4738.91,"{"""": ""25%""}",30029,1,South America +2024-09-15,6232,1439,"[""Keyboard"", ""Monitor""]",1625.06,{},35740,1,South America +2023-09-26,6233,4620,"[""Phone"", ""Keyboard"", ""Headphones""]",4488.9,{},55791,0,Europe +2024-03-03,6234,9695,"[""Monitor"", ""Tablet""]",2747.08,"{""loyalty"": ""27%""}",71491,0,Africa +2023-12-08,6235,3169,"[""Tablet"", ""Keyboard""]",3143.65,{},4052,0,South America +2023-06-28,6236,2460,"[""Phone""]",3472.03,"{"""": ""15%""}",69026,1,Africa +2024-09-18,6237,2510,"[""Headphones""]",2145.9,{},51694,1,Africa +2024-04-19,6238,2077,"[""Wireless Mouse"", ""Charger""]",3289.49,{},21062,1,Asia +2023-02-02,6239,6397,"[""Keyboard"", ""Laptop""]",578.06,{},272066,0,North America +2024-08-25,6240,162,"[""Monitor""]",3005.18,{},16492,1,North America +2023-09-05,6241,6656,"[""Wireless Mouse"", ""Phone""]",4186.33,"{""loyalty"": ""24%""}",293600,0,Europe +2024-08-08,6242,3074,"[""Charger"", ""Laptop"", ""Headphones""]",2473.92,"{""promo"": ""5%""}",194842,0,North America +2024-04-23,6243,7228,"[""Phone""]",1798.56,{},273532,0,South America +2024-05-29,6244,9525,"[""Keyboard"", ""Charger"", ""Phone""]",3853.0,{},98132,1,South America +2024-02-08,6245,6517,"[""Tablet""]",353.47,"{""loyalty"": ""12%""}",92960,1,South America +2024-08-24,6246,6197,"[""Tablet""]",4709.01,{},207137,1,Europe +2024-02-15,6247,3460,"[""Headphones"", ""Laptop"", ""Charger""]",1337.83,"{""loyalty"": ""11%""}",20673,0,Asia +2024-11-22,6248,3839,"[""Laptop"", ""Headphones""]",4337.73,"{""seasonal"": ""9%""}",227642,1,Asia +2024-04-17,6249,2923,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3259.19,{},141608,0,North America +2024-01-14,6250,7802,"[""Wireless Mouse""]",1865.98,"{""seasonal"": ""18%""}",22383,1,Europe +2023-06-28,6251,7971,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1202.9,"{"""": ""14%""}",18740,0,Africa +2024-05-15,6252,9672,"[""Monitor""]",4796.84,{},79402,1,Europe +2023-06-24,6253,7280,"[""Tablet"", ""Monitor""]",2299.72,"{""loyalty"": ""11%""}",190204,0,Africa +2023-12-23,6254,4293,"[""Phone"", ""Keyboard""]",4064.97,"{""seasonal"": ""30%""}",240595,0,Asia +2023-01-03,6255,8568,"[""Phone"", ""Monitor""]",1409.97,"{"""": ""27%""}",65945,1,Europe +2024-10-28,6256,2017,"[""Phone"", ""Keyboard"", ""Tablet""]",3611.41,"{""seasonal"": ""12%""}",213020,1,Europe +2024-10-09,6257,8803,"[""Keyboard"", ""Monitor""]",389.53,{},143150,1,Europe +2024-01-28,6258,7419,"[""Monitor""]",2550.25,"{""promo"": ""19%""}",49561,0,North America +2023-10-17,6259,788,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2364.67,"{"""": ""21%""}",104082,0,North America +2024-03-18,6260,2813,"[""Phone""]",2360.93,"{"""": ""7%""}",269029,0,Asia +2023-04-19,6261,7116,"[""Keyboard""]",4742.52,"{""promo"": ""17%""}",42886,0,Asia +2023-02-18,6262,6042,"[""Charger"", ""Phone"", ""Headphones""]",64.67,{},15454,1,North America +2023-09-23,6263,7821,"[""Monitor"", ""Charger""]",3950.95,"{""seasonal"": ""5%""}",230047,0,North America +2024-06-27,6264,5761,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4291.12,"{"""": ""20%""}",296531,0,South America +2023-02-25,6265,8508,"[""Laptop"", ""Keyboard""]",57.03,{},36337,0,South America +2024-03-01,6266,875,"[""Monitor""]",1148.14,"{""seasonal"": ""29%""}",188671,1,Asia +2024-04-17,6267,8697,"[""Tablet""]",2936.64,{},121631,1,North America +2023-08-01,6268,946,"[""Keyboard""]",1160.61,"{""loyalty"": ""8%""}",181607,1,Asia +2024-11-07,6269,1305,"[""Monitor""]",4056.29,{},172257,1,Asia +2024-07-31,6270,6763,"[""Charger"", ""Headphones"", ""Keyboard""]",3122.68,{},131646,1,Asia +2024-08-21,6271,2929,"[""Tablet"", ""Charger"", ""Phone""]",3524.73,{},7940,0,Europe +2023-01-07,6272,3345,"[""Phone""]",4546.24,"{""seasonal"": ""22%""}",48629,0,Europe +2024-03-06,6273,9415,"[""Headphones"", ""Monitor"", ""Tablet""]",732.31,{},71358,0,Asia +2024-04-06,6274,3325,"[""Tablet"", ""Headphones""]",1326.41,"{""loyalty"": ""5%""}",212246,1,North America +2023-10-02,6275,7531,"[""Laptop""]",1703.56,"{""seasonal"": ""7%""}",254187,1,South America +2023-03-21,6276,7501,"[""Charger""]",1039.89,"{""promo"": ""18%""}",11260,1,Asia +2023-06-05,6277,9267,"[""Laptop""]",685.56,{},288157,0,Africa +2023-05-05,6278,5272,"[""Headphones""]",342.37,"{"""": ""16%""}",255220,1,South America +2024-01-11,6279,7743,"[""Charger""]",144.57,"{""loyalty"": ""23%""}",11296,0,Europe +2023-07-03,6280,193,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3486.95,"{""loyalty"": ""23%""}",191540,0,Asia +2024-05-05,6281,5472,"[""Monitor"", ""Keyboard"", ""Headphones""]",4138.79,"{"""": ""24%""}",6008,0,Africa +2024-12-25,6282,5951,"[""Charger""]",4916.56,{},11799,1,Africa +2024-01-11,6283,2086,"[""Tablet"", ""Charger"", ""Phone""]",3005.01,"{"""": ""26%""}",63604,0,North America +2023-12-01,6284,8841,"[""Tablet""]",3533.92,"{"""": ""21%""}",87462,1,Africa +2023-01-05,6285,2517,"[""Headphones"", ""Charger""]",2853.39,"{""seasonal"": ""29%""}",290935,0,Asia +2023-07-02,6286,1494,"[""Monitor"", ""Tablet"", ""Phone""]",3557.53,{},145116,0,Asia +2024-06-09,6287,2178,"[""Tablet""]",4320.8,"{"""": ""11%""}",184984,0,North America +2024-10-26,6288,8824,"[""Headphones""]",2660.04,"{""promo"": ""8%""}",283470,0,Asia +2024-04-20,6289,3809,"[""Laptop"", ""Monitor"", ""Headphones""]",2800.25,{},19850,1,Europe +2024-11-06,6290,7833,"[""Monitor"", ""Tablet""]",2598.65,"{""promo"": ""24%""}",72592,0,South America +2023-08-28,6291,71,"[""Headphones""]",1740.14,{},125316,0,North America +2023-08-11,6292,4983,"[""Tablet"", ""Keyboard""]",3142.34,{},136544,0,North America +2024-09-29,6293,7411,"[""Laptop""]",1151.12,"{""loyalty"": ""7%""}",162894,0,Africa +2023-02-04,6294,9504,"[""Laptop"", ""Monitor"", ""Phone""]",4834.36,{},58964,0,South America +2023-10-01,6295,9704,"[""Phone""]",818.39,"{""promo"": ""21%""}",281190,1,Africa +2023-07-24,6296,980,"[""Laptop"", ""Keyboard""]",479.15,{},245837,1,North America +2023-03-28,6297,2881,"[""Charger"", ""Tablet""]",1145.81,{},213947,0,Europe +2023-04-25,6298,2766,"[""Keyboard""]",378.18,{},117269,0,North America +2024-06-12,6299,323,"[""Headphones"", ""Wireless Mouse""]",2238.64,{},239176,0,Africa +2024-06-23,6300,4144,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3137.78,"{"""": ""6%""}",238361,0,Africa +2023-06-08,6301,1914,"[""Keyboard"", ""Tablet""]",3428.65,"{""loyalty"": ""15%""}",227307,1,Asia +2024-01-05,6302,7916,"[""Phone"", ""Laptop"", ""Keyboard""]",4271.41,"{""seasonal"": ""19%""}",250972,1,South America +2023-09-03,6303,8819,"[""Tablet""]",1531.32,"{""loyalty"": ""5%""}",219263,1,South America +2023-05-01,6304,5678,"[""Laptop"", ""Monitor"", ""Charger""]",4215.52,{},247538,0,North America +2023-06-09,6305,2856,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3308.23,"{""loyalty"": ""28%""}",130033,1,Asia +2024-08-11,6306,3683,"[""Tablet"", ""Laptop"", ""Phone""]",4937.5,{},221103,1,Asia +2024-02-26,6307,274,"[""Keyboard""]",3003.97,"{""seasonal"": ""22%""}",144749,0,North America +2023-04-14,6308,6156,"[""Headphones"", ""Monitor"", ""Phone""]",1039.84,"{""loyalty"": ""7%""}",112244,0,Europe +2023-12-06,6309,6684,"[""Phone""]",2328.71,"{""seasonal"": ""11%""}",208602,1,Asia +2024-02-28,6310,9752,"[""Keyboard""]",3374.52,{},51169,0,Africa +2023-01-08,6311,3650,"[""Tablet""]",528.77,{},224181,1,Europe +2023-02-08,6312,8081,"[""Headphones""]",1003.71,{},175623,0,South America +2024-01-13,6313,1633,"[""Phone""]",378.51,{},4375,1,Asia +2023-01-05,6314,1324,"[""Headphones"", ""Tablet"", ""Charger""]",806.96,"{""loyalty"": ""27%""}",61291,1,North America +2024-02-01,6315,3077,"[""Charger""]",4394.47,"{""promo"": ""19%""}",58516,0,North America +2024-10-31,6316,9607,"[""Laptop"", ""Tablet""]",2574.83,{},262338,0,South America +2023-03-02,6317,8373,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",818.52,"{""promo"": ""16%""}",257591,1,Africa +2024-02-03,6318,7512,"[""Charger"", ""Monitor""]",3184.58,"{""loyalty"": ""12%""}",275057,1,South America +2023-02-19,6319,3483,"[""Phone""]",1432.23,"{"""": ""25%""}",52589,1,Europe +2024-10-08,6320,6483,"[""Headphones"", ""Laptop"", ""Charger""]",323.43,"{""seasonal"": ""14%""}",135895,1,Africa +2024-04-29,6321,5417,"[""Keyboard""]",4264.89,{},221504,1,Europe +2024-02-16,6322,7084,"[""Laptop"", ""Keyboard""]",815.79,"{""seasonal"": ""24%""}",285279,0,South America +2023-10-18,6323,9105,"[""Laptop""]",4316.09,"{""promo"": ""28%""}",284746,0,Europe +2024-08-12,6324,4103,"[""Wireless Mouse""]",1861.54,{},283555,1,North America +2024-11-09,6325,6310,"[""Wireless Mouse""]",1920.44,"{""promo"": ""9%""}",281873,1,South America +2024-12-01,6326,3447,"[""Phone"", ""Headphones"", ""Laptop""]",1687.98,"{""promo"": ""16%""}",136308,0,Africa +2023-03-08,6327,2265,"[""Headphones"", ""Monitor"", ""Laptop""]",3380.71,{},280821,0,North America +2023-06-20,6328,361,"[""Headphones"", ""Monitor"", ""Phone""]",4971.35,{},90307,0,Africa +2023-12-31,6329,1750,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3961.06,"{""promo"": ""14%""}",19776,0,Europe +2024-05-20,6330,6844,"[""Monitor"", ""Tablet""]",4704.9,{},36565,1,Africa +2024-09-07,6331,199,"[""Tablet""]",4334.19,"{""seasonal"": ""17%""}",52190,1,Europe +2024-09-10,6332,1384,"[""Monitor""]",2381.25,{},135662,1,Europe +2023-01-22,6333,6532,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",177.43,"{""loyalty"": ""20%""}",99099,1,Asia +2023-03-12,6334,6655,"[""Monitor""]",1190.04,{},244065,1,Africa +2024-08-25,6335,9965,"[""Charger"", ""Monitor"", ""Phone""]",3601.87,{},118720,0,South America +2024-04-30,6336,8754,"[""Phone""]",4077.25,"{""seasonal"": ""15%""}",143843,1,Europe +2023-06-03,6337,2329,"[""Tablet"", ""Phone"", ""Laptop""]",1476.87,{},144073,0,Africa +2023-04-30,6338,6468,"[""Keyboard"", ""Wireless Mouse""]",4539.86,"{""promo"": ""17%""}",176210,1,Africa +2024-10-22,6339,891,"[""Monitor"", ""Tablet"", ""Laptop""]",1689.14,{},181898,0,Africa +2023-06-21,6340,6295,"[""Charger"", ""Phone"", ""Wireless Mouse""]",819.01,{},26561,1,North America +2023-08-29,6341,3134,"[""Laptop""]",2834.26,"{""promo"": ""24%""}",19955,1,Europe +2024-11-14,6342,6078,"[""Charger"", ""Wireless Mouse""]",1498.87,"{""promo"": ""25%""}",96800,0,Europe +2024-08-06,6343,8737,"[""Laptop""]",2601.05,"{""seasonal"": ""14%""}",141988,1,Asia +2023-03-12,6344,121,"[""Keyboard"", ""Laptop""]",2669.69,"{""promo"": ""11%""}",196145,1,Europe +2023-10-09,6345,7382,"[""Laptop"", ""Keyboard""]",675.65,"{""loyalty"": ""9%""}",257377,1,South America +2024-09-03,6346,6497,"[""Keyboard"", ""Charger"", ""Phone""]",1689.72,{},131691,0,Africa +2024-10-16,6347,1337,"[""Tablet""]",4005.54,"{""promo"": ""22%""}",139314,1,Asia +2024-06-14,6348,8357,"[""Phone""]",4392.09,"{""loyalty"": ""15%""}",236815,0,Africa +2024-01-03,6349,404,"[""Headphones"", ""Phone""]",3734.0,{},55142,0,Asia +2024-07-04,6350,5127,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",420.21,"{""promo"": ""20%""}",260325,0,North America +2023-11-12,6351,6278,"[""Laptop"", ""Monitor"", ""Phone""]",3376.71,"{""loyalty"": ""22%""}",142035,0,North America +2023-08-14,6352,1875,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2760.65,"{""promo"": ""30%""}",89508,0,South America +2023-06-26,6353,7472,"[""Headphones""]",4944.97,{},223853,1,South America +2024-06-24,6354,2797,"[""Laptop""]",4360.15,"{""promo"": ""9%""}",46340,0,North America +2024-09-08,6355,1016,"[""Tablet"", ""Monitor""]",1979.96,{},207803,0,Africa +2023-05-01,6356,9389,"[""Laptop"", ""Phone""]",1661.94,"{""seasonal"": ""27%""}",281256,1,Asia +2024-09-24,6357,1719,"[""Tablet""]",4575.17,{},149784,1,North America +2023-05-06,6358,187,"[""Charger"", ""Keyboard""]",1002.53,{},3443,0,North America +2024-10-15,6359,7758,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1216.73,"{""promo"": ""11%""}",39633,1,Asia +2023-10-17,6360,7245,"[""Monitor"", ""Keyboard"", ""Charger""]",2518.17,{},10439,1,South America +2023-03-15,6361,8320,"[""Laptop""]",4561.59,{},20111,1,Africa +2023-11-11,6362,8006,"[""Charger""]",4230.69,{},147477,0,Europe +2024-01-27,6363,7245,"[""Phone"", ""Tablet""]",3504.07,{},272155,1,South America +2023-01-09,6364,6346,"[""Charger"", ""Phone"", ""Laptop""]",4376.44,"{"""": ""26%""}",197248,1,Europe +2024-08-13,6365,2970,"[""Monitor"", ""Tablet"", ""Keyboard""]",3683.29,"{""loyalty"": ""19%""}",285040,1,Asia +2023-06-02,6366,5330,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4708.21,{},275079,0,Europe +2024-07-03,6367,3221,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2782.22,{},96287,1,South America +2024-05-12,6368,4570,"[""Charger""]",4041.32,{},200664,0,Europe +2024-11-10,6369,7117,"[""Laptop""]",1355.33,{},106400,0,Europe +2023-05-05,6370,5816,"[""Headphones"", ""Phone"", ""Tablet""]",2640.72,{},40163,1,Europe +2023-03-10,6371,2697,"[""Charger""]",214.26,"{"""": ""30%""}",219344,1,Asia +2024-05-28,6372,2466,"[""Keyboard"", ""Charger""]",3541.72,{},269130,1,Europe +2024-12-11,6373,6276,"[""Headphones"", ""Laptop"", ""Monitor""]",1159.43,{},14798,0,North America +2023-04-14,6374,1152,"[""Keyboard"", ""Charger"", ""Phone""]",4833.32,{},23079,0,Asia +2023-01-08,6375,9105,"[""Wireless Mouse""]",2339.51,{},118373,1,South America +2023-09-18,6376,7159,"[""Laptop"", ""Phone"", ""Tablet""]",3310.88,{},74154,1,Africa +2023-06-10,6377,9699,"[""Wireless Mouse"", ""Phone""]",2005.66,{},4250,0,North America +2023-10-16,6378,1845,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1717.12,"{"""": ""20%""}",232572,0,Asia +2024-04-20,6379,9685,"[""Headphones""]",2848.1,"{""promo"": ""16%""}",282047,1,Asia +2023-06-19,6380,3418,"[""Phone"", ""Monitor"", ""Charger""]",2001.92,{},61846,0,Africa +2024-10-18,6381,7133,"[""Monitor"", ""Phone"", ""Laptop""]",913.35,"{""loyalty"": ""11%""}",63686,0,Africa +2024-02-12,6382,233,"[""Keyboard""]",4172.12,{},65804,0,Africa +2023-12-10,6383,9973,"[""Keyboard"", ""Tablet"", ""Monitor""]",669.7,"{""seasonal"": ""30%""}",42428,1,Europe +2024-01-21,6384,6855,"[""Laptop"", ""Headphones""]",3791.6,"{""loyalty"": ""13%""}",193082,0,North America +2023-06-02,6385,564,"[""Tablet""]",2722.21,"{""seasonal"": ""8%""}",215366,0,North America +2023-12-07,6386,5177,"[""Charger"", ""Monitor"", ""Headphones""]",1422.49,{},4559,0,Africa +2023-01-07,6387,4842,"[""Monitor"", ""Wireless Mouse""]",920.27,{},238118,0,Asia +2023-06-24,6388,7504,"[""Laptop"", ""Monitor""]",1594.88,{},46903,0,South America +2023-02-03,6389,3821,"[""Tablet"", ""Laptop"", ""Keyboard""]",4500.58,{},92190,0,South America +2024-06-08,6390,4030,"[""Phone""]",2255.05,"{""loyalty"": ""27%""}",215940,1,Africa +2023-09-30,6391,8370,"[""Wireless Mouse""]",3104.73,"{""promo"": ""20%""}",209529,0,North America +2023-04-02,6392,7612,"[""Wireless Mouse""]",3652.82,{},233497,0,North America +2023-09-02,6393,6941,"[""Keyboard""]",3580.0,{},91649,0,Europe +2024-04-28,6394,7701,"[""Monitor"", ""Charger""]",736.03,{},264411,1,Africa +2024-06-20,6395,5706,"[""Tablet"", ""Keyboard"", ""Laptop""]",4786.67,{},293168,0,South America +2023-11-07,6396,8136,"[""Phone"", ""Tablet""]",2511.02,"{""loyalty"": ""27%""}",260665,1,Europe +2023-06-02,6397,5659,"[""Headphones""]",2986.7,{},209099,0,North America +2024-03-03,6398,46,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4598.1,{},251051,1,Asia +2024-09-03,6399,3227,"[""Phone""]",3650.06,"{"""": ""19%""}",131375,1,Asia +2023-09-04,6400,3003,"[""Wireless Mouse""]",4795.06,{},172619,0,South America +2024-07-18,6401,4650,"[""Tablet""]",858.42,{},142360,1,Africa +2023-11-13,6402,8991,"[""Phone"", ""Keyboard""]",3238.47,"{""promo"": ""18%""}",243262,1,Africa +2024-01-08,6403,7501,"[""Tablet"", ""Headphones"", ""Charger""]",2036.33,{},240449,1,Asia +2024-04-20,6404,888,"[""Headphones"", ""Laptop""]",2850.3,{},73765,0,North America +2023-05-30,6405,756,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4800.72,"{"""": ""18%""}",88859,0,South America +2023-02-12,6406,436,"[""Keyboard""]",1889.07,{},136236,1,Asia +2024-05-23,6407,9104,"[""Wireless Mouse""]",3652.08,"{"""": ""16%""}",173868,0,Asia +2024-03-20,6408,2066,"[""Headphones""]",4979.0,"{""loyalty"": ""7%""}",209440,1,Asia +2023-08-02,6409,5062,"[""Charger"", ""Tablet""]",1472.09,{},288768,1,South America +2024-01-12,6410,1269,"[""Charger"", ""Laptop"", ""Headphones""]",2432.66,{},241958,0,North America +2023-10-29,6411,7936,"[""Wireless Mouse""]",73.91,"{"""": ""5%""}",234951,0,Asia +2024-12-17,6412,3889,"[""Keyboard"", ""Phone""]",996.85,"{""promo"": ""25%""}",250513,1,Asia +2023-12-12,6413,8097,"[""Charger""]",2798.67,{},24742,0,Asia +2024-11-27,6414,2564,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1826.52,{},56683,0,South America +2023-04-03,6415,7998,"[""Laptop"", ""Keyboard"", ""Phone""]",4710.62,"{"""": ""28%""}",196272,0,Europe +2023-01-10,6416,9778,"[""Tablet""]",617.74,{},232031,1,Asia +2024-04-18,6417,1898,"[""Tablet""]",4537.08,"{""seasonal"": ""21%""}",192283,0,Europe +2024-06-14,6418,8565,"[""Monitor"", ""Phone"", ""Keyboard""]",779.43,"{""promo"": ""15%""}",123149,0,North America +2023-10-27,6419,2721,"[""Keyboard""]",601.87,"{""loyalty"": ""26%""}",249746,0,South America +2024-04-29,6420,3966,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3506.78,"{""loyalty"": ""25%""}",49325,0,Asia +2023-09-17,6421,9537,"[""Charger"", ""Monitor""]",496.77,{},34327,0,Asia +2024-06-28,6422,7768,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1127.6,{},269463,1,Asia +2024-02-08,6423,2902,"[""Phone"", ""Keyboard""]",3149.16,{},77404,0,South America +2024-01-15,6424,3143,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1921.35,{},288784,1,Europe +2024-04-08,6425,3276,"[""Tablet""]",924.91,"{""loyalty"": ""23%""}",38342,1,Europe +2024-04-17,6426,2008,"[""Tablet"", ""Charger""]",850.53,"{"""": ""8%""}",75293,0,North America +2024-01-05,6427,9274,"[""Headphones"", ""Laptop"", ""Monitor""]",2670.79,"{""loyalty"": ""21%""}",45188,1,Europe +2023-03-06,6428,5204,"[""Phone""]",4613.0,{},107265,0,North America +2024-02-16,6429,7640,"[""Tablet"", ""Laptop"", ""Phone""]",848.94,{},194095,0,North America +2023-02-24,6430,4244,"[""Tablet"", ""Charger"", ""Laptop""]",2320.53,{},273631,1,Europe +2023-11-10,6431,652,"[""Monitor"", ""Tablet""]",2665.38,{},64793,1,Africa +2023-06-08,6432,3994,"[""Keyboard""]",3653.42,{},47965,1,South America +2024-10-26,6433,6058,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2147.46,{},44258,0,Europe +2024-08-10,6434,640,"[""Wireless Mouse"", ""Charger""]",1698.92,"{""seasonal"": ""21%""}",277810,0,Africa +2024-12-25,6435,9176,"[""Tablet""]",2625.39,{},284188,0,Africa +2024-03-06,6436,8473,"[""Keyboard"", ""Laptop"", ""Headphones""]",4976.56,{},252893,1,South America +2024-07-21,6437,5608,"[""Charger""]",1039.58,{},274929,0,Africa +2023-04-15,6438,2743,"[""Phone"", ""Keyboard"", ""Headphones""]",1654.57,{},123904,0,South America +2024-03-06,6439,7647,"[""Laptop"", ""Phone"", ""Tablet""]",2845.11,"{"""": ""8%""}",189173,0,Europe +2023-11-11,6440,4354,"[""Laptop"", ""Headphones"", ""Phone""]",3247.39,{},288922,1,Europe +2023-03-16,6441,9593,"[""Keyboard"", ""Laptop""]",1524.89,"{""loyalty"": ""15%""}",168440,1,South America +2023-11-18,6442,6218,"[""Headphones"", ""Wireless Mouse""]",1484.38,{},242319,1,Asia +2024-05-15,6443,7907,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1497.19,"{""promo"": ""5%""}",53807,1,South America +2023-02-28,6444,5040,"[""Tablet"", ""Charger"", ""Monitor""]",4577.13,{},177566,1,South America +2023-08-22,6445,8350,"[""Laptop"", ""Wireless Mouse""]",542.28,{},274079,0,Asia +2023-03-25,6446,3115,"[""Keyboard"", ""Tablet""]",1318.88,{},199965,0,Europe +2023-05-22,6447,9412,"[""Tablet"", ""Phone"", ""Keyboard""]",444.18,{},198112,0,Europe +2023-11-16,6448,6395,"[""Headphones""]",2862.9,{},182713,0,South America +2024-01-19,6449,8256,"[""Laptop"", ""Charger""]",1837.57,{},178551,1,Asia +2023-12-08,6450,4883,"[""Keyboard"", ""Wireless Mouse""]",3791.62,"{"""": ""17%""}",49835,0,North America +2024-01-16,6451,9698,"[""Laptop""]",1907.23,{},173358,0,South America +2024-10-12,6452,3395,"[""Laptop"", ""Tablet"", ""Keyboard""]",50.02,{},170059,1,South America +2023-05-10,6453,7335,"[""Phone"", ""Headphones"", ""Charger""]",1136.07,"{""loyalty"": ""15%""}",66246,0,South America +2024-09-08,6454,9827,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",419.86,"{""loyalty"": ""23%""}",284215,1,Europe +2023-09-04,6455,8673,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2319.4,{},126947,1,Africa +2023-10-10,6456,6344,"[""Charger"", ""Keyboard""]",1866.14,"{""promo"": ""13%""}",156630,1,North America +2023-11-13,6457,4670,"[""Tablet"", ""Phone"", ""Monitor""]",773.49,"{"""": ""27%""}",141529,0,Europe +2024-03-08,6458,2283,"[""Phone"", ""Wireless Mouse""]",3248.67,{},260704,0,Africa +2024-05-11,6459,6180,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4201.54,{},236598,1,Asia +2024-01-05,6460,4119,"[""Keyboard""]",2584.15,"{"""": ""18%""}",257291,0,Europe +2024-09-18,6461,3916,"[""Headphones""]",2987.26,{},28432,1,South America +2023-02-24,6462,9098,"[""Headphones"", ""Charger""]",448.35,{},272893,0,Europe +2024-01-20,6463,9676,"[""Monitor""]",2110.79,{},202023,1,Europe +2024-03-12,6464,1136,"[""Keyboard"", ""Wireless Mouse""]",3196.13,{},296621,0,South America +2023-07-26,6465,5645,"[""Keyboard"", ""Tablet""]",3119.85,{},54575,0,North America +2023-06-05,6466,7804,"[""Monitor"", ""Tablet"", ""Phone""]",2054.6,"{""loyalty"": ""24%""}",261493,0,Africa +2023-09-22,6467,388,"[""Laptop"", ""Phone"", ""Tablet""]",4526.34,{},261375,0,Asia +2023-09-22,6468,3759,"[""Wireless Mouse""]",4607.87,"{""seasonal"": ""15%""}",154782,1,Africa +2023-02-26,6469,4215,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3567.66,"{""seasonal"": ""30%""}",214187,0,Asia +2024-02-25,6470,1833,"[""Monitor"", ""Headphones"", ""Keyboard""]",4081.25,{},19012,1,North America +2023-05-13,6471,1800,"[""Monitor"", ""Charger""]",1117.52,{},45951,0,Europe +2024-04-17,6472,4064,"[""Laptop"", ""Tablet"", ""Charger""]",2405.26,{},165417,1,North America +2024-01-24,6473,9784,"[""Charger"", ""Phone"", ""Monitor""]",4111.43,{},216929,1,South America +2023-06-24,6474,9157,"[""Headphones""]",1234.45,"{""loyalty"": ""30%""}",178896,1,South America +2023-10-31,6475,4802,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3114.47,{},216820,0,Europe +2024-05-01,6476,2105,"[""Phone"", ""Keyboard""]",1182.56,{},248158,1,North America +2023-03-08,6477,4595,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2773.56,"{"""": ""19%""}",299892,1,North America +2024-12-30,6478,355,"[""Wireless Mouse""]",114.94,{},169369,0,Africa +2023-03-27,6479,1051,"[""Monitor""]",3668.84,{},284966,1,South America +2024-04-26,6480,3106,"[""Laptop"", ""Keyboard"", ""Headphones""]",4775.41,"{""seasonal"": ""8%""}",262163,0,Europe +2023-05-13,6481,7695,"[""Keyboard"", ""Laptop""]",4369.62,{},140167,0,Asia +2023-12-13,6482,2329,"[""Laptop"", ""Phone""]",2901.2,{},80629,1,Africa +2024-05-29,6483,2414,"[""Charger""]",2794.05,"{""loyalty"": ""10%""}",165980,0,Africa +2023-06-22,6484,1619,"[""Wireless Mouse""]",3150.49,{},125991,0,South America +2023-07-10,6485,3464,"[""Laptop"", ""Charger""]",2196.3,"{""seasonal"": ""22%""}",28755,0,North America +2024-09-17,6486,7538,"[""Phone"", ""Keyboard""]",989.77,{},140419,0,Europe +2024-01-26,6487,2393,"[""Charger"", ""Wireless Mouse""]",3019.52,"{""loyalty"": ""16%""}",21549,0,Asia +2023-01-12,6488,6231,"[""Charger""]",3517.98,"{""promo"": ""13%""}",38975,1,North America +2023-08-14,6489,5164,"[""Keyboard"", ""Phone""]",4829.21,{},78859,1,South America +2024-03-21,6490,8221,"[""Headphones"", ""Charger"", ""Monitor""]",2874.64,{},290809,0,Africa +2023-11-19,6491,4983,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1226.25,"{"""": ""21%""}",240107,1,Africa +2024-04-11,6492,3957,"[""Headphones""]",4055.79,"{""seasonal"": ""29%""}",120471,0,South America +2024-11-02,6493,4044,"[""Laptop"", ""Monitor""]",4860.9,"{"""": ""17%""}",143489,1,Africa +2024-01-27,6494,4502,"[""Headphones""]",915.56,"{""promo"": ""21%""}",121330,0,South America +2023-07-17,6495,9790,"[""Monitor""]",4398.77,{},110836,0,South America +2024-10-01,6496,7015,"[""Laptop""]",1344.44,"{""seasonal"": ""28%""}",154587,1,Asia +2024-04-20,6497,6160,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1339.65,"{"""": ""20%""}",290769,1,Europe +2023-02-20,6498,346,"[""Phone"", ""Keyboard"", ""Charger""]",1353.15,"{""promo"": ""6%""}",224946,1,North America +2023-05-15,6499,5984,"[""Phone"", ""Tablet"", ""Laptop""]",4900.1,{},101697,0,South America +2024-01-25,6500,3443,"[""Headphones"", ""Laptop""]",691.46,"{""promo"": ""29%""}",46512,0,North America +2024-02-10,6501,8360,"[""Phone"", ""Charger""]",2976.29,{},58533,1,Asia +2023-11-18,6502,1418,"[""Wireless Mouse""]",1286.02,{},14013,1,North America +2024-10-27,6503,9172,"[""Headphones"", ""Tablet"", ""Charger""]",3592.69,"{""loyalty"": ""25%""}",62883,1,Africa +2024-04-04,6504,1895,"[""Tablet"", ""Wireless Mouse""]",514.31,{},228069,0,South America +2024-10-11,6505,8664,"[""Monitor""]",1670.52,"{""seasonal"": ""20%""}",1205,1,Asia +2023-04-15,6506,2190,"[""Charger"", ""Phone""]",1379.25,"{"""": ""30%""}",149515,0,North America +2024-07-21,6507,982,"[""Keyboard""]",141.88,{},54317,1,South America +2024-09-20,6508,295,"[""Headphones""]",2442.44,{},294339,1,North America +2023-04-16,6509,2831,"[""Tablet""]",4072.44,{},197663,0,Asia +2024-08-27,6510,5245,"[""Tablet"", ""Charger""]",4059.9,{},105785,1,Africa +2023-06-12,6511,4105,"[""Laptop"", ""Monitor"", ""Charger""]",3320.43,"{""promo"": ""26%""}",77229,0,Europe +2023-04-17,6512,4889,"[""Headphones""]",3122.25,"{""seasonal"": ""10%""}",12876,0,Africa +2024-01-07,6513,5149,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",538.69,"{""loyalty"": ""13%""}",249301,0,Europe +2023-03-03,6514,7655,"[""Phone"", ""Headphones""]",3336.58,{},234252,1,Asia +2024-10-14,6515,9757,"[""Laptop"", ""Monitor"", ""Headphones""]",4005.27,{},287774,0,Europe +2023-12-27,6516,542,"[""Keyboard""]",573.5,"{""seasonal"": ""14%""}",242661,0,South America +2024-03-19,6517,1850,"[""Headphones"", ""Charger""]",332.99,"{""promo"": ""5%""}",2398,1,South America +2023-01-09,6518,6369,"[""Charger""]",1679.17,"{""loyalty"": ""7%""}",220602,0,Asia +2023-12-25,6519,7476,"[""Monitor""]",3595.09,"{""loyalty"": ""11%""}",107896,1,Africa +2024-05-29,6520,7075,"[""Headphones"", ""Keyboard"", ""Charger""]",3917.11,{},175589,0,Asia +2023-03-31,6521,6281,"[""Phone"", ""Keyboard""]",2243.3,{},46019,1,South America +2023-03-04,6522,3892,"[""Phone"", ""Tablet""]",352.73,{},160834,0,Asia +2023-05-24,6523,3561,"[""Laptop""]",2571.27,"{""loyalty"": ""8%""}",68165,0,Europe +2023-09-09,6524,5904,"[""Monitor""]",2832.17,{},1219,0,North America +2023-03-26,6525,6637,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",157.74,{},18013,1,Asia +2024-07-22,6526,5301,"[""Charger"", ""Keyboard"", ""Laptop""]",1094.51,{},226970,1,North America +2024-09-13,6527,4191,"[""Phone"", ""Tablet""]",4663.83,"{""loyalty"": ""11%""}",130596,1,Europe +2024-08-17,6528,1546,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1928.96,{},15843,0,Asia +2024-08-11,6529,7717,"[""Charger"", ""Wireless Mouse"", ""Phone""]",150.85,{},231616,1,Asia +2023-08-08,6530,9434,"[""Charger"", ""Laptop"", ""Headphones""]",4583.32,{},157690,1,Asia +2023-01-26,6531,7483,"[""Tablet""]",282.8,{},64742,0,Africa +2024-10-08,6532,1349,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",806.46,{},127918,0,Africa +2023-03-21,6533,3492,"[""Laptop"", ""Monitor""]",4102.54,{},97485,1,North America +2023-03-02,6534,3756,"[""Keyboard""]",2503.49,{},219718,1,South America +2024-08-22,6535,3807,"[""Phone""]",4790.58,"{""loyalty"": ""30%""}",266273,1,Asia +2024-02-04,6536,425,"[""Charger"", ""Keyboard"", ""Headphones""]",3314.04,"{""loyalty"": ""14%""}",139540,1,Africa +2023-04-05,6537,7407,"[""Monitor""]",4960.9,"{"""": ""14%""}",129996,0,North America +2024-04-02,6538,6729,"[""Keyboard"", ""Headphones"", ""Charger""]",2105.0,{},51344,1,North America +2023-09-13,6539,9012,"[""Charger"", ""Tablet"", ""Laptop""]",4328.42,"{""loyalty"": ""30%""}",145062,0,Asia +2024-08-10,6540,5314,"[""Monitor"", ""Headphones""]",2059.61,"{""loyalty"": ""18%""}",252565,1,Europe +2024-12-26,6541,5163,"[""Headphones"", ""Charger"", ""Monitor""]",3978.69,{},89296,0,Asia +2023-12-27,6542,2480,"[""Headphones"", ""Laptop"", ""Charger""]",582.29,{},138286,0,Africa +2024-04-09,6543,1315,"[""Headphones"", ""Phone""]",1671.51,{},269242,1,Asia +2024-10-27,6544,7549,"[""Phone"", ""Monitor"", ""Keyboard""]",1308.38,"{""seasonal"": ""14%""}",41228,0,Africa +2024-02-11,6545,6901,"[""Phone"", ""Headphones""]",4053.46,{},131763,1,Asia +2024-12-29,6546,2886,"[""Tablet"", ""Headphones"", ""Laptop""]",3588.9,{},219254,0,Africa +2024-06-12,6547,4472,"[""Wireless Mouse""]",3716.1,"{""loyalty"": ""29%""}",105693,0,South America +2024-08-18,6548,3512,"[""Keyboard"", ""Laptop"", ""Headphones""]",2093.12,{},218021,0,Asia +2023-09-23,6549,57,"[""Charger"", ""Wireless Mouse""]",1799.77,{},265849,0,North America +2024-12-02,6550,889,"[""Phone""]",2819.41,{},298003,1,North America +2024-03-24,6551,7092,"[""Laptop"", ""Headphones"", ""Keyboard""]",2689.96,"{"""": ""8%""}",276569,1,North America +2024-09-23,6552,8430,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4079.34,"{"""": ""26%""}",52218,0,Africa +2024-02-21,6553,9729,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1989.68,"{""loyalty"": ""25%""}",254087,1,Africa +2023-07-29,6554,1098,"[""Monitor"", ""Laptop""]",3030.54,"{"""": ""8%""}",52752,0,Europe +2023-11-29,6555,5182,"[""Wireless Mouse""]",256.85,{},62603,0,Asia +2024-03-23,6556,5116,"[""Tablet""]",734.0,"{""promo"": ""7%""}",203096,0,North America +2024-10-18,6557,1148,"[""Headphones"", ""Keyboard""]",1629.23,"{""loyalty"": ""29%""}",111327,0,North America +2023-04-18,6558,4317,"[""Phone"", ""Headphones"", ""Monitor""]",4669.25,{},253958,1,Africa +2024-11-24,6559,94,"[""Phone"", ""Laptop"", ""Charger""]",3626.68,{},199437,0,Asia +2024-09-21,6560,5833,"[""Laptop"", ""Monitor"", ""Keyboard""]",3419.58,"{""loyalty"": ""10%""}",37836,1,South America +2024-03-02,6561,3172,"[""Charger"", ""Laptop"", ""Keyboard""]",2103.76,{},287019,0,Asia +2023-09-17,6562,3007,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",160.47,{},252333,1,Europe +2023-02-21,6563,5298,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1557.58,{},102914,1,Europe +2024-12-16,6564,2555,"[""Keyboard"", ""Tablet"", ""Monitor""]",628.08,"{""loyalty"": ""14%""}",132080,1,South America +2024-03-22,6565,7380,"[""Laptop"", ""Keyboard"", ""Charger""]",477.09,{},147706,0,North America +2023-03-21,6566,2167,"[""Headphones"", ""Keyboard"", ""Monitor""]",2678.76,"{""seasonal"": ""10%""}",267991,0,Europe +2023-09-22,6567,7671,"[""Wireless Mouse"", ""Tablet""]",2628.3,{},102984,1,Asia +2023-09-20,6568,9527,"[""Tablet""]",863.69,"{""promo"": ""25%""}",295321,0,Africa +2024-06-16,6569,2519,"[""Charger"", ""Laptop""]",4893.02,{},229667,0,Asia +2024-06-22,6570,7535,"[""Headphones""]",1598.04,"{"""": ""22%""}",45973,1,Asia +2023-03-31,6571,5582,"[""Phone""]",163.97,"{"""": ""25%""}",165469,1,North America +2024-07-26,6572,3785,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4216.48,{},50452,1,Africa +2024-10-30,6573,436,"[""Monitor"", ""Keyboard""]",2657.59,{},128599,1,North America +2024-12-24,6574,867,"[""Wireless Mouse"", ""Keyboard""]",3741.97,{},60653,1,North America +2023-12-12,6575,913,"[""Laptop"", ""Tablet"", ""Monitor""]",2568.1,"{""seasonal"": ""9%""}",52854,0,Europe +2023-09-15,6576,2728,"[""Headphones""]",3334.21,"{""loyalty"": ""28%""}",138529,1,North America +2024-10-08,6577,8706,"[""Monitor""]",3100.9,{},299440,1,Asia +2024-09-05,6578,3,"[""Laptop"", ""Tablet""]",2956.07,{},5080,1,Asia +2023-10-14,6579,785,"[""Monitor""]",3220.02,"{"""": ""12%""}",96703,1,South America +2024-06-21,6580,3234,"[""Phone"", ""Tablet""]",2104.74,{},7782,1,Asia +2023-05-22,6581,2949,"[""Laptop"", ""Headphones""]",4098.37,"{""promo"": ""6%""}",277370,1,Asia +2024-08-19,6582,7419,"[""Wireless Mouse"", ""Keyboard""]",2527.6,"{""promo"": ""22%""}",216495,1,Asia +2023-11-01,6583,6130,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",391.99,"{"""": ""11%""}",164231,0,Africa +2023-03-29,6584,630,"[""Headphones""]",1715.03,"{""seasonal"": ""29%""}",7517,0,Africa +2023-01-21,6585,6448,"[""Laptop""]",993.3,"{""loyalty"": ""11%""}",118964,0,South America +2024-05-11,6586,1517,"[""Keyboard""]",2012.06,"{"""": ""24%""}",239098,0,Asia +2024-06-10,6587,2213,"[""Headphones"", ""Laptop"", ""Phone""]",1505.64,{},25008,1,Europe +2024-01-17,6588,2648,"[""Wireless Mouse"", ""Monitor""]",3592.07,{},34645,0,North America +2024-08-08,6589,2095,"[""Wireless Mouse"", ""Charger""]",2862.94,{},165758,1,South America +2023-01-11,6590,3380,"[""Monitor"", ""Keyboard""]",1546.49,{},107938,1,Asia +2023-01-13,6591,2082,"[""Monitor"", ""Keyboard"", ""Headphones""]",617.69,"{"""": ""12%""}",290128,1,North America +2024-08-01,6592,2543,"[""Monitor"", ""Keyboard""]",3882.33,"{""loyalty"": ""13%""}",131840,0,Africa +2023-04-22,6593,7350,"[""Tablet"", ""Charger"", ""Phone""]",4884.52,{},2451,0,Africa +2023-06-09,6594,7092,"[""Wireless Mouse"", ""Charger""]",3319.59,{},181873,1,Africa +2024-12-21,6595,2659,"[""Keyboard"", ""Phone"", ""Charger""]",1993.07,"{""promo"": ""10%""}",153934,0,Africa +2024-03-27,6596,8620,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1203.79,{},205945,1,Africa +2024-07-17,6597,436,"[""Charger"", ""Tablet""]",3533.26,{},20728,1,Europe +2024-08-08,6598,5946,"[""Monitor""]",1119.67,"{""promo"": ""6%""}",228044,0,Europe +2024-07-11,6599,2501,"[""Headphones""]",2591.6,"{""loyalty"": ""11%""}",133029,1,Asia +2024-10-14,6600,8374,"[""Tablet""]",3261.93,"{""loyalty"": ""23%""}",4216,1,North America +2023-12-22,6601,55,"[""Phone""]",4410.53,{},195899,1,Africa +2024-04-30,6602,2537,"[""Laptop"", ""Charger""]",4879.64,"{"""": ""20%""}",276645,1,Africa +2023-08-05,6603,4403,"[""Laptop"", ""Phone"", ""Monitor""]",2801.27,"{""seasonal"": ""30%""}",214128,1,Asia +2023-07-09,6604,1633,"[""Laptop"", ""Headphones""]",3786.76,{},161683,1,Europe +2024-01-12,6605,388,"[""Headphones""]",1432.69,{},238854,0,South America +2023-08-05,6606,377,"[""Laptop"", ""Headphones"", ""Keyboard""]",4393.73,{},254025,1,North America +2023-01-13,6607,197,"[""Tablet""]",4886.23,"{""loyalty"": ""21%""}",199055,0,North America +2023-12-29,6608,8557,"[""Laptop"", ""Phone"", ""Keyboard""]",480.65,{},153422,0,North America +2023-02-03,6609,471,"[""Phone"", ""Tablet""]",3189.8,"{""loyalty"": ""25%""}",143756,1,South America +2024-12-06,6610,772,"[""Phone""]",2169.83,{},214000,0,Asia +2023-10-10,6611,8489,"[""Tablet"", ""Charger"", ""Laptop""]",3079.21,"{""loyalty"": ""22%""}",281725,0,South America +2023-07-31,6612,483,"[""Charger"", ""Monitor""]",2964.81,{},196950,1,Asia +2023-04-03,6613,3930,"[""Tablet"", ""Charger""]",4275.5,"{""seasonal"": ""30%""}",284412,1,Africa +2023-11-05,6614,4750,"[""Keyboard"", ""Charger""]",4169.14,"{""promo"": ""8%""}",86344,1,North America +2023-11-03,6615,4336,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",146.95,{},176907,0,North America +2023-04-08,6616,800,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3842.8,"{""loyalty"": ""30%""}",109370,1,Asia +2023-09-06,6617,2535,"[""Laptop"", ""Keyboard""]",2938.75,{},101359,0,Europe +2023-12-06,6618,9738,"[""Headphones"", ""Keyboard""]",860.07,"{""seasonal"": ""30%""}",198275,0,South America +2023-02-11,6619,122,"[""Headphones""]",1150.0,{},161153,0,Europe +2024-10-31,6620,5218,"[""Charger"", ""Tablet""]",4303.91,"{""seasonal"": ""8%""}",37091,0,North America +2024-06-23,6621,621,"[""Phone"", ""Tablet"", ""Headphones""]",4212.29,"{""promo"": ""23%""}",183290,1,Asia +2023-08-23,6622,8163,"[""Keyboard""]",3511.43,"{"""": ""28%""}",136959,0,North America +2024-11-30,6623,3262,"[""Wireless Mouse""]",4914.32,{},166200,1,South America +2023-12-22,6624,6239,"[""Headphones"", ""Tablet"", ""Monitor""]",4329.95,{},137916,1,North America +2023-06-05,6625,1869,"[""Charger"", ""Wireless Mouse""]",1580.58,"{""loyalty"": ""5%""}",50519,0,South America +2023-06-23,6626,8425,"[""Wireless Mouse"", ""Tablet""]",2802.63,{},247855,1,Asia +2023-12-10,6627,5346,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1420.11,"{""seasonal"": ""24%""}",170575,1,Africa +2023-10-05,6628,786,"[""Keyboard""]",3460.71,"{"""": ""9%""}",80085,1,Asia +2023-09-01,6629,3785,"[""Wireless Mouse""]",3693.48,{},75794,1,South America +2023-05-01,6630,8359,"[""Phone""]",4350.88,"{"""": ""28%""}",180469,1,Africa +2023-10-13,6631,5787,"[""Keyboard"", ""Monitor""]",1577.52,{},99419,1,Asia +2024-01-20,6632,7933,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",59.66,"{""promo"": ""16%""}",62178,1,Africa +2023-01-31,6633,2339,"[""Tablet"", ""Phone"", ""Keyboard""]",3538.64,{},83915,0,Europe +2023-12-25,6634,6922,"[""Phone"", ""Wireless Mouse""]",244.55,{},212127,0,Africa +2024-08-18,6635,8259,"[""Tablet"", ""Laptop"", ""Charger""]",4152.69,{},274858,0,South America +2023-08-15,6636,5867,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2647.77,"{""loyalty"": ""17%""}",157818,0,Europe +2024-04-06,6637,5342,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1111.11,"{""loyalty"": ""9%""}",94304,1,Europe +2024-11-09,6638,4407,"[""Monitor"", ""Keyboard""]",2953.63,"{""promo"": ""7%""}",123256,0,Europe +2024-05-03,6639,4036,"[""Wireless Mouse"", ""Keyboard""]",2296.01,"{""loyalty"": ""5%""}",201344,1,Asia +2023-06-03,6640,2553,"[""Headphones"", ""Laptop""]",2606.83,{},100949,0,South America +2024-07-26,6641,2208,"[""Headphones""]",1516.6,{},298150,1,South America +2024-12-15,6642,9887,"[""Tablet"", ""Headphones""]",396.49,{},223001,1,Africa +2023-03-01,6643,6348,"[""Headphones""]",1833.4,"{"""": ""11%""}",190311,1,Africa +2023-05-30,6644,4695,"[""Monitor"", ""Phone""]",1996.39,{},82171,1,Asia +2024-08-05,6645,9209,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3862.31,"{""loyalty"": ""24%""}",192213,0,Europe +2024-06-23,6646,4634,"[""Tablet"", ""Charger""]",2187.88,{},39846,0,North America +2024-08-01,6647,2065,"[""Charger"", ""Tablet"", ""Phone""]",1409.16,"{""loyalty"": ""18%""}",249011,0,South America +2024-11-28,6648,4091,"[""Keyboard"", ""Phone"", ""Laptop""]",1698.42,"{""promo"": ""19%""}",149458,0,Asia +2024-05-11,6649,7464,"[""Headphones"", ""Laptop"", ""Charger""]",4850.57,"{""promo"": ""19%""}",225710,1,Asia +2023-05-14,6650,7311,"[""Wireless Mouse""]",3443.97,{},2202,0,South America +2024-05-13,6651,5219,"[""Wireless Mouse"", ""Phone""]",3803.28,{},233460,0,North America +2023-02-20,6652,9273,"[""Tablet""]",900.78,{},299408,0,Europe +2023-08-18,6653,5004,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1968.8,{},14904,1,South America +2023-09-28,6654,2989,"[""Monitor"", ""Keyboard"", ""Tablet""]",1614.56,{},277420,0,South America +2023-08-31,6655,2945,"[""Laptop""]",2212.76,{},296007,1,Europe +2024-02-14,6656,2284,"[""Headphones"", ""Keyboard"", ""Laptop""]",2889.11,"{""loyalty"": ""9%""}",277009,0,Africa +2024-05-31,6657,4594,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3558.76,{},25954,0,North America +2023-02-25,6658,7703,"[""Charger"", ""Wireless Mouse""]",2602.84,"{""promo"": ""25%""}",241850,0,North America +2024-05-01,6659,744,"[""Headphones""]",4156.44,"{""seasonal"": ""8%""}",211161,1,Europe +2023-06-21,6660,4095,"[""Phone""]",3361.4,"{""loyalty"": ""25%""}",151903,1,North America +2024-04-28,6661,9945,"[""Phone""]",3117.3,"{"""": ""17%""}",122120,0,Africa +2023-11-28,6662,1113,"[""Phone"", ""Charger"", ""Keyboard""]",1893.28,{},136343,0,Africa +2024-12-23,6663,1440,"[""Wireless Mouse"", ""Charger""]",2098.73,"{""seasonal"": ""29%""}",259764,1,Asia +2024-08-21,6664,4166,"[""Laptop""]",3242.67,{},92063,0,Asia +2024-04-13,6665,7249,"[""Charger""]",423.56,"{""seasonal"": ""11%""}",192245,1,Europe +2024-06-01,6666,9315,"[""Monitor"", ""Keyboard""]",503.92,{},276364,1,Africa +2024-04-18,6667,6415,"[""Monitor"", ""Tablet""]",4835.08,"{""seasonal"": ""18%""}",261583,1,South America +2023-11-06,6668,3103,"[""Charger""]",335.41,"{""seasonal"": ""10%""}",214984,1,Europe +2023-04-16,6669,2189,"[""Headphones""]",1251.47,"{""seasonal"": ""28%""}",141279,0,Asia +2023-09-13,6670,9908,"[""Phone"", ""Charger"", ""Headphones""]",3256.72,"{""promo"": ""6%""}",77101,1,Europe +2023-10-16,6671,161,"[""Laptop"", ""Tablet""]",763.61,{},109938,0,South America +2024-10-03,6672,8350,"[""Wireless Mouse"", ""Monitor""]",4395.42,{},92682,0,North America +2024-10-17,6673,4511,"[""Keyboard"", ""Laptop""]",3107.29,"{""seasonal"": ""20%""}",223894,0,Asia +2023-01-12,6674,7305,"[""Laptop"", ""Keyboard"", ""Monitor""]",2254.86,"{"""": ""13%""}",84562,0,North America +2023-03-06,6675,4714,"[""Wireless Mouse""]",2865.96,"{""loyalty"": ""12%""}",50916,1,Europe +2024-04-26,6676,2127,"[""Keyboard""]",3540.03,{},63911,0,Europe +2024-01-17,6677,6333,"[""Laptop"", ""Charger"", ""Tablet""]",3220.96,{},145146,1,Asia +2024-09-30,6678,8618,"[""Charger""]",2035.19,{},218249,1,Europe +2023-09-03,6679,4403,"[""Phone"", ""Charger""]",3239.21,"{""loyalty"": ""27%""}",285625,0,South America +2023-07-12,6680,2442,"[""Monitor"", ""Phone"", ""Tablet""]",88.57,"{"""": ""17%""}",235356,0,North America +2023-11-19,6681,886,"[""Charger""]",2440.57,{},123494,0,Asia +2023-04-06,6682,2385,"[""Phone""]",1080.49,{},283881,0,Europe +2023-01-28,6683,8779,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",525.48,{},163247,0,Europe +2024-01-14,6684,9140,"[""Phone"", ""Tablet"", ""Keyboard""]",1152.63,{},255663,0,Africa +2023-06-18,6685,4608,"[""Laptop"", ""Monitor""]",2767.98,{},73513,0,Asia +2024-04-07,6686,1167,"[""Charger"", ""Headphones"", ""Tablet""]",1236.53,{},36168,1,Europe +2024-12-02,6687,8495,"[""Tablet""]",4623.82,"{""loyalty"": ""29%""}",94170,0,Europe +2024-09-25,6688,9766,"[""Keyboard"", ""Charger"", ""Laptop""]",4084.79,"{"""": ""16%""}",208050,0,Asia +2024-06-08,6689,3150,"[""Monitor""]",4728.75,{},227154,1,North America +2023-11-27,6690,803,"[""Monitor"", ""Phone""]",1702.24,{},183454,0,South America +2024-10-18,6691,8548,"[""Phone"", ""Charger""]",1760.0,"{"""": ""5%""}",167367,0,Africa +2023-09-01,6692,9791,"[""Laptop"", ""Headphones""]",2550.93,"{""loyalty"": ""14%""}",265306,0,Asia +2023-05-04,6693,8142,"[""Monitor""]",1207.49,"{""seasonal"": ""19%""}",14732,1,North America +2024-07-29,6694,9413,"[""Keyboard"", ""Headphones"", ""Charger""]",1750.81,{},245219,0,Europe +2024-09-19,6695,7909,"[""Phone"", ""Keyboard""]",3557.65,"{"""": ""14%""}",117460,0,North America +2023-03-04,6696,8146,"[""Headphones""]",708.79,"{"""": ""26%""}",97500,1,Europe +2023-05-19,6697,8191,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2631.31,"{""loyalty"": ""19%""}",25197,0,Africa +2024-08-17,6698,3091,"[""Laptop"", ""Headphones""]",3505.84,{},210346,1,Europe +2023-11-21,6699,7329,"[""Monitor"", ""Phone""]",4636.88,{},294240,1,South America +2024-01-31,6700,144,"[""Keyboard""]",661.5,{},176457,0,Europe +2024-08-24,6701,2033,"[""Charger""]",1967.21,{},90661,1,North America +2023-07-12,6702,3434,"[""Laptop"", ""Tablet""]",2328.22,"{""promo"": ""20%""}",285916,1,Europe +2024-09-15,6703,3275,"[""Tablet"", ""Monitor"", ""Laptop""]",4696.55,{},191897,1,South America +2023-10-26,6704,9340,"[""Laptop""]",1571.64,{},102063,0,North America +2024-04-03,6705,568,"[""Keyboard"", ""Phone"", ""Laptop""]",3840.07,{},3221,1,Africa +2023-11-05,6706,6277,"[""Charger"", ""Headphones""]",2103.55,"{""promo"": ""7%""}",84098,1,South America +2023-06-15,6707,8645,"[""Charger"", ""Keyboard""]",1410.5,"{""promo"": ""10%""}",85255,0,Europe +2024-05-08,6708,577,"[""Wireless Mouse"", ""Monitor""]",435.83,{},118450,1,Europe +2024-02-28,6709,5174,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2347.44,{},144631,1,South America +2024-05-23,6710,1087,"[""Tablet""]",1200.08,{},91799,0,North America +2024-05-01,6711,7667,"[""Wireless Mouse"", ""Keyboard""]",2833.73,{},11890,1,Asia +2024-06-25,6712,1582,"[""Monitor""]",1619.32,"{""promo"": ""12%""}",275861,1,Africa +2023-05-27,6713,632,"[""Charger"", ""Keyboard"", ""Headphones""]",542.05,"{""seasonal"": ""12%""}",167586,0,South America +2024-05-25,6714,6279,"[""Tablet"", ""Laptop"", ""Keyboard""]",254.8,"{""loyalty"": ""5%""}",36586,1,Europe +2023-05-28,6715,8060,"[""Keyboard"", ""Headphones""]",852.03,{},241431,1,North America +2024-07-30,6716,8074,"[""Laptop"", ""Keyboard"", ""Charger""]",2307.06,"{""promo"": ""9%""}",36605,1,Europe +2023-03-26,6717,5302,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4334.45,"{""promo"": ""8%""}",105160,1,Africa +2024-07-06,6718,6977,"[""Headphones""]",3177.18,{},168838,0,Europe +2024-04-20,6719,2536,"[""Keyboard"", ""Tablet""]",4704.24,{},56356,1,Europe +2023-02-24,6720,9843,"[""Keyboard"", ""Tablet""]",421.18,"{""promo"": ""22%""}",230723,1,Asia +2023-08-13,6721,6368,"[""Phone"", ""Keyboard""]",381.81,"{""promo"": ""9%""}",198145,0,North America +2023-08-16,6722,9210,"[""Charger"", ""Keyboard"", ""Tablet""]",1900.01,"{"""": ""7%""}",46405,1,North America +2023-01-14,6723,9239,"[""Headphones"", ""Keyboard""]",2546.04,"{""loyalty"": ""17%""}",122422,1,Africa +2024-08-25,6724,861,"[""Tablet"", ""Charger""]",839.4,"{""promo"": ""30%""}",237804,1,Europe +2024-03-20,6725,9775,"[""Headphones"", ""Laptop""]",2026.88,"{""promo"": ""15%""}",289907,1,Asia +2024-10-10,6726,8968,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3551.11,{},287638,0,Africa +2024-04-29,6727,1520,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1054.1,"{""seasonal"": ""9%""}",168849,0,Africa +2023-08-08,6728,6382,"[""Phone""]",2203.64,"{""promo"": ""10%""}",254629,0,Asia +2024-08-21,6729,4455,"[""Keyboard"", ""Headphones""]",3720.25,"{""loyalty"": ""12%""}",188294,1,North America +2023-09-24,6730,5381,"[""Charger"", ""Monitor"", ""Laptop""]",1769.72,{},4177,1,South America +2023-10-21,6731,9562,"[""Keyboard"", ""Tablet"", ""Laptop""]",4217.68,{},1692,1,Europe +2023-10-06,6732,5607,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",640.99,{},212636,1,Asia +2023-01-01,6733,5096,"[""Laptop""]",1511.16,"{""seasonal"": ""29%""}",132953,1,Asia +2024-10-14,6734,7549,"[""Monitor"", ""Wireless Mouse""]",3233.3,"{""loyalty"": ""7%""}",293791,1,Europe +2024-02-24,6735,1888,"[""Tablet"", ""Charger""]",3468.4,{},222905,0,Europe +2024-07-18,6736,6150,"[""Headphones""]",1969.32,{},67562,0,Europe +2023-05-10,6737,5260,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1054.66,"{""loyalty"": ""5%""}",251124,0,North America +2024-07-28,6738,7986,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3832.05,"{""promo"": ""15%""}",256937,1,Asia +2023-10-10,6739,854,"[""Keyboard""]",3619.06,{},88687,1,South America +2023-12-17,6740,2959,"[""Keyboard"", ""Charger""]",1378.68,"{"""": ""20%""}",200381,0,Europe +2024-03-08,6741,4425,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3776.84,{},36686,1,Asia +2024-11-07,6742,6811,"[""Headphones""]",699.49,"{""promo"": ""8%""}",286572,1,Africa +2024-10-03,6743,8169,"[""Phone"", ""Laptop""]",1393.42,"{""seasonal"": ""15%""}",48337,1,Europe +2024-07-09,6744,8612,"[""Tablet""]",3444.6,{},284612,0,Africa +2023-01-05,6745,3424,"[""Laptop"", ""Charger""]",2730.4,"{""loyalty"": ""17%""}",102207,0,South America +2024-06-23,6746,5928,"[""Keyboard""]",1281.51,{},298363,1,South America +2023-08-22,6747,4554,"[""Headphones"", ""Charger"", ""Phone""]",4315.47,{},112335,0,Africa +2024-03-13,6748,9555,"[""Keyboard"", ""Monitor""]",598.13,"{""loyalty"": ""11%""}",41010,1,Europe +2024-11-10,6749,7565,"[""Wireless Mouse"", ""Tablet""]",4873.1,"{"""": ""21%""}",47167,1,Asia +2024-10-19,6750,5068,"[""Laptop""]",1436.6,{},238845,1,South America +2024-01-06,6751,4644,"[""Monitor"", ""Phone"", ""Tablet""]",4913.59,{},244464,0,Africa +2024-08-08,6752,9011,"[""Wireless Mouse"", ""Phone""]",1674.95,"{"""": ""13%""}",118895,0,Europe +2024-10-23,6753,1734,"[""Laptop""]",4396.14,"{""promo"": ""6%""}",275345,1,Asia +2024-11-17,6754,749,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2149.98,"{""promo"": ""9%""}",121979,1,Europe +2023-07-23,6755,2961,"[""Keyboard"", ""Monitor""]",1388.71,"{""seasonal"": ""26%""}",22997,1,North America +2023-04-18,6756,6478,"[""Keyboard"", ""Headphones"", ""Tablet""]",2564.69,{},93022,0,Africa +2023-07-25,6757,7266,"[""Phone""]",2732.77,{},85591,1,Asia +2023-05-11,6758,7774,"[""Headphones"", ""Laptop""]",2964.34,"{"""": ""18%""}",121327,0,North America +2023-02-25,6759,7636,"[""Laptop"", ""Phone"", ""Charger""]",4258.14,"{""seasonal"": ""10%""}",207856,1,North America +2024-12-01,6760,7745,"[""Charger"", ""Laptop"", ""Keyboard""]",1959.3,{},283472,1,North America +2023-04-08,6761,374,"[""Headphones"", ""Tablet""]",1374.9,{},137963,0,Europe +2024-08-05,6762,6173,"[""Tablet""]",287.38,{},203750,0,North America +2024-11-19,6763,6152,"[""Monitor"", ""Keyboard"", ""Headphones""]",1398.16,"{"""": ""16%""}",295101,0,Asia +2023-09-25,6764,2963,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4322.55,"{""promo"": ""29%""}",89817,1,North America +2023-04-09,6765,6612,"[""Headphones""]",3710.08,"{""promo"": ""24%""}",283748,0,North America +2024-02-21,6766,8602,"[""Headphones"", ""Tablet"", ""Phone""]",3493.14,{},176312,0,Europe +2024-01-10,6767,9492,"[""Laptop""]",181.49,"{""promo"": ""15%""}",21415,0,Asia +2023-01-29,6768,4813,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1169.39,{},116655,0,North America +2024-01-24,6769,2903,"[""Laptop"", ""Keyboard"", ""Phone""]",3169.53,"{"""": ""5%""}",194725,0,South America +2023-10-25,6770,6930,"[""Phone""]",4278.23,"{"""": ""15%""}",270348,0,Asia +2024-07-23,6771,6572,"[""Monitor"", ""Laptop""]",562.63,{},295483,1,Asia +2024-03-24,6772,2587,"[""Headphones"", ""Monitor""]",2131.74,"{""loyalty"": ""15%""}",15677,1,North America +2023-06-23,6773,7481,"[""Headphones""]",4370.58,{},133797,1,Africa +2024-03-30,6774,4502,"[""Monitor"", ""Headphones""]",4670.93,"{""promo"": ""10%""}",282109,0,South America +2023-04-26,6775,3146,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3158.2,{},258702,0,Asia +2024-07-14,6776,4326,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4258.92,{},103724,0,South America +2023-05-13,6777,3918,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4390.5,"{"""": ""28%""}",202183,0,South America +2023-02-09,6778,775,"[""Laptop""]",1221.72,{},55877,1,North America +2023-02-23,6779,667,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2921.26,{},34781,0,South America +2024-05-02,6780,6418,"[""Laptop""]",2016.61,{},48608,1,Africa +2023-02-22,6781,1247,"[""Laptop"", ""Keyboard"", ""Tablet""]",814.48,"{""loyalty"": ""12%""}",136126,1,North America +2023-10-07,6782,7203,"[""Tablet"", ""Wireless Mouse""]",4194.58,{},248425,0,Africa +2024-04-03,6783,6335,"[""Wireless Mouse""]",654.9,"{""seasonal"": ""20%""}",208253,1,Asia +2023-04-29,6784,7597,"[""Phone"", ""Charger""]",2929.33,"{""loyalty"": ""6%""}",297006,1,North America +2023-12-23,6785,8755,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4655.32,{},272152,1,Europe +2024-02-05,6786,225,"[""Laptop"", ""Headphones"", ""Phone""]",2803.03,"{""loyalty"": ""7%""}",208201,1,Asia +2023-10-05,6787,5415,"[""Monitor""]",3341.15,{},30103,1,North America +2023-01-23,6788,8611,"[""Charger""]",1918.08,"{""loyalty"": ""20%""}",290250,1,Africa +2024-09-24,6789,1791,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4793.81,"{""loyalty"": ""19%""}",276654,0,North America +2024-08-25,6790,4657,"[""Phone""]",1638.73,{},66897,1,Europe +2023-07-12,6791,7896,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2549.56,"{"""": ""18%""}",54798,1,South America +2024-08-31,6792,8753,"[""Phone"", ""Headphones""]",4198.23,{},106967,1,Africa +2023-02-05,6793,5478,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4023.22,{},158161,1,Europe +2023-02-23,6794,3052,"[""Tablet""]",1528.55,{},171036,1,Asia +2024-04-02,6795,4472,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4464.92,{},233885,0,Africa +2024-03-06,6796,664,"[""Tablet""]",674.79,{},285920,0,Asia +2024-06-29,6797,7291,"[""Phone"", ""Headphones""]",4138.55,"{"""": ""17%""}",30759,1,Africa +2023-04-05,6798,3506,"[""Monitor"", ""Keyboard"", ""Charger""]",2596.01,"{"""": ""24%""}",29877,1,Africa +2024-10-30,6799,4524,"[""Charger"", ""Headphones""]",3960.09,"{""seasonal"": ""30%""}",277089,1,North America +2023-09-21,6800,2326,"[""Wireless Mouse"", ""Laptop""]",53.06,"{"""": ""12%""}",217100,0,Africa +2024-10-11,6801,8368,"[""Laptop"", ""Keyboard"", ""Phone""]",862.31,{},76788,1,Asia +2023-08-23,6802,3546,"[""Charger""]",753.72,{},11612,0,North America +2024-07-23,6803,7748,"[""Phone"", ""Laptop"", ""Charger""]",1936.9,"{""promo"": ""19%""}",235717,1,Asia +2023-02-18,6804,6349,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1385.13,{},258523,1,Africa +2024-03-25,6805,9594,"[""Tablet""]",2133.87,"{""loyalty"": ""5%""}",228451,0,Africa +2024-04-15,6806,6051,"[""Phone""]",1830.46,"{""promo"": ""13%""}",179581,0,Asia +2023-03-03,6807,8548,"[""Monitor""]",471.43,"{"""": ""23%""}",62858,1,Asia +2023-01-01,6808,5320,"[""Keyboard"", ""Headphones""]",3443.24,{},218283,1,South America +2024-08-07,6809,7405,"[""Keyboard"", ""Charger"", ""Phone""]",1958.93,{},188957,0,South America +2024-06-13,6810,5621,"[""Tablet"", ""Keyboard""]",2052.85,"{""loyalty"": ""26%""}",82593,0,North America +2023-12-18,6811,4526,"[""Tablet"", ""Laptop""]",1391.22,{},49620,1,Asia +2023-08-04,6812,318,"[""Phone"", ""Keyboard""]",4419.44,{},297148,1,Asia +2024-04-27,6813,7393,"[""Monitor""]",169.77,"{"""": ""21%""}",288042,0,Asia +2023-06-26,6814,9444,"[""Wireless Mouse"", ""Monitor""]",4797.8,{},240577,1,Asia +2023-09-14,6815,2234,"[""Monitor""]",3431.36,{},216564,0,Africa +2024-07-20,6816,6535,"[""Monitor"", ""Headphones""]",1116.16,{},200789,0,Europe +2023-06-26,6817,237,"[""Wireless Mouse"", ""Laptop""]",530.66,"{"""": ""9%""}",277273,0,Asia +2023-07-24,6818,7809,"[""Tablet"", ""Keyboard"", ""Monitor""]",2793.47,"{""seasonal"": ""29%""}",109431,0,Africa +2024-06-09,6819,9826,"[""Headphones"", ""Charger""]",2554.75,{},5309,1,Europe +2024-03-21,6820,5886,"[""Laptop""]",860.53,{},200869,0,South America +2023-05-10,6821,1591,"[""Charger"", ""Monitor""]",4255.01,{},41534,0,Africa +2024-04-06,6822,7557,"[""Tablet""]",1121.53,"{""seasonal"": ""29%""}",39744,0,Europe +2023-09-06,6823,4201,"[""Monitor""]",3435.98,{},228526,1,Europe +2024-04-05,6824,3664,"[""Phone"", ""Tablet"", ""Charger""]",4123.45,"{""seasonal"": ""17%""}",267728,1,Europe +2023-07-08,6825,66,"[""Headphones"", ""Monitor""]",1599.22,"{""loyalty"": ""27%""}",49388,1,Asia +2023-07-31,6826,5780,"[""Wireless Mouse""]",4131.38,"{"""": ""18%""}",230256,1,Africa +2023-07-29,6827,1439,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",147.31,"{"""": ""26%""}",57011,0,South America +2023-10-02,6828,6578,"[""Keyboard""]",3545.84,"{""promo"": ""7%""}",71115,1,South America +2023-04-19,6829,8170,"[""Keyboard"", ""Laptop""]",2240.66,"{""promo"": ""29%""}",123204,0,Europe +2023-04-29,6830,8922,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4818.5,"{""promo"": ""6%""}",229132,1,Africa +2023-05-18,6831,1321,"[""Charger""]",3110.75,"{"""": ""18%""}",55670,1,Asia +2023-08-23,6832,2676,"[""Laptop"", ""Headphones""]",2509.58,{},17424,1,North America +2023-11-03,6833,5353,"[""Monitor"", ""Charger"", ""Tablet""]",4684.42,{},193247,0,Asia +2023-01-30,6834,6880,"[""Phone"", ""Charger""]",4938.84,{},276125,1,North America +2024-01-01,6835,9510,"[""Charger"", ""Monitor""]",4355.93,{},293644,0,Asia +2024-04-24,6836,5315,"[""Phone""]",1549.91,"{"""": ""22%""}",260981,0,Asia +2023-08-28,6837,2314,"[""Keyboard""]",2002.09,{},105143,1,Europe +2024-08-06,6838,2860,"[""Laptop"", ""Headphones"", ""Tablet""]",4202.21,{},188122,0,North America +2024-08-29,6839,980,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3687.9,{},170062,0,Europe +2023-03-09,6840,5752,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4029.39,"{"""": ""29%""}",60808,0,Africa +2024-06-03,6841,7282,"[""Phone""]",2612.63,"{""loyalty"": ""6%""}",9578,0,South America +2024-09-09,6842,7925,"[""Phone"", ""Monitor"", ""Tablet""]",3800.03,{},231653,1,Europe +2023-08-27,6843,2744,"[""Monitor"", ""Headphones"", ""Laptop""]",1072.4,"{""promo"": ""28%""}",44023,0,Asia +2024-02-28,6844,8995,"[""Laptop""]",4234.5,"{""loyalty"": ""14%""}",219784,0,North America +2023-02-08,6845,6429,"[""Phone"", ""Laptop"", ""Keyboard""]",4748.13,{},269124,0,South America +2024-05-16,6846,4827,"[""Laptop""]",80.63,{},233539,0,South America +2024-11-14,6847,686,"[""Keyboard""]",4669.25,"{""loyalty"": ""22%""}",266319,0,South America +2024-11-08,6848,8047,"[""Wireless Mouse"", ""Phone""]",602.95,{},13278,0,Africa +2023-07-26,6849,1408,"[""Phone"", ""Monitor""]",1045.27,"{"""": ""26%""}",194059,1,Africa +2023-03-30,6850,6591,"[""Laptop""]",2674.13,"{""seasonal"": ""5%""}",268052,1,Africa +2023-07-16,6851,5760,"[""Monitor""]",3394.39,"{"""": ""25%""}",94314,0,Europe +2024-03-22,6852,2102,"[""Monitor"", ""Keyboard""]",3649.9,{},33780,0,Asia +2023-01-26,6853,6570,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",84.87,"{""promo"": ""28%""}",222839,1,Africa +2023-11-09,6854,9190,"[""Monitor""]",3769.46,"{""loyalty"": ""22%""}",225455,0,North America +2023-10-29,6855,8989,"[""Phone"", ""Monitor"", ""Tablet""]",4789.52,"{""seasonal"": ""17%""}",11689,1,Asia +2023-03-20,6856,7782,"[""Laptop"", ""Keyboard"", ""Monitor""]",1851.5,"{""seasonal"": ""18%""}",224945,1,North America +2023-07-28,6857,6481,"[""Laptop"", ""Wireless Mouse""]",2222.02,{},55578,0,North America +2024-06-11,6858,2512,"[""Phone"", ""Headphones"", ""Charger""]",3804.61,"{""loyalty"": ""14%""}",63311,0,South America +2023-07-02,6859,234,"[""Charger""]",2571.89,"{""seasonal"": ""21%""}",299011,1,Asia +2023-09-21,6860,2786,"[""Monitor"", ""Laptop"", ""Headphones""]",283.43,"{""seasonal"": ""25%""}",113903,1,Asia +2023-07-11,6861,371,"[""Monitor""]",614.65,{},195147,1,Asia +2023-01-12,6862,9638,"[""Tablet"", ""Phone""]",3371.51,{},145316,0,North America +2024-07-28,6863,6033,"[""Tablet"", ""Monitor"", ""Laptop""]",4618.36,{},12044,1,Africa +2023-04-12,6864,7231,"[""Headphones"", ""Phone"", ""Keyboard""]",1052.9,"{""promo"": ""7%""}",26340,0,Asia +2024-02-13,6865,5134,"[""Tablet"", ""Keyboard"", ""Phone""]",1597.27,{},19785,0,South America +2024-01-11,6866,5215,"[""Charger"", ""Tablet""]",4476.76,"{""promo"": ""5%""}",170474,1,North America +2024-06-02,6867,6871,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3141.8,{},4727,0,Asia +2023-01-24,6868,2139,"[""Charger""]",1326.09,{},144551,1,North America +2023-04-09,6869,6628,"[""Tablet"", ""Phone""]",4185.29,"{""seasonal"": ""24%""}",61130,1,Africa +2024-08-18,6870,9510,"[""Laptop"", ""Charger""]",2772.35,{},157903,1,Asia +2024-11-05,6871,7374,"[""Headphones"", ""Charger"", ""Monitor""]",4612.72,"{""loyalty"": ""12%""}",63821,1,South America +2023-10-04,6872,8014,"[""Tablet"", ""Headphones"", ""Phone""]",931.12,{},195053,1,North America +2024-08-18,6873,8482,"[""Headphones"", ""Phone"", ""Laptop""]",2482.92,"{""loyalty"": ""9%""}",93971,0,Europe +2023-03-29,6874,6847,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1472.54,"{""promo"": ""12%""}",239291,1,Africa +2023-11-24,6875,7629,"[""Keyboard"", ""Phone""]",3716.68,"{""promo"": ""25%""}",132354,1,Asia +2024-10-08,6876,1262,"[""Headphones"", ""Monitor""]",4383.48,{},124046,0,North America +2023-11-20,6877,8327,"[""Tablet"", ""Headphones"", ""Monitor""]",4001.98,{},219367,0,North America +2024-08-06,6878,132,"[""Tablet"", ""Laptop"", ""Charger""]",1729.83,"{""seasonal"": ""10%""}",165042,0,Asia +2024-12-21,6879,7273,"[""Tablet"", ""Charger""]",4284.77,"{"""": ""21%""}",244943,1,North America +2023-04-02,6880,1651,"[""Wireless Mouse"", ""Tablet""]",1258.24,{},101614,0,North America +2024-10-18,6881,9429,"[""Tablet""]",1736.06,"{""promo"": ""27%""}",139322,1,South America +2023-04-09,6882,6610,"[""Headphones"", ""Tablet""]",3168.51,"{""promo"": ""16%""}",38318,0,North America +2024-09-20,6883,4249,"[""Monitor"", ""Tablet"", ""Phone""]",1882.81,{},139120,0,Europe +2024-07-11,6884,2876,"[""Wireless Mouse""]",888.04,{},242931,0,Asia +2023-07-15,6885,543,"[""Keyboard""]",1171.59,"{"""": ""23%""}",288857,1,Europe +2023-04-12,6886,5083,"[""Tablet""]",4430.19,"{""seasonal"": ""11%""}",294209,0,North America +2024-01-29,6887,5115,"[""Phone"", ""Monitor"", ""Keyboard""]",2868.35,"{"""": ""18%""}",219837,0,Europe +2024-02-05,6888,3491,"[""Charger"", ""Headphones""]",1914.28,{},116502,1,Europe +2023-09-11,6889,5026,"[""Laptop""]",482.4,"{"""": ""30%""}",46165,1,South America +2024-10-27,6890,6626,"[""Charger"", ""Keyboard""]",2107.47,{},9806,0,Europe +2023-05-03,6891,5631,"[""Charger"", ""Keyboard"", ""Phone""]",4881.3,"{"""": ""11%""}",205307,1,South America +2024-02-04,6892,3381,"[""Phone""]",872.94,"{"""": ""9%""}",261099,0,Africa +2023-05-30,6893,5122,"[""Monitor"", ""Charger"", ""Keyboard""]",3660.7,{},110732,1,Europe +2024-11-13,6894,5854,"[""Headphones""]",4992.98,"{""seasonal"": ""10%""}",48840,1,South America +2024-12-02,6895,7269,"[""Wireless Mouse""]",4664.36,"{""promo"": ""7%""}",276644,0,North America +2023-05-10,6896,241,"[""Charger""]",1164.96,{},178286,0,Europe +2024-10-30,6897,2285,"[""Monitor"", ""Laptop"", ""Phone""]",1298.29,{},23884,1,South America +2024-05-08,6898,1088,"[""Keyboard"", ""Charger"", ""Tablet""]",258.88,{},224214,1,Asia +2024-01-09,6899,2391,"[""Wireless Mouse""]",3009.06,{},156099,0,North America +2023-03-05,6900,2966,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",326.2,{},272382,0,North America +2023-10-22,6901,8717,"[""Monitor""]",615.76,"{""promo"": ""20%""}",9194,1,North America +2024-02-09,6902,6296,"[""Tablet"", ""Phone""]",4800.48,{},258986,0,Europe +2023-10-18,6903,5834,"[""Laptop""]",3626.13,"{""promo"": ""6%""}",40320,1,South America +2024-11-22,6904,9515,"[""Laptop""]",1147.81,"{""loyalty"": ""28%""}",174510,1,South America +2023-04-26,6905,980,"[""Phone""]",175.0,{},21526,1,Africa +2023-10-24,6906,9303,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1373.46,{},153684,1,North America +2024-04-25,6907,2514,"[""Tablet"", ""Laptop"", ""Monitor""]",3605.65,"{""promo"": ""16%""}",32257,0,Europe +2023-02-28,6908,884,"[""Headphones"", ""Tablet"", ""Keyboard""]",2933.69,"{""seasonal"": ""10%""}",6196,0,South America +2023-04-23,6909,8816,"[""Keyboard""]",2472.49,{},251627,0,Asia +2024-10-09,6910,8223,"[""Keyboard""]",3022.61,{},159098,0,Asia +2023-07-27,6911,3843,"[""Monitor""]",2425.42,{},232856,0,Asia +2023-08-21,6912,7490,"[""Monitor""]",2389.92,"{""promo"": ""9%""}",258345,0,Africa +2024-10-04,6913,4579,"[""Monitor""]",833.29,"{""loyalty"": ""23%""}",75911,1,South America +2024-04-13,6914,2215,"[""Monitor"", ""Tablet""]",1877.18,"{""promo"": ""5%""}",38893,1,North America +2024-07-15,6915,7592,"[""Phone""]",3060.44,{},130125,1,Africa +2024-04-08,6916,8208,"[""Wireless Mouse""]",3867.45,"{""seasonal"": ""28%""}",163645,1,South America +2024-07-27,6917,8799,"[""Tablet""]",4493.01,"{""seasonal"": ""23%""}",269132,0,South America +2023-01-19,6918,6409,"[""Wireless Mouse"", ""Tablet""]",2691.57,"{""promo"": ""8%""}",92288,1,South America +2023-12-10,6919,5924,"[""Charger""]",4728.02,"{"""": ""16%""}",168340,0,Asia +2023-01-16,6920,7217,"[""Laptop"", ""Headphones"", ""Charger""]",845.22,{},61854,0,South America +2023-02-12,6921,1286,"[""Keyboard"", ""Laptop""]",2228.47,{},287996,1,Asia +2024-10-31,6922,8136,"[""Laptop"", ""Tablet""]",1642.74,{},163121,0,South America +2023-04-26,6923,6897,"[""Keyboard"", ""Phone""]",1956.55,{},82513,1,Asia +2023-07-10,6924,5308,"[""Tablet"", ""Laptop""]",1673.2,{},55974,0,South America +2024-11-18,6925,7619,"[""Laptop""]",4259.98,{},142930,0,Europe +2023-02-08,6926,4471,"[""Laptop"", ""Charger""]",3777.8,"{""promo"": ""7%""}",89060,0,Africa +2024-03-27,6927,4871,"[""Keyboard"", ""Charger"", ""Headphones""]",4152.75,"{"""": ""10%""}",220933,1,Europe +2024-11-15,6928,4118,"[""Headphones"", ""Tablet""]",416.62,{},189448,0,Asia +2024-01-29,6929,9229,"[""Wireless Mouse"", ""Headphones""]",2935.46,{},225656,1,Asia +2024-08-02,6930,9021,"[""Laptop"", ""Keyboard"", ""Headphones""]",3863.14,"{""loyalty"": ""21%""}",163788,1,Africa +2023-12-27,6931,4061,"[""Phone""]",3326.2,"{""loyalty"": ""11%""}",125090,0,Africa +2023-08-11,6932,3151,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2747.43,{},269705,1,North America +2023-04-30,6933,6653,"[""Keyboard""]",1185.68,"{""loyalty"": ""23%""}",63931,0,South America +2024-08-11,6934,4794,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",427.99,"{""loyalty"": ""8%""}",84337,0,Asia +2024-08-12,6935,824,"[""Phone""]",4405.31,{},219438,0,Asia +2024-09-06,6936,370,"[""Headphones"", ""Charger"", ""Monitor""]",879.78,"{"""": ""30%""}",243068,0,Asia +2023-03-08,6937,3896,"[""Keyboard"", ""Laptop""]",108.0,{},157228,0,Asia +2024-01-13,6938,9809,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",508.18,"{""seasonal"": ""30%""}",247341,0,South America +2023-08-14,6939,2446,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2990.35,{},13040,0,Asia +2023-08-06,6940,3764,"[""Phone"", ""Monitor""]",727.02,"{""promo"": ""23%""}",197727,1,North America +2024-03-28,6941,8096,"[""Keyboard"", ""Headphones""]",4267.43,{},143565,1,North America +2024-03-30,6942,4142,"[""Laptop"", ""Tablet""]",1696.28,{},263657,0,North America +2023-04-05,6943,8148,"[""Charger"", ""Tablet""]",1039.44,{},277501,1,Africa +2023-03-08,6944,2323,"[""Monitor""]",2533.69,{},91159,1,Europe +2024-08-18,6945,9495,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1189.25,"{"""": ""28%""}",105147,1,Europe +2024-04-09,6946,4652,"[""Tablet"", ""Keyboard""]",4038.64,"{""seasonal"": ""6%""}",105236,1,Europe +2024-07-31,6947,6459,"[""Tablet"", ""Laptop"", ""Phone""]",4950.61,"{""seasonal"": ""27%""}",30154,1,Asia +2024-06-15,6948,4654,"[""Tablet""]",4077.24,"{""promo"": ""28%""}",127298,0,Europe +2023-04-21,6949,3478,"[""Headphones"", ""Laptop""]",2579.61,{},104624,0,Africa +2024-08-15,6950,8506,"[""Monitor""]",1946.39,{},220978,1,Africa +2024-04-04,6951,6115,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2538.83,{},228986,0,Europe +2024-08-18,6952,2539,"[""Phone""]",3754.9,{},167188,1,Africa +2023-03-14,6953,3452,"[""Phone""]",1308.59,"{""seasonal"": ""10%""}",18753,1,South America +2023-05-17,6954,1166,"[""Phone""]",3036.0,{},281095,1,Asia +2024-03-05,6955,145,"[""Phone""]",3750.1,{},1972,1,North America +2023-02-04,6956,1923,"[""Charger""]",2529.67,{},146615,1,Asia +2024-12-30,6957,9583,"[""Laptop"", ""Charger""]",4157.18,"{""promo"": ""28%""}",99653,0,Asia +2024-08-21,6958,1388,"[""Keyboard"", ""Phone"", ""Monitor""]",3982.03,"{""promo"": ""7%""}",39255,0,North America +2024-10-13,6959,2225,"[""Charger"", ""Tablet""]",4438.41,{},112489,0,Africa +2023-11-24,6960,9504,"[""Charger"", ""Headphones"", ""Monitor""]",974.74,"{""seasonal"": ""7%""}",162679,0,Europe +2024-08-04,6961,2664,"[""Charger"", ""Keyboard"", ""Headphones""]",1342.74,"{""seasonal"": ""20%""}",35536,0,North America +2024-07-20,6962,4234,"[""Laptop"", ""Keyboard""]",2934.63,"{""promo"": ""23%""}",196304,0,South America +2024-11-19,6963,6668,"[""Wireless Mouse""]",4649.25,"{"""": ""28%""}",279116,0,Asia +2023-05-07,6964,9159,"[""Phone"", ""Keyboard""]",940.2,{},43748,0,Africa +2023-07-15,6965,6916,"[""Headphones""]",3965.8,"{"""": ""21%""}",49995,1,Europe +2023-03-07,6966,1968,"[""Wireless Mouse"", ""Tablet""]",2043.86,{},232515,1,Europe +2024-04-25,6967,406,"[""Wireless Mouse"", ""Monitor""]",3386.89,{},104263,1,South America +2023-07-16,6968,2397,"[""Phone"", ""Monitor"", ""Tablet""]",2803.18,"{""loyalty"": ""19%""}",8503,0,South America +2023-02-10,6969,7680,"[""Charger"", ""Tablet""]",2221.78,{},1202,1,Africa +2024-10-03,6970,3773,"[""Tablet""]",247.7,"{"""": ""6%""}",175847,1,Europe +2024-03-25,6971,593,"[""Wireless Mouse"", ""Phone""]",1449.99,"{""promo"": ""14%""}",116696,0,Asia +2023-03-23,6972,4590,"[""Phone""]",3300.91,"{""promo"": ""19%""}",202257,1,North America +2024-06-30,6973,1229,"[""Headphones"", ""Laptop""]",3671.74,"{""loyalty"": ""14%""}",208646,1,Asia +2023-09-02,6974,6537,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4866.42,{},244903,1,Africa +2024-04-05,6975,6850,"[""Headphones""]",4414.75,"{"""": ""29%""}",149612,0,South America +2024-01-19,6976,7348,"[""Headphones""]",4206.28,"{""loyalty"": ""9%""}",111913,1,South America +2023-01-24,6977,3129,"[""Headphones"", ""Laptop"", ""Phone""]",3238.1,{},296195,1,North America +2023-05-09,6978,6126,"[""Keyboard"", ""Wireless Mouse""]",2312.86,"{""loyalty"": ""16%""}",286798,0,Africa +2023-06-26,6979,8889,"[""Laptop"", ""Phone""]",2752.61,{},161861,1,Asia +2024-03-04,6980,5326,"[""Phone"", ""Headphones"", ""Keyboard""]",2561.67,"{""seasonal"": ""7%""}",98903,1,South America +2024-06-02,6981,448,"[""Keyboard""]",3223.3,{},297436,1,North America +2023-09-02,6982,5664,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2012.48,"{""promo"": ""17%""}",170118,1,Asia +2023-01-15,6983,3553,"[""Tablet"", ""Keyboard""]",4620.9,{},131689,1,South America +2023-11-03,6984,3417,"[""Monitor"", ""Tablet""]",1253.75,{},131547,1,Africa +2023-11-15,6985,9644,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3194.99,"{""seasonal"": ""14%""}",256933,0,North America +2024-10-20,6986,2279,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",100.48,{},46436,0,North America +2024-08-12,6987,3806,"[""Tablet"", ""Wireless Mouse""]",4973.12,"{""promo"": ""14%""}",148849,0,South America +2023-12-05,6988,6616,"[""Laptop"", ""Phone"", ""Monitor""]",2233.23,{},189494,0,South America +2023-04-21,6989,5020,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4860.24,{},25396,0,Asia +2023-07-28,6990,1599,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3703.06,"{"""": ""12%""}",225553,1,Europe +2023-06-25,6991,4572,"[""Headphones""]",3019.94,"{""promo"": ""12%""}",80264,1,North America +2023-11-17,6992,7312,"[""Phone"", ""Headphones""]",1470.95,{},292737,1,South America +2024-02-20,6993,9379,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1933.16,{},226380,0,South America +2023-05-05,6994,5107,"[""Headphones"", ""Charger"", ""Monitor""]",2236.86,{},211732,0,Africa +2024-06-09,6995,9333,"[""Wireless Mouse""]",864.66,"{""promo"": ""22%""}",43135,1,South America +2023-05-11,6996,3606,"[""Laptop""]",3908.92,{},231443,1,Europe +2023-04-20,6997,1652,"[""Wireless Mouse""]",4605.43,"{""seasonal"": ""23%""}",144717,1,Asia +2024-03-31,6998,9795,"[""Keyboard""]",655.54,"{""seasonal"": ""8%""}",77929,0,North America +2024-04-26,6999,2015,"[""Keyboard"", ""Laptop"", ""Phone""]",3928.35,"{""seasonal"": ""24%""}",15686,0,Asia +2024-12-02,7000,7113,"[""Wireless Mouse""]",3088.5,{},27582,1,Africa +2023-07-17,7001,1409,"[""Wireless Mouse""]",1177.3,{},283748,0,Africa +2024-07-28,7002,2250,"[""Tablet""]",3895.7,{},289898,0,Africa +2024-05-22,7003,6166,"[""Tablet""]",3794.78,"{"""": ""23%""}",20139,0,Europe +2024-07-13,7004,3258,"[""Headphones"", ""Monitor"", ""Laptop""]",523.11,"{""loyalty"": ""22%""}",274491,1,North America +2023-10-20,7005,718,"[""Keyboard"", ""Headphones"", ""Tablet""]",3806.06,{},175725,0,Africa +2024-03-13,7006,511,"[""Phone"", ""Monitor""]",3946.56,"{""seasonal"": ""27%""}",47565,1,South America +2023-07-30,7007,9459,"[""Laptop"", ""Tablet""]",4140.53,"{""promo"": ""5%""}",135263,1,South America +2024-07-02,7008,5221,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1865.21,{},206102,0,Asia +2024-11-05,7009,1203,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",135.97,"{""seasonal"": ""23%""}",76743,1,South America +2024-02-14,7010,4276,"[""Phone"", ""Monitor"", ""Charger""]",821.48,{},171362,1,North America +2023-11-20,7011,6286,"[""Keyboard"", ""Charger""]",4435.61,"{""promo"": ""10%""}",209749,0,Europe +2023-11-14,7012,8311,"[""Laptop"", ""Monitor""]",2556.19,"{""promo"": ""5%""}",55741,0,Asia +2024-06-19,7013,8158,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1170.67,{},182883,0,Africa +2023-08-02,7014,9689,"[""Wireless Mouse"", ""Laptop""]",2136.5,"{"""": ""9%""}",110268,0,Africa +2024-10-12,7015,2767,"[""Tablet"", ""Charger""]",3089.39,{},286591,1,Europe +2024-06-26,7016,4903,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2174.24,"{""promo"": ""27%""}",161804,1,Asia +2023-02-12,7017,6110,"[""Keyboard"", ""Wireless Mouse""]",4075.18,"{""seasonal"": ""18%""}",22586,1,Europe +2023-04-11,7018,4900,"[""Tablet"", ""Headphones"", ""Keyboard""]",2092.76,{},289624,0,South America +2023-03-26,7019,8895,"[""Wireless Mouse"", ""Laptop""]",2245.98,{},139699,1,Europe +2023-01-11,7020,7346,"[""Keyboard"", ""Tablet""]",1756.61,{},209234,1,Africa +2024-08-27,7021,5001,"[""Keyboard"", ""Laptop""]",116.97,"{""loyalty"": ""27%""}",30240,1,Asia +2023-01-27,7022,1010,"[""Keyboard"", ""Phone""]",2142.57,{},279577,1,North America +2023-02-18,7023,8436,"[""Charger"", ""Tablet"", ""Laptop""]",1861.9,{},239623,0,South America +2024-10-03,7024,9138,"[""Charger"", ""Headphones""]",1853.8,"{""promo"": ""7%""}",191141,0,North America +2024-10-23,7025,6389,"[""Monitor"", ""Phone"", ""Keyboard""]",1564.78,"{""loyalty"": ""19%""}",237674,0,Europe +2024-07-15,7026,7632,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1583.98,"{"""": ""15%""}",84401,0,Europe +2023-06-28,7027,1959,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4966.08,"{"""": ""23%""}",191220,1,Asia +2024-07-23,7028,9348,"[""Wireless Mouse"", ""Monitor""]",1721.45,{},186500,0,Asia +2024-06-23,7029,3473,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2948.87,{},245347,0,North America +2024-09-11,7030,9847,"[""Charger"", ""Tablet"", ""Keyboard""]",1855.98,{},172803,0,South America +2024-07-02,7031,1130,"[""Keyboard"", ""Laptop""]",1483.85,"{""promo"": ""20%""}",240549,1,South America +2024-01-31,7032,7471,"[""Tablet""]",1620.8,{},172755,1,Africa +2024-05-29,7033,511,"[""Wireless Mouse""]",3294.54,{},98344,1,Europe +2023-10-30,7034,5514,"[""Monitor"", ""Laptop""]",1337.47,{},125461,0,South America +2023-02-17,7035,1748,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",985.39,{},254328,1,North America +2023-04-19,7036,8261,"[""Keyboard""]",3412.18,{},15644,1,Asia +2024-07-26,7037,1029,"[""Headphones"", ""Monitor""]",2711.86,"{"""": ""25%""}",168369,1,Africa +2024-06-10,7038,7929,"[""Keyboard"", ""Charger"", ""Phone""]",2504.29,{},63428,1,Europe +2023-11-11,7039,6099,"[""Phone"", ""Charger"", ""Monitor""]",3043.44,{},230570,0,Asia +2024-10-11,7040,5994,"[""Monitor"", ""Keyboard"", ""Tablet""]",2339.25,{},124050,1,Asia +2024-02-14,7041,5149,"[""Laptop"", ""Headphones""]",985.25,"{""promo"": ""29%""}",190604,0,Africa +2023-11-15,7042,4001,"[""Laptop"", ""Phone""]",4736.84,"{""seasonal"": ""8%""}",181471,0,Africa +2024-06-19,7043,6943,"[""Keyboard"", ""Monitor""]",1792.86,"{""loyalty"": ""16%""}",135476,1,Africa +2024-08-05,7044,3303,"[""Tablet"", ""Charger""]",1349.87,"{""loyalty"": ""30%""}",191564,0,Asia +2024-01-28,7045,12,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3442.69,"{"""": ""22%""}",186497,1,Europe +2024-12-26,7046,797,"[""Headphones"", ""Wireless Mouse""]",4573.1,"{""promo"": ""24%""}",41435,0,Europe +2024-12-02,7047,2181,"[""Headphones""]",3768.11,"{""loyalty"": ""21%""}",218853,1,North America +2024-08-18,7048,8371,"[""Laptop""]",1019.61,"{""promo"": ""11%""}",21388,1,North America +2023-01-14,7049,692,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2605.03,"{""seasonal"": ""26%""}",223259,0,Asia +2024-05-24,7050,8587,"[""Tablet"", ""Laptop""]",3084.63,{},237648,0,South America +2023-10-24,7051,189,"[""Wireless Mouse""]",3116.08,{},5073,1,South America +2023-03-31,7052,4530,"[""Wireless Mouse"", ""Charger""]",2389.41,{},242540,1,South America +2024-09-30,7053,3014,"[""Monitor""]",3083.71,"{""promo"": ""6%""}",7409,0,North America +2023-12-25,7054,7936,"[""Charger""]",646.36,{},249808,1,Africa +2023-07-29,7055,3945,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2403.0,"{"""": ""29%""}",11321,0,North America +2024-11-04,7056,7992,"[""Charger""]",4107.56,{},32934,1,North America +2024-07-18,7057,4257,"[""Laptop""]",285.06,{},92589,0,Asia +2024-10-26,7058,6036,"[""Laptop"", ""Wireless Mouse""]",3022.02,{},86662,1,Africa +2023-02-18,7059,2001,"[""Keyboard""]",3324.65,"{"""": ""15%""}",266450,0,South America +2023-11-24,7060,4273,"[""Phone""]",4735.58,"{""promo"": ""24%""}",109449,0,South America +2023-12-05,7061,3995,"[""Headphones"", ""Tablet""]",860.76,"{"""": ""13%""}",45234,0,Africa +2023-12-29,7062,4084,"[""Wireless Mouse"", ""Headphones""]",4022.43,"{""promo"": ""19%""}",27140,1,North America +2024-08-30,7063,3195,"[""Keyboard"", ""Wireless Mouse""]",2231.26,{},208370,1,Asia +2023-04-04,7064,6779,"[""Monitor"", ""Charger"", ""Phone""]",2880.33,{},217103,1,North America +2023-12-05,7065,1229,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1271.17,{},203437,0,Asia +2024-07-06,7066,5684,"[""Charger"", ""Monitor""]",326.5,{},16059,1,Europe +2023-03-05,7067,6521,"[""Tablet"", ""Phone"", ""Keyboard""]",2123.39,"{"""": ""19%""}",79092,1,Asia +2023-03-16,7068,3442,"[""Monitor"", ""Laptop"", ""Charger""]",848.24,"{""promo"": ""18%""}",104137,1,Africa +2024-12-19,7069,6397,"[""Headphones"", ""Wireless Mouse""]",536.02,"{""loyalty"": ""27%""}",126465,0,Africa +2023-04-27,7070,1599,"[""Laptop"", ""Phone"", ""Monitor""]",465.85,"{""seasonal"": ""8%""}",187038,1,Asia +2024-03-09,7071,1772,"[""Phone"", ""Charger""]",2924.62,"{""seasonal"": ""29%""}",226625,0,South America +2023-10-26,7072,5149,"[""Monitor""]",4989.15,{},58781,0,Europe +2023-08-22,7073,5056,"[""Headphones""]",2372.15,{},116821,0,Africa +2024-03-20,7074,5593,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4873.09,{},190497,0,North America +2023-04-07,7075,400,"[""Headphones"", ""Wireless Mouse""]",4182.87,"{""promo"": ""11%""}",32071,0,North America +2023-01-12,7076,969,"[""Laptop"", ""Monitor""]",1303.76,"{""promo"": ""30%""}",57699,0,North America +2023-04-09,7077,4669,"[""Tablet""]",4892.9,"{""promo"": ""20%""}",271209,0,South America +2023-05-02,7078,1478,"[""Monitor""]",1282.12,{},132111,0,South America +2023-04-08,7079,9676,"[""Monitor"", ""Laptop""]",241.08,{},241458,1,South America +2023-12-13,7080,814,"[""Charger"", ""Keyboard""]",4181.1,{},289571,0,Africa +2024-10-19,7081,5304,"[""Keyboard""]",1928.97,{},140081,0,South America +2023-10-06,7082,6424,"[""Laptop""]",4413.73,{},67778,1,South America +2024-02-16,7083,4691,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3206.47,{},250228,0,Europe +2023-06-14,7084,4566,"[""Monitor""]",3618.13,"{"""": ""7%""}",68440,0,Asia +2023-04-10,7085,4542,"[""Laptop"", ""Headphones"", ""Phone""]",1304.89,{},80690,0,South America +2023-01-17,7086,5543,"[""Wireless Mouse""]",4898.17,"{"""": ""16%""}",148876,0,Europe +2024-08-03,7087,7865,"[""Monitor"", ""Keyboard""]",1068.18,{},66843,0,Asia +2024-07-06,7088,6220,"[""Charger"", ""Headphones"", ""Phone""]",368.26,{},166286,1,Europe +2024-06-25,7089,9394,"[""Charger"", ""Laptop""]",4908.37,{},112625,1,Asia +2023-06-16,7090,6408,"[""Charger"", ""Tablet""]",4134.59,"{""loyalty"": ""11%""}",208249,1,North America +2023-08-09,7091,1063,"[""Phone""]",4843.99,{},153432,1,South America +2024-11-16,7092,8932,"[""Phone"", ""Laptop"", ""Headphones""]",2209.14,{},29304,1,Europe +2024-10-10,7093,3797,"[""Charger""]",1735.24,{},220826,0,Asia +2023-08-10,7094,6314,"[""Tablet"", ""Phone""]",2666.97,"{""loyalty"": ""5%""}",126647,0,Africa +2023-03-01,7095,1495,"[""Tablet""]",1603.83,{},44603,1,Europe +2024-02-26,7096,9498,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3297.19,{},208975,1,South America +2023-12-13,7097,753,"[""Wireless Mouse"", ""Monitor""]",167.66,{},115329,0,North America +2024-08-14,7098,7192,"[""Keyboard""]",329.65,"{"""": ""6%""}",297551,1,North America +2024-06-11,7099,5590,"[""Laptop"", ""Tablet"", ""Charger""]",4909.63,{},167660,1,Africa +2023-07-06,7100,8063,"[""Wireless Mouse""]",3290.92,"{""promo"": ""23%""}",231985,0,Africa +2024-08-22,7101,434,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2111.93,{},25422,0,Africa +2024-01-04,7102,6116,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2808.06,{},269042,0,Africa +2023-02-25,7103,5870,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1452.8,{},216127,0,Asia +2023-04-17,7104,3737,"[""Headphones"", ""Charger"", ""Phone""]",1569.11,{},38411,0,Asia +2023-06-10,7105,4426,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4594.05,"{""seasonal"": ""13%""}",11022,1,Africa +2023-04-26,7106,3742,"[""Headphones"", ""Monitor""]",579.28,"{""promo"": ""10%""}",50107,1,Europe +2024-05-22,7107,3865,"[""Phone"", ""Headphones""]",4603.62,{},104725,1,Asia +2023-09-13,7108,3399,"[""Headphones""]",476.39,"{""seasonal"": ""18%""}",18754,1,Asia +2023-09-15,7109,9744,"[""Laptop"", ""Wireless Mouse""]",1978.93,"{""loyalty"": ""20%""}",85955,1,Asia +2023-12-13,7110,8285,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2350.16,{},147159,1,Asia +2023-12-13,7111,318,"[""Keyboard""]",1427.51,{},247604,0,South America +2023-06-03,7112,1289,"[""Monitor""]",3300.28,"{""promo"": ""13%""}",221429,0,South America +2024-03-29,7113,9755,"[""Wireless Mouse""]",2420.92,{},239771,0,North America +2023-05-27,7114,6411,"[""Headphones"", ""Monitor"", ""Phone""]",3452.77,{},142639,1,Europe +2024-02-18,7115,3090,"[""Keyboard"", ""Phone""]",3868.03,{},187670,0,North America +2023-05-04,7116,3435,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3769.96,{},48313,0,Asia +2024-11-01,7117,2705,"[""Headphones"", ""Laptop""]",1541.77,{},232168,1,Africa +2023-07-22,7118,3196,"[""Headphones""]",1771.26,"{"""": ""15%""}",185985,1,North America +2023-11-24,7119,859,"[""Keyboard""]",1183.6,"{""seasonal"": ""29%""}",254858,1,Europe +2024-12-14,7120,749,"[""Headphones"", ""Tablet""]",3565.06,"{"""": ""24%""}",266994,1,Asia +2023-11-21,7121,9955,"[""Laptop"", ""Tablet"", ""Keyboard""]",366.16,{},281031,1,Asia +2024-02-18,7122,3896,"[""Tablet"", ""Laptop"", ""Charger""]",3128.49,"{""seasonal"": ""17%""}",69557,1,South America +2024-08-07,7123,2822,"[""Laptop""]",1797.26,{},95219,1,North America +2024-12-11,7124,1946,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4721.38,"{""loyalty"": ""29%""}",211598,0,Europe +2024-06-10,7125,4382,"[""Headphones""]",1008.76,{},9117,1,South America +2024-12-28,7126,2497,"[""Phone""]",1504.25,{},179871,0,North America +2024-07-21,7127,9117,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1122.67,{},143502,0,Asia +2024-02-25,7128,865,"[""Headphones""]",2864.76,{},92235,0,Europe +2023-12-14,7129,7837,"[""Laptop"", ""Monitor"", ""Phone""]",2452.21,"{""loyalty"": ""25%""}",121188,1,Africa +2024-01-09,7130,6426,"[""Monitor"", ""Phone"", ""Laptop""]",493.6,{},257722,1,South America +2023-03-17,7131,3646,"[""Tablet"", ""Charger"", ""Monitor""]",3397.93,"{""seasonal"": ""23%""}",46868,1,Asia +2023-11-14,7132,5697,"[""Monitor""]",1976.12,{},3656,1,South America +2024-05-21,7133,145,"[""Wireless Mouse"", ""Monitor""]",4083.32,{},210307,0,South America +2023-03-08,7134,8411,"[""Monitor"", ""Wireless Mouse""]",1125.38,{},232633,1,North America +2023-09-04,7135,5778,"[""Phone"", ""Wireless Mouse""]",2380.12,{},28991,0,Africa +2023-11-16,7136,3022,"[""Phone""]",4441.6,"{""seasonal"": ""18%""}",139317,0,North America +2023-05-04,7137,5704,"[""Monitor"", ""Charger""]",3691.03,{},263330,1,North America +2023-10-21,7138,9244,"[""Laptop"", ""Monitor"", ""Tablet""]",2575.06,{},17103,1,Africa +2023-07-03,7139,3685,"[""Keyboard"", ""Monitor"", ""Charger""]",101.78,"{""promo"": ""7%""}",216446,1,South America +2024-12-26,7140,2324,"[""Monitor"", ""Laptop"", ""Headphones""]",896.53,{},167498,0,North America +2023-10-24,7141,4527,"[""Monitor""]",2085.44,{},8916,0,Europe +2023-09-16,7142,8266,"[""Tablet"", ""Monitor"", ""Keyboard""]",4357.95,"{""promo"": ""14%""}",96068,0,South America +2024-10-25,7143,1003,"[""Phone"", ""Tablet"", ""Headphones""]",3501.33,{},197808,0,South America +2024-01-16,7144,8398,"[""Phone"", ""Tablet"", ""Keyboard""]",119.96,{},125706,0,North America +2024-11-13,7145,2212,"[""Headphones"", ""Monitor"", ""Charger""]",3325.61,{},69631,1,Africa +2024-08-13,7146,6468,"[""Wireless Mouse""]",2275.78,"{""loyalty"": ""9%""}",243781,0,North America +2023-09-11,7147,858,"[""Headphones"", ""Monitor""]",4518.24,{},7756,0,North America +2023-12-29,7148,32,"[""Phone"", ""Charger"", ""Keyboard""]",4882.39,{},118607,0,Asia +2024-12-18,7149,2958,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1715.52,"{"""": ""6%""}",168687,0,Africa +2023-08-24,7150,5384,"[""Tablet"", ""Charger""]",4503.4,{},68275,1,North America +2024-09-29,7151,3405,"[""Keyboard"", ""Monitor"", ""Tablet""]",4134.18,{},255259,1,North America +2024-11-20,7152,7772,"[""Laptop""]",762.27,{},257542,1,North America +2024-11-21,7153,4200,"[""Wireless Mouse""]",3121.45,"{""promo"": ""26%""}",38845,1,Africa +2023-08-16,7154,3404,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1547.87,{},254980,1,Asia +2024-06-29,7155,1808,"[""Monitor"", ""Phone"", ""Headphones""]",4744.97,"{"""": ""14%""}",120814,1,Europe +2023-10-18,7156,3352,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4160.12,{},3848,1,North America +2023-12-07,7157,7406,"[""Laptop"", ""Phone""]",3832.3,"{""seasonal"": ""28%""}",243076,1,Europe +2024-08-16,7158,3898,"[""Wireless Mouse""]",4152.04,"{""promo"": ""26%""}",79687,0,North America +2023-03-25,7159,5771,"[""Headphones"", ""Keyboard""]",1371.44,"{""promo"": ""18%""}",196469,1,North America +2023-02-11,7160,5655,"[""Monitor"", ""Charger""]",1525.68,{},191604,1,Africa +2023-05-09,7161,7543,"[""Wireless Mouse""]",1874.87,"{""promo"": ""28%""}",89086,0,Europe +2023-10-16,7162,4168,"[""Phone"", ""Charger"", ""Keyboard""]",4707.1,"{""loyalty"": ""9%""}",108794,1,Europe +2023-02-12,7163,3701,"[""Tablet""]",206.46,{},253988,0,Africa +2023-06-12,7164,6227,"[""Headphones""]",1417.85,{},18523,1,North America +2024-05-25,7165,3519,"[""Keyboard"", ""Phone""]",1698.03,"{""promo"": ""8%""}",60607,0,Europe +2023-10-22,7166,3424,"[""Monitor""]",1327.16,{},234911,0,Asia +2023-09-20,7167,8151,"[""Keyboard"", ""Wireless Mouse""]",1993.4,{},118794,1,South America +2024-08-10,7168,1431,"[""Headphones"", ""Charger""]",781.95,"{"""": ""18%""}",8658,0,Europe +2023-04-24,7169,9327,"[""Headphones"", ""Charger"", ""Laptop""]",1482.12,"{""seasonal"": ""29%""}",101787,1,South America +2023-06-28,7170,3347,"[""Wireless Mouse""]",1859.4,"{""promo"": ""14%""}",175418,1,Europe +2023-02-11,7171,7257,"[""Tablet""]",3385.32,{},204651,0,North America +2023-03-24,7172,4141,"[""Laptop"", ""Wireless Mouse""]",2538.62,{},32270,0,Europe +2024-01-30,7173,7172,"[""Tablet"", ""Charger""]",2250.51,{},92233,0,Africa +2024-11-20,7174,9673,"[""Laptop""]",3257.83,{},199778,0,North America +2024-05-05,7175,6801,"[""Headphones"", ""Tablet""]",1239.98,{},85604,1,Europe +2024-09-14,7176,5751,"[""Wireless Mouse""]",382.41,"{""loyalty"": ""26%""}",12696,0,South America +2024-06-29,7177,9339,"[""Headphones""]",2046.32,"{""promo"": ""18%""}",166640,1,South America +2023-02-07,7178,6262,"[""Charger""]",60.99,"{""loyalty"": ""11%""}",155722,0,Asia +2024-02-06,7179,3699,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4029.7,"{""promo"": ""25%""}",253284,1,Asia +2024-12-08,7180,1816,"[""Phone"", ""Charger""]",3398.92,"{""loyalty"": ""27%""}",182010,0,Africa +2024-05-20,7181,2509,"[""Monitor"", ""Laptop""]",2681.34,{},179718,1,Africa +2023-12-07,7182,2985,"[""Laptop"", ""Phone"", ""Keyboard""]",4989.76,{},111980,0,South America +2024-11-17,7183,8011,"[""Monitor"", ""Headphones""]",3363.54,"{""promo"": ""16%""}",193870,0,Europe +2023-07-02,7184,2696,"[""Keyboard"", ""Charger"", ""Phone""]",2554.47,{},66794,0,South America +2024-01-27,7185,5188,"[""Charger""]",586.53,"{""promo"": ""20%""}",243649,1,Europe +2024-09-04,7186,596,"[""Keyboard""]",100.48,"{""promo"": ""19%""}",180886,0,Asia +2024-04-04,7187,8546,"[""Monitor"", ""Headphones""]",4595.47,{},138010,1,Europe +2024-02-22,7188,4793,"[""Wireless Mouse"", ""Monitor""]",3799.69,{},167816,0,North America +2023-01-07,7189,1658,"[""Phone""]",1952.41,"{""promo"": ""16%""}",118020,1,Europe +2023-01-01,7190,7359,"[""Charger"", ""Keyboard"", ""Tablet""]",2847.26,"{"""": ""12%""}",191268,1,South America +2023-12-29,7191,7044,"[""Monitor"", ""Phone"", ""Headphones""]",1629.19,"{"""": ""22%""}",244221,1,North America +2024-07-31,7192,2443,"[""Charger"", ""Tablet"", ""Laptop""]",1382.85,"{""seasonal"": ""28%""}",223247,0,South America +2024-01-04,7193,267,"[""Keyboard"", ""Headphones""]",4073.09,"{""seasonal"": ""22%""}",158455,0,South America +2024-11-09,7194,1580,"[""Charger"", ""Laptop""]",4574.29,"{""loyalty"": ""12%""}",246741,1,Asia +2024-01-07,7195,4512,"[""Phone""]",4324.93,"{""promo"": ""28%""}",50628,0,Europe +2023-05-31,7196,1254,"[""Charger"", ""Headphones"", ""Phone""]",3403.88,"{""promo"": ""11%""}",295982,0,South America +2023-03-11,7197,4930,"[""Headphones""]",3699.14,{},268459,0,Africa +2024-03-11,7198,7405,"[""Headphones"", ""Laptop""]",3766.19,"{"""": ""19%""}",191531,0,South America +2024-04-02,7199,3809,"[""Headphones"", ""Monitor"", ""Laptop""]",2016.12,"{""loyalty"": ""19%""}",260189,0,Europe +2024-09-17,7200,6829,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",274.83,"{"""": ""19%""}",229717,1,North America +2023-07-06,7201,31,"[""Charger""]",533.94,{},225226,1,South America +2023-02-24,7202,311,"[""Charger"", ""Laptop"", ""Monitor""]",3714.16,{},109343,1,Europe +2023-10-11,7203,298,"[""Keyboard""]",4136.6,{},121548,1,Africa +2023-05-09,7204,2044,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2093.82,"{""promo"": ""10%""}",213056,1,South America +2024-01-16,7205,8504,"[""Charger"", ""Phone"", ""Laptop""]",833.01,{},22985,1,Asia +2023-03-24,7206,3330,"[""Monitor"", ""Wireless Mouse""]",1830.86,{},111869,0,Africa +2023-10-22,7207,7835,"[""Wireless Mouse""]",3551.85,{},13466,1,Asia +2024-05-20,7208,2739,"[""Laptop""]",452.02,"{""seasonal"": ""25%""}",181102,0,Asia +2024-02-18,7209,5894,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1899.89,"{""loyalty"": ""19%""}",108546,1,North America +2023-10-17,7210,9560,"[""Laptop"", ""Charger"", ""Monitor""]",3016.48,{},36228,0,South America +2023-01-25,7211,494,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4857.4,{},153730,0,North America +2024-04-19,7212,1965,"[""Phone"", ""Tablet"", ""Charger""]",189.4,{},212866,0,Africa +2023-04-18,7213,2057,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4019.6,"{""promo"": ""21%""}",10053,0,Africa +2023-10-05,7214,4797,"[""Monitor"", ""Tablet""]",353.41,"{""loyalty"": ""11%""}",224433,1,North America +2023-12-23,7215,9635,"[""Charger"", ""Headphones"", ""Tablet""]",2799.86,"{"""": ""22%""}",30556,1,Europe +2023-08-20,7216,4188,"[""Tablet"", ""Charger""]",3370.71,{},224525,0,Europe +2024-01-28,7217,8668,"[""Keyboard""]",3492.37,"{""seasonal"": ""24%""}",50459,1,North America +2024-03-17,7218,7755,"[""Laptop"", ""Tablet"", ""Charger""]",2950.13,"{"""": ""20%""}",141365,0,Europe +2024-07-20,7219,8611,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2296.63,"{""seasonal"": ""27%""}",293932,1,South America +2023-08-27,7220,8002,"[""Laptop""]",2064.41,{},268969,1,Europe +2023-06-07,7221,9287,"[""Tablet"", ""Laptop""]",3948.25,{},269446,1,Asia +2024-07-31,7222,8959,"[""Charger"", ""Phone"", ""Keyboard""]",1528.28,{},13292,0,Africa +2023-03-04,7223,9749,"[""Headphones"", ""Keyboard""]",914.01,{},164974,1,North America +2023-08-20,7224,8475,"[""Phone"", ""Keyboard"", ""Laptop""]",4434.72,{},260219,0,Asia +2023-02-19,7225,7203,"[""Laptop"", ""Tablet""]",4497.24,{},219442,0,Asia +2024-10-12,7226,4122,"[""Headphones""]",4812.57,"{"""": ""27%""}",97349,0,South America +2024-01-14,7227,9218,"[""Charger"", ""Monitor"", ""Keyboard""]",2997.42,{},61110,1,Asia +2023-02-28,7228,6719,"[""Phone"", ""Headphones""]",4509.65,"{""seasonal"": ""13%""}",204698,1,Asia +2024-01-22,7229,8472,"[""Monitor"", ""Laptop"", ""Charger""]",1497.66,"{""seasonal"": ""22%""}",89200,0,South America +2024-04-26,7230,2267,"[""Headphones"", ""Keyboard""]",2204.94,"{""seasonal"": ""24%""}",287442,0,North America +2024-03-27,7231,2134,"[""Monitor""]",3232.35,{},7757,1,Asia +2024-04-26,7232,8213,"[""Keyboard"", ""Headphones"", ""Phone""]",928.49,{},78858,1,Asia +2023-02-02,7233,8225,"[""Phone""]",738.12,{},286822,1,Europe +2024-11-21,7234,658,"[""Keyboard"", ""Tablet"", ""Charger""]",4645.15,"{""promo"": ""15%""}",30573,1,Africa +2023-07-19,7235,4172,"[""Monitor""]",4195.19,{},236249,0,Europe +2024-05-19,7236,61,"[""Wireless Mouse""]",1866.08,"{""seasonal"": ""6%""}",157329,1,South America +2024-06-03,7237,9693,"[""Monitor"", ""Phone"", ""Laptop""]",2019.01,{},12818,1,North America +2023-09-19,7238,1827,"[""Headphones"", ""Tablet""]",848.86,"{"""": ""13%""}",179025,1,Europe +2024-02-12,7239,1989,"[""Tablet""]",970.77,{},288422,0,Europe +2023-09-13,7240,782,"[""Keyboard""]",788.86,"{""promo"": ""12%""}",286296,1,North America +2023-05-07,7241,5838,"[""Phone""]",1802.37,{},47720,1,Europe +2024-12-31,7242,8059,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2153.22,"{""loyalty"": ""18%""}",120444,0,Asia +2024-08-26,7243,1008,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4897.52,"{""promo"": ""19%""}",15660,1,North America +2024-10-25,7244,3215,"[""Wireless Mouse""]",885.53,"{"""": ""11%""}",71869,0,South America +2024-01-22,7245,3197,"[""Phone""]",2420.91,{},77805,1,Asia +2023-11-27,7246,7046,"[""Tablet""]",1827.58,{},116089,1,Europe +2023-09-10,7247,4228,"[""Keyboard"", ""Phone"", ""Laptop""]",4817.88,"{""seasonal"": ""12%""}",63181,1,Europe +2024-06-22,7248,2110,"[""Laptop"", ""Tablet"", ""Charger""]",572.3,{},258432,0,Africa +2024-02-04,7249,636,"[""Wireless Mouse""]",4298.82,{},272435,0,North America +2023-03-28,7250,2091,"[""Monitor"", ""Keyboard""]",3570.34,{},264981,0,Asia +2023-09-26,7251,966,"[""Phone"", ""Keyboard"", ""Tablet""]",709.86,"{""loyalty"": ""10%""}",50429,0,Asia +2023-08-28,7252,6280,"[""Laptop""]",3455.05,{},133904,1,Africa +2024-01-03,7253,5162,"[""Phone"", ""Charger"", ""Laptop""]",3067.56,{},256131,1,North America +2024-09-08,7254,4286,"[""Phone"", ""Tablet""]",2865.84,{},172705,0,Asia +2023-04-29,7255,1812,"[""Keyboard"", ""Phone""]",3572.86,"{""promo"": ""12%""}",297769,1,North America +2023-10-26,7256,992,"[""Phone""]",4406.99,"{""seasonal"": ""26%""}",146489,0,Asia +2024-12-24,7257,996,"[""Laptop"", ""Charger""]",4726.7,"{""promo"": ""26%""}",198580,1,North America +2023-04-14,7258,2603,"[""Tablet"", ""Monitor""]",1108.14,"{""seasonal"": ""14%""}",13671,0,Africa +2023-12-10,7259,3845,"[""Laptop""]",3771.42,{},294371,0,Europe +2024-06-23,7260,1372,"[""Charger""]",3324.82,"{""seasonal"": ""29%""}",85919,0,Europe +2023-04-11,7261,3655,"[""Laptop"", ""Keyboard""]",419.63,"{""promo"": ""25%""}",4867,0,North America +2023-08-11,7262,8311,"[""Wireless Mouse""]",926.66,{},178153,0,South America +2023-08-26,7263,9717,"[""Headphones"", ""Monitor""]",1272.05,"{"""": ""18%""}",143038,1,North America +2023-07-13,7264,6697,"[""Keyboard"", ""Headphones""]",341.49,"{""loyalty"": ""23%""}",47844,1,Asia +2024-08-07,7265,1450,"[""Keyboard""]",3484.07,{},116654,0,Europe +2024-04-03,7266,6729,"[""Headphones"", ""Keyboard""]",1188.24,"{""seasonal"": ""26%""}",163215,0,Asia +2023-05-19,7267,575,"[""Monitor"", ""Keyboard"", ""Tablet""]",3029.98,"{""seasonal"": ""21%""}",4379,1,Africa +2024-10-08,7268,4505,"[""Tablet"", ""Charger"", ""Keyboard""]",2337.61,{},185206,1,Europe +2024-02-19,7269,1990,"[""Keyboard"", ""Tablet"", ""Charger""]",4747.12,{},159999,1,Asia +2024-07-28,7270,9874,"[""Monitor""]",1198.86,"{""promo"": ""6%""}",280884,1,South America +2023-02-20,7271,1187,"[""Tablet"", ""Headphones"", ""Keyboard""]",763.25,{},285727,0,Africa +2024-06-30,7272,4041,"[""Tablet"", ""Headphones""]",564.37,{},120574,0,Europe +2024-03-28,7273,859,"[""Tablet"", ""Charger""]",541.21,"{""loyalty"": ""9%""}",45743,1,North America +2023-10-16,7274,3163,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3252.87,{},14064,0,Europe +2023-04-17,7275,3739,"[""Charger"", ""Tablet"", ""Phone""]",771.06,{},70390,0,Asia +2024-10-12,7276,5972,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4288.92,"{""promo"": ""26%""}",60875,0,Europe +2024-02-15,7277,7127,"[""Monitor""]",2564.79,"{""promo"": ""17%""}",176894,1,Asia +2023-09-17,7278,4024,"[""Charger"", ""Monitor""]",1800.96,{},280492,0,Europe +2024-10-18,7279,5623,"[""Keyboard"", ""Headphones""]",3664.42,{},18445,0,North America +2023-05-05,7280,737,"[""Tablet""]",1141.95,{},280263,1,Africa +2024-07-09,7281,73,"[""Charger"", ""Phone"", ""Keyboard""]",1937.8,{},280279,1,North America +2023-04-20,7282,1772,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3362.42,{},66554,0,South America +2023-08-18,7283,9725,"[""Laptop"", ""Tablet""]",4514.12,{},242484,0,North America +2024-06-29,7284,9680,"[""Phone"", ""Tablet"", ""Charger""]",3563.2,"{"""": ""23%""}",270601,0,Africa +2023-07-21,7285,1767,"[""Headphones""]",2242.21,"{"""": ""7%""}",142034,1,Asia +2024-11-04,7286,1726,"[""Phone""]",2969.01,{},208883,0,Europe +2023-12-12,7287,3265,"[""Phone"", ""Tablet""]",3360.35,"{""loyalty"": ""28%""}",209653,0,South America +2023-09-15,7288,6649,"[""Phone"", ""Laptop""]",2808.75,{},294219,0,Africa +2023-06-24,7289,4133,"[""Laptop"", ""Charger"", ""Phone""]",3031.2,"{""seasonal"": ""25%""}",127342,1,Europe +2023-10-20,7290,4885,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1414.56,{},108059,1,Asia +2024-01-12,7291,2198,"[""Headphones""]",3788.63,"{""loyalty"": ""18%""}",55492,0,South America +2024-10-30,7292,5100,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1051.51,"{""promo"": ""14%""}",52216,1,Europe +2023-09-06,7293,7109,"[""Charger""]",131.21,{},73163,0,Africa +2023-04-02,7294,7047,"[""Tablet"", ""Keyboard"", ""Monitor""]",3190.66,"{""loyalty"": ""23%""}",188633,0,Africa +2024-10-22,7295,7285,"[""Laptop"", ""Headphones""]",1214.3,{},37585,0,Europe +2023-01-22,7296,8022,"[""Charger"", ""Laptop"", ""Headphones""]",2851.74,"{""loyalty"": ""26%""}",245929,1,South America +2023-05-31,7297,5695,"[""Keyboard"", ""Wireless Mouse""]",1626.87,"{"""": ""18%""}",90491,1,North America +2023-03-18,7298,7228,"[""Phone"", ""Tablet""]",1280.21,{},120559,1,South America +2023-07-26,7299,9576,"[""Headphones""]",1955.57,"{""promo"": ""6%""}",231879,0,Asia +2024-11-27,7300,736,"[""Phone"", ""Charger"", ""Laptop""]",349.99,{},54721,1,North America +2024-04-01,7301,6767,"[""Laptop""]",4245.32,"{""promo"": ""13%""}",187043,1,Asia +2024-05-26,7302,9166,"[""Wireless Mouse""]",3784.72,{},214172,1,Europe +2023-06-19,7303,9921,"[""Phone"", ""Keyboard""]",1529.96,{},119291,1,South America +2023-10-30,7304,7142,"[""Keyboard""]",575.02,{},255257,0,Africa +2024-08-29,7305,9812,"[""Tablet""]",4011.91,{},148668,1,Asia +2023-12-17,7306,5836,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2138.06,"{""promo"": ""17%""}",165431,1,Europe +2024-07-05,7307,2424,"[""Wireless Mouse""]",212.25,{},191394,1,South America +2024-01-23,7308,2398,"[""Tablet""]",1197.68,"{""loyalty"": ""28%""}",90574,0,North America +2023-09-27,7309,4607,"[""Wireless Mouse"", ""Keyboard""]",2398.67,"{""seasonal"": ""26%""}",286763,1,Europe +2024-07-02,7310,9703,"[""Headphones""]",2572.13,{},188431,0,Asia +2023-02-07,7311,4425,"[""Monitor""]",3979.28,{},162908,0,Europe +2023-12-05,7312,8606,"[""Laptop""]",1608.13,{},232286,1,Asia +2023-05-01,7313,3853,"[""Keyboard"", ""Tablet""]",1871.33,{},218860,1,South America +2024-09-13,7314,3561,"[""Charger"", ""Laptop"", ""Monitor""]",457.51,"{"""": ""28%""}",34954,0,North America +2023-02-01,7315,2043,"[""Charger""]",3889.49,{},191036,0,North America +2023-12-09,7316,678,"[""Headphones"", ""Keyboard"", ""Charger""]",146.95,{},76322,0,Europe +2023-03-18,7317,481,"[""Headphones""]",3127.53,{},273211,1,Africa +2024-07-24,7318,6555,"[""Wireless Mouse"", ""Tablet""]",121.59,"{"""": ""15%""}",17825,0,Asia +2023-04-13,7319,8378,"[""Laptop""]",57.06,{},93140,1,Europe +2024-10-30,7320,125,"[""Phone"", ""Headphones""]",1498.82,{},1743,0,Europe +2023-09-28,7321,55,"[""Wireless Mouse"", ""Headphones""]",4687.65,{},291822,1,North America +2024-12-14,7322,6577,"[""Tablet"", ""Laptop"", ""Charger""]",817.4,"{""seasonal"": ""14%""}",72310,0,Asia +2024-10-26,7323,7139,"[""Headphones""]",693.98,"{"""": ""30%""}",184584,1,Europe +2024-07-01,7324,5839,"[""Wireless Mouse"", ""Phone""]",3343.05,{},228498,0,South America +2023-08-18,7325,7390,"[""Keyboard"", ""Phone"", ""Charger""]",3935.85,{},288137,1,Africa +2024-08-22,7326,3378,"[""Monitor""]",779.1,"{""seasonal"": ""18%""}",212050,1,Europe +2024-09-11,7327,2926,"[""Tablet""]",4927.84,{},15134,1,Europe +2023-01-12,7328,1429,"[""Monitor""]",2762.28,"{""seasonal"": ""23%""}",107290,1,Asia +2024-02-29,7329,8165,"[""Charger"", ""Monitor"", ""Laptop""]",2193.74,{},144592,1,South America +2024-04-18,7330,751,"[""Headphones"", ""Laptop""]",3784.22,"{""seasonal"": ""22%""}",146602,0,Asia +2024-04-28,7331,1088,"[""Charger""]",2761.11,"{""seasonal"": ""11%""}",35033,0,North America +2023-06-05,7332,8637,"[""Headphones""]",2167.74,"{""promo"": ""18%""}",173814,0,Asia +2024-05-12,7333,5079,"[""Tablet""]",2241.1,"{""seasonal"": ""19%""}",78476,1,Europe +2024-11-15,7334,5684,"[""Charger"", ""Keyboard""]",2400.37,"{""seasonal"": ""18%""}",158928,1,Asia +2023-06-24,7335,1426,"[""Phone""]",1648.06,"{"""": ""8%""}",136631,0,Europe +2023-05-31,7336,1947,"[""Laptop"", ""Tablet"", ""Headphones""]",3949.27,"{""seasonal"": ""11%""}",72375,0,Europe +2024-03-19,7337,5371,"[""Headphones"", ""Phone""]",4766.49,"{""promo"": ""27%""}",8895,1,Asia +2024-08-11,7338,2467,"[""Monitor"", ""Phone""]",419.43,"{""seasonal"": ""25%""}",250449,1,South America +2024-10-29,7339,3812,"[""Wireless Mouse"", ""Headphones""]",1208.08,{},106556,0,Africa +2024-07-29,7340,5639,"[""Monitor"", ""Keyboard""]",2215.84,"{""loyalty"": ""20%""}",49620,1,Asia +2023-04-15,7341,465,"[""Laptop"", ""Keyboard""]",4152.74,"{""seasonal"": ""15%""}",72771,1,Africa +2024-12-21,7342,6415,"[""Laptop""]",3312.48,{},204235,1,South America +2024-11-24,7343,2702,"[""Headphones"", ""Charger"", ""Monitor""]",4723.77,{},253753,0,Africa +2023-04-05,7344,9284,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1173.98,"{""seasonal"": ""30%""}",8914,1,North America +2023-11-22,7345,9610,"[""Phone""]",4491.21,"{"""": ""21%""}",199494,0,Europe +2024-03-13,7346,6409,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2820.34,{},260177,1,South America +2024-01-19,7347,7240,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4291.85,{},202271,0,South America +2023-03-09,7348,860,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4847.55,{},109826,1,South America +2024-10-04,7349,2303,"[""Laptop"", ""Charger""]",2709.95,"{""seasonal"": ""21%""}",260133,1,Asia +2024-10-28,7350,4111,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3306.56,"{""promo"": ""28%""}",293216,1,North America +2023-03-06,7351,9939,"[""Laptop""]",2330.6,"{""promo"": ""11%""}",137668,0,Europe +2024-09-04,7352,4908,"[""Keyboard"", ""Headphones"", ""Laptop""]",1859.11,"{"""": ""19%""}",199372,1,North America +2024-12-25,7353,8359,"[""Phone"", ""Monitor""]",2507.44,"{""loyalty"": ""21%""}",184969,1,South America +2024-03-17,7354,1435,"[""Laptop""]",4748.96,"{""seasonal"": ""10%""}",102485,0,Asia +2024-06-16,7355,5341,"[""Monitor"", ""Wireless Mouse""]",2610.29,"{""promo"": ""27%""}",185462,1,South America +2023-11-19,7356,8960,"[""Headphones"", ""Charger""]",695.56,"{""seasonal"": ""30%""}",154128,1,Asia +2023-05-22,7357,5077,"[""Charger"", ""Monitor""]",2784.39,{},186233,1,Europe +2024-06-04,7358,3544,"[""Tablet"", ""Phone"", ""Charger""]",952.36,"{""seasonal"": ""22%""}",92144,1,North America +2024-08-11,7359,3713,"[""Monitor"", ""Phone""]",4466.91,{},263422,1,North America +2023-11-05,7360,3397,"[""Laptop"", ""Phone""]",4529.69,{},284467,1,Africa +2023-04-20,7361,3713,"[""Monitor"", ""Laptop"", ""Headphones""]",3249.07,{},108545,0,Europe +2024-11-19,7362,6508,"[""Tablet""]",1910.91,"{""promo"": ""25%""}",255530,0,North America +2024-03-19,7363,3791,"[""Charger"", ""Monitor"", ""Tablet""]",2708.11,{},141249,0,Europe +2024-09-28,7364,3823,"[""Phone"", ""Headphones""]",911.62,{},187714,1,Africa +2023-07-01,7365,5818,"[""Charger"", ""Keyboard""]",4379.11,{},197979,1,Africa +2024-12-21,7366,397,"[""Headphones"", ""Tablet""]",3029.96,"{""loyalty"": ""29%""}",224874,1,Asia +2024-10-15,7367,5916,"[""Tablet""]",2421.47,"{""loyalty"": ""21%""}",131301,1,Asia +2024-06-08,7368,6392,"[""Headphones"", ""Phone""]",1437.79,{},124789,1,Africa +2023-12-01,7369,2487,"[""Wireless Mouse"", ""Phone""]",3887.69,{},127654,0,North America +2024-08-06,7370,5085,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",952.26,{},254225,0,Europe +2024-01-14,7371,5799,"[""Tablet"", ""Phone""]",4739.26,{},271946,0,Africa +2024-12-19,7372,2548,"[""Charger""]",1552.96,{},30258,1,Asia +2024-05-14,7373,4609,"[""Wireless Mouse"", ""Laptop""]",477.37,"{""seasonal"": ""26%""}",54932,0,North America +2024-07-19,7374,636,"[""Charger"", ""Phone""]",2473.61,{},179039,0,Africa +2023-11-19,7375,6144,"[""Tablet"", ""Charger""]",2981.39,{},166554,0,Europe +2024-01-07,7376,8015,"[""Charger"", ""Keyboard""]",1508.97,{},272572,0,South America +2023-09-20,7377,3678,"[""Tablet""]",1136.63,{},75904,0,Asia +2023-10-08,7378,4482,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3174.12,"{""promo"": ""29%""}",276508,0,South America +2023-09-10,7379,577,"[""Charger""]",1662.99,{},203849,1,Africa +2023-03-17,7380,527,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4832.95,{},184042,0,Asia +2023-12-15,7381,993,"[""Monitor""]",2077.98,"{""loyalty"": ""20%""}",270455,1,Asia +2024-02-16,7382,4290,"[""Tablet"", ""Phone""]",3073.66,"{""seasonal"": ""26%""}",68824,1,Asia +2023-01-29,7383,4219,"[""Phone"", ""Headphones"", ""Monitor""]",4049.39,{},200978,0,North America +2023-04-06,7384,1605,"[""Charger""]",617.32,"{""loyalty"": ""9%""}",102915,1,Asia +2023-07-28,7385,2507,"[""Monitor"", ""Wireless Mouse""]",1437.26,"{""seasonal"": ""20%""}",190515,1,Asia +2024-05-10,7386,2338,"[""Laptop"", ""Charger"", ""Keyboard""]",3671.01,"{""seasonal"": ""18%""}",19166,1,Asia +2024-09-03,7387,9706,"[""Monitor"", ""Charger"", ""Phone""]",2105.02,{},151589,0,North America +2023-07-24,7388,6173,"[""Tablet"", ""Laptop"", ""Keyboard""]",3109.7,"{""promo"": ""16%""}",48901,0,North America +2024-03-27,7389,6148,"[""Headphones"", ""Charger"", ""Keyboard""]",4017.55,{},127535,0,South America +2023-12-19,7390,5505,"[""Headphones"", ""Wireless Mouse""]",3331.54,{},221165,1,Asia +2024-08-23,7391,8937,"[""Laptop"", ""Charger"", ""Tablet""]",2457.17,{},230223,0,Europe +2023-05-14,7392,2038,"[""Wireless Mouse""]",3299.11,"{""seasonal"": ""30%""}",254629,1,Asia +2023-12-17,7393,8611,"[""Monitor""]",1867.21,"{""promo"": ""6%""}",109944,1,Europe +2024-05-25,7394,7384,"[""Charger"", ""Keyboard"", ""Monitor""]",1808.89,{},160139,1,Europe +2023-01-29,7395,1206,"[""Laptop"", ""Keyboard""]",2534.67,"{""loyalty"": ""28%""}",238617,1,Asia +2024-02-13,7396,5877,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4101.63,{},185905,1,South America +2024-10-26,7397,2591,"[""Tablet"", ""Monitor"", ""Headphones""]",3576.16,"{""promo"": ""21%""}",189312,1,South America +2024-05-05,7398,2305,"[""Laptop"", ""Charger"", ""Tablet""]",1453.6,"{"""": ""23%""}",37347,0,Africa +2023-02-25,7399,8241,"[""Tablet"", ""Laptop""]",4681.24,"{""promo"": ""11%""}",292850,0,Europe +2024-12-29,7400,5338,"[""Headphones"", ""Phone"", ""Charger""]",3865.66,"{"""": ""8%""}",221749,1,South America +2024-07-22,7401,8077,"[""Headphones""]",4212.51,{},298769,1,Asia +2023-03-05,7402,1792,"[""Keyboard"", ""Tablet""]",3082.37,{},56421,1,Africa +2024-07-08,7403,6171,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2099.87,{},180791,0,South America +2023-04-27,7404,7512,"[""Phone"", ""Tablet"", ""Laptop""]",4120.81,{},68637,1,South America +2024-10-15,7405,1030,"[""Laptop"", ""Monitor"", ""Headphones""]",3725.11,{},219325,0,Africa +2024-05-20,7406,7198,"[""Headphones"", ""Phone""]",629.79,"{""promo"": ""10%""}",8406,0,Asia +2023-07-19,7407,3541,"[""Keyboard""]",2510.27,{},78728,0,Africa +2024-02-27,7408,8207,"[""Headphones""]",1358.06,"{""promo"": ""19%""}",268703,0,South America +2024-05-17,7409,5016,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2390.24,{},65115,0,Asia +2023-09-09,7410,4016,"[""Laptop"", ""Headphones"", ""Monitor""]",603.07,"{""promo"": ""7%""}",225972,1,Asia +2024-02-24,7411,2013,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",543.13,"{"""": ""16%""}",123894,0,South America +2023-07-11,7412,4453,"[""Monitor"", ""Phone""]",673.18,"{"""": ""19%""}",233108,1,North America +2024-12-10,7413,6968,"[""Phone"", ""Laptop"", ""Monitor""]",4331.12,{},261054,1,Africa +2023-10-17,7414,4480,"[""Monitor""]",4270.25,{},217184,0,Europe +2024-04-19,7415,7178,"[""Phone"", ""Tablet""]",4489.26,{},44310,1,Africa +2024-07-23,7416,1730,"[""Charger"", ""Phone"", ""Monitor""]",3358.86,"{""loyalty"": ""26%""}",106631,1,Africa +2024-12-24,7417,5684,"[""Charger""]",144.9,{},168530,1,Europe +2024-10-26,7418,9527,"[""Charger""]",4067.39,{},106335,1,Africa +2024-08-02,7419,8063,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",101.69,{},41343,1,Asia +2023-12-24,7420,337,"[""Tablet"", ""Headphones"", ""Charger""]",3615.21,"{""seasonal"": ""12%""}",174491,0,Asia +2023-10-13,7421,7959,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3347.46,"{""promo"": ""30%""}",184560,1,Asia +2023-04-12,7422,1413,"[""Keyboard"", ""Headphones"", ""Tablet""]",2734.78,{},85348,1,Europe +2023-12-15,7423,6564,"[""Laptop"", ""Tablet"", ""Monitor""]",935.55,"{""seasonal"": ""25%""}",210687,1,Europe +2024-05-01,7424,4007,"[""Headphones"", ""Monitor"", ""Laptop""]",371.16,{},68995,1,Europe +2023-08-23,7425,6752,"[""Headphones"", ""Keyboard"", ""Laptop""]",1294.25,{},165056,0,Asia +2024-03-02,7426,5275,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2879.86,"{""seasonal"": ""19%""}",49653,0,North America +2023-01-26,7427,4312,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2414.04,{},172946,1,South America +2024-04-06,7428,2101,"[""Monitor"", ""Charger""]",4663.45,{},47750,0,South America +2024-06-13,7429,1937,"[""Keyboard""]",916.59,{},120465,0,Asia +2024-08-03,7430,1098,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",663.02,{},168607,0,Europe +2023-02-22,7431,5202,"[""Laptop"", ""Charger"", ""Phone""]",2127.24,{},36595,1,North America +2024-12-18,7432,7104,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3187.3,{},35459,0,Asia +2024-01-28,7433,1650,"[""Phone""]",3332.54,{},283334,1,Africa +2023-12-23,7434,8571,"[""Phone"", ""Headphones""]",4734.36,"{"""": ""18%""}",61686,1,Europe +2023-10-08,7435,8175,"[""Charger""]",2283.04,{},169477,0,South America +2024-06-22,7436,2866,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",193.94,{},236319,0,Africa +2023-09-08,7437,1216,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1111.0,"{""loyalty"": ""15%""}",162396,0,Europe +2024-06-10,7438,1353,"[""Monitor"", ""Headphones"", ""Tablet""]",200.98,"{"""": ""6%""}",192800,0,Africa +2023-07-28,7439,709,"[""Wireless Mouse""]",4734.23,"{""promo"": ""5%""}",180289,1,Europe +2023-04-28,7440,7640,"[""Headphones"", ""Tablet"", ""Keyboard""]",152.95,{},113292,1,North America +2024-12-02,7441,3887,"[""Tablet""]",3442.07,"{""seasonal"": ""26%""}",187587,0,Africa +2023-12-18,7442,4683,"[""Keyboard"", ""Phone"", ""Laptop""]",3116.46,{},86064,0,Africa +2023-01-12,7443,6136,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",135.26,{},107414,0,South America +2024-03-07,7444,4889,"[""Phone""]",4344.32,{},170608,0,North America +2024-06-19,7445,8536,"[""Phone""]",3538.23,"{"""": ""16%""}",91054,1,Europe +2023-04-18,7446,1019,"[""Laptop"", ""Monitor""]",3622.45,"{""promo"": ""28%""}",188837,1,Europe +2024-01-07,7447,2563,"[""Tablet"", ""Headphones"", ""Monitor""]",1282.73,{},133116,0,Africa +2024-09-11,7448,3757,"[""Tablet""]",1769.84,"{""loyalty"": ""16%""}",149133,0,Asia +2023-10-29,7449,8014,"[""Monitor"", ""Phone"", ""Headphones""]",1841.54,{},285272,0,Europe +2023-03-22,7450,2971,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4311.05,{},218457,0,Europe +2023-01-09,7451,7156,"[""Monitor""]",3112.69,{},98306,1,Africa +2023-01-08,7452,8424,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3998.25,{},28123,0,South America +2024-03-22,7453,3480,"[""Monitor""]",4849.45,"{""promo"": ""15%""}",32167,1,Europe +2023-11-01,7454,8247,"[""Keyboard"", ""Laptop"", ""Tablet""]",3865.97,{},87519,1,North America +2024-02-27,7455,5242,"[""Wireless Mouse"", ""Monitor""]",1250.38,"{""seasonal"": ""10%""}",178947,0,Asia +2023-06-08,7456,9482,"[""Charger"", ""Laptop"", ""Keyboard""]",1118.38,{},243873,0,North America +2024-09-23,7457,1112,"[""Headphones"", ""Phone""]",4689.73,"{"""": ""6%""}",257166,1,Europe +2023-06-25,7458,8927,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4615.28,{},87081,0,North America +2023-12-03,7459,1125,"[""Headphones"", ""Phone""]",2604.62,{},49774,0,Africa +2024-07-26,7460,4192,"[""Phone""]",863.92,{},68910,1,Europe +2024-03-10,7461,7895,"[""Keyboard""]",350.6,"{""loyalty"": ""7%""}",117905,0,Asia +2024-11-09,7462,3614,"[""Tablet"", ""Laptop""]",2637.19,"{"""": ""7%""}",96175,0,Africa +2024-08-03,7463,3216,"[""Keyboard""]",792.97,"{""loyalty"": ""19%""}",41656,1,North America +2023-01-19,7464,122,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",352.59,"{"""": ""30%""}",161005,1,South America +2024-11-22,7465,9137,"[""Keyboard"", ""Headphones""]",4737.59,"{""promo"": ""25%""}",67877,1,Asia +2023-12-27,7466,8098,"[""Phone"", ""Monitor""]",3870.74,{},51301,0,Europe +2023-12-02,7467,6036,"[""Tablet"", ""Monitor"", ""Headphones""]",127.09,{},254005,1,Europe +2024-02-03,7468,5304,"[""Monitor"", ""Laptop"", ""Phone""]",4375.9,{},268936,1,Europe +2023-09-11,7469,2698,"[""Keyboard"", ""Headphones"", ""Phone""]",2886.23,"{""promo"": ""7%""}",243228,0,Asia +2024-04-24,7470,6369,"[""Laptop"", ""Keyboard""]",3450.06,{},90386,0,North America +2023-07-22,7471,7023,"[""Laptop""]",1308.9,"{""loyalty"": ""29%""}",118329,1,South America +2023-06-15,7472,6559,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",750.34,{},80312,1,North America +2023-12-29,7473,68,"[""Keyboard"", ""Tablet""]",4140.15,{},66905,0,North America +2024-01-28,7474,5619,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1778.65,"{""seasonal"": ""14%""}",165199,1,North America +2023-06-28,7475,4727,"[""Monitor"", ""Tablet"", ""Charger""]",2339.98,"{""loyalty"": ""24%""}",124688,1,South America +2024-06-29,7476,8318,"[""Wireless Mouse"", ""Phone""]",1860.36,"{""promo"": ""5%""}",23177,0,South America +2024-10-16,7477,8426,"[""Monitor"", ""Phone""]",3203.9,{},219303,0,South America +2023-07-29,7478,1598,"[""Charger""]",4823.24,"{""promo"": ""18%""}",148603,1,Asia +2024-09-22,7479,6493,"[""Keyboard""]",891.38,"{""seasonal"": ""8%""}",271794,1,North America +2023-10-30,7480,3368,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3082.44,"{""loyalty"": ""5%""}",116364,0,North America +2023-03-20,7481,5546,"[""Headphones""]",2916.5,"{""promo"": ""27%""}",72695,0,Asia +2024-08-01,7482,1376,"[""Monitor"", ""Charger""]",1047.85,{},14593,1,Asia +2023-01-17,7483,2132,"[""Keyboard"", ""Monitor""]",2919.06,{},108135,1,South America +2023-06-20,7484,8706,"[""Monitor"", ""Headphones""]",3368.09,"{""promo"": ""27%""}",42950,0,Europe +2023-12-19,7485,6420,"[""Phone"", ""Wireless Mouse""]",4589.24,"{"""": ""6%""}",118350,1,Asia +2023-08-25,7486,6901,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1273.55,"{"""": ""19%""}",268741,0,Asia +2023-10-09,7487,7990,"[""Keyboard"", ""Monitor"", ""Headphones""]",3210.31,"{""promo"": ""19%""}",145179,0,Asia +2024-09-15,7488,9405,"[""Keyboard"", ""Monitor""]",4256.36,"{""seasonal"": ""6%""}",178271,0,South America +2024-03-15,7489,2691,"[""Laptop"", ""Monitor""]",2482.72,"{""seasonal"": ""13%""}",128365,0,Asia +2024-12-31,7490,3063,"[""Laptop"", ""Phone"", ""Keyboard""]",925.57,"{""loyalty"": ""17%""}",226401,1,North America +2024-09-19,7491,6080,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",386.61,"{"""": ""17%""}",106423,0,South America +2024-07-07,7492,3482,"[""Tablet"", ""Keyboard""]",3393.04,{},35568,1,North America +2024-12-29,7493,7422,"[""Keyboard"", ""Tablet""]",554.31,"{""seasonal"": ""21%""}",55781,1,South America +2024-09-11,7494,7828,"[""Phone"", ""Headphones"", ""Laptop""]",1477.83,"{""loyalty"": ""13%""}",26076,0,Europe +2023-07-19,7495,5931,"[""Keyboard"", ""Charger""]",559.87,"{""loyalty"": ""27%""}",205515,0,Africa +2023-11-10,7496,5511,"[""Phone"", ""Monitor""]",4873.82,{},174362,1,Africa +2024-08-02,7497,74,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3015.72,"{""seasonal"": ""16%""}",276554,0,Asia +2024-12-16,7498,5279,"[""Keyboard""]",1901.47,{},197331,1,North America +2023-12-22,7499,7872,"[""Wireless Mouse"", ""Laptop""]",513.2,{},21415,1,South America +2023-08-12,7500,948,"[""Monitor""]",142.5,"{""seasonal"": ""10%""}",26090,1,South America +2024-02-16,7501,1387,"[""Charger"", ""Phone"", ""Tablet""]",4660.23,{},278310,0,Europe +2023-07-29,7502,1721,"[""Tablet"", ""Laptop""]",382.54,"{""promo"": ""16%""}",228053,0,South America +2024-12-20,7503,3829,"[""Tablet"", ""Monitor"", ""Phone""]",1288.44,"{""seasonal"": ""26%""}",94628,0,South America +2023-06-21,7504,9836,"[""Wireless Mouse""]",2955.9,"{""seasonal"": ""10%""}",151028,1,South America +2024-07-25,7505,6397,"[""Headphones""]",92.51,{},127952,0,Europe +2023-10-13,7506,8511,"[""Tablet""]",4652.93,{},58489,1,Asia +2024-01-24,7507,5667,"[""Tablet""]",3779.94,"{""promo"": ""25%""}",88431,0,South America +2024-05-05,7508,6113,"[""Monitor"", ""Headphones""]",293.07,"{""seasonal"": ""5%""}",191249,0,Asia +2023-10-08,7509,7876,"[""Monitor"", ""Headphones""]",2483.48,"{""promo"": ""25%""}",152102,0,Europe +2024-03-02,7510,7437,"[""Monitor"", ""Laptop"", ""Charger""]",2988.04,{},76689,1,South America +2024-12-08,7511,5963,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2822.18,"{""seasonal"": ""24%""}",201230,0,South America +2023-04-12,7512,5525,"[""Headphones"", ""Monitor"", ""Tablet""]",712.26,{},194716,1,Asia +2024-09-10,7513,9889,"[""Monitor""]",1167.88,{},43302,1,Asia +2024-07-07,7514,140,"[""Keyboard""]",1326.58,{},77953,0,North America +2024-10-17,7515,9783,"[""Monitor""]",1186.42,"{""loyalty"": ""13%""}",224789,1,North America +2023-08-17,7516,6984,"[""Charger"", ""Phone"", ""Headphones""]",3450.58,{},58775,0,Asia +2023-05-02,7517,71,"[""Phone"", ""Monitor""]",2775.63,{},38992,0,Europe +2023-12-06,7518,4577,"[""Tablet""]",4596.72,"{""loyalty"": ""12%""}",27864,0,Africa +2024-11-12,7519,9615,"[""Headphones""]",2709.92,{},49616,0,Africa +2024-12-22,7520,7359,"[""Phone""]",182.75,{},253801,1,South America +2024-09-03,7521,5793,"[""Headphones"", ""Charger""]",2222.84,{},126941,1,North America +2023-12-13,7522,2467,"[""Laptop"", ""Tablet""]",1651.36,"{""loyalty"": ""17%""}",155231,0,Africa +2023-12-17,7523,2328,"[""Phone""]",865.87,{},292272,0,North America +2024-09-11,7524,3269,"[""Phone""]",3875.45,"{"""": ""13%""}",41497,0,South America +2024-09-16,7525,6881,"[""Phone"", ""Keyboard"", ""Headphones""]",1632.77,{},125769,0,Europe +2023-01-22,7526,257,"[""Laptop"", ""Charger""]",1489.53,{},189955,0,Europe +2023-03-02,7527,773,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3875.92,{},24687,1,North America +2023-12-10,7528,3505,"[""Tablet""]",1957.62,{},41104,0,North America +2023-06-10,7529,1843,"[""Monitor"", ""Phone""]",3378.83,{},55584,1,Asia +2024-10-24,7530,1457,"[""Keyboard""]",314.06,{},94373,1,Africa +2023-04-13,7531,7415,"[""Tablet""]",1771.86,"{"""": ""24%""}",232167,1,Europe +2023-08-30,7532,8079,"[""Headphones"", ""Keyboard"", ""Phone""]",1702.53,"{""seasonal"": ""22%""}",126144,0,Africa +2023-10-18,7533,6175,"[""Wireless Mouse"", ""Keyboard""]",3682.46,{},201156,1,Africa +2024-10-05,7534,7473,"[""Phone""]",3621.88,{},252274,0,North America +2024-04-27,7535,2493,"[""Headphones""]",4730.21,"{""promo"": ""29%""}",233901,1,South America +2023-06-18,7536,4050,"[""Headphones"", ""Phone""]",4006.46,"{""seasonal"": ""23%""}",208123,1,Africa +2024-11-02,7537,4345,"[""Charger""]",1282.14,{},138791,0,North America +2023-01-21,7538,5767,"[""Tablet"", ""Wireless Mouse""]",3960.45,{},215267,0,Europe +2023-07-06,7539,6220,"[""Charger"", ""Wireless Mouse""]",4741.86,"{""seasonal"": ""21%""}",60982,1,North America +2024-12-18,7540,9805,"[""Tablet""]",3890.3,{},215580,0,North America +2023-09-18,7541,2655,"[""Wireless Mouse""]",2142.45,"{""loyalty"": ""8%""}",208692,0,South America +2024-04-25,7542,4750,"[""Laptop"", ""Wireless Mouse""]",1638.11,"{""seasonal"": ""18%""}",55075,1,Asia +2024-01-13,7543,6366,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2389.81,"{""loyalty"": ""14%""}",89866,1,North America +2023-08-04,7544,7377,"[""Keyboard"", ""Phone"", ""Laptop""]",797.62,{},139928,1,Africa +2023-05-13,7545,6399,"[""Charger""]",3699.76,{},190010,1,South America +2023-06-14,7546,9518,"[""Phone"", ""Wireless Mouse""]",1820.38,"{""loyalty"": ""26%""}",32825,0,North America +2024-02-25,7547,195,"[""Tablet"", ""Charger""]",1086.95,{},192110,0,South America +2024-07-13,7548,2458,"[""Keyboard"", ""Charger""]",90.25,"{"""": ""30%""}",90013,1,Africa +2023-06-03,7549,4731,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4917.7,{},165335,0,South America +2024-05-06,7550,4519,"[""Monitor"", ""Keyboard""]",1458.93,{},101932,1,North America +2023-04-14,7551,2745,"[""Laptop""]",1506.41,{},161699,1,South America +2024-07-02,7552,2942,"[""Phone"", ""Wireless Mouse""]",2264.68,{},168274,0,Africa +2024-03-08,7553,5189,"[""Laptop""]",3135.51,"{""seasonal"": ""29%""}",238321,1,Europe +2024-08-20,7554,3573,"[""Keyboard"", ""Tablet""]",4998.89,"{""loyalty"": ""8%""}",84672,0,Europe +2023-12-22,7555,680,"[""Tablet"", ""Monitor"", ""Laptop""]",4743.29,{},219431,0,Africa +2023-09-21,7556,6330,"[""Phone"", ""Tablet""]",3951.81,{},22446,0,Europe +2024-11-06,7557,8632,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3814.68,{},156019,0,North America +2023-01-16,7558,2076,"[""Laptop"", ""Monitor"", ""Charger""]",3048.67,{},96958,0,Asia +2024-07-27,7559,435,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4183.84,"{""loyalty"": ""30%""}",98566,0,South America +2023-01-26,7560,6906,"[""Monitor""]",3662.78,"{""seasonal"": ""18%""}",168661,0,South America +2023-07-11,7561,3990,"[""Monitor"", ""Tablet"", ""Phone""]",4702.21,{},139581,0,Europe +2023-03-21,7562,1253,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2702.53,"{"""": ""7%""}",208484,0,North America +2024-01-17,7563,758,"[""Tablet""]",3865.33,{},98374,1,Africa +2024-01-11,7564,280,"[""Monitor""]",710.42,"{""loyalty"": ""12%""}",77346,1,North America +2024-01-08,7565,6943,"[""Laptop""]",3875.02,{},55647,1,Africa +2023-07-14,7566,4266,"[""Tablet"", ""Charger"", ""Laptop""]",519.55,{},227246,1,Asia +2024-07-28,7567,5319,"[""Monitor""]",2330.81,{},196869,0,Africa +2024-09-21,7568,9520,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4915.53,"{""promo"": ""22%""}",225986,1,South America +2024-08-10,7569,521,"[""Tablet""]",2566.1,{},188020,0,Africa +2024-06-10,7570,38,"[""Monitor"", ""Wireless Mouse""]",828.11,{},290002,1,Asia +2023-02-04,7571,328,"[""Headphones"", ""Tablet""]",3260.83,"{""promo"": ""25%""}",72734,0,South America +2024-12-26,7572,279,"[""Tablet"", ""Phone""]",647.12,"{"""": ""11%""}",197972,1,North America +2023-08-29,7573,3203,"[""Tablet""]",3897.58,"{"""": ""23%""}",80784,0,Europe +2023-08-24,7574,3941,"[""Laptop"", ""Headphones"", ""Phone""]",2893.66,"{""seasonal"": ""27%""}",22641,1,Africa +2024-12-13,7575,302,"[""Headphones"", ""Tablet""]",4958.14,{},89946,1,Africa +2023-03-05,7576,3308,"[""Headphones""]",171.92,"{""promo"": ""29%""}",145184,0,Asia +2024-10-13,7577,4159,"[""Headphones""]",1967.23,"{""seasonal"": ""13%""}",170546,1,Africa +2023-03-16,7578,6885,"[""Laptop""]",3318.73,{},141054,1,Europe +2024-09-11,7579,2554,"[""Tablet"", ""Charger""]",2274.65,"{""loyalty"": ""11%""}",82842,0,Africa +2023-06-15,7580,5065,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2617.63,{},211224,1,North America +2024-09-09,7581,138,"[""Charger""]",1256.33,"{""loyalty"": ""9%""}",73330,0,Europe +2023-05-13,7582,7507,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4654.71,"{"""": ""21%""}",96327,1,Europe +2024-08-09,7583,3934,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4177.16,{},224023,1,Europe +2024-12-13,7584,1381,"[""Laptop""]",3714.66,{},145872,0,Europe +2023-07-22,7585,719,"[""Charger""]",1647.84,{},80970,0,Africa +2023-06-13,7586,4707,"[""Phone"", ""Keyboard""]",3355.73,{},99028,0,North America +2023-10-13,7587,2007,"[""Tablet"", ""Charger"", ""Headphones""]",2431.5,"{""loyalty"": ""6%""}",139683,1,Africa +2023-08-19,7588,7166,"[""Headphones""]",3863.67,{},75386,0,Europe +2023-02-27,7589,5103,"[""Headphones"", ""Charger"", ""Keyboard""]",1025.02,"{"""": ""10%""}",216049,0,Europe +2024-12-02,7590,4288,"[""Charger""]",3930.51,"{""promo"": ""15%""}",290084,0,Asia +2023-02-03,7591,2382,"[""Laptop"", ""Keyboard"", ""Monitor""]",3422.97,{},134038,0,South America +2024-05-10,7592,1625,"[""Keyboard"", ""Charger""]",1715.14,{},281621,1,Europe +2023-10-23,7593,201,"[""Wireless Mouse""]",4600.15,{},161997,0,Europe +2024-04-17,7594,5594,"[""Headphones""]",1945.86,"{""loyalty"": ""15%""}",265450,1,South America +2023-11-15,7595,2271,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3711.43,"{"""": ""5%""}",253095,1,South America +2023-03-27,7596,6948,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3008.14,"{""seasonal"": ""23%""}",141671,0,Africa +2024-08-28,7597,4543,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1156.94,"{""seasonal"": ""7%""}",199313,0,Asia +2023-12-09,7598,643,"[""Keyboard"", ""Headphones"", ""Phone""]",2857.58,"{"""": ""11%""}",67472,1,Europe +2024-03-14,7599,2164,"[""Tablet"", ""Charger""]",71.77,{},46270,1,Europe +2024-05-22,7600,4781,"[""Charger"", ""Monitor"", ""Headphones""]",67.18,{},220630,0,Europe +2024-07-30,7601,2046,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",392.72,"{"""": ""23%""}",74461,0,South America +2024-03-20,7602,4752,"[""Charger"", ""Keyboard""]",2654.62,"{"""": ""12%""}",246137,0,South America +2024-01-02,7603,3080,"[""Phone"", ""Monitor"", ""Laptop""]",3661.31,"{"""": ""18%""}",211631,0,South America +2024-07-13,7604,3605,"[""Tablet""]",4704.23,"{"""": ""7%""}",267826,0,Asia +2023-07-25,7605,5060,"[""Charger""]",1754.89,{},254600,0,South America +2024-01-23,7606,6770,"[""Phone""]",3631.0,{},252242,1,Europe +2023-06-17,7607,2261,"[""Headphones""]",3227.68,{},90973,0,South America +2024-02-26,7608,1425,"[""Tablet""]",2685.4,{},12577,1,Africa +2024-08-16,7609,2504,"[""Laptop"", ""Headphones"", ""Monitor""]",2934.06,{},170229,1,Africa +2024-04-06,7610,6806,"[""Laptop"", ""Keyboard"", ""Tablet""]",1222.09,{},114887,1,North America +2024-08-28,7611,4901,"[""Keyboard""]",3272.08,{},239335,1,South America +2024-01-03,7612,738,"[""Phone"", ""Headphones"", ""Monitor""]",838.69,"{"""": ""28%""}",289201,0,Africa +2024-11-10,7613,1336,"[""Charger"", ""Headphones"", ""Keyboard""]",4367.83,"{""promo"": ""26%""}",268249,0,Africa +2023-05-26,7614,9122,"[""Keyboard"", ""Phone""]",2724.1,{},30088,1,South America +2024-10-10,7615,3269,"[""Keyboard""]",214.98,{},145035,0,Africa +2023-01-04,7616,6340,"[""Headphones""]",1535.0,{},8458,1,South America +2023-11-17,7617,2694,"[""Keyboard"", ""Phone""]",4339.31,"{""promo"": ""18%""}",97348,1,Asia +2023-12-02,7618,1162,"[""Monitor"", ""Laptop""]",797.64,{},3574,1,Asia +2023-10-28,7619,6912,"[""Laptop""]",94.52,"{""seasonal"": ""17%""}",267129,0,Europe +2023-08-29,7620,8310,"[""Phone"", ""Laptop"", ""Tablet""]",1120.58,{},243684,1,Europe +2023-05-16,7621,6797,"[""Charger"", ""Laptop"", ""Tablet""]",3368.55,"{""seasonal"": ""16%""}",185193,0,Asia +2024-07-11,7622,3104,"[""Monitor"", ""Laptop"", ""Tablet""]",759.15,"{""loyalty"": ""29%""}",122927,1,South America +2024-08-16,7623,2962,"[""Keyboard""]",923.07,"{""loyalty"": ""13%""}",48908,0,Africa +2024-03-01,7624,2482,"[""Headphones"", ""Wireless Mouse""]",412.2,{},13866,1,South America +2024-11-30,7625,2203,"[""Laptop"", ""Headphones"", ""Charger""]",3258.35,{},8269,0,Europe +2023-01-22,7626,253,"[""Laptop"", ""Monitor"", ""Headphones""]",4006.97,{},39177,1,Africa +2024-02-18,7627,9316,"[""Keyboard"", ""Charger"", ""Phone""]",2014.52,"{""loyalty"": ""9%""}",239832,1,North America +2023-05-02,7628,3163,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",810.53,"{""seasonal"": ""15%""}",12064,1,South America +2024-09-14,7629,7886,"[""Monitor"", ""Phone"", ""Laptop""]",4967.98,{},50095,1,Europe +2023-12-23,7630,1001,"[""Laptop"", ""Monitor""]",3781.26,{},262525,0,South America +2023-12-21,7631,6543,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3797.4,"{""seasonal"": ""30%""}",40246,1,Europe +2024-11-20,7632,3458,"[""Phone""]",4210.54,{},114308,0,Europe +2024-10-28,7633,350,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1631.92,{},287436,0,Europe +2024-08-03,7634,9392,"[""Monitor"", ""Laptop"", ""Keyboard""]",949.45,"{""loyalty"": ""9%""}",160695,0,Europe +2023-06-17,7635,2313,"[""Phone"", ""Headphones""]",2073.37,{},258744,0,North America +2023-02-13,7636,5666,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3807.24,"{""promo"": ""8%""}",220679,0,Africa +2024-12-27,7637,5354,"[""Tablet"", ""Charger""]",4053.67,"{""loyalty"": ""16%""}",286163,0,North America +2024-06-12,7638,5799,"[""Laptop""]",1041.56,"{"""": ""20%""}",65927,0,South America +2023-08-29,7639,2667,"[""Keyboard"", ""Charger"", ""Laptop""]",471.85,"{""promo"": ""8%""}",230247,1,Europe +2024-07-23,7640,1342,"[""Monitor"", ""Keyboard"", ""Laptop""]",1900.16,{},121153,0,Asia +2024-01-16,7641,8950,"[""Monitor""]",2499.1,"{""loyalty"": ""23%""}",113841,1,Europe +2024-11-18,7642,8911,"[""Headphones"", ""Monitor""]",4352.27,"{"""": ""17%""}",154773,0,South America +2024-10-30,7643,3780,"[""Phone""]",4702.07,"{""seasonal"": ""7%""}",71750,1,South America +2023-12-29,7644,7360,"[""Laptop""]",1373.6,{},239744,0,Europe +2023-06-21,7645,7731,"[""Phone"", ""Monitor""]",566.68,{},121456,1,Europe +2024-04-21,7646,591,"[""Keyboard"", ""Laptop""]",2775.14,"{""promo"": ""6%""}",162864,1,Asia +2024-01-27,7647,1652,"[""Laptop"", ""Tablet""]",818.55,{},168100,1,Africa +2024-06-26,7648,8133,"[""Keyboard""]",1642.41,{},82995,0,Africa +2023-07-19,7649,1629,"[""Monitor"", ""Charger""]",2280.92,"{""loyalty"": ""15%""}",38725,1,Asia +2024-04-15,7650,5031,"[""Monitor"", ""Tablet"", ""Charger""]",941.86,"{""loyalty"": ""15%""}",182978,0,North America +2023-12-20,7651,4462,"[""Charger"", ""Monitor"", ""Headphones""]",1657.68,{},293607,1,South America +2024-01-21,7652,7071,"[""Headphones"", ""Charger"", ""Keyboard""]",2525.57,"{"""": ""17%""}",113949,0,Africa +2024-06-26,7653,2771,"[""Phone""]",2324.44,{},84305,0,Africa +2023-01-08,7654,4344,"[""Phone""]",2480.27,{},185640,0,Asia +2024-03-21,7655,1284,"[""Laptop""]",4317.33,"{""seasonal"": ""19%""}",3305,1,Africa +2024-06-19,7656,8252,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3034.31,"{"""": ""13%""}",71023,0,Europe +2024-12-21,7657,1237,"[""Tablet"", ""Monitor"", ""Laptop""]",2594.29,{},191355,0,Asia +2024-01-23,7658,8511,"[""Laptop"", ""Phone""]",1844.03,{},13980,1,Europe +2023-06-10,7659,5291,"[""Headphones""]",1495.29,{},84428,1,South America +2024-11-23,7660,5944,"[""Headphones"", ""Laptop"", ""Charger""]",4694.9,"{""promo"": ""29%""}",31665,1,Asia +2024-01-22,7661,6627,"[""Monitor"", ""Keyboard""]",3267.88,{},169044,1,Africa +2023-12-08,7662,308,"[""Laptop"", ""Wireless Mouse""]",2893.92,"{""promo"": ""22%""}",263956,1,North America +2024-05-01,7663,936,"[""Phone"", ""Laptop""]",104.72,{},267055,1,Africa +2023-03-12,7664,5195,"[""Tablet""]",205.54,{},282410,0,South America +2024-05-18,7665,9376,"[""Headphones"", ""Phone""]",2520.85,{},125133,1,Europe +2024-07-17,7666,2730,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4494.46,{},256652,0,North America +2024-01-13,7667,48,"[""Tablet"", ""Charger""]",3986.12,{},111399,0,Europe +2024-05-30,7668,6866,"[""Charger"", ""Laptop"", ""Tablet""]",4253.41,"{""seasonal"": ""28%""}",119219,0,South America +2024-11-18,7669,6248,"[""Wireless Mouse"", ""Phone""]",3563.66,{},8365,0,South America +2024-08-26,7670,9596,"[""Wireless Mouse""]",4261.52,"{""loyalty"": ""14%""}",260209,0,Africa +2023-09-06,7671,4160,"[""Charger""]",4378.91,{},137676,0,South America +2024-06-25,7672,4797,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",523.64,"{""promo"": ""20%""}",21901,0,North America +2023-05-22,7673,2395,"[""Charger"", ""Laptop""]",4876.88,{},7912,1,North America +2024-01-14,7674,2847,"[""Keyboard"", ""Phone""]",1472.94,"{"""": ""17%""}",73188,1,Africa +2024-11-16,7675,3646,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3592.79,{},225466,0,North America +2023-11-27,7676,7816,"[""Headphones""]",3166.15,{},142110,1,Asia +2024-12-25,7677,374,"[""Laptop""]",1851.65,{},125068,1,Africa +2023-03-29,7678,6956,"[""Laptop"", ""Keyboard"", ""Phone""]",2255.95,{},184756,0,Asia +2023-09-20,7679,4441,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2978.97,"{""loyalty"": ""26%""}",236687,1,Asia +2023-06-22,7680,8288,"[""Monitor"", ""Phone""]",1117.7,{},178081,0,Asia +2023-04-07,7681,7407,"[""Monitor""]",3245.76,{},29060,0,North America +2023-02-04,7682,6358,"[""Charger"", ""Headphones"", ""Phone""]",935.28,"{""promo"": ""20%""}",17306,0,South America +2023-02-06,7683,7205,"[""Monitor"", ""Keyboard"", ""Headphones""]",4025.06,{},287796,1,Africa +2024-12-09,7684,8516,"[""Headphones"", ""Laptop""]",4607.61,{},28343,0,Asia +2024-11-03,7685,2839,"[""Tablet""]",609.6,{},1638,1,Asia +2024-11-16,7686,155,"[""Charger"", ""Keyboard"", ""Laptop""]",1769.68,"{""loyalty"": ""30%""}",224285,0,Africa +2024-03-14,7687,177,"[""Laptop"", ""Charger"", ""Phone""]",1791.53,{},262300,1,Africa +2024-07-18,7688,3889,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4989.71,"{""loyalty"": ""24%""}",130423,1,Europe +2023-07-19,7689,6095,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1746.54,"{"""": ""19%""}",241531,0,Africa +2023-11-07,7690,3119,"[""Monitor"", ""Keyboard""]",503.48,{},72652,1,North America +2023-08-27,7691,9731,"[""Keyboard"", ""Phone""]",621.38,"{"""": ""5%""}",192979,0,North America +2023-01-21,7692,2475,"[""Headphones""]",1319.92,"{""seasonal"": ""8%""}",52866,1,North America +2023-04-15,7693,2811,"[""Keyboard"", ""Laptop""]",1442.53,"{""seasonal"": ""30%""}",290993,1,Europe +2023-09-21,7694,6188,"[""Headphones"", ""Keyboard"", ""Charger""]",1554.72,{},218599,1,South America +2024-05-06,7695,6415,"[""Keyboard""]",2862.32,"{""promo"": ""16%""}",233613,1,North America +2023-11-28,7696,3557,"[""Laptop"", ""Tablet""]",181.51,"{""promo"": ""5%""}",286298,1,Asia +2023-01-17,7697,7970,"[""Phone"", ""Tablet"", ""Laptop""]",1330.81,{},219796,1,Europe +2023-02-07,7698,3488,"[""Charger""]",3928.82,{},62303,0,South America +2023-02-08,7699,8577,"[""Wireless Mouse"", ""Laptop""]",1011.78,"{"""": ""13%""}",136986,1,Asia +2024-04-04,7700,6202,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3194.86,{},56692,0,Europe +2023-08-13,7701,4460,"[""Monitor"", ""Tablet"", ""Keyboard""]",959.0,"{""seasonal"": ""18%""}",174386,1,Africa +2024-02-17,7702,1261,"[""Charger"", ""Keyboard"", ""Phone""]",3950.93,"{"""": ""6%""}",221778,1,North America +2023-12-16,7703,3937,"[""Headphones"", ""Laptop""]",4099.65,"{""loyalty"": ""11%""}",66726,0,South America +2023-10-02,7704,1837,"[""Phone""]",1560.4,{},115673,1,Africa +2024-12-31,7705,8344,"[""Monitor"", ""Phone""]",2197.68,"{""promo"": ""24%""}",280676,1,South America +2023-01-03,7706,11,"[""Tablet"", ""Monitor"", ""Laptop""]",792.64,"{""promo"": ""9%""}",162435,1,Europe +2023-01-02,7707,2145,"[""Laptop"", ""Tablet""]",480.23,{},272311,1,South America +2024-11-26,7708,3665,"[""Wireless Mouse""]",3679.49,{},88556,0,Africa +2023-12-31,7709,5513,"[""Headphones""]",1670.45,{},27491,0,North America +2023-12-28,7710,6341,"[""Wireless Mouse""]",463.28,"{""promo"": ""5%""}",169548,0,South America +2024-11-11,7711,6789,"[""Monitor"", ""Laptop""]",3386.06,"{""seasonal"": ""5%""}",139443,1,Asia +2023-07-14,7712,1121,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3815.17,"{""seasonal"": ""12%""}",229974,0,Africa +2024-01-13,7713,8964,"[""Phone"", ""Tablet""]",3332.22,{},70998,0,North America +2023-05-01,7714,7546,"[""Monitor"", ""Phone""]",52.9,"{""loyalty"": ""23%""}",53115,0,Asia +2024-03-30,7715,7039,"[""Tablet""]",104.53,"{""loyalty"": ""26%""}",224756,0,South America +2024-02-06,7716,6729,"[""Tablet"", ""Headphones""]",3986.34,{},41776,1,South America +2023-10-29,7717,7986,"[""Headphones""]",1282.47,"{""promo"": ""19%""}",208235,0,North America +2023-02-17,7718,3603,"[""Keyboard"", ""Headphones"", ""Laptop""]",4369.19,{},169807,1,North America +2023-10-14,7719,7371,"[""Phone""]",3947.91,{},247311,1,Africa +2023-12-27,7720,7909,"[""Monitor"", ""Keyboard""]",2759.85,"{""loyalty"": ""10%""}",95899,0,North America +2024-11-08,7721,106,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4241.77,{},119481,0,Asia +2023-05-21,7722,461,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",558.48,{},76638,1,Asia +2024-07-15,7723,6215,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1753.37,"{""seasonal"": ""12%""}",46983,1,Africa +2024-03-13,7724,3483,"[""Phone"", ""Monitor""]",506.75,{},86491,1,South America +2023-03-31,7725,6009,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1934.78,"{""seasonal"": ""8%""}",135401,1,South America +2024-08-04,7726,7474,"[""Monitor"", ""Keyboard""]",2746.81,{},207510,1,South America +2023-05-02,7727,5828,"[""Laptop"", ""Headphones"", ""Monitor""]",3439.2,{},23296,0,North America +2023-05-15,7728,7866,"[""Headphones""]",3359.59,{},122981,1,South America +2023-04-01,7729,6928,"[""Headphones""]",1444.98,{},119555,0,South America +2023-09-09,7730,6806,"[""Phone"", ""Laptop"", ""Keyboard""]",2457.5,{},35951,1,North America +2023-03-26,7731,8672,"[""Tablet"", ""Keyboard"", ""Phone""]",2765.38,{},68612,0,North America +2023-05-01,7732,242,"[""Charger"", ""Tablet""]",1530.35,"{"""": ""29%""}",115632,1,South America +2024-10-18,7733,9335,"[""Phone""]",912.93,"{""promo"": ""7%""}",130679,0,South America +2024-06-16,7734,5266,"[""Tablet"", ""Charger""]",273.76,{},47560,0,Asia +2023-05-28,7735,7999,"[""Charger""]",3726.94,{},241612,1,South America +2023-05-13,7736,6546,"[""Keyboard""]",1053.85,{},19123,1,Africa +2024-02-19,7737,4867,"[""Phone""]",2058.52,"{"""": ""15%""}",152232,0,North America +2024-10-30,7738,7130,"[""Laptop"", ""Monitor"", ""Charger""]",4753.47,{},200879,0,North America +2023-11-14,7739,7599,"[""Tablet"", ""Laptop""]",2608.06,{},45698,1,Africa +2024-10-21,7740,3512,"[""Charger"", ""Headphones""]",4965.19,"{"""": ""30%""}",85773,0,Asia +2023-07-24,7741,890,"[""Phone"", ""Laptop"", ""Headphones""]",2500.69,{},72187,1,Africa +2024-02-29,7742,2838,"[""Laptop"", ""Charger"", ""Monitor""]",1977.88,{},192850,0,Africa +2024-12-21,7743,4742,"[""Keyboard"", ""Monitor"", ""Tablet""]",2090.5,{},182046,0,Asia +2023-11-14,7744,3272,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3485.0,"{""promo"": ""21%""}",242081,0,Europe +2023-09-11,7745,8665,"[""Phone"", ""Charger"", ""Headphones""]",2767.78,{},173708,0,North America +2023-09-09,7746,9842,"[""Laptop"", ""Headphones""]",631.8,{},52209,0,South America +2024-10-11,7747,7981,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3537.04,"{""seasonal"": ""21%""}",22052,1,Asia +2024-07-07,7748,1985,"[""Laptop"", ""Monitor"", ""Phone""]",3547.65,{},275697,0,North America +2024-04-19,7749,6174,"[""Phone"", ""Tablet""]",3963.89,{},281644,0,Africa +2024-08-28,7750,9555,"[""Wireless Mouse"", ""Charger""]",2435.78,"{""seasonal"": ""13%""}",140170,1,North America +2024-09-04,7751,9195,"[""Monitor"", ""Laptop""]",2640.31,{},58782,0,Asia +2023-01-17,7752,9741,"[""Charger"", ""Monitor""]",1944.26,"{""promo"": ""20%""}",113719,1,South America +2024-06-19,7753,6975,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",145.12,{},138129,0,Asia +2023-01-16,7754,5771,"[""Wireless Mouse"", ""Tablet""]",3689.94,{},58508,0,South America +2023-12-25,7755,5168,"[""Laptop"", ""Charger""]",3082.61,"{""seasonal"": ""16%""}",12586,1,North America +2024-04-03,7756,1546,"[""Charger""]",3432.19,"{""promo"": ""11%""}",96162,0,Asia +2024-06-28,7757,4631,"[""Laptop"", ""Monitor"", ""Keyboard""]",2006.8,"{""seasonal"": ""12%""}",91505,1,Africa +2024-05-29,7758,6112,"[""Laptop"", ""Wireless Mouse""]",1961.59,"{""loyalty"": ""27%""}",276410,0,Asia +2024-02-28,7759,2465,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4101.78,{},282710,1,South America +2023-12-16,7760,4948,"[""Monitor"", ""Keyboard""]",4222.34,"{""promo"": ""6%""}",131962,1,South America +2023-06-19,7761,8958,"[""Tablet""]",2578.17,{},145707,1,South America +2023-02-17,7762,7595,"[""Charger"", ""Wireless Mouse""]",4515.09,{},188530,0,Africa +2023-03-05,7763,1641,"[""Charger""]",4100.42,"{""promo"": ""19%""}",86770,0,North America +2024-01-21,7764,8809,"[""Keyboard"", ""Headphones""]",3195.05,"{""seasonal"": ""7%""}",131007,0,Europe +2024-02-28,7765,553,"[""Monitor"", ""Wireless Mouse""]",4796.36,"{""seasonal"": ""13%""}",77683,1,Europe +2024-06-30,7766,4463,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",451.99,{},218341,1,South America +2023-04-14,7767,4685,"[""Wireless Mouse"", ""Phone""]",4947.31,"{""loyalty"": ""29%""}",124276,0,North America +2023-05-21,7768,1140,"[""Wireless Mouse"", ""Keyboard""]",1534.99,"{""promo"": ""17%""}",36097,0,North America +2024-02-07,7769,1164,"[""Laptop"", ""Tablet"", ""Charger""]",1126.49,"{""seasonal"": ""9%""}",68340,1,Asia +2023-06-13,7770,5259,"[""Laptop""]",2657.49,{},151053,0,Africa +2023-07-19,7771,9280,"[""Keyboard""]",4319.13,{},33821,1,Asia +2024-04-15,7772,4675,"[""Keyboard"", ""Laptop""]",1025.99,{},237580,1,Asia +2023-08-15,7773,4698,"[""Phone"", ""Monitor"", ""Tablet""]",1825.19,{},181540,1,North America +2023-11-03,7774,8267,"[""Tablet""]",1073.91,"{"""": ""24%""}",76137,0,Africa +2023-10-28,7775,9333,"[""Phone"", ""Keyboard"", ""Tablet""]",1467.95,{},266330,0,Africa +2023-08-06,7776,846,"[""Phone""]",4302.25,"{""loyalty"": ""7%""}",88548,1,North America +2024-08-06,7777,6791,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3292.8,"{""promo"": ""18%""}",32695,0,Asia +2024-02-24,7778,7882,"[""Keyboard""]",95.26,"{""seasonal"": ""12%""}",34635,1,Africa +2023-11-05,7779,8220,"[""Headphones"", ""Tablet""]",4266.12,{},276041,1,North America +2024-09-21,7780,671,"[""Phone"", ""Wireless Mouse""]",935.98,{},61645,1,North America +2023-08-16,7781,9099,"[""Phone"", ""Monitor"", ""Laptop""]",321.1,{},215869,1,North America +2024-04-24,7782,7672,"[""Wireless Mouse"", ""Headphones""]",3370.05,"{""promo"": ""30%""}",70792,1,North America +2024-01-04,7783,1878,"[""Charger"", ""Keyboard""]",2414.81,{},50978,0,Asia +2024-10-25,7784,1026,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2573.84,"{"""": ""23%""}",74685,0,Asia +2024-04-07,7785,6266,"[""Phone"", ""Tablet""]",3270.84,"{""loyalty"": ""19%""}",289799,1,South America +2023-01-27,7786,2771,"[""Phone"", ""Headphones"", ""Keyboard""]",4266.17,"{""loyalty"": ""27%""}",34809,0,South America +2024-12-07,7787,6103,"[""Headphones""]",3038.7,"{""seasonal"": ""14%""}",259481,1,Europe +2024-01-05,7788,4958,"[""Wireless Mouse"", ""Laptop""]",4921.29,"{""loyalty"": ""20%""}",6719,0,Africa +2023-07-19,7789,5390,"[""Phone"", ""Keyboard""]",3940.04,"{""seasonal"": ""13%""}",124769,0,Africa +2024-05-27,7790,7458,"[""Monitor""]",4294.49,"{"""": ""18%""}",142997,0,South America +2024-01-22,7791,5169,"[""Wireless Mouse""]",2644.8,{},169407,1,Europe +2023-04-14,7792,3770,"[""Laptop""]",258.29,"{""loyalty"": ""13%""}",101906,1,South America +2024-12-22,7793,9393,"[""Monitor""]",4187.39,"{""loyalty"": ""23%""}",74656,0,Europe +2024-08-16,7794,4538,"[""Wireless Mouse"", ""Laptop""]",4530.37,"{"""": ""21%""}",119931,0,North America +2024-09-16,7795,1183,"[""Keyboard""]",2910.61,"{""seasonal"": ""18%""}",144512,0,North America +2023-08-11,7796,3841,"[""Charger""]",4484.13,"{""loyalty"": ""30%""}",196166,0,South America +2023-05-14,7797,4784,"[""Charger""]",1924.54,{},289771,1,South America +2023-10-18,7798,5574,"[""Wireless Mouse""]",3309.61,{},268787,0,Europe +2024-10-29,7799,1824,"[""Phone"", ""Tablet""]",3908.91,{},129308,1,Asia +2023-06-02,7800,2545,"[""Charger""]",1764.7,{},214713,0,North America +2024-10-10,7801,3789,"[""Tablet"", ""Laptop""]",4881.2,{},232133,0,Europe +2023-01-25,7802,8825,"[""Monitor"", ""Headphones"", ""Tablet""]",3091.92,"{"""": ""25%""}",113754,0,Asia +2024-11-25,7803,6376,"[""Headphones"", ""Tablet"", ""Keyboard""]",2512.52,{},10819,0,South America +2023-11-01,7804,5109,"[""Charger""]",2200.07,"{""seasonal"": ""15%""}",153205,1,North America +2024-05-07,7805,7345,"[""Headphones"", ""Wireless Mouse""]",814.58,"{"""": ""25%""}",209911,0,South America +2023-09-04,7806,247,"[""Laptop"", ""Wireless Mouse""]",4044.78,"{""promo"": ""30%""}",49730,0,Europe +2024-03-05,7807,6619,"[""Monitor"", ""Phone""]",3845.54,"{""seasonal"": ""24%""}",124887,1,Europe +2024-12-20,7808,5663,"[""Headphones"", ""Charger"", ""Keyboard""]",1531.89,"{"""": ""24%""}",267789,1,South America +2024-02-14,7809,3181,"[""Keyboard"", ""Charger""]",2969.51,"{""promo"": ""14%""}",294228,0,North America +2024-03-18,7810,2112,"[""Keyboard"", ""Headphones"", ""Tablet""]",4602.83,"{""promo"": ""28%""}",134407,1,North America +2024-11-26,7811,7373,"[""Charger""]",3529.83,{},10048,1,Europe +2023-01-23,7812,4431,"[""Phone"", ""Headphones""]",4080.31,{},66854,0,Asia +2024-09-29,7813,4463,"[""Laptop"", ""Headphones""]",379.92,"{""loyalty"": ""28%""}",56625,0,Europe +2024-07-10,7814,2846,"[""Headphones""]",4047.67,{},279707,1,Asia +2024-09-06,7815,2680,"[""Monitor"", ""Charger"", ""Phone""]",2203.84,{},204494,1,Africa +2024-11-20,7816,1197,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4828.97,{},291519,1,North America +2023-02-06,7817,9282,"[""Charger"", ""Phone""]",4513.82,"{""seasonal"": ""13%""}",205612,1,Europe +2024-05-20,7818,6228,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3068.11,{},130135,0,North America +2024-09-20,7819,6239,"[""Charger""]",4848.39,{},170497,1,South America +2024-10-18,7820,5047,"[""Phone""]",1244.18,"{""seasonal"": ""24%""}",27426,0,North America +2024-12-06,7821,9368,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1438.18,"{"""": ""26%""}",123511,1,Asia +2024-11-29,7822,2827,"[""Tablet"", ""Keyboard""]",1591.63,{},71500,1,Asia +2023-07-12,7823,602,"[""Phone""]",4410.96,"{""seasonal"": ""11%""}",35761,0,Africa +2024-07-27,7824,9126,"[""Phone""]",2601.04,"{""loyalty"": ""7%""}",255858,1,Asia +2024-07-06,7825,8478,"[""Keyboard"", ""Charger"", ""Phone""]",84.0,{},267283,0,South America +2024-02-02,7826,584,"[""Tablet""]",1168.85,{},68409,1,Asia +2024-11-08,7827,1364,"[""Keyboard"", ""Monitor""]",270.07,{},217229,0,Europe +2023-03-19,7828,9646,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3002.46,"{""loyalty"": ""11%""}",73776,0,Asia +2024-11-23,7829,3790,"[""Wireless Mouse"", ""Phone""]",540.86,{},149062,0,Asia +2024-07-22,7830,9432,"[""Charger"", ""Laptop""]",2566.22,"{""seasonal"": ""20%""}",290894,1,Asia +2024-07-25,7831,2810,"[""Tablet"", ""Headphones""]",3232.61,{},291040,0,Asia +2023-09-07,7832,4464,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4148.44,{},37106,0,South America +2023-10-10,7833,2016,"[""Monitor""]",2183.78,"{""promo"": ""14%""}",271092,1,Africa +2024-09-10,7834,8792,"[""Laptop""]",4262.73,"{""promo"": ""16%""}",269340,0,Europe +2023-02-05,7835,8376,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",258.63,"{""seasonal"": ""12%""}",86281,0,Africa +2023-06-26,7836,8668,"[""Phone"", ""Charger"", ""Headphones""]",2532.66,"{""loyalty"": ""28%""}",80043,1,South America +2024-11-02,7837,5448,"[""Charger"", ""Laptop"", ""Tablet""]",4590.87,{},184189,0,Africa +2024-08-09,7838,8525,"[""Charger"", ""Laptop""]",3522.29,{},22861,1,South America +2024-07-29,7839,3121,"[""Monitor"", ""Laptop"", ""Tablet""]",76.52,"{"""": ""22%""}",286974,1,North America +2023-06-13,7840,8381,"[""Laptop"", ""Tablet"", ""Charger""]",1601.76,"{""loyalty"": ""7%""}",215604,0,North America +2023-04-27,7841,7893,"[""Laptop"", ""Phone"", ""Monitor""]",2562.92,{},194837,1,South America +2023-05-24,7842,6123,"[""Monitor""]",3994.3,{},170711,1,Africa +2024-03-10,7843,4457,"[""Charger""]",2674.32,{},142622,0,North America +2023-09-06,7844,5552,"[""Wireless Mouse"", ""Keyboard""]",2404.02,{},143435,1,Asia +2024-05-18,7845,6913,"[""Charger"", ""Wireless Mouse""]",642.43,{},144301,1,North America +2023-03-24,7846,3485,"[""Keyboard"", ""Headphones""]",3304.14,{},14335,0,Africa +2023-07-08,7847,5066,"[""Charger"", ""Headphones""]",490.71,{},229428,1,South America +2023-02-20,7848,2530,"[""Tablet"", ""Headphones"", ""Monitor""]",3335.68,"{""promo"": ""29%""}",117831,0,Europe +2024-12-21,7849,4111,"[""Keyboard"", ""Wireless Mouse""]",1211.9,{},270976,1,South America +2024-11-11,7850,2318,"[""Wireless Mouse""]",1115.42,"{""promo"": ""13%""}",184781,1,North America +2023-08-04,7851,2226,"[""Tablet"", ""Monitor""]",4863.83,"{""promo"": ""5%""}",64105,1,Asia +2023-06-29,7852,4369,"[""Monitor""]",1830.54,"{""seasonal"": ""20%""}",226384,1,Asia +2024-07-07,7853,5056,"[""Charger"", ""Tablet""]",226.63,"{""loyalty"": ""6%""}",172050,1,Africa +2023-07-05,7854,3880,"[""Laptop"", ""Tablet""]",4621.53,"{"""": ""5%""}",261569,1,South America +2024-03-01,7855,1371,"[""Headphones""]",596.22,"{""seasonal"": ""23%""}",32752,1,Asia +2024-01-04,7856,7845,"[""Phone"", ""Tablet"", ""Charger""]",1633.3,{},108294,0,North America +2023-05-17,7857,8579,"[""Monitor"", ""Laptop""]",248.71,{},292580,1,North America +2023-12-29,7858,8362,"[""Monitor""]",1438.49,{},7522,0,Africa +2024-01-26,7859,4296,"[""Keyboard""]",1003.24,{},237941,1,Africa +2023-01-21,7860,1691,"[""Phone"", ""Tablet""]",3043.36,"{""loyalty"": ""26%""}",231564,0,Europe +2023-03-18,7861,3990,"[""Phone""]",4341.82,"{""loyalty"": ""22%""}",186256,0,South America +2024-04-27,7862,4094,"[""Tablet"", ""Phone"", ""Monitor""]",3169.99,"{""seasonal"": ""16%""}",265126,1,Asia +2024-03-04,7863,2346,"[""Tablet""]",4331.56,{},20720,0,Africa +2023-08-24,7864,5285,"[""Tablet""]",110.07,"{""loyalty"": ""6%""}",71887,0,South America +2024-03-17,7865,755,"[""Tablet"", ""Keyboard"", ""Headphones""]",4216.95,"{""loyalty"": ""11%""}",299354,0,Africa +2023-07-25,7866,541,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",757.69,"{"""": ""22%""}",76039,0,Europe +2024-10-18,7867,5405,"[""Tablet"", ""Keyboard""]",1545.25,"{""loyalty"": ""5%""}",97206,0,Africa +2023-05-30,7868,735,"[""Keyboard"", ""Tablet"", ""Monitor""]",395.64,"{""promo"": ""20%""}",53462,0,Africa +2024-10-24,7869,6214,"[""Charger""]",4888.82,{},85300,1,Africa +2023-04-16,7870,2572,"[""Headphones"", ""Laptop"", ""Tablet""]",3188.28,"{""seasonal"": ""6%""}",45873,0,South America +2024-07-25,7871,7708,"[""Laptop"", ""Headphones""]",3344.41,{},45282,0,Asia +2024-12-17,7872,1015,"[""Keyboard""]",3711.68,"{""promo"": ""12%""}",50150,1,North America +2024-12-22,7873,4153,"[""Phone"", ""Headphones""]",3835.58,"{"""": ""20%""}",124482,1,Asia +2024-05-11,7874,2663,"[""Tablet""]",1798.29,"{""seasonal"": ""26%""}",50017,1,South America +2023-03-02,7875,6686,"[""Keyboard"", ""Tablet"", ""Charger""]",3075.01,"{""seasonal"": ""23%""}",12563,0,Asia +2024-11-28,7876,1856,"[""Tablet"", ""Laptop""]",1924.92,"{""seasonal"": ""13%""}",274024,1,Asia +2024-06-28,7877,995,"[""Phone"", ""Wireless Mouse""]",2473.19,"{""seasonal"": ""24%""}",172428,0,Africa +2024-03-29,7878,4622,"[""Phone"", ""Monitor"", ""Charger""]",63.95,{},50067,1,Europe +2023-03-11,7879,2214,"[""Laptop"", ""Wireless Mouse""]",4613.92,{},121125,1,Africa +2023-12-25,7880,4289,"[""Headphones"", ""Laptop""]",3672.6,{},4046,1,South America +2023-02-20,7881,7569,"[""Charger"", ""Monitor""]",1776.8,{},69952,0,Asia +2024-12-31,7882,42,"[""Tablet"", ""Monitor""]",479.85,"{""promo"": ""15%""}",244348,1,Europe +2023-04-28,7883,155,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2896.83,{},70072,0,Europe +2023-01-08,7884,7138,"[""Keyboard"", ""Tablet"", ""Monitor""]",4147.86,"{"""": ""26%""}",136697,1,South America +2023-09-22,7885,931,"[""Headphones""]",3960.49,{},278202,1,Europe +2024-01-12,7886,2063,"[""Keyboard"", ""Laptop""]",971.55,{},72130,1,Asia +2023-10-22,7887,5634,"[""Wireless Mouse"", ""Phone""]",4851.08,"{""seasonal"": ""8%""}",110901,0,North America +2024-04-10,7888,9491,"[""Keyboard"", ""Laptop""]",2856.33,{},45562,0,North America +2023-10-02,7889,9747,"[""Monitor""]",1420.45,"{""seasonal"": ""22%""}",142056,0,North America +2023-06-10,7890,4819,"[""Monitor"", ""Tablet"", ""Keyboard""]",3396.52,{},269319,1,Africa +2023-06-01,7891,4513,"[""Tablet"", ""Monitor""]",4915.81,{},212599,0,North America +2023-05-16,7892,8442,"[""Tablet""]",4827.24,"{""seasonal"": ""20%""}",273583,0,Africa +2024-09-10,7893,3700,"[""Monitor""]",736.12,{},231659,0,Europe +2023-11-12,7894,1698,"[""Wireless Mouse""]",2114.67,"{""promo"": ""11%""}",270047,1,Asia +2024-11-13,7895,1401,"[""Keyboard"", ""Monitor"", ""Charger""]",4055.39,"{""seasonal"": ""13%""}",286836,0,Asia +2024-11-29,7896,1155,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3465.46,{},256602,0,Africa +2023-12-11,7897,4347,"[""Tablet"", ""Monitor"", ""Headphones""]",2571.59,{},259010,1,South America +2024-05-24,7898,4376,"[""Laptop""]",309.11,{},24300,1,North America +2024-09-17,7899,1987,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1520.89,{},72162,0,South America +2024-10-23,7900,6406,"[""Phone"", ""Keyboard""]",3517.35,{},128475,1,North America +2023-08-23,7901,8401,"[""Headphones"", ""Tablet""]",2476.14,"{""promo"": ""24%""}",162912,0,Africa +2023-09-18,7902,6085,"[""Phone"", ""Monitor""]",4213.14,{},21551,0,Europe +2024-05-27,7903,4521,"[""Monitor"", ""Wireless Mouse""]",4508.25,{},90276,1,Asia +2023-01-13,7904,2682,"[""Charger"", ""Tablet"", ""Keyboard""]",3638.0,{},115557,0,Africa +2024-06-06,7905,5862,"[""Charger"", ""Phone"", ""Monitor""]",266.68,{},79727,0,Europe +2023-09-28,7906,8975,"[""Monitor"", ""Tablet"", ""Laptop""]",2326.72,{},225408,1,Africa +2024-09-08,7907,8085,"[""Tablet"", ""Wireless Mouse""]",2977.97,"{""loyalty"": ""20%""}",216297,0,Europe +2024-02-10,7908,5974,"[""Laptop"", ""Tablet"", ""Monitor""]",123.88,"{"""": ""16%""}",161018,0,Asia +2023-06-24,7909,7650,"[""Laptop"", ""Tablet""]",3028.97,{},191071,1,Asia +2024-10-15,7910,5314,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4546.09,"{""promo"": ""8%""}",239632,0,Africa +2024-01-21,7911,710,"[""Tablet"", ""Headphones"", ""Monitor""]",2364.07,{},126222,1,Europe +2024-04-29,7912,4942,"[""Tablet"", ""Monitor""]",362.04,"{"""": ""28%""}",202663,1,Asia +2023-03-22,7913,9490,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4520.81,"{"""": ""10%""}",179361,1,Africa +2023-09-09,7914,7727,"[""Headphones""]",174.96,"{""promo"": ""26%""}",23972,0,Asia +2024-07-21,7915,5418,"[""Laptop"", ""Headphones""]",1236.29,"{"""": ""14%""}",21826,1,Europe +2024-12-19,7916,7531,"[""Wireless Mouse""]",499.63,{},25767,0,Africa +2023-10-29,7917,4381,"[""Charger"", ""Headphones""]",1076.28,{},183890,0,Asia +2023-03-03,7918,5026,"[""Keyboard"", ""Tablet""]",3877.28,{},260942,0,Africa +2023-09-05,7919,5854,"[""Headphones"", ""Keyboard"", ""Tablet""]",1495.33,"{""loyalty"": ""27%""}",136645,1,Asia +2023-12-12,7920,2312,"[""Laptop"", ""Phone""]",2160.37,"{""seasonal"": ""17%""}",288618,1,Asia +2023-10-15,7921,8667,"[""Keyboard""]",1840.78,{},160379,1,South America +2023-11-09,7922,6502,"[""Tablet"", ""Charger""]",4615.56,"{""seasonal"": ""25%""}",59125,1,Africa +2023-09-05,7923,2571,"[""Laptop""]",4362.89,{},290553,1,Africa +2024-10-21,7924,6789,"[""Keyboard"", ""Tablet"", ""Monitor""]",4021.74,"{"""": ""23%""}",80037,1,Asia +2023-07-16,7925,8915,"[""Phone""]",4029.72,{},198663,0,Europe +2023-07-01,7926,27,"[""Monitor"", ""Charger"", ""Tablet""]",706.33,{},235189,1,South America +2023-07-13,7927,6468,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2893.39,{},208217,0,Europe +2023-09-25,7928,4714,"[""Laptop""]",2032.11,{},233093,1,Asia +2024-07-28,7929,892,"[""Headphones"", ""Monitor""]",3544.59,"{""seasonal"": ""9%""}",94954,1,Africa +2024-02-14,7930,4581,"[""Headphones""]",1566.78,"{""loyalty"": ""15%""}",9421,0,Africa +2024-11-20,7931,8738,"[""Headphones"", ""Keyboard""]",1950.52,{},14015,0,Africa +2024-08-01,7932,9950,"[""Charger"", ""Phone""]",2021.6,"{""promo"": ""18%""}",67601,1,Africa +2023-08-13,7933,3075,"[""Laptop""]",1623.28,"{""promo"": ""12%""}",242610,1,Asia +2023-10-08,7934,5664,"[""Wireless Mouse""]",2757.9,{},242863,1,South America +2023-10-07,7935,2907,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4429.76,"{""seasonal"": ""6%""}",256548,1,Europe +2024-04-05,7936,329,"[""Laptop"", ""Keyboard"", ""Tablet""]",1887.46,{},12695,1,South America +2024-12-28,7937,9737,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",203.84,{},163635,1,Europe +2023-03-23,7938,5062,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4181.99,{},180909,1,Europe +2024-08-16,7939,8963,"[""Tablet""]",4150.96,{},208618,0,Europe +2024-07-23,7940,8731,"[""Charger""]",4844.81,"{""promo"": ""15%""}",48925,0,South America +2023-09-09,7941,382,"[""Headphones"", ""Monitor"", ""Laptop""]",2409.92,{},196128,0,Asia +2024-07-30,7942,7553,"[""Keyboard"", ""Monitor""]",117.23,{},115037,0,South America +2023-11-26,7943,6663,"[""Charger"", ""Wireless Mouse""]",3064.5,"{"""": ""20%""}",95960,0,Asia +2024-09-25,7944,8076,"[""Monitor"", ""Phone""]",3568.32,{},294442,0,South America +2024-03-24,7945,4458,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2616.95,{},171350,0,Asia +2023-03-22,7946,9858,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",560.99,"{""loyalty"": ""18%""}",205002,1,South America +2023-01-05,7947,1193,"[""Phone"", ""Monitor""]",1043.3,"{""promo"": ""11%""}",8344,1,Africa +2023-07-05,7948,8361,"[""Phone""]",474.84,"{""promo"": ""8%""}",173021,0,South America +2023-08-09,7949,7460,"[""Charger"", ""Monitor""]",1631.77,"{""seasonal"": ""10%""}",111566,1,Asia +2024-09-12,7950,7229,"[""Monitor"", ""Laptop""]",305.83,{},235173,1,North America +2023-03-03,7951,6270,"[""Charger""]",838.17,{},120421,1,Africa +2024-09-16,7952,2844,"[""Keyboard""]",4853.47,"{"""": ""13%""}",188876,1,Africa +2024-02-25,7953,4099,"[""Keyboard""]",4892.38,{},213291,1,South America +2023-10-23,7954,3894,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3505.89,{},60740,0,North America +2024-05-12,7955,6914,"[""Headphones"", ""Phone""]",2042.72,{},5312,0,Europe +2024-05-31,7956,6982,"[""Headphones"", ""Charger"", ""Laptop""]",116.62,{},75579,1,Europe +2023-01-27,7957,7617,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1332.13,{},253561,1,Asia +2023-06-01,7958,6495,"[""Laptop""]",4949.67,{},89188,0,Europe +2023-12-19,7959,2755,"[""Headphones"", ""Charger"", ""Tablet""]",1145.19,"{"""": ""20%""}",98612,1,Asia +2023-02-28,7960,3345,"[""Keyboard"", ""Headphones"", ""Phone""]",485.25,"{""promo"": ""22%""}",23443,1,Europe +2023-10-21,7961,3331,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",127.62,{},122026,1,Europe +2024-06-02,7962,2765,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",115.73,"{"""": ""6%""}",105009,1,Europe +2024-10-04,7963,9271,"[""Headphones"", ""Keyboard""]",1470.25,"{"""": ""16%""}",65580,1,South America +2024-10-09,7964,5066,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4867.34,{},219377,0,Africa +2024-07-30,7965,5863,"[""Keyboard""]",1930.65,{},72206,0,Asia +2023-02-10,7966,8458,"[""Monitor"", ""Laptop""]",3229.13,"{"""": ""30%""}",231665,0,North America +2023-05-07,7967,2700,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3767.16,{},14873,0,Asia +2024-11-17,7968,2773,"[""Keyboard"", ""Monitor""]",3301.46,"{""seasonal"": ""28%""}",176434,0,South America +2024-12-08,7969,9509,"[""Tablet"", ""Headphones""]",2335.14,{},259910,1,Asia +2024-12-22,7970,3053,"[""Laptop"", ""Tablet"", ""Keyboard""]",4759.57,{},176672,0,North America +2024-04-13,7971,2729,"[""Monitor"", ""Phone"", ""Keyboard""]",4895.45,{},279237,1,Europe +2023-04-27,7972,8295,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1865.04,"{""seasonal"": ""5%""}",74400,0,South America +2024-05-05,7973,3961,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",132.9,"{"""": ""20%""}",43161,0,Asia +2024-11-06,7974,4294,"[""Laptop"", ""Keyboard""]",3882.34,"{""promo"": ""30%""}",22709,1,Africa +2024-12-31,7975,133,"[""Wireless Mouse"", ""Monitor""]",2358.24,{},51484,1,Africa +2024-04-19,7976,5351,"[""Tablet""]",1057.32,"{"""": ""19%""}",266483,1,Africa +2024-10-19,7977,3214,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1684.43,{},88919,0,Asia +2023-06-22,7978,2380,"[""Monitor"", ""Tablet""]",1754.69,{},41497,0,South America +2024-05-24,7979,9989,"[""Wireless Mouse"", ""Phone""]",3705.49,{},99805,1,Asia +2024-04-29,7980,6697,"[""Charger"", ""Tablet""]",4032.83,"{""seasonal"": ""27%""}",226519,1,Africa +2024-09-13,7981,1798,"[""Wireless Mouse"", ""Headphones""]",3011.18,{},79894,0,South America +2024-06-15,7982,980,"[""Laptop"", ""Tablet""]",4186.89,"{"""": ""23%""}",212859,0,South America +2023-12-14,7983,7501,"[""Tablet""]",4776.68,"{""seasonal"": ""29%""}",235710,0,North America +2024-01-19,7984,213,"[""Headphones""]",1109.04,{},229802,0,Asia +2024-01-23,7985,5276,"[""Phone"", ""Tablet"", ""Monitor""]",655.62,{},184114,0,Asia +2024-02-16,7986,9077,"[""Monitor"", ""Tablet"", ""Keyboard""]",481.12,{},59030,0,Europe +2024-01-16,7987,3542,"[""Laptop""]",3250.84,"{""seasonal"": ""17%""}",173831,0,North America +2023-02-20,7988,2169,"[""Keyboard"", ""Phone""]",3700.14,"{"""": ""12%""}",91843,0,North America +2024-12-24,7989,6021,"[""Charger"", ""Monitor""]",1797.0,"{""promo"": ""9%""}",273810,0,North America +2023-03-11,7990,4173,"[""Wireless Mouse""]",728.94,{},37468,0,Asia +2024-12-24,7991,5514,"[""Phone"", ""Monitor""]",3748.75,{},27900,1,South America +2024-01-18,7992,4051,"[""Monitor""]",4619.48,"{""promo"": ""7%""}",114025,1,South America +2024-02-15,7993,5689,"[""Phone"", ""Headphones""]",2744.37,{},114493,0,Europe +2023-01-13,7994,2149,"[""Headphones"", ""Wireless Mouse""]",2044.03,"{""promo"": ""7%""}",79130,0,Europe +2023-01-08,7995,1806,"[""Tablet""]",1442.12,{},208006,0,Africa +2023-11-28,7996,9611,"[""Tablet""]",1775.53,"{""seasonal"": ""25%""}",234511,0,South America +2023-07-10,7997,5397,"[""Monitor"", ""Charger"", ""Phone""]",2130.36,"{"""": ""16%""}",161124,1,South America +2023-02-05,7998,1554,"[""Monitor"", ""Keyboard"", ""Charger""]",3255.16,{},200764,1,North America +2024-06-30,7999,9314,"[""Charger""]",2843.66,{},242890,1,Asia +2023-03-17,8000,8428,"[""Laptop""]",4826.32,"{""promo"": ""10%""}",216115,0,South America +2024-04-01,8001,6097,"[""Laptop""]",512.07,{},65237,0,Asia +2023-09-22,8002,3937,"[""Wireless Mouse""]",1491.12,"{""loyalty"": ""13%""}",172164,1,South America +2023-07-12,8003,6705,"[""Keyboard""]",2384.93,{},64565,0,North America +2023-02-02,8004,9705,"[""Wireless Mouse"", ""Monitor""]",3664.88,{},41100,0,North America +2024-11-09,8005,8738,"[""Charger""]",2158.8,"{"""": ""26%""}",159298,1,Africa +2024-03-11,8006,9525,"[""Monitor"", ""Keyboard""]",1397.09,"{""seasonal"": ""30%""}",140170,0,Asia +2024-12-08,8007,3508,"[""Charger""]",2679.45,{},124640,1,Asia +2024-10-19,8008,8752,"[""Tablet""]",609.17,{},73305,1,Africa +2024-07-03,8009,8054,"[""Monitor"", ""Laptop"", ""Keyboard""]",2650.72,"{""promo"": ""13%""}",63544,0,Africa +2023-08-31,8010,3106,"[""Headphones"", ""Laptop"", ""Tablet""]",3277.76,"{""promo"": ""19%""}",281785,0,Europe +2023-03-26,8011,5504,"[""Tablet"", ""Charger""]",188.14,{},115262,0,Europe +2023-07-28,8012,2536,"[""Laptop"", ""Tablet""]",2076.35,"{""seasonal"": ""18%""}",133738,0,Africa +2023-08-04,8013,683,"[""Tablet"", ""Laptop""]",1471.74,"{""seasonal"": ""19%""}",131249,1,South America +2023-09-24,8014,1030,"[""Keyboard"", ""Tablet"", ""Headphones""]",3706.02,"{""seasonal"": ""20%""}",171217,1,Europe +2023-07-27,8015,4762,"[""Tablet"", ""Monitor"", ""Phone""]",529.03,"{"""": ""30%""}",81634,0,South America +2024-06-06,8016,6313,"[""Tablet"", ""Headphones"", ""Phone""]",1524.79,"{"""": ""17%""}",157231,0,Asia +2024-05-22,8017,6344,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1934.49,{},91727,0,Asia +2023-04-09,8018,7439,"[""Phone"", ""Headphones"", ""Charger""]",3194.56,{},273683,1,Asia +2023-05-10,8019,8926,"[""Phone"", ""Laptop"", ""Keyboard""]",1042.34,{},248266,0,Europe +2024-01-18,8020,6984,"[""Tablet"", ""Phone""]",449.74,{},247567,1,North America +2023-01-17,8021,2304,"[""Wireless Mouse"", ""Monitor""]",2768.21,"{""promo"": ""15%""}",8382,0,Europe +2024-10-23,8022,4816,"[""Wireless Mouse"", ""Tablet""]",3074.36,"{""promo"": ""15%""}",12692,1,Europe +2023-03-21,8023,4635,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2257.7,"{""loyalty"": ""27%""}",292013,1,Europe +2024-03-10,8024,2197,"[""Charger""]",2045.07,"{""promo"": ""29%""}",56969,0,South America +2023-01-09,8025,5811,"[""Wireless Mouse"", ""Phone""]",4038.74,{},11844,0,North America +2024-01-02,8026,5390,"[""Keyboard"", ""Charger""]",3774.81,"{""promo"": ""25%""}",77584,1,Africa +2024-10-24,8027,3181,"[""Keyboard"", ""Tablet""]",1370.74,"{""seasonal"": ""30%""}",175255,0,North America +2023-10-21,8028,5604,"[""Monitor""]",3951.19,{},60157,1,Europe +2023-12-30,8029,3183,"[""Laptop"", ""Tablet""]",933.84,{},293665,1,Asia +2024-07-27,8030,3026,"[""Monitor"", ""Headphones"", ""Tablet""]",773.36,"{"""": ""18%""}",90611,1,South America +2024-05-02,8031,1152,"[""Tablet""]",1391.3,{},289160,1,South America +2024-05-03,8032,1623,"[""Headphones"", ""Phone"", ""Laptop""]",90.5,"{""seasonal"": ""17%""}",6980,1,Africa +2024-08-03,8033,6127,"[""Phone""]",3669.37,"{"""": ""11%""}",20992,1,Europe +2023-11-06,8034,8512,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2498.31,{},112469,0,Europe +2024-01-26,8035,1489,"[""Headphones""]",4418.39,{},252337,0,Asia +2023-01-12,8036,3107,"[""Charger"", ""Keyboard"", ""Tablet""]",4194.36,{},226855,1,North America +2024-02-07,8037,7748,"[""Keyboard"", ""Tablet""]",99.52,"{""promo"": ""16%""}",172560,1,Asia +2024-04-27,8038,6853,"[""Tablet"", ""Keyboard"", ""Laptop""]",267.63,{},139683,0,Europe +2024-08-04,8039,2284,"[""Monitor""]",434.72,"{""seasonal"": ""21%""}",234731,1,South America +2024-02-22,8040,2625,"[""Laptop"", ""Headphones""]",3468.78,{},40370,0,South America +2024-03-19,8041,5565,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3000.1,"{"""": ""30%""}",49684,0,Europe +2023-07-15,8042,3426,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1903.4,{},90722,1,Europe +2023-11-04,8043,6559,"[""Tablet""]",376.75,{},21514,0,Africa +2024-04-01,8044,9231,"[""Tablet"", ""Charger""]",2026.66,{},22599,1,North America +2023-01-14,8045,2277,"[""Keyboard""]",1353.56,"{""seasonal"": ""27%""}",29111,1,Asia +2023-10-02,8046,2583,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3682.96,"{"""": ""18%""}",223565,1,North America +2023-04-19,8047,9269,"[""Phone"", ""Charger""]",1948.24,"{""loyalty"": ""14%""}",10788,0,Africa +2023-06-28,8048,372,"[""Laptop"", ""Keyboard""]",407.72,"{""promo"": ""8%""}",192959,0,North America +2023-08-03,8049,3061,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",248.67,"{"""": ""9%""}",164649,1,Asia +2024-07-23,8050,6763,"[""Charger"", ""Tablet"", ""Headphones""]",1990.36,"{"""": ""28%""}",71470,0,North America +2023-06-27,8051,3893,"[""Headphones"", ""Tablet"", ""Phone""]",1695.98,"{"""": ""20%""}",41431,0,Africa +2023-05-01,8052,6551,"[""Keyboard""]",2830.57,{},274047,1,Europe +2024-11-08,8053,6405,"[""Laptop"", ""Tablet""]",4536.94,{},114173,1,Asia +2023-03-19,8054,4413,"[""Wireless Mouse"", ""Charger""]",309.07,{},223974,0,Africa +2024-12-18,8055,2987,"[""Charger""]",2857.0,{},142689,0,Asia +2024-07-08,8056,5919,"[""Headphones"", ""Charger""]",3737.87,{},74094,0,North America +2024-02-27,8057,9420,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1411.76,{},82388,0,North America +2024-03-25,8058,4992,"[""Tablet""]",2553.81,{},295307,1,South America +2024-06-04,8059,1336,"[""Headphones"", ""Charger""]",4803.1,{},78794,1,North America +2024-07-17,8060,4094,"[""Laptop""]",3506.98,{},250835,0,South America +2023-07-12,8061,4562,"[""Charger"", ""Phone""]",533.0,{},227701,1,Europe +2024-01-22,8062,4170,"[""Laptop""]",1077.24,"{""promo"": ""5%""}",57762,1,Europe +2024-02-16,8063,1752,"[""Phone"", ""Charger""]",4434.48,{},141490,1,Europe +2024-02-27,8064,218,"[""Headphones""]",3858.86,"{""promo"": ""20%""}",235666,0,Europe +2024-05-07,8065,8578,"[""Tablet"", ""Monitor"", ""Laptop""]",321.33,"{""seasonal"": ""20%""}",276353,1,Europe +2023-03-17,8066,9746,"[""Tablet""]",4724.63,"{""loyalty"": ""28%""}",46286,1,Asia +2023-06-17,8067,1279,"[""Wireless Mouse""]",4778.88,"{""loyalty"": ""30%""}",131691,1,North America +2023-04-05,8068,5854,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3686.63,"{""loyalty"": ""17%""}",170194,1,North America +2024-11-29,8069,7733,"[""Wireless Mouse""]",4017.45,"{""loyalty"": ""11%""}",198341,1,North America +2023-02-09,8070,9212,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3960.09,{},16357,0,Africa +2023-02-09,8071,7370,"[""Phone"", ""Keyboard""]",287.36,{},148736,0,South America +2024-09-12,8072,1861,"[""Keyboard"", ""Tablet"", ""Headphones""]",4759.14,"{""loyalty"": ""24%""}",151167,1,Europe +2023-03-27,8073,3690,"[""Laptop"", ""Monitor""]",974.46,{},239290,0,Asia +2023-11-22,8074,1521,"[""Charger"", ""Headphones""]",1653.03,"{"""": ""11%""}",171283,1,Asia +2023-11-13,8075,7222,"[""Laptop""]",4032.76,"{""loyalty"": ""17%""}",266633,1,Asia +2024-08-09,8076,9016,"[""Tablet"", ""Charger""]",1628.7,"{""seasonal"": ""12%""}",226501,0,Europe +2024-04-14,8077,6621,"[""Keyboard""]",110.87,"{""promo"": ""27%""}",28492,0,North America +2023-10-11,8078,6337,"[""Keyboard""]",4263.82,"{"""": ""5%""}",184793,1,Asia +2024-04-18,8079,3400,"[""Tablet"", ""Monitor""]",2577.84,{},26816,0,Europe +2023-11-03,8080,5174,"[""Laptop"", ""Phone""]",2324.88,"{""loyalty"": ""30%""}",137128,0,South America +2024-11-16,8081,8276,"[""Charger""]",3425.22,"{""seasonal"": ""10%""}",196303,0,North America +2024-07-16,8082,3859,"[""Charger"", ""Tablet""]",4589.3,{},172723,0,Asia +2023-08-22,8083,7690,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4908.48,{},262924,0,South America +2024-11-07,8084,4782,"[""Keyboard""]",2184.71,{},165719,0,Europe +2023-03-20,8085,4224,"[""Tablet"", ""Laptop"", ""Phone""]",2151.18,"{""promo"": ""9%""}",235231,0,South America +2023-07-18,8086,8990,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",378.04,"{"""": ""28%""}",86630,0,Asia +2023-05-25,8087,7654,"[""Laptop""]",2723.67,{},43066,1,North America +2023-11-28,8088,6432,"[""Tablet""]",1454.02,{},189643,0,South America +2023-04-27,8089,8147,"[""Monitor"", ""Tablet"", ""Charger""]",2925.98,"{"""": ""5%""}",101732,0,Asia +2024-04-29,8090,3961,"[""Laptop"", ""Headphones""]",4801.61,{},80482,1,Africa +2024-05-26,8091,8064,"[""Charger"", ""Monitor"", ""Headphones""]",4436.24,{},268962,1,Asia +2024-05-01,8092,974,"[""Monitor""]",3799.69,{},175063,0,South America +2023-03-02,8093,5868,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3050.18,{},9883,0,Asia +2024-03-12,8094,9928,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",463.05,{},261515,1,Asia +2023-11-06,8095,8225,"[""Phone"", ""Tablet"", ""Monitor""]",2425.42,{},58087,0,North America +2023-05-05,8096,5395,"[""Tablet"", ""Wireless Mouse""]",2040.74,"{""promo"": ""10%""}",192921,0,Europe +2024-06-26,8097,7767,"[""Headphones""]",2482.5,"{"""": ""30%""}",221311,1,Europe +2024-04-28,8098,6722,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4583.39,{},11584,0,Africa +2023-03-17,8099,1392,"[""Phone""]",842.47,{},80209,0,South America +2024-06-23,8100,2525,"[""Keyboard""]",818.15,{},141322,1,Europe +2023-11-09,8101,3650,"[""Keyboard"", ""Phone""]",3993.98,{},56582,1,Africa +2023-12-01,8102,8181,"[""Charger"", ""Tablet""]",2584.73,{},110021,0,Asia +2023-11-05,8103,6459,"[""Charger""]",1273.01,"{""loyalty"": ""22%""}",115019,1,Europe +2024-11-18,8104,1931,"[""Wireless Mouse"", ""Tablet""]",1748.26,{},45527,0,Africa +2024-07-18,8105,6493,"[""Keyboard"", ""Phone"", ""Charger""]",4568.64,{},17449,0,South America +2024-09-26,8106,2298,"[""Monitor"", ""Laptop""]",1819.89,"{""seasonal"": ""25%""}",45553,0,Europe +2024-09-17,8107,2111,"[""Keyboard"", ""Laptop""]",2345.48,{},63508,1,North America +2023-12-10,8108,2019,"[""Keyboard"", ""Monitor""]",1669.73,"{""seasonal"": ""29%""}",150678,0,Europe +2024-03-22,8109,3749,"[""Wireless Mouse"", ""Laptop""]",4935.86,{},42656,1,North America +2024-11-18,8110,4982,"[""Phone"", ""Tablet""]",4845.87,"{""loyalty"": ""15%""}",144187,0,Asia +2023-12-20,8111,5617,"[""Charger"", ""Monitor"", ""Tablet""]",3992.18,"{"""": ""19%""}",32267,1,South America +2024-03-03,8112,8094,"[""Headphones"", ""Wireless Mouse""]",3790.04,{},215333,0,Africa +2023-07-11,8113,3788,"[""Charger"", ""Phone""]",3704.41,{},85161,0,South America +2024-09-26,8114,2499,"[""Headphones"", ""Tablet"", ""Keyboard""]",1504.38,"{"""": ""28%""}",97209,1,Africa +2023-06-11,8115,3559,"[""Charger"", ""Tablet""]",945.09,{},67979,1,Africa +2024-02-16,8116,6690,"[""Keyboard"", ""Wireless Mouse""]",535.31,{},277558,0,Asia +2023-08-21,8117,6382,"[""Monitor""]",4112.07,{},252825,1,South America +2024-07-23,8118,616,"[""Keyboard"", ""Monitor""]",2093.67,{},31499,1,Europe +2024-02-27,8119,8013,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",223.87,{},288377,1,North America +2023-10-14,8120,1601,"[""Tablet"", ""Keyboard""]",3209.85,"{""loyalty"": ""29%""}",112652,1,Europe +2023-12-16,8121,106,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4370.0,{},117807,1,North America +2023-06-23,8122,9894,"[""Wireless Mouse"", ""Tablet""]",948.23,{},273088,1,Europe +2023-06-26,8123,2698,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1463.33,{},146561,1,Africa +2023-02-03,8124,1809,"[""Headphones"", ""Laptop"", ""Charger""]",4872.61,{},108278,1,Asia +2024-09-08,8125,5406,"[""Laptop"", ""Charger""]",1426.53,"{""loyalty"": ""22%""}",189630,1,North America +2024-06-19,8126,6772,"[""Monitor"", ""Laptop"", ""Phone""]",1957.67,{},119397,1,Europe +2024-03-02,8127,7196,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",159.91,{},175700,0,Africa +2024-03-13,8128,5642,"[""Laptop""]",197.29,"{""loyalty"": ""6%""}",151300,0,Europe +2023-08-29,8129,3538,"[""Charger"", ""Headphones"", ""Monitor""]",4941.82,{},201947,1,North America +2024-01-04,8130,3824,"[""Headphones""]",4503.55,{},171849,0,Asia +2023-12-09,8131,2559,"[""Phone"", ""Wireless Mouse""]",711.16,"{""promo"": ""16%""}",24249,1,Africa +2024-12-09,8132,4687,"[""Keyboard"", ""Laptop"", ""Tablet""]",4808.37,"{""promo"": ""20%""}",61485,1,South America +2024-11-21,8133,9887,"[""Phone"", ""Laptop""]",2477.5,{},299144,1,North America +2024-07-06,8134,2302,"[""Charger"", ""Phone"", ""Headphones""]",1929.57,{},17881,0,Europe +2023-05-29,8135,5428,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3327.75,"{"""": ""7%""}",246669,0,Europe +2024-07-30,8136,4522,"[""Keyboard""]",2700.21,{},247712,0,South America +2023-02-15,8137,4306,"[""Keyboard""]",345.06,{},289233,0,Asia +2024-04-27,8138,4947,"[""Phone"", ""Laptop"", ""Tablet""]",1110.07,"{"""": ""9%""}",62983,0,Africa +2023-01-24,8139,7607,"[""Tablet"", ""Headphones"", ""Phone""]",3500.45,"{""promo"": ""17%""}",60732,0,North America +2023-05-17,8140,2177,"[""Wireless Mouse""]",1856.36,"{""seasonal"": ""23%""}",214975,0,Africa +2024-01-21,8141,6384,"[""Headphones"", ""Wireless Mouse""]",2464.6,{},156658,0,Asia +2024-08-06,8142,9671,"[""Monitor"", ""Tablet""]",4270.26,"{""promo"": ""11%""}",171682,1,Asia +2024-07-30,8143,7216,"[""Tablet"", ""Wireless Mouse""]",2590.7,{},100243,1,South America +2023-12-11,8144,3213,"[""Charger"", ""Keyboard"", ""Monitor""]",3825.25,"{""loyalty"": ""28%""}",110291,1,Europe +2023-01-06,8145,4491,"[""Tablet""]",629.29,{},174336,0,Europe +2024-10-17,8146,3952,"[""Headphones""]",2897.39,{},176582,0,Africa +2024-05-21,8147,3297,"[""Monitor""]",3304.16,{},102143,1,North America +2023-01-08,8148,8036,"[""Tablet"", ""Keyboard""]",4605.81,"{"""": ""28%""}",15898,0,South America +2023-12-06,8149,4701,"[""Tablet""]",2209.53,{},91963,0,Africa +2024-11-29,8150,8352,"[""Monitor"", ""Tablet""]",4997.61,"{""promo"": ""17%""}",10121,1,Africa +2023-10-21,8151,4461,"[""Tablet"", ""Headphones""]",4261.39,"{""seasonal"": ""27%""}",49237,0,Africa +2023-11-17,8152,4462,"[""Phone""]",191.12,{},154333,0,North America +2023-05-15,8153,7307,"[""Phone""]",1417.01,"{""seasonal"": ""21%""}",27544,1,South America +2023-11-06,8154,9691,"[""Laptop"", ""Charger""]",1165.97,"{""seasonal"": ""20%""}",92499,1,South America +2023-05-11,8155,6944,"[""Keyboard""]",3417.9,{},53594,1,North America +2024-04-28,8156,1459,"[""Charger""]",4730.86,{},258774,1,Europe +2024-01-02,8157,6095,"[""Phone"", ""Tablet"", ""Keyboard""]",2215.6,{},217318,0,North America +2024-05-12,8158,4104,"[""Monitor"", ""Keyboard"", ""Phone""]",1925.51,{},258335,0,South America +2023-06-08,8159,7596,"[""Tablet"", ""Laptop"", ""Keyboard""]",1464.17,"{""promo"": ""10%""}",21359,0,Africa +2024-08-07,8160,6020,"[""Tablet"", ""Monitor""]",4248.44,"{""promo"": ""25%""}",211572,0,South America +2024-05-31,8161,8308,"[""Monitor"", ""Laptop""]",2766.02,{},81892,0,South America +2023-02-26,8162,9717,"[""Laptop"", ""Headphones"", ""Monitor""]",257.5,"{""loyalty"": ""7%""}",262469,0,North America +2023-11-08,8163,7568,"[""Laptop"", ""Keyboard"", ""Phone""]",3603.69,{},246049,1,Europe +2023-05-22,8164,4832,"[""Wireless Mouse"", ""Monitor""]",4390.72,{},9169,1,North America +2024-11-30,8165,4219,"[""Tablet"", ""Monitor""]",4537.67,"{"""": ""27%""}",121369,0,Africa +2024-03-17,8166,2711,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3106.63,"{"""": ""23%""}",181882,0,South America +2024-01-27,8167,5462,"[""Tablet"", ""Monitor"", ""Laptop""]",3218.12,"{""loyalty"": ""29%""}",103387,1,Africa +2024-12-29,8168,6767,"[""Monitor""]",4922.37,{},233266,0,Africa +2023-03-19,8169,3023,"[""Keyboard"", ""Monitor""]",897.42,{},73971,1,South America +2023-01-30,8170,2093,"[""Keyboard""]",2597.02,{},57567,1,Africa +2023-06-08,8171,1319,"[""Monitor"", ""Keyboard"", ""Phone""]",189.86,"{""loyalty"": ""30%""}",151586,0,Africa +2023-12-12,8172,3153,"[""Monitor"", ""Laptop"", ""Keyboard""]",2901.16,{},186603,1,Asia +2024-10-05,8173,1762,"[""Charger"", ""Keyboard"", ""Monitor""]",3336.21,{},206690,0,Asia +2023-04-27,8174,8475,"[""Charger"", ""Laptop""]",984.65,{},90986,1,North America +2024-06-24,8175,2620,"[""Keyboard"", ""Monitor"", ""Laptop""]",4276.02,{},35363,0,Asia +2023-03-07,8176,2113,"[""Keyboard"", ""Monitor""]",3838.49,"{""seasonal"": ""6%""}",27848,0,Africa +2023-08-01,8177,2230,"[""Charger"", ""Tablet"", ""Keyboard""]",2318.97,"{""seasonal"": ""8%""}",7888,0,Asia +2024-03-21,8178,2791,"[""Monitor"", ""Tablet"", ""Charger""]",1352.2,{},292607,0,Africa +2023-10-01,8179,3399,"[""Monitor"", ""Headphones"", ""Phone""]",1689.61,{},92291,0,Europe +2023-05-15,8180,3880,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2920.46,{},229786,0,South America +2024-10-12,8181,1226,"[""Phone"", ""Laptop""]",779.39,{},67783,0,Asia +2024-12-07,8182,2250,"[""Charger"", ""Headphones""]",892.34,{},206015,1,Europe +2023-03-06,8183,485,"[""Wireless Mouse""]",1276.25,"{""loyalty"": ""13%""}",144483,0,Africa +2023-02-27,8184,7232,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2177.66,"{""seasonal"": ""21%""}",279222,0,Africa +2023-07-03,8185,4209,"[""Laptop"", ""Phone""]",2314.55,"{""seasonal"": ""24%""}",125378,1,Africa +2023-09-13,8186,7301,"[""Charger"", ""Tablet""]",3032.23,{},149836,1,Europe +2023-12-20,8187,6118,"[""Charger""]",267.77,{},217330,1,Africa +2024-06-02,8188,397,"[""Tablet"", ""Keyboard"", ""Monitor""]",487.58,{},86695,1,North America +2024-12-26,8189,5592,"[""Phone""]",444.11,{},89880,1,Europe +2023-01-01,8190,1344,"[""Headphones"", ""Phone""]",2239.14,{},124664,1,North America +2023-07-09,8191,4241,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2425.06,{},7467,1,Europe +2023-06-16,8192,3286,"[""Tablet"", ""Headphones""]",767.61,{},215550,0,South America +2023-02-10,8193,3228,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1449.11,{},35747,1,Europe +2024-07-04,8194,4078,"[""Tablet""]",2652.51,{},113486,1,North America +2023-05-25,8195,9507,"[""Monitor""]",2403.23,{},288438,1,Asia +2023-10-22,8196,5955,"[""Phone"", ""Charger""]",1901.53,"{""loyalty"": ""27%""}",12636,0,Europe +2024-04-12,8197,7026,"[""Headphones"", ""Laptop"", ""Keyboard""]",1016.81,{},156337,0,South America +2024-05-07,8198,2082,"[""Monitor""]",4568.66,"{""promo"": ""12%""}",165348,0,South America +2024-03-18,8199,7003,"[""Monitor"", ""Headphones""]",905.65,"{""promo"": ""19%""}",147862,1,Europe +2024-02-07,8200,5637,"[""Wireless Mouse""]",2103.39,{},74947,0,South America +2023-07-03,8201,4838,"[""Monitor""]",733.65,"{""loyalty"": ""22%""}",94581,0,Africa +2023-08-14,8202,4897,"[""Laptop""]",2300.94,"{""loyalty"": ""8%""}",18549,1,South America +2024-05-06,8203,6931,"[""Keyboard""]",581.6,{},155082,0,South America +2024-11-14,8204,3211,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2919.67,"{""loyalty"": ""21%""}",188061,0,Europe +2024-05-15,8205,7958,"[""Laptop"", ""Headphones""]",1471.85,{},194250,0,South America +2024-03-15,8206,6864,"[""Phone""]",4449.69,"{""promo"": ""20%""}",100008,0,South America +2023-06-16,8207,9762,"[""Headphones"", ""Laptop""]",985.74,"{""loyalty"": ""26%""}",231892,0,South America +2023-06-16,8208,1501,"[""Keyboard"", ""Charger"", ""Laptop""]",64.48,"{"""": ""6%""}",99003,0,South America +2023-02-24,8209,258,"[""Headphones"", ""Phone"", ""Keyboard""]",2754.63,{},186407,0,South America +2023-11-03,8210,83,"[""Phone"", ""Tablet""]",1908.73,"{"""": ""27%""}",59485,1,South America +2023-09-08,8211,4628,"[""Headphones"", ""Monitor"", ""Keyboard""]",85.38,"{"""": ""24%""}",101115,0,South America +2024-09-23,8212,9350,"[""Laptop"", ""Monitor"", ""Tablet""]",3742.53,"{""seasonal"": ""18%""}",91659,0,North America +2024-03-30,8213,6850,"[""Phone"", ""Wireless Mouse""]",3514.34,{},133209,0,Asia +2023-03-06,8214,5209,"[""Tablet"", ""Laptop""]",1511.62,{},259931,1,North America +2024-10-21,8215,7023,"[""Phone"", ""Headphones"", ""Tablet""]",3972.9,"{""promo"": ""24%""}",277059,0,Africa +2024-03-26,8216,8021,"[""Laptop""]",4646.9,{},145533,1,South America +2023-11-06,8217,1027,"[""Laptop"", ""Tablet""]",3476.76,"{"""": ""8%""}",228720,1,South America +2023-09-18,8218,3083,"[""Wireless Mouse""]",2820.23,"{""loyalty"": ""12%""}",138715,0,Asia +2023-04-12,8219,9875,"[""Monitor""]",2436.24,{},244624,1,Africa +2024-01-20,8220,2957,"[""Keyboard""]",4234.24,"{""promo"": ""22%""}",48144,0,Asia +2023-08-20,8221,3348,"[""Monitor"", ""Laptop""]",3773.88,"{"""": ""23%""}",208664,1,Africa +2023-04-01,8222,1801,"[""Keyboard"", ""Laptop"", ""Monitor""]",620.96,{},226058,1,Africa +2024-11-19,8223,3255,"[""Phone"", ""Laptop"", ""Tablet""]",78.54,{},10005,0,Europe +2024-05-02,8224,8775,"[""Tablet""]",4538.49,"{"""": ""16%""}",225944,0,Asia +2024-01-30,8225,9732,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",456.0,"{""promo"": ""23%""}",141596,1,South America +2023-08-08,8226,939,"[""Laptop"", ""Monitor""]",2688.68,{},246340,0,South America +2023-10-21,8227,6632,"[""Headphones""]",523.3,{},206895,1,Europe +2024-06-05,8228,9983,"[""Phone"", ""Headphones""]",2701.47,"{""promo"": ""8%""}",107424,0,Asia +2024-01-29,8229,9330,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2632.97,"{""promo"": ""27%""}",159606,1,Africa +2024-02-20,8230,3823,"[""Laptop"", ""Charger""]",2637.88,{},99818,0,South America +2024-02-16,8231,6492,"[""Wireless Mouse""]",2990.4,"{""seasonal"": ""10%""}",147697,0,Europe +2024-10-20,8232,2299,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3414.25,"{""promo"": ""10%""}",107015,1,North America +2023-08-14,8233,1761,"[""Phone""]",1581.82,{},251526,0,South America +2024-03-09,8234,3802,"[""Headphones"", ""Charger""]",3381.86,"{"""": ""6%""}",141835,0,Europe +2023-12-19,8235,4628,"[""Keyboard""]",2752.74,"{""promo"": ""13%""}",287387,1,Asia +2023-01-31,8236,5013,"[""Keyboard"", ""Charger""]",1688.96,{},84156,0,South America +2023-01-31,8237,8835,"[""Charger""]",4522.79,"{""promo"": ""16%""}",244483,1,South America +2024-10-18,8238,5228,"[""Keyboard"", ""Phone""]",3277.75,"{"""": ""27%""}",159970,0,South America +2024-12-22,8239,6115,"[""Laptop""]",820.65,"{"""": ""10%""}",84063,1,North America +2024-11-20,8240,1727,"[""Laptop"", ""Charger"", ""Headphones""]",4157.22,"{""seasonal"": ""25%""}",122513,1,South America +2023-11-27,8241,2014,"[""Charger""]",4700.49,"{""promo"": ""21%""}",154879,0,South America +2023-02-07,8242,9570,"[""Monitor"", ""Keyboard"", ""Laptop""]",2422.2,"{"""": ""27%""}",65363,0,Asia +2023-01-09,8243,4099,"[""Tablet""]",1763.98,"{""seasonal"": ""30%""}",269420,1,Asia +2024-07-15,8244,2569,"[""Tablet""]",2273.45,"{""promo"": ""19%""}",231960,1,Asia +2024-07-22,8245,7457,"[""Wireless Mouse"", ""Phone""]",524.96,"{""loyalty"": ""8%""}",247878,1,North America +2023-04-24,8246,6824,"[""Tablet""]",1152.42,{},54214,1,Asia +2023-12-14,8247,572,"[""Tablet""]",438.37,"{""promo"": ""16%""}",21516,0,Europe +2024-09-10,8248,3523,"[""Charger""]",1134.52,{},222653,1,Europe +2023-01-21,8249,6144,"[""Tablet"", ""Phone""]",4837.23,{},220387,1,Africa +2023-10-27,8250,2375,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1766.84,{},157846,1,North America +2024-11-04,8251,8085,"[""Wireless Mouse""]",3408.69,{},56685,1,Asia +2024-11-07,8252,3562,"[""Tablet""]",4653.83,"{"""": ""18%""}",31893,0,South America +2023-05-12,8253,9134,"[""Monitor"", ""Keyboard""]",2814.46,"{""seasonal"": ""9%""}",225178,0,Africa +2023-09-17,8254,2217,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3740.66,{},138772,0,South America +2024-07-28,8255,5947,"[""Laptop""]",2847.98,"{""promo"": ""9%""}",32879,0,North America +2024-10-26,8256,2517,"[""Charger"", ""Keyboard"", ""Monitor""]",3364.68,{},9643,0,Asia +2024-10-14,8257,945,"[""Keyboard"", ""Headphones""]",3918.24,{},293724,1,North America +2023-07-23,8258,7615,"[""Charger""]",1069.22,{},198459,0,Africa +2024-10-04,8259,3589,"[""Tablet"", ""Charger"", ""Monitor""]",4248.35,{},107947,1,South America +2023-11-28,8260,1282,"[""Phone"", ""Tablet"", ""Monitor""]",2665.79,"{"""": ""25%""}",56964,0,South America +2024-02-27,8261,4394,"[""Phone"", ""Laptop"", ""Headphones""]",198.48,{},130832,0,South America +2024-04-17,8262,6775,"[""Keyboard"", ""Monitor"", ""Laptop""]",1786.23,{},179372,0,Asia +2023-12-21,8263,9294,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",310.37,"{"""": ""24%""}",176545,0,Europe +2023-05-29,8264,348,"[""Wireless Mouse"", ""Phone""]",4177.89,{},47702,1,Asia +2023-12-29,8265,6737,"[""Keyboard""]",2830.09,"{""seasonal"": ""5%""}",165739,0,Africa +2023-12-02,8266,2334,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4540.24,{},26706,1,South America +2023-12-29,8267,5480,"[""Headphones"", ""Wireless Mouse""]",1333.52,{},231114,1,Europe +2024-06-10,8268,2590,"[""Wireless Mouse""]",4424.57,{},151326,0,Asia +2024-03-22,8269,3802,"[""Charger"", ""Tablet""]",1309.04,{},76243,0,Asia +2024-04-25,8270,1510,"[""Headphones""]",91.81,{},149949,0,South America +2024-09-29,8271,2561,"[""Tablet"", ""Charger""]",1244.49,"{""seasonal"": ""25%""}",13692,0,Europe +2023-05-07,8272,3162,"[""Wireless Mouse"", ""Headphones""]",4424.41,"{""seasonal"": ""14%""}",231591,1,Europe +2023-06-08,8273,4214,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4185.15,{},64229,0,North America +2024-07-20,8274,4717,"[""Monitor""]",3159.6,"{""loyalty"": ""15%""}",227103,0,North America +2023-02-09,8275,9580,"[""Laptop"", ""Headphones"", ""Keyboard""]",1092.11,"{""seasonal"": ""11%""}",171429,0,Africa +2023-10-23,8276,1091,"[""Keyboard"", ""Phone""]",1859.36,"{"""": ""26%""}",46278,1,North America +2024-06-23,8277,4172,"[""Wireless Mouse""]",872.94,{},89115,1,South America +2023-08-25,8278,1580,"[""Headphones"", ""Tablet""]",4450.25,{},148593,0,Africa +2024-04-13,8279,1719,"[""Charger"", ""Keyboard""]",947.08,"{""promo"": ""28%""}",42782,1,Europe +2023-05-26,8280,9167,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1070.69,"{""loyalty"": ""11%""}",130207,0,Asia +2024-03-22,8281,4439,"[""Tablet"", ""Headphones""]",1456.48,"{""loyalty"": ""9%""}",178391,0,Asia +2024-01-11,8282,3354,"[""Monitor"", ""Laptop""]",3487.88,{},8565,0,Africa +2023-06-09,8283,4965,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1618.59,{},275496,0,Asia +2024-06-21,8284,4370,"[""Tablet""]",3406.88,"{""seasonal"": ""30%""}",68122,0,Europe +2024-04-18,8285,1754,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3578.44,{},6458,1,Africa +2024-03-12,8286,133,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",398.7,"{"""": ""30%""}",262152,0,Europe +2023-08-19,8287,8243,"[""Keyboard"", ""Laptop""]",1508.42,{},283697,0,Asia +2023-03-01,8288,2683,"[""Tablet"", ""Monitor""]",854.05,"{"""": ""18%""}",237207,0,Europe +2023-06-05,8289,385,"[""Keyboard""]",726.43,"{"""": ""13%""}",79848,1,Europe +2024-10-30,8290,330,"[""Phone"", ""Tablet""]",329.31,"{""loyalty"": ""13%""}",282988,0,Europe +2024-01-31,8291,2542,"[""Tablet"", ""Headphones""]",1900.22,"{"""": ""30%""}",282709,1,North America +2023-05-17,8292,5772,"[""Wireless Mouse"", ""Headphones""]",2291.0,"{""seasonal"": ""6%""}",187950,1,Europe +2024-04-05,8293,5640,"[""Laptop"", ""Phone""]",4402.83,{},229414,0,Africa +2023-07-18,8294,8619,"[""Wireless Mouse""]",2627.51,{},251400,0,North America +2024-06-03,8295,9300,"[""Keyboard"", ""Monitor""]",2015.42,"{"""": ""28%""}",204482,1,Europe +2024-02-17,8296,1668,"[""Wireless Mouse""]",1114.76,{},146936,1,Asia +2024-03-09,8297,4946,"[""Phone"", ""Laptop"", ""Monitor""]",4704.53,"{"""": ""9%""}",265178,1,Asia +2023-12-04,8298,5424,"[""Charger"", ""Tablet""]",3734.94,{},78280,1,Asia +2023-03-07,8299,1582,"[""Keyboard"", ""Laptop""]",315.83,{},58536,1,South America +2023-01-14,8300,9644,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4352.43,"{""seasonal"": ""12%""}",277723,1,Europe +2024-04-29,8301,7324,"[""Wireless Mouse"", ""Headphones""]",315.97,{},256353,0,South America +2023-06-05,8302,4533,"[""Keyboard"", ""Headphones"", ""Tablet""]",608.21,"{"""": ""8%""}",97870,1,Asia +2023-04-01,8303,3727,"[""Keyboard"", ""Tablet"", ""Charger""]",4078.67,{},58119,1,South America +2024-05-06,8304,7543,"[""Laptop"", ""Keyboard"", ""Phone""]",1926.51,"{""seasonal"": ""20%""}",49864,0,South America +2024-08-16,8305,7466,"[""Tablet"", ""Headphones""]",4472.41,"{""promo"": ""10%""}",150496,0,North America +2024-01-16,8306,6925,"[""Tablet"", ""Wireless Mouse""]",3023.22,{},63851,1,Asia +2023-10-31,8307,9279,"[""Monitor"", ""Phone""]",2322.8,{},19168,1,Europe +2024-11-10,8308,801,"[""Keyboard"", ""Laptop""]",2475.27,{},247299,1,Africa +2023-09-14,8309,4415,"[""Monitor"", ""Charger"", ""Headphones""]",3367.56,"{""loyalty"": ""8%""}",219115,1,South America +2024-06-27,8310,7265,"[""Monitor""]",4939.15,{},93089,0,South America +2023-05-24,8311,1447,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",992.59,{},78045,0,Asia +2024-07-23,8312,5224,"[""Laptop"", ""Charger""]",4109.46,"{""loyalty"": ""22%""}",258527,0,North America +2024-04-28,8313,2261,"[""Tablet"", ""Charger"", ""Phone""]",1542.38,"{"""": ""20%""}",2612,0,Africa +2024-05-07,8314,326,"[""Keyboard"", ""Phone""]",2788.73,{},22646,0,Asia +2024-01-27,8315,8921,"[""Monitor"", ""Charger""]",235.31,"{""seasonal"": ""28%""}",287207,1,North America +2024-05-05,8316,5810,"[""Headphones""]",4141.88,{},121498,1,South America +2023-04-06,8317,9841,"[""Phone""]",2948.18,"{""loyalty"": ""30%""}",287944,0,South America +2024-06-17,8318,7276,"[""Keyboard"", ""Charger"", ""Headphones""]",3157.61,"{""seasonal"": ""15%""}",259033,0,North America +2023-09-09,8319,2696,"[""Phone"", ""Wireless Mouse""]",4961.94,{},285699,1,Asia +2024-02-22,8320,3178,"[""Tablet"", ""Keyboard""]",3032.61,{},233999,1,Europe +2024-10-13,8321,3093,"[""Monitor"", ""Phone""]",3277.36,{},110146,1,South America +2024-03-30,8322,5188,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",510.69,{},17271,0,South America +2024-11-30,8323,4269,"[""Laptop""]",363.75,{},1408,0,Europe +2024-07-31,8324,7727,"[""Wireless Mouse"", ""Laptop""]",4099.28,{},93938,0,Europe +2023-06-09,8325,379,"[""Phone"", ""Keyboard""]",917.43,"{"""": ""27%""}",173127,1,Africa +2024-05-04,8326,8059,"[""Headphones"", ""Charger""]",1795.77,"{""seasonal"": ""12%""}",232669,1,North America +2023-08-02,8327,2851,"[""Monitor""]",2305.38,"{"""": ""19%""}",36557,1,South America +2024-03-07,8328,7107,"[""Tablet"", ""Phone""]",4880.04,"{""loyalty"": ""26%""}",163581,0,South America +2023-03-07,8329,1718,"[""Wireless Mouse"", ""Headphones""]",3188.91,{},148455,1,Asia +2023-08-11,8330,7782,"[""Tablet"", ""Charger""]",3272.3,"{"""": ""5%""}",1088,1,Europe +2023-03-03,8331,9160,"[""Charger""]",1135.5,"{""promo"": ""15%""}",23967,0,North America +2024-09-10,8332,1217,"[""Laptop""]",584.18,"{""loyalty"": ""27%""}",198757,0,Europe +2024-10-25,8333,3977,"[""Tablet""]",487.86,"{"""": ""15%""}",84293,1,North America +2023-11-30,8334,4715,"[""Charger"", ""Monitor""]",684.09,{},164156,1,Europe +2024-06-15,8335,6182,"[""Keyboard"", ""Monitor"", ""Headphones""]",452.85,{},160205,1,North America +2024-09-22,8336,7404,"[""Phone"", ""Headphones"", ""Laptop""]",3387.5,{},80082,1,Asia +2023-01-22,8337,2497,"[""Tablet"", ""Laptop"", ""Charger""]",2238.04,"{""seasonal"": ""21%""}",34719,1,Africa +2024-12-16,8338,2030,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4873.94,"{"""": ""17%""}",242472,0,South America +2024-12-07,8339,2400,"[""Monitor"", ""Headphones"", ""Phone""]",1255.91,"{"""": ""6%""}",172695,0,Asia +2023-07-27,8340,2277,"[""Phone"", ""Laptop""]",522.36,"{""seasonal"": ""18%""}",264070,0,Asia +2023-09-04,8341,5446,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2159.88,{},25282,1,South America +2024-04-22,8342,8727,"[""Tablet""]",4001.6,"{""promo"": ""5%""}",181938,0,North America +2024-08-13,8343,9786,"[""Keyboard"", ""Charger""]",750.98,"{""promo"": ""23%""}",147896,1,Africa +2023-05-05,8344,7180,"[""Headphones""]",4875.46,"{"""": ""15%""}",198336,0,Europe +2024-04-11,8345,9469,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4271.8,"{""seasonal"": ""19%""}",23397,1,Europe +2023-04-20,8346,1388,"[""Headphones"", ""Keyboard"", ""Charger""]",825.84,"{"""": ""23%""}",203776,0,Asia +2023-08-30,8347,1371,"[""Laptop"", ""Charger""]",434.11,"{""loyalty"": ""11%""}",183693,1,South America +2024-01-29,8348,828,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",164.82,{},211874,0,South America +2023-10-13,8349,3838,"[""Keyboard"", ""Phone"", ""Headphones""]",258.39,"{""seasonal"": ""9%""}",190953,1,South America +2023-08-06,8350,2683,"[""Monitor"", ""Laptop""]",4471.94,{},213969,0,Europe +2023-10-24,8351,4164,"[""Tablet"", ""Headphones"", ""Monitor""]",3496.48,{},3952,1,North America +2024-11-15,8352,4928,"[""Phone"", ""Keyboard"", ""Monitor""]",2284.91,"{""seasonal"": ""17%""}",125839,1,Africa +2023-03-02,8353,4625,"[""Charger"", ""Headphones""]",2603.23,{},133476,1,South America +2024-12-31,8354,5289,"[""Wireless Mouse"", ""Phone""]",1220.85,{},147131,0,North America +2023-08-14,8355,3124,"[""Headphones"", ""Keyboard""]",446.49,"{""promo"": ""13%""}",232636,0,Africa +2023-11-10,8356,4458,"[""Tablet"", ""Phone"", ""Headphones""]",1835.93,"{"""": ""9%""}",175082,0,Asia +2024-04-17,8357,669,"[""Monitor""]",385.08,{},8410,1,Asia +2024-11-26,8358,5937,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",200.7,{},233002,1,Africa +2023-04-05,8359,5064,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1245.14,"{"""": ""7%""}",22947,1,Europe +2023-02-28,8360,9053,"[""Keyboard"", ""Monitor"", ""Tablet""]",4284.35,"{""seasonal"": ""20%""}",65881,1,South America +2023-08-21,8361,4926,"[""Monitor"", ""Keyboard""]",2774.03,"{""promo"": ""5%""}",146822,0,Asia +2024-01-24,8362,9093,"[""Laptop""]",3085.28,{},277405,0,Africa +2024-08-22,8363,2507,"[""Monitor"", ""Keyboard""]",2691.38,"{""promo"": ""21%""}",209257,1,Europe +2023-12-20,8364,8528,"[""Charger"", ""Phone"", ""Monitor""]",3296.8,{},118418,0,Africa +2023-03-27,8365,9656,"[""Headphones"", ""Keyboard""]",3825.8,"{""loyalty"": ""27%""}",39617,1,North America +2023-06-11,8366,7773,"[""Monitor"", ""Tablet"", ""Charger""]",4504.34,"{""loyalty"": ""6%""}",6270,0,South America +2024-10-07,8367,1137,"[""Phone""]",459.54,"{""seasonal"": ""25%""}",127684,1,Africa +2024-10-26,8368,9935,"[""Phone""]",526.21,"{""promo"": ""28%""}",92561,1,South America +2023-04-17,8369,1264,"[""Monitor"", ""Phone""]",3343.64,{},59774,0,Europe +2024-07-24,8370,2678,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2087.98,{},139660,0,South America +2023-05-05,8371,9212,"[""Headphones""]",4723.27,"{"""": ""20%""}",81443,0,North America +2024-04-09,8372,3406,"[""Keyboard"", ""Monitor"", ""Laptop""]",3735.55,"{""seasonal"": ""28%""}",132643,1,Asia +2024-01-06,8373,3497,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4569.05,"{""seasonal"": ""14%""}",278708,1,Europe +2023-03-30,8374,934,"[""Monitor""]",3908.98,"{"""": ""17%""}",65208,1,Asia +2024-01-08,8375,3447,"[""Phone""]",2366.38,"{""seasonal"": ""19%""}",299886,1,Asia +2024-11-07,8376,9990,"[""Charger""]",422.45,"{""loyalty"": ""21%""}",66567,1,Africa +2023-04-29,8377,2355,"[""Headphones"", ""Phone""]",3289.64,"{"""": ""7%""}",30488,0,Europe +2024-02-27,8378,2046,"[""Phone"", ""Laptop"", ""Headphones""]",2083.22,{},230525,1,South America +2024-10-11,8379,3431,"[""Keyboard""]",2167.12,"{""loyalty"": ""6%""}",48928,0,South America +2024-04-06,8380,5591,"[""Charger""]",530.8,"{""promo"": ""7%""}",84758,0,Africa +2023-09-19,8381,5589,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1631.94,"{""seasonal"": ""7%""}",259437,1,Europe +2023-10-05,8382,2600,"[""Laptop""]",1335.41,{},109980,1,Africa +2024-02-07,8383,7030,"[""Charger""]",4088.37,{},207963,0,North America +2024-02-04,8384,3112,"[""Phone""]",1620.35,{},151578,1,Africa +2024-05-06,8385,3311,"[""Headphones""]",2859.82,{},271900,0,Africa +2023-04-17,8386,5920,"[""Charger"", ""Phone"", ""Laptop""]",555.62,"{""promo"": ""23%""}",26969,1,Asia +2024-09-28,8387,4279,"[""Monitor"", ""Charger""]",3744.75,"{""seasonal"": ""19%""}",274275,0,Europe +2024-05-08,8388,5182,"[""Phone""]",4820.37,"{""loyalty"": ""5%""}",78296,0,Asia +2024-11-17,8389,4332,"[""Laptop""]",453.22,{},231000,1,Asia +2023-12-16,8390,3311,"[""Monitor"", ""Keyboard""]",1630.16,"{""promo"": ""9%""}",298284,0,Africa +2024-08-24,8391,6666,"[""Phone"", ""Wireless Mouse""]",4930.67,"{""loyalty"": ""19%""}",2184,0,Africa +2024-02-22,8392,2049,"[""Tablet"", ""Charger"", ""Keyboard""]",3265.01,"{""loyalty"": ""15%""}",65505,1,Africa +2023-11-01,8393,1744,"[""Laptop""]",4701.8,{},276497,0,North America +2024-11-15,8394,2160,"[""Phone""]",1028.93,{},210407,0,Africa +2024-10-24,8395,415,"[""Headphones"", ""Monitor""]",3939.52,"{""seasonal"": ""28%""}",232196,0,South America +2024-03-28,8396,2964,"[""Laptop"", ""Keyboard""]",1861.26,{},162252,0,North America +2023-08-02,8397,6998,"[""Tablet"", ""Monitor""]",521.03,"{"""": ""5%""}",176802,1,Europe +2023-11-02,8398,3700,"[""Wireless Mouse""]",92.34,"{""loyalty"": ""6%""}",206821,1,North America +2023-04-21,8399,8870,"[""Tablet"", ""Monitor""]",3396.21,{},123124,1,South America +2023-04-27,8400,5461,"[""Charger""]",4081.94,{},244842,0,Africa +2024-11-02,8401,7873,"[""Wireless Mouse""]",2768.32,{},281918,0,Asia +2023-10-16,8402,7045,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1355.69,{},56451,1,Africa +2024-03-16,8403,3299,"[""Charger"", ""Headphones""]",2598.98,"{"""": ""27%""}",91914,1,Africa +2023-03-23,8404,402,"[""Phone""]",1693.9,"{""seasonal"": ""17%""}",16647,1,South America +2023-06-06,8405,7771,"[""Phone"", ""Tablet""]",3312.61,"{""promo"": ""7%""}",34298,0,North America +2023-04-23,8406,8913,"[""Monitor"", ""Wireless Mouse""]",4520.39,{},251830,0,North America +2024-04-26,8407,8277,"[""Phone""]",2244.82,"{"""": ""16%""}",128574,1,Europe +2024-11-25,8408,5968,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1065.8,{},124147,1,Africa +2024-01-31,8409,1326,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",902.1,{},63217,1,Africa +2023-03-27,8410,9748,"[""Monitor"", ""Headphones"", ""Phone""]",1705.45,"{"""": ""24%""}",192265,1,Asia +2023-12-17,8411,3641,"[""Laptop"", ""Phone""]",2956.07,"{"""": ""26%""}",178532,1,Asia +2023-09-06,8412,5675,"[""Tablet"", ""Monitor""]",4378.18,"{""seasonal"": ""30%""}",155102,0,Europe +2024-04-22,8413,6494,"[""Laptop"", ""Keyboard""]",2356.72,{},112843,0,Asia +2024-03-31,8414,6817,"[""Headphones"", ""Wireless Mouse""]",3446.15,{},267691,1,North America +2024-04-15,8415,260,"[""Wireless Mouse"", ""Charger""]",722.77,{},35695,0,Europe +2024-01-11,8416,7103,"[""Phone""]",2333.61,"{""loyalty"": ""22%""}",89822,1,Europe +2023-01-19,8417,9973,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4936.24,"{"""": ""28%""}",185647,1,Europe +2024-05-13,8418,9748,"[""Headphones""]",1552.08,{},228843,1,Europe +2023-11-07,8419,1601,"[""Charger"", ""Tablet"", ""Laptop""]",3056.02,"{""loyalty"": ""26%""}",132627,0,Africa +2023-08-17,8420,2642,"[""Headphones"", ""Phone""]",3109.52,{},191950,0,North America +2024-12-19,8421,5772,"[""Headphones"", ""Monitor"", ""Keyboard""]",1467.07,"{""loyalty"": ""9%""}",194741,0,Africa +2024-07-14,8422,8640,"[""Tablet""]",4050.62,"{""loyalty"": ""22%""}",119764,1,Africa +2024-12-16,8423,6811,"[""Phone""]",151.09,{},274866,0,Africa +2024-03-08,8424,2789,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4720.17,"{""promo"": ""30%""}",85556,1,North America +2024-02-17,8425,9322,"[""Monitor"", ""Keyboard""]",2194.8,{},2910,1,South America +2024-12-21,8426,4741,"[""Headphones""]",3239.53,{},113721,1,Europe +2023-02-03,8427,7315,"[""Wireless Mouse""]",1589.5,"{""loyalty"": ""21%""}",132596,1,South America +2023-06-25,8428,5031,"[""Monitor"", ""Wireless Mouse""]",2739.43,"{""seasonal"": ""27%""}",253513,0,North America +2024-01-28,8429,4291,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1437.78,{},236642,1,Asia +2024-04-14,8430,5733,"[""Wireless Mouse"", ""Monitor""]",2027.89,{},102460,1,North America +2024-04-15,8431,7702,"[""Charger"", ""Laptop"", ""Keyboard""]",3956.41,{},258317,0,Asia +2023-03-23,8432,1781,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4445.92,{},82690,0,Asia +2024-04-10,8433,2980,"[""Phone""]",3169.61,"{"""": ""15%""}",209007,0,North America +2023-07-14,8434,5058,"[""Laptop""]",2420.75,"{""seasonal"": ""23%""}",249438,1,South America +2024-06-03,8435,7945,"[""Wireless Mouse"", ""Laptop""]",4993.07,{},256349,0,Asia +2024-09-03,8436,949,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3254.02,{},230872,1,Europe +2023-03-11,8437,7606,"[""Monitor""]",4758.22,"{"""": ""9%""}",196051,0,North America +2023-06-10,8438,640,"[""Keyboard"", ""Phone""]",3197.73,"{""promo"": ""15%""}",25276,1,Africa +2024-05-13,8439,3375,"[""Charger"", ""Wireless Mouse""]",1605.97,{},270159,0,South America +2024-02-07,8440,7525,"[""Wireless Mouse""]",4497.08,{},7087,1,Europe +2023-12-17,8441,6541,"[""Wireless Mouse"", ""Monitor""]",4351.93,{},258879,0,Asia +2023-12-30,8442,6250,"[""Monitor"", ""Phone""]",582.55,{},182853,1,North America +2024-05-17,8443,1870,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1572.29,{},276120,1,South America +2024-03-20,8444,4397,"[""Keyboard""]",174.75,"{""loyalty"": ""23%""}",16231,1,Europe +2024-11-28,8445,7347,"[""Monitor""]",1537.98,{},235969,0,North America +2024-03-16,8446,8415,"[""Keyboard"", ""Tablet""]",2683.25,"{""loyalty"": ""8%""}",148872,0,North America +2023-11-21,8447,1613,"[""Keyboard"", ""Laptop"", ""Charger""]",954.14,{},170850,0,Africa +2023-11-02,8448,8285,"[""Monitor""]",4746.18,"{""loyalty"": ""10%""}",129127,0,Europe +2023-06-16,8449,9748,"[""Charger""]",1336.86,"{""seasonal"": ""16%""}",293443,0,South America +2023-11-25,8450,800,"[""Laptop""]",1288.41,"{""seasonal"": ""28%""}",88341,1,Africa +2024-10-11,8451,4534,"[""Phone"", ""Wireless Mouse""]",3596.61,"{""seasonal"": ""7%""}",214168,1,North America +2023-02-04,8452,3063,"[""Charger""]",4031.48,{},143915,0,North America +2024-02-26,8453,5877,"[""Keyboard"", ""Monitor""]",1294.96,{},137818,0,South America +2024-06-23,8454,7191,"[""Monitor"", ""Tablet"", ""Phone""]",152.1,{},253861,1,North America +2024-07-15,8455,8796,"[""Wireless Mouse"", ""Headphones""]",889.78,"{"""": ""14%""}",200148,1,South America +2024-06-17,8456,9180,"[""Headphones"", ""Tablet""]",1536.76,{},86830,0,Africa +2024-05-03,8457,4074,"[""Keyboard"", ""Charger""]",946.48,{},154335,0,Africa +2024-03-05,8458,774,"[""Wireless Mouse"", ""Laptop""]",4248.26,"{""promo"": ""21%""}",36837,0,Africa +2023-11-12,8459,3948,"[""Phone""]",4266.81,{},269456,1,Europe +2023-06-22,8460,6389,"[""Wireless Mouse""]",4864.36,{},40416,0,Africa +2023-09-03,8461,5251,"[""Tablet"", ""Keyboard"", ""Phone""]",3100.3,{},56767,0,Europe +2024-10-29,8462,2781,"[""Keyboard"", ""Charger"", ""Monitor""]",4823.74,{},271068,0,South America +2024-07-27,8463,3298,"[""Tablet""]",1983.9,{},145086,0,Africa +2023-06-17,8464,6076,"[""Keyboard"", ""Phone"", ""Charger""]",844.44,"{""seasonal"": ""10%""}",14128,0,South America +2023-11-11,8465,147,"[""Tablet""]",4517.21,{},114409,1,Asia +2024-05-05,8466,4625,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4177.99,{},25069,0,North America +2023-04-23,8467,7203,"[""Tablet"", ""Charger"", ""Laptop""]",4735.17,"{""seasonal"": ""27%""}",281522,0,Europe +2024-05-25,8468,3926,"[""Monitor""]",1662.53,{},68694,1,South America +2023-09-13,8469,3809,"[""Tablet""]",3936.37,{},120987,1,North America +2024-04-30,8470,8406,"[""Tablet""]",2882.14,{},224480,0,South America +2023-05-27,8471,1100,"[""Charger"", ""Wireless Mouse""]",3639.77,"{""loyalty"": ""12%""}",266236,0,Africa +2023-04-14,8472,6620,"[""Tablet""]",2784.76,"{""loyalty"": ""30%""}",235631,0,Asia +2023-10-10,8473,9684,"[""Wireless Mouse"", ""Phone""]",2963.1,"{""promo"": ""20%""}",226396,1,Europe +2024-10-07,8474,8532,"[""Laptop""]",4302.98,"{""seasonal"": ""18%""}",250500,1,Asia +2023-11-23,8475,5945,"[""Keyboard""]",2906.99,"{""loyalty"": ""18%""}",161586,0,South America +2023-10-18,8476,8158,"[""Tablet"", ""Headphones""]",1534.29,"{""promo"": ""30%""}",8327,1,Africa +2024-07-01,8477,707,"[""Charger"", ""Wireless Mouse""]",3592.29,{},93920,1,Africa +2024-12-23,8478,9077,"[""Laptop"", ""Headphones"", ""Phone""]",4568.96,"{"""": ""29%""}",54827,1,Africa +2023-11-01,8479,6620,"[""Keyboard"", ""Charger"", ""Tablet""]",2780.75,"{""loyalty"": ""20%""}",51010,0,Asia +2023-01-07,8480,8395,"[""Headphones"", ""Phone"", ""Laptop""]",238.31,{},266940,1,Africa +2024-10-08,8481,5509,"[""Headphones""]",3055.92,"{""loyalty"": ""6%""}",225930,0,Africa +2023-11-20,8482,6511,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2734.07,"{""seasonal"": ""23%""}",245504,0,South America +2023-11-18,8483,2591,"[""Charger"", ""Monitor""]",3521.01,{},223703,0,Europe +2024-07-06,8484,776,"[""Wireless Mouse"", ""Laptop""]",4043.12,{},188932,0,Europe +2023-04-29,8485,6602,"[""Charger""]",2262.12,{},91716,1,Europe +2024-06-03,8486,5604,"[""Phone""]",4308.17,{},10937,1,South America +2024-04-08,8487,1217,"[""Monitor"", ""Headphones""]",4047.75,{},114540,0,Africa +2024-09-01,8488,1719,"[""Tablet""]",446.33,"{"""": ""27%""}",30514,1,North America +2024-07-15,8489,495,"[""Laptop"", ""Phone""]",2648.48,{},286723,0,Asia +2024-11-01,8490,5148,"[""Monitor""]",2268.28,"{""loyalty"": ""7%""}",165789,0,Africa +2024-08-15,8491,4259,"[""Headphones"", ""Charger"", ""Keyboard""]",4314.37,"{""loyalty"": ""17%""}",29162,1,Europe +2024-02-20,8492,9350,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1763.67,{},218324,0,Europe +2023-12-02,8493,3460,"[""Headphones"", ""Wireless Mouse""]",4139.02,{},9109,0,Europe +2023-07-23,8494,784,"[""Charger""]",2409.19,{},184052,0,Asia +2023-06-18,8495,5232,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1675.2,{},75766,0,Europe +2023-05-19,8496,4768,"[""Monitor"", ""Charger""]",920.17,{},149785,0,Europe +2023-04-26,8497,1002,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2235.29,"{""promo"": ""14%""}",124744,0,Asia +2024-11-08,8498,125,"[""Headphones""]",4493.69,{},126208,0,South America +2023-06-20,8499,7165,"[""Keyboard""]",700.93,{},101460,0,Asia +2023-06-21,8500,4118,"[""Wireless Mouse""]",4138.44,"{""loyalty"": ""8%""}",143804,1,Europe +2024-05-08,8501,4048,"[""Charger"", ""Headphones"", ""Phone""]",2597.32,{},134920,0,North America +2023-12-19,8502,741,"[""Headphones"", ""Keyboard""]",3530.89,{},141967,0,Europe +2024-08-29,8503,9327,"[""Charger"", ""Keyboard""]",648.13,"{""seasonal"": ""9%""}",283736,0,Asia +2024-01-11,8504,6144,"[""Keyboard"", ""Headphones""]",2876.7,"{""promo"": ""30%""}",48607,1,South America +2023-10-14,8505,9710,"[""Monitor""]",3182.93,"{"""": ""29%""}",228180,0,Africa +2023-01-09,8506,1411,"[""Keyboard"", ""Headphones""]",4003.93,{},14286,1,Africa +2023-03-29,8507,1789,"[""Monitor""]",2519.85,"{""loyalty"": ""17%""}",259471,1,North America +2023-11-01,8508,8552,"[""Monitor""]",975.12,{},250926,1,North America +2023-05-04,8509,2324,"[""Keyboard"", ""Monitor"", ""Headphones""]",2618.71,{},120987,0,Africa +2024-08-09,8510,4733,"[""Headphones"", ""Wireless Mouse""]",1840.8,"{""loyalty"": ""30%""}",141389,1,Asia +2023-08-13,8511,1545,"[""Monitor""]",2942.65,{},95532,0,North America +2024-05-30,8512,2305,"[""Laptop"", ""Monitor""]",3710.81,{},115264,1,North America +2023-11-09,8513,599,"[""Phone"", ""Keyboard""]",3604.98,{},11255,0,North America +2024-03-18,8514,5858,"[""Headphones"", ""Monitor"", ""Tablet""]",2582.32,{},251002,1,Asia +2023-09-14,8515,6711,"[""Phone"", ""Laptop"", ""Monitor""]",4846.28,{},43460,0,North America +2024-08-31,8516,477,"[""Tablet"", ""Keyboard""]",1652.19,{},180222,1,North America +2023-07-12,8517,873,"[""Tablet""]",4437.36,{},97107,1,Africa +2024-11-30,8518,5626,"[""Keyboard""]",2709.2,{},9561,1,South America +2024-09-15,8519,7848,"[""Headphones"", ""Charger"", ""Phone""]",4582.57,{},88157,0,Asia +2023-10-04,8520,1953,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3901.85,{},156386,0,Asia +2023-01-31,8521,7278,"[""Keyboard"", ""Laptop"", ""Phone""]",2852.81,"{""promo"": ""21%""}",188431,0,North America +2023-03-13,8522,5446,"[""Headphones"", ""Wireless Mouse""]",3302.7,{},6580,0,North America +2023-04-12,8523,4345,"[""Charger""]",166.25,{},167830,1,Asia +2023-10-27,8524,3411,"[""Monitor"", ""Phone""]",4858.33,"{""promo"": ""19%""}",130305,1,North America +2024-12-31,8525,8590,"[""Laptop"", ""Monitor""]",3859.52,"{""promo"": ""15%""}",132383,1,South America +2024-09-01,8526,9105,"[""Tablet""]",2136.91,{},195858,1,Asia +2024-10-19,8527,6794,"[""Charger"", ""Phone""]",3608.93,"{""seasonal"": ""7%""}",260691,1,Europe +2023-07-21,8528,7654,"[""Tablet"", ""Keyboard"", ""Phone""]",4447.26,"{"""": ""17%""}",269085,0,Europe +2023-11-02,8529,1917,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1482.59,{},112133,1,Asia +2023-08-19,8530,2049,"[""Keyboard"", ""Tablet""]",1500.81,"{""seasonal"": ""28%""}",180062,0,Europe +2024-11-26,8531,5387,"[""Charger"", ""Laptop""]",825.01,"{""loyalty"": ""25%""}",111077,0,South America +2023-05-15,8532,3695,"[""Charger"", ""Wireless Mouse""]",921.38,"{""promo"": ""27%""}",133965,1,North America +2023-07-01,8533,1055,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",339.85,"{""seasonal"": ""9%""}",64854,0,South America +2023-09-11,8534,1215,"[""Tablet""]",2226.56,{},171772,0,Asia +2023-01-28,8535,1963,"[""Laptop""]",2015.24,"{""seasonal"": ""5%""}",173695,1,Asia +2024-06-26,8536,1419,"[""Tablet""]",2842.27,{},28542,1,South America +2024-08-24,8537,3785,"[""Monitor""]",1455.41,{},268973,0,Asia +2023-10-06,8538,6746,"[""Monitor"", ""Wireless Mouse""]",2319.81,"{""seasonal"": ""11%""}",273717,1,South America +2024-06-17,8539,3749,"[""Charger"", ""Tablet""]",4540.82,"{""loyalty"": ""13%""}",274593,1,Europe +2023-03-29,8540,171,"[""Headphones"", ""Charger""]",1034.91,{},291690,0,Africa +2024-08-06,8541,4326,"[""Tablet""]",3820.02,"{"""": ""22%""}",112310,1,Africa +2023-12-28,8542,7537,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4841.41,"{""seasonal"": ""24%""}",269400,1,South America +2024-07-26,8543,2848,"[""Headphones"", ""Monitor""]",3811.42,"{""promo"": ""13%""}",53814,0,Africa +2024-06-27,8544,8822,"[""Charger"", ""Laptop""]",3277.77,{},297876,1,South America +2023-01-01,8545,1106,"[""Wireless Mouse"", ""Laptop""]",401.21,{},289608,1,Europe +2023-09-14,8546,1979,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4860.84,{},102188,1,Europe +2024-08-02,8547,759,"[""Monitor"", ""Headphones""]",4488.01,{},14598,0,Asia +2023-07-12,8548,8417,"[""Tablet""]",797.95,"{""loyalty"": ""6%""}",287870,1,Africa +2024-04-27,8549,2170,"[""Tablet"", ""Keyboard"", ""Monitor""]",1064.87,"{""loyalty"": ""25%""}",257269,0,South America +2024-03-03,8550,6159,"[""Charger""]",560.93,{},230994,1,Europe +2023-09-05,8551,2193,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4695.83,"{""promo"": ""7%""}",18723,1,Africa +2024-11-05,8552,2044,"[""Monitor"", ""Laptop""]",672.57,"{"""": ""18%""}",106067,0,South America +2023-08-02,8553,7143,"[""Tablet"", ""Charger"", ""Laptop""]",3994.65,"{""promo"": ""10%""}",229701,1,Europe +2024-05-14,8554,8941,"[""Headphones"", ""Keyboard"", ""Laptop""]",1813.81,"{"""": ""12%""}",291899,1,Europe +2024-09-28,8555,3748,"[""Headphones"", ""Wireless Mouse""]",3321.97,{},180788,1,Africa +2023-02-25,8556,7970,"[""Phone""]",1041.61,{},281221,1,South America +2023-07-05,8557,4245,"[""Headphones""]",3739.46,{},298097,0,Asia +2024-07-31,8558,1032,"[""Charger"", ""Keyboard""]",1221.36,{},37948,1,Africa +2024-10-08,8559,4234,"[""Phone""]",3125.5,"{""loyalty"": ""24%""}",12136,0,North America +2023-06-07,8560,5069,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",575.16,"{"""": ""14%""}",224281,1,South America +2023-05-25,8561,3013,"[""Headphones""]",1261.98,{},109159,1,South America +2023-06-11,8562,2226,"[""Wireless Mouse"", ""Charger""]",2897.47,"{""promo"": ""7%""}",254222,0,Asia +2024-01-08,8563,5329,"[""Charger"", ""Phone"", ""Monitor""]",1518.39,"{""promo"": ""25%""}",150965,1,Europe +2023-05-10,8564,4652,"[""Monitor"", ""Phone""]",2411.93,"{""seasonal"": ""26%""}",19264,1,Africa +2024-05-20,8565,7524,"[""Headphones""]",488.84,"{"""": ""18%""}",106863,1,Europe +2024-03-23,8566,4803,"[""Tablet"", ""Laptop""]",422.67,{},230704,1,Asia +2024-03-12,8567,8365,"[""Phone"", ""Charger"", ""Monitor""]",4299.49,"{"""": ""8%""}",278117,1,Asia +2024-06-01,8568,8053,"[""Keyboard"", ""Headphones""]",3972.38,"{""loyalty"": ""5%""}",104668,0,North America +2023-01-29,8569,2753,"[""Charger""]",4863.16,{},291294,1,North America +2023-04-29,8570,5614,"[""Headphones""]",4667.0,{},82389,1,Asia +2023-11-10,8571,6389,"[""Keyboard"", ""Tablet"", ""Phone""]",4114.96,{},275582,0,Asia +2023-09-26,8572,4802,"[""Headphones"", ""Phone"", ""Keyboard""]",53.24,"{""loyalty"": ""24%""}",232652,0,South America +2024-06-22,8573,2368,"[""Monitor""]",2542.97,"{""loyalty"": ""5%""}",296439,1,Africa +2023-04-07,8574,9484,"[""Laptop"", ""Phone"", ""Headphones""]",1587.48,"{""loyalty"": ""15%""}",151407,0,Asia +2023-07-15,8575,8155,"[""Keyboard"", ""Phone"", ""Tablet""]",1352.15,{},49503,0,North America +2023-09-03,8576,2582,"[""Tablet"", ""Wireless Mouse""]",505.82,"{""promo"": ""29%""}",297895,0,Africa +2023-03-15,8577,3910,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2410.17,{},299405,0,Europe +2024-08-27,8578,3400,"[""Charger"", ""Laptop"", ""Monitor""]",2271.8,"{"""": ""17%""}",10183,1,Asia +2023-11-14,8579,5656,"[""Laptop""]",3710.86,"{""promo"": ""26%""}",51604,1,Asia +2024-06-12,8580,3858,"[""Wireless Mouse""]",1827.76,"{""loyalty"": ""18%""}",145522,0,Africa +2024-03-03,8581,4014,"[""Headphones"", ""Tablet""]",3732.89,{},157132,0,Africa +2023-03-27,8582,8000,"[""Headphones"", ""Monitor""]",3538.73,{},86329,1,Africa +2024-08-28,8583,4643,"[""Headphones"", ""Tablet""]",572.71,"{""promo"": ""15%""}",57214,1,North America +2024-03-11,8584,9886,"[""Wireless Mouse""]",4393.51,{},103121,0,South America +2023-02-10,8585,4857,"[""Tablet"", ""Charger""]",2901.11,"{"""": ""8%""}",98150,1,Africa +2023-05-07,8586,558,"[""Monitor""]",2861.93,"{""loyalty"": ""8%""}",242138,0,Asia +2023-06-19,8587,58,"[""Wireless Mouse""]",1288.23,{},194022,1,South America +2024-03-06,8588,8826,"[""Phone""]",2994.83,"{""loyalty"": ""29%""}",162086,0,South America +2024-11-30,8589,5009,"[""Monitor"", ""Keyboard""]",2921.6,"{""loyalty"": ""6%""}",133240,0,Europe +2023-11-15,8590,5020,"[""Keyboard"", ""Headphones""]",578.28,{},2324,0,North America +2024-01-16,8591,9857,"[""Phone""]",3020.14,"{""loyalty"": ""15%""}",111084,0,Africa +2023-03-10,8592,9848,"[""Headphones"", ""Charger""]",4617.76,{},135846,1,North America +2023-12-11,8593,9942,"[""Headphones""]",3314.98,"{"""": ""10%""}",35263,0,Africa +2024-05-08,8594,792,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2430.12,"{"""": ""14%""}",255367,0,Africa +2023-09-13,8595,3345,"[""Keyboard"", ""Tablet""]",2648.73,{},258386,1,Africa +2023-06-29,8596,2173,"[""Charger""]",991.14,"{""seasonal"": ""28%""}",267700,0,South America +2024-12-12,8597,1737,"[""Keyboard""]",2472.7,{},81665,1,Africa +2023-10-01,8598,7173,"[""Monitor"", ""Laptop"", ""Phone""]",3015.93,{},149465,1,North America +2024-11-22,8599,2543,"[""Tablet""]",825.08,{},140597,0,North America +2023-02-26,8600,6984,"[""Wireless Mouse"", ""Laptop""]",2033.58,{},94511,0,Africa +2024-09-28,8601,1373,"[""Phone"", ""Keyboard""]",1115.93,{},91737,1,Africa +2023-08-10,8602,2099,"[""Keyboard"", ""Phone"", ""Tablet""]",3579.94,"{""seasonal"": ""19%""}",173721,1,North America +2024-10-24,8603,8528,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3301.69,{},195186,0,Europe +2023-01-05,8604,1198,"[""Keyboard""]",661.57,"{""seasonal"": ""26%""}",89177,0,Europe +2023-09-13,8605,8229,"[""Laptop""]",3391.15,{},105838,1,Africa +2023-01-25,8606,6742,"[""Wireless Mouse""]",2672.5,{},51205,0,North America +2024-01-25,8607,9054,"[""Monitor"", ""Headphones"", ""Keyboard""]",4022.56,"{""promo"": ""9%""}",220374,0,Europe +2023-06-02,8608,295,"[""Phone"", ""Headphones""]",2156.65,{},53263,1,North America +2023-05-10,8609,8918,"[""Charger""]",2115.65,{},243417,1,Asia +2023-06-01,8610,9436,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4918.44,{},103880,1,Africa +2024-12-15,8611,2862,"[""Tablet"", ""Keyboard"", ""Monitor""]",2934.91,"{"""": ""11%""}",157896,0,Asia +2023-03-14,8612,9514,"[""Headphones""]",2132.59,"{""seasonal"": ""7%""}",45867,1,Europe +2023-04-15,8613,9991,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4241.37,{},269993,1,Asia +2023-05-19,8614,8021,"[""Headphones"", ""Keyboard"", ""Laptop""]",3814.3,{},32725,1,Asia +2023-09-22,8615,6304,"[""Monitor"", ""Headphones"", ""Keyboard""]",1381.52,"{"""": ""21%""}",287098,1,North America +2024-05-13,8616,5598,"[""Laptop""]",2821.72,{},157640,0,North America +2023-07-05,8617,7092,"[""Headphones"", ""Monitor"", ""Keyboard""]",2629.76,{},55565,1,South America +2023-11-12,8618,2082,"[""Headphones"", ""Phone""]",2800.9,"{"""": ""10%""}",187834,0,Asia +2023-12-04,8619,3567,"[""Keyboard""]",4332.75,{},210752,0,North America +2023-10-20,8620,5933,"[""Headphones"", ""Wireless Mouse""]",4251.43,{},10072,1,Europe +2023-04-08,8621,3286,"[""Charger""]",1448.41,{},146701,1,North America +2024-12-11,8622,7899,"[""Monitor"", ""Keyboard""]",4314.17,"{""loyalty"": ""9%""}",268681,1,Africa +2023-04-06,8623,3501,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4800.04,"{""seasonal"": ""23%""}",64410,0,North America +2023-06-02,8624,6531,"[""Phone"", ""Headphones"", ""Charger""]",2888.46,"{""seasonal"": ""29%""}",252413,1,Asia +2024-01-07,8625,6583,"[""Charger"", ""Phone"", ""Laptop""]",321.95,"{""loyalty"": ""29%""}",224589,0,Asia +2023-02-23,8626,5125,"[""Laptop""]",4515.94,"{""loyalty"": ""24%""}",106086,1,Africa +2024-01-22,8627,8338,"[""Tablet"", ""Monitor"", ""Headphones""]",1979.98,"{""loyalty"": ""15%""}",68282,1,Asia +2024-01-04,8628,9878,"[""Phone"", ""Laptop""]",318.55,{},298342,0,North America +2024-01-12,8629,4316,"[""Monitor""]",4217.84,{},275999,1,North America +2023-03-25,8630,5226,"[""Phone"", ""Laptop""]",575.25,{},261384,0,North America +2024-04-25,8631,2854,"[""Headphones""]",525.98,{},89580,0,South America +2023-11-03,8632,6325,"[""Tablet"", ""Charger""]",1054.6,"{""promo"": ""16%""}",93507,0,North America +2023-04-02,8633,6677,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1286.61,"{""seasonal"": ""28%""}",57835,1,Europe +2023-02-09,8634,6447,"[""Laptop"", ""Keyboard"", ""Monitor""]",4579.68,{},193780,0,Europe +2023-01-29,8635,4533,"[""Laptop""]",379.56,"{""loyalty"": ""11%""}",85618,1,South America +2023-02-26,8636,6764,"[""Headphones""]",4349.1,{},151692,0,Asia +2024-03-06,8637,4038,"[""Laptop""]",1855.03,"{""promo"": ""23%""}",99830,0,North America +2023-12-11,8638,4140,"[""Headphones"", ""Laptop""]",2689.9,"{"""": ""9%""}",66914,1,South America +2023-02-19,8639,8295,"[""Phone""]",3800.7,{},27137,1,Africa +2024-11-03,8640,5490,"[""Charger""]",981.35,{},228850,0,Africa +2024-04-09,8641,858,"[""Headphones""]",4688.56,"{""loyalty"": ""13%""}",255565,0,South America +2023-05-29,8642,8310,"[""Tablet""]",4859.08,{},1059,1,Africa +2023-03-19,8643,7551,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",495.32,{},42509,0,South America +2024-10-14,8644,5089,"[""Phone"", ""Charger"", ""Keyboard""]",4023.71,"{"""": ""16%""}",251560,0,Asia +2024-11-25,8645,8197,"[""Phone"", ""Laptop"", ""Charger""]",2198.41,{},282161,0,Europe +2023-02-01,8646,5407,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4005.0,{},37972,1,North America +2024-02-11,8647,3711,"[""Tablet""]",4976.18,{},196968,0,North America +2024-09-25,8648,4713,"[""Monitor"", ""Keyboard"", ""Laptop""]",1582.05,{},290064,1,South America +2024-01-02,8649,690,"[""Laptop"", ""Monitor""]",4704.1,{},102531,1,North America +2024-04-18,8650,7716,"[""Laptop"", ""Headphones"", ""Tablet""]",3344.27,"{""seasonal"": ""15%""}",31126,0,Asia +2024-07-25,8651,118,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1145.8,"{""seasonal"": ""18%""}",168253,1,North America +2023-08-27,8652,5771,"[""Laptop""]",4562.39,{},211248,1,South America +2024-06-08,8653,6824,"[""Monitor""]",2221.17,"{""seasonal"": ""12%""}",199373,0,Asia +2023-05-26,8654,3304,"[""Keyboard""]",3145.15,"{""promo"": ""9%""}",205264,1,North America +2024-12-12,8655,1571,"[""Charger"", ""Keyboard""]",1645.82,"{""promo"": ""24%""}",212206,1,Europe +2023-11-21,8656,459,"[""Headphones"", ""Wireless Mouse""]",787.62,"{""loyalty"": ""7%""}",9412,0,Europe +2023-09-07,8657,5469,"[""Monitor""]",3001.53,{},86925,0,Europe +2023-02-24,8658,8860,"[""Headphones""]",4433.76,"{""loyalty"": ""15%""}",160462,1,Africa +2023-06-29,8659,6257,"[""Headphones"", ""Laptop"", ""Charger""]",227.85,{},87768,1,Africa +2023-11-19,8660,3294,"[""Phone""]",2916.73,"{""seasonal"": ""7%""}",148949,0,South America +2023-06-19,8661,5039,"[""Laptop""]",2521.53,"{"""": ""8%""}",188843,0,Asia +2024-05-27,8662,6838,"[""Headphones"", ""Laptop"", ""Phone""]",1181.27,{},64917,1,South America +2023-09-12,8663,4570,"[""Laptop"", ""Charger"", ""Tablet""]",3232.84,"{""seasonal"": ""14%""}",24700,0,Asia +2024-06-16,8664,2198,"[""Charger"", ""Headphones"", ""Keyboard""]",1337.59,{},105886,0,South America +2023-10-12,8665,2282,"[""Keyboard"", ""Tablet""]",3086.99,{},27560,0,Africa +2024-10-05,8666,2775,"[""Charger"", ""Monitor"", ""Keyboard""]",2898.46,"{""promo"": ""16%""}",77755,1,Asia +2023-01-09,8667,4149,"[""Tablet"", ""Phone"", ""Keyboard""]",2205.61,"{""seasonal"": ""28%""}",20670,1,Africa +2024-09-22,8668,4257,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",426.15,{},292616,0,Africa +2024-08-11,8669,7377,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4800.67,{},152466,0,Europe +2024-05-13,8670,8251,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3435.54,{},225573,1,Africa +2023-01-25,8671,7550,"[""Wireless Mouse"", ""Charger""]",528.54,{},202729,0,Asia +2024-09-15,8672,5075,"[""Tablet"", ""Monitor""]",1890.69,{},64915,1,South America +2024-12-30,8673,528,"[""Headphones""]",1059.01,"{""promo"": ""5%""}",204965,0,Europe +2023-09-13,8674,254,"[""Tablet"", ""Charger"", ""Phone""]",3759.23,{},269486,1,South America +2024-09-10,8675,9944,"[""Monitor""]",1204.34,"{""seasonal"": ""8%""}",128776,1,Africa +2024-04-04,8676,1938,"[""Phone""]",4448.18,{},68674,0,Asia +2023-08-31,8677,5793,"[""Wireless Mouse"", ""Charger""]",1518.96,"{"""": ""12%""}",129314,1,North America +2023-12-17,8678,3997,"[""Keyboard"", ""Headphones"", ""Charger""]",4644.23,{},97860,0,Africa +2024-08-18,8679,8574,"[""Headphones"", ""Phone"", ""Keyboard""]",4474.46,"{"""": ""16%""}",48196,0,South America +2024-05-05,8680,796,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",925.49,{},168526,1,Europe +2023-09-26,8681,5793,"[""Tablet"", ""Wireless Mouse""]",4841.47,"{""promo"": ""11%""}",50708,0,Asia +2024-09-25,8682,8917,"[""Laptop""]",2036.56,{},86222,1,Asia +2023-02-07,8683,6311,"[""Monitor"", ""Keyboard"", ""Laptop""]",401.41,{},14481,0,South America +2023-08-31,8684,1572,"[""Keyboard""]",4777.9,{},8987,1,Africa +2023-11-07,8685,3145,"[""Phone"", ""Tablet""]",3656.36,{},216808,0,North America +2024-07-13,8686,5996,"[""Monitor""]",851.46,"{""promo"": ""24%""}",6669,1,South America +2023-10-05,8687,5956,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2669.96,{},50848,1,Africa +2023-01-24,8688,3733,"[""Tablet""]",1597.1,"{""seasonal"": ""29%""}",23779,1,Asia +2023-05-17,8689,9872,"[""Phone"", ""Laptop"", ""Monitor""]",515.06,{},281200,1,North America +2024-05-31,8690,6381,"[""Charger"", ""Tablet""]",1249.31,{},246495,1,South America +2024-04-23,8691,9263,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3522.3,{},229715,1,Europe +2023-01-08,8692,1624,"[""Phone"", ""Monitor""]",568.27,"{""loyalty"": ""9%""}",220989,0,North America +2024-02-06,8693,5382,"[""Laptop"", ""Keyboard"", ""Charger""]",4348.96,"{""seasonal"": ""9%""}",174942,0,Asia +2024-01-20,8694,5499,"[""Headphones"", ""Tablet""]",3483.32,"{"""": ""25%""}",59333,1,South America +2023-01-03,8695,837,"[""Tablet"", ""Laptop""]",1658.99,{},218634,0,Europe +2023-10-23,8696,2585,"[""Keyboard"", ""Monitor"", ""Laptop""]",1248.66,{},221565,0,Europe +2023-11-12,8697,4208,"[""Monitor"", ""Headphones"", ""Laptop""]",3067.06,{},260125,0,North America +2024-07-30,8698,228,"[""Keyboard""]",413.8,{},119528,0,Africa +2024-05-06,8699,9429,"[""Tablet"", ""Charger"", ""Laptop""]",1746.41,"{""loyalty"": ""18%""}",66817,1,North America +2024-06-06,8700,8639,"[""Charger"", ""Headphones"", ""Keyboard""]",4138.87,{},216901,1,North America +2024-02-05,8701,6053,"[""Headphones"", ""Charger"", ""Phone""]",1464.03,{},210784,1,North America +2024-01-27,8702,3579,"[""Monitor""]",4539.72,{},138663,0,North America +2023-07-16,8703,8868,"[""Charger""]",4740.78,"{"""": ""11%""}",112097,0,North America +2024-04-12,8704,7806,"[""Headphones""]",4770.55,{},103777,0,Asia +2023-07-14,8705,5069,"[""Tablet""]",2229.82,{},152903,0,Europe +2023-11-01,8706,811,"[""Headphones""]",4177.41,{},141276,1,South America +2024-04-18,8707,435,"[""Laptop""]",4522.78,"{""promo"": ""18%""}",213250,1,Asia +2023-11-13,8708,1461,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2176.34,{},179373,0,Africa +2023-12-05,8709,229,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4222.75,"{"""": ""18%""}",91834,0,South America +2023-07-21,8710,8525,"[""Keyboard"", ""Phone""]",1746.46,{},262303,0,North America +2024-01-15,8711,6175,"[""Charger""]",697.7,{},181117,0,North America +2023-03-26,8712,6482,"[""Charger""]",1346.8,"{""loyalty"": ""10%""}",46106,0,South America +2024-09-10,8713,7557,"[""Charger"", ""Phone""]",4458.94,{},138175,0,Europe +2023-02-19,8714,9430,"[""Headphones""]",657.1,{},179251,1,Africa +2024-05-14,8715,2451,"[""Phone"", ""Headphones""]",215.85,{},272808,1,Europe +2024-07-06,8716,2133,"[""Charger"", ""Tablet""]",699.1,"{""promo"": ""20%""}",25059,1,South America +2024-03-27,8717,4732,"[""Keyboard""]",4001.37,"{""seasonal"": ""25%""}",58125,0,Asia +2023-11-20,8718,7138,"[""Laptop"", ""Monitor""]",1227.65,"{""loyalty"": ""24%""}",290251,1,North America +2024-11-30,8719,6067,"[""Tablet"", ""Laptop""]",869.26,{},134474,1,North America +2024-03-01,8720,2030,"[""Tablet"", ""Laptop"", ""Monitor""]",4762.6,{},84664,0,South America +2024-08-03,8721,3099,"[""Phone"", ""Tablet"", ""Laptop""]",2241.69,{},75493,0,Europe +2023-04-13,8722,7294,"[""Charger""]",1471.12,"{""seasonal"": ""6%""}",232469,1,Europe +2023-11-05,8723,7063,"[""Keyboard""]",1724.93,{},258756,1,Europe +2024-04-07,8724,7233,"[""Monitor"", ""Tablet""]",701.87,{},12217,0,Asia +2023-07-06,8725,8978,"[""Phone""]",2291.39,"{""promo"": ""21%""}",122132,1,Asia +2024-01-16,8726,3879,"[""Keyboard"", ""Monitor""]",4517.17,{},290808,0,Africa +2023-03-06,8727,1575,"[""Charger""]",3737.83,"{""seasonal"": ""25%""}",207642,1,South America +2024-01-17,8728,6880,"[""Keyboard"", ""Charger""]",3343.08,{},50211,1,Asia +2024-05-15,8729,5117,"[""Phone"", ""Wireless Mouse""]",3769.23,{},19803,0,Asia +2024-10-06,8730,7915,"[""Phone""]",2259.22,"{""seasonal"": ""30%""}",104861,0,Africa +2024-10-03,8731,3415,"[""Wireless Mouse"", ""Charger""]",1387.81,{},31393,1,Africa +2023-11-23,8732,869,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3982.53,{},37738,1,South America +2023-06-07,8733,4682,"[""Monitor""]",2020.64,"{""loyalty"": ""18%""}",262100,0,Asia +2023-05-30,8734,6739,"[""Keyboard""]",642.29,{},243827,0,North America +2024-03-02,8735,8310,"[""Headphones""]",804.39,{},161895,0,South America +2023-05-31,8736,268,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",868.36,{},142140,0,South America +2023-05-15,8737,7315,"[""Tablet"", ""Phone"", ""Headphones""]",365.32,{},196754,0,Asia +2024-08-13,8738,5087,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4863.96,{},251686,0,Africa +2024-08-04,8739,5561,"[""Wireless Mouse"", ""Tablet""]",400.27,{},95846,1,North America +2024-12-26,8740,1140,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2417.22,{},202227,1,South America +2024-11-08,8741,1487,"[""Phone"", ""Keyboard""]",4331.99,{},119146,1,Europe +2023-01-01,8742,177,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1298.14,{},94448,0,Asia +2023-03-14,8743,8022,"[""Phone"", ""Headphones"", ""Keyboard""]",4938.49,"{""seasonal"": ""13%""}",267509,0,South America +2024-03-24,8744,5980,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4838.12,{},61524,0,South America +2023-04-07,8745,7338,"[""Headphones"", ""Monitor"", ""Laptop""]",67.19,{},65336,0,Europe +2024-06-21,8746,5257,"[""Headphones"", ""Laptop"", ""Keyboard""]",1725.33,{},15543,1,Asia +2024-09-24,8747,7091,"[""Keyboard"", ""Charger"", ""Headphones""]",1765.43,"{"""": ""10%""}",95388,0,North America +2024-07-06,8748,1018,"[""Tablet""]",3029.74,{},150368,1,Asia +2023-09-11,8749,999,"[""Headphones"", ""Keyboard"", ""Laptop""]",4257.3,"{""seasonal"": ""6%""}",162008,0,Africa +2024-06-29,8750,1567,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3777.6,"{""loyalty"": ""12%""}",5371,0,Asia +2023-09-01,8751,1210,"[""Phone""]",1279.82,"{""promo"": ""19%""}",189307,1,North America +2024-09-26,8752,207,"[""Headphones"", ""Tablet""]",2003.57,"{"""": ""21%""}",71074,1,North America +2024-02-02,8753,5325,"[""Phone"", ""Monitor"", ""Keyboard""]",3319.08,"{""loyalty"": ""16%""}",224018,1,Africa +2024-07-02,8754,2941,"[""Headphones"", ""Charger""]",4789.8,{},15352,0,South America +2024-09-23,8755,8230,"[""Tablet"", ""Phone""]",3117.01,"{""seasonal"": ""26%""}",179372,0,North America +2023-10-20,8756,3195,"[""Keyboard""]",778.01,{},183817,1,North America +2024-04-25,8757,4710,"[""Monitor""]",4017.54,{},184194,0,Asia +2024-12-02,8758,505,"[""Charger"", ""Headphones""]",2317.71,"{""seasonal"": ""20%""}",189111,0,Africa +2023-05-14,8759,7061,"[""Laptop""]",3326.21,{},271243,1,Asia +2023-01-30,8760,7830,"[""Wireless Mouse""]",265.75,"{""loyalty"": ""23%""}",82461,1,North America +2024-12-31,8761,9726,"[""Charger"", ""Keyboard""]",2669.67,{},5778,0,Europe +2023-03-26,8762,7518,"[""Monitor"", ""Tablet"", ""Keyboard""]",3458.69,{},86480,1,Europe +2023-04-29,8763,5712,"[""Wireless Mouse""]",1642.77,"{""loyalty"": ""28%""}",23272,0,North America +2023-10-26,8764,1613,"[""Tablet"", ""Monitor""]",757.51,{},200807,1,Asia +2023-02-24,8765,7533,"[""Tablet"", ""Laptop""]",886.62,"{""promo"": ""10%""}",140376,1,Europe +2024-08-01,8766,503,"[""Monitor"", ""Wireless Mouse""]",2392.55,{},294898,1,Europe +2024-06-09,8767,5098,"[""Wireless Mouse"", ""Phone""]",4863.26,{},57081,1,Africa +2023-12-31,8768,7687,"[""Monitor"", ""Tablet""]",1524.57,"{""promo"": ""21%""}",186041,1,Asia +2024-03-13,8769,9658,"[""Laptop"", ""Tablet""]",1072.62,"{""seasonal"": ""27%""}",10409,1,Europe +2024-08-13,8770,736,"[""Charger"", ""Tablet""]",2984.75,"{""loyalty"": ""9%""}",140044,0,North America +2024-05-23,8771,8835,"[""Phone""]",576.98,"{""promo"": ""16%""}",28313,0,North America +2024-05-09,8772,3226,"[""Monitor"", ""Laptop""]",2698.92,{},139481,0,Africa +2024-09-20,8773,8088,"[""Keyboard""]",2613.16,"{""loyalty"": ""23%""}",44749,0,Asia +2024-05-25,8774,3998,"[""Monitor"", ""Phone"", ""Headphones""]",601.55,"{""seasonal"": ""25%""}",201493,0,South America +2024-08-05,8775,1662,"[""Charger"", ""Monitor""]",703.11,"{""promo"": ""7%""}",120265,1,Europe +2023-05-08,8776,8279,"[""Wireless Mouse""]",1447.94,"{""promo"": ""9%""}",247685,0,North America +2024-09-22,8777,5406,"[""Phone"", ""Keyboard""]",2214.77,"{""seasonal"": ""27%""}",21836,1,Europe +2023-03-06,8778,988,"[""Keyboard""]",561.6,"{""seasonal"": ""14%""}",180910,1,Africa +2023-08-02,8779,5886,"[""Monitor""]",1921.68,{},248492,0,North America +2023-06-26,8780,3171,"[""Tablet"", ""Keyboard""]",2893.15,"{""seasonal"": ""26%""}",102907,0,Asia +2024-05-15,8781,1555,"[""Wireless Mouse"", ""Keyboard""]",3633.31,"{""loyalty"": ""28%""}",202529,0,Europe +2023-05-26,8782,2588,"[""Headphones"", ""Monitor""]",3536.55,{},264916,0,Asia +2023-12-19,8783,9924,"[""Headphones""]",4146.96,{},199144,1,Europe +2024-01-10,8784,4968,"[""Laptop"", ""Tablet""]",4337.89,"{""promo"": ""8%""}",155692,1,South America +2024-05-01,8785,163,"[""Phone"", ""Charger""]",2301.03,{},218625,1,South America +2024-09-28,8786,9494,"[""Charger"", ""Monitor"", ""Keyboard""]",519.8,{},282907,1,South America +2024-01-02,8787,8651,"[""Phone"", ""Tablet""]",2423.98,{},137804,0,Asia +2023-07-01,8788,7798,"[""Wireless Mouse"", ""Monitor""]",3085.12,{},81102,1,North America +2023-08-08,8789,8088,"[""Keyboard""]",4511.54,"{"""": ""8%""}",147066,0,Europe +2023-11-05,8790,2439,"[""Keyboard"", ""Headphones""]",2029.19,{},184224,1,North America +2023-07-11,8791,5127,"[""Phone"", ""Headphones""]",1552.52,"{""loyalty"": ""22%""}",162158,1,Europe +2023-09-27,8792,5398,"[""Keyboard""]",3651.16,"{""promo"": ""29%""}",108563,1,North America +2024-07-25,8793,8060,"[""Headphones"", ""Keyboard"", ""Laptop""]",4344.32,{},291916,1,North America +2024-10-27,8794,1065,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2522.77,{},138920,0,Europe +2023-12-02,8795,9693,"[""Headphones""]",4631.25,"{""loyalty"": ""21%""}",79526,1,Africa +2023-05-07,8796,9011,"[""Keyboard""]",3380.22,{},147776,0,South America +2023-04-29,8797,8077,"[""Headphones""]",1424.29,{},199824,1,South America +2023-01-23,8798,7091,"[""Charger""]",3328.24,{},173651,0,South America +2023-03-08,8799,2681,"[""Wireless Mouse""]",3379.6,{},236596,1,Europe +2023-11-08,8800,3841,"[""Laptop"", ""Charger""]",2582.52,"{""loyalty"": ""18%""}",205451,1,Asia +2023-03-08,8801,2359,"[""Phone""]",3420.88,"{""seasonal"": ""28%""}",280852,1,Africa +2023-03-12,8802,4791,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1480.55,{},160742,0,North America +2023-05-20,8803,1791,"[""Wireless Mouse"", ""Keyboard""]",179.76,{},77315,0,North America +2024-05-28,8804,6628,"[""Headphones""]",4238.51,{},59340,0,Africa +2024-04-17,8805,7018,"[""Phone""]",4194.59,{},37870,1,South America +2023-10-23,8806,4533,"[""Headphones""]",3004.26,{},210433,0,South America +2023-11-05,8807,1801,"[""Tablet""]",1904.19,"{"""": ""22%""}",86598,1,North America +2023-02-10,8808,7418,"[""Charger"", ""Tablet""]",4348.53,"{"""": ""16%""}",43983,0,Africa +2023-11-13,8809,1757,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",446.71,{},220549,1,South America +2024-09-11,8810,4464,"[""Phone""]",3712.01,{},257509,1,Africa +2023-08-12,8811,641,"[""Headphones""]",2588.03,"{"""": ""6%""}",286245,1,South America +2023-07-07,8812,5565,"[""Keyboard""]",1805.78,"{"""": ""25%""}",145156,0,North America +2024-04-21,8813,496,"[""Headphones"", ""Keyboard""]",3606.49,{},131609,1,Europe +2024-12-20,8814,9218,"[""Wireless Mouse""]",1021.69,"{"""": ""20%""}",275024,0,Asia +2024-08-20,8815,7244,"[""Tablet"", ""Phone"", ""Laptop""]",1185.97,"{""seasonal"": ""25%""}",185612,1,Africa +2024-09-17,8816,7913,"[""Monitor"", ""Laptop""]",1956.55,{},155119,1,Europe +2024-07-07,8817,9145,"[""Tablet"", ""Wireless Mouse""]",99.97,"{""seasonal"": ""16%""}",295338,1,Europe +2023-01-09,8818,2463,"[""Phone"", ""Charger""]",134.08,"{"""": ""15%""}",89803,1,South America +2023-05-21,8819,8564,"[""Keyboard"", ""Headphones"", ""Monitor""]",3832.54,{},167934,1,North America +2024-02-13,8820,2666,"[""Headphones""]",2786.55,"{"""": ""10%""}",256232,1,Africa +2024-10-05,8821,8964,"[""Wireless Mouse""]",3232.82,{},203266,0,Africa +2024-09-01,8822,4115,"[""Monitor""]",3906.67,{},147389,1,South America +2024-11-02,8823,5370,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4323.08,"{""loyalty"": ""26%""}",83638,0,Europe +2024-05-01,8824,5520,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3725.69,{},220995,1,Africa +2023-02-26,8825,1424,"[""Phone"", ""Wireless Mouse""]",4627.29,{},268891,1,Asia +2024-02-29,8826,9539,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1009.82,"{"""": ""30%""}",295297,1,Africa +2024-04-11,8827,3606,"[""Headphones""]",846.07,"{""promo"": ""6%""}",246012,1,Asia +2023-06-07,8828,1686,"[""Tablet"", ""Keyboard"", ""Monitor""]",2995.45,"{""loyalty"": ""8%""}",231610,1,North America +2024-12-13,8829,57,"[""Monitor""]",4451.8,{},220270,0,Africa +2024-07-02,8830,8834,"[""Monitor""]",4160.1,"{""promo"": ""27%""}",98052,1,South America +2024-09-19,8831,9369,"[""Headphones"", ""Charger""]",2115.75,{},10858,1,Africa +2023-03-20,8832,6145,"[""Tablet"", ""Phone"", ""Headphones""]",1406.67,"{"""": ""20%""}",268300,1,North America +2023-10-28,8833,4990,"[""Charger""]",2445.14,{},226983,1,Europe +2024-11-06,8834,5365,"[""Monitor"", ""Phone"", ""Keyboard""]",3342.1,"{""promo"": ""24%""}",285780,1,South America +2023-12-14,8835,6484,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2729.87,{},285434,1,Europe +2023-07-30,8836,3744,"[""Tablet""]",2656.85,"{"""": ""20%""}",27723,0,Asia +2024-07-03,8837,5728,"[""Phone"", ""Charger"", ""Laptop""]",1176.69,"{""promo"": ""12%""}",173365,0,Asia +2024-10-13,8838,5861,"[""Monitor"", ""Headphones""]",3977.97,{},278770,0,Africa +2023-12-31,8839,1158,"[""Keyboard"", ""Headphones"", ""Laptop""]",3811.78,{},152885,1,Europe +2024-08-03,8840,9899,"[""Keyboard"", ""Monitor"", ""Phone""]",830.48,"{""loyalty"": ""11%""}",30749,1,Asia +2024-05-18,8841,5144,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4471.52,{},167847,1,Asia +2023-12-14,8842,3988,"[""Tablet""]",3933.74,{},235991,1,Africa +2024-04-04,8843,7404,"[""Headphones""]",4547.46,"{""loyalty"": ""19%""}",39792,1,Asia +2023-12-30,8844,5661,"[""Wireless Mouse"", ""Laptop""]",400.05,{},99853,0,Africa +2024-08-21,8845,1997,"[""Monitor""]",2255.86,"{""seasonal"": ""11%""}",118703,0,Asia +2023-10-08,8846,29,"[""Headphones"", ""Laptop""]",3433.75,"{""seasonal"": ""25%""}",119198,1,Africa +2024-09-14,8847,1892,"[""Keyboard"", ""Tablet"", ""Phone""]",444.79,"{""loyalty"": ""22%""}",112275,1,Europe +2024-09-19,8848,6080,"[""Charger""]",2015.16,{},41964,0,North America +2024-01-04,8849,2676,"[""Headphones"", ""Keyboard""]",282.67,{},89601,1,North America +2023-01-27,8850,7227,"[""Keyboard"", ""Laptop""]",1657.76,{},248437,0,Africa +2024-06-05,8851,1500,"[""Laptop"", ""Keyboard"", ""Phone""]",3008.93,{},90914,0,South America +2023-08-27,8852,8228,"[""Phone"", ""Laptop"", ""Monitor""]",4077.73,"{""seasonal"": ""20%""}",166041,0,Asia +2023-09-16,8853,7384,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3897.68,"{""seasonal"": ""18%""}",129524,0,Europe +2024-06-07,8854,1977,"[""Phone"", ""Keyboard""]",3088.06,"{""promo"": ""14%""}",140004,0,Europe +2024-08-11,8855,6355,"[""Wireless Mouse"", ""Monitor""]",87.75,{},216037,0,Africa +2023-01-21,8856,6360,"[""Keyboard""]",4302.64,{},64507,0,South America +2023-10-28,8857,2286,"[""Phone"", ""Headphones""]",3227.35,"{""loyalty"": ""15%""}",262192,1,North America +2023-04-11,8858,4611,"[""Phone""]",3774.09,{},271013,1,Asia +2024-04-07,8859,9662,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1226.51,"{""seasonal"": ""12%""}",84060,1,Africa +2023-03-04,8860,3062,"[""Headphones"", ""Laptop""]",4341.0,{},280409,0,Africa +2023-04-02,8861,8599,"[""Keyboard""]",381.07,"{""loyalty"": ""24%""}",79934,0,South America +2023-10-08,8862,2640,"[""Tablet""]",2103.68,{},296907,1,Europe +2023-07-09,8863,714,"[""Monitor""]",752.65,"{"""": ""21%""}",45512,0,Africa +2023-03-21,8864,2978,"[""Keyboard"", ""Phone"", ""Monitor""]",1020.43,{},284565,0,North America +2023-01-01,8865,9217,"[""Keyboard"", ""Tablet""]",2071.12,{},261802,0,South America +2023-06-13,8866,9650,"[""Laptop"", ""Charger"", ""Keyboard""]",1040.19,{},115968,1,Asia +2023-06-29,8867,3893,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3724.11,"{"""": ""26%""}",114466,1,Asia +2023-06-27,8868,3,"[""Phone""]",1466.25,"{""promo"": ""12%""}",234295,1,South America +2024-08-05,8869,7152,"[""Headphones""]",280.0,"{""seasonal"": ""13%""}",37316,1,North America +2024-08-12,8870,2325,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1626.03,{},35024,1,North America +2023-12-01,8871,2521,"[""Charger""]",3247.13,"{""promo"": ""19%""}",201982,1,South America +2023-03-25,8872,8142,"[""Charger"", ""Phone"", ""Laptop""]",3814.31,{},130012,1,Europe +2023-01-24,8873,4182,"[""Laptop"", ""Wireless Mouse""]",1053.24,{},215914,1,North America +2023-04-21,8874,2301,"[""Headphones"", ""Wireless Mouse""]",1793.86,"{""seasonal"": ""13%""}",294518,0,South America +2024-09-27,8875,417,"[""Laptop""]",3633.0,{},248011,1,Asia +2024-11-06,8876,4657,"[""Charger"", ""Laptop"", ""Keyboard""]",3060.22,"{""seasonal"": ""22%""}",86091,1,Africa +2024-04-03,8877,4416,"[""Tablet"", ""Laptop""]",2340.47,"{"""": ""29%""}",127680,0,South America +2024-05-31,8878,8229,"[""Keyboard"", ""Monitor""]",995.88,{},210551,1,South America +2023-10-31,8879,7535,"[""Tablet"", ""Keyboard"", ""Laptop""]",1773.39,"{""seasonal"": ""22%""}",232898,1,South America +2024-07-24,8880,1889,"[""Charger"", ""Keyboard"", ""Monitor""]",90.77,"{""seasonal"": ""19%""}",127894,1,Africa +2024-12-05,8881,152,"[""Charger""]",1409.59,{},85605,1,Asia +2024-06-01,8882,9405,"[""Tablet"", ""Monitor"", ""Laptop""]",3620.39,"{""loyalty"": ""21%""}",75830,0,Asia +2023-06-01,8883,3537,"[""Phone"", ""Laptop"", ""Charger""]",2833.68,"{""loyalty"": ""17%""}",205470,0,Europe +2023-12-07,8884,8474,"[""Keyboard""]",1930.63,"{""promo"": ""30%""}",99406,1,Asia +2023-10-13,8885,1398,"[""Monitor"", ""Charger""]",219.07,"{"""": ""26%""}",173905,0,South America +2023-05-18,8886,9701,"[""Laptop"", ""Tablet""]",3205.02,{},294802,1,North America +2024-01-30,8887,1104,"[""Headphones""]",1941.18,"{""seasonal"": ""10%""}",8141,0,Asia +2024-09-24,8888,8120,"[""Tablet""]",958.46,{},112125,0,Asia +2024-06-13,8889,6849,"[""Phone"", ""Keyboard"", ""Monitor""]",57.86,"{""loyalty"": ""10%""}",22573,0,South America +2023-01-07,8890,8379,"[""Keyboard"", ""Laptop"", ""Phone""]",4517.55,{},277610,0,North America +2023-03-21,8891,3681,"[""Charger"", ""Tablet""]",3895.8,"{""promo"": ""6%""}",287996,1,Europe +2024-04-18,8892,5957,"[""Wireless Mouse"", ""Tablet""]",311.91,"{""loyalty"": ""27%""}",148648,0,Europe +2024-01-08,8893,4652,"[""Headphones"", ""Monitor""]",3332.05,"{""loyalty"": ""18%""}",118083,0,Europe +2024-09-13,8894,9953,"[""Phone"", ""Charger""]",575.29,{},236551,1,Africa +2024-03-09,8895,498,"[""Monitor"", ""Laptop"", ""Phone""]",1567.63,"{""loyalty"": ""18%""}",113577,1,North America +2024-03-12,8896,3707,"[""Phone"", ""Tablet""]",1402.06,"{""loyalty"": ""27%""}",49495,0,Asia +2024-08-22,8897,2876,"[""Keyboard"", ""Phone""]",639.31,{},79485,1,Africa +2024-09-19,8898,2842,"[""Headphones"", ""Tablet""]",2103.18,{},226427,0,Africa +2023-03-16,8899,1621,"[""Laptop"", ""Phone"", ""Monitor""]",1787.91,"{""promo"": ""24%""}",94533,1,North America +2024-12-19,8900,718,"[""Laptop"", ""Keyboard"", ""Monitor""]",4121.76,{},47947,1,Asia +2023-08-08,8901,6531,"[""Phone"", ""Laptop"", ""Charger""]",3984.55,"{""promo"": ""12%""}",149441,0,Asia +2023-09-06,8902,261,"[""Tablet"", ""Wireless Mouse""]",4974.89,"{""seasonal"": ""5%""}",55080,1,North America +2024-05-05,8903,4039,"[""Keyboard"", ""Headphones""]",4514.62,"{""loyalty"": ""11%""}",152710,1,South America +2024-04-05,8904,4665,"[""Laptop""]",1174.6,"{""seasonal"": ""18%""}",284757,1,Africa +2024-09-27,8905,6703,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2858.79,"{"""": ""6%""}",180845,0,Africa +2024-02-21,8906,2995,"[""Tablet"", ""Charger""]",3468.74,"{""promo"": ""22%""}",293616,0,North America +2024-11-26,8907,1052,"[""Wireless Mouse"", ""Keyboard""]",2365.63,{},236097,0,South America +2023-03-19,8908,1410,"[""Charger"", ""Wireless Mouse""]",3086.26,"{""promo"": ""27%""}",90068,1,Africa +2023-09-16,8909,5025,"[""Laptop"", ""Monitor"", ""Phone""]",513.99,"{"""": ""12%""}",41620,0,Africa +2023-12-04,8910,4051,"[""Charger"", ""Phone"", ""Keyboard""]",4419.29,"{""seasonal"": ""10%""}",125042,1,Asia +2023-03-15,8911,313,"[""Wireless Mouse"", ""Phone""]",3595.9,{},117704,1,North America +2024-11-15,8912,9770,"[""Monitor"", ""Charger""]",1835.23,"{""promo"": ""7%""}",176170,1,Europe +2023-08-19,8913,6967,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1673.68,{},236671,1,South America +2023-07-06,8914,6064,"[""Charger"", ""Tablet""]",2631.07,{},142076,1,South America +2024-03-24,8915,44,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3808.98,"{"""": ""25%""}",173820,0,Europe +2023-05-12,8916,3222,"[""Monitor"", ""Laptop""]",3470.96,{},175399,1,Asia +2024-10-29,8917,4397,"[""Wireless Mouse"", ""Charger""]",2341.49,"{""loyalty"": ""17%""}",103060,0,South America +2023-01-01,8918,5579,"[""Tablet"", ""Monitor""]",4211.57,{},15355,0,Africa +2023-09-03,8919,5163,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3850.33,{},209424,1,Asia +2024-09-27,8920,134,"[""Wireless Mouse"", ""Tablet""]",4460.94,"{"""": ""11%""}",18979,0,Africa +2023-07-25,8921,3243,"[""Tablet"", ""Keyboard"", ""Phone""]",2332.33,"{"""": ""7%""}",64955,0,North America +2023-05-18,8922,6621,"[""Headphones"", ""Monitor"", ""Charger""]",307.86,{},181456,0,South America +2024-07-13,8923,5055,"[""Headphones"", ""Charger"", ""Tablet""]",1396.34,{},83706,1,North America +2024-03-26,8924,3397,"[""Monitor"", ""Tablet""]",1060.29,"{""loyalty"": ""7%""}",49328,1,North America +2024-07-02,8925,7847,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3786.83,{},260879,1,Europe +2023-11-09,8926,9175,"[""Tablet""]",4946.37,{},90451,0,Africa +2024-09-21,8927,5052,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4922.17,{},129804,0,North America +2023-05-03,8928,4205,"[""Phone""]",4200.81,{},206911,1,North America +2023-05-01,8929,624,"[""Charger"", ""Tablet""]",2603.8,"{""seasonal"": ""8%""}",123045,1,Europe +2023-01-12,8930,9994,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4083.87,"{""seasonal"": ""16%""}",244885,0,Africa +2023-12-15,8931,5860,"[""Tablet""]",3539.39,"{""promo"": ""19%""}",3325,1,North America +2024-04-13,8932,9063,"[""Monitor""]",2866.66,{},113329,1,Africa +2023-07-19,8933,7399,"[""Headphones"", ""Tablet""]",3846.86,"{""loyalty"": ""10%""}",132067,1,South America +2023-03-03,8934,1432,"[""Phone"", ""Charger""]",3542.59,"{"""": ""22%""}",208699,0,South America +2023-11-03,8935,9228,"[""Headphones"", ""Tablet"", ""Phone""]",4642.35,"{""seasonal"": ""29%""}",48393,0,South America +2024-11-20,8936,2322,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1441.0,{},287371,1,Europe +2024-05-24,8937,5993,"[""Laptop"", ""Keyboard"", ""Headphones""]",2241.1,"{""loyalty"": ""8%""}",133338,0,North America +2023-10-25,8938,4524,"[""Wireless Mouse"", ""Headphones""]",1589.58,{},3096,0,Asia +2023-10-01,8939,6157,"[""Charger"", ""Keyboard"", ""Laptop""]",4887.79,"{""loyalty"": ""6%""}",63557,1,Asia +2023-02-15,8940,122,"[""Monitor"", ""Phone"", ""Headphones""]",193.57,"{""seasonal"": ""19%""}",66885,1,North America +2023-01-05,8941,389,"[""Keyboard"", ""Charger"", ""Headphones""]",4482.34,"{""seasonal"": ""20%""}",11412,1,South America +2023-12-18,8942,8696,"[""Headphones"", ""Charger"", ""Monitor""]",1498.41,{},112706,0,North America +2023-09-14,8943,5184,"[""Keyboard"", ""Tablet""]",2816.57,"{""seasonal"": ""6%""}",124940,0,Africa +2023-10-06,8944,6001,"[""Laptop"", ""Phone"", ""Keyboard""]",2281.64,{},29738,0,Africa +2024-04-18,8945,498,"[""Keyboard"", ""Monitor"", ""Phone""]",4480.17,"{""seasonal"": ""30%""}",41545,1,South America +2024-07-26,8946,736,"[""Charger"", ""Headphones""]",693.43,{},106909,1,South America +2023-11-22,8947,4766,"[""Headphones"", ""Laptop""]",2588.53,"{""loyalty"": ""10%""}",158495,1,Asia +2023-08-04,8948,4174,"[""Keyboard"", ""Phone""]",566.17,{},222142,0,North America +2024-08-09,8949,9370,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1438.59,"{""promo"": ""5%""}",297517,1,Africa +2024-02-05,8950,7627,"[""Laptop"", ""Tablet"", ""Headphones""]",3244.14,{},28303,0,South America +2024-04-13,8951,187,"[""Laptop"", ""Charger"", ""Tablet""]",3080.42,{},112435,0,South America +2023-05-26,8952,3750,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2343.21,{},272301,0,Africa +2023-11-29,8953,6026,"[""Monitor"", ""Charger"", ""Phone""]",545.49,"{""promo"": ""8%""}",78924,0,Europe +2023-07-11,8954,7361,"[""Phone""]",2591.8,"{""seasonal"": ""23%""}",274423,1,Africa +2023-08-01,8955,1764,"[""Charger"", ""Phone""]",845.59,{},156020,0,Africa +2023-06-19,8956,9101,"[""Tablet""]",4750.95,{},189409,1,North America +2024-02-09,8957,489,"[""Tablet""]",788.29,"{""seasonal"": ""6%""}",16804,1,South America +2023-07-16,8958,6088,"[""Headphones""]",2653.78,{},90470,0,Africa +2024-11-20,8959,8936,"[""Charger""]",3551.25,"{"""": ""28%""}",22822,1,Europe +2023-11-04,8960,2504,"[""Keyboard"", ""Tablet""]",4047.67,{},155668,0,South America +2024-01-07,8961,8131,"[""Headphones"", ""Phone""]",4157.1,{},135772,1,South America +2023-05-02,8962,2596,"[""Monitor""]",2862.15,"{""loyalty"": ""25%""}",166018,1,Africa +2023-05-07,8963,4273,"[""Monitor"", ""Headphones""]",3716.29,{},53494,0,Africa +2023-02-10,8964,9566,"[""Headphones"", ""Laptop""]",291.01,"{""promo"": ""17%""}",265195,1,North America +2024-03-30,8965,1393,"[""Laptop""]",2683.08,"{""loyalty"": ""28%""}",233670,1,Europe +2024-02-21,8966,3508,"[""Tablet""]",3260.26,"{"""": ""25%""}",281021,1,South America +2024-03-26,8967,6478,"[""Keyboard"", ""Headphones""]",2250.12,{},187016,1,North America +2024-12-21,8968,905,"[""Phone"", ""Tablet"", ""Charger""]",2751.98,"{""promo"": ""30%""}",188664,0,Africa +2023-02-04,8969,8089,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3539.18,{},223047,0,South America +2023-08-13,8970,7925,"[""Tablet""]",127.03,"{""loyalty"": ""8%""}",235211,1,Africa +2023-08-02,8971,4868,"[""Tablet"", ""Headphones""]",2296.39,{},106578,1,North America +2024-08-26,8972,7050,"[""Wireless Mouse""]",1450.68,{},255663,1,Asia +2023-02-03,8973,9532,"[""Monitor"", ""Headphones""]",3887.87,{},6108,0,South America +2023-12-23,8974,3133,"[""Monitor"", ""Tablet""]",3664.45,"{"""": ""8%""}",77103,0,Africa +2024-12-18,8975,9735,"[""Phone""]",3632.16,"{""seasonal"": ""15%""}",267648,1,Asia +2023-11-03,8976,5118,"[""Headphones"", ""Tablet""]",2855.09,{},8400,1,Asia +2024-04-22,8977,4915,"[""Tablet"", ""Laptop""]",71.58,{},16490,0,North America +2023-05-12,8978,1558,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",665.21,{},227103,0,Africa +2023-07-09,8979,3090,"[""Headphones""]",1827.3,{},153207,0,Europe +2023-06-19,8980,3253,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4650.63,{},153333,1,South America +2023-02-18,8981,7149,"[""Charger"", ""Monitor"", ""Headphones""]",4179.59,"{"""": ""24%""}",106509,1,South America +2023-04-26,8982,5258,"[""Headphones""]",1095.73,"{"""": ""8%""}",253267,0,Asia +2023-03-26,8983,9885,"[""Charger"", ""Phone""]",1434.32,"{"""": ""20%""}",162023,1,North America +2024-09-06,8984,2919,"[""Tablet""]",3972.54,{},236278,1,Asia +2023-02-18,8985,4956,"[""Laptop""]",611.4,"{""loyalty"": ""27%""}",53178,1,Europe +2024-12-20,8986,9427,"[""Tablet"", ""Wireless Mouse""]",3725.64,{},108376,0,Asia +2023-02-27,8987,3667,"[""Phone"", ""Monitor""]",4478.13,"{""seasonal"": ""11%""}",261456,0,Asia +2024-03-19,8988,1345,"[""Tablet""]",4609.33,{},184490,0,South America +2024-02-11,8989,8896,"[""Laptop"", ""Keyboard"", ""Phone""]",2567.24,{},251738,0,North America +2024-06-22,8990,1033,"[""Keyboard""]",1805.4,"{""seasonal"": ""21%""}",88382,1,Europe +2024-01-20,8991,380,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1618.91,"{""loyalty"": ""17%""}",38399,1,North America +2023-08-05,8992,2240,"[""Tablet"", ""Phone""]",4140.75,{},102457,1,Europe +2023-09-04,8993,3956,"[""Wireless Mouse""]",1425.44,"{"""": ""8%""}",91623,0,Africa +2023-03-05,8994,2377,"[""Monitor""]",820.42,{},250100,0,North America +2024-12-10,8995,4853,"[""Tablet"", ""Phone"", ""Monitor""]",2864.48,"{""seasonal"": ""18%""}",274078,0,Asia +2023-08-26,8996,6115,"[""Laptop"", ""Keyboard""]",3869.32,"{"""": ""19%""}",242980,1,Africa +2023-03-09,8997,7214,"[""Phone"", ""Wireless Mouse""]",4106.98,{},89986,0,Asia +2023-02-12,8998,7542,"[""Headphones"", ""Keyboard""]",1170.67,"{""promo"": ""17%""}",220660,0,South America +2023-10-22,8999,5067,"[""Headphones"", ""Charger"", ""Phone""]",1496.25,"{""promo"": ""20%""}",77825,1,North America +2023-03-25,9000,4204,"[""Charger"", ""Keyboard""]",1212.89,{},173006,1,Asia +2023-11-01,9001,5917,"[""Tablet"", ""Laptop""]",2409.69,"{""promo"": ""22%""}",249959,1,North America +2023-02-24,9002,5894,"[""Phone"", ""Charger"", ""Headphones""]",1926.95,{},62062,1,Asia +2024-06-22,9003,9080,"[""Tablet""]",4599.77,{},288990,1,Asia +2023-05-26,9004,6441,"[""Laptop"", ""Headphones""]",487.55,"{""seasonal"": ""25%""}",28313,1,Africa +2024-12-23,9005,7492,"[""Laptop""]",3476.05,{},274557,0,Europe +2024-10-27,9006,4347,"[""Tablet""]",3745.56,"{""promo"": ""10%""}",180367,0,Europe +2024-03-29,9007,3083,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2882.71,"{"""": ""14%""}",9226,1,North America +2023-06-27,9008,2056,"[""Charger"", ""Phone""]",2468.49,"{"""": ""16%""}",212368,1,Africa +2024-08-31,9009,5439,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2196.76,"{""seasonal"": ""13%""}",259331,0,Europe +2024-12-16,9010,7885,"[""Keyboard""]",443.32,{},61748,1,Asia +2023-06-09,9011,2424,"[""Tablet""]",377.67,{},256993,1,South America +2024-02-28,9012,8367,"[""Keyboard""]",1384.76,"{"""": ""22%""}",254873,1,Asia +2024-10-22,9013,4540,"[""Laptop""]",1304.14,{},125805,0,Africa +2024-10-08,9014,2650,"[""Headphones"", ""Phone""]",253.83,"{""promo"": ""8%""}",154687,0,South America +2023-01-14,9015,8648,"[""Keyboard""]",4300.91,"{""loyalty"": ""6%""}",18241,1,Africa +2024-09-20,9016,1292,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1682.96,"{"""": ""29%""}",103110,1,Europe +2024-12-05,9017,1811,"[""Headphones"", ""Phone""]",559.61,"{""loyalty"": ""17%""}",210978,1,North America +2024-08-10,9018,6208,"[""Keyboard"", ""Laptop"", ""Headphones""]",1365.09,"{""seasonal"": ""19%""}",28244,0,South America +2024-06-23,9019,2011,"[""Phone""]",431.07,{},64553,0,Africa +2023-09-11,9020,2160,"[""Phone"", ""Keyboard"", ""Laptop""]",1572.27,"{""loyalty"": ""10%""}",299907,1,Africa +2023-10-27,9021,4324,"[""Headphones""]",2888.04,"{"""": ""26%""}",32939,0,South America +2023-04-24,9022,302,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2787.19,{},161038,1,Africa +2024-02-09,9023,325,"[""Charger""]",3317.95,"{""promo"": ""21%""}",224850,1,North America +2024-07-17,9024,1764,"[""Phone"", ""Charger""]",2141.35,{},116738,1,Asia +2024-02-23,9025,1665,"[""Keyboard"", ""Charger""]",1950.22,"{""loyalty"": ""23%""}",38690,0,Asia +2023-10-24,9026,9588,"[""Keyboard"", ""Wireless Mouse""]",4643.35,"{""promo"": ""5%""}",117991,1,Europe +2024-03-18,9027,673,"[""Headphones"", ""Monitor"", ""Keyboard""]",391.66,{},44600,1,Africa +2024-03-10,9028,8787,"[""Phone"", ""Charger""]",4329.15,{},115489,0,Africa +2024-04-12,9029,1524,"[""Keyboard"", ""Wireless Mouse""]",2297.05,"{""seasonal"": ""7%""}",218398,0,Africa +2024-09-03,9030,8629,"[""Charger"", ""Tablet""]",4528.42,{},221895,1,North America +2023-11-25,9031,1649,"[""Charger""]",2562.38,"{""loyalty"": ""6%""}",152216,1,South America +2024-12-02,9032,1051,"[""Phone""]",4904.64,"{""promo"": ""30%""}",28832,0,North America +2024-04-29,9033,1689,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4853.36,{},92799,0,Europe +2023-02-23,9034,8794,"[""Charger"", ""Tablet"", ""Monitor""]",1762.23,"{""loyalty"": ""22%""}",268475,1,North America +2024-10-02,9035,4089,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2513.14,"{"""": ""5%""}",101071,0,South America +2024-04-05,9036,3320,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3520.15,"{""promo"": ""6%""}",25099,1,North America +2023-02-03,9037,1891,"[""Phone"", ""Headphones"", ""Keyboard""]",1676.45,{},294236,1,Asia +2023-05-19,9038,741,"[""Phone"", ""Monitor""]",963.65,{},214494,0,North America +2023-04-10,9039,6579,"[""Keyboard""]",4446.02,"{""seasonal"": ""28%""}",106987,1,North America +2023-06-17,9040,8929,"[""Phone"", ""Charger"", ""Tablet""]",1925.73,"{""promo"": ""18%""}",101025,0,North America +2024-11-28,9041,3488,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3193.36,{},219260,1,North America +2024-12-10,9042,4517,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4735.1,{},188957,0,Africa +2024-03-05,9043,1454,"[""Tablet"", ""Monitor""]",3224.56,{},231026,1,Europe +2024-10-09,9044,9115,"[""Monitor"", ""Phone""]",1871.61,"{""promo"": ""30%""}",265226,1,Africa +2024-11-29,9045,5829,"[""Charger""]",1832.06,{},31468,0,South America +2024-07-10,9046,427,"[""Laptop""]",563.98,"{""loyalty"": ""10%""}",34381,1,Africa +2024-03-16,9047,8046,"[""Charger""]",2088.55,"{"""": ""12%""}",102411,1,South America +2023-10-01,9048,3330,"[""Phone"", ""Tablet""]",3105.67,"{""promo"": ""12%""}",167420,0,Europe +2024-01-17,9049,5394,"[""Wireless Mouse"", ""Keyboard""]",4161.82,"{""promo"": ""11%""}",290348,0,Asia +2023-07-31,9050,5758,"[""Laptop"", ""Headphones""]",1190.52,"{"""": ""19%""}",205120,1,North America +2024-01-21,9051,4599,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1020.97,"{""seasonal"": ""18%""}",232890,1,Africa +2023-04-04,9052,1178,"[""Wireless Mouse"", ""Tablet""]",2643.82,"{"""": ""30%""}",284817,1,South America +2024-04-16,9053,9813,"[""Phone"", ""Laptop"", ""Monitor""]",2670.77,"{""loyalty"": ""26%""}",294020,1,Asia +2023-06-27,9054,975,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3715.04,"{""seasonal"": ""7%""}",158443,1,South America +2023-03-22,9055,9710,"[""Laptop"", ""Keyboard"", ""Tablet""]",779.05,"{"""": ""27%""}",188028,1,North America +2024-01-08,9056,7608,"[""Phone"", ""Tablet""]",3740.75,"{""seasonal"": ""15%""}",103394,0,Europe +2023-10-23,9057,6307,"[""Monitor"", ""Phone""]",4864.27,{},290981,0,Europe +2024-06-17,9058,8295,"[""Phone""]",65.5,"{""loyalty"": ""30%""}",299424,1,North America +2023-06-08,9059,6465,"[""Charger""]",1911.72,"{""loyalty"": ""25%""}",251384,0,Africa +2023-04-28,9060,7122,"[""Tablet"", ""Charger"", ""Phone""]",1283.81,{},198055,0,South America +2024-02-11,9061,26,"[""Tablet"", ""Headphones"", ""Laptop""]",2848.85,{},279394,0,South America +2023-11-21,9062,3430,"[""Keyboard"", ""Headphones""]",127.79,{},118111,1,Africa +2023-05-28,9063,887,"[""Laptop"", ""Charger"", ""Phone""]",1002.7,"{""loyalty"": ""29%""}",22916,1,South America +2024-10-31,9064,6949,"[""Phone""]",4689.16,"{""promo"": ""22%""}",49788,1,North America +2023-08-30,9065,2006,"[""Keyboard"", ""Monitor""]",4421.5,{},253879,0,Africa +2024-02-13,9066,4595,"[""Laptop"", ""Tablet"", ""Monitor""]",325.58,"{""seasonal"": ""18%""}",201827,1,South America +2024-08-16,9067,7021,"[""Charger""]",3280.29,"{"""": ""7%""}",129137,0,South America +2023-10-20,9068,4794,"[""Tablet"", ""Wireless Mouse""]",2479.4,"{""loyalty"": ""23%""}",36030,0,Asia +2024-01-20,9069,3473,"[""Laptop"", ""Tablet"", ""Charger""]",411.9,{},36155,0,Africa +2024-12-08,9070,5701,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3513.92,"{"""": ""17%""}",196529,1,Asia +2024-08-21,9071,8440,"[""Monitor"", ""Laptop""]",1013.05,{},207972,1,Asia +2024-11-17,9072,8116,"[""Wireless Mouse"", ""Monitor""]",4845.22,{},84343,1,Europe +2024-06-12,9073,6804,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2199.56,{},31341,0,Africa +2024-03-07,9074,1970,"[""Wireless Mouse""]",332.89,{},39620,0,Africa +2023-01-13,9075,7268,"[""Charger"", ""Phone"", ""Keyboard""]",4968.2,"{""loyalty"": ""15%""}",103972,1,Africa +2024-09-04,9076,4789,"[""Headphones"", ""Phone""]",1114.22,"{"""": ""22%""}",50475,0,North America +2023-04-06,9077,221,"[""Charger""]",1485.92,{},237515,1,Asia +2023-11-13,9078,6100,"[""Laptop"", ""Charger""]",813.7,"{"""": ""19%""}",239010,0,South America +2024-02-09,9079,9274,"[""Tablet"", ""Headphones"", ""Charger""]",2164.08,{},36491,0,North America +2024-05-26,9080,1837,"[""Monitor"", ""Charger"", ""Laptop""]",1817.14,{},91468,0,Africa +2024-02-29,9081,5084,"[""Keyboard"", ""Charger"", ""Monitor""]",1260.23,{},14086,0,Europe +2023-08-15,9082,6817,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2218.73,"{""loyalty"": ""23%""}",259385,1,South America +2024-10-03,9083,4587,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3321.95,{},189917,0,Europe +2024-07-15,9084,1057,"[""Phone"", ""Keyboard""]",301.86,"{""loyalty"": ""11%""}",278593,1,Africa +2023-10-09,9085,6064,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2177.12,"{""promo"": ""19%""}",268724,1,Africa +2024-11-24,9086,9775,"[""Phone""]",1029.5,"{""loyalty"": ""11%""}",191097,1,North America +2023-03-25,9087,6502,"[""Headphones"", ""Laptop""]",669.77,{},89245,1,South America +2023-10-09,9088,2205,"[""Charger"", ""Tablet""]",259.38,{},45748,0,North America +2023-11-20,9089,6395,"[""Tablet"", ""Headphones""]",351.92,{},134143,1,South America +2024-06-23,9090,9198,"[""Charger"", ""Phone""]",782.93,"{""promo"": ""27%""}",280838,0,Asia +2023-09-08,9091,6768,"[""Headphones""]",4758.39,"{"""": ""18%""}",135049,0,Europe +2023-04-15,9092,2386,"[""Laptop"", ""Wireless Mouse""]",3789.25,"{""seasonal"": ""8%""}",164871,1,South America +2023-05-03,9093,611,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2774.71,"{""promo"": ""8%""}",213512,1,Europe +2024-03-01,9094,2061,"[""Wireless Mouse""]",4520.38,"{""loyalty"": ""8%""}",149652,1,South America +2024-02-09,9095,4213,"[""Keyboard"", ""Headphones"", ""Phone""]",1271.06,{},241839,1,Europe +2024-06-16,9096,1171,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1622.13,"{"""": ""20%""}",273013,0,South America +2023-11-02,9097,8057,"[""Keyboard"", ""Headphones"", ""Phone""]",79.38,{},251968,0,Africa +2024-12-21,9098,5533,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2701.53,"{""seasonal"": ""11%""}",224939,0,Asia +2023-11-13,9099,5954,"[""Keyboard""]",4860.17,{},161360,1,North America +2023-10-16,9100,5696,"[""Headphones"", ""Monitor""]",1548.23,"{""seasonal"": ""23%""}",149585,0,South America +2023-11-20,9101,4406,"[""Keyboard"", ""Monitor"", ""Headphones""]",2170.59,{},171084,0,Africa +2023-09-08,9102,3118,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2319.39,"{""seasonal"": ""15%""}",283864,0,Asia +2024-08-06,9103,7185,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",476.47,"{""loyalty"": ""5%""}",67598,0,South America +2024-07-28,9104,6069,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1328.59,"{""seasonal"": ""13%""}",182811,0,South America +2023-10-15,9105,1386,"[""Phone"", ""Laptop""]",3857.46,{},30387,0,North America +2023-11-21,9106,5904,"[""Keyboard"", ""Monitor"", ""Charger""]",1199.99,{},147388,0,South America +2023-01-22,9107,7946,"[""Tablet""]",1166.79,{},124894,1,Africa +2024-07-10,9108,1309,"[""Monitor"", ""Keyboard"", ""Laptop""]",1878.69,"{""seasonal"": ""12%""}",150768,0,Europe +2024-06-06,9109,1399,"[""Keyboard"", ""Monitor"", ""Headphones""]",4743.49,{},60195,0,Africa +2023-11-15,9110,8069,"[""Phone"", ""Tablet"", ""Monitor""]",2188.06,{},95434,1,South America +2023-09-14,9111,5681,"[""Monitor"", ""Charger"", ""Keyboard""]",4418.95,"{""promo"": ""26%""}",279132,1,Europe +2023-09-11,9112,6504,"[""Monitor"", ""Phone""]",3378.76,"{""loyalty"": ""25%""}",81783,1,North America +2024-06-03,9113,3974,"[""Laptop""]",1288.01,"{""seasonal"": ""22%""}",285737,0,North America +2023-07-25,9114,7305,"[""Tablet""]",2756.16,"{"""": ""6%""}",276798,0,Asia +2024-03-09,9115,8477,"[""Laptop"", ""Phone""]",3454.53,{},24166,1,Asia +2023-09-03,9116,4273,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2773.78,{},14767,0,South America +2023-12-16,9117,6605,"[""Wireless Mouse"", ""Monitor""]",4858.08,{},284296,1,North America +2024-07-18,9118,9467,"[""Tablet"", ""Headphones""]",997.05,{},80653,0,South America +2024-06-20,9119,5822,"[""Charger"", ""Tablet""]",760.58,"{""seasonal"": ""25%""}",171381,0,Europe +2024-09-01,9120,8639,"[""Laptop"", ""Keyboard""]",1149.79,"{""promo"": ""26%""}",294357,1,North America +2024-07-22,9121,9005,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1153.25,{},49947,1,Asia +2024-07-22,9122,2545,"[""Tablet""]",1746.02,{},217609,1,Europe +2023-04-24,9123,3111,"[""Keyboard"", ""Charger"", ""Monitor""]",1663.37,"{""seasonal"": ""11%""}",46461,1,Europe +2023-04-06,9124,8474,"[""Monitor"", ""Keyboard"", ""Laptop""]",3385.94,"{""promo"": ""17%""}",235590,1,Europe +2023-12-02,9125,5312,"[""Tablet"", ""Laptop""]",612.45,"{""loyalty"": ""10%""}",97082,0,Asia +2024-03-16,9126,4385,"[""Charger"", ""Headphones""]",3548.05,{},10733,1,Europe +2024-08-14,9127,8532,"[""Monitor"", ""Headphones""]",1746.29,{},251802,1,South America +2023-10-11,9128,8328,"[""Tablet"", ""Headphones"", ""Laptop""]",2673.02,"{""seasonal"": ""15%""}",32630,0,South America +2023-12-29,9129,9058,"[""Keyboard"", ""Wireless Mouse""]",83.94,{},213105,0,North America +2023-09-09,9130,9787,"[""Laptop"", ""Tablet""]",759.88,"{""loyalty"": ""25%""}",254646,1,Africa +2023-03-11,9131,8861,"[""Tablet"", ""Laptop""]",2289.12,"{""seasonal"": ""7%""}",36862,0,South America +2023-02-10,9132,8946,"[""Monitor"", ""Headphones""]",2795.89,"{""loyalty"": ""24%""}",4307,1,Asia +2023-05-17,9133,8166,"[""Monitor"", ""Phone"", ""Headphones""]",4285.4,{},277308,1,Africa +2023-07-14,9134,2423,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3090.55,"{""seasonal"": ""29%""}",53364,1,Africa +2024-10-24,9135,8361,"[""Phone"", ""Laptop"", ""Keyboard""]",1309.58,"{""seasonal"": ""5%""}",20425,1,Asia +2023-01-16,9136,9482,"[""Headphones""]",3714.32,{},255675,1,South America +2023-06-02,9137,6660,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1382.03,"{""loyalty"": ""7%""}",35545,0,Europe +2023-12-22,9138,7218,"[""Wireless Mouse""]",466.44,"{""seasonal"": ""28%""}",86041,1,Africa +2023-09-23,9139,4696,"[""Headphones""]",3974.11,{},45570,0,South America +2024-11-27,9140,2527,"[""Phone""]",4457.04,"{""promo"": ""30%""}",225635,0,Africa +2023-10-01,9141,3672,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3151.38,"{""loyalty"": ""25%""}",88999,1,Africa +2023-12-11,9142,2006,"[""Headphones"", ""Keyboard""]",3627.26,{},151872,0,Africa +2024-01-01,9143,4265,"[""Charger""]",4942.61,{},140931,0,South America +2024-02-17,9144,6415,"[""Keyboard""]",4347.96,"{""loyalty"": ""6%""}",9619,0,North America +2023-01-06,9145,1964,"[""Keyboard"", ""Tablet""]",3321.18,"{""seasonal"": ""21%""}",223324,1,South America +2024-07-19,9146,8802,"[""Laptop""]",2108.18,"{""seasonal"": ""17%""}",120391,1,Asia +2024-10-22,9147,9727,"[""Keyboard"", ""Headphones""]",4298.19,"{""promo"": ""21%""}",98680,0,Asia +2024-01-03,9148,5402,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1246.04,"{""loyalty"": ""16%""}",193271,0,Europe +2023-05-07,9149,171,"[""Keyboard""]",3389.42,{},233831,1,Europe +2023-07-24,9150,6441,"[""Charger""]",4301.16,"{""seasonal"": ""24%""}",246036,0,North America +2024-05-13,9151,8862,"[""Laptop""]",4164.68,"{""promo"": ""29%""}",202197,1,Asia +2024-08-05,9152,1492,"[""Laptop"", ""Wireless Mouse""]",4952.14,"{""loyalty"": ""29%""}",274251,1,Europe +2024-06-27,9153,6030,"[""Phone""]",1130.61,{},148944,1,South America +2024-09-05,9154,5759,"[""Laptop"", ""Tablet"", ""Charger""]",3166.43,{},26269,0,North America +2024-02-26,9155,2375,"[""Charger"", ""Keyboard"", ""Tablet""]",1139.62,{},167808,1,Africa +2024-06-12,9156,9065,"[""Charger"", ""Phone"", ""Headphones""]",2998.5,"{"""": ""9%""}",48590,1,Africa +2024-11-11,9157,6506,"[""Monitor"", ""Laptop"", ""Keyboard""]",3624.25,{},253624,1,South America +2023-01-05,9158,296,"[""Headphones""]",548.45,{},147355,1,Africa +2024-09-23,9159,8786,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2912.55,{},193197,0,North America +2024-02-23,9160,2059,"[""Wireless Mouse"", ""Laptop""]",4337.97,{},193635,1,Asia +2023-03-03,9161,202,"[""Wireless Mouse""]",1315.49,{},248027,1,Asia +2023-01-24,9162,6345,"[""Laptop"", ""Monitor"", ""Phone""]",4004.29,"{""seasonal"": ""14%""}",13517,0,Asia +2024-08-31,9163,134,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1194.08,"{"""": ""27%""}",53663,0,North America +2023-09-22,9164,958,"[""Laptop"", ""Wireless Mouse""]",1866.42,{},75630,1,South America +2024-11-28,9165,1338,"[""Wireless Mouse""]",3921.54,"{""loyalty"": ""21%""}",187728,1,Europe +2024-01-18,9166,8912,"[""Headphones"", ""Wireless Mouse""]",4463.41,"{""promo"": ""17%""}",68976,1,North America +2024-10-26,9167,7015,"[""Keyboard""]",3890.22,{},243869,0,North America +2023-06-14,9168,4867,"[""Tablet""]",2429.3,{},119419,1,Asia +2024-04-24,9169,4592,"[""Keyboard""]",4384.87,"{""loyalty"": ""12%""}",67242,0,North America +2024-11-20,9170,9902,"[""Headphones"", ""Keyboard"", ""Monitor""]",71.24,{},155210,1,Africa +2024-04-25,9171,9981,"[""Charger""]",713.9,{},51220,1,Africa +2023-06-26,9172,8753,"[""Laptop"", ""Monitor"", ""Headphones""]",64.42,{},223203,0,Asia +2024-07-22,9173,9993,"[""Monitor""]",2730.81,{},203526,1,Africa +2023-04-15,9174,3147,"[""Tablet"", ""Keyboard""]",2179.02,{},53216,1,Asia +2024-11-06,9175,6600,"[""Laptop"", ""Tablet"", ""Keyboard""]",3441.79,"{""promo"": ""26%""}",279483,1,Europe +2024-01-30,9176,3053,"[""Keyboard"", ""Tablet""]",3397.48,"{""promo"": ""13%""}",1800,1,South America +2023-12-16,9177,5617,"[""Monitor"", ""Wireless Mouse""]",1247.37,"{"""": ""15%""}",224862,0,Europe +2024-07-30,9178,3708,"[""Phone""]",2799.12,"{""seasonal"": ""14%""}",97512,0,Africa +2023-01-30,9179,9223,"[""Charger""]",856.81,{},25125,0,Asia +2024-10-02,9180,3809,"[""Headphones"", ""Keyboard"", ""Phone""]",890.49,{},98442,0,Asia +2024-04-11,9181,71,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4391.34,"{""seasonal"": ""7%""}",141144,1,Europe +2024-07-06,9182,1996,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",106.4,{},157478,0,North America +2023-04-24,9183,5796,"[""Wireless Mouse""]",4773.45,{},106151,0,North America +2023-01-17,9184,5165,"[""Phone"", ""Tablet""]",4927.56,"{""promo"": ""11%""}",205762,1,Africa +2023-05-09,9185,8236,"[""Keyboard"", ""Tablet"", ""Laptop""]",3331.28,{},151695,1,Europe +2023-06-30,9186,2943,"[""Headphones""]",2803.89,{},22873,1,Africa +2024-11-09,9187,8171,"[""Monitor"", ""Charger"", ""Laptop""]",3804.96,"{""promo"": ""13%""}",43353,1,Asia +2023-09-11,9188,9030,"[""Wireless Mouse""]",3196.24,{},249146,1,Europe +2023-02-12,9189,2392,"[""Phone""]",4335.52,{},43729,0,Africa +2024-02-17,9190,1155,"[""Laptop"", ""Keyboard""]",587.75,{},246682,0,South America +2024-01-28,9191,7267,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3200.99,"{""loyalty"": ""21%""}",94278,0,Europe +2023-01-10,9192,1172,"[""Headphones""]",484.49,{},260186,1,Africa +2024-04-05,9193,9703,"[""Headphones"", ""Monitor"", ""Charger""]",2909.86,{},203261,0,Africa +2024-06-30,9194,7046,"[""Wireless Mouse""]",462.82,"{""promo"": ""10%""}",61919,1,Africa +2023-02-01,9195,3059,"[""Phone"", ""Charger"", ""Headphones""]",2364.27,{},224784,0,North America +2024-08-09,9196,5522,"[""Laptop"", ""Wireless Mouse""]",2430.71,{},10292,0,Europe +2023-05-24,9197,4960,"[""Laptop""]",263.98,{},79361,0,Africa +2024-03-09,9198,1494,"[""Laptop"", ""Phone""]",2641.92,"{""loyalty"": ""27%""}",246723,0,Africa +2024-03-15,9199,9260,"[""Headphones"", ""Phone""]",740.36,"{"""": ""6%""}",166071,1,Asia +2023-06-19,9200,3789,"[""Laptop"", ""Headphones"", ""Charger""]",1908.0,"{""promo"": ""19%""}",67750,0,Asia +2023-12-17,9201,1392,"[""Keyboard"", ""Laptop""]",2222.85,{},41239,1,North America +2024-07-15,9202,8358,"[""Monitor""]",965.07,"{""seasonal"": ""5%""}",90195,0,Europe +2023-05-07,9203,7741,"[""Charger"", ""Headphones"", ""Keyboard""]",4220.41,"{"""": ""29%""}",131965,1,Europe +2023-03-22,9204,5610,"[""Monitor"", ""Tablet""]",3371.16,"{""loyalty"": ""5%""}",94160,1,Europe +2024-02-11,9205,3656,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1624.69,{},283702,1,Africa +2024-09-02,9206,9968,"[""Laptop""]",3495.03,{},101859,1,Europe +2024-07-01,9207,5183,"[""Keyboard"", ""Monitor"", ""Charger""]",2938.87,"{""seasonal"": ""11%""}",283728,0,South America +2023-04-24,9208,7280,"[""Laptop""]",2160.18,{},246803,0,South America +2024-07-01,9209,2985,"[""Charger"", ""Tablet""]",1636.42,{},291250,1,South America +2023-07-22,9210,1524,"[""Keyboard"", ""Phone""]",512.57,"{""promo"": ""13%""}",32332,0,North America +2024-11-12,9211,5840,"[""Tablet"", ""Charger""]",3495.37,{},223425,0,South America +2023-11-11,9212,1677,"[""Charger"", ""Headphones"", ""Tablet""]",4715.66,{},140629,0,North America +2024-06-10,9213,7211,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4669.52,"{"""": ""27%""}",13840,0,Asia +2024-09-28,9214,940,"[""Keyboard"", ""Wireless Mouse""]",3154.25,"{""seasonal"": ""9%""}",267203,1,Africa +2024-10-06,9215,6037,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1067.6,{},198577,0,Asia +2024-07-21,9216,5827,"[""Monitor"", ""Phone""]",3289.69,"{""promo"": ""12%""}",280726,0,South America +2023-05-29,9217,7138,"[""Laptop""]",2677.0,"{""seasonal"": ""24%""}",161018,0,Europe +2024-08-27,9218,7061,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1916.5,"{"""": ""16%""}",115330,1,Africa +2023-02-28,9219,830,"[""Keyboard"", ""Headphones"", ""Laptop""]",3534.47,"{"""": ""27%""}",123906,0,South America +2024-09-29,9220,6698,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3905.87,{},56600,1,North America +2024-02-24,9221,3892,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",721.84,{},26656,0,South America +2024-11-27,9222,9451,"[""Tablet""]",370.46,{},68174,1,Europe +2023-11-01,9223,9953,"[""Phone""]",1435.3,"{"""": ""24%""}",179292,0,North America +2023-08-07,9224,3677,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2059.56,{},143701,0,North America +2023-08-01,9225,2849,"[""Monitor"", ""Keyboard""]",2073.25,"{""loyalty"": ""30%""}",225264,1,Asia +2024-05-16,9226,7322,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4945.7,{},179529,1,North America +2024-12-01,9227,6096,"[""Tablet"", ""Monitor"", ""Laptop""]",464.44,"{"""": ""5%""}",147017,0,North America +2024-09-02,9228,8211,"[""Headphones"", ""Laptop""]",3996.98,"{"""": ""26%""}",125988,0,Asia +2023-05-23,9229,8345,"[""Laptop""]",2137.01,"{""promo"": ""12%""}",103608,1,Africa +2024-03-18,9230,2974,"[""Tablet"", ""Monitor"", ""Headphones""]",297.67,{},295381,1,Europe +2023-12-25,9231,3028,"[""Keyboard"", ""Wireless Mouse""]",1485.78,"{"""": ""18%""}",293514,0,South America +2024-07-20,9232,2469,"[""Tablet"", ""Laptop""]",1308.14,"{""loyalty"": ""18%""}",197353,1,North America +2023-06-15,9233,1545,"[""Phone"", ""Monitor"", ""Laptop""]",737.33,"{""promo"": ""12%""}",85359,1,North America +2024-04-23,9234,5340,"[""Headphones"", ""Laptop"", ""Charger""]",1119.95,"{""promo"": ""16%""}",125279,1,Europe +2024-04-10,9235,9551,"[""Wireless Mouse"", ""Tablet""]",1934.59,"{"""": ""24%""}",67131,0,North America +2023-11-08,9236,4399,"[""Keyboard"", ""Tablet""]",378.79,"{""promo"": ""21%""}",183833,0,Africa +2024-05-20,9237,4327,"[""Headphones""]",1998.45,{},191580,0,South America +2023-06-28,9238,5189,"[""Phone""]",1549.82,"{""seasonal"": ""27%""}",54165,1,Asia +2023-03-20,9239,2245,"[""Charger"", ""Phone""]",1786.32,"{""loyalty"": ""15%""}",80970,0,Asia +2024-05-01,9240,1110,"[""Wireless Mouse"", ""Laptop""]",4935.58,"{""loyalty"": ""24%""}",269331,0,North America +2023-08-04,9241,1268,"[""Monitor""]",4580.0,{},75116,0,Asia +2023-03-28,9242,6444,"[""Tablet"", ""Phone""]",1073.04,{},282154,0,South America +2023-05-12,9243,8527,"[""Tablet"", ""Laptop""]",1331.44,"{""promo"": ""30%""}",47295,0,North America +2023-09-13,9244,4593,"[""Keyboard"", ""Laptop""]",2671.88,"{"""": ""13%""}",38878,0,Europe +2023-02-18,9245,1895,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3620.52,"{""seasonal"": ""6%""}",265905,0,Asia +2023-07-22,9246,1845,"[""Headphones"", ""Monitor""]",3160.8,"{""promo"": ""29%""}",36333,1,Africa +2023-10-09,9247,643,"[""Headphones"", ""Phone"", ""Laptop""]",639.43,"{""seasonal"": ""11%""}",299424,0,Europe +2024-01-06,9248,5423,"[""Keyboard"", ""Monitor"", ""Tablet""]",4821.54,{},110157,1,Africa +2023-12-19,9249,1406,"[""Keyboard"", ""Phone"", ""Tablet""]",3416.69,{},143535,1,Africa +2023-10-04,9250,6702,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2597.04,"{""seasonal"": ""22%""}",178852,1,Europe +2023-10-07,9251,4219,"[""Phone"", ""Keyboard""]",367.68,"{""loyalty"": ""29%""}",45950,1,Europe +2024-06-13,9252,1346,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3887.77,{},232729,0,North America +2023-03-10,9253,1244,"[""Keyboard""]",857.02,"{""seasonal"": ""7%""}",142285,1,North America +2024-04-04,9254,9144,"[""Tablet"", ""Keyboard""]",4121.08,{},25971,1,North America +2023-04-12,9255,8192,"[""Headphones"", ""Phone""]",3917.66,"{""promo"": ""19%""}",244340,0,North America +2024-02-10,9256,6049,"[""Laptop"", ""Tablet"", ""Monitor""]",3408.1,{},8775,0,North America +2023-01-29,9257,2153,"[""Monitor"", ""Charger"", ""Headphones""]",1988.37,"{""loyalty"": ""30%""}",201263,0,Asia +2023-08-30,9258,8511,"[""Charger"", ""Monitor"", ""Headphones""]",218.52,{},87753,0,North America +2024-10-02,9259,1542,"[""Phone"", ""Laptop"", ""Monitor""]",2191.52,{},241520,1,Europe +2023-03-05,9260,7600,"[""Laptop"", ""Tablet""]",2221.01,{},52959,1,Europe +2023-11-01,9261,7470,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",772.14,{},77177,0,Asia +2023-11-09,9262,8712,"[""Keyboard"", ""Headphones""]",234.49,"{"""": ""18%""}",26164,0,Africa +2023-02-10,9263,3757,"[""Phone"", ""Laptop"", ""Tablet""]",1491.59,{},29761,1,Africa +2024-09-30,9264,1420,"[""Laptop"", ""Keyboard""]",4844.43,"{"""": ""21%""}",251214,1,South America +2024-08-04,9265,2226,"[""Monitor""]",4687.26,"{""loyalty"": ""29%""}",76226,1,Europe +2024-09-12,9266,2103,"[""Monitor""]",147.19,"{"""": ""18%""}",60123,1,Europe +2023-01-06,9267,538,"[""Keyboard"", ""Laptop""]",4925.36,"{""seasonal"": ""14%""}",197217,0,Europe +2023-04-24,9268,320,"[""Laptop"", ""Monitor""]",3616.23,"{"""": ""11%""}",84168,0,South America +2023-02-25,9269,3671,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4123.49,{},167137,0,Europe +2023-09-24,9270,9009,"[""Charger"", ""Laptop"", ""Phone""]",4633.34,"{""promo"": ""27%""}",107016,0,South America +2023-05-27,9271,3771,"[""Headphones"", ""Tablet"", ""Monitor""]",4347.45,"{""seasonal"": ""20%""}",48080,0,Asia +2023-11-09,9272,7245,"[""Headphones"", ""Laptop""]",191.36,{},153832,0,North America +2024-02-18,9273,1009,"[""Phone"", ""Laptop"", ""Keyboard""]",2122.92,"{""promo"": ""20%""}",29523,0,Europe +2024-03-06,9274,2734,"[""Tablet""]",4044.56,"{"""": ""28%""}",33738,0,South America +2024-09-17,9275,7670,"[""Keyboard""]",4233.03,"{"""": ""9%""}",232098,0,Asia +2023-03-17,9276,1995,"[""Tablet"", ""Keyboard"", ""Charger""]",4244.21,"{"""": ""30%""}",104759,0,Africa +2024-08-11,9277,9579,"[""Phone"", ""Headphones""]",4076.92,"{""loyalty"": ""9%""}",118538,0,Asia +2024-01-31,9278,7842,"[""Keyboard""]",2289.42,{},40525,1,South America +2023-10-14,9279,9876,"[""Monitor""]",208.91,"{""seasonal"": ""9%""}",122615,1,Europe +2023-10-06,9280,9678,"[""Tablet""]",2851.74,{},134671,1,Europe +2024-06-09,9281,3099,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1041.56,"{""seasonal"": ""8%""}",118224,1,Asia +2023-01-01,9282,8971,"[""Monitor"", ""Laptop"", ""Keyboard""]",1704.3,"{"""": ""5%""}",274030,0,Asia +2023-03-08,9283,4120,"[""Phone""]",195.17,{},11217,1,Africa +2023-04-03,9284,4115,"[""Keyboard""]",4914.94,"{"""": ""27%""}",82932,1,South America +2024-01-30,9285,8762,"[""Monitor""]",3042.23,{},140496,0,Asia +2023-08-27,9286,8287,"[""Monitor""]",2665.26,"{""seasonal"": ""22%""}",251600,0,Africa +2024-09-12,9287,9321,"[""Laptop""]",2453.03,"{"""": ""6%""}",77197,1,South America +2024-09-29,9288,5100,"[""Laptop"", ""Keyboard""]",113.67,"{"""": ""21%""}",64809,0,South America +2024-03-28,9289,5333,"[""Keyboard""]",2583.21,"{""promo"": ""29%""}",293911,1,South America +2024-02-07,9290,4847,"[""Laptop""]",2051.08,"{""loyalty"": ""11%""}",39008,1,North America +2023-05-16,9291,5659,"[""Monitor""]",223.03,"{""seasonal"": ""15%""}",43953,0,Europe +2024-05-10,9292,2809,"[""Charger""]",1959.12,"{""loyalty"": ""13%""}",34296,0,South America +2023-01-22,9293,6103,"[""Wireless Mouse""]",583.78,"{"""": ""7%""}",91571,1,Africa +2024-04-08,9294,2538,"[""Wireless Mouse"", ""Monitor""]",1217.73,"{""loyalty"": ""25%""}",56247,0,South America +2023-05-28,9295,5928,"[""Headphones""]",4753.46,{},237728,0,Asia +2023-02-15,9296,2496,"[""Laptop"", ""Monitor"", ""Tablet""]",516.17,"{"""": ""21%""}",210080,0,Asia +2023-09-27,9297,61,"[""Charger"", ""Keyboard""]",689.53,"{""loyalty"": ""18%""}",182506,1,Europe +2023-02-01,9298,1163,"[""Monitor"", ""Laptop""]",2425.01,"{""loyalty"": ""18%""}",113675,0,Asia +2023-02-11,9299,2829,"[""Phone"", ""Laptop""]",2690.33,"{""promo"": ""11%""}",230475,0,South America +2024-04-30,9300,2758,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4892.68,{},147688,1,South America +2024-05-06,9301,9860,"[""Wireless Mouse""]",609.21,"{""loyalty"": ""16%""}",28693,1,Asia +2024-03-23,9302,1713,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2425.24,{},106393,0,Asia +2023-05-20,9303,7304,"[""Monitor""]",2022.83,{},159489,1,North America +2023-10-13,9304,6268,"[""Keyboard"", ""Tablet"", ""Laptop""]",4242.05,{},7815,0,North America +2023-07-31,9305,830,"[""Tablet"", ""Phone"", ""Headphones""]",3894.26,"{""loyalty"": ""10%""}",237412,1,Asia +2024-05-01,9306,3603,"[""Wireless Mouse"", ""Headphones""]",1010.43,"{""promo"": ""5%""}",119276,0,North America +2024-07-24,9307,2143,"[""Keyboard""]",3581.57,"{""loyalty"": ""17%""}",282711,1,Europe +2024-09-07,9308,245,"[""Wireless Mouse"", ""Headphones""]",2933.89,"{""promo"": ""16%""}",120995,0,South America +2024-03-16,9309,1538,"[""Monitor""]",2189.2,{},129372,1,Europe +2024-10-07,9310,719,"[""Charger"", ""Phone""]",2592.75,{},251214,1,Europe +2023-04-06,9311,7804,"[""Charger"", ""Wireless Mouse""]",3448.85,{},93498,0,North America +2023-08-11,9312,6603,"[""Headphones"", ""Phone"", ""Keyboard""]",3202.49,{},79442,0,Africa +2023-03-16,9313,352,"[""Headphones""]",1252.35,{},142712,1,Asia +2023-04-14,9314,983,"[""Phone"", ""Tablet"", ""Charger""]",4747.18,"{""seasonal"": ""17%""}",112941,0,Asia +2023-01-23,9315,7921,"[""Headphones"", ""Charger"", ""Laptop""]",283.58,{},70645,1,South America +2023-12-20,9316,7847,"[""Laptop""]",3982.67,"{"""": ""28%""}",210910,1,Europe +2023-07-22,9317,5808,"[""Monitor""]",845.88,"{"""": ""9%""}",281412,0,North America +2023-02-17,9318,70,"[""Laptop"", ""Headphones"", ""Tablet""]",2326.33,"{""loyalty"": ""21%""}",15049,1,North America +2024-08-26,9319,2486,"[""Tablet""]",1275.5,"{""seasonal"": ""7%""}",251027,0,Asia +2023-10-21,9320,3997,"[""Charger"", ""Tablet""]",4335.83,"{""promo"": ""12%""}",152745,1,Europe +2023-08-13,9321,8133,"[""Phone"", ""Keyboard""]",121.79,{},138966,1,Europe +2023-03-19,9322,3102,"[""Monitor"", ""Phone"", ""Keyboard""]",279.38,"{"""": ""15%""}",226829,1,North America +2024-05-05,9323,1632,"[""Tablet"", ""Laptop""]",3065.97,"{""promo"": ""29%""}",45973,1,Africa +2023-10-25,9324,348,"[""Laptop""]",3174.97,{},114617,1,Asia +2024-08-14,9325,8919,"[""Tablet"", ""Laptop"", ""Monitor""]",83.76,"{""loyalty"": ""28%""}",115379,0,Africa +2024-10-21,9326,2415,"[""Phone""]",4989.75,"{""promo"": ""30%""}",274194,1,South America +2024-11-10,9327,8154,"[""Laptop"", ""Charger"", ""Tablet""]",745.3,{},261709,0,Africa +2023-08-28,9328,3768,"[""Headphones""]",771.14,{},243475,1,South America +2024-02-19,9329,230,"[""Charger""]",3099.78,"{"""": ""19%""}",297057,1,Europe +2024-01-26,9330,2185,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4895.96,{},221291,1,South America +2023-06-24,9331,1091,"[""Keyboard""]",4517.43,"{""promo"": ""29%""}",239811,0,North America +2024-06-18,9332,4082,"[""Charger"", ""Laptop"", ""Headphones""]",1727.15,{},139572,1,Africa +2024-07-28,9333,7303,"[""Keyboard""]",168.73,"{""loyalty"": ""17%""}",277127,0,Europe +2024-07-14,9334,3628,"[""Tablet""]",1920.26,{},279257,1,Europe +2024-10-17,9335,3080,"[""Phone"", ""Wireless Mouse""]",3051.58,"{""seasonal"": ""13%""}",134966,1,North America +2024-11-09,9336,5491,"[""Headphones""]",273.4,{},215560,1,North America +2024-07-22,9337,1650,"[""Tablet""]",167.57,{},163177,1,South America +2023-01-25,9338,4668,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",896.88,{},207042,0,South America +2023-07-01,9339,4916,"[""Monitor""]",1398.8,{},35111,1,South America +2023-02-09,9340,5642,"[""Tablet"", ""Monitor""]",509.14,{},210416,0,North America +2023-09-05,9341,2666,"[""Headphones""]",4009.59,{},76470,1,South America +2024-12-06,9342,7747,"[""Tablet"", ""Phone"", ""Keyboard""]",1943.53,{},18241,0,North America +2023-07-03,9343,3416,"[""Phone""]",4419.74,"{""promo"": ""16%""}",86345,1,North America +2024-04-12,9344,6644,"[""Phone"", ""Tablet"", ""Headphones""]",3137.43,{},127880,0,South America +2023-04-08,9345,4071,"[""Tablet""]",4465.36,"{""seasonal"": ""7%""}",296930,1,Asia +2023-06-14,9346,6356,"[""Charger""]",4165.18,{},156550,0,South America +2023-10-13,9347,3166,"[""Monitor"", ""Phone"", ""Headphones""]",4951.85,{},7678,1,North America +2023-09-17,9348,1929,"[""Headphones"", ""Monitor"", ""Laptop""]",4470.86,"{""loyalty"": ""19%""}",76696,1,South America +2024-11-23,9349,3912,"[""Phone"", ""Headphones"", ""Keyboard""]",3128.13,{},179789,0,North America +2023-02-21,9350,2578,"[""Monitor""]",1425.73,{},178176,1,Europe +2024-12-05,9351,4687,"[""Charger"", ""Wireless Mouse""]",2545.66,{},246832,0,South America +2024-06-22,9352,8550,"[""Keyboard""]",2807.01,{},27383,0,Africa +2023-06-03,9353,4748,"[""Keyboard"", ""Phone""]",3319.01,{},124688,1,Africa +2024-03-30,9354,1460,"[""Monitor""]",4951.81,"{""loyalty"": ""25%""}",60389,1,Europe +2024-03-12,9355,2983,"[""Headphones"", ""Monitor""]",2856.73,"{""promo"": ""14%""}",194261,0,Africa +2024-06-09,9356,9602,"[""Headphones""]",1295.88,"{"""": ""30%""}",157827,1,North America +2023-04-25,9357,2257,"[""Phone""]",2101.99,"{""promo"": ""14%""}",45450,0,Europe +2023-10-02,9358,5699,"[""Monitor"", ""Headphones""]",3630.6,{},282349,1,Asia +2024-07-24,9359,5769,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3356.62,{},101048,1,Asia +2023-12-26,9360,6848,"[""Laptop"", ""Charger""]",1771.15,{},36452,1,Europe +2023-11-08,9361,8381,"[""Keyboard"", ""Headphones""]",4159.2,{},121042,0,North America +2024-04-05,9362,9813,"[""Headphones""]",2638.86,"{""seasonal"": ""12%""}",53757,0,Europe +2024-05-03,9363,9491,"[""Phone""]",1222.5,"{""seasonal"": ""12%""}",117247,1,North America +2024-12-13,9364,360,"[""Wireless Mouse""]",4659.47,"{""promo"": ""20%""}",239988,0,Europe +2024-05-18,9365,5150,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3594.18,"{"""": ""7%""}",32159,0,Africa +2024-01-17,9366,1982,"[""Headphones""]",1019.44,{},159532,1,Africa +2024-08-04,9367,1621,"[""Charger"", ""Monitor"", ""Headphones""]",504.98,{},37181,0,South America +2024-12-06,9368,7930,"[""Laptop""]",2082.34,"{"""": ""28%""}",79383,1,Asia +2023-10-03,9369,193,"[""Laptop"", ""Headphones"", ""Monitor""]",3963.23,"{""promo"": ""22%""}",298128,0,Europe +2023-03-11,9370,7240,"[""Phone"", ""Monitor""]",2004.38,{},112447,1,South America +2024-03-26,9371,1555,"[""Tablet"", ""Monitor"", ""Headphones""]",4242.8,{},220925,1,Europe +2023-11-19,9372,9843,"[""Monitor""]",4699.94,"{""loyalty"": ""26%""}",94174,1,Africa +2023-11-15,9373,2627,"[""Laptop"", ""Charger""]",4238.13,"{""loyalty"": ""20%""}",277082,0,North America +2024-03-23,9374,5763,"[""Headphones"", ""Laptop"", ""Charger""]",709.6,"{"""": ""6%""}",114566,0,Europe +2024-03-01,9375,5285,"[""Monitor"", ""Headphones"", ""Charger""]",2254.06,{},189626,0,North America +2024-02-22,9376,709,"[""Charger"", ""Tablet"", ""Laptop""]",1495.87,"{""seasonal"": ""14%""}",194390,1,Europe +2023-03-20,9377,7553,"[""Phone"", ""Charger"", ""Keyboard""]",3251.47,{},229668,0,North America +2023-03-28,9378,4650,"[""Phone""]",759.94,{},152553,1,Asia +2024-03-02,9379,5283,"[""Phone"", ""Charger"", ""Laptop""]",1930.62,"{""promo"": ""26%""}",240941,1,Africa +2023-01-30,9380,9825,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2847.43,{},78434,1,North America +2024-01-06,9381,7756,"[""Tablet""]",405.99,"{""loyalty"": ""11%""}",267554,1,Africa +2023-05-26,9382,5233,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2928.15,"{""seasonal"": ""16%""}",245680,0,Africa +2024-03-15,9383,5927,"[""Laptop""]",4873.69,{},239937,1,South America +2024-03-13,9384,7463,"[""Laptop"", ""Headphones""]",4288.79,{},23068,0,Europe +2023-01-06,9385,5566,"[""Wireless Mouse"", ""Headphones""]",1634.6,"{""seasonal"": ""27%""}",273914,1,Asia +2023-04-28,9386,2659,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",144.47,{},46663,0,South America +2024-10-18,9387,4608,"[""Keyboard""]",2704.8,"{""promo"": ""15%""}",79023,0,South America +2024-06-14,9388,679,"[""Laptop""]",2653.18,{},35617,0,Africa +2024-01-29,9389,1473,"[""Charger"", ""Tablet"", ""Phone""]",2463.72,"{""promo"": ""16%""}",242431,1,North America +2023-01-09,9390,3816,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3494.97,"{""promo"": ""10%""}",203255,1,Africa +2024-02-20,9391,236,"[""Phone"", ""Charger"", ""Monitor""]",4960.57,{},153459,1,Europe +2023-06-14,9392,1927,"[""Wireless Mouse""]",4999.52,"{"""": ""8%""}",242257,0,South America +2023-05-19,9393,9218,"[""Tablet""]",3547.19,"{"""": ""14%""}",233633,0,North America +2024-03-13,9394,5337,"[""Laptop"", ""Phone"", ""Monitor""]",3546.37,{},229192,1,Africa +2023-07-10,9395,4995,"[""Charger""]",1632.62,{},129013,1,Asia +2024-09-19,9396,326,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3643.55,{},174017,0,Africa +2023-04-01,9397,4600,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3193.82,{},34657,0,South America +2024-04-21,9398,283,"[""Monitor"", ""Tablet""]",2041.15,{},82300,0,Africa +2024-10-19,9399,3926,"[""Tablet""]",1367.26,"{""seasonal"": ""19%""}",257462,0,North America +2024-08-11,9400,3542,"[""Keyboard"", ""Headphones"", ""Tablet""]",3588.18,"{"""": ""30%""}",171260,0,Asia +2023-02-01,9401,3330,"[""Phone"", ""Monitor"", ""Charger""]",2617.59,"{""loyalty"": ""5%""}",276784,1,Europe +2023-12-05,9402,5318,"[""Monitor"", ""Tablet""]",592.56,"{""promo"": ""6%""}",96713,0,South America +2024-07-05,9403,3782,"[""Laptop"", ""Charger"", ""Tablet""]",4260.78,{},11756,1,Europe +2024-07-28,9404,5887,"[""Headphones"", ""Wireless Mouse""]",2736.33,"{""promo"": ""9%""}",253047,1,Asia +2024-06-24,9405,9118,"[""Wireless Mouse"", ""Laptop""]",2233.73,"{""loyalty"": ""15%""}",90945,1,North America +2024-02-15,9406,7214,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2223.21,"{"""": ""13%""}",19385,1,Africa +2024-03-10,9407,3392,"[""Phone"", ""Headphones""]",667.77,"{""seasonal"": ""13%""}",61701,1,South America +2024-01-11,9408,7083,"[""Keyboard"", ""Tablet"", ""Phone""]",1946.62,"{""loyalty"": ""15%""}",166162,0,Africa +2023-12-03,9409,6733,"[""Laptop"", ""Phone"", ""Monitor""]",2661.84,"{""loyalty"": ""14%""}",23240,1,North America +2024-07-06,9410,2556,"[""Phone""]",1469.68,{},213697,0,Africa +2023-11-26,9411,917,"[""Tablet"", ""Wireless Mouse""]",1149.82,"{"""": ""26%""}",12426,0,Europe +2023-01-20,9412,1668,"[""Phone""]",1445.81,{},151178,0,Europe +2024-07-06,9413,8109,"[""Keyboard"", ""Charger"", ""Laptop""]",1693.36,"{""loyalty"": ""24%""}",267058,1,Asia +2023-08-16,9414,1537,"[""Monitor""]",1621.95,{},174600,0,South America +2023-05-14,9415,2947,"[""Monitor"", ""Headphones"", ""Charger""]",985.5,{},137551,0,Europe +2024-07-02,9416,9323,"[""Tablet"", ""Wireless Mouse""]",4668.34,{},138198,0,North America +2023-12-20,9417,103,"[""Wireless Mouse"", ""Headphones""]",1414.3,{},121448,1,South America +2023-10-01,9418,3102,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3052.31,"{""loyalty"": ""23%""}",50075,0,Africa +2023-10-23,9419,6720,"[""Phone"", ""Laptop"", ""Keyboard""]",1298.89,{},33525,1,Europe +2023-12-31,9420,596,"[""Monitor"", ""Tablet""]",3521.54,{},78896,1,Africa +2023-07-15,9421,5957,"[""Phone""]",4825.17,{},73315,0,North America +2023-06-29,9422,3178,"[""Charger""]",676.83,"{""seasonal"": ""12%""}",252712,1,Africa +2023-07-09,9423,2365,"[""Wireless Mouse""]",4984.2,{},135504,1,Asia +2024-10-20,9424,2798,"[""Charger"", ""Headphones"", ""Tablet""]",521.45,"{""promo"": ""29%""}",79260,1,Europe +2023-08-03,9425,7381,"[""Laptop""]",4609.23,"{"""": ""7%""}",41993,0,Asia +2024-03-14,9426,7235,"[""Phone"", ""Laptop""]",514.12,{},187971,0,Africa +2024-01-27,9427,2380,"[""Phone""]",1461.13,"{""loyalty"": ""7%""}",72928,0,Europe +2023-11-29,9428,7923,"[""Phone"", ""Keyboard"", ""Headphones""]",4317.1,"{""loyalty"": ""20%""}",246545,1,South America +2023-07-03,9429,3583,"[""Laptop""]",2756.59,{},1324,1,Africa +2024-10-10,9430,8626,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1478.8,"{""seasonal"": ""16%""}",38140,1,North America +2024-01-07,9431,188,"[""Tablet""]",4817.98,{},51079,1,Europe +2023-12-11,9432,3267,"[""Wireless Mouse"", ""Tablet""]",4344.46,{},61990,1,North America +2023-06-29,9433,1156,"[""Keyboard"", ""Laptop""]",3762.68,{},208212,1,North America +2023-12-01,9434,947,"[""Charger""]",1827.27,"{"""": ""12%""}",168007,1,Europe +2023-09-30,9435,1391,"[""Keyboard"", ""Monitor""]",1786.27,{},194827,1,Asia +2024-12-08,9436,2400,"[""Charger"", ""Laptop"", ""Keyboard""]",3985.37,"{""seasonal"": ""6%""}",106402,1,Africa +2024-12-28,9437,9572,"[""Charger"", ""Monitor""]",4185.62,"{"""": ""15%""}",135724,1,Asia +2024-06-18,9438,6642,"[""Charger"", ""Headphones""]",4210.35,{},190619,0,Africa +2023-06-06,9439,828,"[""Charger"", ""Tablet""]",2611.97,{},130751,0,Europe +2023-07-05,9440,7573,"[""Headphones"", ""Phone""]",2336.08,"{""promo"": ""21%""}",98370,1,Africa +2023-06-01,9441,7700,"[""Headphones"", ""Charger"", ""Keyboard""]",3614.35,{},218254,0,South America +2023-07-13,9442,8122,"[""Monitor"", ""Keyboard"", ""Phone""]",3209.43,{},292634,1,Asia +2023-09-18,9443,1702,"[""Charger"", ""Keyboard"", ""Phone""]",2430.12,"{""loyalty"": ""25%""}",138418,0,Asia +2023-09-27,9444,1407,"[""Charger""]",1998.01,{},162514,0,South America +2023-04-17,9445,2019,"[""Headphones"", ""Phone"", ""Keyboard""]",383.53,"{""loyalty"": ""11%""}",108401,1,North America +2023-01-16,9446,3959,"[""Tablet""]",2933.17,{},136901,1,South America +2024-11-21,9447,1163,"[""Charger"", ""Monitor"", ""Keyboard""]",1340.96,"{""promo"": ""16%""}",217506,1,South America +2023-11-16,9448,8157,"[""Laptop"", ""Tablet""]",1757.78,"{""seasonal"": ""14%""}",212399,0,Europe +2023-07-14,9449,5048,"[""Phone"", ""Headphones""]",2160.92,"{""seasonal"": ""25%""}",82595,0,Africa +2023-12-13,9450,3659,"[""Wireless Mouse""]",3582.74,{},132634,0,North America +2024-07-06,9451,2736,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",530.51,{},49472,0,Europe +2023-04-14,9452,4566,"[""Wireless Mouse"", ""Charger""]",2463.0,{},231302,0,Asia +2023-12-15,9453,4995,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3956.07,"{""seasonal"": ""22%""}",24017,0,South America +2023-11-16,9454,9891,"[""Keyboard""]",3435.02,"{""loyalty"": ""9%""}",247332,0,South America +2024-07-04,9455,3582,"[""Laptop"", ""Tablet""]",2653.44,"{""loyalty"": ""5%""}",30690,1,North America +2023-11-17,9456,4863,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",815.62,"{"""": ""10%""}",91514,0,Asia +2023-04-26,9457,3855,"[""Phone""]",3563.09,"{"""": ""22%""}",190353,1,Europe +2023-05-20,9458,4203,"[""Phone"", ""Laptop""]",2249.23,{},278626,1,Africa +2024-04-26,9459,9977,"[""Laptop""]",1759.61,"{""seasonal"": ""7%""}",239436,0,Africa +2024-02-29,9460,8677,"[""Charger""]",1260.15,"{""seasonal"": ""21%""}",3809,0,Asia +2024-09-18,9461,6791,"[""Monitor"", ""Laptop"", ""Tablet""]",1534.44,"{""seasonal"": ""26%""}",130531,1,Europe +2023-12-17,9462,3806,"[""Laptop"", ""Wireless Mouse""]",4317.75,{},85021,1,South America +2024-12-12,9463,4657,"[""Phone"", ""Monitor""]",4940.75,{},182216,1,South America +2024-09-14,9464,6862,"[""Keyboard"", ""Phone""]",1467.03,{},250857,0,Europe +2023-04-24,9465,4072,"[""Laptop"", ""Tablet"", ""Headphones""]",791.34,"{"""": ""12%""}",234870,0,South America +2024-01-27,9466,6900,"[""Headphones""]",4579.71,"{"""": ""26%""}",36829,1,Asia +2023-09-01,9467,308,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4253.42,"{""seasonal"": ""21%""}",53675,0,Africa +2023-07-30,9468,9878,"[""Headphones"", ""Wireless Mouse""]",3261.03,"{"""": ""29%""}",194615,1,Africa +2023-01-08,9469,8347,"[""Charger""]",4366.08,{},184417,1,North America +2024-10-31,9470,2828,"[""Laptop""]",3378.57,{},162618,1,South America +2023-01-18,9471,5379,"[""Monitor""]",3086.18,"{""seasonal"": ""17%""}",98671,1,South America +2023-01-14,9472,3036,"[""Laptop""]",4601.04,{},45353,1,Asia +2023-12-15,9473,734,"[""Tablet"", ""Headphones""]",4493.12,{},177256,1,South America +2024-03-03,9474,9437,"[""Charger"", ""Monitor""]",1243.53,{},231089,0,North America +2024-09-20,9475,103,"[""Phone"", ""Tablet""]",4594.93,"{""seasonal"": ""16%""}",33888,0,Asia +2023-03-21,9476,7484,"[""Keyboard"", ""Phone"", ""Tablet""]",2633.19,{},113732,0,Asia +2023-07-12,9477,565,"[""Tablet""]",4556.58,{},24873,1,North America +2024-07-20,9478,2480,"[""Phone"", ""Keyboard""]",3739.71,"{""loyalty"": ""8%""}",110697,0,Europe +2024-07-16,9479,8198,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2129.88,"{""promo"": ""27%""}",74416,1,Africa +2023-02-02,9480,3865,"[""Tablet""]",3694.32,{},127505,0,South America +2024-07-04,9481,714,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1471.21,"{""loyalty"": ""27%""}",223199,0,South America +2024-04-25,9482,9260,"[""Phone"", ""Tablet""]",4147.17,{},182988,1,Europe +2023-03-21,9483,5094,"[""Phone"", ""Keyboard""]",2882.96,"{"""": ""11%""}",235536,0,South America +2024-01-13,9484,7923,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4325.25,{},221521,1,South America +2024-10-09,9485,7539,"[""Keyboard"", ""Headphones""]",3788.81,{},253094,1,Europe +2024-10-07,9486,5051,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3981.17,"{""loyalty"": ""16%""}",23756,0,Europe +2024-02-08,9487,3601,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",769.0,"{""loyalty"": ""20%""}",217019,0,Europe +2023-12-29,9488,4399,"[""Laptop"", ""Charger""]",1719.83,{},9837,0,Asia +2024-11-02,9489,8255,"[""Tablet""]",4960.23,"{""seasonal"": ""15%""}",251113,1,North America +2023-12-03,9490,7351,"[""Laptop"", ""Headphones"", ""Tablet""]",733.88,"{""seasonal"": ""12%""}",130894,1,Africa +2024-01-16,9491,1721,"[""Keyboard"", ""Laptop"", ""Headphones""]",1954.56,"{""loyalty"": ""14%""}",160963,0,Asia +2023-03-30,9492,6775,"[""Keyboard""]",4459.13,"{""promo"": ""10%""}",50019,0,Europe +2024-08-27,9493,1147,"[""Charger"", ""Monitor"", ""Keyboard""]",4201.83,{},217278,1,Europe +2023-05-22,9494,8809,"[""Headphones"", ""Tablet""]",4870.37,"{""loyalty"": ""5%""}",254049,0,North America +2023-06-06,9495,5743,"[""Laptop"", ""Wireless Mouse""]",4125.03,{},137364,0,South America +2024-09-05,9496,6755,"[""Laptop""]",1877.94,{},89986,1,Asia +2023-02-07,9497,9208,"[""Phone"", ""Tablet""]",2688.42,{},102702,1,Africa +2023-07-01,9498,3642,"[""Keyboard"", ""Tablet""]",730.75,"{""seasonal"": ""30%""}",130638,0,North America +2023-08-30,9499,7493,"[""Tablet"", ""Keyboard"", ""Laptop""]",1891.5,{},26313,1,South America +2024-10-27,9500,7696,"[""Monitor"", ""Wireless Mouse""]",2689.55,"{""loyalty"": ""24%""}",201830,1,North America +2023-05-05,9501,9738,"[""Laptop"", ""Tablet"", ""Phone""]",4944.39,{},172982,0,South America +2023-12-11,9502,8369,"[""Phone"", ""Tablet"", ""Charger""]",4576.19,"{""loyalty"": ""18%""}",63458,1,Asia +2024-10-17,9503,9322,"[""Charger""]",3772.83,"{""seasonal"": ""29%""}",235639,0,North America +2023-09-28,9504,409,"[""Tablet"", ""Keyboard"", ""Headphones""]",472.57,"{""loyalty"": ""22%""}",30065,1,Africa +2023-07-06,9505,5840,"[""Tablet"", ""Phone""]",611.52,"{"""": ""7%""}",266204,0,Africa +2023-03-04,9506,2389,"[""Phone"", ""Tablet""]",4097.54,"{""promo"": ""26%""}",180864,0,South America +2024-05-23,9507,9542,"[""Charger""]",3355.87,{},22633,1,Asia +2024-09-02,9508,2441,"[""Keyboard"", ""Headphones"", ""Tablet""]",2733.22,"{""loyalty"": ""9%""}",30263,0,Asia +2024-06-17,9509,5136,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4998.06,{},41316,0,Asia +2024-12-22,9510,5222,"[""Phone""]",981.47,"{""loyalty"": ""9%""}",143625,0,North America +2024-04-02,9511,8803,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1816.16,{},291561,0,South America +2024-03-12,9512,4937,"[""Laptop""]",3005.37,{},249127,1,South America +2024-06-13,9513,8239,"[""Keyboard""]",2820.68,{},149375,1,Europe +2024-05-29,9514,2215,"[""Keyboard"", ""Laptop""]",2280.53,{},241632,1,Asia +2024-06-07,9515,4692,"[""Phone"", ""Charger""]",1760.96,{},28457,0,Asia +2024-01-31,9516,9504,"[""Laptop"", ""Headphones""]",1139.96,"{""seasonal"": ""5%""}",231518,0,Europe +2023-11-04,9517,1678,"[""Headphones""]",2354.53,{},238222,1,Europe +2023-02-28,9518,1542,"[""Charger""]",747.63,"{""promo"": ""23%""}",220145,1,North America +2024-09-21,9519,988,"[""Headphones"", ""Wireless Mouse""]",795.28,"{""promo"": ""9%""}",53497,1,North America +2024-02-24,9520,6872,"[""Headphones""]",3387.22,"{"""": ""8%""}",37623,1,Africa +2024-08-24,9521,7083,"[""Phone"", ""Monitor""]",1543.91,{},243448,0,Europe +2023-09-18,9522,6013,"[""Wireless Mouse""]",148.16,{},18085,1,South America +2024-01-31,9523,7910,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3857.21,"{""promo"": ""18%""}",177650,0,South America +2024-11-10,9524,2840,"[""Tablet"", ""Monitor""]",4623.45,"{""seasonal"": ""22%""}",50371,1,South America +2023-06-23,9525,5380,"[""Headphones"", ""Phone""]",1734.66,"{""promo"": ""16%""}",142805,0,Europe +2023-12-17,9526,8881,"[""Wireless Mouse"", ""Tablet""]",2597.55,"{""loyalty"": ""15%""}",238033,1,South America +2023-01-01,9527,7825,"[""Tablet"", ""Headphones"", ""Phone""]",2062.87,"{"""": ""20%""}",288205,0,North America +2023-05-01,9528,1955,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4802.89,"{""promo"": ""27%""}",8510,0,South America +2024-07-29,9529,6020,"[""Monitor""]",2176.91,{},147202,0,North America +2023-07-26,9530,8128,"[""Laptop""]",1993.48,"{"""": ""24%""}",161720,1,Africa +2024-06-06,9531,790,"[""Keyboard"", ""Laptop""]",1897.9,"{"""": ""14%""}",115529,0,Africa +2024-04-07,9532,7162,"[""Laptop""]",3053.74,{},20825,1,North America +2023-10-26,9533,4176,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3176.52,{},248970,1,North America +2023-05-21,9534,5628,"[""Tablet"", ""Monitor""]",4905.58,"{""loyalty"": ""12%""}",298823,0,North America +2024-07-18,9535,3805,"[""Tablet"", ""Charger""]",88.52,{},118945,0,South America +2023-01-29,9536,6975,"[""Laptop"", ""Headphones"", ""Charger""]",2492.16,{},162152,0,South America +2023-09-19,9537,6981,"[""Keyboard"", ""Monitor"", ""Phone""]",3823.86,"{""seasonal"": ""10%""}",202922,0,North America +2023-10-13,9538,4615,"[""Monitor"", ""Headphones""]",1460.97,"{""promo"": ""23%""}",50478,1,South America +2024-04-22,9539,9817,"[""Phone"", ""Monitor"", ""Laptop""]",686.04,"{""loyalty"": ""20%""}",255448,0,North America +2023-06-26,9540,1312,"[""Monitor""]",2223.05,"{"""": ""30%""}",298117,0,Europe +2024-07-19,9541,8230,"[""Wireless Mouse""]",267.89,{},265847,0,South America +2024-08-20,9542,2989,"[""Keyboard"", ""Phone"", ""Monitor""]",3498.5,"{""promo"": ""20%""}",147593,1,South America +2023-01-05,9543,2053,"[""Headphones"", ""Monitor""]",2336.08,{},51302,1,Asia +2024-04-09,9544,8121,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1660.25,"{"""": ""13%""}",109017,0,Africa +2024-09-19,9545,6091,"[""Charger"", ""Laptop"", ""Headphones""]",1843.95,"{""promo"": ""29%""}",195224,0,Asia +2023-04-07,9546,3329,"[""Tablet"", ""Wireless Mouse""]",1430.2,{},80157,0,Europe +2023-01-24,9547,2408,"[""Keyboard""]",1013.0,{},108940,0,North America +2023-04-04,9548,2370,"[""Monitor"", ""Headphones""]",113.85,"{""loyalty"": ""24%""}",55456,0,Africa +2024-05-11,9549,7207,"[""Phone"", ""Tablet"", ""Charger""]",4145.98,{},123296,1,South America +2023-11-08,9550,530,"[""Keyboard"", ""Tablet"", ""Laptop""]",4478.88,"{""promo"": ""6%""}",270452,0,Africa +2023-04-08,9551,9743,"[""Keyboard"", ""Charger"", ""Headphones""]",1541.49,"{""promo"": ""8%""}",182467,0,Europe +2024-10-11,9552,3129,"[""Wireless Mouse""]",4111.39,"{""seasonal"": ""7%""}",39268,1,Africa +2023-08-09,9553,4479,"[""Wireless Mouse"", ""Laptop""]",2288.3,"{""promo"": ""20%""}",64732,1,Europe +2023-02-04,9554,1176,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2199.99,{},266884,0,Asia +2023-07-05,9555,6287,"[""Laptop"", ""Monitor"", ""Charger""]",1145.88,{},138677,0,North America +2023-08-17,9556,668,"[""Monitor""]",2033.75,{},282178,1,Europe +2024-01-10,9557,8531,"[""Laptop"", ""Tablet""]",1772.19,{},297654,0,Africa +2024-12-17,9558,8032,"[""Keyboard"", ""Tablet""]",1731.04,{},220893,1,Africa +2023-12-27,9559,9770,"[""Tablet"", ""Laptop""]",3822.82,"{""loyalty"": ""17%""}",185759,1,North America +2024-03-08,9560,8962,"[""Headphones"", ""Keyboard"", ""Charger""]",1168.2,{},13312,0,Africa +2023-04-12,9561,4797,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4787.14,{},68947,1,Europe +2024-07-10,9562,5455,"[""Monitor""]",2994.61,{},155124,1,North America +2024-03-23,9563,6964,"[""Wireless Mouse"", ""Monitor""]",366.45,"{""seasonal"": ""17%""}",89447,1,Africa +2023-02-24,9564,9399,"[""Keyboard"", ""Laptop""]",3051.87,{},117316,0,Africa +2024-11-07,9565,378,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1670.64,{},4784,0,Asia +2023-10-02,9566,5620,"[""Monitor""]",4224.75,{},288095,0,Asia +2023-10-22,9567,1402,"[""Phone"", ""Keyboard""]",4332.51,{},250992,0,Asia +2023-11-27,9568,7275,"[""Laptop"", ""Keyboard"", ""Charger""]",3808.2,{},24355,1,North America +2023-01-12,9569,8810,"[""Tablet"", ""Laptop""]",1659.57,{},131083,0,North America +2024-09-04,9570,7202,"[""Monitor"", ""Charger""]",1612.77,"{""loyalty"": ""11%""}",249770,1,North America +2024-04-02,9571,8677,"[""Headphones"", ""Keyboard"", ""Tablet""]",3491.24,"{""loyalty"": ""25%""}",146797,1,North America +2024-09-07,9572,7741,"[""Charger"", ""Laptop""]",3533.65,"{""seasonal"": ""23%""}",256484,0,Africa +2023-05-02,9573,9947,"[""Laptop""]",954.44,{},269746,0,North America +2024-02-11,9574,3927,"[""Phone"", ""Headphones""]",1496.28,{},287318,0,Asia +2023-07-02,9575,7833,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1465.03,{},157529,0,Asia +2024-01-16,9576,1616,"[""Charger"", ""Headphones"", ""Keyboard""]",3106.4,"{""promo"": ""11%""}",246306,0,North America +2024-11-17,9577,5863,"[""Monitor""]",1324.73,"{""promo"": ""19%""}",22384,1,Europe +2024-10-14,9578,7810,"[""Charger"", ""Phone"", ""Laptop""]",1508.43,{},175149,1,Africa +2024-02-01,9579,7275,"[""Laptop"", ""Tablet"", ""Headphones""]",2224.29,"{"""": ""22%""}",250490,1,North America +2023-07-23,9580,6358,"[""Tablet"", ""Laptop""]",2553.92,{},277674,0,South America +2024-05-02,9581,142,"[""Tablet"", ""Laptop"", ""Phone""]",4051.22,"{""loyalty"": ""16%""}",282340,1,North America +2023-09-15,9582,3233,"[""Monitor"", ""Laptop"", ""Tablet""]",893.11,"{""promo"": ""25%""}",200585,0,Asia +2024-12-27,9583,287,"[""Keyboard""]",3031.71,"{""loyalty"": ""19%""}",271072,1,South America +2023-11-07,9584,5282,"[""Laptop"", ""Charger""]",3944.27,{},11901,0,Europe +2024-12-01,9585,7726,"[""Monitor"", ""Wireless Mouse""]",1132.27,"{""loyalty"": ""9%""}",288653,0,Asia +2024-01-27,9586,148,"[""Phone"", ""Keyboard""]",4528.76,{},275871,0,Asia +2024-12-09,9587,2759,"[""Monitor""]",1300.16,{},63697,1,Africa +2023-02-02,9588,8123,"[""Tablet""]",4317.05,{},126881,1,Africa +2024-07-04,9589,6667,"[""Laptop""]",4117.25,{},74856,0,Africa +2024-08-05,9590,8931,"[""Headphones""]",3213.41,{},76342,1,South America +2023-08-25,9591,4378,"[""Charger""]",4326.67,{},170062,0,Asia +2023-02-23,9592,6464,"[""Headphones""]",3280.98,{},136534,0,Asia +2024-09-19,9593,4466,"[""Keyboard""]",1765.47,"{""promo"": ""9%""}",102278,0,Europe +2023-12-26,9594,780,"[""Monitor"", ""Tablet""]",1463.68,"{""loyalty"": ""9%""}",294828,1,Europe +2023-12-24,9595,4409,"[""Wireless Mouse"", ""Charger""]",1722.29,"{"""": ""17%""}",207816,0,Asia +2024-09-02,9596,8360,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",447.43,{},191835,1,North America +2023-11-07,9597,5885,"[""Laptop"", ""Charger""]",968.12,{},143921,0,Europe +2023-11-08,9598,3395,"[""Keyboard""]",4032.9,"{""loyalty"": ""25%""}",231007,1,North America +2024-03-28,9599,6369,"[""Charger"", ""Laptop""]",4471.54,{},257464,0,Asia +2024-06-18,9600,1295,"[""Headphones""]",1129.44,{},236406,1,North America +2024-09-11,9601,3056,"[""Monitor"", ""Charger""]",3296.78,{},111215,1,Asia +2024-02-13,9602,8161,"[""Headphones""]",1612.42,{},16334,0,South America +2024-04-23,9603,3695,"[""Laptop""]",342.69,{},66011,0,North America +2023-10-14,9604,7827,"[""Laptop"", ""Charger""]",1635.41,"{""promo"": ""14%""}",71523,0,Europe +2024-11-07,9605,9463,"[""Wireless Mouse""]",150.91,{},37706,1,Europe +2023-03-09,9606,820,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",156.57,{},238663,1,Africa +2023-03-21,9607,568,"[""Tablet"", ""Phone""]",1108.77,{},208040,1,Europe +2023-01-01,9608,2286,"[""Charger"", ""Keyboard""]",4377.17,"{""promo"": ""9%""}",62482,1,Africa +2024-07-27,9609,9976,"[""Laptop"", ""Tablet"", ""Keyboard""]",917.07,"{""promo"": ""16%""}",46154,1,Africa +2023-12-12,9610,3167,"[""Tablet""]",633.61,"{""seasonal"": ""15%""}",185928,1,Africa +2023-12-23,9611,3778,"[""Laptop""]",1206.52,{},175336,0,North America +2024-08-23,9612,3216,"[""Charger"", ""Monitor"", ""Keyboard""]",2248.92,{},288852,1,Asia +2023-12-24,9613,1496,"[""Charger"", ""Keyboard""]",3259.44,"{""promo"": ""11%""}",135996,1,North America +2023-07-11,9614,7924,"[""Tablet"", ""Charger"", ""Phone""]",4058.47,{},269525,0,North America +2023-09-20,9615,4486,"[""Monitor"", ""Headphones"", ""Phone""]",2264.56,"{""seasonal"": ""28%""}",39596,1,Africa +2023-04-16,9616,1705,"[""Charger"", ""Headphones"", ""Laptop""]",2136.56,"{""loyalty"": ""26%""}",54504,0,North America +2023-01-08,9617,8181,"[""Tablet"", ""Charger"", ""Laptop""]",2403.28,{},189348,1,Asia +2024-07-06,9618,6309,"[""Charger""]",2293.22,"{""promo"": ""16%""}",165693,0,South America +2024-09-07,9619,6783,"[""Headphones""]",4612.33,"{""loyalty"": ""10%""}",157623,0,North America +2023-06-09,9620,402,"[""Wireless Mouse""]",1388.28,{},144194,0,Europe +2024-10-30,9621,7090,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3796.72,{},273408,1,North America +2023-04-21,9622,4757,"[""Headphones"", ""Laptop"", ""Charger""]",772.17,"{"""": ""14%""}",160453,1,Europe +2024-05-01,9623,8000,"[""Keyboard""]",2778.48,{},101307,1,South America +2024-06-11,9624,966,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4760.16,"{"""": ""15%""}",49568,1,Africa +2024-05-16,9625,5886,"[""Keyboard""]",2097.48,{},246339,0,Europe +2023-03-04,9626,3324,"[""Keyboard""]",4552.86,{},150722,0,Africa +2024-04-05,9627,6883,"[""Monitor""]",411.46,"{""seasonal"": ""30%""}",54032,0,Europe +2023-02-05,9628,3427,"[""Monitor""]",770.38,"{""promo"": ""23%""}",147231,1,Asia +2024-12-31,9629,3195,"[""Headphones"", ""Charger""]",2910.69,{},276879,0,Europe +2023-05-20,9630,3649,"[""Tablet"", ""Laptop"", ""Keyboard""]",4298.86,"{""promo"": ""28%""}",190207,1,Africa +2024-06-02,9631,7324,"[""Phone""]",2410.33,{},38547,0,South America +2024-12-25,9632,8093,"[""Laptop"", ""Monitor"", ""Phone""]",4677.49,{},159645,1,South America +2023-12-30,9633,3277,"[""Charger"", ""Laptop"", ""Keyboard""]",1591.4,{},33409,1,North America +2024-07-16,9634,8485,"[""Keyboard"", ""Tablet"", ""Headphones""]",4980.35,{},204852,0,Africa +2023-02-16,9635,5731,"[""Keyboard""]",942.16,{},12436,0,Asia +2024-10-08,9636,3751,"[""Charger"", ""Tablet"", ""Monitor""]",3345.18,"{""seasonal"": ""10%""}",168324,1,North America +2024-09-01,9637,1373,"[""Monitor""]",2568.36,{},116626,1,Africa +2023-06-06,9638,7278,"[""Monitor"", ""Keyboard"", ""Tablet""]",3062.51,"{""seasonal"": ""16%""}",66477,0,Europe +2023-06-11,9639,7610,"[""Monitor"", ""Phone""]",1042.88,{},81472,0,Europe +2023-10-02,9640,246,"[""Charger"", ""Phone"", ""Monitor""]",4208.59,{},107607,1,Asia +2024-12-25,9641,2227,"[""Wireless Mouse""]",1380.78,"{""promo"": ""8%""}",273669,1,Europe +2024-04-26,9642,9244,"[""Tablet"", ""Charger""]",3213.77,"{""promo"": ""24%""}",234758,1,Europe +2024-09-18,9643,392,"[""Keyboard"", ""Phone"", ""Laptop""]",1136.82,"{"""": ""27%""}",102349,1,Africa +2023-01-30,9644,9489,"[""Charger"", ""Phone""]",1233.4,{},285291,1,Asia +2024-03-12,9645,2531,"[""Keyboard"", ""Laptop""]",3405.11,{},50948,1,South America +2024-10-28,9646,5376,"[""Phone"", ""Monitor"", ""Keyboard""]",1723.58,"{""promo"": ""10%""}",133522,0,North America +2024-06-19,9647,1700,"[""Charger"", ""Laptop""]",4276.51,{},193373,0,Europe +2023-10-28,9648,4661,"[""Phone""]",1168.35,{},226438,1,Africa +2023-07-31,9649,5598,"[""Charger""]",3049.86,"{""seasonal"": ""11%""}",144657,1,Asia +2023-12-23,9650,8382,"[""Monitor"", ""Charger""]",4782.58,{},193836,1,North America +2023-12-08,9651,7071,"[""Monitor"", ""Keyboard""]",882.61,"{""promo"": ""13%""}",63844,1,South America +2023-06-22,9652,168,"[""Phone"", ""Monitor""]",3514.1,"{""promo"": ""15%""}",131361,0,North America +2024-07-10,9653,3221,"[""Laptop""]",1945.03,{},198789,0,North America +2023-10-27,9654,6478,"[""Keyboard"", ""Laptop""]",771.01,"{""seasonal"": ""25%""}",169058,1,Europe +2023-04-07,9655,7912,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",759.15,"{""seasonal"": ""10%""}",181130,1,Europe +2023-11-23,9656,8176,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",816.69,{},292723,1,North America +2024-12-04,9657,6887,"[""Keyboard"", ""Headphones""]",893.63,"{""seasonal"": ""30%""}",254599,1,South America +2024-11-05,9658,4648,"[""Keyboard"", ""Laptop""]",1767.69,"{""seasonal"": ""26%""}",223656,0,Europe +2024-01-27,9659,2943,"[""Laptop"", ""Phone""]",4854.06,"{""loyalty"": ""5%""}",198463,0,South America +2023-06-04,9660,822,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4944.54,{},49849,1,Europe +2024-08-26,9661,4757,"[""Headphones"", ""Wireless Mouse""]",556.24,{},195391,0,Africa +2024-03-04,9662,8235,"[""Monitor"", ""Tablet""]",3570.36,{},295126,1,Europe +2023-01-01,9663,8104,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3875.57,"{""seasonal"": ""8%""}",121333,0,Africa +2024-07-25,9664,2829,"[""Charger"", ""Wireless Mouse""]",2491.15,{},82344,0,Asia +2023-12-26,9665,6800,"[""Charger"", ""Phone"", ""Tablet""]",230.97,{},268161,1,South America +2023-02-24,9666,3146,"[""Tablet"", ""Monitor"", ""Charger""]",4793.74,{},58365,1,North America +2023-06-30,9667,5067,"[""Laptop"", ""Wireless Mouse""]",2091.22,{},266653,1,Europe +2024-07-10,9668,7264,"[""Monitor"", ""Charger""]",1894.46,{},291468,1,North America +2024-10-01,9669,123,"[""Keyboard""]",2286.96,{},290458,1,Africa +2023-02-11,9670,8233,"[""Phone"", ""Charger""]",2787.47,{},162858,1,Europe +2024-11-20,9671,8498,"[""Headphones"", ""Monitor"", ""Charger""]",3561.6,"{""seasonal"": ""12%""}",27963,1,South America +2023-03-04,9672,2432,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1290.57,{},97170,1,Africa +2023-01-15,9673,3399,"[""Monitor"", ""Tablet"", ""Charger""]",3568.51,{},24188,1,Europe +2023-01-28,9674,9953,"[""Charger"", ""Monitor"", ""Laptop""]",2205.53,"{"""": ""20%""}",153071,0,Africa +2024-04-03,9675,3803,"[""Phone"", ""Keyboard"", ""Headphones""]",4103.6,{},152933,1,Europe +2024-05-13,9676,6388,"[""Charger""]",1721.02,{},73148,1,North America +2023-10-10,9677,725,"[""Monitor""]",4257.13,"{""loyalty"": ""28%""}",137958,0,Europe +2023-08-13,9678,7434,"[""Keyboard""]",3501.03,"{""loyalty"": ""30%""}",271356,0,North America +2024-09-18,9679,7762,"[""Headphones""]",3080.21,"{"""": ""12%""}",205408,1,Asia +2023-10-04,9680,4449,"[""Laptop"", ""Headphones""]",2032.86,{},200821,0,South America +2024-07-22,9681,2713,"[""Headphones"", ""Keyboard"", ""Phone""]",3597.3,"{""loyalty"": ""30%""}",249666,0,Asia +2023-08-29,9682,1969,"[""Headphones"", ""Laptop"", ""Keyboard""]",3355.36,{},217624,1,Africa +2023-07-04,9683,6730,"[""Keyboard"", ""Laptop""]",4363.03,"{"""": ""9%""}",244008,0,South America +2024-04-24,9684,1046,"[""Headphones"", ""Tablet""]",4803.78,{},239394,0,Europe +2024-10-27,9685,8743,"[""Tablet""]",4757.73,{},77087,1,South America +2024-11-01,9686,8389,"[""Headphones""]",80.88,"{""loyalty"": ""14%""}",25213,0,Europe +2023-05-10,9687,8286,"[""Laptop"", ""Tablet"", ""Keyboard""]",4821.13,"{"""": ""20%""}",56341,0,Africa +2023-12-11,9688,474,"[""Monitor""]",370.42,"{""seasonal"": ""22%""}",122032,0,Africa +2023-08-13,9689,9906,"[""Headphones"", ""Monitor"", ""Phone""]",895.56,{},5530,1,South America +2023-07-15,9690,8491,"[""Monitor"", ""Charger""]",2604.8,"{""promo"": ""30%""}",147266,1,South America +2023-05-15,9691,24,"[""Monitor""]",3639.55,"{""promo"": ""9%""}",76311,1,Europe +2023-08-03,9692,5033,"[""Phone""]",4250.24,{},268314,1,Asia +2024-09-23,9693,5849,"[""Phone"", ""Charger""]",1673.13,"{"""": ""26%""}",64156,1,South America +2023-10-21,9694,6580,"[""Tablet""]",1669.01,{},219839,1,Asia +2024-03-14,9695,1165,"[""Keyboard""]",3187.57,{},151470,1,South America +2024-04-05,9696,6006,"[""Tablet"", ""Keyboard"", ""Laptop""]",1247.42,"{""seasonal"": ""28%""}",101808,1,Asia +2024-06-12,9697,5782,"[""Monitor"", ""Tablet""]",4322.98,"{""loyalty"": ""7%""}",210411,1,Europe +2024-01-23,9698,1098,"[""Phone"", ""Laptop""]",2659.94,{},137650,1,Europe +2024-11-06,9699,2873,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3390.2,{},92299,1,Africa +2023-08-24,9700,5864,"[""Laptop"", ""Keyboard""]",553.14,{},98224,1,Europe +2024-08-06,9701,6155,"[""Monitor"", ""Tablet"", ""Laptop""]",377.17,{},244500,1,Africa +2023-01-12,9702,8567,"[""Laptop""]",1391.92,{},61077,1,Europe +2024-05-05,9703,8081,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2393.24,"{""seasonal"": ""24%""}",208464,0,Europe +2023-01-12,9704,6195,"[""Laptop""]",649.51,{},234842,0,Africa +2023-08-11,9705,3032,"[""Monitor""]",3031.01,{},205056,0,Africa +2023-06-16,9706,7197,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4684.86,"{""seasonal"": ""25%""}",145196,0,Europe +2024-05-21,9707,1680,"[""Laptop""]",626.31,"{""promo"": ""11%""}",12406,1,North America +2024-05-25,9708,7274,"[""Keyboard""]",3131.81,"{""loyalty"": ""9%""}",177150,0,Europe +2024-12-27,9709,6836,"[""Tablet""]",850.7,"{""promo"": ""15%""}",196059,0,Asia +2023-11-22,9710,6949,"[""Charger"", ""Monitor"", ""Tablet""]",4848.46,"{"""": ""21%""}",211161,1,North America +2023-01-15,9711,2604,"[""Keyboard"", ""Phone""]",2159.04,"{""loyalty"": ""21%""}",13614,1,North America +2023-10-04,9712,2439,"[""Keyboard""]",2360.62,{},76132,1,Asia +2023-09-29,9713,7855,"[""Laptop"", ""Tablet""]",4694.69,{},289198,1,Africa +2024-01-16,9714,6030,"[""Monitor"", ""Keyboard""]",73.63,{},20080,1,Asia +2023-10-15,9715,9107,"[""Headphones""]",4203.8,{},262370,0,Asia +2024-09-07,9716,3015,"[""Phone"", ""Keyboard""]",3550.2,{},13613,1,Africa +2024-10-28,9717,5286,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1120.9,"{""loyalty"": ""27%""}",69376,0,Europe +2024-12-06,9718,9478,"[""Wireless Mouse"", ""Monitor""]",1131.48,"{""promo"": ""15%""}",187899,0,South America +2024-07-18,9719,6482,"[""Monitor"", ""Keyboard""]",1095.77,"{"""": ""17%""}",80676,1,South America +2024-12-01,9720,7977,"[""Tablet""]",1820.35,"{""promo"": ""22%""}",184819,0,South America +2023-02-14,9721,675,"[""Phone"", ""Tablet"", ""Headphones""]",4966.98,{},19915,1,Africa +2024-12-19,9722,5881,"[""Keyboard"", ""Headphones"", ""Tablet""]",1915.75,"{"""": ""25%""}",2441,1,North America +2023-11-14,9723,4500,"[""Keyboard""]",333.88,"{"""": ""14%""}",196700,0,Europe +2024-03-25,9724,8455,"[""Keyboard"", ""Headphones""]",827.56,{},225495,1,North America +2023-10-25,9725,4583,"[""Charger""]",2148.23,{},271837,0,Africa +2023-06-10,9726,5394,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3688.62,"{""seasonal"": ""11%""}",112057,0,Europe +2024-12-06,9727,7778,"[""Wireless Mouse"", ""Tablet""]",2940.7,"{""promo"": ""15%""}",271816,1,Asia +2024-12-12,9728,459,"[""Phone"", ""Tablet"", ""Laptop""]",488.62,"{""seasonal"": ""5%""}",225624,1,North America +2024-03-01,9729,7349,"[""Laptop""]",3066.12,"{""loyalty"": ""18%""}",261518,0,Europe +2023-12-28,9730,4043,"[""Phone""]",4566.16,"{""promo"": ""24%""}",63790,0,Asia +2023-05-25,9731,8588,"[""Monitor""]",2502.21,"{"""": ""12%""}",298158,1,Africa +2023-05-23,9732,427,"[""Keyboard"", ""Headphones"", ""Phone""]",2878.11,"{"""": ""7%""}",182066,1,Europe +2023-07-05,9733,2878,"[""Wireless Mouse"", ""Phone""]",2979.73,"{""seasonal"": ""30%""}",277738,1,North America +2023-09-05,9734,7924,"[""Phone"", ""Wireless Mouse""]",3508.78,{},200473,1,North America +2024-03-28,9735,355,"[""Headphones"", ""Laptop""]",4366.15,"{""promo"": ""17%""}",203529,1,Africa +2024-11-26,9736,3009,"[""Headphones""]",3954.69,{},132054,0,Europe +2023-04-17,9737,8754,"[""Keyboard""]",1918.31,"{""seasonal"": ""24%""}",37508,1,Africa +2024-02-11,9738,9639,"[""Tablet"", ""Charger"", ""Keyboard""]",3750.23,"{""promo"": ""18%""}",196400,1,Asia +2023-05-26,9739,6847,"[""Charger"", ""Tablet""]",4370.74,"{""loyalty"": ""29%""}",72563,1,Europe +2024-08-15,9740,3928,"[""Monitor""]",3101.38,{},71983,0,Asia +2024-12-22,9741,2140,"[""Monitor""]",4650.54,"{"""": ""24%""}",142869,0,Europe +2023-03-02,9742,7204,"[""Tablet"", ""Charger""]",3994.58,"{""seasonal"": ""10%""}",54608,0,Africa +2024-05-31,9743,5394,"[""Keyboard"", ""Tablet"", ""Monitor""]",3940.42,"{"""": ""21%""}",85002,1,Europe +2023-07-13,9744,2150,"[""Wireless Mouse"", ""Headphones""]",955.68,{},1528,0,North America +2023-06-12,9745,6198,"[""Headphones"", ""Keyboard"", ""Monitor""]",2959.95,"{""promo"": ""5%""}",67779,0,Europe +2024-06-24,9746,5234,"[""Keyboard""]",2420.81,{},21203,0,Asia +2024-07-30,9747,2336,"[""Laptop"", ""Phone"", ""Headphones""]",3123.05,"{""seasonal"": ""26%""}",44773,1,Asia +2024-03-26,9748,3705,"[""Phone"", ""Headphones""]",4634.94,{},252471,1,Europe +2023-04-01,9749,3517,"[""Wireless Mouse"", ""Charger""]",4805.05,{},180820,0,Asia +2024-12-13,9750,1845,"[""Keyboard"", ""Charger""]",2763.93,"{""promo"": ""22%""}",94204,1,South America +2023-12-18,9751,5386,"[""Wireless Mouse"", ""Monitor""]",3002.17,"{""seasonal"": ""19%""}",26207,1,South America +2024-12-19,9752,4677,"[""Laptop"", ""Headphones"", ""Keyboard""]",256.07,{},4603,0,Europe +2023-07-23,9753,17,"[""Monitor"", ""Phone"", ""Keyboard""]",4573.41,"{"""": ""16%""}",99206,0,South America +2023-07-24,9754,4702,"[""Phone"", ""Laptop"", ""Headphones""]",128.79,{},165541,1,Africa +2024-02-20,9755,5633,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4056.07,"{"""": ""12%""}",35348,0,Africa +2023-07-05,9756,5323,"[""Phone""]",4833.71,{},254172,1,North America +2023-02-14,9757,6568,"[""Phone"", ""Tablet""]",714.75,{},15610,0,Africa +2023-09-09,9758,3898,"[""Headphones""]",4691.78,{},241351,1,North America +2023-01-09,9759,8652,"[""Phone"", ""Headphones"", ""Laptop""]",4585.6,{},232751,0,Africa +2023-07-03,9760,582,"[""Headphones"", ""Monitor"", ""Tablet""]",1746.33,"{""seasonal"": ""17%""}",176107,1,Africa +2024-06-09,9761,3625,"[""Charger""]",3413.18,"{"""": ""27%""}",207780,0,Europe +2024-12-09,9762,1974,"[""Tablet"", ""Laptop"", ""Charger""]",1129.22,{},276815,1,South America +2023-04-24,9763,9782,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2939.52,{},23201,1,Asia +2023-10-20,9764,6608,"[""Wireless Mouse""]",3629.06,"{""promo"": ""7%""}",65870,0,Europe +2024-07-27,9765,4722,"[""Phone"", ""Keyboard"", ""Monitor""]",1795.59,"{""promo"": ""23%""}",128364,0,North America +2023-03-14,9766,1736,"[""Laptop"", ""Charger"", ""Tablet""]",2961.43,{},123483,1,Europe +2023-06-02,9767,7384,"[""Headphones""]",2439.28,"{""promo"": ""11%""}",29444,1,Africa +2024-02-09,9768,5940,"[""Monitor"", ""Phone"", ""Laptop""]",709.19,"{""promo"": ""20%""}",202264,1,Africa +2024-05-17,9769,4685,"[""Charger"", ""Keyboard"", ""Monitor""]",2704.82,"{"""": ""24%""}",123559,1,Asia +2023-06-23,9770,1118,"[""Charger"", ""Tablet"", ""Keyboard""]",4715.08,"{""promo"": ""30%""}",98493,1,South America +2023-03-09,9771,412,"[""Laptop"", ""Monitor"", ""Headphones""]",4527.33,{},246427,0,Africa +2023-06-28,9772,5344,"[""Tablet""]",2475.61,"{"""": ""21%""}",43255,0,North America +2024-08-12,9773,4169,"[""Headphones""]",1407.53,{},178279,0,Europe +2024-03-27,9774,3954,"[""Charger""]",1117.98,{},93824,1,Europe +2023-08-10,9775,4185,"[""Headphones"", ""Phone""]",1146.12,"{""loyalty"": ""9%""}",148491,1,North America +2023-05-26,9776,9643,"[""Wireless Mouse"", ""Monitor""]",1585.63,"{""promo"": ""22%""}",230224,0,South America +2023-03-05,9777,3028,"[""Charger"", ""Headphones""]",4541.65,"{""seasonal"": ""26%""}",88823,0,North America +2023-11-27,9778,5790,"[""Wireless Mouse"", ""Keyboard""]",869.69,{},172136,0,Asia +2024-10-10,9779,2455,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4463.04,"{"""": ""7%""}",236682,0,Europe +2023-06-06,9780,7112,"[""Tablet""]",620.67,{},120643,1,South America +2024-12-02,9781,2431,"[""Headphones"", ""Charger"", ""Laptop""]",4419.35,"{""promo"": ""28%""}",215041,0,Asia +2023-02-11,9782,9651,"[""Phone"", ""Laptop"", ""Headphones""]",2236.2,"{""seasonal"": ""14%""}",171011,0,Africa +2023-11-30,9783,867,"[""Keyboard"", ""Headphones"", ""Tablet""]",3830.77,{},282394,0,Europe +2024-09-05,9784,4706,"[""Keyboard"", ""Phone"", ""Headphones""]",2283.55,{},296157,0,North America +2023-10-25,9785,2638,"[""Phone""]",278.21,"{""loyalty"": ""10%""}",145007,0,Asia +2023-04-15,9786,1009,"[""Phone"", ""Laptop""]",4929.9,{},20895,1,North America +2023-08-03,9787,1407,"[""Wireless Mouse""]",2689.79,"{""loyalty"": ""24%""}",66081,1,South America +2023-03-05,9788,8213,"[""Laptop"", ""Headphones""]",2724.25,"{""seasonal"": ""22%""}",85647,1,Asia +2023-07-15,9789,1069,"[""Headphones"", ""Phone""]",2378.16,"{""promo"": ""25%""}",144724,1,Africa +2023-09-18,9790,4010,"[""Monitor"", ""Laptop"", ""Keyboard""]",580.82,{},269527,1,South America +2023-11-06,9791,2713,"[""Headphones""]",3893.42,"{""seasonal"": ""12%""}",177651,1,Asia +2024-01-21,9792,3230,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4190.24,{},95654,1,Europe +2024-10-02,9793,3764,"[""Monitor""]",4253.53,{},26763,0,North America +2023-05-23,9794,1370,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4025.54,{},41918,1,Europe +2024-11-05,9795,9840,"[""Charger"", ""Keyboard""]",460.88,{},53846,0,Asia +2023-03-23,9796,5865,"[""Monitor"", ""Phone""]",497.97,{},128031,0,Africa +2024-10-01,9797,3420,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4184.21,"{""seasonal"": ""9%""}",240177,1,North America +2024-12-05,9798,2689,"[""Phone""]",2429.79,"{"""": ""14%""}",228105,0,South America +2023-01-04,9799,3752,"[""Keyboard"", ""Wireless Mouse""]",1493.29,"{""loyalty"": ""15%""}",59887,0,Asia +2023-08-09,9800,8702,"[""Phone"", ""Monitor"", ""Charger""]",2483.5,{},275534,0,Asia +2024-07-03,9801,3088,"[""Wireless Mouse""]",3674.59,{},155353,0,North America +2023-06-16,9802,1514,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2212.25,"{""loyalty"": ""6%""}",72304,0,Asia +2024-09-22,9803,7972,"[""Tablet"", ""Wireless Mouse""]",2256.74,{},81034,0,Africa +2024-12-20,9804,6495,"[""Keyboard""]",2109.09,{},150848,1,North America +2024-07-31,9805,9076,"[""Headphones"", ""Tablet"", ""Laptop""]",1303.86,{},197374,0,South America +2024-05-27,9806,4636,"[""Laptop""]",4345.57,{},201994,1,Africa +2023-11-18,9807,2597,"[""Tablet""]",1018.1,{},29744,1,Asia +2023-05-14,9808,4481,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2767.61,{},57508,1,Africa +2024-02-12,9809,9562,"[""Headphones"", ""Laptop"", ""Tablet""]",2570.91,"{""loyalty"": ""27%""}",6917,1,South America +2023-07-16,9810,8410,"[""Keyboard"", ""Wireless Mouse""]",143.81,{},260464,1,South America +2024-08-01,9811,7882,"[""Headphones"", ""Monitor"", ""Tablet""]",2829.99,"{""promo"": ""16%""}",241074,0,Asia +2023-02-19,9812,302,"[""Tablet"", ""Headphones""]",1401.55,{},132391,1,South America +2024-09-11,9813,3019,"[""Headphones"", ""Phone""]",534.23,{},278610,1,South America +2023-06-01,9814,4668,"[""Charger"", ""Monitor""]",4175.5,"{""seasonal"": ""30%""}",152975,1,Africa +2023-06-18,9815,9824,"[""Headphones""]",4510.77,"{""promo"": ""13%""}",240085,0,South America +2023-04-14,9816,4547,"[""Keyboard""]",2006.71,"{""promo"": ""28%""}",272767,1,North America +2024-08-31,9817,3988,"[""Charger""]",363.99,{},261081,0,South America +2024-01-21,9818,600,"[""Tablet""]",2209.2,{},13232,0,Asia +2024-04-02,9819,5736,"[""Wireless Mouse""]",2703.37,{},226876,0,North America +2024-01-18,9820,2941,"[""Wireless Mouse"", ""Charger""]",4024.89,{},178603,0,North America +2023-05-20,9821,585,"[""Laptop"", ""Keyboard""]",4012.38,"{""loyalty"": ""15%""}",6203,1,Europe +2024-03-30,9822,9700,"[""Tablet"", ""Headphones""]",4433.8,"{""seasonal"": ""14%""}",105440,1,Europe +2023-01-30,9823,6256,"[""Tablet""]",4821.49,"{""seasonal"": ""22%""}",9619,0,Asia +2023-12-10,9824,2010,"[""Phone"", ""Monitor"", ""Headphones""]",2402.94,"{"""": ""24%""}",287090,1,North America +2023-04-13,9825,7809,"[""Charger""]",623.4,{},278270,1,Asia +2023-11-07,9826,2349,"[""Headphones""]",4040.28,"{""seasonal"": ""20%""}",177365,1,North America +2023-06-07,9827,2297,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4533.48,"{"""": ""14%""}",51891,1,North America +2023-08-06,9828,7589,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3171.43,{},32297,0,Asia +2024-08-01,9829,4850,"[""Headphones"", ""Phone""]",2069.33,"{""seasonal"": ""15%""}",265970,1,South America +2024-06-05,9830,5149,"[""Keyboard"", ""Wireless Mouse""]",1803.47,"{""loyalty"": ""14%""}",81259,1,Africa +2024-08-17,9831,8678,"[""Monitor"", ""Tablet""]",4936.64,"{""loyalty"": ""9%""}",143531,0,Asia +2023-03-09,9832,3092,"[""Wireless Mouse""]",3502.35,"{"""": ""17%""}",111283,0,Africa +2023-06-07,9833,7200,"[""Keyboard"", ""Tablet""]",4598.2,"{""loyalty"": ""15%""}",178987,1,Europe +2024-10-03,9834,4504,"[""Tablet"", ""Monitor""]",4051.19,"{"""": ""6%""}",286193,1,North America +2024-08-24,9835,3088,"[""Phone"", ""Monitor"", ""Keyboard""]",4740.8,{},14310,0,North America +2024-06-25,9836,5082,"[""Charger""]",664.12,{},259280,0,Africa +2024-05-03,9837,7719,"[""Tablet"", ""Monitor"", ""Headphones""]",4200.7,"{"""": ""14%""}",173517,1,South America +2023-05-27,9838,8123,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2395.44,"{""loyalty"": ""17%""}",248069,0,Europe +2024-07-12,9839,2475,"[""Phone""]",2916.6,{},170187,1,Asia +2023-03-28,9840,1047,"[""Headphones"", ""Charger""]",1643.64,{},211886,0,Asia +2023-01-11,9841,3152,"[""Phone""]",2833.99,{},6498,1,Europe +2023-11-15,9842,3157,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4020.06,"{"""": ""10%""}",102860,0,North America +2024-11-02,9843,5877,"[""Headphones"", ""Keyboard"", ""Phone""]",4974.03,"{""seasonal"": ""14%""}",32226,1,Europe +2024-02-25,9844,8280,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1988.16,{},260798,0,Europe +2024-01-07,9845,5868,"[""Tablet""]",3539.86,"{""promo"": ""21%""}",248650,1,Africa +2024-10-04,9846,6028,"[""Tablet"", ""Laptop""]",1545.41,"{""seasonal"": ""18%""}",29022,1,North America +2024-04-10,9847,7707,"[""Monitor""]",1922.39,"{""loyalty"": ""12%""}",239611,0,Europe +2023-09-17,9848,8901,"[""Headphones"", ""Tablet""]",4254.32,"{""promo"": ""19%""}",53044,0,Asia +2024-08-08,9849,7134,"[""Wireless Mouse""]",2018.54,"{""promo"": ""15%""}",140921,0,Europe +2023-04-03,9850,3615,"[""Headphones"", ""Charger"", ""Laptop""]",3797.12,"{"""": ""14%""}",213526,0,North America +2023-06-12,9851,3022,"[""Charger"", ""Wireless Mouse""]",676.16,{},130621,1,Asia +2024-06-02,9852,3697,"[""Laptop""]",2486.57,{},239863,0,Europe +2024-03-26,9853,6166,"[""Charger"", ""Laptop""]",3855.58,{},220216,1,Asia +2024-04-02,9854,432,"[""Wireless Mouse""]",212.47,{},89181,0,Europe +2024-06-21,9855,374,"[""Charger"", ""Keyboard"", ""Headphones""]",4085.97,"{""seasonal"": ""5%""}",211701,1,Asia +2023-10-07,9856,675,"[""Wireless Mouse""]",2686.81,{},251383,1,North America +2023-09-05,9857,9889,"[""Tablet"", ""Headphones""]",2010.21,{},268597,1,North America +2024-03-04,9858,4840,"[""Laptop"", ""Charger"", ""Keyboard""]",1663.54,"{"""": ""30%""}",95256,1,South America +2024-05-04,9859,2869,"[""Monitor"", ""Tablet""]",2592.23,{},93141,0,Africa +2024-11-16,9860,6327,"[""Tablet"", ""Headphones""]",3595.97,{},46473,0,North America +2023-02-17,9861,9260,"[""Laptop"", ""Monitor""]",364.22,"{""promo"": ""22%""}",37418,1,Africa +2024-03-11,9862,4193,"[""Keyboard""]",1411.01,"{""seasonal"": ""5%""}",218332,0,Europe +2024-03-12,9863,4386,"[""Phone"", ""Charger"", ""Headphones""]",3450.01,"{""promo"": ""21%""}",49559,1,North America +2024-09-28,9864,6652,"[""Keyboard""]",927.78,{},154773,0,South America +2024-11-17,9865,5167,"[""Monitor""]",3747.47,"{""loyalty"": ""10%""}",173339,0,North America +2024-03-28,9866,6669,"[""Phone"", ""Headphones"", ""Charger""]",4948.38,{},24961,1,South America +2024-08-22,9867,3500,"[""Charger""]",779.65,"{""loyalty"": ""13%""}",72417,1,South America +2024-07-10,9868,1839,"[""Monitor""]",4979.37,{},299980,1,North America +2023-06-28,9869,5966,"[""Monitor""]",1038.62,{},126253,0,Europe +2023-01-09,9870,132,"[""Monitor"", ""Charger"", ""Phone""]",4522.57,{},245599,0,Asia +2024-10-05,9871,5500,"[""Monitor""]",3144.04,"{"""": ""19%""}",38527,0,Asia +2023-03-18,9872,5188,"[""Laptop""]",3869.34,{},38357,1,North America +2023-01-16,9873,5556,"[""Phone""]",4555.82,"{"""": ""24%""}",257159,0,North America +2023-07-26,9874,452,"[""Headphones"", ""Phone"", ""Laptop""]",63.39,{},104459,0,Asia +2023-06-25,9875,5411,"[""Laptop"", ""Monitor""]",958.95,{},41277,0,South America +2023-10-17,9876,5223,"[""Monitor"", ""Headphones""]",3053.29,"{""loyalty"": ""30%""}",1613,1,Africa +2024-06-28,9877,5355,"[""Phone""]",2588.15,{},49000,0,Africa +2024-04-07,9878,3761,"[""Charger""]",3854.85,{},232350,0,South America +2024-08-08,9879,2546,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",328.43,"{""promo"": ""10%""}",99586,1,Asia +2024-08-07,9880,2157,"[""Keyboard""]",3458.71,"{""seasonal"": ""9%""}",148715,1,Europe +2023-06-19,9881,9747,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1975.48,"{""seasonal"": ""24%""}",281137,1,South America +2023-05-26,9882,808,"[""Monitor"", ""Tablet""]",2403.69,{},107933,0,South America +2024-06-28,9883,1109,"[""Charger"", ""Tablet"", ""Laptop""]",3443.85,"{""promo"": ""27%""}",183049,0,Africa +2023-02-19,9884,9368,"[""Keyboard"", ""Wireless Mouse""]",3609.54,"{""seasonal"": ""25%""}",95507,1,South America +2024-06-17,9885,903,"[""Headphones""]",2503.05,{},252663,0,Africa +2024-08-20,9886,7626,"[""Tablet"", ""Headphones""]",835.51,{},92038,1,North America +2024-10-16,9887,3979,"[""Wireless Mouse"", ""Tablet""]",704.48,"{""promo"": ""11%""}",246797,1,North America +2024-09-14,9888,3897,"[""Monitor""]",4292.1,"{""seasonal"": ""24%""}",215338,0,Asia +2024-05-27,9889,7664,"[""Charger"", ""Keyboard""]",355.64,"{""loyalty"": ""20%""}",107226,1,South America +2024-01-14,9890,3160,"[""Monitor"", ""Headphones"", ""Phone""]",1242.64,"{""seasonal"": ""13%""}",84370,1,South America +2023-05-12,9891,7807,"[""Headphones"", ""Tablet"", ""Monitor""]",1557.77,"{""loyalty"": ""26%""}",46197,0,Europe +2024-06-03,9892,9555,"[""Monitor"", ""Laptop"", ""Charger""]",4732.09,{},109730,1,Africa +2023-09-04,9893,8901,"[""Wireless Mouse""]",2819.1,"{""promo"": ""7%""}",199794,1,South America +2024-11-11,9894,5809,"[""Laptop""]",4165.8,"{""promo"": ""27%""}",233520,1,North America +2024-09-20,9895,881,"[""Charger"", ""Laptop""]",4094.66,{},282380,1,North America +2024-03-17,9896,5477,"[""Phone"", ""Wireless Mouse""]",1099.66,"{""loyalty"": ""14%""}",294176,0,Africa +2024-07-20,9897,1240,"[""Charger"", ""Monitor""]",1514.56,{},11314,1,Europe +2024-03-04,9898,1163,"[""Laptop""]",3966.07,"{""loyalty"": ""5%""}",191358,1,North America +2023-12-15,9899,9763,"[""Monitor"", ""Keyboard""]",3535.22,{},47498,1,Asia +2024-11-22,9900,8533,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1020.45,{},82185,1,Europe +2023-12-25,9901,43,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1978.32,{},285105,1,Europe +2023-05-13,9902,6461,"[""Tablet"", ""Headphones""]",4335.48,"{"""": ""18%""}",165259,0,Africa +2024-12-02,9903,5688,"[""Wireless Mouse"", ""Monitor""]",4099.79,{},14791,0,Asia +2024-07-28,9904,4680,"[""Charger"", ""Headphones""]",2778.31,{},36581,0,Africa +2024-11-17,9905,4211,"[""Headphones"", ""Monitor"", ""Charger""]",905.54,{},13229,1,Europe +2023-02-08,9906,8216,"[""Laptop"", ""Phone"", ""Tablet""]",2207.48,{},282495,1,Europe +2023-10-24,9907,2151,"[""Laptop"", ""Tablet""]",4712.79,{},268654,0,Asia +2023-10-23,9908,1137,"[""Monitor"", ""Charger"", ""Tablet""]",4705.75,"{""seasonal"": ""18%""}",26439,0,Asia +2024-10-21,9909,3646,"[""Keyboard""]",4511.0,"{"""": ""19%""}",277766,0,Africa +2024-11-14,9910,5351,"[""Wireless Mouse""]",2754.15,{},265121,0,North America +2023-12-13,9911,7810,"[""Monitor""]",2544.28,{},102088,0,Asia +2023-04-08,9912,1450,"[""Laptop"", ""Monitor""]",3203.69,"{"""": ""25%""}",261172,0,North America +2023-06-30,9913,2849,"[""Wireless Mouse"", ""Laptop""]",3858.82,"{""loyalty"": ""18%""}",38785,0,North America +2024-03-15,9914,3577,"[""Monitor"", ""Charger"", ""Headphones""]",492.08,"{""promo"": ""30%""}",142721,1,Europe +2024-01-02,9915,5735,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2326.56,"{"""": ""19%""}",39534,1,Europe +2024-11-12,9916,7534,"[""Headphones""]",3040.0,{},232838,1,South America +2023-11-03,9917,2003,"[""Keyboard"", ""Tablet""]",2823.19,"{""seasonal"": ""15%""}",288577,1,North America +2024-02-03,9918,3845,"[""Charger"", ""Laptop"", ""Phone""]",1045.66,{},271501,1,South America +2024-06-22,9919,7590,"[""Laptop""]",4774.87,{},69046,1,South America +2023-07-27,9920,744,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2304.29,"{""promo"": ""5%""}",241355,1,South America +2023-02-28,9921,6324,"[""Laptop"", ""Tablet""]",3024.14,{},44319,1,Europe +2023-04-25,9922,8096,"[""Charger""]",4253.39,"{""promo"": ""17%""}",273352,0,Europe +2023-08-28,9923,6193,"[""Keyboard"", ""Monitor"", ""Headphones""]",2957.32,"{""loyalty"": ""24%""}",112781,0,South America +2024-02-14,9924,694,"[""Keyboard"", ""Laptop"", ""Tablet""]",343.26,{},126855,0,North America +2024-11-22,9925,9415,"[""Monitor""]",1955.88,"{""seasonal"": ""23%""}",52212,0,Asia +2023-07-20,9926,1183,"[""Headphones"", ""Wireless Mouse""]",2869.8,"{"""": ""12%""}",165789,0,South America +2023-08-07,9927,1107,"[""Keyboard""]",508.92,"{""promo"": ""27%""}",294525,0,Asia +2024-05-27,9928,5470,"[""Keyboard"", ""Headphones"", ""Laptop""]",4740.37,"{"""": ""13%""}",102100,0,Asia +2024-12-07,9929,6839,"[""Tablet"", ""Monitor""]",223.85,"{""promo"": ""16%""}",280077,1,Africa +2023-05-17,9930,7428,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1498.24,{},290894,1,South America +2023-05-29,9931,9178,"[""Monitor""]",2393.26,"{"""": ""27%""}",191740,0,Africa +2024-01-02,9932,1631,"[""Monitor"", ""Charger""]",2219.2,{},238880,1,Asia +2023-03-31,9933,6833,"[""Keyboard"", ""Laptop"", ""Headphones""]",3863.38,"{""loyalty"": ""19%""}",126258,0,Europe +2024-01-08,9934,9690,"[""Phone"", ""Monitor"", ""Charger""]",2245.96,"{""promo"": ""19%""}",22451,1,North America +2023-04-28,9935,2851,"[""Charger"", ""Tablet"", ""Keyboard""]",2796.39,{},208788,1,Europe +2023-09-24,9936,2233,"[""Laptop"", ""Phone"", ""Monitor""]",3895.55,"{"""": ""16%""}",212357,1,North America +2023-12-31,9937,2367,"[""Tablet"", ""Keyboard""]",3709.28,"{"""": ""15%""}",284503,1,Asia +2023-03-23,9938,4471,"[""Phone""]",667.22,{},119617,0,South America +2024-04-26,9939,7449,"[""Charger"", ""Phone"", ""Headphones""]",4587.66,{},237812,0,Asia +2023-10-02,9940,2676,"[""Phone""]",2392.77,{},246897,1,Africa +2024-06-07,9941,1476,"[""Monitor"", ""Charger"", ""Keyboard""]",3615.92,{},280726,1,North America +2024-12-03,9942,8550,"[""Tablet""]",4473.15,{},119176,1,South America +2023-07-08,9943,8815,"[""Wireless Mouse"", ""Monitor""]",1153.97,{},184009,1,Asia +2024-06-28,9944,8684,"[""Charger"", ""Headphones""]",3158.31,"{"""": ""16%""}",257922,1,South America +2024-01-17,9945,814,"[""Keyboard""]",2555.43,{},97625,0,South America +2024-05-02,9946,6417,"[""Keyboard"", ""Laptop""]",788.58,"{""promo"": ""21%""}",9673,1,Asia +2024-01-03,9947,4269,"[""Headphones""]",1004.33,"{"""": ""28%""}",89510,0,Europe +2024-09-06,9948,8724,"[""Charger""]",2962.67,{},12300,1,Asia +2024-05-06,9949,28,"[""Keyboard"", ""Tablet"", ""Monitor""]",2958.92,"{""promo"": ""15%""}",260348,0,Asia +2023-09-02,9950,5950,"[""Phone"", ""Charger""]",4561.04,"{"""": ""27%""}",114567,0,Asia +2023-03-01,9951,2729,"[""Charger"", ""Headphones"", ""Tablet""]",2587.42,{},125651,1,Europe +2024-06-24,9952,7481,"[""Wireless Mouse"", ""Charger""]",1465.15,"{""seasonal"": ""22%""}",299793,0,North America +2023-04-17,9953,2931,"[""Tablet"", ""Monitor"", ""Headphones""]",2454.49,"{""loyalty"": ""6%""}",189220,1,South America +2024-10-10,9954,8804,"[""Headphones"", ""Charger""]",4592.61,"{""seasonal"": ""5%""}",106710,0,Asia +2023-05-08,9955,2447,"[""Laptop""]",2101.75,"{""seasonal"": ""6%""}",18928,0,Africa +2023-07-15,9956,8338,"[""Monitor"", ""Laptop"", ""Phone""]",1453.08,"{""seasonal"": ""27%""}",224106,0,South America +2024-05-22,9957,3994,"[""Monitor""]",4367.25,"{""seasonal"": ""20%""}",54182,0,North America +2024-09-05,9958,9072,"[""Tablet"", ""Laptop""]",2070.86,"{""loyalty"": ""25%""}",280086,1,North America +2024-01-13,9959,9106,"[""Headphones""]",4155.68,{},243449,1,Europe +2023-03-24,9960,4098,"[""Laptop"", ""Phone""]",3110.4,{},38549,0,North America +2023-04-07,9961,9934,"[""Monitor""]",582.47,{},139339,0,Asia +2024-10-14,9962,4691,"[""Tablet"", ""Monitor"", ""Charger""]",1277.8,"{""promo"": ""9%""}",63573,1,North America +2023-11-08,9963,1802,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3746.34,"{""promo"": ""19%""}",236658,0,Europe +2024-12-10,9964,7096,"[""Wireless Mouse"", ""Monitor""]",590.25,"{"""": ""14%""}",168270,1,North America +2023-02-04,9965,9834,"[""Laptop"", ""Charger""]",768.07,{},57049,1,Europe +2024-03-09,9966,2580,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2664.42,{},192241,1,Africa +2024-09-21,9967,4288,"[""Tablet"", ""Monitor""]",159.96,"{""loyalty"": ""28%""}",81084,1,Europe +2024-11-29,9968,8889,"[""Headphones""]",1650.54,"{""seasonal"": ""24%""}",167956,1,North America +2023-09-28,9969,8515,"[""Wireless Mouse"", ""Monitor""]",2541.34,{},168331,1,Asia +2024-09-28,9970,9672,"[""Charger"", ""Tablet""]",2680.19,{},229093,1,North America +2023-10-15,9971,6755,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2877.27,"{""loyalty"": ""23%""}",24265,0,South America +2024-07-03,9972,5418,"[""Monitor""]",2661.72,"{""loyalty"": ""9%""}",184347,0,North America +2023-06-09,9973,1756,"[""Wireless Mouse""]",2417.45,"{""loyalty"": ""9%""}",198942,0,North America +2024-03-03,9974,2825,"[""Keyboard"", ""Charger""]",729.77,{},42523,0,Africa +2024-10-27,9975,9473,"[""Tablet""]",3150.33,{},194487,0,Europe +2023-03-09,9976,2293,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4212.8,"{"""": ""15%""}",148549,0,Europe +2023-11-21,9977,5308,"[""Phone"", ""Tablet""]",245.23,{},226752,0,Europe +2023-08-03,9978,8137,"[""Monitor""]",1463.23,{},129101,0,Europe +2023-09-23,9979,1510,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2320.04,"{""loyalty"": ""24%""}",47883,1,North America +2023-10-12,9980,4217,"[""Charger""]",1522.59,{},179742,1,Asia +2024-02-28,9981,2569,"[""Headphones"", ""Monitor""]",251.29,"{""seasonal"": ""10%""}",279989,1,South America +2024-05-04,9982,6293,"[""Charger"", ""Headphones""]",4864.35,"{""promo"": ""22%""}",51657,0,Europe +2023-06-21,9983,6862,"[""Tablet"", ""Phone"", ""Monitor""]",4955.46,{},126384,1,Asia +2024-03-03,9984,4568,"[""Monitor""]",4597.2,{},203223,0,South America +2023-09-18,9985,9360,"[""Monitor""]",3716.26,"{""loyalty"": ""24%""}",70223,1,North America +2024-04-25,9986,3946,"[""Keyboard"", ""Phone"", ""Headphones""]",3764.18,"{""promo"": ""19%""}",24074,0,Europe +2023-11-17,9987,2043,"[""Charger"", ""Phone"", ""Keyboard""]",1742.62,{},163081,0,Asia +2023-08-18,9988,8574,"[""Wireless Mouse"", ""Monitor""]",2605.7,"{""seasonal"": ""23%""}",223893,0,Africa +2024-06-11,9989,8974,"[""Headphones""]",950.27,{},87794,0,South America +2024-12-30,9990,5114,"[""Headphones"", ""Phone"", ""Laptop""]",4033.79,"{""loyalty"": ""14%""}",135379,0,Asia +2024-02-04,9991,8870,"[""Keyboard"", ""Monitor""]",968.7,"{""seasonal"": ""14%""}",87321,0,Africa +2024-09-22,9992,880,"[""Headphones""]",605.0,{},27772,1,Europe +2023-02-18,9993,1289,"[""Phone"", ""Wireless Mouse""]",751.87,{},107205,1,Africa +2024-09-10,9994,9898,"[""Charger"", ""Laptop""]",3104.45,{},96739,1,Europe +2024-03-18,9995,8026,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3627.37,"{""loyalty"": ""19%""}",183030,1,North America +2024-04-13,9996,9339,"[""Monitor""]",3255.45,"{""loyalty"": ""19%""}",79685,0,South America +2024-12-03,9997,1328,"[""Tablet""]",308.23,{},246922,1,Africa +2024-01-24,9998,405,"[""Tablet"", ""Laptop""]",3673.05,{},195296,0,South America +2024-07-09,9999,6857,"[""Tablet""]",3481.15,{},260791,0,Asia +2023-07-23,10000,4129,"[""Phone"", ""Wireless Mouse""]",649.23,"{"""": ""22%""}",186514,1,Africa +2024-12-12,10001,3282,"[""Charger"", ""Keyboard"", ""Monitor""]",82.23,{},38917,1,Africa +2023-07-25,10002,2358,"[""Monitor""]",1925.72,"{""promo"": ""13%""}",291343,1,Asia +2023-04-14,10003,5150,"[""Wireless Mouse""]",4789.89,"{""loyalty"": ""23%""}",213019,0,Asia +2024-04-09,10004,1176,"[""Phone"", ""Tablet""]",1536.13,"{""promo"": ""26%""}",28664,0,Europe +2023-07-09,10005,2248,"[""Monitor""]",3460.1,{},165910,0,Europe +2023-09-15,10006,2397,"[""Charger"", ""Tablet""]",3488.41,{},264698,0,South America +2024-11-16,10007,5582,"[""Laptop""]",2148.78,"{""loyalty"": ""23%""}",172500,1,Asia +2023-04-12,10008,9079,"[""Keyboard""]",4479.97,{},93416,1,Asia +2024-03-19,10009,3232,"[""Headphones""]",4847.71,{},261978,1,Asia +2024-10-28,10010,8657,"[""Monitor"", ""Charger"", ""Laptop""]",3414.16,"{""loyalty"": ""28%""}",21153,0,South America +2024-03-15,10011,8404,"[""Laptop"", ""Monitor"", ""Tablet""]",310.97,{},5184,0,Europe +2023-11-01,10012,5048,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3648.08,{},124701,0,South America +2024-06-20,10013,5793,"[""Headphones""]",4444.57,{},182250,0,Europe +2023-09-30,10014,431,"[""Monitor""]",4974.41,{},45332,0,Europe +2023-02-07,10015,4358,"[""Laptop"", ""Charger""]",4000.33,{},281683,0,South America +2023-10-19,10016,441,"[""Wireless Mouse""]",4645.45,{},76663,1,North America +2024-08-27,10017,384,"[""Phone"", ""Wireless Mouse""]",2635.46,{},3223,1,South America +2023-11-22,10018,477,"[""Tablet"", ""Charger""]",3123.51,{},12329,0,Africa +2024-01-09,10019,7514,"[""Wireless Mouse""]",732.19,{},8379,0,Europe +2023-11-04,10020,8592,"[""Monitor"", ""Headphones""]",4873.18,"{""seasonal"": ""5%""}",249817,1,Africa +2023-12-27,10021,6861,"[""Phone"", ""Tablet""]",157.36,"{"""": ""15%""}",85896,0,South America +2023-10-11,10022,4779,"[""Monitor""]",2297.32,"{""loyalty"": ""23%""}",72649,0,Asia +2023-03-05,10023,590,"[""Monitor"", ""Headphones""]",2769.65,"{"""": ""7%""}",164122,1,Africa +2023-07-26,10024,3829,"[""Tablet""]",3141.12,"{""seasonal"": ""26%""}",268586,1,Asia +2024-06-22,10025,504,"[""Phone""]",2397.71,{},68647,0,Africa +2024-03-12,10026,2022,"[""Keyboard""]",4480.25,{},130248,0,Asia +2023-07-27,10027,463,"[""Phone""]",1658.43,"{"""": ""25%""}",165751,1,Africa +2024-03-21,10028,5484,"[""Wireless Mouse"", ""Headphones""]",99.02,"{""loyalty"": ""10%""}",229498,1,Africa +2023-08-26,10029,7637,"[""Phone""]",401.92,"{""loyalty"": ""30%""}",273081,0,Africa +2023-08-10,10030,2923,"[""Tablet"", ""Phone""]",4630.17,"{"""": ""18%""}",214143,1,Asia +2023-10-12,10031,1164,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2561.98,{},180004,0,Africa +2023-12-17,10032,5290,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4191.43,"{"""": ""12%""}",222569,0,Africa +2023-10-24,10033,8757,"[""Keyboard""]",900.5,{},265173,1,South America +2024-05-21,10034,9936,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",211.08,{},60472,1,North America +2023-07-23,10035,9778,"[""Charger"", ""Monitor"", ""Tablet""]",2986.59,{},270806,0,North America +2024-07-20,10036,346,"[""Laptop"", ""Keyboard"", ""Monitor""]",60.89,{},56364,1,South America +2024-10-25,10037,6906,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3774.38,{},147847,1,Asia +2024-10-05,10038,1889,"[""Phone"", ""Laptop""]",3397.17,"{"""": ""9%""}",77780,1,Asia +2024-12-25,10039,5320,"[""Monitor""]",2089.41,{},124650,1,Asia +2023-09-27,10040,2888,"[""Wireless Mouse""]",507.14,"{""seasonal"": ""24%""}",223451,1,Europe +2024-07-17,10041,4236,"[""Laptop""]",2324.78,{},57455,1,Africa +2023-08-30,10042,3955,"[""Laptop"", ""Monitor"", ""Headphones""]",4253.87,"{""loyalty"": ""29%""}",104145,1,North America +2023-12-22,10043,1039,"[""Monitor""]",826.21,"{""loyalty"": ""27%""}",50427,0,Africa +2024-06-11,10044,3863,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2021.02,"{"""": ""10%""}",231453,0,Europe +2023-02-11,10045,4210,"[""Keyboard""]",4943.78,"{""seasonal"": ""12%""}",79722,1,North America +2024-03-27,10046,7724,"[""Tablet""]",2412.32,{},127460,1,Africa +2024-02-01,10047,6328,"[""Tablet"", ""Monitor"", ""Keyboard""]",744.91,"{""loyalty"": ""16%""}",30098,1,South America +2024-02-22,10048,5602,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2935.58,"{"""": ""24%""}",277567,0,Asia +2023-10-10,10049,7311,"[""Laptop""]",1529.25,"{""promo"": ""8%""}",122043,1,South America +2024-10-10,10050,6969,"[""Wireless Mouse"", ""Laptop""]",3460.3,"{""seasonal"": ""13%""}",220616,0,Asia +2023-10-08,10051,4081,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2687.45,"{""loyalty"": ""12%""}",141953,0,North America +2023-07-20,10052,3531,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4661.36,"{"""": ""10%""}",28962,0,Asia +2024-03-26,10053,3426,"[""Headphones"", ""Charger"", ""Laptop""]",3102.69,{},283419,1,South America +2024-01-08,10054,4370,"[""Phone""]",2230.3,"{""seasonal"": ""11%""}",270110,1,Asia +2023-08-16,10055,6044,"[""Wireless Mouse"", ""Laptop""]",1848.46,"{""seasonal"": ""27%""}",65065,0,Europe +2024-05-10,10056,6340,"[""Tablet"", ""Charger"", ""Headphones""]",2207.24,{},287146,0,North America +2024-10-13,10057,3036,"[""Headphones"", ""Laptop""]",273.12,"{""promo"": ""7%""}",297716,1,North America +2023-03-27,10058,6090,"[""Phone"", ""Headphones"", ""Monitor""]",2422.98,{},162533,0,Africa +2024-03-30,10059,3850,"[""Monitor""]",2759.07,"{""seasonal"": ""18%""}",227197,0,Asia +2024-01-05,10060,1628,"[""Headphones""]",269.39,{},279054,0,Africa +2023-11-30,10061,7937,"[""Headphones""]",3497.22,"{""seasonal"": ""30%""}",43326,0,Asia +2023-10-01,10062,7564,"[""Monitor"", ""Headphones""]",2786.74,{},43166,1,Africa +2023-07-07,10063,5722,"[""Wireless Mouse"", ""Laptop""]",2719.24,"{""seasonal"": ""11%""}",88510,1,North America +2023-03-03,10064,7294,"[""Laptop""]",4340.98,"{"""": ""13%""}",106865,0,South America +2024-08-12,10065,5285,"[""Tablet""]",3438.94,{},71222,0,Europe +2023-08-10,10066,9519,"[""Phone""]",2206.06,"{""promo"": ""11%""}",185545,1,North America +2023-07-16,10067,7739,"[""Monitor"", ""Tablet""]",1107.29,"{"""": ""18%""}",242408,1,Africa +2024-06-29,10068,4596,"[""Charger"", ""Keyboard"", ""Tablet""]",3965.02,"{""loyalty"": ""13%""}",5419,0,Europe +2024-11-22,10069,5969,"[""Wireless Mouse""]",212.14,"{"""": ""16%""}",39510,1,Europe +2023-01-25,10070,9842,"[""Phone"", ""Tablet"", ""Monitor""]",3303.11,"{""seasonal"": ""25%""}",4290,0,Asia +2023-06-10,10071,1756,"[""Monitor"", ""Tablet"", ""Laptop""]",3937.55,{},100865,1,Europe +2024-09-14,10072,7288,"[""Phone"", ""Monitor""]",4681.66,{},275863,0,Asia +2023-04-04,10073,2254,"[""Tablet"", ""Headphones""]",1935.41,{},297932,1,South America +2023-05-11,10074,2658,"[""Headphones"", ""Laptop"", ""Phone""]",437.49,"{""promo"": ""7%""}",44629,0,South America +2024-05-28,10075,9981,"[""Headphones"", ""Phone""]",2253.92,"{""promo"": ""18%""}",170945,1,North America +2023-08-22,10076,6657,"[""Charger""]",758.5,{},214878,0,Europe +2023-01-26,10077,1004,"[""Keyboard"", ""Headphones""]",2187.34,{},64800,1,Europe +2023-03-12,10078,5650,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2903.37,"{""promo"": ""28%""}",223222,1,North America +2023-05-29,10079,2118,"[""Phone"", ""Laptop"", ""Monitor""]",4910.82,{},209062,0,South America +2024-08-10,10080,9439,"[""Wireless Mouse""]",3706.9,{},162164,1,South America +2023-03-06,10081,3285,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",583.24,{},15260,1,Africa +2023-06-07,10082,7785,"[""Keyboard"", ""Monitor"", ""Charger""]",3242.5,{},153631,1,Asia +2023-04-28,10083,9830,"[""Keyboard""]",1951.68,{},274967,1,North America +2024-08-05,10084,5155,"[""Laptop""]",3075.91,"{"""": ""21%""}",239031,1,Asia +2023-11-05,10085,7992,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3724.93,"{""seasonal"": ""23%""}",161474,1,Africa +2024-01-26,10086,4112,"[""Keyboard""]",3900.61,"{""seasonal"": ""29%""}",105531,1,South America +2024-11-25,10087,3569,"[""Charger"", ""Wireless Mouse""]",3163.18,"{""loyalty"": ""7%""}",234365,1,North America +2023-06-18,10088,1352,"[""Monitor"", ""Laptop"", ""Keyboard""]",1598.53,{},101508,0,Europe +2023-11-08,10089,8953,"[""Charger""]",1154.08,"{""loyalty"": ""11%""}",48419,1,North America +2024-04-14,10090,3857,"[""Laptop"", ""Keyboard""]",485.99,"{""loyalty"": ""6%""}",120410,0,North America +2024-06-27,10091,6253,"[""Charger""]",1405.23,"{""promo"": ""8%""}",66369,1,Asia +2024-06-09,10092,9741,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1513.88,"{""loyalty"": ""11%""}",177605,1,Africa +2024-08-27,10093,942,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3508.85,"{""promo"": ""26%""}",154722,0,South America +2023-04-12,10094,3193,"[""Charger"", ""Laptop""]",3896.44,"{""seasonal"": ""10%""}",278254,1,South America +2024-10-03,10095,943,"[""Headphones""]",416.66,"{"""": ""5%""}",79821,0,North America +2024-12-01,10096,5907,"[""Keyboard"", ""Laptop"", ""Phone""]",4480.3,{},102662,0,Europe +2023-05-17,10097,4431,"[""Wireless Mouse""]",1515.16,"{"""": ""26%""}",135818,1,Europe +2023-03-28,10098,5131,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",275.8,{},271136,1,South America +2024-07-11,10099,1895,"[""Monitor"", ""Wireless Mouse""]",3044.73,"{""promo"": ""25%""}",22848,0,North America +2023-07-07,10100,6247,"[""Monitor"", ""Laptop""]",3825.62,{},227034,1,North America +2024-08-03,10101,9930,"[""Headphones""]",1067.63,"{"""": ""19%""}",36774,0,Africa +2024-05-12,10102,7820,"[""Wireless Mouse""]",874.85,{},202226,1,Asia +2023-06-16,10103,7631,"[""Phone""]",3861.63,"{"""": ""17%""}",261870,1,Europe +2024-12-06,10104,6886,"[""Tablet"", ""Keyboard""]",422.53,"{""loyalty"": ""17%""}",29879,0,Asia +2024-05-25,10105,7175,"[""Keyboard"", ""Tablet"", ""Monitor""]",4028.38,"{""seasonal"": ""8%""}",61558,1,Africa +2024-11-29,10106,4881,"[""Monitor""]",3632.53,{},64672,0,Asia +2024-05-27,10107,987,"[""Charger"", ""Tablet""]",3397.97,"{"""": ""14%""}",97936,0,Africa +2023-07-25,10108,6382,"[""Phone"", ""Keyboard"", ""Tablet""]",4740.39,"{""promo"": ""23%""}",190926,0,North America +2024-04-02,10109,262,"[""Laptop"", ""Charger""]",4934.63,"{""promo"": ""26%""}",276099,1,Africa +2024-11-20,10110,4775,"[""Phone"", ""Charger"", ""Keyboard""]",1754.14,{},29005,1,Europe +2024-03-12,10111,7955,"[""Tablet"", ""Headphones""]",3739.2,{},195774,0,South America +2023-06-23,10112,7177,"[""Laptop""]",3142.37,{},51674,1,Europe +2024-11-16,10113,937,"[""Phone""]",4126.06,"{""promo"": ""5%""}",208488,0,South America +2023-10-22,10114,4324,"[""Charger"", ""Laptop""]",4656.09,{},220913,0,Asia +2024-04-08,10115,3138,"[""Phone"", ""Monitor""]",2346.7,{},201034,0,Europe +2023-05-11,10116,4955,"[""Laptop""]",3153.37,"{""seasonal"": ""14%""}",71042,1,South America +2024-09-09,10117,3201,"[""Wireless Mouse"", ""Laptop""]",1498.61,{},32907,0,Europe +2024-06-05,10118,3405,"[""Monitor"", ""Laptop"", ""Phone""]",539.66,"{""promo"": ""27%""}",207237,1,South America +2024-03-18,10119,2894,"[""Keyboard"", ""Laptop"", ""Tablet""]",1952.22,"{""loyalty"": ""28%""}",8403,1,South America +2024-06-22,10120,973,"[""Laptop"", ""Headphones"", ""Monitor""]",3361.27,"{""loyalty"": ""30%""}",155354,0,North America +2023-01-18,10121,6626,"[""Headphones""]",4418.64,{},163789,0,Europe +2023-11-25,10122,9360,"[""Keyboard"", ""Laptop""]",4701.46,{},203468,0,Africa +2023-07-02,10123,1940,"[""Charger""]",2654.22,{},242557,1,South America +2024-03-07,10124,1426,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",473.77,{},31224,1,Europe +2023-12-01,10125,7485,"[""Phone"", ""Tablet"", ""Headphones""]",3685.04,{},274774,0,North America +2023-08-10,10126,7758,"[""Monitor"", ""Headphones"", ""Keyboard""]",831.22,{},78650,0,Asia +2024-09-05,10127,7503,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2187.34,"{"""": ""14%""}",161275,0,Europe +2024-06-16,10128,4213,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3658.57,{},120977,0,Europe +2023-02-10,10129,8782,"[""Keyboard"", ""Charger"", ""Headphones""]",1593.74,"{""seasonal"": ""20%""}",65554,0,Asia +2023-04-11,10130,9789,"[""Headphones"", ""Phone"", ""Tablet""]",4538.49,"{""loyalty"": ""9%""}",208145,1,Asia +2023-07-09,10131,464,"[""Wireless Mouse""]",1009.28,{},106229,0,Europe +2023-06-16,10132,8501,"[""Tablet"", ""Monitor"", ""Keyboard""]",1587.99,"{""seasonal"": ""11%""}",198928,1,South America +2023-12-29,10133,5349,"[""Laptop"", ""Tablet""]",4190.08,"{""loyalty"": ""15%""}",185856,1,South America +2023-01-12,10134,5820,"[""Keyboard""]",4045.58,"{"""": ""27%""}",38949,1,Asia +2023-12-15,10135,4189,"[""Charger"", ""Phone""]",4737.08,{},155590,1,South America +2023-12-13,10136,4922,"[""Headphones"", ""Tablet""]",4762.69,{},291286,0,Africa +2023-12-12,10137,6104,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3157.05,{},39403,1,South America +2024-01-04,10138,9867,"[""Tablet"", ""Keyboard"", ""Charger""]",4202.26,"{""seasonal"": ""28%""}",199455,0,Asia +2023-12-10,10139,9711,"[""Tablet""]",1935.31,"{""loyalty"": ""10%""}",145553,0,Asia +2024-02-04,10140,3642,"[""Wireless Mouse"", ""Charger""]",849.93,"{""promo"": ""13%""}",116296,1,Africa +2024-03-08,10141,7562,"[""Headphones"", ""Charger""]",4450.03,"{""seasonal"": ""23%""}",234407,1,Africa +2024-09-10,10142,7760,"[""Charger"", ""Monitor"", ""Laptop""]",2758.76,{},120058,1,South America +2023-08-22,10143,9112,"[""Charger"", ""Tablet""]",1250.1,"{"""": ""22%""}",207581,1,South America +2023-11-26,10144,2244,"[""Wireless Mouse"", ""Phone""]",4217.48,{},283697,0,Africa +2023-08-20,10145,9958,"[""Phone"", ""Headphones""]",272.49,"{""loyalty"": ""19%""}",73385,0,Europe +2024-08-24,10146,3779,"[""Laptop""]",287.99,{},262884,0,North America +2023-10-09,10147,4378,"[""Wireless Mouse""]",4850.05,"{""seasonal"": ""7%""}",42836,0,Africa +2024-06-17,10148,6492,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1868.43,"{""seasonal"": ""27%""}",279951,0,Asia +2023-08-10,10149,2590,"[""Monitor"", ""Headphones""]",4565.58,"{""seasonal"": ""5%""}",134876,0,Europe +2023-05-13,10150,7840,"[""Laptop""]",2266.63,{},24371,0,North America +2024-07-31,10151,6317,"[""Tablet"", ""Keyboard"", ""Phone""]",256.97,{},178721,1,Africa +2023-04-29,10152,4117,"[""Headphones""]",1021.83,"{"""": ""28%""}",110332,0,North America +2023-07-23,10153,787,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4504.08,"{""loyalty"": ""12%""}",250096,1,South America +2023-06-16,10154,3344,"[""Monitor""]",3589.46,{},145317,1,Europe +2023-07-24,10155,7913,"[""Charger""]",1029.46,{},159441,0,South America +2024-12-30,10156,6822,"[""Monitor"", ""Phone"", ""Laptop""]",3444.59,"{""seasonal"": ""15%""}",69730,1,South America +2023-12-29,10157,8908,"[""Wireless Mouse""]",4289.48,"{"""": ""11%""}",263188,1,Asia +2023-09-02,10158,5118,"[""Keyboard"", ""Charger""]",1378.38,"{"""": ""21%""}",54801,0,Europe +2024-05-03,10159,5786,"[""Headphones"", ""Phone""]",4728.53,{},234013,0,South America +2023-04-12,10160,3734,"[""Keyboard"", ""Phone"", ""Headphones""]",75.26,"{""seasonal"": ""29%""}",22920,1,Europe +2024-10-14,10161,7263,"[""Headphones""]",4749.86,"{""loyalty"": ""5%""}",225798,0,North America +2023-04-27,10162,1780,"[""Monitor"", ""Tablet"", ""Phone""]",2379.52,"{""seasonal"": ""19%""}",127898,1,Asia +2024-02-23,10163,495,"[""Keyboard"", ""Tablet"", ""Monitor""]",4329.53,{},107326,1,Europe +2023-08-23,10164,1506,"[""Headphones""]",282.88,"{""seasonal"": ""14%""}",147843,0,North America +2024-09-04,10165,9757,"[""Tablet"", ""Monitor"", ""Charger""]",2525.56,{},53505,1,North America +2024-05-27,10166,8064,"[""Wireless Mouse"", ""Laptop""]",2761.44,"{"""": ""14%""}",212583,0,Asia +2024-11-11,10167,5302,"[""Headphones"", ""Keyboard"", ""Monitor""]",498.67,{},156967,0,Africa +2023-01-15,10168,4663,"[""Laptop""]",313.59,{},95047,1,Europe +2023-08-03,10169,6340,"[""Monitor""]",2671.24,{},202967,1,Africa +2024-08-31,10170,1849,"[""Tablet"", ""Headphones""]",670.59,"{"""": ""20%""}",32617,0,South America +2023-02-19,10171,3028,"[""Phone"", ""Headphones"", ""Charger""]",225.14,"{"""": ""8%""}",56204,0,North America +2023-10-26,10172,511,"[""Phone""]",4582.16,"{""promo"": ""15%""}",80422,0,South America +2023-11-26,10173,2345,"[""Laptop"", ""Tablet"", ""Monitor""]",601.04,{},17307,0,Africa +2024-09-28,10174,7573,"[""Monitor""]",1534.94,"{""promo"": ""26%""}",22086,1,Europe +2024-05-26,10175,4583,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2672.71,"{"""": ""8%""}",124868,0,Africa +2024-10-11,10176,5466,"[""Headphones"", ""Charger"", ""Tablet""]",88.04,{},290988,1,Africa +2024-08-22,10177,885,"[""Laptop"", ""Keyboard""]",4724.67,"{""seasonal"": ""23%""}",175979,1,North America +2024-01-10,10178,4091,"[""Tablet"", ""Keyboard"", ""Headphones""]",4950.59,{},196005,1,Asia +2024-10-29,10179,694,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1973.15,"{""promo"": ""16%""}",286511,1,Africa +2023-07-06,10180,2930,"[""Charger"", ""Keyboard"", ""Monitor""]",4286.6,"{""loyalty"": ""14%""}",50764,0,Asia +2024-09-07,10181,3375,"[""Monitor"", ""Laptop""]",2029.02,"{""promo"": ""18%""}",53064,0,Africa +2024-06-17,10182,2834,"[""Headphones"", ""Keyboard""]",1938.3,"{""loyalty"": ""7%""}",297206,1,North America +2024-07-19,10183,3805,"[""Charger"", ""Phone""]",1517.68,{},213887,1,Africa +2024-06-30,10184,7564,"[""Monitor""]",812.52,{},211636,0,Africa +2024-05-01,10185,6465,"[""Charger""]",338.11,{},271631,0,Africa +2023-04-12,10186,405,"[""Wireless Mouse""]",2419.81,"{""promo"": ""20%""}",192536,1,Asia +2023-05-08,10187,7170,"[""Phone""]",998.54,"{""promo"": ""5%""}",263814,0,Asia +2023-11-02,10188,4288,"[""Tablet""]",2952.98,{},183383,1,South America +2023-09-02,10189,9628,"[""Headphones"", ""Tablet"", ""Charger""]",4331.14,"{"""": ""27%""}",115660,1,Asia +2024-06-13,10190,9435,"[""Headphones"", ""Monitor""]",3019.56,{},32473,0,Africa +2024-03-10,10191,3693,"[""Headphones""]",2235.45,{},215425,0,Europe +2023-06-20,10192,6037,"[""Laptop""]",4536.99,"{""seasonal"": ""25%""}",259620,1,South America +2024-09-28,10193,4864,"[""Wireless Mouse"", ""Tablet""]",3024.33,"{"""": ""17%""}",64968,0,South America +2024-07-10,10194,6227,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3984.15,{},64232,0,Europe +2023-08-09,10195,8514,"[""Charger""]",4642.96,{},3228,0,Africa +2023-02-28,10196,4240,"[""Wireless Mouse""]",3321.28,{},42834,0,Africa +2023-03-23,10197,2565,"[""Charger""]",1156.37,"{"""": ""15%""}",215233,0,Europe +2023-08-12,10198,661,"[""Keyboard"", ""Monitor"", ""Headphones""]",4644.38,"{""loyalty"": ""19%""}",159598,0,North America +2024-05-03,10199,9168,"[""Tablet"", ""Monitor"", ""Charger""]",4347.07,{},64089,0,Asia +2023-11-18,10200,5593,"[""Wireless Mouse"", ""Tablet""]",820.33,"{""seasonal"": ""24%""}",86432,0,South America +2023-06-23,10201,9414,"[""Charger""]",3325.85,"{""promo"": ""15%""}",110922,1,South America +2023-01-27,10202,9064,"[""Tablet"", ""Monitor""]",3303.68,{},264336,0,Africa +2024-06-01,10203,21,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",709.14,{},52610,0,North America +2024-04-24,10204,1854,"[""Headphones"", ""Monitor"", ""Phone""]",2176.06,"{""seasonal"": ""27%""}",172124,0,South America +2024-05-27,10205,7098,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3265.63,"{""loyalty"": ""5%""}",222461,1,Asia +2024-08-27,10206,8426,"[""Headphones""]",2357.82,"{""loyalty"": ""25%""}",58929,0,South America +2023-08-02,10207,4170,"[""Tablet"", ""Laptop""]",1218.48,{},268724,1,North America +2023-03-22,10208,8734,"[""Keyboard"", ""Monitor""]",137.39,"{""loyalty"": ""18%""}",146793,1,North America +2024-05-10,10209,9198,"[""Monitor""]",3823.16,{},219146,1,Europe +2024-06-18,10210,5069,"[""Keyboard"", ""Monitor""]",3598.8,"{""promo"": ""30%""}",222162,0,South America +2023-06-15,10211,7048,"[""Headphones"", ""Tablet"", ""Keyboard""]",364.14,{},40741,0,Africa +2024-04-06,10212,1468,"[""Monitor""]",589.71,"{""loyalty"": ""19%""}",244553,0,Asia +2023-08-11,10213,4159,"[""Charger"", ""Wireless Mouse""]",3958.41,{},273012,0,Africa +2023-08-28,10214,3227,"[""Keyboard"", ""Headphones""]",879.23,"{""promo"": ""29%""}",210380,1,Europe +2023-08-24,10215,2512,"[""Monitor""]",3107.29,{},256193,1,Europe +2023-03-26,10216,2302,"[""Headphones"", ""Laptop"", ""Monitor""]",2164.18,"{""loyalty"": ""11%""}",190338,1,Asia +2023-02-07,10217,6700,"[""Headphones"", ""Monitor""]",1083.41,"{""promo"": ""18%""}",98211,1,Africa +2024-05-19,10218,1796,"[""Phone"", ""Tablet""]",2954.98,"{""promo"": ""18%""}",112892,1,Africa +2023-09-18,10219,8883,"[""Tablet"", ""Phone"", ""Charger""]",2400.97,"{""seasonal"": ""27%""}",159015,1,Europe +2023-03-20,10220,1483,"[""Monitor""]",973.07,"{""promo"": ""6%""}",230073,1,Asia +2023-12-16,10221,320,"[""Laptop""]",2874.42,"{""loyalty"": ""12%""}",229265,1,North America +2024-01-06,10222,2840,"[""Tablet"", ""Charger""]",4600.09,{},199462,0,Asia +2023-08-10,10223,5945,"[""Laptop"", ""Phone"", ""Tablet""]",3004.38,{},92196,1,Africa +2023-07-07,10224,8096,"[""Wireless Mouse""]",759.2,"{""seasonal"": ""28%""}",75757,1,Europe +2023-06-05,10225,8187,"[""Charger""]",3639.41,{},113680,1,North America +2024-12-02,10226,1564,"[""Keyboard""]",3513.06,"{""loyalty"": ""8%""}",153128,1,Asia +2023-12-21,10227,6670,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",451.64,"{"""": ""6%""}",65625,1,Europe +2023-12-29,10228,6000,"[""Monitor""]",4561.62,{},4157,1,Europe +2023-10-28,10229,5580,"[""Monitor""]",2107.8,"{""seasonal"": ""23%""}",50131,1,Asia +2024-11-21,10230,11,"[""Laptop"", ""Tablet"", ""Charger""]",4246.24,{},90979,1,Asia +2023-12-28,10231,5929,"[""Charger"", ""Phone"", ""Keyboard""]",2082.11,{},19991,1,Europe +2023-10-07,10232,4999,"[""Wireless Mouse"", ""Monitor""]",1016.46,"{"""": ""29%""}",153049,1,South America +2024-05-17,10233,3798,"[""Laptop"", ""Wireless Mouse""]",761.25,"{""seasonal"": ""25%""}",152702,0,North America +2024-03-19,10234,3247,"[""Monitor"", ""Keyboard""]",1785.97,{},188299,1,Africa +2024-10-08,10235,8957,"[""Laptop""]",1865.27,{},63712,0,Africa +2023-12-13,10236,4147,"[""Keyboard""]",2995.28,"{""seasonal"": ""28%""}",201054,1,Europe +2023-08-23,10237,456,"[""Tablet""]",3143.99,{},27117,0,Europe +2024-04-13,10238,6452,"[""Phone"", ""Keyboard""]",2306.81,"{""seasonal"": ""23%""}",67012,1,Asia +2024-07-22,10239,4210,"[""Headphones""]",2202.87,{},266790,1,North America +2024-07-30,10240,6999,"[""Keyboard"", ""Monitor"", ""Laptop""]",3172.32,{},42531,1,Europe +2024-09-07,10241,6910,"[""Wireless Mouse"", ""Charger""]",138.74,"{"""": ""27%""}",208675,1,Asia +2024-04-16,10242,4661,"[""Laptop"", ""Monitor""]",2965.16,{},22685,0,Asia +2023-04-14,10243,5692,"[""Tablet"", ""Charger"", ""Phone""]",3904.41,"{""seasonal"": ""17%""}",164835,1,Asia +2024-05-03,10244,8191,"[""Monitor"", ""Charger"", ""Laptop""]",594.72,"{""loyalty"": ""26%""}",15590,1,North America +2023-06-04,10245,1782,"[""Phone""]",2271.59,"{""loyalty"": ""13%""}",249269,1,South America +2023-11-18,10246,3989,"[""Charger"", ""Monitor""]",3337.47,"{""promo"": ""27%""}",72473,1,North America +2023-04-27,10247,8652,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4870.73,{},131122,1,South America +2023-03-27,10248,7866,"[""Laptop""]",3638.11,{},187831,0,North America +2023-01-28,10249,1846,"[""Headphones"", ""Keyboard"", ""Monitor""]",4286.74,"{""promo"": ""25%""}",105903,0,South America +2024-05-15,10250,8120,"[""Charger"", ""Headphones"", ""Phone""]",2597.45,"{""promo"": ""17%""}",46915,0,North America +2023-05-22,10251,2318,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4626.62,{},280500,1,Europe +2024-05-06,10252,9024,"[""Headphones""]",1286.91,"{""loyalty"": ""30%""}",123903,1,Africa +2023-03-28,10253,5883,"[""Wireless Mouse"", ""Charger""]",254.51,{},97585,1,South America +2023-09-28,10254,2940,"[""Charger"", ""Wireless Mouse""]",1516.04,"{"""": ""11%""}",155278,1,North America +2023-01-14,10255,8376,"[""Tablet""]",1305.85,"{""loyalty"": ""25%""}",80575,1,Africa +2023-02-11,10256,5347,"[""Phone"", ""Keyboard"", ""Tablet""]",2759.05,"{""seasonal"": ""11%""}",298873,1,Europe +2023-02-05,10257,5695,"[""Charger""]",186.67,{},136999,1,South America +2023-10-27,10258,6190,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",934.85,{},150349,1,South America +2024-11-07,10259,1941,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1482.58,"{""promo"": ""18%""}",216685,1,Africa +2023-06-14,10260,6033,"[""Charger"", ""Laptop"", ""Headphones""]",4097.38,"{"""": ""7%""}",34999,1,Asia +2024-06-05,10261,9980,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1102.13,{},62684,1,South America +2023-05-16,10262,5794,"[""Tablet"", ""Charger""]",531.16,{},229734,1,South America +2024-09-13,10263,1520,"[""Wireless Mouse"", ""Headphones""]",248.9,{},159143,0,South America +2023-02-06,10264,4958,"[""Monitor""]",4425.41,{},174142,1,Africa +2023-03-02,10265,7807,"[""Charger"", ""Headphones""]",946.28,{},210478,1,Africa +2024-06-10,10266,2646,"[""Monitor""]",4534.47,"{""loyalty"": ""30%""}",142802,0,South America +2024-06-24,10267,4826,"[""Monitor"", ""Keyboard"", ""Headphones""]",1700.14,{},278687,1,Europe +2023-07-04,10268,839,"[""Monitor"", ""Tablet""]",4682.63,"{""seasonal"": ""19%""}",140397,1,Europe +2023-02-07,10269,3489,"[""Wireless Mouse""]",1619.93,{},174811,1,North America +2024-08-22,10270,9286,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2203.24,"{""promo"": ""14%""}",150235,0,Africa +2023-12-13,10271,4613,"[""Keyboard""]",4877.02,"{""loyalty"": ""28%""}",80393,0,Asia +2024-12-17,10272,1382,"[""Phone""]",1567.35,"{""loyalty"": ""25%""}",85772,1,Africa +2023-07-10,10273,214,"[""Charger"", ""Monitor""]",359.74,"{""promo"": ""18%""}",14336,0,North America +2023-07-30,10274,6118,"[""Charger""]",3247.33,"{"""": ""23%""}",175894,1,South America +2024-08-03,10275,4827,"[""Headphones"", ""Monitor"", ""Phone""]",4976.73,"{""loyalty"": ""14%""}",167550,0,Africa +2024-03-24,10276,9662,"[""Charger""]",428.88,"{"""": ""6%""}",268947,0,Asia +2024-01-16,10277,6254,"[""Keyboard""]",3812.84,"{""promo"": ""7%""}",47152,0,Africa +2024-02-18,10278,7694,"[""Wireless Mouse"", ""Laptop""]",1411.4,{},224879,0,North America +2023-09-25,10279,6438,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4198.93,"{""loyalty"": ""22%""}",279102,1,Europe +2024-07-23,10280,4896,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2303.4,{},294982,1,Europe +2023-03-25,10281,4302,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3685.25,{},280045,1,Asia +2024-02-06,10282,8251,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4229.85,{},90130,0,Asia +2024-03-08,10283,1488,"[""Tablet"", ""Phone"", ""Charger""]",3508.51,"{"""": ""5%""}",282869,1,Africa +2024-03-14,10284,6783,"[""Headphones""]",1937.73,"{"""": ""25%""}",64964,1,Europe +2023-01-06,10285,2721,"[""Charger"", ""Wireless Mouse""]",1246.06,{},37941,0,Europe +2024-09-28,10286,4395,"[""Charger"", ""Keyboard"", ""Monitor""]",3024.79,"{""promo"": ""5%""}",136767,1,North America +2024-01-21,10287,9491,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3385.6,"{""promo"": ""23%""}",128029,1,South America +2023-12-17,10288,516,"[""Phone""]",3001.62,{},226833,1,South America +2024-08-16,10289,6682,"[""Keyboard""]",442.28,"{""seasonal"": ""23%""}",236557,1,Africa +2023-11-05,10290,6294,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1220.28,"{""promo"": ""6%""}",67990,1,North America +2024-01-11,10291,7769,"[""Phone"", ""Charger""]",1646.11,"{""promo"": ""18%""}",155337,1,Europe +2023-05-30,10292,7667,"[""Wireless Mouse""]",4366.79,{},170200,0,South America +2023-04-28,10293,7607,"[""Charger"", ""Headphones""]",1455.74,"{""loyalty"": ""12%""}",202965,0,Africa +2024-12-28,10294,4109,"[""Charger"", ""Headphones"", ""Laptop""]",3181.67,"{""loyalty"": ""9%""}",106537,1,Europe +2023-07-17,10295,3193,"[""Monitor"", ""Tablet""]",4549.1,"{""promo"": ""13%""}",167845,0,South America +2023-10-13,10296,4336,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3776.84,{},223725,1,Africa +2024-12-14,10297,4469,"[""Monitor"", ""Keyboard"", ""Laptop""]",2384.05,{},128705,1,North America +2023-03-10,10298,2418,"[""Keyboard"", ""Headphones""]",4116.27,"{""loyalty"": ""14%""}",189690,1,North America +2023-01-26,10299,2292,"[""Charger"", ""Headphones""]",4233.71,"{""promo"": ""12%""}",296214,1,Europe +2024-02-24,10300,3632,"[""Tablet"", ""Charger"", ""Monitor""]",1201.9,{},230882,1,Africa +2023-05-28,10301,8098,"[""Laptop""]",1821.82,{},264669,0,Europe +2023-02-16,10302,6478,"[""Charger"", ""Headphones""]",308.15,"{""seasonal"": ""14%""}",12539,0,Europe +2024-08-08,10303,863,"[""Laptop"", ""Monitor""]",1853.08,{},157000,0,Asia +2023-03-15,10304,5069,"[""Charger""]",1001.73,"{""promo"": ""10%""}",106242,1,Asia +2024-04-07,10305,3514,"[""Headphones"", ""Laptop"", ""Tablet""]",1970.22,{},58829,0,South America +2024-04-17,10306,3751,"[""Wireless Mouse""]",3997.07,"{""promo"": ""16%""}",132088,0,Africa +2024-02-09,10307,6994,"[""Wireless Mouse""]",3847.64,"{""promo"": ""19%""}",63265,0,North America +2023-10-19,10308,7881,"[""Charger"", ""Tablet""]",1476.51,{},117567,0,South America +2023-12-15,10309,3416,"[""Keyboard"", ""Headphones"", ""Tablet""]",3727.71,{},139537,0,Europe +2023-05-28,10310,9918,"[""Charger"", ""Headphones""]",4962.82,"{"""": ""26%""}",219187,0,Africa +2023-11-03,10311,2477,"[""Phone"", ""Keyboard""]",1310.21,{},267690,0,Europe +2024-09-18,10312,6063,"[""Charger""]",4598.3,"{""promo"": ""15%""}",141764,1,South America +2023-06-21,10313,7202,"[""Headphones"", ""Tablet"", ""Keyboard""]",1334.13,"{"""": ""7%""}",171404,0,Africa +2023-06-26,10314,4977,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2160.4,{},65372,1,North America +2024-09-07,10315,8459,"[""Headphones"", ""Charger""]",2378.67,"{"""": ""18%""}",120790,1,South America +2024-01-08,10316,7494,"[""Phone"", ""Wireless Mouse""]",724.5,"{""promo"": ""22%""}",292009,1,Asia +2023-05-17,10317,7536,"[""Keyboard""]",1141.06,"{""loyalty"": ""30%""}",87582,0,Africa +2024-06-02,10318,4167,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",549.26,"{""loyalty"": ""14%""}",89802,1,Europe +2024-04-17,10319,299,"[""Laptop"", ""Phone""]",302.18,"{""promo"": ""21%""}",239924,0,South America +2023-02-16,10320,1382,"[""Tablet"", ""Headphones"", ""Laptop""]",807.1,"{""seasonal"": ""17%""}",186913,0,Asia +2023-02-17,10321,9468,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4364.23,{},203057,1,Asia +2023-06-04,10322,5103,"[""Monitor""]",4299.49,{},243373,0,South America +2024-11-25,10323,2245,"[""Keyboard"", ""Monitor"", ""Charger""]",130.45,"{""seasonal"": ""26%""}",96954,1,South America +2023-07-14,10324,8547,"[""Keyboard"", ""Headphones"", ""Monitor""]",2125.31,{},162127,1,Europe +2023-06-03,10325,2367,"[""Monitor"", ""Keyboard"", ""Headphones""]",1820.93,{},271238,0,Asia +2024-09-28,10326,7173,"[""Headphones""]",1016.54,"{""seasonal"": ""20%""}",91357,0,Europe +2024-07-16,10327,509,"[""Charger"", ""Monitor"", ""Keyboard""]",207.55,{},64424,0,North America +2024-06-25,10328,5948,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3510.19,"{"""": ""5%""}",298355,1,North America +2024-04-12,10329,7876,"[""Keyboard"", ""Headphones"", ""Tablet""]",589.16,{},267400,0,South America +2023-10-13,10330,1161,"[""Laptop"", ""Charger"", ""Monitor""]",3920.48,{},33713,0,Europe +2024-05-30,10331,2474,"[""Laptop"", ""Headphones"", ""Monitor""]",3917.21,"{""seasonal"": ""25%""}",45093,0,Europe +2024-10-03,10332,2867,"[""Wireless Mouse""]",291.07,"{""seasonal"": ""25%""}",60552,0,North America +2023-01-22,10333,7194,"[""Charger"", ""Laptop"", ""Keyboard""]",2244.06,"{"""": ""15%""}",220528,1,Europe +2024-04-27,10334,1504,"[""Charger""]",2283.33,{},184429,0,Asia +2024-08-15,10335,9614,"[""Headphones"", ""Laptop""]",3517.75,"{"""": ""29%""}",184698,1,South America +2023-08-24,10336,1905,"[""Laptop"", ""Headphones""]",3873.31,"{"""": ""18%""}",50339,0,North America +2024-07-25,10337,5266,"[""Tablet""]",3295.94,{},299231,1,South America +2023-03-29,10338,6227,"[""Phone"", ""Monitor""]",3923.82,{},235175,0,Europe +2024-01-02,10339,5691,"[""Tablet""]",3503.3,"{"""": ""23%""}",154385,1,Africa +2023-09-08,10340,8548,"[""Tablet""]",4886.43,"{""seasonal"": ""30%""}",65911,1,Asia +2024-06-25,10341,233,"[""Laptop""]",2340.6,"{"""": ""30%""}",25522,1,Asia +2023-06-23,10342,4811,"[""Charger"", ""Keyboard""]",4671.51,{},231434,0,South America +2024-03-26,10343,2185,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4182.67,{},72612,1,South America +2023-01-30,10344,5503,"[""Keyboard""]",1376.22,"{""seasonal"": ""15%""}",123717,1,Europe +2024-08-09,10345,7093,"[""Headphones"", ""Charger""]",3713.56,{},155186,0,Europe +2023-04-11,10346,3662,"[""Tablet"", ""Monitor""]",2233.32,"{"""": ""16%""}",162983,0,South America +2023-09-25,10347,8832,"[""Charger"", ""Keyboard"", ""Monitor""]",3430.43,"{""loyalty"": ""6%""}",225225,0,Europe +2023-03-18,10348,2878,"[""Phone"", ""Tablet"", ""Laptop""]",3819.49,{},299551,0,North America +2024-12-15,10349,4840,"[""Headphones"", ""Phone""]",4291.23,"{"""": ""22%""}",61839,1,North America +2023-11-26,10350,6634,"[""Tablet""]",3789.43,"{"""": ""14%""}",51194,1,Europe +2023-07-15,10351,7903,"[""Headphones""]",2489.23,"{""promo"": ""17%""}",194685,0,South America +2023-11-12,10352,2439,"[""Tablet"", ""Laptop""]",4986.71,{},273175,0,Asia +2023-04-02,10353,6192,"[""Laptop""]",4964.95,{},256285,1,Europe +2024-11-21,10354,4705,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1333.71,"{""promo"": ""9%""}",218364,0,Asia +2023-09-06,10355,2975,"[""Monitor"", ""Phone""]",3274.77,"{""seasonal"": ""19%""}",113583,1,Africa +2023-04-06,10356,7041,"[""Phone"", ""Monitor"", ""Laptop""]",1484.53,"{"""": ""25%""}",164639,0,Asia +2024-09-07,10357,8898,"[""Keyboard"", ""Wireless Mouse""]",118.17,{},197518,0,Europe +2024-08-03,10358,7484,"[""Monitor""]",2898.41,"{""promo"": ""8%""}",277181,1,Africa +2024-02-08,10359,6313,"[""Laptop"", ""Phone""]",1053.1,"{""seasonal"": ""16%""}",93985,1,Africa +2023-03-13,10360,8863,"[""Monitor"", ""Laptop"", ""Headphones""]",254.5,{},226703,1,North America +2024-08-17,10361,5619,"[""Keyboard""]",4158.3,"{""seasonal"": ""11%""}",63737,1,Africa +2023-01-06,10362,112,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1983.69,"{""promo"": ""29%""}",150443,1,Africa +2024-02-04,10363,7103,"[""Headphones"", ""Monitor""]",2724.3,"{""loyalty"": ""7%""}",202494,1,Africa +2024-04-02,10364,6932,"[""Charger"", ""Laptop"", ""Phone""]",3340.98,{},79733,0,Europe +2023-07-19,10365,9982,"[""Keyboard""]",2542.67,{},210855,1,North America +2024-01-03,10366,7819,"[""Laptop"", ""Keyboard""]",97.6,{},256487,1,Europe +2023-03-02,10367,9120,"[""Laptop""]",113.55,{},129147,0,North America +2024-07-08,10368,9777,"[""Monitor""]",643.3,"{"""": ""22%""}",46901,0,Asia +2024-08-20,10369,9985,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4569.84,"{""promo"": ""22%""}",32105,1,Asia +2023-08-08,10370,3389,"[""Monitor""]",4708.1,{},76454,1,Europe +2024-06-27,10371,6920,"[""Tablet"", ""Wireless Mouse""]",3431.2,{},45517,1,Africa +2024-09-15,10372,4931,"[""Phone"", ""Monitor""]",3503.55,"{""loyalty"": ""25%""}",226320,0,North America +2024-01-31,10373,971,"[""Monitor"", ""Charger""]",3628.64,"{""loyalty"": ""9%""}",46952,0,Europe +2023-10-28,10374,5386,"[""Phone"", ""Keyboard""]",3854.01,"{"""": ""19%""}",51099,0,South America +2023-01-01,10375,1596,"[""Tablet""]",2534.12,"{""seasonal"": ""21%""}",270534,0,North America +2023-01-13,10376,3491,"[""Wireless Mouse""]",2986.05,{},69379,0,North America +2023-03-09,10377,8354,"[""Wireless Mouse""]",2158.48,"{"""": ""12%""}",9292,1,Europe +2023-03-05,10378,7866,"[""Headphones"", ""Monitor""]",3186.99,{},190864,1,Asia +2023-07-03,10379,4195,"[""Charger"", ""Laptop"", ""Keyboard""]",557.35,{},90842,1,North America +2023-04-15,10380,347,"[""Monitor""]",1571.07,{},185021,0,Europe +2024-09-07,10381,4979,"[""Headphones"", ""Monitor""]",3683.79,"{""loyalty"": ""28%""}",100239,1,Asia +2023-05-17,10382,9788,"[""Monitor"", ""Tablet"", ""Charger""]",438.84,"{"""": ""29%""}",111877,1,South America +2023-12-16,10383,7165,"[""Keyboard"", ""Wireless Mouse""]",3777.64,"{"""": ""28%""}",109702,1,Europe +2023-10-07,10384,1782,"[""Headphones"", ""Keyboard"", ""Phone""]",3215.77,"{""loyalty"": ""23%""}",190072,0,Europe +2023-09-24,10385,3000,"[""Phone"", ""Tablet""]",4916.52,{},124264,0,Asia +2023-10-13,10386,6116,"[""Phone"", ""Keyboard"", ""Headphones""]",1255.3,{},208796,1,Asia +2024-02-11,10387,1617,"[""Headphones"", ""Wireless Mouse""]",1297.37,"{""loyalty"": ""30%""}",139386,0,Africa +2023-02-19,10388,710,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3193.57,"{""promo"": ""24%""}",257575,0,North America +2023-05-08,10389,1550,"[""Phone"", ""Monitor"", ""Keyboard""]",3777.86,"{"""": ""6%""}",34405,0,Asia +2023-03-01,10390,4195,"[""Charger"", ""Keyboard"", ""Phone""]",849.16,{},20719,0,North America +2023-02-02,10391,5258,"[""Keyboard"", ""Tablet"", ""Phone""]",1824.1,"{""seasonal"": ""28%""}",8053,0,North America +2023-08-05,10392,4740,"[""Tablet"", ""Keyboard"", ""Laptop""]",1432.48,"{""promo"": ""9%""}",170990,1,Asia +2023-01-02,10393,2367,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2120.18,"{"""": ""8%""}",292701,0,North America +2024-05-12,10394,1336,"[""Headphones"", ""Laptop"", ""Tablet""]",4730.29,{},87882,0,Asia +2024-10-30,10395,276,"[""Wireless Mouse""]",981.11,{},123673,0,Africa +2024-04-26,10396,4326,"[""Monitor""]",4727.3,{},209808,1,Africa +2024-02-12,10397,5388,"[""Phone"", ""Tablet""]",1556.61,"{"""": ""22%""}",212022,0,Africa +2023-02-09,10398,9771,"[""Laptop""]",353.82,"{"""": ""19%""}",177455,1,South America +2024-09-16,10399,1901,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1245.68,{},247661,1,Africa +2023-10-04,10400,6573,"[""Headphones"", ""Laptop""]",2996.37,{},237671,0,Africa +2024-09-17,10401,2695,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",432.72,"{""loyalty"": ""28%""}",173216,0,North America +2024-09-17,10402,8617,"[""Keyboard"", ""Phone"", ""Laptop""]",1018.91,"{""loyalty"": ""25%""}",79450,0,Africa +2023-05-25,10403,600,"[""Laptop""]",3238.91,{},283310,1,North America +2024-06-29,10404,3224,"[""Laptop""]",3932.32,"{""loyalty"": ""7%""}",271055,0,Africa +2024-11-24,10405,5741,"[""Laptop"", ""Monitor""]",199.06,"{"""": ""6%""}",230900,0,North America +2023-03-28,10406,123,"[""Tablet"", ""Headphones""]",529.59,"{""seasonal"": ""30%""}",260580,0,North America +2023-03-12,10407,6327,"[""Laptop"", ""Wireless Mouse""]",4101.9,{},217882,0,South America +2024-01-20,10408,8990,"[""Monitor"", ""Headphones"", ""Keyboard""]",4920.6,"{""promo"": ""14%""}",195682,0,Africa +2023-11-03,10409,4558,"[""Monitor""]",163.26,"{"""": ""15%""}",119387,1,Asia +2024-08-01,10410,8940,"[""Charger"", ""Monitor""]",1738.65,"{"""": ""23%""}",118057,0,Africa +2024-11-05,10411,8314,"[""Keyboard"", ""Monitor"", ""Headphones""]",4289.05,{},243689,0,Europe +2024-02-05,10412,5282,"[""Charger""]",4997.53,{},282241,1,Africa +2024-03-19,10413,8676,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3887.07,{},16357,0,Asia +2023-11-29,10414,6875,"[""Tablet"", ""Charger""]",671.45,{},220683,0,Africa +2023-01-30,10415,5822,"[""Wireless Mouse"", ""Headphones""]",561.72,"{"""": ""24%""}",127498,1,South America +2023-11-17,10416,5127,"[""Wireless Mouse""]",699.65,{},54931,1,Africa +2023-12-30,10417,1039,"[""Keyboard""]",345.59,"{""seasonal"": ""16%""}",278378,0,North America +2023-08-29,10418,9857,"[""Laptop"", ""Charger"", ""Headphones""]",2177.84,{},285291,1,North America +2024-06-28,10419,1112,"[""Charger""]",3259.45,"{""seasonal"": ""21%""}",61036,0,Africa +2024-12-16,10420,2046,"[""Keyboard"", ""Headphones"", ""Phone""]",1487.8,{},182461,0,North America +2024-07-05,10421,5326,"[""Wireless Mouse""]",2637.55,{},273399,0,Africa +2023-11-20,10422,3284,"[""Headphones"", ""Charger""]",4619.53,"{""loyalty"": ""11%""}",289619,1,Asia +2024-12-27,10423,792,"[""Headphones""]",1381.4,"{"""": ""29%""}",122750,0,South America +2023-11-12,10424,5607,"[""Charger"", ""Laptop"", ""Tablet""]",663.6,"{""promo"": ""30%""}",112901,0,North America +2024-01-09,10425,8665,"[""Keyboard"", ""Monitor""]",2908.67,{},46087,1,Africa +2023-07-11,10426,7297,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3770.26,{},195193,0,Europe +2024-11-10,10427,127,"[""Tablet"", ""Monitor"", ""Phone""]",4588.86,"{"""": ""13%""}",244788,1,Asia +2024-04-25,10428,2499,"[""Wireless Mouse"", ""Monitor""]",2252.62,"{"""": ""8%""}",129216,1,South America +2024-04-03,10429,90,"[""Wireless Mouse"", ""Laptop""]",3579.56,"{"""": ""20%""}",284123,1,South America +2023-03-08,10430,7034,"[""Wireless Mouse""]",3516.96,{},154081,0,North America +2023-07-15,10431,7523,"[""Charger"", ""Monitor""]",1151.8,{},68322,1,Africa +2024-12-04,10432,2416,"[""Wireless Mouse"", ""Keyboard""]",3589.15,{},269483,0,Africa +2024-05-31,10433,6453,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",620.79,{},8599,1,Africa +2024-08-01,10434,2875,"[""Phone""]",3752.36,"{""seasonal"": ""13%""}",133088,0,South America +2023-07-21,10435,4786,"[""Tablet"", ""Headphones""]",4399.18,"{"""": ""26%""}",183488,0,North America +2024-09-21,10436,6692,"[""Headphones""]",1646.07,"{""promo"": ""10%""}",177657,0,South America +2024-04-25,10437,29,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4620.6,"{""promo"": ""26%""}",11938,0,South America +2024-12-30,10438,6786,"[""Phone"", ""Headphones""]",4635.72,{},170195,0,Europe +2023-10-06,10439,4245,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3443.7,{},35123,0,Asia +2023-01-23,10440,35,"[""Headphones"", ""Keyboard""]",4057.59,"{""promo"": ""7%""}",188661,0,Asia +2024-09-11,10441,6835,"[""Charger"", ""Keyboard""]",3389.49,{},227315,0,Europe +2023-09-05,10442,6332,"[""Wireless Mouse"", ""Tablet""]",2810.04,{},199044,0,Asia +2024-09-03,10443,8012,"[""Tablet"", ""Monitor"", ""Charger""]",1531.39,"{""loyalty"": ""5%""}",108859,1,Europe +2024-08-13,10444,3966,"[""Tablet""]",2573.31,{},263931,1,Africa +2023-12-07,10445,7242,"[""Phone""]",635.3,"{""seasonal"": ""6%""}",128284,1,Africa +2023-12-15,10446,8874,"[""Charger"", ""Wireless Mouse""]",3460.48,{},98378,1,Africa +2023-08-18,10447,8766,"[""Headphones""]",363.73,"{"""": ""21%""}",82967,0,Asia +2023-07-21,10448,6113,"[""Tablet"", ""Keyboard"", ""Charger""]",3118.03,"{""seasonal"": ""9%""}",72762,1,Africa +2023-07-26,10449,1833,"[""Charger""]",3402.0,{},98403,0,Asia +2023-10-19,10450,3750,"[""Charger"", ""Headphones""]",4215.49,{},133102,1,South America +2023-12-29,10451,8079,"[""Charger"", ""Tablet""]",3917.82,{},258569,0,South America +2023-07-20,10452,4426,"[""Headphones""]",691.45,{},175638,1,Asia +2024-06-01,10453,3046,"[""Keyboard"", ""Phone""]",1588.82,"{""loyalty"": ""28%""}",37068,0,Europe +2023-12-22,10454,4196,"[""Monitor"", ""Headphones""]",3577.69,{},126905,1,Asia +2024-10-09,10455,6576,"[""Laptop"", ""Phone"", ""Tablet""]",365.03,{},114580,0,South America +2024-02-15,10456,5528,"[""Laptop""]",2076.07,{},35322,1,Asia +2023-09-25,10457,335,"[""Tablet""]",4544.97,"{"""": ""7%""}",54575,1,North America +2024-12-14,10458,401,"[""Monitor"", ""Headphones"", ""Keyboard""]",2935.2,"{""seasonal"": ""6%""}",151450,1,Europe +2023-01-28,10459,3823,"[""Phone"", ""Tablet""]",1093.64,{},129215,0,South America +2023-02-17,10460,5873,"[""Tablet"", ""Headphones"", ""Phone""]",2886.06,"{""seasonal"": ""16%""}",46184,1,Asia +2024-03-14,10461,5947,"[""Phone""]",2844.16,{},242535,1,Asia +2024-04-19,10462,1531,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4943.51,"{""seasonal"": ""21%""}",26591,1,South America +2024-10-30,10463,9904,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",284.85,"{""seasonal"": ""27%""}",126613,0,North America +2024-06-28,10464,4649,"[""Tablet"", ""Headphones"", ""Phone""]",4946.17,{},206023,0,North America +2024-03-02,10465,4087,"[""Wireless Mouse"", ""Headphones""]",2631.08,"{"""": ""26%""}",48709,0,Asia +2023-06-17,10466,4861,"[""Tablet"", ""Phone"", ""Headphones""]",3211.56,{},118966,1,South America +2023-03-07,10467,5465,"[""Laptop"", ""Phone""]",4376.78,"{""seasonal"": ""22%""}",210671,1,Africa +2024-03-18,10468,4078,"[""Laptop"", ""Phone"", ""Keyboard""]",3402.54,"{""seasonal"": ""27%""}",168628,1,Europe +2024-03-14,10469,7049,"[""Wireless Mouse"", ""Tablet""]",1080.47,"{""loyalty"": ""29%""}",56708,1,Africa +2023-10-06,10470,7659,"[""Tablet"", ""Monitor""]",2918.18,{},171637,1,Asia +2024-06-16,10471,6950,"[""Laptop"", ""Headphones"", ""Charger""]",4359.04,"{""loyalty"": ""24%""}",178357,0,Europe +2024-01-10,10472,15,"[""Charger""]",1400.72,{},92930,0,Europe +2024-04-14,10473,7700,"[""Tablet"", ""Monitor""]",4380.1,{},237770,0,Europe +2024-11-06,10474,7102,"[""Headphones""]",623.99,{},73438,0,Asia +2023-03-08,10475,4476,"[""Keyboard"", ""Monitor""]",883.81,"{"""": ""16%""}",30255,1,North America +2024-12-02,10476,5231,"[""Charger"", ""Laptop"", ""Headphones""]",2725.39,{},74244,1,Asia +2024-12-24,10477,2077,"[""Tablet""]",1572.99,{},252425,1,Asia +2023-01-20,10478,8765,"[""Tablet""]",418.05,"{""promo"": ""21%""}",89840,0,South America +2023-10-15,10479,1008,"[""Monitor""]",2336.82,{},125454,1,South America +2024-01-17,10480,5290,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1416.32,"{""loyalty"": ""6%""}",278023,1,Asia +2023-03-07,10481,6723,"[""Headphones"", ""Phone"", ""Keyboard""]",4947.46,"{""loyalty"": ""22%""}",204457,0,Asia +2023-01-13,10482,1687,"[""Headphones"", ""Wireless Mouse""]",2283.29,{},81736,0,North America +2024-01-29,10483,5999,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2418.32,{},113199,0,Asia +2023-05-09,10484,5192,"[""Wireless Mouse""]",678.88,{},251059,1,Europe +2023-05-03,10485,5246,"[""Charger""]",4584.29,{},242421,1,South America +2024-10-29,10486,6350,"[""Wireless Mouse""]",1370.64,"{""promo"": ""20%""}",294758,0,Europe +2024-10-15,10487,3412,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4672.7,{},197056,1,Africa +2024-04-20,10488,2559,"[""Keyboard""]",1993.19,"{""promo"": ""23%""}",65934,1,Asia +2024-10-07,10489,4648,"[""Keyboard""]",679.08,"{"""": ""17%""}",259862,0,Africa +2023-01-20,10490,7086,"[""Keyboard""]",1143.8,"{""loyalty"": ""5%""}",265745,0,North America +2024-06-02,10491,6384,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3237.87,{},91543,0,North America +2024-01-07,10492,9877,"[""Charger"", ""Laptop"", ""Headphones""]",77.51,"{"""": ""25%""}",174752,1,North America +2023-04-10,10493,2983,"[""Monitor""]",3443.02,"{""promo"": ""9%""}",105851,0,North America +2023-11-09,10494,83,"[""Charger""]",2194.75,"{""promo"": ""18%""}",14296,1,Europe +2024-08-02,10495,8250,"[""Keyboard""]",1311.01,{},218288,0,Africa +2024-07-06,10496,718,"[""Keyboard"", ""Charger"", ""Headphones""]",4400.4,{},215727,0,Asia +2024-01-11,10497,4907,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4104.77,"{""promo"": ""27%""}",209543,0,Europe +2024-01-20,10498,9440,"[""Monitor"", ""Tablet""]",4159.53,"{""promo"": ""5%""}",126992,0,Europe +2024-12-09,10499,3135,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1496.67,{},1813,0,South America +2024-10-16,10500,733,"[""Monitor"", ""Keyboard"", ""Tablet""]",2128.45,{},204771,0,North America +2024-09-16,10501,1712,"[""Charger""]",349.79,"{""promo"": ""13%""}",132295,0,Europe +2024-06-19,10502,79,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",759.92,{},42229,0,South America +2024-11-06,10503,3759,"[""Phone"", ""Monitor"", ""Tablet""]",1202.68,"{""loyalty"": ""10%""}",231490,1,Africa +2024-10-17,10504,1511,"[""Wireless Mouse"", ""Keyboard""]",2127.33,{},34814,0,Asia +2023-09-29,10505,5349,"[""Tablet""]",4068.13,"{"""": ""25%""}",198956,0,North America +2024-07-18,10506,7827,"[""Tablet""]",3232.64,"{""loyalty"": ""18%""}",171322,0,South America +2024-01-18,10507,7590,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",618.64,{},133128,0,Europe +2023-03-27,10508,6655,"[""Wireless Mouse""]",1816.2,"{""seasonal"": ""16%""}",78702,0,South America +2023-10-25,10509,4127,"[""Keyboard"", ""Charger"", ""Headphones""]",2367.41,{},33918,1,Europe +2024-06-01,10510,6422,"[""Wireless Mouse""]",1704.12,{},59909,1,Africa +2024-11-12,10511,6980,"[""Laptop""]",1664.7,"{""seasonal"": ""28%""}",165960,0,Asia +2023-05-09,10512,5111,"[""Wireless Mouse"", ""Laptop""]",159.12,{},34239,0,Africa +2023-04-30,10513,8045,"[""Keyboard"", ""Tablet"", ""Charger""]",2251.3,{},254877,1,Europe +2023-10-11,10514,3239,"[""Charger"", ""Tablet""]",2233.22,{},253460,1,North America +2024-01-20,10515,9731,"[""Laptop"", ""Charger""]",284.27,{},130955,0,Africa +2023-12-01,10516,5155,"[""Laptop"", ""Wireless Mouse""]",4814.05,{},157451,1,Africa +2023-09-25,10517,709,"[""Charger"", ""Keyboard""]",1492.96,"{"""": ""12%""}",228888,1,Africa +2023-09-02,10518,7887,"[""Wireless Mouse"", ""Tablet""]",379.89,"{""seasonal"": ""11%""}",38292,1,North America +2024-09-18,10519,6250,"[""Phone"", ""Tablet"", ""Headphones""]",2528.91,{},143258,0,Asia +2024-11-17,10520,4821,"[""Tablet"", ""Monitor""]",125.34,"{""promo"": ""18%""}",153921,0,North America +2023-07-22,10521,3309,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3716.77,{},119475,0,Africa +2024-11-10,10522,6502,"[""Keyboard""]",3359.91,{},214836,0,Africa +2024-07-27,10523,5247,"[""Keyboard"", ""Headphones"", ""Monitor""]",310.45,{},37265,1,Asia +2023-07-29,10524,6991,"[""Phone""]",123.01,{},263615,0,South America +2024-01-29,10525,2323,"[""Phone""]",2206.15,"{""promo"": ""8%""}",173155,0,Europe +2024-07-26,10526,9916,"[""Keyboard""]",1236.3,"{"""": ""21%""}",87401,0,South America +2024-10-22,10527,3734,"[""Monitor""]",203.16,{},243514,1,South America +2023-04-23,10528,7223,"[""Wireless Mouse""]",4483.12,"{""seasonal"": ""14%""}",53277,0,South America +2024-08-06,10529,102,"[""Keyboard"", ""Headphones""]",4155.23,"{""promo"": ""17%""}",127360,1,Africa +2024-10-30,10530,1042,"[""Keyboard"", ""Phone""]",3582.29,"{""seasonal"": ""25%""}",11843,1,North America +2023-07-29,10531,6290,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2885.21,"{""seasonal"": ""18%""}",190161,1,North America +2024-10-21,10532,7697,"[""Headphones"", ""Phone""]",2990.96,{},141993,0,Europe +2024-04-06,10533,9518,"[""Phone""]",2126.78,"{""loyalty"": ""5%""}",85215,0,Asia +2024-02-04,10534,6147,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2310.0,"{"""": ""24%""}",268732,1,Asia +2023-06-21,10535,9242,"[""Phone""]",3218.98,{},83721,0,North America +2023-03-06,10536,4744,"[""Keyboard"", ""Phone"", ""Laptop""]",4921.43,"{"""": ""16%""}",107359,0,Asia +2024-04-09,10537,3564,"[""Laptop"", ""Keyboard"", ""Headphones""]",2676.72,{},255623,1,Europe +2024-11-21,10538,9429,"[""Charger""]",3738.1,{},138205,1,Asia +2023-05-28,10539,448,"[""Phone"", ""Wireless Mouse""]",4697.25,"{""promo"": ""9%""}",88985,1,North America +2023-04-27,10540,2235,"[""Monitor"", ""Charger""]",881.28,"{"""": ""13%""}",65397,1,South America +2023-03-23,10541,5592,"[""Tablet""]",4802.98,{},114699,0,Asia +2024-05-13,10542,1471,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2896.5,{},151726,1,South America +2023-07-03,10543,2500,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",848.89,{},141734,0,Europe +2023-12-12,10544,5383,"[""Wireless Mouse"", ""Headphones""]",4597.18,{},255912,0,North America +2023-04-27,10545,1595,"[""Charger"", ""Laptop""]",2707.32,{},170607,1,Africa +2024-12-19,10546,4200,"[""Tablet""]",1045.66,"{""seasonal"": ""10%""}",261012,0,Europe +2024-06-23,10547,7822,"[""Monitor"", ""Phone""]",4429.84,{},143708,0,Africa +2023-05-01,10548,5973,"[""Keyboard""]",192.33,{},87750,1,South America +2024-06-05,10549,3032,"[""Keyboard"", ""Headphones""]",3248.23,{},275887,0,Europe +2024-04-24,10550,3105,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",67.83,"{""promo"": ""15%""}",145085,1,Europe +2024-10-10,10551,2747,"[""Headphones""]",665.29,"{""seasonal"": ""27%""}",86267,1,Europe +2024-09-30,10552,9851,"[""Keyboard""]",992.42,{},180676,0,Africa +2023-09-16,10553,6486,"[""Phone"", ""Keyboard""]",73.63,{},295185,0,North America +2024-12-31,10554,7923,"[""Wireless Mouse""]",4064.15,"{""promo"": ""8%""}",90908,1,Asia +2024-05-13,10555,3467,"[""Headphones"", ""Charger"", ""Keyboard""]",1948.52,{},83082,0,Africa +2023-09-23,10556,8191,"[""Phone""]",1211.24,"{""seasonal"": ""23%""}",112703,1,North America +2023-08-15,10557,5071,"[""Laptop""]",3151.58,"{""loyalty"": ""10%""}",167510,1,South America +2024-10-15,10558,1065,"[""Keyboard"", ""Headphones""]",674.88,{},231735,0,Asia +2024-09-19,10559,3519,"[""Wireless Mouse""]",2434.81,"{""loyalty"": ""18%""}",251580,0,Africa +2024-07-04,10560,3087,"[""Keyboard"", ""Laptop"", ""Headphones""]",4098.37,"{""loyalty"": ""29%""}",154533,1,Africa +2024-06-18,10561,9022,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2612.41,"{"""": ""6%""}",238157,0,Africa +2023-09-26,10562,2513,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3416.06,{},75755,1,Asia +2023-03-28,10563,3857,"[""Headphones"", ""Laptop""]",4398.61,"{"""": ""21%""}",89029,0,Europe +2024-01-25,10564,6403,"[""Keyboard"", ""Charger"", ""Laptop""]",1971.95,{},280036,1,Europe +2023-03-28,10565,6886,"[""Headphones""]",2539.92,{},106996,1,Africa +2023-06-29,10566,932,"[""Laptop"", ""Charger""]",4376.49,"{""promo"": ""30%""}",292708,0,Europe +2023-09-24,10567,3204,"[""Tablet"", ""Laptop""]",1486.46,"{""promo"": ""6%""}",297378,1,North America +2023-06-06,10568,7630,"[""Headphones""]",4406.39,"{""loyalty"": ""29%""}",212157,1,Asia +2023-11-05,10569,1133,"[""Keyboard""]",2321.73,{},224608,1,Asia +2024-08-07,10570,3143,"[""Wireless Mouse"", ""Monitor""]",2338.27,{},130968,0,Asia +2024-06-05,10571,69,"[""Keyboard"", ""Headphones"", ""Phone""]",1559.81,"{"""": ""25%""}",256985,1,Europe +2024-05-28,10572,482,"[""Phone""]",1633.73,{},50350,0,North America +2023-01-07,10573,5951,"[""Charger"", ""Headphones""]",3821.95,"{""loyalty"": ""28%""}",114380,0,Africa +2024-06-12,10574,2549,"[""Phone"", ""Keyboard"", ""Laptop""]",130.84,"{"""": ""12%""}",272155,0,North America +2023-06-17,10575,9524,"[""Phone"", ""Monitor"", ""Headphones""]",4653.88,"{""loyalty"": ""19%""}",43658,0,Europe +2023-09-01,10576,3360,"[""Charger"", ""Monitor"", ""Phone""]",1252.26,"{""loyalty"": ""7%""}",32302,1,Asia +2023-10-16,10577,5448,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2759.83,{},217559,0,North America +2023-06-03,10578,884,"[""Tablet""]",220.33,"{""promo"": ""19%""}",101181,1,Africa +2023-11-08,10579,1463,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4606.3,{},63841,0,North America +2024-10-23,10580,3506,"[""Tablet""]",3984.15,{},191270,0,Europe +2023-03-01,10581,7031,"[""Tablet""]",3651.29,"{""loyalty"": ""17%""}",39947,1,Europe +2023-07-08,10582,2429,"[""Laptop"", ""Phone""]",2462.74,"{""promo"": ""24%""}",165889,1,South America +2024-12-03,10583,4098,"[""Laptop""]",515.62,{},136283,1,South America +2024-09-11,10584,4147,"[""Monitor""]",4196.99,"{""loyalty"": ""7%""}",287880,0,Asia +2023-02-03,10585,2415,"[""Monitor"", ""Wireless Mouse""]",4101.36,"{"""": ""10%""}",194353,0,Africa +2024-11-17,10586,8230,"[""Phone"", ""Monitor"", ""Headphones""]",396.54,{},296771,0,South America +2023-01-12,10587,5955,"[""Headphones""]",1087.18,"{""seasonal"": ""28%""}",33873,1,South America +2024-10-29,10588,5092,"[""Tablet"", ""Laptop""]",334.02,{},252301,0,Europe +2024-07-30,10589,5335,"[""Monitor"", ""Phone""]",4648.0,{},51479,0,Africa +2023-12-30,10590,7298,"[""Wireless Mouse"", ""Keyboard""]",3138.27,"{"""": ""6%""}",6790,0,South America +2024-03-18,10591,1519,"[""Monitor"", ""Tablet"", ""Laptop""]",3715.31,"{""seasonal"": ""13%""}",246449,1,South America +2024-03-17,10592,5751,"[""Laptop""]",1624.77,"{""loyalty"": ""29%""}",190456,1,Africa +2024-04-01,10593,1531,"[""Tablet"", ""Headphones""]",2041.07,"{""loyalty"": ""21%""}",144479,1,Europe +2023-02-14,10594,9098,"[""Monitor"", ""Headphones"", ""Keyboard""]",4383.02,{},271340,1,Asia +2023-04-23,10595,5479,"[""Wireless Mouse"", ""Laptop""]",3906.65,{},22369,1,Europe +2024-01-19,10596,1361,"[""Headphones"", ""Charger""]",4845.58,{},213951,0,Africa +2023-08-09,10597,6200,"[""Phone"", ""Charger""]",2818.84,"{""seasonal"": ""29%""}",85202,0,Asia +2023-06-26,10598,2599,"[""Headphones""]",2080.48,{},17255,1,Europe +2024-11-04,10599,9030,"[""Tablet"", ""Headphones"", ""Laptop""]",805.44,"{""promo"": ""18%""}",5681,1,Asia +2023-03-17,10600,4553,"[""Laptop"", ""Headphones""]",158.82,"{""loyalty"": ""9%""}",284935,0,North America +2024-06-17,10601,6841,"[""Charger"", ""Wireless Mouse""]",3967.04,{},61413,1,North America +2023-11-12,10602,6037,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2097.94,{},31320,0,Africa +2023-04-07,10603,3962,"[""Monitor"", ""Keyboard"", ""Tablet""]",3862.23,"{""seasonal"": ""11%""}",132995,0,Africa +2024-06-29,10604,6106,"[""Wireless Mouse"", ""Headphones""]",614.46,{},151896,1,South America +2024-06-18,10605,9315,"[""Keyboard""]",1193.38,{},146606,0,South America +2024-05-15,10606,7379,"[""Laptop"", ""Tablet"", ""Charger""]",4496.04,{},98440,1,Europe +2024-01-13,10607,7608,"[""Headphones"", ""Phone"", ""Keyboard""]",507.7,"{"""": ""12%""}",219638,0,Europe +2023-04-07,10608,1332,"[""Headphones""]",2817.98,"{""promo"": ""20%""}",10653,1,North America +2024-07-10,10609,9404,"[""Charger""]",1889.21,{},156667,0,Africa +2024-09-09,10610,2310,"[""Charger"", ""Laptop"", ""Phone""]",4586.66,{},51669,1,Africa +2023-09-13,10611,5641,"[""Wireless Mouse""]",3680.84,{},80617,0,Asia +2024-03-11,10612,7875,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2689.72,"{""seasonal"": ""22%""}",246508,1,North America +2024-09-19,10613,8836,"[""Charger"", ""Monitor"", ""Phone""]",3250.73,"{"""": ""24%""}",27452,0,South America +2023-09-11,10614,9142,"[""Keyboard""]",4767.63,{},129988,1,Europe +2023-05-01,10615,9233,"[""Keyboard""]",2345.22,"{""seasonal"": ""27%""}",82523,0,North America +2024-09-07,10616,9244,"[""Wireless Mouse""]",4369.98,"{""promo"": ""20%""}",103762,1,Europe +2023-10-08,10617,2817,"[""Monitor"", ""Wireless Mouse""]",1353.94,{},134825,0,Europe +2023-06-17,10618,1219,"[""Phone"", ""Tablet"", ""Headphones""]",2413.08,"{""seasonal"": ""13%""}",109306,0,North America +2023-09-27,10619,4831,"[""Headphones""]",496.9,"{""promo"": ""5%""}",99485,1,North America +2024-03-09,10620,8502,"[""Phone""]",2361.78,"{""seasonal"": ""26%""}",178566,0,Asia +2023-07-30,10621,372,"[""Wireless Mouse"", ""Phone""]",916.23,"{""loyalty"": ""16%""}",239602,0,North America +2023-06-29,10622,2872,"[""Phone"", ""Charger"", ""Monitor""]",350.17,{},107389,0,Asia +2024-10-24,10623,8891,"[""Tablet"", ""Phone"", ""Headphones""]",2404.08,"{""loyalty"": ""20%""}",109590,1,Europe +2023-07-14,10624,326,"[""Headphones"", ""Keyboard""]",161.56,{},129342,1,Asia +2024-12-18,10625,5215,"[""Tablet""]",2165.76,{},202794,1,Asia +2023-11-06,10626,1255,"[""Wireless Mouse"", ""Charger""]",4733.47,{},203099,1,North America +2023-09-18,10627,2414,"[""Keyboard""]",2343.04,"{"""": ""21%""}",240095,1,Africa +2024-06-09,10628,3193,"[""Charger""]",2341.22,{},233109,1,South America +2024-06-28,10629,6306,"[""Headphones"", ""Tablet"", ""Keyboard""]",2922.17,{},294738,1,South America +2023-03-25,10630,1542,"[""Headphones"", ""Tablet""]",1333.79,"{"""": ""16%""}",5560,0,North America +2024-01-03,10631,8932,"[""Laptop"", ""Headphones""]",3406.95,{},118948,0,Africa +2023-09-01,10632,7779,"[""Phone"", ""Laptop""]",1534.39,"{""seasonal"": ""13%""}",268117,1,Europe +2023-11-03,10633,1137,"[""Phone""]",1758.47,"{""loyalty"": ""16%""}",84071,0,Asia +2024-02-17,10634,1143,"[""Keyboard"", ""Headphones"", ""Monitor""]",2885.29,{},112230,0,Africa +2023-08-23,10635,9397,"[""Monitor"", ""Wireless Mouse""]",1933.56,{},167683,1,North America +2023-04-21,10636,7908,"[""Tablet"", ""Phone""]",654.7,"{"""": ""19%""}",41268,1,Africa +2024-05-06,10637,203,"[""Phone"", ""Laptop"", ""Monitor""]",486.29,"{"""": ""16%""}",189508,1,South America +2023-03-15,10638,8335,"[""Tablet"", ""Laptop""]",4259.83,{},52862,0,North America +2023-01-01,10639,6477,"[""Monitor"", ""Wireless Mouse""]",4994.62,{},266307,0,North America +2023-04-28,10640,6909,"[""Headphones"", ""Keyboard""]",3519.26,"{""seasonal"": ""19%""}",58506,0,Africa +2024-11-29,10641,9298,"[""Phone""]",2157.77,{},149041,1,North America +2023-05-22,10642,8151,"[""Tablet""]",3955.02,{},46253,1,Asia +2023-04-25,10643,3010,"[""Laptop"", ""Wireless Mouse""]",891.66,{},122612,1,Africa +2024-03-16,10644,1440,"[""Phone"", ""Monitor"", ""Charger""]",3158.51,"{""loyalty"": ""15%""}",86168,1,Africa +2024-01-21,10645,5567,"[""Monitor"", ""Headphones""]",2707.14,{},3257,1,South America +2024-04-16,10646,9306,"[""Monitor"", ""Charger""]",2376.44,{},77969,0,Europe +2023-04-05,10647,3971,"[""Laptop""]",103.21,"{""promo"": ""12%""}",63143,1,North America +2024-03-12,10648,3977,"[""Wireless Mouse"", ""Monitor""]",3632.34,"{""loyalty"": ""30%""}",80695,1,Africa +2023-05-05,10649,1091,"[""Wireless Mouse"", ""Tablet""]",3764.74,"{""promo"": ""30%""}",34633,1,Asia +2024-01-27,10650,9069,"[""Wireless Mouse""]",162.62,{},132292,1,South America +2023-09-25,10651,1341,"[""Laptop""]",2729.39,"{"""": ""10%""}",85108,0,North America +2023-04-01,10652,6543,"[""Laptop"", ""Headphones"", ""Monitor""]",2262.41,"{""promo"": ""16%""}",251305,0,North America +2024-11-10,10653,9403,"[""Charger""]",4356.67,"{""seasonal"": ""13%""}",115876,0,North America +2023-10-18,10654,2783,"[""Phone""]",3889.12,{},238934,1,North America +2024-07-21,10655,8222,"[""Monitor""]",1573.68,"{""promo"": ""28%""}",166278,1,North America +2023-10-31,10656,4263,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",515.75,{},181872,0,South America +2024-08-31,10657,6304,"[""Monitor"", ""Tablet""]",3542.19,"{""seasonal"": ""6%""}",4156,0,Europe +2024-02-04,10658,2446,"[""Laptop"", ""Monitor""]",4945.6,"{""promo"": ""18%""}",40575,1,Africa +2024-03-19,10659,3124,"[""Charger""]",2193.99,"{""promo"": ""8%""}",7125,0,Asia +2023-02-24,10660,1562,"[""Wireless Mouse""]",3881.34,"{""loyalty"": ""12%""}",164685,0,North America +2024-02-01,10661,9739,"[""Monitor"", ""Headphones""]",2803.12,"{""loyalty"": ""16%""}",54417,0,South America +2023-10-27,10662,7574,"[""Laptop"", ""Keyboard""]",3091.8,"{""seasonal"": ""5%""}",13382,0,Europe +2023-10-23,10663,5334,"[""Wireless Mouse"", ""Headphones""]",3562.89,{},241958,1,Europe +2024-07-03,10664,7597,"[""Keyboard""]",2835.49,{},143161,1,North America +2023-11-04,10665,9878,"[""Headphones"", ""Laptop""]",678.55,{},40377,1,Asia +2023-04-04,10666,5581,"[""Headphones"", ""Charger""]",2841.56,{},153087,0,Asia +2023-10-02,10667,9611,"[""Keyboard"", ""Wireless Mouse""]",4261.96,"{""loyalty"": ""30%""}",223400,0,Africa +2023-05-09,10668,9953,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4804.67,"{""loyalty"": ""29%""}",198748,0,North America +2024-12-10,10669,7128,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2841.2,"{""promo"": ""27%""}",138460,1,Europe +2024-07-29,10670,9094,"[""Headphones""]",3656.53,"{""promo"": ""19%""}",178958,1,Europe +2023-12-13,10671,4129,"[""Keyboard"", ""Monitor""]",986.7,{},64215,0,South America +2023-06-19,10672,6830,"[""Laptop""]",1495.05,"{"""": ""10%""}",171315,0,Africa +2023-03-24,10673,8858,"[""Tablet"", ""Laptop"", ""Keyboard""]",2519.66,"{""promo"": ""21%""}",81165,1,South America +2024-10-23,10674,7704,"[""Headphones"", ""Tablet""]",1807.44,{},90940,1,Africa +2023-05-26,10675,9561,"[""Monitor"", ""Phone"", ""Tablet""]",1743.68,"{""promo"": ""25%""}",4026,1,South America +2024-08-25,10676,7161,"[""Monitor"", ""Phone""]",117.14,"{"""": ""13%""}",105762,1,Asia +2024-04-27,10677,4769,"[""Monitor"", ""Phone""]",1128.22,{},244891,1,South America +2024-03-06,10678,3680,"[""Headphones"", ""Laptop""]",3637.46,{},89403,1,Europe +2023-12-21,10679,1335,"[""Charger"", ""Headphones""]",226.11,"{""seasonal"": ""20%""}",224957,0,Africa +2024-10-12,10680,6674,"[""Charger"", ""Headphones"", ""Laptop""]",3077.67,"{""seasonal"": ""25%""}",182992,0,South America +2024-12-18,10681,1249,"[""Charger"", ""Keyboard""]",3806.01,{},84291,0,South America +2023-06-29,10682,3766,"[""Headphones""]",2454.37,"{""promo"": ""30%""}",81734,1,South America +2024-08-03,10683,1978,"[""Phone"", ""Wireless Mouse""]",4493.97,{},163733,0,North America +2024-02-14,10684,611,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4148.22,"{""seasonal"": ""27%""}",73743,0,Africa +2024-04-17,10685,4164,"[""Tablet"", ""Wireless Mouse""]",2033.09,{},255218,0,South America +2024-11-10,10686,1115,"[""Monitor"", ""Tablet""]",3346.66,"{""loyalty"": ""12%""}",85188,1,Asia +2023-05-26,10687,1285,"[""Laptop"", ""Phone"", ""Monitor""]",4223.26,"{"""": ""8%""}",276183,1,North America +2023-05-24,10688,7822,"[""Tablet""]",1197.1,{},87972,0,Asia +2024-05-14,10689,6850,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4712.64,{},68592,1,North America +2024-09-24,10690,6211,"[""Charger""]",1491.24,"{""loyalty"": ""9%""}",294513,1,Asia +2024-03-16,10691,9853,"[""Charger""]",707.14,"{""loyalty"": ""24%""}",81201,0,South America +2023-03-08,10692,7074,"[""Charger""]",272.9,"{""seasonal"": ""13%""}",15116,1,Africa +2023-11-27,10693,2027,"[""Monitor"", ""Charger""]",1095.05,"{""seasonal"": ""19%""}",97126,0,Europe +2024-01-03,10694,6183,"[""Phone"", ""Charger""]",947.76,"{""loyalty"": ""15%""}",153322,1,Asia +2024-07-22,10695,5654,"[""Headphones"", ""Phone""]",3525.95,{},146465,0,North America +2023-02-21,10696,3963,"[""Tablet""]",1456.73,{},87087,0,Africa +2024-09-17,10697,6079,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1098.66,{},115249,1,Europe +2024-08-09,10698,466,"[""Monitor"", ""Phone""]",4567.96,{},295020,1,Europe +2024-11-15,10699,4886,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3544.41,"{""loyalty"": ""30%""}",155344,1,Asia +2024-05-16,10700,9659,"[""Monitor""]",1692.8,{},91000,1,Africa +2023-10-12,10701,6333,"[""Laptop""]",1245.37,{},262841,0,North America +2023-03-19,10702,548,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3502.13,"{""loyalty"": ""28%""}",257355,1,South America +2023-09-07,10703,4525,"[""Phone"", ""Keyboard""]",242.58,{},43433,1,Africa +2023-12-07,10704,467,"[""Charger"", ""Monitor""]",807.82,{},196856,0,Asia +2024-03-25,10705,2703,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3205.83,{},268412,0,Asia +2024-11-03,10706,2844,"[""Headphones"", ""Tablet""]",3288.85,"{"""": ""20%""}",181833,1,Europe +2024-04-11,10707,70,"[""Wireless Mouse"", ""Phone""]",4721.27,"{""promo"": ""16%""}",171453,0,Asia +2023-02-02,10708,6286,"[""Headphones"", ""Wireless Mouse""]",1339.79,{},241437,1,Asia +2024-11-23,10709,870,"[""Phone""]",1018.65,"{""loyalty"": ""19%""}",14715,1,South America +2024-05-08,10710,8352,"[""Phone""]",4243.94,{},259905,1,Europe +2023-12-24,10711,2548,"[""Keyboard"", ""Phone"", ""Monitor""]",3361.72,"{""seasonal"": ""8%""}",212473,0,South America +2023-03-11,10712,9578,"[""Phone"", ""Charger"", ""Tablet""]",3904.74,{},218278,0,North America +2024-11-20,10713,6698,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2924.56,{},213363,0,North America +2024-08-13,10714,6331,"[""Charger""]",1333.69,"{""seasonal"": ""8%""}",289785,0,North America +2023-03-24,10715,2905,"[""Charger"", ""Phone""]",2594.66,"{""promo"": ""19%""}",256445,0,South America +2023-10-28,10716,4381,"[""Monitor""]",2430.82,"{""seasonal"": ""16%""}",274196,1,Europe +2023-03-26,10717,952,"[""Keyboard"", ""Phone""]",1645.1,"{""loyalty"": ""12%""}",121123,0,Asia +2023-12-12,10718,2202,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1193.42,"{""loyalty"": ""16%""}",149867,1,Africa +2023-08-11,10719,4568,"[""Keyboard"", ""Headphones"", ""Charger""]",1999.34,"{""loyalty"": ""14%""}",19886,0,Africa +2024-04-24,10720,9774,"[""Headphones"", ""Monitor""]",178.22,"{""loyalty"": ""5%""}",139192,1,North America +2023-11-16,10721,643,"[""Phone"", ""Wireless Mouse""]",4623.5,"{"""": ""21%""}",223155,1,North America +2023-12-02,10722,8228,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4358.09,"{""loyalty"": ""18%""}",172613,0,North America +2024-03-13,10723,7491,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4928.66,"{""loyalty"": ""26%""}",275302,1,Europe +2023-09-02,10724,3071,"[""Monitor"", ""Tablet""]",1324.44,"{""seasonal"": ""10%""}",214546,0,Europe +2024-05-14,10725,8839,"[""Phone"", ""Laptop"", ""Headphones""]",232.58,{},236514,1,Asia +2023-11-14,10726,1621,"[""Wireless Mouse"", ""Laptop""]",3845.67,"{"""": ""14%""}",109608,0,Europe +2024-09-29,10727,3362,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1244.07,{},158920,1,North America +2023-12-24,10728,297,"[""Tablet"", ""Monitor"", ""Laptop""]",1318.89,{},53214,1,South America +2024-08-27,10729,8566,"[""Monitor"", ""Phone""]",2779.07,{},106926,1,Africa +2023-03-18,10730,8128,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",434.88,"{""promo"": ""23%""}",219909,1,Africa +2024-12-27,10731,7837,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3249.19,{},139495,1,North America +2024-09-25,10732,7416,"[""Headphones"", ""Tablet"", ""Charger""]",4914.73,"{""promo"": ""27%""}",14704,0,Asia +2023-02-27,10733,4696,"[""Wireless Mouse"", ""Monitor""]",2228.7,"{""promo"": ""6%""}",106787,1,Africa +2023-09-26,10734,3596,"[""Phone"", ""Monitor""]",2182.49,"{""loyalty"": ""21%""}",252042,0,Europe +2023-09-26,10735,1253,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3560.54,"{""loyalty"": ""18%""}",157046,0,North America +2024-05-21,10736,5016,"[""Monitor""]",3814.22,{},115689,1,Asia +2024-02-07,10737,4707,"[""Phone"", ""Laptop"", ""Tablet""]",4041.7,{},67334,1,Europe +2024-09-07,10738,456,"[""Headphones"", ""Keyboard""]",4506.57,{},138430,0,Europe +2023-06-08,10739,6555,"[""Charger"", ""Tablet""]",3683.37,"{"""": ""10%""}",71739,1,North America +2024-11-22,10740,8498,"[""Keyboard"", ""Wireless Mouse""]",3384.2,"{""loyalty"": ""27%""}",13173,1,South America +2024-07-01,10741,9962,"[""Monitor""]",1311.13,"{""loyalty"": ""5%""}",77852,1,Asia +2023-06-18,10742,3864,"[""Phone""]",4470.54,{},104908,0,Africa +2023-08-13,10743,7791,"[""Wireless Mouse"", ""Monitor""]",2498.87,"{""loyalty"": ""10%""}",99437,0,Africa +2024-08-18,10744,2139,"[""Laptop""]",2611.65,{},36189,1,North America +2024-09-07,10745,6457,"[""Charger""]",641.96,{},259394,1,Africa +2024-05-04,10746,1016,"[""Wireless Mouse""]",3388.82,"{""loyalty"": ""8%""}",30465,0,South America +2023-03-30,10747,8501,"[""Headphones""]",582.41,"{"""": ""6%""}",169063,0,Europe +2024-02-11,10748,5156,"[""Phone"", ""Wireless Mouse""]",1642.76,{},247120,1,Europe +2023-08-28,10749,9199,"[""Laptop"", ""Tablet""]",4815.02,{},276290,1,South America +2023-10-15,10750,7841,"[""Headphones"", ""Laptop""]",4268.22,{},141021,1,Europe +2023-02-06,10751,5331,"[""Keyboard""]",2835.02,"{""seasonal"": ""6%""}",32047,0,North America +2023-03-10,10752,7397,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2870.76,{},240867,1,Asia +2023-05-18,10753,7617,"[""Headphones"", ""Tablet""]",1359.91,"{""seasonal"": ""17%""}",91259,1,Asia +2023-07-10,10754,5602,"[""Charger"", ""Keyboard"", ""Laptop""]",2211.58,{},240077,1,Asia +2023-05-06,10755,5245,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3212.79,"{""promo"": ""8%""}",193630,1,North America +2023-10-21,10756,5335,"[""Keyboard"", ""Tablet"", ""Laptop""]",2743.21,"{""loyalty"": ""16%""}",196139,0,Asia +2023-05-19,10757,6006,"[""Charger"", ""Phone""]",4266.44,"{"""": ""11%""}",109283,1,North America +2024-03-17,10758,3950,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2405.8,"{"""": ""7%""}",258097,1,North America +2024-07-02,10759,1410,"[""Laptop"", ""Charger""]",1758.06,"{"""": ""29%""}",114202,0,Europe +2024-07-09,10760,955,"[""Charger""]",3844.4,"{""promo"": ""24%""}",161404,0,South America +2023-02-20,10761,7783,"[""Phone"", ""Headphones"", ""Laptop""]",911.2,{},82657,1,Africa +2023-05-05,10762,650,"[""Keyboard""]",887.28,{},167664,0,North America +2023-04-30,10763,7953,"[""Tablet"", ""Phone""]",3347.86,{},252697,0,Africa +2024-02-08,10764,9867,"[""Charger""]",1786.06,"{""seasonal"": ""17%""}",160147,0,South America +2024-06-30,10765,3618,"[""Headphones""]",509.73,"{""promo"": ""18%""}",272992,0,Africa +2023-10-15,10766,8449,"[""Charger"", ""Phone""]",2194.64,{},187987,0,Europe +2023-08-15,10767,153,"[""Headphones"", ""Charger"", ""Phone""]",472.08,{},88069,0,Asia +2024-12-21,10768,5164,"[""Headphones"", ""Charger"", ""Phone""]",1323.61,"{""seasonal"": ""10%""}",156934,0,Europe +2024-09-13,10769,5038,"[""Monitor"", ""Tablet""]",4115.64,"{""loyalty"": ""6%""}",16326,0,Europe +2023-04-09,10770,372,"[""Laptop"", ""Tablet"", ""Headphones""]",2287.63,{},77314,0,North America +2024-06-04,10771,5447,"[""Tablet"", ""Keyboard"", ""Charger""]",2952.31,{},276068,0,Asia +2024-10-01,10772,8615,"[""Laptop""]",4630.19,{},107367,1,North America +2024-10-21,10773,6090,"[""Headphones"", ""Keyboard"", ""Monitor""]",252.67,{},116987,1,Africa +2024-11-03,10774,9809,"[""Wireless Mouse""]",3534.98,{},47663,1,South America +2024-03-30,10775,7170,"[""Phone"", ""Monitor"", ""Keyboard""]",4235.41,{},254790,0,North America +2024-11-21,10776,3697,"[""Charger"", ""Keyboard"", ""Headphones""]",705.64,{},83335,1,Africa +2023-04-26,10777,214,"[""Charger"", ""Monitor""]",995.1,"{""seasonal"": ""26%""}",122373,1,North America +2024-07-12,10778,2818,"[""Headphones"", ""Wireless Mouse""]",2750.28,"{""promo"": ""5%""}",209867,0,Africa +2023-05-22,10779,5387,"[""Phone""]",1727.87,"{""loyalty"": ""30%""}",68124,1,South America +2023-12-10,10780,9726,"[""Charger"", ""Headphones"", ""Tablet""]",4212.82,{},292490,1,South America +2023-08-19,10781,6676,"[""Headphones"", ""Laptop""]",1722.47,"{"""": ""12%""}",98348,0,South America +2023-11-07,10782,3383,"[""Phone"", ""Tablet"", ""Laptop""]",1515.77,{},76696,0,Asia +2024-12-06,10783,5162,"[""Tablet"", ""Keyboard""]",3496.73,{},7045,1,Europe +2023-10-01,10784,7077,"[""Phone"", ""Keyboard"", ""Monitor""]",3981.12,"{""seasonal"": ""21%""}",274727,0,South America +2023-04-22,10785,5198,"[""Tablet"", ""Laptop"", ""Charger""]",4345.27,{},37077,1,Europe +2023-05-29,10786,8404,"[""Charger""]",548.1,{},277441,1,Asia +2023-12-04,10787,4015,"[""Keyboard"", ""Phone""]",4415.27,"{""seasonal"": ""5%""}",61973,0,Africa +2024-09-11,10788,2932,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",420.94,"{"""": ""30%""}",105852,0,Africa +2023-11-10,10789,9660,"[""Headphones""]",276.2,"{"""": ""29%""}",172299,0,Africa +2023-12-19,10790,7267,"[""Wireless Mouse""]",3078.76,"{"""": ""14%""}",68969,0,Asia +2024-07-25,10791,8156,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",320.82,"{"""": ""10%""}",280764,0,North America +2023-01-13,10792,7953,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",368.22,{},234387,1,South America +2023-04-24,10793,7369,"[""Keyboard""]",4460.09,{},136186,0,North America +2024-11-21,10794,8046,"[""Tablet"", ""Wireless Mouse""]",2687.59,{},153436,0,Europe +2024-11-11,10795,815,"[""Phone"", ""Tablet"", ""Charger""]",2168.97,"{""seasonal"": ""14%""}",174293,0,South America +2024-06-17,10796,2732,"[""Wireless Mouse""]",1946.79,{},12771,1,South America +2023-08-02,10797,5554,"[""Headphones"", ""Charger""]",1585.86,"{"""": ""29%""}",247905,1,Europe +2024-02-16,10798,9204,"[""Keyboard"", ""Charger""]",3273.09,"{""loyalty"": ""5%""}",49675,0,Europe +2023-12-13,10799,6287,"[""Charger"", ""Monitor""]",3738.49,"{"""": ""28%""}",132487,1,Europe +2023-07-12,10800,5602,"[""Keyboard"", ""Headphones"", ""Monitor""]",3016.25,{},77528,0,Africa +2024-03-16,10801,7942,"[""Charger"", ""Headphones""]",2091.17,"{""loyalty"": ""19%""}",7832,1,Africa +2023-12-30,10802,1069,"[""Wireless Mouse""]",505.54,{},256799,1,South America +2023-03-16,10803,8418,"[""Laptop"", ""Tablet""]",2175.23,"{"""": ""19%""}",122485,0,Africa +2023-08-19,10804,99,"[""Laptop"", ""Keyboard""]",1466.34,{},251457,1,Africa +2024-09-09,10805,5058,"[""Phone""]",3064.33,{},271689,0,Europe +2024-03-24,10806,5533,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2916.96,"{""seasonal"": ""10%""}",86217,1,South America +2023-01-28,10807,6683,"[""Keyboard"", ""Charger""]",2153.96,{},244881,0,Asia +2023-08-29,10808,9026,"[""Phone""]",1908.08,{},158779,0,Asia +2023-06-07,10809,7159,"[""Laptop""]",568.91,"{"""": ""15%""}",74329,1,Africa +2023-04-15,10810,985,"[""Monitor"", ""Phone"", ""Laptop""]",3489.1,"{""loyalty"": ""27%""}",163671,0,South America +2024-08-17,10811,422,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3737.06,"{""loyalty"": ""13%""}",113080,1,Asia +2023-03-02,10812,7012,"[""Charger""]",1203.33,"{""seasonal"": ""23%""}",194862,1,Asia +2023-04-12,10813,2604,"[""Wireless Mouse""]",3931.55,"{""promo"": ""25%""}",42921,0,North America +2023-02-15,10814,339,"[""Laptop""]",54.6,{},111827,1,Europe +2024-04-01,10815,9531,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1522.22,{},65647,0,Africa +2023-06-03,10816,3338,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3999.76,"{""promo"": ""5%""}",123057,1,North America +2024-10-20,10817,958,"[""Charger"", ""Monitor"", ""Headphones""]",2676.8,{},251803,0,Asia +2023-12-12,10818,25,"[""Laptop"", ""Headphones""]",3277.79,"{""seasonal"": ""19%""}",125476,1,North America +2023-05-07,10819,2555,"[""Charger"", ""Headphones"", ""Monitor""]",3520.87,{},38684,0,Africa +2023-01-06,10820,2668,"[""Headphones"", ""Phone"", ""Laptop""]",3999.87,{},179652,0,Europe +2023-08-22,10821,8250,"[""Keyboard"", ""Charger"", ""Monitor""]",3033.09,"{""promo"": ""25%""}",244146,1,Europe +2024-02-26,10822,1743,"[""Keyboard""]",1324.87,{},280238,0,South America +2024-08-26,10823,721,"[""Tablet"", ""Wireless Mouse""]",2745.8,{},146832,0,South America +2023-11-02,10824,9861,"[""Tablet""]",57.3,"{""loyalty"": ""16%""}",269498,1,Africa +2024-02-01,10825,8739,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",493.8,{},199274,1,South America +2023-12-17,10826,58,"[""Tablet"", ""Laptop"", ""Phone""]",1978.43,"{""loyalty"": ""27%""}",146292,0,North America +2023-10-09,10827,7983,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1363.1,"{""promo"": ""16%""}",182062,1,Europe +2023-11-02,10828,3039,"[""Headphones"", ""Tablet""]",953.7,"{"""": ""25%""}",210192,0,Asia +2023-03-20,10829,9432,"[""Wireless Mouse""]",4860.6,{},296547,0,Europe +2024-01-03,10830,5952,"[""Tablet""]",3766.02,"{"""": ""17%""}",223048,1,Asia +2024-10-21,10831,3601,"[""Headphones"", ""Monitor""]",3111.96,{},264338,0,Africa +2023-11-24,10832,3682,"[""Charger"", ""Laptop""]",407.84,"{""seasonal"": ""5%""}",231130,1,Asia +2023-01-07,10833,158,"[""Monitor"", ""Headphones""]",1712.76,"{""seasonal"": ""23%""}",160604,1,Europe +2023-11-09,10834,429,"[""Headphones"", ""Laptop"", ""Phone""]",1775.77,"{""loyalty"": ""22%""}",145864,0,Europe +2024-12-05,10835,2259,"[""Monitor""]",3641.08,"{"""": ""23%""}",52567,0,Asia +2023-02-23,10836,6848,"[""Phone""]",3687.01,"{""seasonal"": ""20%""}",161977,1,North America +2024-08-05,10837,7946,"[""Keyboard""]",2522.91,"{""seasonal"": ""15%""}",191706,0,Africa +2024-11-13,10838,2946,"[""Charger"", ""Phone""]",2203.99,"{""promo"": ""27%""}",291411,0,North America +2023-01-04,10839,7364,"[""Headphones"", ""Phone""]",2808.57,"{""promo"": ""18%""}",130686,0,South America +2024-09-15,10840,4284,"[""Tablet""]",4910.87,{},181157,1,North America +2024-03-09,10841,8083,"[""Keyboard""]",3986.98,"{""seasonal"": ""23%""}",34081,1,South America +2024-09-22,10842,3715,"[""Keyboard""]",869.67,{},127917,1,South America +2023-01-31,10843,2744,"[""Headphones""]",3548.0,"{""loyalty"": ""13%""}",159594,1,Asia +2024-04-14,10844,4207,"[""Wireless Mouse""]",1231.84,{},223636,0,Europe +2023-05-12,10845,6560,"[""Charger""]",1620.66,"{"""": ""23%""}",81049,1,North America +2023-07-25,10846,4561,"[""Monitor"", ""Laptop""]",4385.23,{},93363,0,Africa +2024-11-04,10847,4494,"[""Laptop"", ""Tablet""]",2924.93,{},2846,0,Africa +2024-02-19,10848,3640,"[""Tablet"", ""Monitor""]",1531.82,"{"""": ""7%""}",262441,1,Africa +2024-03-15,10849,5276,"[""Monitor"", ""Keyboard""]",2644.66,{},201006,0,Asia +2023-05-30,10850,9222,"[""Charger""]",794.27,"{""loyalty"": ""26%""}",190750,1,South America +2024-10-27,10851,952,"[""Headphones"", ""Tablet""]",4880.02,{},190169,1,Europe +2024-05-16,10852,6974,"[""Phone""]",2956.59,"{""seasonal"": ""30%""}",203860,1,South America +2024-11-21,10853,4316,"[""Charger"", ""Monitor"", ""Headphones""]",3640.83,{},245621,0,South America +2024-08-24,10854,5666,"[""Monitor"", ""Wireless Mouse""]",4703.42,"{""seasonal"": ""23%""}",106631,0,Asia +2023-08-07,10855,925,"[""Charger"", ""Tablet""]",4354.92,"{""loyalty"": ""21%""}",257344,1,Africa +2023-06-04,10856,6063,"[""Laptop"", ""Tablet"", ""Monitor""]",676.99,{},34118,0,Europe +2023-10-17,10857,8454,"[""Headphones""]",3293.68,"{""seasonal"": ""12%""}",203342,1,South America +2023-12-15,10858,4060,"[""Keyboard"", ""Wireless Mouse""]",2012.08,"{""loyalty"": ""7%""}",36489,0,Europe +2024-12-12,10859,7914,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2506.17,{},56434,1,Asia +2024-05-09,10860,9051,"[""Phone"", ""Headphones""]",3879.26,"{""loyalty"": ""27%""}",281580,0,Africa +2024-08-10,10861,2174,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3178.64,{},215931,1,Asia +2024-03-12,10862,629,"[""Headphones"", ""Phone""]",992.07,{},173279,1,South America +2023-11-20,10863,138,"[""Monitor"", ""Wireless Mouse""]",2270.86,{},94645,1,Europe +2024-09-12,10864,1056,"[""Laptop"", ""Headphones""]",2390.15,"{"""": ""24%""}",6307,1,North America +2023-02-17,10865,3257,"[""Monitor"", ""Keyboard""]",434.23,{},210850,0,Africa +2023-10-18,10866,8419,"[""Headphones"", ""Monitor""]",147.92,{},161757,0,South America +2023-08-02,10867,6861,"[""Charger"", ""Headphones""]",3687.1,"{""loyalty"": ""11%""}",219940,1,South America +2023-10-01,10868,5575,"[""Laptop"", ""Keyboard""]",3342.61,"{""loyalty"": ""17%""}",217562,0,North America +2024-09-04,10869,8577,"[""Charger"", ""Laptop""]",4076.04,{},190128,0,South America +2023-03-18,10870,6743,"[""Keyboard"", ""Tablet"", ""Monitor""]",3000.69,{},99019,1,Africa +2024-09-12,10871,5959,"[""Tablet""]",2157.49,"{""seasonal"": ""25%""}",105626,0,Asia +2023-04-20,10872,9055,"[""Keyboard"", ""Laptop""]",1128.83,{},151784,0,Africa +2024-05-29,10873,2290,"[""Phone"", ""Keyboard""]",3674.93,{},107342,0,North America +2024-11-01,10874,9904,"[""Laptop"", ""Wireless Mouse""]",4997.76,"{""seasonal"": ""10%""}",213358,0,North America +2023-02-12,10875,1136,"[""Charger""]",4175.57,{},152047,0,South America +2023-01-06,10876,1711,"[""Headphones"", ""Phone"", ""Tablet""]",921.57,"{""loyalty"": ""5%""}",244231,1,Asia +2024-06-27,10877,4584,"[""Tablet"", ""Headphones"", ""Monitor""]",327.17,{},29960,0,North America +2023-01-01,10878,6555,"[""Monitor""]",2862.51,"{"""": ""19%""}",15977,1,South America +2024-04-11,10879,1604,"[""Monitor"", ""Phone""]",1799.44,{},151071,0,South America +2023-11-25,10880,8996,"[""Phone"", ""Tablet""]",1845.58,{},38865,0,Asia +2024-03-07,10881,6421,"[""Keyboard"", ""Headphones""]",310.64,{},20708,1,South America +2024-12-13,10882,6556,"[""Laptop""]",4565.08,"{"""": ""27%""}",184734,1,Africa +2024-02-09,10883,7163,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4191.43,"{""promo"": ""14%""}",178437,1,South America +2023-03-05,10884,9540,"[""Monitor"", ""Headphones""]",375.73,{},201142,1,Africa +2024-10-04,10885,2657,"[""Laptop""]",4513.49,{},170364,1,South America +2024-10-16,10886,8767,"[""Monitor"", ""Keyboard"", ""Tablet""]",2664.74,"{""promo"": ""17%""}",92770,0,North America +2024-06-09,10887,9467,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",206.35,{},64926,0,Asia +2023-03-27,10888,145,"[""Monitor""]",2380.49,"{""loyalty"": ""9%""}",192564,0,North America +2024-08-12,10889,2929,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",611.19,"{""promo"": ""19%""}",14195,0,Asia +2024-02-24,10890,3403,"[""Headphones"", ""Charger""]",1011.97,{},48750,0,Europe +2024-08-21,10891,1193,"[""Wireless Mouse""]",4490.58,"{"""": ""29%""}",15406,0,Africa +2024-05-26,10892,705,"[""Tablet""]",3768.5,{},147471,1,Asia +2024-06-23,10893,5986,"[""Keyboard""]",3796.16,"{""promo"": ""11%""}",83104,0,South America +2024-06-05,10894,5977,"[""Monitor""]",2743.66,{},175015,1,Africa +2023-01-10,10895,5223,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2438.82,{},246981,1,Asia +2024-06-06,10896,8633,"[""Keyboard"", ""Laptop"", ""Phone""]",4055.0,{},224066,1,South America +2024-09-03,10897,4066,"[""Headphones""]",1288.79,{},140870,0,South America +2024-10-21,10898,3131,"[""Keyboard"", ""Tablet""]",3947.16,"{""promo"": ""28%""}",198723,1,Europe +2024-08-30,10899,9060,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4843.46,{},74432,1,Africa +2023-11-07,10900,7316,"[""Laptop""]",4078.08,"{""loyalty"": ""25%""}",52191,1,Asia +2024-03-31,10901,4666,"[""Headphones""]",602.72,"{""promo"": ""25%""}",40507,0,Asia +2024-04-29,10902,7845,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1772.75,"{"""": ""7%""}",181296,1,North America +2024-08-22,10903,8845,"[""Keyboard"", ""Laptop""]",3538.98,{},64504,1,North America +2024-11-09,10904,4636,"[""Phone""]",858.79,{},239404,0,Europe +2023-12-10,10905,8068,"[""Tablet"", ""Wireless Mouse""]",841.03,{},203569,1,Asia +2024-11-24,10906,3278,"[""Keyboard"", ""Phone"", ""Tablet""]",1746.7,{},156226,0,Africa +2023-07-13,10907,9758,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4465.15,{},90442,1,Africa +2023-07-06,10908,1397,"[""Phone"", ""Tablet""]",710.33,{},72617,1,South America +2023-11-10,10909,1551,"[""Laptop"", ""Monitor""]",320.34,"{""seasonal"": ""22%""}",156423,0,South America +2023-01-14,10910,4096,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3144.01,"{"""": ""18%""}",27511,0,Asia +2023-03-11,10911,2313,"[""Phone""]",1928.33,"{""promo"": ""14%""}",254746,0,South America +2023-05-30,10912,1975,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1387.7,"{"""": ""12%""}",4746,1,South America +2024-12-16,10913,8148,"[""Headphones"", ""Monitor"", ""Tablet""]",2101.7,{},277869,1,South America +2023-05-09,10914,6567,"[""Phone"", ""Monitor""]",566.49,"{""seasonal"": ""28%""}",6684,1,Asia +2023-08-28,10915,7659,"[""Phone"", ""Laptop""]",502.87,"{""loyalty"": ""11%""}",222614,1,Asia +2023-01-02,10916,7440,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4572.71,{},128532,1,Africa +2024-02-08,10917,208,"[""Laptop"", ""Charger"", ""Monitor""]",692.76,{},134481,1,Africa +2024-12-05,10918,9310,"[""Keyboard""]",4756.34,"{""loyalty"": ""21%""}",172578,0,South America +2023-02-05,10919,7967,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2147.04,"{""loyalty"": ""5%""}",254166,0,Europe +2024-07-09,10920,3059,"[""Phone"", ""Monitor""]",2861.64,"{""loyalty"": ""29%""}",288650,0,North America +2023-11-03,10921,899,"[""Tablet""]",3087.05,"{""loyalty"": ""12%""}",274402,0,Africa +2024-11-09,10922,8887,"[""Keyboard""]",3124.1,"{""promo"": ""9%""}",159582,0,Europe +2024-09-16,10923,9401,"[""Phone"", ""Headphones""]",3603.53,{},250913,1,Africa +2024-12-31,10924,7491,"[""Wireless Mouse""]",3912.12,{},292621,0,Asia +2023-04-06,10925,529,"[""Monitor"", ""Charger""]",3760.42,"{""seasonal"": ""28%""}",58599,1,Asia +2024-06-28,10926,241,"[""Monitor"", ""Tablet""]",92.82,{},102893,1,Asia +2023-06-12,10927,9757,"[""Keyboard""]",3200.11,{},67892,1,Europe +2023-05-24,10928,6237,"[""Keyboard""]",4643.24,"{""loyalty"": ""11%""}",192288,1,South America +2024-09-18,10929,2204,"[""Charger""]",1772.63,{},88509,0,South America +2024-05-31,10930,6144,"[""Charger"", ""Phone""]",2650.69,"{""seasonal"": ""27%""}",16455,1,South America +2024-08-20,10931,9254,"[""Charger"", ""Laptop""]",4561.69,"{""loyalty"": ""18%""}",131461,0,Asia +2023-04-10,10932,6105,"[""Monitor""]",1705.32,{},294322,1,Asia +2023-08-14,10933,9139,"[""Phone""]",54.72,"{""loyalty"": ""26%""}",81561,1,North America +2023-04-01,10934,4807,"[""Laptop"", ""Keyboard"", ""Phone""]",1057.19,"{""promo"": ""9%""}",156491,1,Africa +2024-05-11,10935,7431,"[""Charger""]",1956.11,{},183925,0,South America +2024-03-13,10936,1444,"[""Laptop""]",542.21,"{""seasonal"": ""15%""}",27864,0,Africa +2024-02-22,10937,3525,"[""Laptop"", ""Wireless Mouse""]",2765.57,{},151866,1,Africa +2024-05-07,10938,4369,"[""Headphones""]",3464.63,"{""loyalty"": ""23%""}",172428,1,Europe +2024-04-28,10939,6008,"[""Wireless Mouse""]",2376.44,"{"""": ""13%""}",44370,1,Asia +2023-06-05,10940,7126,"[""Laptop"", ""Phone""]",4576.66,{},40737,1,South America +2024-10-22,10941,7866,"[""Charger"", ""Tablet""]",3900.45,{},275687,0,Asia +2024-06-26,10942,4139,"[""Charger""]",4559.55,{},226559,1,South America +2023-06-17,10943,8702,"[""Charger""]",4147.92,{},61583,0,Asia +2023-11-05,10944,1314,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3347.92,{},100545,0,Asia +2023-04-28,10945,703,"[""Headphones"", ""Monitor"", ""Phone""]",4907.31,"{"""": ""30%""}",139805,0,Asia +2024-12-13,10946,9266,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4585.43,"{""seasonal"": ""12%""}",85562,0,South America +2024-10-20,10947,7786,"[""Charger"", ""Headphones""]",145.14,"{"""": ""24%""}",239041,0,North America +2024-03-26,10948,7978,"[""Phone"", ""Wireless Mouse""]",4927.82,"{""loyalty"": ""10%""}",230508,1,Europe +2024-09-05,10949,1068,"[""Keyboard"", ""Wireless Mouse""]",1121.1,{},43725,0,North America +2023-04-06,10950,1297,"[""Tablet"", ""Wireless Mouse""]",4233.42,"{""seasonal"": ""8%""}",148844,0,South America +2024-12-25,10951,8069,"[""Keyboard""]",3964.15,"{""promo"": ""30%""}",179009,1,Europe +2024-07-25,10952,9862,"[""Wireless Mouse"", ""Phone"", ""Charger""]",262.34,"{"""": ""21%""}",70691,1,North America +2024-08-11,10953,9061,"[""Laptop"", ""Monitor"", ""Charger""]",2519.99,"{""seasonal"": ""15%""}",191325,0,North America +2024-04-03,10954,9784,"[""Charger""]",1136.79,"{""promo"": ""6%""}",71554,0,Asia +2024-10-18,10955,4787,"[""Keyboard""]",4519.86,{},113698,0,North America +2023-04-23,10956,9970,"[""Laptop""]",3506.17,"{""promo"": ""13%""}",70917,0,Africa +2024-04-28,10957,1361,"[""Keyboard""]",2273.65,{},151577,0,North America +2024-04-22,10958,8104,"[""Headphones"", ""Phone"", ""Charger""]",3264.63,"{""promo"": ""22%""}",134780,0,Asia +2023-10-06,10959,254,"[""Charger"", ""Wireless Mouse""]",2298.23,"{""loyalty"": ""27%""}",88274,1,Asia +2023-08-09,10960,2371,"[""Monitor"", ""Phone""]",1788.27,{},43294,0,South America +2023-10-03,10961,4069,"[""Laptop""]",3080.12,{},78501,0,Africa +2024-11-29,10962,1334,"[""Tablet"", ""Keyboard""]",2685.54,{},44362,0,Africa +2023-02-16,10963,4139,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4179.21,{},290837,0,Asia +2024-10-19,10964,8995,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3702.4,{},30528,1,North America +2023-02-28,10965,9741,"[""Tablet""]",954.62,"{""seasonal"": ""8%""}",186635,0,Asia +2024-03-28,10966,9313,"[""Laptop"", ""Charger"", ""Tablet""]",740.36,{},136962,0,Europe +2023-09-05,10967,5750,"[""Wireless Mouse"", ""Laptop""]",1757.51,"{""seasonal"": ""10%""}",104840,1,North America +2023-06-02,10968,3382,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3868.75,"{""seasonal"": ""17%""}",139457,0,Africa +2024-01-18,10969,9211,"[""Monitor"", ""Wireless Mouse""]",1038.24,"{"""": ""27%""}",227025,1,North America +2023-05-13,10970,6368,"[""Keyboard""]",961.32,"{"""": ""25%""}",270193,0,Africa +2024-01-03,10971,6836,"[""Headphones""]",4212.31,"{""loyalty"": ""13%""}",115447,1,North America +2023-11-15,10972,1717,"[""Keyboard"", ""Tablet"", ""Monitor""]",3646.71,"{""loyalty"": ""15%""}",190911,0,South America +2023-05-23,10973,5517,"[""Monitor"", ""Phone"", ""Keyboard""]",2561.56,"{""seasonal"": ""25%""}",264515,0,Africa +2024-03-24,10974,5255,"[""Charger"", ""Laptop"", ""Phone""]",3916.02,"{"""": ""10%""}",185364,1,Africa +2024-08-18,10975,4087,"[""Keyboard"", ""Tablet"", ""Laptop""]",2735.07,"{"""": ""29%""}",212424,0,Europe +2023-12-30,10976,9304,"[""Keyboard"", ""Monitor"", ""Headphones""]",2951.91,"{""promo"": ""11%""}",267487,1,South America +2024-03-23,10977,4281,"[""Tablet""]",3254.61,"{""promo"": ""6%""}",72231,1,South America +2023-08-22,10978,9,"[""Phone"", ""Monitor""]",4995.97,"{"""": ""15%""}",289590,1,South America +2023-04-08,10979,2698,"[""Keyboard""]",1271.96,{},77369,1,Europe +2023-04-13,10980,559,"[""Tablet"", ""Laptop"", ""Keyboard""]",1801.78,{},167252,1,Africa +2024-07-16,10981,1665,"[""Charger""]",4485.46,"{"""": ""10%""}",257426,1,South America +2024-06-28,10982,196,"[""Charger"", ""Monitor"", ""Laptop""]",620.77,{},193503,0,Africa +2023-04-18,10983,2857,"[""Headphones""]",4752.71,"{"""": ""8%""}",62172,1,Asia +2024-01-05,10984,7664,"[""Charger"", ""Phone""]",1692.35,"{""seasonal"": ""8%""}",147735,0,North America +2024-05-27,10985,7876,"[""Phone"", ""Charger"", ""Keyboard""]",266.93,"{""loyalty"": ""11%""}",266277,1,Asia +2024-04-06,10986,845,"[""Keyboard""]",3190.55,{},184828,0,Europe +2023-08-10,10987,5825,"[""Tablet""]",538.04,{},193821,0,Africa +2023-07-04,10988,3331,"[""Charger"", ""Tablet"", ""Monitor""]",753.29,"{""seasonal"": ""14%""}",268964,0,Asia +2023-10-15,10989,3822,"[""Phone"", ""Monitor""]",1598.82,{},293790,1,Africa +2024-03-23,10990,364,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3233.69,"{""loyalty"": ""5%""}",296660,0,Africa +2023-08-18,10991,6935,"[""Headphones""]",1061.61,"{""promo"": ""21%""}",254551,1,South America +2023-12-18,10992,810,"[""Headphones""]",433.5,{},97281,0,Asia +2024-03-30,10993,5103,"[""Phone""]",159.94,{},225333,1,Africa +2024-10-26,10994,4592,"[""Tablet"", ""Charger"", ""Monitor""]",2238.62,{},174099,1,South America +2024-01-24,10995,8420,"[""Phone"", ""Wireless Mouse""]",1881.1,{},223995,1,Africa +2023-04-20,10996,4742,"[""Headphones"", ""Laptop""]",734.58,"{""promo"": ""25%""}",298423,0,Asia +2023-07-13,10997,8066,"[""Tablet"", ""Headphones"", ""Monitor""]",1744.63,"{"""": ""24%""}",245132,0,Asia +2023-03-27,10998,1124,"[""Keyboard"", ""Charger""]",1716.18,"{""loyalty"": ""10%""}",121737,1,Africa +2023-11-28,10999,7820,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",272.76,"{"""": ""7%""}",183888,1,Europe +2024-12-02,11000,4488,"[""Tablet""]",1046.14,"{""seasonal"": ""24%""}",71594,1,South America +2024-04-20,11001,2357,"[""Headphones"", ""Phone"", ""Keyboard""]",713.03,{},261600,1,Africa +2024-02-22,11002,7017,"[""Headphones"", ""Laptop"", ""Keyboard""]",3453.51,"{""seasonal"": ""21%""}",153639,0,North America +2024-03-05,11003,1345,"[""Wireless Mouse""]",4032.06,{},247426,1,Europe +2024-05-31,11004,3737,"[""Monitor""]",2178.49,"{""loyalty"": ""27%""}",67462,1,South America +2023-08-23,11005,8061,"[""Laptop"", ""Headphones"", ""Phone""]",1665.53,"{""promo"": ""6%""}",162352,1,Europe +2024-11-18,11006,6011,"[""Phone""]",4575.96,"{""seasonal"": ""23%""}",116835,0,North America +2024-08-20,11007,5571,"[""Keyboard""]",2890.82,"{"""": ""28%""}",110101,0,Asia +2024-05-06,11008,2011,"[""Tablet""]",3719.14,"{""seasonal"": ""24%""}",162741,1,Europe +2024-05-05,11009,1741,"[""Phone""]",3068.59,"{"""": ""19%""}",226258,0,North America +2023-12-14,11010,1343,"[""Charger"", ""Headphones""]",1111.22,"{""seasonal"": ""30%""}",264341,1,Asia +2024-01-09,11011,6902,"[""Laptop"", ""Headphones""]",3982.47,{},100979,0,Africa +2023-07-20,11012,5696,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3407.1,"{""loyalty"": ""28%""}",76850,0,South America +2023-09-21,11013,476,"[""Monitor""]",4883.08,{},95963,0,Asia +2023-03-09,11014,1576,"[""Wireless Mouse""]",1822.98,"{"""": ""14%""}",52949,1,Africa +2024-08-17,11015,7531,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2658.28,{},155774,0,Africa +2023-03-02,11016,838,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4716.42,"{""seasonal"": ""15%""}",211076,1,South America +2023-09-28,11017,6523,"[""Charger"", ""Wireless Mouse""]",4856.97,"{""seasonal"": ""30%""}",149121,1,North America +2023-11-22,11018,1586,"[""Phone""]",2112.78,"{"""": ""16%""}",112595,0,Europe +2024-10-02,11019,706,"[""Phone"", ""Laptop""]",930.9,"{""loyalty"": ""19%""}",221883,0,Africa +2024-12-21,11020,7104,"[""Monitor"", ""Keyboard"", ""Charger""]",321.96,"{""seasonal"": ""8%""}",189040,0,South America +2023-06-29,11021,5196,"[""Monitor""]",71.73,{},70043,1,Asia +2023-01-02,11022,3827,"[""Charger"", ""Phone""]",4921.93,{},257343,1,Africa +2023-11-04,11023,8801,"[""Phone"", ""Charger""]",2641.56,"{"""": ""12%""}",32006,1,South America +2023-11-24,11024,7365,"[""Headphones""]",1239.55,"{""loyalty"": ""18%""}",74711,0,South America +2024-06-03,11025,1578,"[""Monitor"", ""Keyboard"", ""Charger""]",1008.23,{},229052,0,South America +2023-12-29,11026,457,"[""Laptop"", ""Headphones"", ""Monitor""]",615.03,"{"""": ""19%""}",214711,1,Asia +2023-01-07,11027,2847,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3622.13,{},139861,0,North America +2023-01-14,11028,5545,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3323.52,"{""seasonal"": ""7%""}",47022,1,South America +2023-09-18,11029,2310,"[""Headphones"", ""Laptop"", ""Phone""]",3426.78,{},94276,0,South America +2024-10-26,11030,4790,"[""Charger""]",3557.2,{},127069,1,Asia +2023-08-25,11031,2125,"[""Monitor"", ""Wireless Mouse""]",382.06,"{"""": ""21%""}",160213,0,Europe +2023-03-19,11032,7912,"[""Wireless Mouse"", ""Tablet""]",1040.55,{},183456,0,North America +2023-08-31,11033,8972,"[""Headphones""]",2531.25,{},160688,0,North America +2023-06-28,11034,7764,"[""Charger"", ""Laptop"", ""Keyboard""]",2537.73,{},24875,0,Africa +2024-02-21,11035,4499,"[""Keyboard""]",815.91,"{""seasonal"": ""20%""}",135540,1,Europe +2024-07-02,11036,5495,"[""Tablet"", ""Keyboard"", ""Charger""]",3539.57,{},168990,1,Asia +2023-10-21,11037,9770,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2461.77,"{""seasonal"": ""9%""}",286800,1,North America +2024-07-01,11038,4238,"[""Monitor"", ""Charger""]",527.96,"{""loyalty"": ""11%""}",134658,1,Europe +2024-07-10,11039,263,"[""Keyboard""]",4422.37,{},253278,1,North America +2024-06-07,11040,9545,"[""Monitor"", ""Phone"", ""Laptop""]",447.44,{},15538,0,North America +2024-12-19,11041,3157,"[""Headphones"", ""Charger""]",3452.55,{},61863,1,Asia +2023-04-09,11042,4598,"[""Headphones""]",354.23,"{""promo"": ""10%""}",260165,0,Africa +2023-12-13,11043,67,"[""Laptop""]",3037.14,"{""loyalty"": ""16%""}",86501,1,North America +2023-05-23,11044,1715,"[""Monitor"", ""Laptop""]",2136.62,"{""seasonal"": ""25%""}",170548,0,Europe +2023-07-14,11045,7060,"[""Keyboard"", ""Monitor"", ""Phone""]",1284.02,{},161431,1,North America +2023-11-18,11046,2662,"[""Keyboard"", ""Headphones""]",982.43,{},168851,0,Africa +2024-09-17,11047,8922,"[""Monitor"", ""Tablet"", ""Headphones""]",1061.48,{},266873,1,Europe +2024-01-20,11048,2975,"[""Charger"", ""Monitor"", ""Keyboard""]",3969.57,{},9154,0,South America +2024-06-04,11049,8724,"[""Monitor"", ""Laptop""]",3105.85,"{""promo"": ""13%""}",182062,1,North America +2023-03-20,11050,1971,"[""Tablet"", ""Headphones"", ""Keyboard""]",852.94,"{"""": ""23%""}",194223,1,South America +2024-03-27,11051,1596,"[""Tablet"", ""Wireless Mouse""]",3159.27,{},92881,1,Europe +2024-02-11,11052,8142,"[""Phone""]",84.28,"{""seasonal"": ""7%""}",171841,0,Europe +2023-10-04,11053,7423,"[""Monitor"", ""Headphones"", ""Charger""]",1135.32,"{"""": ""20%""}",283893,1,Europe +2024-12-29,11054,2593,"[""Wireless Mouse"", ""Headphones""]",1051.6,{},7484,1,Asia +2024-10-06,11055,8168,"[""Laptop"", ""Monitor""]",4785.41,"{""seasonal"": ""12%""}",27055,0,South America +2023-02-17,11056,6782,"[""Phone""]",1148.51,{},275196,1,South America +2024-05-30,11057,9376,"[""Phone"", ""Charger""]",3806.57,{},240034,1,North America +2023-05-29,11058,3961,"[""Wireless Mouse"", ""Laptop""]",669.03,"{""seasonal"": ""5%""}",195640,0,South America +2024-03-12,11059,5051,"[""Laptop"", ""Tablet"", ""Monitor""]",4226.03,{},268708,1,Asia +2023-05-19,11060,1115,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2518.66,{},270510,1,Africa +2024-10-13,11061,3042,"[""Monitor"", ""Phone""]",2038.76,{},169550,0,South America +2023-02-02,11062,4779,"[""Phone"", ""Charger""]",4015.48,{},299803,1,Asia +2024-11-28,11063,1695,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",804.28,"{""seasonal"": ""22%""}",99209,0,Africa +2024-08-14,11064,8692,"[""Phone""]",1563.25,"{""seasonal"": ""17%""}",53109,1,South America +2023-08-06,11065,7639,"[""Phone"", ""Monitor"", ""Tablet""]",2529.63,{},175145,0,Europe +2024-11-11,11066,4091,"[""Phone"", ""Monitor""]",3595.23,{},85754,1,Asia +2023-12-15,11067,8859,"[""Monitor"", ""Tablet""]",4063.5,"{""seasonal"": ""12%""}",163538,0,North America +2023-04-27,11068,350,"[""Keyboard"", ""Laptop"", ""Headphones""]",4007.73,{},239675,1,North America +2024-06-02,11069,7681,"[""Keyboard"", ""Headphones"", ""Laptop""]",3376.17,{},256508,0,North America +2024-05-06,11070,7460,"[""Headphones""]",2857.02,{},278676,1,North America +2024-08-31,11071,3774,"[""Monitor"", ""Phone""]",4927.96,{},242067,1,Europe +2023-11-01,11072,4501,"[""Keyboard"", ""Tablet""]",2009.49,"{""seasonal"": ""29%""}",73167,1,South America +2024-07-12,11073,4837,"[""Charger"", ""Tablet""]",3634.7,"{"""": ""11%""}",14017,1,South America +2024-04-01,11074,5500,"[""Keyboard"", ""Tablet"", ""Laptop""]",3206.37,"{""loyalty"": ""28%""}",161193,0,Africa +2023-06-01,11075,7278,"[""Charger""]",4286.03,{},28794,0,South America +2024-04-27,11076,9088,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2470.31,{},290367,1,Africa +2023-05-07,11077,3157,"[""Charger""]",373.09,"{"""": ""13%""}",168268,1,Europe +2023-03-19,11078,1947,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2996.19,{},68818,0,Europe +2024-05-10,11079,4747,"[""Phone"", ""Charger"", ""Headphones""]",4121.81,{},140239,1,Africa +2023-03-20,11080,7798,"[""Headphones"", ""Tablet""]",1672.53,"{"""": ""5%""}",57171,0,Africa +2023-12-24,11081,4356,"[""Phone""]",4605.26,{},33954,0,South America +2023-09-19,11082,4260,"[""Keyboard"", ""Tablet"", ""Charger""]",1311.37,"{""loyalty"": ""23%""}",217112,0,South America +2024-04-15,11083,5596,"[""Phone""]",232.32,"{"""": ""19%""}",41446,0,Asia +2024-11-11,11084,2543,"[""Headphones"", ""Charger""]",2671.0,{},119484,1,Europe +2024-01-14,11085,1685,"[""Tablet"", ""Headphones"", ""Phone""]",3605.61,"{""loyalty"": ""26%""}",97882,1,Africa +2023-08-29,11086,6467,"[""Tablet"", ""Keyboard""]",4194.67,"{"""": ""7%""}",23219,0,Asia +2023-06-19,11087,4267,"[""Laptop"", ""Tablet"", ""Phone""]",417.59,"{"""": ""22%""}",150231,0,South America +2023-01-02,11088,1796,"[""Headphones"", ""Phone""]",4637.82,"{""promo"": ""18%""}",34440,0,Africa +2024-12-13,11089,7061,"[""Keyboard"", ""Phone""]",2663.89,"{""seasonal"": ""8%""}",167494,0,Asia +2023-04-17,11090,9763,"[""Tablet"", ""Monitor""]",2024.12,"{""promo"": ""17%""}",200714,0,Europe +2023-01-15,11091,5509,"[""Charger""]",3737.09,"{""promo"": ""24%""}",150434,1,Asia +2023-03-31,11092,6744,"[""Headphones"", ""Keyboard"", ""Charger""]",4118.66,{},240710,0,South America +2024-08-06,11093,7200,"[""Phone""]",3830.65,"{"""": ""9%""}",43804,1,Asia +2024-06-13,11094,7844,"[""Tablet""]",805.95,"{"""": ""20%""}",5515,0,Europe +2024-02-15,11095,2853,"[""Phone""]",3041.04,"{""promo"": ""8%""}",222914,0,Europe +2024-02-28,11096,2672,"[""Laptop""]",2346.06,"{""seasonal"": ""17%""}",35418,0,North America +2024-10-08,11097,1483,"[""Tablet""]",4848.76,{},140897,0,South America +2023-09-21,11098,6387,"[""Charger"", ""Phone""]",4429.58,"{""promo"": ""11%""}",61832,0,Europe +2023-12-01,11099,8183,"[""Keyboard""]",2238.65,"{""loyalty"": ""27%""}",29080,1,South America +2024-02-17,11100,3278,"[""Tablet"", ""Wireless Mouse""]",1727.14,{},110034,1,Africa +2024-03-29,11101,5482,"[""Keyboard""]",4577.18,{},86973,0,Europe +2023-01-03,11102,3889,"[""Headphones"", ""Charger"", ""Laptop""]",3008.71,"{""seasonal"": ""19%""}",226145,0,North America +2024-10-24,11103,4080,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3925.49,"{"""": ""8%""}",126221,1,Europe +2024-09-29,11104,2672,"[""Tablet"", ""Phone"", ""Monitor""]",1273.59,"{"""": ""26%""}",193194,1,Africa +2024-12-20,11105,9771,"[""Keyboard""]",2394.45,"{""loyalty"": ""7%""}",137160,1,Africa +2023-05-30,11106,3114,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",731.58,{},166010,0,Europe +2023-11-26,11107,3218,"[""Tablet""]",4968.26,{},58172,1,Europe +2023-05-01,11108,2263,"[""Charger"", ""Tablet"", ""Laptop""]",1452.55,{},213579,1,North America +2024-06-21,11109,6401,"[""Phone"", ""Headphones"", ""Monitor""]",4658.68,{},209161,1,Asia +2023-12-01,11110,2912,"[""Charger""]",2464.77,{},19790,1,South America +2023-09-21,11111,5563,"[""Laptop"", ""Wireless Mouse""]",270.36,{},76724,1,Asia +2024-07-13,11112,355,"[""Charger""]",2287.16,"{""seasonal"": ""12%""}",208654,1,Asia +2023-03-09,11113,3711,"[""Wireless Mouse""]",2546.81,{},190479,1,Asia +2024-08-23,11114,9837,"[""Keyboard""]",4499.17,"{"""": ""15%""}",183661,1,Europe +2024-05-31,11115,8091,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1323.1,{},71012,1,North America +2023-07-29,11116,7332,"[""Headphones"", ""Monitor"", ""Charger""]",3681.7,{},292417,1,North America +2023-11-22,11117,6765,"[""Headphones""]",4077.78,"{""promo"": ""14%""}",54379,1,Asia +2023-01-29,11118,2365,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4090.85,{},263233,1,Africa +2024-11-28,11119,1823,"[""Wireless Mouse""]",1985.88,"{""loyalty"": ""24%""}",298069,1,Europe +2023-05-29,11120,1355,"[""Tablet""]",4675.14,{},86106,1,Europe +2024-04-18,11121,2137,"[""Headphones"", ""Monitor"", ""Tablet""]",3524.01,"{""seasonal"": ""17%""}",71878,0,Asia +2024-09-14,11122,9015,"[""Monitor"", ""Headphones"", ""Tablet""]",4512.91,{},220439,1,South America +2024-11-25,11123,7873,"[""Headphones"", ""Phone""]",156.62,{},138876,0,South America +2023-11-13,11124,1161,"[""Headphones"", ""Phone""]",2429.42,{},160487,1,South America +2023-09-17,11125,7638,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2114.07,{},224746,0,Europe +2024-03-29,11126,9913,"[""Wireless Mouse"", ""Monitor""]",2960.16,{},82265,1,South America +2024-11-19,11127,3734,"[""Wireless Mouse"", ""Tablet""]",4424.44,"{"""": ""14%""}",127421,1,Africa +2024-01-17,11128,4215,"[""Keyboard"", ""Wireless Mouse""]",1295.09,"{""loyalty"": ""30%""}",25165,0,North America +2024-07-17,11129,638,"[""Keyboard"", ""Phone""]",4423.95,"{""seasonal"": ""15%""}",10105,0,North America +2023-10-02,11130,814,"[""Keyboard"", ""Wireless Mouse""]",986.2,{},194950,0,Africa +2024-08-05,11131,8456,"[""Charger"", ""Keyboard""]",2815.47,{},173616,1,Asia +2024-02-12,11132,3285,"[""Monitor"", ""Charger"", ""Laptop""]",892.46,{},17217,1,Europe +2023-04-02,11133,4588,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4056.72,{},285936,1,Asia +2024-03-23,11134,2600,"[""Monitor"", ""Charger"", ""Phone""]",3621.11,{},41613,1,North America +2024-06-05,11135,861,"[""Laptop"", ""Phone"", ""Charger""]",210.71,{},286471,0,Africa +2024-07-09,11136,8793,"[""Phone""]",4837.38,"{""seasonal"": ""8%""}",99434,0,Asia +2023-11-25,11137,4754,"[""Monitor"", ""Phone"", ""Tablet""]",3309.61,{},214558,0,Africa +2024-06-04,11138,7661,"[""Tablet"", ""Wireless Mouse""]",2043.32,{},251097,1,Asia +2024-07-08,11139,8644,"[""Charger""]",2974.14,"{"""": ""17%""}",54944,1,North America +2024-07-09,11140,3256,"[""Headphones"", ""Tablet"", ""Laptop""]",3714.83,{},261897,1,Asia +2023-05-19,11141,229,"[""Monitor"", ""Headphones""]",3750.91,"{""loyalty"": ""9%""}",149371,0,Asia +2024-11-07,11142,9050,"[""Tablet"", ""Monitor"", ""Phone""]",2197.6,{},258464,1,Europe +2024-04-09,11143,6205,"[""Laptop"", ""Tablet"", ""Phone""]",2769.08,{},173202,0,South America +2023-10-07,11144,5239,"[""Charger"", ""Headphones"", ""Phone""]",2989.88,{},287873,1,Asia +2024-02-09,11145,9038,"[""Monitor"", ""Tablet""]",2788.58,"{""promo"": ""9%""}",79140,1,Africa +2023-07-12,11146,1098,"[""Tablet""]",3070.2,{},153954,0,South America +2024-11-16,11147,8604,"[""Monitor"", ""Phone"", ""Laptop""]",4667.17,"{""loyalty"": ""27%""}",85707,1,North America +2023-01-22,11148,4427,"[""Monitor"", ""Keyboard""]",154.92,"{"""": ""15%""}",71242,0,South America +2023-03-08,11149,5637,"[""Tablet"", ""Monitor"", ""Phone""]",672.12,{},235133,1,Europe +2023-03-29,11150,460,"[""Laptop"", ""Keyboard""]",2757.07,{},30407,0,Europe +2023-12-18,11151,5176,"[""Monitor"", ""Keyboard"", ""Charger""]",3501.01,{},212346,1,Europe +2024-03-29,11152,1636,"[""Tablet"", ""Wireless Mouse""]",1948.45,{},17587,1,North America +2024-05-21,11153,3082,"[""Headphones""]",3275.7,{},254985,0,Africa +2023-06-06,11154,440,"[""Laptop"", ""Keyboard""]",711.34,"{""promo"": ""8%""}",67762,1,Africa +2024-06-15,11155,5038,"[""Monitor"", ""Laptop"", ""Headphones""]",2207.6,{},48618,1,Asia +2023-09-25,11156,1256,"[""Wireless Mouse""]",3565.81,"{""loyalty"": ""10%""}",136796,0,Africa +2024-11-27,11157,2734,"[""Monitor"", ""Wireless Mouse""]",653.59,"{""promo"": ""13%""}",238993,0,Africa +2023-09-10,11158,9709,"[""Wireless Mouse"", ""Laptop""]",1030.1,{},50876,1,North America +2023-10-06,11159,5862,"[""Keyboard"", ""Phone"", ""Laptop""]",2623.88,"{""seasonal"": ""8%""}",198210,0,Asia +2023-02-03,11160,7147,"[""Laptop""]",2598.37,"{""loyalty"": ""10%""}",294072,0,Asia +2023-09-10,11161,1223,"[""Wireless Mouse"", ""Laptop""]",3830.98,{},168246,1,Africa +2024-03-09,11162,9628,"[""Phone"", ""Laptop"", ""Tablet""]",2124.9,{},231243,0,Africa +2023-10-21,11163,4486,"[""Tablet""]",4801.32,"{""promo"": ""14%""}",30204,1,Asia +2024-03-17,11164,5259,"[""Phone"", ""Keyboard""]",2827.07,"{"""": ""18%""}",181084,0,Europe +2023-07-24,11165,1311,"[""Headphones"", ""Laptop""]",4435.39,"{""seasonal"": ""16%""}",281931,1,North America +2024-03-22,11166,4621,"[""Charger""]",2577.74,{},262159,1,Africa +2024-11-24,11167,5080,"[""Tablet""]",4384.52,{},117594,0,Europe +2024-12-17,11168,3435,"[""Charger""]",2820.19,"{""seasonal"": ""12%""}",87356,1,South America +2023-09-16,11169,9728,"[""Monitor"", ""Laptop"", ""Headphones""]",99.68,{},265986,0,South America +2023-03-13,11170,1307,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2521.44,{},143901,1,Europe +2023-07-13,11171,8174,"[""Headphones"", ""Monitor""]",3058.6,{},201662,0,Europe +2024-09-14,11172,8210,"[""Keyboard""]",4390.14,"{""loyalty"": ""14%""}",210087,0,North America +2024-08-05,11173,1849,"[""Phone"", ""Headphones""]",218.13,"{"""": ""19%""}",224139,0,South America +2023-12-24,11174,7271,"[""Laptop"", ""Tablet"", ""Phone""]",4574.38,"{""seasonal"": ""9%""}",191552,1,North America +2023-05-23,11175,5914,"[""Tablet"", ""Laptop""]",3274.6,"{"""": ""28%""}",256180,1,South America +2023-09-15,11176,9467,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2048.28,{},170222,1,North America +2024-01-01,11177,6981,"[""Laptop""]",2563.32,{},156783,0,North America +2023-07-04,11178,2031,"[""Wireless Mouse"", ""Phone"", ""Charger""]",202.96,{},10321,1,North America +2023-10-15,11179,6540,"[""Laptop""]",4259.71,{},243942,0,South America +2024-05-11,11180,476,"[""Wireless Mouse""]",1790.2,{},207167,0,North America +2023-04-28,11181,1409,"[""Headphones"", ""Wireless Mouse""]",3443.64,{},277325,0,Europe +2024-11-10,11182,6076,"[""Headphones""]",283.99,"{"""": ""19%""}",198315,0,Europe +2023-03-11,11183,8241,"[""Phone""]",4085.57,{},105266,1,Asia +2024-01-03,11184,9123,"[""Keyboard"", ""Headphones""]",912.99,"{""promo"": ""22%""}",6153,0,Africa +2024-10-01,11185,2584,"[""Tablet"", ""Laptop"", ""Headphones""]",3157.94,"{""loyalty"": ""21%""}",109544,0,Asia +2023-08-06,11186,3252,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1259.15,"{""seasonal"": ""6%""}",99428,1,Europe +2023-12-24,11187,4648,"[""Wireless Mouse"", ""Charger""]",3489.42,{},171314,0,Europe +2024-10-12,11188,6235,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",867.71,{},18051,1,Africa +2023-12-17,11189,1840,"[""Tablet"", ""Charger"", ""Laptop""]",2082.92,{},120200,1,Asia +2023-12-06,11190,8829,"[""Charger"", ""Keyboard""]",2540.44,"{""promo"": ""20%""}",193214,1,South America +2024-11-09,11191,7140,"[""Charger""]",3962.7,"{""promo"": ""14%""}",78234,0,North America +2024-05-15,11192,9851,"[""Keyboard"", ""Monitor""]",1360.92,{},123520,0,South America +2024-08-14,11193,5441,"[""Wireless Mouse"", ""Tablet""]",4340.27,{},274401,1,Europe +2023-01-06,11194,541,"[""Headphones""]",1107.92,"{"""": ""15%""}",167509,1,Asia +2023-07-01,11195,2857,"[""Charger""]",3016.02,"{"""": ""22%""}",245604,0,South America +2024-05-21,11196,1640,"[""Wireless Mouse""]",787.97,"{""promo"": ""17%""}",124809,1,Africa +2023-05-17,11197,7896,"[""Tablet""]",2385.52,{},96704,0,Europe +2024-03-21,11198,2486,"[""Keyboard""]",1977.53,{},201870,1,South America +2024-01-17,11199,1064,"[""Laptop"", ""Monitor""]",2555.35,{},165877,0,Europe +2023-07-07,11200,3697,"[""Charger"", ""Phone"", ""Tablet""]",2680.31,{},61019,1,Asia +2024-03-19,11201,6136,"[""Laptop"", ""Keyboard""]",522.68,"{""loyalty"": ""14%""}",117099,1,North America +2024-07-08,11202,9559,"[""Laptop"", ""Charger""]",4426.8,"{"""": ""16%""}",108726,1,North America +2024-05-18,11203,8490,"[""Keyboard""]",1149.0,"{""promo"": ""13%""}",92812,1,Africa +2023-03-03,11204,8862,"[""Monitor"", ""Phone""]",2559.35,{},265660,0,Europe +2024-05-08,11205,376,"[""Headphones"", ""Charger"", ""Laptop""]",173.27,{},123479,1,North America +2024-11-03,11206,4666,"[""Charger""]",4770.82,{},185950,0,South America +2024-06-27,11207,3272,"[""Phone""]",3802.17,{},166695,1,South America +2023-11-10,11208,4173,"[""Keyboard""]",1096.59,"{"""": ""12%""}",210793,0,Asia +2023-07-22,11209,715,"[""Charger""]",201.39,"{""loyalty"": ""29%""}",17026,1,Africa +2023-12-23,11210,3405,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4115.27,"{"""": ""25%""}",174680,0,North America +2024-01-07,11211,5982,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2629.21,"{""promo"": ""21%""}",218745,1,Africa +2024-10-20,11212,3253,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2970.46,{},223752,0,Europe +2024-08-19,11213,6403,"[""Keyboard"", ""Charger""]",2925.0,"{""seasonal"": ""25%""}",127014,1,Africa +2024-06-04,11214,2366,"[""Tablet""]",3969.28,{},92939,1,North America +2023-05-27,11215,7124,"[""Headphones""]",3466.3,{},128838,0,Asia +2023-08-22,11216,6250,"[""Monitor""]",1647.18,{},18840,1,Asia +2024-10-08,11217,21,"[""Monitor""]",2645.96,{},136478,1,South America +2024-10-07,11218,7436,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1669.61,{},193383,1,Europe +2024-02-18,11219,3807,"[""Laptop""]",3001.47,{},122566,0,South America +2023-08-16,11220,7716,"[""Keyboard"", ""Charger""]",2377.96,"{"""": ""28%""}",135401,0,South America +2024-09-14,11221,8458,"[""Laptop""]",1711.83,"{""loyalty"": ""26%""}",135184,1,South America +2024-05-14,11222,9751,"[""Tablet""]",2065.76,"{"""": ""29%""}",280602,1,South America +2023-09-22,11223,6755,"[""Keyboard"", ""Headphones"", ""Tablet""]",2813.24,{},42093,1,South America +2024-09-02,11224,1829,"[""Laptop"", ""Monitor"", ""Tablet""]",3329.27,{},214868,1,North America +2023-03-24,11225,4685,"[""Headphones"", ""Monitor"", ""Tablet""]",4645.23,"{""seasonal"": ""7%""}",46255,0,North America +2023-06-29,11226,9437,"[""Headphones"", ""Tablet""]",2559.51,"{"""": ""19%""}",44619,1,Europe +2024-02-11,11227,2080,"[""Tablet"", ""Keyboard"", ""Monitor""]",4521.3,"{"""": ""19%""}",268531,0,Europe +2023-07-13,11228,4495,"[""Tablet""]",3408.28,{},54599,1,South America +2023-01-16,11229,6086,"[""Tablet"", ""Monitor"", ""Keyboard""]",2752.34,"{""loyalty"": ""5%""}",194204,1,Europe +2023-01-22,11230,7649,"[""Tablet"", ""Laptop""]",3506.12,"{""seasonal"": ""14%""}",80741,1,Asia +2024-08-10,11231,6176,"[""Keyboard"", ""Headphones"", ""Tablet""]",2186.81,{},99187,1,Asia +2023-07-25,11232,1087,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4981.58,{},273876,0,North America +2024-09-11,11233,2095,"[""Wireless Mouse""]",1998.37,"{"""": ""21%""}",266870,0,South America +2023-10-16,11234,874,"[""Charger""]",4184.64,"{"""": ""15%""}",18386,0,North America +2024-12-23,11235,3297,"[""Keyboard"", ""Tablet"", ""Charger""]",1026.92,"{""loyalty"": ""5%""}",269462,0,South America +2023-09-20,11236,4917,"[""Tablet"", ""Phone"", ""Headphones""]",1813.63,"{""seasonal"": ""9%""}",203978,0,Asia +2024-07-09,11237,521,"[""Keyboard"", ""Charger""]",270.72,{},57059,0,Asia +2024-09-07,11238,2606,"[""Keyboard"", ""Phone"", ""Monitor""]",806.79,{},283258,0,Asia +2024-07-27,11239,3757,"[""Tablet""]",644.1,"{""seasonal"": ""10%""}",29386,0,Europe +2023-05-10,11240,6201,"[""Headphones"", ""Keyboard"", ""Tablet""]",1492.08,"{""seasonal"": ""20%""}",264031,1,Asia +2024-10-20,11241,3106,"[""Charger"", ""Laptop"", ""Tablet""]",1194.55,{},193124,0,Europe +2024-02-11,11242,5925,"[""Keyboard"", ""Laptop"", ""Phone""]",4491.19,{},51715,0,North America +2023-10-14,11243,993,"[""Wireless Mouse"", ""Charger""]",2918.75,{},76458,1,South America +2023-05-23,11244,5556,"[""Phone"", ""Laptop"", ""Charger""]",2631.26,{},261094,0,Asia +2024-09-15,11245,2700,"[""Keyboard"", ""Laptop""]",2551.12,"{""loyalty"": ""26%""}",100104,1,Europe +2024-09-25,11246,9617,"[""Monitor""]",1134.66,"{""seasonal"": ""20%""}",132854,1,Asia +2023-03-10,11247,807,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2489.92,{},183556,0,Africa +2023-08-17,11248,2958,"[""Keyboard"", ""Laptop"", ""Charger""]",436.62,"{"""": ""11%""}",55769,0,North America +2024-10-10,11249,6697,"[""Headphones""]",4167.06,{},77356,1,Asia +2023-02-10,11250,332,"[""Headphones""]",1219.9,"{"""": ""9%""}",99952,0,South America +2023-01-04,11251,2730,"[""Tablet"", ""Phone""]",1052.89,{},86974,0,South America +2024-09-06,11252,7929,"[""Monitor"", ""Wireless Mouse""]",2689.42,{},178275,1,Africa +2024-05-24,11253,7631,"[""Charger"", ""Keyboard""]",1282.73,{},71223,0,Asia +2023-02-15,11254,1994,"[""Keyboard""]",375.76,{},256709,1,Africa +2023-08-03,11255,7423,"[""Headphones"", ""Monitor""]",433.83,{},258323,1,Africa +2023-05-04,11256,3357,"[""Laptop""]",4295.97,"{""promo"": ""22%""}",253041,0,Africa +2024-09-09,11257,1099,"[""Charger""]",705.64,"{"""": ""22%""}",202820,1,Europe +2024-10-09,11258,8305,"[""Keyboard"", ""Headphones""]",3983.85,"{""loyalty"": ""14%""}",253702,1,Africa +2023-11-25,11259,5938,"[""Headphones"", ""Keyboard""]",4689.85,{},8443,1,North America +2023-08-15,11260,1961,"[""Laptop"", ""Charger"", ""Phone""]",1083.46,"{""seasonal"": ""29%""}",129643,1,Africa +2023-07-07,11261,4949,"[""Charger""]",1010.07,{},247343,1,Europe +2023-06-10,11262,8188,"[""Laptop"", ""Monitor"", ""Keyboard""]",2395.87,{},152969,1,Asia +2024-07-22,11263,5155,"[""Wireless Mouse"", ""Laptop""]",1272.29,"{""loyalty"": ""13%""}",261551,1,Europe +2024-05-13,11264,6689,"[""Tablet"", ""Monitor""]",63.74,"{"""": ""8%""}",140171,0,North America +2024-01-07,11265,4812,"[""Tablet""]",4218.11,{},33996,1,Asia +2024-03-13,11266,4963,"[""Keyboard""]",3769.94,{},47405,1,Europe +2024-03-27,11267,8455,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",73.98,"{"""": ""21%""}",271703,0,Asia +2024-07-14,11268,5827,"[""Keyboard"", ""Laptop""]",3313.29,"{""promo"": ""15%""}",71707,0,Asia +2023-02-28,11269,9451,"[""Headphones""]",1527.53,{},42581,0,North America +2023-05-29,11270,3278,"[""Keyboard"", ""Headphones""]",2843.01,"{""promo"": ""10%""}",242308,0,South America +2024-07-02,11271,567,"[""Wireless Mouse""]",4308.24,{},24167,0,Africa +2023-04-29,11272,2017,"[""Laptop"", ""Phone""]",4399.83,"{""promo"": ""10%""}",57986,1,North America +2024-09-29,11273,8841,"[""Phone"", ""Monitor""]",1532.12,{},78843,0,Europe +2023-08-13,11274,2744,"[""Headphones""]",4920.32,{},176343,1,Europe +2023-05-07,11275,7498,"[""Laptop"", ""Phone""]",1302.64,{},260966,0,Africa +2024-05-27,11276,1550,"[""Headphones"", ""Laptop""]",3875.44,"{""loyalty"": ""13%""}",87643,0,Europe +2023-02-21,11277,6697,"[""Monitor"", ""Laptop""]",2190.37,{},118875,0,Asia +2024-03-31,11278,1965,"[""Laptop"", ""Headphones"", ""Keyboard""]",3759.13,"{""seasonal"": ""25%""}",25303,0,North America +2023-08-08,11279,1231,"[""Tablet"", ""Charger"", ""Keyboard""]",4510.85,{},217884,0,Africa +2024-05-29,11280,5145,"[""Wireless Mouse""]",3552.09,{},36742,0,Asia +2024-06-10,11281,7433,"[""Wireless Mouse""]",2405.62,"{""seasonal"": ""24%""}",93565,1,Europe +2023-06-03,11282,4949,"[""Phone"", ""Headphones""]",71.61,"{""seasonal"": ""23%""}",71498,1,Europe +2024-01-14,11283,1126,"[""Tablet""]",3568.88,"{"""": ""22%""}",155513,1,South America +2023-01-30,11284,3892,"[""Charger"", ""Keyboard""]",797.98,"{""seasonal"": ""13%""}",70327,0,Europe +2024-02-13,11285,907,"[""Tablet"", ""Headphones"", ""Phone""]",1099.06,"{"""": ""7%""}",17220,0,Europe +2023-04-11,11286,2408,"[""Tablet""]",2751.46,"{""promo"": ""5%""}",194652,0,Europe +2024-05-12,11287,9130,"[""Tablet"", ""Keyboard"", ""Laptop""]",1368.77,{},229073,0,South America +2024-03-16,11288,1849,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",289.09,"{""seasonal"": ""16%""}",166041,0,Europe +2024-07-28,11289,7911,"[""Laptop""]",206.31,"{""promo"": ""20%""}",228530,1,Asia +2024-08-21,11290,5981,"[""Phone"", ""Laptop"", ""Tablet""]",2331.93,{},2963,1,South America +2023-03-18,11291,6829,"[""Wireless Mouse""]",3233.86,"{""promo"": ""26%""}",125271,1,Africa +2023-03-27,11292,896,"[""Tablet""]",1603.52,"{""loyalty"": ""24%""}",111755,1,Europe +2024-09-09,11293,9292,"[""Monitor""]",3176.85,"{"""": ""10%""}",113288,0,Africa +2024-08-18,11294,5345,"[""Laptop"", ""Monitor""]",660.63,"{""seasonal"": ""5%""}",298714,0,Asia +2023-07-18,11295,9407,"[""Charger"", ""Headphones""]",549.58,{},89055,1,Europe +2024-02-01,11296,5154,"[""Monitor"", ""Wireless Mouse""]",2563.59,"{""loyalty"": ""19%""}",295067,1,Asia +2024-07-10,11297,1303,"[""Tablet"", ""Keyboard"", ""Monitor""]",2675.62,{},267202,0,Asia +2023-07-03,11298,2649,"[""Monitor"", ""Laptop""]",2035.85,"{""loyalty"": ""7%""}",45561,0,Europe +2024-04-04,11299,2674,"[""Headphones"", ""Phone"", ""Tablet""]",4997.62,{},41037,0,Africa +2023-05-03,11300,8694,"[""Tablet"", ""Monitor""]",769.74,{},104658,1,South America +2024-03-28,11301,4750,"[""Laptop"", ""Keyboard"", ""Tablet""]",1083.38,"{""promo"": ""15%""}",23692,0,Europe +2024-01-20,11302,6247,"[""Monitor"", ""Wireless Mouse""]",4819.49,{},125268,0,South America +2024-05-27,11303,6601,"[""Monitor""]",2309.21,{},211370,1,South America +2024-09-25,11304,8587,"[""Headphones"", ""Charger"", ""Monitor""]",411.71,"{""loyalty"": ""24%""}",34394,0,Europe +2024-03-01,11305,5386,"[""Phone"", ""Keyboard"", ""Tablet""]",3490.87,"{""seasonal"": ""8%""}",263717,0,Europe +2023-10-13,11306,9203,"[""Headphones""]",3059.43,"{""loyalty"": ""9%""}",271090,1,Asia +2024-03-07,11307,3336,"[""Laptop""]",4900.3,"{""loyalty"": ""25%""}",22531,1,South America +2023-07-03,11308,4718,"[""Laptop"", ""Keyboard""]",3672.89,"{""loyalty"": ""27%""}",244288,1,Europe +2023-07-13,11309,7769,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4713.96,{},153121,1,North America +2024-10-07,11310,6011,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2291.57,"{"""": ""5%""}",279371,1,South America +2024-05-27,11311,8269,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",693.37,{},175898,1,Asia +2024-05-06,11312,392,"[""Headphones""]",4515.24,"{""promo"": ""26%""}",206115,0,Africa +2024-09-26,11313,4035,"[""Laptop""]",1941.58,"{"""": ""20%""}",198509,0,North America +2024-05-20,11314,8969,"[""Tablet"", ""Phone""]",4796.78,{},34144,1,Africa +2024-01-14,11315,9744,"[""Tablet""]",1168.36,{},19741,1,Europe +2024-06-26,11316,928,"[""Monitor"", ""Headphones"", ""Phone""]",2011.9,"{""seasonal"": ""23%""}",14236,0,South America +2024-12-24,11317,9701,"[""Keyboard"", ""Headphones""]",131.1,{},292788,1,South America +2024-08-12,11318,8098,"[""Keyboard"", ""Laptop"", ""Headphones""]",559.72,"{""loyalty"": ""28%""}",71567,0,Asia +2024-11-20,11319,2141,"[""Headphones"", ""Laptop"", ""Tablet""]",4791.29,{},207669,1,Africa +2024-10-04,11320,9940,"[""Keyboard"", ""Laptop""]",4998.37,"{""loyalty"": ""28%""}",282141,0,Europe +2023-08-29,11321,5273,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2756.14,{},217593,1,North America +2024-12-09,11322,4085,"[""Laptop"", ""Tablet""]",871.1,"{""promo"": ""19%""}",87505,0,North America +2024-07-20,11323,8324,"[""Phone"", ""Charger""]",3933.62,{},251794,1,South America +2024-02-24,11324,7441,"[""Wireless Mouse"", ""Phone""]",373.44,"{""promo"": ""17%""}",63328,0,Europe +2023-01-17,11325,6735,"[""Tablet""]",1794.19,"{""seasonal"": ""12%""}",253778,1,Asia +2023-05-02,11326,1871,"[""Charger""]",599.96,{},60947,1,South America +2023-03-29,11327,7292,"[""Headphones""]",3662.6,{},6048,0,Europe +2024-03-18,11328,7557,"[""Phone"", ""Headphones"", ""Charger""]",3259.6,{},205782,0,Asia +2024-04-06,11329,3798,"[""Phone"", ""Tablet"", ""Charger""]",2669.74,"{""seasonal"": ""14%""}",157227,0,Africa +2024-03-27,11330,8571,"[""Laptop""]",3981.01,"{""promo"": ""30%""}",258733,1,Asia +2023-09-09,11331,2484,"[""Phone"", ""Laptop"", ""Keyboard""]",505.71,"{"""": ""21%""}",190236,0,Africa +2023-06-25,11332,7525,"[""Tablet""]",4080.11,{},290642,1,Africa +2024-05-25,11333,7494,"[""Tablet""]",3026.47,{},299945,1,Africa +2023-10-09,11334,4640,"[""Headphones""]",4605.67,{},2259,1,Asia +2023-07-11,11335,8290,"[""Wireless Mouse"", ""Charger""]",2386.21,{},243116,0,Asia +2023-10-18,11336,6154,"[""Tablet"", ""Monitor"", ""Phone""]",1211.43,"{""loyalty"": ""11%""}",102228,0,North America +2024-09-01,11337,8585,"[""Wireless Mouse"", ""Charger""]",4408.51,"{""loyalty"": ""14%""}",196025,1,North America +2023-09-08,11338,2099,"[""Monitor"", ""Phone"", ""Keyboard""]",587.53,{},241048,1,South America +2024-09-30,11339,5230,"[""Charger""]",3810.6,"{""seasonal"": ""12%""}",40266,0,South America +2024-02-06,11340,2630,"[""Keyboard"", ""Headphones"", ""Charger""]",4448.53,"{"""": ""20%""}",108740,1,South America +2024-03-31,11341,633,"[""Laptop""]",2531.29,"{""loyalty"": ""5%""}",111267,0,Africa +2023-07-02,11342,8788,"[""Charger""]",2112.24,"{"""": ""23%""}",291720,1,Europe +2023-05-07,11343,7862,"[""Tablet"", ""Laptop""]",1617.71,{},19561,0,Europe +2024-11-12,11344,8209,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",621.27,{},120297,0,Europe +2024-11-17,11345,9709,"[""Phone"", ""Monitor"", ""Laptop""]",2015.85,{},66188,0,South America +2024-04-24,11346,2113,"[""Laptop"", ""Wireless Mouse""]",2011.07,"{""promo"": ""6%""}",110108,0,Africa +2024-11-04,11347,8463,"[""Keyboard"", ""Headphones""]",4994.42,{},253475,0,North America +2023-01-23,11348,192,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3557.56,{},129186,0,South America +2024-05-06,11349,6554,"[""Monitor"", ""Headphones"", ""Charger""]",2163.21,{},288624,0,South America +2023-01-18,11350,3296,"[""Laptop"", ""Phone""]",927.13,{},286598,0,Asia +2023-11-13,11351,4439,"[""Phone"", ""Laptop"", ""Charger""]",4926.53,"{""loyalty"": ""18%""}",295024,0,Africa +2024-10-24,11352,8436,"[""Charger""]",1777.95,"{"""": ""22%""}",256192,0,Asia +2024-06-21,11353,4426,"[""Charger"", ""Laptop""]",3568.97,"{""promo"": ""29%""}",107685,0,Africa +2024-08-02,11354,9617,"[""Headphones""]",2755.82,"{"""": ""5%""}",19727,1,North America +2023-07-25,11355,9201,"[""Laptop""]",699.11,{},290899,1,North America +2023-12-21,11356,5537,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1757.33,"{""seasonal"": ""8%""}",21162,1,South America +2023-08-19,11357,5866,"[""Tablet""]",1711.13,{},78165,1,South America +2024-03-31,11358,9761,"[""Headphones"", ""Keyboard"", ""Tablet""]",4105.17,"{""seasonal"": ""12%""}",264659,1,Europe +2024-12-19,11359,4454,"[""Tablet""]",1381.62,"{""promo"": ""6%""}",270233,1,Africa +2023-12-28,11360,9664,"[""Keyboard""]",3850.53,{},3489,0,South America +2024-02-07,11361,2568,"[""Charger"", ""Keyboard"", ""Laptop""]",2037.36,{},152591,1,Africa +2023-03-27,11362,5058,"[""Laptop"", ""Monitor""]",4621.37,"{""seasonal"": ""21%""}",297870,1,Africa +2024-04-22,11363,9111,"[""Laptop""]",998.6,"{"""": ""11%""}",216001,0,Asia +2024-10-16,11364,869,"[""Wireless Mouse""]",1937.88,{},233528,0,Europe +2024-04-08,11365,9853,"[""Headphones""]",232.6,"{""promo"": ""10%""}",33622,0,South America +2024-11-03,11366,5207,"[""Charger"", ""Keyboard""]",3269.51,"{""loyalty"": ""14%""}",50716,1,South America +2023-12-04,11367,4392,"[""Headphones"", ""Monitor""]",2593.27,{},202961,1,North America +2024-08-24,11368,2120,"[""Keyboard"", ""Tablet""]",4261.93,{},155828,0,Africa +2024-06-29,11369,5084,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3002.15,"{""promo"": ""30%""}",254944,1,Africa +2024-11-12,11370,155,"[""Monitor""]",2517.73,"{""loyalty"": ""30%""}",149387,0,Africa +2024-07-02,11371,5799,"[""Monitor"", ""Tablet"", ""Charger""]",4733.29,{},256616,1,North America +2023-09-18,11372,4534,"[""Tablet"", ""Monitor"", ""Phone""]",3503.69,"{""loyalty"": ""20%""}",171439,0,South America +2024-04-19,11373,5566,"[""Keyboard"", ""Charger"", ""Phone""]",402.36,"{"""": ""18%""}",277156,0,Europe +2023-07-20,11374,7405,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4817.59,"{"""": ""20%""}",138121,0,Asia +2024-08-10,11375,1809,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2451.84,"{""promo"": ""5%""}",143990,0,North America +2024-10-14,11376,5070,"[""Monitor""]",2026.91,{},195677,1,North America +2023-09-20,11377,5914,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1731.32,{},235122,1,North America +2024-01-31,11378,8311,"[""Phone""]",2614.56,"{"""": ""22%""}",45613,0,South America +2023-10-24,11379,1136,"[""Keyboard"", ""Wireless Mouse""]",642.17,"{""loyalty"": ""17%""}",298524,0,South America +2023-02-18,11380,5643,"[""Tablet"", ""Monitor"", ""Headphones""]",4082.88,"{""loyalty"": ""11%""}",243922,1,Europe +2024-12-09,11381,7519,"[""Phone"", ""Tablet""]",3204.95,"{""promo"": ""19%""}",294001,0,Africa +2024-06-05,11382,3640,"[""Charger""]",2090.68,"{""promo"": ""13%""}",181254,1,South America +2023-11-09,11383,7363,"[""Laptop""]",4906.57,"{""seasonal"": ""29%""}",166600,1,Africa +2024-06-15,11384,383,"[""Phone""]",3691.44,"{"""": ""11%""}",178966,0,North America +2023-07-08,11385,2040,"[""Charger"", ""Laptop"", ""Monitor""]",2203.32,{},294737,0,North America +2024-04-22,11386,3187,"[""Tablet""]",4739.85,"{"""": ""24%""}",136280,0,Asia +2024-06-06,11387,1135,"[""Tablet"", ""Keyboard"", ""Charger""]",2938.35,{},272068,1,Europe +2024-02-27,11388,4834,"[""Monitor"", ""Keyboard""]",1120.96,{},228141,0,North America +2023-01-31,11389,8198,"[""Keyboard"", ""Laptop""]",1161.3,{},287915,0,Africa +2023-01-01,11390,5214,"[""Charger""]",583.46,"{"""": ""12%""}",231073,0,North America +2024-06-02,11391,1408,"[""Charger"", ""Monitor"", ""Headphones""]",2446.43,"{""seasonal"": ""5%""}",137186,1,North America +2024-01-18,11392,4602,"[""Laptop"", ""Wireless Mouse""]",4046.41,"{""promo"": ""6%""}",296133,0,Europe +2023-07-20,11393,3716,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3649.39,{},181624,0,Asia +2023-09-22,11394,608,"[""Charger""]",4845.15,{},86471,0,Europe +2024-04-17,11395,5366,"[""Tablet"", ""Wireless Mouse""]",2330.1,"{"""": ""11%""}",57251,1,North America +2024-10-22,11396,6910,"[""Laptop""]",4966.62,"{""promo"": ""27%""}",77243,0,Africa +2024-04-29,11397,8924,"[""Laptop"", ""Charger""]",4079.29,{},218649,1,Asia +2024-05-23,11398,2812,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4523.55,{},39547,0,South America +2023-09-21,11399,861,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",673.76,"{""promo"": ""15%""}",44055,1,Asia +2023-06-18,11400,4955,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2790.09,"{"""": ""20%""}",284669,1,South America +2023-01-15,11401,6792,"[""Wireless Mouse"", ""Monitor""]",1006.57,{},276933,0,Africa +2024-04-26,11402,282,"[""Tablet"", ""Charger"", ""Headphones""]",3578.45,{},82906,0,North America +2023-09-04,11403,5290,"[""Laptop"", ""Keyboard"", ""Phone""]",3885.66,{},79933,1,Europe +2023-12-14,11404,9869,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",267.96,{},150739,0,South America +2024-09-13,11405,2897,"[""Laptop"", ""Keyboard""]",3281.58,"{""loyalty"": ""24%""}",103749,1,Africa +2024-08-28,11406,1280,"[""Keyboard"", ""Phone"", ""Charger""]",4411.51,{},10197,1,Asia +2024-04-22,11407,4636,"[""Charger""]",752.3,"{""seasonal"": ""30%""}",233491,0,Asia +2024-08-22,11408,8739,"[""Monitor"", ""Phone""]",1345.13,{},135121,0,Africa +2023-02-09,11409,2773,"[""Tablet"", ""Charger"", ""Laptop""]",893.63,"{""seasonal"": ""6%""}",155299,1,North America +2023-07-26,11410,3980,"[""Headphones""]",3315.14,"{"""": ""22%""}",88896,0,Asia +2023-12-20,11411,769,"[""Laptop"", ""Tablet"", ""Phone""]",3491.75,{},182882,1,North America +2024-08-06,11412,8917,"[""Phone""]",1418.92,"{""promo"": ""6%""}",147952,0,North America +2023-09-01,11413,5615,"[""Keyboard"", ""Headphones"", ""Charger""]",3662.78,"{""seasonal"": ""6%""}",245001,1,Africa +2024-09-05,11414,6898,"[""Laptop""]",1973.76,"{""loyalty"": ""20%""}",293526,0,Africa +2023-10-16,11415,2171,"[""Keyboard"", ""Charger"", ""Phone""]",4799.05,{},246747,1,North America +2023-11-29,11416,9729,"[""Tablet"", ""Keyboard""]",3889.47,{},190985,0,South America +2024-06-28,11417,8467,"[""Headphones"", ""Tablet"", ""Monitor""]",3941.6,{},3664,0,Africa +2023-01-16,11418,5987,"[""Tablet"", ""Phone"", ""Monitor""]",1690.06,"{""loyalty"": ""21%""}",198299,0,Africa +2024-09-05,11419,1659,"[""Phone"", ""Keyboard"", ""Tablet""]",4879.73,"{"""": ""17%""}",6443,1,North America +2024-07-29,11420,524,"[""Monitor""]",2432.69,{},176537,0,Europe +2023-06-06,11421,8919,"[""Keyboard""]",4197.32,"{""promo"": ""16%""}",71723,1,Europe +2024-09-15,11422,4234,"[""Keyboard"", ""Phone""]",2486.44,{},117198,1,Europe +2023-06-13,11423,6447,"[""Wireless Mouse"", ""Charger""]",623.22,"{""loyalty"": ""27%""}",265103,1,Africa +2023-05-10,11424,7026,"[""Headphones"", ""Charger"", ""Phone""]",1617.75,"{"""": ""10%""}",114320,0,Africa +2024-05-28,11425,1424,"[""Keyboard"", ""Charger"", ""Tablet""]",4565.75,{},193715,1,South America +2023-09-14,11426,2555,"[""Laptop"", ""Phone"", ""Keyboard""]",2835.31,"{""loyalty"": ""17%""}",268400,0,Europe +2023-12-26,11427,1963,"[""Keyboard""]",1610.79,{},11109,0,Africa +2024-07-13,11428,2716,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4361.69,"{""promo"": ""28%""}",233054,0,Europe +2024-11-18,11429,6738,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",567.69,{},292463,0,Asia +2023-06-14,11430,5016,"[""Tablet"", ""Phone""]",3940.81,"{""seasonal"": ""12%""}",117404,1,North America +2024-08-18,11431,3567,"[""Tablet"", ""Monitor"", ""Phone""]",3273.34,"{""seasonal"": ""13%""}",242308,0,Africa +2023-12-07,11432,1347,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",55.79,"{""loyalty"": ""19%""}",138708,0,Asia +2024-02-21,11433,7243,"[""Headphones"", ""Wireless Mouse""]",3245.32,"{"""": ""13%""}",53087,0,Africa +2024-10-29,11434,2896,"[""Charger"", ""Phone""]",4553.17,{},146869,0,Africa +2023-08-12,11435,4651,"[""Keyboard""]",4004.07,"{""seasonal"": ""17%""}",263288,1,Africa +2024-10-04,11436,8052,"[""Headphones"", ""Phone""]",2435.87,{},244730,0,Europe +2023-03-05,11437,9279,"[""Phone"", ""Wireless Mouse""]",2942.77,{},274089,0,North America +2024-12-10,11438,5089,"[""Headphones""]",3519.06,"{""seasonal"": ""13%""}",183153,1,North America +2024-12-01,11439,3182,"[""Keyboard"", ""Tablet""]",3310.88,{},81880,1,South America +2023-04-10,11440,9587,"[""Laptop"", ""Charger""]",1189.08,"{""promo"": ""29%""}",173698,1,South America +2024-02-01,11441,8525,"[""Laptop""]",2392.5,"{""promo"": ""28%""}",85654,1,Europe +2023-11-18,11442,3932,"[""Phone"", ""Charger"", ""Monitor""]",4381.46,{},151183,0,South America +2024-12-16,11443,1202,"[""Phone"", ""Headphones"", ""Laptop""]",2850.21,{},33499,1,South America +2024-02-17,11444,3676,"[""Headphones"", ""Tablet""]",1457.26,{},33379,1,South America +2024-08-20,11445,9065,"[""Keyboard"", ""Headphones"", ""Monitor""]",796.7,{},286669,1,Asia +2023-06-04,11446,67,"[""Phone""]",472.32,{},76266,1,Europe +2024-07-24,11447,1312,"[""Tablet""]",964.27,{},207671,1,Europe +2024-10-07,11448,8057,"[""Tablet""]",3311.53,"{""loyalty"": ""6%""}",29737,0,South America +2023-07-18,11449,830,"[""Headphones"", ""Charger""]",3968.17,{},273997,0,Africa +2023-05-01,11450,1724,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4375.7,"{""loyalty"": ""26%""}",126104,1,Asia +2023-01-14,11451,6448,"[""Wireless Mouse"", ""Keyboard""]",4704.7,"{""loyalty"": ""12%""}",12253,1,Africa +2024-05-02,11452,7620,"[""Wireless Mouse"", ""Monitor""]",4826.02,{},143110,1,Asia +2024-04-09,11453,7401,"[""Charger"", ""Wireless Mouse""]",243.79,{},125203,1,Asia +2023-05-10,11454,9087,"[""Headphones"", ""Wireless Mouse""]",2399.04,{},125052,0,North America +2024-03-15,11455,1363,"[""Tablet"", ""Laptop""]",2125.96,"{"""": ""24%""}",280213,1,Europe +2023-03-10,11456,4358,"[""Tablet"", ""Wireless Mouse""]",2880.68,{},142660,1,South America +2024-06-29,11457,680,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1856.21,"{"""": ""5%""}",245549,0,Africa +2024-12-27,11458,5864,"[""Phone"", ""Charger""]",2942.14,{},248519,1,Africa +2024-06-05,11459,3459,"[""Phone"", ""Tablet"", ""Monitor""]",1942.66,{},202825,1,Europe +2023-07-31,11460,10000,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3137.04,{},8283,1,Europe +2024-11-12,11461,3538,"[""Charger"", ""Monitor"", ""Tablet""]",1732.86,"{""promo"": ""13%""}",240557,0,Europe +2024-11-09,11462,5308,"[""Wireless Mouse""]",4640.36,"{"""": ""10%""}",39804,1,Europe +2024-06-21,11463,5116,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4970.28,"{""seasonal"": ""14%""}",82621,0,North America +2023-07-21,11464,559,"[""Headphones"", ""Tablet""]",3758.39,{},175381,0,Africa +2024-09-17,11465,953,"[""Monitor""]",1545.02,{},161701,1,Asia +2024-09-13,11466,6510,"[""Tablet"", ""Keyboard""]",4095.87,"{""promo"": ""12%""}",182607,0,Africa +2023-04-11,11467,4092,"[""Headphones"", ""Charger"", ""Monitor""]",4972.13,{},299886,1,Africa +2024-09-28,11468,3543,"[""Laptop"", ""Phone""]",2282.18,"{""loyalty"": ""14%""}",105774,1,South America +2024-07-09,11469,3817,"[""Tablet"", ""Charger"", ""Monitor""]",4099.83,"{""loyalty"": ""6%""}",1613,0,South America +2023-03-08,11470,7958,"[""Keyboard""]",3616.47,{},44249,0,Africa +2023-05-26,11471,5774,"[""Monitor""]",4355.97,{},90772,1,Africa +2024-02-22,11472,5360,"[""Tablet""]",3251.39,{},134457,0,Europe +2024-12-08,11473,9053,"[""Keyboard"", ""Monitor""]",1839.6,"{""loyalty"": ""21%""}",67852,1,South America +2024-12-03,11474,413,"[""Charger""]",3678.75,{},149070,1,Europe +2024-07-19,11475,2783,"[""Charger"", ""Laptop"", ""Phone""]",4635.82,"{""seasonal"": ""19%""}",113670,0,Europe +2024-08-24,11476,7162,"[""Headphones"", ""Tablet"", ""Laptop""]",2138.56,{},8119,1,Asia +2024-03-13,11477,7287,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2349.92,{},22314,1,Africa +2024-04-21,11478,8860,"[""Headphones"", ""Phone""]",358.75,{},287750,1,South America +2023-05-31,11479,7929,"[""Keyboard"", ""Charger""]",2744.9,{},158275,0,Africa +2023-02-12,11480,9698,"[""Charger""]",1545.54,"{""seasonal"": ""29%""}",240264,1,South America +2023-02-12,11481,6170,"[""Charger"", ""Headphones""]",1008.47,{},134497,0,North America +2023-12-08,11482,9001,"[""Phone"", ""Wireless Mouse""]",2553.91,{},54394,1,Europe +2024-10-13,11483,2030,"[""Tablet"", ""Keyboard"", ""Laptop""]",2154.98,{},36028,0,Africa +2023-05-19,11484,575,"[""Wireless Mouse""]",2993.13,{},235682,1,Africa +2024-12-26,11485,3124,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4133.0,"{""seasonal"": ""19%""}",245282,0,South America +2024-01-16,11486,5008,"[""Headphones"", ""Tablet""]",1349.49,{},164053,1,Africa +2024-08-11,11487,1258,"[""Monitor""]",2541.05,{},52603,0,Asia +2024-02-18,11488,3891,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1863.33,{},278138,0,Asia +2024-12-12,11489,5042,"[""Laptop"", ""Charger""]",625.64,{},92154,1,Africa +2023-01-14,11490,1619,"[""Phone""]",2851.48,"{""promo"": ""28%""}",163043,0,Asia +2023-07-13,11491,6918,"[""Phone""]",2605.26,"{""loyalty"": ""8%""}",166475,1,Asia +2023-01-07,11492,1093,"[""Monitor""]",3392.48,{},282641,1,Africa +2024-05-29,11493,5213,"[""Tablet"", ""Headphones""]",1427.49,"{""loyalty"": ""25%""}",20479,1,Asia +2023-02-24,11494,7506,"[""Tablet"", ""Keyboard""]",627.5,{},96242,1,South America +2023-08-15,11495,9639,"[""Phone"", ""Tablet"", ""Headphones""]",3957.4,"{"""": ""16%""}",107090,0,North America +2024-01-11,11496,9597,"[""Phone""]",4227.81,{},49654,1,Asia +2024-10-30,11497,7224,"[""Wireless Mouse"", ""Monitor""]",4202.18,{},50089,1,Africa +2023-07-04,11498,8412,"[""Keyboard""]",4440.25,"{""seasonal"": ""5%""}",249462,1,North America +2023-03-10,11499,8063,"[""Headphones"", ""Wireless Mouse""]",1103.62,"{""seasonal"": ""24%""}",285732,0,Africa +2024-10-28,11500,5914,"[""Monitor"", ""Laptop""]",749.02,{},229182,0,Asia +2024-07-01,11501,2953,"[""Phone""]",1508.33,"{""loyalty"": ""7%""}",199641,0,Europe +2024-05-13,11502,3267,"[""Phone""]",2810.88,"{"""": ""21%""}",9629,0,North America +2023-07-12,11503,2191,"[""Tablet""]",2165.18,{},132600,0,Europe +2024-10-21,11504,6455,"[""Laptop"", ""Phone"", ""Headphones""]",3474.86,"{""seasonal"": ""29%""}",259383,0,South America +2024-06-25,11505,260,"[""Laptop"", ""Tablet""]",3652.68,{},74856,1,South America +2024-05-14,11506,2177,"[""Monitor"", ""Phone""]",4235.62,{},172002,1,Europe +2024-04-01,11507,2363,"[""Tablet""]",315.86,{},51780,1,Asia +2024-02-21,11508,3734,"[""Headphones"", ""Tablet"", ""Charger""]",1402.94,"{""loyalty"": ""19%""}",134760,1,Africa +2024-09-22,11509,7997,"[""Charger""]",2160.75,"{"""": ""16%""}",45475,1,South America +2023-09-18,11510,7882,"[""Keyboard""]",4716.69,{},162106,0,Africa +2024-07-29,11511,4858,"[""Wireless Mouse""]",4176.49,"{""seasonal"": ""29%""}",106043,1,North America +2024-11-12,11512,432,"[""Keyboard"", ""Laptop""]",1518.66,{},165012,0,Asia +2024-03-23,11513,3013,"[""Headphones"", ""Laptop"", ""Charger""]",4336.12,"{""promo"": ""15%""}",86929,1,Europe +2023-06-11,11514,4609,"[""Headphones"", ""Laptop""]",443.02,"{"""": ""16%""}",264877,1,North America +2024-12-22,11515,7874,"[""Phone"", ""Charger""]",4884.08,{},88841,0,Europe +2023-04-09,11516,4909,"[""Laptop""]",1320.78,{},238329,0,Asia +2023-12-04,11517,3305,"[""Laptop"", ""Headphones""]",4933.72,"{"""": ""24%""}",117817,1,Africa +2023-09-07,11518,5283,"[""Headphones""]",4152.1,{},153913,1,North America +2023-06-16,11519,9933,"[""Phone""]",202.93,{},202678,0,Africa +2023-03-21,11520,3332,"[""Laptop""]",1186.75,{},65131,1,Africa +2024-06-30,11521,7298,"[""Wireless Mouse"", ""Charger""]",4901.65,{},231974,1,Europe +2024-11-21,11522,5059,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1532.36,{},143086,1,North America +2023-07-24,11523,8088,"[""Charger"", ""Headphones""]",237.43,"{""seasonal"": ""14%""}",44353,0,South America +2024-11-03,11524,9158,"[""Headphones"", ""Phone""]",2323.2,{},104243,1,South America +2024-12-11,11525,5658,"[""Tablet"", ""Charger"", ""Phone""]",1342.41,{},82539,0,Africa +2023-07-23,11526,4598,"[""Headphones"", ""Charger"", ""Phone""]",2523.33,"{""seasonal"": ""21%""}",133102,0,South America +2024-02-13,11527,4339,"[""Laptop"", ""Tablet""]",3855.61,{},250163,0,North America +2024-01-23,11528,9862,"[""Headphones""]",2826.21,{},52264,0,Asia +2024-10-28,11529,5305,"[""Keyboard""]",460.08,"{""loyalty"": ""12%""}",276232,0,North America +2024-01-29,11530,1887,"[""Tablet""]",4606.43,"{""loyalty"": ""16%""}",47906,0,Europe +2024-08-09,11531,4090,"[""Laptop"", ""Tablet"", ""Phone""]",1025.16,"{""promo"": ""10%""}",192806,0,Africa +2024-09-15,11532,3781,"[""Laptop""]",1776.38,"{""seasonal"": ""27%""}",60338,0,Asia +2023-03-21,11533,6264,"[""Monitor"", ""Charger"", ""Tablet""]",4369.2,"{""promo"": ""23%""}",102626,0,South America +2023-12-03,11534,3238,"[""Wireless Mouse"", ""Headphones""]",3639.96,"{""promo"": ""15%""}",19699,1,Europe +2024-08-27,11535,4443,"[""Charger"", ""Laptop"", ""Tablet""]",698.76,{},117745,1,North America +2024-09-07,11536,4824,"[""Monitor"", ""Tablet""]",1742.55,"{""promo"": ""15%""}",297901,1,South America +2024-03-01,11537,3841,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3267.8,{},33136,0,Europe +2024-11-01,11538,9045,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3377.43,"{""seasonal"": ""5%""}",154370,1,Asia +2023-11-02,11539,5248,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2906.78,"{""promo"": ""22%""}",19942,0,South America +2023-08-10,11540,2652,"[""Phone"", ""Tablet"", ""Keyboard""]",3233.31,"{""loyalty"": ""21%""}",128209,0,Europe +2023-08-09,11541,3763,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2426.33,"{""promo"": ""28%""}",299975,0,South America +2023-03-17,11542,6451,"[""Headphones"", ""Wireless Mouse""]",4423.89,{},49172,1,Asia +2024-09-10,11543,745,"[""Headphones"", ""Tablet""]",3123.22,"{"""": ""13%""}",140105,0,North America +2023-12-28,11544,2653,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2948.47,{},115765,1,Asia +2024-01-11,11545,335,"[""Tablet"", ""Laptop""]",2926.94,{},273778,1,Europe +2023-07-30,11546,9105,"[""Monitor"", ""Phone""]",4516.6,"{"""": ""13%""}",155015,0,Africa +2023-07-20,11547,370,"[""Charger"", ""Tablet"", ""Phone""]",2573.33,{},272069,0,Asia +2023-10-09,11548,3390,"[""Keyboard"", ""Tablet""]",1339.99,"{""promo"": ""12%""}",117777,0,Europe +2023-03-17,11549,2886,"[""Monitor"", ""Laptop""]",4542.18,"{"""": ""10%""}",223388,1,Europe +2024-02-09,11550,8228,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",814.33,{},273437,1,South America +2024-04-24,11551,6797,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2610.53,{},109007,1,Africa +2024-08-25,11552,1449,"[""Headphones"", ""Charger""]",2405.15,{},298069,1,Asia +2023-05-28,11553,4220,"[""Phone""]",1032.03,{},47562,1,Europe +2024-06-05,11554,1990,"[""Keyboard"", ""Tablet""]",3926.04,"{""loyalty"": ""25%""}",50343,1,Europe +2023-06-27,11555,798,"[""Phone"", ""Wireless Mouse""]",2235.36,{},281434,0,Europe +2023-02-02,11556,5424,"[""Wireless Mouse"", ""Keyboard""]",2848.72,{},208412,1,Africa +2023-08-30,11557,7802,"[""Keyboard"", ""Monitor"", ""Charger""]",2360.53,"{""loyalty"": ""17%""}",254154,1,South America +2023-02-18,11558,7594,"[""Headphones"", ""Laptop"", ""Phone""]",4628.58,{},237960,0,Asia +2024-12-04,11559,4782,"[""Laptop""]",3410.01,{},5366,1,Europe +2023-07-16,11560,9231,"[""Headphones"", ""Phone""]",2215.89,"{""seasonal"": ""11%""}",169033,0,Africa +2023-09-02,11561,7536,"[""Keyboard""]",2689.91,{},15781,0,Africa +2024-05-01,11562,693,"[""Wireless Mouse"", ""Headphones""]",1257.2,"{""seasonal"": ""23%""}",247587,0,Africa +2024-01-18,11563,2885,"[""Tablet"", ""Monitor""]",1670.37,"{""seasonal"": ""24%""}",12636,1,North America +2023-12-21,11564,9248,"[""Headphones"", ""Charger""]",2145.16,{},127224,1,South America +2023-12-23,11565,2904,"[""Tablet"", ""Charger""]",236.69,"{""promo"": ""30%""}",164793,0,Europe +2023-08-21,11566,377,"[""Laptop"", ""Monitor"", ""Tablet""]",3004.94,{},5137,0,Africa +2023-03-07,11567,5217,"[""Wireless Mouse""]",4295.95,{},124944,1,Europe +2023-08-06,11568,8867,"[""Phone""]",1372.09,"{""seasonal"": ""5%""}",51893,0,Africa +2023-11-30,11569,9662,"[""Tablet"", ""Keyboard"", ""Charger""]",1602.23,{},156667,1,Europe +2023-10-04,11570,1783,"[""Phone"", ""Keyboard""]",1925.3,{},167101,1,North America +2024-09-06,11571,6530,"[""Wireless Mouse"", ""Keyboard""]",2526.08,"{""seasonal"": ""28%""}",196994,0,North America +2024-05-03,11572,703,"[""Tablet"", ""Monitor"", ""Phone""]",1597.0,{},5042,1,Africa +2023-04-01,11573,3109,"[""Wireless Mouse"", ""Keyboard""]",3173.82,{},283945,1,North America +2023-04-14,11574,4084,"[""Headphones""]",4321.14,"{""promo"": ""17%""}",70553,0,North America +2024-12-05,11575,56,"[""Headphones"", ""Wireless Mouse""]",515.35,"{""seasonal"": ""19%""}",202470,0,Africa +2023-05-22,11576,7659,"[""Tablet""]",647.0,"{""promo"": ""28%""}",186335,0,Europe +2023-08-15,11577,5679,"[""Wireless Mouse""]",3999.0,{},49350,1,Africa +2024-10-06,11578,1494,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",205.32,{},280197,0,South America +2024-01-26,11579,9386,"[""Phone"", ""Keyboard"", ""Laptop""]",3118.62,{},189638,1,Europe +2023-05-11,11580,2209,"[""Wireless Mouse""]",4795.01,"{""loyalty"": ""10%""}",112244,1,Africa +2023-03-23,11581,2070,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1824.53,"{""loyalty"": ""26%""}",181978,0,South America +2023-11-21,11582,7928,"[""Laptop"", ""Charger""]",3993.66,"{""promo"": ""5%""}",157814,1,North America +2023-01-17,11583,2971,"[""Keyboard"", ""Wireless Mouse""]",4188.09,"{"""": ""28%""}",296510,1,Africa +2024-06-06,11584,1036,"[""Headphones"", ""Monitor""]",2659.83,{},98846,0,Africa +2024-06-03,11585,9562,"[""Charger"", ""Wireless Mouse""]",498.97,"{"""": ""5%""}",96855,0,North America +2023-05-13,11586,7983,"[""Phone"", ""Keyboard""]",3760.16,"{""seasonal"": ""27%""}",184421,1,Africa +2023-02-21,11587,402,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4352.12,{},63124,1,Europe +2023-06-25,11588,7145,"[""Tablet""]",322.31,"{"""": ""13%""}",146500,0,North America +2024-12-16,11589,7863,"[""Tablet"", ""Monitor""]",2588.75,{},51097,1,Africa +2024-01-13,11590,9070,"[""Tablet"", ""Laptop"", ""Headphones""]",3921.6,"{""promo"": ""23%""}",127524,1,Asia +2023-03-15,11591,6900,"[""Monitor"", ""Charger""]",3502.7,"{""loyalty"": ""30%""}",65765,1,Europe +2024-05-12,11592,9430,"[""Keyboard"", ""Laptop""]",1512.7,"{""seasonal"": ""24%""}",278832,1,North America +2023-08-13,11593,1944,"[""Headphones"", ""Charger"", ""Keyboard""]",2011.11,{},139885,1,Asia +2023-03-02,11594,2336,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",599.12,{},27432,1,North America +2024-10-23,11595,7272,"[""Headphones"", ""Monitor"", ""Phone""]",2910.44,"{""seasonal"": ""26%""}",132333,1,Africa +2023-03-26,11596,8169,"[""Headphones"", ""Charger""]",1847.25,{},285658,1,Asia +2024-01-16,11597,9615,"[""Monitor""]",842.37,{},78770,0,North America +2024-02-04,11598,6417,"[""Charger""]",4269.65,"{"""": ""19%""}",106017,1,Asia +2023-10-30,11599,3724,"[""Headphones"", ""Charger""]",1030.35,"{""promo"": ""26%""}",167323,1,North America +2024-10-01,11600,5012,"[""Keyboard"", ""Laptop"", ""Charger""]",3096.69,"{""loyalty"": ""22%""}",73460,1,Africa +2023-12-16,11601,6455,"[""Laptop""]",2734.36,"{""promo"": ""12%""}",66632,0,North America +2024-11-27,11602,7966,"[""Keyboard""]",1777.29,"{""seasonal"": ""19%""}",250871,0,Asia +2024-04-18,11603,7716,"[""Phone""]",3279.17,"{"""": ""10%""}",128043,1,Europe +2024-02-11,11604,297,"[""Keyboard"", ""Headphones""]",1434.75,"{""promo"": ""23%""}",201183,0,Africa +2024-12-01,11605,6064,"[""Laptop""]",3084.51,{},45617,1,Europe +2023-05-04,11606,8115,"[""Phone""]",1968.71,{},247393,0,South America +2024-10-26,11607,2617,"[""Keyboard""]",2961.31,"{""seasonal"": ""23%""}",45792,0,South America +2024-04-26,11608,4481,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1573.61,"{""promo"": ""19%""}",142149,1,Asia +2023-03-29,11609,3722,"[""Headphones"", ""Phone""]",1080.29,{},207459,0,Europe +2024-05-17,11610,8348,"[""Phone"", ""Monitor""]",4408.74,{},97188,0,Africa +2024-11-30,11611,8707,"[""Phone"", ""Monitor""]",4759.01,{},271133,1,Africa +2024-12-03,11612,151,"[""Monitor"", ""Tablet""]",356.91,"{""loyalty"": ""12%""}",268922,0,Asia +2023-09-27,11613,9323,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1945.35,"{""promo"": ""19%""}",65946,1,Asia +2024-04-22,11614,4978,"[""Wireless Mouse""]",3765.17,{},180418,0,Europe +2023-10-10,11615,9818,"[""Charger""]",1059.75,{},57550,1,Africa +2023-09-20,11616,2370,"[""Phone""]",2918.56,"{""promo"": ""30%""}",78384,0,South America +2023-09-11,11617,5745,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",852.87,"{""promo"": ""8%""}",1194,0,Africa +2024-09-24,11618,2932,"[""Wireless Mouse""]",173.86,"{"""": ""28%""}",211483,1,North America +2024-06-12,11619,2526,"[""Tablet"", ""Phone"", ""Monitor""]",4142.22,"{""seasonal"": ""30%""}",229612,1,Europe +2024-08-12,11620,2518,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4806.96,{},139212,1,Europe +2023-03-04,11621,128,"[""Laptop""]",526.44,"{""seasonal"": ""6%""}",256276,0,North America +2023-09-15,11622,1675,"[""Keyboard""]",327.98,"{""seasonal"": ""9%""}",128264,1,Africa +2024-10-18,11623,7814,"[""Tablet"", ""Monitor"", ""Phone""]",2561.21,"{""seasonal"": ""22%""}",222043,0,Europe +2024-08-21,11624,6070,"[""Monitor"", ""Wireless Mouse""]",1020.96,"{"""": ""28%""}",242102,0,Asia +2024-11-29,11625,2946,"[""Headphones"", ""Charger""]",4709.44,{},242264,1,South America +2024-10-25,11626,3195,"[""Tablet"", ""Wireless Mouse""]",4403.67,"{""promo"": ""8%""}",189761,0,Africa +2024-09-15,11627,5223,"[""Headphones""]",3218.85,"{""loyalty"": ""22%""}",216252,1,North America +2023-07-21,11628,1060,"[""Wireless Mouse"", ""Phone""]",697.18,{},261808,0,North America +2024-02-23,11629,581,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4189.96,"{""seasonal"": ""7%""}",49944,0,Europe +2024-11-10,11630,3603,"[""Laptop"", ""Headphones""]",2548.98,"{""seasonal"": ""19%""}",177621,1,Europe +2024-08-12,11631,5555,"[""Phone"", ""Tablet""]",1126.4,{},150608,1,South America +2023-03-05,11632,3386,"[""Monitor"", ""Phone"", ""Tablet""]",925.83,"{""promo"": ""18%""}",199721,1,North America +2024-05-07,11633,3774,"[""Tablet""]",974.48,{},141238,1,Europe +2023-09-26,11634,2770,"[""Phone""]",296.41,"{""loyalty"": ""17%""}",53141,0,North America +2023-01-11,11635,1342,"[""Laptop""]",1419.65,{},46969,1,Asia +2024-09-22,11636,4113,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3934.95,"{"""": ""18%""}",45490,1,Europe +2024-02-14,11637,2186,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4967.72,"{""seasonal"": ""12%""}",142057,0,South America +2024-03-20,11638,6176,"[""Monitor""]",3811.72,{},137405,1,Africa +2024-12-28,11639,1557,"[""Wireless Mouse""]",1601.98,{},245185,0,North America +2023-09-28,11640,3987,"[""Phone"", ""Monitor""]",4488.38,{},144018,0,Africa +2024-01-09,11641,6809,"[""Monitor"", ""Charger"", ""Headphones""]",3444.91,"{"""": ""20%""}",59433,1,Europe +2024-08-14,11642,7461,"[""Laptop""]",4452.87,"{""promo"": ""11%""}",77944,1,South America +2024-01-26,11643,5154,"[""Laptop"", ""Phone"", ""Keyboard""]",1813.18,{},152421,1,Africa +2024-02-27,11644,7581,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3902.03,{},253843,1,Asia +2023-03-08,11645,8143,"[""Phone"", ""Wireless Mouse""]",2053.33,"{""seasonal"": ""22%""}",86110,0,North America +2023-02-23,11646,7221,"[""Headphones"", ""Charger""]",2793.88,"{""seasonal"": ""14%""}",289515,1,North America +2023-05-29,11647,3121,"[""Monitor"", ""Laptop"", ""Phone""]",4410.02,{},174299,1,Africa +2024-08-02,11648,3031,"[""Keyboard""]",1869.86,"{""seasonal"": ""8%""}",268447,0,Africa +2023-01-10,11649,6853,"[""Laptop"", ""Wireless Mouse""]",2170.67,"{""promo"": ""9%""}",139987,0,Europe +2024-12-26,11650,4034,"[""Wireless Mouse"", ""Laptop""]",1575.93,{},203916,0,South America +2023-01-17,11651,4306,"[""Laptop""]",4639.17,{},188810,1,Europe +2024-11-17,11652,9623,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3516.51,{},66296,1,South America +2023-10-09,11653,5563,"[""Tablet""]",1365.95,{},17238,1,North America +2023-05-21,11654,6542,"[""Charger""]",1739.61,{},253073,1,Asia +2023-01-31,11655,2662,"[""Charger"", ""Headphones"", ""Keyboard""]",3372.76,"{""loyalty"": ""11%""}",117376,1,Africa +2024-09-29,11656,2798,"[""Wireless Mouse""]",2491.3,"{""seasonal"": ""7%""}",177692,0,Europe +2024-07-11,11657,9376,"[""Tablet"", ""Monitor"", ""Charger""]",3782.99,"{""loyalty"": ""10%""}",194809,0,North America +2023-12-15,11658,5381,"[""Tablet""]",1458.06,"{"""": ""10%""}",159594,0,Asia +2023-12-31,11659,4904,"[""Charger"", ""Headphones"", ""Keyboard""]",814.08,{},184038,0,Africa +2023-10-10,11660,3816,"[""Laptop""]",3746.96,{},228483,0,Africa +2023-02-19,11661,7681,"[""Tablet"", ""Headphones""]",2264.66,{},137389,0,Africa +2023-05-31,11662,7256,"[""Keyboard"", ""Monitor"", ""Phone""]",4407.01,"{""promo"": ""18%""}",95538,1,South America +2024-08-11,11663,5038,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3221.01,"{""loyalty"": ""9%""}",149053,1,North America +2024-02-28,11664,8475,"[""Phone"", ""Laptop"", ""Charger""]",1725.03,"{""seasonal"": ""13%""}",214390,0,South America +2023-04-20,11665,2283,"[""Headphones"", ""Monitor"", ""Keyboard""]",1859.82,{},250954,1,Europe +2023-05-28,11666,7434,"[""Wireless Mouse""]",1395.61,"{""loyalty"": ""24%""}",126964,0,South America +2024-05-18,11667,2726,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",523.6,"{""promo"": ""11%""}",134537,1,North America +2023-01-01,11668,5962,"[""Charger"", ""Laptop""]",3288.23,{},108465,1,North America +2023-06-28,11669,584,"[""Tablet""]",2460.55,"{""loyalty"": ""26%""}",176633,0,South America +2023-08-17,11670,1849,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2859.1,{},290778,1,Europe +2023-05-15,11671,4370,"[""Headphones"", ""Laptop"", ""Keyboard""]",3274.33,"{"""": ""14%""}",131204,0,North America +2023-08-03,11672,3237,"[""Phone""]",3120.32,{},41290,0,Africa +2024-12-05,11673,2641,"[""Wireless Mouse""]",2761.43,{},130497,0,South America +2023-02-28,11674,5476,"[""Monitor"", ""Laptop"", ""Phone""]",757.5,"{""promo"": ""16%""}",276690,0,South America +2023-12-09,11675,14,"[""Keyboard"", ""Laptop""]",604.22,{},176014,1,North America +2024-01-23,11676,9771,"[""Phone"", ""Wireless Mouse""]",4385.7,"{""loyalty"": ""8%""}",215276,1,South America +2024-03-27,11677,5712,"[""Wireless Mouse""]",4629.52,"{""promo"": ""7%""}",170504,0,Asia +2024-11-06,11678,9939,"[""Phone"", ""Charger""]",1466.48,{},9768,1,Africa +2023-06-11,11679,4361,"[""Keyboard""]",1079.29,{},159869,0,North America +2023-07-13,11680,8190,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3680.03,{},145628,1,South America +2023-11-26,11681,5721,"[""Laptop"", ""Charger""]",4374.02,{},91956,1,South America +2024-03-11,11682,4265,"[""Laptop"", ""Tablet""]",1500.21,{},32835,1,Europe +2023-02-16,11683,1513,"[""Monitor""]",3974.38,"{""promo"": ""7%""}",191634,1,South America +2024-11-02,11684,375,"[""Monitor"", ""Wireless Mouse""]",4441.07,{},41342,0,Africa +2023-01-19,11685,3165,"[""Phone"", ""Headphones""]",2383.87,"{""seasonal"": ""20%""}",292890,1,Europe +2024-12-14,11686,1047,"[""Keyboard"", ""Charger""]",1054.23,"{""loyalty"": ""18%""}",251890,0,South America +2023-08-17,11687,1098,"[""Headphones""]",854.44,{},95750,0,Europe +2024-02-13,11688,9411,"[""Tablet"", ""Laptop""]",3382.49,{},26519,1,Asia +2023-02-03,11689,3567,"[""Charger""]",4517.08,"{""loyalty"": ""22%""}",104994,0,Asia +2023-07-17,11690,3295,"[""Headphones"", ""Keyboard""]",1741.81,{},203339,1,South America +2024-04-30,11691,8001,"[""Monitor"", ""Phone"", ""Tablet""]",3116.6,"{""seasonal"": ""16%""}",206170,1,Europe +2024-06-04,11692,7370,"[""Wireless Mouse"", ""Keyboard""]",501.9,"{""seasonal"": ""30%""}",109395,0,Asia +2023-07-17,11693,737,"[""Tablet""]",2095.48,"{""loyalty"": ""30%""}",41890,1,Europe +2023-12-11,11694,9262,"[""Phone""]",2929.14,{},103808,1,Europe +2024-02-05,11695,3596,"[""Phone"", ""Charger""]",553.86,{},255755,0,Asia +2023-07-07,11696,4526,"[""Tablet"", ""Laptop""]",2860.45,"{""loyalty"": ""13%""}",194596,1,North America +2023-04-04,11697,6057,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3076.01,{},54980,0,South America +2023-10-01,11698,1060,"[""Charger"", ""Keyboard""]",4961.58,"{""loyalty"": ""21%""}",21288,0,North America +2023-05-21,11699,5571,"[""Keyboard""]",4510.42,"{""loyalty"": ""6%""}",130359,0,South America +2023-12-18,11700,7750,"[""Headphones"", ""Phone""]",1025.63,{},242818,1,South America +2023-12-22,11701,2728,"[""Headphones"", ""Monitor""]",608.81,"{""seasonal"": ""29%""}",194431,0,Asia +2023-05-31,11702,3549,"[""Tablet""]",3255.96,"{""loyalty"": ""10%""}",23077,0,Asia +2024-06-28,11703,4201,"[""Headphones""]",1234.29,"{"""": ""18%""}",216538,0,Asia +2024-10-15,11704,3620,"[""Headphones"", ""Tablet""]",4222.65,"{""seasonal"": ""24%""}",275343,1,Africa +2024-03-23,11705,3351,"[""Tablet"", ""Keyboard""]",2226.73,{},169837,0,Europe +2023-02-12,11706,9146,"[""Phone""]",4592.94,{},8212,1,Europe +2023-03-16,11707,3232,"[""Charger""]",2425.05,{},91880,1,Asia +2024-05-15,11708,4910,"[""Wireless Mouse""]",1000.28,"{""loyalty"": ""29%""}",95024,1,Africa +2023-03-01,11709,2050,"[""Monitor"", ""Charger"", ""Headphones""]",2894.88,{},291054,0,Africa +2024-03-04,11710,66,"[""Tablet"", ""Headphones""]",390.63,{},197767,1,Europe +2024-07-24,11711,4724,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4249.68,"{""seasonal"": ""29%""}",81619,0,North America +2023-02-06,11712,6051,"[""Laptop""]",828.38,{},68244,1,Africa +2023-05-23,11713,5300,"[""Keyboard"", ""Laptop"", ""Tablet""]",1470.66,"{""loyalty"": ""25%""}",230587,0,Africa +2024-04-28,11714,3945,"[""Monitor""]",547.93,"{""loyalty"": ""30%""}",6443,1,Asia +2023-01-22,11715,9218,"[""Wireless Mouse""]",4204.9,"{"""": ""21%""}",228502,1,North America +2024-12-13,11716,829,"[""Laptop"", ""Keyboard""]",2868.54,{},169518,0,North America +2024-04-20,11717,2085,"[""Wireless Mouse""]",2392.6,"{"""": ""16%""}",259199,0,Europe +2024-07-21,11718,9036,"[""Monitor"", ""Tablet""]",2724.63,"{"""": ""27%""}",233864,1,North America +2023-05-21,11719,9233,"[""Phone""]",2233.73,"{""seasonal"": ""6%""}",17108,0,North America +2023-08-26,11720,3021,"[""Monitor"", ""Keyboard"", ""Laptop""]",2968.45,"{"""": ""14%""}",30767,0,Europe +2023-11-02,11721,5306,"[""Phone""]",1417.66,"{""loyalty"": ""19%""}",52965,1,North America +2024-02-27,11722,818,"[""Charger"", ""Headphones""]",3446.12,"{""loyalty"": ""30%""}",88071,0,Africa +2023-05-05,11723,3121,"[""Charger"", ""Phone"", ""Laptop""]",610.91,{},233691,0,Europe +2024-03-30,11724,9003,"[""Keyboard""]",160.79,"{""promo"": ""6%""}",286223,0,Asia +2023-08-19,11725,2265,"[""Phone"", ""Laptop"", ""Tablet""]",4918.36,"{""seasonal"": ""29%""}",240096,1,North America +2024-04-20,11726,4262,"[""Phone"", ""Tablet""]",1804.69,{},164051,0,South America +2023-11-14,11727,2592,"[""Keyboard""]",1578.46,"{""loyalty"": ""8%""}",3558,1,Asia +2024-06-06,11728,4618,"[""Headphones""]",194.21,{},130616,0,South America +2024-09-01,11729,9164,"[""Phone""]",3791.07,"{""promo"": ""14%""}",25781,0,Europe +2023-03-03,11730,9096,"[""Monitor""]",4792.38,"{""promo"": ""7%""}",100666,0,Africa +2024-09-04,11731,2087,"[""Monitor""]",3223.41,"{"""": ""21%""}",35776,0,Africa +2023-08-05,11732,6786,"[""Phone"", ""Monitor""]",4560.49,"{""promo"": ""7%""}",123032,0,Europe +2024-07-26,11733,3148,"[""Phone"", ""Monitor"", ""Headphones""]",1715.1,{},71298,0,Africa +2024-08-04,11734,7655,"[""Headphones"", ""Charger"", ""Keyboard""]",4674.23,"{""promo"": ""17%""}",104515,1,South America +2024-05-22,11735,816,"[""Monitor"", ""Laptop"", ""Keyboard""]",3214.36,{},246906,1,Africa +2024-12-06,11736,7164,"[""Keyboard"", ""Laptop"", ""Phone""]",2295.9,{},19191,1,Asia +2024-12-11,11737,1630,"[""Headphones""]",2646.47,"{""seasonal"": ""21%""}",184854,0,Africa +2023-08-01,11738,7267,"[""Keyboard"", ""Laptop""]",448.99,{},94981,1,Africa +2023-03-15,11739,1374,"[""Phone""]",1495.62,{},292834,0,South America +2024-06-10,11740,1002,"[""Monitor""]",2378.33,"{""loyalty"": ""5%""}",275074,0,Asia +2023-04-01,11741,515,"[""Laptop"", ""Keyboard""]",1099.76,{},3835,1,Africa +2024-01-07,11742,1325,"[""Tablet""]",2080.83,"{""loyalty"": ""6%""}",189209,0,Asia +2023-02-27,11743,6762,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3600.66,{},91302,1,Europe +2023-03-07,11744,3008,"[""Laptop"", ""Keyboard""]",3652.66,"{""promo"": ""11%""}",131294,0,North America +2024-04-09,11745,1576,"[""Headphones""]",3281.08,"{""loyalty"": ""5%""}",225131,1,South America +2024-03-23,11746,2013,"[""Phone""]",2554.15,{},289525,0,Africa +2023-02-17,11747,8634,"[""Phone""]",2371.44,"{""loyalty"": ""5%""}",5308,0,Africa +2023-08-08,11748,7569,"[""Headphones"", ""Laptop""]",4379.37,{},287357,0,Europe +2023-03-19,11749,6599,"[""Phone"", ""Charger""]",3063.0,"{""loyalty"": ""16%""}",171945,1,North America +2024-07-22,11750,4165,"[""Phone""]",4207.56,"{""promo"": ""26%""}",260069,1,Asia +2023-10-07,11751,8079,"[""Laptop""]",3917.15,"{""seasonal"": ""17%""}",230837,1,Europe +2024-05-29,11752,6431,"[""Tablet"", ""Laptop"", ""Monitor""]",4344.6,"{""promo"": ""30%""}",119334,0,North America +2023-08-06,11753,414,"[""Keyboard"", ""Monitor""]",3201.73,{},209132,0,Asia +2023-02-13,11754,4362,"[""Headphones"", ""Keyboard""]",2139.87,"{""seasonal"": ""15%""}",255131,1,Europe +2023-04-15,11755,8928,"[""Monitor"", ""Laptop"", ""Headphones""]",737.93,{},86652,1,South America +2024-10-06,11756,1407,"[""Wireless Mouse""]",1012.99,"{"""": ""13%""}",106968,1,North America +2024-02-08,11757,7620,"[""Monitor"", ""Tablet""]",4464.2,"{""promo"": ""28%""}",24876,1,North America +2024-05-25,11758,8469,"[""Headphones""]",3960.67,{},111770,1,Asia +2023-07-14,11759,9308,"[""Charger"", ""Laptop""]",4030.67,{},188288,1,Europe +2023-01-22,11760,1896,"[""Headphones"", ""Phone"", ""Monitor""]",4070.14,{},196703,1,Asia +2024-01-05,11761,7549,"[""Monitor""]",2629.68,"{"""": ""8%""}",46332,0,South America +2023-05-22,11762,9916,"[""Headphones"", ""Laptop""]",3631.48,"{""loyalty"": ""26%""}",271012,0,South America +2023-05-02,11763,889,"[""Keyboard"", ""Laptop""]",340.46,{},281880,1,North America +2023-08-25,11764,763,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4328.1,"{"""": ""30%""}",56134,1,Europe +2023-04-23,11765,6275,"[""Wireless Mouse"", ""Keyboard""]",4894.59,{},189340,1,Africa +2023-02-04,11766,1603,"[""Charger"", ""Tablet""]",3589.47,"{""loyalty"": ""30%""}",129583,0,Asia +2023-01-13,11767,9298,"[""Headphones""]",3328.1,"{""loyalty"": ""28%""}",249327,1,Europe +2024-02-03,11768,8280,"[""Headphones"", ""Charger"", ""Tablet""]",2354.56,"{""promo"": ""23%""}",266610,0,North America +2024-09-20,11769,781,"[""Charger"", ""Phone""]",1956.47,"{""seasonal"": ""11%""}",257796,1,North America +2024-03-21,11770,3894,"[""Laptop""]",2317.37,{},121802,1,North America +2023-11-04,11771,4031,"[""Keyboard"", ""Monitor"", ""Headphones""]",3092.46,"{""seasonal"": ""8%""}",229659,0,Africa +2024-06-30,11772,2937,"[""Headphones"", ""Tablet"", ""Monitor""]",277.98,"{"""": ""14%""}",191532,1,Africa +2024-09-01,11773,20,"[""Keyboard""]",3360.92,"{""seasonal"": ""30%""}",202064,1,Africa +2023-01-05,11774,6478,"[""Laptop"", ""Wireless Mouse""]",3607.78,{},1190,0,Asia +2024-12-21,11775,1120,"[""Charger""]",102.93,{},222672,1,Africa +2023-10-19,11776,9105,"[""Headphones""]",684.83,{},207311,0,South America +2023-11-23,11777,7960,"[""Monitor"", ""Laptop""]",2942.0,{},142462,1,South America +2024-05-11,11778,6784,"[""Tablet"", ""Phone""]",2273.59,"{""loyalty"": ""6%""}",91396,0,Europe +2024-02-12,11779,2048,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4077.03,"{""promo"": ""23%""}",284632,1,South America +2024-01-17,11780,728,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3237.88,"{""promo"": ""6%""}",215837,1,Africa +2024-12-31,11781,8548,"[""Laptop"", ""Monitor"", ""Phone""]",445.13,{},18690,1,South America +2023-12-31,11782,870,"[""Laptop"", ""Phone""]",3360.58,{},65767,1,South America +2024-06-13,11783,5981,"[""Wireless Mouse"", ""Keyboard""]",3306.01,{},40883,1,Europe +2024-06-01,11784,6079,"[""Keyboard"", ""Laptop"", ""Phone""]",4842.22,"{""promo"": ""23%""}",133660,0,South America +2024-04-09,11785,8961,"[""Tablet""]",1449.29,"{""seasonal"": ""29%""}",241050,0,Europe +2024-06-22,11786,3197,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4628.05,{},298319,0,Asia +2024-02-18,11787,9506,"[""Laptop"", ""Headphones""]",2008.36,{},99830,0,Asia +2024-01-03,11788,8731,"[""Laptop"", ""Keyboard""]",3754.77,"{""loyalty"": ""14%""}",253864,0,North America +2024-08-12,11789,3295,"[""Charger""]",3630.95,{},293526,0,Africa +2023-07-14,11790,6070,"[""Laptop"", ""Phone""]",4026.99,{},291532,1,South America +2024-04-13,11791,337,"[""Monitor"", ""Charger""]",4541.36,"{""seasonal"": ""14%""}",191378,1,North America +2023-09-09,11792,9157,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3201.04,{},73340,1,Europe +2024-04-26,11793,7809,"[""Keyboard""]",4643.28,"{""loyalty"": ""29%""}",94704,0,North America +2023-04-05,11794,6908,"[""Laptop"", ""Keyboard""]",1788.64,{},235294,1,South America +2024-07-02,11795,3821,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3991.12,"{""seasonal"": ""15%""}",32228,1,Europe +2023-04-15,11796,3036,"[""Phone"", ""Keyboard"", ""Monitor""]",3092.7,{},144247,0,North America +2023-04-08,11797,2738,"[""Wireless Mouse""]",1086.61,"{"""": ""7%""}",297468,0,Europe +2024-12-01,11798,6759,"[""Wireless Mouse""]",2624.68,"{""promo"": ""13%""}",52847,1,North America +2023-11-02,11799,4296,"[""Phone"", ""Tablet""]",1018.97,{},92299,0,Europe +2024-07-14,11800,3710,"[""Charger"", ""Keyboard"", ""Headphones""]",3533.05,"{""loyalty"": ""18%""}",186566,0,Asia +2024-11-14,11801,4593,"[""Phone"", ""Tablet"", ""Charger""]",1042.39,"{""promo"": ""6%""}",138885,0,North America +2023-02-11,11802,1061,"[""Headphones"", ""Monitor"", ""Charger""]",573.66,"{""seasonal"": ""29%""}",295601,0,Africa +2023-05-22,11803,4620,"[""Monitor"", ""Phone"", ""Charger""]",107.81,"{""loyalty"": ""21%""}",145149,0,Asia +2024-02-24,11804,5492,"[""Headphones"", ""Phone"", ""Tablet""]",4452.98,{},159481,1,Asia +2023-08-25,11805,5324,"[""Laptop"", ""Tablet""]",2515.39,"{""loyalty"": ""10%""}",151297,1,Africa +2024-02-14,11806,3573,"[""Headphones""]",1917.39,{},295410,0,Europe +2024-03-18,11807,6579,"[""Tablet"", ""Phone"", ""Headphones""]",193.78,{},195473,0,Europe +2024-05-06,11808,74,"[""Keyboard"", ""Headphones"", ""Charger""]",992.24,"{""seasonal"": ""14%""}",218284,0,Europe +2023-03-21,11809,8675,"[""Tablet""]",652.84,"{""promo"": ""17%""}",279484,1,Africa +2024-06-20,11810,6490,"[""Keyboard""]",2277.71,{},183279,1,Africa +2023-04-27,11811,7130,"[""Keyboard"", ""Headphones""]",4692.79,"{""promo"": ""21%""}",175124,1,Asia +2023-07-20,11812,3265,"[""Charger"", ""Headphones"", ""Phone""]",2801.14,{},121666,0,Africa +2023-03-27,11813,7239,"[""Keyboard"", ""Laptop""]",4088.34,{},267784,1,Africa +2024-04-04,11814,7057,"[""Tablet""]",2350.74,"{""promo"": ""9%""}",244815,0,Europe +2024-06-28,11815,600,"[""Monitor"", ""Laptop""]",1811.81,"{"""": ""6%""}",56750,1,Asia +2023-09-10,11816,486,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3649.1,{},289997,0,Europe +2024-07-25,11817,8286,"[""Headphones""]",4294.48,{},83182,0,Asia +2023-07-21,11818,438,"[""Monitor"", ""Charger"", ""Laptop""]",4316.96,{},216404,0,North America +2023-06-28,11819,5395,"[""Headphones""]",4993.68,"{""loyalty"": ""6%""}",200485,1,Europe +2023-04-17,11820,8594,"[""Tablet"", ""Laptop""]",4750.09,"{""seasonal"": ""6%""}",105073,1,North America +2024-04-25,11821,1914,"[""Monitor""]",3860.67,{},63381,1,Asia +2023-12-11,11822,4530,"[""Tablet"", ""Keyboard""]",2274.83,"{""promo"": ""26%""}",45285,1,Africa +2023-06-17,11823,9393,"[""Charger"", ""Keyboard"", ""Headphones""]",2284.66,{},205467,1,South America +2024-10-04,11824,5010,"[""Phone""]",2006.01,"{""promo"": ""15%""}",296076,1,Asia +2023-07-28,11825,5952,"[""Tablet"", ""Charger"", ""Headphones""]",4063.12,"{""promo"": ""24%""}",135437,1,Asia +2024-01-18,11826,8187,"[""Wireless Mouse""]",1626.97,"{""promo"": ""15%""}",202199,0,South America +2023-01-15,11827,8971,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4077.38,{},278197,1,Asia +2023-04-29,11828,8782,"[""Laptop"", ""Keyboard""]",4214.8,{},279811,0,Africa +2023-04-22,11829,8552,"[""Laptop"", ""Charger""]",3074.77,{},101140,0,Europe +2023-03-12,11830,247,"[""Phone"", ""Keyboard""]",962.06,"{""loyalty"": ""7%""}",233373,1,Africa +2023-06-04,11831,3440,"[""Tablet"", ""Laptop"", ""Phone""]",2329.47,"{"""": ""21%""}",84114,1,Europe +2023-05-14,11832,7994,"[""Laptop"", ""Charger""]",2523.6,{},144790,1,Europe +2023-08-29,11833,8004,"[""Wireless Mouse""]",2517.85,{},42549,0,South America +2024-04-18,11834,9457,"[""Phone"", ""Wireless Mouse""]",4286.06,{},223656,0,South America +2024-11-29,11835,3910,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3316.83,{},192873,0,North America +2024-05-30,11836,4610,"[""Phone""]",3766.87,"{""promo"": ""16%""}",210624,1,Europe +2023-07-14,11837,7013,"[""Monitor""]",4107.33,"{""loyalty"": ""7%""}",10864,0,Africa +2023-08-22,11838,1476,"[""Headphones"", ""Keyboard""]",258.72,"{"""": ""5%""}",193875,0,South America +2024-09-28,11839,7960,"[""Wireless Mouse"", ""Phone""]",4984.42,{},279051,0,North America +2024-02-17,11840,2488,"[""Headphones""]",1023.51,"{"""": ""12%""}",46290,1,Asia +2023-12-13,11841,8861,"[""Tablet""]",2417.07,{},216127,0,Europe +2023-01-30,11842,4358,"[""Monitor"", ""Wireless Mouse""]",1509.85,{},214945,0,Europe +2024-04-06,11843,3898,"[""Monitor""]",2233.38,{},7815,0,Asia +2023-08-28,11844,7151,"[""Tablet"", ""Phone"", ""Headphones""]",4470.99,"{"""": ""19%""}",14826,1,Africa +2023-05-24,11845,2775,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2658.63,"{""promo"": ""20%""}",288123,1,Asia +2024-06-11,11846,9327,"[""Phone"", ""Keyboard""]",4377.08,"{""promo"": ""11%""}",229428,0,Europe +2023-06-14,11847,9671,"[""Phone"", ""Headphones"", ""Laptop""]",3734.6,"{""loyalty"": ""13%""}",236200,1,North America +2024-09-17,11848,1791,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3286.24,"{"""": ""15%""}",101680,0,North America +2024-08-26,11849,583,"[""Phone"", ""Charger"", ""Tablet""]",544.61,"{""seasonal"": ""28%""}",112774,0,Europe +2023-03-18,11850,6985,"[""Keyboard"", ""Monitor""]",580.03,{},204751,0,Europe +2023-11-19,11851,4127,"[""Tablet"", ""Laptop"", ""Charger""]",2088.41,"{""seasonal"": ""13%""}",184022,1,Asia +2023-09-16,11852,8632,"[""Laptop"", ""Tablet""]",4972.07,"{""promo"": ""15%""}",46072,1,Europe +2024-06-04,11853,1842,"[""Keyboard"", ""Monitor"", ""Headphones""]",2652.87,"{"""": ""24%""}",26660,0,Asia +2023-05-08,11854,2707,"[""Headphones""]",3666.65,{},294625,0,Africa +2023-05-24,11855,7526,"[""Laptop"", ""Charger""]",102.47,{},259204,1,Asia +2023-12-22,11856,9585,"[""Laptop"", ""Phone"", ""Keyboard""]",4004.53,"{""promo"": ""18%""}",287646,1,South America +2023-11-24,11857,1893,"[""Charger"", ""Phone""]",1933.1,"{""promo"": ""10%""}",6070,1,Africa +2024-05-20,11858,4369,"[""Headphones"", ""Laptop""]",2311.95,"{""promo"": ""27%""}",87296,0,Asia +2024-10-13,11859,5570,"[""Keyboard"", ""Monitor"", ""Headphones""]",115.03,{},33711,0,Africa +2023-11-12,11860,880,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4200.67,"{""loyalty"": ""19%""}",297433,0,North America +2023-10-04,11861,8581,"[""Wireless Mouse""]",2776.64,"{""seasonal"": ""14%""}",275042,0,Africa +2024-09-17,11862,1506,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3841.08,"{""seasonal"": ""10%""}",46876,1,Africa +2023-07-15,11863,1438,"[""Laptop"", ""Headphones""]",344.08,"{"""": ""8%""}",176929,1,Europe +2023-05-27,11864,6402,"[""Wireless Mouse"", ""Tablet""]",2747.97,{},71547,0,Asia +2023-11-18,11865,3950,"[""Tablet""]",1635.73,{},178135,0,Europe +2023-01-06,11866,6332,"[""Wireless Mouse""]",2811.8,"{""promo"": ""19%""}",52093,0,Africa +2024-11-29,11867,7586,"[""Wireless Mouse"", ""Monitor""]",2200.66,{},128250,0,Asia +2023-02-02,11868,1020,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3923.66,"{""loyalty"": ""21%""}",177576,1,North America +2023-08-27,11869,4674,"[""Monitor"", ""Phone""]",4795.35,{},152973,1,South America +2024-12-20,11870,9552,"[""Headphones""]",1423.01,{},113255,1,Asia +2023-12-14,11871,2013,"[""Headphones""]",3152.23,{},164647,1,South America +2024-07-09,11872,36,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",656.7,"{""loyalty"": ""11%""}",283096,1,Asia +2023-12-22,11873,7582,"[""Charger"", ""Phone"", ""Headphones""]",1265.48,"{""promo"": ""28%""}",69141,1,North America +2023-08-13,11874,3378,"[""Charger"", ""Tablet"", ""Headphones""]",1590.53,{},206160,1,North America +2023-07-23,11875,1426,"[""Wireless Mouse"", ""Laptop""]",3402.74,"{""promo"": ""30%""}",36734,0,South America +2024-01-17,11876,9518,"[""Monitor""]",4805.82,{},139214,1,South America +2023-01-11,11877,3438,"[""Laptop"", ""Charger"", ""Headphones""]",1803.3,{},129499,0,Africa +2023-02-16,11878,3911,"[""Wireless Mouse""]",1401.22,"{"""": ""28%""}",134310,0,South America +2023-03-02,11879,2796,"[""Laptop"", ""Headphones""]",382.52,"{""seasonal"": ""30%""}",2511,1,South America +2024-07-01,11880,5714,"[""Wireless Mouse"", ""Laptop""]",2032.46,{},61350,0,South America +2023-07-29,11881,8656,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3380.08,{},258351,0,Europe +2024-05-23,11882,6395,"[""Phone""]",1945.15,"{""seasonal"": ""30%""}",270171,1,Europe +2024-10-08,11883,9339,"[""Phone"", ""Headphones"", ""Monitor""]",1643.13,"{"""": ""7%""}",25426,1,Africa +2023-06-19,11884,406,"[""Phone"", ""Laptop""]",2339.01,{},206151,0,Africa +2023-09-07,11885,6157,"[""Monitor"", ""Laptop""]",457.65,{},60502,0,Asia +2023-06-25,11886,9306,"[""Keyboard"", ""Laptop""]",4208.03,{},6301,0,Africa +2024-12-01,11887,1414,"[""Wireless Mouse""]",2605.78,"{""seasonal"": ""7%""}",94375,1,Europe +2024-05-02,11888,4216,"[""Keyboard""]",2109.87,{},8088,0,Europe +2024-05-22,11889,3625,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1493.6,"{""seasonal"": ""14%""}",114056,1,Africa +2023-05-31,11890,5573,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2233.66,"{""loyalty"": ""22%""}",83288,1,Europe +2024-10-01,11891,5547,"[""Laptop"", ""Charger""]",179.83,"{"""": ""16%""}",214444,1,Africa +2023-07-29,11892,3322,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4635.94,"{""loyalty"": ""27%""}",249043,1,Europe +2024-01-10,11893,2612,"[""Wireless Mouse""]",3855.74,"{""loyalty"": ""24%""}",12093,1,Europe +2023-03-24,11894,8268,"[""Charger""]",314.2,{},100644,0,North America +2024-08-17,11895,3881,"[""Headphones"", ""Tablet"", ""Monitor""]",1216.0,{},137819,1,Europe +2024-10-07,11896,4902,"[""Wireless Mouse"", ""Phone""]",4284.7,"{"""": ""9%""}",17294,0,South America +2024-09-20,11897,6496,"[""Laptop"", ""Charger""]",1184.63,{},77502,0,Asia +2024-04-01,11898,6485,"[""Tablet""]",1718.59,"{""seasonal"": ""9%""}",72495,1,South America +2023-12-10,11899,4970,"[""Phone"", ""Tablet"", ""Keyboard""]",3332.27,"{""loyalty"": ""17%""}",225860,1,North America +2024-01-21,11900,3595,"[""Monitor"", ""Keyboard"", ""Tablet""]",520.35,{},292494,0,Asia +2023-12-02,11901,3092,"[""Headphones"", ""Monitor"", ""Charger""]",1455.07,"{""promo"": ""10%""}",172270,1,North America +2024-06-23,11902,8129,"[""Laptop"", ""Keyboard""]",2481.5,"{""seasonal"": ""25%""}",295810,1,Europe +2023-01-01,11903,5097,"[""Monitor"", ""Keyboard""]",439.11,{},66963,0,South America +2024-09-27,11904,3818,"[""Monitor""]",2541.25,"{""seasonal"": ""18%""}",28550,1,Asia +2024-07-05,11905,4658,"[""Keyboard"", ""Laptop"", ""Phone""]",1330.74,"{""seasonal"": ""9%""}",141713,0,Asia +2024-08-14,11906,1660,"[""Monitor"", ""Headphones""]",4454.85,{},151780,0,South America +2024-08-26,11907,4542,"[""Tablet""]",2442.83,{},108594,0,North America +2024-12-05,11908,2999,"[""Phone""]",2923.28,"{""seasonal"": ""22%""}",291525,1,Asia +2024-10-08,11909,8117,"[""Wireless Mouse""]",578.34,"{""loyalty"": ""15%""}",232145,1,North America +2023-08-30,11910,1053,"[""Headphones"", ""Keyboard""]",3226.56,"{""loyalty"": ""26%""}",235979,0,Africa +2023-07-15,11911,1888,"[""Phone""]",771.24,"{""loyalty"": ""21%""}",273243,1,South America +2024-01-31,11912,1371,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1225.35,{},20004,1,North America +2024-07-22,11913,7280,"[""Tablet"", ""Headphones"", ""Keyboard""]",2245.13,"{""seasonal"": ""15%""}",235846,1,Africa +2024-02-14,11914,3680,"[""Keyboard"", ""Monitor"", ""Laptop""]",2421.03,{},30408,1,North America +2024-05-27,11915,1513,"[""Tablet"", ""Monitor""]",602.15,"{""promo"": ""20%""}",41575,0,South America +2023-10-13,11916,7959,"[""Monitor""]",4326.88,{},164888,0,Africa +2023-07-01,11917,1126,"[""Laptop"", ""Tablet""]",2033.88,"{""seasonal"": ""19%""}",244284,0,North America +2023-12-01,11918,5216,"[""Keyboard""]",591.86,{},13211,1,Africa +2024-08-03,11919,9762,"[""Phone"", ""Laptop""]",4109.16,{},115100,1,South America +2023-02-10,11920,7269,"[""Keyboard"", ""Tablet""]",881.1,{},84106,0,South America +2024-08-21,11921,6301,"[""Wireless Mouse"", ""Tablet""]",529.18,"{""loyalty"": ""26%""}",180072,1,South America +2023-08-21,11922,4234,"[""Charger"", ""Headphones"", ""Laptop""]",1995.72,"{""loyalty"": ""20%""}",281066,0,North America +2024-02-16,11923,1280,"[""Phone"", ""Headphones"", ""Laptop""]",3643.75,"{""loyalty"": ""6%""}",83198,1,Asia +2023-03-09,11924,1981,"[""Tablet"", ""Headphones""]",3806.11,{},93947,0,North America +2024-11-02,11925,4994,"[""Monitor"", ""Phone""]",4407.47,"{""loyalty"": ""26%""}",143276,0,Europe +2024-07-21,11926,5068,"[""Monitor"", ""Charger"", ""Phone""]",638.83,"{""promo"": ""27%""}",88549,0,Africa +2023-05-02,11927,3590,"[""Monitor"", ""Keyboard""]",3491.27,"{""seasonal"": ""19%""}",64503,0,Europe +2023-08-20,11928,2991,"[""Keyboard"", ""Wireless Mouse""]",2292.4,"{""seasonal"": ""13%""}",64439,0,North America +2024-11-01,11929,4065,"[""Charger"", ""Tablet""]",3319.56,{},177952,1,Africa +2024-05-02,11930,611,"[""Charger""]",4191.34,{},94329,1,Africa +2024-01-13,11931,1797,"[""Monitor"", ""Charger"", ""Laptop""]",384.23,"{"""": ""28%""}",210946,0,Asia +2024-09-14,11932,2597,"[""Keyboard"", ""Wireless Mouse""]",1808.84,{},75872,0,South America +2024-10-08,11933,575,"[""Laptop"", ""Headphones"", ""Monitor""]",4738.8,{},175733,0,Europe +2023-06-01,11934,2259,"[""Wireless Mouse"", ""Keyboard""]",2821.43,"{""promo"": ""11%""}",273101,0,South America +2023-07-29,11935,4745,"[""Wireless Mouse""]",1616.44,{},257405,1,Africa +2023-11-17,11936,3592,"[""Charger""]",1453.73,{},74433,1,Europe +2023-08-12,11937,2324,"[""Laptop""]",2419.56,"{""loyalty"": ""12%""}",242374,1,South America +2024-12-25,11938,4642,"[""Tablet"", ""Phone""]",2782.23,{},276777,1,Europe +2023-08-26,11939,3402,"[""Keyboard"", ""Monitor""]",4799.09,"{""promo"": ""5%""}",22221,1,Africa +2024-05-17,11940,2232,"[""Charger"", ""Monitor""]",1668.32,"{""seasonal"": ""9%""}",59870,1,Asia +2024-10-13,11941,1613,"[""Headphones""]",830.99,"{""promo"": ""27%""}",202691,0,South America +2023-11-24,11942,6478,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2663.63,"{""seasonal"": ""7%""}",284048,0,Asia +2024-04-09,11943,1004,"[""Phone"", ""Keyboard""]",3207.85,"{""loyalty"": ""30%""}",134952,1,Asia +2024-01-22,11944,2449,"[""Phone"", ""Laptop"", ""Monitor""]",1554.46,"{""seasonal"": ""30%""}",97913,1,Europe +2023-12-13,11945,7446,"[""Tablet""]",2242.6,"{""loyalty"": ""30%""}",252540,0,South America +2023-03-05,11946,1253,"[""Charger"", ""Phone"", ""Tablet""]",2997.49,{},191453,0,Asia +2023-09-12,11947,8293,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",131.44,"{""seasonal"": ""13%""}",296736,1,North America +2023-12-29,11948,2352,"[""Monitor"", ""Laptop"", ""Phone""]",3990.36,{},112125,0,Africa +2024-04-13,11949,3461,"[""Monitor""]",4588.41,{},81336,0,Africa +2024-04-10,11950,9977,"[""Headphones""]",1427.27,"{"""": ""21%""}",16390,1,Africa +2024-03-31,11951,3045,"[""Charger"", ""Laptop"", ""Phone""]",835.45,"{"""": ""18%""}",289921,0,Africa +2024-08-15,11952,8157,"[""Tablet""]",1979.39,{},185077,0,Europe +2023-01-25,11953,1462,"[""Headphones"", ""Laptop""]",3725.89,{},291649,1,South America +2023-07-23,11954,6767,"[""Headphones""]",4030.58,"{""loyalty"": ""27%""}",153723,0,South America +2024-12-04,11955,467,"[""Monitor"", ""Phone""]",286.61,{},172335,1,North America +2023-06-05,11956,9661,"[""Monitor"", ""Tablet""]",1585.81,"{""loyalty"": ""12%""}",206399,1,Asia +2024-05-28,11957,6827,"[""Laptop"", ""Monitor"", ""Keyboard""]",4830.21,"{""loyalty"": ""24%""}",25613,1,South America +2023-04-19,11958,384,"[""Headphones"", ""Phone"", ""Charger""]",2908.79,{},107308,0,Asia +2024-07-24,11959,82,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",81.99,"{""seasonal"": ""25%""}",221560,1,North America +2023-07-11,11960,8211,"[""Laptop"", ""Monitor""]",3740.09,{},131956,0,Europe +2023-03-23,11961,9096,"[""Charger""]",2564.93,"{""seasonal"": ""19%""}",181332,0,Europe +2023-09-02,11962,7489,"[""Phone"", ""Monitor""]",651.8,{},102663,1,Asia +2024-12-15,11963,5354,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3356.67,"{""seasonal"": ""9%""}",119990,1,South America +2024-07-22,11964,6075,"[""Charger"", ""Tablet"", ""Laptop""]",2358.66,{},154645,1,Europe +2024-11-04,11965,1549,"[""Headphones""]",1998.63,{},169730,0,Europe +2024-10-13,11966,3402,"[""Keyboard"", ""Tablet"", ""Headphones""]",277.24,"{""seasonal"": ""25%""}",158813,0,Asia +2023-11-24,11967,1229,"[""Wireless Mouse""]",3095.9,{},157166,0,North America +2023-02-01,11968,6159,"[""Phone"", ""Headphones""]",3624.98,{},181864,0,Asia +2023-09-08,11969,7076,"[""Wireless Mouse"", ""Phone""]",997.24,{},279154,0,Africa +2024-02-01,11970,6959,"[""Keyboard"", ""Headphones"", ""Laptop""]",1189.64,{},58735,1,Europe +2024-12-10,11971,1683,"[""Monitor"", ""Tablet"", ""Headphones""]",2392.27,"{""promo"": ""12%""}",72506,1,North America +2023-01-02,11972,2618,"[""Charger"", ""Headphones"", ""Phone""]",3495.26,"{""promo"": ""21%""}",243913,1,Asia +2023-01-08,11973,20,"[""Headphones"", ""Phone"", ""Tablet""]",4381.3,"{"""": ""20%""}",126853,1,North America +2024-06-26,11974,2442,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1109.28,"{""loyalty"": ""18%""}",105208,0,South America +2024-09-01,11975,287,"[""Wireless Mouse"", ""Charger""]",1708.75,{},155615,1,North America +2023-03-02,11976,4534,"[""Wireless Mouse""]",867.06,{},74050,0,South America +2024-12-11,11977,5955,"[""Headphones"", ""Charger""]",3145.84,{},68974,1,Europe +2024-04-03,11978,7136,"[""Charger"", ""Laptop""]",145.58,{},276210,0,Africa +2023-12-21,11979,5649,"[""Wireless Mouse""]",2454.47,"{""loyalty"": ""18%""}",287879,0,South America +2024-08-20,11980,6859,"[""Keyboard"", ""Headphones"", ""Charger""]",2279.69,{},29104,1,Asia +2023-03-02,11981,6984,"[""Laptop"", ""Monitor"", ""Keyboard""]",3205.47,{},153691,0,North America +2024-08-03,11982,8373,"[""Keyboard""]",332.15,{},202266,1,Asia +2023-04-04,11983,7046,"[""Tablet""]",2376.27,"{""seasonal"": ""21%""}",275924,0,Asia +2024-06-01,11984,7984,"[""Laptop"", ""Tablet"", ""Headphones""]",4616.83,"{""loyalty"": ""13%""}",229239,1,South America +2024-06-08,11985,866,"[""Laptop"", ""Monitor""]",4466.25,"{""seasonal"": ""18%""}",117058,0,Europe +2023-02-11,11986,9443,"[""Wireless Mouse"", ""Phone""]",3771.42,"{""seasonal"": ""13%""}",23026,1,North America +2023-07-03,11987,409,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1641.46,"{""promo"": ""6%""}",293080,1,Africa +2024-04-22,11988,3601,"[""Laptop"", ""Keyboard"", ""Charger""]",4899.33,"{"""": ""29%""}",203072,1,Asia +2024-10-03,11989,4460,"[""Wireless Mouse""]",3759.32,{},137981,1,South America +2023-06-08,11990,62,"[""Keyboard"", ""Charger""]",2521.95,"{""loyalty"": ""24%""}",210864,1,South America +2024-06-06,11991,9377,"[""Headphones""]",4438.58,{},132507,1,Africa +2023-04-04,11992,321,"[""Keyboard""]",777.25,"{"""": ""6%""}",279819,0,North America +2023-09-10,11993,5911,"[""Keyboard""]",1559.35,{},143433,0,South America +2023-08-04,11994,9930,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",129.74,"{""seasonal"": ""24%""}",218360,1,Asia +2023-10-17,11995,4565,"[""Tablet"", ""Phone"", ""Laptop""]",204.3,"{""loyalty"": ""5%""}",11260,0,South America +2023-09-22,11996,5853,"[""Charger"", ""Wireless Mouse""]",738.69,{},86628,0,South America +2023-10-05,11997,5711,"[""Laptop""]",4319.81,{},201645,1,Europe +2023-07-12,11998,865,"[""Laptop"", ""Charger"", ""Keyboard""]",2691.85,"{""loyalty"": ""17%""}",205454,0,Asia +2024-08-10,11999,4866,"[""Charger"", ""Phone"", ""Headphones""]",932.8,"{""seasonal"": ""9%""}",253641,0,Asia +2023-11-30,12000,9195,"[""Laptop""]",3833.35,"{""seasonal"": ""15%""}",152717,0,Europe +2023-10-11,12001,7144,"[""Charger""]",1994.71,{},239902,0,Asia +2024-05-09,12002,2521,"[""Keyboard"", ""Headphones""]",4654.73,{},133968,0,Asia +2023-07-24,12003,3545,"[""Keyboard""]",2564.58,"{""loyalty"": ""22%""}",257027,0,Asia +2024-08-27,12004,1133,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4129.64,"{""loyalty"": ""23%""}",266386,0,North America +2023-07-10,12005,8988,"[""Wireless Mouse""]",4143.03,"{"""": ""11%""}",22955,0,South America +2024-05-06,12006,9168,"[""Monitor"", ""Headphones""]",3156.57,"{"""": ""22%""}",108684,0,North America +2024-02-20,12007,1270,"[""Headphones"", ""Laptop"", ""Charger""]",3205.51,{},151782,0,Africa +2024-03-25,12008,441,"[""Tablet"", ""Laptop""]",689.06,{},45915,1,Asia +2023-09-15,12009,8808,"[""Monitor""]",787.31,{},133983,0,North America +2024-09-29,12010,8310,"[""Laptop""]",3439.78,{},287219,0,North America +2024-09-04,12011,1593,"[""Keyboard"", ""Charger""]",3224.7,"{""seasonal"": ""7%""}",215180,0,Asia +2024-08-31,12012,8189,"[""Charger""]",2449.02,"{""seasonal"": ""15%""}",231760,1,Asia +2024-10-29,12013,3474,"[""Keyboard"", ""Headphones"", ""Charger""]",4798.66,{},223822,0,North America +2023-06-07,12014,685,"[""Charger"", ""Phone"", ""Monitor""]",3786.62,{},188380,1,Asia +2023-12-07,12015,3412,"[""Phone"", ""Wireless Mouse""]",2719.68,"{""seasonal"": ""18%""}",230181,0,Asia +2023-08-08,12016,4397,"[""Wireless Mouse""]",2563.85,{},242222,1,South America +2024-09-22,12017,5309,"[""Monitor""]",2739.38,{},176316,0,Asia +2024-07-17,12018,4036,"[""Headphones"", ""Tablet"", ""Phone""]",4901.79,{},162694,0,Europe +2023-12-21,12019,3795,"[""Headphones""]",1576.98,{},112758,0,Asia +2023-02-25,12020,275,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",344.04,"{""promo"": ""24%""}",66667,0,Asia +2023-03-29,12021,640,"[""Wireless Mouse""]",3725.92,{},138214,0,South America +2024-12-06,12022,3513,"[""Charger""]",4458.5,"{"""": ""8%""}",260420,0,Asia +2023-06-11,12023,1931,"[""Tablet""]",1584.5,{},259993,1,Asia +2024-01-19,12024,4959,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",759.12,{},122350,1,North America +2024-06-28,12025,1762,"[""Tablet"", ""Wireless Mouse""]",3533.88,"{""loyalty"": ""14%""}",79682,1,Europe +2024-08-20,12026,7006,"[""Keyboard""]",1895.58,"{""loyalty"": ""12%""}",267473,1,South America +2023-02-01,12027,2691,"[""Laptop""]",1806.08,"{"""": ""28%""}",44086,1,Asia +2023-07-08,12028,1404,"[""Tablet""]",505.87,"{""seasonal"": ""8%""}",196096,0,Asia +2023-12-11,12029,3551,"[""Keyboard"", ""Charger""]",4970.7,"{""seasonal"": ""8%""}",178111,0,North America +2023-07-31,12030,7693,"[""Monitor"", ""Headphones"", ""Tablet""]",489.59,{},273370,0,Africa +2024-10-08,12031,2549,"[""Tablet""]",3478.61,{},22235,1,Europe +2024-11-22,12032,378,"[""Laptop""]",1832.5,{},234002,0,Africa +2023-08-30,12033,4868,"[""Tablet"", ""Headphones""]",2136.66,{},175393,1,Africa +2024-12-15,12034,6360,"[""Laptop""]",584.01,{},149684,0,Asia +2024-08-07,12035,8369,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3626.41,"{""promo"": ""30%""}",209854,1,Europe +2024-09-30,12036,417,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4995.38,{},214333,1,North America +2024-04-19,12037,2172,"[""Headphones""]",4967.92,"{""seasonal"": ""5%""}",44315,1,Europe +2024-03-02,12038,4157,"[""Monitor""]",2245.57,{},9457,0,Asia +2023-08-11,12039,2144,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1099.03,{},5678,0,Africa +2023-08-11,12040,1575,"[""Wireless Mouse"", ""Tablet""]",1661.88,"{""promo"": ""28%""}",284292,0,Europe +2023-10-08,12041,154,"[""Keyboard"", ""Phone"", ""Laptop""]",3700.83,{},118887,1,Europe +2024-12-06,12042,1350,"[""Phone"", ""Laptop"", ""Keyboard""]",1156.35,{},33404,0,Asia +2023-05-30,12043,4555,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1424.43,"{""seasonal"": ""21%""}",63582,0,South America +2024-09-13,12044,1178,"[""Monitor""]",1035.41,"{"""": ""16%""}",255399,1,Europe +2024-08-11,12045,5953,"[""Phone"", ""Headphones"", ""Keyboard""]",4587.65,{},246502,0,North America +2024-07-24,12046,9233,"[""Tablet"", ""Charger""]",2143.62,{},211338,1,Europe +2023-08-09,12047,2597,"[""Charger"", ""Wireless Mouse""]",2416.01,{},31099,0,Africa +2023-01-27,12048,9817,"[""Keyboard"", ""Wireless Mouse""]",2192.07,"{"""": ""21%""}",84695,1,Africa +2023-02-23,12049,3778,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",358.75,"{"""": ""6%""}",31264,1,Asia +2024-09-01,12050,30,"[""Wireless Mouse"", ""Phone""]",4770.76,"{""loyalty"": ""25%""}",287706,1,North America +2024-03-14,12051,3766,"[""Phone"", ""Charger""]",3339.4,{},77908,0,North America +2024-04-13,12052,1515,"[""Headphones"", ""Laptop"", ""Keyboard""]",2137.12,"{""loyalty"": ""18%""}",25699,0,Europe +2023-09-19,12053,2705,"[""Tablet"", ""Headphones"", ""Charger""]",791.69,"{"""": ""16%""}",181902,1,South America +2024-01-27,12054,9968,"[""Charger""]",4557.34,{},46178,0,Europe +2023-02-24,12055,7746,"[""Headphones"", ""Wireless Mouse""]",304.68,{},121252,0,North America +2023-08-05,12056,3385,"[""Laptop"", ""Monitor"", ""Keyboard""]",3122.39,{},7522,0,South America +2023-04-06,12057,2485,"[""Headphones""]",280.6,{},178702,1,Africa +2024-11-02,12058,942,"[""Phone""]",2931.64,{},291288,1,South America +2023-09-02,12059,7265,"[""Keyboard""]",1346.39,"{""seasonal"": ""25%""}",247293,0,South America +2024-04-02,12060,9867,"[""Monitor"", ""Charger""]",1581.4,{},260254,0,North America +2023-01-31,12061,3750,"[""Phone""]",916.45,{},282481,0,North America +2024-07-01,12062,2731,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3520.17,{},282481,1,South America +2024-09-07,12063,4179,"[""Tablet"", ""Laptop""]",376.72,{},94169,1,Asia +2024-06-23,12064,2959,"[""Monitor"", ""Tablet"", ""Headphones""]",2433.53,"{""loyalty"": ""5%""}",74006,0,North America +2023-10-29,12065,7429,"[""Keyboard"", ""Headphones"", ""Tablet""]",187.92,"{""loyalty"": ""19%""}",27505,0,Europe +2023-10-31,12066,3083,"[""Phone""]",4047.61,"{""seasonal"": ""7%""}",188289,1,South America +2023-01-13,12067,7672,"[""Wireless Mouse""]",958.48,"{""seasonal"": ""14%""}",23020,0,South America +2023-11-25,12068,4486,"[""Headphones"", ""Charger"", ""Keyboard""]",4899.59,{},227795,0,Europe +2024-07-30,12069,8959,"[""Tablet""]",2032.22,{},102566,1,Asia +2024-10-17,12070,272,"[""Laptop"", ""Monitor""]",1649.88,"{"""": ""13%""}",121454,1,Europe +2023-02-23,12071,7562,"[""Wireless Mouse"", ""Charger""]",2324.36,{},293426,0,Europe +2023-01-30,12072,3735,"[""Wireless Mouse"", ""Tablet""]",2812.9,"{""seasonal"": ""20%""}",212147,0,North America +2024-08-20,12073,7993,"[""Keyboard""]",630.71,{},201091,1,Asia +2023-10-23,12074,2863,"[""Laptop""]",1850.04,{},99362,0,Asia +2024-08-15,12075,912,"[""Tablet"", ""Monitor""]",2721.16,{},153205,1,Europe +2024-10-17,12076,3422,"[""Tablet"", ""Headphones""]",982.85,{},297128,0,Asia +2023-12-19,12077,3917,"[""Tablet"", ""Keyboard"", ""Phone""]",2595.33,{},247153,1,Africa +2024-03-14,12078,5974,"[""Monitor"", ""Laptop"", ""Tablet""]",624.12,{},171917,1,Europe +2023-12-24,12079,9610,"[""Headphones"", ""Tablet"", ""Charger""]",1802.3,{},10081,0,Asia +2023-10-18,12080,6983,"[""Charger"", ""Phone""]",2642.14,"{""loyalty"": ""24%""}",225561,0,South America +2023-04-24,12081,4288,"[""Keyboard"", ""Headphones""]",166.16,{},261396,0,North America +2024-02-20,12082,9000,"[""Phone"", ""Monitor"", ""Tablet""]",3285.75,"{""seasonal"": ""20%""}",203489,1,Europe +2024-12-29,12083,3998,"[""Keyboard"", ""Headphones""]",412.26,"{""loyalty"": ""16%""}",288974,0,Asia +2023-02-26,12084,7318,"[""Phone"", ""Charger""]",4224.06,"{""loyalty"": ""23%""}",90028,0,South America +2024-06-24,12085,5929,"[""Monitor""]",1969.15,"{""seasonal"": ""11%""}",189593,1,South America +2023-02-05,12086,6093,"[""Keyboard""]",4387.33,"{""loyalty"": ""28%""}",82019,0,Europe +2023-03-19,12087,6843,"[""Charger""]",2811.5,"{"""": ""30%""}",222947,0,South America +2024-06-01,12088,2179,"[""Wireless Mouse""]",4112.29,{},48412,1,South America +2024-09-11,12089,3317,"[""Wireless Mouse"", ""Phone""]",2773.47,"{""seasonal"": ""25%""}",102273,0,Africa +2023-08-05,12090,1915,"[""Keyboard"", ""Headphones"", ""Monitor""]",103.34,{},125134,0,Africa +2024-05-07,12091,4727,"[""Tablet""]",3409.04,"{""loyalty"": ""26%""}",99701,1,South America +2024-05-11,12092,5983,"[""Charger""]",1092.43,{},43985,1,South America +2024-12-01,12093,1018,"[""Charger""]",1365.49,"{""seasonal"": ""20%""}",215007,0,Africa +2023-04-20,12094,8277,"[""Phone"", ""Headphones"", ""Monitor""]",2985.6,{},299310,0,Africa +2024-05-22,12095,5185,"[""Wireless Mouse""]",3624.72,"{""promo"": ""26%""}",37605,0,South America +2023-08-04,12096,496,"[""Monitor"", ""Tablet"", ""Keyboard""]",3160.17,"{""seasonal"": ""18%""}",289934,1,Africa +2024-12-20,12097,6775,"[""Charger"", ""Laptop"", ""Headphones""]",3876.28,"{""loyalty"": ""13%""}",146939,0,Europe +2023-07-31,12098,6291,"[""Phone""]",1778.53,{},84693,1,Africa +2024-09-03,12099,7529,"[""Charger"", ""Phone"", ""Laptop""]",3441.96,"{"""": ""26%""}",28235,0,North America +2023-06-07,12100,2855,"[""Monitor""]",4178.08,"{""seasonal"": ""21%""}",232836,0,Asia +2024-02-28,12101,1515,"[""Keyboard"", ""Monitor""]",4629.2,{},210696,1,Asia +2024-04-03,12102,2450,"[""Monitor"", ""Laptop""]",3329.96,"{""loyalty"": ""24%""}",256597,0,Europe +2024-07-18,12103,109,"[""Charger"", ""Monitor"", ""Keyboard""]",4086.26,{},275063,0,Asia +2023-03-07,12104,8266,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",946.78,"{""seasonal"": ""17%""}",254078,1,Europe +2023-03-04,12105,5148,"[""Laptop"", ""Tablet""]",2414.25,"{""loyalty"": ""8%""}",1382,1,Africa +2024-03-21,12106,5739,"[""Keyboard"", ""Phone""]",1493.43,{},126679,0,Africa +2024-09-08,12107,388,"[""Monitor"", ""Phone""]",2277.43,"{""loyalty"": ""25%""}",95720,1,South America +2024-04-15,12108,3623,"[""Charger"", ""Headphones""]",742.56,{},235364,1,North America +2023-07-28,12109,2157,"[""Tablet"", ""Headphones""]",2296.74,{},224248,0,Africa +2024-06-23,12110,3978,"[""Monitor"", ""Tablet""]",103.95,"{""loyalty"": ""9%""}",262965,0,Asia +2024-02-02,12111,6944,"[""Keyboard"", ""Monitor"", ""Laptop""]",1901.56,{},205488,1,Africa +2024-08-05,12112,4500,"[""Charger"", ""Keyboard"", ""Phone""]",4542.25,{},173353,1,Asia +2023-10-02,12113,966,"[""Phone"", ""Charger"", ""Tablet""]",3609.79,"{""promo"": ""23%""}",32459,1,North America +2024-07-19,12114,7993,"[""Keyboard""]",1556.37,{},169660,0,South America +2024-08-01,12115,8526,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4270.6,"{""promo"": ""5%""}",219599,0,Africa +2023-01-18,12116,7428,"[""Keyboard"", ""Tablet""]",3082.62,{},169827,0,South America +2024-09-13,12117,5823,"[""Headphones"", ""Charger""]",2173.73,{},250515,0,Africa +2023-01-20,12118,8261,"[""Tablet""]",4669.52,"{"""": ""23%""}",184891,1,Asia +2024-04-19,12119,8060,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2035.79,{},296920,1,North America +2024-09-09,12120,8068,"[""Tablet""]",2689.82,"{""loyalty"": ""25%""}",20201,0,Asia +2023-10-12,12121,9577,"[""Headphones""]",1201.44,{},278778,1,Asia +2024-11-08,12122,7545,"[""Tablet""]",2874.09,{},266647,0,North America +2023-01-02,12123,6297,"[""Tablet""]",496.64,{},228814,0,Europe +2023-05-20,12124,8745,"[""Wireless Mouse"", ""Charger""]",3635.56,{},219985,1,Europe +2023-11-05,12125,7269,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3883.91,{},171380,1,North America +2023-05-27,12126,1623,"[""Phone""]",1392.24,{},283574,0,Europe +2023-12-14,12127,5387,"[""Tablet""]",1676.94,"{"""": ""13%""}",185883,0,Europe +2023-07-25,12128,3739,"[""Laptop""]",328.17,{},48921,1,Africa +2023-03-25,12129,1256,"[""Tablet"", ""Charger"", ""Monitor""]",3356.83,"{"""": ""18%""}",8781,1,North America +2024-11-06,12130,3535,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1875.25,{},51907,1,Europe +2024-04-21,12131,8932,"[""Phone"", ""Wireless Mouse""]",4469.8,{},126680,1,Africa +2023-07-18,12132,736,"[""Charger""]",3838.32,{},56363,1,South America +2024-07-16,12133,677,"[""Phone"", ""Tablet""]",1962.84,{},162420,1,Europe +2023-09-28,12134,5484,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4766.82,"{"""": ""18%""}",46180,1,Asia +2024-09-21,12135,5499,"[""Keyboard"", ""Wireless Mouse""]",637.29,{},97666,1,Europe +2024-05-21,12136,9104,"[""Wireless Mouse"", ""Phone""]",1176.43,{},129173,1,Africa +2023-07-20,12137,7567,"[""Charger"", ""Wireless Mouse""]",951.11,"{""loyalty"": ""5%""}",123121,0,Europe +2024-07-02,12138,6930,"[""Laptop"", ""Charger""]",3617.47,{},249299,1,South America +2023-12-17,12139,1370,"[""Laptop""]",324.86,"{""loyalty"": ""13%""}",90890,1,Asia +2024-01-02,12140,543,"[""Laptop"", ""Charger"", ""Phone""]",3419.98,{},72908,0,South America +2023-11-28,12141,8505,"[""Wireless Mouse""]",1061.74,{},270681,1,Europe +2023-08-08,12142,5900,"[""Phone""]",751.65,"{""seasonal"": ""24%""}",88771,0,South America +2023-03-03,12143,1046,"[""Laptop"", ""Tablet""]",1120.86,{},119254,0,North America +2024-06-07,12144,7250,"[""Monitor""]",3712.63,{},162155,0,Asia +2023-05-01,12145,7064,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4170.8,{},168387,1,Europe +2023-04-17,12146,4471,"[""Headphones"", ""Laptop""]",4781.88,{},65730,1,North America +2023-04-11,12147,1869,"[""Phone"", ""Keyboard"", ""Headphones""]",1273.46,"{""seasonal"": ""28%""}",266131,1,Asia +2024-02-08,12148,9781,"[""Charger""]",2100.78,"{""promo"": ""11%""}",78972,1,Africa +2024-09-07,12149,9928,"[""Headphones"", ""Laptop""]",4576.98,{},102480,1,South America +2023-07-16,12150,4257,"[""Laptop"", ""Charger""]",4942.7,"{""seasonal"": ""30%""}",284573,0,Europe +2024-10-20,12151,5762,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3217.11,"{""loyalty"": ""11%""}",289929,1,North America +2024-12-05,12152,7541,"[""Tablet""]",3289.59,{},53827,0,Africa +2023-12-12,12153,9269,"[""Phone"", ""Monitor""]",2971.36,{},87590,1,South America +2024-04-16,12154,5414,"[""Wireless Mouse"", ""Tablet""]",1437.54,{},234277,1,Europe +2024-09-04,12155,3542,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4263.67,"{"""": ""25%""}",146647,1,North America +2023-06-16,12156,463,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3135.15,{},24967,1,Asia +2023-07-05,12157,1166,"[""Headphones"", ""Keyboard""]",3368.89,"{"""": ""9%""}",6690,0,Africa +2023-02-26,12158,4753,"[""Monitor""]",1984.03,{},49025,1,Europe +2023-09-28,12159,9648,"[""Laptop""]",2266.86,"{""promo"": ""17%""}",153011,0,Africa +2023-08-11,12160,9025,"[""Laptop""]",2716.8,{},220505,1,South America +2024-07-14,12161,4468,"[""Wireless Mouse""]",3914.09,{},37430,0,South America +2024-06-20,12162,8065,"[""Keyboard""]",2708.08,"{"""": ""22%""}",20785,1,South America +2023-04-26,12163,5417,"[""Keyboard"", ""Laptop""]",1339.38,"{""loyalty"": ""28%""}",168512,1,Africa +2024-10-27,12164,8680,"[""Tablet""]",4593.01,"{""loyalty"": ""8%""}",26796,0,Europe +2024-05-30,12165,7949,"[""Laptop"", ""Headphones""]",736.37,{},120572,1,Europe +2024-01-24,12166,3082,"[""Keyboard""]",3381.66,{},127543,0,Europe +2023-07-18,12167,7948,"[""Keyboard""]",3715.18,{},42343,0,Europe +2024-04-08,12168,9456,"[""Headphones""]",4047.35,{},65731,0,North America +2023-01-30,12169,7382,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4361.65,"{"""": ""26%""}",97488,0,Europe +2024-03-20,12170,9963,"[""Phone""]",3498.41,"{"""": ""11%""}",174990,0,South America +2024-11-18,12171,7218,"[""Monitor"", ""Laptop""]",1905.9,{},24571,1,South America +2024-11-02,12172,7129,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",980.53,{},38853,0,Asia +2024-12-03,12173,6707,"[""Phone"", ""Charger""]",3063.02,{},32643,0,South America +2023-10-11,12174,6547,"[""Monitor""]",1823.98,{},174901,1,North America +2023-07-14,12175,2664,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2691.23,{},172805,0,Europe +2024-08-05,12176,9781,"[""Keyboard""]",646.51,{},52019,1,North America +2024-01-25,12177,8029,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",50.71,{},210071,1,Africa +2023-10-07,12178,2074,"[""Charger"", ""Tablet""]",4557.32,"{""loyalty"": ""8%""}",1283,0,Europe +2023-11-24,12179,4208,"[""Laptop""]",457.35,{},62517,1,North America +2023-05-26,12180,4372,"[""Laptop""]",2734.88,"{""seasonal"": ""23%""}",248229,0,North America +2024-10-06,12181,3125,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3435.76,{},215739,0,Europe +2023-12-21,12182,4469,"[""Charger"", ""Laptop"", ""Headphones""]",3858.3,{},248407,1,North America +2023-01-28,12183,7619,"[""Tablet"", ""Charger""]",2199.37,{},95549,1,Africa +2024-10-28,12184,961,"[""Phone"", ""Wireless Mouse""]",159.98,"{""seasonal"": ""25%""}",258272,1,Asia +2024-01-22,12185,6431,"[""Phone"", ""Monitor""]",2947.68,"{""seasonal"": ""26%""}",239226,0,Asia +2024-08-25,12186,8193,"[""Tablet"", ""Headphones"", ""Phone""]",2512.31,"{""promo"": ""10%""}",52625,0,Europe +2023-09-08,12187,3931,"[""Charger"", ""Phone""]",3207.78,{},111497,0,Europe +2023-08-08,12188,2072,"[""Tablet""]",4749.84,{},233804,1,Asia +2023-12-26,12189,4475,"[""Wireless Mouse""]",671.31,{},248353,0,South America +2023-05-03,12190,4052,"[""Laptop""]",3775.98,"{"""": ""20%""}",236600,0,Asia +2024-08-04,12191,6986,"[""Headphones"", ""Charger""]",4287.02,"{""loyalty"": ""10%""}",210713,1,South America +2023-01-13,12192,4994,"[""Charger"", ""Monitor""]",4151.72,{},227545,1,Africa +2024-09-09,12193,7106,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4672.52,{},35076,1,North America +2023-08-08,12194,5766,"[""Keyboard""]",3976.41,{},208654,1,Europe +2023-11-15,12195,9998,"[""Headphones""]",686.81,{},99916,0,Africa +2023-01-03,12196,3475,"[""Headphones"", ""Charger"", ""Phone""]",158.03,{},29990,0,Europe +2024-06-01,12197,3640,"[""Charger"", ""Phone""]",4222.61,{},220950,1,North America +2024-07-24,12198,3553,"[""Phone""]",211.08,"{"""": ""17%""}",69622,1,South America +2023-03-17,12199,7236,"[""Monitor"", ""Charger""]",3382.42,"{""loyalty"": ""22%""}",164263,0,Asia +2023-01-21,12200,3695,"[""Headphones"", ""Monitor"", ""Phone""]",3331.39,"{""loyalty"": ""13%""}",210024,0,South America +2023-12-23,12201,8401,"[""Tablet"", ""Charger""]",4580.72,{},195586,0,North America +2024-01-23,12202,6249,"[""Headphones"", ""Charger""]",4032.79,"{"""": ""29%""}",187631,0,North America +2024-04-24,12203,936,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1859.93,"{""seasonal"": ""19%""}",206584,1,Europe +2024-03-20,12204,6392,"[""Laptop""]",4847.89,"{"""": ""11%""}",270273,1,Asia +2023-08-18,12205,4188,"[""Wireless Mouse"", ""Headphones""]",3389.43,"{""seasonal"": ""18%""}",80278,1,Europe +2024-04-28,12206,9831,"[""Charger"", ""Headphones""]",3241.16,"{""promo"": ""18%""}",74587,0,South America +2023-11-09,12207,6117,"[""Phone"", ""Charger""]",2332.07,{},73445,1,Asia +2024-05-10,12208,5921,"[""Laptop"", ""Phone"", ""Charger""]",2716.4,"{""seasonal"": ""9%""}",204681,1,Asia +2024-08-07,12209,8104,"[""Charger"", ""Headphones"", ""Keyboard""]",1028.25,{},81283,0,North America +2024-11-12,12210,1119,"[""Headphones""]",4895.64,{},214750,1,Europe +2024-03-27,12211,3611,"[""Headphones"", ""Keyboard""]",232.26,{},207811,0,Africa +2023-04-02,12212,7317,"[""Headphones""]",1469.39,"{"""": ""20%""}",191618,0,Asia +2023-02-27,12213,9979,"[""Keyboard""]",2925.33,{},147721,1,Asia +2023-01-31,12214,1133,"[""Monitor"", ""Laptop"", ""Charger""]",4156.38,"{""promo"": ""15%""}",100912,1,Asia +2024-04-30,12215,4415,"[""Tablet"", ""Laptop""]",4797.69,"{""loyalty"": ""21%""}",236011,0,Asia +2024-05-04,12216,2301,"[""Keyboard"", ""Charger""]",3559.64,"{"""": ""15%""}",21607,0,Asia +2024-12-04,12217,2551,"[""Headphones"", ""Phone""]",3846.03,{},266486,1,Asia +2023-02-14,12218,3306,"[""Charger"", ""Tablet"", ""Monitor""]",3620.29,"{""promo"": ""15%""}",30018,0,North America +2023-04-01,12219,4284,"[""Headphones"", ""Phone""]",4906.13,"{"""": ""30%""}",96163,1,Asia +2023-02-26,12220,1021,"[""Headphones""]",3733.92,"{""promo"": ""14%""}",289195,0,Africa +2024-07-19,12221,1744,"[""Charger""]",2729.49,"{""seasonal"": ""30%""}",18742,1,South America +2024-04-20,12222,838,"[""Phone"", ""Headphones""]",2653.66,{},258880,1,Europe +2024-12-30,12223,1118,"[""Wireless Mouse"", ""Keyboard""]",1325.45,{},247504,0,South America +2024-07-12,12224,9062,"[""Keyboard"", ""Wireless Mouse""]",4430.05,"{""seasonal"": ""14%""}",169954,0,South America +2023-07-30,12225,7328,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2268.26,"{"""": ""17%""}",196770,0,Asia +2023-08-27,12226,6819,"[""Monitor"", ""Tablet""]",2404.3,"{""seasonal"": ""23%""}",149105,1,North America +2023-06-27,12227,4503,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1873.44,"{""loyalty"": ""20%""}",152899,1,South America +2023-04-05,12228,5571,"[""Headphones"", ""Charger""]",4530.89,"{"""": ""18%""}",134142,1,South America +2024-04-05,12229,8429,"[""Charger""]",4764.55,{},192678,1,North America +2023-02-06,12230,2197,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3725.54,"{"""": ""13%""}",184427,0,South America +2024-08-02,12231,5135,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1992.68,"{""promo"": ""5%""}",263749,0,Africa +2023-06-20,12232,3816,"[""Headphones"", ""Phone""]",875.01,"{"""": ""30%""}",100236,0,Africa +2024-01-29,12233,5415,"[""Keyboard"", ""Charger""]",390.68,{},125618,1,Europe +2023-08-19,12234,2375,"[""Charger"", ""Keyboard"", ""Monitor""]",4225.25,"{"""": ""21%""}",93980,1,North America +2023-04-24,12235,2228,"[""Monitor"", ""Headphones"", ""Phone""]",4800.22,"{""promo"": ""8%""}",37667,1,Africa +2023-04-09,12236,7644,"[""Phone"", ""Keyboard""]",1615.67,{},139382,1,South America +2023-03-02,12237,3501,"[""Phone"", ""Keyboard"", ""Laptop""]",2241.95,{},286642,0,Asia +2023-01-10,12238,5515,"[""Tablet""]",4768.68,{},2101,1,South America +2024-02-28,12239,3716,"[""Headphones"", ""Keyboard""]",4915.66,{},51445,1,Europe +2024-05-12,12240,8848,"[""Tablet"", ""Wireless Mouse""]",2530.89,{},162678,0,North America +2024-03-11,12241,5108,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4005.33,{},205406,1,Africa +2024-04-12,12242,7032,"[""Charger"", ""Headphones"", ""Phone""]",654.83,{},32455,1,Europe +2024-10-21,12243,9792,"[""Phone""]",4022.7,{},107704,0,North America +2024-02-29,12244,4155,"[""Headphones""]",3145.37,"{""promo"": ""20%""}",164489,0,Europe +2024-10-17,12245,7610,"[""Wireless Mouse""]",1267.75,{},229155,0,South America +2023-03-11,12246,2379,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3062.41,{},78145,1,South America +2023-12-11,12247,6153,"[""Monitor""]",4973.96,{},148571,1,North America +2023-11-28,12248,641,"[""Keyboard"", ""Monitor""]",2823.74,{},106457,0,Europe +2024-03-04,12249,8793,"[""Laptop"", ""Charger""]",2918.86,{},183764,0,South America +2023-06-15,12250,7101,"[""Laptop"", ""Keyboard""]",639.3,"{""seasonal"": ""22%""}",148059,1,Europe +2023-03-11,12251,4563,"[""Laptop""]",3549.2,"{""seasonal"": ""24%""}",125354,1,North America +2024-12-10,12252,5616,"[""Headphones"", ""Phone""]",1661.52,{},116317,1,South America +2023-07-19,12253,6240,"[""Keyboard""]",3628.15,"{"""": ""19%""}",129338,1,Asia +2024-10-21,12254,7685,"[""Monitor"", ""Laptop"", ""Phone""]",3667.5,"{"""": ""12%""}",28008,0,Asia +2024-05-25,12255,9798,"[""Keyboard"", ""Phone"", ""Tablet""]",2435.51,{},57602,1,Asia +2024-04-05,12256,6047,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3802.9,{},201768,0,Europe +2024-12-05,12257,1957,"[""Charger""]",2242.95,{},133221,0,North America +2023-10-07,12258,4741,"[""Tablet""]",4396.77,"{"""": ""27%""}",289373,0,North America +2024-05-17,12259,2761,"[""Wireless Mouse""]",2546.29,"{""seasonal"": ""7%""}",275212,1,South America +2024-05-07,12260,8221,"[""Laptop"", ""Tablet""]",1032.74,"{"""": ""21%""}",297489,1,Africa +2024-04-07,12261,7949,"[""Tablet"", ""Wireless Mouse""]",912.77,{},32467,1,Asia +2023-04-26,12262,4062,"[""Keyboard""]",789.19,"{""promo"": ""18%""}",128038,1,Europe +2024-04-21,12263,3070,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2185.93,"{""promo"": ""9%""}",36350,1,Europe +2024-09-18,12264,2409,"[""Charger"", ""Tablet""]",2786.04,{},52138,1,Europe +2024-02-12,12265,3378,"[""Keyboard""]",316.77,{},152088,0,North America +2023-12-26,12266,1388,"[""Keyboard"", ""Laptop""]",3672.87,"{""loyalty"": ""14%""}",243594,1,Asia +2024-08-15,12267,2564,"[""Laptop""]",4429.51,"{"""": ""17%""}",48183,1,North America +2024-02-27,12268,3765,"[""Keyboard"", ""Tablet""]",2450.69,{},89851,0,Africa +2024-09-25,12269,8215,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",837.54,"{""loyalty"": ""26%""}",48150,0,Europe +2023-12-25,12270,6331,"[""Tablet""]",3084.34,"{""seasonal"": ""10%""}",117072,0,North America +2024-12-03,12271,9398,"[""Phone"", ""Headphones"", ""Keyboard""]",3620.97,{},36955,1,Africa +2024-06-15,12272,1504,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1790.38,"{"""": ""24%""}",178839,0,South America +2023-12-31,12273,7532,"[""Monitor"", ""Charger""]",2811.11,{},251418,1,Africa +2024-04-07,12274,2470,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2063.16,{},290322,1,Asia +2024-02-02,12275,3861,"[""Wireless Mouse"", ""Monitor""]",683.71,"{""loyalty"": ""8%""}",25486,0,Africa +2024-10-12,12276,3406,"[""Phone"", ""Laptop"", ""Monitor""]",2869.33,"{""loyalty"": ""20%""}",190080,1,South America +2024-02-29,12277,3117,"[""Tablet"", ""Monitor""]",1662.62,"{""promo"": ""6%""}",61323,0,Asia +2023-04-27,12278,1438,"[""Keyboard"", ""Charger""]",4344.41,{},148429,1,Africa +2023-10-12,12279,4369,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4450.99,{},260742,1,Asia +2024-10-12,12280,4714,"[""Monitor""]",4249.3,"{""loyalty"": ""12%""}",145638,1,North America +2024-06-03,12281,8980,"[""Tablet"", ""Wireless Mouse""]",3963.3,{},72964,1,North America +2024-12-11,12282,4801,"[""Monitor"", ""Phone""]",3496.74,"{""seasonal"": ""9%""}",128463,0,North America +2023-03-05,12283,8850,"[""Monitor"", ""Tablet""]",1438.95,"{""promo"": ""24%""}",169985,1,South America +2024-02-17,12284,6669,"[""Tablet""]",2144.23,"{""loyalty"": ""25%""}",239223,0,South America +2024-07-15,12285,2378,"[""Tablet"", ""Phone""]",1806.56,"{"""": ""22%""}",21863,0,Africa +2023-02-06,12286,6294,"[""Wireless Mouse""]",3850.67,{},102454,1,Africa +2023-08-14,12287,5563,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",623.4,"{""seasonal"": ""14%""}",97930,1,North America +2023-09-18,12288,8055,"[""Tablet"", ""Phone""]",3444.37,{},126326,1,Europe +2024-01-10,12289,2152,"[""Laptop"", ""Wireless Mouse""]",4679.98,"{"""": ""30%""}",276897,1,North America +2023-12-20,12290,8955,"[""Keyboard""]",4262.07,{},285983,0,Africa +2023-04-09,12291,5490,"[""Wireless Mouse""]",1761.2,{},252054,0,South America +2024-03-22,12292,1958,"[""Monitor"", ""Keyboard""]",1111.25,{},5598,0,Africa +2024-09-07,12293,9697,"[""Wireless Mouse"", ""Charger""]",57.32,"{""promo"": ""23%""}",299817,0,North America +2023-01-08,12294,1543,"[""Laptop"", ""Wireless Mouse""]",4082.39,{},17303,1,North America +2023-10-28,12295,6672,"[""Monitor"", ""Laptop"", ""Headphones""]",2569.96,{},212909,0,Africa +2023-10-09,12296,2564,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",173.44,{},236077,0,Europe +2023-09-06,12297,1973,"[""Wireless Mouse""]",225.11,{},143905,1,Asia +2024-07-08,12298,4674,"[""Monitor"", ""Tablet"", ""Laptop""]",1244.62,{},232297,0,South America +2023-02-26,12299,7664,"[""Tablet""]",2160.5,"{""promo"": ""25%""}",297311,0,North America +2024-01-14,12300,6787,"[""Monitor"", ""Laptop""]",3787.66,"{""promo"": ""22%""}",281592,0,North America +2024-11-23,12301,335,"[""Charger"", ""Tablet""]",820.41,"{""seasonal"": ""6%""}",21172,1,South America +2023-03-04,12302,2640,"[""Charger"", ""Keyboard""]",2744.7,{},288918,1,North America +2023-08-23,12303,1915,"[""Monitor""]",1218.39,{},213563,0,South America +2023-08-08,12304,7919,"[""Keyboard"", ""Tablet""]",263.79,"{""loyalty"": ""14%""}",60264,1,Asia +2024-09-22,12305,652,"[""Monitor""]",1301.55,"{""seasonal"": ""16%""}",212935,1,South America +2023-10-25,12306,5114,"[""Headphones""]",2567.43,{},200015,0,Asia +2024-09-06,12307,5782,"[""Phone"", ""Keyboard""]",185.19,{},188618,1,South America +2024-09-20,12308,3913,"[""Charger"", ""Laptop"", ""Phone""]",1275.09,{},99844,1,North America +2023-10-03,12309,8037,"[""Wireless Mouse""]",835.7,{},222914,1,Africa +2024-01-22,12310,6519,"[""Charger"", ""Headphones""]",3923.25,{},233383,0,North America +2023-07-20,12311,6081,"[""Charger"", ""Phone""]",4259.95,"{""seasonal"": ""21%""}",196609,1,North America +2023-06-16,12312,7181,"[""Headphones""]",4379.79,{},144660,0,Europe +2024-12-25,12313,3350,"[""Tablet""]",445.11,"{"""": ""18%""}",10018,0,Europe +2023-09-22,12314,7499,"[""Charger"", ""Tablet""]",2235.01,"{"""": ""6%""}",30979,0,Europe +2023-09-09,12315,525,"[""Tablet"", ""Laptop"", ""Monitor""]",2875.46,"{"""": ""22%""}",236750,1,North America +2023-12-29,12316,4573,"[""Wireless Mouse""]",1174.94,{},299593,1,South America +2023-12-13,12317,5686,"[""Laptop"", ""Wireless Mouse""]",3714.12,"{""loyalty"": ""17%""}",233696,0,Europe +2024-06-12,12318,2218,"[""Charger"", ""Keyboard"", ""Tablet""]",4719.96,{},39313,0,North America +2023-06-27,12319,8079,"[""Laptop""]",1060.74,"{""loyalty"": ""7%""}",276320,0,Africa +2024-05-08,12320,5581,"[""Wireless Mouse"", ""Charger""]",2518.24,{},144647,1,Africa +2023-05-28,12321,3786,"[""Headphones"", ""Charger""]",3767.94,"{""loyalty"": ""13%""}",248773,0,Asia +2024-06-30,12322,9979,"[""Laptop"", ""Phone""]",3402.05,"{"""": ""5%""}",69596,1,North America +2024-08-13,12323,3791,"[""Wireless Mouse""]",3398.7,{},158245,0,Asia +2023-05-31,12324,3839,"[""Charger""]",4808.0,{},112220,1,South America +2024-03-08,12325,1996,"[""Monitor"", ""Wireless Mouse""]",123.4,{},74502,1,Africa +2023-04-12,12326,4446,"[""Wireless Mouse""]",1448.93,"{""seasonal"": ""25%""}",117366,0,North America +2023-04-22,12327,4303,"[""Keyboard""]",2850.38,{},292141,0,Europe +2023-04-24,12328,6000,"[""Monitor""]",3885.49,{},105610,1,Europe +2023-10-15,12329,8984,"[""Wireless Mouse""]",3926.31,{},293027,0,Europe +2023-02-19,12330,7152,"[""Charger""]",894.5,{},66926,0,North America +2023-11-01,12331,7548,"[""Monitor""]",1446.59,"{""loyalty"": ""14%""}",86495,1,Europe +2023-09-26,12332,5186,"[""Monitor"", ""Phone""]",1720.01,"{""promo"": ""5%""}",259780,0,North America +2023-11-04,12333,5546,"[""Wireless Mouse"", ""Charger""]",1012.96,{},206388,1,South America +2024-01-01,12334,4037,"[""Charger"", ""Keyboard"", ""Laptop""]",442.63,"{""promo"": ""10%""}",113748,1,South America +2024-04-30,12335,455,"[""Wireless Mouse""]",4351.38,{},111632,0,North America +2024-03-07,12336,275,"[""Keyboard"", ""Phone"", ""Laptop""]",2127.86,{},110383,0,Asia +2023-05-22,12337,5155,"[""Keyboard"", ""Phone""]",4752.2,"{"""": ""22%""}",295642,0,Asia +2024-05-03,12338,711,"[""Monitor""]",4264.74,"{""loyalty"": ""20%""}",270068,0,Europe +2024-09-19,12339,3339,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2984.78,{},12756,0,Africa +2024-05-23,12340,6898,"[""Monitor"", ""Tablet"", ""Phone""]",2189.39,{},170673,0,Europe +2023-10-24,12341,728,"[""Keyboard""]",1303.76,{},135091,0,Europe +2023-08-31,12342,4263,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1665.97,"{""loyalty"": ""5%""}",121187,1,South America +2023-10-29,12343,2681,"[""Phone"", ""Headphones"", ""Tablet""]",2246.92,"{""loyalty"": ""11%""}",262659,0,Asia +2024-03-21,12344,8095,"[""Tablet"", ""Monitor"", ""Laptop""]",796.31,"{"""": ""12%""}",289296,0,North America +2023-07-19,12345,6852,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4554.31,{},91692,1,Asia +2024-04-07,12346,1489,"[""Laptop"", ""Headphones""]",2856.66,"{""seasonal"": ""10%""}",209459,1,Asia +2023-03-18,12347,1970,"[""Phone""]",670.57,"{""loyalty"": ""5%""}",170959,1,Europe +2023-11-13,12348,8712,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2241.6,{},192986,0,Europe +2023-08-14,12349,4864,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2086.16,"{"""": ""20%""}",169518,1,North America +2024-11-10,12350,8209,"[""Headphones"", ""Monitor"", ""Phone""]",4637.56,{},94225,1,Asia +2024-11-29,12351,1766,"[""Phone"", ""Tablet"", ""Monitor""]",305.17,{},8540,1,Asia +2024-06-10,12352,7448,"[""Headphones""]",4217.51,{},154541,0,Africa +2024-07-23,12353,769,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2227.53,{},60524,1,South America +2023-07-15,12354,3346,"[""Keyboard""]",4745.16,"{""promo"": ""29%""}",268624,0,Asia +2023-08-31,12355,5919,"[""Wireless Mouse"", ""Laptop""]",2471.64,"{""loyalty"": ""29%""}",275136,1,Europe +2024-03-07,12356,6447,"[""Phone""]",1415.83,"{"""": ""6%""}",172240,0,Asia +2024-01-21,12357,2551,"[""Monitor"", ""Tablet"", ""Headphones""]",3261.67,{},170511,0,North America +2024-11-20,12358,3885,"[""Keyboard"", ""Tablet""]",87.85,{},23917,1,South America +2023-12-27,12359,7329,"[""Phone"", ""Monitor""]",3311.18,"{"""": ""29%""}",222883,1,Africa +2024-11-26,12360,8730,"[""Phone""]",4956.43,"{""loyalty"": ""28%""}",107121,1,South America +2023-12-16,12361,4589,"[""Keyboard"", ""Tablet""]",1514.26,"{""seasonal"": ""6%""}",149543,0,Asia +2023-10-29,12362,8320,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",585.55,{},160674,0,North America +2023-11-25,12363,2636,"[""Laptop""]",366.02,{},167990,0,Europe +2023-12-30,12364,2831,"[""Keyboard""]",3991.76,"{""loyalty"": ""10%""}",128772,0,Asia +2024-06-23,12365,285,"[""Phone""]",4285.52,"{"""": ""28%""}",168314,1,Europe +2023-05-17,12366,1939,"[""Laptop"", ""Phone""]",4733.23,"{""loyalty"": ""30%""}",260848,1,Asia +2023-01-18,12367,5435,"[""Monitor""]",3152.86,{},282076,1,Europe +2024-01-19,12368,3368,"[""Phone"", ""Keyboard"", ""Headphones""]",3861.36,"{""seasonal"": ""16%""}",274574,1,Asia +2024-11-03,12369,2643,"[""Tablet"", ""Charger""]",808.83,"{""seasonal"": ""23%""}",37437,1,South America +2024-07-27,12370,5434,"[""Phone""]",3876.37,"{""promo"": ""20%""}",294632,1,North America +2024-09-14,12371,9108,"[""Phone"", ""Headphones"", ""Laptop""]",3974.87,"{""promo"": ""11%""}",130158,0,Asia +2024-10-01,12372,4520,"[""Keyboard""]",3392.48,{},160120,0,Africa +2023-05-09,12373,7069,"[""Wireless Mouse""]",410.93,{},219728,1,Asia +2024-02-29,12374,4271,"[""Monitor"", ""Keyboard""]",4744.23,{},49964,0,Europe +2024-05-23,12375,7682,"[""Monitor"", ""Tablet""]",4811.39,{},108612,1,South America +2023-10-19,12376,1324,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1636.4,"{""loyalty"": ""21%""}",131883,1,North America +2024-05-09,12377,2381,"[""Monitor"", ""Phone""]",3619.28,"{""loyalty"": ""19%""}",283201,0,North America +2023-04-27,12378,6522,"[""Tablet"", ""Charger""]",4720.85,{},246419,0,Africa +2024-07-20,12379,3090,"[""Charger""]",2474.46,"{""promo"": ""10%""}",289309,1,North America +2024-03-22,12380,593,"[""Tablet"", ""Charger""]",2214.84,{},99891,1,South America +2023-12-19,12381,8796,"[""Phone""]",2560.86,"{""seasonal"": ""5%""}",249220,0,Europe +2023-07-16,12382,2587,"[""Monitor""]",331.61,{},14875,1,South America +2024-02-23,12383,2661,"[""Laptop""]",806.11,{},253604,0,South America +2024-06-03,12384,5519,"[""Monitor"", ""Wireless Mouse""]",888.27,{},185448,0,Africa +2024-08-17,12385,8192,"[""Phone"", ""Wireless Mouse""]",2518.14,{},107467,0,Europe +2024-08-30,12386,2817,"[""Keyboard"", ""Wireless Mouse""]",1421.4,{},51687,0,Europe +2023-11-29,12387,9479,"[""Keyboard"", ""Monitor"", ""Laptop""]",869.82,"{"""": ""8%""}",28621,1,North America +2024-06-02,12388,3756,"[""Charger"", ""Headphones""]",4399.45,"{""loyalty"": ""21%""}",291870,1,Asia +2024-02-25,12389,9855,"[""Tablet"", ""Headphones""]",541.02,"{""seasonal"": ""9%""}",159976,1,North America +2023-02-01,12390,972,"[""Keyboard""]",704.64,"{""seasonal"": ""24%""}",134000,0,South America +2023-02-05,12391,1118,"[""Wireless Mouse""]",801.78,{},275619,0,South America +2024-12-12,12392,972,"[""Phone""]",1504.04,"{""seasonal"": ""8%""}",45519,0,Asia +2024-12-14,12393,4058,"[""Tablet""]",2386.72,"{""promo"": ""8%""}",271718,0,South America +2023-07-06,12394,5288,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",769.82,{},96870,1,Africa +2023-05-13,12395,7574,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4003.57,"{""loyalty"": ""24%""}",34117,0,North America +2023-06-23,12396,2301,"[""Charger""]",1062.38,"{""loyalty"": ""18%""}",167643,0,South America +2024-11-02,12397,8004,"[""Monitor""]",1741.18,"{""seasonal"": ""22%""}",297392,1,Asia +2024-05-30,12398,687,"[""Tablet""]",3787.03,"{""loyalty"": ""28%""}",218413,1,Europe +2023-05-11,12399,2402,"[""Monitor"", ""Tablet"", ""Keyboard""]",3586.46,{},118038,1,North America +2023-03-03,12400,836,"[""Tablet"", ""Keyboard"", ""Charger""]",1387.54,{},210429,1,Europe +2023-09-11,12401,2080,"[""Tablet"", ""Headphones""]",3488.33,"{""promo"": ""9%""}",298824,1,South America +2024-05-29,12402,6699,"[""Headphones"", ""Charger"", ""Monitor""]",1833.26,{},156475,1,Asia +2023-11-21,12403,6683,"[""Charger"", ""Monitor"", ""Laptop""]",4245.48,"{"""": ""23%""}",245222,1,Asia +2023-06-09,12404,1659,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1358.22,"{""seasonal"": ""10%""}",197589,0,South America +2024-03-26,12405,107,"[""Monitor"", ""Charger""]",399.6,"{""promo"": ""22%""}",23636,0,North America +2023-05-02,12406,1718,"[""Phone"", ""Keyboard"", ""Charger""]",3753.07,{},157034,0,North America +2024-09-21,12407,9250,"[""Charger"", ""Laptop""]",815.85,{},1486,0,Europe +2024-09-26,12408,7377,"[""Charger""]",4317.16,{},202298,0,Asia +2023-06-12,12409,6094,"[""Laptop"", ""Charger"", ""Headphones""]",3502.81,{},180377,1,Africa +2024-09-16,12410,6035,"[""Headphones"", ""Keyboard""]",2471.07,"{"""": ""6%""}",169513,1,Africa +2023-10-23,12411,8573,"[""Phone""]",4186.9,{},119367,0,Asia +2024-07-14,12412,8824,"[""Phone""]",4662.15,{},3745,1,Asia +2024-05-24,12413,3119,"[""Laptop"", ""Monitor"", ""Keyboard""]",3485.9,"{""loyalty"": ""24%""}",118058,0,Europe +2023-08-17,12414,2543,"[""Charger""]",319.47,{},9642,1,Africa +2024-03-09,12415,5566,"[""Keyboard""]",3190.66,{},107130,0,North America +2023-04-11,12416,1047,"[""Monitor""]",3139.63,{},81184,0,Asia +2023-08-03,12417,6995,"[""Tablet"", ""Monitor""]",208.07,"{""seasonal"": ""20%""}",124283,1,Asia +2024-12-23,12418,1711,"[""Monitor"", ""Wireless Mouse""]",3143.08,"{""promo"": ""6%""}",225791,0,North America +2023-04-27,12419,4682,"[""Keyboard""]",3588.45,"{""seasonal"": ""29%""}",250754,1,South America +2023-06-28,12420,2027,"[""Wireless Mouse""]",4004.8,{},216224,1,South America +2024-06-07,12421,8118,"[""Wireless Mouse""]",2241.68,"{""promo"": ""25%""}",190785,0,Europe +2024-09-25,12422,8329,"[""Keyboard""]",1638.23,"{"""": ""12%""}",91609,0,Africa +2023-12-13,12423,5113,"[""Headphones"", ""Laptop"", ""Phone""]",1452.2,"{"""": ""8%""}",238772,0,Asia +2024-10-29,12424,8633,"[""Keyboard"", ""Phone"", ""Charger""]",2255.34,"{""loyalty"": ""27%""}",17377,1,Africa +2023-10-22,12425,7658,"[""Wireless Mouse""]",2022.29,{},281948,1,Africa +2024-10-02,12426,3573,"[""Monitor""]",3871.57,"{""loyalty"": ""30%""}",140681,1,Africa +2023-07-12,12427,952,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",220.1,{},231779,1,Africa +2023-04-26,12428,4083,"[""Tablet"", ""Keyboard""]",4081.48,{},289512,0,Africa +2024-02-25,12429,1743,"[""Phone"", ""Laptop"", ""Tablet""]",645.28,"{""loyalty"": ""15%""}",189203,1,Asia +2023-02-02,12430,7702,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",933.55,{},143704,1,North America +2023-09-29,12431,8294,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",999.0,"{""loyalty"": ""12%""}",156591,0,South America +2023-03-17,12432,2831,"[""Charger"", ""Laptop""]",383.59,{},267915,1,North America +2023-07-11,12433,4899,"[""Charger""]",4025.27,"{""loyalty"": ""18%""}",60147,0,South America +2023-07-14,12434,3434,"[""Wireless Mouse""]",4357.1,{},283024,1,Asia +2023-12-28,12435,3652,"[""Tablet"", ""Monitor"", ""Charger""]",1571.91,{},186836,0,Africa +2023-02-17,12436,4019,"[""Keyboard"", ""Monitor"", ""Headphones""]",3163.89,"{""loyalty"": ""28%""}",30193,0,North America +2023-10-18,12437,789,"[""Phone"", ""Monitor"", ""Tablet""]",919.75,"{"""": ""24%""}",38836,1,Asia +2024-01-16,12438,3916,"[""Charger"", ""Monitor""]",2279.73,{},101682,1,Europe +2023-02-01,12439,4660,"[""Laptop""]",1937.4,{},96132,0,Asia +2023-03-08,12440,9954,"[""Charger"", ""Wireless Mouse""]",614.5,"{""seasonal"": ""18%""}",238638,0,Europe +2024-04-17,12441,4565,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4030.38,{},283353,1,Africa +2023-02-20,12442,7134,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1736.37,"{""loyalty"": ""13%""}",99441,0,Asia +2024-09-07,12443,7375,"[""Headphones"", ""Laptop""]",2686.46,{},86876,0,Asia +2024-11-12,12444,1356,"[""Charger"", ""Wireless Mouse""]",4811.3,"{""seasonal"": ""28%""}",236137,1,South America +2024-09-12,12445,5253,"[""Tablet"", ""Wireless Mouse""]",962.6,{},10058,0,Africa +2023-11-18,12446,5638,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",544.32,{},234653,0,Europe +2023-10-03,12447,9092,"[""Laptop""]",1774.67,{},8530,0,South America +2023-01-25,12448,9853,"[""Tablet"", ""Monitor""]",436.7,"{""seasonal"": ""27%""}",169000,0,South America +2023-09-28,12449,6493,"[""Monitor""]",1051.87,{},21921,1,South America +2023-02-01,12450,8452,"[""Wireless Mouse""]",766.01,{},238130,1,Asia +2023-06-18,12451,4127,"[""Tablet"", ""Keyboard"", ""Laptop""]",737.87,"{""loyalty"": ""15%""}",295730,0,North America +2024-01-11,12452,1866,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2865.21,"{""seasonal"": ""6%""}",63984,0,Asia +2024-06-30,12453,6348,"[""Keyboard"", ""Monitor""]",2712.83,{},75174,0,Europe +2024-09-14,12454,8361,"[""Wireless Mouse"", ""Headphones""]",4512.01,{},158678,1,North America +2024-01-03,12455,7673,"[""Wireless Mouse"", ""Keyboard""]",4587.84,{},67665,0,North America +2024-07-14,12456,5026,"[""Monitor""]",4827.13,{},50872,1,Africa +2023-06-05,12457,3861,"[""Laptop"", ""Tablet""]",2232.21,"{""loyalty"": ""23%""}",297810,0,South America +2023-01-21,12458,4908,"[""Phone"", ""Headphones""]",1221.98,"{""promo"": ""7%""}",125077,1,Europe +2024-09-20,12459,6373,"[""Tablet""]",1859.76,{},205839,0,North America +2024-08-01,12460,5088,"[""Charger"", ""Monitor"", ""Keyboard""]",1223.63,{},11817,0,Africa +2024-09-24,12461,6638,"[""Laptop""]",2630.65,{},97863,0,North America +2023-02-20,12462,7613,"[""Charger""]",3454.56,"{""promo"": ""26%""}",1037,0,North America +2023-10-24,12463,1684,"[""Headphones"", ""Charger"", ""Keyboard""]",1137.73,{},212467,0,Europe +2023-03-15,12464,4554,"[""Monitor"", ""Charger""]",3654.78,{},265577,1,Africa +2024-06-05,12465,3101,"[""Charger"", ""Phone""]",3377.66,{},24342,0,North America +2024-07-13,12466,6671,"[""Phone"", ""Tablet"", ""Monitor""]",3432.36,"{"""": ""8%""}",204612,1,Africa +2024-07-04,12467,4907,"[""Wireless Mouse"", ""Headphones""]",4865.42,"{""loyalty"": ""8%""}",268681,1,South America +2024-08-10,12468,3181,"[""Keyboard"", ""Charger"", ""Phone""]",4447.7,{},108402,0,Asia +2023-08-03,12469,8144,"[""Wireless Mouse"", ""Laptop""]",1652.69,{},227857,0,Asia +2023-06-16,12470,4967,"[""Charger""]",1538.79,{},84022,1,Africa +2023-07-23,12471,7330,"[""Keyboard"", ""Tablet"", ""Monitor""]",769.7,"{"""": ""19%""}",208029,0,Africa +2024-04-04,12472,5777,"[""Monitor"", ""Phone"", ""Tablet""]",4494.78,"{"""": ""12%""}",109876,0,North America +2023-02-17,12473,545,"[""Keyboard""]",3180.78,"{""loyalty"": ""27%""}",124077,0,Europe +2023-10-13,12474,5649,"[""Wireless Mouse""]",4884.34,"{""seasonal"": ""28%""}",105192,1,South America +2024-01-21,12475,6155,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1700.6,"{"""": ""14%""}",62600,0,Africa +2024-03-23,12476,2323,"[""Laptop""]",3179.98,{},69568,1,Africa +2024-08-26,12477,3188,"[""Phone"", ""Laptop""]",4734.25,"{"""": ""24%""}",129025,1,Asia +2023-07-06,12478,7651,"[""Monitor"", ""Wireless Mouse""]",2865.59,"{""promo"": ""13%""}",19869,1,Asia +2023-04-15,12479,5549,"[""Headphones""]",4870.61,{},115289,1,Asia +2023-03-12,12480,725,"[""Phone""]",1222.22,"{""seasonal"": ""14%""}",153951,1,North America +2024-03-20,12481,6401,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3525.64,{},66666,1,Asia +2023-10-14,12482,35,"[""Wireless Mouse"", ""Laptop""]",4956.28,"{""loyalty"": ""18%""}",62294,1,Africa +2023-10-31,12483,6618,"[""Headphones""]",479.65,{},101999,1,Africa +2023-07-16,12484,2146,"[""Monitor"", ""Phone""]",2994.66,"{""promo"": ""5%""}",212901,1,Europe +2024-10-21,12485,2488,"[""Headphones""]",453.12,{},38550,1,South America +2024-02-05,12486,4322,"[""Tablet"", ""Charger""]",3370.17,{},259895,1,South America +2024-01-09,12487,7147,"[""Tablet"", ""Headphones""]",937.89,{},98071,0,South America +2024-07-29,12488,4815,"[""Phone""]",4977.27,{},264796,1,South America +2024-07-15,12489,7788,"[""Laptop"", ""Tablet"", ""Headphones""]",4919.43,{},235541,0,Europe +2024-09-12,12490,6192,"[""Headphones""]",4537.64,"{""seasonal"": ""23%""}",176994,0,Africa +2024-11-06,12491,9577,"[""Monitor""]",1948.66,{},105927,1,Europe +2023-05-05,12492,539,"[""Laptop""]",4118.51,"{"""": ""26%""}",127339,1,North America +2023-07-18,12493,9867,"[""Phone"", ""Keyboard"", ""Tablet""]",3351.45,"{"""": ""5%""}",200901,1,South America +2024-12-23,12494,3376,"[""Phone""]",2708.22,{},233777,1,North America +2023-09-25,12495,4702,"[""Wireless Mouse""]",1053.06,{},92474,0,Asia +2024-12-01,12496,6996,"[""Keyboard"", ""Laptop"", ""Headphones""]",3487.62,"{""seasonal"": ""20%""}",187963,0,South America +2024-05-08,12497,9245,"[""Laptop"", ""Keyboard"", ""Headphones""]",4926.1,{},151522,1,South America +2023-05-13,12498,8590,"[""Phone"", ""Monitor"", ""Tablet""]",2919.79,"{"""": ""10%""}",285066,0,Africa +2023-09-07,12499,2691,"[""Keyboard""]",2756.45,{},50268,1,South America +2024-09-30,12500,8711,"[""Laptop""]",4207.59,"{""promo"": ""10%""}",259920,0,Asia +2024-05-24,12501,6619,"[""Monitor"", ""Laptop""]",216.38,{},6953,0,Europe +2024-11-22,12502,6626,"[""Phone"", ""Wireless Mouse"", ""Charger""]",105.79,"{""seasonal"": ""18%""}",295219,1,Africa +2023-02-16,12503,1150,"[""Keyboard"", ""Laptop""]",51.63,{},28492,0,South America +2023-12-13,12504,3498,"[""Keyboard""]",844.04,{},248994,1,Asia +2023-03-21,12505,6659,"[""Laptop""]",201.24,{},228052,0,South America +2024-10-09,12506,217,"[""Keyboard""]",2464.76,{},22717,1,North America +2023-09-04,12507,5043,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4842.0,{},299009,1,Asia +2024-11-17,12508,8886,"[""Wireless Mouse"", ""Laptop""]",4680.13,{},155050,0,Europe +2024-08-29,12509,7352,"[""Wireless Mouse""]",1194.61,{},275764,1,Africa +2023-09-16,12510,7556,"[""Phone"", ""Keyboard"", ""Monitor""]",345.14,{},164323,1,South America +2023-04-14,12511,2781,"[""Laptop""]",2879.36,{},299025,0,Asia +2024-10-04,12512,2949,"[""Keyboard"", ""Monitor"", ""Headphones""]",1173.48,"{"""": ""14%""}",286801,1,North America +2024-02-26,12513,6403,"[""Phone"", ""Keyboard""]",1242.83,"{""promo"": ""27%""}",167725,0,Africa +2023-02-13,12514,5866,"[""Headphones"", ""Tablet"", ""Keyboard""]",2163.51,{},48987,0,Africa +2023-05-11,12515,367,"[""Laptop""]",4878.73,"{""seasonal"": ""24%""}",271905,0,Europe +2024-12-18,12516,8664,"[""Charger""]",2525.52,"{""seasonal"": ""29%""}",70920,0,Africa +2023-10-08,12517,2427,"[""Monitor""]",118.14,"{""promo"": ""17%""}",291289,0,North America +2023-08-02,12518,8756,"[""Charger"", ""Phone"", ""Headphones""]",2400.83,"{""promo"": ""28%""}",118330,0,Asia +2024-01-06,12519,9059,"[""Keyboard""]",2243.8,"{""loyalty"": ""22%""}",220683,1,South America +2023-04-04,12520,989,"[""Tablet"", ""Wireless Mouse""]",688.46,{},126994,1,South America +2023-11-16,12521,8702,"[""Tablet""]",1484.68,"{"""": ""15%""}",148538,1,Asia +2023-05-01,12522,1445,"[""Tablet"", ""Phone"", ""Headphones""]",332.84,"{""promo"": ""8%""}",218132,0,Europe +2023-12-23,12523,5830,"[""Monitor"", ""Phone""]",1946.52,"{""seasonal"": ""29%""}",28890,1,Europe +2023-07-30,12524,9678,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3676.88,"{""loyalty"": ""10%""}",142700,1,North America +2024-03-13,12525,9474,"[""Charger""]",3481.82,"{""promo"": ""30%""}",2956,1,Asia +2024-05-29,12526,9380,"[""Laptop"", ""Tablet""]",1320.33,{},6487,0,Africa +2023-05-09,12527,4683,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3837.44,"{""seasonal"": ""21%""}",178293,1,South America +2023-03-17,12528,1215,"[""Phone""]",4959.23,"{""loyalty"": ""25%""}",129580,0,North America +2023-07-17,12529,6051,"[""Phone"", ""Charger""]",3415.75,"{"""": ""29%""}",195531,1,Asia +2024-12-22,12530,8248,"[""Keyboard""]",2094.27,"{""seasonal"": ""7%""}",148883,1,Asia +2023-10-26,12531,2060,"[""Headphones""]",4654.27,"{"""": ""6%""}",262984,1,North America +2023-12-25,12532,5247,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2029.67,{},76175,0,Europe +2023-08-11,12533,6473,"[""Monitor""]",447.61,"{""loyalty"": ""15%""}",244621,0,North America +2024-05-26,12534,878,"[""Monitor"", ""Phone"", ""Laptop""]",1283.63,{},47400,1,Asia +2024-01-15,12535,8249,"[""Headphones""]",3818.36,{},29994,0,Africa +2023-08-26,12536,9028,"[""Monitor"", ""Keyboard""]",2716.59,{},281171,1,Africa +2023-08-27,12537,4501,"[""Tablet""]",4894.28,"{"""": ""26%""}",35047,1,Africa +2024-12-08,12538,5643,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2728.13,{},97102,1,South America +2023-06-09,12539,2861,"[""Charger"", ""Wireless Mouse""]",1763.22,"{""seasonal"": ""27%""}",293745,0,Asia +2024-07-26,12540,2013,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3677.15,{},256761,1,South America +2024-02-19,12541,1510,"[""Monitor"", ""Charger""]",1389.3,"{""promo"": ""22%""}",195216,0,Europe +2024-12-15,12542,1516,"[""Charger"", ""Headphones"", ""Keyboard""]",2485.88,{},287389,0,Europe +2023-09-18,12543,9447,"[""Headphones""]",2458.75,{},200636,1,Europe +2023-09-23,12544,2112,"[""Tablet"", ""Laptop""]",1499.12,"{"""": ""30%""}",48147,1,North America +2024-06-20,12545,8051,"[""Laptop"", ""Charger"", ""Headphones""]",1523.87,"{""seasonal"": ""14%""}",231291,1,Asia +2023-01-10,12546,9159,"[""Headphones"", ""Phone""]",567.91,{},21272,1,South America +2024-09-11,12547,8505,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1551.0,{},28180,1,Europe +2023-05-07,12548,6183,"[""Tablet"", ""Charger"", ""Keyboard""]",445.42,"{""seasonal"": ""5%""}",279047,1,Africa +2024-02-28,12549,2552,"[""Keyboard""]",2221.79,{},223373,1,Africa +2024-06-21,12550,5564,"[""Tablet""]",294.76,{},144662,1,Africa +2023-08-03,12551,8961,"[""Charger""]",4909.36,{},264152,1,South America +2024-09-08,12552,8237,"[""Charger"", ""Headphones""]",2291.02,"{""seasonal"": ""30%""}",36060,0,Africa +2023-10-06,12553,4177,"[""Laptop"", ""Monitor""]",1678.98,{},184964,0,Asia +2024-06-17,12554,1685,"[""Tablet"", ""Monitor""]",2804.68,{},209972,1,Africa +2023-03-25,12555,8353,"[""Phone"", ""Monitor""]",547.01,{},199354,0,Europe +2024-12-13,12556,6165,"[""Monitor"", ""Wireless Mouse""]",4593.31,{},200056,1,Asia +2024-02-09,12557,6576,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4494.24,"{""promo"": ""12%""}",40190,1,North America +2023-01-16,12558,8116,"[""Headphones"", ""Laptop"", ""Phone""]",2765.67,"{""promo"": ""9%""}",140454,0,North America +2024-06-04,12559,8336,"[""Phone"", ""Monitor"", ""Charger""]",192.69,{},207457,1,Europe +2024-06-21,12560,6542,"[""Tablet""]",3215.13,{},139575,1,Africa +2023-03-19,12561,2808,"[""Wireless Mouse"", ""Headphones""]",3678.82,"{""loyalty"": ""20%""}",278815,1,North America +2023-06-29,12562,8085,"[""Charger"", ""Phone""]",813.08,"{""seasonal"": ""29%""}",141237,0,Europe +2023-05-31,12563,4079,"[""Keyboard""]",2972.72,{},47428,1,Europe +2024-04-09,12564,780,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1270.56,{},224990,1,Asia +2024-06-21,12565,937,"[""Wireless Mouse""]",3404.73,"{"""": ""11%""}",84716,0,South America +2023-09-17,12566,6107,"[""Keyboard"", ""Headphones""]",1281.47,{},146899,0,South America +2024-06-02,12567,2563,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3525.83,{},278519,1,Africa +2024-09-23,12568,7151,"[""Headphones""]",3133.27,"{""seasonal"": ""13%""}",50826,0,Europe +2023-11-15,12569,5264,"[""Laptop"", ""Charger""]",97.1,"{""loyalty"": ""28%""}",61279,0,Europe +2023-04-18,12570,9314,"[""Wireless Mouse"", ""Laptop""]",3449.14,{},23121,0,Asia +2024-07-21,12571,8660,"[""Keyboard"", ""Wireless Mouse""]",975.48,{},74379,0,Europe +2024-05-24,12572,8752,"[""Phone"", ""Tablet""]",1075.29,{},212891,0,North America +2023-09-01,12573,4682,"[""Charger"", ""Keyboard""]",809.45,{},244006,1,South America +2023-06-18,12574,6260,"[""Wireless Mouse"", ""Laptop""]",2239.07,"{""seasonal"": ""12%""}",233832,1,Africa +2024-11-26,12575,8898,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1154.8,"{"""": ""14%""}",138107,0,South America +2023-11-23,12576,6513,"[""Wireless Mouse""]",764.77,{},131926,0,South America +2023-11-11,12577,7968,"[""Charger""]",3009.92,{},273630,0,Europe +2024-04-13,12578,7625,"[""Charger"", ""Tablet""]",2589.57,"{"""": ""16%""}",154864,1,Asia +2024-07-01,12579,2497,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1442.68,"{"""": ""7%""}",84213,0,Africa +2023-03-16,12580,7908,"[""Headphones"", ""Tablet"", ""Charger""]",3486.36,{},167077,1,South America +2024-08-31,12581,9183,"[""Tablet"", ""Monitor"", ""Laptop""]",4094.73,{},38722,0,South America +2024-09-28,12582,3053,"[""Headphones"", ""Keyboard"", ""Phone""]",3482.82,"{""promo"": ""20%""}",241792,0,Europe +2024-07-13,12583,4991,"[""Tablet""]",290.8,{},82704,1,South America +2023-11-03,12584,4018,"[""Keyboard"", ""Laptop""]",3087.19,{},170298,1,Asia +2024-05-01,12585,9697,"[""Charger"", ""Keyboard"", ""Laptop""]",963.1,{},220884,0,North America +2024-05-23,12586,5779,"[""Laptop"", ""Keyboard""]",3501.73,{},142551,1,Europe +2023-10-29,12587,127,"[""Laptop""]",310.97,"{""seasonal"": ""11%""}",24150,1,South America +2023-06-12,12588,6098,"[""Laptop"", ""Tablet"", ""Monitor""]",2864.99,{},214616,0,Europe +2024-11-29,12589,1347,"[""Wireless Mouse""]",1735.82,{},231967,0,Africa +2023-08-19,12590,1247,"[""Monitor"", ""Charger""]",3101.85,"{"""": ""19%""}",82480,0,Asia +2023-09-29,12591,2570,"[""Laptop"", ""Phone"", ""Headphones""]",4124.62,{},159929,1,Europe +2024-02-23,12592,2597,"[""Monitor"", ""Phone"", ""Tablet""]",4388.29,"{""seasonal"": ""20%""}",17189,0,Europe +2024-03-11,12593,2833,"[""Keyboard"", ""Monitor"", ""Headphones""]",3540.77,"{"""": ""16%""}",153604,0,South America +2024-07-31,12594,1840,"[""Charger""]",490.62,"{""promo"": ""30%""}",33827,1,North America +2023-01-13,12595,117,"[""Wireless Mouse""]",3774.52,{},126765,1,Asia +2023-01-29,12596,8734,"[""Tablet""]",3322.79,"{""seasonal"": ""18%""}",136990,0,South America +2024-05-20,12597,35,"[""Monitor""]",1244.04,"{""seasonal"": ""15%""}",22128,0,Asia +2024-08-09,12598,1084,"[""Tablet"", ""Monitor"", ""Headphones""]",4740.27,"{"""": ""14%""}",8808,0,Europe +2023-01-25,12599,2003,"[""Phone"", ""Monitor""]",271.44,{},137723,0,Europe +2024-03-24,12600,27,"[""Phone""]",1174.18,"{""promo"": ""23%""}",159513,1,Asia +2023-06-08,12601,9839,"[""Wireless Mouse""]",2204.65,"{""loyalty"": ""14%""}",267716,0,South America +2023-05-01,12602,4060,"[""Wireless Mouse""]",60.93,{},151008,0,Europe +2023-01-21,12603,9012,"[""Laptop""]",2513.43,{},89093,1,North America +2024-04-22,12604,4923,"[""Phone""]",3377.11,"{""promo"": ""5%""}",43360,0,Africa +2023-11-11,12605,3983,"[""Wireless Mouse"", ""Charger""]",2986.93,{},111584,0,Europe +2024-11-14,12606,7306,"[""Charger"", ""Tablet"", ""Monitor""]",607.57,{},126313,0,Europe +2024-03-10,12607,9070,"[""Charger"", ""Keyboard"", ""Phone""]",4784.4,{},39774,0,Europe +2024-05-10,12608,6221,"[""Headphones"", ""Tablet""]",4532.1,{},230692,0,Africa +2024-08-17,12609,8369,"[""Monitor""]",1660.66,{},178653,0,South America +2024-05-27,12610,7275,"[""Laptop""]",1095.42,{},242836,1,Europe +2024-06-29,12611,507,"[""Wireless Mouse"", ""Tablet""]",736.94,{},45965,1,South America +2024-07-07,12612,1554,"[""Phone"", ""Charger""]",2520.54,{},255785,0,South America +2023-05-07,12613,1341,"[""Phone""]",3466.29,{},76177,1,Europe +2023-06-24,12614,2714,"[""Phone"", ""Laptop""]",1462.38,{},283693,1,Europe +2023-05-27,12615,4131,"[""Headphones"", ""Tablet""]",2044.92,{},9655,0,South America +2023-11-08,12616,2758,"[""Laptop"", ""Keyboard"", ""Phone""]",3904.84,"{""seasonal"": ""16%""}",186324,1,Europe +2023-08-25,12617,3886,"[""Wireless Mouse""]",4109.27,"{""seasonal"": ""7%""}",290562,0,South America +2024-05-18,12618,4253,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",685.76,{},18809,0,Africa +2023-01-11,12619,747,"[""Headphones"", ""Phone""]",1949.31,{},227253,0,Asia +2023-09-14,12620,9215,"[""Headphones"", ""Charger""]",2507.24,"{""promo"": ""14%""}",44029,1,North America +2023-04-12,12621,438,"[""Wireless Mouse"", ""Phone""]",3239.28,"{""promo"": ""27%""}",268890,1,Africa +2023-05-20,12622,35,"[""Charger""]",1702.66,{},139554,1,Asia +2024-01-05,12623,1997,"[""Laptop""]",3446.07,"{""seasonal"": ""29%""}",44229,0,Europe +2023-10-04,12624,1775,"[""Phone"", ""Wireless Mouse""]",3312.48,{},37704,0,South America +2023-06-22,12625,6186,"[""Laptop"", ""Charger""]",2894.71,"{"""": ""25%""}",26255,0,Europe +2023-03-15,12626,2511,"[""Laptop"", ""Headphones""]",198.76,"{""promo"": ""27%""}",158761,0,South America +2023-10-06,12627,8640,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1331.9,{},118475,1,Africa +2023-02-11,12628,460,"[""Laptop"", ""Wireless Mouse""]",1374.29,"{""loyalty"": ""11%""}",195084,1,South America +2023-03-11,12629,9377,"[""Monitor"", ""Wireless Mouse""]",4003.77,"{"""": ""26%""}",142897,1,South America +2024-10-02,12630,200,"[""Tablet""]",471.3,{},138521,1,Africa +2024-03-22,12631,2450,"[""Headphones"", ""Charger"", ""Laptop""]",993.34,{},1280,0,South America +2023-08-06,12632,4424,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4527.55,{},256378,0,Africa +2023-01-12,12633,1842,"[""Laptop"", ""Charger""]",2370.83,"{""loyalty"": ""18%""}",114492,1,South America +2024-05-19,12634,5908,"[""Keyboard"", ""Laptop""]",2666.25,"{""seasonal"": ""22%""}",127893,1,South America +2024-10-24,12635,4347,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2214.5,{},278492,1,Asia +2024-04-03,12636,2457,"[""Wireless Mouse"", ""Laptop""]",1965.06,{},66661,1,Asia +2023-05-20,12637,3117,"[""Phone"", ""Charger"", ""Tablet""]",3186.94,{},96221,1,South America +2024-09-07,12638,2229,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2292.0,"{""loyalty"": ""30%""}",117623,1,Asia +2024-04-04,12639,6347,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2557.76,{},186500,0,South America +2024-10-31,12640,6886,"[""Headphones""]",3487.23,{},17915,0,South America +2023-02-08,12641,2446,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4415.24,{},131083,0,Europe +2024-02-22,12642,1121,"[""Headphones"", ""Monitor""]",3648.99,"{""promo"": ""23%""}",123621,1,South America +2024-10-19,12643,8856,"[""Tablet"", ""Wireless Mouse""]",4118.88,{},67309,0,North America +2024-01-28,12644,691,"[""Tablet"", ""Headphones""]",3041.79,"{""seasonal"": ""9%""}",289747,1,Europe +2024-11-29,12645,3611,"[""Wireless Mouse""]",216.74,{},77923,0,South America +2024-11-02,12646,5478,"[""Tablet""]",245.14,{},133884,1,Africa +2023-04-18,12647,2874,"[""Charger""]",2194.37,{},109264,0,North America +2023-11-21,12648,6409,"[""Keyboard"", ""Laptop"", ""Headphones""]",3631.51,{},147907,1,Asia +2024-09-18,12649,359,"[""Charger"", ""Phone"", ""Headphones""]",3738.37,{},15797,1,Africa +2024-03-30,12650,2284,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",806.92,{},15685,0,Africa +2023-12-13,12651,575,"[""Charger"", ""Keyboard"", ""Phone""]",300.59,{},60918,1,North America +2024-02-15,12652,6154,"[""Keyboard""]",2612.15,{},61468,1,North America +2023-06-03,12653,3030,"[""Laptop"", ""Monitor""]",2192.89,{},116982,0,Asia +2024-08-20,12654,666,"[""Headphones"", ""Monitor""]",2919.05,{},20410,0,South America +2023-05-26,12655,3718,"[""Keyboard"", ""Laptop""]",3372.77,"{""promo"": ""25%""}",209003,0,North America +2023-10-21,12656,6124,"[""Keyboard"", ""Charger""]",1199.27,{},108561,0,South America +2023-03-02,12657,5778,"[""Tablet"", ""Headphones"", ""Charger""]",4027.11,"{""seasonal"": ""14%""}",233953,1,South America +2023-05-11,12658,3026,"[""Laptop"", ""Wireless Mouse""]",335.01,"{""promo"": ""18%""}",21647,1,Europe +2024-07-21,12659,4655,"[""Phone"", ""Wireless Mouse""]",2557.48,"{""loyalty"": ""5%""}",118803,1,North America +2023-09-09,12660,156,"[""Monitor""]",3088.0,{},188829,0,Europe +2024-03-02,12661,6449,"[""Monitor""]",1664.72,"{""loyalty"": ""12%""}",150804,0,Asia +2023-09-04,12662,2289,"[""Phone"", ""Charger"", ""Monitor""]",3810.11,"{"""": ""27%""}",41500,0,North America +2024-05-12,12663,2927,"[""Wireless Mouse""]",105.31,{},228355,1,Asia +2024-08-10,12664,9090,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",572.21,"{""promo"": ""10%""}",202607,1,Europe +2024-02-10,12665,7500,"[""Keyboard"", ""Headphones""]",931.77,"{""seasonal"": ""13%""}",287910,0,Asia +2024-06-25,12666,7182,"[""Wireless Mouse""]",4076.25,{},9492,0,Africa +2023-05-17,12667,3154,"[""Headphones"", ""Wireless Mouse""]",508.12,{},170856,1,North America +2024-05-14,12668,9728,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1820.15,{},140746,0,Asia +2023-08-03,12669,2884,"[""Phone"", ""Wireless Mouse""]",3453.23,"{"""": ""21%""}",189949,0,South America +2023-09-23,12670,2794,"[""Wireless Mouse""]",4506.62,{},171453,0,Europe +2024-04-18,12671,5971,"[""Monitor"", ""Laptop""]",3448.71,"{"""": ""24%""}",107508,1,Europe +2023-02-02,12672,8406,"[""Laptop"", ""Tablet""]",1057.7,{},216520,0,Asia +2024-10-13,12673,1113,"[""Keyboard"", ""Headphones""]",2002.48,{},291473,0,Europe +2023-07-26,12674,3533,"[""Laptop"", ""Tablet""]",2397.74,"{"""": ""17%""}",190220,0,Asia +2024-11-02,12675,1650,"[""Charger"", ""Tablet""]",227.12,"{"""": ""23%""}",80874,1,Asia +2024-07-21,12676,7163,"[""Tablet""]",825.92,{},264167,1,Asia +2024-01-03,12677,5793,"[""Phone""]",1270.07,"{""loyalty"": ""25%""}",223160,0,North America +2023-11-06,12678,675,"[""Charger""]",2683.77,"{""loyalty"": ""16%""}",238065,0,Asia +2023-04-14,12679,8712,"[""Tablet"", ""Keyboard""]",320.35,{},189514,0,South America +2024-02-01,12680,6998,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",55.05,"{""promo"": ""21%""}",225993,0,North America +2023-02-13,12681,4762,"[""Tablet"", ""Keyboard""]",1715.09,{},192817,1,North America +2023-01-06,12682,5044,"[""Tablet""]",615.29,{},185433,0,North America +2023-05-28,12683,6997,"[""Monitor"", ""Phone"", ""Charger""]",1584.83,{},203872,1,Europe +2024-02-11,12684,5331,"[""Headphones"", ""Tablet"", ""Monitor""]",618.98,"{""loyalty"": ""13%""}",71568,1,Africa +2023-08-18,12685,2010,"[""Tablet""]",359.49,"{""seasonal"": ""10%""}",11009,0,Africa +2024-03-05,12686,5531,"[""Charger"", ""Monitor"", ""Headphones""]",4114.41,{},293680,0,Africa +2024-11-28,12687,5557,"[""Phone"", ""Laptop""]",53.99,"{"""": ""16%""}",116934,0,South America +2024-10-24,12688,5188,"[""Headphones"", ""Charger""]",3074.34,"{""promo"": ""22%""}",192166,1,South America +2023-03-22,12689,9892,"[""Keyboard"", ""Monitor""]",165.01,"{"""": ""21%""}",298302,0,Asia +2024-01-05,12690,2306,"[""Charger"", ""Phone"", ""Keyboard""]",366.64,"{"""": ""8%""}",165499,1,South America +2023-07-09,12691,5485,"[""Phone"", ""Laptop"", ""Tablet""]",2236.81,"{""promo"": ""18%""}",221522,1,Asia +2023-12-20,12692,7914,"[""Phone""]",203.03,{},48529,1,South America +2023-02-08,12693,2577,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3222.92,{},83770,1,Europe +2023-07-08,12694,6763,"[""Tablet"", ""Monitor""]",4954.86,"{""loyalty"": ""23%""}",175372,1,Africa +2023-08-07,12695,5452,"[""Headphones""]",4055.9,{},187047,1,Asia +2024-08-24,12696,4874,"[""Charger"", ""Headphones"", ""Laptop""]",1646.12,{},30926,0,Europe +2024-04-14,12697,8918,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4080.39,"{"""": ""23%""}",230352,1,South America +2024-07-15,12698,9587,"[""Monitor"", ""Tablet""]",404.83,{},286648,1,Africa +2024-06-22,12699,3062,"[""Headphones"", ""Keyboard"", ""Monitor""]",480.68,{},181553,0,Europe +2024-02-03,12700,2320,"[""Tablet"", ""Headphones"", ""Monitor""]",3194.8,{},182094,1,North America +2024-06-29,12701,2034,"[""Headphones"", ""Monitor"", ""Charger""]",4862.75,"{"""": ""25%""}",181000,1,North America +2023-02-11,12702,3965,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",92.63,"{""promo"": ""7%""}",268039,1,Africa +2024-10-17,12703,8718,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4720.58,{},246817,0,Africa +2024-05-05,12704,1453,"[""Wireless Mouse""]",2833.26,"{"""": ""18%""}",230571,1,North America +2024-04-22,12705,8629,"[""Monitor"", ""Tablet"", ""Headphones""]",1755.89,"{""seasonal"": ""29%""}",66785,1,South America +2023-10-03,12706,4471,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",272.67,"{""promo"": ""27%""}",272043,1,South America +2023-11-10,12707,2526,"[""Headphones""]",4530.22,{},77247,1,Europe +2023-10-30,12708,4524,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4100.15,"{""seasonal"": ""18%""}",82924,0,Africa +2023-02-06,12709,9833,"[""Keyboard""]",1973.87,{},136800,1,South America +2024-05-05,12710,2436,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4351.15,{},245322,1,Africa +2024-02-02,12711,8437,"[""Phone"", ""Wireless Mouse""]",4968.61,"{""seasonal"": ""27%""}",154970,1,Africa +2023-10-17,12712,712,"[""Phone"", ""Keyboard""]",2797.68,"{""promo"": ""12%""}",187795,1,North America +2023-03-24,12713,979,"[""Phone""]",1295.87,"{""loyalty"": ""13%""}",280441,0,North America +2024-05-12,12714,1572,"[""Monitor"", ""Phone""]",3233.84,{},174598,1,North America +2023-03-13,12715,5628,"[""Keyboard""]",3620.06,"{"""": ""13%""}",244226,0,Africa +2023-08-07,12716,7383,"[""Laptop"", ""Wireless Mouse""]",1944.04,"{"""": ""14%""}",50998,1,Africa +2023-10-30,12717,2412,"[""Phone"", ""Keyboard"", ""Monitor""]",4103.43,"{""seasonal"": ""15%""}",107203,1,Asia +2023-06-22,12718,760,"[""Tablet"", ""Laptop"", ""Keyboard""]",3053.33,{},216996,1,Europe +2023-11-06,12719,3775,"[""Wireless Mouse"", ""Laptop""]",2954.74,"{"""": ""25%""}",214351,0,Europe +2023-03-06,12720,1555,"[""Keyboard""]",224.06,"{"""": ""10%""}",143398,0,Africa +2024-05-14,12721,6552,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4763.11,{},7805,1,Africa +2024-08-04,12722,314,"[""Headphones"", ""Phone""]",2096.78,{},138747,1,Asia +2024-02-09,12723,6376,"[""Charger"", ""Phone"", ""Headphones""]",3394.38,"{""loyalty"": ""16%""}",38527,0,North America +2024-02-04,12724,7936,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4942.68,{},48502,0,Africa +2023-03-05,12725,5182,"[""Monitor"", ""Phone"", ""Headphones""]",315.8,{},142470,0,North America +2023-06-19,12726,9861,"[""Charger""]",3940.52,"{"""": ""24%""}",209165,1,South America +2023-12-03,12727,3253,"[""Keyboard"", ""Headphones"", ""Monitor""]",4500.67,"{""loyalty"": ""29%""}",143622,1,Asia +2024-11-21,12728,9268,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",246.64,{},261351,1,Europe +2023-02-06,12729,1706,"[""Headphones""]",3322.45,"{""promo"": ""23%""}",210475,1,Africa +2023-07-02,12730,4697,"[""Keyboard""]",107.18,{},206297,1,Europe +2024-09-06,12731,4553,"[""Charger"", ""Keyboard"", ""Monitor""]",2499.01,{},252417,0,Europe +2023-10-24,12732,4014,"[""Charger"", ""Phone"", ""Keyboard""]",3698.5,"{""loyalty"": ""9%""}",148600,0,Asia +2024-08-31,12733,1599,"[""Laptop""]",4944.92,"{""loyalty"": ""8%""}",233962,1,Asia +2024-10-13,12734,7993,"[""Charger"", ""Monitor"", ""Phone""]",2719.18,{},257202,0,South America +2024-08-20,12735,1904,"[""Charger""]",1016.17,{},62695,1,Africa +2024-09-27,12736,6672,"[""Charger""]",4617.56,{},90320,0,North America +2023-10-09,12737,9843,"[""Monitor"", ""Tablet""]",238.39,"{""loyalty"": ""24%""}",266529,1,Africa +2024-01-06,12738,4668,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4861.36,{},19216,0,North America +2023-08-16,12739,8520,"[""Monitor""]",175.9,{},242142,0,Africa +2023-08-31,12740,7856,"[""Monitor""]",1464.38,"{"""": ""17%""}",75086,0,South America +2024-06-20,12741,9681,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4132.85,"{""seasonal"": ""12%""}",217167,1,South America +2023-02-27,12742,205,"[""Tablet""]",1910.61,{},47103,1,Europe +2023-02-16,12743,2529,"[""Charger"", ""Tablet"", ""Phone""]",4325.63,{},144087,1,South America +2024-06-10,12744,312,"[""Keyboard"", ""Laptop""]",3035.83,"{""promo"": ""14%""}",221271,0,South America +2024-01-09,12745,9209,"[""Monitor""]",769.43,{},128945,0,North America +2024-09-14,12746,7365,"[""Headphones"", ""Monitor""]",718.52,"{""promo"": ""9%""}",22986,1,North America +2024-04-27,12747,3764,"[""Headphones""]",3343.97,"{"""": ""10%""}",17886,0,Africa +2024-05-29,12748,1823,"[""Headphones"", ""Charger""]",2389.8,"{""seasonal"": ""17%""}",172228,1,Africa +2023-04-25,12749,6242,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3009.37,{},240721,1,South America +2024-11-11,12750,8262,"[""Keyboard""]",3313.98,"{""promo"": ""11%""}",202131,0,Africa +2024-11-25,12751,6289,"[""Wireless Mouse"", ""Headphones""]",1877.71,"{"""": ""24%""}",63986,0,North America +2024-12-24,12752,7388,"[""Laptop"", ""Phone""]",3174.26,"{""seasonal"": ""30%""}",9052,0,North America +2024-12-16,12753,7111,"[""Keyboard"", ""Charger""]",2944.83,{},194174,0,Asia +2024-01-15,12754,8359,"[""Charger"", ""Headphones"", ""Tablet""]",3826.06,{},53544,0,South America +2023-11-20,12755,6964,"[""Tablet"", ""Phone""]",3679.06,{},124163,0,Africa +2023-06-21,12756,3388,"[""Charger""]",4661.58,{},95205,1,South America +2023-05-04,12757,3878,"[""Phone""]",862.06,{},46390,1,Asia +2024-07-29,12758,3460,"[""Headphones"", ""Phone""]",2285.46,{},190456,1,Africa +2023-06-11,12759,7051,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4709.84,"{"""": ""26%""}",143310,0,South America +2023-08-19,12760,9766,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3680.74,"{""seasonal"": ""18%""}",289468,0,North America +2024-11-27,12761,724,"[""Phone""]",808.73,"{"""": ""8%""}",189655,1,South America +2024-08-24,12762,9092,"[""Tablet""]",4276.88,{},187734,1,Europe +2023-06-29,12763,5680,"[""Tablet"", ""Laptop""]",4284.73,"{""loyalty"": ""15%""}",276768,0,Europe +2024-04-27,12764,14,"[""Laptop""]",2603.45,"{""promo"": ""19%""}",18003,1,South America +2023-08-16,12765,3496,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1514.77,"{"""": ""9%""}",57516,1,Europe +2023-03-12,12766,9859,"[""Keyboard""]",2147.24,"{""promo"": ""28%""}",207111,1,Africa +2024-03-21,12767,4976,"[""Charger"", ""Keyboard""]",2198.5,"{"""": ""11%""}",223990,0,North America +2023-08-08,12768,7018,"[""Keyboard"", ""Monitor""]",3077.91,"{"""": ""5%""}",4364,0,South America +2024-09-27,12769,1323,"[""Keyboard"", ""Charger""]",2408.6,"{""loyalty"": ""10%""}",83280,0,Africa +2023-01-30,12770,5324,"[""Tablet""]",4282.0,{},6778,0,North America +2024-05-25,12771,9684,"[""Tablet"", ""Phone""]",4105.52,{},187123,0,North America +2024-08-09,12772,2594,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2001.99,"{""loyalty"": ""13%""}",221596,0,Africa +2023-06-01,12773,5902,"[""Headphones"", ""Keyboard""]",3465.33,"{""loyalty"": ""30%""}",113104,0,South America +2023-01-22,12774,6530,"[""Laptop"", ""Monitor"", ""Tablet""]",4812.03,"{""promo"": ""10%""}",73466,1,South America +2024-06-12,12775,9764,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1698.73,"{""promo"": ""14%""}",255491,0,Asia +2023-06-24,12776,4196,"[""Wireless Mouse""]",2395.0,{},11459,1,North America +2023-10-26,12777,6729,"[""Wireless Mouse""]",4174.28,{},76686,0,Europe +2023-07-17,12778,222,"[""Tablet""]",4381.38,"{""loyalty"": ""17%""}",178978,0,Europe +2023-05-19,12779,7024,"[""Keyboard"", ""Tablet""]",1349.27,{},54279,1,South America +2024-08-17,12780,2750,"[""Headphones""]",4370.09,"{""promo"": ""7%""}",204583,1,North America +2024-03-10,12781,1854,"[""Wireless Mouse""]",2043.21,{},281782,0,Africa +2023-07-17,12782,5315,"[""Tablet"", ""Monitor""]",1395.32,"{"""": ""16%""}",224622,1,South America +2023-03-07,12783,5906,"[""Monitor""]",2924.77,{},89217,0,Africa +2023-05-25,12784,2254,"[""Headphones""]",2257.66,"{"""": ""10%""}",193215,1,Europe +2023-10-22,12785,4294,"[""Tablet""]",3376.01,"{""seasonal"": ""5%""}",40870,1,South America +2024-07-11,12786,7619,"[""Laptop"", ""Keyboard"", ""Monitor""]",2617.45,"{"""": ""10%""}",73733,0,Europe +2023-02-07,12787,3619,"[""Tablet""]",359.84,{},131425,0,North America +2024-04-23,12788,7743,"[""Wireless Mouse"", ""Laptop""]",851.81,{},254766,1,Africa +2024-05-21,12789,8342,"[""Charger"", ""Keyboard"", ""Headphones""]",2892.6,{},89021,1,Africa +2024-06-22,12790,8081,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3065.37,{},32581,1,Africa +2024-09-17,12791,1854,"[""Wireless Mouse"", ""Tablet""]",2977.1,{},243440,0,South America +2024-11-16,12792,5007,"[""Headphones"", ""Charger""]",2241.82,{},202380,0,Europe +2024-03-23,12793,6265,"[""Wireless Mouse"", ""Charger""]",3524.05,"{""promo"": ""8%""}",52126,0,Asia +2024-11-06,12794,2090,"[""Headphones"", ""Phone"", ""Charger""]",670.7,"{""loyalty"": ""23%""}",42988,1,Asia +2023-03-23,12795,8054,"[""Headphones"", ""Monitor"", ""Keyboard""]",4700.91,"{""loyalty"": ""19%""}",66929,1,South America +2024-04-13,12796,3518,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3376.27,{},253759,1,South America +2023-10-24,12797,9468,"[""Monitor"", ""Keyboard""]",3904.0,"{""loyalty"": ""14%""}",267799,0,South America +2023-05-02,12798,2515,"[""Laptop""]",1888.19,{},97127,1,Europe +2024-10-31,12799,7484,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1535.23,"{""seasonal"": ""23%""}",241425,0,North America +2024-10-13,12800,8353,"[""Charger"", ""Keyboard""]",4417.26,{},102201,0,Africa +2023-01-26,12801,3533,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3931.94,"{""seasonal"": ""20%""}",171332,1,North America +2023-06-04,12802,3101,"[""Headphones""]",4608.03,"{""promo"": ""22%""}",231648,1,Asia +2024-06-26,12803,5872,"[""Charger"", ""Monitor""]",4013.5,{},252835,1,South America +2024-12-13,12804,7688,"[""Tablet"", ""Monitor""]",100.37,"{"""": ""24%""}",83097,0,South America +2023-12-17,12805,8446,"[""Monitor""]",2444.48,"{"""": ""26%""}",274145,0,South America +2024-07-08,12806,8038,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1315.2,"{"""": ""19%""}",12512,1,South America +2024-06-09,12807,4347,"[""Charger""]",1602.85,"{""loyalty"": ""7%""}",70832,1,South America +2023-08-28,12808,6985,"[""Charger"", ""Laptop"", ""Tablet""]",223.79,"{"""": ""18%""}",26615,1,South America +2024-03-05,12809,8194,"[""Charger""]",2299.02,"{""seasonal"": ""26%""}",145650,1,Asia +2023-12-18,12810,273,"[""Keyboard"", ""Laptop"", ""Monitor""]",2748.03,"{""promo"": ""19%""}",39972,0,North America +2024-02-03,12811,7224,"[""Headphones"", ""Monitor""]",2678.55,"{""loyalty"": ""25%""}",153397,1,Europe +2024-09-08,12812,6590,"[""Monitor"", ""Laptop""]",763.68,{},192453,1,Asia +2024-05-07,12813,3799,"[""Monitor"", ""Tablet""]",4780.84,"{"""": ""12%""}",232766,0,North America +2024-09-27,12814,3941,"[""Phone""]",3598.97,"{""loyalty"": ""13%""}",217834,1,South America +2023-12-14,12815,5844,"[""Laptop"", ""Monitor"", ""Headphones""]",4602.44,{},251340,1,Asia +2024-04-18,12816,337,"[""Charger"", ""Keyboard""]",739.91,"{""loyalty"": ""20%""}",23693,0,Asia +2023-10-19,12817,2818,"[""Tablet"", ""Laptop"", ""Headphones""]",2450.49,"{""loyalty"": ""30%""}",53212,0,South America +2023-04-20,12818,6370,"[""Keyboard""]",2082.99,"{"""": ""14%""}",55005,0,Asia +2023-10-05,12819,4138,"[""Headphones"", ""Wireless Mouse""]",2181.6,"{""loyalty"": ""18%""}",87561,1,North America +2024-07-24,12820,4549,"[""Monitor"", ""Tablet""]",4301.49,"{""loyalty"": ""16%""}",89165,0,Asia +2023-04-08,12821,4414,"[""Headphones""]",4070.59,"{""loyalty"": ""20%""}",46981,0,South America +2023-01-14,12822,4959,"[""Tablet"", ""Keyboard"", ""Headphones""]",4440.68,"{"""": ""23%""}",129703,0,Asia +2023-04-28,12823,8363,"[""Phone""]",1037.23,{},241346,1,Asia +2023-02-21,12824,4903,"[""Charger"", ""Monitor""]",143.34,"{""promo"": ""23%""}",31597,1,North America +2023-10-01,12825,8209,"[""Monitor""]",1016.19,"{""promo"": ""12%""}",61458,0,Europe +2023-02-19,12826,461,"[""Wireless Mouse""]",3303.58,{},30345,1,Asia +2023-05-01,12827,3766,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2036.47,"{""seasonal"": ""26%""}",293899,0,Africa +2023-08-15,12828,4419,"[""Keyboard"", ""Headphones"", ""Laptop""]",4778.73,{},270584,1,Asia +2023-06-18,12829,8711,"[""Tablet"", ""Charger""]",4759.4,"{""loyalty"": ""24%""}",101412,0,Asia +2023-03-30,12830,9689,"[""Headphones"", ""Keyboard"", ""Monitor""]",4671.07,{},18223,0,Asia +2024-01-22,12831,3806,"[""Laptop""]",1669.54,{},272141,1,North America +2023-02-22,12832,1769,"[""Monitor"", ""Wireless Mouse""]",1046.29,"{"""": ""27%""}",89472,0,South America +2023-03-14,12833,7655,"[""Laptop""]",4017.29,{},158993,0,Europe +2024-06-11,12834,4399,"[""Laptop"", ""Monitor"", ""Charger""]",4730.42,"{""loyalty"": ""13%""}",248056,1,Asia +2024-12-25,12835,678,"[""Monitor"", ""Tablet""]",3633.95,{},143055,0,South America +2024-04-20,12836,5690,"[""Phone""]",490.73,"{""seasonal"": ""7%""}",172586,1,Europe +2023-04-26,12837,1887,"[""Tablet"", ""Keyboard""]",2207.55,"{""loyalty"": ""11%""}",245896,1,South America +2023-12-14,12838,1517,"[""Tablet"", ""Laptop""]",1424.94,"{""promo"": ""8%""}",3735,0,South America +2023-12-10,12839,8362,"[""Phone"", ""Monitor""]",3029.3,{},58213,1,South America +2024-01-31,12840,4921,"[""Tablet"", ""Keyboard"", ""Phone""]",695.81,"{""seasonal"": ""29%""}",54559,1,South America +2024-10-11,12841,4859,"[""Phone"", ""Laptop""]",748.33,{},236090,0,Asia +2023-05-30,12842,5848,"[""Charger"", ""Laptop""]",4187.32,"{""promo"": ""12%""}",85213,0,South America +2024-04-14,12843,7563,"[""Headphones""]",1719.81,"{"""": ""8%""}",169020,0,North America +2023-03-08,12844,9909,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3310.6,"{""seasonal"": ""28%""}",5799,1,Africa +2023-09-24,12845,5518,"[""Monitor"", ""Phone"", ""Laptop""]",3682.62,"{""promo"": ""19%""}",70182,1,Africa +2023-09-28,12846,5438,"[""Tablet"", ""Laptop"", ""Headphones""]",1422.62,{},145537,0,North America +2024-05-14,12847,875,"[""Tablet""]",442.87,{},228613,1,Africa +2023-05-06,12848,1223,"[""Charger""]",1281.98,"{""seasonal"": ""14%""}",67580,0,Europe +2024-11-27,12849,5211,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1658.43,"{""loyalty"": ""20%""}",220263,0,North America +2023-02-20,12850,5759,"[""Keyboard"", ""Phone"", ""Laptop""]",4749.91,"{""loyalty"": ""21%""}",178012,0,Africa +2024-12-28,12851,5885,"[""Laptop"", ""Monitor""]",3462.45,{},33560,0,Africa +2023-08-12,12852,6163,"[""Monitor""]",1079.57,"{"""": ""22%""}",164778,1,North America +2023-03-19,12853,8806,"[""Headphones"", ""Keyboard"", ""Monitor""]",1908.94,"{""loyalty"": ""8%""}",208257,1,Asia +2023-02-28,12854,2146,"[""Tablet"", ""Phone"", ""Keyboard""]",2904.26,{},295936,0,Asia +2023-03-11,12855,6558,"[""Phone"", ""Headphones"", ""Keyboard""]",1795.04,{},131644,0,North America +2023-11-14,12856,5900,"[""Laptop"", ""Tablet""]",408.64,{},205804,1,South America +2024-06-15,12857,9076,"[""Keyboard"", ""Tablet"", ""Charger""]",3161.76,{},118097,0,Asia +2023-04-01,12858,75,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",803.61,{},263422,0,South America +2023-04-12,12859,9392,"[""Monitor"", ""Phone""]",4820.12,"{""loyalty"": ""7%""}",137743,1,North America +2023-09-25,12860,3203,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3336.63,"{"""": ""24%""}",180865,1,Asia +2024-02-19,12861,5999,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",269.52,{},284222,0,North America +2023-02-03,12862,221,"[""Phone"", ""Headphones""]",1811.95,"{""promo"": ""18%""}",92738,1,North America +2023-04-29,12863,909,"[""Phone"", ""Charger"", ""Headphones""]",4628.88,"{""seasonal"": ""13%""}",160591,0,North America +2023-03-31,12864,2049,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2558.04,"{""promo"": ""29%""}",158600,1,Asia +2024-01-03,12865,6170,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4940.59,"{""seasonal"": ""18%""}",148598,1,North America +2024-12-31,12866,3797,"[""Keyboard"", ""Charger"", ""Headphones""]",1121.18,"{"""": ""22%""}",14872,0,South America +2023-08-02,12867,42,"[""Wireless Mouse""]",1721.25,"{""promo"": ""17%""}",38852,1,Africa +2024-07-20,12868,7597,"[""Phone""]",3623.66,{},50291,1,Africa +2024-10-07,12869,3172,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2233.91,"{""loyalty"": ""30%""}",71600,0,North America +2024-10-06,12870,9273,"[""Keyboard"", ""Headphones""]",3132.78,{},229995,1,Europe +2024-12-22,12871,7266,"[""Headphones"", ""Charger""]",488.4,{},30474,0,Europe +2023-02-28,12872,9697,"[""Tablet"", ""Keyboard""]",1740.83,{},11164,1,North America +2023-05-23,12873,9176,"[""Laptop"", ""Keyboard""]",4694.37,"{""loyalty"": ""17%""}",15748,0,Asia +2023-04-07,12874,2491,"[""Laptop"", ""Headphones"", ""Monitor""]",99.46,"{""promo"": ""18%""}",55667,1,South America +2023-10-11,12875,7778,"[""Tablet"", ""Laptop"", ""Monitor""]",2419.55,{},80000,1,Europe +2023-04-11,12876,6444,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4016.91,{},105167,0,North America +2024-10-20,12877,7492,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3730.98,"{"""": ""28%""}",271624,1,Asia +2024-12-21,12878,5045,"[""Monitor"", ""Headphones""]",822.56,{},9374,0,Europe +2023-06-15,12879,1553,"[""Phone"", ""Tablet""]",3300.28,{},52793,1,Europe +2024-03-16,12880,2167,"[""Tablet"", ""Wireless Mouse""]",899.75,{},113596,1,Africa +2023-12-21,12881,2617,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4559.08,"{""promo"": ""26%""}",269220,1,Africa +2023-11-07,12882,7366,"[""Keyboard"", ""Headphones"", ""Monitor""]",1818.91,"{"""": ""16%""}",76458,1,Africa +2024-09-08,12883,24,"[""Laptop"", ""Keyboard""]",2264.34,{},249432,0,North America +2023-01-25,12884,1880,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4811.46,{},23543,1,North America +2024-06-13,12885,4300,"[""Headphones"", ""Monitor"", ""Charger""]",142.6,{},241124,0,Asia +2023-03-19,12886,9796,"[""Keyboard"", ""Laptop""]",4348.74,{},29515,0,North America +2024-08-03,12887,5013,"[""Monitor"", ""Headphones"", ""Phone""]",205.58,{},72175,1,Africa +2024-07-21,12888,391,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1071.98,{},101190,0,South America +2023-03-25,12889,2117,"[""Charger"", ""Headphones"", ""Tablet""]",3983.21,{},297984,1,South America +2024-02-22,12890,4501,"[""Headphones"", ""Tablet""]",4250.41,"{""promo"": ""20%""}",280512,1,North America +2023-05-30,12891,2859,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",220.07,"{""seasonal"": ""29%""}",143985,1,Asia +2023-11-04,12892,5845,"[""Headphones""]",163.23,{},22293,1,Africa +2023-05-24,12893,7884,"[""Wireless Mouse"", ""Phone""]",2735.67,"{""seasonal"": ""12%""}",176532,1,Asia +2024-08-21,12894,3292,"[""Wireless Mouse"", ""Keyboard""]",4614.5,{},234623,0,Africa +2023-10-31,12895,3421,"[""Wireless Mouse""]",4427.9,{},164557,1,Asia +2023-04-30,12896,2038,"[""Phone"", ""Charger"", ""Keyboard""]",4027.43,{},257371,0,North America +2024-09-06,12897,4699,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3038.74,{},9101,1,Africa +2023-10-27,12898,170,"[""Keyboard"", ""Tablet""]",4249.07,{},293167,0,Europe +2024-09-30,12899,9625,"[""Phone"", ""Keyboard""]",1050.96,"{""seasonal"": ""13%""}",283758,1,Europe +2024-03-23,12900,9999,"[""Wireless Mouse""]",4378.95,"{""loyalty"": ""18%""}",287438,0,South America +2023-07-01,12901,9644,"[""Charger""]",1522.64,"{""seasonal"": ""14%""}",165018,1,Europe +2024-06-24,12902,9845,"[""Headphones"", ""Phone""]",342.49,"{"""": ""27%""}",173940,1,Asia +2024-01-11,12903,7993,"[""Wireless Mouse"", ""Charger""]",683.3,"{"""": ""16%""}",241157,0,Europe +2023-03-24,12904,5288,"[""Laptop""]",2323.78,{},82509,1,Asia +2024-10-03,12905,7628,"[""Laptop"", ""Wireless Mouse""]",901.07,"{"""": ""12%""}",203982,1,Europe +2024-03-01,12906,6465,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",293.0,{},197012,0,North America +2024-05-23,12907,1541,"[""Headphones""]",1429.24,"{""seasonal"": ""7%""}",4638,0,Africa +2024-05-23,12908,526,"[""Tablet"", ""Monitor"", ""Headphones""]",1787.34,"{"""": ""7%""}",93389,0,Asia +2024-01-20,12909,4586,"[""Keyboard"", ""Charger"", ""Tablet""]",2841.45,{},119166,0,Europe +2023-06-23,12910,8769,"[""Tablet"", ""Charger"", ""Laptop""]",1137.51,"{"""": ""24%""}",31582,1,Asia +2023-02-14,12911,2266,"[""Headphones"", ""Charger"", ""Laptop""]",418.56,{},33511,1,South America +2023-04-14,12912,1083,"[""Charger"", ""Headphones"", ""Phone""]",1697.22,{},254265,0,South America +2024-12-11,12913,8837,"[""Keyboard"", ""Monitor""]",2272.82,{},182624,1,South America +2024-12-25,12914,5597,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1008.22,"{""loyalty"": ""14%""}",129495,1,South America +2024-12-14,12915,597,"[""Tablet""]",3018.58,{},193745,0,North America +2024-11-16,12916,6161,"[""Laptop"", ""Headphones"", ""Keyboard""]",94.38,"{"""": ""13%""}",279531,0,Europe +2023-02-25,12917,276,"[""Monitor"", ""Laptop""]",2932.59,"{""loyalty"": ""21%""}",79204,1,Asia +2024-04-08,12918,6356,"[""Headphones"", ""Phone""]",4618.55,{},214158,0,Africa +2024-04-27,12919,5457,"[""Monitor"", ""Headphones"", ""Phone""]",1919.58,"{""seasonal"": ""16%""}",266965,0,Europe +2024-06-07,12920,6125,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4978.71,{},63870,1,Europe +2023-10-18,12921,6906,"[""Charger""]",283.52,{},7735,1,North America +2023-08-20,12922,9344,"[""Tablet"", ""Monitor"", ""Laptop""]",3473.34,"{"""": ""18%""}",46838,0,Asia +2023-11-30,12923,7474,"[""Keyboard"", ""Monitor"", ""Tablet""]",56.08,"{"""": ""8%""}",19566,1,Asia +2023-10-29,12924,7506,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2456.15,{},123276,0,South America +2024-09-21,12925,9422,"[""Monitor""]",2701.69,{},111703,1,Africa +2023-07-15,12926,7476,"[""Charger""]",3449.56,"{""promo"": ""26%""}",292067,1,Africa +2023-08-22,12927,7179,"[""Headphones""]",686.32,{},175168,0,Africa +2024-05-07,12928,8620,"[""Laptop"", ""Phone"", ""Charger""]",4865.06,{},263847,0,South America +2023-02-06,12929,2248,"[""Tablet""]",1151.93,{},274893,1,South America +2023-06-14,12930,622,"[""Monitor""]",4913.31,"{""promo"": ""5%""}",98493,1,Africa +2024-08-18,12931,7325,"[""Headphones""]",2459.05,{},209968,1,South America +2023-08-05,12932,1568,"[""Monitor""]",3688.28,"{""loyalty"": ""28%""}",191249,0,Africa +2024-03-02,12933,4805,"[""Wireless Mouse"", ""Monitor""]",3995.11,"{""promo"": ""6%""}",82811,1,Asia +2023-11-27,12934,2335,"[""Phone""]",3085.84,{},175004,1,Africa +2024-10-17,12935,4956,"[""Monitor"", ""Phone""]",4454.48,{},250792,1,North America +2023-01-13,12936,6490,"[""Keyboard"", ""Laptop"", ""Tablet""]",147.5,{},43037,1,Asia +2023-07-24,12937,2382,"[""Wireless Mouse""]",2956.38,{},158622,1,Asia +2023-08-27,12938,3044,"[""Monitor""]",2200.82,{},110269,1,Africa +2024-03-23,12939,6853,"[""Charger"", ""Headphones"", ""Phone""]",1394.14,{},299504,1,Africa +2023-06-08,12940,9406,"[""Wireless Mouse"", ""Keyboard""]",1409.0,"{""promo"": ""11%""}",113991,0,Africa +2023-03-20,12941,2871,"[""Phone""]",4925.23,{},200495,1,North America +2024-05-06,12942,8410,"[""Keyboard""]",1311.13,"{""seasonal"": ""26%""}",56846,0,Europe +2024-08-14,12943,3405,"[""Wireless Mouse""]",2219.18,{},183156,1,Europe +2024-08-09,12944,315,"[""Keyboard"", ""Charger""]",2886.81,{},121317,0,Asia +2023-06-27,12945,8632,"[""Phone""]",2287.35,{},271878,1,Europe +2023-04-02,12946,1031,"[""Monitor""]",4228.98,"{""loyalty"": ""27%""}",95198,0,South America +2024-11-02,12947,11,"[""Tablet""]",2024.96,"{""loyalty"": ""28%""}",71506,1,Africa +2024-07-04,12948,6642,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2466.38,{},33356,0,Asia +2024-05-21,12949,6247,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1385.37,{},39449,1,Asia +2023-08-28,12950,9099,"[""Keyboard"", ""Phone"", ""Charger""]",2440.92,{},8861,0,Asia +2024-10-16,12951,9253,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4347.56,{},184266,0,Asia +2023-06-11,12952,5334,"[""Monitor"", ""Charger""]",3128.74,{},81119,1,Asia +2023-03-01,12953,4478,"[""Wireless Mouse"", ""Phone""]",2390.94,{},54986,1,South America +2024-03-10,12954,8349,"[""Headphones"", ""Laptop"", ""Keyboard""]",4539.6,{},127039,0,South America +2024-06-02,12955,3235,"[""Laptop"", ""Headphones"", ""Phone""]",3577.53,{},299830,1,South America +2023-11-15,12956,7640,"[""Tablet""]",3345.87,{},11294,1,Europe +2023-03-17,12957,8853,"[""Monitor"", ""Phone""]",3807.2,{},265378,1,Asia +2024-02-22,12958,2539,"[""Wireless Mouse""]",3010.82,{},240364,1,North America +2023-01-24,12959,3760,"[""Headphones"", ""Monitor"", ""Keyboard""]",3199.0,{},102841,0,Africa +2023-11-08,12960,4001,"[""Tablet"", ""Headphones""]",666.23,"{""promo"": ""8%""}",33775,1,Europe +2024-08-19,12961,8320,"[""Headphones""]",2453.79,"{"""": ""12%""}",12545,1,Asia +2023-01-25,12962,5537,"[""Charger"", ""Phone"", ""Headphones""]",1569.23,"{""promo"": ""18%""}",140224,0,Europe +2024-09-18,12963,5717,"[""Tablet""]",4392.97,"{""seasonal"": ""16%""}",172509,0,Africa +2024-01-09,12964,8131,"[""Keyboard"", ""Headphones""]",2927.83,{},178541,0,Asia +2023-02-17,12965,1645,"[""Phone""]",4110.2,{},235275,0,Africa +2023-05-26,12966,6787,"[""Charger"", ""Laptop"", ""Keyboard""]",1489.01,{},244164,1,Africa +2024-10-11,12967,4625,"[""Monitor""]",2554.15,{},158409,0,Europe +2024-01-06,12968,4648,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4308.13,"{""loyalty"": ""13%""}",68941,1,Africa +2024-09-18,12969,5784,"[""Monitor""]",4047.13,{},262348,0,Europe +2023-03-14,12970,2660,"[""Laptop""]",4538.93,"{""promo"": ""7%""}",4699,1,Europe +2024-11-30,12971,3310,"[""Charger""]",2235.88,{},247987,0,South America +2024-01-01,12972,768,"[""Keyboard"", ""Wireless Mouse""]",4199.72,"{"""": ""9%""}",13240,1,South America +2023-11-29,12973,3226,"[""Charger"", ""Wireless Mouse""]",892.88,"{""loyalty"": ""5%""}",64271,1,Africa +2024-07-20,12974,336,"[""Phone""]",2781.25,"{""promo"": ""30%""}",159691,0,Africa +2024-02-04,12975,4205,"[""Keyboard""]",3604.27,{},235504,0,North America +2023-03-20,12976,197,"[""Monitor"", ""Laptop""]",3979.46,{},1891,1,Africa +2024-07-31,12977,1440,"[""Keyboard"", ""Headphones""]",713.57,"{""loyalty"": ""22%""}",111184,0,South America +2023-11-24,12978,1651,"[""Headphones"", ""Tablet""]",515.06,{},162773,1,North America +2023-05-19,12979,3226,"[""Tablet"", ""Phone""]",79.95,{},69843,0,Asia +2024-05-01,12980,1647,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3253.71,"{""seasonal"": ""25%""}",281430,0,Asia +2024-12-08,12981,35,"[""Keyboard""]",1023.83,"{""loyalty"": ""26%""}",37276,1,Asia +2024-05-19,12982,5638,"[""Charger"", ""Monitor"", ""Laptop""]",519.09,{},133523,1,North America +2024-06-02,12983,7318,"[""Phone"", ""Headphones""]",318.43,{},116124,0,Europe +2024-04-07,12984,9631,"[""Phone"", ""Headphones""]",4075.33,{},137524,0,Europe +2023-12-01,12985,4861,"[""Laptop"", ""Tablet""]",881.73,"{"""": ""21%""}",106043,1,South America +2024-11-02,12986,5565,"[""Phone""]",2759.27,"{""promo"": ""28%""}",171695,0,Europe +2023-05-13,12987,3113,"[""Tablet"", ""Laptop"", ""Headphones""]",1602.99,"{""promo"": ""27%""}",9452,1,Europe +2024-04-17,12988,2930,"[""Phone"", ""Wireless Mouse""]",185.7,{},56666,0,Africa +2024-07-16,12989,9641,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",244.31,"{"""": ""11%""}",132392,0,Africa +2023-10-12,12990,7881,"[""Headphones"", ""Keyboard""]",558.89,"{""seasonal"": ""28%""}",47598,0,Asia +2023-04-06,12991,7992,"[""Charger"", ""Wireless Mouse""]",4793.66,"{"""": ""13%""}",127070,1,Europe +2023-12-21,12992,9522,"[""Wireless Mouse""]",4592.47,"{""seasonal"": ""27%""}",153856,1,South America +2024-11-16,12993,7880,"[""Monitor""]",3974.81,"{""promo"": ""21%""}",157549,1,Europe +2024-05-21,12994,3679,"[""Headphones""]",2751.74,"{""loyalty"": ""11%""}",24628,1,South America +2024-07-07,12995,2553,"[""Charger""]",4428.39,"{""loyalty"": ""29%""}",169924,1,Africa +2023-01-24,12996,8456,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4778.08,"{""promo"": ""27%""}",244479,0,South America +2023-03-26,12997,2860,"[""Monitor""]",1532.03,{},138461,1,Europe +2023-09-04,12998,1745,"[""Monitor"", ""Headphones"", ""Tablet""]",2325.08,{},263966,0,North America +2024-07-06,12999,918,"[""Headphones""]",2371.49,{},92047,1,South America +2024-09-04,13000,3704,"[""Tablet""]",4949.87,"{""loyalty"": ""6%""}",260256,1,Asia +2024-06-17,13001,6847,"[""Phone""]",2786.21,"{""promo"": ""7%""}",199417,0,Europe +2024-12-05,13002,2912,"[""Phone"", ""Keyboard""]",3958.21,"{""promo"": ""11%""}",42615,0,Europe +2023-09-30,13003,9611,"[""Wireless Mouse"", ""Keyboard""]",3991.78,{},182205,0,North America +2024-07-08,13004,5323,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",232.95,"{""loyalty"": ""7%""}",272396,0,Europe +2024-11-23,13005,9081,"[""Monitor"", ""Keyboard"", ""Charger""]",610.43,"{""promo"": ""28%""}",102894,0,North America +2024-01-02,13006,7418,"[""Tablet"", ""Phone"", ""Laptop""]",469.91,{},44189,1,Asia +2024-10-22,13007,3449,"[""Charger""]",3418.75,{},149326,0,Asia +2023-11-24,13008,4767,"[""Laptop"", ""Charger""]",3441.89,{},29262,0,North America +2023-01-04,13009,3483,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2208.12,"{""seasonal"": ""27%""}",260196,1,North America +2024-12-28,13010,8962,"[""Tablet"", ""Keyboard""]",418.3,{},215083,1,Europe +2023-04-26,13011,3391,"[""Phone""]",2594.58,"{"""": ""16%""}",91469,0,South America +2023-09-29,13012,4109,"[""Laptop"", ""Wireless Mouse""]",238.95,"{"""": ""30%""}",279213,0,Asia +2023-11-04,13013,5452,"[""Headphones"", ""Charger"", ""Monitor""]",3988.48,{},95122,0,North America +2023-03-17,13014,556,"[""Laptop"", ""Phone"", ""Charger""]",1261.4,{},143611,1,South America +2024-04-23,13015,2666,"[""Laptop"", ""Charger""]",2861.72,"{"""": ""14%""}",75494,1,South America +2024-12-25,13016,3800,"[""Keyboard"", ""Laptop"", ""Phone""]",4260.48,"{""seasonal"": ""14%""}",275403,1,Africa +2024-07-30,13017,3998,"[""Phone"", ""Tablet""]",4383.22,{},5843,0,Africa +2023-12-27,13018,7553,"[""Monitor"", ""Laptop""]",252.88,{},271166,0,South America +2023-12-15,13019,2514,"[""Keyboard""]",2539.42,"{""loyalty"": ""10%""}",126497,0,South America +2024-12-23,13020,3216,"[""Headphones""]",2965.81,"{""seasonal"": ""5%""}",280901,0,Asia +2024-05-05,13021,1078,"[""Laptop""]",4339.2,{},135194,0,North America +2024-08-05,13022,1288,"[""Charger"", ""Tablet""]",1007.19,"{""loyalty"": ""8%""}",299135,0,Asia +2024-05-02,13023,8805,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",92.49,"{"""": ""24%""}",197409,1,North America +2023-11-18,13024,8311,"[""Laptop""]",3861.49,"{""loyalty"": ""6%""}",133643,1,South America +2023-12-02,13025,2424,"[""Headphones""]",2114.84,"{""promo"": ""22%""}",52736,0,Africa +2023-11-29,13026,3385,"[""Tablet""]",4455.09,{},98179,0,South America +2024-05-09,13027,1194,"[""Tablet""]",257.44,{},30534,1,Asia +2023-08-12,13028,8954,"[""Monitor"", ""Tablet"", ""Keyboard""]",3209.78,"{"""": ""29%""}",158384,0,Africa +2024-07-01,13029,1872,"[""Headphones""]",799.15,{},152091,0,South America +2024-02-27,13030,4274,"[""Tablet""]",767.7,{},222580,1,Asia +2023-06-07,13031,2320,"[""Headphones"", ""Monitor"", ""Charger""]",4121.85,"{""seasonal"": ""24%""}",101490,1,Africa +2023-12-11,13032,632,"[""Keyboard"", ""Charger"", ""Laptop""]",4537.2,"{""promo"": ""18%""}",24147,0,Africa +2024-03-27,13033,5260,"[""Monitor"", ""Keyboard""]",1912.38,{},179165,1,Europe +2024-12-26,13034,4463,"[""Phone""]",2829.42,"{""loyalty"": ""26%""}",90520,0,South America +2024-07-12,13035,2006,"[""Tablet"", ""Phone"", ""Monitor""]",1785.13,"{""loyalty"": ""22%""}",266129,1,Europe +2024-04-01,13036,700,"[""Monitor""]",1052.28,{},244833,1,North America +2024-05-11,13037,4137,"[""Monitor""]",1905.67,{},40547,1,Africa +2023-04-18,13038,6680,"[""Keyboard"", ""Phone""]",1504.37,"{"""": ""13%""}",99935,0,Europe +2024-01-24,13039,9003,"[""Phone"", ""Laptop""]",351.22,{},127085,1,Europe +2023-01-21,13040,3798,"[""Laptop"", ""Wireless Mouse""]",236.42,{},98855,1,Africa +2023-03-16,13041,4903,"[""Wireless Mouse""]",2332.75,{},210374,1,South America +2024-05-05,13042,4633,"[""Tablet"", ""Keyboard""]",4226.52,{},89587,1,Europe +2024-05-01,13043,2584,"[""Phone""]",4305.54,"{""seasonal"": ""28%""}",270031,1,South America +2023-01-11,13044,7776,"[""Laptop""]",2424.61,{},158675,1,Asia +2023-02-04,13045,9027,"[""Charger"", ""Wireless Mouse""]",3405.19,"{""seasonal"": ""9%""}",256052,0,South America +2023-08-29,13046,1323,"[""Keyboard""]",334.85,{},184293,1,Europe +2023-06-16,13047,2260,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1026.69,"{"""": ""19%""}",17390,0,Europe +2024-02-24,13048,7768,"[""Keyboard""]",4284.88,"{""promo"": ""26%""}",85440,1,Europe +2023-05-09,13049,2060,"[""Laptop"", ""Charger"", ""Keyboard""]",4724.52,{},144745,1,Asia +2024-10-24,13050,6565,"[""Monitor"", ""Laptop""]",712.36,"{""promo"": ""29%""}",164638,0,Africa +2024-10-18,13051,7768,"[""Charger"", ""Keyboard"", ""Laptop""]",3664.89,"{""promo"": ""15%""}",123042,1,Asia +2023-06-26,13052,973,"[""Headphones"", ""Phone"", ""Laptop""]",880.2,{},111556,1,North America +2024-03-30,13053,9596,"[""Keyboard"", ""Headphones""]",4287.27,"{"""": ""22%""}",124522,0,Asia +2024-07-10,13054,8876,"[""Tablet"", ""Charger"", ""Keyboard""]",4747.96,{},172589,1,Africa +2023-10-13,13055,1899,"[""Phone""]",4968.79,"{""loyalty"": ""25%""}",283300,1,Europe +2023-08-15,13056,2579,"[""Laptop""]",2744.69,"{""promo"": ""5%""}",242263,0,Africa +2024-01-26,13057,6098,"[""Keyboard""]",209.9,{},137716,1,South America +2023-10-04,13058,9147,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2714.64,{},296645,1,Europe +2024-09-05,13059,3533,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4746.77,{},115454,0,South America +2024-09-20,13060,7108,"[""Keyboard"", ""Charger""]",4174.1,"{""seasonal"": ""15%""}",202201,1,Europe +2023-05-26,13061,20,"[""Monitor""]",1192.21,"{""loyalty"": ""6%""}",212539,1,Asia +2024-11-04,13062,8004,"[""Charger"", ""Keyboard""]",4969.52,{},173566,1,Asia +2023-09-20,13063,1741,"[""Charger""]",2285.22,{},226930,0,Asia +2023-09-11,13064,8043,"[""Monitor"", ""Headphones""]",2068.12,{},170066,0,Europe +2023-11-19,13065,5989,"[""Monitor"", ""Tablet""]",1253.48,"{"""": ""14%""}",30153,0,Africa +2024-05-16,13066,8488,"[""Laptop"", ""Charger""]",4403.78,{},211633,0,Europe +2023-04-11,13067,9825,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1095.68,{},218057,0,South America +2023-06-06,13068,1472,"[""Headphones"", ""Monitor""]",3032.57,"{""loyalty"": ""19%""}",142715,1,Asia +2024-08-07,13069,3914,"[""Keyboard"", ""Wireless Mouse""]",2679.43,"{""promo"": ""23%""}",145562,0,Africa +2024-09-29,13070,300,"[""Headphones""]",205.67,"{""loyalty"": ""19%""}",152311,1,South America +2024-05-24,13071,9273,"[""Phone"", ""Tablet""]",748.05,{},114794,1,Europe +2024-03-16,13072,3728,"[""Monitor"", ""Tablet"", ""Phone""]",80.81,{},250855,1,Africa +2023-04-21,13073,7424,"[""Phone"", ""Headphones"", ""Keyboard""]",2427.13,{},264006,0,South America +2023-11-23,13074,2374,"[""Laptop"", ""Charger""]",3365.3,{},241711,1,South America +2024-07-14,13075,6578,"[""Tablet""]",3817.36,{},254568,0,Europe +2023-01-13,13076,8496,"[""Phone""]",4545.94,"{""promo"": ""29%""}",30994,1,South America +2024-07-04,13077,4239,"[""Phone"", ""Headphones"", ""Laptop""]",93.05,"{""seasonal"": ""14%""}",14688,1,Asia +2023-04-02,13078,4467,"[""Tablet"", ""Monitor"", ""Headphones""]",3397.52,{},63581,1,South America +2023-04-30,13079,1526,"[""Laptop""]",2439.72,{},218059,1,South America +2024-05-16,13080,4403,"[""Tablet""]",2496.27,{},298932,1,Europe +2024-12-05,13081,8813,"[""Wireless Mouse""]",2840.19,"{""seasonal"": ""10%""}",211101,0,South America +2023-10-29,13082,7164,"[""Headphones""]",4134.5,{},266394,1,North America +2023-09-03,13083,9521,"[""Keyboard""]",139.9,{},272760,1,Europe +2024-12-10,13084,6572,"[""Headphones"", ""Tablet"", ""Charger""]",2838.19,{},76124,1,Asia +2024-07-03,13085,3678,"[""Phone"", ""Monitor""]",2713.73,{},50193,0,South America +2023-11-15,13086,2596,"[""Monitor""]",880.82,{},255922,1,North America +2023-02-03,13087,1054,"[""Tablet"", ""Charger""]",3386.16,{},266396,1,North America +2023-08-01,13088,6971,"[""Headphones""]",923.94,"{""loyalty"": ""28%""}",80917,0,South America +2023-05-13,13089,9862,"[""Laptop"", ""Phone""]",4839.46,{},155093,0,Asia +2024-05-28,13090,1458,"[""Tablet"", ""Phone"", ""Keyboard""]",74.8,"{""loyalty"": ""9%""}",221375,1,North America +2024-05-21,13091,4120,"[""Monitor""]",4326.24,{},146486,1,South America +2023-11-19,13092,7629,"[""Phone""]",4322.19,{},190407,1,Europe +2023-07-26,13093,9164,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3947.36,{},130829,1,Asia +2024-04-06,13094,3805,"[""Charger""]",3962.61,{},131050,1,South America +2023-01-13,13095,83,"[""Charger"", ""Keyboard"", ""Monitor""]",1776.36,"{""seasonal"": ""16%""}",153339,0,Asia +2024-06-29,13096,4706,"[""Tablet""]",3146.25,{},43720,0,South America +2023-03-06,13097,8491,"[""Wireless Mouse"", ""Headphones""]",1065.46,{},12653,0,Europe +2024-08-30,13098,2923,"[""Laptop""]",2019.76,"{""seasonal"": ""6%""}",265831,0,Europe +2024-11-26,13099,2517,"[""Headphones"", ""Keyboard""]",3030.3,"{""promo"": ""9%""}",206386,0,North America +2024-02-22,13100,4941,"[""Monitor"", ""Charger"", ""Laptop""]",1188.45,"{""promo"": ""9%""}",258021,0,Asia +2024-05-03,13101,3892,"[""Laptop""]",2168.79,{},92076,1,North America +2023-07-04,13102,4689,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4161.42,{},24840,0,South America +2024-01-31,13103,3003,"[""Phone""]",684.47,"{"""": ""9%""}",88704,0,South America +2023-12-23,13104,3269,"[""Headphones"", ""Charger""]",2850.81,{},244592,1,North America +2023-03-28,13105,1442,"[""Tablet"", ""Keyboard"", ""Monitor""]",2709.96,"{""promo"": ""22%""}",139783,1,North America +2024-01-28,13106,1510,"[""Wireless Mouse"", ""Tablet""]",3135.27,"{"""": ""8%""}",128412,1,Africa +2024-08-28,13107,5261,"[""Phone""]",4794.47,"{"""": ""9%""}",19347,1,Africa +2023-10-22,13108,3606,"[""Headphones"", ""Tablet"", ""Monitor""]",764.64,{},65532,0,Europe +2024-12-14,13109,2818,"[""Wireless Mouse"", ""Phone""]",3625.51,"{""seasonal"": ""24%""}",185778,0,North America +2024-01-27,13110,4960,"[""Laptop""]",4203.63,"{""loyalty"": ""26%""}",174523,0,Africa +2024-08-26,13111,3783,"[""Keyboard"", ""Laptop"", ""Tablet""]",4464.12,{},263524,1,South America +2024-02-04,13112,5297,"[""Phone""]",1267.01,{},283716,0,Europe +2024-05-02,13113,5930,"[""Wireless Mouse""]",1293.12,{},159321,1,Africa +2023-08-10,13114,3217,"[""Monitor"", ""Charger"", ""Keyboard""]",2416.71,{},267621,0,North America +2024-04-13,13115,6418,"[""Headphones"", ""Keyboard""]",1705.22,"{""promo"": ""27%""}",13077,1,Africa +2024-11-24,13116,6112,"[""Laptop""]",3082.77,{},87380,1,Africa +2024-02-07,13117,1977,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1809.98,"{""seasonal"": ""28%""}",125906,0,Europe +2024-03-11,13118,8081,"[""Laptop"", ""Phone"", ""Keyboard""]",3611.18,{},155708,0,Asia +2023-09-14,13119,5249,"[""Keyboard""]",2676.29,"{"""": ""30%""}",218954,0,South America +2024-02-17,13120,3475,"[""Laptop"", ""Tablet""]",1393.12,{},209377,1,Asia +2023-09-06,13121,1419,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",842.52,{},43326,1,South America +2024-11-21,13122,5810,"[""Tablet""]",2139.53,"{"""": ""28%""}",164437,1,Africa +2024-07-08,13123,6632,"[""Keyboard"", ""Tablet""]",121.89,"{"""": ""15%""}",213357,1,Asia +2024-08-23,13124,6226,"[""Monitor"", ""Charger""]",4567.49,"{"""": ""22%""}",296878,0,Europe +2024-05-20,13125,5910,"[""Tablet""]",4958.61,"{"""": ""23%""}",128398,0,South America +2024-11-02,13126,5813,"[""Phone""]",3395.02,{},113690,0,Asia +2024-10-19,13127,6135,"[""Laptop"", ""Charger"", ""Phone""]",756.11,{},4773,0,Africa +2023-02-01,13128,1160,"[""Headphones"", ""Keyboard""]",3020.37,"{""loyalty"": ""26%""}",77803,0,Asia +2024-09-18,13129,3337,"[""Keyboard""]",4068.57,{},248312,1,Asia +2023-12-22,13130,696,"[""Headphones"", ""Charger"", ""Laptop""]",2713.06,{},40651,0,Europe +2024-08-05,13131,4768,"[""Tablet""]",3852.46,{},8820,1,Asia +2023-01-21,13132,4627,"[""Monitor"", ""Keyboard""]",1482.3,{},283005,0,Africa +2023-11-16,13133,8186,"[""Wireless Mouse""]",4471.71,"{""promo"": ""10%""}",79078,0,South America +2024-02-08,13134,5904,"[""Wireless Mouse""]",4580.27,"{""seasonal"": ""15%""}",275938,0,Asia +2024-09-05,13135,9445,"[""Laptop"", ""Tablet"", ""Headphones""]",1884.91,{},244766,0,Europe +2023-10-25,13136,785,"[""Charger"", ""Headphones""]",408.2,{},16762,1,Asia +2024-10-13,13137,3281,"[""Keyboard"", ""Charger"", ""Headphones""]",1888.24,{},213805,1,Asia +2023-11-06,13138,253,"[""Laptop""]",3781.7,{},270046,0,North America +2024-10-03,13139,2365,"[""Phone"", ""Headphones"", ""Monitor""]",4430.26,"{"""": ""19%""}",246104,0,South America +2024-05-24,13140,36,"[""Keyboard"", ""Monitor""]",1850.76,"{""seasonal"": ""21%""}",107419,0,South America +2023-03-19,13141,2221,"[""Monitor"", ""Charger""]",1213.02,"{""seasonal"": ""19%""}",203636,0,Africa +2023-11-20,13142,2125,"[""Phone"", ""Monitor""]",2136.85,"{"""": ""7%""}",73802,0,Europe +2024-04-22,13143,7368,"[""Wireless Mouse"", ""Headphones""]",1179.89,"{""loyalty"": ""16%""}",179955,1,South America +2024-12-09,13144,5064,"[""Monitor"", ""Tablet""]",3591.3,"{"""": ""23%""}",213144,1,Asia +2023-10-28,13145,2489,"[""Phone"", ""Keyboard""]",2584.3,"{"""": ""26%""}",268694,1,North America +2023-08-02,13146,3593,"[""Keyboard"", ""Monitor""]",1875.42,"{""loyalty"": ""18%""}",248970,0,Africa +2023-04-07,13147,5446,"[""Wireless Mouse"", ""Headphones""]",2441.07,{},176213,1,Asia +2024-03-26,13148,9042,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4200.66,{},86578,0,Europe +2023-09-27,13149,2053,"[""Headphones"", ""Laptop"", ""Tablet""]",1890.07,"{""seasonal"": ""22%""}",288029,0,Europe +2024-09-11,13150,32,"[""Laptop"", ""Tablet"", ""Headphones""]",4649.68,"{""seasonal"": ""7%""}",220011,1,North America +2023-08-16,13151,6605,"[""Headphones"", ""Tablet"", ""Phone""]",3681.83,"{""loyalty"": ""25%""}",161205,0,Asia +2023-11-26,13152,2131,"[""Phone""]",82.48,{},100138,0,North America +2024-08-18,13153,8835,"[""Phone""]",2911.54,"{"""": ""23%""}",177233,1,South America +2024-06-16,13154,2182,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4015.66,{},30240,1,Europe +2023-03-05,13155,7576,"[""Headphones"", ""Charger""]",4128.07,"{"""": ""23%""}",70046,1,Asia +2024-07-23,13156,2325,"[""Keyboard""]",4851.57,{},88013,1,South America +2023-09-14,13157,3118,"[""Monitor"", ""Tablet""]",3787.0,{},58932,0,South America +2024-10-10,13158,5652,"[""Monitor"", ""Tablet""]",3433.87,{},233993,0,Asia +2023-11-08,13159,9115,"[""Wireless Mouse"", ""Charger""]",3627.84,"{""loyalty"": ""13%""}",194908,0,Europe +2023-07-20,13160,2852,"[""Headphones"", ""Keyboard""]",3228.39,"{""seasonal"": ""23%""}",95131,0,Europe +2024-09-09,13161,2764,"[""Laptop"", ""Phone"", ""Charger""]",1935.0,"{""loyalty"": ""5%""}",134883,0,South America +2024-03-07,13162,1204,"[""Charger"", ""Tablet""]",3323.75,"{""loyalty"": ""23%""}",121712,1,Africa +2023-12-21,13163,7886,"[""Keyboard"", ""Headphones""]",3726.56,{},33987,0,Europe +2023-11-21,13164,1511,"[""Headphones"", ""Tablet"", ""Phone""]",1964.94,{},34174,0,North America +2023-12-29,13165,2868,"[""Wireless Mouse""]",4413.24,"{"""": ""15%""}",15471,0,North America +2023-09-22,13166,3498,"[""Wireless Mouse"", ""Laptop""]",2657.67,{},219752,1,Africa +2024-11-10,13167,4619,"[""Laptop"", ""Phone"", ""Headphones""]",3694.16,"{""loyalty"": ""28%""}",83037,1,Europe +2024-10-21,13168,9046,"[""Monitor""]",4736.18,"{""promo"": ""20%""}",108812,1,Asia +2024-11-19,13169,5265,"[""Keyboard"", ""Charger""]",1693.9,"{""promo"": ""28%""}",87028,0,South America +2024-08-04,13170,9916,"[""Tablet"", ""Charger""]",434.37,{},125151,0,South America +2024-03-09,13171,6126,"[""Laptop"", ""Tablet""]",2538.14,{},210655,0,Africa +2024-03-29,13172,1280,"[""Tablet"", ""Wireless Mouse""]",1020.82,"{""promo"": ""30%""}",57856,1,Europe +2023-02-13,13173,6097,"[""Headphones"", ""Tablet"", ""Charger""]",3993.41,{},296392,0,North America +2023-06-23,13174,6174,"[""Headphones"", ""Tablet"", ""Keyboard""]",3883.59,"{""promo"": ""26%""}",178004,1,Europe +2024-03-22,13175,6023,"[""Tablet"", ""Phone""]",643.93,"{""seasonal"": ""20%""}",238649,1,Asia +2024-04-18,13176,4532,"[""Laptop"", ""Phone""]",4543.72,"{""loyalty"": ""17%""}",83559,0,Africa +2023-07-06,13177,831,"[""Monitor""]",2732.56,{},79902,0,Africa +2024-09-17,13178,1746,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1223.71,{},232925,0,Europe +2024-08-15,13179,3538,"[""Tablet"", ""Charger"", ""Phone""]",4740.11,"{"""": ""12%""}",127680,0,South America +2024-06-21,13180,1046,"[""Headphones"", ""Monitor"", ""Phone""]",4219.56,{},126846,1,South America +2024-07-21,13181,7538,"[""Laptop"", ""Tablet"", ""Headphones""]",4648.35,{},244944,1,Asia +2023-03-28,13182,832,"[""Charger"", ""Monitor"", ""Phone""]",4977.8,{},275472,0,Europe +2023-05-03,13183,5831,"[""Tablet""]",2339.09,"{""promo"": ""20%""}",213068,1,Asia +2024-01-21,13184,5469,"[""Keyboard"", ""Monitor""]",221.38,{},153771,0,North America +2024-01-29,13185,5914,"[""Keyboard"", ""Phone""]",4488.89,"{""seasonal"": ""19%""}",101251,0,South America +2023-02-24,13186,4318,"[""Headphones"", ""Charger""]",386.39,"{""loyalty"": ""9%""}",243524,0,North America +2023-03-24,13187,7491,"[""Charger""]",3175.4,{},132738,1,Asia +2024-06-16,13188,7232,"[""Phone"", ""Tablet"", ""Headphones""]",1353.31,{},148634,0,Africa +2024-02-25,13189,3521,"[""Tablet""]",337.85,{},71188,1,South America +2024-06-05,13190,4210,"[""Laptop"", ""Phone"", ""Monitor""]",573.17,{},114139,0,South America +2024-06-18,13191,2667,"[""Headphones"", ""Phone"", ""Laptop""]",564.63,{},25362,0,North America +2023-11-26,13192,952,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3388.08,"{""seasonal"": ""12%""}",24447,0,Africa +2023-03-07,13193,7688,"[""Charger""]",3614.37,"{""loyalty"": ""18%""}",131130,0,South America +2024-12-30,13194,5451,"[""Phone"", ""Keyboard"", ""Charger""]",1387.3,{},33760,1,Europe +2023-06-02,13195,1017,"[""Headphones"", ""Tablet"", ""Laptop""]",1476.02,{},110053,1,Europe +2023-08-22,13196,1386,"[""Monitor"", ""Phone""]",2252.73,{},157219,0,Africa +2024-03-14,13197,1881,"[""Headphones"", ""Phone"", ""Laptop""]",1668.81,{},126034,1,Asia +2023-06-12,13198,2245,"[""Headphones""]",2231.59,"{""promo"": ""30%""}",48518,1,Africa +2023-11-10,13199,9751,"[""Charger""]",3419.21,{},144994,0,Africa +2023-05-24,13200,6697,"[""Wireless Mouse"", ""Phone""]",3815.39,"{""loyalty"": ""28%""}",159154,1,North America +2024-07-08,13201,1758,"[""Tablet"", ""Headphones""]",997.05,"{""loyalty"": ""11%""}",118432,1,Europe +2024-01-05,13202,6273,"[""Tablet"", ""Keyboard"", ""Phone""]",3914.5,{},220377,1,Europe +2023-09-12,13203,3681,"[""Headphones"", ""Monitor""]",4865.34,"{""promo"": ""15%""}",108970,1,North America +2023-12-10,13204,7778,"[""Keyboard"", ""Monitor"", ""Charger""]",833.8,"{""loyalty"": ""19%""}",84690,1,North America +2023-10-19,13205,6070,"[""Phone"", ""Keyboard""]",1353.59,{},235259,0,South America +2024-12-17,13206,9317,"[""Phone"", ""Tablet""]",4929.94,{},168586,1,Europe +2023-02-19,13207,4840,"[""Charger"", ""Laptop""]",4228.09,{},111158,0,Asia +2024-06-17,13208,3581,"[""Charger"", ""Phone""]",592.42,{},54521,1,Asia +2024-09-23,13209,3220,"[""Monitor"", ""Wireless Mouse""]",4287.55,{},50883,0,South America +2024-12-15,13210,9950,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",857.47,{},125254,0,Europe +2024-03-14,13211,5431,"[""Monitor"", ""Phone""]",3694.97,"{""seasonal"": ""30%""}",156643,0,South America +2024-02-25,13212,309,"[""Wireless Mouse""]",62.62,"{""seasonal"": ""11%""}",192269,0,Africa +2023-05-14,13213,4045,"[""Keyboard"", ""Laptop"", ""Charger""]",2800.53,{},256731,1,Africa +2023-01-18,13214,7899,"[""Keyboard"", ""Headphones""]",503.74,{},40427,0,South America +2023-04-06,13215,4206,"[""Tablet""]",991.61,"{""seasonal"": ""28%""}",32173,0,Asia +2024-08-06,13216,7761,"[""Phone"", ""Tablet""]",4131.06,"{""loyalty"": ""22%""}",20226,0,Asia +2023-11-30,13217,8942,"[""Phone"", ""Monitor"", ""Tablet""]",2343.32,"{""loyalty"": ""18%""}",97296,1,Africa +2023-01-21,13218,2880,"[""Laptop""]",3904.59,{},277931,0,Africa +2023-05-22,13219,1218,"[""Wireless Mouse"", ""Laptop""]",448.03,"{"""": ""28%""}",290377,1,Africa +2023-11-18,13220,6279,"[""Monitor"", ""Headphones""]",4054.61,"{""promo"": ""27%""}",202733,1,South America +2023-05-08,13221,6579,"[""Phone"", ""Laptop"", ""Keyboard""]",4511.97,{},130400,1,Europe +2024-11-15,13222,2333,"[""Keyboard"", ""Charger""]",3448.28,{},239016,0,South America +2023-09-25,13223,8148,"[""Charger""]",2673.37,{},11910,1,Europe +2023-01-05,13224,1504,"[""Keyboard""]",2272.61,{},150364,0,Africa +2023-03-07,13225,7330,"[""Wireless Mouse""]",1404.08,"{""loyalty"": ""19%""}",158839,0,South America +2024-07-07,13226,768,"[""Laptop""]",1729.65,{},212290,1,Europe +2024-08-05,13227,3338,"[""Tablet""]",2507.17,"{"""": ""29%""}",269519,0,Europe +2023-04-09,13228,2111,"[""Wireless Mouse""]",2144.36,{},61944,0,North America +2024-10-01,13229,5651,"[""Tablet"", ""Laptop"", ""Headphones""]",3782.57,"{"""": ""26%""}",2719,1,Asia +2024-10-17,13230,2421,"[""Phone""]",139.32,{},248653,0,North America +2024-09-07,13231,2669,"[""Tablet"", ""Laptop""]",274.08,{},238490,1,North America +2023-06-14,13232,1201,"[""Wireless Mouse"", ""Tablet""]",965.12,"{""loyalty"": ""10%""}",259120,0,Europe +2024-04-02,13233,1254,"[""Keyboard"", ""Phone"", ""Monitor""]",1701.53,{},203171,1,South America +2023-03-25,13234,6921,"[""Laptop"", ""Keyboard"", ""Tablet""]",628.97,{},129703,1,South America +2024-09-04,13235,1031,"[""Monitor""]",677.61,{},227481,0,Europe +2023-05-06,13236,1330,"[""Charger"", ""Wireless Mouse""]",3006.55,"{""loyalty"": ""7%""}",37786,1,Europe +2024-06-07,13237,4543,"[""Headphones"", ""Keyboard"", ""Tablet""]",421.59,"{""loyalty"": ""12%""}",41319,1,North America +2024-05-19,13238,772,"[""Wireless Mouse"", ""Phone""]",1283.91,"{"""": ""18%""}",256563,0,Europe +2024-12-21,13239,5322,"[""Phone""]",2400.9,"{""promo"": ""28%""}",170223,1,Asia +2023-11-05,13240,1696,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3000.23,{},111258,1,Asia +2024-11-04,13241,9350,"[""Tablet"", ""Keyboard"", ""Laptop""]",4243.2,"{""seasonal"": ""30%""}",228067,1,Africa +2023-04-08,13242,3093,"[""Monitor"", ""Tablet""]",3138.99,{},146293,0,North America +2024-02-13,13243,641,"[""Tablet""]",2974.02,"{""seasonal"": ""6%""}",278913,0,Africa +2024-03-25,13244,2468,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3871.05,{},197596,0,North America +2024-11-16,13245,8398,"[""Monitor"", ""Tablet""]",2300.29,{},153492,0,North America +2023-12-31,13246,4846,"[""Tablet""]",3116.72,{},229468,1,Africa +2023-03-11,13247,7484,"[""Wireless Mouse""]",3908.34,"{""promo"": ""25%""}",142384,0,Europe +2023-03-12,13248,7944,"[""Wireless Mouse"", ""Charger""]",571.23,"{""seasonal"": ""24%""}",33707,0,Africa +2024-03-09,13249,3775,"[""Phone""]",1319.78,{},27341,1,Africa +2024-01-07,13250,9774,"[""Keyboard"", ""Wireless Mouse""]",2571.77,"{""seasonal"": ""23%""}",38021,1,North America +2023-08-26,13251,7579,"[""Tablet"", ""Charger"", ""Keyboard""]",3292.8,"{"""": ""11%""}",132974,0,Africa +2023-03-06,13252,1373,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",102.37,"{"""": ""20%""}",222330,1,South America +2024-08-02,13253,1593,"[""Monitor"", ""Keyboard""]",804.15,{},7148,1,North America +2024-03-30,13254,1917,"[""Headphones"", ""Wireless Mouse""]",527.78,{},211385,1,Europe +2023-08-22,13255,2575,"[""Charger""]",2123.28,{},216595,0,South America +2024-03-07,13256,7150,"[""Headphones"", ""Tablet""]",3765.34,"{""seasonal"": ""16%""}",203850,0,South America +2023-02-20,13257,1814,"[""Charger"", ""Monitor""]",1986.05,{},218039,0,Asia +2024-07-21,13258,4310,"[""Keyboard"", ""Charger""]",2474.14,"{""loyalty"": ""13%""}",26762,0,Africa +2024-12-24,13259,1040,"[""Charger"", ""Tablet"", ""Monitor""]",4516.61,"{""promo"": ""9%""}",175264,0,Europe +2024-10-14,13260,2184,"[""Keyboard""]",2284.32,"{""seasonal"": ""20%""}",137515,1,South America +2024-05-26,13261,2641,"[""Phone""]",2003.6,"{""loyalty"": ""9%""}",208942,0,Europe +2024-09-02,13262,7140,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",968.43,{},32409,0,South America +2023-04-29,13263,9848,"[""Charger"", ""Tablet""]",463.9,"{""promo"": ""27%""}",92912,0,South America +2023-06-01,13264,7099,"[""Wireless Mouse"", ""Headphones""]",2502.72,{},173603,1,Europe +2024-01-13,13265,8010,"[""Keyboard"", ""Laptop""]",3526.42,"{""loyalty"": ""18%""}",183402,0,Europe +2024-12-06,13266,5361,"[""Wireless Mouse""]",2606.43,{},167708,0,Asia +2023-10-24,13267,9473,"[""Headphones"", ""Phone""]",2276.52,{},193786,1,Africa +2024-09-13,13268,10000,"[""Keyboard""]",4799.01,{},178006,1,Europe +2023-10-26,13269,4385,"[""Phone""]",2022.15,{},251798,0,Asia +2024-02-01,13270,333,"[""Laptop"", ""Charger""]",1044.3,"{""loyalty"": ""21%""}",122501,1,South America +2023-12-18,13271,6423,"[""Laptop""]",2294.71,{},63187,1,North America +2024-12-21,13272,2726,"[""Monitor"", ""Headphones""]",4617.0,"{""seasonal"": ""6%""}",61066,0,North America +2024-06-10,13273,1344,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2616.03,"{""seasonal"": ""14%""}",78493,1,North America +2023-04-04,13274,195,"[""Tablet""]",317.62,"{"""": ""16%""}",153714,0,Africa +2024-08-21,13275,2468,"[""Phone"", ""Headphones"", ""Laptop""]",1227.11,"{""promo"": ""11%""}",208826,1,North America +2023-01-29,13276,2186,"[""Headphones"", ""Charger"", ""Keyboard""]",2689.59,"{""loyalty"": ""30%""}",24380,1,South America +2024-02-04,13277,7573,"[""Charger""]",4616.17,{},272044,0,Europe +2024-10-25,13278,8323,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3583.76,"{"""": ""13%""}",296696,0,South America +2024-05-30,13279,3809,"[""Keyboard"", ""Tablet"", ""Charger""]",953.38,{},40164,0,Africa +2023-10-29,13280,8138,"[""Wireless Mouse"", ""Phone""]",1262.82,{},90517,1,North America +2024-10-05,13281,9842,"[""Monitor""]",1497.11,"{"""": ""14%""}",184252,1,South America +2023-10-09,13282,8537,"[""Monitor""]",724.46,"{""loyalty"": ""11%""}",87918,1,Asia +2024-12-08,13283,1855,"[""Tablet""]",4090.31,"{""promo"": ""12%""}",55168,1,Europe +2024-06-23,13284,900,"[""Keyboard"", ""Headphones""]",2789.3,{},98343,0,Asia +2024-02-27,13285,3194,"[""Keyboard"", ""Tablet"", ""Laptop""]",3964.15,"{""promo"": ""11%""}",292755,0,South America +2023-11-30,13286,8142,"[""Charger"", ""Monitor"", ""Phone""]",2147.11,{},120672,0,North America +2024-08-26,13287,6379,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3296.56,{},90145,1,Europe +2024-10-21,13288,4199,"[""Charger""]",1997.2,"{"""": ""19%""}",114827,1,Africa +2024-09-06,13289,3798,"[""Charger"", ""Tablet""]",3239.99,{},95659,0,South America +2023-09-21,13290,2057,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3676.63,"{"""": ""11%""}",158733,0,South America +2023-06-22,13291,1050,"[""Tablet"", ""Monitor""]",656.95,"{""loyalty"": ""28%""}",15081,1,Asia +2024-01-31,13292,8270,"[""Keyboard"", ""Headphones"", ""Laptop""]",3810.75,{},255392,0,Asia +2024-02-03,13293,6845,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",505.52,{},223906,1,Asia +2024-09-22,13294,9379,"[""Wireless Mouse""]",2779.14,"{"""": ""23%""}",108810,1,North America +2023-05-28,13295,6339,"[""Headphones"", ""Wireless Mouse""]",580.21,"{""seasonal"": ""13%""}",193926,0,South America +2023-02-21,13296,8986,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2487.67,{},57963,1,South America +2024-11-23,13297,1584,"[""Laptop""]",3516.22,{},264978,1,North America +2024-12-19,13298,4523,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2814.67,{},134347,0,Asia +2023-10-12,13299,3698,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4642.35,"{""promo"": ""26%""}",136571,0,Europe +2024-10-28,13300,8929,"[""Keyboard""]",966.56,{},53152,1,Africa +2024-06-26,13301,1756,"[""Phone"", ""Tablet""]",4384.53,"{"""": ""28%""}",64328,1,South America +2023-05-18,13302,3549,"[""Keyboard"", ""Tablet""]",1240.35,{},218665,1,North America +2023-09-05,13303,8027,"[""Wireless Mouse""]",2097.3,{},47901,1,Asia +2024-09-26,13304,8428,"[""Tablet"", ""Headphones"", ""Phone""]",4890.96,{},65185,0,South America +2023-08-06,13305,536,"[""Monitor"", ""Laptop"", ""Headphones""]",2646.15,{},179878,0,Asia +2023-10-13,13306,570,"[""Phone"", ""Laptop""]",1838.33,{},181358,0,Asia +2024-11-12,13307,103,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1693.15,{},249007,0,Asia +2024-10-20,13308,3841,"[""Phone"", ""Tablet""]",288.17,"{"""": ""19%""}",270909,1,South America +2023-09-04,13309,1654,"[""Headphones"", ""Keyboard"", ""Laptop""]",1609.14,{},237006,0,North America +2024-12-28,13310,9945,"[""Monitor""]",2829.84,"{""seasonal"": ""12%""}",153438,1,North America +2024-04-26,13311,8153,"[""Charger"", ""Laptop"", ""Keyboard""]",4856.31,{},208916,1,North America +2023-04-11,13312,8603,"[""Laptop""]",277.31,"{""promo"": ""27%""}",176095,0,Africa +2024-06-08,13313,4523,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",674.55,"{""seasonal"": ""22%""}",187043,1,South America +2024-09-14,13314,2279,"[""Tablet""]",1382.82,{},92636,0,Africa +2023-06-16,13315,1144,"[""Headphones"", ""Monitor""]",1870.94,{},162431,0,Africa +2023-03-31,13316,4626,"[""Wireless Mouse"", ""Laptop""]",2389.22,"{""loyalty"": ""23%""}",153115,1,North America +2023-05-04,13317,8287,"[""Keyboard"", ""Tablet"", ""Charger""]",3423.48,{},9303,1,Asia +2023-03-04,13318,5924,"[""Phone"", ""Tablet""]",941.76,"{"""": ""11%""}",1395,0,South America +2023-05-02,13319,8342,"[""Tablet"", ""Phone"", ""Monitor""]",2766.03,"{""promo"": ""7%""}",69563,0,Africa +2023-03-19,13320,97,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1441.23,{},220723,1,Europe +2024-11-17,13321,5580,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3207.59,"{""loyalty"": ""9%""}",139910,0,South America +2023-02-20,13322,2326,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3373.98,{},141025,0,North America +2024-01-24,13323,2910,"[""Phone"", ""Charger"", ""Monitor""]",4415.0,"{""seasonal"": ""15%""}",60657,0,Africa +2023-02-17,13324,1356,"[""Phone"", ""Laptop""]",3891.77,"{"""": ""20%""}",188348,0,North America +2023-11-26,13325,9969,"[""Phone""]",569.85,{},235004,1,Asia +2024-10-21,13326,7961,"[""Tablet""]",2220.71,{},166958,1,South America +2023-08-10,13327,5254,"[""Tablet"", ""Wireless Mouse""]",4424.63,{},246308,1,South America +2023-09-01,13328,1421,"[""Headphones""]",2809.97,{},281729,1,Europe +2023-04-30,13329,4061,"[""Laptop"", ""Headphones""]",2559.34,{},120129,1,South America +2024-12-27,13330,5257,"[""Wireless Mouse""]",811.94,"{"""": ""7%""}",72786,0,Europe +2023-10-21,13331,3497,"[""Keyboard""]",2143.72,{},24339,0,South America +2024-03-12,13332,7560,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1348.0,{},97387,0,Europe +2024-11-27,13333,5380,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2917.07,{},125671,0,Europe +2024-01-09,13334,7415,"[""Phone"", ""Tablet""]",2048.89,"{""loyalty"": ""27%""}",283206,0,Europe +2024-07-20,13335,4183,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4933.03,"{""seasonal"": ""17%""}",294626,1,South America +2023-08-14,13336,9939,"[""Charger"", ""Phone""]",119.81,{},123268,0,Asia +2023-09-06,13337,3397,"[""Phone""]",4012.87,"{""promo"": ""17%""}",149696,1,Africa +2023-05-21,13338,3698,"[""Keyboard""]",2470.96,"{""loyalty"": ""30%""}",21366,0,Europe +2024-08-26,13339,1527,"[""Headphones"", ""Laptop""]",1394.69,{},238289,0,North America +2023-12-21,13340,4372,"[""Headphones"", ""Keyboard""]",3783.75,{},163590,1,Asia +2024-01-10,13341,5622,"[""Headphones"", ""Monitor"", ""Charger""]",4786.63,"{""loyalty"": ""11%""}",14891,1,South America +2024-03-11,13342,9749,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2664.05,"{""seasonal"": ""9%""}",223452,1,North America +2024-08-29,13343,3899,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3385.52,{},186403,0,North America +2023-05-29,13344,720,"[""Headphones"", ""Laptop"", ""Keyboard""]",4416.1,"{""seasonal"": ""23%""}",47355,0,South America +2023-11-05,13345,6100,"[""Phone"", ""Charger""]",4566.34,{},291604,1,South America +2023-10-09,13346,1450,"[""Keyboard""]",4672.94,{},180982,0,Africa +2023-04-23,13347,1549,"[""Laptop"", ""Tablet""]",1928.92,"{""promo"": ""12%""}",58416,1,North America +2023-05-13,13348,1675,"[""Monitor""]",2337.2,"{""seasonal"": ""30%""}",16646,0,South America +2023-01-28,13349,139,"[""Charger"", ""Phone"", ""Headphones""]",2424.55,"{"""": ""12%""}",15168,1,Europe +2024-05-11,13350,9904,"[""Tablet""]",540.87,{},156506,0,Africa +2023-05-22,13351,2541,"[""Laptop"", ""Tablet""]",4515.64,{},258998,1,Europe +2024-09-30,13352,643,"[""Keyboard"", ""Phone""]",4881.97,{},202202,1,South America +2024-08-11,13353,1497,"[""Keyboard"", ""Phone"", ""Tablet""]",4694.01,{},211635,1,Africa +2023-07-15,13354,9041,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",643.94,"{""promo"": ""26%""}",166920,0,South America +2023-03-22,13355,4974,"[""Charger""]",4545.93,"{"""": ""14%""}",238648,0,North America +2024-11-15,13356,2533,"[""Laptop"", ""Keyboard""]",1531.49,"{"""": ""29%""}",158744,0,Europe +2023-04-10,13357,3053,"[""Phone""]",527.63,{},236123,0,Asia +2024-08-28,13358,5776,"[""Phone""]",2111.51,"{"""": ""11%""}",278720,1,Europe +2024-10-10,13359,6844,"[""Keyboard""]",4885.44,{},74810,1,Africa +2024-07-29,13360,3984,"[""Wireless Mouse""]",2192.95,"{""seasonal"": ""11%""}",69838,0,North America +2023-06-21,13361,2025,"[""Headphones"", ""Monitor""]",91.54,{},3398,1,Europe +2023-01-22,13362,9938,"[""Keyboard"", ""Headphones""]",1462.77,"{""loyalty"": ""6%""}",192214,0,South America +2024-07-09,13363,8847,"[""Laptop"", ""Wireless Mouse""]",2274.63,{},72359,0,Europe +2024-06-29,13364,7779,"[""Wireless Mouse""]",4274.48,{},57922,0,North America +2024-06-03,13365,5850,"[""Monitor""]",1890.51,{},216096,1,Asia +2024-08-14,13366,8745,"[""Tablet""]",2034.46,{},83602,0,North America +2023-08-02,13367,5883,"[""Keyboard""]",2265.61,{},270249,1,Africa +2024-12-15,13368,5903,"[""Phone"", ""Monitor""]",2567.47,"{"""": ""13%""}",41499,0,Europe +2023-12-08,13369,2866,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3902.65,{},121453,1,Africa +2024-01-07,13370,7096,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2632.33,{},145824,1,North America +2024-08-08,13371,9143,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3941.91,{},241337,1,Africa +2024-04-03,13372,7480,"[""Tablet""]",3415.55,{},265269,1,Africa +2024-01-30,13373,1566,"[""Tablet"", ""Charger"", ""Keyboard""]",4843.41,{},222936,0,South America +2023-12-11,13374,8003,"[""Phone"", ""Monitor""]",841.67,{},133095,1,Asia +2023-03-24,13375,9653,"[""Headphones"", ""Charger"", ""Tablet""]",3467.72,{},163635,1,Europe +2023-11-04,13376,1098,"[""Charger""]",2821.19,{},267020,0,South America +2024-05-27,13377,4978,"[""Keyboard"", ""Tablet""]",2365.11,"{""promo"": ""23%""}",246511,0,South America +2023-12-05,13378,7997,"[""Laptop""]",4848.52,{},291117,0,South America +2023-01-20,13379,3563,"[""Tablet""]",720.95,"{""seasonal"": ""27%""}",60319,0,Europe +2024-12-01,13380,1232,"[""Headphones"", ""Phone"", ""Laptop""]",4592.39,{},153624,1,Africa +2023-02-15,13381,1932,"[""Monitor""]",858.75,{},235715,1,Africa +2024-12-19,13382,5277,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",535.67,"{"""": ""8%""}",108231,1,South America +2023-09-12,13383,2959,"[""Phone"", ""Laptop"", ""Headphones""]",4925.39,{},245458,1,Europe +2024-11-28,13384,559,"[""Charger"", ""Monitor""]",4235.24,"{""promo"": ""29%""}",138426,0,South America +2024-11-03,13385,3718,"[""Wireless Mouse""]",1944.39,"{""loyalty"": ""28%""}",281422,0,Africa +2023-05-12,13386,5095,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1618.24,"{"""": ""7%""}",267430,0,Africa +2023-04-26,13387,4658,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4233.67,"{""loyalty"": ""12%""}",21611,0,Asia +2023-03-06,13388,6458,"[""Laptop"", ""Monitor"", ""Charger""]",2368.34,{},281287,0,Africa +2024-09-24,13389,3321,"[""Monitor""]",2940.27,{},63948,0,Asia +2024-03-04,13390,3917,"[""Headphones""]",2538.24,{},112023,0,Africa +2023-08-30,13391,8303,"[""Monitor""]",1495.81,"{""seasonal"": ""21%""}",280777,1,Asia +2024-10-01,13392,6671,"[""Phone"", ""Keyboard""]",3836.51,"{""loyalty"": ""21%""}",196609,1,North America +2023-11-28,13393,9831,"[""Charger""]",4112.13,{},122414,0,Asia +2023-07-29,13394,9914,"[""Headphones"", ""Laptop"", ""Phone""]",3293.45,"{""loyalty"": ""29%""}",61632,1,Africa +2024-08-26,13395,3933,"[""Keyboard""]",1237.8,{},277940,1,North America +2023-03-16,13396,8595,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1965.23,"{""loyalty"": ""5%""}",80043,1,Europe +2023-07-10,13397,71,"[""Charger""]",2831.86,{},235630,1,Asia +2024-09-28,13398,2308,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4426.28,{},145835,1,North America +2023-05-21,13399,5679,"[""Monitor""]",426.92,"{""promo"": ""17%""}",227545,0,Africa +2023-12-30,13400,8462,"[""Tablet""]",2299.63,"{""seasonal"": ""10%""}",36318,0,Europe +2023-06-04,13401,1247,"[""Phone"", ""Laptop"", ""Tablet""]",166.27,"{""seasonal"": ""24%""}",1268,0,South America +2024-12-29,13402,5290,"[""Keyboard"", ""Laptop"", ""Tablet""]",2135.28,"{"""": ""13%""}",50467,1,North America +2023-03-22,13403,4358,"[""Monitor"", ""Keyboard""]",1545.55,{},253040,1,Africa +2023-01-15,13404,7114,"[""Charger""]",2478.2,"{""loyalty"": ""7%""}",218873,1,South America +2024-07-09,13405,5507,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1767.38,"{""promo"": ""17%""}",13733,0,Africa +2024-08-23,13406,9873,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2426.25,{},77193,1,South America +2024-09-13,13407,6433,"[""Wireless Mouse""]",4764.25,{},119467,1,Africa +2024-02-26,13408,8116,"[""Keyboard"", ""Tablet"", ""Laptop""]",2110.6,"{""promo"": ""26%""}",129749,0,South America +2023-07-14,13409,8725,"[""Headphones""]",775.51,"{"""": ""30%""}",151994,1,Asia +2023-11-15,13410,127,"[""Laptop"", ""Headphones"", ""Keyboard""]",4190.11,"{""seasonal"": ""10%""}",63944,0,North America +2024-08-29,13411,3445,"[""Phone"", ""Charger""]",2691.58,{},248668,0,North America +2023-06-02,13412,7711,"[""Monitor""]",3096.51,"{""seasonal"": ""28%""}",290605,1,Asia +2023-09-04,13413,1467,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1452.18,"{""seasonal"": ""16%""}",1807,0,North America +2024-08-13,13414,9143,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3678.51,"{"""": ""20%""}",63199,0,North America +2024-01-09,13415,7550,"[""Wireless Mouse""]",4223.54,{},201034,1,Asia +2024-08-20,13416,5704,"[""Laptop""]",2516.3,{},108783,1,Europe +2023-10-21,13417,8029,"[""Headphones"", ""Phone"", ""Tablet""]",4984.15,"{""loyalty"": ""25%""}",52619,1,Europe +2024-12-14,13418,6645,"[""Charger"", ""Keyboard"", ""Monitor""]",3985.82,"{""promo"": ""29%""}",171013,1,Africa +2024-02-10,13419,3867,"[""Monitor""]",1339.83,"{""loyalty"": ""28%""}",269332,1,North America +2024-08-01,13420,2990,"[""Keyboard"", ""Charger"", ""Laptop""]",1967.98,"{""seasonal"": ""12%""}",295091,0,South America +2024-06-08,13421,1611,"[""Wireless Mouse""]",4062.46,"{""loyalty"": ""6%""}",26062,0,South America +2023-06-17,13422,3391,"[""Charger"", ""Tablet""]",363.3,"{""promo"": ""9%""}",178961,1,Asia +2024-01-07,13423,1533,"[""Charger""]",4324.63,"{"""": ""17%""}",82828,1,Asia +2024-01-12,13424,3297,"[""Tablet""]",1971.83,{},225726,1,South America +2024-08-21,13425,4658,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",178.01,{},102152,0,South America +2024-06-01,13426,4544,"[""Phone""]",4534.42,{},112919,1,South America +2024-03-31,13427,9243,"[""Phone"", ""Laptop""]",3521.21,"{""loyalty"": ""10%""}",105906,0,Asia +2024-06-20,13428,4649,"[""Charger"", ""Laptop""]",1600.99,{},245550,0,Europe +2023-06-05,13429,4721,"[""Phone"", ""Laptop"", ""Tablet""]",634.56,"{""promo"": ""18%""}",156659,0,Asia +2023-11-10,13430,9085,"[""Headphones"", ""Tablet""]",4205.09,{},194865,1,North America +2024-12-28,13431,5572,"[""Laptop""]",4264.05,"{"""": ""19%""}",166960,1,Africa +2024-01-10,13432,8098,"[""Laptop"", ""Monitor""]",4529.77,{},98243,0,Europe +2024-07-20,13433,8200,"[""Tablet"", ""Keyboard""]",179.31,{},7951,0,North America +2024-04-08,13434,8705,"[""Headphones""]",4579.23,"{"""": ""21%""}",260753,0,Europe +2023-05-30,13435,8053,"[""Headphones"", ""Tablet"", ""Phone""]",113.56,"{""loyalty"": ""25%""}",234994,0,North America +2023-07-19,13436,5567,"[""Tablet"", ""Phone""]",1475.9,{},169747,1,Europe +2023-08-16,13437,209,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",701.57,"{""promo"": ""23%""}",182983,1,Europe +2023-12-17,13438,4280,"[""Laptop"", ""Tablet""]",1610.93,"{""promo"": ""10%""}",64408,1,Africa +2024-02-21,13439,8424,"[""Charger"", ""Laptop"", ""Tablet""]",3196.42,{},227059,0,Africa +2024-08-08,13440,2088,"[""Phone"", ""Headphones"", ""Laptop""]",3023.72,{},220661,1,South America +2024-05-06,13441,1321,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2462.58,{},105637,0,South America +2023-02-13,13442,7546,"[""Laptop"", ""Monitor"", ""Charger""]",2358.25,{},87972,0,Africa +2024-11-16,13443,3789,"[""Wireless Mouse""]",4777.65,"{"""": ""15%""}",194301,0,South America +2024-01-02,13444,6376,"[""Tablet"", ""Phone"", ""Monitor""]",4460.67,"{""promo"": ""20%""}",146699,0,Europe +2024-04-01,13445,8678,"[""Wireless Mouse"", ""Charger""]",4678.47,"{"""": ""22%""}",63735,0,Asia +2024-04-27,13446,9251,"[""Keyboard"", ""Wireless Mouse""]",3332.78,"{""loyalty"": ""20%""}",157853,0,Asia +2024-03-13,13447,2042,"[""Monitor"", ""Charger""]",1488.9,{},126160,1,Europe +2023-04-07,13448,5588,"[""Phone""]",2779.8,{},140253,1,South America +2023-08-23,13449,8802,"[""Phone""]",2508.24,"{"""": ""15%""}",253431,1,Africa +2023-12-02,13450,2942,"[""Monitor"", ""Keyboard""]",2143.46,"{""seasonal"": ""24%""}",179933,1,Europe +2023-12-04,13451,3554,"[""Charger""]",2450.92,{},72950,0,South America +2023-11-28,13452,9475,"[""Keyboard"", ""Phone"", ""Headphones""]",4809.54,"{""promo"": ""17%""}",208118,0,South America +2024-07-03,13453,3236,"[""Tablet"", ""Headphones""]",3564.04,{},159507,1,North America +2024-07-13,13454,8435,"[""Phone"", ""Headphones""]",2229.13,"{""seasonal"": ""9%""}",95948,1,Europe +2024-04-03,13455,2888,"[""Laptop""]",1831.13,{},155488,0,Africa +2023-09-12,13456,3376,"[""Tablet""]",3970.91,"{"""": ""7%""}",140087,0,Africa +2023-04-20,13457,5793,"[""Tablet""]",3120.32,{},37996,1,Africa +2023-06-17,13458,3652,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2952.73,{},19554,1,Africa +2024-01-13,13459,6801,"[""Keyboard""]",1984.22,{},285921,0,South America +2023-06-04,13460,2527,"[""Keyboard""]",3324.8,"{""loyalty"": ""16%""}",147152,1,Asia +2023-04-17,13461,9518,"[""Laptop""]",4440.03,{},142325,0,Africa +2023-06-05,13462,4961,"[""Monitor"", ""Phone""]",2894.86,{},232721,0,Europe +2023-12-09,13463,1915,"[""Charger""]",309.44,"{""loyalty"": ""26%""}",30369,0,North America +2024-11-23,13464,9474,"[""Wireless Mouse""]",4677.34,"{""loyalty"": ""27%""}",12063,1,North America +2023-03-30,13465,4679,"[""Headphones"", ""Wireless Mouse""]",611.88,{},137179,1,Asia +2024-11-19,13466,739,"[""Monitor""]",1677.61,{},58568,0,Europe +2024-04-20,13467,153,"[""Tablet""]",880.68,"{""seasonal"": ""23%""}",36306,0,Europe +2024-06-10,13468,8450,"[""Tablet""]",4626.84,"{""seasonal"": ""12%""}",92027,1,Africa +2024-06-08,13469,898,"[""Laptop""]",424.98,{},65063,0,Asia +2023-11-11,13470,7852,"[""Monitor"", ""Charger""]",2944.2,"{""loyalty"": ""18%""}",66159,1,Asia +2023-01-22,13471,1094,"[""Headphones""]",2208.1,"{""promo"": ""15%""}",263386,1,Africa +2023-07-28,13472,9885,"[""Monitor""]",612.24,{},85471,1,North America +2023-10-27,13473,7997,"[""Keyboard""]",683.08,{},70272,0,South America +2023-01-14,13474,8290,"[""Charger"", ""Tablet""]",977.58,{},139755,1,Africa +2023-02-18,13475,9074,"[""Keyboard""]",3822.91,"{"""": ""11%""}",192339,1,Africa +2024-01-08,13476,7173,"[""Wireless Mouse"", ""Keyboard""]",1513.79,"{""seasonal"": ""18%""}",195257,1,Europe +2024-09-05,13477,786,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2194.96,"{""loyalty"": ""17%""}",257460,1,South America +2024-01-29,13478,9574,"[""Phone"", ""Tablet"", ""Keyboard""]",1630.21,"{""promo"": ""14%""}",14191,0,Europe +2023-10-09,13479,6487,"[""Headphones"", ""Keyboard""]",4970.48,{},118532,0,Asia +2024-01-16,13480,667,"[""Laptop""]",1739.35,"{"""": ""19%""}",52547,0,South America +2024-09-26,13481,4648,"[""Charger"", ""Monitor"", ""Tablet""]",3143.63,{},145305,1,Asia +2023-01-11,13482,5733,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3976.3,{},92636,1,South America +2023-10-06,13483,4340,"[""Phone""]",1247.55,{},223492,0,North America +2023-10-24,13484,3737,"[""Monitor"", ""Phone"", ""Tablet""]",137.79,"{""loyalty"": ""15%""}",139502,1,Africa +2024-02-17,13485,3423,"[""Tablet"", ""Keyboard""]",2613.03,{},192319,0,North America +2023-06-24,13486,2583,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3470.68,"{"""": ""19%""}",107698,0,South America +2024-02-07,13487,8135,"[""Headphones"", ""Monitor""]",2934.31,{},47635,1,South America +2024-12-03,13488,8833,"[""Monitor"", ""Charger""]",1393.46,{},270222,1,North America +2024-09-23,13489,6584,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",276.92,"{""seasonal"": ""20%""}",210944,1,North America +2023-08-02,13490,5760,"[""Laptop"", ""Phone"", ""Tablet""]",2216.76,{},18741,1,Europe +2024-12-01,13491,2124,"[""Laptop"", ""Keyboard"", ""Charger""]",1727.21,{},49824,1,Europe +2024-07-28,13492,7240,"[""Tablet"", ""Charger"", ""Keyboard""]",4525.01,"{""loyalty"": ""19%""}",231886,1,Europe +2024-04-03,13493,3713,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",911.22,"{"""": ""12%""}",280936,0,Asia +2023-04-06,13494,7028,"[""Wireless Mouse""]",1934.08,{},252619,1,Africa +2023-06-27,13495,6007,"[""Wireless Mouse""]",4919.9,"{""seasonal"": ""13%""}",196409,0,Europe +2023-06-26,13496,8237,"[""Phone"", ""Tablet"", ""Charger""]",2848.62,"{""promo"": ""15%""}",63805,1,Asia +2023-03-10,13497,4038,"[""Tablet"", ""Laptop""]",470.81,{},298230,1,Asia +2024-11-28,13498,2598,"[""Laptop"", ""Monitor"", ""Headphones""]",4890.72,{},238697,1,North America +2023-12-24,13499,1247,"[""Tablet""]",645.17,{},107551,0,South America +2024-01-31,13500,3808,"[""Wireless Mouse"", ""Headphones""]",2913.73,{},40002,0,Africa +2023-12-14,13501,3833,"[""Monitor""]",4039.83,"{""loyalty"": ""23%""}",76822,1,Europe +2023-10-23,13502,563,"[""Charger""]",1506.92,{},127726,1,North America +2023-06-18,13503,8648,"[""Monitor"", ""Laptop""]",4908.22,{},277063,0,North America +2024-04-08,13504,7999,"[""Headphones""]",2694.95,{},298233,0,Europe +2024-05-11,13505,1119,"[""Laptop"", ""Headphones""]",4375.71,"{"""": ""11%""}",255125,0,Europe +2024-08-17,13506,1815,"[""Laptop""]",547.59,{},267441,1,Asia +2024-05-15,13507,2288,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4828.14,{},167757,0,Europe +2023-04-20,13508,3195,"[""Phone"", ""Laptop""]",2840.64,{},237227,1,Africa +2024-08-01,13509,3988,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4786.64,{},216131,1,Africa +2024-12-09,13510,2610,"[""Charger"", ""Keyboard"", ""Tablet""]",3250.5,"{""promo"": ""11%""}",282173,0,Europe +2023-08-24,13511,3044,"[""Phone"", ""Tablet"", ""Monitor""]",3328.84,"{""promo"": ""25%""}",272474,1,Africa +2024-03-14,13512,321,"[""Laptop""]",4413.99,{},40710,0,South America +2024-03-10,13513,4545,"[""Headphones"", ""Laptop"", ""Tablet""]",2180.59,{},99274,0,North America +2023-12-07,13514,6605,"[""Tablet""]",1024.33,"{""loyalty"": ""8%""}",295455,0,Asia +2023-01-31,13515,3083,"[""Charger"", ""Headphones""]",3696.98,"{""loyalty"": ""8%""}",275678,0,North America +2023-10-05,13516,7775,"[""Tablet"", ""Charger""]",654.92,"{"""": ""16%""}",90046,1,Africa +2024-11-06,13517,2538,"[""Keyboard"", ""Headphones"", ""Tablet""]",4873.67,{},24863,0,Europe +2024-07-29,13518,9355,"[""Headphones""]",4110.32,{},14225,1,Africa +2023-01-13,13519,6622,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2389.87,{},148100,0,South America +2024-10-16,13520,2584,"[""Charger"", ""Laptop""]",1217.36,{},133083,0,Asia +2023-09-26,13521,2501,"[""Phone"", ""Wireless Mouse"", ""Charger""]",734.95,"{""seasonal"": ""7%""}",3684,1,South America +2023-10-10,13522,550,"[""Laptop"", ""Wireless Mouse""]",4973.33,"{"""": ""15%""}",204162,1,North America +2024-08-19,13523,9195,"[""Laptop""]",3846.6,"{""loyalty"": ""13%""}",271591,1,South America +2023-01-03,13524,7434,"[""Tablet"", ""Monitor""]",2758.9,"{""seasonal"": ""28%""}",250648,1,Europe +2024-03-31,13525,1024,"[""Tablet""]",4338.16,"{""loyalty"": ""11%""}",182868,0,Europe +2023-11-14,13526,6400,"[""Laptop"", ""Charger""]",2797.91,"{""promo"": ""20%""}",243134,0,Europe +2023-11-06,13527,9887,"[""Laptop""]",3166.28,{},292856,0,Africa +2023-05-24,13528,9799,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",164.88,"{""loyalty"": ""28%""}",291115,0,Europe +2023-03-10,13529,6584,"[""Laptop""]",3577.04,{},12469,0,Africa +2023-10-27,13530,6419,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2474.85,{},96250,0,North America +2023-09-07,13531,9480,"[""Charger""]",3109.56,{},294928,0,Africa +2024-06-06,13532,9328,"[""Monitor"", ""Tablet""]",2152.72,{},116375,1,Asia +2023-03-21,13533,6983,"[""Phone""]",1248.37,{},209105,0,North America +2023-03-09,13534,8441,"[""Laptop""]",1791.16,"{""promo"": ""26%""}",106119,1,Asia +2023-06-03,13535,3475,"[""Headphones"", ""Monitor"", ""Tablet""]",2220.01,"{""loyalty"": ""7%""}",91695,0,Europe +2023-04-08,13536,6057,"[""Laptop"", ""Headphones"", ""Keyboard""]",1477.16,"{"""": ""7%""}",29041,0,South America +2024-11-18,13537,3446,"[""Phone""]",1490.71,{},280674,0,South America +2024-04-17,13538,6775,"[""Laptop"", ""Monitor""]",1348.93,{},123175,0,Africa +2024-04-05,13539,5142,"[""Monitor"", ""Wireless Mouse""]",2200.52,"{""loyalty"": ""14%""}",213980,1,North America +2024-05-20,13540,9628,"[""Keyboard"", ""Laptop"", ""Headphones""]",2776.36,"{""loyalty"": ""5%""}",228784,1,Europe +2024-12-16,13541,2352,"[""Charger"", ""Headphones"", ""Phone""]",2723.11,{},12063,0,Asia +2023-03-17,13542,7055,"[""Monitor"", ""Headphones"", ""Laptop""]",2104.62,{},258910,1,Europe +2023-12-21,13543,4935,"[""Tablet""]",1538.48,{},45338,1,North America +2023-12-24,13544,5012,"[""Headphones"", ""Wireless Mouse""]",4525.63,{},115362,0,North America +2023-04-05,13545,5017,"[""Keyboard""]",390.1,"{""promo"": ""5%""}",140810,1,Asia +2023-05-09,13546,6607,"[""Charger"", ""Phone""]",4708.55,"{""loyalty"": ""12%""}",192798,1,Africa +2023-08-29,13547,7076,"[""Laptop"", ""Tablet""]",1636.4,{},217367,1,Africa +2024-01-23,13548,8805,"[""Phone"", ""Charger""]",716.76,"{""promo"": ""6%""}",124456,1,South America +2024-08-14,13549,6542,"[""Charger""]",4951.33,"{""promo"": ""13%""}",109071,0,Asia +2023-10-08,13550,2523,"[""Laptop"", ""Charger""]",129.49,"{""promo"": ""26%""}",10625,1,North America +2023-03-30,13551,3342,"[""Charger""]",3625.42,"{""seasonal"": ""11%""}",105437,1,Asia +2023-02-03,13552,6035,"[""Monitor"", ""Phone""]",4521.49,{},296770,0,South America +2023-09-16,13553,7563,"[""Laptop"", ""Monitor""]",2903.39,"{""seasonal"": ""10%""}",275256,0,North America +2023-04-26,13554,985,"[""Tablet"", ""Phone""]",2192.52,{},44694,1,North America +2023-05-26,13555,6408,"[""Phone"", ""Keyboard"", ""Monitor""]",640.14,{},73865,0,North America +2023-05-04,13556,9685,"[""Wireless Mouse""]",939.99,"{""loyalty"": ""23%""}",28267,1,North America +2024-02-15,13557,5496,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2817.84,{},276643,1,Europe +2023-03-21,13558,5225,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2230.79,"{""promo"": ""10%""}",17962,1,Europe +2023-07-04,13559,2847,"[""Charger""]",961.19,"{""loyalty"": ""16%""}",298869,0,Africa +2024-10-22,13560,349,"[""Phone""]",1469.38,"{"""": ""20%""}",28649,1,Europe +2024-07-15,13561,3273,"[""Laptop"", ""Charger""]",4024.6,{},43601,1,North America +2023-05-06,13562,8472,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1072.26,{},118402,0,South America +2024-07-18,13563,6250,"[""Keyboard"", ""Charger""]",681.75,{},236928,1,South America +2024-11-20,13564,450,"[""Charger"", ""Headphones"", ""Tablet""]",4729.76,{},134246,1,Africa +2024-04-19,13565,3283,"[""Phone"", ""Headphones""]",2908.86,{},5396,0,Africa +2023-04-26,13566,1943,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3502.38,"{""seasonal"": ""13%""}",196799,1,Europe +2024-10-19,13567,3362,"[""Keyboard""]",4402.5,"{"""": ""29%""}",96222,0,North America +2024-12-29,13568,1198,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1848.98,"{""loyalty"": ""20%""}",105109,0,North America +2023-12-09,13569,1124,"[""Charger"", ""Keyboard"", ""Phone""]",1557.71,{},73012,1,Asia +2023-01-25,13570,7285,"[""Monitor"", ""Headphones"", ""Phone""]",2928.86,"{""seasonal"": ""13%""}",125576,1,Africa +2023-07-12,13571,5714,"[""Laptop"", ""Headphones"", ""Tablet""]",1151.63,"{""promo"": ""15%""}",213349,1,Europe +2023-06-16,13572,2962,"[""Keyboard"", ""Wireless Mouse""]",1876.37,{},72610,0,North America +2023-09-17,13573,1348,"[""Laptop""]",4712.15,"{""promo"": ""24%""}",13530,1,Africa +2023-05-23,13574,6579,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3392.52,{},102404,0,North America +2023-02-23,13575,3841,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",696.65,"{""seasonal"": ""13%""}",139966,0,Europe +2023-07-27,13576,7879,"[""Keyboard""]",796.85,"{"""": ""15%""}",203704,1,Asia +2023-12-29,13577,2134,"[""Headphones"", ""Keyboard""]",4409.03,{},160007,0,South America +2023-05-21,13578,355,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1397.32,{},185461,0,North America +2023-04-12,13579,3920,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1207.09,"{"""": ""8%""}",126341,1,Asia +2024-06-23,13580,8896,"[""Tablet"", ""Keyboard"", ""Charger""]",206.66,"{"""": ""13%""}",154080,0,North America +2024-08-17,13581,892,"[""Laptop"", ""Wireless Mouse""]",2083.34,"{""seasonal"": ""16%""}",140290,1,Asia +2024-05-19,13582,1738,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3860.14,"{""loyalty"": ""15%""}",203163,0,South America +2023-09-10,13583,4936,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4897.35,"{""loyalty"": ""6%""}",219950,0,Asia +2024-06-10,13584,8377,"[""Keyboard"", ""Tablet""]",4165.96,"{""seasonal"": ""27%""}",180590,0,Asia +2024-06-11,13585,9272,"[""Keyboard"", ""Headphones"", ""Tablet""]",3289.38,"{""loyalty"": ""15%""}",1629,1,Asia +2023-02-21,13586,3789,"[""Keyboard""]",3497.71,{},116815,0,South America +2024-09-16,13587,8545,"[""Keyboard"", ""Tablet"", ""Phone""]",1079.69,{},135727,0,Asia +2024-02-28,13588,1179,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4589.46,{},175688,1,South America +2024-07-26,13589,5668,"[""Headphones"", ""Monitor"", ""Laptop""]",291.47,"{"""": ""14%""}",294689,1,Asia +2023-06-15,13590,5523,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2135.16,"{""promo"": ""13%""}",102815,0,North America +2024-10-27,13591,740,"[""Headphones""]",1166.89,"{""seasonal"": ""11%""}",39996,0,North America +2023-04-25,13592,3329,"[""Laptop"", ""Headphones""]",4527.37,"{""seasonal"": ""27%""}",266702,1,Asia +2023-09-13,13593,7800,"[""Charger""]",3293.22,{},152822,0,South America +2023-07-27,13594,7276,"[""Headphones"", ""Wireless Mouse""]",2992.47,{},144112,0,Asia +2024-11-11,13595,9898,"[""Laptop"", ""Charger"", ""Headphones""]",1026.61,"{""loyalty"": ""18%""}",31226,1,Europe +2024-08-27,13596,8039,"[""Keyboard""]",3291.47,"{""seasonal"": ""30%""}",18029,0,North America +2023-04-17,13597,5003,"[""Laptop""]",2111.58,{},102925,1,South America +2023-11-17,13598,5958,"[""Phone""]",4057.17,{},279471,1,North America +2024-04-25,13599,1781,"[""Keyboard""]",3594.02,{},219307,0,Africa +2024-06-12,13600,5056,"[""Laptop"", ""Wireless Mouse""]",4327.91,{},240690,0,North America +2024-07-12,13601,1659,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3606.25,"{"""": ""26%""}",166409,0,North America +2024-06-21,13602,7583,"[""Wireless Mouse"", ""Phone""]",4761.41,{},15174,1,Asia +2024-03-27,13603,2670,"[""Tablet"", ""Headphones""]",1216.24,{},281129,1,Africa +2023-10-12,13604,4293,"[""Phone"", ""Monitor"", ""Keyboard""]",1320.42,"{""seasonal"": ""17%""}",144650,1,Asia +2023-06-07,13605,9232,"[""Tablet"", ""Keyboard"", ""Phone""]",222.34,"{"""": ""26%""}",215004,1,North America +2024-02-26,13606,2349,"[""Headphones""]",1438.37,{},263406,1,Africa +2024-01-04,13607,7499,"[""Phone"", ""Laptop""]",2118.51,{},224347,0,Asia +2023-01-10,13608,8316,"[""Headphones"", ""Phone"", ""Laptop""]",2044.97,"{""loyalty"": ""20%""}",253744,0,North America +2023-11-22,13609,1810,"[""Tablet"", ""Laptop"", ""Phone""]",3944.63,"{""promo"": ""22%""}",110037,1,Asia +2024-05-11,13610,5879,"[""Tablet""]",559.09,"{""loyalty"": ""21%""}",129059,1,Asia +2023-03-02,13611,4043,"[""Wireless Mouse"", ""Charger""]",2390.85,{},184949,0,North America +2023-11-11,13612,2309,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2542.68,{},296872,1,North America +2023-01-05,13613,6347,"[""Monitor"", ""Laptop""]",3648.76,"{""promo"": ""26%""}",50740,0,Asia +2023-03-20,13614,785,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3611.93,"{""seasonal"": ""28%""}",40088,0,Asia +2024-04-20,13615,1880,"[""Keyboard"", ""Charger""]",1324.86,{},115461,0,North America +2023-01-24,13616,5249,"[""Tablet"", ""Laptop""]",597.97,{},277460,1,Asia +2024-01-27,13617,5906,"[""Headphones"", ""Laptop""]",2269.79,{},217367,0,North America +2023-05-20,13618,1353,"[""Headphones""]",2349.0,{},25987,1,North America +2023-01-04,13619,4397,"[""Tablet"", ""Phone""]",3271.23,{},53837,0,Africa +2023-08-10,13620,4236,"[""Headphones""]",927.44,{},271870,0,Africa +2024-08-23,13621,2652,"[""Wireless Mouse"", ""Keyboard""]",2413.76,"{"""": ""27%""}",48664,1,Europe +2024-01-27,13622,616,"[""Keyboard"", ""Tablet""]",287.88,"{"""": ""28%""}",227648,0,South America +2023-02-21,13623,6697,"[""Monitor"", ""Keyboard"", ""Laptop""]",4711.14,{},191627,0,South America +2023-02-26,13624,9558,"[""Keyboard"", ""Monitor"", ""Headphones""]",1066.05,"{""promo"": ""16%""}",137334,1,Europe +2024-01-01,13625,7439,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1941.13,"{"""": ""16%""}",55666,0,Asia +2024-08-05,13626,2240,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1579.75,{},78403,1,Africa +2024-04-02,13627,7015,"[""Monitor""]",4170.39,{},72291,1,Africa +2024-10-02,13628,564,"[""Keyboard"", ""Charger""]",2514.44,"{""loyalty"": ""6%""}",81688,1,South America +2024-03-29,13629,1988,"[""Tablet"", ""Headphones"", ""Laptop""]",2677.87,"{""seasonal"": ""18%""}",124587,1,North America +2024-05-24,13630,8235,"[""Laptop"", ""Phone""]",2495.37,{},57119,1,Europe +2023-01-06,13631,4542,"[""Keyboard"", ""Laptop""]",4857.18,"{"""": ""8%""}",261534,1,Europe +2023-08-02,13632,5881,"[""Wireless Mouse""]",3360.02,"{"""": ""20%""}",281239,0,South America +2024-06-10,13633,7533,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1059.29,{},13151,0,Asia +2024-03-06,13634,7840,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4035.95,{},2592,1,Asia +2023-01-16,13635,6373,"[""Tablet"", ""Laptop"", ""Charger""]",1248.66,{},19818,0,Africa +2023-04-29,13636,4151,"[""Phone""]",3016.92,"{""promo"": ""11%""}",132291,0,Africa +2023-01-15,13637,2515,"[""Phone"", ""Charger"", ""Laptop""]",1630.63,{},261794,1,Europe +2024-02-28,13638,9191,"[""Monitor"", ""Laptop"", ""Keyboard""]",967.81,"{""seasonal"": ""16%""}",115715,0,Asia +2023-06-13,13639,4717,"[""Monitor"", ""Keyboard""]",360.73,"{"""": ""11%""}",55492,0,South America +2024-08-09,13640,8502,"[""Monitor""]",3378.2,{},102056,0,North America +2024-01-28,13641,8256,"[""Keyboard"", ""Charger"", ""Monitor""]",1736.23,"{""promo"": ""25%""}",151104,0,North America +2023-09-14,13642,6261,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4815.59,"{""seasonal"": ""17%""}",276156,0,Europe +2023-11-13,13643,2944,"[""Monitor"", ""Charger"", ""Tablet""]",4979.14,{},11421,1,Africa +2024-06-14,13644,3777,"[""Charger"", ""Keyboard""]",3164.19,"{"""": ""30%""}",232454,1,South America +2024-09-19,13645,1066,"[""Monitor"", ""Laptop""]",4064.95,"{"""": ""24%""}",223087,1,Africa +2023-06-24,13646,5002,"[""Monitor"", ""Charger""]",4689.69,"{""seasonal"": ""24%""}",211249,0,Africa +2023-05-17,13647,7793,"[""Monitor"", ""Wireless Mouse""]",953.86,{},204780,1,Africa +2024-12-14,13648,7024,"[""Laptop"", ""Phone""]",4519.72,{},277376,1,Europe +2023-10-28,13649,5710,"[""Headphones"", ""Keyboard""]",3836.21,{},276830,1,Europe +2023-05-04,13650,2909,"[""Monitor"", ""Laptop"", ""Tablet""]",1099.39,{},238564,0,Europe +2024-01-19,13651,2171,"[""Phone""]",1090.83,"{""loyalty"": ""24%""}",182657,0,North America +2024-06-23,13652,2274,"[""Tablet"", ""Laptop""]",2989.07,{},78132,0,Europe +2023-01-15,13653,5930,"[""Keyboard""]",569.94,"{""loyalty"": ""22%""}",15760,1,South America +2024-05-11,13654,4936,"[""Headphones"", ""Phone"", ""Tablet""]",3743.24,"{"""": ""27%""}",57304,1,Asia +2023-12-24,13655,6507,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2034.58,"{""loyalty"": ""25%""}",109386,0,Africa +2023-03-18,13656,3289,"[""Tablet""]",928.5,{},244120,1,Europe +2023-02-20,13657,7496,"[""Keyboard"", ""Phone""]",4724.87,{},140127,1,Africa +2024-04-03,13658,5184,"[""Keyboard"", ""Monitor"", ""Laptop""]",2104.47,{},186058,0,North America +2023-05-23,13659,8797,"[""Monitor""]",3579.95,"{"""": ""6%""}",1225,0,North America +2023-04-28,13660,9298,"[""Laptop""]",4004.71,{},107149,1,Europe +2023-03-07,13661,9818,"[""Charger"", ""Headphones""]",2609.32,"{"""": ""24%""}",178698,1,Asia +2024-06-21,13662,770,"[""Headphones""]",4639.52,"{"""": ""19%""}",283917,0,Europe +2024-12-23,13663,2923,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1240.01,{},266907,1,Africa +2023-09-11,13664,7625,"[""Keyboard"", ""Monitor""]",298.71,{},272036,1,Europe +2024-08-11,13665,3479,"[""Tablet"", ""Laptop""]",1220.33,"{""promo"": ""5%""}",234097,0,Africa +2023-06-29,13666,4528,"[""Tablet""]",755.4,{},232386,1,Europe +2024-05-11,13667,4207,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1556.25,"{""loyalty"": ""10%""}",209390,0,North America +2023-12-17,13668,7,"[""Laptop"", ""Monitor"", ""Tablet""]",2161.63,"{"""": ""30%""}",141909,1,South America +2023-09-14,13669,5830,"[""Laptop"", ""Tablet""]",1713.2,"{"""": ""14%""}",286525,1,Asia +2023-10-20,13670,1779,"[""Tablet"", ""Laptop"", ""Phone""]",1460.56,{},90410,1,Africa +2024-09-14,13671,7583,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2149.43,{},114601,1,North America +2023-04-29,13672,3337,"[""Laptop""]",253.12,"{""loyalty"": ""16%""}",119090,1,Europe +2023-09-11,13673,1578,"[""Phone"", ""Headphones"", ""Keyboard""]",3856.21,"{""promo"": ""19%""}",281461,0,South America +2023-10-18,13674,1398,"[""Laptop"", ""Keyboard"", ""Monitor""]",967.88,{},194722,1,South America +2023-04-22,13675,5011,"[""Charger"", ""Keyboard""]",2777.99,{},29649,1,South America +2023-08-12,13676,3044,"[""Monitor"", ""Keyboard"", ""Phone""]",4233.06,"{"""": ""18%""}",15570,1,South America +2024-05-31,13677,1809,"[""Charger""]",4769.08,{},265440,0,Africa +2023-11-12,13678,6192,"[""Phone"", ""Keyboard""]",4527.02,{},88365,0,Europe +2024-07-10,13679,876,"[""Headphones"", ""Charger""]",1702.16,"{"""": ""21%""}",131960,0,Asia +2023-12-09,13680,1656,"[""Laptop"", ""Phone"", ""Tablet""]",4252.48,{},174320,0,North America +2024-12-28,13681,6452,"[""Tablet"", ""Phone""]",3813.99,{},270038,1,North America +2024-03-31,13682,7353,"[""Phone"", ""Headphones""]",3896.6,"{""seasonal"": ""24%""}",262184,1,Europe +2023-12-27,13683,1127,"[""Monitor"", ""Tablet""]",4622.88,"{""seasonal"": ""27%""}",98121,1,Asia +2023-11-02,13684,3625,"[""Phone""]",2127.68,"{""loyalty"": ""13%""}",171202,0,South America +2024-10-30,13685,9643,"[""Monitor""]",3694.13,"{""loyalty"": ""26%""}",72316,1,Africa +2024-07-03,13686,8835,"[""Wireless Mouse""]",1440.36,{},285133,1,Europe +2023-11-23,13687,3255,"[""Monitor"", ""Phone"", ""Laptop""]",4118.55,"{""promo"": ""22%""}",270415,1,North America +2024-08-01,13688,9269,"[""Charger""]",960.43,"{""promo"": ""13%""}",77760,1,South America +2023-07-19,13689,9747,"[""Laptop"", ""Tablet""]",3130.77,{},93799,0,Europe +2023-11-20,13690,5866,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3527.46,{},82222,0,Europe +2024-12-07,13691,5466,"[""Wireless Mouse""]",1236.14,"{"""": ""14%""}",232918,0,North America +2023-12-11,13692,1693,"[""Laptop"", ""Headphones""]",889.15,{},186563,0,Asia +2024-10-04,13693,687,"[""Monitor""]",3825.43,{},184365,0,North America +2024-11-26,13694,489,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1964.09,"{""promo"": ""22%""}",253362,0,North America +2024-06-11,13695,5938,"[""Tablet"", ""Keyboard"", ""Laptop""]",1083.6,"{""loyalty"": ""24%""}",180960,0,Europe +2024-10-26,13696,7601,"[""Monitor""]",4200.85,"{""promo"": ""14%""}",73152,0,Europe +2023-06-13,13697,4238,"[""Phone"", ""Headphones"", ""Tablet""]",3195.76,{},12100,0,Europe +2024-11-01,13698,4051,"[""Phone"", ""Tablet""]",4089.7,{},60259,0,Africa +2023-09-27,13699,6075,"[""Monitor"", ""Wireless Mouse""]",1801.37,"{""seasonal"": ""11%""}",183422,1,North America +2023-06-17,13700,9173,"[""Laptop"", ""Charger"", ""Headphones""]",1313.58,"{""promo"": ""11%""}",245517,0,Africa +2023-01-11,13701,1921,"[""Monitor""]",3389.19,{},107344,1,Asia +2023-01-28,13702,4578,"[""Headphones""]",4504.46,{},298445,1,Europe +2024-09-04,13703,7448,"[""Tablet"", ""Headphones"", ""Laptop""]",4848.4,"{"""": ""14%""}",95749,0,Africa +2023-12-15,13704,2046,"[""Headphones"", ""Charger"", ""Phone""]",4860.04,{},220631,1,South America +2023-09-28,13705,7009,"[""Monitor""]",3899.97,{},173720,0,Europe +2023-03-30,13706,4176,"[""Laptop"", ""Keyboard"", ""Phone""]",191.23,"{""loyalty"": ""23%""}",73753,1,South America +2024-06-04,13707,3012,"[""Headphones""]",750.47,"{""promo"": ""12%""}",214726,1,Europe +2024-09-29,13708,3630,"[""Charger"", ""Wireless Mouse""]",1494.53,"{""seasonal"": ""10%""}",60274,1,Europe +2023-12-28,13709,602,"[""Wireless Mouse""]",1767.02,"{""seasonal"": ""28%""}",237207,0,North America +2023-01-21,13710,360,"[""Charger""]",4036.94,{},175580,1,North America +2023-10-12,13711,6984,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3269.16,"{""promo"": ""14%""}",62239,1,South America +2024-12-27,13712,8364,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3508.1,"{""promo"": ""9%""}",28117,1,Asia +2024-03-01,13713,7645,"[""Phone"", ""Monitor"", ""Laptop""]",3592.72,"{"""": ""10%""}",289020,0,North America +2024-06-01,13714,5619,"[""Headphones"", ""Laptop""]",2808.27,{},222295,1,Africa +2024-07-04,13715,2128,"[""Monitor""]",4679.23,"{""promo"": ""30%""}",127812,0,North America +2024-10-01,13716,6392,"[""Laptop"", ""Tablet""]",3723.79,{},254934,1,Asia +2024-10-17,13717,3673,"[""Tablet"", ""Headphones""]",1181.99,"{""promo"": ""8%""}",109727,1,North America +2024-10-03,13718,4544,"[""Wireless Mouse""]",2981.48,{},36733,0,South America +2023-08-20,13719,6580,"[""Laptop"", ""Wireless Mouse""]",2544.76,"{"""": ""22%""}",20513,1,Africa +2023-04-10,13720,4124,"[""Monitor"", ""Keyboard""]",4656.68,{},293472,1,Europe +2024-08-27,13721,62,"[""Phone""]",521.69,{},24632,0,North America +2023-05-27,13722,3588,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",356.48,"{""promo"": ""7%""}",84753,0,South America +2023-09-21,13723,5364,"[""Wireless Mouse""]",3812.02,{},39232,0,Europe +2024-12-02,13724,6661,"[""Laptop"", ""Monitor""]",2113.43,"{"""": ""23%""}",235379,0,Asia +2023-09-12,13725,8845,"[""Keyboard"", ""Headphones"", ""Tablet""]",2705.33,"{"""": ""6%""}",22410,1,Europe +2023-05-20,13726,2803,"[""Keyboard""]",722.37,{},241354,0,Asia +2024-12-27,13727,6520,"[""Tablet"", ""Keyboard""]",2822.23,{},251609,1,North America +2024-05-20,13728,4923,"[""Monitor""]",128.5,"{""loyalty"": ""29%""}",199316,1,North America +2024-06-29,13729,9725,"[""Tablet""]",318.35,"{""promo"": ""23%""}",173337,1,Europe +2024-08-14,13730,3368,"[""Phone"", ""Tablet""]",1109.81,"{""seasonal"": ""14%""}",63826,1,North America +2024-05-22,13731,4350,"[""Headphones"", ""Keyboard"", ""Laptop""]",3354.39,"{""promo"": ""19%""}",294458,1,Asia +2024-02-25,13732,8452,"[""Keyboard"", ""Charger"", ""Monitor""]",1227.35,"{""seasonal"": ""15%""}",170429,0,Africa +2024-05-20,13733,6070,"[""Phone"", ""Keyboard"", ""Monitor""]",268.02,"{""promo"": ""11%""}",249791,1,Asia +2023-02-18,13734,6788,"[""Keyboard""]",1143.91,"{""seasonal"": ""16%""}",6075,1,Europe +2024-03-14,13735,2262,"[""Headphones"", ""Phone""]",2104.84,{},290535,0,North America +2023-02-06,13736,2943,"[""Headphones""]",4355.55,{},242182,0,Europe +2023-12-02,13737,4386,"[""Laptop"", ""Keyboard""]",4168.88,{},96877,0,Africa +2023-03-20,13738,5698,"[""Laptop""]",4001.72,"{"""": ""5%""}",247606,0,South America +2023-12-14,13739,4144,"[""Tablet"", ""Headphones"", ""Laptop""]",477.89,"{""loyalty"": ""12%""}",19523,1,Europe +2023-08-14,13740,8666,"[""Tablet"", ""Keyboard""]",1891.95,{},117819,0,Asia +2024-04-04,13741,2960,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",264.05,"{"""": ""25%""}",245976,1,Asia +2024-10-30,13742,3348,"[""Charger"", ""Phone""]",3954.32,{},230279,0,Europe +2023-04-06,13743,9697,"[""Wireless Mouse""]",4733.4,{},1497,0,Africa +2023-02-10,13744,9384,"[""Wireless Mouse"", ""Headphones""]",1385.58,{},52481,1,Africa +2024-11-20,13745,6289,"[""Headphones"", ""Laptop"", ""Monitor""]",4348.1,"{""loyalty"": ""24%""}",235103,0,North America +2023-08-22,13746,2610,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4155.04,"{""promo"": ""23%""}",177336,1,North America +2023-04-30,13747,3746,"[""Charger""]",1565.99,{},235713,0,Asia +2023-06-05,13748,3395,"[""Wireless Mouse"", ""Monitor""]",3180.27,"{""seasonal"": ""29%""}",208012,0,South America +2024-03-17,13749,4247,"[""Phone""]",4384.76,{},122515,1,North America +2023-01-15,13750,896,"[""Laptop"", ""Tablet""]",4631.86,"{""loyalty"": ""18%""}",86576,1,Africa +2023-07-06,13751,8932,"[""Monitor""]",868.03,{},265828,0,North America +2024-06-27,13752,9859,"[""Keyboard"", ""Phone""]",4749.6,"{""promo"": ""7%""}",79780,1,Europe +2024-03-10,13753,5386,"[""Monitor"", ""Charger"", ""Keyboard""]",1101.03,"{""promo"": ""16%""}",209181,1,North America +2023-11-24,13754,2391,"[""Laptop"", ""Keyboard""]",487.6,"{"""": ""30%""}",173978,1,Europe +2024-02-10,13755,3709,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2663.37,"{""loyalty"": ""13%""}",152597,1,Africa +2024-04-21,13756,986,"[""Wireless Mouse"", ""Monitor""]",3873.84,"{""promo"": ""23%""}",284900,0,Asia +2024-08-14,13757,9423,"[""Phone"", ""Headphones"", ""Charger""]",4823.06,{},180476,0,Africa +2024-04-14,13758,8508,"[""Monitor""]",2943.55,"{""seasonal"": ""11%""}",96560,1,Asia +2024-09-17,13759,5183,"[""Monitor""]",1051.18,{},70178,1,Europe +2024-02-09,13760,2848,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2359.9,{},93870,0,South America +2024-11-22,13761,1637,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1550.15,{},277192,0,South America +2024-08-07,13762,2693,"[""Charger"", ""Keyboard"", ""Tablet""]",3205.36,{},148059,1,South America +2024-02-04,13763,111,"[""Tablet"", ""Laptop"", ""Phone""]",2848.27,"{""promo"": ""9%""}",106359,0,Europe +2023-07-25,13764,8549,"[""Laptop""]",3904.53,{},296961,0,Asia +2024-07-28,13765,1651,"[""Phone""]",4727.55,"{""promo"": ""6%""}",35031,1,North America +2024-05-24,13766,2321,"[""Keyboard"", ""Monitor""]",4342.28,{},127397,1,Asia +2023-12-19,13767,8649,"[""Wireless Mouse""]",513.36,{},197090,0,Africa +2023-07-28,13768,728,"[""Tablet"", ""Laptop""]",2928.45,{},299565,1,Africa +2023-09-17,13769,2957,"[""Headphones"", ""Phone""]",689.23,{},3449,0,Asia +2024-03-20,13770,2001,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2589.13,{},255877,1,Africa +2024-04-13,13771,9984,"[""Headphones"", ""Monitor""]",3808.13,"{""promo"": ""12%""}",129866,1,Asia +2024-03-10,13772,1801,"[""Tablet""]",1343.61,"{""seasonal"": ""22%""}",241635,0,North America +2023-12-28,13773,1319,"[""Tablet"", ""Wireless Mouse""]",4602.06,{},208806,0,Africa +2024-01-22,13774,8228,"[""Laptop"", ""Tablet"", ""Monitor""]",1582.22,{},265300,1,Europe +2023-11-07,13775,2814,"[""Wireless Mouse"", ""Monitor""]",343.84,{},26261,0,Asia +2024-12-22,13776,6577,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2048.43,{},14800,1,North America +2024-12-03,13777,6646,"[""Headphones"", ""Laptop""]",2585.0,{},136919,1,South America +2023-03-29,13778,2322,"[""Laptop""]",875.74,"{""promo"": ""18%""}",62578,0,South America +2024-09-13,13779,9361,"[""Tablet"", ""Laptop""]",4406.03,"{"""": ""21%""}",191619,1,Asia +2024-07-07,13780,122,"[""Laptop""]",191.56,{},88765,1,South America +2024-05-23,13781,7453,"[""Phone""]",1674.78,"{""seasonal"": ""26%""}",143884,0,Europe +2024-11-10,13782,9108,"[""Wireless Mouse"", ""Monitor""]",1999.29,"{""seasonal"": ""28%""}",250098,1,South America +2024-05-31,13783,2274,"[""Monitor"", ""Keyboard"", ""Laptop""]",1357.26,"{"""": ""14%""}",60436,1,South America +2023-06-04,13784,6800,"[""Tablet"", ""Headphones""]",4292.74,{},199265,0,Africa +2023-12-02,13785,6056,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2313.09,{},276510,1,North America +2024-02-14,13786,4801,"[""Charger"", ""Laptop""]",1792.49,"{""loyalty"": ""28%""}",65760,0,Africa +2023-07-15,13787,8461,"[""Laptop""]",3670.08,{},95422,0,North America +2023-02-19,13788,4999,"[""Headphones"", ""Monitor"", ""Keyboard""]",2497.19,"{""seasonal"": ""29%""}",121846,0,Europe +2023-11-13,13789,4013,"[""Charger"", ""Monitor"", ""Keyboard""]",4558.12,{},148012,0,North America +2024-09-18,13790,4263,"[""Monitor""]",2218.58,"{""seasonal"": ""26%""}",4732,0,North America +2024-07-12,13791,2782,"[""Laptop"", ""Phone""]",3550.8,"{""seasonal"": ""30%""}",26774,0,Europe +2023-11-27,13792,1316,"[""Phone""]",4428.95,{},50282,1,Europe +2023-09-05,13793,1427,"[""Phone"", ""Tablet"", ""Keyboard""]",3442.11,{},283833,0,North America +2023-01-27,13794,5845,"[""Wireless Mouse""]",904.55,{},145080,0,Africa +2024-05-30,13795,763,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1749.98,"{""seasonal"": ""6%""}",226975,0,South America +2023-12-23,13796,9429,"[""Phone""]",2872.93,"{""seasonal"": ""20%""}",44391,1,Asia +2023-10-06,13797,2643,"[""Monitor"", ""Charger""]",2497.42,{},82399,1,Africa +2024-04-23,13798,9434,"[""Keyboard""]",1108.77,"{"""": ""9%""}",256038,1,Europe +2024-05-13,13799,2280,"[""Phone""]",783.05,{},128697,1,Africa +2024-07-04,13800,6861,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3172.49,"{""loyalty"": ""17%""}",126536,0,Europe +2024-09-08,13801,9246,"[""Laptop""]",4039.91,{},151758,0,Africa +2024-01-15,13802,4744,"[""Laptop"", ""Monitor""]",2346.65,"{""promo"": ""6%""}",100573,0,Africa +2024-04-07,13803,6126,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2380.57,"{"""": ""27%""}",267135,1,Africa +2024-12-02,13804,4114,"[""Keyboard""]",4961.94,"{""seasonal"": ""21%""}",211275,1,Asia +2023-08-21,13805,2433,"[""Monitor"", ""Wireless Mouse""]",1112.31,{},167634,1,Asia +2023-06-02,13806,1364,"[""Tablet"", ""Laptop"", ""Keyboard""]",700.94,{},84300,1,North America +2024-12-05,13807,8203,"[""Laptop"", ""Keyboard""]",870.38,{},89821,0,Asia +2023-08-22,13808,7573,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",833.74,"{""seasonal"": ""29%""}",2693,1,Asia +2024-05-10,13809,8617,"[""Headphones"", ""Laptop""]",4513.15,"{""loyalty"": ""23%""}",259835,1,Africa +2024-12-10,13810,4533,"[""Laptop"", ""Phone"", ""Keyboard""]",2637.36,"{"""": ""26%""}",260308,0,Asia +2023-07-24,13811,6936,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4734.86,"{"""": ""16%""}",150077,0,Europe +2023-03-16,13812,6724,"[""Laptop"", ""Phone"", ""Monitor""]",1592.09,"{""seasonal"": ""22%""}",63836,1,Asia +2023-01-28,13813,5138,"[""Monitor""]",4138.79,{},118141,0,Europe +2023-04-21,13814,183,"[""Tablet""]",800.54,{},135627,0,North America +2024-07-15,13815,3663,"[""Phone""]",572.62,"{""seasonal"": ""8%""}",250132,1,North America +2024-08-04,13816,8555,"[""Keyboard"", ""Tablet""]",1281.04,{},252645,0,Africa +2024-08-07,13817,1386,"[""Wireless Mouse""]",1411.79,{},228189,1,Europe +2023-04-14,13818,2465,"[""Monitor"", ""Headphones""]",2707.68,"{"""": ""10%""}",44971,1,North America +2023-12-20,13819,2239,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3596.88,{},57593,1,Africa +2024-10-29,13820,377,"[""Wireless Mouse"", ""Phone""]",1100.15,{},33164,0,Asia +2023-02-06,13821,8679,"[""Phone""]",901.39,{},80510,0,Asia +2024-01-05,13822,2299,"[""Wireless Mouse""]",1911.63,"{""loyalty"": ""20%""}",231426,0,North America +2023-02-13,13823,4954,"[""Phone"", ""Laptop""]",2733.01,"{""loyalty"": ""12%""}",76443,1,Africa +2023-05-06,13824,202,"[""Phone""]",4093.61,{},190906,0,Africa +2024-06-14,13825,4849,"[""Phone"", ""Charger"", ""Keyboard""]",88.25,"{""loyalty"": ""23%""}",262946,0,South America +2023-05-10,13826,6243,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",844.04,{},243702,1,Asia +2024-08-20,13827,3748,"[""Keyboard""]",3595.92,"{""seasonal"": ""7%""}",168767,0,Africa +2024-08-12,13828,278,"[""Keyboard""]",1100.46,{},208288,0,Asia +2024-05-01,13829,3362,"[""Monitor"", ""Headphones"", ""Laptop""]",215.5,"{"""": ""17%""}",166294,1,South America +2023-06-20,13830,2812,"[""Charger"", ""Keyboard"", ""Phone""]",2669.89,"{""promo"": ""18%""}",103933,1,South America +2024-12-13,13831,22,"[""Headphones""]",1566.46,"{""promo"": ""25%""}",164228,0,Europe +2024-07-21,13832,222,"[""Monitor"", ""Charger""]",2260.6,{},152159,0,North America +2024-03-05,13833,9950,"[""Monitor"", ""Laptop""]",403.08,{},132665,0,North America +2023-03-26,13834,8840,"[""Phone""]",2646.04,{},94209,0,South America +2023-10-18,13835,8224,"[""Laptop"", ""Monitor""]",3973.08,"{""loyalty"": ""19%""}",8080,0,Europe +2023-11-05,13836,5848,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",677.43,{},110098,1,North America +2024-02-28,13837,7764,"[""Monitor"", ""Charger"", ""Laptop""]",4472.68,"{""loyalty"": ""6%""}",210643,0,South America +2023-10-04,13838,7325,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",721.13,"{""loyalty"": ""29%""}",243325,1,North America +2023-05-20,13839,918,"[""Wireless Mouse"", ""Charger""]",3414.53,"{"""": ""13%""}",149833,1,Africa +2024-10-26,13840,7734,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4588.22,{},161087,0,Africa +2024-08-23,13841,9341,"[""Wireless Mouse""]",3146.74,"{""seasonal"": ""30%""}",176921,1,Europe +2023-03-07,13842,6575,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4044.0,{},191196,0,South America +2024-07-23,13843,9179,"[""Keyboard"", ""Tablet"", ""Headphones""]",3161.32,{},50559,1,South America +2024-10-04,13844,1300,"[""Tablet"", ""Laptop""]",4221.79,"{""seasonal"": ""14%""}",262423,1,South America +2023-02-17,13845,5277,"[""Keyboard""]",3065.36,"{""seasonal"": ""14%""}",230384,0,Asia +2024-06-21,13846,8187,"[""Wireless Mouse""]",1654.34,"{""promo"": ""9%""}",144678,0,North America +2023-10-14,13847,7110,"[""Charger"", ""Tablet"", ""Phone""]",4985.41,"{""loyalty"": ""30%""}",59264,1,Asia +2023-04-26,13848,4736,"[""Laptop""]",3379.06,{},204862,1,Asia +2023-08-07,13849,6023,"[""Headphones"", ""Keyboard""]",1070.67,"{""seasonal"": ""12%""}",213285,1,Africa +2023-05-11,13850,1283,"[""Phone""]",4805.94,"{""seasonal"": ""6%""}",60668,1,Asia +2023-10-26,13851,6624,"[""Tablet"", ""Keyboard""]",2181.58,{},73748,0,South America +2023-12-09,13852,8856,"[""Phone"", ""Wireless Mouse""]",2033.62,"{""promo"": ""6%""}",157633,1,North America +2023-06-27,13853,8306,"[""Charger"", ""Keyboard"", ""Laptop""]",3629.61,"{""loyalty"": ""9%""}",218365,1,Asia +2024-09-21,13854,793,"[""Laptop""]",1931.39,"{""promo"": ""25%""}",223728,1,Europe +2024-12-20,13855,269,"[""Charger"", ""Headphones""]",729.05,{},149396,1,Asia +2024-07-15,13856,4454,"[""Headphones""]",4841.49,{},204760,1,Europe +2024-03-04,13857,8540,"[""Charger""]",4458.95,"{""promo"": ""23%""}",261366,1,Europe +2023-12-23,13858,8804,"[""Tablet""]",872.08,{},114610,1,Asia +2024-05-27,13859,9101,"[""Charger"", ""Laptop""]",2725.28,"{""promo"": ""21%""}",154409,0,South America +2023-01-14,13860,6249,"[""Monitor""]",4230.63,"{""promo"": ""15%""}",37153,1,Africa +2023-11-21,13861,796,"[""Monitor""]",3994.04,{},198416,0,North America +2023-10-09,13862,2665,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4711.01,"{""loyalty"": ""11%""}",152717,1,North America +2023-08-31,13863,3399,"[""Phone""]",294.4,"{""seasonal"": ""7%""}",161056,0,Europe +2024-12-01,13864,6724,"[""Headphones""]",3095.21,{},144599,1,South America +2024-05-03,13865,6157,"[""Headphones"", ""Laptop"", ""Charger""]",3209.05,{},149671,1,Africa +2023-11-25,13866,1888,"[""Monitor""]",508.17,"{"""": ""23%""}",207938,1,Africa +2023-06-06,13867,6334,"[""Charger"", ""Wireless Mouse""]",538.75,{},21300,0,North America +2023-01-07,13868,7717,"[""Headphones"", ""Wireless Mouse""]",4771.44,"{""promo"": ""12%""}",201539,1,South America +2023-03-01,13869,6868,"[""Phone""]",118.31,{},90804,1,North America +2024-11-16,13870,5337,"[""Tablet"", ""Headphones""]",4950.83,{},34052,1,North America +2023-12-25,13871,3023,"[""Tablet""]",108.85,"{"""": ""5%""}",167767,0,North America +2023-07-12,13872,897,"[""Charger"", ""Phone""]",4266.31,"{""seasonal"": ""19%""}",183911,1,South America +2023-12-19,13873,9388,"[""Charger"", ""Monitor""]",1331.78,"{""seasonal"": ""14%""}",13315,1,North America +2023-06-09,13874,5743,"[""Keyboard"", ""Phone""]",2542.95,{},86634,1,Asia +2023-10-20,13875,3948,"[""Tablet""]",1461.05,{},117404,1,North America +2023-06-30,13876,9230,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2566.59,"{""promo"": ""12%""}",168376,0,South America +2023-12-30,13877,3383,"[""Headphones"", ""Monitor"", ""Phone""]",3395.33,"{""seasonal"": ""16%""}",7452,0,Europe +2023-07-01,13878,5189,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1406.29,"{""seasonal"": ""27%""}",195161,0,Asia +2024-05-03,13879,2040,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3443.26,"{""loyalty"": ""26%""}",188398,0,Europe +2023-06-29,13880,7601,"[""Keyboard""]",2931.76,"{""seasonal"": ""11%""}",135396,1,South America +2023-10-30,13881,6094,"[""Wireless Mouse"", ""Charger""]",3589.19,{},199822,0,South America +2024-07-09,13882,3344,"[""Charger"", ""Tablet""]",1820.98,"{""loyalty"": ""11%""}",211328,0,North America +2024-12-15,13883,4455,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4034.79,{},35318,1,Africa +2023-04-23,13884,3704,"[""Keyboard"", ""Charger""]",2941.48,"{""seasonal"": ""16%""}",87749,0,Europe +2023-08-30,13885,232,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2786.18,{},47252,1,Europe +2024-07-14,13886,4642,"[""Wireless Mouse""]",2997.33,{},33599,0,Europe +2023-03-24,13887,179,"[""Keyboard"", ""Charger""]",4853.98,"{""promo"": ""8%""}",71792,1,Africa +2023-01-16,13888,9917,"[""Headphones"", ""Laptop""]",2661.18,"{""loyalty"": ""26%""}",267410,1,Asia +2023-04-14,13889,8019,"[""Phone""]",1231.25,"{"""": ""5%""}",46091,0,Asia +2023-07-07,13890,9939,"[""Phone""]",273.13,{},185678,1,North America +2023-05-23,13891,2179,"[""Tablet""]",2920.14,{},185870,1,North America +2023-02-25,13892,1865,"[""Headphones"", ""Charger""]",1380.62,{},53707,1,North America +2023-05-02,13893,4573,"[""Keyboard""]",4903.64,{},143904,0,North America +2023-10-10,13894,2489,"[""Monitor""]",4227.45,{},55069,1,South America +2023-08-31,13895,5799,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2158.74,{},236946,1,Africa +2023-10-13,13896,5404,"[""Monitor"", ""Headphones""]",3759.96,"{""loyalty"": ""8%""}",44041,0,Africa +2023-10-08,13897,1737,"[""Wireless Mouse""]",260.44,{},263177,1,Asia +2023-02-24,13898,954,"[""Tablet"", ""Headphones""]",525.3,"{""loyalty"": ""29%""}",208707,1,South America +2024-12-28,13899,7675,"[""Wireless Mouse"", ""Phone""]",1537.16,"{"""": ""10%""}",38584,0,North America +2023-07-17,13900,9830,"[""Headphones""]",388.75,"{""promo"": ""9%""}",175863,0,South America +2023-01-31,13901,6569,"[""Keyboard"", ""Headphones""]",3357.73,"{""promo"": ""20%""}",68887,1,South America +2023-01-22,13902,2135,"[""Phone"", ""Tablet"", ""Headphones""]",4613.38,{},16165,0,Africa +2024-06-13,13903,4155,"[""Keyboard"", ""Tablet""]",3046.14,"{"""": ""6%""}",210107,0,Asia +2023-09-13,13904,8595,"[""Wireless Mouse""]",2361.38,{},164218,1,Asia +2024-06-16,13905,2301,"[""Keyboard"", ""Headphones""]",3180.74,"{""seasonal"": ""8%""}",273484,0,Asia +2023-08-24,13906,9993,"[""Charger"", ""Headphones""]",1507.5,"{""promo"": ""25%""}",106396,0,South America +2023-11-25,13907,9107,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",573.04,"{""promo"": ""17%""}",106739,0,South America +2023-09-04,13908,9446,"[""Headphones""]",1925.8,"{""loyalty"": ""18%""}",259410,0,North America +2024-04-23,13909,8167,"[""Charger""]",2764.97,"{"""": ""17%""}",53066,1,Asia +2024-10-05,13910,7185,"[""Phone"", ""Wireless Mouse""]",734.86,{},16017,1,North America +2023-12-02,13911,304,"[""Tablet"", ""Headphones""]",3350.71,"{""loyalty"": ""17%""}",91548,0,Africa +2023-07-28,13912,9096,"[""Keyboard""]",1194.63,{},9028,1,North America +2024-11-07,13913,8055,"[""Wireless Mouse""]",204.93,"{"""": ""26%""}",26818,1,North America +2023-05-07,13914,1110,"[""Phone""]",2316.97,{},195402,1,Asia +2023-02-17,13915,4629,"[""Keyboard"", ""Phone"", ""Laptop""]",3828.25,"{"""": ""20%""}",88460,1,Africa +2024-12-11,13916,3907,"[""Headphones""]",480.89,"{""promo"": ""14%""}",16979,1,North America +2024-11-25,13917,9425,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2961.13,"{""seasonal"": ""27%""}",258015,0,Africa +2024-08-13,13918,3716,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",587.43,{},195813,0,Africa +2024-05-03,13919,4954,"[""Tablet""]",487.42,"{""seasonal"": ""25%""}",139753,0,Europe +2023-12-18,13920,7944,"[""Headphones"", ""Keyboard""]",1623.77,{},233944,1,Africa +2024-04-27,13921,5250,"[""Charger"", ""Keyboard""]",2960.28,"{""loyalty"": ""22%""}",239684,0,Asia +2024-08-14,13922,6165,"[""Headphones"", ""Monitor""]",601.15,{},23307,0,Asia +2023-11-22,13923,9891,"[""Headphones"", ""Monitor""]",3640.75,"{""loyalty"": ""15%""}",10894,0,Europe +2023-05-30,13924,4521,"[""Wireless Mouse"", ""Monitor""]",4959.02,{},47959,1,Asia +2023-01-12,13925,4831,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3435.87,"{""seasonal"": ""7%""}",23408,1,Africa +2023-08-13,13926,5343,"[""Phone"", ""Monitor""]",2010.95,{},76667,0,North America +2023-09-16,13927,9725,"[""Tablet""]",633.89,"{""loyalty"": ""9%""}",110519,1,Asia +2023-08-27,13928,1207,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3789.16,{},259889,0,South America +2023-12-24,13929,1554,"[""Keyboard""]",4965.76,"{""seasonal"": ""6%""}",78740,1,Asia +2024-10-04,13930,3291,"[""Wireless Mouse""]",4005.96,{},275252,0,North America +2024-08-06,13931,7295,"[""Keyboard""]",1538.83,"{"""": ""8%""}",147164,1,South America +2024-04-16,13932,873,"[""Headphones"", ""Monitor""]",4214.58,"{""promo"": ""8%""}",10594,0,South America +2024-07-06,13933,5836,"[""Headphones""]",1376.24,"{""loyalty"": ""27%""}",205289,1,North America +2024-07-13,13934,1804,"[""Tablet""]",1564.6,{},181103,0,South America +2023-11-10,13935,7995,"[""Monitor"", ""Keyboard"", ""Tablet""]",134.43,{},91493,1,Europe +2023-11-11,13936,7024,"[""Laptop"", ""Keyboard""]",3684.78,{},156799,0,Europe +2024-09-14,13937,8881,"[""Phone"", ""Keyboard""]",3541.71,{},146483,0,South America +2023-09-12,13938,9145,"[""Phone"", ""Charger"", ""Keyboard""]",1901.28,{},34789,1,Asia +2024-12-22,13939,3707,"[""Laptop"", ""Keyboard"", ""Headphones""]",2995.62,"{""promo"": ""28%""}",214284,0,Africa +2023-04-27,13940,694,"[""Wireless Mouse""]",4483.65,"{""seasonal"": ""16%""}",138800,0,North America +2024-05-22,13941,2230,"[""Tablet""]",4624.17,{},112156,1,Asia +2023-03-26,13942,7093,"[""Phone"", ""Charger""]",124.71,"{""seasonal"": ""8%""}",246679,1,Europe +2024-05-20,13943,5233,"[""Monitor""]",2904.41,{},188426,1,Asia +2024-09-30,13944,3252,"[""Wireless Mouse"", ""Monitor""]",4791.0,"{""loyalty"": ""6%""}",286394,1,Africa +2023-04-23,13945,5366,"[""Headphones""]",2834.26,"{""seasonal"": ""7%""}",196736,0,South America +2023-08-21,13946,6914,"[""Tablet""]",2304.23,{},61719,1,Africa +2024-09-05,13947,9770,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3569.4,{},76585,1,North America +2024-01-06,13948,8640,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2542.9,"{""loyalty"": ""26%""}",221609,0,North America +2024-06-27,13949,7726,"[""Laptop"", ""Wireless Mouse""]",4525.73,"{""seasonal"": ""12%""}",185990,1,South America +2024-07-06,13950,4324,"[""Laptop"", ""Headphones""]",1023.36,{},272717,0,Africa +2023-10-11,13951,3964,"[""Keyboard"", ""Tablet"", ""Monitor""]",865.48,"{""seasonal"": ""5%""}",223772,0,Africa +2024-03-23,13952,4948,"[""Wireless Mouse"", ""Monitor""]",1598.12,{},290459,1,South America +2024-08-06,13953,5182,"[""Tablet"", ""Headphones""]",457.21,{},233449,0,North America +2023-05-06,13954,2814,"[""Wireless Mouse""]",3992.93,{},249961,1,Africa +2023-04-17,13955,651,"[""Charger""]",2575.19,{},105294,0,Europe +2023-02-10,13956,8911,"[""Headphones""]",969.95,{},250755,1,Africa +2023-07-16,13957,2024,"[""Keyboard"", ""Monitor""]",4050.55,"{""seasonal"": ""20%""}",160989,0,North America +2024-01-25,13958,9771,"[""Wireless Mouse"", ""Tablet""]",1498.75,{},25030,0,Europe +2023-06-19,13959,8803,"[""Keyboard"", ""Laptop"", ""Headphones""]",1326.18,{},289435,0,North America +2024-01-25,13960,845,"[""Tablet"", ""Monitor"", ""Charger""]",3674.03,{},158794,0,Asia +2024-09-04,13961,6439,"[""Keyboard"", ""Laptop"", ""Monitor""]",2388.77,"{""loyalty"": ""28%""}",135468,0,Europe +2024-03-25,13962,5979,"[""Monitor"", ""Phone""]",4282.42,{},207443,1,Asia +2024-12-05,13963,4636,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",736.22,{},268560,0,South America +2023-01-25,13964,7439,"[""Headphones"", ""Keyboard""]",2290.41,"{""seasonal"": ""14%""}",98274,1,North America +2024-05-16,13965,208,"[""Keyboard""]",554.8,"{""seasonal"": ""7%""}",204284,0,Europe +2024-10-07,13966,3013,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1956.21,"{""promo"": ""10%""}",166896,0,North America +2023-08-31,13967,676,"[""Tablet"", ""Charger""]",2757.8,"{""seasonal"": ""7%""}",31371,0,South America +2023-08-20,13968,9841,"[""Keyboard"", ""Monitor""]",1260.24,"{""loyalty"": ""20%""}",230066,0,Europe +2023-03-30,13969,2288,"[""Phone""]",2465.68,"{""promo"": ""20%""}",33830,0,Asia +2023-11-05,13970,5421,"[""Laptop"", ""Monitor"", ""Charger""]",4557.62,{},85047,1,Africa +2024-01-24,13971,7561,"[""Tablet"", ""Monitor"", ""Phone""]",2714.79,{},153362,1,Asia +2023-02-25,13972,74,"[""Keyboard""]",3013.93,"{""seasonal"": ""18%""}",97097,1,Europe +2024-07-06,13973,3408,"[""Phone""]",2336.38,{},149766,0,South America +2023-04-29,13974,4206,"[""Phone"", ""Laptop""]",2672.8,"{""seasonal"": ""26%""}",163861,1,Asia +2023-08-13,13975,2515,"[""Headphones""]",750.95,"{""seasonal"": ""29%""}",203907,1,South America +2023-04-11,13976,1026,"[""Headphones""]",2583.37,{},174875,1,Asia +2023-07-30,13977,3152,"[""Keyboard""]",1281.33,{},142248,1,North America +2023-07-21,13978,7154,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4819.58,"{"""": ""16%""}",220886,1,South America +2023-12-16,13979,329,"[""Charger"", ""Phone"", ""Monitor""]",3261.63,"{""seasonal"": ""25%""}",284208,0,North America +2024-12-30,13980,733,"[""Laptop"", ""Monitor"", ""Tablet""]",2556.26,"{""loyalty"": ""11%""}",157732,1,South America +2024-02-09,13981,1465,"[""Wireless Mouse""]",3714.71,{},173943,0,North America +2023-02-02,13982,6236,"[""Monitor"", ""Laptop""]",2391.12,"{""promo"": ""9%""}",194237,1,North America +2023-01-09,13983,9247,"[""Monitor"", ""Keyboard""]",3004.7,"{""promo"": ""6%""}",256895,0,Africa +2023-06-23,13984,3648,"[""Tablet"", ""Monitor"", ""Charger""]",750.45,{},177138,0,Europe +2024-06-18,13985,8581,"[""Laptop"", ""Monitor"", ""Charger""]",191.54,"{""promo"": ""21%""}",59505,0,Asia +2023-11-03,13986,6761,"[""Keyboard"", ""Headphones""]",1031.72,"{""promo"": ""22%""}",74312,0,Europe +2024-05-21,13987,5606,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4979.22,"{""promo"": ""18%""}",152960,0,South America +2024-07-11,13988,845,"[""Phone"", ""Headphones"", ""Keyboard""]",1944.54,{},203342,0,Asia +2024-08-01,13989,5795,"[""Monitor"", ""Keyboard""]",4696.9,"{""loyalty"": ""20%""}",36859,0,Africa +2023-11-14,13990,9070,"[""Laptop"", ""Charger"", ""Phone""]",426.66,"{""promo"": ""17%""}",53410,1,Asia +2023-05-31,13991,3451,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2270.78,{},274200,0,Europe +2023-02-21,13992,3561,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2546.85,"{""promo"": ""21%""}",263062,0,South America +2024-01-10,13993,7010,"[""Monitor""]",2785.21,"{"""": ""9%""}",236898,1,Asia +2024-06-24,13994,9676,"[""Laptop"", ""Phone"", ""Charger""]",4212.49,"{""promo"": ""24%""}",179449,0,Asia +2024-12-16,13995,5365,"[""Charger"", ""Phone"", ""Monitor""]",4662.34,{},169355,1,Africa +2023-10-01,13996,4182,"[""Monitor"", ""Charger"", ""Keyboard""]",1256.08,"{""promo"": ""8%""}",34118,1,Europe +2023-01-30,13997,4068,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4277.28,{},51824,1,Africa +2024-11-10,13998,5804,"[""Monitor""]",1178.79,"{""loyalty"": ""13%""}",36924,1,Africa +2023-01-15,13999,1331,"[""Keyboard""]",2195.45,"{""promo"": ""8%""}",267157,0,South America +2024-08-22,14000,221,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3723.81,{},98467,1,Africa +2023-03-27,14001,5259,"[""Charger"", ""Wireless Mouse""]",3177.28,{},147614,1,South America +2024-01-07,14002,9783,"[""Tablet"", ""Headphones"", ""Laptop""]",2041.6,"{""seasonal"": ""22%""}",123622,0,Africa +2024-06-24,14003,6038,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2638.71,"{""loyalty"": ""22%""}",197196,0,Europe +2023-12-27,14004,1912,"[""Monitor"", ""Keyboard""]",2948.56,{},180471,0,South America +2024-05-27,14005,9311,"[""Keyboard""]",2108.46,{},190484,1,Africa +2023-05-01,14006,9841,"[""Charger"", ""Laptop""]",2287.18,"{""promo"": ""15%""}",211281,1,North America +2024-01-14,14007,5710,"[""Laptop""]",379.98,{},197146,1,Europe +2024-01-21,14008,4092,"[""Phone"", ""Laptop"", ""Monitor""]",646.25,{},53999,1,South America +2024-02-12,14009,4391,"[""Laptop"", ""Headphones"", ""Phone""]",4662.01,"{""loyalty"": ""9%""}",251393,1,Africa +2023-02-06,14010,5927,"[""Charger""]",1297.84,"{""promo"": ""28%""}",59452,1,Africa +2023-07-09,14011,9070,"[""Headphones"", ""Charger""]",3973.69,"{"""": ""25%""}",174279,0,North America +2023-05-19,14012,533,"[""Charger"", ""Laptop""]",4294.08,"{""seasonal"": ""14%""}",54269,1,Europe +2023-01-24,14013,5501,"[""Tablet""]",4453.29,"{""promo"": ""16%""}",206398,1,South America +2024-10-31,14014,1279,"[""Tablet"", ""Charger""]",638.59,"{""seasonal"": ""10%""}",8869,1,Africa +2023-05-12,14015,6706,"[""Charger"", ""Tablet""]",940.94,"{"""": ""14%""}",244631,1,Asia +2024-02-08,14016,7300,"[""Charger"", ""Headphones""]",3402.73,"{""seasonal"": ""20%""}",224404,0,Europe +2023-10-05,14017,1422,"[""Tablet"", ""Wireless Mouse""]",801.93,"{""loyalty"": ""30%""}",79813,0,South America +2024-08-01,14018,1903,"[""Monitor""]",4512.92,{},5922,0,South America +2024-07-03,14019,9741,"[""Laptop""]",4354.83,{},184982,1,South America +2024-03-16,14020,9022,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4027.66,{},224902,1,South America +2024-01-03,14021,3089,"[""Phone"", ""Charger""]",834.93,"{""promo"": ""25%""}",157321,1,Europe +2023-10-11,14022,488,"[""Tablet""]",1766.6,{},206194,0,Asia +2023-12-15,14023,2113,"[""Phone"", ""Monitor"", ""Laptop""]",2766.29,{},222638,0,Europe +2024-12-03,14024,863,"[""Headphones"", ""Phone""]",4195.83,"{""promo"": ""24%""}",206957,0,South America +2023-09-17,14025,7677,"[""Keyboard"", ""Tablet"", ""Phone""]",3836.16,"{""seasonal"": ""27%""}",15043,0,North America +2023-06-24,14026,5136,"[""Keyboard"", ""Tablet""]",4265.13,{},198268,0,Africa +2024-10-11,14027,8634,"[""Charger"", ""Tablet"", ""Keyboard""]",1044.32,{},83030,1,South America +2024-05-01,14028,6815,"[""Charger"", ""Tablet""]",3208.85,"{""loyalty"": ""19%""}",222930,1,Asia +2024-10-14,14029,2678,"[""Keyboard"", ""Laptop""]",2313.63,"{""seasonal"": ""5%""}",236794,0,Europe +2023-08-04,14030,4608,"[""Phone"", ""Laptop"", ""Keyboard""]",2855.22,"{"""": ""14%""}",260675,1,Africa +2024-09-22,14031,6569,"[""Monitor"", ""Laptop"", ""Headphones""]",4009.88,"{"""": ""6%""}",159188,1,Africa +2024-04-28,14032,4262,"[""Wireless Mouse""]",4127.43,{},10198,1,Africa +2024-07-22,14033,6246,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4341.35,"{""seasonal"": ""11%""}",60319,0,Europe +2024-03-24,14034,4527,"[""Keyboard""]",937.61,"{""promo"": ""18%""}",279957,1,Asia +2024-11-13,14035,4462,"[""Phone"", ""Tablet""]",4515.88,{},230733,0,Asia +2024-07-28,14036,2714,"[""Headphones""]",4400.71,{},199572,0,North America +2024-08-11,14037,1676,"[""Keyboard"", ""Charger"", ""Headphones""]",4628.52,"{""seasonal"": ""23%""}",248691,1,Europe +2023-01-05,14038,4316,"[""Laptop"", ""Keyboard""]",1285.79,"{""loyalty"": ""26%""}",267776,0,Asia +2024-10-19,14039,1548,"[""Charger""]",2214.73,{},58854,0,Africa +2024-01-02,14040,1901,"[""Wireless Mouse""]",1569.64,{},293590,0,Europe +2024-05-19,14041,2469,"[""Phone"", ""Laptop"", ""Charger""]",1254.34,"{"""": ""16%""}",299696,0,North America +2023-05-21,14042,7304,"[""Headphones"", ""Tablet""]",4671.08,"{"""": ""17%""}",158444,1,North America +2023-06-03,14043,2229,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3631.3,{},163145,1,Europe +2024-03-17,14044,8470,"[""Monitor""]",426.82,{},112085,0,Europe +2023-04-16,14045,7655,"[""Laptop"", ""Tablet""]",4110.55,{},54946,1,Asia +2024-09-05,14046,697,"[""Wireless Mouse"", ""Laptop""]",4980.46,{},174657,0,Asia +2023-03-20,14047,374,"[""Keyboard""]",2021.15,{},138983,1,Asia +2024-10-02,14048,4246,"[""Phone"", ""Keyboard""]",4753.01,{},131668,1,Europe +2024-09-21,14049,5060,"[""Charger""]",4183.82,"{""promo"": ""28%""}",215259,1,North America +2023-08-27,14050,8817,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",828.9,{},197787,0,Africa +2023-06-22,14051,5429,"[""Phone"", ""Keyboard""]",3457.32,{},131158,1,South America +2024-07-30,14052,5290,"[""Phone"", ""Monitor""]",401.74,{},163264,0,Europe +2023-07-25,14053,3523,"[""Laptop"", ""Phone""]",1949.44,"{""seasonal"": ""18%""}",130283,1,Europe +2024-02-13,14054,6951,"[""Charger"", ""Phone"", ""Laptop""]",870.16,{},161666,0,South America +2024-05-10,14055,4333,"[""Charger"", ""Laptop"", ""Keyboard""]",3089.22,{},280663,0,North America +2023-08-08,14056,2635,"[""Tablet""]",4605.59,{},206558,0,Europe +2024-08-04,14057,735,"[""Headphones"", ""Tablet""]",2222.69,{},293791,1,North America +2023-06-02,14058,1866,"[""Charger""]",300.07,{},230940,0,Europe +2023-06-28,14059,6550,"[""Charger"", ""Headphones"", ""Tablet""]",708.11,"{""promo"": ""30%""}",52386,0,Europe +2024-01-14,14060,2081,"[""Headphones"", ""Charger""]",1148.8,{},239279,1,Europe +2023-01-14,14061,6276,"[""Keyboard"", ""Monitor""]",3752.85,"{""seasonal"": ""9%""}",71810,0,North America +2024-03-26,14062,4916,"[""Keyboard""]",2235.24,{},129102,1,Africa +2023-11-06,14063,8575,"[""Keyboard"", ""Headphones""]",4550.62,{},275849,0,North America +2023-07-30,14064,5352,"[""Laptop"", ""Monitor""]",554.98,"{"""": ""22%""}",284394,0,Europe +2023-11-29,14065,1630,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",464.46,"{""seasonal"": ""7%""}",155763,0,North America +2024-04-02,14066,9938,"[""Keyboard"", ""Tablet""]",2545.45,"{""seasonal"": ""17%""}",1141,0,Asia +2023-04-15,14067,6981,"[""Laptop"", ""Tablet""]",4626.14,{},54733,1,Europe +2024-05-06,14068,5541,"[""Laptop""]",1896.61,{},205396,0,Asia +2023-11-02,14069,6155,"[""Tablet"", ""Headphones""]",3133.02,{},218227,0,North America +2024-04-04,14070,4008,"[""Phone"", ""Monitor""]",1400.22,"{""loyalty"": ""5%""}",104427,1,Europe +2023-06-16,14071,4779,"[""Monitor"", ""Headphones"", ""Laptop""]",2761.79,"{""seasonal"": ""15%""}",62795,0,Europe +2023-03-08,14072,2550,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1659.76,{},12307,0,Africa +2023-05-02,14073,1689,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1481.02,"{""seasonal"": ""18%""}",255467,0,South America +2024-03-13,14074,5053,"[""Keyboard""]",1868.08,{},104534,0,Africa +2024-06-07,14075,9984,"[""Charger""]",847.09,"{""seasonal"": ""9%""}",201536,0,Africa +2023-06-25,14076,1677,"[""Headphones""]",2355.07,{},156433,1,North America +2024-11-23,14077,9053,"[""Monitor"", ""Laptop"", ""Tablet""]",425.8,"{""loyalty"": ""27%""}",24455,1,Africa +2024-09-22,14078,1317,"[""Laptop"", ""Charger""]",640.48,"{""loyalty"": ""6%""}",172966,1,South America +2024-12-04,14079,4534,"[""Tablet"", ""Monitor"", ""Laptop""]",2147.97,{},163269,0,Europe +2023-11-11,14080,3047,"[""Keyboard"", ""Monitor""]",2713.5,"{""loyalty"": ""11%""}",260995,0,Africa +2023-02-20,14081,1773,"[""Monitor"", ""Headphones"", ""Charger""]",1934.59,{},54101,0,South America +2024-09-26,14082,8588,"[""Monitor"", ""Headphones""]",2755.92,{},24765,1,Europe +2023-09-09,14083,8925,"[""Wireless Mouse""]",1097.0,"{""seasonal"": ""6%""}",114876,1,Asia +2024-10-10,14084,3136,"[""Charger"", ""Tablet""]",456.75,{},100317,1,Europe +2024-05-22,14085,11,"[""Phone"", ""Charger""]",1495.36,"{""loyalty"": ""26%""}",147499,0,Asia +2024-05-30,14086,2327,"[""Keyboard""]",229.97,"{""promo"": ""19%""}",109992,1,Africa +2024-03-02,14087,2185,"[""Keyboard"", ""Tablet""]",1246.92,"{"""": ""17%""}",285323,1,Asia +2023-07-16,14088,2612,"[""Wireless Mouse"", ""Monitor""]",2207.64,"{""seasonal"": ""10%""}",252954,1,North America +2023-02-17,14089,4605,"[""Monitor"", ""Charger"", ""Headphones""]",4040.35,{},100546,0,Africa +2023-01-05,14090,2438,"[""Tablet"", ""Monitor""]",3728.2,{},57204,1,South America +2023-11-29,14091,2152,"[""Headphones"", ""Phone"", ""Laptop""]",4101.99,{},174963,0,Europe +2024-12-10,14092,2587,"[""Tablet"", ""Headphones""]",1393.45,"{""seasonal"": ""21%""}",89099,1,South America +2024-05-20,14093,3842,"[""Tablet"", ""Charger""]",2013.1,{},153420,1,Asia +2023-08-30,14094,9759,"[""Headphones"", ""Charger""]",3075.79,{},44551,1,South America +2024-01-19,14095,7235,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2954.81,{},88658,0,Asia +2024-11-27,14096,722,"[""Charger""]",1053.4,"{""seasonal"": ""19%""}",69302,0,South America +2024-12-30,14097,1660,"[""Headphones""]",4581.65,{},270605,0,Europe +2023-11-21,14098,2902,"[""Headphones""]",1247.64,{},107401,1,Asia +2024-01-14,14099,5883,"[""Keyboard"", ""Phone"", ""Tablet""]",876.88,{},187013,0,North America +2024-12-07,14100,1408,"[""Wireless Mouse""]",4126.62,"{""loyalty"": ""30%""}",145903,1,Asia +2023-09-06,14101,1146,"[""Monitor"", ""Keyboard"", ""Tablet""]",4370.05,{},103706,0,North America +2023-10-25,14102,8015,"[""Monitor""]",2029.19,"{""promo"": ""27%""}",178546,0,Europe +2023-06-05,14103,6821,"[""Monitor"", ""Tablet"", ""Laptop""]",2001.89,{},208081,0,North America +2023-11-15,14104,5910,"[""Monitor""]",2828.53,"{"""": ""13%""}",128756,0,Asia +2023-08-28,14105,7324,"[""Wireless Mouse""]",2836.15,{},186936,0,Asia +2024-03-26,14106,3603,"[""Laptop""]",3938.28,"{""seasonal"": ""14%""}",280877,1,North America +2023-07-05,14107,3022,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",72.46,{},255065,1,South America +2023-12-15,14108,6024,"[""Phone"", ""Charger""]",2819.43,"{""loyalty"": ""22%""}",298625,1,Africa +2023-07-17,14109,9899,"[""Tablet"", ""Phone""]",1582.18,"{""seasonal"": ""23%""}",240205,0,Europe +2023-08-14,14110,2003,"[""Laptop""]",3779.53,{},133622,0,Europe +2023-11-23,14111,8221,"[""Keyboard""]",542.12,"{"""": ""15%""}",176490,1,North America +2024-04-05,14112,9728,"[""Charger"", ""Headphones"", ""Tablet""]",679.85,"{""promo"": ""8%""}",257507,0,Africa +2024-09-23,14113,2611,"[""Tablet"", ""Wireless Mouse""]",3223.76,{},198740,0,Asia +2023-10-28,14114,3230,"[""Keyboard"", ""Laptop""]",4086.88,"{""promo"": ""17%""}",164608,1,North America +2024-02-12,14115,6615,"[""Monitor"", ""Charger""]",4724.73,{},262093,0,Africa +2024-09-10,14116,1487,"[""Phone""]",3559.02,{},118170,1,South America +2023-07-29,14117,2556,"[""Charger"", ""Tablet""]",2571.31,"{""promo"": ""24%""}",246578,1,Africa +2024-09-19,14118,8169,"[""Keyboard"", ""Phone"", ""Tablet""]",2740.93,"{"""": ""27%""}",51404,0,South America +2024-03-04,14119,7049,"[""Laptop"", ""Monitor""]",2228.74,"{""loyalty"": ""18%""}",98198,1,South America +2024-06-03,14120,1291,"[""Tablet""]",919.48,{},125364,1,North America +2023-02-18,14121,3929,"[""Monitor""]",350.89,{},231293,1,Africa +2024-05-22,14122,4424,"[""Phone"", ""Laptop""]",4613.59,{},222394,0,South America +2024-08-09,14123,148,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",89.26,"{"""": ""14%""}",232580,0,Europe +2024-06-18,14124,7268,"[""Keyboard""]",4010.92,{},113556,0,Asia +2024-02-06,14125,2938,"[""Wireless Mouse"", ""Monitor""]",2504.19,{},275966,0,Asia +2023-03-20,14126,4291,"[""Monitor"", ""Keyboard"", ""Phone""]",1869.43,{},43404,1,South America +2024-07-23,14127,211,"[""Tablet"", ""Monitor"", ""Phone""]",278.63,"{"""": ""11%""}",209806,1,Africa +2024-05-05,14128,3069,"[""Monitor""]",600.76,{},188591,0,Europe +2024-04-02,14129,2876,"[""Charger"", ""Tablet""]",2657.23,{},128373,1,South America +2024-02-28,14130,1709,"[""Monitor"", ""Charger""]",2819.94,"{""loyalty"": ""21%""}",182738,0,South America +2024-03-21,14131,2811,"[""Tablet"", ""Laptop""]",3109.58,{},242408,0,Asia +2023-04-28,14132,3290,"[""Phone"", ""Tablet""]",65.77,"{""seasonal"": ""24%""}",200101,1,Africa +2024-08-26,14133,9046,"[""Charger""]",3497.33,{},190227,1,North America +2023-05-21,14134,1869,"[""Keyboard"", ""Headphones""]",4171.6,"{""loyalty"": ""16%""}",296575,0,South America +2023-12-13,14135,763,"[""Wireless Mouse""]",3417.72,{},279271,1,North America +2023-07-20,14136,1455,"[""Charger""]",4203.8,"{""promo"": ""17%""}",222023,0,Europe +2023-01-04,14137,8831,"[""Wireless Mouse"", ""Keyboard""]",4870.36,"{""promo"": ""13%""}",11859,0,Africa +2024-01-01,14138,4321,"[""Monitor"", ""Laptop""]",3600.64,"{""loyalty"": ""28%""}",294827,0,Europe +2023-04-26,14139,2590,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4934.92,"{""loyalty"": ""9%""}",212795,0,South America +2024-02-08,14140,7586,"[""Keyboard"", ""Wireless Mouse""]",2863.05,"{""loyalty"": ""12%""}",118630,0,North America +2024-10-21,14141,3558,"[""Phone"", ""Charger""]",1798.2,"{"""": ""9%""}",247586,1,Africa +2024-02-28,14142,3492,"[""Headphones"", ""Monitor""]",1169.6,{},257437,0,North America +2023-02-07,14143,4437,"[""Monitor""]",1629.66,"{""seasonal"": ""11%""}",188851,0,Asia +2023-08-29,14144,8867,"[""Phone"", ""Tablet""]",3289.47,"{""seasonal"": ""21%""}",223348,0,Asia +2024-12-22,14145,907,"[""Headphones"", ""Keyboard"", ""Monitor""]",489.03,"{"""": ""24%""}",4634,0,Africa +2024-02-29,14146,9030,"[""Laptop"", ""Charger"", ""Monitor""]",4682.17,"{"""": ""28%""}",205112,0,Africa +2023-08-01,14147,1578,"[""Laptop"", ""Wireless Mouse""]",557.5,"{"""": ""28%""}",230163,0,Africa +2023-07-20,14148,8255,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4886.78,{},33775,1,South America +2023-02-13,14149,781,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4140.4,"{""promo"": ""9%""}",162681,0,South America +2023-03-05,14150,8018,"[""Tablet""]",2728.57,{},204890,0,North America +2024-02-15,14151,9009,"[""Tablet"", ""Charger"", ""Headphones""]",2571.9,{},9425,0,North America +2024-09-11,14152,2517,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2543.64,{},238565,1,South America +2024-08-20,14153,5396,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3380.55,{},108597,0,Africa +2023-08-18,14154,3173,"[""Keyboard"", ""Headphones""]",4127.26,"{""promo"": ""16%""}",48324,1,North America +2024-11-28,14155,1780,"[""Monitor"", ""Phone""]",2857.09,{},48285,0,Asia +2024-08-20,14156,5635,"[""Phone""]",147.06,{},30749,1,Europe +2024-08-31,14157,6845,"[""Keyboard""]",3621.57,{},268184,1,South America +2024-12-27,14158,1012,"[""Tablet"", ""Monitor"", ""Headphones""]",903.66,{},170095,1,Europe +2023-11-18,14159,9432,"[""Charger""]",1393.23,{},213778,1,North America +2023-03-05,14160,1632,"[""Charger""]",3668.45,{},81757,0,North America +2024-05-10,14161,1790,"[""Headphones"", ""Laptop"", ""Phone""]",2732.91,"{""seasonal"": ""24%""}",205643,0,Africa +2023-05-29,14162,2577,"[""Monitor""]",975.87,{},158280,1,Europe +2024-03-19,14163,2305,"[""Wireless Mouse""]",2534.22,"{""seasonal"": ""12%""}",124586,1,Asia +2023-12-29,14164,849,"[""Headphones""]",3460.42,{},246538,1,North America +2023-10-06,14165,2283,"[""Charger"", ""Wireless Mouse""]",1658.43,"{""loyalty"": ""24%""}",218300,1,North America +2024-05-31,14166,4606,"[""Wireless Mouse"", ""Tablet""]",4306.41,"{""loyalty"": ""22%""}",6200,1,Asia +2023-04-16,14167,9833,"[""Headphones""]",1950.46,"{""promo"": ""26%""}",205562,1,Asia +2023-12-15,14168,6482,"[""Monitor""]",4206.39,{},213931,1,North America +2024-05-17,14169,3384,"[""Charger""]",3486.68,{},84368,1,South America +2023-06-26,14170,3518,"[""Keyboard""]",1078.97,{},189005,0,Africa +2023-09-10,14171,1801,"[""Tablet"", ""Phone"", ""Laptop""]",3006.77,{},73271,1,North America +2024-12-06,14172,4309,"[""Headphones"", ""Monitor""]",1652.41,"{""promo"": ""30%""}",56723,0,Asia +2024-05-23,14173,5569,"[""Charger"", ""Laptop"", ""Phone""]",2203.56,"{""loyalty"": ""6%""}",48109,1,Africa +2024-04-21,14174,7823,"[""Monitor"", ""Charger"", ""Keyboard""]",2477.0,"{""loyalty"": ""16%""}",96530,0,Europe +2023-12-20,14175,2841,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",754.41,"{""seasonal"": ""18%""}",211777,1,South America +2024-02-16,14176,3672,"[""Laptop""]",2389.48,"{""promo"": ""13%""}",259290,0,Europe +2024-05-15,14177,4855,"[""Monitor""]",4035.4,{},17153,0,North America +2024-08-03,14178,35,"[""Laptop"", ""Keyboard"", ""Headphones""]",2527.37,"{"""": ""28%""}",91849,0,Europe +2023-10-12,14179,2867,"[""Wireless Mouse""]",2607.32,"{""loyalty"": ""9%""}",76339,1,Africa +2023-09-09,14180,2994,"[""Charger"", ""Monitor"", ""Phone""]",3090.29,{},104781,1,North America +2023-02-12,14181,4295,"[""Charger"", ""Monitor""]",619.92,"{""seasonal"": ""28%""}",137888,0,Asia +2023-12-02,14182,2117,"[""Headphones"", ""Phone"", ""Monitor""]",4770.74,"{""loyalty"": ""12%""}",92947,0,South America +2024-06-22,14183,2766,"[""Charger"", ""Tablet"", ""Phone""]",3294.14,{},7181,1,Africa +2024-11-03,14184,4658,"[""Charger"", ""Laptop""]",784.28,"{"""": ""27%""}",159049,1,Europe +2023-11-03,14185,3293,"[""Wireless Mouse""]",2149.1,{},50984,1,South America +2023-02-20,14186,8590,"[""Tablet"", ""Wireless Mouse""]",1068.64,"{""loyalty"": ""29%""}",33965,0,Africa +2024-07-19,14187,4991,"[""Headphones""]",3500.7,"{""loyalty"": ""25%""}",272247,0,Europe +2024-06-22,14188,5675,"[""Charger"", ""Keyboard"", ""Headphones""]",4147.14,{},131266,0,Europe +2024-01-14,14189,7066,"[""Keyboard""]",2185.61,{},286208,1,Asia +2023-03-21,14190,7615,"[""Charger""]",260.39,"{""loyalty"": ""29%""}",293022,0,Africa +2023-11-13,14191,6959,"[""Wireless Mouse"", ""Headphones""]",1757.86,{},243828,0,Europe +2023-12-26,14192,8242,"[""Monitor"", ""Wireless Mouse""]",4936.01,{},163123,1,North America +2023-09-16,14193,8546,"[""Headphones"", ""Wireless Mouse""]",3144.15,{},135589,0,Africa +2024-12-04,14194,3835,"[""Keyboard"", ""Headphones""]",3629.37,{},166867,1,Europe +2024-10-21,14195,9536,"[""Tablet"", ""Headphones""]",1891.51,"{""promo"": ""28%""}",228104,1,North America +2023-06-23,14196,1935,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3555.73,"{""loyalty"": ""25%""}",179617,1,North America +2023-06-16,14197,3957,"[""Tablet"", ""Phone"", ""Headphones""]",3257.23,{},160294,1,Europe +2023-12-19,14198,6385,"[""Tablet"", ""Monitor"", ""Laptop""]",639.07,"{""loyalty"": ""11%""}",285574,0,Europe +2023-02-21,14199,4822,"[""Tablet"", ""Charger""]",3256.16,"{""loyalty"": ""22%""}",160080,1,North America +2024-12-15,14200,3691,"[""Monitor"", ""Wireless Mouse""]",1791.27,{},35644,1,South America +2024-08-11,14201,8424,"[""Charger""]",2693.18,{},53253,0,North America +2023-05-24,14202,8073,"[""Charger""]",881.7,{},253466,1,Asia +2023-07-14,14203,963,"[""Monitor""]",4916.09,"{""seasonal"": ""16%""}",27476,0,South America +2024-06-29,14204,9783,"[""Tablet"", ""Monitor""]",745.89,"{""promo"": ""13%""}",183323,1,North America +2024-04-27,14205,2100,"[""Headphones""]",3596.52,{},278609,1,South America +2024-09-08,14206,83,"[""Laptop"", ""Monitor""]",4635.38,{},71640,0,Africa +2023-05-20,14207,420,"[""Wireless Mouse""]",4322.01,"{""seasonal"": ""23%""}",293889,1,North America +2023-08-30,14208,6950,"[""Headphones"", ""Monitor""]",4648.64,"{""loyalty"": ""8%""}",256559,0,Africa +2024-01-08,14209,9659,"[""Keyboard"", ""Wireless Mouse""]",1430.11,{},69058,0,Africa +2023-10-10,14210,2018,"[""Tablet""]",3531.51,"{""promo"": ""13%""}",295063,0,North America +2024-05-11,14211,6808,"[""Wireless Mouse""]",3624.23,"{""promo"": ""12%""}",255756,1,Europe +2023-07-25,14212,2349,"[""Tablet""]",1367.64,{},17649,1,North America +2023-01-02,14213,7144,"[""Phone"", ""Tablet"", ""Charger""]",474.78,"{""promo"": ""15%""}",6904,0,South America +2024-02-07,14214,6988,"[""Laptop""]",4896.19,{},94090,0,Asia +2024-09-14,14215,597,"[""Tablet""]",2124.67,"{""seasonal"": ""5%""}",125993,0,Africa +2023-02-18,14216,6351,"[""Keyboard"", ""Laptop"", ""Charger""]",3923.01,{},119067,1,South America +2023-10-31,14217,2371,"[""Wireless Mouse""]",1627.94,{},263515,1,South America +2023-07-13,14218,62,"[""Keyboard""]",4183.76,"{""promo"": ""8%""}",9076,0,South America +2023-06-06,14219,9664,"[""Charger"", ""Keyboard"", ""Monitor""]",3269.53,"{""loyalty"": ""19%""}",266078,0,Africa +2023-05-23,14220,2078,"[""Laptop"", ""Monitor""]",3350.79,{},164563,0,Asia +2024-10-30,14221,5534,"[""Headphones""]",2202.82,{},137063,1,North America +2024-01-13,14222,4121,"[""Phone""]",1226.48,"{"""": ""23%""}",90269,1,Europe +2024-08-22,14223,3158,"[""Headphones"", ""Wireless Mouse""]",2662.66,{},113487,1,South America +2024-08-02,14224,1612,"[""Laptop"", ""Keyboard"", ""Tablet""]",2227.73,{},156674,0,Africa +2024-10-02,14225,9178,"[""Monitor""]",4547.19,{},27746,1,Africa +2024-05-23,14226,6638,"[""Wireless Mouse"", ""Phone""]",1436.32,"{""seasonal"": ""13%""}",39513,0,Asia +2023-09-23,14227,6318,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",508.62,"{""seasonal"": ""6%""}",202161,1,Europe +2023-05-29,14228,1006,"[""Laptop"", ""Phone""]",4207.18,"{"""": ""29%""}",281774,0,Europe +2024-08-16,14229,6871,"[""Charger"", ""Phone"", ""Keyboard""]",3516.42,"{""promo"": ""8%""}",178505,0,Africa +2024-11-14,14230,1340,"[""Headphones"", ""Laptop"", ""Charger""]",170.8,"{"""": ""9%""}",159987,0,South America +2023-09-12,14231,9488,"[""Charger"", ""Wireless Mouse""]",124.88,"{"""": ""24%""}",284363,0,Africa +2023-10-20,14232,8697,"[""Phone""]",3050.97,"{""promo"": ""10%""}",193379,1,Africa +2024-10-31,14233,7573,"[""Keyboard"", ""Tablet"", ""Monitor""]",714.49,"{"""": ""11%""}",115455,1,Europe +2024-07-25,14234,9823,"[""Phone"", ""Laptop""]",1225.32,"{""seasonal"": ""16%""}",44527,0,Asia +2023-12-25,14235,6417,"[""Laptop"", ""Wireless Mouse""]",4420.84,{},198614,0,South America +2023-07-23,14236,475,"[""Wireless Mouse""]",394.14,"{"""": ""9%""}",294895,1,Europe +2023-05-29,14237,4471,"[""Wireless Mouse"", ""Monitor""]",4260.82,{},192379,0,North America +2024-03-14,14238,2942,"[""Tablet"", ""Keyboard"", ""Headphones""]",1760.86,"{""loyalty"": ""15%""}",165706,1,Europe +2024-09-03,14239,3011,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2553.27,{},269347,1,North America +2024-04-25,14240,9842,"[""Wireless Mouse""]",4915.25,{},136248,1,Africa +2023-07-27,14241,6164,"[""Headphones"", ""Tablet"", ""Phone""]",2536.26,"{""loyalty"": ""16%""}",24555,0,North America +2023-09-15,14242,2971,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",658.91,{},141682,1,Europe +2024-10-28,14243,4213,"[""Headphones""]",2526.59,{},41724,0,North America +2024-03-14,14244,2349,"[""Monitor"", ""Phone"", ""Charger""]",4913.17,{},74751,1,North America +2024-03-10,14245,4944,"[""Laptop"", ""Charger""]",3086.6,{},94899,1,Africa +2024-05-14,14246,3485,"[""Tablet"", ""Phone"", ""Monitor""]",4690.65,"{""promo"": ""23%""}",158547,0,Europe +2023-08-13,14247,8408,"[""Laptop"", ""Tablet"", ""Headphones""]",4005.99,"{""seasonal"": ""26%""}",146958,1,Africa +2023-09-11,14248,4528,"[""Keyboard""]",4565.94,"{""seasonal"": ""21%""}",235551,1,Europe +2023-05-12,14249,1006,"[""Phone"", ""Keyboard""]",512.97,"{"""": ""5%""}",110050,1,North America +2023-08-31,14250,1208,"[""Headphones"", ""Charger""]",3512.89,"{""loyalty"": ""29%""}",237330,0,Asia +2023-09-10,14251,8269,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3791.44,"{""seasonal"": ""22%""}",84617,0,North America +2023-05-25,14252,7307,"[""Phone"", ""Headphones""]",2057.74,"{""seasonal"": ""11%""}",189412,0,Asia +2024-11-24,14253,5654,"[""Phone""]",1375.63,{},129009,1,Asia +2024-10-27,14254,4060,"[""Laptop"", ""Charger""]",1624.17,"{"""": ""21%""}",27302,0,Africa +2024-06-20,14255,2935,"[""Keyboard""]",2317.63,"{"""": ""21%""}",25227,1,Africa +2024-01-08,14256,6032,"[""Monitor"", ""Phone""]",3748.03,{},265083,0,Africa +2023-10-17,14257,1959,"[""Charger""]",105.57,"{""seasonal"": ""5%""}",43239,1,Asia +2024-08-26,14258,9482,"[""Headphones""]",2317.64,"{""loyalty"": ""28%""}",182952,1,Asia +2024-06-14,14259,7451,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3938.53,"{"""": ""11%""}",273154,0,Asia +2024-02-19,14260,3558,"[""Wireless Mouse""]",3841.91,{},255219,1,South America +2023-09-24,14261,4707,"[""Monitor"", ""Tablet"", ""Phone""]",895.91,{},219960,1,North America +2024-04-09,14262,8463,"[""Charger""]",1537.25,{},173535,0,Africa +2024-05-02,14263,7397,"[""Headphones"", ""Laptop""]",3976.92,{},281260,0,Africa +2024-07-21,14264,5170,"[""Laptop"", ""Monitor""]",3530.44,{},242278,0,North America +2024-01-21,14265,8005,"[""Wireless Mouse""]",4821.86,{},125659,1,South America +2024-09-08,14266,6221,"[""Phone"", ""Tablet"", ""Headphones""]",3771.86,{},199381,0,South America +2024-11-03,14267,2004,"[""Laptop"", ""Phone""]",2269.46,{},290983,0,North America +2024-12-11,14268,3083,"[""Phone"", ""Wireless Mouse""]",396.3,{},125972,0,Europe +2023-09-07,14269,9028,"[""Laptop"", ""Keyboard""]",3536.2,"{"""": ""20%""}",235371,1,Asia +2023-12-17,14270,3552,"[""Headphones"", ""Charger"", ""Keyboard""]",3365.25,{},31184,1,Africa +2023-09-09,14271,9350,"[""Monitor"", ""Headphones""]",1885.87,{},277191,1,Africa +2024-03-23,14272,369,"[""Tablet"", ""Charger"", ""Monitor""]",3986.41,{},144183,1,Africa +2023-05-16,14273,2322,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2624.7,"{""promo"": ""9%""}",96065,1,South America +2023-09-18,14274,4531,"[""Laptop""]",200.36,"{""promo"": ""18%""}",268944,1,Asia +2023-05-03,14275,8501,"[""Headphones"", ""Laptop"", ""Monitor""]",2933.93,"{"""": ""20%""}",63645,0,North America +2023-11-16,14276,8326,"[""Laptop""]",3490.13,"{""promo"": ""27%""}",199955,1,Asia +2023-07-16,14277,1728,"[""Phone""]",186.81,{},215839,1,South America +2023-05-30,14278,7259,"[""Laptop"", ""Charger""]",3310.32,{},70258,1,North America +2023-04-01,14279,5856,"[""Monitor"", ""Wireless Mouse""]",3108.88,{},129623,1,South America +2024-09-18,14280,6979,"[""Phone""]",746.88,"{""seasonal"": ""14%""}",66805,0,Africa +2024-07-31,14281,4314,"[""Charger"", ""Wireless Mouse""]",2762.58,{},175927,1,North America +2024-06-03,14282,3164,"[""Laptop"", ""Phone""]",4127.15,"{""loyalty"": ""20%""}",154041,1,North America +2023-01-11,14283,1008,"[""Phone"", ""Wireless Mouse""]",61.03,{},204150,1,Africa +2024-07-05,14284,2453,"[""Laptop""]",319.68,{},84938,0,South America +2023-11-23,14285,6959,"[""Keyboard""]",2821.48,"{"""": ""6%""}",20076,0,Asia +2023-02-07,14286,6933,"[""Headphones"", ""Tablet"", ""Phone""]",3157.46,{},45686,1,Europe +2023-06-11,14287,6559,"[""Keyboard"", ""Laptop"", ""Tablet""]",70.32,"{""loyalty"": ""17%""}",73446,1,Africa +2023-04-17,14288,3657,"[""Headphones"", ""Charger""]",2384.3,{},218328,0,Europe +2023-08-10,14289,9760,"[""Keyboard"", ""Charger""]",127.61,{},287411,1,North America +2024-10-27,14290,5646,"[""Phone"", ""Headphones"", ""Tablet""]",866.09,"{""promo"": ""30%""}",177054,1,Africa +2023-11-30,14291,434,"[""Headphones""]",3641.62,{},122895,1,Europe +2024-07-11,14292,2536,"[""Wireless Mouse""]",4031.1,"{""promo"": ""28%""}",182566,0,Africa +2024-02-21,14293,1896,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2955.63,{},13412,0,North America +2024-03-18,14294,434,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3754.73,{},293050,0,South America +2023-01-29,14295,469,"[""Laptop"", ""Charger"", ""Monitor""]",3242.59,{},160426,0,Africa +2023-06-05,14296,8196,"[""Keyboard"", ""Headphones""]",2222.56,"{""seasonal"": ""21%""}",93479,1,North America +2024-01-17,14297,8902,"[""Wireless Mouse"", ""Headphones""]",1419.18,"{""loyalty"": ""25%""}",296180,0,Asia +2024-08-18,14298,8633,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3198.99,{},34272,0,North America +2024-05-02,14299,8047,"[""Laptop"", ""Monitor""]",421.01,"{""seasonal"": ""19%""}",269177,0,Africa +2024-06-05,14300,5062,"[""Headphones""]",3749.36,{},239016,1,North America +2023-03-13,14301,4160,"[""Charger""]",2009.38,{},102367,1,North America +2024-10-21,14302,5687,"[""Charger"", ""Wireless Mouse""]",86.96,"{""promo"": ""14%""}",290741,1,North America +2023-04-26,14303,6228,"[""Laptop""]",3613.9,"{"""": ""28%""}",108421,1,Asia +2024-09-14,14304,3967,"[""Tablet"", ""Keyboard"", ""Monitor""]",2812.57,{},46487,0,Africa +2024-10-02,14305,1684,"[""Wireless Mouse""]",344.18,{},187664,0,South America +2023-09-20,14306,7620,"[""Keyboard"", ""Charger""]",2381.16,{},202057,0,South America +2024-09-07,14307,9761,"[""Tablet""]",202.85,{},262681,1,South America +2023-12-22,14308,3034,"[""Headphones"", ""Phone""]",3161.9,"{""promo"": ""11%""}",217855,0,North America +2023-12-09,14309,6834,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2253.55,{},40803,0,Europe +2024-06-24,14310,8100,"[""Laptop"", ""Keyboard"", ""Tablet""]",2674.02,{},265791,0,Africa +2024-01-10,14311,166,"[""Monitor"", ""Keyboard""]",2782.24,"{""promo"": ""18%""}",294315,0,Europe +2023-06-26,14312,6264,"[""Tablet"", ""Phone"", ""Keyboard""]",4994.94,"{""seasonal"": ""27%""}",251757,1,Asia +2023-09-12,14313,4580,"[""Headphones"", ""Phone""]",2272.1,"{""promo"": ""30%""}",7482,1,Europe +2024-09-25,14314,4810,"[""Laptop"", ""Charger""]",2885.16,{},150611,0,Europe +2023-03-16,14315,1095,"[""Tablet""]",1178.54,"{"""": ""29%""}",237412,1,Europe +2023-02-01,14316,9223,"[""Headphones"", ""Keyboard"", ""Charger""]",595.39,{},74006,0,North America +2024-08-21,14317,5510,"[""Tablet"", ""Headphones"", ""Keyboard""]",3657.88,{},164994,0,Africa +2024-08-23,14318,3412,"[""Keyboard"", ""Phone""]",4214.32,"{"""": ""29%""}",158684,0,North America +2023-11-13,14319,5074,"[""Monitor"", ""Phone"", ""Charger""]",2101.7,"{""seasonal"": ""24%""}",54163,1,Asia +2024-09-30,14320,96,"[""Wireless Mouse"", ""Tablet""]",752.97,"{""seasonal"": ""5%""}",218117,0,Asia +2024-09-11,14321,5912,"[""Laptop"", ""Charger"", ""Headphones""]",2846.98,{},168731,0,Asia +2024-08-18,14322,316,"[""Charger"", ""Tablet""]",2101.31,{},209399,1,Africa +2024-11-30,14323,1356,"[""Tablet"", ""Monitor"", ""Laptop""]",2279.48,{},201472,0,Asia +2023-08-04,14324,965,"[""Charger"", ""Headphones"", ""Keyboard""]",1480.6,{},55608,1,Africa +2024-01-29,14325,4398,"[""Charger"", ""Phone""]",3085.36,{},234453,0,Asia +2024-11-14,14326,1006,"[""Monitor"", ""Tablet""]",3330.41,{},264653,1,South America +2024-06-13,14327,8531,"[""Headphones"", ""Keyboard""]",2950.76,"{"""": ""11%""}",199452,1,Asia +2024-02-05,14328,7392,"[""Headphones"", ""Phone"", ""Laptop""]",4320.44,{},176156,0,Asia +2023-04-27,14329,1136,"[""Wireless Mouse"", ""Keyboard""]",1376.57,{},234298,0,Europe +2023-12-10,14330,195,"[""Headphones""]",428.29,"{"""": ""21%""}",146445,1,South America +2023-11-29,14331,5152,"[""Charger""]",3988.87,"{"""": ""17%""}",124834,1,Africa +2023-03-30,14332,2869,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2026.75,{},188639,1,Africa +2024-08-26,14333,2421,"[""Phone""]",2666.07,"{""promo"": ""28%""}",154210,0,North America +2023-08-18,14334,253,"[""Monitor"", ""Charger""]",737.3,{},258677,0,South America +2023-01-21,14335,6995,"[""Charger"", ""Phone""]",4015.98,{},112583,1,North America +2023-12-16,14336,6230,"[""Headphones"", ""Laptop""]",4206.74,{},159171,1,Europe +2024-09-24,14337,1288,"[""Headphones""]",4548.67,"{""seasonal"": ""6%""}",239314,0,Asia +2023-10-13,14338,5265,"[""Monitor""]",2577.55,"{"""": ""29%""}",147002,0,South America +2024-12-12,14339,9289,"[""Tablet"", ""Laptop"", ""Charger""]",2424.3,{},106158,0,South America +2024-06-21,14340,4141,"[""Tablet"", ""Keyboard"", ""Headphones""]",772.49,{},247278,1,Asia +2023-08-21,14341,4129,"[""Monitor"", ""Headphones"", ""Phone""]",2425.41,"{""seasonal"": ""16%""}",174093,1,Africa +2024-02-23,14342,5016,"[""Charger""]",1042.15,{},210441,1,Asia +2023-03-08,14343,531,"[""Keyboard""]",103.36,{},206796,0,Europe +2024-04-11,14344,6558,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4037.86,{},43801,0,North America +2024-09-06,14345,4930,"[""Wireless Mouse"", ""Phone""]",2872.33,"{""seasonal"": ""27%""}",81470,0,Africa +2023-01-29,14346,3433,"[""Headphones""]",4103.3,{},179201,0,Asia +2024-11-13,14347,8864,"[""Phone"", ""Keyboard"", ""Charger""]",942.22,{},122183,1,Africa +2024-11-30,14348,4103,"[""Monitor""]",303.47,{},10777,0,Europe +2023-10-17,14349,3463,"[""Phone"", ""Tablet"", ""Monitor""]",4599.89,{},275316,0,Africa +2023-02-25,14350,191,"[""Charger"", ""Wireless Mouse""]",2113.47,"{"""": ""30%""}",178565,1,Europe +2024-12-06,14351,3242,"[""Phone"", ""Charger"", ""Tablet""]",2677.63,{},211742,0,South America +2024-02-04,14352,790,"[""Laptop"", ""Headphones"", ""Charger""]",4904.24,"{""seasonal"": ""27%""}",288379,0,Europe +2024-09-10,14353,9024,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3414.86,"{""seasonal"": ""23%""}",146228,0,Europe +2023-06-19,14354,2088,"[""Tablet""]",1865.37,"{"""": ""22%""}",268306,0,South America +2024-10-21,14355,9376,"[""Laptop"", ""Headphones""]",3813.22,"{""loyalty"": ""17%""}",5783,0,Asia +2024-04-26,14356,650,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4189.0,"{"""": ""18%""}",73867,0,North America +2024-10-29,14357,3433,"[""Headphones""]",3175.55,{},273741,0,North America +2024-11-12,14358,3098,"[""Laptop"", ""Headphones"", ""Phone""]",1818.86,{},68860,0,North America +2023-06-07,14359,7561,"[""Monitor""]",601.03,"{""promo"": ""6%""}",278983,1,North America +2023-05-31,14360,6940,"[""Headphones"", ""Charger"", ""Tablet""]",1770.44,"{""loyalty"": ""30%""}",105216,0,South America +2024-09-12,14361,5551,"[""Keyboard"", ""Charger""]",1411.17,{},277615,0,South America +2024-02-01,14362,4956,"[""Phone""]",4897.92,"{""loyalty"": ""11%""}",23602,0,North America +2023-03-29,14363,6833,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1601.52,{},253903,1,South America +2024-03-16,14364,186,"[""Monitor""]",3663.69,"{""promo"": ""10%""}",189016,1,South America +2024-11-07,14365,2267,"[""Headphones"", ""Laptop"", ""Phone""]",2253.29,"{""loyalty"": ""24%""}",178014,0,Europe +2024-04-01,14366,388,"[""Monitor""]",4037.84,"{"""": ""5%""}",57768,0,Asia +2024-09-26,14367,310,"[""Laptop""]",2229.92,{},49830,1,Asia +2023-10-01,14368,798,"[""Wireless Mouse"", ""Monitor""]",125.6,{},132635,1,South America +2024-11-02,14369,2939,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1679.66,{},91187,1,North America +2024-05-16,14370,5946,"[""Wireless Mouse"", ""Charger""]",3212.19,"{""promo"": ""16%""}",218359,0,Asia +2023-12-14,14371,4889,"[""Headphones""]",1861.7,"{""promo"": ""18%""}",241464,0,North America +2024-11-04,14372,2367,"[""Laptop""]",1068.52,{},93063,0,South America +2024-02-22,14373,726,"[""Charger"", ""Tablet"", ""Laptop""]",4642.99,{},52500,1,Asia +2023-10-10,14374,1869,"[""Charger"", ""Headphones"", ""Phone""]",4675.65,"{"""": ""29%""}",178213,1,Africa +2023-11-16,14375,4795,"[""Charger"", ""Wireless Mouse""]",705.8,"{""loyalty"": ""5%""}",71571,1,Africa +2023-05-28,14376,6404,"[""Keyboard"", ""Headphones"", ""Charger""]",2734.44,"{"""": ""8%""}",92028,0,North America +2024-08-12,14377,6369,"[""Laptop"", ""Monitor""]",3408.07,{},248565,1,Asia +2024-12-18,14378,2946,"[""Monitor""]",4240.93,"{""loyalty"": ""10%""}",260413,0,South America +2024-05-09,14379,959,"[""Tablet"", ""Phone""]",1535.3,{},139120,1,Asia +2024-01-04,14380,9579,"[""Wireless Mouse""]",1525.26,"{""loyalty"": ""7%""}",174574,1,Europe +2024-02-28,14381,3976,"[""Laptop""]",4156.43,"{""loyalty"": ""10%""}",7327,0,North America +2024-11-26,14382,8433,"[""Keyboard"", ""Wireless Mouse""]",1419.83,{},95991,0,Europe +2024-11-17,14383,4918,"[""Wireless Mouse"", ""Headphones""]",3365.34,"{""seasonal"": ""10%""}",289347,0,Asia +2023-10-18,14384,6761,"[""Laptop"", ""Headphones""]",3026.6,{},55679,0,North America +2023-07-22,14385,7734,"[""Keyboard"", ""Charger"", ""Monitor""]",3732.85,"{""seasonal"": ""23%""}",59280,1,North America +2024-07-29,14386,8196,"[""Charger""]",274.28,"{""loyalty"": ""14%""}",94702,1,Europe +2023-02-15,14387,9773,"[""Laptop"", ""Phone""]",1339.55,"{""promo"": ""14%""}",296269,1,Africa +2023-06-28,14388,6074,"[""Monitor"", ""Charger""]",2236.29,"{"""": ""29%""}",269812,0,Africa +2024-04-07,14389,7177,"[""Wireless Mouse""]",1122.54,{},19040,1,Asia +2023-01-09,14390,5936,"[""Phone""]",4485.66,"{""loyalty"": ""28%""}",173913,0,South America +2023-07-09,14391,99,"[""Monitor"", ""Laptop"", ""Phone""]",2688.17,{},53821,1,North America +2024-10-10,14392,8624,"[""Laptop"", ""Charger""]",4578.73,{},143967,1,Europe +2023-02-14,14393,9537,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1912.74,{},289409,0,Africa +2024-01-13,14394,6389,"[""Charger"", ""Tablet"", ""Phone""]",1466.35,{},159102,1,Europe +2024-03-22,14395,5867,"[""Keyboard"", ""Monitor""]",796.61,{},240684,1,South America +2024-11-04,14396,1362,"[""Charger""]",1896.36,{},100394,0,Africa +2024-04-05,14397,1474,"[""Phone"", ""Charger"", ""Monitor""]",4493.69,{},88081,0,South America +2023-08-13,14398,4921,"[""Headphones"", ""Wireless Mouse""]",3774.61,{},136315,1,South America +2023-09-06,14399,9154,"[""Tablet"", ""Keyboard"", ""Headphones""]",1840.95,{},35983,0,South America +2023-11-15,14400,3032,"[""Wireless Mouse"", ""Phone""]",950.9,"{"""": ""14%""}",211302,1,North America +2023-11-13,14401,1916,"[""Laptop"", ""Keyboard""]",747.01,{},231018,0,Africa +2024-04-09,14402,3603,"[""Keyboard"", ""Tablet"", ""Charger""]",2039.37,{},223618,1,Asia +2023-05-21,14403,1129,"[""Keyboard"", ""Tablet"", ""Headphones""]",54.63,"{"""": ""8%""}",269049,1,North America +2024-09-17,14404,9079,"[""Laptop"", ""Wireless Mouse""]",3398.17,"{""seasonal"": ""9%""}",151301,1,South America +2023-10-13,14405,6602,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1244.84,{},214921,1,South America +2023-06-26,14406,1105,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",135.3,"{""promo"": ""16%""}",56728,1,Europe +2023-01-02,14407,1266,"[""Keyboard"", ""Phone"", ""Laptop""]",2571.03,"{"""": ""5%""}",125565,1,Africa +2023-05-13,14408,3684,"[""Laptop""]",2667.33,"{"""": ""14%""}",45889,0,South America +2023-05-26,14409,5722,"[""Monitor"", ""Headphones"", ""Phone""]",4259.07,"{"""": ""18%""}",178638,0,Asia +2023-08-18,14410,1867,"[""Phone"", ""Headphones"", ""Monitor""]",480.13,{},276706,1,Africa +2024-01-25,14411,5934,"[""Headphones"", ""Tablet"", ""Phone""]",460.66,{},248426,0,Asia +2023-08-29,14412,6982,"[""Monitor"", ""Phone""]",4964.58,{},27558,1,Europe +2023-03-16,14413,1000,"[""Tablet"", ""Keyboard""]",3309.76,"{""seasonal"": ""11%""}",130585,1,Africa +2023-12-18,14414,3299,"[""Keyboard"", ""Wireless Mouse""]",4043.84,"{""loyalty"": ""12%""}",64434,0,Europe +2023-12-28,14415,2941,"[""Wireless Mouse"", ""Tablet""]",690.82,"{""promo"": ""14%""}",18971,0,Europe +2024-06-09,14416,296,"[""Charger""]",1155.27,"{"""": ""17%""}",14155,1,South America +2024-01-12,14417,7407,"[""Monitor""]",4753.08,{},280620,0,Europe +2024-05-17,14418,6005,"[""Charger"", ""Monitor""]",2496.06,{},92274,0,Asia +2023-04-15,14419,6571,"[""Charger""]",4683.5,{},241832,1,Asia +2023-07-02,14420,3150,"[""Tablet""]",2641.3,"{""loyalty"": ""30%""}",23361,1,South America +2023-11-23,14421,7709,"[""Keyboard""]",3893.56,{},119713,0,Europe +2023-12-11,14422,5053,"[""Keyboard""]",3938.91,"{"""": ""23%""}",141449,0,South America +2024-05-16,14423,9471,"[""Wireless Mouse"", ""Tablet""]",512.89,{},6648,0,Europe +2024-11-28,14424,1004,"[""Wireless Mouse""]",1682.82,{},299506,0,North America +2024-01-14,14425,5716,"[""Laptop"", ""Tablet""]",4361.9,{},132041,0,South America +2024-10-06,14426,6581,"[""Tablet""]",3566.15,{},273464,0,South America +2023-03-08,14427,4233,"[""Charger"", ""Monitor""]",1895.5,{},16598,0,Asia +2023-01-07,14428,8618,"[""Phone"", ""Keyboard"", ""Headphones""]",2409.87,"{""loyalty"": ""25%""}",199827,0,South America +2023-02-28,14429,3726,"[""Charger"", ""Laptop""]",384.96,"{""loyalty"": ""8%""}",173471,0,Africa +2023-04-19,14430,974,"[""Charger"", ""Wireless Mouse""]",566.58,"{""promo"": ""12%""}",288862,0,Africa +2024-01-15,14431,3889,"[""Keyboard""]",1646.0,{},36147,0,Europe +2024-09-28,14432,8651,"[""Phone"", ""Laptop"", ""Monitor""]",1554.47,"{""promo"": ""16%""}",169001,0,Asia +2024-10-19,14433,8682,"[""Laptop"", ""Phone""]",2890.53,"{""loyalty"": ""14%""}",4042,0,South America +2024-10-29,14434,2541,"[""Monitor"", ""Tablet""]",4055.38,"{""loyalty"": ""19%""}",181393,0,South America +2023-10-15,14435,1616,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2025.1,{},150594,0,Asia +2023-06-24,14436,4586,"[""Tablet"", ""Phone""]",4376.33,"{""seasonal"": ""20%""}",83285,1,Africa +2024-09-10,14437,684,"[""Phone""]",3682.8,"{"""": ""30%""}",83984,1,South America +2023-04-12,14438,1288,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",198.73,"{""promo"": ""12%""}",37439,0,Africa +2024-12-07,14439,4374,"[""Keyboard"", ""Tablet"", ""Phone""]",4256.66,{},26650,0,Europe +2023-06-16,14440,8059,"[""Monitor""]",4217.94,{},64103,0,South America +2024-07-11,14441,5215,"[""Headphones"", ""Keyboard""]",2696.77,{},81051,1,Africa +2023-07-04,14442,3600,"[""Laptop"", ""Tablet""]",3167.78,"{""promo"": ""22%""}",46687,0,North America +2024-06-27,14443,8731,"[""Phone""]",223.86,"{""promo"": ""19%""}",182250,1,North America +2024-11-26,14444,893,"[""Laptop"", ""Wireless Mouse""]",2960.43,{},41013,0,South America +2024-07-30,14445,6660,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",769.78,"{""seasonal"": ""14%""}",80225,1,North America +2024-11-06,14446,9197,"[""Tablet""]",3047.02,"{""loyalty"": ""10%""}",191723,1,North America +2024-03-04,14447,368,"[""Keyboard"", ""Charger"", ""Laptop""]",764.56,"{"""": ""29%""}",39667,0,Africa +2023-03-13,14448,3482,"[""Wireless Mouse"", ""Phone"", ""Charger""]",980.12,"{""seasonal"": ""12%""}",81238,1,Africa +2023-03-27,14449,1889,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3609.61,"{""seasonal"": ""14%""}",160908,0,North America +2023-02-22,14450,4090,"[""Monitor""]",1098.27,{},160935,1,North America +2023-11-19,14451,9666,"[""Wireless Mouse""]",3804.26,{},186536,0,Africa +2024-09-07,14452,9747,"[""Charger"", ""Wireless Mouse""]",813.62,"{""seasonal"": ""25%""}",81215,1,Africa +2024-09-20,14453,1064,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1862.07,"{""promo"": ""9%""}",54777,1,Asia +2023-09-12,14454,3722,"[""Wireless Mouse""]",4196.7,{},54704,1,North America +2023-08-04,14455,6557,"[""Headphones"", ""Phone""]",2222.61,{},176950,1,Europe +2023-01-14,14456,3971,"[""Headphones"", ""Monitor""]",1775.81,{},119848,1,Africa +2023-06-19,14457,727,"[""Charger"", ""Headphones""]",3013.03,"{"""": ""28%""}",47171,1,North America +2023-03-18,14458,8684,"[""Laptop""]",3522.09,"{""seasonal"": ""15%""}",224927,1,Asia +2023-09-05,14459,6427,"[""Charger""]",4654.57,{},23990,0,Europe +2023-09-29,14460,5609,"[""Headphones""]",638.34,"{""loyalty"": ""20%""}",8309,0,North America +2023-08-22,14461,2660,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",816.13,"{"""": ""29%""}",153967,1,South America +2024-11-04,14462,3511,"[""Headphones"", ""Charger""]",3118.58,{},8614,1,South America +2024-08-07,14463,5927,"[""Phone""]",3344.66,{},168216,1,South America +2023-07-13,14464,613,"[""Phone"", ""Monitor""]",1694.83,{},202574,0,South America +2024-06-25,14465,9549,"[""Keyboard"", ""Charger"", ""Headphones""]",2471.96,"{"""": ""8%""}",217193,1,North America +2024-09-22,14466,9848,"[""Tablet"", ""Monitor"", ""Charger""]",1180.61,{},7546,1,Europe +2023-02-16,14467,5331,"[""Laptop"", ""Monitor"", ""Charger""]",4896.62,{},218844,0,South America +2023-06-24,14468,375,"[""Laptop"", ""Charger"", ""Headphones""]",963.65,"{""loyalty"": ""20%""}",273667,0,Africa +2024-05-10,14469,3267,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4549.51,{},286736,1,South America +2023-10-23,14470,2678,"[""Charger""]",2173.41,{},269464,0,South America +2023-12-18,14471,6119,"[""Monitor"", ""Phone""]",3683.07,"{""promo"": ""10%""}",67972,1,Asia +2024-07-31,14472,6650,"[""Tablet"", ""Headphones""]",4012.27,"{""promo"": ""30%""}",196445,0,Asia +2023-08-23,14473,6326,"[""Headphones""]",3862.06,"{""promo"": ""19%""}",97301,1,Asia +2024-02-17,14474,2843,"[""Tablet"", ""Phone""]",871.83,{},290879,0,Asia +2024-11-30,14475,8100,"[""Phone""]",3768.1,"{""seasonal"": ""11%""}",115555,1,Asia +2023-09-07,14476,8148,"[""Keyboard"", ""Monitor"", ""Tablet""]",3106.82,{},291879,0,Africa +2023-06-02,14477,207,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",761.93,"{""promo"": ""10%""}",158225,1,Europe +2023-02-20,14478,3298,"[""Keyboard""]",4513.23,"{""loyalty"": ""13%""}",164146,0,Europe +2023-05-11,14479,1264,"[""Monitor"", ""Headphones""]",2942.54,{},266819,1,Africa +2023-05-27,14480,1697,"[""Monitor"", ""Laptop"", ""Keyboard""]",2860.05,{},6913,0,Asia +2023-10-04,14481,4084,"[""Keyboard"", ""Charger"", ""Headphones""]",4022.08,{},23572,0,North America +2023-07-26,14482,5260,"[""Charger"", ""Phone""]",1470.07,{},292071,1,South America +2023-10-14,14483,1418,"[""Charger"", ""Tablet""]",4636.49,"{""promo"": ""7%""}",218602,0,Europe +2024-01-20,14484,5839,"[""Wireless Mouse"", ""Laptop""]",2040.56,"{""seasonal"": ""15%""}",281553,0,Africa +2024-12-06,14485,8557,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1398.15,"{"""": ""29%""}",210407,1,Europe +2024-07-31,14486,2117,"[""Charger""]",2158.71,{},239499,0,North America +2024-02-13,14487,5603,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1766.46,"{"""": ""17%""}",22899,1,South America +2024-12-21,14488,4241,"[""Keyboard""]",2872.9,{},138162,1,North America +2023-01-08,14489,826,"[""Monitor"", ""Headphones"", ""Tablet""]",2248.78,"{"""": ""18%""}",277923,1,Europe +2024-10-06,14490,7016,"[""Phone"", ""Laptop""]",1497.24,{},250497,0,North America +2024-04-01,14491,9698,"[""Tablet"", ""Laptop""]",1481.43,"{""promo"": ""26%""}",77439,1,North America +2023-03-19,14492,9937,"[""Headphones""]",2648.11,{},200368,1,South America +2023-10-29,14493,7513,"[""Keyboard""]",1351.56,{},129922,0,North America +2023-09-06,14494,2690,"[""Headphones"", ""Monitor""]",2633.34,{},103962,1,Europe +2023-09-22,14495,9542,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1315.79,{},4945,1,South America +2024-10-28,14496,5457,"[""Tablet"", ""Charger""]",3237.18,"{"""": ""14%""}",257533,1,Africa +2024-06-17,14497,7239,"[""Tablet""]",1296.43,"{""loyalty"": ""24%""}",131464,0,Africa +2024-02-04,14498,6048,"[""Keyboard"", ""Phone"", ""Tablet""]",1031.83,"{"""": ""8%""}",83930,1,Africa +2023-09-15,14499,9312,"[""Charger"", ""Phone"", ""Laptop""]",1557.25,"{""seasonal"": ""17%""}",191574,0,North America +2023-07-09,14500,2077,"[""Wireless Mouse"", ""Charger""]",1639.48,{},65638,0,South America +2024-05-12,14501,7373,"[""Keyboard"", ""Charger""]",4354.76,{},46150,0,North America +2024-10-04,14502,3318,"[""Tablet"", ""Phone""]",4230.81,"{""loyalty"": ""13%""}",50017,0,Europe +2024-01-23,14503,9651,"[""Monitor""]",2605.25,"{""promo"": ""14%""}",124298,0,Europe +2023-04-19,14504,3654,"[""Tablet"", ""Laptop"", ""Keyboard""]",2467.06,{},46140,1,Europe +2023-09-26,14505,1963,"[""Laptop""]",4689.87,{},163705,1,North America +2023-03-16,14506,5561,"[""Charger""]",3216.76,"{"""": ""17%""}",203916,1,Europe +2024-05-16,14507,2045,"[""Tablet""]",87.96,"{"""": ""12%""}",207399,0,North America +2023-07-19,14508,1887,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3581.97,"{"""": ""8%""}",144922,1,Europe +2023-06-10,14509,6441,"[""Phone"", ""Keyboard""]",4997.2,{},57812,1,Europe +2024-11-10,14510,1425,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4498.66,{},105442,0,Europe +2023-07-06,14511,5605,"[""Laptop"", ""Headphones""]",1801.4,{},278138,1,Asia +2024-03-16,14512,1956,"[""Keyboard""]",451.61,"{""loyalty"": ""19%""}",252386,0,Africa +2023-08-30,14513,7926,"[""Keyboard"", ""Tablet""]",490.91,{},263858,0,South America +2023-12-17,14514,8573,"[""Keyboard""]",4499.44,{},185453,0,South America +2024-08-12,14515,9679,"[""Tablet"", ""Headphones"", ""Phone""]",1011.78,"{""seasonal"": ""13%""}",181624,0,Europe +2023-03-19,14516,530,"[""Charger"", ""Keyboard"", ""Tablet""]",2916.06,{},43332,0,Africa +2023-06-12,14517,5939,"[""Monitor""]",3998.57,"{""loyalty"": ""18%""}",150225,0,North America +2023-10-02,14518,952,"[""Wireless Mouse""]",508.95,"{""promo"": ""5%""}",263307,0,Africa +2024-10-05,14519,5105,"[""Keyboard""]",306.75,{},136536,1,Africa +2023-03-30,14520,1762,"[""Charger"", ""Monitor"", ""Keyboard""]",1941.66,{},7033,1,North America +2023-04-15,14521,9028,"[""Charger"", ""Laptop""]",2545.07,{},129871,0,Africa +2023-04-03,14522,8175,"[""Monitor"", ""Laptop""]",3822.78,{},185958,1,South America +2023-02-11,14523,7684,"[""Wireless Mouse""]",3874.0,{},99626,1,Europe +2024-06-17,14524,2331,"[""Phone""]",1035.71,{},145105,0,Asia +2023-06-16,14525,1764,"[""Tablet"", ""Phone""]",2668.32,{},129249,0,Africa +2023-07-27,14526,7275,"[""Monitor"", ""Laptop"", ""Charger""]",2335.71,{},176958,0,North America +2024-01-23,14527,1687,"[""Tablet"", ""Headphones"", ""Monitor""]",2846.95,"{""seasonal"": ""26%""}",175099,1,South America +2023-09-03,14528,7424,"[""Charger"", ""Phone"", ""Monitor""]",3950.42,"{""promo"": ""25%""}",258401,1,North America +2024-11-10,14529,463,"[""Laptop"", ""Tablet""]",4543.71,{},56865,1,Asia +2023-03-26,14530,6639,"[""Headphones"", ""Keyboard""]",1367.6,{},33818,0,Asia +2024-06-13,14531,6739,"[""Wireless Mouse"", ""Phone""]",4423.8,{},167416,0,Europe +2023-09-08,14532,4218,"[""Tablet"", ""Phone"", ""Laptop""]",370.47,"{"""": ""22%""}",207117,0,South America +2024-07-13,14533,5950,"[""Phone"", ""Monitor"", ""Keyboard""]",711.35,"{""promo"": ""21%""}",299966,1,Africa +2024-07-21,14534,8368,"[""Charger""]",1702.96,"{""seasonal"": ""5%""}",46538,1,Africa +2023-07-28,14535,8298,"[""Laptop""]",2134.52,{},244482,1,Africa +2023-11-09,14536,1108,"[""Keyboard""]",1192.71,"{"""": ""12%""}",204702,1,North America +2024-04-02,14537,3864,"[""Monitor"", ""Keyboard""]",4802.54,{},79678,0,South America +2024-04-20,14538,4605,"[""Headphones""]",1638.99,{},164001,0,Europe +2023-10-24,14539,6040,"[""Charger"", ""Headphones"", ""Keyboard""]",457.91,"{""promo"": ""7%""}",262231,1,Asia +2023-05-29,14540,6860,"[""Tablet"", ""Wireless Mouse""]",674.85,{},194126,1,Europe +2023-02-18,14541,2641,"[""Tablet"", ""Keyboard"", ""Laptop""]",2224.3,{},180396,0,North America +2023-12-02,14542,9001,"[""Phone"", ""Laptop""]",3037.56,"{""loyalty"": ""17%""}",4994,1,Europe +2023-09-04,14543,8596,"[""Charger"", ""Wireless Mouse""]",2937.09,{},158301,1,Africa +2023-02-22,14544,8814,"[""Keyboard"", ""Phone""]",3365.18,"{""seasonal"": ""19%""}",189250,0,North America +2024-12-17,14545,1859,"[""Monitor"", ""Wireless Mouse""]",1596.0,"{""loyalty"": ""10%""}",167091,0,North America +2023-12-26,14546,7551,"[""Headphones""]",1793.02,"{"""": ""15%""}",123311,1,North America +2024-07-13,14547,7818,"[""Laptop"", ""Keyboard""]",4851.24,{},273393,0,South America +2024-06-01,14548,2107,"[""Laptop"", ""Tablet""]",2057.4,"{""promo"": ""5%""}",86713,1,North America +2024-08-14,14549,616,"[""Wireless Mouse""]",2803.06,{},145429,0,South America +2023-07-11,14550,7168,"[""Phone"", ""Tablet""]",205.37,{},138740,1,Asia +2024-01-03,14551,64,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",199.51,"{""promo"": ""7%""}",277901,1,Asia +2024-05-20,14552,8119,"[""Keyboard"", ""Wireless Mouse""]",338.33,"{""loyalty"": ""20%""}",144347,1,Asia +2024-10-09,14553,2187,"[""Charger"", ""Monitor""]",3347.11,"{""seasonal"": ""25%""}",76562,0,Europe +2024-10-28,14554,5473,"[""Monitor"", ""Charger"", ""Keyboard""]",250.57,"{""loyalty"": ""5%""}",290268,1,Europe +2023-10-28,14555,2679,"[""Wireless Mouse"", ""Charger""]",4703.92,{},292731,0,Africa +2023-08-05,14556,1411,"[""Monitor"", ""Phone""]",4253.82,"{"""": ""17%""}",228481,1,South America +2023-01-26,14557,4404,"[""Phone"", ""Headphones""]",2219.7,"{"""": ""27%""}",236089,1,South America +2023-08-01,14558,9536,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4226.79,{},188575,0,Africa +2023-05-15,14559,8603,"[""Headphones""]",4941.55,{},195548,1,South America +2024-11-20,14560,9215,"[""Keyboard"", ""Phone"", ""Monitor""]",842.61,"{""promo"": ""7%""}",34774,0,Africa +2023-11-12,14561,5023,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4915.69,"{""promo"": ""23%""}",267705,1,Africa +2024-06-21,14562,1700,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2343.93,{},233754,1,Europe +2023-06-30,14563,9072,"[""Monitor""]",330.25,"{""loyalty"": ""5%""}",187099,1,Europe +2023-03-09,14564,3669,"[""Monitor"", ""Tablet""]",4710.03,{},28622,0,Europe +2024-05-23,14565,6242,"[""Charger"", ""Phone"", ""Headphones""]",4967.58,{},225705,1,South America +2023-04-14,14566,4002,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2227.06,"{""seasonal"": ""25%""}",13598,0,North America +2023-12-26,14567,208,"[""Headphones""]",1527.77,"{""loyalty"": ""16%""}",165286,1,South America +2023-09-06,14568,9715,"[""Phone""]",2939.53,"{""loyalty"": ""26%""}",167560,1,Africa +2024-07-21,14569,7894,"[""Phone"", ""Laptop""]",4504.6,{},224547,0,North America +2023-08-13,14570,7106,"[""Keyboard""]",1248.09,"{""seasonal"": ""10%""}",47162,1,Africa +2024-12-14,14571,5930,"[""Laptop"", ""Keyboard"", ""Headphones""]",2795.48,{},26715,1,Asia +2023-09-03,14572,8661,"[""Laptop""]",4757.51,"{""loyalty"": ""9%""}",214957,0,South America +2024-01-27,14573,981,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3231.74,"{"""": ""5%""}",25265,1,South America +2024-01-07,14574,2715,"[""Charger"", ""Tablet""]",3175.96,{},241125,1,North America +2023-07-26,14575,328,"[""Wireless Mouse"", ""Keyboard""]",4035.56,"{""loyalty"": ""14%""}",295831,0,Europe +2023-09-26,14576,7468,"[""Charger""]",2334.43,"{""seasonal"": ""8%""}",206084,1,Asia +2024-01-25,14577,7504,"[""Tablet""]",844.23,"{""seasonal"": ""5%""}",188506,1,Africa +2023-02-15,14578,7730,"[""Monitor""]",1913.09,{},145090,1,Asia +2023-06-01,14579,6671,"[""Wireless Mouse"", ""Keyboard""]",1928.76,{},119066,0,South America +2023-11-08,14580,7451,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1183.99,{},234754,0,North America +2023-06-09,14581,9344,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3937.7,"{""loyalty"": ""29%""}",202006,1,Asia +2023-07-15,14582,1255,"[""Headphones""]",2028.93,{},293771,0,Asia +2024-09-19,14583,3770,"[""Tablet""]",3414.21,"{"""": ""17%""}",151160,1,Asia +2024-10-12,14584,343,"[""Tablet"", ""Headphones""]",1247.44,"{"""": ""15%""}",190536,0,North America +2024-04-04,14585,8845,"[""Headphones"", ""Charger"", ""Phone""]",3828.03,"{"""": ""8%""}",296088,0,North America +2024-09-12,14586,6004,"[""Phone""]",2787.59,{},78681,0,Africa +2024-10-22,14587,9453,"[""Headphones"", ""Keyboard"", ""Phone""]",1544.02,{},67147,1,Europe +2024-07-29,14588,2626,"[""Charger"", ""Phone"", ""Headphones""]",785.81,{},200622,1,Europe +2023-07-26,14589,9618,"[""Phone"", ""Headphones"", ""Keyboard""]",1871.3,"{"""": ""9%""}",162980,1,Africa +2024-02-24,14590,9621,"[""Laptop"", ""Monitor"", ""Keyboard""]",2633.39,"{""promo"": ""22%""}",243611,0,South America +2023-09-02,14591,7602,"[""Phone"", ""Charger""]",3622.01,{},17277,0,North America +2023-03-12,14592,5139,"[""Laptop"", ""Tablet""]",4895.42,{},15074,1,South America +2024-11-01,14593,9724,"[""Tablet""]",802.82,{},7615,1,South America +2024-03-09,14594,6612,"[""Monitor"", ""Keyboard""]",3502.5,{},36608,1,Asia +2023-11-23,14595,8533,"[""Charger"", ""Headphones""]",4792.01,{},258666,1,Asia +2024-03-05,14596,3534,"[""Keyboard"", ""Tablet""]",3642.05,"{"""": ""16%""}",238156,0,South America +2024-05-25,14597,757,"[""Charger"", ""Headphones""]",4508.49,{},158759,1,South America +2023-06-14,14598,3207,"[""Keyboard"", ""Monitor""]",1861.83,{},176085,0,Africa +2023-11-17,14599,3145,"[""Tablet"", ""Charger"", ""Keyboard""]",2726.86,{},80003,0,North America +2024-04-09,14600,8586,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2494.83,{},137098,1,North America +2023-01-07,14601,8512,"[""Keyboard""]",4659.93,{},116014,0,Europe +2024-08-30,14602,2479,"[""Keyboard""]",2379.77,"{""loyalty"": ""28%""}",173925,0,Europe +2024-10-01,14603,7335,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1643.93,"{"""": ""19%""}",172651,0,Asia +2023-10-09,14604,5132,"[""Headphones"", ""Phone""]",697.87,{},58102,0,North America +2023-04-13,14605,3089,"[""Charger""]",523.17,{},216423,1,Asia +2024-04-10,14606,4469,"[""Charger""]",2042.22,"{""seasonal"": ""15%""}",266002,0,North America +2023-06-19,14607,501,"[""Charger""]",2552.4,{},174798,1,North America +2023-09-03,14608,7316,"[""Headphones"", ""Charger"", ""Keyboard""]",420.65,{},260454,1,South America +2024-07-19,14609,3044,"[""Phone"", ""Keyboard"", ""Monitor""]",470.27,{},178945,1,South America +2023-03-13,14610,605,"[""Keyboard"", ""Phone""]",128.32,"{"""": ""10%""}",85366,0,North America +2023-02-24,14611,1995,"[""Wireless Mouse""]",1756.56,{},270386,0,Europe +2023-01-08,14612,9945,"[""Laptop""]",1133.25,{},71082,0,North America +2024-05-02,14613,8498,"[""Keyboard"", ""Monitor"", ""Phone""]",880.2,"{""promo"": ""24%""}",45175,0,South America +2024-07-01,14614,6228,"[""Headphones"", ""Laptop""]",3964.73,"{""seasonal"": ""11%""}",171859,1,Africa +2024-10-16,14615,3949,"[""Wireless Mouse"", ""Charger""]",2245.22,{},52436,0,Europe +2023-11-02,14616,6806,"[""Headphones"", ""Tablet""]",1651.96,"{""loyalty"": ""11%""}",108161,1,South America +2024-02-08,14617,9378,"[""Phone"", ""Monitor""]",3733.39,{},151730,0,South America +2024-09-15,14618,8957,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2497.81,{},189408,0,North America +2024-10-23,14619,9641,"[""Keyboard""]",2178.7,{},278590,1,North America +2023-08-09,14620,5094,"[""Charger""]",2654.69,"{"""": ""26%""}",240431,0,Europe +2023-10-06,14621,5233,"[""Charger"", ""Phone""]",1731.39,{},210390,0,Asia +2024-06-06,14622,2160,"[""Phone""]",2125.62,{},147194,0,Europe +2023-09-20,14623,7510,"[""Headphones"", ""Charger""]",2323.67,"{""loyalty"": ""5%""}",98905,0,Europe +2024-05-31,14624,4391,"[""Wireless Mouse"", ""Monitor""]",1523.6,{},67345,1,Europe +2023-10-11,14625,9165,"[""Charger""]",2033.59,"{""loyalty"": ""5%""}",18939,1,South America +2024-10-03,14626,4725,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",246.62,{},277726,1,Europe +2023-10-29,14627,5256,"[""Charger"", ""Keyboard""]",3179.59,{},4902,0,North America +2023-09-08,14628,2910,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2524.13,"{""seasonal"": ""30%""}",28320,1,Asia +2023-03-08,14629,8777,"[""Headphones""]",2853.56,{},121596,0,North America +2023-11-23,14630,2982,"[""Keyboard"", ""Charger"", ""Monitor""]",4142.55,{},206910,0,Asia +2024-07-17,14631,2880,"[""Phone"", ""Headphones"", ""Monitor""]",3786.44,"{""loyalty"": ""30%""}",298111,1,South America +2024-01-09,14632,1354,"[""Headphones"", ""Wireless Mouse""]",4048.28,{},271360,0,South America +2023-08-05,14633,3940,"[""Laptop"", ""Phone"", ""Charger""]",4603.23,{},6985,1,South America +2024-08-25,14634,3437,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3858.53,"{""loyalty"": ""28%""}",217154,0,North America +2024-10-01,14635,1672,"[""Laptop"", ""Phone"", ""Headphones""]",2579.79,{},166524,1,Europe +2024-07-21,14636,4168,"[""Laptop"", ""Monitor"", ""Headphones""]",838.85,"{""loyalty"": ""18%""}",11448,1,South America +2023-12-21,14637,6877,"[""Phone""]",1719.74,{},26368,1,Asia +2023-06-17,14638,505,"[""Wireless Mouse""]",249.96,{},250624,0,South America +2023-01-28,14639,2451,"[""Phone"", ""Tablet""]",4340.01,{},113798,1,Europe +2023-08-04,14640,8091,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2759.27,"{""promo"": ""13%""}",108142,1,Asia +2024-12-12,14641,561,"[""Tablet"", ""Charger""]",1696.61,"{"""": ""5%""}",69469,1,South America +2024-12-17,14642,331,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4235.65,"{""promo"": ""23%""}",247101,0,South America +2024-03-24,14643,8750,"[""Charger""]",3837.42,{},83153,0,Asia +2024-02-27,14644,3895,"[""Keyboard"", ""Charger"", ""Laptop""]",3706.69,"{""promo"": ""25%""}",13130,0,South America +2023-08-16,14645,8180,"[""Tablet"", ""Charger""]",354.7,{},233652,0,South America +2023-09-22,14646,1753,"[""Wireless Mouse""]",3588.53,"{""promo"": ""7%""}",1591,1,Asia +2023-07-03,14647,2070,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4636.52,"{""seasonal"": ""14%""}",231612,0,Africa +2023-03-21,14648,3656,"[""Keyboard""]",1396.74,{},2824,1,Africa +2023-09-23,14649,9238,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",688.71,"{""promo"": ""13%""}",23288,0,South America +2023-08-29,14650,723,"[""Headphones""]",2614.24,"{""seasonal"": ""10%""}",160192,0,Europe +2023-06-16,14651,8662,"[""Monitor"", ""Wireless Mouse""]",576.38,"{""loyalty"": ""14%""}",242717,0,North America +2023-09-10,14652,9325,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",417.09,{},286674,1,Africa +2023-05-04,14653,7662,"[""Charger"", ""Monitor"", ""Tablet""]",3142.3,{},100705,0,Africa +2024-10-01,14654,6410,"[""Monitor"", ""Charger"", ""Tablet""]",3904.34,{},88086,1,Europe +2024-06-03,14655,2135,"[""Charger"", ""Phone""]",3068.35,"{"""": ""27%""}",22218,1,South America +2023-10-02,14656,2413,"[""Headphones"", ""Charger""]",4738.86,"{""loyalty"": ""11%""}",242294,1,North America +2024-11-06,14657,8408,"[""Charger"", ""Monitor""]",3394.05,"{""loyalty"": ""22%""}",231543,0,Asia +2024-07-19,14658,6652,"[""Tablet"", ""Headphones"", ""Monitor""]",3910.05,{},78359,0,Africa +2023-06-21,14659,2119,"[""Laptop""]",4045.34,"{""loyalty"": ""19%""}",289629,1,North America +2023-04-21,14660,323,"[""Tablet"", ""Monitor""]",396.83,"{""seasonal"": ""6%""}",146134,1,Africa +2023-09-09,14661,7211,"[""Wireless Mouse""]",783.11,"{""seasonal"": ""9%""}",224683,0,Europe +2024-12-14,14662,5564,"[""Phone"", ""Headphones""]",2779.98,"{"""": ""29%""}",174762,1,South America +2023-10-11,14663,8921,"[""Wireless Mouse"", ""Laptop""]",3873.14,{},35654,0,Asia +2023-04-26,14664,2937,"[""Charger"", ""Keyboard""]",1971.22,{},79954,1,Europe +2024-06-22,14665,4651,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4303.5,"{""seasonal"": ""29%""}",69679,1,North America +2024-12-17,14666,7174,"[""Monitor"", ""Laptop"", ""Headphones""]",1348.07,{},227072,1,South America +2024-08-08,14667,9631,"[""Monitor""]",684.76,"{""promo"": ""27%""}",4498,1,South America +2023-10-03,14668,1858,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",499.19,"{""loyalty"": ""16%""}",220086,1,Asia +2024-07-22,14669,6155,"[""Keyboard"", ""Phone""]",3976.91,{},47917,0,North America +2023-12-23,14670,9286,"[""Keyboard"", ""Laptop"", ""Tablet""]",3715.6,"{""loyalty"": ""22%""}",60754,0,Europe +2023-03-26,14671,5511,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",557.27,{},16771,0,Europe +2024-09-08,14672,6047,"[""Monitor"", ""Tablet"", ""Headphones""]",2864.26,"{""loyalty"": ""16%""}",92504,1,North America +2024-08-28,14673,7851,"[""Wireless Mouse""]",2121.77,{},16521,0,Asia +2024-07-10,14674,770,"[""Laptop"", ""Charger""]",4237.18,"{"""": ""19%""}",235916,1,North America +2024-07-12,14675,9377,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4786.77,"{"""": ""14%""}",81672,0,Africa +2023-05-01,14676,1545,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3479.14,"{""promo"": ""10%""}",277257,1,North America +2023-10-01,14677,1054,"[""Keyboard"", ""Tablet""]",1670.73,"{"""": ""15%""}",96354,1,Asia +2023-03-01,14678,135,"[""Wireless Mouse"", ""Phone""]",3099.34,{},238189,0,Africa +2024-06-30,14679,9626,"[""Wireless Mouse""]",4906.58,{},125060,0,Europe +2024-06-01,14680,7258,"[""Monitor""]",2455.12,{},222153,1,South America +2023-02-01,14681,9588,"[""Laptop"", ""Headphones""]",1000.78,"{""promo"": ""6%""}",144816,1,Europe +2024-09-18,14682,7669,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",987.26,{},65748,0,Europe +2024-12-09,14683,8355,"[""Tablet""]",3593.68,{},40653,0,Europe +2024-04-28,14684,4207,"[""Keyboard""]",2664.85,"{"""": ""10%""}",210606,1,Africa +2024-02-05,14685,2749,"[""Headphones"", ""Phone""]",1043.8,{},16102,0,Asia +2023-03-30,14686,8748,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",323.3,"{""loyalty"": ""27%""}",184455,1,Europe +2024-01-01,14687,5055,"[""Keyboard"", ""Phone"", ""Headphones""]",1114.71,"{""promo"": ""12%""}",214402,0,North America +2024-06-24,14688,1936,"[""Monitor"", ""Wireless Mouse""]",4755.67,{},181854,0,Africa +2024-09-05,14689,3743,"[""Charger"", ""Keyboard"", ""Tablet""]",3588.65,"{""loyalty"": ""10%""}",102315,1,North America +2024-02-02,14690,8947,"[""Phone"", ""Headphones"", ""Monitor""]",4646.06,{},95542,1,Asia +2023-07-10,14691,9452,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1267.27,{},32697,1,South America +2024-06-29,14692,8172,"[""Keyboard""]",4370.77,{},38948,1,Africa +2023-11-20,14693,1116,"[""Keyboard"", ""Charger""]",3662.98,{},42165,0,South America +2024-08-19,14694,7555,"[""Tablet"", ""Keyboard""]",138.14,{},21119,0,South America +2023-12-11,14695,4980,"[""Keyboard"", ""Tablet"", ""Phone""]",1998.34,"{""promo"": ""29%""}",150283,0,South America +2023-12-18,14696,1197,"[""Laptop"", ""Keyboard"", ""Tablet""]",3559.25,"{""loyalty"": ""22%""}",204697,0,Asia +2024-07-05,14697,9034,"[""Headphones""]",3883.85,"{"""": ""21%""}",29408,1,Asia +2023-10-24,14698,9100,"[""Tablet"", ""Phone""]",940.32,"{""loyalty"": ""19%""}",201064,0,South America +2023-04-09,14699,844,"[""Wireless Mouse"", ""Keyboard""]",3332.64,{},20036,1,Africa +2024-08-07,14700,3654,"[""Keyboard""]",3291.95,"{"""": ""23%""}",289919,1,North America +2023-11-29,14701,4704,"[""Tablet"", ""Laptop"", ""Charger""]",3535.19,{},41352,0,North America +2023-02-15,14702,7364,"[""Monitor"", ""Tablet""]",3917.79,"{""promo"": ""30%""}",148557,0,Asia +2023-12-08,14703,4890,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",311.56,{},294474,0,Asia +2023-01-20,14704,6939,"[""Monitor"", ""Wireless Mouse""]",383.18,{},256731,0,Asia +2023-01-13,14705,6854,"[""Keyboard""]",3877.92,{},244986,0,North America +2024-03-08,14706,8367,"[""Charger"", ""Laptop""]",1610.95,"{""loyalty"": ""24%""}",207428,0,Europe +2023-09-14,14707,9725,"[""Laptop"", ""Monitor""]",2385.56,{},108432,1,North America +2024-11-04,14708,1144,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3123.78,"{""seasonal"": ""29%""}",130284,1,North America +2024-09-27,14709,5100,"[""Laptop""]",1694.15,"{"""": ""19%""}",47920,1,Europe +2023-03-10,14710,892,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2762.49,"{"""": ""12%""}",27354,0,North America +2023-01-27,14711,174,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4277.06,{},9442,0,Europe +2023-05-05,14712,3679,"[""Laptop""]",4466.51,{},48775,1,North America +2024-08-06,14713,8931,"[""Wireless Mouse"", ""Charger""]",3574.76,"{""loyalty"": ""21%""}",231251,0,South America +2024-08-27,14714,5864,"[""Phone""]",4951.43,"{""promo"": ""10%""}",171886,1,Africa +2023-10-08,14715,83,"[""Phone"", ""Laptop""]",3839.49,"{""loyalty"": ""9%""}",40800,0,Europe +2023-04-13,14716,8950,"[""Wireless Mouse"", ""Monitor""]",2069.12,{},1562,1,South America +2024-03-11,14717,761,"[""Keyboard"", ""Monitor"", ""Charger""]",1202.81,{},61570,0,South America +2023-07-12,14718,632,"[""Monitor""]",4768.05,{},98688,0,Asia +2024-09-28,14719,9433,"[""Monitor"", ""Headphones"", ""Phone""]",203.56,{},76649,0,Africa +2024-06-03,14720,265,"[""Wireless Mouse"", ""Keyboard""]",2565.91,{},278632,0,Asia +2023-07-05,14721,3081,"[""Tablet""]",983.23,{},289901,0,Europe +2024-10-12,14722,4571,"[""Tablet""]",806.29,"{""promo"": ""5%""}",249308,1,Asia +2024-06-05,14723,2172,"[""Tablet"", ""Charger"", ""Phone""]",1575.34,{},189194,1,North America +2024-04-25,14724,4528,"[""Monitor"", ""Phone""]",3308.14,"{""promo"": ""10%""}",75930,0,South America +2024-04-04,14725,269,"[""Wireless Mouse"", ""Phone""]",429.47,"{""promo"": ""19%""}",52856,0,North America +2023-08-27,14726,3849,"[""Wireless Mouse""]",120.87,{},129963,1,North America +2024-09-08,14727,3436,"[""Wireless Mouse"", ""Laptop""]",4326.95,"{""promo"": ""13%""}",274819,0,Asia +2024-09-02,14728,2523,"[""Tablet"", ""Phone""]",511.61,{},22098,0,Asia +2023-09-29,14729,7959,"[""Keyboard""]",2096.72,"{""seasonal"": ""24%""}",293661,1,North America +2024-04-17,14730,537,"[""Wireless Mouse"", ""Headphones""]",1860.31,{},161391,0,North America +2023-06-09,14731,2909,"[""Monitor""]",3879.71,"{""loyalty"": ""16%""}",30269,1,Asia +2024-02-08,14732,6069,"[""Charger""]",4233.0,{},123496,1,Europe +2023-12-17,14733,1740,"[""Tablet""]",4281.02,{},11759,1,Europe +2024-02-20,14734,5467,"[""Monitor"", ""Charger"", ""Tablet""]",2251.67,"{""promo"": ""15%""}",10939,1,Europe +2023-05-11,14735,7332,"[""Tablet"", ""Charger""]",1614.31,"{""seasonal"": ""6%""}",47074,1,Asia +2023-08-21,14736,5536,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1564.02,"{""promo"": ""25%""}",279148,1,North America +2024-06-14,14737,1963,"[""Laptop""]",3830.54,"{""promo"": ""11%""}",167294,0,Europe +2024-12-03,14738,7567,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4198.36,{},190115,1,South America +2023-12-05,14739,5747,"[""Tablet""]",409.53,{},154484,1,South America +2024-03-27,14740,4697,"[""Laptop"", ""Phone""]",1879.72,"{""seasonal"": ""23%""}",33809,0,Africa +2024-09-30,14741,1977,"[""Laptop"", ""Phone""]",307.69,{},200164,1,Africa +2024-03-03,14742,7818,"[""Phone"", ""Keyboard""]",2042.42,{},182154,1,Asia +2023-10-01,14743,3067,"[""Keyboard"", ""Tablet"", ""Monitor""]",3662.73,{},28791,0,North America +2023-07-31,14744,2297,"[""Laptop"", ""Keyboard"", ""Monitor""]",4432.81,{},221854,0,Asia +2023-08-27,14745,9743,"[""Wireless Mouse"", ""Phone""]",2042.07,"{""promo"": ""6%""}",283100,0,Africa +2023-10-13,14746,5437,"[""Phone"", ""Laptop"", ""Headphones""]",3240.27,{},262016,0,Europe +2023-09-09,14747,7883,"[""Monitor"", ""Headphones"", ""Laptop""]",4032.29,"{"""": ""15%""}",255303,1,North America +2023-01-25,14748,3576,"[""Laptop"", ""Keyboard""]",771.17,"{"""": ""27%""}",115938,1,North America +2024-08-08,14749,4246,"[""Monitor"", ""Tablet"", ""Headphones""]",3365.95,{},116622,1,Europe +2024-06-25,14750,8815,"[""Monitor"", ""Charger""]",2069.13,"{"""": ""15%""}",186928,1,Europe +2024-09-16,14751,2294,"[""Tablet""]",1715.43,{},78733,1,South America +2023-06-28,14752,2454,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3496.97,"{""seasonal"": ""23%""}",119348,0,Europe +2023-02-03,14753,1984,"[""Phone"", ""Laptop"", ""Charger""]",3628.03,{},293616,0,Africa +2023-09-21,14754,6515,"[""Monitor"", ""Keyboard"", ""Laptop""]",2535.59,{},190422,1,Europe +2023-03-03,14755,4870,"[""Keyboard""]",1653.92,"{""seasonal"": ""7%""}",175687,0,Europe +2023-03-28,14756,7033,"[""Laptop""]",4336.47,{},217802,1,Africa +2023-08-08,14757,689,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",704.05,{},138439,0,Asia +2023-10-19,14758,8058,"[""Tablet""]",4701.57,"{"""": ""13%""}",243480,1,North America +2024-03-20,14759,515,"[""Charger"", ""Keyboard""]",4227.16,{},17196,1,Africa +2023-02-07,14760,9290,"[""Laptop""]",1227.89,{},139562,1,Europe +2023-05-07,14761,2523,"[""Laptop"", ""Headphones"", ""Keyboard""]",4365.17,"{"""": ""10%""}",174554,1,Asia +2024-08-12,14762,9624,"[""Laptop"", ""Phone"", ""Keyboard""]",3241.71,{},246942,1,North America +2024-02-29,14763,6630,"[""Keyboard"", ""Phone"", ""Tablet""]",3736.56,"{""seasonal"": ""10%""}",143398,1,Africa +2023-04-27,14764,2483,"[""Monitor""]",4423.67,"{""seasonal"": ""9%""}",6444,1,Europe +2024-02-23,14765,7960,"[""Charger"", ""Wireless Mouse""]",1344.28,"{""loyalty"": ""20%""}",31032,0,Asia +2023-12-25,14766,2241,"[""Phone"", ""Tablet"", ""Monitor""]",2981.49,{},215912,0,North America +2023-01-01,14767,5290,"[""Headphones"", ""Wireless Mouse""]",1885.83,"{"""": ""25%""}",79358,1,South America +2023-06-28,14768,5768,"[""Charger"", ""Tablet"", ""Keyboard""]",3891.89,"{"""": ""23%""}",155418,0,Asia +2024-11-06,14769,2565,"[""Phone"", ""Monitor"", ""Charger""]",2350.61,"{"""": ""25%""}",47431,0,Asia +2024-06-27,14770,3722,"[""Laptop""]",285.27,"{""seasonal"": ""14%""}",248460,0,South America +2024-10-08,14771,4427,"[""Charger""]",3691.1,"{""seasonal"": ""29%""}",77181,0,South America +2023-01-18,14772,7347,"[""Phone"", ""Headphones"", ""Keyboard""]",892.45,"{""promo"": ""17%""}",28311,1,Europe +2023-10-11,14773,3216,"[""Charger"", ""Headphones""]",198.41,{},4336,1,Asia +2023-06-10,14774,7057,"[""Monitor""]",3040.95,{},221971,0,South America +2023-11-22,14775,9997,"[""Headphones"", ""Phone"", ""Laptop""]",269.21,{},271442,0,Europe +2024-05-31,14776,8204,"[""Laptop"", ""Monitor"", ""Keyboard""]",2692.35,{},132718,1,North America +2023-06-09,14777,866,"[""Laptop""]",2749.92,{},27278,1,Europe +2024-10-24,14778,7289,"[""Charger"", ""Headphones""]",2777.68,"{""seasonal"": ""16%""}",50562,1,Europe +2024-01-22,14779,8923,"[""Monitor""]",4252.97,"{""promo"": ""28%""}",184399,1,Africa +2024-09-03,14780,2604,"[""Tablet""]",3340.97,{},249277,0,South America +2023-08-28,14781,3883,"[""Phone"", ""Monitor"", ""Keyboard""]",50.61,{},25685,0,Europe +2024-03-11,14782,126,"[""Monitor"", ""Headphones"", ""Charger""]",4821.48,"{"""": ""30%""}",169413,0,South America +2024-07-14,14783,3145,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1641.91,"{""seasonal"": ""26%""}",126170,0,South America +2023-03-09,14784,347,"[""Keyboard"", ""Monitor""]",4758.82,"{""promo"": ""19%""}",210965,0,Europe +2023-03-07,14785,6029,"[""Keyboard""]",93.62,"{""seasonal"": ""29%""}",272421,1,South America +2023-01-08,14786,4194,"[""Headphones""]",2772.3,{},119719,0,Africa +2023-09-06,14787,6558,"[""Charger"", ""Tablet""]",987.15,{},51142,0,Europe +2023-05-20,14788,656,"[""Charger"", ""Keyboard"", ""Headphones""]",1813.65,"{""seasonal"": ""22%""}",186121,1,North America +2023-10-30,14789,7185,"[""Laptop"", ""Headphones""]",3942.43,{},17186,0,South America +2023-12-05,14790,9971,"[""Monitor""]",4152.87,{},292269,0,South America +2024-07-14,14791,3786,"[""Laptop"", ""Charger"", ""Keyboard""]",4669.97,{},202654,0,Africa +2023-10-18,14792,9652,"[""Keyboard""]",1608.26,"{"""": ""17%""}",67000,1,Europe +2023-07-01,14793,1461,"[""Laptop"", ""Charger"", ""Phone""]",1124.14,{},47888,0,North America +2023-11-28,14794,1607,"[""Headphones"", ""Charger""]",4966.81,{},80106,0,North America +2023-07-27,14795,9149,"[""Wireless Mouse"", ""Phone""]",3220.94,"{""seasonal"": ""11%""}",247009,0,Africa +2024-06-28,14796,3110,"[""Tablet"", ""Laptop""]",3750.7,"{"""": ""27%""}",162520,0,North America +2024-12-22,14797,1167,"[""Charger"", ""Laptop""]",1179.79,{},131854,1,Asia +2024-08-21,14798,5229,"[""Wireless Mouse""]",3893.95,{},251514,0,Africa +2024-01-12,14799,7483,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",459.23,{},105053,1,Africa +2023-05-17,14800,8579,"[""Phone""]",3605.29,"{""seasonal"": ""20%""}",51276,0,Europe +2024-12-15,14801,9485,"[""Charger""]",4668.78,{},36036,0,Europe +2023-03-24,14802,6195,"[""Headphones"", ""Monitor""]",558.12,"{"""": ""16%""}",251935,1,South America +2024-06-01,14803,5654,"[""Headphones""]",712.94,"{""seasonal"": ""8%""}",34418,1,Asia +2023-02-15,14804,3251,"[""Wireless Mouse"", ""Monitor""]",1920.87,{},191644,0,South America +2023-10-06,14805,7186,"[""Laptop"", ""Phone"", ""Tablet""]",4699.11,{},258004,0,North America +2024-05-10,14806,3309,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1079.41,"{"""": ""7%""}",16412,1,Asia +2023-09-18,14807,5675,"[""Tablet"", ""Wireless Mouse""]",3203.59,{},263267,1,Europe +2024-07-27,14808,8010,"[""Tablet""]",213.18,{},16482,1,Asia +2023-04-05,14809,5891,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1188.12,"{"""": ""7%""}",231412,0,Africa +2023-08-12,14810,3804,"[""Phone"", ""Tablet"", ""Charger""]",1635.16,"{"""": ""8%""}",249365,0,South America +2024-08-09,14811,6771,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3190.8,{},82450,0,South America +2023-01-16,14812,2227,"[""Wireless Mouse""]",2471.49,{},55241,1,Asia +2023-02-24,14813,6646,"[""Monitor"", ""Phone""]",3508.16,"{""loyalty"": ""26%""}",166538,1,Europe +2024-04-21,14814,8243,"[""Tablet"", ""Monitor"", ""Laptop""]",2119.9,{},265093,1,Asia +2023-06-11,14815,6888,"[""Monitor"", ""Tablet""]",329.34,"{""loyalty"": ""5%""}",111053,1,Africa +2023-10-16,14816,6239,"[""Tablet"", ""Headphones"", ""Monitor""]",1807.99,{},116079,0,Europe +2023-01-23,14817,5636,"[""Laptop""]",1903.72,"{""promo"": ""20%""}",233995,1,North America +2023-10-28,14818,3221,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",991.18,"{""seasonal"": ""22%""}",111866,1,Asia +2023-06-10,14819,3391,"[""Monitor"", ""Charger""]",2886.71,{},257518,0,Africa +2023-07-10,14820,845,"[""Wireless Mouse"", ""Laptop""]",4888.13,"{""seasonal"": ""12%""}",57314,0,South America +2024-11-07,14821,9289,"[""Laptop"", ""Keyboard""]",4145.28,{},29117,1,South America +2023-03-05,14822,6643,"[""Monitor"", ""Phone""]",3692.67,{},282953,1,Asia +2023-10-08,14823,9142,"[""Charger""]",2085.93,{},115791,0,North America +2023-12-21,14824,3485,"[""Keyboard"", ""Phone"", ""Monitor""]",2884.7,{},177072,0,Asia +2024-08-15,14825,4680,"[""Tablet"", ""Monitor""]",3018.16,"{""promo"": ""29%""}",67846,0,Africa +2023-04-27,14826,7515,"[""Charger"", ""Wireless Mouse""]",233.33,"{""promo"": ""19%""}",8233,1,Asia +2024-05-23,14827,6652,"[""Wireless Mouse"", ""Laptop""]",958.99,"{""seasonal"": ""24%""}",71492,0,Africa +2023-08-24,14828,3718,"[""Keyboard"", ""Headphones""]",2193.85,{},124573,1,Europe +2023-11-10,14829,4865,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1404.41,"{""promo"": ""9%""}",53907,0,North America +2023-01-30,14830,1400,"[""Charger""]",3497.53,{},53357,1,Africa +2023-04-24,14831,4451,"[""Charger"", ""Keyboard""]",1408.03,{},255308,0,North America +2024-11-17,14832,2173,"[""Keyboard"", ""Phone""]",1040.82,{},26041,1,Europe +2024-04-18,14833,1044,"[""Charger""]",4439.54,{},93150,0,Europe +2024-08-07,14834,5134,"[""Phone"", ""Wireless Mouse""]",2103.57,"{""loyalty"": ""15%""}",177590,1,South America +2024-07-08,14835,9144,"[""Charger""]",1561.86,"{""promo"": ""12%""}",116423,1,Asia +2023-11-13,14836,1033,"[""Phone"", ""Monitor""]",83.83,{},187795,0,Africa +2023-08-21,14837,5463,"[""Charger"", ""Wireless Mouse""]",1642.14,{},243341,1,North America +2024-02-23,14838,7454,"[""Laptop""]",2873.62,{},1720,1,South America +2024-12-13,14839,6064,"[""Charger""]",530.8,"{""seasonal"": ""7%""}",254843,1,Europe +2024-04-07,14840,6482,"[""Keyboard"", ""Tablet""]",3564.09,"{"""": ""22%""}",142067,0,Asia +2023-09-30,14841,1671,"[""Charger""]",2179.69,"{"""": ""5%""}",6284,1,Africa +2024-12-12,14842,6557,"[""Phone""]",1184.69,"{""loyalty"": ""21%""}",225289,0,Africa +2023-06-18,14843,5304,"[""Laptop"", ""Keyboard""]",3515.43,"{""loyalty"": ""29%""}",122142,1,Asia +2024-11-20,14844,6146,"[""Headphones"", ""Monitor""]",1788.63,"{""promo"": ""28%""}",281382,1,North America +2023-05-03,14845,6636,"[""Phone"", ""Charger""]",3414.06,{},158031,0,North America +2023-10-21,14846,3852,"[""Charger"", ""Laptop""]",2502.88,"{""seasonal"": ""16%""}",154617,1,Asia +2023-10-04,14847,3687,"[""Wireless Mouse""]",4492.99,"{"""": ""28%""}",22731,0,Africa +2023-11-30,14848,7451,"[""Tablet"", ""Charger""]",4388.45,{},167912,1,North America +2023-12-10,14849,9743,"[""Keyboard""]",4476.46,{},233712,0,Asia +2023-10-13,14850,6754,"[""Wireless Mouse"", ""Keyboard""]",4292.26,{},204611,0,Asia +2024-05-15,14851,6698,"[""Monitor"", ""Phone""]",1676.98,"{""loyalty"": ""9%""}",59868,1,Asia +2023-10-11,14852,5816,"[""Keyboard""]",3683.15,"{""seasonal"": ""27%""}",235007,0,Europe +2023-04-05,14853,3390,"[""Monitor""]",4925.31,"{""loyalty"": ""15%""}",5383,0,South America +2023-10-05,14854,3385,"[""Headphones"", ""Keyboard""]",657.94,{},66037,0,Africa +2023-04-09,14855,5065,"[""Laptop"", ""Monitor""]",579.77,"{""loyalty"": ""28%""}",179874,1,Asia +2024-03-24,14856,3086,"[""Charger"", ""Phone""]",432.28,"{""seasonal"": ""11%""}",249175,0,North America +2023-09-07,14857,1635,"[""Laptop"", ""Charger"", ""Monitor""]",3087.27,"{"""": ""9%""}",104173,1,Europe +2023-09-23,14858,6768,"[""Headphones"", ""Monitor""]",212.31,"{"""": ""21%""}",21454,1,South America +2023-10-07,14859,3133,"[""Headphones"", ""Tablet""]",2130.62,{},184276,0,North America +2024-03-17,14860,8923,"[""Wireless Mouse""]",962.02,"{""seasonal"": ""8%""}",47836,0,Europe +2024-02-19,14861,9482,"[""Tablet"", ""Wireless Mouse""]",1837.34,{},284420,0,North America +2023-11-07,14862,9352,"[""Charger"", ""Tablet"", ""Monitor""]",2332.0,"{""promo"": ""12%""}",260684,0,Africa +2023-03-25,14863,9847,"[""Headphones"", ""Tablet""]",3222.51,"{"""": ""9%""}",138541,1,North America +2024-09-22,14864,7056,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",96.58,"{""loyalty"": ""16%""}",258742,0,Europe +2023-05-28,14865,5068,"[""Headphones"", ""Tablet"", ""Phone""]",4521.41,{},219445,1,Europe +2023-11-17,14866,4457,"[""Headphones""]",2336.53,"{""loyalty"": ""15%""}",107125,0,South America +2023-08-17,14867,5628,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3569.87,"{""seasonal"": ""12%""}",184309,0,Asia +2024-05-04,14868,2495,"[""Phone"", ""Headphones"", ""Laptop""]",1057.8,"{""loyalty"": ""8%""}",157433,0,South America +2023-11-28,14869,6276,"[""Wireless Mouse""]",470.45,{},116846,1,North America +2023-12-28,14870,2320,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3179.0,"{""loyalty"": ""25%""}",284318,0,South America +2023-11-23,14871,4871,"[""Laptop"", ""Phone"", ""Tablet""]",916.36,"{""loyalty"": ""18%""}",44019,0,Asia +2024-06-28,14872,9814,"[""Keyboard"", ""Tablet""]",1391.33,"{""promo"": ""23%""}",273200,1,South America +2024-06-12,14873,2008,"[""Phone""]",2665.3,"{"""": ""19%""}",53890,1,Asia +2023-06-12,14874,1532,"[""Keyboard"", ""Headphones""]",4473.53,{},277343,1,Asia +2023-03-06,14875,3940,"[""Charger"", ""Headphones""]",622.04,{},129457,1,North America +2024-03-04,14876,4431,"[""Monitor"", ""Phone"", ""Headphones""]",906.65,"{""promo"": ""18%""}",124364,0,Europe +2024-11-08,14877,3065,"[""Charger""]",1328.5,{},30260,1,Asia +2024-10-20,14878,8699,"[""Laptop""]",4853.15,"{""loyalty"": ""29%""}",42662,1,South America +2024-12-17,14879,410,"[""Laptop""]",2330.8,"{""seasonal"": ""5%""}",171372,1,Asia +2024-04-11,14880,392,"[""Tablet"", ""Headphones"", ""Monitor""]",3935.38,"{""loyalty"": ""9%""}",175543,1,Asia +2023-11-10,14881,924,"[""Phone""]",3863.75,{},253417,1,South America +2023-04-16,14882,5899,"[""Phone""]",617.95,"{"""": ""26%""}",113845,0,Africa +2023-01-17,14883,7413,"[""Monitor""]",3957.68,"{"""": ""19%""}",91394,0,Africa +2023-10-22,14884,7072,"[""Headphones"", ""Phone""]",3357.72,"{""promo"": ""25%""}",41457,1,Europe +2024-04-23,14885,2015,"[""Wireless Mouse"", ""Keyboard""]",647.92,"{"""": ""20%""}",262653,0,Africa +2024-06-01,14886,2960,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4784.76,"{""seasonal"": ""23%""}",207746,0,Africa +2023-12-07,14887,3393,"[""Charger""]",4942.8,{},121578,1,North America +2023-05-17,14888,4316,"[""Wireless Mouse"", ""Laptop""]",2266.14,"{""seasonal"": ""17%""}",57103,0,Europe +2023-05-19,14889,2660,"[""Headphones""]",4333.7,{},236345,0,Africa +2023-07-22,14890,3398,"[""Keyboard"", ""Headphones""]",4977.45,"{""loyalty"": ""6%""}",222590,0,North America +2023-08-28,14891,3880,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3920.2,{},224061,0,Europe +2023-11-28,14892,9672,"[""Phone"", ""Monitor""]",2881.24,"{""seasonal"": ""14%""}",11517,0,Africa +2024-09-26,14893,9058,"[""Phone""]",151.96,{},83563,0,South America +2024-01-24,14894,1270,"[""Monitor""]",409.46,"{""loyalty"": ""12%""}",30403,1,South America +2023-12-28,14895,9917,"[""Keyboard"", ""Phone"", ""Tablet""]",92.65,{},128989,1,Asia +2023-08-14,14896,6184,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1121.24,"{""loyalty"": ""17%""}",272407,1,Europe +2024-11-11,14897,9697,"[""Monitor""]",1035.09,"{""promo"": ""26%""}",16885,1,Asia +2024-07-27,14898,7250,"[""Keyboard"", ""Monitor"", ""Tablet""]",3160.9,"{"""": ""5%""}",6586,1,Africa +2023-11-19,14899,8491,"[""Charger"", ""Monitor"", ""Headphones""]",685.04,"{""loyalty"": ""19%""}",28723,0,South America +2024-01-26,14900,3928,"[""Charger"", ""Keyboard"", ""Monitor""]",3418.81,"{"""": ""22%""}",186555,1,Europe +2024-04-19,14901,7164,"[""Monitor""]",3309.26,{},210896,1,South America +2024-10-30,14902,479,"[""Tablet"", ""Charger"", ""Monitor""]",1050.24,"{""loyalty"": ""30%""}",251998,1,Europe +2023-01-17,14903,4154,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3690.35,"{"""": ""8%""}",20092,0,South America +2024-07-10,14904,3968,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4058.91,{},91243,1,South America +2023-07-20,14905,5739,"[""Laptop""]",2886.25,{},212633,0,South America +2023-05-03,14906,6570,"[""Tablet"", ""Keyboard"", ""Headphones""]",4488.01,{},209165,1,Africa +2023-01-21,14907,8702,"[""Headphones""]",1614.46,{},114454,0,Africa +2023-09-04,14908,7951,"[""Keyboard"", ""Charger"", ""Tablet""]",2465.16,"{""loyalty"": ""23%""}",47072,1,Africa +2024-11-12,14909,8665,"[""Keyboard"", ""Wireless Mouse""]",1691.99,"{""loyalty"": ""15%""}",18347,1,North America +2023-11-17,14910,6770,"[""Wireless Mouse""]",572.67,{},29625,0,Asia +2024-04-01,14911,2607,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1764.06,"{""promo"": ""19%""}",199869,1,Europe +2023-03-31,14912,2150,"[""Headphones"", ""Keyboard""]",844.83,"{""promo"": ""7%""}",209258,0,Asia +2023-05-26,14913,6480,"[""Monitor"", ""Keyboard""]",3214.56,{},292164,0,North America +2023-11-28,14914,495,"[""Tablet"", ""Phone""]",3650.99,"{""promo"": ""21%""}",112608,0,Europe +2023-07-23,14915,6167,"[""Charger"", ""Phone"", ""Headphones""]",4660.43,"{""loyalty"": ""20%""}",43528,0,Europe +2023-12-18,14916,7169,"[""Laptop""]",3486.51,{},6544,1,Asia +2023-02-03,14917,2995,"[""Laptop"", ""Headphones""]",3055.17,"{""promo"": ""18%""}",225064,1,Africa +2024-10-12,14918,2723,"[""Monitor""]",3400.2,"{"""": ""5%""}",290973,0,Europe +2023-11-08,14919,7824,"[""Keyboard"", ""Phone"", ""Headphones""]",2456.38,{},170882,0,North America +2024-12-14,14920,5710,"[""Tablet"", ""Headphones"", ""Charger""]",1412.36,{},163422,1,North America +2023-05-23,14921,5487,"[""Laptop"", ""Keyboard""]",3224.4,{},229200,0,North America +2024-04-15,14922,6441,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",316.1,{},155712,1,South America +2023-12-22,14923,2208,"[""Monitor"", ""Laptop""]",2264.19,{},147345,0,Asia +2024-10-28,14924,7073,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2696.97,"{""loyalty"": ""15%""}",211723,0,South America +2023-09-14,14925,9473,"[""Laptop""]",2355.29,"{"""": ""14%""}",185248,1,South America +2023-03-30,14926,7531,"[""Charger"", ""Tablet""]",204.28,"{""seasonal"": ""12%""}",62031,1,Africa +2024-04-08,14927,6274,"[""Keyboard"", ""Headphones""]",2792.22,"{"""": ""6%""}",192047,0,South America +2024-03-01,14928,2370,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3832.87,"{"""": ""13%""}",150446,1,Europe +2023-10-28,14929,1000,"[""Laptop"", ""Tablet""]",2216.12,{},295234,1,Asia +2024-10-21,14930,5663,"[""Charger""]",4775.22,"{""loyalty"": ""10%""}",217966,0,Asia +2024-02-03,14931,4197,"[""Laptop""]",3345.63,"{""promo"": ""24%""}",261796,0,South America +2024-12-16,14932,5730,"[""Headphones"", ""Tablet""]",4736.82,{},38609,0,Europe +2024-10-06,14933,8736,"[""Wireless Mouse""]",1863.94,"{"""": ""29%""}",237748,1,South America +2024-09-16,14934,3548,"[""Phone"", ""Wireless Mouse""]",4200.26,"{""promo"": ""11%""}",159199,0,South America +2024-01-21,14935,6693,"[""Tablet"", ""Phone"", ""Laptop""]",3908.68,"{"""": ""9%""}",297606,1,Africa +2024-02-12,14936,5433,"[""Laptop"", ""Headphones""]",2899.08,"{""loyalty"": ""28%""}",80327,1,South America +2023-06-12,14937,690,"[""Wireless Mouse"", ""Keyboard""]",3922.51,{},59972,0,North America +2024-12-19,14938,5071,"[""Headphones"", ""Laptop""]",3109.84,"{""promo"": ""29%""}",281609,1,South America +2023-09-28,14939,525,"[""Tablet""]",4303.39,"{""seasonal"": ""20%""}",106593,0,North America +2024-03-20,14940,6247,"[""Wireless Mouse""]",4822.34,"{""loyalty"": ""16%""}",289249,1,South America +2024-09-19,14941,7372,"[""Wireless Mouse""]",4287.24,{},30752,0,South America +2024-09-27,14942,2022,"[""Laptop"", ""Monitor"", ""Keyboard""]",4589.32,{},224484,0,South America +2023-09-09,14943,8341,"[""Wireless Mouse""]",4136.59,{},107938,1,Asia +2024-08-15,14944,8917,"[""Charger"", ""Tablet"", ""Keyboard""]",4472.49,"{""promo"": ""30%""}",76575,1,Asia +2024-08-17,14945,2972,"[""Laptop"", ""Keyboard"", ""Phone""]",3985.43,{},200851,0,South America +2023-12-08,14946,2598,"[""Phone""]",1465.68,{},104238,0,Europe +2023-04-29,14947,6630,"[""Tablet""]",1877.5,{},110767,1,Europe +2023-11-22,14948,6486,"[""Phone"", ""Laptop""]",3803.05,{},296831,1,Africa +2023-04-18,14949,8462,"[""Wireless Mouse"", ""Phone""]",4647.53,{},258906,0,South America +2023-08-31,14950,1165,"[""Monitor""]",243.63,{},252801,0,Europe +2023-06-15,14951,594,"[""Phone"", ""Monitor""]",70.58,{},268089,0,Europe +2024-06-07,14952,688,"[""Monitor"", ""Tablet"", ""Keyboard""]",393.63,"{""loyalty"": ""24%""}",76460,0,North America +2023-06-26,14953,5430,"[""Monitor"", ""Wireless Mouse""]",896.39,{},225169,1,Asia +2023-05-18,14954,9599,"[""Laptop"", ""Phone"", ""Monitor""]",3309.46,{},44212,1,Asia +2024-01-07,14955,182,"[""Headphones"", ""Monitor"", ""Phone""]",3237.12,{},31693,0,North America +2024-02-13,14956,2907,"[""Charger""]",840.93,{},34193,1,Africa +2024-03-15,14957,6410,"[""Phone""]",4016.39,"{"""": ""7%""}",167245,1,North America +2024-06-29,14958,7117,"[""Laptop""]",3356.86,"{""loyalty"": ""16%""}",233510,1,Asia +2024-12-12,14959,2532,"[""Charger"", ""Tablet""]",4765.09,{},153721,1,Europe +2024-09-04,14960,223,"[""Charger""]",3463.68,{},169926,1,South America +2023-09-05,14961,7437,"[""Headphones""]",4359.99,"{""loyalty"": ""22%""}",4210,1,Europe +2023-11-14,14962,1170,"[""Tablet"", ""Headphones"", ""Keyboard""]",4215.27,"{""loyalty"": ""29%""}",275145,1,Europe +2024-03-10,14963,1969,"[""Tablet""]",2799.38,"{"""": ""16%""}",95520,1,North America +2023-02-12,14964,3547,"[""Laptop""]",2744.7,{},2159,0,Europe +2023-03-24,14965,6655,"[""Laptop"", ""Tablet""]",1491.07,"{"""": ""26%""}",214183,0,Asia +2024-12-11,14966,2383,"[""Charger"", ""Wireless Mouse""]",72.85,{},245478,1,Africa +2023-12-30,14967,7856,"[""Keyboard"", ""Tablet""]",1156.68,"{""promo"": ""9%""}",218471,0,South America +2024-05-08,14968,8106,"[""Monitor"", ""Phone""]",1336.57,"{""promo"": ""27%""}",76360,1,South America +2024-10-03,14969,3039,"[""Phone""]",2857.47,{},77254,0,South America +2023-12-01,14970,1149,"[""Laptop""]",4903.73,{},132073,1,Asia +2024-07-04,14971,5491,"[""Headphones""]",4480.34,"{""seasonal"": ""5%""}",88868,0,Europe +2024-01-30,14972,5794,"[""Headphones"", ""Keyboard"", ""Monitor""]",2861.24,"{"""": ""5%""}",52487,0,Europe +2024-08-24,14973,3692,"[""Phone"", ""Headphones""]",2601.49,{},130511,1,North America +2024-10-18,14974,947,"[""Phone""]",784.95,"{""promo"": ""27%""}",147271,1,Europe +2023-04-17,14975,3476,"[""Wireless Mouse""]",3135.72,{},11538,0,Africa +2024-02-20,14976,7503,"[""Keyboard"", ""Charger"", ""Monitor""]",784.13,"{""promo"": ""12%""}",107308,1,Africa +2024-09-22,14977,2824,"[""Headphones"", ""Phone""]",2895.49,"{""loyalty"": ""9%""}",180108,1,Asia +2024-07-30,14978,6224,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2012.16,"{""promo"": ""5%""}",21197,0,South America +2024-03-22,14979,9855,"[""Keyboard"", ""Charger"", ""Headphones""]",252.07,{},258444,1,North America +2024-06-23,14980,7728,"[""Keyboard""]",4013.59,{},71983,0,South America +2024-10-13,14981,2730,"[""Headphones"", ""Monitor"", ""Tablet""]",648.56,"{""loyalty"": ""18%""}",231807,0,South America +2024-09-18,14982,9473,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",926.01,"{""promo"": ""19%""}",87064,0,South America +2024-07-16,14983,5239,"[""Keyboard"", ""Headphones""]",2293.44,"{""promo"": ""27%""}",268669,1,Asia +2023-03-22,14984,9282,"[""Charger"", ""Monitor""]",1792.68,"{"""": ""13%""}",100363,0,Asia +2023-03-26,14985,4004,"[""Tablet"", ""Wireless Mouse""]",1264.48,{},23840,0,Asia +2024-07-12,14986,954,"[""Monitor"", ""Charger""]",2165.5,{},157342,0,North America +2024-11-05,14987,3336,"[""Headphones""]",2033.39,{},166070,0,North America +2024-11-11,14988,7386,"[""Headphones""]",4422.66,"{""loyalty"": ""20%""}",69122,0,North America +2024-01-31,14989,6997,"[""Charger"", ""Keyboard""]",1937.59,{},6661,0,Europe +2024-10-05,14990,7977,"[""Charger"", ""Laptop""]",2853.54,{},25393,0,Africa +2023-09-23,14991,827,"[""Keyboard"", ""Charger""]",2501.39,"{"""": ""10%""}",243864,1,Europe +2023-02-12,14992,7653,"[""Keyboard"", ""Headphones"", ""Tablet""]",244.05,"{""seasonal"": ""13%""}",2495,1,Africa +2024-11-11,14993,8410,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1787.38,"{""seasonal"": ""29%""}",237733,0,Asia +2024-11-06,14994,6403,"[""Laptop""]",4128.13,{},77063,0,Africa +2023-05-10,14995,727,"[""Headphones"", ""Phone""]",4889.16,{},127895,0,Europe +2023-01-15,14996,3463,"[""Laptop"", ""Phone"", ""Charger""]",131.55,"{""promo"": ""18%""}",248077,1,Africa +2024-11-18,14997,2098,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3036.15,{},153226,0,South America +2023-06-04,14998,2323,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1592.44,"{""promo"": ""22%""}",42761,1,Europe +2023-12-13,14999,3284,"[""Tablet""]",2418.85,"{""loyalty"": ""25%""}",19753,0,North America +2023-09-15,15000,6614,"[""Charger"", ""Tablet"", ""Phone""]",457.94,"{""loyalty"": ""28%""}",121982,0,Europe +2023-09-19,15001,6207,"[""Phone"", ""Charger"", ""Keyboard""]",3991.94,"{""promo"": ""18%""}",295631,0,Africa +2023-09-27,15002,5318,"[""Monitor"", ""Charger"", ""Keyboard""]",1674.35,{},261816,1,Africa +2023-12-03,15003,5231,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1102.31,{},223012,1,Europe +2024-09-29,15004,4906,"[""Keyboard"", ""Headphones"", ""Laptop""]",4251.76,"{"""": ""28%""}",218744,0,North America +2024-10-11,15005,6466,"[""Keyboard"", ""Charger""]",2634.15,{},234385,0,Africa +2024-04-15,15006,2955,"[""Charger""]",656.01,{},130582,1,Europe +2024-05-23,15007,2506,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3308.48,"{"""": ""12%""}",197723,1,Europe +2024-02-22,15008,8316,"[""Laptop""]",4358.06,"{""loyalty"": ""30%""}",50960,0,Europe +2023-11-15,15009,4522,"[""Phone"", ""Keyboard"", ""Monitor""]",732.79,"{""promo"": ""14%""}",196377,1,North America +2024-04-01,15010,4380,"[""Monitor"", ""Laptop"", ""Tablet""]",4523.07,{},189308,0,Africa +2023-12-06,15011,9477,"[""Wireless Mouse""]",4771.54,{},62282,1,Asia +2023-05-12,15012,4894,"[""Monitor"", ""Charger""]",871.22,"{""seasonal"": ""7%""}",6672,1,Africa +2023-10-27,15013,6568,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1805.5,{},207693,0,South America +2024-05-06,15014,8680,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1824.15,{},274723,1,Asia +2023-02-01,15015,8571,"[""Tablet"", ""Wireless Mouse""]",4136.06,{},78021,1,South America +2023-12-12,15016,7930,"[""Headphones"", ""Charger""]",2535.91,"{"""": ""23%""}",53860,1,Europe +2023-05-21,15017,1026,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4742.46,{},60456,1,Asia +2023-03-27,15018,4990,"[""Laptop"", ""Headphones""]",323.67,"{""seasonal"": ""8%""}",84468,0,Africa +2024-10-21,15019,5176,"[""Tablet""]",3513.7,"{""promo"": ""9%""}",202991,1,South America +2024-10-21,15020,9769,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1536.22,"{""promo"": ""25%""}",151887,0,Asia +2023-06-24,15021,2222,"[""Monitor"", ""Phone"", ""Tablet""]",1955.45,{},181280,1,North America +2023-04-04,15022,1328,"[""Keyboard"", ""Headphones"", ""Monitor""]",4558.07,{},21427,0,North America +2024-08-22,15023,5872,"[""Charger"", ""Monitor"", ""Tablet""]",2730.26,"{"""": ""18%""}",129457,1,North America +2023-05-05,15024,4422,"[""Headphones""]",2546.17,"{""promo"": ""26%""}",150372,1,Europe +2023-08-13,15025,4645,"[""Phone""]",1408.34,{},37062,0,South America +2023-08-27,15026,2469,"[""Charger"", ""Monitor"", ""Headphones""]",215.17,"{""loyalty"": ""24%""}",227602,1,South America +2023-07-06,15027,1010,"[""Tablet""]",579.43,"{""promo"": ""21%""}",221027,1,South America +2024-04-06,15028,3503,"[""Keyboard""]",4757.71,"{""loyalty"": ""24%""}",90996,1,North America +2023-04-21,15029,5949,"[""Wireless Mouse""]",3278.12,"{"""": ""30%""}",252345,1,Africa +2023-01-10,15030,5442,"[""Headphones"", ""Keyboard"", ""Charger""]",3780.58,{},297016,0,Asia +2023-09-18,15031,1792,"[""Charger"", ""Keyboard""]",696.59,{},108237,0,South America +2024-02-23,15032,5318,"[""Wireless Mouse"", ""Tablet""]",4376.18,"{""seasonal"": ""5%""}",210241,0,North America +2024-12-27,15033,8935,"[""Charger"", ""Tablet"", ""Headphones""]",237.23,{},124439,0,Europe +2024-10-29,15034,8502,"[""Laptop"", ""Tablet"", ""Phone""]",1872.64,"{""promo"": ""6%""}",199926,1,South America +2023-01-16,15035,3274,"[""Wireless Mouse""]",1218.16,{},65748,1,South America +2024-02-26,15036,6339,"[""Wireless Mouse"", ""Headphones""]",1082.98,"{""loyalty"": ""11%""}",52963,1,North America +2024-03-18,15037,7369,"[""Charger"", ""Headphones""]",4087.83,"{""loyalty"": ""29%""}",145404,0,Africa +2023-09-19,15038,6817,"[""Tablet""]",4179.47,"{""seasonal"": ""28%""}",27362,0,Asia +2024-08-22,15039,7563,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4057.98,"{""promo"": ""16%""}",240383,1,Europe +2024-10-13,15040,7240,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2363.99,{},134786,1,Africa +2023-10-02,15041,7324,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1076.39,"{"""": ""14%""}",209643,1,Europe +2023-10-09,15042,2921,"[""Phone"", ""Charger""]",2128.97,"{""seasonal"": ""6%""}",241067,0,South America +2023-10-11,15043,3643,"[""Phone""]",3570.27,"{"""": ""10%""}",56337,0,Africa +2024-07-28,15044,4744,"[""Phone"", ""Laptop"", ""Headphones""]",376.14,{},96251,0,Africa +2023-05-26,15045,7726,"[""Wireless Mouse"", ""Tablet""]",4210.1,{},37040,0,Africa +2024-01-17,15046,7153,"[""Phone"", ""Charger""]",429.51,"{""promo"": ""27%""}",249881,0,Asia +2024-10-10,15047,3755,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2827.15,{},195935,1,South America +2023-10-31,15048,6495,"[""Charger"", ""Laptop"", ""Tablet""]",825.29,"{""loyalty"": ""26%""}",78191,1,Europe +2023-07-07,15049,9020,"[""Tablet"", ""Laptop"", ""Headphones""]",665.8,{},292532,1,Asia +2023-06-11,15050,620,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3278.35,{},185534,0,Africa +2023-02-04,15051,7175,"[""Keyboard""]",3219.04,"{""seasonal"": ""8%""}",95766,0,Africa +2023-02-13,15052,7017,"[""Headphones"", ""Laptop"", ""Phone""]",503.78,"{""seasonal"": ""5%""}",283031,0,North America +2023-06-13,15053,9265,"[""Charger"", ""Tablet"", ""Phone""]",1418.75,{},110616,0,North America +2024-06-13,15054,1013,"[""Monitor"", ""Charger""]",2252.71,{},111470,0,Asia +2023-09-03,15055,6349,"[""Keyboard""]",3528.71,"{""loyalty"": ""14%""}",232881,1,Africa +2023-09-21,15056,6202,"[""Charger""]",1332.68,{},19833,0,Africa +2023-08-02,15057,4219,"[""Phone"", ""Headphones""]",3654.21,{},22697,0,Europe +2024-11-12,15058,5865,"[""Charger""]",1527.73,{},127779,0,Europe +2024-09-11,15059,1502,"[""Tablet"", ""Headphones""]",3803.73,{},90459,1,Asia +2023-07-20,15060,8869,"[""Headphones"", ""Phone""]",1820.59,"{""loyalty"": ""26%""}",283175,1,North America +2023-05-24,15061,5562,"[""Keyboard"", ""Phone""]",1987.52,{},251878,1,South America +2023-08-31,15062,2805,"[""Charger"", ""Headphones""]",4349.3,"{"""": ""8%""}",89180,0,Europe +2023-10-07,15063,2862,"[""Wireless Mouse""]",2950.48,{},73062,1,North America +2024-10-15,15064,7839,"[""Monitor""]",3963.33,"{""loyalty"": ""22%""}",119876,0,Africa +2023-03-20,15065,4860,"[""Charger""]",2418.15,"{""seasonal"": ""16%""}",20834,0,Europe +2024-12-22,15066,3662,"[""Laptop"", ""Tablet"", ""Headphones""]",2442.57,{},277500,1,Asia +2024-12-25,15067,7943,"[""Headphones"", ""Keyboard"", ""Monitor""]",3466.69,{},70071,0,Africa +2024-05-22,15068,6210,"[""Laptop""]",4621.8,"{""promo"": ""29%""}",22293,0,Asia +2024-01-11,15069,2296,"[""Keyboard"", ""Phone"", ""Laptop""]",2204.97,"{""loyalty"": ""22%""}",289777,1,South America +2023-06-02,15070,8105,"[""Keyboard""]",4074.68,{},107563,1,Africa +2023-06-20,15071,2585,"[""Charger"", ""Keyboard""]",1633.98,"{""seasonal"": ""21%""}",119477,1,Africa +2023-12-15,15072,7970,"[""Charger"", ""Monitor""]",1595.87,"{""seasonal"": ""5%""}",128315,0,Africa +2024-09-18,15073,9115,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3736.76,{},148286,1,North America +2023-11-30,15074,5689,"[""Phone"", ""Charger""]",2453.52,{},79253,0,Asia +2023-10-23,15075,1864,"[""Phone""]",4390.61,"{""loyalty"": ""8%""}",139280,0,North America +2023-08-15,15076,5115,"[""Headphones"", ""Laptop"", ""Keyboard""]",3427.48,"{""promo"": ""13%""}",28595,0,Africa +2024-07-05,15077,9612,"[""Laptop"", ""Keyboard"", ""Monitor""]",714.27,{},276334,1,South America +2023-02-16,15078,9961,"[""Headphones""]",119.73,"{""seasonal"": ""17%""}",263544,1,Africa +2023-01-13,15079,1672,"[""Laptop"", ""Monitor"", ""Charger""]",1626.29,{},172784,1,Africa +2023-04-07,15080,8812,"[""Headphones""]",1583.62,"{""loyalty"": ""16%""}",87823,1,North America +2023-07-13,15081,3474,"[""Charger""]",2850.23,{},28529,0,North America +2023-08-28,15082,8573,"[""Laptop"", ""Tablet"", ""Phone""]",2997.53,"{""promo"": ""20%""}",206004,1,South America +2023-07-15,15083,1366,"[""Keyboard"", ""Phone"", ""Laptop""]",2061.96,"{""loyalty"": ""6%""}",200550,0,North America +2023-03-06,15084,6245,"[""Phone"", ""Monitor"", ""Laptop""]",709.66,{},72540,0,Africa +2023-04-17,15085,6340,"[""Laptop"", ""Charger"", ""Monitor""]",1513.27,"{""loyalty"": ""17%""}",35278,0,Africa +2024-10-09,15086,4046,"[""Wireless Mouse"", ""Laptop""]",1956.76,"{""loyalty"": ""30%""}",102859,0,Europe +2023-05-08,15087,6569,"[""Headphones""]",519.75,"{"""": ""11%""}",72772,1,Africa +2023-11-20,15088,4868,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3672.94,{},286752,0,Africa +2024-04-23,15089,6651,"[""Wireless Mouse""]",2992.84,{},219765,0,Asia +2024-01-06,15090,687,"[""Keyboard""]",1882.74,"{"""": ""22%""}",78251,1,North America +2024-01-30,15091,8977,"[""Tablet"", ""Headphones"", ""Phone""]",3488.01,"{""promo"": ""7%""}",98843,0,Asia +2023-11-27,15092,2795,"[""Phone""]",1798.07,{},287824,0,North America +2023-01-24,15093,8039,"[""Wireless Mouse"", ""Phone""]",3513.22,"{""loyalty"": ""8%""}",135860,0,Africa +2023-10-20,15094,9963,"[""Monitor""]",3873.23,"{""seasonal"": ""7%""}",171974,0,North America +2023-04-08,15095,8673,"[""Headphones"", ""Charger""]",2806.21,{},42428,0,Europe +2023-06-14,15096,7134,"[""Phone""]",4372.97,"{""seasonal"": ""27%""}",195586,0,Africa +2024-03-31,15097,8063,"[""Tablet"", ""Phone"", ""Keyboard""]",284.46,"{""loyalty"": ""11%""}",215039,1,Europe +2024-01-26,15098,6994,"[""Monitor"", ""Keyboard"", ""Phone""]",4930.05,"{""seasonal"": ""17%""}",187042,0,South America +2024-10-21,15099,3402,"[""Charger"", ""Headphones"", ""Laptop""]",3849.88,{},24010,1,Europe +2023-04-14,15100,4392,"[""Keyboard"", ""Laptop"", ""Charger""]",4588.2,{},157442,0,North America +2024-08-13,15101,4258,"[""Headphones"", ""Laptop"", ""Charger""]",4049.51,{},129282,0,Asia +2024-06-08,15102,2822,"[""Tablet"", ""Monitor""]",3587.39,"{""promo"": ""18%""}",196423,0,Asia +2023-07-05,15103,2447,"[""Keyboard"", ""Laptop"", ""Monitor""]",2184.15,"{"""": ""23%""}",253446,1,North America +2024-04-12,15104,7397,"[""Monitor"", ""Laptop""]",3481.56,"{"""": ""25%""}",164925,1,South America +2023-11-21,15105,842,"[""Wireless Mouse""]",3778.97,"{""promo"": ""13%""}",48689,0,South America +2023-02-02,15106,558,"[""Headphones""]",3629.44,"{""promo"": ""9%""}",260961,0,South America +2024-07-08,15107,7812,"[""Charger"", ""Phone"", ""Headphones""]",4605.42,"{""promo"": ""24%""}",15369,0,South America +2024-01-28,15108,4746,"[""Laptop"", ""Wireless Mouse""]",738.64,"{""promo"": ""23%""}",252986,0,North America +2023-02-22,15109,771,"[""Headphones"", ""Phone""]",3708.3,"{"""": ""25%""}",112283,1,North America +2023-05-03,15110,1914,"[""Headphones"", ""Charger"", ""Keyboard""]",1316.64,{},43841,1,Asia +2024-07-21,15111,6718,"[""Keyboard"", ""Charger""]",1648.05,{},208597,0,Africa +2023-07-26,15112,8291,"[""Wireless Mouse"", ""Keyboard""]",3267.91,"{""seasonal"": ""28%""}",138769,0,North America +2023-04-14,15113,8181,"[""Tablet"", ""Laptop""]",2934.6,"{"""": ""10%""}",233829,0,South America +2024-08-28,15114,7676,"[""Headphones"", ""Laptop"", ""Tablet""]",4335.64,{},47051,1,Africa +2023-02-19,15115,1265,"[""Charger"", ""Monitor""]",2506.02,"{""loyalty"": ""24%""}",58973,1,Europe +2023-01-03,15116,1103,"[""Laptop"", ""Tablet""]",3465.94,"{"""": ""14%""}",253918,1,Africa +2024-06-05,15117,184,"[""Keyboard"", ""Charger"", ""Monitor""]",825.68,{},42504,1,North America +2023-10-23,15118,1424,"[""Monitor""]",4915.69,"{""loyalty"": ""7%""}",82033,1,Asia +2023-05-15,15119,7884,"[""Monitor""]",320.77,"{""seasonal"": ""5%""}",230433,1,North America +2024-04-27,15120,2744,"[""Headphones"", ""Monitor"", ""Phone""]",373.34,"{"""": ""8%""}",48803,0,North America +2023-07-13,15121,8244,"[""Headphones"", ""Phone"", ""Keyboard""]",3705.3,{},208660,1,South America +2023-07-22,15122,2417,"[""Laptop"", ""Monitor""]",2750.91,{},263945,1,Europe +2023-06-15,15123,1980,"[""Headphones""]",2830.64,"{""loyalty"": ""19%""}",267494,0,North America +2024-07-18,15124,8824,"[""Tablet"", ""Charger""]",957.35,"{"""": ""22%""}",78282,1,Africa +2024-08-06,15125,687,"[""Tablet"", ""Laptop""]",2110.69,"{""loyalty"": ""25%""}",236119,0,South America +2024-02-15,15126,4866,"[""Keyboard"", ""Monitor""]",2503.37,"{"""": ""29%""}",277366,0,South America +2024-09-11,15127,1910,"[""Keyboard"", ""Monitor""]",1765.88,{},75175,0,North America +2023-03-29,15128,4586,"[""Keyboard"", ""Tablet""]",2311.9,{},127763,1,Asia +2024-07-30,15129,7809,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3604.76,{},189782,1,South America +2023-06-18,15130,8698,"[""Monitor"", ""Tablet"", ""Phone""]",481.21,{},148493,1,Africa +2023-07-09,15131,8336,"[""Monitor"", ""Laptop"", ""Keyboard""]",1879.49,"{""loyalty"": ""23%""}",177709,0,Europe +2024-12-23,15132,8068,"[""Tablet""]",4174.55,"{""promo"": ""7%""}",49857,0,South America +2024-09-23,15133,8635,"[""Phone"", ""Charger""]",4556.54,{},121176,0,Asia +2023-10-11,15134,784,"[""Charger"", ""Tablet"", ""Phone""]",2426.31,{},83003,1,North America +2024-05-22,15135,2418,"[""Charger"", ""Laptop"", ""Keyboard""]",1244.31,{},169498,1,Asia +2024-09-25,15136,301,"[""Keyboard"", ""Phone"", ""Monitor""]",2206.8,{},158780,1,South America +2023-10-16,15137,7806,"[""Tablet"", ""Keyboard"", ""Monitor""]",1915.86,{},70297,0,Africa +2023-03-09,15138,3735,"[""Monitor"", ""Charger""]",1909.81,{},176557,0,Africa +2023-03-29,15139,5646,"[""Phone""]",3598.72,"{""loyalty"": ""12%""}",29529,1,South America +2023-08-17,15140,9057,"[""Charger"", ""Tablet"", ""Headphones""]",1074.64,"{""seasonal"": ""18%""}",37500,0,Africa +2023-02-02,15141,1637,"[""Phone""]",3786.15,"{""promo"": ""12%""}",253001,0,South America +2023-03-30,15142,7900,"[""Wireless Mouse""]",1057.15,{},147133,1,Asia +2024-03-04,15143,3396,"[""Charger"", ""Phone""]",452.23,{},99680,0,Africa +2023-05-11,15144,1248,"[""Laptop""]",3515.91,{},203647,0,Europe +2023-03-07,15145,7120,"[""Monitor""]",4036.01,{},154384,0,Asia +2023-09-19,15146,6769,"[""Tablet"", ""Monitor""]",4170.87,{},66826,1,South America +2024-01-30,15147,3430,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4804.54,{},268542,1,North America +2024-11-20,15148,893,"[""Phone"", ""Laptop""]",475.77,"{""seasonal"": ""15%""}",163307,1,North America +2024-08-06,15149,497,"[""Wireless Mouse""]",3132.72,{},230322,0,Europe +2024-02-12,15150,4010,"[""Keyboard""]",2532.41,"{""loyalty"": ""7%""}",209376,0,Asia +2024-11-27,15151,7431,"[""Headphones"", ""Charger""]",4111.12,"{""loyalty"": ""27%""}",200198,0,Asia +2024-10-11,15152,8711,"[""Phone""]",2362.88,"{""loyalty"": ""18%""}",229106,1,South America +2023-03-21,15153,733,"[""Keyboard"", ""Phone"", ""Laptop""]",4733.1,{},203200,1,North America +2024-06-13,15154,7060,"[""Keyboard"", ""Monitor""]",2664.12,{},92065,1,Africa +2023-12-05,15155,8328,"[""Monitor"", ""Tablet""]",4412.21,"{""promo"": ""22%""}",150163,0,South America +2024-07-02,15156,8240,"[""Keyboard"", ""Charger""]",3606.4,"{"""": ""30%""}",116175,0,North America +2023-05-25,15157,8729,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4935.37,"{""loyalty"": ""7%""}",18104,0,Africa +2023-01-26,15158,9955,"[""Wireless Mouse"", ""Laptop""]",1586.32,{},126438,1,Europe +2023-02-19,15159,2596,"[""Keyboard"", ""Wireless Mouse""]",260.09,"{""promo"": ""11%""}",212857,0,North America +2024-01-19,15160,48,"[""Keyboard"", ""Laptop"", ""Tablet""]",4368.98,"{""seasonal"": ""15%""}",286465,0,South America +2024-06-27,15161,7200,"[""Keyboard"", ""Monitor"", ""Phone""]",2766.09,{},100113,0,Europe +2024-04-04,15162,8358,"[""Wireless Mouse"", ""Monitor""]",3931.09,"{""seasonal"": ""15%""}",191668,1,South America +2023-01-08,15163,9879,"[""Phone""]",2209.78,{},261526,1,Europe +2023-10-22,15164,2634,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4455.38,{},286661,1,Africa +2024-01-11,15165,201,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4753.18,"{""loyalty"": ""26%""}",86012,1,Africa +2024-01-24,15166,5638,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4019.99,{},1694,1,Europe +2023-04-26,15167,2915,"[""Headphones""]",2674.14,{},10813,1,Europe +2023-01-21,15168,583,"[""Keyboard"", ""Phone""]",3644.8,{},195463,1,Asia +2024-11-03,15169,7116,"[""Wireless Mouse"", ""Monitor""]",495.62,"{""promo"": ""29%""}",176717,1,Asia +2023-09-16,15170,9279,"[""Charger""]",2009.13,"{""loyalty"": ""9%""}",111048,0,Africa +2023-03-19,15171,7096,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",318.33,{},258409,1,North America +2024-02-26,15172,9201,"[""Tablet""]",519.45,{},93031,0,Europe +2024-08-01,15173,7015,"[""Tablet""]",2782.63,{},219032,1,Africa +2024-06-03,15174,9737,"[""Wireless Mouse""]",674.88,{},264051,0,Africa +2024-07-02,15175,237,"[""Headphones""]",570.91,"{""loyalty"": ""30%""}",205604,1,Africa +2024-02-03,15176,8035,"[""Phone"", ""Monitor""]",1491.04,{},207791,1,North America +2024-08-05,15177,1951,"[""Headphones"", ""Laptop""]",4497.51,{},54477,0,North America +2023-03-21,15178,6419,"[""Monitor""]",538.95,{},3059,1,South America +2023-07-05,15179,9486,"[""Monitor""]",243.7,{},202916,0,South America +2023-05-16,15180,983,"[""Wireless Mouse"", ""Headphones""]",2576.78,"{"""": ""8%""}",175412,0,Africa +2024-02-12,15181,717,"[""Keyboard"", ""Headphones"", ""Charger""]",591.76,"{""promo"": ""28%""}",196416,0,South America +2023-01-14,15182,1961,"[""Charger"", ""Monitor"", ""Tablet""]",3162.98,"{"""": ""10%""}",224841,0,Africa +2024-06-19,15183,9743,"[""Headphones"", ""Phone"", ""Monitor""]",1963.43,"{""loyalty"": ""17%""}",151220,1,Asia +2024-04-08,15184,6563,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3707.5,"{""seasonal"": ""12%""}",55830,1,South America +2023-01-08,15185,8904,"[""Keyboard""]",2244.05,"{"""": ""25%""}",198644,0,South America +2023-08-02,15186,5950,"[""Headphones""]",1116.51,"{""loyalty"": ""11%""}",225572,1,South America +2023-01-03,15187,7432,"[""Keyboard"", ""Laptop""]",2949.59,"{""promo"": ""9%""}",148436,0,Africa +2024-09-08,15188,6696,"[""Wireless Mouse"", ""Phone""]",3743.82,"{""seasonal"": ""13%""}",184467,1,Africa +2024-01-27,15189,7308,"[""Laptop"", ""Headphones""]",4944.43,"{""loyalty"": ""27%""}",296316,0,Africa +2023-08-18,15190,654,"[""Laptop"", ""Charger"", ""Headphones""]",2283.51,"{""seasonal"": ""9%""}",111329,0,Europe +2024-07-19,15191,2491,"[""Charger"", ""Monitor"", ""Phone""]",1067.63,"{""promo"": ""28%""}",233205,1,North America +2024-10-04,15192,8386,"[""Monitor"", ""Phone""]",3852.9,"{""promo"": ""11%""}",38794,0,Africa +2023-09-16,15193,7760,"[""Tablet""]",611.49,{},296116,0,South America +2023-06-01,15194,3883,"[""Headphones"", ""Charger""]",3040.95,"{""loyalty"": ""17%""}",203994,0,Europe +2024-08-28,15195,352,"[""Headphones""]",2169.51,"{""loyalty"": ""9%""}",69507,1,North America +2023-07-19,15196,33,"[""Phone""]",4345.76,"{""seasonal"": ""25%""}",66590,0,Africa +2023-12-20,15197,2012,"[""Phone"", ""Charger"", ""Laptop""]",68.89,{},92321,0,North America +2024-08-30,15198,7655,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2968.37,{},165388,0,Asia +2023-05-12,15199,371,"[""Headphones"", ""Tablet""]",2786.0,"{"""": ""18%""}",49403,0,North America +2024-08-24,15200,7493,"[""Headphones"", ""Keyboard""]",2146.02,{},171438,1,Africa +2023-10-08,15201,8239,"[""Keyboard""]",158.05,{},102240,1,North America +2023-02-24,15202,3471,"[""Monitor"", ""Phone""]",658.27,{},115970,0,Europe +2024-08-22,15203,3393,"[""Charger""]",1411.17,{},196154,1,Europe +2023-07-22,15204,5748,"[""Headphones""]",456.14,"{""seasonal"": ""27%""}",126610,0,Africa +2024-03-12,15205,6456,"[""Phone"", ""Monitor"", ""Keyboard""]",4925.71,{},1303,0,North America +2023-04-17,15206,5270,"[""Tablet"", ""Headphones""]",2843.48,"{""seasonal"": ""6%""}",103997,0,Africa +2023-01-02,15207,7227,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4503.08,{},230520,0,Asia +2024-10-22,15208,3572,"[""Charger""]",2403.39,{},164998,0,Asia +2023-09-23,15209,9713,"[""Wireless Mouse"", ""Headphones""]",2611.03,"{""loyalty"": ""8%""}",214884,1,North America +2024-10-15,15210,6974,"[""Keyboard"", ""Tablet""]",164.68,{},54174,1,Asia +2023-08-26,15211,348,"[""Wireless Mouse""]",1671.54,"{""seasonal"": ""26%""}",149967,0,South America +2024-09-18,15212,3360,"[""Monitor"", ""Laptop""]",4072.7,"{""seasonal"": ""14%""}",118142,1,Europe +2024-03-21,15213,8575,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3103.78,{},23154,1,Africa +2023-03-02,15214,7475,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3476.53,{},242426,0,Asia +2024-03-13,15215,3910,"[""Headphones""]",392.86,{},256830,0,Asia +2024-07-15,15216,2800,"[""Monitor"", ""Phone"", ""Keyboard""]",4842.02,"{""seasonal"": ""20%""}",270671,1,Europe +2023-11-04,15217,574,"[""Phone"", ""Charger""]",3115.22,"{"""": ""29%""}",194857,0,Europe +2024-03-19,15218,5439,"[""Charger""]",123.16,{},188583,1,South America +2024-09-29,15219,2634,"[""Keyboard"", ""Phone""]",4509.32,{},222762,1,Africa +2024-02-25,15220,9054,"[""Headphones"", ""Keyboard"", ""Laptop""]",1417.24,{},187091,1,Africa +2023-12-19,15221,7637,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4463.54,"{""promo"": ""17%""}",199085,0,Asia +2023-02-15,15222,7461,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",843.56,"{"""": ""24%""}",90799,0,Asia +2023-09-06,15223,5412,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4983.0,"{""seasonal"": ""6%""}",173770,0,South America +2023-03-14,15224,1005,"[""Keyboard""]",1736.29,{},186322,0,Europe +2023-03-29,15225,7096,"[""Wireless Mouse""]",4816.83,{},282489,1,South America +2023-03-10,15226,4808,"[""Laptop"", ""Wireless Mouse""]",3852.95,{},25797,1,Europe +2024-06-01,15227,7008,"[""Charger"", ""Tablet"", ""Headphones""]",3985.31,{},182696,1,Africa +2024-04-27,15228,5513,"[""Monitor"", ""Headphones""]",600.24,"{""loyalty"": ""14%""}",120753,0,North America +2024-09-10,15229,5997,"[""Wireless Mouse""]",1172.08,{},230763,1,Africa +2023-02-25,15230,606,"[""Wireless Mouse""]",2696.96,{},104093,0,Africa +2023-01-07,15231,1452,"[""Wireless Mouse"", ""Charger""]",851.76,{},271247,0,Asia +2023-05-13,15232,8470,"[""Tablet"", ""Charger"", ""Monitor""]",3908.05,"{""loyalty"": ""30%""}",23998,0,Asia +2023-03-05,15233,3398,"[""Tablet"", ""Monitor""]",953.83,"{""promo"": ""13%""}",125071,1,Asia +2024-08-27,15234,6396,"[""Monitor"", ""Wireless Mouse""]",2355.55,"{""seasonal"": ""15%""}",81362,1,Europe +2024-12-11,15235,5522,"[""Phone""]",1097.87,"{""loyalty"": ""27%""}",205247,0,South America +2024-06-03,15236,6498,"[""Charger"", ""Laptop""]",4802.65,"{""promo"": ""12%""}",111985,1,South America +2024-05-02,15237,5347,"[""Tablet"", ""Keyboard"", ""Phone""]",3549.62,"{""seasonal"": ""22%""}",19701,0,South America +2023-09-08,15238,5195,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",58.72,{},58190,1,South America +2024-05-26,15239,1477,"[""Tablet"", ""Wireless Mouse""]",2186.6,"{""seasonal"": ""20%""}",186082,1,Africa +2024-05-30,15240,4374,"[""Keyboard"", ""Charger""]",613.73,"{""promo"": ""13%""}",72054,1,Africa +2023-02-10,15241,1717,"[""Headphones"", ""Keyboard""]",3536.66,{},157704,0,Asia +2024-09-22,15242,2083,"[""Monitor"", ""Keyboard""]",2476.89,{},29477,0,Africa +2024-02-26,15243,7579,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1244.46,"{""seasonal"": ""29%""}",76824,1,Asia +2024-11-13,15244,3890,"[""Laptop""]",4169.67,"{""promo"": ""27%""}",46108,1,Africa +2024-07-23,15245,2747,"[""Tablet""]",1371.26,"{""loyalty"": ""16%""}",200433,1,South America +2024-08-14,15246,1740,"[""Charger"", ""Tablet""]",1821.9,"{"""": ""23%""}",199367,0,Europe +2023-05-05,15247,3877,"[""Headphones"", ""Tablet""]",2808.83,{},148595,1,Africa +2024-04-27,15248,8677,"[""Charger"", ""Laptop"", ""Keyboard""]",3746.18,"{""loyalty"": ""18%""}",274195,0,South America +2023-03-23,15249,7801,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2921.02,{},203610,1,North America +2023-12-07,15250,7404,"[""Keyboard"", ""Headphones""]",2293.11,{},241873,1,Europe +2024-12-31,15251,929,"[""Headphones""]",4016.88,{},270930,1,North America +2024-03-05,15252,1820,"[""Headphones"", ""Wireless Mouse""]",1247.58,"{""seasonal"": ""11%""}",88242,1,South America +2024-07-04,15253,2870,"[""Keyboard""]",4781.99,"{""seasonal"": ""25%""}",75369,1,South America +2023-02-21,15254,1454,"[""Charger"", ""Tablet""]",692.16,{},27942,0,Africa +2024-09-28,15255,7221,"[""Charger""]",3938.74,{},78979,0,Africa +2024-11-04,15256,1717,"[""Charger"", ""Phone"", ""Headphones""]",1249.24,"{""promo"": ""11%""}",48524,1,North America +2023-06-07,15257,8688,"[""Headphones""]",4252.34,"{"""": ""8%""}",177214,0,Asia +2023-03-30,15258,5970,"[""Keyboard"", ""Monitor""]",3195.91,{},179625,1,Africa +2024-11-03,15259,5897,"[""Wireless Mouse"", ""Charger""]",3541.18,{},82870,0,Africa +2023-11-01,15260,7742,"[""Charger"", ""Monitor"", ""Phone""]",3622.91,"{""seasonal"": ""16%""}",293451,1,South America +2024-07-09,15261,3037,"[""Phone""]",506.3,"{""promo"": ""30%""}",133227,0,North America +2024-08-06,15262,2197,"[""Charger"", ""Monitor""]",4530.75,{},291515,1,Africa +2023-09-19,15263,8924,"[""Charger"", ""Keyboard"", ""Headphones""]",352.63,"{"""": ""29%""}",123733,0,South America +2024-04-08,15264,7798,"[""Laptop"", ""Headphones"", ""Tablet""]",3517.94,"{"""": ""10%""}",29037,1,South America +2023-04-24,15265,4748,"[""Tablet""]",2417.99,"{"""": ""29%""}",189017,1,North America +2023-07-30,15266,5035,"[""Monitor"", ""Keyboard"", ""Headphones""]",2806.73,"{"""": ""11%""}",95784,1,Asia +2024-04-28,15267,8497,"[""Phone"", ""Keyboard""]",4567.56,"{""promo"": ""23%""}",206634,1,South America +2023-02-24,15268,626,"[""Charger"", ""Laptop""]",1287.26,"{"""": ""24%""}",219706,0,South America +2024-01-09,15269,3887,"[""Tablet"", ""Headphones"", ""Laptop""]",547.92,"{""promo"": ""30%""}",230356,0,Asia +2024-10-09,15270,8343,"[""Monitor"", ""Tablet""]",2013.6,{},288854,0,Asia +2024-08-17,15271,8140,"[""Wireless Mouse""]",4265.91,"{""seasonal"": ""5%""}",108096,0,North America +2023-11-09,15272,137,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1558.18,"{""loyalty"": ""14%""}",130857,1,North America +2023-09-08,15273,736,"[""Monitor"", ""Laptop"", ""Keyboard""]",461.02,{},53770,0,Europe +2024-06-29,15274,6224,"[""Charger"", ""Laptop""]",99.45,"{""promo"": ""9%""}",275207,0,Europe +2023-01-18,15275,5925,"[""Wireless Mouse"", ""Charger""]",4075.12,{},170823,1,Asia +2023-04-22,15276,6545,"[""Laptop""]",4868.0,"{""loyalty"": ""23%""}",292650,1,South America +2024-01-17,15277,7720,"[""Phone""]",2645.9,"{"""": ""11%""}",66764,0,Europe +2024-07-17,15278,7761,"[""Charger"", ""Tablet""]",148.46,{},222821,0,North America +2023-09-18,15279,9151,"[""Keyboard"", ""Tablet""]",200.16,"{""promo"": ""13%""}",20657,1,Europe +2023-07-16,15280,3013,"[""Laptop"", ""Headphones""]",4816.73,"{""seasonal"": ""22%""}",57603,1,North America +2023-10-31,15281,5330,"[""Charger"", ""Keyboard""]",1961.88,"{""seasonal"": ""5%""}",66935,1,North America +2024-06-22,15282,3037,"[""Wireless Mouse"", ""Keyboard""]",2418.89,"{"""": ""14%""}",225065,1,Africa +2024-10-17,15283,7658,"[""Tablet""]",2038.94,{},270185,0,North America +2024-10-10,15284,6962,"[""Headphones"", ""Phone"", ""Charger""]",4831.22,{},19186,0,Europe +2023-09-27,15285,5612,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3804.45,{},159276,1,Asia +2024-02-10,15286,6174,"[""Headphones"", ""Laptop"", ""Charger""]",1099.32,{},137917,0,Africa +2024-02-20,15287,8221,"[""Keyboard"", ""Tablet"", ""Laptop""]",323.96,"{""promo"": ""17%""}",239856,1,Asia +2023-04-08,15288,6539,"[""Headphones""]",2142.74,"{""loyalty"": ""6%""}",278985,1,North America +2023-11-21,15289,2286,"[""Keyboard"", ""Charger""]",2006.08,{},163669,0,Asia +2023-07-03,15290,3507,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2014.56,{},117294,1,South America +2024-11-21,15291,8072,"[""Wireless Mouse""]",400.84,{},292810,1,Africa +2023-10-30,15292,8872,"[""Charger"", ""Monitor"", ""Headphones""]",3224.99,"{"""": ""24%""}",155097,1,Africa +2023-06-27,15293,3684,"[""Wireless Mouse"", ""Charger"", ""Phone""]",818.37,"{""promo"": ""19%""}",34935,0,North America +2023-03-31,15294,7998,"[""Headphones""]",3017.04,{},6218,1,Europe +2023-02-05,15295,2985,"[""Monitor"", ""Laptop""]",3970.63,"{"""": ""10%""}",287565,1,North America +2024-06-30,15296,4381,"[""Charger""]",1779.02,{},284740,0,North America +2023-09-04,15297,6372,"[""Phone"", ""Headphones"", ""Tablet""]",3680.6,"{""seasonal"": ""6%""}",139854,0,Asia +2023-09-02,15298,6279,"[""Phone"", ""Monitor"", ""Charger""]",218.2,{},40864,1,Europe +2023-12-19,15299,6914,"[""Laptop"", ""Tablet""]",4191.14,"{""seasonal"": ""14%""}",286777,1,Asia +2024-06-01,15300,8185,"[""Monitor"", ""Laptop""]",391.85,"{""promo"": ""7%""}",122575,0,Africa +2023-12-15,15301,3724,"[""Phone"", ""Keyboard""]",2443.25,"{""seasonal"": ""5%""}",183215,0,Europe +2024-12-14,15302,7721,"[""Headphones"", ""Wireless Mouse""]",2496.92,{},68365,1,Europe +2024-12-11,15303,2102,"[""Keyboard""]",2546.97,"{""seasonal"": ""11%""}",146870,0,South America +2023-04-06,15304,8910,"[""Phone"", ""Keyboard""]",315.78,{},31660,1,Africa +2024-08-21,15305,1376,"[""Tablet"", ""Charger""]",713.42,"{""promo"": ""24%""}",161157,1,Africa +2024-01-18,15306,3747,"[""Phone"", ""Charger"", ""Headphones""]",3216.22,"{""promo"": ""15%""}",25779,1,North America +2023-03-23,15307,3472,"[""Wireless Mouse""]",4133.25,{},7482,1,Asia +2023-11-02,15308,6699,"[""Charger"", ""Headphones""]",1438.69,{},207806,1,Europe +2023-11-27,15309,7790,"[""Tablet""]",1437.79,{},112056,0,Europe +2024-01-20,15310,3139,"[""Headphones"", ""Wireless Mouse""]",2192.27,"{""promo"": ""5%""}",170906,0,North America +2023-01-02,15311,3655,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4158.26,{},276411,1,South America +2023-04-20,15312,3878,"[""Headphones""]",1659.47,"{"""": ""24%""}",50317,0,South America +2024-01-23,15313,7642,"[""Monitor""]",1739.41,{},181957,1,Africa +2024-03-09,15314,8769,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4710.86,{},62247,1,Asia +2024-01-15,15315,8187,"[""Headphones"", ""Tablet"", ""Laptop""]",551.64,{},57267,0,Europe +2023-01-10,15316,3327,"[""Tablet"", ""Monitor"", ""Charger""]",1926.44,"{""loyalty"": ""10%""}",271463,0,Asia +2024-01-13,15317,1425,"[""Tablet"", ""Laptop"", ""Monitor""]",4672.8,"{""seasonal"": ""16%""}",20999,0,Europe +2023-05-11,15318,5179,"[""Headphones"", ""Monitor""]",595.65,"{""loyalty"": ""18%""}",50442,1,Europe +2023-11-04,15319,7829,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1343.77,"{""seasonal"": ""22%""}",39495,0,Asia +2024-05-25,15320,7885,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2582.69,"{"""": ""13%""}",260639,0,Asia +2024-12-20,15321,6374,"[""Keyboard""]",3018.73,{},66671,0,Asia +2024-01-15,15322,1851,"[""Keyboard"", ""Wireless Mouse""]",532.68,{},229451,1,Europe +2023-12-12,15323,1574,"[""Keyboard"", ""Wireless Mouse""]",4549.62,"{""promo"": ""16%""}",292858,1,Europe +2024-11-21,15324,8537,"[""Headphones""]",945.95,"{""loyalty"": ""14%""}",109714,0,North America +2023-09-05,15325,2786,"[""Headphones""]",268.22,"{""promo"": ""11%""}",237066,0,Europe +2023-04-04,15326,9873,"[""Headphones""]",73.66,{},190290,0,Europe +2023-01-31,15327,1623,"[""Keyboard"", ""Charger""]",2266.38,{},291602,1,North America +2023-12-18,15328,1857,"[""Headphones"", ""Tablet""]",831.11,"{""seasonal"": ""24%""}",152676,1,Asia +2024-10-13,15329,4525,"[""Headphones"", ""Phone""]",1308.47,{},131782,1,Africa +2023-05-24,15330,3128,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",244.77,{},237841,0,Europe +2024-08-21,15331,4872,"[""Tablet"", ""Monitor""]",4187.75,"{""promo"": ""10%""}",176379,1,South America +2024-03-28,15332,6443,"[""Tablet"", ""Headphones""]",2956.4,{},47100,1,South America +2023-04-13,15333,9074,"[""Monitor""]",1184.72,"{""loyalty"": ""19%""}",235001,0,Asia +2024-01-24,15334,7648,"[""Tablet"", ""Charger""]",3637.84,"{""loyalty"": ""12%""}",273833,0,South America +2023-10-12,15335,5819,"[""Headphones""]",3764.48,{},164501,0,Asia +2023-10-24,15336,4704,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1113.98,"{""promo"": ""16%""}",186012,1,Europe +2023-01-09,15337,4856,"[""Laptop"", ""Charger""]",727.44,"{"""": ""8%""}",110326,0,Asia +2023-01-03,15338,8599,"[""Laptop""]",3747.51,"{""seasonal"": ""11%""}",88869,0,Europe +2023-03-23,15339,483,"[""Keyboard""]",4268.59,{},169055,1,South America +2023-01-11,15340,7008,"[""Charger"", ""Wireless Mouse""]",641.86,{},88260,0,Asia +2023-06-15,15341,78,"[""Laptop""]",4407.07,{},3207,1,Europe +2024-11-10,15342,1035,"[""Tablet"", ""Monitor""]",738.93,"{""loyalty"": ""26%""}",152482,1,Asia +2024-12-23,15343,8951,"[""Tablet"", ""Phone""]",308.06,"{""seasonal"": ""20%""}",119585,0,Europe +2023-06-04,15344,6052,"[""Charger"", ""Laptop"", ""Phone""]",2204.32,"{""promo"": ""5%""}",211849,1,Asia +2023-10-25,15345,2573,"[""Monitor"", ""Wireless Mouse""]",3996.35,"{"""": ""10%""}",46767,0,Asia +2023-10-02,15346,7252,"[""Charger"", ""Phone""]",3178.94,"{""loyalty"": ""21%""}",200588,1,Africa +2024-05-02,15347,9895,"[""Tablet""]",4780.26,"{""loyalty"": ""6%""}",71795,0,North America +2023-10-07,15348,7757,"[""Laptop"", ""Headphones"", ""Charger""]",4467.67,{},134546,1,Africa +2024-08-21,15349,7013,"[""Phone""]",2916.41,{},197886,1,South America +2023-03-10,15350,1427,"[""Monitor""]",1877.83,"{""seasonal"": ""5%""}",35984,0,Asia +2023-05-07,15351,5606,"[""Headphones"", ""Wireless Mouse""]",3050.46,"{""promo"": ""7%""}",205569,1,North America +2024-02-08,15352,3180,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4326.28,"{""seasonal"": ""30%""}",189408,0,North America +2023-02-28,15353,3415,"[""Phone"", ""Laptop""]",2963.64,"{""loyalty"": ""11%""}",248436,1,South America +2023-09-16,15354,2849,"[""Monitor"", ""Tablet""]",1333.65,"{""promo"": ""7%""}",222236,1,Africa +2023-10-15,15355,9105,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1476.67,"{""seasonal"": ""10%""}",23417,1,North America +2023-05-30,15356,3762,"[""Monitor"", ""Laptop""]",2508.8,{},197557,1,Africa +2024-08-26,15357,1884,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3803.74,{},148894,1,North America +2024-03-25,15358,3145,"[""Keyboard""]",3428.07,"{"""": ""24%""}",80767,0,South America +2024-03-30,15359,1026,"[""Headphones""]",591.71,{},163415,0,North America +2023-04-11,15360,8665,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3821.06,{},35037,0,South America +2024-11-24,15361,4408,"[""Laptop"", ""Keyboard"", ""Charger""]",4051.61,{},141001,1,Asia +2023-06-14,15362,9827,"[""Charger""]",4576.24,{},65462,0,Europe +2023-02-10,15363,704,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3222.15,"{""promo"": ""7%""}",277503,1,South America +2024-02-14,15364,8523,"[""Headphones"", ""Charger"", ""Tablet""]",2575.48,"{"""": ""28%""}",156362,0,Asia +2024-02-08,15365,7204,"[""Keyboard"", ""Laptop"", ""Charger""]",962.15,"{""loyalty"": ""20%""}",142352,0,North America +2024-06-20,15366,7968,"[""Wireless Mouse"", ""Headphones""]",4621.75,{},146004,0,Europe +2023-04-29,15367,2763,"[""Headphones"", ""Keyboard""]",1052.43,"{"""": ""6%""}",239818,1,Asia +2023-08-24,15368,3953,"[""Tablet"", ""Phone"", ""Keyboard""]",2418.95,{},141657,1,North America +2023-04-08,15369,1837,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2676.77,"{""loyalty"": ""28%""}",259532,1,Asia +2024-09-13,15370,7582,"[""Keyboard"", ""Headphones""]",4384.2,"{"""": ""8%""}",136217,0,South America +2024-09-14,15371,8521,"[""Monitor""]",1507.68,{},287105,0,North America +2024-12-30,15372,173,"[""Wireless Mouse""]",2447.79,"{""loyalty"": ""24%""}",181038,0,Europe +2024-10-04,15373,9539,"[""Tablet"", ""Keyboard""]",2097.91,"{""seasonal"": ""9%""}",62053,0,Europe +2024-09-09,15374,9737,"[""Wireless Mouse""]",3613.02,{},237225,0,Asia +2024-08-02,15375,2288,"[""Keyboard"", ""Headphones""]",2855.79,"{""loyalty"": ""10%""}",256534,0,Asia +2024-11-25,15376,1497,"[""Charger"", ""Keyboard"", ""Headphones""]",3377.03,{},140645,1,Europe +2023-12-19,15377,9173,"[""Charger"", ""Monitor"", ""Headphones""]",2222.0,{},270594,1,North America +2023-11-11,15378,1358,"[""Wireless Mouse"", ""Keyboard""]",1419.97,{},10775,0,Europe +2024-04-16,15379,6052,"[""Keyboard"", ""Wireless Mouse""]",4796.92,"{"""": ""25%""}",147916,1,Africa +2023-01-13,15380,2810,"[""Headphones""]",4989.39,"{"""": ""19%""}",146351,0,Europe +2023-04-24,15381,310,"[""Charger""]",2941.74,{},222607,1,Asia +2024-06-06,15382,3658,"[""Tablet""]",2891.36,{},295421,1,South America +2023-06-30,15383,7867,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1624.66,"{""seasonal"": ""14%""}",42569,1,Europe +2023-05-12,15384,6705,"[""Monitor"", ""Keyboard""]",3937.9,"{"""": ""18%""}",148037,1,South America +2023-02-27,15385,527,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",327.16,{},62905,1,Africa +2024-05-04,15386,8282,"[""Laptop""]",4327.03,{},46217,0,North America +2024-11-19,15387,4258,"[""Wireless Mouse"", ""Phone""]",2048.82,"{""loyalty"": ""28%""}",65306,1,Europe +2024-08-27,15388,3149,"[""Laptop""]",534.71,"{""promo"": ""16%""}",285612,1,Europe +2024-01-25,15389,7956,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4359.38,"{""loyalty"": ""30%""}",154920,1,South America +2023-03-10,15390,7112,"[""Phone"", ""Laptop""]",1507.86,{},194749,1,South America +2024-11-09,15391,6434,"[""Tablet"", ""Laptop""]",1982.58,{},197070,0,North America +2024-12-17,15392,9954,"[""Tablet""]",2819.27,{},24029,1,Asia +2023-10-27,15393,1825,"[""Phone""]",3355.85,"{"""": ""10%""}",145305,1,Asia +2023-04-09,15394,2695,"[""Keyboard"", ""Monitor"", ""Laptop""]",4705.28,"{"""": ""23%""}",151214,0,South America +2024-04-01,15395,6445,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4470.57,{},135271,0,North America +2023-11-30,15396,4752,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",892.93,{},123614,1,Europe +2024-11-21,15397,5020,"[""Charger""]",3288.21,{},14719,0,Africa +2023-04-05,15398,2920,"[""Monitor"", ""Headphones""]",4947.19,{},162907,0,North America +2024-11-11,15399,4992,"[""Headphones"", ""Keyboard"", ""Charger""]",1669.43,"{""loyalty"": ""5%""}",144366,0,Asia +2023-11-17,15400,5422,"[""Phone"", ""Monitor"", ""Keyboard""]",4265.59,{},36489,1,Africa +2024-10-06,15401,9026,"[""Headphones"", ""Keyboard"", ""Charger""]",1279.54,{},219487,1,Asia +2023-10-22,15402,3106,"[""Monitor"", ""Phone""]",2941.79,{},287208,0,South America +2024-06-06,15403,8966,"[""Wireless Mouse""]",4168.12,"{"""": ""16%""}",40021,0,Asia +2024-08-01,15404,4959,"[""Headphones"", ""Charger""]",1614.63,"{""promo"": ""10%""}",7012,1,South America +2024-09-10,15405,701,"[""Monitor"", ""Laptop""]",500.59,"{""promo"": ""6%""}",284683,0,Europe +2024-09-26,15406,8457,"[""Keyboard""]",4752.39,{},262696,0,North America +2023-09-10,15407,3968,"[""Keyboard"", ""Tablet""]",3773.8,"{""promo"": ""24%""}",42211,0,Africa +2024-08-30,15408,2407,"[""Monitor"", ""Phone""]",2643.35,"{""loyalty"": ""10%""}",113608,1,North America +2024-09-12,15409,1616,"[""Tablet"", ""Charger""]",4605.16,"{""seasonal"": ""22%""}",183204,1,South America +2023-07-24,15410,8545,"[""Headphones"", ""Phone""]",3344.19,"{"""": ""13%""}",148300,1,South America +2023-06-24,15411,2104,"[""Headphones""]",3706.23,"{""seasonal"": ""6%""}",141165,1,South America +2024-01-30,15412,8897,"[""Monitor""]",4920.38,"{""seasonal"": ""23%""}",278856,0,South America +2024-06-24,15413,1231,"[""Headphones"", ""Phone"", ""Keyboard""]",2496.93,"{"""": ""19%""}",287989,0,Europe +2024-08-14,15414,4807,"[""Charger""]",3984.82,"{""promo"": ""27%""}",22677,0,Europe +2024-09-22,15415,5680,"[""Headphones"", ""Laptop""]",1010.28,{},105704,0,Asia +2024-12-22,15416,5366,"[""Headphones""]",4660.95,"{""loyalty"": ""29%""}",246719,1,Europe +2023-04-01,15417,8725,"[""Tablet"", ""Phone"", ""Keyboard""]",765.49,"{"""": ""16%""}",2101,1,Africa +2024-04-12,15418,4503,"[""Charger"", ""Tablet"", ""Phone""]",1673.1,"{"""": ""11%""}",279690,1,Europe +2024-09-05,15419,5752,"[""Charger""]",316.54,{},117067,0,Africa +2023-02-03,15420,6894,"[""Tablet""]",1523.31,{},77364,0,Africa +2023-03-05,15421,6976,"[""Headphones"", ""Tablet"", ""Charger""]",3718.97,"{""loyalty"": ""17%""}",258494,1,North America +2024-06-11,15422,1077,"[""Phone""]",4726.97,{},236006,0,Asia +2024-08-23,15423,8999,"[""Charger"", ""Monitor"", ""Laptop""]",344.08,{},115842,0,North America +2023-10-18,15424,1202,"[""Headphones"", ""Phone""]",3381.85,"{""promo"": ""15%""}",162232,1,Europe +2023-11-07,15425,3102,"[""Wireless Mouse""]",2836.47,"{""loyalty"": ""25%""}",128821,1,Europe +2023-03-20,15426,4974,"[""Charger""]",3863.22,{},118358,0,Africa +2023-09-24,15427,3169,"[""Wireless Mouse"", ""Tablet""]",4654.12,"{""promo"": ""30%""}",266910,0,Asia +2024-02-18,15428,4345,"[""Tablet"", ""Headphones""]",3977.84,"{""promo"": ""8%""}",286271,1,South America +2023-02-10,15429,4166,"[""Keyboard"", ""Headphones""]",3080.0,{},57466,0,Africa +2023-03-03,15430,5231,"[""Wireless Mouse""]",3558.58,"{"""": ""8%""}",248260,0,North America +2023-11-12,15431,4615,"[""Keyboard"", ""Tablet""]",3243.57,{},30466,0,South America +2023-10-26,15432,2687,"[""Tablet""]",1363.19,{},168253,1,Africa +2023-12-19,15433,5591,"[""Phone""]",1865.36,"{""promo"": ""30%""}",208209,1,North America +2024-03-04,15434,4838,"[""Charger"", ""Laptop""]",1365.94,"{""promo"": ""16%""}",19166,1,North America +2024-12-05,15435,6043,"[""Charger""]",1136.46,{},129744,1,South America +2024-01-18,15436,3839,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2218.58,"{""promo"": ""5%""}",19063,1,Europe +2023-08-15,15437,1710,"[""Headphones""]",3254.15,{},211058,1,Asia +2024-02-10,15438,1148,"[""Phone"", ""Wireless Mouse""]",2924.49,{},148799,0,Europe +2023-02-16,15439,9031,"[""Keyboard"", ""Headphones"", ""Phone""]",3056.05,"{""promo"": ""12%""}",118244,1,Europe +2023-04-29,15440,6155,"[""Monitor"", ""Tablet""]",4845.94,"{""promo"": ""10%""}",137596,1,Europe +2023-10-05,15441,8392,"[""Laptop""]",2851.16,"{""seasonal"": ""23%""}",139456,1,Europe +2023-09-23,15442,6154,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4817.96,{},6382,1,North America +2023-09-13,15443,2978,"[""Wireless Mouse"", ""Tablet""]",3911.59,"{""promo"": ""25%""}",218036,1,North America +2024-02-04,15444,1501,"[""Charger"", ""Tablet""]",3312.7,"{""loyalty"": ""13%""}",142620,1,South America +2023-01-21,15445,5782,"[""Keyboard"", ""Tablet"", ""Headphones""]",1068.91,{},66634,1,Europe +2024-01-22,15446,6659,"[""Headphones""]",458.81,{},178749,0,Africa +2024-05-16,15447,1545,"[""Phone"", ""Monitor"", ""Laptop""]",2812.69,{},162822,1,South America +2023-03-27,15448,3607,"[""Laptop"", ""Charger""]",1121.43,"{""loyalty"": ""11%""}",275634,0,Europe +2024-10-09,15449,2440,"[""Tablet""]",2923.93,"{""seasonal"": ""18%""}",255448,0,Europe +2023-05-11,15450,7481,"[""Monitor""]",1137.64,{},125690,1,Europe +2024-09-07,15451,1769,"[""Monitor""]",4208.42,"{""seasonal"": ""12%""}",217684,0,Europe +2024-04-14,15452,5271,"[""Wireless Mouse""]",4757.41,{},16259,1,North America +2023-12-18,15453,6205,"[""Keyboard"", ""Laptop"", ""Headphones""]",3700.95,{},139189,0,Africa +2023-10-11,15454,3460,"[""Phone""]",58.7,{},203656,0,Europe +2023-02-19,15455,9550,"[""Laptop"", ""Phone"", ""Headphones""]",4961.22,{},264696,1,Asia +2024-04-23,15456,8845,"[""Charger"", ""Laptop""]",797.48,"{""seasonal"": ""24%""}",299855,0,South America +2023-11-04,15457,7018,"[""Charger"", ""Wireless Mouse""]",200.51,"{""loyalty"": ""30%""}",164769,1,Asia +2023-02-06,15458,5266,"[""Tablet"", ""Keyboard"", ""Phone""]",692.35,{},188172,1,Europe +2023-12-27,15459,8630,"[""Laptop"", ""Phone""]",4984.37,{},85919,1,Africa +2024-11-13,15460,6358,"[""Headphones"", ""Keyboard""]",1133.53,"{"""": ""20%""}",187735,0,North America +2023-09-17,15461,6189,"[""Headphones""]",3567.54,"{""promo"": ""23%""}",262360,0,South America +2023-02-22,15462,2198,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4999.77,{},12835,1,Africa +2023-09-27,15463,470,"[""Laptop""]",3582.4,{},26920,1,Africa +2024-01-12,15464,6016,"[""Tablet"", ""Laptop""]",4139.63,"{"""": ""18%""}",13856,1,North America +2024-10-19,15465,4709,"[""Laptop""]",1089.22,"{"""": ""19%""}",285336,0,Asia +2024-03-03,15466,1449,"[""Phone""]",4301.44,{},273153,1,Africa +2023-11-20,15467,7697,"[""Tablet""]",2272.93,{},69329,1,Asia +2023-06-30,15468,8873,"[""Monitor"", ""Phone""]",3962.27,{},276645,1,Europe +2023-05-29,15469,2787,"[""Keyboard""]",2261.71,{},114797,0,North America +2024-06-24,15470,9052,"[""Phone"", ""Headphones"", ""Laptop""]",1196.66,"{""promo"": ""24%""}",38979,0,North America +2023-06-27,15471,9521,"[""Wireless Mouse""]",1961.57,"{"""": ""10%""}",43990,0,South America +2023-06-29,15472,93,"[""Keyboard"", ""Tablet""]",1295.83,"{""promo"": ""26%""}",219394,0,Asia +2024-11-13,15473,3478,"[""Phone"", ""Laptop"", ""Monitor""]",4330.27,"{"""": ""22%""}",80821,0,South America +2024-04-15,15474,5418,"[""Phone"", ""Tablet""]",432.59,"{"""": ""25%""}",221533,1,Africa +2024-11-26,15475,6434,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1480.35,"{"""": ""23%""}",281462,0,South America +2024-08-10,15476,7434,"[""Monitor"", ""Tablet"", ""Charger""]",657.39,{},64702,0,Europe +2023-04-15,15477,8480,"[""Phone""]",4098.47,"{"""": ""9%""}",269095,0,Asia +2024-04-24,15478,8035,"[""Headphones""]",3122.86,{},167713,1,South America +2023-06-03,15479,2161,"[""Keyboard"", ""Charger""]",4180.2,{},225117,1,Europe +2024-12-25,15480,7467,"[""Headphones"", ""Tablet"", ""Phone""]",1253.97,"{"""": ""25%""}",65289,0,Europe +2023-07-28,15481,7863,"[""Monitor""]",4002.81,{},98605,1,Europe +2024-10-02,15482,8796,"[""Tablet""]",1350.05,{},197248,1,Asia +2023-02-27,15483,8041,"[""Keyboard"", ""Headphones"", ""Monitor""]",3066.28,{},73202,0,South America +2023-08-23,15484,5165,"[""Headphones"", ""Phone"", ""Charger""]",283.75,"{""loyalty"": ""23%""}",210676,1,Asia +2024-05-01,15485,2454,"[""Laptop"", ""Monitor""]",2956.03,{},6989,1,Asia +2023-06-17,15486,7642,"[""Monitor"", ""Phone"", ""Headphones""]",4884.96,"{""promo"": ""30%""}",46924,0,Asia +2023-11-27,15487,9344,"[""Headphones"", ""Phone""]",3072.7,"{""seasonal"": ""18%""}",248573,0,Asia +2024-10-29,15488,6855,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4484.36,{},58002,1,Africa +2024-07-17,15489,9737,"[""Monitor""]",845.75,{},166217,0,Africa +2023-07-19,15490,1030,"[""Keyboard"", ""Laptop"", ""Monitor""]",4674.26,{},298161,0,Asia +2024-01-22,15491,4752,"[""Keyboard""]",4456.49,"{""promo"": ""5%""}",125523,0,Asia +2024-12-07,15492,8859,"[""Monitor"", ""Headphones"", ""Laptop""]",3687.93,"{""loyalty"": ""8%""}",220331,0,South America +2024-03-21,15493,3088,"[""Tablet""]",3614.48,{},156436,0,Africa +2023-10-08,15494,270,"[""Charger"", ""Headphones""]",4462.31,{},34615,0,South America +2023-11-26,15495,6442,"[""Headphones"", ""Monitor"", ""Tablet""]",2540.45,{},247797,1,Africa +2023-06-07,15496,4489,"[""Keyboard"", ""Headphones"", ""Charger""]",3892.0,"{""promo"": ""26%""}",178810,1,South America +2023-02-21,15497,8492,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2148.62,{},267279,1,Africa +2023-10-19,15498,2194,"[""Monitor""]",3034.73,"{""promo"": ""29%""}",210809,0,South America +2024-09-04,15499,6984,"[""Charger""]",3810.46,{},53401,0,Asia +2024-04-11,15500,874,"[""Keyboard"", ""Headphones""]",3381.53,{},13613,0,North America +2024-03-31,15501,105,"[""Monitor"", ""Headphones""]",3313.46,"{""loyalty"": ""23%""}",243553,0,Asia +2024-09-30,15502,3587,"[""Headphones"", ""Phone"", ""Laptop""]",4626.5,"{""promo"": ""8%""}",299944,0,Africa +2023-01-31,15503,7878,"[""Monitor"", ""Laptop""]",1061.03,{},209848,0,Europe +2024-07-06,15504,739,"[""Monitor"", ""Charger"", ""Phone""]",3045.79,"{""promo"": ""9%""}",156575,0,Africa +2024-06-30,15505,1926,"[""Charger"", ""Phone"", ""Headphones""]",3299.88,{},179137,0,Europe +2023-08-28,15506,9505,"[""Wireless Mouse"", ""Monitor""]",1338.77,"{""promo"": ""16%""}",268400,1,Europe +2023-06-17,15507,8191,"[""Keyboard"", ""Charger""]",4478.62,{},288467,1,Asia +2024-04-05,15508,2384,"[""Headphones"", ""Tablet""]",4515.63,"{""loyalty"": ""26%""}",258822,1,North America +2024-06-08,15509,5471,"[""Charger"", ""Headphones"", ""Laptop""]",4012.8,"{""seasonal"": ""29%""}",288706,0,Africa +2023-01-17,15510,2538,"[""Laptop"", ""Charger""]",4699.66,"{""promo"": ""24%""}",103695,0,North America +2023-01-24,15511,4337,"[""Laptop"", ""Tablet"", ""Monitor""]",835.02,{},243447,0,South America +2024-12-09,15512,6848,"[""Tablet"", ""Keyboard""]",2824.0,{},287164,1,Africa +2024-10-02,15513,8149,"[""Charger"", ""Monitor"", ""Laptop""]",1670.28,"{"""": ""11%""}",39030,0,Africa +2024-03-09,15514,5668,"[""Wireless Mouse""]",4949.14,"{"""": ""15%""}",17980,0,Africa +2024-02-21,15515,8256,"[""Wireless Mouse""]",1948.03,"{""promo"": ""10%""}",36412,1,Europe +2023-05-30,15516,2479,"[""Laptop"", ""Phone"", ""Charger""]",4046.74,{},166114,0,Africa +2024-02-03,15517,9447,"[""Monitor"", ""Phone""]",3584.61,"{""loyalty"": ""18%""}",273995,0,Asia +2024-07-05,15518,6505,"[""Laptop"", ""Phone""]",1631.3,"{""seasonal"": ""9%""}",115617,0,Europe +2024-04-03,15519,9462,"[""Monitor""]",3001.7,"{"""": ""12%""}",256575,0,Asia +2023-07-07,15520,9100,"[""Monitor""]",3292.75,"{""loyalty"": ""28%""}",293209,1,Africa +2024-10-12,15521,2519,"[""Monitor""]",4489.81,"{"""": ""6%""}",245130,0,Africa +2024-07-22,15522,451,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2086.72,{},202304,0,North America +2024-09-24,15523,9906,"[""Tablet"", ""Headphones""]",1190.94,"{"""": ""28%""}",104121,0,North America +2023-12-16,15524,4173,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4204.5,"{""loyalty"": ""22%""}",59402,1,South America +2024-02-16,15525,5281,"[""Laptop"", ""Keyboard""]",1867.21,{},63427,1,Africa +2023-03-23,15526,3254,"[""Laptop""]",1914.35,{},29126,0,Asia +2023-10-23,15527,3555,"[""Keyboard"", ""Laptop"", ""Monitor""]",4104.96,"{""loyalty"": ""7%""}",60587,1,Asia +2024-04-21,15528,6858,"[""Headphones"", ""Tablet""]",1405.53,{},99895,1,Africa +2023-04-23,15529,6034,"[""Monitor"", ""Laptop""]",2339.39,"{""loyalty"": ""14%""}",257113,1,South America +2024-09-10,15530,6025,"[""Laptop"", ""Phone""]",1173.74,{},69580,0,Asia +2024-01-31,15531,9845,"[""Keyboard""]",347.56,"{"""": ""25%""}",104493,0,North America +2024-05-01,15532,4274,"[""Wireless Mouse""]",1849.03,"{""loyalty"": ""20%""}",236770,1,Asia +2023-12-04,15533,5520,"[""Tablet"", ""Laptop""]",1319.01,"{""seasonal"": ""8%""}",4463,1,Europe +2024-09-12,15534,2317,"[""Monitor""]",457.71,{},127676,1,Europe +2023-09-07,15535,8209,"[""Monitor""]",3374.92,{},243399,0,South America +2023-05-15,15536,5143,"[""Wireless Mouse""]",4236.87,"{""promo"": ""7%""}",43046,1,South America +2023-02-17,15537,8593,"[""Keyboard"", ""Phone""]",2804.42,"{""promo"": ""20%""}",114463,1,Africa +2024-08-06,15538,8450,"[""Monitor"", ""Keyboard"", ""Phone""]",1112.96,"{""loyalty"": ""18%""}",165980,1,Africa +2024-01-19,15539,9543,"[""Wireless Mouse"", ""Monitor""]",4807.67,{},183160,1,Africa +2024-03-26,15540,6377,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1555.4,{},170442,0,South America +2023-06-08,15541,3227,"[""Wireless Mouse""]",4136.03,"{""seasonal"": ""17%""}",5232,1,South America +2023-10-10,15542,2193,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1828.18,{},124083,1,North America +2023-09-06,15543,5536,"[""Headphones""]",571.0,{},201968,1,Africa +2024-09-23,15544,6079,"[""Phone"", ""Laptop"", ""Charger""]",1235.08,"{""promo"": ""28%""}",268552,0,North America +2023-06-18,15545,1708,"[""Keyboard""]",4173.51,"{""loyalty"": ""26%""}",297431,1,Africa +2023-09-17,15546,246,"[""Charger""]",1687.72,"{""seasonal"": ""13%""}",247822,0,Asia +2023-03-27,15547,4364,"[""Charger""]",593.04,{},258831,1,South America +2023-07-28,15548,5201,"[""Laptop"", ""Keyboard"", ""Phone""]",687.12,"{""seasonal"": ""7%""}",221228,0,Africa +2024-06-22,15549,7228,"[""Keyboard"", ""Laptop"", ""Charger""]",3817.8,"{""seasonal"": ""30%""}",6633,1,South America +2024-10-16,15550,7922,"[""Wireless Mouse"", ""Tablet""]",1139.27,{},175788,0,Asia +2024-08-29,15551,3004,"[""Charger"", ""Headphones"", ""Monitor""]",2256.1,"{""promo"": ""21%""}",291585,0,South America +2023-05-01,15552,7196,"[""Monitor"", ""Phone""]",1872.28,"{""loyalty"": ""9%""}",209149,0,Africa +2024-01-03,15553,7595,"[""Phone"", ""Monitor""]",3022.48,{},246712,1,Asia +2024-06-01,15554,9064,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1204.8,"{"""": ""5%""}",55652,1,Africa +2023-03-19,15555,3137,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1229.67,{},136129,0,Africa +2023-11-07,15556,1516,"[""Tablet""]",4289.81,{},108496,0,North America +2024-06-28,15557,5248,"[""Wireless Mouse"", ""Charger""]",3890.11,{},166730,0,Europe +2023-10-27,15558,7556,"[""Headphones""]",345.81,"{""promo"": ""15%""}",80978,1,Africa +2024-05-25,15559,2080,"[""Monitor""]",430.2,"{"""": ""18%""}",63538,0,Asia +2023-05-30,15560,3719,"[""Headphones"", ""Charger""]",2799.82,{},214812,0,Africa +2023-12-26,15561,1080,"[""Phone"", ""Wireless Mouse""]",829.08,{},294133,0,South America +2024-09-03,15562,360,"[""Monitor""]",3192.53,"{""loyalty"": ""23%""}",28345,1,North America +2023-07-29,15563,8505,"[""Phone"", ""Laptop"", ""Tablet""]",3199.29,"{""loyalty"": ""10%""}",6229,1,Asia +2024-12-14,15564,5173,"[""Charger"", ""Tablet""]",1585.2,"{""promo"": ""9%""}",299352,0,Asia +2024-05-21,15565,8362,"[""Phone"", ""Wireless Mouse""]",2776.28,"{""seasonal"": ""30%""}",149929,1,Africa +2024-10-01,15566,1711,"[""Headphones"", ""Phone"", ""Monitor""]",623.97,"{""seasonal"": ""9%""}",278039,1,Europe +2024-02-07,15567,9150,"[""Laptop"", ""Wireless Mouse""]",2613.82,{},276456,0,North America +2023-08-25,15568,3362,"[""Wireless Mouse"", ""Headphones""]",3913.02,{},147791,0,Africa +2023-06-11,15569,9132,"[""Monitor""]",1445.22,"{""seasonal"": ""5%""}",266912,0,South America +2024-02-21,15570,3362,"[""Tablet"", ""Charger""]",4901.82,"{""promo"": ""18%""}",71900,0,Africa +2024-08-26,15571,5639,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4620.28,{},102404,1,Africa +2024-06-20,15572,3466,"[""Keyboard"", ""Monitor"", ""Headphones""]",3681.19,"{""promo"": ""21%""}",247565,1,North America +2024-08-19,15573,4856,"[""Headphones""]",3921.68,{},12530,1,Asia +2024-01-09,15574,1557,"[""Keyboard"", ""Phone""]",1749.23,"{""loyalty"": ""17%""}",205510,0,South America +2024-05-29,15575,1031,"[""Monitor"", ""Charger""]",4422.5,"{""promo"": ""30%""}",294922,1,North America +2023-03-12,15576,8454,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4019.21,{},58996,0,Africa +2023-02-21,15577,5782,"[""Headphones"", ""Phone""]",3371.06,"{""seasonal"": ""5%""}",179756,0,South America +2023-06-20,15578,5770,"[""Laptop"", ""Monitor""]",1003.21,"{""loyalty"": ""14%""}",53851,0,Europe +2023-02-01,15579,5796,"[""Charger"", ""Wireless Mouse"", ""Phone""]",288.43,"{"""": ""9%""}",220223,0,North America +2024-04-06,15580,4534,"[""Phone"", ""Monitor""]",1055.31,{},245518,0,Europe +2024-07-02,15581,4632,"[""Charger"", ""Tablet"", ""Keyboard""]",707.8,{},259052,1,South America +2024-12-17,15582,1156,"[""Headphones""]",1985.16,{},58453,0,North America +2023-04-24,15583,3807,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4519.38,{},245176,0,Africa +2024-11-10,15584,1899,"[""Charger"", ""Headphones"", ""Laptop""]",2215.57,"{""promo"": ""18%""}",90104,1,Asia +2023-12-07,15585,2498,"[""Laptop"", ""Monitor""]",2043.41,"{"""": ""9%""}",57426,1,North America +2024-09-21,15586,2247,"[""Charger"", ""Phone""]",1493.27,{},192680,0,Asia +2024-05-26,15587,1753,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1651.93,"{""promo"": ""10%""}",56204,0,Europe +2024-11-21,15588,2195,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",440.2,{},10593,1,Africa +2023-12-27,15589,95,"[""Headphones"", ""Laptop""]",2448.15,{},125753,0,Asia +2024-02-09,15590,4,"[""Monitor"", ""Keyboard""]",3310.29,"{""promo"": ""5%""}",188269,0,Asia +2024-05-26,15591,8307,"[""Keyboard""]",2464.09,{},152146,0,Europe +2023-04-08,15592,214,"[""Laptop""]",4615.58,{},122255,0,Asia +2024-06-13,15593,2851,"[""Headphones"", ""Tablet""]",4110.45,{},280982,0,North America +2023-05-13,15594,6596,"[""Charger""]",3222.26,{},73807,1,South America +2024-08-08,15595,6030,"[""Headphones"", ""Charger""]",1188.83,{},15720,0,Africa +2023-08-15,15596,8133,"[""Keyboard"", ""Headphones"", ""Tablet""]",169.17,"{"""": ""30%""}",129535,0,Africa +2024-03-10,15597,1865,"[""Tablet"", ""Keyboard"", ""Charger""]",2510.24,"{""promo"": ""9%""}",291424,1,Africa +2024-01-19,15598,1625,"[""Monitor"", ""Headphones""]",231.15,{},20584,0,Europe +2023-10-16,15599,4298,"[""Laptop"", ""Phone"", ""Monitor""]",3944.04,"{""promo"": ""17%""}",119381,1,Africa +2024-10-08,15600,7541,"[""Tablet"", ""Keyboard"", ""Laptop""]",3081.49,{},208581,1,Asia +2024-02-19,15601,1370,"[""Headphones"", ""Phone""]",3542.44,"{""promo"": ""9%""}",239977,0,North America +2023-07-02,15602,7128,"[""Headphones"", ""Keyboard""]",222.04,{},95904,0,South America +2024-07-23,15603,3168,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4778.36,"{""loyalty"": ""5%""}",267496,0,Europe +2023-03-12,15604,6678,"[""Wireless Mouse"", ""Headphones""]",1835.58,{},19275,0,Asia +2024-05-26,15605,5413,"[""Charger"", ""Wireless Mouse""]",1480.14,{},92519,0,Europe +2024-08-18,15606,8669,"[""Headphones""]",786.03,"{""loyalty"": ""28%""}",177237,1,Asia +2023-06-14,15607,7382,"[""Laptop"", ""Tablet""]",3096.5,{},283091,0,Asia +2023-09-25,15608,7761,"[""Tablet"", ""Phone""]",3501.23,"{""seasonal"": ""9%""}",119367,0,Europe +2023-03-01,15609,4450,"[""Keyboard""]",4201.6,{},111261,0,Europe +2023-04-20,15610,7443,"[""Laptop""]",3378.76,"{""promo"": ""25%""}",286719,0,South America +2023-06-05,15611,3107,"[""Monitor"", ""Phone"", ""Charger""]",2812.88,{},270493,1,North America +2024-10-24,15612,1289,"[""Laptop"", ""Phone""]",478.83,"{""seasonal"": ""10%""}",109107,0,North America +2024-07-01,15613,5544,"[""Keyboard"", ""Charger"", ""Phone""]",3974.95,"{""promo"": ""17%""}",95435,1,South America +2023-06-08,15614,5882,"[""Headphones"", ""Wireless Mouse""]",4012.61,{},192012,1,Asia +2024-12-26,15615,3080,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",629.87,{},272169,1,Asia +2023-02-17,15616,851,"[""Tablet""]",3498.1,{},170127,0,South America +2024-05-10,15617,4960,"[""Headphones""]",693.29,"{""loyalty"": ""30%""}",81005,1,North America +2024-11-30,15618,3868,"[""Keyboard""]",2659.55,{},143825,1,Africa +2023-09-30,15619,86,"[""Wireless Mouse"", ""Charger""]",3468.49,{},122539,1,Africa +2024-11-06,15620,9269,"[""Phone""]",1034.58,"{""loyalty"": ""13%""}",26039,0,Africa +2023-09-28,15621,344,"[""Charger""]",1271.95,{},133143,0,North America +2023-11-26,15622,6983,"[""Phone""]",1326.67,"{"""": ""21%""}",162258,0,Europe +2023-08-25,15623,6694,"[""Tablet"", ""Keyboard"", ""Headphones""]",2804.04,"{"""": ""9%""}",264609,1,South America +2024-01-22,15624,6812,"[""Keyboard"", ""Monitor""]",4332.58,"{""loyalty"": ""10%""}",290153,1,Africa +2023-11-14,15625,2237,"[""Tablet"", ""Keyboard"", ""Laptop""]",2065.11,"{""promo"": ""23%""}",200537,0,Europe +2023-05-24,15626,9113,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3437.12,"{""seasonal"": ""18%""}",99899,1,Africa +2024-02-03,15627,3900,"[""Tablet""]",2895.08,"{""seasonal"": ""8%""}",164715,1,South America +2023-02-02,15628,9239,"[""Laptop"", ""Tablet""]",4063.41,"{""promo"": ""29%""}",45315,0,North America +2023-09-03,15629,960,"[""Laptop""]",1668.32,"{""seasonal"": ""8%""}",4025,0,Asia +2023-08-09,15630,2038,"[""Laptop""]",1572.11,{},61632,0,Africa +2024-02-29,15631,4267,"[""Keyboard"", ""Laptop"", ""Monitor""]",2081.35,{},81264,0,Asia +2024-04-16,15632,5686,"[""Headphones"", ""Phone"", ""Charger""]",4534.08,"{""promo"": ""6%""}",139123,0,North America +2023-09-26,15633,4613,"[""Tablet"", ""Monitor"", ""Phone""]",4319.55,"{"""": ""27%""}",1480,0,South America +2023-07-03,15634,7251,"[""Charger""]",4127.0,"{""promo"": ""14%""}",268538,1,Asia +2023-01-18,15635,5274,"[""Headphones"", ""Laptop"", ""Keyboard""]",3715.85,{},275279,0,North America +2024-11-30,15636,2530,"[""Monitor"", ""Keyboard"", ""Phone""]",2646.74,"{""promo"": ""17%""}",105856,1,Africa +2023-03-22,15637,3117,"[""Keyboard"", ""Charger""]",1631.71,{},63518,1,South America +2024-01-20,15638,1761,"[""Tablet""]",3736.53,{},275749,1,Europe +2024-05-17,15639,5864,"[""Tablet"", ""Monitor""]",1454.74,{},240716,1,Africa +2023-04-04,15640,4598,"[""Tablet""]",2643.41,{},225298,1,Asia +2023-09-29,15641,4359,"[""Charger""]",3095.16,{},97029,0,Africa +2023-09-10,15642,4048,"[""Headphones"", ""Laptop"", ""Phone""]",2817.77,"{""seasonal"": ""27%""}",185292,1,Asia +2023-12-30,15643,435,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3083.0,"{""promo"": ""19%""}",44580,1,South America +2023-03-28,15644,9808,"[""Laptop"", ""Phone"", ""Keyboard""]",4216.01,"{"""": ""17%""}",290279,1,Africa +2023-04-14,15645,8337,"[""Tablet""]",843.16,{},125636,1,North America +2024-09-05,15646,9858,"[""Keyboard"", ""Tablet"", ""Charger""]",613.36,{},56811,0,Africa +2024-06-02,15647,9897,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3476.1,"{""promo"": ""8%""}",64564,0,Africa +2023-06-08,15648,1402,"[""Tablet"", ""Laptop""]",1490.93,"{""promo"": ""22%""}",186111,0,South America +2024-05-31,15649,4796,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3047.73,{},17929,0,Europe +2024-01-25,15650,8876,"[""Keyboard"", ""Laptop""]",113.65,"{""loyalty"": ""5%""}",283175,1,Asia +2023-09-02,15651,7759,"[""Tablet"", ""Phone""]",1913.76,"{"""": ""11%""}",212091,0,Africa +2023-08-14,15652,6839,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2745.28,{},156263,1,Asia +2023-07-02,15653,1229,"[""Wireless Mouse"", ""Keyboard""]",1463.21,"{""loyalty"": ""15%""}",271667,0,North America +2023-09-22,15654,2401,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2308.04,{},249961,0,Europe +2024-11-28,15655,8072,"[""Laptop""]",261.83,"{""loyalty"": ""25%""}",278443,0,South America +2024-11-21,15656,4844,"[""Phone""]",3027.33,"{""loyalty"": ""27%""}",287720,1,Asia +2024-08-19,15657,4114,"[""Charger"", ""Laptop"", ""Tablet""]",68.24,"{""seasonal"": ""14%""}",139809,1,North America +2023-05-21,15658,1965,"[""Laptop"", ""Headphones""]",1954.08,"{""promo"": ""17%""}",172721,1,Europe +2023-03-25,15659,1455,"[""Monitor"", ""Charger""]",1325.99,{},267080,1,Africa +2023-06-14,15660,7609,"[""Tablet""]",1765.45,{},188297,0,Europe +2024-01-01,15661,2777,"[""Monitor"", ""Headphones""]",4774.7,"{""seasonal"": ""9%""}",191016,0,North America +2023-12-22,15662,2977,"[""Laptop""]",477.95,"{""promo"": ""6%""}",260347,0,Asia +2024-08-02,15663,4152,"[""Tablet""]",2319.88,{},75163,1,North America +2023-08-12,15664,5433,"[""Phone""]",1128.29,"{""seasonal"": ""16%""}",18056,0,Africa +2023-01-14,15665,7454,"[""Tablet""]",2651.2,"{""promo"": ""9%""}",246541,0,North America +2023-01-19,15666,9290,"[""Phone""]",4213.93,{},231403,1,Africa +2023-04-13,15667,6329,"[""Tablet"", ""Phone""]",1884.92,{},131925,1,Europe +2023-11-26,15668,7884,"[""Headphones"", ""Laptop""]",595.15,"{""loyalty"": ""15%""}",130304,0,North America +2023-01-17,15669,6600,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",765.08,"{"""": ""7%""}",259478,0,Africa +2024-06-08,15670,5365,"[""Charger"", ""Wireless Mouse""]",1958.33,"{""seasonal"": ""19%""}",47434,1,Europe +2023-09-10,15671,5050,"[""Keyboard"", ""Charger""]",4133.69,"{"""": ""18%""}",120301,1,Europe +2023-07-07,15672,6955,"[""Charger"", ""Wireless Mouse""]",1803.8,"{""seasonal"": ""29%""}",198039,1,Asia +2024-05-25,15673,4595,"[""Laptop""]",4384.59,{},91905,0,Africa +2024-07-22,15674,8402,"[""Charger"", ""Laptop"", ""Tablet""]",732.52,{},95281,1,North America +2024-11-03,15675,1010,"[""Phone""]",3016.8,{},123215,0,South America +2023-11-13,15676,7866,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3569.75,"{""loyalty"": ""22%""}",174982,1,Asia +2023-06-13,15677,4741,"[""Tablet""]",4120.41,"{""promo"": ""15%""}",9672,1,South America +2023-10-28,15678,1268,"[""Monitor"", ""Tablet"", ""Phone""]",1987.74,"{"""": ""20%""}",21608,1,Africa +2023-05-27,15679,7879,"[""Tablet""]",2530.77,"{"""": ""10%""}",164160,0,South America +2024-08-03,15680,311,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2123.0,"{""promo"": ""13%""}",170226,1,South America +2023-03-23,15681,4470,"[""Wireless Mouse""]",2973.18,{},144415,1,Europe +2023-11-20,15682,4314,"[""Headphones"", ""Monitor"", ""Phone""]",3039.62,{},54634,1,Europe +2024-07-24,15683,3485,"[""Keyboard"", ""Phone""]",1817.99,"{""promo"": ""17%""}",248982,0,Asia +2024-12-06,15684,1515,"[""Monitor"", ""Wireless Mouse""]",3110.44,"{""seasonal"": ""14%""}",191886,1,Africa +2023-12-27,15685,9276,"[""Tablet"", ""Phone""]",3195.26,{},210968,1,Europe +2023-10-01,15686,2906,"[""Phone"", ""Charger""]",2481.74,"{""loyalty"": ""21%""}",73845,0,South America +2024-12-28,15687,771,"[""Keyboard"", ""Tablet"", ""Headphones""]",2819.8,"{""loyalty"": ""27%""}",170489,0,Asia +2024-12-14,15688,2167,"[""Headphones"", ""Monitor"", ""Tablet""]",2757.8,{},24586,0,Asia +2024-06-15,15689,3145,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2635.97,{},193251,1,Africa +2024-11-12,15690,7035,"[""Charger""]",3805.59,"{""loyalty"": ""27%""}",57101,0,Europe +2024-05-20,15691,2219,"[""Headphones""]",483.67,"{""loyalty"": ""16%""}",208337,0,Europe +2023-11-28,15692,7179,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",215.78,"{""promo"": ""20%""}",224760,0,Africa +2024-11-28,15693,914,"[""Monitor"", ""Headphones"", ""Tablet""]",214.34,{},254339,1,Asia +2024-06-28,15694,4956,"[""Wireless Mouse"", ""Tablet""]",970.12,{},148333,0,South America +2023-07-10,15695,1393,"[""Charger"", ""Headphones""]",2021.13,"{""promo"": ""6%""}",264285,1,Africa +2023-07-02,15696,4808,"[""Wireless Mouse""]",579.82,"{"""": ""26%""}",280139,0,North America +2024-09-16,15697,1637,"[""Wireless Mouse""]",615.26,{},181558,0,South America +2024-04-21,15698,3504,"[""Headphones"", ""Phone""]",242.42,"{""loyalty"": ""16%""}",205727,0,North America +2024-06-11,15699,6033,"[""Wireless Mouse""]",4246.58,{},21389,1,Europe +2024-04-19,15700,4727,"[""Keyboard""]",2986.62,{},278743,1,Africa +2023-02-20,15701,8953,"[""Charger"", ""Wireless Mouse""]",1462.66,"{""promo"": ""22%""}",123539,1,Europe +2024-02-08,15702,6714,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3354.2,{},120595,0,Europe +2023-03-17,15703,5624,"[""Headphones"", ""Monitor""]",700.83,{},290590,0,South America +2024-08-14,15704,5138,"[""Wireless Mouse"", ""Charger""]",4216.7,"{""loyalty"": ""23%""}",50732,0,Asia +2023-02-16,15705,2365,"[""Charger"", ""Headphones"", ""Keyboard""]",1600.53,{},183635,1,South America +2023-11-24,15706,7929,"[""Tablet"", ""Headphones""]",1843.55,{},9091,0,South America +2023-02-01,15707,5909,"[""Monitor""]",1892.25,{},82651,1,Africa +2023-10-30,15708,591,"[""Headphones"", ""Laptop""]",104.09,{},1255,0,South America +2024-09-24,15709,1234,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1677.34,{},150314,1,North America +2023-05-17,15710,5895,"[""Charger"", ""Phone""]",3575.25,{},3616,0,Asia +2023-12-10,15711,7091,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",769.12,{},12154,0,Africa +2024-11-07,15712,6198,"[""Tablet""]",1065.96,"{""promo"": ""20%""}",184454,0,Europe +2023-02-17,15713,8459,"[""Keyboard"", ""Headphones"", ""Tablet""]",604.85,"{""seasonal"": ""18%""}",115857,1,North America +2023-07-14,15714,1297,"[""Phone"", ""Laptop""]",682.4,{},120065,1,North America +2023-08-17,15715,4087,"[""Keyboard""]",1004.25,{},181961,1,Asia +2023-03-29,15716,3914,"[""Phone"", ""Wireless Mouse""]",3778.15,{},265231,0,South America +2023-06-09,15717,3341,"[""Phone"", ""Keyboard""]",2321.96,{},184403,1,Africa +2024-11-12,15718,6169,"[""Monitor"", ""Charger""]",3695.8,"{"""": ""21%""}",242660,0,Asia +2024-03-15,15719,807,"[""Keyboard"", ""Phone"", ""Tablet""]",628.65,{},190017,1,Asia +2023-02-19,15720,9511,"[""Charger""]",1948.01,"{""seasonal"": ""27%""}",25298,1,Asia +2023-11-16,15721,3337,"[""Wireless Mouse""]",272.8,{},220578,0,Africa +2024-01-28,15722,1639,"[""Headphones"", ""Charger""]",3365.28,{},1685,0,Africa +2024-12-22,15723,3704,"[""Monitor""]",2562.39,"{""seasonal"": ""23%""}",44371,1,Europe +2024-02-17,15724,3727,"[""Wireless Mouse"", ""Keyboard""]",3357.42,{},258005,0,South America +2024-05-28,15725,777,"[""Laptop"", ""Charger"", ""Keyboard""]",4434.72,"{""promo"": ""18%""}",144105,0,Africa +2023-12-31,15726,4146,"[""Monitor"", ""Laptop"", ""Headphones""]",2529.13,"{"""": ""21%""}",212396,1,Europe +2024-08-23,15727,4886,"[""Charger""]",2818.63,{},58558,1,South America +2023-05-05,15728,8393,"[""Keyboard"", ""Tablet""]",2132.5,{},163696,0,South America +2023-12-09,15729,7160,"[""Headphones""]",775.82,"{"""": ""23%""}",8104,0,Africa +2023-10-23,15730,5604,"[""Headphones"", ""Tablet"", ""Phone""]",3804.9,{},106006,1,South America +2024-04-19,15731,3598,"[""Keyboard"", ""Wireless Mouse""]",2812.76,{},173741,1,Africa +2024-01-03,15732,3607,"[""Monitor"", ""Laptop""]",4401.6,{},144435,0,Africa +2023-10-02,15733,8672,"[""Monitor""]",1952.91,{},262239,0,Europe +2023-08-26,15734,249,"[""Laptop""]",3194.31,{},25915,0,Europe +2023-01-31,15735,7899,"[""Laptop"", ""Wireless Mouse""]",3124.1,{},69526,1,Africa +2023-07-13,15736,6656,"[""Laptop"", ""Keyboard"", ""Phone""]",204.21,{},246935,1,Asia +2023-06-16,15737,4546,"[""Charger"", ""Phone""]",2892.18,"{""loyalty"": ""28%""}",214448,0,North America +2024-12-14,15738,5720,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",301.93,"{""seasonal"": ""18%""}",87818,0,Africa +2024-08-23,15739,8404,"[""Headphones""]",4064.93,"{""loyalty"": ""9%""}",103660,0,North America +2023-12-13,15740,6617,"[""Phone""]",4702.34,{},151565,0,North America +2024-02-02,15741,3978,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3222.88,{},184111,0,North America +2024-02-19,15742,2890,"[""Tablet""]",4058.58,"{""promo"": ""14%""}",240505,1,Africa +2023-04-03,15743,450,"[""Tablet"", ""Headphones"", ""Phone""]",1036.0,{},3145,0,North America +2024-05-03,15744,1990,"[""Keyboard""]",2831.25,"{""promo"": ""30%""}",133183,0,Africa +2023-07-23,15745,1143,"[""Headphones"", ""Laptop""]",4090.12,"{"""": ""28%""}",156193,1,South America +2024-05-17,15746,7122,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2964.24,{},242102,0,North America +2024-06-07,15747,7533,"[""Phone"", ""Tablet"", ""Laptop""]",2306.91,{},50780,0,North America +2023-07-08,15748,6270,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4604.52,{},84564,1,Asia +2023-07-10,15749,6481,"[""Keyboard"", ""Phone"", ""Headphones""]",1972.11,"{""seasonal"": ""16%""}",197395,1,Asia +2023-05-08,15750,380,"[""Laptop"", ""Headphones"", ""Tablet""]",1454.76,{},43306,1,Africa +2023-11-14,15751,7170,"[""Monitor"", ""Headphones"", ""Phone""]",3782.89,"{""loyalty"": ""19%""}",85331,0,Asia +2023-01-22,15752,3032,"[""Keyboard"", ""Headphones""]",3714.88,{},161972,1,Africa +2024-01-19,15753,8424,"[""Charger"", ""Monitor"", ""Keyboard""]",2751.4,{},293535,1,Asia +2023-09-22,15754,2666,"[""Keyboard""]",293.4,"{""promo"": ""17%""}",140244,1,Asia +2023-03-31,15755,5212,"[""Tablet""]",1709.84,{},183124,1,Europe +2023-10-01,15756,2094,"[""Phone""]",3321.85,"{""promo"": ""26%""}",254190,1,North America +2024-10-15,15757,7327,"[""Charger"", ""Keyboard""]",2722.55,{},172785,1,Asia +2023-01-03,15758,9600,"[""Wireless Mouse""]",4213.09,{},207030,0,South America +2023-10-04,15759,1322,"[""Keyboard""]",1304.71,"{""seasonal"": ""18%""}",181908,0,Asia +2023-04-15,15760,1078,"[""Charger"", ""Monitor""]",4023.61,{},245313,0,North America +2024-07-09,15761,8277,"[""Monitor""]",1432.99,"{""loyalty"": ""17%""}",161103,1,Asia +2024-05-13,15762,2358,"[""Keyboard""]",787.56,{},267793,1,North America +2024-01-22,15763,5993,"[""Monitor"", ""Laptop""]",3462.05,{},35903,1,South America +2024-01-07,15764,6249,"[""Tablet""]",1258.57,"{""seasonal"": ""18%""}",48146,1,Asia +2023-05-13,15765,7849,"[""Wireless Mouse"", ""Tablet""]",2248.87,{},245917,1,South America +2023-08-21,15766,6531,"[""Charger""]",1860.32,{},183446,1,Asia +2024-02-09,15767,6073,"[""Laptop"", ""Headphones"", ""Tablet""]",1822.62,"{"""": ""10%""}",128421,0,Africa +2023-02-15,15768,1166,"[""Keyboard""]",2895.54,{},33934,1,Asia +2023-05-16,15769,9114,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1398.41,{},37302,0,South America +2023-09-29,15770,4544,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1748.7,{},104987,1,Africa +2024-11-12,15771,7305,"[""Phone""]",1178.27,{},48633,1,Asia +2023-07-17,15772,5172,"[""Laptop"", ""Monitor"", ""Headphones""]",2172.74,"{""loyalty"": ""21%""}",253939,1,Asia +2023-11-06,15773,74,"[""Phone"", ""Charger""]",3403.79,{},194853,0,Africa +2023-01-19,15774,1758,"[""Tablet"", ""Monitor""]",3524.18,"{""seasonal"": ""8%""}",214677,1,South America +2023-05-05,15775,1746,"[""Headphones"", ""Laptop""]",1820.75,"{"""": ""8%""}",90696,1,Asia +2023-08-26,15776,6043,"[""Charger"", ""Monitor"", ""Phone""]",1164.73,"{""seasonal"": ""26%""}",160062,0,Asia +2024-04-23,15777,916,"[""Headphones"", ""Charger""]",1825.17,{},251928,0,Asia +2024-09-15,15778,3316,"[""Tablet"", ""Keyboard""]",163.51,{},58751,1,South America +2024-04-12,15779,8299,"[""Charger""]",4363.14,"{"""": ""29%""}",11667,0,Africa +2024-05-27,15780,9469,"[""Monitor"", ""Phone""]",3707.72,"{""loyalty"": ""26%""}",5207,0,North America +2023-02-25,15781,4880,"[""Keyboard"", ""Phone"", ""Charger""]",3398.65,"{""promo"": ""30%""}",215252,0,North America +2023-01-23,15782,2639,"[""Monitor""]",4603.75,{},199966,1,Europe +2023-02-19,15783,9655,"[""Laptop""]",1478.86,{},143827,1,Europe +2023-04-21,15784,7516,"[""Tablet"", ""Monitor"", ""Keyboard""]",4325.29,{},185376,0,North America +2024-10-15,15785,4737,"[""Charger"", ""Phone""]",3872.94,{},9870,0,Asia +2024-09-05,15786,8786,"[""Monitor"", ""Keyboard"", ""Charger""]",2537.16,{},135919,1,North America +2024-12-07,15787,2493,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1081.62,"{"""": ""15%""}",156607,0,Asia +2023-06-23,15788,488,"[""Headphones"", ""Monitor"", ""Charger""]",4830.85,{},214988,0,Africa +2023-01-09,15789,811,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1618.57,{},203790,1,Asia +2023-08-30,15790,9462,"[""Tablet""]",2575.59,"{"""": ""22%""}",294529,0,Africa +2023-05-09,15791,6624,"[""Charger"", ""Monitor"", ""Tablet""]",3950.06,"{""seasonal"": ""14%""}",57681,0,Africa +2024-08-14,15792,4248,"[""Charger""]",4273.72,"{""promo"": ""19%""}",186740,1,North America +2024-03-08,15793,8007,"[""Tablet""]",574.66,"{""promo"": ""20%""}",200338,1,Africa +2023-11-27,15794,5400,"[""Headphones"", ""Monitor"", ""Tablet""]",2844.73,{},4957,0,North America +2023-05-04,15795,4525,"[""Laptop""]",751.05,"{"""": ""13%""}",278486,1,South America +2023-08-31,15796,7144,"[""Charger"", ""Keyboard"", ""Laptop""]",177.71,"{""promo"": ""30%""}",242539,1,Africa +2023-04-29,15797,7137,"[""Tablet""]",4753.26,"{""seasonal"": ""29%""}",109765,1,Africa +2024-09-02,15798,3797,"[""Monitor"", ""Charger""]",2949.16,{},119233,0,Europe +2023-06-20,15799,4028,"[""Charger""]",3934.47,"{""promo"": ""23%""}",257662,0,Europe +2024-03-30,15800,5575,"[""Keyboard"", ""Charger""]",2751.38,{},142367,0,North America +2023-06-13,15801,2962,"[""Phone"", ""Laptop""]",188.04,{},33459,0,Europe +2024-09-15,15802,8863,"[""Headphones"", ""Wireless Mouse""]",2498.35,{},255607,0,North America +2024-10-04,15803,5290,"[""Wireless Mouse"", ""Tablet""]",4856.43,"{"""": ""21%""}",170128,0,Europe +2023-06-09,15804,7003,"[""Tablet""]",2832.83,"{""loyalty"": ""29%""}",273353,0,Africa +2023-01-20,15805,3163,"[""Phone"", ""Headphones"", ""Monitor""]",3961.4,"{""seasonal"": ""8%""}",57375,0,North America +2024-09-20,15806,162,"[""Tablet"", ""Headphones""]",2486.73,"{"""": ""17%""}",251754,1,Asia +2024-12-05,15807,9522,"[""Headphones"", ""Charger"", ""Keyboard""]",932.07,{},113141,1,Africa +2024-12-24,15808,418,"[""Charger"", ""Phone""]",3292.46,"{"""": ""11%""}",202468,1,Europe +2023-12-30,15809,4300,"[""Headphones"", ""Keyboard""]",4206.98,"{"""": ""14%""}",270949,1,North America +2024-08-30,15810,8371,"[""Laptop"", ""Tablet"", ""Charger""]",2115.85,{},122090,0,Asia +2023-07-24,15811,6342,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3602.47,{},178201,0,Europe +2023-07-11,15812,1917,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3808.61,"{""loyalty"": ""23%""}",50281,0,Asia +2023-09-18,15813,3840,"[""Phone"", ""Charger""]",3171.68,"{""promo"": ""25%""}",163179,0,South America +2023-06-30,15814,9966,"[""Tablet"", ""Phone""]",2147.73,{},281562,0,Africa +2023-06-02,15815,1991,"[""Wireless Mouse"", ""Monitor""]",161.58,"{""promo"": ""28%""}",192580,1,Africa +2023-01-23,15816,7286,"[""Monitor"", ""Wireless Mouse""]",2784.84,{},133433,0,Africa +2024-02-11,15817,56,"[""Phone""]",350.08,"{""loyalty"": ""16%""}",119854,1,South America +2024-03-05,15818,3554,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3748.43,"{"""": ""29%""}",176228,0,Europe +2023-11-02,15819,955,"[""Headphones"", ""Keyboard""]",4859.37,"{"""": ""13%""}",155719,0,South America +2023-11-05,15820,2179,"[""Laptop"", ""Monitor""]",4978.74,{},266077,1,South America +2024-09-17,15821,4151,"[""Tablet""]",1991.07,"{""loyalty"": ""27%""}",105788,0,Africa +2023-04-22,15822,4135,"[""Tablet"", ""Keyboard"", ""Monitor""]",1466.2,"{"""": ""12%""}",92751,0,Africa +2023-11-24,15823,5777,"[""Keyboard""]",3191.58,{},129414,1,North America +2023-03-17,15824,1519,"[""Phone"", ""Laptop""]",195.95,{},50915,0,North America +2024-10-19,15825,2289,"[""Charger""]",680.49,"{""promo"": ""9%""}",105441,1,North America +2024-10-26,15826,7442,"[""Phone"", ""Tablet"", ""Monitor""]",202.92,"{"""": ""14%""}",169708,0,Africa +2023-07-19,15827,646,"[""Wireless Mouse""]",179.93,{},118936,0,Asia +2024-02-24,15828,5798,"[""Charger""]",1720.88,{},177081,1,North America +2024-08-05,15829,8050,"[""Laptop"", ""Headphones"", ""Phone""]",126.89,"{"""": ""9%""}",116326,1,South America +2023-05-01,15830,1824,"[""Laptop""]",1233.34,"{""seasonal"": ""7%""}",259793,1,Europe +2024-02-09,15831,7605,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1994.16,{},122657,0,Africa +2023-09-29,15832,4088,"[""Tablet""]",1740.77,"{""promo"": ""14%""}",187135,0,Europe +2023-04-17,15833,5654,"[""Laptop""]",3206.24,{},5555,0,Europe +2023-07-29,15834,2637,"[""Laptop"", ""Tablet""]",1427.91,"{""loyalty"": ""16%""}",59003,0,Europe +2024-10-15,15835,2189,"[""Charger""]",4240.1,"{"""": ""14%""}",70457,0,South America +2023-05-25,15836,7919,"[""Monitor"", ""Phone""]",2128.05,"{""promo"": ""28%""}",240244,0,North America +2023-02-04,15837,2911,"[""Keyboard"", ""Charger"", ""Tablet""]",2496.0,{},16456,0,Europe +2023-03-29,15838,7289,"[""Wireless Mouse"", ""Headphones""]",887.4,{},258892,0,Europe +2024-04-28,15839,1109,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3285.01,{},17599,0,North America +2024-01-09,15840,9243,"[""Phone"", ""Laptop""]",2005.91,{},152926,1,Asia +2023-05-19,15841,6232,"[""Tablet"", ""Phone""]",1192.58,"{""promo"": ""29%""}",170218,0,Asia +2023-06-07,15842,5800,"[""Phone"", ""Charger""]",2567.06,"{""seasonal"": ""27%""}",128699,1,Africa +2024-10-19,15843,1153,"[""Wireless Mouse"", ""Charger""]",3163.74,"{""seasonal"": ""22%""}",164020,0,North America +2024-08-20,15844,6290,"[""Monitor"", ""Phone""]",2701.34,"{""seasonal"": ""5%""}",270078,0,North America +2023-06-24,15845,257,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3326.39,{},82196,1,Europe +2023-07-10,15846,8734,"[""Charger"", ""Keyboard""]",2202.66,{},52983,1,South America +2024-12-15,15847,183,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3520.19,"{""promo"": ""22%""}",274142,1,South America +2024-04-22,15848,3600,"[""Wireless Mouse""]",2644.6,{},200647,1,South America +2023-08-31,15849,9380,"[""Keyboard"", ""Tablet"", ""Laptop""]",4635.34,{},261786,1,Europe +2023-07-15,15850,9715,"[""Tablet""]",3356.32,"{""loyalty"": ""13%""}",9706,1,South America +2024-09-24,15851,823,"[""Monitor""]",760.19,"{"""": ""12%""}",158507,1,North America +2024-11-05,15852,5455,"[""Charger""]",4526.93,{},296799,0,Europe +2023-04-13,15853,2748,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3097.31,"{"""": ""8%""}",298881,0,Asia +2024-01-11,15854,8130,"[""Wireless Mouse""]",4185.27,{},10515,0,Africa +2024-06-27,15855,5558,"[""Phone""]",4029.88,"{""promo"": ""25%""}",266594,1,Asia +2023-09-07,15856,3960,"[""Charger""]",2181.32,{},134447,1,Europe +2024-08-18,15857,6076,"[""Monitor""]",4488.81,"{""loyalty"": ""13%""}",96051,0,Asia +2024-08-12,15858,8746,"[""Headphones""]",3886.24,{},185996,0,Europe +2024-11-11,15859,6979,"[""Monitor""]",345.42,{},247252,0,Asia +2023-01-06,15860,9440,"[""Laptop""]",4209.95,"{""loyalty"": ""23%""}",25563,0,Asia +2023-09-24,15861,9103,"[""Phone""]",4242.74,{},237825,1,North America +2024-02-11,15862,6975,"[""Tablet"", ""Monitor""]",2444.78,"{""seasonal"": ""14%""}",212983,0,South America +2023-01-01,15863,579,"[""Keyboard""]",2808.66,{},209453,1,Asia +2024-07-01,15864,5891,"[""Charger""]",1376.95,"{""seasonal"": ""10%""}",278404,0,North America +2023-05-05,15865,5572,"[""Keyboard"", ""Phone"", ""Monitor""]",4018.07,{},29013,0,Asia +2023-07-17,15866,9601,"[""Keyboard""]",2050.83,"{""promo"": ""17%""}",225686,1,Europe +2024-02-28,15867,9022,"[""Laptop""]",2863.99,{},295706,1,Asia +2023-12-30,15868,1320,"[""Headphones"", ""Tablet""]",209.63,"{""loyalty"": ""28%""}",259984,1,Europe +2023-12-23,15869,8090,"[""Headphones""]",3167.59,"{""loyalty"": ""14%""}",231651,1,Africa +2023-11-02,15870,1978,"[""Charger"", ""Laptop"", ""Tablet""]",3122.66,{},124735,1,South America +2023-07-24,15871,7801,"[""Charger"", ""Monitor""]",2420.68,{},168499,1,North America +2023-09-18,15872,3248,"[""Phone"", ""Laptop""]",502.71,{},185196,1,North America +2023-02-03,15873,5495,"[""Keyboard""]",1696.35,"{""promo"": ""25%""}",210053,1,Asia +2023-05-07,15874,7893,"[""Laptop"", ""Tablet""]",914.52,{},86918,1,Europe +2023-05-05,15875,4843,"[""Monitor""]",3299.78,{},98637,1,Asia +2023-01-01,15876,8057,"[""Tablet"", ""Monitor""]",440.58,"{"""": ""9%""}",7586,1,Europe +2024-12-24,15877,9644,"[""Phone"", ""Charger""]",4870.67,{},291761,1,North America +2024-04-01,15878,4624,"[""Tablet"", ""Charger"", ""Phone""]",4082.82,"{""promo"": ""11%""}",2699,0,Africa +2023-04-05,15879,4067,"[""Phone"", ""Wireless Mouse""]",3488.45,{},9248,1,Africa +2023-10-08,15880,5922,"[""Tablet""]",1843.39,{},281494,1,Europe +2024-11-07,15881,3558,"[""Laptop"", ""Phone""]",86.0,"{""loyalty"": ""18%""}",171464,1,Europe +2023-11-30,15882,6499,"[""Laptop""]",2177.45,"{""loyalty"": ""27%""}",207889,0,South America +2023-03-08,15883,4739,"[""Keyboard""]",1023.36,{},95194,0,Africa +2023-03-02,15884,9465,"[""Laptop"", ""Tablet"", ""Charger""]",1263.69,{},188934,0,Europe +2023-07-28,15885,9656,"[""Charger"", ""Headphones"", ""Tablet""]",3174.85,"{""seasonal"": ""13%""}",147658,0,Asia +2023-09-30,15886,6925,"[""Headphones""]",4252.37,{},154963,0,South America +2024-07-28,15887,9276,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",372.0,{},94992,1,North America +2024-10-30,15888,3789,"[""Keyboard"", ""Phone"", ""Charger""]",530.51,{},66987,1,Europe +2024-12-20,15889,8986,"[""Headphones"", ""Tablet""]",4380.14,{},248206,0,Europe +2024-05-12,15890,1181,"[""Keyboard"", ""Phone"", ""Headphones""]",871.18,{},194376,0,North America +2023-10-06,15891,8628,"[""Laptop"", ""Monitor"", ""Tablet""]",839.61,"{""seasonal"": ""13%""}",41784,1,North America +2023-03-27,15892,9787,"[""Monitor""]",3509.14,"{""seasonal"": ""18%""}",268030,0,South America +2023-01-02,15893,6800,"[""Keyboard"", ""Headphones"", ""Phone""]",1431.5,{},189506,0,North America +2024-08-01,15894,2364,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1585.77,"{""promo"": ""27%""}",135418,0,Asia +2024-07-17,15895,7486,"[""Keyboard""]",1546.66,{},295663,0,North America +2024-09-15,15896,103,"[""Laptop""]",655.05,"{""loyalty"": ""9%""}",193885,0,South America +2024-07-28,15897,8742,"[""Wireless Mouse"", ""Laptop""]",3192.52,{},153393,1,Africa +2024-12-04,15898,7519,"[""Tablet"", ""Monitor""]",595.89,"{""promo"": ""17%""}",201003,0,South America +2023-12-16,15899,3003,"[""Keyboard""]",2540.17,"{""promo"": ""19%""}",194392,0,Europe +2023-03-24,15900,2255,"[""Headphones"", ""Monitor""]",2257.66,"{""loyalty"": ""27%""}",252965,1,Africa +2023-12-01,15901,7083,"[""Monitor"", ""Laptop""]",3031.71,{},159827,0,North America +2024-05-19,15902,9468,"[""Headphones"", ""Laptop""]",623.26,{},253169,0,South America +2023-04-16,15903,7667,"[""Laptop"", ""Charger""]",2369.94,{},184464,0,North America +2023-09-01,15904,594,"[""Keyboard""]",4275.76,"{"""": ""15%""}",285986,0,Africa +2023-09-19,15905,3782,"[""Monitor"", ""Headphones"", ""Keyboard""]",4030.34,"{""loyalty"": ""9%""}",134776,0,North America +2024-04-20,15906,1814,"[""Headphones"", ""Tablet"", ""Laptop""]",341.86,{},30841,1,Asia +2023-09-05,15907,4723,"[""Laptop""]",1664.85,"{"""": ""18%""}",174994,1,North America +2023-01-01,15908,1579,"[""Tablet""]",1766.87,{},42475,0,Europe +2024-01-04,15909,5116,"[""Monitor"", ""Headphones"", ""Keyboard""]",1346.01,{},26311,0,Europe +2024-11-03,15910,2984,"[""Phone"", ""Headphones""]",3393.87,"{"""": ""26%""}",9720,0,North America +2024-12-14,15911,1916,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",803.49,{},125561,0,Africa +2024-09-23,15912,5354,"[""Charger"", ""Headphones"", ""Keyboard""]",4628.15,"{"""": ""21%""}",6581,1,Asia +2023-03-03,15913,5536,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1282.64,"{""promo"": ""14%""}",21201,1,Asia +2023-05-08,15914,8485,"[""Monitor"", ""Tablet""]",4831.7,{},163082,0,Europe +2024-08-16,15915,9162,"[""Headphones"", ""Wireless Mouse""]",2570.1,{},130157,0,Europe +2023-06-18,15916,6972,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",392.94,"{""promo"": ""28%""}",208189,0,Europe +2023-05-29,15917,3976,"[""Monitor""]",531.94,"{""seasonal"": ""28%""}",10629,1,North America +2024-09-11,15918,4078,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",626.47,"{""seasonal"": ""24%""}",121232,1,Europe +2024-08-26,15919,683,"[""Charger"", ""Wireless Mouse""]",4963.38,{},54738,0,Europe +2023-03-02,15920,6772,"[""Charger"", ""Tablet""]",3059.92,"{""promo"": ""28%""}",288198,1,North America +2023-04-01,15921,5386,"[""Tablet""]",2257.17,"{"""": ""28%""}",10571,0,South America +2023-06-16,15922,8466,"[""Monitor""]",4945.03,"{"""": ""13%""}",124681,1,Africa +2023-12-04,15923,9436,"[""Phone"", ""Tablet""]",1713.74,{},281803,0,Africa +2023-11-08,15924,6801,"[""Keyboard"", ""Headphones"", ""Monitor""]",4224.53,{},99254,0,Africa +2023-10-08,15925,390,"[""Laptop""]",591.6,"{""promo"": ""8%""}",202166,0,Africa +2024-12-29,15926,6417,"[""Keyboard"", ""Laptop"", ""Monitor""]",163.16,"{""seasonal"": ""17%""}",51668,0,Africa +2023-01-20,15927,3321,"[""Phone"", ""Charger""]",200.7,"{""promo"": ""29%""}",205913,1,Europe +2023-09-26,15928,6294,"[""Laptop"", ""Keyboard"", ""Charger""]",733.43,{},132165,0,Europe +2023-02-22,15929,7482,"[""Headphones""]",4964.76,"{"""": ""19%""}",157649,1,North America +2024-03-06,15930,3736,"[""Headphones"", ""Keyboard""]",521.19,{},21215,0,Europe +2024-05-15,15931,9260,"[""Tablet""]",3065.91,"{"""": ""28%""}",241855,0,North America +2023-03-12,15932,1210,"[""Phone"", ""Keyboard""]",4434.9,"{""promo"": ""17%""}",267913,1,Europe +2023-01-07,15933,4606,"[""Charger""]",2888.82,{},156325,0,South America +2024-11-11,15934,6730,"[""Charger""]",775.77,"{""seasonal"": ""8%""}",147086,0,Europe +2023-12-07,15935,3067,"[""Phone""]",2982.94,{},297476,1,Asia +2024-08-02,15936,5251,"[""Charger"", ""Monitor""]",3973.37,"{""seasonal"": ""17%""}",244291,0,South America +2023-12-20,15937,3321,"[""Headphones"", ""Wireless Mouse""]",4618.27,{},19095,1,Asia +2024-10-11,15938,6074,"[""Phone"", ""Monitor""]",4695.82,{},296375,1,Africa +2023-09-23,15939,2506,"[""Keyboard"", ""Phone""]",2966.31,"{"""": ""6%""}",3793,0,Europe +2023-05-28,15940,3064,"[""Phone"", ""Tablet""]",1909.52,"{""promo"": ""21%""}",86611,0,South America +2024-08-11,15941,495,"[""Monitor"", ""Charger"", ""Keyboard""]",4344.62,{},32038,1,Asia +2024-02-24,15942,7463,"[""Keyboard""]",1001.86,"{""seasonal"": ""21%""}",48458,0,South America +2023-04-13,15943,1283,"[""Monitor"", ""Laptop"", ""Keyboard""]",886.37,{},30740,0,Africa +2023-07-30,15944,5050,"[""Laptop"", ""Charger""]",1787.33,{},148024,0,Asia +2024-12-16,15945,3354,"[""Tablet""]",1422.61,{},173462,1,Europe +2024-11-09,15946,5027,"[""Monitor"", ""Laptop""]",3445.55,"{""loyalty"": ""21%""}",158338,0,Africa +2023-08-01,15947,9883,"[""Keyboard""]",1861.67,"{""promo"": ""20%""}",198406,0,Europe +2023-09-07,15948,2369,"[""Phone""]",2762.32,{},69537,1,Africa +2023-03-23,15949,5984,"[""Charger"", ""Monitor""]",2425.87,"{""loyalty"": ""8%""}",205345,1,North America +2023-09-19,15950,8988,"[""Charger"", ""Monitor""]",3472.76,"{""loyalty"": ""23%""}",15952,1,Asia +2024-06-18,15951,3856,"[""Monitor""]",3915.73,{},70371,0,Asia +2024-03-08,15952,5924,"[""Headphones"", ""Laptop""]",2615.79,{},145972,1,North America +2024-01-23,15953,6788,"[""Headphones"", ""Wireless Mouse""]",2267.88,"{""seasonal"": ""26%""}",80605,1,Africa +2024-04-11,15954,2128,"[""Tablet""]",1240.7,"{""promo"": ""16%""}",76163,1,Africa +2024-12-30,15955,6948,"[""Phone"", ""Laptop"", ""Monitor""]",2492.0,{},19332,0,Asia +2024-08-27,15956,6136,"[""Keyboard""]",1763.12,{},275668,1,Asia +2024-12-24,15957,615,"[""Charger"", ""Phone""]",3492.36,{},282965,1,North America +2023-01-22,15958,2315,"[""Keyboard""]",2472.2,"{""seasonal"": ""10%""}",84441,0,Africa +2024-07-01,15959,4132,"[""Headphones""]",3603.75,{},137714,1,North America +2024-12-03,15960,4142,"[""Laptop"", ""Tablet""]",359.98,{},238179,1,South America +2023-11-14,15961,2730,"[""Keyboard"", ""Phone""]",298.85,"{"""": ""8%""}",11552,0,North America +2023-02-17,15962,1593,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4928.09,{},277141,0,Europe +2024-04-01,15963,5253,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2767.71,"{"""": ""26%""}",20818,1,Europe +2023-12-15,15964,9796,"[""Laptop"", ""Phone""]",1974.64,{},217357,0,South America +2023-02-21,15965,8010,"[""Keyboard"", ""Monitor""]",1214.52,{},274714,0,Africa +2024-11-06,15966,9113,"[""Phone"", ""Headphones""]",2671.01,{},17995,0,South America +2023-05-12,15967,8935,"[""Monitor""]",3563.53,{},82675,1,Africa +2024-04-01,15968,2092,"[""Phone""]",4129.76,"{""seasonal"": ""24%""}",240904,0,Asia +2024-10-07,15969,1213,"[""Keyboard""]",2654.57,{},41730,0,Asia +2023-09-12,15970,5965,"[""Phone""]",1666.1,"{""promo"": ""6%""}",126487,1,North America +2024-08-12,15971,8673,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3251.98,{},111466,0,South America +2024-12-10,15972,1325,"[""Monitor"", ""Keyboard""]",427.94,{},240990,0,South America +2024-09-19,15973,2389,"[""Monitor"", ""Wireless Mouse""]",3401.38,"{""seasonal"": ""13%""}",288642,1,Europe +2024-10-06,15974,8299,"[""Laptop"", ""Tablet"", ""Headphones""]",2795.97,{},117688,1,Europe +2023-12-03,15975,8666,"[""Tablet"", ""Phone"", ""Monitor""]",1566.37,"{"""": ""16%""}",277904,0,Europe +2024-09-21,15976,8667,"[""Headphones"", ""Charger""]",824.51,{},34465,0,Europe +2023-06-28,15977,3022,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4179.46,{},299220,0,South America +2024-06-25,15978,3186,"[""Wireless Mouse"", ""Charger""]",4735.57,"{"""": ""5%""}",108397,1,North America +2023-03-04,15979,6916,"[""Tablet"", ""Laptop"", ""Headphones""]",3297.94,{},265216,1,Asia +2023-02-23,15980,3787,"[""Tablet"", ""Headphones""]",457.34,{},125783,0,Africa +2024-12-30,15981,8872,"[""Tablet"", ""Charger""]",2585.92,"{"""": ""27%""}",276970,1,South America +2023-11-06,15982,2615,"[""Headphones""]",2054.17,{},221849,1,Europe +2024-09-11,15983,7212,"[""Laptop"", ""Tablet"", ""Headphones""]",2736.93,"{""loyalty"": ""15%""}",157270,0,North America +2023-09-13,15984,3578,"[""Laptop"", ""Tablet""]",3318.15,"{"""": ""16%""}",154931,1,Africa +2023-07-29,15985,2707,"[""Headphones"", ""Keyboard"", ""Charger""]",4440.74,"{""promo"": ""16%""}",67385,1,North America +2023-05-07,15986,5848,"[""Headphones""]",2712.34,{},193723,1,North America +2024-10-25,15987,909,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3187.7,"{""loyalty"": ""13%""}",131408,1,South America +2023-04-06,15988,5824,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4960.0,{},33423,1,North America +2023-11-13,15989,4575,"[""Headphones""]",990.72,{},112663,1,Europe +2023-02-12,15990,6271,"[""Laptop"", ""Wireless Mouse""]",3084.22,{},125828,1,South America +2024-06-03,15991,8736,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",535.44,{},101916,0,Asia +2024-12-27,15992,1257,"[""Keyboard"", ""Wireless Mouse""]",2962.12,{},154541,0,Asia +2023-02-19,15993,9796,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4079.78,{},256661,1,Europe +2024-06-24,15994,4572,"[""Laptop""]",1781.06,"{""promo"": ""28%""}",205691,0,South America +2023-02-20,15995,9738,"[""Laptop"", ""Monitor""]",2534.13,{},230829,1,Asia +2023-09-06,15996,868,"[""Charger"", ""Laptop"", ""Keyboard""]",4009.09,"{""promo"": ""14%""}",210044,0,Europe +2023-12-02,15997,7452,"[""Charger"", ""Keyboard"", ""Laptop""]",3603.29,"{""promo"": ""15%""}",133866,0,Africa +2024-03-16,15998,5076,"[""Monitor"", ""Phone""]",3370.14,{},199659,0,North America +2024-08-10,15999,4634,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3062.22,"{""seasonal"": ""25%""}",138567,0,Africa +2024-12-28,16000,8870,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1188.47,"{""loyalty"": ""15%""}",229604,0,South America +2024-09-20,16001,5225,"[""Keyboard""]",1741.91,"{""promo"": ""28%""}",243561,0,Europe +2023-03-02,16002,3012,"[""Charger"", ""Monitor"", ""Keyboard""]",2583.68,"{""promo"": ""29%""}",49793,0,Africa +2024-11-03,16003,6768,"[""Phone""]",1704.0,{},255675,1,North America +2023-07-28,16004,4045,"[""Charger""]",2439.7,{},107487,0,Africa +2024-10-14,16005,2452,"[""Monitor"", ""Charger"", ""Headphones""]",4474.34,{},105811,1,South America +2023-02-05,16006,5764,"[""Wireless Mouse"", ""Charger""]",758.02,{},133492,1,Asia +2023-10-21,16007,8396,"[""Phone"", ""Keyboard""]",2468.5,"{""promo"": ""11%""}",167162,0,Europe +2023-06-28,16008,3596,"[""Phone"", ""Monitor"", ""Headphones""]",3826.37,"{""seasonal"": ""21%""}",131226,1,Asia +2024-01-25,16009,6075,"[""Tablet""]",2829.16,{},178005,0,South America +2024-11-18,16010,7721,"[""Keyboard"", ""Wireless Mouse""]",1163.99,"{""promo"": ""14%""}",169163,1,Europe +2024-11-12,16011,3162,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4495.34,{},136566,1,Africa +2023-10-22,16012,4139,"[""Keyboard""]",2966.97,{},17174,0,Africa +2023-09-01,16013,6142,"[""Laptop"", ""Charger"", ""Keyboard""]",3250.25,{},209629,1,Africa +2024-06-13,16014,6129,"[""Tablet""]",424.85,"{""seasonal"": ""21%""}",37720,1,North America +2024-10-17,16015,3371,"[""Headphones"", ""Phone"", ""Tablet""]",3560.66,"{""loyalty"": ""29%""}",280766,1,Asia +2023-09-24,16016,1536,"[""Phone"", ""Keyboard""]",1744.68,{},181124,1,Asia +2024-02-15,16017,365,"[""Tablet"", ""Monitor""]",1050.89,"{""promo"": ""30%""}",58562,1,Africa +2024-06-11,16018,7147,"[""Phone""]",4184.3,{},72063,0,Asia +2023-02-04,16019,4873,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4835.6,"{""promo"": ""5%""}",173665,0,North America +2024-08-09,16020,8357,"[""Laptop"", ""Monitor""]",3781.55,"{"""": ""21%""}",142848,0,South America +2023-11-04,16021,6941,"[""Tablet"", ""Monitor"", ""Keyboard""]",2906.71,{},37419,0,South America +2024-03-16,16022,8935,"[""Keyboard"", ""Laptop"", ""Charger""]",1791.32,"{"""": ""10%""}",199456,0,Asia +2023-08-30,16023,5472,"[""Laptop"", ""Monitor""]",3355.14,"{""seasonal"": ""18%""}",73767,1,Africa +2023-08-23,16024,158,"[""Wireless Mouse""]",1685.87,{},282256,1,Asia +2023-01-09,16025,6855,"[""Headphones"", ""Keyboard"", ""Tablet""]",1789.67,{},49334,0,South America +2023-08-07,16026,8580,"[""Phone"", ""Monitor""]",4804.15,"{"""": ""21%""}",139518,0,Asia +2023-11-16,16027,1576,"[""Charger""]",2858.22,{},238850,1,Africa +2023-06-16,16028,8331,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",555.27,{},102053,1,North America +2024-01-29,16029,8911,"[""Phone"", ""Monitor""]",134.15,{},10658,0,Asia +2024-01-14,16030,4480,"[""Wireless Mouse"", ""Phone""]",2238.12,"{""promo"": ""23%""}",89110,0,Africa +2023-03-20,16031,5833,"[""Tablet"", ""Keyboard"", ""Monitor""]",2703.33,{},247291,0,Europe +2023-12-16,16032,2062,"[""Laptop""]",796.36,"{""loyalty"": ""20%""}",207984,1,South America +2023-08-22,16033,2402,"[""Monitor""]",1626.24,{},115220,1,Africa +2024-02-10,16034,5806,"[""Monitor"", ""Headphones""]",879.39,{},149832,1,South America +2024-08-31,16035,6585,"[""Charger"", ""Keyboard""]",1141.3,{},254136,0,Asia +2024-03-20,16036,8252,"[""Phone""]",1834.12,{},115586,0,Europe +2023-07-22,16037,4197,"[""Tablet""]",1970.87,{},185438,1,Europe +2024-05-23,16038,289,"[""Charger"", ""Tablet"", ""Laptop""]",2798.99,{},191736,0,Africa +2023-06-05,16039,600,"[""Phone"", ""Charger"", ""Keyboard""]",3608.23,"{""promo"": ""7%""}",218152,0,North America +2024-12-04,16040,7257,"[""Headphones"", ""Wireless Mouse""]",3625.22,{},68799,1,South America +2024-03-04,16041,1009,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3576.67,"{""seasonal"": ""6%""}",44408,0,Europe +2023-12-30,16042,1739,"[""Phone""]",3742.92,{},38299,0,Europe +2023-07-03,16043,1435,"[""Headphones"", ""Tablet"", ""Charger""]",2677.52,{},179662,1,Europe +2023-09-25,16044,7385,"[""Laptop"", ""Monitor""]",4648.48,"{""promo"": ""14%""}",210925,0,North America +2024-11-19,16045,9252,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2613.33,"{"""": ""23%""}",194170,0,Africa +2024-01-25,16046,1746,"[""Monitor""]",1690.47,"{""loyalty"": ""24%""}",274022,0,Asia +2023-05-28,16047,4422,"[""Keyboard""]",3555.22,{},105398,1,Asia +2023-08-30,16048,8295,"[""Headphones""]",2260.92,"{"""": ""17%""}",287097,1,Africa +2024-02-07,16049,8223,"[""Phone""]",4198.54,"{""promo"": ""15%""}",147626,1,South America +2023-05-18,16050,7765,"[""Monitor"", ""Charger""]",3946.3,"{""seasonal"": ""24%""}",130781,1,North America +2023-09-24,16051,6185,"[""Laptop"", ""Tablet""]",3136.42,"{"""": ""14%""}",259836,0,Africa +2024-04-05,16052,7740,"[""Charger"", ""Headphones"", ""Laptop""]",2653.35,"{""promo"": ""28%""}",103684,0,South America +2024-09-26,16053,3625,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4443.66,"{""loyalty"": ""28%""}",219174,0,South America +2024-10-07,16054,1372,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2299.31,"{""loyalty"": ""25%""}",40647,0,Europe +2023-08-07,16055,4134,"[""Laptop""]",3748.97,"{""seasonal"": ""8%""}",215874,1,South America +2023-03-27,16056,6010,"[""Charger"", ""Wireless Mouse""]",1315.43,"{"""": ""27%""}",248211,1,Asia +2023-09-27,16057,8213,"[""Monitor"", ""Laptop"", ""Headphones""]",137.13,"{""seasonal"": ""16%""}",252066,1,South America +2023-03-21,16058,5210,"[""Tablet""]",2186.47,{},86274,0,South America +2023-09-13,16059,415,"[""Charger"", ""Keyboard""]",118.41,"{""promo"": ""23%""}",149798,1,South America +2023-08-03,16060,3574,"[""Wireless Mouse""]",3862.76,"{""seasonal"": ""7%""}",279429,0,Asia +2024-12-26,16061,4400,"[""Tablet"", ""Laptop"", ""Keyboard""]",584.31,{},82598,1,Africa +2023-03-05,16062,970,"[""Headphones""]",2926.0,"{""seasonal"": ""29%""}",105601,1,Asia +2023-07-02,16063,155,"[""Monitor""]",4001.74,{},233127,0,Africa +2024-12-17,16064,8785,"[""Keyboard""]",3179.38,{},143287,1,South America +2024-07-18,16065,6142,"[""Wireless Mouse""]",3117.45,{},80266,0,Africa +2023-06-12,16066,9432,"[""Laptop"", ""Wireless Mouse""]",3248.81,{},26715,0,Asia +2023-11-12,16067,3549,"[""Phone"", ""Monitor"", ""Laptop""]",1715.07,"{""loyalty"": ""21%""}",7133,0,North America +2023-05-07,16068,256,"[""Headphones"", ""Wireless Mouse""]",980.12,"{""loyalty"": ""9%""}",191710,0,North America +2023-10-19,16069,7235,"[""Laptop"", ""Headphones"", ""Charger""]",1872.83,"{""seasonal"": ""23%""}",224506,0,South America +2024-03-29,16070,1603,"[""Phone"", ""Headphones"", ""Tablet""]",2753.16,"{""promo"": ""7%""}",130219,0,South America +2024-02-03,16071,467,"[""Monitor""]",661.09,"{"""": ""16%""}",245510,1,South America +2024-06-14,16072,939,"[""Keyboard""]",2006.65,"{"""": ""11%""}",70415,1,Europe +2023-02-05,16073,6982,"[""Headphones""]",1542.15,"{""seasonal"": ""16%""}",126408,0,South America +2023-10-25,16074,9018,"[""Keyboard""]",4399.78,{},275383,1,Europe +2023-04-05,16075,1269,"[""Charger"", ""Tablet""]",4067.44,"{""loyalty"": ""7%""}",183494,0,South America +2024-01-01,16076,454,"[""Headphones""]",858.73,{},5438,1,Asia +2023-05-17,16077,7180,"[""Keyboard"", ""Monitor"", ""Charger""]",2646.1,"{"""": ""13%""}",30902,1,South America +2023-09-23,16078,1536,"[""Headphones"", ""Laptop"", ""Charger""]",3097.99,{},29688,1,Asia +2024-01-27,16079,7101,"[""Tablet"", ""Phone""]",1287.9,{},153006,1,South America +2024-02-06,16080,6609,"[""Keyboard"", ""Charger"", ""Monitor""]",276.38,{},36288,1,Europe +2024-12-31,16081,8500,"[""Keyboard"", ""Charger"", ""Headphones""]",129.53,"{""promo"": ""23%""}",144240,0,Africa +2023-08-31,16082,7655,"[""Headphones"", ""Monitor"", ""Laptop""]",1195.09,{},280129,0,Asia +2024-04-24,16083,195,"[""Phone""]",4923.87,{},139775,0,Africa +2024-12-16,16084,53,"[""Wireless Mouse""]",538.69,"{""loyalty"": ""12%""}",113706,0,Africa +2024-03-28,16085,4147,"[""Monitor"", ""Phone""]",3579.45,{},6496,0,Asia +2023-03-25,16086,7584,"[""Charger"", ""Phone"", ""Monitor""]",3704.49,"{"""": ""29%""}",23360,0,Africa +2024-07-22,16087,7160,"[""Charger""]",4882.63,{},118698,1,Africa +2023-05-11,16088,9889,"[""Charger"", ""Keyboard""]",4055.87,"{""promo"": ""10%""}",24174,1,South America +2023-10-28,16089,1183,"[""Monitor"", ""Tablet""]",285.19,"{""promo"": ""21%""}",96221,0,South America +2023-03-17,16090,1483,"[""Charger""]",2572.02,{},153122,0,South America +2024-06-14,16091,521,"[""Monitor"", ""Phone"", ""Charger""]",2731.1,{},246800,1,North America +2023-10-29,16092,4477,"[""Headphones"", ""Phone"", ""Charger""]",4356.09,{},282567,1,Asia +2023-09-23,16093,411,"[""Laptop"", ""Monitor""]",4763.66,"{""promo"": ""7%""}",161260,1,South America +2024-04-02,16094,7516,"[""Monitor""]",2680.74,{},296313,0,Africa +2024-03-17,16095,1333,"[""Tablet"", ""Laptop""]",4440.64,{},216908,1,Asia +2024-05-15,16096,5188,"[""Laptop""]",2758.34,"{""loyalty"": ""25%""}",48092,1,North America +2023-04-14,16097,8360,"[""Charger"", ""Phone"", ""Tablet""]",1348.67,"{""loyalty"": ""19%""}",179137,1,North America +2024-10-26,16098,8687,"[""Tablet"", ""Monitor""]",3276.23,{},294060,1,Africa +2023-08-24,16099,2244,"[""Tablet"", ""Laptop"", ""Phone""]",4138.76,"{""promo"": ""24%""}",115744,1,Africa +2023-07-13,16100,9630,"[""Monitor"", ""Keyboard""]",2183.28,{},88297,1,Africa +2023-12-07,16101,5733,"[""Charger"", ""Wireless Mouse""]",474.94,"{"""": ""5%""}",266835,1,North America +2023-06-23,16102,8849,"[""Headphones"", ""Tablet""]",1689.88,{},170583,0,Africa +2023-01-01,16103,5945,"[""Monitor"", ""Phone"", ""Laptop""]",3777.68,{},208491,1,South America +2023-04-28,16104,1113,"[""Phone""]",3005.87,{},297711,1,South America +2024-12-12,16105,5693,"[""Keyboard""]",3378.87,{},29667,1,North America +2023-11-20,16106,839,"[""Keyboard"", ""Laptop""]",1735.71,"{""loyalty"": ""30%""}",175393,0,Europe +2023-03-15,16107,3669,"[""Charger"", ""Laptop""]",4031.21,"{""promo"": ""5%""}",122297,0,South America +2023-10-16,16108,1092,"[""Monitor"", ""Phone"", ""Keyboard""]",713.2,"{""promo"": ""20%""}",286648,1,Europe +2023-07-08,16109,5850,"[""Laptop""]",3011.08,"{"""": ""6%""}",233374,1,South America +2023-06-14,16110,1370,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3369.84,{},138300,0,Asia +2024-11-27,16111,3083,"[""Tablet""]",4892.82,{},144263,1,South America +2024-06-04,16112,3215,"[""Headphones"", ""Tablet""]",3836.12,{},291951,1,Europe +2024-07-22,16113,662,"[""Monitor"", ""Charger""]",2326.12,"{""seasonal"": ""17%""}",98662,1,South America +2024-08-14,16114,3902,"[""Tablet""]",1165.21,"{""seasonal"": ""25%""}",123827,1,Africa +2023-11-02,16115,9311,"[""Tablet""]",549.26,"{"""": ""25%""}",66333,0,North America +2024-04-03,16116,176,"[""Charger"", ""Laptop"", ""Headphones""]",2769.75,"{"""": ""18%""}",223917,1,Asia +2024-08-29,16117,5841,"[""Phone""]",3193.03,"{"""": ""10%""}",206060,1,Asia +2024-11-16,16118,1212,"[""Charger""]",3680.06,"{""promo"": ""24%""}",117049,1,South America +2024-07-17,16119,9344,"[""Wireless Mouse"", ""Laptop""]",433.0,{},246118,1,Africa +2024-06-09,16120,6814,"[""Tablet"", ""Charger""]",2776.29,"{""seasonal"": ""16%""}",231045,0,South America +2023-07-08,16121,2358,"[""Laptop""]",1760.63,"{""loyalty"": ""28%""}",70329,1,Europe +2024-11-20,16122,1365,"[""Wireless Mouse""]",3819.58,"{""loyalty"": ""29%""}",284778,0,Asia +2023-07-16,16123,3517,"[""Wireless Mouse""]",4260.13,"{"""": ""18%""}",40087,0,Asia +2024-09-05,16124,6286,"[""Phone"", ""Monitor"", ""Laptop""]",4859.16,{},181004,1,North America +2023-10-14,16125,5563,"[""Keyboard"", ""Tablet""]",4055.22,"{"""": ""16%""}",290586,0,North America +2024-02-22,16126,9918,"[""Tablet"", ""Headphones"", ""Keyboard""]",3849.99,"{""promo"": ""26%""}",19060,1,Africa +2024-11-11,16127,1077,"[""Wireless Mouse"", ""Charger""]",4697.09,{},298283,1,South America +2023-08-09,16128,4347,"[""Headphones""]",1874.64,{},210186,0,Asia +2024-03-09,16129,1993,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4244.99,{},122464,0,South America +2024-08-05,16130,2058,"[""Monitor""]",3529.1,{},161081,1,Asia +2024-05-01,16131,7231,"[""Laptop""]",1330.62,{},235620,0,North America +2024-10-20,16132,1697,"[""Headphones"", ""Phone"", ""Keyboard""]",4764.89,{},56983,1,Europe +2024-06-25,16133,4977,"[""Laptop"", ""Monitor""]",1519.53,"{""loyalty"": ""28%""}",196854,0,Europe +2024-09-30,16134,151,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",818.01,"{""seasonal"": ""11%""}",219143,1,North America +2023-03-14,16135,1461,"[""Monitor""]",2243.23,"{""loyalty"": ""27%""}",181226,1,North America +2024-04-26,16136,5754,"[""Headphones""]",2549.31,{},286387,1,South America +2024-07-26,16137,3340,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3384.3,"{""promo"": ""11%""}",196871,0,North America +2024-10-14,16138,8378,"[""Charger"", ""Tablet"", ""Keyboard""]",2414.0,{},239460,0,South America +2023-04-21,16139,7017,"[""Monitor"", ""Headphones"", ""Keyboard""]",1958.37,"{""seasonal"": ""7%""}",174451,0,Asia +2024-04-20,16140,4470,"[""Laptop"", ""Keyboard""]",2985.68,{},249938,1,North America +2024-11-22,16141,6427,"[""Laptop""]",3316.43,"{""promo"": ""11%""}",58493,1,Africa +2023-08-09,16142,1021,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1805.34,"{""promo"": ""27%""}",273873,0,Asia +2023-01-09,16143,8005,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",141.88,{},150001,1,Asia +2023-03-25,16144,220,"[""Phone"", ""Charger""]",3829.25,"{""seasonal"": ""13%""}",247837,0,South America +2023-12-03,16145,8805,"[""Headphones"", ""Keyboard""]",1529.08,{},245976,0,Asia +2023-10-21,16146,8236,"[""Keyboard"", ""Headphones""]",3375.12,{},144398,1,South America +2023-09-06,16147,2216,"[""Laptop""]",841.77,{},101446,0,South America +2024-11-06,16148,8255,"[""Phone"", ""Tablet"", ""Headphones""]",3244.74,{},89782,1,Asia +2024-03-07,16149,8960,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4406.26,{},199239,0,Europe +2024-04-27,16150,2494,"[""Keyboard"", ""Tablet""]",3070.4,"{""loyalty"": ""6%""}",74632,1,Europe +2024-12-02,16151,3884,"[""Laptop"", ""Wireless Mouse""]",4069.48,"{"""": ""15%""}",269075,0,North America +2023-04-22,16152,1750,"[""Keyboard"", ""Headphones""]",3126.11,"{""seasonal"": ""13%""}",35127,0,North America +2024-09-10,16153,8355,"[""Wireless Mouse"", ""Phone""]",4160.44,"{"""": ""17%""}",128066,0,Africa +2023-08-27,16154,4487,"[""Phone""]",1753.14,"{""loyalty"": ""27%""}",221347,0,Africa +2023-08-02,16155,9541,"[""Monitor""]",3202.69,"{""promo"": ""17%""}",69322,0,Asia +2024-11-10,16156,3572,"[""Wireless Mouse""]",361.7,"{""seasonal"": ""24%""}",164572,1,Europe +2024-10-20,16157,154,"[""Wireless Mouse"", ""Charger""]",3447.84,{},260201,0,Asia +2023-05-17,16158,2818,"[""Charger"", ""Tablet""]",2868.84,{},149126,0,Asia +2024-03-27,16159,9511,"[""Keyboard"", ""Tablet""]",3525.44,{},144271,0,Africa +2024-04-20,16160,5119,"[""Phone""]",4126.72,{},25553,1,South America +2023-11-11,16161,862,"[""Laptop""]",4887.9,"{""seasonal"": ""29%""}",65609,0,Europe +2023-06-18,16162,8936,"[""Keyboard"", ""Charger""]",4930.31,{},183055,0,Africa +2024-11-15,16163,5477,"[""Keyboard""]",1476.66,{},73513,0,Africa +2024-01-06,16164,3161,"[""Keyboard"", ""Wireless Mouse""]",4309.28,"{""promo"": ""24%""}",245394,0,Africa +2024-06-29,16165,9324,"[""Tablet"", ""Charger""]",803.92,"{""seasonal"": ""20%""}",233571,0,Africa +2023-12-14,16166,2488,"[""Monitor"", ""Headphones"", ""Phone""]",2967.33,"{""promo"": ""20%""}",183041,0,North America +2024-07-31,16167,4641,"[""Headphones"", ""Tablet"", ""Laptop""]",2861.27,"{""loyalty"": ""15%""}",183744,0,Africa +2023-01-30,16168,3002,"[""Laptop"", ""Phone""]",1770.42,"{"""": ""19%""}",62718,0,Asia +2023-06-09,16169,1656,"[""Phone"", ""Tablet""]",2528.39,{},207821,0,South America +2024-07-24,16170,7141,"[""Laptop""]",2289.89,{},255307,1,South America +2024-05-15,16171,1185,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2925.37,"{"""": ""20%""}",97127,1,South America +2023-05-12,16172,265,"[""Tablet"", ""Laptop"", ""Headphones""]",3474.48,{},48862,1,North America +2024-07-01,16173,5850,"[""Keyboard""]",185.33,"{""loyalty"": ""26%""}",207347,0,South America +2023-08-13,16174,1798,"[""Wireless Mouse""]",177.44,"{""promo"": ""10%""}",227685,1,Europe +2024-02-05,16175,7107,"[""Laptop""]",3341.69,"{"""": ""16%""}",123868,0,Africa +2024-07-17,16176,6656,"[""Headphones"", ""Laptop""]",130.4,"{"""": ""21%""}",265566,0,Europe +2024-10-10,16177,629,"[""Phone"", ""Laptop"", ""Tablet""]",1373.39,"{""seasonal"": ""5%""}",274229,0,Europe +2024-02-10,16178,7342,"[""Keyboard"", ""Laptop""]",3148.24,"{""loyalty"": ""18%""}",223173,1,Europe +2023-02-07,16179,7380,"[""Monitor""]",1638.93,"{""promo"": ""9%""}",148299,0,North America +2023-08-15,16180,5855,"[""Laptop"", ""Tablet"", ""Monitor""]",1282.86,{},159212,1,Europe +2023-05-14,16181,5004,"[""Tablet"", ""Charger""]",2122.37,{},84831,1,Africa +2023-09-08,16182,136,"[""Charger"", ""Laptop""]",594.64,"{"""": ""16%""}",279996,0,Africa +2023-02-13,16183,9004,"[""Phone"", ""Laptop"", ""Keyboard""]",2849.39,{},58519,0,Asia +2023-02-28,16184,3143,"[""Wireless Mouse"", ""Headphones""]",1806.6,"{""loyalty"": ""12%""}",102807,0,South America +2024-03-29,16185,3559,"[""Phone""]",4209.06,"{""loyalty"": ""10%""}",274793,0,Europe +2024-05-05,16186,7880,"[""Headphones"", ""Phone""]",1300.59,{},270751,0,North America +2023-08-23,16187,1132,"[""Laptop""]",916.03,"{""seasonal"": ""13%""}",269234,1,North America +2024-09-02,16188,7724,"[""Charger"", ""Monitor""]",2226.83,"{""promo"": ""24%""}",53478,1,Asia +2024-08-24,16189,8340,"[""Monitor"", ""Tablet"", ""Headphones""]",3462.95,{},72586,0,South America +2024-07-03,16190,2947,"[""Phone"", ""Monitor""]",3826.38,"{""loyalty"": ""24%""}",33383,0,Europe +2023-05-26,16191,3954,"[""Charger"", ""Monitor""]",562.44,"{"""": ""12%""}",120530,0,Asia +2024-07-29,16192,2135,"[""Phone"", ""Charger"", ""Headphones""]",4805.59,"{""seasonal"": ""8%""}",165689,0,Africa +2024-08-05,16193,8872,"[""Keyboard"", ""Wireless Mouse""]",3073.17,{},299409,0,North America +2024-07-12,16194,5578,"[""Wireless Mouse""]",1294.54,"{""seasonal"": ""21%""}",291728,1,Europe +2024-08-09,16195,6218,"[""Laptop""]",4066.0,{},193443,1,Europe +2024-08-28,16196,6822,"[""Monitor"", ""Headphones"", ""Keyboard""]",1905.68,"{""promo"": ""21%""}",194087,0,North America +2024-11-22,16197,3349,"[""Laptop"", ""Monitor""]",4645.87,{},248842,0,South America +2024-05-29,16198,4255,"[""Wireless Mouse""]",2895.53,"{""promo"": ""27%""}",138749,1,Africa +2024-04-14,16199,7995,"[""Phone"", ""Keyboard""]",2296.2,{},291821,1,South America +2023-02-07,16200,4870,"[""Headphones"", ""Laptop""]",3346.64,{},163932,0,Africa +2023-04-06,16201,7614,"[""Charger""]",2091.03,"{""loyalty"": ""11%""}",137671,1,Asia +2024-10-18,16202,8872,"[""Monitor"", ""Laptop"", ""Phone""]",2800.73,"{""loyalty"": ""13%""}",213386,0,Europe +2023-10-06,16203,8938,"[""Tablet""]",4194.31,"{"""": ""7%""}",43376,1,Asia +2023-01-10,16204,9873,"[""Monitor"", ""Laptop"", ""Headphones""]",2225.18,"{""loyalty"": ""23%""}",28998,0,Africa +2024-12-24,16205,7319,"[""Keyboard"", ""Tablet"", ""Phone""]",4376.19,"{"""": ""13%""}",20821,1,Asia +2024-05-03,16206,6662,"[""Monitor"", ""Laptop"", ""Headphones""]",2101.14,{},286619,1,Asia +2023-01-03,16207,7275,"[""Phone""]",628.39,{},203080,1,North America +2023-08-29,16208,7641,"[""Monitor"", ""Keyboard""]",3959.85,{},191703,1,North America +2024-01-05,16209,5257,"[""Tablet"", ""Laptop""]",3431.75,{},7901,1,Europe +2024-07-13,16210,972,"[""Headphones""]",4104.3,"{"""": ""19%""}",134993,0,Africa +2023-09-28,16211,9298,"[""Monitor"", ""Wireless Mouse""]",3857.72,{},194293,1,North America +2024-03-07,16212,6040,"[""Charger"", ""Phone""]",3848.11,{},20174,1,Europe +2023-11-30,16213,9318,"[""Keyboard"", ""Monitor"", ""Phone""]",504.19,{},23445,0,Asia +2023-09-07,16214,3031,"[""Headphones"", ""Wireless Mouse""]",4823.51,{},274280,0,Europe +2023-03-08,16215,5768,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",262.68,"{""loyalty"": ""10%""}",255548,0,North America +2024-08-18,16216,2801,"[""Phone"", ""Charger""]",2575.4,"{""loyalty"": ""13%""}",230285,1,Africa +2024-11-15,16217,1608,"[""Monitor"", ""Charger""]",2681.13,"{"""": ""14%""}",182866,1,Africa +2023-09-04,16218,6052,"[""Headphones"", ""Phone""]",4073.46,"{""loyalty"": ""25%""}",60320,0,North America +2023-05-13,16219,2767,"[""Monitor"", ""Headphones"", ""Tablet""]",3453.97,{},75467,1,Asia +2024-01-08,16220,7945,"[""Monitor"", ""Tablet""]",3239.06,{},187756,0,North America +2023-10-15,16221,8344,"[""Wireless Mouse""]",3750.83,{},141649,0,Europe +2024-04-13,16222,5864,"[""Tablet"", ""Wireless Mouse""]",3362.55,{},161562,1,South America +2024-09-21,16223,1096,"[""Laptop"", ""Keyboard""]",1974.11,"{""seasonal"": ""28%""}",83048,0,Asia +2024-02-04,16224,7018,"[""Keyboard"", ""Tablet"", ""Phone""]",4022.41,"{"""": ""8%""}",79430,0,North America +2023-12-11,16225,1544,"[""Monitor""]",3174.12,"{""seasonal"": ""5%""}",270110,1,Asia +2024-08-26,16226,4581,"[""Charger"", ""Keyboard"", ""Phone""]",3348.36,"{""loyalty"": ""30%""}",101998,1,Africa +2023-01-22,16227,1788,"[""Phone""]",2301.35,"{""loyalty"": ""13%""}",170612,1,Europe +2024-11-11,16228,5518,"[""Laptop"", ""Headphones"", ""Tablet""]",4122.08,"{""promo"": ""6%""}",45304,0,Asia +2024-08-23,16229,730,"[""Tablet""]",1825.35,{},256785,1,South America +2023-10-20,16230,832,"[""Laptop"", ""Charger""]",3853.76,"{""promo"": ""20%""}",68289,0,North America +2023-11-18,16231,8750,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4558.48,{},78800,0,North America +2024-08-20,16232,1024,"[""Charger""]",2337.94,"{""loyalty"": ""12%""}",291393,0,North America +2023-07-06,16233,8159,"[""Headphones"", ""Wireless Mouse""]",2756.6,{},26390,0,Asia +2024-08-31,16234,7937,"[""Charger"", ""Keyboard""]",3329.83,{},69963,1,Asia +2024-09-29,16235,2909,"[""Phone""]",1340.29,{},193129,0,Europe +2023-10-21,16236,3923,"[""Headphones"", ""Laptop""]",2811.96,"{""loyalty"": ""17%""}",220297,1,Europe +2024-06-11,16237,9531,"[""Headphones"", ""Charger""]",3554.91,{},217235,0,Africa +2023-04-19,16238,6357,"[""Headphones"", ""Monitor"", ""Charger""]",1714.15,{},217713,1,South America +2023-07-05,16239,5560,"[""Tablet"", ""Keyboard""]",4291.5,{},194642,0,Europe +2024-11-21,16240,9129,"[""Headphones""]",2380.96,{},295952,0,Asia +2023-04-21,16241,738,"[""Headphones"", ""Phone""]",3558.96,"{""loyalty"": ""22%""}",39996,0,Africa +2023-10-23,16242,3213,"[""Wireless Mouse"", ""Phone""]",498.64,{},211108,1,North America +2023-09-04,16243,739,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3500.15,"{""seasonal"": ""5%""}",267625,1,Asia +2024-06-17,16244,2245,"[""Headphones"", ""Tablet"", ""Charger""]",245.1,"{""seasonal"": ""19%""}",237655,1,South America +2024-06-29,16245,9213,"[""Keyboard""]",1565.34,"{""loyalty"": ""6%""}",117924,0,Asia +2023-08-21,16246,9904,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1735.91,{},28949,0,North America +2023-07-20,16247,1664,"[""Tablet"", ""Monitor""]",4250.26,"{""promo"": ""15%""}",56403,0,South America +2024-02-23,16248,2814,"[""Phone""]",4294.85,"{"""": ""15%""}",141827,1,Asia +2024-10-01,16249,4774,"[""Laptop""]",326.42,"{""loyalty"": ""10%""}",134889,1,Asia +2024-08-01,16250,1773,"[""Tablet"", ""Keyboard"", ""Laptop""]",842.1,"{"""": ""24%""}",239521,1,Europe +2024-01-16,16251,9305,"[""Headphones""]",3806.24,{},62971,1,Europe +2023-03-31,16252,5564,"[""Laptop"", ""Keyboard""]",3730.29,{},198454,1,Asia +2024-12-20,16253,2780,"[""Headphones"", ""Laptop"", ""Phone""]",1162.28,"{""promo"": ""9%""}",135594,1,Europe +2024-08-12,16254,363,"[""Phone""]",2462.97,"{""promo"": ""11%""}",58285,1,Asia +2024-10-06,16255,587,"[""Tablet""]",4154.07,{},276981,0,North America +2023-09-21,16256,707,"[""Charger""]",3771.08,"{""loyalty"": ""19%""}",131475,1,Africa +2023-07-20,16257,2422,"[""Tablet"", ""Keyboard""]",2673.68,"{""promo"": ""20%""}",35566,1,South America +2024-10-04,16258,1665,"[""Monitor""]",290.83,{},17143,0,North America +2024-01-01,16259,2078,"[""Laptop"", ""Charger""]",2327.5,"{""seasonal"": ""27%""}",295407,0,South America +2023-12-18,16260,9201,"[""Headphones""]",4879.8,{},64003,0,South America +2024-08-10,16261,2958,"[""Headphones""]",3015.29,"{""promo"": ""13%""}",26757,1,Asia +2023-11-15,16262,892,"[""Charger""]",4548.93,"{"""": ""10%""}",108364,1,Europe +2023-04-03,16263,8081,"[""Phone"", ""Keyboard"", ""Tablet""]",3738.16,{},81702,1,South America +2023-07-14,16264,8866,"[""Wireless Mouse"", ""Charger""]",1280.0,{},12677,0,Africa +2023-03-18,16265,7804,"[""Headphones"", ""Laptop"", ""Monitor""]",3985.61,{},157628,0,South America +2024-01-18,16266,6730,"[""Monitor"", ""Charger"", ""Laptop""]",3177.65,{},164536,0,Europe +2024-09-21,16267,5067,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2537.57,{},209160,1,South America +2023-08-26,16268,7450,"[""Wireless Mouse""]",89.43,"{""loyalty"": ""24%""}",217261,0,South America +2023-03-07,16269,1146,"[""Phone"", ""Tablet""]",3263.21,{},203485,0,North America +2024-09-18,16270,3342,"[""Tablet"", ""Monitor""]",3575.06,{},260730,1,Europe +2023-09-07,16271,7831,"[""Phone"", ""Laptop"", ""Keyboard""]",1429.29,{},111938,1,Europe +2023-09-06,16272,3245,"[""Laptop""]",3464.05,{},20490,1,Asia +2023-07-30,16273,8900,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1874.62,{},233073,1,Europe +2023-11-29,16274,6743,"[""Tablet"", ""Phone"", ""Charger""]",1950.43,{},58049,0,North America +2023-12-20,16275,2697,"[""Tablet"", ""Headphones""]",222.3,"{""seasonal"": ""30%""}",109197,0,Asia +2024-08-21,16276,2187,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1085.24,"{""loyalty"": ""14%""}",5470,0,Africa +2023-09-03,16277,2221,"[""Laptop"", ""Keyboard"", ""Phone""]",309.56,{},194079,1,South America +2023-09-02,16278,5723,"[""Phone"", ""Charger""]",4540.79,{},24874,0,South America +2024-05-21,16279,2190,"[""Monitor"", ""Phone"", ""Headphones""]",2804.86,{},80117,0,Europe +2023-12-07,16280,674,"[""Keyboard"", ""Charger"", ""Headphones""]",559.04,"{""loyalty"": ""6%""}",221162,1,South America +2024-07-27,16281,6991,"[""Charger""]",3408.58,{},8780,1,Europe +2024-02-29,16282,2876,"[""Monitor"", ""Tablet""]",4766.37,{},152745,0,Africa +2024-11-06,16283,5939,"[""Monitor"", ""Wireless Mouse""]",3997.89,"{"""": ""14%""}",184372,0,North America +2024-01-06,16284,2797,"[""Headphones""]",3895.66,"{""seasonal"": ""22%""}",205906,0,North America +2023-07-02,16285,4616,"[""Monitor""]",170.42,{},20956,1,North America +2024-06-21,16286,6458,"[""Laptop"", ""Phone"", ""Headphones""]",1232.73,{},18254,1,Asia +2023-06-01,16287,481,"[""Monitor""]",3444.75,"{""seasonal"": ""21%""}",28176,0,Africa +2023-05-11,16288,394,"[""Keyboard""]",3289.74,{},269496,1,Asia +2024-12-24,16289,6317,"[""Headphones"", ""Monitor"", ""Phone""]",978.44,{},61479,1,North America +2024-09-28,16290,6661,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2729.1,{},274377,0,North America +2023-09-17,16291,95,"[""Monitor""]",3907.17,"{""seasonal"": ""12%""}",295348,1,Asia +2024-12-16,16292,9701,"[""Phone"", ""Headphones""]",639.07,{},122193,0,South America +2024-11-30,16293,4650,"[""Monitor""]",2519.29,{},247733,0,Asia +2024-02-19,16294,9253,"[""Monitor"", ""Tablet""]",1801.93,{},47225,1,South America +2023-12-27,16295,8998,"[""Monitor""]",1858.92,{},9060,1,South America +2024-06-08,16296,267,"[""Monitor""]",2002.66,{},93254,0,Europe +2024-12-18,16297,8918,"[""Charger""]",4002.99,{},132987,1,Africa +2023-07-18,16298,8303,"[""Keyboard""]",1932.35,{},14636,0,Asia +2023-05-07,16299,3659,"[""Tablet""]",3280.37,{},220370,1,South America +2023-08-27,16300,9839,"[""Laptop"", ""Monitor""]",4093.91,"{""seasonal"": ""9%""}",33865,0,Asia +2024-06-14,16301,7401,"[""Headphones"", ""Keyboard"", ""Monitor""]",3198.26,"{""seasonal"": ""14%""}",18973,1,North America +2024-06-21,16302,3359,"[""Tablet"", ""Headphones"", ""Monitor""]",868.06,{},194935,0,Europe +2024-04-10,16303,3402,"[""Headphones"", ""Phone"", ""Tablet""]",4226.66,{},241784,0,North America +2024-07-25,16304,7501,"[""Keyboard"", ""Monitor"", ""Charger""]",4710.91,{},113322,1,South America +2024-07-14,16305,7495,"[""Laptop""]",2664.36,"{""loyalty"": ""14%""}",61457,0,Europe +2024-04-13,16306,6280,"[""Tablet"", ""Headphones"", ""Phone""]",157.24,{},130285,0,Africa +2023-08-25,16307,3952,"[""Wireless Mouse""]",3799.81,{},247267,1,Asia +2023-04-30,16308,3862,"[""Keyboard"", ""Laptop"", ""Phone""]",3378.08,{},210997,0,North America +2024-11-28,16309,9020,"[""Headphones""]",1044.89,"{""promo"": ""25%""}",237287,0,Europe +2023-03-27,16310,6354,"[""Headphones""]",1610.32,"{""promo"": ""23%""}",171608,1,Asia +2024-01-05,16311,2007,"[""Laptop"", ""Tablet""]",4715.09,{},208114,0,Europe +2024-06-11,16312,7160,"[""Monitor"", ""Laptop""]",4369.16,"{""promo"": ""12%""}",3810,1,Europe +2024-05-18,16313,5994,"[""Laptop"", ""Keyboard""]",4633.49,{},167691,1,South America +2024-01-19,16314,5111,"[""Charger""]",3497.4,"{"""": ""12%""}",231370,0,South America +2024-08-20,16315,2813,"[""Tablet""]",4537.05,{},6099,1,Asia +2024-10-06,16316,7451,"[""Charger""]",943.22,"{"""": ""26%""}",176565,1,Africa +2024-12-27,16317,5500,"[""Headphones""]",2916.52,"{""promo"": ""9%""}",21325,0,Europe +2023-03-02,16318,5927,"[""Phone"", ""Headphones"", ""Charger""]",4941.45,{},113367,1,Asia +2024-05-18,16319,5960,"[""Laptop"", ""Charger"", ""Keyboard""]",4733.57,{},34424,1,Africa +2023-10-29,16320,2894,"[""Charger"", ""Wireless Mouse""]",1872.89,"{""loyalty"": ""12%""}",96086,0,Europe +2024-04-04,16321,3347,"[""Headphones"", ""Monitor""]",2367.78,{},69325,0,Europe +2024-06-29,16322,7677,"[""Laptop"", ""Charger"", ""Phone""]",2548.29,"{""promo"": ""9%""}",4034,1,South America +2023-01-19,16323,6372,"[""Tablet"", ""Headphones"", ""Charger""]",880.57,"{""loyalty"": ""16%""}",141847,1,North America +2024-11-02,16324,2243,"[""Charger""]",2755.0,{},13768,0,Asia +2023-09-18,16325,6948,"[""Tablet"", ""Phone""]",1502.15,"{""seasonal"": ""11%""}",36162,1,Europe +2023-06-11,16326,2468,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2824.02,"{""loyalty"": ""15%""}",192615,1,Europe +2024-06-17,16327,8477,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4603.85,{},280695,0,Asia +2024-02-17,16328,6227,"[""Laptop""]",3750.19,{},229227,0,South America +2023-12-31,16329,5887,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1293.3,{},216395,1,South America +2024-07-24,16330,9701,"[""Monitor"", ""Keyboard""]",1249.25,{},49343,1,Europe +2023-12-10,16331,2851,"[""Keyboard"", ""Charger"", ""Monitor""]",1149.67,{},203111,1,Asia +2024-09-08,16332,7325,"[""Charger""]",3136.87,{},157716,1,South America +2024-10-06,16333,5186,"[""Tablet"", ""Keyboard""]",4739.63,"{"""": ""30%""}",231429,0,South America +2024-01-10,16334,4487,"[""Monitor"", ""Keyboard"", ""Tablet""]",3602.5,"{""promo"": ""7%""}",69103,0,South America +2023-07-28,16335,5045,"[""Phone"", ""Keyboard"", ""Charger""]",2269.87,"{""promo"": ""16%""}",214039,0,South America +2024-03-14,16336,7493,"[""Keyboard""]",1573.74,{},260035,0,Europe +2024-05-05,16337,6795,"[""Wireless Mouse""]",3690.89,"{""promo"": ""12%""}",179649,0,North America +2023-12-16,16338,7319,"[""Monitor""]",2806.26,"{"""": ""29%""}",82236,0,North America +2023-07-12,16339,8028,"[""Phone"", ""Charger"", ""Laptop""]",4056.47,"{""seasonal"": ""18%""}",9948,1,Africa +2024-09-01,16340,1587,"[""Tablet"", ""Headphones"", ""Keyboard""]",4097.0,"{""loyalty"": ""9%""}",279050,1,Europe +2023-12-13,16341,1740,"[""Keyboard""]",3317.61,{},15216,0,Africa +2024-04-11,16342,7848,"[""Tablet"", ""Headphones"", ""Keyboard""]",592.06,"{"""": ""27%""}",108518,1,Africa +2023-09-24,16343,1645,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3405.7,{},198314,1,Europe +2024-07-24,16344,7958,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3232.71,"{"""": ""23%""}",170324,0,Asia +2023-02-06,16345,7666,"[""Phone""]",3430.08,{},233023,1,Asia +2024-02-10,16346,5135,"[""Headphones"", ""Keyboard""]",2719.98,{},226143,0,Europe +2024-03-30,16347,6688,"[""Monitor"", ""Charger"", ""Laptop""]",3332.59,"{"""": ""16%""}",221062,1,Asia +2024-11-05,16348,6068,"[""Tablet"", ""Charger"", ""Phone""]",2861.96,{},137170,1,South America +2024-09-18,16349,79,"[""Laptop"", ""Phone""]",2589.51,{},239376,1,North America +2023-08-26,16350,4219,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3898.17,"{""loyalty"": ""24%""}",157670,0,South America +2023-02-09,16351,3028,"[""Wireless Mouse"", ""Laptop""]",1244.28,"{""loyalty"": ""8%""}",277069,0,South America +2024-08-23,16352,3660,"[""Charger""]",3926.58,"{"""": ""5%""}",233317,0,Asia +2024-06-17,16353,6842,"[""Charger"", ""Keyboard""]",1543.31,"{""promo"": ""20%""}",106261,0,North America +2024-03-23,16354,7478,"[""Keyboard"", ""Phone"", ""Laptop""]",1308.79,{},155324,0,Europe +2024-07-29,16355,5498,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1746.8,{},157493,1,Africa +2024-12-10,16356,6623,"[""Tablet""]",693.38,"{""promo"": ""5%""}",98525,1,North America +2023-02-06,16357,1912,"[""Wireless Mouse""]",2854.95,{},88078,1,North America +2023-04-07,16358,5796,"[""Monitor""]",3805.34,{},168359,1,South America +2024-07-08,16359,4392,"[""Headphones"", ""Monitor"", ""Keyboard""]",2307.29,{},150314,1,South America +2023-10-10,16360,799,"[""Tablet"", ""Monitor"", ""Keyboard""]",3267.41,{},243168,0,North America +2024-07-20,16361,6500,"[""Charger""]",4559.74,"{"""": ""5%""}",75044,0,Europe +2024-11-29,16362,44,"[""Headphones"", ""Phone""]",4469.68,"{""loyalty"": ""30%""}",80368,1,Africa +2023-03-12,16363,5361,"[""Laptop""]",62.6,{},126212,1,Africa +2023-10-25,16364,8599,"[""Keyboard"", ""Headphones""]",1993.97,"{""promo"": ""24%""}",238978,1,Asia +2023-10-14,16365,1836,"[""Tablet"", ""Headphones""]",2139.3,"{""seasonal"": ""21%""}",298333,0,Asia +2024-11-20,16366,7326,"[""Laptop""]",3203.34,"{""seasonal"": ""11%""}",133670,1,North America +2023-03-19,16367,7307,"[""Monitor""]",146.28,"{""seasonal"": ""20%""}",278185,0,Africa +2024-11-14,16368,7695,"[""Phone"", ""Keyboard""]",2767.63,{},35388,0,Africa +2024-12-26,16369,5837,"[""Keyboard"", ""Charger""]",3037.18,{},65628,0,Africa +2024-04-07,16370,564,"[""Headphones"", ""Phone"", ""Laptop""]",2449.77,"{""seasonal"": ""27%""}",244028,0,South America +2024-04-26,16371,2654,"[""Tablet"", ""Charger""]",1017.11,"{""loyalty"": ""7%""}",154915,0,South America +2023-06-15,16372,8162,"[""Monitor"", ""Keyboard""]",143.09,"{""seasonal"": ""21%""}",33246,1,North America +2024-02-25,16373,268,"[""Phone"", ""Keyboard"", ""Monitor""]",136.97,"{""promo"": ""6%""}",268101,1,Asia +2023-05-23,16374,6566,"[""Monitor"", ""Charger""]",4203.62,{},74394,0,Asia +2024-04-01,16375,705,"[""Headphones""]",474.02,"{""seasonal"": ""17%""}",288362,1,Africa +2023-04-10,16376,9295,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4700.18,"{"""": ""8%""}",8114,0,Asia +2024-09-20,16377,6342,"[""Keyboard""]",169.01,"{""loyalty"": ""10%""}",103404,1,North America +2024-02-01,16378,7471,"[""Wireless Mouse""]",3401.23,"{""promo"": ""27%""}",232509,1,North America +2024-04-01,16379,7121,"[""Laptop"", ""Headphones"", ""Tablet""]",3483.53,"{""loyalty"": ""12%""}",138647,0,Asia +2024-03-10,16380,5991,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3699.92,{},135810,1,Asia +2023-10-23,16381,9089,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1947.92,{},220604,0,Europe +2024-07-10,16382,4090,"[""Tablet"", ""Laptop""]",1751.01,"{"""": ""19%""}",215360,0,North America +2024-07-23,16383,3075,"[""Charger""]",4205.1,{},104166,0,Africa +2024-01-11,16384,7845,"[""Headphones"", ""Monitor"", ""Phone""]",4808.94,{},1217,1,Europe +2024-02-16,16385,518,"[""Keyboard""]",4981.12,"{""loyalty"": ""24%""}",71473,1,North America +2023-06-20,16386,6254,"[""Laptop"", ""Phone""]",1520.41,"{""loyalty"": ""6%""}",267885,0,Africa +2024-05-22,16387,1535,"[""Monitor"", ""Keyboard"", ""Charger""]",1699.51,{},123470,1,Asia +2024-09-06,16388,7087,"[""Laptop"", ""Phone""]",2365.13,{},174367,0,Europe +2023-11-29,16389,1159,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",695.25,"{""seasonal"": ""23%""}",56423,0,Europe +2024-03-13,16390,749,"[""Headphones"", ""Keyboard"", ""Charger""]",3396.28,"{""seasonal"": ""17%""}",6288,1,Europe +2023-05-12,16391,2857,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3535.72,{},152388,0,Africa +2023-07-16,16392,256,"[""Headphones""]",3531.11,"{""seasonal"": ""11%""}",198879,1,Africa +2024-04-10,16393,3038,"[""Wireless Mouse"", ""Monitor""]",4537.42,"{"""": ""18%""}",205874,1,Africa +2023-07-04,16394,4651,"[""Laptop"", ""Phone"", ""Monitor""]",529.15,{},77332,1,South America +2023-06-09,16395,1339,"[""Monitor"", ""Tablet""]",263.98,{},149648,0,South America +2024-10-25,16396,6608,"[""Keyboard"", ""Laptop""]",2908.77,"{""seasonal"": ""17%""}",29450,1,Africa +2023-09-30,16397,9850,"[""Monitor""]",317.86,"{""promo"": ""15%""}",213389,1,North America +2024-11-15,16398,9783,"[""Headphones"", ""Tablet"", ""Charger""]",4072.15,"{""seasonal"": ""8%""}",298488,0,Europe +2024-03-19,16399,4040,"[""Charger"", ""Headphones""]",4145.78,"{""promo"": ""8%""}",69703,1,Africa +2023-02-14,16400,6299,"[""Headphones"", ""Tablet""]",4346.53,{},92890,1,Africa +2024-11-29,16401,1763,"[""Keyboard"", ""Tablet""]",3216.17,"{"""": ""20%""}",38328,0,South America +2024-09-24,16402,7524,"[""Headphones"", ""Phone"", ""Tablet""]",4214.71,{},7092,0,South America +2023-01-29,16403,6114,"[""Laptop"", ""Monitor""]",1530.92,"{""seasonal"": ""17%""}",226296,0,North America +2024-03-11,16404,8382,"[""Wireless Mouse""]",3041.36,"{""loyalty"": ""24%""}",231954,0,North America +2023-08-06,16405,7930,"[""Keyboard"", ""Laptop"", ""Tablet""]",761.56,"{""seasonal"": ""27%""}",209979,0,South America +2023-07-25,16406,4418,"[""Monitor""]",73.41,"{""promo"": ""13%""}",174026,0,Asia +2023-04-09,16407,9034,"[""Keyboard"", ""Charger""]",2643.06,{},4768,0,South America +2023-10-22,16408,4598,"[""Monitor""]",2391.84,{},262020,0,North America +2023-12-25,16409,3750,"[""Headphones"", ""Laptop""]",4668.13,{},211040,1,North America +2024-01-27,16410,2304,"[""Wireless Mouse""]",4026.35,{},24978,1,Europe +2024-10-29,16411,4519,"[""Charger"", ""Keyboard""]",1873.78,"{""loyalty"": ""20%""}",86692,0,Asia +2024-04-20,16412,4956,"[""Tablet"", ""Wireless Mouse""]",2673.61,{},289068,1,Asia +2024-12-01,16413,4472,"[""Charger"", ""Phone""]",4031.39,"{""loyalty"": ""28%""}",241093,1,South America +2023-07-31,16414,8505,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1472.73,"{""loyalty"": ""25%""}",217936,0,North America +2023-11-19,16415,1901,"[""Headphones""]",4014.83,{},185596,1,South America +2024-05-24,16416,8377,"[""Wireless Mouse""]",1052.11,"{""promo"": ""9%""}",61422,1,Africa +2024-08-06,16417,8747,"[""Wireless Mouse""]",3948.81,{},166068,1,Europe +2023-09-15,16418,4192,"[""Laptop"", ""Tablet""]",1056.19,"{""loyalty"": ""28%""}",102014,0,Europe +2024-04-15,16419,7534,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1708.29,"{"""": ""24%""}",185319,1,Europe +2024-11-30,16420,9637,"[""Phone"", ""Keyboard"", ""Tablet""]",3308.64,{},187627,1,Asia +2023-08-31,16421,8338,"[""Keyboard"", ""Tablet"", ""Charger""]",3610.41,"{"""": ""12%""}",161667,1,Africa +2024-07-14,16422,5376,"[""Headphones""]",297.72,"{""promo"": ""22%""}",150793,0,Europe +2024-03-02,16423,9444,"[""Phone"", ""Monitor""]",4767.46,{},98055,1,Asia +2024-08-23,16424,442,"[""Charger""]",1361.99,"{""loyalty"": ""12%""}",186893,0,Europe +2024-06-06,16425,3592,"[""Laptop""]",3350.87,{},172755,1,Europe +2023-03-27,16426,826,"[""Keyboard"", ""Tablet"", ""Headphones""]",3318.28,{},148372,0,Africa +2023-11-28,16427,7315,"[""Monitor"", ""Headphones"", ""Phone""]",3561.2,{},239464,1,South America +2024-02-22,16428,2628,"[""Keyboard"", ""Wireless Mouse""]",1301.49,"{"""": ""29%""}",225568,0,North America +2024-07-27,16429,1519,"[""Keyboard""]",676.61,{},32027,1,Europe +2023-04-18,16430,6925,"[""Headphones"", ""Keyboard"", ""Phone""]",4184.07,"{""promo"": ""15%""}",96159,1,Africa +2024-11-29,16431,6724,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1086.34,"{""seasonal"": ""16%""}",271834,0,Europe +2023-11-01,16432,6067,"[""Monitor"", ""Keyboard"", ""Phone""]",1783.19,{},15661,0,Africa +2024-02-11,16433,9452,"[""Monitor"", ""Wireless Mouse""]",4349.13,"{"""": ""8%""}",68663,1,North America +2023-10-18,16434,7109,"[""Keyboard"", ""Monitor""]",2688.43,{},27324,0,North America +2023-12-21,16435,6042,"[""Keyboard""]",1947.78,"{""promo"": ""18%""}",35984,0,Asia +2024-06-25,16436,9623,"[""Keyboard"", ""Monitor"", ""Charger""]",4546.94,{},173688,1,Europe +2023-12-04,16437,7067,"[""Laptop"", ""Monitor""]",1505.24,{},169913,1,Asia +2024-08-29,16438,7820,"[""Headphones"", ""Monitor""]",2502.92,"{"""": ""27%""}",215824,0,South America +2024-02-13,16439,426,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2243.24,{},63091,1,South America +2024-05-05,16440,4038,"[""Charger"", ""Wireless Mouse""]",4189.14,{},157747,0,Africa +2023-04-21,16441,293,"[""Phone""]",712.1,"{""seasonal"": ""11%""}",234871,1,South America +2024-01-10,16442,5973,"[""Laptop"", ""Charger""]",740.75,{},150834,1,Africa +2023-01-11,16443,635,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2663.45,{},2142,0,Africa +2023-10-30,16444,9226,"[""Laptop""]",58.31,"{""promo"": ""6%""}",71514,0,Europe +2024-06-17,16445,4246,"[""Wireless Mouse""]",4387.85,"{""loyalty"": ""5%""}",111422,0,Africa +2023-10-29,16446,6548,"[""Phone"", ""Keyboard""]",2434.46,{},40264,1,Africa +2024-04-04,16447,3028,"[""Keyboard"", ""Phone"", ""Monitor""]",3680.77,{},22485,1,Europe +2024-04-11,16448,9507,"[""Phone"", ""Monitor""]",1739.1,"{""seasonal"": ""27%""}",160905,1,Africa +2023-04-13,16449,4863,"[""Laptop"", ""Headphones"", ""Charger""]",3608.29,"{"""": ""22%""}",45230,0,Europe +2024-12-24,16450,1888,"[""Charger"", ""Keyboard""]",1117.76,{},208432,0,South America +2023-10-08,16451,1703,"[""Tablet""]",2877.82,{},291783,0,South America +2023-04-27,16452,323,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",670.29,{},67638,0,Asia +2024-08-15,16453,5070,"[""Charger"", ""Headphones""]",4881.59,"{""loyalty"": ""6%""}",282632,0,North America +2024-12-31,16454,9019,"[""Keyboard""]",220.35,"{"""": ""24%""}",107730,1,Asia +2023-07-25,16455,3570,"[""Monitor"", ""Phone"", ""Keyboard""]",558.93,"{""loyalty"": ""15%""}",254141,1,South America +2024-06-13,16456,5138,"[""Charger""]",3390.07,{},127861,0,Europe +2023-09-15,16457,4429,"[""Charger"", ""Wireless Mouse""]",4176.63,{},78455,1,Africa +2023-12-24,16458,5251,"[""Tablet"", ""Monitor""]",4759.59,{},17374,1,South America +2024-11-27,16459,1267,"[""Headphones"", ""Laptop"", ""Tablet""]",761.3,"{"""": ""24%""}",270653,0,Asia +2023-12-14,16460,6461,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",612.97,{},204024,1,South America +2023-12-10,16461,9505,"[""Phone"", ""Charger""]",4261.98,{},182787,0,North America +2024-10-26,16462,1664,"[""Headphones"", ""Keyboard""]",3771.04,"{""promo"": ""8%""}",53982,1,Asia +2023-11-02,16463,1071,"[""Wireless Mouse""]",2529.37,{},77309,1,Europe +2024-01-07,16464,9188,"[""Keyboard""]",121.52,{},261104,0,South America +2023-05-24,16465,7800,"[""Charger"", ""Keyboard"", ""Laptop""]",990.82,"{"""": ""28%""}",265810,0,Asia +2024-05-06,16466,6363,"[""Wireless Mouse"", ""Laptop""]",4365.55,{},145319,1,North America +2023-02-16,16467,5198,"[""Charger""]",2900.24,{},29583,0,South America +2023-10-11,16468,3519,"[""Laptop"", ""Charger""]",1135.91,{},180471,0,Europe +2024-01-24,16469,8669,"[""Laptop""]",2917.5,"{""loyalty"": ""7%""}",167893,0,Africa +2024-03-16,16470,638,"[""Monitor""]",813.52,"{""seasonal"": ""18%""}",69520,0,Africa +2024-03-29,16471,7537,"[""Headphones"", ""Laptop""]",2429.68,{},145495,1,Asia +2024-12-13,16472,7871,"[""Phone"", ""Tablet"", ""Monitor""]",1595.59,{},252584,0,Europe +2023-12-27,16473,4106,"[""Charger"", ""Phone""]",2621.84,"{""loyalty"": ""7%""}",134360,1,North America +2024-05-12,16474,6199,"[""Keyboard"", ""Monitor"", ""Phone""]",3649.25,"{""seasonal"": ""8%""}",93606,1,North America +2024-01-17,16475,108,"[""Headphones"", ""Phone"", ""Laptop""]",4760.5,"{""promo"": ""14%""}",28296,1,North America +2024-10-11,16476,5957,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3891.67,"{""seasonal"": ""11%""}",242546,0,North America +2023-10-16,16477,4366,"[""Laptop"", ""Tablet"", ""Phone""]",3560.1,{},245636,0,North America +2023-05-16,16478,1988,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1234.56,{},21469,1,South America +2023-03-02,16479,9706,"[""Wireless Mouse""]",2537.31,{},61204,1,Africa +2023-10-01,16480,5599,"[""Phone"", ""Monitor""]",3654.44,"{"""": ""7%""}",56650,0,Europe +2023-01-18,16481,2919,"[""Monitor"", ""Headphones"", ""Keyboard""]",2209.86,{},131789,0,North America +2023-09-14,16482,6286,"[""Keyboard""]",4502.68,"{""loyalty"": ""30%""}",149090,1,North America +2024-05-10,16483,2163,"[""Tablet"", ""Laptop""]",2622.46,{},193813,1,South America +2024-07-16,16484,7416,"[""Wireless Mouse""]",1557.41,{},92122,1,South America +2023-01-03,16485,83,"[""Monitor""]",3727.13,"{""seasonal"": ""13%""}",216096,1,Europe +2024-05-01,16486,789,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1518.57,{},100662,1,Africa +2023-05-27,16487,492,"[""Charger""]",152.83,"{""loyalty"": ""13%""}",138960,0,Asia +2023-05-21,16488,8077,"[""Charger"", ""Tablet""]",1741.16,"{"""": ""24%""}",178291,1,South America +2024-09-24,16489,1251,"[""Laptop"", ""Charger""]",402.8,{},265021,1,Europe +2024-03-10,16490,720,"[""Laptop"", ""Tablet"", ""Charger""]",1632.46,{},188004,1,North America +2024-10-16,16491,807,"[""Phone"", ""Tablet"", ""Headphones""]",4006.4,{},74721,1,Africa +2024-04-28,16492,6973,"[""Monitor"", ""Charger"", ""Phone""]",653.63,{},114064,1,Africa +2023-09-02,16493,9850,"[""Headphones""]",2081.5,{},8944,1,Africa +2023-02-05,16494,997,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1127.49,"{""seasonal"": ""7%""}",239868,1,Asia +2023-03-04,16495,9501,"[""Laptop""]",3878.12,"{""seasonal"": ""22%""}",130602,0,South America +2023-12-24,16496,8162,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4873.29,"{""promo"": ""17%""}",74213,1,Europe +2023-07-25,16497,9442,"[""Wireless Mouse"", ""Tablet""]",723.71,{},212849,0,Europe +2024-11-28,16498,3875,"[""Phone"", ""Laptop"", ""Charger""]",1180.75,"{""loyalty"": ""12%""}",271257,1,South America +2023-06-10,16499,7799,"[""Keyboard"", ""Laptop""]",118.52,{},19845,0,South America +2024-12-10,16500,1397,"[""Monitor"", ""Headphones""]",2337.09,{},79700,1,Africa +2024-03-27,16501,6870,"[""Monitor""]",3863.34,"{"""": ""30%""}",202504,1,Africa +2023-01-02,16502,6968,"[""Headphones""]",2131.72,"{""loyalty"": ""18%""}",233290,0,South America +2023-02-19,16503,9056,"[""Monitor"", ""Phone"", ""Charger""]",2198.79,{},90541,1,South America +2024-07-18,16504,6396,"[""Charger"", ""Phone"", ""Laptop""]",4829.38,"{""loyalty"": ""22%""}",107106,0,South America +2023-05-01,16505,5230,"[""Charger"", ""Monitor""]",2761.9,"{""seasonal"": ""6%""}",260097,1,Asia +2023-08-16,16506,8749,"[""Monitor""]",1096.27,{},9710,1,Asia +2023-10-22,16507,6087,"[""Tablet""]",3272.28,{},22289,0,Asia +2024-06-10,16508,5457,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",389.04,{},45962,1,Europe +2023-01-13,16509,5159,"[""Monitor""]",1260.44,{},282999,0,Africa +2024-05-05,16510,8334,"[""Charger""]",4847.62,"{"""": ""28%""}",88194,0,Europe +2024-10-25,16511,9330,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3186.91,{},96285,0,Europe +2023-10-27,16512,4058,"[""Charger"", ""Monitor"", ""Headphones""]",3970.35,{},138684,1,Europe +2023-12-24,16513,6105,"[""Wireless Mouse""]",1255.37,{},70299,1,North America +2024-07-05,16514,2220,"[""Laptop"", ""Monitor"", ""Phone""]",2409.92,{},1360,0,North America +2024-05-14,16515,5382,"[""Headphones"", ""Tablet""]",2693.75,"{""promo"": ""23%""}",110631,1,Asia +2024-10-13,16516,8245,"[""Monitor""]",1334.84,{},277276,0,North America +2023-08-04,16517,542,"[""Laptop"", ""Tablet""]",3716.98,{},47197,1,South America +2023-11-05,16518,8771,"[""Charger""]",3304.91,{},118897,1,Africa +2024-03-13,16519,51,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4525.02,{},39546,1,North America +2024-09-14,16520,3158,"[""Laptop""]",4837.57,{},29249,0,South America +2023-05-15,16521,6720,"[""Keyboard"", ""Phone""]",3412.05,{},127268,1,South America +2024-12-02,16522,1533,"[""Wireless Mouse"", ""Laptop""]",1871.88,{},82331,0,North America +2023-07-26,16523,1647,"[""Wireless Mouse""]",4810.94,"{""loyalty"": ""7%""}",54279,0,Europe +2023-08-07,16524,9806,"[""Headphones"", ""Keyboard"", ""Laptop""]",4528.04,"{""loyalty"": ""19%""}",189509,1,Europe +2023-03-15,16525,1083,"[""Tablet"", ""Charger""]",2668.58,{},163882,0,North America +2023-04-15,16526,5391,"[""Headphones""]",1641.77,{},80425,0,Africa +2024-06-08,16527,1517,"[""Keyboard""]",1439.84,"{""loyalty"": ""23%""}",81538,0,Africa +2024-04-12,16528,7953,"[""Monitor"", ""Tablet"", ""Charger""]",4200.59,{},231694,0,North America +2024-10-16,16529,9741,"[""Wireless Mouse"", ""Headphones""]",613.65,{},197725,1,South America +2024-08-24,16530,7372,"[""Laptop"", ""Tablet""]",3317.7,"{"""": ""28%""}",60613,0,South America +2024-07-17,16531,8314,"[""Wireless Mouse""]",3375.49,"{""promo"": ""10%""}",111233,0,Europe +2024-06-28,16532,3752,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2155.83,{},196214,1,Africa +2024-10-24,16533,6695,"[""Monitor"", ""Wireless Mouse""]",2854.91,{},249611,0,Europe +2024-09-17,16534,9439,"[""Monitor""]",4056.01,{},220562,0,Europe +2024-02-20,16535,6855,"[""Charger""]",4409.28,{},142461,0,Africa +2023-01-18,16536,745,"[""Tablet"", ""Keyboard"", ""Headphones""]",2670.97,{},251526,1,North America +2023-07-26,16537,4032,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2269.89,{},259872,1,North America +2024-09-24,16538,7784,"[""Laptop""]",1666.26,{},186617,1,Asia +2024-04-16,16539,730,"[""Keyboard"", ""Phone"", ""Headphones""]",3010.28,"{""seasonal"": ""10%""}",96138,1,Asia +2023-05-20,16540,9014,"[""Headphones"", ""Tablet"", ""Charger""]",2818.44,{},36770,0,South America +2024-01-27,16541,7458,"[""Headphones"", ""Phone"", ""Tablet""]",2489.98,{},116284,0,Europe +2024-04-16,16542,6365,"[""Headphones"", ""Monitor"", ""Tablet""]",2903.24,"{""loyalty"": ""25%""}",243752,1,Africa +2023-10-04,16543,3991,"[""Wireless Mouse""]",1766.09,{},126660,1,South America +2023-01-03,16544,8572,"[""Phone"", ""Monitor"", ""Headphones""]",4249.38,{},145455,1,South America +2023-07-05,16545,491,"[""Tablet""]",2311.05,"{""seasonal"": ""17%""}",216672,1,North America +2023-07-22,16546,5575,"[""Keyboard"", ""Laptop"", ""Phone""]",3240.61,{},46122,0,Africa +2023-09-24,16547,7365,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1439.31,"{""seasonal"": ""22%""}",122836,1,Africa +2023-06-11,16548,8242,"[""Charger"", ""Laptop"", ""Monitor""]",2987.91,{},72268,0,Asia +2024-10-25,16549,245,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3260.75,{},34875,1,Africa +2024-12-26,16550,7094,"[""Wireless Mouse"", ""Tablet""]",1379.5,{},175543,1,North America +2024-06-27,16551,4170,"[""Laptop"", ""Keyboard"", ""Monitor""]",3534.31,{},169309,1,Africa +2024-01-06,16552,6241,"[""Keyboard""]",2291.63,{},9631,1,Europe +2023-08-15,16553,7297,"[""Laptop""]",1819.2,{},48617,0,Asia +2024-11-08,16554,7299,"[""Phone""]",2636.04,{},149637,0,South America +2023-04-27,16555,4919,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2810.88,{},280376,1,Asia +2024-05-27,16556,9556,"[""Charger"", ""Keyboard"", ""Laptop""]",309.18,{},233142,0,South America +2024-03-28,16557,4038,"[""Monitor""]",1790.91,{},108037,0,Africa +2024-03-31,16558,2406,"[""Keyboard""]",1476.84,"{""loyalty"": ""15%""}",164401,1,Europe +2023-08-08,16559,2410,"[""Phone"", ""Wireless Mouse""]",3131.11,{},192163,0,Europe +2024-12-13,16560,4082,"[""Monitor""]",4619.64,{},206831,0,North America +2023-09-08,16561,938,"[""Monitor"", ""Tablet"", ""Laptop""]",3812.02,{},255418,1,South America +2023-08-31,16562,295,"[""Phone""]",1023.12,{},108436,1,Europe +2023-10-21,16563,3224,"[""Headphones"", ""Monitor""]",4131.8,"{""promo"": ""19%""}",65447,1,North America +2023-05-03,16564,9317,"[""Phone"", ""Keyboard""]",2928.15,"{""promo"": ""5%""}",7128,1,Africa +2024-05-13,16565,8306,"[""Tablet"", ""Phone"", ""Laptop""]",3918.3,"{""promo"": ""5%""}",158155,0,North America +2024-12-16,16566,1128,"[""Tablet"", ""Wireless Mouse""]",4902.76,"{"""": ""15%""}",62060,1,Asia +2023-02-03,16567,6086,"[""Charger"", ""Headphones""]",2489.04,"{"""": ""29%""}",145508,0,North America +2024-12-18,16568,4660,"[""Keyboard"", ""Laptop""]",4115.5,"{""loyalty"": ""16%""}",161761,1,Asia +2024-04-22,16569,5163,"[""Charger"", ""Tablet"", ""Keyboard""]",2278.44,{},231469,1,Asia +2023-11-24,16570,5990,"[""Monitor""]",2834.65,{},108115,0,Africa +2024-12-07,16571,2676,"[""Tablet""]",4199.26,{},71447,1,Africa +2023-09-04,16572,2541,"[""Phone"", ""Wireless Mouse""]",79.0,{},172233,0,Europe +2023-11-25,16573,3448,"[""Headphones"", ""Monitor""]",3968.76,"{"""": ""11%""}",22797,0,North America +2024-03-18,16574,112,"[""Monitor"", ""Wireless Mouse""]",2568.17,{},279768,0,South America +2024-10-27,16575,9594,"[""Keyboard""]",2878.73,{},173279,1,Europe +2023-11-05,16576,5570,"[""Monitor""]",2688.71,{},66250,1,North America +2023-08-06,16577,5561,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2614.25,{},252743,0,Africa +2023-05-09,16578,8796,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2211.29,{},217384,1,Europe +2023-11-07,16579,3394,"[""Headphones"", ""Phone"", ""Charger""]",1338.48,{},247289,0,North America +2023-12-27,16580,197,"[""Tablet"", ""Keyboard""]",4379.61,"{"""": ""23%""}",32804,1,Africa +2024-05-04,16581,9777,"[""Laptop"", ""Charger"", ""Monitor""]",4986.94,{},134653,0,Europe +2023-05-12,16582,9959,"[""Monitor""]",678.84,"{""loyalty"": ""9%""}",145883,1,North America +2024-09-17,16583,6662,"[""Phone"", ""Keyboard""]",1465.35,"{"""": ""15%""}",286164,1,Africa +2023-07-28,16584,4061,"[""Phone"", ""Headphones"", ""Tablet""]",186.26,{},265355,1,Africa +2024-05-06,16585,739,"[""Keyboard"", ""Wireless Mouse""]",4861.25,"{"""": ""28%""}",275170,1,Asia +2023-01-29,16586,604,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4466.16,{},257647,0,Asia +2023-09-03,16587,3119,"[""Wireless Mouse"", ""Phone""]",4181.03,{},261996,0,Africa +2023-12-20,16588,9382,"[""Headphones"", ""Laptop""]",479.01,"{""seasonal"": ""28%""}",11829,1,North America +2023-08-27,16589,2760,"[""Headphones""]",1349.66,"{""loyalty"": ""11%""}",115205,0,South America +2023-01-04,16590,9010,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3965.73,{},272058,1,Africa +2024-03-14,16591,5971,"[""Monitor""]",4776.07,"{""loyalty"": ""20%""}",9662,1,South America +2023-01-11,16592,5833,"[""Tablet"", ""Monitor"", ""Charger""]",2340.43,"{""promo"": ""21%""}",246104,0,Asia +2024-01-10,16593,6281,"[""Charger"", ""Wireless Mouse""]",4671.23,"{""loyalty"": ""15%""}",194113,1,Africa +2023-05-18,16594,7852,"[""Tablet"", ""Keyboard"", ""Phone""]",63.24,{},115488,1,North America +2024-11-11,16595,9069,"[""Laptop"", ""Phone"", ""Monitor""]",1203.93,"{""seasonal"": ""24%""}",171181,1,Asia +2024-07-04,16596,4498,"[""Tablet""]",1919.44,{},282597,0,North America +2023-02-25,16597,9166,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2846.63,"{""loyalty"": ""13%""}",36557,0,South America +2023-03-31,16598,2959,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1978.45,{},191339,1,South America +2024-10-02,16599,2944,"[""Phone"", ""Headphones""]",3040.12,{},38258,1,Europe +2024-04-07,16600,747,"[""Keyboard""]",170.4,"{""seasonal"": ""9%""}",165479,0,Asia +2024-09-27,16601,8597,"[""Charger"", ""Wireless Mouse""]",2084.59,{},182415,1,Europe +2023-05-04,16602,2458,"[""Laptop"", ""Tablet""]",1753.76,"{"""": ""13%""}",99998,1,South America +2023-04-01,16603,5620,"[""Monitor""]",1418.25,{},170760,1,Europe +2024-08-30,16604,1794,"[""Charger""]",750.12,"{""seasonal"": ""24%""}",199648,0,North America +2024-09-28,16605,6834,"[""Tablet"", ""Phone""]",1475.07,"{"""": ""24%""}",124728,0,Africa +2024-01-20,16606,6369,"[""Monitor"", ""Tablet""]",2311.36,"{""promo"": ""24%""}",66021,1,North America +2023-01-13,16607,5966,"[""Phone"", ""Keyboard""]",2397.4,"{""promo"": ""15%""}",92737,1,Europe +2023-04-04,16608,2502,"[""Laptop""]",1757.05,"{""promo"": ""5%""}",72654,0,Europe +2023-01-01,16609,8258,"[""Monitor""]",2016.38,"{""promo"": ""6%""}",69589,1,Europe +2024-10-17,16610,7039,"[""Charger""]",442.35,"{"""": ""15%""}",29628,0,Europe +2024-09-21,16611,4977,"[""Tablet"", ""Monitor""]",2503.94,{},163441,0,North America +2023-04-13,16612,3525,"[""Phone"", ""Charger""]",1363.14,"{""seasonal"": ""14%""}",165760,1,North America +2023-02-08,16613,7631,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3607.41,"{"""": ""15%""}",269874,1,Africa +2023-12-23,16614,1165,"[""Charger"", ""Monitor""]",1897.56,{},149566,0,Europe +2023-07-26,16615,6860,"[""Headphones"", ""Tablet"", ""Charger""]",3313.29,{},260336,1,North America +2024-12-29,16616,3607,"[""Monitor""]",631.66,"{""promo"": ""23%""}",193035,0,Asia +2023-10-06,16617,5547,"[""Phone"", ""Tablet""]",2657.66,{},237913,0,South America +2024-05-14,16618,15,"[""Keyboard"", ""Phone"", ""Laptop""]",769.05,"{""promo"": ""5%""}",102274,1,Europe +2023-11-01,16619,4826,"[""Charger""]",419.4,{},233435,1,Asia +2024-06-12,16620,5082,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4930.7,"{""loyalty"": ""27%""}",30704,0,Asia +2024-04-19,16621,8186,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",480.88,{},133140,0,Europe +2024-02-10,16622,4104,"[""Keyboard""]",4977.12,{},211802,1,Asia +2024-02-20,16623,1663,"[""Laptop"", ""Monitor""]",2374.48,"{""promo"": ""30%""}",83762,1,Europe +2023-09-29,16624,9510,"[""Keyboard"", ""Monitor"", ""Phone""]",3269.56,"{""loyalty"": ""14%""}",135862,0,Asia +2023-06-08,16625,7326,"[""Phone""]",4068.88,{},245802,0,Africa +2024-04-18,16626,4065,"[""Charger""]",3577.56,"{""seasonal"": ""24%""}",254628,1,North America +2023-11-21,16627,1974,"[""Laptop"", ""Tablet"", ""Phone""]",3822.27,{},36617,1,Africa +2023-05-07,16628,5687,"[""Wireless Mouse"", ""Laptop""]",2583.23,"{""promo"": ""7%""}",114567,0,Africa +2023-06-23,16629,5756,"[""Charger"", ""Tablet"", ""Phone""]",367.06,{},141540,1,Europe +2024-05-10,16630,1432,"[""Headphones"", ""Phone""]",1932.35,{},70651,0,Asia +2023-02-09,16631,87,"[""Charger""]",1271.09,{},194590,1,South America +2024-04-06,16632,5360,"[""Phone""]",1135.62,{},159202,0,North America +2024-04-08,16633,7650,"[""Keyboard"", ""Headphones""]",3146.53,{},129645,0,North America +2024-08-27,16634,9230,"[""Laptop""]",3168.79,{},136745,1,Asia +2024-12-07,16635,9845,"[""Laptop""]",3603.58,"{""loyalty"": ""6%""}",244887,0,Asia +2024-06-28,16636,3036,"[""Monitor"", ""Tablet"", ""Charger""]",4906.66,"{""seasonal"": ""18%""}",241005,1,North America +2024-12-24,16637,6640,"[""Wireless Mouse"", ""Monitor""]",4871.91,"{""promo"": ""29%""}",61537,0,North America +2024-11-20,16638,4369,"[""Phone"", ""Keyboard""]",2502.53,{},59128,0,Asia +2023-12-26,16639,4316,"[""Monitor"", ""Phone"", ""Tablet""]",2006.22,"{""loyalty"": ""15%""}",122715,1,North America +2024-04-10,16640,8118,"[""Laptop"", ""Charger"", ""Phone""]",1317.31,"{""loyalty"": ""5%""}",188559,0,Europe +2024-07-09,16641,4778,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3652.09,"{"""": ""12%""}",29714,0,South America +2024-06-30,16642,1610,"[""Laptop""]",4639.93,"{""loyalty"": ""19%""}",12160,1,Africa +2023-07-03,16643,7862,"[""Phone"", ""Monitor""]",2569.76,"{""loyalty"": ""26%""}",226462,0,Asia +2024-01-04,16644,3382,"[""Laptop"", ""Headphones"", ""Charger""]",2500.86,"{""seasonal"": ""14%""}",203259,0,Africa +2023-01-15,16645,6182,"[""Tablet"", ""Charger""]",1222.51,{},42183,0,Africa +2023-08-08,16646,1642,"[""Laptop""]",3115.77,"{""loyalty"": ""28%""}",162495,0,Africa +2024-07-31,16647,5658,"[""Monitor"", ""Wireless Mouse""]",1720.98,"{""loyalty"": ""10%""}",95497,0,Europe +2023-01-30,16648,4173,"[""Monitor"", ""Laptop""]",2530.51,"{""promo"": ""12%""}",146217,0,Europe +2024-05-05,16649,750,"[""Charger"", ""Keyboard""]",1339.25,"{""promo"": ""25%""}",66752,0,Africa +2023-01-23,16650,719,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",706.69,{},238579,1,North America +2023-06-29,16651,8200,"[""Wireless Mouse"", ""Charger""]",832.66,"{""loyalty"": ""18%""}",108235,1,North America +2024-02-02,16652,292,"[""Charger""]",355.99,"{"""": ""20%""}",66854,1,South America +2023-11-12,16653,452,"[""Charger"", ""Headphones""]",156.96,"{""seasonal"": ""28%""}",16297,1,South America +2024-12-15,16654,3102,"[""Charger""]",2933.98,"{""loyalty"": ""6%""}",186184,1,Africa +2024-04-02,16655,3826,"[""Phone"", ""Wireless Mouse"", ""Charger""]",984.5,{},88106,1,Europe +2023-04-20,16656,5733,"[""Charger"", ""Laptop"", ""Headphones""]",3452.32,"{""loyalty"": ""26%""}",247902,1,Europe +2023-06-16,16657,7133,"[""Phone""]",4044.48,{},235532,0,Africa +2023-07-09,16658,8127,"[""Wireless Mouse""]",3021.41,{},22395,1,South America +2023-02-12,16659,1495,"[""Keyboard"", ""Laptop"", ""Phone""]",1780.32,{},283976,0,Europe +2024-11-16,16660,2846,"[""Wireless Mouse"", ""Keyboard""]",4106.67,"{""promo"": ""27%""}",69280,1,Africa +2023-07-29,16661,9581,"[""Phone""]",3076.11,"{""loyalty"": ""29%""}",162878,1,North America +2024-08-01,16662,2355,"[""Laptop"", ""Phone"", ""Keyboard""]",151.04,"{""seasonal"": ""22%""}",141217,0,Africa +2023-06-25,16663,6168,"[""Phone"", ""Headphones""]",2207.86,{},123112,1,South America +2024-11-11,16664,4720,"[""Headphones""]",4165.53,"{"""": ""30%""}",144217,1,South America +2023-09-02,16665,2313,"[""Tablet"", ""Phone"", ""Headphones""]",3592.32,"{""loyalty"": ""24%""}",114383,1,Asia +2024-07-29,16666,1084,"[""Charger""]",2522.78,{},98503,0,Europe +2024-05-28,16667,6160,"[""Keyboard"", ""Tablet"", ""Charger""]",4763.99,{},38322,1,Europe +2023-04-03,16668,1884,"[""Laptop""]",3932.42,"{"""": ""26%""}",127067,0,South America +2023-01-15,16669,3213,"[""Keyboard"", ""Wireless Mouse""]",3606.88,{},224833,0,Europe +2024-08-07,16670,3482,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3107.71,{},8213,0,South America +2023-04-21,16671,473,"[""Monitor"", ""Keyboard"", ""Phone""]",2157.23,{},5346,0,South America +2023-12-19,16672,6549,"[""Monitor"", ""Laptop""]",2748.53,"{""loyalty"": ""18%""}",57723,1,North America +2024-10-31,16673,6706,"[""Charger""]",1777.91,{},99286,0,Africa +2024-03-02,16674,6764,"[""Phone"", ""Keyboard"", ""Charger""]",1504.76,"{""seasonal"": ""8%""}",296791,0,North America +2024-06-24,16675,8872,"[""Keyboard"", ""Phone"", ""Monitor""]",2933.64,"{""seasonal"": ""30%""}",95395,0,South America +2023-12-24,16676,5756,"[""Charger"", ""Keyboard""]",453.56,{},103220,1,North America +2024-06-05,16677,2623,"[""Laptop""]",2241.48,"{"""": ""15%""}",174918,0,Europe +2024-01-29,16678,2411,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4056.77,{},229192,0,Asia +2023-07-01,16679,6084,"[""Phone"", ""Laptop"", ""Charger""]",3032.98,{},118653,0,North America +2024-02-15,16680,7231,"[""Tablet"", ""Headphones""]",2070.56,{},35661,0,North America +2023-09-26,16681,4519,"[""Charger"", ""Keyboard"", ""Tablet""]",1279.66,{},72426,1,Africa +2024-02-20,16682,8533,"[""Phone"", ""Monitor""]",3443.36,"{""loyalty"": ""9%""}",218633,1,Europe +2024-08-24,16683,2983,"[""Charger"", ""Phone"", ""Monitor""]",670.75,{},103985,0,North America +2023-01-04,16684,4170,"[""Headphones""]",3013.63,{},243863,1,Europe +2024-03-06,16685,9990,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4202.24,"{""promo"": ""29%""}",96093,0,North America +2024-11-04,16686,6520,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3161.7,"{""promo"": ""22%""}",269643,0,South America +2023-10-13,16687,8957,"[""Phone"", ""Keyboard""]",368.46,{},2338,1,North America +2024-09-07,16688,7280,"[""Phone"", ""Wireless Mouse""]",2420.51,{},41542,1,Europe +2024-05-01,16689,3701,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",92.41,{},192178,1,South America +2024-08-22,16690,1120,"[""Laptop""]",1349.2,"{"""": ""22%""}",189375,0,South America +2024-02-12,16691,2794,"[""Headphones"", ""Phone"", ""Monitor""]",1146.15,"{"""": ""5%""}",83463,0,North America +2023-03-16,16692,5709,"[""Headphones"", ""Tablet""]",3842.49,{},82132,0,Asia +2024-04-23,16693,4106,"[""Keyboard""]",4585.66,{},79901,1,South America +2024-09-27,16694,2209,"[""Headphones"", ""Monitor""]",1967.09,{},280641,0,Asia +2023-10-17,16695,2672,"[""Phone"", ""Tablet""]",4871.35,"{""seasonal"": ""19%""}",280561,0,Africa +2023-03-28,16696,8086,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2683.08,"{"""": ""28%""}",288271,1,North America +2024-04-14,16697,6312,"[""Charger""]",2294.23,{},108115,0,Europe +2023-04-19,16698,2888,"[""Headphones"", ""Wireless Mouse""]",2009.63,{},61541,1,Asia +2024-02-10,16699,838,"[""Headphones"", ""Keyboard"", ""Tablet""]",3325.29,"{"""": ""6%""}",227335,0,Asia +2023-12-06,16700,3077,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1806.93,{},206366,1,South America +2023-11-02,16701,4686,"[""Laptop"", ""Wireless Mouse""]",3411.54,"{""promo"": ""18%""}",290102,0,Asia +2023-01-31,16702,4563,"[""Headphones"", ""Tablet"", ""Charger""]",562.82,"{""seasonal"": ""11%""}",101448,1,Africa +2023-10-01,16703,6471,"[""Keyboard""]",1898.52,{},229081,1,South America +2023-03-28,16704,816,"[""Phone""]",4521.5,{},69390,0,Africa +2023-01-30,16705,1130,"[""Charger"", ""Phone""]",4043.33,"{""seasonal"": ""28%""}",254795,0,Africa +2023-11-27,16706,1911,"[""Keyboard"", ""Headphones""]",2559.47,"{""seasonal"": ""11%""}",283044,0,Europe +2023-03-27,16707,1296,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4065.83,{},152310,0,Asia +2024-12-07,16708,7446,"[""Monitor""]",3232.43,{},20057,1,Asia +2023-03-08,16709,4990,"[""Headphones"", ""Charger""]",3553.35,"{""seasonal"": ""6%""}",152323,0,Africa +2023-11-20,16710,3087,"[""Tablet"", ""Laptop"", ""Headphones""]",626.32,{},90926,1,Asia +2023-05-21,16711,2369,"[""Keyboard"", ""Headphones"", ""Monitor""]",389.32,{},99191,1,Europe +2024-09-12,16712,7032,"[""Laptop""]",1652.47,{},91780,1,Asia +2023-03-05,16713,3501,"[""Wireless Mouse"", ""Charger""]",278.02,"{""seasonal"": ""8%""}",97777,1,Europe +2024-10-24,16714,335,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1956.08,{},55570,1,North America +2023-01-20,16715,805,"[""Wireless Mouse"", ""Charger""]",4061.33,"{""loyalty"": ""30%""}",242183,1,South America +2023-01-22,16716,342,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",775.35,{},202110,1,Asia +2024-11-04,16717,8932,"[""Headphones"", ""Wireless Mouse""]",1857.63,{},175575,1,South America +2023-10-05,16718,1376,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2472.87,{},54176,1,North America +2023-04-02,16719,8109,"[""Wireless Mouse""]",569.96,"{"""": ""19%""}",27521,0,Asia +2024-07-05,16720,2282,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",574.44,{},167593,0,Europe +2023-04-03,16721,4813,"[""Tablet"", ""Laptop"", ""Headphones""]",2877.29,{},279642,0,Asia +2023-01-23,16722,8467,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4135.62,{},262311,0,North America +2024-08-29,16723,199,"[""Headphones""]",4492.72,"{"""": ""24%""}",123431,1,North America +2023-12-02,16724,3660,"[""Headphones"", ""Charger"", ""Phone""]",1027.6,"{""promo"": ""25%""}",145807,0,North America +2023-08-28,16725,3483,"[""Tablet"", ""Laptop"", ""Charger""]",671.72,{},165567,1,South America +2023-05-29,16726,85,"[""Phone""]",2130.47,{},65904,0,North America +2023-03-26,16727,1549,"[""Phone""]",1904.35,{},152077,0,North America +2024-05-26,16728,2758,"[""Laptop""]",861.28,{},107512,0,North America +2024-10-07,16729,7132,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3903.79,{},176551,1,Africa +2024-02-21,16730,2411,"[""Monitor"", ""Laptop"", ""Phone""]",3042.88,"{""seasonal"": ""21%""}",127258,1,South America +2024-06-24,16731,3572,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3504.43,"{""seasonal"": ""10%""}",112523,0,South America +2023-11-18,16732,5372,"[""Keyboard"", ""Charger"", ""Headphones""]",3491.99,"{""seasonal"": ""26%""}",281227,0,North America +2024-08-13,16733,9190,"[""Keyboard"", ""Monitor"", ""Tablet""]",2043.09,"{""promo"": ""28%""}",247927,0,North America +2023-09-16,16734,3735,"[""Monitor"", ""Tablet"", ""Phone""]",4351.2,{},74219,1,South America +2024-06-17,16735,4152,"[""Tablet"", ""Phone"", ""Charger""]",1967.99,{},20098,1,Europe +2024-07-27,16736,9149,"[""Headphones""]",2413.75,{},128304,0,North America +2024-06-06,16737,4841,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2729.44,{},146423,1,Europe +2023-02-27,16738,994,"[""Charger"", ""Phone""]",1920.95,"{"""": ""9%""}",107950,1,Africa +2023-12-22,16739,3269,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1321.37,{},194412,1,Africa +2024-02-28,16740,5804,"[""Monitor"", ""Phone"", ""Charger""]",2172.14,"{""promo"": ""17%""}",101747,1,North America +2023-11-06,16741,6549,"[""Laptop""]",1985.97,{},66024,1,Asia +2023-12-05,16742,9005,"[""Keyboard""]",2120.34,"{""promo"": ""12%""}",124017,1,North America +2024-04-11,16743,7425,"[""Phone""]",314.74,{},79720,1,Asia +2024-10-05,16744,5893,"[""Charger"", ""Phone"", ""Keyboard""]",4418.73,"{""loyalty"": ""13%""}",262691,0,North America +2023-12-14,16745,9393,"[""Tablet"", ""Monitor"", ""Keyboard""]",4036.56,{},136162,1,South America +2024-09-28,16746,7768,"[""Laptop"", ""Headphones""]",2629.0,"{""promo"": ""28%""}",250355,1,Asia +2023-06-05,16747,5824,"[""Phone"", ""Keyboard"", ""Headphones""]",385.82,{},114975,0,South America +2024-12-18,16748,5330,"[""Monitor"", ""Phone""]",884.07,{},103862,1,Asia +2024-08-22,16749,2651,"[""Monitor""]",3618.17,{},31164,0,South America +2024-08-18,16750,794,"[""Phone""]",4066.38,"{""seasonal"": ""30%""}",262825,1,Africa +2023-07-14,16751,874,"[""Monitor"", ""Tablet"", ""Laptop""]",4197.77,"{""seasonal"": ""25%""}",78737,1,Asia +2023-04-07,16752,5178,"[""Headphones"", ""Phone""]",3710.39,{},41943,0,Europe +2023-03-16,16753,5490,"[""Monitor"", ""Phone"", ""Headphones""]",2947.09,"{""promo"": ""6%""}",240070,0,North America +2023-10-16,16754,2727,"[""Tablet"", ""Keyboard""]",792.8,"{""seasonal"": ""19%""}",189008,1,Europe +2023-03-13,16755,8839,"[""Charger""]",3241.0,"{""loyalty"": ""21%""}",35996,1,Asia +2023-06-28,16756,4635,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4137.82,"{""seasonal"": ""17%""}",194652,0,Europe +2023-11-03,16757,8347,"[""Phone"", ""Keyboard""]",3152.33,{},99240,1,North America +2024-06-26,16758,1404,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3636.85,"{""promo"": ""5%""}",206688,1,Europe +2024-06-05,16759,4194,"[""Charger""]",1838.0,"{"""": ""13%""}",218433,0,North America +2023-10-22,16760,2453,"[""Wireless Mouse""]",747.01,"{""promo"": ""20%""}",230793,1,South America +2024-07-30,16761,1293,"[""Headphones""]",742.05,{},185142,1,Africa +2023-06-21,16762,6461,"[""Headphones""]",4203.98,"{""loyalty"": ""26%""}",235921,1,Europe +2024-09-27,16763,3883,"[""Laptop""]",4638.15,"{""promo"": ""10%""}",173268,0,Africa +2024-06-06,16764,8760,"[""Laptop"", ""Charger""]",4764.53,{},290454,0,North America +2024-12-07,16765,4467,"[""Monitor"", ""Headphones""]",1495.3,"{""promo"": ""18%""}",286102,1,Asia +2023-09-10,16766,921,"[""Headphones"", ""Charger"", ""Monitor""]",3812.54,"{"""": ""16%""}",199971,1,North America +2023-01-27,16767,4688,"[""Charger""]",3709.22,{},267901,0,North America +2023-07-26,16768,4651,"[""Monitor""]",1106.11,{},237933,1,North America +2023-07-22,16769,2517,"[""Keyboard""]",1487.02,{},230501,0,Europe +2023-10-03,16770,2468,"[""Monitor""]",671.35,"{"""": ""29%""}",148121,0,Asia +2023-07-20,16771,1567,"[""Charger""]",1939.19,"{""seasonal"": ""14%""}",282460,1,South America +2024-04-11,16772,690,"[""Phone"", ""Monitor""]",1240.44,{},181796,1,Asia +2023-09-24,16773,298,"[""Charger"", ""Headphones""]",2529.19,{},263851,0,Africa +2023-10-02,16774,3794,"[""Laptop""]",4472.38,{},240584,0,North America +2023-07-28,16775,9066,"[""Wireless Mouse""]",4357.02,{},195164,0,Asia +2024-10-23,16776,1097,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1827.92,"{""seasonal"": ""27%""}",4638,1,Europe +2024-12-09,16777,9933,"[""Charger"", ""Headphones""]",3994.3,"{""loyalty"": ""23%""}",123628,1,Asia +2024-02-03,16778,9306,"[""Keyboard"", ""Tablet""]",676.29,{},182891,1,Asia +2024-04-07,16779,9232,"[""Tablet""]",1510.85,{},71836,1,Africa +2024-07-17,16780,8946,"[""Charger"", ""Headphones""]",4450.59,"{"""": ""19%""}",286212,1,Africa +2023-12-24,16781,5098,"[""Phone""]",238.94,"{""loyalty"": ""17%""}",66421,1,Asia +2024-09-03,16782,5520,"[""Headphones""]",1617.84,{},79802,1,North America +2023-08-27,16783,2957,"[""Keyboard""]",1848.96,{},270018,0,Africa +2024-10-03,16784,2182,"[""Phone""]",471.35,{},169015,0,South America +2024-02-06,16785,9520,"[""Tablet""]",3927.43,"{""promo"": ""19%""}",296983,0,Africa +2023-09-07,16786,8470,"[""Laptop"", ""Charger"", ""Monitor""]",3330.72,{},272460,1,Africa +2023-05-07,16787,3114,"[""Tablet"", ""Keyboard"", ""Laptop""]",1903.94,{},33334,1,South America +2023-01-14,16788,2843,"[""Keyboard"", ""Monitor"", ""Headphones""]",4614.69,"{"""": ""17%""}",273766,1,North America +2024-06-12,16789,2681,"[""Wireless Mouse"", ""Headphones""]",4924.49,"{""loyalty"": ""22%""}",133072,1,Africa +2023-01-04,16790,4135,"[""Tablet"", ""Headphones""]",2722.47,{},282694,1,South America +2023-11-28,16791,9196,"[""Headphones"", ""Laptop"", ""Monitor""]",4327.37,{},227944,1,Africa +2023-05-27,16792,6235,"[""Laptop"", ""Headphones""]",4754.89,{},146784,0,North America +2023-03-05,16793,7405,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1431.59,"{""loyalty"": ""19%""}",46610,0,Africa +2023-06-11,16794,6321,"[""Laptop""]",3978.25,"{""seasonal"": ""14%""}",12156,0,North America +2023-09-24,16795,568,"[""Headphones""]",553.9,"{""loyalty"": ""23%""}",198431,0,Europe +2023-09-05,16796,7968,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",754.57,"{"""": ""25%""}",258145,0,Asia +2023-04-15,16797,9701,"[""Charger"", ""Keyboard""]",1706.21,{},97529,0,Europe +2023-01-10,16798,4185,"[""Tablet"", ""Monitor""]",2711.54,{},269240,1,South America +2023-05-06,16799,7430,"[""Laptop"", ""Keyboard""]",2202.84,{},124837,0,Asia +2024-05-16,16800,1118,"[""Tablet"", ""Headphones""]",4882.57,"{""loyalty"": ""26%""}",241482,0,South America +2024-08-31,16801,916,"[""Phone"", ""Tablet"", ""Monitor""]",4972.18,"{""seasonal"": ""12%""}",103495,0,Asia +2024-10-30,16802,3150,"[""Headphones""]",4322.23,{},241516,0,North America +2023-11-30,16803,7235,"[""Wireless Mouse""]",1285.93,"{""loyalty"": ""9%""}",197217,1,South America +2024-06-20,16804,2384,"[""Keyboard"", ""Monitor"", ""Headphones""]",2310.11,{},155162,1,North America +2023-06-20,16805,1328,"[""Laptop""]",2994.44,"{""promo"": ""25%""}",245765,1,Africa +2023-09-28,16806,2673,"[""Phone""]",2233.52,"{""loyalty"": ""14%""}",283597,1,South America +2024-01-27,16807,2707,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3279.29,"{""promo"": ""9%""}",148037,1,Europe +2023-10-29,16808,2216,"[""Monitor"", ""Laptop"", ""Charger""]",1028.52,"{"""": ""11%""}",231695,0,Europe +2023-08-15,16809,5493,"[""Wireless Mouse"", ""Tablet""]",2381.03,{},42215,1,South America +2023-06-23,16810,3565,"[""Charger"", ""Monitor""]",2018.62,{},135894,1,North America +2023-06-29,16811,6304,"[""Phone"", ""Charger""]",1360.38,{},168525,0,Europe +2023-02-21,16812,7299,"[""Charger"", ""Headphones"", ""Laptop""]",4905.6,"{""promo"": ""27%""}",223126,1,Europe +2024-06-09,16813,5264,"[""Headphones"", ""Charger""]",4756.84,{},227845,1,Africa +2024-10-18,16814,5978,"[""Keyboard""]",81.15,{},223938,1,North America +2024-08-31,16815,480,"[""Keyboard"", ""Tablet""]",600.87,{},261827,0,Europe +2023-11-12,16816,9544,"[""Phone"", ""Monitor"", ""Tablet""]",3334.05,{},219467,0,North America +2023-05-31,16817,6228,"[""Laptop"", ""Tablet"", ""Phone""]",3962.38,{},12854,0,South America +2023-12-14,16818,966,"[""Charger"", ""Monitor"", ""Phone""]",3520.9,{},34481,0,Asia +2023-10-23,16819,6781,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3471.66,{},67783,0,Europe +2023-04-04,16820,279,"[""Laptop""]",1337.59,{},235504,1,Asia +2024-07-21,16821,2147,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2475.72,{},256601,1,South America +2024-03-19,16822,3928,"[""Wireless Mouse"", ""Tablet""]",1338.44,"{"""": ""15%""}",254503,1,Africa +2023-07-28,16823,6144,"[""Wireless Mouse"", ""Tablet""]",650.86,{},57306,1,South America +2024-05-01,16824,3965,"[""Monitor"", ""Tablet"", ""Keyboard""]",532.38,"{""seasonal"": ""12%""}",152155,1,South America +2024-07-12,16825,2551,"[""Wireless Mouse"", ""Tablet""]",2660.18,"{"""": ""20%""}",297724,1,Africa +2023-09-06,16826,6419,"[""Laptop"", ""Wireless Mouse""]",2194.26,{},15786,1,Asia +2024-08-23,16827,538,"[""Phone"", ""Monitor""]",432.25,"{""seasonal"": ""12%""}",180819,1,Asia +2024-04-06,16828,9967,"[""Tablet""]",3020.36,{},2417,1,Africa +2024-07-28,16829,3342,"[""Charger""]",3412.69,{},187118,0,South America +2024-12-13,16830,5274,"[""Keyboard""]",1988.62,{},282183,1,South America +2024-05-30,16831,3917,"[""Charger"", ""Phone""]",684.28,{},201015,0,Asia +2024-03-20,16832,3196,"[""Laptop""]",1498.2,"{""promo"": ""21%""}",56466,1,North America +2023-03-26,16833,6981,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2291.73,"{""seasonal"": ""9%""}",96007,1,Asia +2024-03-07,16834,5062,"[""Wireless Mouse""]",1458.9,{},205269,1,Africa +2023-08-30,16835,7120,"[""Keyboard"", ""Phone"", ""Charger""]",3253.14,"{""seasonal"": ""17%""}",295325,0,North America +2023-09-06,16836,4473,"[""Laptop""]",3396.62,"{""seasonal"": ""13%""}",64294,0,Asia +2023-10-03,16837,81,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3007.93,{},75928,0,Asia +2024-07-27,16838,3736,"[""Monitor"", ""Keyboard""]",2709.66,"{""promo"": ""20%""}",199170,0,North America +2024-01-27,16839,6539,"[""Keyboard"", ""Laptop"", ""Tablet""]",4442.97,{},39076,1,Asia +2023-01-25,16840,8410,"[""Monitor"", ""Phone"", ""Tablet""]",2180.68,{},117404,1,Europe +2023-04-25,16841,6728,"[""Laptop"", ""Phone""]",144.05,"{"""": ""29%""}",26355,1,North America +2023-04-21,16842,6095,"[""Headphones"", ""Monitor""]",4599.65,"{"""": ""24%""}",7910,1,Africa +2023-12-01,16843,6458,"[""Phone"", ""Laptop"", ""Charger""]",2611.02,"{""loyalty"": ""29%""}",287286,0,Africa +2023-11-14,16844,3012,"[""Laptop""]",3307.37,{},294818,1,North America +2023-06-09,16845,5366,"[""Headphones"", ""Monitor"", ""Laptop""]",313.25,"{""promo"": ""7%""}",183492,1,South America +2023-03-17,16846,9544,"[""Phone"", ""Charger"", ""Tablet""]",900.01,"{"""": ""30%""}",40593,1,Europe +2024-04-05,16847,6212,"[""Tablet"", ""Charger"", ""Headphones""]",1556.23,"{""promo"": ""13%""}",159191,1,North America +2024-09-22,16848,8497,"[""Keyboard"", ""Headphones"", ""Charger""]",4925.26,"{"""": ""22%""}",118044,0,North America +2024-07-26,16849,5549,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1838.56,{},23076,0,Asia +2023-03-08,16850,7389,"[""Headphones"", ""Laptop"", ""Charger""]",186.58,{},138171,0,Europe +2024-04-27,16851,2138,"[""Monitor"", ""Charger""]",750.59,{},9248,1,Asia +2024-03-02,16852,3566,"[""Headphones""]",1895.75,{},199995,1,Africa +2024-06-10,16853,5413,"[""Phone"", ""Wireless Mouse""]",4268.87,"{""loyalty"": ""26%""}",1232,1,Africa +2023-07-29,16854,2447,"[""Headphones""]",1187.45,"{""loyalty"": ""23%""}",283958,1,South America +2023-02-21,16855,5450,"[""Phone""]",2888.84,{},2562,1,South America +2024-10-25,16856,8862,"[""Wireless Mouse"", ""Monitor""]",3253.66,{},225687,1,Asia +2024-07-12,16857,1948,"[""Headphones"", ""Wireless Mouse""]",360.41,"{"""": ""14%""}",211313,0,Africa +2024-10-02,16858,1052,"[""Laptop""]",3645.96,{},236891,0,South America +2023-07-03,16859,2642,"[""Charger"", ""Tablet""]",731.07,"{""loyalty"": ""28%""}",115737,1,Europe +2024-06-19,16860,1849,"[""Keyboard""]",2027.85,"{""promo"": ""8%""}",35497,0,Africa +2023-12-20,16861,7659,"[""Phone"", ""Laptop""]",3213.28,"{"""": ""18%""}",158348,1,Asia +2023-08-23,16862,957,"[""Wireless Mouse"", ""Headphones""]",71.24,{},217828,0,North America +2024-11-18,16863,5812,"[""Laptop""]",1904.71,"{""seasonal"": ""27%""}",155576,0,Africa +2023-09-11,16864,7418,"[""Tablet""]",1054.47,{},73552,1,South America +2024-09-26,16865,3596,"[""Monitor"", ""Phone""]",1801.24,"{""loyalty"": ""9%""}",108200,1,Asia +2023-07-02,16866,7646,"[""Keyboard""]",3704.12,{},162622,1,Europe +2024-07-31,16867,7197,"[""Tablet"", ""Wireless Mouse""]",1725.92,{},77834,0,Europe +2024-11-02,16868,2553,"[""Phone"", ""Keyboard""]",3704.94,{},73003,0,Africa +2024-08-13,16869,9810,"[""Tablet""]",2164.33,"{""promo"": ""22%""}",250756,1,South America +2023-04-11,16870,720,"[""Tablet"", ""Wireless Mouse""]",2634.68,"{""seasonal"": ""17%""}",156262,1,Europe +2024-09-18,16871,1392,"[""Tablet""]",415.13,{},135520,1,North America +2023-10-05,16872,6671,"[""Phone"", ""Tablet""]",2356.14,{},86460,0,South America +2023-09-28,16873,7898,"[""Headphones""]",4212.89,"{"""": ""6%""}",68182,1,South America +2023-09-21,16874,2478,"[""Headphones"", ""Laptop""]",2981.23,"{""loyalty"": ""20%""}",118931,0,Asia +2023-01-01,16875,1628,"[""Monitor"", ""Phone"", ""Keyboard""]",2517.91,{},224046,0,South America +2024-08-14,16876,6383,"[""Keyboard"", ""Wireless Mouse""]",1154.6,{},56594,0,Asia +2024-02-22,16877,8234,"[""Wireless Mouse""]",488.59,{},196139,0,Asia +2024-03-17,16878,7307,"[""Keyboard""]",4142.76,{},24134,0,South America +2023-04-23,16879,5813,"[""Keyboard"", ""Monitor""]",2040.43,"{""loyalty"": ""22%""}",223171,0,Asia +2023-05-31,16880,899,"[""Monitor""]",2609.47,{},276828,1,Africa +2024-11-24,16881,5358,"[""Keyboard"", ""Monitor"", ""Tablet""]",2234.08,{},138091,1,Africa +2023-01-03,16882,8085,"[""Laptop""]",2732.27,"{""promo"": ""19%""}",233210,1,Africa +2023-01-15,16883,4002,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",158.98,{},42309,0,Africa +2024-08-07,16884,6270,"[""Laptop"", ""Headphones""]",932.39,"{""seasonal"": ""17%""}",54864,0,Europe +2024-07-23,16885,2407,"[""Monitor"", ""Keyboard"", ""Phone""]",2596.24,"{""promo"": ""19%""}",23785,1,Africa +2023-12-21,16886,5187,"[""Charger"", ""Keyboard"", ""Phone""]",3964.91,"{""loyalty"": ""26%""}",269485,1,South America +2023-10-02,16887,9530,"[""Keyboard""]",70.24,"{""promo"": ""13%""}",94936,1,Asia +2023-03-05,16888,9374,"[""Laptop"", ""Tablet""]",1567.91,"{"""": ""18%""}",195501,0,North America +2023-03-22,16889,9752,"[""Monitor""]",464.19,{},106130,1,Europe +2023-04-09,16890,5772,"[""Tablet"", ""Laptop""]",967.74,{},219181,0,Africa +2024-06-26,16891,386,"[""Charger""]",3078.64,{},7215,0,Asia +2024-02-12,16892,5745,"[""Wireless Mouse""]",4295.21,"{""loyalty"": ""10%""}",284712,0,North America +2024-11-09,16893,9748,"[""Tablet""]",864.35,"{"""": ""21%""}",236674,1,Europe +2023-11-05,16894,4506,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3447.13,"{""promo"": ""16%""}",53969,0,Europe +2023-08-02,16895,8339,"[""Headphones"", ""Keyboard""]",290.85,{},258106,1,Europe +2023-04-15,16896,388,"[""Headphones""]",766.08,"{""promo"": ""21%""}",247813,0,Europe +2023-06-12,16897,300,"[""Laptop"", ""Headphones""]",4214.46,"{""seasonal"": ""21%""}",270938,0,South America +2024-03-05,16898,1361,"[""Phone"", ""Laptop"", ""Keyboard""]",3786.86,{},46078,0,Africa +2023-03-10,16899,113,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1480.68,{},69195,1,Europe +2024-06-08,16900,5530,"[""Phone"", ""Headphones"", ""Keyboard""]",1289.71,"{""seasonal"": ""5%""}",153635,1,Europe +2023-08-17,16901,769,"[""Tablet"", ""Phone"", ""Keyboard""]",3617.47,{},299607,0,Asia +2024-03-06,16902,4252,"[""Tablet"", ""Headphones"", ""Monitor""]",2132.25,"{""loyalty"": ""20%""}",181437,0,South America +2023-01-16,16903,5062,"[""Headphones"", ""Charger""]",1339.77,{},79933,1,Europe +2024-09-22,16904,8714,"[""Monitor"", ""Phone"", ""Charger""]",2968.79,{},247988,1,North America +2024-09-24,16905,5575,"[""Keyboard"", ""Headphones"", ""Charger""]",3794.77,"{"""": ""11%""}",82107,0,Africa +2024-04-09,16906,8183,"[""Monitor"", ""Charger""]",537.01,{},288383,0,South America +2023-07-04,16907,1481,"[""Tablet"", ""Charger"", ""Monitor""]",511.24,{},59759,1,North America +2023-04-21,16908,2545,"[""Charger"", ""Headphones""]",1403.37,"{""promo"": ""11%""}",215186,0,South America +2024-05-07,16909,8663,"[""Laptop"", ""Tablet""]",767.46,"{""seasonal"": ""16%""}",43772,0,North America +2024-02-15,16910,6086,"[""Wireless Mouse"", ""Phone""]",2350.15,{},55856,0,Europe +2023-11-08,16911,3008,"[""Monitor"", ""Phone""]",123.07,{},194433,0,Africa +2024-10-13,16912,2985,"[""Phone""]",4702.02,"{""promo"": ""30%""}",138096,0,South America +2024-02-06,16913,786,"[""Headphones""]",573.13,"{"""": ""11%""}",96706,0,North America +2023-04-23,16914,1592,"[""Monitor"", ""Laptop""]",3236.61,{},2297,1,South America +2023-05-04,16915,441,"[""Tablet"", ""Laptop"", ""Headphones""]",4289.72,"{""seasonal"": ""5%""}",253147,0,Asia +2024-11-17,16916,8941,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2566.3,{},295526,1,Africa +2024-06-15,16917,5074,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3039.24,"{"""": ""15%""}",259938,1,South America +2024-05-09,16918,1837,"[""Keyboard""]",4580.1,{},46852,1,Asia +2024-06-29,16919,1067,"[""Laptop""]",1494.3,"{""loyalty"": ""17%""}",57883,0,South America +2024-03-17,16920,5183,"[""Monitor""]",3426.61,"{""seasonal"": ""5%""}",222044,0,South America +2023-09-15,16921,1180,"[""Wireless Mouse"", ""Tablet""]",480.45,"{""promo"": ""5%""}",168865,0,North America +2024-08-31,16922,5134,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2627.88,"{""seasonal"": ""17%""}",29802,0,Europe +2024-04-07,16923,4707,"[""Wireless Mouse""]",4465.23,"{""promo"": ""30%""}",83712,0,Europe +2023-12-04,16924,1474,"[""Laptop"", ""Tablet"", ""Headphones""]",4329.84,{},11831,1,Europe +2023-09-16,16925,7375,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3461.61,"{"""": ""23%""}",146174,1,Asia +2023-09-27,16926,3638,"[""Tablet""]",2967.43,"{""promo"": ""6%""}",248857,0,Europe +2023-07-14,16927,9358,"[""Monitor"", ""Tablet"", ""Headphones""]",3890.65,"{""promo"": ""9%""}",232911,0,North America +2023-02-27,16928,285,"[""Wireless Mouse"", ""Phone""]",4281.09,{},78407,1,South America +2023-11-15,16929,3653,"[""Keyboard"", ""Wireless Mouse""]",268.01,"{"""": ""13%""}",6383,0,Asia +2024-06-03,16930,5155,"[""Monitor"", ""Laptop""]",195.2,{},241254,1,Africa +2024-12-21,16931,4329,"[""Wireless Mouse"", ""Phone""]",564.43,"{""promo"": ""9%""}",69619,0,South America +2023-12-31,16932,4169,"[""Monitor"", ""Charger"", ""Keyboard""]",2730.74,{},261213,0,North America +2024-03-01,16933,7878,"[""Tablet"", ""Wireless Mouse""]",2892.22,{},278426,1,Europe +2023-06-24,16934,9005,"[""Laptop"", ""Keyboard"", ""Tablet""]",4238.24,"{""seasonal"": ""19%""}",47082,1,Africa +2024-09-07,16935,166,"[""Tablet"", ""Keyboard"", ""Monitor""]",3562.68,{},29838,1,Asia +2024-08-11,16936,6405,"[""Tablet""]",1557.62,"{""loyalty"": ""28%""}",277952,0,Europe +2023-04-11,16937,1641,"[""Phone"", ""Tablet""]",3686.66,"{""seasonal"": ""30%""}",239453,1,Europe +2024-05-06,16938,9968,"[""Laptop"", ""Phone"", ""Headphones""]",808.56,{},126839,0,Africa +2023-01-20,16939,98,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",472.09,{},94305,1,North America +2023-09-19,16940,2751,"[""Charger"", ""Monitor"", ""Phone""]",2956.57,{},214567,1,South America +2023-10-08,16941,3155,"[""Tablet""]",3326.35,"{""promo"": ""6%""}",215965,0,Asia +2023-05-26,16942,9940,"[""Headphones"", ""Monitor""]",978.94,{},83889,1,North America +2023-04-03,16943,9042,"[""Charger"", ""Keyboard"", ""Headphones""]",3646.56,"{"""": ""21%""}",67128,1,Asia +2024-09-07,16944,2587,"[""Charger"", ""Keyboard"", ""Monitor""]",2045.29,{},67951,1,North America +2024-05-27,16945,5045,"[""Keyboard"", ""Monitor""]",204.38,{},179255,0,South America +2023-12-16,16946,9875,"[""Monitor""]",4454.41,{},252830,0,Europe +2023-09-23,16947,3626,"[""Monitor"", ""Keyboard"", ""Phone""]",1786.96,{},15041,1,Asia +2024-04-20,16948,7258,"[""Monitor"", ""Phone"", ""Laptop""]",4610.92,"{""loyalty"": ""8%""}",104898,1,Africa +2024-04-04,16949,2618,"[""Charger""]",2378.68,{},229317,0,Asia +2024-04-07,16950,660,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2270.12,{},240368,1,Asia +2023-10-15,16951,8475,"[""Keyboard"", ""Headphones""]",1073.78,{},60526,1,South America +2024-12-12,16952,7561,"[""Tablet"", ""Keyboard""]",4157.25,"{""seasonal"": ""6%""}",120287,0,Africa +2024-04-12,16953,5097,"[""Charger""]",1325.9,{},170529,0,South America +2024-06-21,16954,4188,"[""Keyboard"", ""Laptop""]",2119.38,"{""seasonal"": ""5%""}",104387,1,Africa +2024-04-26,16955,3134,"[""Headphones""]",492.67,"{""promo"": ""8%""}",14958,0,North America +2023-07-26,16956,1947,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2286.17,"{"""": ""23%""}",175957,0,North America +2024-04-18,16957,7616,"[""Monitor"", ""Headphones""]",1761.9,{},171034,0,South America +2023-03-24,16958,4772,"[""Headphones"", ""Charger""]",990.53,{},24143,1,Asia +2024-01-28,16959,7375,"[""Headphones""]",1203.67,"{""promo"": ""15%""}",173626,0,Europe +2024-05-21,16960,1186,"[""Monitor""]",2055.39,"{""seasonal"": ""6%""}",204373,1,Europe +2024-02-27,16961,2537,"[""Phone"", ""Charger""]",1346.81,{},261426,0,Africa +2024-01-16,16962,2364,"[""Monitor"", ""Headphones"", ""Tablet""]",643.28,{},268922,1,North America +2023-12-03,16963,7685,"[""Headphones""]",1549.74,"{""loyalty"": ""26%""}",112525,1,Asia +2024-10-08,16964,4854,"[""Wireless Mouse""]",3063.72,{},96418,0,Africa +2024-02-03,16965,4628,"[""Headphones"", ""Laptop""]",1056.74,{},40756,1,Africa +2024-12-21,16966,2367,"[""Phone"", ""Keyboard"", ""Laptop""]",1219.95,{},263814,0,South America +2024-04-03,16967,5126,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2044.1,{},239010,0,Europe +2023-03-16,16968,6209,"[""Tablet"", ""Headphones""]",2424.62,"{""promo"": ""21%""}",255732,1,North America +2024-07-20,16969,2689,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4568.26,{},115886,0,South America +2024-05-07,16970,7850,"[""Tablet""]",1929.84,"{""loyalty"": ""29%""}",25798,0,North America +2024-09-01,16971,2881,"[""Headphones""]",3238.75,"{"""": ""8%""}",184313,1,Europe +2024-10-08,16972,1756,"[""Charger""]",2206.3,"{""seasonal"": ""6%""}",279774,0,Africa +2024-01-23,16973,7125,"[""Laptop"", ""Keyboard"", ""Charger""]",4714.05,"{"""": ""5%""}",211800,1,Africa +2023-05-29,16974,5944,"[""Wireless Mouse""]",1077.19,"{""promo"": ""18%""}",141966,0,North America +2024-05-19,16975,7372,"[""Phone"", ""Monitor"", ""Charger""]",4116.77,{},74448,0,Africa +2024-02-07,16976,1117,"[""Laptop"", ""Phone""]",4976.41,"{"""": ""20%""}",212157,1,South America +2024-04-25,16977,4076,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4941.18,"{""promo"": ""11%""}",40871,0,Africa +2024-03-17,16978,2525,"[""Laptop"", ""Charger""]",1166.01,{},294353,1,Asia +2023-12-05,16979,1164,"[""Headphones""]",3045.09,"{""promo"": ""14%""}",66690,0,Africa +2024-06-30,16980,3704,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",499.42,{},279414,1,North America +2023-09-03,16981,668,"[""Keyboard""]",344.29,{},186845,0,Asia +2024-02-22,16982,3686,"[""Phone""]",1689.95,{},116048,1,Asia +2023-08-28,16983,49,"[""Laptop""]",3945.58,"{""promo"": ""18%""}",100760,0,South America +2024-09-26,16984,3283,"[""Monitor"", ""Headphones"", ""Phone""]",4981.09,"{""seasonal"": ""25%""}",235269,1,North America +2023-02-15,16985,7099,"[""Charger""]",1392.05,"{""promo"": ""21%""}",80936,1,Asia +2024-04-18,16986,8464,"[""Wireless Mouse""]",2165.24,{},95652,0,Europe +2024-06-09,16987,8798,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1993.4,{},255973,0,Asia +2024-03-13,16988,5425,"[""Laptop"", ""Headphones""]",642.82,{},139541,1,Europe +2024-08-12,16989,2054,"[""Phone"", ""Keyboard""]",810.8,"{""seasonal"": ""14%""}",200997,0,South America +2024-01-24,16990,3531,"[""Headphones"", ""Keyboard""]",3791.08,"{""seasonal"": ""15%""}",225376,0,Asia +2024-12-01,16991,7189,"[""Wireless Mouse""]",4048.74,"{""promo"": ""8%""}",32075,0,Asia +2023-05-16,16992,9985,"[""Wireless Mouse"", ""Tablet""]",2677.39,"{""promo"": ""23%""}",243760,0,Europe +2024-01-25,16993,7694,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3268.65,{},101290,0,North America +2023-08-24,16994,5448,"[""Charger"", ""Tablet"", ""Monitor""]",2575.33,{},3047,1,South America +2023-10-26,16995,810,"[""Laptop"", ""Tablet""]",1884.01,{},128033,0,Europe +2023-12-11,16996,4755,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3398.1,{},140312,1,North America +2024-06-21,16997,2122,"[""Charger"", ""Monitor"", ""Headphones""]",3897.63,{},183840,0,Africa +2024-01-17,16998,6219,"[""Charger""]",3593.9,{},55987,1,Europe +2024-10-11,16999,6613,"[""Laptop"", ""Tablet""]",1374.73,"{""loyalty"": ""10%""}",154162,1,Asia +2024-07-28,17000,2925,"[""Tablet"", ""Headphones"", ""Phone""]",3433.52,{},163019,1,Europe +2024-03-22,17001,8526,"[""Tablet"", ""Wireless Mouse""]",2098.92,{},284296,1,Asia +2024-09-15,17002,5597,"[""Tablet""]",120.82,{},203011,1,North America +2023-10-19,17003,3402,"[""Monitor""]",4013.38,{},294616,1,North America +2024-05-07,17004,8767,"[""Charger""]",2733.34,"{"""": ""6%""}",275995,1,Africa +2023-08-16,17005,2515,"[""Phone"", ""Monitor"", ""Headphones""]",875.32,"{""promo"": ""25%""}",140560,0,South America +2024-10-28,17006,1306,"[""Monitor"", ""Keyboard""]",4676.38,"{""promo"": ""17%""}",9427,0,Africa +2024-02-09,17007,8994,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2342.51,"{""seasonal"": ""29%""}",252779,0,South America +2024-08-02,17008,128,"[""Phone""]",2858.34,{},101679,0,Africa +2023-06-16,17009,4793,"[""Headphones"", ""Phone"", ""Monitor""]",3164.17,"{""promo"": ""28%""}",227676,1,Asia +2023-10-24,17010,8960,"[""Phone""]",3001.68,"{"""": ""30%""}",59961,0,North America +2024-12-02,17011,1748,"[""Keyboard"", ""Monitor""]",2490.5,"{""seasonal"": ""20%""}",255219,1,Asia +2024-07-12,17012,250,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3925.47,"{""promo"": ""13%""}",196163,1,Europe +2023-12-30,17013,2298,"[""Charger"", ""Tablet"", ""Monitor""]",969.67,"{""promo"": ""21%""}",106954,0,Europe +2023-09-23,17014,719,"[""Headphones""]",3763.87,{},15611,1,South America +2024-02-04,17015,4617,"[""Charger"", ""Tablet""]",1275.68,{},255340,0,Asia +2023-12-08,17016,9899,"[""Wireless Mouse"", ""Phone""]",4822.91,"{""seasonal"": ""30%""}",220320,1,Asia +2024-06-29,17017,2900,"[""Monitor"", ""Keyboard"", ""Charger""]",4617.23,"{""promo"": ""28%""}",242840,0,North America +2024-11-14,17018,2723,"[""Keyboard""]",3843.46,{},228542,1,North America +2024-11-26,17019,9444,"[""Keyboard"", ""Monitor""]",3093.36,"{""promo"": ""8%""}",142942,1,Africa +2024-09-26,17020,3713,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",724.88,{},134232,0,Africa +2023-05-18,17021,3985,"[""Wireless Mouse""]",876.86,{},290173,1,Asia +2023-08-20,17022,9204,"[""Tablet""]",1552.49,{},157897,0,Africa +2023-12-04,17023,5650,"[""Laptop"", ""Phone"", ""Tablet""]",1602.36,"{"""": ""6%""}",160457,1,Asia +2023-02-26,17024,2648,"[""Charger""]",1969.52,"{""promo"": ""11%""}",249457,1,Asia +2024-01-03,17025,9414,"[""Tablet""]",2492.82,{},76838,1,Africa +2024-01-16,17026,3825,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",394.58,{},293817,0,South America +2024-08-19,17027,9593,"[""Laptop""]",2622.79,{},83600,0,North America +2023-09-02,17028,6605,"[""Phone""]",1138.67,{},282874,0,Africa +2024-05-01,17029,8089,"[""Keyboard"", ""Phone""]",844.77,"{"""": ""21%""}",282556,1,North America +2024-03-11,17030,9226,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3107.32,{},210236,1,Europe +2023-12-18,17031,4825,"[""Tablet"", ""Charger"", ""Monitor""]",614.39,{},292543,0,South America +2024-07-25,17032,4734,"[""Tablet""]",3967.99,"{""seasonal"": ""16%""}",219995,0,South America +2024-11-09,17033,646,"[""Tablet""]",1409.61,{},166708,0,North America +2023-01-26,17034,3190,"[""Tablet"", ""Phone""]",4668.94,{},173132,1,South America +2024-10-30,17035,6553,"[""Headphones"", ""Keyboard""]",214.49,"{""loyalty"": ""27%""}",200208,0,South America +2023-08-04,17036,5393,"[""Tablet"", ""Monitor""]",2182.73,{},98156,0,Africa +2024-10-08,17037,7683,"[""Headphones"", ""Monitor"", ""Charger""]",2507.22,{},21799,1,Africa +2023-06-19,17038,7210,"[""Keyboard"", ""Charger""]",1962.21,{},72035,0,Africa +2024-09-09,17039,4487,"[""Wireless Mouse""]",3984.65,{},260594,1,Africa +2023-07-29,17040,5772,"[""Laptop"", ""Keyboard""]",430.94,"{""promo"": ""6%""}",269049,0,Africa +2024-09-13,17041,6225,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4699.52,{},74911,0,North America +2024-07-19,17042,255,"[""Laptop"", ""Headphones"", ""Phone""]",3910.44,"{""promo"": ""18%""}",281846,0,North America +2023-12-14,17043,3808,"[""Charger"", ""Laptop""]",433.83,{},110143,0,Europe +2023-03-11,17044,997,"[""Headphones"", ""Tablet"", ""Keyboard""]",1395.0,"{""loyalty"": ""17%""}",260228,1,North America +2023-10-25,17045,8453,"[""Monitor""]",2429.51,"{"""": ""15%""}",136570,0,Africa +2024-06-03,17046,2747,"[""Keyboard"", ""Tablet""]",4800.64,{},183369,0,Africa +2024-03-17,17047,1623,"[""Headphones"", ""Keyboard"", ""Tablet""]",2586.93,"{""loyalty"": ""11%""}",105544,1,Asia +2023-06-08,17048,3141,"[""Wireless Mouse""]",2625.18,{},223695,1,North America +2023-06-18,17049,3440,"[""Tablet""]",2583.12,{},176334,1,North America +2024-07-04,17050,188,"[""Laptop""]",4815.24,{},162260,0,Asia +2023-09-13,17051,8650,"[""Phone"", ""Tablet"", ""Monitor""]",2929.13,"{""loyalty"": ""23%""}",44137,1,Africa +2023-01-26,17052,2469,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1082.36,{},166540,0,South America +2023-07-14,17053,2516,"[""Monitor""]",520.87,"{""loyalty"": ""12%""}",207534,0,Europe +2024-08-07,17054,100,"[""Phone"", ""Charger""]",3273.14,"{""promo"": ""12%""}",81764,0,Africa +2024-02-12,17055,8076,"[""Monitor"", ""Headphones"", ""Keyboard""]",3893.78,{},236052,0,Asia +2024-01-09,17056,6769,"[""Tablet""]",794.26,{},61458,1,Africa +2023-04-20,17057,8318,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2829.52,{},23307,0,North America +2023-03-14,17058,711,"[""Monitor""]",2370.82,"{"""": ""24%""}",193568,1,Africa +2023-06-23,17059,5148,"[""Laptop"", ""Keyboard""]",3684.97,"{"""": ""23%""}",38687,0,Africa +2024-11-22,17060,8201,"[""Wireless Mouse""]",4110.52,"{""loyalty"": ""29%""}",280816,1,Asia +2024-02-15,17061,2382,"[""Monitor"", ""Keyboard""]",2571.28,{},280662,0,Asia +2024-11-23,17062,8048,"[""Monitor""]",873.07,"{"""": ""23%""}",168655,0,South America +2023-05-18,17063,5723,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",550.81,"{""promo"": ""9%""}",146311,1,Asia +2024-06-22,17064,5776,"[""Keyboard""]",2252.05,{},100121,1,Africa +2024-12-11,17065,6707,"[""Charger"", ""Monitor"", ""Tablet""]",4876.65,{},78112,0,Asia +2023-03-01,17066,742,"[""Tablet""]",3694.88,"{""promo"": ""7%""}",109560,0,South America +2023-07-25,17067,2903,"[""Keyboard"", ""Laptop"", ""Charger""]",668.29,"{""seasonal"": ""18%""}",171980,0,Africa +2023-11-21,17068,1673,"[""Laptop"", ""Headphones"", ""Phone""]",2478.43,{},224334,0,South America +2024-10-13,17069,1524,"[""Wireless Mouse"", ""Tablet""]",3579.95,{},167011,1,Asia +2024-01-30,17070,8488,"[""Tablet"", ""Wireless Mouse""]",2624.99,{},260755,0,North America +2024-08-01,17071,4614,"[""Keyboard"", ""Headphones"", ""Phone""]",3218.33,{},18941,1,Europe +2024-02-22,17072,6963,"[""Headphones"", ""Charger""]",3255.52,{},110830,1,Europe +2023-07-02,17073,2443,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2751.69,{},29731,1,North America +2024-05-09,17074,5850,"[""Charger"", ""Wireless Mouse""]",4121.49,{},53761,0,Africa +2023-02-25,17075,4136,"[""Headphones"", ""Monitor""]",840.14,"{"""": ""21%""}",23118,1,Africa +2023-03-30,17076,6062,"[""Laptop"", ""Monitor"", ""Tablet""]",1755.63,"{"""": ""19%""}",26440,0,Europe +2023-07-29,17077,675,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3148.77,"{"""": ""17%""}",258923,0,Asia +2023-07-08,17078,140,"[""Laptop"", ""Phone""]",1489.09,"{""seasonal"": ""7%""}",293282,1,Asia +2024-03-08,17079,5450,"[""Keyboard""]",4567.02,{},226514,0,South America +2024-07-15,17080,4411,"[""Keyboard"", ""Phone"", ""Headphones""]",4040.99,{},290279,1,Africa +2024-03-24,17081,7693,"[""Charger""]",234.25,"{""loyalty"": ""29%""}",141206,1,South America +2023-08-01,17082,8168,"[""Laptop""]",2246.32,"{""loyalty"": ""16%""}",278171,0,Europe +2023-10-08,17083,435,"[""Tablet""]",3642.19,"{"""": ""29%""}",292736,0,South America +2024-09-29,17084,6143,"[""Phone""]",3077.53,{},95639,1,Asia +2023-05-01,17085,1053,"[""Charger""]",3459.66,"{""promo"": ""15%""}",209788,1,Africa +2023-04-22,17086,519,"[""Phone"", ""Keyboard""]",2126.63,{},189938,1,Europe +2023-02-09,17087,4186,"[""Keyboard""]",4268.05,"{""promo"": ""27%""}",136353,0,Africa +2024-03-02,17088,4888,"[""Laptop"", ""Monitor""]",236.16,"{""seasonal"": ""28%""}",285120,0,South America +2023-09-01,17089,9006,"[""Monitor"", ""Laptop""]",251.21,"{""seasonal"": ""10%""}",177087,1,Africa +2023-12-04,17090,1755,"[""Headphones"", ""Tablet""]",3486.85,"{""promo"": ""10%""}",195182,0,Asia +2023-06-15,17091,8185,"[""Headphones""]",2936.39,{},140877,1,Africa +2023-09-25,17092,1068,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3543.61,{},251644,0,Africa +2024-05-12,17093,9897,"[""Tablet""]",4390.76,{},228982,0,Europe +2023-10-25,17094,5731,"[""Headphones"", ""Phone"", ""Keyboard""]",1733.83,{},240332,0,Africa +2023-02-11,17095,413,"[""Phone"", ""Wireless Mouse""]",4926.75,{},203453,1,Asia +2023-03-27,17096,2971,"[""Laptop""]",2299.86,{},174918,1,South America +2023-03-20,17097,2373,"[""Charger""]",1576.16,{},100506,1,Asia +2023-12-20,17098,2623,"[""Laptop""]",1417.08,"{""loyalty"": ""7%""}",122906,1,Asia +2024-05-02,17099,8836,"[""Charger"", ""Phone""]",4058.87,{},209615,0,South America +2023-10-05,17100,3269,"[""Keyboard"", ""Tablet"", ""Laptop""]",3527.37,{},100206,1,Africa +2024-04-02,17101,510,"[""Keyboard"", ""Tablet""]",3082.91,"{""seasonal"": ""20%""}",133211,0,Europe +2023-10-07,17102,579,"[""Tablet""]",2977.7,"{""seasonal"": ""14%""}",153340,1,Africa +2023-03-17,17103,2798,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4071.88,{},104702,1,North America +2024-10-19,17104,9556,"[""Charger"", ""Tablet""]",3784.67,"{""seasonal"": ""16%""}",216365,0,Africa +2024-11-11,17105,3709,"[""Monitor""]",4749.05,"{"""": ""14%""}",66694,0,Africa +2024-01-24,17106,6573,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2364.66,"{""promo"": ""19%""}",186459,1,North America +2024-11-04,17107,9846,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4798.52,"{""loyalty"": ""24%""}",170764,1,North America +2023-05-22,17108,8176,"[""Phone""]",1350.06,{},142579,0,South America +2023-11-18,17109,646,"[""Tablet""]",1995.93,{},274381,0,Europe +2023-12-03,17110,5481,"[""Laptop"", ""Phone"", ""Tablet""]",4300.72,{},151484,0,Africa +2024-05-22,17111,7176,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4254.6,{},41109,0,Europe +2024-08-15,17112,9343,"[""Monitor"", ""Charger""]",2783.07,"{""loyalty"": ""11%""}",298935,1,Asia +2023-10-14,17113,5930,"[""Monitor""]",1144.05,{},121165,0,Africa +2023-10-12,17114,3558,"[""Monitor""]",2844.08,"{""promo"": ""29%""}",66419,0,South America +2024-08-01,17115,7910,"[""Phone"", ""Keyboard""]",1092.65,{},72663,0,South America +2024-12-12,17116,9219,"[""Phone""]",3221.0,"{""seasonal"": ""5%""}",172513,1,North America +2023-03-29,17117,5311,"[""Monitor""]",3767.47,"{""loyalty"": ""15%""}",16778,0,North America +2023-10-04,17118,1168,"[""Wireless Mouse""]",4227.62,"{""loyalty"": ""16%""}",145167,0,Africa +2023-02-06,17119,8872,"[""Charger""]",3036.51,{},171923,0,North America +2024-07-18,17120,5294,"[""Headphones""]",4413.79,{},27575,0,Europe +2024-07-02,17121,7571,"[""Tablet"", ""Phone""]",4045.29,"{""promo"": ""29%""}",87750,0,South America +2024-04-29,17122,2884,"[""Headphones"", ""Laptop""]",3065.55,"{""loyalty"": ""6%""}",227262,1,South America +2024-12-03,17123,522,"[""Tablet"", ""Wireless Mouse""]",2039.51,{},255055,0,North America +2023-07-12,17124,554,"[""Wireless Mouse""]",3755.9,"{""promo"": ""24%""}",58691,0,South America +2024-11-06,17125,504,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4214.36,"{""loyalty"": ""9%""}",2666,0,North America +2023-06-18,17126,768,"[""Phone"", ""Laptop"", ""Headphones""]",4298.01,"{""seasonal"": ""13%""}",284082,0,North America +2024-06-12,17127,5699,"[""Headphones"", ""Monitor""]",4580.57,{},190068,1,Europe +2024-05-04,17128,4723,"[""Keyboard"", ""Monitor"", ""Phone""]",3902.17,{},290733,1,Europe +2024-06-18,17129,9470,"[""Phone"", ""Headphones""]",2140.01,{},42213,0,South America +2023-07-13,17130,3822,"[""Wireless Mouse""]",3013.86,"{""promo"": ""30%""}",184628,1,Asia +2023-01-27,17131,3097,"[""Laptop""]",2249.48,"{""promo"": ""24%""}",299655,0,North America +2023-05-13,17132,6354,"[""Tablet"", ""Laptop""]",4426.69,{},66423,1,South America +2023-04-13,17133,1348,"[""Monitor""]",3883.93,"{"""": ""28%""}",298419,1,South America +2024-02-03,17134,6204,"[""Keyboard"", ""Laptop"", ""Phone""]",3769.92,{},138671,0,Africa +2024-04-26,17135,4952,"[""Phone"", ""Tablet"", ""Laptop""]",3079.7,{},182877,1,North America +2024-05-27,17136,5274,"[""Monitor"", ""Laptop""]",2263.94,"{"""": ""21%""}",246364,0,Europe +2024-12-18,17137,8646,"[""Tablet"", ""Phone"", ""Keyboard""]",1684.63,{},207080,0,North America +2023-03-08,17138,3477,"[""Keyboard""]",1137.54,{},181743,0,North America +2023-01-18,17139,4618,"[""Wireless Mouse""]",1606.17,"{""promo"": ""21%""}",28717,0,Europe +2023-06-22,17140,5709,"[""Wireless Mouse"", ""Phone""]",480.08,"{"""": ""12%""}",260601,1,Asia +2023-10-14,17141,2538,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2056.13,{},23445,0,North America +2023-03-18,17142,3531,"[""Laptop"", ""Charger""]",2556.01,{},248423,0,South America +2023-11-01,17143,7862,"[""Monitor"", ""Charger""]",1074.16,{},160316,0,Asia +2023-10-24,17144,5495,"[""Wireless Mouse""]",1685.07,{},283994,1,South America +2024-04-02,17145,1066,"[""Laptop"", ""Tablet"", ""Phone""]",2979.61,"{""promo"": ""9%""}",107156,0,Africa +2024-12-23,17146,9608,"[""Keyboard"", ""Wireless Mouse""]",423.86,"{""promo"": ""14%""}",68699,0,Asia +2024-02-21,17147,5921,"[""Keyboard""]",4698.18,"{""seasonal"": ""13%""}",60979,1,Africa +2023-03-25,17148,48,"[""Keyboard""]",1183.94,{},266356,1,South America +2024-05-12,17149,6850,"[""Charger"", ""Headphones""]",3065.65,{},294028,0,South America +2024-12-30,17150,1881,"[""Laptop"", ""Headphones""]",3892.08,{},246095,1,Asia +2023-01-24,17151,196,"[""Wireless Mouse""]",1937.78,"{""promo"": ""28%""}",37933,0,Asia +2023-03-19,17152,1625,"[""Laptop""]",4446.12,{},254596,1,Africa +2024-01-02,17153,829,"[""Wireless Mouse"", ""Charger""]",3631.16,{},221569,0,South America +2023-08-17,17154,6202,"[""Phone"", ""Tablet"", ""Laptop""]",4855.1,{},173937,0,North America +2023-08-26,17155,2562,"[""Laptop""]",203.72,"{""seasonal"": ""29%""}",279065,0,South America +2024-05-10,17156,7357,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4483.5,"{""seasonal"": ""19%""}",157234,1,Africa +2024-09-29,17157,5707,"[""Tablet"", ""Headphones""]",977.47,{},2653,1,Africa +2023-03-31,17158,6029,"[""Tablet""]",234.43,"{""seasonal"": ""14%""}",173938,0,Africa +2024-04-27,17159,8132,"[""Phone"", ""Keyboard""]",4545.99,"{"""": ""10%""}",80312,0,Asia +2023-04-11,17160,4844,"[""Headphones"", ""Charger""]",4602.4,{},150697,0,South America +2023-01-24,17161,44,"[""Monitor"", ""Tablet"", ""Headphones""]",4866.48,{},185616,0,North America +2023-03-31,17162,29,"[""Keyboard"", ""Headphones""]",1056.2,"{""seasonal"": ""27%""}",35083,0,North America +2023-07-12,17163,5760,"[""Wireless Mouse"", ""Phone""]",4558.32,"{""seasonal"": ""19%""}",9017,0,Africa +2024-03-03,17164,1996,"[""Headphones"", ""Charger""]",1616.25,"{""promo"": ""17%""}",181526,1,Asia +2023-08-16,17165,4490,"[""Laptop"", ""Headphones"", ""Phone""]",630.93,{},114772,1,Europe +2023-05-09,17166,8611,"[""Headphones"", ""Keyboard""]",4063.27,{},251272,1,North America +2023-06-08,17167,4849,"[""Keyboard"", ""Charger"", ""Phone""]",1979.86,"{""seasonal"": ""19%""}",248931,1,South America +2023-12-13,17168,9115,"[""Tablet""]",2235.62,{},137286,0,South America +2023-06-08,17169,4558,"[""Headphones""]",1706.19,{},81168,0,South America +2023-10-04,17170,1622,"[""Laptop"", ""Monitor""]",3790.02,"{""promo"": ""5%""}",2737,0,Asia +2023-10-21,17171,1653,"[""Wireless Mouse""]",2021.39,"{"""": ""27%""}",207652,1,Asia +2024-11-10,17172,2852,"[""Laptop""]",3980.72,"{""promo"": ""25%""}",32457,1,Asia +2023-06-15,17173,6083,"[""Phone""]",3226.18,"{""seasonal"": ""14%""}",262590,1,South America +2024-08-11,17174,7028,"[""Monitor"", ""Headphones""]",196.16,"{""promo"": ""28%""}",199522,0,South America +2024-12-27,17175,9926,"[""Headphones"", ""Laptop""]",764.63,"{""seasonal"": ""8%""}",184587,1,Europe +2024-02-25,17176,5558,"[""Wireless Mouse""]",2786.52,{},282157,1,Asia +2024-09-12,17177,9966,"[""Phone""]",4895.6,{},194708,1,Asia +2024-03-08,17178,656,"[""Tablet"", ""Charger""]",2999.46,"{""loyalty"": ""18%""}",52791,1,Africa +2024-01-11,17179,1958,"[""Monitor"", ""Laptop"", ""Keyboard""]",1090.14,{},119619,0,Asia +2024-04-11,17180,4575,"[""Keyboard""]",1117.12,"{""promo"": ""26%""}",135548,1,North America +2023-11-11,17181,7215,"[""Laptop"", ""Phone""]",2665.46,"{"""": ""29%""}",106796,1,South America +2023-07-27,17182,3802,"[""Phone"", ""Monitor"", ""Keyboard""]",512.71,"{""loyalty"": ""5%""}",104549,0,Africa +2024-05-17,17183,8019,"[""Phone"", ""Keyboard""]",2909.45,{},6251,0,South America +2024-06-30,17184,7775,"[""Keyboard"", ""Monitor"", ""Phone""]",4371.87,"{"""": ""6%""}",79529,0,Asia +2023-11-08,17185,6511,"[""Monitor""]",3468.15,{},140456,1,North America +2024-04-13,17186,1103,"[""Monitor"", ""Keyboard""]",2800.52,{},134719,0,North America +2023-02-25,17187,3725,"[""Wireless Mouse"", ""Keyboard""]",456.59,{},46514,1,North America +2023-12-03,17188,3641,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",819.1,"{""seasonal"": ""12%""}",150760,1,Asia +2023-05-04,17189,7246,"[""Tablet"", ""Laptop""]",2276.82,{},266838,0,Africa +2024-09-07,17190,4696,"[""Keyboard"", ""Laptop"", ""Charger""]",774.04,{},193960,0,Africa +2024-10-05,17191,869,"[""Keyboard""]",299.35,{},172044,1,Asia +2023-12-17,17192,9951,"[""Laptop""]",3427.3,"{"""": ""28%""}",70623,1,Africa +2024-01-08,17193,8740,"[""Wireless Mouse""]",1130.47,"{""seasonal"": ""27%""}",43709,1,Asia +2024-08-18,17194,1922,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3761.38,"{""seasonal"": ""5%""}",252703,0,North America +2024-12-29,17195,4684,"[""Wireless Mouse""]",4143.55,{},138970,1,Asia +2023-02-02,17196,8665,"[""Phone""]",4781.87,"{""seasonal"": ""30%""}",116516,1,South America +2024-12-03,17197,8454,"[""Charger""]",885.85,"{""promo"": ""14%""}",171458,0,Africa +2023-06-14,17198,3653,"[""Tablet""]",532.19,"{""loyalty"": ""12%""}",103868,1,South America +2023-04-13,17199,3274,"[""Tablet""]",4274.58,"{""loyalty"": ""19%""}",257855,1,Asia +2024-05-06,17200,792,"[""Headphones"", ""Laptop"", ""Phone""]",3876.12,{},295340,1,South America +2024-12-03,17201,8371,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1823.87,"{""seasonal"": ""26%""}",146943,0,North America +2024-01-05,17202,6646,"[""Phone"", ""Monitor""]",2632.43,{},98573,0,South America +2023-04-15,17203,1962,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4948.55,"{""loyalty"": ""25%""}",284678,0,Asia +2024-05-12,17204,2755,"[""Laptop""]",1930.32,{},140190,1,Africa +2023-09-11,17205,9278,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",53.83,"{""seasonal"": ""23%""}",186295,0,Asia +2023-10-20,17206,7150,"[""Laptop"", ""Headphones""]",2087.95,{},224928,1,Africa +2023-03-29,17207,7483,"[""Monitor"", ""Phone""]",4819.21,"{"""": ""21%""}",111340,0,North America +2023-01-29,17208,6369,"[""Laptop"", ""Tablet"", ""Keyboard""]",1831.06,"{""seasonal"": ""14%""}",182600,1,Europe +2024-10-31,17209,7593,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3315.23,"{""loyalty"": ""13%""}",263188,1,Asia +2024-04-02,17210,1462,"[""Headphones"", ""Laptop"", ""Monitor""]",4851.34,{},37380,1,Europe +2023-04-24,17211,1742,"[""Monitor"", ""Laptop""]",3995.85,"{"""": ""9%""}",37507,0,North America +2024-11-30,17212,4809,"[""Phone"", ""Monitor""]",304.17,{},154734,0,Europe +2023-06-11,17213,1007,"[""Phone"", ""Laptop""]",4843.89,"{""promo"": ""6%""}",43654,1,North America +2024-07-10,17214,6273,"[""Monitor""]",3684.1,"{""loyalty"": ""28%""}",131323,0,Europe +2023-11-04,17215,2234,"[""Phone"", ""Headphones"", ""Tablet""]",4569.05,{},225021,0,North America +2023-12-24,17216,5427,"[""Keyboard"", ""Headphones"", ""Laptop""]",1404.79,"{""seasonal"": ""28%""}",275297,1,South America +2024-07-14,17217,6916,"[""Headphones"", ""Monitor"", ""Phone""]",4943.71,"{""promo"": ""23%""}",72188,0,Africa +2023-10-30,17218,2417,"[""Monitor""]",455.2,"{""seasonal"": ""24%""}",85063,0,North America +2023-06-07,17219,6774,"[""Phone"", ""Monitor"", ""Keyboard""]",1024.77,{},149208,0,Europe +2024-11-17,17220,3799,"[""Laptop""]",1460.39,"{""promo"": ""25%""}",154558,0,Africa +2023-11-17,17221,4704,"[""Headphones""]",2114.1,{},36282,0,South America +2023-04-16,17222,5368,"[""Phone""]",339.76,{},169452,1,Africa +2023-04-18,17223,7055,"[""Laptop""]",1064.56,"{""promo"": ""11%""}",98507,1,South America +2023-07-12,17224,540,"[""Tablet"", ""Charger"", ""Headphones""]",4358.31,"{"""": ""13%""}",65896,0,Asia +2024-10-08,17225,8264,"[""Tablet"", ""Monitor"", ""Laptop""]",3389.44,"{"""": ""11%""}",137277,0,Africa +2023-05-06,17226,1658,"[""Laptop"", ""Charger"", ""Monitor""]",3091.57,{},244240,0,Asia +2023-07-12,17227,5338,"[""Keyboard""]",3406.36,"{""promo"": ""15%""}",104422,1,North America +2023-11-19,17228,9435,"[""Charger""]",1029.3,"{""promo"": ""21%""}",278554,0,Asia +2023-02-10,17229,7944,"[""Headphones""]",3021.06,{},200535,1,North America +2023-10-16,17230,8358,"[""Wireless Mouse"", ""Charger""]",2684.69,{},18926,1,Africa +2023-03-17,17231,4416,"[""Headphones"", ""Monitor"", ""Charger""]",1263.71,"{""seasonal"": ""30%""}",193329,1,South America +2023-04-15,17232,476,"[""Monitor""]",4028.31,"{""loyalty"": ""19%""}",121743,0,Europe +2023-04-17,17233,29,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3648.48,"{"""": ""10%""}",106382,0,South America +2023-06-01,17234,768,"[""Phone""]",2449.08,{},63208,0,North America +2024-08-04,17235,3383,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4624.83,"{""seasonal"": ""17%""}",162784,0,North America +2023-04-14,17236,3303,"[""Charger""]",3901.85,{},8090,1,Europe +2023-04-20,17237,8097,"[""Headphones"", ""Tablet""]",3163.35,"{""loyalty"": ""24%""}",216481,0,North America +2024-06-20,17238,283,"[""Tablet"", ""Headphones"", ""Keyboard""]",4157.16,"{""seasonal"": ""6%""}",230965,0,North America +2024-01-11,17239,2039,"[""Headphones"", ""Charger""]",3479.27,"{""seasonal"": ""15%""}",291006,0,Europe +2023-02-21,17240,4492,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4562.24,"{""seasonal"": ""17%""}",208107,1,Africa +2024-05-23,17241,1045,"[""Charger"", ""Tablet""]",4948.74,"{"""": ""17%""}",211970,1,North America +2023-07-22,17242,9075,"[""Keyboard"", ""Tablet""]",92.18,{},40311,0,Africa +2024-12-14,17243,1148,"[""Laptop"", ""Tablet""]",4477.56,{},173817,0,Africa +2024-05-24,17244,8510,"[""Monitor""]",156.56,"{""loyalty"": ""17%""}",187310,0,South America +2024-08-11,17245,7774,"[""Wireless Mouse""]",474.87,"{""seasonal"": ""21%""}",247314,0,North America +2023-02-14,17246,3388,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3937.55,{},260832,1,Africa +2023-11-12,17247,1059,"[""Tablet"", ""Monitor"", ""Laptop""]",4030.41,{},266675,1,North America +2024-09-07,17248,842,"[""Headphones"", ""Wireless Mouse""]",4710.83,"{""seasonal"": ""22%""}",55331,0,Africa +2024-02-21,17249,6499,"[""Charger""]",3677.04,{},28528,1,Africa +2023-04-16,17250,5190,"[""Monitor"", ""Charger""]",3417.65,{},258839,0,Africa +2024-09-27,17251,2344,"[""Phone""]",3571.3,{},276852,1,North America +2024-06-22,17252,7238,"[""Phone"", ""Laptop"", ""Monitor""]",1946.18,"{""seasonal"": ""17%""}",144223,0,South America +2024-12-10,17253,7151,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4123.58,"{""promo"": ""16%""}",120324,1,North America +2024-10-04,17254,6083,"[""Keyboard""]",3644.93,{},51131,0,Europe +2024-07-08,17255,6347,"[""Keyboard"", ""Charger""]",579.86,"{""seasonal"": ""29%""}",139282,0,Europe +2023-06-19,17256,2203,"[""Phone""]",754.86,"{""promo"": ""22%""}",265431,0,Africa +2023-06-01,17257,2979,"[""Wireless Mouse""]",849.38,"{""seasonal"": ""20%""}",127614,1,North America +2024-08-14,17258,2527,"[""Phone""]",1907.28,{},208800,0,Asia +2023-11-13,17259,1419,"[""Charger"", ""Tablet""]",2575.31,"{""seasonal"": ""21%""}",265179,0,Europe +2024-01-19,17260,5928,"[""Laptop""]",4730.67,"{"""": ""28%""}",174137,0,Asia +2023-12-15,17261,4430,"[""Headphones""]",996.64,"{""seasonal"": ""20%""}",44361,1,Asia +2023-07-22,17262,3010,"[""Laptop"", ""Wireless Mouse""]",4360.55,{},253275,0,Africa +2023-08-07,17263,4101,"[""Headphones"", ""Monitor"", ""Tablet""]",4510.23,{},19051,1,Europe +2023-09-10,17264,7986,"[""Phone"", ""Monitor""]",3552.31,"{"""": ""14%""}",80523,0,South America +2023-01-20,17265,3030,"[""Monitor""]",2220.16,"{""loyalty"": ""22%""}",102250,0,South America +2024-08-23,17266,4666,"[""Laptop""]",2517.11,{},215077,1,Europe +2023-03-01,17267,4318,"[""Wireless Mouse"", ""Laptop""]",3462.36,"{""promo"": ""24%""}",62459,1,South America +2024-12-16,17268,8390,"[""Tablet""]",4882.3,"{""promo"": ""6%""}",292180,0,Africa +2023-04-21,17269,6870,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3871.71,{},73746,0,South America +2023-11-05,17270,8400,"[""Monitor""]",4267.18,"{""promo"": ""14%""}",231462,1,South America +2023-07-19,17271,3343,"[""Keyboard""]",916.48,{},230860,0,Asia +2024-04-30,17272,1690,"[""Keyboard"", ""Charger"", ""Tablet""]",579.69,"{""seasonal"": ""22%""}",60510,1,South America +2024-10-13,17273,316,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2785.64,"{"""": ""27%""}",203402,1,Asia +2023-04-16,17274,8651,"[""Tablet"", ""Keyboard""]",346.19,{},267702,0,South America +2023-08-30,17275,283,"[""Laptop"", ""Headphones"", ""Monitor""]",2260.91,{},9466,1,North America +2024-07-25,17276,7519,"[""Laptop""]",4136.49,{},178159,1,Asia +2023-11-01,17277,3042,"[""Phone"", ""Charger""]",3285.32,"{"""": ""24%""}",271301,0,Europe +2024-01-13,17278,7497,"[""Keyboard""]",1841.63,{},57727,1,North America +2024-09-15,17279,4200,"[""Laptop"", ""Wireless Mouse""]",792.35,{},80801,0,North America +2023-06-23,17280,9859,"[""Laptop"", ""Monitor"", ""Keyboard""]",3477.68,"{"""": ""14%""}",259065,0,Europe +2023-05-17,17281,2581,"[""Headphones"", ""Laptop"", ""Keyboard""]",2291.64,{},256328,0,Africa +2024-08-17,17282,8260,"[""Charger"", ""Tablet""]",1300.8,{},264078,0,North America +2024-05-26,17283,6823,"[""Charger""]",832.18,{},15542,1,North America +2023-08-07,17284,4029,"[""Headphones"", ""Laptop"", ""Phone""]",3533.86,"{""seasonal"": ""30%""}",233875,1,Africa +2023-10-01,17285,3343,"[""Charger"", ""Tablet""]",1632.2,{},85558,0,South America +2024-06-26,17286,9477,"[""Headphones"", ""Wireless Mouse""]",3901.89,{},33765,1,Africa +2023-05-08,17287,3862,"[""Headphones""]",4797.91,{},183901,1,North America +2023-10-20,17288,6822,"[""Monitor"", ""Phone""]",3614.57,"{""seasonal"": ""18%""}",125948,0,Asia +2024-01-07,17289,1942,"[""Charger"", ""Headphones""]",1549.99,{},220012,0,South America +2023-05-05,17290,6979,"[""Charger""]",1243.24,"{"""": ""13%""}",89032,0,Asia +2024-01-20,17291,8572,"[""Headphones""]",2849.85,"{""seasonal"": ""6%""}",226457,0,South America +2023-09-14,17292,3902,"[""Wireless Mouse"", ""Monitor""]",3417.7,{},198342,1,Europe +2023-09-20,17293,1561,"[""Laptop"", ""Charger"", ""Phone""]",4139.02,"{""promo"": ""8%""}",69987,0,North America +2024-08-20,17294,5142,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3633.11,"{""seasonal"": ""22%""}",264963,1,South America +2023-01-01,17295,1266,"[""Phone"", ""Monitor""]",2208.62,{},212478,1,Asia +2023-03-31,17296,9846,"[""Headphones"", ""Tablet""]",2550.03,"{"""": ""6%""}",98342,1,Europe +2024-10-31,17297,1083,"[""Phone""]",3782.19,"{""promo"": ""8%""}",143502,1,South America +2024-10-06,17298,6717,"[""Wireless Mouse"", ""Keyboard""]",2343.72,"{"""": ""17%""}",116854,0,Europe +2023-12-08,17299,8423,"[""Monitor"", ""Keyboard""]",4218.75,{},190150,1,Africa +2023-12-26,17300,587,"[""Monitor"", ""Headphones""]",326.43,{},220822,0,Asia +2024-09-02,17301,6345,"[""Laptop"", ""Keyboard""]",1320.27,"{""promo"": ""15%""}",50958,1,Asia +2023-05-09,17302,4619,"[""Wireless Mouse"", ""Laptop""]",2110.3,{},107483,0,Europe +2024-08-23,17303,9863,"[""Tablet"", ""Charger""]",3746.97,{},52272,0,North America +2024-10-07,17304,4372,"[""Monitor"", ""Phone"", ""Tablet""]",2100.98,"{""promo"": ""8%""}",181544,1,North America +2023-07-29,17305,3114,"[""Wireless Mouse""]",3298.48,"{""promo"": ""14%""}",132875,1,North America +2024-09-10,17306,2961,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4385.7,"{""loyalty"": ""25%""}",101583,0,Africa +2023-08-06,17307,2337,"[""Phone"", ""Headphones""]",1755.27,"{""seasonal"": ""29%""}",147771,1,Asia +2023-11-28,17308,8382,"[""Tablet"", ""Keyboard"", ""Headphones""]",3770.14,{},60869,1,Asia +2023-11-26,17309,5447,"[""Laptop"", ""Phone""]",2487.13,"{""promo"": ""15%""}",186851,0,Europe +2023-08-12,17310,1310,"[""Headphones""]",4603.14,"{""loyalty"": ""5%""}",245623,1,South America +2023-11-07,17311,379,"[""Laptop"", ""Headphones"", ""Phone""]",4426.31,"{"""": ""29%""}",120817,1,Europe +2024-05-09,17312,2577,"[""Phone""]",2495.12,"{""loyalty"": ""29%""}",9817,0,North America +2024-02-11,17313,8454,"[""Laptop"", ""Headphones""]",1888.87,"{""promo"": ""18%""}",205582,1,North America +2023-03-28,17314,1635,"[""Monitor"", ""Tablet"", ""Headphones""]",4790.16,"{"""": ""21%""}",236217,0,Europe +2024-08-06,17315,5432,"[""Phone"", ""Monitor""]",4994.52,{},72391,0,North America +2024-07-21,17316,8388,"[""Headphones"", ""Monitor"", ""Tablet""]",3189.09,"{""seasonal"": ""29%""}",294495,1,South America +2023-03-08,17317,8029,"[""Headphones"", ""Monitor""]",4274.16,"{""seasonal"": ""7%""}",167502,1,Africa +2023-10-22,17318,2192,"[""Headphones"", ""Monitor""]",2057.44,"{""loyalty"": ""17%""}",110706,1,South America +2023-03-07,17319,4029,"[""Monitor""]",3329.42,"{""loyalty"": ""14%""}",46971,0,North America +2024-12-29,17320,5018,"[""Keyboard"", ""Headphones"", ""Phone""]",1648.21,"{""loyalty"": ""10%""}",287650,0,Africa +2024-08-26,17321,979,"[""Keyboard"", ""Laptop""]",4033.01,"{""loyalty"": ""20%""}",36700,1,South America +2024-05-27,17322,4552,"[""Monitor""]",1896.27,{},11155,0,South America +2024-01-15,17323,2687,"[""Monitor"", ""Headphones"", ""Phone""]",1426.1,"{""promo"": ""22%""}",59705,0,North America +2024-11-04,17324,4940,"[""Headphones""]",2674.22,"{""promo"": ""20%""}",187433,0,Africa +2024-10-19,17325,8003,"[""Wireless Mouse"", ""Keyboard""]",1911.38,{},31632,0,Europe +2024-03-21,17326,2518,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",642.91,{},242334,1,Africa +2023-04-29,17327,2461,"[""Monitor"", ""Wireless Mouse""]",3278.75,{},175173,1,North America +2023-11-15,17328,2206,"[""Keyboard"", ""Monitor""]",2415.07,{},97267,1,North America +2024-05-17,17329,2387,"[""Charger"", ""Monitor"", ""Tablet""]",3868.78,{},130614,0,Africa +2024-09-01,17330,3324,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4450.02,{},88024,1,South America +2023-10-03,17331,459,"[""Charger"", ""Monitor""]",751.78,{},193495,0,South America +2023-11-04,17332,3162,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4047.31,"{""seasonal"": ""8%""}",58971,1,North America +2024-09-21,17333,1509,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4580.24,{},222990,1,North America +2023-09-03,17334,5840,"[""Laptop"", ""Headphones"", ""Monitor""]",125.56,{},123546,0,South America +2023-09-28,17335,5661,"[""Headphones""]",4166.0,"{""loyalty"": ""12%""}",29861,1,Asia +2023-07-18,17336,2646,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",213.44,"{""promo"": ""18%""}",220913,0,Europe +2024-12-24,17337,7297,"[""Tablet""]",4558.73,"{"""": ""7%""}",134418,0,South America +2023-09-29,17338,5894,"[""Wireless Mouse"", ""Charger""]",1609.94,"{""loyalty"": ""25%""}",228237,0,Europe +2023-02-10,17339,6072,"[""Laptop"", ""Keyboard""]",195.29,"{""loyalty"": ""30%""}",9299,0,Africa +2024-06-12,17340,443,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",417.62,{},55134,1,Africa +2023-12-27,17341,6659,"[""Phone""]",2936.29,{},223186,1,Europe +2024-08-12,17342,6369,"[""Monitor"", ""Laptop""]",3285.51,{},53776,0,South America +2024-12-01,17343,8580,"[""Tablet""]",1331.7,"{""seasonal"": ""21%""}",53039,0,Africa +2024-01-07,17344,8493,"[""Charger"", ""Tablet"", ""Keyboard""]",823.74,"{""loyalty"": ""9%""}",202479,1,North America +2023-02-04,17345,353,"[""Headphones"", ""Monitor""]",1520.49,{},165560,1,Asia +2023-01-07,17346,2218,"[""Headphones""]",2127.87,{},217698,0,Europe +2023-04-08,17347,9802,"[""Phone"", ""Keyboard""]",4847.68,"{""loyalty"": ""15%""}",66754,1,North America +2023-10-18,17348,9090,"[""Headphones"", ""Keyboard""]",3645.18,"{"""": ""24%""}",131852,0,Asia +2024-03-31,17349,5109,"[""Headphones"", ""Phone""]",2317.02,"{""loyalty"": ""26%""}",147302,0,Asia +2024-12-03,17350,7875,"[""Phone""]",851.01,"{""seasonal"": ""20%""}",99785,1,Asia +2023-08-19,17351,1626,"[""Wireless Mouse""]",3035.72,"{"""": ""28%""}",157799,0,Africa +2023-01-24,17352,4667,"[""Tablet"", ""Laptop""]",730.52,"{""seasonal"": ""24%""}",206035,0,Europe +2023-02-27,17353,6472,"[""Keyboard""]",3737.63,"{""loyalty"": ""22%""}",113424,1,Europe +2024-12-29,17354,7200,"[""Keyboard"", ""Laptop""]",2973.2,"{""loyalty"": ""10%""}",125992,0,Europe +2024-05-24,17355,6944,"[""Laptop"", ""Monitor""]",3218.58,"{""loyalty"": ""21%""}",237374,0,Europe +2023-10-28,17356,5079,"[""Phone"", ""Charger"", ""Monitor""]",2900.16,"{""promo"": ""13%""}",234585,1,Europe +2023-08-31,17357,6361,"[""Keyboard""]",509.4,{},298443,1,North America +2024-05-06,17358,759,"[""Keyboard"", ""Monitor""]",796.14,"{""seasonal"": ""30%""}",1553,1,North America +2023-01-10,17359,6071,"[""Charger""]",1678.31,{},86232,1,Asia +2024-01-19,17360,7125,"[""Laptop"", ""Charger"", ""Headphones""]",3683.58,{},77840,1,Europe +2023-12-23,17361,681,"[""Monitor"", ""Charger""]",1144.0,{},202266,0,Africa +2024-03-29,17362,1706,"[""Charger"", ""Tablet""]",4377.25,{},108091,1,North America +2024-06-14,17363,9056,"[""Headphones""]",1004.98,"{"""": ""26%""}",67450,0,Asia +2024-06-29,17364,2358,"[""Phone"", ""Tablet""]",2642.48,{},74998,0,Africa +2024-12-27,17365,3215,"[""Keyboard"", ""Monitor"", ""Tablet""]",2862.08,{},237918,0,South America +2024-04-25,17366,6307,"[""Laptop"", ""Keyboard"", ""Monitor""]",1776.4,{},282099,0,North America +2023-05-31,17367,6312,"[""Charger"", ""Laptop"", ""Tablet""]",1343.87,{},134287,1,Asia +2023-04-16,17368,7584,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",258.72,{},18671,0,South America +2023-08-04,17369,1337,"[""Tablet"", ""Phone"", ""Charger""]",2152.1,"{""promo"": ""5%""}",56541,0,Africa +2023-03-07,17370,6763,"[""Headphones""]",4590.28,{},145541,0,Asia +2024-07-02,17371,8855,"[""Keyboard""]",805.72,{},113480,0,Asia +2023-12-19,17372,3079,"[""Keyboard"", ""Monitor"", ""Tablet""]",3652.98,{},9210,0,Asia +2023-05-02,17373,6640,"[""Phone"", ""Laptop"", ""Charger""]",2271.18,{},184224,0,Africa +2023-02-17,17374,109,"[""Charger"", ""Keyboard"", ""Headphones""]",72.84,{},158895,1,South America +2024-04-06,17375,5748,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4178.68,"{""seasonal"": ""20%""}",101069,0,Europe +2023-04-13,17376,7661,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3274.17,{},16261,0,Africa +2024-07-31,17377,6329,"[""Monitor"", ""Laptop"", ""Charger""]",4858.42,{},119924,1,Europe +2024-01-09,17378,8097,"[""Charger"", ""Monitor""]",1683.25,{},177203,0,South America +2023-09-05,17379,7188,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2878.89,{},290750,0,Europe +2023-12-02,17380,3537,"[""Monitor""]",1904.59,"{""promo"": ""15%""}",159688,1,South America +2024-11-07,17381,8473,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1882.43,"{""loyalty"": ""10%""}",242745,1,Europe +2023-02-26,17382,3051,"[""Headphones""]",865.8,"{"""": ""14%""}",133459,1,Europe +2023-12-18,17383,2109,"[""Charger"", ""Tablet"", ""Monitor""]",750.19,{},54356,0,North America +2024-10-30,17384,8407,"[""Phone""]",2958.37,{},258580,1,South America +2024-02-12,17385,7356,"[""Laptop"", ""Monitor"", ""Keyboard""]",1749.83,"{"""": ""15%""}",86574,0,South America +2024-01-29,17386,7794,"[""Tablet""]",1369.33,"{""seasonal"": ""12%""}",79097,1,South America +2023-01-31,17387,7786,"[""Wireless Mouse"", ""Headphones""]",1061.84,"{""seasonal"": ""15%""}",125723,0,Europe +2023-12-30,17388,2565,"[""Monitor""]",2478.64,{},219159,0,Europe +2023-04-09,17389,420,"[""Headphones"", ""Phone""]",2414.26,"{"""": ""18%""}",58902,0,South America +2023-09-30,17390,5795,"[""Phone"", ""Charger""]",3714.81,"{"""": ""22%""}",185586,0,North America +2024-07-05,17391,8672,"[""Tablet"", ""Laptop"", ""Keyboard""]",865.6,"{""seasonal"": ""24%""}",187798,1,Africa +2024-05-04,17392,1688,"[""Headphones"", ""Wireless Mouse""]",2644.88,{},3308,1,Asia +2024-02-27,17393,2884,"[""Keyboard""]",3771.55,"{""promo"": ""5%""}",188139,0,Asia +2024-10-19,17394,7592,"[""Monitor"", ""Keyboard"", ""Tablet""]",318.22,"{""promo"": ""17%""}",52338,1,Africa +2024-06-09,17395,5611,"[""Wireless Mouse""]",2918.3,"{""loyalty"": ""17%""}",62438,1,Europe +2024-12-05,17396,829,"[""Monitor"", ""Wireless Mouse""]",4187.71,{},64640,1,Europe +2023-05-11,17397,809,"[""Tablet""]",3510.37,{},133956,1,North America +2024-04-03,17398,6242,"[""Keyboard"", ""Laptop""]",1372.73,{},31312,1,Asia +2023-12-02,17399,4038,"[""Headphones"", ""Wireless Mouse""]",379.65,{},10848,0,South America +2024-06-20,17400,6301,"[""Charger""]",3819.42,"{""promo"": ""10%""}",153602,1,Africa +2024-01-25,17401,9986,"[""Laptop""]",2149.22,"{""promo"": ""22%""}",174727,0,North America +2024-05-23,17402,3166,"[""Headphones""]",1178.52,{},22547,1,Africa +2023-08-30,17403,3279,"[""Monitor"", ""Wireless Mouse""]",1541.49,"{"""": ""26%""}",163135,1,South America +2024-02-11,17404,5698,"[""Wireless Mouse""]",1014.04,{},280826,0,North America +2023-12-03,17405,2068,"[""Wireless Mouse""]",3188.34,{},28085,1,Africa +2023-10-13,17406,9145,"[""Monitor"", ""Keyboard""]",4598.66,"{"""": ""16%""}",123353,1,Europe +2024-03-12,17407,8432,"[""Wireless Mouse""]",199.54,"{""promo"": ""29%""}",267834,1,Europe +2024-01-15,17408,3904,"[""Headphones"", ""Keyboard""]",1791.68,{},33041,0,North America +2023-08-16,17409,6535,"[""Phone""]",3762.26,{},221821,1,North America +2024-08-19,17410,8512,"[""Keyboard"", ""Wireless Mouse""]",1766.91,"{""loyalty"": ""22%""}",21556,0,North America +2024-04-04,17411,5136,"[""Monitor"", ""Laptop"", ""Tablet""]",80.78,"{""seasonal"": ""10%""}",20006,1,Africa +2023-11-05,17412,502,"[""Laptop"", ""Headphones""]",2611.18,{},133686,1,North America +2024-02-28,17413,3209,"[""Monitor"", ""Tablet"", ""Charger""]",4167.28,{},250048,1,Africa +2023-06-06,17414,6353,"[""Charger"", ""Laptop""]",3878.22,"{""promo"": ""9%""}",147154,1,Europe +2024-05-23,17415,605,"[""Wireless Mouse"", ""Tablet""]",4419.76,"{""seasonal"": ""5%""}",204343,1,Europe +2024-12-14,17416,6098,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4204.77,"{""seasonal"": ""8%""}",254487,1,Asia +2024-01-14,17417,6367,"[""Laptop""]",4322.43,{},187698,1,North America +2023-10-30,17418,2373,"[""Laptop""]",2912.14,"{""seasonal"": ""21%""}",211471,1,Europe +2023-04-18,17419,7265,"[""Keyboard"", ""Monitor""]",4582.92,{},167716,1,Europe +2023-08-04,17420,3553,"[""Charger""]",472.23,{},76439,0,Europe +2024-12-26,17421,3207,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4942.64,"{""seasonal"": ""10%""}",13809,1,South America +2023-10-12,17422,3816,"[""Wireless Mouse""]",4622.34,{},34379,0,Asia +2023-12-22,17423,1563,"[""Headphones"", ""Monitor""]",3569.39,{},64533,0,Europe +2024-11-23,17424,3059,"[""Charger"", ""Wireless Mouse""]",4663.75,"{""loyalty"": ""8%""}",27345,0,Africa +2023-07-29,17425,9531,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4634.55,{},247371,1,Africa +2023-09-03,17426,5166,"[""Headphones""]",2797.24,"{"""": ""23%""}",244733,1,North America +2024-01-23,17427,1656,"[""Tablet"", ""Headphones""]",1620.52,"{""seasonal"": ""11%""}",142402,1,Asia +2023-12-26,17428,6247,"[""Phone"", ""Monitor""]",4673.04,{},68105,1,Africa +2024-11-26,17429,2946,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3081.54,"{""promo"": ""20%""}",203271,1,Asia +2024-08-06,17430,8066,"[""Phone"", ""Laptop""]",4984.49,"{"""": ""29%""}",231881,1,North America +2023-04-21,17431,2373,"[""Phone""]",1194.66,"{""promo"": ""9%""}",260223,1,Africa +2023-10-12,17432,3699,"[""Phone"", ""Monitor""]",1604.48,{},154123,1,Asia +2024-09-26,17433,5551,"[""Charger""]",738.85,{},145830,0,Asia +2023-10-09,17434,2386,"[""Laptop"", ""Tablet""]",4779.29,"{""promo"": ""10%""}",107861,1,South America +2023-01-03,17435,9926,"[""Phone""]",2493.49,"{""loyalty"": ""16%""}",151489,1,South America +2023-12-28,17436,6890,"[""Charger"", ""Laptop""]",1854.45,{},43985,0,Asia +2023-03-05,17437,9843,"[""Laptop""]",2551.09,{},280011,1,Europe +2024-07-15,17438,8091,"[""Monitor"", ""Headphones""]",1818.02,{},285585,0,North America +2023-06-18,17439,6125,"[""Charger""]",1828.9,"{""promo"": ""12%""}",19944,0,Africa +2023-09-10,17440,1696,"[""Charger""]",763.92,"{"""": ""20%""}",209394,0,North America +2023-04-08,17441,3400,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1929.88,{},146215,1,Europe +2023-01-10,17442,6691,"[""Tablet"", ""Keyboard"", ""Headphones""]",353.69,"{""loyalty"": ""27%""}",70588,1,Europe +2023-09-03,17443,6151,"[""Tablet""]",3094.71,{},175633,0,Europe +2024-02-21,17444,267,"[""Wireless Mouse""]",4981.97,"{""loyalty"": ""12%""}",156278,1,North America +2024-07-07,17445,1805,"[""Phone""]",979.45,{},187644,1,North America +2023-02-23,17446,9367,"[""Keyboard""]",2252.08,{},218861,1,South America +2024-07-04,17447,7230,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1410.77,"{""seasonal"": ""6%""}",254485,1,Africa +2023-06-18,17448,1798,"[""Headphones""]",2837.66,"{""promo"": ""12%""}",78798,0,Europe +2024-11-30,17449,299,"[""Tablet"", ""Monitor""]",2166.5,{},177649,1,Europe +2023-08-17,17450,1077,"[""Charger""]",3478.81,"{""seasonal"": ""25%""}",171356,0,North America +2023-08-23,17451,9967,"[""Headphones"", ""Monitor""]",2454.96,{},244205,1,Europe +2023-12-30,17452,1158,"[""Tablet"", ""Charger""]",2606.0,{},138680,1,North America +2023-11-26,17453,6548,"[""Wireless Mouse"", ""Laptop""]",2183.14,"{"""": ""12%""}",40886,0,North America +2024-05-02,17454,2324,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2927.43,{},253056,1,North America +2024-03-28,17455,5133,"[""Monitor"", ""Phone"", ""Keyboard""]",733.36,"{""promo"": ""6%""}",241800,1,South America +2023-01-01,17456,3195,"[""Monitor"", ""Phone"", ""Charger""]",1671.0,{},158751,0,North America +2023-07-21,17457,7713,"[""Headphones"", ""Tablet"", ""Monitor""]",690.69,{},297392,0,South America +2023-01-13,17458,2193,"[""Charger"", ""Laptop""]",4071.81,"{"""": ""17%""}",13626,0,North America +2023-11-07,17459,190,"[""Headphones"", ""Laptop""]",2802.46,{},173500,0,Europe +2024-06-26,17460,5065,"[""Keyboard"", ""Tablet"", ""Laptop""]",4260.66,"{"""": ""28%""}",181665,1,North America +2023-10-02,17461,2212,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1361.82,{},67881,0,Africa +2024-11-17,17462,6270,"[""Tablet"", ""Laptop""]",531.98,"{""loyalty"": ""14%""}",133801,0,South America +2023-08-05,17463,3308,"[""Monitor""]",3349.88,{},1480,0,Asia +2023-07-09,17464,8451,"[""Headphones""]",495.04,"{""seasonal"": ""28%""}",36744,1,North America +2023-06-04,17465,5620,"[""Laptop"", ""Wireless Mouse""]",992.47,{},173266,0,South America +2023-03-14,17466,7578,"[""Monitor""]",4595.41,"{""loyalty"": ""7%""}",45008,1,Africa +2023-12-26,17467,8860,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",645.51,{},238283,0,Europe +2023-04-30,17468,7853,"[""Keyboard""]",4017.47,{},135911,1,North America +2024-02-12,17469,6277,"[""Phone"", ""Wireless Mouse""]",4685.58,{},115518,1,Africa +2023-11-16,17470,192,"[""Tablet"", ""Phone"", ""Laptop""]",1492.57,"{""promo"": ""27%""}",66269,1,South America +2023-11-17,17471,1750,"[""Tablet""]",1225.58,"{""loyalty"": ""10%""}",138504,1,Africa +2024-09-09,17472,6291,"[""Keyboard""]",687.38,"{""loyalty"": ""12%""}",255177,0,Africa +2024-03-24,17473,8530,"[""Phone"", ""Wireless Mouse""]",2078.93,"{""promo"": ""7%""}",263296,1,Asia +2024-02-10,17474,4990,"[""Phone""]",3083.96,{},7613,0,North America +2023-08-29,17475,183,"[""Wireless Mouse"", ""Charger""]",3837.0,{},286090,1,Africa +2023-09-13,17476,3460,"[""Tablet"", ""Laptop""]",1250.72,{},228034,1,Asia +2024-08-24,17477,1257,"[""Monitor"", ""Headphones"", ""Laptop""]",1042.3,"{"""": ""15%""}",145634,1,Asia +2023-04-27,17478,1713,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",464.98,"{"""": ""11%""}",65098,1,Africa +2024-10-03,17479,7509,"[""Headphones""]",2167.21,{},267813,0,Europe +2024-02-04,17480,1065,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2583.55,"{""seasonal"": ""22%""}",130028,0,Europe +2024-12-08,17481,7906,"[""Wireless Mouse""]",4694.85,{},54285,1,Africa +2023-08-28,17482,5884,"[""Monitor""]",2901.94,"{"""": ""10%""}",176030,1,Asia +2024-01-05,17483,4379,"[""Headphones"", ""Wireless Mouse""]",1734.21,"{""seasonal"": ""30%""}",157852,1,North America +2023-08-01,17484,5155,"[""Wireless Mouse"", ""Tablet""]",4168.53,"{""seasonal"": ""6%""}",76870,1,Europe +2023-07-12,17485,6123,"[""Keyboard""]",2467.91,{},21260,1,Asia +2024-07-10,17486,5663,"[""Laptop""]",2466.66,"{"""": ""14%""}",76836,1,South America +2023-09-27,17487,4844,"[""Laptop"", ""Tablet"", ""Keyboard""]",3454.64,"{"""": ""15%""}",38963,1,South America +2023-01-09,17488,8569,"[""Phone""]",2508.83,{},189506,0,Asia +2024-10-29,17489,8369,"[""Wireless Mouse"", ""Headphones""]",3935.36,"{""promo"": ""13%""}",46126,0,Europe +2023-12-08,17490,6539,"[""Charger"", ""Phone""]",2162.18,{},222512,1,Europe +2024-07-22,17491,7803,"[""Charger""]",1463.29,"{"""": ""8%""}",141582,1,North America +2024-11-10,17492,7066,"[""Charger"", ""Phone"", ""Monitor""]",3654.67,{},259352,1,Africa +2024-07-07,17493,9440,"[""Phone"", ""Headphones"", ""Tablet""]",4244.89,"{"""": ""22%""}",199959,1,Africa +2024-11-05,17494,9823,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1607.66,"{""seasonal"": ""20%""}",255206,1,South America +2024-08-06,17495,2640,"[""Charger""]",2785.91,"{""loyalty"": ""23%""}",152070,1,North America +2024-11-15,17496,3253,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",74.99,"{"""": ""13%""}",72348,1,North America +2024-08-12,17497,7052,"[""Monitor""]",4320.89,"{"""": ""28%""}",60009,0,South America +2023-10-13,17498,1188,"[""Keyboard"", ""Laptop""]",4673.02,"{""promo"": ""5%""}",250037,0,Asia +2023-01-07,17499,3907,"[""Laptop""]",2956.77,"{""promo"": ""8%""}",68075,1,South America +2024-10-02,17500,1135,"[""Keyboard""]",3391.33,{},79275,1,Asia +2023-11-04,17501,5262,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",521.79,{},42481,1,Africa +2023-09-06,17502,1294,"[""Charger""]",539.63,{},226690,1,Asia +2023-02-21,17503,3614,"[""Headphones"", ""Laptop"", ""Keyboard""]",2550.35,{},235249,1,Europe +2024-05-30,17504,1747,"[""Phone"", ""Wireless Mouse""]",961.78,{},104439,1,Europe +2023-04-16,17505,9449,"[""Wireless Mouse""]",2547.39,"{""promo"": ""14%""}",118256,0,Europe +2024-06-27,17506,6852,"[""Laptop"", ""Keyboard""]",835.9,{},11792,1,Asia +2023-04-17,17507,9272,"[""Keyboard"", ""Monitor""]",3937.02,"{""promo"": ""29%""}",151289,0,South America +2023-03-22,17508,632,"[""Monitor""]",1242.61,{},162665,1,Asia +2023-02-16,17509,6528,"[""Laptop""]",4461.27,"{"""": ""19%""}",144740,1,Africa +2023-06-29,17510,1615,"[""Charger"", ""Laptop"", ""Monitor""]",4634.21,{},262346,1,Asia +2024-04-06,17511,5270,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",742.62,{},92215,1,Africa +2024-12-14,17512,9546,"[""Headphones"", ""Laptop"", ""Phone""]",649.18,"{""seasonal"": ""23%""}",202507,1,Europe +2023-10-19,17513,3762,"[""Monitor"", ""Tablet""]",2399.42,"{""seasonal"": ""13%""}",21077,1,Europe +2023-10-20,17514,3069,"[""Headphones"", ""Tablet""]",4623.17,"{""loyalty"": ""18%""}",237988,1,Asia +2023-03-03,17515,3016,"[""Charger"", ""Headphones""]",303.08,{},220992,0,North America +2023-10-11,17516,2390,"[""Wireless Mouse""]",2888.1,"{""promo"": ""5%""}",235652,0,Africa +2024-02-16,17517,8982,"[""Wireless Mouse""]",3021.45,{},56917,1,South America +2023-11-06,17518,9215,"[""Phone"", ""Charger""]",300.56,"{""seasonal"": ""24%""}",277912,0,South America +2023-10-19,17519,325,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4142.52,{},143038,0,Africa +2024-12-30,17520,6475,"[""Charger"", ""Headphones""]",3156.26,{},137226,0,Europe +2024-05-10,17521,7411,"[""Phone""]",3657.17,"{"""": ""24%""}",293717,0,Europe +2023-11-21,17522,5594,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2784.22,"{""loyalty"": ""5%""}",143801,0,North America +2024-03-18,17523,7622,"[""Headphones""]",1325.4,"{""promo"": ""11%""}",278116,1,Europe +2024-06-25,17524,6278,"[""Laptop"", ""Phone"", ""Monitor""]",2146.96,{},27526,0,Africa +2024-09-03,17525,2070,"[""Keyboard"", ""Phone""]",2133.49,"{"""": ""15%""}",111488,0,North America +2023-05-14,17526,8786,"[""Laptop"", ""Charger"", ""Headphones""]",168.75,"{""promo"": ""9%""}",119234,1,North America +2024-11-27,17527,1034,"[""Charger"", ""Monitor""]",3364.57,{},164127,0,Asia +2024-12-18,17528,9185,"[""Wireless Mouse"", ""Charger""]",1619.97,"{""promo"": ""24%""}",149577,1,Asia +2024-03-29,17529,9149,"[""Wireless Mouse"", ""Laptop""]",4490.09,{},41732,1,South America +2023-07-04,17530,3204,"[""Tablet"", ""Headphones"", ""Monitor""]",780.27,"{""promo"": ""8%""}",153257,0,South America +2023-03-31,17531,1946,"[""Laptop""]",2711.21,"{""seasonal"": ""13%""}",86663,1,South America +2023-03-18,17532,4234,"[""Charger"", ""Keyboard"", ""Monitor""]",607.24,{},109198,1,Africa +2023-01-22,17533,6679,"[""Phone""]",1201.84,"{""seasonal"": ""24%""}",26386,1,Asia +2023-06-13,17534,260,"[""Monitor"", ""Headphones""]",2226.52,{},90484,1,Asia +2023-10-08,17535,2322,"[""Headphones""]",3685.17,"{""loyalty"": ""25%""}",55239,0,Africa +2023-05-17,17536,6354,"[""Wireless Mouse""]",2079.13,"{"""": ""7%""}",71519,0,Europe +2024-07-02,17537,2638,"[""Phone""]",4804.54,"{""loyalty"": ""13%""}",174472,0,North America +2023-12-18,17538,4201,"[""Charger""]",1683.04,{},256032,1,Asia +2023-09-05,17539,2490,"[""Phone""]",1453.71,"{""seasonal"": ""18%""}",107396,0,Asia +2023-09-15,17540,7644,"[""Wireless Mouse""]",2356.85,"{""seasonal"": ""5%""}",135036,0,Asia +2023-05-28,17541,6523,"[""Headphones"", ""Laptop"", ""Tablet""]",1576.52,"{"""": ""29%""}",214372,0,Europe +2024-05-06,17542,4238,"[""Laptop"", ""Charger""]",4777.22,{},68606,1,North America +2023-10-27,17543,4018,"[""Wireless Mouse"", ""Headphones""]",2345.1,"{""promo"": ""12%""}",209739,1,Asia +2024-07-17,17544,4783,"[""Laptop"", ""Monitor""]",3459.04,"{""promo"": ""26%""}",125155,0,Europe +2023-08-10,17545,1882,"[""Headphones"", ""Phone""]",1356.31,{},167279,1,North America +2024-06-21,17546,7544,"[""Tablet"", ""Laptop"", ""Headphones""]",3272.44,{},205019,0,Europe +2023-03-17,17547,4096,"[""Monitor""]",3547.51,{},36237,0,Europe +2023-07-28,17548,486,"[""Charger""]",1716.94,"{"""": ""12%""}",19062,0,Africa +2023-06-17,17549,2351,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3184.54,"{""loyalty"": ""30%""}",147690,0,South America +2023-11-20,17550,540,"[""Headphones"", ""Laptop""]",3795.55,"{"""": ""27%""}",265561,0,South America +2023-01-11,17551,3016,"[""Charger"", ""Wireless Mouse""]",3475.68,"{""promo"": ""27%""}",164194,0,Europe +2024-01-25,17552,1368,"[""Tablet"", ""Laptop"", ""Keyboard""]",4837.72,{},178642,1,South America +2024-12-28,17553,4435,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4709.67,{},252851,1,Asia +2023-07-24,17554,7229,"[""Monitor""]",4532.25,"{""seasonal"": ""17%""}",84648,0,North America +2024-05-10,17555,61,"[""Keyboard"", ""Wireless Mouse""]",4739.8,"{""seasonal"": ""6%""}",260902,0,Africa +2023-06-02,17556,235,"[""Tablet""]",236.26,"{"""": ""10%""}",81326,1,South America +2023-12-09,17557,7423,"[""Keyboard"", ""Charger""]",2907.09,"{""promo"": ""27%""}",61317,1,Africa +2023-12-16,17558,9777,"[""Tablet""]",907.46,{},225330,0,Africa +2023-03-30,17559,1474,"[""Keyboard""]",777.81,{},71279,1,South America +2024-05-15,17560,7396,"[""Charger"", ""Tablet"", ""Keyboard""]",1853.81,{},58128,0,Asia +2024-07-25,17561,2085,"[""Headphones"", ""Monitor""]",4753.03,"{""seasonal"": ""13%""}",174434,0,Europe +2023-06-11,17562,4275,"[""Wireless Mouse"", ""Phone""]",722.01,{},288518,0,South America +2024-11-13,17563,7514,"[""Headphones"", ""Keyboard"", ""Phone""]",4941.83,{},59672,1,North America +2024-03-29,17564,378,"[""Laptop""]",2584.77,{},132123,0,Africa +2024-11-05,17565,8937,"[""Tablet"", ""Charger""]",4348.37,{},102305,1,Asia +2023-05-24,17566,4869,"[""Wireless Mouse"", ""Laptop""]",2510.73,"{""loyalty"": ""18%""}",251180,1,North America +2023-04-21,17567,7229,"[""Monitor"", ""Phone""]",4500.91,"{""seasonal"": ""8%""}",103547,1,Asia +2024-04-14,17568,7401,"[""Wireless Mouse"", ""Headphones""]",4783.4,{},54860,1,Asia +2023-10-27,17569,1059,"[""Keyboard""]",1651.89,{},221444,0,Europe +2023-12-03,17570,6502,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",933.34,"{"""": ""28%""}",219583,1,Asia +2024-09-08,17571,621,"[""Headphones"", ""Charger"", ""Laptop""]",2120.45,"{""seasonal"": ""7%""}",277760,0,Africa +2024-07-17,17572,4767,"[""Phone"", ""Wireless Mouse""]",1160.87,"{"""": ""17%""}",214057,0,Europe +2023-11-27,17573,6722,"[""Keyboard"", ""Laptop""]",3621.05,"{"""": ""19%""}",203697,1,Asia +2024-03-27,17574,3448,"[""Charger""]",4092.24,{},181718,1,Africa +2023-03-07,17575,5193,"[""Laptop"", ""Tablet""]",4127.41,{},173655,0,South America +2024-12-07,17576,1610,"[""Keyboard""]",4751.7,"{""seasonal"": ""7%""}",194892,1,North America +2023-08-20,17577,6455,"[""Charger"", ""Phone""]",3627.62,"{""promo"": ""15%""}",205467,0,North America +2023-05-22,17578,9642,"[""Keyboard""]",4196.31,{},67014,1,Africa +2023-04-27,17579,5657,"[""Charger"", ""Monitor"", ""Headphones""]",3780.34,"{""loyalty"": ""22%""}",237358,1,Africa +2024-02-01,17580,4669,"[""Charger""]",1686.95,"{""loyalty"": ""8%""}",156867,0,Asia +2024-01-29,17581,573,"[""Charger""]",932.38,"{"""": ""7%""}",12094,0,Africa +2023-02-02,17582,8384,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2414.85,"{""loyalty"": ""25%""}",232272,0,South America +2023-03-25,17583,3289,"[""Phone"", ""Wireless Mouse""]",4782.4,"{""loyalty"": ""24%""}",57342,1,North America +2023-01-23,17584,5844,"[""Wireless Mouse"", ""Headphones""]",620.88,{},98788,0,Asia +2024-01-05,17585,8215,"[""Keyboard"", ""Phone"", ""Charger""]",4918.23,"{""loyalty"": ""16%""}",245552,1,Europe +2023-09-13,17586,5452,"[""Headphones""]",230.91,{},148336,0,North America +2023-10-05,17587,142,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1429.87,{},238845,1,South America +2023-08-25,17588,2368,"[""Headphones""]",1154.5,"{""loyalty"": ""17%""}",226931,1,Africa +2024-08-28,17589,6641,"[""Phone"", ""Headphones""]",1935.73,{},244471,1,South America +2024-02-18,17590,9363,"[""Headphones""]",4280.08,"{""promo"": ""20%""}",48554,1,Europe +2024-03-31,17591,2087,"[""Charger""]",2814.18,"{"""": ""29%""}",1349,0,Europe +2023-06-07,17592,9996,"[""Monitor"", ""Charger""]",3218.36,"{""seasonal"": ""5%""}",249495,0,Asia +2024-04-20,17593,6431,"[""Tablet"", ""Laptop"", ""Headphones""]",980.84,"{"""": ""21%""}",118577,0,Asia +2024-05-20,17594,2004,"[""Phone"", ""Laptop""]",3140.69,"{""seasonal"": ""8%""}",140338,1,Europe +2023-02-09,17595,6726,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2938.5,{},2298,0,South America +2024-03-04,17596,6014,"[""Wireless Mouse""]",497.44,{},258415,0,South America +2024-08-09,17597,5860,"[""Headphones"", ""Charger"", ""Keyboard""]",1626.74,{},244439,1,North America +2024-06-05,17598,5492,"[""Monitor"", ""Tablet"", ""Keyboard""]",2934.7,"{""loyalty"": ""15%""}",80918,0,Europe +2023-10-04,17599,6732,"[""Phone"", ""Laptop""]",4372.16,"{""seasonal"": ""19%""}",38040,0,Asia +2024-06-14,17600,1647,"[""Wireless Mouse""]",4118.92,"{""promo"": ""7%""}",51196,0,South America +2023-04-05,17601,2121,"[""Laptop""]",1610.53,"{""loyalty"": ""26%""}",135638,1,Asia +2023-10-18,17602,5682,"[""Headphones""]",4669.4,"{""promo"": ""5%""}",112038,0,Europe +2024-12-16,17603,4396,"[""Laptop""]",4652.81,"{""loyalty"": ""18%""}",196094,0,North America +2024-03-31,17604,3468,"[""Laptop""]",1637.85,{},71759,0,South America +2024-10-31,17605,8699,"[""Charger"", ""Monitor"", ""Headphones""]",551.6,{},176233,0,Europe +2024-01-05,17606,2097,"[""Laptop""]",98.87,"{"""": ""7%""}",210736,0,South America +2023-11-03,17607,1971,"[""Keyboard""]",3211.53,"{"""": ""15%""}",30458,0,South America +2023-09-24,17608,1358,"[""Keyboard"", ""Tablet""]",1465.61,"{"""": ""23%""}",158952,0,Europe +2023-05-29,17609,7489,"[""Wireless Mouse""]",951.43,"{"""": ""12%""}",37128,1,North America +2023-01-24,17610,1859,"[""Keyboard"", ""Laptop""]",2761.95,{},6803,1,Europe +2024-04-21,17611,5339,"[""Phone""]",1466.76,{},278927,1,Europe +2023-11-02,17612,1323,"[""Keyboard"", ""Laptop"", ""Tablet""]",3820.22,{},232830,0,Asia +2024-07-12,17613,9208,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3530.63,{},256185,0,Europe +2024-09-30,17614,1422,"[""Wireless Mouse""]",3770.67,"{""seasonal"": ""30%""}",109446,0,Asia +2023-05-14,17615,6073,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1247.59,"{""loyalty"": ""8%""}",19070,1,Africa +2023-07-19,17616,7209,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2883.52,"{""loyalty"": ""21%""}",196784,0,Africa +2024-05-03,17617,7768,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3292.28,{},277355,0,North America +2023-03-24,17618,7269,"[""Laptop"", ""Keyboard""]",1421.09,{},131275,1,Africa +2024-09-15,17619,3078,"[""Tablet""]",1368.88,"{""promo"": ""16%""}",268054,1,South America +2023-10-14,17620,3195,"[""Phone"", ""Keyboard"", ""Laptop""]",2032.23,"{""seasonal"": ""27%""}",270081,1,Europe +2023-04-29,17621,2248,"[""Phone""]",426.72,"{"""": ""11%""}",250535,1,Europe +2024-10-19,17622,3562,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",173.98,{},85370,0,Africa +2024-04-02,17623,8807,"[""Charger""]",1463.18,{},263908,1,Asia +2024-10-17,17624,1290,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3928.07,{},246147,0,Europe +2024-05-25,17625,7284,"[""Headphones""]",4276.71,{},230479,1,North America +2023-01-15,17626,3373,"[""Keyboard"", ""Laptop"", ""Monitor""]",2913.0,{},106033,1,North America +2023-07-26,17627,2275,"[""Phone"", ""Monitor"", ""Laptop""]",2887.84,"{"""": ""23%""}",127174,0,North America +2023-05-14,17628,9412,"[""Phone"", ""Tablet""]",2571.53,{},270964,0,Europe +2024-11-29,17629,854,"[""Monitor"", ""Charger"", ""Phone""]",4774.07,{},230571,1,Asia +2023-05-03,17630,9338,"[""Laptop"", ""Monitor""]",2886.88,{},108778,0,North America +2024-12-03,17631,5698,"[""Keyboard""]",3987.48,{},247327,1,South America +2023-09-12,17632,9123,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2238.1,{},104505,0,Europe +2024-02-27,17633,35,"[""Headphones"", ""Keyboard"", ""Monitor""]",1572.46,{},85631,0,South America +2024-02-27,17634,6495,"[""Headphones"", ""Laptop""]",1375.36,"{""loyalty"": ""16%""}",70390,0,Africa +2023-02-08,17635,6689,"[""Monitor""]",4160.54,{},54832,1,South America +2023-08-24,17636,144,"[""Phone"", ""Monitor"", ""Charger""]",1836.98,"{""promo"": ""27%""}",179069,1,Asia +2024-08-21,17637,5617,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3613.6,{},81524,0,South America +2024-03-05,17638,3318,"[""Laptop""]",4480.86,{},174599,0,North America +2023-05-22,17639,1223,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1871.37,"{""loyalty"": ""13%""}",86534,0,Asia +2023-07-08,17640,8188,"[""Laptop""]",1382.52,"{""seasonal"": ""27%""}",254498,1,North America +2023-01-28,17641,4992,"[""Tablet"", ""Charger""]",3642.3,{},73532,0,Africa +2024-04-01,17642,8994,"[""Tablet"", ""Phone"", ""Keyboard""]",941.21,"{""promo"": ""22%""}",214382,1,North America +2023-03-17,17643,8173,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4234.04,{},19435,0,North America +2024-08-31,17644,4250,"[""Phone"", ""Keyboard""]",1455.68,{},131008,0,Asia +2023-05-04,17645,6152,"[""Headphones"", ""Laptop""]",1055.16,{},57838,0,North America +2024-12-22,17646,359,"[""Keyboard"", ""Laptop"", ""Headphones""]",3780.31,{},182696,1,North America +2023-01-09,17647,5926,"[""Monitor"", ""Headphones"", ""Tablet""]",2691.4,{},276968,0,Europe +2023-07-14,17648,9275,"[""Keyboard"", ""Monitor""]",4011.7,"{"""": ""10%""}",162704,0,Europe +2023-11-30,17649,7521,"[""Tablet"", ""Keyboard""]",2849.3,"{"""": ""9%""}",116709,0,Africa +2024-12-24,17650,52,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",824.43,{},78655,0,South America +2023-06-18,17651,7791,"[""Headphones""]",2659.9,"{""seasonal"": ""19%""}",254671,0,North America +2024-02-24,17652,7525,"[""Keyboard""]",892.19,{},35768,1,North America +2023-10-03,17653,5081,"[""Charger""]",560.97,"{""seasonal"": ""11%""}",242300,0,Europe +2023-04-20,17654,2989,"[""Laptop"", ""Charger""]",531.4,"{"""": ""7%""}",294570,1,Africa +2024-05-30,17655,5000,"[""Charger"", ""Wireless Mouse""]",865.88,"{""loyalty"": ""28%""}",171660,0,North America +2024-02-07,17656,231,"[""Headphones"", ""Monitor"", ""Keyboard""]",2011.1,{},290292,1,Africa +2024-12-22,17657,3704,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",551.59,"{""loyalty"": ""20%""}",294351,1,Asia +2023-07-28,17658,7645,"[""Wireless Mouse""]",1891.24,{},282547,0,Europe +2024-09-06,17659,3814,"[""Laptop""]",3367.56,{},43376,1,North America +2023-08-17,17660,5199,"[""Headphones"", ""Wireless Mouse""]",4958.63,{},36888,1,Asia +2024-04-19,17661,6001,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1741.73,{},201386,1,Asia +2023-01-04,17662,4222,"[""Wireless Mouse""]",1394.93,{},12388,1,Europe +2024-06-18,17663,4053,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1608.99,{},58781,1,Africa +2024-08-21,17664,8111,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2195.94,"{""loyalty"": ""28%""}",61986,0,South America +2023-01-01,17665,4601,"[""Headphones"", ""Charger"", ""Monitor""]",4744.23,"{""loyalty"": ""12%""}",179865,0,Asia +2023-09-07,17666,4654,"[""Tablet""]",1230.73,"{"""": ""11%""}",227745,1,Africa +2024-07-11,17667,3532,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3795.85,"{"""": ""7%""}",238701,1,Asia +2024-08-31,17668,5803,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2874.64,"{""loyalty"": ""10%""}",158301,1,South America +2024-08-20,17669,3447,"[""Keyboard"", ""Tablet""]",3716.0,{},258606,0,North America +2024-12-16,17670,2431,"[""Phone"", ""Charger""]",3142.13,"{""promo"": ""25%""}",265441,0,North America +2024-08-21,17671,7723,"[""Headphones"", ""Monitor""]",343.93,"{"""": ""28%""}",76479,0,Asia +2024-06-11,17672,5931,"[""Laptop"", ""Wireless Mouse""]",1452.88,"{""seasonal"": ""16%""}",127308,1,Europe +2023-08-17,17673,8605,"[""Phone""]",2101.01,"{""promo"": ""18%""}",41654,1,Europe +2024-10-07,17674,7942,"[""Charger"", ""Headphones""]",4525.71,"{""seasonal"": ""5%""}",188921,0,North America +2024-01-30,17675,5823,"[""Monitor""]",813.61,{},28564,1,Europe +2023-05-30,17676,7584,"[""Keyboard"", ""Charger""]",2409.39,"{"""": ""7%""}",259274,1,South America +2024-02-10,17677,7282,"[""Phone"", ""Charger"", ""Monitor""]",1162.33,"{""seasonal"": ""18%""}",21603,0,South America +2023-02-14,17678,315,"[""Tablet"", ""Charger"", ""Keyboard""]",193.53,"{""loyalty"": ""16%""}",257989,0,South America +2023-07-30,17679,6635,"[""Monitor"", ""Headphones"", ""Keyboard""]",4136.16,{},159418,0,North America +2023-02-13,17680,4629,"[""Monitor"", ""Keyboard"", ""Laptop""]",3385.21,"{""seasonal"": ""15%""}",59203,1,South America +2024-03-08,17681,352,"[""Headphones"", ""Laptop""]",4694.59,{},114589,1,South America +2023-02-03,17682,8827,"[""Keyboard""]",3235.45,"{""seasonal"": ""7%""}",167222,1,North America +2024-04-07,17683,5198,"[""Charger"", ""Laptop""]",3012.57,"{""loyalty"": ""20%""}",123860,1,Europe +2023-04-04,17684,5162,"[""Headphones"", ""Tablet""]",116.15,"{""seasonal"": ""20%""}",262453,0,South America +2023-02-16,17685,5382,"[""Tablet""]",1462.25,"{""promo"": ""13%""}",92855,1,North America +2024-10-18,17686,5955,"[""Headphones"", ""Laptop""]",4657.19,{},234044,0,Africa +2024-12-29,17687,8871,"[""Phone"", ""Monitor""]",2652.8,"{""loyalty"": ""18%""}",228772,0,North America +2023-07-19,17688,2164,"[""Tablet""]",249.56,{},281655,0,South America +2023-03-13,17689,520,"[""Charger"", ""Headphones""]",4340.21,{},241510,0,Asia +2023-03-17,17690,3935,"[""Laptop"", ""Headphones"", ""Tablet""]",871.7,"{"""": ""17%""}",114700,1,Asia +2024-02-02,17691,9352,"[""Phone""]",2172.81,"{"""": ""22%""}",204188,1,South America +2024-04-25,17692,1810,"[""Wireless Mouse""]",2184.0,"{"""": ""21%""}",293043,0,South America +2024-04-01,17693,8878,"[""Tablet"", ""Headphones""]",4779.5,"{""loyalty"": ""8%""}",133127,1,Asia +2023-01-05,17694,8938,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1936.88,"{""seasonal"": ""13%""}",235674,1,Africa +2024-04-30,17695,9770,"[""Monitor"", ""Headphones""]",3490.68,{},34862,0,North America +2023-04-14,17696,4696,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",159.7,{},279613,1,Asia +2024-01-14,17697,562,"[""Charger"", ""Laptop"", ""Keyboard""]",4206.34,"{""promo"": ""14%""}",123790,0,Asia +2023-03-09,17698,8170,"[""Charger"", ""Monitor""]",582.03,"{""loyalty"": ""11%""}",217942,0,Africa +2023-06-07,17699,1911,"[""Headphones""]",4051.62,{},199149,1,Africa +2024-11-09,17700,9155,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4310.68,{},165814,0,North America +2024-11-18,17701,9879,"[""Charger""]",4509.6,{},177798,0,North America +2023-02-13,17702,7123,"[""Wireless Mouse"", ""Headphones""]",1754.0,"{""promo"": ""30%""}",185844,0,Africa +2024-04-04,17703,119,"[""Charger"", ""Headphones""]",680.41,"{""promo"": ""12%""}",246557,0,Asia +2024-06-07,17704,6438,"[""Phone"", ""Laptop"", ""Charger""]",774.14,{},153152,0,Asia +2023-06-27,17705,8901,"[""Keyboard"", ""Charger""]",2417.64,"{""loyalty"": ""10%""}",199296,0,North America +2024-03-24,17706,9232,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2114.79,{},226539,0,North America +2023-12-19,17707,1887,"[""Phone"", ""Charger""]",3731.89,{},199238,1,Europe +2024-05-31,17708,738,"[""Headphones"", ""Laptop""]",2035.3,"{"""": ""10%""}",184380,0,North America +2023-04-09,17709,1910,"[""Phone"", ""Laptop""]",3932.2,"{""loyalty"": ""5%""}",244490,1,North America +2023-09-16,17710,7917,"[""Headphones""]",4927.55,"{""loyalty"": ""14%""}",99959,0,South America +2023-10-04,17711,8239,"[""Phone"", ""Charger""]",2395.43,"{""promo"": ""15%""}",198600,0,Europe +2024-06-27,17712,9202,"[""Charger""]",224.59,"{""loyalty"": ""6%""}",251628,0,North America +2024-02-12,17713,6209,"[""Phone"", ""Laptop""]",2204.76,"{""promo"": ""23%""}",295587,1,North America +2024-04-01,17714,9680,"[""Phone"", ""Charger"", ""Laptop""]",539.7,"{"""": ""30%""}",196420,1,Africa +2024-03-05,17715,3281,"[""Charger"", ""Tablet""]",1988.03,{},16723,0,South America +2024-10-31,17716,9168,"[""Headphones""]",4392.64,{},70484,0,North America +2023-09-12,17717,9432,"[""Wireless Mouse"", ""Charger""]",2325.49,"{""loyalty"": ""22%""}",81675,0,Asia +2023-09-24,17718,4961,"[""Monitor""]",2047.84,"{""seasonal"": ""30%""}",126532,1,Africa +2023-05-01,17719,1322,"[""Keyboard"", ""Wireless Mouse""]",4049.71,"{""loyalty"": ""28%""}",107404,1,Europe +2023-04-11,17720,3883,"[""Headphones"", ""Tablet""]",80.44,{},296488,0,Africa +2024-09-30,17721,4830,"[""Monitor""]",3424.77,{},221315,1,Europe +2024-09-16,17722,3670,"[""Laptop""]",3445.49,{},202313,1,South America +2024-03-28,17723,7955,"[""Charger"", ""Tablet"", ""Laptop""]",450.1,"{""loyalty"": ""26%""}",34712,1,South America +2023-04-07,17724,6189,"[""Keyboard""]",2562.05,{},117690,0,North America +2023-02-15,17725,6186,"[""Laptop""]",173.26,"{""seasonal"": ""17%""}",101981,1,North America +2023-11-10,17726,2644,"[""Wireless Mouse"", ""Phone""]",2335.27,"{""seasonal"": ""9%""}",8058,1,North America +2023-09-17,17727,150,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2339.34,{},251617,0,Africa +2023-12-06,17728,1375,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3587.16,{},230753,1,Asia +2024-02-21,17729,2917,"[""Monitor""]",666.65,"{""promo"": ""16%""}",177136,1,Asia +2024-01-31,17730,6478,"[""Headphones""]",2453.59,{},60492,1,North America +2024-02-26,17731,3475,"[""Charger""]",2483.32,{},240545,0,South America +2023-08-25,17732,3342,"[""Monitor""]",167.56,{},158174,0,South America +2024-04-05,17733,5585,"[""Monitor"", ""Laptop""]",3754.21,{},292084,0,Africa +2023-06-28,17734,9125,"[""Tablet""]",2544.18,"{""promo"": ""15%""}",195869,1,Europe +2023-09-12,17735,3188,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",620.11,"{"""": ""27%""}",233973,0,Africa +2024-02-03,17736,1011,"[""Headphones"", ""Charger""]",1387.74,"{""loyalty"": ""24%""}",299218,1,Africa +2023-08-26,17737,4548,"[""Keyboard"", ""Phone"", ""Tablet""]",3170.6,{},243001,0,Asia +2024-09-09,17738,8010,"[""Tablet""]",4862.54,{},5646,0,Asia +2024-06-08,17739,186,"[""Phone"", ""Tablet""]",2491.74,{},141367,0,North America +2023-04-27,17740,6954,"[""Tablet"", ""Monitor"", ""Charger""]",4973.98,{},175284,1,Asia +2023-06-20,17741,2681,"[""Laptop""]",126.9,{},258003,0,Africa +2024-05-19,17742,4169,"[""Charger"", ""Laptop"", ""Phone""]",2032.8,"{"""": ""29%""}",62511,1,North America +2024-10-03,17743,4421,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",305.2,{},232017,0,North America +2023-03-20,17744,460,"[""Tablet"", ""Wireless Mouse""]",3188.56,"{""seasonal"": ""29%""}",148263,1,Europe +2023-01-31,17745,6486,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4149.02,{},209666,0,Africa +2023-05-10,17746,7882,"[""Monitor"", ""Charger""]",3531.2,{},81221,1,Asia +2023-05-17,17747,9502,"[""Headphones""]",221.8,{},187331,0,Africa +2023-04-06,17748,1692,"[""Phone"", ""Monitor"", ""Laptop""]",4336.0,{},139414,0,North America +2023-08-09,17749,6144,"[""Phone""]",1565.38,"{""seasonal"": ""30%""}",138225,0,North America +2024-06-21,17750,1674,"[""Wireless Mouse"", ""Laptop""]",4372.45,{},25378,1,North America +2023-05-09,17751,200,"[""Tablet""]",4387.1,{},290856,0,Asia +2024-02-17,17752,9370,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3639.38,{},53132,0,Europe +2023-01-01,17753,4238,"[""Tablet"", ""Headphones""]",4698.21,"{"""": ""11%""}",107135,0,Europe +2024-01-09,17754,842,"[""Tablet"", ""Wireless Mouse""]",3824.49,{},91020,0,Europe +2024-10-09,17755,19,"[""Charger"", ""Tablet"", ""Monitor""]",266.78,"{""loyalty"": ""9%""}",125912,1,North America +2023-01-31,17756,5438,"[""Monitor"", ""Phone"", ""Keyboard""]",2777.73,{},121504,1,Africa +2023-08-22,17757,5465,"[""Charger"", ""Headphones""]",4204.71,"{""promo"": ""18%""}",129290,1,North America +2023-11-22,17758,2636,"[""Headphones""]",2458.02,"{""promo"": ""29%""}",258102,1,Africa +2024-03-10,17759,4165,"[""Keyboard"", ""Charger"", ""Phone""]",1562.73,{},277578,0,Asia +2024-06-25,17760,9714,"[""Monitor"", ""Laptop""]",3565.46,{},282853,1,Africa +2024-10-31,17761,4734,"[""Charger""]",2910.99,"{""promo"": ""18%""}",149068,0,Europe +2024-01-26,17762,180,"[""Charger"", ""Laptop""]",451.62,"{""seasonal"": ""23%""}",129151,1,Africa +2024-09-21,17763,1990,"[""Monitor"", ""Tablet""]",4308.67,{},5112,1,Asia +2024-08-14,17764,8586,"[""Monitor""]",1097.21,{},9096,1,Asia +2023-08-07,17765,7970,"[""Headphones"", ""Laptop""]",1391.33,{},81045,1,Africa +2024-05-18,17766,806,"[""Wireless Mouse""]",3294.23,{},212673,1,South America +2023-04-21,17767,5683,"[""Laptop""]",3585.6,"{"""": ""23%""}",286601,0,Europe +2023-05-24,17768,6066,"[""Headphones""]",2202.4,"{""promo"": ""14%""}",146563,1,Africa +2023-06-24,17769,1630,"[""Laptop"", ""Wireless Mouse""]",3663.07,"{"""": ""23%""}",44295,0,Africa +2024-04-05,17770,4466,"[""Tablet"", ""Laptop""]",4861.04,{},167312,1,North America +2023-01-04,17771,7008,"[""Laptop"", ""Charger"", ""Headphones""]",3011.98,"{""loyalty"": ""12%""}",151453,0,Europe +2024-04-13,17772,2758,"[""Tablet"", ""Headphones""]",4976.86,{},199616,0,Asia +2024-06-11,17773,7862,"[""Charger""]",1296.65,"{""seasonal"": ""28%""}",54062,1,North America +2023-07-20,17774,8519,"[""Laptop"", ""Keyboard""]",3038.37,"{""loyalty"": ""28%""}",15776,1,North America +2024-04-21,17775,9968,"[""Wireless Mouse""]",3224.93,"{""promo"": ""21%""}",278320,1,North America +2023-07-04,17776,1073,"[""Phone""]",499.89,"{"""": ""13%""}",24675,0,Africa +2023-04-29,17777,4449,"[""Charger""]",798.2,{},99196,1,Asia +2023-09-12,17778,5381,"[""Wireless Mouse"", ""Tablet""]",3618.83,"{""loyalty"": ""18%""}",18574,1,Africa +2023-06-07,17779,9244,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4705.35,{},43124,1,Europe +2023-03-26,17780,8770,"[""Tablet""]",4005.93,{},75896,0,Africa +2023-10-21,17781,859,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4985.09,{},222195,1,North America +2023-01-09,17782,6253,"[""Charger""]",4059.73,"{"""": ""23%""}",105491,0,Europe +2024-03-29,17783,6139,"[""Keyboard"", ""Laptop"", ""Monitor""]",695.94,"{""promo"": ""24%""}",154633,0,North America +2024-03-16,17784,8473,"[""Headphones""]",1720.82,{},253918,1,South America +2023-09-24,17785,3356,"[""Wireless Mouse""]",4410.86,{},146322,1,Europe +2024-09-12,17786,385,"[""Charger""]",3433.91,"{""promo"": ""6%""}",48631,1,Asia +2023-05-16,17787,7801,"[""Headphones"", ""Keyboard"", ""Laptop""]",3240.45,{},176798,0,Africa +2023-04-10,17788,7893,"[""Monitor""]",1415.1,{},103582,1,South America +2024-10-14,17789,5886,"[""Keyboard""]",3344.02,{},292171,1,South America +2023-06-25,17790,2647,"[""Wireless Mouse""]",1165.72,"{""loyalty"": ""13%""}",276899,1,North America +2023-03-05,17791,1932,"[""Tablet"", ""Charger"", ""Keyboard""]",2058.45,{},190591,1,Africa +2024-09-08,17792,2523,"[""Keyboard"", ""Phone"", ""Monitor""]",3067.01,{},193382,0,North America +2023-01-26,17793,8392,"[""Monitor"", ""Headphones"", ""Laptop""]",646.4,"{"""": ""24%""}",197490,0,North America +2024-08-06,17794,6338,"[""Keyboard"", ""Headphones""]",4709.11,"{""loyalty"": ""28%""}",76394,1,North America +2023-10-06,17795,4399,"[""Monitor""]",4875.13,{},120349,0,Europe +2023-04-07,17796,7035,"[""Phone"", ""Tablet""]",142.12,"{""promo"": ""6%""}",211615,0,Africa +2024-03-12,17797,836,"[""Charger"", ""Keyboard""]",537.35,{},141275,1,Africa +2023-02-03,17798,3340,"[""Laptop""]",3466.33,"{""promo"": ""24%""}",102490,1,Asia +2023-11-12,17799,2249,"[""Tablet""]",3828.37,{},134990,1,Europe +2023-04-28,17800,8424,"[""Phone""]",497.31,{},139484,1,Europe +2023-01-25,17801,4122,"[""Keyboard"", ""Tablet""]",1661.45,"{"""": ""18%""}",258979,0,Europe +2023-07-22,17802,5567,"[""Wireless Mouse""]",4038.73,{},78847,1,Africa +2024-10-04,17803,9266,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3239.92,{},69724,0,Europe +2024-08-01,17804,4965,"[""Tablet""]",2289.42,"{"""": ""25%""}",128171,0,Africa +2023-04-16,17805,8432,"[""Phone"", ""Monitor""]",3469.03,"{""promo"": ""23%""}",275793,1,Asia +2024-06-21,17806,9019,"[""Monitor"", ""Charger"", ""Laptop""]",848.65,{},86040,1,North America +2024-11-10,17807,8324,"[""Laptop"", ""Keyboard"", ""Headphones""]",1634.01,{},178764,0,Africa +2024-04-07,17808,2325,"[""Tablet"", ""Wireless Mouse""]",679.27,{},197467,0,North America +2024-07-15,17809,7982,"[""Phone"", ""Charger""]",2166.93,"{""loyalty"": ""16%""}",7832,0,North America +2023-08-08,17810,6156,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",366.23,"{"""": ""23%""}",14795,1,Europe +2023-11-27,17811,7955,"[""Charger""]",1224.08,{},107786,0,Europe +2023-08-09,17812,8108,"[""Wireless Mouse"", ""Keyboard""]",2330.73,{},245810,1,Asia +2023-08-19,17813,3121,"[""Phone"", ""Laptop"", ""Headphones""]",476.22,{},290028,0,Asia +2024-06-11,17814,7157,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2521.7,"{""seasonal"": ""21%""}",272174,0,North America +2023-07-26,17815,6852,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3501.87,"{""loyalty"": ""24%""}",65211,1,Asia +2023-09-24,17816,4708,"[""Tablet""]",1898.35,"{""loyalty"": ""27%""}",59478,0,South America +2024-01-16,17817,7932,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3798.11,"{""seasonal"": ""12%""}",119379,0,Asia +2024-10-02,17818,5346,"[""Monitor"", ""Laptop"", ""Headphones""]",641.36,"{""promo"": ""30%""}",45198,1,Asia +2024-12-07,17819,5235,"[""Wireless Mouse"", ""Laptop""]",2845.19,{},255422,1,Asia +2023-11-23,17820,7586,"[""Keyboard"", ""Laptop""]",2691.82,{},8413,0,Asia +2024-03-02,17821,3925,"[""Monitor"", ""Laptop"", ""Charger""]",3620.15,"{""loyalty"": ""22%""}",89922,0,Africa +2023-05-03,17822,8036,"[""Monitor"", ""Keyboard"", ""Charger""]",2923.96,{},254446,1,Asia +2023-11-28,17823,7649,"[""Tablet""]",56.14,"{""loyalty"": ""19%""}",42943,0,North America +2023-08-20,17824,9450,"[""Wireless Mouse"", ""Phone""]",780.01,"{""seasonal"": ""12%""}",218661,0,South America +2024-10-27,17825,1800,"[""Tablet""]",3908.8,"{""loyalty"": ""6%""}",151407,1,Africa +2024-08-03,17826,6058,"[""Keyboard""]",212.98,{},287106,0,South America +2023-01-13,17827,3581,"[""Charger"", ""Phone"", ""Wireless Mouse""]",161.15,"{""promo"": ""15%""}",289699,0,Africa +2024-02-02,17828,2512,"[""Wireless Mouse""]",2742.16,{},71984,1,South America +2024-10-25,17829,4362,"[""Phone"", ""Wireless Mouse""]",1118.81,{},64877,1,Africa +2024-05-28,17830,5070,"[""Wireless Mouse""]",949.27,"{""promo"": ""17%""}",280179,0,Africa +2024-05-11,17831,5690,"[""Charger"", ""Headphones"", ""Monitor""]",1610.35,"{""seasonal"": ""7%""}",177961,0,Europe +2024-10-27,17832,2756,"[""Wireless Mouse""]",1479.76,{},92082,1,Asia +2023-09-22,17833,1306,"[""Headphones""]",4941.9,{},145709,0,Europe +2024-08-20,17834,2514,"[""Keyboard"", ""Monitor""]",3108.06,{},89574,1,South America +2024-05-27,17835,7952,"[""Phone"", ""Laptop"", ""Monitor""]",2363.02,{},196025,0,Africa +2023-01-25,17836,1715,"[""Wireless Mouse""]",2610.32,"{""seasonal"": ""22%""}",260714,1,Asia +2023-07-31,17837,3746,"[""Monitor"", ""Charger""]",4769.81,"{""seasonal"": ""28%""}",66909,0,Asia +2024-04-01,17838,671,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3821.64,"{""promo"": ""21%""}",261046,1,Asia +2023-01-05,17839,3147,"[""Laptop"", ""Charger""]",2337.7,{},204064,0,Asia +2024-01-23,17840,6263,"[""Charger""]",3716.16,"{""promo"": ""21%""}",74687,1,North America +2023-02-03,17841,4232,"[""Monitor""]",1857.69,{},200593,0,Africa +2023-02-18,17842,7013,"[""Headphones""]",834.25,"{""loyalty"": ""28%""}",89847,0,Africa +2024-03-13,17843,2387,"[""Keyboard""]",2640.3,"{"""": ""9%""}",219001,0,South America +2024-10-04,17844,3177,"[""Laptop"", ""Headphones""]",3259.69,{},179449,1,Africa +2023-05-22,17845,779,"[""Phone"", ""Monitor""]",3411.67,"{""promo"": ""6%""}",101758,0,Europe +2023-04-17,17846,7387,"[""Phone"", ""Laptop""]",3887.1,"{""seasonal"": ""10%""}",86127,0,North America +2023-04-12,17847,6536,"[""Phone""]",498.82,{},43237,0,Europe +2023-08-31,17848,7106,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2493.82,{},70652,0,Asia +2024-06-26,17849,2060,"[""Monitor""]",3797.43,{},246299,1,Africa +2023-03-24,17850,8109,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4557.14,{},216142,0,Europe +2023-09-10,17851,3688,"[""Wireless Mouse"", ""Phone""]",619.13,{},118674,0,Asia +2024-06-26,17852,4304,"[""Monitor"", ""Keyboard""]",972.71,{},98414,1,North America +2024-10-31,17853,3992,"[""Phone"", ""Monitor""]",4395.09,"{""promo"": ""19%""}",112070,1,North America +2023-05-25,17854,4751,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4866.35,"{"""": ""22%""}",286406,1,South America +2023-08-22,17855,4005,"[""Charger"", ""Monitor""]",2756.08,"{"""": ""20%""}",32572,0,Asia +2024-08-11,17856,1095,"[""Wireless Mouse"", ""Phone""]",1270.54,{},90985,0,Asia +2023-02-05,17857,8085,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3762.73,"{""loyalty"": ""6%""}",3607,0,Europe +2024-01-25,17858,5513,"[""Charger"", ""Tablet"", ""Monitor""]",3500.25,{},272845,1,Africa +2023-12-30,17859,9590,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3377.71,{},253829,0,North America +2023-08-28,17860,9403,"[""Keyboard"", ""Laptop""]",3139.87,{},179731,1,Europe +2024-01-02,17861,2464,"[""Keyboard""]",481.39,"{""seasonal"": ""6%""}",157766,1,Africa +2023-09-27,17862,4619,"[""Charger""]",3127.25,"{"""": ""17%""}",73357,0,Asia +2024-05-02,17863,5207,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2282.37,"{""loyalty"": ""11%""}",116592,0,Europe +2023-04-10,17864,3741,"[""Laptop"", ""Wireless Mouse""]",4193.77,"{""seasonal"": ""14%""}",154315,0,South America +2023-05-03,17865,5298,"[""Headphones"", ""Charger"", ""Phone""]",2202.79,"{""seasonal"": ""5%""}",156524,0,South America +2024-01-05,17866,6154,"[""Headphones"", ""Tablet""]",3200.37,{},202901,1,South America +2023-07-31,17867,2501,"[""Laptop"", ""Charger"", ""Phone""]",4052.96,{},76226,1,North America +2024-02-26,17868,3376,"[""Tablet"", ""Headphones""]",4579.77,"{"""": ""5%""}",174887,1,South America +2023-01-17,17869,2264,"[""Charger"", ""Wireless Mouse""]",3181.57,"{""promo"": ""23%""}",186731,1,Africa +2023-12-04,17870,3905,"[""Headphones"", ""Keyboard""]",4923.5,{},167087,1,North America +2024-03-03,17871,4872,"[""Laptop""]",4450.7,{},88131,0,Africa +2024-06-30,17872,3979,"[""Charger"", ""Monitor""]",2387.42,"{""loyalty"": ""20%""}",225139,0,Europe +2024-07-03,17873,8026,"[""Phone"", ""Tablet""]",3247.89,{},21943,0,South America +2023-03-05,17874,8203,"[""Headphones""]",1611.0,{},12474,0,Africa +2023-04-05,17875,5442,"[""Tablet"", ""Keyboard""]",2395.09,{},166840,0,Asia +2024-04-18,17876,1786,"[""Keyboard"", ""Charger""]",1147.0,{},143421,0,Europe +2024-01-23,17877,2545,"[""Wireless Mouse"", ""Phone""]",1620.51,{},151950,0,Europe +2024-10-18,17878,9744,"[""Headphones"", ""Charger"", ""Keyboard""]",3773.44,"{""loyalty"": ""17%""}",128949,0,South America +2023-07-25,17879,1550,"[""Headphones"", ""Laptop""]",3247.63,"{""seasonal"": ""17%""}",13948,0,Europe +2023-12-08,17880,1306,"[""Phone""]",2121.62,"{""loyalty"": ""7%""}",291147,0,North America +2023-09-14,17881,8371,"[""Tablet"", ""Charger""]",3979.84,"{""loyalty"": ""8%""}",202833,1,North America +2023-08-30,17882,1233,"[""Keyboard""]",4794.16,{},192105,1,North America +2023-07-22,17883,6435,"[""Phone"", ""Laptop"", ""Keyboard""]",3431.64,"{""loyalty"": ""11%""}",270969,1,Africa +2023-06-12,17884,7790,"[""Laptop"", ""Phone""]",1410.06,{},32071,0,Africa +2023-05-06,17885,6567,"[""Tablet"", ""Wireless Mouse""]",637.33,"{"""": ""12%""}",129816,1,South America +2023-03-22,17886,798,"[""Keyboard"", ""Headphones""]",2723.11,"{"""": ""29%""}",49950,0,Africa +2023-06-21,17887,9157,"[""Headphones"", ""Monitor""]",2042.77,"{""loyalty"": ""18%""}",231550,0,North America +2024-02-09,17888,5704,"[""Charger""]",4731.78,{},273754,1,South America +2023-01-07,17889,3483,"[""Charger"", ""Headphones""]",922.28,"{""promo"": ""14%""}",234258,1,Asia +2024-03-21,17890,6845,"[""Keyboard"", ""Tablet""]",3236.64,"{""seasonal"": ""17%""}",207215,1,South America +2023-10-01,17891,8396,"[""Wireless Mouse"", ""Tablet""]",2151.88,{},29381,1,Europe +2024-08-16,17892,4625,"[""Wireless Mouse"", ""Laptop""]",3125.23,"{""loyalty"": ""25%""}",48403,1,Africa +2023-04-29,17893,4282,"[""Charger""]",928.4,{},244071,0,Africa +2023-04-18,17894,9646,"[""Headphones""]",3940.78,{},124100,0,South America +2024-02-14,17895,1331,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",411.33,{},176355,0,Africa +2023-08-15,17896,8392,"[""Phone""]",894.36,"{""loyalty"": ""8%""}",200379,0,South America +2023-09-22,17897,4706,"[""Headphones"", ""Laptop"", ""Tablet""]",127.84,"{""seasonal"": ""12%""}",191881,1,South America +2023-06-11,17898,3829,"[""Keyboard"", ""Monitor""]",2875.19,"{""promo"": ""14%""}",34347,0,Europe +2024-10-20,17899,6645,"[""Keyboard""]",3282.18,"{""promo"": ""24%""}",134302,0,South America +2023-08-08,17900,3656,"[""Phone"", ""Charger""]",4432.38,{},187128,0,Europe +2024-03-23,17901,7448,"[""Wireless Mouse"", ""Monitor""]",3258.51,"{""loyalty"": ""8%""}",79018,1,Asia +2023-03-24,17902,2696,"[""Laptop"", ""Wireless Mouse""]",4242.56,"{""loyalty"": ""25%""}",127731,0,Asia +2024-06-04,17903,7624,"[""Wireless Mouse""]",61.72,{},89207,1,South America +2023-11-09,17904,6194,"[""Tablet""]",2102.05,{},299534,1,South America +2023-10-12,17905,7784,"[""Headphones""]",2001.32,"{"""": ""18%""}",236585,0,North America +2023-11-08,17906,4636,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4343.54,"{""promo"": ""16%""}",8644,0,North America +2023-06-30,17907,1751,"[""Charger""]",3268.78,"{""seasonal"": ""9%""}",71039,1,Asia +2023-01-14,17908,2386,"[""Monitor"", ""Keyboard"", ""Phone""]",3878.79,"{""loyalty"": ""27%""}",188917,0,Europe +2023-04-27,17909,5137,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4149.97,{},200391,1,Asia +2024-06-22,17910,3285,"[""Headphones"", ""Laptop"", ""Tablet""]",259.27,"{""loyalty"": ""10%""}",223647,0,Asia +2023-09-13,17911,2353,"[""Wireless Mouse""]",4822.36,"{""promo"": ""7%""}",136614,1,Africa +2023-11-03,17912,2129,"[""Charger"", ""Monitor"", ""Phone""]",2804.11,{},234661,0,Africa +2024-01-20,17913,582,"[""Headphones""]",3566.61,{},143887,0,Africa +2023-12-24,17914,258,"[""Keyboard""]",2642.16,{},273646,1,Africa +2023-05-15,17915,2344,"[""Monitor""]",1930.97,{},253011,0,Asia +2024-12-22,17916,621,"[""Charger"", ""Headphones""]",407.79,{},220586,1,North America +2023-11-11,17917,4390,"[""Headphones""]",381.52,{},238794,0,Asia +2023-12-21,17918,6405,"[""Headphones"", ""Keyboard""]",2988.7,{},91128,0,South America +2024-04-06,17919,5367,"[""Keyboard""]",1859.77,"{""seasonal"": ""13%""}",32025,1,South America +2023-07-23,17920,7238,"[""Wireless Mouse""]",1547.27,"{""promo"": ""13%""}",276223,1,Europe +2023-07-09,17921,295,"[""Charger"", ""Laptop"", ""Tablet""]",4847.36,"{"""": ""30%""}",248466,0,North America +2024-10-15,17922,7713,"[""Keyboard""]",3809.06,"{""loyalty"": ""30%""}",196448,0,North America +2024-10-14,17923,7796,"[""Headphones""]",658.48,{},149786,1,Europe +2024-03-03,17924,6300,"[""Laptop"", ""Phone"", ""Headphones""]",1373.4,"{"""": ""18%""}",145322,0,Europe +2024-01-01,17925,6910,"[""Wireless Mouse"", ""Tablet""]",1108.8,{},81822,0,South America +2023-04-21,17926,1467,"[""Headphones"", ""Monitor""]",4171.55,{},193744,1,Africa +2024-04-18,17927,3489,"[""Charger"", ""Keyboard"", ""Laptop""]",3327.96,"{""seasonal"": ""18%""}",86932,1,North America +2024-12-26,17928,5570,"[""Charger"", ""Monitor""]",3436.8,"{"""": ""22%""}",138625,0,Europe +2023-12-27,17929,3331,"[""Wireless Mouse"", ""Phone""]",2836.13,{},181276,0,Europe +2024-11-28,17930,8385,"[""Laptop""]",2418.09,{},265248,0,Africa +2024-08-08,17931,7334,"[""Laptop""]",4001.05,{},34481,1,Africa +2024-10-05,17932,130,"[""Headphones"", ""Wireless Mouse""]",2768.26,{},116012,0,Europe +2023-12-22,17933,3598,"[""Laptop"", ""Charger""]",2278.05,{},221630,0,South America +2023-03-26,17934,9545,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2413.52,{},34342,1,Asia +2024-03-11,17935,8277,"[""Charger""]",4390.3,{},97049,0,North America +2023-07-01,17936,7510,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1082.22,"{""loyalty"": ""24%""}",14662,0,Africa +2023-12-17,17937,885,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",268.59,{},222780,1,Europe +2024-03-15,17938,1090,"[""Tablet""]",4942.75,"{""promo"": ""27%""}",203723,0,North America +2023-04-16,17939,879,"[""Keyboard""]",4767.93,{},167937,0,North America +2024-03-12,17940,1262,"[""Monitor"", ""Charger"", ""Tablet""]",1107.58,"{"""": ""20%""}",268710,1,South America +2024-03-05,17941,3995,"[""Monitor""]",2721.96,{},168288,1,North America +2024-05-09,17942,6244,"[""Tablet"", ""Laptop"", ""Keyboard""]",1162.73,"{""promo"": ""25%""}",16566,1,North America +2023-02-18,17943,8808,"[""Headphones""]",1277.03,"{"""": ""19%""}",181286,1,Africa +2023-02-01,17944,4680,"[""Tablet"", ""Laptop"", ""Charger""]",2315.04,"{"""": ""27%""}",157322,0,Europe +2023-08-13,17945,6415,"[""Headphones""]",4586.85,{},63552,1,Asia +2023-11-24,17946,997,"[""Charger""]",3254.35,"{""loyalty"": ""8%""}",132815,1,Africa +2023-07-28,17947,6021,"[""Headphones"", ""Phone""]",245.13,"{""loyalty"": ""8%""}",187850,1,Africa +2024-10-24,17948,2866,"[""Wireless Mouse""]",3936.11,{},237195,1,Europe +2024-06-28,17949,7239,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4859.92,"{""promo"": ""9%""}",163714,0,Asia +2024-10-24,17950,2757,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2048.0,"{""seasonal"": ""18%""}",151012,0,Asia +2023-10-13,17951,790,"[""Headphones"", ""Laptop""]",4373.7,"{"""": ""23%""}",131164,1,Europe +2024-09-28,17952,2560,"[""Charger"", ""Keyboard"", ""Monitor""]",3270.92,{},131536,0,South America +2023-05-24,17953,9534,"[""Headphones"", ""Charger"", ""Phone""]",3487.93,{},163381,1,North America +2024-12-22,17954,2120,"[""Keyboard"", ""Tablet""]",1032.65,"{"""": ""27%""}",172096,1,Europe +2024-08-14,17955,268,"[""Laptop"", ""Charger""]",3267.75,"{""seasonal"": ""18%""}",126891,0,South America +2023-01-12,17956,3578,"[""Phone""]",1095.69,{},85867,1,Africa +2024-08-16,17957,9376,"[""Charger"", ""Keyboard""]",3502.91,{},168828,0,Asia +2023-12-21,17958,3484,"[""Wireless Mouse""]",1679.54,"{""promo"": ""11%""}",7619,1,Africa +2024-05-22,17959,2691,"[""Charger"", ""Monitor"", ""Headphones""]",110.29,{},221439,1,Asia +2023-08-16,17960,7393,"[""Tablet""]",3057.39,"{"""": ""12%""}",252264,0,Africa +2023-06-12,17961,7831,"[""Phone""]",4368.93,"{"""": ""19%""}",19288,1,Asia +2023-04-21,17962,6394,"[""Phone"", ""Headphones"", ""Monitor""]",3698.04,{},269922,1,North America +2023-02-07,17963,8391,"[""Tablet"", ""Headphones""]",3817.43,"{"""": ""9%""}",214778,1,Africa +2023-03-01,17964,4237,"[""Headphones"", ""Wireless Mouse""]",4463.22,{},123939,0,North America +2024-05-18,17965,5314,"[""Keyboard"", ""Headphones"", ""Tablet""]",2395.54,"{"""": ""13%""}",275818,0,Europe +2023-06-28,17966,3654,"[""Laptop""]",457.06,"{"""": ""14%""}",147940,0,Africa +2024-08-09,17967,5217,"[""Keyboard"", ""Laptop"", ""Charger""]",4141.21,"{""loyalty"": ""5%""}",5372,0,North America +2023-08-08,17968,3174,"[""Charger"", ""Phone"", ""Monitor""]",2772.53,{},95633,0,Africa +2023-10-04,17969,2514,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1672.39,{},181089,1,North America +2023-03-19,17970,4299,"[""Monitor"", ""Tablet""]",4142.78,"{""promo"": ""22%""}",177137,0,North America +2023-03-10,17971,6948,"[""Keyboard"", ""Laptop""]",3409.14,{},65253,0,Asia +2023-09-04,17972,7631,"[""Laptop"", ""Phone"", ""Tablet""]",2453.52,"{""loyalty"": ""9%""}",239829,1,North America +2024-04-18,17973,6671,"[""Laptop"", ""Tablet"", ""Monitor""]",2043.27,{},229347,1,Europe +2024-03-18,17974,9844,"[""Laptop"", ""Headphones""]",443.83,"{""seasonal"": ""17%""}",258739,1,Africa +2024-10-12,17975,1440,"[""Wireless Mouse"", ""Monitor""]",3620.83,{},178421,1,Europe +2024-02-08,17976,1220,"[""Phone""]",2113.25,{},220406,0,Asia +2023-02-23,17977,4063,"[""Keyboard""]",675.43,{},130602,1,South America +2023-07-02,17978,7635,"[""Keyboard""]",2085.9,{},296440,1,North America +2023-06-05,17979,5362,"[""Monitor""]",2730.74,"{""loyalty"": ""29%""}",8668,0,North America +2024-05-30,17980,1861,"[""Monitor""]",2391.01,"{""promo"": ""29%""}",92346,1,Asia +2024-10-17,17981,5981,"[""Headphones"", ""Tablet""]",143.54,{},290742,1,Asia +2024-06-06,17982,3145,"[""Headphones"", ""Tablet"", ""Monitor""]",1556.64,"{"""": ""24%""}",152923,0,Europe +2023-09-27,17983,9865,"[""Laptop""]",1143.26,{},164539,1,Europe +2023-11-26,17984,8052,"[""Keyboard""]",4262.22,"{"""": ""7%""}",268813,0,Europe +2023-02-11,17985,2133,"[""Tablet""]",1997.41,{},201292,0,Asia +2023-06-19,17986,2859,"[""Phone""]",3877.74,{},171703,1,Africa +2024-10-08,17987,6400,"[""Wireless Mouse""]",2650.66,{},114622,0,Asia +2024-02-04,17988,4162,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1332.68,"{""promo"": ""26%""}",151969,1,North America +2024-11-17,17989,8552,"[""Monitor"", ""Laptop""]",1778.44,{},260638,0,North America +2023-10-11,17990,6637,"[""Monitor"", ""Phone""]",2211.94,{},156505,0,Europe +2024-05-19,17991,9352,"[""Phone"", ""Charger""]",177.07,{},120491,0,South America +2024-07-29,17992,9944,"[""Tablet""]",4035.11,{},294885,1,Asia +2023-06-11,17993,4056,"[""Charger"", ""Wireless Mouse""]",1473.01,"{""seasonal"": ""11%""}",263331,0,Africa +2023-06-13,17994,4050,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4003.12,"{""promo"": ""9%""}",19449,1,South America +2024-03-05,17995,6467,"[""Wireless Mouse""]",2394.91,{},117386,0,Europe +2023-05-12,17996,930,"[""Tablet"", ""Monitor""]",1960.42,"{""seasonal"": ""8%""}",260401,1,North America +2024-08-11,17997,2509,"[""Laptop"", ""Phone""]",1684.19,{},166668,1,Africa +2024-02-12,17998,9703,"[""Tablet"", ""Laptop""]",1154.39,"{""loyalty"": ""15%""}",242392,0,Europe +2024-06-23,17999,5308,"[""Phone""]",1458.96,{},76452,0,South America +2023-12-06,18000,6114,"[""Monitor""]",4987.55,"{""loyalty"": ""17%""}",182455,0,North America +2023-05-25,18001,5314,"[""Keyboard"", ""Tablet""]",2336.66,"{""seasonal"": ""30%""}",294497,0,Europe +2023-07-12,18002,5317,"[""Phone"", ""Laptop"", ""Charger""]",4659.53,"{""seasonal"": ""5%""}",16563,1,Europe +2023-12-18,18003,2995,"[""Monitor"", ""Keyboard"", ""Charger""]",1565.48,{},228014,0,Asia +2024-07-06,18004,73,"[""Monitor"", ""Phone""]",2840.66,"{""seasonal"": ""13%""}",248617,0,Africa +2023-10-13,18005,4550,"[""Tablet""]",63.3,{},242505,1,Asia +2024-10-12,18006,4574,"[""Charger""]",2260.61,"{""promo"": ""8%""}",216088,1,Europe +2024-05-07,18007,4469,"[""Keyboard"", ""Tablet"", ""Charger""]",4955.09,"{""seasonal"": ""29%""}",198608,0,Asia +2024-10-02,18008,3576,"[""Charger""]",2237.95,"{""seasonal"": ""10%""}",76912,0,South America +2024-11-12,18009,5822,"[""Monitor""]",968.38,"{""promo"": ""12%""}",183742,1,South America +2024-12-18,18010,1725,"[""Tablet""]",2060.56,{},246310,0,North America +2024-03-29,18011,6037,"[""Tablet"", ""Monitor""]",2885.21,{},143590,1,North America +2023-06-05,18012,6445,"[""Keyboard"", ""Monitor""]",2086.93,{},192644,1,Africa +2023-06-13,18013,4069,"[""Monitor""]",2370.83,{},285816,1,Asia +2023-02-22,18014,617,"[""Tablet""]",4970.3,{},22644,1,Europe +2023-02-21,18015,5516,"[""Phone"", ""Monitor"", ""Laptop""]",3697.78,"{""promo"": ""7%""}",242799,0,North America +2024-11-16,18016,7,"[""Charger""]",3013.3,"{""promo"": ""15%""}",296843,0,Africa +2024-01-12,18017,7821,"[""Headphones"", ""Phone""]",3103.43,"{""seasonal"": ""17%""}",179248,0,North America +2024-01-05,18018,297,"[""Charger""]",2715.23,"{"""": ""10%""}",125602,1,North America +2023-03-16,18019,1220,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",237.65,"{"""": ""9%""}",290490,0,Africa +2023-03-19,18020,7567,"[""Monitor"", ""Tablet""]",2014.48,{},39466,1,Africa +2023-11-27,18021,4099,"[""Wireless Mouse"", ""Laptop""]",4496.02,"{"""": ""11%""}",100562,0,Africa +2023-08-24,18022,9378,"[""Headphones"", ""Laptop""]",3697.45,"{"""": ""19%""}",220491,1,Africa +2023-01-17,18023,6136,"[""Headphones"", ""Phone""]",4250.3,"{""loyalty"": ""21%""}",4299,0,Asia +2023-11-29,18024,3727,"[""Laptop""]",3766.75,{},32073,0,Europe +2023-12-16,18025,5571,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4266.34,"{""promo"": ""6%""}",39853,0,South America +2024-04-28,18026,9427,"[""Monitor"", ""Headphones""]",3172.24,"{""seasonal"": ""17%""}",110680,0,Europe +2024-03-28,18027,1153,"[""Monitor""]",2167.43,"{"""": ""12%""}",109569,0,South America +2024-08-07,18028,2862,"[""Tablet""]",1878.91,"{""promo"": ""11%""}",86333,0,North America +2024-06-24,18029,9116,"[""Phone""]",1245.67,{},61586,1,Africa +2023-02-07,18030,2587,"[""Charger""]",3003.58,"{""promo"": ""13%""}",72840,1,North America +2024-09-22,18031,3677,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4358.15,{},264775,1,Africa +2023-04-23,18032,8497,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1583.71,{},31448,0,Europe +2024-04-29,18033,4831,"[""Tablet""]",2445.99,"{""loyalty"": ""12%""}",221774,1,Africa +2023-07-03,18034,202,"[""Headphones"", ""Laptop""]",4391.87,"{""loyalty"": ""30%""}",168385,0,North America +2024-01-04,18035,6393,"[""Monitor""]",3042.12,{},5972,0,North America +2023-08-08,18036,2393,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3345.49,{},244472,1,Asia +2023-03-21,18037,3993,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2056.68,{},111164,0,Africa +2024-08-27,18038,4926,"[""Monitor"", ""Laptop"", ""Tablet""]",4124.83,{},203330,0,South America +2024-05-13,18039,1408,"[""Keyboard"", ""Laptop""]",3525.06,"{""promo"": ""29%""}",36746,0,Europe +2024-01-26,18040,6008,"[""Headphones"", ""Tablet""]",4498.02,{},149659,0,Europe +2023-11-24,18041,4518,"[""Wireless Mouse""]",511.62,{},285710,0,North America +2023-05-29,18042,9706,"[""Laptop""]",149.85,"{""promo"": ""29%""}",153823,1,North America +2023-04-08,18043,6079,"[""Wireless Mouse""]",3534.33,"{"""": ""24%""}",33701,0,Europe +2023-05-15,18044,1848,"[""Tablet"", ""Headphones""]",2498.41,"{""promo"": ""28%""}",178938,0,South America +2024-09-12,18045,5621,"[""Wireless Mouse"", ""Headphones""]",94.43,{},74985,1,Asia +2024-05-02,18046,1746,"[""Headphones"", ""Monitor""]",803.0,"{""seasonal"": ""13%""}",261854,0,Asia +2024-01-25,18047,9624,"[""Wireless Mouse""]",4574.66,{},17801,0,North America +2024-09-17,18048,7727,"[""Phone""]",1912.06,"{"""": ""7%""}",282046,0,Asia +2024-02-25,18049,1345,"[""Charger""]",3612.45,{},48171,1,Africa +2024-08-13,18050,9984,"[""Keyboard""]",4091.43,"{""seasonal"": ""5%""}",272359,0,Asia +2024-04-22,18051,393,"[""Monitor"", ""Tablet""]",4024.06,{},266550,0,South America +2024-04-09,18052,1216,"[""Wireless Mouse"", ""Charger""]",4932.67,{},36744,0,North America +2024-09-14,18053,3583,"[""Phone"", ""Headphones"", ""Tablet""]",442.57,{},295371,0,North America +2024-04-07,18054,8414,"[""Phone"", ""Laptop"", ""Monitor""]",4635.03,{},241968,0,North America +2023-09-17,18055,6032,"[""Laptop""]",1069.31,{},85942,0,South America +2023-10-14,18056,1972,"[""Headphones""]",1310.91,{},107431,1,South America +2023-01-14,18057,9199,"[""Headphones""]",3371.26,"{""seasonal"": ""15%""}",266658,1,Europe +2024-04-14,18058,5994,"[""Keyboard"", ""Headphones""]",2308.29,{},34958,1,Europe +2024-02-25,18059,9234,"[""Phone"", ""Laptop"", ""Monitor""]",4553.1,"{""loyalty"": ""20%""}",3429,1,Africa +2024-09-18,18060,2865,"[""Keyboard""]",3065.85,{},5171,0,North America +2023-07-23,18061,6956,"[""Monitor"", ""Tablet"", ""Keyboard""]",4702.01,{},54017,1,Europe +2023-12-20,18062,9386,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2069.88,{},69497,0,Africa +2024-04-10,18063,4936,"[""Keyboard"", ""Charger""]",2084.19,"{""loyalty"": ""25%""}",116686,1,Africa +2024-04-01,18064,4342,"[""Headphones"", ""Keyboard"", ""Phone""]",4266.4,{},158170,0,North America +2024-05-15,18065,1670,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",233.28,"{"""": ""11%""}",230830,0,Europe +2024-08-11,18066,8754,"[""Monitor""]",2569.86,{},219084,0,North America +2023-02-13,18067,4244,"[""Wireless Mouse""]",3048.19,"{""promo"": ""19%""}",40958,0,Europe +2024-10-17,18068,2843,"[""Headphones"", ""Charger""]",735.35,{},168622,1,Africa +2024-10-27,18069,913,"[""Laptop""]",4731.53,{},250672,0,North America +2024-09-14,18070,3744,"[""Monitor"", ""Phone""]",4447.7,"{""seasonal"": ""13%""}",17852,1,Asia +2023-01-24,18071,238,"[""Charger""]",1338.27,"{""seasonal"": ""30%""}",160321,0,Europe +2024-07-26,18072,3005,"[""Tablet""]",3616.77,{},289710,1,South America +2024-09-23,18073,1977,"[""Headphones""]",3160.41,{},121896,0,North America +2023-11-17,18074,7561,"[""Phone"", ""Keyboard"", ""Laptop""]",2621.17,{},135411,0,Europe +2023-10-30,18075,436,"[""Monitor""]",759.6,"{"""": ""30%""}",229422,1,Asia +2024-10-08,18076,6637,"[""Monitor"", ""Tablet""]",374.76,{},238864,1,Asia +2024-01-27,18077,3434,"[""Monitor"", ""Charger""]",1834.4,{},118948,1,Africa +2023-05-30,18078,2753,"[""Charger""]",431.62,"{"""": ""13%""}",227593,0,South America +2023-06-20,18079,2900,"[""Keyboard""]",1931.22,{},249657,1,North America +2024-08-25,18080,5202,"[""Phone""]",937.54,{},146231,0,North America +2023-07-22,18081,3971,"[""Laptop""]",989.53,{},288226,0,Asia +2024-03-26,18082,1741,"[""Headphones"", ""Laptop""]",3123.33,{},35056,0,South America +2023-05-10,18083,5376,"[""Headphones""]",4017.97,"{""loyalty"": ""10%""}",32268,1,Asia +2023-01-27,18084,9581,"[""Tablet"", ""Headphones"", ""Laptop""]",252.21,"{""loyalty"": ""11%""}",281497,1,South America +2024-01-03,18085,7921,"[""Keyboard""]",1404.85,"{"""": ""23%""}",145550,0,Europe +2024-07-13,18086,1653,"[""Wireless Mouse""]",1097.0,{},151106,1,Europe +2023-06-02,18087,8946,"[""Keyboard"", ""Charger""]",1399.61,"{""loyalty"": ""9%""}",72147,0,Africa +2024-02-29,18088,4093,"[""Tablet""]",2412.36,"{""loyalty"": ""23%""}",255866,1,North America +2024-04-25,18089,4719,"[""Wireless Mouse""]",1561.32,"{""loyalty"": ""17%""}",215380,1,Europe +2023-09-03,18090,4893,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",541.25,"{"""": ""15%""}",50638,1,South America +2024-09-19,18091,6836,"[""Tablet"", ""Headphones""]",2085.5,{},159239,0,Asia +2023-06-07,18092,6792,"[""Keyboard"", ""Phone""]",2390.28,"{"""": ""16%""}",72645,1,Asia +2023-04-29,18093,6975,"[""Charger""]",2496.24,{},97997,0,Asia +2024-04-12,18094,7751,"[""Phone"", ""Keyboard""]",3388.13,{},165116,1,Europe +2023-06-06,18095,2688,"[""Tablet""]",927.99,"{""loyalty"": ""14%""}",133569,0,South America +2024-08-31,18096,8296,"[""Wireless Mouse"", ""Tablet""]",531.96,{},96581,0,North America +2024-11-05,18097,3801,"[""Headphones"", ""Laptop"", ""Tablet""]",459.71,"{"""": ""16%""}",266520,0,Europe +2024-10-06,18098,2315,"[""Tablet"", ""Monitor""]",790.81,{},99384,1,South America +2024-06-25,18099,7159,"[""Laptop"", ""Monitor"", ""Keyboard""]",2687.66,{},176475,1,Europe +2024-06-12,18100,5058,"[""Wireless Mouse"", ""Tablet""]",3922.58,{},50785,0,Asia +2024-03-05,18101,9572,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2684.27,{},74883,1,Asia +2023-04-28,18102,6767,"[""Charger"", ""Phone""]",2384.37,"{""promo"": ""27%""}",158959,0,Europe +2024-05-05,18103,8417,"[""Laptop"", ""Headphones"", ""Keyboard""]",3714.37,"{"""": ""15%""}",5077,1,Asia +2023-01-31,18104,3071,"[""Laptop"", ""Tablet"", ""Charger""]",1807.86,{},261971,1,South America +2024-01-25,18105,3282,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4588.5,{},247865,0,Asia +2023-09-08,18106,1180,"[""Tablet""]",526.05,"{"""": ""17%""}",244574,1,Asia +2023-03-18,18107,2336,"[""Charger"", ""Tablet"", ""Keyboard""]",4597.7,{},279024,1,North America +2023-11-19,18108,463,"[""Wireless Mouse""]",2244.21,{},212984,1,South America +2023-04-20,18109,4918,"[""Wireless Mouse""]",4842.66,{},39204,1,South America +2024-02-25,18110,9085,"[""Charger""]",4751.05,"{""loyalty"": ""16%""}",50230,0,Europe +2024-10-12,18111,3140,"[""Phone""]",2729.27,"{""loyalty"": ""19%""}",101928,1,North America +2024-02-13,18112,7592,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3694.61,{},76609,1,Europe +2024-09-11,18113,404,"[""Charger"", ""Keyboard""]",1612.77,{},16101,1,North America +2023-07-05,18114,2587,"[""Charger""]",161.71,{},290689,0,Asia +2023-12-17,18115,3432,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2392.04,{},153068,1,Africa +2023-04-12,18116,6980,"[""Charger""]",115.87,{},148357,1,Asia +2023-04-01,18117,1274,"[""Keyboard"", ""Charger""]",3084.09,"{"""": ""7%""}",101367,0,Asia +2023-09-11,18118,4525,"[""Charger"", ""Laptop""]",4361.92,"{"""": ""8%""}",130658,0,South America +2024-09-08,18119,2755,"[""Monitor"", ""Phone""]",1276.84,{},42297,1,South America +2024-10-17,18120,2391,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3473.82,"{""loyalty"": ""20%""}",161754,1,Europe +2023-12-30,18121,7705,"[""Monitor""]",1417.02,{},14370,1,North America +2023-06-04,18122,9790,"[""Phone""]",4704.48,{},59044,1,Europe +2023-09-12,18123,8220,"[""Wireless Mouse"", ""Phone""]",3534.39,{},140696,1,North America +2023-06-12,18124,3615,"[""Charger""]",1423.58,"{""seasonal"": ""30%""}",142883,1,Asia +2023-09-14,18125,6804,"[""Monitor"", ""Tablet""]",1598.17,{},175438,0,Europe +2023-05-31,18126,8640,"[""Laptop""]",271.29,"{""seasonal"": ""19%""}",18787,1,North America +2023-05-27,18127,7240,"[""Phone""]",671.05,{},164249,0,Europe +2024-07-24,18128,7518,"[""Headphones""]",980.18,"{""seasonal"": ""29%""}",257504,0,Asia +2024-05-13,18129,8557,"[""Laptop"", ""Headphones""]",4550.5,{},103101,1,Asia +2023-03-25,18130,6258,"[""Monitor"", ""Headphones"", ""Charger""]",3321.7,{},63132,1,Africa +2023-05-08,18131,1202,"[""Charger""]",2227.17,"{""loyalty"": ""19%""}",68203,1,Asia +2023-05-30,18132,3625,"[""Keyboard"", ""Headphones"", ""Tablet""]",4352.19,"{""seasonal"": ""30%""}",59348,0,North America +2024-10-29,18133,4037,"[""Headphones"", ""Wireless Mouse""]",1846.26,"{""seasonal"": ""25%""}",200888,1,Asia +2023-10-23,18134,1899,"[""Headphones""]",442.9,"{"""": ""15%""}",104827,0,Asia +2023-07-25,18135,5544,"[""Wireless Mouse""]",3303.07,"{""seasonal"": ""26%""}",215402,0,Asia +2024-09-24,18136,1577,"[""Phone""]",469.35,"{"""": ""24%""}",294603,0,Africa +2024-06-12,18137,7031,"[""Phone"", ""Charger"", ""Laptop""]",304.31,{},119038,1,North America +2023-10-04,18138,5167,"[""Phone""]",2877.68,{},22798,1,Asia +2023-11-16,18139,3858,"[""Phone"", ""Monitor""]",4998.72,"{""loyalty"": ""15%""}",187954,1,Asia +2024-07-07,18140,5702,"[""Wireless Mouse"", ""Headphones""]",1759.36,{},107807,1,Europe +2023-04-10,18141,3877,"[""Keyboard"", ""Charger""]",955.46,{},111409,0,South America +2024-08-11,18142,3219,"[""Keyboard"", ""Laptop""]",4846.43,{},223743,0,South America +2024-01-07,18143,6069,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2090.92,"{"""": ""15%""}",136614,0,North America +2023-04-24,18144,7265,"[""Laptop""]",1122.89,{},58687,1,South America +2023-02-02,18145,4038,"[""Laptop""]",577.33,{},48974,1,Europe +2024-08-09,18146,9294,"[""Tablet""]",2318.41,"{""loyalty"": ""28%""}",120505,1,Europe +2024-07-12,18147,6060,"[""Phone"", ""Monitor"", ""Charger""]",885.03,"{""seasonal"": ""12%""}",8722,1,South America +2023-10-26,18148,4115,"[""Headphones"", ""Wireless Mouse""]",4472.58,"{"""": ""28%""}",36251,1,Africa +2023-12-31,18149,6112,"[""Charger""]",1437.08,"{""promo"": ""16%""}",13173,1,Europe +2024-01-15,18150,4376,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3048.94,"{""loyalty"": ""16%""}",76369,0,Europe +2023-07-19,18151,3730,"[""Wireless Mouse""]",1376.82,{},121982,1,North America +2023-12-17,18152,5856,"[""Tablet""]",2080.54,{},132451,1,Europe +2024-09-20,18153,7221,"[""Laptop""]",1737.09,"{""seasonal"": ""10%""}",192044,1,Africa +2024-07-30,18154,395,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",243.28,"{""seasonal"": ""19%""}",56814,1,Europe +2023-03-12,18155,210,"[""Keyboard"", ""Phone"", ""Charger""]",64.56,{},19732,0,South America +2024-08-11,18156,7016,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4114.37,{},251540,0,Europe +2024-10-18,18157,8595,"[""Headphones""]",875.9,{},164649,1,Asia +2024-08-01,18158,8518,"[""Phone""]",2952.43,{},44641,1,North America +2024-05-24,18159,5111,"[""Phone"", ""Laptop""]",4954.81,{},56555,1,Asia +2024-03-05,18160,6848,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3547.29,"{"""": ""28%""}",48841,1,South America +2023-03-07,18161,2293,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3392.36,"{""promo"": ""17%""}",30687,1,Asia +2024-06-10,18162,5474,"[""Keyboard"", ""Tablet""]",2875.43,{},277910,1,Europe +2024-10-18,18163,9262,"[""Headphones"", ""Tablet""]",2706.39,{},163539,0,Europe +2024-11-25,18164,1040,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4217.37,{},35278,1,South America +2023-12-15,18165,9433,"[""Wireless Mouse""]",4202.43,{},61639,0,Africa +2023-12-15,18166,7356,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2299.84,{},163706,1,Africa +2023-05-10,18167,8194,"[""Phone"", ""Tablet"", ""Charger""]",3427.34,{},244069,1,South America +2024-01-12,18168,4783,"[""Tablet""]",4921.79,"{"""": ""9%""}",269706,1,Asia +2024-03-03,18169,2953,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3891.19,{},28485,1,Europe +2024-09-28,18170,434,"[""Wireless Mouse""]",4070.6,{},164687,1,South America +2024-03-13,18171,3275,"[""Headphones"", ""Phone"", ""Charger""]",3260.0,{},140941,1,North America +2024-01-21,18172,1904,"[""Monitor"", ""Headphones"", ""Phone""]",125.44,"{""loyalty"": ""29%""}",14868,0,Europe +2024-04-17,18173,5734,"[""Charger"", ""Laptop"", ""Tablet""]",3407.57,{},97532,1,Africa +2023-04-30,18174,38,"[""Keyboard"", ""Monitor""]",4138.63,{},53486,1,Asia +2023-12-16,18175,6707,"[""Monitor"", ""Phone"", ""Headphones""]",4387.23,{},143126,1,North America +2023-07-30,18176,9734,"[""Keyboard"", ""Laptop""]",2842.6,"{"""": ""19%""}",165242,0,Asia +2023-01-28,18177,4006,"[""Laptop"", ""Monitor""]",3139.7,"{""loyalty"": ""27%""}",197371,0,Europe +2023-08-18,18178,5301,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2015.18,"{""seasonal"": ""27%""}",7132,0,Europe +2024-11-25,18179,3919,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4613.59,"{""loyalty"": ""6%""}",11506,1,Africa +2024-05-29,18180,9439,"[""Monitor"", ""Charger""]",1198.01,{},74767,1,Europe +2024-11-03,18181,550,"[""Charger""]",2390.14,"{""seasonal"": ""30%""}",197210,0,Europe +2023-08-26,18182,1739,"[""Tablet""]",310.85,"{"""": ""14%""}",288053,0,Africa +2023-07-25,18183,65,"[""Keyboard"", ""Monitor""]",772.04,{},52634,0,Europe +2023-03-12,18184,3969,"[""Headphones"", ""Monitor"", ""Phone""]",4614.12,{},268551,0,Asia +2024-05-01,18185,1664,"[""Wireless Mouse""]",4794.33,{},51448,1,Africa +2023-11-18,18186,4985,"[""Monitor""]",3423.58,"{""seasonal"": ""23%""}",55750,1,South America +2024-09-12,18187,4412,"[""Laptop"", ""Wireless Mouse""]",2488.67,"{""loyalty"": ""11%""}",153332,0,Asia +2023-08-15,18188,5209,"[""Wireless Mouse""]",4208.5,"{"""": ""23%""}",206166,1,South America +2023-04-03,18189,9537,"[""Wireless Mouse"", ""Headphones""]",1887.48,"{""seasonal"": ""29%""}",95757,1,Asia +2023-08-13,18190,5596,"[""Laptop""]",3377.26,{},275216,1,Africa +2023-03-22,18191,6808,"[""Wireless Mouse""]",3170.18,{},225911,1,North America +2024-12-06,18192,929,"[""Charger"", ""Tablet""]",1437.68,{},148743,1,Africa +2024-10-31,18193,3455,"[""Keyboard""]",893.23,"{""promo"": ""6%""}",160498,1,South America +2023-06-10,18194,7346,"[""Headphones"", ""Charger"", ""Monitor""]",4669.57,"{""promo"": ""19%""}",30947,1,Asia +2023-01-20,18195,6573,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4393.97,"{""promo"": ""7%""}",235682,1,Europe +2023-06-04,18196,85,"[""Phone""]",1998.08,{},178169,1,South America +2024-09-03,18197,3563,"[""Laptop"", ""Tablet""]",4080.63,{},112499,0,Africa +2024-05-16,18198,2632,"[""Headphones""]",4893.76,{},40806,1,South America +2024-09-24,18199,9542,"[""Wireless Mouse""]",3431.11,{},299467,0,South America +2023-03-15,18200,2858,"[""Keyboard"", ""Monitor""]",4194.06,"{""loyalty"": ""14%""}",193437,1,North America +2023-09-10,18201,2638,"[""Keyboard"", ""Wireless Mouse""]",551.99,"{""seasonal"": ""9%""}",52685,0,Europe +2023-01-17,18202,157,"[""Wireless Mouse"", ""Phone""]",3238.54,"{"""": ""20%""}",128134,1,Africa +2024-08-28,18203,2686,"[""Monitor""]",635.37,{},187670,1,North America +2024-10-14,18204,1141,"[""Keyboard"", ""Phone""]",935.2,"{"""": ""6%""}",181149,1,Europe +2023-06-06,18205,5363,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1179.11,{},18092,0,South America +2024-08-01,18206,7855,"[""Phone""]",3881.2,"{""promo"": ""24%""}",18891,1,Africa +2024-12-21,18207,6035,"[""Laptop"", ""Charger""]",2606.46,"{""promo"": ""5%""}",108401,1,Europe +2024-01-04,18208,5196,"[""Keyboard""]",172.37,"{""seasonal"": ""13%""}",178857,1,Africa +2023-06-07,18209,3301,"[""Keyboard""]",2542.73,{},110086,0,Asia +2023-07-09,18210,2166,"[""Phone"", ""Tablet"", ""Charger""]",665.96,{},87393,1,South America +2024-05-26,18211,3496,"[""Laptop""]",4742.61,"{"""": ""18%""}",61872,0,Asia +2024-11-01,18212,6533,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4973.86,{},231898,1,South America +2023-12-28,18213,644,"[""Monitor"", ""Tablet"", ""Phone""]",865.67,{},191684,0,Africa +2024-10-04,18214,4361,"[""Headphones"", ""Phone""]",4662.51,"{""promo"": ""21%""}",271897,1,South America +2024-04-16,18215,5173,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3002.46,{},223389,1,South America +2023-05-09,18216,1267,"[""Keyboard""]",2782.05,"{""seasonal"": ""11%""}",73112,1,Europe +2023-04-06,18217,1835,"[""Wireless Mouse"", ""Headphones""]",3990.47,"{""loyalty"": ""26%""}",2206,1,South America +2024-03-03,18218,2614,"[""Phone"", ""Monitor"", ""Headphones""]",4322.24,"{""seasonal"": ""17%""}",188637,1,Africa +2023-12-31,18219,5232,"[""Phone"", ""Charger""]",1904.68,{},16973,1,Europe +2024-04-20,18220,9938,"[""Wireless Mouse""]",1765.54,"{"""": ""11%""}",65740,0,North America +2023-01-23,18221,5499,"[""Keyboard"", ""Headphones""]",2251.19,"{""seasonal"": ""24%""}",253020,1,Africa +2024-03-29,18222,5967,"[""Keyboard""]",4766.07,"{""promo"": ""26%""}",49988,1,Africa +2024-01-08,18223,8035,"[""Tablet"", ""Charger""]",3246.85,{},228882,0,Asia +2024-11-09,18224,9103,"[""Keyboard"", ""Monitor""]",2801.69,"{""promo"": ""24%""}",184125,0,North America +2023-06-11,18225,3290,"[""Laptop"", ""Charger"", ""Headphones""]",3965.27,"{""promo"": ""14%""}",282802,1,North America +2023-01-02,18226,9322,"[""Laptop"", ""Keyboard"", ""Monitor""]",3975.07,{},107339,0,South America +2023-10-20,18227,1388,"[""Laptop""]",88.86,{},277206,1,Asia +2023-10-08,18228,4038,"[""Charger"", ""Wireless Mouse""]",2204.65,{},120390,0,Europe +2023-06-30,18229,620,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4998.41,{},52768,1,Africa +2024-08-06,18230,645,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3298.88,"{"""": ""27%""}",34783,0,Asia +2023-07-12,18231,6850,"[""Tablet"", ""Phone""]",2063.47,{},136898,0,Asia +2024-08-02,18232,2252,"[""Monitor"", ""Tablet""]",4795.58,"{""loyalty"": ""26%""}",140550,0,North America +2024-01-03,18233,920,"[""Laptop""]",494.47,"{""promo"": ""17%""}",74040,0,Europe +2023-10-20,18234,9473,"[""Charger"", ""Keyboard""]",1770.9,{},135482,1,Asia +2024-12-28,18235,264,"[""Phone"", ""Charger""]",4301.51,{},207206,1,Asia +2023-07-03,18236,3798,"[""Monitor""]",2497.98,{},239912,1,North America +2024-04-07,18237,541,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3031.96,"{"""": ""13%""}",104337,0,South America +2024-11-01,18238,3830,"[""Charger"", ""Monitor""]",4665.45,"{""loyalty"": ""7%""}",7609,0,Africa +2023-01-20,18239,8776,"[""Charger""]",1412.87,{},78098,0,Asia +2024-04-18,18240,6091,"[""Tablet""]",1121.92,"{""promo"": ""28%""}",278039,0,Africa +2024-04-06,18241,7247,"[""Phone""]",3182.14,{},277477,0,South America +2024-04-03,18242,4689,"[""Laptop""]",4345.13,"{""promo"": ""21%""}",136273,0,South America +2024-06-05,18243,310,"[""Laptop"", ""Monitor""]",3862.66,"{""seasonal"": ""26%""}",111366,0,South America +2023-10-17,18244,8504,"[""Monitor""]",145.5,"{""seasonal"": ""14%""}",183224,0,South America +2024-11-12,18245,4373,"[""Headphones""]",4333.26,"{""seasonal"": ""22%""}",104955,1,South America +2023-11-28,18246,8207,"[""Headphones""]",4244.7,{},183494,0,South America +2024-06-03,18247,2880,"[""Charger"", ""Headphones"", ""Monitor""]",1187.31,{},252501,1,Africa +2023-07-24,18248,4413,"[""Laptop""]",603.65,"{""loyalty"": ""10%""}",8490,0,Europe +2024-12-16,18249,1057,"[""Headphones"", ""Wireless Mouse""]",385.69,"{""seasonal"": ""21%""}",57210,1,South America +2024-02-03,18250,9309,"[""Laptop"", ""Monitor"", ""Phone""]",4616.01,"{""loyalty"": ""10%""}",123685,0,North America +2023-08-01,18251,7491,"[""Phone""]",4163.62,"{""loyalty"": ""30%""}",145235,0,Europe +2023-06-23,18252,9073,"[""Keyboard""]",3741.9,{},207060,0,Africa +2024-06-12,18253,840,"[""Headphones"", ""Keyboard""]",232.34,"{""seasonal"": ""23%""}",111409,1,Africa +2023-06-14,18254,5106,"[""Headphones"", ""Charger""]",4591.54,"{"""": ""24%""}",271341,1,North America +2023-01-25,18255,9681,"[""Tablet"", ""Charger"", ""Phone""]",2231.35,{},34561,0,Europe +2023-11-13,18256,2231,"[""Wireless Mouse"", ""Charger""]",4832.84,{},57634,0,North America +2024-06-17,18257,5529,"[""Laptop"", ""Tablet""]",4152.34,"{""loyalty"": ""29%""}",219096,1,Europe +2024-12-27,18258,7217,"[""Charger"", ""Laptop"", ""Keyboard""]",1648.98,{},163607,0,Asia +2023-05-08,18259,6968,"[""Charger"", ""Monitor"", ""Laptop""]",4245.54,"{""loyalty"": ""9%""}",240049,0,North America +2023-10-19,18260,3946,"[""Tablet"", ""Phone"", ""Charger""]",664.31,{},231826,1,South America +2023-05-06,18261,5858,"[""Keyboard""]",1660.08,"{""promo"": ""11%""}",8194,1,South America +2024-11-05,18262,1702,"[""Keyboard""]",3957.24,"{"""": ""23%""}",41376,1,Europe +2023-03-21,18263,7065,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1906.27,"{"""": ""27%""}",172229,1,Europe +2023-05-08,18264,3232,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4274.12,"{""seasonal"": ""26%""}",49590,0,Africa +2024-12-24,18265,2582,"[""Headphones"", ""Laptop""]",3449.03,"{"""": ""16%""}",231193,1,Europe +2023-07-31,18266,9739,"[""Laptop"", ""Monitor"", ""Keyboard""]",4502.46,{},4424,1,North America +2023-01-08,18267,8004,"[""Monitor""]",1100.05,{},176334,0,North America +2023-12-20,18268,1727,"[""Charger""]",2651.37,{},160596,1,Europe +2023-05-13,18269,8207,"[""Headphones"", ""Charger""]",4001.31,{},227404,0,Africa +2023-03-17,18270,7617,"[""Headphones"", ""Laptop""]",4309.24,"{"""": ""17%""}",243096,1,North America +2024-06-07,18271,5403,"[""Headphones""]",1305.09,"{""loyalty"": ""18%""}",179602,1,North America +2024-08-09,18272,2273,"[""Charger"", ""Keyboard"", ""Headphones""]",4326.57,"{"""": ""28%""}",47619,0,South America +2024-10-11,18273,3772,"[""Headphones"", ""Charger"", ""Monitor""]",4002.32,"{""seasonal"": ""24%""}",140046,0,South America +2024-05-26,18274,7606,"[""Laptop""]",331.57,"{""seasonal"": ""30%""}",5261,1,North America +2024-04-12,18275,5708,"[""Laptop"", ""Wireless Mouse""]",2196.19,{},14813,0,South America +2024-01-19,18276,4246,"[""Phone""]",533.0,{},242912,1,North America +2024-12-27,18277,4509,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4035.36,{},70383,1,Europe +2023-05-15,18278,1024,"[""Wireless Mouse"", ""Monitor""]",4853.75,{},86435,1,South America +2023-09-12,18279,3130,"[""Headphones""]",231.75,{},121641,1,North America +2024-07-17,18280,2487,"[""Charger"", ""Phone"", ""Monitor""]",4130.72,"{""loyalty"": ""30%""}",4929,1,Africa +2023-05-16,18281,4232,"[""Monitor""]",3210.57,"{""seasonal"": ""28%""}",157476,0,Asia +2023-05-19,18282,6308,"[""Phone"", ""Keyboard""]",2234.52,"{""seasonal"": ""29%""}",42777,1,Europe +2024-07-04,18283,5163,"[""Tablet"", ""Phone"", ""Laptop""]",454.57,"{""loyalty"": ""25%""}",236898,0,Asia +2024-01-13,18284,2087,"[""Keyboard"", ""Headphones""]",1934.6,{},293395,1,Europe +2023-08-29,18285,4080,"[""Wireless Mouse""]",1286.05,{},72795,1,Africa +2023-07-30,18286,5220,"[""Keyboard"", ""Laptop"", ""Tablet""]",2221.13,"{""loyalty"": ""5%""}",269271,0,Africa +2024-10-20,18287,2965,"[""Charger"", ""Laptop""]",653.6,{},240063,0,Europe +2023-07-12,18288,8311,"[""Tablet"", ""Keyboard"", ""Headphones""]",3395.84,"{"""": ""16%""}",54672,1,Africa +2023-11-09,18289,8042,"[""Tablet"", ""Phone""]",820.94,"{""seasonal"": ""30%""}",255330,0,Asia +2023-10-03,18290,992,"[""Headphones""]",4018.35,{},256875,0,Europe +2024-05-24,18291,2426,"[""Monitor""]",1969.47,{},191359,0,Africa +2024-11-16,18292,1722,"[""Laptop"", ""Tablet"", ""Phone""]",1971.92,"{""seasonal"": ""17%""}",176395,0,Europe +2023-08-07,18293,4014,"[""Monitor"", ""Charger"", ""Tablet""]",714.47,{},202460,0,Africa +2023-12-28,18294,2286,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2207.85,{},93069,0,Asia +2024-11-07,18295,7602,"[""Wireless Mouse"", ""Monitor""]",1028.36,{},285496,1,Asia +2024-05-14,18296,9242,"[""Charger"", ""Phone"", ""Tablet""]",1656.53,{},226789,0,Africa +2023-03-27,18297,8041,"[""Phone""]",1208.98,{},24130,1,Europe +2023-12-27,18298,1877,"[""Tablet"", ""Phone"", ""Laptop""]",3377.24,{},149287,0,North America +2024-04-15,18299,4893,"[""Charger""]",3868.58,"{""seasonal"": ""17%""}",163278,0,North America +2024-11-20,18300,3894,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3990.17,"{"""": ""18%""}",84758,1,Africa +2024-04-22,18301,257,"[""Monitor"", ""Phone"", ""Charger""]",1186.95,{},54624,0,Asia +2024-06-30,18302,3208,"[""Charger""]",1961.84,{},246216,1,North America +2024-05-14,18303,9589,"[""Keyboard""]",1992.3,{},215886,0,Africa +2024-09-03,18304,2155,"[""Phone""]",4336.95,"{"""": ""24%""}",124933,0,Asia +2024-04-12,18305,1624,"[""Headphones"", ""Wireless Mouse""]",542.24,"{"""": ""20%""}",120286,1,Europe +2024-02-24,18306,9713,"[""Phone""]",4071.85,{},227845,0,North America +2023-08-04,18307,2585,"[""Monitor"", ""Headphones""]",2866.32,"{""promo"": ""16%""}",141928,1,North America +2024-01-21,18308,6771,"[""Monitor"", ""Phone"", ""Headphones""]",105.47,{},106727,0,South America +2024-01-31,18309,6615,"[""Charger"", ""Phone""]",2826.91,"{""promo"": ""5%""}",12618,1,Europe +2024-04-21,18310,7157,"[""Headphones"", ""Phone""]",3700.37,"{""promo"": ""23%""}",187315,1,Asia +2024-09-08,18311,6396,"[""Charger""]",3142.59,"{"""": ""8%""}",250686,1,Asia +2023-12-07,18312,807,"[""Wireless Mouse""]",965.93,{},121615,1,Africa +2023-10-11,18313,4112,"[""Wireless Mouse"", ""Phone""]",4033.68,{},158347,0,Asia +2024-09-23,18314,9092,"[""Monitor""]",2212.09,"{""promo"": ""25%""}",244475,1,Europe +2023-08-15,18315,6843,"[""Headphones"", ""Phone""]",1556.3,"{""seasonal"": ""16%""}",175846,1,Asia +2023-06-01,18316,4227,"[""Keyboard"", ""Tablet""]",3662.63,{},7388,0,Europe +2023-10-11,18317,1982,"[""Keyboard"", ""Monitor""]",1584.8,{},188933,0,Africa +2024-07-22,18318,9317,"[""Headphones""]",4208.42,{},288914,0,Africa +2024-03-09,18319,3374,"[""Phone"", ""Monitor""]",1007.97,"{""promo"": ""14%""}",220860,1,Asia +2024-04-30,18320,8517,"[""Phone""]",3717.15,"{""loyalty"": ""23%""}",171764,1,Europe +2024-07-01,18321,7866,"[""Phone""]",4490.95,{},263876,0,North America +2024-06-28,18322,5859,"[""Keyboard"", ""Wireless Mouse""]",1458.6,{},131473,0,Europe +2023-10-31,18323,4909,"[""Phone"", ""Headphones""]",252.86,"{""promo"": ""29%""}",224111,1,Europe +2024-06-11,18324,7310,"[""Charger"", ""Keyboard""]",1253.49,"{"""": ""10%""}",245154,1,North America +2023-08-19,18325,7933,"[""Headphones"", ""Tablet"", ""Keyboard""]",4458.47,{},86022,1,Africa +2024-11-25,18326,8848,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1506.75,"{""promo"": ""29%""}",294248,1,Africa +2023-05-31,18327,2445,"[""Headphones""]",632.62,"{""loyalty"": ""29%""}",180722,1,Asia +2023-11-03,18328,4765,"[""Keyboard"", ""Charger"", ""Tablet""]",3516.63,{},146254,0,Europe +2024-08-16,18329,6051,"[""Headphones"", ""Phone""]",4914.41,{},47792,0,Africa +2023-05-13,18330,4987,"[""Laptop""]",4777.51,"{""promo"": ""7%""}",104555,1,North America +2024-06-21,18331,3211,"[""Monitor""]",4380.14,{},227994,1,South America +2024-10-04,18332,5558,"[""Tablet""]",2385.85,{},179984,0,North America +2024-11-07,18333,3605,"[""Wireless Mouse"", ""Charger""]",4629.14,"{""loyalty"": ""9%""}",157635,1,North America +2023-10-24,18334,85,"[""Laptop"", ""Tablet"", ""Headphones""]",4867.01,"{""loyalty"": ""27%""}",150691,1,Europe +2023-01-08,18335,8600,"[""Tablet""]",975.71,{},125446,0,South America +2023-05-24,18336,3340,"[""Wireless Mouse""]",3358.98,{},61308,1,Asia +2024-07-16,18337,2314,"[""Headphones"", ""Laptop"", ""Monitor""]",866.52,"{""seasonal"": ""26%""}",207885,0,Asia +2024-09-28,18338,577,"[""Headphones""]",400.42,"{"""": ""25%""}",59812,0,Europe +2023-06-21,18339,3936,"[""Headphones""]",1402.27,{},273748,1,Europe +2023-11-18,18340,8489,"[""Headphones"", ""Keyboard"", ""Monitor""]",874.11,"{"""": ""9%""}",207827,0,South America +2023-08-05,18341,2487,"[""Keyboard""]",3005.42,"{"""": ""16%""}",283756,1,Europe +2024-06-06,18342,4862,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3607.25,"{""seasonal"": ""21%""}",139088,0,Africa +2024-06-12,18343,996,"[""Tablet"", ""Headphones""]",1895.59,{},65436,0,Asia +2023-02-06,18344,9239,"[""Keyboard"", ""Phone"", ""Monitor""]",1718.06,{},51568,1,South America +2024-08-17,18345,8008,"[""Monitor"", ""Headphones"", ""Phone""]",670.25,{},102439,0,Asia +2023-03-07,18346,4860,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3665.9,{},256671,1,North America +2024-09-13,18347,5709,"[""Phone""]",2752.01,{},14230,0,Europe +2023-02-15,18348,9480,"[""Keyboard""]",1989.63,{},296505,0,Africa +2023-12-17,18349,5208,"[""Charger"", ""Headphones""]",2975.78,"{""promo"": ""25%""}",31940,0,Africa +2023-08-11,18350,7487,"[""Wireless Mouse""]",2915.14,"{""seasonal"": ""5%""}",176258,1,Asia +2023-09-25,18351,469,"[""Monitor""]",3772.37,{},229485,0,Asia +2024-10-06,18352,7399,"[""Keyboard"", ""Monitor"", ""Tablet""]",869.97,"{""loyalty"": ""16%""}",70418,1,Asia +2024-03-24,18353,3395,"[""Phone"", ""Tablet""]",2396.47,"{""seasonal"": ""6%""}",288618,1,Europe +2024-08-27,18354,9792,"[""Keyboard""]",4530.86,{},144239,1,Asia +2024-06-30,18355,5294,"[""Charger"", ""Monitor"", ""Keyboard""]",2365.03,"{""loyalty"": ""7%""}",296988,0,Africa +2024-03-30,18356,635,"[""Phone"", ""Keyboard""]",2617.39,"{""seasonal"": ""19%""}",138971,0,South America +2024-04-05,18357,5607,"[""Headphones""]",1868.64,"{"""": ""26%""}",196257,0,North America +2023-08-22,18358,4870,"[""Keyboard"", ""Monitor""]",152.29,"{""loyalty"": ""23%""}",54467,1,South America +2024-01-27,18359,6231,"[""Headphones""]",459.59,{},262264,1,Europe +2023-04-06,18360,1189,"[""Keyboard""]",2428.52,{},82955,1,Africa +2024-10-09,18361,4925,"[""Phone"", ""Laptop""]",889.41,{},297068,0,Asia +2024-01-17,18362,9887,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2568.06,"{""promo"": ""25%""}",123613,0,Europe +2023-07-27,18363,8173,"[""Tablet""]",2746.38,"{""loyalty"": ""17%""}",141664,1,Europe +2023-09-01,18364,7410,"[""Laptop""]",3511.29,{},269058,0,Europe +2023-04-21,18365,9426,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1982.73,{},180244,0,Asia +2023-04-22,18366,695,"[""Headphones""]",2489.58,"{""promo"": ""14%""}",78764,0,Europe +2023-07-15,18367,4334,"[""Charger"", ""Monitor""]",616.77,{},115359,1,Europe +2023-10-09,18368,4220,"[""Phone"", ""Tablet""]",615.5,"{"""": ""9%""}",77905,0,Europe +2023-06-02,18369,3260,"[""Phone""]",4988.37,"{""promo"": ""9%""}",126328,1,Europe +2023-06-08,18370,3617,"[""Phone"", ""Headphones""]",1010.98,"{""loyalty"": ""7%""}",168809,1,Europe +2023-12-05,18371,7299,"[""Charger"", ""Laptop""]",4979.51,{},18550,1,Europe +2024-05-26,18372,3986,"[""Headphones"", ""Tablet""]",3318.75,{},97460,0,Europe +2023-10-19,18373,5144,"[""Keyboard""]",185.84,"{"""": ""27%""}",128316,1,Asia +2024-02-08,18374,2709,"[""Tablet""]",4952.17,{},41614,0,Africa +2024-11-02,18375,4092,"[""Laptop""]",3365.79,"{""seasonal"": ""22%""}",59125,0,Asia +2023-12-05,18376,3609,"[""Monitor""]",4166.74,{},210495,0,Europe +2023-04-13,18377,9600,"[""Tablet"", ""Keyboard""]",3507.68,"{""promo"": ""5%""}",30196,0,Europe +2024-11-29,18378,2697,"[""Wireless Mouse"", ""Phone""]",3964.6,"{"""": ""15%""}",246891,0,South America +2024-04-07,18379,7926,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4852.8,{},28499,0,North America +2024-06-30,18380,7154,"[""Phone"", ""Monitor""]",1221.25,"{""seasonal"": ""10%""}",181777,0,South America +2024-09-28,18381,3414,"[""Keyboard"", ""Headphones""]",1961.52,"{""seasonal"": ""11%""}",223718,1,Asia +2023-04-14,18382,421,"[""Headphones""]",3174.67,{},47663,1,South America +2023-06-02,18383,6547,"[""Laptop"", ""Phone"", ""Monitor""]",3883.58,{},133274,1,Europe +2024-01-27,18384,7067,"[""Laptop"", ""Tablet"", ""Headphones""]",1934.49,"{""promo"": ""14%""}",97619,0,North America +2024-11-06,18385,3061,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",254.12,"{""seasonal"": ""28%""}",48212,1,South America +2024-12-27,18386,1031,"[""Keyboard""]",979.02,{},107858,0,South America +2024-02-17,18387,3051,"[""Tablet""]",1265.52,{},40128,0,Asia +2023-07-16,18388,9474,"[""Laptop"", ""Tablet"", ""Charger""]",3238.0,{},288693,1,North America +2024-06-22,18389,3265,"[""Keyboard"", ""Headphones"", ""Phone""]",2213.15,{},194306,1,Asia +2024-03-31,18390,5912,"[""Charger""]",3409.25,{},5825,0,South America +2024-07-30,18391,7979,"[""Keyboard"", ""Laptop""]",3558.61,{},37379,0,Europe +2023-07-30,18392,8807,"[""Charger"", ""Wireless Mouse""]",3105.29,{},253869,1,South America +2023-04-22,18393,6635,"[""Tablet"", ""Keyboard""]",3168.47,{},181706,1,North America +2024-04-22,18394,5878,"[""Charger""]",1906.86,"{""promo"": ""5%""}",108290,0,Asia +2023-04-19,18395,4963,"[""Tablet"", ""Charger""]",2323.41,"{""seasonal"": ""12%""}",252761,0,Africa +2024-06-06,18396,8410,"[""Tablet""]",2760.03,"{"""": ""23%""}",39160,0,North America +2024-05-28,18397,1288,"[""Headphones"", ""Tablet"", ""Charger""]",1317.96,{},45424,1,North America +2024-09-02,18398,4096,"[""Monitor"", ""Tablet""]",2981.2,"{"""": ""20%""}",297083,1,Asia +2023-09-21,18399,8918,"[""Laptop"", ""Keyboard"", ""Charger""]",417.96,{},124502,1,North America +2023-08-07,18400,3759,"[""Laptop""]",2026.18,"{""seasonal"": ""21%""}",245124,0,Asia +2023-01-06,18401,7996,"[""Headphones"", ""Wireless Mouse""]",514.05,"{""seasonal"": ""6%""}",272407,0,Asia +2023-05-19,18402,8562,"[""Monitor"", ""Headphones""]",4943.83,{},277416,0,Asia +2023-08-21,18403,9503,"[""Headphones"", ""Tablet""]",3263.9,{},121158,0,Asia +2023-06-13,18404,359,"[""Monitor""]",2645.36,{},238356,1,Asia +2023-03-14,18405,3365,"[""Keyboard""]",108.12,"{""loyalty"": ""18%""}",65771,0,North America +2023-08-14,18406,7282,"[""Charger""]",4100.35,"{""loyalty"": ""23%""}",247043,1,South America +2024-05-15,18407,9536,"[""Monitor"", ""Wireless Mouse""]",3611.16,{},254182,0,Europe +2023-11-21,18408,8021,"[""Keyboard"", ""Phone""]",1351.12,{},76924,1,Africa +2023-09-13,18409,8509,"[""Tablet""]",4311.44,{},177306,0,Africa +2023-01-29,18410,8763,"[""Laptop"", ""Keyboard"", ""Headphones""]",3420.29,{},88290,1,South America +2024-01-16,18411,5823,"[""Keyboard""]",4105.6,{},148627,1,Africa +2024-09-12,18412,9293,"[""Charger"", ""Phone"", ""Tablet""]",4026.2,{},82644,1,South America +2024-04-06,18413,2430,"[""Tablet"", ""Keyboard""]",2979.83,{},277756,1,Africa +2024-04-11,18414,7653,"[""Monitor""]",4582.36,{},247006,1,Europe +2023-10-17,18415,5136,"[""Charger""]",1760.3,"{""loyalty"": ""11%""}",30484,0,South America +2024-01-28,18416,557,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4954.55,{},257856,1,Africa +2023-01-05,18417,1893,"[""Laptop""]",3773.78,"{"""": ""11%""}",200992,0,North America +2023-07-13,18418,853,"[""Tablet"", ""Laptop"", ""Keyboard""]",4945.63,{},211098,1,North America +2024-07-15,18419,9983,"[""Headphones"", ""Tablet"", ""Phone""]",3801.04,{},271604,1,North America +2024-07-09,18420,7011,"[""Tablet"", ""Headphones""]",2405.53,"{""loyalty"": ""30%""}",170766,0,Europe +2024-04-15,18421,2634,"[""Phone""]",2760.59,{},237327,1,South America +2024-07-09,18422,1103,"[""Headphones""]",1465.86,"{""promo"": ""14%""}",256703,1,South America +2023-04-27,18423,6703,"[""Tablet"", ""Charger"", ""Phone""]",3513.45,{},126700,0,Asia +2024-03-25,18424,6766,"[""Monitor""]",816.45,{},86369,1,North America +2024-06-20,18425,6429,"[""Wireless Mouse"", ""Phone""]",1258.49,"{"""": ""26%""}",4872,1,Africa +2023-08-09,18426,1381,"[""Keyboard""]",1641.99,"{""seasonal"": ""19%""}",237226,0,South America +2023-12-06,18427,262,"[""Phone""]",2710.45,{},35623,0,North America +2024-06-10,18428,112,"[""Wireless Mouse""]",3572.4,"{"""": ""24%""}",137601,1,South America +2024-07-19,18429,345,"[""Keyboard"", ""Headphones"", ""Monitor""]",4663.16,{},59171,0,Africa +2024-09-11,18430,6808,"[""Tablet""]",596.69,"{""loyalty"": ""11%""}",52285,1,South America +2023-01-10,18431,1784,"[""Wireless Mouse""]",3063.03,"{"""": ""18%""}",100106,1,South America +2023-12-16,18432,2870,"[""Monitor"", ""Charger""]",4141.53,"{""promo"": ""25%""}",166441,1,South America +2024-11-09,18433,9065,"[""Headphones""]",4058.8,{},98175,1,Africa +2023-04-20,18434,2786,"[""Tablet""]",4144.96,"{""loyalty"": ""7%""}",125908,1,Europe +2023-11-17,18435,7224,"[""Headphones""]",3367.1,{},183189,1,Africa +2024-11-08,18436,6118,"[""Tablet"", ""Laptop"", ""Monitor""]",4843.54,{},92557,1,Europe +2023-09-18,18437,2683,"[""Headphones"", ""Charger"", ""Tablet""]",224.82,"{"""": ""27%""}",270755,1,South America +2024-10-01,18438,5207,"[""Phone"", ""Charger""]",2450.46,"{""loyalty"": ""24%""}",271743,1,Africa +2024-07-28,18439,8036,"[""Laptop"", ""Monitor""]",4542.3,{},55718,0,Europe +2024-10-23,18440,6660,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2457.34,"{""seasonal"": ""28%""}",291075,1,North America +2023-01-08,18441,2248,"[""Keyboard"", ""Monitor""]",1536.35,"{"""": ""15%""}",72161,1,Europe +2023-10-29,18442,1133,"[""Phone"", ""Monitor"", ""Laptop""]",4893.22,"{"""": ""22%""}",47304,1,North America +2024-07-02,18443,621,"[""Tablet"", ""Keyboard"", ""Charger""]",4716.64,{},276946,0,Europe +2024-10-07,18444,7883,"[""Headphones""]",527.2,{},8033,1,South America +2023-02-13,18445,7970,"[""Tablet"", ""Charger"", ""Keyboard""]",1690.3,"{""seasonal"": ""20%""}",118425,1,Europe +2023-11-10,18446,6374,"[""Keyboard""]",3009.36,"{""promo"": ""22%""}",273574,1,Asia +2023-02-25,18447,3941,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3958.85,"{""promo"": ""11%""}",230201,0,Africa +2024-04-17,18448,1829,"[""Charger"", ""Monitor"", ""Laptop""]",3969.69,{},193968,1,Africa +2024-04-25,18449,4715,"[""Monitor""]",4429.42,{},203088,0,South America +2023-08-19,18450,3466,"[""Headphones"", ""Monitor"", ""Tablet""]",3129.41,{},103166,0,South America +2024-08-21,18451,7133,"[""Headphones"", ""Charger"", ""Phone""]",2063.76,"{""seasonal"": ""8%""}",145216,1,South America +2023-02-26,18452,9009,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1047.48,{},42064,0,South America +2023-05-09,18453,4175,"[""Headphones"", ""Laptop"", ""Tablet""]",154.78,"{""loyalty"": ""26%""}",195150,1,North America +2023-09-06,18454,2010,"[""Headphones""]",1805.49,"{""loyalty"": ""28%""}",268429,1,Africa +2023-04-19,18455,2950,"[""Headphones"", ""Phone"", ""Monitor""]",2973.44,{},186498,0,North America +2024-08-03,18456,136,"[""Tablet"", ""Monitor""]",2236.67,{},151658,1,South America +2023-11-18,18457,5891,"[""Headphones"", ""Monitor"", ""Keyboard""]",2355.83,"{"""": ""16%""}",246499,0,Asia +2023-12-20,18458,4761,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1145.83,{},157617,1,Asia +2024-06-26,18459,6426,"[""Keyboard""]",1262.76,{},97285,1,Europe +2024-07-21,18460,2650,"[""Laptop"", ""Headphones"", ""Tablet""]",3037.48,{},182713,1,South America +2023-10-19,18461,8587,"[""Wireless Mouse""]",4026.78,"{""loyalty"": ""12%""}",62497,1,South America +2023-02-11,18462,8606,"[""Laptop""]",2765.65,"{""promo"": ""5%""}",29001,1,Europe +2023-04-02,18463,1964,"[""Monitor"", ""Tablet"", ""Headphones""]",3406.35,"{""seasonal"": ""16%""}",257148,1,South America +2024-02-29,18464,5327,"[""Wireless Mouse"", ""Phone""]",196.66,{},29364,0,North America +2024-04-17,18465,5442,"[""Monitor"", ""Charger""]",4415.72,"{"""": ""17%""}",192438,1,North America +2023-08-17,18466,3250,"[""Phone"", ""Keyboard""]",2685.21,{},257833,1,Africa +2023-05-24,18467,3419,"[""Keyboard"", ""Tablet"", ""Monitor""]",1082.61,"{""promo"": ""9%""}",210057,1,South America +2023-12-13,18468,5360,"[""Headphones""]",113.78,"{""loyalty"": ""25%""}",259966,0,Europe +2024-10-12,18469,4952,"[""Monitor"", ""Keyboard""]",1044.11,"{""loyalty"": ""15%""}",24078,1,North America +2023-02-01,18470,3702,"[""Tablet"", ""Charger""]",84.33,{},164535,0,Europe +2023-07-06,18471,4778,"[""Charger""]",120.16,"{""promo"": ""28%""}",54428,0,Asia +2024-01-30,18472,1344,"[""Headphones"", ""Monitor"", ""Tablet""]",1714.31,{},116385,0,South America +2023-11-27,18473,7323,"[""Laptop"", ""Keyboard"", ""Tablet""]",4837.13,{},261570,1,Asia +2024-03-20,18474,6167,"[""Phone""]",1727.38,"{""promo"": ""15%""}",228326,1,South America +2024-11-13,18475,7376,"[""Laptop""]",2982.68,"{""seasonal"": ""15%""}",152212,0,Europe +2023-03-10,18476,933,"[""Phone"", ""Tablet"", ""Laptop""]",189.69,"{""loyalty"": ""28%""}",18109,1,South America +2023-01-22,18477,3737,"[""Phone"", ""Wireless Mouse""]",1793.36,"{""promo"": ""6%""}",246679,1,Africa +2023-05-04,18478,2873,"[""Phone"", ""Headphones""]",1798.51,{},80467,1,Europe +2023-10-28,18479,430,"[""Monitor"", ""Laptop"", ""Phone""]",3322.28,{},262873,0,North America +2023-11-06,18480,4602,"[""Keyboard"", ""Charger""]",3456.99,"{""promo"": ""6%""}",7111,0,North America +2024-03-21,18481,5155,"[""Wireless Mouse""]",4353.44,"{""loyalty"": ""22%""}",238438,1,North America +2023-09-05,18482,2316,"[""Charger""]",1442.29,"{""loyalty"": ""22%""}",220470,0,Europe +2024-08-12,18483,5986,"[""Tablet"", ""Laptop""]",1293.09,{},55467,1,Africa +2024-06-16,18484,3628,"[""Phone"", ""Keyboard""]",4132.31,{},238650,0,Asia +2024-06-18,18485,3352,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2939.19,{},97598,0,Africa +2024-12-05,18486,317,"[""Phone"", ""Monitor""]",4497.76,{},50213,0,South America +2023-06-28,18487,901,"[""Tablet""]",165.24,{},118046,0,Europe +2024-03-30,18488,7970,"[""Tablet""]",1986.81,{},225468,1,Africa +2024-05-10,18489,4338,"[""Tablet""]",989.35,"{""promo"": ""15%""}",252037,1,North America +2023-09-24,18490,6112,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2183.95,"{""seasonal"": ""23%""}",221462,0,Asia +2023-02-13,18491,7967,"[""Laptop""]",1553.24,"{""promo"": ""18%""}",102069,0,Asia +2023-10-30,18492,2378,"[""Phone"", ""Tablet""]",3021.65,"{"""": ""22%""}",179924,1,North America +2023-10-27,18493,4769,"[""Laptop"", ""Keyboard"", ""Phone""]",2119.27,"{""loyalty"": ""8%""}",163617,1,Africa +2023-05-31,18494,9169,"[""Phone"", ""Keyboard""]",4416.94,"{""loyalty"": ""17%""}",21460,1,Europe +2023-08-30,18495,1298,"[""Laptop"", ""Phone""]",4909.96,{},178533,1,North America +2024-06-23,18496,4310,"[""Charger"", ""Laptop"", ""Phone""]",4130.35,{},76890,1,Asia +2023-04-27,18497,4490,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1922.35,{},292650,0,South America +2024-05-28,18498,9140,"[""Tablet"", ""Laptop""]",773.23,"{"""": ""23%""}",294858,1,Europe +2023-07-07,18499,6124,"[""Phone""]",1023.34,{},123931,1,Africa +2024-05-20,18500,4362,"[""Tablet"", ""Monitor""]",3787.18,{},237624,0,North America +2023-05-16,18501,8289,"[""Wireless Mouse""]",1258.24,"{"""": ""27%""}",156467,0,Europe +2023-09-15,18502,6017,"[""Tablet"", ""Phone"", ""Headphones""]",3671.29,{},102092,1,Europe +2024-06-12,18503,2125,"[""Headphones""]",941.44,{},147849,0,Europe +2024-01-09,18504,7844,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4489.6,"{""loyalty"": ""29%""}",116941,0,Africa +2024-05-10,18505,3475,"[""Wireless Mouse"", ""Phone""]",1524.31,{},61473,1,Africa +2023-03-01,18506,590,"[""Monitor""]",1347.62,"{""seasonal"": ""15%""}",280291,0,Europe +2023-10-29,18507,9290,"[""Keyboard"", ""Laptop"", ""Monitor""]",861.65,{},291949,1,Africa +2024-07-18,18508,2712,"[""Monitor""]",381.08,{},242161,1,North America +2024-07-07,18509,7857,"[""Headphones"", ""Tablet""]",3629.12,"{""loyalty"": ""9%""}",285589,1,Africa +2024-07-09,18510,4331,"[""Keyboard""]",2801.22,"{""loyalty"": ""23%""}",7907,0,Asia +2023-12-08,18511,4629,"[""Phone""]",2468.16,{},63359,0,South America +2023-11-10,18512,4098,"[""Phone"", ""Laptop""]",1244.91,{},287938,1,Asia +2024-08-12,18513,4446,"[""Headphones"", ""Tablet""]",4635.53,"{"""": ""8%""}",16157,0,Europe +2023-05-17,18514,9221,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2992.69,"{""seasonal"": ""27%""}",117597,1,Africa +2024-04-17,18515,4922,"[""Charger""]",213.16,{},210876,0,Europe +2023-04-11,18516,4636,"[""Keyboard"", ""Tablet""]",598.03,"{"""": ""30%""}",279980,0,Africa +2023-07-11,18517,4322,"[""Headphones"", ""Monitor""]",1909.9,"{""promo"": ""21%""}",80560,1,North America +2024-02-17,18518,4664,"[""Headphones""]",4320.32,"{""seasonal"": ""7%""}",19191,1,North America +2023-11-21,18519,8913,"[""Keyboard""]",2597.26,{},83688,0,South America +2024-06-15,18520,7494,"[""Laptop"", ""Keyboard""]",2359.66,{},136875,0,North America +2024-05-29,18521,8357,"[""Headphones""]",4787.77,{},10763,0,North America +2023-07-07,18522,7006,"[""Tablet""]",3796.21,"{""promo"": ""10%""}",288042,0,South America +2023-10-05,18523,1913,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2272.44,{},181199,1,Europe +2024-08-26,18524,916,"[""Monitor"", ""Keyboard"", ""Laptop""]",1648.62,"{""seasonal"": ""17%""}",105332,1,Africa +2024-02-21,18525,234,"[""Keyboard""]",3279.3,{},169443,1,Asia +2024-07-19,18526,6778,"[""Phone"", ""Keyboard""]",2838.34,"{""promo"": ""18%""}",64084,1,North America +2024-12-16,18527,4472,"[""Monitor"", ""Charger""]",976.32,{},68918,1,Europe +2023-03-17,18528,4434,"[""Keyboard""]",111.83,"{""promo"": ""28%""}",280258,0,Europe +2024-11-20,18529,3602,"[""Charger""]",2178.79,"{""seasonal"": ""8%""}",110490,0,Asia +2024-10-28,18530,7998,"[""Charger"", ""Monitor"", ""Tablet""]",1905.49,{},210554,1,Africa +2024-05-26,18531,3472,"[""Phone"", ""Headphones"", ""Laptop""]",4239.43,"{"""": ""15%""}",19521,0,South America +2024-12-16,18532,6619,"[""Phone"", ""Charger"", ""Monitor""]",1035.0,"{""promo"": ""26%""}",221209,1,Europe +2023-10-20,18533,5829,"[""Keyboard""]",264.12,{},287315,0,North America +2024-03-07,18534,224,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2894.5,"{""promo"": ""14%""}",239870,0,Europe +2024-07-23,18535,4596,"[""Laptop""]",3714.09,{},7867,1,Asia +2023-08-29,18536,9453,"[""Charger"", ""Monitor""]",2933.12,{},226227,0,Asia +2023-12-18,18537,3497,"[""Headphones""]",1435.77,"{""loyalty"": ""13%""}",244971,0,Africa +2023-07-14,18538,8925,"[""Monitor""]",4816.86,"{"""": ""24%""}",275919,1,South America +2023-06-12,18539,498,"[""Charger""]",2247.77,"{""loyalty"": ""17%""}",240924,0,North America +2024-07-01,18540,9564,"[""Headphones"", ""Phone"", ""Laptop""]",2085.55,{},145695,1,Africa +2024-01-17,18541,8586,"[""Keyboard"", ""Monitor"", ""Phone""]",2316.99,"{""loyalty"": ""17%""}",264234,0,Africa +2023-11-01,18542,4715,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3214.85,{},59974,1,Africa +2023-06-14,18543,3456,"[""Laptop""]",1317.57,"{""loyalty"": ""22%""}",222566,1,Asia +2023-03-15,18544,5556,"[""Monitor""]",2574.73,{},174186,0,Africa +2024-09-14,18545,2568,"[""Charger""]",827.61,"{""loyalty"": ""12%""}",159620,0,Asia +2024-01-11,18546,7372,"[""Keyboard""]",1788.74,{},126244,1,Europe +2023-04-03,18547,9230,"[""Laptop"", ""Wireless Mouse""]",552.01,{},88952,1,Africa +2024-05-19,18548,9519,"[""Wireless Mouse""]",3741.47,{},272502,1,South America +2023-09-06,18549,6564,"[""Phone"", ""Monitor""]",3397.98,{},114571,1,North America +2023-10-20,18550,7171,"[""Keyboard"", ""Charger""]",1246.62,{},12779,1,South America +2023-02-05,18551,6813,"[""Headphones""]",3793.94,{},101627,0,Africa +2023-09-08,18552,962,"[""Phone"", ""Tablet""]",4545.11,"{""seasonal"": ""18%""}",113594,1,North America +2024-09-19,18553,8577,"[""Monitor""]",346.05,"{""seasonal"": ""25%""}",51463,0,Africa +2024-08-20,18554,8708,"[""Phone"", ""Laptop""]",1419.02,"{""promo"": ""5%""}",280800,1,Asia +2023-08-30,18555,3828,"[""Charger"", ""Keyboard""]",52.11,{},26689,1,South America +2023-11-07,18556,7697,"[""Tablet"", ""Charger"", ""Phone""]",3216.07,"{""seasonal"": ""8%""}",89614,1,Europe +2023-02-23,18557,7840,"[""Phone"", ""Laptop""]",4630.85,"{""seasonal"": ""8%""}",253576,1,South America +2023-10-30,18558,9618,"[""Tablet"", ""Wireless Mouse""]",2529.65,{},232829,0,North America +2023-05-04,18559,953,"[""Laptop"", ""Monitor"", ""Keyboard""]",2632.58,{},93822,0,Europe +2023-09-11,18560,9119,"[""Charger"", ""Tablet""]",4343.87,"{"""": ""28%""}",31205,1,Europe +2023-07-28,18561,5113,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2342.58,{},153093,0,Africa +2023-09-03,18562,2062,"[""Wireless Mouse""]",1819.37,{},95766,1,Europe +2023-05-05,18563,5257,"[""Wireless Mouse"", ""Laptop""]",1846.57,{},22580,1,Europe +2024-07-13,18564,454,"[""Monitor""]",2436.4,"{"""": ""15%""}",114562,1,North America +2023-06-15,18565,9023,"[""Keyboard"", ""Wireless Mouse""]",2174.99,"{"""": ""17%""}",13303,0,Europe +2024-04-09,18566,164,"[""Charger"", ""Laptop"", ""Phone""]",932.7,"{"""": ""30%""}",188728,1,South America +2023-02-26,18567,772,"[""Charger"", ""Monitor"", ""Headphones""]",939.87,{},67772,0,South America +2024-06-14,18568,8845,"[""Charger""]",1519.27,"{""loyalty"": ""14%""}",144050,0,North America +2024-06-01,18569,4826,"[""Keyboard"", ""Headphones""]",1316.77,"{""loyalty"": ""18%""}",32818,0,Europe +2024-01-01,18570,7100,"[""Laptop"", ""Charger""]",3888.76,{},237340,1,Asia +2023-10-08,18571,6995,"[""Wireless Mouse""]",4480.13,"{""loyalty"": ""29%""}",123028,0,Europe +2023-12-02,18572,4507,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",367.84,"{""loyalty"": ""7%""}",198059,1,South America +2023-05-08,18573,2738,"[""Charger""]",4762.64,"{""promo"": ""16%""}",299349,1,South America +2024-08-24,18574,729,"[""Laptop"", ""Tablet""]",2083.93,{},10179,1,South America +2024-05-28,18575,9546,"[""Monitor"", ""Tablet""]",4706.12,"{""seasonal"": ""22%""}",107738,0,Europe +2024-05-10,18576,3673,"[""Tablet""]",865.55,"{""promo"": ""10%""}",220063,1,Asia +2024-01-26,18577,9061,"[""Headphones"", ""Monitor""]",4651.26,"{""loyalty"": ""9%""}",145191,1,Europe +2023-04-06,18578,5158,"[""Wireless Mouse""]",3604.38,{},260440,0,Africa +2024-02-24,18579,4015,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2386.62,{},206452,1,North America +2023-11-18,18580,7185,"[""Headphones""]",339.51,{},288944,0,Europe +2024-11-26,18581,3444,"[""Tablet""]",528.55,{},112275,1,North America +2024-06-04,18582,4569,"[""Headphones""]",4778.13,{},192708,1,North America +2024-12-11,18583,7259,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4131.69,"{""loyalty"": ""8%""}",98881,0,Asia +2024-04-16,18584,9120,"[""Keyboard"", ""Tablet""]",1130.84,"{""loyalty"": ""24%""}",150165,1,Africa +2023-02-27,18585,4339,"[""Keyboard"", ""Tablet"", ""Charger""]",484.79,"{""promo"": ""13%""}",282157,1,North America +2023-06-15,18586,6083,"[""Wireless Mouse"", ""Laptop""]",1560.53,{},74221,0,South America +2024-04-22,18587,618,"[""Laptop""]",4892.03,{},64977,1,Europe +2024-07-16,18588,368,"[""Phone"", ""Wireless Mouse""]",1253.16,"{""seasonal"": ""22%""}",210363,0,Asia +2024-11-11,18589,2704,"[""Charger""]",2066.84,{},81814,0,Asia +2023-02-16,18590,913,"[""Charger"", ""Wireless Mouse""]",3756.87,"{""seasonal"": ""23%""}",141581,0,Europe +2023-06-14,18591,8329,"[""Monitor"", ""Tablet""]",468.0,{},84595,0,Asia +2024-02-18,18592,7264,"[""Wireless Mouse"", ""Monitor""]",1906.16,"{""loyalty"": ""12%""}",151344,1,Europe +2023-12-14,18593,4797,"[""Keyboard""]",2462.93,{},93921,0,Asia +2024-03-04,18594,3806,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2091.2,{},81116,1,Europe +2024-08-06,18595,842,"[""Charger""]",1863.83,"{"""": ""25%""}",41181,0,Europe +2024-02-10,18596,9860,"[""Charger""]",4211.11,"{"""": ""28%""}",107389,0,North America +2023-05-23,18597,2383,"[""Tablet""]",1750.38,{},93593,1,Europe +2024-07-23,18598,4672,"[""Headphones"", ""Wireless Mouse""]",470.0,{},79181,1,Africa +2023-10-19,18599,9536,"[""Monitor"", ""Keyboard""]",4468.3,{},192875,1,Africa +2023-05-10,18600,3928,"[""Keyboard"", ""Phone""]",578.67,{},201079,1,Asia +2024-01-08,18601,2039,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",489.91,{},23302,0,Asia +2023-10-18,18602,1749,"[""Headphones""]",2487.76,{},63305,1,South America +2024-04-10,18603,8531,"[""Wireless Mouse""]",4005.6,{},240986,0,Asia +2023-11-15,18604,4508,"[""Keyboard""]",4408.87,"{""seasonal"": ""22%""}",242620,1,Asia +2024-06-03,18605,7557,"[""Headphones"", ""Tablet"", ""Keyboard""]",1347.61,{},200486,0,Asia +2024-05-25,18606,9898,"[""Phone""]",2988.69,"{"""": ""11%""}",175769,1,North America +2023-11-15,18607,8841,"[""Tablet""]",4026.9,{},73391,0,Europe +2024-02-22,18608,3626,"[""Laptop"", ""Charger"", ""Keyboard""]",2224.14,{},184119,1,Asia +2024-05-23,18609,6480,"[""Wireless Mouse""]",55.68,"{""loyalty"": ""18%""}",224103,0,Africa +2024-04-23,18610,8494,"[""Headphones"", ""Phone"", ""Keyboard""]",143.18,"{""loyalty"": ""5%""}",85204,0,Africa +2024-11-17,18611,5314,"[""Keyboard"", ""Monitor"", ""Laptop""]",2843.96,{},217618,0,Africa +2023-01-25,18612,1929,"[""Charger""]",3386.58,"{"""": ""28%""}",298003,0,Europe +2023-06-18,18613,3793,"[""Monitor"", ""Phone""]",3407.03,"{""promo"": ""28%""}",131241,0,Europe +2023-10-01,18614,677,"[""Keyboard"", ""Monitor""]",4293.96,"{""seasonal"": ""27%""}",123897,1,Europe +2024-04-18,18615,6830,"[""Charger"", ""Laptop"", ""Monitor""]",1860.99,"{"""": ""11%""}",123404,0,Europe +2024-09-07,18616,6247,"[""Monitor"", ""Phone""]",3130.91,{},244515,1,North America +2024-07-07,18617,647,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3020.35,{},83106,0,South America +2024-03-23,18618,5805,"[""Headphones"", ""Tablet""]",148.69,"{""promo"": ""13%""}",164396,1,Europe +2023-11-21,18619,751,"[""Laptop"", ""Headphones"", ""Tablet""]",730.13,"{""loyalty"": ""6%""}",20510,1,Asia +2024-07-04,18620,8686,"[""Charger"", ""Tablet""]",4945.82,"{"""": ""17%""}",289761,0,Africa +2023-11-03,18621,1644,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3760.06,"{""seasonal"": ""11%""}",74473,0,South America +2024-08-06,18622,3576,"[""Laptop"", ""Monitor""]",55.78,"{""promo"": ""18%""}",270203,0,Europe +2023-02-18,18623,4281,"[""Charger"", ""Headphones"", ""Laptop""]",3800.74,{},104622,0,Asia +2024-02-23,18624,3570,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4024.27,"{""promo"": ""6%""}",98492,0,Asia +2024-03-14,18625,3791,"[""Charger"", ""Laptop""]",4913.28,{},235525,1,Asia +2024-01-08,18626,1341,"[""Keyboard"", ""Tablet"", ""Laptop""]",2709.21,{},164998,1,North America +2024-02-13,18627,7926,"[""Monitor"", ""Wireless Mouse""]",1923.76,"{""loyalty"": ""15%""}",86896,1,Africa +2023-11-18,18628,833,"[""Charger""]",3134.05,{},19416,0,North America +2024-07-30,18629,3914,"[""Headphones""]",4741.91,"{""promo"": ""6%""}",186813,1,Europe +2024-03-21,18630,9531,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3675.49,"{""promo"": ""12%""}",284533,1,Europe +2024-01-17,18631,3877,"[""Tablet"", ""Charger""]",4465.13,"{""loyalty"": ""26%""}",142533,1,Europe +2024-11-21,18632,1475,"[""Charger"", ""Keyboard""]",4687.43,{},262159,0,North America +2023-06-18,18633,9211,"[""Wireless Mouse"", ""Phone""]",3655.24,{},190598,0,Asia +2023-09-24,18634,262,"[""Wireless Mouse"", ""Tablet""]",790.53,"{"""": ""5%""}",244616,1,North America +2024-09-11,18635,6933,"[""Monitor""]",3661.47,{},240927,0,South America +2023-11-17,18636,7578,"[""Charger""]",3004.68,{},46462,1,Europe +2023-05-08,18637,9048,"[""Phone"", ""Wireless Mouse""]",3540.19,"{"""": ""6%""}",243645,0,South America +2023-10-20,18638,1569,"[""Keyboard"", ""Charger"", ""Monitor""]",1571.66,{},289660,1,North America +2024-05-27,18639,893,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1676.78,{},261630,0,South America +2024-04-24,18640,7556,"[""Monitor"", ""Charger""]",3564.14,{},30919,0,South America +2023-08-16,18641,6275,"[""Laptop""]",4950.03,"{"""": ""24%""}",169833,0,Europe +2023-04-14,18642,2607,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3206.77,{},2304,1,Europe +2024-05-27,18643,2035,"[""Monitor"", ""Phone"", ""Keyboard""]",2698.94,"{""promo"": ""24%""}",229535,0,Africa +2024-04-07,18644,1154,"[""Monitor""]",3433.99,{},282942,1,Africa +2024-04-01,18645,9663,"[""Charger""]",550.16,"{"""": ""11%""}",48306,1,Europe +2023-12-04,18646,7926,"[""Headphones""]",4541.63,"{""seasonal"": ""25%""}",55907,0,Europe +2024-03-28,18647,5900,"[""Laptop""]",4768.41,{},167188,0,Asia +2023-10-27,18648,3282,"[""Charger"", ""Laptop""]",782.57,{},125105,1,Europe +2023-08-03,18649,7506,"[""Keyboard"", ""Laptop""]",132.45,"{"""": ""17%""}",117379,1,Europe +2024-03-16,18650,9834,"[""Charger"", ""Monitor""]",1809.22,"{""loyalty"": ""22%""}",202589,0,South America +2024-12-03,18651,4766,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3319.2,{},267822,1,Africa +2023-02-13,18652,4747,"[""Headphones"", ""Tablet""]",808.6,"{""promo"": ""22%""}",110471,0,North America +2023-04-21,18653,9052,"[""Keyboard""]",1364.46,{},176311,0,Africa +2023-04-13,18654,548,"[""Charger"", ""Headphones""]",4904.45,"{"""": ""11%""}",98812,1,Europe +2023-06-25,18655,2280,"[""Wireless Mouse""]",175.82,{},213864,0,South America +2023-09-29,18656,6668,"[""Tablet"", ""Wireless Mouse""]",4641.16,{},64121,1,South America +2024-06-04,18657,3491,"[""Monitor"", ""Keyboard""]",4968.41,{},262948,1,Africa +2023-02-22,18658,1556,"[""Monitor"", ""Charger"", ""Headphones""]",4479.79,"{"""": ""29%""}",66665,1,Africa +2023-05-22,18659,3779,"[""Phone"", ""Monitor"", ""Laptop""]",4129.35,"{""promo"": ""27%""}",22229,1,Europe +2024-05-13,18660,9483,"[""Charger""]",4413.97,"{""loyalty"": ""27%""}",170467,1,Europe +2024-08-23,18661,2645,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2942.48,{},299306,1,Africa +2024-01-10,18662,1609,"[""Monitor"", ""Keyboard"", ""Phone""]",1413.21,"{""loyalty"": ""10%""}",97130,1,South America +2023-06-26,18663,9322,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",673.27,"{""loyalty"": ""25%""}",224872,1,Asia +2024-11-11,18664,2180,"[""Tablet""]",2705.83,{},134989,1,Africa +2023-10-28,18665,2379,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1915.77,{},129133,0,Europe +2024-09-08,18666,9622,"[""Monitor""]",2692.82,"{""promo"": ""17%""}",105199,0,North America +2023-03-05,18667,8086,"[""Monitor"", ""Wireless Mouse""]",3845.26,{},153876,1,Africa +2024-10-16,18668,5111,"[""Tablet""]",1990.65,{},282165,1,South America +2023-04-04,18669,9175,"[""Headphones""]",2546.31,{},263265,1,South America +2024-12-26,18670,5504,"[""Headphones""]",4504.71,{},110273,0,Asia +2023-02-17,18671,7654,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1498.61,{},277676,0,Asia +2024-05-14,18672,6174,"[""Tablet""]",4016.37,{},295160,0,Africa +2024-11-22,18673,6485,"[""Tablet"", ""Laptop"", ""Keyboard""]",873.02,{},63155,1,Africa +2024-12-20,18674,7486,"[""Keyboard"", ""Headphones"", ""Tablet""]",1614.69,{},289852,1,South America +2023-03-30,18675,8568,"[""Headphones"", ""Wireless Mouse""]",915.28,{},28246,0,South America +2023-01-19,18676,4370,"[""Headphones""]",1372.72,"{""promo"": ""20%""}",113411,1,Africa +2023-02-18,18677,2437,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1353.1,"{""seasonal"": ""8%""}",291427,0,South America +2024-04-15,18678,5245,"[""Charger"", ""Phone""]",4430.98,{},164780,1,South America +2024-08-26,18679,3035,"[""Charger"", ""Keyboard""]",371.04,"{""seasonal"": ""18%""}",220154,0,South America +2023-05-29,18680,5635,"[""Charger"", ""Keyboard"", ""Laptop""]",540.05,"{""loyalty"": ""15%""}",139381,0,Asia +2024-10-31,18681,7287,"[""Tablet""]",1527.48,{},59909,1,South America +2023-02-01,18682,8073,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4956.94,{},83625,1,Europe +2023-10-11,18683,9484,"[""Keyboard"", ""Tablet""]",2402.27,"{""promo"": ""9%""}",36628,0,North America +2023-01-19,18684,6187,"[""Tablet"", ""Laptop""]",3114.49,{},168477,0,Africa +2024-09-08,18685,3511,"[""Keyboard"", ""Headphones""]",3778.48,{},169094,0,North America +2024-10-27,18686,7495,"[""Laptop""]",3161.93,{},224821,1,Asia +2024-10-02,18687,1003,"[""Wireless Mouse""]",1255.87,{},209578,1,Africa +2024-08-02,18688,3786,"[""Monitor""]",1574.12,"{""seasonal"": ""26%""}",171777,1,Africa +2024-03-29,18689,5456,"[""Keyboard""]",487.32,"{""promo"": ""19%""}",109520,1,Asia +2023-01-20,18690,5506,"[""Monitor"", ""Laptop""]",2782.53,"{""promo"": ""19%""}",197664,0,Africa +2023-01-14,18691,4371,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",55.16,{},292202,1,Europe +2024-01-17,18692,6003,"[""Phone"", ""Keyboard"", ""Laptop""]",2212.32,"{""loyalty"": ""8%""}",162790,0,Asia +2023-12-13,18693,3780,"[""Wireless Mouse"", ""Headphones""]",4374.81,"{"""": ""20%""}",120713,0,Europe +2024-12-17,18694,1554,"[""Monitor"", ""Wireless Mouse""]",329.24,"{"""": ""5%""}",87338,1,North America +2023-08-16,18695,5582,"[""Wireless Mouse"", ""Charger""]",463.28,"{""promo"": ""24%""}",123650,1,Asia +2024-04-02,18696,5194,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3889.43,"{""loyalty"": ""10%""}",237540,0,North America +2024-09-11,18697,7708,"[""Monitor""]",4204.56,"{""promo"": ""27%""}",103295,0,North America +2024-12-04,18698,9895,"[""Monitor"", ""Phone"", ""Tablet""]",2411.22,{},162734,0,Asia +2024-10-31,18699,5600,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2360.36,{},80872,0,Africa +2024-01-12,18700,2760,"[""Headphones"", ""Laptop""]",350.22,{},115313,1,South America +2024-11-11,18701,752,"[""Monitor"", ""Wireless Mouse""]",2393.95,{},251030,1,Europe +2024-01-17,18702,755,"[""Wireless Mouse""]",780.49,"{""promo"": ""10%""}",12931,1,South America +2023-09-22,18703,2815,"[""Keyboard"", ""Phone""]",1557.02,{},89873,0,North America +2024-06-17,18704,6789,"[""Monitor"", ""Keyboard"", ""Charger""]",1992.19,{},214460,0,North America +2023-06-17,18705,5684,"[""Tablet"", ""Wireless Mouse""]",735.35,{},218151,0,South America +2023-05-27,18706,3696,"[""Charger"", ""Tablet""]",1109.98,"{""promo"": ""25%""}",42531,0,South America +2024-10-09,18707,3764,"[""Tablet"", ""Charger"", ""Laptop""]",3782.68,{},198897,0,Asia +2023-08-03,18708,4742,"[""Wireless Mouse""]",379.9,"{""loyalty"": ""22%""}",228819,1,South America +2023-04-20,18709,2270,"[""Charger"", ""Phone""]",2129.87,"{""promo"": ""10%""}",168048,1,Europe +2023-02-14,18710,3310,"[""Monitor"", ""Phone""]",3286.76,"{""seasonal"": ""30%""}",170793,1,Europe +2024-03-19,18711,5900,"[""Phone"", ""Charger""]",4414.72,"{""loyalty"": ""14%""}",88393,0,Europe +2023-04-26,18712,5269,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1783.77,{},140876,0,North America +2023-03-20,18713,6842,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4941.47,{},89569,0,Africa +2023-08-18,18714,5637,"[""Phone""]",3096.6,"{""seasonal"": ""12%""}",172035,1,Europe +2023-11-04,18715,4894,"[""Laptop"", ""Keyboard""]",1539.91,{},118818,1,Asia +2024-03-18,18716,5251,"[""Keyboard"", ""Headphones""]",2775.39,{},15493,0,South America +2024-11-16,18717,9399,"[""Charger""]",4137.19,"{""seasonal"": ""18%""}",19564,0,South America +2024-04-10,18718,4548,"[""Tablet""]",4413.83,"{""promo"": ""27%""}",231485,0,Asia +2023-08-24,18719,6057,"[""Tablet"", ""Wireless Mouse""]",1038.11,"{""promo"": ""28%""}",108447,1,Asia +2024-07-28,18720,363,"[""Monitor"", ""Laptop"", ""Tablet""]",1574.34,"{""loyalty"": ""10%""}",106040,1,South America +2024-04-29,18721,2306,"[""Tablet"", ""Monitor"", ""Headphones""]",3519.06,{},2820,1,North America +2024-06-03,18722,1554,"[""Phone"", ""Keyboard""]",4015.63,{},240264,1,Asia +2024-09-10,18723,443,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1256.49,{},14075,0,North America +2024-11-04,18724,9770,"[""Monitor"", ""Phone""]",2717.5,{},233887,1,South America +2023-12-14,18725,5262,"[""Charger""]",4898.53,{},208457,1,North America +2024-05-30,18726,8340,"[""Monitor"", ""Keyboard""]",4843.4,{},109701,1,Asia +2024-10-14,18727,5576,"[""Monitor"", ""Headphones""]",2303.86,{},148292,1,Europe +2023-01-13,18728,9245,"[""Phone"", ""Charger""]",2610.03,{},111558,0,South America +2024-12-08,18729,6138,"[""Laptop"", ""Charger""]",3584.91,"{"""": ""10%""}",266957,1,Europe +2024-04-24,18730,5475,"[""Phone"", ""Tablet"", ""Laptop""]",1395.11,{},292339,0,Africa +2024-10-09,18731,8596,"[""Tablet"", ""Monitor"", ""Headphones""]",658.95,"{""promo"": ""26%""}",155726,0,North America +2024-01-07,18732,4166,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1846.54,"{""loyalty"": ""21%""}",60066,1,Europe +2024-04-16,18733,2641,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1543.88,{},104282,0,Asia +2023-03-08,18734,5292,"[""Laptop"", ""Phone"", ""Tablet""]",3340.95,{},146097,0,South America +2023-03-31,18735,7433,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3680.02,"{"""": ""21%""}",294559,0,Europe +2024-10-31,18736,944,"[""Tablet"", ""Wireless Mouse""]",4780.38,"{""seasonal"": ""15%""}",265817,1,Asia +2024-03-26,18737,7913,"[""Laptop"", ""Charger"", ""Monitor""]",2332.87,"{""promo"": ""30%""}",101193,1,Europe +2024-10-12,18738,9806,"[""Monitor"", ""Wireless Mouse""]",1051.59,{},177489,1,Europe +2023-07-10,18739,8809,"[""Tablet""]",2071.0,{},209553,0,North America +2024-07-30,18740,4323,"[""Wireless Mouse"", ""Keyboard""]",2627.21,{},236695,1,North America +2024-10-08,18741,5770,"[""Phone"", ""Charger"", ""Laptop""]",2826.53,{},175957,1,North America +2023-02-13,18742,4048,"[""Phone"", ""Keyboard""]",3608.03,"{""promo"": ""9%""}",259524,0,Europe +2024-02-01,18743,3383,"[""Charger"", ""Headphones"", ""Monitor""]",4251.66,{},216488,0,Africa +2023-12-19,18744,5137,"[""Keyboard"", ""Monitor""]",1163.6,"{"""": ""17%""}",33152,1,Africa +2024-06-06,18745,8676,"[""Headphones""]",2332.69,"{""loyalty"": ""13%""}",224068,1,Africa +2023-08-15,18746,5034,"[""Laptop""]",4778.08,"{""seasonal"": ""19%""}",290445,0,South America +2024-01-25,18747,7972,"[""Laptop""]",1107.75,{},80687,1,Europe +2023-12-16,18748,9646,"[""Wireless Mouse"", ""Charger""]",2298.33,"{""promo"": ""11%""}",29624,0,South America +2023-01-31,18749,1045,"[""Phone""]",4478.77,{},111983,1,North America +2024-11-15,18750,6344,"[""Monitor""]",3547.53,{},237524,0,North America +2024-10-01,18751,6762,"[""Wireless Mouse""]",2774.01,{},276418,1,Europe +2023-05-12,18752,5238,"[""Charger"", ""Keyboard"", ""Monitor""]",2900.57,"{""seasonal"": ""18%""}",267245,0,Asia +2023-08-27,18753,7036,"[""Headphones""]",2470.61,{},33008,0,South America +2024-09-11,18754,796,"[""Headphones""]",2692.46,{},49505,0,Asia +2023-01-24,18755,7665,"[""Keyboard""]",3365.76,"{""promo"": ""5%""}",91866,0,North America +2023-12-16,18756,4156,"[""Headphones"", ""Keyboard"", ""Charger""]",2830.1,{},227263,1,Europe +2024-12-21,18757,6658,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1850.29,{},65729,0,Africa +2024-01-23,18758,719,"[""Tablet""]",4064.5,"{""seasonal"": ""10%""}",280290,0,Europe +2023-08-15,18759,7021,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2809.83,{},277855,1,North America +2023-04-11,18760,2041,"[""Laptop"", ""Charger""]",3468.99,{},69664,1,North America +2023-03-10,18761,7624,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2829.87,"{""loyalty"": ""27%""}",199498,0,Europe +2023-12-17,18762,8598,"[""Monitor""]",4856.66,"{"""": ""17%""}",277232,1,Africa +2024-08-25,18763,3086,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3985.73,{},262803,0,South America +2024-12-16,18764,3681,"[""Laptop"", ""Headphones""]",2970.07,"{""seasonal"": ""5%""}",241456,0,Africa +2024-10-03,18765,8063,"[""Monitor"", ""Wireless Mouse""]",981.86,{},224145,1,Europe +2024-01-01,18766,3544,"[""Headphones"", ""Charger""]",2821.7,{},246003,1,Africa +2023-12-06,18767,1775,"[""Phone""]",2820.34,"{""seasonal"": ""19%""}",156764,1,Europe +2023-01-17,18768,5151,"[""Laptop"", ""Headphones""]",319.35,{},288118,0,Africa +2023-06-08,18769,5329,"[""Monitor""]",1775.38,"{""seasonal"": ""19%""}",62339,1,South America +2024-02-07,18770,5589,"[""Headphones"", ""Keyboard""]",265.6,"{""loyalty"": ""17%""}",144103,1,Asia +2023-03-05,18771,6609,"[""Laptop""]",786.68,{},173486,1,South America +2023-12-08,18772,1647,"[""Keyboard""]",2973.01,"{""seasonal"": ""15%""}",278885,1,South America +2023-01-08,18773,116,"[""Charger"", ""Tablet""]",2224.12,{},182100,0,South America +2023-09-10,18774,3014,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2622.94,"{""seasonal"": ""10%""}",221587,0,Africa +2023-01-14,18775,8926,"[""Keyboard"", ""Phone""]",355.8,{},298195,1,South America +2023-08-12,18776,8488,"[""Phone""]",1368.86,{},273306,1,Asia +2024-09-04,18777,4518,"[""Phone"", ""Tablet"", ""Charger""]",4228.29,"{""seasonal"": ""27%""}",129261,1,South America +2023-03-29,18778,3772,"[""Monitor""]",2986.78,{},37710,1,South America +2023-06-20,18779,220,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1519.07,"{""promo"": ""20%""}",2732,1,Europe +2023-01-30,18780,476,"[""Wireless Mouse"", ""Headphones""]",4779.14,{},75750,1,North America +2024-01-15,18781,1608,"[""Phone"", ""Tablet""]",3244.83,"{""promo"": ""30%""}",152493,0,North America +2023-10-17,18782,3906,"[""Tablet"", ""Headphones""]",934.76,{},129931,1,North America +2023-11-12,18783,3822,"[""Charger"", ""Wireless Mouse""]",4688.82,"{""seasonal"": ""24%""}",79807,1,Africa +2024-10-08,18784,3674,"[""Monitor""]",134.42,"{""loyalty"": ""27%""}",138242,0,Europe +2024-10-04,18785,906,"[""Monitor"", ""Headphones""]",700.09,{},230990,1,Europe +2024-07-29,18786,324,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1119.24,{},98626,1,Asia +2023-05-24,18787,3489,"[""Monitor"", ""Headphones""]",1936.02,"{"""": ""15%""}",233557,1,South America +2024-11-16,18788,1975,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3795.44,"{"""": ""19%""}",200559,0,Asia +2024-09-20,18789,9890,"[""Keyboard"", ""Phone""]",1896.92,"{""promo"": ""26%""}",223227,0,South America +2024-11-03,18790,5573,"[""Phone"", ""Headphones""]",2674.28,"{""promo"": ""9%""}",174439,0,Africa +2024-03-19,18791,8605,"[""Charger""]",2928.22,"{""seasonal"": ""15%""}",198571,0,North America +2023-08-22,18792,4319,"[""Headphones"", ""Monitor""]",3816.54,"{""promo"": ""24%""}",186504,1,Asia +2023-06-20,18793,7618,"[""Monitor"", ""Headphones"", ""Charger""]",919.64,"{""loyalty"": ""8%""}",164163,1,Europe +2024-05-09,18794,5803,"[""Laptop"", ""Tablet""]",1883.24,"{""seasonal"": ""18%""}",154877,0,Europe +2024-01-18,18795,6158,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2297.49,{},191237,1,Africa +2023-11-10,18796,453,"[""Wireless Mouse""]",3233.9,{},123504,1,Africa +2023-12-21,18797,159,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4426.89,"{""seasonal"": ""8%""}",99734,0,Asia +2023-04-19,18798,3475,"[""Tablet"", ""Laptop""]",4131.99,"{""seasonal"": ""26%""}",179748,1,South America +2024-09-14,18799,5594,"[""Headphones"", ""Wireless Mouse""]",4259.36,"{""seasonal"": ""12%""}",128911,1,Asia +2023-03-16,18800,8288,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4170.89,{},202809,1,Asia +2023-06-08,18801,5864,"[""Monitor"", ""Headphones""]",3347.25,{},120624,0,North America +2024-07-29,18802,9091,"[""Wireless Mouse""]",276.18,{},37897,0,South America +2023-12-26,18803,4635,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",319.51,"{""seasonal"": ""20%""}",166446,0,Africa +2023-03-04,18804,1859,"[""Wireless Mouse""]",1077.88,{},83946,0,Europe +2024-07-11,18805,4081,"[""Phone"", ""Wireless Mouse""]",754.06,"{""seasonal"": ""6%""}",128006,0,Africa +2024-04-01,18806,5234,"[""Tablet"", ""Wireless Mouse""]",4209.98,"{""promo"": ""24%""}",240728,0,Europe +2024-08-23,18807,3387,"[""Phone"", ""Laptop""]",2300.85,"{""loyalty"": ""9%""}",196930,1,North America +2024-07-17,18808,2190,"[""Monitor""]",1037.46,"{"""": ""30%""}",134439,1,Asia +2024-08-04,18809,3642,"[""Laptop""]",4682.78,{},270566,1,Europe +2024-11-13,18810,3975,"[""Tablet"", ""Charger""]",3318.05,"{"""": ""19%""}",226752,0,Asia +2023-02-23,18811,55,"[""Headphones"", ""Wireless Mouse""]",4084.24,"{""seasonal"": ""16%""}",146067,0,Europe +2024-08-18,18812,408,"[""Laptop"", ""Keyboard""]",656.94,"{"""": ""10%""}",96614,1,North America +2024-04-05,18813,7557,"[""Phone"", ""Charger""]",1451.5,"{"""": ""10%""}",75883,0,Europe +2023-09-30,18814,1711,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4770.37,{},101541,1,South America +2023-02-05,18815,1363,"[""Monitor"", ""Wireless Mouse""]",837.03,"{""seasonal"": ""21%""}",211818,1,Europe +2023-05-03,18816,8264,"[""Monitor"", ""Keyboard"", ""Phone""]",3992.49,"{""seasonal"": ""20%""}",148713,1,Asia +2023-10-30,18817,2847,"[""Headphones"", ""Monitor""]",4611.13,"{""seasonal"": ""22%""}",14996,0,South America +2023-02-09,18818,863,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4209.59,{},40090,1,Asia +2024-06-11,18819,897,"[""Laptop"", ""Tablet""]",417.85,"{""promo"": ""12%""}",73441,0,South America +2024-02-01,18820,6171,"[""Headphones"", ""Laptop"", ""Charger""]",1071.28,"{""promo"": ""9%""}",259702,0,North America +2023-02-20,18821,4365,"[""Phone"", ""Laptop""]",4452.43,"{"""": ""7%""}",126846,1,South America +2024-09-23,18822,5190,"[""Laptop"", ""Charger""]",2551.81,{},202815,0,Asia +2023-10-06,18823,7984,"[""Headphones"", ""Monitor""]",3663.75,{},3136,0,North America +2023-04-01,18824,1622,"[""Charger""]",3583.33,{},85953,0,Africa +2024-10-18,18825,2490,"[""Keyboard""]",3424.53,{},108942,1,Asia +2023-04-06,18826,3121,"[""Tablet"", ""Charger"", ""Phone""]",2582.42,{},84805,0,Europe +2023-09-15,18827,4986,"[""Wireless Mouse""]",3915.28,{},63387,0,Europe +2024-07-28,18828,2509,"[""Wireless Mouse""]",3800.74,"{"""": ""30%""}",148659,1,South America +2024-03-07,18829,5142,"[""Charger"", ""Headphones""]",1585.3,"{""promo"": ""9%""}",180939,1,South America +2023-02-12,18830,7449,"[""Wireless Mouse""]",706.16,"{""loyalty"": ""13%""}",282542,0,Africa +2023-09-20,18831,5176,"[""Headphones"", ""Charger""]",1953.85,{},257061,0,Africa +2023-07-25,18832,4099,"[""Keyboard"", ""Headphones""]",4705.12,"{""seasonal"": ""27%""}",6445,0,Africa +2023-04-08,18833,4947,"[""Tablet""]",1189.67,"{""promo"": ""29%""}",193228,1,Europe +2023-09-26,18834,511,"[""Monitor"", ""Phone""]",483.45,"{"""": ""25%""}",177212,1,Africa +2023-02-11,18835,7460,"[""Laptop"", ""Monitor"", ""Phone""]",2218.04,{},144147,0,Europe +2023-06-07,18836,1866,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",452.49,"{""seasonal"": ""5%""}",171496,0,Asia +2024-05-11,18837,1854,"[""Tablet""]",671.55,{},198637,0,Asia +2024-10-21,18838,6079,"[""Wireless Mouse"", ""Headphones""]",2231.18,{},149983,1,South America +2024-10-03,18839,6057,"[""Keyboard"", ""Laptop""]",993.39,"{"""": ""19%""}",169632,1,Africa +2023-03-16,18840,2137,"[""Keyboard"", ""Wireless Mouse""]",4022.83,"{"""": ""21%""}",71460,0,South America +2023-12-15,18841,9743,"[""Laptop"", ""Keyboard"", ""Tablet""]",546.63,"{""promo"": ""25%""}",222863,0,North America +2023-05-26,18842,916,"[""Headphones"", ""Tablet"", ""Monitor""]",3502.05,{},46557,0,North America +2024-01-09,18843,9201,"[""Phone"", ""Wireless Mouse""]",4769.38,{},11479,1,North America +2024-04-15,18844,5600,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2480.93,{},240743,0,Asia +2023-01-24,18845,26,"[""Monitor""]",3781.19,{},230913,0,Asia +2024-08-27,18846,600,"[""Tablet""]",4655.78,{},220116,0,Europe +2023-06-01,18847,8945,"[""Phone"", ""Laptop""]",4893.61,{},199664,1,Asia +2023-11-01,18848,2617,"[""Phone"", ""Tablet"", ""Laptop""]",4006.99,{},131534,0,Europe +2024-05-18,18849,7155,"[""Laptop""]",1193.09,{},223620,1,South America +2023-03-24,18850,4299,"[""Headphones"", ""Laptop"", ""Keyboard""]",2927.16,"{"""": ""20%""}",214997,1,South America +2024-03-04,18851,6008,"[""Phone"", ""Headphones""]",1842.49,{},172669,1,South America +2024-09-13,18852,7543,"[""Wireless Mouse"", ""Charger""]",2209.9,"{""promo"": ""6%""}",166329,1,Asia +2023-01-14,18853,416,"[""Headphones"", ""Charger""]",2865.68,{},275727,0,South America +2023-03-27,18854,7201,"[""Keyboard""]",1300.65,"{""promo"": ""9%""}",19736,0,Africa +2023-08-26,18855,8550,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3921.88,"{"""": ""24%""}",8534,0,Asia +2024-08-06,18856,6834,"[""Tablet"", ""Laptop"", ""Keyboard""]",914.12,{},109155,1,Europe +2023-10-22,18857,7241,"[""Keyboard"", ""Phone""]",2315.82,"{""loyalty"": ""16%""}",55659,1,North America +2023-11-22,18858,702,"[""Phone"", ""Monitor""]",1050.39,{},107727,1,North America +2023-02-11,18859,141,"[""Keyboard""]",4761.0,{},288527,1,North America +2023-07-11,18860,3442,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3308.42,"{"""": ""12%""}",146520,0,Asia +2023-04-24,18861,9150,"[""Charger""]",4897.13,"{""promo"": ""28%""}",186112,0,North America +2023-10-19,18862,2041,"[""Keyboard"", ""Phone"", ""Charger""]",196.07,"{""loyalty"": ""8%""}",189577,1,Africa +2023-05-30,18863,9010,"[""Phone"", ""Headphones"", ""Laptop""]",3168.08,"{""promo"": ""16%""}",57362,1,Asia +2024-03-18,18864,2572,"[""Charger"", ""Tablet"", ""Monitor""]",940.44,{},218091,1,South America +2023-05-08,18865,8667,"[""Headphones"", ""Laptop"", ""Keyboard""]",4234.47,{},80790,1,North America +2023-12-03,18866,7855,"[""Wireless Mouse"", ""Tablet""]",2329.42,{},265203,1,North America +2024-09-16,18867,4379,"[""Phone""]",4621.98,{},100380,1,Asia +2023-12-06,18868,7378,"[""Phone"", ""Headphones""]",218.52,"{""promo"": ""13%""}",136917,0,North America +2024-03-10,18869,780,"[""Keyboard""]",1930.7,{},110909,1,Asia +2024-12-23,18870,2095,"[""Laptop"", ""Phone""]",4408.29,"{""promo"": ""24%""}",69203,0,North America +2024-05-22,18871,3922,"[""Tablet""]",2014.96,{},100612,0,Africa +2023-01-31,18872,451,"[""Laptop"", ""Tablet""]",2837.9,{},1577,1,Asia +2024-10-16,18873,1944,"[""Charger"", ""Monitor""]",2655.27,"{""seasonal"": ""12%""}",43068,0,North America +2024-06-28,18874,506,"[""Keyboard"", ""Laptop""]",3362.71,{},44750,0,Europe +2023-08-14,18875,7196,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2708.74,{},189337,0,South America +2023-09-03,18876,8265,"[""Tablet"", ""Charger""]",1450.0,"{""loyalty"": ""24%""}",37540,1,North America +2024-06-23,18877,5573,"[""Tablet""]",3214.4,"{"""": ""29%""}",188512,0,Europe +2023-04-27,18878,1967,"[""Wireless Mouse""]",1967.93,{},58006,0,Europe +2024-06-01,18879,5545,"[""Phone"", ""Keyboard"", ""Charger""]",1292.1,"{"""": ""14%""}",96421,1,South America +2023-09-18,18880,7712,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",291.96,"{""loyalty"": ""23%""}",149884,1,South America +2023-09-26,18881,3355,"[""Charger"", ""Phone""]",1444.11,"{""loyalty"": ""27%""}",96680,1,Asia +2024-11-19,18882,204,"[""Phone""]",4858.13,{},163294,0,Africa +2023-07-11,18883,510,"[""Headphones"", ""Laptop""]",3908.61,"{""loyalty"": ""24%""}",216636,1,South America +2023-06-17,18884,5603,"[""Headphones""]",978.06,"{""promo"": ""5%""}",53366,0,Asia +2024-12-01,18885,3719,"[""Charger""]",1508.69,"{""seasonal"": ""10%""}",72250,1,Asia +2024-12-20,18886,7108,"[""Phone"", ""Charger""]",1215.52,{},233481,0,Europe +2024-04-01,18887,2043,"[""Monitor""]",1479.4,"{""loyalty"": ""25%""}",48065,1,South America +2024-12-25,18888,4491,"[""Headphones""]",1936.44,{},176786,1,North America +2023-06-06,18889,8324,"[""Keyboard"", ""Laptop""]",1736.27,{},220885,1,Europe +2024-10-30,18890,5762,"[""Phone""]",992.04,{},132004,0,South America +2023-06-12,18891,9160,"[""Keyboard""]",71.02,{},46171,1,South America +2023-11-09,18892,9699,"[""Monitor"", ""Phone""]",1852.46,"{""seasonal"": ""19%""}",292780,0,South America +2023-12-16,18893,3828,"[""Tablet"", ""Wireless Mouse""]",4268.51,"{""loyalty"": ""6%""}",118665,1,Asia +2023-07-03,18894,6733,"[""Charger""]",2004.61,{},191618,1,Europe +2023-07-12,18895,9204,"[""Charger"", ""Keyboard""]",4647.47,{},16290,0,North America +2023-12-24,18896,5836,"[""Phone""]",664.2,"{""seasonal"": ""28%""}",133287,1,Europe +2024-12-15,18897,2616,"[""Charger"", ""Phone""]",3240.85,"{""seasonal"": ""25%""}",194326,1,South America +2023-01-05,18898,7869,"[""Tablet"", ""Keyboard""]",3142.8,"{""loyalty"": ""20%""}",276549,1,North America +2023-02-21,18899,5368,"[""Tablet"", ""Headphones""]",1000.66,{},28387,0,North America +2024-12-27,18900,8837,"[""Charger"", ""Monitor""]",4256.03,"{"""": ""27%""}",181964,1,South America +2023-11-05,18901,953,"[""Headphones"", ""Monitor""]",2272.32,{},159313,0,Africa +2023-10-26,18902,5880,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",520.86,"{"""": ""5%""}",141397,0,Europe +2024-08-24,18903,6280,"[""Monitor""]",2878.49,"{""seasonal"": ""13%""}",258845,1,Africa +2023-08-10,18904,2591,"[""Headphones"", ""Keyboard""]",4783.22,{},76169,0,Africa +2024-06-06,18905,4449,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1514.16,"{""promo"": ""24%""}",208101,1,South America +2023-04-17,18906,8775,"[""Monitor"", ""Laptop""]",1023.34,{},162744,0,South America +2023-03-12,18907,584,"[""Charger"", ""Laptop""]",3473.53,"{""loyalty"": ""18%""}",275075,1,Asia +2024-03-23,18908,1179,"[""Laptop"", ""Headphones"", ""Charger""]",4161.18,{},68404,0,Asia +2024-01-31,18909,7522,"[""Headphones"", ""Charger"", ""Monitor""]",2782.76,{},284009,1,North America +2023-11-16,18910,68,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4139.2,"{"""": ""22%""}",14746,1,South America +2024-10-18,18911,4354,"[""Tablet"", ""Charger""]",3882.09,"{""loyalty"": ""11%""}",162417,1,Africa +2024-06-07,18912,8127,"[""Headphones""]",2858.0,{},3671,1,South America +2023-10-28,18913,2140,"[""Charger"", ""Monitor""]",599.98,{},166138,1,Asia +2023-01-02,18914,4074,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",162.44,{},161395,1,North America +2024-07-21,18915,7008,"[""Phone""]",1934.32,{},223210,1,North America +2024-07-29,18916,1592,"[""Keyboard"", ""Tablet""]",3615.17,{},45371,0,Africa +2024-02-24,18917,5347,"[""Laptop"", ""Monitor""]",540.89,"{""promo"": ""18%""}",130685,1,Africa +2023-05-19,18918,2867,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4937.89,"{""loyalty"": ""9%""}",17703,0,Africa +2023-12-04,18919,2224,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1721.52,{},32232,0,Asia +2023-08-29,18920,6126,"[""Keyboard""]",1279.9,"{"""": ""25%""}",82224,0,Europe +2024-12-26,18921,2817,"[""Monitor"", ""Tablet""]",591.83,{},39530,1,Africa +2023-04-19,18922,9781,"[""Headphones""]",2347.34,"{""promo"": ""29%""}",139101,1,North America +2024-08-19,18923,6196,"[""Phone"", ""Tablet"", ""Charger""]",4801.78,{},196586,1,Europe +2024-06-08,18924,5674,"[""Charger""]",1183.61,{},204919,0,North America +2023-11-19,18925,9019,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",277.47,"{""loyalty"": ""20%""}",86455,0,North America +2023-02-03,18926,1416,"[""Keyboard"", ""Tablet""]",2147.23,{},31252,0,Europe +2024-04-14,18927,379,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1800.66,"{""seasonal"": ""16%""}",16660,0,Asia +2024-03-31,18928,9943,"[""Keyboard""]",3892.31,{},237086,1,Europe +2024-10-31,18929,3830,"[""Tablet""]",4967.8,{},104271,0,South America +2023-08-14,18930,6149,"[""Tablet"", ""Headphones"", ""Laptop""]",4691.59,"{""seasonal"": ""17%""}",59645,0,North America +2024-02-21,18931,4921,"[""Monitor""]",440.95,"{""loyalty"": ""27%""}",195114,0,Asia +2023-10-27,18932,3109,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1100.05,{},192865,0,Europe +2024-04-28,18933,7175,"[""Headphones"", ""Keyboard"", ""Charger""]",3304.1,{},30240,1,South America +2023-02-15,18934,5057,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1552.88,{},64675,1,Asia +2024-01-17,18935,5055,"[""Monitor"", ""Headphones"", ""Phone""]",1088.85,{},157614,0,North America +2024-04-11,18936,6758,"[""Wireless Mouse""]",643.61,"{""loyalty"": ""26%""}",172211,1,Asia +2024-03-22,18937,7362,"[""Wireless Mouse""]",2784.56,{},181262,0,Asia +2024-10-01,18938,6536,"[""Wireless Mouse"", ""Headphones""]",4952.28,{},22343,0,Asia +2024-12-05,18939,6628,"[""Headphones"", ""Keyboard"", ""Laptop""]",1752.71,"{""loyalty"": ""29%""}",169324,0,North America +2024-04-04,18940,8902,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4955.93,"{""loyalty"": ""18%""}",180330,0,Africa +2024-09-09,18941,9058,"[""Monitor"", ""Phone""]",537.17,{},299990,0,Asia +2023-05-28,18942,5929,"[""Laptop"", ""Headphones"", ""Phone""]",3749.48,"{""loyalty"": ""18%""}",174979,0,North America +2024-12-18,18943,6725,"[""Keyboard"", ""Laptop""]",1521.12,{},252089,0,South America +2023-01-13,18944,6277,"[""Laptop""]",4404.38,{},147611,0,South America +2023-01-22,18945,1134,"[""Monitor"", ""Laptop""]",975.3,{},250349,1,Asia +2023-07-12,18946,5621,"[""Wireless Mouse"", ""Monitor""]",210.02,"{""seasonal"": ""20%""}",294619,1,Africa +2024-03-02,18947,3290,"[""Keyboard"", ""Wireless Mouse""]",1116.98,{},217922,1,South America +2023-10-19,18948,1369,"[""Charger""]",2332.64,{},149298,0,South America +2023-07-01,18949,138,"[""Charger""]",113.64,"{""seasonal"": ""13%""}",10597,1,Asia +2024-07-01,18950,8296,"[""Headphones"", ""Laptop"", ""Phone""]",4637.84,{},103901,0,North America +2024-03-30,18951,3390,"[""Laptop""]",1583.07,{},240764,0,South America +2023-08-25,18952,5960,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1259.95,{},4920,1,South America +2023-03-24,18953,1311,"[""Monitor"", ""Charger""]",113.38,"{""seasonal"": ""20%""}",265789,1,Europe +2024-04-17,18954,1837,"[""Keyboard"", ""Monitor"", ""Charger""]",710.85,"{""loyalty"": ""8%""}",176903,1,Europe +2023-05-05,18955,7679,"[""Keyboard"", ""Laptop""]",1013.97,"{""promo"": ""13%""}",58636,1,North America +2024-06-07,18956,5121,"[""Keyboard"", ""Headphones""]",1727.2,"{"""": ""16%""}",44363,0,Asia +2024-06-27,18957,9791,"[""Tablet"", ""Wireless Mouse""]",3267.04,"{"""": ""9%""}",266039,0,South America +2023-12-09,18958,855,"[""Phone""]",2279.94,{},77255,1,Asia +2024-12-16,18959,2987,"[""Charger"", ""Phone"", ""Keyboard""]",1945.78,"{""seasonal"": ""20%""}",15998,1,Asia +2024-01-22,18960,3983,"[""Laptop"", ""Monitor""]",4470.04,"{"""": ""5%""}",16680,1,Asia +2024-04-23,18961,1378,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3194.05,"{""loyalty"": ""27%""}",266061,0,Asia +2024-07-05,18962,8661,"[""Wireless Mouse""]",1920.01,"{""seasonal"": ""15%""}",124227,1,Asia +2024-11-24,18963,5166,"[""Phone""]",1674.57,"{""seasonal"": ""29%""}",246211,1,Africa +2024-08-25,18964,9164,"[""Tablet""]",261.27,{},237602,1,Africa +2024-06-30,18965,8910,"[""Laptop""]",132.18,{},59925,1,Asia +2023-10-13,18966,218,"[""Tablet"", ""Charger""]",268.75,"{"""": ""25%""}",224579,1,Africa +2023-03-27,18967,7761,"[""Tablet"", ""Monitor"", ""Headphones""]",3564.67,"{"""": ""13%""}",117809,1,Africa +2023-09-04,18968,2937,"[""Laptop"", ""Monitor""]",4186.58,"{""loyalty"": ""23%""}",193120,0,North America +2023-12-11,18969,9680,"[""Charger""]",2619.77,"{""promo"": ""9%""}",39967,0,Asia +2023-08-12,18970,8427,"[""Tablet""]",782.48,{},85748,0,North America +2024-06-20,18971,5933,"[""Wireless Mouse"", ""Headphones""]",1942.17,"{""loyalty"": ""17%""}",135230,0,Asia +2023-12-01,18972,285,"[""Charger"", ""Tablet""]",526.61,"{""seasonal"": ""5%""}",190577,0,Africa +2023-11-17,18973,2766,"[""Charger"", ""Monitor""]",2153.99,{},127005,1,Europe +2023-12-05,18974,4457,"[""Headphones"", ""Tablet"", ""Laptop""]",3800.84,"{""seasonal"": ""5%""}",47526,0,Asia +2023-08-17,18975,5232,"[""Keyboard"", ""Laptop"", ""Phone""]",3943.69,{},55485,1,Europe +2023-02-27,18976,2935,"[""Wireless Mouse"", ""Phone""]",4325.78,"{""promo"": ""11%""}",263102,1,Europe +2024-04-02,18977,8044,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4362.19,{},112657,1,North America +2023-02-25,18978,4169,"[""Charger""]",2496.79,"{"""": ""15%""}",12489,0,Europe +2024-03-01,18979,2806,"[""Laptop""]",1268.7,"{""promo"": ""10%""}",48246,0,South America +2023-02-25,18980,5757,"[""Wireless Mouse""]",157.3,"{"""": ""12%""}",77960,1,North America +2024-03-22,18981,7374,"[""Headphones"", ""Keyboard"", ""Tablet""]",4206.43,{},220754,0,Asia +2023-06-08,18982,4472,"[""Keyboard""]",4551.22,{},175029,0,Africa +2024-01-27,18983,6854,"[""Wireless Mouse""]",2950.64,{},42991,1,Africa +2024-12-12,18984,625,"[""Monitor"", ""Keyboard"", ""Phone""]",4729.42,{},228604,1,South America +2024-06-23,18985,2136,"[""Keyboard"", ""Headphones"", ""Laptop""]",1175.27,"{""seasonal"": ""24%""}",236543,0,Africa +2023-07-16,18986,7223,"[""Tablet"", ""Laptop"", ""Phone""]",2171.77,"{""promo"": ""22%""}",194777,1,Europe +2024-10-21,18987,6595,"[""Phone""]",1873.73,"{"""": ""18%""}",109850,0,Asia +2023-08-21,18988,2062,"[""Laptop"", ""Headphones"", ""Phone""]",4614.46,"{""promo"": ""22%""}",22817,1,South America +2024-01-28,18989,2238,"[""Charger"", ""Wireless Mouse""]",4039.56,"{""seasonal"": ""16%""}",228124,1,Europe +2023-05-21,18990,1807,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3506.56,"{""loyalty"": ""11%""}",159385,1,South America +2024-04-07,18991,9910,"[""Wireless Mouse""]",2466.92,"{"""": ""23%""}",160723,0,Europe +2024-06-21,18992,1177,"[""Keyboard"", ""Laptop"", ""Tablet""]",2226.79,"{""loyalty"": ""29%""}",143096,0,Asia +2023-04-07,18993,1958,"[""Phone"", ""Keyboard"", ""Tablet""]",3674.94,{},159337,1,Europe +2023-08-04,18994,3729,"[""Keyboard""]",4505.79,{},181440,1,South America +2023-01-05,18995,3297,"[""Wireless Mouse"", ""Phone""]",1733.13,"{"""": ""6%""}",237304,1,Asia +2024-02-01,18996,7515,"[""Wireless Mouse"", ""Laptop""]",571.95,{},241965,0,South America +2023-05-04,18997,3360,"[""Phone""]",1823.15,{},286633,1,Asia +2024-07-20,18998,1054,"[""Monitor""]",832.91,"{""loyalty"": ""26%""}",72430,1,North America +2024-08-13,18999,6857,"[""Charger""]",2884.87,"{""seasonal"": ""10%""}",21998,1,Asia +2024-10-06,19000,3351,"[""Headphones"", ""Laptop"", ""Keyboard""]",1413.33,{},174656,0,South America +2023-07-16,19001,8764,"[""Charger"", ""Headphones""]",404.77,"{""promo"": ""12%""}",229553,0,Europe +2023-05-13,19002,8325,"[""Keyboard"", ""Wireless Mouse""]",3534.98,{},226143,1,Europe +2023-10-29,19003,9147,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",116.75,{},257615,0,South America +2024-03-21,19004,3078,"[""Charger""]",1476.09,{},21169,1,Europe +2023-11-28,19005,3476,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1626.19,{},153658,0,Asia +2023-12-10,19006,6708,"[""Monitor"", ""Phone"", ""Laptop""]",3795.54,{},103186,1,North America +2023-04-09,19007,5709,"[""Headphones""]",2875.41,{},116347,0,Europe +2023-04-21,19008,9504,"[""Headphones"", ""Laptop"", ""Tablet""]",4682.45,{},2461,1,Africa +2024-06-17,19009,7161,"[""Wireless Mouse""]",1028.39,{},283527,0,South America +2024-08-17,19010,104,"[""Keyboard"", ""Phone""]",3370.94,{},166981,1,Europe +2023-03-04,19011,9089,"[""Keyboard"", ""Tablet""]",3641.87,"{""promo"": ""6%""}",106251,1,Asia +2024-10-05,19012,8754,"[""Charger"", ""Phone"", ""Laptop""]",406.39,{},243583,0,Africa +2024-06-08,19013,4209,"[""Wireless Mouse""]",1654.14,{},237979,1,Asia +2024-12-02,19014,2891,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2652.76,"{""seasonal"": ""24%""}",20135,1,Europe +2023-01-24,19015,4728,"[""Headphones"", ""Keyboard""]",2692.14,{},150184,0,South America +2024-10-05,19016,3082,"[""Monitor"", ""Wireless Mouse""]",263.92,"{""loyalty"": ""8%""}",201708,1,South America +2023-03-24,19017,5920,"[""Headphones"", ""Phone""]",2301.87,"{""loyalty"": ""8%""}",199167,0,Asia +2023-04-15,19018,8666,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4231.81,{},59236,1,Europe +2024-07-18,19019,8083,"[""Laptop""]",471.2,"{""loyalty"": ""25%""}",13904,1,Europe +2023-01-29,19020,9139,"[""Wireless Mouse"", ""Phone""]",1588.43,"{"""": ""18%""}",285627,1,South America +2024-01-17,19021,1822,"[""Headphones""]",727.66,{},158838,1,Europe +2024-07-03,19022,4583,"[""Laptop"", ""Tablet"", ""Keyboard""]",520.98,"{""seasonal"": ""12%""}",84005,1,Africa +2024-10-15,19023,6691,"[""Charger"", ""Wireless Mouse""]",729.9,{},262067,0,North America +2023-09-11,19024,3116,"[""Tablet""]",2108.69,{},290736,1,Europe +2024-03-19,19025,6448,"[""Laptop"", ""Wireless Mouse""]",2598.27,"{""loyalty"": ""16%""}",62938,0,Africa +2024-03-04,19026,4118,"[""Charger""]",2758.07,{},159293,1,North America +2023-07-26,19027,8938,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",221.47,"{""seasonal"": ""13%""}",167924,1,Europe +2024-11-11,19028,1275,"[""Keyboard"", ""Laptop"", ""Phone""]",509.77,{},54118,1,Europe +2023-01-24,19029,1526,"[""Charger""]",3496.71,{},294505,0,Africa +2023-11-15,19030,3414,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3916.31,"{""loyalty"": ""18%""}",90563,0,South America +2023-10-24,19031,1383,"[""Wireless Mouse"", ""Keyboard""]",828.68,"{""seasonal"": ""14%""}",289983,0,South America +2024-04-17,19032,782,"[""Wireless Mouse""]",669.3,"{""promo"": ""28%""}",62484,0,Asia +2023-09-09,19033,6430,"[""Tablet"", ""Headphones"", ""Phone""]",3971.5,{},108347,1,North America +2024-10-08,19034,8678,"[""Keyboard"", ""Charger"", ""Headphones""]",3551.8,{},109187,1,South America +2023-06-13,19035,9419,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2000.2,"{"""": ""13%""}",64278,0,Africa +2024-02-24,19036,5801,"[""Phone""]",3592.3,{},269037,0,South America +2023-09-10,19037,9201,"[""Monitor""]",4590.52,{},17261,1,Africa +2023-11-02,19038,3062,"[""Phone"", ""Tablet"", ""Headphones""]",2007.59,{},226499,0,Europe +2023-05-22,19039,6948,"[""Phone"", ""Laptop""]",3431.64,{},111918,0,Africa +2024-09-22,19040,9763,"[""Keyboard""]",305.81,{},11288,1,Africa +2024-06-13,19041,5605,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4108.83,{},240054,0,South America +2023-12-17,19042,6145,"[""Laptop"", ""Headphones"", ""Charger""]",1811.43,"{"""": ""18%""}",78268,1,Africa +2023-08-18,19043,6294,"[""Laptop"", ""Charger""]",3699.18,{},172630,0,Africa +2024-05-05,19044,2146,"[""Monitor"", ""Headphones""]",1981.46,"{""promo"": ""30%""}",16139,1,Africa +2024-10-21,19045,9165,"[""Laptop""]",57.71,"{""seasonal"": ""16%""}",45705,1,South America +2024-04-10,19046,5272,"[""Charger""]",1247.13,"{""seasonal"": ""13%""}",250359,0,Africa +2023-04-20,19047,3672,"[""Monitor"", ""Headphones"", ""Keyboard""]",818.58,{},4605,1,Asia +2024-11-01,19048,2660,"[""Laptop""]",2096.27,"{""promo"": ""14%""}",201702,0,Europe +2023-03-17,19049,7286,"[""Headphones"", ""Keyboard""]",1547.42,{},176029,0,Asia +2024-11-05,19050,8583,"[""Monitor"", ""Charger""]",3750.87,{},108185,0,Europe +2023-01-24,19051,4289,"[""Tablet"", ""Laptop""]",306.02,"{""seasonal"": ""14%""}",84256,0,Africa +2023-11-24,19052,6846,"[""Phone"", ""Wireless Mouse""]",2441.51,"{"""": ""11%""}",4096,0,South America +2023-11-23,19053,7138,"[""Tablet""]",3137.68,"{""loyalty"": ""30%""}",77041,0,Asia +2023-06-20,19054,8519,"[""Headphones"", ""Laptop""]",2232.41,{},262393,1,Asia +2023-01-19,19055,4741,"[""Monitor""]",3475.83,{},103089,1,Europe +2023-06-16,19056,828,"[""Charger"", ""Keyboard"", ""Tablet""]",2922.42,{},121205,0,Africa +2024-07-27,19057,5272,"[""Phone""]",4097.64,"{"""": ""7%""}",180421,0,North America +2024-08-23,19058,2128,"[""Wireless Mouse""]",1290.76,{},105762,1,South America +2023-08-26,19059,6440,"[""Headphones""]",1677.38,{},18345,1,Europe +2024-04-29,19060,847,"[""Phone""]",2162.13,{},83824,1,Asia +2023-08-05,19061,2419,"[""Tablet"", ""Charger""]",4035.83,"{""loyalty"": ""26%""}",11725,0,South America +2024-04-10,19062,1712,"[""Headphones""]",2767.89,"{""promo"": ""24%""}",94282,0,Africa +2024-02-19,19063,2034,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2996.06,{},199395,0,Asia +2023-07-08,19064,9778,"[""Keyboard"", ""Tablet""]",1967.02,{},179836,1,South America +2023-12-17,19065,5464,"[""Charger"", ""Wireless Mouse""]",2077.12,"{"""": ""18%""}",39147,1,Europe +2024-11-18,19066,9763,"[""Charger"", ""Laptop"", ""Headphones""]",4622.17,"{"""": ""7%""}",291914,0,Asia +2023-01-15,19067,116,"[""Monitor""]",688.91,{},39840,1,South America +2024-10-17,19068,9204,"[""Phone"", ""Laptop""]",2203.05,{},19997,0,Asia +2023-10-20,19069,5851,"[""Wireless Mouse"", ""Phone""]",1818.82,{},23232,1,North America +2023-12-23,19070,5288,"[""Phone"", ""Tablet"", ""Laptop""]",2308.91,{},14888,1,Africa +2023-05-13,19071,8014,"[""Laptop"", ""Monitor""]",2474.17,{},191640,1,South America +2023-10-26,19072,1336,"[""Wireless Mouse""]",4126.22,{},121225,0,North America +2023-12-25,19073,862,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",289.86,"{""promo"": ""12%""}",95518,1,Asia +2024-04-09,19074,7662,"[""Monitor""]",1100.1,"{""seasonal"": ""28%""}",132220,0,North America +2023-09-05,19075,2126,"[""Phone""]",289.96,{},38807,0,Africa +2023-06-08,19076,6303,"[""Headphones""]",3949.93,"{""loyalty"": ""20%""}",172044,1,Africa +2023-08-27,19077,4232,"[""Monitor""]",2159.19,{},157761,1,North America +2023-01-04,19078,4768,"[""Wireless Mouse""]",2476.84,"{""loyalty"": ""10%""}",46266,0,North America +2024-01-25,19079,7335,"[""Headphones"", ""Keyboard"", ""Laptop""]",2831.33,"{""promo"": ""5%""}",99447,1,Africa +2024-02-11,19080,9874,"[""Headphones""]",4699.85,"{""promo"": ""21%""}",45258,1,Asia +2023-03-21,19081,7150,"[""Monitor"", ""Charger"", ""Keyboard""]",778.51,{},78837,1,Asia +2023-04-01,19082,2482,"[""Headphones"", ""Phone""]",870.59,"{"""": ""30%""}",51503,1,Africa +2024-01-23,19083,6764,"[""Keyboard""]",1025.84,"{""seasonal"": ""30%""}",202026,0,Africa +2024-08-27,19084,7360,"[""Headphones"", ""Laptop"", ""Tablet""]",2606.39,{},256366,1,South America +2024-04-24,19085,1008,"[""Headphones""]",1649.26,{},182290,0,South America +2024-04-13,19086,4819,"[""Tablet"", ""Phone""]",4165.96,"{"""": ""20%""}",95335,0,North America +2023-11-29,19087,6470,"[""Wireless Mouse""]",3919.41,"{""seasonal"": ""11%""}",3304,1,North America +2024-06-28,19088,3352,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",723.48,{},109408,1,South America +2024-04-12,19089,3794,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3352.77,"{""promo"": ""5%""}",243590,0,North America +2024-08-22,19090,2050,"[""Keyboard""]",2448.04,"{""promo"": ""16%""}",232819,1,Europe +2023-10-04,19091,7797,"[""Laptop"", ""Tablet""]",597.6,"{"""": ""16%""}",225250,1,South America +2024-11-25,19092,4741,"[""Keyboard""]",133.59,"{""promo"": ""18%""}",244876,0,Africa +2023-05-23,19093,7471,"[""Monitor""]",3809.89,{},32232,0,Africa +2024-11-28,19094,6305,"[""Wireless Mouse""]",2807.36,"{""loyalty"": ""18%""}",274054,1,Europe +2024-01-18,19095,8466,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4686.22,"{""seasonal"": ""5%""}",215590,1,Europe +2024-01-03,19096,6184,"[""Tablet"", ""Phone"", ""Monitor""]",2618.44,{},155436,0,South America +2023-08-24,19097,8113,"[""Monitor""]",4487.36,{},103874,1,South America +2023-02-27,19098,5375,"[""Keyboard"", ""Tablet"", ""Monitor""]",534.43,{},82642,0,South America +2023-12-26,19099,9594,"[""Headphones""]",3505.77,"{""seasonal"": ""23%""}",281060,0,Africa +2023-09-21,19100,7316,"[""Wireless Mouse""]",3077.19,"{"""": ""16%""}",195425,1,Europe +2023-09-17,19101,3302,"[""Tablet"", ""Monitor"", ""Laptop""]",4408.95,{},43741,1,Europe +2024-04-15,19102,8005,"[""Phone""]",1437.45,{},17920,1,North America +2024-02-20,19103,6836,"[""Monitor""]",4421.99,"{""seasonal"": ""24%""}",289125,1,Europe +2023-04-21,19104,8850,"[""Monitor""]",4455.56,"{""loyalty"": ""12%""}",245466,0,North America +2024-09-17,19105,4776,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4699.84,{},90129,0,Africa +2023-10-30,19106,2065,"[""Charger""]",2276.25,{},189918,1,Asia +2024-06-05,19107,834,"[""Keyboard"", ""Monitor""]",2879.35,"{"""": ""11%""}",245150,1,North America +2024-04-16,19108,4659,"[""Keyboard"", ""Laptop""]",266.51,{},83042,0,North America +2023-10-12,19109,6376,"[""Headphones"", ""Charger""]",1888.76,{},60546,0,Africa +2024-09-03,19110,3023,"[""Monitor"", ""Headphones""]",4427.22,{},129169,0,North America +2024-08-03,19111,7383,"[""Phone""]",3854.35,"{"""": ""13%""}",73985,0,North America +2024-02-10,19112,6795,"[""Headphones""]",2501.66,"{"""": ""22%""}",215730,0,Africa +2023-04-04,19113,1575,"[""Keyboard"", ""Laptop""]",1592.09,"{""seasonal"": ""16%""}",183922,0,Asia +2023-02-11,19114,1896,"[""Monitor"", ""Tablet""]",3621.05,"{""loyalty"": ""20%""}",133023,1,Europe +2024-09-18,19115,4447,"[""Charger""]",1595.29,{},282151,0,Africa +2024-07-21,19116,6361,"[""Wireless Mouse""]",3187.2,"{""loyalty"": ""7%""}",229774,1,South America +2024-06-09,19117,6216,"[""Keyboard""]",270.11,"{""seasonal"": ""6%""}",138727,1,North America +2023-10-31,19118,4175,"[""Laptop""]",3614.08,{},175691,1,Africa +2023-11-30,19119,6106,"[""Laptop"", ""Phone""]",1413.37,"{"""": ""15%""}",201459,1,Asia +2024-02-11,19120,3194,"[""Charger"", ""Tablet"", ""Keyboard""]",1154.78,{},73490,1,North America +2023-01-20,19121,750,"[""Headphones"", ""Tablet"", ""Monitor""]",1973.96,{},249784,1,North America +2024-11-17,19122,1988,"[""Headphones"", ""Tablet""]",4610.18,{},152076,0,Asia +2024-09-14,19123,5642,"[""Charger"", ""Headphones""]",4916.66,"{""seasonal"": ""25%""}",176292,1,Africa +2023-05-09,19124,455,"[""Keyboard"", ""Laptop"", ""Headphones""]",3018.82,{},60065,1,Africa +2023-09-20,19125,7755,"[""Laptop""]",4496.02,{},86334,1,South America +2023-05-03,19126,6844,"[""Wireless Mouse""]",714.53,"{""seasonal"": ""13%""}",98144,0,Asia +2024-11-09,19127,970,"[""Charger"", ""Keyboard"", ""Headphones""]",3640.77,"{""loyalty"": ""13%""}",217464,1,South America +2023-05-18,19128,9650,"[""Wireless Mouse""]",2061.71,{},189249,0,Europe +2024-10-16,19129,9675,"[""Keyboard""]",1796.8,{},42942,1,North America +2023-02-25,19130,1056,"[""Charger"", ""Headphones""]",4107.31,"{""seasonal"": ""18%""}",109429,0,Africa +2023-03-12,19131,3727,"[""Laptop""]",4861.83,"{""loyalty"": ""14%""}",23575,1,Africa +2023-06-26,19132,3815,"[""Charger"", ""Phone"", ""Keyboard""]",3584.91,"{""seasonal"": ""29%""}",82537,0,Africa +2023-12-21,19133,381,"[""Laptop""]",534.9,"{""promo"": ""8%""}",235595,1,Europe +2023-11-13,19134,1097,"[""Laptop""]",288.07,"{""loyalty"": ""30%""}",161848,0,North America +2023-04-10,19135,7854,"[""Laptop"", ""Headphones"", ""Monitor""]",2232.92,"{""loyalty"": ""14%""}",198056,0,South America +2024-09-24,19136,3535,"[""Tablet"", ""Phone""]",4047.44,{},43069,0,South America +2023-03-01,19137,8583,"[""Tablet"", ""Keyboard""]",3946.0,"{""loyalty"": ""9%""}",264933,1,Asia +2024-05-29,19138,769,"[""Monitor"", ""Headphones"", ""Laptop""]",951.03,"{"""": ""28%""}",202425,1,Africa +2024-05-24,19139,1140,"[""Charger"", ""Laptop"", ""Keyboard""]",1604.61,{},172034,0,Africa +2023-04-22,19140,1146,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3218.05,{},2357,0,Europe +2024-06-27,19141,521,"[""Headphones""]",3229.96,{},115406,1,Africa +2023-06-06,19142,6092,"[""Keyboard""]",3304.08,{},173630,1,Africa +2023-05-21,19143,194,"[""Laptop""]",425.07,{},21843,0,Africa +2024-11-01,19144,2296,"[""Monitor""]",1751.99,{},289142,0,Africa +2024-12-25,19145,7356,"[""Phone"", ""Headphones""]",2885.54,{},257865,0,South America +2023-11-23,19146,1401,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1688.07,"{"""": ""5%""}",126959,0,Africa +2024-05-09,19147,2099,"[""Laptop"", ""Tablet""]",4642.91,{},225057,0,South America +2024-10-16,19148,6273,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3750.22,"{"""": ""15%""}",208160,1,South America +2023-12-10,19149,347,"[""Monitor""]",1910.16,"{""seasonal"": ""5%""}",101966,0,North America +2023-10-09,19150,6114,"[""Monitor"", ""Headphones""]",2071.43,"{"""": ""7%""}",183673,1,Africa +2023-03-01,19151,9742,"[""Tablet""]",1919.99,{},24729,1,Europe +2024-04-20,19152,214,"[""Laptop"", ""Keyboard""]",54.88,{},228881,1,North America +2024-06-17,19153,6315,"[""Laptop""]",349.24,"{"""": ""25%""}",131305,1,Africa +2024-09-08,19154,4333,"[""Headphones"", ""Phone""]",529.27,"{""promo"": ""16%""}",288208,1,Africa +2023-09-11,19155,1047,"[""Monitor"", ""Headphones"", ""Laptop""]",1406.61,{},249261,0,South America +2023-11-24,19156,3514,"[""Laptop"", ""Charger"", ""Monitor""]",2926.62,"{""loyalty"": ""7%""}",219972,1,Africa +2024-03-22,19157,3326,"[""Tablet"", ""Monitor""]",165.62,{},256821,0,Asia +2024-05-01,19158,6687,"[""Keyboard""]",2309.7,{},126778,1,Asia +2023-06-09,19159,6588,"[""Phone"", ""Charger"", ""Headphones""]",2823.19,"{""seasonal"": ""25%""}",53441,1,South America +2023-06-15,19160,6664,"[""Monitor"", ""Charger""]",1019.0,"{""promo"": ""14%""}",261257,1,Asia +2023-11-11,19161,2654,"[""Keyboard"", ""Tablet""]",934.53,{},92396,0,North America +2023-02-17,19162,7169,"[""Phone""]",3669.04,{},155786,1,Asia +2023-08-18,19163,5821,"[""Keyboard"", ""Headphones""]",1797.02,"{""seasonal"": ""19%""}",28506,1,North America +2024-09-25,19164,2279,"[""Charger"", ""Headphones""]",242.06,{},37850,1,Africa +2023-10-07,19165,5079,"[""Phone""]",69.83,"{""loyalty"": ""17%""}",194435,1,North America +2023-01-31,19166,743,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",650.0,"{"""": ""8%""}",23337,0,South America +2023-04-08,19167,1413,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3383.64,"{""loyalty"": ""11%""}",86186,0,South America +2023-02-11,19168,1440,"[""Phone"", ""Tablet"", ""Monitor""]",4240.81,"{""loyalty"": ""20%""}",192129,1,Africa +2024-04-02,19169,5042,"[""Headphones""]",958.09,"{"""": ""7%""}",295517,0,Europe +2024-12-03,19170,4683,"[""Phone"", ""Headphones"", ""Laptop""]",953.96,"{""promo"": ""22%""}",134640,0,Asia +2023-03-20,19171,6477,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2994.16,"{""promo"": ""8%""}",63918,1,South America +2023-08-07,19172,6881,"[""Charger"", ""Tablet""]",672.08,"{""seasonal"": ""9%""}",159989,1,South America +2023-03-16,19173,2637,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4531.46,"{""promo"": ""9%""}",176364,1,Africa +2023-04-28,19174,1594,"[""Laptop""]",2952.25,{},116481,1,North America +2023-12-20,19175,9763,"[""Laptop"", ""Charger"", ""Phone""]",347.98,"{""promo"": ""24%""}",110337,1,Asia +2023-11-04,19176,2146,"[""Laptop"", ""Phone"", ""Headphones""]",4424.62,"{""promo"": ""28%""}",226726,0,South America +2023-11-29,19177,2112,"[""Charger"", ""Phone""]",3593.86,"{""loyalty"": ""24%""}",251613,0,Africa +2024-08-02,19178,8118,"[""Tablet""]",2829.48,"{"""": ""15%""}",2196,0,Asia +2023-06-29,19179,1540,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3584.36,{},79323,0,Europe +2024-02-14,19180,9471,"[""Monitor"", ""Tablet""]",2737.07,{},162864,1,Africa +2024-06-17,19181,9763,"[""Keyboard""]",806.76,"{"""": ""29%""}",109397,0,Europe +2024-01-10,19182,1130,"[""Wireless Mouse"", ""Laptop""]",3728.02,"{""loyalty"": ""5%""}",112132,0,South America +2024-06-10,19183,9697,"[""Charger"", ""Tablet""]",3013.48,"{""seasonal"": ""27%""}",247120,0,Asia +2024-12-04,19184,1140,"[""Keyboard""]",2193.37,"{""promo"": ""11%""}",125299,1,Asia +2024-07-19,19185,9776,"[""Headphones"", ""Monitor"", ""Laptop""]",1788.75,"{""loyalty"": ""19%""}",25674,1,Asia +2024-11-20,19186,4047,"[""Phone""]",189.16,"{""promo"": ""17%""}",5061,1,South America +2024-04-24,19187,8457,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",236.95,{},212547,1,Asia +2024-12-12,19188,4146,"[""Keyboard"", ""Headphones""]",1561.13,"{""seasonal"": ""27%""}",273721,1,North America +2024-07-29,19189,958,"[""Monitor""]",4719.8,{},229049,1,Europe +2024-05-06,19190,8662,"[""Monitor"", ""Headphones"", ""Tablet""]",2280.56,{},107241,0,Asia +2023-06-23,19191,2281,"[""Keyboard"", ""Headphones""]",3552.85,{},73486,0,Europe +2024-12-01,19192,4909,"[""Keyboard""]",767.09,"{""promo"": ""17%""}",264227,0,Africa +2024-11-19,19193,2623,"[""Headphones"", ""Keyboard""]",4413.0,{},150755,1,South America +2023-10-26,19194,4061,"[""Phone"", ""Charger"", ""Laptop""]",1206.05,"{""loyalty"": ""17%""}",93384,1,North America +2024-09-29,19195,9136,"[""Tablet""]",1806.53,"{"""": ""26%""}",192580,1,North America +2023-04-09,19196,4688,"[""Phone""]",1707.23,"{""seasonal"": ""11%""}",7167,1,North America +2024-08-31,19197,4689,"[""Tablet"", ""Laptop""]",1428.91,{},145431,1,North America +2024-06-07,19198,7590,"[""Monitor""]",2187.77,"{""loyalty"": ""26%""}",25000,0,Asia +2024-02-19,19199,6810,"[""Tablet"", ""Laptop""]",3124.09,"{"""": ""9%""}",39024,0,Asia +2024-06-05,19200,1756,"[""Monitor""]",1915.89,{},79708,1,Asia +2023-03-21,19201,2272,"[""Headphones"", ""Tablet""]",4755.93,"{""seasonal"": ""24%""}",263240,0,South America +2024-11-24,19202,4367,"[""Monitor""]",1509.98,{},98813,1,North America +2023-12-01,19203,2026,"[""Wireless Mouse"", ""Charger""]",991.5,"{""promo"": ""26%""}",251483,0,Asia +2024-01-27,19204,5294,"[""Headphones""]",1834.91,{},180372,1,Europe +2023-05-04,19205,7550,"[""Keyboard"", ""Wireless Mouse""]",115.27,"{""loyalty"": ""12%""}",212574,0,Africa +2024-11-16,19206,3199,"[""Monitor""]",4205.72,"{""loyalty"": ""10%""}",277257,0,South America +2023-06-25,19207,9861,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",580.3,{},11735,0,South America +2023-10-25,19208,8478,"[""Wireless Mouse""]",585.74,{},285891,0,North America +2024-01-18,19209,5621,"[""Headphones"", ""Monitor""]",4363.98,"{""seasonal"": ""13%""}",11354,0,Asia +2024-07-17,19210,5357,"[""Headphones"", ""Laptop"", ""Phone""]",3489.05,{},254854,0,South America +2023-05-14,19211,2977,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4430.45,{},199363,0,Africa +2024-08-06,19212,4952,"[""Keyboard""]",1666.8,"{"""": ""29%""}",81910,0,Europe +2024-05-20,19213,1995,"[""Monitor""]",4241.88,"{"""": ""29%""}",245305,1,Europe +2024-12-29,19214,5685,"[""Headphones""]",2219.52,"{""promo"": ""14%""}",164391,1,Africa +2024-02-10,19215,7337,"[""Wireless Mouse""]",2320.28,{},67786,0,Africa +2023-08-08,19216,5645,"[""Charger"", ""Monitor"", ""Laptop""]",1538.35,"{"""": ""15%""}",103837,1,Africa +2023-04-16,19217,3861,"[""Laptop""]",1599.0,"{""promo"": ""15%""}",98177,1,South America +2023-07-24,19218,5090,"[""Wireless Mouse"", ""Laptop""]",3116.05,"{"""": ""24%""}",192811,0,South America +2023-10-01,19219,8215,"[""Laptop""]",3796.67,{},130001,0,Europe +2024-08-23,19220,9349,"[""Laptop"", ""Phone"", ""Keyboard""]",2743.77,{},14471,1,South America +2024-02-01,19221,3412,"[""Wireless Mouse""]",3700.86,{},13702,1,North America +2023-07-12,19222,7905,"[""Headphones""]",2537.45,"{""promo"": ""12%""}",234075,1,Europe +2024-07-15,19223,531,"[""Tablet"", ""Headphones""]",2433.96,{},145881,0,South America +2023-02-07,19224,6693,"[""Laptop"", ""Charger""]",1899.42,"{""seasonal"": ""17%""}",211116,1,South America +2024-06-19,19225,8664,"[""Charger"", ""Monitor"", ""Phone""]",2241.43,{},100791,0,Europe +2024-08-16,19226,9807,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1162.37,{},209226,0,Asia +2024-10-11,19227,4337,"[""Tablet""]",1511.1,"{""seasonal"": ""6%""}",236668,1,Asia +2023-03-06,19228,4906,"[""Charger"", ""Headphones"", ""Tablet""]",2666.71,{},23949,1,Africa +2023-05-26,19229,4339,"[""Monitor"", ""Laptop"", ""Headphones""]",3854.03,{},214424,1,Asia +2024-03-22,19230,8566,"[""Headphones""]",3433.11,"{""loyalty"": ""7%""}",159588,1,Europe +2024-02-10,19231,9475,"[""Monitor"", ""Keyboard"", ""Laptop""]",1200.23,{},49790,0,Asia +2024-04-15,19232,4890,"[""Laptop"", ""Headphones"", ""Phone""]",261.27,{},245621,0,Asia +2024-02-02,19233,7454,"[""Keyboard"", ""Phone""]",2140.82,"{""seasonal"": ""8%""}",60032,0,Europe +2024-11-19,19234,5295,"[""Charger""]",3198.09,{},70821,0,Africa +2024-02-14,19235,1973,"[""Tablet""]",1807.43,"{""loyalty"": ""29%""}",66439,0,Europe +2023-02-19,19236,2574,"[""Wireless Mouse""]",3376.23,{},25273,0,South America +2024-10-23,19237,5189,"[""Charger""]",4954.92,"{""loyalty"": ""5%""}",275026,1,South America +2023-11-25,19238,9466,"[""Phone"", ""Laptop""]",1061.15,"{""seasonal"": ""23%""}",117425,1,Asia +2023-12-11,19239,5619,"[""Keyboard"", ""Monitor"", ""Tablet""]",1276.57,"{"""": ""12%""}",94489,1,Africa +2023-04-25,19240,4967,"[""Charger""]",1057.76,"{""loyalty"": ""30%""}",57957,0,Asia +2023-01-15,19241,9884,"[""Phone"", ""Charger""]",866.87,{},182915,0,Africa +2023-03-10,19242,311,"[""Wireless Mouse""]",3533.97,{},254338,0,Asia +2023-11-02,19243,7727,"[""Phone"", ""Headphones""]",3438.08,"{""loyalty"": ""10%""}",2336,1,Africa +2024-07-07,19244,7171,"[""Monitor"", ""Keyboard"", ""Charger""]",2121.6,{},18982,1,North America +2023-05-16,19245,6375,"[""Phone"", ""Laptop"", ""Tablet""]",798.13,{},2251,1,South America +2023-07-14,19246,9420,"[""Laptop"", ""Headphones"", ""Keyboard""]",4309.78,"{""loyalty"": ""21%""}",224524,1,Asia +2023-10-05,19247,2208,"[""Phone"", ""Tablet""]",3140.9,{},230990,0,Africa +2024-10-03,19248,7980,"[""Headphones""]",3252.42,{},165028,0,Asia +2023-01-28,19249,4593,"[""Keyboard"", ""Laptop""]",4191.35,"{""seasonal"": ""24%""}",113633,1,Europe +2024-04-26,19250,4458,"[""Monitor""]",2476.85,"{""seasonal"": ""18%""}",159828,1,Asia +2023-07-14,19251,4342,"[""Tablet"", ""Monitor"", ""Charger""]",1739.65,"{""seasonal"": ""7%""}",53545,1,Europe +2024-04-28,19252,4232,"[""Phone""]",283.67,{},82785,1,Africa +2024-12-24,19253,4533,"[""Keyboard""]",3605.93,{},7602,1,Asia +2023-10-05,19254,1362,"[""Headphones"", ""Keyboard""]",1390.24,{},6992,1,Europe +2023-11-05,19255,268,"[""Keyboard"", ""Headphones"", ""Monitor""]",1392.41,"{""promo"": ""25%""}",118003,1,North America +2024-08-18,19256,2180,"[""Laptop"", ""Keyboard""]",4826.33,{},280801,1,North America +2024-12-14,19257,110,"[""Headphones"", ""Wireless Mouse""]",1086.03,{},229478,0,South America +2024-04-05,19258,6359,"[""Charger""]",3224.66,{},174937,0,Africa +2023-05-22,19259,8185,"[""Charger""]",3512.64,{},69875,1,South America +2023-10-18,19260,2694,"[""Headphones""]",2202.04,{},290867,1,South America +2024-01-23,19261,3915,"[""Headphones""]",4726.77,{},104277,1,Africa +2023-10-05,19262,4512,"[""Phone"", ""Tablet""]",4759.86,"{""promo"": ""24%""}",136437,0,Asia +2023-01-21,19263,2407,"[""Keyboard""]",1650.18,"{""seasonal"": ""11%""}",259995,1,North America +2023-12-08,19264,4804,"[""Phone"", ""Laptop""]",481.69,{},30082,0,South America +2023-07-10,19265,625,"[""Monitor"", ""Tablet"", ""Headphones""]",514.5,{},173509,1,Africa +2023-05-01,19266,9696,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2010.75,"{""promo"": ""21%""}",32909,0,South America +2024-10-26,19267,9252,"[""Wireless Mouse"", ""Monitor""]",1713.75,{},131128,1,Europe +2024-10-24,19268,3071,"[""Charger""]",277.75,"{""loyalty"": ""30%""}",294706,1,Europe +2023-08-30,19269,5992,"[""Wireless Mouse""]",1698.34,"{""promo"": ""15%""}",267773,0,Europe +2023-08-23,19270,4115,"[""Phone""]",1730.95,"{""loyalty"": ""16%""}",125005,1,Africa +2024-04-25,19271,4717,"[""Charger""]",941.46,{},249625,1,Europe +2024-11-06,19272,3870,"[""Keyboard""]",4260.68,"{""promo"": ""7%""}",11826,0,South America +2023-05-23,19273,780,"[""Laptop"", ""Tablet""]",3753.37,{},31472,0,South America +2023-09-29,19274,3158,"[""Keyboard"", ""Tablet""]",4081.88,{},89977,0,Asia +2023-10-24,19275,2526,"[""Phone"", ""Tablet"", ""Monitor""]",643.2,"{""loyalty"": ""11%""}",13153,1,South America +2023-10-09,19276,4476,"[""Laptop""]",2058.22,{},93269,0,South America +2023-06-05,19277,7224,"[""Headphones"", ""Charger""]",356.51,{},50140,0,Asia +2023-12-27,19278,3014,"[""Headphones""]",1587.22,"{"""": ""6%""}",291045,0,Asia +2024-05-03,19279,8252,"[""Charger""]",3963.17,{},171295,0,Asia +2024-02-26,19280,7818,"[""Charger"", ""Wireless Mouse""]",4322.59,"{""seasonal"": ""20%""}",109964,0,North America +2023-03-25,19281,8891,"[""Phone""]",4010.08,"{""seasonal"": ""28%""}",225773,1,Asia +2023-05-24,19282,8415,"[""Keyboard"", ""Tablet""]",4791.68,"{""seasonal"": ""14%""}",13533,1,North America +2024-03-31,19283,6846,"[""Laptop""]",2190.76,{},260030,0,Africa +2023-08-23,19284,158,"[""Headphones"", ""Phone"", ""Keyboard""]",2975.94,{},159504,1,South America +2023-07-25,19285,9091,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3706.76,"{""seasonal"": ""13%""}",293923,0,South America +2024-03-03,19286,7771,"[""Charger""]",475.0,{},62670,1,North America +2023-03-18,19287,8451,"[""Monitor"", ""Keyboard"", ""Phone""]",4122.55,{},125340,0,South America +2023-08-01,19288,2581,"[""Tablet"", ""Keyboard""]",1269.58,{},251048,1,Africa +2023-03-12,19289,3061,"[""Phone""]",2455.31,{},176489,0,Africa +2024-07-11,19290,7305,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2442.39,{},296430,0,Europe +2023-10-14,19291,5799,"[""Phone""]",674.67,"{""promo"": ""9%""}",127291,1,Europe +2023-01-23,19292,8625,"[""Wireless Mouse"", ""Phone""]",1063.06,"{""promo"": ""6%""}",90240,0,Asia +2023-06-29,19293,4228,"[""Tablet"", ""Keyboard"", ""Monitor""]",3724.96,{},282502,1,North America +2023-12-17,19294,6448,"[""Laptop"", ""Wireless Mouse""]",3685.93,{},36408,1,North America +2023-08-09,19295,5769,"[""Headphones"", ""Monitor""]",3445.26,{},3846,0,North America +2023-07-02,19296,113,"[""Headphones""]",1233.33,{},84500,1,South America +2024-02-04,19297,3340,"[""Monitor"", ""Headphones""]",3282.81,"{""loyalty"": ""9%""}",199332,0,Europe +2024-06-17,19298,8596,"[""Phone""]",1385.98,{},117631,1,South America +2023-12-29,19299,7247,"[""Headphones""]",1216.12,"{""promo"": ""23%""}",62995,0,North America +2024-10-13,19300,5683,"[""Headphones"", ""Laptop"", ""Charger""]",4985.85,{},41462,0,Asia +2024-05-30,19301,4548,"[""Tablet"", ""Phone""]",2838.64,"{""loyalty"": ""15%""}",192735,1,Europe +2024-07-01,19302,8193,"[""Phone""]",995.59,{},260076,1,Asia +2023-09-15,19303,193,"[""Tablet"", ""Phone""]",4231.01,"{""loyalty"": ""30%""}",14582,1,Africa +2024-10-05,19304,1389,"[""Laptop"", ""Phone"", ""Tablet""]",3444.03,{},226348,0,South America +2024-09-02,19305,5376,"[""Headphones""]",1495.91,{},188168,0,North America +2023-10-18,19306,8851,"[""Charger"", ""Laptop"", ""Keyboard""]",3099.52,{},181989,0,North America +2024-04-20,19307,402,"[""Charger"", ""Laptop""]",466.13,{},124891,0,North America +2023-10-06,19308,7291,"[""Laptop"", ""Keyboard"", ""Monitor""]",4884.38,"{"""": ""19%""}",201890,0,South America +2024-10-13,19309,2344,"[""Phone"", ""Keyboard"", ""Monitor""]",3750.91,{},285712,0,Asia +2023-12-02,19310,8063,"[""Monitor"", ""Headphones""]",3125.16,{},262084,0,Asia +2024-01-12,19311,2189,"[""Laptop"", ""Charger"", ""Tablet""]",3967.76,{},139946,1,Europe +2024-12-18,19312,6727,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1336.64,{},114944,0,Africa +2023-04-29,19313,8071,"[""Monitor"", ""Tablet"", ""Headphones""]",1624.21,"{""seasonal"": ""19%""}",139115,1,Europe +2023-05-05,19314,6645,"[""Keyboard"", ""Tablet""]",1054.94,{},159912,0,South America +2024-09-27,19315,4183,"[""Phone"", ""Laptop""]",2517.26,"{""seasonal"": ""25%""}",52294,1,Asia +2024-10-17,19316,8767,"[""Headphones""]",2808.71,{},130889,0,South America +2024-10-13,19317,278,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3136.84,{},294682,1,Asia +2024-01-27,19318,3947,"[""Keyboard"", ""Charger"", ""Monitor""]",2387.36,"{""promo"": ""24%""}",102232,1,North America +2024-03-22,19319,8224,"[""Headphones""]",4260.98,"{""loyalty"": ""21%""}",113353,1,North America +2024-05-26,19320,7409,"[""Laptop""]",3685.36,{},235373,0,Asia +2024-02-10,19321,4562,"[""Tablet"", ""Keyboard"", ""Laptop""]",3823.28,{},42134,1,South America +2024-10-28,19322,5888,"[""Tablet""]",4284.35,{},45788,1,Africa +2024-04-01,19323,3107,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2565.55,{},82215,1,Asia +2024-02-19,19324,9610,"[""Headphones""]",4981.43,{},108042,0,South America +2024-12-23,19325,7620,"[""Charger"", ""Phone""]",1209.49,"{""seasonal"": ""18%""}",256942,0,South America +2023-07-31,19326,5769,"[""Charger"", ""Laptop""]",2825.66,{},185981,0,South America +2023-03-02,19327,2441,"[""Laptop""]",100.95,"{""promo"": ""11%""}",86863,1,Europe +2024-04-03,19328,9834,"[""Laptop"", ""Phone""]",228.68,"{""loyalty"": ""23%""}",111165,0,North America +2024-12-31,19329,2417,"[""Headphones"", ""Phone""]",3930.73,"{""seasonal"": ""19%""}",292575,1,Europe +2023-01-30,19330,1229,"[""Charger"", ""Monitor""]",1270.81,{},143309,0,Africa +2023-12-08,19331,3476,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4634.44,{},287480,0,Africa +2024-07-02,19332,9859,"[""Monitor"", ""Keyboard""]",505.49,"{""promo"": ""8%""}",214341,1,South America +2023-11-13,19333,82,"[""Charger"", ""Tablet"", ""Monitor""]",1297.56,{},66654,0,Asia +2024-12-14,19334,2071,"[""Headphones"", ""Phone"", ""Keyboard""]",1993.88,"{"""": ""16%""}",182876,1,Europe +2024-05-24,19335,9712,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",859.53,{},109229,0,Asia +2023-07-03,19336,8410,"[""Phone""]",1850.42,"{"""": ""12%""}",254636,1,Asia +2023-12-02,19337,7065,"[""Phone""]",663.23,{},21057,1,Africa +2024-10-01,19338,9071,"[""Headphones"", ""Laptop"", ""Monitor""]",4286.5,"{"""": ""6%""}",67497,0,Asia +2023-11-02,19339,9336,"[""Laptop"", ""Phone""]",4727.54,"{""promo"": ""27%""}",64506,0,South America +2023-09-30,19340,1134,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2763.03,"{""loyalty"": ""5%""}",73090,0,North America +2024-07-01,19341,911,"[""Charger""]",535.58,{},53873,0,Europe +2023-06-25,19342,8089,"[""Keyboard"", ""Headphones"", ""Monitor""]",3879.97,{},59869,0,Europe +2024-07-26,19343,4486,"[""Headphones"", ""Laptop""]",1781.38,"{"""": ""13%""}",127093,0,Asia +2023-09-17,19344,4308,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4413.22,{},194788,0,South America +2023-10-01,19345,1715,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",276.64,"{"""": ""8%""}",145004,0,Africa +2024-01-28,19346,809,"[""Tablet"", ""Headphones""]",305.88,{},21627,1,Europe +2024-08-31,19347,9669,"[""Phone"", ""Tablet""]",2013.87,"{"""": ""15%""}",271049,1,South America +2024-08-27,19348,8259,"[""Phone"", ""Monitor"", ""Tablet""]",910.59,"{"""": ""15%""}",51160,1,South America +2023-04-07,19349,5575,"[""Keyboard""]",2801.14,"{""loyalty"": ""12%""}",72279,1,North America +2024-10-09,19350,301,"[""Laptop"", ""Headphones"", ""Keyboard""]",4094.54,{},52116,0,Europe +2023-05-14,19351,2184,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3921.61,{},158293,0,Europe +2023-01-15,19352,4114,"[""Tablet"", ""Monitor"", ""Headphones""]",4023.89,"{""promo"": ""11%""}",151217,0,North America +2023-12-15,19353,8998,"[""Keyboard"", ""Charger""]",4778.5,"{"""": ""6%""}",232739,1,South America +2024-06-05,19354,4622,"[""Tablet""]",277.73,"{"""": ""25%""}",37248,1,Europe +2023-04-01,19355,8741,"[""Keyboard"", ""Laptop"", ""Monitor""]",388.73,{},56795,0,Africa +2024-06-21,19356,5039,"[""Charger""]",3263.76,{},16096,0,North America +2024-01-28,19357,9833,"[""Monitor"", ""Laptop""]",137.76,"{""loyalty"": ""19%""}",173914,1,Asia +2023-01-03,19358,5632,"[""Monitor"", ""Phone"", ""Keyboard""]",4446.87,"{"""": ""25%""}",224659,0,Africa +2023-04-25,19359,1406,"[""Laptop""]",345.97,{},274556,1,Asia +2023-11-05,19360,2100,"[""Wireless Mouse"", ""Charger""]",2968.22,"{""seasonal"": ""18%""}",243233,1,Africa +2023-07-08,19361,6056,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3305.63,"{""promo"": ""22%""}",165608,0,North America +2024-03-10,19362,6338,"[""Tablet""]",872.58,"{""promo"": ""22%""}",48986,0,Africa +2023-02-28,19363,6974,"[""Monitor""]",3862.25,"{"""": ""25%""}",289286,0,South America +2023-11-08,19364,7477,"[""Monitor"", ""Headphones""]",3463.78,{},230215,0,South America +2024-02-13,19365,876,"[""Headphones""]",3330.29,{},199506,0,Europe +2023-12-09,19366,7209,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2389.58,{},235932,0,Asia +2024-04-07,19367,3015,"[""Keyboard"", ""Charger"", ""Laptop""]",720.1,"{""loyalty"": ""16%""}",232716,0,Europe +2023-09-25,19368,5884,"[""Tablet"", ""Laptop"", ""Keyboard""]",250.91,{},244674,1,South America +2024-02-16,19369,4815,"[""Tablet""]",2970.71,"{""seasonal"": ""21%""}",178072,0,South America +2023-05-10,19370,1672,"[""Charger""]",1889.46,"{"""": ""20%""}",277635,0,Africa +2023-03-04,19371,7842,"[""Tablet""]",1685.93,"{""seasonal"": ""16%""}",185027,0,Africa +2024-01-09,19372,6480,"[""Keyboard"", ""Phone"", ""Headphones""]",1853.16,"{""promo"": ""14%""}",166869,1,Asia +2023-12-09,19373,8618,"[""Monitor"", ""Wireless Mouse""]",1086.45,{},78339,1,Europe +2023-01-13,19374,6544,"[""Monitor"", ""Laptop""]",1819.68,"{""promo"": ""14%""}",183375,1,Africa +2024-12-19,19375,7244,"[""Monitor"", ""Phone"", ""Headphones""]",4535.56,"{""loyalty"": ""25%""}",74641,1,Asia +2024-04-09,19376,9063,"[""Phone"", ""Headphones""]",570.4,{},46569,1,South America +2023-09-14,19377,3689,"[""Laptop"", ""Phone""]",3654.11,{},141039,0,Africa +2024-07-31,19378,2596,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",755.53,"{""seasonal"": ""11%""}",240010,0,South America +2023-10-09,19379,943,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1047.78,"{""loyalty"": ""26%""}",194951,0,Europe +2024-04-20,19380,9546,"[""Tablet"", ""Phone"", ""Monitor""]",3678.82,{},244566,0,Africa +2023-01-31,19381,2452,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2826.09,{},81614,0,Asia +2024-09-14,19382,8580,"[""Charger"", ""Tablet"", ""Headphones""]",1970.03,"{""promo"": ""24%""}",218477,1,Asia +2024-04-17,19383,2974,"[""Laptop"", ""Monitor"", ""Charger""]",303.28,"{""promo"": ""27%""}",142299,0,Europe +2024-05-12,19384,1972,"[""Monitor""]",3043.93,"{""promo"": ""20%""}",9275,0,North America +2024-08-16,19385,2145,"[""Wireless Mouse""]",660.9,"{""seasonal"": ""22%""}",122819,1,Africa +2024-10-07,19386,7254,"[""Monitor"", ""Charger"", ""Headphones""]",4751.38,"{""loyalty"": ""29%""}",38381,1,Asia +2023-04-18,19387,6581,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4940.1,{},117168,0,South America +2024-08-06,19388,4198,"[""Tablet"", ""Headphones""]",2681.98,{},39374,0,South America +2023-04-07,19389,3579,"[""Charger"", ""Phone"", ""Headphones""]",3809.18,{},10681,0,Africa +2024-01-31,19390,9665,"[""Laptop"", ""Keyboard""]",1801.96,"{""loyalty"": ""27%""}",141314,0,Asia +2023-10-08,19391,1258,"[""Wireless Mouse"", ""Phone""]",4588.38,"{""loyalty"": ""10%""}",153462,1,Africa +2023-01-23,19392,9696,"[""Monitor"", ""Keyboard"", ""Tablet""]",2017.38,"{""loyalty"": ""6%""}",193515,1,Africa +2023-12-03,19393,7612,"[""Charger"", ""Headphones""]",4047.27,{},146626,1,Europe +2023-01-19,19394,3815,"[""Keyboard""]",3048.05,"{""loyalty"": ""16%""}",227097,1,North America +2024-01-19,19395,6863,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",191.37,{},70949,0,South America +2023-03-11,19396,71,"[""Charger""]",4300.85,{},296217,1,South America +2023-02-22,19397,6832,"[""Wireless Mouse""]",2935.07,{},9681,0,South America +2024-04-28,19398,8091,"[""Monitor""]",3180.91,"{""promo"": ""14%""}",224048,0,Africa +2023-09-09,19399,4053,"[""Laptop"", ""Keyboard"", ""Phone""]",2561.82,{},294569,0,South America +2024-04-12,19400,7983,"[""Tablet"", ""Headphones"", ""Keyboard""]",103.3,"{""loyalty"": ""10%""}",77707,1,North America +2023-06-30,19401,9232,"[""Charger"", ""Monitor""]",1764.58,"{""loyalty"": ""17%""}",148403,0,Africa +2024-08-14,19402,806,"[""Keyboard"", ""Laptop""]",4490.08,{},291702,0,North America +2024-07-24,19403,8284,"[""Monitor"", ""Laptop""]",1179.39,"{""seasonal"": ""18%""}",91737,1,South America +2024-11-28,19404,5275,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",449.15,{},52710,1,North America +2023-01-11,19405,2996,"[""Laptop"", ""Keyboard""]",4425.44,"{""promo"": ""6%""}",233859,0,Africa +2024-10-02,19406,3775,"[""Wireless Mouse"", ""Laptop""]",778.88,"{""seasonal"": ""19%""}",107399,1,Europe +2023-05-02,19407,8124,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2069.85,"{""promo"": ""26%""}",173292,1,North America +2023-08-12,19408,4016,"[""Keyboard""]",1943.21,"{""promo"": ""10%""}",151549,0,Africa +2023-04-04,19409,6710,"[""Monitor"", ""Keyboard""]",2975.59,{},249994,1,Europe +2024-11-04,19410,3509,"[""Monitor"", ""Phone"", ""Keyboard""]",171.45,"{""promo"": ""7%""}",293015,1,South America +2023-09-19,19411,7548,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4890.9,"{"""": ""28%""}",247261,1,North America +2023-10-03,19412,9614,"[""Laptop"", ""Headphones"", ""Charger""]",574.91,"{""loyalty"": ""9%""}",166056,0,Asia +2023-04-16,19413,5812,"[""Charger"", ""Wireless Mouse""]",2559.22,{},108366,1,Africa +2024-07-02,19414,3213,"[""Charger"", ""Keyboard"", ""Phone""]",972.4,{},11205,0,Africa +2023-08-18,19415,5221,"[""Monitor"", ""Phone"", ""Tablet""]",1405.58,{},49767,0,North America +2024-01-19,19416,4229,"[""Phone"", ""Charger"", ""Tablet""]",68.93,"{"""": ""9%""}",293683,0,North America +2024-03-13,19417,7585,"[""Phone"", ""Keyboard"", ""Laptop""]",4242.71,"{"""": ""11%""}",66248,1,Europe +2024-10-30,19418,4768,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",977.83,"{"""": ""17%""}",281058,0,South America +2024-02-11,19419,6387,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",164.71,"{""promo"": ""9%""}",126137,0,North America +2024-04-23,19420,6372,"[""Monitor"", ""Headphones""]",1499.63,{},256225,1,South America +2024-12-19,19421,8433,"[""Headphones""]",1401.99,{},175285,1,North America +2024-04-27,19422,6080,"[""Monitor""]",1800.85,"{""seasonal"": ""30%""}",204890,1,Asia +2024-04-13,19423,2922,"[""Headphones"", ""Charger""]",3229.53,{},112607,1,South America +2024-06-19,19424,6983,"[""Laptop""]",4085.16,"{""seasonal"": ""19%""}",138775,0,South America +2024-03-14,19425,2887,"[""Phone""]",4451.47,{},59000,1,North America +2023-09-09,19426,1398,"[""Charger""]",2184.45,{},150021,0,Asia +2024-09-02,19427,7790,"[""Headphones""]",3881.56,{},56965,0,Africa +2024-12-31,19428,8137,"[""Wireless Mouse""]",603.23,{},213353,1,North America +2024-06-15,19429,2195,"[""Keyboard"", ""Headphones"", ""Laptop""]",4198.4,{},166245,0,North America +2023-05-25,19430,2075,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1905.35,{},162957,0,North America +2023-06-18,19431,7837,"[""Headphones"", ""Wireless Mouse""]",3039.26,{},64008,1,Africa +2023-04-18,19432,3023,"[""Keyboard"", ""Headphones""]",3801.81,"{""seasonal"": ""24%""}",149720,0,North America +2024-02-14,19433,2454,"[""Headphones""]",738.36,"{""seasonal"": ""16%""}",159377,1,North America +2023-06-06,19434,4686,"[""Wireless Mouse"", ""Keyboard""]",2430.25,"{""promo"": ""28%""}",4636,1,Asia +2024-06-10,19435,7460,"[""Keyboard""]",271.77,{},150806,0,South America +2024-10-01,19436,738,"[""Laptop"", ""Charger"", ""Tablet""]",2094.83,{},3780,0,North America +2023-04-28,19437,217,"[""Charger""]",3768.02,"{""seasonal"": ""14%""}",70089,1,South America +2023-01-27,19438,7436,"[""Headphones""]",4866.92,"{""seasonal"": ""8%""}",73047,1,Europe +2024-01-28,19439,7177,"[""Laptop"", ""Tablet""]",3624.82,"{""promo"": ""25%""}",111749,0,Asia +2024-03-31,19440,2202,"[""Tablet"", ""Monitor""]",3200.6,{},100431,0,South America +2023-08-29,19441,2020,"[""Headphones"", ""Monitor"", ""Tablet""]",2347.41,{},186213,1,South America +2024-02-14,19442,1470,"[""Phone""]",2689.7,"{"""": ""11%""}",60230,0,Asia +2023-08-17,19443,9040,"[""Tablet""]",4218.78,"{""loyalty"": ""16%""}",28595,0,South America +2023-12-20,19444,693,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",591.88,{},169826,0,Asia +2024-08-13,19445,4237,"[""Laptop"", ""Monitor""]",3945.82,{},156631,0,Africa +2024-08-18,19446,7582,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3573.75,{},200158,1,North America +2023-02-01,19447,8873,"[""Headphones"", ""Phone""]",471.93,"{""promo"": ""25%""}",223359,1,Africa +2024-04-02,19448,3339,"[""Tablet"", ""Monitor""]",3465.73,"{""promo"": ""17%""}",178554,0,Europe +2023-12-23,19449,1529,"[""Monitor"", ""Headphones"", ""Tablet""]",1033.02,{},93452,0,South America +2023-01-25,19450,9010,"[""Phone"", ""Monitor""]",4504.93,"{"""": ""27%""}",107926,1,Europe +2023-12-15,19451,4061,"[""Charger""]",4842.77,{},268793,0,Africa +2024-03-03,19452,7002,"[""Wireless Mouse""]",4513.0,{},87251,0,Europe +2024-08-30,19453,2920,"[""Keyboard""]",1545.83,{},208661,1,North America +2024-08-31,19454,5523,"[""Charger"", ""Tablet"", ""Laptop""]",3310.35,"{""seasonal"": ""22%""}",87834,1,Asia +2023-11-11,19455,2872,"[""Phone"", ""Headphones""]",1354.82,"{"""": ""8%""}",96944,1,Africa +2023-08-29,19456,661,"[""Tablet""]",2740.81,"{""loyalty"": ""14%""}",210179,0,South America +2024-01-31,19457,8883,"[""Phone""]",463.35,"{"""": ""19%""}",108823,0,Asia +2023-08-13,19458,903,"[""Monitor""]",2346.13,{},5136,0,Europe +2024-02-14,19459,9966,"[""Headphones"", ""Monitor""]",2829.48,{},197986,1,Africa +2024-03-07,19460,9011,"[""Monitor"", ""Charger""]",2946.09,"{""loyalty"": ""23%""}",49607,0,Africa +2024-02-22,19461,8717,"[""Tablet"", ""Headphones""]",3425.59,"{""seasonal"": ""8%""}",214472,0,Europe +2023-04-22,19462,7685,"[""Phone"", ""Wireless Mouse""]",2264.51,{},37728,0,South America +2024-08-27,19463,4526,"[""Phone"", ""Keyboard"", ""Tablet""]",291.3,"{""promo"": ""17%""}",278979,1,North America +2024-09-17,19464,6334,"[""Phone"", ""Tablet""]",4529.64,"{""promo"": ""7%""}",68899,0,Asia +2023-12-31,19465,1621,"[""Tablet""]",460.74,{},94579,1,Europe +2023-11-14,19466,2470,"[""Charger""]",916.81,"{""loyalty"": ""9%""}",95195,1,North America +2024-06-14,19467,6360,"[""Phone"", ""Wireless Mouse""]",1800.43,{},284700,1,Africa +2023-03-04,19468,5910,"[""Monitor"", ""Keyboard"", ""Headphones""]",2266.32,{},263193,0,North America +2023-02-21,19469,7110,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3929.43,"{""seasonal"": ""11%""}",178973,1,South America +2023-05-08,19470,2213,"[""Laptop""]",3389.68,{},225053,0,Europe +2023-03-30,19471,8813,"[""Headphones"", ""Monitor""]",1994.89,"{""promo"": ""28%""}",125073,0,South America +2023-09-02,19472,2044,"[""Laptop"", ""Wireless Mouse""]",2081.02,{},8192,1,Asia +2024-04-28,19473,295,"[""Phone""]",4456.7,{},168348,0,Africa +2024-07-25,19474,6202,"[""Tablet""]",1416.03,{},20372,1,South America +2023-09-04,19475,9126,"[""Keyboard"", ""Wireless Mouse""]",302.76,{},230700,0,Africa +2024-02-26,19476,9248,"[""Wireless Mouse""]",4868.96,{},228606,1,South America +2024-06-14,19477,9167,"[""Keyboard""]",1130.87,"{""loyalty"": ""18%""}",194517,0,South America +2023-07-29,19478,1601,"[""Monitor"", ""Tablet""]",2307.01,"{""loyalty"": ""17%""}",33198,0,South America +2023-12-28,19479,906,"[""Monitor""]",860.59,{},38367,1,North America +2024-07-11,19480,4221,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1996.67,"{"""": ""28%""}",16010,0,South America +2023-04-08,19481,3069,"[""Keyboard""]",3672.99,{},203548,0,Europe +2024-01-01,19482,4721,"[""Charger"", ""Monitor"", ""Tablet""]",157.76,"{""loyalty"": ""25%""}",116510,0,South America +2023-04-06,19483,7771,"[""Wireless Mouse"", ""Phone""]",526.76,{},195129,1,South America +2023-01-22,19484,7292,"[""Laptop""]",395.19,{},193971,1,Europe +2023-05-08,19485,736,"[""Monitor""]",843.47,"{""loyalty"": ""25%""}",51232,1,South America +2024-02-11,19486,332,"[""Phone"", ""Headphones""]",3963.33,"{""promo"": ""20%""}",263287,0,Europe +2024-11-28,19487,2099,"[""Phone"", ""Charger""]",2905.18,"{"""": ""5%""}",259030,0,Europe +2023-02-28,19488,5624,"[""Monitor"", ""Wireless Mouse""]",4432.14,"{""seasonal"": ""30%""}",139897,0,North America +2023-11-25,19489,3744,"[""Laptop"", ""Keyboard""]",460.43,{},117698,1,South America +2024-11-30,19490,5404,"[""Laptop"", ""Headphones""]",3347.63,"{""seasonal"": ""14%""}",148885,0,Asia +2024-05-31,19491,8259,"[""Laptop"", ""Phone""]",4919.2,{},118925,1,Europe +2023-11-01,19492,9674,"[""Headphones"", ""Monitor""]",4408.31,"{"""": ""5%""}",148861,0,Africa +2024-08-12,19493,9379,"[""Monitor"", ""Phone""]",416.34,{},245525,0,Europe +2023-12-21,19494,9018,"[""Tablet"", ""Charger"", ""Phone""]",3413.83,"{""loyalty"": ""14%""}",264884,1,Asia +2024-07-13,19495,1357,"[""Wireless Mouse""]",810.81,{},56792,0,Africa +2024-12-01,19496,2393,"[""Headphones""]",100.87,{},195870,1,North America +2024-04-03,19497,9930,"[""Keyboard"", ""Tablet"", ""Monitor""]",819.64,{},167676,0,South America +2024-11-26,19498,1989,"[""Phone""]",2852.67,"{"""": ""18%""}",227946,0,Europe +2024-03-14,19499,9991,"[""Laptop"", ""Wireless Mouse""]",3360.93,"{""loyalty"": ""23%""}",264756,1,South America +2023-10-13,19500,7136,"[""Headphones"", ""Tablet""]",2127.24,"{""promo"": ""25%""}",202347,1,South America +2023-07-16,19501,9197,"[""Monitor""]",550.06,{},160092,0,North America +2024-06-05,19502,5206,"[""Wireless Mouse"", ""Monitor""]",3758.18,{},164727,1,Asia +2023-12-27,19503,1316,"[""Monitor"", ""Laptop"", ""Tablet""]",993.54,"{""promo"": ""10%""}",238442,1,North America +2023-03-19,19504,6552,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1358.23,{},183439,1,Asia +2023-07-04,19505,5129,"[""Wireless Mouse""]",802.34,{},140427,1,Africa +2023-06-20,19506,429,"[""Wireless Mouse""]",4964.22,{},37700,1,Asia +2023-08-08,19507,6745,"[""Tablet""]",2079.44,"{""loyalty"": ""6%""}",253705,0,Europe +2024-08-16,19508,5987,"[""Monitor""]",4407.01,{},212393,0,North America +2024-03-16,19509,3311,"[""Phone"", ""Charger"", ""Keyboard""]",3664.66,{},100894,0,South America +2023-11-19,19510,4977,"[""Phone""]",408.66,{},155297,0,Europe +2024-06-14,19511,6205,"[""Laptop""]",2898.72,{},57460,1,North America +2023-12-26,19512,5561,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2668.38,{},84782,0,Europe +2024-12-13,19513,8495,"[""Tablet"", ""Headphones""]",2109.83,"{""loyalty"": ""21%""}",106933,0,Africa +2024-09-24,19514,3413,"[""Keyboard"", ""Monitor""]",1815.65,"{""seasonal"": ""12%""}",262137,1,Europe +2023-11-03,19515,2236,"[""Headphones"", ""Phone""]",4527.26,"{""seasonal"": ""23%""}",141143,1,Europe +2024-04-06,19516,4300,"[""Phone"", ""Laptop""]",4193.57,{},227016,0,Europe +2024-06-25,19517,7050,"[""Tablet"", ""Headphones"", ""Keyboard""]",3781.77,"{""promo"": ""5%""}",89933,0,South America +2024-06-30,19518,9179,"[""Headphones"", ""Keyboard""]",2069.42,"{""loyalty"": ""18%""}",241671,1,Europe +2024-01-05,19519,7639,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",115.36,"{""promo"": ""29%""}",23003,1,North America +2024-11-17,19520,788,"[""Monitor""]",2399.3,{},246536,1,South America +2024-03-05,19521,9035,"[""Phone"", ""Monitor"", ""Charger""]",464.43,"{""loyalty"": ""17%""}",288807,1,South America +2024-06-27,19522,4372,"[""Keyboard"", ""Monitor""]",258.1,{},277623,1,Europe +2024-12-12,19523,8039,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3472.29,{},122477,1,South America +2024-02-21,19524,3080,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1046.06,{},34910,1,Asia +2023-10-24,19525,7151,"[""Monitor""]",2786.49,{},174313,1,South America +2023-07-10,19526,1874,"[""Laptop""]",3472.17,"{""loyalty"": ""19%""}",215871,1,Africa +2023-03-13,19527,5363,"[""Keyboard"", ""Phone"", ""Headphones""]",140.24,"{""promo"": ""20%""}",255180,0,South America +2024-10-31,19528,7573,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",666.73,{},286270,1,Asia +2023-06-13,19529,8196,"[""Charger""]",3084.7,{},158976,1,Africa +2023-03-23,19530,6741,"[""Keyboard""]",3990.7,"{""seasonal"": ""20%""}",244049,0,Europe +2024-11-20,19531,6818,"[""Charger""]",167.06,"{"""": ""29%""}",234639,1,Europe +2024-01-25,19532,4781,"[""Charger"", ""Tablet""]",3269.32,"{""seasonal"": ""12%""}",45451,0,Africa +2024-06-02,19533,6606,"[""Charger""]",2287.11,"{""loyalty"": ""24%""}",290806,0,Asia +2024-08-03,19534,5116,"[""Keyboard"", ""Headphones"", ""Laptop""]",2036.59,{},166667,0,Africa +2024-11-05,19535,3764,"[""Laptop"", ""Headphones"", ""Tablet""]",3383.44,"{""loyalty"": ""15%""}",143071,0,South America +2024-09-27,19536,9420,"[""Monitor"", ""Phone"", ""Laptop""]",2143.61,"{""seasonal"": ""24%""}",250538,0,Africa +2024-12-14,19537,6052,"[""Tablet""]",3552.71,"{""seasonal"": ""26%""}",88898,0,Europe +2024-03-08,19538,1422,"[""Monitor"", ""Laptop"", ""Keyboard""]",3876.16,{},230108,1,Africa +2024-07-29,19539,138,"[""Wireless Mouse"", ""Charger""]",176.65,{},188548,1,South America +2023-12-25,19540,4718,"[""Headphones""]",3367.45,"{"""": ""6%""}",271470,1,North America +2023-05-05,19541,8717,"[""Laptop""]",1105.54,{},13442,1,Asia +2023-09-01,19542,6540,"[""Monitor"", ""Laptop""]",4611.02,"{""seasonal"": ""16%""}",25273,1,Africa +2023-07-08,19543,3459,"[""Wireless Mouse"", ""Charger""]",4561.85,{},186343,0,North America +2023-10-07,19544,5,"[""Headphones""]",4292.01,"{"""": ""6%""}",64566,1,South America +2024-02-15,19545,8589,"[""Phone"", ""Headphones"", ""Tablet""]",449.64,{},242457,0,South America +2024-10-16,19546,8324,"[""Headphones""]",1742.71,"{""loyalty"": ""30%""}",68696,1,Africa +2023-06-10,19547,513,"[""Headphones"", ""Phone""]",3588.55,"{""promo"": ""17%""}",251597,0,Europe +2023-05-26,19548,3664,"[""Tablet""]",2105.83,{},203186,0,Africa +2024-08-25,19549,6256,"[""Wireless Mouse"", ""Monitor""]",3606.87,"{""promo"": ""5%""}",64219,0,Africa +2023-12-09,19550,5048,"[""Headphones""]",1711.9,"{""promo"": ""22%""}",53374,0,North America +2024-01-05,19551,4356,"[""Headphones"", ""Wireless Mouse""]",4786.72,"{""seasonal"": ""13%""}",227557,0,Africa +2024-12-26,19552,40,"[""Charger"", ""Laptop""]",2500.66,{},294637,0,Africa +2024-02-24,19553,7160,"[""Headphones""]",3446.62,"{""promo"": ""19%""}",105625,0,North America +2024-03-21,19554,2792,"[""Keyboard""]",2916.89,"{""seasonal"": ""10%""}",200686,0,North America +2024-10-06,19555,7820,"[""Keyboard"", ""Phone""]",1031.99,"{""loyalty"": ""14%""}",139766,1,Europe +2023-05-30,19556,1138,"[""Headphones"", ""Wireless Mouse""]",3936.17,"{""loyalty"": ""12%""}",55261,1,Asia +2024-10-31,19557,6535,"[""Headphones""]",2413.88,{},86864,0,Africa +2023-03-27,19558,6395,"[""Laptop"", ""Phone""]",679.52,{},280419,0,South America +2024-01-11,19559,185,"[""Wireless Mouse""]",2472.53,{},84434,0,North America +2024-04-21,19560,6896,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4525.06,"{""seasonal"": ""24%""}",2028,1,South America +2023-04-18,19561,411,"[""Laptop"", ""Wireless Mouse""]",184.3,"{""seasonal"": ""5%""}",44112,0,North America +2024-10-14,19562,6769,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3198.75,{},200395,1,Africa +2023-03-15,19563,5432,"[""Headphones""]",924.82,"{""seasonal"": ""11%""}",150666,1,Africa +2024-02-20,19564,4711,"[""Laptop""]",440.57,{},25087,0,South America +2024-01-25,19565,3192,"[""Charger"", ""Wireless Mouse""]",4617.04,{},56380,1,North America +2024-03-15,19566,4561,"[""Phone""]",3140.01,"{""loyalty"": ""6%""}",185428,1,South America +2024-02-12,19567,220,"[""Keyboard"", ""Headphones""]",2435.77,"{""promo"": ""12%""}",86755,0,Africa +2023-11-04,19568,5995,"[""Tablet"", ""Wireless Mouse""]",2368.85,{},254544,1,Europe +2023-11-26,19569,503,"[""Phone"", ""Monitor"", ""Charger""]",2862.67,{},251251,0,Europe +2023-09-29,19570,2667,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1554.19,{},266193,0,Europe +2023-02-25,19571,1135,"[""Tablet""]",515.43,{},33514,1,Asia +2024-05-17,19572,4800,"[""Headphones"", ""Monitor"", ""Laptop""]",4699.2,"{"""": ""19%""}",53646,1,Africa +2024-03-07,19573,196,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",844.75,"{""seasonal"": ""5%""}",61097,0,North America +2024-10-07,19574,2051,"[""Wireless Mouse"", ""Phone""]",3934.48,{},1963,1,North America +2023-08-11,19575,9227,"[""Charger"", ""Keyboard""]",2645.91,"{"""": ""30%""}",35157,0,Asia +2023-09-23,19576,3963,"[""Tablet"", ""Headphones""]",2824.43,"{""seasonal"": ""7%""}",117824,1,Europe +2023-08-03,19577,4915,"[""Keyboard"", ""Tablet""]",1142.99,{},57833,1,North America +2023-03-26,19578,7500,"[""Tablet"", ""Phone""]",1529.25,{},284192,0,Asia +2023-01-19,19579,9605,"[""Phone"", ""Monitor"", ""Tablet""]",4659.2,"{"""": ""25%""}",257400,0,Africa +2024-07-18,19580,3977,"[""Keyboard"", ""Monitor"", ""Tablet""]",3161.07,{},36565,1,Africa +2023-07-19,19581,1203,"[""Keyboard""]",269.65,"{""promo"": ""16%""}",255972,1,North America +2024-09-11,19582,1953,"[""Monitor"", ""Laptop"", ""Headphones""]",4656.7,{},5668,1,South America +2024-12-13,19583,3325,"[""Headphones"", ""Laptop"", ""Charger""]",4733.61,{},72495,0,Asia +2023-06-24,19584,9002,"[""Tablet"", ""Phone"", ""Monitor""]",3177.08,"{""seasonal"": ""29%""}",81454,0,Europe +2024-11-09,19585,378,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",811.71,"{""seasonal"": ""20%""}",200199,0,North America +2023-09-27,19586,1279,"[""Phone""]",131.44,"{"""": ""6%""}",297279,1,Asia +2023-05-21,19587,2815,"[""Laptop"", ""Headphones""]",2950.62,"{""promo"": ""11%""}",19623,0,South America +2023-05-19,19588,2236,"[""Laptop""]",814.73,"{""loyalty"": ""24%""}",137998,0,Europe +2023-05-25,19589,3776,"[""Tablet"", ""Monitor"", ""Laptop""]",1072.6,{},246471,1,Asia +2023-05-01,19590,1566,"[""Charger"", ""Monitor"", ""Phone""]",4946.99,"{""promo"": ""28%""}",172202,0,Africa +2023-05-23,19591,3922,"[""Phone"", ""Charger"", ""Tablet""]",2044.48,"{"""": ""10%""}",283410,1,Asia +2024-10-10,19592,7549,"[""Monitor"", ""Headphones""]",1075.56,{},149224,0,Europe +2024-09-11,19593,2604,"[""Tablet""]",1665.21,"{""promo"": ""30%""}",278117,0,Europe +2023-01-17,19594,7512,"[""Tablet"", ""Monitor"", ""Headphones""]",1845.47,"{""loyalty"": ""14%""}",253614,1,Asia +2023-11-23,19595,4223,"[""Headphones"", ""Monitor""]",3383.05,"{""promo"": ""24%""}",279535,1,Asia +2023-10-08,19596,3166,"[""Headphones"", ""Keyboard"", ""Phone""]",1954.74,{},52758,0,Europe +2023-03-15,19597,5715,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3719.23,{},49620,1,Europe +2024-10-20,19598,1394,"[""Laptop"", ""Wireless Mouse""]",1043.56,{},104916,1,South America +2023-03-28,19599,4371,"[""Wireless Mouse"", ""Headphones""]",4163.5,{},297528,0,South America +2023-08-30,19600,4434,"[""Charger"", ""Headphones""]",936.44,"{""loyalty"": ""19%""}",293423,0,Africa +2024-05-11,19601,990,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4755.47,"{""seasonal"": ""8%""}",282486,0,Africa +2023-04-07,19602,7938,"[""Charger""]",1318.25,"{"""": ""23%""}",192997,1,Africa +2023-08-10,19603,7482,"[""Headphones"", ""Monitor""]",268.78,{},50236,1,Africa +2024-07-24,19604,4414,"[""Charger""]",3016.46,{},141909,1,Europe +2024-02-11,19605,5643,"[""Phone""]",2330.01,"{""promo"": ""23%""}",7991,0,Asia +2023-11-27,19606,3519,"[""Phone"", ""Monitor"", ""Charger""]",2619.18,"{""seasonal"": ""21%""}",229633,1,South America +2023-07-01,19607,6135,"[""Keyboard"", ""Laptop""]",2487.08,"{""seasonal"": ""22%""}",164588,0,North America +2024-10-27,19608,4703,"[""Keyboard"", ""Wireless Mouse""]",371.8,"{""loyalty"": ""11%""}",167079,1,Asia +2024-12-15,19609,7716,"[""Headphones"", ""Keyboard""]",1998.96,{},2781,0,Europe +2023-12-10,19610,3281,"[""Tablet""]",323.09,"{""promo"": ""21%""}",157074,1,Asia +2023-09-17,19611,8455,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",618.42,{},288630,1,Asia +2023-02-11,19612,2880,"[""Tablet"", ""Keyboard""]",3702.19,"{""loyalty"": ""5%""}",214117,1,Europe +2024-08-27,19613,9991,"[""Monitor"", ""Wireless Mouse""]",2236.46,{},137681,0,South America +2023-08-04,19614,649,"[""Headphones""]",2970.52,"{""seasonal"": ""21%""}",223645,1,Asia +2024-04-22,19615,873,"[""Charger"", ""Phone""]",2002.99,{},173200,1,South America +2023-11-03,19616,5839,"[""Headphones"", ""Tablet"", ""Keyboard""]",3878.44,"{"""": ""18%""}",182010,1,South America +2023-03-25,19617,4041,"[""Headphones""]",4738.73,"{"""": ""7%""}",10010,1,Africa +2023-11-04,19618,2191,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1771.82,{},265556,0,Africa +2023-03-04,19619,2994,"[""Tablet""]",2593.73,"{""promo"": ""19%""}",108800,0,South America +2024-07-24,19620,3090,"[""Laptop"", ""Phone""]",1654.83,"{""seasonal"": ""13%""}",221469,1,Europe +2023-01-05,19621,51,"[""Charger""]",1100.99,"{"""": ""6%""}",217049,1,South America +2023-11-05,19622,2236,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3975.66,"{"""": ""12%""}",23633,0,Asia +2023-10-31,19623,3774,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",520.72,"{""promo"": ""26%""}",27296,0,North America +2024-12-03,19624,6631,"[""Phone"", ""Laptop"", ""Keyboard""]",628.32,"{"""": ""18%""}",7958,1,South America +2023-03-21,19625,2526,"[""Keyboard""]",3094.23,"{"""": ""22%""}",46628,0,Europe +2023-10-27,19626,8264,"[""Tablet"", ""Charger""]",1134.42,{},282671,0,Asia +2024-02-23,19627,853,"[""Wireless Mouse""]",2696.26,{},60620,1,Asia +2024-03-10,19628,2836,"[""Charger""]",766.04,"{""loyalty"": ""21%""}",70421,1,North America +2024-06-20,19629,515,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2680.78,"{"""": ""21%""}",271541,0,South America +2023-11-27,19630,7871,"[""Keyboard""]",611.92,{},278333,1,North America +2023-08-29,19631,8173,"[""Wireless Mouse""]",3378.6,{},233264,1,Asia +2024-07-09,19632,5822,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1776.52,"{""loyalty"": ""25%""}",50558,0,Europe +2024-02-10,19633,2534,"[""Charger""]",4070.82,{},5165,1,Africa +2024-01-20,19634,5231,"[""Phone""]",3830.7,"{""loyalty"": ""22%""}",186958,1,South America +2024-10-21,19635,399,"[""Keyboard"", ""Laptop""]",4684.36,{},297019,0,North America +2023-01-07,19636,2189,"[""Headphones"", ""Tablet""]",3278.18,{},19362,0,Europe +2023-11-09,19637,446,"[""Charger""]",900.78,"{"""": ""18%""}",15803,1,Asia +2023-03-23,19638,1569,"[""Charger""]",2006.21,"{"""": ""29%""}",89405,0,Asia +2024-01-04,19639,2004,"[""Monitor"", ""Tablet"", ""Keyboard""]",3692.26,"{"""": ""18%""}",215254,1,Europe +2024-09-02,19640,6547,"[""Headphones"", ""Keyboard""]",4005.7,{},122252,0,Africa +2024-03-25,19641,3454,"[""Charger""]",1276.91,"{""promo"": ""5%""}",263840,0,Asia +2024-11-30,19642,8765,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1290.97,"{"""": ""6%""}",297314,1,North America +2023-08-28,19643,994,"[""Wireless Mouse"", ""Keyboard""]",3305.1,{},138430,0,Europe +2024-09-11,19644,7496,"[""Headphones"", ""Laptop""]",2655.35,"{""seasonal"": ""30%""}",98155,0,North America +2023-06-23,19645,5134,"[""Headphones""]",3580.1,{},164107,0,North America +2023-06-04,19646,2242,"[""Phone"", ""Tablet"", ""Headphones""]",1785.14,{},56627,1,Asia +2024-11-27,19647,9852,"[""Keyboard"", ""Headphones""]",4263.5,"{""loyalty"": ""18%""}",154261,1,South America +2024-11-14,19648,4969,"[""Laptop"", ""Keyboard""]",2325.35,{},237758,0,Africa +2024-04-22,19649,6687,"[""Wireless Mouse""]",890.49,"{"""": ""26%""}",103548,0,Africa +2023-01-08,19650,4440,"[""Monitor""]",4622.44,{},53677,0,South America +2023-11-07,19651,9380,"[""Wireless Mouse"", ""Laptop""]",2303.43,{},25127,1,North America +2023-01-07,19652,5357,"[""Headphones"", ""Tablet""]",272.0,{},95717,0,Europe +2023-12-28,19653,3959,"[""Keyboard"", ""Monitor"", ""Headphones""]",4573.77,{},14042,1,Europe +2023-11-10,19654,4421,"[""Charger"", ""Wireless Mouse""]",3880.33,"{""loyalty"": ""17%""}",82231,0,South America +2023-09-02,19655,6533,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4776.62,"{""loyalty"": ""28%""}",286954,1,South America +2024-12-03,19656,1279,"[""Tablet""]",2261.12,{},180998,1,Europe +2024-05-17,19657,6441,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2544.1,{},177390,1,Africa +2024-05-12,19658,4718,"[""Laptop"", ""Keyboard""]",3424.17,"{""seasonal"": ""28%""}",202711,0,Asia +2023-04-11,19659,8255,"[""Laptop"", ""Wireless Mouse""]",2586.96,{},188786,0,South America +2023-02-11,19660,5301,"[""Headphones"", ""Laptop"", ""Charger""]",213.74,"{""loyalty"": ""19%""}",277007,1,South America +2024-07-13,19661,6459,"[""Headphones"", ""Tablet""]",3063.88,"{""seasonal"": ""28%""}",277986,0,North America +2024-04-05,19662,2772,"[""Tablet"", ""Laptop"", ""Keyboard""]",3902.42,"{""loyalty"": ""19%""}",70252,1,Asia +2024-06-29,19663,7327,"[""Wireless Mouse"", ""Charger""]",2797.77,{},271020,1,Europe +2024-11-18,19664,4722,"[""Charger""]",1282.44,"{""promo"": ""16%""}",70939,0,North America +2023-08-02,19665,5295,"[""Charger"", ""Monitor"", ""Tablet""]",3964.99,"{""loyalty"": ""25%""}",223400,1,Europe +2024-01-22,19666,7998,"[""Phone"", ""Charger"", ""Keyboard""]",3234.43,"{"""": ""15%""}",55918,1,Asia +2023-08-10,19667,376,"[""Phone""]",3450.5,"{"""": ""9%""}",289304,0,Europe +2023-03-21,19668,3410,"[""Phone""]",1812.32,{},218218,1,North America +2023-08-10,19669,788,"[""Keyboard"", ""Tablet"", ""Monitor""]",347.38,{},8617,0,Africa +2024-10-16,19670,8627,"[""Charger""]",4715.03,"{"""": ""19%""}",94686,1,Africa +2023-11-05,19671,48,"[""Phone""]",804.14,{},245440,0,Europe +2024-10-23,19672,2118,"[""Tablet""]",2429.74,{},156467,0,South America +2024-12-20,19673,1830,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3344.35,{},36554,1,North America +2023-03-03,19674,2480,"[""Keyboard"", ""Phone""]",2559.21,"{""seasonal"": ""16%""}",294167,1,South America +2024-11-14,19675,98,"[""Laptop""]",2543.18,"{"""": ""10%""}",241785,1,South America +2023-06-08,19676,2571,"[""Wireless Mouse""]",4065.15,"{""promo"": ""18%""}",149787,1,South America +2024-10-12,19677,5107,"[""Tablet""]",321.52,{},57086,0,North America +2024-12-11,19678,3648,"[""Monitor"", ""Wireless Mouse""]",4010.81,{},272453,0,South America +2023-02-25,19679,3995,"[""Headphones"", ""Monitor""]",1921.66,{},81817,1,South America +2024-03-24,19680,203,"[""Keyboard""]",1239.19,"{""promo"": ""20%""}",205232,1,South America +2024-08-30,19681,6164,"[""Wireless Mouse""]",2923.65,"{""seasonal"": ""24%""}",216450,1,Asia +2024-08-15,19682,7917,"[""Wireless Mouse""]",3760.35,{},143486,0,Africa +2023-02-20,19683,7640,"[""Keyboard""]",297.47,{},219811,1,North America +2024-03-28,19684,1061,"[""Charger"", ""Tablet"", ""Headphones""]",1172.2,{},221540,0,Europe +2023-02-25,19685,6455,"[""Monitor"", ""Wireless Mouse""]",2771.71,{},164345,1,Asia +2024-05-26,19686,8026,"[""Charger""]",1038.62,{},115518,0,Europe +2023-09-12,19687,1176,"[""Monitor""]",1797.25,"{""seasonal"": ""20%""}",132663,1,North America +2023-03-03,19688,1248,"[""Wireless Mouse""]",277.53,"{""seasonal"": ""10%""}",89566,1,Asia +2024-10-10,19689,7152,"[""Monitor""]",917.88,"{""seasonal"": ""10%""}",117314,1,Africa +2023-02-12,19690,8544,"[""Phone"", ""Keyboard""]",524.07,{},171914,0,Europe +2024-02-24,19691,8756,"[""Charger"", ""Tablet"", ""Keyboard""]",1692.17,{},241860,0,North America +2024-09-17,19692,9791,"[""Phone"", ""Laptop"", ""Tablet""]",2347.94,"{""seasonal"": ""29%""}",13529,0,Africa +2024-07-09,19693,7162,"[""Charger""]",588.01,{},188774,1,Africa +2024-12-09,19694,3020,"[""Phone"", ""Headphones"", ""Keyboard""]",1596.52,"{""promo"": ""20%""}",260037,1,Asia +2024-04-17,19695,4350,"[""Keyboard"", ""Tablet""]",1114.59,{},2996,1,South America +2023-07-15,19696,7297,"[""Charger"", ""Monitor""]",2205.37,"{""seasonal"": ""25%""}",102974,1,South America +2023-02-11,19697,9471,"[""Phone"", ""Monitor"", ""Charger""]",3939.07,"{""seasonal"": ""17%""}",120263,0,South America +2024-11-12,19698,6046,"[""Tablet""]",3199.93,{},10305,1,South America +2024-04-16,19699,7914,"[""Laptop""]",1888.01,{},174629,0,South America +2023-09-04,19700,766,"[""Headphones"", ""Keyboard""]",3600.29,"{""seasonal"": ""20%""}",280079,1,Africa +2023-05-30,19701,8738,"[""Laptop""]",836.47,"{"""": ""10%""}",133072,1,North America +2023-06-08,19702,4108,"[""Charger""]",3349.87,"{""seasonal"": ""23%""}",26436,0,Asia +2023-11-24,19703,9979,"[""Phone"", ""Headphones"", ""Monitor""]",3513.93,"{""loyalty"": ""24%""}",237716,0,Africa +2023-06-23,19704,625,"[""Keyboard""]",57.02,{},200476,1,Africa +2024-02-03,19705,9375,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1542.32,{},254149,0,Asia +2023-06-04,19706,2138,"[""Charger"", ""Tablet""]",895.35,"{""loyalty"": ""14%""}",63093,1,Europe +2023-05-28,19707,1693,"[""Laptop""]",1612.5,{},261381,1,South America +2024-10-03,19708,1817,"[""Phone""]",4589.42,{},265119,1,Africa +2024-06-12,19709,7811,"[""Charger"", ""Tablet"", ""Headphones""]",3226.63,{},283889,1,Europe +2024-07-20,19710,6615,"[""Charger"", ""Phone""]",868.85,"{""loyalty"": ""27%""}",5870,0,Europe +2023-08-06,19711,7739,"[""Tablet"", ""Laptop""]",1348.0,"{""loyalty"": ""24%""}",10230,1,Europe +2024-11-06,19712,2028,"[""Tablet"", ""Monitor""]",2610.11,{},246276,1,South America +2023-04-19,19713,2902,"[""Headphones"", ""Tablet""]",4439.88,"{""seasonal"": ""8%""}",67755,1,North America +2023-04-26,19714,7695,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2616.87,{},166791,1,Europe +2023-06-17,19715,2154,"[""Headphones"", ""Phone"", ""Monitor""]",3721.56,"{""promo"": ""8%""}",39447,0,North America +2024-09-21,19716,5058,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2291.45,"{""promo"": ""27%""}",127798,1,South America +2024-05-01,19717,9687,"[""Monitor"", ""Tablet"", ""Laptop""]",2318.23,"{""promo"": ""22%""}",160972,1,North America +2024-01-05,19718,5350,"[""Keyboard""]",4171.14,{},178832,0,South America +2024-09-02,19719,7193,"[""Monitor"", ""Phone""]",3881.22,"{""seasonal"": ""22%""}",171461,0,Africa +2024-03-11,19720,6590,"[""Monitor""]",383.12,{},102548,1,South America +2024-04-29,19721,1129,"[""Tablet"", ""Keyboard""]",209.88,"{"""": ""7%""}",98166,0,Asia +2024-07-05,19722,5975,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3399.05,{},170674,0,Europe +2023-10-15,19723,2544,"[""Headphones"", ""Tablet""]",185.1,{},153772,1,North America +2024-08-18,19724,113,"[""Monitor"", ""Charger"", ""Laptop""]",4837.76,{},233564,0,Asia +2023-07-27,19725,2409,"[""Phone""]",2757.4,"{""seasonal"": ""11%""}",200977,1,Europe +2023-01-16,19726,9421,"[""Tablet"", ""Charger"", ""Keyboard""]",4405.17,{},8191,1,Asia +2024-10-10,19727,3838,"[""Keyboard"", ""Tablet"", ""Phone""]",284.46,"{""seasonal"": ""16%""}",277831,0,Africa +2023-07-04,19728,3192,"[""Headphones""]",4217.45,"{""promo"": ""12%""}",218437,1,Africa +2023-05-18,19729,4692,"[""Charger"", ""Laptop""]",1315.88,"{""seasonal"": ""23%""}",155395,1,Africa +2024-07-30,19730,5301,"[""Laptop""]",4807.48,{},299497,0,South America +2023-01-22,19731,7227,"[""Charger"", ""Phone""]",4397.82,{},76460,0,Asia +2024-09-02,19732,7777,"[""Tablet"", ""Monitor"", ""Keyboard""]",934.7,"{"""": ""14%""}",76320,1,Europe +2024-12-22,19733,5192,"[""Keyboard"", ""Laptop"", ""Monitor""]",1157.44,"{""loyalty"": ""8%""}",151835,0,Africa +2024-09-24,19734,5777,"[""Phone"", ""Tablet"", ""Keyboard""]",479.95,{},33699,1,Europe +2023-05-04,19735,4203,"[""Keyboard"", ""Monitor"", ""Charger""]",1741.25,"{""seasonal"": ""30%""}",84267,0,Africa +2024-04-01,19736,7031,"[""Headphones"", ""Laptop""]",4549.66,{},100043,1,Europe +2023-05-06,19737,2590,"[""Monitor"", ""Headphones""]",3364.98,{},249413,0,Asia +2023-12-12,19738,6342,"[""Wireless Mouse"", ""Tablet""]",257.98,{},125281,1,Africa +2024-01-19,19739,2951,"[""Monitor"", ""Laptop""]",3964.46,"{""loyalty"": ""12%""}",215954,1,South America +2024-09-19,19740,4956,"[""Wireless Mouse"", ""Monitor""]",1382.4,{},210981,0,North America +2024-01-28,19741,6373,"[""Tablet""]",1277.73,{},123165,1,North America +2023-10-31,19742,5076,"[""Tablet"", ""Wireless Mouse""]",425.81,"{""loyalty"": ""7%""}",257293,0,Asia +2023-02-01,19743,1859,"[""Monitor"", ""Tablet""]",939.97,{},13579,0,North America +2024-01-16,19744,9975,"[""Monitor"", ""Headphones""]",3900.04,"{""loyalty"": ""12%""}",215876,0,Europe +2024-01-01,19745,2232,"[""Tablet"", ""Keyboard""]",1269.59,{},35657,0,South America +2023-09-21,19746,450,"[""Tablet"", ""Keyboard""]",3494.45,"{"""": ""7%""}",142322,0,South America +2024-10-02,19747,8122,"[""Keyboard""]",1312.72,{},60894,0,Asia +2024-01-01,19748,3702,"[""Tablet""]",3521.92,{},249836,0,North America +2024-12-02,19749,3604,"[""Keyboard""]",56.39,"{"""": ""15%""}",108912,1,North America +2023-04-12,19750,2712,"[""Charger"", ""Phone""]",4751.33,{},51801,1,South America +2023-08-14,19751,1891,"[""Phone""]",4121.1,"{"""": ""19%""}",169543,0,North America +2024-09-02,19752,9951,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2411.09,{},214268,1,South America +2024-01-25,19753,21,"[""Headphones""]",488.26,{},33254,0,Asia +2023-04-24,19754,7000,"[""Keyboard"", ""Monitor"", ""Tablet""]",2268.66,"{""seasonal"": ""8%""}",291172,1,South America +2024-07-05,19755,7581,"[""Phone""]",3604.42,{},203938,0,Asia +2023-10-05,19756,4363,"[""Laptop""]",1251.75,"{""loyalty"": ""28%""}",171715,0,Asia +2024-04-28,19757,6218,"[""Charger"", ""Keyboard"", ""Laptop""]",3079.93,{},61056,1,North America +2024-12-19,19758,5481,"[""Wireless Mouse""]",4788.13,"{""loyalty"": ""12%""}",92066,0,Europe +2024-05-20,19759,1240,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2596.61,{},78867,1,Africa +2023-12-23,19760,8314,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1953.43,"{""seasonal"": ""29%""}",71696,1,Africa +2024-02-26,19761,4361,"[""Laptop"", ""Monitor"", ""Phone""]",2110.19,{},216048,0,Europe +2023-12-06,19762,450,"[""Monitor"", ""Keyboard"", ""Headphones""]",3404.93,"{""loyalty"": ""6%""}",163181,1,North America +2024-03-27,19763,1802,"[""Phone"", ""Charger"", ""Keyboard""]",2132.32,{},271975,0,North America +2024-07-08,19764,4018,"[""Keyboard""]",1377.96,"{""promo"": ""12%""}",90961,0,Africa +2023-01-17,19765,6875,"[""Wireless Mouse""]",4429.61,"{""seasonal"": ""11%""}",240412,0,Africa +2024-08-04,19766,3085,"[""Charger"", ""Headphones""]",4856.67,"{""loyalty"": ""25%""}",66039,0,Africa +2024-08-06,19767,6045,"[""Phone""]",3057.7,"{"""": ""19%""}",296081,1,South America +2024-02-01,19768,5807,"[""Monitor""]",1043.66,{},85317,1,North America +2023-05-29,19769,158,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3093.2,{},140477,1,Europe +2024-01-25,19770,3942,"[""Tablet"", ""Keyboard"", ""Phone""]",3408.1,"{""promo"": ""26%""}",299560,0,Africa +2023-12-10,19771,2565,"[""Keyboard""]",3160.15,{},213574,1,North America +2023-06-22,19772,6359,"[""Phone""]",1223.06,{},168630,0,Asia +2024-04-16,19773,3792,"[""Laptop"", ""Charger""]",1446.08,{},52071,0,South America +2024-12-30,19774,3598,"[""Wireless Mouse""]",2574.01,{},12927,1,Europe +2023-10-06,19775,6067,"[""Phone"", ""Monitor""]",4778.19,{},140744,0,Africa +2023-06-22,19776,3038,"[""Wireless Mouse"", ""Headphones""]",557.69,{},201282,1,Africa +2023-08-23,19777,6356,"[""Headphones""]",2008.41,{},42328,0,North America +2024-11-07,19778,7928,"[""Phone""]",629.96,{},195362,0,Asia +2024-12-15,19779,7372,"[""Charger"", ""Tablet"", ""Monitor""]",3064.51,{},25444,1,Europe +2023-07-27,19780,9319,"[""Phone"", ""Charger""]",4930.14,{},162653,0,North America +2024-12-29,19781,8451,"[""Tablet"", ""Keyboard"", ""Charger""]",4088.58,"{""loyalty"": ""5%""}",236654,0,Europe +2024-09-11,19782,4627,"[""Monitor""]",1899.36,"{"""": ""22%""}",48540,0,Europe +2024-09-14,19783,1176,"[""Wireless Mouse"", ""Charger""]",2068.61,"{"""": ""10%""}",263473,0,South America +2023-08-31,19784,4331,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3205.02,{},181868,0,Africa +2024-01-15,19785,4682,"[""Wireless Mouse"", ""Laptop""]",2364.68,{},92364,1,Africa +2024-12-27,19786,9320,"[""Headphones""]",4741.44,{},262621,0,Europe +2023-10-09,19787,8481,"[""Phone"", ""Tablet"", ""Monitor""]",861.06,{},114569,0,South America +2023-07-12,19788,153,"[""Laptop"", ""Phone""]",4709.37,{},163466,0,Africa +2023-05-30,19789,8489,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",493.87,"{""promo"": ""24%""}",183563,1,North America +2023-03-22,19790,7279,"[""Charger"", ""Monitor""]",1725.62,"{""promo"": ""20%""}",240665,1,Asia +2023-04-11,19791,7987,"[""Wireless Mouse"", ""Tablet""]",413.18,{},286500,0,South America +2023-02-05,19792,6817,"[""Keyboard"", ""Phone"", ""Laptop""]",2707.13,{},35263,0,South America +2024-08-21,19793,8479,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4773.85,{},145705,0,North America +2023-02-05,19794,1253,"[""Charger"", ""Monitor""]",2147.15,{},229603,0,North America +2024-05-12,19795,5707,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",429.72,{},68471,1,Africa +2024-07-11,19796,8509,"[""Tablet"", ""Keyboard"", ""Monitor""]",1781.37,{},118365,0,North America +2024-07-04,19797,8922,"[""Monitor"", ""Charger"", ""Headphones""]",265.27,{},127717,1,North America +2024-05-20,19798,2782,"[""Charger"", ""Phone"", ""Monitor""]",2239.1,{},50785,1,South America +2023-09-24,19799,1163,"[""Keyboard"", ""Charger""]",2182.77,{},237780,0,Europe +2024-10-17,19800,5277,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3231.43,{},166912,0,North America +2024-02-27,19801,4759,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1848.28,{},203534,0,Africa +2023-12-20,19802,7535,"[""Laptop""]",3690.03,{},253842,1,Europe +2024-02-17,19803,9316,"[""Keyboard""]",3726.26,"{""seasonal"": ""10%""}",244238,1,Africa +2024-07-02,19804,5904,"[""Keyboard"", ""Charger""]",1366.68,{},168184,1,Europe +2023-09-09,19805,7117,"[""Wireless Mouse"", ""Keyboard""]",399.29,"{""promo"": ""26%""}",159657,1,North America +2023-09-16,19806,9214,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1810.8,"{""seasonal"": ""27%""}",56040,0,Asia +2023-06-18,19807,3411,"[""Keyboard"", ""Phone"", ""Headphones""]",828.26,"{""loyalty"": ""28%""}",272916,1,Africa +2023-04-14,19808,2145,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1204.25,{},166444,0,South America +2023-10-26,19809,9457,"[""Tablet"", ""Laptop""]",2713.65,"{"""": ""17%""}",87388,0,Europe +2023-03-22,19810,1089,"[""Monitor""]",246.88,{},28014,1,South America +2024-02-02,19811,6505,"[""Keyboard"", ""Tablet"", ""Monitor""]",3356.7,"{"""": ""7%""}",257801,1,Europe +2023-10-17,19812,7204,"[""Charger"", ""Phone"", ""Monitor""]",1622.06,{},2024,1,Africa +2024-10-20,19813,8085,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1759.36,"{""promo"": ""11%""}",204072,0,Asia +2023-03-04,19814,1406,"[""Monitor""]",118.45,"{""promo"": ""6%""}",119833,0,Africa +2024-06-17,19815,9794,"[""Tablet"", ""Monitor"", ""Laptop""]",4130.44,"{""loyalty"": ""15%""}",186724,1,South America +2023-05-29,19816,2027,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",55.81,"{""seasonal"": ""30%""}",93850,1,North America +2023-04-27,19817,2462,"[""Wireless Mouse""]",4001.39,"{""loyalty"": ""22%""}",209213,0,Africa +2023-09-19,19818,7478,"[""Charger"", ""Phone""]",2310.74,{},231212,1,Africa +2024-09-27,19819,6360,"[""Tablet"", ""Charger""]",1194.29,"{"""": ""20%""}",13178,0,Africa +2023-07-27,19820,5647,"[""Headphones"", ""Phone""]",3772.37,"{""loyalty"": ""20%""}",50183,0,South America +2024-08-31,19821,2281,"[""Tablet""]",2336.19,{},97909,1,South America +2024-03-25,19822,1058,"[""Headphones""]",1453.49,"{"""": ""10%""}",192403,0,North America +2023-01-23,19823,6856,"[""Headphones""]",2078.41,"{""loyalty"": ""28%""}",106008,1,Asia +2023-03-07,19824,4211,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",923.29,{},48442,0,South America +2024-05-08,19825,2353,"[""Monitor""]",1341.76,{},291477,0,Asia +2023-11-08,19826,9480,"[""Monitor""]",3528.82,"{""seasonal"": ""30%""}",150912,1,Europe +2023-01-03,19827,4592,"[""Phone""]",4169.94,"{""seasonal"": ""14%""}",34207,1,Europe +2023-09-22,19828,4959,"[""Laptop"", ""Monitor""]",4762.45,"{""loyalty"": ""11%""}",44306,1,Asia +2024-01-04,19829,5974,"[""Headphones""]",4906.55,"{""seasonal"": ""29%""}",228485,1,Africa +2024-02-01,19830,9134,"[""Keyboard""]",4430.59,"{""loyalty"": ""6%""}",206244,0,North America +2024-12-04,19831,2531,"[""Phone""]",1367.42,{},112349,1,North America +2024-12-19,19832,1904,"[""Phone""]",4277.37,{},109619,1,North America +2023-05-12,19833,1,"[""Keyboard"", ""Wireless Mouse""]",3772.47,"{"""": ""25%""}",158197,1,Asia +2023-09-05,19834,4961,"[""Phone"", ""Laptop""]",3297.72,"{"""": ""28%""}",224939,0,North America +2024-01-29,19835,5182,"[""Laptop""]",457.96,"{""loyalty"": ""16%""}",44829,0,Europe +2023-01-23,19836,7076,"[""Monitor""]",389.42,{},164653,1,Europe +2023-10-03,19837,7066,"[""Charger"", ""Monitor"", ""Headphones""]",2861.82,{},55122,0,North America +2023-02-11,19838,6000,"[""Phone"", ""Charger"", ""Monitor""]",1829.54,{},274707,0,Europe +2023-11-26,19839,5583,"[""Tablet"", ""Phone""]",1907.13,{},283734,1,Asia +2024-05-24,19840,1345,"[""Laptop"", ""Monitor""]",693.06,{},276338,1,North America +2024-01-24,19841,5874,"[""Keyboard"", ""Headphones"", ""Charger""]",272.9,"{""loyalty"": ""6%""}",232513,0,North America +2023-04-17,19842,167,"[""Phone"", ""Laptop"", ""Charger""]",2962.24,"{"""": ""14%""}",226382,1,Asia +2023-06-24,19843,714,"[""Laptop""]",4614.08,{},99817,1,North America +2023-09-28,19844,312,"[""Keyboard"", ""Monitor"", ""Tablet""]",3627.45,"{""seasonal"": ""5%""}",10724,1,Africa +2024-10-14,19845,6223,"[""Tablet"", ""Phone"", ""Charger""]",2300.82,"{"""": ""14%""}",138261,0,Europe +2024-04-03,19846,9954,"[""Laptop"", ""Headphones"", ""Phone""]",3002.79,"{"""": ""10%""}",197880,0,Africa +2024-10-24,19847,6000,"[""Keyboard"", ""Headphones""]",993.25,"{""promo"": ""25%""}",294724,0,North America +2024-11-09,19848,5715,"[""Laptop"", ""Monitor""]",3170.72,{},276223,0,Africa +2023-07-15,19849,6543,"[""Phone""]",4061.61,{},189691,0,Asia +2024-05-02,19850,9731,"[""Wireless Mouse"", ""Laptop""]",3396.98,"{""seasonal"": ""23%""}",7149,1,South America +2024-07-21,19851,7063,"[""Headphones"", ""Monitor""]",4027.55,"{""promo"": ""7%""}",50951,0,South America +2023-10-11,19852,9622,"[""Tablet""]",4997.31,{},57288,1,Europe +2024-04-09,19853,1484,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",774.4,"{""loyalty"": ""7%""}",36277,1,North America +2024-08-24,19854,2654,"[""Phone""]",1469.83,"{""seasonal"": ""26%""}",186749,0,South America +2024-06-27,19855,9144,"[""Charger"", ""Wireless Mouse""]",4061.23,{},61693,0,North America +2023-07-22,19856,224,"[""Phone"", ""Monitor"", ""Headphones""]",2168.41,"{""seasonal"": ""8%""}",158138,1,North America +2023-05-11,19857,4958,"[""Laptop"", ""Headphones"", ""Keyboard""]",4630.82,{},98466,1,North America +2023-03-01,19858,8521,"[""Monitor""]",2062.01,{},268486,1,Europe +2023-02-09,19859,6220,"[""Phone"", ""Laptop"", ""Charger""]",2939.38,{},185752,1,Asia +2024-09-07,19860,1657,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4503.52,"{""seasonal"": ""29%""}",109367,0,Asia +2024-09-25,19861,5186,"[""Charger"", ""Laptop"", ""Tablet""]",573.89,{},101803,1,South America +2024-11-01,19862,3846,"[""Phone""]",2071.02,"{""seasonal"": ""26%""}",232284,0,Asia +2023-04-14,19863,9971,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4605.07,"{"""": ""10%""}",181228,0,South America +2023-12-25,19864,3840,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1529.78,"{""seasonal"": ""12%""}",213421,1,Europe +2023-02-17,19865,5458,"[""Monitor"", ""Charger""]",2445.13,"{""seasonal"": ""10%""}",194256,0,Africa +2024-11-09,19866,3044,"[""Laptop"", ""Headphones"", ""Charger""]",1135.52,"{""seasonal"": ""18%""}",202637,0,North America +2023-11-25,19867,217,"[""Headphones"", ""Laptop""]",1032.92,"{""promo"": ""18%""}",148786,0,South America +2024-05-16,19868,7676,"[""Monitor""]",1758.42,{},264814,0,North America +2024-07-09,19869,6003,"[""Phone""]",317.76,{},172653,1,Africa +2024-05-10,19870,3480,"[""Wireless Mouse""]",1340.01,"{""seasonal"": ""27%""}",196214,1,South America +2024-05-04,19871,9643,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3101.01,{},104133,0,Europe +2023-04-04,19872,901,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2847.27,"{""promo"": ""11%""}",102849,1,North America +2024-11-10,19873,4666,"[""Tablet"", ""Phone""]",4658.49,"{""seasonal"": ""21%""}",281405,1,Africa +2024-09-02,19874,6325,"[""Keyboard""]",3352.55,{},85927,0,North America +2023-04-17,19875,3229,"[""Charger""]",1697.18,"{""seasonal"": ""10%""}",63784,1,Africa +2024-01-17,19876,733,"[""Tablet"", ""Laptop""]",131.14,{},21042,0,Asia +2023-04-27,19877,7470,"[""Laptop"", ""Monitor""]",3857.33,{},230172,1,Europe +2024-03-22,19878,9529,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2630.19,"{"""": ""14%""}",137694,1,Europe +2024-05-26,19879,7733,"[""Keyboard""]",904.82,{},11119,0,Asia +2023-12-11,19880,4673,"[""Tablet"", ""Headphones""]",1612.43,{},174980,0,North America +2023-11-28,19881,4032,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",631.42,"{""promo"": ""10%""}",9012,0,Asia +2024-11-06,19882,4887,"[""Keyboard"", ""Monitor""]",929.92,"{"""": ""10%""}",186440,1,Africa +2024-03-02,19883,5508,"[""Phone""]",2908.83,"{"""": ""23%""}",89733,0,South America +2024-08-10,19884,8944,"[""Keyboard""]",1625.12,"{""seasonal"": ""6%""}",109925,0,North America +2023-12-30,19885,8646,"[""Laptop""]",3844.29,"{""loyalty"": ""25%""}",76684,0,South America +2023-11-08,19886,4552,"[""Laptop"", ""Monitor""]",299.83,"{""loyalty"": ""20%""}",107543,0,Europe +2023-06-24,19887,7044,"[""Phone""]",802.19,"{""loyalty"": ""9%""}",241444,1,North America +2024-05-13,19888,6034,"[""Headphones"", ""Tablet"", ""Charger""]",2018.65,"{""seasonal"": ""15%""}",287739,0,South America +2024-12-16,19889,7708,"[""Tablet"", ""Phone"", ""Keyboard""]",606.04,{},158628,1,Africa +2024-03-07,19890,4933,"[""Tablet"", ""Wireless Mouse""]",1143.38,{},73000,1,South America +2024-10-11,19891,9155,"[""Wireless Mouse"", ""Monitor""]",1918.65,"{""promo"": ""24%""}",31721,1,South America +2024-03-21,19892,5660,"[""Phone"", ""Headphones"", ""Keyboard""]",2997.18,{},115489,1,Africa +2024-11-19,19893,5640,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4703.81,"{""promo"": ""29%""}",201140,1,Europe +2023-04-03,19894,2973,"[""Charger""]",4373.2,"{""promo"": ""8%""}",78640,0,Europe +2024-01-12,19895,8432,"[""Laptop"", ""Keyboard""]",3939.34,"{"""": ""11%""}",181372,0,South America +2024-08-14,19896,4626,"[""Wireless Mouse"", ""Charger""]",1435.43,{},18434,0,South America +2024-03-25,19897,8770,"[""Keyboard"", ""Phone"", ""Charger""]",2199.83,{},59468,1,Asia +2023-08-08,19898,4479,"[""Laptop"", ""Charger""]",2397.28,"{""seasonal"": ""19%""}",124135,1,North America +2023-03-12,19899,850,"[""Phone"", ""Charger"", ""Tablet""]",3429.15,{},37559,0,Africa +2024-09-07,19900,8106,"[""Monitor"", ""Laptop""]",1129.93,{},229086,0,South America +2024-04-07,19901,7241,"[""Keyboard""]",3209.88,"{""loyalty"": ""16%""}",40329,0,North America +2024-07-30,19902,8430,"[""Keyboard"", ""Laptop""]",2325.46,{},244960,1,Asia +2023-03-01,19903,4389,"[""Wireless Mouse"", ""Charger""]",2053.58,{},277316,1,Europe +2024-02-02,19904,6011,"[""Phone"", ""Keyboard"", ""Tablet""]",1035.58,{},159696,0,North America +2024-08-17,19905,1412,"[""Monitor"", ""Headphones""]",3486.52,{},41782,1,Asia +2023-12-11,19906,1486,"[""Keyboard"", ""Phone""]",4175.7,{},107064,1,Asia +2024-08-10,19907,8756,"[""Charger"", ""Headphones"", ""Keyboard""]",3573.54,"{""loyalty"": ""7%""}",100631,1,Asia +2023-09-24,19908,534,"[""Keyboard""]",2080.86,{},3481,1,Africa +2024-09-23,19909,9485,"[""Keyboard""]",885.52,{},297813,0,South America +2023-10-26,19910,292,"[""Laptop"", ""Monitor""]",829.67,"{""seasonal"": ""14%""}",187961,0,North America +2024-04-27,19911,2756,"[""Laptop"", ""Headphones""]",900.43,"{""seasonal"": ""12%""}",81255,1,Europe +2024-09-06,19912,3346,"[""Monitor"", ""Headphones""]",2440.23,"{""seasonal"": ""13%""}",225915,0,Asia +2024-08-27,19913,7220,"[""Charger"", ""Monitor"", ""Laptop""]",4852.11,{},63674,0,North America +2024-01-20,19914,2215,"[""Keyboard"", ""Headphones"", ""Phone""]",2746.34,"{""loyalty"": ""5%""}",55765,0,North America +2024-03-18,19915,5186,"[""Keyboard"", ""Charger""]",2547.61,"{""promo"": ""14%""}",58914,1,Europe +2024-06-27,19916,9393,"[""Keyboard""]",479.73,{},59696,1,Europe +2024-07-01,19917,3132,"[""Laptop"", ""Charger"", ""Headphones""]",3933.26,"{""promo"": ""13%""}",107569,1,Asia +2024-11-25,19918,2743,"[""Charger"", ""Wireless Mouse""]",1644.95,"{""promo"": ""10%""}",104905,1,Europe +2024-06-14,19919,703,"[""Phone""]",2220.43,{},193838,1,South America +2024-08-25,19920,7889,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",285.94,{},228443,0,North America +2023-03-04,19921,1656,"[""Keyboard""]",271.45,{},259190,1,Africa +2023-05-06,19922,800,"[""Headphones"", ""Laptop"", ""Tablet""]",1078.04,"{""seasonal"": ""21%""}",281097,0,North America +2024-05-16,19923,6632,"[""Charger""]",1872.55,{},35049,0,Asia +2023-09-29,19924,770,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",329.38,{},97604,1,Europe +2023-03-05,19925,6122,"[""Wireless Mouse"", ""Keyboard""]",4447.09,{},269482,1,North America +2023-01-30,19926,682,"[""Keyboard""]",2178.58,{},223966,1,North America +2024-01-27,19927,8488,"[""Phone"", ""Keyboard"", ""Headphones""]",4226.0,{},100625,1,Asia +2023-03-17,19928,2988,"[""Laptop"", ""Headphones""]",4598.35,"{""loyalty"": ""15%""}",76847,1,North America +2023-07-05,19929,7353,"[""Monitor"", ""Headphones"", ""Charger""]",1423.64,"{""promo"": ""23%""}",19430,0,Asia +2024-12-21,19930,8940,"[""Phone""]",1093.76,"{"""": ""13%""}",127644,1,South America +2024-01-25,19931,4565,"[""Headphones"", ""Laptop""]",2402.26,{},182446,0,Europe +2023-09-15,19932,6861,"[""Phone"", ""Monitor""]",3966.94,"{"""": ""8%""}",54401,1,Africa +2024-05-18,19933,6343,"[""Monitor""]",4154.82,"{"""": ""7%""}",126681,0,Africa +2024-02-26,19934,6331,"[""Headphones""]",3623.6,"{"""": ""24%""}",285940,0,South America +2023-10-13,19935,6086,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3603.53,{},205614,1,South America +2024-12-09,19936,2112,"[""Keyboard"", ""Tablet"", ""Laptop""]",195.77,{},288115,1,Europe +2024-04-02,19937,8514,"[""Wireless Mouse"", ""Charger""]",784.55,"{""promo"": ""23%""}",54902,1,Asia +2024-11-24,19938,9039,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3406.11,"{""promo"": ""16%""}",145672,0,South America +2023-08-17,19939,2904,"[""Tablet""]",779.53,"{"""": ""24%""}",163421,1,Asia +2024-07-18,19940,6181,"[""Tablet"", ""Headphones""]",118.83,"{"""": ""24%""}",232978,0,North America +2023-12-16,19941,6377,"[""Monitor""]",3044.57,"{""promo"": ""26%""}",18991,1,Africa +2023-07-11,19942,2947,"[""Headphones""]",346.41,{},284718,1,Africa +2023-08-30,19943,7738,"[""Laptop""]",3268.71,{},110979,1,South America +2024-03-14,19944,8334,"[""Laptop"", ""Headphones""]",1602.24,{},222494,0,Europe +2024-08-09,19945,4914,"[""Laptop"", ""Keyboard"", ""Monitor""]",4322.41,"{""promo"": ""17%""}",126847,0,Africa +2024-08-19,19946,2927,"[""Headphones"", ""Laptop"", ""Charger""]",2850.12,"{"""": ""6%""}",13567,1,Asia +2023-03-04,19947,3880,"[""Charger"", ""Laptop"", ""Monitor""]",2327.07,{},260418,1,Asia +2024-10-17,19948,2574,"[""Charger""]",4931.52,"{""loyalty"": ""23%""}",31854,1,Europe +2023-06-24,19949,6567,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3188.81,{},167573,1,Asia +2023-08-25,19950,8605,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",420.85,{},27899,1,Europe +2023-11-14,19951,8660,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3050.35,"{"""": ""16%""}",215897,1,South America +2024-02-13,19952,7849,"[""Keyboard""]",3167.7,"{""loyalty"": ""25%""}",49130,0,Europe +2024-04-09,19953,7531,"[""Laptop"", ""Phone""]",2116.77,"{""loyalty"": ""17%""}",140663,0,North America +2023-07-28,19954,7707,"[""Laptop""]",1384.36,"{""promo"": ""11%""}",3307,0,South America +2023-02-01,19955,3253,"[""Tablet""]",1813.84,"{""promo"": ""10%""}",231672,1,North America +2024-01-16,19956,476,"[""Tablet""]",4957.9,{},295048,0,North America +2024-05-10,19957,7864,"[""Tablet""]",1046.73,{},170987,0,South America +2024-12-18,19958,3716,"[""Phone"", ""Laptop""]",3783.78,{},142463,0,South America +2023-08-30,19959,7105,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2130.79,{},191581,1,South America +2024-11-23,19960,6950,"[""Charger"", ""Headphones"", ""Phone""]",4442.49,{},137684,1,North America +2023-04-10,19961,1432,"[""Tablet""]",2178.22,{},111753,0,Asia +2023-01-01,19962,3943,"[""Keyboard""]",3189.37,{},71273,1,South America +2024-12-05,19963,6926,"[""Tablet"", ""Monitor""]",428.42,{},33015,0,Africa +2023-06-01,19964,8286,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4674.01,{},77087,1,South America +2024-04-20,19965,3365,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",614.33,"{""seasonal"": ""5%""}",70552,1,Europe +2024-03-08,19966,4836,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",120.33,{},139776,0,South America +2023-09-24,19967,4382,"[""Keyboard""]",4308.45,"{""loyalty"": ""16%""}",31391,0,South America +2024-12-06,19968,6409,"[""Headphones"", ""Charger""]",3583.66,"{""promo"": ""6%""}",157104,0,South America +2024-01-20,19969,9413,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4732.95,"{""promo"": ""10%""}",198417,1,Africa +2024-07-25,19970,6713,"[""Wireless Mouse"", ""Tablet""]",4302.24,{},5374,1,Europe +2023-09-08,19971,3716,"[""Wireless Mouse""]",3304.12,"{""promo"": ""7%""}",290848,0,Asia +2023-11-28,19972,7243,"[""Tablet"", ""Keyboard""]",3042.4,{},204668,0,Asia +2023-10-05,19973,6705,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4520.5,"{""loyalty"": ""16%""}",128252,1,Europe +2023-03-24,19974,7405,"[""Monitor""]",1255.54,"{""loyalty"": ""21%""}",133079,0,South America +2023-01-17,19975,1755,"[""Tablet""]",1292.75,{},160518,0,North America +2024-12-29,19976,5330,"[""Keyboard""]",815.76,{},7300,1,Africa +2023-04-16,19977,5349,"[""Tablet"", ""Phone"", ""Charger""]",3736.83,"{""loyalty"": ""6%""}",143927,0,Europe +2023-12-05,19978,4171,"[""Wireless Mouse""]",1296.17,{},142917,1,South America +2024-06-08,19979,4316,"[""Headphones"", ""Monitor"", ""Laptop""]",4531.44,{},104499,0,Europe +2023-10-15,19980,4868,"[""Monitor"", ""Phone""]",746.44,{},69127,0,South America +2023-10-07,19981,8448,"[""Monitor"", ""Headphones"", ""Phone""]",179.88,{},296222,0,Asia +2023-02-01,19982,2953,"[""Headphones"", ""Charger"", ""Tablet""]",4527.4,"{""promo"": ""6%""}",63479,0,Asia +2024-11-29,19983,7256,"[""Phone""]",2847.35,"{"""": ""30%""}",198569,0,South America +2023-04-01,19984,5230,"[""Laptop"", ""Wireless Mouse""]",3870.87,"{"""": ""20%""}",287022,1,North America +2024-02-18,19985,2359,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2837.63,"{"""": ""5%""}",62310,0,Asia +2024-02-19,19986,1548,"[""Headphones"", ""Keyboard""]",3469.47,{},68432,1,South America +2023-04-20,19987,462,"[""Phone"", ""Charger""]",223.67,"{""promo"": ""26%""}",158288,1,Asia +2023-08-17,19988,9814,"[""Laptop"", ""Keyboard""]",4803.19,{},160615,0,South America +2023-04-03,19989,1084,"[""Laptop"", ""Charger"", ""Headphones""]",3749.86,"{""promo"": ""9%""}",29016,0,Africa +2023-05-21,19990,3112,"[""Laptop""]",4265.44,{},137563,0,North America +2023-10-08,19991,9133,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1595.6,{},144497,1,South America +2023-12-08,19992,726,"[""Keyboard""]",3850.0,{},235131,0,Asia +2023-10-16,19993,298,"[""Laptop"", ""Monitor""]",4229.85,"{""seasonal"": ""17%""}",118504,1,South America +2023-09-28,19994,2108,"[""Laptop"", ""Phone"", ""Charger""]",3891.62,"{""loyalty"": ""22%""}",132761,1,Africa +2023-09-20,19995,8724,"[""Charger"", ""Wireless Mouse""]",3920.5,{},127482,1,North America +2023-01-24,19996,862,"[""Keyboard""]",1084.82,{},85749,0,South America +2024-10-15,19997,9134,"[""Wireless Mouse"", ""Tablet""]",2977.55,"{""promo"": ""9%""}",105567,0,Asia +2024-01-17,19998,6491,"[""Wireless Mouse"", ""Keyboard""]",3429.15,{},250705,0,Africa +2024-02-13,19999,276,"[""Tablet"", ""Keyboard""]",290.81,{},299164,1,South America +2023-06-27,20000,742,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4557.33,{},11216,0,North America +2023-02-19,20001,8709,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4746.91,{},263543,1,Asia +2024-07-29,20002,107,"[""Keyboard"", ""Laptop"", ""Tablet""]",1489.01,"{""promo"": ""19%""}",187827,0,Asia +2024-01-04,20003,9974,"[""Phone"", ""Headphones"", ""Tablet""]",1592.53,{},11437,1,South America +2024-05-06,20004,6777,"[""Keyboard"", ""Laptop"", ""Charger""]",4914.44,{},282573,0,Asia +2024-10-22,20005,3528,"[""Keyboard"", ""Headphones"", ""Laptop""]",2127.44,"{""seasonal"": ""10%""}",78620,0,South America +2024-09-29,20006,5700,"[""Phone"", ""Keyboard"", ""Headphones""]",4146.75,"{""seasonal"": ""11%""}",270051,0,Europe +2023-12-14,20007,4186,"[""Monitor""]",4177.07,{},54045,0,Europe +2023-01-31,20008,3725,"[""Phone""]",2542.46,{},118896,1,South America +2024-12-24,20009,7797,"[""Laptop""]",3983.46,"{""seasonal"": ""26%""}",274769,0,Asia +2023-11-20,20010,6511,"[""Laptop"", ""Tablet"", ""Phone""]",2379.55,"{"""": ""27%""}",68082,1,North America +2023-04-28,20011,3232,"[""Tablet"", ""Laptop""]",2196.96,{},218669,0,Asia +2024-10-12,20012,5604,"[""Wireless Mouse""]",4749.83,"{""promo"": ""12%""}",30361,1,Europe +2024-02-17,20013,2996,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2770.92,{},74723,1,Africa +2024-11-23,20014,8046,"[""Monitor"", ""Keyboard""]",3938.32,"{""seasonal"": ""5%""}",239679,1,Africa +2024-10-13,20015,4434,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1192.57,{},123231,1,South America +2023-07-07,20016,1575,"[""Tablet"", ""Keyboard""]",3998.3,{},152143,1,South America +2024-06-26,20017,4931,"[""Headphones""]",143.75,"{""promo"": ""19%""}",255649,0,Asia +2024-08-11,20018,1338,"[""Monitor"", ""Wireless Mouse""]",515.67,{},176509,0,Asia +2023-11-21,20019,5680,"[""Wireless Mouse""]",2394.74,"{""seasonal"": ""19%""}",167383,1,Africa +2023-04-07,20020,1678,"[""Charger""]",2248.61,{},280732,1,Africa +2023-03-10,20021,3448,"[""Headphones"", ""Tablet""]",4193.46,"{""loyalty"": ""23%""}",80882,1,Africa +2024-02-27,20022,5823,"[""Tablet"", ""Keyboard""]",4888.59,"{""promo"": ""24%""}",77928,0,Africa +2023-03-13,20023,3905,"[""Charger"", ""Monitor"", ""Phone""]",2849.17,{},77518,0,South America +2024-10-16,20024,9666,"[""Laptop"", ""Tablet""]",1369.39,{},67893,1,Africa +2023-04-08,20025,9984,"[""Monitor"", ""Laptop"", ""Charger""]",3953.25,{},180501,0,Africa +2023-11-22,20026,2767,"[""Charger"", ""Monitor""]",4142.74,{},231526,1,North America +2023-08-27,20027,9654,"[""Wireless Mouse"", ""Charger""]",2017.49,"{"""": ""14%""}",191395,1,Africa +2023-04-24,20028,5653,"[""Monitor"", ""Phone"", ""Keyboard""]",1802.6,{},6517,1,North America +2023-09-02,20029,1261,"[""Charger""]",4622.68,"{"""": ""20%""}",5594,1,North America +2023-05-03,20030,4879,"[""Keyboard"", ""Laptop""]",4324.93,{},9914,0,Asia +2024-05-21,20031,519,"[""Laptop"", ""Charger"", ""Monitor""]",872.47,{},244029,1,Europe +2024-03-12,20032,790,"[""Laptop""]",2946.26,"{""loyalty"": ""21%""}",277049,1,Africa +2023-08-30,20033,4729,"[""Phone""]",2331.27,"{""promo"": ""13%""}",73571,1,Asia +2023-10-17,20034,5000,"[""Phone""]",977.1,"{""promo"": ""15%""}",1948,0,South America +2023-08-08,20035,5210,"[""Charger""]",931.04,"{""loyalty"": ""22%""}",244421,0,North America +2024-01-08,20036,872,"[""Headphones"", ""Phone"", ""Tablet""]",4201.9,{},18676,0,Africa +2023-07-25,20037,9795,"[""Charger""]",3646.04,"{""loyalty"": ""24%""}",251537,1,Europe +2024-08-27,20038,6362,"[""Phone"", ""Tablet""]",877.91,{},220886,1,Africa +2024-07-04,20039,9824,"[""Keyboard""]",373.22,"{""seasonal"": ""7%""}",113610,0,South America +2024-02-26,20040,4943,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2777.45,"{""promo"": ""13%""}",278624,0,South America +2023-08-11,20041,1600,"[""Headphones"", ""Wireless Mouse""]",3103.17,{},289315,1,Asia +2024-04-11,20042,7164,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2673.31,"{"""": ""14%""}",70565,1,South America +2024-01-12,20043,8976,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4745.36,{},293564,1,Europe +2023-10-19,20044,1003,"[""Laptop"", ""Phone"", ""Charger""]",2042.17,{},239425,1,Europe +2024-06-13,20045,8680,"[""Monitor"", ""Charger"", ""Headphones""]",1530.59,"{"""": ""25%""}",67714,1,Asia +2023-01-24,20046,4237,"[""Keyboard"", ""Phone""]",4677.59,"{"""": ""9%""}",23584,1,North America +2023-01-14,20047,5357,"[""Keyboard""]",2674.13,"{""seasonal"": ""26%""}",15753,1,Asia +2024-06-06,20048,571,"[""Charger"", ""Keyboard"", ""Monitor""]",760.24,{},198436,1,South America +2024-08-13,20049,1539,"[""Phone"", ""Monitor""]",2912.61,{},264450,0,North America +2023-07-05,20050,5121,"[""Wireless Mouse"", ""Tablet""]",4467.75,{},185282,1,Africa +2023-05-07,20051,6317,"[""Laptop""]",2982.58,{},293239,0,South America +2024-08-11,20052,676,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1677.3,{},137955,1,North America +2024-12-08,20053,4065,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4971.19,"{""loyalty"": ""20%""}",213038,1,Africa +2023-03-24,20054,1958,"[""Headphones"", ""Tablet""]",4598.77,{},191758,0,Africa +2024-02-22,20055,2710,"[""Charger"", ""Monitor"", ""Tablet""]",2717.71,{},202379,1,South America +2023-07-28,20056,3901,"[""Tablet""]",865.82,{},214462,0,Asia +2023-07-28,20057,320,"[""Charger""]",3710.37,{},27735,0,Africa +2023-10-19,20058,136,"[""Phone"", ""Keyboard""]",2407.99,"{""loyalty"": ""15%""}",13241,0,Africa +2023-01-12,20059,2384,"[""Laptop"", ""Wireless Mouse""]",3219.05,{},41438,0,North America +2023-01-14,20060,9604,"[""Laptop"", ""Wireless Mouse""]",4933.06,"{""seasonal"": ""16%""}",31711,0,Asia +2023-08-14,20061,4375,"[""Headphones"", ""Charger"", ""Monitor""]",4015.0,{},186002,0,Asia +2024-11-04,20062,5344,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4302.66,"{"""": ""15%""}",133679,1,North America +2023-03-20,20063,6931,"[""Monitor""]",313.54,"{""loyalty"": ""21%""}",85243,0,North America +2023-06-13,20064,1127,"[""Wireless Mouse"", ""Laptop""]",182.19,{},62029,1,Asia +2023-12-08,20065,2707,"[""Laptop"", ""Monitor"", ""Headphones""]",1573.64,{},291059,1,Africa +2024-07-12,20066,208,"[""Headphones"", ""Monitor"", ""Keyboard""]",594.94,"{""loyalty"": ""16%""}",14137,1,Africa +2024-06-29,20067,6433,"[""Headphones""]",4541.28,"{""loyalty"": ""21%""}",273382,1,North America +2023-08-05,20068,8935,"[""Phone"", ""Charger"", ""Headphones""]",960.47,{},178514,1,Europe +2023-03-30,20069,925,"[""Keyboard""]",4045.27,"{"""": ""29%""}",234263,0,Asia +2023-03-27,20070,6929,"[""Wireless Mouse"", ""Headphones""]",2935.0,{},97356,1,Europe +2023-03-25,20071,7663,"[""Phone"", ""Monitor"", ""Charger""]",270.4,"{"""": ""14%""}",4512,1,North America +2024-06-23,20072,9283,"[""Laptop""]",588.14,"{""promo"": ""7%""}",270533,1,Africa +2024-02-29,20073,8360,"[""Wireless Mouse"", ""Laptop""]",1534.24,"{""seasonal"": ""5%""}",99259,1,Europe +2024-07-16,20074,2314,"[""Keyboard"", ""Phone""]",4722.6,{},146399,1,South America +2024-01-30,20075,6672,"[""Wireless Mouse""]",4127.06,{},70744,1,North America +2024-11-13,20076,3247,"[""Laptop"", ""Wireless Mouse""]",4409.69,"{""seasonal"": ""12%""}",264108,1,South America +2024-03-07,20077,5122,"[""Keyboard""]",833.24,{},139137,1,South America +2024-01-25,20078,9990,"[""Monitor"", ""Tablet"", ""Charger""]",814.09,{},113712,0,Africa +2023-01-04,20079,9083,"[""Phone""]",329.99,"{""promo"": ""17%""}",274477,0,North America +2024-03-29,20080,4896,"[""Laptop"", ""Headphones"", ""Charger""]",3475.26,"{"""": ""30%""}",271814,1,South America +2024-11-07,20081,9814,"[""Phone""]",875.67,{},266511,0,South America +2024-05-30,20082,9597,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4108.33,"{""promo"": ""17%""}",210745,0,Europe +2024-01-13,20083,4272,"[""Laptop"", ""Keyboard""]",794.22,"{"""": ""5%""}",49194,0,Africa +2024-11-06,20084,8738,"[""Wireless Mouse""]",861.96,"{""loyalty"": ""24%""}",258834,1,Africa +2023-11-24,20085,3006,"[""Headphones"", ""Phone"", ""Tablet""]",460.97,"{""promo"": ""15%""}",286136,1,Africa +2023-12-17,20086,8625,"[""Laptop""]",4282.29,{},268071,1,South America +2024-02-07,20087,6829,"[""Headphones"", ""Wireless Mouse""]",4833.13,"{""loyalty"": ""19%""}",44940,0,North America +2024-03-10,20088,7549,"[""Charger"", ""Monitor"", ""Laptop""]",874.33,{},69578,0,Africa +2024-04-18,20089,1900,"[""Laptop"", ""Keyboard""]",4617.18,{},216173,1,South America +2023-07-14,20090,7113,"[""Keyboard""]",2998.56,"{""loyalty"": ""13%""}",132240,1,Europe +2024-10-11,20091,2297,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1628.99,{},147721,1,Europe +2023-05-24,20092,3874,"[""Headphones"", ""Charger""]",2779.66,{},132083,1,Africa +2024-12-15,20093,6406,"[""Wireless Mouse""]",1007.26,"{""loyalty"": ""18%""}",283685,0,Europe +2024-03-12,20094,3076,"[""Charger""]",3075.32,"{""seasonal"": ""18%""}",75186,1,Africa +2024-09-15,20095,6747,"[""Wireless Mouse"", ""Headphones""]",2678.24,{},276501,1,South America +2024-06-14,20096,2481,"[""Wireless Mouse""]",4271.88,"{""loyalty"": ""22%""}",26234,1,North America +2023-04-21,20097,4489,"[""Wireless Mouse"", ""Headphones""]",3865.75,"{""seasonal"": ""7%""}",254909,0,South America +2024-12-08,20098,5073,"[""Phone""]",2849.2,"{""seasonal"": ""18%""}",202415,1,North America +2024-06-17,20099,410,"[""Phone""]",4461.1,"{"""": ""20%""}",65783,0,Asia +2024-10-03,20100,8979,"[""Headphones""]",3174.07,{},43730,0,South America +2023-05-19,20101,7588,"[""Charger""]",3443.27,"{""promo"": ""7%""}",74815,1,Europe +2023-03-13,20102,5017,"[""Tablet"", ""Phone"", ""Monitor""]",4814.33,"{""promo"": ""13%""}",161673,1,South America +2024-02-05,20103,6976,"[""Keyboard"", ""Headphones""]",238.2,{},209174,1,North America +2023-08-02,20104,653,"[""Laptop""]",3488.3,{},144633,1,Europe +2024-09-27,20105,2556,"[""Headphones""]",1170.39,{},4158,0,South America +2024-02-28,20106,1756,"[""Charger"", ""Phone""]",4498.66,"{""loyalty"": ""5%""}",220560,0,Asia +2024-10-06,20107,6545,"[""Wireless Mouse""]",1214.39,"{""loyalty"": ""16%""}",80464,0,South America +2024-01-01,20108,1024,"[""Headphones"", ""Phone""]",1311.76,"{"""": ""6%""}",210158,0,North America +2024-07-01,20109,6195,"[""Monitor"", ""Laptop""]",3079.19,"{""loyalty"": ""15%""}",159727,1,Asia +2024-02-02,20110,3866,"[""Keyboard"", ""Charger"", ""Laptop""]",2902.2,{},29814,0,South America +2023-08-26,20111,8729,"[""Headphones"", ""Monitor""]",2117.51,{},100309,0,North America +2024-02-29,20112,3498,"[""Laptop"", ""Charger"", ""Headphones""]",1901.43,{},219157,1,South America +2024-02-12,20113,146,"[""Monitor""]",2018.68,"{""promo"": ""9%""}",100545,1,South America +2024-02-03,20114,397,"[""Laptop""]",1018.8,{},160707,1,Europe +2023-10-07,20115,42,"[""Charger"", ""Phone"", ""Tablet""]",3762.61,{},33463,1,Asia +2023-04-23,20116,3435,"[""Charger"", ""Wireless Mouse""]",2824.32,"{""promo"": ""14%""}",153405,1,Asia +2023-07-04,20117,3335,"[""Keyboard"", ""Charger""]",3209.16,"{""loyalty"": ""19%""}",281877,0,South America +2023-10-28,20118,3010,"[""Tablet""]",1592.43,"{"""": ""19%""}",176387,1,Asia +2024-03-02,20119,4547,"[""Monitor"", ""Phone"", ""Tablet""]",3374.19,"{""promo"": ""21%""}",210005,0,Asia +2023-03-06,20120,3826,"[""Laptop"", ""Monitor""]",3745.43,{},243955,0,Asia +2024-10-22,20121,434,"[""Phone"", ""Charger"", ""Laptop""]",3712.24,"{""loyalty"": ""7%""}",190220,1,Europe +2023-12-08,20122,3190,"[""Laptop""]",2281.94,"{""loyalty"": ""27%""}",76976,0,Asia +2024-07-10,20123,9345,"[""Laptop""]",3697.53,{},237875,1,North America +2024-02-12,20124,5446,"[""Laptop""]",4873.15,"{"""": ""22%""}",69199,0,Europe +2024-10-10,20125,6930,"[""Phone"", ""Tablet"", ""Laptop""]",274.7,"{""loyalty"": ""5%""}",295546,1,South America +2024-01-09,20126,4194,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1947.43,"{"""": ""9%""}",181207,0,Asia +2023-06-01,20127,5668,"[""Tablet"", ""Laptop""]",3740.79,{},223401,0,Asia +2024-04-04,20128,8730,"[""Charger"", ""Laptop""]",4210.98,{},196141,1,Asia +2023-05-08,20129,1730,"[""Keyboard""]",1039.08,{},192582,0,Asia +2023-06-13,20130,9296,"[""Phone"", ""Keyboard""]",1709.76,"{"""": ""21%""}",163876,1,South America +2023-08-28,20131,565,"[""Headphones""]",2573.94,"{""seasonal"": ""22%""}",130787,1,North America +2023-11-24,20132,9368,"[""Keyboard"", ""Headphones""]",173.54,"{""seasonal"": ""7%""}",276470,1,Europe +2023-08-27,20133,2104,"[""Phone""]",4061.16,"{""seasonal"": ""29%""}",33952,0,Africa +2024-10-13,20134,8508,"[""Phone""]",3705.63,{},64988,0,North America +2024-07-16,20135,3814,"[""Headphones"", ""Laptop""]",3337.3,"{""loyalty"": ""5%""}",295771,1,Europe +2024-04-05,20136,3658,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4776.42,{},161406,1,Africa +2023-06-12,20137,918,"[""Wireless Mouse""]",809.98,{},296153,0,Europe +2024-02-14,20138,6566,"[""Wireless Mouse"", ""Monitor""]",809.08,{},289866,0,South America +2023-04-19,20139,7948,"[""Laptop"", ""Keyboard""]",459.02,{},122512,0,South America +2023-10-10,20140,3245,"[""Tablet""]",4101.6,"{""promo"": ""13%""}",286744,1,Africa +2024-09-06,20141,3472,"[""Headphones"", ""Laptop""]",2544.07,"{""promo"": ""15%""}",138002,0,Europe +2023-12-02,20142,9027,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2807.48,"{""seasonal"": ""29%""}",75451,1,South America +2023-10-19,20143,8693,"[""Phone"", ""Monitor""]",1597.88,{},294626,1,Africa +2023-07-17,20144,5443,"[""Laptop""]",4052.93,{},217254,0,North America +2024-10-07,20145,184,"[""Headphones""]",2104.53,"{""loyalty"": ""26%""}",145547,0,North America +2024-04-30,20146,7479,"[""Phone""]",2499.17,"{""promo"": ""11%""}",187771,1,Europe +2023-08-26,20147,1967,"[""Monitor"", ""Headphones""]",4924.65,"{""seasonal"": ""10%""}",53545,1,Africa +2024-05-06,20148,7785,"[""Wireless Mouse"", ""Tablet""]",981.34,"{""promo"": ""12%""}",170549,0,Asia +2024-08-12,20149,8243,"[""Wireless Mouse"", ""Headphones""]",3672.47,{},284738,1,Asia +2023-01-06,20150,7462,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2243.86,{},39208,0,Asia +2023-07-18,20151,7712,"[""Laptop"", ""Charger"", ""Phone""]",4356.75,"{""loyalty"": ""19%""}",24079,0,North America +2024-11-15,20152,5860,"[""Headphones"", ""Monitor"", ""Keyboard""]",4387.27,"{"""": ""8%""}",183072,0,South America +2024-05-12,20153,3508,"[""Keyboard""]",308.22,"{""loyalty"": ""18%""}",165414,0,South America +2023-08-02,20154,7667,"[""Tablet"", ""Keyboard""]",3078.16,{},175201,1,Europe +2024-08-26,20155,4421,"[""Phone""]",2728.79,{},173858,1,South America +2024-05-10,20156,1326,"[""Headphones"", ""Charger""]",1326.69,"{""loyalty"": ""8%""}",292028,1,South America +2023-03-07,20157,5035,"[""Tablet"", ""Wireless Mouse""]",2868.55,"{""seasonal"": ""16%""}",64862,0,Asia +2024-06-24,20158,5289,"[""Charger"", ""Phone"", ""Headphones""]",364.13,"{""loyalty"": ""20%""}",290352,1,South America +2023-12-02,20159,1146,"[""Keyboard"", ""Wireless Mouse""]",4518.83,"{""loyalty"": ""5%""}",243803,0,South America +2024-04-07,20160,9031,"[""Charger"", ""Keyboard"", ""Tablet""]",4310.58,{},68356,0,North America +2023-01-03,20161,3028,"[""Tablet""]",3327.37,"{"""": ""5%""}",65793,1,South America +2023-05-09,20162,1966,"[""Tablet""]",796.08,"{""loyalty"": ""10%""}",249799,1,South America +2024-09-01,20163,5873,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4769.09,{},108436,0,Africa +2023-04-21,20164,7331,"[""Keyboard""]",3526.87,{},6176,0,Asia +2023-01-20,20165,1263,"[""Wireless Mouse"", ""Keyboard""]",2467.79,{},105364,1,Europe +2023-12-12,20166,7799,"[""Tablet"", ""Headphones""]",3990.7,{},163887,0,Africa +2024-05-02,20167,3134,"[""Laptop""]",841.95,"{""loyalty"": ""5%""}",105978,1,Europe +2023-04-02,20168,9235,"[""Laptop"", ""Charger"", ""Headphones""]",1349.27,{},61379,1,North America +2024-05-15,20169,6107,"[""Keyboard""]",2783.14,"{"""": ""14%""}",96180,0,Asia +2023-12-31,20170,1414,"[""Laptop"", ""Phone"", ""Charger""]",234.93,"{""loyalty"": ""7%""}",290360,1,Europe +2024-08-25,20171,4665,"[""Charger""]",2934.13,"{""loyalty"": ""24%""}",42819,1,Africa +2024-12-07,20172,9524,"[""Monitor"", ""Laptop"", ""Charger""]",4911.32,"{""seasonal"": ""6%""}",191111,1,North America +2024-06-25,20173,249,"[""Wireless Mouse""]",3436.03,"{""loyalty"": ""23%""}",88502,1,Asia +2023-04-11,20174,1832,"[""Phone"", ""Tablet"", ""Keyboard""]",2436.14,"{""seasonal"": ""15%""}",59300,0,North America +2024-05-05,20175,7271,"[""Monitor"", ""Headphones""]",3917.11,{},53763,1,North America +2023-05-09,20176,5160,"[""Laptop""]",4780.45,"{""loyalty"": ""15%""}",276475,1,Asia +2023-04-10,20177,227,"[""Headphones"", ""Keyboard""]",571.48,{},240658,1,South America +2024-06-02,20178,96,"[""Phone"", ""Tablet"", ""Headphones""]",134.21,{},183611,0,Africa +2023-04-21,20179,189,"[""Keyboard"", ""Tablet"", ""Headphones""]",1490.42,"{""promo"": ""5%""}",96623,0,Asia +2024-09-11,20180,5384,"[""Monitor"", ""Keyboard""]",4570.46,{},161932,0,South America +2023-11-14,20181,5651,"[""Keyboard"", ""Tablet"", ""Laptop""]",3733.51,{},9830,0,North America +2024-11-14,20182,4429,"[""Laptop"", ""Monitor""]",2426.45,{},116829,1,Africa +2024-08-11,20183,6945,"[""Headphones""]",2342.78,"{"""": ""26%""}",269431,0,Asia +2024-08-29,20184,6591,"[""Charger"", ""Tablet"", ""Keyboard""]",2333.94,{},85462,1,Asia +2023-06-19,20185,4811,"[""Keyboard"", ""Tablet"", ""Laptop""]",2950.6,"{""promo"": ""23%""}",11879,0,Africa +2023-11-05,20186,9562,"[""Phone"", ""Wireless Mouse""]",143.0,{},245785,0,South America +2023-01-25,20187,434,"[""Charger"", ""Monitor""]",2082.24,"{""promo"": ""23%""}",56010,1,North America +2024-03-16,20188,6023,"[""Headphones"", ""Monitor"", ""Tablet""]",4460.41,"{""promo"": ""22%""}",142328,1,Europe +2024-03-04,20189,9908,"[""Phone""]",817.3,{},248134,1,Asia +2023-06-17,20190,4421,"[""Tablet"", ""Charger""]",222.62,"{""seasonal"": ""22%""}",75621,0,Africa +2024-04-16,20191,1768,"[""Keyboard"", ""Laptop""]",1111.21,"{""loyalty"": ""19%""}",263105,1,Asia +2023-09-07,20192,9088,"[""Headphones"", ""Phone""]",2557.65,"{""seasonal"": ""10%""}",83443,1,Europe +2024-01-11,20193,9355,"[""Tablet"", ""Charger""]",3545.3,{},274294,0,Asia +2024-07-03,20194,8335,"[""Headphones"", ""Wireless Mouse""]",4044.36,{},115054,1,South America +2023-08-02,20195,7825,"[""Monitor"", ""Tablet""]",2253.51,{},142948,1,South America +2024-01-14,20196,3872,"[""Keyboard"", ""Monitor""]",717.24,{},178017,1,Africa +2023-08-15,20197,6831,"[""Tablet"", ""Charger"", ""Headphones""]",2775.63,"{"""": ""11%""}",156028,0,North America +2023-05-26,20198,6488,"[""Monitor"", ""Laptop"", ""Keyboard""]",1293.27,"{""seasonal"": ""30%""}",226343,0,South America +2023-09-04,20199,4554,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2133.32,{},286622,0,Africa +2023-10-07,20200,5754,"[""Wireless Mouse"", ""Charger""]",4009.18,{},44231,1,South America +2023-04-29,20201,1097,"[""Keyboard"", ""Phone"", ""Charger""]",3559.31,"{"""": ""23%""}",51315,1,Europe +2023-02-23,20202,9074,"[""Tablet""]",2098.56,"{""loyalty"": ""12%""}",288891,0,South America +2024-10-16,20203,5887,"[""Tablet""]",3068.74,{},142763,0,North America +2023-07-21,20204,2121,"[""Laptop"", ""Charger"", ""Monitor""]",1042.43,{},121668,0,Asia +2024-07-03,20205,2954,"[""Phone"", ""Tablet"", ""Laptop""]",1749.61,{},228826,0,Africa +2023-09-10,20206,792,"[""Headphones"", ""Laptop"", ""Tablet""]",741.47,{},299819,0,Asia +2024-03-18,20207,8273,"[""Laptop"", ""Charger""]",4683.37,{},248702,0,Africa +2023-10-09,20208,2781,"[""Headphones"", ""Tablet""]",2420.15,{},227635,0,South America +2024-08-09,20209,9423,"[""Monitor"", ""Keyboard""]",3859.24,"{""loyalty"": ""12%""}",120830,1,North America +2024-11-05,20210,891,"[""Laptop"", ""Keyboard""]",1272.34,{},151488,1,Europe +2023-06-29,20211,4384,"[""Charger"", ""Keyboard""]",2907.31,{},106281,1,Europe +2024-01-03,20212,2533,"[""Monitor"", ""Phone""]",1706.3,"{"""": ""10%""}",27048,0,Africa +2024-01-06,20213,2607,"[""Charger""]",3827.33,"{""promo"": ""14%""}",86342,1,South America +2023-06-30,20214,6512,"[""Headphones"", ""Keyboard""]",805.58,{},244551,0,Asia +2024-01-13,20215,7885,"[""Charger""]",4605.13,{},298567,1,South America +2023-08-17,20216,6082,"[""Laptop"", ""Tablet""]",3531.0,{},168684,1,Europe +2024-03-04,20217,9200,"[""Phone""]",2848.71,"{""loyalty"": ""6%""}",138928,0,Asia +2024-06-29,20218,5180,"[""Wireless Mouse""]",2141.79,{},153503,0,Africa +2023-03-04,20219,7186,"[""Keyboard"", ""Tablet""]",4386.45,{},131885,0,Africa +2024-07-08,20220,8674,"[""Phone""]",3160.71,{},129239,1,North America +2024-02-10,20221,6630,"[""Headphones"", ""Monitor"", ""Keyboard""]",840.7,{},263659,1,Africa +2023-06-14,20222,5507,"[""Headphones"", ""Tablet"", ""Keyboard""]",4934.15,"{"""": ""28%""}",38407,0,Africa +2024-12-21,20223,5023,"[""Tablet"", ""Monitor""]",1983.68,{},255004,1,North America +2024-03-14,20224,8448,"[""Charger"", ""Wireless Mouse""]",4741.64,"{""seasonal"": ""24%""}",27447,1,Europe +2023-01-15,20225,6640,"[""Phone"", ""Laptop"", ""Headphones""]",3843.42,"{""promo"": ""15%""}",227267,1,Africa +2024-11-11,20226,8007,"[""Keyboard"", ""Tablet""]",4274.41,"{""seasonal"": ""19%""}",128412,0,North America +2023-07-22,20227,1753,"[""Tablet""]",201.88,{},237601,1,Asia +2024-10-04,20228,4735,"[""Headphones""]",4344.98,"{""promo"": ""13%""}",219116,0,North America +2024-05-30,20229,913,"[""Monitor"", ""Keyboard""]",842.23,{},66995,0,North America +2023-05-01,20230,5881,"[""Headphones"", ""Monitor""]",4535.6,"{""loyalty"": ""18%""}",280715,0,North America +2024-11-01,20231,3351,"[""Tablet""]",2430.13,"{"""": ""6%""}",83436,1,North America +2024-03-29,20232,1405,"[""Charger"", ""Monitor"", ""Phone""]",4906.01,{},214550,1,Africa +2023-10-12,20233,1331,"[""Laptop"", ""Phone""]",1875.5,{},137710,1,South America +2023-06-10,20234,5191,"[""Tablet""]",3628.89,"{""promo"": ""27%""}",186685,0,Africa +2023-12-06,20235,9857,"[""Tablet"", ""Phone"", ""Headphones""]",750.33,"{""loyalty"": ""18%""}",5986,1,Asia +2024-08-11,20236,9017,"[""Headphones"", ""Tablet"", ""Phone""]",4863.03,"{""seasonal"": ""29%""}",27507,1,Europe +2023-09-29,20237,8317,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1941.22,{},258593,1,Europe +2023-02-20,20238,5889,"[""Wireless Mouse""]",4461.16,"{""loyalty"": ""19%""}",120154,0,Asia +2023-06-29,20239,2401,"[""Monitor""]",435.38,"{""seasonal"": ""17%""}",261756,0,North America +2024-06-13,20240,9574,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4476.94,{},211490,1,Europe +2023-10-15,20241,6264,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",506.57,{},168590,1,Europe +2023-09-12,20242,3448,"[""Charger"", ""Phone""]",1191.36,{},29363,1,Asia +2023-08-20,20243,3667,"[""Charger"", ""Tablet""]",4906.73,"{""promo"": ""15%""}",9171,0,North America +2023-07-13,20244,1693,"[""Laptop"", ""Tablet""]",2833.02,"{"""": ""19%""}",99718,0,Europe +2024-05-03,20245,272,"[""Headphones""]",1496.98,{},115329,0,Asia +2024-01-15,20246,8849,"[""Phone"", ""Tablet""]",96.46,{},274962,1,Europe +2024-07-07,20247,7962,"[""Phone"", ""Tablet""]",2916.86,{},55542,1,North America +2023-11-22,20248,4612,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4865.67,"{""promo"": ""26%""}",285871,1,North America +2024-08-14,20249,6038,"[""Keyboard""]",3420.45,"{"""": ""11%""}",28377,1,Asia +2023-03-20,20250,8651,"[""Monitor"", ""Keyboard"", ""Charger""]",2580.24,"{"""": ""13%""}",85138,0,North America +2023-12-24,20251,3022,"[""Monitor"", ""Laptop""]",2777.87,"{""promo"": ""26%""}",196408,1,Africa +2024-10-06,20252,1089,"[""Charger""]",4363.68,{},50419,0,Europe +2023-03-24,20253,2806,"[""Wireless Mouse""]",3788.68,{},54365,1,Europe +2023-02-01,20254,7710,"[""Headphones""]",1690.8,{},142211,0,Asia +2024-12-03,20255,805,"[""Keyboard"", ""Headphones"", ""Tablet""]",1719.35,"{"""": ""30%""}",281168,1,North America +2024-06-27,20256,6908,"[""Laptop""]",3100.99,"{""seasonal"": ""9%""}",129403,0,South America +2024-05-08,20257,8294,"[""Charger""]",2056.73,{},203403,1,Asia +2023-03-09,20258,7660,"[""Laptop"", ""Wireless Mouse""]",2816.85,"{""promo"": ""16%""}",40031,0,Asia +2023-11-17,20259,9377,"[""Laptop""]",851.42,{},157384,1,North America +2024-04-12,20260,657,"[""Keyboard"", ""Monitor"", ""Phone""]",1144.68,{},76747,0,North America +2023-08-30,20261,1981,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4439.82,{},262615,0,Europe +2024-05-15,20262,1835,"[""Tablet""]",254.22,{},55934,0,Africa +2023-10-25,20263,1950,"[""Keyboard"", ""Tablet""]",1223.88,{},41190,0,Africa +2024-11-28,20264,7008,"[""Monitor""]",2889.21,{},30378,0,South America +2024-04-20,20265,8700,"[""Monitor""]",3189.65,"{""loyalty"": ""12%""}",209157,0,Africa +2023-02-15,20266,8673,"[""Headphones"", ""Tablet""]",4790.35,"{"""": ""27%""}",95377,1,Asia +2023-05-31,20267,7879,"[""Tablet"", ""Charger"", ""Phone""]",4397.1,"{"""": ""14%""}",144418,1,North America +2024-08-30,20268,4154,"[""Monitor"", ""Headphones""]",3594.11,{},210660,1,North America +2024-03-25,20269,6692,"[""Tablet""]",2448.09,{},154232,0,Africa +2023-04-02,20270,3068,"[""Tablet""]",4855.8,{},239593,1,Africa +2023-11-08,20271,5177,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2973.48,{},161187,0,South America +2023-04-08,20272,8193,"[""Phone""]",4385.69,{},189855,1,Africa +2023-07-02,20273,3447,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4595.69,{},72143,0,Africa +2023-09-29,20274,2653,"[""Headphones"", ""Laptop""]",4854.14,{},85953,1,South America +2024-12-27,20275,3272,"[""Keyboard"", ""Charger""]",930.16,{},123592,0,South America +2024-05-09,20276,4042,"[""Laptop""]",4944.16,{},15051,0,Europe +2024-07-22,20277,3690,"[""Tablet"", ""Headphones"", ""Phone""]",311.67,"{"""": ""25%""}",139210,1,South America +2024-05-19,20278,378,"[""Laptop"", ""Charger""]",4664.32,"{""loyalty"": ""19%""}",94634,0,South America +2024-05-30,20279,1391,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2918.29,"{""loyalty"": ""7%""}",261887,1,Africa +2024-06-03,20280,7414,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",944.08,{},291459,1,Africa +2024-09-22,20281,8205,"[""Phone""]",2613.72,{},63938,0,North America +2023-04-11,20282,6750,"[""Keyboard""]",3842.84,"{""loyalty"": ""29%""}",100814,1,Asia +2024-10-11,20283,6892,"[""Keyboard"", ""Monitor"", ""Charger""]",4054.79,{},110710,0,Africa +2024-03-10,20284,3739,"[""Headphones""]",1110.77,{},118676,1,Africa +2023-05-23,20285,838,"[""Monitor"", ""Wireless Mouse""]",832.94,"{""loyalty"": ""22%""}",253274,1,Africa +2024-04-17,20286,8400,"[""Wireless Mouse"", ""Tablet""]",379.74,{},30415,0,Africa +2023-09-20,20287,2332,"[""Keyboard"", ""Charger""]",3325.71,"{""promo"": ""9%""}",180113,1,Europe +2023-02-24,20288,1816,"[""Tablet"", ""Headphones"", ""Laptop""]",3649.34,{},138143,0,South America +2024-06-24,20289,370,"[""Phone""]",307.55,"{""seasonal"": ""23%""}",81045,1,Asia +2024-04-07,20290,372,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4523.61,{},269130,0,Europe +2023-03-09,20291,4583,"[""Keyboard""]",3672.06,{},258127,0,North America +2024-04-02,20292,394,"[""Laptop""]",4902.59,{},252787,1,North America +2023-04-23,20293,7349,"[""Laptop""]",3566.59,{},185239,0,North America +2024-06-29,20294,684,"[""Laptop""]",1928.16,"{""loyalty"": ""17%""}",225745,0,Europe +2024-11-19,20295,1656,"[""Laptop""]",279.86,"{""seasonal"": ""15%""}",202004,1,Africa +2024-12-19,20296,6822,"[""Wireless Mouse""]",2013.68,{},263084,1,North America +2023-11-25,20297,9383,"[""Keyboard""]",4317.51,{},272753,1,Europe +2024-10-05,20298,6013,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4463.39,"{""promo"": ""27%""}",161776,1,Europe +2024-09-27,20299,2561,"[""Wireless Mouse"", ""Tablet""]",75.32,{},75346,1,South America +2024-09-26,20300,6584,"[""Monitor""]",3538.89,"{"""": ""6%""}",223944,0,North America +2023-01-23,20301,3635,"[""Charger""]",935.71,{},119221,1,Asia +2023-03-07,20302,3763,"[""Keyboard"", ""Headphones""]",2266.8,"{"""": ""30%""}",68980,1,Europe +2023-03-22,20303,3365,"[""Phone"", ""Monitor""]",1284.09,"{""promo"": ""20%""}",83793,1,South America +2024-03-11,20304,2906,"[""Wireless Mouse""]",1114.36,{},188328,0,South America +2023-07-03,20305,3353,"[""Laptop""]",3964.91,"{"""": ""11%""}",37516,1,North America +2023-03-04,20306,1614,"[""Laptop""]",121.2,{},289116,0,Asia +2024-02-02,20307,6952,"[""Monitor""]",3641.28,{},120344,1,Europe +2024-12-07,20308,706,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3454.97,{},295789,1,North America +2023-10-03,20309,9185,"[""Keyboard""]",3969.42,"{"""": ""23%""}",248383,0,Asia +2023-06-26,20310,6035,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2689.5,{},68550,1,Europe +2023-04-07,20311,1778,"[""Charger"", ""Headphones""]",3612.26,{},3313,0,Asia +2023-02-23,20312,1522,"[""Monitor"", ""Tablet"", ""Keyboard""]",3935.19,"{"""": ""29%""}",138089,0,South America +2023-05-02,20313,5771,"[""Laptop""]",4219.97,{},65243,0,Africa +2023-06-22,20314,1186,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2401.64,{},146262,0,Asia +2024-06-07,20315,2756,"[""Headphones""]",1276.32,{},42859,1,Africa +2024-03-06,20316,3160,"[""Monitor"", ""Phone"", ""Keyboard""]",535.05,{},197800,1,North America +2023-07-06,20317,4929,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1696.29,{},23620,1,Europe +2023-06-06,20318,8895,"[""Laptop"", ""Wireless Mouse""]",1511.28,{},206030,1,Africa +2023-09-29,20319,923,"[""Phone"", ""Charger"", ""Monitor""]",4450.54,{},124590,0,Europe +2023-07-01,20320,7194,"[""Headphones"", ""Laptop""]",500.7,{},250177,1,Africa +2023-12-23,20321,9537,"[""Keyboard"", ""Monitor"", ""Phone""]",217.79,{},111593,1,South America +2024-09-26,20322,3645,"[""Keyboard""]",2970.06,"{""promo"": ""25%""}",170462,0,Europe +2023-08-20,20323,3420,"[""Wireless Mouse"", ""Charger""]",1076.47,"{""loyalty"": ""9%""}",29776,0,Europe +2023-11-02,20324,2417,"[""Laptop""]",2011.81,{},51050,0,South America +2023-07-20,20325,9087,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4649.78,{},111059,0,Asia +2023-10-06,20326,2608,"[""Headphones""]",1520.3,{},31724,1,Europe +2023-01-31,20327,4756,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2045.28,{},6506,1,Europe +2024-04-05,20328,9321,"[""Tablet"", ""Monitor"", ""Keyboard""]",4243.4,"{""seasonal"": ""12%""}",235244,1,Asia +2024-08-31,20329,6560,"[""Wireless Mouse""]",3537.53,{},135027,1,Africa +2023-02-15,20330,2251,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4850.62,{},254256,1,South America +2023-07-05,20331,4843,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",123.71,"{""promo"": ""19%""}",224745,0,Europe +2024-09-09,20332,1149,"[""Tablet"", ""Headphones"", ""Keyboard""]",2484.23,"{""promo"": ""28%""}",196709,1,South America +2023-02-17,20333,1751,"[""Monitor"", ""Tablet""]",1209.5,"{""promo"": ""13%""}",107479,0,Asia +2024-06-26,20334,5887,"[""Phone""]",1094.56,"{""promo"": ""18%""}",5231,1,North America +2023-04-28,20335,3639,"[""Charger"", ""Tablet"", ""Phone""]",3911.28,"{""seasonal"": ""16%""}",228518,1,Africa +2024-02-03,20336,7783,"[""Tablet"", ""Phone"", ""Laptop""]",1988.11,{},171987,1,South America +2024-05-10,20337,5117,"[""Tablet""]",3602.81,"{""loyalty"": ""12%""}",57006,1,South America +2023-11-12,20338,8678,"[""Laptop"", ""Monitor""]",3853.75,{},76176,1,Asia +2023-09-08,20339,7408,"[""Wireless Mouse""]",3974.3,{},71838,0,South America +2024-05-21,20340,8489,"[""Headphones""]",153.29,{},113075,1,Asia +2023-11-13,20341,4607,"[""Keyboard"", ""Phone"", ""Headphones""]",2776.66,{},53816,0,North America +2023-08-29,20342,1709,"[""Laptop"", ""Charger""]",2355.94,"{""promo"": ""20%""}",156167,0,South America +2023-06-08,20343,1444,"[""Wireless Mouse"", ""Charger""]",4743.1,{},215972,1,South America +2023-03-17,20344,8847,"[""Laptop"", ""Headphones"", ""Keyboard""]",322.06,"{""promo"": ""26%""}",89841,1,Europe +2024-10-23,20345,4843,"[""Charger""]",4162.54,"{""loyalty"": ""17%""}",21794,1,South America +2023-05-26,20346,9658,"[""Keyboard"", ""Tablet""]",4217.03,"{""loyalty"": ""17%""}",48302,1,Asia +2023-06-13,20347,3113,"[""Keyboard""]",2064.09,{},229351,0,Europe +2023-02-06,20348,2868,"[""Charger"", ""Laptop""]",3801.32,{},249866,0,South America +2024-09-19,20349,443,"[""Keyboard"", ""Charger"", ""Monitor""]",2611.44,{},64830,0,South America +2023-03-27,20350,6648,"[""Charger""]",4315.98,"{"""": ""22%""}",13744,0,South America +2023-04-07,20351,7776,"[""Headphones"", ""Charger""]",1831.13,"{""loyalty"": ""26%""}",206781,0,North America +2024-07-12,20352,9605,"[""Monitor"", ""Phone"", ""Headphones""]",4743.52,"{"""": ""26%""}",288260,1,Europe +2023-12-18,20353,4063,"[""Wireless Mouse""]",3080.84,{},98606,0,South America +2023-02-22,20354,5356,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4640.32,{},46789,1,Asia +2023-05-01,20355,5788,"[""Keyboard""]",2527.28,"{""loyalty"": ""17%""}",79668,0,South America +2023-09-30,20356,1512,"[""Monitor""]",3440.08,{},196609,1,Africa +2023-12-25,20357,9928,"[""Keyboard"", ""Charger"", ""Laptop""]",2870.05,{},19188,0,South America +2023-12-27,20358,9316,"[""Tablet"", ""Charger""]",3119.98,"{""seasonal"": ""8%""}",119628,1,Asia +2023-04-29,20359,8192,"[""Charger""]",3674.11,"{"""": ""13%""}",256380,1,South America +2024-03-22,20360,1747,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",903.18,{},287671,0,Africa +2023-05-28,20361,9055,"[""Phone"", ""Laptop""]",4380.78,{},7380,1,South America +2023-06-28,20362,5668,"[""Tablet"", ""Laptop""]",4186.31,{},239674,1,Europe +2024-11-25,20363,2340,"[""Charger""]",270.11,"{""seasonal"": ""23%""}",52192,0,Africa +2023-05-02,20364,1192,"[""Keyboard"", ""Tablet""]",2518.81,"{"""": ""11%""}",92338,0,Asia +2023-07-24,20365,3058,"[""Monitor""]",2884.16,{},140578,1,Europe +2023-07-23,20366,9462,"[""Tablet"", ""Keyboard"", ""Charger""]",924.24,{},216167,0,North America +2023-11-17,20367,6330,"[""Charger"", ""Tablet""]",3283.21,"{""seasonal"": ""9%""}",190422,1,Europe +2023-04-14,20368,7867,"[""Charger"", ""Keyboard"", ""Laptop""]",3521.22,{},7093,1,Africa +2023-03-13,20369,4744,"[""Phone""]",458.68,{},60304,0,South America +2023-08-03,20370,9063,"[""Charger""]",1216.86,"{""promo"": ""18%""}",221582,1,South America +2024-12-22,20371,8137,"[""Keyboard""]",2881.98,{},292520,0,Europe +2023-05-11,20372,89,"[""Laptop"", ""Phone""]",149.52,{},28252,1,Asia +2024-08-12,20373,2772,"[""Monitor""]",4035.91,{},65193,1,Africa +2023-08-18,20374,2937,"[""Laptop"", ""Monitor""]",2882.84,"{""seasonal"": ""16%""}",293869,0,Europe +2023-04-17,20375,8153,"[""Monitor"", ""Headphones"", ""Keyboard""]",4500.1,{},133242,1,Africa +2024-01-26,20376,9342,"[""Phone"", ""Monitor""]",3888.01,"{""promo"": ""6%""}",221105,0,Europe +2024-04-27,20377,6577,"[""Phone""]",3366.58,"{"""": ""22%""}",186024,0,Europe +2024-09-14,20378,5845,"[""Laptop"", ""Tablet""]",1974.56,"{""seasonal"": ""18%""}",10616,1,South America +2023-12-22,20379,3338,"[""Keyboard"", ""Tablet"", ""Phone""]",875.84,"{""promo"": ""29%""}",281517,0,South America +2024-09-03,20380,2319,"[""Headphones""]",896.16,{},189846,0,Europe +2023-01-22,20381,8178,"[""Charger"", ""Tablet"", ""Laptop""]",2211.29,{},59819,0,South America +2023-05-20,20382,7415,"[""Keyboard""]",3523.24,{},165140,0,Europe +2023-05-02,20383,5919,"[""Headphones""]",3504.61,"{""loyalty"": ""21%""}",290757,1,South America +2024-12-04,20384,7106,"[""Phone"", ""Headphones"", ""Charger""]",628.65,"{""loyalty"": ""10%""}",229244,1,Europe +2023-09-29,20385,7855,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",363.97,"{""seasonal"": ""12%""}",207994,1,Europe +2024-02-22,20386,781,"[""Monitor"", ""Laptop""]",3502.18,"{""seasonal"": ""7%""}",263395,0,South America +2023-06-21,20387,3213,"[""Charger"", ""Wireless Mouse""]",1662.65,{},287700,1,North America +2023-11-29,20388,38,"[""Headphones"", ""Keyboard"", ""Tablet""]",4244.97,"{"""": ""21%""}",293378,1,Africa +2023-12-01,20389,5524,"[""Charger"", ""Phone"", ""Laptop""]",1178.91,{},251736,1,Africa +2023-04-07,20390,2589,"[""Headphones""]",1782.41,{},23367,0,Asia +2023-03-14,20391,898,"[""Charger"", ""Keyboard""]",2214.67,"{""loyalty"": ""27%""}",242437,1,North America +2023-07-11,20392,3219,"[""Monitor"", ""Phone"", ""Charger""]",1840.25,{},141623,1,Europe +2024-09-22,20393,8238,"[""Charger""]",3019.59,{},111676,0,Africa +2024-10-22,20394,1892,"[""Laptop"", ""Headphones""]",764.19,{},76977,1,Europe +2023-06-18,20395,2500,"[""Headphones"", ""Phone""]",2040.56,{},289192,1,South America +2024-04-19,20396,5961,"[""Tablet""]",2248.09,"{""promo"": ""29%""}",2343,1,Africa +2023-07-24,20397,6364,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2905.93,{},41998,0,North America +2024-07-01,20398,5717,"[""Monitor""]",3314.15,{},192103,1,Africa +2024-01-13,20399,2077,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",142.92,"{"""": ""12%""}",126774,0,Asia +2024-07-07,20400,9035,"[""Monitor"", ""Wireless Mouse""]",4140.29,{},130614,0,Europe +2023-09-05,20401,2355,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3005.98,{},267037,1,South America +2023-01-06,20402,1568,"[""Monitor"", ""Keyboard""]",3013.48,{},1881,0,Asia +2024-08-26,20403,9762,"[""Wireless Mouse"", ""Phone""]",1792.1,"{""promo"": ""15%""}",177889,0,North America +2024-01-19,20404,635,"[""Monitor"", ""Phone""]",2546.01,"{"""": ""13%""}",192230,0,Asia +2023-04-04,20405,9937,"[""Keyboard""]",2993.2,{},104470,1,Africa +2024-03-30,20406,1722,"[""Laptop"", ""Monitor"", ""Tablet""]",4991.47,{},49758,1,North America +2024-11-06,20407,5345,"[""Headphones""]",1869.52,"{""promo"": ""8%""}",1639,0,Europe +2024-08-10,20408,2534,"[""Tablet"", ""Charger"", ""Keyboard""]",2868.62,{},253155,0,Asia +2024-04-22,20409,4036,"[""Tablet"", ""Wireless Mouse""]",3964.03,"{""loyalty"": ""21%""}",236154,0,Asia +2024-10-11,20410,7088,"[""Tablet"", ""Wireless Mouse""]",4513.14,"{""seasonal"": ""22%""}",129504,0,Europe +2023-04-25,20411,8000,"[""Phone"", ""Monitor"", ""Laptop""]",880.3,{},145127,0,North America +2023-07-02,20412,1091,"[""Wireless Mouse"", ""Headphones""]",4970.69,{},153166,1,Asia +2024-01-30,20413,942,"[""Laptop""]",3168.44,"{""loyalty"": ""21%""}",84220,1,Asia +2023-05-01,20414,6627,"[""Monitor""]",2766.68,{},170457,0,Asia +2023-05-09,20415,2523,"[""Wireless Mouse"", ""Charger""]",4381.18,{},284709,0,Africa +2023-03-17,20416,5475,"[""Monitor"", ""Phone""]",1787.89,"{"""": ""26%""}",274063,1,Africa +2024-04-14,20417,7719,"[""Keyboard""]",1713.53,{},161111,1,North America +2023-01-28,20418,5840,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1584.46,{},220996,0,South America +2023-03-02,20419,4215,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4315.65,"{""seasonal"": ""17%""}",186269,1,Africa +2024-03-20,20420,3415,"[""Wireless Mouse""]",4847.08,{},130318,1,South America +2024-04-07,20421,6262,"[""Tablet"", ""Charger"", ""Laptop""]",3184.72,"{""seasonal"": ""13%""}",17222,1,Europe +2023-04-29,20422,5350,"[""Laptop"", ""Charger""]",3107.08,{},24007,1,Africa +2024-08-25,20423,3307,"[""Phone""]",2111.63,"{""loyalty"": ""9%""}",248405,1,South America +2023-05-01,20424,8157,"[""Charger"", ""Monitor"", ""Keyboard""]",1522.2,{},248181,1,South America +2023-12-27,20425,3993,"[""Tablet""]",3490.06,"{""promo"": ""9%""}",36728,1,Africa +2024-04-17,20426,4620,"[""Keyboard"", ""Phone""]",3886.06,"{""seasonal"": ""26%""}",203539,1,Africa +2023-08-06,20427,5000,"[""Charger""]",1717.59,"{""loyalty"": ""12%""}",271220,1,South America +2024-11-26,20428,732,"[""Monitor""]",3599.15,{},206557,1,Europe +2023-08-25,20429,9097,"[""Wireless Mouse""]",3636.75,{},135495,0,South America +2023-08-25,20430,1778,"[""Headphones""]",2233.69,{},194681,1,South America +2023-01-21,20431,1231,"[""Tablet"", ""Charger""]",2729.26,{},158012,0,North America +2023-01-01,20432,9137,"[""Phone""]",3970.22,{},99516,0,South America +2024-03-26,20433,697,"[""Phone"", ""Keyboard"", ""Charger""]",2205.64,{},72918,1,North America +2024-07-22,20434,8534,"[""Tablet""]",4652.89,{},281836,1,Africa +2024-04-22,20435,7725,"[""Charger"", ""Laptop""]",2590.24,{},164657,0,Asia +2024-09-18,20436,3710,"[""Phone""]",1558.78,{},90291,0,South America +2023-05-25,20437,7870,"[""Charger""]",1978.78,"{""promo"": ""9%""}",74216,0,North America +2024-09-26,20438,1357,"[""Laptop"", ""Charger""]",2817.96,"{""loyalty"": ""17%""}",63501,1,North America +2024-04-28,20439,81,"[""Phone"", ""Wireless Mouse""]",3042.56,"{"""": ""20%""}",258232,0,Africa +2023-03-12,20440,7791,"[""Wireless Mouse"", ""Phone""]",4923.62,"{""promo"": ""27%""}",205166,1,South America +2024-05-10,20441,3155,"[""Laptop"", ""Keyboard""]",1072.62,"{"""": ""6%""}",262385,1,South America +2023-10-24,20442,2652,"[""Keyboard"", ""Laptop"", ""Headphones""]",3282.96,{},57872,1,North America +2023-11-26,20443,3344,"[""Wireless Mouse""]",799.07,"{""seasonal"": ""12%""}",213489,1,Europe +2023-12-24,20444,9930,"[""Phone""]",2670.86,"{"""": ""13%""}",271819,0,South America +2023-04-15,20445,5297,"[""Monitor"", ""Charger""]",4758.5,{},295206,1,Africa +2024-11-24,20446,1193,"[""Wireless Mouse""]",3745.15,"{""promo"": ""30%""}",252516,0,Europe +2024-01-05,20447,4789,"[""Keyboard"", ""Wireless Mouse""]",3132.12,{},222631,0,Europe +2023-11-05,20448,7103,"[""Keyboard"", ""Monitor""]",435.39,{},281551,0,Europe +2023-10-22,20449,9732,"[""Tablet"", ""Headphones""]",135.92,{},28569,1,Asia +2024-04-24,20450,8723,"[""Tablet""]",3513.6,"{""seasonal"": ""20%""}",87462,1,Europe +2024-07-04,20451,2032,"[""Charger"", ""Phone""]",2401.33,{},247852,1,Asia +2024-05-22,20452,4096,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3250.98,"{""seasonal"": ""24%""}",18273,1,Europe +2024-03-15,20453,7198,"[""Laptop"", ""Charger"", ""Monitor""]",4127.04,{},125288,0,Europe +2023-08-14,20454,7226,"[""Wireless Mouse""]",661.36,"{""loyalty"": ""12%""}",138696,1,South America +2024-11-23,20455,5684,"[""Phone"", ""Laptop""]",92.28,"{""loyalty"": ""28%""}",235518,0,Asia +2024-09-18,20456,8762,"[""Charger"", ""Tablet"", ""Keyboard""]",827.03,{},284179,1,Africa +2024-12-25,20457,5960,"[""Charger""]",2653.57,{},80181,1,South America +2023-08-04,20458,7381,"[""Wireless Mouse"", ""Monitor""]",4741.17,{},113102,0,Asia +2023-06-17,20459,4200,"[""Phone"", ""Charger"", ""Laptop""]",557.91,{},180884,1,Asia +2024-11-18,20460,22,"[""Tablet"", ""Laptop""]",495.67,{},13253,1,South America +2023-07-08,20461,4153,"[""Keyboard""]",4349.13,"{""seasonal"": ""12%""}",16343,1,Africa +2024-03-26,20462,7964,"[""Keyboard"", ""Phone""]",1883.41,"{"""": ""25%""}",259825,0,South America +2024-04-09,20463,3420,"[""Phone"", ""Wireless Mouse"", ""Charger""]",971.16,{},19555,0,Europe +2023-10-06,20464,3176,"[""Monitor""]",3586.44,{},212735,1,Africa +2023-12-21,20465,6201,"[""Headphones"", ""Keyboard""]",2570.32,{},218597,1,Africa +2023-04-21,20466,1408,"[""Phone"", ""Tablet"", ""Keyboard""]",3556.28,{},215479,1,North America +2023-01-15,20467,2773,"[""Wireless Mouse""]",1951.47,"{""promo"": ""5%""}",124154,0,Africa +2023-11-15,20468,1424,"[""Wireless Mouse"", ""Laptop""]",1994.82,"{""loyalty"": ""23%""}",129199,0,South America +2023-07-19,20469,3081,"[""Headphones""]",2411.3,{},80910,1,Asia +2023-10-09,20470,2569,"[""Laptop"", ""Monitor""]",4140.26,{},297192,1,Asia +2023-07-27,20471,183,"[""Headphones""]",239.37,{},234757,1,Asia +2023-08-23,20472,8571,"[""Wireless Mouse"", ""Headphones""]",3508.14,"{""seasonal"": ""16%""}",157511,1,Asia +2024-04-24,20473,4528,"[""Phone"", ""Laptop""]",3411.59,"{""promo"": ""25%""}",242056,0,North America +2024-02-14,20474,6347,"[""Phone"", ""Laptop""]",1965.17,{},18871,1,Europe +2023-11-12,20475,8651,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2913.51,"{""loyalty"": ""11%""}",244295,0,Europe +2023-12-28,20476,3165,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2422.02,"{""promo"": ""16%""}",276197,1,Asia +2024-09-01,20477,305,"[""Wireless Mouse""]",2066.51,"{""promo"": ""22%""}",4900,0,Europe +2024-04-24,20478,250,"[""Keyboard""]",3603.66,{},167040,1,South America +2023-02-25,20479,787,"[""Headphones"", ""Keyboard""]",2490.15,{},135276,0,South America +2023-02-23,20480,8535,"[""Monitor"", ""Phone"", ""Keyboard""]",4549.57,"{""seasonal"": ""18%""}",82519,0,Asia +2023-11-26,20481,9597,"[""Monitor"", ""Charger"", ""Headphones""]",3225.39,"{"""": ""22%""}",220788,1,Europe +2024-04-04,20482,7472,"[""Monitor"", ""Charger""]",2007.07,{},187058,1,South America +2023-12-06,20483,3778,"[""Laptop""]",2423.84,{},259177,0,North America +2023-04-04,20484,4811,"[""Tablet"", ""Monitor""]",3028.37,{},280242,1,Europe +2023-03-24,20485,1322,"[""Phone"", ""Keyboard"", ""Tablet""]",513.19,"{""seasonal"": ""14%""}",102237,0,Asia +2024-01-02,20486,5796,"[""Charger"", ""Phone""]",990.69,{},140971,1,Europe +2024-09-16,20487,2937,"[""Tablet"", ""Laptop"", ""Keyboard""]",3040.75,"{""loyalty"": ""7%""}",56993,0,Europe +2024-06-11,20488,1492,"[""Phone""]",4776.55,{},14173,1,Africa +2024-08-23,20489,8191,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1686.65,"{""seasonal"": ""25%""}",260395,1,South America +2023-07-30,20490,1556,"[""Wireless Mouse""]",1066.74,"{""loyalty"": ""14%""}",131849,1,South America +2024-06-18,20491,3350,"[""Charger"", ""Headphones""]",3469.02,"{"""": ""23%""}",125005,1,South America +2024-10-11,20492,8387,"[""Keyboard"", ""Charger""]",4431.08,{},60567,1,Asia +2023-04-02,20493,459,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",579.77,{},206825,0,South America +2023-02-22,20494,6168,"[""Charger"", ""Tablet""]",1804.69,{},63450,1,Europe +2023-12-08,20495,2319,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2901.28,"{""promo"": ""15%""}",131901,1,Africa +2024-03-01,20496,2659,"[""Wireless Mouse"", ""Tablet""]",975.99,{},93303,0,North America +2023-01-31,20497,5988,"[""Tablet""]",2670.8,{},62753,1,Africa +2024-09-19,20498,4717,"[""Phone"", ""Monitor"", ""Keyboard""]",1154.98,"{""promo"": ""22%""}",75032,1,Africa +2023-02-23,20499,8763,"[""Keyboard"", ""Phone"", ""Charger""]",206.94,"{""promo"": ""6%""}",211585,1,Europe +2024-12-04,20500,3274,"[""Headphones"", ""Wireless Mouse""]",1064.3,"{"""": ""15%""}",26101,0,South America +2023-10-03,20501,996,"[""Laptop""]",2029.85,"{""promo"": ""14%""}",195572,1,Europe +2023-02-25,20502,2764,"[""Tablet"", ""Keyboard""]",3267.6,{},227213,0,Europe +2023-08-18,20503,1867,"[""Keyboard"", ""Headphones"", ""Charger""]",2255.35,{},39835,0,North America +2023-08-29,20504,2549,"[""Monitor""]",4986.87,{},69202,1,Asia +2024-12-15,20505,3261,"[""Tablet"", ""Monitor"", ""Headphones""]",2299.37,{},30374,0,Africa +2023-09-15,20506,4149,"[""Charger"", ""Tablet""]",2032.2,{},101558,0,Europe +2023-01-06,20507,7051,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2536.7,"{""seasonal"": ""21%""}",106412,0,South America +2023-01-01,20508,6508,"[""Laptop""]",4955.46,"{""seasonal"": ""9%""}",32604,0,Asia +2024-01-31,20509,7914,"[""Headphones""]",2822.29,{},134283,1,Africa +2024-01-31,20510,7688,"[""Charger""]",1527.67,"{""loyalty"": ""14%""}",60577,1,Africa +2024-06-22,20511,6423,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2412.08,{},188678,1,Africa +2024-04-13,20512,1351,"[""Tablet"", ""Phone""]",2970.3,"{"""": ""9%""}",42945,1,South America +2023-05-23,20513,6790,"[""Monitor""]",2137.2,{},137120,1,Europe +2024-08-19,20514,1521,"[""Monitor""]",1635.19,{},286575,1,Europe +2023-07-28,20515,9858,"[""Headphones"", ""Phone""]",1751.95,"{""seasonal"": ""17%""}",58163,1,North America +2023-01-25,20516,9639,"[""Phone"", ""Monitor""]",216.03,"{""promo"": ""29%""}",210730,0,Asia +2023-06-13,20517,8813,"[""Laptop"", ""Phone""]",3267.38,{},87970,1,Africa +2024-05-16,20518,2871,"[""Headphones""]",742.48,"{""loyalty"": ""14%""}",195047,0,North America +2023-03-18,20519,2907,"[""Laptop""]",693.69,{},238788,0,South America +2023-11-20,20520,3318,"[""Laptop""]",1448.14,{},256288,0,North America +2024-02-12,20521,9568,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3257.86,{},118425,1,Africa +2023-06-06,20522,7548,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2112.21,{},288317,1,Asia +2023-11-28,20523,3178,"[""Keyboard"", ""Headphones"", ""Charger""]",1380.41,{},296170,1,Europe +2023-10-30,20524,6499,"[""Charger"", ""Tablet"", ""Phone""]",3516.95,{},222351,1,Asia +2024-12-10,20525,9265,"[""Wireless Mouse""]",2461.15,{},254816,1,South America +2023-03-05,20526,5583,"[""Laptop""]",3562.48,{},85627,1,Africa +2024-07-17,20527,4818,"[""Wireless Mouse"", ""Keyboard""]",1600.64,"{""loyalty"": ""19%""}",97087,0,North America +2024-07-28,20528,910,"[""Keyboard"", ""Phone""]",65.8,"{""promo"": ""22%""}",255129,0,South America +2024-07-11,20529,1093,"[""Wireless Mouse""]",3697.09,{},2644,0,North America +2023-03-26,20530,4618,"[""Keyboard""]",2431.98,"{""seasonal"": ""11%""}",147927,0,South America +2024-01-23,20531,9543,"[""Charger"", ""Monitor""]",4541.13,"{"""": ""14%""}",144095,1,South America +2024-07-12,20532,7444,"[""Keyboard"", ""Tablet""]",4822.0,{},282493,1,South America +2023-12-04,20533,6522,"[""Headphones""]",4134.31,"{""seasonal"": ""20%""}",137749,0,Asia +2023-08-23,20534,2654,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4409.22,{},236775,1,Europe +2024-09-03,20535,2534,"[""Tablet"", ""Monitor"", ""Charger""]",4069.3,{},45255,1,North America +2023-10-30,20536,7557,"[""Keyboard"", ""Laptop""]",1105.72,{},189224,0,Europe +2023-04-06,20537,7867,"[""Laptop"", ""Wireless Mouse""]",945.65,"{""loyalty"": ""14%""}",162433,1,Africa +2024-12-12,20538,2437,"[""Wireless Mouse""]",3392.45,"{""promo"": ""7%""}",193662,0,Africa +2024-05-17,20539,8818,"[""Wireless Mouse"", ""Laptop""]",3180.15,"{"""": ""23%""}",155096,1,South America +2024-04-16,20540,4139,"[""Headphones"", ""Tablet"", ""Laptop""]",501.66,{},148557,1,Asia +2023-03-04,20541,5164,"[""Keyboard""]",2267.11,{},132712,1,Europe +2024-04-24,20542,5074,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",924.55,{},55490,1,Africa +2023-05-04,20543,8634,"[""Monitor""]",613.57,{},169368,0,South America +2024-09-12,20544,4334,"[""Wireless Mouse"", ""Tablet""]",3234.72,"{""loyalty"": ""24%""}",206378,1,North America +2023-12-20,20545,549,"[""Laptop"", ""Headphones""]",4957.08,{},256064,1,Asia +2023-04-15,20546,547,"[""Monitor"", ""Headphones"", ""Laptop""]",1646.83,{},110585,1,South America +2024-03-01,20547,3234,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2864.9,"{""loyalty"": ""22%""}",17345,1,Asia +2023-11-13,20548,2575,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4162.07,"{""promo"": ""13%""}",185703,0,Europe +2023-04-08,20549,8188,"[""Monitor""]",96.03,"{""promo"": ""14%""}",250175,1,Europe +2023-04-01,20550,8529,"[""Phone""]",1953.27,{},198563,1,South America +2024-12-09,20551,2059,"[""Phone"", ""Charger""]",1100.64,"{""loyalty"": ""15%""}",237325,0,Asia +2024-02-13,20552,8013,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4354.06,{},1578,0,Asia +2023-10-17,20553,2927,"[""Headphones""]",4040.68,"{""seasonal"": ""5%""}",35059,0,Europe +2024-10-07,20554,2695,"[""Headphones"", ""Phone""]",680.28,{},131416,0,Africa +2023-03-25,20555,8572,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1145.19,{},146879,0,Africa +2024-11-17,20556,4384,"[""Charger""]",1132.81,"{""promo"": ""27%""}",154271,0,North America +2023-08-20,20557,5870,"[""Tablet"", ""Phone""]",4443.81,{},116130,1,South America +2024-02-20,20558,792,"[""Phone""]",2885.14,"{""seasonal"": ""30%""}",36274,1,South America +2023-04-26,20559,8971,"[""Charger""]",1111.05,{},96370,1,North America +2024-09-07,20560,1764,"[""Wireless Mouse""]",4814.91,"{"""": ""12%""}",188006,1,Asia +2024-11-09,20561,7711,"[""Phone"", ""Keyboard"", ""Charger""]",2551.97,{},206625,1,Africa +2024-05-24,20562,5107,"[""Headphones""]",1974.51,"{""promo"": ""24%""}",88774,1,Asia +2024-02-18,20563,8941,"[""Headphones"", ""Laptop""]",2728.78,"{"""": ""20%""}",169252,0,Asia +2023-09-22,20564,924,"[""Keyboard""]",1828.52,"{""loyalty"": ""11%""}",189534,0,Africa +2024-11-25,20565,7,"[""Headphones"", ""Charger""]",2381.42,{},38428,1,Europe +2024-05-08,20566,140,"[""Wireless Mouse"", ""Laptop""]",4450.17,{},67177,1,North America +2023-01-15,20567,2189,"[""Headphones"", ""Laptop""]",4386.36,{},128020,1,Africa +2024-08-30,20568,5403,"[""Monitor"", ""Phone""]",1180.41,"{""promo"": ""28%""}",41652,0,Africa +2024-12-28,20569,3519,"[""Phone"", ""Headphones""]",2754.01,"{"""": ""17%""}",55480,1,South America +2023-06-07,20570,4301,"[""Charger"", ""Headphones"", ""Tablet""]",4692.45,"{""seasonal"": ""12%""}",109791,0,North America +2023-01-14,20571,4146,"[""Phone"", ""Keyboard""]",3991.07,{},292678,1,Africa +2023-11-17,20572,2616,"[""Phone""]",3504.75,{},94217,1,South America +2023-10-20,20573,9928,"[""Laptop"", ""Headphones"", ""Phone""]",3649.36,{},42272,0,Europe +2023-12-27,20574,5631,"[""Laptop"", ""Monitor"", ""Headphones""]",1163.78,"{""loyalty"": ""7%""}",146492,0,Asia +2024-07-15,20575,2977,"[""Laptop"", ""Headphones""]",2754.57,{},187434,0,Asia +2024-09-28,20576,9588,"[""Keyboard""]",3288.32,"{"""": ""23%""}",140838,0,Asia +2023-05-11,20577,47,"[""Wireless Mouse""]",4858.27,"{"""": ""12%""}",139264,1,Africa +2024-02-17,20578,4593,"[""Phone"", ""Tablet""]",675.89,"{""seasonal"": ""19%""}",197576,1,Europe +2024-11-22,20579,9164,"[""Headphones"", ""Laptop""]",3529.08,"{""promo"": ""26%""}",134224,0,Europe +2024-03-28,20580,8326,"[""Laptop"", ""Tablet""]",3818.51,{},175356,0,Europe +2023-05-29,20581,9003,"[""Tablet""]",2360.69,"{""promo"": ""7%""}",297410,1,Asia +2024-11-26,20582,5008,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4543.41,{},130825,0,Europe +2023-10-08,20583,5994,"[""Tablet"", ""Phone"", ""Laptop""]",2929.93,"{""seasonal"": ""22%""}",253807,0,North America +2023-12-29,20584,2356,"[""Monitor""]",3016.87,{},22726,1,Asia +2023-04-06,20585,4645,"[""Tablet"", ""Headphones"", ""Monitor""]",2466.65,"{"""": ""7%""}",250413,0,Africa +2023-07-14,20586,4898,"[""Headphones"", ""Laptop""]",4254.69,{},41480,0,Africa +2023-04-20,20587,6880,"[""Tablet"", ""Phone""]",4603.11,"{""seasonal"": ""12%""}",233431,1,Asia +2023-03-24,20588,9535,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4334.06,{},107191,0,Africa +2023-06-20,20589,8987,"[""Tablet""]",4714.16,"{""seasonal"": ""28%""}",236753,1,North America +2024-02-26,20590,4299,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3963.66,"{""promo"": ""17%""}",128405,0,Africa +2024-01-12,20591,7438,"[""Phone""]",4086.7,"{""seasonal"": ""7%""}",133782,1,North America +2023-10-26,20592,9991,"[""Headphones""]",1639.47,"{"""": ""14%""}",195587,1,Europe +2024-06-09,20593,5901,"[""Headphones"", ""Wireless Mouse""]",4884.9,{},176516,0,Europe +2024-01-23,20594,6437,"[""Keyboard""]",2248.96,"{"""": ""21%""}",106684,0,South America +2023-12-19,20595,9154,"[""Phone"", ""Laptop"", ""Keyboard""]",1949.06,{},170156,0,Asia +2023-04-19,20596,8662,"[""Phone""]",578.85,"{"""": ""12%""}",211914,1,South America +2024-01-19,20597,5291,"[""Tablet""]",1739.1,"{""seasonal"": ""16%""}",214143,1,South America +2024-11-18,20598,1091,"[""Charger"", ""Tablet""]",4935.37,"{""promo"": ""11%""}",35288,0,North America +2023-06-12,20599,1387,"[""Charger""]",2908.29,"{""loyalty"": ""8%""}",268120,0,North America +2024-12-01,20600,641,"[""Tablet"", ""Headphones"", ""Charger""]",3529.74,"{""loyalty"": ""19%""}",76750,0,Europe +2023-01-01,20601,4292,"[""Wireless Mouse""]",1885.04,"{"""": ""10%""}",239481,1,Europe +2023-04-17,20602,6975,"[""Monitor""]",309.4,"{""loyalty"": ""17%""}",151178,0,Europe +2023-09-14,20603,1111,"[""Phone"", ""Monitor""]",850.66,{},73219,0,North America +2024-04-18,20604,811,"[""Wireless Mouse""]",2131.35,"{""promo"": ""19%""}",297861,0,South America +2023-11-06,20605,2059,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4922.74,{},244044,1,North America +2024-10-21,20606,1906,"[""Headphones""]",898.26,"{"""": ""19%""}",59862,0,Europe +2024-05-25,20607,4191,"[""Wireless Mouse""]",2834.99,"{""promo"": ""19%""}",162104,1,South America +2024-02-25,20608,9143,"[""Wireless Mouse"", ""Charger""]",2360.88,{},4595,1,North America +2023-05-29,20609,5532,"[""Keyboard"", ""Phone"", ""Headphones""]",3895.45,{},160102,1,North America +2023-09-29,20610,9675,"[""Headphones""]",3256.77,{},205524,1,Europe +2024-01-27,20611,889,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3882.81,"{""promo"": ""24%""}",81718,0,Asia +2023-07-26,20612,3827,"[""Tablet""]",2570.04,"{""promo"": ""5%""}",17933,0,Europe +2024-07-02,20613,7752,"[""Tablet"", ""Headphones""]",3240.94,{},217614,0,Europe +2024-07-10,20614,4261,"[""Phone"", ""Laptop"", ""Tablet""]",2763.45,"{""loyalty"": ""9%""}",265663,0,Europe +2024-03-28,20615,1270,"[""Laptop""]",2890.39,{},103578,1,Africa +2023-02-07,20616,2376,"[""Monitor""]",3698.9,"{""loyalty"": ""27%""}",101449,0,Asia +2024-06-26,20617,5233,"[""Laptop"", ""Wireless Mouse""]",2202.91,"{""loyalty"": ""18%""}",168183,1,Europe +2023-04-19,20618,3750,"[""Monitor""]",2642.54,{},134332,0,Asia +2024-03-11,20619,6530,"[""Keyboard""]",1197.78,{},76216,1,Asia +2024-03-17,20620,3857,"[""Tablet""]",2513.22,"{""promo"": ""17%""}",210634,1,Europe +2024-07-28,20621,296,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1129.75,{},214943,1,Africa +2024-06-21,20622,4575,"[""Headphones"", ""Monitor""]",2096.44,{},157187,0,North America +2024-09-09,20623,2107,"[""Charger"", ""Phone"", ""Headphones""]",3787.3,"{""promo"": ""13%""}",205650,1,Africa +2023-01-06,20624,883,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4741.77,"{"""": ""12%""}",124854,0,Asia +2024-02-06,20625,4317,"[""Tablet""]",4544.13,"{""promo"": ""27%""}",257988,0,North America +2023-10-06,20626,8062,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2371.98,"{"""": ""25%""}",150471,1,South America +2024-04-27,20627,8803,"[""Phone""]",2079.38,"{""promo"": ""15%""}",163977,1,Africa +2023-10-28,20628,2014,"[""Keyboard""]",2405.11,{},294642,0,South America +2024-11-08,20629,7331,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",273.73,{},18239,0,North America +2023-08-01,20630,7447,"[""Monitor"", ""Headphones""]",1661.83,"{""seasonal"": ""17%""}",289904,0,Asia +2024-12-02,20631,4132,"[""Headphones"", ""Charger"", ""Keyboard""]",361.97,{},79488,0,Asia +2024-10-19,20632,9044,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3088.39,{},273277,0,Europe +2024-01-20,20633,3716,"[""Phone"", ""Charger"", ""Monitor""]",1404.52,"{""promo"": ""20%""}",291262,0,South America +2023-10-31,20634,2135,"[""Laptop""]",3373.08,"{"""": ""6%""}",45225,0,North America +2023-04-28,20635,1396,"[""Keyboard""]",1901.04,{},14052,0,Africa +2024-03-20,20636,9960,"[""Keyboard"", ""Phone""]",3679.58,{},287070,1,South America +2024-04-06,20637,4538,"[""Headphones"", ""Monitor"", ""Phone""]",3806.41,{},12919,0,Africa +2024-09-05,20638,7965,"[""Laptop""]",4849.06,{},72485,1,South America +2023-12-24,20639,5858,"[""Laptop"", ""Charger"", ""Monitor""]",4928.32,"{""promo"": ""23%""}",207253,0,Europe +2023-02-09,20640,1801,"[""Keyboard"", ""Laptop""]",686.55,{},235791,0,Europe +2024-10-09,20641,4661,"[""Charger""]",1807.46,{},99546,0,Europe +2023-09-04,20642,4919,"[""Keyboard"", ""Phone""]",1846.09,{},20454,1,Europe +2023-06-28,20643,2010,"[""Phone"", ""Tablet""]",4580.75,"{"""": ""25%""}",162175,1,Europe +2024-03-13,20644,8875,"[""Monitor""]",4752.45,{},281912,1,Africa +2024-05-30,20645,6233,"[""Monitor""]",4739.23,{},207027,0,South America +2023-03-20,20646,354,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1510.0,"{""loyalty"": ""10%""}",49875,0,Europe +2024-05-04,20647,1769,"[""Charger""]",1291.59,{},282146,0,South America +2023-02-27,20648,71,"[""Keyboard""]",1396.19,{},145530,1,South America +2024-02-18,20649,2122,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2193.1,"{""promo"": ""30%""}",183086,1,South America +2023-04-14,20650,757,"[""Phone"", ""Laptop"", ""Keyboard""]",3775.41,{},211458,0,Europe +2023-08-23,20651,5509,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4777.51,{},144411,0,South America +2024-01-31,20652,5088,"[""Keyboard""]",3348.94,{},205733,1,Africa +2023-03-02,20653,7917,"[""Tablet"", ""Charger""]",2513.06,{},84507,0,Europe +2023-08-10,20654,32,"[""Headphones"", ""Charger""]",3002.69,{},171072,1,South America +2024-11-24,20655,157,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3042.88,{},156231,0,North America +2023-04-05,20656,3099,"[""Phone"", ""Laptop"", ""Tablet""]",2302.86,"{""loyalty"": ""26%""}",246169,0,Asia +2024-10-16,20657,1053,"[""Tablet"", ""Charger""]",2714.89,{},102444,0,Europe +2023-08-29,20658,2337,"[""Headphones""]",123.98,"{""loyalty"": ""27%""}",232810,1,Africa +2023-08-03,20659,1874,"[""Monitor""]",2302.17,{},36422,0,Africa +2024-07-14,20660,3617,"[""Keyboard""]",1511.4,"{""seasonal"": ""26%""}",170832,1,South America +2024-03-29,20661,7034,"[""Wireless Mouse"", ""Charger""]",3518.93,{},109799,1,Africa +2023-06-08,20662,9165,"[""Keyboard"", ""Monitor"", ""Phone""]",4291.51,"{"""": ""13%""}",280195,0,Asia +2023-01-07,20663,2586,"[""Charger"", ""Wireless Mouse""]",4866.05,"{""loyalty"": ""10%""}",194348,1,North America +2023-08-20,20664,5249,"[""Keyboard"", ""Wireless Mouse""]",2721.1,{},294012,0,Europe +2023-12-08,20665,1537,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1316.28,"{""seasonal"": ""25%""}",171233,0,Africa +2023-08-01,20666,6057,"[""Charger""]",4969.08,"{""promo"": ""18%""}",260503,0,South America +2023-03-19,20667,4281,"[""Monitor""]",2211.16,"{""seasonal"": ""9%""}",196763,1,Europe +2024-02-12,20668,4770,"[""Monitor""]",759.46,{},266575,0,Europe +2023-02-01,20669,3560,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3030.51,{},270058,0,Africa +2024-10-11,20670,7942,"[""Charger"", ""Wireless Mouse""]",657.15,{},231785,1,Asia +2024-11-12,20671,4394,"[""Headphones"", ""Laptop"", ""Charger""]",4202.74,{},163254,0,South America +2024-10-18,20672,5947,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",785.03,{},172960,1,North America +2024-03-08,20673,3029,"[""Keyboard"", ""Phone"", ""Tablet""]",1508.88,"{""loyalty"": ""8%""}",87342,0,Asia +2023-12-29,20674,8431,"[""Laptop""]",1751.04,"{""loyalty"": ""22%""}",7921,0,Africa +2023-05-29,20675,9240,"[""Laptop"", ""Headphones"", ""Keyboard""]",255.29,{},294202,0,Africa +2024-12-06,20676,4936,"[""Wireless Mouse""]",1538.96,{},65820,0,South America +2024-09-07,20677,4650,"[""Tablet""]",4337.9,{},57829,0,North America +2023-09-04,20678,689,"[""Laptop"", ""Monitor""]",2876.65,{},166422,0,Asia +2023-12-28,20679,2941,"[""Headphones"", ""Charger"", ""Tablet""]",3031.48,"{""loyalty"": ""12%""}",75062,1,Africa +2023-09-20,20680,9406,"[""Wireless Mouse"", ""Tablet""]",4600.1,"{""promo"": ""25%""}",82662,1,North America +2024-08-04,20681,1680,"[""Tablet"", ""Monitor"", ""Keyboard""]",655.85,{},207583,0,North America +2024-12-22,20682,7361,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",58.02,{},242610,0,North America +2024-10-12,20683,4988,"[""Wireless Mouse""]",3425.05,{},103964,0,South America +2024-08-03,20684,1318,"[""Laptop"", ""Monitor"", ""Tablet""]",3132.62,"{""loyalty"": ""10%""}",265310,1,Asia +2023-10-30,20685,7712,"[""Headphones"", ""Keyboard""]",3303.3,"{"""": ""24%""}",137852,0,North America +2024-05-29,20686,9318,"[""Wireless Mouse"", ""Monitor""]",267.29,{},267445,1,Asia +2024-02-12,20687,4416,"[""Keyboard"", ""Tablet""]",1097.32,{},49682,0,Africa +2024-08-19,20688,4315,"[""Laptop""]",1196.41,"{""promo"": ""30%""}",148795,1,Asia +2024-08-12,20689,1545,"[""Keyboard"", ""Phone""]",3483.89,{},134636,1,Asia +2023-05-22,20690,7897,"[""Headphones""]",2295.19,{},93455,1,Asia +2024-04-27,20691,8199,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1548.18,{},57806,1,Asia +2024-04-09,20692,5092,"[""Charger""]",3872.24,"{""promo"": ""18%""}",68795,0,North America +2023-03-06,20693,5413,"[""Monitor"", ""Phone"", ""Tablet""]",2833.33,{},247666,0,North America +2024-11-08,20694,1250,"[""Headphones"", ""Tablet"", ""Charger""]",1983.73,"{""seasonal"": ""28%""}",254056,0,Africa +2024-08-07,20695,9768,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2560.9,{},287692,0,Europe +2024-02-29,20696,4545,"[""Monitor""]",2324.45,{},28663,1,Africa +2023-04-14,20697,7363,"[""Phone"", ""Monitor""]",4991.55,{},299365,1,Europe +2023-04-28,20698,9050,"[""Headphones"", ""Keyboard""]",4080.43,"{""seasonal"": ""25%""}",127508,0,Europe +2024-03-06,20699,4505,"[""Wireless Mouse"", ""Headphones""]",4046.25,"{""loyalty"": ""22%""}",150156,0,South America +2023-06-23,20700,6458,"[""Wireless Mouse"", ""Headphones""]",4296.43,{},133715,0,Africa +2024-10-11,20701,8612,"[""Phone"", ""Headphones""]",1000.02,"{""promo"": ""22%""}",191335,1,North America +2023-07-14,20702,735,"[""Wireless Mouse""]",2811.29,"{"""": ""11%""}",285929,1,Asia +2024-10-11,20703,1251,"[""Keyboard""]",4740.78,"{""loyalty"": ""22%""}",97286,0,Asia +2023-02-21,20704,5882,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1160.43,{},110084,0,Asia +2023-04-16,20705,1985,"[""Laptop""]",936.15,"{""loyalty"": ""20%""}",81372,0,South America +2023-02-17,20706,2222,"[""Charger""]",2633.39,{},90679,0,North America +2023-06-03,20707,1906,"[""Monitor"", ""Keyboard""]",1795.39,{},95601,0,Asia +2023-04-18,20708,943,"[""Monitor"", ""Headphones""]",2789.08,{},295506,0,Europe +2023-01-26,20709,3663,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3044.88,{},190906,1,Asia +2023-09-13,20710,2379,"[""Keyboard"", ""Monitor""]",4798.22,{},143848,0,North America +2024-06-02,20711,3062,"[""Phone""]",4740.04,"{"""": ""20%""}",44937,0,Europe +2024-01-10,20712,4006,"[""Charger"", ""Laptop""]",4223.02,"{""loyalty"": ""14%""}",7795,0,Africa +2023-05-21,20713,2178,"[""Tablet""]",174.69,"{""seasonal"": ""12%""}",65573,0,North America +2024-03-15,20714,2954,"[""Phone""]",1722.01,{},222395,1,Europe +2024-09-24,20715,9459,"[""Wireless Mouse"", ""Charger""]",2343.43,"{""loyalty"": ""7%""}",153909,1,North America +2024-11-06,20716,9333,"[""Laptop"", ""Monitor""]",450.08,{},121723,0,Asia +2024-11-02,20717,4279,"[""Phone"", ""Laptop""]",1097.89,{},88871,1,South America +2023-03-09,20718,8273,"[""Headphones"", ""Laptop"", ""Monitor""]",260.23,"{""seasonal"": ""5%""}",99241,0,Asia +2024-11-23,20719,9863,"[""Keyboard"", ""Headphones""]",1362.21,{},298922,0,Africa +2024-08-15,20720,1654,"[""Phone"", ""Wireless Mouse""]",327.36,{},218254,1,Europe +2023-12-21,20721,3305,"[""Charger""]",2789.68,{},199875,0,Africa +2024-12-17,20722,3460,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4017.6,"{""loyalty"": ""25%""}",7311,1,North America +2024-02-17,20723,9068,"[""Phone""]",578.85,"{"""": ""15%""}",294365,1,Europe +2023-05-26,20724,1651,"[""Laptop""]",572.94,"{""loyalty"": ""23%""}",297193,0,Asia +2024-09-19,20725,6271,"[""Laptop"", ""Tablet"", ""Charger""]",4254.26,"{""loyalty"": ""14%""}",49295,1,South America +2023-12-11,20726,6836,"[""Tablet""]",2964.26,{},162597,0,South America +2024-12-07,20727,4950,"[""Monitor"", ""Keyboard""]",4294.84,"{""seasonal"": ""9%""}",209931,1,Africa +2023-04-15,20728,1412,"[""Charger"", ""Keyboard"", ""Monitor""]",3958.23,{},288326,0,Africa +2023-07-30,20729,1449,"[""Tablet""]",531.77,{},133881,1,South America +2023-01-19,20730,3887,"[""Keyboard"", ""Phone""]",2985.66,{},180976,0,Europe +2024-01-15,20731,6812,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3432.17,{},83546,0,North America +2023-11-17,20732,5597,"[""Monitor""]",2574.02,{},194300,0,Europe +2024-04-30,20733,2089,"[""Laptop""]",1616.39,{},19788,0,North America +2023-02-13,20734,7001,"[""Tablet""]",2353.92,"{""loyalty"": ""21%""}",88784,0,Africa +2024-05-31,20735,5511,"[""Headphones""]",1517.62,"{""loyalty"": ""11%""}",284042,1,South America +2024-09-25,20736,5884,"[""Charger""]",2427.22,"{""loyalty"": ""28%""}",295777,0,North America +2024-02-08,20737,5858,"[""Phone"", ""Headphones"", ""Laptop""]",2863.92,{},278213,0,Africa +2024-05-11,20738,30,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3260.06,{},1638,1,Europe +2024-09-11,20739,2210,"[""Wireless Mouse""]",3527.41,{},96401,0,Africa +2023-06-17,20740,4581,"[""Monitor"", ""Keyboard""]",2595.79,{},175558,0,Asia +2023-10-17,20741,6624,"[""Keyboard"", ""Charger""]",999.47,{},69635,1,Africa +2023-07-10,20742,9009,"[""Monitor""]",540.61,"{"""": ""11%""}",173768,0,Europe +2024-11-10,20743,3654,"[""Monitor"", ""Headphones""]",1755.46,{},105374,0,Asia +2024-05-24,20744,399,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",840.87,"{"""": ""10%""}",5551,0,Asia +2024-02-06,20745,9297,"[""Phone"", ""Laptop"", ""Monitor""]",4508.46,"{""seasonal"": ""22%""}",230203,0,Asia +2023-08-12,20746,6511,"[""Charger"", ""Monitor"", ""Laptop""]",1578.01,{},94053,1,Europe +2024-04-27,20747,707,"[""Laptop"", ""Headphones"", ""Monitor""]",901.17,"{""seasonal"": ""11%""}",81241,1,South America +2024-04-22,20748,1407,"[""Laptop""]",2319.99,"{"""": ""22%""}",92372,1,South America +2023-09-30,20749,1940,"[""Headphones""]",2556.7,"{""loyalty"": ""24%""}",264004,0,Europe +2024-09-01,20750,4531,"[""Headphones""]",3883.37,"{"""": ""13%""}",197938,0,Asia +2024-04-22,20751,7535,"[""Keyboard""]",3572.72,{},3625,0,South America +2024-07-28,20752,3197,"[""Keyboard"", ""Phone""]",4503.77,{},15676,0,Europe +2024-02-22,20753,6575,"[""Phone"", ""Keyboard"", ""Headphones""]",1314.03,{},266851,0,Africa +2023-06-27,20754,4082,"[""Headphones""]",4433.19,"{""loyalty"": ""5%""}",156881,0,Africa +2024-01-06,20755,2331,"[""Headphones"", ""Monitor""]",4131.76,{},90538,1,Asia +2023-11-02,20756,186,"[""Charger""]",1677.6,"{"""": ""5%""}",33065,0,Europe +2023-08-20,20757,1817,"[""Monitor""]",3969.06,{},253497,1,North America +2024-07-07,20758,8461,"[""Tablet""]",2914.93,"{""loyalty"": ""16%""}",231118,0,North America +2023-11-12,20759,6814,"[""Headphones""]",1380.74,"{"""": ""13%""}",271133,1,North America +2024-07-01,20760,6937,"[""Wireless Mouse""]",1897.91,"{""loyalty"": ""11%""}",94856,0,Europe +2023-11-05,20761,3441,"[""Charger"", ""Headphones"", ""Phone""]",4214.04,"{"""": ""24%""}",37994,0,Africa +2024-09-06,20762,2511,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4602.96,"{""loyalty"": ""28%""}",81706,1,North America +2023-03-14,20763,7630,"[""Keyboard"", ""Tablet""]",1356.93,{},35783,0,Asia +2024-04-26,20764,4218,"[""Charger""]",4959.29,{},195797,1,South America +2023-02-15,20765,5011,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3736.86,"{""promo"": ""19%""}",265928,0,Africa +2023-03-09,20766,1402,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4790.03,"{""seasonal"": ""26%""}",66073,1,North America +2024-09-19,20767,3137,"[""Keyboard"", ""Phone""]",2603.71,"{"""": ""7%""}",82528,1,North America +2023-04-16,20768,5046,"[""Monitor""]",1637.61,{},195239,0,South America +2024-07-19,20769,6989,"[""Headphones"", ""Phone""]",2826.24,{},2335,0,Europe +2024-04-04,20770,4552,"[""Keyboard""]",3005.89,{},28844,0,North America +2024-07-15,20771,7711,"[""Headphones"", ""Monitor"", ""Charger""]",4536.43,"{""seasonal"": ""5%""}",25932,0,South America +2024-02-08,20772,9225,"[""Keyboard"", ""Tablet"", ""Charger""]",4986.32,"{""loyalty"": ""18%""}",223978,0,Africa +2023-04-26,20773,2999,"[""Tablet""]",2027.35,"{""loyalty"": ""11%""}",292166,0,Asia +2023-10-21,20774,3174,"[""Tablet""]",4765.82,{},82412,0,Asia +2023-08-02,20775,8940,"[""Headphones"", ""Monitor""]",1502.98,"{"""": ""12%""}",230360,1,South America +2024-02-18,20776,8399,"[""Headphones"", ""Tablet"", ""Monitor""]",4905.96,"{"""": ""14%""}",90938,0,Asia +2023-04-14,20777,8122,"[""Keyboard"", ""Monitor""]",86.95,"{""loyalty"": ""24%""}",104857,1,South America +2024-10-07,20778,8923,"[""Laptop""]",3910.79,"{""promo"": ""26%""}",277251,1,Asia +2024-07-25,20779,9958,"[""Tablet"", ""Charger""]",174.93,{},36134,1,Asia +2024-02-26,20780,1663,"[""Headphones"", ""Phone"", ""Laptop""]",1837.36,"{""promo"": ""7%""}",57854,1,Europe +2023-02-26,20781,4850,"[""Laptop""]",3536.58,{},186919,0,Asia +2023-02-07,20782,6762,"[""Laptop"", ""Headphones""]",3603.0,{},4709,0,Europe +2024-06-09,20783,8578,"[""Keyboard""]",4085.32,{},57739,1,South America +2024-03-31,20784,2085,"[""Wireless Mouse"", ""Headphones""]",3600.18,"{""seasonal"": ""9%""}",142830,0,Europe +2024-10-06,20785,8408,"[""Monitor"", ""Tablet"", ""Keyboard""]",4469.51,"{"""": ""29%""}",53837,0,Asia +2023-07-31,20786,1548,"[""Wireless Mouse""]",2167.81,"{""promo"": ""7%""}",242525,1,South America +2023-12-24,20787,8135,"[""Monitor"", ""Tablet"", ""Laptop""]",3351.58,"{""loyalty"": ""5%""}",164170,1,Asia +2023-06-19,20788,2183,"[""Laptop"", ""Headphones"", ""Charger""]",2052.15,"{"""": ""29%""}",151895,1,North America +2024-12-19,20789,5122,"[""Monitor"", ""Keyboard"", ""Phone""]",3262.28,"{""seasonal"": ""14%""}",216201,0,Asia +2024-01-16,20790,5229,"[""Headphones"", ""Keyboard"", ""Tablet""]",1022.39,"{"""": ""22%""}",246863,1,Europe +2023-09-27,20791,9595,"[""Charger"", ""Monitor"", ""Headphones""]",4306.24,"{""seasonal"": ""11%""}",214438,1,North America +2024-02-07,20792,4071,"[""Phone""]",3113.3,"{""promo"": ""16%""}",112621,1,South America +2023-04-12,20793,7737,"[""Headphones"", ""Laptop""]",1324.94,"{"""": ""20%""}",289894,1,South America +2024-03-28,20794,9537,"[""Monitor"", ""Keyboard""]",4371.19,"{""loyalty"": ""23%""}",92181,0,Asia +2023-05-17,20795,691,"[""Keyboard""]",3032.52,{},47326,1,North America +2023-08-30,20796,5195,"[""Keyboard""]",2109.52,{},118124,1,Africa +2024-02-25,20797,2327,"[""Keyboard""]",3973.85,"{""promo"": ""25%""}",246844,0,Europe +2023-07-11,20798,1406,"[""Laptop""]",2376.24,{},251796,0,South America +2023-06-14,20799,2226,"[""Wireless Mouse""]",1725.59,"{"""": ""26%""}",104152,1,Asia +2024-02-26,20800,8081,"[""Charger"", ""Headphones"", ""Keyboard""]",3517.67,{},244985,0,Europe +2023-12-01,20801,7193,"[""Headphones""]",94.04,"{""promo"": ""29%""}",280575,1,North America +2023-07-06,20802,2145,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2488.49,{},48822,0,Europe +2023-03-06,20803,9622,"[""Phone"", ""Laptop"", ""Headphones""]",1593.31,"{""seasonal"": ""24%""}",174594,0,Europe +2024-03-03,20804,192,"[""Charger""]",1914.32,"{""promo"": ""26%""}",71049,0,North America +2023-08-17,20805,660,"[""Monitor"", ""Charger""]",4868.64,"{"""": ""28%""}",106714,1,Africa +2023-05-19,20806,1973,"[""Tablet"", ""Monitor""]",1602.57,"{"""": ""7%""}",256018,1,Africa +2024-10-27,20807,4944,"[""Wireless Mouse"", ""Tablet""]",4473.0,{},29801,0,Asia +2024-07-23,20808,8910,"[""Laptop""]",2450.79,"{""seasonal"": ""29%""}",33897,0,Asia +2024-01-25,20809,9703,"[""Keyboard"", ""Headphones""]",829.46,"{""promo"": ""8%""}",135124,1,North America +2024-11-04,20810,9395,"[""Laptop""]",3204.16,"{""promo"": ""25%""}",252203,0,Africa +2023-05-21,20811,7381,"[""Tablet"", ""Laptop"", ""Charger""]",4265.88,{},219953,0,North America +2023-03-03,20812,2018,"[""Monitor"", ""Tablet"", ""Keyboard""]",2545.75,{},217618,0,South America +2023-10-16,20813,1647,"[""Charger"", ""Headphones"", ""Monitor""]",848.47,"{""seasonal"": ""20%""}",205472,0,North America +2024-01-21,20814,3973,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2624.57,{},45216,0,North America +2023-05-07,20815,3968,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1356.67,"{""loyalty"": ""10%""}",239166,0,Europe +2024-12-06,20816,1716,"[""Tablet""]",3344.86,{},77115,1,South America +2023-06-05,20817,6058,"[""Charger"", ""Headphones""]",1223.05,"{""promo"": ""6%""}",206740,0,South America +2023-07-19,20818,4084,"[""Monitor"", ""Keyboard"", ""Laptop""]",4572.83,"{"""": ""20%""}",293351,0,Africa +2024-03-08,20819,5200,"[""Headphones"", ""Monitor""]",1863.54,{},171200,1,Asia +2023-05-23,20820,9352,"[""Phone"", ""Laptop"", ""Charger""]",3086.28,"{"""": ""28%""}",147019,1,North America +2023-10-05,20821,6031,"[""Monitor"", ""Keyboard"", ""Laptop""]",1262.87,"{""promo"": ""12%""}",112037,0,North America +2024-09-21,20822,5653,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",795.52,{},70891,1,Africa +2023-01-19,20823,8342,"[""Phone"", ""Tablet""]",158.42,"{""promo"": ""9%""}",216734,0,North America +2024-07-30,20824,9998,"[""Keyboard"", ""Laptop"", ""Headphones""]",281.46,"{""loyalty"": ""18%""}",134240,0,Asia +2023-10-05,20825,724,"[""Keyboard"", ""Laptop"", ""Monitor""]",751.54,"{""seasonal"": ""14%""}",141049,0,Europe +2024-02-12,20826,1013,"[""Keyboard"", ""Laptop""]",4355.61,"{""seasonal"": ""17%""}",147575,0,Asia +2024-09-18,20827,5952,"[""Headphones"", ""Phone""]",2925.02,{},91727,1,South America +2023-01-13,20828,4126,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3205.35,{},126624,0,South America +2024-10-31,20829,2197,"[""Monitor""]",4141.55,"{""loyalty"": ""10%""}",151509,0,Europe +2023-05-27,20830,1881,"[""Charger"", ""Monitor"", ""Laptop""]",916.31,{},28166,0,North America +2023-12-20,20831,1279,"[""Keyboard""]",3163.22,{},53977,1,South America +2024-08-14,20832,8266,"[""Wireless Mouse"", ""Laptop""]",2471.55,{},245088,1,Africa +2024-12-28,20833,5980,"[""Tablet""]",3729.96,{},297268,1,Africa +2023-07-01,20834,2357,"[""Wireless Mouse"", ""Phone""]",561.43,"{""seasonal"": ""17%""}",203903,1,Africa +2024-01-03,20835,3678,"[""Charger"", ""Phone"", ""Tablet""]",2553.77,{},187990,0,North America +2024-05-13,20836,5095,"[""Monitor""]",2949.51,"{"""": ""10%""}",285940,1,Africa +2024-06-24,20837,2135,"[""Monitor"", ""Wireless Mouse""]",3081.1,"{""loyalty"": ""22%""}",203966,0,Asia +2024-11-02,20838,1314,"[""Monitor""]",3142.64,"{""promo"": ""11%""}",111740,1,Africa +2024-10-20,20839,502,"[""Keyboard"", ""Tablet"", ""Charger""]",1062.55,{},274709,1,North America +2024-11-02,20840,6808,"[""Keyboard""]",1365.67,{},181351,1,South America +2024-01-04,20841,4596,"[""Headphones"", ""Laptop""]",2328.38,{},296091,1,Europe +2024-10-11,20842,490,"[""Laptop""]",3099.83,{},163745,0,Europe +2024-06-27,20843,4939,"[""Charger"", ""Wireless Mouse""]",3753.85,"{""promo"": ""28%""}",61888,0,Africa +2023-05-24,20844,1957,"[""Wireless Mouse""]",4095.98,"{""loyalty"": ""17%""}",168403,1,North America +2023-12-28,20845,8832,"[""Charger"", ""Monitor""]",3263.72,{},190929,1,North America +2023-01-14,20846,6270,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2247.14,{},243919,1,Europe +2024-07-07,20847,2834,"[""Phone"", ""Headphones"", ""Keyboard""]",609.6,{},251002,1,Asia +2024-07-01,20848,3184,"[""Laptop"", ""Wireless Mouse""]",962.93,{},163322,1,Europe +2024-07-06,20849,7446,"[""Tablet""]",4975.5,"{""loyalty"": ""24%""}",236131,1,Europe +2024-06-28,20850,9381,"[""Monitor""]",1212.41,"{""promo"": ""10%""}",10825,0,Asia +2024-01-28,20851,1756,"[""Monitor"", ""Phone""]",3308.57,{},120974,0,North America +2023-08-07,20852,9080,"[""Charger"", ""Tablet"", ""Phone""]",1526.4,"{""seasonal"": ""23%""}",268954,1,South America +2023-01-01,20853,2201,"[""Tablet"", ""Keyboard"", ""Laptop""]",585.68,{},286970,0,Africa +2024-11-26,20854,4816,"[""Tablet"", ""Monitor"", ""Phone""]",1946.82,{},18406,0,Africa +2024-07-01,20855,1350,"[""Laptop""]",3890.45,{},265991,0,Europe +2024-01-29,20856,5499,"[""Monitor"", ""Wireless Mouse""]",1443.89,"{""promo"": ""20%""}",9237,0,Europe +2024-03-26,20857,2720,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3230.27,"{""loyalty"": ""17%""}",182310,1,North America +2024-07-23,20858,9538,"[""Keyboard"", ""Monitor"", ""Tablet""]",2421.36,{},56347,0,Asia +2024-12-21,20859,7069,"[""Charger"", ""Tablet""]",748.9,"{""loyalty"": ""17%""}",247437,0,Europe +2024-01-30,20860,2368,"[""Phone""]",4487.8,"{""seasonal"": ""26%""}",289461,1,North America +2024-12-23,20861,7278,"[""Tablet"", ""Laptop""]",343.54,{},17292,0,Asia +2024-05-28,20862,8246,"[""Wireless Mouse"", ""Laptop""]",1826.96,{},235629,0,South America +2023-08-05,20863,3201,"[""Phone""]",2752.42,"{""promo"": ""26%""}",64904,0,South America +2024-02-24,20864,6660,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2898.08,{},84134,0,Africa +2023-11-25,20865,9034,"[""Keyboard"", ""Tablet""]",1821.15,{},197147,1,Africa +2024-06-29,20866,5738,"[""Keyboard"", ""Headphones"", ""Laptop""]",2621.77,{},51672,0,Africa +2024-08-01,20867,6788,"[""Keyboard"", ""Charger""]",1572.6,"{""seasonal"": ""18%""}",166618,0,North America +2024-12-27,20868,1747,"[""Monitor""]",1590.67,{},260823,1,Europe +2023-03-03,20869,168,"[""Monitor""]",3801.64,"{""loyalty"": ""25%""}",118977,1,Africa +2023-09-09,20870,5063,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1981.03,{},83301,1,Africa +2023-03-10,20871,523,"[""Headphones"", ""Laptop""]",1617.1,{},193821,0,Asia +2023-01-16,20872,7074,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3541.97,{},222870,1,North America +2024-09-30,20873,2099,"[""Charger"", ""Wireless Mouse""]",2789.19,{},137926,0,Europe +2024-10-15,20874,7314,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1112.1,"{"""": ""9%""}",67789,1,Africa +2023-05-04,20875,7494,"[""Phone"", ""Laptop""]",3454.28,{},220908,0,North America +2023-11-24,20876,6658,"[""Phone"", ""Laptop"", ""Monitor""]",3549.7,"{""seasonal"": ""5%""}",99145,0,Asia +2024-01-28,20877,5010,"[""Headphones""]",4487.2,{},166312,0,South America +2024-10-07,20878,7273,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1640.13,"{""loyalty"": ""18%""}",269493,1,North America +2023-10-19,20879,5932,"[""Phone"", ""Tablet"", ""Headphones""]",1684.17,"{""seasonal"": ""24%""}",201029,0,Asia +2024-04-03,20880,2065,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",367.31,"{""seasonal"": ""22%""}",200941,0,Europe +2024-05-21,20881,6314,"[""Laptop"", ""Headphones"", ""Charger""]",2016.18,{},146778,0,Asia +2024-06-19,20882,7752,"[""Wireless Mouse"", ""Tablet""]",2223.14,"{"""": ""19%""}",257972,0,Europe +2023-05-06,20883,7450,"[""Phone"", ""Keyboard""]",3775.77,{},58450,1,Europe +2023-09-23,20884,1848,"[""Laptop""]",2528.91,"{""seasonal"": ""24%""}",67851,0,North America +2024-11-23,20885,8640,"[""Wireless Mouse""]",4733.21,"{""promo"": ""10%""}",196429,0,South America +2023-01-10,20886,2698,"[""Wireless Mouse"", ""Charger""]",3492.85,{},89224,0,Europe +2024-11-22,20887,519,"[""Keyboard"", ""Laptop"", ""Charger""]",2027.74,{},263475,0,South America +2024-12-02,20888,5710,"[""Tablet"", ""Wireless Mouse""]",3380.0,"{"""": ""7%""}",288174,0,South America +2024-03-22,20889,5658,"[""Laptop"", ""Phone""]",1954.35,"{"""": ""20%""}",239773,0,Europe +2023-05-28,20890,8435,"[""Monitor"", ""Laptop""]",1088.59,{},5725,0,Europe +2023-12-20,20891,5543,"[""Wireless Mouse"", ""Tablet""]",4399.65,"{""seasonal"": ""23%""}",142906,0,North America +2023-11-26,20892,1396,"[""Tablet"", ""Monitor""]",1013.72,{},203695,1,Europe +2024-05-22,20893,845,"[""Monitor"", ""Laptop"", ""Keyboard""]",2487.12,{},41341,1,South America +2023-03-09,20894,9592,"[""Tablet""]",858.25,{},50157,1,Europe +2023-11-29,20895,4053,"[""Keyboard"", ""Tablet""]",1546.09,{},216765,0,North America +2024-05-29,20896,6259,"[""Charger"", ""Laptop""]",3305.85,{},79399,1,Europe +2023-10-13,20897,5255,"[""Laptop"", ""Charger"", ""Headphones""]",716.55,"{"""": ""22%""}",72618,1,Africa +2023-09-04,20898,5826,"[""Keyboard"", ""Tablet""]",622.2,"{""promo"": ""15%""}",295721,0,North America +2024-06-06,20899,4686,"[""Keyboard""]",402.51,{},43321,0,Asia +2023-07-04,20900,1144,"[""Phone"", ""Wireless Mouse""]",4364.17,"{""seasonal"": ""11%""}",257075,1,Europe +2024-01-29,20901,8496,"[""Monitor"", ""Headphones""]",3130.53,"{""seasonal"": ""24%""}",200975,1,South America +2023-03-10,20902,1535,"[""Laptop""]",2812.87,{},130441,0,Europe +2024-01-18,20903,5633,"[""Wireless Mouse"", ""Charger""]",618.86,"{""seasonal"": ""11%""}",211371,0,Africa +2024-05-04,20904,9643,"[""Phone"", ""Tablet""]",1782.96,{},114931,0,North America +2023-08-10,20905,6689,"[""Headphones"", ""Keyboard"", ""Tablet""]",2410.4,{},158582,0,Europe +2024-03-15,20906,1259,"[""Monitor"", ""Headphones""]",1942.77,"{"""": ""7%""}",286635,1,South America +2024-02-03,20907,1649,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3244.63,{},148918,1,North America +2024-12-24,20908,5424,"[""Monitor""]",4644.9,{},299540,0,North America +2023-12-28,20909,8000,"[""Phone"", ""Monitor""]",2753.66,"{""seasonal"": ""12%""}",37583,0,Africa +2024-05-23,20910,2891,"[""Keyboard"", ""Monitor"", ""Charger""]",2223.53,{},284836,1,Europe +2024-06-18,20911,3413,"[""Phone""]",2584.51,{},4634,1,North America +2023-05-24,20912,3713,"[""Charger"", ""Wireless Mouse""]",1274.4,{},225388,0,Asia +2024-05-17,20913,3724,"[""Laptop"", ""Tablet""]",3347.69,{},170837,1,Europe +2024-02-20,20914,9174,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4777.84,{},59976,0,North America +2024-02-08,20915,7004,"[""Laptop"", ""Monitor""]",3562.47,{},256395,0,Europe +2024-01-11,20916,2515,"[""Headphones"", ""Tablet"", ""Laptop""]",3330.28,{},146883,1,Africa +2023-11-28,20917,9104,"[""Tablet"", ""Laptop""]",3060.45,{},57827,0,South America +2024-09-27,20918,4433,"[""Laptop"", ""Monitor""]",4239.18,{},12516,0,South America +2023-01-24,20919,1315,"[""Tablet""]",3990.91,"{""promo"": ""10%""}",150974,1,Europe +2023-10-30,20920,1169,"[""Monitor"", ""Charger""]",624.44,{},196208,1,Europe +2023-06-17,20921,6694,"[""Tablet"", ""Laptop""]",983.66,{},174128,1,Asia +2024-01-06,20922,3438,"[""Tablet"", ""Keyboard"", ""Headphones""]",3095.82,{},120206,0,Africa +2024-08-09,20923,8963,"[""Monitor"", ""Charger""]",3402.43,{},157547,0,North America +2023-01-26,20924,8755,"[""Phone"", ""Laptop"", ""Charger""]",2644.6,{},241712,1,South America +2023-04-07,20925,5361,"[""Wireless Mouse"", ""Headphones""]",4190.84,{},267509,0,Asia +2024-10-26,20926,5023,"[""Laptop"", ""Monitor""]",1118.97,{},108905,0,Europe +2024-08-11,20927,673,"[""Keyboard""]",3546.14,"{"""": ""15%""}",49501,0,North America +2023-04-13,20928,2631,"[""Laptop"", ""Monitor"", ""Headphones""]",730.66,{},194457,0,Europe +2024-11-05,20929,1548,"[""Tablet"", ""Laptop"", ""Headphones""]",2837.66,"{""loyalty"": ""19%""}",221422,0,Africa +2024-11-21,20930,4454,"[""Headphones"", ""Tablet"", ""Phone""]",4277.56,"{""seasonal"": ""14%""}",262388,1,Asia +2023-01-17,20931,2489,"[""Charger"", ""Monitor""]",2291.99,{},74294,1,Europe +2024-10-29,20932,2208,"[""Wireless Mouse""]",68.56,{},260769,0,Europe +2024-09-29,20933,2684,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1876.39,{},253585,0,Europe +2023-08-21,20934,5510,"[""Laptop"", ""Charger"", ""Monitor""]",2658.4,{},293335,1,North America +2023-01-03,20935,4234,"[""Wireless Mouse"", ""Charger""]",4530.01,{},244797,0,South America +2024-01-12,20936,2364,"[""Headphones"", ""Charger"", ""Laptop""]",3863.72,{},164060,0,South America +2023-11-21,20937,4829,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",347.29,"{"""": ""28%""}",52138,0,Africa +2024-08-08,20938,1140,"[""Headphones"", ""Phone""]",2101.48,"{"""": ""25%""}",66740,0,North America +2024-04-27,20939,4578,"[""Charger"", ""Phone""]",1957.92,{},37652,0,South America +2023-09-04,20940,3490,"[""Keyboard"", ""Headphones""]",1933.14,{},64958,0,Africa +2024-01-25,20941,7132,"[""Laptop"", ""Monitor""]",2378.1,{},75621,0,Europe +2024-07-08,20942,9135,"[""Keyboard"", ""Laptop"", ""Charger""]",2536.33,"{""seasonal"": ""11%""}",56182,1,Asia +2024-05-23,20943,5138,"[""Headphones""]",734.52,"{""loyalty"": ""5%""}",96446,0,North America +2023-11-18,20944,1612,"[""Keyboard"", ""Phone""]",798.03,{},176316,1,Asia +2023-10-26,20945,1390,"[""Phone""]",1487.47,"{""promo"": ""29%""}",76341,0,Europe +2023-05-03,20946,8203,"[""Phone"", ""Laptop""]",3069.19,"{""promo"": ""20%""}",259600,1,Asia +2023-06-04,20947,9370,"[""Monitor"", ""Charger"", ""Laptop""]",3492.75,{},184584,1,North America +2024-04-14,20948,8697,"[""Keyboard"", ""Laptop"", ""Charger""]",4032.66,"{""loyalty"": ""6%""}",43335,0,Africa +2023-04-18,20949,3793,"[""Tablet"", ""Charger""]",2171.21,"{"""": ""19%""}",121902,0,Africa +2023-07-04,20950,5123,"[""Tablet""]",371.42,"{"""": ""19%""}",216640,1,Africa +2023-10-31,20951,3483,"[""Monitor"", ""Charger"", ""Phone""]",4874.66,"{""seasonal"": ""23%""}",183488,0,Europe +2024-10-28,20952,7777,"[""Charger""]",1291.79,"{""promo"": ""24%""}",105544,0,Asia +2023-02-17,20953,6733,"[""Headphones""]",2798.09,{},230330,0,Asia +2023-10-24,20954,3169,"[""Headphones"", ""Charger"", ""Phone""]",689.39,{},86010,1,Africa +2023-06-21,20955,2270,"[""Monitor"", ""Keyboard"", ""Charger""]",969.24,{},180290,0,South America +2023-10-07,20956,6286,"[""Charger""]",2543.36,{},208476,0,Africa +2023-01-30,20957,9189,"[""Phone"", ""Laptop""]",678.89,"{""seasonal"": ""25%""}",58352,1,South America +2023-11-21,20958,5189,"[""Charger"", ""Tablet""]",4843.78,"{""loyalty"": ""21%""}",132219,1,North America +2023-06-19,20959,9172,"[""Headphones"", ""Monitor""]",4304.22,{},282678,0,South America +2024-11-05,20960,3738,"[""Phone"", ""Headphones""]",4201.73,"{"""": ""6%""}",230455,0,Europe +2023-06-10,20961,8742,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",343.25,"{""loyalty"": ""15%""}",117041,1,Asia +2023-12-05,20962,9299,"[""Headphones"", ""Tablet"", ""Laptop""]",4383.49,"{"""": ""8%""}",129239,1,Africa +2023-02-15,20963,8786,"[""Monitor""]",502.11,"{""loyalty"": ""30%""}",17163,0,Africa +2023-02-04,20964,1323,"[""Tablet"", ""Headphones""]",427.08,{},161666,1,Europe +2024-08-13,20965,768,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4570.67,{},187478,0,Africa +2023-10-06,20966,5218,"[""Keyboard"", ""Phone""]",4288.07,"{""loyalty"": ""30%""}",131513,0,North America +2023-06-20,20967,502,"[""Monitor"", ""Laptop"", ""Tablet""]",4602.71,"{""loyalty"": ""16%""}",242287,1,Europe +2023-10-03,20968,2283,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1147.43,{},27555,0,Africa +2024-12-31,20969,1247,"[""Keyboard"", ""Laptop""]",2531.16,"{"""": ""13%""}",78541,0,Africa +2023-07-25,20970,6570,"[""Wireless Mouse""]",740.6,{},70055,0,Europe +2024-12-03,20971,7136,"[""Keyboard"", ""Wireless Mouse""]",3059.09,{},126724,0,South America +2023-02-28,20972,6432,"[""Laptop"", ""Phone""]",1768.18,"{""seasonal"": ""11%""}",268442,1,North America +2023-03-06,20973,827,"[""Laptop""]",533.11,"{"""": ""29%""}",21813,1,South America +2023-10-08,20974,2156,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3566.49,{},30809,1,South America +2024-03-19,20975,6730,"[""Wireless Mouse"", ""Charger""]",4208.03,"{""seasonal"": ""29%""}",274855,1,South America +2024-05-10,20976,4645,"[""Keyboard"", ""Charger""]",4448.41,"{""promo"": ""25%""}",118598,0,Europe +2023-11-25,20977,7910,"[""Headphones"", ""Wireless Mouse""]",4333.97,"{""promo"": ""6%""}",32788,0,North America +2023-08-16,20978,6511,"[""Keyboard""]",2957.76,{},73344,0,North America +2023-03-02,20979,6034,"[""Headphones"", ""Keyboard""]",451.51,{},139693,0,Europe +2023-04-18,20980,3276,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",762.26,"{"""": ""25%""}",101560,1,South America +2023-12-04,20981,9762,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4779.89,{},224621,1,South America +2024-07-29,20982,6299,"[""Monitor"", ""Wireless Mouse""]",73.3,{},294456,1,Africa +2024-05-02,20983,5695,"[""Wireless Mouse""]",63.57,{},76316,0,Europe +2024-12-05,20984,3045,"[""Tablet"", ""Keyboard"", ""Headphones""]",4759.43,{},153702,1,Europe +2023-05-14,20985,6489,"[""Laptop"", ""Keyboard"", ""Phone""]",4158.83,"{""seasonal"": ""16%""}",286120,0,Europe +2023-02-21,20986,3858,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3331.42,{},161155,1,Asia +2023-06-19,20987,4508,"[""Keyboard"", ""Headphones""]",4492.38,{},26293,0,Asia +2024-11-23,20988,8027,"[""Tablet"", ""Monitor"", ""Laptop""]",1904.48,{},287947,1,Europe +2023-07-15,20989,38,"[""Keyboard"", ""Monitor""]",4843.35,{},295574,0,Asia +2023-11-26,20990,1784,"[""Tablet""]",3102.26,{},128102,0,South America +2024-07-28,20991,1524,"[""Monitor"", ""Keyboard"", ""Tablet""]",1928.23,"{""loyalty"": ""15%""}",164853,1,Africa +2023-09-30,20992,9790,"[""Keyboard"", ""Charger""]",1979.98,{},140143,0,South America +2024-01-19,20993,4690,"[""Laptop""]",586.6,"{""loyalty"": ""16%""}",215302,0,Asia +2024-12-08,20994,8091,"[""Phone""]",3895.65,"{""loyalty"": ""18%""}",162516,1,South America +2023-09-17,20995,8655,"[""Headphones""]",3998.95,"{""loyalty"": ""19%""}",207585,1,Africa +2023-03-07,20996,9863,"[""Keyboard"", ""Monitor"", ""Tablet""]",362.44,"{""promo"": ""22%""}",123889,0,Asia +2024-07-05,20997,9395,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1587.48,{},258164,0,Asia +2023-05-17,20998,7298,"[""Phone"", ""Charger"", ""Tablet""]",2032.58,{},199301,0,Asia +2024-01-21,20999,7147,"[""Headphones"", ""Keyboard""]",4002.65,"{""promo"": ""5%""}",200029,1,Europe +2023-08-25,21000,3852,"[""Tablet"", ""Monitor"", ""Phone""]",3614.81,{},75106,1,South America +2024-06-29,21001,567,"[""Headphones"", ""Monitor""]",3987.39,{},201007,1,Europe +2024-04-26,21002,5024,"[""Keyboard"", ""Charger""]",569.98,{},27606,1,Asia +2023-01-19,21003,587,"[""Phone""]",2441.56,"{""loyalty"": ""9%""}",16045,0,Africa +2023-06-20,21004,8889,"[""Phone""]",1030.17,{},94844,0,Africa +2023-09-28,21005,9138,"[""Charger""]",1541.86,"{""seasonal"": ""29%""}",218321,0,Asia +2024-02-24,21006,5790,"[""Keyboard"", ""Tablet""]",2542.54,"{""promo"": ""18%""}",162938,0,South America +2024-04-06,21007,9458,"[""Monitor""]",276.62,{},244125,1,Asia +2024-05-22,21008,6922,"[""Tablet""]",848.57,{},252717,1,Asia +2024-01-13,21009,7710,"[""Laptop""]",4791.01,{},153432,0,North America +2024-08-25,21010,7919,"[""Keyboard""]",651.18,{},273789,0,Asia +2024-03-30,21011,752,"[""Monitor"", ""Laptop""]",4642.01,{},6348,0,North America +2023-10-02,21012,8771,"[""Tablet""]",1599.5,{},177612,0,North America +2023-10-13,21013,5213,"[""Headphones""]",1884.83,"{"""": ""24%""}",188507,0,Europe +2024-08-15,21014,8828,"[""Tablet"", ""Phone""]",3969.94,{},167845,1,South America +2024-03-15,21015,3989,"[""Charger""]",3106.61,"{""seasonal"": ""15%""}",73928,0,South America +2023-08-23,21016,6672,"[""Charger""]",704.87,{},10529,0,North America +2024-02-09,21017,8835,"[""Tablet"", ""Wireless Mouse""]",3684.58,{},173275,1,North America +2023-05-23,21018,5274,"[""Laptop""]",4833.09,{},153977,0,Africa +2023-04-05,21019,9765,"[""Monitor"", ""Charger"", ""Laptop""]",1049.01,"{""promo"": ""15%""}",291138,0,North America +2024-11-11,21020,2814,"[""Monitor""]",2151.0,{},232383,0,North America +2024-02-18,21021,8362,"[""Monitor"", ""Headphones""]",1071.38,{},141997,1,South America +2023-03-11,21022,8042,"[""Phone""]",3511.15,"{""seasonal"": ""27%""}",60243,1,South America +2024-09-07,21023,8409,"[""Keyboard"", ""Phone""]",1484.25,"{"""": ""29%""}",253257,1,Europe +2023-11-11,21024,1766,"[""Charger"", ""Headphones""]",3331.45,{},113091,1,South America +2023-02-04,21025,7837,"[""Tablet"", ""Monitor"", ""Phone""]",1990.25,"{""promo"": ""5%""}",281244,1,Africa +2024-03-11,21026,5974,"[""Phone""]",2037.77,{},122915,0,Africa +2024-12-05,21027,7327,"[""Tablet"", ""Laptop""]",4720.75,"{"""": ""22%""}",243979,0,Asia +2024-12-30,21028,6632,"[""Monitor"", ""Phone"", ""Tablet""]",613.13,"{"""": ""14%""}",208551,0,Europe +2023-02-18,21029,1185,"[""Headphones""]",2194.13,{},89851,1,Africa +2024-05-23,21030,5677,"[""Laptop"", ""Charger"", ""Keyboard""]",4518.41,{},133278,0,North America +2023-03-30,21031,8510,"[""Phone"", ""Headphones""]",2538.33,{},164798,0,Africa +2023-11-29,21032,1779,"[""Laptop""]",2885.5,"{"""": ""19%""}",134276,1,North America +2023-07-25,21033,8931,"[""Wireless Mouse"", ""Phone""]",3088.3,"{""seasonal"": ""9%""}",105973,0,North America +2023-04-26,21034,6883,"[""Keyboard""]",2436.03,{},20879,1,Europe +2024-02-17,21035,5775,"[""Charger"", ""Wireless Mouse""]",2647.24,{},190486,1,North America +2024-03-29,21036,7909,"[""Laptop""]",3918.12,"{""loyalty"": ""29%""}",296239,0,Africa +2024-09-14,21037,4607,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4449.11,"{"""": ""18%""}",268326,1,North America +2023-12-22,21038,6376,"[""Charger"", ""Headphones"", ""Phone""]",3194.92,{},47885,1,Africa +2024-01-27,21039,7011,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4467.47,"{""loyalty"": ""9%""}",181494,0,Africa +2023-08-05,21040,5053,"[""Wireless Mouse"", ""Monitor""]",1929.61,"{""promo"": ""10%""}",172566,1,North America +2023-04-08,21041,2969,"[""Tablet"", ""Monitor"", ""Headphones""]",450.27,"{""loyalty"": ""29%""}",93010,0,Africa +2024-05-09,21042,2138,"[""Headphones"", ""Laptop""]",327.5,{},113362,1,Africa +2024-05-22,21043,4390,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3600.17,"{""promo"": ""24%""}",258006,1,South America +2024-08-01,21044,1353,"[""Charger"", ""Keyboard""]",2014.16,{},83375,1,Asia +2024-10-28,21045,5852,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2508.16,"{""loyalty"": ""17%""}",129447,1,Europe +2024-02-10,21046,9991,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",348.16,{},18596,0,Europe +2024-04-18,21047,3616,"[""Keyboard"", ""Charger""]",2218.46,"{""loyalty"": ""17%""}",221275,0,Asia +2023-10-06,21048,516,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",217.34,{},298858,0,Africa +2023-03-15,21049,9317,"[""Headphones"", ""Wireless Mouse""]",114.78,"{""seasonal"": ""18%""}",133287,0,South America +2023-12-15,21050,6100,"[""Charger"", ""Headphones"", ""Monitor""]",3521.62,"{""seasonal"": ""23%""}",171897,1,North America +2023-05-31,21051,7821,"[""Monitor"", ""Tablet"", ""Phone""]",2365.73,{},223069,0,Asia +2024-02-08,21052,2889,"[""Laptop"", ""Monitor"", ""Charger""]",625.9,"{""seasonal"": ""22%""}",137816,0,South America +2024-04-29,21053,3595,"[""Headphones"", ""Tablet"", ""Charger""]",3132.01,{},211216,1,South America +2024-07-02,21054,7694,"[""Keyboard"", ""Phone"", ""Charger""]",1692.47,{},121993,0,Europe +2024-09-29,21055,8702,"[""Keyboard""]",4042.21,{},66096,1,North America +2024-01-03,21056,1019,"[""Monitor""]",4942.48,"{""loyalty"": ""23%""}",99661,0,North America +2024-02-12,21057,9677,"[""Wireless Mouse""]",1644.23,"{""promo"": ""15%""}",178956,1,North America +2023-05-23,21058,7092,"[""Tablet""]",2240.47,{},180364,0,Africa +2023-08-17,21059,2246,"[""Keyboard"", ""Tablet"", ""Laptop""]",300.1,{},129245,1,North America +2024-11-15,21060,4487,"[""Monitor"", ""Headphones""]",2737.86,{},31188,0,Africa +2023-02-04,21061,4229,"[""Charger"", ""Laptop""]",4906.89,{},138753,0,Asia +2023-01-03,21062,783,"[""Laptop"", ""Charger""]",2206.06,{},225083,0,Africa +2023-10-20,21063,4551,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4091.09,{},255399,0,Asia +2024-02-19,21064,9048,"[""Laptop"", ""Wireless Mouse""]",2630.88,{},256371,0,South America +2024-07-27,21065,8625,"[""Monitor"", ""Keyboard"", ""Phone""]",2541.61,{},13126,1,South America +2023-06-15,21066,2369,"[""Charger""]",1413.62,{},133418,0,North America +2024-10-29,21067,1907,"[""Charger"", ""Monitor"", ""Phone""]",4313.22,{},260870,0,South America +2023-11-10,21068,5575,"[""Tablet"", ""Monitor""]",105.93,{},10469,0,Africa +2024-11-24,21069,872,"[""Wireless Mouse"", ""Tablet""]",4355.21,{},296565,0,Asia +2024-04-18,21070,9191,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3843.34,"{""seasonal"": ""23%""}",288458,0,North America +2023-01-07,21071,4872,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2505.65,{},223108,1,North America +2024-08-03,21072,8066,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2996.98,"{""loyalty"": ""22%""}",266402,1,South America +2023-08-18,21073,7440,"[""Headphones"", ""Charger"", ""Keyboard""]",560.95,{},214276,0,South America +2024-08-03,21074,3339,"[""Keyboard"", ""Charger""]",850.35,{},150111,1,South America +2023-05-31,21075,96,"[""Tablet"", ""Phone""]",78.2,{},149588,0,North America +2024-10-03,21076,5936,"[""Charger"", ""Headphones"", ""Phone""]",215.29,{},101692,0,North America +2023-07-12,21077,151,"[""Headphones""]",3700.69,"{""promo"": ""21%""}",156537,1,Asia +2023-03-19,21078,1260,"[""Charger"", ""Monitor""]",2531.59,"{""promo"": ""16%""}",51487,1,Africa +2024-10-26,21079,412,"[""Charger"", ""Phone"", ""Keyboard""]",1869.86,"{""seasonal"": ""13%""}",79325,0,North America +2024-08-19,21080,6308,"[""Wireless Mouse"", ""Headphones""]",766.42,"{"""": ""7%""}",161682,0,Asia +2023-10-30,21081,6000,"[""Tablet"", ""Headphones"", ""Monitor""]",1152.88,"{"""": ""18%""}",34293,1,Africa +2023-10-26,21082,6475,"[""Keyboard""]",2386.14,{},187530,1,South America +2023-05-06,21083,2718,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1875.65,{},100539,0,Asia +2023-03-14,21084,1066,"[""Wireless Mouse""]",550.12,"{""promo"": ""26%""}",190797,0,Europe +2023-04-25,21085,8578,"[""Keyboard"", ""Tablet"", ""Headphones""]",707.96,"{""promo"": ""22%""}",135660,0,North America +2023-09-09,21086,9024,"[""Monitor"", ""Headphones"", ""Keyboard""]",3007.62,"{""loyalty"": ""28%""}",60977,0,Africa +2024-11-02,21087,1394,"[""Wireless Mouse"", ""Keyboard""]",379.41,"{""seasonal"": ""24%""}",171861,0,Asia +2023-07-20,21088,8872,"[""Monitor""]",3471.44,"{"""": ""25%""}",126479,1,Europe +2023-11-06,21089,7495,"[""Phone""]",2621.4,{},91581,0,North America +2024-01-23,21090,4688,"[""Wireless Mouse"", ""Phone""]",1026.12,{},145415,0,Africa +2024-08-03,21091,9533,"[""Charger"", ""Tablet""]",4763.82,{},248616,1,Asia +2023-02-05,21092,5301,"[""Tablet"", ""Headphones"", ""Charger""]",4763.21,{},209192,1,South America +2024-02-25,21093,5928,"[""Phone"", ""Headphones""]",4529.05,{},290855,0,Africa +2023-06-06,21094,9302,"[""Laptop"", ""Phone""]",570.56,{},164270,0,Africa +2024-12-14,21095,9508,"[""Tablet"", ""Charger"", ""Laptop""]",3410.28,{},277238,0,Europe +2024-05-09,21096,202,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2215.63,{},150722,0,Asia +2024-12-24,21097,8469,"[""Phone"", ""Monitor"", ""Charger""]",4887.6,"{"""": ""30%""}",108901,0,Africa +2023-12-05,21098,6807,"[""Tablet""]",1543.12,{},170235,0,South America +2024-03-29,21099,1818,"[""Wireless Mouse""]",87.36,"{""promo"": ""25%""}",127329,0,Africa +2024-12-09,21100,943,"[""Phone""]",1760.62,{},174710,0,Africa +2023-09-17,21101,5884,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",636.71,"{""loyalty"": ""19%""}",148095,1,North America +2024-06-08,21102,2437,"[""Wireless Mouse""]",3390.21,{},124931,0,Asia +2023-05-10,21103,6214,"[""Phone"", ""Monitor""]",78.39,"{""loyalty"": ""30%""}",77333,0,South America +2024-02-09,21104,182,"[""Laptop"", ""Wireless Mouse""]",487.54,{},130244,0,Asia +2024-01-24,21105,6018,"[""Charger"", ""Tablet"", ""Keyboard""]",279.1,"{"""": ""21%""}",249544,0,Africa +2023-05-09,21106,4788,"[""Monitor""]",3257.17,{},69959,1,South America +2023-05-25,21107,4330,"[""Keyboard""]",2209.54,{},241255,0,North America +2023-10-08,21108,6334,"[""Phone""]",3753.02,{},172312,0,North America +2023-11-12,21109,6061,"[""Phone"", ""Laptop""]",3779.67,{},157074,1,Africa +2024-02-20,21110,9170,"[""Monitor"", ""Phone"", ""Laptop""]",4238.58,"{""loyalty"": ""16%""}",207629,0,Asia +2023-09-26,21111,5707,"[""Tablet""]",2836.21,"{""promo"": ""24%""}",138424,1,Europe +2024-10-30,21112,4709,"[""Charger"", ""Headphones""]",1463.24,"{"""": ""12%""}",297998,0,Europe +2023-10-26,21113,6261,"[""Headphones"", ""Laptop"", ""Monitor""]",2009.2,{},57915,1,Africa +2024-11-01,21114,1568,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",445.3,{},78936,1,Africa +2023-01-08,21115,4189,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2030.93,"{""loyalty"": ""9%""}",249068,1,Africa +2023-03-23,21116,6375,"[""Keyboard"", ""Tablet"", ""Charger""]",4651.03,{},103418,1,Europe +2024-06-24,21117,5917,"[""Monitor"", ""Phone""]",2423.66,{},153376,1,South America +2024-02-22,21118,2794,"[""Keyboard"", ""Charger""]",474.99,{},156222,0,Africa +2024-07-18,21119,6259,"[""Phone""]",2502.15,{},173153,0,Africa +2024-02-23,21120,8658,"[""Phone"", ""Monitor""]",4389.28,{},209919,1,Africa +2024-10-05,21121,9310,"[""Tablet"", ""Laptop""]",2264.46,"{""promo"": ""22%""}",174387,1,Africa +2024-11-13,21122,9503,"[""Tablet"", ""Laptop"", ""Headphones""]",4602.82,"{""promo"": ""14%""}",168122,0,North America +2023-11-03,21123,9432,"[""Charger""]",3850.98,"{""seasonal"": ""7%""}",271294,1,North America +2024-07-10,21124,5268,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1411.04,{},137317,1,Europe +2023-01-08,21125,8481,"[""Keyboard"", ""Phone""]",2429.9,"{""seasonal"": ""8%""}",233671,1,North America +2023-03-24,21126,3297,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2711.18,{},58222,1,North America +2023-06-10,21127,949,"[""Laptop""]",54.29,"{""loyalty"": ""13%""}",107891,0,Europe +2024-01-09,21128,3589,"[""Laptop"", ""Monitor""]",2218.46,"{"""": ""21%""}",196467,1,Africa +2024-07-08,21129,537,"[""Phone"", ""Keyboard""]",3575.9,"{"""": ""28%""}",147635,0,Africa +2023-02-09,21130,9293,"[""Tablet"", ""Keyboard""]",1893.11,{},255782,0,Asia +2024-03-24,21131,1914,"[""Monitor""]",3740.07,{},174081,1,Africa +2024-03-10,21132,5171,"[""Charger""]",2541.03,{},140108,0,North America +2024-08-01,21133,3329,"[""Headphones"", ""Monitor""]",4629.1,"{""loyalty"": ""15%""}",144308,0,North America +2024-10-22,21134,6599,"[""Keyboard"", ""Wireless Mouse""]",190.58,{},137837,1,North America +2024-09-22,21135,5811,"[""Laptop""]",3960.74,"{""loyalty"": ""25%""}",296793,1,South America +2023-12-13,21136,8032,"[""Charger"", ""Monitor"", ""Laptop""]",65.4,{},6048,0,Europe +2023-09-07,21137,2247,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",485.85,"{""seasonal"": ""19%""}",85502,0,Africa +2024-08-21,21138,365,"[""Keyboard"", ""Tablet""]",1223.23,{},219395,0,South America +2023-08-03,21139,4227,"[""Charger"", ""Phone""]",470.19,"{""loyalty"": ""22%""}",61221,1,Asia +2024-06-02,21140,9287,"[""Charger""]",4127.14,"{""loyalty"": ""15%""}",253057,0,North America +2024-04-09,21141,2864,"[""Tablet""]",3138.69,{},128348,0,Europe +2024-11-29,21142,6050,"[""Wireless Mouse""]",1941.3,"{""loyalty"": ""20%""}",108846,0,Africa +2023-10-03,21143,6901,"[""Monitor"", ""Headphones""]",2926.45,"{""promo"": ""14%""}",129507,0,Europe +2023-02-04,21144,5340,"[""Charger"", ""Keyboard"", ""Phone""]",3121.92,"{""loyalty"": ""5%""}",188588,0,South America +2024-12-30,21145,8972,"[""Laptop""]",4170.44,"{""loyalty"": ""28%""}",208783,1,North America +2024-07-14,21146,1263,"[""Charger"", ""Keyboard"", ""Headphones""]",4689.47,"{""loyalty"": ""22%""}",261006,1,South America +2024-07-15,21147,4185,"[""Laptop""]",3574.66,"{""promo"": ""22%""}",64333,0,Asia +2023-09-29,21148,7090,"[""Charger"", ""Phone""]",3503.65,"{"""": ""16%""}",117803,1,Asia +2023-01-28,21149,1426,"[""Headphones"", ""Monitor""]",3843.36,"{""seasonal"": ""16%""}",226775,1,Europe +2023-02-03,21150,6935,"[""Headphones""]",4753.33,{},289260,1,Africa +2024-09-13,21151,4813,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2014.57,{},166479,1,Africa +2024-01-11,21152,9062,"[""Phone""]",3814.96,"{"""": ""18%""}",135502,0,Asia +2024-01-19,21153,3416,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4438.73,"{""loyalty"": ""23%""}",5279,1,North America +2024-04-13,21154,540,"[""Keyboard"", ""Charger"", ""Laptop""]",3848.62,{},106979,0,Asia +2023-10-21,21155,5090,"[""Tablet"", ""Charger""]",2783.35,{},37239,0,Africa +2023-07-28,21156,6088,"[""Laptop"", ""Tablet"", ""Keyboard""]",1347.08,"{""seasonal"": ""28%""}",173967,1,Europe +2024-11-13,21157,3294,"[""Tablet"", ""Laptop""]",4619.27,"{""seasonal"": ""18%""}",259989,0,Africa +2023-08-19,21158,8066,"[""Laptop"", ""Keyboard"", ""Headphones""]",4598.69,"{""seasonal"": ""6%""}",207282,1,Europe +2024-12-12,21159,7718,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4276.22,"{"""": ""15%""}",27556,0,Asia +2023-08-14,21160,9823,"[""Tablet"", ""Laptop""]",529.97,{},185776,0,Asia +2023-11-18,21161,7970,"[""Wireless Mouse""]",4433.08,{},262639,0,Asia +2023-09-17,21162,6982,"[""Tablet"", ""Wireless Mouse""]",3930.41,"{""promo"": ""18%""}",135288,1,South America +2023-03-15,21163,2946,"[""Tablet""]",3318.66,"{""promo"": ""23%""}",258969,0,Africa +2024-02-15,21164,506,"[""Tablet""]",266.56,{},29190,1,South America +2023-08-28,21165,9739,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4129.95,"{"""": ""6%""}",116281,1,Europe +2023-02-13,21166,1786,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2518.58,"{""loyalty"": ""29%""}",156349,0,Africa +2023-05-19,21167,1064,"[""Monitor""]",1892.88,"{""seasonal"": ""26%""}",293258,1,Africa +2023-01-09,21168,7895,"[""Monitor"", ""Headphones"", ""Charger""]",1962.12,{},261213,0,Asia +2024-09-19,21169,4697,"[""Headphones"", ""Laptop"", ""Tablet""]",2980.54,{},143600,1,Europe +2024-05-08,21170,2351,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",413.58,{},279698,0,South America +2024-05-12,21171,5965,"[""Monitor"", ""Wireless Mouse""]",3769.85,"{""seasonal"": ""19%""}",130301,0,Europe +2024-09-30,21172,7060,"[""Phone"", ""Laptop""]",1068.13,{},74498,0,Europe +2023-06-16,21173,7011,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",107.77,{},224462,1,South America +2023-05-19,21174,3340,"[""Keyboard"", ""Charger""]",3250.69,{},93296,1,North America +2023-04-07,21175,4749,"[""Wireless Mouse"", ""Charger"", ""Phone""]",735.98,"{"""": ""29%""}",17074,1,Europe +2023-01-20,21176,6294,"[""Tablet""]",4465.63,{},28243,0,Europe +2024-08-25,21177,7281,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",553.77,"{""loyalty"": ""18%""}",127807,0,Asia +2023-11-18,21178,6414,"[""Laptop"", ""Wireless Mouse""]",2002.56,{},40014,1,North America +2024-04-23,21179,1709,"[""Phone"", ""Monitor"", ""Headphones""]",4581.67,{},188061,1,Europe +2023-07-12,21180,7630,"[""Phone""]",1969.86,{},61095,1,Europe +2023-09-16,21181,5570,"[""Wireless Mouse""]",4879.0,{},86257,0,South America +2024-04-21,21182,5683,"[""Wireless Mouse"", ""Tablet""]",2984.38,"{""loyalty"": ""30%""}",152502,0,South America +2024-07-14,21183,2059,"[""Headphones"", ""Keyboard""]",2325.15,"{""seasonal"": ""16%""}",70831,1,Africa +2024-05-30,21184,532,"[""Laptop"", ""Charger""]",4704.91,"{""seasonal"": ""30%""}",259228,1,Africa +2024-06-10,21185,5985,"[""Laptop"", ""Headphones""]",4484.41,"{""promo"": ""14%""}",111886,1,Asia +2024-06-19,21186,7771,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3147.02,{},143245,1,Asia +2023-06-05,21187,5530,"[""Headphones"", ""Keyboard"", ""Monitor""]",408.19,{},136745,1,South America +2023-06-29,21188,1219,"[""Headphones"", ""Wireless Mouse""]",2004.6,"{""promo"": ""24%""}",6844,1,South America +2023-03-29,21189,1528,"[""Monitor"", ""Wireless Mouse""]",3623.52,"{"""": ""30%""}",32957,0,Asia +2023-10-27,21190,2648,"[""Laptop""]",954.45,"{""loyalty"": ""11%""}",150351,0,Europe +2024-08-29,21191,8675,"[""Phone"", ""Keyboard""]",3792.24,"{""promo"": ""29%""}",147593,1,South America +2023-11-12,21192,8327,"[""Monitor"", ""Keyboard"", ""Headphones""]",3315.96,"{"""": ""8%""}",202436,1,Asia +2023-08-25,21193,7229,"[""Tablet"", ""Phone""]",3448.24,{},234326,1,South America +2023-10-18,21194,4902,"[""Tablet"", ""Keyboard""]",4671.23,"{""loyalty"": ""12%""}",102492,0,Asia +2023-09-04,21195,293,"[""Tablet"", ""Charger""]",3859.29,{},293618,0,North America +2023-04-27,21196,8470,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3245.85,{},258015,1,North America +2024-11-29,21197,8728,"[""Wireless Mouse""]",350.22,"{""loyalty"": ""19%""}",37195,1,Africa +2024-01-02,21198,6226,"[""Charger"", ""Keyboard""]",1155.92,"{""loyalty"": ""23%""}",144551,0,Europe +2023-01-04,21199,5007,"[""Phone"", ""Wireless Mouse""]",4548.65,"{""loyalty"": ""12%""}",40473,0,South America +2024-09-08,21200,4674,"[""Laptop""]",2675.44,"{""promo"": ""18%""}",208724,1,Europe +2023-06-11,21201,9589,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2747.04,{},168520,0,Africa +2024-08-24,21202,2057,"[""Charger""]",4960.61,"{""loyalty"": ""30%""}",76528,0,Africa +2023-08-01,21203,1269,"[""Monitor"", ""Phone"", ""Keyboard""]",4024.19,"{""promo"": ""16%""}",47653,1,Europe +2024-10-11,21204,9981,"[""Phone""]",2803.87,{},131001,1,Europe +2023-03-01,21205,6513,"[""Monitor"", ""Wireless Mouse""]",4934.63,"{""loyalty"": ""23%""}",63210,0,Africa +2024-09-18,21206,6244,"[""Tablet"", ""Laptop"", ""Charger""]",143.45,"{""loyalty"": ""13%""}",89537,1,Asia +2023-07-26,21207,9677,"[""Phone"", ""Keyboard""]",3581.83,"{""loyalty"": ""28%""}",171220,1,Europe +2023-05-15,21208,8224,"[""Wireless Mouse"", ""Phone""]",1194.67,"{""loyalty"": ""24%""}",214013,0,Africa +2023-05-05,21209,9644,"[""Charger"", ""Keyboard""]",4737.89,{},252389,0,Africa +2024-05-01,21210,9359,"[""Wireless Mouse""]",770.28,{},166488,1,Asia +2023-08-03,21211,1827,"[""Laptop""]",4744.67,"{"""": ""20%""}",40308,1,Africa +2024-06-25,21212,3839,"[""Headphones"", ""Keyboard""]",497.95,"{""promo"": ""18%""}",139116,1,Europe +2023-10-23,21213,7195,"[""Charger"", ""Keyboard"", ""Phone""]",4570.08,"{""promo"": ""24%""}",95856,0,North America +2023-08-05,21214,3714,"[""Wireless Mouse""]",888.1,"{""promo"": ""27%""}",290860,0,Europe +2023-09-14,21215,4689,"[""Phone"", ""Charger""]",2545.16,{},277720,1,Africa +2023-04-01,21216,9816,"[""Keyboard"", ""Headphones"", ""Phone""]",2576.68,"{""loyalty"": ""8%""}",286179,1,Asia +2023-05-25,21217,9784,"[""Headphones""]",618.95,{},268200,0,South America +2024-10-21,21218,1340,"[""Phone"", ""Tablet""]",1232.14,{},120557,1,Asia +2024-05-12,21219,506,"[""Keyboard"", ""Wireless Mouse""]",4038.4,"{"""": ""24%""}",169617,0,Asia +2023-04-08,21220,4324,"[""Tablet""]",2137.84,"{""seasonal"": ""25%""}",85241,0,North America +2023-12-21,21221,4203,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4995.45,{},105284,1,Africa +2024-06-29,21222,9434,"[""Charger"", ""Wireless Mouse""]",1165.36,"{""loyalty"": ""30%""}",236733,1,South America +2023-03-23,21223,9521,"[""Phone"", ""Headphones""]",917.25,{},150679,1,South America +2024-04-28,21224,9047,"[""Headphones""]",2365.35,{},167368,0,Europe +2023-03-18,21225,2915,"[""Wireless Mouse""]",2033.72,"{""promo"": ""10%""}",59573,0,Africa +2023-05-23,21226,4261,"[""Wireless Mouse"", ""Tablet""]",2022.25,"{""seasonal"": ""13%""}",228521,0,Africa +2023-12-10,21227,3518,"[""Monitor"", ""Charger"", ""Headphones""]",4448.53,"{""seasonal"": ""21%""}",240628,0,North America +2024-06-21,21228,918,"[""Keyboard"", ""Tablet""]",3977.42,{},193868,0,Asia +2023-12-13,21229,6644,"[""Phone""]",3520.34,"{"""": ""8%""}",7287,0,Asia +2024-08-09,21230,1221,"[""Charger"", ""Phone"", ""Tablet""]",445.46,{},136314,1,Africa +2024-04-25,21231,5024,"[""Laptop""]",2706.3,{},107607,1,Africa +2023-12-18,21232,4421,"[""Monitor"", ""Charger""]",2426.4,"{""seasonal"": ""19%""}",115566,0,South America +2024-12-17,21233,9453,"[""Laptop"", ""Headphones""]",1171.52,"{"""": ""24%""}",269784,0,South America +2023-05-22,21234,6673,"[""Charger"", ""Headphones""]",1983.82,"{""seasonal"": ""26%""}",49054,0,South America +2023-06-09,21235,3791,"[""Keyboard"", ""Laptop""]",4930.59,"{"""": ""23%""}",227990,1,Africa +2024-07-21,21236,3400,"[""Phone"", ""Headphones""]",1517.67,{},195847,1,South America +2024-06-10,21237,8870,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1586.6,"{"""": ""12%""}",91918,1,North America +2023-11-23,21238,871,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3652.92,"{""promo"": ""9%""}",68726,0,North America +2024-06-13,21239,7649,"[""Monitor"", ""Keyboard"", ""Headphones""]",78.63,"{""seasonal"": ""24%""}",112638,1,Europe +2023-03-08,21240,2418,"[""Tablet"", ""Headphones""]",2016.38,{},104560,1,Asia +2023-09-02,21241,3431,"[""Tablet"", ""Phone"", ""Monitor""]",3568.96,"{"""": ""8%""}",95104,1,Europe +2023-03-25,21242,1384,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3814.02,"{""loyalty"": ""30%""}",166920,1,Europe +2024-12-25,21243,6289,"[""Laptop"", ""Wireless Mouse""]",1960.5,"{"""": ""25%""}",193978,1,Asia +2024-09-29,21244,1961,"[""Wireless Mouse""]",1975.77,"{""promo"": ""18%""}",126745,0,Asia +2023-05-07,21245,599,"[""Tablet""]",4556.57,{},167839,0,Europe +2024-03-08,21246,7525,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1049.4,{},22381,1,Europe +2024-04-24,21247,6737,"[""Headphones""]",1666.9,{},271946,1,South America +2023-03-11,21248,1573,"[""Keyboard""]",2112.43,{},200408,1,North America +2024-07-01,21249,3100,"[""Tablet"", ""Phone""]",4700.0,{},131156,0,Africa +2024-02-16,21250,5180,"[""Phone"", ""Monitor"", ""Laptop""]",858.89,"{""promo"": ""27%""}",113410,0,North America +2023-01-17,21251,8811,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4446.87,{},189503,1,Asia +2023-03-03,21252,7259,"[""Wireless Mouse"", ""Laptop""]",1969.33,"{""seasonal"": ""6%""}",41166,0,South America +2024-02-08,21253,2430,"[""Keyboard"", ""Monitor"", ""Phone""]",3199.01,"{""promo"": ""7%""}",238254,0,Africa +2024-03-14,21254,2795,"[""Keyboard"", ""Laptop""]",3602.56,"{""loyalty"": ""30%""}",288598,1,Africa +2023-02-03,21255,837,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1017.73,{},166035,1,Asia +2024-10-23,21256,2786,"[""Charger"", ""Tablet"", ""Keyboard""]",4455.84,"{""seasonal"": ""21%""}",278215,1,Asia +2023-08-29,21257,2479,"[""Tablet"", ""Monitor""]",3758.21,{},47878,1,North America +2024-08-21,21258,701,"[""Wireless Mouse""]",1712.74,{},287736,0,North America +2023-08-15,21259,5781,"[""Phone""]",4117.5,{},77579,1,South America +2024-06-11,21260,8027,"[""Charger"", ""Headphones"", ""Laptop""]",101.38,"{""promo"": ""23%""}",161977,0,Europe +2024-02-03,21261,3666,"[""Charger""]",212.96,"{""loyalty"": ""17%""}",46258,1,Europe +2023-10-19,21262,4527,"[""Charger"", ""Monitor"", ""Headphones""]",2164.9,"{""promo"": ""22%""}",78236,1,Asia +2024-02-14,21263,5406,"[""Laptop"", ""Tablet"", ""Phone""]",1654.17,{},184764,0,Europe +2024-04-22,21264,9232,"[""Laptop""]",1561.58,{},13453,0,North America +2024-12-23,21265,9779,"[""Headphones"", ""Phone"", ""Keyboard""]",3133.73,"{""seasonal"": ""29%""}",180898,1,South America +2024-10-11,21266,4729,"[""Monitor"", ""Charger""]",4326.58,{},76917,0,Europe +2023-05-06,21267,3211,"[""Keyboard""]",1577.54,"{""seasonal"": ""29%""}",63647,0,Africa +2024-02-28,21268,8504,"[""Keyboard"", ""Laptop"", ""Charger""]",351.92,{},197560,1,North America +2024-10-06,21269,8762,"[""Monitor"", ""Charger"", ""Keyboard""]",1920.55,"{"""": ""8%""}",295072,0,Europe +2024-04-27,21270,2078,"[""Monitor"", ""Keyboard""]",3263.07,"{"""": ""16%""}",152855,0,North America +2024-09-06,21271,8744,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3188.43,"{""loyalty"": ""17%""}",113111,1,Europe +2023-11-10,21272,8983,"[""Headphones""]",539.41,{},225549,1,North America +2023-09-30,21273,9954,"[""Monitor"", ""Wireless Mouse""]",679.64,{},79060,1,South America +2023-01-25,21274,149,"[""Wireless Mouse""]",4747.1,"{""loyalty"": ""15%""}",82933,0,North America +2023-01-05,21275,8574,"[""Laptop""]",4902.61,"{"""": ""9%""}",138350,0,North America +2024-08-23,21276,3674,"[""Charger""]",4060.76,"{""seasonal"": ""22%""}",243590,0,North America +2024-03-30,21277,9277,"[""Wireless Mouse"", ""Tablet""]",4142.56,"{""seasonal"": ""14%""}",230878,0,Africa +2024-10-19,21278,8878,"[""Monitor"", ""Tablet"", ""Keyboard""]",3363.72,"{""seasonal"": ""18%""}",273226,0,Africa +2023-03-30,21279,9475,"[""Headphones""]",1958.64,{},269667,0,Europe +2024-07-29,21280,968,"[""Headphones""]",949.06,"{""seasonal"": ""12%""}",200898,1,Asia +2023-05-31,21281,1407,"[""Phone"", ""Charger"", ""Headphones""]",2115.42,"{""loyalty"": ""6%""}",95232,1,South America +2024-06-27,21282,2518,"[""Tablet"", ""Laptop""]",2519.33,{},255305,1,South America +2023-05-06,21283,9105,"[""Laptop"", ""Monitor"", ""Headphones""]",213.43,"{""seasonal"": ""11%""}",197983,1,South America +2023-02-03,21284,9052,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",561.7,"{"""": ""12%""}",146750,0,North America +2024-12-17,21285,2944,"[""Laptop""]",1449.43,{},240774,0,Africa +2023-04-17,21286,5763,"[""Laptop""]",949.65,"{""promo"": ""12%""}",113177,1,North America +2024-06-22,21287,3068,"[""Tablet""]",2331.43,"{""seasonal"": ""19%""}",232888,1,Asia +2024-02-14,21288,2060,"[""Charger"", ""Headphones"", ""Monitor""]",2731.54,{},134945,0,South America +2023-01-07,21289,8363,"[""Monitor"", ""Tablet""]",1850.16,{},62639,0,South America +2024-02-05,21290,7950,"[""Tablet"", ""Charger""]",179.07,"{""seasonal"": ""23%""}",22467,0,Africa +2023-05-28,21291,5080,"[""Headphones""]",4974.4,"{""seasonal"": ""5%""}",192794,1,Asia +2023-06-16,21292,6082,"[""Tablet"", ""Charger""]",3496.0,{},120249,1,South America +2024-11-03,21293,6627,"[""Keyboard"", ""Charger"", ""Laptop""]",1907.16,{},248869,1,Africa +2023-04-17,21294,4615,"[""Laptop""]",1763.33,{},75160,0,Europe +2024-04-16,21295,5090,"[""Headphones"", ""Tablet""]",4249.99,{},196344,1,Europe +2023-04-26,21296,6852,"[""Phone""]",4201.52,"{""promo"": ""24%""}",96057,0,North America +2023-08-18,21297,7464,"[""Headphones""]",2951.69,{},95365,0,South America +2024-08-12,21298,2367,"[""Keyboard"", ""Charger"", ""Laptop""]",3054.43,"{""promo"": ""14%""}",264791,1,South America +2024-05-25,21299,2054,"[""Headphones"", ""Laptop""]",1452.33,{},195803,0,North America +2023-02-07,21300,5519,"[""Keyboard"", ""Tablet""]",2665.6,{},67295,1,North America +2023-03-14,21301,3179,"[""Phone""]",141.95,{},286513,0,Europe +2023-01-15,21302,2291,"[""Tablet"", ""Charger"", ""Phone""]",1411.22,{},245098,0,North America +2024-05-03,21303,7549,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1700.3,"{""promo"": ""30%""}",285566,0,Asia +2024-11-11,21304,2494,"[""Phone""]",1520.04,{},93193,0,South America +2023-09-13,21305,7713,"[""Wireless Mouse""]",469.1,"{"""": ""13%""}",171986,1,Africa +2023-05-22,21306,1073,"[""Phone"", ""Wireless Mouse""]",1377.96,"{"""": ""6%""}",267029,1,North America +2024-12-15,21307,5144,"[""Tablet""]",4142.7,{},238076,0,Africa +2024-02-06,21308,1235,"[""Tablet"", ""Keyboard""]",2116.91,{},237792,1,Europe +2023-04-08,21309,9999,"[""Keyboard"", ""Phone""]",1784.87,"{""loyalty"": ""21%""}",126686,1,Africa +2023-08-05,21310,4794,"[""Wireless Mouse"", ""Charger""]",4808.83,{},229467,0,South America +2023-03-02,21311,8477,"[""Laptop"", ""Phone""]",1499.08,"{"""": ""18%""}",291877,1,Europe +2023-06-11,21312,2090,"[""Monitor""]",1071.03,{},173215,0,Asia +2023-12-16,21313,6926,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4380.16,"{""promo"": ""6%""}",283306,1,Asia +2024-05-23,21314,3691,"[""Headphones""]",3421.0,"{""promo"": ""21%""}",8807,1,Africa +2024-09-19,21315,8572,"[""Laptop"", ""Monitor"", ""Phone""]",2781.43,"{""loyalty"": ""19%""}",40677,1,South America +2023-01-29,21316,7372,"[""Keyboard"", ""Laptop""]",4427.76,"{"""": ""13%""}",127316,1,North America +2023-12-13,21317,4057,"[""Monitor"", ""Phone""]",659.55,{},46190,1,North America +2023-12-23,21318,4107,"[""Tablet"", ""Headphones"", ""Monitor""]",2643.81,{},281020,1,Africa +2023-03-14,21319,1686,"[""Headphones"", ""Laptop""]",522.67,{},72269,0,Africa +2023-12-20,21320,9642,"[""Headphones"", ""Tablet"", ""Monitor""]",2755.02,{},273133,0,Africa +2024-05-02,21321,9655,"[""Headphones"", ""Laptop"", ""Charger""]",1243.79,{},227942,1,South America +2024-01-07,21322,6971,"[""Tablet"", ""Laptop"", ""Keyboard""]",2813.55,"{""promo"": ""11%""}",255000,1,North America +2023-04-13,21323,9283,"[""Monitor""]",2540.61,"{""seasonal"": ""17%""}",122048,1,Asia +2024-07-07,21324,4892,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1996.95,{},76768,0,South America +2023-12-17,21325,2576,"[""Laptop""]",1827.6,"{""promo"": ""7%""}",180392,0,Africa +2024-02-14,21326,9823,"[""Monitor"", ""Charger""]",2217.1,"{""loyalty"": ""7%""}",204803,1,Europe +2024-04-30,21327,3292,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4134.87,{},183458,1,North America +2023-06-29,21328,6924,"[""Tablet""]",4716.37,"{""loyalty"": ""20%""}",49374,0,South America +2023-06-29,21329,7348,"[""Wireless Mouse""]",2862.18,{},186952,0,South America +2024-12-23,21330,2510,"[""Tablet"", ""Keyboard"", ""Charger""]",1626.71,"{""loyalty"": ""22%""}",80347,1,South America +2023-11-05,21331,6717,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",149.15,{},142003,0,Europe +2023-02-03,21332,5937,"[""Monitor"", ""Tablet""]",280.75,{},229243,0,Asia +2024-09-16,21333,9444,"[""Tablet"", ""Keyboard""]",813.66,"{""loyalty"": ""23%""}",194616,0,Asia +2023-01-22,21334,7698,"[""Headphones"", ""Charger""]",905.19,{},276249,1,Africa +2024-01-09,21335,8862,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",286.86,{},100643,0,Africa +2023-03-07,21336,8646,"[""Tablet"", ""Monitor"", ""Keyboard""]",4893.61,{},221318,1,Africa +2024-05-05,21337,951,"[""Headphones"", ""Tablet""]",727.05,"{""promo"": ""11%""}",39357,0,North America +2024-06-28,21338,9011,"[""Phone"", ""Headphones""]",913.64,{},19926,1,Europe +2023-11-20,21339,7752,"[""Tablet""]",1590.22,"{""loyalty"": ""25%""}",207539,1,Asia +2023-08-05,21340,3756,"[""Tablet"", ""Laptop""]",1945.11,{},182080,1,Asia +2024-11-03,21341,9052,"[""Monitor"", ""Wireless Mouse""]",1541.02,"{""seasonal"": ""12%""}",251859,1,Europe +2023-12-30,21342,8943,"[""Tablet"", ""Keyboard""]",3176.38,"{""loyalty"": ""20%""}",68428,1,South America +2024-01-30,21343,5259,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",911.58,"{"""": ""11%""}",192174,0,Africa +2024-11-03,21344,5094,"[""Wireless Mouse"", ""Keyboard""]",1001.09,"{"""": ""28%""}",279854,0,North America +2024-07-07,21345,7544,"[""Monitor""]",4518.73,{},231908,0,Africa +2024-08-06,21346,1210,"[""Monitor"", ""Laptop""]",467.49,{},164962,1,North America +2024-10-17,21347,6592,"[""Tablet"", ""Laptop""]",3024.96,{},85859,0,Africa +2023-09-13,21348,8090,"[""Phone""]",4571.88,"{""loyalty"": ""17%""}",180389,1,Europe +2023-04-06,21349,3404,"[""Keyboard"", ""Laptop""]",2464.4,{},224426,1,North America +2023-01-17,21350,5742,"[""Headphones"", ""Laptop"", ""Monitor""]",2926.12,"{""loyalty"": ""15%""}",34108,0,Africa +2023-09-18,21351,9950,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2681.27,{},74612,0,Europe +2023-08-20,21352,1748,"[""Keyboard""]",1747.92,"{""loyalty"": ""19%""}",280964,1,Africa +2024-05-22,21353,6115,"[""Tablet""]",923.81,{},88036,0,Africa +2024-04-30,21354,1486,"[""Headphones"", ""Tablet""]",2763.65,{},267036,1,Asia +2024-06-01,21355,7873,"[""Phone"", ""Charger""]",3688.62,"{""promo"": ""25%""}",297955,0,North America +2024-10-19,21356,7354,"[""Headphones"", ""Keyboard"", ""Laptop""]",1771.5,"{""seasonal"": ""5%""}",219830,1,North America +2023-01-19,21357,8572,"[""Tablet""]",3969.92,{},27756,1,Asia +2023-04-21,21358,1867,"[""Wireless Mouse"", ""Laptop""]",2071.14,"{""promo"": ""21%""}",54888,1,South America +2024-11-28,21359,1010,"[""Headphones"", ""Phone""]",2246.53,"{""loyalty"": ""16%""}",263275,1,Asia +2023-02-22,21360,8103,"[""Keyboard""]",4132.46,{},148313,1,Africa +2024-02-20,21361,5905,"[""Phone"", ""Monitor""]",2389.37,{},4549,1,Africa +2024-04-24,21362,9469,"[""Tablet"", ""Keyboard""]",1489.87,"{""loyalty"": ""20%""}",199913,1,Africa +2024-03-27,21363,8049,"[""Charger"", ""Keyboard""]",1674.16,"{""promo"": ""20%""}",201637,1,Asia +2024-03-04,21364,1032,"[""Wireless Mouse"", ""Charger""]",2981.51,{},274716,1,Europe +2024-06-09,21365,4957,"[""Phone"", ""Tablet""]",4018.88,"{""loyalty"": ""30%""}",122569,0,North America +2023-01-22,21366,7920,"[""Tablet"", ""Headphones"", ""Phone""]",2040.46,"{"""": ""9%""}",163482,0,Asia +2024-03-15,21367,8316,"[""Charger""]",1156.22,{},238362,1,Africa +2024-11-06,21368,866,"[""Charger""]",3621.31,"{""seasonal"": ""10%""}",271093,1,Africa +2023-10-22,21369,2327,"[""Tablet"", ""Phone""]",841.16,{},268907,1,Africa +2023-01-21,21370,1589,"[""Phone"", ""Keyboard""]",4456.47,{},291962,0,Africa +2024-01-08,21371,9382,"[""Headphones"", ""Charger""]",4439.88,"{""promo"": ""5%""}",218315,0,North America +2024-10-19,21372,4016,"[""Monitor"", ""Laptop""]",3052.54,{},9733,0,North America +2023-09-17,21373,7522,"[""Laptop""]",3269.87,"{""loyalty"": ""7%""}",201581,1,North America +2023-10-27,21374,1897,"[""Wireless Mouse"", ""Headphones""]",114.52,"{"""": ""29%""}",136625,1,Europe +2024-09-02,21375,1414,"[""Phone"", ""Charger"", ""Tablet""]",4323.74,"{""promo"": ""25%""}",66381,1,South America +2023-08-29,21376,4945,"[""Laptop"", ""Phone"", ""Charger""]",212.97,"{""seasonal"": ""19%""}",248408,1,Asia +2024-11-22,21377,7862,"[""Keyboard""]",3305.51,"{"""": ""5%""}",205402,1,North America +2024-08-21,21378,6866,"[""Phone"", ""Wireless Mouse""]",207.47,"{""promo"": ""21%""}",58344,0,Asia +2024-10-23,21379,921,"[""Monitor"", ""Headphones""]",1154.83,{},299966,0,Europe +2024-03-12,21380,9129,"[""Tablet""]",3460.58,{},287888,1,North America +2023-09-26,21381,6669,"[""Keyboard""]",4247.16,{},153594,1,Africa +2023-12-30,21382,4145,"[""Charger"", ""Wireless Mouse""]",1198.8,{},225762,0,North America +2024-08-09,21383,2204,"[""Charger"", ""Keyboard""]",1203.96,"{""promo"": ""17%""}",137294,1,Asia +2024-05-09,21384,9620,"[""Wireless Mouse"", ""Laptop""]",301.71,{},217162,1,Asia +2024-12-16,21385,8631,"[""Laptop""]",2158.8,{},146436,1,Asia +2024-10-05,21386,3621,"[""Headphones""]",3507.96,{},59961,1,North America +2024-02-19,21387,6642,"[""Tablet"", ""Headphones"", ""Phone""]",1256.88,"{""seasonal"": ""11%""}",3917,1,Africa +2023-01-15,21388,5877,"[""Headphones"", ""Keyboard""]",1372.4,{},227852,0,Europe +2024-05-10,21389,3971,"[""Headphones""]",381.3,{},88817,0,Asia +2023-09-05,21390,5782,"[""Phone"", ""Keyboard"", ""Headphones""]",877.87,"{"""": ""24%""}",11396,0,South America +2024-06-10,21391,4909,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2557.59,"{""loyalty"": ""20%""}",92334,0,Asia +2024-09-13,21392,2347,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1248.31,{},295441,0,North America +2024-11-11,21393,4721,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4313.83,{},276896,1,Asia +2024-02-14,21394,8616,"[""Phone""]",2683.6,"{""loyalty"": ""27%""}",181767,1,South America +2024-01-10,21395,1501,"[""Wireless Mouse""]",4564.18,"{""promo"": ""15%""}",83635,1,Africa +2024-06-22,21396,816,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3062.34,{},280079,1,Europe +2024-12-12,21397,2285,"[""Charger""]",2310.15,"{""promo"": ""18%""}",98654,0,Africa +2024-04-11,21398,8833,"[""Wireless Mouse""]",3166.8,{},156825,0,South America +2023-07-30,21399,8363,"[""Phone"", ""Headphones""]",1594.11,"{""loyalty"": ""8%""}",279607,1,North America +2024-03-01,21400,1511,"[""Laptop"", ""Wireless Mouse""]",1237.9,{},249987,1,Europe +2024-06-17,21401,5275,"[""Laptop"", ""Charger"", ""Keyboard""]",1002.84,{},166880,0,Africa +2024-05-15,21402,3103,"[""Tablet"", ""Monitor"", ""Charger""]",3247.07,{},21559,1,Africa +2024-05-22,21403,2207,"[""Wireless Mouse"", ""Tablet""]",4866.83,"{""seasonal"": ""19%""}",293360,0,Asia +2023-04-23,21404,1484,"[""Charger"", ""Keyboard""]",4904.13,{},53651,0,Asia +2024-07-31,21405,7179,"[""Charger"", ""Phone""]",1332.84,"{""loyalty"": ""10%""}",290520,0,Asia +2024-12-09,21406,3245,"[""Phone"", ""Headphones""]",2337.1,"{""loyalty"": ""22%""}",271817,0,South America +2023-12-27,21407,204,"[""Phone"", ""Keyboard""]",536.8,"{""loyalty"": ""12%""}",147017,0,North America +2024-06-11,21408,8429,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4715.51,{},64347,1,South America +2023-06-03,21409,6519,"[""Charger""]",2827.2,"{""promo"": ""22%""}",22887,1,Africa +2023-10-19,21410,8948,"[""Headphones""]",511.72,{},222655,1,North America +2023-09-03,21411,8959,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3304.79,"{""seasonal"": ""14%""}",141621,1,Europe +2023-06-15,21412,5698,"[""Tablet""]",3350.28,"{""seasonal"": ""25%""}",193174,0,North America +2023-04-26,21413,5574,"[""Keyboard""]",2386.88,"{""loyalty"": ""25%""}",77395,1,Africa +2024-04-30,21414,4427,"[""Monitor"", ""Wireless Mouse""]",3329.2,"{""promo"": ""26%""}",221094,1,Europe +2023-10-16,21415,3469,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",778.17,{},214220,1,South America +2024-12-14,21416,6002,"[""Keyboard"", ""Wireless Mouse""]",305.56,"{""loyalty"": ""9%""}",161183,1,Asia +2023-08-06,21417,7672,"[""Laptop""]",504.91,"{""loyalty"": ""26%""}",249936,1,North America +2024-01-12,21418,6090,"[""Charger"", ""Phone""]",3929.83,{},180002,1,South America +2024-11-11,21419,1158,"[""Charger""]",1699.85,"{""promo"": ""7%""}",71000,0,Europe +2023-09-07,21420,4572,"[""Headphones"", ""Phone"", ""Tablet""]",3508.92,{},98373,0,Europe +2023-11-26,21421,8956,"[""Charger"", ""Laptop"", ""Headphones""]",1897.46,"{""seasonal"": ""18%""}",8676,0,Africa +2024-05-21,21422,970,"[""Monitor"", ""Tablet"", ""Headphones""]",4651.49,{},74717,0,Asia +2023-12-05,21423,7556,"[""Phone"", ""Tablet"", ""Laptop""]",482.25,"{""seasonal"": ""25%""}",90652,0,South America +2024-10-02,21424,7135,"[""Monitor"", ""Keyboard""]",2618.0,{},223284,1,Africa +2023-01-08,21425,7826,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3236.58,{},287162,0,North America +2023-08-22,21426,6818,"[""Tablet""]",2951.34,"{""seasonal"": ""15%""}",98517,1,Africa +2023-06-14,21427,1857,"[""Laptop""]",2384.69,"{""promo"": ""30%""}",200358,0,Europe +2024-04-10,21428,6099,"[""Keyboard"", ""Headphones""]",740.34,"{""loyalty"": ""21%""}",60667,0,North America +2023-09-14,21429,5397,"[""Phone"", ""Keyboard"", ""Tablet""]",1964.85,"{""seasonal"": ""29%""}",78303,1,Africa +2024-06-23,21430,1352,"[""Wireless Mouse"", ""Charger""]",1947.43,"{""promo"": ""6%""}",16529,1,Africa +2024-06-30,21431,5780,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3466.07,"{""seasonal"": ""24%""}",59154,0,South America +2023-01-21,21432,8986,"[""Charger""]",1073.67,{},204071,1,Africa +2024-12-02,21433,9031,"[""Phone"", ""Monitor""]",2330.33,"{""seasonal"": ""16%""}",23161,0,North America +2024-01-15,21434,3030,"[""Phone"", ""Laptop"", ""Charger""]",2933.46,"{"""": ""9%""}",14756,1,Asia +2023-06-21,21435,5035,"[""Headphones"", ""Monitor"", ""Tablet""]",2211.9,{},196256,0,Europe +2023-03-29,21436,8093,"[""Wireless Mouse"", ""Monitor""]",464.65,{},184075,0,North America +2023-03-28,21437,7074,"[""Monitor""]",2579.01,{},84520,1,Africa +2023-12-31,21438,2228,"[""Headphones"", ""Monitor""]",2589.27,{},164189,0,Asia +2024-05-04,21439,3869,"[""Charger"", ""Headphones"", ""Keyboard""]",4400.93,{},121648,1,South America +2023-04-25,21440,5272,"[""Wireless Mouse""]",930.49,{},122367,0,Asia +2023-11-04,21441,6378,"[""Monitor""]",4699.31,{},26653,1,Africa +2023-04-16,21442,1404,"[""Wireless Mouse"", ""Phone""]",3439.5,{},221195,1,Europe +2024-11-27,21443,1310,"[""Keyboard"", ""Wireless Mouse""]",865.06,"{"""": ""15%""}",113045,1,South America +2023-10-18,21444,9725,"[""Phone"", ""Tablet"", ""Keyboard""]",643.16,{},289080,0,Asia +2023-02-14,21445,7716,"[""Charger"", ""Wireless Mouse""]",4209.46,{},168082,0,Asia +2023-10-11,21446,3317,"[""Headphones"", ""Wireless Mouse""]",1652.4,"{"""": ""13%""}",208336,1,North America +2023-02-19,21447,6502,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4891.29,{},109556,0,Asia +2024-01-19,21448,4141,"[""Keyboard""]",3208.23,"{""promo"": ""8%""}",123965,1,Asia +2024-03-30,21449,7518,"[""Keyboard"", ""Laptop"", ""Tablet""]",3995.09,"{""promo"": ""26%""}",251396,0,Europe +2023-06-26,21450,1161,"[""Charger"", ""Phone"", ""Keyboard""]",2357.65,{},176716,1,South America +2024-08-19,21451,3282,"[""Phone""]",993.46,{},10159,1,Africa +2023-09-10,21452,5093,"[""Tablet"", ""Monitor""]",1519.16,"{"""": ""19%""}",223643,0,Asia +2024-12-10,21453,7011,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2517.54,{},74099,0,Asia +2024-03-20,21454,190,"[""Phone""]",4802.27,{},256138,0,North America +2024-10-26,21455,7146,"[""Tablet""]",1520.88,"{""promo"": ""21%""}",20486,0,Asia +2023-01-03,21456,3689,"[""Laptop""]",3878.8,"{""seasonal"": ""26%""}",257995,1,Europe +2023-06-22,21457,1402,"[""Charger"", ""Laptop""]",1638.86,"{"""": ""19%""}",40450,1,Europe +2024-02-19,21458,1726,"[""Phone""]",3121.18,{},195743,0,Africa +2023-06-07,21459,9593,"[""Wireless Mouse"", ""Laptop""]",3409.12,"{""seasonal"": ""8%""}",19736,0,South America +2023-07-07,21460,8886,"[""Wireless Mouse""]",1039.25,{},161956,1,North America +2024-10-23,21461,9377,"[""Monitor""]",631.26,{},79999,1,North America +2024-11-11,21462,9301,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4374.9,"{""promo"": ""8%""}",137842,0,Asia +2024-07-06,21463,8168,"[""Phone"", ""Laptop""]",3919.81,{},218421,1,Asia +2024-01-05,21464,89,"[""Monitor"", ""Tablet""]",3994.8,"{""promo"": ""15%""}",160326,0,Africa +2024-01-10,21465,6818,"[""Keyboard"", ""Monitor"", ""Headphones""]",3219.87,{},46520,0,Europe +2024-05-24,21466,5087,"[""Tablet""]",2812.64,{},272323,1,Asia +2024-04-27,21467,5320,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2221.26,"{""loyalty"": ""24%""}",111415,1,Europe +2024-11-03,21468,8324,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4330.22,"{""seasonal"": ""17%""}",101108,1,Europe +2023-04-08,21469,4650,"[""Charger"", ""Phone""]",381.99,"{""seasonal"": ""7%""}",166745,1,Africa +2023-07-10,21470,4440,"[""Tablet"", ""Phone"", ""Charger""]",1669.81,"{""promo"": ""6%""}",119922,0,South America +2024-09-22,21471,6762,"[""Phone""]",2914.47,{},287228,1,Asia +2024-12-10,21472,6103,"[""Keyboard"", ""Monitor"", ""Laptop""]",1932.62,{},235879,1,Europe +2023-02-13,21473,9391,"[""Phone""]",3670.09,"{""seasonal"": ""11%""}",4397,1,North America +2024-10-28,21474,662,"[""Phone""]",4465.64,{},118678,1,Asia +2024-08-11,21475,3907,"[""Laptop""]",1336.52,{},291410,0,North America +2024-05-21,21476,4675,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",996.02,"{""loyalty"": ""6%""}",216561,1,Asia +2024-12-22,21477,5472,"[""Headphones"", ""Keyboard"", ""Monitor""]",1555.65,{},158850,0,North America +2024-03-29,21478,5068,"[""Phone""]",4679.81,{},122832,1,Europe +2023-12-14,21479,6959,"[""Tablet""]",4247.08,{},86906,1,North America +2024-10-08,21480,8927,"[""Wireless Mouse"", ""Laptop""]",450.61,"{"""": ""15%""}",227036,0,Europe +2024-08-22,21481,9756,"[""Laptop"", ""Keyboard"", ""Charger""]",4690.22,{},250861,0,Europe +2024-03-16,21482,6361,"[""Headphones"", ""Keyboard"", ""Monitor""]",3596.87,{},122403,1,Europe +2024-12-13,21483,3706,"[""Tablet"", ""Headphones""]",593.78,"{""loyalty"": ""25%""}",184388,0,Asia +2023-07-02,21484,5742,"[""Phone""]",3181.51,"{"""": ""7%""}",256974,0,Africa +2024-05-03,21485,4072,"[""Keyboard"", ""Headphones"", ""Laptop""]",4416.76,"{""loyalty"": ""18%""}",92479,1,Africa +2024-05-04,21486,1446,"[""Laptop""]",3831.38,"{""loyalty"": ""30%""}",174739,0,Africa +2024-12-26,21487,8949,"[""Wireless Mouse""]",4526.91,"{"""": ""11%""}",288205,1,Africa +2023-06-16,21488,4502,"[""Keyboard""]",3211.5,"{""promo"": ""29%""}",275459,0,Europe +2023-08-02,21489,3525,"[""Tablet"", ""Phone"", ""Laptop""]",3673.28,"{""promo"": ""18%""}",19314,1,Africa +2023-05-25,21490,3636,"[""Keyboard""]",4827.17,{},278707,0,Asia +2024-01-05,21491,8939,"[""Keyboard""]",1178.06,{},17808,1,North America +2024-01-19,21492,3032,"[""Charger"", ""Keyboard"", ""Tablet""]",2234.8,{},148621,1,North America +2024-03-13,21493,282,"[""Headphones"", ""Monitor"", ""Tablet""]",3595.79,"{"""": ""5%""}",102062,0,North America +2024-10-17,21494,1861,"[""Headphones""]",1137.04,{},239726,0,Europe +2024-07-22,21495,6498,"[""Charger""]",3448.33,{},189784,1,North America +2023-04-16,21496,7201,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3519.36,"{""seasonal"": ""9%""}",63046,1,Asia +2024-07-22,21497,4113,"[""Monitor"", ""Phone""]",3445.54,{},54420,0,South America +2024-04-11,21498,9397,"[""Headphones"", ""Monitor""]",1214.15,"{""seasonal"": ""18%""}",43168,1,Africa +2023-10-14,21499,348,"[""Monitor"", ""Charger""]",1400.24,"{""promo"": ""13%""}",271087,1,North America +2023-08-31,21500,3193,"[""Laptop"", ""Headphones""]",2237.27,{},4918,1,Europe +2023-06-24,21501,2234,"[""Wireless Mouse"", ""Phone""]",822.44,"{""seasonal"": ""17%""}",263552,1,North America +2023-04-27,21502,2188,"[""Charger""]",350.33,"{"""": ""23%""}",26086,1,Asia +2023-09-08,21503,684,"[""Headphones"", ""Monitor""]",1730.31,"{""loyalty"": ""23%""}",285770,0,South America +2024-05-31,21504,3031,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3772.18,"{""loyalty"": ""28%""}",111869,0,Europe +2024-07-04,21505,8771,"[""Phone""]",1400.52,{},88941,1,Europe +2023-11-24,21506,3498,"[""Monitor"", ""Charger"", ""Tablet""]",2052.87,{},279529,1,Asia +2024-11-06,21507,7129,"[""Laptop"", ""Wireless Mouse""]",4522.66,{},128638,0,Africa +2023-01-02,21508,1122,"[""Laptop"", ""Headphones"", ""Monitor""]",3637.53,"{""seasonal"": ""21%""}",185510,1,South America +2023-10-14,21509,6972,"[""Monitor"", ""Phone""]",1174.74,{},51362,0,North America +2024-03-09,21510,9346,"[""Wireless Mouse""]",188.81,"{""seasonal"": ""11%""}",72805,1,Asia +2023-08-11,21511,74,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2839.68,{},150987,0,South America +2023-12-20,21512,4676,"[""Headphones"", ""Laptop"", ""Keyboard""]",4686.02,"{""loyalty"": ""15%""}",178088,1,Asia +2023-10-19,21513,4323,"[""Laptop"", ""Phone""]",65.86,{},266651,1,Europe +2024-01-20,21514,4563,"[""Monitor"", ""Laptop"", ""Tablet""]",463.51,"{""promo"": ""7%""}",237427,1,Asia +2024-01-11,21515,8188,"[""Monitor"", ""Laptop"", ""Headphones""]",519.76,"{""loyalty"": ""9%""}",23993,0,Asia +2023-06-12,21516,9731,"[""Laptop"", ""Headphones""]",3066.28,"{"""": ""11%""}",155663,0,Africa +2023-01-22,21517,2017,"[""Tablet"", ""Phone""]",730.92,"{""promo"": ""15%""}",76193,1,Asia +2023-12-06,21518,9899,"[""Keyboard""]",3602.32,"{""seasonal"": ""10%""}",262505,1,Europe +2023-08-14,21519,785,"[""Keyboard""]",3465.88,{},78231,0,South America +2023-04-02,21520,4405,"[""Wireless Mouse""]",2402.93,"{""loyalty"": ""12%""}",154416,1,North America +2024-10-01,21521,5123,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4163.43,{},201351,0,Africa +2024-12-17,21522,1164,"[""Charger"", ""Keyboard""]",4669.97,{},272297,1,Asia +2023-06-27,21523,620,"[""Wireless Mouse"", ""Keyboard""]",1805.25,"{"""": ""12%""}",178599,1,Asia +2023-03-23,21524,4635,"[""Charger"", ""Headphones""]",4834.69,"{""promo"": ""17%""}",60206,0,North America +2024-07-19,21525,3426,"[""Wireless Mouse"", ""Keyboard""]",3489.32,{},204516,1,North America +2024-05-04,21526,8333,"[""Charger"", ""Wireless Mouse""]",346.66,"{""loyalty"": ""9%""}",276709,1,Asia +2023-08-06,21527,2523,"[""Charger""]",2439.09,{},270412,0,Europe +2023-10-19,21528,6086,"[""Wireless Mouse"", ""Monitor""]",1556.35,"{"""": ""28%""}",257459,1,North America +2024-09-09,21529,2610,"[""Monitor"", ""Phone""]",2788.35,{},133701,1,North America +2023-01-10,21530,5242,"[""Keyboard"", ""Phone"", ""Monitor""]",4453.53,"{"""": ""24%""}",147659,1,Africa +2023-12-22,21531,4829,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",330.41,{},240417,0,Europe +2023-02-16,21532,5912,"[""Laptop""]",3090.26,"{""seasonal"": ""23%""}",235294,0,Africa +2024-11-14,21533,7551,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4054.57,{},218061,0,Asia +2024-02-25,21534,5033,"[""Tablet"", ""Headphones""]",1316.93,"{"""": ""11%""}",4859,0,North America +2023-12-23,21535,7331,"[""Monitor"", ""Headphones"", ""Tablet""]",1535.92,{},165583,0,Europe +2023-11-10,21536,685,"[""Wireless Mouse""]",1993.92,{},58319,1,Africa +2023-02-22,21537,8097,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1837.74,{},274830,0,North America +2023-04-11,21538,7734,"[""Headphones"", ""Monitor""]",2962.7,"{""seasonal"": ""6%""}",37381,0,South America +2024-10-20,21539,4975,"[""Phone"", ""Tablet"", ""Monitor""]",4192.08,{},112433,0,Africa +2023-08-25,21540,8786,"[""Laptop"", ""Monitor"", ""Tablet""]",2922.18,{},268366,0,Africa +2024-01-03,21541,4234,"[""Wireless Mouse""]",2243.32,{},140464,1,North America +2023-05-13,21542,8742,"[""Monitor""]",977.6,"{"""": ""5%""}",210539,0,Asia +2024-04-08,21543,555,"[""Monitor"", ""Headphones""]",3289.93,"{""promo"": ""21%""}",78018,0,Asia +2023-03-26,21544,6830,"[""Monitor""]",3072.24,"{"""": ""22%""}",139212,1,North America +2023-03-31,21545,479,"[""Phone""]",3761.99,{},9485,1,South America +2023-02-25,21546,3833,"[""Monitor"", ""Keyboard"", ""Phone""]",1149.46,{},116305,1,Asia +2023-04-02,21547,5215,"[""Laptop"", ""Charger""]",879.24,"{""promo"": ""27%""}",273937,1,North America +2024-05-17,21548,111,"[""Charger"", ""Laptop"", ""Tablet""]",2694.8,{},211004,0,Africa +2023-05-03,21549,7200,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3400.46,{},93122,1,South America +2023-07-20,21550,9587,"[""Tablet""]",1016.33,"{""promo"": ""25%""}",88202,1,Europe +2024-06-04,21551,8798,"[""Tablet"", ""Headphones""]",4602.62,{},82728,1,Europe +2023-02-20,21552,8870,"[""Charger"", ""Laptop""]",2063.23,{},250788,1,North America +2024-10-04,21553,5982,"[""Wireless Mouse""]",4494.36,"{""promo"": ""25%""}",218896,0,South America +2023-03-27,21554,9069,"[""Headphones"", ""Tablet""]",2660.79,"{""seasonal"": ""12%""}",116171,1,North America +2024-09-04,21555,7808,"[""Tablet"", ""Keyboard""]",1558.97,{},151711,0,South America +2024-11-20,21556,8160,"[""Monitor"", ""Laptop""]",2723.43,{},25270,1,Asia +2023-06-22,21557,8614,"[""Phone""]",2582.48,{},184034,0,Africa +2024-08-30,21558,4062,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",821.39,{},4371,0,North America +2024-08-19,21559,9310,"[""Keyboard"", ""Charger"", ""Laptop""]",4579.12,"{""promo"": ""12%""}",7883,1,North America +2024-02-22,21560,2624,"[""Wireless Mouse"", ""Laptop""]",1602.56,"{""promo"": ""8%""}",203628,0,Asia +2023-04-22,21561,783,"[""Headphones""]",4800.73,"{""promo"": ""16%""}",295624,1,South America +2024-02-26,21562,5875,"[""Phone"", ""Wireless Mouse""]",2641.92,"{""loyalty"": ""30%""}",128751,1,Asia +2024-07-28,21563,2715,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2567.09,"{"""": ""7%""}",293428,1,Asia +2024-06-24,21564,5237,"[""Headphones"", ""Monitor""]",2223.5,{},128854,1,North America +2024-08-18,21565,6680,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2997.48,"{""loyalty"": ""13%""}",273341,1,South America +2023-11-29,21566,8986,"[""Monitor""]",1593.47,"{""seasonal"": ""14%""}",276687,1,North America +2023-11-11,21567,2068,"[""Headphones"", ""Laptop"", ""Monitor""]",3584.06,{},265385,0,Europe +2023-03-29,21568,402,"[""Monitor"", ""Laptop""]",4838.82,{},293456,1,Asia +2024-02-27,21569,701,"[""Keyboard"", ""Charger""]",1678.81,{},112659,1,Asia +2024-08-15,21570,2828,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1323.31,{},78708,0,North America +2023-02-05,21571,4986,"[""Wireless Mouse""]",1127.81,"{""promo"": ""14%""}",288585,1,Asia +2023-03-18,21572,3936,"[""Keyboard"", ""Phone""]",3381.83,{},87114,1,Asia +2023-03-19,21573,8618,"[""Laptop"", ""Monitor"", ""Tablet""]",4681.47,{},39026,0,Asia +2024-05-16,21574,5153,"[""Laptop""]",2271.04,{},38003,1,Asia +2024-12-28,21575,5150,"[""Phone"", ""Laptop"", ""Monitor""]",1445.47,"{"""": ""19%""}",282239,1,Asia +2024-03-31,21576,1673,"[""Charger"", ""Monitor""]",4889.89,"{"""": ""22%""}",179751,0,Europe +2023-08-30,21577,4709,"[""Keyboard"", ""Laptop""]",142.86,{},118412,1,North America +2023-03-29,21578,8474,"[""Laptop"", ""Phone"", ""Charger""]",3386.89,"{"""": ""25%""}",171634,0,Africa +2023-07-17,21579,2400,"[""Wireless Mouse""]",610.69,{},292637,0,North America +2023-02-01,21580,5354,"[""Monitor""]",2515.06,"{""seasonal"": ""29%""}",271090,0,South America +2023-01-24,21581,1053,"[""Headphones""]",3794.82,{},177301,1,Asia +2023-03-26,21582,7497,"[""Charger"", ""Monitor"", ""Keyboard""]",2109.53,{},76992,1,Asia +2023-03-11,21583,5689,"[""Monitor"", ""Charger"", ""Tablet""]",4491.34,{},62608,1,Asia +2023-11-22,21584,6902,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1843.17,{},180500,1,Asia +2023-04-20,21585,9442,"[""Keyboard"", ""Charger"", ""Monitor""]",3078.17,"{"""": ""26%""}",75847,0,Africa +2023-12-06,21586,5373,"[""Charger""]",4190.84,"{""loyalty"": ""22%""}",71131,0,Africa +2023-03-23,21587,4014,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2899.39,"{""loyalty"": ""22%""}",17410,1,Asia +2024-04-05,21588,3823,"[""Keyboard"", ""Phone""]",1578.58,"{""promo"": ""13%""}",263481,0,North America +2024-09-19,21589,7784,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1247.68,"{"""": ""19%""}",81457,1,South America +2023-07-25,21590,924,"[""Monitor""]",2554.22,"{"""": ""23%""}",117931,0,Europe +2024-03-19,21591,498,"[""Tablet"", ""Charger""]",1978.53,"{""seasonal"": ""24%""}",80159,0,Europe +2023-11-02,21592,5816,"[""Laptop"", ""Monitor"", ""Phone""]",947.26,{},293129,1,Asia +2023-03-18,21593,7246,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1235.59,"{"""": ""27%""}",217098,0,Africa +2024-09-19,21594,3372,"[""Headphones"", ""Laptop""]",123.82,{},40915,0,Africa +2023-06-27,21595,6878,"[""Charger"", ""Keyboard""]",619.75,{},12422,1,South America +2024-06-16,21596,5141,"[""Wireless Mouse""]",4685.45,{},58446,1,Africa +2023-04-21,21597,7297,"[""Phone""]",858.87,{},46845,0,Europe +2023-06-27,21598,9785,"[""Charger"", ""Headphones""]",390.08,{},86808,1,Europe +2024-11-03,21599,3236,"[""Charger""]",4450.47,"{""seasonal"": ""19%""}",224245,0,Europe +2023-10-27,21600,5214,"[""Tablet"", ""Headphones"", ""Keyboard""]",1603.68,"{""seasonal"": ""16%""}",78753,0,Europe +2024-01-04,21601,3521,"[""Phone""]",2204.48,{},201942,0,Africa +2024-06-02,21602,635,"[""Wireless Mouse""]",2162.82,"{""promo"": ""7%""}",165086,0,Africa +2024-07-17,21603,5328,"[""Charger""]",1481.91,{},221415,0,North America +2023-05-27,21604,8407,"[""Keyboard"", ""Headphones""]",4639.17,{},132716,1,Europe +2024-07-23,21605,2513,"[""Charger"", ""Tablet""]",3989.31,"{""loyalty"": ""11%""}",148753,0,South America +2024-05-21,21606,958,"[""Tablet"", ""Keyboard""]",1899.13,"{""promo"": ""21%""}",269498,0,Africa +2024-11-26,21607,5515,"[""Headphones""]",3749.24,"{""seasonal"": ""17%""}",287863,1,Asia +2023-08-13,21608,3522,"[""Tablet""]",376.69,"{""seasonal"": ""10%""}",147298,1,Asia +2023-01-26,21609,4456,"[""Laptop""]",525.69,{},41879,1,North America +2023-06-20,21610,1767,"[""Charger"", ""Laptop""]",1470.82,"{"""": ""25%""}",248135,1,Africa +2023-07-01,21611,4357,"[""Tablet"", ""Charger"", ""Headphones""]",1866.74,"{"""": ""6%""}",280246,1,Africa +2023-01-01,21612,9245,"[""Headphones""]",3186.86,"{""loyalty"": ""29%""}",131594,0,Asia +2024-12-13,21613,113,"[""Monitor""]",2744.1,"{""loyalty"": ""30%""}",40553,0,Africa +2023-07-03,21614,8096,"[""Wireless Mouse""]",3171.84,"{""seasonal"": ""7%""}",58433,1,South America +2023-11-14,21615,3268,"[""Keyboard"", ""Phone""]",3683.88,"{""promo"": ""18%""}",162453,0,Europe +2024-07-28,21616,424,"[""Laptop""]",2150.2,{},212628,0,Africa +2024-01-03,21617,8224,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3807.84,"{""loyalty"": ""24%""}",105835,0,Africa +2023-11-12,21618,3628,"[""Monitor"", ""Wireless Mouse""]",1177.08,"{"""": ""18%""}",117583,0,South America +2023-10-18,21619,1231,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2160.26,"{""seasonal"": ""26%""}",120251,1,Africa +2023-01-22,21620,8010,"[""Wireless Mouse"", ""Phone""]",4276.26,"{"""": ""16%""}",182068,0,Africa +2024-04-19,21621,8426,"[""Headphones""]",2881.29,"{""promo"": ""18%""}",137353,1,North America +2024-01-27,21622,8844,"[""Monitor"", ""Charger""]",377.87,{},36861,1,North America +2023-06-25,21623,2775,"[""Tablet""]",2117.65,{},132539,0,North America +2024-07-19,21624,3986,"[""Charger""]",2548.38,{},174210,1,South America +2024-01-30,21625,2957,"[""Monitor"", ""Keyboard"", ""Laptop""]",3710.77,"{""seasonal"": ""7%""}",135216,1,North America +2023-02-03,21626,2645,"[""Laptop"", ""Monitor"", ""Charger""]",3976.13,"{""loyalty"": ""14%""}",10628,0,Europe +2024-01-26,21627,1807,"[""Keyboard"", ""Laptop""]",339.75,{},49399,1,Africa +2024-05-01,21628,727,"[""Laptop"", ""Headphones""]",3435.43,{},81202,1,Europe +2024-02-12,21629,657,"[""Wireless Mouse"", ""Monitor""]",1012.98,{},144232,1,Africa +2023-12-22,21630,9251,"[""Phone"", ""Laptop""]",1885.6,{},235694,1,South America +2023-01-17,21631,3678,"[""Laptop"", ""Monitor"", ""Phone""]",3106.29,"{""promo"": ""28%""}",282963,1,North America +2024-10-24,21632,3087,"[""Laptop""]",2972.84,"{""loyalty"": ""5%""}",239519,0,South America +2024-12-25,21633,4091,"[""Laptop""]",2163.31,{},245741,1,North America +2023-05-10,21634,5110,"[""Laptop""]",2279.8,{},70387,0,Asia +2024-01-13,21635,4534,"[""Charger"", ""Tablet""]",2099.54,"{"""": ""15%""}",221982,1,Europe +2023-11-07,21636,7592,"[""Charger"", ""Tablet"", ""Laptop""]",4041.41,"{""promo"": ""22%""}",112456,0,South America +2024-12-14,21637,650,"[""Keyboard"", ""Monitor""]",111.06,{},133352,1,North America +2023-03-07,21638,6511,"[""Headphones"", ""Charger"", ""Keyboard""]",2550.21,"{""seasonal"": ""17%""}",109938,1,Europe +2024-07-21,21639,1586,"[""Wireless Mouse""]",3788.33,"{""loyalty"": ""19%""}",103772,0,Europe +2023-08-07,21640,1634,"[""Tablet"", ""Headphones""]",1613.12,"{""promo"": ""17%""}",229667,1,Asia +2024-04-07,21641,9466,"[""Tablet"", ""Phone"", ""Charger""]",3007.86,"{""seasonal"": ""15%""}",275672,0,Africa +2024-06-25,21642,3976,"[""Headphones"", ""Tablet"", ""Monitor""]",835.43,"{"""": ""25%""}",82199,1,North America +2024-04-28,21643,7756,"[""Laptop"", ""Monitor"", ""Keyboard""]",1006.96,"{""loyalty"": ""16%""}",227818,0,North America +2023-08-30,21644,578,"[""Charger"", ""Headphones""]",1372.8,"{""seasonal"": ""10%""}",189929,1,Europe +2024-03-15,21645,8988,"[""Keyboard"", ""Laptop""]",1797.27,{},19157,0,North America +2024-02-10,21646,6035,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3415.26,{},48761,1,Europe +2024-05-26,21647,4301,"[""Tablet"", ""Keyboard""]",4301.76,"{"""": ""24%""}",198302,0,South America +2024-12-11,21648,1088,"[""Monitor"", ""Charger"", ""Tablet""]",3406.02,{},209890,1,Asia +2024-11-04,21649,8576,"[""Charger"", ""Keyboard"", ""Phone""]",4145.27,{},141665,0,North America +2023-06-10,21650,8142,"[""Wireless Mouse""]",4243.05,"{""promo"": ""28%""}",137440,0,Africa +2023-07-02,21651,3137,"[""Headphones""]",4210.68,"{""promo"": ""7%""}",249133,0,South America +2024-04-09,21652,3657,"[""Tablet""]",3844.43,{},47236,1,Europe +2023-09-04,21653,8302,"[""Phone"", ""Laptop""]",975.71,{},91219,0,South America +2023-04-10,21654,3708,"[""Laptop"", ""Keyboard""]",2943.1,"{""seasonal"": ""6%""}",180567,1,South America +2024-08-09,21655,1430,"[""Monitor"", ""Headphones""]",4177.22,{},193396,1,Africa +2023-02-14,21656,7324,"[""Phone""]",2573.94,{},111064,1,South America +2024-03-14,21657,7362,"[""Phone"", ""Headphones"", ""Tablet""]",4255.67,{},82856,0,South America +2023-09-10,21658,1647,"[""Wireless Mouse"", ""Headphones""]",2523.02,{},244673,0,Asia +2023-01-27,21659,9615,"[""Charger"", ""Phone""]",4638.11,"{""promo"": ""11%""}",229200,1,North America +2023-07-15,21660,898,"[""Laptop""]",1983.81,{},282208,0,South America +2024-05-24,21661,5200,"[""Keyboard"", ""Tablet"", ""Laptop""]",2030.03,"{""loyalty"": ""17%""}",113488,0,Asia +2023-09-23,21662,346,"[""Tablet"", ""Headphones""]",3320.29,{},213583,0,Europe +2023-07-05,21663,512,"[""Laptop""]",752.05,"{"""": ""30%""}",10189,1,Europe +2023-08-03,21664,3823,"[""Monitor""]",2023.87,"{""promo"": ""21%""}",51095,1,Europe +2023-08-08,21665,2504,"[""Keyboard"", ""Laptop"", ""Monitor""]",120.2,"{""promo"": ""12%""}",111970,0,North America +2023-04-12,21666,8504,"[""Charger"", ""Keyboard""]",1600.07,{},201950,1,South America +2023-07-24,21667,6691,"[""Keyboard""]",3115.38,{},140591,0,North America +2023-08-31,21668,4474,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3270.21,"{"""": ""22%""}",94979,0,Europe +2023-03-17,21669,3946,"[""Laptop"", ""Charger"", ""Monitor""]",176.99,"{""promo"": ""19%""}",50468,1,North America +2024-10-17,21670,2340,"[""Headphones"", ""Keyboard""]",375.03,"{"""": ""24%""}",126160,1,South America +2024-04-03,21671,2773,"[""Tablet""]",4514.28,{},59348,1,Europe +2024-09-29,21672,7257,"[""Charger"", ""Laptop"", ""Tablet""]",1439.47,"{""seasonal"": ""15%""}",103778,1,Africa +2023-01-30,21673,2074,"[""Charger"", ""Tablet""]",1587.81,"{""seasonal"": ""21%""}",189347,1,North America +2023-09-21,21674,7358,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",783.36,{},130860,1,South America +2024-09-02,21675,2684,"[""Headphones""]",2981.35,"{""loyalty"": ""27%""}",218018,1,South America +2024-04-29,21676,5709,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",282.91,"{""seasonal"": ""28%""}",69005,0,Asia +2024-12-29,21677,6482,"[""Monitor"", ""Laptop"", ""Phone""]",1897.19,{},108252,1,Europe +2024-02-14,21678,9126,"[""Wireless Mouse""]",4908.57,{},287851,1,South America +2023-02-19,21679,682,"[""Tablet""]",1813.56,{},196067,1,Asia +2023-12-24,21680,3031,"[""Phone"", ""Charger"", ""Monitor""]",3498.07,"{""loyalty"": ""19%""}",128688,1,Asia +2024-08-25,21681,8418,"[""Wireless Mouse"", ""Laptop""]",4818.79,{},147108,0,Africa +2023-01-25,21682,650,"[""Laptop"", ""Tablet"", ""Monitor""]",1506.59,"{"""": ""5%""}",187649,1,Africa +2024-06-30,21683,155,"[""Charger"", ""Headphones"", ""Phone""]",2566.48,{},273705,0,South America +2023-04-02,21684,9661,"[""Headphones""]",187.41,{},244366,1,Asia +2024-06-18,21685,1276,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1930.64,{},142291,0,South America +2024-02-19,21686,8867,"[""Laptop"", ""Monitor""]",4354.02,"{""loyalty"": ""29%""}",182915,0,Asia +2024-08-26,21687,1538,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4350.24,"{"""": ""11%""}",22882,0,North America +2023-11-29,21688,9128,"[""Monitor"", ""Laptop""]",4633.24,"{""seasonal"": ""30%""}",96018,0,Europe +2023-10-25,21689,3236,"[""Wireless Mouse"", ""Keyboard""]",3319.08,{},274350,0,Africa +2024-06-30,21690,1557,"[""Headphones""]",2224.46,{},192722,0,North America +2024-09-02,21691,6210,"[""Tablet"", ""Laptop""]",3708.44,{},180773,1,North America +2023-07-15,21692,7943,"[""Laptop""]",2195.01,{},297991,1,Europe +2023-10-15,21693,2584,"[""Keyboard""]",701.1,{},259635,1,Asia +2023-01-06,21694,9805,"[""Laptop""]",3015.04,"{""promo"": ""26%""}",128513,0,North America +2023-05-19,21695,6571,"[""Monitor"", ""Headphones"", ""Phone""]",3578.75,"{"""": ""15%""}",226535,0,Africa +2023-05-04,21696,7303,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4080.75,{},259696,1,Europe +2024-09-16,21697,4260,"[""Charger"", ""Keyboard""]",2605.58,{},72914,1,North America +2023-01-23,21698,4061,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4910.54,"{""seasonal"": ""6%""}",288903,0,Europe +2023-04-23,21699,3254,"[""Charger"", ""Monitor""]",333.58,"{""loyalty"": ""13%""}",70884,0,Africa +2024-11-13,21700,2120,"[""Laptop"", ""Keyboard""]",3936.27,"{""loyalty"": ""25%""}",71922,0,Asia +2023-04-28,21701,9378,"[""Phone"", ""Charger""]",3985.85,{},177441,0,Asia +2023-04-18,21702,1095,"[""Headphones""]",3631.15,{},158380,1,Asia +2023-07-06,21703,1499,"[""Phone""]",448.87,{},292096,1,Africa +2023-03-19,21704,6290,"[""Wireless Mouse""]",4385.88,{},220820,0,Asia +2023-05-20,21705,6601,"[""Keyboard"", ""Laptop""]",3257.49,"{""seasonal"": ""28%""}",74548,0,Europe +2023-01-04,21706,1297,"[""Wireless Mouse""]",502.56,{},172291,1,Africa +2024-10-27,21707,2890,"[""Laptop"", ""Phone""]",4727.92,"{""loyalty"": ""23%""}",196190,0,North America +2023-05-21,21708,9683,"[""Phone"", ""Laptop""]",2501.02,{},295466,0,Europe +2023-03-01,21709,669,"[""Monitor"", ""Keyboard"", ""Phone""]",4730.71,"{""seasonal"": ""13%""}",118077,1,Africa +2024-10-11,21710,2951,"[""Laptop""]",2538.33,{},224843,0,Asia +2023-02-11,21711,3832,"[""Charger"", ""Headphones""]",1702.19,"{"""": ""5%""}",236236,1,Europe +2024-01-24,21712,9915,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2489.34,"{""seasonal"": ""27%""}",238949,0,Europe +2023-06-20,21713,3634,"[""Laptop""]",3707.64,{},250872,1,Asia +2024-05-15,21714,5995,"[""Laptop"", ""Phone"", ""Charger""]",4361.0,"{""loyalty"": ""17%""}",229459,1,North America +2023-08-11,21715,6172,"[""Charger"", ""Tablet"", ""Monitor""]",2678.29,"{""seasonal"": ""9%""}",135404,1,Africa +2023-01-31,21716,4833,"[""Headphones"", ""Tablet""]",1330.78,"{""promo"": ""16%""}",218332,0,South America +2024-04-30,21717,7038,"[""Phone""]",4278.99,{},79581,1,Africa +2023-09-19,21718,1039,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3477.61,"{"""": ""24%""}",11880,0,Africa +2024-03-20,21719,8892,"[""Wireless Mouse""]",3922.78,"{""promo"": ""21%""}",155208,0,Europe +2024-04-12,21720,6010,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1772.58,{},190402,0,North America +2024-06-12,21721,1326,"[""Keyboard""]",216.78,{},293819,1,Africa +2023-12-17,21722,8280,"[""Phone"", ""Monitor"", ""Laptop""]",2246.12,"{""promo"": ""8%""}",62601,1,North America +2024-03-17,21723,9918,"[""Monitor"", ""Laptop"", ""Charger""]",1036.97,"{"""": ""15%""}",88115,1,North America +2024-01-15,21724,9855,"[""Wireless Mouse"", ""Phone""]",736.99,{},168930,0,Europe +2023-02-05,21725,9613,"[""Monitor"", ""Wireless Mouse""]",1183.41,{},197609,1,Africa +2023-05-17,21726,3408,"[""Phone"", ""Monitor"", ""Headphones""]",3184.35,{},227971,1,Asia +2023-02-14,21727,9085,"[""Laptop"", ""Wireless Mouse""]",669.87,"{""promo"": ""29%""}",89296,1,Europe +2023-09-15,21728,6339,"[""Phone"", ""Monitor"", ""Charger""]",4303.27,"{"""": ""16%""}",226133,1,Europe +2024-03-03,21729,8883,"[""Wireless Mouse""]",942.17,"{""promo"": ""19%""}",286663,0,Africa +2024-06-30,21730,6345,"[""Laptop"", ""Tablet""]",2680.85,{},114156,1,South America +2023-05-02,21731,4396,"[""Wireless Mouse""]",1294.66,{},154399,0,Europe +2024-11-30,21732,7137,"[""Charger""]",3408.34,"{""seasonal"": ""27%""}",246620,0,Africa +2024-01-20,21733,4343,"[""Monitor"", ""Phone"", ""Charger""]",2781.69,{},76817,0,South America +2024-06-14,21734,2334,"[""Wireless Mouse""]",4550.95,"{"""": ""9%""}",188531,1,Asia +2023-03-17,21735,9925,"[""Laptop""]",2873.64,{},89416,1,Europe +2024-02-10,21736,4726,"[""Laptop""]",1564.29,"{""promo"": ""9%""}",231992,1,Europe +2024-08-27,21737,881,"[""Phone""]",3479.9,"{""promo"": ""11%""}",231042,1,Europe +2024-09-08,21738,491,"[""Headphones""]",2656.59,"{""loyalty"": ""16%""}",44106,1,Europe +2023-09-16,21739,3840,"[""Tablet""]",3321.9,{},78023,0,Asia +2024-05-25,21740,5685,"[""Headphones""]",3720.68,{},244804,0,North America +2024-08-16,21741,6901,"[""Keyboard""]",1884.93,{},65271,0,South America +2024-03-02,21742,4015,"[""Phone"", ""Charger"", ""Headphones""]",4144.13,"{""seasonal"": ""12%""}",194436,1,South America +2024-07-22,21743,5558,"[""Charger"", ""Monitor"", ""Phone""]",3880.93,{},275987,0,South America +2024-04-22,21744,3356,"[""Tablet""]",1059.99,"{""promo"": ""19%""}",44499,0,Europe +2023-07-30,21745,5149,"[""Wireless Mouse"", ""Monitor""]",3889.05,{},136965,1,Africa +2023-01-08,21746,2828,"[""Keyboard""]",1989.54,"{""promo"": ""29%""}",66105,1,North America +2023-07-18,21747,7377,"[""Headphones"", ""Keyboard""]",2381.68,"{""seasonal"": ""26%""}",95073,0,South America +2024-12-09,21748,2460,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2980.46,"{"""": ""20%""}",123964,0,North America +2024-02-17,21749,104,"[""Monitor""]",749.62,"{"""": ""28%""}",124266,0,Asia +2024-10-27,21750,901,"[""Keyboard"", ""Tablet"", ""Headphones""]",2011.54,{},33524,1,South America +2023-08-13,21751,4237,"[""Laptop"", ""Tablet""]",543.81,"{""seasonal"": ""8%""}",122961,1,South America +2024-11-09,21752,5915,"[""Keyboard"", ""Charger""]",1678.3,{},75291,0,South America +2024-09-04,21753,9129,"[""Tablet""]",2854.3,{},47883,1,Europe +2024-05-08,21754,546,"[""Monitor""]",108.07,{},290100,0,Europe +2024-03-27,21755,4485,"[""Phone"", ""Tablet"", ""Laptop""]",4321.46,"{"""": ""18%""}",101426,0,Europe +2024-11-15,21756,3442,"[""Keyboard"", ""Phone"", ""Charger""]",3710.48,{},205233,0,Asia +2023-08-15,21757,4225,"[""Headphones"", ""Phone"", ""Tablet""]",1564.18,{},33214,0,Africa +2024-08-28,21758,1445,"[""Keyboard"", ""Charger""]",679.38,"{""promo"": ""12%""}",206189,0,Africa +2024-04-08,21759,1821,"[""Tablet"", ""Monitor""]",2783.73,"{""seasonal"": ""22%""}",269508,0,Asia +2024-05-01,21760,8420,"[""Tablet"", ""Keyboard"", ""Monitor""]",3082.83,"{""seasonal"": ""23%""}",256805,0,Europe +2023-11-05,21761,4923,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1286.63,"{""seasonal"": ""28%""}",20319,0,South America +2024-06-03,21762,6796,"[""Monitor"", ""Headphones""]",997.01,{},151856,1,Asia +2024-11-30,21763,427,"[""Phone"", ""Monitor"", ""Laptop""]",2064.1,{},83193,1,Africa +2023-03-14,21764,2158,"[""Tablet""]",4216.38,{},180135,0,South America +2024-10-12,21765,8195,"[""Tablet"", ""Headphones"", ""Monitor""]",2847.22,"{"""": ""28%""}",232068,0,Europe +2024-06-11,21766,2286,"[""Phone""]",1421.64,{},6956,1,South America +2024-07-19,21767,6025,"[""Wireless Mouse"", ""Laptop""]",3828.39,"{""seasonal"": ""29%""}",115234,0,Europe +2024-10-27,21768,7061,"[""Monitor"", ""Tablet""]",4455.5,"{""promo"": ""16%""}",80748,0,Europe +2024-03-23,21769,8964,"[""Laptop"", ""Phone""]",4020.83,"{""loyalty"": ""12%""}",170200,0,South America +2024-10-30,21770,3831,"[""Laptop"", ""Tablet"", ""Monitor""]",4959.9,{},183143,0,South America +2024-06-02,21771,2683,"[""Phone""]",4443.54,"{""loyalty"": ""11%""}",220787,0,Europe +2024-04-20,21772,5705,"[""Monitor""]",593.71,{},62829,1,South America +2023-04-08,21773,2987,"[""Phone"", ""Charger""]",911.34,{},67216,1,South America +2023-03-05,21774,2133,"[""Wireless Mouse""]",554.83,"{""loyalty"": ""10%""}",173577,1,Africa +2023-03-22,21775,8405,"[""Tablet"", ""Phone"", ""Charger""]",2499.54,{},224828,0,South America +2024-03-22,21776,7914,"[""Phone"", ""Headphones""]",2445.22,{},191364,0,Asia +2024-02-12,21777,3283,"[""Keyboard"", ""Laptop""]",3862.54,"{"""": ""23%""}",1858,0,Asia +2024-08-08,21778,124,"[""Wireless Mouse""]",934.47,{},176235,0,Europe +2023-05-26,21779,5235,"[""Phone"", ""Wireless Mouse""]",1589.5,"{"""": ""22%""}",279376,0,Asia +2024-06-29,21780,1926,"[""Keyboard"", ""Phone""]",268.72,"{""seasonal"": ""25%""}",106665,1,Asia +2024-02-01,21781,2504,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4997.71,"{""loyalty"": ""23%""}",139635,1,Europe +2024-05-24,21782,2068,"[""Headphones""]",3867.52,"{""loyalty"": ""28%""}",32426,0,Asia +2024-05-09,21783,5716,"[""Tablet"", ""Laptop""]",2708.55,{},17930,1,Africa +2024-02-04,21784,2827,"[""Tablet""]",3113.06,"{""loyalty"": ""26%""}",80461,0,South America +2023-11-02,21785,2886,"[""Tablet"", ""Laptop"", ""Headphones""]",3202.97,{},283308,1,Africa +2023-03-30,21786,901,"[""Phone"", ""Laptop""]",4906.09,{},36787,1,Africa +2023-07-13,21787,7242,"[""Laptop"", ""Tablet""]",4797.62,"{"""": ""18%""}",33078,1,North America +2024-01-29,21788,3211,"[""Phone""]",1594.08,"{"""": ""27%""}",227620,0,Europe +2023-11-16,21789,4352,"[""Keyboard"", ""Monitor"", ""Headphones""]",2292.0,{},75567,1,Europe +2023-03-13,21790,5847,"[""Laptop""]",2305.55,"{""loyalty"": ""7%""}",174042,1,Africa +2023-02-14,21791,9893,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",972.34,"{""seasonal"": ""30%""}",35188,1,North America +2024-10-11,21792,7889,"[""Monitor"", ""Laptop"", ""Headphones""]",2462.8,{},25660,1,Europe +2023-07-20,21793,1531,"[""Tablet"", ""Laptop""]",4664.54,{},188006,1,Asia +2024-02-25,21794,1464,"[""Keyboard"", ""Tablet""]",1108.36,{},125899,1,Europe +2023-10-01,21795,4871,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2976.56,{},139745,1,Africa +2024-06-04,21796,8055,"[""Tablet"", ""Headphones""]",2589.7,"{""loyalty"": ""8%""}",182245,1,South America +2023-05-18,21797,7464,"[""Keyboard"", ""Monitor"", ""Tablet""]",1099.16,"{""promo"": ""9%""}",59376,1,North America +2024-08-07,21798,1502,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1025.01,{},119269,1,Asia +2024-07-16,21799,5404,"[""Tablet""]",3700.31,"{""loyalty"": ""25%""}",139534,1,Asia +2023-08-06,21800,1097,"[""Tablet"", ""Keyboard"", ""Laptop""]",1754.0,{},164674,1,Asia +2024-03-08,21801,5607,"[""Wireless Mouse""]",4025.81,"{""seasonal"": ""19%""}",192015,1,North America +2024-06-28,21802,7455,"[""Keyboard""]",1105.87,"{""seasonal"": ""27%""}",189508,1,South America +2023-03-07,21803,2354,"[""Charger"", ""Wireless Mouse""]",4964.84,{},61936,1,Asia +2023-07-20,21804,8871,"[""Charger"", ""Keyboard"", ""Monitor""]",3231.16,{},50805,0,North America +2023-05-13,21805,7978,"[""Phone"", ""Charger"", ""Monitor""]",2750.86,"{""loyalty"": ""22%""}",72245,1,Africa +2023-04-26,21806,7601,"[""Tablet""]",1912.75,{},106878,0,North America +2024-06-19,21807,6047,"[""Laptop""]",83.13,"{""promo"": ""21%""}",42529,0,North America +2023-05-25,21808,7559,"[""Charger""]",2838.61,"{"""": ""25%""}",100669,1,Asia +2023-07-10,21809,7748,"[""Headphones""]",2890.27,{},207861,0,North America +2023-07-08,21810,107,"[""Tablet""]",2766.06,"{""promo"": ""7%""}",240478,1,Africa +2023-07-30,21811,4470,"[""Charger""]",2853.21,{},264106,0,North America +2024-01-04,21812,1374,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1142.16,"{""seasonal"": ""9%""}",280157,1,North America +2024-04-23,21813,606,"[""Monitor"", ""Headphones""]",3354.52,{},283691,0,Africa +2023-08-03,21814,1474,"[""Tablet"", ""Phone""]",1504.6,"{""loyalty"": ""22%""}",128017,0,South America +2024-07-17,21815,3455,"[""Laptop""]",1729.84,"{"""": ""25%""}",151850,0,Europe +2023-02-27,21816,8335,"[""Charger""]",4337.67,{},32438,0,Asia +2024-09-14,21817,2836,"[""Charger"", ""Keyboard"", ""Laptop""]",4929.79,"{""promo"": ""19%""}",228130,1,Asia +2024-12-14,21818,8517,"[""Laptop"", ""Charger""]",960.29,"{"""": ""27%""}",67830,0,South America +2024-02-16,21819,5681,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3988.41,"{""loyalty"": ""23%""}",106475,1,Africa +2023-05-09,21820,1725,"[""Wireless Mouse"", ""Monitor""]",2612.15,{},296197,1,North America +2024-07-08,21821,5595,"[""Charger"", ""Phone"", ""Keyboard""]",3831.82,{},125790,1,Asia +2024-05-17,21822,9486,"[""Laptop"", ""Monitor""]",1783.64,{},133025,0,South America +2023-09-28,21823,3664,"[""Keyboard"", ""Phone"", ""Tablet""]",247.44,{},220140,1,Africa +2024-11-20,21824,3842,"[""Monitor"", ""Tablet"", ""Phone""]",4620.1,"{"""": ""5%""}",136048,1,Africa +2023-12-07,21825,3425,"[""Monitor""]",1852.92,"{""seasonal"": ""19%""}",234914,0,North America +2024-05-04,21826,6003,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4130.24,"{"""": ""25%""}",25498,0,South America +2024-05-15,21827,6355,"[""Laptop"", ""Phone"", ""Tablet""]",3520.22,{},92550,0,South America +2023-07-08,21828,4368,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3998.04,"{"""": ""15%""}",17421,1,Europe +2024-09-10,21829,4991,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4280.08,{},265205,0,Asia +2024-05-17,21830,1736,"[""Headphones"", ""Monitor""]",2609.4,"{"""": ""25%""}",244497,1,North America +2024-08-24,21831,7496,"[""Laptop""]",3157.12,"{"""": ""10%""}",114906,1,Africa +2023-05-29,21832,8259,"[""Wireless Mouse""]",3686.33,"{""seasonal"": ""29%""}",21938,0,Asia +2024-10-13,21833,9821,"[""Monitor"", ""Phone""]",205.88,"{""promo"": ""12%""}",279893,0,South America +2024-08-31,21834,7807,"[""Charger""]",563.57,{},14426,0,North America +2023-06-19,21835,5850,"[""Keyboard"", ""Wireless Mouse""]",1014.93,"{"""": ""21%""}",273834,0,Europe +2024-02-28,21836,7337,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",350.09,{},98987,1,South America +2023-06-03,21837,7063,"[""Phone"", ""Charger""]",2106.51,"{""loyalty"": ""19%""}",59472,1,Europe +2024-03-02,21838,6081,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2963.16,{},183193,0,Europe +2024-09-21,21839,9934,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2804.52,"{"""": ""10%""}",215100,0,Asia +2023-07-17,21840,279,"[""Tablet""]",2494.34,{},230329,0,Europe +2023-03-16,21841,7365,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4917.31,{},220458,1,Europe +2024-08-21,21842,3201,"[""Monitor"", ""Keyboard"", ""Headphones""]",414.03,"{""loyalty"": ""5%""}",24953,1,North America +2024-05-05,21843,2385,"[""Charger"", ""Keyboard""]",3868.53,"{""seasonal"": ""27%""}",258773,0,Africa +2024-07-31,21844,5889,"[""Laptop"", ""Phone"", ""Headphones""]",1172.79,"{""loyalty"": ""6%""}",79187,0,Asia +2024-03-18,21845,9917,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2418.06,"{"""": ""21%""}",172055,0,Africa +2023-06-25,21846,9355,"[""Tablet"", ""Keyboard"", ""Charger""]",3677.79,"{""loyalty"": ""6%""}",125660,1,Africa +2024-08-27,21847,4576,"[""Headphones""]",3278.68,{},248952,1,North America +2024-12-01,21848,4244,"[""Tablet"", ""Monitor"", ""Laptop""]",3936.27,"{""promo"": ""12%""}",18702,0,Europe +2023-01-22,21849,1555,"[""Tablet"", ""Headphones"", ""Keyboard""]",4110.08,"{""loyalty"": ""20%""}",26079,0,Africa +2023-06-29,21850,1464,"[""Phone"", ""Keyboard""]",1968.98,"{""seasonal"": ""24%""}",25192,0,Africa +2023-11-14,21851,3929,"[""Keyboard"", ""Tablet""]",901.05,"{""promo"": ""28%""}",149539,1,Asia +2024-12-13,21852,4834,"[""Phone"", ""Tablet""]",1466.76,{},68345,0,North America +2023-09-27,21853,9289,"[""Monitor""]",77.8,"{""loyalty"": ""30%""}",116930,0,Europe +2023-05-07,21854,6523,"[""Laptop""]",697.56,{},12723,0,Asia +2023-02-07,21855,4864,"[""Wireless Mouse""]",3995.99,"{""promo"": ""6%""}",17640,0,Africa +2023-07-23,21856,806,"[""Headphones""]",1542.15,{},119597,1,Europe +2024-06-24,21857,5058,"[""Monitor""]",3012.05,{},251692,0,South America +2024-11-15,21858,4824,"[""Laptop"", ""Monitor"", ""Keyboard""]",4118.08,{},32541,0,South America +2023-01-23,21859,5521,"[""Laptop""]",2137.14,{},82241,1,Africa +2023-10-04,21860,2528,"[""Charger""]",4682.77,"{""promo"": ""23%""}",201960,1,Asia +2024-03-11,21861,8488,"[""Monitor""]",1568.58,{},47980,0,Africa +2023-12-04,21862,5801,"[""Keyboard"", ""Monitor""]",448.83,{},295549,0,Europe +2024-07-07,21863,6790,"[""Monitor"", ""Tablet"", ""Headphones""]",751.82,"{""promo"": ""24%""}",130019,0,Africa +2023-03-17,21864,5,"[""Laptop"", ""Phone"", ""Tablet""]",599.89,{},39871,0,Africa +2024-02-02,21865,3274,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1315.88,{},174059,1,Africa +2023-03-14,21866,736,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2911.41,"{""promo"": ""17%""}",140238,1,Europe +2023-03-25,21867,1917,"[""Tablet""]",4651.0,"{""loyalty"": ""22%""}",50928,1,Europe +2023-02-09,21868,6232,"[""Phone"", ""Tablet""]",4476.47,{},70200,0,Asia +2024-07-07,21869,885,"[""Wireless Mouse""]",3737.57,"{""seasonal"": ""27%""}",98778,0,Europe +2023-04-20,21870,7817,"[""Keyboard""]",3178.26,"{""loyalty"": ""26%""}",197875,1,Asia +2024-03-04,21871,7521,"[""Charger""]",2136.14,"{"""": ""8%""}",9776,0,South America +2023-09-29,21872,5195,"[""Charger""]",3428.31,"{""promo"": ""27%""}",162147,1,South America +2024-02-15,21873,2347,"[""Monitor"", ""Laptop""]",3332.2,{},185310,0,Africa +2023-12-28,21874,8122,"[""Monitor""]",820.43,"{""promo"": ""20%""}",218879,1,Africa +2024-07-31,21875,6190,"[""Charger""]",4976.79,{},254470,1,South America +2023-03-06,21876,6713,"[""Charger"", ""Laptop"", ""Headphones""]",1823.56,{},21831,1,Asia +2024-12-18,21877,5073,"[""Wireless Mouse"", ""Tablet""]",4039.0,{},80147,0,South America +2024-04-10,21878,3439,"[""Headphones""]",651.3,"{"""": ""6%""}",74444,1,Asia +2024-09-06,21879,4222,"[""Headphones""]",2218.38,"{"""": ""27%""}",196927,1,Europe +2024-01-09,21880,455,"[""Laptop""]",3171.99,"{""promo"": ""9%""}",233235,1,Africa +2023-09-27,21881,4388,"[""Headphones""]",1251.86,{},41483,0,Africa +2023-02-07,21882,967,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3089.98,{},103214,0,Europe +2023-08-15,21883,7831,"[""Wireless Mouse"", ""Headphones""]",716.24,{},133378,1,Asia +2024-04-03,21884,6408,"[""Tablet"", ""Phone""]",1523.08,{},56242,1,North America +2023-06-17,21885,1752,"[""Charger""]",3816.29,"{""loyalty"": ""8%""}",274058,1,North America +2024-08-08,21886,551,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",59.94,"{"""": ""5%""}",71032,1,Asia +2023-04-04,21887,3325,"[""Phone"", ""Laptop"", ""Charger""]",141.21,{},45333,1,North America +2023-11-28,21888,1656,"[""Monitor""]",1827.16,{},169241,1,South America +2023-09-05,21889,9640,"[""Wireless Mouse"", ""Headphones""]",4851.16,{},244850,1,Asia +2024-03-08,21890,7678,"[""Keyboard"", ""Monitor"", ""Headphones""]",3965.85,{},176954,0,South America +2024-02-22,21891,9694,"[""Phone""]",2480.39,{},146009,1,Europe +2023-10-16,21892,8018,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",126.61,"{""promo"": ""18%""}",87272,1,North America +2024-05-02,21893,3124,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",379.14,{},50679,0,North America +2024-04-03,21894,9008,"[""Headphones""]",2538.54,{},158979,1,South America +2023-11-10,21895,3602,"[""Wireless Mouse""]",64.78,{},195498,1,North America +2024-12-04,21896,470,"[""Headphones"", ""Charger"", ""Laptop""]",2648.23,"{""loyalty"": ""9%""}",163541,1,North America +2024-09-01,21897,9532,"[""Headphones"", ""Keyboard"", ""Phone""]",2898.46,"{""promo"": ""22%""}",164062,1,Africa +2024-12-24,21898,9757,"[""Monitor""]",4313.3,"{""seasonal"": ""13%""}",87007,0,Africa +2024-06-16,21899,8588,"[""Laptop"", ""Keyboard""]",582.26,{},103279,1,South America +2023-04-04,21900,1072,"[""Headphones"", ""Charger""]",549.95,"{""seasonal"": ""7%""}",159320,1,North America +2023-09-14,21901,6260,"[""Phone""]",4769.38,"{"""": ""21%""}",253736,0,Asia +2024-02-10,21902,9098,"[""Monitor""]",4450.52,{},189781,1,South America +2023-05-17,21903,9949,"[""Laptop"", ""Headphones""]",758.33,{},117171,1,North America +2023-02-24,21904,6249,"[""Monitor"", ""Headphones"", ""Charger""]",1559.33,{},262503,0,North America +2023-03-20,21905,9685,"[""Phone"", ""Charger""]",928.03,{},233817,1,Europe +2023-12-11,21906,3832,"[""Keyboard"", ""Phone""]",3268.53,{},120526,1,Africa +2024-03-13,21907,4742,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4567.21,"{"""": ""27%""}",12497,0,Europe +2024-03-19,21908,8302,"[""Keyboard""]",3857.54,"{""promo"": ""16%""}",239608,0,Africa +2024-07-30,21909,8465,"[""Keyboard""]",4232.04,"{"""": ""28%""}",282594,1,Asia +2023-12-31,21910,7673,"[""Monitor"", ""Keyboard""]",4148.1,"{""promo"": ""10%""}",271543,0,Asia +2024-09-17,21911,7259,"[""Keyboard""]",3767.84,"{""loyalty"": ""21%""}",127475,0,North America +2024-01-14,21912,5580,"[""Tablet"", ""Keyboard""]",1491.36,{},101072,0,Africa +2024-02-15,21913,7331,"[""Tablet"", ""Monitor""]",4194.36,"{""seasonal"": ""25%""}",29133,0,Europe +2023-03-08,21914,1605,"[""Monitor""]",4346.49,{},92525,0,Europe +2024-03-27,21915,8883,"[""Wireless Mouse"", ""Phone""]",2054.76,{},38156,0,Asia +2024-12-26,21916,9503,"[""Phone"", ""Wireless Mouse""]",3663.09,"{""seasonal"": ""26%""}",160126,0,North America +2024-10-19,21917,4235,"[""Monitor""]",2444.88,{},65548,0,Europe +2023-10-05,21918,3002,"[""Wireless Mouse"", ""Keyboard""]",495.52,"{""loyalty"": ""28%""}",279489,1,South America +2024-11-05,21919,8881,"[""Keyboard"", ""Tablet""]",904.22,{},271939,0,Asia +2024-04-26,21920,40,"[""Tablet""]",1429.81,{},14211,0,North America +2023-07-29,21921,8548,"[""Tablet"", ""Monitor"", ""Phone""]",3173.66,{},135393,0,South America +2023-12-18,21922,7615,"[""Headphones"", ""Tablet""]",4602.64,"{""promo"": ""21%""}",81258,0,Europe +2023-07-11,21923,5585,"[""Headphones"", ""Keyboard""]",1941.01,{},77883,0,North America +2023-10-10,21924,6288,"[""Keyboard"", ""Wireless Mouse""]",3278.63,"{""seasonal"": ""28%""}",245997,1,Africa +2024-03-08,21925,2733,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3774.06,{},78755,1,South America +2024-05-26,21926,8598,"[""Phone""]",2010.68,"{"""": ""20%""}",150455,1,South America +2024-03-09,21927,1010,"[""Keyboard""]",568.73,"{""promo"": ""15%""}",36364,1,Asia +2024-01-29,21928,2985,"[""Laptop"", ""Tablet""]",4152.79,"{""seasonal"": ""23%""}",191321,0,Asia +2023-10-12,21929,1847,"[""Monitor"", ""Tablet""]",2600.78,"{""loyalty"": ""17%""}",78614,1,North America +2024-06-05,21930,5130,"[""Phone"", ""Charger""]",181.97,"{""seasonal"": ""24%""}",120928,0,Europe +2023-03-10,21931,1272,"[""Laptop"", ""Charger""]",3719.99,{},258493,1,North America +2024-05-27,21932,2332,"[""Charger"", ""Phone""]",4682.64,"{""promo"": ""16%""}",107167,0,Africa +2023-10-06,21933,6446,"[""Monitor"", ""Headphones"", ""Keyboard""]",4506.64,"{""promo"": ""14%""}",6828,0,Europe +2024-10-03,21934,2152,"[""Keyboard""]",2989.39,"{""promo"": ""11%""}",197477,1,Africa +2023-02-05,21935,3473,"[""Headphones"", ""Keyboard""]",2832.8,"{""loyalty"": ""8%""}",297698,0,Europe +2024-04-05,21936,2581,"[""Tablet"", ""Wireless Mouse""]",3655.05,{},76292,0,Asia +2024-10-18,21937,2499,"[""Phone"", ""Keyboard"", ""Headphones""]",3520.47,"{""seasonal"": ""12%""}",65643,1,Asia +2023-12-05,21938,6305,"[""Headphones"", ""Keyboard"", ""Laptop""]",2807.28,{},150938,1,South America +2024-07-27,21939,2632,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3259.52,{},279830,1,Asia +2023-03-13,21940,2809,"[""Phone"", ""Tablet"", ""Headphones""]",3774.71,{},130521,1,North America +2024-05-27,21941,3114,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1217.57,{},83140,0,Europe +2024-10-13,21942,8726,"[""Keyboard"", ""Charger"", ""Laptop""]",3062.51,{},188531,0,Europe +2023-01-06,21943,3960,"[""Phone"", ""Charger"", ""Tablet""]",227.24,"{""loyalty"": ""18%""}",164107,1,Europe +2023-01-30,21944,2207,"[""Charger""]",2093.83,"{""seasonal"": ""28%""}",82266,1,Africa +2024-09-07,21945,2965,"[""Phone""]",2531.79,"{"""": ""27%""}",54098,1,North America +2024-07-20,21946,9854,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4816.07,{},90887,1,South America +2023-06-18,21947,5179,"[""Phone""]",3651.25,{},83410,1,Asia +2024-07-14,21948,7470,"[""Keyboard""]",1354.48,"{"""": ""5%""}",291288,1,Africa +2023-02-13,21949,7098,"[""Keyboard""]",3251.54,{},132341,1,Asia +2024-04-10,21950,7378,"[""Laptop""]",3633.06,"{""seasonal"": ""11%""}",129448,1,Europe +2024-05-15,21951,2979,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",877.09,{},48826,0,Asia +2024-10-26,21952,2600,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2029.05,"{""loyalty"": ""17%""}",277671,0,Africa +2023-12-14,21953,5466,"[""Phone"", ""Monitor"", ""Tablet""]",775.55,"{""seasonal"": ""13%""}",246538,1,Europe +2024-10-18,21954,3925,"[""Laptop"", ""Phone""]",3746.25,"{""loyalty"": ""16%""}",182460,1,Europe +2023-11-24,21955,9965,"[""Monitor"", ""Phone""]",242.42,{},143836,1,South America +2024-10-20,21956,580,"[""Phone"", ""Monitor""]",1756.69,{},215337,1,Africa +2023-02-05,21957,7769,"[""Headphones"", ""Tablet"", ""Laptop""]",2092.4,{},273132,0,Asia +2024-10-06,21958,314,"[""Headphones""]",301.54,"{""loyalty"": ""27%""}",155067,0,Africa +2024-09-03,21959,8853,"[""Headphones""]",3437.93,"{""seasonal"": ""6%""}",194015,1,North America +2023-06-17,21960,9896,"[""Monitor"", ""Phone""]",3026.72,"{"""": ""17%""}",117123,0,North America +2024-11-30,21961,6627,"[""Tablet""]",2648.91,"{""promo"": ""24%""}",95404,1,South America +2024-08-24,21962,1905,"[""Phone"", ""Headphones""]",1325.19,"{""promo"": ""29%""}",10571,1,South America +2023-12-31,21963,4573,"[""Phone"", ""Headphones"", ""Laptop""]",100.49,{},188944,0,South America +2024-01-06,21964,2228,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3370.83,"{""seasonal"": ""27%""}",81624,0,Asia +2024-08-07,21965,6517,"[""Wireless Mouse"", ""Keyboard""]",111.71,{},170810,0,Europe +2023-08-06,21966,1780,"[""Monitor"", ""Phone""]",2205.27,{},266566,1,Africa +2023-07-24,21967,1421,"[""Monitor"", ""Phone"", ""Tablet""]",4646.01,{},182136,1,Africa +2024-04-24,21968,5158,"[""Monitor"", ""Tablet"", ""Phone""]",2849.46,"{""seasonal"": ""17%""}",96601,1,North America +2024-11-20,21969,72,"[""Charger"", ""Phone"", ""Headphones""]",484.27,"{"""": ""21%""}",126186,0,Asia +2023-07-08,21970,3682,"[""Headphones""]",867.84,{},155729,1,North America +2023-12-08,21971,7445,"[""Keyboard"", ""Tablet"", ""Monitor""]",1694.31,{},245494,1,South America +2024-01-28,21972,6083,"[""Phone""]",1249.67,{},135076,1,North America +2023-05-02,21973,96,"[""Phone"", ""Charger""]",1243.55,{},18322,0,Africa +2023-04-17,21974,2170,"[""Laptop"", ""Headphones"", ""Monitor""]",1530.3,"{"""": ""20%""}",284216,1,Asia +2023-05-14,21975,3262,"[""Headphones"", ""Phone""]",3228.43,"{""promo"": ""26%""}",119014,1,North America +2024-01-23,21976,6777,"[""Phone"", ""Headphones"", ""Laptop""]",4437.19,"{""seasonal"": ""14%""}",260803,1,Europe +2023-10-04,21977,9426,"[""Keyboard"", ""Tablet""]",1207.85,{},176579,0,Asia +2024-08-12,21978,3314,"[""Laptop""]",3685.84,"{""promo"": ""16%""}",112383,1,Europe +2024-09-30,21979,5448,"[""Headphones""]",3568.26,"{""promo"": ""20%""}",14698,0,Asia +2023-07-07,21980,9122,"[""Laptop""]",4348.87,"{""promo"": ""16%""}",82621,1,Asia +2023-10-23,21981,6515,"[""Headphones"", ""Monitor""]",2856.53,"{""seasonal"": ""8%""}",105457,1,Europe +2024-08-05,21982,7432,"[""Laptop"", ""Keyboard""]",3180.43,{},86963,0,Asia +2024-12-29,21983,5963,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3222.0,"{""promo"": ""9%""}",281253,1,Asia +2023-08-15,21984,6788,"[""Tablet""]",853.59,{},199479,0,Africa +2023-05-05,21985,495,"[""Headphones""]",4296.06,{},179350,0,Asia +2024-10-24,21986,9762,"[""Charger"", ""Tablet""]",979.79,{},214943,1,Europe +2024-01-04,21987,6316,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",920.14,"{""loyalty"": ""15%""}",38415,1,North America +2023-07-31,21988,7751,"[""Headphones""]",3445.13,{},279113,0,North America +2023-08-06,21989,5096,"[""Tablet""]",2377.61,{},181336,0,Africa +2023-12-07,21990,9352,"[""Monitor"", ""Tablet""]",236.16,"{""promo"": ""6%""}",261267,1,South America +2024-08-24,21991,8246,"[""Keyboard"", ""Headphones""]",1262.03,{},246356,0,Europe +2023-04-14,21992,2982,"[""Wireless Mouse"", ""Charger""]",1442.01,{},60731,0,Europe +2023-02-16,21993,249,"[""Tablet"", ""Monitor"", ""Phone""]",1554.66,{},217134,1,South America +2024-07-27,21994,2301,"[""Laptop"", ""Keyboard"", ""Phone""]",4398.38,{},176513,0,Asia +2023-08-19,21995,6362,"[""Headphones"", ""Laptop"", ""Charger""]",566.25,{},11331,1,South America +2024-12-18,21996,4524,"[""Monitor"", ""Tablet"", ""Headphones""]",2189.89,"{""seasonal"": ""28%""}",13555,1,Europe +2023-04-12,21997,271,"[""Laptop"", ""Wireless Mouse""]",2590.54,"{""loyalty"": ""21%""}",295897,1,Africa +2024-05-10,21998,339,"[""Keyboard"", ""Phone""]",1139.15,{},121090,1,North America +2023-01-08,21999,1606,"[""Phone"", ""Monitor""]",119.97,{},82742,1,Asia +2023-10-29,22000,9054,"[""Keyboard"", ""Charger""]",821.92,{},158924,1,South America +2024-03-15,22001,8772,"[""Laptop""]",4016.24,{},27416,0,Africa +2023-01-08,22002,5900,"[""Keyboard""]",669.73,{},120572,0,Africa +2023-10-01,22003,1686,"[""Phone""]",753.47,{},265543,0,Europe +2023-07-01,22004,4676,"[""Wireless Mouse""]",687.15,{},141873,1,Africa +2023-04-20,22005,5171,"[""Phone"", ""Headphones"", ""Monitor""]",4979.01,{},87355,0,South America +2024-04-08,22006,7978,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",289.33,{},22845,0,Africa +2024-11-09,22007,3082,"[""Laptop"", ""Charger"", ""Phone""]",3258.1,{},37063,1,Asia +2023-04-10,22008,7482,"[""Charger"", ""Phone""]",1773.55,"{""promo"": ""9%""}",274633,0,Asia +2023-11-21,22009,8040,"[""Keyboard""]",4534.59,"{""loyalty"": ""8%""}",155404,1,South America +2024-10-28,22010,8360,"[""Headphones"", ""Phone""]",4568.32,{},263014,1,Africa +2024-10-08,22011,6387,"[""Phone"", ""Laptop""]",2439.95,"{""promo"": ""25%""}",133227,1,South America +2023-01-20,22012,7183,"[""Headphones""]",4775.4,"{"""": ""29%""}",172202,1,Asia +2024-11-20,22013,4367,"[""Laptop"", ""Wireless Mouse""]",2260.81,{},204837,1,North America +2023-07-28,22014,867,"[""Laptop"", ""Keyboard""]",1747.58,"{""loyalty"": ""23%""}",148811,1,Europe +2023-10-27,22015,3897,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1817.24,{},245827,0,North America +2024-06-10,22016,365,"[""Keyboard""]",2578.44,{},134452,0,North America +2023-08-30,22017,8017,"[""Phone""]",1488.58,"{""promo"": ""26%""}",58610,1,Africa +2024-01-10,22018,4383,"[""Headphones""]",2331.27,{},93861,1,North America +2023-08-15,22019,3317,"[""Keyboard"", ""Tablet"", ""Headphones""]",445.52,"{""seasonal"": ""7%""}",278198,0,Africa +2024-09-20,22020,4687,"[""Monitor"", ""Charger"", ""Keyboard""]",2662.07,"{"""": ""12%""}",78806,1,Europe +2023-02-19,22021,2034,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3598.74,{},163270,1,North America +2023-01-09,22022,553,"[""Monitor"", ""Keyboard"", ""Phone""]",418.48,{},255547,1,Europe +2023-04-20,22023,6142,"[""Keyboard"", ""Phone""]",4283.02,{},187183,1,South America +2024-11-06,22024,9385,"[""Wireless Mouse"", ""Keyboard""]",4148.61,"{""seasonal"": ""28%""}",43336,1,South America +2024-02-08,22025,4843,"[""Monitor"", ""Wireless Mouse""]",3965.79,"{"""": ""29%""}",7164,0,Europe +2023-03-04,22026,6340,"[""Phone"", ""Headphones""]",2347.53,"{""seasonal"": ""23%""}",53679,1,Asia +2024-01-05,22027,468,"[""Keyboard""]",1427.62,"{""seasonal"": ""24%""}",243466,0,South America +2024-10-23,22028,1193,"[""Laptop"", ""Charger"", ""Monitor""]",1225.09,"{"""": ""19%""}",236998,1,North America +2024-04-11,22029,5180,"[""Charger""]",223.97,"{""promo"": ""5%""}",203070,0,Europe +2023-12-30,22030,2090,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3653.58,"{""loyalty"": ""20%""}",50617,0,Asia +2023-05-03,22031,5545,"[""Headphones""]",3111.28,{},261756,0,Africa +2024-06-25,22032,38,"[""Wireless Mouse"", ""Headphones""]",3080.43,"{""loyalty"": ""8%""}",56684,1,South America +2023-02-08,22033,8280,"[""Wireless Mouse""]",2292.48,"{"""": ""30%""}",294672,1,Europe +2023-01-31,22034,7989,"[""Headphones"", ""Laptop"", ""Charger""]",2665.3,"{""promo"": ""10%""}",202942,0,Europe +2024-09-12,22035,328,"[""Laptop"", ""Tablet""]",709.89,"{""seasonal"": ""15%""}",148617,1,Asia +2024-04-29,22036,6255,"[""Headphones"", ""Keyboard""]",1552.54,{},250133,0,North America +2023-04-05,22037,7837,"[""Phone"", ""Charger"", ""Laptop""]",371.13,{},192419,0,North America +2023-06-22,22038,4594,"[""Laptop"", ""Charger"", ""Headphones""]",1271.67,"{""loyalty"": ""23%""}",43856,1,North America +2023-11-25,22039,5800,"[""Monitor"", ""Headphones""]",3543.79,{},80053,0,North America +2024-02-01,22040,4127,"[""Phone""]",3716.42,{},1192,1,Africa +2023-03-01,22041,52,"[""Keyboard""]",2287.55,{},45538,1,North America +2023-10-13,22042,2495,"[""Headphones"", ""Wireless Mouse""]",4541.79,"{"""": ""6%""}",273128,1,Africa +2023-06-28,22043,4901,"[""Monitor"", ""Headphones"", ""Laptop""]",3421.14,{},82357,0,Europe +2024-12-18,22044,1115,"[""Laptop""]",998.53,"{""promo"": ""25%""}",273119,0,North America +2024-01-27,22045,2850,"[""Headphones"", ""Tablet""]",1764.38,{},254507,0,Asia +2024-08-19,22046,8219,"[""Headphones"", ""Monitor"", ""Tablet""]",1526.04,"{"""": ""17%""}",295074,0,Europe +2023-10-09,22047,9964,"[""Headphones"", ""Laptop""]",2066.61,"{""seasonal"": ""14%""}",71486,1,Asia +2024-11-16,22048,5324,"[""Wireless Mouse"", ""Laptop""]",4398.36,"{""loyalty"": ""28%""}",116318,0,Africa +2023-04-10,22049,1688,"[""Monitor""]",2492.13,"{""promo"": ""23%""}",75562,1,Europe +2023-05-28,22050,2784,"[""Wireless Mouse""]",4229.94,"{"""": ""14%""}",49546,1,Asia +2023-08-23,22051,3613,"[""Tablet"", ""Laptop"", ""Phone""]",4105.79,"{""loyalty"": ""18%""}",124603,1,Europe +2024-08-13,22052,5697,"[""Laptop"", ""Charger""]",2340.59,{},270625,1,Asia +2023-04-29,22053,2740,"[""Laptop""]",4451.69,{},186803,0,Africa +2024-12-23,22054,270,"[""Charger""]",1702.13,"{""loyalty"": ""20%""}",239717,1,Asia +2024-11-10,22055,3830,"[""Headphones"", ""Wireless Mouse""]",3003.78,{},253069,0,Africa +2024-03-05,22056,7526,"[""Monitor""]",4655.35,"{""loyalty"": ""9%""}",297880,0,Europe +2023-07-15,22057,8326,"[""Monitor""]",3385.41,{},40278,0,Europe +2023-12-31,22058,3701,"[""Charger""]",2022.05,{},99253,1,Europe +2023-07-30,22059,7491,"[""Laptop"", ""Headphones""]",905.75,"{"""": ""8%""}",165091,1,North America +2024-08-31,22060,8890,"[""Headphones""]",2245.39,"{"""": ""20%""}",48942,0,Asia +2023-02-28,22061,5264,"[""Monitor"", ""Charger""]",4754.99,"{"""": ""5%""}",103688,1,Europe +2023-10-22,22062,3935,"[""Laptop""]",1264.8,{},177218,1,North America +2024-04-09,22063,3568,"[""Monitor""]",822.94,"{"""": ""14%""}",136237,0,North America +2023-02-28,22064,6648,"[""Headphones"", ""Tablet""]",210.38,{},17537,1,Africa +2023-09-17,22065,7967,"[""Headphones""]",2213.69,"{"""": ""19%""}",253456,1,Africa +2023-04-13,22066,2281,"[""Headphones""]",3714.04,{},263930,0,Asia +2024-05-17,22067,1571,"[""Wireless Mouse"", ""Headphones""]",1174.88,"{""loyalty"": ""14%""}",124094,1,Africa +2024-07-14,22068,6516,"[""Phone"", ""Laptop"", ""Headphones""]",4303.58,{},279317,0,North America +2024-12-11,22069,2620,"[""Headphones"", ""Laptop"", ""Phone""]",3905.54,"{""seasonal"": ""12%""}",48121,1,South America +2024-02-09,22070,688,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4912.29,{},223136,0,North America +2024-10-23,22071,2483,"[""Laptop"", ""Headphones"", ""Keyboard""]",1740.97,{},96523,1,Europe +2023-09-27,22072,7536,"[""Tablet"", ""Wireless Mouse""]",2959.42,"{""loyalty"": ""14%""}",287347,0,South America +2023-08-17,22073,3290,"[""Keyboard"", ""Wireless Mouse""]",3472.33,{},180471,1,Asia +2024-08-11,22074,6150,"[""Keyboard"", ""Phone""]",2293.98,{},103780,1,Africa +2024-02-02,22075,9149,"[""Monitor"", ""Wireless Mouse""]",2270.72,"{"""": ""21%""}",8677,1,Europe +2024-05-26,22076,8069,"[""Tablet""]",1324.07,{},83587,1,Africa +2024-03-18,22077,9905,"[""Keyboard"", ""Tablet""]",2366.46,{},232973,1,Asia +2024-05-16,22078,8598,"[""Phone"", ""Laptop"", ""Tablet""]",4798.79,"{""loyalty"": ""8%""}",256318,1,Asia +2024-10-30,22079,4374,"[""Laptop"", ""Keyboard""]",1357.44,"{""seasonal"": ""19%""}",216280,1,North America +2023-01-24,22080,1642,"[""Phone""]",3122.45,{},50466,1,North America +2023-12-24,22081,428,"[""Charger"", ""Phone"", ""Monitor""]",4595.23,"{""seasonal"": ""25%""}",79505,0,Asia +2024-06-24,22082,7730,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4842.25,"{""seasonal"": ""21%""}",87677,0,South America +2024-01-17,22083,2535,"[""Keyboard""]",1238.11,{},99774,1,Asia +2024-09-13,22084,4969,"[""Phone"", ""Laptop"", ""Monitor""]",3154.51,{},21772,1,South America +2023-12-17,22085,2548,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",534.13,"{""loyalty"": ""15%""}",81655,1,Africa +2023-04-18,22086,9582,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2096.2,{},250454,1,South America +2023-04-08,22087,9707,"[""Wireless Mouse""]",126.49,{},198946,0,Asia +2024-03-27,22088,7741,"[""Phone""]",1517.43,"{""promo"": ""23%""}",56780,1,South America +2023-10-20,22089,9517,"[""Wireless Mouse"", ""Laptop""]",476.7,{},14701,1,Europe +2024-12-28,22090,6504,"[""Phone"", ""Laptop"", ""Keyboard""]",3092.45,{},200439,0,South America +2024-03-18,22091,4564,"[""Headphones"", ""Tablet"", ""Phone""]",3458.97,{},74964,0,Europe +2024-02-28,22092,4252,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2042.18,{},65689,0,North America +2023-12-18,22093,8072,"[""Monitor"", ""Laptop""]",4440.83,{},246985,0,Africa +2023-12-24,22094,6700,"[""Phone"", ""Charger""]",1681.18,{},281167,1,Africa +2024-11-24,22095,6363,"[""Wireless Mouse""]",3362.57,"{"""": ""24%""}",137270,0,Asia +2024-08-22,22096,5563,"[""Laptop"", ""Monitor"", ""Headphones""]",293.82,{},138075,1,North America +2023-09-11,22097,8146,"[""Monitor""]",111.4,{},159901,1,Asia +2023-01-31,22098,3603,"[""Wireless Mouse""]",205.71,"{""promo"": ""28%""}",231968,1,North America +2024-04-14,22099,6290,"[""Tablet"", ""Headphones""]",824.14,{},201315,0,Africa +2023-10-18,22100,9085,"[""Charger"", ""Phone""]",2778.4,"{""loyalty"": ""18%""}",65191,1,Africa +2023-01-11,22101,386,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1527.26,"{""seasonal"": ""19%""}",268237,0,South America +2024-01-23,22102,5022,"[""Headphones"", ""Monitor""]",2701.95,"{"""": ""11%""}",215831,0,South America +2024-05-25,22103,33,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3576.48,"{""seasonal"": ""8%""}",165514,0,North America +2023-04-07,22104,5852,"[""Headphones""]",2059.42,"{""seasonal"": ""11%""}",79661,1,North America +2024-05-12,22105,7046,"[""Tablet"", ""Monitor""]",4297.44,"{""seasonal"": ""12%""}",63881,0,South America +2024-05-21,22106,3195,"[""Charger"", ""Tablet"", ""Monitor""]",2871.43,{},254572,0,South America +2024-04-30,22107,9172,"[""Tablet""]",3385.36,{},238570,1,North America +2024-07-02,22108,144,"[""Keyboard"", ""Charger"", ""Laptop""]",4409.42,"{""loyalty"": ""15%""}",214179,0,South America +2023-09-13,22109,136,"[""Wireless Mouse"", ""Laptop""]",1193.73,{},93003,1,Africa +2023-08-31,22110,5121,"[""Tablet"", ""Charger"", ""Keyboard""]",2164.88,"{"""": ""26%""}",192043,0,Europe +2023-02-08,22111,1790,"[""Monitor"", ""Headphones""]",3226.35,{},264553,0,South America +2024-06-13,22112,8652,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2107.18,"{""seasonal"": ""22%""}",250644,0,North America +2023-09-09,22113,3860,"[""Laptop"", ""Tablet""]",1223.21,"{"""": ""19%""}",67753,0,Europe +2024-02-26,22114,1644,"[""Keyboard""]",1047.37,"{"""": ""5%""}",246216,0,Africa +2023-06-17,22115,7058,"[""Keyboard"", ""Headphones"", ""Laptop""]",3152.44,"{""seasonal"": ""19%""}",150533,1,Asia +2023-06-13,22116,8277,"[""Tablet"", ""Phone""]",966.37,{},90840,1,North America +2024-01-16,22117,5726,"[""Tablet""]",3082.03,"{"""": ""6%""}",176871,0,Europe +2023-02-05,22118,5639,"[""Headphones""]",1717.79,{},47097,1,Asia +2023-06-28,22119,5465,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",250.71,"{""promo"": ""18%""}",247157,1,Africa +2023-12-31,22120,331,"[""Keyboard""]",3694.5,"{""promo"": ""7%""}",53849,1,North America +2024-11-07,22121,9017,"[""Monitor""]",4017.59,"{""seasonal"": ""20%""}",113297,1,North America +2024-01-14,22122,4411,"[""Phone""]",2454.84,{},298599,1,Europe +2023-10-22,22123,1410,"[""Tablet"", ""Laptop"", ""Charger""]",3811.49,"{"""": ""26%""}",175840,0,Africa +2023-12-18,22124,4361,"[""Monitor""]",2480.66,"{""loyalty"": ""21%""}",125642,1,Europe +2023-06-17,22125,4167,"[""Monitor"", ""Headphones""]",4191.16,"{""promo"": ""18%""}",293117,1,Asia +2023-12-11,22126,9569,"[""Tablet"", ""Monitor""]",3334.5,{},19930,1,South America +2024-04-07,22127,6041,"[""Keyboard""]",2550.63,{},144156,1,South America +2024-06-06,22128,4178,"[""Laptop"", ""Keyboard""]",2068.01,"{""promo"": ""22%""}",109324,1,North America +2024-05-27,22129,5939,"[""Keyboard"", ""Tablet""]",4356.72,"{"""": ""26%""}",137110,0,South America +2024-04-08,22130,1217,"[""Wireless Mouse""]",3483.94,{},76166,0,South America +2023-05-24,22131,430,"[""Wireless Mouse""]",3268.88,{},143742,1,Asia +2024-07-17,22132,2590,"[""Keyboard"", ""Monitor""]",4107.24,"{""promo"": ""18%""}",224770,0,Europe +2024-05-19,22133,6166,"[""Keyboard""]",153.67,{},285307,1,North America +2024-11-14,22134,6059,"[""Charger"", ""Headphones""]",3467.94,"{""promo"": ""30%""}",277934,0,Africa +2023-02-16,22135,4797,"[""Charger"", ""Monitor"", ""Laptop""]",296.07,"{"""": ""28%""}",220944,0,North America +2024-12-23,22136,1149,"[""Headphones"", ""Keyboard"", ""Laptop""]",2002.34,"{""loyalty"": ""30%""}",154886,1,South America +2024-05-29,22137,3754,"[""Charger"", ""Keyboard"", ""Laptop""]",1937.65,"{""seasonal"": ""30%""}",135233,1,Asia +2024-09-18,22138,1822,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2526.96,{},155000,0,South America +2024-09-18,22139,7873,"[""Charger"", ""Tablet""]",3026.6,{},5014,0,North America +2024-07-15,22140,9292,"[""Phone"", ""Headphones""]",1312.9,"{""seasonal"": ""22%""}",276317,0,Asia +2024-10-26,22141,6280,"[""Tablet""]",4228.25,{},230025,0,South America +2023-11-28,22142,4194,"[""Keyboard""]",919.59,"{""promo"": ""25%""}",238095,0,South America +2023-09-17,22143,8103,"[""Monitor"", ""Keyboard"", ""Tablet""]",1024.69,{},237372,1,Europe +2023-10-04,22144,1334,"[""Monitor""]",4660.96,{},257471,0,Europe +2023-05-12,22145,1181,"[""Headphones"", ""Wireless Mouse""]",1568.69,{},261887,1,Asia +2023-09-24,22146,6724,"[""Wireless Mouse"", ""Monitor""]",2269.32,"{""promo"": ""11%""}",49477,1,Africa +2023-11-05,22147,1599,"[""Phone"", ""Laptop"", ""Keyboard""]",367.8,"{"""": ""27%""}",158350,0,Africa +2024-01-22,22148,1847,"[""Keyboard""]",3865.01,"{""seasonal"": ""30%""}",261418,0,Europe +2023-06-13,22149,7933,"[""Monitor""]",3611.78,"{"""": ""24%""}",235236,0,South America +2024-05-23,22150,8243,"[""Laptop""]",1304.02,"{""loyalty"": ""15%""}",215899,0,South America +2023-12-06,22151,7351,"[""Tablet"", ""Phone"", ""Charger""]",2964.89,{},273085,0,Europe +2024-01-08,22152,6433,"[""Wireless Mouse"", ""Monitor""]",627.24,"{"""": ""14%""}",128285,0,Africa +2023-05-28,22153,7646,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1898.54,{},274894,1,Asia +2024-06-09,22154,2754,"[""Keyboard"", ""Charger""]",2028.44,{},178296,0,South America +2024-04-04,22155,7811,"[""Tablet""]",2634.86,"{""loyalty"": ""17%""}",128442,1,Europe +2024-03-28,22156,9731,"[""Tablet""]",674.15,"{""loyalty"": ""7%""}",153817,0,Africa +2024-04-04,22157,7017,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",615.11,{},130219,1,South America +2024-10-11,22158,542,"[""Laptop""]",3715.93,{},240735,1,North America +2024-07-30,22159,572,"[""Keyboard"", ""Charger""]",2079.14,{},11689,1,South America +2023-02-21,22160,6206,"[""Phone"", ""Monitor""]",2413.62,"{""seasonal"": ""26%""}",169021,0,Africa +2023-07-17,22161,9572,"[""Keyboard"", ""Tablet""]",3419.18,"{""promo"": ""6%""}",192820,0,North America +2024-01-09,22162,6294,"[""Monitor""]",2851.53,"{""seasonal"": ""24%""}",259198,1,Africa +2024-12-27,22163,9813,"[""Tablet"", ""Laptop""]",1440.52,{},299093,1,Africa +2024-05-14,22164,6519,"[""Charger"", ""Headphones"", ""Laptop""]",1882.94,{},114847,0,Africa +2023-05-23,22165,5597,"[""Keyboard"", ""Tablet"", ""Headphones""]",3558.05,"{""seasonal"": ""25%""}",259022,0,Europe +2024-09-25,22166,1162,"[""Keyboard"", ""Monitor"", ""Tablet""]",2272.22,"{""seasonal"": ""24%""}",83941,0,Europe +2023-02-09,22167,8913,"[""Keyboard""]",4418.43,{},73247,1,Europe +2024-03-06,22168,7841,"[""Monitor"", ""Tablet"", ""Phone""]",1250.45,"{""loyalty"": ""20%""}",117729,0,Asia +2023-02-21,22169,8339,"[""Laptop"", ""Headphones""]",4941.76,{},235590,0,Africa +2023-10-05,22170,5365,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4198.85,"{""seasonal"": ""10%""}",227934,0,Europe +2024-11-29,22171,9208,"[""Charger""]",825.94,{},165172,1,Asia +2024-10-26,22172,1944,"[""Wireless Mouse"", ""Phone""]",1574.53,"{""loyalty"": ""14%""}",24315,0,Africa +2024-06-03,22173,8013,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3652.37,{},198801,0,North America +2024-08-21,22174,6683,"[""Charger"", ""Laptop"", ""Tablet""]",701.54,{},292537,0,South America +2024-09-18,22175,8538,"[""Laptop""]",3139.65,"{""loyalty"": ""23%""}",176170,1,Africa +2023-08-11,22176,1109,"[""Keyboard""]",4687.0,{},153175,0,Asia +2024-07-16,22177,5303,"[""Keyboard"", ""Monitor""]",1333.97,"{""promo"": ""6%""}",298813,0,Africa +2024-12-03,22178,5312,"[""Laptop""]",4334.47,"{"""": ""14%""}",45351,1,Asia +2023-06-04,22179,584,"[""Charger"", ""Keyboard""]",2735.26,"{""promo"": ""16%""}",68118,1,Europe +2024-09-08,22180,7392,"[""Monitor""]",2017.2,"{"""": ""28%""}",228810,1,Asia +2023-10-10,22181,549,"[""Monitor""]",2518.35,{},105334,1,South America +2024-06-12,22182,5349,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1835.2,"{""loyalty"": ""13%""}",185342,0,South America +2023-09-21,22183,4130,"[""Phone""]",3876.18,{},193434,0,Africa +2023-06-02,22184,5404,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3527.46,"{""promo"": ""8%""}",105341,1,South America +2023-05-10,22185,4777,"[""Charger"", ""Laptop""]",2581.94,{},67176,0,South America +2023-09-10,22186,67,"[""Laptop"", ""Headphones"", ""Monitor""]",4555.08,"{""loyalty"": ""23%""}",107778,1,Africa +2023-06-13,22187,5065,"[""Headphones""]",2821.59,"{"""": ""10%""}",248502,0,South America +2024-02-19,22188,7331,"[""Wireless Mouse""]",1222.2,{},118524,1,North America +2024-01-28,22189,9230,"[""Keyboard""]",3390.02,{},104539,1,North America +2023-06-29,22190,2827,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4902.36,"{""loyalty"": ""19%""}",47207,0,Asia +2023-04-13,22191,653,"[""Monitor"", ""Tablet"", ""Charger""]",1631.34,{},106959,1,Africa +2024-10-08,22192,4616,"[""Tablet"", ""Headphones"", ""Phone""]",2481.69,"{""seasonal"": ""18%""}",274424,1,Africa +2024-11-12,22193,4346,"[""Headphones"", ""Laptop""]",3449.05,{},29083,0,Asia +2023-09-04,22194,1490,"[""Keyboard""]",70.23,{},213172,1,South America +2023-10-29,22195,7118,"[""Headphones"", ""Laptop""]",3477.25,"{"""": ""19%""}",123128,0,South America +2023-03-08,22196,7480,"[""Monitor""]",4761.63,{},264908,0,Africa +2023-11-22,22197,497,"[""Tablet"", ""Keyboard"", ""Phone""]",849.32,{},267480,1,Europe +2023-03-28,22198,2293,"[""Headphones""]",4376.84,"{""promo"": ""16%""}",66557,0,Asia +2024-10-14,22199,4496,"[""Charger"", ""Monitor""]",2603.32,{},23190,0,South America +2023-02-23,22200,3924,"[""Tablet""]",4033.74,{},292932,1,Asia +2024-10-24,22201,8358,"[""Keyboard"", ""Laptop"", ""Tablet""]",103.74,"{""loyalty"": ""5%""}",85419,0,South America +2023-08-22,22202,8399,"[""Phone"", ""Keyboard""]",767.41,{},136694,0,South America +2024-11-06,22203,5697,"[""Monitor"", ""Phone"", ""Tablet""]",247.04,{},98174,0,Africa +2023-04-03,22204,9832,"[""Keyboard""]",3234.54,"{""promo"": ""24%""}",21652,1,North America +2023-12-31,22205,8389,"[""Laptop""]",864.03,{},266131,1,Asia +2023-08-11,22206,3355,"[""Phone"", ""Charger"", ""Headphones""]",796.65,{},153164,0,North America +2024-08-18,22207,5906,"[""Charger""]",4344.48,"{"""": ""18%""}",36435,0,North America +2024-02-20,22208,3833,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3459.71,"{""promo"": ""6%""}",48696,0,Africa +2023-11-29,22209,6535,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3335.43,{},102405,0,Asia +2023-11-26,22210,7843,"[""Wireless Mouse"", ""Tablet""]",4481.46,"{""promo"": ""27%""}",274990,1,Asia +2024-04-28,22211,3634,"[""Headphones"", ""Charger""]",4633.33,"{""promo"": ""26%""}",242858,1,Asia +2024-07-12,22212,3969,"[""Headphones"", ""Laptop""]",3367.88,{},173906,1,Europe +2023-08-24,22213,7594,"[""Phone"", ""Wireless Mouse""]",2378.17,{},136896,1,Asia +2023-11-20,22214,675,"[""Headphones"", ""Keyboard"", ""Charger""]",4594.72,{},59182,1,Asia +2024-11-02,22215,1276,"[""Charger"", ""Laptop"", ""Tablet""]",611.28,"{""seasonal"": ""6%""}",293750,1,North America +2023-06-08,22216,606,"[""Keyboard""]",1649.45,"{""loyalty"": ""7%""}",136565,0,Asia +2023-07-05,22217,4414,"[""Tablet"", ""Phone""]",1436.69,"{""loyalty"": ""23%""}",84739,0,North America +2024-03-26,22218,2658,"[""Laptop""]",2522.35,{},166860,1,North America +2023-06-01,22219,9098,"[""Headphones"", ""Monitor""]",1601.54,{},110368,1,North America +2024-10-12,22220,6727,"[""Keyboard"", ""Headphones""]",4372.83,"{""promo"": ""28%""}",150945,0,Asia +2024-06-16,22221,4198,"[""Tablet""]",2612.32,{},80697,0,South America +2023-11-15,22222,6790,"[""Laptop"", ""Keyboard"", ""Charger""]",4133.27,{},129959,1,North America +2024-05-20,22223,5547,"[""Laptop"", ""Tablet""]",2172.08,{},263101,1,Asia +2023-01-07,22224,7367,"[""Phone""]",3223.01,"{""promo"": ""30%""}",86799,0,North America +2023-01-31,22225,8346,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3091.47,{},164050,1,Asia +2023-07-30,22226,1140,"[""Monitor"", ""Headphones"", ""Tablet""]",4274.5,{},216979,1,Africa +2023-07-01,22227,1302,"[""Headphones""]",1024.05,"{""loyalty"": ""23%""}",108468,0,Asia +2023-03-10,22228,2861,"[""Headphones"", ""Monitor"", ""Tablet""]",2279.2,"{""loyalty"": ""26%""}",198234,0,Europe +2023-12-05,22229,8098,"[""Phone""]",590.19,{},79711,0,North America +2023-07-17,22230,5254,"[""Monitor"", ""Tablet"", ""Phone""]",3701.55,{},22336,0,Asia +2023-11-28,22231,8595,"[""Tablet"", ""Laptop""]",3219.97,"{""seasonal"": ""19%""}",30408,1,South America +2024-10-07,22232,7290,"[""Charger"", ""Tablet""]",4542.23,"{"""": ""28%""}",236839,1,Asia +2024-02-27,22233,6135,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",867.18,"{"""": ""17%""}",137982,0,Africa +2023-10-20,22234,8538,"[""Tablet"", ""Wireless Mouse""]",3764.04,"{""promo"": ""5%""}",106373,0,North America +2023-12-16,22235,9515,"[""Monitor"", ""Keyboard""]",2176.93,{},33443,0,South America +2023-05-15,22236,1472,"[""Wireless Mouse""]",3916.98,"{""seasonal"": ""29%""}",143234,0,North America +2023-01-18,22237,4613,"[""Monitor"", ""Headphones""]",4439.64,{},257232,1,Africa +2024-10-18,22238,1265,"[""Monitor""]",2795.86,"{"""": ""24%""}",2226,0,North America +2024-11-05,22239,2547,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1116.06,{},289628,1,Asia +2023-07-18,22240,8551,"[""Headphones""]",1485.54,{},196632,1,Asia +2024-05-26,22241,1241,"[""Tablet"", ""Charger""]",4517.4,{},193346,1,South America +2024-03-09,22242,1790,"[""Wireless Mouse"", ""Phone""]",377.2,"{""promo"": ""29%""}",289139,0,North America +2024-08-01,22243,6585,"[""Keyboard""]",2915.31,{},23442,1,Europe +2024-04-21,22244,9520,"[""Laptop""]",4242.01,{},293869,1,Europe +2024-08-13,22245,2975,"[""Charger""]",1921.98,{},151555,1,North America +2024-12-24,22246,8550,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2247.98,"{""promo"": ""28%""}",36907,0,Europe +2024-05-08,22247,5983,"[""Monitor"", ""Charger"", ""Laptop""]",2813.44,"{"""": ""15%""}",136337,0,North America +2024-10-21,22248,7862,"[""Laptop"", ""Monitor"", ""Phone""]",2572.27,"{""loyalty"": ""16%""}",222505,0,North America +2023-01-28,22249,8403,"[""Phone""]",3970.59,"{"""": ""19%""}",10178,1,Africa +2024-07-31,22250,4470,"[""Headphones"", ""Tablet"", ""Monitor""]",3875.38,"{""promo"": ""16%""}",47762,1,Asia +2023-12-26,22251,3683,"[""Phone"", ""Tablet"", ""Keyboard""]",3619.07,"{""promo"": ""15%""}",21562,0,North America +2024-03-21,22252,6256,"[""Laptop""]",4436.27,{},186296,0,Africa +2024-07-24,22253,8374,"[""Headphones"", ""Monitor""]",2974.71,{},63496,1,Africa +2023-07-24,22254,2894,"[""Tablet"", ""Headphones"", ""Keyboard""]",2471.51,{},149913,0,South America +2024-04-11,22255,2261,"[""Laptop"", ""Phone"", ""Keyboard""]",3164.21,"{"""": ""22%""}",259686,1,North America +2024-04-13,22256,9769,"[""Wireless Mouse"", ""Charger""]",3778.7,{},151066,0,Africa +2024-03-28,22257,5655,"[""Laptop"", ""Phone""]",4732.35,"{""promo"": ""20%""}",203280,0,Europe +2024-12-24,22258,4170,"[""Wireless Mouse"", ""Headphones""]",3440.55,"{""seasonal"": ""23%""}",136415,1,North America +2023-08-29,22259,8380,"[""Laptop"", ""Phone"", ""Keyboard""]",1563.7,"{""promo"": ""25%""}",82833,1,Africa +2024-08-21,22260,7247,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2244.37,"{""seasonal"": ""26%""}",49675,1,Asia +2024-01-09,22261,270,"[""Headphones""]",1163.7,{},127133,1,Asia +2023-10-31,22262,625,"[""Wireless Mouse""]",2070.87,{},98041,0,Asia +2024-05-14,22263,7648,"[""Keyboard""]",3583.13,{},243738,1,Asia +2023-12-17,22264,700,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",402.09,{},263474,1,South America +2024-10-28,22265,26,"[""Keyboard"", ""Monitor""]",723.91,{},91563,0,Europe +2023-09-21,22266,3956,"[""Charger"", ""Monitor""]",4216.62,"{""seasonal"": ""19%""}",73425,0,Europe +2023-11-18,22267,6943,"[""Laptop"", ""Monitor""]",727.6,{},60401,1,Africa +2023-01-30,22268,7129,"[""Laptop"", ""Headphones""]",1064.2,"{""seasonal"": ""27%""}",93790,0,North America +2024-03-17,22269,452,"[""Headphones"", ""Phone"", ""Monitor""]",183.96,"{""seasonal"": ""5%""}",86153,1,North America +2024-06-25,22270,5746,"[""Charger""]",3376.03,"{""promo"": ""6%""}",51189,0,North America +2023-08-20,22271,4112,"[""Monitor"", ""Laptop"", ""Headphones""]",4135.6,{},286934,0,South America +2024-07-31,22272,5708,"[""Headphones"", ""Phone""]",4511.11,"{""promo"": ""16%""}",211715,0,South America +2024-07-18,22273,4983,"[""Monitor"", ""Keyboard"", ""Laptop""]",2292.46,{},166482,0,Europe +2024-10-29,22274,646,"[""Laptop"", ""Phone""]",4307.8,{},48287,1,Asia +2024-01-20,22275,4240,"[""Laptop"", ""Headphones"", ""Phone""]",4144.9,{},58214,0,Africa +2024-06-06,22276,1862,"[""Phone"", ""Tablet""]",3529.78,"{""promo"": ""27%""}",63136,1,Asia +2024-06-25,22277,3905,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3241.41,"{""seasonal"": ""14%""}",116659,1,Europe +2023-04-27,22278,5187,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4136.52,"{""seasonal"": ""30%""}",139226,0,Europe +2023-04-11,22279,9262,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3478.96,"{""seasonal"": ""6%""}",120853,1,Europe +2023-11-27,22280,1332,"[""Phone"", ""Keyboard"", ""Headphones""]",4481.29,{},188862,1,Europe +2023-03-18,22281,187,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1761.19,"{""seasonal"": ""12%""}",287709,0,Africa +2023-03-30,22282,821,"[""Phone"", ""Tablet""]",4891.28,"{""promo"": ""10%""}",155651,1,Africa +2024-09-30,22283,7863,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2499.6,"{""loyalty"": ""7%""}",158978,0,Africa +2024-08-16,22284,9384,"[""Monitor""]",838.08,"{""promo"": ""8%""}",245411,1,Asia +2023-09-18,22285,1658,"[""Tablet""]",2975.52,"{""seasonal"": ""29%""}",187724,0,South America +2023-10-10,22286,7501,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2530.81,"{"""": ""11%""}",30497,0,Asia +2024-09-16,22287,5753,"[""Monitor"", ""Headphones"", ""Laptop""]",4396.2,"{""seasonal"": ""7%""}",214986,1,South America +2023-03-05,22288,5577,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1681.3,"{""loyalty"": ""30%""}",296539,0,Asia +2023-01-02,22289,7058,"[""Headphones"", ""Phone"", ""Tablet""]",960.07,"{""seasonal"": ""7%""}",110747,1,Europe +2023-09-17,22290,4370,"[""Keyboard"", ""Wireless Mouse""]",4300.06,"{""loyalty"": ""16%""}",268303,1,Asia +2024-03-22,22291,1194,"[""Keyboard""]",4777.57,{},185538,1,Asia +2023-02-22,22292,7915,"[""Phone""]",2158.78,"{""loyalty"": ""23%""}",262552,0,Europe +2023-02-05,22293,5478,"[""Tablet"", ""Laptop""]",4119.76,{},22046,0,South America +2024-04-12,22294,8871,"[""Keyboard"", ""Phone""]",2404.33,{},99332,0,Asia +2024-10-20,22295,2920,"[""Phone""]",434.35,{},76747,1,North America +2023-07-06,22296,1805,"[""Wireless Mouse"", ""Tablet""]",1696.34,"{"""": ""30%""}",102605,1,South America +2024-02-10,22297,5350,"[""Keyboard""]",3490.63,{},291172,1,South America +2023-02-05,22298,4502,"[""Keyboard"", ""Headphones"", ""Charger""]",584.2,"{"""": ""27%""}",230196,1,North America +2024-05-03,22299,2590,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1726.79,{},91621,0,North America +2024-11-19,22300,375,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1101.05,"{""loyalty"": ""7%""}",52261,1,South America +2023-06-22,22301,7136,"[""Keyboard"", ""Headphones""]",130.41,{},159580,1,South America +2024-06-11,22302,2420,"[""Keyboard"", ""Monitor"", ""Phone""]",117.47,{},172596,1,Asia +2023-03-03,22303,3179,"[""Charger"", ""Tablet"", ""Phone""]",2318.87,{},15532,0,South America +2023-07-26,22304,7562,"[""Monitor"", ""Phone"", ""Charger""]",315.73,"{"""": ""14%""}",162199,0,Asia +2023-10-03,22305,6795,"[""Monitor"", ""Headphones""]",3404.09,"{""loyalty"": ""5%""}",28368,0,Europe +2024-09-02,22306,2836,"[""Keyboard"", ""Headphones""]",2245.06,{},21632,1,Africa +2023-04-18,22307,2849,"[""Keyboard""]",1347.75,"{"""": ""12%""}",234297,0,Africa +2024-07-27,22308,43,"[""Keyboard"", ""Laptop""]",3968.72,{},40784,0,North America +2024-11-14,22309,3422,"[""Phone"", ""Headphones""]",4314.8,"{"""": ""18%""}",141485,1,Europe +2023-05-15,22310,256,"[""Laptop"", ""Headphones""]",3577.65,{},254891,1,Europe +2023-12-23,22311,6579,"[""Tablet""]",3818.23,"{""loyalty"": ""9%""}",168009,1,Europe +2023-02-19,22312,1507,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4226.13,"{""promo"": ""11%""}",15862,1,South America +2023-12-18,22313,6697,"[""Headphones""]",3172.75,"{""promo"": ""30%""}",151776,1,North America +2024-05-09,22314,823,"[""Headphones"", ""Phone""]",1421.1,{},180039,1,South America +2024-06-08,22315,3179,"[""Headphones"", ""Charger""]",508.58,{},129551,1,Asia +2023-05-25,22316,2851,"[""Monitor""]",1802.91,"{""promo"": ""6%""}",89278,0,Europe +2024-12-14,22317,4212,"[""Charger""]",2245.03,"{""promo"": ""17%""}",212144,1,Asia +2023-06-06,22318,799,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4619.6,{},139989,0,North America +2024-08-25,22319,8506,"[""Tablet"", ""Wireless Mouse""]",4121.98,{},164570,0,South America +2024-01-14,22320,5255,"[""Keyboard"", ""Monitor""]",2189.76,{},262529,0,South America +2024-12-14,22321,4985,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4588.68,"{""loyalty"": ""22%""}",80783,1,North America +2024-03-31,22322,5133,"[""Tablet"", ""Charger""]",4980.95,{},273183,0,North America +2023-12-30,22323,9724,"[""Wireless Mouse""]",482.87,"{"""": ""23%""}",146975,1,North America +2024-10-15,22324,2079,"[""Keyboard"", ""Charger"", ""Monitor""]",3702.43,{},136507,0,North America +2023-01-28,22325,9694,"[""Phone"", ""Tablet"", ""Monitor""]",1276.7,"{""seasonal"": ""25%""}",190393,1,Africa +2023-04-11,22326,1759,"[""Phone"", ""Headphones""]",394.81,"{"""": ""29%""}",153369,0,Africa +2023-04-17,22327,8689,"[""Phone"", ""Keyboard""]",4762.86,{},50951,0,Europe +2024-02-16,22328,1336,"[""Keyboard""]",2674.02,"{""promo"": ""26%""}",139736,1,Africa +2024-05-07,22329,3547,"[""Monitor"", ""Laptop"", ""Charger""]",190.08,{},114527,1,Europe +2024-07-27,22330,4940,"[""Tablet"", ""Phone""]",4995.68,"{""seasonal"": ""18%""}",189853,1,North America +2023-03-09,22331,7282,"[""Wireless Mouse""]",4844.1,{},52774,1,Africa +2023-08-15,22332,5428,"[""Phone"", ""Tablet""]",2873.42,"{""promo"": ""5%""}",69801,0,Europe +2024-09-24,22333,9798,"[""Keyboard"", ""Headphones"", ""Charger""]",2118.96,"{""promo"": ""24%""}",79932,0,Europe +2023-09-26,22334,8007,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3912.78,"{"""": ""25%""}",195405,0,Africa +2024-02-27,22335,2939,"[""Phone""]",1022.34,{},167819,1,Asia +2024-04-22,22336,2811,"[""Wireless Mouse"", ""Keyboard""]",824.08,"{""seasonal"": ""28%""}",63020,0,North America +2024-10-07,22337,8034,"[""Tablet"", ""Headphones""]",2525.93,{},3571,0,South America +2024-03-24,22338,384,"[""Laptop"", ""Monitor""]",3768.98,{},35545,0,South America +2023-01-01,22339,9104,"[""Headphones"", ""Charger""]",2711.13,{},258468,0,North America +2023-03-16,22340,1255,"[""Charger"", ""Phone"", ""Keyboard""]",4788.1,"{"""": ""22%""}",8760,1,Europe +2024-11-11,22341,5907,"[""Wireless Mouse""]",1676.47,{},248321,1,South America +2024-01-25,22342,852,"[""Keyboard""]",4815.31,{},95689,0,Europe +2023-01-15,22343,2225,"[""Phone"", ""Charger""]",2091.21,{},71462,1,North America +2023-01-25,22344,1359,"[""Keyboard"", ""Phone""]",896.82,"{""loyalty"": ""28%""}",234501,1,North America +2023-07-03,22345,1655,"[""Charger"", ""Keyboard"", ""Tablet""]",660.94,{},61625,0,South America +2024-06-27,22346,9761,"[""Keyboard"", ""Monitor""]",998.91,{},144256,0,Asia +2024-03-18,22347,1244,"[""Headphones"", ""Phone""]",1032.31,"{""seasonal"": ""26%""}",195421,1,Europe +2024-01-22,22348,8951,"[""Monitor"", ""Charger""]",2821.0,{},262042,0,Asia +2024-09-30,22349,3919,"[""Phone"", ""Laptop"", ""Monitor""]",1579.84,"{""loyalty"": ""6%""}",127839,0,Africa +2024-03-06,22350,5511,"[""Keyboard"", ""Phone""]",2010.66,"{""seasonal"": ""23%""}",116411,0,Europe +2023-02-15,22351,4689,"[""Headphones"", ""Keyboard"", ""Phone""]",1050.03,"{""loyalty"": ""24%""}",293790,1,North America +2023-11-30,22352,9680,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3653.51,{},256315,1,Europe +2023-01-16,22353,5500,"[""Tablet"", ""Headphones"", ""Laptop""]",1180.98,"{""seasonal"": ""27%""}",285625,1,Europe +2024-07-17,22354,5520,"[""Phone"", ""Tablet""]",3055.65,{},261627,1,Asia +2024-04-07,22355,2065,"[""Headphones"", ""Charger""]",920.02,{},201580,0,Asia +2024-03-03,22356,2519,"[""Laptop"", ""Monitor""]",966.79,{},220187,1,Europe +2023-08-01,22357,2442,"[""Headphones""]",2564.91,{},118389,0,Asia +2024-05-05,22358,8539,"[""Tablet"", ""Keyboard"", ""Phone""]",395.8,{},101233,0,Africa +2023-02-09,22359,9988,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2023.18,"{""promo"": ""14%""}",160713,1,North America +2024-02-26,22360,7661,"[""Laptop"", ""Headphones"", ""Keyboard""]",1945.57,"{""promo"": ""28%""}",182078,0,Asia +2024-08-24,22361,2476,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3856.96,"{"""": ""21%""}",82734,1,South America +2024-01-19,22362,4309,"[""Monitor"", ""Charger""]",3220.01,"{""loyalty"": ""5%""}",4892,1,Africa +2023-06-10,22363,506,"[""Tablet""]",4648.83,"{""loyalty"": ""5%""}",72519,1,Europe +2023-08-15,22364,6424,"[""Keyboard"", ""Phone""]",2389.86,{},69281,0,South America +2024-11-27,22365,1185,"[""Laptop"", ""Monitor"", ""Charger""]",4016.59,"{""loyalty"": ""11%""}",236922,1,North America +2023-02-17,22366,8550,"[""Keyboard"", ""Charger"", ""Headphones""]",4688.48,"{""promo"": ""17%""}",292529,0,Europe +2024-03-16,22367,9520,"[""Phone""]",551.5,{},44494,0,North America +2023-10-22,22368,4229,"[""Monitor"", ""Charger"", ""Laptop""]",2690.07,{},184642,1,Asia +2023-05-15,22369,6000,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2717.11,{},166036,1,South America +2024-04-13,22370,2454,"[""Laptop""]",1797.83,{},220641,1,North America +2024-10-07,22371,4137,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3128.63,{},26925,0,South America +2024-10-09,22372,2129,"[""Monitor"", ""Headphones""]",1852.64,"{""promo"": ""10%""}",255695,1,South America +2024-12-17,22373,6108,"[""Keyboard""]",1163.03,{},200141,1,Europe +2023-08-05,22374,4691,"[""Charger"", ""Keyboard"", ""Laptop""]",4601.58,{},105191,1,Asia +2024-08-08,22375,4839,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2954.76,"{""seasonal"": ""16%""}",7587,1,Asia +2024-09-04,22376,6970,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2664.74,{},123454,0,Asia +2024-07-02,22377,7731,"[""Charger"", ""Keyboard""]",3329.45,"{""seasonal"": ""22%""}",264993,0,Africa +2024-09-13,22378,7873,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2664.54,"{""seasonal"": ""14%""}",278273,0,Europe +2023-06-01,22379,1495,"[""Monitor"", ""Phone""]",243.74,{},273087,1,North America +2024-10-10,22380,4988,"[""Monitor""]",2271.12,"{"""": ""7%""}",245187,1,Africa +2024-03-13,22381,7730,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",305.61,{},279634,0,North America +2024-12-17,22382,5615,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3606.81,{},41897,0,North America +2023-03-24,22383,8759,"[""Headphones"", ""Charger"", ""Tablet""]",1040.79,{},261126,1,Europe +2024-06-04,22384,2755,"[""Wireless Mouse"", ""Monitor""]",1966.21,"{""seasonal"": ""22%""}",13650,1,Europe +2024-03-22,22385,667,"[""Keyboard"", ""Wireless Mouse""]",879.09,"{""promo"": ""13%""}",188820,1,South America +2024-05-08,22386,6622,"[""Wireless Mouse"", ""Charger""]",4653.79,"{""loyalty"": ""20%""}",170280,1,Africa +2024-01-12,22387,5601,"[""Laptop""]",2635.21,"{""loyalty"": ""6%""}",146488,0,Africa +2024-05-22,22388,1070,"[""Headphones"", ""Wireless Mouse""]",3283.7,{},165996,0,North America +2024-11-27,22389,4102,"[""Headphones"", ""Phone""]",691.96,"{""seasonal"": ""25%""}",109265,0,North America +2023-06-11,22390,9426,"[""Charger""]",3020.3,"{""promo"": ""25%""}",27182,0,South America +2024-12-16,22391,6280,"[""Tablet""]",52.66,{},66904,1,Africa +2023-06-10,22392,1871,"[""Monitor""]",2887.4,"{""promo"": ""27%""}",131872,0,North America +2023-11-04,22393,9144,"[""Headphones"", ""Laptop""]",3257.8,"{""loyalty"": ""26%""}",149034,0,South America +2024-01-23,22394,7082,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4734.84,"{""seasonal"": ""23%""}",99847,0,Asia +2023-07-09,22395,5192,"[""Wireless Mouse""]",3879.78,"{""promo"": ""16%""}",257618,1,Asia +2023-06-03,22396,2377,"[""Keyboard"", ""Laptop""]",968.62,"{""promo"": ""24%""}",272133,0,Asia +2023-05-20,22397,8429,"[""Tablet""]",3759.38,{},12417,0,South America +2024-07-10,22398,3529,"[""Charger""]",3239.23,{},273966,0,South America +2024-03-07,22399,6018,"[""Headphones"", ""Tablet""]",4161.02,"{""seasonal"": ""22%""}",94326,0,Asia +2023-05-24,22400,1584,"[""Charger""]",4648.79,{},296768,0,South America +2023-11-06,22401,7637,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2701.02,{},115577,0,South America +2023-10-01,22402,4919,"[""Keyboard""]",3799.65,"{"""": ""10%""}",261627,0,Africa +2024-11-21,22403,2731,"[""Monitor"", ""Headphones""]",4356.81,"{"""": ""22%""}",78121,1,South America +2023-07-23,22404,3990,"[""Tablet"", ""Laptop""]",4967.61,{},116343,1,South America +2023-08-23,22405,2868,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",367.27,{},194939,1,Asia +2023-11-01,22406,4532,"[""Charger"", ""Laptop""]",3611.27,"{""seasonal"": ""28%""}",99719,0,South America +2023-02-26,22407,1777,"[""Laptop"", ""Charger"", ""Monitor""]",4612.62,"{"""": ""10%""}",131683,1,South America +2023-11-10,22408,4437,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4690.57,{},288673,1,Europe +2024-06-27,22409,7012,"[""Keyboard"", ""Laptop"", ""Tablet""]",1816.79,{},53542,1,Europe +2024-02-10,22410,3650,"[""Monitor"", ""Headphones""]",3324.69,"{"""": ""6%""}",108727,1,North America +2024-10-10,22411,1898,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3137.12,"{""loyalty"": ""23%""}",216763,0,North America +2024-07-27,22412,7709,"[""Monitor""]",4944.35,{},51211,1,Africa +2023-07-08,22413,6329,"[""Charger""]",1641.9,"{"""": ""29%""}",280832,1,South America +2023-09-11,22414,9010,"[""Keyboard"", ""Charger""]",3203.71,{},190218,0,Europe +2024-07-20,22415,4172,"[""Wireless Mouse"", ""Phone""]",232.56,"{""promo"": ""14%""}",70085,0,North America +2024-09-01,22416,3403,"[""Monitor"", ""Headphones"", ""Tablet""]",829.45,{},138432,1,Africa +2024-12-04,22417,2926,"[""Charger""]",1688.35,{},107401,0,South America +2024-01-17,22418,6355,"[""Charger"", ""Laptop""]",611.7,"{"""": ""19%""}",114026,0,North America +2023-08-22,22419,6488,"[""Laptop"", ""Keyboard""]",2528.76,"{""promo"": ""6%""}",89266,0,South America +2024-06-08,22420,9964,"[""Keyboard""]",4587.09,{},114180,0,South America +2024-06-05,22421,3613,"[""Phone""]",2906.86,{},246059,1,South America +2023-12-30,22422,6540,"[""Tablet""]",386.1,"{""promo"": ""7%""}",256601,0,Europe +2023-01-28,22423,7610,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",857.01,{},82239,0,South America +2023-08-03,22424,8026,"[""Headphones""]",2338.35,{},265147,0,Asia +2024-01-27,22425,7040,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1092.39,"{""loyalty"": ""7%""}",255170,0,Europe +2024-04-24,22426,9399,"[""Tablet""]",1442.88,{},68424,0,Asia +2024-07-29,22427,3357,"[""Headphones"", ""Tablet""]",4569.01,{},167721,1,North America +2023-11-15,22428,2152,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",652.37,"{""loyalty"": ""10%""}",29391,1,Africa +2023-08-02,22429,6098,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4100.43,"{""seasonal"": ""29%""}",289320,1,Europe +2023-08-26,22430,2779,"[""Wireless Mouse""]",691.13,"{""promo"": ""8%""}",298317,0,North America +2024-12-02,22431,8035,"[""Wireless Mouse""]",3786.45,{},2597,0,Europe +2023-01-28,22432,2948,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1651.95,"{""loyalty"": ""21%""}",222052,1,South America +2024-06-13,22433,59,"[""Tablet""]",325.79,"{"""": ""16%""}",275458,0,Asia +2023-05-01,22434,2743,"[""Tablet"", ""Charger""]",2785.56,"{""promo"": ""22%""}",259863,1,North America +2024-07-19,22435,5221,"[""Keyboard"", ""Tablet"", ""Headphones""]",1030.74,"{""loyalty"": ""24%""}",14670,0,Europe +2023-11-25,22436,4037,"[""Charger""]",4097.82,"{""loyalty"": ""14%""}",91992,0,South America +2023-03-18,22437,784,"[""Charger""]",3899.99,"{""promo"": ""7%""}",178693,0,Europe +2023-09-22,22438,3574,"[""Headphones""]",1242.87,{},33315,1,Europe +2023-05-23,22439,7013,"[""Tablet""]",2523.9,"{"""": ""20%""}",59961,1,South America +2023-06-13,22440,8504,"[""Headphones"", ""Laptop"", ""Phone""]",1583.66,"{""promo"": ""20%""}",75306,0,South America +2024-10-23,22441,4078,"[""Laptop"", ""Monitor""]",3719.75,"{""promo"": ""24%""}",12964,1,Asia +2023-07-07,22442,7206,"[""Wireless Mouse""]",205.55,{},93630,0,Asia +2023-01-02,22443,7604,"[""Monitor"", ""Keyboard""]",3749.34,{},122093,0,Asia +2024-04-03,22444,7532,"[""Keyboard"", ""Monitor""]",844.21,"{""promo"": ""13%""}",124508,0,Africa +2023-03-18,22445,3392,"[""Phone"", ""Wireless Mouse""]",930.2,{},158514,0,Asia +2024-02-20,22446,8978,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4723.42,"{""seasonal"": ""12%""}",47936,0,Africa +2024-12-29,22447,4712,"[""Tablet"", ""Keyboard""]",2667.86,"{""seasonal"": ""21%""}",40075,0,North America +2023-05-08,22448,8869,"[""Phone"", ""Headphones""]",1351.0,{},155635,1,Europe +2023-10-23,22449,5266,"[""Keyboard"", ""Phone"", ""Tablet""]",4716.29,"{""promo"": ""30%""}",278445,0,North America +2024-11-02,22450,5860,"[""Wireless Mouse"", ""Charger""]",4871.85,{},38055,0,Africa +2024-03-19,22451,8436,"[""Charger"", ""Laptop""]",987.7,"{"""": ""11%""}",239465,1,South America +2023-11-26,22452,4714,"[""Headphones"", ""Laptop"", ""Monitor""]",1952.21,{},234130,1,Asia +2023-12-13,22453,7472,"[""Keyboard"", ""Wireless Mouse""]",3935.0,{},189121,0,Africa +2023-08-09,22454,1356,"[""Tablet"", ""Wireless Mouse""]",649.43,{},15324,1,South America +2024-03-17,22455,1792,"[""Headphones""]",216.48,{},132607,1,Asia +2023-06-07,22456,5350,"[""Keyboard"", ""Phone"", ""Laptop""]",4322.92,{},256044,1,Europe +2023-06-24,22457,2975,"[""Wireless Mouse"", ""Keyboard""]",3671.12,"{"""": ""19%""}",73598,0,Europe +2024-04-28,22458,5766,"[""Tablet"", ""Phone"", ""Keyboard""]",4191.52,{},42910,0,South America +2023-05-20,22459,5179,"[""Phone""]",4238.86,"{""seasonal"": ""13%""}",106661,1,South America +2023-02-01,22460,3546,"[""Headphones""]",168.73,"{"""": ""5%""}",106667,1,Europe +2024-01-28,22461,7771,"[""Charger"", ""Laptop""]",3405.16,"{""seasonal"": ""26%""}",223543,0,South America +2024-04-28,22462,4886,"[""Headphones"", ""Phone""]",4220.35,{},288652,0,Europe +2024-04-13,22463,8138,"[""Headphones""]",2013.38,"{""loyalty"": ""11%""}",22214,1,Europe +2024-05-25,22464,7241,"[""Headphones"", ""Phone"", ""Monitor""]",3819.03,{},65109,0,South America +2023-11-25,22465,8576,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1327.62,{},111952,1,North America +2024-12-10,22466,8174,"[""Wireless Mouse"", ""Charger""]",2708.62,"{"""": ""25%""}",132841,1,North America +2024-02-06,22467,2387,"[""Keyboard"", ""Headphones""]",807.11,"{""loyalty"": ""16%""}",23447,0,North America +2024-03-27,22468,5727,"[""Wireless Mouse""]",2574.94,{},19502,0,Africa +2023-10-10,22469,8618,"[""Tablet"", ""Wireless Mouse""]",525.21,{},93240,1,Africa +2023-09-30,22470,7088,"[""Keyboard"", ""Monitor"", ""Tablet""]",3674.24,"{""loyalty"": ""29%""}",17777,0,South America +2023-08-30,22471,634,"[""Headphones"", ""Keyboard""]",4246.16,{},201576,0,North America +2023-05-21,22472,3311,"[""Charger"", ""Phone""]",3656.83,{},139696,0,North America +2024-02-26,22473,7531,"[""Monitor"", ""Headphones"", ""Tablet""]",2161.28,{},179304,0,Africa +2023-04-20,22474,7603,"[""Wireless Mouse"", ""Monitor""]",1558.06,"{""promo"": ""19%""}",166806,1,North America +2023-06-27,22475,5745,"[""Charger""]",1321.66,{},150304,0,Africa +2023-11-20,22476,8728,"[""Monitor"", ""Charger""]",495.98,"{""seasonal"": ""22%""}",196548,0,Africa +2024-05-16,22477,6482,"[""Charger"", ""Laptop"", ""Headphones""]",2386.48,{},6362,0,North America +2023-03-03,22478,3344,"[""Monitor"", ""Keyboard"", ""Headphones""]",2306.47,"{"""": ""11%""}",6956,1,North America +2024-02-13,22479,1432,"[""Charger""]",4803.46,{},165499,0,South America +2024-05-22,22480,9335,"[""Tablet"", ""Charger"", ""Monitor""]",3287.32,"{""promo"": ""12%""}",169762,1,South America +2024-11-11,22481,3953,"[""Phone"", ""Headphones"", ""Keyboard""]",4055.39,{},165061,0,South America +2024-02-27,22482,7234,"[""Phone"", ""Keyboard"", ""Headphones""]",484.9,{},140387,0,North America +2023-09-05,22483,801,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4926.6,"{"""": ""9%""}",43014,1,Europe +2023-03-10,22484,8399,"[""Charger""]",4755.74,{},13268,0,South America +2024-04-04,22485,5221,"[""Monitor""]",2519.57,{},290899,1,Europe +2023-01-15,22486,4946,"[""Wireless Mouse""]",3100.52,{},201637,0,Europe +2024-09-19,22487,9442,"[""Laptop"", ""Monitor"", ""Headphones""]",1855.5,{},25345,0,Asia +2023-12-10,22488,3903,"[""Headphones"", ""Wireless Mouse""]",148.54,{},77467,0,Europe +2024-03-17,22489,8449,"[""Phone""]",1097.72,"{"""": ""16%""}",100708,0,Africa +2024-05-21,22490,1291,"[""Laptop""]",4744.04,{},46295,0,North America +2023-07-27,22491,4306,"[""Monitor"", ""Laptop""]",4099.45,{},53143,0,Europe +2024-07-04,22492,2054,"[""Monitor"", ""Tablet"", ""Keyboard""]",3216.26,{},24974,0,South America +2024-01-09,22493,8674,"[""Tablet""]",4785.92,{},287105,1,South America +2023-09-06,22494,5192,"[""Charger"", ""Laptop""]",2498.17,{},38908,1,North America +2023-10-04,22495,5301,"[""Tablet""]",4245.68,{},13592,1,Asia +2024-08-07,22496,5015,"[""Phone"", ""Keyboard""]",4026.12,{},127820,0,South America +2024-01-10,22497,7933,"[""Wireless Mouse""]",4905.97,"{"""": ""27%""}",31731,1,North America +2024-04-21,22498,881,"[""Monitor"", ""Laptop""]",1228.87,{},251413,0,North America +2023-08-06,22499,5251,"[""Tablet"", ""Phone""]",3273.01,{},207578,0,Africa +2023-01-20,22500,9953,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3258.82,{},237591,0,North America +2023-08-19,22501,842,"[""Keyboard"", ""Laptop"", ""Tablet""]",1212.99,{},61362,1,Europe +2023-06-29,22502,9588,"[""Charger"", ""Tablet"", ""Headphones""]",2952.74,"{"""": ""30%""}",173965,1,Asia +2024-03-20,22503,8261,"[""Charger"", ""Tablet"", ""Phone""]",4001.82,{},283039,0,Europe +2023-07-09,22504,3127,"[""Laptop"", ""Phone"", ""Headphones""]",3754.92,{},13816,1,Asia +2024-06-22,22505,6548,"[""Keyboard"", ""Charger""]",2222.4,{},102115,0,South America +2024-12-29,22506,5456,"[""Headphones"", ""Laptop""]",738.44,{},274945,0,Asia +2024-11-12,22507,8008,"[""Headphones""]",821.55,"{"""": ""14%""}",60534,1,North America +2024-12-17,22508,5940,"[""Laptop"", ""Phone""]",4747.64,{},146680,1,Europe +2023-01-25,22509,1523,"[""Headphones""]",4302.85,{},155524,0,Europe +2024-11-01,22510,6640,"[""Keyboard"", ""Charger""]",3082.74,{},154582,1,Africa +2024-06-04,22511,8401,"[""Tablet"", ""Wireless Mouse""]",1063.76,{},211721,1,South America +2023-10-29,22512,567,"[""Tablet"", ""Laptop""]",2821.22,{},202559,0,South America +2024-06-02,22513,7975,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2212.36,"{""seasonal"": ""27%""}",64195,0,Asia +2023-04-05,22514,2272,"[""Tablet"", ""Phone""]",886.25,{},175326,0,North America +2024-04-26,22515,1369,"[""Monitor"", ""Tablet"", ""Laptop""]",800.11,{},285635,1,Africa +2023-05-23,22516,6063,"[""Keyboard"", ""Tablet""]",2999.61,"{""seasonal"": ""23%""}",149484,0,North America +2024-10-31,22517,3636,"[""Phone"", ""Monitor""]",1032.93,"{""seasonal"": ""21%""}",242794,1,Asia +2023-02-13,22518,7686,"[""Charger""]",1314.28,"{""loyalty"": ""19%""}",287656,1,North America +2023-01-13,22519,1886,"[""Wireless Mouse"", ""Headphones""]",4258.35,{},31459,0,South America +2023-05-30,22520,9444,"[""Headphones"", ""Wireless Mouse""]",2154.34,{},32890,0,Asia +2023-05-01,22521,4741,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",700.23,{},244552,0,North America +2023-03-02,22522,5592,"[""Phone"", ""Keyboard""]",2065.51,{},232567,0,Europe +2024-11-17,22523,6985,"[""Laptop""]",3310.11,{},111400,1,North America +2023-01-23,22524,5975,"[""Monitor"", ""Keyboard""]",1835.5,"{"""": ""29%""}",174399,1,Africa +2024-09-07,22525,8518,"[""Keyboard"", ""Phone""]",2883.03,{},27732,1,Asia +2023-05-30,22526,494,"[""Charger"", ""Monitor""]",2030.88,"{""seasonal"": ""8%""}",168052,1,Europe +2024-02-16,22527,4602,"[""Phone"", ""Monitor""]",2740.54,"{""loyalty"": ""7%""}",196105,1,South America +2024-05-15,22528,4156,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4704.04,"{""seasonal"": ""18%""}",185803,1,Africa +2023-03-06,22529,6145,"[""Laptop"", ""Headphones""]",3590.91,"{""promo"": ""6%""}",41646,0,South America +2023-09-06,22530,1048,"[""Laptop""]",298.56,"{"""": ""10%""}",123315,0,North America +2023-03-03,22531,5353,"[""Tablet"", ""Keyboard""]",3218.47,{},78246,0,Europe +2024-10-16,22532,8243,"[""Charger""]",1242.39,"{""seasonal"": ""26%""}",201950,1,Asia +2023-11-28,22533,9378,"[""Phone""]",3174.19,"{""promo"": ""21%""}",244393,1,North America +2024-04-07,22534,6040,"[""Headphones""]",645.73,"{""seasonal"": ""8%""}",264855,1,Asia +2024-01-09,22535,2304,"[""Monitor""]",2393.33,{},206091,0,South America +2023-01-23,22536,5688,"[""Charger"", ""Tablet""]",3127.35,"{""loyalty"": ""7%""}",211461,1,Europe +2024-10-15,22537,4908,"[""Monitor""]",4073.72,"{""loyalty"": ""26%""}",181118,0,Europe +2024-06-21,22538,5325,"[""Laptop"", ""Tablet""]",2764.24,{},115988,1,North America +2024-11-02,22539,8836,"[""Phone""]",3992.55,"{""seasonal"": ""26%""}",168080,1,Africa +2023-06-10,22540,7027,"[""Wireless Mouse"", ""Charger""]",538.46,{},21791,1,Europe +2024-03-25,22541,9209,"[""Wireless Mouse""]",1505.22,{},200197,0,Asia +2024-05-12,22542,4434,"[""Headphones"", ""Charger""]",1120.79,{},223468,1,Africa +2023-05-27,22543,931,"[""Headphones"", ""Keyboard"", ""Charger""]",3718.89,{},86321,1,Africa +2023-12-20,22544,145,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1191.64,{},282170,0,North America +2023-08-10,22545,6870,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2137.86,"{""seasonal"": ""24%""}",17932,0,Europe +2023-08-25,22546,8135,"[""Phone""]",4446.09,{},228748,1,Europe +2024-12-24,22547,29,"[""Wireless Mouse""]",1403.77,{},50243,0,Europe +2023-07-12,22548,3264,"[""Laptop""]",1973.03,"{"""": ""19%""}",299392,1,South America +2024-05-15,22549,3294,"[""Phone"", ""Monitor""]",4250.67,{},143478,1,Europe +2024-11-24,22550,3850,"[""Tablet""]",1107.78,{},244342,1,South America +2024-06-13,22551,288,"[""Laptop"", ""Charger""]",2398.45,{},187523,0,Asia +2024-10-10,22552,2159,"[""Phone"", ""Tablet"", ""Keyboard""]",1698.53,{},221305,0,Europe +2024-08-11,22553,9262,"[""Tablet"", ""Keyboard""]",777.93,{},18081,0,South America +2024-04-07,22554,5918,"[""Laptop""]",1658.76,"{""seasonal"": ""21%""}",18619,1,North America +2024-12-25,22555,6468,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1574.76,"{""seasonal"": ""21%""}",117387,0,North America +2024-06-07,22556,4886,"[""Laptop"", ""Phone""]",1841.57,{},285813,1,Europe +2023-10-02,22557,7862,"[""Charger"", ""Keyboard"", ""Tablet""]",4732.76,"{""promo"": ""14%""}",116659,0,South America +2024-07-23,22558,5359,"[""Wireless Mouse"", ""Monitor""]",1754.06,"{""promo"": ""10%""}",157863,0,Europe +2023-12-13,22559,2821,"[""Keyboard"", ""Monitor""]",4214.46,{},46128,0,South America +2024-02-03,22560,5394,"[""Headphones"", ""Keyboard""]",531.82,"{""promo"": ""29%""}",172795,0,Europe +2024-04-23,22561,2235,"[""Tablet""]",2341.4,"{"""": ""8%""}",169707,0,South America +2024-02-19,22562,8244,"[""Headphones""]",126.34,{},286414,1,Africa +2024-09-28,22563,2059,"[""Headphones""]",1956.94,{},262492,1,South America +2024-02-17,22564,4678,"[""Laptop""]",4203.99,{},197036,0,Asia +2023-12-27,22565,6285,"[""Laptop"", ""Phone"", ""Headphones""]",4545.42,{},147017,0,Africa +2023-05-03,22566,122,"[""Wireless Mouse"", ""Monitor""]",2327.84,{},28472,0,Europe +2023-10-20,22567,1613,"[""Monitor"", ""Charger""]",4486.83,{},9119,1,Africa +2024-05-01,22568,609,"[""Headphones"", ""Tablet""]",4098.83,{},278895,0,Europe +2023-11-19,22569,4929,"[""Charger""]",3754.43,"{""promo"": ""17%""}",111582,0,Asia +2023-07-18,22570,9577,"[""Keyboard"", ""Charger""]",4062.77,"{""seasonal"": ""7%""}",21781,0,Asia +2024-01-08,22571,9300,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1139.02,"{""promo"": ""22%""}",195195,0,South America +2024-02-23,22572,3912,"[""Laptop"", ""Headphones""]",1121.51,"{"""": ""7%""}",294031,0,Asia +2024-10-07,22573,5205,"[""Keyboard""]",4232.52,"{"""": ""16%""}",109028,1,Asia +2024-05-24,22574,303,"[""Phone""]",1041.24,{},90101,1,South America +2023-12-26,22575,4321,"[""Charger"", ""Tablet"", ""Laptop""]",1460.19,{},250038,0,Asia +2024-06-18,22576,2008,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2984.83,{},280847,1,Asia +2024-02-13,22577,9426,"[""Charger""]",2389.0,{},123366,0,South America +2023-10-03,22578,2776,"[""Phone""]",1712.53,{},38436,1,South America +2023-02-18,22579,6445,"[""Laptop""]",650.03,"{""loyalty"": ""23%""}",29772,0,Asia +2023-01-18,22580,7008,"[""Headphones"", ""Tablet"", ""Monitor""]",3253.79,{},95871,0,Europe +2023-04-24,22581,9238,"[""Wireless Mouse""]",1561.92,{},15063,1,South America +2023-06-11,22582,394,"[""Monitor"", ""Laptop""]",2921.69,"{""promo"": ""30%""}",30012,0,Africa +2023-06-01,22583,4695,"[""Headphones""]",2230.68,{},154409,1,Asia +2023-12-15,22584,607,"[""Keyboard"", ""Wireless Mouse""]",2735.45,{},84048,1,North America +2023-07-16,22585,5544,"[""Tablet""]",2259.74,{},287699,1,North America +2023-10-14,22586,6600,"[""Tablet"", ""Laptop""]",4760.99,{},272131,1,North America +2024-03-29,22587,9109,"[""Phone""]",4676.89,"{""seasonal"": ""12%""}",133251,1,South America +2023-05-06,22588,2437,"[""Tablet""]",4967.04,"{""promo"": ""18%""}",14471,0,Africa +2023-10-09,22589,4220,"[""Headphones""]",4747.53,"{""seasonal"": ""13%""}",70524,0,Asia +2024-04-16,22590,848,"[""Tablet"", ""Phone"", ""Keyboard""]",1612.98,{},106870,1,Asia +2023-11-06,22591,281,"[""Tablet""]",2672.75,"{"""": ""11%""}",40044,0,North America +2023-06-18,22592,7172,"[""Phone""]",1720.23,"{""loyalty"": ""26%""}",28914,1,Africa +2023-08-20,22593,1337,"[""Laptop"", ""Monitor"", ""Keyboard""]",2230.11,{},214454,1,South America +2024-06-19,22594,7724,"[""Keyboard"", ""Monitor""]",4798.09,{},189437,1,Africa +2023-01-02,22595,1269,"[""Laptop"", ""Monitor"", ""Keyboard""]",2755.47,{},235087,0,Africa +2024-02-14,22596,8146,"[""Laptop"", ""Keyboard"", ""Tablet""]",3862.21,{},213762,0,North America +2024-11-30,22597,1554,"[""Keyboard"", ""Charger"", ""Laptop""]",4832.92,"{""loyalty"": ""13%""}",200119,0,Europe +2024-01-19,22598,5026,"[""Wireless Mouse"", ""Charger""]",2418.72,"{""promo"": ""7%""}",46467,1,South America +2023-08-07,22599,9649,"[""Keyboard"", ""Monitor"", ""Laptop""]",144.92,"{""loyalty"": ""7%""}",15276,0,North America +2024-12-22,22600,7506,"[""Phone"", ""Wireless Mouse""]",1943.74,{},144139,0,North America +2024-08-15,22601,2420,"[""Headphones"", ""Charger""]",2043.08,"{""promo"": ""6%""}",271803,0,North America +2024-05-02,22602,5868,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3116.38,{},158351,0,North America +2023-10-03,22603,8193,"[""Headphones""]",4840.93,{},255869,0,Asia +2023-06-22,22604,6873,"[""Keyboard""]",325.42,{},172076,1,Asia +2024-10-18,22605,3164,"[""Laptop""]",1566.14,"{""loyalty"": ""15%""}",189704,0,North America +2023-12-02,22606,5923,"[""Keyboard""]",1846.8,{},125100,0,Europe +2023-10-13,22607,4786,"[""Phone"", ""Tablet"", ""Headphones""]",4186.72,{},204959,1,Europe +2023-09-03,22608,3910,"[""Laptop""]",2727.94,{},6677,1,Europe +2024-03-06,22609,101,"[""Wireless Mouse"", ""Tablet""]",3032.04,{},176201,0,South America +2023-02-24,22610,1000,"[""Headphones""]",4945.42,{},289974,1,South America +2024-03-13,22611,5456,"[""Keyboard"", ""Phone"", ""Laptop""]",3468.04,"{""seasonal"": ""22%""}",40834,0,South America +2024-04-02,22612,4541,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1063.97,"{""loyalty"": ""27%""}",132253,0,Asia +2024-04-13,22613,5737,"[""Laptop"", ""Phone"", ""Tablet""]",4799.69,{},23251,0,North America +2023-03-16,22614,2638,"[""Charger"", ""Keyboard"", ""Phone""]",1933.02,"{""seasonal"": ""18%""}",273863,0,North America +2024-11-18,22615,7133,"[""Phone""]",2750.44,{},134895,1,North America +2024-09-17,22616,8146,"[""Tablet"", ""Laptop""]",966.67,"{""loyalty"": ""21%""}",76583,1,Africa +2024-05-01,22617,223,"[""Headphones"", ""Wireless Mouse""]",3733.55,"{"""": ""7%""}",172941,1,Asia +2023-10-16,22618,2999,"[""Laptop""]",4334.35,"{""promo"": ""11%""}",70716,1,Asia +2023-04-13,22619,7142,"[""Headphones"", ""Charger"", ""Keyboard""]",4288.75,"{""promo"": ""5%""}",26044,0,Africa +2024-07-08,22620,220,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4852.08,"{""promo"": ""29%""}",155913,0,South America +2024-01-12,22621,6461,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3544.63,"{""promo"": ""11%""}",159108,1,North America +2023-08-28,22622,3700,"[""Keyboard""]",1269.83,{},237825,1,Europe +2024-10-28,22623,753,"[""Charger"", ""Phone""]",125.24,{},232842,0,North America +2023-07-16,22624,5643,"[""Tablet"", ""Keyboard"", ""Monitor""]",4716.53,{},253638,1,North America +2023-01-01,22625,465,"[""Keyboard""]",3130.76,"{""promo"": ""12%""}",187529,0,North America +2023-04-30,22626,1623,"[""Headphones""]",303.56,{},132539,1,Asia +2024-01-06,22627,7127,"[""Headphones""]",2721.37,{},174847,0,North America +2023-07-28,22628,1173,"[""Headphones"", ""Tablet""]",2258.55,"{""seasonal"": ""26%""}",261903,1,Asia +2024-03-26,22629,2191,"[""Wireless Mouse"", ""Headphones""]",257.16,"{"""": ""27%""}",125752,0,Europe +2023-08-27,22630,2722,"[""Wireless Mouse"", ""Keyboard""]",1009.38,"{""promo"": ""12%""}",77538,1,Europe +2024-06-09,22631,6080,"[""Keyboard"", ""Tablet""]",4618.06,{},190280,1,South America +2024-05-04,22632,3304,"[""Tablet"", ""Charger"", ""Monitor""]",1140.48,{},127308,0,Europe +2023-06-18,22633,2663,"[""Headphones""]",3753.68,{},122489,0,North America +2024-06-02,22634,457,"[""Charger"", ""Headphones"", ""Keyboard""]",634.27,{},185662,1,South America +2023-03-07,22635,6974,"[""Tablet""]",2404.79,{},122466,1,Africa +2023-05-24,22636,8534,"[""Phone"", ""Keyboard"", ""Charger""]",3483.25,"{""loyalty"": ""17%""}",231140,0,Africa +2024-06-16,22637,3685,"[""Charger"", ""Monitor"", ""Keyboard""]",4069.08,"{""promo"": ""27%""}",87932,0,Europe +2023-07-27,22638,5509,"[""Headphones""]",318.69,"{""promo"": ""13%""}",54951,1,North America +2023-09-16,22639,2699,"[""Wireless Mouse"", ""Headphones""]",1928.75,{},23905,1,North America +2023-02-05,22640,9789,"[""Headphones"", ""Charger""]",3101.7,{},71246,1,North America +2023-10-20,22641,2668,"[""Laptop""]",4441.26,{},67244,0,Africa +2024-01-20,22642,9830,"[""Monitor"", ""Laptop""]",2284.32,{},175070,1,Africa +2023-01-10,22643,2250,"[""Headphones""]",743.44,{},287941,1,North America +2024-07-10,22644,2575,"[""Keyboard"", ""Phone""]",4041.59,{},94417,0,Asia +2023-01-02,22645,6238,"[""Tablet"", ""Charger""]",1909.43,"{"""": ""7%""}",72334,1,Asia +2023-05-15,22646,5255,"[""Headphones"", ""Keyboard"", ""Laptop""]",4528.67,"{""loyalty"": ""26%""}",198207,0,Asia +2024-12-12,22647,3063,"[""Phone"", ""Charger"", ""Laptop""]",1548.5,"{""promo"": ""14%""}",181823,0,North America +2024-01-23,22648,6510,"[""Phone""]",273.2,"{"""": ""24%""}",44177,1,South America +2023-10-29,22649,6107,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3005.5,{},294544,0,Africa +2023-11-08,22650,3780,"[""Laptop""]",388.1,"{""seasonal"": ""28%""}",195713,0,North America +2024-04-21,22651,9819,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2504.44,{},190679,0,North America +2024-07-21,22652,8388,"[""Monitor"", ""Phone""]",1194.36,{},252613,1,Asia +2024-04-23,22653,997,"[""Laptop""]",2088.97,"{""seasonal"": ""17%""}",47774,1,Africa +2024-12-26,22654,7820,"[""Keyboard""]",4839.61,"{""promo"": ""24%""}",108003,0,North America +2024-07-20,22655,3529,"[""Tablet""]",2751.21,"{""promo"": ""23%""}",139524,1,Asia +2024-05-13,22656,3778,"[""Tablet"", ""Charger"", ""Headphones""]",3883.64,{},139403,1,Europe +2023-02-24,22657,7835,"[""Tablet""]",3889.61,{},299703,1,South America +2023-11-10,22658,7371,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1283.79,{},193174,0,Africa +2024-05-13,22659,7586,"[""Laptop""]",1437.87,"{""seasonal"": ""19%""}",279907,1,North America +2023-10-16,22660,4463,"[""Phone"", ""Keyboard""]",695.19,{},93780,0,South America +2023-09-08,22661,8139,"[""Keyboard""]",3573.39,"{""seasonal"": ""23%""}",101247,1,Europe +2023-08-30,22662,2245,"[""Wireless Mouse"", ""Monitor""]",2089.06,{},238670,0,Africa +2023-11-13,22663,7010,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",695.0,"{""seasonal"": ""19%""}",50601,0,Europe +2024-03-27,22664,6659,"[""Monitor"", ""Laptop""]",1114.25,{},151640,1,North America +2024-04-10,22665,2717,"[""Wireless Mouse"", ""Headphones""]",2549.46,{},17074,0,Asia +2024-01-31,22666,447,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1147.38,"{""promo"": ""5%""}",154010,0,North America +2024-03-19,22667,2360,"[""Keyboard""]",4691.38,{},166218,1,Africa +2023-11-22,22668,3191,"[""Tablet""]",1253.27,"{""loyalty"": ""22%""}",145048,0,Africa +2023-10-23,22669,8677,"[""Monitor"", ""Keyboard""]",2026.4,"{""loyalty"": ""24%""}",63346,0,North America +2024-08-05,22670,2660,"[""Wireless Mouse""]",2078.3,{},52290,0,North America +2023-01-24,22671,3054,"[""Charger""]",3601.75,"{""loyalty"": ""30%""}",254940,1,Europe +2023-04-29,22672,1457,"[""Laptop""]",2170.23,{},17629,0,Africa +2023-08-26,22673,3576,"[""Wireless Mouse""]",4930.85,"{"""": ""7%""}",282370,1,South America +2024-10-09,22674,2368,"[""Laptop"", ""Tablet""]",1148.16,"{""promo"": ""11%""}",8420,1,North America +2023-07-22,22675,1486,"[""Charger"", ""Wireless Mouse""]",534.04,{},119376,0,North America +2023-12-18,22676,4413,"[""Wireless Mouse"", ""Monitor""]",922.33,{},175874,1,Africa +2023-09-28,22677,6012,"[""Charger"", ""Wireless Mouse""]",2435.26,"{""promo"": ""20%""}",112266,0,North America +2024-09-03,22678,6056,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1875.39,{},190611,0,North America +2024-09-18,22679,7652,"[""Keyboard"", ""Monitor"", ""Tablet""]",4544.88,{},254283,1,South America +2023-02-05,22680,8369,"[""Laptop""]",2803.85,{},30522,0,North America +2023-02-21,22681,5328,"[""Wireless Mouse""]",625.45,{},278829,0,Europe +2023-11-11,22682,1156,"[""Keyboard"", ""Headphones""]",515.11,{},15527,0,Africa +2023-12-31,22683,9696,"[""Monitor"", ""Keyboard"", ""Headphones""]",2933.09,"{""seasonal"": ""23%""}",159229,1,Europe +2024-08-17,22684,537,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4982.91,{},26753,1,North America +2024-05-24,22685,4383,"[""Monitor"", ""Wireless Mouse""]",1014.92,{},20718,0,Europe +2024-06-15,22686,948,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2021.18,{},55095,0,North America +2024-11-26,22687,555,"[""Monitor"", ""Keyboard""]",2391.82,{},248668,0,North America +2023-05-22,22688,8867,"[""Keyboard""]",4077.86,{},205925,0,North America +2024-03-03,22689,6215,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2458.28,{},21246,1,South America +2024-02-15,22690,5170,"[""Keyboard"", ""Headphones"", ""Monitor""]",1001.06,"{""loyalty"": ""17%""}",137068,0,Africa +2023-02-15,22691,206,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4236.18,"{"""": ""6%""}",117407,1,Africa +2023-03-30,22692,5361,"[""Phone"", ""Tablet"", ""Monitor""]",4257.33,"{""loyalty"": ""11%""}",220295,1,Asia +2024-09-27,22693,2324,"[""Phone"", ""Headphones"", ""Monitor""]",2503.91,"{""loyalty"": ""19%""}",99207,0,Africa +2023-04-23,22694,5292,"[""Keyboard""]",2941.95,"{""seasonal"": ""13%""}",234412,0,Asia +2023-09-13,22695,5052,"[""Charger""]",310.31,"{""promo"": ""17%""}",141766,1,North America +2024-06-01,22696,3154,"[""Wireless Mouse"", ""Charger""]",1190.91,{},258778,0,Europe +2024-12-05,22697,1312,"[""Charger""]",1951.73,{},62143,1,Africa +2023-05-06,22698,4789,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2336.3,{},175028,1,Africa +2023-05-06,22699,7210,"[""Laptop"", ""Keyboard"", ""Headphones""]",3224.25,"{""loyalty"": ""27%""}",179228,0,North America +2023-03-21,22700,6889,"[""Keyboard"", ""Laptop""]",2187.77,"{""promo"": ""13%""}",173391,1,Asia +2023-09-02,22701,2103,"[""Tablet"", ""Keyboard"", ""Laptop""]",4556.8,"{""promo"": ""6%""}",33205,1,North America +2023-11-13,22702,8135,"[""Wireless Mouse""]",2817.77,{},288766,0,Asia +2023-11-27,22703,6716,"[""Laptop"", ""Tablet"", ""Monitor""]",3134.1,{},145099,0,Asia +2023-04-10,22704,2808,"[""Headphones"", ""Keyboard""]",367.39,{},257648,1,North America +2023-10-22,22705,7651,"[""Tablet"", ""Headphones"", ""Keyboard""]",945.0,{},262659,0,Africa +2024-03-28,22706,3307,"[""Phone"", ""Keyboard""]",4541.68,"{"""": ""5%""}",115587,1,Asia +2024-03-18,22707,4006,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1530.68,"{"""": ""21%""}",171631,0,North America +2024-08-29,22708,8346,"[""Wireless Mouse""]",260.51,"{""seasonal"": ""5%""}",142660,1,South America +2023-09-25,22709,8962,"[""Laptop"", ""Monitor""]",2934.64,"{""promo"": ""16%""}",226228,0,Africa +2023-10-31,22710,2321,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4933.08,"{""seasonal"": ""21%""}",88796,0,Africa +2024-08-13,22711,4745,"[""Monitor""]",4005.47,"{""promo"": ""15%""}",295536,1,Africa +2024-03-15,22712,8386,"[""Phone"", ""Wireless Mouse""]",3945.36,"{"""": ""9%""}",194940,1,Europe +2023-04-04,22713,1305,"[""Tablet""]",154.22,"{""promo"": ""9%""}",278377,0,Africa +2024-07-11,22714,7534,"[""Headphones"", ""Tablet""]",957.38,"{""seasonal"": ""27%""}",87339,1,Europe +2024-10-27,22715,591,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3776.89,"{""promo"": ""26%""}",35742,1,Europe +2024-10-10,22716,7204,"[""Phone"", ""Keyboard""]",3689.79,{},130409,1,Africa +2024-08-11,22717,8990,"[""Monitor"", ""Wireless Mouse""]",4584.01,"{""seasonal"": ""22%""}",213447,1,Africa +2023-03-19,22718,9023,"[""Phone""]",2180.92,{},53056,1,Africa +2023-11-04,22719,6214,"[""Phone""]",3196.54,"{""seasonal"": ""24%""}",53569,1,Asia +2023-05-12,22720,4987,"[""Phone""]",602.91,{},257629,1,Asia +2023-07-31,22721,6857,"[""Headphones""]",3066.5,{},170377,0,Europe +2023-02-10,22722,9957,"[""Monitor"", ""Headphones""]",1935.08,{},70060,1,North America +2023-01-10,22723,2243,"[""Laptop"", ""Tablet""]",2765.76,"{"""": ""8%""}",146752,1,Africa +2024-02-18,22724,1511,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1430.3,{},277191,0,Europe +2023-10-09,22725,1970,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2059.44,{},33036,0,North America +2023-10-16,22726,5640,"[""Laptop"", ""Tablet"", ""Charger""]",2434.4,{},69100,0,North America +2023-03-06,22727,7435,"[""Tablet"", ""Wireless Mouse""]",2073.02,{},49123,0,Africa +2023-09-17,22728,1288,"[""Phone"", ""Wireless Mouse""]",1133.67,{},220802,1,Africa +2023-08-06,22729,8765,"[""Headphones""]",3373.47,"{""loyalty"": ""19%""}",53445,1,Asia +2024-11-17,22730,9646,"[""Keyboard"", ""Charger"", ""Monitor""]",3748.46,{},83704,0,Europe +2023-12-26,22731,1772,"[""Headphones"", ""Laptop""]",4921.5,"{""promo"": ""27%""}",260256,0,Asia +2024-08-05,22732,3053,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",340.52,"{""loyalty"": ""17%""}",176532,0,Asia +2024-05-08,22733,9135,"[""Charger"", ""Tablet""]",4044.69,{},56260,1,Asia +2024-01-26,22734,7428,"[""Charger"", ""Tablet""]",715.53,"{"""": ""10%""}",132238,0,Europe +2024-10-08,22735,1845,"[""Laptop""]",3018.9,{},53509,0,Asia +2024-11-03,22736,4342,"[""Keyboard"", ""Monitor""]",1743.96,{},6445,1,North America +2023-10-19,22737,5826,"[""Tablet""]",1280.93,{},196061,0,Europe +2024-05-31,22738,364,"[""Laptop""]",2651.17,"{""promo"": ""13%""}",180640,0,North America +2024-04-28,22739,2796,"[""Wireless Mouse"", ""Phone""]",469.8,{},165437,0,Europe +2024-04-26,22740,5044,"[""Headphones"", ""Charger""]",1835.46,"{""seasonal"": ""11%""}",243842,1,North America +2023-07-25,22741,4567,"[""Tablet"", ""Monitor"", ""Laptop""]",1382.0,"{""seasonal"": ""8%""}",207056,1,South America +2023-06-01,22742,1623,"[""Charger""]",2246.3,{},205601,1,South America +2023-09-16,22743,2558,"[""Headphones"", ""Phone""]",2250.74,{},132441,1,Asia +2024-06-15,22744,4287,"[""Monitor"", ""Headphones"", ""Charger""]",2460.86,"{""seasonal"": ""9%""}",123360,1,Europe +2023-05-18,22745,3086,"[""Headphones""]",2485.6,{},84457,1,Africa +2024-12-18,22746,1363,"[""Headphones""]",76.11,"{""promo"": ""11%""}",113892,1,Asia +2023-05-03,22747,3346,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3328.85,{},241242,1,Europe +2023-04-27,22748,4333,"[""Tablet"", ""Phone""]",2191.89,"{"""": ""13%""}",186725,1,Africa +2023-04-30,22749,1477,"[""Wireless Mouse"", ""Tablet""]",4008.81,{},164288,1,South America +2024-02-01,22750,5236,"[""Keyboard""]",3454.35,"{""seasonal"": ""13%""}",54562,1,Europe +2024-05-11,22751,4550,"[""Tablet""]",487.79,"{""promo"": ""8%""}",205824,0,South America +2023-11-17,22752,4460,"[""Wireless Mouse"", ""Monitor""]",3868.95,{},166761,0,Africa +2023-09-24,22753,4944,"[""Phone""]",3180.28,{},24306,0,North America +2023-08-04,22754,6739,"[""Monitor"", ""Headphones""]",1649.64,"{""seasonal"": ""5%""}",228144,1,North America +2023-10-24,22755,1489,"[""Laptop"", ""Headphones""]",648.7,{},150472,1,South America +2024-11-20,22756,7188,"[""Monitor""]",4976.63,"{"""": ""28%""}",219950,0,North America +2023-08-11,22757,714,"[""Wireless Mouse"", ""Monitor""]",4447.9,{},87337,0,Europe +2023-12-04,22758,5605,"[""Tablet"", ""Phone"", ""Headphones""]",1605.06,{},27946,1,Europe +2024-11-01,22759,8093,"[""Charger"", ""Tablet""]",294.27,{},259106,0,South America +2024-11-22,22760,7370,"[""Headphones"", ""Keyboard"", ""Tablet""]",3517.47,"{""seasonal"": ""15%""}",105226,0,Asia +2023-03-10,22761,1418,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3572.96,{},127566,0,Africa +2023-07-20,22762,2928,"[""Keyboard"", ""Tablet""]",2008.67,{},156012,1,Europe +2024-12-15,22763,2624,"[""Monitor"", ""Tablet""]",4261.04,{},138806,0,Asia +2023-05-25,22764,6260,"[""Laptop"", ""Tablet""]",3237.97,"{""loyalty"": ""8%""}",159150,0,Africa +2023-06-19,22765,2382,"[""Monitor"", ""Keyboard"", ""Laptop""]",4566.5,"{""promo"": ""22%""}",138159,0,North America +2023-05-16,22766,3320,"[""Phone"", ""Charger"", ""Monitor""]",1370.37,"{""seasonal"": ""6%""}",236295,1,North America +2023-07-28,22767,5895,"[""Laptop""]",2704.26,"{""loyalty"": ""6%""}",275676,0,Europe +2023-01-13,22768,322,"[""Laptop"", ""Keyboard""]",2749.8,"{""seasonal"": ""30%""}",172957,0,North America +2023-10-30,22769,8118,"[""Headphones""]",1986.02,"{""loyalty"": ""8%""}",272013,0,Africa +2023-05-09,22770,8810,"[""Headphones""]",3965.39,"{""seasonal"": ""27%""}",6107,1,Africa +2024-01-01,22771,5527,"[""Phone""]",3596.69,{},152592,0,Africa +2024-10-02,22772,4841,"[""Tablet""]",704.62,"{""seasonal"": ""30%""}",204050,0,South America +2023-01-31,22773,6242,"[""Keyboard""]",1215.71,"{""promo"": ""12%""}",280984,1,Europe +2024-05-13,22774,816,"[""Charger"", ""Laptop""]",2088.63,"{""seasonal"": ""26%""}",234225,0,Africa +2023-09-22,22775,9499,"[""Monitor"", ""Headphones""]",137.71,"{""seasonal"": ""6%""}",46283,1,North America +2023-09-26,22776,1762,"[""Keyboard""]",454.92,"{""loyalty"": ""18%""}",284400,1,South America +2023-03-11,22777,492,"[""Headphones""]",3497.63,"{""seasonal"": ""28%""}",244844,1,South America +2023-08-06,22778,6050,"[""Tablet"", ""Wireless Mouse""]",3256.95,"{""seasonal"": ""25%""}",296436,1,Asia +2024-06-04,22779,9689,"[""Phone"", ""Charger"", ""Keyboard""]",3303.34,"{""seasonal"": ""19%""}",251150,0,Asia +2023-04-16,22780,226,"[""Keyboard""]",350.71,"{""loyalty"": ""14%""}",1042,1,Europe +2023-09-30,22781,3542,"[""Headphones"", ""Tablet""]",4000.49,"{"""": ""25%""}",264086,0,North America +2024-11-13,22782,9894,"[""Charger"", ""Headphones"", ""Phone""]",3361.39,"{""loyalty"": ""15%""}",264543,0,North America +2023-08-19,22783,6945,"[""Headphones""]",3044.03,"{""seasonal"": ""25%""}",96319,0,Europe +2023-07-09,22784,2108,"[""Headphones""]",4655.18,{},75204,0,Europe +2023-09-05,22785,3840,"[""Headphones""]",3209.36,"{""seasonal"": ""23%""}",243619,0,Asia +2023-09-30,22786,6563,"[""Headphones"", ""Tablet""]",2732.81,"{""loyalty"": ""23%""}",259149,1,South America +2024-04-14,22787,8890,"[""Monitor"", ""Laptop"", ""Keyboard""]",1525.3,{},72023,0,Asia +2024-10-17,22788,3185,"[""Tablet""]",421.35,"{"""": ""8%""}",188141,1,North America +2023-11-30,22789,9889,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",134.73,"{""seasonal"": ""17%""}",192427,0,South America +2024-09-19,22790,8809,"[""Monitor""]",2322.12,"{""seasonal"": ""5%""}",132821,1,North America +2023-06-18,22791,5926,"[""Laptop"", ""Phone"", ""Tablet""]",3746.06,"{""loyalty"": ""16%""}",32928,1,North America +2023-09-04,22792,9308,"[""Headphones"", ""Charger"", ""Keyboard""]",493.31,{},292998,1,Africa +2023-08-02,22793,9793,"[""Charger""]",2024.82,{},207938,1,Asia +2024-12-12,22794,8743,"[""Monitor""]",2842.65,"{""seasonal"": ""21%""}",139092,0,Asia +2024-05-03,22795,1002,"[""Headphones""]",2875.36,{},270350,1,Europe +2024-12-04,22796,7166,"[""Charger"", ""Tablet""]",3495.79,"{""loyalty"": ""29%""}",173678,1,South America +2024-12-15,22797,7745,"[""Charger""]",657.47,"{""loyalty"": ""6%""}",87833,1,Europe +2023-01-08,22798,566,"[""Phone"", ""Monitor"", ""Laptop""]",1730.81,"{""promo"": ""8%""}",210136,1,Asia +2024-01-01,22799,4961,"[""Wireless Mouse"", ""Monitor""]",4055.36,{},207928,1,South America +2023-03-12,22800,6896,"[""Charger"", ""Wireless Mouse""]",1830.22,{},262293,0,Asia +2024-02-04,22801,1334,"[""Keyboard"", ""Monitor"", ""Laptop""]",2944.28,"{""promo"": ""27%""}",71317,0,Asia +2023-01-15,22802,6698,"[""Tablet""]",1601.98,{},138050,1,Africa +2023-01-09,22803,246,"[""Phone"", ""Monitor""]",1457.37,{},54749,0,Africa +2023-12-03,22804,1988,"[""Charger"", ""Monitor"", ""Keyboard""]",791.09,"{""loyalty"": ""14%""}",33858,1,Africa +2024-03-14,22805,8729,"[""Laptop"", ""Monitor""]",683.11,"{""seasonal"": ""26%""}",216454,0,Africa +2024-03-14,22806,2073,"[""Tablet""]",707.53,"{""seasonal"": ""20%""}",296476,0,North America +2023-06-28,22807,1855,"[""Keyboard"", ""Charger""]",4554.51,"{""promo"": ""8%""}",80948,0,Africa +2023-07-26,22808,1122,"[""Monitor"", ""Headphones""]",4722.91,{},43089,0,North America +2024-08-21,22809,3330,"[""Laptop""]",1385.57,"{""seasonal"": ""20%""}",169513,1,Africa +2024-10-13,22810,9099,"[""Keyboard"", ""Monitor"", ""Phone""]",3934.02,"{""seasonal"": ""5%""}",244833,0,Europe +2023-05-17,22811,2210,"[""Tablet"", ""Charger""]",3873.77,{},250037,0,Africa +2024-04-24,22812,999,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",208.51,"{""promo"": ""5%""}",153745,1,Europe +2023-08-21,22813,3839,"[""Monitor"", ""Headphones""]",2851.85,"{""promo"": ""11%""}",207033,1,North America +2023-12-07,22814,6673,"[""Charger"", ""Keyboard"", ""Phone""]",557.71,{},211904,1,Europe +2023-10-25,22815,8373,"[""Charger"", ""Headphones""]",1317.33,"{""promo"": ""29%""}",149346,0,Asia +2024-02-04,22816,7848,"[""Phone"", ""Keyboard"", ""Laptop""]",276.37,"{""seasonal"": ""25%""}",141662,1,Africa +2023-08-22,22817,4919,"[""Phone"", ""Tablet"", ""Monitor""]",4152.77,{},202736,1,Africa +2023-09-20,22818,2244,"[""Charger""]",4094.81,{},93303,1,South America +2023-06-23,22819,6926,"[""Monitor"", ""Laptop"", ""Charger""]",800.77,{},165306,0,Africa +2023-05-22,22820,8500,"[""Headphones""]",265.88,{},228929,0,North America +2023-02-27,22821,9551,"[""Headphones"", ""Phone"", ""Tablet""]",2352.86,"{""loyalty"": ""23%""}",14159,1,South America +2023-07-02,22822,2430,"[""Laptop"", ""Monitor"", ""Headphones""]",4794.64,"{"""": ""7%""}",7454,0,Africa +2023-05-20,22823,3303,"[""Phone""]",588.88,"{""promo"": ""8%""}",175568,0,North America +2023-05-24,22824,687,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3817.48,{},35707,1,Europe +2024-10-26,22825,3133,"[""Phone"", ""Tablet"", ""Headphones""]",997.84,{},15678,0,Africa +2023-10-10,22826,5066,"[""Wireless Mouse"", ""Phone""]",302.63,"{""seasonal"": ""30%""}",123584,0,Europe +2024-09-15,22827,7095,"[""Charger"", ""Tablet"", ""Headphones""]",3981.44,{},190982,0,Europe +2023-10-29,22828,5047,"[""Tablet"", ""Laptop""]",1340.77,"{""loyalty"": ""20%""}",135687,0,Europe +2024-03-11,22829,1245,"[""Tablet"", ""Charger"", ""Monitor""]",3346.38,{},23246,1,South America +2023-05-12,22830,3297,"[""Wireless Mouse""]",3632.1,"{""promo"": ""22%""}",9426,0,South America +2024-12-04,22831,2782,"[""Charger"", ""Keyboard""]",4097.22,"{""seasonal"": ""12%""}",230531,0,North America +2024-07-15,22832,3592,"[""Tablet"", ""Wireless Mouse""]",3131.23,"{""loyalty"": ""11%""}",206796,1,Asia +2024-02-12,22833,1738,"[""Phone""]",4034.14,{},116333,1,South America +2024-01-31,22834,4277,"[""Laptop"", ""Headphones""]",3116.54,"{""seasonal"": ""29%""}",26831,0,South America +2023-08-08,22835,4389,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2438.34,{},102845,1,South America +2023-10-13,22836,8295,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2679.05,"{"""": ""24%""}",88092,0,Europe +2023-09-26,22837,9013,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4548.84,{},192588,1,Europe +2024-06-05,22838,7716,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4758.06,{},195537,0,Africa +2023-06-18,22839,57,"[""Charger""]",3212.55,"{"""": ""12%""}",221530,1,North America +2023-07-01,22840,785,"[""Laptop"", ""Tablet"", ""Keyboard""]",4600.22,"{"""": ""16%""}",56548,1,Africa +2023-05-20,22841,7455,"[""Keyboard""]",2526.24,"{""loyalty"": ""10%""}",105894,0,Europe +2024-09-03,22842,4630,"[""Tablet"", ""Phone""]",4607.65,{},188127,0,Africa +2024-09-13,22843,4395,"[""Monitor"", ""Charger""]",4223.8,"{""loyalty"": ""16%""}",260933,0,Asia +2023-09-15,22844,8192,"[""Charger""]",4396.49,{},136081,0,Asia +2023-09-04,22845,5551,"[""Monitor""]",1213.33,"{"""": ""11%""}",49673,1,Europe +2023-02-15,22846,3163,"[""Headphones"", ""Phone"", ""Keyboard""]",2688.55,"{"""": ""20%""}",192416,1,Africa +2023-02-17,22847,6370,"[""Headphones""]",1026.88,"{"""": ""28%""}",72210,1,North America +2024-05-08,22848,8584,"[""Charger"", ""Keyboard""]",2233.53,"{"""": ""13%""}",148213,1,Europe +2024-12-30,22849,7345,"[""Tablet"", ""Laptop"", ""Phone""]",873.76,{},165450,0,Africa +2024-10-25,22850,6205,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1439.41,"{"""": ""19%""}",217478,1,North America +2024-06-02,22851,8809,"[""Wireless Mouse"", ""Headphones""]",1800.52,{},248352,0,Asia +2024-11-07,22852,9663,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4214.48,{},292836,0,Asia +2024-05-10,22853,5560,"[""Charger""]",4386.68,"{""loyalty"": ""5%""}",174132,1,Africa +2023-09-17,22854,7808,"[""Headphones""]",4408.26,"{"""": ""27%""}",7758,1,South America +2023-03-28,22855,3885,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",904.82,{},21386,1,South America +2024-02-14,22856,1981,"[""Keyboard"", ""Headphones"", ""Charger""]",4070.99,"{""loyalty"": ""17%""}",98365,1,Europe +2023-07-03,22857,2443,"[""Laptop"", ""Phone"", ""Monitor""]",2290.06,{},186898,1,South America +2023-12-15,22858,305,"[""Headphones"", ""Tablet"", ""Keyboard""]",4140.02,"{"""": ""16%""}",186995,0,Asia +2023-08-31,22859,3916,"[""Laptop"", ""Monitor""]",3169.48,"{"""": ""14%""}",111696,0,South America +2024-01-08,22860,4843,"[""Phone""]",90.59,{},264053,1,Europe +2024-10-07,22861,8771,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2285.42,"{"""": ""14%""}",191827,0,North America +2023-07-26,22862,9443,"[""Keyboard""]",1524.42,"{"""": ""15%""}",58971,1,North America +2024-05-17,22863,6025,"[""Wireless Mouse""]",3820.17,"{"""": ""9%""}",87422,1,South America +2024-10-29,22864,7066,"[""Wireless Mouse"", ""Tablet""]",1624.7,"{""loyalty"": ""6%""}",219415,1,Asia +2023-07-01,22865,5190,"[""Charger""]",2154.44,{},110241,0,Asia +2023-09-08,22866,3047,"[""Tablet"", ""Keyboard""]",1235.7,"{""promo"": ""21%""}",292639,1,Europe +2023-03-24,22867,412,"[""Laptop"", ""Headphones""]",507.81,{},80219,1,South America +2023-02-11,22868,2684,"[""Wireless Mouse""]",3525.58,{},97616,0,Europe +2023-09-11,22869,9046,"[""Monitor"", ""Laptop""]",492.45,{},258068,0,Asia +2024-12-15,22870,3548,"[""Tablet""]",4823.5,{},91905,0,Africa +2023-07-17,22871,5364,"[""Monitor""]",1496.16,{},109310,0,Europe +2024-05-29,22872,1249,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4631.68,"{""seasonal"": ""28%""}",107623,1,Asia +2024-05-28,22873,7266,"[""Tablet"", ""Charger""]",2135.05,{},220184,1,North America +2024-08-11,22874,1023,"[""Tablet"", ""Laptop"", ""Charger""]",2315.56,"{""loyalty"": ""16%""}",60587,0,Asia +2023-07-19,22875,4931,"[""Phone"", ""Laptop""]",4491.41,{},255846,1,Asia +2023-07-23,22876,6517,"[""Wireless Mouse""]",905.86,"{""loyalty"": ""9%""}",241054,1,North America +2023-07-28,22877,2729,"[""Wireless Mouse""]",1278.58,{},224192,0,Africa +2024-06-04,22878,2467,"[""Keyboard"", ""Phone""]",2165.42,"{""promo"": ""24%""}",223783,1,Africa +2024-05-12,22879,5182,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1184.64,{},49224,1,South America +2023-11-03,22880,2064,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",874.96,{},156090,1,South America +2023-05-07,22881,9308,"[""Tablet""]",2723.66,"{""promo"": ""19%""}",193486,1,Africa +2023-01-21,22882,9223,"[""Tablet"", ""Keyboard""]",3720.29,{},58087,1,Europe +2023-05-13,22883,9433,"[""Charger"", ""Tablet""]",4135.72,"{""seasonal"": ""13%""}",66637,1,Africa +2023-05-08,22884,7461,"[""Keyboard""]",3262.12,{},49867,1,Asia +2024-06-06,22885,512,"[""Charger"", ""Keyboard""]",3634.9,"{""seasonal"": ""14%""}",113151,1,Africa +2024-09-15,22886,4961,"[""Keyboard"", ""Charger"", ""Laptop""]",1148.5,"{""loyalty"": ""7%""}",147812,0,South America +2023-07-24,22887,9482,"[""Keyboard""]",4202.79,"{""seasonal"": ""11%""}",103889,0,Europe +2023-06-01,22888,7885,"[""Keyboard""]",3651.76,{},169099,0,North America +2024-03-28,22889,1270,"[""Laptop"", ""Headphones"", ""Charger""]",511.15,"{""loyalty"": ""12%""}",148734,0,South America +2024-08-23,22890,9329,"[""Charger""]",1439.62,{},72503,1,North America +2023-01-17,22891,7457,"[""Phone"", ""Charger"", ""Keyboard""]",1511.96,{},108650,0,Europe +2023-02-21,22892,1369,"[""Headphones"", ""Phone""]",2331.62,"{""seasonal"": ""15%""}",50381,0,Africa +2024-11-10,22893,3692,"[""Laptop"", ""Keyboard""]",667.03,"{""loyalty"": ""9%""}",7396,0,Asia +2024-03-03,22894,2987,"[""Headphones""]",2502.34,{},297356,0,North America +2024-05-26,22895,2611,"[""Tablet""]",3418.08,"{""seasonal"": ""18%""}",289725,1,Europe +2023-10-04,22896,4143,"[""Tablet"", ""Headphones"", ""Phone""]",1381.23,"{"""": ""17%""}",257611,0,Europe +2023-08-27,22897,4348,"[""Headphones""]",625.57,{},129894,0,South America +2024-11-28,22898,5494,"[""Wireless Mouse"", ""Headphones""]",2589.67,{},4840,1,North America +2024-01-02,22899,3651,"[""Phone"", ""Wireless Mouse""]",4610.24,"{""loyalty"": ""10%""}",297067,0,Europe +2023-07-17,22900,500,"[""Phone"", ""Wireless Mouse""]",3957.9,{},91612,0,North America +2023-01-03,22901,6420,"[""Charger""]",4074.29,"{"""": ""23%""}",47052,0,South America +2023-04-05,22902,7181,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4227.93,{},162490,0,Asia +2024-10-13,22903,7180,"[""Laptop"", ""Phone""]",3626.57,"{""seasonal"": ""11%""}",92095,1,North America +2024-07-09,22904,8558,"[""Phone""]",1058.98,{},165880,0,Africa +2024-01-16,22905,5850,"[""Phone""]",1219.68,{},178250,0,Europe +2023-04-25,22906,5135,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",748.29,{},189858,1,Asia +2024-11-10,22907,8955,"[""Charger"", ""Phone""]",4196.65,"{""loyalty"": ""16%""}",41711,0,Asia +2023-05-16,22908,9547,"[""Headphones"", ""Charger""]",2724.71,{},43780,1,South America +2024-12-28,22909,9441,"[""Monitor""]",1262.51,"{""promo"": ""21%""}",63056,1,Europe +2023-12-29,22910,6642,"[""Headphones"", ""Charger""]",4777.13,"{""promo"": ""26%""}",157277,1,Africa +2024-05-17,22911,1217,"[""Wireless Mouse""]",3512.04,{},32185,0,North America +2023-01-09,22912,9147,"[""Monitor""]",612.14,"{""seasonal"": ""25%""}",100808,0,Europe +2024-12-19,22913,4974,"[""Headphones"", ""Tablet""]",4424.12,{},136731,0,Asia +2024-01-05,22914,3217,"[""Headphones"", ""Keyboard""]",3379.8,"{""loyalty"": ""7%""}",27887,0,Africa +2023-05-12,22915,242,"[""Wireless Mouse""]",1024.18,"{"""": ""26%""}",299706,0,Europe +2023-12-31,22916,4654,"[""Phone"", ""Headphones""]",2006.45,{},30793,1,North America +2024-01-03,22917,6233,"[""Headphones"", ""Wireless Mouse""]",4132.04,"{""seasonal"": ""11%""}",258899,1,South America +2023-01-14,22918,5605,"[""Charger""]",544.64,{},169755,1,Asia +2024-05-02,22919,351,"[""Keyboard""]",4994.33,"{""seasonal"": ""21%""}",200964,0,Europe +2023-04-24,22920,6276,"[""Monitor"", ""Charger""]",3544.72,{},190974,0,Africa +2024-11-28,22921,9773,"[""Keyboard"", ""Phone"", ""Headphones""]",114.44,{},284884,1,Africa +2024-08-22,22922,1142,"[""Laptop""]",3622.56,{},222581,0,Asia +2024-11-13,22923,3892,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2836.59,"{""promo"": ""27%""}",35708,1,North America +2024-03-20,22924,63,"[""Monitor"", ""Headphones"", ""Phone""]",3256.64,"{""loyalty"": ""6%""}",90567,0,North America +2023-02-18,22925,5262,"[""Monitor""]",2223.93,"{""loyalty"": ""15%""}",37368,1,Asia +2024-07-29,22926,8592,"[""Keyboard""]",170.5,{},180971,1,Africa +2023-07-27,22927,5863,"[""Charger""]",3748.82,{},289174,0,South America +2023-12-11,22928,2015,"[""Headphones"", ""Wireless Mouse""]",3766.06,"{""promo"": ""14%""}",189850,1,South America +2024-11-28,22929,9553,"[""Laptop"", ""Tablet"", ""Phone""]",4555.41,{},89222,1,Europe +2024-02-02,22930,2424,"[""Tablet""]",640.68,{},284775,0,North America +2023-03-23,22931,893,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4941.31,{},110290,0,North America +2024-08-27,22932,5457,"[""Charger"", ""Phone""]",1210.88,{},96041,1,South America +2023-12-24,22933,6883,"[""Wireless Mouse""]",2887.78,{},278633,0,North America +2024-10-19,22934,2239,"[""Laptop"", ""Wireless Mouse""]",807.71,"{"""": ""30%""}",263161,0,Europe +2023-08-27,22935,9524,"[""Charger"", ""Keyboard""]",4837.87,"{""promo"": ""23%""}",158487,0,South America +2023-11-08,22936,6426,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3247.85,{},10671,0,Africa +2024-11-03,22937,9844,"[""Wireless Mouse""]",697.54,"{""promo"": ""6%""}",286663,1,Europe +2023-08-15,22938,5329,"[""Headphones""]",3431.67,{},276035,0,Africa +2024-06-20,22939,5312,"[""Monitor""]",2651.01,{},285392,0,Europe +2024-08-06,22940,2886,"[""Laptop""]",4032.21,"{""seasonal"": ""8%""}",254968,1,Africa +2023-09-12,22941,161,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4675.24,"{""loyalty"": ""22%""}",210625,0,Europe +2024-12-03,22942,7455,"[""Monitor"", ""Headphones""]",1340.11,{},1048,0,Africa +2024-01-23,22943,2265,"[""Keyboard""]",2405.59,"{""promo"": ""11%""}",26171,1,South America +2024-10-16,22944,4197,"[""Wireless Mouse""]",1677.48,"{""seasonal"": ""18%""}",210741,0,Europe +2023-11-23,22945,7800,"[""Phone"", ""Keyboard""]",3280.45,{},205830,0,Europe +2024-12-22,22946,8230,"[""Charger"", ""Wireless Mouse""]",3466.74,{},104683,1,North America +2023-07-28,22947,2543,"[""Monitor""]",2445.7,"{""loyalty"": ""14%""}",195444,0,North America +2024-04-14,22948,4284,"[""Monitor"", ""Keyboard"", ""Charger""]",371.16,{},57837,1,North America +2024-04-16,22949,2581,"[""Tablet"", ""Keyboard"", ""Laptop""]",2475.33,"{"""": ""30%""}",99859,1,Asia +2023-12-15,22950,8715,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2123.01,{},105074,1,Asia +2024-03-02,22951,9255,"[""Headphones"", ""Monitor""]",2257.47,"{""seasonal"": ""24%""}",214850,0,Asia +2024-05-15,22952,2332,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1881.19,{},6012,0,North America +2024-06-26,22953,8329,"[""Phone""]",4571.21,"{"""": ""11%""}",16749,1,Africa +2023-03-07,22954,4147,"[""Monitor"", ""Charger""]",2828.89,"{"""": ""12%""}",43996,0,North America +2023-01-08,22955,2558,"[""Wireless Mouse""]",1015.89,"{""loyalty"": ""13%""}",230604,1,North America +2023-10-09,22956,1087,"[""Tablet""]",2835.24,{},259953,0,Africa +2023-04-21,22957,2060,"[""Keyboard"", ""Wireless Mouse""]",350.28,{},79865,1,Africa +2024-11-05,22958,4847,"[""Phone"", ""Tablet""]",1988.48,{},141574,0,Europe +2024-11-19,22959,933,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1746.13,{},98172,0,Europe +2023-11-06,22960,1234,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3364.83,"{""promo"": ""14%""}",157221,1,North America +2024-03-22,22961,5712,"[""Phone""]",480.72,"{""loyalty"": ""16%""}",266451,0,Europe +2023-03-26,22962,833,"[""Laptop"", ""Charger"", ""Headphones""]",3746.75,"{""promo"": ""14%""}",270062,0,North America +2023-08-15,22963,4463,"[""Headphones"", ""Wireless Mouse""]",4319.61,"{""loyalty"": ""8%""}",270853,0,Asia +2023-04-20,22964,8063,"[""Monitor"", ""Phone""]",4875.07,"{"""": ""22%""}",279299,0,Europe +2024-01-23,22965,6604,"[""Headphones"", ""Tablet"", ""Charger""]",539.24,"{""seasonal"": ""6%""}",128414,0,South America +2023-03-18,22966,8968,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",722.52,{},61376,1,Asia +2023-04-23,22967,2963,"[""Phone""]",3338.23,"{""seasonal"": ""19%""}",49648,1,South America +2024-04-02,22968,3546,"[""Wireless Mouse""]",1443.09,{},150952,1,North America +2024-03-14,22969,5168,"[""Tablet"", ""Wireless Mouse""]",730.6,{},66323,0,South America +2024-08-09,22970,3499,"[""Charger"", ""Monitor"", ""Tablet""]",4277.26,"{""loyalty"": ""30%""}",277074,1,South America +2024-07-28,22971,5188,"[""Headphones"", ""Laptop""]",3177.16,{},38066,1,Africa +2024-09-11,22972,8343,"[""Monitor""]",4402.01,"{"""": ""21%""}",132390,1,South America +2023-08-26,22973,246,"[""Monitor"", ""Phone"", ""Charger""]",1192.71,{},257159,0,North America +2023-02-19,22974,6207,"[""Charger"", ""Laptop""]",3421.1,"{""loyalty"": ""30%""}",219077,1,Asia +2024-01-28,22975,62,"[""Charger"", ""Headphones"", ""Laptop""]",1419.59,{},12655,1,Europe +2024-07-18,22976,4452,"[""Laptop"", ""Charger""]",858.92,{},80093,0,Europe +2023-03-04,22977,3972,"[""Charger""]",1906.23,{},212042,1,Africa +2023-11-23,22978,3655,"[""Charger"", ""Wireless Mouse""]",1633.4,"{"""": ""20%""}",258378,0,Asia +2024-07-05,22979,4859,"[""Headphones"", ""Phone"", ""Monitor""]",2155.3,"{"""": ""6%""}",275138,1,Asia +2023-12-06,22980,6482,"[""Headphones""]",2336.7,"{"""": ""25%""}",86381,0,Europe +2023-12-10,22981,5256,"[""Laptop""]",1941.56,"{""loyalty"": ""29%""}",269619,1,Africa +2024-07-18,22982,4806,"[""Wireless Mouse"", ""Keyboard""]",1638.31,{},147787,0,Asia +2024-03-12,22983,1653,"[""Monitor"", ""Keyboard"", ""Headphones""]",3061.29,{},215568,0,Asia +2023-04-28,22984,5380,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4533.34,{},228311,0,Asia +2023-10-08,22985,2468,"[""Tablet"", ""Headphones""]",4128.43,"{""loyalty"": ""27%""}",76492,0,Europe +2024-04-02,22986,8617,"[""Monitor""]",4481.71,"{""seasonal"": ""9%""}",28193,0,Asia +2023-12-27,22987,9636,"[""Keyboard"", ""Headphones""]",4576.11,{},263699,0,South America +2023-02-28,22988,7430,"[""Charger""]",4411.22,{},14901,1,Africa +2024-07-30,22989,4103,"[""Tablet"", ""Monitor"", ""Keyboard""]",3123.17,"{""loyalty"": ""25%""}",143793,0,North America +2024-03-28,22990,6578,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2877.3,{},203323,1,Africa +2023-03-01,22991,4264,"[""Monitor"", ""Wireless Mouse""]",1361.32,{},185073,1,Africa +2024-06-01,22992,7470,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2749.25,"{""loyalty"": ""10%""}",195175,0,Europe +2024-06-05,22993,3918,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",300.7,{},162502,0,Asia +2023-03-26,22994,2036,"[""Keyboard""]",3123.95,{},229021,0,Africa +2024-06-19,22995,6360,"[""Keyboard""]",2551.32,{},84729,1,Europe +2023-11-26,22996,1019,"[""Phone"", ""Keyboard"", ""Charger""]",4750.27,"{""loyalty"": ""7%""}",58036,1,North America +2024-02-19,22997,6868,"[""Monitor""]",2555.99,{},121053,1,South America +2024-08-10,22998,1817,"[""Wireless Mouse""]",4832.41,{},70543,0,Africa +2024-10-12,22999,5251,"[""Tablet"", ""Charger"", ""Keyboard""]",2058.46,{},179955,0,Africa +2023-04-26,23000,2483,"[""Tablet"", ""Phone""]",878.84,{},108585,1,Europe +2024-10-24,23001,2096,"[""Tablet""]",1823.43,"{""promo"": ""9%""}",144766,1,Europe +2024-07-04,23002,6730,"[""Charger""]",1691.22,"{""loyalty"": ""12%""}",161451,0,Asia +2024-01-06,23003,3918,"[""Keyboard"", ""Monitor""]",2145.72,{},133982,0,North America +2023-09-20,23004,8401,"[""Phone""]",2164.95,{},212770,1,Africa +2023-04-11,23005,5850,"[""Tablet"", ""Keyboard"", ""Monitor""]",672.99,"{""promo"": ""26%""}",51691,1,North America +2024-11-07,23006,7728,"[""Charger""]",4078.34,{},97240,1,Asia +2024-09-18,23007,2243,"[""Headphones"", ""Monitor"", ""Charger""]",4443.9,"{""seasonal"": ""11%""}",95622,0,Europe +2023-08-30,23008,2108,"[""Laptop""]",2677.02,"{"""": ""12%""}",280441,0,North America +2023-09-20,23009,4096,"[""Laptop""]",3112.01,{},207553,0,Asia +2024-10-13,23010,5240,"[""Tablet"", ""Headphones""]",1894.59,"{""promo"": ""29%""}",223324,0,Asia +2023-12-10,23011,327,"[""Charger""]",1081.73,"{""promo"": ""22%""}",136004,1,North America +2024-07-20,23012,7575,"[""Charger"", ""Keyboard"", ""Monitor""]",4202.11,"{"""": ""11%""}",203572,0,Asia +2023-01-27,23013,6742,"[""Monitor"", ""Tablet""]",260.35,"{"""": ""26%""}",143885,1,Africa +2023-01-15,23014,8865,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",277.15,"{""seasonal"": ""28%""}",143399,1,Africa +2023-03-03,23015,4376,"[""Laptop"", ""Keyboard""]",4268.41,"{""loyalty"": ""29%""}",235830,0,South America +2024-04-11,23016,5588,"[""Charger"", ""Phone"", ""Monitor""]",4898.26,{},219200,1,South America +2024-04-21,23017,7277,"[""Laptop"", ""Charger"", ""Headphones""]",2509.91,{},112808,1,Asia +2024-05-13,23018,5029,"[""Laptop""]",1238.52,"{"""": ""25%""}",162401,0,North America +2024-05-24,23019,2421,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1607.84,"{""loyalty"": ""6%""}",159400,1,Africa +2023-05-18,23020,8446,"[""Tablet""]",1913.07,{},192423,0,Europe +2024-01-25,23021,7568,"[""Keyboard"", ""Laptop"", ""Monitor""]",4151.25,"{""promo"": ""13%""}",179936,0,Europe +2024-04-14,23022,2525,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",804.37,{},154213,0,Asia +2024-04-19,23023,8495,"[""Wireless Mouse""]",2018.08,{},207885,1,North America +2023-06-09,23024,389,"[""Headphones"", ""Tablet"", ""Phone""]",269.62,"{""seasonal"": ""5%""}",94892,1,Europe +2024-06-22,23025,8009,"[""Monitor"", ""Keyboard""]",2377.24,{},141197,1,Europe +2023-08-27,23026,6555,"[""Keyboard"", ""Laptop""]",1344.23,{},170499,0,South America +2024-02-13,23027,7370,"[""Charger""]",1406.82,"{""seasonal"": ""9%""}",10327,0,Africa +2023-04-15,23028,657,"[""Tablet""]",785.28,{},29129,0,Asia +2023-04-25,23029,3941,"[""Headphones""]",4858.6,{},125888,1,South America +2024-06-08,23030,4455,"[""Keyboard"", ""Charger""]",1848.41,{},49472,0,South America +2024-12-05,23031,8407,"[""Laptop""]",4085.3,"{""seasonal"": ""6%""}",22334,0,Asia +2023-07-22,23032,4735,"[""Laptop"", ""Headphones"", ""Charger""]",4321.48,{},222760,1,South America +2023-08-06,23033,5049,"[""Laptop"", ""Keyboard""]",1346.0,"{""promo"": ""9%""}",251035,0,North America +2024-06-12,23034,8429,"[""Monitor"", ""Headphones""]",4606.92,"{""promo"": ""9%""}",271352,1,North America +2024-08-28,23035,6501,"[""Phone"", ""Laptop"", ""Monitor""]",345.61,{},242577,0,Europe +2024-03-29,23036,9498,"[""Monitor"", ""Phone"", ""Headphones""]",3878.64,{},48650,1,Africa +2023-04-18,23037,9283,"[""Headphones""]",1640.57,{},287510,1,Africa +2024-03-05,23038,6651,"[""Tablet"", ""Laptop"", ""Phone""]",3921.58,"{""seasonal"": ""18%""}",183876,1,Asia +2023-06-09,23039,1704,"[""Headphones""]",2721.8,"{""loyalty"": ""8%""}",41387,1,North America +2023-12-10,23040,9215,"[""Wireless Mouse""]",3163.34,{},216681,1,Africa +2023-07-04,23041,275,"[""Charger"", ""Laptop""]",3293.45,{},10275,0,North America +2024-06-30,23042,1903,"[""Keyboard"", ""Laptop""]",4730.99,"{"""": ""15%""}",249940,1,Africa +2024-08-19,23043,6141,"[""Charger"", ""Headphones"", ""Phone""]",3206.53,{},295905,1,Asia +2023-08-21,23044,7278,"[""Tablet"", ""Wireless Mouse""]",4422.67,"{""loyalty"": ""27%""}",236141,1,Europe +2024-11-20,23045,5473,"[""Keyboard"", ""Monitor""]",3123.47,"{""loyalty"": ""28%""}",233323,0,Asia +2023-06-24,23046,5432,"[""Keyboard"", ""Charger""]",1017.65,{},31860,1,Africa +2024-03-27,23047,773,"[""Charger""]",2789.74,"{""promo"": ""18%""}",70717,0,South America +2024-05-13,23048,8095,"[""Wireless Mouse"", ""Monitor""]",3620.88,"{"""": ""23%""}",171829,0,Europe +2024-11-11,23049,7899,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1117.58,"{""promo"": ""29%""}",261168,0,Asia +2023-10-31,23050,3390,"[""Laptop""]",1491.5,{},271376,1,South America +2023-05-23,23051,9716,"[""Headphones"", ""Keyboard"", ""Phone""]",478.28,{},108524,1,Africa +2024-11-21,23052,2957,"[""Keyboard""]",864.59,"{""seasonal"": ""18%""}",25572,1,South America +2023-05-12,23053,9859,"[""Monitor"", ""Laptop"", ""Keyboard""]",4629.11,{},266803,1,Europe +2024-05-14,23054,6800,"[""Monitor"", ""Laptop"", ""Keyboard""]",4125.62,"{""loyalty"": ""18%""}",217292,0,Africa +2023-07-31,23055,1954,"[""Monitor""]",255.51,"{""promo"": ""10%""}",189935,0,Asia +2023-05-19,23056,6212,"[""Charger""]",1780.74,{},25334,1,North America +2023-12-24,23057,9075,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",85.38,"{""loyalty"": ""19%""}",83993,1,South America +2023-11-20,23058,3896,"[""Keyboard""]",2208.07,"{"""": ""9%""}",68894,1,North America +2023-06-18,23059,4567,"[""Headphones"", ""Tablet"", ""Charger""]",2694.37,"{""loyalty"": ""20%""}",296719,0,North America +2024-10-07,23060,1392,"[""Keyboard"", ""Headphones"", ""Tablet""]",2342.14,"{""loyalty"": ""18%""}",285693,1,Asia +2023-07-10,23061,4158,"[""Wireless Mouse"", ""Headphones""]",3274.13,{},280653,0,South America +2024-07-18,23062,6564,"[""Monitor"", ""Tablet""]",639.13,{},156473,0,Europe +2023-10-12,23063,4371,"[""Monitor"", ""Phone"", ""Laptop""]",1605.19,"{""seasonal"": ""16%""}",298564,1,Asia +2023-08-22,23064,7635,"[""Tablet""]",1265.03,"{"""": ""19%""}",155089,1,Europe +2023-02-22,23065,2179,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",107.92,{},79636,1,Asia +2023-02-10,23066,6838,"[""Wireless Mouse""]",4837.24,{},229261,1,South America +2023-07-29,23067,5610,"[""Tablet"", ""Charger"", ""Keyboard""]",2920.4,{},51399,0,Africa +2023-07-16,23068,7003,"[""Headphones""]",2187.51,{},122176,0,Europe +2024-04-18,23069,3561,"[""Charger"", ""Keyboard""]",1323.38,"{"""": ""16%""}",9362,0,North America +2023-02-24,23070,7324,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3738.83,{},270636,1,South America +2024-06-30,23071,2548,"[""Phone"", ""Tablet"", ""Headphones""]",1544.94,"{""seasonal"": ""8%""}",194187,1,South America +2024-05-22,23072,9969,"[""Laptop""]",2694.47,"{""seasonal"": ""14%""}",63752,1,North America +2023-03-15,23073,3139,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1538.41,{},48965,0,Africa +2023-08-27,23074,1272,"[""Monitor""]",3065.96,{},170418,0,South America +2024-06-14,23075,6331,"[""Keyboard"", ""Monitor""]",4684.0,"{""loyalty"": ""11%""}",225851,0,South America +2023-02-17,23076,5094,"[""Wireless Mouse"", ""Keyboard""]",4312.65,"{""loyalty"": ""24%""}",134899,1,Asia +2024-11-05,23077,2508,"[""Charger"", ""Wireless Mouse""]",1288.49,{},141028,1,South America +2023-08-21,23078,8121,"[""Phone""]",2301.65,{},216301,0,North America +2023-02-03,23079,2605,"[""Keyboard"", ""Tablet"", ""Monitor""]",2024.73,"{""seasonal"": ""10%""}",63239,1,Asia +2024-11-05,23080,2998,"[""Phone""]",872.06,{},179431,1,Asia +2023-11-04,23081,33,"[""Keyboard"", ""Phone"", ""Charger""]",334.0,"{""promo"": ""19%""}",222021,0,Europe +2024-05-28,23082,4056,"[""Charger"", ""Headphones""]",3321.15,{},158240,1,Asia +2024-01-25,23083,4332,"[""Tablet""]",3517.6,{},63449,1,North America +2024-04-27,23084,415,"[""Headphones""]",3399.89,"{"""": ""26%""}",94474,1,North America +2023-07-31,23085,8825,"[""Headphones"", ""Tablet"", ""Laptop""]",2599.07,"{""promo"": ""18%""}",204806,0,Asia +2023-06-28,23086,9829,"[""Monitor""]",2259.08,"{""seasonal"": ""29%""}",162534,1,Europe +2023-06-24,23087,1570,"[""Charger"", ""Phone"", ""Laptop""]",2140.33,"{""loyalty"": ""26%""}",150710,0,North America +2023-04-29,23088,3326,"[""Keyboard"", ""Laptop"", ""Headphones""]",3105.03,{},80887,1,Africa +2023-01-22,23089,7611,"[""Keyboard""]",2802.52,{},67990,1,Europe +2023-05-16,23090,5523,"[""Tablet""]",3108.31,"{"""": ""25%""}",243502,0,North America +2024-06-11,23091,8603,"[""Keyboard"", ""Phone""]",2114.83,{},293384,1,North America +2023-11-26,23092,1926,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1608.08,"{""loyalty"": ""5%""}",213243,1,South America +2024-10-27,23093,6030,"[""Monitor"", ""Laptop""]",1325.27,{},61802,0,Asia +2023-07-08,23094,5101,"[""Wireless Mouse""]",2109.07,{},254844,1,Asia +2023-04-13,23095,3389,"[""Tablet"", ""Monitor"", ""Keyboard""]",4852.95,{},59031,0,Europe +2023-10-11,23096,4609,"[""Phone"", ""Wireless Mouse""]",167.83,"{""promo"": ""25%""}",100734,1,South America +2024-03-03,23097,8211,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1277.96,{},166984,0,Asia +2024-01-24,23098,7790,"[""Charger""]",1146.26,{},23018,0,North America +2024-06-15,23099,4344,"[""Keyboard"", ""Laptop""]",1085.4,"{""seasonal"": ""29%""}",88341,1,Europe +2024-04-05,23100,1433,"[""Headphones"", ""Laptop""]",4672.94,{},29295,1,Africa +2024-01-16,23101,310,"[""Wireless Mouse"", ""Phone""]",3833.68,"{"""": ""9%""}",169489,0,Asia +2024-09-18,23102,3583,"[""Wireless Mouse""]",2125.72,"{""promo"": ""13%""}",34322,1,Europe +2024-09-08,23103,8110,"[""Laptop""]",3739.75,{},127107,1,Europe +2023-02-18,23104,2020,"[""Headphones"", ""Wireless Mouse""]",3123.91,"{""promo"": ""20%""}",42084,1,Europe +2023-12-13,23105,5420,"[""Laptop"", ""Headphones""]",3153.43,{},41708,0,North America +2024-04-21,23106,64,"[""Monitor"", ""Wireless Mouse""]",196.55,"{""seasonal"": ""23%""}",186939,1,South America +2023-11-05,23107,9667,"[""Monitor""]",674.31,"{"""": ""16%""}",67945,0,Africa +2023-05-21,23108,8287,"[""Charger""]",2962.59,"{"""": ""25%""}",71857,1,Asia +2024-02-13,23109,4368,"[""Phone"", ""Tablet"", ""Monitor""]",4013.0,"{""promo"": ""12%""}",49963,1,Africa +2023-06-01,23110,9465,"[""Charger""]",4717.21,{},256464,1,Asia +2024-12-29,23111,3968,"[""Monitor""]",502.3,{},76046,1,South America +2024-03-07,23112,8887,"[""Phone"", ""Keyboard""]",1973.04,{},192201,1,South America +2023-12-13,23113,5004,"[""Headphones""]",647.71,"{""loyalty"": ""20%""}",164012,1,Africa +2023-05-02,23114,2684,"[""Charger"", ""Wireless Mouse""]",1845.48,"{""loyalty"": ""25%""}",130460,0,South America +2023-08-20,23115,9944,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",766.18,{},68491,0,Europe +2023-02-07,23116,7994,"[""Charger""]",4699.84,"{""promo"": ""17%""}",245183,0,Asia +2023-10-27,23117,2736,"[""Monitor""]",2033.75,{},263973,0,Europe +2024-09-10,23118,745,"[""Monitor"", ""Charger""]",577.33,"{"""": ""8%""}",175245,1,South America +2024-03-07,23119,307,"[""Phone""]",4793.26,{},66206,0,North America +2024-11-23,23120,4888,"[""Laptop"", ""Monitor"", ""Charger""]",2055.94,{},117344,1,North America +2024-11-26,23121,6707,"[""Wireless Mouse"", ""Headphones""]",2711.13,"{""seasonal"": ""22%""}",219373,1,North America +2023-06-21,23122,2794,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3212.43,"{""loyalty"": ""18%""}",217320,0,North America +2024-07-10,23123,8241,"[""Wireless Mouse""]",859.42,{},228926,1,South America +2024-02-06,23124,4090,"[""Laptop"", ""Phone"", ""Keyboard""]",2169.0,{},127873,1,North America +2023-10-23,23125,5949,"[""Tablet"", ""Phone"", ""Monitor""]",2400.58,"{""loyalty"": ""13%""}",200996,0,Africa +2024-11-03,23126,6897,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3369.1,"{""promo"": ""20%""}",93258,0,Africa +2024-08-03,23127,4746,"[""Keyboard""]",4299.41,{},221191,0,Asia +2024-09-02,23128,3545,"[""Monitor"", ""Wireless Mouse""]",1574.77,{},252747,1,Europe +2023-11-14,23129,8942,"[""Laptop"", ""Keyboard""]",4708.01,{},83447,1,North America +2023-05-28,23130,8956,"[""Laptop""]",792.11,"{""seasonal"": ""24%""}",277676,1,Africa +2023-08-15,23131,7208,"[""Monitor"", ""Charger""]",2536.56,"{""seasonal"": ""28%""}",246530,1,Europe +2024-03-17,23132,8165,"[""Keyboard""]",3994.94,{},37674,0,South America +2023-10-03,23133,2447,"[""Phone"", ""Keyboard"", ""Monitor""]",93.36,"{""seasonal"": ""25%""}",296437,0,Africa +2023-12-31,23134,410,"[""Phone"", ""Tablet"", ""Monitor""]",1956.78,"{"""": ""20%""}",121306,1,South America +2023-12-22,23135,973,"[""Phone"", ""Charger""]",1767.85,{},195079,1,Asia +2024-06-01,23136,4039,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3524.2,{},245001,0,Europe +2024-04-20,23137,8906,"[""Charger"", ""Phone""]",638.97,{},207080,1,South America +2023-07-07,23138,5410,"[""Keyboard"", ""Charger"", ""Phone""]",218.69,"{""promo"": ""21%""}",60977,0,Europe +2023-08-02,23139,1920,"[""Headphones"", ""Laptop"", ""Phone""]",1000.85,"{""seasonal"": ""18%""}",84964,0,Asia +2023-11-07,23140,7048,"[""Laptop"", ""Phone""]",2899.06,{},175518,0,Africa +2024-05-11,23141,513,"[""Headphones"", ""Laptop""]",1112.26,"{""loyalty"": ""7%""}",113252,0,Europe +2024-07-30,23142,4001,"[""Keyboard""]",3832.86,"{""promo"": ""14%""}",59155,1,Africa +2024-03-05,23143,5363,"[""Keyboard"", ""Tablet""]",891.72,"{""seasonal"": ""30%""}",51257,1,South America +2023-06-04,23144,3147,"[""Laptop"", ""Wireless Mouse""]",1244.22,{},8028,0,Europe +2024-04-29,23145,4028,"[""Keyboard""]",4981.77,{},201638,0,North America +2024-02-21,23146,5125,"[""Headphones""]",4317.96,{},238186,1,Asia +2024-04-30,23147,8383,"[""Phone""]",184.75,"{""promo"": ""8%""}",267079,0,South America +2023-05-21,23148,8634,"[""Tablet""]",2860.85,"{""seasonal"": ""18%""}",230810,1,Africa +2024-03-23,23149,424,"[""Monitor""]",4166.48,"{""seasonal"": ""16%""}",240761,1,Asia +2024-07-09,23150,7581,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1880.86,{},204897,0,Africa +2024-09-20,23151,8325,"[""Headphones""]",2667.32,{},149664,0,Europe +2023-04-09,23152,7224,"[""Monitor""]",2537.08,"{""loyalty"": ""8%""}",55304,1,Europe +2024-01-19,23153,1975,"[""Wireless Mouse""]",2207.3,"{""loyalty"": ""5%""}",152921,1,Europe +2023-06-14,23154,6137,"[""Phone"", ""Charger""]",3666.18,{},74661,0,Asia +2024-03-17,23155,1709,"[""Phone"", ""Wireless Mouse""]",2592.35,{},39081,0,Africa +2023-06-17,23156,8941,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4237.6,{},201221,0,Africa +2023-05-09,23157,7433,"[""Keyboard"", ""Tablet""]",68.35,{},152225,0,Europe +2024-03-30,23158,1374,"[""Headphones""]",2128.84,{},194275,1,Asia +2023-12-21,23159,5628,"[""Keyboard"", ""Charger"", ""Headphones""]",2722.3,{},20000,1,South America +2024-01-04,23160,6079,"[""Phone"", ""Keyboard"", ""Monitor""]",1024.22,"{""seasonal"": ""16%""}",170218,0,Africa +2024-07-30,23161,1940,"[""Headphones"", ""Monitor""]",365.04,{},261680,0,Asia +2023-01-07,23162,6078,"[""Charger"", ""Monitor""]",1338.14,"{"""": ""30%""}",212223,1,North America +2024-11-29,23163,1493,"[""Charger""]",2128.91,{},164607,1,Africa +2023-06-12,23164,259,"[""Phone"", ""Keyboard"", ""Laptop""]",218.93,{},150784,0,Africa +2024-03-14,23165,51,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",345.85,{},146216,1,North America +2023-08-20,23166,1671,"[""Keyboard"", ""Phone"", ""Laptop""]",4240.36,"{""promo"": ""17%""}",168228,1,Europe +2024-03-23,23167,3350,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",648.84,{},53270,1,Africa +2023-05-09,23168,2255,"[""Phone""]",1647.79,"{""seasonal"": ""14%""}",97934,1,Africa +2023-07-02,23169,1015,"[""Monitor"", ""Tablet"", ""Laptop""]",3951.02,{},235827,1,South America +2024-08-07,23170,238,"[""Phone""]",3523.24,{},168890,1,North America +2024-11-03,23171,3388,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4091.12,"{""seasonal"": ""9%""}",210583,1,Africa +2023-11-18,23172,1880,"[""Monitor"", ""Headphones""]",3359.92,{},147203,0,Europe +2023-10-19,23173,40,"[""Tablet""]",2804.26,"{""seasonal"": ""29%""}",157064,0,Europe +2023-02-14,23174,2679,"[""Phone""]",984.36,{},232379,1,South America +2023-09-20,23175,7662,"[""Tablet"", ""Wireless Mouse""]",1517.91,"{""loyalty"": ""21%""}",196066,0,Asia +2024-04-18,23176,763,"[""Wireless Mouse""]",4346.97,{},290731,0,North America +2024-09-20,23177,7580,"[""Headphones""]",2877.91,{},230629,0,Europe +2024-03-12,23178,2739,"[""Tablet"", ""Charger""]",1756.35,{},294650,1,Africa +2023-01-31,23179,6853,"[""Keyboard"", ""Charger""]",4977.05,"{""promo"": ""6%""}",283247,0,South America +2023-01-17,23180,5076,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3289.42,{},44333,1,North America +2023-01-15,23181,4724,"[""Headphones"", ""Keyboard""]",294.79,"{""loyalty"": ""11%""}",140386,0,South America +2023-06-03,23182,8448,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2324.06,"{""promo"": ""20%""}",275462,0,Asia +2024-10-18,23183,520,"[""Laptop"", ""Headphones"", ""Keyboard""]",1371.64,"{""promo"": ""24%""}",57670,1,North America +2023-12-07,23184,6337,"[""Keyboard"", ""Monitor"", ""Tablet""]",1613.96,{},296156,0,Asia +2024-01-08,23185,993,"[""Headphones"", ""Charger"", ""Tablet""]",2698.63,{},290735,1,Africa +2024-06-13,23186,9522,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2842.51,{},128191,0,South America +2023-07-24,23187,3891,"[""Tablet""]",4153.32,"{""seasonal"": ""28%""}",236923,0,Asia +2023-04-06,23188,6207,"[""Phone"", ""Wireless Mouse""]",3545.85,{},72666,0,Asia +2023-07-13,23189,1107,"[""Laptop"", ""Charger"", ""Monitor""]",248.6,"{"""": ""6%""}",114560,0,Europe +2024-04-12,23190,8761,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2426.43,"{""seasonal"": ""7%""}",273560,1,Europe +2023-02-15,23191,3995,"[""Headphones"", ""Wireless Mouse""]",4776.68,{},291442,0,Asia +2024-02-12,23192,1837,"[""Phone"", ""Headphones""]",4855.77,"{"""": ""28%""}",189809,1,South America +2023-12-04,23193,5497,"[""Charger"", ""Headphones""]",4917.52,"{""loyalty"": ""28%""}",114469,1,North America +2023-03-17,23194,1863,"[""Monitor"", ""Laptop"", ""Tablet""]",696.74,{},76569,0,North America +2024-09-13,23195,5727,"[""Laptop""]",916.37,{},81270,1,Asia +2023-04-19,23196,9804,"[""Wireless Mouse"", ""Tablet""]",2197.54,"{""promo"": ""18%""}",205622,0,South America +2023-12-03,23197,7371,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2431.97,{},79779,1,South America +2024-07-11,23198,3254,"[""Charger"", ""Monitor""]",2102.02,{},272209,0,North America +2023-09-06,23199,1361,"[""Wireless Mouse""]",3992.63,{},215378,0,South America +2024-02-19,23200,908,"[""Keyboard""]",2219.87,"{""promo"": ""5%""}",129737,0,Europe +2023-01-05,23201,6874,"[""Tablet"", ""Phone"", ""Keyboard""]",904.9,{},30750,0,Africa +2023-03-11,23202,6698,"[""Tablet""]",2847.3,"{""promo"": ""7%""}",59996,0,Asia +2024-03-29,23203,337,"[""Keyboard""]",3046.42,{},118485,1,Europe +2023-08-31,23204,9883,"[""Keyboard"", ""Charger"", ""Phone""]",4667.21,"{""seasonal"": ""11%""}",205270,1,Europe +2024-07-02,23205,5773,"[""Headphones"", ""Phone""]",316.23,{},26670,1,South America +2024-09-20,23206,5691,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2287.14,{},140772,1,Europe +2024-06-19,23207,9371,"[""Charger""]",1867.41,"{""loyalty"": ""28%""}",127560,0,Africa +2024-08-02,23208,2961,"[""Charger"", ""Headphones"", ""Laptop""]",3025.24,{},231015,0,South America +2023-01-03,23209,5825,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4126.19,"{"""": ""12%""}",79032,1,North America +2024-09-06,23210,5505,"[""Headphones""]",966.22,"{""loyalty"": ""14%""}",141478,1,Asia +2023-09-01,23211,9651,"[""Keyboard"", ""Wireless Mouse""]",198.51,{},87234,1,Asia +2023-08-24,23212,1343,"[""Keyboard"", ""Monitor"", ""Headphones""]",3203.96,{},156569,1,Africa +2023-03-28,23213,9799,"[""Monitor"", ""Keyboard"", ""Charger""]",1508.92,"{""seasonal"": ""8%""}",37919,0,Asia +2023-03-02,23214,7862,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3244.63,"{""promo"": ""7%""}",219342,0,Asia +2023-10-06,23215,5941,"[""Wireless Mouse"", ""Keyboard""]",106.59,{},231808,1,Europe +2023-03-23,23216,6404,"[""Monitor"", ""Wireless Mouse""]",3414.83,"{""loyalty"": ""19%""}",101772,0,Europe +2024-07-25,23217,9216,"[""Wireless Mouse""]",1264.27,{},235520,1,South America +2023-05-17,23218,5166,"[""Tablet"", ""Charger"", ""Phone""]",1722.21,{},203046,0,Europe +2023-07-10,23219,7611,"[""Phone"", ""Headphones""]",4862.01,"{""seasonal"": ""22%""}",238719,1,Asia +2024-06-16,23220,1806,"[""Headphones""]",3876.04,"{""seasonal"": ""21%""}",263766,0,Asia +2024-11-17,23221,4084,"[""Headphones""]",3499.11,"{""loyalty"": ""12%""}",212299,0,North America +2023-02-06,23222,3334,"[""Wireless Mouse"", ""Keyboard""]",1023.79,"{"""": ""10%""}",70807,1,North America +2024-03-15,23223,402,"[""Laptop""]",2867.47,{},164337,0,Europe +2024-07-11,23224,6084,"[""Monitor"", ""Headphones"", ""Keyboard""]",132.74,"{""promo"": ""28%""}",295400,1,Europe +2023-05-10,23225,7198,"[""Headphones"", ""Keyboard"", ""Monitor""]",423.57,"{""promo"": ""25%""}",19521,1,Africa +2023-05-12,23226,2248,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",336.82,"{"""": ""12%""}",249756,0,Europe +2023-02-15,23227,8988,"[""Monitor"", ""Tablet""]",3335.2,"{""seasonal"": ""22%""}",47061,1,North America +2023-08-10,23228,5248,"[""Wireless Mouse""]",1234.88,"{""loyalty"": ""25%""}",9029,1,Africa +2023-06-24,23229,4573,"[""Laptop"", ""Headphones""]",3426.32,{},24919,1,Africa +2024-05-27,23230,8742,"[""Phone"", ""Charger""]",4959.81,{},81389,0,Europe +2024-05-15,23231,1644,"[""Monitor""]",4711.03,"{""promo"": ""7%""}",244390,0,South America +2023-06-22,23232,2599,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1853.49,{},273770,1,North America +2023-10-10,23233,280,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2425.38,"{"""": ""14%""}",75109,1,North America +2023-12-24,23234,8546,"[""Monitor""]",2810.74,"{"""": ""6%""}",166516,0,Africa +2024-11-30,23235,5072,"[""Phone"", ""Tablet""]",4108.84,{},65336,1,Asia +2024-05-19,23236,5694,"[""Monitor""]",2298.44,"{""seasonal"": ""19%""}",118952,1,Asia +2024-06-24,23237,531,"[""Monitor""]",1505.66,{},266082,1,Africa +2024-09-09,23238,8226,"[""Headphones"", ""Laptop""]",2948.42,{},109762,0,Asia +2023-12-20,23239,8377,"[""Charger"", ""Keyboard""]",721.53,{},197308,1,Asia +2023-06-28,23240,6113,"[""Monitor""]",2727.97,{},217586,0,Africa +2023-03-23,23241,1535,"[""Keyboard"", ""Charger""]",3640.03,{},90125,1,Africa +2023-04-17,23242,1220,"[""Headphones"", ""Phone""]",3098.46,{},130730,1,Africa +2023-06-05,23243,4436,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2172.55,{},126719,1,North America +2024-03-27,23244,5641,"[""Monitor""]",3779.24,{},87978,1,Europe +2023-06-13,23245,5053,"[""Phone"", ""Tablet"", ""Monitor""]",1982.39,{},277992,1,Europe +2023-10-19,23246,2200,"[""Tablet"", ""Laptop""]",4158.67,"{"""": ""8%""}",279602,0,South America +2024-08-14,23247,6518,"[""Wireless Mouse""]",3190.24,"{""promo"": ""11%""}",158516,1,Africa +2023-10-21,23248,4753,"[""Charger""]",4361.15,"{""seasonal"": ""30%""}",124885,1,North America +2024-08-02,23249,7439,"[""Monitor"", ""Wireless Mouse""]",2175.16,{},137004,1,Asia +2023-06-09,23250,1511,"[""Phone""]",1226.3,{},37367,1,South America +2023-01-13,23251,4750,"[""Laptop""]",323.7,"{""promo"": ""20%""}",209100,0,Asia +2024-06-16,23252,4313,"[""Tablet""]",3950.47,{},125153,1,South America +2023-06-13,23253,5702,"[""Tablet"", ""Laptop""]",4838.23,"{""seasonal"": ""10%""}",46172,1,Europe +2023-04-02,23254,9029,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3490.56,{},64706,1,North America +2024-06-23,23255,4080,"[""Laptop"", ""Monitor""]",355.64,"{"""": ""23%""}",85735,0,Asia +2024-04-19,23256,6294,"[""Tablet""]",732.02,"{"""": ""24%""}",220937,1,Europe +2023-09-08,23257,5119,"[""Charger""]",864.81,"{""loyalty"": ""7%""}",251087,1,Europe +2023-09-28,23258,417,"[""Phone"", ""Charger"", ""Tablet""]",2865.38,{},11811,0,Asia +2024-07-01,23259,6366,"[""Monitor"", ""Wireless Mouse""]",427.57,"{""promo"": ""19%""}",235287,1,North America +2024-11-13,23260,7155,"[""Charger"", ""Monitor""]",2720.71,{},275496,1,North America +2023-04-05,23261,471,"[""Headphones"", ""Tablet"", ""Charger""]",4028.03,{},184725,1,Asia +2024-07-09,23262,8900,"[""Phone""]",4561.72,{},64261,0,Europe +2023-08-10,23263,8922,"[""Laptop"", ""Tablet""]",516.57,"{""seasonal"": ""11%""}",40160,0,North America +2023-05-22,23264,2673,"[""Laptop""]",2406.01,{},18087,1,Europe +2023-01-25,23265,7278,"[""Monitor"", ""Charger"", ""Phone""]",1733.54,{},136124,1,Africa +2024-06-13,23266,5384,"[""Tablet"", ""Charger"", ""Laptop""]",1443.94,{},186093,0,Europe +2023-02-05,23267,9528,"[""Laptop"", ""Monitor"", ""Keyboard""]",1978.18,{},159985,1,South America +2024-03-06,23268,7880,"[""Headphones"", ""Keyboard"", ""Monitor""]",3358.37,"{"""": ""23%""}",81108,1,Europe +2024-01-23,23269,3315,"[""Laptop"", ""Monitor"", ""Keyboard""]",2788.53,{},134711,1,Asia +2023-07-24,23270,5582,"[""Charger"", ""Wireless Mouse""]",3743.82,"{"""": ""23%""}",69237,1,Europe +2023-08-17,23271,4172,"[""Keyboard"", ""Phone"", ""Charger""]",1497.46,{},1732,1,South America +2023-05-20,23272,1056,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4661.74,"{""seasonal"": ""5%""}",52143,1,South America +2023-02-12,23273,6052,"[""Wireless Mouse""]",787.99,"{""promo"": ""18%""}",208813,0,Africa +2024-05-18,23274,4941,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1287.56,"{""promo"": ""18%""}",260568,0,Africa +2024-08-30,23275,3334,"[""Tablet"", ""Wireless Mouse""]",899.68,{},51364,1,South America +2023-12-29,23276,2434,"[""Monitor"", ""Keyboard""]",3442.21,{},80731,1,Asia +2024-12-09,23277,6692,"[""Charger""]",4407.79,{},88097,0,Africa +2023-05-04,23278,7004,"[""Keyboard"", ""Phone""]",2718.96,"{""promo"": ""15%""}",32224,0,Africa +2023-05-16,23279,9099,"[""Wireless Mouse""]",4064.49,"{""loyalty"": ""8%""}",119659,1,Africa +2024-07-24,23280,8850,"[""Wireless Mouse"", ""Laptop""]",4886.35,{},167165,0,South America +2023-11-26,23281,8410,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2127.17,"{""seasonal"": ""28%""}",180857,1,North America +2024-09-01,23282,1485,"[""Charger""]",2756.46,"{""seasonal"": ""23%""}",80549,1,South America +2023-08-16,23283,6472,"[""Headphones"", ""Laptop""]",966.47,"{""seasonal"": ""6%""}",136100,1,North America +2023-11-28,23284,5651,"[""Wireless Mouse"", ""Keyboard""]",3690.73,{},144153,1,Asia +2024-06-03,23285,4673,"[""Phone"", ""Tablet"", ""Keyboard""]",204.8,"{""loyalty"": ""16%""}",76204,1,Asia +2024-02-28,23286,6818,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4551.0,{},24360,1,Asia +2024-05-09,23287,7050,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",943.32,"{"""": ""26%""}",94839,1,Europe +2024-08-31,23288,4561,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3147.87,{},289325,1,Europe +2024-07-30,23289,9440,"[""Phone"", ""Charger""]",3873.61,{},142973,1,Africa +2024-10-31,23290,6483,"[""Tablet""]",2134.63,"{"""": ""18%""}",197182,0,North America +2024-07-05,23291,5691,"[""Phone""]",93.61,{},134909,0,Africa +2023-11-24,23292,345,"[""Phone"", ""Tablet""]",3334.92,{},28044,0,Africa +2024-03-09,23293,3279,"[""Laptop"", ""Phone"", ""Keyboard""]",2148.93,"{"""": ""21%""}",184403,1,Africa +2024-07-25,23294,9144,"[""Charger""]",2321.14,"{""seasonal"": ""9%""}",112896,0,North America +2023-11-24,23295,7255,"[""Tablet""]",443.84,{},297658,1,Africa +2024-02-12,23296,6760,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",902.22,"{"""": ""12%""}",25183,0,North America +2023-03-27,23297,2384,"[""Keyboard"", ""Laptop""]",2055.76,"{""loyalty"": ""21%""}",194937,0,North America +2023-12-14,23298,1562,"[""Phone""]",2573.54,"{""seasonal"": ""9%""}",164380,1,Asia +2023-12-16,23299,9876,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1743.37,"{"""": ""18%""}",17518,1,North America +2024-11-30,23300,1721,"[""Phone""]",4832.79,"{"""": ""7%""}",135812,0,South America +2023-03-10,23301,8311,"[""Tablet""]",1408.21,"{""promo"": ""15%""}",59664,1,Europe +2024-03-26,23302,8484,"[""Charger""]",4355.47,"{""promo"": ""20%""}",59912,0,Africa +2024-04-10,23303,3535,"[""Keyboard"", ""Charger"", ""Laptop""]",470.19,"{""seasonal"": ""9%""}",43221,0,South America +2024-12-22,23304,2485,"[""Headphones""]",2661.53,{},78247,0,Europe +2023-07-12,23305,4873,"[""Tablet""]",1541.17,{},202321,1,South America +2024-01-30,23306,5606,"[""Laptop"", ""Monitor"", ""Headphones""]",4334.79,{},98353,0,Africa +2024-09-07,23307,4522,"[""Charger"", ""Keyboard"", ""Monitor""]",3703.43,"{""seasonal"": ""8%""}",109762,0,Asia +2023-06-11,23308,4502,"[""Charger""]",3885.29,{},182167,1,Africa +2024-02-19,23309,6944,"[""Tablet"", ""Keyboard""]",4384.38,"{""promo"": ""26%""}",226569,0,Africa +2024-04-27,23310,543,"[""Monitor"", ""Phone"", ""Charger""]",1063.05,"{""seasonal"": ""17%""}",69371,0,Asia +2024-12-28,23311,2357,"[""Charger"", ""Headphones"", ""Monitor""]",4431.86,"{""loyalty"": ""19%""}",211872,1,Europe +2024-11-10,23312,622,"[""Laptop"", ""Phone""]",4664.58,{},21847,1,South America +2023-02-15,23313,7297,"[""Charger"", ""Wireless Mouse""]",1230.72,{},203201,0,North America +2023-12-02,23314,2886,"[""Tablet"", ""Headphones"", ""Charger""]",3047.47,"{"""": ""20%""}",90047,0,Africa +2023-10-18,23315,9093,"[""Keyboard""]",904.34,"{""loyalty"": ""18%""}",226350,0,Asia +2023-11-16,23316,5390,"[""Headphones"", ""Phone""]",2399.74,"{"""": ""10%""}",160632,0,Europe +2024-07-20,23317,2092,"[""Phone"", ""Keyboard""]",4110.49,{},49661,0,Asia +2023-09-12,23318,6860,"[""Wireless Mouse"", ""Headphones""]",2531.69,"{""seasonal"": ""12%""}",124870,1,Asia +2024-05-17,23319,3403,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3607.71,{},202742,0,North America +2024-07-18,23320,5454,"[""Headphones"", ""Charger"", ""Keyboard""]",312.33,{},97910,0,South America +2023-12-11,23321,6545,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2905.06,"{""loyalty"": ""20%""}",144163,1,North America +2024-11-26,23322,6047,"[""Phone"", ""Keyboard""]",3285.73,"{"""": ""14%""}",119485,1,Europe +2024-09-26,23323,6037,"[""Tablet""]",3804.64,"{"""": ""10%""}",48736,0,Africa +2024-06-30,23324,5275,"[""Headphones""]",551.68,{},53289,1,North America +2023-03-15,23325,1461,"[""Laptop"", ""Keyboard""]",4124.38,{},233975,0,Asia +2023-09-09,23326,2434,"[""Headphones""]",2179.57,{},122576,0,Europe +2024-01-17,23327,4971,"[""Monitor"", ""Keyboard"", ""Tablet""]",3524.26,"{"""": ""20%""}",33693,1,Europe +2023-04-26,23328,6376,"[""Laptop""]",3281.19,"{""seasonal"": ""23%""}",260128,0,Africa +2023-01-29,23329,6728,"[""Tablet""]",1357.97,{},199244,0,Asia +2024-10-24,23330,3516,"[""Monitor""]",3530.99,"{""seasonal"": ""22%""}",236651,1,Europe +2024-05-15,23331,3019,"[""Phone""]",4132.34,{},13577,0,Africa +2023-04-21,23332,2737,"[""Keyboard""]",2541.19,{},6930,1,North America +2023-06-22,23333,6906,"[""Keyboard""]",3690.73,{},162024,1,Asia +2024-03-23,23334,4023,"[""Keyboard"", ""Headphones""]",3731.63,{},106241,0,North America +2023-12-04,23335,4114,"[""Phone"", ""Laptop""]",2615.42,"{""seasonal"": ""9%""}",82540,1,South America +2024-03-27,23336,2388,"[""Charger""]",608.79,{},23513,0,Africa +2023-01-16,23337,5150,"[""Tablet"", ""Headphones"", ""Charger""]",4265.78,"{""promo"": ""21%""}",168861,1,Africa +2024-10-07,23338,1884,"[""Phone"", ""Keyboard""]",3745.17,"{""promo"": ""15%""}",273529,0,Africa +2023-06-04,23339,409,"[""Monitor"", ""Tablet""]",3886.91,{},228651,0,North America +2024-11-10,23340,7341,"[""Headphones"", ""Wireless Mouse""]",369.37,"{""loyalty"": ""16%""}",72888,1,South America +2024-04-17,23341,74,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1365.52,{},39295,1,South America +2024-05-01,23342,5018,"[""Phone""]",2189.16,"{""seasonal"": ""16%""}",54456,1,Africa +2024-04-05,23343,5755,"[""Laptop"", ""Tablet""]",250.52,{},201832,0,North America +2024-01-02,23344,1455,"[""Monitor""]",4174.88,"{""seasonal"": ""6%""}",12839,0,South America +2024-07-27,23345,7665,"[""Monitor"", ""Laptop""]",4758.77,{},147076,0,South America +2024-05-07,23346,3443,"[""Wireless Mouse""]",1165.23,"{""loyalty"": ""10%""}",108005,0,South America +2023-06-14,23347,1321,"[""Laptop""]",3036.43,{},102149,1,South America +2024-08-21,23348,8525,"[""Wireless Mouse""]",948.06,{},84275,1,Africa +2024-11-26,23349,9292,"[""Tablet"", ""Headphones"", ""Laptop""]",3294.93,{},272058,0,Asia +2023-10-09,23350,9317,"[""Phone"", ""Keyboard"", ""Headphones""]",2508.54,"{"""": ""29%""}",190337,0,Europe +2023-08-30,23351,9776,"[""Keyboard""]",1684.84,{},86620,0,North America +2024-10-15,23352,892,"[""Wireless Mouse"", ""Tablet""]",2391.31,{},156989,1,Asia +2023-11-19,23353,5304,"[""Wireless Mouse""]",1375.2,{},143731,0,North America +2023-02-15,23354,3983,"[""Tablet"", ""Charger""]",3624.1,"{"""": ""30%""}",296970,0,Europe +2023-09-29,23355,4614,"[""Headphones""]",1737.55,"{""loyalty"": ""9%""}",40044,0,Asia +2023-12-14,23356,3769,"[""Wireless Mouse""]",4983.29,{},65903,1,Asia +2023-05-04,23357,4516,"[""Laptop""]",3312.54,{},287557,1,Asia +2024-02-21,23358,8209,"[""Laptop"", ""Keyboard""]",2833.04,{},279600,1,Asia +2023-10-06,23359,8215,"[""Phone"", ""Wireless Mouse""]",539.65,{},103539,0,Africa +2024-03-03,23360,7041,"[""Keyboard"", ""Laptop""]",4282.67,{},75632,1,Asia +2024-10-23,23361,6721,"[""Tablet""]",1814.02,"{""seasonal"": ""12%""}",145614,1,Europe +2024-04-25,23362,2111,"[""Keyboard"", ""Headphones""]",267.05,"{"""": ""21%""}",105704,1,Europe +2024-03-23,23363,3392,"[""Monitor"", ""Laptop"", ""Charger""]",4544.03,{},163099,0,Africa +2024-01-12,23364,4577,"[""Phone""]",1845.15,"{""seasonal"": ""25%""}",169787,0,Africa +2023-02-26,23365,3158,"[""Tablet""]",4523.79,"{""seasonal"": ""21%""}",44100,1,Europe +2023-06-08,23366,1009,"[""Headphones""]",4011.22,"{""promo"": ""17%""}",235052,0,Europe +2024-08-02,23367,2961,"[""Phone"", ""Keyboard""]",3415.72,"{""loyalty"": ""21%""}",97206,0,Africa +2023-11-21,23368,987,"[""Headphones"", ""Keyboard"", ""Tablet""]",4798.59,{},91661,1,Africa +2024-01-20,23369,3157,"[""Charger"", ""Monitor""]",1131.28,"{""promo"": ""12%""}",116656,0,North America +2023-02-11,23370,6981,"[""Monitor"", ""Charger"", ""Laptop""]",4868.58,{},4430,1,Asia +2024-08-06,23371,337,"[""Wireless Mouse"", ""Tablet""]",3474.6,"{""loyalty"": ""25%""}",26019,1,North America +2024-04-03,23372,7613,"[""Headphones"", ""Monitor"", ""Keyboard""]",1979.18,{},241135,0,South America +2023-11-13,23373,5130,"[""Wireless Mouse"", ""Charger""]",1251.78,{},245565,0,South America +2023-05-13,23374,8453,"[""Keyboard""]",3497.44,{},40548,0,Europe +2024-09-17,23375,7649,"[""Phone"", ""Laptop""]",1282.71,"{""loyalty"": ""6%""}",223273,1,South America +2023-07-01,23376,550,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1979.58,{},50656,1,Africa +2023-01-24,23377,6613,"[""Keyboard""]",4813.04,{},265690,0,Europe +2023-06-08,23378,9230,"[""Wireless Mouse"", ""Keyboard""]",2884.16,"{""loyalty"": ""23%""}",100965,0,Europe +2024-02-28,23379,1299,"[""Tablet"", ""Keyboard"", ""Laptop""]",404.05,{},255516,1,Asia +2024-02-02,23380,5098,"[""Wireless Mouse""]",991.68,"{""loyalty"": ""26%""}",105718,0,South America +2023-02-16,23381,5794,"[""Keyboard""]",2494.42,"{""loyalty"": ""13%""}",161221,0,North America +2023-07-05,23382,1830,"[""Phone"", ""Laptop""]",498.42,{},63164,1,Asia +2024-03-12,23383,3549,"[""Phone""]",4781.89,"{""promo"": ""13%""}",28560,1,Asia +2023-06-11,23384,8107,"[""Monitor"", ""Headphones""]",3480.57,{},87910,0,Africa +2024-01-17,23385,3869,"[""Charger"", ""Tablet"", ""Laptop""]",1472.98,"{""loyalty"": ""23%""}",206854,1,South America +2024-11-22,23386,2271,"[""Keyboard"", ""Laptop"", ""Phone""]",1398.84,{},238907,0,Africa +2023-09-29,23387,4654,"[""Charger"", ""Phone"", ""Keyboard""]",3966.54,{},228932,1,North America +2024-12-04,23388,7841,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3693.21,"{"""": ""30%""}",47929,1,North America +2023-09-27,23389,4225,"[""Tablet""]",1760.27,{},251146,1,Europe +2024-07-03,23390,2136,"[""Laptop"", ""Keyboard"", ""Tablet""]",4989.36,"{"""": ""21%""}",183803,0,South America +2024-02-24,23391,2280,"[""Laptop"", ""Headphones"", ""Tablet""]",2131.27,{},216155,0,Africa +2024-10-22,23392,4706,"[""Monitor"", ""Charger"", ""Keyboard""]",1510.92,{},6315,1,North America +2024-11-10,23393,2386,"[""Monitor"", ""Laptop""]",2881.49,{},163219,1,Africa +2024-01-09,23394,5897,"[""Laptop"", ""Charger""]",372.55,{},179839,1,Asia +2023-01-25,23395,6891,"[""Wireless Mouse""]",4512.68,{},109474,1,South America +2024-03-19,23396,9551,"[""Charger"", ""Keyboard"", ""Phone""]",1308.99,{},237706,1,North America +2024-06-22,23397,7162,"[""Headphones"", ""Monitor""]",3218.34,"{"""": ""24%""}",252509,0,South America +2023-08-20,23398,8179,"[""Wireless Mouse""]",2336.45,"{"""": ""29%""}",169665,1,Europe +2024-05-10,23399,1071,"[""Charger"", ""Phone""]",4967.53,"{""seasonal"": ""29%""}",259194,1,North America +2023-04-06,23400,8285,"[""Headphones""]",4522.0,{},94626,1,Asia +2024-01-22,23401,7350,"[""Keyboard""]",326.72,{},21753,1,North America +2024-10-14,23402,3141,"[""Monitor"", ""Laptop""]",1072.98,{},189731,0,Africa +2023-12-22,23403,9855,"[""Phone""]",1443.89,{},106250,1,Europe +2024-04-06,23404,6073,"[""Tablet"", ""Wireless Mouse""]",2083.44,"{""seasonal"": ""6%""}",299359,1,Africa +2024-11-22,23405,660,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4738.92,"{""loyalty"": ""11%""}",184438,0,Africa +2023-12-30,23406,420,"[""Tablet"", ""Laptop""]",1878.51,"{""loyalty"": ""5%""}",124143,1,Asia +2023-01-04,23407,1403,"[""Wireless Mouse"", ""Charger""]",3020.65,{},187838,1,Europe +2024-08-31,23408,1607,"[""Headphones"", ""Phone"", ""Keyboard""]",1917.37,{},140699,0,Europe +2023-06-07,23409,7864,"[""Laptop"", ""Charger""]",1448.62,"{""seasonal"": ""19%""}",288329,0,Africa +2024-10-27,23410,3024,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4199.23,"{""promo"": ""29%""}",211163,1,South America +2024-10-26,23411,6940,"[""Phone"", ""Headphones""]",70.97,"{""loyalty"": ""13%""}",246453,0,Asia +2023-04-22,23412,9288,"[""Charger"", ""Laptop"", ""Headphones""]",1268.46,"{""promo"": ""20%""}",179970,1,Asia +2023-12-19,23413,1636,"[""Tablet""]",204.58,"{"""": ""22%""}",94895,1,Asia +2023-12-06,23414,9530,"[""Monitor"", ""Phone"", ""Charger""]",4427.53,{},240498,1,Europe +2023-04-19,23415,6587,"[""Phone""]",1801.59,"{""seasonal"": ""30%""}",101228,0,Asia +2024-10-18,23416,3113,"[""Charger""]",723.91,{},138597,0,North America +2023-04-27,23417,687,"[""Tablet"", ""Phone"", ""Monitor""]",4743.95,"{""promo"": ""11%""}",100922,1,Africa +2023-09-07,23418,8395,"[""Charger"", ""Tablet""]",4603.35,{},10543,1,North America +2024-09-25,23419,7160,"[""Laptop"", ""Monitor"", ""Tablet""]",2713.41,{},52359,1,North America +2023-03-10,23420,5500,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2557.43,{},155375,1,Europe +2024-01-05,23421,2006,"[""Tablet"", ""Headphones""]",1311.88,{},233674,1,South America +2024-10-21,23422,2320,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1421.5,{},65896,1,Asia +2024-06-26,23423,2599,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3602.95,{},182256,1,Europe +2023-07-30,23424,7442,"[""Monitor"", ""Headphones"", ""Charger""]",1512.06,{},174449,0,Europe +2023-09-25,23425,2384,"[""Headphones""]",2816.72,{},210940,0,North America +2023-11-09,23426,4445,"[""Laptop""]",3988.35,{},84550,1,Africa +2024-11-06,23427,8332,"[""Charger"", ""Monitor""]",1738.59,{},133104,0,South America +2024-03-06,23428,7710,"[""Headphones""]",4155.66,{},36609,1,South America +2023-12-05,23429,31,"[""Tablet""]",547.18,"{"""": ""20%""}",128779,0,South America +2023-06-03,23430,1216,"[""Phone"", ""Laptop"", ""Tablet""]",1976.58,{},219162,0,Africa +2024-08-27,23431,2101,"[""Monitor"", ""Charger"", ""Phone""]",4656.38,{},282583,1,Europe +2024-01-09,23432,833,"[""Charger""]",2434.68,{},167990,0,Africa +2023-09-23,23433,9804,"[""Laptop""]",3570.57,{},205827,0,South America +2023-02-08,23434,9206,"[""Monitor"", ""Tablet""]",1681.92,"{""loyalty"": ""14%""}",114203,1,Africa +2024-09-16,23435,8315,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3185.94,{},26114,1,Europe +2023-12-09,23436,1554,"[""Wireless Mouse""]",390.84,{},30619,0,Asia +2023-12-31,23437,6862,"[""Monitor"", ""Keyboard""]",2626.33,"{""loyalty"": ""29%""}",294543,0,Asia +2023-01-07,23438,4176,"[""Monitor"", ""Tablet"", ""Headphones""]",98.09,"{"""": ""26%""}",268333,0,North America +2024-09-26,23439,3757,"[""Keyboard"", ""Tablet""]",4978.77,{},274333,0,Asia +2023-12-04,23440,9660,"[""Headphones"", ""Tablet""]",2691.24,"{"""": ""9%""}",149562,0,South America +2023-02-07,23441,5975,"[""Tablet""]",4958.69,"{""seasonal"": ""23%""}",29153,1,North America +2024-02-07,23442,9254,"[""Headphones"", ""Wireless Mouse""]",3183.33,{},278848,0,South America +2023-06-03,23443,5549,"[""Charger""]",2017.68,"{""seasonal"": ""12%""}",146095,0,South America +2023-04-17,23444,9338,"[""Phone""]",74.91,{},87275,0,Europe +2024-01-25,23445,1479,"[""Keyboard"", ""Wireless Mouse""]",4027.05,"{""loyalty"": ""27%""}",225283,1,Europe +2023-06-10,23446,3140,"[""Laptop"", ""Phone""]",1917.13,{},21742,0,Asia +2023-12-24,23447,9321,"[""Laptop""]",2815.03,{},70464,0,Africa +2023-06-21,23448,4359,"[""Keyboard""]",2435.68,"{""seasonal"": ""19%""}",124971,0,Asia +2023-11-15,23449,6728,"[""Tablet""]",3327.52,{},197803,0,Africa +2024-01-12,23450,9998,"[""Wireless Mouse""]",665.4,{},174985,0,Africa +2023-01-12,23451,9932,"[""Laptop""]",4611.28,{},209085,1,Asia +2023-11-08,23452,2326,"[""Monitor"", ""Phone"", ""Tablet""]",151.05,"{""promo"": ""11%""}",237350,0,Europe +2024-02-15,23453,6859,"[""Tablet""]",812.47,{},222762,0,Asia +2023-01-08,23454,5065,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",414.22,"{""seasonal"": ""20%""}",26379,0,North America +2023-02-09,23455,8084,"[""Charger""]",4083.08,"{""loyalty"": ""27%""}",190781,1,North America +2024-02-24,23456,9292,"[""Tablet"", ""Wireless Mouse""]",4104.09,{},195799,1,South America +2024-06-22,23457,6646,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4095.84,"{""loyalty"": ""13%""}",125725,0,South America +2024-11-19,23458,868,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1428.98,{},4914,1,South America +2023-12-01,23459,6293,"[""Monitor"", ""Charger""]",1456.53,"{""promo"": ""23%""}",35777,0,Asia +2023-09-06,23460,9710,"[""Keyboard"", ""Monitor"", ""Charger""]",1916.32,"{"""": ""26%""}",164008,0,Asia +2024-10-01,23461,7520,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",512.66,{},197844,1,Europe +2023-08-13,23462,3214,"[""Tablet"", ""Phone""]",234.93,"{""loyalty"": ""30%""}",290405,1,Africa +2023-02-26,23463,6418,"[""Keyboard""]",1975.67,{},34235,0,Europe +2023-08-21,23464,160,"[""Keyboard"", ""Tablet""]",373.11,{},232961,1,South America +2024-10-04,23465,7693,"[""Phone""]",549.99,"{""loyalty"": ""27%""}",6600,1,South America +2023-03-24,23466,5165,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1385.47,"{""seasonal"": ""22%""}",126548,1,Europe +2024-11-13,23467,3198,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3425.43,"{""seasonal"": ""27%""}",86313,0,Asia +2023-10-28,23468,2441,"[""Wireless Mouse""]",3881.87,"{""promo"": ""17%""}",98722,1,North America +2024-05-18,23469,6657,"[""Phone"", ""Keyboard""]",4077.42,{},141087,1,Europe +2023-01-13,23470,4647,"[""Laptop""]",858.58,{},148900,1,North America +2024-06-14,23471,6409,"[""Charger"", ""Headphones""]",638.24,{},35790,1,Asia +2023-12-10,23472,7462,"[""Monitor"", ""Phone""]",2712.47,"{""loyalty"": ""12%""}",178779,1,North America +2024-06-15,23473,4294,"[""Phone"", ""Headphones""]",2747.8,"{"""": ""21%""}",110258,0,Asia +2024-01-30,23474,2873,"[""Tablet"", ""Phone""]",758.78,{},124120,1,North America +2023-11-16,23475,9815,"[""Headphones"", ""Phone"", ""Monitor""]",1233.69,{},276873,1,Europe +2023-07-21,23476,3548,"[""Laptop""]",2995.95,{},75101,0,North America +2023-12-23,23477,9807,"[""Headphones""]",4687.72,"{""loyalty"": ""20%""}",41940,1,Europe +2024-07-18,23478,569,"[""Phone"", ""Keyboard""]",2910.0,"{""loyalty"": ""13%""}",60147,1,Africa +2024-07-18,23479,2193,"[""Laptop""]",422.41,{},183991,1,Africa +2024-05-01,23480,8019,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1246.61,{},33922,0,Africa +2024-01-26,23481,829,"[""Keyboard"", ""Monitor""]",2361.95,"{""promo"": ""25%""}",189500,0,Africa +2023-02-02,23482,4604,"[""Headphones"", ""Charger""]",595.89,{},179875,1,Europe +2024-06-29,23483,2911,"[""Charger""]",810.33,{},44661,0,North America +2023-03-30,23484,6160,"[""Wireless Mouse""]",4898.98,{},270582,1,Europe +2024-03-19,23485,9214,"[""Tablet"", ""Monitor""]",3792.35,"{""seasonal"": ""6%""}",199937,1,Asia +2024-08-01,23486,8440,"[""Monitor"", ""Keyboard"", ""Charger""]",1555.72,"{""promo"": ""11%""}",271227,0,North America +2024-04-20,23487,6983,"[""Tablet"", ""Laptop"", ""Phone""]",1036.97,"{""promo"": ""7%""}",76391,1,North America +2024-06-10,23488,3032,"[""Laptop"", ""Charger""]",3614.7,"{""seasonal"": ""15%""}",38605,0,Europe +2023-06-26,23489,9438,"[""Wireless Mouse""]",2641.93,{},70722,0,Africa +2024-04-11,23490,4463,"[""Monitor""]",2895.12,"{""seasonal"": ""16%""}",114503,1,Europe +2023-01-09,23491,4027,"[""Phone""]",3283.62,"{"""": ""27%""}",137334,0,North America +2024-03-01,23492,6941,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3561.41,{},128956,0,Africa +2023-06-02,23493,7830,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4396.51,"{""loyalty"": ""28%""}",220243,0,Europe +2024-07-14,23494,3883,"[""Keyboard""]",3620.85,{},72703,1,South America +2023-07-22,23495,9503,"[""Tablet"", ""Wireless Mouse""]",1426.96,{},132022,0,Asia +2024-01-11,23496,6426,"[""Headphones""]",4557.99,"{""promo"": ""12%""}",28836,1,Europe +2024-09-08,23497,4641,"[""Phone"", ""Tablet"", ""Keyboard""]",4290.06,{},224525,0,Europe +2023-02-03,23498,5997,"[""Tablet"", ""Keyboard"", ""Charger""]",1500.33,"{"""": ""21%""}",181893,0,Europe +2024-03-18,23499,3401,"[""Monitor""]",3559.59,"{""seasonal"": ""30%""}",125389,1,Europe +2024-09-25,23500,7527,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3819.29,"{"""": ""8%""}",163470,0,Asia +2024-03-29,23501,1147,"[""Phone"", ""Tablet""]",3179.37,"{""promo"": ""20%""}",101989,1,Asia +2023-08-15,23502,4864,"[""Tablet""]",4260.34,"{"""": ""17%""}",122244,0,South America +2024-12-25,23503,4175,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",472.99,"{"""": ""18%""}",9183,0,Europe +2024-11-17,23504,8107,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",458.93,{},285006,1,Africa +2024-06-03,23505,5639,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1194.79,{},189431,1,South America +2023-10-18,23506,1616,"[""Monitor"", ""Charger"", ""Headphones""]",1252.58,{},16512,1,South America +2023-05-28,23507,1435,"[""Charger"", ""Headphones"", ""Monitor""]",911.49,"{""promo"": ""27%""}",118969,0,Asia +2024-12-24,23508,7904,"[""Charger"", ""Phone""]",4064.41,"{""promo"": ""8%""}",117834,1,Africa +2024-10-19,23509,1267,"[""Phone""]",890.08,{},274058,1,Europe +2024-02-14,23510,4508,"[""Keyboard""]",2149.53,{},14881,0,North America +2023-11-19,23511,3130,"[""Tablet"", ""Phone""]",1897.02,{},205840,1,Asia +2024-06-15,23512,9049,"[""Headphones"", ""Phone"", ""Monitor""]",2436.72,"{""seasonal"": ""21%""}",127204,1,North America +2024-12-26,23513,3080,"[""Keyboard"", ""Phone""]",798.81,"{""seasonal"": ""22%""}",238930,1,Africa +2023-12-27,23514,8792,"[""Charger""]",1015.81,{},204780,1,Europe +2023-01-16,23515,815,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1762.57,{},264812,1,North America +2023-11-15,23516,7609,"[""Tablet"", ""Laptop""]",875.46,"{""seasonal"": ""23%""}",226250,0,South America +2023-12-25,23517,8640,"[""Charger""]",4493.28,{},279307,1,Asia +2024-09-04,23518,2253,"[""Monitor""]",4514.15,{},141604,0,North America +2024-05-19,23519,6647,"[""Charger""]",2248.81,{},140654,0,South America +2024-01-05,23520,4853,"[""Laptop"", ""Wireless Mouse""]",3313.34,"{""promo"": ""23%""}",55331,0,South America +2023-12-30,23521,8283,"[""Laptop"", ""Wireless Mouse""]",2591.35,"{"""": ""22%""}",134112,0,Asia +2023-02-10,23522,8075,"[""Charger"", ""Tablet""]",2684.47,"{""seasonal"": ""10%""}",276620,1,Africa +2023-08-25,23523,7112,"[""Tablet"", ""Phone""]",328.9,{},232366,0,Asia +2024-11-01,23524,5656,"[""Monitor"", ""Charger""]",2994.54,"{"""": ""17%""}",150101,0,North America +2024-06-29,23525,1013,"[""Tablet""]",4073.95,{},257830,0,Europe +2023-12-30,23526,923,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",521.71,"{""promo"": ""9%""}",79964,1,South America +2023-09-18,23527,9969,"[""Laptop"", ""Headphones"", ""Charger""]",4960.96,"{""seasonal"": ""23%""}",253489,1,North America +2024-07-19,23528,9579,"[""Charger""]",1252.61,"{"""": ""10%""}",6073,1,Europe +2024-12-05,23529,1524,"[""Phone"", ""Monitor""]",2641.54,{},190903,1,South America +2023-06-26,23530,9476,"[""Monitor"", ""Phone""]",3677.02,"{""loyalty"": ""23%""}",181895,0,South America +2024-03-26,23531,8608,"[""Keyboard"", ""Monitor"", ""Laptop""]",1229.72,{},169629,0,Europe +2023-10-27,23532,6388,"[""Charger""]",4369.46,{},228471,1,South America +2024-08-17,23533,5013,"[""Tablet"", ""Charger"", ""Laptop""]",3664.91,{},34785,1,Africa +2024-09-28,23534,6961,"[""Laptop"", ""Phone""]",2152.71,{},59409,1,South America +2023-01-19,23535,5008,"[""Laptop""]",1448.17,{},201166,1,Asia +2024-10-23,23536,9547,"[""Charger""]",4717.9,"{""loyalty"": ""30%""}",104653,0,South America +2023-06-01,23537,1610,"[""Phone"", ""Wireless Mouse""]",1890.4,{},25903,1,South America +2023-03-16,23538,2067,"[""Laptop""]",97.64,"{"""": ""23%""}",276955,1,North America +2024-11-25,23539,480,"[""Keyboard"", ""Monitor"", ""Laptop""]",4718.9,{},47289,0,North America +2023-05-19,23540,4932,"[""Charger"", ""Headphones""]",446.21,{},169409,1,Africa +2024-05-05,23541,5763,"[""Keyboard""]",3673.68,"{""seasonal"": ""19%""}",177959,1,Asia +2024-01-30,23542,9250,"[""Keyboard""]",385.94,{},242238,1,Europe +2024-12-21,23543,9754,"[""Monitor"", ""Laptop""]",1981.44,"{"""": ""21%""}",134785,0,Asia +2024-09-14,23544,907,"[""Tablet"", ""Charger"", ""Laptop""]",3262.4,{},292694,0,Africa +2024-10-13,23545,48,"[""Phone"", ""Laptop"", ""Charger""]",2084.67,"{""loyalty"": ""29%""}",164735,1,Africa +2024-02-16,23546,4648,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3806.89,{},155698,0,Asia +2024-09-08,23547,8350,"[""Laptop"", ""Charger"", ""Monitor""]",256.94,{},138832,0,Europe +2023-07-19,23548,539,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4394.5,"{""loyalty"": ""24%""}",21821,0,North America +2023-09-07,23549,3025,"[""Charger""]",2028.4,"{""seasonal"": ""26%""}",259452,0,Asia +2024-10-24,23550,3832,"[""Monitor""]",4444.06,{},119378,0,Europe +2024-10-01,23551,2356,"[""Wireless Mouse""]",2074.33,"{"""": ""17%""}",95039,1,Asia +2023-11-01,23552,4002,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3521.61,"{""promo"": ""27%""}",36258,0,Africa +2023-06-17,23553,8232,"[""Phone"", ""Headphones"", ""Charger""]",882.96,"{""promo"": ""24%""}",131842,1,South America +2023-03-07,23554,5469,"[""Wireless Mouse""]",443.56,"{"""": ""12%""}",262342,0,Asia +2024-02-20,23555,7928,"[""Monitor"", ""Headphones""]",1779.22,"{""loyalty"": ""7%""}",215551,1,Europe +2024-11-26,23556,2183,"[""Keyboard"", ""Headphones"", ""Charger""]",1191.64,"{""seasonal"": ""13%""}",198273,0,Africa +2023-04-13,23557,9587,"[""Phone"", ""Wireless Mouse""]",3292.89,{},134751,0,Africa +2024-11-26,23558,1727,"[""Keyboard"", ""Tablet""]",3549.61,{},9418,1,Africa +2023-05-27,23559,9279,"[""Phone""]",511.52,{},121954,0,Africa +2023-10-12,23560,9655,"[""Tablet""]",817.44,"{""promo"": ""14%""}",110805,1,Asia +2023-03-08,23561,5308,"[""Wireless Mouse"", ""Laptop""]",2567.11,"{""loyalty"": ""7%""}",189869,1,Europe +2024-04-13,23562,6561,"[""Phone"", ""Keyboard"", ""Charger""]",1061.12,"{""loyalty"": ""12%""}",124575,1,Asia +2024-08-22,23563,1243,"[""Phone"", ""Keyboard"", ""Tablet""]",2291.52,"{""promo"": ""10%""}",149691,1,Asia +2024-10-31,23564,3360,"[""Charger"", ""Tablet""]",1235.89,"{""loyalty"": ""24%""}",175837,1,Africa +2024-09-05,23565,5463,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4042.35,"{""promo"": ""12%""}",261294,1,Asia +2023-04-02,23566,6372,"[""Tablet""]",4807.74,{},241879,0,Africa +2023-06-12,23567,1605,"[""Tablet""]",4826.82,{},267620,0,South America +2024-07-15,23568,830,"[""Phone"", ""Keyboard""]",780.26,"{"""": ""19%""}",28710,0,Europe +2024-06-10,23569,7796,"[""Monitor""]",3171.99,"{""promo"": ""16%""}",250319,0,Asia +2023-07-11,23570,3223,"[""Phone""]",1160.53,{},52351,0,South America +2023-05-18,23571,2231,"[""Charger"", ""Headphones"", ""Laptop""]",3019.84,"{"""": ""29%""}",177341,0,Asia +2023-09-16,23572,8087,"[""Headphones"", ""Keyboard""]",3904.42,"{""loyalty"": ""13%""}",224273,0,Asia +2024-02-26,23573,4335,"[""Wireless Mouse""]",2196.35,"{""seasonal"": ""13%""}",118100,1,Europe +2023-01-08,23574,4261,"[""Keyboard"", ""Charger""]",120.49,"{""seasonal"": ""16%""}",261942,0,Europe +2023-09-01,23575,6383,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1511.39,{},173486,0,North America +2024-06-08,23576,63,"[""Headphones"", ""Phone""]",1448.53,{},94555,0,Asia +2023-03-01,23577,9300,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1895.82,{},100192,0,Europe +2024-06-24,23578,4605,"[""Charger""]",2866.52,{},49646,0,Africa +2023-07-17,23579,8709,"[""Monitor""]",427.98,{},262996,1,North America +2023-06-09,23580,4985,"[""Laptop""]",2060.53,"{""seasonal"": ""16%""}",9414,0,Europe +2023-07-22,23581,3941,"[""Laptop""]",1809.27,"{""loyalty"": ""28%""}",216215,0,South America +2023-01-10,23582,3395,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4670.52,{},94271,1,Africa +2024-04-05,23583,2108,"[""Phone"", ""Laptop""]",4797.97,{},226605,0,Asia +2023-02-08,23584,1074,"[""Tablet"", ""Keyboard""]",4392.94,"{""promo"": ""8%""}",96749,1,South America +2023-07-06,23585,3596,"[""Monitor""]",698.45,"{"""": ""25%""}",152335,0,North America +2024-03-05,23586,7757,"[""Monitor"", ""Charger"", ""Laptop""]",4392.76,"{""loyalty"": ""12%""}",33937,0,Africa +2024-01-05,23587,8867,"[""Tablet"", ""Charger"", ""Headphones""]",3752.31,{},294187,0,South America +2024-03-21,23588,2997,"[""Laptop"", ""Monitor""]",1152.12,{},41085,0,Asia +2023-08-04,23589,2397,"[""Phone"", ""Laptop""]",3982.18,{},219284,1,Europe +2023-01-15,23590,2158,"[""Phone"", ""Tablet"", ""Charger""]",82.5,"{""seasonal"": ""25%""}",292633,0,South America +2023-12-05,23591,7608,"[""Phone"", ""Keyboard"", ""Headphones""]",1437.13,"{""promo"": ""27%""}",37622,1,South America +2024-08-23,23592,7873,"[""Monitor""]",3620.37,"{""loyalty"": ""15%""}",283964,0,North America +2023-04-20,23593,5790,"[""Headphones""]",4609.04,{},203035,0,Asia +2024-01-31,23594,2769,"[""Tablet"", ""Phone""]",742.07,"{""promo"": ""11%""}",166415,1,South America +2023-11-19,23595,4210,"[""Phone"", ""Monitor""]",976.96,"{""loyalty"": ""24%""}",182330,1,South America +2023-02-24,23596,951,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",233.25,{},1771,1,Europe +2023-02-09,23597,131,"[""Headphones"", ""Keyboard""]",3551.5,"{""loyalty"": ""23%""}",77420,1,North America +2023-01-30,23598,2040,"[""Headphones"", ""Keyboard""]",1663.7,{},8241,1,Africa +2023-11-01,23599,745,"[""Laptop""]",3042.44,"{"""": ""19%""}",264514,0,North America +2023-05-28,23600,1485,"[""Phone"", ""Headphones""]",3196.31,"{"""": ""9%""}",298737,1,South America +2023-04-18,23601,3389,"[""Phone"", ""Charger"", ""Headphones""]",2792.04,"{"""": ""29%""}",249860,1,Africa +2024-07-27,23602,5235,"[""Monitor""]",3618.17,"{"""": ""5%""}",131675,1,Asia +2024-02-16,23603,1556,"[""Charger"", ""Phone""]",2162.03,{},54633,0,North America +2024-03-18,23604,8606,"[""Laptop""]",2174.54,"{"""": ""6%""}",15093,0,Europe +2024-02-10,23605,930,"[""Headphones"", ""Keyboard""]",3919.02,{},71989,1,Africa +2024-05-17,23606,5050,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2215.93,"{""loyalty"": ""18%""}",83174,1,South America +2023-08-24,23607,9573,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3454.35,"{""promo"": ""17%""}",161192,1,Europe +2024-12-02,23608,8870,"[""Headphones"", ""Tablet"", ""Laptop""]",4970.51,"{""promo"": ""26%""}",245245,0,Europe +2024-12-11,23609,4146,"[""Wireless Mouse""]",608.64,"{""seasonal"": ""18%""}",193932,0,North America +2024-03-07,23610,6517,"[""Laptop"", ""Keyboard""]",3656.6,"{"""": ""5%""}",24983,0,Africa +2023-07-28,23611,4761,"[""Wireless Mouse""]",4546.83,"{"""": ""20%""}",98722,0,North America +2023-08-03,23612,2269,"[""Laptop"", ""Keyboard"", ""Headphones""]",1556.28,{},113330,1,Europe +2024-03-06,23613,4832,"[""Monitor"", ""Phone""]",340.99,{},152450,1,North America +2023-10-12,23614,7568,"[""Wireless Mouse"", ""Keyboard""]",1109.37,{},204146,1,North America +2023-11-21,23615,5726,"[""Laptop"", ""Charger"", ""Keyboard""]",1260.92,{},202800,1,Africa +2024-10-20,23616,155,"[""Monitor"", ""Charger""]",388.47,"{""seasonal"": ""24%""}",78960,1,Africa +2024-09-14,23617,1538,"[""Laptop""]",2490.42,{},169876,1,Europe +2023-01-26,23618,1601,"[""Keyboard""]",937.05,"{"""": ""7%""}",164989,1,Europe +2024-07-08,23619,5530,"[""Headphones"", ""Laptop""]",2941.59,"{""seasonal"": ""19%""}",267085,1,North America +2023-12-29,23620,1766,"[""Charger"", ""Wireless Mouse""]",1398.35,{},63446,0,Asia +2024-10-03,23621,1647,"[""Keyboard"", ""Charger"", ""Laptop""]",3903.78,{},210259,1,Asia +2024-09-21,23622,7780,"[""Charger"", ""Wireless Mouse""]",247.72,{},19075,0,Asia +2023-02-04,23623,7619,"[""Tablet"", ""Headphones""]",4156.53,"{""promo"": ""14%""}",137869,1,Africa +2023-03-18,23624,7107,"[""Monitor""]",2702.6,"{""seasonal"": ""27%""}",166474,0,Asia +2024-02-02,23625,8691,"[""Keyboard""]",2699.47,"{""promo"": ""23%""}",45745,0,Asia +2024-03-04,23626,6738,"[""Charger"", ""Monitor""]",1611.36,{},203764,1,South America +2024-12-25,23627,717,"[""Tablet"", ""Headphones"", ""Keyboard""]",3323.71,"{""promo"": ""29%""}",75581,1,Asia +2023-07-21,23628,5560,"[""Laptop""]",4301.97,{},127278,0,Europe +2024-10-16,23629,7583,"[""Tablet"", ""Laptop"", ""Monitor""]",3010.15,"{""loyalty"": ""20%""}",287540,1,South America +2023-03-16,23630,2218,"[""Phone""]",803.76,{},28339,0,Europe +2024-02-14,23631,4084,"[""Wireless Mouse""]",3580.49,{},198873,1,North America +2023-02-13,23632,4880,"[""Charger"", ""Wireless Mouse""]",3678.5,{},115537,0,South America +2024-11-03,23633,1237,"[""Wireless Mouse"", ""Monitor""]",2575.28,"{""loyalty"": ""10%""}",167041,0,Asia +2024-01-04,23634,389,"[""Phone"", ""Laptop""]",4750.98,{},61514,1,Europe +2024-12-30,23635,2214,"[""Tablet""]",3853.79,{},217999,0,North America +2024-02-03,23636,1660,"[""Keyboard"", ""Monitor"", ""Headphones""]",3668.93,"{""promo"": ""30%""}",207834,0,Europe +2024-02-25,23637,4602,"[""Tablet"", ""Charger"", ""Headphones""]",2090.41,"{""loyalty"": ""17%""}",56003,1,Asia +2024-11-17,23638,4566,"[""Headphones"", ""Laptop""]",2148.9,"{""promo"": ""10%""}",25804,0,Africa +2023-02-01,23639,7181,"[""Phone""]",938.6,"{"""": ""13%""}",107178,0,North America +2024-03-22,23640,9830,"[""Phone"", ""Monitor""]",1746.82,"{"""": ""9%""}",15521,0,Europe +2023-10-31,23641,1129,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1311.78,"{"""": ""9%""}",195592,0,North America +2024-09-02,23642,3878,"[""Keyboard"", ""Wireless Mouse""]",1088.19,{},248298,1,Africa +2024-09-06,23643,2176,"[""Laptop"", ""Wireless Mouse""]",3871.58,{},78896,1,Europe +2024-01-24,23644,1168,"[""Headphones"", ""Keyboard""]",617.41,"{""promo"": ""15%""}",7706,1,Europe +2024-10-17,23645,6502,"[""Wireless Mouse"", ""Monitor""]",4168.17,{},241070,1,North America +2023-03-23,23646,2471,"[""Monitor"", ""Phone"", ""Tablet""]",3054.2,{},195765,1,South America +2024-06-19,23647,9882,"[""Keyboard"", ""Laptop"", ""Headphones""]",4507.55,"{""seasonal"": ""9%""}",96444,1,Europe +2024-09-10,23648,4120,"[""Laptop""]",2162.21,{},134522,1,Africa +2023-05-17,23649,9235,"[""Keyboard""]",4908.29,{},153801,1,North America +2023-08-04,23650,1235,"[""Tablet""]",713.32,{},18346,0,Europe +2024-12-24,23651,257,"[""Headphones"", ""Monitor""]",3841.02,"{""promo"": ""12%""}",293583,0,North America +2023-12-27,23652,8071,"[""Keyboard"", ""Charger"", ""Headphones""]",4843.6,"{"""": ""23%""}",52071,0,North America +2023-12-16,23653,3743,"[""Headphones""]",1833.56,"{""promo"": ""28%""}",92814,1,Asia +2023-05-20,23654,424,"[""Tablet"", ""Headphones"", ""Charger""]",3288.16,"{""seasonal"": ""11%""}",153821,0,South America +2024-12-21,23655,4955,"[""Wireless Mouse"", ""Headphones""]",1880.73,"{"""": ""22%""}",37436,0,South America +2024-10-11,23656,9883,"[""Monitor"", ""Phone""]",167.65,{},46029,0,North America +2024-03-01,23657,6172,"[""Monitor"", ""Phone"", ""Keyboard""]",2715.22,{},150001,0,Europe +2024-01-14,23658,2704,"[""Keyboard"", ""Phone"", ""Tablet""]",1375.2,"{"""": ""16%""}",229991,1,Asia +2023-03-05,23659,1070,"[""Keyboard"", ""Laptop"", ""Phone""]",3210.93,{},108620,1,North America +2024-01-05,23660,2688,"[""Phone""]",2529.21,{},258119,1,Africa +2023-09-27,23661,4795,"[""Headphones""]",3623.26,"{"""": ""18%""}",261211,0,Africa +2024-09-26,23662,3343,"[""Phone"", ""Headphones"", ""Tablet""]",2312.13,"{""promo"": ""29%""}",140167,0,South America +2023-02-15,23663,5192,"[""Monitor"", ""Phone""]",4453.79,"{""promo"": ""28%""}",292926,1,Asia +2024-11-02,23664,7602,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3588.2,{},79873,1,Asia +2023-06-11,23665,390,"[""Charger"", ""Keyboard""]",3289.04,{},135735,0,Europe +2024-05-20,23666,6641,"[""Headphones""]",3746.14,{},16656,0,Africa +2023-10-17,23667,5751,"[""Tablet""]",468.02,"{"""": ""28%""}",115619,0,Asia +2023-08-22,23668,6880,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3015.34,{},288044,1,South America +2023-12-29,23669,3717,"[""Charger"", ""Phone"", ""Headphones""]",4917.39,"{""loyalty"": ""12%""}",112156,1,North America +2023-06-08,23670,3119,"[""Keyboard""]",886.87,"{""loyalty"": ""7%""}",157357,1,Africa +2024-02-03,23671,9129,"[""Tablet""]",768.74,{},50917,1,Africa +2024-06-24,23672,8647,"[""Phone"", ""Headphones"", ""Keyboard""]",2881.78,{},119297,0,North America +2023-08-24,23673,3859,"[""Phone""]",642.79,{},23794,1,South America +2024-01-05,23674,7685,"[""Keyboard"", ""Headphones"", ""Laptop""]",762.79,"{""loyalty"": ""27%""}",167429,1,North America +2023-09-09,23675,2823,"[""Wireless Mouse""]",3171.01,{},79188,1,Africa +2023-12-25,23676,5215,"[""Keyboard""]",1166.32,{},108763,1,Africa +2023-05-14,23677,6937,"[""Keyboard"", ""Tablet"", ""Monitor""]",3619.02,{},40850,0,Asia +2024-02-06,23678,962,"[""Tablet""]",2230.53,"{""promo"": ""22%""}",196504,1,Asia +2023-11-01,23679,6202,"[""Laptop"", ""Tablet""]",4598.56,{},192858,1,Asia +2024-11-23,23680,3829,"[""Keyboard"", ""Charger"", ""Laptop""]",2247.4,"{""seasonal"": ""28%""}",225195,1,Asia +2024-03-23,23681,1650,"[""Laptop""]",4264.61,"{""seasonal"": ""11%""}",67823,1,Asia +2023-04-10,23682,361,"[""Monitor""]",560.01,"{""seasonal"": ""11%""}",64557,1,Asia +2024-06-03,23683,3148,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2230.46,{},156378,1,Asia +2024-09-10,23684,5626,"[""Headphones""]",3939.87,"{""promo"": ""22%""}",56039,1,Asia +2024-11-28,23685,3054,"[""Monitor"", ""Phone"", ""Headphones""]",2220.99,{},71229,1,South America +2023-03-30,23686,8634,"[""Laptop""]",3920.1,"{"""": ""22%""}",246224,1,Europe +2024-01-16,23687,4219,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3123.63,"{""promo"": ""19%""}",256670,1,South America +2024-06-21,23688,8160,"[""Wireless Mouse""]",1723.38,"{""loyalty"": ""6%""}",14406,1,North America +2024-02-23,23689,5119,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3684.3,{},132612,0,Europe +2024-06-14,23690,9418,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",88.39,{},264629,0,Africa +2023-11-22,23691,3482,"[""Phone"", ""Headphones""]",2060.32,{},100292,0,South America +2023-01-24,23692,226,"[""Phone"", ""Charger""]",3736.87,"{""promo"": ""26%""}",27108,0,South America +2024-09-23,23693,8882,"[""Phone"", ""Monitor"", ""Keyboard""]",4674.26,"{"""": ""10%""}",177272,1,Africa +2024-08-16,23694,3406,"[""Phone"", ""Headphones"", ""Monitor""]",1230.96,{},103667,0,South America +2023-04-09,23695,5426,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",494.55,"{"""": ""16%""}",98648,0,Europe +2024-07-14,23696,8236,"[""Phone""]",562.03,{},275506,0,Asia +2023-11-22,23697,8806,"[""Wireless Mouse"", ""Phone""]",1776.96,{},267924,1,Africa +2023-10-13,23698,1279,"[""Laptop"", ""Keyboard"", ""Phone""]",2876.59,{},64547,1,North America +2024-08-01,23699,979,"[""Headphones"", ""Phone""]",1203.29,"{""promo"": ""7%""}",44529,0,Asia +2024-07-08,23700,3030,"[""Phone""]",4854.97,"{"""": ""30%""}",132584,1,Asia +2023-01-23,23701,2229,"[""Wireless Mouse"", ""Phone""]",3999.49,"{""seasonal"": ""7%""}",112818,0,South America +2023-06-02,23702,2566,"[""Phone""]",878.86,{},273551,0,Europe +2023-06-07,23703,7483,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1216.04,"{""promo"": ""9%""}",71966,1,South America +2023-03-18,23704,9238,"[""Monitor"", ""Keyboard"", ""Tablet""]",2979.8,"{"""": ""12%""}",125852,0,Africa +2023-02-24,23705,4179,"[""Headphones"", ""Tablet"", ""Phone""]",4928.06,"{""loyalty"": ""12%""}",258159,0,Asia +2024-05-01,23706,4744,"[""Headphones""]",890.79,{},254232,1,North America +2023-05-14,23707,7008,"[""Keyboard"", ""Tablet""]",4405.82,"{""seasonal"": ""27%""}",244496,1,South America +2024-06-19,23708,7045,"[""Monitor""]",1212.2,{},183229,0,Europe +2023-09-22,23709,2488,"[""Laptop"", ""Monitor"", ""Phone""]",2556.89,"{""loyalty"": ""14%""}",254950,0,North America +2023-08-03,23710,4218,"[""Phone""]",1993.13,"{""promo"": ""29%""}",165892,0,Asia +2023-09-24,23711,5077,"[""Keyboard""]",1748.56,{},280099,0,South America +2024-07-22,23712,6623,"[""Headphones"", ""Laptop"", ""Phone""]",76.57,"{""loyalty"": ""13%""}",100240,0,North America +2024-09-01,23713,4403,"[""Tablet""]",2690.15,"{""promo"": ""19%""}",197192,0,North America +2024-02-19,23714,1490,"[""Laptop"", ""Tablet"", ""Keyboard""]",238.15,"{"""": ""26%""}",135338,1,Africa +2023-11-29,23715,4004,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2882.09,{},129842,0,Asia +2024-07-29,23716,2847,"[""Charger"", ""Wireless Mouse""]",1029.28,{},59218,0,South America +2023-11-27,23717,430,"[""Monitor"", ""Keyboard""]",4330.87,{},227504,1,Africa +2023-01-22,23718,1024,"[""Laptop"", ""Monitor""]",2638.19,"{""promo"": ""11%""}",127075,0,North America +2023-06-28,23719,6307,"[""Phone"", ""Wireless Mouse""]",3308.67,{},70994,0,Asia +2024-07-30,23720,3557,"[""Headphones"", ""Laptop""]",3575.68,{},207439,0,Africa +2024-03-16,23721,2362,"[""Monitor""]",145.1,{},286904,0,Asia +2023-12-22,23722,4207,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1955.71,"{"""": ""25%""}",250232,0,Africa +2023-04-11,23723,5542,"[""Laptop""]",1792.08,"{"""": ""9%""}",256836,0,South America +2023-05-11,23724,3749,"[""Phone"", ""Laptop""]",486.67,"{""seasonal"": ""15%""}",51256,1,North America +2024-10-22,23725,1511,"[""Headphones"", ""Monitor""]",2453.63,{},73981,0,Africa +2023-02-28,23726,3197,"[""Keyboard"", ""Phone"", ""Charger""]",2594.91,{},146522,0,North America +2023-03-16,23727,206,"[""Charger"", ""Tablet""]",1373.17,"{""promo"": ""7%""}",137417,1,North America +2023-02-16,23728,442,"[""Headphones""]",4912.16,"{""promo"": ""15%""}",119998,1,Asia +2023-05-24,23729,3724,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2326.98,{},152876,1,South America +2024-05-05,23730,9503,"[""Tablet"", ""Keyboard""]",4040.97,{},152560,0,Europe +2024-06-09,23731,1054,"[""Tablet"", ""Keyboard""]",256.08,"{"""": ""25%""}",36390,0,North America +2024-02-07,23732,7122,"[""Headphones"", ""Phone"", ""Charger""]",3272.63,{},187017,1,Asia +2024-06-23,23733,8834,"[""Wireless Mouse"", ""Keyboard""]",107.58,"{""promo"": ""11%""}",294457,1,South America +2024-07-20,23734,4978,"[""Laptop"", ""Wireless Mouse""]",2774.33,"{""loyalty"": ""18%""}",265720,1,North America +2023-03-13,23735,1915,"[""Monitor""]",3725.73,{},130319,1,Europe +2023-09-23,23736,662,"[""Phone""]",1961.18,"{""seasonal"": ""26%""}",170422,1,South America +2023-10-06,23737,1530,"[""Phone"", ""Headphones""]",819.88,"{"""": ""13%""}",141044,0,North America +2023-05-12,23738,1402,"[""Phone"", ""Headphones"", ""Monitor""]",3856.63,{},82155,1,Asia +2024-11-13,23739,9047,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1621.26,"{""promo"": ""24%""}",101057,0,North America +2023-07-01,23740,9669,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",634.87,"{""promo"": ""19%""}",69502,0,Europe +2024-07-05,23741,1426,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1710.55,{},176679,0,Africa +2024-08-18,23742,8498,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",756.54,{},199954,0,Asia +2023-02-25,23743,2989,"[""Monitor"", ""Charger""]",1375.57,"{"""": ""28%""}",289187,0,Africa +2023-08-21,23744,63,"[""Phone""]",4942.43,{},12332,0,North America +2024-01-20,23745,6835,"[""Phone"", ""Monitor""]",3122.8,"{""loyalty"": ""30%""}",48747,0,North America +2024-06-02,23746,6149,"[""Monitor"", ""Laptop""]",3082.55,{},155629,0,North America +2024-02-27,23747,2914,"[""Headphones"", ""Tablet""]",584.75,"{""promo"": ""9%""}",230948,0,Europe +2024-09-18,23748,7727,"[""Charger"", ""Laptop""]",4067.72,"{""seasonal"": ""24%""}",58964,0,North America +2024-05-04,23749,9324,"[""Monitor"", ""Keyboard""]",4254.39,{},108005,0,North America +2024-02-07,23750,947,"[""Charger""]",2273.64,{},28758,0,North America +2024-01-10,23751,6662,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2457.35,"{"""": ""24%""}",242544,1,South America +2024-09-05,23752,9920,"[""Headphones"", ""Wireless Mouse""]",3285.03,{},133987,1,Africa +2023-01-29,23753,1744,"[""Charger""]",3786.67,{},164965,0,Europe +2023-01-21,23754,267,"[""Charger""]",1099.41,"{""promo"": ""18%""}",50114,1,North America +2023-04-01,23755,6216,"[""Wireless Mouse""]",1773.58,"{""promo"": ""20%""}",164484,0,Asia +2024-11-26,23756,3331,"[""Laptop"", ""Phone""]",4515.71,"{""seasonal"": ""30%""}",203167,1,North America +2023-04-07,23757,9680,"[""Phone""]",1460.43,{},232886,0,Asia +2024-03-24,23758,3363,"[""Headphones"", ""Tablet"", ""Laptop""]",4569.22,{},255080,0,Africa +2024-02-15,23759,1545,"[""Keyboard"", ""Charger"", ""Monitor""]",3441.19,{},154636,1,South America +2023-11-10,23760,7693,"[""Laptop""]",1846.68,{},47174,1,South America +2024-10-25,23761,9928,"[""Charger""]",3268.02,{},72678,1,Africa +2024-12-22,23762,7826,"[""Keyboard"", ""Charger"", ""Tablet""]",3934.03,{},121842,1,North America +2023-08-09,23763,8807,"[""Headphones""]",2725.57,"{""promo"": ""25%""}",226947,0,Europe +2024-03-04,23764,4654,"[""Wireless Mouse"", ""Laptop""]",197.51,{},165785,1,Asia +2024-07-31,23765,1068,"[""Keyboard""]",2486.19,{},281299,0,Europe +2024-01-28,23766,3980,"[""Phone""]",2119.3,"{""loyalty"": ""11%""}",20219,0,South America +2024-06-17,23767,6668,"[""Tablet""]",323.77,{},191454,1,South America +2024-09-11,23768,698,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3123.66,"{""loyalty"": ""18%""}",104747,1,North America +2024-02-18,23769,390,"[""Phone""]",3012.89,{},185842,1,Asia +2023-12-13,23770,3082,"[""Charger""]",3428.97,"{""promo"": ""22%""}",194379,0,South America +2024-12-01,23771,482,"[""Phone"", ""Headphones""]",342.35,{},2367,0,South America +2023-04-12,23772,7362,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",986.02,{},132155,0,South America +2024-03-03,23773,935,"[""Phone""]",2410.33,"{"""": ""13%""}",32642,0,South America +2024-05-11,23774,2684,"[""Phone""]",1581.15,{},77449,1,Asia +2024-09-07,23775,7659,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",147.9,{},86457,0,South America +2024-09-24,23776,918,"[""Tablet""]",2636.11,"{"""": ""13%""}",145300,0,North America +2024-10-25,23777,7980,"[""Keyboard"", ""Phone"", ""Laptop""]",2989.3,"{""seasonal"": ""13%""}",268819,1,Africa +2023-10-31,23778,2821,"[""Phone"", ""Charger""]",2975.76,"{""promo"": ""16%""}",126123,1,South America +2023-06-02,23779,8118,"[""Charger""]",4719.02,{},52561,1,Africa +2024-05-09,23780,3488,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",422.14,"{""seasonal"": ""26%""}",3143,0,Asia +2023-09-13,23781,7205,"[""Headphones"", ""Laptop"", ""Charger""]",2190.28,{},122740,1,Europe +2023-07-22,23782,8532,"[""Monitor""]",3051.12,{},271012,1,Europe +2024-01-27,23783,1965,"[""Wireless Mouse""]",1593.39,{},271631,1,Europe +2023-08-06,23784,2534,"[""Headphones"", ""Charger"", ""Laptop""]",3595.53,{},72843,1,Asia +2024-03-16,23785,1900,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4262.73,{},189430,0,South America +2023-08-14,23786,3348,"[""Phone""]",2936.8,{},148773,0,Europe +2023-03-25,23787,2641,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3704.61,{},247541,0,North America +2023-03-20,23788,2599,"[""Monitor"", ""Laptop"", ""Phone""]",4875.34,"{"""": ""27%""}",203547,1,Europe +2023-09-18,23789,6697,"[""Charger"", ""Phone""]",3445.21,"{""seasonal"": ""19%""}",178110,0,North America +2024-03-31,23790,6258,"[""Phone"", ""Headphones""]",1844.54,{},120699,1,South America +2023-07-01,23791,6712,"[""Tablet"", ""Phone"", ""Keyboard""]",3128.23,"{""promo"": ""26%""}",36052,0,Africa +2023-08-13,23792,3127,"[""Laptop"", ""Monitor""]",375.04,{},117431,1,South America +2023-01-31,23793,7061,"[""Headphones"", ""Charger"", ""Keyboard""]",422.57,{},163697,0,North America +2024-01-05,23794,9371,"[""Laptop"", ""Headphones"", ""Tablet""]",3428.91,"{""promo"": ""11%""}",161336,1,Africa +2024-02-28,23795,4046,"[""Laptop"", ""Charger"", ""Tablet""]",4080.44,"{""loyalty"": ""16%""}",124401,0,South America +2024-01-06,23796,8307,"[""Headphones""]",2763.27,"{""promo"": ""17%""}",230849,1,Europe +2023-09-21,23797,1471,"[""Wireless Mouse"", ""Tablet""]",1999.39,{},146047,1,Europe +2024-09-22,23798,825,"[""Tablet"", ""Headphones""]",565.49,"{"""": ""16%""}",122325,0,Asia +2023-11-03,23799,10000,"[""Charger"", ""Tablet""]",252.01,{},241332,1,North America +2024-10-05,23800,6150,"[""Headphones"", ""Wireless Mouse""]",432.08,{},19544,1,Asia +2023-07-17,23801,9068,"[""Phone"", ""Laptop""]",1166.95,"{""promo"": ""7%""}",37953,1,Africa +2024-10-03,23802,4696,"[""Charger"", ""Phone"", ""Monitor""]",4949.26,{},181507,1,Asia +2023-09-10,23803,1884,"[""Monitor"", ""Tablet""]",4506.16,{},276854,0,Asia +2024-12-16,23804,8877,"[""Laptop"", ""Keyboard""]",1521.97,{},108026,0,Asia +2024-02-05,23805,8552,"[""Phone"", ""Headphones""]",902.31,{},195405,1,North America +2023-02-14,23806,8118,"[""Headphones"", ""Charger"", ""Monitor""]",1770.36,"{""loyalty"": ""13%""}",277911,1,South America +2024-04-14,23807,2311,"[""Wireless Mouse"", ""Charger""]",4547.65,"{"""": ""25%""}",247095,1,South America +2024-01-27,23808,9920,"[""Monitor"", ""Phone""]",1283.82,"{""loyalty"": ""28%""}",180073,0,North America +2023-03-11,23809,6739,"[""Headphones"", ""Charger""]",1899.96,"{""seasonal"": ""24%""}",22179,0,Europe +2024-10-27,23810,9863,"[""Laptop""]",1196.49,"{""seasonal"": ""18%""}",49060,0,South America +2024-07-30,23811,858,"[""Monitor"", ""Laptop"", ""Tablet""]",2646.17,"{""loyalty"": ""11%""}",125629,1,Europe +2023-01-31,23812,6555,"[""Charger"", ""Tablet"", ""Headphones""]",1167.22,"{""promo"": ""8%""}",259749,1,Europe +2024-01-05,23813,5891,"[""Keyboard"", ""Phone"", ""Charger""]",1839.05,{},138805,1,Europe +2023-11-16,23814,1612,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1170.16,{},36716,1,Asia +2024-06-11,23815,1773,"[""Monitor""]",4137.93,{},196499,0,North America +2023-07-16,23816,1852,"[""Charger"", ""Laptop"", ""Monitor""]",4914.01,{},77390,1,South America +2024-01-12,23817,6091,"[""Keyboard""]",3335.75,{},13461,1,Africa +2023-12-07,23818,439,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2234.69,{},249809,0,South America +2023-11-11,23819,543,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",651.78,{},84757,1,Asia +2023-05-15,23820,2473,"[""Wireless Mouse"", ""Headphones""]",2004.85,{},154362,1,South America +2024-04-20,23821,6493,"[""Monitor""]",1288.09,"{""seasonal"": ""17%""}",66690,0,Africa +2024-11-29,23822,6874,"[""Tablet"", ""Keyboard"", ""Headphones""]",4649.75,"{""seasonal"": ""11%""}",168263,0,Asia +2023-12-28,23823,263,"[""Phone"", ""Tablet""]",3532.84,"{""loyalty"": ""12%""}",242627,1,South America +2024-04-23,23824,1052,"[""Tablet"", ""Keyboard""]",743.65,{},84786,0,South America +2024-01-14,23825,357,"[""Charger"", ""Monitor""]",1612.52,"{""promo"": ""12%""}",138997,1,Asia +2023-05-21,23826,5482,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1489.54,"{""loyalty"": ""27%""}",39156,1,South America +2023-05-20,23827,2852,"[""Wireless Mouse"", ""Laptop""]",4897.33,{},142517,1,Africa +2024-08-24,23828,5303,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3123.03,"{""promo"": ""11%""}",158390,1,South America +2024-08-23,23829,3868,"[""Monitor""]",3225.32,"{""loyalty"": ""28%""}",39970,1,Europe +2024-02-20,23830,818,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2137.03,{},100001,1,Europe +2023-04-12,23831,9039,"[""Monitor""]",1432.62,"{""promo"": ""11%""}",65970,0,Asia +2023-12-23,23832,1268,"[""Headphones"", ""Phone""]",2013.97,{},289230,0,Africa +2023-12-23,23833,9036,"[""Monitor"", ""Charger""]",935.62,"{""seasonal"": ""13%""}",155099,0,Africa +2023-10-19,23834,8807,"[""Headphones"", ""Laptop""]",2437.56,{},120197,0,North America +2024-04-08,23835,4277,"[""Monitor""]",3640.21,{},49071,0,South America +2024-11-27,23836,5343,"[""Charger"", ""Laptop""]",2818.95,{},157868,0,South America +2023-02-08,23837,2390,"[""Monitor""]",3834.21,{},124826,1,Africa +2023-04-17,23838,2613,"[""Keyboard"", ""Laptop""]",1843.41,"{""seasonal"": ""18%""}",158809,0,Asia +2023-01-04,23839,6866,"[""Laptop""]",4428.65,"{""promo"": ""8%""}",204808,0,Africa +2023-05-27,23840,7817,"[""Keyboard"", ""Headphones"", ""Tablet""]",3338.83,"{"""": ""23%""}",224940,0,Africa +2024-07-01,23841,6579,"[""Laptop"", ""Phone""]",1944.26,{},115720,1,North America +2024-08-02,23842,4170,"[""Monitor""]",1974.64,"{""seasonal"": ""15%""}",174476,0,South America +2024-01-28,23843,3094,"[""Monitor"", ""Tablet""]",2284.07,{},182991,1,North America +2023-05-25,23844,9096,"[""Headphones"", ""Charger"", ""Monitor""]",3145.46,{},95486,0,Asia +2024-09-09,23845,8221,"[""Laptop"", ""Wireless Mouse""]",3869.82,{},32166,1,Europe +2024-05-03,23846,5878,"[""Phone"", ""Headphones""]",608.33,{},261875,1,Asia +2024-07-02,23847,231,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",736.17,"{""seasonal"": ""28%""}",190849,1,Africa +2023-10-31,23848,7371,"[""Phone"", ""Wireless Mouse""]",3757.89,{},191551,1,North America +2024-07-30,23849,1814,"[""Charger"", ""Tablet""]",1152.77,"{""promo"": ""13%""}",286566,0,Asia +2023-01-23,23850,6023,"[""Monitor"", ""Charger"", ""Phone""]",2376.75,{},166539,0,Europe +2023-09-02,23851,7803,"[""Keyboard"", ""Charger"", ""Tablet""]",4385.85,"{""seasonal"": ""22%""}",117989,0,North America +2023-09-12,23852,6724,"[""Monitor""]",960.8,{},270442,1,North America +2023-08-14,23853,553,"[""Wireless Mouse"", ""Phone""]",1595.71,{},279877,0,Asia +2024-08-24,23854,9781,"[""Tablet""]",80.13,{},275700,0,Asia +2024-08-20,23855,6910,"[""Tablet""]",2944.79,{},112984,0,Africa +2023-12-22,23856,6123,"[""Monitor""]",4795.26,"{""seasonal"": ""29%""}",247289,0,South America +2024-07-13,23857,5757,"[""Charger"", ""Monitor""]",853.06,{},35570,1,Europe +2024-07-04,23858,2375,"[""Monitor""]",138.33,"{""seasonal"": ""5%""}",154080,1,Europe +2023-11-24,23859,815,"[""Phone"", ""Laptop""]",323.77,{},260645,0,Europe +2024-01-11,23860,2169,"[""Headphones"", ""Monitor"", ""Phone""]",107.13,"{"""": ""13%""}",273962,0,South America +2023-06-10,23861,6337,"[""Laptop"", ""Headphones"", ""Charger""]",4511.1,"{""promo"": ""16%""}",222956,0,Europe +2024-08-10,23862,3302,"[""Headphones"", ""Charger"", ""Monitor""]",2759.73,{},298464,0,Asia +2024-05-11,23863,7323,"[""Headphones"", ""Monitor""]",1088.95,{},25204,1,Africa +2024-05-09,23864,159,"[""Charger"", ""Wireless Mouse""]",4257.38,{},19951,0,North America +2023-06-18,23865,4248,"[""Monitor"", ""Charger"", ""Laptop""]",937.47,"{"""": ""19%""}",29048,1,South America +2023-07-26,23866,7532,"[""Charger"", ""Keyboard"", ""Headphones""]",708.46,"{"""": ""7%""}",183010,0,South America +2024-10-16,23867,3340,"[""Wireless Mouse"", ""Keyboard""]",2293.83,{},40713,1,North America +2024-12-20,23868,5760,"[""Keyboard"", ""Headphones""]",2019.06,"{""promo"": ""16%""}",46095,0,North America +2024-07-03,23869,9202,"[""Laptop""]",4907.08,"{""loyalty"": ""11%""}",242619,0,Asia +2024-06-14,23870,2459,"[""Tablet"", ""Wireless Mouse""]",1213.02,"{""promo"": ""27%""}",80463,1,North America +2024-07-07,23871,4529,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",988.61,{},234768,0,North America +2024-10-03,23872,1253,"[""Laptop"", ""Tablet""]",4683.43,{},210087,1,Asia +2024-07-28,23873,5621,"[""Phone"", ""Headphones"", ""Keyboard""]",1777.41,"{"""": ""19%""}",196277,1,Africa +2023-03-22,23874,1004,"[""Headphones"", ""Keyboard""]",2700.12,"{""seasonal"": ""22%""}",172587,1,Asia +2023-08-16,23875,1598,"[""Laptop"", ""Keyboard"", ""Charger""]",3390.77,{},137983,1,Asia +2023-11-23,23876,611,"[""Tablet"", ""Wireless Mouse""]",1675.43,"{"""": ""30%""}",242485,0,Africa +2023-02-07,23877,190,"[""Wireless Mouse""]",4851.79,"{""seasonal"": ""23%""}",25616,1,Africa +2023-11-28,23878,3766,"[""Monitor"", ""Headphones""]",1188.6,{},134391,0,North America +2023-11-22,23879,8034,"[""Monitor"", ""Headphones""]",1783.19,"{""seasonal"": ""10%""}",41631,1,North America +2023-06-01,23880,8277,"[""Wireless Mouse"", ""Charger""]",4406.23,{},14975,1,South America +2024-01-26,23881,2236,"[""Keyboard"", ""Headphones"", ""Monitor""]",188.8,"{""promo"": ""17%""}",13843,0,Europe +2023-12-17,23882,5433,"[""Headphones""]",2637.81,"{""loyalty"": ""8%""}",52772,0,Asia +2024-11-06,23883,6193,"[""Tablet"", ""Headphones""]",3128.79,"{""promo"": ""7%""}",230727,1,Asia +2023-01-16,23884,8841,"[""Charger"", ""Headphones""]",4365.41,{},83570,1,Africa +2024-11-12,23885,7596,"[""Charger""]",2147.11,{},285430,0,Asia +2023-07-19,23886,6231,"[""Laptop"", ""Charger""]",1712.33,"{""promo"": ""20%""}",41886,0,North America +2024-12-29,23887,3237,"[""Phone"", ""Headphones""]",3766.34,{},231374,0,Africa +2023-08-06,23888,6799,"[""Laptop""]",2248.81,"{""promo"": ""13%""}",278921,0,South America +2023-10-28,23889,4643,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2043.69,"{""loyalty"": ""20%""}",92624,0,North America +2024-06-09,23890,8902,"[""Phone"", ""Headphones""]",3314.37,{},149953,0,Asia +2024-08-04,23891,2999,"[""Phone"", ""Monitor""]",689.0,"{""seasonal"": ""22%""}",246104,1,Europe +2023-03-03,23892,1471,"[""Laptop"", ""Wireless Mouse""]",1729.37,{},25512,1,Europe +2024-09-03,23893,5506,"[""Tablet"", ""Wireless Mouse""]",300.46,"{""loyalty"": ""23%""}",242370,0,Africa +2023-10-30,23894,9359,"[""Phone"", ""Headphones"", ""Charger""]",596.43,"{"""": ""19%""}",110371,1,Asia +2024-07-12,23895,2101,"[""Phone"", ""Headphones""]",2984.52,"{"""": ""24%""}",149254,0,North America +2024-08-26,23896,1493,"[""Headphones""]",2374.6,"{"""": ""5%""}",235502,0,Africa +2024-08-19,23897,4966,"[""Charger"", ""Wireless Mouse"", ""Phone""]",995.36,"{""loyalty"": ""24%""}",180938,0,North America +2024-03-08,23898,4365,"[""Charger"", ""Tablet""]",3178.76,{},266547,1,Asia +2024-07-29,23899,1973,"[""Keyboard""]",1963.6,"{""seasonal"": ""12%""}",223459,1,Europe +2024-10-24,23900,4838,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3981.29,"{""promo"": ""22%""}",25370,1,North America +2024-12-07,23901,45,"[""Tablet"", ""Headphones"", ""Monitor""]",3764.47,"{"""": ""28%""}",19905,0,Africa +2023-12-24,23902,9708,"[""Wireless Mouse"", ""Laptop""]",4734.91,"{"""": ""9%""}",187568,1,South America +2024-04-08,23903,8172,"[""Monitor"", ""Tablet""]",1163.74,"{""loyalty"": ""14%""}",126781,1,Asia +2023-05-15,23904,3232,"[""Laptop"", ""Keyboard""]",4106.74,"{""loyalty"": ""18%""}",11632,1,Asia +2023-03-13,23905,4450,"[""Monitor""]",135.25,"{""promo"": ""13%""}",242816,0,Africa +2023-10-08,23906,3956,"[""Phone""]",2949.38,{},73211,1,Asia +2023-08-27,23907,4550,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1508.37,"{""loyalty"": ""16%""}",225759,0,North America +2024-11-05,23908,1187,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",980.87,"{""promo"": ""12%""}",249841,0,Africa +2023-07-19,23909,569,"[""Phone"", ""Tablet""]",1386.58,{},238854,1,Asia +2024-03-17,23910,8248,"[""Charger"", ""Phone"", ""Keyboard""]",3913.62,{},29633,0,Europe +2023-12-04,23911,4824,"[""Keyboard""]",2976.75,"{""loyalty"": ""16%""}",222974,0,Europe +2023-02-01,23912,6510,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4775.95,"{""promo"": ""11%""}",39509,0,South America +2023-07-01,23913,6857,"[""Wireless Mouse"", ""Keyboard""]",3443.35,"{""loyalty"": ""8%""}",138786,1,Europe +2024-05-24,23914,3719,"[""Charger"", ""Headphones""]",1986.86,"{""seasonal"": ""8%""}",120937,1,Africa +2024-10-27,23915,2186,"[""Laptop""]",1857.93,{},43011,0,Africa +2023-03-06,23916,4351,"[""Monitor""]",1392.12,{},169145,0,Europe +2024-01-19,23917,1219,"[""Monitor"", ""Phone""]",1049.83,"{""seasonal"": ""14%""}",143733,0,Asia +2023-07-27,23918,3130,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1617.03,{},172363,0,South America +2023-02-24,23919,2581,"[""Monitor"", ""Laptop"", ""Headphones""]",589.58,"{""seasonal"": ""23%""}",282730,1,South America +2023-05-27,23920,1961,"[""Keyboard"", ""Phone""]",3089.16,"{""seasonal"": ""10%""}",138633,1,South America +2023-12-11,23921,7543,"[""Monitor""]",4866.99,"{""loyalty"": ""27%""}",237693,1,North America +2024-07-26,23922,8260,"[""Tablet""]",2254.67,{},297448,1,Asia +2023-09-02,23923,4905,"[""Wireless Mouse"", ""Monitor""]",1405.17,"{""loyalty"": ""12%""}",44552,0,South America +2024-02-13,23924,5754,"[""Keyboard"", ""Tablet"", ""Laptop""]",1458.37,{},103656,1,North America +2023-05-22,23925,8292,"[""Wireless Mouse"", ""Keyboard""]",175.02,{},251605,0,North America +2023-07-22,23926,5305,"[""Phone"", ""Wireless Mouse"", ""Charger""]",546.67,{},219614,0,North America +2023-12-04,23927,1145,"[""Headphones""]",2931.96,"{"""": ""15%""}",243898,1,Europe +2024-08-01,23928,1104,"[""Wireless Mouse""]",4608.84,{},145849,0,South America +2024-03-27,23929,5350,"[""Keyboard"", ""Laptop""]",1987.91,{},16599,0,South America +2024-03-02,23930,4635,"[""Headphones"", ""Laptop"", ""Phone""]",837.56,"{""loyalty"": ""8%""}",167380,1,Africa +2024-05-22,23931,3096,"[""Tablet"", ""Monitor"", ""Keyboard""]",1220.07,"{""loyalty"": ""9%""}",29733,1,North America +2023-11-08,23932,3469,"[""Phone"", ""Wireless Mouse""]",3685.91,{},51295,0,Africa +2024-10-08,23933,1861,"[""Tablet"", ""Charger"", ""Keyboard""]",1253.3,"{""seasonal"": ""13%""}",173316,1,Africa +2024-09-19,23934,6653,"[""Monitor""]",3234.02,{},269325,0,North America +2024-07-29,23935,5157,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",111.83,"{""promo"": ""22%""}",105074,0,Asia +2024-08-06,23936,8013,"[""Charger""]",3361.97,{},202437,1,North America +2024-10-30,23937,3740,"[""Phone""]",4920.07,"{""seasonal"": ""20%""}",102942,1,Europe +2024-05-15,23938,7994,"[""Monitor"", ""Keyboard"", ""Tablet""]",53.99,{},41478,1,Europe +2023-12-04,23939,1744,"[""Tablet"", ""Charger""]",1185.06,{},119672,0,South America +2023-04-30,23940,2338,"[""Monitor""]",403.57,{},211395,1,Asia +2023-03-20,23941,1919,"[""Charger"", ""Phone""]",4600.62,{},22751,0,North America +2024-07-11,23942,9437,"[""Wireless Mouse""]",2291.16,"{""seasonal"": ""10%""}",27842,0,Europe +2023-08-02,23943,3622,"[""Charger""]",3460.01,{},186915,1,Asia +2024-04-25,23944,654,"[""Monitor""]",2770.27,"{""promo"": ""29%""}",58185,0,North America +2024-04-26,23945,3676,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2523.55,"{"""": ""18%""}",53879,1,Africa +2023-03-10,23946,9610,"[""Tablet"", ""Wireless Mouse""]",823.08,{},101773,0,North America +2023-01-04,23947,6634,"[""Monitor"", ""Charger""]",2979.37,{},254083,0,Asia +2024-05-08,23948,4308,"[""Laptop"", ""Headphones""]",4121.35,"{""loyalty"": ""13%""}",43938,0,Asia +2024-05-25,23949,158,"[""Laptop""]",153.66,"{""promo"": ""21%""}",266952,0,Asia +2024-05-27,23950,3812,"[""Laptop"", ""Charger""]",4805.28,"{"""": ""28%""}",115363,1,Asia +2024-09-19,23951,7199,"[""Tablet"", ""Keyboard""]",2488.46,{},179783,1,Asia +2024-05-12,23952,1248,"[""Keyboard""]",2893.86,{},48505,0,Asia +2023-03-13,23953,9982,"[""Tablet""]",3618.1,{},199291,0,North America +2023-05-04,23954,230,"[""Headphones""]",3503.87,{},71097,1,Africa +2023-10-04,23955,1558,"[""Wireless Mouse""]",3031.62,"{""seasonal"": ""27%""}",179107,1,Asia +2023-08-01,23956,3389,"[""Wireless Mouse"", ""Phone""]",4130.0,{},153533,0,South America +2024-02-18,23957,3389,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",254.83,{},133802,1,Europe +2024-06-18,23958,2764,"[""Charger"", ""Headphones""]",1543.75,{},154498,0,Asia +2024-12-23,23959,7867,"[""Keyboard""]",3338.16,"{""promo"": ""21%""}",123594,1,Africa +2023-11-26,23960,9237,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4454.14,{},7733,1,Africa +2023-12-18,23961,3066,"[""Headphones"", ""Tablet""]",2864.77,"{"""": ""27%""}",171849,0,Asia +2024-02-28,23962,1485,"[""Laptop""]",633.58,"{"""": ""27%""}",96276,0,North America +2023-12-05,23963,9053,"[""Laptop"", ""Headphones"", ""Keyboard""]",3885.04,{},114601,1,Europe +2023-10-12,23964,6222,"[""Monitor"", ""Tablet""]",1025.93,"{"""": ""17%""}",298521,1,Europe +2024-05-26,23965,203,"[""Headphones"", ""Keyboard""]",3494.98,{},2429,1,South America +2024-03-19,23966,2922,"[""Charger""]",3742.43,{},157009,1,Europe +2023-03-04,23967,8703,"[""Tablet"", ""Keyboard"", ""Laptop""]",4126.24,{},100931,0,South America +2024-05-05,23968,7509,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1205.45,{},269000,1,South America +2023-03-01,23969,9490,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2284.55,{},202326,0,South America +2024-12-08,23970,350,"[""Charger"", ""Monitor"", ""Tablet""]",525.33,"{"""": ""6%""}",107289,0,Africa +2024-08-13,23971,8888,"[""Monitor"", ""Charger""]",3126.97,"{""loyalty"": ""10%""}",230811,0,North America +2024-09-21,23972,8159,"[""Charger"", ""Headphones""]",905.9,{},291799,0,North America +2023-05-20,23973,1828,"[""Keyboard"", ""Wireless Mouse""]",1085.06,"{"""": ""15%""}",180815,0,Asia +2024-02-15,23974,6815,"[""Phone""]",820.76,{},222912,0,Asia +2023-06-01,23975,6054,"[""Charger"", ""Tablet""]",1733.29,{},234146,1,Asia +2023-06-21,23976,3068,"[""Monitor"", ""Headphones""]",4045.59,"{""promo"": ""28%""}",35158,0,Europe +2023-01-03,23977,793,"[""Monitor"", ""Wireless Mouse""]",3680.23,"{""promo"": ""19%""}",214082,1,Africa +2023-07-11,23978,5434,"[""Laptop""]",4837.04,{},249342,0,South America +2024-10-02,23979,7754,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2657.5,{},206461,0,South America +2024-07-26,23980,3441,"[""Keyboard""]",2134.61,"{""loyalty"": ""9%""}",178627,0,South America +2023-03-11,23981,9674,"[""Headphones"", ""Keyboard""]",4468.26,{},33446,0,South America +2024-07-03,23982,6424,"[""Keyboard"", ""Tablet"", ""Charger""]",2257.93,{},277362,1,Africa +2024-11-03,23983,4008,"[""Keyboard""]",2642.91,"{"""": ""30%""}",187419,0,North America +2023-10-08,23984,8945,"[""Wireless Mouse""]",882.46,"{"""": ""24%""}",160501,1,South America +2023-04-30,23985,2469,"[""Keyboard"", ""Wireless Mouse""]",735.9,{},241569,0,Asia +2023-05-26,23986,305,"[""Laptop""]",135.16,{},90512,0,South America +2023-09-01,23987,1979,"[""Laptop""]",3308.6,"{""promo"": ""17%""}",20895,1,South America +2024-06-12,23988,6585,"[""Keyboard"", ""Phone""]",1175.91,"{""promo"": ""12%""}",24212,0,Africa +2024-03-14,23989,5647,"[""Tablet""]",941.45,"{"""": ""9%""}",274578,1,Asia +2024-10-16,23990,7692,"[""Wireless Mouse"", ""Phone""]",286.66,"{""loyalty"": ""5%""}",155541,0,Asia +2023-10-08,23991,9332,"[""Wireless Mouse""]",2411.86,"{""loyalty"": ""30%""}",98177,0,South America +2023-04-03,23992,1658,"[""Laptop"", ""Wireless Mouse""]",4856.07,"{"""": ""16%""}",81599,0,Africa +2024-05-03,23993,8520,"[""Phone"", ""Tablet""]",1055.88,{},187493,1,Asia +2024-08-29,23994,1163,"[""Phone"", ""Headphones"", ""Laptop""]",4111.2,"{""promo"": ""28%""}",199717,0,Africa +2023-08-08,23995,8584,"[""Laptop""]",1091.01,"{""promo"": ""10%""}",269651,1,Africa +2023-01-10,23996,6466,"[""Phone""]",2156.81,"{""promo"": ""25%""}",21281,1,South America +2023-06-14,23997,8963,"[""Monitor""]",2276.58,{},157461,0,North America +2023-01-11,23998,3858,"[""Laptop"", ""Headphones""]",2367.19,{},45721,0,North America +2024-03-17,23999,8266,"[""Keyboard"", ""Charger"", ""Tablet""]",4143.18,{},271461,0,South America +2023-04-28,24000,7403,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2768.54,{},164382,1,South America +2023-08-10,24001,6372,"[""Phone"", ""Wireless Mouse""]",3828.0,"{""loyalty"": ""5%""}",108393,1,South America +2024-11-16,24002,531,"[""Headphones"", ""Laptop""]",3793.78,{},8698,1,North America +2024-06-13,24003,4213,"[""Headphones"", ""Laptop"", ""Monitor""]",433.91,"{""seasonal"": ""29%""}",164322,1,Asia +2024-03-20,24004,3993,"[""Charger""]",3840.27,{},256253,0,Europe +2024-02-26,24005,9302,"[""Tablet""]",162.89,"{"""": ""7%""}",249053,0,Europe +2024-07-17,24006,7631,"[""Laptop""]",3290.59,{},85218,1,Europe +2024-10-11,24007,101,"[""Tablet"", ""Charger"", ""Monitor""]",4632.98,"{""loyalty"": ""6%""}",98324,1,South America +2023-06-20,24008,8512,"[""Tablet"", ""Monitor""]",2975.48,{},74889,0,North America +2024-04-23,24009,1460,"[""Monitor""]",2966.19,"{"""": ""16%""}",89542,1,Africa +2023-03-13,24010,4921,"[""Headphones"", ""Charger""]",3049.01,"{""loyalty"": ""30%""}",268848,1,Africa +2024-07-04,24011,3184,"[""Headphones"", ""Phone"", ""Laptop""]",4071.29,"{""seasonal"": ""8%""}",83133,0,Europe +2024-08-02,24012,2278,"[""Wireless Mouse"", ""Headphones""]",3082.65,"{""loyalty"": ""8%""}",279366,1,South America +2024-07-15,24013,8780,"[""Laptop"", ""Charger"", ""Monitor""]",893.59,{},290571,0,Europe +2024-12-31,24014,6506,"[""Phone""]",667.28,{},278444,1,Africa +2024-12-02,24015,9872,"[""Headphones"", ""Laptop""]",2189.27,"{"""": ""28%""}",70074,1,Europe +2023-03-28,24016,4940,"[""Monitor"", ""Headphones""]",1836.85,{},127774,0,Africa +2024-11-21,24017,781,"[""Phone"", ""Charger""]",2191.18,{},262040,0,Europe +2023-06-03,24018,2925,"[""Charger""]",3695.78,"{""loyalty"": ""20%""}",138723,0,Africa +2024-08-09,24019,5445,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",767.8,{},246253,0,North America +2024-06-14,24020,3099,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3309.57,{},90121,1,South America +2023-05-18,24021,9070,"[""Phone""]",1745.84,{},161769,1,South America +2024-09-21,24022,8456,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4228.72,"{"""": ""30%""}",89173,1,North America +2024-08-30,24023,222,"[""Monitor""]",243.94,"{""loyalty"": ""18%""}",236378,0,Africa +2023-05-25,24024,7565,"[""Monitor"", ""Keyboard""]",2234.72,{},293212,1,North America +2023-03-14,24025,4428,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3486.98,"{""promo"": ""21%""}",10477,0,Africa +2023-06-27,24026,7498,"[""Headphones"", ""Phone""]",2260.71,{},174230,0,North America +2024-06-08,24027,744,"[""Keyboard"", ""Tablet""]",1093.63,"{""promo"": ""7%""}",229094,1,North America +2024-01-05,24028,126,"[""Monitor""]",3657.04,"{""loyalty"": ""9%""}",157371,0,Asia +2024-03-19,24029,6125,"[""Tablet""]",686.43,{},160133,1,Africa +2024-01-10,24030,6320,"[""Phone""]",3958.82,{},159760,1,Europe +2024-06-08,24031,9531,"[""Headphones"", ""Phone"", ""Monitor""]",2912.89,{},262243,0,Asia +2023-12-22,24032,1375,"[""Monitor"", ""Keyboard""]",3375.82,"{""promo"": ""14%""}",61557,0,Asia +2024-01-13,24033,4083,"[""Headphones"", ""Keyboard""]",4400.14,{},167138,1,South America +2024-02-09,24034,6327,"[""Monitor""]",1555.69,"{""loyalty"": ""18%""}",230661,1,Asia +2024-01-27,24035,6944,"[""Monitor""]",2225.85,"{""seasonal"": ""8%""}",201471,1,Asia +2024-04-24,24036,9700,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3169.61,{},90916,0,Africa +2023-07-06,24037,6900,"[""Charger"", ""Wireless Mouse""]",172.8,{},92521,1,Europe +2024-04-05,24038,2300,"[""Headphones""]",1807.86,{},219784,1,North America +2023-12-05,24039,7751,"[""Phone"", ""Laptop""]",2131.06,{},227410,1,Europe +2023-05-30,24040,9664,"[""Phone""]",434.62,"{""seasonal"": ""11%""}",114267,1,South America +2024-02-10,24041,1574,"[""Monitor"", ""Phone"", ""Headphones""]",3770.09,{},248206,1,Asia +2024-10-15,24042,4912,"[""Monitor"", ""Headphones""]",4472.49,{},243841,1,South America +2024-04-03,24043,2519,"[""Laptop"", ""Keyboard"", ""Phone""]",4175.94,"{""seasonal"": ""22%""}",210555,0,South America +2024-05-24,24044,5895,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",219.71,{},208953,0,South America +2024-09-13,24045,7709,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4088.83,"{""loyalty"": ""25%""}",136538,0,Africa +2024-03-31,24046,1529,"[""Charger""]",1426.75,{},88023,1,North America +2023-12-21,24047,646,"[""Charger"", ""Laptop""]",3037.89,"{"""": ""28%""}",4029,1,Europe +2023-01-21,24048,3795,"[""Laptop"", ""Phone""]",4733.6,"{""loyalty"": ""10%""}",22153,0,Asia +2023-09-17,24049,5609,"[""Phone"", ""Monitor""]",2263.56,{},130322,0,South America +2024-09-25,24050,8808,"[""Laptop"", ""Monitor""]",4346.54,{},201997,1,North America +2024-01-23,24051,2433,"[""Phone"", ""Charger""]",2168.69,"{""loyalty"": ""24%""}",164718,0,North America +2024-02-06,24052,3206,"[""Monitor"", ""Phone""]",1225.91,{},273545,0,South America +2023-05-02,24053,6403,"[""Phone""]",3951.95,"{"""": ""16%""}",212036,1,Asia +2024-04-06,24054,4068,"[""Charger"", ""Tablet""]",114.95,"{"""": ""15%""}",4278,0,Europe +2024-05-16,24055,1212,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4055.52,{},285396,1,South America +2023-11-20,24056,5783,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1544.87,"{""promo"": ""21%""}",197750,0,Africa +2024-06-06,24057,9949,"[""Charger"", ""Keyboard""]",3132.39,{},271569,1,Europe +2024-06-22,24058,6394,"[""Headphones"", ""Wireless Mouse""]",275.27,{},183195,1,North America +2023-07-04,24059,3500,"[""Phone""]",3589.32,{},232263,1,Europe +2023-03-15,24060,4105,"[""Tablet"", ""Headphones"", ""Laptop""]",4339.03,{},60271,1,Asia +2023-03-17,24061,3303,"[""Tablet"", ""Charger""]",1818.65,{},147926,0,Asia +2023-03-15,24062,3785,"[""Tablet"", ""Laptop""]",4131.61,{},60011,0,Africa +2023-04-12,24063,1537,"[""Keyboard"", ""Headphones""]",774.38,"{"""": ""23%""}",156139,1,South America +2024-02-20,24064,6469,"[""Monitor""]",203.76,{},292641,1,Africa +2023-07-12,24065,201,"[""Laptop"", ""Tablet"", ""Phone""]",2300.56,"{""seasonal"": ""6%""}",195009,1,Africa +2023-02-02,24066,1560,"[""Monitor"", ""Keyboard""]",1269.45,{},252249,0,Europe +2023-05-05,24067,3615,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",900.37,"{""loyalty"": ""11%""}",241015,0,North America +2024-04-19,24068,6126,"[""Wireless Mouse"", ""Charger""]",3956.98,{},5543,1,South America +2024-04-29,24069,2667,"[""Charger"", ""Wireless Mouse""]",1221.1,"{""promo"": ""30%""}",125259,1,South America +2024-03-06,24070,5879,"[""Laptop"", ""Keyboard""]",628.76,{},176309,1,South America +2023-01-14,24071,925,"[""Laptop"", ""Keyboard""]",4371.06,"{""loyalty"": ""29%""}",113945,0,South America +2024-10-15,24072,150,"[""Tablet"", ""Headphones""]",2269.01,"{"""": ""7%""}",165252,0,South America +2023-01-01,24073,3096,"[""Wireless Mouse"", ""Laptop""]",2685.0,"{""seasonal"": ""21%""}",232557,0,South America +2024-05-28,24074,2205,"[""Tablet""]",677.94,"{""loyalty"": ""21%""}",299841,0,Asia +2023-01-11,24075,7471,"[""Laptop"", ""Phone""]",2540.93,"{""loyalty"": ""22%""}",49944,0,South America +2023-09-11,24076,3212,"[""Keyboard"", ""Phone""]",1329.13,{},50822,1,Europe +2023-04-25,24077,3610,"[""Headphones"", ""Keyboard"", ""Monitor""]",2588.6,"{""seasonal"": ""24%""}",173540,1,Asia +2024-09-30,24078,3788,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",579.15,{},176269,0,Europe +2024-11-13,24079,9956,"[""Keyboard"", ""Headphones""]",188.16,"{""promo"": ""14%""}",190346,1,Africa +2024-09-22,24080,2215,"[""Headphones"", ""Monitor"", ""Keyboard""]",3377.84,{},125784,0,South America +2023-01-04,24081,9004,"[""Headphones""]",4173.99,{},36178,1,Europe +2023-01-13,24082,7441,"[""Charger"", ""Monitor""]",3180.07,"{"""": ""8%""}",57809,1,Africa +2023-05-18,24083,8572,"[""Keyboard"", ""Charger"", ""Laptop""]",4324.39,"{"""": ""8%""}",235671,0,Africa +2023-06-06,24084,7568,"[""Tablet"", ""Phone""]",4953.49,{},182350,0,South America +2024-05-19,24085,9523,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1644.06,{},121652,1,South America +2024-09-09,24086,6512,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3889.7,{},256354,1,North America +2023-04-22,24087,1263,"[""Tablet"", ""Keyboard"", ""Phone""]",607.48,{},263221,0,North America +2023-09-14,24088,6847,"[""Headphones"", ""Tablet"", ""Keyboard""]",1980.11,{},147700,0,Asia +2023-10-18,24089,3060,"[""Keyboard"", ""Charger"", ""Headphones""]",2205.05,"{""loyalty"": ""8%""}",30594,1,South America +2024-04-29,24090,5785,"[""Phone"", ""Laptop"", ""Charger""]",3267.46,{},219725,0,Asia +2023-11-22,24091,6993,"[""Tablet"", ""Phone"", ""Laptop""]",2162.09,"{""promo"": ""27%""}",170604,0,Asia +2024-04-13,24092,2684,"[""Phone""]",2151.6,{},80277,1,Asia +2023-10-23,24093,4604,"[""Headphones""]",2858.38,"{"""": ""6%""}",12510,0,South America +2023-05-29,24094,7045,"[""Laptop"", ""Charger"", ""Phone""]",4711.91,"{""promo"": ""22%""}",1992,1,Asia +2023-01-17,24095,6308,"[""Monitor"", ""Keyboard""]",4638.12,{},211907,0,North America +2023-12-22,24096,559,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",678.34,{},208293,1,North America +2024-02-06,24097,5717,"[""Charger"", ""Monitor""]",88.31,"{""promo"": ""28%""}",99069,0,Europe +2024-07-02,24098,5819,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1792.67,{},114802,0,Africa +2023-11-13,24099,4908,"[""Keyboard"", ""Charger""]",4476.78,{},146940,0,Asia +2024-01-03,24100,1167,"[""Laptop"", ""Tablet""]",4901.13,{},198910,1,South America +2024-04-29,24101,2278,"[""Charger"", ""Laptop"", ""Headphones""]",3024.51,"{""promo"": ""11%""}",183290,0,Europe +2023-05-31,24102,9080,"[""Headphones""]",2969.4,{},175119,1,Europe +2023-06-15,24103,3383,"[""Keyboard"", ""Tablet""]",2274.09,{},58776,0,Europe +2024-11-19,24104,1087,"[""Headphones""]",2418.48,"{""promo"": ""13%""}",147402,1,South America +2024-01-24,24105,5453,"[""Tablet"", ""Charger"", ""Phone""]",4677.43,"{""seasonal"": ""7%""}",147166,1,Europe +2024-08-08,24106,2646,"[""Laptop"", ""Charger"", ""Tablet""]",3397.46,{},208011,0,Europe +2023-11-18,24107,2039,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4016.03,"{""promo"": ""22%""}",3130,0,Asia +2024-09-25,24108,6442,"[""Laptop""]",209.55,{},39261,1,South America +2024-03-02,24109,3893,"[""Keyboard"", ""Charger"", ""Phone""]",4361.67,"{""seasonal"": ""24%""}",215926,1,Europe +2023-01-17,24110,6714,"[""Wireless Mouse"", ""Keyboard""]",2733.48,"{""promo"": ""15%""}",33068,1,Asia +2023-06-29,24111,7017,"[""Phone"", ""Laptop""]",4071.46,{},70632,1,Asia +2024-10-07,24112,5703,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1244.35,"{""promo"": ""14%""}",201834,0,Asia +2023-07-17,24113,6587,"[""Phone"", ""Keyboard""]",702.16,"{"""": ""30%""}",225535,1,South America +2023-12-04,24114,8010,"[""Tablet"", ""Wireless Mouse""]",1532.74,"{"""": ""16%""}",241664,1,South America +2023-08-15,24115,6959,"[""Monitor"", ""Tablet"", ""Laptop""]",3824.76,"{""loyalty"": ""9%""}",104208,0,Asia +2023-10-14,24116,2148,"[""Wireless Mouse""]",266.44,{},245674,0,Asia +2024-03-07,24117,7597,"[""Charger"", ""Phone""]",3708.85,"{""seasonal"": ""15%""}",282418,1,Africa +2023-08-28,24118,235,"[""Keyboard"", ""Charger""]",307.19,"{""loyalty"": ""12%""}",249666,1,Africa +2024-09-11,24119,4423,"[""Laptop"", ""Phone"", ""Keyboard""]",1746.97,{},52670,1,North America +2024-03-27,24120,3030,"[""Monitor"", ""Keyboard""]",564.04,{},180429,1,Asia +2023-09-05,24121,6406,"[""Charger"", ""Wireless Mouse""]",918.57,{},287929,0,South America +2024-02-27,24122,8377,"[""Wireless Mouse""]",2392.17,"{""seasonal"": ""12%""}",38847,1,South America +2024-11-06,24123,8639,"[""Keyboard""]",4136.06,"{""seasonal"": ""12%""}",193661,1,Africa +2024-03-19,24124,9874,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1444.22,"{"""": ""14%""}",22779,1,North America +2024-01-10,24125,590,"[""Phone"", ""Charger""]",4503.52,{},184151,1,Asia +2023-10-19,24126,2569,"[""Laptop"", ""Keyboard""]",1563.7,{},288133,0,Europe +2024-08-08,24127,2467,"[""Headphones""]",2865.07,"{""promo"": ""25%""}",86180,0,Europe +2023-12-09,24128,4615,"[""Phone"", ""Keyboard""]",2313.47,"{""seasonal"": ""18%""}",2009,1,Europe +2023-10-30,24129,523,"[""Keyboard"", ""Tablet"", ""Phone""]",1253.82,"{""seasonal"": ""19%""}",278893,1,Africa +2024-03-02,24130,6767,"[""Tablet""]",3788.32,{},103823,0,Africa +2023-11-22,24131,4605,"[""Charger"", ""Wireless Mouse""]",2065.84,{},205088,1,North America +2024-06-21,24132,5009,"[""Monitor""]",1195.02,"{"""": ""24%""}",262852,0,Africa +2024-07-03,24133,552,"[""Monitor""]",2662.12,"{""promo"": ""21%""}",67728,0,Africa +2024-09-23,24134,7459,"[""Headphones"", ""Tablet""]",2905.38,"{"""": ""7%""}",48267,0,Africa +2023-09-14,24135,6568,"[""Keyboard"", ""Phone""]",2742.2,{},6529,1,North America +2024-11-06,24136,307,"[""Wireless Mouse"", ""Monitor""]",4189.43,"{""loyalty"": ""10%""}",97227,1,Europe +2024-02-07,24137,2555,"[""Phone"", ""Charger""]",3978.8,"{""seasonal"": ""27%""}",298665,0,South America +2024-05-29,24138,5013,"[""Laptop"", ""Tablet""]",3498.28,"{""promo"": ""21%""}",69136,0,Asia +2023-10-04,24139,3009,"[""Laptop""]",1124.44,{},152530,1,South America +2024-04-28,24140,6308,"[""Phone"", ""Headphones""]",1935.24,{},2543,1,North America +2024-07-07,24141,7821,"[""Keyboard""]",3129.81,"{""loyalty"": ""27%""}",236576,1,Africa +2024-11-12,24142,2650,"[""Monitor"", ""Headphones"", ""Tablet""]",2655.87,"{"""": ""30%""}",229700,1,Africa +2023-07-28,24143,589,"[""Tablet""]",2081.82,"{""promo"": ""26%""}",206976,0,Asia +2023-02-18,24144,3568,"[""Charger""]",537.31,{},245344,0,Asia +2023-11-20,24145,3770,"[""Charger"", ""Keyboard"", ""Laptop""]",925.52,"{""promo"": ""12%""}",192503,1,South America +2023-10-24,24146,6479,"[""Laptop""]",65.31,{},15077,0,South America +2024-08-29,24147,1636,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2583.23,"{"""": ""6%""}",256715,1,Asia +2024-02-04,24148,9758,"[""Wireless Mouse""]",4523.43,"{""seasonal"": ""16%""}",30011,1,Africa +2024-11-17,24149,551,"[""Monitor"", ""Tablet""]",569.4,"{""promo"": ""12%""}",208890,0,North America +2024-06-26,24150,8469,"[""Monitor""]",3445.79,"{""promo"": ""13%""}",180432,1,North America +2023-07-30,24151,9951,"[""Phone"", ""Charger"", ""Keyboard""]",1292.5,"{""promo"": ""5%""}",85449,0,Africa +2024-03-06,24152,291,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3860.75,"{""promo"": ""7%""}",166929,1,Africa +2023-05-25,24153,6749,"[""Headphones""]",2027.14,{},135609,0,South America +2023-12-25,24154,5065,"[""Tablet"", ""Phone"", ""Laptop""]",606.86,"{""promo"": ""26%""}",182677,0,North America +2024-06-23,24155,7547,"[""Monitor"", ""Keyboard""]",2749.28,{},114018,0,Africa +2023-06-01,24156,6470,"[""Phone""]",4084.87,"{"""": ""8%""}",152605,0,North America +2024-07-01,24157,1509,"[""Tablet""]",4805.23,{},227993,1,South America +2023-12-16,24158,2377,"[""Monitor"", ""Headphones""]",2500.95,"{"""": ""20%""}",225719,0,North America +2024-04-15,24159,5145,"[""Headphones"", ""Laptop""]",2053.08,{},240425,1,Africa +2024-04-21,24160,6792,"[""Monitor""]",2710.58,"{"""": ""9%""}",91001,0,Africa +2023-04-21,24161,5775,"[""Laptop""]",3451.64,"{""loyalty"": ""6%""}",195031,1,North America +2024-03-20,24162,7762,"[""Charger"", ""Keyboard""]",3549.33,{},62236,0,Africa +2024-01-28,24163,3335,"[""Charger"", ""Monitor""]",418.01,"{""seasonal"": ""10%""}",103913,1,South America +2023-11-06,24164,3932,"[""Monitor""]",1443.12,{},138611,0,Asia +2024-06-13,24165,5403,"[""Charger"", ""Laptop"", ""Headphones""]",503.88,{},192480,0,Europe +2023-02-08,24166,5035,"[""Wireless Mouse"", ""Laptop""]",2930.47,"{"""": ""18%""}",13908,0,Asia +2024-06-29,24167,3488,"[""Headphones""]",267.77,{},220373,0,Asia +2023-12-13,24168,1268,"[""Tablet""]",3200.79,{},47881,1,Europe +2024-12-11,24169,2777,"[""Tablet"", ""Monitor""]",704.93,{},175775,1,South America +2023-08-10,24170,9485,"[""Laptop"", ""Keyboard"", ""Headphones""]",4828.01,"{"""": ""15%""}",176992,1,North America +2023-11-29,24171,9101,"[""Headphones"", ""Keyboard"", ""Charger""]",1526.49,"{""loyalty"": ""23%""}",123977,1,Africa +2024-12-09,24172,7916,"[""Laptop"", ""Headphones""]",2282.78,"{"""": ""26%""}",59361,0,South America +2024-06-18,24173,7157,"[""Phone""]",677.44,"{""promo"": ""20%""}",34650,1,Asia +2023-09-30,24174,2658,"[""Monitor"", ""Phone""]",1133.33,{},154053,1,North America +2024-09-06,24175,5625,"[""Phone"", ""Headphones"", ""Laptop""]",1273.87,"{"""": ""28%""}",81875,0,South America +2023-07-15,24176,7939,"[""Headphones"", ""Tablet""]",3146.19,{},90883,1,Asia +2024-09-13,24177,8569,"[""Headphones"", ""Laptop""]",742.34,{},150640,0,South America +2024-12-10,24178,7583,"[""Phone""]",3154.24,"{"""": ""29%""}",172858,0,Africa +2023-12-10,24179,3746,"[""Keyboard""]",4710.58,{},172108,1,Europe +2024-03-08,24180,3733,"[""Wireless Mouse""]",3379.99,"{""promo"": ""25%""}",295373,1,North America +2023-12-15,24181,3309,"[""Phone"", ""Keyboard"", ""Charger""]",4553.67,"{""loyalty"": ""24%""}",181859,0,Europe +2024-02-18,24182,9472,"[""Laptop"", ""Phone""]",2694.34,"{"""": ""24%""}",22312,0,South America +2023-06-07,24183,4059,"[""Laptop""]",316.56,"{"""": ""23%""}",8179,1,South America +2024-06-19,24184,7572,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3612.65,"{""promo"": ""12%""}",35824,0,South America +2024-03-02,24185,8512,"[""Wireless Mouse"", ""Keyboard""]",3672.59,"{""loyalty"": ""27%""}",68596,1,Asia +2023-12-17,24186,2045,"[""Monitor""]",4222.11,"{"""": ""8%""}",185665,1,Africa +2023-04-10,24187,2220,"[""Laptop""]",2726.91,{},274407,0,Asia +2023-10-29,24188,8924,"[""Monitor"", ""Tablet""]",4793.74,"{""promo"": ""9%""}",248757,1,Europe +2023-11-10,24189,706,"[""Charger"", ""Wireless Mouse""]",3138.27,{},15294,0,North America +2024-11-01,24190,5523,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4018.0,{},190209,1,Africa +2024-03-24,24191,7544,"[""Phone"", ""Monitor""]",425.59,{},91578,1,North America +2023-03-18,24192,7660,"[""Phone"", ""Keyboard""]",4821.47,{},217137,0,South America +2023-03-09,24193,8844,"[""Phone""]",1516.06,{},53984,1,Asia +2024-10-05,24194,8873,"[""Wireless Mouse"", ""Headphones""]",730.62,{},223929,0,North America +2024-11-17,24195,9908,"[""Charger""]",626.35,{},53222,0,Asia +2023-07-21,24196,6653,"[""Headphones"", ""Charger""]",1937.37,{},237740,0,North America +2024-05-18,24197,4652,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1468.86,"{"""": ""9%""}",47660,1,North America +2023-10-10,24198,8870,"[""Monitor"", ""Phone""]",353.04,{},253140,0,South America +2023-10-15,24199,8233,"[""Tablet""]",2169.84,{},188172,1,North America +2024-04-14,24200,5527,"[""Wireless Mouse"", ""Laptop""]",1682.8,"{""promo"": ""8%""}",12453,0,Europe +2024-06-12,24201,9374,"[""Keyboard"", ""Phone""]",3817.82,"{"""": ""18%""}",46407,1,Asia +2024-06-28,24202,4339,"[""Tablet""]",3183.92,{},212734,1,South America +2023-05-21,24203,6782,"[""Keyboard"", ""Charger""]",1850.99,"{""seasonal"": ""27%""}",263766,1,Africa +2023-01-20,24204,6090,"[""Phone""]",3261.56,{},161568,1,Europe +2024-06-25,24205,7273,"[""Keyboard"", ""Headphones"", ""Charger""]",1370.76,{},120183,0,Europe +2023-03-29,24206,8180,"[""Tablet""]",307.94,{},227199,1,Asia +2023-02-19,24207,3041,"[""Tablet""]",4629.83,"{""loyalty"": ""15%""}",292217,1,Europe +2023-02-22,24208,1351,"[""Wireless Mouse"", ""Charger""]",1309.29,"{""seasonal"": ""13%""}",178475,1,Africa +2024-07-18,24209,6722,"[""Headphones""]",1005.07,"{""promo"": ""18%""}",219389,1,South America +2024-08-10,24210,2999,"[""Laptop"", ""Charger"", ""Phone""]",2835.42,{},232358,0,Europe +2024-12-30,24211,5399,"[""Wireless Mouse"", ""Laptop""]",4989.69,"{""loyalty"": ""30%""}",10460,0,North America +2024-01-12,24212,9212,"[""Phone"", ""Charger"", ""Keyboard""]",432.5,"{"""": ""27%""}",170989,1,Europe +2023-03-14,24213,6839,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1446.95,{},213334,1,South America +2024-08-18,24214,3679,"[""Headphones""]",1452.95,"{"""": ""18%""}",101246,0,North America +2024-11-03,24215,8012,"[""Keyboard"", ""Tablet"", ""Headphones""]",3322.1,{},216175,1,South America +2024-05-02,24216,9090,"[""Headphones"", ""Tablet""]",4904.06,"{""promo"": ""28%""}",224816,1,South America +2024-11-11,24217,6195,"[""Tablet"", ""Monitor""]",175.24,{},198508,1,South America +2024-08-22,24218,8375,"[""Laptop""]",3871.17,{},109260,1,Asia +2023-07-11,24219,1245,"[""Charger"", ""Monitor"", ""Tablet""]",413.3,"{""loyalty"": ""30%""}",238149,1,North America +2023-06-02,24220,1062,"[""Charger"", ""Laptop""]",854.01,{},250387,0,Africa +2024-04-09,24221,1943,"[""Monitor""]",4972.38,{},194831,1,Asia +2024-01-10,24222,4539,"[""Keyboard""]",2272.03,"{"""": ""28%""}",17735,0,South America +2023-11-09,24223,4556,"[""Tablet"", ""Laptop""]",457.1,"{"""": ""19%""}",159708,0,Europe +2023-12-30,24224,4532,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1377.16,{},192300,0,Asia +2024-02-25,24225,9368,"[""Monitor"", ""Phone""]",4599.11,"{""promo"": ""12%""}",74765,0,Europe +2023-09-23,24226,7850,"[""Keyboard""]",452.02,"{"""": ""13%""}",220921,1,North America +2024-05-27,24227,6533,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2450.11,{},63476,0,North America +2023-06-28,24228,7354,"[""Laptop"", ""Charger"", ""Headphones""]",268.88,"{""seasonal"": ""9%""}",31288,0,Europe +2024-12-31,24229,8796,"[""Charger"", ""Monitor"", ""Tablet""]",3322.12,{},148178,1,North America +2023-11-30,24230,3111,"[""Tablet"", ""Phone""]",3040.95,{},91059,1,South America +2023-11-27,24231,8176,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4104.93,"{""seasonal"": ""20%""}",180544,1,Asia +2024-09-16,24232,4769,"[""Monitor"", ""Phone""]",4274.89,"{""promo"": ""5%""}",29388,0,Africa +2023-03-26,24233,9621,"[""Headphones"", ""Charger""]",2537.88,{},248050,1,North America +2023-11-16,24234,977,"[""Monitor""]",3329.49,{},167973,1,Europe +2023-01-04,24235,4290,"[""Monitor"", ""Headphones""]",1483.38,{},39612,0,Europe +2024-08-30,24236,3088,"[""Keyboard"", ""Phone""]",3466.04,"{""loyalty"": ""24%""}",35952,0,Africa +2023-06-01,24237,9114,"[""Tablet"", ""Monitor""]",1851.64,{},92759,1,Africa +2024-01-07,24238,7478,"[""Phone"", ""Wireless Mouse""]",180.77,"{""promo"": ""7%""}",264743,0,Europe +2024-10-24,24239,9031,"[""Laptop""]",3034.84,"{""loyalty"": ""5%""}",254184,0,Asia +2024-08-18,24240,9055,"[""Phone"", ""Headphones"", ""Charger""]",1533.07,{},70808,1,North America +2024-09-01,24241,1710,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1973.08,{},132619,1,Africa +2024-07-06,24242,7566,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",816.25,"{""promo"": ""18%""}",129392,1,Africa +2023-07-02,24243,5236,"[""Keyboard""]",2832.02,"{""loyalty"": ""28%""}",39967,0,North America +2023-08-24,24244,6099,"[""Keyboard"", ""Tablet"", ""Monitor""]",1292.66,"{""loyalty"": ""14%""}",223830,1,Africa +2024-04-02,24245,7560,"[""Phone"", ""Monitor"", ""Keyboard""]",3751.53,{},10529,1,South America +2024-03-20,24246,7221,"[""Keyboard""]",172.8,{},86258,1,North America +2024-11-14,24247,9182,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1698.37,{},280627,0,Asia +2024-03-26,24248,5987,"[""Laptop"", ""Keyboard""]",425.96,{},63281,0,Europe +2024-05-12,24249,3793,"[""Phone""]",4218.84,{},176604,0,Europe +2023-01-15,24250,6261,"[""Wireless Mouse"", ""Laptop""]",1371.34,{},57113,1,Asia +2023-07-05,24251,8199,"[""Laptop"", ""Headphones""]",4100.31,{},7806,0,North America +2023-07-13,24252,4540,"[""Headphones"", ""Tablet""]",1602.86,{},182583,0,Asia +2023-06-18,24253,8867,"[""Headphones""]",1838.62,{},266990,0,North America +2024-08-23,24254,9271,"[""Keyboard"", ""Phone"", ""Monitor""]",3513.67,{},215197,1,North America +2024-05-15,24255,7467,"[""Monitor"", ""Keyboard""]",1933.61,{},242979,1,South America +2024-08-11,24256,2898,"[""Tablet""]",3779.81,{},166479,1,Asia +2024-07-16,24257,5975,"[""Charger"", ""Headphones"", ""Laptop""]",3434.64,"{"""": ""29%""}",186683,1,South America +2024-09-18,24258,1867,"[""Monitor"", ""Laptop"", ""Phone""]",1955.27,"{""loyalty"": ""26%""}",137140,0,South America +2024-08-22,24259,5863,"[""Tablet"", ""Phone""]",278.13,"{""promo"": ""10%""}",184942,1,South America +2023-04-19,24260,4070,"[""Charger"", ""Monitor""]",3859.8,"{""promo"": ""20%""}",272878,0,Asia +2024-05-12,24261,5594,"[""Phone""]",2775.98,"{"""": ""7%""}",239482,1,South America +2024-08-28,24262,7406,"[""Monitor"", ""Laptop""]",2220.63,{},6451,1,Asia +2023-01-08,24263,417,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",489.19,{},235622,1,South America +2024-09-20,24264,5491,"[""Charger"", ""Laptop""]",2078.61,{},5775,1,Asia +2024-09-23,24265,2593,"[""Tablet"", ""Phone"", ""Charger""]",3045.33,"{""promo"": ""24%""}",76465,1,Asia +2024-06-04,24266,8356,"[""Monitor"", ""Headphones"", ""Tablet""]",1395.34,"{""promo"": ""13%""}",262567,0,Africa +2023-03-25,24267,251,"[""Phone"", ""Laptop""]",2478.32,"{""loyalty"": ""23%""}",267230,1,Europe +2024-05-31,24268,6224,"[""Monitor"", ""Headphones""]",480.4,"{""seasonal"": ""13%""}",68618,1,Asia +2023-03-31,24269,4652,"[""Phone"", ""Laptop"", ""Monitor""]",4249.83,{},14699,1,North America +2024-09-19,24270,4318,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",445.39,{},236252,0,Europe +2024-07-31,24271,5363,"[""Monitor""]",3860.13,"{""promo"": ""30%""}",284022,0,South America +2023-10-02,24272,4756,"[""Laptop""]",848.48,{},41716,0,Africa +2024-03-03,24273,7821,"[""Phone"", ""Charger""]",2738.11,"{""loyalty"": ""25%""}",17472,0,South America +2023-02-02,24274,2029,"[""Phone"", ""Tablet"", ""Monitor""]",3259.62,{},45351,1,Africa +2024-08-25,24275,7162,"[""Tablet""]",3398.06,{},194691,0,Europe +2024-11-28,24276,7311,"[""Phone"", ""Monitor""]",3574.97,{},213826,0,Asia +2023-07-27,24277,6744,"[""Keyboard"", ""Phone""]",1970.57,"{""promo"": ""11%""}",198880,0,South America +2024-08-06,24278,3755,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2944.76,"{"""": ""30%""}",60845,1,Europe +2023-05-18,24279,3185,"[""Charger"", ""Tablet""]",877.11,{},246434,1,South America +2024-07-09,24280,4261,"[""Phone"", ""Monitor"", ""Laptop""]",4263.1,{},253489,1,Europe +2024-01-17,24281,8591,"[""Keyboard""]",1894.66,{},128319,0,Europe +2023-09-22,24282,3846,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1673.6,{},176270,1,Africa +2024-01-18,24283,8897,"[""Tablet"", ""Keyboard""]",98.12,{},229890,1,South America +2023-01-17,24284,7679,"[""Wireless Mouse"", ""Monitor""]",1947.48,"{""promo"": ""22%""}",83001,0,Europe +2023-08-16,24285,5890,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1994.7,{},138159,0,North America +2024-01-14,24286,7756,"[""Wireless Mouse"", ""Headphones""]",214.18,"{""loyalty"": ""26%""}",224813,1,North America +2024-08-28,24287,837,"[""Keyboard""]",343.22,{},130192,1,Asia +2024-12-17,24288,7792,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2981.52,{},124154,1,Europe +2024-03-13,24289,2068,"[""Keyboard"", ""Charger""]",2711.2,"{""promo"": ""26%""}",54233,1,South America +2024-10-22,24290,7802,"[""Wireless Mouse"", ""Monitor""]",4035.15,"{""promo"": ""18%""}",67785,1,Africa +2024-05-10,24291,9203,"[""Headphones"", ""Monitor"", ""Phone""]",1698.14,"{""promo"": ""23%""}",173382,1,South America +2023-08-20,24292,2416,"[""Monitor"", ""Keyboard""]",4089.4,"{"""": ""13%""}",176277,0,Africa +2023-02-03,24293,5925,"[""Tablet"", ""Headphones"", ""Monitor""]",4777.44,"{""seasonal"": ""21%""}",149224,1,North America +2023-09-26,24294,4875,"[""Wireless Mouse""]",4406.86,"{"""": ""23%""}",62889,0,North America +2023-01-01,24295,6497,"[""Keyboard"", ""Monitor""]",3938.31,{},122624,0,North America +2024-02-15,24296,6855,"[""Laptop"", ""Tablet""]",4280.21,"{""loyalty"": ""16%""}",126785,0,Asia +2024-08-20,24297,2941,"[""Tablet"", ""Charger""]",874.13,"{"""": ""26%""}",32031,1,North America +2024-06-24,24298,597,"[""Monitor"", ""Laptop"", ""Tablet""]",555.63,{},116387,1,Asia +2023-01-26,24299,8321,"[""Laptop""]",679.73,"{"""": ""30%""}",150663,0,South America +2024-06-29,24300,4593,"[""Laptop""]",353.5,{},186204,1,South America +2024-10-13,24301,4165,"[""Tablet"", ""Charger""]",1973.44,{},244586,1,Europe +2023-03-17,24302,5453,"[""Wireless Mouse"", ""Laptop""]",3759.79,{},198851,1,Asia +2024-11-24,24303,6525,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4398.13,"{""seasonal"": ""10%""}",291714,0,Asia +2023-07-24,24304,9226,"[""Charger"", ""Monitor"", ""Laptop""]",2928.37,"{""loyalty"": ""13%""}",286982,1,Asia +2023-10-13,24305,9598,"[""Wireless Mouse"", ""Monitor""]",4409.61,{},79021,1,Asia +2024-07-29,24306,8414,"[""Charger""]",1349.94,"{""promo"": ""18%""}",159911,0,Asia +2024-08-04,24307,8943,"[""Charger"", ""Monitor""]",279.38,{},206772,0,South America +2023-02-23,24308,9145,"[""Laptop"", ""Charger"", ""Headphones""]",3554.81,"{""loyalty"": ""11%""}",123922,1,North America +2024-02-06,24309,7781,"[""Charger""]",4533.12,"{""promo"": ""16%""}",121160,1,Asia +2024-01-03,24310,3271,"[""Charger"", ""Phone"", ""Laptop""]",2761.56,{},45661,1,Africa +2024-01-18,24311,9061,"[""Headphones"", ""Monitor"", ""Charger""]",4876.45,"{""loyalty"": ""23%""}",221068,0,Asia +2023-08-18,24312,6510,"[""Monitor""]",2518.93,"{""loyalty"": ""30%""}",218337,1,Africa +2023-04-23,24313,4349,"[""Headphones"", ""Charger""]",3427.78,{},234142,1,Europe +2023-09-03,24314,5125,"[""Monitor"", ""Wireless Mouse""]",684.59,{},52683,1,South America +2023-11-23,24315,1980,"[""Wireless Mouse""]",1165.54,"{"""": ""9%""}",30033,1,South America +2023-04-30,24316,3262,"[""Monitor""]",3636.47,{},78583,1,North America +2023-08-16,24317,6306,"[""Tablet""]",4762.96,"{""seasonal"": ""22%""}",78528,0,South America +2023-12-29,24318,853,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",257.51,{},112956,1,South America +2024-02-07,24319,485,"[""Tablet""]",4602.18,{},42952,1,South America +2023-10-27,24320,1431,"[""Headphones"", ""Tablet"", ""Monitor""]",4818.68,{},221666,1,Asia +2023-03-13,24321,9865,"[""Monitor"", ""Charger""]",550.12,{},40345,0,South America +2024-01-06,24322,8401,"[""Headphones""]",3204.99,{},156961,0,Asia +2023-04-07,24323,5996,"[""Charger""]",2308.72,{},263558,1,Africa +2024-01-08,24324,2298,"[""Phone""]",4160.77,"{""promo"": ""7%""}",78053,1,South America +2023-12-16,24325,5252,"[""Headphones"", ""Keyboard""]",2638.66,"{""loyalty"": ""15%""}",133881,1,Asia +2024-09-03,24326,76,"[""Tablet"", ""Monitor""]",1066.1,{},88814,0,Europe +2024-07-18,24327,1327,"[""Keyboard"", ""Tablet"", ""Laptop""]",2959.96,{},276050,1,South America +2023-08-26,24328,9697,"[""Charger"", ""Tablet"", ""Phone""]",4760.22,{},276609,0,Europe +2023-06-18,24329,8507,"[""Monitor"", ""Charger"", ""Tablet""]",2722.42,{},51976,0,Asia +2023-03-30,24330,2462,"[""Phone"", ""Tablet""]",3627.03,{},297169,0,Europe +2024-06-02,24331,6876,"[""Monitor"", ""Charger"", ""Laptop""]",890.11,{},256164,0,South America +2023-09-30,24332,4600,"[""Phone"", ""Keyboard"", ""Monitor""]",4390.76,"{"""": ""7%""}",45082,0,South America +2023-07-20,24333,4296,"[""Laptop"", ""Headphones"", ""Tablet""]",4192.91,"{""seasonal"": ""12%""}",209532,1,Asia +2023-12-23,24334,1426,"[""Headphones"", ""Tablet""]",2233.42,{},92130,1,South America +2023-12-12,24335,9093,"[""Wireless Mouse"", ""Charger""]",2678.48,"{""seasonal"": ""19%""}",127514,1,Asia +2023-08-02,24336,5691,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",649.14,"{""seasonal"": ""30%""}",157802,1,Europe +2024-08-23,24337,2026,"[""Headphones""]",594.66,{},103397,0,Europe +2023-05-09,24338,9115,"[""Wireless Mouse"", ""Laptop""]",1833.33,"{""seasonal"": ""6%""}",46205,1,North America +2023-09-20,24339,5855,"[""Keyboard""]",2353.81,{},150652,0,South America +2023-01-12,24340,4452,"[""Phone"", ""Laptop"", ""Headphones""]",3218.79,{},45890,1,Europe +2024-02-15,24341,7852,"[""Headphones""]",3653.38,"{"""": ""20%""}",77199,1,South America +2024-08-02,24342,5175,"[""Monitor"", ""Phone""]",1572.43,"{""seasonal"": ""23%""}",17603,1,Europe +2024-06-18,24343,2304,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3382.42,{},167071,0,Asia +2023-04-19,24344,6689,"[""Keyboard""]",4951.22,"{"""": ""29%""}",99694,0,North America +2024-04-28,24345,601,"[""Laptop"", ""Phone""]",3912.26,"{""promo"": ""25%""}",128504,1,Europe +2023-11-13,24346,736,"[""Monitor""]",3102.29,{},194749,0,South America +2023-11-15,24347,4563,"[""Wireless Mouse""]",2023.53,"{"""": ""23%""}",136936,1,Europe +2024-10-02,24348,6730,"[""Charger""]",3519.65,"{""loyalty"": ""24%""}",119150,0,North America +2023-11-28,24349,1685,"[""Charger""]",2330.85,{},95787,0,Asia +2024-12-30,24350,746,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",479.13,{},78607,1,North America +2024-01-05,24351,7378,"[""Monitor""]",2470.79,{},241204,0,North America +2024-12-28,24352,9338,"[""Monitor"", ""Headphones""]",1508.1,"{""promo"": ""22%""}",241738,0,North America +2023-11-19,24353,2303,"[""Wireless Mouse"", ""Headphones""]",2398.01,"{""promo"": ""10%""}",180922,0,Europe +2024-10-17,24354,2347,"[""Keyboard"", ""Monitor"", ""Tablet""]",2902.14,{},45069,0,South America +2024-05-15,24355,5830,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2141.79,{},154353,1,Africa +2024-09-03,24356,9218,"[""Headphones"", ""Monitor""]",2567.96,"{""seasonal"": ""6%""}",257191,1,Africa +2023-03-01,24357,7759,"[""Tablet"", ""Keyboard""]",3677.01,"{""promo"": ""23%""}",101129,0,Europe +2024-08-28,24358,4144,"[""Charger""]",4716.27,"{""loyalty"": ""10%""}",284526,1,Europe +2024-11-07,24359,4837,"[""Phone""]",4840.73,{},273463,1,Asia +2023-02-22,24360,7526,"[""Phone"", ""Headphones""]",1156.24,{},240487,1,South America +2024-09-26,24361,1747,"[""Monitor"", ""Keyboard""]",4557.25,{},19493,1,Asia +2024-01-17,24362,3907,"[""Monitor"", ""Wireless Mouse""]",2270.5,"{""seasonal"": ""11%""}",134866,1,North America +2023-08-31,24363,7288,"[""Tablet"", ""Wireless Mouse""]",157.01,{},159137,0,Africa +2024-12-15,24364,9155,"[""Monitor"", ""Wireless Mouse""]",3761.64,{},176013,1,Europe +2024-07-29,24365,9001,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4903.01,{},180579,1,Africa +2024-10-22,24366,6353,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4386.9,"{""loyalty"": ""20%""}",43372,0,North America +2024-09-01,24367,9610,"[""Monitor""]",1932.35,"{""promo"": ""6%""}",60761,1,Africa +2023-06-29,24368,7632,"[""Headphones"", ""Monitor"", ""Charger""]",2594.07,{},120014,1,South America +2024-09-20,24369,1389,"[""Tablet"", ""Phone""]",860.29,{},118791,1,Africa +2024-10-24,24370,2859,"[""Monitor""]",2326.1,"{""loyalty"": ""5%""}",162786,1,Europe +2024-01-06,24371,1208,"[""Charger""]",4708.76,"{""loyalty"": ""22%""}",66574,0,Asia +2024-04-09,24372,9722,"[""Keyboard"", ""Monitor"", ""Charger""]",1797.35,"{"""": ""11%""}",110995,1,Europe +2023-01-05,24373,8328,"[""Charger"", ""Headphones""]",3402.97,"{""promo"": ""17%""}",226741,1,Africa +2023-01-03,24374,6747,"[""Laptop""]",4968.71,{},138682,1,Africa +2023-09-17,24375,8297,"[""Wireless Mouse""]",4941.15,{},172128,1,Africa +2023-07-06,24376,6895,"[""Monitor""]",4362.89,{},227361,0,Asia +2023-04-27,24377,1316,"[""Charger"", ""Phone"", ""Tablet""]",4044.7,"{"""": ""7%""}",139693,1,Africa +2024-06-22,24378,9257,"[""Keyboard""]",2188.07,{},231339,1,South America +2024-09-05,24379,7546,"[""Wireless Mouse""]",1739.55,"{"""": ""17%""}",16373,0,South America +2024-11-27,24380,8749,"[""Charger""]",2528.42,"{""seasonal"": ""29%""}",63407,1,Europe +2023-05-10,24381,535,"[""Tablet""]",4063.48,"{""promo"": ""30%""}",229156,1,North America +2023-04-16,24382,2301,"[""Wireless Mouse""]",1173.86,"{"""": ""9%""}",125397,0,Africa +2023-11-04,24383,6623,"[""Keyboard""]",1230.59,"{"""": ""13%""}",289851,1,North America +2024-05-12,24384,4043,"[""Keyboard"", ""Phone""]",642.33,"{""seasonal"": ""10%""}",153982,1,Asia +2024-06-12,24385,7247,"[""Monitor"", ""Laptop"", ""Tablet""]",2224.67,"{""seasonal"": ""23%""}",103285,0,Europe +2024-08-12,24386,3442,"[""Wireless Mouse"", ""Headphones""]",2280.12,"{""loyalty"": ""24%""}",1611,1,Africa +2024-06-19,24387,8884,"[""Tablet""]",4351.66,"{"""": ""10%""}",93738,1,North America +2023-05-25,24388,9556,"[""Charger""]",1919.06,{},223031,1,Europe +2024-03-26,24389,2295,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3915.42,{},123421,1,Europe +2024-07-12,24390,3325,"[""Phone""]",256.9,"{""loyalty"": ""16%""}",34394,0,South America +2024-01-31,24391,2854,"[""Charger"", ""Phone"", ""Keyboard""]",4754.35,"{""loyalty"": ""7%""}",107846,1,Europe +2023-12-26,24392,8232,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2434.76,"{""promo"": ""13%""}",50352,0,Europe +2024-10-20,24393,8423,"[""Phone"", ""Laptop""]",4601.09,{},154089,0,North America +2023-04-17,24394,9447,"[""Phone"", ""Tablet""]",2931.85,{},112697,0,Asia +2024-05-25,24395,2324,"[""Charger"", ""Laptop"", ""Headphones""]",1284.81,"{""promo"": ""23%""}",141872,1,South America +2024-12-16,24396,1329,"[""Headphones"", ""Charger""]",2932.3,{},134906,1,South America +2023-01-14,24397,9901,"[""Wireless Mouse""]",93.16,"{""loyalty"": ""7%""}",227245,0,Africa +2023-06-05,24398,3750,"[""Charger"", ""Headphones"", ""Phone""]",1818.01,"{""seasonal"": ""21%""}",63731,1,Asia +2023-01-18,24399,3949,"[""Laptop"", ""Charger"", ""Monitor""]",1027.91,"{""promo"": ""16%""}",193262,0,North America +2024-08-24,24400,1084,"[""Charger"", ""Headphones""]",3674.67,"{""seasonal"": ""25%""}",5158,1,Africa +2024-07-17,24401,3729,"[""Phone"", ""Keyboard""]",4767.58,"{"""": ""8%""}",9753,0,South America +2023-02-25,24402,391,"[""Keyboard""]",4070.18,{},11785,0,South America +2023-10-06,24403,803,"[""Monitor""]",2978.28,{},272018,0,South America +2023-05-27,24404,2147,"[""Headphones""]",1366.14,{},104525,1,North America +2023-03-30,24405,8058,"[""Phone""]",3180.22,{},221173,1,Asia +2024-07-29,24406,3366,"[""Wireless Mouse"", ""Tablet""]",2002.05,"{"""": ""24%""}",182838,1,Europe +2023-07-19,24407,8845,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2534.82,{},203090,1,Europe +2024-11-17,24408,9857,"[""Charger"", ""Tablet"", ""Monitor""]",3836.1,{},280399,0,Africa +2024-07-18,24409,2905,"[""Wireless Mouse"", ""Laptop""]",2316.01,{},192677,1,South America +2024-08-15,24410,7974,"[""Charger"", ""Laptop""]",2758.68,{},191120,1,South America +2023-12-14,24411,7223,"[""Keyboard"", ""Phone""]",2946.38,{},64332,1,North America +2023-07-25,24412,2826,"[""Wireless Mouse"", ""Laptop""]",1059.71,"{""seasonal"": ""19%""}",190888,1,Europe +2024-10-05,24413,9306,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",998.33,{},228915,0,Asia +2024-12-15,24414,1694,"[""Charger"", ""Tablet""]",2986.95,"{"""": ""27%""}",19591,0,Africa +2024-02-03,24415,5065,"[""Monitor""]",4738.16,{},60550,0,North America +2023-10-04,24416,1820,"[""Monitor"", ""Phone"", ""Tablet""]",341.56,{},49811,1,Europe +2023-08-22,24417,8380,"[""Charger"", ""Laptop"", ""Monitor""]",179.18,"{"""": ""18%""}",39762,1,South America +2024-08-11,24418,2217,"[""Phone"", ""Tablet""]",2860.02,"{""seasonal"": ""18%""}",7143,0,Europe +2023-04-19,24419,3156,"[""Laptop"", ""Charger""]",4071.65,{},186539,0,Asia +2023-05-08,24420,7193,"[""Phone"", ""Laptop""]",624.35,{},91132,1,North America +2023-05-23,24421,7682,"[""Monitor"", ""Charger""]",269.41,{},24542,0,Europe +2024-03-13,24422,8248,"[""Phone""]",1993.9,"{"""": ""26%""}",187605,0,North America +2023-11-14,24423,2708,"[""Laptop""]",3488.62,{},281605,0,Europe +2024-09-08,24424,9803,"[""Tablet"", ""Phone""]",2303.04,{},180891,0,North America +2023-11-30,24425,9287,"[""Charger"", ""Headphones""]",520.47,{},158681,1,Asia +2023-01-14,24426,2261,"[""Wireless Mouse"", ""Monitor""]",3274.94,{},247343,1,North America +2023-05-17,24427,5998,"[""Phone"", ""Laptop""]",432.17,{},237377,1,South America +2024-12-20,24428,537,"[""Wireless Mouse""]",1126.67,{},149711,0,North America +2023-10-12,24429,6091,"[""Monitor""]",91.02,{},13792,1,North America +2023-03-18,24430,5369,"[""Tablet""]",2420.0,"{""loyalty"": ""28%""}",23952,1,Africa +2024-04-28,24431,7730,"[""Tablet"", ""Phone"", ""Laptop""]",2658.76,{},100167,0,South America +2024-12-22,24432,2866,"[""Phone"", ""Laptop"", ""Keyboard""]",4726.88,{},236795,1,Asia +2023-09-10,24433,6924,"[""Wireless Mouse""]",1919.22,"{""promo"": ""29%""}",73329,1,South America +2023-08-23,24434,9514,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",815.38,"{""loyalty"": ""12%""}",90617,1,South America +2024-01-20,24435,4974,"[""Keyboard""]",3399.21,"{""promo"": ""5%""}",276927,0,Asia +2024-07-21,24436,2966,"[""Laptop""]",2079.78,{},184053,1,South America +2024-06-04,24437,4069,"[""Charger"", ""Monitor"", ""Keyboard""]",1929.42,"{""seasonal"": ""5%""}",271308,0,Asia +2023-05-23,24438,2295,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3053.61,{},64216,0,Europe +2023-08-15,24439,2713,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4713.14,"{""promo"": ""21%""}",221410,1,Asia +2024-06-16,24440,2843,"[""Tablet"", ""Phone""]",3106.67,"{"""": ""21%""}",25491,1,Africa +2024-02-21,24441,2658,"[""Tablet"", ""Phone"", ""Headphones""]",647.11,{},83484,0,Asia +2023-04-24,24442,7238,"[""Tablet""]",1395.99,"{""loyalty"": ""18%""}",194658,1,South America +2023-10-19,24443,5082,"[""Keyboard"", ""Tablet""]",2854.69,"{""seasonal"": ""23%""}",104556,1,North America +2024-03-03,24444,5995,"[""Keyboard"", ""Monitor""]",3234.33,{},209220,1,South America +2024-12-25,24445,4886,"[""Laptop"", ""Charger""]",4114.62,"{""loyalty"": ""7%""}",164616,0,South America +2023-06-13,24446,6926,"[""Tablet"", ""Headphones"", ""Laptop""]",3922.69,"{""seasonal"": ""17%""}",114010,0,Europe +2023-10-28,24447,9905,"[""Keyboard"", ""Wireless Mouse""]",329.31,"{""promo"": ""20%""}",245922,0,Europe +2023-02-09,24448,189,"[""Phone""]",2417.27,{},143426,0,North America +2024-05-31,24449,6965,"[""Headphones"", ""Phone"", ""Keyboard""]",1242.82,{},154643,1,Africa +2023-07-03,24450,4226,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2089.87,{},51706,0,Africa +2023-05-16,24451,322,"[""Keyboard"", ""Monitor"", ""Laptop""]",265.82,"{"""": ""23%""}",103771,1,Europe +2023-12-22,24452,5454,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2076.72,"{"""": ""11%""}",116470,1,North America +2024-09-13,24453,7300,"[""Keyboard"", ""Headphones"", ""Charger""]",2328.62,"{""seasonal"": ""9%""}",299812,1,South America +2024-12-09,24454,9293,"[""Phone"", ""Monitor""]",3548.81,{},63811,1,North America +2024-07-27,24455,969,"[""Charger"", ""Headphones""]",3468.58,{},109380,0,North America +2023-06-29,24456,9862,"[""Laptop""]",1378.7,"{""seasonal"": ""7%""}",94236,1,Africa +2023-11-14,24457,3371,"[""Charger"", ""Phone""]",4398.25,"{""promo"": ""16%""}",281340,1,Europe +2023-06-03,24458,789,"[""Monitor""]",1198.63,"{""seasonal"": ""20%""}",206211,0,South America +2024-04-27,24459,3535,"[""Laptop"", ""Monitor""]",2283.93,"{""loyalty"": ""23%""}",43534,1,Asia +2024-09-06,24460,8320,"[""Laptop""]",386.04,{},86390,0,Africa +2023-12-31,24461,4977,"[""Phone""]",1521.13,"{""promo"": ""12%""}",76832,0,Asia +2023-09-09,24462,9910,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",949.23,{},235082,1,Europe +2024-12-05,24463,3901,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",826.38,"{""loyalty"": ""6%""}",125839,1,Europe +2024-10-06,24464,4608,"[""Phone""]",3133.86,"{""seasonal"": ""28%""}",108581,1,Africa +2024-08-24,24465,8967,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",976.28,{},67497,0,Africa +2024-11-20,24466,4865,"[""Phone"", ""Tablet""]",475.73,{},85889,0,Europe +2023-07-24,24467,3001,"[""Headphones"", ""Phone""]",3590.85,{},64684,0,Africa +2024-06-17,24468,5273,"[""Monitor"", ""Laptop"", ""Tablet""]",551.22,{},1109,1,South America +2024-03-26,24469,7306,"[""Keyboard"", ""Wireless Mouse""]",1808.42,"{""promo"": ""17%""}",242168,0,Africa +2023-10-20,24470,9524,"[""Laptop"", ""Monitor"", ""Headphones""]",4317.31,{},122311,1,North America +2024-08-11,24471,7408,"[""Monitor"", ""Keyboard""]",492.98,{},259204,1,South America +2023-02-01,24472,7952,"[""Charger"", ""Laptop"", ""Tablet""]",3414.14,"{""seasonal"": ""18%""}",139257,1,Asia +2023-09-30,24473,6993,"[""Tablet""]",331.92,{},133115,0,South America +2023-05-25,24474,8126,"[""Headphones"", ""Charger"", ""Tablet""]",1875.66,{},158245,0,Africa +2024-01-04,24475,8499,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",109.57,"{""seasonal"": ""23%""}",53511,1,North America +2024-05-26,24476,904,"[""Charger""]",4445.72,{},233790,0,Asia +2023-01-10,24477,946,"[""Charger"", ""Wireless Mouse""]",2333.15,"{"""": ""7%""}",265965,1,Europe +2024-05-04,24478,1437,"[""Charger"", ""Laptop""]",1689.16,"{""promo"": ""5%""}",243314,1,Asia +2023-01-08,24479,563,"[""Monitor""]",2353.91,"{""loyalty"": ""21%""}",187401,1,Africa +2023-08-07,24480,2640,"[""Laptop"", ""Phone""]",3885.07,{},102450,1,Europe +2023-11-04,24481,5379,"[""Keyboard""]",3652.32,"{"""": ""7%""}",279637,1,Asia +2024-12-04,24482,2599,"[""Laptop"", ""Charger"", ""Headphones""]",4125.24,"{"""": ""21%""}",155420,0,Africa +2024-12-23,24483,4895,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2742.11,{},45490,0,Europe +2023-05-04,24484,5871,"[""Laptop""]",222.97,{},22326,0,Europe +2024-04-29,24485,4569,"[""Tablet"", ""Laptop"", ""Keyboard""]",3334.77,"{"""": ""20%""}",250275,0,Asia +2023-12-03,24486,4963,"[""Keyboard"", ""Tablet""]",3143.14,{},133558,1,Asia +2023-02-08,24487,4879,"[""Phone""]",2041.04,{},216099,1,Africa +2024-03-17,24488,4713,"[""Keyboard"", ""Tablet"", ""Headphones""]",3708.01,"{""promo"": ""6%""}",268839,0,South America +2023-08-05,24489,7129,"[""Wireless Mouse"", ""Keyboard""]",3221.25,"{""promo"": ""11%""}",19911,1,Africa +2023-01-20,24490,9059,"[""Keyboard"", ""Headphones"", ""Tablet""]",3426.18,"{""loyalty"": ""26%""}",13392,0,North America +2023-12-17,24491,2865,"[""Charger""]",3223.1,"{""seasonal"": ""20%""}",126219,0,Africa +2024-12-03,24492,6842,"[""Laptop""]",3948.45,"{""seasonal"": ""15%""}",293410,0,Africa +2024-05-01,24493,996,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3899.4,{},109215,1,North America +2024-05-07,24494,2764,"[""Monitor"", ""Charger"", ""Laptop""]",1988.5,{},253972,0,Africa +2023-06-25,24495,5095,"[""Tablet"", ""Monitor"", ""Laptop""]",58.1,"{""seasonal"": ""26%""}",146662,0,North America +2024-08-15,24496,3690,"[""Headphones""]",3833.61,{},141993,1,Asia +2023-01-07,24497,8065,"[""Tablet""]",4233.65,"{""seasonal"": ""21%""}",254994,0,Asia +2023-11-24,24498,8641,"[""Charger"", ""Tablet""]",3156.89,"{""seasonal"": ""7%""}",284479,1,Europe +2024-12-05,24499,4245,"[""Laptop"", ""Tablet""]",1443.44,"{"""": ""13%""}",203557,1,Europe +2023-02-09,24500,5311,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4834.82,"{""loyalty"": ""17%""}",23262,1,Europe +2023-11-11,24501,1562,"[""Charger""]",3070.46,"{""promo"": ""8%""}",155247,1,North America +2023-02-09,24502,2189,"[""Monitor"", ""Headphones""]",3438.21,"{""seasonal"": ""8%""}",172826,1,North America +2023-04-20,24503,9314,"[""Laptop"", ""Wireless Mouse""]",2040.98,{},262484,1,Europe +2023-08-19,24504,5442,"[""Charger""]",4248.04,"{""promo"": ""9%""}",84874,0,North America +2023-03-12,24505,4226,"[""Tablet"", ""Headphones""]",2427.64,{},179764,0,Europe +2024-11-08,24506,5128,"[""Tablet"", ""Phone""]",3822.21,"{""loyalty"": ""10%""}",284611,0,Europe +2023-12-12,24507,2860,"[""Tablet""]",4453.0,{},164044,1,Europe +2024-06-05,24508,583,"[""Headphones""]",1619.15,"{""seasonal"": ""29%""}",266384,1,Asia +2024-04-26,24509,8950,"[""Charger""]",1562.77,{},180876,1,Europe +2023-11-26,24510,3071,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2254.71,{},266605,1,South America +2024-09-18,24511,210,"[""Laptop"", ""Tablet""]",3957.52,"{""seasonal"": ""10%""}",25184,1,North America +2024-07-30,24512,8349,"[""Headphones""]",3515.93,"{""promo"": ""10%""}",273285,1,South America +2024-08-24,24513,214,"[""Monitor"", ""Keyboard"", ""Headphones""]",2465.09,{},56958,1,Europe +2023-10-08,24514,681,"[""Tablet""]",2919.29,{},283927,1,South America +2023-05-19,24515,6231,"[""Monitor"", ""Tablet""]",4308.56,"{""promo"": ""15%""}",201727,1,South America +2024-04-22,24516,5200,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",468.61,{},22094,0,Europe +2024-08-19,24517,8414,"[""Wireless Mouse""]",262.29,"{""seasonal"": ""16%""}",242417,1,North America +2023-03-11,24518,9152,"[""Phone""]",234.53,"{""loyalty"": ""26%""}",49724,0,Africa +2023-12-25,24519,7352,"[""Keyboard"", ""Headphones""]",1360.86,"{""loyalty"": ""7%""}",182001,0,North America +2024-03-18,24520,5438,"[""Tablet""]",3368.02,"{""seasonal"": ""27%""}",170289,0,South America +2024-01-02,24521,5254,"[""Headphones""]",784.87,{},78152,1,South America +2023-01-01,24522,2570,"[""Tablet""]",1850.16,{},128129,1,Africa +2024-03-03,24523,4299,"[""Phone""]",3867.71,{},217064,0,North America +2023-06-12,24524,5709,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4354.32,"{""promo"": ""14%""}",76922,0,North America +2023-01-09,24525,677,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4773.29,{},207468,0,Africa +2024-10-07,24526,3623,"[""Phone"", ""Charger""]",3122.93,"{"""": ""29%""}",294492,1,Africa +2024-11-07,24527,1640,"[""Monitor"", ""Charger""]",1915.86,"{""promo"": ""10%""}",91763,0,South America +2023-08-24,24528,5240,"[""Laptop""]",187.51,{},77509,0,North America +2024-01-07,24529,5060,"[""Monitor"", ""Charger"", ""Laptop""]",3719.51,"{""seasonal"": ""30%""}",269938,1,North America +2023-05-17,24530,3720,"[""Keyboard""]",2881.57,"{""loyalty"": ""23%""}",258042,0,North America +2023-04-24,24531,25,"[""Tablet""]",1020.33,"{""promo"": ""30%""}",88634,0,South America +2023-02-15,24532,4255,"[""Charger"", ""Keyboard"", ""Monitor""]",1740.53,"{""promo"": ""14%""}",60266,0,Asia +2024-04-25,24533,3457,"[""Keyboard""]",2245.62,"{"""": ""9%""}",35754,0,Europe +2023-05-19,24534,9650,"[""Tablet"", ""Laptop""]",2384.7,{},56041,1,Europe +2024-07-28,24535,5486,"[""Laptop"", ""Charger""]",1417.53,{},190017,1,North America +2023-04-26,24536,7966,"[""Headphones"", ""Keyboard""]",1542.66,"{""loyalty"": ""19%""}",194280,1,Africa +2023-02-02,24537,8210,"[""Headphones"", ""Tablet"", ""Laptop""]",4376.89,{},214876,0,Europe +2023-08-02,24538,5455,"[""Laptop"", ""Charger"", ""Tablet""]",2733.38,{},106637,1,Africa +2023-03-27,24539,4463,"[""Monitor""]",2347.76,{},95438,1,Europe +2024-01-17,24540,9619,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3389.88,{},258877,0,North America +2024-09-12,24541,1274,"[""Tablet""]",2275.21,{},276209,1,South America +2024-07-17,24542,4119,"[""Headphones"", ""Charger""]",4765.22,{},69129,0,Asia +2023-07-27,24543,9755,"[""Laptop"", ""Phone"", ""Headphones""]",4657.85,{},115932,1,Africa +2024-07-13,24544,1546,"[""Keyboard""]",1847.49,"{"""": ""12%""}",52924,1,Europe +2023-08-21,24545,1938,"[""Wireless Mouse"", ""Laptop""]",3292.65,"{""promo"": ""9%""}",178251,1,Europe +2024-02-16,24546,7078,"[""Charger""]",4933.29,"{""seasonal"": ""7%""}",5458,0,North America +2023-06-02,24547,1534,"[""Laptop"", ""Tablet""]",766.98,"{""seasonal"": ""22%""}",254063,0,South America +2024-02-21,24548,7985,"[""Headphones"", ""Keyboard""]",1694.82,"{""seasonal"": ""24%""}",238465,0,Europe +2024-06-07,24549,3161,"[""Laptop""]",3295.01,{},205793,1,Europe +2024-10-22,24550,6418,"[""Phone""]",1500.81,{},294935,1,Africa +2023-08-02,24551,4600,"[""Headphones"", ""Laptop"", ""Keyboard""]",4538.94,"{""seasonal"": ""6%""}",189951,0,Africa +2023-03-18,24552,2433,"[""Keyboard""]",972.58,"{""seasonal"": ""5%""}",284992,0,South America +2024-09-20,24553,4073,"[""Charger"", ""Phone"", ""Headphones""]",2688.62,{},24983,1,Asia +2024-01-17,24554,5593,"[""Headphones"", ""Tablet""]",2733.88,{},37084,0,Europe +2024-06-22,24555,3868,"[""Headphones"", ""Monitor"", ""Laptop""]",3117.22,{},126285,1,North America +2023-08-30,24556,3216,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2847.83,"{""seasonal"": ""9%""}",117703,0,Asia +2023-04-15,24557,8469,"[""Phone""]",3180.37,{},231623,0,North America +2023-05-24,24558,3479,"[""Tablet"", ""Wireless Mouse""]",3240.38,"{"""": ""26%""}",215082,1,North America +2024-05-01,24559,7398,"[""Monitor"", ""Headphones""]",4235.52,"{""seasonal"": ""6%""}",69803,0,Africa +2023-03-26,24560,2395,"[""Keyboard""]",4608.28,{},282033,1,South America +2024-02-28,24561,8743,"[""Laptop"", ""Keyboard"", ""Headphones""]",982.98,"{""loyalty"": ""27%""}",134071,1,South America +2023-07-13,24562,1715,"[""Phone"", ""Laptop""]",2365.59,{},120897,1,Europe +2024-09-19,24563,4540,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",910.5,{},76576,1,North America +2024-04-06,24564,8887,"[""Charger"", ""Headphones"", ""Phone""]",3633.41,{},50169,1,South America +2023-01-07,24565,6600,"[""Laptop""]",445.13,"{"""": ""25%""}",75571,1,South America +2023-03-21,24566,2242,"[""Keyboard"", ""Tablet""]",3846.69,"{"""": ""19%""}",209853,1,Europe +2023-04-01,24567,4075,"[""Headphones"", ""Monitor"", ""Phone""]",4378.18,"{"""": ""11%""}",81791,0,South America +2023-04-29,24568,7272,"[""Keyboard"", ""Laptop"", ""Charger""]",1835.71,"{""loyalty"": ""10%""}",186061,1,South America +2023-02-05,24569,1380,"[""Laptop"", ""Tablet"", ""Keyboard""]",4676.12,"{""seasonal"": ""16%""}",248128,0,South America +2023-12-31,24570,9826,"[""Phone"", ""Headphones""]",1542.05,{},222878,1,Africa +2023-03-28,24571,7535,"[""Wireless Mouse"", ""Phone""]",4499.17,{},4986,0,Europe +2023-05-29,24572,1187,"[""Keyboard"", ""Wireless Mouse""]",900.1,"{"""": ""6%""}",116537,0,Africa +2023-03-11,24573,7575,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1304.18,"{""loyalty"": ""6%""}",299160,0,Europe +2024-10-23,24574,9052,"[""Headphones"", ""Phone""]",3878.03,{},84009,1,Europe +2024-01-02,24575,4386,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4677.29,{},188151,0,Europe +2024-12-08,24576,866,"[""Charger"", ""Tablet"", ""Phone""]",1087.09,{},176232,1,Africa +2023-06-08,24577,7531,"[""Charger"", ""Phone""]",2249.89,{},81618,1,Africa +2023-03-27,24578,5328,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3279.7,{},10543,1,South America +2024-10-24,24579,7453,"[""Headphones"", ""Monitor"", ""Keyboard""]",4824.92,"{""promo"": ""7%""}",246951,1,Africa +2023-01-05,24580,7387,"[""Monitor"", ""Phone"", ""Charger""]",3391.42,{},79894,0,South America +2024-08-13,24581,3595,"[""Monitor""]",2224.69,{},147949,0,Asia +2024-11-10,24582,338,"[""Keyboard""]",4755.97,{},71429,1,Asia +2024-03-02,24583,7926,"[""Laptop""]",2313.4,{},111702,0,South America +2023-06-19,24584,2726,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",579.82,{},196457,0,Europe +2023-02-13,24585,4755,"[""Phone"", ""Laptop"", ""Headphones""]",784.42,"{""promo"": ""21%""}",247013,0,Europe +2024-06-15,24586,6979,"[""Keyboard"", ""Laptop""]",4645.84,{},280891,1,North America +2024-09-23,24587,1974,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3248.11,{},206059,1,Europe +2024-11-26,24588,4884,"[""Monitor"", ""Keyboard"", ""Phone""]",3219.12,"{""promo"": ""14%""}",296085,1,Asia +2024-05-09,24589,9094,"[""Tablet"", ""Headphones""]",4613.16,{},49870,1,Europe +2024-08-01,24590,5609,"[""Wireless Mouse""]",3956.51,{},50344,1,Asia +2023-01-01,24591,4888,"[""Keyboard""]",3388.12,"{""loyalty"": ""16%""}",155273,0,North America +2024-03-16,24592,9331,"[""Headphones"", ""Phone""]",3348.0,{},200038,0,South America +2024-05-30,24593,8832,"[""Tablet"", ""Monitor"", ""Keyboard""]",4288.17,{},114356,0,South America +2024-09-01,24594,3517,"[""Headphones"", ""Keyboard""]",4660.92,{},187638,0,Africa +2024-03-30,24595,1401,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2200.82,"{""seasonal"": ""8%""}",278583,1,North America +2024-03-28,24596,9766,"[""Laptop""]",1104.51,"{"""": ""17%""}",129262,1,Asia +2024-05-22,24597,1113,"[""Charger"", ""Headphones"", ""Keyboard""]",2659.41,{},144720,0,North America +2024-05-26,24598,6435,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1232.88,"{"""": ""13%""}",143715,1,North America +2024-12-24,24599,4881,"[""Phone"", ""Charger""]",972.04,"{""seasonal"": ""25%""}",208413,1,North America +2023-10-11,24600,2888,"[""Tablet"", ""Headphones""]",3671.34,{},110974,1,Europe +2023-07-08,24601,3573,"[""Laptop"", ""Headphones"", ""Charger""]",3188.41,{},287555,1,Asia +2024-11-23,24602,400,"[""Tablet"", ""Phone""]",1408.97,{},73461,1,South America +2023-10-05,24603,3638,"[""Laptop"", ""Keyboard""]",1017.47,{},178141,0,Asia +2023-09-16,24604,4629,"[""Wireless Mouse"", ""Keyboard""]",2738.01,{},249066,1,Asia +2024-03-15,24605,1097,"[""Keyboard"", ""Laptop""]",4762.37,"{""loyalty"": ""26%""}",256169,0,North America +2024-02-07,24606,7284,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2834.1,{},224275,0,South America +2023-03-09,24607,1525,"[""Monitor""]",507.05,"{"""": ""9%""}",122360,0,Asia +2024-11-01,24608,3801,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4729.86,{},197292,0,Asia +2024-02-26,24609,6728,"[""Tablet"", ""Laptop"", ""Headphones""]",1826.71,"{""seasonal"": ""29%""}",130541,1,Asia +2023-09-14,24610,6984,"[""Laptop"", ""Keyboard""]",1284.68,{},167323,1,Africa +2024-03-16,24611,3531,"[""Tablet"", ""Phone"", ""Monitor""]",393.54,{},181884,1,South America +2024-03-22,24612,9201,"[""Phone"", ""Laptop""]",1623.21,{},19736,1,Asia +2023-02-13,24613,9934,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4473.39,{},221382,1,Europe +2023-11-16,24614,3692,"[""Monitor""]",855.03,{},125086,0,Africa +2023-05-28,24615,6717,"[""Charger"", ""Monitor"", ""Headphones""]",991.89,{},76019,0,Asia +2024-04-10,24616,6525,"[""Tablet"", ""Headphones""]",3535.24,"{""seasonal"": ""12%""}",188928,0,North America +2023-04-15,24617,6989,"[""Tablet"", ""Headphones""]",3632.59,"{""promo"": ""16%""}",258272,1,North America +2024-08-25,24618,9980,"[""Keyboard""]",160.37,"{"""": ""19%""}",226835,0,South America +2023-04-29,24619,8858,"[""Keyboard""]",1272.68,{},177258,0,North America +2024-06-10,24620,4693,"[""Monitor"", ""Wireless Mouse""]",3733.84,{},172266,0,South America +2024-11-25,24621,9862,"[""Keyboard"", ""Tablet""]",4834.73,{},77558,1,Africa +2023-12-18,24622,446,"[""Tablet"", ""Monitor"", ""Headphones""]",1739.41,"{""promo"": ""20%""}",105282,0,North America +2023-01-25,24623,1173,"[""Phone"", ""Laptop"", ""Keyboard""]",4618.95,"{"""": ""16%""}",48929,1,Asia +2023-07-30,24624,7291,"[""Headphones""]",3372.23,{},107188,1,South America +2023-09-28,24625,481,"[""Charger"", ""Phone""]",2970.13,"{""promo"": ""7%""}",283466,0,North America +2023-10-04,24626,4865,"[""Monitor"", ""Tablet"", ""Laptop""]",355.4,"{""seasonal"": ""9%""}",17993,1,South America +2023-01-21,24627,1414,"[""Charger"", ""Phone""]",567.82,"{""loyalty"": ""10%""}",270311,0,Europe +2024-04-14,24628,4160,"[""Wireless Mouse"", ""Phone""]",3134.59,"{"""": ""28%""}",132566,0,Africa +2023-08-26,24629,4101,"[""Tablet"", ""Charger""]",3616.73,{},261790,0,Europe +2024-10-10,24630,3373,"[""Tablet""]",4746.19,{},120236,1,Asia +2023-12-09,24631,392,"[""Headphones""]",205.28,"{"""": ""13%""}",294644,0,South America +2024-01-26,24632,5331,"[""Phone""]",4090.07,{},260804,1,Africa +2023-10-26,24633,257,"[""Tablet""]",409.88,{},62697,0,South America +2024-09-29,24634,5949,"[""Headphones""]",877.0,{},110896,1,Europe +2024-01-08,24635,4939,"[""Laptop"", ""Monitor"", ""Headphones""]",417.39,"{""seasonal"": ""26%""}",119724,1,Asia +2023-03-01,24636,2194,"[""Tablet"", ""Wireless Mouse""]",4943.54,"{""loyalty"": ""16%""}",4080,1,Africa +2023-12-13,24637,3441,"[""Laptop""]",414.83,"{""seasonal"": ""13%""}",264904,1,Europe +2024-11-08,24638,6577,"[""Tablet"", ""Wireless Mouse""]",2055.9,"{""promo"": ""16%""}",194577,1,Europe +2024-11-09,24639,8091,"[""Wireless Mouse""]",4080.17,"{""loyalty"": ""26%""}",123893,1,South America +2023-05-14,24640,7942,"[""Monitor"", ""Wireless Mouse""]",2751.6,{},168804,1,Africa +2023-09-26,24641,9976,"[""Headphones"", ""Laptop"", ""Charger""]",129.2,{},230839,0,Asia +2024-04-14,24642,6551,"[""Tablet"", ""Charger""]",430.01,"{"""": ""16%""}",184249,1,Africa +2024-04-28,24643,6667,"[""Phone"", ""Headphones"", ""Tablet""]",1473.43,"{"""": ""17%""}",201945,1,South America +2024-10-15,24644,932,"[""Monitor"", ""Laptop""]",2801.78,{},185076,1,Europe +2023-08-08,24645,1713,"[""Laptop""]",1386.5,"{""promo"": ""12%""}",285436,1,Asia +2024-02-24,24646,5007,"[""Monitor"", ""Charger""]",3961.84,"{""seasonal"": ""10%""}",105222,0,South America +2023-06-28,24647,752,"[""Monitor""]",4263.67,{},44424,1,Asia +2024-02-06,24648,5251,"[""Wireless Mouse""]",3913.68,{},15192,1,South America +2024-10-07,24649,3326,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1128.05,"{""loyalty"": ""16%""}",154767,0,Asia +2023-05-11,24650,7393,"[""Wireless Mouse"", ""Headphones""]",3326.88,"{""loyalty"": ""13%""}",86527,0,South America +2024-08-06,24651,9033,"[""Laptop"", ""Headphones""]",794.96,{},266707,1,South America +2023-11-24,24652,4667,"[""Tablet"", ""Wireless Mouse""]",3812.08,{},25252,1,Europe +2024-06-07,24653,5373,"[""Tablet"", ""Headphones"", ""Laptop""]",4653.02,"{""promo"": ""8%""}",176709,0,Europe +2023-05-22,24654,593,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",426.84,{},256157,0,South America +2023-05-14,24655,4783,"[""Keyboard"", ""Laptop"", ""Headphones""]",3576.26,"{""seasonal"": ""13%""}",296103,1,Europe +2023-01-02,24656,7641,"[""Wireless Mouse"", ""Headphones""]",4803.79,"{"""": ""25%""}",94290,1,Africa +2023-04-03,24657,9853,"[""Headphones"", ""Keyboard""]",4551.34,"{"""": ""25%""}",185583,1,Europe +2024-10-28,24658,8017,"[""Tablet"", ""Monitor"", ""Keyboard""]",2616.16,"{""loyalty"": ""12%""}",265609,0,South America +2023-06-29,24659,6791,"[""Tablet""]",556.14,{},182518,1,North America +2024-02-24,24660,7953,"[""Wireless Mouse""]",1207.17,"{""loyalty"": ""7%""}",25009,1,Europe +2024-07-14,24661,5646,"[""Keyboard"", ""Charger""]",4046.61,{},238663,1,North America +2024-01-04,24662,5738,"[""Phone"", ""Charger""]",3790.72,{},294213,0,South America +2023-10-11,24663,8837,"[""Keyboard"", ""Wireless Mouse""]",2550.44,"{""seasonal"": ""9%""}",266721,1,Africa +2024-02-04,24664,7015,"[""Monitor"", ""Laptop"", ""Headphones""]",3346.23,{},191858,1,Europe +2024-12-22,24665,4919,"[""Keyboard"", ""Monitor""]",3936.28,{},154101,0,Asia +2024-10-13,24666,1779,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2466.86,"{""loyalty"": ""16%""}",175945,1,Africa +2023-05-10,24667,5817,"[""Headphones"", ""Tablet"", ""Keyboard""]",2814.25,{},26341,0,Asia +2023-01-21,24668,7630,"[""Wireless Mouse"", ""Headphones""]",1381.81,{},19235,1,Africa +2023-10-30,24669,6818,"[""Headphones"", ""Wireless Mouse""]",3791.46,"{"""": ""16%""}",182227,0,South America +2024-12-26,24670,5884,"[""Headphones"", ""Charger""]",970.93,{},10839,0,Europe +2024-12-13,24671,6314,"[""Laptop"", ""Monitor"", ""Keyboard""]",4507.93,{},174698,0,Europe +2023-05-17,24672,5460,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2527.88,"{""seasonal"": ""16%""}",227048,1,South America +2023-04-28,24673,5909,"[""Keyboard"", ""Headphones""]",4977.08,"{"""": ""28%""}",224014,1,South America +2023-02-05,24674,6803,"[""Charger"", ""Tablet""]",801.79,{},131992,1,South America +2023-06-02,24675,7647,"[""Wireless Mouse"", ""Keyboard""]",3500.05,"{""promo"": ""30%""}",225451,0,Europe +2024-01-03,24676,9493,"[""Charger"", ""Phone""]",4983.57,{},21771,1,South America +2023-05-03,24677,5188,"[""Wireless Mouse""]",4216.75,"{""promo"": ""21%""}",244534,1,Europe +2023-01-24,24678,1802,"[""Laptop"", ""Charger"", ""Headphones""]",4492.71,"{"""": ""30%""}",65081,1,Africa +2023-06-30,24679,9322,"[""Wireless Mouse""]",721.65,"{""loyalty"": ""8%""}",228312,1,South America +2024-06-10,24680,1280,"[""Wireless Mouse""]",4655.15,"{""promo"": ""15%""}",190607,1,North America +2023-02-13,24681,7026,"[""Headphones"", ""Tablet"", ""Phone""]",4205.98,{},208999,0,Africa +2023-12-06,24682,1475,"[""Monitor"", ""Wireless Mouse""]",4033.67,{},204182,0,North America +2024-08-10,24683,6895,"[""Headphones""]",2573.81,"{""loyalty"": ""27%""}",119273,0,Africa +2024-03-21,24684,1570,"[""Laptop"", ""Monitor"", ""Tablet""]",3630.04,"{"""": ""10%""}",245967,0,South America +2024-12-07,24685,5333,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2054.76,{},256671,0,South America +2024-01-21,24686,2889,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1963.47,"{"""": ""19%""}",251335,0,Asia +2023-01-01,24687,1762,"[""Wireless Mouse"", ""Laptop""]",4080.92,{},230779,1,South America +2024-08-22,24688,5100,"[""Tablet"", ""Keyboard"", ""Headphones""]",403.99,{},194993,1,South America +2023-10-24,24689,3642,"[""Laptop"", ""Monitor""]",4079.23,{},162082,1,Europe +2024-05-18,24690,5242,"[""Phone"", ""Headphones""]",4452.35,"{"""": ""26%""}",256453,0,South America +2023-05-03,24691,4043,"[""Headphones"", ""Monitor""]",309.51,"{""seasonal"": ""24%""}",288745,0,South America +2023-09-30,24692,1785,"[""Monitor"", ""Headphones"", ""Laptop""]",852.78,{},82556,0,Africa +2024-08-10,24693,16,"[""Headphones""]",4960.19,{},290202,0,Asia +2023-04-24,24694,6235,"[""Phone"", ""Monitor"", ""Headphones""]",2412.27,{},216181,1,Asia +2024-03-07,24695,3597,"[""Laptop"", ""Phone"", ""Monitor""]",2787.1,{},108223,1,Africa +2023-04-26,24696,6574,"[""Headphones"", ""Tablet""]",4065.6,{},29189,0,Europe +2024-02-29,24697,5952,"[""Wireless Mouse""]",3184.74,"{""loyalty"": ""18%""}",113483,0,North America +2024-10-06,24698,5802,"[""Monitor"", ""Phone""]",707.53,{},114406,0,Asia +2023-04-30,24699,1842,"[""Tablet""]",1564.25,"{"""": ""28%""}",2974,1,Asia +2023-02-25,24700,6073,"[""Keyboard"", ""Charger""]",2254.93,"{""loyalty"": ""16%""}",27285,1,South America +2023-05-11,24701,875,"[""Laptop"", ""Monitor""]",1366.69,{},157452,1,Africa +2024-01-28,24702,1114,"[""Monitor"", ""Phone"", ""Keyboard""]",3476.22,{},264561,1,North America +2024-08-23,24703,2891,"[""Keyboard""]",3376.29,{},166175,1,South America +2023-05-22,24704,8314,"[""Laptop"", ""Monitor""]",4199.28,{},64266,1,Africa +2024-01-08,24705,7429,"[""Charger"", ""Laptop"", ""Headphones""]",3670.99,{},72827,1,North America +2023-10-27,24706,7807,"[""Monitor"", ""Headphones""]",4444.54,"{""loyalty"": ""18%""}",164748,0,Asia +2024-06-15,24707,7954,"[""Laptop"", ""Keyboard"", ""Charger""]",4716.65,{},66475,0,Europe +2023-08-25,24708,4789,"[""Charger"", ""Laptop"", ""Keyboard""]",1207.45,"{""seasonal"": ""15%""}",211048,0,South America +2023-11-06,24709,4921,"[""Phone"", ""Keyboard""]",435.79,{},286742,1,Africa +2023-12-05,24710,7433,"[""Wireless Mouse""]",1487.38,{},209777,0,South America +2024-08-12,24711,974,"[""Monitor"", ""Charger""]",393.62,{},208403,0,North America +2023-09-13,24712,6858,"[""Headphones""]",135.72,"{""loyalty"": ""10%""}",98727,0,Africa +2023-06-06,24713,2071,"[""Laptop"", ""Headphones"", ""Keyboard""]",3037.43,{},155870,1,Asia +2023-11-10,24714,4623,"[""Wireless Mouse""]",1267.2,{},258956,0,Africa +2024-07-28,24715,6186,"[""Charger""]",1973.08,"{""seasonal"": ""10%""}",192218,0,Africa +2024-11-05,24716,6924,"[""Wireless Mouse"", ""Tablet""]",3209.02,"{""promo"": ""14%""}",165352,1,North America +2024-11-25,24717,5191,"[""Monitor"", ""Laptop""]",2258.16,{},93786,1,Africa +2023-02-27,24718,1385,"[""Wireless Mouse"", ""Charger""]",676.28,"{"""": ""27%""}",261445,1,North America +2024-04-02,24719,8868,"[""Charger"", ""Headphones""]",4662.59,{},189029,1,Europe +2023-09-18,24720,1190,"[""Headphones"", ""Laptop"", ""Monitor""]",374.89,{},30347,1,South America +2024-03-12,24721,8427,"[""Tablet"", ""Headphones"", ""Monitor""]",2571.8,"{""promo"": ""22%""}",274004,0,North America +2023-12-20,24722,9615,"[""Laptop"", ""Monitor"", ""Phone""]",505.31,{},6872,0,Asia +2024-10-25,24723,5404,"[""Monitor""]",3832.11,{},196781,1,Asia +2024-05-25,24724,2125,"[""Keyboard""]",2044.07,"{"""": ""10%""}",120418,0,Africa +2024-04-17,24725,2169,"[""Tablet""]",4754.14,"{""loyalty"": ""8%""}",74005,0,North America +2024-03-10,24726,2073,"[""Monitor""]",1413.99,{},246700,1,North America +2024-01-31,24727,8124,"[""Charger"", ""Headphones"", ""Tablet""]",2767.28,{},273074,0,Asia +2023-06-04,24728,5645,"[""Keyboard"", ""Laptop""]",2479.26,{},270645,1,Africa +2023-06-12,24729,3660,"[""Laptop"", ""Tablet""]",182.29,{},208256,1,North America +2023-10-12,24730,668,"[""Wireless Mouse""]",55.83,{},189429,0,North America +2024-08-09,24731,5074,"[""Tablet"", ""Charger"", ""Phone""]",448.45,"{""loyalty"": ""25%""}",290888,1,Europe +2023-08-14,24732,8003,"[""Wireless Mouse"", ""Laptop""]",892.02,"{""seasonal"": ""22%""}",176956,1,North America +2024-02-10,24733,7942,"[""Keyboard"", ""Laptop""]",4506.01,"{""seasonal"": ""10%""}",245529,0,Europe +2023-08-25,24734,1429,"[""Wireless Mouse"", ""Headphones""]",3414.04,"{""loyalty"": ""25%""}",12448,0,Europe +2024-05-06,24735,3655,"[""Tablet"", ""Laptop"", ""Phone""]",2244.29,{},257753,1,South America +2023-10-17,24736,2882,"[""Charger"", ""Keyboard""]",107.72,"{""promo"": ""29%""}",113023,1,North America +2023-11-04,24737,102,"[""Tablet"", ""Laptop""]",499.94,{},234139,1,North America +2024-05-07,24738,1093,"[""Headphones"", ""Monitor"", ""Charger""]",2997.29,{},21710,0,Europe +2024-03-30,24739,882,"[""Wireless Mouse""]",4459.52,"{""loyalty"": ""19%""}",57188,0,South America +2023-05-25,24740,3641,"[""Headphones""]",4657.21,"{""promo"": ""26%""}",290298,0,Asia +2024-12-20,24741,5614,"[""Charger""]",3693.87,{},19076,0,North America +2024-03-18,24742,8363,"[""Laptop"", ""Phone"", ""Monitor""]",1174.75,{},162447,1,South America +2023-03-16,24743,6560,"[""Monitor"", ""Keyboard"", ""Headphones""]",880.95,"{""seasonal"": ""28%""}",287384,1,Europe +2023-05-10,24744,7181,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",970.0,{},152843,1,North America +2024-04-06,24745,452,"[""Wireless Mouse"", ""Tablet""]",1165.24,{},299337,0,Europe +2023-11-10,24746,4888,"[""Charger"", ""Headphones"", ""Laptop""]",2488.57,{},138969,1,South America +2024-08-30,24747,6246,"[""Headphones""]",941.82,"{""loyalty"": ""10%""}",232855,0,South America +2024-05-19,24748,4991,"[""Laptop""]",151.73,{},106197,1,Africa +2023-04-02,24749,1854,"[""Headphones"", ""Laptop"", ""Tablet""]",2180.77,{},219560,1,Europe +2024-02-03,24750,5157,"[""Tablet""]",2226.93,"{"""": ""8%""}",259220,0,Asia +2023-05-29,24751,8090,"[""Tablet""]",2773.38,{},143279,0,South America +2024-03-15,24752,290,"[""Keyboard"", ""Phone"", ""Tablet""]",2030.46,"{"""": ""22%""}",60402,1,Europe +2024-07-20,24753,3232,"[""Monitor"", ""Keyboard"", ""Phone""]",1113.98,{},176508,0,Africa +2023-02-06,24754,9,"[""Charger"", ""Keyboard""]",4027.31,"{""seasonal"": ""10%""}",280870,0,Africa +2024-02-25,24755,8201,"[""Monitor"", ""Keyboard""]",4357.16,{},219277,0,South America +2024-12-09,24756,9577,"[""Tablet""]",4471.68,{},166671,0,Asia +2023-11-19,24757,9444,"[""Tablet""]",1254.86,{},62218,1,Africa +2024-02-04,24758,5246,"[""Keyboard"", ""Charger""]",2810.26,{},221580,1,North America +2023-04-21,24759,7417,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2675.32,{},115432,1,Asia +2024-09-29,24760,7463,"[""Headphones"", ""Charger"", ""Monitor""]",3584.28,{},103128,0,Europe +2024-12-30,24761,1566,"[""Keyboard""]",3846.89,{},81802,1,Asia +2024-09-03,24762,1482,"[""Laptop""]",1547.0,"{""seasonal"": ""30%""}",254840,1,Africa +2023-02-20,24763,2106,"[""Keyboard"", ""Charger""]",2253.36,{},64945,1,Europe +2023-11-16,24764,2479,"[""Tablet""]",3863.44,"{"""": ""20%""}",89806,1,North America +2024-06-11,24765,1332,"[""Wireless Mouse"", ""Charger""]",4698.55,"{""seasonal"": ""5%""}",148475,1,Europe +2023-06-12,24766,780,"[""Laptop"", ""Keyboard""]",1854.69,"{""loyalty"": ""18%""}",246684,1,Europe +2023-08-30,24767,1844,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3212.3,"{""loyalty"": ""10%""}",93056,0,Africa +2023-10-06,24768,555,"[""Monitor""]",2696.89,"{""seasonal"": ""23%""}",295910,0,Europe +2023-04-09,24769,2176,"[""Phone""]",4259.9,{},163961,1,Asia +2024-09-12,24770,9922,"[""Wireless Mouse""]",3940.04,{},81634,0,Africa +2024-12-05,24771,3115,"[""Headphones"", ""Phone""]",3006.52,{},248877,0,South America +2023-08-10,24772,651,"[""Monitor"", ""Headphones""]",3663.91,{},69354,0,Africa +2023-04-19,24773,6010,"[""Laptop"", ""Headphones""]",2937.43,"{"""": ""22%""}",261871,1,South America +2023-12-27,24774,1156,"[""Laptop"", ""Monitor"", ""Headphones""]",1503.39,"{""promo"": ""10%""}",2776,1,South America +2023-12-21,24775,3470,"[""Headphones""]",223.27,"{"""": ""22%""}",49633,1,South America +2023-06-05,24776,5339,"[""Phone"", ""Headphones""]",4904.76,"{""promo"": ""19%""}",120944,0,Europe +2023-09-19,24777,8368,"[""Tablet"", ""Keyboard"", ""Phone""]",572.84,"{"""": ""18%""}",120736,1,Asia +2023-10-22,24778,4176,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2662.54,"{""seasonal"": ""11%""}",56955,0,Europe +2023-11-13,24779,7979,"[""Headphones""]",1541.6,"{""seasonal"": ""26%""}",273512,0,North America +2023-12-10,24780,5618,"[""Headphones"", ""Charger"", ""Tablet""]",2990.13,{},203658,1,Africa +2024-08-07,24781,2529,"[""Keyboard""]",2529.62,"{""seasonal"": ""18%""}",54207,1,North America +2024-08-09,24782,155,"[""Keyboard""]",685.82,"{"""": ""10%""}",224748,0,North America +2023-04-20,24783,1949,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3586.03,{},187668,1,Europe +2023-11-12,24784,7571,"[""Monitor"", ""Laptop"", ""Tablet""]",1831.44,{},7416,0,North America +2023-11-22,24785,3073,"[""Laptop""]",3484.36,{},79886,1,Asia +2024-10-30,24786,5696,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3190.81,"{""promo"": ""25%""}",158088,0,Asia +2023-04-21,24787,474,"[""Wireless Mouse""]",90.29,"{""loyalty"": ""25%""}",244094,1,North America +2023-04-22,24788,6398,"[""Tablet""]",346.83,"{""promo"": ""8%""}",161774,0,Asia +2023-04-23,24789,3033,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",739.62,{},238675,1,Asia +2024-08-16,24790,9855,"[""Keyboard"", ""Tablet"", ""Charger""]",2534.96,"{""loyalty"": ""29%""}",259643,1,Africa +2024-10-01,24791,1310,"[""Wireless Mouse""]",2196.09,"{""loyalty"": ""6%""}",186044,0,South America +2024-06-21,24792,7405,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4285.54,{},115872,1,Africa +2023-07-04,24793,5764,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4329.71,"{""promo"": ""15%""}",89655,1,North America +2024-03-25,24794,3352,"[""Keyboard""]",4758.94,{},142779,0,Europe +2023-11-01,24795,276,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4666.74,{},32863,1,North America +2023-04-17,24796,3126,"[""Phone"", ""Laptop""]",2333.47,"{""promo"": ""28%""}",60872,1,Africa +2024-03-02,24797,3368,"[""Laptop"", ""Monitor"", ""Charger""]",407.34,"{""seasonal"": ""15%""}",225922,0,South America +2023-02-05,24798,5691,"[""Laptop"", ""Charger""]",94.57,{},176827,0,Africa +2023-10-07,24799,9321,"[""Keyboard""]",2742.41,{},170374,1,Asia +2024-05-28,24800,6589,"[""Charger""]",54.18,{},280576,0,North America +2023-11-28,24801,2872,"[""Tablet"", ""Phone""]",1649.17,"{""seasonal"": ""25%""}",26584,1,Africa +2024-02-16,24802,9897,"[""Tablet""]",4974.92,{},137423,1,Europe +2024-09-13,24803,4824,"[""Wireless Mouse""]",296.84,{},48448,0,South America +2024-04-26,24804,994,"[""Phone"", ""Charger""]",2765.42,{},93330,1,Asia +2024-02-23,24805,7116,"[""Keyboard"", ""Charger""]",3261.46,"{""seasonal"": ""8%""}",283913,0,Asia +2024-02-22,24806,3081,"[""Wireless Mouse""]",2931.99,{},166821,1,Asia +2024-07-27,24807,7466,"[""Keyboard"", ""Headphones"", ""Tablet""]",3381.59,"{""loyalty"": ""5%""}",18597,0,North America +2023-06-08,24808,9526,"[""Keyboard"", ""Tablet"", ""Monitor""]",3800.28,{},122089,0,Europe +2024-11-01,24809,8042,"[""Phone"", ""Monitor""]",3971.97,{},137455,0,Asia +2023-02-13,24810,6017,"[""Tablet"", ""Phone""]",2410.95,{},220439,1,Asia +2024-04-16,24811,4355,"[""Laptop"", ""Wireless Mouse""]",3457.68,{},107773,0,South America +2023-03-31,24812,50,"[""Monitor""]",4834.1,{},130007,0,South America +2023-01-02,24813,4623,"[""Phone""]",3277.47,{},214837,0,Europe +2024-08-05,24814,739,"[""Phone"", ""Keyboard""]",1602.94,"{"""": ""21%""}",4036,1,North America +2024-07-10,24815,8065,"[""Keyboard"", ""Laptop""]",2191.39,{},179327,0,Asia +2023-06-10,24816,674,"[""Phone""]",3614.82,{},99568,0,Asia +2024-10-12,24817,2786,"[""Phone"", ""Tablet"", ""Headphones""]",1694.41,"{""promo"": ""9%""}",160580,0,North America +2023-03-09,24818,9669,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1547.39,"{""loyalty"": ""17%""}",214648,0,Asia +2024-07-08,24819,9171,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4645.46,{},170575,0,Europe +2023-12-14,24820,3930,"[""Charger"", ""Monitor""]",4418.02,"{""loyalty"": ""27%""}",14935,0,Africa +2023-03-07,24821,4169,"[""Tablet"", ""Charger""]",800.1,{},115029,0,Africa +2023-09-01,24822,7453,"[""Headphones"", ""Charger"", ""Phone""]",3200.77,{},217218,0,North America +2023-09-22,24823,4614,"[""Keyboard""]",4035.92,"{""loyalty"": ""28%""}",88755,0,South America +2024-11-24,24824,7035,"[""Wireless Mouse"", ""Laptop""]",3888.27,"{""loyalty"": ""26%""}",81446,1,North America +2024-12-02,24825,7626,"[""Tablet"", ""Phone""]",4025.79,{},246190,1,Africa +2023-03-05,24826,2169,"[""Phone"", ""Monitor""]",2158.92,"{""promo"": ""24%""}",64115,0,Asia +2023-11-23,24827,8070,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3789.6,{},22060,0,Europe +2023-05-08,24828,6960,"[""Wireless Mouse"", ""Headphones""]",2964.28,{},228356,0,Asia +2024-07-18,24829,7800,"[""Charger"", ""Laptop"", ""Keyboard""]",3613.95,"{"""": ""21%""}",32044,1,South America +2024-05-19,24830,7451,"[""Phone"", ""Monitor"", ""Keyboard""]",2406.27,{},273539,0,Africa +2024-05-28,24831,5089,"[""Phone""]",3924.09,"{""loyalty"": ""26%""}",194525,1,Africa +2024-10-24,24832,175,"[""Wireless Mouse""]",3702.15,{},182469,1,North America +2023-07-17,24833,7254,"[""Charger"", ""Monitor""]",2698.65,"{"""": ""30%""}",245617,1,Africa +2023-10-10,24834,9175,"[""Monitor"", ""Wireless Mouse""]",3982.24,{},125036,1,Africa +2024-12-13,24835,3265,"[""Laptop"", ""Keyboard""]",193.14,"{""promo"": ""24%""}",57612,1,Asia +2024-02-04,24836,4877,"[""Monitor"", ""Laptop""]",1439.72,"{""seasonal"": ""26%""}",171837,1,South America +2024-01-10,24837,6183,"[""Headphones""]",4433.08,"{"""": ""12%""}",220606,1,Europe +2024-06-01,24838,2564,"[""Charger""]",2027.1,"{""promo"": ""20%""}",58640,1,Africa +2023-04-30,24839,7917,"[""Wireless Mouse""]",4762.43,{},92197,0,Africa +2023-02-03,24840,4998,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1013.9,{},173811,1,South America +2024-04-15,24841,6810,"[""Keyboard"", ""Charger"", ""Monitor""]",436.82,"{""seasonal"": ""24%""}",84678,0,Africa +2023-12-12,24842,7859,"[""Charger"", ""Laptop""]",3814.57,"{""loyalty"": ""25%""}",59616,1,Europe +2024-12-31,24843,3839,"[""Keyboard"", ""Laptop""]",4595.52,{},25431,0,Asia +2023-04-23,24844,3792,"[""Headphones"", ""Tablet""]",4639.12,"{""loyalty"": ""11%""}",232343,1,Africa +2023-07-12,24845,5516,"[""Phone"", ""Monitor"", ""Headphones""]",909.25,"{""loyalty"": ""30%""}",121051,1,Asia +2024-08-06,24846,7616,"[""Tablet"", ""Headphones"", ""Monitor""]",586.22,"{"""": ""19%""}",5651,1,Europe +2023-06-04,24847,829,"[""Keyboard"", ""Monitor"", ""Tablet""]",4805.57,"{"""": ""28%""}",227901,0,South America +2023-03-06,24848,9260,"[""Keyboard"", ""Charger"", ""Tablet""]",3950.59,"{""promo"": ""13%""}",195016,0,South America +2023-12-15,24849,643,"[""Laptop"", ""Tablet""]",2026.52,{},188006,1,Europe +2023-05-03,24850,9108,"[""Wireless Mouse"", ""Phone""]",4177.35,"{""promo"": ""26%""}",202583,1,North America +2023-01-06,24851,5312,"[""Keyboard"", ""Charger""]",1590.0,"{""promo"": ""13%""}",107041,1,Europe +2024-07-01,24852,6391,"[""Charger"", ""Wireless Mouse""]",558.8,"{""seasonal"": ""16%""}",215081,0,Europe +2023-12-18,24853,6830,"[""Tablet"", ""Monitor""]",3342.59,{},102666,1,Europe +2024-05-04,24854,2264,"[""Charger"", ""Headphones""]",3924.72,"{""loyalty"": ""7%""}",291614,0,South America +2023-12-20,24855,1806,"[""Monitor"", ""Tablet""]",3483.94,{},222366,1,Europe +2024-08-21,24856,4335,"[""Keyboard"", ""Charger"", ""Phone""]",1159.01,{},223715,1,Asia +2024-01-03,24857,9817,"[""Phone"", ""Headphones"", ""Monitor""]",4915.52,"{""promo"": ""28%""}",245718,0,South America +2024-07-22,24858,7435,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4021.18,{},234024,0,Africa +2024-08-05,24859,3772,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2173.23,{},97889,0,South America +2024-10-20,24860,2221,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4184.84,{},201416,0,South America +2024-07-03,24861,5461,"[""Charger"", ""Tablet""]",4451.14,{},71812,0,South America +2023-07-29,24862,918,"[""Charger"", ""Keyboard""]",990.71,"{""promo"": ""14%""}",34796,1,Africa +2024-06-07,24863,9689,"[""Monitor"", ""Charger"", ""Keyboard""]",852.62,{},236505,1,Asia +2023-11-06,24864,3265,"[""Headphones""]",845.66,{},182021,0,South America +2024-05-17,24865,355,"[""Laptop"", ""Monitor""]",4461.09,{},193379,1,Europe +2023-08-24,24866,7536,"[""Headphones"", ""Phone"", ""Charger""]",460.5,{},117929,1,North America +2024-12-16,24867,9420,"[""Laptop"", ""Headphones""]",2947.29,"{"""": ""16%""}",120141,0,Asia +2024-01-27,24868,2439,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3661.41,"{""seasonal"": ""24%""}",44369,1,Africa +2023-09-14,24869,6839,"[""Laptop""]",3930.22,"{"""": ""12%""}",24930,1,Africa +2023-12-09,24870,988,"[""Laptop"", ""Phone""]",4761.96,"{""seasonal"": ""28%""}",266625,1,North America +2023-09-26,24871,4069,"[""Laptop"", ""Charger""]",4297.0,{},48829,1,Africa +2024-02-22,24872,2643,"[""Monitor"", ""Charger"", ""Phone""]",4835.9,"{"""": ""10%""}",216777,0,Europe +2023-09-22,24873,3017,"[""Laptop""]",958.13,{},47130,0,North America +2023-12-31,24874,1491,"[""Phone""]",2854.4,"{""seasonal"": ""15%""}",176371,0,North America +2024-12-15,24875,1331,"[""Headphones"", ""Tablet"", ""Laptop""]",406.72,"{""loyalty"": ""22%""}",85222,0,Africa +2023-04-25,24876,6747,"[""Headphones"", ""Tablet""]",217.76,"{"""": ""10%""}",299219,1,North America +2023-03-31,24877,3365,"[""Monitor"", ""Charger""]",2222.16,{},260975,1,South America +2024-10-13,24878,4657,"[""Headphones""]",3484.43,"{""promo"": ""5%""}",189283,0,Asia +2023-03-18,24879,6627,"[""Tablet"", ""Monitor"", ""Laptop""]",2166.28,{},106679,1,Europe +2024-12-15,24880,233,"[""Keyboard""]",1213.16,{},82879,1,North America +2024-04-15,24881,2406,"[""Headphones"", ""Charger"", ""Monitor""]",361.82,{},105450,0,North America +2023-09-04,24882,8727,"[""Monitor""]",2160.65,{},127479,1,Africa +2023-07-30,24883,2215,"[""Monitor"", ""Phone"", ""Laptop""]",2964.46,"{""promo"": ""16%""}",201124,0,Africa +2023-07-25,24884,3945,"[""Tablet"", ""Laptop""]",3896.17,"{"""": ""16%""}",62569,1,South America +2023-07-17,24885,5356,"[""Wireless Mouse""]",1845.92,{},147737,1,South America +2024-06-29,24886,8763,"[""Phone""]",4252.99,{},274144,0,Africa +2023-03-24,24887,9448,"[""Headphones""]",1422.08,"{""promo"": ""25%""}",29689,0,North America +2024-11-09,24888,851,"[""Phone"", ""Laptop""]",3139.88,"{"""": ""12%""}",188789,1,South America +2023-09-27,24889,1604,"[""Wireless Mouse"", ""Laptop""]",886.1,"{""seasonal"": ""16%""}",110059,1,South America +2024-11-23,24890,6104,"[""Charger"", ""Tablet"", ""Headphones""]",1219.5,"{""seasonal"": ""24%""}",208704,0,South America +2023-11-21,24891,3452,"[""Charger"", ""Keyboard""]",4377.66,"{"""": ""28%""}",42160,0,Europe +2023-08-25,24892,2054,"[""Monitor"", ""Laptop""]",4521.01,"{""loyalty"": ""28%""}",161620,0,Asia +2023-12-04,24893,1099,"[""Tablet""]",637.42,{},222783,0,South America +2023-02-13,24894,2713,"[""Wireless Mouse""]",2362.22,{},177051,0,South America +2023-07-13,24895,367,"[""Headphones""]",1773.41,{},118294,1,North America +2024-02-10,24896,7255,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4864.61,"{"""": ""30%""}",291378,1,South America +2023-06-20,24897,3219,"[""Charger"", ""Wireless Mouse""]",4929.09,{},222872,1,Africa +2024-02-23,24898,221,"[""Headphones""]",2857.05,"{""loyalty"": ""25%""}",102646,1,South America +2023-08-09,24899,464,"[""Tablet"", ""Phone""]",567.4,"{""loyalty"": ""10%""}",203414,0,Asia +2024-03-05,24900,6395,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",71.24,{},46625,0,Europe +2023-05-01,24901,6780,"[""Headphones""]",1501.31,{},250314,0,North America +2023-08-11,24902,8901,"[""Headphones"", ""Tablet""]",4124.75,"{"""": ""28%""}",158706,1,Europe +2023-08-10,24903,628,"[""Keyboard"", ""Tablet"", ""Phone""]",3487.38,"{"""": ""20%""}",18574,0,Asia +2024-04-01,24904,3724,"[""Charger""]",1490.89,{},27782,0,Europe +2023-11-04,24905,7910,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",247.79,"{""loyalty"": ""6%""}",54185,0,Africa +2024-11-15,24906,203,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3024.43,{},20395,1,South America +2023-03-06,24907,1445,"[""Keyboard"", ""Charger"", ""Laptop""]",2189.38,"{""loyalty"": ""15%""}",171243,1,Europe +2023-03-06,24908,4136,"[""Phone""]",619.91,{},42130,1,Europe +2023-04-20,24909,8365,"[""Monitor"", ""Headphones""]",2519.01,{},126724,1,North America +2023-04-12,24910,7340,"[""Laptop"", ""Headphones""]",4756.99,{},78459,1,Africa +2023-11-25,24911,1006,"[""Keyboard""]",2337.65,{},252116,0,Europe +2023-03-01,24912,3132,"[""Charger"", ""Monitor"", ""Keyboard""]",3818.46,"{""loyalty"": ""14%""}",87387,1,South America +2023-07-02,24913,5465,"[""Tablet"", ""Phone""]",3663.75,{},20130,0,North America +2023-03-04,24914,9861,"[""Phone""]",216.95,"{""promo"": ""6%""}",95721,1,Asia +2023-06-02,24915,3611,"[""Charger""]",4910.95,"{""seasonal"": ""10%""}",55310,0,Asia +2023-04-06,24916,948,"[""Phone""]",4328.05,"{"""": ""20%""}",244317,0,Europe +2023-07-27,24917,6349,"[""Tablet"", ""Headphones"", ""Monitor""]",2330.69,{},16968,0,South America +2023-06-09,24918,3659,"[""Wireless Mouse"", ""Charger""]",2110.36,{},2273,0,Europe +2023-04-07,24919,4581,"[""Monitor""]",4128.89,"{""seasonal"": ""30%""}",40743,1,Asia +2023-07-29,24920,9306,"[""Phone""]",310.83,"{""seasonal"": ""30%""}",29778,1,Europe +2024-12-14,24921,3255,"[""Headphones""]",3349.05,{},155149,1,North America +2024-12-16,24922,1082,"[""Laptop"", ""Monitor"", ""Keyboard""]",4260.89,{},189217,0,Europe +2024-10-28,24923,10,"[""Monitor""]",3526.68,"{"""": ""10%""}",200806,0,South America +2023-04-03,24924,4743,"[""Phone""]",1302.87,{},168027,1,Africa +2024-09-02,24925,411,"[""Keyboard""]",829.82,"{""loyalty"": ""29%""}",61327,0,North America +2024-05-15,24926,7859,"[""Wireless Mouse""]",1605.15,"{""seasonal"": ""23%""}",85041,0,Africa +2024-09-26,24927,1700,"[""Phone"", ""Headphones"", ""Charger""]",2478.31,{},113085,0,South America +2023-05-21,24928,367,"[""Charger"", ""Laptop""]",312.11,"{"""": ""29%""}",281833,1,South America +2024-08-17,24929,8515,"[""Keyboard"", ""Headphones""]",4819.16,{},77270,1,Africa +2024-05-24,24930,4960,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4696.41,"{""promo"": ""29%""}",110846,1,North America +2024-09-14,24931,6613,"[""Monitor""]",3222.06,"{""seasonal"": ""15%""}",7768,1,South America +2023-07-26,24932,4640,"[""Headphones""]",3582.71,{},121909,0,Europe +2024-08-22,24933,9620,"[""Monitor"", ""Phone"", ""Keyboard""]",91.95,{},131279,0,South America +2023-06-15,24934,3114,"[""Monitor"", ""Phone""]",4020.01,{},64700,1,North America +2024-07-10,24935,1027,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4652.8,"{""promo"": ""22%""}",9837,1,North America +2023-05-13,24936,6354,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2547.93,"{""loyalty"": ""9%""}",18384,0,Africa +2024-01-02,24937,1383,"[""Keyboard"", ""Laptop"", ""Phone""]",2519.91,{},93493,0,Europe +2023-10-05,24938,9535,"[""Laptop""]",646.88,"{""loyalty"": ""18%""}",25761,1,Asia +2024-09-29,24939,4306,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2289.87,{},191525,1,Europe +2024-03-03,24940,9355,"[""Wireless Mouse"", ""Monitor""]",2603.87,{},81406,0,Europe +2024-11-26,24941,5817,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",569.16,"{""seasonal"": ""22%""}",36745,1,Europe +2024-03-21,24942,9925,"[""Keyboard"", ""Wireless Mouse""]",450.2,{},126060,1,Africa +2023-06-26,24943,5487,"[""Tablet""]",3333.38,"{""promo"": ""13%""}",152282,0,Europe +2023-07-25,24944,7378,"[""Headphones"", ""Keyboard"", ""Tablet""]",3475.09,{},116909,1,Europe +2024-09-04,24945,3640,"[""Laptop"", ""Keyboard""]",4885.26,{},57985,0,Asia +2024-01-16,24946,9042,"[""Laptop""]",1649.89,{},53849,1,North America +2023-09-10,24947,39,"[""Phone"", ""Keyboard""]",3125.41,"{""promo"": ""14%""}",22218,0,Africa +2023-02-09,24948,1662,"[""Headphones"", ""Tablet""]",3257.17,"{""promo"": ""10%""}",28983,0,South America +2024-01-24,24949,1458,"[""Monitor"", ""Keyboard"", ""Phone""]",2417.97,"{"""": ""24%""}",279252,0,South America +2023-10-03,24950,5359,"[""Tablet"", ""Laptop""]",4406.29,{},268309,1,Africa +2023-06-08,24951,5383,"[""Tablet"", ""Laptop"", ""Phone""]",1180.39,{},112438,1,Africa +2024-08-13,24952,9531,"[""Phone""]",1991.72,"{""seasonal"": ""21%""}",38575,1,Africa +2023-10-06,24953,687,"[""Monitor""]",2138.52,"{""loyalty"": ""12%""}",206457,1,Europe +2024-01-31,24954,3982,"[""Monitor"", ""Tablet"", ""Laptop""]",3055.91,{},46273,1,Africa +2024-03-15,24955,4368,"[""Tablet"", ""Charger""]",3673.79,{},130577,1,Africa +2023-11-14,24956,1729,"[""Headphones""]",3948.0,{},258491,0,Africa +2023-04-30,24957,5031,"[""Wireless Mouse"", ""Laptop""]",699.46,"{""loyalty"": ""21%""}",250619,0,Asia +2023-08-19,24958,3407,"[""Headphones""]",4519.26,{},56874,0,Africa +2023-02-11,24959,5999,"[""Keyboard"", ""Tablet"", ""Laptop""]",4948.91,{},16654,1,Europe +2024-01-11,24960,4751,"[""Keyboard""]",2962.54,"{"""": ""14%""}",280860,1,Europe +2024-09-05,24961,4925,"[""Headphones"", ""Charger""]",4410.61,"{""loyalty"": ""22%""}",131458,1,Asia +2024-04-09,24962,5120,"[""Monitor"", ""Phone"", ""Tablet""]",2568.12,{},23657,1,Africa +2023-07-13,24963,6409,"[""Laptop"", ""Charger"", ""Phone""]",3482.64,{},238099,1,Africa +2024-05-11,24964,4362,"[""Charger"", ""Phone"", ""Tablet""]",4981.96,"{""loyalty"": ""23%""}",189317,0,South America +2024-07-12,24965,3530,"[""Tablet"", ""Headphones"", ""Charger""]",1456.6,{},121433,1,South America +2024-12-07,24966,406,"[""Laptop"", ""Tablet""]",3908.85,"{""promo"": ""13%""}",132257,1,North America +2024-02-13,24967,7489,"[""Phone""]",142.18,"{""loyalty"": ""5%""}",83947,0,Africa +2024-09-16,24968,6924,"[""Tablet""]",2031.9,"{""promo"": ""17%""}",57281,1,Asia +2024-09-20,24969,39,"[""Tablet"", ""Monitor"", ""Keyboard""]",884.6,"{"""": ""16%""}",232602,0,South America +2024-06-03,24970,779,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1477.26,{},277551,1,Europe +2024-03-11,24971,6232,"[""Charger"", ""Wireless Mouse""]",4751.08,{},211704,1,Asia +2023-12-21,24972,7234,"[""Keyboard"", ""Phone"", ""Monitor""]",3947.08,"{"""": ""29%""}",275715,0,North America +2023-08-14,24973,5376,"[""Monitor""]",2804.02,{},38251,0,Europe +2023-07-02,24974,2542,"[""Headphones"", ""Phone"", ""Keyboard""]",3304.66,{},154680,0,Europe +2023-10-27,24975,6212,"[""Phone"", ""Keyboard""]",2478.9,{},294380,1,Europe +2024-12-23,24976,755,"[""Wireless Mouse""]",1666.83,{},151184,1,South America +2024-07-14,24977,4995,"[""Phone"", ""Charger"", ""Keyboard""]",4120.47,"{""promo"": ""12%""}",132527,1,Europe +2024-01-22,24978,8267,"[""Tablet""]",2182.88,"{""seasonal"": ""7%""}",30880,1,Europe +2023-01-10,24979,7639,"[""Wireless Mouse""]",4825.55,"{""loyalty"": ""23%""}",290283,1,Asia +2024-01-11,24980,7523,"[""Keyboard"", ""Charger""]",3971.81,{},161559,1,Africa +2023-07-05,24981,757,"[""Monitor""]",1643.12,"{""loyalty"": ""18%""}",34922,1,South America +2023-11-15,24982,3241,"[""Tablet""]",2203.13,{},269686,0,Asia +2023-11-26,24983,7328,"[""Laptop"", ""Monitor"", ""Phone""]",289.29,{},48855,1,Africa +2023-07-26,24984,7113,"[""Wireless Mouse"", ""Keyboard""]",4979.31,"{""loyalty"": ""30%""}",37641,0,North America +2023-01-11,24985,2141,"[""Charger"", ""Monitor"", ""Tablet""]",2649.64,{},249509,1,Asia +2023-05-13,24986,7075,"[""Laptop""]",2819.75,"{""seasonal"": ""13%""}",120213,0,North America +2024-06-08,24987,4250,"[""Tablet""]",4993.6,"{""seasonal"": ""22%""}",288640,0,Asia +2023-09-16,24988,8025,"[""Phone"", ""Tablet"", ""Monitor""]",626.43,{},172936,0,Asia +2024-08-16,24989,344,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",67.4,{},190781,1,South America +2024-07-20,24990,402,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4476.16,{},267964,0,Europe +2024-05-03,24991,791,"[""Charger"", ""Laptop""]",4150.12,{},56217,0,Europe +2023-09-30,24992,9248,"[""Keyboard"", ""Monitor""]",2711.42,"{""seasonal"": ""10%""}",38856,1,Asia +2024-02-01,24993,7605,"[""Charger""]",984.42,"{""promo"": ""19%""}",140655,0,Africa +2023-07-02,24994,5345,"[""Laptop""]",855.93,"{""promo"": ""18%""}",171364,1,South America +2024-11-15,24995,8190,"[""Monitor""]",4379.57,"{""loyalty"": ""7%""}",248775,0,Europe +2024-04-19,24996,8642,"[""Charger"", ""Keyboard""]",3018.61,{},212959,1,Asia +2024-11-30,24997,3035,"[""Keyboard"", ""Tablet""]",1068.11,{},66079,0,North America +2024-05-31,24998,2524,"[""Monitor"", ""Keyboard""]",1062.81,"{"""": ""18%""}",136305,0,Africa +2023-10-31,24999,8407,"[""Charger"", ""Headphones""]",3358.43,"{""loyalty"": ""6%""}",56992,0,South America +2023-01-02,25000,4911,"[""Headphones"", ""Laptop"", ""Keyboard""]",2735.57,"{""promo"": ""26%""}",188572,0,Asia +2024-01-08,25001,7491,"[""Phone"", ""Monitor""]",879.62,"{""seasonal"": ""24%""}",296037,1,Europe +2023-08-30,25002,9082,"[""Keyboard"", ""Monitor"", ""Laptop""]",1872.31,"{""loyalty"": ""6%""}",266527,1,Europe +2023-03-31,25003,8303,"[""Phone""]",448.97,"{""promo"": ""26%""}",73335,1,Asia +2023-08-09,25004,4914,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2864.27,"{""seasonal"": ""11%""}",287730,1,Asia +2023-11-05,25005,2887,"[""Laptop"", ""Headphones""]",2897.38,"{""promo"": ""10%""}",272551,0,North America +2023-05-31,25006,1608,"[""Headphones"", ""Keyboard"", ""Phone""]",768.88,"{""promo"": ""19%""}",104595,0,Europe +2024-08-25,25007,6771,"[""Monitor"", ""Wireless Mouse""]",1844.78,"{""loyalty"": ""20%""}",236150,1,North America +2023-05-14,25008,1907,"[""Keyboard"", ""Phone"", ""Tablet""]",2961.94,"{""seasonal"": ""29%""}",70208,1,Europe +2023-03-28,25009,6669,"[""Charger""]",4046.82,"{"""": ""16%""}",187780,0,Africa +2023-03-08,25010,1908,"[""Tablet"", ""Monitor""]",1999.02,{},279555,1,Asia +2023-01-12,25011,838,"[""Tablet""]",1420.76,"{""loyalty"": ""12%""}",134279,1,South America +2024-02-19,25012,9292,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4997.96,"{""promo"": ""22%""}",103253,0,Asia +2024-01-29,25013,6698,"[""Headphones"", ""Tablet"", ""Laptop""]",4790.13,"{""loyalty"": ""18%""}",161203,1,North America +2024-09-24,25014,6576,"[""Wireless Mouse""]",1531.82,"{""seasonal"": ""7%""}",183465,1,Africa +2023-03-10,25015,3463,"[""Wireless Mouse"", ""Charger""]",2868.68,{},239267,1,North America +2024-08-17,25016,4518,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2928.7,{},238768,1,Europe +2023-03-17,25017,9609,"[""Monitor"", ""Keyboard""]",605.18,"{""loyalty"": ""18%""}",185789,0,Asia +2024-10-18,25018,5666,"[""Headphones"", ""Charger""]",2441.06,"{""promo"": ""28%""}",12229,1,North America +2024-12-04,25019,3588,"[""Wireless Mouse"", ""Charger""]",4884.09,{},64595,0,North America +2023-09-11,25020,2891,"[""Keyboard"", ""Laptop"", ""Headphones""]",2934.53,"{""loyalty"": ""23%""}",98660,1,South America +2023-12-11,25021,5800,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",128.53,"{"""": ""13%""}",49803,0,Europe +2024-08-31,25022,7948,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2568.33,{},97309,0,Asia +2023-05-20,25023,4660,"[""Phone"", ""Wireless Mouse""]",498.06,{},81591,0,South America +2024-01-16,25024,5504,"[""Tablet"", ""Laptop""]",4078.61,"{"""": ""29%""}",134531,0,Europe +2024-04-11,25025,1766,"[""Laptop"", ""Charger""]",2809.54,"{""seasonal"": ""6%""}",197937,0,Africa +2023-07-15,25026,9537,"[""Keyboard""]",3448.52,{},96461,0,South America +2024-04-29,25027,5122,"[""Keyboard"", ""Phone"", ""Laptop""]",3318.8,{},44372,0,North America +2024-06-15,25028,5073,"[""Headphones"", ""Monitor""]",230.54,{},50208,0,Europe +2024-11-19,25029,5110,"[""Wireless Mouse"", ""Monitor""]",3237.14,"{"""": ""13%""}",39462,0,South America +2024-02-02,25030,8707,"[""Wireless Mouse"", ""Tablet""]",4405.77,"{""seasonal"": ""16%""}",60721,1,South America +2023-04-25,25031,7105,"[""Headphones"", ""Tablet""]",2573.78,{},86915,0,North America +2024-11-15,25032,9144,"[""Charger"", ""Monitor""]",3166.06,{},69155,0,Africa +2024-11-12,25033,7138,"[""Phone"", ""Laptop""]",4357.32,"{""promo"": ""9%""}",137325,0,Europe +2024-09-23,25034,5066,"[""Keyboard"", ""Phone"", ""Monitor""]",3577.81,{},208907,1,Africa +2023-11-07,25035,93,"[""Charger"", ""Keyboard"", ""Headphones""]",4713.21,{},241828,1,Africa +2024-07-18,25036,7922,"[""Headphones"", ""Phone""]",4017.05,{},239623,0,Africa +2023-01-26,25037,8562,"[""Headphones"", ""Laptop""]",2038.38,"{""seasonal"": ""8%""}",173478,0,Europe +2023-07-01,25038,4601,"[""Wireless Mouse""]",4966.66,{},216707,1,South America +2024-01-10,25039,2054,"[""Headphones"", ""Laptop""]",3354.68,{},224368,0,Africa +2024-03-16,25040,553,"[""Laptop""]",2680.84,{},58255,1,North America +2024-09-04,25041,746,"[""Headphones"", ""Laptop""]",2819.59,"{""seasonal"": ""20%""}",220656,0,Africa +2024-12-22,25042,6891,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1335.87,{},34687,1,Asia +2023-02-11,25043,114,"[""Laptop""]",3517.75,"{""seasonal"": ""5%""}",143114,1,Europe +2023-04-29,25044,9138,"[""Headphones""]",947.73,"{"""": ""27%""}",77911,0,Africa +2024-07-15,25045,6523,"[""Keyboard"", ""Wireless Mouse""]",1884.06,{},168915,0,Africa +2023-07-23,25046,1030,"[""Monitor"", ""Laptop""]",3610.83,{},250486,1,Asia +2023-03-19,25047,8871,"[""Headphones""]",3689.23,{},270766,0,South America +2024-04-16,25048,2260,"[""Monitor""]",4943.45,"{""seasonal"": ""12%""}",14063,0,Europe +2024-08-25,25049,2325,"[""Charger"", ""Wireless Mouse""]",2471.23,{},64336,1,South America +2024-09-04,25050,566,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2452.59,{},21226,0,South America +2024-02-29,25051,7404,"[""Headphones"", ""Laptop""]",4070.6,"{""loyalty"": ""18%""}",108853,1,South America +2023-07-18,25052,7266,"[""Laptop"", ""Charger"", ""Keyboard""]",1523.54,"{""seasonal"": ""25%""}",6379,1,Africa +2024-09-24,25053,6874,"[""Keyboard"", ""Monitor"", ""Laptop""]",2097.38,{},198861,1,North America +2024-03-21,25054,5227,"[""Monitor"", ""Laptop""]",1870.48,"{""promo"": ""24%""}",208674,0,Asia +2023-04-17,25055,8387,"[""Monitor"", ""Charger"", ""Phone""]",1796.25,{},271771,1,Africa +2023-09-28,25056,9901,"[""Phone""]",1842.73,"{"""": ""21%""}",162117,1,South America +2024-05-28,25057,2776,"[""Monitor"", ""Phone"", ""Keyboard""]",2079.15,"{""promo"": ""16%""}",178942,1,South America +2024-01-09,25058,22,"[""Tablet""]",4975.27,{},210043,0,North America +2023-03-08,25059,433,"[""Wireless Mouse""]",1663.24,{},24080,0,North America +2023-04-06,25060,4064,"[""Monitor"", ""Headphones"", ""Phone""]",1902.5,"{""seasonal"": ""9%""}",94403,0,Africa +2023-01-14,25061,6644,"[""Wireless Mouse"", ""Headphones""]",4491.94,"{""seasonal"": ""16%""}",290840,0,Asia +2023-06-11,25062,8903,"[""Headphones"", ""Monitor"", ""Keyboard""]",68.43,"{""seasonal"": ""21%""}",102695,1,Africa +2024-11-06,25063,1526,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3881.45,"{"""": ""17%""}",198693,1,North America +2024-08-17,25064,2902,"[""Charger""]",4396.51,"{""seasonal"": ""17%""}",184283,0,South America +2024-07-25,25065,9888,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1689.1,{},260555,0,South America +2023-11-29,25066,5478,"[""Keyboard"", ""Phone"", ""Tablet""]",2686.98,{},114443,1,North America +2023-01-15,25067,6352,"[""Charger""]",2266.22,"{""promo"": ""28%""}",86204,1,Europe +2024-04-25,25068,7254,"[""Keyboard""]",2154.61,"{""promo"": ""23%""}",171364,1,Asia +2024-02-26,25069,927,"[""Keyboard"", ""Laptop"", ""Phone""]",1544.68,"{"""": ""16%""}",33155,1,Europe +2023-10-16,25070,6728,"[""Phone""]",4275.3,{},286708,1,North America +2024-03-26,25071,5504,"[""Monitor"", ""Phone"", ""Keyboard""]",1104.51,"{"""": ""5%""}",41963,1,South America +2024-09-18,25072,9765,"[""Headphones"", ""Tablet"", ""Monitor""]",2575.21,"{""seasonal"": ""27%""}",6652,1,Africa +2024-04-15,25073,5381,"[""Phone"", ""Laptop""]",966.67,"{"""": ""29%""}",207897,1,North America +2024-05-28,25074,9823,"[""Charger""]",4429.82,{},258672,1,North America +2024-03-21,25075,6234,"[""Headphones""]",336.1,{},271880,1,Europe +2023-01-27,25076,4802,"[""Monitor""]",3715.62,"{""seasonal"": ""14%""}",249413,0,Europe +2024-06-16,25077,8528,"[""Charger"", ""Keyboard""]",413.8,{},287850,0,Africa +2023-11-23,25078,6141,"[""Headphones"", ""Monitor""]",3075.53,{},41259,1,North America +2023-12-11,25079,5570,"[""Tablet"", ""Phone"", ""Laptop""]",4557.64,"{""promo"": ""28%""}",187319,1,Europe +2023-03-30,25080,6207,"[""Keyboard"", ""Laptop""]",320.54,{},245395,0,South America +2024-09-21,25081,4806,"[""Laptop"", ""Phone""]",295.09,"{""loyalty"": ""10%""}",75384,1,Africa +2023-01-08,25082,8676,"[""Wireless Mouse""]",1646.27,{},21771,0,North America +2023-02-04,25083,4964,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",320.27,"{""loyalty"": ""16%""}",92019,0,North America +2023-07-05,25084,4748,"[""Headphones"", ""Phone"", ""Monitor""]",4591.87,{},223447,0,North America +2024-09-20,25085,7567,"[""Phone"", ""Keyboard""]",971.71,{},197927,1,Asia +2023-04-17,25086,6926,"[""Phone"", ""Keyboard""]",470.41,"{""promo"": ""28%""}",29949,1,Asia +2024-09-29,25087,6797,"[""Keyboard""]",4737.68,{},288678,1,Africa +2024-08-03,25088,5255,"[""Tablet"", ""Keyboard"", ""Laptop""]",1733.37,{},103692,0,Europe +2023-04-21,25089,7363,"[""Monitor"", ""Charger""]",460.77,{},197176,0,North America +2023-05-31,25090,7889,"[""Monitor"", ""Headphones""]",2023.65,"{""loyalty"": ""23%""}",149416,0,Asia +2024-12-08,25091,307,"[""Tablet""]",2614.73,"{""promo"": ""13%""}",220244,0,Africa +2023-04-23,25092,5325,"[""Tablet""]",2058.24,"{""loyalty"": ""19%""}",22588,1,Asia +2023-09-14,25093,7387,"[""Laptop"", ""Tablet""]",533.83,{},74805,0,North America +2024-02-22,25094,7383,"[""Headphones"", ""Laptop""]",3730.62,{},216234,0,Asia +2024-08-28,25095,5767,"[""Monitor""]",3252.33,"{""seasonal"": ""23%""}",203463,1,Europe +2024-07-04,25096,8467,"[""Headphones"", ""Laptop""]",1928.54,{},280327,0,Europe +2024-02-06,25097,6702,"[""Laptop"", ""Keyboard""]",770.86,"{""promo"": ""29%""}",213389,0,Asia +2024-09-24,25098,1812,"[""Wireless Mouse"", ""Headphones""]",994.43,{},279250,1,Europe +2023-08-29,25099,7897,"[""Charger""]",1370.99,{},37664,0,Africa +2024-11-20,25100,714,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",99.12,"{""promo"": ""11%""}",83513,0,Europe +2023-01-14,25101,4134,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2801.76,{},17284,0,Europe +2024-02-04,25102,2938,"[""Laptop""]",4238.86,{},215251,0,Europe +2023-06-22,25103,4955,"[""Monitor"", ""Tablet"", ""Laptop""]",506.83,{},90247,1,North America +2023-09-16,25104,173,"[""Phone""]",1434.86,"{""seasonal"": ""22%""}",191134,0,South America +2023-03-11,25105,5071,"[""Headphones"", ""Phone"", ""Charger""]",1030.09,"{""loyalty"": ""14%""}",282233,1,Asia +2023-12-30,25106,3160,"[""Laptop"", ""Phone""]",2422.79,"{""loyalty"": ""6%""}",253791,0,Europe +2024-02-21,25107,4804,"[""Headphones""]",1981.96,{},3122,1,Asia +2023-04-18,25108,621,"[""Tablet""]",1529.04,"{""loyalty"": ""15%""}",130935,0,Asia +2023-03-19,25109,7300,"[""Wireless Mouse""]",3255.88,{},69130,1,South America +2023-11-02,25110,1960,"[""Keyboard"", ""Monitor"", ""Laptop""]",3095.73,"{""seasonal"": ""13%""}",231268,0,South America +2024-04-01,25111,2767,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",768.72,"{""promo"": ""10%""}",35642,1,South America +2023-02-11,25112,4947,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1931.85,"{"""": ""29%""}",175731,1,Africa +2023-01-20,25113,3504,"[""Charger"", ""Monitor"", ""Tablet""]",3428.04,{},16032,0,North America +2024-07-16,25114,1449,"[""Charger"", ""Headphones"", ""Phone""]",4512.95,"{""seasonal"": ""8%""}",262102,1,Africa +2023-02-24,25115,9694,"[""Headphones"", ""Monitor"", ""Laptop""]",720.14,"{""loyalty"": ""16%""}",141989,0,Europe +2024-03-03,25116,6451,"[""Charger"", ""Tablet"", ""Keyboard""]",1616.89,{},134488,0,Africa +2024-05-22,25117,7587,"[""Monitor"", ""Laptop""]",1435.82,{},140857,0,Asia +2023-01-05,25118,5645,"[""Monitor"", ""Laptop"", ""Tablet""]",4368.33,"{"""": ""26%""}",20396,0,North America +2023-06-24,25119,7540,"[""Charger""]",3867.21,"{""promo"": ""13%""}",6164,0,North America +2024-05-19,25120,5413,"[""Keyboard""]",2948.36,{},117244,1,Africa +2024-12-21,25121,3658,"[""Monitor""]",4660.9,{},198334,0,Asia +2024-03-20,25122,7189,"[""Tablet""]",3025.34,"{"""": ""27%""}",32127,0,Asia +2024-06-14,25123,6287,"[""Wireless Mouse"", ""Headphones""]",1787.86,"{"""": ""9%""}",125492,0,Europe +2023-07-18,25124,3768,"[""Tablet"", ""Phone""]",1587.51,"{""promo"": ""22%""}",94588,1,Europe +2023-09-01,25125,8113,"[""Keyboard"", ""Tablet""]",415.71,{},118115,1,Africa +2023-03-26,25126,3247,"[""Keyboard"", ""Monitor"", ""Headphones""]",1898.19,"{""promo"": ""6%""}",154304,1,South America +2024-11-04,25127,6738,"[""Headphones""]",578.42,"{""promo"": ""13%""}",207900,1,Asia +2024-10-05,25128,7198,"[""Tablet"", ""Monitor"", ""Charger""]",4405.05,"{"""": ""18%""}",233866,0,North America +2023-02-22,25129,6562,"[""Keyboard""]",1617.61,"{"""": ""20%""}",103936,1,South America +2024-11-02,25130,2407,"[""Phone"", ""Keyboard"", ""Monitor""]",1590.09,{},159942,1,Africa +2024-02-02,25131,255,"[""Monitor""]",1950.05,{},162869,0,South America +2023-12-26,25132,9629,"[""Headphones""]",4166.53,{},1647,1,Asia +2024-07-13,25133,7439,"[""Charger"", ""Wireless Mouse""]",1172.42,{},72454,1,Asia +2024-01-31,25134,9949,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2075.62,"{""promo"": ""21%""}",83535,1,North America +2023-08-23,25135,6270,"[""Headphones""]",1628.5,"{"""": ""24%""}",69107,0,Asia +2023-04-16,25136,1034,"[""Wireless Mouse"", ""Laptop""]",4561.86,"{"""": ""12%""}",104869,1,Africa +2023-06-08,25137,1623,"[""Charger"", ""Keyboard""]",4225.6,{},1430,0,North America +2024-11-25,25138,2767,"[""Tablet"", ""Charger""]",4989.82,{},151942,0,South America +2023-06-15,25139,6991,"[""Keyboard""]",4823.27,{},131182,0,South America +2023-10-23,25140,636,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4304.8,{},90985,1,Europe +2024-12-21,25141,228,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3370.52,{},169413,1,North America +2024-12-26,25142,501,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1851.27,"{""promo"": ""5%""}",137906,1,South America +2024-12-08,25143,8293,"[""Wireless Mouse""]",3972.28,{},278355,0,Europe +2024-07-10,25144,6186,"[""Wireless Mouse"", ""Tablet""]",4539.11,{},112760,0,North America +2023-07-24,25145,705,"[""Tablet"", ""Monitor"", ""Phone""]",3626.4,{},208721,0,Asia +2024-02-02,25146,8857,"[""Charger"", ""Laptop"", ""Headphones""]",1775.62,"{""loyalty"": ""10%""}",154601,1,North America +2023-10-10,25147,2483,"[""Laptop""]",1238.91,"{""promo"": ""30%""}",58594,1,Europe +2023-05-06,25148,7744,"[""Tablet"", ""Monitor"", ""Keyboard""]",1861.4,"{"""": ""25%""}",156972,1,Asia +2024-03-12,25149,3893,"[""Laptop""]",4693.23,{},44486,1,Asia +2023-05-12,25150,1001,"[""Tablet"", ""Phone""]",3874.9,{},128886,0,North America +2023-12-30,25151,7563,"[""Charger"", ""Headphones""]",4253.62,"{""promo"": ""27%""}",220005,0,North America +2023-03-09,25152,689,"[""Laptop""]",107.68,"{""seasonal"": ""30%""}",97555,0,North America +2023-09-09,25153,8339,"[""Phone""]",3823.48,"{""loyalty"": ""6%""}",270324,0,Asia +2023-12-06,25154,4391,"[""Monitor""]",2896.73,"{"""": ""7%""}",228748,1,Asia +2024-05-09,25155,7873,"[""Laptop""]",3174.47,{},127829,1,Africa +2024-02-23,25156,7795,"[""Tablet"", ""Monitor"", ""Phone""]",3958.18,"{""promo"": ""23%""}",291180,1,Asia +2023-07-17,25157,5097,"[""Tablet"", ""Charger"", ""Keyboard""]",3022.22,"{""promo"": ""19%""}",159053,0,North America +2023-11-14,25158,2639,"[""Tablet"", ""Laptop""]",1747.67,{},287915,1,Africa +2023-09-14,25159,1388,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1408.8,"{""loyalty"": ""18%""}",275190,1,Africa +2024-05-15,25160,7741,"[""Monitor"", ""Tablet""]",3661.21,"{""promo"": ""19%""}",13724,0,North America +2024-06-15,25161,9303,"[""Laptop""]",4460.58,{},61935,1,Europe +2023-05-27,25162,9715,"[""Charger""]",2831.65,{},76246,0,Europe +2024-10-27,25163,4164,"[""Headphones""]",3063.23,"{"""": ""21%""}",30177,0,Africa +2024-05-13,25164,3057,"[""Wireless Mouse"", ""Charger""]",3203.63,"{""seasonal"": ""9%""}",246392,1,North America +2024-12-02,25165,9459,"[""Charger""]",2265.05,"{""seasonal"": ""26%""}",82531,1,Africa +2024-05-27,25166,7009,"[""Charger"", ""Wireless Mouse"", ""Phone""]",128.57,{},21069,1,North America +2024-08-01,25167,6741,"[""Charger"", ""Phone"", ""Laptop""]",1539.28,"{""seasonal"": ""29%""}",182348,1,Europe +2024-11-27,25168,1685,"[""Headphones"", ""Monitor""]",817.04,"{""loyalty"": ""17%""}",282341,0,North America +2023-05-15,25169,9424,"[""Tablet"", ""Wireless Mouse""]",4678.69,"{""promo"": ""9%""}",45848,0,Asia +2023-04-30,25170,1858,"[""Tablet""]",4437.22,"{"""": ""25%""}",28538,1,Europe +2023-02-06,25171,123,"[""Phone""]",3427.92,{},195841,1,Europe +2023-11-27,25172,4173,"[""Keyboard"", ""Tablet"", ""Charger""]",533.67,{},98520,1,Asia +2023-11-24,25173,5524,"[""Wireless Mouse"", ""Phone""]",4595.71,{},224740,0,Europe +2023-01-11,25174,4885,"[""Headphones""]",3519.08,"{""promo"": ""6%""}",167858,0,Asia +2023-04-17,25175,5322,"[""Monitor"", ""Headphones"", ""Keyboard""]",4166.79,{},278218,1,Asia +2024-10-12,25176,4797,"[""Laptop"", ""Keyboard"", ""Phone""]",1767.27,{},278009,1,South America +2023-11-27,25177,6451,"[""Laptop""]",1944.5,{},18439,0,South America +2023-11-17,25178,8733,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",317.94,"{"""": ""24%""}",57096,1,Europe +2023-10-02,25179,703,"[""Charger""]",4754.6,"{"""": ""20%""}",9181,1,South America +2023-02-26,25180,360,"[""Laptop""]",520.56,"{""loyalty"": ""6%""}",196419,1,North America +2024-06-28,25181,9537,"[""Keyboard""]",1523.2,{},257754,1,Asia +2024-03-23,25182,3411,"[""Keyboard"", ""Phone""]",2442.02,{},201112,1,North America +2023-05-08,25183,136,"[""Wireless Mouse""]",1904.11,"{""loyalty"": ""17%""}",293230,0,Asia +2023-05-09,25184,3597,"[""Tablet""]",2006.81,{},119331,0,South America +2024-06-26,25185,7155,"[""Headphones""]",4408.65,{},287745,1,Europe +2024-11-10,25186,3617,"[""Charger"", ""Wireless Mouse""]",2440.61,"{""loyalty"": ""11%""}",57429,1,Europe +2024-11-02,25187,2751,"[""Tablet""]",2351.8,{},181208,1,North America +2023-10-03,25188,9097,"[""Headphones"", ""Tablet""]",3385.35,"{"""": ""23%""}",128136,0,North America +2023-07-13,25189,2352,"[""Headphones"", ""Tablet""]",1981.68,"{"""": ""12%""}",242055,0,Asia +2024-10-11,25190,7428,"[""Headphones""]",101.71,"{""seasonal"": ""18%""}",152529,0,North America +2024-06-16,25191,9670,"[""Wireless Mouse"", ""Headphones""]",4092.6,{},178172,1,Europe +2024-01-28,25192,33,"[""Phone"", ""Keyboard"", ""Laptop""]",1030.64,{},10533,1,Africa +2024-11-09,25193,4976,"[""Charger"", ""Laptop"", ""Headphones""]",3371.79,"{""loyalty"": ""8%""}",294219,1,Europe +2024-03-31,25194,1524,"[""Monitor"", ""Keyboard""]",4819.47,"{""promo"": ""7%""}",214435,1,South America +2023-11-23,25195,2324,"[""Keyboard"", ""Phone"", ""Monitor""]",1667.19,"{""seasonal"": ""14%""}",89296,0,South America +2024-08-09,25196,1261,"[""Wireless Mouse""]",381.73,"{""loyalty"": ""25%""}",105041,0,South America +2023-06-22,25197,2031,"[""Tablet""]",1080.18,{},22398,0,Africa +2024-07-06,25198,1452,"[""Keyboard"", ""Monitor""]",4091.1,{},10937,1,North America +2024-06-17,25199,1948,"[""Headphones""]",4625.24,"{""loyalty"": ""17%""}",37237,1,Africa +2024-08-15,25200,3804,"[""Keyboard""]",1607.01,{},8456,1,Asia +2024-06-01,25201,5959,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",848.36,{},31230,0,Europe +2023-12-30,25202,6622,"[""Monitor"", ""Laptop""]",3996.25,"{""seasonal"": ""22%""}",187468,1,South America +2023-06-06,25203,923,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",365.63,{},17330,1,South America +2023-07-14,25204,5074,"[""Laptop"", ""Headphones"", ""Charger""]",4737.92,"{"""": ""15%""}",100544,1,North America +2023-04-03,25205,1428,"[""Wireless Mouse"", ""Phone""]",3604.36,"{"""": ""7%""}",221772,1,South America +2023-08-27,25206,6454,"[""Keyboard"", ""Tablet""]",1103.4,"{"""": ""10%""}",191942,0,Asia +2023-12-19,25207,2642,"[""Tablet""]",4487.14,{},139234,0,South America +2023-09-14,25208,6413,"[""Laptop"", ""Keyboard"", ""Charger""]",3330.28,"{"""": ""10%""}",194081,0,Europe +2023-04-22,25209,7526,"[""Laptop""]",2145.83,{},184059,0,South America +2024-06-09,25210,3500,"[""Keyboard"", ""Charger""]",1747.17,{},213397,1,Europe +2024-09-21,25211,3246,"[""Tablet""]",1268.56,"{""loyalty"": ""8%""}",71713,0,Europe +2023-02-18,25212,4424,"[""Monitor""]",4207.87,{},182416,1,South America +2023-06-05,25213,425,"[""Laptop""]",2477.34,"{""loyalty"": ""14%""}",4342,0,South America +2024-08-19,25214,8169,"[""Monitor"", ""Charger"", ""Laptop""]",3508.37,"{""promo"": ""20%""}",33723,0,Europe +2023-05-24,25215,7838,"[""Charger"", ""Headphones""]",4537.57,{},210793,0,Africa +2023-01-03,25216,7240,"[""Keyboard"", ""Laptop""]",573.24,"{""loyalty"": ""29%""}",216373,1,Europe +2024-06-24,25217,872,"[""Keyboard""]",3077.62,{},105298,0,Europe +2024-04-21,25218,9065,"[""Wireless Mouse""]",1067.08,{},134171,1,South America +2024-08-21,25219,5519,"[""Wireless Mouse""]",158.34,"{""loyalty"": ""25%""}",139732,0,North America +2024-10-18,25220,9732,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3520.16,{},108011,1,Europe +2024-12-22,25221,272,"[""Charger"", ""Monitor""]",4956.65,"{"""": ""9%""}",269219,1,South America +2023-01-22,25222,3616,"[""Wireless Mouse""]",1548.79,{},267646,0,North America +2023-06-27,25223,2415,"[""Laptop"", ""Phone"", ""Headphones""]",2829.03,"{""promo"": ""12%""}",108267,0,Asia +2024-09-22,25224,1427,"[""Headphones""]",4173.17,{},113740,0,Europe +2024-03-23,25225,9975,"[""Tablet"", ""Headphones""]",4307.91,{},244346,1,Africa +2023-11-21,25226,2100,"[""Headphones""]",2456.2,{},168605,1,Asia +2023-10-10,25227,8557,"[""Charger""]",1157.69,{},223469,1,Africa +2023-02-16,25228,8062,"[""Tablet"", ""Charger""]",1152.22,{},193070,0,Asia +2023-10-15,25229,1377,"[""Phone"", ""Headphones"", ""Keyboard""]",531.68,"{""promo"": ""28%""}",114428,1,Europe +2023-08-20,25230,3083,"[""Monitor"", ""Keyboard"", ""Headphones""]",1514.12,"{""seasonal"": ""18%""}",144323,1,South America +2024-01-04,25231,2975,"[""Wireless Mouse"", ""Monitor""]",3475.76,{},108567,1,Asia +2024-11-13,25232,6647,"[""Monitor"", ""Phone""]",1205.51,"{""loyalty"": ""24%""}",21105,1,Europe +2023-12-19,25233,8698,"[""Keyboard"", ""Phone""]",2744.51,"{""seasonal"": ""15%""}",206972,1,North America +2024-05-21,25234,820,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1957.74,"{""promo"": ""21%""}",101182,0,Europe +2024-07-15,25235,7369,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",343.53,{},242735,0,Africa +2023-09-03,25236,2924,"[""Tablet""]",2536.34,"{""promo"": ""24%""}",269274,0,Africa +2023-04-21,25237,7311,"[""Headphones""]",3162.31,{},283581,0,Asia +2023-11-08,25238,4766,"[""Charger"", ""Monitor""]",968.6,{},57354,0,Asia +2024-07-13,25239,1921,"[""Wireless Mouse""]",4086.86,{},22395,0,South America +2023-10-16,25240,5989,"[""Keyboard"", ""Tablet""]",691.22,"{""promo"": ""17%""}",160299,0,Asia +2023-06-19,25241,950,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3286.54,"{"""": ""20%""}",20989,0,South America +2024-06-28,25242,2519,"[""Phone""]",2808.19,"{""loyalty"": ""19%""}",174426,1,Europe +2024-12-29,25243,5748,"[""Charger"", ""Phone"", ""Laptop""]",3737.22,"{""promo"": ""17%""}",153418,1,Europe +2023-09-13,25244,3512,"[""Charger"", ""Laptop"", ""Keyboard""]",2279.17,{},84035,0,South America +2023-04-20,25245,4506,"[""Charger"", ""Wireless Mouse""]",2249.58,{},215860,0,Asia +2024-09-16,25246,2740,"[""Tablet""]",661.07,{},95184,1,South America +2023-05-27,25247,4618,"[""Keyboard"", ""Charger"", ""Headphones""]",3351.79,{},21855,0,Europe +2024-06-19,25248,7545,"[""Headphones""]",360.86,{},65862,0,Europe +2024-02-27,25249,9682,"[""Phone""]",926.77,"{""seasonal"": ""9%""}",250639,0,North America +2023-07-24,25250,4999,"[""Wireless Mouse""]",2985.36,"{""seasonal"": ""7%""}",220685,0,Europe +2024-08-25,25251,2074,"[""Phone"", ""Keyboard""]",3339.03,"{""seasonal"": ""15%""}",53293,1,Africa +2023-11-01,25252,5712,"[""Charger""]",4843.13,{},195040,1,Africa +2023-05-22,25253,2098,"[""Headphones""]",4906.13,{},134584,0,Asia +2023-04-10,25254,6578,"[""Monitor""]",3678.74,{},281181,1,North America +2024-10-19,25255,5022,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1449.94,{},240306,0,South America +2023-08-20,25256,8343,"[""Laptop"", ""Headphones""]",1046.43,"{""loyalty"": ""12%""}",111613,0,North America +2024-12-26,25257,5811,"[""Laptop"", ""Phone""]",59.92,"{""loyalty"": ""29%""}",7023,0,Africa +2024-03-04,25258,2661,"[""Charger"", ""Headphones"", ""Laptop""]",3083.6,"{""promo"": ""24%""}",197873,0,Africa +2023-05-29,25259,3020,"[""Headphones"", ""Laptop"", ""Monitor""]",4864.85,"{""seasonal"": ""12%""}",255476,0,Europe +2023-01-10,25260,1684,"[""Laptop"", ""Phone"", ""Monitor""]",2661.28,"{"""": ""26%""}",261116,1,North America +2023-02-24,25261,6396,"[""Charger"", ""Wireless Mouse""]",1177.95,{},250656,0,Africa +2024-09-20,25262,2172,"[""Keyboard"", ""Laptop""]",2397.38,{},279783,0,Asia +2024-07-09,25263,2355,"[""Keyboard""]",2054.48,{},94451,0,Africa +2023-06-04,25264,450,"[""Charger"", ""Phone"", ""Monitor""]",4953.76,"{""promo"": ""13%""}",100162,0,South America +2024-02-28,25265,1454,"[""Laptop"", ""Charger""]",2109.29,"{"""": ""12%""}",49436,1,Europe +2023-02-26,25266,9112,"[""Headphones""]",2241.51,{},37061,0,North America +2024-12-10,25267,2669,"[""Wireless Mouse"", ""Phone""]",4063.4,"{""loyalty"": ""14%""}",6128,1,South America +2024-05-27,25268,7784,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4421.56,{},156275,1,South America +2023-09-17,25269,1236,"[""Phone""]",2438.7,{},42217,1,South America +2023-03-21,25270,5418,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4349.06,{},193097,1,Europe +2024-08-09,25271,1247,"[""Laptop"", ""Monitor""]",4132.8,{},36751,0,Europe +2024-05-15,25272,5403,"[""Laptop"", ""Phone"", ""Headphones""]",4606.39,{},292549,0,Asia +2023-10-18,25273,807,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3422.57,"{"""": ""12%""}",61119,0,Europe +2024-04-29,25274,9026,"[""Charger""]",2968.87,"{"""": ""10%""}",252090,0,North America +2023-01-26,25275,4926,"[""Tablet""]",4791.15,{},85776,1,North America +2024-11-03,25276,3197,"[""Monitor"", ""Phone"", ""Laptop""]",111.19,{},191138,1,Africa +2023-10-11,25277,4920,"[""Keyboard""]",3009.42,{},198516,1,Europe +2023-04-06,25278,5316,"[""Headphones""]",4853.52,"{""seasonal"": ""15%""}",13200,0,North America +2023-12-22,25279,638,"[""Tablet"", ""Laptop""]",4771.93,{},13811,1,Asia +2024-12-01,25280,7556,"[""Keyboard"", ""Laptop""]",2421.0,"{"""": ""24%""}",26791,0,North America +2024-02-15,25281,41,"[""Laptop"", ""Tablet""]",3590.98,{},67863,1,North America +2023-06-03,25282,980,"[""Phone""]",2433.09,{},246134,1,Africa +2024-05-17,25283,4251,"[""Charger""]",389.47,"{""loyalty"": ""18%""}",224754,1,Africa +2024-04-12,25284,1948,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3315.58,{},246296,1,Asia +2024-08-28,25285,4796,"[""Charger"", ""Phone"", ""Keyboard""]",728.28,{},192741,1,South America +2023-02-14,25286,5168,"[""Keyboard""]",2824.06,{},3064,1,Africa +2023-06-15,25287,8039,"[""Tablet"", ""Monitor"", ""Keyboard""]",4074.94,{},290690,1,North America +2023-09-30,25288,4609,"[""Tablet"", ""Laptop"", ""Monitor""]",1795.97,"{"""": ""11%""}",72266,1,North America +2023-05-29,25289,3824,"[""Headphones"", ""Phone""]",2748.95,"{""promo"": ""30%""}",161700,1,South America +2024-11-27,25290,1869,"[""Wireless Mouse""]",4742.52,{},30391,0,South America +2024-06-07,25291,2419,"[""Laptop""]",2997.14,{},293961,0,Europe +2024-05-16,25292,78,"[""Charger""]",2139.76,{},30205,1,Asia +2023-05-09,25293,8379,"[""Laptop"", ""Monitor"", ""Phone""]",2923.32,{},237569,1,Europe +2023-01-11,25294,9243,"[""Tablet"", ""Headphones"", ""Monitor""]",4071.52,"{"""": ""16%""}",118377,1,Africa +2023-09-16,25295,9338,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3973.98,"{""promo"": ""8%""}",84653,1,Asia +2024-03-23,25296,673,"[""Laptop"", ""Monitor""]",3113.82,{},255032,1,North America +2024-07-13,25297,2007,"[""Phone""]",484.15,"{"""": ""20%""}",203497,1,Asia +2024-03-31,25298,5441,"[""Laptop"", ""Phone""]",4485.64,{},90820,0,Europe +2024-06-04,25299,4904,"[""Wireless Mouse"", ""Charger""]",3479.88,"{""promo"": ""10%""}",24164,1,Africa +2024-03-27,25300,5005,"[""Charger"", ""Monitor"", ""Keyboard""]",1749.86,{},15586,0,Africa +2024-07-13,25301,6983,"[""Laptop"", ""Charger""]",3702.62,"{""loyalty"": ""5%""}",242611,1,Europe +2023-06-10,25302,6503,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2465.32,{},58818,0,Africa +2023-08-23,25303,7130,"[""Monitor"", ""Laptop"", ""Phone""]",4026.77,"{""seasonal"": ""10%""}",25546,1,North America +2024-05-17,25304,8496,"[""Charger"", ""Headphones""]",64.83,"{""loyalty"": ""14%""}",284211,0,South America +2023-01-14,25305,5828,"[""Charger""]",2007.6,{},286473,1,Africa +2023-10-19,25306,8982,"[""Headphones"", ""Monitor""]",4409.8,{},26099,1,Asia +2024-11-16,25307,3736,"[""Laptop""]",3040.55,"{""loyalty"": ""22%""}",238624,0,Africa +2024-01-28,25308,6298,"[""Headphones""]",1031.72,"{""loyalty"": ""17%""}",160450,0,Europe +2024-10-28,25309,6760,"[""Charger""]",1026.43,"{""seasonal"": ""23%""}",141869,1,South America +2023-03-25,25310,4612,"[""Wireless Mouse"", ""Headphones""]",2900.52,{},167432,1,North America +2024-02-21,25311,1800,"[""Monitor"", ""Tablet"", ""Phone""]",4340.3,{},69811,0,Asia +2023-12-04,25312,4629,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1386.72,{},78033,1,Asia +2024-04-02,25313,5779,"[""Phone"", ""Headphones"", ""Tablet""]",487.28,{},5133,1,North America +2023-02-20,25314,9269,"[""Laptop"", ""Monitor"", ""Keyboard""]",1115.1,{},133661,0,North America +2023-02-24,25315,8554,"[""Laptop"", ""Monitor""]",756.12,"{""promo"": ""28%""}",177359,0,South America +2024-11-27,25316,7024,"[""Charger""]",4030.12,{},273231,0,Asia +2023-06-22,25317,492,"[""Keyboard""]",3367.09,"{""seasonal"": ""23%""}",209872,1,Africa +2024-07-02,25318,797,"[""Monitor"", ""Keyboard""]",3466.63,{},86068,0,Africa +2023-09-13,25319,4859,"[""Wireless Mouse""]",1305.49,"{""loyalty"": ""7%""}",214741,1,Africa +2024-05-06,25320,6424,"[""Headphones"", ""Tablet""]",859.56,"{""promo"": ""25%""}",137059,1,Europe +2024-06-18,25321,5423,"[""Tablet"", ""Wireless Mouse""]",2347.83,"{""loyalty"": ""16%""}",62129,0,Africa +2023-06-06,25322,1318,"[""Charger""]",2180.16,{},271072,1,North America +2023-03-29,25323,9144,"[""Monitor""]",3937.39,"{""seasonal"": ""18%""}",214127,0,Africa +2023-07-18,25324,4360,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",869.32,"{""promo"": ""19%""}",233879,1,Africa +2024-08-04,25325,2418,"[""Phone"", ""Headphones""]",2104.24,{},58276,1,Asia +2023-09-18,25326,9951,"[""Charger"", ""Headphones""]",4721.86,{},177093,1,Europe +2024-05-08,25327,5513,"[""Keyboard"", ""Tablet""]",652.17,{},36462,1,South America +2024-07-20,25328,1967,"[""Keyboard""]",2143.66,{},137806,1,Africa +2024-04-03,25329,6009,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3087.85,{},128130,1,North America +2024-05-03,25330,7609,"[""Charger"", ""Wireless Mouse""]",3656.9,"{"""": ""23%""}",202661,1,Europe +2024-10-27,25331,1300,"[""Monitor"", ""Laptop""]",3509.18,"{""promo"": ""28%""}",58350,1,Asia +2023-01-01,25332,3152,"[""Monitor""]",4879.01,{},180923,0,Africa +2023-08-15,25333,4281,"[""Wireless Mouse""]",476.93,{},169351,0,Europe +2024-03-09,25334,3021,"[""Headphones"", ""Keyboard""]",517.48,"{""promo"": ""18%""}",249859,0,North America +2023-05-30,25335,7889,"[""Laptop"", ""Wireless Mouse""]",581.33,{},129096,1,Europe +2023-09-06,25336,8220,"[""Tablet"", ""Charger""]",1698.94,"{"""": ""27%""}",182007,1,South America +2024-08-04,25337,7053,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1088.78,{},249110,0,North America +2024-02-11,25338,2325,"[""Laptop"", ""Headphones""]",3611.73,"{"""": ""5%""}",184178,0,Asia +2023-12-28,25339,5067,"[""Wireless Mouse"", ""Headphones""]",4502.25,{},136087,1,Asia +2024-12-30,25340,2496,"[""Keyboard"", ""Monitor"", ""Laptop""]",1505.54,{},13192,0,South America +2023-12-03,25341,6489,"[""Charger"", ""Wireless Mouse""]",4049.54,"{""promo"": ""14%""}",44001,1,Asia +2024-04-06,25342,7597,"[""Keyboard""]",2196.54,{},88900,1,Asia +2023-04-03,25343,8418,"[""Charger"", ""Wireless Mouse""]",229.31,{},88660,1,Africa +2024-12-03,25344,1110,"[""Phone"", ""Laptop""]",2080.95,{},107968,0,Europe +2023-12-07,25345,1941,"[""Keyboard""]",4892.27,{},154024,0,Europe +2024-03-08,25346,3121,"[""Keyboard"", ""Tablet""]",3128.64,{},92852,1,North America +2024-08-29,25347,8139,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4109.47,"{"""": ""28%""}",55676,0,Asia +2024-08-12,25348,1518,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4350.88,{},259847,1,North America +2023-05-09,25349,2500,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2186.2,"{"""": ""29%""}",259806,1,Europe +2023-03-27,25350,8501,"[""Headphones"", ""Keyboard""]",1450.5,{},276870,0,North America +2024-07-04,25351,5739,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4816.44,"{""seasonal"": ""21%""}",23881,1,Asia +2023-01-19,25352,3085,"[""Headphones"", ""Phone"", ""Keyboard""]",3969.39,"{""loyalty"": ""30%""}",248716,0,Europe +2024-11-03,25353,4799,"[""Phone"", ""Keyboard"", ""Charger""]",4577.37,"{"""": ""8%""}",213521,0,Africa +2024-10-22,25354,36,"[""Monitor"", ""Tablet"", ""Keyboard""]",1454.88,{},99248,0,Asia +2024-11-24,25355,212,"[""Phone""]",4024.25,{},159715,1,South America +2024-02-22,25356,3836,"[""Headphones""]",4001.46,"{"""": ""7%""}",278083,1,Africa +2023-08-01,25357,5068,"[""Tablet"", ""Wireless Mouse""]",3798.28,"{""loyalty"": ""11%""}",191639,1,Africa +2023-02-23,25358,8505,"[""Wireless Mouse""]",1024.22,{},34119,1,Africa +2023-05-18,25359,6960,"[""Phone"", ""Tablet"", ""Headphones""]",2158.35,{},169549,1,South America +2024-02-17,25360,1956,"[""Headphones""]",4124.6,{},236156,0,Asia +2023-11-06,25361,7616,"[""Headphones"", ""Monitor""]",4682.42,"{"""": ""22%""}",100091,1,Asia +2023-01-03,25362,5383,"[""Keyboard"", ""Headphones""]",4392.73,"{""promo"": ""13%""}",17495,0,Asia +2023-07-13,25363,2756,"[""Tablet""]",4111.15,{},109937,1,South America +2023-09-12,25364,2319,"[""Wireless Mouse""]",4409.9,{},15807,1,South America +2024-06-16,25365,8827,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4026.43,{},136355,1,Europe +2023-01-12,25366,9549,"[""Tablet""]",732.39,{},52521,0,Africa +2024-02-25,25367,3193,"[""Monitor"", ""Wireless Mouse""]",3352.95,"{""promo"": ""10%""}",292103,1,Africa +2024-09-07,25368,3153,"[""Tablet""]",3173.64,{},246470,1,South America +2024-09-22,25369,3246,"[""Phone""]",103.91,{},288353,0,Europe +2024-08-12,25370,8341,"[""Laptop"", ""Headphones"", ""Tablet""]",1233.15,{},252528,1,North America +2024-08-02,25371,1976,"[""Headphones"", ""Phone""]",1583.65,{},282096,0,Europe +2023-11-01,25372,3167,"[""Laptop""]",4874.37,{},268827,1,Africa +2023-08-31,25373,1484,"[""Headphones""]",556.65,"{""seasonal"": ""8%""}",270479,1,South America +2023-04-05,25374,7349,"[""Wireless Mouse"", ""Monitor""]",4248.45,{},297390,1,South America +2024-05-12,25375,4609,"[""Tablet""]",3082.88,{},132857,0,South America +2023-01-04,25376,910,"[""Keyboard"", ""Tablet"", ""Headphones""]",1333.04,{},72755,0,North America +2023-03-12,25377,4450,"[""Tablet"", ""Laptop""]",2775.2,{},168344,0,Africa +2023-11-06,25378,8961,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3169.21,{},224094,0,Europe +2023-12-16,25379,5199,"[""Monitor"", ""Phone"", ""Keyboard""]",330.76,{},72198,1,South America +2023-04-09,25380,6939,"[""Laptop"", ""Headphones""]",3130.66,"{""promo"": ""25%""}",61723,1,Africa +2023-09-07,25381,8566,"[""Keyboard"", ""Laptop"", ""Headphones""]",3388.86,"{""seasonal"": ""11%""}",134204,0,South America +2024-07-22,25382,6411,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",353.92,"{"""": ""18%""}",221968,0,Europe +2024-08-29,25383,4476,"[""Headphones"", ""Keyboard""]",63.03,"{""loyalty"": ""7%""}",64709,0,Europe +2023-04-06,25384,6333,"[""Phone""]",2356.12,{},50955,1,South America +2024-11-09,25385,1762,"[""Wireless Mouse""]",4540.22,"{"""": ""11%""}",147147,0,Asia +2023-03-09,25386,2201,"[""Monitor"", ""Keyboard""]",581.73,"{""seasonal"": ""17%""}",145554,0,North America +2024-04-02,25387,7672,"[""Monitor""]",2714.81,{},63958,1,Europe +2023-09-06,25388,9641,"[""Charger"", ""Phone""]",1805.2,{},107879,1,Asia +2023-11-05,25389,8823,"[""Keyboard"", ""Laptop"", ""Tablet""]",3181.86,{},261386,1,South America +2024-05-12,25390,6217,"[""Phone"", ""Charger""]",3882.62,"{""seasonal"": ""12%""}",277575,1,Asia +2024-06-11,25391,4988,"[""Wireless Mouse"", ""Keyboard""]",2257.57,"{""loyalty"": ""9%""}",142341,1,Asia +2023-08-22,25392,1530,"[""Tablet"", ""Phone""]",132.64,{},158369,0,Africa +2023-08-16,25393,1676,"[""Wireless Mouse""]",2384.25,{},276325,1,Asia +2024-12-18,25394,6738,"[""Charger""]",4058.45,{},229156,1,Africa +2023-09-08,25395,6152,"[""Laptop"", ""Phone"", ""Headphones""]",3107.3,"{""loyalty"": ""12%""}",138397,1,Europe +2023-05-04,25396,6845,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1411.77,"{""promo"": ""30%""}",241956,0,Africa +2024-10-24,25397,5403,"[""Phone"", ""Laptop"", ""Keyboard""]",2468.38,{},284800,1,Europe +2024-12-22,25398,5649,"[""Phone"", ""Tablet""]",691.2,{},272693,1,Africa +2023-07-05,25399,5316,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4714.63,"{"""": ""28%""}",202838,1,Asia +2023-01-20,25400,707,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1504.68,{},145307,1,Europe +2023-06-30,25401,7776,"[""Keyboard"", ""Tablet""]",2867.47,"{""loyalty"": ""28%""}",30759,1,Europe +2023-12-03,25402,8948,"[""Keyboard"", ""Headphones"", ""Charger""]",2513.65,{},143042,1,Asia +2023-09-03,25403,5180,"[""Wireless Mouse"", ""Keyboard""]",2591.47,"{"""": ""18%""}",215232,0,Europe +2023-09-11,25404,3093,"[""Tablet"", ""Charger""]",3804.58,"{""seasonal"": ""21%""}",133119,0,Africa +2024-05-15,25405,8694,"[""Charger"", ""Headphones""]",2560.14,{},145935,1,Asia +2023-08-13,25406,2640,"[""Monitor"", ""Laptop"", ""Keyboard""]",4850.95,{},120509,1,Africa +2024-09-23,25407,4883,"[""Keyboard""]",4625.98,"{""seasonal"": ""25%""}",181197,0,South America +2024-06-03,25408,8247,"[""Phone"", ""Tablet""]",2429.83,{},78715,1,Africa +2024-08-12,25409,9323,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4554.95,{},201390,1,Asia +2024-06-22,25410,2559,"[""Monitor"", ""Wireless Mouse""]",3559.34,"{""promo"": ""17%""}",177453,1,Asia +2024-10-20,25411,708,"[""Charger"", ""Phone""]",3428.19,"{"""": ""28%""}",106794,1,Asia +2023-02-05,25412,8415,"[""Phone"", ""Wireless Mouse""]",1233.11,"{""loyalty"": ""15%""}",17263,0,Europe +2024-09-08,25413,5849,"[""Keyboard""]",2338.75,"{""promo"": ""20%""}",172914,1,Europe +2024-12-16,25414,2915,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3490.84,"{""loyalty"": ""13%""}",293239,0,Asia +2023-05-30,25415,7716,"[""Charger"", ""Headphones"", ""Tablet""]",2902.82,"{"""": ""28%""}",110543,0,South America +2023-08-24,25416,6303,"[""Tablet""]",2403.79,"{""seasonal"": ""6%""}",54197,1,Asia +2024-04-09,25417,2165,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3254.68,{},284844,1,Africa +2024-01-14,25418,1950,"[""Wireless Mouse""]",458.81,"{""promo"": ""6%""}",242269,0,Europe +2024-03-12,25419,966,"[""Charger""]",1126.89,"{""seasonal"": ""16%""}",204105,0,Europe +2024-06-06,25420,3678,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4791.76,{},227989,0,Africa +2023-04-30,25421,2877,"[""Monitor"", ""Headphones"", ""Charger""]",3956.66,"{""loyalty"": ""23%""}",269831,1,Asia +2023-05-03,25422,8175,"[""Laptop"", ""Keyboard""]",2031.69,"{""loyalty"": ""6%""}",145698,0,North America +2024-04-18,25423,7519,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",53.93,"{""loyalty"": ""10%""}",265313,1,Africa +2024-11-10,25424,5175,"[""Monitor""]",112.43,"{""seasonal"": ""26%""}",181374,1,South America +2024-07-15,25425,1188,"[""Wireless Mouse""]",3877.41,{},102379,1,Europe +2023-06-21,25426,4353,"[""Phone"", ""Monitor""]",1145.44,"{"""": ""11%""}",273738,0,Europe +2024-09-22,25427,9327,"[""Keyboard"", ""Charger"", ""Headphones""]",3380.74,"{""seasonal"": ""28%""}",206921,0,Europe +2023-08-04,25428,8278,"[""Monitor"", ""Keyboard""]",3655.22,{},272467,0,Asia +2024-11-27,25429,2911,"[""Charger""]",755.32,{},10191,0,Africa +2023-01-22,25430,8850,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1781.69,{},186014,0,South America +2024-08-02,25431,8014,"[""Headphones"", ""Tablet""]",4331.29,"{""promo"": ""14%""}",31375,0,Africa +2023-06-25,25432,8069,"[""Laptop""]",3305.53,"{"""": ""15%""}",97623,1,Africa +2023-08-28,25433,6680,"[""Phone""]",4697.23,{},240546,1,Asia +2023-08-07,25434,1772,"[""Monitor"", ""Tablet"", ""Laptop""]",2376.49,{},85948,0,North America +2024-01-27,25435,1714,"[""Charger"", ""Laptop""]",259.77,"{""loyalty"": ""5%""}",197708,0,Africa +2023-10-29,25436,7240,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1033.67,"{""seasonal"": ""29%""}",5111,0,Africa +2023-09-23,25437,9698,"[""Headphones"", ""Laptop"", ""Monitor""]",2944.59,"{""seasonal"": ""21%""}",8359,1,Europe +2024-06-10,25438,8329,"[""Headphones"", ""Tablet""]",2898.34,{},294681,0,South America +2023-10-02,25439,513,"[""Charger"", ""Phone""]",2744.19,"{""promo"": ""7%""}",230798,0,South America +2024-11-14,25440,5805,"[""Keyboard"", ""Laptop"", ""Headphones""]",2765.13,{},49638,0,Africa +2023-09-25,25441,1853,"[""Charger"", ""Keyboard"", ""Laptop""]",4038.57,"{""loyalty"": ""6%""}",224526,0,North America +2024-04-28,25442,3947,"[""Keyboard"", ""Headphones"", ""Laptop""]",4269.56,{},4831,0,Europe +2023-08-12,25443,3332,"[""Monitor""]",376.31,"{"""": ""24%""}",211688,1,Asia +2023-11-21,25444,609,"[""Tablet"", ""Phone"", ""Charger""]",2778.71,{},170464,1,Europe +2024-11-05,25445,1356,"[""Laptop"", ""Headphones"", ""Tablet""]",3534.29,"{"""": ""25%""}",200801,0,South America +2023-02-26,25446,7787,"[""Laptop""]",3860.47,{},117770,1,Asia +2024-10-21,25447,8569,"[""Phone"", ""Tablet""]",3361.93,"{"""": ""30%""}",20207,0,Africa +2023-08-02,25448,8811,"[""Monitor"", ""Keyboard""]",1753.61,"{""promo"": ""24%""}",287893,1,Europe +2024-03-27,25449,9732,"[""Laptop""]",4146.18,{},53983,1,Asia +2024-03-11,25450,1836,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",421.77,"{"""": ""15%""}",52767,1,North America +2023-04-16,25451,1832,"[""Wireless Mouse"", ""Keyboard""]",1684.45,"{""promo"": ""7%""}",267781,1,Asia +2024-05-07,25452,9791,"[""Headphones"", ""Wireless Mouse""]",2030.16,"{""loyalty"": ""21%""}",270718,1,Asia +2023-06-10,25453,5497,"[""Headphones"", ""Monitor"", ""Phone""]",4771.21,"{"""": ""17%""}",5633,0,Africa +2024-11-25,25454,8951,"[""Tablet"", ""Headphones"", ""Phone""]",1349.8,"{""promo"": ""20%""}",263606,0,Asia +2024-05-09,25455,4573,"[""Wireless Mouse"", ""Monitor""]",1129.58,"{""promo"": ""11%""}",297331,0,Africa +2023-05-15,25456,8446,"[""Phone"", ""Tablet""]",4229.06,"{""seasonal"": ""11%""}",133798,1,South America +2023-05-19,25457,5481,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",298.31,"{""promo"": ""11%""}",17068,0,North America +2024-04-05,25458,4385,"[""Monitor""]",3462.68,"{""promo"": ""22%""}",293400,1,Africa +2024-03-02,25459,287,"[""Wireless Mouse"", ""Monitor""]",3485.79,{},250974,0,Africa +2024-12-21,25460,6187,"[""Monitor"", ""Laptop""]",3423.27,"{""promo"": ""5%""}",177150,0,Africa +2024-09-26,25461,8624,"[""Keyboard"", ""Charger""]",3255.94,"{""seasonal"": ""17%""}",295487,0,North America +2023-12-08,25462,3293,"[""Laptop"", ""Phone""]",2723.55,{},143288,1,North America +2024-11-29,25463,8894,"[""Headphones""]",3803.81,{},114039,1,Africa +2023-03-19,25464,2561,"[""Keyboard"", ""Phone"", ""Monitor""]",1697.53,{},129874,1,Africa +2023-07-31,25465,2909,"[""Tablet""]",598.43,"{""promo"": ""7%""}",278037,1,Asia +2023-10-03,25466,6803,"[""Phone"", ""Tablet""]",1271.96,{},130073,0,South America +2023-01-03,25467,2052,"[""Phone"", ""Keyboard""]",3182.45,{},94769,1,Africa +2023-03-25,25468,4830,"[""Wireless Mouse""]",453.55,"{"""": ""5%""}",193479,0,North America +2023-05-25,25469,2534,"[""Headphones""]",4049.83,{},210057,1,South America +2024-10-08,25470,7945,"[""Laptop"", ""Tablet""]",2940.02,{},51572,0,North America +2023-02-05,25471,4534,"[""Monitor"", ""Laptop""]",3248.72,"{"""": ""7%""}",15985,0,South America +2023-02-18,25472,7674,"[""Phone"", ""Tablet""]",2373.36,{},292294,0,South America +2023-07-23,25473,2484,"[""Monitor"", ""Wireless Mouse""]",1504.54,{},66513,1,Asia +2023-12-27,25474,6749,"[""Keyboard""]",2969.55,"{"""": ""30%""}",293602,0,North America +2023-10-12,25475,8885,"[""Headphones""]",347.92,"{"""": ""29%""}",247039,1,North America +2023-09-23,25476,376,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1346.66,{},166446,0,Africa +2023-01-12,25477,7294,"[""Phone"", ""Headphones""]",1696.59,{},166358,1,North America +2023-09-17,25478,5812,"[""Monitor""]",490.95,"{""promo"": ""10%""}",121969,1,Europe +2023-01-19,25479,2802,"[""Tablet"", ""Wireless Mouse""]",3799.91,{},39010,1,North America +2023-03-30,25480,7502,"[""Keyboard"", ""Phone"", ""Tablet""]",784.0,{},137303,1,South America +2024-04-16,25481,9954,"[""Keyboard""]",3831.96,"{""seasonal"": ""9%""}",193521,1,Europe +2024-11-01,25482,7164,"[""Monitor"", ""Charger"", ""Phone""]",1960.66,"{"""": ""19%""}",254346,1,Europe +2023-08-04,25483,1661,"[""Monitor"", ""Charger""]",3578.92,{},20376,1,Asia +2024-06-03,25484,6170,"[""Monitor""]",4260.85,{},51654,0,North America +2024-03-23,25485,6104,"[""Charger""]",4206.92,"{""promo"": ""22%""}",33956,0,South America +2023-08-22,25486,5127,"[""Keyboard"", ""Monitor""]",2154.94,"{"""": ""6%""}",157954,1,Europe +2024-11-11,25487,2837,"[""Tablet""]",2836.19,"{"""": ""6%""}",49789,1,South America +2024-12-24,25488,8717,"[""Headphones"", ""Charger"", ""Phone""]",117.13,{},12792,1,Africa +2023-10-28,25489,8588,"[""Laptop"", ""Tablet"", ""Monitor""]",392.18,"{""loyalty"": ""16%""}",223867,0,South America +2024-05-12,25490,3124,"[""Charger"", ""Wireless Mouse""]",4955.98,"{""loyalty"": ""11%""}",186204,1,North America +2024-11-13,25491,8294,"[""Keyboard"", ""Wireless Mouse""]",3386.16,"{""promo"": ""14%""}",203672,1,South America +2024-05-01,25492,6231,"[""Laptop""]",2797.03,"{""seasonal"": ""12%""}",282550,0,Asia +2024-12-30,25493,6088,"[""Tablet"", ""Charger"", ""Phone""]",2758.09,{},45560,0,Asia +2023-05-09,25494,6190,"[""Wireless Mouse""]",4910.65,{},220247,1,South America +2024-04-08,25495,5305,"[""Laptop"", ""Headphones""]",1938.86,{},45788,1,South America +2023-07-08,25496,9408,"[""Charger"", ""Keyboard""]",1957.18,{},92735,1,South America +2023-07-30,25497,8222,"[""Phone"", ""Wireless Mouse""]",976.59,{},254208,0,North America +2024-05-28,25498,1216,"[""Headphones""]",578.3,"{""loyalty"": ""8%""}",181854,1,Africa +2023-08-25,25499,9078,"[""Tablet"", ""Laptop""]",4687.18,{},284583,1,Africa +2024-12-09,25500,5774,"[""Laptop""]",459.35,"{"""": ""19%""}",83083,0,Africa +2024-05-03,25501,1348,"[""Tablet"", ""Charger"", ""Laptop""]",3543.19,{},75864,1,Africa +2023-10-02,25502,4685,"[""Phone"", ""Tablet""]",3440.02,{},174147,0,South America +2023-08-17,25503,8622,"[""Monitor"", ""Keyboard"", ""Laptop""]",4271.52,"{""seasonal"": ""25%""}",251285,0,South America +2023-02-02,25504,4275,"[""Tablet""]",362.97,"{"""": ""16%""}",52884,0,Europe +2023-12-01,25505,6309,"[""Headphones""]",2864.87,{},12264,1,North America +2024-07-27,25506,8763,"[""Wireless Mouse"", ""Headphones""]",3351.29,{},221283,0,Asia +2024-06-18,25507,3247,"[""Wireless Mouse"", ""Keyboard""]",3580.2,{},195232,1,Africa +2023-09-22,25508,2139,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",566.72,"{""loyalty"": ""18%""}",211768,0,Africa +2024-05-26,25509,8297,"[""Tablet"", ""Headphones"", ""Laptop""]",4087.96,"{"""": ""25%""}",187759,1,South America +2023-09-23,25510,7707,"[""Laptop"", ""Headphones""]",1346.21,{},54655,1,South America +2023-05-13,25511,8536,"[""Charger""]",4423.74,{},63900,1,North America +2023-12-13,25512,1560,"[""Keyboard"", ""Charger""]",4797.74,{},187776,1,Europe +2024-08-12,25513,8365,"[""Headphones"", ""Phone"", ""Tablet""]",623.6,"{""promo"": ""6%""}",287379,1,North America +2023-01-05,25514,7568,"[""Phone""]",3549.72,"{""promo"": ""6%""}",34426,1,South America +2024-12-07,25515,9341,"[""Laptop"", ""Phone"", ""Monitor""]",3570.33,{},237139,0,North America +2024-12-02,25516,2321,"[""Tablet"", ""Wireless Mouse""]",1628.94,"{""promo"": ""14%""}",237146,0,South America +2023-06-10,25517,3438,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1186.63,"{""promo"": ""18%""}",166423,1,North America +2023-12-30,25518,1432,"[""Headphones"", ""Monitor""]",603.48,{},260892,0,Europe +2024-12-10,25519,7050,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1612.09,{},177462,1,Asia +2023-05-04,25520,5218,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2863.97,{},256302,0,North America +2023-09-15,25521,6886,"[""Keyboard""]",4158.17,{},112164,1,South America +2024-02-04,25522,4715,"[""Tablet""]",4477.41,{},64997,1,Africa +2024-08-11,25523,4800,"[""Keyboard""]",4129.88,{},86244,0,South America +2024-07-04,25524,1775,"[""Charger""]",2279.61,"{""promo"": ""18%""}",104297,1,Europe +2023-07-18,25525,122,"[""Keyboard"", ""Phone"", ""Tablet""]",2649.2,{},233192,1,South America +2023-09-09,25526,9623,"[""Monitor""]",3452.26,"{""promo"": ""7%""}",164691,1,North America +2023-07-04,25527,2878,"[""Keyboard"", ""Laptop""]",4300.27,{},132224,0,Africa +2024-11-13,25528,5542,"[""Laptop""]",3440.51,"{""promo"": ""12%""}",130294,1,Africa +2024-12-14,25529,7710,"[""Charger"", ""Tablet"", ""Headphones""]",4159.04,"{"""": ""25%""}",266679,0,South America +2024-01-31,25530,3788,"[""Headphones"", ""Monitor""]",1474.44,"{""seasonal"": ""29%""}",116427,0,South America +2023-06-10,25531,1484,"[""Keyboard"", ""Tablet""]",1223.74,"{""promo"": ""5%""}",64007,1,North America +2024-12-08,25532,5968,"[""Headphones""]",3210.83,"{""seasonal"": ""24%""}",164161,1,North America +2023-11-18,25533,7207,"[""Charger"", ""Headphones""]",523.97,"{"""": ""6%""}",37514,0,Africa +2023-07-15,25534,7001,"[""Tablet""]",2038.07,"{""loyalty"": ""24%""}",89999,1,Europe +2023-12-18,25535,475,"[""Laptop""]",3661.51,{},254996,1,Europe +2024-08-06,25536,9013,"[""Phone""]",3147.63,"{""loyalty"": ""27%""}",299715,0,Asia +2024-02-08,25537,6031,"[""Phone""]",2786.02,{},225314,0,Europe +2024-03-06,25538,2628,"[""Headphones"", ""Monitor"", ""Phone""]",2545.14,{},144116,0,Africa +2024-08-12,25539,2376,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3515.23,"{"""": ""25%""}",195872,0,Europe +2023-06-21,25540,1382,"[""Laptop"", ""Phone""]",1867.11,{},70080,0,Europe +2023-11-06,25541,1875,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3853.86,{},209858,0,South America +2024-08-26,25542,858,"[""Keyboard""]",3587.64,{},131890,1,Europe +2023-12-30,25543,7527,"[""Keyboard""]",1811.04,"{""loyalty"": ""21%""}",258601,0,Asia +2024-01-30,25544,6573,"[""Keyboard"", ""Wireless Mouse""]",4209.96,{},121829,1,Europe +2024-05-12,25545,8963,"[""Charger"", ""Headphones"", ""Monitor""]",3138.99,{},281162,0,Asia +2023-08-07,25546,9862,"[""Tablet""]",4043.66,"{""loyalty"": ""23%""}",248927,1,Europe +2023-01-27,25547,3676,"[""Phone"", ""Tablet""]",4528.57,"{""loyalty"": ""6%""}",223414,0,Europe +2024-06-30,25548,3864,"[""Keyboard"", ""Wireless Mouse""]",2625.6,{},190853,1,Asia +2023-03-15,25549,496,"[""Keyboard"", ""Laptop""]",3759.96,"{""seasonal"": ""24%""}",144129,0,North America +2024-05-09,25550,4267,"[""Wireless Mouse""]",4057.81,{},36409,1,Europe +2023-08-21,25551,7089,"[""Monitor""]",149.48,"{""promo"": ""14%""}",88264,1,Europe +2023-05-11,25552,6819,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",468.62,{},136374,0,North America +2023-04-20,25553,5545,"[""Phone""]",3640.94,{},248718,0,Europe +2023-01-01,25554,8178,"[""Keyboard""]",2706.15,"{""loyalty"": ""8%""}",197118,0,North America +2023-08-20,25555,2111,"[""Laptop"", ""Keyboard"", ""Phone""]",3393.71,{},63007,0,Africa +2023-11-26,25556,4841,"[""Phone"", ""Tablet""]",2401.13,{},111596,0,North America +2024-04-02,25557,7330,"[""Tablet""]",3290.68,"{""loyalty"": ""29%""}",143226,1,North America +2023-04-19,25558,3546,"[""Phone"", ""Keyboard"", ""Tablet""]",3814.2,{},286112,0,Africa +2024-06-24,25559,2148,"[""Phone"", ""Keyboard"", ""Laptop""]",3197.48,{},140865,1,Africa +2024-10-10,25560,3215,"[""Wireless Mouse"", ""Keyboard""]",2190.66,"{""promo"": ""8%""}",186113,1,Europe +2023-01-22,25561,1328,"[""Tablet"", ""Laptop"", ""Charger""]",1207.1,{},117893,0,Europe +2023-06-12,25562,8027,"[""Headphones""]",4830.98,"{""loyalty"": ""8%""}",190747,1,South America +2023-10-31,25563,4279,"[""Keyboard"", ""Headphones"", ""Tablet""]",206.31,{},30719,1,Europe +2023-01-26,25564,8735,"[""Tablet""]",2322.63,"{"""": ""23%""}",136020,1,South America +2024-04-11,25565,5536,"[""Keyboard""]",304.05,{},155078,1,Africa +2023-02-24,25566,9801,"[""Headphones"", ""Phone""]",3608.8,"{""seasonal"": ""24%""}",47173,0,Europe +2024-01-30,25567,5039,"[""Charger""]",627.29,"{"""": ""7%""}",1847,0,North America +2024-10-01,25568,1942,"[""Monitor"", ""Phone""]",2383.82,{},258250,1,Asia +2024-09-15,25569,8985,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",882.19,"{""promo"": ""24%""}",99665,0,Asia +2024-10-13,25570,663,"[""Laptop""]",1460.85,{},221560,1,Africa +2024-10-06,25571,5296,"[""Phone""]",490.07,"{""promo"": ""15%""}",259628,0,Africa +2023-02-27,25572,2481,"[""Tablet"", ""Phone"", ""Charger""]",4779.61,"{"""": ""7%""}",53544,0,North America +2023-08-29,25573,8207,"[""Phone"", ""Keyboard""]",1868.84,"{"""": ""24%""}",70700,1,South America +2023-05-25,25574,3138,"[""Wireless Mouse"", ""Laptop""]",3827.44,"{""loyalty"": ""10%""}",8135,1,South America +2024-08-17,25575,6144,"[""Charger""]",3984.43,"{"""": ""29%""}",5254,1,North America +2023-01-07,25576,1262,"[""Monitor""]",2605.94,"{""seasonal"": ""30%""}",236788,1,Asia +2024-11-11,25577,7996,"[""Charger"", ""Phone"", ""Keyboard""]",253.15,"{""promo"": ""15%""}",85369,1,Africa +2024-06-17,25578,4685,"[""Charger"", ""Laptop""]",161.98,"{""loyalty"": ""5%""}",174150,0,Africa +2023-06-21,25579,7549,"[""Laptop"", ""Charger""]",2994.61,"{""promo"": ""8%""}",42651,1,Africa +2023-08-02,25580,6411,"[""Laptop"", ""Charger"", ""Keyboard""]",3962.78,{},42070,0,Africa +2024-12-20,25581,6512,"[""Tablet""]",1786.58,"{""seasonal"": ""18%""}",42830,1,North America +2024-10-03,25582,5366,"[""Tablet"", ""Phone""]",152.69,"{""seasonal"": ""5%""}",29060,0,Europe +2024-01-07,25583,9538,"[""Phone""]",3345.91,{},146917,0,Africa +2024-08-15,25584,3418,"[""Laptop"", ""Phone""]",4339.18,{},75233,1,Asia +2024-12-26,25585,3064,"[""Headphones"", ""Laptop"", ""Monitor""]",4251.06,{},143692,1,Africa +2023-09-25,25586,2155,"[""Laptop"", ""Charger"", ""Tablet""]",1215.16,{},274440,1,South America +2024-04-27,25587,5785,"[""Tablet"", ""Monitor""]",4414.88,{},150869,0,Europe +2024-10-21,25588,2975,"[""Headphones""]",2425.9,{},101917,1,Africa +2023-07-12,25589,9061,"[""Monitor"", ""Headphones""]",4379.89,{},38645,1,South America +2023-01-06,25590,4845,"[""Keyboard"", ""Charger"", ""Phone""]",4828.59,"{""seasonal"": ""20%""}",111064,0,Europe +2024-11-23,25591,5058,"[""Phone"", ""Wireless Mouse""]",4057.24,"{""promo"": ""25%""}",47789,0,South America +2023-09-17,25592,4095,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3607.17,{},48679,0,Africa +2023-09-24,25593,2660,"[""Wireless Mouse""]",275.42,"{""seasonal"": ""25%""}",4316,1,Europe +2024-06-19,25594,9888,"[""Headphones"", ""Keyboard""]",4341.35,{},180955,1,Asia +2024-11-22,25595,2248,"[""Phone"", ""Laptop""]",119.89,"{""promo"": ""21%""}",241062,0,Asia +2024-01-21,25596,9124,"[""Headphones""]",2295.75,{},81762,0,Asia +2023-04-24,25597,582,"[""Monitor"", ""Keyboard""]",2469.02,{},85253,0,North America +2024-12-13,25598,3899,"[""Headphones"", ""Phone"", ""Keyboard""]",4702.48,"{""promo"": ""5%""}",208166,1,North America +2023-02-19,25599,4133,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1218.14,{},210619,1,Africa +2023-10-24,25600,5490,"[""Phone""]",1315.56,{},112418,1,Africa +2024-03-13,25601,6706,"[""Tablet"", ""Headphones""]",4614.45,{},48128,1,Africa +2024-09-11,25602,18,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4131.74,"{""loyalty"": ""11%""}",207167,1,South America +2024-04-03,25603,1356,"[""Tablet"", ""Phone"", ""Keyboard""]",3926.73,"{"""": ""13%""}",143635,0,Africa +2023-07-08,25604,1088,"[""Phone"", ""Keyboard"", ""Headphones""]",541.48,{},140717,0,Europe +2023-11-08,25605,1381,"[""Monitor"", ""Laptop""]",3418.0,"{""loyalty"": ""25%""}",254608,0,Europe +2023-12-01,25606,6752,"[""Wireless Mouse""]",4754.98,{},21520,0,Europe +2024-11-05,25607,8969,"[""Keyboard""]",2194.35,{},230684,0,South America +2023-11-26,25608,334,"[""Phone"", ""Tablet"", ""Laptop""]",4414.76,{},6955,1,South America +2023-03-23,25609,1709,"[""Monitor""]",4499.35,"{""loyalty"": ""7%""}",120150,0,Asia +2023-11-08,25610,7799,"[""Tablet"", ""Laptop"", ""Phone""]",575.12,{},290462,1,Asia +2024-02-26,25611,2878,"[""Phone""]",1109.5,"{""seasonal"": ""20%""}",170115,0,Africa +2024-06-28,25612,5616,"[""Tablet""]",3568.35,"{"""": ""10%""}",173694,1,Asia +2024-04-30,25613,6359,"[""Monitor"", ""Keyboard""]",1218.69,{},116089,1,Africa +2024-03-14,25614,3435,"[""Headphones"", ""Laptop""]",3325.95,"{"""": ""9%""}",208805,1,North America +2023-04-29,25615,7728,"[""Charger"", ""Wireless Mouse""]",3487.87,"{""loyalty"": ""11%""}",215451,1,Africa +2023-09-30,25616,6158,"[""Phone""]",3296.51,"{"""": ""29%""}",15402,1,Europe +2023-03-11,25617,5224,"[""Headphones"", ""Keyboard"", ""Laptop""]",1637.37,{},50398,0,North America +2023-07-17,25618,833,"[""Charger""]",1780.49,"{"""": ""11%""}",55545,1,North America +2023-10-31,25619,6981,"[""Tablet"", ""Laptop"", ""Phone""]",4270.66,{},203625,0,Africa +2023-12-20,25620,3520,"[""Keyboard"", ""Phone"", ""Tablet""]",4226.29,"{"""": ""12%""}",169528,1,North America +2024-02-05,25621,5254,"[""Headphones"", ""Monitor"", ""Charger""]",3575.67,{},200062,1,North America +2023-11-05,25622,2832,"[""Phone"", ""Tablet"", ""Monitor""]",1542.12,{},229485,1,North America +2023-02-25,25623,7076,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2952.05,"{"""": ""8%""}",93467,1,North America +2023-05-20,25624,6373,"[""Headphones"", ""Wireless Mouse""]",1152.87,{},45542,1,Africa +2024-04-20,25625,5146,"[""Laptop""]",4671.44,{},107039,1,Asia +2023-03-12,25626,4651,"[""Charger"", ""Tablet""]",1224.18,"{""promo"": ""24%""}",119220,0,South America +2024-02-05,25627,5202,"[""Keyboard"", ""Charger""]",2700.83,{},95316,1,Africa +2024-01-18,25628,7111,"[""Phone""]",2155.54,{},143521,1,Europe +2024-07-10,25629,8275,"[""Monitor"", ""Phone"", ""Headphones""]",3826.52,"{""promo"": ""10%""}",53850,0,North America +2024-03-26,25630,1780,"[""Monitor"", ""Laptop""]",2004.12,"{""loyalty"": ""22%""}",274204,0,Europe +2024-05-25,25631,2733,"[""Phone""]",1014.08,{},19352,0,Europe +2024-07-01,25632,7008,"[""Keyboard""]",2110.17,"{"""": ""15%""}",84553,0,North America +2023-01-29,25633,2096,"[""Wireless Mouse"", ""Laptop""]",541.32,"{""loyalty"": ""15%""}",265495,0,South America +2023-02-27,25634,1262,"[""Wireless Mouse"", ""Phone""]",874.09,"{"""": ""8%""}",48617,0,Europe +2023-03-12,25635,3076,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4115.11,"{"""": ""28%""}",127194,0,Europe +2024-06-13,25636,2389,"[""Tablet""]",4713.94,{},84592,0,North America +2024-03-03,25637,1447,"[""Charger""]",1779.81,{},106919,0,Asia +2023-09-05,25638,2862,"[""Monitor"", ""Headphones"", ""Tablet""]",1436.26,{},59446,1,Europe +2023-07-18,25639,7715,"[""Headphones""]",515.77,"{""promo"": ""30%""}",43534,1,North America +2023-02-05,25640,7336,"[""Keyboard""]",2482.86,"{"""": ""6%""}",62451,1,Asia +2024-10-10,25641,6969,"[""Keyboard"", ""Phone""]",4754.42,"{""seasonal"": ""14%""}",50531,1,North America +2023-11-22,25642,8290,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4446.35,{},284820,0,Asia +2024-05-16,25643,8477,"[""Phone""]",1266.19,"{""promo"": ""23%""}",36582,1,Asia +2023-08-22,25644,194,"[""Wireless Mouse"", ""Phone""]",2477.53,"{""loyalty"": ""19%""}",271054,0,Europe +2024-03-16,25645,8574,"[""Phone"", ""Tablet"", ""Headphones""]",1357.84,"{""promo"": ""9%""}",221825,1,South America +2023-09-16,25646,1583,"[""Headphones""]",1922.29,"{"""": ""17%""}",224177,0,North America +2024-09-25,25647,7739,"[""Keyboard"", ""Wireless Mouse""]",352.79,{},134027,1,Asia +2024-05-06,25648,2731,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2738.35,{},152613,1,Europe +2024-07-18,25649,1715,"[""Headphones"", ""Laptop""]",793.32,{},172652,1,Asia +2024-06-29,25650,4634,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4608.19,"{""loyalty"": ""9%""}",263910,0,North America +2023-11-04,25651,3701,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1921.76,{},276274,0,Europe +2023-11-13,25652,7688,"[""Monitor""]",2126.34,{},175265,0,Europe +2023-05-16,25653,7623,"[""Laptop"", ""Keyboard"", ""Phone""]",572.71,"{"""": ""26%""}",140070,1,Europe +2024-09-12,25654,7290,"[""Tablet""]",2577.44,"{""loyalty"": ""11%""}",229322,1,Africa +2024-05-23,25655,7126,"[""Keyboard"", ""Tablet""]",3380.66,{},206817,0,Asia +2024-06-30,25656,2728,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4666.06,{},102183,0,Asia +2023-06-22,25657,8892,"[""Charger"", ""Phone""]",3141.76,"{""seasonal"": ""20%""}",134225,1,South America +2024-07-26,25658,7273,"[""Wireless Mouse"", ""Charger"", ""Phone""]",950.79,{},27434,1,North America +2024-06-25,25659,5428,"[""Wireless Mouse""]",4788.17,"{""seasonal"": ""25%""}",59131,0,South America +2024-11-17,25660,1687,"[""Phone"", ""Tablet"", ""Monitor""]",446.33,{},278062,1,Europe +2024-04-28,25661,1204,"[""Keyboard"", ""Tablet""]",4218.36,"{""seasonal"": ""17%""}",290016,1,North America +2024-04-29,25662,7944,"[""Monitor""]",3307.43,"{"""": ""14%""}",70114,1,Europe +2024-08-24,25663,768,"[""Phone""]",908.17,{},142508,1,Africa +2023-09-04,25664,6889,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3306.91,{},241159,0,South America +2024-01-11,25665,2856,"[""Tablet"", ""Charger""]",736.26,{},134363,0,Europe +2024-03-09,25666,1843,"[""Tablet"", ""Charger""]",1914.7,"{""loyalty"": ""20%""}",16242,1,North America +2024-03-01,25667,2966,"[""Monitor""]",1676.87,{},184962,1,Asia +2023-02-03,25668,2237,"[""Phone"", ""Wireless Mouse""]",4842.37,{},299122,1,North America +2023-06-14,25669,2606,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",481.87,{},270009,1,South America +2024-12-08,25670,7320,"[""Laptop""]",532.05,"{"""": ""23%""}",60176,1,Europe +2023-11-19,25671,2158,"[""Phone"", ""Tablet"", ""Headphones""]",693.1,"{""promo"": ""20%""}",215681,1,North America +2024-09-03,25672,4760,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1381.38,"{""promo"": ""26%""}",106825,1,Africa +2023-06-09,25673,669,"[""Tablet"", ""Laptop"", ""Keyboard""]",4737.33,"{""loyalty"": ""24%""}",117728,1,Europe +2024-12-04,25674,4824,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",278.7,"{""seasonal"": ""13%""}",160800,1,North America +2024-12-21,25675,9061,"[""Charger""]",2172.14,"{""promo"": ""10%""}",59163,0,Asia +2023-12-03,25676,1807,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3450.59,{},253945,0,Africa +2024-06-23,25677,4783,"[""Charger"", ""Headphones""]",74.05,"{"""": ""23%""}",2403,1,Africa +2024-04-13,25678,855,"[""Laptop"", ""Headphones"", ""Phone""]",226.29,"{""promo"": ""23%""}",284578,1,North America +2023-04-23,25679,7147,"[""Laptop""]",4175.2,"{""seasonal"": ""22%""}",130093,0,Europe +2024-04-20,25680,2705,"[""Laptop"", ""Headphones""]",1978.11,"{""promo"": ""19%""}",77841,0,Africa +2024-11-14,25681,6723,"[""Tablet"", ""Laptop"", ""Phone""]",466.75,{},291972,0,South America +2023-09-16,25682,1994,"[""Charger"", ""Monitor"", ""Laptop""]",345.79,"{""loyalty"": ""14%""}",226497,0,North America +2024-12-27,25683,5725,"[""Phone"", ""Tablet""]",3170.21,{},70829,0,Europe +2024-05-30,25684,7402,"[""Charger"", ""Keyboard""]",1065.64,{},145762,0,Europe +2023-04-01,25685,523,"[""Tablet"", ""Charger"", ""Phone""]",3430.16,{},215165,0,Asia +2023-04-29,25686,4346,"[""Wireless Mouse"", ""Headphones""]",279.78,"{""loyalty"": ""24%""}",291883,1,South America +2024-06-12,25687,4666,"[""Tablet"", ""Phone"", ""Keyboard""]",1412.7,"{""loyalty"": ""13%""}",43427,1,South America +2024-05-05,25688,5090,"[""Phone""]",1086.21,"{""loyalty"": ""16%""}",28806,1,Europe +2024-03-11,25689,4660,"[""Monitor"", ""Laptop"", ""Phone""]",3772.54,{},103165,1,Africa +2024-10-08,25690,7668,"[""Keyboard"", ""Headphones""]",2359.25,{},186297,0,Asia +2024-07-27,25691,8751,"[""Tablet""]",955.06,"{""loyalty"": ""28%""}",201190,1,North America +2024-09-28,25692,5628,"[""Monitor"", ""Tablet"", ""Keyboard""]",173.94,"{""seasonal"": ""15%""}",121384,1,Asia +2023-04-30,25693,8983,"[""Charger""]",771.3,{},263583,0,Asia +2024-07-15,25694,9589,"[""Phone"", ""Laptop"", ""Charger""]",4116.45,"{""seasonal"": ""29%""}",41145,1,Europe +2023-09-14,25695,8376,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2522.34,{},292983,0,South America +2024-01-09,25696,8633,"[""Charger""]",4868.5,"{""seasonal"": ""29%""}",135135,1,Europe +2023-03-06,25697,7561,"[""Tablet""]",4059.11,"{""promo"": ""13%""}",19976,0,South America +2023-01-23,25698,6460,"[""Tablet""]",2092.76,"{"""": ""30%""}",233172,0,Asia +2023-04-02,25699,5417,"[""Tablet"", ""Keyboard"", ""Charger""]",4856.44,{},230608,0,Europe +2023-12-31,25700,8956,"[""Headphones"", ""Laptop"", ""Charger""]",4985.71,{},171469,1,North America +2023-04-17,25701,5916,"[""Phone"", ""Monitor""]",2588.5,"{""seasonal"": ""20%""}",267934,0,North America +2024-04-12,25702,3282,"[""Headphones"", ""Laptop"", ""Charger""]",4706.5,{},154004,1,Africa +2024-02-16,25703,7669,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2272.93,{},202001,1,South America +2023-07-23,25704,6513,"[""Monitor"", ""Keyboard""]",213.67,"{""loyalty"": ""6%""}",32701,0,Africa +2023-04-12,25705,1568,"[""Headphones""]",217.37,{},19715,0,Europe +2024-04-10,25706,4125,"[""Tablet""]",2091.85,"{""promo"": ""17%""}",172422,1,North America +2024-04-24,25707,3948,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3329.9,"{""loyalty"": ""5%""}",18838,1,Europe +2024-11-01,25708,4444,"[""Charger""]",3690.61,"{"""": ""14%""}",181664,1,South America +2023-12-17,25709,9090,"[""Tablet""]",747.03,{},179255,1,South America +2024-01-06,25710,240,"[""Keyboard"", ""Phone""]",4508.11,"{""seasonal"": ""13%""}",167701,0,Africa +2024-02-08,25711,1394,"[""Phone""]",344.99,"{"""": ""11%""}",93521,1,North America +2023-01-29,25712,617,"[""Phone"", ""Laptop"", ""Keyboard""]",2401.01,"{"""": ""10%""}",39374,0,North America +2024-03-18,25713,3031,"[""Charger"", ""Keyboard""]",4231.75,{},19620,0,North America +2023-12-24,25714,8766,"[""Phone"", ""Charger"", ""Monitor""]",2205.27,{},290919,0,North America +2024-12-31,25715,7484,"[""Laptop"", ""Keyboard"", ""Headphones""]",2891.03,"{""loyalty"": ""20%""}",185810,1,Africa +2023-08-09,25716,333,"[""Tablet"", ""Monitor"", ""Keyboard""]",915.06,{},185036,1,Africa +2024-08-22,25717,9444,"[""Keyboard""]",170.07,{},36907,1,North America +2024-10-02,25718,4277,"[""Tablet"", ""Charger""]",3273.46,"{"""": ""10%""}",120980,1,Asia +2024-05-17,25719,1562,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4982.71,"{"""": ""21%""}",155923,1,Asia +2023-11-10,25720,7055,"[""Keyboard""]",795.32,{},256940,0,Asia +2024-10-01,25721,8728,"[""Charger""]",2408.41,"{""loyalty"": ""15%""}",212509,1,North America +2024-05-02,25722,9381,"[""Phone"", ""Wireless Mouse""]",2694.01,"{""seasonal"": ""7%""}",122756,0,Asia +2024-11-17,25723,5202,"[""Monitor""]",94.26,"{""promo"": ""25%""}",280324,0,South America +2024-08-22,25724,2008,"[""Tablet"", ""Laptop""]",57.64,"{""loyalty"": ""18%""}",257963,0,North America +2023-05-20,25725,540,"[""Phone"", ""Tablet""]",4972.4,{},173429,0,Asia +2024-07-09,25726,8270,"[""Tablet"", ""Keyboard"", ""Laptop""]",644.95,"{""seasonal"": ""26%""}",54952,1,Africa +2024-08-22,25727,4232,"[""Phone""]",2800.82,{},210438,0,North America +2023-02-13,25728,8590,"[""Charger""]",1651.73,{},252040,1,South America +2024-03-28,25729,448,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4431.06,"{""seasonal"": ""16%""}",146891,0,North America +2024-10-25,25730,7512,"[""Headphones"", ""Monitor"", ""Keyboard""]",1473.56,"{""promo"": ""23%""}",201116,1,Europe +2024-06-17,25731,9504,"[""Keyboard"", ""Headphones""]",1826.32,{},111619,1,Europe +2023-04-06,25732,6676,"[""Charger""]",3963.07,{},89315,0,North America +2023-04-27,25733,1344,"[""Headphones""]",4428.1,{},75589,0,South America +2024-05-03,25734,5481,"[""Monitor"", ""Charger""]",2773.33,{},212634,1,Asia +2023-04-13,25735,4791,"[""Tablet"", ""Charger"", ""Laptop""]",2854.17,{},132839,0,South America +2024-11-14,25736,1362,"[""Keyboard"", ""Phone""]",2303.83,"{"""": ""10%""}",133825,0,Africa +2023-06-14,25737,5020,"[""Monitor"", ""Laptop"", ""Tablet""]",3431.91,{},294452,1,North America +2023-10-07,25738,2377,"[""Keyboard"", ""Laptop"", ""Charger""]",1797.57,{},250180,0,South America +2024-09-08,25739,9914,"[""Keyboard""]",1738.54,{},71659,1,Africa +2023-05-27,25740,9194,"[""Headphones""]",902.17,{},88127,0,North America +2023-10-14,25741,2266,"[""Monitor"", ""Phone"", ""Headphones""]",848.56,"{""seasonal"": ""30%""}",229203,1,Asia +2023-06-03,25742,6521,"[""Phone"", ""Keyboard""]",766.4,{},129152,0,North America +2024-10-25,25743,2993,"[""Phone"", ""Monitor"", ""Tablet""]",1742.02,"{""seasonal"": ""24%""}",63264,1,South America +2024-12-01,25744,2297,"[""Tablet"", ""Monitor""]",1157.03,{},82748,1,South America +2023-01-01,25745,8906,"[""Tablet"", ""Laptop""]",231.08,{},239694,1,Africa +2023-05-21,25746,4808,"[""Keyboard"", ""Monitor"", ""Phone""]",2644.88,{},191162,0,Asia +2024-06-14,25747,2842,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1410.56,{},76939,1,South America +2024-02-03,25748,1173,"[""Charger"", ""Phone"", ""Laptop""]",3784.08,"{"""": ""14%""}",117565,0,Europe +2024-09-13,25749,842,"[""Wireless Mouse"", ""Headphones""]",2762.96,{},151390,0,South America +2024-12-25,25750,7017,"[""Tablet""]",1503.4,{},242678,0,Asia +2024-03-17,25751,3656,"[""Laptop""]",3250.43,{},263568,1,South America +2023-07-02,25752,9885,"[""Keyboard"", ""Phone""]",3602.86,"{"""": ""7%""}",100988,0,Europe +2023-12-03,25753,2018,"[""Laptop"", ""Headphones"", ""Keyboard""]",555.71,{},49890,1,South America +2024-10-07,25754,9964,"[""Laptop"", ""Wireless Mouse""]",1852.08,{},132831,0,Africa +2024-02-07,25755,8561,"[""Monitor"", ""Phone""]",1056.51,{},38331,1,Asia +2024-04-19,25756,1913,"[""Wireless Mouse""]",1124.73,"{""seasonal"": ""30%""}",122906,1,North America +2024-03-21,25757,4514,"[""Charger"", ""Keyboard"", ""Laptop""]",3418.76,"{""promo"": ""22%""}",9668,0,South America +2024-05-16,25758,69,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2744.22,"{""loyalty"": ""5%""}",126168,0,Europe +2023-12-01,25759,7903,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2571.41,{},223957,1,Africa +2023-05-07,25760,3814,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2232.44,"{""promo"": ""28%""}",250715,1,Africa +2024-01-28,25761,2119,"[""Charger"", ""Phone""]",4601.36,"{""promo"": ""15%""}",203793,1,South America +2024-10-11,25762,6182,"[""Headphones""]",645.34,"{""loyalty"": ""30%""}",77168,0,North America +2023-04-20,25763,1615,"[""Charger"", ""Laptop"", ""Headphones""]",2203.71,{},284943,1,Africa +2024-08-14,25764,8384,"[""Phone""]",410.09,{},84630,0,Africa +2024-04-04,25765,5053,"[""Phone""]",4460.9,"{""seasonal"": ""5%""}",236729,0,North America +2023-11-19,25766,5878,"[""Charger""]",759.2,{},164846,0,Europe +2023-06-23,25767,8262,"[""Headphones""]",3993.08,{},132505,1,Africa +2023-08-17,25768,3323,"[""Headphones""]",3484.05,{},103166,0,Europe +2024-06-27,25769,6048,"[""Laptop""]",1977.8,{},111697,0,Europe +2023-10-17,25770,1573,"[""Keyboard"", ""Charger""]",1965.51,{},188795,1,South America +2023-01-20,25771,5694,"[""Tablet"", ""Charger"", ""Phone""]",4840.66,"{"""": ""17%""}",215382,0,Asia +2024-12-09,25772,1790,"[""Laptop""]",4869.89,{},242685,1,Asia +2024-04-18,25773,4722,"[""Charger""]",4752.28,"{""seasonal"": ""23%""}",93377,1,Europe +2024-09-15,25774,7854,"[""Keyboard"", ""Tablet""]",2885.36,{},20015,0,Europe +2024-10-27,25775,8784,"[""Charger""]",1183.82,"{"""": ""29%""}",81156,0,Africa +2024-06-08,25776,5018,"[""Laptop"", ""Monitor"", ""Phone""]",2486.84,"{"""": ""30%""}",38210,1,Africa +2024-03-26,25777,2566,"[""Charger"", ""Monitor"", ""Tablet""]",1966.71,"{""promo"": ""23%""}",27201,0,North America +2023-03-01,25778,4949,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",548.31,"{""promo"": ""30%""}",66423,0,Europe +2023-09-23,25779,7597,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2776.67,"{""promo"": ""30%""}",261191,0,North America +2023-03-26,25780,3727,"[""Charger""]",3261.13,"{""seasonal"": ""12%""}",273250,0,Africa +2024-09-03,25781,3619,"[""Laptop"", ""Phone""]",4020.84,"{""seasonal"": ""14%""}",238939,0,North America +2024-08-04,25782,6871,"[""Keyboard""]",4369.51,"{""promo"": ""21%""}",104929,0,Africa +2023-03-29,25783,9327,"[""Charger"", ""Keyboard""]",4550.39,{},186243,0,Africa +2023-02-18,25784,5895,"[""Monitor"", ""Keyboard"", ""Phone""]",2884.52,"{""seasonal"": ""26%""}",32132,1,North America +2023-01-05,25785,8953,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1181.43,"{"""": ""11%""}",143880,1,Asia +2023-06-11,25786,9456,"[""Keyboard""]",1378.68,"{"""": ""26%""}",228453,1,North America +2024-01-07,25787,2912,"[""Headphones"", ""Monitor"", ""Laptop""]",4275.17,"{"""": ""15%""}",278186,1,Europe +2024-05-04,25788,1967,"[""Charger""]",2031.47,{},4586,0,Europe +2024-02-01,25789,5369,"[""Keyboard""]",2075.8,{},227333,1,South America +2023-07-22,25790,1026,"[""Keyboard""]",3996.61,{},146975,0,Africa +2023-06-02,25791,830,"[""Headphones"", ""Phone""]",3435.32,"{""seasonal"": ""28%""}",254639,0,South America +2024-02-13,25792,4970,"[""Phone"", ""Monitor""]",1982.37,{},188394,0,Europe +2023-06-22,25793,7472,"[""Phone"", ""Keyboard"", ""Charger""]",3954.75,"{"""": ""23%""}",7937,0,South America +2024-06-10,25794,9418,"[""Headphones""]",1771.86,{},93494,0,Africa +2024-07-31,25795,9957,"[""Wireless Mouse"", ""Keyboard""]",795.52,"{""promo"": ""9%""}",288947,1,South America +2024-08-06,25796,7566,"[""Monitor""]",747.7,{},109043,0,Europe +2023-02-11,25797,3503,"[""Headphones"", ""Monitor"", ""Keyboard""]",1465.92,"{""loyalty"": ""11%""}",110067,1,South America +2024-10-25,25798,9395,"[""Wireless Mouse"", ""Tablet""]",1070.61,"{""promo"": ""6%""}",112832,0,South America +2024-02-27,25799,9671,"[""Monitor"", ""Laptop"", ""Tablet""]",148.1,"{""loyalty"": ""29%""}",279291,1,Europe +2024-04-20,25800,5481,"[""Phone"", ""Keyboard""]",2537.96,"{""loyalty"": ""12%""}",88544,0,Asia +2024-02-22,25801,31,"[""Monitor"", ""Keyboard"", ""Headphones""]",2269.1,"{""loyalty"": ""19%""}",284331,0,South America +2024-12-17,25802,7028,"[""Phone""]",736.32,{},287873,1,South America +2024-03-26,25803,6063,"[""Keyboard"", ""Tablet"", ""Phone""]",2709.17,{},221076,1,Europe +2024-10-27,25804,8807,"[""Laptop"", ""Charger"", ""Tablet""]",2791.14,"{""promo"": ""25%""}",3423,1,North America +2024-06-19,25805,5075,"[""Wireless Mouse""]",1889.24,"{""loyalty"": ""22%""}",135382,0,Africa +2024-12-13,25806,9851,"[""Phone"", ""Keyboard""]",2577.74,{},297036,1,South America +2024-07-21,25807,5258,"[""Wireless Mouse"", ""Charger""]",2864.91,{},218402,0,Africa +2023-09-25,25808,985,"[""Tablet"", ""Charger""]",1551.03,"{""seasonal"": ""15%""}",77003,0,South America +2024-07-23,25809,7910,"[""Charger""]",4408.69,"{""promo"": ""25%""}",172569,0,Asia +2023-05-20,25810,675,"[""Tablet"", ""Laptop""]",3222.82,{},196381,0,Europe +2023-02-01,25811,5983,"[""Headphones""]",3454.81,{},184430,0,Asia +2023-05-26,25812,5485,"[""Laptop"", ""Monitor""]",1136.44,{},224966,0,South America +2024-12-12,25813,852,"[""Tablet""]",1348.19,{},93517,1,Asia +2023-12-05,25814,739,"[""Monitor"", ""Tablet""]",1096.41,"{""loyalty"": ""29%""}",290093,0,Africa +2023-11-26,25815,781,"[""Phone"", ""Keyboard""]",2684.25,"{""seasonal"": ""20%""}",80388,1,Asia +2024-12-23,25816,7212,"[""Wireless Mouse"", ""Laptop""]",287.64,"{"""": ""13%""}",291909,1,South America +2024-09-08,25817,847,"[""Monitor""]",805.71,"{""loyalty"": ""11%""}",64894,1,Asia +2023-11-24,25818,8708,"[""Monitor"", ""Charger"", ""Phone""]",3418.17,{},130370,1,South America +2023-03-31,25819,7829,"[""Charger"", ""Phone"", ""Monitor""]",1532.62,{},114978,1,Asia +2024-06-02,25820,3276,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",712.47,"{""promo"": ""18%""}",162912,1,Africa +2024-01-27,25821,3900,"[""Headphones""]",661.55,"{""promo"": ""6%""}",245181,1,Europe +2024-01-29,25822,793,"[""Charger""]",3401.16,"{""promo"": ""6%""}",12572,0,North America +2023-09-16,25823,3415,"[""Wireless Mouse""]",1637.45,"{""promo"": ""24%""}",232538,0,Africa +2024-06-09,25824,8834,"[""Charger""]",2771.49,"{"""": ""7%""}",135893,1,North America +2023-09-08,25825,9808,"[""Monitor""]",1592.57,{},101529,0,South America +2024-03-14,25826,8728,"[""Laptop""]",3233.35,{},33436,0,Asia +2023-03-18,25827,5631,"[""Laptop""]",4622.6,"{""promo"": ""24%""}",71914,0,Europe +2023-09-18,25828,130,"[""Phone""]",3009.98,"{""seasonal"": ""12%""}",168962,1,Asia +2023-07-21,25829,5652,"[""Keyboard"", ""Phone""]",241.75,"{""promo"": ""10%""}",200649,1,Africa +2024-06-18,25830,9024,"[""Monitor"", ""Tablet""]",4127.74,"{""promo"": ""11%""}",106468,1,Europe +2023-08-01,25831,6151,"[""Wireless Mouse"", ""Monitor""]",636.97,"{""seasonal"": ""20%""}",96670,1,South America +2024-08-14,25832,93,"[""Monitor"", ""Tablet"", ""Headphones""]",4461.24,{},40381,0,Europe +2024-08-22,25833,1859,"[""Tablet""]",3335.78,{},268814,1,Africa +2023-11-27,25834,4344,"[""Phone"", ""Wireless Mouse""]",3874.66,"{""promo"": ""26%""}",168927,1,Africa +2023-06-04,25835,8133,"[""Laptop"", ""Phone""]",4674.94,{},179780,1,South America +2023-09-21,25836,5455,"[""Keyboard"", ""Monitor""]",4390.07,{},78570,1,Europe +2023-08-10,25837,1326,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4804.45,"{""seasonal"": ""9%""}",34830,0,Asia +2024-11-18,25838,7194,"[""Tablet"", ""Charger""]",3623.67,"{""promo"": ""17%""}",14796,0,Europe +2023-03-31,25839,5461,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",342.84,{},214814,1,South America +2023-01-27,25840,2432,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3319.24,"{""promo"": ""18%""}",232578,1,South America +2024-01-22,25841,9297,"[""Headphones""]",2398.56,{},237549,1,Asia +2024-08-07,25842,5145,"[""Phone"", ""Keyboard"", ""Monitor""]",4527.43,"{"""": ""14%""}",271969,0,North America +2023-10-11,25843,3706,"[""Keyboard""]",246.31,"{""promo"": ""26%""}",174757,1,Africa +2024-07-24,25844,1873,"[""Wireless Mouse""]",1428.49,"{"""": ""25%""}",242979,0,Europe +2023-09-12,25845,715,"[""Charger"", ""Tablet"", ""Laptop""]",2538.24,{},106507,0,Europe +2024-09-17,25846,4283,"[""Headphones""]",4199.59,"{""seasonal"": ""25%""}",53371,0,Asia +2023-12-08,25847,7258,"[""Charger"", ""Keyboard""]",2958.73,{},5179,1,Europe +2024-12-16,25848,5943,"[""Keyboard"", ""Charger""]",4092.34,"{""loyalty"": ""6%""}",180799,1,Africa +2024-02-14,25849,1315,"[""Headphones"", ""Phone""]",1424.86,{},55608,1,South America +2024-04-17,25850,2439,"[""Headphones"", ""Charger"", ""Monitor""]",4119.88,"{"""": ""6%""}",19873,0,South America +2023-04-26,25851,9817,"[""Phone""]",4380.74,{},172257,1,Asia +2023-02-10,25852,2003,"[""Tablet""]",3263.87,{},213594,0,Africa +2024-06-29,25853,6635,"[""Tablet""]",2143.9,"{""promo"": ""12%""}",62121,0,South America +2023-11-23,25854,5114,"[""Charger""]",4885.89,"{"""": ""24%""}",77430,1,Europe +2024-03-04,25855,8786,"[""Wireless Mouse"", ""Charger""]",4638.55,{},163896,1,South America +2023-09-17,25856,9313,"[""Tablet"", ""Charger""]",86.24,{},205321,1,Europe +2024-11-23,25857,3865,"[""Phone"", ""Keyboard"", ""Headphones""]",2689.46,"{""seasonal"": ""27%""}",94615,0,South America +2024-03-12,25858,5065,"[""Laptop"", ""Tablet"", ""Phone""]",851.19,"{""promo"": ""13%""}",203272,1,North America +2024-10-24,25859,3606,"[""Phone"", ""Laptop"", ""Monitor""]",1534.7,"{"""": ""6%""}",253315,0,North America +2024-01-04,25860,3664,"[""Charger"", ""Monitor""]",4045.34,{},127564,0,North America +2023-07-21,25861,7171,"[""Charger""]",2582.46,{},154063,1,South America +2024-02-03,25862,8294,"[""Charger""]",3371.63,"{""promo"": ""29%""}",96604,1,Europe +2023-11-17,25863,3570,"[""Laptop"", ""Charger"", ""Keyboard""]",3772.75,{},9288,0,South America +2024-08-06,25864,5293,"[""Tablet"", ""Phone"", ""Headphones""]",723.08,{},250380,1,Africa +2023-08-22,25865,6230,"[""Charger"", ""Laptop"", ""Phone""]",2047.49,"{"""": ""13%""}",134361,0,North America +2023-04-23,25866,9134,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3780.85,"{""seasonal"": ""25%""}",160921,0,Asia +2023-06-30,25867,6408,"[""Monitor""]",3224.8,{},57861,0,Africa +2024-09-19,25868,6844,"[""Monitor""]",4905.37,{},72513,0,Asia +2024-02-15,25869,6740,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3657.34,{},81892,0,Africa +2024-02-07,25870,2696,"[""Laptop""]",2003.01,{},45320,0,Asia +2023-01-27,25871,2146,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3791.77,{},6328,1,South America +2023-11-14,25872,503,"[""Headphones""]",1437.56,{},257668,1,Africa +2024-05-06,25873,4147,"[""Keyboard""]",937.1,{},59643,1,North America +2024-03-16,25874,1574,"[""Tablet""]",3798.19,"{""loyalty"": ""9%""}",260806,1,Europe +2024-11-30,25875,2291,"[""Laptop""]",2794.71,{},76874,0,South America +2023-12-02,25876,5447,"[""Monitor""]",3920.56,"{""seasonal"": ""20%""}",81172,1,South America +2023-07-11,25877,5561,"[""Charger"", ""Tablet"", ""Keyboard""]",3529.86,{},201125,0,Asia +2024-12-08,25878,1672,"[""Keyboard"", ""Wireless Mouse""]",3512.16,{},292228,1,North America +2024-03-06,25879,3067,"[""Phone"", ""Laptop"", ""Charger""]",4449.66,"{""promo"": ""5%""}",280336,1,Europe +2024-09-02,25880,6917,"[""Wireless Mouse"", ""Monitor""]",318.95,"{""promo"": ""9%""}",10363,0,North America +2024-06-04,25881,1122,"[""Tablet"", ""Monitor""]",2007.67,{},256944,0,Asia +2023-05-16,25882,4231,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2283.34,{},257853,0,North America +2024-08-31,25883,2951,"[""Phone"", ""Charger""]",2395.4,{},296094,0,South America +2024-02-07,25884,3808,"[""Monitor"", ""Keyboard""]",2875.38,{},260590,0,Africa +2023-07-10,25885,5177,"[""Monitor"", ""Tablet"", ""Headphones""]",1545.47,"{"""": ""15%""}",225284,0,North America +2024-10-18,25886,9028,"[""Charger"", ""Monitor""]",2289.94,"{"""": ""19%""}",105641,1,Europe +2023-07-05,25887,6748,"[""Charger"", ""Headphones"", ""Phone""]",3746.77,"{""loyalty"": ""11%""}",6409,1,Europe +2023-07-25,25888,5279,"[""Wireless Mouse""]",618.67,"{"""": ""23%""}",85005,0,Asia +2024-03-02,25889,8018,"[""Charger"", ""Headphones""]",2214.24,"{""promo"": ""26%""}",182646,1,Europe +2023-11-06,25890,4942,"[""Charger"", ""Monitor"", ""Tablet""]",3512.84,"{""seasonal"": ""7%""}",29130,0,North America +2023-10-15,25891,2386,"[""Charger""]",3486.73,{},17637,1,South America +2023-06-20,25892,2555,"[""Wireless Mouse"", ""Tablet""]",2478.2,{},168282,1,North America +2023-04-23,25893,8596,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1640.18,"{""promo"": ""22%""}",34212,1,North America +2023-01-10,25894,781,"[""Keyboard"", ""Charger"", ""Headphones""]",3362.56,"{""seasonal"": ""21%""}",234779,1,South America +2024-10-08,25895,4921,"[""Tablet"", ""Monitor"", ""Headphones""]",1470.5,"{"""": ""23%""}",75859,1,North America +2024-11-12,25896,141,"[""Phone""]",4691.52,"{""loyalty"": ""8%""}",36999,1,South America +2024-11-02,25897,9328,"[""Tablet"", ""Headphones"", ""Keyboard""]",859.31,{},229821,1,Africa +2023-05-18,25898,9494,"[""Wireless Mouse""]",64.01,"{""promo"": ""27%""}",102492,0,Africa +2024-05-16,25899,1536,"[""Headphones"", ""Keyboard"", ""Monitor""]",4074.47,"{""promo"": ""10%""}",176591,1,North America +2023-01-08,25900,4291,"[""Wireless Mouse""]",4319.92,"{""loyalty"": ""19%""}",237830,1,Asia +2024-04-15,25901,9732,"[""Wireless Mouse""]",4994.39,{},162946,1,Asia +2023-03-05,25902,8816,"[""Monitor"", ""Charger""]",3329.79,"{""loyalty"": ""29%""}",191681,0,North America +2024-01-22,25903,8995,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3152.77,"{""seasonal"": ""23%""}",4118,0,South America +2023-04-09,25904,8615,"[""Laptop"", ""Charger""]",4193.17,{},273050,1,Africa +2023-12-28,25905,5116,"[""Charger"", ""Laptop"", ""Keyboard""]",3696.02,{},6015,1,South America +2023-05-09,25906,8994,"[""Phone"", ""Monitor""]",3679.83,{},97629,0,North America +2024-09-02,25907,6269,"[""Charger"", ""Tablet"", ""Laptop""]",1685.56,"{""seasonal"": ""11%""}",16584,0,Asia +2023-01-27,25908,3370,"[""Tablet""]",4691.46,{},270565,1,North America +2024-08-30,25909,5721,"[""Wireless Mouse""]",1123.62,{},141543,0,North America +2023-10-20,25910,9756,"[""Phone""]",1660.79,{},214866,1,Asia +2023-06-30,25911,1554,"[""Keyboard"", ""Phone"", ""Laptop""]",4025.18,{},242450,1,Africa +2023-01-29,25912,9345,"[""Charger""]",4498.64,"{""promo"": ""17%""}",273425,1,Asia +2023-03-14,25913,7313,"[""Tablet"", ""Charger"", ""Monitor""]",3595.72,{},74811,1,Europe +2023-08-29,25914,8006,"[""Monitor""]",2438.43,"{""seasonal"": ""30%""}",96092,0,Europe +2024-10-12,25915,4311,"[""Laptop""]",422.02,{},71949,1,Europe +2024-04-04,25916,8748,"[""Phone""]",3068.0,"{"""": ""15%""}",257389,0,South America +2024-01-12,25917,9144,"[""Phone"", ""Laptop"", ""Tablet""]",2073.16,{},19597,0,North America +2024-08-21,25918,4361,"[""Wireless Mouse"", ""Headphones""]",3353.21,"{""promo"": ""17%""}",81487,1,South America +2023-01-14,25919,6571,"[""Tablet""]",3547.02,"{""loyalty"": ""15%""}",243477,0,Africa +2023-12-25,25920,805,"[""Charger""]",1163.27,"{""seasonal"": ""6%""}",199150,1,North America +2023-11-11,25921,4068,"[""Wireless Mouse""]",4006.61,{},17656,0,Africa +2023-06-29,25922,3829,"[""Phone""]",4621.74,{},205189,1,Europe +2023-02-28,25923,6627,"[""Monitor"", ""Phone""]",1464.5,{},54611,1,Europe +2023-12-27,25924,8758,"[""Wireless Mouse"", ""Headphones""]",3216.07,{},19158,1,Africa +2024-02-16,25925,8258,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4911.2,{},126801,1,Asia +2024-03-31,25926,6386,"[""Wireless Mouse"", ""Keyboard""]",1024.11,{},180589,0,Europe +2023-03-12,25927,8961,"[""Laptop"", ""Tablet""]",3724.85,{},222649,1,Africa +2024-08-21,25928,7377,"[""Laptop""]",424.52,{},229189,0,South America +2024-04-17,25929,5426,"[""Laptop""]",1767.44,"{""seasonal"": ""12%""}",277631,0,Asia +2024-10-26,25930,9441,"[""Laptop""]",2591.48,{},263322,0,North America +2023-11-24,25931,8368,"[""Monitor"", ""Laptop"", ""Charger""]",1713.05,"{""loyalty"": ""20%""}",6273,0,Asia +2024-10-13,25932,2118,"[""Tablet"", ""Laptop"", ""Charger""]",3140.37,{},184746,1,Europe +2024-07-22,25933,5907,"[""Headphones"", ""Phone""]",3273.55,"{""loyalty"": ""21%""}",296073,0,Asia +2023-03-13,25934,9629,"[""Keyboard"", ""Laptop""]",4127.02,{},171282,1,North America +2024-10-08,25935,6093,"[""Charger""]",2416.86,"{""seasonal"": ""11%""}",252826,0,South America +2023-12-22,25936,7134,"[""Monitor"", ""Headphones""]",2880.84,{},106921,1,Africa +2023-03-01,25937,4117,"[""Laptop""]",638.55,{},242556,0,South America +2024-02-14,25938,5110,"[""Keyboard"", ""Laptop""]",4106.65,"{"""": ""15%""}",191271,0,Asia +2024-11-13,25939,3065,"[""Charger""]",2602.82,{},86650,0,Europe +2024-06-26,25940,5349,"[""Laptop"", ""Monitor""]",1556.94,"{""loyalty"": ""20%""}",85250,0,Asia +2024-07-23,25941,782,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3296.63,"{"""": ""10%""}",145719,1,Africa +2023-07-15,25942,6454,"[""Keyboard"", ""Headphones""]",2950.87,{},73108,0,South America +2023-06-20,25943,4988,"[""Wireless Mouse""]",2712.56,{},113754,1,Africa +2023-01-01,25944,1291,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2512.73,"{"""": ""26%""}",172132,1,Asia +2023-08-08,25945,5950,"[""Tablet"", ""Headphones"", ""Phone""]",588.52,"{""seasonal"": ""11%""}",186723,1,Asia +2023-04-01,25946,9951,"[""Headphones""]",554.71,{},154629,1,North America +2024-06-17,25947,1016,"[""Monitor"", ""Phone"", ""Tablet""]",2768.8,{},79201,0,South America +2023-05-30,25948,1054,"[""Charger""]",2190.93,{},128340,1,North America +2023-03-21,25949,870,"[""Charger"", ""Monitor"", ""Laptop""]",4363.09,"{"""": ""22%""}",68385,1,South America +2023-07-01,25950,3234,"[""Tablet"", ""Laptop"", ""Phone""]",4311.6,{},90852,1,Asia +2024-05-10,25951,4966,"[""Monitor"", ""Keyboard""]",513.03,"{""promo"": ""16%""}",126264,0,Asia +2024-12-13,25952,8522,"[""Monitor"", ""Laptop""]",3564.67,"{""loyalty"": ""11%""}",208181,1,North America +2023-09-18,25953,9911,"[""Keyboard""]",1986.18,{},293766,1,South America +2023-05-06,25954,5224,"[""Charger""]",4142.53,"{"""": ""8%""}",82426,1,South America +2023-12-29,25955,601,"[""Wireless Mouse"", ""Monitor""]",373.87,{},275636,1,South America +2023-06-30,25956,1922,"[""Headphones""]",1466.38,{},188129,0,Africa +2023-03-06,25957,6836,"[""Monitor""]",4251.26,{},190627,0,Europe +2024-01-23,25958,2931,"[""Headphones""]",4575.82,"{"""": ""28%""}",34675,0,Europe +2023-01-08,25959,6252,"[""Keyboard"", ""Laptop"", ""Headphones""]",2212.72,"{"""": ""17%""}",282461,0,South America +2023-06-30,25960,3946,"[""Phone""]",4107.14,{},45742,0,Europe +2023-06-08,25961,2251,"[""Keyboard"", ""Tablet""]",535.31,{},188703,0,South America +2024-07-19,25962,6470,"[""Keyboard""]",2997.91,"{"""": ""14%""}",71392,0,Europe +2023-05-17,25963,5514,"[""Monitor"", ""Charger"", ""Phone""]",3657.88,{},49968,1,Asia +2023-06-10,25964,2462,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4185.64,{},243810,0,Europe +2023-01-08,25965,5088,"[""Charger"", ""Headphones"", ""Laptop""]",4733.4,{},145817,0,Asia +2024-10-30,25966,4711,"[""Monitor""]",2096.68,"{"""": ""5%""}",125983,1,South America +2023-12-07,25967,2026,"[""Monitor"", ""Phone""]",410.5,"{""loyalty"": ""7%""}",254123,0,North America +2024-08-10,25968,8499,"[""Charger"", ""Keyboard"", ""Monitor""]",2762.86,"{""promo"": ""17%""}",197980,1,South America +2023-11-12,25969,9318,"[""Phone""]",3838.48,{},204630,1,North America +2023-09-27,25970,9368,"[""Laptop"", ""Charger""]",2318.11,{},94396,1,Africa +2023-04-13,25971,8504,"[""Laptop"", ""Headphones"", ""Monitor""]",1882.18,"{""seasonal"": ""23%""}",112222,0,Asia +2023-04-07,25972,3175,"[""Wireless Mouse""]",1126.47,{},8788,1,South America +2023-03-30,25973,6589,"[""Monitor""]",1817.68,"{"""": ""14%""}",85757,0,Asia +2023-03-05,25974,7377,"[""Laptop""]",1563.77,"{"""": ""9%""}",191431,0,Asia +2023-07-07,25975,9702,"[""Tablet"", ""Headphones""]",3135.39,"{""seasonal"": ""30%""}",146389,1,North America +2023-08-20,25976,7281,"[""Keyboard"", ""Monitor"", ""Headphones""]",2126.52,{},187061,0,Asia +2023-08-08,25977,268,"[""Laptop""]",4962.79,"{"""": ""26%""}",230912,0,North America +2024-12-31,25978,2147,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3794.53,"{"""": ""20%""}",119034,1,Europe +2023-11-14,25979,4482,"[""Phone""]",2486.5,"{""seasonal"": ""8%""}",117116,0,North America +2024-03-12,25980,1781,"[""Charger"", ""Keyboard"", ""Laptop""]",2727.23,{},200872,0,South America +2024-07-23,25981,693,"[""Monitor"", ""Keyboard""]",3175.12,{},95461,1,South America +2023-10-08,25982,2163,"[""Phone""]",554.28,{},107362,1,North America +2024-02-13,25983,5067,"[""Laptop""]",114.52,"{"""": ""5%""}",222949,1,Europe +2023-12-10,25984,6041,"[""Tablet""]",3545.28,{},186486,1,Asia +2023-01-19,25985,495,"[""Charger""]",2687.58,"{""promo"": ""22%""}",100883,0,North America +2023-03-21,25986,797,"[""Phone"", ""Tablet""]",3928.79,{},281982,1,Europe +2024-05-22,25987,5864,"[""Headphones"", ""Monitor""]",2767.19,"{""promo"": ""30%""}",108323,0,Europe +2023-12-06,25988,4682,"[""Monitor"", ""Charger""]",4214.98,{},185946,0,South America +2023-01-28,25989,7246,"[""Tablet"", ""Laptop""]",422.68,"{""seasonal"": ""10%""}",42783,0,Europe +2023-06-29,25990,4220,"[""Headphones""]",2001.18,"{""loyalty"": ""21%""}",83359,0,Africa +2023-03-30,25991,10000,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3528.67,{},11914,1,South America +2024-04-07,25992,6121,"[""Tablet"", ""Monitor""]",1916.71,{},247118,0,South America +2024-02-11,25993,4732,"[""Charger"", ""Phone""]",4610.43,{},27223,0,Europe +2024-02-05,25994,7626,"[""Monitor"", ""Tablet"", ""Phone""]",2147.5,{},107693,0,South America +2024-07-02,25995,4605,"[""Headphones""]",2438.15,{},180852,0,North America +2023-11-14,25996,1369,"[""Tablet""]",2681.97,{},250473,1,Europe +2024-05-26,25997,814,"[""Tablet""]",4601.65,{},272114,1,Europe +2023-05-05,25998,743,"[""Laptop"", ""Headphones""]",4163.07,{},154636,1,Asia +2024-04-17,25999,9640,"[""Wireless Mouse"", ""Keyboard""]",839.09,"{"""": ""29%""}",62217,0,Africa +2024-12-03,26000,1665,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4777.26,{},49417,1,Europe +2023-05-10,26001,7480,"[""Wireless Mouse"", ""Laptop""]",3149.89,{},244596,0,Asia +2024-02-24,26002,43,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3521.22,"{""promo"": ""30%""}",264336,0,Asia +2023-10-14,26003,1929,"[""Keyboard""]",4000.62,{},259602,0,Asia +2023-05-06,26004,7633,"[""Charger"", ""Laptop"", ""Monitor""]",3291.67,{},15587,1,North America +2024-09-17,26005,573,"[""Charger"", ""Tablet""]",1373.69,"{""promo"": ""16%""}",211773,0,North America +2023-11-26,26006,3576,"[""Charger"", ""Headphones""]",4688.17,{},292801,0,South America +2024-03-04,26007,452,"[""Tablet""]",307.01,"{""seasonal"": ""25%""}",107330,1,North America +2023-02-04,26008,9791,"[""Wireless Mouse"", ""Keyboard""]",324.46,"{"""": ""8%""}",155999,1,Asia +2024-04-07,26009,8170,"[""Charger"", ""Phone""]",424.61,{},268540,0,North America +2024-05-12,26010,5526,"[""Phone"", ""Charger""]",3604.28,{},284908,1,Asia +2023-03-13,26011,1088,"[""Phone""]",846.04,"{""loyalty"": ""24%""}",151476,0,Asia +2024-02-27,26012,1254,"[""Laptop"", ""Monitor""]",923.17,{},149579,0,North America +2024-07-07,26013,8676,"[""Charger""]",3666.66,{},281241,1,North America +2024-05-18,26014,922,"[""Wireless Mouse"", ""Headphones""]",3210.37,"{""loyalty"": ""14%""}",18555,1,North America +2024-01-25,26015,1934,"[""Headphones"", ""Wireless Mouse""]",4162.5,{},267082,0,Africa +2024-08-22,26016,9712,"[""Headphones"", ""Wireless Mouse""]",1529.48,{},37343,0,Europe +2023-10-29,26017,1937,"[""Tablet""]",2188.64,{},144654,1,Asia +2024-06-11,26018,1605,"[""Phone"", ""Wireless Mouse""]",2288.01,{},277318,0,Europe +2023-05-15,26019,1156,"[""Tablet"", ""Keyboard""]",2420.61,"{""seasonal"": ""21%""}",104588,1,North America +2024-12-11,26020,9321,"[""Laptop""]",2625.52,"{"""": ""11%""}",3665,1,Africa +2024-09-27,26021,9687,"[""Monitor""]",4903.81,"{""seasonal"": ""19%""}",151787,1,Europe +2023-10-07,26022,9767,"[""Laptop""]",4846.08,"{""seasonal"": ""13%""}",42146,1,North America +2024-04-05,26023,3100,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4013.11,"{"""": ""24%""}",143700,0,North America +2023-06-21,26024,7283,"[""Headphones""]",478.81,"{""promo"": ""30%""}",72315,1,Europe +2024-03-19,26025,2238,"[""Monitor""]",1588.45,{},64376,0,North America +2024-06-24,26026,8732,"[""Wireless Mouse""]",3058.27,"{"""": ""26%""}",266250,0,North America +2023-03-29,26027,4221,"[""Charger""]",4865.93,"{""seasonal"": ""5%""}",89194,1,North America +2024-12-12,26028,6205,"[""Charger"", ""Keyboard"", ""Tablet""]",4906.29,{},146008,1,Asia +2024-01-27,26029,8573,"[""Tablet"", ""Monitor""]",3706.31,"{"""": ""10%""}",144806,1,South America +2023-03-29,26030,2604,"[""Headphones"", ""Phone"", ""Laptop""]",2956.66,"{""promo"": ""29%""}",233070,1,Europe +2024-07-30,26031,723,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",880.9,{},256712,0,Europe +2024-06-24,26032,2947,"[""Tablet""]",255.97,"{""promo"": ""6%""}",200252,1,Africa +2024-02-22,26033,5074,"[""Charger"", ""Laptop""]",4160.29,{},161454,0,South America +2023-07-23,26034,8028,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4160.55,{},192296,1,Africa +2024-07-22,26035,3984,"[""Charger"", ""Headphones""]",3407.77,"{"""": ""23%""}",169902,1,Africa +2023-01-07,26036,9893,"[""Charger"", ""Headphones""]",1890.17,{},252911,0,Europe +2024-06-22,26037,9834,"[""Tablet"", ""Laptop""]",3828.37,"{"""": ""27%""}",111085,0,Africa +2023-08-28,26038,2953,"[""Headphones""]",3901.01,{},287566,0,Asia +2024-04-08,26039,939,"[""Tablet"", ""Headphones""]",1387.44,"{"""": ""5%""}",298566,0,North America +2024-08-11,26040,6438,"[""Laptop"", ""Keyboard""]",2511.02,"{"""": ""10%""}",2042,0,North America +2023-04-02,26041,5270,"[""Headphones"", ""Charger""]",1400.35,"{""seasonal"": ""28%""}",160010,1,Europe +2023-03-08,26042,5767,"[""Keyboard"", ""Tablet""]",2022.67,"{""promo"": ""17%""}",284645,1,Asia +2023-06-11,26043,9665,"[""Headphones""]",4804.34,"{""seasonal"": ""24%""}",293114,1,Asia +2023-11-20,26044,3174,"[""Charger"", ""Keyboard"", ""Tablet""]",866.43,{},248231,0,Europe +2023-11-09,26045,3818,"[""Charger""]",158.89,{},158993,0,Asia +2023-11-03,26046,6133,"[""Charger"", ""Phone""]",488.0,"{""promo"": ""24%""}",253050,1,Africa +2023-01-30,26047,6215,"[""Keyboard"", ""Laptop""]",3712.44,"{""loyalty"": ""8%""}",152674,1,Europe +2023-02-22,26048,8977,"[""Laptop""]",537.03,"{""promo"": ""19%""}",42438,0,Africa +2024-09-08,26049,3370,"[""Monitor"", ""Wireless Mouse""]",418.24,{},154415,0,South America +2023-05-24,26050,6476,"[""Wireless Mouse"", ""Headphones""]",1792.39,"{""promo"": ""10%""}",296041,1,Africa +2023-03-18,26051,2428,"[""Tablet"", ""Headphones""]",427.45,"{""loyalty"": ""9%""}",253952,1,Africa +2023-05-03,26052,5685,"[""Tablet""]",4662.88,"{""seasonal"": ""9%""}",237809,0,South America +2024-06-04,26053,2234,"[""Monitor"", ""Phone""]",3794.98,"{""loyalty"": ""8%""}",170947,1,Africa +2024-02-28,26054,7137,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1291.36,{},291193,1,South America +2024-09-18,26055,6379,"[""Charger"", ""Monitor"", ""Headphones""]",2435.07,"{""loyalty"": ""17%""}",206032,0,North America +2024-06-19,26056,6409,"[""Keyboard"", ""Headphones"", ""Tablet""]",3447.1,"{""loyalty"": ""10%""}",194611,1,Asia +2024-05-16,26057,4784,"[""Wireless Mouse"", ""Charger""]",3107.29,"{""seasonal"": ""8%""}",76508,1,South America +2024-05-30,26058,6231,"[""Headphones"", ""Tablet""]",2715.56,{},103629,0,Africa +2024-08-18,26059,4721,"[""Keyboard"", ""Tablet""]",1894.3,{},249331,0,North America +2023-03-02,26060,3848,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2106.18,{},286244,0,Europe +2023-03-19,26061,5310,"[""Wireless Mouse""]",1234.61,{},151752,0,Africa +2023-01-20,26062,2551,"[""Laptop"", ""Keyboard"", ""Tablet""]",802.7,"{""loyalty"": ""8%""}",225223,1,Europe +2023-05-18,26063,5519,"[""Phone""]",3411.36,{},94710,0,Africa +2024-05-22,26064,8251,"[""Headphones"", ""Charger"", ""Tablet""]",3515.03,"{""promo"": ""17%""}",282835,0,North America +2023-01-01,26065,4214,"[""Wireless Mouse"", ""Charger""]",1516.88,{},74578,0,Europe +2023-03-13,26066,2996,"[""Charger""]",3317.37,"{""loyalty"": ""14%""}",15351,0,Africa +2024-06-22,26067,6657,"[""Charger""]",665.91,{},138511,1,North America +2023-09-30,26068,8138,"[""Monitor""]",522.62,"{""loyalty"": ""29%""}",230347,1,North America +2024-12-13,26069,423,"[""Laptop"", ""Tablet""]",3862.15,"{""seasonal"": ""13%""}",105525,1,South America +2023-09-01,26070,5842,"[""Headphones"", ""Keyboard""]",2526.94,{},254509,1,South America +2024-08-24,26071,663,"[""Wireless Mouse"", ""Headphones""]",837.23,{},147331,1,Europe +2024-01-09,26072,9087,"[""Tablet""]",4182.91,"{""seasonal"": ""26%""}",233365,1,Europe +2023-04-29,26073,3934,"[""Phone"", ""Charger"", ""Keyboard""]",3433.19,"{""loyalty"": ""11%""}",284404,0,Asia +2023-05-04,26074,4526,"[""Wireless Mouse"", ""Keyboard""]",4032.46,{},44066,0,Africa +2023-07-16,26075,8327,"[""Tablet"", ""Monitor"", ""Headphones""]",1722.2,"{""promo"": ""28%""}",112014,0,North America +2024-09-20,26076,4078,"[""Tablet""]",451.36,{},62047,1,Asia +2024-05-24,26077,9134,"[""Tablet""]",3777.03,{},163618,0,North America +2024-07-20,26078,9596,"[""Headphones"", ""Phone"", ""Tablet""]",730.58,"{""seasonal"": ""16%""}",258456,1,Europe +2024-06-18,26079,8962,"[""Monitor"", ""Charger""]",2207.89,"{""loyalty"": ""15%""}",222105,1,Africa +2023-03-29,26080,9027,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4691.13,"{""promo"": ""29%""}",277230,0,North America +2023-11-25,26081,1268,"[""Phone"", ""Tablet""]",4286.61,"{""seasonal"": ""25%""}",217482,0,Asia +2023-09-28,26082,3168,"[""Laptop"", ""Monitor""]",3223.21,{},8495,1,North America +2024-01-24,26083,7377,"[""Keyboard"", ""Headphones""]",1963.62,{},23119,0,Europe +2024-05-03,26084,683,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",566.94,{},276556,0,Africa +2023-04-27,26085,6501,"[""Headphones""]",4597.33,{},293444,1,Asia +2023-05-03,26086,1421,"[""Keyboard""]",602.75,{},67938,0,Europe +2023-03-30,26087,9201,"[""Laptop"", ""Monitor""]",1273.01,{},136063,1,North America +2024-12-05,26088,8128,"[""Keyboard""]",4236.98,{},190843,1,Africa +2024-10-13,26089,8703,"[""Tablet"", ""Phone"", ""Charger""]",3700.99,"{"""": ""22%""}",105981,1,North America +2023-10-25,26090,9297,"[""Charger"", ""Phone""]",1459.4,"{""promo"": ""7%""}",242282,0,Europe +2023-10-30,26091,1956,"[""Monitor"", ""Keyboard""]",1384.28,"{""loyalty"": ""6%""}",60961,1,South America +2024-04-29,26092,9420,"[""Monitor"", ""Keyboard"", ""Headphones""]",3079.02,{},102044,1,South America +2024-07-04,26093,493,"[""Phone"", ""Charger"", ""Keyboard""]",3627.61,"{""promo"": ""11%""}",286661,1,South America +2023-03-01,26094,5843,"[""Charger"", ""Laptop""]",4551.61,"{""seasonal"": ""9%""}",35168,0,Africa +2023-03-20,26095,3107,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2518.59,"{""promo"": ""27%""}",290907,0,Asia +2024-04-06,26096,8086,"[""Tablet"", ""Keyboard"", ""Laptop""]",285.83,{},83125,1,Europe +2023-04-10,26097,3710,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1871.27,{},116433,0,South America +2024-04-16,26098,9764,"[""Headphones"", ""Phone""]",3579.41,"{"""": ""29%""}",236106,1,Africa +2023-06-06,26099,2061,"[""Monitor"", ""Phone"", ""Charger""]",1139.36,{},103412,0,Asia +2024-02-28,26100,9172,"[""Tablet"", ""Phone""]",4008.01,"{""seasonal"": ""29%""}",200937,0,North America +2023-11-21,26101,3000,"[""Tablet""]",3786.57,"{"""": ""16%""}",100486,0,Europe +2023-12-23,26102,1659,"[""Phone""]",2821.48,"{""seasonal"": ""21%""}",120526,1,South America +2023-08-10,26103,2095,"[""Monitor""]",100.88,"{"""": ""13%""}",128887,0,Africa +2023-12-13,26104,2685,"[""Phone"", ""Keyboard""]",3756.86,{},233220,0,Asia +2023-08-01,26105,6883,"[""Tablet"", ""Charger""]",3298.24,{},265546,1,South America +2023-01-25,26106,488,"[""Headphones"", ""Wireless Mouse""]",922.95,{},182627,0,Asia +2023-09-07,26107,3535,"[""Laptop"", ""Wireless Mouse""]",616.25,{},100857,1,North America +2024-11-03,26108,7398,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1409.24,{},130637,0,North America +2023-11-21,26109,1858,"[""Tablet""]",1717.46,"{""promo"": ""26%""}",66671,1,Asia +2023-01-24,26110,7024,"[""Tablet""]",1193.73,{},286943,0,Africa +2024-07-06,26111,674,"[""Headphones""]",4652.46,{},110804,0,Africa +2024-11-10,26112,6783,"[""Laptop"", ""Charger""]",2913.89,"{""promo"": ""6%""}",224659,0,Europe +2023-09-01,26113,3231,"[""Monitor""]",1393.27,"{""loyalty"": ""14%""}",174297,0,Europe +2024-07-16,26114,8668,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1142.49,{},50231,1,Asia +2024-08-05,26115,473,"[""Laptop"", ""Wireless Mouse""]",1566.1,"{"""": ""14%""}",238320,1,South America +2024-07-19,26116,5168,"[""Tablet"", ""Phone""]",2331.75,{},159172,0,North America +2024-05-06,26117,9509,"[""Headphones"", ""Charger""]",3712.62,{},107549,0,Africa +2023-01-23,26118,3735,"[""Headphones""]",3807.6,"{""promo"": ""8%""}",171015,0,North America +2024-09-12,26119,3116,"[""Charger"", ""Laptop"", ""Phone""]",4218.03,{},226912,0,South America +2024-05-11,26120,9318,"[""Charger"", ""Monitor""]",495.79,{},296311,0,Africa +2024-08-01,26121,1926,"[""Laptop""]",4618.38,{},101209,1,North America +2024-06-23,26122,6473,"[""Phone""]",4448.28,"{""loyalty"": ""20%""}",295106,1,South America +2024-05-03,26123,7920,"[""Monitor"", ""Laptop""]",4102.65,{},132772,1,North America +2024-04-16,26124,48,"[""Phone"", ""Headphones"", ""Keyboard""]",293.76,{},50309,0,North America +2023-10-10,26125,7963,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3317.84,{},190871,0,South America +2024-01-20,26126,486,"[""Keyboard""]",2235.15,{},179282,1,Asia +2023-01-01,26127,6663,"[""Phone"", ""Headphones""]",1323.5,"{""promo"": ""29%""}",190290,0,Africa +2023-10-21,26128,7220,"[""Laptop"", ""Monitor""]",1565.17,{},9816,1,Asia +2023-09-15,26129,3240,"[""Keyboard"", ""Phone""]",82.13,"{""loyalty"": ""24%""}",250298,1,Europe +2023-08-11,26130,2112,"[""Laptop"", ""Phone""]",4963.15,"{"""": ""5%""}",103939,1,Africa +2023-08-26,26131,3639,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3193.17,"{"""": ""26%""}",70626,1,Africa +2024-03-20,26132,9804,"[""Wireless Mouse"", ""Tablet""]",765.94,{},272197,0,Europe +2023-01-13,26133,1098,"[""Phone""]",1004.37,{},25601,1,Europe +2023-07-07,26134,824,"[""Phone"", ""Monitor""]",4832.26,{},213418,0,North America +2023-11-06,26135,9798,"[""Tablet"", ""Keyboard""]",350.77,{},94684,0,South America +2024-01-18,26136,6090,"[""Headphones""]",1140.72,{},84668,0,Europe +2023-09-11,26137,844,"[""Laptop"", ""Monitor""]",4732.08,"{""promo"": ""24%""}",201838,0,Asia +2023-03-20,26138,7773,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",374.76,"{""seasonal"": ""13%""}",140264,1,Europe +2024-09-05,26139,9095,"[""Headphones""]",371.73,"{""seasonal"": ""22%""}",248493,1,Europe +2024-10-08,26140,7904,"[""Headphones""]",3460.56,"{""loyalty"": ""14%""}",202215,1,North America +2023-06-26,26141,7043,"[""Keyboard""]",3415.84,{},9920,1,North America +2023-12-02,26142,7292,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4869.27,{},134115,0,Asia +2024-08-28,26143,5741,"[""Headphones"", ""Phone""]",1772.25,{},163566,1,South America +2024-10-27,26144,1556,"[""Keyboard""]",2997.14,"{""promo"": ""19%""}",175583,1,Africa +2023-09-10,26145,9894,"[""Headphones"", ""Phone"", ""Monitor""]",1355.62,{},221142,1,Europe +2024-10-18,26146,1778,"[""Keyboard""]",3485.3,{},109045,0,Europe +2024-11-01,26147,835,"[""Monitor"", ""Tablet""]",3758.37,{},241698,1,Africa +2023-04-19,26148,8241,"[""Keyboard"", ""Phone""]",121.47,"{""loyalty"": ""16%""}",182771,1,North America +2023-08-29,26149,5285,"[""Phone""]",4393.96,{},266162,1,Asia +2023-02-08,26150,8794,"[""Keyboard"", ""Phone"", ""Charger""]",2684.35,"{""seasonal"": ""10%""}",226625,1,Europe +2023-03-07,26151,5459,"[""Keyboard"", ""Wireless Mouse""]",2566.01,{},201307,0,Africa +2024-02-24,26152,6109,"[""Headphones"", ""Charger"", ""Laptop""]",1414.83,{},208949,0,Asia +2023-06-04,26153,6944,"[""Charger"", ""Laptop"", ""Monitor""]",1886.42,{},109958,0,South America +2024-11-02,26154,9666,"[""Keyboard""]",4953.23,{},233877,0,Europe +2024-09-15,26155,6927,"[""Monitor""]",1462.79,{},187642,0,South America +2023-09-09,26156,7383,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4011.25,{},252363,0,North America +2023-11-14,26157,430,"[""Keyboard""]",1965.25,{},181006,1,North America +2024-07-30,26158,3617,"[""Charger"", ""Phone""]",3100.34,{},44140,0,North America +2023-10-06,26159,4082,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1110.67,{},243663,0,Asia +2023-07-01,26160,474,"[""Phone""]",2959.47,{},37956,1,Africa +2023-09-07,26161,9773,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1296.17,"{""loyalty"": ""30%""}",37765,0,South America +2024-10-05,26162,8452,"[""Monitor""]",2829.46,{},30006,1,Asia +2024-04-12,26163,2360,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3877.48,{},282855,0,South America +2024-02-04,26164,6896,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",247.19,"{""promo"": ""17%""}",4021,1,North America +2023-01-12,26165,6164,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",706.0,"{""seasonal"": ""23%""}",213734,0,South America +2024-12-24,26166,6297,"[""Phone""]",4984.42,"{"""": ""8%""}",58507,0,South America +2024-06-13,26167,9382,"[""Laptop""]",1929.64,{},128301,1,Asia +2024-06-13,26168,3574,"[""Tablet"", ""Keyboard"", ""Headphones""]",4265.65,"{""loyalty"": ""10%""}",152698,1,Europe +2024-12-02,26169,7353,"[""Laptop"", ""Keyboard"", ""Monitor""]",4543.18,"{""promo"": ""16%""}",51161,0,Europe +2023-03-30,26170,7709,"[""Charger"", ""Headphones"", ""Monitor""]",573.11,"{""loyalty"": ""6%""}",199413,0,North America +2024-05-30,26171,2240,"[""Wireless Mouse""]",4630.51,{},54150,0,Europe +2024-03-08,26172,2742,"[""Monitor""]",4870.12,{},216277,1,Europe +2023-09-24,26173,4885,"[""Keyboard"", ""Headphones"", ""Phone""]",775.04,{},58772,0,Asia +2024-09-27,26174,9395,"[""Headphones"", ""Phone"", ""Charger""]",688.2,"{""seasonal"": ""30%""}",290857,1,Europe +2024-10-20,26175,2854,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4406.56,{},3247,0,North America +2024-03-07,26176,2789,"[""Charger"", ""Keyboard""]",437.88,{},1913,0,Europe +2023-02-18,26177,4708,"[""Tablet""]",2768.27,{},56234,1,Asia +2024-02-09,26178,6678,"[""Wireless Mouse"", ""Keyboard""]",4295.94,"{"""": ""28%""}",289720,1,Asia +2023-04-16,26179,6488,"[""Charger"", ""Monitor""]",355.8,{},133180,1,Asia +2023-02-12,26180,149,"[""Headphones"", ""Charger""]",1015.93,{},216113,1,South America +2024-10-04,26181,5702,"[""Charger"", ""Tablet""]",2100.7,{},257093,0,Africa +2024-02-29,26182,6971,"[""Phone"", ""Tablet"", ""Keyboard""]",2879.46,{},148888,1,Europe +2024-12-13,26183,6732,"[""Keyboard""]",282.24,{},110221,1,South America +2023-10-28,26184,5899,"[""Keyboard"", ""Charger"", ""Phone""]",4021.74,{},58042,0,South America +2024-04-22,26185,4644,"[""Monitor"", ""Keyboard""]",540.01,{},198056,1,Asia +2024-11-13,26186,4958,"[""Keyboard""]",500.39,{},86830,1,South America +2023-04-07,26187,8757,"[""Laptop"", ""Headphones""]",114.33,"{""seasonal"": ""22%""}",290780,1,Africa +2023-10-04,26188,7787,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3611.43,{},132732,1,North America +2023-12-06,26189,954,"[""Tablet""]",148.39,"{""promo"": ""17%""}",72408,1,North America +2023-06-24,26190,2049,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",977.86,{},269840,1,South America +2023-04-27,26191,7893,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3121.71,{},19414,1,Asia +2023-10-19,26192,8872,"[""Charger"", ""Monitor"", ""Laptop""]",3969.53,"{"""": ""30%""}",72362,0,North America +2024-08-21,26193,5747,"[""Headphones""]",2556.91,"{""loyalty"": ""20%""}",146077,1,Africa +2023-10-17,26194,4948,"[""Charger""]",3004.68,"{""seasonal"": ""22%""}",242076,0,Africa +2024-08-10,26195,3686,"[""Wireless Mouse"", ""Phone""]",2059.93,{},244346,0,South America +2023-01-18,26196,6919,"[""Wireless Mouse"", ""Laptop""]",4104.85,"{""promo"": ""6%""}",42151,0,South America +2024-03-07,26197,6722,"[""Keyboard"", ""Wireless Mouse""]",2916.2,"{""loyalty"": ""24%""}",251309,1,Europe +2023-04-29,26198,2247,"[""Headphones"", ""Laptop""]",246.24,"{"""": ""24%""}",200065,0,Asia +2024-10-16,26199,874,"[""Laptop""]",1923.86,"{"""": ""16%""}",202744,1,Europe +2024-03-12,26200,2867,"[""Headphones"", ""Charger"", ""Laptop""]",4734.84,"{""loyalty"": ""5%""}",37883,1,Asia +2024-09-30,26201,3371,"[""Laptop"", ""Wireless Mouse""]",1234.83,"{"""": ""10%""}",17660,0,Asia +2024-02-14,26202,4663,"[""Headphones"", ""Monitor""]",121.4,"{"""": ""25%""}",149563,1,Africa +2024-03-29,26203,6054,"[""Phone"", ""Charger"", ""Wireless Mouse""]",720.34,{},139058,1,Africa +2023-08-19,26204,7328,"[""Charger"", ""Phone""]",4493.12,"{""promo"": ""5%""}",172577,1,North America +2024-01-21,26205,5489,"[""Monitor"", ""Keyboard""]",2415.94,{},1562,0,Asia +2023-05-29,26206,7178,"[""Charger""]",3835.33,"{""loyalty"": ""25%""}",133106,1,Asia +2024-07-22,26207,6995,"[""Wireless Mouse"", ""Charger""]",809.83,"{"""": ""16%""}",33219,0,North America +2023-01-31,26208,3071,"[""Tablet"", ""Headphones""]",2876.86,"{""seasonal"": ""5%""}",139404,0,Africa +2023-05-30,26209,7673,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1648.53,{},258005,0,Africa +2024-03-05,26210,4917,"[""Keyboard"", ""Phone""]",639.38,{},185681,1,Asia +2024-10-02,26211,3710,"[""Charger""]",3697.76,{},168345,0,South America +2024-06-29,26212,2817,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4656.94,"{""loyalty"": ""6%""}",223542,0,South America +2023-03-17,26213,1564,"[""Keyboard""]",2034.5,"{"""": ""22%""}",58586,0,Africa +2023-12-27,26214,3004,"[""Charger""]",1921.46,{},132962,1,Europe +2024-02-21,26215,6442,"[""Keyboard"", ""Monitor"", ""Tablet""]",4727.26,"{""loyalty"": ""6%""}",202894,1,Africa +2023-10-29,26216,7730,"[""Monitor"", ""Wireless Mouse""]",4107.57,"{"""": ""8%""}",23182,0,South America +2023-10-28,26217,117,"[""Charger"", ""Phone""]",659.04,{},87140,0,North America +2024-04-17,26218,6451,"[""Phone"", ""Headphones"", ""Tablet""]",2947.34,{},275198,1,Europe +2024-03-15,26219,7996,"[""Charger""]",4489.58,{},103918,1,South America +2024-06-27,26220,5000,"[""Monitor"", ""Phone"", ""Charger""]",1008.92,{},29754,0,Asia +2024-06-05,26221,2449,"[""Laptop""]",2311.64,{},87522,1,South America +2024-05-07,26222,2239,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2059.61,"{"""": ""17%""}",81026,1,Asia +2024-04-14,26223,9386,"[""Wireless Mouse""]",3341.95,{},262627,0,Asia +2024-07-14,26224,5337,"[""Wireless Mouse"", ""Laptop""]",1626.37,"{""seasonal"": ""11%""}",243045,0,Europe +2023-03-15,26225,5278,"[""Monitor"", ""Phone""]",3468.26,{},160093,0,North America +2024-07-15,26226,7837,"[""Laptop"", ""Keyboard""]",4475.56,{},279625,0,South America +2024-07-31,26227,3217,"[""Charger"", ""Headphones""]",3587.36,{},55342,0,Asia +2024-03-27,26228,2512,"[""Keyboard""]",268.05,"{"""": ""8%""}",198341,1,Asia +2024-10-25,26229,9127,"[""Tablet""]",4828.88,"{""seasonal"": ""9%""}",239694,1,South America +2024-02-07,26230,8845,"[""Charger"", ""Headphones"", ""Tablet""]",133.09,{},250755,1,Europe +2023-05-13,26231,5876,"[""Tablet"", ""Phone""]",446.63,{},275799,1,Africa +2024-06-18,26232,5705,"[""Phone"", ""Tablet"", ""Headphones""]",1917.84,"{""loyalty"": ""21%""}",103921,1,Africa +2024-05-25,26233,2293,"[""Wireless Mouse"", ""Laptop""]",1948.9,"{""seasonal"": ""20%""}",291656,0,Europe +2024-08-29,26234,690,"[""Phone"", ""Laptop"", ""Headphones""]",1075.09,"{""promo"": ""29%""}",258327,0,Europe +2023-05-19,26235,5365,"[""Monitor""]",3685.56,"{""loyalty"": ""15%""}",259392,1,North America +2023-01-22,26236,5004,"[""Keyboard"", ""Phone""]",4131.89,{},215906,1,Europe +2023-05-09,26237,4478,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3973.81,"{""promo"": ""29%""}",74908,0,Africa +2024-03-15,26238,9878,"[""Headphones"", ""Phone"", ""Laptop""]",186.23,{},223100,0,Africa +2024-06-06,26239,3023,"[""Monitor""]",2949.21,{},238712,1,Asia +2024-09-07,26240,7079,"[""Laptop""]",1447.74,{},249986,0,Africa +2023-06-14,26241,2056,"[""Charger"", ""Monitor""]",2559.25,{},27725,0,Europe +2023-01-14,26242,844,"[""Monitor"", ""Headphones""]",4478.51,"{""promo"": ""10%""}",199090,0,Europe +2024-10-29,26243,545,"[""Wireless Mouse"", ""Charger""]",923.85,{},5774,0,North America +2024-08-28,26244,4631,"[""Phone""]",3099.33,{},48781,0,Asia +2023-10-10,26245,6014,"[""Keyboard""]",2447.36,"{""seasonal"": ""21%""}",32772,0,North America +2024-11-30,26246,1842,"[""Charger"", ""Monitor""]",1654.09,{},90867,0,Europe +2023-11-20,26247,2565,"[""Monitor"", ""Charger""]",2339.63,"{""promo"": ""5%""}",2922,1,South America +2023-09-30,26248,4757,"[""Headphones"", ""Wireless Mouse""]",3683.01,{},22013,1,Asia +2023-09-29,26249,9031,"[""Phone"", ""Tablet"", ""Headphones""]",4834.84,{},215893,1,Africa +2024-03-10,26250,7574,"[""Laptop"", ""Tablet""]",385.85,"{""promo"": ""14%""}",170876,0,South America +2023-08-13,26251,1677,"[""Keyboard"", ""Laptop""]",1175.68,"{""seasonal"": ""14%""}",179981,1,North America +2024-12-04,26252,87,"[""Wireless Mouse""]",4910.88,{},204660,1,Europe +2024-05-06,26253,6750,"[""Wireless Mouse""]",2045.96,{},59030,1,Europe +2023-09-17,26254,6902,"[""Wireless Mouse"", ""Phone""]",1694.94,{},62198,0,Europe +2023-08-24,26255,7547,"[""Wireless Mouse""]",1642.21,{},29300,0,South America +2024-08-13,26256,9955,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3905.32,"{""loyalty"": ""29%""}",199029,0,South America +2024-07-15,26257,4767,"[""Monitor""]",2591.59,{},288867,1,South America +2023-07-17,26258,8985,"[""Laptop"", ""Charger""]",2189.28,{},197493,1,Europe +2023-01-18,26259,7087,"[""Phone""]",2922.37,{},169064,1,North America +2023-02-10,26260,9770,"[""Tablet"", ""Laptop""]",2850.53,"{"""": ""10%""}",176561,0,North America +2024-03-15,26261,397,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4795.46,{},162547,0,Europe +2023-04-05,26262,937,"[""Headphones""]",2145.78,"{""loyalty"": ""11%""}",36133,0,Africa +2023-09-28,26263,1860,"[""Headphones""]",4619.22,"{"""": ""28%""}",186705,0,Europe +2023-01-05,26264,9171,"[""Keyboard"", ""Monitor""]",1857.85,{},65066,1,Asia +2023-08-14,26265,3955,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3405.06,"{""promo"": ""10%""}",187869,1,North America +2024-12-12,26266,9239,"[""Wireless Mouse""]",2185.01,{},174073,0,North America +2024-09-08,26267,6920,"[""Laptop"", ""Phone""]",4470.63,"{"""": ""9%""}",228030,0,Asia +2023-03-08,26268,8174,"[""Wireless Mouse""]",2010.58,{},230484,0,Africa +2023-03-13,26269,7010,"[""Phone""]",4524.3,{},64053,1,North America +2023-07-31,26270,2574,"[""Laptop"", ""Phone"", ""Headphones""]",3951.62,"{""seasonal"": ""23%""}",74713,0,Europe +2023-08-01,26271,2258,"[""Tablet""]",82.26,{},40580,0,South America +2023-02-11,26272,9298,"[""Tablet""]",793.99,{},200869,0,Asia +2023-10-03,26273,4531,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3772.59,{},70454,0,Asia +2024-01-07,26274,1302,"[""Headphones"", ""Phone"", ""Monitor""]",3502.18,{},110249,1,Europe +2023-04-01,26275,73,"[""Charger""]",4578.57,{},208918,1,Africa +2024-03-21,26276,6222,"[""Monitor"", ""Charger""]",175.2,"{""loyalty"": ""25%""}",81674,1,North America +2024-02-14,26277,8286,"[""Phone""]",1887.99,{},132334,0,Europe +2023-02-23,26278,1116,"[""Laptop"", ""Tablet"", ""Charger""]",3995.18,{},186535,1,Africa +2023-05-11,26279,666,"[""Charger"", ""Monitor""]",3897.01,"{"""": ""16%""}",201711,0,Europe +2023-01-08,26280,3967,"[""Tablet"", ""Keyboard"", ""Headphones""]",3627.19,{},106749,0,South America +2023-05-03,26281,2879,"[""Tablet""]",3832.33,{},196396,1,North America +2024-02-27,26282,4938,"[""Monitor"", ""Charger"", ""Tablet""]",3615.63,{},220939,0,North America +2024-08-21,26283,3553,"[""Tablet""]",1423.59,"{""loyalty"": ""11%""}",210259,1,South America +2023-03-08,26284,3011,"[""Tablet"", ""Keyboard"", ""Monitor""]",286.07,"{""seasonal"": ""16%""}",130261,1,South America +2024-07-03,26285,4493,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3795.32,"{""promo"": ""13%""}",81887,0,North America +2023-05-04,26286,8976,"[""Headphones"", ""Tablet"", ""Charger""]",2795.95,"{"""": ""6%""}",278957,0,Europe +2023-10-14,26287,6603,"[""Wireless Mouse""]",1234.57,"{""seasonal"": ""25%""}",130883,1,North America +2024-06-19,26288,1851,"[""Keyboard"", ""Charger""]",358.02,"{""promo"": ""7%""}",147734,1,South America +2023-02-19,26289,3175,"[""Laptop"", ""Keyboard""]",2969.52,"{""seasonal"": ""24%""}",173367,1,South America +2023-04-11,26290,5283,"[""Charger"", ""Phone"", ""Tablet""]",1983.15,"{""seasonal"": ""30%""}",47892,1,South America +2023-03-24,26291,8057,"[""Phone"", ""Monitor""]",361.41,{},250732,0,Africa +2023-07-21,26292,1368,"[""Charger"", ""Keyboard""]",3455.06,{},177105,0,North America +2024-02-14,26293,5622,"[""Headphones"", ""Phone"", ""Charger""]",1489.75,{},124797,0,Europe +2024-12-04,26294,1519,"[""Tablet"", ""Keyboard"", ""Charger""]",2175.35,{},13583,0,South America +2023-09-22,26295,319,"[""Laptop""]",3522.24,"{""promo"": ""6%""}",104767,0,Europe +2023-07-01,26296,6075,"[""Monitor""]",3144.0,{},278943,0,North America +2024-10-02,26297,4251,"[""Monitor"", ""Laptop"", ""Phone""]",4364.45,"{""seasonal"": ""19%""}",231463,0,Asia +2023-06-05,26298,40,"[""Tablet"", ""Wireless Mouse""]",1733.94,"{"""": ""17%""}",74885,1,North America +2024-08-26,26299,2507,"[""Charger"", ""Monitor"", ""Tablet""]",3718.96,"{""loyalty"": ""20%""}",237663,0,Asia +2024-12-11,26300,2377,"[""Charger""]",1714.48,"{""seasonal"": ""28%""}",75836,0,North America +2024-03-07,26301,4101,"[""Keyboard""]",805.21,"{""loyalty"": ""18%""}",24245,0,Africa +2024-08-20,26302,4654,"[""Tablet"", ""Headphones"", ""Charger""]",4418.83,{},27443,1,South America +2024-10-19,26303,336,"[""Headphones"", ""Phone"", ""Laptop""]",4746.21,"{"""": ""7%""}",23818,1,North America +2024-06-03,26304,5907,"[""Monitor""]",3014.37,"{""loyalty"": ""6%""}",5734,0,Asia +2024-10-24,26305,7660,"[""Phone""]",2894.8,{},297416,0,Europe +2023-11-13,26306,1738,"[""Headphones""]",519.69,"{""loyalty"": ""6%""}",264097,0,Asia +2023-10-20,26307,5806,"[""Tablet""]",463.44,{},220211,0,Asia +2024-11-30,26308,6903,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1961.53,{},23863,1,Africa +2023-02-03,26309,2718,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4429.07,"{""loyalty"": ""15%""}",208796,1,Europe +2024-09-21,26310,6311,"[""Phone""]",4037.43,{},226649,1,South America +2024-08-31,26311,4632,"[""Keyboard"", ""Headphones""]",2875.48,"{""promo"": ""16%""}",250141,1,Africa +2024-03-25,26312,5882,"[""Wireless Mouse"", ""Phone""]",1314.04,"{"""": ""24%""}",46560,0,North America +2023-01-08,26313,5743,"[""Laptop""]",577.45,{},109822,0,South America +2024-05-28,26314,4292,"[""Headphones"", ""Monitor""]",3290.43,{},6437,0,North America +2024-03-25,26315,2712,"[""Phone"", ""Tablet""]",3508.6,{},44602,1,North America +2023-12-12,26316,465,"[""Tablet"", ""Headphones"", ""Phone""]",4973.84,{},188491,1,Asia +2024-06-29,26317,3744,"[""Tablet"", ""Headphones"", ""Monitor""]",1968.96,"{""promo"": ""10%""}",17991,1,North America +2023-06-20,26318,6038,"[""Keyboard""]",4980.77,"{""seasonal"": ""6%""}",214828,0,South America +2023-03-02,26319,8966,"[""Laptop"", ""Monitor"", ""Phone""]",2893.12,{},184839,0,North America +2023-09-10,26320,1178,"[""Laptop""]",1677.69,"{""seasonal"": ""16%""}",228575,0,Europe +2023-05-26,26321,4925,"[""Laptop"", ""Tablet"", ""Monitor""]",1817.99,"{""promo"": ""9%""}",90212,0,Africa +2024-02-05,26322,2125,"[""Wireless Mouse""]",380.6,{},247689,0,South America +2024-01-16,26323,3284,"[""Keyboard""]",2447.3,"{"""": ""13%""}",161613,1,South America +2023-06-19,26324,7755,"[""Keyboard""]",2986.79,"{""loyalty"": ""15%""}",36809,1,Asia +2024-02-24,26325,1542,"[""Charger"", ""Tablet""]",1588.86,"{"""": ""19%""}",280034,0,Africa +2023-07-25,26326,2785,"[""Monitor"", ""Keyboard"", ""Phone""]",2630.17,{},139709,1,South America +2024-06-13,26327,4300,"[""Phone"", ""Tablet""]",4111.03,{},152243,0,North America +2024-12-26,26328,7693,"[""Headphones"", ""Tablet""]",3951.65,"{""loyalty"": ""10%""}",87255,1,Europe +2023-05-18,26329,7795,"[""Wireless Mouse""]",3523.1,"{"""": ""26%""}",157200,0,Europe +2023-11-22,26330,8405,"[""Keyboard"", ""Tablet""]",2604.61,"{""promo"": ""7%""}",253137,0,North America +2024-04-19,26331,5389,"[""Phone"", ""Keyboard"", ""Charger""]",4295.01,{},128854,1,North America +2023-03-21,26332,6023,"[""Wireless Mouse""]",822.26,{},42848,0,Africa +2023-11-27,26333,3674,"[""Headphones"", ""Wireless Mouse""]",113.34,{},55901,1,North America +2023-03-27,26334,8638,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4984.48,{},211011,1,Europe +2024-08-31,26335,9981,"[""Tablet""]",2011.0,{},129339,1,Asia +2024-02-26,26336,7850,"[""Phone"", ""Laptop"", ""Keyboard""]",2081.28,{},89065,0,North America +2024-03-23,26337,9669,"[""Laptop"", ""Keyboard""]",1767.4,{},175128,0,Europe +2024-04-21,26338,9786,"[""Laptop"", ""Charger""]",1234.86,"{""promo"": ""21%""}",59618,0,Asia +2023-11-28,26339,5834,"[""Tablet""]",3096.4,{},146461,0,Asia +2023-08-17,26340,4327,"[""Monitor"", ""Phone""]",1758.07,{},160118,0,Europe +2024-09-09,26341,7447,"[""Headphones"", ""Wireless Mouse""]",4688.63,"{""loyalty"": ""17%""}",149674,0,Asia +2023-03-08,26342,7389,"[""Laptop"", ""Keyboard""]",453.31,"{""seasonal"": ""6%""}",256866,1,South America +2024-10-07,26343,8475,"[""Monitor"", ""Tablet"", ""Keyboard""]",4296.73,{},116663,1,Asia +2023-05-10,26344,7981,"[""Tablet""]",1328.66,"{""promo"": ""27%""}",228103,0,South America +2024-11-28,26345,6699,"[""Phone"", ""Keyboard""]",3085.41,{},156082,0,North America +2023-08-15,26346,9639,"[""Laptop""]",1965.21,"{""promo"": ""6%""}",34881,0,Asia +2023-05-13,26347,6055,"[""Headphones"", ""Monitor""]",3869.78,{},37521,1,Asia +2024-02-14,26348,7494,"[""Headphones"", ""Phone"", ""Keyboard""]",1461.71,{},4075,1,South America +2024-12-06,26349,4710,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3902.45,{},117171,1,Asia +2023-10-03,26350,9613,"[""Monitor"", ""Headphones"", ""Phone""]",2090.75,{},42708,0,North America +2023-04-24,26351,3623,"[""Monitor""]",2334.77,"{""promo"": ""25%""}",238470,1,South America +2023-09-30,26352,9168,"[""Charger"", ""Keyboard""]",4840.87,"{""loyalty"": ""5%""}",57300,1,North America +2023-02-28,26353,7087,"[""Laptop"", ""Phone""]",3264.06,"{""loyalty"": ""20%""}",69964,0,Europe +2023-08-22,26354,7078,"[""Charger"", ""Laptop"", ""Headphones""]",3028.38,"{""seasonal"": ""22%""}",8643,1,Africa +2024-10-11,26355,7921,"[""Phone"", ""Headphones"", ""Monitor""]",3006.81,{},213692,0,Europe +2024-08-12,26356,1759,"[""Headphones"", ""Keyboard"", ""Monitor""]",1455.04,"{""seasonal"": ""12%""}",284517,1,South America +2024-12-04,26357,5383,"[""Tablet"", ""Keyboard""]",2444.43,"{""loyalty"": ""10%""}",84303,1,Africa +2024-07-15,26358,1993,"[""Headphones"", ""Keyboard"", ""Charger""]",520.98,{},69516,1,North America +2024-05-02,26359,9133,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4132.33,"{""seasonal"": ""29%""}",174566,1,North America +2024-04-03,26360,7485,"[""Charger""]",1254.05,"{""seasonal"": ""17%""}",77266,0,Europe +2023-04-22,26361,3963,"[""Phone"", ""Tablet""]",1577.69,{},15814,1,Africa +2024-04-02,26362,2873,"[""Phone"", ""Laptop"", ""Monitor""]",1328.51,"{""loyalty"": ""12%""}",4236,0,Africa +2024-03-14,26363,3650,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4745.58,{},289500,1,Asia +2024-07-05,26364,4829,"[""Keyboard"", ""Headphones""]",3405.96,{},85669,1,North America +2023-01-16,26365,6967,"[""Charger"", ""Headphones"", ""Tablet""]",2653.49,"{"""": ""5%""}",253979,1,South America +2023-04-17,26366,5587,"[""Laptop""]",953.29,{},185676,0,Europe +2024-05-29,26367,1292,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1355.7,{},3451,1,Europe +2023-02-02,26368,2477,"[""Headphones"", ""Tablet"", ""Monitor""]",3848.37,"{""loyalty"": ""11%""}",288749,0,Africa +2024-10-19,26369,4087,"[""Headphones""]",2559.33,{},82248,0,Asia +2023-07-05,26370,9756,"[""Keyboard""]",3988.47,"{""loyalty"": ""26%""}",298944,1,North America +2024-12-22,26371,1481,"[""Monitor""]",1157.41,{},288015,1,North America +2024-12-17,26372,8780,"[""Phone"", ""Charger""]",457.64,{},88253,1,North America +2023-08-07,26373,3761,"[""Wireless Mouse"", ""Headphones""]",2246.24,"{""loyalty"": ""17%""}",256195,0,Europe +2024-06-09,26374,5483,"[""Wireless Mouse"", ""Phone""]",101.8,{},83915,0,South America +2023-04-20,26375,3395,"[""Charger"", ""Headphones""]",1015.26,{},74080,0,Europe +2023-04-16,26376,4365,"[""Tablet"", ""Phone""]",1595.03,"{""promo"": ""23%""}",83791,0,North America +2023-08-04,26377,9683,"[""Phone"", ""Monitor"", ""Charger""]",1848.61,{},3999,0,Europe +2023-10-22,26378,7043,"[""Wireless Mouse"", ""Laptop""]",1904.84,{},130677,0,South America +2023-10-14,26379,6028,"[""Wireless Mouse""]",3309.77,"{""seasonal"": ""6%""}",168293,0,South America +2023-04-02,26380,6157,"[""Keyboard"", ""Monitor"", ""Tablet""]",2267.15,"{"""": ""11%""}",258464,1,South America +2023-09-20,26381,9683,"[""Laptop"", ""Wireless Mouse""]",1703.19,"{""promo"": ""15%""}",210696,0,North America +2023-12-02,26382,4077,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3891.14,"{"""": ""30%""}",142217,1,Asia +2024-01-02,26383,4510,"[""Charger"", ""Wireless Mouse""]",3727.47,{},103083,0,Europe +2024-10-17,26384,8693,"[""Laptop""]",331.29,{},25572,0,Asia +2024-05-29,26385,4613,"[""Keyboard"", ""Phone"", ""Headphones""]",4709.94,"{""seasonal"": ""15%""}",233864,1,Europe +2024-06-07,26386,99,"[""Phone""]",2805.53,{},287635,0,South America +2024-02-13,26387,6383,"[""Headphones""]",4004.2,{},202172,1,Asia +2024-05-10,26388,9808,"[""Keyboard""]",4886.96,{},18249,1,South America +2024-01-04,26389,1862,"[""Laptop"", ""Phone"", ""Tablet""]",3513.28,"{""promo"": ""8%""}",194359,0,North America +2023-12-25,26390,1524,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1627.95,"{""seasonal"": ""11%""}",55208,0,North America +2023-06-29,26391,1967,"[""Headphones"", ""Keyboard"", ""Monitor""]",531.2,{},9949,0,South America +2024-04-01,26392,5108,"[""Monitor"", ""Phone"", ""Headphones""]",347.53,{},165671,0,Europe +2023-12-13,26393,4714,"[""Headphones""]",2977.17,{},273236,0,Asia +2023-07-04,26394,6124,"[""Charger""]",2881.43,"{""promo"": ""6%""}",111221,1,Africa +2024-12-23,26395,8077,"[""Charger""]",3707.65,"{""loyalty"": ""23%""}",1920,1,North America +2023-12-18,26396,820,"[""Laptop"", ""Headphones""]",3734.26,{},51532,0,South America +2024-07-28,26397,7251,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3829.41,{},119871,0,Africa +2024-12-23,26398,8344,"[""Phone""]",2586.08,"{""loyalty"": ""15%""}",3658,0,North America +2023-08-30,26399,6755,"[""Tablet"", ""Keyboard"", ""Phone""]",2275.19,"{""loyalty"": ""21%""}",12115,1,Asia +2024-05-13,26400,6396,"[""Headphones"", ""Keyboard"", ""Phone""]",4598.49,"{""seasonal"": ""21%""}",42901,0,North America +2023-05-22,26401,9093,"[""Phone"", ""Charger"", ""Tablet""]",3019.83,{},69979,0,South America +2024-10-27,26402,8417,"[""Headphones"", ""Charger""]",3312.28,{},22223,0,Asia +2024-09-05,26403,6079,"[""Wireless Mouse""]",2951.78,"{""seasonal"": ""19%""}",97489,1,Europe +2024-12-09,26404,4622,"[""Wireless Mouse""]",2705.47,{},228799,1,North America +2024-12-24,26405,8141,"[""Monitor"", ""Charger"", ""Keyboard""]",3428.76,"{"""": ""14%""}",87748,0,Asia +2024-08-25,26406,9503,"[""Laptop""]",3735.69,"{""seasonal"": ""23%""}",297492,1,Europe +2024-11-15,26407,9598,"[""Headphones""]",3845.83,{},131838,1,Africa +2024-10-26,26408,5621,"[""Headphones"", ""Tablet""]",3271.62,{},288197,1,Africa +2023-09-29,26409,566,"[""Tablet"", ""Phone""]",4145.3,"{""loyalty"": ""6%""}",13386,0,Africa +2023-03-10,26410,6558,"[""Phone"", ""Monitor""]",3043.68,"{"""": ""19%""}",285576,1,North America +2024-07-14,26411,7500,"[""Monitor"", ""Tablet""]",4855.52,{},78332,1,South America +2024-10-10,26412,8483,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2358.19,{},186343,0,North America +2024-07-05,26413,7364,"[""Headphones""]",973.72,{},231721,1,South America +2023-03-19,26414,331,"[""Phone"", ""Monitor""]",1190.19,{},1747,0,North America +2024-12-15,26415,4599,"[""Tablet""]",4534.77,{},41542,0,Asia +2023-12-13,26416,3704,"[""Tablet""]",793.82,{},270931,0,Asia +2023-09-05,26417,3070,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",107.0,"{""promo"": ""15%""}",128741,0,Africa +2023-06-25,26418,9198,"[""Laptop""]",107.62,{},51846,0,North America +2023-07-27,26419,3545,"[""Keyboard"", ""Wireless Mouse""]",3284.9,{},20990,0,Asia +2023-08-30,26420,3178,"[""Keyboard"", ""Monitor""]",2737.06,"{""promo"": ""22%""}",85143,1,Asia +2023-06-17,26421,62,"[""Charger""]",3241.49,"{""loyalty"": ""8%""}",16790,0,North America +2023-04-30,26422,5127,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",849.68,{},82189,0,South America +2023-06-19,26423,1628,"[""Tablet""]",3610.38,{},218975,0,North America +2024-08-09,26424,3053,"[""Monitor""]",3466.34,{},96905,0,North America +2023-02-02,26425,3144,"[""Phone"", ""Headphones"", ""Monitor""]",3179.63,"{""promo"": ""12%""}",280130,0,Asia +2024-08-23,26426,7933,"[""Laptop"", ""Phone""]",1037.85,"{""loyalty"": ""30%""}",58674,1,North America +2024-02-15,26427,7117,"[""Keyboard""]",2772.86,"{""seasonal"": ""13%""}",75198,0,Asia +2023-10-18,26428,4974,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1320.18,{},214621,1,South America +2023-02-12,26429,6369,"[""Phone"", ""Monitor"", ""Laptop""]",2025.02,"{""loyalty"": ""21%""}",193698,1,Asia +2023-07-28,26430,8532,"[""Tablet"", ""Laptop""]",1961.34,"{"""": ""11%""}",112316,1,South America +2024-12-16,26431,4747,"[""Phone""]",264.12,{},219631,0,South America +2023-10-28,26432,3697,"[""Wireless Mouse"", ""Headphones""]",2435.67,{},76177,0,North America +2023-11-30,26433,3312,"[""Wireless Mouse"", ""Tablet""]",1958.06,{},63689,0,Asia +2024-10-21,26434,3000,"[""Monitor""]",2158.65,"{""seasonal"": ""23%""}",203775,0,Asia +2023-10-02,26435,9123,"[""Keyboard""]",313.31,"{""promo"": ""9%""}",43890,1,South America +2024-06-01,26436,5634,"[""Tablet""]",2774.31,"{""loyalty"": ""28%""}",62941,1,South America +2023-07-07,26437,6754,"[""Phone"", ""Charger"", ""Headphones""]",3637.22,{},205149,0,Europe +2024-09-16,26438,5819,"[""Phone"", ""Tablet""]",1481.34,"{"""": ""11%""}",127022,1,Europe +2023-11-24,26439,177,"[""Charger""]",1546.76,"{""seasonal"": ""7%""}",116627,0,South America +2024-02-09,26440,282,"[""Phone"", ""Tablet""]",3800.26,{},243153,0,Asia +2023-08-31,26441,151,"[""Wireless Mouse"", ""Tablet""]",2352.97,{},160750,0,North America +2023-12-15,26442,1658,"[""Charger"", ""Headphones""]",2523.15,"{""seasonal"": ""26%""}",241033,1,South America +2024-07-19,26443,1550,"[""Charger""]",3074.5,{},224928,1,Europe +2023-02-09,26444,1345,"[""Charger"", ""Monitor"", ""Keyboard""]",1820.93,{},137086,1,North America +2024-09-02,26445,3379,"[""Monitor"", ""Laptop""]",727.76,"{""promo"": ""15%""}",297557,0,Europe +2023-05-08,26446,9596,"[""Tablet"", ""Monitor"", ""Laptop""]",4073.37,{},177148,1,Asia +2024-12-25,26447,2042,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3991.06,"{""seasonal"": ""20%""}",184201,1,Asia +2024-02-18,26448,7981,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2412.03,{},246684,0,North America +2024-05-05,26449,5693,"[""Phone"", ""Keyboard""]",3892.92,"{""promo"": ""21%""}",105652,1,South America +2023-09-27,26450,7530,"[""Charger"", ""Phone""]",4563.81,"{""loyalty"": ""22%""}",89753,0,North America +2024-02-27,26451,6139,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4761.73,"{"""": ""7%""}",27309,0,South America +2023-11-24,26452,6479,"[""Monitor""]",4850.05,"{""seasonal"": ""18%""}",2692,1,Asia +2023-12-08,26453,8533,"[""Charger"", ""Keyboard"", ""Headphones""]",4152.56,"{"""": ""14%""}",114182,0,Asia +2023-01-20,26454,1577,"[""Monitor""]",4207.97,{},30481,1,Asia +2024-12-04,26455,8121,"[""Phone""]",126.93,"{""seasonal"": ""11%""}",180836,0,Asia +2024-08-21,26456,3133,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2803.55,{},124172,0,Europe +2024-11-25,26457,385,"[""Charger"", ""Keyboard"", ""Tablet""]",636.86,"{""promo"": ""13%""}",186477,1,Asia +2023-03-13,26458,8880,"[""Wireless Mouse"", ""Laptop""]",2675.56,"{""loyalty"": ""30%""}",260058,1,Africa +2023-03-05,26459,81,"[""Monitor""]",760.39,{},230334,1,Asia +2023-04-27,26460,2199,"[""Monitor""]",2495.13,{},286269,1,Asia +2024-02-15,26461,8748,"[""Charger""]",4567.69,{},167063,1,North America +2024-04-23,26462,3977,"[""Tablet"", ""Laptop""]",2124.62,{},29973,0,Europe +2024-07-10,26463,9334,"[""Laptop"", ""Wireless Mouse""]",2714.43,{},12024,1,Europe +2023-05-16,26464,1613,"[""Charger""]",3787.38,"{"""": ""8%""}",106373,1,South America +2024-02-17,26465,2032,"[""Headphones""]",4862.91,"{""seasonal"": ""9%""}",203233,0,Asia +2023-06-05,26466,3390,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",409.96,{},254271,1,Europe +2024-02-23,26467,64,"[""Keyboard""]",1817.23,{},101113,0,North America +2024-05-16,26468,8409,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2208.33,"{""promo"": ""10%""}",68317,1,North America +2024-07-27,26469,3302,"[""Monitor"", ""Phone"", ""Headphones""]",384.95,"{""seasonal"": ""13%""}",98629,0,South America +2024-07-05,26470,5223,"[""Tablet"", ""Monitor"", ""Charger""]",2848.38,"{""seasonal"": ""20%""}",175887,1,South America +2024-07-28,26471,5912,"[""Tablet"", ""Keyboard""]",3453.97,{},105993,1,Asia +2023-09-14,26472,2773,"[""Wireless Mouse""]",291.73,{},158753,0,Europe +2023-04-03,26473,6850,"[""Tablet"", ""Headphones"", ""Monitor""]",3395.29,"{""loyalty"": ""18%""}",155693,1,Africa +2023-02-12,26474,7158,"[""Phone"", ""Tablet""]",4919.25,"{""loyalty"": ""13%""}",105938,1,Asia +2023-04-14,26475,7980,"[""Charger"", ""Monitor"", ""Keyboard""]",200.58,{},281977,0,Africa +2023-05-22,26476,1946,"[""Wireless Mouse"", ""Laptop""]",4370.67,{},119880,1,South America +2024-07-31,26477,7172,"[""Headphones"", ""Monitor"", ""Phone""]",1170.79,{},142919,0,Europe +2024-06-23,26478,7465,"[""Headphones""]",4206.19,{},45163,0,North America +2024-04-12,26479,2186,"[""Keyboard"", ""Headphones"", ""Charger""]",1795.1,{},293510,1,South America +2023-02-17,26480,2917,"[""Phone"", ""Charger"", ""Monitor""]",961.58,{},24887,0,Asia +2024-07-17,26481,8644,"[""Charger"", ""Phone""]",4664.39,"{""seasonal"": ""22%""}",71660,1,North America +2024-04-10,26482,5739,"[""Tablet"", ""Headphones"", ""Monitor""]",4696.4,{},189598,0,South America +2024-12-17,26483,5327,"[""Keyboard"", ""Wireless Mouse""]",4507.79,"{""loyalty"": ""11%""}",95467,1,Europe +2023-04-05,26484,7054,"[""Monitor""]",4943.64,{},112035,0,Africa +2023-03-18,26485,5539,"[""Wireless Mouse"", ""Phone""]",2014.5,"{""seasonal"": ""13%""}",126572,0,South America +2023-01-07,26486,7648,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3078.45,"{"""": ""13%""}",188258,0,South America +2023-06-09,26487,2639,"[""Headphones""]",726.85,"{""promo"": ""13%""}",285484,0,Asia +2024-11-26,26488,3862,"[""Wireless Mouse""]",1714.85,"{""promo"": ""20%""}",147089,0,Asia +2024-05-21,26489,2536,"[""Keyboard""]",2519.84,"{""loyalty"": ""23%""}",55115,1,Europe +2024-06-28,26490,1622,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",447.99,"{""promo"": ""15%""}",8818,0,North America +2024-08-03,26491,776,"[""Monitor"", ""Laptop""]",70.65,{},41286,1,North America +2024-09-05,26492,1247,"[""Keyboard""]",598.93,{},15742,0,North America +2024-03-03,26493,7800,"[""Headphones"", ""Laptop"", ""Tablet""]",2869.91,{},279408,1,Europe +2024-08-28,26494,7604,"[""Headphones""]",2714.32,{},10532,0,Europe +2023-02-10,26495,3418,"[""Phone""]",1031.93,{},171658,0,Asia +2023-04-16,26496,7966,"[""Charger""]",1647.08,"{""promo"": ""25%""}",248659,1,South America +2023-04-06,26497,7984,"[""Laptop""]",530.47,"{""loyalty"": ""23%""}",83078,0,Europe +2024-08-02,26498,9418,"[""Monitor"", ""Keyboard"", ""Charger""]",1022.87,"{""seasonal"": ""15%""}",213796,0,South America +2024-12-09,26499,2277,"[""Tablet""]",1898.92,"{""promo"": ""22%""}",8936,0,Africa +2024-04-30,26500,860,"[""Monitor"", ""Keyboard"", ""Charger""]",2019.4,"{""seasonal"": ""13%""}",211752,1,Africa +2024-05-13,26501,9444,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2500.03,"{""seasonal"": ""14%""}",68070,1,Asia +2024-08-23,26502,8388,"[""Phone""]",1640.09,"{""loyalty"": ""8%""}",43395,0,South America +2024-02-08,26503,4609,"[""Monitor"", ""Charger"", ""Keyboard""]",1241.21,"{"""": ""14%""}",209201,0,North America +2024-01-28,26504,376,"[""Charger"", ""Wireless Mouse""]",4806.35,"{"""": ""5%""}",101367,0,North America +2024-04-23,26505,1827,"[""Tablet"", ""Keyboard""]",1704.47,"{""promo"": ""10%""}",48398,0,North America +2024-01-09,26506,3359,"[""Laptop""]",427.77,"{""loyalty"": ""30%""}",19260,1,Africa +2023-05-12,26507,6022,"[""Monitor""]",1808.61,{},52239,0,North America +2024-02-02,26508,8799,"[""Phone"", ""Headphones""]",325.73,"{""promo"": ""11%""}",110707,1,Asia +2024-11-06,26509,7811,"[""Wireless Mouse"", ""Tablet""]",4821.52,{},179151,0,North America +2023-12-23,26510,1460,"[""Monitor"", ""Laptop""]",3236.65,"{""promo"": ""5%""}",124030,0,Europe +2024-05-30,26511,8281,"[""Phone"", ""Laptop""]",1096.69,{},131067,0,Europe +2023-01-09,26512,8470,"[""Charger""]",179.77,{},296770,1,South America +2024-03-06,26513,1815,"[""Tablet""]",2324.84,{},180371,0,Europe +2023-10-04,26514,6081,"[""Tablet""]",1736.69,"{""seasonal"": ""7%""}",86395,1,Asia +2024-12-05,26515,6373,"[""Wireless Mouse""]",793.51,{},59544,1,Asia +2024-04-03,26516,889,"[""Laptop"", ""Tablet""]",2977.39,{},264631,0,Europe +2023-06-19,26517,7287,"[""Charger"", ""Monitor"", ""Phone""]",3117.46,"{""loyalty"": ""16%""}",232914,1,South America +2024-04-04,26518,894,"[""Laptop""]",2723.99,{},43156,0,Africa +2023-06-17,26519,5664,"[""Laptop""]",4380.57,{},43259,0,Africa +2023-09-16,26520,1241,"[""Monitor"", ""Tablet""]",1888.57,"{"""": ""29%""}",195293,1,South America +2023-02-23,26521,5626,"[""Monitor"", ""Keyboard"", ""Phone""]",1449.95,{},149349,1,Europe +2023-07-03,26522,8828,"[""Wireless Mouse"", ""Phone""]",1677.27,{},221854,0,Africa +2023-09-16,26523,3869,"[""Keyboard""]",723.9,"{""seasonal"": ""24%""}",30709,1,North America +2023-01-03,26524,9026,"[""Keyboard"", ""Headphones""]",3255.49,{},288032,1,Africa +2024-08-09,26525,4647,"[""Tablet""]",384.41,"{""loyalty"": ""29%""}",94011,0,Europe +2024-10-14,26526,6565,"[""Monitor"", ""Tablet""]",182.26,{},194689,1,South America +2024-11-14,26527,5423,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",458.39,{},234328,1,Europe +2023-08-16,26528,4680,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4148.41,"{""promo"": ""19%""}",132348,1,North America +2023-10-10,26529,6353,"[""Phone"", ""Monitor"", ""Tablet""]",1860.8,{},196718,1,Europe +2024-09-19,26530,751,"[""Headphones"", ""Tablet""]",4833.11,"{""loyalty"": ""30%""}",273058,0,Africa +2023-02-25,26531,4353,"[""Charger"", ""Wireless Mouse""]",3205.55,"{""seasonal"": ""11%""}",143566,1,South America +2024-10-30,26532,2123,"[""Keyboard""]",3054.64,"{""loyalty"": ""20%""}",2077,1,Europe +2024-03-29,26533,4121,"[""Keyboard"", ""Headphones"", ""Charger""]",3238.1,{},84715,1,Europe +2024-03-09,26534,5301,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",421.88,"{""promo"": ""19%""}",286726,1,Asia +2023-07-24,26535,8031,"[""Laptop""]",2739.67,"{""loyalty"": ""21%""}",234513,0,North America +2023-01-14,26536,4755,"[""Charger"", ""Laptop"", ""Monitor""]",3502.19,{},25991,0,Africa +2024-07-17,26537,3636,"[""Laptop"", ""Charger"", ""Headphones""]",2025.87,{},263088,1,Africa +2023-07-29,26538,8546,"[""Headphones""]",2558.58,"{"""": ""5%""}",230541,1,North America +2024-04-01,26539,3330,"[""Keyboard""]",3883.72,"{""promo"": ""20%""}",253871,0,Asia +2024-09-18,26540,5860,"[""Keyboard"", ""Charger""]",2694.17,"{"""": ""26%""}",42805,0,Europe +2023-12-29,26541,8017,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3183.09,{},51472,1,Europe +2023-03-29,26542,9023,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",313.4,{},194650,1,Europe +2023-11-10,26543,6593,"[""Headphones""]",4910.42,"{"""": ""24%""}",122060,0,Asia +2024-06-12,26544,802,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2577.37,"{""loyalty"": ""23%""}",87087,0,Asia +2024-03-15,26545,8465,"[""Phone"", ""Tablet""]",1420.39,{},111050,0,South America +2023-03-13,26546,6700,"[""Phone"", ""Charger"", ""Keyboard""]",3461.77,{},97058,0,Africa +2023-03-01,26547,275,"[""Wireless Mouse"", ""Keyboard""]",4272.78,"{""promo"": ""21%""}",282994,0,Africa +2024-06-18,26548,7852,"[""Charger"", ""Headphones""]",691.16,{},107939,1,South America +2023-02-09,26549,6192,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1191.13,{},187805,0,South America +2024-04-11,26550,5636,"[""Laptop"", ""Charger""]",551.89,{},79823,1,Europe +2024-09-08,26551,1461,"[""Charger"", ""Headphones"", ""Keyboard""]",4371.16,"{""promo"": ""9%""}",90787,1,South America +2024-10-08,26552,200,"[""Wireless Mouse""]",1903.06,{},195776,1,Europe +2023-11-26,26553,8683,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4001.75,"{"""": ""14%""}",16196,0,South America +2023-10-28,26554,494,"[""Phone""]",1732.48,{},185403,0,North America +2023-10-04,26555,7448,"[""Charger"", ""Keyboard""]",4121.5,{},3959,0,Africa +2024-04-27,26556,2321,"[""Wireless Mouse""]",3158.86,{},265459,1,Asia +2023-07-06,26557,2084,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1820.35,{},38349,0,Europe +2023-06-27,26558,8719,"[""Charger"", ""Headphones"", ""Phone""]",882.35,{},52700,1,Europe +2024-04-20,26559,1853,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2574.57,"{"""": ""6%""}",14964,1,North America +2024-09-16,26560,2847,"[""Monitor""]",1111.01,"{"""": ""19%""}",209634,0,Africa +2023-05-31,26561,6557,"[""Tablet"", ""Monitor""]",2963.21,"{"""": ""22%""}",101051,1,North America +2024-11-19,26562,9786,"[""Tablet"", ""Laptop""]",3988.28,"{""promo"": ""15%""}",204763,0,South America +2024-05-20,26563,4235,"[""Wireless Mouse""]",1565.55,"{""seasonal"": ""20%""}",197235,1,Africa +2023-07-05,26564,1511,"[""Monitor"", ""Laptop"", ""Keyboard""]",769.5,{},278129,1,Asia +2023-06-06,26565,2577,"[""Charger""]",688.31,{},139703,0,South America +2023-12-19,26566,2187,"[""Phone"", ""Charger"", ""Tablet""]",3659.38,"{"""": ""19%""}",254037,0,Europe +2023-02-07,26567,584,"[""Laptop"", ""Wireless Mouse""]",3641.03,{},84758,1,Asia +2023-10-17,26568,3008,"[""Wireless Mouse"", ""Headphones""]",698.03,"{""loyalty"": ""13%""}",76976,0,Europe +2023-07-26,26569,4212,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4411.08,{},184576,1,South America +2023-12-14,26570,7543,"[""Monitor"", ""Keyboard""]",3216.62,"{"""": ""22%""}",183313,1,North America +2024-04-28,26571,2756,"[""Laptop"", ""Charger""]",2386.69,"{""seasonal"": ""11%""}",230871,1,Europe +2023-06-28,26572,5313,"[""Charger"", ""Keyboard"", ""Laptop""]",2046.41,"{"""": ""19%""}",38662,1,North America +2023-03-25,26573,3811,"[""Keyboard"", ""Wireless Mouse""]",2054.04,"{""loyalty"": ""24%""}",190403,1,Europe +2023-02-14,26574,434,"[""Keyboard""]",4639.37,{},286580,1,South America +2024-05-13,26575,8803,"[""Laptop"", ""Charger""]",2324.44,"{""promo"": ""27%""}",237999,0,Africa +2024-02-24,26576,751,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3144.85,"{""loyalty"": ""11%""}",229462,1,North America +2023-04-08,26577,2745,"[""Charger"", ""Headphones""]",1038.17,{},292633,1,Asia +2024-09-02,26578,2273,"[""Headphones""]",3857.78,{},238375,0,Africa +2024-01-12,26579,9095,"[""Charger"", ""Tablet""]",4965.58,{},159255,1,South America +2024-02-04,26580,2297,"[""Laptop"", ""Headphones"", ""Keyboard""]",977.72,{},119371,0,North America +2024-11-13,26581,7843,"[""Headphones""]",4430.03,{},213866,1,South America +2023-09-22,26582,4511,"[""Phone""]",4301.8,"{""loyalty"": ""12%""}",236800,0,South America +2023-06-15,26583,2077,"[""Phone"", ""Charger""]",3458.06,{},229278,0,Europe +2024-09-09,26584,1639,"[""Keyboard"", ""Headphones""]",2171.94,{},174197,1,South America +2023-09-01,26585,3874,"[""Laptop"", ""Phone"", ""Tablet""]",4900.14,"{""promo"": ""15%""}",2830,1,Asia +2023-08-23,26586,3335,"[""Monitor"", ""Phone"", ""Laptop""]",879.85,"{""loyalty"": ""13%""}",36994,1,North America +2024-05-05,26587,2938,"[""Monitor""]",4053.83,{},288472,0,Africa +2023-04-06,26588,7797,"[""Headphones"", ""Wireless Mouse""]",4754.92,"{""promo"": ""15%""}",125005,1,Africa +2024-11-26,26589,7678,"[""Charger"", ""Tablet""]",2043.25,{},17882,0,Asia +2024-11-04,26590,7913,"[""Tablet"", ""Keyboard""]",2837.89,"{""promo"": ""6%""}",97497,1,Asia +2024-05-04,26591,1374,"[""Phone"", ""Wireless Mouse""]",3009.83,{},64838,0,Europe +2023-04-16,26592,2810,"[""Wireless Mouse""]",4191.55,{},239468,0,Africa +2024-01-16,26593,6839,"[""Phone"", ""Laptop""]",1016.08,"{"""": ""17%""}",270103,0,South America +2023-02-24,26594,9396,"[""Wireless Mouse""]",1946.6,{},154618,1,South America +2023-10-10,26595,8628,"[""Wireless Mouse"", ""Keyboard""]",780.3,{},161888,0,Europe +2024-08-24,26596,8743,"[""Monitor""]",3987.28,{},202867,1,North America +2024-07-19,26597,6744,"[""Laptop"", ""Headphones"", ""Charger""]",2417.56,{},69656,1,North America +2024-07-14,26598,2167,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3965.51,"{""promo"": ""11%""}",54804,0,South America +2024-06-28,26599,8135,"[""Phone"", ""Keyboard"", ""Laptop""]",4970.05,"{""seasonal"": ""22%""}",1523,0,Africa +2024-01-25,26600,7864,"[""Wireless Mouse""]",1976.27,{},97180,1,Asia +2023-08-04,26601,640,"[""Monitor"", ""Keyboard"", ""Phone""]",1196.35,"{""loyalty"": ""14%""}",47799,1,Europe +2024-09-05,26602,1288,"[""Charger""]",2369.17,{},226842,1,Europe +2023-12-05,26603,9999,"[""Wireless Mouse""]",136.51,{},199629,0,Europe +2024-06-25,26604,4934,"[""Keyboard"", ""Monitor"", ""Laptop""]",4287.21,{},49324,1,South America +2024-04-06,26605,4181,"[""Charger""]",1604.63,{},26263,0,Africa +2023-12-05,26606,4016,"[""Phone""]",3526.05,"{"""": ""17%""}",12973,0,Africa +2023-06-29,26607,1435,"[""Charger""]",3452.91,{},298742,0,Europe +2024-05-04,26608,5147,"[""Monitor"", ""Charger"", ""Phone""]",1732.65,{},8849,0,North America +2023-11-16,26609,2376,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",151.83,"{""seasonal"": ""25%""}",48270,1,Europe +2024-02-08,26610,1403,"[""Charger"", ""Monitor""]",418.98,{},115581,1,South America +2024-03-09,26611,8120,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2774.76,"{""loyalty"": ""7%""}",81418,0,Africa +2023-05-27,26612,244,"[""Headphones"", ""Tablet""]",988.13,{},157467,1,South America +2024-11-15,26613,4485,"[""Phone"", ""Tablet""]",1297.26,"{""loyalty"": ""7%""}",273515,1,North America +2023-05-12,26614,8637,"[""Monitor"", ""Phone""]",2948.37,"{"""": ""26%""}",254788,0,Africa +2023-09-11,26615,3837,"[""Monitor"", ""Keyboard""]",4315.58,"{"""": ""15%""}",60379,0,South America +2023-07-09,26616,6655,"[""Keyboard""]",4016.67,{},135913,1,Africa +2023-05-09,26617,9412,"[""Keyboard"", ""Monitor""]",143.66,"{""promo"": ""17%""}",37142,1,South America +2024-06-30,26618,2077,"[""Keyboard"", ""Phone"", ""Headphones""]",4080.43,{},3620,1,South America +2023-04-16,26619,1160,"[""Headphones""]",4269.0,{},39712,0,Asia +2023-11-08,26620,3047,"[""Wireless Mouse"", ""Monitor""]",4572.88,"{""seasonal"": ""16%""}",206262,0,Europe +2023-05-02,26621,8228,"[""Phone""]",2040.71,{},250286,0,North America +2024-01-13,26622,5989,"[""Laptop"", ""Wireless Mouse""]",1249.05,"{"""": ""19%""}",196947,0,South America +2024-06-23,26623,4757,"[""Laptop""]",3468.77,{},164969,0,South America +2024-10-27,26624,5550,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1088.52,{},173350,0,North America +2024-09-20,26625,8049,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2234.44,"{""seasonal"": ""17%""}",269005,0,South America +2024-01-14,26626,3722,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1575.01,"{"""": ""25%""}",136592,1,Africa +2024-05-10,26627,3928,"[""Charger"", ""Phone""]",416.92,{},111530,1,Africa +2023-05-22,26628,2856,"[""Charger"", ""Keyboard"", ""Monitor""]",3147.97,"{"""": ""16%""}",81134,0,Africa +2023-10-04,26629,1367,"[""Phone""]",3510.04,"{""seasonal"": ""29%""}",191937,1,Africa +2023-04-01,26630,6516,"[""Charger"", ""Phone"", ""Keyboard""]",2298.53,"{""loyalty"": ""20%""}",90917,1,North America +2024-03-31,26631,7993,"[""Keyboard"", ""Charger""]",940.97,{},75229,0,Africa +2024-03-29,26632,1120,"[""Charger"", ""Laptop""]",2756.52,"{""promo"": ""8%""}",207431,1,South America +2024-11-02,26633,9766,"[""Wireless Mouse""]",644.96,"{""loyalty"": ""10%""}",132518,1,Asia +2024-04-27,26634,7242,"[""Wireless Mouse"", ""Monitor""]",4855.76,"{""loyalty"": ""17%""}",180778,1,Asia +2024-01-13,26635,9692,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",978.55,{},272522,1,Africa +2024-10-30,26636,7746,"[""Charger""]",3065.58,"{""loyalty"": ""19%""}",248605,0,Europe +2023-03-14,26637,4492,"[""Tablet""]",2232.51,"{""promo"": ""10%""}",50639,0,North America +2024-07-23,26638,411,"[""Laptop"", ""Monitor"", ""Charger""]",2775.27,"{""seasonal"": ""16%""}",256947,0,South America +2023-02-19,26639,7926,"[""Laptop"", ""Wireless Mouse""]",4924.34,"{""promo"": ""16%""}",236861,1,South America +2023-04-03,26640,6180,"[""Charger"", ""Monitor"", ""Laptop""]",2599.54,"{""loyalty"": ""28%""}",270782,1,Africa +2024-05-13,26641,4409,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4562.38,{},164499,0,Asia +2023-04-11,26642,7664,"[""Monitor"", ""Keyboard""]",1500.81,{},70445,0,Europe +2023-02-22,26643,930,"[""Laptop"", ""Monitor""]",2834.21,"{""seasonal"": ""15%""}",218597,1,Africa +2023-08-17,26644,8271,"[""Laptop""]",374.07,"{""loyalty"": ""27%""}",38751,1,Asia +2023-10-15,26645,1390,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1534.74,{},45415,0,Asia +2023-06-09,26646,1130,"[""Charger""]",4886.61,{},275764,1,Asia +2024-02-03,26647,566,"[""Monitor""]",3193.86,{},177407,0,Asia +2023-02-03,26648,8941,"[""Charger""]",1083.42,{},245245,1,Asia +2024-02-28,26649,2502,"[""Laptop"", ""Charger"", ""Keyboard""]",1366.04,"{""seasonal"": ""22%""}",224964,1,Asia +2023-01-16,26650,7781,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1706.96,"{"""": ""10%""}",138397,0,Asia +2024-01-11,26651,689,"[""Laptop""]",878.83,"{""promo"": ""16%""}",66807,0,South America +2024-10-01,26652,3610,"[""Charger"", ""Monitor"", ""Phone""]",1542.89,{},133049,0,North America +2024-01-29,26653,2187,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2650.7,"{""loyalty"": ""23%""}",204742,1,North America +2023-09-05,26654,5773,"[""Phone"", ""Headphones""]",717.61,"{""promo"": ""27%""}",175918,0,South America +2023-01-12,26655,7233,"[""Tablet"", ""Headphones"", ""Laptop""]",3645.23,"{""promo"": ""6%""}",158566,0,Asia +2023-12-05,26656,9154,"[""Charger"", ""Monitor""]",700.07,{},281846,1,North America +2024-09-11,26657,5685,"[""Laptop"", ""Wireless Mouse""]",1928.75,{},154070,1,Asia +2024-08-13,26658,8527,"[""Monitor""]",3506.57,"{""loyalty"": ""21%""}",112071,0,North America +2024-10-10,26659,5689,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1019.96,{},154895,1,South America +2024-10-19,26660,9452,"[""Charger""]",3819.33,"{""seasonal"": ""15%""}",10484,0,North America +2023-08-25,26661,5230,"[""Tablet"", ""Keyboard"", ""Charger""]",1189.45,{},24772,0,Europe +2024-05-13,26662,3194,"[""Monitor""]",371.81,{},105909,0,South America +2024-07-14,26663,164,"[""Wireless Mouse"", ""Laptop""]",775.46,{},97745,1,Asia +2024-07-22,26664,2943,"[""Phone"", ""Laptop""]",4253.93,"{""loyalty"": ""5%""}",277419,0,North America +2024-12-21,26665,9272,"[""Phone""]",4661.04,"{""seasonal"": ""19%""}",161375,1,Europe +2023-02-28,26666,1220,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4252.26,"{""promo"": ""24%""}",165529,0,Asia +2023-04-19,26667,5886,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3696.74,{},168429,1,Africa +2023-05-21,26668,4626,"[""Tablet"", ""Charger""]",4983.16,{},162131,0,Asia +2024-12-23,26669,2089,"[""Phone"", ""Tablet""]",939.86,{},266954,0,Europe +2023-02-14,26670,8272,"[""Charger"", ""Keyboard""]",2289.42,{},239739,0,North America +2023-07-04,26671,7376,"[""Headphones"", ""Laptop""]",676.77,{},178909,0,Asia +2023-09-12,26672,2876,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2836.46,"{"""": ""18%""}",52045,1,North America +2024-12-06,26673,2435,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1309.56,{},214606,1,North America +2023-08-11,26674,4635,"[""Charger""]",3877.27,{},154221,1,North America +2023-06-22,26675,3942,"[""Laptop""]",3373.02,"{""loyalty"": ""11%""}",274381,0,Asia +2023-07-07,26676,3887,"[""Keyboard""]",511.35,"{""seasonal"": ""24%""}",13535,1,Europe +2024-08-09,26677,9982,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4869.65,"{"""": ""30%""}",146049,0,South America +2023-07-24,26678,8906,"[""Monitor"", ""Wireless Mouse""]",3351.42,{},50063,1,Europe +2024-01-23,26679,4442,"[""Wireless Mouse""]",4170.81,"{""promo"": ""27%""}",162895,1,South America +2024-11-14,26680,729,"[""Laptop""]",2915.84,{},12785,0,Asia +2023-04-02,26681,9025,"[""Monitor"", ""Wireless Mouse""]",1579.81,"{""promo"": ""16%""}",267477,1,North America +2023-06-26,26682,2500,"[""Phone""]",4617.38,"{""loyalty"": ""30%""}",230663,0,South America +2024-03-28,26683,4829,"[""Wireless Mouse""]",2141.08,{},82626,0,Africa +2023-08-10,26684,8826,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3730.74,{},70360,1,Asia +2023-11-27,26685,2416,"[""Monitor""]",4451.85,"{""promo"": ""24%""}",164737,1,Europe +2024-05-03,26686,4363,"[""Wireless Mouse""]",3831.83,"{""loyalty"": ""17%""}",295730,0,Europe +2023-05-31,26687,9877,"[""Keyboard"", ""Laptop""]",2560.35,"{"""": ""7%""}",41286,1,North America +2023-04-30,26688,390,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3030.08,"{""seasonal"": ""29%""}",297710,1,North America +2023-03-18,26689,6776,"[""Headphones"", ""Monitor""]",4884.87,"{""seasonal"": ""5%""}",25343,1,North America +2024-07-08,26690,2826,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1210.19,"{""promo"": ""7%""}",263528,1,North America +2024-08-27,26691,1293,"[""Keyboard""]",1656.71,"{""promo"": ""15%""}",176427,1,Africa +2023-09-23,26692,9518,"[""Monitor"", ""Headphones"", ""Laptop""]",2778.5,{},193135,1,Europe +2023-01-15,26693,1718,"[""Monitor"", ""Laptop""]",3202.05,"{"""": ""22%""}",283754,1,North America +2023-12-01,26694,278,"[""Charger"", ""Tablet""]",4518.54,"{""promo"": ""25%""}",151364,1,North America +2023-04-05,26695,825,"[""Headphones""]",2771.73,{},58404,1,North America +2023-09-24,26696,8660,"[""Headphones""]",2354.37,"{"""": ""7%""}",238020,1,Europe +2024-01-13,26697,978,"[""Laptop"", ""Wireless Mouse""]",1523.77,{},262714,1,Africa +2024-06-27,26698,6382,"[""Laptop"", ""Charger""]",922.09,"{""loyalty"": ""22%""}",81247,0,Africa +2024-06-28,26699,154,"[""Phone""]",134.46,"{""loyalty"": ""24%""}",224253,0,South America +2023-01-12,26700,7209,"[""Phone"", ""Tablet"", ""Laptop""]",773.88,{},138063,1,Africa +2023-11-20,26701,1398,"[""Tablet"", ""Headphones"", ""Monitor""]",3499.23,"{""loyalty"": ""8%""}",262855,1,Asia +2023-03-21,26702,2787,"[""Tablet""]",4688.98,{},292535,0,North America +2023-02-08,26703,6578,"[""Headphones"", ""Phone"", ""Charger""]",4313.93,"{"""": ""16%""}",30015,1,South America +2023-10-03,26704,9561,"[""Monitor"", ""Phone"", ""Laptop""]",4510.63,{},13283,1,South America +2024-06-18,26705,6206,"[""Laptop"", ""Tablet"", ""Headphones""]",3876.61,{},250760,0,South America +2024-08-01,26706,9762,"[""Wireless Mouse"", ""Phone""]",3108.15,"{""seasonal"": ""6%""}",40625,1,Asia +2023-01-15,26707,4709,"[""Phone""]",364.85,{},212965,1,Europe +2024-05-23,26708,4523,"[""Monitor"", ""Phone"", ""Tablet""]",3809.3,{},190258,0,Africa +2024-05-07,26709,6345,"[""Keyboard"", ""Charger"", ""Tablet""]",673.87,{},189566,0,Asia +2024-09-22,26710,893,"[""Tablet""]",2691.64,"{""promo"": ""11%""}",173766,0,North America +2024-05-07,26711,678,"[""Keyboard"", ""Monitor"", ""Headphones""]",3282.93,{},295425,0,South America +2024-07-03,26712,9052,"[""Tablet"", ""Laptop""]",2740.49,{},242072,0,Europe +2024-06-02,26713,6979,"[""Wireless Mouse""]",3522.5,"{"""": ""29%""}",232354,0,Africa +2023-08-10,26714,2899,"[""Phone""]",2350.33,"{"""": ""21%""}",194172,0,South America +2024-02-06,26715,7105,"[""Keyboard"", ""Wireless Mouse""]",1743.85,"{""seasonal"": ""11%""}",98807,0,Asia +2023-05-21,26716,8322,"[""Charger"", ""Tablet""]",1149.66,"{""loyalty"": ""20%""}",32491,1,Asia +2024-03-18,26717,3728,"[""Charger""]",3687.22,"{""promo"": ""25%""}",27050,1,Europe +2023-07-16,26718,1028,"[""Charger"", ""Phone""]",4006.02,"{"""": ""24%""}",200313,0,North America +2023-05-30,26719,7142,"[""Headphones"", ""Wireless Mouse""]",2706.38,{},209217,1,South America +2024-01-23,26720,8302,"[""Tablet"", ""Phone"", ""Monitor""]",1616.68,{},148908,1,Africa +2024-12-25,26721,7155,"[""Wireless Mouse""]",1831.51,"{""promo"": ""7%""}",16179,0,Europe +2024-09-09,26722,8,"[""Headphones"", ""Monitor"", ""Laptop""]",3562.83,{},79734,1,Asia +2024-03-29,26723,7799,"[""Tablet"", ""Phone""]",4087.85,"{""seasonal"": ""12%""}",18238,1,Europe +2024-10-02,26724,215,"[""Tablet""]",4824.65,{},94657,1,Asia +2024-09-16,26725,8725,"[""Phone"", ""Monitor""]",1508.47,{},108091,1,South America +2023-07-12,26726,2427,"[""Wireless Mouse""]",3155.39,"{"""": ""9%""}",297500,0,North America +2024-08-31,26727,1735,"[""Phone"", ""Keyboard"", ""Monitor""]",3777.65,{},216840,0,Asia +2024-05-05,26728,6241,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1437.09,"{""seasonal"": ""16%""}",152944,0,Africa +2023-09-26,26729,1084,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2595.18,{},167707,1,Africa +2023-12-07,26730,3589,"[""Phone"", ""Monitor""]",2297.46,"{""promo"": ""22%""}",9613,1,Africa +2024-11-06,26731,3704,"[""Charger"", ""Laptop"", ""Phone""]",696.86,{},112488,1,South America +2024-02-01,26732,442,"[""Wireless Mouse""]",3389.96,"{""loyalty"": ""22%""}",166902,1,North America +2024-10-27,26733,4797,"[""Monitor""]",2243.21,"{""promo"": ""26%""}",83955,0,Europe +2024-08-14,26734,1661,"[""Laptop"", ""Tablet""]",1416.0,{},179178,0,Africa +2024-12-31,26735,5950,"[""Monitor""]",2306.96,{},220367,0,Africa +2024-07-26,26736,3211,"[""Keyboard"", ""Monitor"", ""Laptop""]",1976.99,"{""promo"": ""15%""}",250118,1,Asia +2023-06-15,26737,634,"[""Monitor"", ""Headphones""]",1447.1,{},49329,0,Asia +2024-12-31,26738,2551,"[""Tablet"", ""Wireless Mouse""]",3895.77,"{""promo"": ""10%""}",173007,1,Europe +2023-07-26,26739,8508,"[""Laptop"", ""Wireless Mouse""]",4140.27,"{"""": ""16%""}",171378,0,Asia +2023-09-16,26740,4414,"[""Wireless Mouse"", ""Keyboard""]",1251.3,{},264019,1,Asia +2024-05-24,26741,5176,"[""Phone"", ""Keyboard""]",3103.78,{},141614,1,North America +2023-11-27,26742,7993,"[""Phone"", ""Laptop"", ""Charger""]",922.73,{},114353,0,South America +2024-11-18,26743,8170,"[""Charger"", ""Wireless Mouse""]",2448.28,{},203089,1,North America +2023-03-30,26744,6245,"[""Laptop"", ""Monitor"", ""Phone""]",1783.85,"{""loyalty"": ""17%""}",48784,0,South America +2024-09-21,26745,4412,"[""Charger"", ""Phone""]",4805.65,"{"""": ""8%""}",64535,1,North America +2023-01-18,26746,2823,"[""Keyboard""]",2690.37,{},180061,1,North America +2024-11-14,26747,2159,"[""Monitor"", ""Laptop""]",4832.45,{},297902,0,Africa +2023-11-25,26748,6292,"[""Wireless Mouse""]",4525.29,{},105111,1,Europe +2024-04-26,26749,1632,"[""Wireless Mouse""]",1454.12,{},125040,1,North America +2023-10-11,26750,1568,"[""Charger"", ""Wireless Mouse""]",1973.62,{},270233,1,Europe +2023-11-16,26751,3758,"[""Wireless Mouse"", ""Phone""]",4357.18,"{"""": ""24%""}",274240,0,Asia +2024-09-14,26752,6374,"[""Charger""]",1714.73,{},158882,1,Europe +2024-01-15,26753,7276,"[""Keyboard""]",1416.0,"{""promo"": ""10%""}",184189,0,North America +2023-10-25,26754,449,"[""Keyboard"", ""Phone"", ""Headphones""]",1445.96,{},201771,1,North America +2024-04-25,26755,767,"[""Wireless Mouse"", ""Tablet""]",4555.93,"{""promo"": ""8%""}",17771,1,North America +2023-04-23,26756,7405,"[""Headphones"", ""Laptop"", ""Charger""]",4282.72,{},29832,0,South America +2023-01-26,26757,9481,"[""Charger"", ""Keyboard"", ""Tablet""]",4566.93,{},115032,0,Africa +2024-08-15,26758,1888,"[""Monitor""]",2593.14,"{"""": ""28%""}",233478,1,South America +2023-04-24,26759,836,"[""Tablet""]",2208.53,"{""loyalty"": ""25%""}",87653,1,Europe +2024-01-02,26760,5740,"[""Headphones"", ""Tablet"", ""Keyboard""]",2231.51,{},273205,0,Africa +2023-04-02,26761,6154,"[""Keyboard"", ""Phone"", ""Headphones""]",3470.85,{},51220,0,South America +2024-10-23,26762,2231,"[""Wireless Mouse"", ""Headphones""]",1585.72,{},89236,0,North America +2024-11-06,26763,9853,"[""Laptop""]",2371.8,{},272828,0,Asia +2024-04-04,26764,4427,"[""Charger""]",2837.16,{},92936,1,Africa +2023-12-21,26765,7625,"[""Tablet"", ""Wireless Mouse""]",4787.94,"{""promo"": ""29%""}",179031,1,Asia +2024-08-12,26766,858,"[""Laptop""]",2707.41,"{"""": ""16%""}",206188,1,Africa +2024-05-14,26767,2226,"[""Phone""]",412.78,{},152208,1,Asia +2024-02-01,26768,5346,"[""Charger""]",537.6,"{""loyalty"": ""30%""}",270390,1,Africa +2024-11-19,26769,6475,"[""Headphones"", ""Monitor"", ""Charger""]",1037.28,{},81875,1,Africa +2024-05-24,26770,4552,"[""Headphones""]",2016.16,"{""seasonal"": ""27%""}",227877,0,North America +2024-12-30,26771,4819,"[""Phone"", ""Headphones""]",3012.6,"{""seasonal"": ""21%""}",74312,0,Asia +2023-07-23,26772,8529,"[""Laptop""]",3778.07,"{""seasonal"": ""12%""}",238174,0,Africa +2024-01-17,26773,492,"[""Laptop"", ""Tablet"", ""Headphones""]",1026.41,{},98314,0,North America +2024-11-28,26774,717,"[""Wireless Mouse""]",4967.81,"{""promo"": ""6%""}",48185,1,North America +2024-10-19,26775,1532,"[""Laptop"", ""Headphones"", ""Charger""]",2711.03,"{"""": ""16%""}",248249,1,South America +2023-04-20,26776,6372,"[""Charger"", ""Monitor"", ""Laptop""]",3810.89,{},271431,0,Asia +2023-12-12,26777,1490,"[""Keyboard"", ""Tablet""]",4849.83,"{""promo"": ""11%""}",112637,0,Asia +2023-11-15,26778,9063,"[""Tablet""]",2412.52,"{""promo"": ""17%""}",233983,1,South America +2023-11-24,26779,2556,"[""Phone""]",1699.2,"{"""": ""27%""}",154970,0,North America +2024-05-22,26780,5163,"[""Phone"", ""Laptop""]",4988.61,"{""loyalty"": ""5%""}",188055,1,Asia +2024-09-14,26781,623,"[""Charger"", ""Monitor""]",1459.68,{},133426,0,North America +2023-12-03,26782,6084,"[""Charger"", ""Monitor"", ""Tablet""]",3622.14,{},229984,1,Europe +2024-11-28,26783,9968,"[""Laptop""]",1284.38,{},221648,1,South America +2024-02-28,26784,3663,"[""Laptop"", ""Tablet""]",1923.35,{},210109,0,Europe +2024-09-24,26785,5614,"[""Tablet""]",3936.71,"{""seasonal"": ""6%""}",191724,1,Africa +2023-08-24,26786,1051,"[""Monitor"", ""Tablet""]",680.51,"{""seasonal"": ""30%""}",167265,1,Asia +2023-06-28,26787,2146,"[""Tablet"", ""Keyboard""]",3759.73,{},103920,1,North America +2023-07-05,26788,590,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",194.23,"{""seasonal"": ""18%""}",285360,0,South America +2024-07-19,26789,5317,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4443.75,{},242951,0,Europe +2023-07-31,26790,8705,"[""Charger"", ""Laptop""]",2986.61,"{""promo"": ""20%""}",59529,1,Africa +2023-10-27,26791,4877,"[""Charger""]",1446.86,"{""promo"": ""23%""}",179306,1,Europe +2024-07-22,26792,3950,"[""Keyboard""]",1685.0,"{""promo"": ""12%""}",95657,1,Asia +2023-09-24,26793,1378,"[""Laptop"", ""Phone""]",4268.9,"{"""": ""9%""}",144660,1,Asia +2024-03-15,26794,4292,"[""Monitor"", ""Tablet""]",4348.35,{},255081,1,Africa +2023-12-30,26795,4182,"[""Wireless Mouse"", ""Keyboard""]",3830.93,{},224866,1,North America +2024-11-16,26796,6636,"[""Headphones""]",3534.08,"{""promo"": ""12%""}",218373,0,Africa +2024-04-27,26797,6055,"[""Phone"", ""Laptop""]",2128.78,"{""loyalty"": ""29%""}",263999,1,Europe +2023-06-16,26798,650,"[""Wireless Mouse"", ""Monitor""]",899.18,"{""loyalty"": ""12%""}",87563,0,North America +2024-03-23,26799,8633,"[""Charger""]",482.23,"{""promo"": ""17%""}",217682,1,Africa +2023-06-06,26800,5245,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2447.08,"{""loyalty"": ""26%""}",61198,0,Asia +2024-04-02,26801,1545,"[""Keyboard"", ""Tablet""]",512.04,"{""loyalty"": ""14%""}",84572,0,Africa +2023-05-12,26802,2481,"[""Wireless Mouse"", ""Monitor""]",949.24,"{"""": ""16%""}",229828,1,Europe +2024-04-25,26803,5809,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3460.54,{},241010,1,Africa +2024-08-09,26804,9506,"[""Phone""]",1927.51,"{""seasonal"": ""28%""}",118250,1,South America +2024-12-23,26805,591,"[""Phone"", ""Monitor""]",3949.13,"{"""": ""9%""}",104014,1,Africa +2023-08-29,26806,5635,"[""Monitor""]",1626.91,{},50223,0,North America +2023-06-24,26807,1626,"[""Wireless Mouse"", ""Laptop""]",4761.92,"{""loyalty"": ""22%""}",203742,0,Europe +2023-10-16,26808,6256,"[""Charger"", ""Laptop"", ""Keyboard""]",2170.03,"{""promo"": ""25%""}",6294,1,North America +2024-09-20,26809,3731,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3559.76,{},227917,1,South America +2024-07-26,26810,9303,"[""Monitor"", ""Keyboard"", ""Headphones""]",1966.8,{},217014,1,Asia +2024-06-20,26811,4787,"[""Tablet"", ""Monitor"", ""Phone""]",4047.73,"{"""": ""9%""}",119513,1,Africa +2024-06-02,26812,2319,"[""Tablet"", ""Charger""]",2337.16,{},45006,1,Africa +2024-12-14,26813,2845,"[""Keyboard""]",235.9,{},201759,1,Africa +2023-11-10,26814,5223,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3946.17,{},214639,0,Europe +2023-09-06,26815,973,"[""Laptop""]",1646.15,"{""seasonal"": ""21%""}",78683,0,Africa +2023-03-23,26816,8971,"[""Keyboard"", ""Charger""]",1002.27,"{""loyalty"": ""16%""}",118094,1,Asia +2024-10-01,26817,4764,"[""Keyboard"", ""Laptop""]",352.27,{},235327,0,North America +2024-09-10,26818,4022,"[""Laptop"", ""Monitor""]",3173.96,{},9889,1,Europe +2024-11-23,26819,1464,"[""Tablet""]",1013.78,{},86630,1,South America +2023-01-04,26820,7251,"[""Headphones"", ""Wireless Mouse""]",846.7,"{"""": ""20%""}",116120,1,Europe +2023-02-12,26821,2993,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3811.22,"{""loyalty"": ""6%""}",293639,1,Asia +2023-11-29,26822,9097,"[""Headphones"", ""Keyboard"", ""Charger""]",3280.83,"{""promo"": ""9%""}",24770,0,Europe +2024-04-06,26823,8812,"[""Laptop""]",568.09,"{""loyalty"": ""7%""}",274197,0,North America +2023-03-23,26824,5044,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4582.68,"{""seasonal"": ""11%""}",281883,1,Asia +2024-11-29,26825,4975,"[""Keyboard"", ""Laptop"", ""Monitor""]",4115.92,{},291449,1,North America +2024-02-08,26826,2767,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3768.16,"{""loyalty"": ""13%""}",128927,0,North America +2024-02-28,26827,7289,"[""Laptop""]",541.83,{},233477,0,Asia +2023-12-24,26828,4721,"[""Headphones"", ""Charger"", ""Phone""]",4040.06,{},188661,0,Africa +2023-08-07,26829,4672,"[""Wireless Mouse"", ""Headphones""]",1282.92,"{""seasonal"": ""16%""}",51431,1,Asia +2023-07-10,26830,9190,"[""Headphones"", ""Monitor"", ""Keyboard""]",4078.43,"{"""": ""25%""}",26918,1,Africa +2023-01-10,26831,2950,"[""Keyboard"", ""Wireless Mouse""]",65.19,{},46491,1,Europe +2023-10-27,26832,3688,"[""Charger""]",3689.64,{},116531,0,North America +2023-08-31,26833,1441,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4097.39,"{""promo"": ""16%""}",188506,1,Europe +2023-07-11,26834,7498,"[""Phone"", ""Headphones"", ""Tablet""]",995.48,"{""promo"": ""28%""}",283878,0,South America +2023-05-16,26835,3860,"[""Tablet"", ""Keyboard""]",3423.05,"{""seasonal"": ""14%""}",294678,1,Africa +2024-12-31,26836,26,"[""Phone"", ""Headphones""]",3528.98,{},149604,0,Asia +2024-01-01,26837,5951,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",515.81,{},79394,1,South America +2023-05-29,26838,673,"[""Charger"", ""Keyboard""]",2496.17,"{"""": ""19%""}",32914,1,South America +2024-02-10,26839,4444,"[""Phone""]",1642.78,"{""promo"": ""22%""}",289945,1,North America +2024-04-30,26840,9852,"[""Headphones"", ""Keyboard"", ""Laptop""]",3921.05,{},136933,1,Europe +2023-08-29,26841,8568,"[""Charger"", ""Headphones""]",926.74,"{"""": ""7%""}",278698,0,North America +2023-12-04,26842,768,"[""Charger"", ""Phone""]",3627.55,"{"""": ""19%""}",72569,0,Africa +2024-11-20,26843,4580,"[""Phone"", ""Tablet""]",3673.04,"{""loyalty"": ""17%""}",228979,0,North America +2023-12-03,26844,2982,"[""Keyboard""]",420.25,"{""loyalty"": ""22%""}",108557,1,Europe +2024-08-16,26845,8202,"[""Headphones"", ""Phone""]",981.26,{},41488,1,Europe +2023-03-04,26846,4335,"[""Laptop""]",3677.46,{},250394,1,Africa +2024-07-04,26847,7815,"[""Phone""]",1332.26,{},233396,0,North America +2024-11-08,26848,5123,"[""Phone"", ""Keyboard""]",1642.8,{},37232,1,Africa +2024-06-26,26849,943,"[""Charger""]",509.11,{},74323,1,South America +2024-08-15,26850,4027,"[""Wireless Mouse""]",1881.1,"{""loyalty"": ""21%""}",261983,0,Africa +2024-08-31,26851,996,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1470.49,{},278879,1,North America +2024-09-16,26852,131,"[""Phone"", ""Keyboard""]",1603.19,"{""promo"": ""19%""}",9424,0,South America +2023-04-11,26853,2220,"[""Laptop"", ""Tablet""]",995.08,{},291252,0,South America +2024-11-01,26854,7066,"[""Laptop""]",2948.41,{},144244,0,Europe +2023-03-26,26855,795,"[""Tablet""]",367.85,"{""promo"": ""19%""}",26961,0,Europe +2024-01-15,26856,1667,"[""Headphones"", ""Wireless Mouse""]",4915.84,{},234769,1,North America +2024-09-01,26857,376,"[""Headphones"", ""Phone"", ""Charger""]",193.48,"{""seasonal"": ""22%""}",61434,0,Africa +2024-09-08,26858,5890,"[""Phone""]",3569.21,{},12822,1,Europe +2024-03-25,26859,8127,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1232.35,{},8794,0,South America +2024-04-08,26860,7346,"[""Keyboard""]",2705.22,"{""promo"": ""25%""}",113472,0,North America +2024-06-17,26861,7116,"[""Charger"", ""Laptop""]",120.35,"{""promo"": ""15%""}",289870,0,North America +2023-11-10,26862,2888,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3352.16,{},31701,1,Europe +2023-09-20,26863,3982,"[""Wireless Mouse""]",3280.4,{},186982,1,Asia +2023-04-25,26864,6296,"[""Keyboard"", ""Tablet""]",3185.19,{},177592,1,North America +2023-02-25,26865,9892,"[""Phone"", ""Monitor""]",2894.4,{},82212,1,Africa +2023-04-17,26866,6754,"[""Monitor"", ""Wireless Mouse""]",550.91,"{""seasonal"": ""29%""}",58632,0,South America +2023-09-13,26867,8359,"[""Tablet"", ""Headphones""]",4663.96,{},243755,1,Asia +2024-07-05,26868,8022,"[""Charger""]",2507.3,"{"""": ""17%""}",11586,1,Africa +2023-10-12,26869,1538,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4645.54,{},133681,1,Europe +2023-01-18,26870,2270,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3292.95,"{""seasonal"": ""10%""}",220344,0,Europe +2024-06-14,26871,9332,"[""Wireless Mouse"", ""Keyboard""]",3435.38,{},2050,0,North America +2024-12-15,26872,2877,"[""Charger"", ""Monitor""]",4805.97,{},181892,1,North America +2024-09-26,26873,6955,"[""Laptop"", ""Headphones"", ""Monitor""]",148.22,{},169840,0,Europe +2023-08-09,26874,3227,"[""Charger""]",3573.46,"{""loyalty"": ""5%""}",109625,0,North America +2024-02-04,26875,1980,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3037.81,"{""loyalty"": ""9%""}",262576,1,North America +2023-06-17,26876,1558,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4926.71,{},81599,0,Africa +2024-08-22,26877,276,"[""Headphones"", ""Tablet""]",2418.16,{},267726,0,South America +2023-07-16,26878,685,"[""Phone""]",292.29,"{""loyalty"": ""10%""}",173080,1,North America +2024-05-08,26879,639,"[""Charger""]",4140.28,{},7555,0,Asia +2023-09-05,26880,4069,"[""Charger"", ""Tablet"", ""Laptop""]",1203.4,{},172406,1,North America +2024-05-24,26881,1077,"[""Tablet"", ""Wireless Mouse""]",3208.59,"{""loyalty"": ""7%""}",85229,1,South America +2023-11-07,26882,9638,"[""Tablet""]",1930.69,"{""promo"": ""16%""}",134907,1,North America +2023-11-03,26883,1801,"[""Charger""]",385.57,"{""loyalty"": ""6%""}",189139,0,South America +2024-10-22,26884,715,"[""Phone"", ""Headphones"", ""Tablet""]",1803.8,"{"""": ""11%""}",259630,1,Africa +2024-12-27,26885,4591,"[""Phone"", ""Keyboard"", ""Headphones""]",3466.65,"{""seasonal"": ""19%""}",134377,0,Africa +2024-03-27,26886,7843,"[""Keyboard"", ""Wireless Mouse""]",2272.51,"{""seasonal"": ""22%""}",49837,0,Africa +2023-05-26,26887,9129,"[""Keyboard"", ""Charger"", ""Monitor""]",3230.06,{},12700,1,Asia +2024-05-01,26888,7173,"[""Charger""]",4163.1,{},200330,1,Europe +2024-11-17,26889,6307,"[""Tablet""]",4489.62,{},46758,0,Asia +2024-12-18,26890,4376,"[""Wireless Mouse""]",408.19,{},185640,0,Europe +2024-02-19,26891,6024,"[""Charger""]",1778.59,{},261766,1,North America +2024-09-22,26892,8788,"[""Monitor"", ""Tablet""]",484.16,"{"""": ""19%""}",253069,0,Europe +2023-06-22,26893,67,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",897.23,{},282039,0,North America +2024-11-23,26894,3770,"[""Keyboard"", ""Wireless Mouse""]",4188.74,{},207296,0,Africa +2023-06-27,26895,8374,"[""Wireless Mouse"", ""Headphones""]",4821.96,{},143121,1,Europe +2024-05-16,26896,1467,"[""Tablet""]",3428.19,{},290507,1,Europe +2023-05-10,26897,8083,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1678.42,"{""loyalty"": ""25%""}",97790,1,Asia +2024-03-11,26898,3505,"[""Tablet"", ""Charger"", ""Phone""]",2267.71,{},297730,0,Europe +2024-10-11,26899,3798,"[""Headphones""]",2144.55,{},206650,0,Europe +2024-07-16,26900,1523,"[""Monitor"", ""Phone""]",2399.61,{},161399,0,Europe +2024-06-20,26901,4838,"[""Charger""]",3479.54,{},65240,1,South America +2023-11-24,26902,2762,"[""Monitor"", ""Phone""]",2866.41,{},45559,0,Europe +2023-11-13,26903,6895,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1838.91,{},173044,1,Africa +2023-12-12,26904,9871,"[""Phone""]",3024.67,"{"""": ""16%""}",33258,0,Europe +2023-04-17,26905,3166,"[""Tablet"", ""Headphones"", ""Keyboard""]",2813.39,{},196975,1,South America +2024-03-06,26906,4589,"[""Headphones"", ""Phone"", ""Monitor""]",878.33,"{""seasonal"": ""14%""}",100343,1,Africa +2023-10-31,26907,3508,"[""Keyboard""]",236.71,{},187699,1,North America +2023-12-16,26908,5624,"[""Charger""]",3994.89,{},52121,1,South America +2024-11-03,26909,4335,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3521.25,{},274678,0,Africa +2024-03-02,26910,6714,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2657.92,"{""seasonal"": ""9%""}",111318,1,Europe +2023-09-25,26911,9399,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4603.35,{},145648,0,Europe +2024-05-22,26912,3906,"[""Monitor"", ""Tablet""]",3125.96,{},108935,0,Europe +2024-01-17,26913,2576,"[""Phone"", ""Monitor"", ""Headphones""]",77.9,{},81865,1,Africa +2023-12-02,26914,5678,"[""Keyboard"", ""Monitor"", ""Headphones""]",834.71,"{""seasonal"": ""26%""}",243436,0,Asia +2024-04-03,26915,1725,"[""Charger""]",3488.98,{},168411,0,Africa +2024-10-26,26916,9360,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2635.53,"{""promo"": ""13%""}",249746,1,North America +2024-05-15,26917,5554,"[""Monitor""]",576.41,"{""seasonal"": ""9%""}",195813,0,South America +2024-09-19,26918,1810,"[""Phone"", ""Charger""]",4929.55,{},43751,1,Asia +2024-12-07,26919,5578,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1336.75,{},185791,0,Europe +2024-02-25,26920,9539,"[""Phone""]",1325.51,{},162577,1,Africa +2023-11-27,26921,2969,"[""Phone"", ""Charger"", ""Tablet""]",4100.53,{},182201,1,Asia +2024-01-28,26922,9767,"[""Tablet"", ""Keyboard""]",1505.81,{},73118,1,Asia +2024-03-03,26923,4961,"[""Headphones"", ""Keyboard"", ""Tablet""]",4950.11,{},266854,0,South America +2024-03-24,26924,5122,"[""Keyboard""]",4226.56,"{""promo"": ""22%""}",253621,1,North America +2024-09-14,26925,1591,"[""Charger"", ""Wireless Mouse""]",938.76,{},165087,1,Europe +2023-11-13,26926,504,"[""Charger"", ""Tablet""]",2805.05,"{""loyalty"": ""25%""}",289621,1,North America +2023-05-20,26927,1866,"[""Headphones"", ""Wireless Mouse""]",3829.64,{},59932,1,Europe +2023-11-30,26928,909,"[""Headphones"", ""Tablet""]",3366.5,{},242767,1,Africa +2023-12-01,26929,806,"[""Headphones"", ""Laptop""]",4812.23,"{"""": ""25%""}",60095,0,South America +2023-07-30,26930,2123,"[""Headphones"", ""Charger""]",3257.4,"{""promo"": ""27%""}",61168,1,Europe +2023-11-29,26931,7908,"[""Phone""]",2632.32,{},221587,1,Europe +2023-05-28,26932,5012,"[""Laptop"", ""Phone"", ""Tablet""]",4936.17,"{"""": ""17%""}",5141,0,Asia +2024-03-05,26933,2669,"[""Phone"", ""Tablet""]",3365.05,"{"""": ""17%""}",221371,1,Asia +2023-05-24,26934,9744,"[""Headphones"", ""Monitor""]",195.82,{},222311,1,Asia +2023-02-07,26935,4190,"[""Phone"", ""Monitor""]",1146.99,{},36521,0,Europe +2023-04-29,26936,3435,"[""Laptop"", ""Keyboard"", ""Headphones""]",3283.21,{},161485,1,Europe +2024-11-15,26937,1652,"[""Keyboard""]",59.94,"{"""": ""8%""}",247978,0,Europe +2023-09-19,26938,3376,"[""Keyboard"", ""Tablet""]",3494.65,{},26795,1,Europe +2023-01-18,26939,6632,"[""Tablet""]",191.49,"{"""": ""14%""}",66778,0,Europe +2023-12-07,26940,4820,"[""Charger"", ""Tablet"", ""Laptop""]",1672.6,"{""loyalty"": ""16%""}",84256,1,North America +2023-11-05,26941,9502,"[""Phone"", ""Keyboard"", ""Tablet""]",651.84,{},60806,0,South America +2023-01-27,26942,8761,"[""Monitor"", ""Keyboard""]",3049.26,"{""seasonal"": ""25%""}",289175,0,Europe +2024-11-12,26943,370,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2716.86,{},171006,0,South America +2024-09-25,26944,757,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",142.73,"{""loyalty"": ""25%""}",14803,0,South America +2023-07-08,26945,4734,"[""Charger"", ""Headphones""]",754.26,{},143379,1,North America +2023-11-25,26946,4390,"[""Headphones"", ""Charger""]",3568.14,{},212715,0,North America +2024-10-28,26947,4292,"[""Wireless Mouse""]",3707.88,"{"""": ""17%""}",206659,0,South America +2023-03-03,26948,6541,"[""Keyboard""]",838.14,"{""promo"": ""6%""}",102947,0,Asia +2024-04-21,26949,5697,"[""Laptop"", ""Phone""]",4890.06,"{""seasonal"": ""10%""}",152812,1,Africa +2024-07-28,26950,6474,"[""Monitor"", ""Keyboard""]",420.3,"{""loyalty"": ""18%""}",51600,1,North America +2024-10-28,26951,2470,"[""Headphones""]",642.99,{},257547,1,Asia +2024-09-08,26952,1212,"[""Tablet"", ""Phone""]",4082.81,"{""promo"": ""11%""}",188389,0,North America +2023-07-23,26953,4188,"[""Laptop"", ""Keyboard"", ""Tablet""]",775.55,{},52665,0,South America +2023-12-10,26954,3028,"[""Tablet"", ""Laptop"", ""Monitor""]",2027.24,"{""promo"": ""24%""}",150299,1,Europe +2024-11-01,26955,6919,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",918.91,"{"""": ""20%""}",37655,1,Europe +2023-05-15,26956,692,"[""Headphones""]",1715.77,{},168523,1,Europe +2023-08-29,26957,1757,"[""Tablet"", ""Headphones"", ""Phone""]",3744.73,"{""promo"": ""7%""}",113695,0,Africa +2023-02-15,26958,3129,"[""Headphones"", ""Keyboard""]",4972.16,"{"""": ""15%""}",275846,0,North America +2024-07-16,26959,372,"[""Charger"", ""Keyboard""]",3486.69,"{""seasonal"": ""10%""}",174573,1,North America +2024-10-04,26960,4345,"[""Charger"", ""Keyboard"", ""Headphones""]",2530.46,"{""loyalty"": ""19%""}",245041,0,South America +2024-11-16,26961,6339,"[""Keyboard""]",1279.0,"{"""": ""28%""}",70897,1,North America +2023-10-24,26962,9502,"[""Tablet"", ""Keyboard"", ""Charger""]",3948.76,"{"""": ""29%""}",40217,0,North America +2024-10-02,26963,9228,"[""Laptop"", ""Tablet""]",4732.34,{},88450,0,Africa +2024-09-13,26964,4322,"[""Tablet""]",4358.38,"{""seasonal"": ""26%""}",276926,0,South America +2024-07-16,26965,2875,"[""Wireless Mouse""]",3619.56,{},122646,0,Africa +2024-11-22,26966,6096,"[""Monitor"", ""Tablet""]",2923.03,"{""seasonal"": ""29%""}",64384,1,Asia +2023-12-08,26967,1875,"[""Headphones""]",3787.15,{},89743,0,Africa +2023-03-12,26968,8120,"[""Wireless Mouse"", ""Monitor""]",2806.57,"{""loyalty"": ""27%""}",139695,1,South America +2023-01-10,26969,7308,"[""Charger""]",2565.49,"{""promo"": ""19%""}",211687,1,Asia +2024-02-02,26970,4722,"[""Phone"", ""Keyboard""]",3831.36,{},113043,1,South America +2023-10-12,26971,1389,"[""Wireless Mouse"", ""Tablet""]",1505.23,{},59479,0,Asia +2023-11-28,26972,4371,"[""Charger""]",4593.73,{},52030,0,North America +2024-09-09,26973,3540,"[""Phone"", ""Tablet""]",3664.87,"{""seasonal"": ""14%""}",298631,1,Asia +2023-01-01,26974,7746,"[""Keyboard""]",3339.83,{},217217,0,North America +2024-12-06,26975,6841,"[""Tablet"", ""Wireless Mouse""]",2672.01,{},51743,1,Europe +2023-12-04,26976,5504,"[""Headphones"", ""Keyboard""]",2113.63,{},67655,0,Asia +2024-05-27,26977,8160,"[""Tablet"", ""Charger"", ""Keyboard""]",4403.03,{},43860,1,South America +2023-02-06,26978,1518,"[""Monitor""]",62.94,"{""seasonal"": ""19%""}",203481,1,Africa +2024-05-15,26979,3823,"[""Tablet"", ""Keyboard""]",1967.44,{},271388,0,Europe +2024-02-02,26980,9923,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4916.67,"{""loyalty"": ""16%""}",5452,1,South America +2023-03-17,26981,8911,"[""Keyboard"", ""Monitor"", ""Headphones""]",1869.99,"{""loyalty"": ""11%""}",173603,1,South America +2024-09-07,26982,4458,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",978.43,{},100127,1,Asia +2024-02-21,26983,7644,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",735.05,"{"""": ""26%""}",59919,1,Africa +2024-02-03,26984,5962,"[""Wireless Mouse"", ""Laptop""]",3019.47,{},59182,0,South America +2024-02-29,26985,851,"[""Tablet"", ""Charger""]",4714.32,{},95239,0,Africa +2024-06-20,26986,667,"[""Wireless Mouse"", ""Tablet""]",703.65,"{"""": ""10%""}",112049,1,Africa +2023-07-13,26987,8844,"[""Phone"", ""Charger""]",4806.87,{},196828,1,Europe +2023-03-17,26988,342,"[""Headphones"", ""Wireless Mouse""]",3517.01,"{""seasonal"": ""30%""}",241994,1,South America +2023-06-16,26989,5272,"[""Charger"", ""Tablet""]",4264.31,"{""seasonal"": ""28%""}",280383,0,Africa +2023-08-15,26990,1490,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1859.52,"{""loyalty"": ""16%""}",44956,1,Asia +2023-01-04,26991,873,"[""Phone"", ""Headphones""]",898.99,"{""loyalty"": ""18%""}",110978,0,Europe +2023-05-09,26992,3163,"[""Tablet"", ""Keyboard""]",2453.02,{},292177,0,Africa +2023-04-28,26993,6988,"[""Wireless Mouse"", ""Phone""]",3551.13,"{""seasonal"": ""8%""}",185751,0,South America +2024-06-04,26994,8099,"[""Tablet""]",367.32,{},88106,1,North America +2023-10-02,26995,8951,"[""Phone"", ""Laptop"", ""Charger""]",4320.97,"{""loyalty"": ""13%""}",159535,1,Europe +2023-11-25,26996,3485,"[""Keyboard""]",774.43,{},130184,1,South America +2024-10-20,26997,6555,"[""Tablet"", ""Monitor""]",161.96,{},286873,1,Africa +2024-01-31,26998,2516,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2804.35,{},244226,0,Asia +2023-06-15,26999,6283,"[""Tablet"", ""Monitor"", ""Laptop""]",2724.91,"{""promo"": ""17%""}",28070,1,Asia +2024-03-27,27000,6091,"[""Monitor"", ""Headphones""]",1617.13,{},264035,0,North America +2023-12-21,27001,8217,"[""Tablet""]",243.53,"{""seasonal"": ""5%""}",230358,1,Asia +2024-09-11,27002,99,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1870.37,"{"""": ""16%""}",59162,0,Africa +2023-01-07,27003,513,"[""Charger"", ""Tablet""]",3378.52,"{""promo"": ""28%""}",226968,0,South America +2023-09-19,27004,8484,"[""Wireless Mouse""]",1439.75,"{""seasonal"": ""8%""}",268329,0,South America +2024-04-21,27005,4793,"[""Tablet"", ""Charger""]",4196.94,"{"""": ""15%""}",200000,0,Asia +2024-10-08,27006,2282,"[""Keyboard""]",2233.57,{},14250,0,North America +2023-04-26,27007,5086,"[""Laptop"", ""Monitor""]",3134.71,{},183331,1,South America +2024-01-05,27008,6126,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",519.53,"{""seasonal"": ""29%""}",202252,0,North America +2024-08-07,27009,8233,"[""Monitor"", ""Charger""]",4869.74,"{""seasonal"": ""8%""}",211093,1,Asia +2024-10-09,27010,5500,"[""Tablet""]",1949.7,"{""loyalty"": ""5%""}",43910,1,North America +2023-03-23,27011,5260,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",688.92,"{""promo"": ""17%""}",281684,1,South America +2024-03-20,27012,9273,"[""Headphones""]",3728.86,{},123683,0,North America +2023-11-26,27013,8269,"[""Headphones"", ""Phone"", ""Laptop""]",330.48,"{""seasonal"": ""16%""}",138287,0,South America +2023-09-15,27014,5741,"[""Charger"", ""Keyboard"", ""Phone""]",1653.47,{},87127,1,Africa +2024-03-31,27015,6772,"[""Headphones""]",368.27,{},81297,0,North America +2024-02-22,27016,7904,"[""Wireless Mouse""]",2506.56,"{"""": ""20%""}",97903,0,Asia +2024-11-18,27017,525,"[""Laptop"", ""Phone""]",540.51,{},164820,1,Asia +2024-05-04,27018,6306,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3604.3,"{""seasonal"": ""22%""}",95215,0,Europe +2024-02-19,27019,6758,"[""Wireless Mouse""]",4542.58,{},289755,1,Africa +2024-08-17,27020,1691,"[""Laptop""]",4745.63,"{""promo"": ""15%""}",259167,1,Europe +2023-08-07,27021,865,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",801.54,{},45660,1,South America +2024-05-21,27022,184,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3136.96,{},253847,1,North America +2024-11-13,27023,4604,"[""Keyboard""]",3400.94,"{""seasonal"": ""25%""}",4722,0,Europe +2023-10-13,27024,4431,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3261.81,{},290741,1,Africa +2023-08-31,27025,599,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1014.03,"{"""": ""27%""}",183129,1,Africa +2023-09-15,27026,2024,"[""Charger"", ""Headphones"", ""Laptop""]",2291.11,{},58686,0,North America +2023-10-15,27027,7090,"[""Laptop""]",4220.79,"{""promo"": ""15%""}",170127,1,Asia +2024-08-09,27028,6431,"[""Headphones""]",732.82,{},9260,0,Asia +2023-01-29,27029,9937,"[""Monitor"", ""Wireless Mouse""]",3178.15,{},86961,0,Africa +2023-10-04,27030,6499,"[""Wireless Mouse"", ""Monitor""]",1394.04,"{"""": ""26%""}",90202,0,Asia +2024-08-01,27031,6837,"[""Keyboard""]",3811.46,"{""promo"": ""8%""}",47012,1,Asia +2023-06-28,27032,8516,"[""Laptop"", ""Monitor""]",2826.76,"{""promo"": ""11%""}",170561,1,Africa +2023-01-10,27033,944,"[""Monitor""]",1968.29,{},267128,0,Africa +2024-11-10,27034,1171,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2693.24,"{""seasonal"": ""17%""}",30330,0,South America +2024-10-20,27035,3824,"[""Wireless Mouse"", ""Charger""]",4585.4,"{""promo"": ""10%""}",84901,0,North America +2023-11-19,27036,9383,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2582.32,{},291223,1,Africa +2024-12-28,27037,8364,"[""Monitor""]",2588.69,{},269415,1,Africa +2024-11-28,27038,4523,"[""Tablet"", ""Headphones""]",1067.87,{},33816,0,South America +2024-04-23,27039,2393,"[""Charger"", ""Tablet""]",1684.64,{},221343,1,Asia +2023-06-24,27040,5198,"[""Tablet"", ""Charger"", ""Laptop""]",3457.05,{},4425,0,Asia +2024-08-17,27041,9118,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",914.83,"{""loyalty"": ""14%""}",1739,0,South America +2023-06-20,27042,2214,"[""Monitor"", ""Laptop"", ""Phone""]",2790.24,"{""loyalty"": ""19%""}",239580,0,North America +2024-11-26,27043,1805,"[""Tablet""]",469.96,{},156834,1,North America +2024-07-27,27044,4935,"[""Monitor"", ""Charger""]",531.75,"{""loyalty"": ""24%""}",128400,1,Africa +2024-10-20,27045,4229,"[""Wireless Mouse""]",1587.39,"{""loyalty"": ""22%""}",267184,1,Africa +2023-06-05,27046,1289,"[""Wireless Mouse""]",3168.56,{},129775,1,South America +2024-06-22,27047,5527,"[""Headphones"", ""Keyboard""]",2981.04,"{""promo"": ""12%""}",117356,1,Asia +2024-01-30,27048,905,"[""Phone""]",4869.54,{},224166,0,North America +2024-10-02,27049,3220,"[""Wireless Mouse"", ""Laptop""]",3875.27,{},218836,1,South America +2024-12-05,27050,8127,"[""Phone""]",2665.81,{},281429,0,North America +2024-02-22,27051,5855,"[""Phone""]",1575.68,"{"""": ""30%""}",251812,1,Africa +2023-07-28,27052,1140,"[""Wireless Mouse"", ""Monitor""]",3728.57,{},206541,1,North America +2023-09-05,27053,2111,"[""Charger"", ""Laptop""]",2578.11,"{""promo"": ""21%""}",289536,1,Asia +2024-05-27,27054,6075,"[""Wireless Mouse"", ""Laptop""]",3263.12,{},147754,0,Asia +2023-11-20,27055,388,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4468.09,"{""seasonal"": ""11%""}",278939,1,North America +2023-08-05,27056,5782,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2577.34,"{""seasonal"": ""5%""}",173163,1,Africa +2024-01-01,27057,5529,"[""Wireless Mouse"", ""Tablet""]",544.9,"{""loyalty"": ""10%""}",127839,1,Europe +2023-06-15,27058,5213,"[""Laptop"", ""Keyboard""]",3780.83,"{""seasonal"": ""11%""}",189322,0,Europe +2024-07-20,27059,1945,"[""Phone""]",119.43,{},284961,0,North America +2024-10-05,27060,7581,"[""Keyboard"", ""Phone"", ""Headphones""]",847.87,{},57593,0,North America +2024-01-09,27061,8797,"[""Monitor"", ""Laptop"", ""Phone""]",3021.63,"{"""": ""27%""}",3730,0,Asia +2024-01-15,27062,1741,"[""Wireless Mouse""]",586.11,"{"""": ""11%""}",159862,1,North America +2024-04-22,27063,5443,"[""Monitor""]",2861.58,"{""promo"": ""27%""}",31961,0,South America +2024-06-03,27064,9523,"[""Charger"", ""Laptop""]",3755.23,{},248593,1,Asia +2023-10-09,27065,5955,"[""Charger""]",4151.75,"{""promo"": ""19%""}",2267,1,South America +2024-05-30,27066,6852,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4216.14,{},101737,0,South America +2024-04-09,27067,7930,"[""Keyboard"", ""Tablet""]",1502.5,"{""seasonal"": ""23%""}",271695,1,North America +2024-04-21,27068,7180,"[""Tablet""]",243.92,{},108178,0,Africa +2023-01-17,27069,1879,"[""Laptop""]",945.58,"{""loyalty"": ""29%""}",241481,1,South America +2023-10-06,27070,9815,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2561.07,{},46684,0,South America +2024-06-10,27071,4995,"[""Headphones""]",3458.95,"{""promo"": ""29%""}",114992,1,Africa +2023-11-20,27072,844,"[""Headphones""]",2870.21,{},273322,0,Europe +2024-05-17,27073,1806,"[""Keyboard"", ""Tablet""]",1954.72,"{""loyalty"": ""26%""}",271054,0,Africa +2023-04-24,27074,4444,"[""Tablet"", ""Charger"", ""Phone""]",4679.22,{},181980,1,North America +2023-11-14,27075,1902,"[""Phone"", ""Tablet""]",3471.77,{},263208,1,South America +2024-07-22,27076,7705,"[""Wireless Mouse""]",2406.82,{},34666,1,Europe +2024-06-19,27077,8329,"[""Phone"", ""Charger"", ""Monitor""]",4322.64,{},41134,0,North America +2024-12-11,27078,8622,"[""Tablet"", ""Charger"", ""Phone""]",3712.44,{},26748,0,Africa +2024-01-31,27079,7410,"[""Phone"", ""Tablet""]",4843.34,"{""promo"": ""25%""}",204679,0,Asia +2024-07-06,27080,9970,"[""Wireless Mouse""]",2366.07,{},242332,1,Europe +2024-07-03,27081,2322,"[""Monitor"", ""Keyboard"", ""Headphones""]",2736.46,"{"""": ""15%""}",17500,0,Asia +2023-05-01,27082,6314,"[""Monitor""]",3942.21,"{"""": ""25%""}",108274,1,North America +2023-12-02,27083,7072,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",338.15,"{"""": ""9%""}",160486,0,Africa +2023-07-31,27084,3972,"[""Tablet""]",4305.69,{},137485,1,South America +2023-02-03,27085,2071,"[""Phone""]",2988.41,"{""seasonal"": ""14%""}",265774,0,Europe +2023-10-19,27086,8883,"[""Tablet"", ""Laptop""]",849.73,{},89859,1,Europe +2023-06-28,27087,7022,"[""Headphones""]",3380.89,{},55265,1,Africa +2024-06-16,27088,4528,"[""Monitor""]",1411.34,"{""seasonal"": ""20%""}",132664,1,North America +2023-10-14,27089,3408,"[""Monitor"", ""Keyboard""]",3698.51,"{"""": ""9%""}",272140,1,North America +2023-03-22,27090,288,"[""Monitor"", ""Charger"", ""Laptop""]",2295.62,"{"""": ""24%""}",207188,1,North America +2023-06-19,27091,2130,"[""Headphones"", ""Keyboard""]",4618.91,"{""promo"": ""24%""}",4536,0,Africa +2023-12-30,27092,699,"[""Monitor"", ""Tablet"", ""Laptop""]",4706.82,"{""loyalty"": ""16%""}",202467,1,Europe +2024-05-09,27093,8270,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",692.29,{},248354,0,Africa +2024-01-14,27094,1996,"[""Charger"", ""Keyboard""]",3034.46,"{"""": ""20%""}",290364,0,Europe +2024-01-05,27095,6984,"[""Laptop"", ""Monitor""]",4399.85,"{""loyalty"": ""20%""}",298806,0,South America +2024-03-07,27096,2383,"[""Keyboard"", ""Monitor""]",3254.39,"{""loyalty"": ""19%""}",242181,0,South America +2024-11-10,27097,441,"[""Charger""]",2201.01,"{""seasonal"": ""24%""}",2177,1,North America +2024-09-12,27098,652,"[""Monitor"", ""Phone""]",3601.04,{},12208,1,Africa +2023-12-19,27099,1301,"[""Wireless Mouse""]",182.24,"{"""": ""30%""}",47321,1,South America +2024-06-02,27100,8377,"[""Charger"", ""Phone"", ""Monitor""]",234.49,{},151469,1,Asia +2023-12-21,27101,2004,"[""Phone"", ""Charger""]",3012.56,{},269714,1,North America +2024-03-28,27102,4192,"[""Charger""]",2797.38,"{"""": ""13%""}",154124,1,North America +2023-04-11,27103,3264,"[""Phone"", ""Keyboard"", ""Tablet""]",4899.03,{},165220,0,Africa +2024-04-07,27104,9808,"[""Phone"", ""Monitor""]",2100.85,{},97407,0,Asia +2024-10-24,27105,1530,"[""Headphones"", ""Tablet""]",1865.99,{},188893,1,North America +2023-12-20,27106,6043,"[""Tablet""]",1914.81,"{"""": ""28%""}",133656,1,South America +2023-01-14,27107,1990,"[""Phone""]",3789.77,{},222011,1,South America +2023-08-10,27108,2909,"[""Tablet"", ""Headphones"", ""Laptop""]",1874.31,{},13228,0,Asia +2024-05-18,27109,6125,"[""Keyboard"", ""Monitor""]",3525.43,"{""loyalty"": ""11%""}",166875,0,Asia +2024-07-21,27110,7364,"[""Phone"", ""Wireless Mouse""]",521.39,"{""seasonal"": ""19%""}",167968,0,Africa +2024-05-30,27111,9084,"[""Monitor"", ""Phone""]",2405.73,{},173176,0,South America +2024-06-12,27112,910,"[""Headphones"", ""Laptop""]",124.45,{},154258,0,Europe +2023-10-25,27113,5982,"[""Charger""]",1354.67,{},270174,0,North America +2023-07-25,27114,6988,"[""Keyboard"", ""Phone""]",480.11,"{""promo"": ""11%""}",188133,1,Africa +2024-10-12,27115,6146,"[""Tablet"", ""Laptop""]",3569.18,"{""loyalty"": ""25%""}",6593,0,Asia +2024-02-26,27116,2866,"[""Charger"", ""Laptop""]",1762.78,"{"""": ""15%""}",115445,1,North America +2024-10-05,27117,4437,"[""Charger"", ""Headphones"", ""Keyboard""]",1215.16,{},33197,0,Asia +2024-09-06,27118,2043,"[""Monitor"", ""Keyboard"", ""Headphones""]",1119.29,{},142911,0,Asia +2024-09-08,27119,2912,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1786.93,"{"""": ""8%""}",218013,1,Africa +2024-06-14,27120,2299,"[""Headphones"", ""Keyboard"", ""Charger""]",3635.28,"{"""": ""21%""}",113755,1,North America +2024-06-09,27121,9646,"[""Wireless Mouse""]",4089.34,{},56635,1,Europe +2024-10-12,27122,5367,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4991.98,{},83502,1,Europe +2024-11-29,27123,3130,"[""Monitor"", ""Keyboard"", ""Phone""]",490.57,"{"""": ""5%""}",262728,0,Europe +2023-04-30,27124,1152,"[""Tablet"", ""Phone""]",556.18,{},213463,1,Asia +2023-11-29,27125,1350,"[""Headphones""]",2573.61,"{""seasonal"": ""20%""}",14912,0,North America +2024-07-26,27126,4004,"[""Charger""]",1626.08,"{""seasonal"": ""29%""}",8993,1,Asia +2024-11-11,27127,2443,"[""Headphones"", ""Charger""]",284.37,{},214357,1,Europe +2023-07-20,27128,5149,"[""Keyboard""]",4541.36,{},214071,1,North America +2024-01-13,27129,784,"[""Monitor"", ""Wireless Mouse""]",4511.71,{},209156,1,North America +2023-10-23,27130,5524,"[""Headphones"", ""Tablet"", ""Charger""]",3316.45,{},3388,1,Europe +2023-06-18,27131,7852,"[""Wireless Mouse"", ""Charger""]",637.16,{},257122,0,South America +2023-04-18,27132,4321,"[""Wireless Mouse"", ""Laptop""]",2226.66,{},175099,1,Asia +2023-07-26,27133,545,"[""Charger"", ""Phone""]",3338.86,"{""seasonal"": ""28%""}",113537,1,Asia +2023-03-09,27134,579,"[""Monitor""]",115.12,{},271513,1,South America +2024-01-04,27135,2867,"[""Wireless Mouse"", ""Phone""]",4155.3,"{""seasonal"": ""13%""}",138584,0,Asia +2024-01-01,27136,7382,"[""Tablet"", ""Charger""]",2425.37,{},181927,1,South America +2024-07-28,27137,7475,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2936.29,"{""promo"": ""20%""}",120247,0,Africa +2023-05-29,27138,9984,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2779.27,"{""promo"": ""24%""}",102373,0,South America +2024-08-09,27139,3602,"[""Phone"", ""Keyboard""]",1321.0,"{""promo"": ""23%""}",207716,0,Europe +2024-07-02,27140,5393,"[""Charger""]",3010.34,"{""seasonal"": ""21%""}",116906,0,Africa +2024-04-02,27141,3649,"[""Tablet"", ""Phone""]",1505.22,{},285310,1,Europe +2023-03-20,27142,2354,"[""Laptop""]",3680.85,{},65454,1,Europe +2024-03-10,27143,1380,"[""Wireless Mouse"", ""Charger""]",4370.98,{},292118,1,Asia +2023-05-25,27144,8885,"[""Phone"", ""Keyboard""]",3069.72,{},242097,1,Africa +2023-07-06,27145,6522,"[""Keyboard"", ""Tablet""]",3943.61,"{""promo"": ""22%""}",189287,1,Asia +2024-12-21,27146,8588,"[""Phone""]",1934.08,{},155766,1,Asia +2023-11-29,27147,8645,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1022.06,"{"""": ""13%""}",184700,1,Africa +2024-03-09,27148,2969,"[""Charger"", ""Phone""]",1298.72,{},281702,1,Africa +2023-11-02,27149,443,"[""Charger"", ""Monitor""]",823.34,"{""seasonal"": ""6%""}",291470,0,Asia +2024-01-28,27150,4868,"[""Keyboard"", ""Monitor""]",1313.47,"{""seasonal"": ""15%""}",41205,0,Asia +2024-08-07,27151,4827,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2163.96,{},171638,1,North America +2024-12-28,27152,6822,"[""Headphones"", ""Charger""]",1110.49,{},79710,1,Africa +2024-01-26,27153,6697,"[""Tablet""]",4408.78,"{""promo"": ""28%""}",129070,1,Europe +2023-09-30,27154,8636,"[""Headphones""]",4674.81,{},277254,0,North America +2023-11-26,27155,364,"[""Laptop"", ""Charger"", ""Monitor""]",2492.67,{},187115,0,Europe +2023-06-22,27156,7369,"[""Keyboard"", ""Phone"", ""Headphones""]",959.36,{},217090,0,North America +2024-12-21,27157,2538,"[""Keyboard""]",3768.43,"{"""": ""9%""}",140969,1,North America +2024-07-16,27158,2452,"[""Tablet"", ""Charger"", ""Phone""]",2859.92,"{""loyalty"": ""15%""}",96037,1,North America +2023-09-04,27159,9242,"[""Charger"", ""Wireless Mouse""]",572.27,{},251819,0,Europe +2024-06-19,27160,5626,"[""Keyboard"", ""Charger"", ""Phone""]",3439.1,{},61359,1,Asia +2024-01-18,27161,5965,"[""Keyboard"", ""Phone""]",4394.24,"{""loyalty"": ""28%""}",180460,0,Asia +2023-06-18,27162,1617,"[""Laptop""]",2859.03,{},167983,0,Europe +2023-10-04,27163,3299,"[""Headphones"", ""Keyboard""]",1935.91,{},19354,1,Africa +2024-06-27,27164,9494,"[""Monitor"", ""Headphones""]",3350.11,{},289737,0,Asia +2024-01-03,27165,1855,"[""Charger"", ""Phone"", ""Laptop""]",3377.08,{},271119,0,North America +2024-03-15,27166,8152,"[""Phone""]",1401.61,{},154110,0,Asia +2024-11-17,27167,8397,"[""Keyboard"", ""Laptop"", ""Monitor""]",350.67,{},143388,1,North America +2024-02-24,27168,4613,"[""Monitor"", ""Tablet""]",3643.22,{},250120,0,Europe +2023-12-09,27169,8586,"[""Wireless Mouse""]",4071.5,"{"""": ""9%""}",61615,0,Europe +2024-06-20,27170,6074,"[""Laptop"", ""Charger"", ""Tablet""]",3448.66,{},258616,1,Europe +2023-05-11,27171,797,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",671.73,{},190835,1,South America +2023-12-14,27172,208,"[""Keyboard""]",1941.42,{},248505,1,Europe +2024-06-07,27173,6709,"[""Tablet""]",493.68,{},15727,0,North America +2023-01-12,27174,9722,"[""Charger"", ""Headphones"", ""Monitor""]",3935.6,"{""promo"": ""17%""}",188458,0,Europe +2023-01-21,27175,2188,"[""Monitor"", ""Laptop"", ""Keyboard""]",2476.45,"{"""": ""10%""}",48786,0,North America +2024-03-26,27176,6444,"[""Monitor"", ""Phone""]",4467.12,{},269207,1,Europe +2024-04-08,27177,6791,"[""Keyboard"", ""Laptop""]",1183.13,{},102430,0,South America +2023-11-15,27178,1515,"[""Tablet""]",1803.72,{},116500,0,North America +2023-07-30,27179,1585,"[""Monitor""]",4150.23,{},296697,1,Asia +2023-09-23,27180,1689,"[""Charger""]",4518.04,"{""promo"": ""24%""}",62522,0,South America +2024-09-12,27181,2496,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3850.39,"{"""": ""28%""}",120434,0,South America +2023-11-12,27182,8482,"[""Tablet""]",860.99,"{""promo"": ""17%""}",221065,0,Europe +2024-07-30,27183,1757,"[""Headphones"", ""Monitor""]",787.02,{},114304,0,Europe +2023-04-03,27184,1013,"[""Charger"", ""Laptop"", ""Phone""]",4030.84,{},230524,0,North America +2024-12-10,27185,8956,"[""Keyboard""]",3173.26,"{"""": ""18%""}",165481,0,Asia +2023-04-16,27186,819,"[""Headphones"", ""Monitor"", ""Laptop""]",4401.1,{},175004,1,North America +2024-12-22,27187,7588,"[""Phone""]",1264.16,"{""loyalty"": ""18%""}",183263,1,Europe +2024-11-23,27188,4107,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3914.56,"{""loyalty"": ""30%""}",197224,1,Asia +2024-05-15,27189,9882,"[""Monitor""]",4734.88,"{""loyalty"": ""11%""}",42287,0,South America +2023-05-08,27190,4770,"[""Tablet"", ""Monitor"", ""Headphones""]",3531.23,{},22241,1,Europe +2023-05-30,27191,8340,"[""Wireless Mouse""]",1255.42,"{"""": ""26%""}",46112,1,Europe +2023-05-27,27192,9641,"[""Headphones""]",709.36,{},223786,1,North America +2024-11-25,27193,5716,"[""Charger""]",4086.57,{},35152,0,Asia +2023-12-22,27194,5228,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3409.92,"{""seasonal"": ""13%""}",70398,1,South America +2023-02-22,27195,7956,"[""Keyboard""]",1152.35,"{""loyalty"": ""29%""}",151577,0,North America +2023-10-20,27196,7659,"[""Monitor"", ""Phone"", ""Charger""]",1236.83,{},260550,1,Africa +2023-10-05,27197,8894,"[""Phone"", ""Laptop"", ""Monitor""]",2264.95,"{""promo"": ""17%""}",105296,1,Europe +2024-11-22,27198,8449,"[""Headphones"", ""Charger""]",1792.63,"{""seasonal"": ""23%""}",265606,1,Europe +2024-10-05,27199,5656,"[""Charger""]",4652.44,{},174756,1,Africa +2023-12-31,27200,6906,"[""Keyboard"", ""Charger""]",1881.65,{},149100,1,North America +2024-04-13,27201,9685,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2636.34,{},290681,1,Europe +2024-06-20,27202,3561,"[""Tablet"", ""Phone""]",3609.64,{},63502,1,Africa +2024-03-22,27203,3449,"[""Phone"", ""Wireless Mouse"", ""Charger""]",580.11,"{""promo"": ""17%""}",146511,0,North America +2023-03-19,27204,8056,"[""Monitor"", ""Laptop""]",4073.04,{},164583,1,Asia +2024-10-11,27205,3298,"[""Keyboard""]",2712.72,{},209399,0,South America +2024-01-22,27206,2820,"[""Tablet"", ""Laptop""]",2269.45,"{""loyalty"": ""20%""}",68641,0,Europe +2023-09-23,27207,476,"[""Wireless Mouse""]",3343.16,"{"""": ""6%""}",160851,1,South America +2024-06-10,27208,6304,"[""Monitor""]",142.5,{},12104,0,North America +2023-01-03,27209,1090,"[""Charger""]",1263.79,{},155434,1,South America +2024-12-30,27210,8522,"[""Laptop"", ""Headphones""]",2135.87,"{""loyalty"": ""14%""}",199046,0,Asia +2023-06-21,27211,1975,"[""Tablet""]",3327.08,"{""seasonal"": ""20%""}",280814,0,Europe +2024-02-17,27212,8903,"[""Tablet""]",158.61,{},207227,0,North America +2024-07-30,27213,2078,"[""Charger""]",4894.23,{},115291,0,Africa +2024-01-17,27214,6871,"[""Headphones""]",2241.04,{},192399,1,Africa +2024-07-29,27215,1141,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",856.3,{},131872,0,Asia +2024-04-18,27216,5915,"[""Laptop""]",4619.78,"{""promo"": ""19%""}",65224,0,Asia +2024-04-15,27217,2556,"[""Keyboard""]",700.93,{},7812,1,North America +2023-12-05,27218,2890,"[""Wireless Mouse"", ""Phone"", ""Charger""]",832.22,"{"""": ""12%""}",299629,0,North America +2024-03-02,27219,9252,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1710.49,"{""promo"": ""19%""}",154108,0,Asia +2023-09-13,27220,9829,"[""Monitor"", ""Phone"", ""Charger""]",4958.35,"{"""": ""21%""}",217499,0,South America +2024-11-23,27221,6303,"[""Wireless Mouse""]",1136.18,{},276916,1,North America +2023-04-14,27222,9955,"[""Phone"", ""Headphones""]",3704.95,{},126182,1,Asia +2023-05-22,27223,8471,"[""Phone""]",1355.53,"{""seasonal"": ""12%""}",141337,1,Asia +2023-09-14,27224,3705,"[""Keyboard""]",837.59,{},76556,1,South America +2024-01-10,27225,284,"[""Charger""]",4597.16,"{"""": ""24%""}",281886,1,North America +2024-06-02,27226,359,"[""Headphones""]",3031.47,{},153052,1,Asia +2024-03-03,27227,8523,"[""Phone""]",4494.22,"{""promo"": ""24%""}",98018,1,Europe +2024-05-29,27228,6732,"[""Tablet"", ""Wireless Mouse""]",3173.65,"{""seasonal"": ""30%""}",279626,1,Africa +2024-05-06,27229,3105,"[""Charger"", ""Phone"", ""Tablet""]",4537.13,{},260236,1,Africa +2023-03-18,27230,7211,"[""Charger"", ""Monitor"", ""Headphones""]",4849.77,"{"""": ""5%""}",163311,1,Europe +2023-01-22,27231,1960,"[""Wireless Mouse""]",458.34,"{""loyalty"": ""9%""}",165991,1,Europe +2023-08-04,27232,3285,"[""Tablet"", ""Charger"", ""Laptop""]",3138.86,"{""seasonal"": ""8%""}",193731,0,North America +2024-02-20,27233,4604,"[""Monitor""]",3398.97,{},28394,0,Europe +2023-11-03,27234,3632,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",605.62,"{""loyalty"": ""11%""}",109687,0,South America +2024-08-22,27235,1429,"[""Headphones"", ""Tablet"", ""Phone""]",1431.02,{},244629,0,Africa +2023-03-05,27236,1114,"[""Phone""]",4417.76,"{""seasonal"": ""15%""}",246675,0,Asia +2023-10-29,27237,7247,"[""Wireless Mouse"", ""Headphones""]",4659.31,"{""seasonal"": ""24%""}",62313,0,South America +2024-05-23,27238,5,"[""Monitor""]",562.83,"{""promo"": ""21%""}",144357,1,Asia +2023-02-21,27239,9189,"[""Tablet"", ""Phone"", ""Monitor""]",343.86,{},193790,0,Africa +2024-05-05,27240,6017,"[""Phone""]",1332.65,{},220891,0,North America +2023-08-07,27241,678,"[""Phone"", ""Keyboard"", ""Laptop""]",1806.76,"{""loyalty"": ""29%""}",214472,0,Africa +2023-03-02,27242,7248,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3785.57,"{""promo"": ""21%""}",123024,1,Europe +2024-07-17,27243,7633,"[""Headphones"", ""Monitor"", ""Tablet""]",4081.61,"{""loyalty"": ""16%""}",271834,1,Europe +2024-06-06,27244,6603,"[""Phone"", ""Charger""]",2289.28,{},33366,1,Africa +2024-02-17,27245,5600,"[""Charger"", ""Laptop""]",4551.18,{},76931,1,South America +2024-01-22,27246,1177,"[""Wireless Mouse"", ""Laptop""]",1544.46,"{""seasonal"": ""12%""}",59342,0,South America +2024-01-29,27247,6948,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2840.24,"{""loyalty"": ""14%""}",81962,0,Africa +2023-11-26,27248,4539,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2791.97,{},111510,1,North America +2024-10-03,27249,5556,"[""Laptop""]",4015.94,{},228255,0,North America +2024-08-12,27250,3982,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3577.39,"{""seasonal"": ""17%""}",290231,0,Asia +2024-10-05,27251,6546,"[""Charger""]",3310.61,"{""loyalty"": ""20%""}",188045,0,North America +2024-04-02,27252,3337,"[""Keyboard"", ""Charger""]",2641.84,{},100065,0,Africa +2023-01-24,27253,207,"[""Keyboard"", ""Laptop""]",3550.06,{},82686,1,Asia +2023-01-14,27254,4637,"[""Keyboard""]",122.22,{},103708,1,South America +2024-05-06,27255,7408,"[""Tablet""]",575.51,{},22668,1,South America +2023-09-23,27256,1302,"[""Charger""]",614.06,"{""promo"": ""18%""}",12006,0,Europe +2023-08-01,27257,7626,"[""Phone""]",3287.64,"{""seasonal"": ""11%""}",49871,1,North America +2024-11-03,27258,717,"[""Headphones"", ""Keyboard""]",1308.16,{},101804,0,Asia +2024-04-13,27259,7570,"[""Keyboard""]",3438.01,{},271172,1,Asia +2024-08-08,27260,2651,"[""Phone"", ""Charger"", ""Laptop""]",537.31,{},170146,0,North America +2023-02-24,27261,1390,"[""Headphones"", ""Monitor"", ""Charger""]",4152.69,{},153026,0,Africa +2023-12-11,27262,5256,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1019.65,{},200341,1,Africa +2024-02-03,27263,9233,"[""Phone"", ""Tablet"", ""Headphones""]",1029.25,"{""loyalty"": ""20%""}",206482,0,North America +2024-09-20,27264,8420,"[""Laptop"", ""Headphones""]",3436.52,"{""seasonal"": ""17%""}",207669,1,South America +2023-03-22,27265,2671,"[""Monitor"", ""Phone""]",4333.2,"{""seasonal"": ""17%""}",239091,0,Europe +2024-12-08,27266,8424,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",478.25,"{""promo"": ""15%""}",169702,0,South America +2024-05-03,27267,9782,"[""Phone""]",567.24,{},193873,1,Europe +2023-12-24,27268,8001,"[""Tablet"", ""Charger"", ""Headphones""]",3049.99,{},274335,1,South America +2024-05-03,27269,2074,"[""Charger"", ""Headphones""]",1360.15,{},177482,1,South America +2023-12-25,27270,2387,"[""Wireless Mouse"", ""Keyboard""]",2577.55,{},247002,1,Asia +2023-12-05,27271,3153,"[""Wireless Mouse""]",4301.85,"{""seasonal"": ""12%""}",55967,1,South America +2023-12-22,27272,5512,"[""Charger"", ""Keyboard""]",2185.84,"{"""": ""21%""}",54869,0,North America +2024-12-13,27273,850,"[""Laptop"", ""Headphones""]",3041.86,{},255008,0,Africa +2024-08-26,27274,4193,"[""Monitor"", ""Wireless Mouse""]",306.1,"{""promo"": ""11%""}",33422,0,Asia +2023-04-27,27275,872,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1698.61,"{""promo"": ""23%""}",274033,1,Asia +2023-03-30,27276,9638,"[""Charger"", ""Laptop""]",2132.24,{},123676,1,South America +2024-10-16,27277,8387,"[""Laptop""]",79.53,"{""promo"": ""25%""}",181480,1,Europe +2023-05-20,27278,6822,"[""Phone"", ""Wireless Mouse""]",2307.89,"{""seasonal"": ""7%""}",217340,0,Europe +2024-09-05,27279,459,"[""Tablet""]",4842.52,{},245597,1,North America +2023-12-22,27280,1603,"[""Monitor"", ""Laptop""]",815.86,{},149912,1,Asia +2023-10-01,27281,4927,"[""Laptop"", ""Monitor"", ""Charger""]",3632.81,"{""loyalty"": ""24%""}",23388,1,Asia +2023-12-24,27282,7366,"[""Headphones"", ""Tablet"", ""Laptop""]",2745.94,{},153219,0,Asia +2024-07-09,27283,1748,"[""Laptop"", ""Monitor"", ""Tablet""]",2424.7,"{""loyalty"": ""23%""}",278982,1,Europe +2024-05-03,27284,9145,"[""Monitor"", ""Phone""]",1445.85,{},209093,1,Asia +2024-05-08,27285,5438,"[""Monitor""]",1075.35,"{""seasonal"": ""27%""}",103009,0,South America +2024-03-17,27286,1865,"[""Monitor""]",4515.8,"{""loyalty"": ""13%""}",292467,0,Africa +2024-12-03,27287,8703,"[""Keyboard"", ""Headphones""]",2348.48,{},185578,0,Asia +2023-12-26,27288,3737,"[""Tablet"", ""Charger""]",1801.0,{},294820,1,Africa +2023-12-04,27289,517,"[""Keyboard"", ""Tablet"", ""Headphones""]",2946.36,{},246429,1,South America +2023-06-21,27290,9707,"[""Phone"", ""Wireless Mouse""]",2293.41,{},83051,1,South America +2023-11-02,27291,5507,"[""Keyboard""]",4723.48,{},292922,0,South America +2023-06-14,27292,9689,"[""Monitor""]",1099.03,"{""loyalty"": ""6%""}",188915,0,Europe +2024-12-19,27293,163,"[""Phone"", ""Headphones"", ""Charger""]",4793.89,{},48878,1,Asia +2024-08-27,27294,6662,"[""Wireless Mouse"", ""Laptop""]",4679.71,{},135161,0,Asia +2023-09-11,27295,8677,"[""Laptop""]",2792.25,"{"""": ""9%""}",190046,1,Africa +2023-12-20,27296,2834,"[""Laptop""]",2971.67,{},256258,1,Africa +2023-01-31,27297,2370,"[""Charger"", ""Phone""]",1525.82,"{""promo"": ""17%""}",154511,0,Africa +2024-02-05,27298,4368,"[""Monitor""]",201.05,"{""seasonal"": ""29%""}",113505,1,Europe +2023-09-18,27299,8765,"[""Monitor""]",3059.46,"{""loyalty"": ""23%""}",130496,1,North America +2023-12-12,27300,8461,"[""Keyboard"", ""Charger"", ""Laptop""]",2015.78,{},235286,1,North America +2023-10-21,27301,8855,"[""Headphones""]",2359.07,{},117868,1,Africa +2024-07-17,27302,3924,"[""Phone"", ""Tablet""]",363.17,"{""loyalty"": ""23%""}",1045,1,Europe +2023-12-22,27303,157,"[""Charger""]",372.57,"{"""": ""29%""}",205463,0,South America +2024-12-26,27304,8502,"[""Phone"", ""Charger"", ""Headphones""]",4503.93,"{""seasonal"": ""19%""}",236229,1,Africa +2023-12-01,27305,821,"[""Laptop""]",2712.28,"{""loyalty"": ""25%""}",110717,0,North America +2024-11-23,27306,4426,"[""Keyboard""]",598.53,{},258757,0,North America +2023-02-16,27307,3219,"[""Keyboard"", ""Tablet""]",4039.36,{},1566,0,Europe +2024-05-09,27308,1355,"[""Laptop"", ""Monitor"", ""Phone""]",1442.26,"{"""": ""16%""}",162159,0,South America +2024-03-29,27309,1292,"[""Charger"", ""Headphones""]",540.48,{},285909,0,Africa +2024-08-28,27310,3471,"[""Monitor""]",3709.86,{},114611,0,South America +2024-03-15,27311,8207,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2545.63,{},216224,1,South America +2023-01-22,27312,6784,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2916.26,"{""promo"": ""8%""}",16719,0,Europe +2023-04-14,27313,8087,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4290.04,"{"""": ""11%""}",173920,1,Europe +2023-10-18,27314,4238,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4627.77,"{"""": ""30%""}",285947,0,Africa +2023-02-16,27315,9213,"[""Monitor"", ""Keyboard""]",1529.41,{},195120,1,South America +2024-06-01,27316,3478,"[""Monitor"", ""Phone""]",3505.14,{},213355,0,South America +2024-09-09,27317,5705,"[""Phone""]",2161.17,{},110974,0,Asia +2023-06-14,27318,9175,"[""Charger"", ""Phone"", ""Keyboard""]",2505.21,{},223289,0,Europe +2023-06-13,27319,2704,"[""Keyboard"", ""Headphones"", ""Monitor""]",2540.75,{},256913,1,Europe +2024-09-29,27320,1052,"[""Phone"", ""Keyboard""]",3702.58,"{""loyalty"": ""19%""}",8858,1,Europe +2024-01-14,27321,244,"[""Charger"", ""Wireless Mouse""]",2836.46,{},100307,0,Africa +2024-01-12,27322,3089,"[""Headphones"", ""Laptop"", ""Phone""]",650.1,"{""loyalty"": ""19%""}",164054,1,Africa +2023-08-21,27323,5252,"[""Headphones"", ""Monitor"", ""Tablet""]",3051.27,{},287694,1,North America +2024-06-15,27324,1820,"[""Tablet"", ""Laptop"", ""Charger""]",1004.8,"{"""": ""10%""}",204799,1,Africa +2023-02-24,27325,4866,"[""Monitor""]",760.35,"{""promo"": ""11%""}",150785,1,South America +2023-11-28,27326,2964,"[""Keyboard"", ""Phone"", ""Headphones""]",4554.84,"{"""": ""12%""}",91621,0,Africa +2023-03-27,27327,7241,"[""Headphones"", ""Phone"", ""Laptop""]",4428.77,"{""promo"": ""17%""}",34952,0,Africa +2023-04-18,27328,2958,"[""Tablet"", ""Wireless Mouse""]",4125.92,{},179749,1,Asia +2024-08-13,27329,151,"[""Phone""]",1517.94,"{"""": ""29%""}",34460,0,Europe +2024-12-12,27330,484,"[""Charger""]",3086.77,"{""loyalty"": ""14%""}",209407,0,Asia +2023-04-06,27331,1848,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4692.31,{},291972,1,Europe +2023-10-13,27332,1213,"[""Laptop""]",4369.65,"{""seasonal"": ""22%""}",167486,0,Africa +2024-07-09,27333,2874,"[""Phone"", ""Laptop"", ""Monitor""]",1725.33,"{""promo"": ""26%""}",118160,1,Asia +2024-12-23,27334,5323,"[""Monitor""]",4468.92,{},257952,0,North America +2024-05-14,27335,4327,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2135.33,"{"""": ""22%""}",172279,1,Asia +2024-02-10,27336,3409,"[""Tablet"", ""Phone"", ""Monitor""]",970.82,"{""promo"": ""18%""}",220810,0,Africa +2024-06-23,27337,889,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1094.12,"{""seasonal"": ""9%""}",199821,1,Africa +2024-06-20,27338,5931,"[""Keyboard"", ""Headphones""]",3018.76,{},134797,0,Europe +2023-11-11,27339,2768,"[""Laptop"", ""Phone"", ""Headphones""]",899.57,"{""seasonal"": ""13%""}",148673,1,Europe +2024-04-12,27340,7214,"[""Charger"", ""Wireless Mouse""]",130.73,"{""promo"": ""28%""}",283271,0,North America +2023-09-18,27341,4681,"[""Headphones"", ""Monitor""]",1555.13,"{""promo"": ""8%""}",26546,0,Asia +2024-02-21,27342,9721,"[""Monitor"", ""Keyboard""]",260.12,{},220334,1,Africa +2024-08-16,27343,7198,"[""Phone""]",4725.67,"{""promo"": ""16%""}",157479,1,Europe +2024-12-27,27344,9451,"[""Monitor"", ""Headphones"", ""Phone""]",3759.23,{},21009,1,Asia +2023-01-24,27345,1501,"[""Laptop""]",1233.81,{},90694,1,Africa +2024-11-15,27346,5594,"[""Phone"", ""Wireless Mouse""]",832.55,{},194862,1,Africa +2024-04-23,27347,3422,"[""Tablet""]",633.07,"{""promo"": ""11%""}",84125,1,North America +2024-03-28,27348,7903,"[""Monitor""]",2525.8,{},289009,1,Europe +2024-10-15,27349,5613,"[""Headphones""]",2350.65,"{""loyalty"": ""13%""}",108991,0,Africa +2024-07-23,27350,3628,"[""Keyboard""]",423.26,{},77807,0,South America +2023-07-19,27351,3714,"[""Headphones"", ""Wireless Mouse""]",2719.49,{},38509,0,Asia +2024-03-21,27352,3847,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",143.95,"{"""": ""6%""}",268117,1,Europe +2024-03-03,27353,9112,"[""Charger""]",2432.19,"{""seasonal"": ""27%""}",213497,0,Europe +2023-10-19,27354,3205,"[""Monitor"", ""Laptop""]",1586.64,"{"""": ""16%""}",246754,0,South America +2024-02-08,27355,2912,"[""Laptop""]",919.5,"{""seasonal"": ""6%""}",64150,1,Africa +2024-10-23,27356,3222,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2743.81,"{""seasonal"": ""18%""}",166043,0,Africa +2024-06-08,27357,6720,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2926.63,{},295987,1,Asia +2023-09-28,27358,9374,"[""Charger"", ""Keyboard""]",770.99,{},105582,1,North America +2024-05-25,27359,4418,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2900.18,"{""seasonal"": ""16%""}",149886,0,Europe +2023-06-24,27360,5236,"[""Charger"", ""Monitor""]",974.77,{},181631,1,South America +2023-02-12,27361,6647,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1505.79,{},241451,0,North America +2023-01-22,27362,9649,"[""Phone"", ""Keyboard"", ""Tablet""]",2621.71,{},34311,1,Europe +2023-07-22,27363,9371,"[""Headphones"", ""Monitor"", ""Phone""]",4769.96,"{"""": ""21%""}",200790,0,South America +2023-12-14,27364,3722,"[""Keyboard"", ""Tablet"", ""Charger""]",4557.83,"{""loyalty"": ""17%""}",150908,0,South America +2023-07-14,27365,4958,"[""Charger"", ""Keyboard""]",2845.45,{},139256,0,Africa +2023-03-26,27366,292,"[""Phone"", ""Headphones""]",4269.67,"{""promo"": ""7%""}",258716,1,Asia +2023-08-07,27367,5100,"[""Charger"", ""Keyboard"", ""Laptop""]",2584.92,"{""seasonal"": ""22%""}",70591,0,Africa +2023-01-16,27368,7773,"[""Headphones""]",289.68,"{""seasonal"": ""25%""}",62823,0,North America +2024-07-24,27369,7936,"[""Tablet"", ""Charger""]",2435.58,{},35034,1,South America +2024-12-13,27370,5140,"[""Charger"", ""Phone""]",151.51,{},273509,1,Asia +2024-10-21,27371,4680,"[""Wireless Mouse"", ""Tablet""]",3699.4,"{""promo"": ""26%""}",8708,0,Europe +2024-11-17,27372,7954,"[""Tablet"", ""Keyboard""]",1610.14,{},267585,1,South America +2024-10-06,27373,4442,"[""Keyboard""]",2545.47,{},8556,0,Africa +2024-06-13,27374,1189,"[""Wireless Mouse"", ""Tablet""]",4996.25,"{""loyalty"": ""7%""}",202281,0,North America +2024-11-20,27375,3474,"[""Headphones"", ""Phone"", ""Charger""]",1662.59,{},163571,0,South America +2023-04-04,27376,6009,"[""Tablet""]",4390.64,"{""loyalty"": ""5%""}",285223,1,North America +2024-06-13,27377,7049,"[""Monitor"", ""Keyboard""]",4874.14,"{""promo"": ""25%""}",134386,1,North America +2024-01-04,27378,6994,"[""Keyboard""]",2860.12,{},37061,0,Africa +2023-11-02,27379,4555,"[""Phone"", ""Keyboard""]",1776.47,{},124389,0,Asia +2023-01-14,27380,5797,"[""Laptop"", ""Charger""]",2205.33,"{""loyalty"": ""8%""}",247564,0,Asia +2023-11-01,27381,412,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1024.64,"{""promo"": ""29%""}",203800,1,Asia +2024-04-07,27382,7572,"[""Keyboard"", ""Phone"", ""Monitor""]",3688.0,{},119924,1,South America +2024-07-31,27383,920,"[""Keyboard"", ""Phone""]",2286.3,"{"""": ""23%""}",61519,1,North America +2023-04-23,27384,3022,"[""Wireless Mouse""]",2899.77,{},267823,0,Asia +2024-03-11,27385,161,"[""Charger"", ""Monitor"", ""Tablet""]",3191.64,"{"""": ""8%""}",125124,1,Africa +2024-07-28,27386,7551,"[""Charger"", ""Tablet"", ""Phone""]",2338.37,"{""loyalty"": ""26%""}",161994,1,North America +2024-06-20,27387,704,"[""Monitor"", ""Tablet""]",541.83,"{""loyalty"": ""27%""}",47298,1,Africa +2024-01-29,27388,1083,"[""Headphones"", ""Charger""]",4996.45,"{""promo"": ""29%""}",206944,0,Africa +2023-11-08,27389,5071,"[""Phone"", ""Monitor"", ""Tablet""]",653.0,"{""loyalty"": ""7%""}",25583,1,Africa +2024-11-07,27390,5666,"[""Keyboard""]",1076.36,"{""promo"": ""19%""}",211689,1,Asia +2024-05-12,27391,7662,"[""Charger""]",2085.96,{},187714,1,Asia +2023-03-30,27392,4224,"[""Phone"", ""Tablet"", ""Monitor""]",4235.44,"{""promo"": ""8%""}",279500,1,Asia +2024-09-20,27393,9882,"[""Phone""]",4201.5,"{""seasonal"": ""20%""}",11946,1,Europe +2024-04-01,27394,6038,"[""Laptop"", ""Charger"", ""Headphones""]",3672.98,{},7240,0,Asia +2024-01-01,27395,7187,"[""Headphones""]",2075.42,"{""seasonal"": ""27%""}",249540,0,Asia +2023-05-15,27396,8211,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3983.6,{},52446,0,North America +2023-09-17,27397,5352,"[""Laptop"", ""Headphones""]",1479.17,{},70569,1,South America +2023-07-12,27398,8835,"[""Wireless Mouse"", ""Charger""]",2012.76,{},128149,0,North America +2023-12-02,27399,6524,"[""Phone""]",732.62,"{""loyalty"": ""12%""}",23299,0,North America +2023-12-06,27400,4027,"[""Charger""]",4230.91,"{""loyalty"": ""22%""}",111141,0,Africa +2023-03-02,27401,1869,"[""Laptop""]",3843.47,"{""loyalty"": ""16%""}",17300,0,North America +2024-01-08,27402,3169,"[""Headphones""]",1464.47,"{""seasonal"": ""17%""}",161973,0,Europe +2023-01-10,27403,4523,"[""Laptop"", ""Charger"", ""Monitor""]",353.47,{},15967,1,North America +2023-03-28,27404,2159,"[""Laptop"", ""Wireless Mouse""]",3480.64,"{""loyalty"": ""27%""}",248609,0,North America +2023-12-24,27405,4304,"[""Wireless Mouse""]",949.52,{},83476,1,South America +2024-07-30,27406,5527,"[""Wireless Mouse"", ""Keyboard""]",4521.62,{},251549,1,Europe +2023-09-04,27407,7493,"[""Charger""]",4974.62,"{"""": ""26%""}",17706,1,North America +2024-03-14,27408,3521,"[""Monitor"", ""Keyboard"", ""Headphones""]",3130.83,"{""seasonal"": ""27%""}",187427,0,Europe +2023-10-26,27409,9370,"[""Monitor"", ""Laptop"", ""Phone""]",4579.21,"{""promo"": ""30%""}",243640,1,South America +2023-12-22,27410,6493,"[""Monitor""]",3970.91,{},91101,0,Europe +2023-11-10,27411,9649,"[""Laptop""]",285.55,{},222301,0,South America +2023-07-06,27412,6667,"[""Laptop"", ""Charger"", ""Phone""]",1679.11,"{""promo"": ""25%""}",262937,1,Africa +2023-11-23,27413,5117,"[""Charger""]",993.5,"{""loyalty"": ""15%""}",254005,0,Africa +2024-02-27,27414,854,"[""Phone""]",3244.62,{},133143,0,South America +2023-11-06,27415,3442,"[""Keyboard"", ""Laptop""]",1865.67,"{""loyalty"": ""7%""}",280834,1,South America +2024-10-21,27416,3279,"[""Monitor"", ""Keyboard""]",1379.68,"{""loyalty"": ""29%""}",238098,0,South America +2023-03-10,27417,1669,"[""Phone"", ""Wireless Mouse""]",1186.09,"{""promo"": ""30%""}",283712,1,Europe +2023-10-21,27418,9411,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2639.63,"{"""": ""24%""}",293144,1,Europe +2023-01-08,27419,7290,"[""Keyboard"", ""Headphones""]",778.55,"{"""": ""27%""}",251976,0,North America +2024-04-04,27420,4946,"[""Laptop"", ""Phone""]",4009.49,"{""seasonal"": ""9%""}",264140,1,Asia +2024-08-20,27421,2994,"[""Wireless Mouse"", ""Charger""]",4361.58,{},255109,1,Asia +2024-03-16,27422,2280,"[""Headphones"", ""Laptop""]",4429.02,"{""seasonal"": ""24%""}",226038,1,Asia +2023-10-24,27423,1242,"[""Tablet"", ""Charger""]",2209.55,{},49078,1,Europe +2023-08-14,27424,463,"[""Laptop""]",2674.63,"{""loyalty"": ""12%""}",181294,0,Asia +2024-11-17,27425,902,"[""Phone"", ""Charger""]",1996.76,{},287405,1,Africa +2024-05-21,27426,1031,"[""Phone"", ""Keyboard"", ""Headphones""]",1015.86,"{""seasonal"": ""26%""}",290354,0,Africa +2023-01-20,27427,758,"[""Keyboard"", ""Headphones"", ""Charger""]",974.18,{},271313,1,South America +2023-07-02,27428,4289,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4028.09,"{""loyalty"": ""10%""}",287235,0,Africa +2023-04-26,27429,1567,"[""Headphones"", ""Laptop"", ""Tablet""]",1635.86,{},224044,0,Europe +2023-12-08,27430,5421,"[""Keyboard""]",3870.9,"{""promo"": ""18%""}",81573,1,Africa +2024-07-13,27431,4643,"[""Tablet"", ""Phone""]",2432.69,"{""promo"": ""22%""}",117066,0,South America +2024-12-05,27432,9779,"[""Keyboard"", ""Phone""]",3759.95,"{"""": ""16%""}",249396,1,South America +2024-10-15,27433,1756,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2888.19,"{""loyalty"": ""12%""}",162735,1,Asia +2023-02-02,27434,1477,"[""Headphones"", ""Monitor""]",3112.59,"{""loyalty"": ""29%""}",88781,0,Asia +2023-03-31,27435,2442,"[""Laptop"", ""Wireless Mouse""]",4619.18,{},57145,1,Europe +2024-05-11,27436,3972,"[""Laptop"", ""Headphones"", ""Phone""]",3460.96,{},136334,0,North America +2023-02-15,27437,152,"[""Charger""]",4275.03,"{"""": ""5%""}",230054,0,Africa +2024-01-04,27438,4484,"[""Phone"", ""Charger""]",642.28,"{"""": ""25%""}",4475,1,North America +2023-01-20,27439,2334,"[""Phone""]",1395.13,{},226795,0,North America +2023-06-21,27440,8868,"[""Charger"", ""Wireless Mouse""]",837.67,"{""promo"": ""9%""}",67719,1,Europe +2023-09-02,27441,8859,"[""Tablet"", ""Charger""]",2831.22,"{""seasonal"": ""20%""}",19760,0,South America +2023-05-30,27442,9019,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1017.36,{},126841,0,North America +2024-06-09,27443,4572,"[""Charger""]",2134.92,"{"""": ""28%""}",189228,1,South America +2024-06-27,27444,4252,"[""Keyboard""]",1326.62,"{""loyalty"": ""8%""}",51849,1,Africa +2023-12-12,27445,9561,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",475.61,{},45561,0,Africa +2023-01-21,27446,2277,"[""Wireless Mouse"", ""Monitor""]",1972.8,"{""promo"": ""30%""}",77746,1,Asia +2023-05-08,27447,7385,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1765.61,"{""promo"": ""22%""}",248971,1,Asia +2024-09-12,27448,4555,"[""Phone"", ""Monitor"", ""Tablet""]",4485.49,"{""promo"": ""15%""}",202337,1,Africa +2023-05-25,27449,5848,"[""Wireless Mouse"", ""Keyboard""]",4176.11,"{""promo"": ""6%""}",176449,1,North America +2024-10-16,27450,1582,"[""Laptop""]",1676.49,{},261372,1,South America +2023-09-27,27451,5058,"[""Laptop""]",1338.1,"{""loyalty"": ""12%""}",146529,0,Africa +2024-11-16,27452,4600,"[""Charger"", ""Laptop"", ""Tablet""]",2861.12,{},114465,0,Africa +2023-12-05,27453,2355,"[""Keyboard""]",4536.18,"{""promo"": ""6%""}",287450,1,South America +2024-07-12,27454,5853,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",891.97,"{""promo"": ""16%""}",233751,0,Europe +2023-08-01,27455,1165,"[""Laptop""]",3890.87,"{""loyalty"": ""15%""}",286217,1,Africa +2023-01-21,27456,3689,"[""Headphones""]",2583.67,{},215910,1,Africa +2024-02-18,27457,4197,"[""Keyboard""]",2901.09,{},81106,1,Europe +2023-01-05,27458,5114,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2570.15,"{""promo"": ""22%""}",278716,0,South America +2023-01-31,27459,8429,"[""Headphones"", ""Laptop""]",2866.57,{},266458,0,South America +2023-10-11,27460,4326,"[""Headphones"", ""Laptop""]",4243.83,"{""promo"": ""18%""}",82163,1,South America +2024-06-07,27461,6863,"[""Monitor"", ""Phone""]",4195.62,{},12101,0,Asia +2023-10-04,27462,895,"[""Charger""]",4421.79,"{"""": ""9%""}",280458,1,Africa +2024-02-10,27463,2710,"[""Monitor""]",1434.63,"{""seasonal"": ""18%""}",84035,1,Europe +2023-01-27,27464,9413,"[""Charger"", ""Monitor""]",1318.36,"{""loyalty"": ""7%""}",247905,1,Africa +2024-04-26,27465,1776,"[""Phone""]",1180.06,{},68255,0,Asia +2023-07-19,27466,9772,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3071.75,"{"""": ""28%""}",94209,1,Asia +2023-12-23,27467,799,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2760.16,{},103491,1,South America +2024-12-11,27468,7732,"[""Phone"", ""Keyboard""]",2051.28,{},152961,0,Africa +2024-07-10,27469,6637,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4154.59,"{"""": ""26%""}",99936,1,Africa +2023-01-28,27470,1147,"[""Monitor""]",2171.19,"{""seasonal"": ""18%""}",139600,0,Asia +2023-02-22,27471,6110,"[""Keyboard"", ""Wireless Mouse""]",600.0,"{""seasonal"": ""14%""}",285001,1,Africa +2023-12-21,27472,1869,"[""Monitor"", ""Tablet""]",3193.74,"{""loyalty"": ""26%""}",31423,0,South America +2023-05-04,27473,107,"[""Tablet""]",4310.96,"{""seasonal"": ""17%""}",89502,0,Asia +2024-01-12,27474,6171,"[""Phone"", ""Headphones""]",4923.12,"{""seasonal"": ""9%""}",232098,0,South America +2023-02-24,27475,3113,"[""Wireless Mouse""]",2468.19,"{""loyalty"": ""17%""}",264569,1,North America +2023-03-06,27476,7702,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4884.69,{},54953,1,South America +2023-11-25,27477,2222,"[""Phone"", ""Charger""]",4906.1,"{"""": ""7%""}",43286,0,Europe +2023-08-30,27478,5238,"[""Monitor""]",2311.11,"{"""": ""25%""}",7847,0,Asia +2024-04-22,27479,5338,"[""Laptop""]",1100.29,"{""promo"": ""19%""}",162495,0,South America +2023-04-09,27480,5095,"[""Wireless Mouse""]",345.81,"{""promo"": ""9%""}",233377,0,South America +2023-06-18,27481,5544,"[""Laptop""]",3894.95,{},252654,0,Europe +2024-04-15,27482,5885,"[""Headphones""]",4842.79,"{""seasonal"": ""5%""}",281418,1,Asia +2023-02-16,27483,7708,"[""Tablet"", ""Wireless Mouse""]",2003.53,"{""promo"": ""30%""}",156460,0,Africa +2023-07-16,27484,4050,"[""Laptop""]",4217.81,"{""loyalty"": ""26%""}",249627,1,Africa +2024-11-16,27485,588,"[""Laptop"", ""Charger"", ""Keyboard""]",4075.54,{},160637,1,South America +2023-08-16,27486,1948,"[""Tablet"", ""Phone"", ""Charger""]",2629.75,"{""promo"": ""25%""}",63759,0,South America +2023-06-06,27487,8851,"[""Headphones""]",4073.98,{},274067,1,Europe +2023-07-22,27488,3286,"[""Monitor"", ""Tablet"", ""Headphones""]",3285.1,"{""seasonal"": ""18%""}",212713,1,Europe +2024-06-27,27489,1178,"[""Phone""]",2721.32,"{""seasonal"": ""12%""}",166429,1,Europe +2023-03-10,27490,7509,"[""Tablet""]",1910.97,{},62695,0,North America +2024-12-18,27491,3077,"[""Monitor"", ""Keyboard""]",821.55,"{""promo"": ""29%""}",248734,1,South America +2023-09-17,27492,1179,"[""Wireless Mouse"", ""Charger""]",2482.35,"{""loyalty"": ""24%""}",176069,1,Asia +2024-09-12,27493,845,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1096.38,"{""seasonal"": ""17%""}",10886,1,Europe +2024-09-29,27494,9187,"[""Headphones"", ""Monitor""]",3113.62,"{""promo"": ""21%""}",251330,1,North America +2024-01-27,27495,9922,"[""Keyboard"", ""Charger"", ""Phone""]",1723.79,"{""loyalty"": ""25%""}",14907,0,Asia +2024-01-08,27496,2774,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3491.89,{},205750,1,Europe +2023-07-15,27497,5770,"[""Monitor"", ""Tablet"", ""Headphones""]",2800.54,"{""seasonal"": ""26%""}",214939,0,North America +2024-05-26,27498,465,"[""Monitor""]",2702.25,"{""loyalty"": ""6%""}",210581,1,Asia +2023-12-24,27499,8208,"[""Laptop""]",4213.41,{},221747,0,Africa +2023-07-23,27500,4940,"[""Monitor"", ""Wireless Mouse""]",2782.04,"{"""": ""25%""}",6370,1,Asia +2024-03-09,27501,5643,"[""Laptop"", ""Keyboard"", ""Headphones""]",4762.89,{},11321,1,Asia +2023-12-30,27502,9379,"[""Laptop"", ""Keyboard"", ""Monitor""]",1135.56,{},190520,1,South America +2023-12-09,27503,4490,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3890.5,{},111015,1,Europe +2024-05-28,27504,6183,"[""Headphones""]",4263.47,{},119600,1,South America +2023-06-09,27505,2793,"[""Keyboard""]",2690.41,"{"""": ""18%""}",102877,0,Africa +2023-12-25,27506,8841,"[""Monitor"", ""Headphones"", ""Keyboard""]",1724.24,"{"""": ""23%""}",156901,1,North America +2024-07-03,27507,9470,"[""Charger"", ""Tablet"", ""Phone""]",113.96,{},175515,0,Africa +2023-08-04,27508,5295,"[""Headphones""]",823.43,"{""promo"": ""12%""}",295888,1,Europe +2023-11-18,27509,1054,"[""Monitor"", ""Headphones"", ""Phone""]",4607.43,{},194648,1,South America +2024-01-23,27510,3618,"[""Charger""]",2006.13,{},167975,0,North America +2023-06-23,27511,4811,"[""Headphones"", ""Laptop""]",3100.09,"{""seasonal"": ""10%""}",84113,1,North America +2023-05-14,27512,4932,"[""Keyboard"", ""Phone""]",1357.02,"{""loyalty"": ""21%""}",56175,0,Asia +2024-09-12,27513,1501,"[""Wireless Mouse""]",3361.55,"{""loyalty"": ""18%""}",69574,1,Asia +2023-04-27,27514,6844,"[""Monitor"", ""Tablet"", ""Phone""]",4623.24,{},74644,0,South America +2024-11-02,27515,869,"[""Monitor""]",4165.76,{},158563,1,Africa +2024-05-19,27516,651,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",878.06,"{"""": ""15%""}",179640,0,South America +2024-09-05,27517,5245,"[""Keyboard"", ""Charger""]",3767.98,"{""promo"": ""28%""}",174090,1,North America +2023-09-25,27518,1634,"[""Tablet"", ""Laptop""]",4052.42,"{"""": ""6%""}",60707,1,Asia +2024-12-28,27519,3925,"[""Headphones"", ""Charger""]",1490.18,{},28691,1,Europe +2024-09-20,27520,3372,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4420.66,"{""seasonal"": ""6%""}",257587,1,North America +2024-06-22,27521,630,"[""Laptop"", ""Monitor"", ""Phone""]",3990.15,"{""promo"": ""8%""}",21175,0,Asia +2024-10-02,27522,566,"[""Monitor"", ""Charger"", ""Phone""]",2386.12,"{""seasonal"": ""6%""}",122745,0,South America +2024-10-03,27523,4573,"[""Charger"", ""Tablet"", ""Phone""]",1451.5,{},111848,1,Africa +2023-10-04,27524,8767,"[""Charger""]",842.98,"{""promo"": ""23%""}",258584,0,Europe +2024-07-11,27525,9016,"[""Headphones""]",4882.12,{},270103,0,Africa +2023-01-27,27526,7738,"[""Phone""]",1310.7,{},86617,1,South America +2024-09-29,27527,4748,"[""Monitor""]",2931.83,{},253045,0,Asia +2024-10-29,27528,8896,"[""Monitor"", ""Charger"", ""Phone""]",970.32,{},74638,1,South America +2023-11-14,27529,7569,"[""Headphones"", ""Charger"", ""Phone""]",1776.06,{},173338,0,South America +2024-02-04,27530,8960,"[""Charger"", ""Wireless Mouse""]",4069.02,{},88776,1,Asia +2023-10-16,27531,5418,"[""Keyboard"", ""Charger""]",2642.88,{},235039,1,North America +2023-05-07,27532,5372,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2053.16,{},120154,0,Europe +2024-11-19,27533,8743,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2429.09,{},184854,1,Asia +2024-03-24,27534,2825,"[""Monitor"", ""Keyboard"", ""Laptop""]",3746.44,{},46858,0,North America +2023-08-08,27535,5989,"[""Charger"", ""Wireless Mouse""]",4543.56,"{""loyalty"": ""13%""}",21796,1,Europe +2023-07-03,27536,1239,"[""Keyboard"", ""Headphones"", ""Phone""]",793.71,{},59385,1,Africa +2023-04-21,27537,9162,"[""Laptop""]",3973.11,"{"""": ""5%""}",294161,1,Asia +2024-06-11,27538,6552,"[""Laptop"", ""Phone""]",4327.27,"{""loyalty"": ""10%""}",175853,0,Africa +2023-11-12,27539,1368,"[""Charger""]",4542.81,"{"""": ""11%""}",120670,0,Asia +2023-11-23,27540,9771,"[""Phone"", ""Tablet""]",3557.2,"{""loyalty"": ""17%""}",210392,1,South America +2024-02-06,27541,4785,"[""Monitor""]",4584.79,{},109537,1,South America +2023-02-06,27542,6303,"[""Phone"", ""Keyboard""]",3765.97,{},254193,1,Asia +2024-12-13,27543,5107,"[""Headphones""]",1811.23,"{""seasonal"": ""24%""}",94319,0,Europe +2023-09-30,27544,5067,"[""Tablet""]",4706.26,{},249342,0,Africa +2024-02-18,27545,7405,"[""Charger"", ""Keyboard"", ""Monitor""]",3579.35,"{""loyalty"": ""17%""}",122855,1,Europe +2024-09-14,27546,7920,"[""Laptop"", ""Tablet""]",3087.59,{},26584,0,South America +2023-10-10,27547,4557,"[""Charger""]",126.53,"{""loyalty"": ""27%""}",242170,1,North America +2023-12-23,27548,8670,"[""Keyboard"", ""Monitor""]",1635.29,"{""seasonal"": ""21%""}",67620,0,Asia +2024-09-15,27549,4446,"[""Monitor"", ""Keyboard""]",688.83,"{""promo"": ""11%""}",205924,1,Africa +2024-11-12,27550,9631,"[""Keyboard""]",3360.46,"{"""": ""26%""}",292888,0,Africa +2023-10-08,27551,4135,"[""Tablet"", ""Wireless Mouse""]",3478.34,{},141613,0,North America +2023-01-28,27552,2770,"[""Wireless Mouse""]",2497.62,"{""seasonal"": ""30%""}",86320,0,South America +2023-04-16,27553,4256,"[""Monitor"", ""Tablet""]",4627.39,"{""promo"": ""16%""}",57161,0,Africa +2023-09-30,27554,5030,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4825.38,"{""promo"": ""14%""}",172623,0,Europe +2024-10-27,27555,3884,"[""Keyboard""]",4628.91,{},20972,1,Asia +2024-09-13,27556,7964,"[""Keyboard"", ""Phone""]",1356.98,{},96433,0,South America +2024-02-15,27557,5787,"[""Keyboard"", ""Headphones""]",4991.81,"{"""": ""28%""}",216718,0,Europe +2024-12-20,27558,9311,"[""Phone""]",2340.27,{},69280,1,Africa +2023-03-31,27559,1559,"[""Charger"", ""Phone"", ""Monitor""]",3110.39,{},110173,0,Asia +2024-03-03,27560,1613,"[""Tablet""]",1204.39,{},71191,1,Asia +2023-03-31,27561,4301,"[""Laptop"", ""Wireless Mouse""]",2001.7,"{""seasonal"": ""29%""}",298976,1,Europe +2024-05-10,27562,1379,"[""Laptop"", ""Headphones""]",854.77,"{"""": ""6%""}",60692,0,Europe +2024-06-11,27563,562,"[""Charger"", ""Tablet""]",4631.19,"{""loyalty"": ""15%""}",44123,0,Europe +2024-04-10,27564,1771,"[""Monitor""]",3248.89,"{""loyalty"": ""13%""}",104973,1,South America +2024-03-02,27565,7076,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3796.82,"{"""": ""17%""}",203664,0,Europe +2023-12-31,27566,5827,"[""Laptop"", ""Headphones""]",1481.06,{},14069,0,South America +2024-04-28,27567,2848,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3468.34,{},200054,0,Asia +2024-09-05,27568,1719,"[""Monitor""]",3135.08,"{""seasonal"": ""12%""}",195032,0,Africa +2023-11-24,27569,114,"[""Laptop"", ""Keyboard""]",1690.94,"{"""": ""26%""}",18586,1,Europe +2024-10-01,27570,7070,"[""Phone"", ""Laptop"", ""Keyboard""]",1378.57,"{""seasonal"": ""10%""}",100031,1,North America +2024-03-03,27571,1059,"[""Headphones"", ""Laptop""]",4193.39,{},258434,1,Europe +2024-11-02,27572,4614,"[""Tablet"", ""Laptop""]",1104.22,{},103661,0,Africa +2023-08-02,27573,4729,"[""Headphones"", ""Laptop""]",4987.71,"{""seasonal"": ""15%""}",244331,0,Asia +2024-05-09,27574,4546,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",764.51,{},218345,1,Africa +2023-08-05,27575,1385,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4714.47,"{""loyalty"": ""14%""}",73487,0,Europe +2024-10-13,27576,7596,"[""Wireless Mouse""]",4738.12,"{""seasonal"": ""14%""}",52977,0,Africa +2023-05-18,27577,450,"[""Charger"", ""Tablet""]",4804.44,"{""seasonal"": ""24%""}",212624,1,Asia +2023-01-27,27578,4806,"[""Monitor"", ""Charger"", ""Laptop""]",4555.89,"{"""": ""15%""}",34966,0,South America +2023-04-02,27579,4569,"[""Laptop""]",1914.16,{},244206,1,Asia +2023-08-03,27580,2243,"[""Monitor"", ""Tablet""]",2764.19,{},137945,1,Africa +2023-04-26,27581,1075,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3445.71,{},105008,0,Europe +2024-04-02,27582,3908,"[""Monitor"", ""Charger""]",2459.88,{},117645,0,North America +2023-02-25,27583,6461,"[""Phone"", ""Tablet""]",2360.65,"{"""": ""23%""}",17833,0,Africa +2023-12-14,27584,983,"[""Charger""]",117.71,{},203220,0,South America +2024-03-09,27585,1399,"[""Phone""]",2435.4,"{""seasonal"": ""23%""}",246238,0,Asia +2023-03-03,27586,2859,"[""Headphones"", ""Tablet"", ""Monitor""]",4872.5,{},49008,0,Africa +2023-06-22,27587,8357,"[""Wireless Mouse"", ""Monitor""]",1367.24,{},54815,0,North America +2024-08-14,27588,2843,"[""Tablet"", ""Monitor""]",3905.86,{},15417,0,Europe +2023-05-11,27589,4774,"[""Monitor""]",1766.58,{},109747,0,North America +2023-03-07,27590,7533,"[""Monitor"", ""Tablet"", ""Charger""]",4351.58,"{"""": ""21%""}",253595,0,Africa +2023-08-04,27591,1075,"[""Monitor"", ""Tablet""]",1185.09,"{""loyalty"": ""27%""}",137945,0,Europe +2024-02-28,27592,4973,"[""Headphones"", ""Charger""]",4479.23,"{""loyalty"": ""10%""}",223198,1,South America +2024-08-04,27593,8904,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4198.58,{},157025,1,Asia +2024-03-13,27594,1082,"[""Monitor"", ""Tablet"", ""Keyboard""]",4604.55,{},211445,0,Europe +2023-10-01,27595,6942,"[""Wireless Mouse"", ""Keyboard""]",3095.39,"{""loyalty"": ""30%""}",51057,0,Asia +2023-01-04,27596,6261,"[""Charger"", ""Keyboard""]",2957.2,"{""seasonal"": ""8%""}",132661,1,Africa +2023-08-05,27597,6840,"[""Phone"", ""Charger"", ""Monitor""]",1784.67,{},29440,0,Europe +2023-06-08,27598,9314,"[""Tablet""]",1167.99,"{""loyalty"": ""7%""}",263424,1,Europe +2024-08-13,27599,4732,"[""Wireless Mouse""]",4775.18,{},132624,0,Africa +2024-07-18,27600,5723,"[""Tablet""]",4893.89,{},63431,1,Europe +2023-09-27,27601,202,"[""Monitor""]",2620.66,{},173876,0,Asia +2024-06-03,27602,4164,"[""Phone"", ""Monitor""]",2269.88,{},265922,0,South America +2024-09-15,27603,7379,"[""Phone"", ""Tablet"", ""Charger""]",2335.16,"{""loyalty"": ""15%""}",166779,1,Asia +2024-10-12,27604,1458,"[""Laptop""]",1883.57,{},210509,1,Europe +2024-09-20,27605,7371,"[""Laptop"", ""Phone""]",2822.17,{},185406,0,Europe +2024-12-22,27606,1809,"[""Headphones"", ""Monitor""]",4448.88,{},222371,1,South America +2024-04-15,27607,2018,"[""Charger"", ""Tablet""]",322.8,{},193582,0,North America +2024-11-02,27608,2300,"[""Phone"", ""Keyboard""]",1447.87,{},227014,0,South America +2023-08-21,27609,8742,"[""Monitor"", ""Charger"", ""Headphones""]",2745.88,"{""promo"": ""7%""}",13104,1,Europe +2024-09-23,27610,3755,"[""Phone""]",3260.68,{},82667,0,Asia +2023-09-10,27611,7823,"[""Phone"", ""Keyboard""]",425.84,"{"""": ""7%""}",299782,1,Asia +2024-04-16,27612,7299,"[""Wireless Mouse"", ""Charger""]",3925.81,{},252033,1,Europe +2023-07-13,27613,8492,"[""Wireless Mouse"", ""Tablet""]",1583.91,"{""promo"": ""16%""}",19948,0,Africa +2023-10-26,27614,2963,"[""Monitor""]",955.62,"{"""": ""22%""}",259561,0,North America +2024-05-26,27615,2842,"[""Tablet"", ""Keyboard"", ""Charger""]",3740.82,"{""seasonal"": ""20%""}",33381,0,North America +2024-07-09,27616,7219,"[""Monitor"", ""Keyboard"", ""Phone""]",2039.42,{},288317,1,North America +2024-11-19,27617,7378,"[""Tablet"", ""Wireless Mouse""]",2129.15,{},63341,0,North America +2024-03-14,27618,3609,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2274.47,"{""promo"": ""28%""}",141944,1,Europe +2023-04-14,27619,8042,"[""Wireless Mouse"", ""Charger"", ""Phone""]",727.19,"{"""": ""26%""}",54365,0,Africa +2024-09-25,27620,9169,"[""Keyboard"", ""Wireless Mouse""]",4042.79,"{""seasonal"": ""27%""}",193117,1,Asia +2024-01-21,27621,3009,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",706.48,"{"""": ""29%""}",232124,0,Europe +2024-12-29,27622,2064,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4047.88,"{""seasonal"": ""24%""}",298645,1,North America +2024-05-28,27623,2393,"[""Wireless Mouse"", ""Laptop""]",2986.36,"{""loyalty"": ""18%""}",212706,0,Africa +2023-06-28,27624,4918,"[""Charger"", ""Headphones"", ""Keyboard""]",3539.91,{},27012,1,Africa +2024-12-06,27625,2474,"[""Keyboard""]",1277.97,"{""loyalty"": ""6%""}",171968,0,North America +2023-05-18,27626,1942,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",885.99,"{""loyalty"": ""12%""}",261371,1,South America +2024-08-06,27627,2078,"[""Monitor"", ""Laptop"", ""Tablet""]",2402.54,{},160283,0,South America +2024-04-15,27628,4902,"[""Keyboard""]",4977.66,"{""seasonal"": ""8%""}",78822,1,South America +2023-08-19,27629,6413,"[""Phone"", ""Keyboard"", ""Tablet""]",4003.54,"{""promo"": ""22%""}",288695,0,Africa +2024-02-26,27630,389,"[""Tablet""]",1456.56,{},298591,0,South America +2024-12-01,27631,6351,"[""Monitor""]",3620.75,"{"""": ""7%""}",290842,0,South America +2024-09-08,27632,6807,"[""Tablet"", ""Phone"", ""Monitor""]",2972.97,"{""promo"": ""25%""}",47345,1,Africa +2023-11-26,27633,7511,"[""Phone"", ""Keyboard""]",4711.95,{},91593,0,Africa +2024-06-03,27634,7957,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2786.08,"{""seasonal"": ""15%""}",106527,0,Africa +2023-05-10,27635,5235,"[""Wireless Mouse"", ""Headphones""]",1438.1,{},156514,1,South America +2023-10-19,27636,4832,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3680.27,"{"""": ""16%""}",33287,1,Europe +2024-03-01,27637,9872,"[""Monitor""]",1666.5,"{"""": ""27%""}",97931,0,Africa +2024-05-16,27638,6911,"[""Wireless Mouse"", ""Laptop""]",2175.78,"{""seasonal"": ""24%""}",124261,1,Asia +2024-11-15,27639,7124,"[""Phone"", ""Laptop""]",1602.59,"{"""": ""9%""}",190542,1,South America +2024-01-24,27640,5219,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2602.73,"{""seasonal"": ""24%""}",168799,0,Europe +2024-12-05,27641,9046,"[""Phone"", ""Keyboard""]",2145.4,{},179710,1,Africa +2024-08-29,27642,8603,"[""Headphones"", ""Keyboard"", ""Tablet""]",2025.25,"{""seasonal"": ""18%""}",43859,1,Asia +2023-02-24,27643,2869,"[""Charger""]",2345.19,"{""loyalty"": ""28%""}",61214,0,Europe +2024-04-26,27644,526,"[""Keyboard"", ""Wireless Mouse""]",792.58,"{""loyalty"": ""24%""}",202481,1,Africa +2024-05-09,27645,4877,"[""Keyboard""]",362.82,"{"""": ""30%""}",68898,1,North America +2023-12-25,27646,603,"[""Laptop"", ""Keyboard""]",239.74,{},6978,1,Africa +2023-11-01,27647,7089,"[""Headphones""]",3563.13,{},169064,1,North America +2024-12-30,27648,6988,"[""Wireless Mouse"", ""Tablet""]",4795.78,"{""seasonal"": ""22%""}",142236,0,Asia +2023-09-19,27649,4782,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3270.16,{},157888,0,Asia +2024-03-07,27650,1324,"[""Keyboard"", ""Tablet""]",4699.94,{},268102,1,South America +2024-10-07,27651,6558,"[""Keyboard""]",2494.14,"{""promo"": ""14%""}",194361,1,Europe +2024-10-16,27652,8668,"[""Headphones"", ""Keyboard""]",4113.21,"{""loyalty"": ""6%""}",84792,1,Asia +2023-01-17,27653,9807,"[""Laptop"", ""Monitor""]",927.23,{},297107,1,Asia +2023-03-31,27654,4565,"[""Laptop"", ""Phone"", ""Keyboard""]",4924.82,"{""seasonal"": ""24%""}",41867,1,Europe +2023-06-06,27655,3055,"[""Monitor"", ""Keyboard""]",1267.08,{},208435,1,Africa +2024-02-24,27656,4929,"[""Charger"", ""Tablet""]",4585.55,{},194722,0,Africa +2024-09-04,27657,1603,"[""Headphones"", ""Monitor""]",3174.55,"{"""": ""29%""}",240726,0,South America +2024-09-10,27658,4511,"[""Monitor""]",2296.93,{},164427,0,North America +2024-10-21,27659,6412,"[""Monitor"", ""Headphones""]",2840.56,{},55065,1,North America +2024-10-13,27660,8130,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4634.93,"{"""": ""6%""}",255549,0,Africa +2023-07-30,27661,4225,"[""Phone"", ""Laptop""]",707.12,"{""loyalty"": ""25%""}",45391,1,Africa +2024-09-24,27662,1557,"[""Phone"", ""Headphones""]",4279.19,"{""seasonal"": ""9%""}",111079,1,North America +2024-09-05,27663,6006,"[""Monitor"", ""Phone""]",2161.44,"{""promo"": ""23%""}",35846,1,North America +2023-09-30,27664,10,"[""Keyboard"", ""Headphones""]",185.42,{},204724,0,North America +2024-11-12,27665,5598,"[""Charger"", ""Phone"", ""Tablet""]",4587.64,{},116835,1,South America +2023-05-14,27666,7955,"[""Monitor"", ""Laptop"", ""Headphones""]",2268.89,"{""promo"": ""15%""}",43222,1,Europe +2024-11-24,27667,8645,"[""Keyboard"", ""Monitor"", ""Charger""]",1591.41,"{""seasonal"": ""17%""}",29380,1,North America +2023-04-27,27668,7227,"[""Charger"", ""Tablet""]",700.94,"{""seasonal"": ""6%""}",15955,1,Europe +2023-10-20,27669,1589,"[""Headphones"", ""Wireless Mouse""]",3396.5,"{""seasonal"": ""26%""}",189725,0,Asia +2023-05-01,27670,6418,"[""Charger"", ""Phone""]",213.69,{},86642,0,Europe +2023-08-08,27671,3637,"[""Headphones"", ""Laptop""]",4986.2,{},67080,1,Europe +2023-06-19,27672,5658,"[""Phone""]",2433.6,{},205195,1,Asia +2024-12-11,27673,9541,"[""Headphones"", ""Laptop""]",1465.32,{},42249,0,South America +2024-09-02,27674,6345,"[""Monitor""]",4321.06,{},59288,0,Europe +2024-06-16,27675,3340,"[""Monitor"", ""Keyboard""]",2181.99,"{""loyalty"": ""10%""}",33474,0,Asia +2023-09-28,27676,6293,"[""Laptop""]",1755.31,{},250111,0,Africa +2023-10-26,27677,2059,"[""Monitor""]",3357.94,"{""loyalty"": ""22%""}",237321,0,Asia +2024-01-11,27678,7743,"[""Monitor""]",1665.24,{},244330,1,Europe +2023-07-31,27679,4009,"[""Monitor"", ""Laptop"", ""Phone""]",1555.29,"{""seasonal"": ""15%""}",293927,0,Europe +2023-10-06,27680,9360,"[""Phone"", ""Headphones"", ""Tablet""]",2760.11,"{""seasonal"": ""29%""}",225186,1,Europe +2024-09-27,27681,1975,"[""Charger"", ""Headphones""]",3218.27,{},82980,0,Asia +2023-07-05,27682,4071,"[""Laptop"", ""Phone""]",2700.62,"{""promo"": ""19%""}",208419,0,Asia +2024-12-24,27683,2395,"[""Laptop"", ""Keyboard""]",243.73,{},164690,0,Europe +2024-11-25,27684,3415,"[""Laptop""]",4171.98,"{""promo"": ""23%""}",148866,1,South America +2023-03-22,27685,4654,"[""Keyboard""]",3335.85,"{""seasonal"": ""16%""}",23600,1,Europe +2023-02-27,27686,827,"[""Laptop""]",3006.73,{},208498,1,South America +2024-10-23,27687,8493,"[""Laptop"", ""Phone"", ""Monitor""]",3823.05,{},80089,1,North America +2023-12-24,27688,2762,"[""Headphones"", ""Phone""]",1167.27,{},75296,0,Asia +2024-01-12,27689,251,"[""Laptop"", ""Keyboard"", ""Monitor""]",1628.84,{},12458,0,Africa +2023-02-12,27690,4372,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2444.32,"{""promo"": ""7%""}",110895,0,Africa +2023-02-02,27691,8634,"[""Phone"", ""Keyboard""]",3670.65,{},279200,0,Asia +2023-01-20,27692,4898,"[""Phone"", ""Laptop""]",3757.68,{},138381,0,Europe +2023-03-13,27693,2751,"[""Wireless Mouse""]",2175.62,{},39690,1,Asia +2024-04-06,27694,1630,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1810.85,"{"""": ""13%""}",246931,0,Europe +2023-02-07,27695,870,"[""Phone"", ""Keyboard""]",3849.95,"{""seasonal"": ""19%""}",258836,1,Europe +2023-11-23,27696,2965,"[""Headphones""]",2238.14,{},148299,0,North America +2023-09-12,27697,8759,"[""Laptop"", ""Tablet""]",4896.25,"{""loyalty"": ""26%""}",215306,1,North America +2023-08-26,27698,4025,"[""Charger""]",2285.66,{},177645,1,Asia +2023-11-22,27699,6177,"[""Tablet"", ""Charger""]",4395.11,"{""seasonal"": ""5%""}",88205,1,Africa +2023-05-25,27700,4706,"[""Headphones"", ""Laptop""]",4352.79,"{""promo"": ""28%""}",205084,1,North America +2024-02-12,27701,2378,"[""Headphones""]",2140.87,"{""promo"": ""30%""}",25234,1,Africa +2024-06-20,27702,1881,"[""Wireless Mouse"", ""Headphones""]",3940.66,{},9719,0,Asia +2023-06-06,27703,575,"[""Monitor"", ""Keyboard"", ""Tablet""]",4017.31,{},75828,1,Africa +2024-04-23,27704,5847,"[""Monitor"", ""Laptop""]",2515.94,{},287873,1,Asia +2024-04-21,27705,5499,"[""Monitor""]",1793.43,{},103945,1,Europe +2024-04-19,27706,213,"[""Wireless Mouse"", ""Laptop""]",3633.31,{},148142,1,South America +2023-07-26,27707,9084,"[""Phone""]",2475.33,"{""seasonal"": ""16%""}",127280,1,South America +2023-01-11,27708,3246,"[""Wireless Mouse""]",3695.94,{},150684,0,Asia +2024-07-08,27709,6551,"[""Wireless Mouse"", ""Headphones""]",495.27,"{"""": ""21%""}",38617,1,Asia +2023-01-08,27710,4243,"[""Phone""]",3004.54,"{""loyalty"": ""17%""}",241708,1,North America +2024-03-05,27711,9796,"[""Keyboard""]",4167.64,{},133934,1,Europe +2023-10-04,27712,4219,"[""Monitor""]",3963.39,{},73492,1,Asia +2024-02-24,27713,7975,"[""Wireless Mouse"", ""Keyboard""]",1861.73,{},196715,1,Europe +2024-04-06,27714,8988,"[""Laptop"", ""Headphones"", ""Phone""]",715.71,{},18461,1,Africa +2023-05-24,27715,8978,"[""Tablet""]",4472.24,{},276010,1,Europe +2023-12-21,27716,2903,"[""Phone"", ""Keyboard""]",316.03,{},1658,0,Europe +2023-06-26,27717,5634,"[""Charger"", ""Tablet""]",2731.58,"{""seasonal"": ""5%""}",105166,0,Europe +2024-03-07,27718,4195,"[""Headphones"", ""Keyboard"", ""Laptop""]",3655.02,"{""loyalty"": ""7%""}",258358,0,Africa +2024-08-26,27719,5227,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3332.38,{},249658,1,Asia +2024-01-02,27720,7290,"[""Charger"", ""Keyboard"", ""Headphones""]",1665.76,{},244726,0,Asia +2024-02-12,27721,1140,"[""Charger"", ""Phone"", ""Laptop""]",1215.96,"{""promo"": ""5%""}",44429,1,Europe +2024-10-05,27722,2898,"[""Laptop"", ""Keyboard""]",4283.14,{},127458,0,Africa +2024-12-26,27723,4898,"[""Charger""]",3748.4,{},138326,1,North America +2023-12-02,27724,4955,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2883.11,{},248223,1,North America +2023-04-10,27725,8643,"[""Laptop"", ""Tablet"", ""Phone""]",3178.36,{},121518,0,Asia +2023-04-05,27726,3562,"[""Keyboard""]",3150.84,{},43399,0,Asia +2024-09-28,27727,8166,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4738.3,{},165212,0,Europe +2023-10-24,27728,2468,"[""Keyboard""]",2461.9,{},141079,0,North America +2024-06-20,27729,3258,"[""Tablet""]",1535.21,{},100193,1,Asia +2023-09-13,27730,7807,"[""Laptop"", ""Phone"", ""Tablet""]",363.91,{},293426,1,Europe +2023-04-02,27731,7745,"[""Wireless Mouse""]",3458.48,"{""seasonal"": ""24%""}",48403,0,South America +2024-02-22,27732,9596,"[""Monitor"", ""Phone"", ""Laptop""]",3708.57,"{""promo"": ""28%""}",69191,0,Europe +2023-07-06,27733,7881,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1213.81,"{""promo"": ""6%""}",150956,1,Europe +2023-10-02,27734,2528,"[""Tablet"", ""Laptop""]",982.93,"{""loyalty"": ""15%""}",245949,0,Asia +2023-04-09,27735,7653,"[""Tablet"", ""Laptop"", ""Monitor""]",3246.68,{},251207,0,South America +2023-04-05,27736,6283,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3767.7,"{""seasonal"": ""24%""}",281474,1,Asia +2024-11-01,27737,4590,"[""Keyboard"", ""Monitor"", ""Laptop""]",1309.48,{},262408,1,Asia +2024-02-14,27738,1785,"[""Tablet"", ""Charger""]",2922.48,{},199566,0,Africa +2023-04-26,27739,8980,"[""Tablet""]",4745.51,"{""promo"": ""17%""}",149061,0,Asia +2023-04-11,27740,7300,"[""Wireless Mouse"", ""Phone""]",1063.22,{},72456,0,Asia +2024-09-20,27741,5967,"[""Tablet"", ""Headphones"", ""Laptop""]",1428.01,{},90856,0,Europe +2023-04-18,27742,5204,"[""Keyboard""]",4351.78,{},77944,1,Europe +2024-01-14,27743,1780,"[""Charger"", ""Monitor""]",1442.89,{},243881,0,North America +2023-07-05,27744,3853,"[""Laptop"", ""Wireless Mouse""]",2807.52,{},51826,0,North America +2024-12-18,27745,1389,"[""Wireless Mouse"", ""Tablet""]",990.11,"{""loyalty"": ""10%""}",35815,0,North America +2024-03-20,27746,8674,"[""Charger""]",2032.85,"{""promo"": ""17%""}",19667,1,Asia +2023-04-08,27747,8740,"[""Phone""]",92.93,"{"""": ""9%""}",53442,0,Europe +2024-12-11,27748,9557,"[""Tablet""]",1127.0,{},30927,0,Asia +2023-07-26,27749,7028,"[""Laptop"", ""Charger""]",3588.07,"{""promo"": ""21%""}",93018,1,North America +2023-04-25,27750,4100,"[""Monitor"", ""Laptop"", ""Headphones""]",187.53,{},78393,0,North America +2024-11-09,27751,165,"[""Phone"", ""Keyboard"", ""Tablet""]",401.63,{},259120,0,Europe +2024-09-03,27752,9176,"[""Phone"", ""Headphones"", ""Monitor""]",3783.29,"{""promo"": ""20%""}",54642,1,Africa +2023-07-10,27753,7660,"[""Wireless Mouse"", ""Headphones""]",2035.04,"{"""": ""12%""}",265955,1,North America +2023-09-01,27754,8579,"[""Headphones"", ""Monitor"", ""Tablet""]",4480.47,"{""loyalty"": ""8%""}",131385,0,South America +2024-02-19,27755,3693,"[""Headphones""]",1894.6,{},128613,0,Europe +2023-08-10,27756,1272,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2915.09,"{""promo"": ""17%""}",82056,0,Europe +2024-03-05,27757,8159,"[""Tablet"", ""Keyboard"", ""Monitor""]",4814.48,{},223677,1,Asia +2023-01-17,27758,5089,"[""Phone"", ""Monitor"", ""Tablet""]",3585.56,{},122807,1,Africa +2023-12-13,27759,7208,"[""Phone"", ""Tablet"", ""Monitor""]",508.89,{},31430,1,Africa +2024-12-20,27760,3296,"[""Monitor"", ""Laptop"", ""Charger""]",1797.63,{},175944,1,North America +2024-07-25,27761,1254,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2840.01,"{"""": ""27%""}",116840,1,Asia +2023-06-07,27762,8214,"[""Headphones"", ""Monitor"", ""Laptop""]",2982.88,"{""seasonal"": ""6%""}",268947,1,South America +2024-04-19,27763,8658,"[""Laptop"", ""Headphones"", ""Keyboard""]",2028.2,"{""loyalty"": ""20%""}",94747,0,Asia +2024-01-19,27764,8976,"[""Monitor""]",1141.91,{},255341,0,Europe +2024-10-02,27765,8386,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",733.67,"{""loyalty"": ""20%""}",164455,1,South America +2023-06-21,27766,391,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1258.18,{},45943,0,Europe +2023-11-27,27767,5579,"[""Phone""]",4729.13,{},227672,1,North America +2024-07-18,27768,2912,"[""Monitor"", ""Tablet"", ""Keyboard""]",3384.26,{},166312,0,Asia +2024-02-03,27769,7312,"[""Laptop""]",4889.95,"{""loyalty"": ""5%""}",281485,1,Asia +2024-10-09,27770,9862,"[""Monitor""]",4952.9,{},64015,1,North America +2023-11-07,27771,2915,"[""Wireless Mouse""]",2961.77,{},239512,0,Africa +2023-10-02,27772,8274,"[""Tablet""]",4472.94,{},168181,0,Africa +2023-11-28,27773,2802,"[""Tablet""]",3404.44,{},291558,1,South America +2023-08-02,27774,1543,"[""Laptop"", ""Wireless Mouse""]",302.81,{},103091,0,Africa +2023-10-14,27775,2912,"[""Headphones"", ""Monitor"", ""Tablet""]",739.64,{},107353,1,Asia +2024-11-27,27776,8896,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1872.3,"{""seasonal"": ""23%""}",187040,0,Asia +2024-12-26,27777,5680,"[""Tablet"", ""Keyboard"", ""Headphones""]",230.02,{},115136,1,Asia +2024-11-27,27778,2886,"[""Monitor"", ""Headphones""]",3047.78,"{"""": ""9%""}",228355,0,South America +2023-06-09,27779,1503,"[""Charger""]",1906.13,"{""promo"": ""25%""}",20147,0,North America +2024-06-05,27780,7770,"[""Keyboard"", ""Wireless Mouse""]",3044.68,{},23541,1,Africa +2023-03-10,27781,475,"[""Tablet"", ""Headphones""]",1071.74,{},174235,0,Europe +2024-03-22,27782,9004,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",698.85,"{"""": ""26%""}",174884,1,Africa +2024-08-10,27783,3589,"[""Keyboard""]",2817.95,{},170394,0,South America +2023-12-07,27784,311,"[""Laptop""]",4225.12,{},60325,0,Africa +2023-07-25,27785,2611,"[""Headphones"", ""Laptop""]",2155.39,"{"""": ""21%""}",125724,1,North America +2024-06-18,27786,3372,"[""Charger"", ""Headphones""]",1240.61,"{""loyalty"": ""13%""}",273580,0,Africa +2024-10-23,27787,7628,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1373.78,"{""promo"": ""28%""}",61353,0,Africa +2023-04-19,27788,2418,"[""Phone""]",3364.09,{},173027,0,Africa +2024-03-15,27789,5391,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",145.83,{},295577,0,Europe +2023-04-04,27790,6716,"[""Phone"", ""Keyboard""]",110.53,"{""seasonal"": ""22%""}",114764,1,Europe +2024-04-18,27791,415,"[""Charger"", ""Tablet"", ""Keyboard""]",3454.47,"{""loyalty"": ""22%""}",92836,1,South America +2023-06-12,27792,5452,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2882.26,{},180132,0,Africa +2024-11-19,27793,3437,"[""Laptop""]",1091.71,"{""loyalty"": ""15%""}",8417,0,Asia +2024-02-26,27794,4888,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1752.49,"{""promo"": ""14%""}",248697,0,Asia +2024-03-31,27795,1694,"[""Phone""]",4475.69,{},194319,0,Asia +2024-09-17,27796,9674,"[""Monitor"", ""Headphones""]",2397.68,"{""seasonal"": ""9%""}",176549,0,Africa +2024-05-13,27797,2584,"[""Phone"", ""Tablet""]",981.92,"{""seasonal"": ""15%""}",12869,1,Asia +2024-02-18,27798,6816,"[""Tablet"", ""Wireless Mouse""]",3471.08,{},113089,1,South America +2023-10-13,27799,9877,"[""Keyboard""]",2604.02,"{""promo"": ""20%""}",120218,1,Asia +2023-08-25,27800,1094,"[""Phone"", ""Charger""]",571.67,{},162172,1,Europe +2024-08-23,27801,2793,"[""Monitor""]",689.42,"{""promo"": ""7%""}",82687,0,Europe +2024-06-25,27802,2977,"[""Monitor"", ""Phone""]",1502.83,"{""loyalty"": ""28%""}",247389,0,Africa +2024-01-08,27803,249,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3342.17,"{""seasonal"": ""13%""}",189501,0,Africa +2024-11-16,27804,2785,"[""Tablet""]",3920.67,{},190649,0,Europe +2023-06-25,27805,2291,"[""Laptop"", ""Charger"", ""Tablet""]",1115.26,"{"""": ""8%""}",7191,1,Europe +2023-08-25,27806,9634,"[""Wireless Mouse"", ""Phone""]",4821.62,"{""promo"": ""27%""}",76293,0,South America +2024-12-21,27807,2786,"[""Wireless Mouse""]",1180.67,"{""promo"": ""20%""}",35835,0,Europe +2024-09-16,27808,4784,"[""Headphones"", ""Charger""]",479.76,"{""promo"": ""18%""}",237695,0,Asia +2024-09-25,27809,7699,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3198.44,"{""seasonal"": ""11%""}",186404,0,South America +2023-01-16,27810,3550,"[""Keyboard"", ""Monitor""]",3395.82,{},96546,1,South America +2023-04-07,27811,8023,"[""Wireless Mouse""]",1593.92,{},260311,0,North America +2023-06-10,27812,6444,"[""Wireless Mouse"", ""Laptop""]",278.52,{},158940,1,South America +2024-12-28,27813,6500,"[""Phone""]",3474.96,"{""promo"": ""17%""}",75295,1,North America +2024-03-11,27814,7678,"[""Monitor""]",4857.34,"{""promo"": ""19%""}",235240,1,South America +2024-10-17,27815,6325,"[""Wireless Mouse"", ""Tablet""]",1486.55,{},28703,0,Europe +2024-03-17,27816,4577,"[""Tablet"", ""Monitor"", ""Charger""]",4038.19,"{""loyalty"": ""6%""}",187657,1,Asia +2023-12-18,27817,9867,"[""Monitor"", ""Wireless Mouse""]",3608.93,"{""seasonal"": ""9%""}",259087,1,Africa +2023-09-08,27818,2995,"[""Monitor""]",4899.81,{},294251,1,North America +2024-10-15,27819,2519,"[""Tablet"", ""Wireless Mouse""]",4275.41,"{""promo"": ""8%""}",162704,1,Africa +2023-03-16,27820,7591,"[""Phone"", ""Laptop""]",4935.1,"{""loyalty"": ""5%""}",262447,1,Europe +2024-05-20,27821,7090,"[""Laptop""]",1089.22,"{""promo"": ""19%""}",259060,1,Europe +2024-07-16,27822,6419,"[""Monitor""]",995.4,{},102385,0,Europe +2023-10-16,27823,8462,"[""Laptop"", ""Charger""]",2186.64,{},273688,0,North America +2024-01-25,27824,3144,"[""Laptop"", ""Charger""]",2075.85,"{""promo"": ""20%""}",181972,0,South America +2024-03-11,27825,5035,"[""Monitor"", ""Phone"", ""Charger""]",2033.2,"{""loyalty"": ""11%""}",60903,1,Africa +2023-04-05,27826,2215,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1390.32,"{"""": ""18%""}",219274,1,Europe +2024-08-27,27827,4848,"[""Headphones""]",2006.28,{},246746,0,South America +2023-12-22,27828,987,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",426.42,{},263068,0,North America +2023-07-27,27829,2649,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3573.0,"{""loyalty"": ""30%""}",252687,1,South America +2023-06-02,27830,6458,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4642.29,"{""seasonal"": ""23%""}",290273,0,South America +2024-03-23,27831,5641,"[""Wireless Mouse""]",1256.78,"{"""": ""10%""}",33556,1,Europe +2023-09-06,27832,6847,"[""Tablet"", ""Phone""]",2581.74,"{""seasonal"": ""7%""}",144978,1,Asia +2023-10-27,27833,1751,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3844.65,{},47794,0,South America +2024-10-25,27834,6968,"[""Tablet"", ""Phone"", ""Keyboard""]",3057.42,"{""seasonal"": ""26%""}",68420,0,North America +2024-07-29,27835,9207,"[""Monitor"", ""Phone"", ""Laptop""]",3156.0,"{""seasonal"": ""5%""}",49508,0,Europe +2023-10-18,27836,4434,"[""Keyboard""]",2866.14,{},279043,1,Asia +2023-01-03,27837,7103,"[""Tablet"", ""Charger""]",3327.0,"{""promo"": ""13%""}",167887,1,South America +2023-05-20,27838,7568,"[""Charger""]",785.81,"{""loyalty"": ""17%""}",58472,1,South America +2024-11-01,27839,2897,"[""Wireless Mouse"", ""Laptop""]",1399.34,"{""loyalty"": ""28%""}",23650,0,North America +2023-04-29,27840,4152,"[""Phone"", ""Monitor"", ""Laptop""]",3711.73,{},231386,0,Africa +2024-11-26,27841,6352,"[""Tablet"", ""Phone"", ""Headphones""]",3897.78,{},135912,0,North America +2024-01-30,27842,124,"[""Wireless Mouse"", ""Charger""]",2387.33,"{"""": ""25%""}",136407,0,South America +2023-10-11,27843,4692,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4240.68,{},297141,1,Asia +2024-04-12,27844,482,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",855.06,"{""seasonal"": ""10%""}",1714,1,South America +2024-03-22,27845,8550,"[""Phone""]",2761.01,{},297152,0,Africa +2023-09-01,27846,5911,"[""Headphones"", ""Laptop""]",448.72,"{"""": ""26%""}",273115,1,Africa +2023-03-26,27847,9262,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2579.94,"{""loyalty"": ""15%""}",61956,0,Asia +2023-08-02,27848,7019,"[""Wireless Mouse"", ""Phone""]",196.56,{},276493,0,Africa +2023-01-23,27849,5527,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",787.15,{},105363,0,Africa +2024-08-09,27850,8176,"[""Headphones"", ""Charger"", ""Monitor""]",4923.25,"{""promo"": ""10%""}",252878,1,Africa +2023-04-09,27851,5677,"[""Phone""]",865.2,{},293148,0,Africa +2024-01-28,27852,8673,"[""Headphones"", ""Laptop"", ""Phone""]",3427.18,"{""seasonal"": ""23%""}",49593,1,South America +2024-10-07,27853,2401,"[""Laptop""]",231.35,"{""loyalty"": ""19%""}",101013,0,Asia +2023-12-12,27854,7102,"[""Laptop"", ""Tablet"", ""Monitor""]",4061.14,"{""seasonal"": ""18%""}",54551,1,Europe +2023-12-25,27855,1805,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",301.48,"{"""": ""27%""}",73932,0,North America +2024-09-19,27856,6801,"[""Monitor""]",2718.91,"{""promo"": ""28%""}",118107,1,South America +2023-06-30,27857,4306,"[""Keyboard"", ""Monitor""]",747.86,"{""seasonal"": ""5%""}",252296,1,South America +2023-06-28,27858,6234,"[""Laptop""]",196.97,{},265810,0,South America +2023-12-26,27859,5179,"[""Phone""]",3494.12,{},9606,1,Africa +2024-09-07,27860,4597,"[""Monitor""]",4284.92,"{""seasonal"": ""15%""}",10526,0,North America +2024-09-25,27861,4728,"[""Laptop"", ""Tablet"", ""Headphones""]",2342.04,{},53788,1,Africa +2023-09-08,27862,1292,"[""Headphones""]",3535.2,{},237821,0,North America +2024-09-20,27863,9128,"[""Keyboard"", ""Charger""]",4702.55,"{""promo"": ""22%""}",122102,0,South America +2024-02-15,27864,1773,"[""Tablet"", ""Headphones"", ""Keyboard""]",693.65,{},269391,0,Asia +2024-09-29,27865,1362,"[""Charger"", ""Keyboard""]",446.29,{},61738,1,Africa +2024-03-16,27866,9953,"[""Tablet"", ""Laptop"", ""Charger""]",4873.98,"{"""": ""15%""}",17484,0,Africa +2023-03-08,27867,8953,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3524.13,{},285074,1,North America +2023-03-15,27868,6566,"[""Charger""]",2122.59,{},61992,1,South America +2023-03-01,27869,4535,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",651.05,"{""loyalty"": ""9%""}",43511,0,Asia +2023-03-06,27870,1407,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",574.72,{},121847,0,Europe +2024-04-30,27871,1627,"[""Laptop"", ""Tablet""]",3087.62,"{""loyalty"": ""21%""}",140272,1,North America +2023-01-28,27872,9901,"[""Monitor"", ""Phone"", ""Headphones""]",1438.82,"{""loyalty"": ""24%""}",150837,1,Asia +2024-12-08,27873,7036,"[""Laptop"", ""Charger"", ""Monitor""]",2582.45,{},52871,0,North America +2023-01-25,27874,7235,"[""Monitor"", ""Headphones""]",1422.23,{},105194,1,Asia +2024-02-24,27875,7132,"[""Headphones""]",3941.07,{},129442,0,Asia +2024-07-07,27876,1700,"[""Headphones"", ""Phone"", ""Monitor""]",483.81,{},100723,1,North America +2024-03-26,27877,605,"[""Keyboard"", ""Tablet""]",3276.85,{},214001,0,North America +2023-11-08,27878,4014,"[""Keyboard""]",4292.17,"{"""": ""22%""}",50493,1,Europe +2023-07-01,27879,9787,"[""Laptop""]",2792.04,"{""seasonal"": ""6%""}",265950,1,North America +2024-09-22,27880,3231,"[""Charger"", ""Tablet""]",3333.26,{},46905,1,Europe +2023-07-11,27881,8670,"[""Wireless Mouse"", ""Monitor""]",4236.19,"{"""": ""21%""}",216432,1,Europe +2024-01-27,27882,5894,"[""Monitor"", ""Tablet""]",3287.71,{},220495,1,South America +2023-01-29,27883,8872,"[""Phone"", ""Wireless Mouse""]",1211.8,"{""promo"": ""15%""}",126483,1,South America +2024-11-07,27884,5821,"[""Tablet""]",2111.36,{},202238,0,Africa +2023-06-18,27885,8261,"[""Phone""]",1221.79,"{""loyalty"": ""17%""}",262841,0,Africa +2023-09-17,27886,868,"[""Monitor""]",4530.33,{},28963,0,North America +2023-09-06,27887,305,"[""Monitor"", ""Phone""]",2090.81,"{""seasonal"": ""15%""}",121651,0,South America +2024-01-23,27888,6287,"[""Tablet"", ""Laptop""]",2273.39,"{"""": ""8%""}",232408,0,North America +2023-04-01,27889,3709,"[""Keyboard"", ""Laptop""]",1376.67,{},175852,0,Africa +2024-04-08,27890,557,"[""Tablet""]",2010.37,"{"""": ""22%""}",34809,0,North America +2023-08-11,27891,4282,"[""Laptop""]",3931.92,{},18378,0,Europe +2023-01-25,27892,7972,"[""Headphones""]",3621.79,"{""loyalty"": ""28%""}",187482,0,North America +2024-09-10,27893,162,"[""Wireless Mouse"", ""Monitor""]",1518.67,"{""promo"": ""8%""}",280012,0,North America +2024-05-30,27894,270,"[""Phone""]",2708.78,"{""seasonal"": ""7%""}",255047,1,Asia +2023-01-15,27895,5642,"[""Laptop"", ""Headphones""]",4887.92,"{""seasonal"": ""13%""}",256789,1,North America +2023-10-24,27896,9568,"[""Headphones"", ""Keyboard""]",511.24,"{""promo"": ""21%""}",218488,1,Asia +2024-04-29,27897,7002,"[""Headphones"", ""Tablet"", ""Monitor""]",4389.94,"{"""": ""21%""}",25293,0,Europe +2024-07-21,27898,5599,"[""Laptop""]",4916.71,{},274721,0,South America +2023-02-21,27899,5331,"[""Charger""]",4752.01,"{""loyalty"": ""8%""}",47977,0,Europe +2023-02-28,27900,51,"[""Wireless Mouse""]",4793.45,{},230734,1,Asia +2024-04-16,27901,6020,"[""Tablet"", ""Headphones"", ""Laptop""]",2503.73,{},202601,1,Asia +2024-05-25,27902,2705,"[""Charger""]",1836.27,"{""loyalty"": ""9%""}",168941,1,North America +2023-01-05,27903,1265,"[""Charger"", ""Phone""]",1842.15,{},16528,1,North America +2023-06-30,27904,2703,"[""Keyboard"", ""Laptop"", ""Phone""]",2894.2,"{""loyalty"": ""13%""}",28458,0,Asia +2023-12-08,27905,7997,"[""Keyboard"", ""Monitor"", ""Phone""]",1923.38,"{"""": ""11%""}",202228,0,Africa +2024-07-29,27906,6400,"[""Monitor""]",1971.06,"{""loyalty"": ""7%""}",187316,1,Europe +2024-03-16,27907,3866,"[""Charger"", ""Keyboard""]",1426.16,"{""promo"": ""6%""}",200148,1,Asia +2024-07-12,27908,8696,"[""Charger"", ""Monitor""]",1986.77,{},140939,1,North America +2023-05-14,27909,1539,"[""Headphones"", ""Charger""]",1055.59,{},1995,1,North America +2024-11-23,27910,5215,"[""Laptop"", ""Monitor""]",791.4,{},137809,0,South America +2023-12-02,27911,1602,"[""Phone""]",1249.11,{},57077,1,South America +2023-08-14,27912,4219,"[""Charger""]",3422.17,{},206996,1,South America +2024-03-07,27913,2428,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3831.11,{},248206,1,South America +2024-08-18,27914,6793,"[""Tablet""]",301.99,"{""loyalty"": ""19%""}",7431,1,Africa +2024-01-20,27915,656,"[""Laptop"", ""Tablet"", ""Headphones""]",3312.31,"{"""": ""15%""}",144433,0,Asia +2023-11-19,27916,573,"[""Wireless Mouse"", ""Headphones""]",1932.27,"{"""": ""27%""}",167939,0,Europe +2024-12-27,27917,6882,"[""Keyboard"", ""Monitor"", ""Phone""]",3622.41,{},262863,1,North America +2024-09-08,27918,1895,"[""Tablet"", ""Phone""]",4934.15,{},210422,0,Africa +2023-06-26,27919,8067,"[""Tablet""]",594.23,"{""promo"": ""13%""}",47452,1,Asia +2023-02-17,27920,4685,"[""Phone"", ""Laptop""]",534.91,{},15546,1,Europe +2024-05-30,27921,4475,"[""Keyboard"", ""Tablet""]",416.17,"{""seasonal"": ""28%""}",275519,1,North America +2023-03-21,27922,3474,"[""Laptop"", ""Monitor"", ""Charger""]",619.56,"{""promo"": ""17%""}",295712,0,South America +2023-01-29,27923,917,"[""Charger""]",3021.88,{},92150,1,Africa +2024-03-28,27924,172,"[""Laptop"", ""Charger""]",590.12,{},72518,1,Africa +2024-09-12,27925,7697,"[""Headphones"", ""Tablet""]",834.64,"{""promo"": ""28%""}",150202,1,South America +2024-09-30,27926,1615,"[""Tablet""]",3604.73,"{""seasonal"": ""9%""}",264495,0,South America +2023-10-05,27927,461,"[""Tablet""]",3763.08,{},234913,0,Africa +2024-11-27,27928,7971,"[""Monitor"", ""Laptop"", ""Phone""]",4142.12,{},172542,0,North America +2024-04-25,27929,3785,"[""Keyboard"", ""Tablet"", ""Monitor""]",1171.75,"{""loyalty"": ""7%""}",253920,1,North America +2024-12-11,27930,3865,"[""Wireless Mouse"", ""Tablet""]",185.88,{},290485,1,Europe +2023-06-21,27931,4835,"[""Keyboard""]",4529.71,"{""seasonal"": ""21%""}",78422,1,Europe +2023-06-25,27932,3992,"[""Tablet""]",3037.78,{},196125,0,North America +2023-01-27,27933,7225,"[""Charger"", ""Wireless Mouse""]",4996.62,"{""seasonal"": ""21%""}",231223,0,Europe +2024-10-05,27934,3688,"[""Monitor"", ""Phone"", ""Headphones""]",3713.55,"{""loyalty"": ""27%""}",156622,1,Africa +2023-01-31,27935,8983,"[""Charger""]",4834.0,"{"""": ""21%""}",259276,0,Europe +2023-11-12,27936,9663,"[""Laptop"", ""Monitor""]",1692.69,"{"""": ""19%""}",6381,0,Europe +2023-01-11,27937,2935,"[""Charger""]",483.97,{},171622,0,Europe +2024-04-29,27938,9941,"[""Monitor"", ""Laptop""]",2922.75,"{""promo"": ""14%""}",199030,0,Europe +2024-02-05,27939,1497,"[""Headphones"", ""Monitor"", ""Phone""]",2817.64,{},130783,1,Africa +2024-03-08,27940,6650,"[""Laptop"", ""Headphones""]",649.15,{},248877,0,Asia +2023-11-29,27941,9976,"[""Charger""]",1625.79,"{""loyalty"": ""28%""}",13824,1,Africa +2023-11-09,27942,2743,"[""Charger""]",2754.52,{},163931,0,Europe +2024-04-08,27943,974,"[""Keyboard"", ""Monitor""]",4368.88,{},74234,1,Europe +2024-03-01,27944,9843,"[""Tablet"", ""Laptop""]",3086.02,"{""seasonal"": ""15%""}",53804,0,Africa +2024-02-29,27945,2916,"[""Monitor"", ""Laptop""]",4428.27,"{""loyalty"": ""12%""}",236933,0,North America +2023-06-24,27946,4936,"[""Charger"", ""Tablet"", ""Headphones""]",1982.49,{},54965,1,North America +2024-04-16,27947,7637,"[""Charger"", ""Keyboard"", ""Monitor""]",3589.05,{},106122,1,Africa +2023-03-31,27948,2315,"[""Keyboard"", ""Wireless Mouse""]",3381.69,"{""seasonal"": ""26%""}",215771,0,Asia +2024-10-17,27949,2761,"[""Phone""]",1295.69,"{""loyalty"": ""17%""}",89585,1,South America +2024-06-12,27950,7195,"[""Tablet""]",2032.69,{},128367,1,Asia +2024-12-01,27951,1585,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",474.79,"{""loyalty"": ""10%""}",110425,0,South America +2023-02-25,27952,8252,"[""Headphones"", ""Charger""]",1420.24,{},222909,0,Europe +2024-06-07,27953,9631,"[""Monitor"", ""Charger""]",904.58,{},47338,1,North America +2024-10-10,27954,3421,"[""Phone"", ""Keyboard""]",3426.35,"{""loyalty"": ""20%""}",106008,1,South America +2023-12-05,27955,1241,"[""Tablet"", ""Wireless Mouse""]",2901.69,{},218915,1,Asia +2024-09-26,27956,8130,"[""Laptop"", ""Phone"", ""Tablet""]",655.55,"{"""": ""17%""}",278630,0,Europe +2023-02-17,27957,821,"[""Charger"", ""Tablet""]",311.18,{},141045,0,Europe +2023-09-01,27958,8946,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",795.38,"{""seasonal"": ""7%""}",49408,0,North America +2023-12-05,27959,5488,"[""Tablet"", ""Headphones""]",4949.89,"{""seasonal"": ""8%""}",260865,1,Asia +2023-05-29,27960,5031,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",395.44,"{"""": ""7%""}",144021,0,Asia +2024-06-10,27961,5909,"[""Wireless Mouse"", ""Headphones""]",1232.75,{},121398,0,North America +2023-05-24,27962,6896,"[""Phone"", ""Charger""]",2700.66,{},40446,0,Europe +2024-06-04,27963,6992,"[""Keyboard"", ""Monitor""]",2586.36,{},263081,0,Africa +2023-05-19,27964,1697,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",641.24,{},146384,1,Asia +2024-06-28,27965,7456,"[""Monitor""]",2672.45,{},61205,0,Africa +2024-08-16,27966,3508,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4289.32,{},42653,1,North America +2023-09-10,27967,4714,"[""Monitor"", ""Wireless Mouse""]",1223.7,"{""loyalty"": ""29%""}",96637,0,North America +2023-11-23,27968,8687,"[""Phone"", ""Monitor"", ""Headphones""]",4221.86,"{""seasonal"": ""25%""}",164812,1,Europe +2024-10-10,27969,1938,"[""Tablet""]",1685.14,"{""seasonal"": ""6%""}",3389,0,South America +2024-06-10,27970,6467,"[""Headphones""]",2736.83,"{"""": ""6%""}",283611,1,Europe +2023-04-13,27971,4343,"[""Charger"", ""Phone""]",4204.58,{},219254,1,North America +2023-01-22,27972,334,"[""Phone"", ""Keyboard"", ""Laptop""]",3260.99,"{""seasonal"": ""29%""}",1836,0,Europe +2023-04-11,27973,4585,"[""Keyboard"", ""Phone"", ""Laptop""]",206.45,{},4775,1,Asia +2023-05-12,27974,5795,"[""Laptop"", ""Phone"", ""Tablet""]",743.2,{},167829,0,Africa +2023-02-25,27975,3486,"[""Tablet"", ""Laptop"", ""Keyboard""]",4884.22,"{""loyalty"": ""7%""}",160271,0,South America +2023-01-23,27976,9914,"[""Charger""]",4856.21,{},58381,1,Europe +2024-04-07,27977,5915,"[""Tablet"", ""Laptop"", ""Charger""]",3748.97,{},226507,1,Europe +2024-01-19,27978,7752,"[""Wireless Mouse"", ""Keyboard""]",464.37,{},76948,1,Africa +2024-07-08,27979,1801,"[""Phone""]",1964.26,"{"""": ""8%""}",42674,0,North America +2023-02-13,27980,3302,"[""Phone""]",1073.94,{},163769,1,South America +2024-10-19,27981,6975,"[""Monitor""]",2905.26,{},95940,1,North America +2023-07-14,27982,83,"[""Tablet"", ""Laptop""]",2420.7,"{"""": ""28%""}",74936,0,Africa +2024-10-16,27983,7973,"[""Laptop""]",3582.07,"{""loyalty"": ""6%""}",186633,1,Africa +2023-11-10,27984,4274,"[""Tablet"", ""Monitor"", ""Laptop""]",2262.66,"{""promo"": ""20%""}",181695,1,Europe +2023-09-04,27985,9609,"[""Tablet""]",4470.43,"{"""": ""28%""}",281245,0,Asia +2024-07-14,27986,7501,"[""Tablet""]",591.34,{},226161,1,Asia +2024-12-10,27987,7428,"[""Phone""]",3375.05,{},26369,0,Africa +2023-02-28,27988,2879,"[""Headphones"", ""Tablet""]",1008.4,"{"""": ""19%""}",129325,0,Africa +2023-06-01,27989,7032,"[""Charger"", ""Headphones""]",1858.2,"{""loyalty"": ""13%""}",285448,1,Europe +2023-05-02,27990,6656,"[""Laptop"", ""Tablet""]",64.43,{},232799,1,Africa +2023-04-02,27991,1762,"[""Charger""]",555.88,"{""loyalty"": ""28%""}",158982,0,Europe +2023-02-03,27992,8610,"[""Keyboard"", ""Monitor""]",2778.19,{},170733,0,North America +2023-11-29,27993,9472,"[""Keyboard""]",3319.95,{},91149,1,North America +2023-01-26,27994,4511,"[""Charger"", ""Phone"", ""Keyboard""]",424.65,"{""seasonal"": ""5%""}",161356,1,Asia +2023-08-07,27995,767,"[""Headphones"", ""Wireless Mouse""]",2963.37,{},206015,1,South America +2024-01-21,27996,7200,"[""Headphones"", ""Monitor"", ""Charger""]",2419.91,"{""promo"": ""22%""}",283217,0,South America +2023-01-18,27997,5035,"[""Headphones"", ""Monitor""]",3540.59,"{"""": ""14%""}",208015,1,Asia +2024-05-09,27998,3313,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4873.56,"{""seasonal"": ""23%""}",276308,0,Africa +2024-12-15,27999,6349,"[""Laptop"", ""Charger"", ""Headphones""]",4704.04,"{""loyalty"": ""24%""}",256992,0,North America +2023-10-19,28000,4494,"[""Laptop""]",2929.86,"{""seasonal"": ""5%""}",227817,1,Africa +2024-08-28,28001,328,"[""Laptop"", ""Wireless Mouse""]",457.01,"{""seasonal"": ""8%""}",298163,0,Africa +2023-05-20,28002,5061,"[""Laptop"", ""Charger""]",1233.01,{},117548,1,Europe +2024-04-14,28003,8602,"[""Phone""]",2412.4,"{""seasonal"": ""5%""}",76375,1,North America +2024-08-04,28004,1845,"[""Monitor"", ""Laptop"", ""Headphones""]",4941.84,"{"""": ""11%""}",123479,0,Europe +2023-09-04,28005,2488,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3948.31,{},174328,1,North America +2023-12-26,28006,4352,"[""Wireless Mouse"", ""Phone""]",1674.2,{},207973,1,Africa +2024-08-13,28007,8708,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",69.73,{},209875,0,Europe +2024-04-09,28008,1731,"[""Monitor""]",4260.68,"{""loyalty"": ""27%""}",286508,0,North America +2024-06-27,28009,8398,"[""Monitor"", ""Laptop""]",4419.66,"{""loyalty"": ""21%""}",153820,0,North America +2024-01-31,28010,7364,"[""Tablet"", ""Phone""]",3273.89,{},48782,0,North America +2024-06-20,28011,1019,"[""Keyboard"", ""Phone"", ""Headphones""]",3023.29,{},180957,0,North America +2024-04-15,28012,3267,"[""Headphones"", ""Monitor""]",4240.41,{},286815,1,Asia +2023-01-07,28013,6378,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2960.11,"{""loyalty"": ""11%""}",196040,1,Asia +2024-12-13,28014,5867,"[""Tablet""]",3865.12,{},1116,0,North America +2024-01-29,28015,618,"[""Phone""]",4869.46,"{""seasonal"": ""20%""}",242909,0,North America +2024-04-24,28016,2206,"[""Keyboard"", ""Charger""]",3738.2,"{""seasonal"": ""11%""}",199665,1,Europe +2024-06-08,28017,3030,"[""Charger"", ""Laptop"", ""Phone""]",3204.04,"{"""": ""17%""}",171262,0,South America +2023-06-23,28018,5395,"[""Tablet"", ""Phone"", ""Laptop""]",1466.35,{},73306,0,Africa +2024-05-29,28019,458,"[""Monitor""]",3048.98,"{"""": ""16%""}",225549,0,Europe +2024-02-19,28020,9899,"[""Monitor""]",3919.88,{},226764,0,South America +2023-04-19,28021,2352,"[""Tablet"", ""Wireless Mouse""]",4799.6,{},203601,1,North America +2024-06-25,28022,3662,"[""Phone""]",3750.4,"{""loyalty"": ""16%""}",165090,1,Asia +2023-05-09,28023,2927,"[""Tablet"", ""Wireless Mouse""]",2619.73,"{""seasonal"": ""23%""}",189651,1,Europe +2024-06-25,28024,378,"[""Keyboard"", ""Tablet""]",2571.82,"{""promo"": ""21%""}",74592,0,Europe +2024-02-29,28025,2682,"[""Tablet"", ""Charger""]",2227.74,{},268676,0,North America +2024-05-29,28026,6747,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",529.51,"{""loyalty"": ""20%""}",203149,1,Africa +2024-08-11,28027,3039,"[""Keyboard""]",4757.93,"{""seasonal"": ""18%""}",178698,1,Africa +2024-02-17,28028,3452,"[""Wireless Mouse"", ""Laptop""]",982.75,"{""promo"": ""30%""}",295932,0,Europe +2023-02-27,28029,7321,"[""Keyboard""]",2185.35,{},207014,0,Asia +2024-03-05,28030,1768,"[""Laptop""]",3529.39,"{""loyalty"": ""27%""}",97121,1,Africa +2024-05-10,28031,5981,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2841.99,{},4469,0,Africa +2024-03-07,28032,5472,"[""Monitor""]",1189.45,"{""promo"": ""24%""}",77557,1,Africa +2024-12-13,28033,5467,"[""Wireless Mouse"", ""Headphones""]",1225.65,"{"""": ""23%""}",11011,1,Asia +2024-01-05,28034,4799,"[""Phone"", ""Wireless Mouse""]",4723.4,{},179030,1,Asia +2023-11-27,28035,8115,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",325.19,"{""loyalty"": ""21%""}",174675,1,North America +2024-11-26,28036,5627,"[""Laptop"", ""Charger"", ""Headphones""]",4519.77,"{""seasonal"": ""13%""}",216216,0,South America +2023-06-17,28037,1359,"[""Phone"", ""Headphones""]",844.5,"{""loyalty"": ""9%""}",242389,0,Europe +2024-03-31,28038,8773,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",697.05,{},133020,1,North America +2024-07-31,28039,7999,"[""Wireless Mouse""]",2937.26,{},172111,0,Asia +2024-11-29,28040,2070,"[""Tablet"", ""Laptop"", ""Keyboard""]",1917.86,{},82198,0,Europe +2023-02-23,28041,4129,"[""Laptop"", ""Tablet""]",4236.99,"{""promo"": ""29%""}",163234,1,Asia +2024-11-06,28042,3269,"[""Tablet""]",117.75,{},80964,1,South America +2023-11-02,28043,261,"[""Charger"", ""Headphones""]",1465.07,{},76943,0,Europe +2024-02-14,28044,8199,"[""Phone"", ""Charger""]",4072.64,{},285444,1,Africa +2023-11-20,28045,8281,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3065.66,{},251557,1,South America +2024-05-03,28046,5503,"[""Laptop""]",3705.25,{},61013,1,Europe +2023-04-10,28047,122,"[""Charger""]",3175.77,{},73224,0,Asia +2023-09-13,28048,6604,"[""Phone""]",4898.43,"{""seasonal"": ""28%""}",173186,1,Asia +2023-10-27,28049,3988,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2017.92,"{""promo"": ""20%""}",168566,1,Europe +2023-07-31,28050,3178,"[""Keyboard""]",4618.82,"{"""": ""20%""}",221516,1,North America +2023-05-30,28051,4450,"[""Keyboard"", ""Tablet"", ""Monitor""]",2948.37,{},42692,1,Africa +2024-05-02,28052,6954,"[""Headphones"", ""Wireless Mouse""]",2282.23,"{""promo"": ""24%""}",124219,1,Europe +2023-01-11,28053,4554,"[""Monitor"", ""Phone""]",4486.92,{},135089,0,Asia +2024-07-30,28054,9617,"[""Laptop""]",3757.27,{},257891,0,Asia +2023-06-08,28055,2008,"[""Laptop""]",1460.0,{},105128,1,North America +2024-11-17,28056,2284,"[""Monitor""]",2242.25,"{""loyalty"": ""19%""}",170787,1,South America +2023-02-24,28057,7588,"[""Wireless Mouse"", ""Laptop""]",1124.92,"{"""": ""20%""}",233369,0,South America +2024-11-26,28058,5762,"[""Keyboard""]",4608.18,{},262127,1,Europe +2024-02-15,28059,5557,"[""Phone""]",2742.28,{},166647,1,South America +2023-06-12,28060,2149,"[""Charger""]",1559.94,{},14361,1,Asia +2023-12-01,28061,4010,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",792.59,"{""promo"": ""12%""}",148365,0,Africa +2023-05-25,28062,2235,"[""Charger"", ""Monitor"", ""Laptop""]",226.9,"{""loyalty"": ""5%""}",202263,0,North America +2024-03-16,28063,9413,"[""Keyboard"", ""Phone"", ""Monitor""]",2992.99,"{"""": ""28%""}",156943,0,North America +2023-01-02,28064,1984,"[""Phone""]",4433.84,"{""promo"": ""11%""}",160082,0,Asia +2023-12-05,28065,8925,"[""Monitor""]",1247.16,"{""loyalty"": ""16%""}",128995,0,North America +2023-06-28,28066,1969,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",873.42,"{""seasonal"": ""20%""}",29657,1,North America +2024-10-25,28067,9670,"[""Headphones"", ""Monitor"", ""Laptop""]",3406.66,{},223877,0,Asia +2024-09-09,28068,5770,"[""Tablet"", ""Headphones""]",3379.6,{},92516,0,Europe +2024-01-26,28069,3545,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4923.06,{},173216,0,Africa +2024-04-27,28070,137,"[""Wireless Mouse"", ""Tablet""]",4373.73,"{""promo"": ""28%""}",218169,1,Europe +2024-08-24,28071,6738,"[""Tablet""]",509.97,"{""promo"": ""13%""}",256376,1,Africa +2023-04-17,28072,9617,"[""Phone"", ""Charger"", ""Laptop""]",2138.9,{},35290,0,North America +2023-09-15,28073,6290,"[""Keyboard"", ""Laptop""]",2229.81,"{"""": ""26%""}",204286,1,Europe +2023-04-18,28074,8655,"[""Tablet""]",365.76,"{""promo"": ""5%""}",261549,0,Asia +2024-09-12,28075,8407,"[""Tablet"", ""Keyboard""]",451.16,{},78232,0,Asia +2023-02-09,28076,9573,"[""Laptop"", ""Monitor""]",2422.31,{},287373,1,Asia +2023-01-17,28077,2946,"[""Keyboard""]",819.54,"{""promo"": ""6%""}",235619,0,Europe +2024-07-30,28078,2311,"[""Laptop"", ""Monitor""]",713.88,{},44685,0,North America +2023-01-16,28079,5021,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1986.53,"{""seasonal"": ""16%""}",180326,0,North America +2023-05-25,28080,4527,"[""Charger"", ""Tablet""]",4151.97,{},32369,0,South America +2023-06-23,28081,1613,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4371.79,"{""promo"": ""25%""}",259124,1,Africa +2024-02-20,28082,7394,"[""Charger"", ""Phone""]",4358.72,"{""loyalty"": ""11%""}",124146,1,Europe +2024-03-05,28083,5903,"[""Charger"", ""Keyboard"", ""Tablet""]",3943.87,"{""promo"": ""26%""}",183307,0,North America +2024-09-20,28084,4698,"[""Monitor""]",3052.4,{},94432,0,North America +2023-10-10,28085,9055,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4312.03,{},279573,0,North America +2024-04-13,28086,9916,"[""Laptop"", ""Headphones""]",1227.33,{},126740,1,North America +2023-05-13,28087,981,"[""Tablet"", ""Laptop"", ""Headphones""]",2189.49,{},284284,0,Africa +2023-07-30,28088,9964,"[""Wireless Mouse""]",2882.65,{},145380,1,Europe +2024-09-01,28089,3069,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1604.78,{},156263,0,North America +2023-06-15,28090,4611,"[""Headphones""]",4361.52,"{""loyalty"": ""29%""}",81977,1,Asia +2024-05-01,28091,3479,"[""Keyboard"", ""Phone"", ""Monitor""]",4135.95,"{"""": ""18%""}",193902,1,Asia +2023-07-13,28092,9891,"[""Wireless Mouse""]",1069.06,{},46013,0,Asia +2023-10-28,28093,3303,"[""Monitor"", ""Laptop""]",2645.26,{},196496,1,South America +2024-06-18,28094,9767,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2569.71,"{""seasonal"": ""7%""}",225950,0,Europe +2023-06-27,28095,7698,"[""Keyboard""]",1818.49,{},87195,1,South America +2024-11-18,28096,2658,"[""Keyboard"", ""Charger""]",385.09,{},269798,0,South America +2023-10-28,28097,6900,"[""Tablet""]",2176.79,"{""seasonal"": ""20%""}",267643,1,Africa +2023-06-04,28098,3888,"[""Charger"", ""Tablet""]",312.2,{},278427,0,North America +2024-12-11,28099,8092,"[""Keyboard"", ""Charger""]",2301.77,"{"""": ""28%""}",107207,0,Africa +2023-01-01,28100,2863,"[""Charger"", ""Headphones"", ""Tablet""]",1536.65,{},223108,1,Europe +2023-03-09,28101,6596,"[""Headphones""]",1105.69,{},56905,0,South America +2024-04-04,28102,9835,"[""Phone"", ""Laptop"", ""Headphones""]",323.63,{},54640,1,North America +2023-04-04,28103,7254,"[""Monitor"", ""Headphones""]",4053.56,"{""promo"": ""20%""}",139531,1,Asia +2023-02-01,28104,3168,"[""Tablet""]",4648.42,"{"""": ""22%""}",299393,0,Asia +2023-05-13,28105,3369,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1335.27,"{""promo"": ""6%""}",286543,1,Europe +2023-06-07,28106,7047,"[""Keyboard"", ""Phone"", ""Laptop""]",4895.87,"{""promo"": ""18%""}",121879,0,Asia +2023-02-03,28107,8434,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2482.6,{},159716,0,Asia +2023-11-08,28108,6453,"[""Monitor""]",1531.88,"{""loyalty"": ""19%""}",74497,1,Asia +2024-08-26,28109,3478,"[""Tablet"", ""Headphones""]",3508.31,"{""seasonal"": ""8%""}",63622,0,Europe +2023-09-05,28110,5630,"[""Monitor"", ""Keyboard""]",4091.67,"{""seasonal"": ""19%""}",194487,1,North America +2023-01-09,28111,3701,"[""Monitor"", ""Keyboard"", ""Headphones""]",2788.68,{},9383,0,Africa +2024-04-11,28112,6711,"[""Laptop"", ""Charger"", ""Headphones""]",505.11,"{""promo"": ""30%""}",151143,1,Africa +2024-04-24,28113,1696,"[""Laptop"", ""Tablet"", ""Monitor""]",3288.09,"{""seasonal"": ""22%""}",37575,0,South America +2023-04-16,28114,7348,"[""Headphones"", ""Monitor""]",3360.07,{},40325,0,Asia +2023-03-11,28115,7046,"[""Keyboard"", ""Headphones""]",1662.58,"{""promo"": ""11%""}",43322,1,South America +2023-03-06,28116,5346,"[""Monitor"", ""Laptop"", ""Keyboard""]",4013.52,{},189175,0,Asia +2024-05-25,28117,3581,"[""Keyboard"", ""Headphones""]",964.09,"{"""": ""30%""}",132211,1,Asia +2024-09-02,28118,2162,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",582.42,"{""promo"": ""22%""}",210151,1,Africa +2024-05-12,28119,531,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3555.57,{},103900,1,Europe +2024-11-01,28120,4822,"[""Charger"", ""Headphones""]",1224.45,{},194220,0,South America +2023-09-24,28121,8655,"[""Charger"", ""Laptop""]",4522.71,{},129372,1,Asia +2023-03-31,28122,8606,"[""Phone"", ""Charger""]",3945.69,"{""promo"": ""11%""}",90098,1,South America +2023-10-21,28123,551,"[""Tablet"", ""Charger"", ""Laptop""]",2802.76,{},8285,0,Africa +2023-04-18,28124,7419,"[""Wireless Mouse"", ""Keyboard""]",2228.55,{},143513,0,Africa +2023-11-11,28125,9558,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4966.03,"{""seasonal"": ""13%""}",70656,0,Europe +2023-10-12,28126,171,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1495.59,{},6989,0,Asia +2024-10-18,28127,5400,"[""Laptop"", ""Headphones""]",3511.18,"{""promo"": ""16%""}",226499,1,Asia +2024-09-10,28128,2686,"[""Charger"", ""Keyboard""]",1611.1,{},83425,0,Asia +2023-01-11,28129,8874,"[""Laptop""]",1263.99,"{""promo"": ""27%""}",44724,1,North America +2024-11-14,28130,7456,"[""Wireless Mouse""]",4428.51,{},226645,1,Asia +2024-09-04,28131,9628,"[""Tablet""]",623.18,"{""promo"": ""22%""}",71041,0,Asia +2023-05-05,28132,8273,"[""Wireless Mouse""]",2245.92,"{""promo"": ""28%""}",219456,1,South America +2023-10-17,28133,6754,"[""Keyboard""]",4072.1,{},287182,1,Africa +2023-10-25,28134,934,"[""Wireless Mouse"", ""Headphones""]",3761.47,"{""loyalty"": ""26%""}",232060,1,Europe +2024-09-30,28135,4205,"[""Tablet"", ""Laptop"", ""Headphones""]",3520.84,"{""promo"": ""18%""}",42629,0,Asia +2024-09-18,28136,3286,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3055.49,"{""promo"": ""20%""}",221573,0,South America +2024-10-01,28137,882,"[""Keyboard"", ""Tablet"", ""Monitor""]",4595.14,"{""promo"": ""29%""}",27333,0,Asia +2023-01-07,28138,9268,"[""Monitor"", ""Charger"", ""Tablet""]",3771.09,"{""seasonal"": ""14%""}",245005,0,Asia +2024-10-16,28139,7613,"[""Monitor"", ""Charger""]",2683.52,{},141001,1,Asia +2023-08-25,28140,4816,"[""Phone"", ""Monitor"", ""Charger""]",2710.73,{},158747,0,Asia +2024-05-12,28141,9601,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1126.58,{},276201,1,Europe +2024-03-15,28142,5038,"[""Wireless Mouse"", ""Tablet""]",1035.8,"{""seasonal"": ""14%""}",299012,1,Asia +2023-07-09,28143,5608,"[""Tablet"", ""Monitor"", ""Laptop""]",4945.29,"{""loyalty"": ""20%""}",91400,0,Asia +2023-11-10,28144,1793,"[""Laptop"", ""Headphones""]",2336.99,"{""promo"": ""19%""}",185812,1,South America +2023-06-07,28145,9377,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1821.18,"{""promo"": ""21%""}",265861,0,South America +2024-10-20,28146,7208,"[""Keyboard""]",2950.5,{},290816,1,North America +2024-07-08,28147,6927,"[""Tablet"", ""Phone""]",1482.2,{},91812,0,North America +2024-12-29,28148,7989,"[""Tablet""]",1617.57,{},135758,1,Africa +2023-04-22,28149,7953,"[""Monitor"", ""Headphones"", ""Charger""]",2432.22,"{""loyalty"": ""21%""}",93641,1,Asia +2024-09-30,28150,8920,"[""Monitor"", ""Tablet""]",3312.84,{},65109,1,South America +2023-08-19,28151,4693,"[""Tablet""]",4640.04,{},293456,1,North America +2024-10-28,28152,4812,"[""Monitor""]",831.07,"{""promo"": ""22%""}",264623,1,North America +2023-09-01,28153,7393,"[""Headphones"", ""Phone"", ""Tablet""]",1723.54,{},79077,1,Asia +2024-10-30,28154,4560,"[""Wireless Mouse""]",1293.07,{},40376,1,North America +2024-04-20,28155,3957,"[""Phone"", ""Headphones"", ""Monitor""]",4259.67,"{""seasonal"": ""5%""}",118644,0,Europe +2023-03-13,28156,6355,"[""Tablet""]",2805.54,{},55040,0,North America +2024-11-21,28157,2132,"[""Tablet""]",1740.85,{},53075,0,North America +2023-09-04,28158,7044,"[""Charger"", ""Monitor"", ""Headphones""]",1077.47,"{"""": ""20%""}",199274,0,North America +2023-11-08,28159,3149,"[""Phone""]",4182.86,{},298813,0,Europe +2023-11-08,28160,4087,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3689.26,"{""seasonal"": ""12%""}",189352,1,Africa +2023-09-07,28161,2055,"[""Headphones""]",985.29,"{"""": ""15%""}",284696,1,Asia +2024-02-14,28162,3123,"[""Tablet""]",3105.62,"{""promo"": ""15%""}",162934,0,Asia +2024-02-09,28163,3776,"[""Phone""]",3873.63,"{"""": ""12%""}",214342,1,South America +2024-09-08,28164,587,"[""Tablet"", ""Phone""]",774.03,{},154973,1,Asia +2024-07-02,28165,5938,"[""Monitor""]",1625.53,{},76090,1,Asia +2023-01-22,28166,219,"[""Wireless Mouse"", ""Headphones""]",1958.23,{},258734,1,Africa +2024-02-19,28167,4971,"[""Monitor"", ""Charger""]",420.06,{},88780,0,Asia +2023-08-12,28168,9621,"[""Headphones"", ""Wireless Mouse""]",4884.59,"{""seasonal"": ""25%""}",21283,1,South America +2024-11-15,28169,9003,"[""Phone"", ""Laptop""]",962.19,"{""loyalty"": ""21%""}",72192,1,South America +2023-07-16,28170,2654,"[""Keyboard"", ""Monitor"", ""Laptop""]",1659.28,"{""loyalty"": ""21%""}",15929,0,Africa +2024-05-13,28171,4114,"[""Phone"", ""Charger""]",344.05,{},42376,1,South America +2023-11-20,28172,3603,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3566.57,{},269346,0,North America +2023-06-20,28173,5037,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4570.2,{},88195,0,North America +2024-06-24,28174,370,"[""Keyboard""]",4810.94,{},60931,1,North America +2024-11-15,28175,7946,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1147.07,{},164090,0,Africa +2023-03-27,28176,5500,"[""Laptop""]",4000.26,"{""loyalty"": ""21%""}",156474,0,Asia +2024-10-08,28177,4117,"[""Phone""]",413.03,{},210510,1,Africa +2024-04-30,28178,2209,"[""Headphones""]",889.43,{},74558,1,Asia +2024-02-04,28179,7769,"[""Wireless Mouse"", ""Phone""]",3695.43,{},114981,1,Asia +2023-05-22,28180,7712,"[""Tablet"", ""Headphones""]",4064.46,{},170168,0,North America +2024-10-26,28181,7307,"[""Phone""]",3791.64,{},244234,1,South America +2024-03-12,28182,7387,"[""Tablet""]",4209.18,"{"""": ""25%""}",266522,1,Europe +2024-12-03,28183,4747,"[""Charger""]",2773.51,"{""promo"": ""29%""}",232118,0,South America +2023-11-14,28184,9912,"[""Keyboard"", ""Charger""]",4116.94,{},145033,1,Asia +2024-06-19,28185,6542,"[""Tablet"", ""Headphones""]",1015.44,{},270553,1,Europe +2024-03-16,28186,2480,"[""Charger""]",3699.11,"{"""": ""29%""}",99483,1,South America +2024-12-28,28187,8886,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",647.74,"{""seasonal"": ""16%""}",157309,1,Europe +2023-11-10,28188,2542,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1373.19,{},235762,0,Asia +2024-02-14,28189,6114,"[""Wireless Mouse"", ""Phone""]",1549.32,{},47327,1,North America +2023-11-13,28190,7398,"[""Headphones"", ""Monitor""]",1944.94,{},209802,0,North America +2023-09-26,28191,4709,"[""Headphones""]",2675.3,{},111812,1,Africa +2024-03-02,28192,2585,"[""Monitor""]",4646.41,"{""seasonal"": ""27%""}",239398,0,Africa +2024-11-24,28193,6553,"[""Monitor"", ""Keyboard""]",3732.16,"{""loyalty"": ""19%""}",265607,0,South America +2024-10-29,28194,49,"[""Headphones""]",853.36,{},22462,0,North America +2023-07-23,28195,2201,"[""Monitor"", ""Laptop""]",3766.36,"{"""": ""6%""}",42795,0,South America +2024-07-28,28196,5759,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2897.25,"{""loyalty"": ""14%""}",227811,1,South America +2024-12-04,28197,7607,"[""Laptop"", ""Tablet""]",3823.6,{},228388,1,Europe +2023-01-11,28198,212,"[""Monitor"", ""Charger""]",2993.71,"{""loyalty"": ""12%""}",246341,1,Europe +2023-12-22,28199,2389,"[""Wireless Mouse"", ""Headphones""]",4753.35,{},270879,1,North America +2023-12-14,28200,8864,"[""Headphones"", ""Wireless Mouse""]",1702.81,"{""promo"": ""18%""}",235547,1,Africa +2024-07-17,28201,2370,"[""Tablet"", ""Phone""]",3991.12,"{"""": ""26%""}",83857,0,North America +2024-12-25,28202,177,"[""Charger"", ""Wireless Mouse""]",2301.08,"{""seasonal"": ""20%""}",116514,0,Asia +2024-05-05,28203,4500,"[""Phone"", ""Keyboard"", ""Laptop""]",1451.06,"{""promo"": ""28%""}",165350,1,Europe +2023-07-10,28204,7875,"[""Wireless Mouse""]",4530.57,"{""promo"": ""13%""}",53293,0,South America +2024-07-01,28205,9692,"[""Headphones"", ""Charger"", ""Phone""]",2301.27,{},157960,1,South America +2023-09-24,28206,666,"[""Tablet"", ""Headphones""]",4474.38,{},179711,1,South America +2023-12-31,28207,5669,"[""Keyboard"", ""Laptop""]",1209.2,{},74248,1,North America +2023-02-03,28208,2196,"[""Charger""]",3537.16,"{""promo"": ""25%""}",238234,0,Asia +2024-12-06,28209,5403,"[""Wireless Mouse"", ""Monitor""]",316.84,{},178882,0,North America +2024-02-07,28210,6158,"[""Charger"", ""Wireless Mouse""]",3917.97,{},54510,1,Asia +2024-03-22,28211,432,"[""Tablet"", ""Charger"", ""Monitor""]",2854.35,"{""loyalty"": ""8%""}",192786,1,North America +2024-10-02,28212,9306,"[""Headphones"", ""Laptop"", ""Monitor""]",3649.34,{},276158,0,South America +2024-09-27,28213,2800,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2907.45,{},74805,1,Africa +2023-01-04,28214,5215,"[""Charger"", ""Tablet"", ""Phone""]",4902.44,"{"""": ""24%""}",37355,0,Asia +2024-11-01,28215,2811,"[""Charger"", ""Keyboard"", ""Headphones""]",783.08,"{""seasonal"": ""10%""}",91647,1,North America +2024-05-14,28216,8047,"[""Laptop""]",812.27,"{"""": ""27%""}",38098,1,Asia +2023-05-25,28217,8379,"[""Headphones""]",3949.09,"{""loyalty"": ""25%""}",162136,0,North America +2024-11-25,28218,3204,"[""Phone""]",1018.73,"{""promo"": ""16%""}",115502,1,Asia +2023-03-15,28219,4782,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2714.91,"{""promo"": ""28%""}",278131,0,Europe +2024-10-27,28220,1719,"[""Wireless Mouse"", ""Keyboard""]",2295.34,{},299370,0,Europe +2024-11-16,28221,4488,"[""Keyboard"", ""Tablet"", ""Monitor""]",2072.1,"{""promo"": ""8%""}",209934,0,Europe +2024-12-21,28222,9050,"[""Tablet""]",2009.15,{},47592,1,Europe +2023-03-12,28223,4361,"[""Wireless Mouse"", ""Headphones""]",642.94,"{""seasonal"": ""23%""}",26725,1,North America +2023-08-07,28224,1346,"[""Monitor"", ""Wireless Mouse""]",3348.05,{},74177,0,South America +2024-11-25,28225,2615,"[""Keyboard""]",2629.37,{},262971,0,Africa +2024-07-11,28226,9738,"[""Keyboard""]",1540.21,"{""loyalty"": ""12%""}",58710,0,Asia +2023-07-09,28227,2378,"[""Phone""]",4314.96,"{"""": ""25%""}",80430,0,Asia +2024-03-19,28228,7317,"[""Headphones""]",2387.11,"{""promo"": ""30%""}",248107,1,North America +2024-02-20,28229,6339,"[""Phone"", ""Laptop""]",4802.45,"{""loyalty"": ""25%""}",92831,0,Asia +2023-12-25,28230,5654,"[""Monitor""]",3210.92,"{""loyalty"": ""7%""}",33286,1,South America +2024-01-16,28231,2914,"[""Laptop"", ""Monitor""]",4381.18,{},52860,0,Europe +2024-12-24,28232,9101,"[""Wireless Mouse""]",1409.58,"{"""": ""29%""}",280265,0,Africa +2023-07-07,28233,3439,"[""Monitor"", ""Laptop""]",1416.31,{},55245,1,Europe +2023-11-27,28234,4838,"[""Laptop"", ""Monitor""]",934.75,"{"""": ""29%""}",153400,1,Africa +2024-08-21,28235,654,"[""Monitor"", ""Tablet""]",1511.31,{},258333,0,South America +2024-04-18,28236,353,"[""Wireless Mouse""]",564.5,"{""promo"": ""24%""}",144866,0,Africa +2023-03-30,28237,2295,"[""Monitor""]",1252.67,"{""loyalty"": ""8%""}",251677,0,North America +2023-02-13,28238,316,"[""Headphones""]",1339.68,{},192374,1,North America +2023-02-08,28239,2231,"[""Phone"", ""Wireless Mouse""]",3567.19,{},155113,0,South America +2023-01-06,28240,4419,"[""Laptop""]",4218.42,"{""loyalty"": ""29%""}",118455,1,North America +2024-01-26,28241,711,"[""Phone"", ""Tablet""]",2358.49,{},120732,0,South America +2023-10-31,28242,3299,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3356.84,{},111105,0,North America +2023-06-27,28243,272,"[""Charger"", ""Headphones"", ""Keyboard""]",3403.44,"{"""": ""6%""}",188718,0,Africa +2024-10-10,28244,6014,"[""Keyboard""]",4864.95,"{""loyalty"": ""6%""}",70247,0,Africa +2024-09-03,28245,7601,"[""Keyboard"", ""Phone""]",4477.76,"{""seasonal"": ""30%""}",254615,0,Asia +2024-04-19,28246,6922,"[""Wireless Mouse""]",4074.72,{},142416,1,Asia +2024-08-28,28247,4349,"[""Wireless Mouse"", ""Monitor""]",2066.5,"{""loyalty"": ""26%""}",258298,1,Asia +2024-06-28,28248,580,"[""Phone"", ""Keyboard""]",3329.75,{},265659,0,Europe +2024-03-04,28249,3307,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4878.89,"{""seasonal"": ""19%""}",163303,1,Asia +2024-05-14,28250,7034,"[""Headphones"", ""Keyboard""]",2181.88,{},120980,0,South America +2024-03-07,28251,7292,"[""Phone"", ""Headphones"", ""Charger""]",3173.45,"{""promo"": ""21%""}",297845,1,Africa +2024-03-28,28252,7288,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3382.29,{},109712,0,Europe +2023-03-02,28253,2223,"[""Laptop"", ""Monitor"", ""Headphones""]",4086.92,"{""seasonal"": ""9%""}",96398,1,Africa +2024-07-02,28254,3410,"[""Phone"", ""Charger""]",3649.63,"{""seasonal"": ""12%""}",122383,1,Asia +2024-11-08,28255,5959,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1314.55,{},228215,1,Europe +2024-01-03,28256,1461,"[""Monitor""]",4983.91,"{""seasonal"": ""20%""}",175933,0,Europe +2024-02-22,28257,4613,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2709.28,{},76141,0,South America +2024-12-07,28258,1768,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1881.27,{},171907,0,North America +2024-11-30,28259,4216,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3556.08,"{""loyalty"": ""22%""}",127247,0,North America +2023-11-17,28260,7972,"[""Tablet""]",3813.49,{},287676,1,North America +2023-05-01,28261,4036,"[""Headphones"", ""Wireless Mouse""]",405.48,{},144200,0,South America +2023-09-19,28262,5175,"[""Wireless Mouse""]",3399.39,"{""promo"": ""11%""}",17480,1,Africa +2024-09-01,28263,578,"[""Monitor""]",1342.39,"{""seasonal"": ""23%""}",219027,0,South America +2024-12-02,28264,1823,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1112.66,"{""promo"": ""16%""}",97022,0,Europe +2024-04-26,28265,7638,"[""Monitor"", ""Headphones"", ""Phone""]",2246.75,"{""loyalty"": ""7%""}",297621,1,Asia +2024-09-04,28266,5834,"[""Keyboard"", ""Wireless Mouse""]",1341.4,{},144000,0,South America +2023-07-11,28267,5286,"[""Keyboard"", ""Phone""]",1725.08,"{"""": ""7%""}",175210,0,Africa +2023-10-14,28268,1028,"[""Monitor"", ""Tablet""]",2761.04,{},64789,0,North America +2024-06-03,28269,3518,"[""Monitor"", ""Tablet""]",725.61,{},145053,0,North America +2023-06-16,28270,9863,"[""Tablet"", ""Laptop""]",4409.94,{},169096,1,North America +2024-01-25,28271,7231,"[""Phone""]",1041.04,"{""loyalty"": ""20%""}",76713,0,North America +2023-03-08,28272,6425,"[""Laptop"", ""Charger"", ""Tablet""]",3796.64,"{""seasonal"": ""25%""}",100593,1,South America +2024-06-16,28273,1384,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1080.85,{},294602,0,Africa +2023-03-10,28274,1353,"[""Phone"", ""Monitor"", ""Tablet""]",1596.15,{},259711,1,Africa +2024-08-20,28275,8401,"[""Laptop"", ""Monitor"", ""Keyboard""]",3289.84,"{""seasonal"": ""18%""}",99694,1,Europe +2023-07-11,28276,2904,"[""Laptop""]",750.85,{},4363,1,North America +2024-03-27,28277,8543,"[""Tablet""]",1996.62,"{""promo"": ""30%""}",289994,0,North America +2023-11-30,28278,3535,"[""Monitor"", ""Headphones""]",2113.79,{},115636,1,North America +2023-04-01,28279,9426,"[""Headphones"", ""Monitor"", ""Phone""]",4931.02,{},136188,0,Europe +2024-09-04,28280,6360,"[""Phone"", ""Laptop"", ""Headphones""]",1109.46,{},253650,1,Africa +2024-06-24,28281,4995,"[""Headphones"", ""Keyboard""]",2768.45,{},90799,0,Africa +2024-08-10,28282,5575,"[""Keyboard""]",3587.35,{},44578,1,North America +2023-07-20,28283,2071,"[""Keyboard"", ""Headphones""]",295.96,"{""seasonal"": ""16%""}",97180,0,South America +2024-05-29,28284,6420,"[""Phone""]",4909.03,"{""loyalty"": ""23%""}",195553,0,North America +2024-10-26,28285,813,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1075.45,"{""seasonal"": ""18%""}",101201,1,Europe +2024-10-15,28286,8852,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4287.01,"{""promo"": ""22%""}",57560,1,Europe +2023-11-08,28287,6865,"[""Laptop""]",3482.82,{},171892,1,South America +2024-09-03,28288,598,"[""Laptop"", ""Wireless Mouse""]",2655.01,"{""loyalty"": ""16%""}",163796,0,Africa +2023-08-28,28289,983,"[""Charger"", ""Keyboard""]",2146.31,"{""seasonal"": ""25%""}",147181,0,South America +2024-04-01,28290,2142,"[""Monitor"", ""Wireless Mouse""]",1351.36,{},143727,1,Africa +2023-04-07,28291,8983,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2878.24,{},102808,0,South America +2023-09-24,28292,9850,"[""Laptop"", ""Headphones""]",1445.34,{},103383,0,South America +2024-03-25,28293,690,"[""Monitor"", ""Laptop"", ""Charger""]",2725.07,{},287013,0,Europe +2023-05-27,28294,3551,"[""Charger"", ""Monitor"", ""Headphones""]",1347.99,{},172731,1,Europe +2024-07-31,28295,9023,"[""Laptop"", ""Keyboard""]",1551.0,"{""seasonal"": ""23%""}",71722,1,South America +2024-08-25,28296,7323,"[""Wireless Mouse"", ""Monitor""]",2699.41,{},252587,0,Africa +2024-02-06,28297,322,"[""Tablet"", ""Wireless Mouse""]",3947.99,"{""loyalty"": ""15%""}",155138,0,Europe +2024-03-04,28298,7841,"[""Laptop""]",2567.96,"{"""": ""18%""}",9207,0,North America +2024-05-15,28299,3601,"[""Monitor""]",4208.8,{},10602,1,Europe +2023-03-31,28300,3174,"[""Headphones"", ""Keyboard"", ""Laptop""]",1611.05,{},140031,0,South America +2024-03-26,28301,2375,"[""Phone"", ""Tablet"", ""Laptop""]",423.73,{},23630,0,Africa +2023-10-21,28302,1497,"[""Tablet""]",584.71,{},261543,0,North America +2023-08-31,28303,9157,"[""Tablet"", ""Phone""]",277.7,"{""promo"": ""28%""}",106754,1,Asia +2023-07-13,28304,9604,"[""Tablet"", ""Laptop""]",314.89,{},1569,0,North America +2023-12-13,28305,5371,"[""Charger"", ""Tablet"", ""Monitor""]",727.66,"{""seasonal"": ""29%""}",133890,1,South America +2024-02-05,28306,6984,"[""Monitor"", ""Charger""]",4729.45,{},292612,1,North America +2024-12-10,28307,3251,"[""Keyboard""]",2776.16,{},281232,0,Europe +2023-03-12,28308,4803,"[""Tablet"", ""Keyboard"", ""Charger""]",1849.89,{},10390,1,Europe +2023-09-14,28309,5023,"[""Phone"", ""Tablet"", ""Charger""]",4293.0,"{""seasonal"": ""21%""}",105428,1,Europe +2023-05-27,28310,8065,"[""Laptop""]",301.64,{},228957,1,Africa +2023-11-13,28311,5412,"[""Phone"", ""Wireless Mouse""]",2877.08,{},106001,1,Africa +2024-05-07,28312,2184,"[""Keyboard"", ""Tablet""]",328.32,"{""seasonal"": ""7%""}",42069,0,North America +2024-04-06,28313,6732,"[""Headphones""]",4158.8,{},206273,0,Africa +2023-04-17,28314,1974,"[""Wireless Mouse""]",4804.14,{},184369,0,North America +2024-02-19,28315,6788,"[""Charger"", ""Phone"", ""Laptop""]",1622.17,{},249682,1,Asia +2023-06-11,28316,5702,"[""Keyboard"", ""Charger""]",1017.15,{},58101,1,Europe +2024-12-02,28317,9437,"[""Laptop""]",2071.43,"{""promo"": ""24%""}",225131,1,Asia +2023-12-05,28318,3607,"[""Laptop"", ""Keyboard""]",3284.09,"{""promo"": ""24%""}",94089,0,South America +2023-03-05,28319,3133,"[""Wireless Mouse"", ""Phone""]",2710.23,{},163442,1,Africa +2024-07-19,28320,4800,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2656.52,{},243463,0,Asia +2023-10-27,28321,2825,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2725.69,"{""promo"": ""16%""}",179794,1,Africa +2023-01-16,28322,6316,"[""Laptop"", ""Phone""]",4315.71,"{"""": ""9%""}",22141,1,Europe +2024-06-13,28323,6275,"[""Wireless Mouse""]",3374.78,{},100755,1,Europe +2024-06-17,28324,6383,"[""Keyboard"", ""Charger"", ""Phone""]",4061.66,"{"""": ""13%""}",224885,1,Africa +2024-08-24,28325,7466,"[""Keyboard""]",2324.58,"{""loyalty"": ""28%""}",73069,0,Asia +2024-11-01,28326,4606,"[""Wireless Mouse""]",61.18,{},109861,1,Asia +2023-04-23,28327,3301,"[""Keyboard"", ""Charger"", ""Headphones""]",680.94,"{""promo"": ""13%""}",159385,0,Africa +2024-05-14,28328,4779,"[""Tablet"", ""Phone"", ""Keyboard""]",554.04,{},290995,1,Asia +2024-01-30,28329,4900,"[""Wireless Mouse""]",4893.84,"{"""": ""28%""}",205567,0,Africa +2023-12-05,28330,6822,"[""Laptop""]",4521.33,{},137826,1,South America +2023-10-28,28331,5197,"[""Keyboard"", ""Headphones"", ""Monitor""]",2691.87,{},9849,1,South America +2023-11-21,28332,2460,"[""Laptop"", ""Phone""]",3011.52,"{""promo"": ""29%""}",173573,1,Africa +2023-03-31,28333,8022,"[""Charger""]",3064.23,"{""loyalty"": ""27%""}",83309,0,Africa +2023-02-07,28334,8369,"[""Phone"", ""Monitor"", ""Headphones""]",3221.35,"{""seasonal"": ""27%""}",60791,0,Asia +2024-09-12,28335,7844,"[""Keyboard"", ""Laptop""]",4498.67,{},212390,0,Asia +2023-07-14,28336,3584,"[""Laptop"", ""Headphones"", ""Phone""]",3890.98,"{""promo"": ""11%""}",46481,1,South America +2024-11-27,28337,2314,"[""Tablet"", ""Keyboard"", ""Headphones""]",1609.14,{},139704,0,Africa +2024-07-15,28338,9699,"[""Monitor"", ""Tablet"", ""Charger""]",400.19,{},121472,0,South America +2023-08-07,28339,1984,"[""Tablet"", ""Monitor""]",356.02,{},38736,1,Asia +2023-09-05,28340,998,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3340.12,{},229153,1,Africa +2023-11-02,28341,9485,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1328.97,"{""loyalty"": ""11%""}",202451,0,North America +2024-08-27,28342,9199,"[""Charger""]",4673.74,"{""seasonal"": ""7%""}",7742,1,North America +2023-03-02,28343,9256,"[""Monitor"", ""Phone"", ""Charger""]",857.0,{},199569,1,Europe +2024-05-13,28344,2744,"[""Tablet"", ""Laptop""]",4633.46,{},18516,1,Africa +2023-09-05,28345,143,"[""Laptop""]",4479.25,{},148871,1,Asia +2024-05-17,28346,1987,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2305.77,"{""loyalty"": ""30%""}",2957,1,Asia +2024-11-15,28347,4570,"[""Laptop"", ""Tablet"", ""Charger""]",919.43,"{"""": ""7%""}",115782,1,Africa +2024-07-19,28348,7665,"[""Charger""]",3065.26,{},203932,0,Africa +2024-06-30,28349,6598,"[""Tablet"", ""Monitor"", ""Keyboard""]",1005.03,"{""promo"": ""7%""}",91760,1,North America +2024-10-19,28350,369,"[""Charger"", ""Phone"", ""Headphones""]",481.85,{},230083,1,Asia +2023-08-18,28351,7092,"[""Charger"", ""Monitor""]",3691.37,{},111229,0,South America +2023-11-21,28352,3223,"[""Headphones"", ""Charger""]",3460.48,"{""promo"": ""7%""}",139994,0,North America +2023-06-16,28353,9721,"[""Keyboard"", ""Monitor""]",4310.36,"{""loyalty"": ""9%""}",131588,1,Europe +2023-11-20,28354,3522,"[""Laptop""]",2198.24,{},270192,0,Asia +2023-07-13,28355,8081,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4817.67,"{"""": ""27%""}",137351,1,Africa +2023-08-22,28356,2178,"[""Laptop"", ""Tablet"", ""Charger""]",3443.1,{},158476,0,Europe +2024-02-04,28357,7242,"[""Keyboard"", ""Laptop""]",1710.31,"{""seasonal"": ""12%""}",118043,0,South America +2024-02-28,28358,4470,"[""Tablet""]",1367.72,{},220675,1,North America +2023-12-23,28359,8949,"[""Charger""]",4139.49,{},54102,0,Asia +2024-07-25,28360,7367,"[""Charger"", ""Laptop""]",233.2,{},150658,1,North America +2023-01-25,28361,2158,"[""Charger""]",4243.01,"{""loyalty"": ""5%""}",86560,0,Asia +2024-03-31,28362,1555,"[""Headphones""]",583.9,"{""seasonal"": ""14%""}",278647,1,Asia +2024-06-10,28363,9862,"[""Headphones"", ""Phone"", ""Keyboard""]",213.36,{},227336,1,North America +2024-05-20,28364,2253,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1739.88,{},290641,1,South America +2024-05-10,28365,5124,"[""Laptop"", ""Phone""]",4858.05,{},169888,1,North America +2024-11-23,28366,269,"[""Charger"", ""Phone""]",2562.49,"{""loyalty"": ""21%""}",291816,1,Europe +2024-02-22,28367,6222,"[""Laptop""]",2964.19,{},182454,0,Europe +2023-10-05,28368,1428,"[""Charger"", ""Keyboard"", ""Monitor""]",1139.4,"{"""": ""5%""}",49914,0,Asia +2024-05-31,28369,4346,"[""Charger""]",3463.76,"{""loyalty"": ""20%""}",14010,1,North America +2023-01-25,28370,3245,"[""Charger"", ""Keyboard"", ""Monitor""]",323.4,{},233098,0,North America +2023-08-15,28371,7848,"[""Charger"", ""Headphones""]",3282.95,"{""seasonal"": ""6%""}",41421,1,Europe +2024-12-13,28372,310,"[""Headphones"", ""Laptop"", ""Tablet""]",777.82,{},60050,0,South America +2023-01-13,28373,1109,"[""Phone"", ""Wireless Mouse""]",4495.98,"{""promo"": ""10%""}",271463,1,North America +2024-02-28,28374,3638,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1727.53,{},277206,1,North America +2023-05-17,28375,7333,"[""Laptop"", ""Monitor"", ""Charger""]",228.26,{},206804,0,Europe +2024-07-31,28376,5751,"[""Headphones""]",4391.79,"{""promo"": ""19%""}",111989,0,Europe +2024-12-18,28377,7322,"[""Monitor"", ""Headphones"", ""Charger""]",3261.88,{},2102,1,Africa +2023-05-12,28378,7333,"[""Monitor"", ""Charger""]",2953.67,{},125861,1,Asia +2024-08-11,28379,646,"[""Wireless Mouse""]",4245.13,{},226870,0,Africa +2024-09-15,28380,6565,"[""Laptop""]",764.97,{},257857,0,South America +2023-04-24,28381,2091,"[""Monitor""]",2929.53,"{""seasonal"": ""17%""}",159049,0,Europe +2024-06-25,28382,1218,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2729.21,"{""promo"": ""8%""}",143835,0,Asia +2023-05-06,28383,2689,"[""Headphones"", ""Monitor"", ""Tablet""]",4513.35,"{"""": ""15%""}",98359,0,Asia +2023-06-30,28384,2880,"[""Phone"", ""Keyboard"", ""Headphones""]",2570.3,"{""seasonal"": ""29%""}",94308,1,South America +2023-06-10,28385,8706,"[""Phone"", ""Charger""]",4062.01,{},230397,1,Asia +2023-10-01,28386,7267,"[""Monitor"", ""Tablet"", ""Headphones""]",1748.18,"{"""": ""28%""}",270562,1,Africa +2024-04-13,28387,1481,"[""Tablet"", ""Laptop"", ""Charger""]",4822.43,{},33256,1,Africa +2023-12-03,28388,1571,"[""Charger"", ""Phone""]",2709.02,{},35827,0,Africa +2024-04-04,28389,6062,"[""Headphones"", ""Keyboard""]",444.62,"{""promo"": ""14%""}",243863,0,Africa +2023-12-22,28390,7253,"[""Tablet"", ""Headphones"", ""Keyboard""]",4355.96,{},248493,1,Asia +2023-10-04,28391,3094,"[""Headphones""]",4278.59,"{""seasonal"": ""14%""}",277788,1,Africa +2023-06-15,28392,7329,"[""Headphones"", ""Monitor""]",889.62,{},206523,1,South America +2023-09-19,28393,702,"[""Phone"", ""Tablet"", ""Keyboard""]",140.22,"{""seasonal"": ""19%""}",236887,0,Europe +2024-04-10,28394,8265,"[""Phone"", ""Keyboard""]",164.07,"{""seasonal"": ""13%""}",114919,0,Europe +2024-07-22,28395,7128,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2909.42,"{""promo"": ""7%""}",255633,1,North America +2024-06-27,28396,2973,"[""Tablet"", ""Keyboard"", ""Monitor""]",4040.26,{},31730,0,Africa +2023-12-16,28397,6667,"[""Laptop"", ""Tablet""]",443.11,"{"""": ""5%""}",3943,0,Europe +2024-07-02,28398,2710,"[""Headphones"", ""Keyboard""]",4125.59,{},155559,0,Africa +2023-03-11,28399,95,"[""Keyboard"", ""Headphones""]",2951.03,{},242887,1,South America +2023-11-05,28400,4667,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3910.29,{},138991,1,Europe +2024-06-06,28401,843,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4512.4,{},252931,1,North America +2023-05-31,28402,9662,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4124.95,"{""loyalty"": ""16%""}",9825,0,Europe +2023-05-26,28403,7252,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1196.02,{},115358,0,Europe +2023-02-07,28404,250,"[""Monitor"", ""Wireless Mouse""]",393.79,{},117843,1,Asia +2023-09-07,28405,4128,"[""Keyboard"", ""Monitor"", ""Headphones""]",4269.94,"{""promo"": ""10%""}",178898,1,Africa +2023-05-04,28406,3209,"[""Monitor"", ""Phone""]",3042.67,{},74632,0,Asia +2023-07-26,28407,9369,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",178.75,"{""loyalty"": ""28%""}",53218,1,Asia +2024-03-01,28408,7579,"[""Wireless Mouse"", ""Keyboard""]",4020.12,"{""seasonal"": ""26%""}",83255,0,Africa +2023-04-04,28409,4759,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3353.31,"{""seasonal"": ""7%""}",182700,1,Asia +2023-09-04,28410,6096,"[""Keyboard""]",3791.68,{},166103,1,Africa +2024-03-03,28411,7915,"[""Phone""]",869.19,{},149240,1,Africa +2023-02-20,28412,8201,"[""Keyboard"", ""Laptop"", ""Tablet""]",2779.49,{},39687,1,Asia +2024-01-22,28413,6549,"[""Laptop"", ""Headphones""]",1605.09,{},164332,1,South America +2023-10-22,28414,1751,"[""Keyboard"", ""Phone""]",1906.25,{},134075,1,Europe +2024-07-23,28415,1588,"[""Wireless Mouse"", ""Headphones""]",465.63,{},154988,0,Asia +2024-10-28,28416,5486,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2650.83,{},16865,0,Europe +2024-10-22,28417,5372,"[""Charger"", ""Headphones"", ""Keyboard""]",3341.84,{},286972,0,Asia +2023-06-10,28418,9479,"[""Charger"", ""Phone"", ""Tablet""]",306.29,"{""loyalty"": ""10%""}",121120,0,Europe +2023-01-07,28419,4428,"[""Laptop""]",2181.35,"{""promo"": ""7%""}",20097,1,South America +2023-04-18,28420,3228,"[""Headphones""]",1151.69,{},293617,1,Asia +2023-10-14,28421,7142,"[""Wireless Mouse""]",3492.0,{},47630,1,South America +2024-01-14,28422,4298,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",887.92,"{""promo"": ""7%""}",158633,1,Africa +2024-09-13,28423,6751,"[""Tablet"", ""Monitor""]",3776.51,"{"""": ""17%""}",150812,0,Europe +2023-09-30,28424,1660,"[""Wireless Mouse""]",3871.55,{},266155,1,Europe +2024-06-16,28425,3919,"[""Charger"", ""Keyboard""]",2426.87,"{"""": ""6%""}",235570,0,Africa +2023-02-19,28426,8607,"[""Keyboard"", ""Monitor"", ""Headphones""]",2169.23,"{"""": ""8%""}",129740,1,Africa +2023-05-03,28427,7175,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1755.99,{},232183,0,South America +2024-02-05,28428,1127,"[""Phone"", ""Headphones""]",4474.13,"{""loyalty"": ""5%""}",210941,0,Africa +2024-10-30,28429,181,"[""Headphones"", ""Tablet"", ""Keyboard""]",3751.67,{},40627,1,Europe +2024-06-29,28430,7040,"[""Monitor""]",2407.47,{},227625,0,Africa +2023-04-08,28431,1689,"[""Headphones"", ""Monitor"", ""Laptop""]",4819.57,{},70314,1,Europe +2023-10-30,28432,8859,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2197.22,{},65501,1,Asia +2024-04-13,28433,4224,"[""Headphones""]",2146.27,{},192676,1,Asia +2024-08-06,28434,6857,"[""Tablet"", ""Headphones"", ""Phone""]",1815.96,"{"""": ""15%""}",226352,0,North America +2024-09-09,28435,3977,"[""Phone""]",2698.74,{},28561,1,South America +2023-03-08,28436,8443,"[""Tablet"", ""Laptop""]",2128.95,"{""promo"": ""18%""}",168565,0,Asia +2023-09-15,28437,3033,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2210.21,"{"""": ""15%""}",81390,1,Europe +2024-11-16,28438,7913,"[""Tablet"", ""Charger""]",3691.29,{},138150,0,South America +2024-09-18,28439,4857,"[""Wireless Mouse"", ""Laptop""]",1705.87,{},233346,1,Africa +2023-02-09,28440,1921,"[""Keyboard"", ""Laptop"", ""Phone""]",2554.92,"{""seasonal"": ""12%""}",143512,0,Africa +2024-02-07,28441,7688,"[""Monitor"", ""Tablet"", ""Keyboard""]",2326.67,"{""seasonal"": ""17%""}",56300,1,North America +2023-02-03,28442,5218,"[""Phone"", ""Headphones"", ""Keyboard""]",1628.71,"{"""": ""17%""}",31841,0,South America +2023-04-21,28443,4189,"[""Headphones""]",4345.46,"{""loyalty"": ""15%""}",96851,0,North America +2023-07-17,28444,1679,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3797.53,{},62242,0,South America +2024-11-16,28445,6478,"[""Keyboard"", ""Headphones""]",596.85,{},287330,1,Africa +2023-07-20,28446,9517,"[""Tablet""]",113.16,{},80944,1,Asia +2023-03-08,28447,5901,"[""Laptop""]",3284.66,{},75764,1,North America +2024-11-11,28448,469,"[""Keyboard"", ""Wireless Mouse""]",682.54,"{""promo"": ""14%""}",229808,1,Africa +2023-03-16,28449,2556,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3511.61,{},174052,0,North America +2023-03-07,28450,1403,"[""Monitor""]",276.66,"{""loyalty"": ""28%""}",102834,0,Africa +2024-05-06,28451,7897,"[""Phone"", ""Headphones""]",2197.67,{},72028,0,Asia +2023-12-02,28452,4786,"[""Monitor""]",1107.7,"{"""": ""21%""}",217126,0,Europe +2024-08-12,28453,7731,"[""Tablet"", ""Monitor"", ""Phone""]",3040.55,{},292795,0,South America +2023-03-21,28454,484,"[""Headphones"", ""Wireless Mouse""]",176.05,"{""seasonal"": ""10%""}",95573,0,Africa +2024-05-07,28455,7495,"[""Laptop"", ""Charger"", ""Keyboard""]",4272.55,{},176936,1,Asia +2024-04-06,28456,3213,"[""Monitor"", ""Phone"", ""Tablet""]",2702.32,{},114972,1,Europe +2023-01-03,28457,1305,"[""Keyboard"", ""Laptop"", ""Tablet""]",4820.72,"{""promo"": ""12%""}",130278,1,Asia +2024-03-02,28458,5313,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2292.0,{},119203,0,Asia +2024-08-30,28459,7125,"[""Laptop"", ""Phone"", ""Monitor""]",4727.36,{},73353,1,Europe +2024-10-14,28460,9392,"[""Tablet""]",4339.08,"{""loyalty"": ""14%""}",17404,0,Africa +2023-02-05,28461,8310,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1127.16,{},178204,1,Asia +2024-11-08,28462,1582,"[""Phone"", ""Laptop"", ""Tablet""]",3786.88,{},211698,0,South America +2024-06-17,28463,8776,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4431.65,{},95392,0,Africa +2024-01-05,28464,2935,"[""Headphones"", ""Monitor"", ""Keyboard""]",1306.19,"{""promo"": ""30%""}",84806,1,Europe +2023-02-12,28465,146,"[""Monitor"", ""Wireless Mouse""]",4530.06,"{""loyalty"": ""6%""}",126464,1,South America +2024-07-20,28466,8539,"[""Laptop""]",166.12,"{""loyalty"": ""6%""}",58705,0,Europe +2024-09-09,28467,3344,"[""Keyboard""]",4834.81,{},125807,0,South America +2023-10-03,28468,9368,"[""Tablet"", ""Laptop""]",261.32,{},229757,1,North America +2023-11-09,28469,2396,"[""Monitor""]",3112.08,{},82609,1,Europe +2023-10-03,28470,3843,"[""Charger"", ""Keyboard""]",4654.25,"{""loyalty"": ""15%""}",169161,1,North America +2024-12-03,28471,8718,"[""Monitor"", ""Headphones"", ""Charger""]",4385.79,{},94240,0,Africa +2023-01-20,28472,3012,"[""Tablet"", ""Wireless Mouse""]",750.4,{},176715,1,North America +2024-01-17,28473,1920,"[""Tablet"", ""Keyboard"", ""Laptop""]",2492.8,"{"""": ""24%""}",167405,1,Africa +2024-09-07,28474,1170,"[""Wireless Mouse"", ""Tablet""]",2307.69,"{"""": ""6%""}",138423,1,Africa +2024-08-15,28475,19,"[""Monitor""]",3305.13,"{"""": ""30%""}",294003,0,Europe +2023-02-13,28476,6455,"[""Tablet""]",2155.74,{},155075,1,North America +2023-10-18,28477,3397,"[""Keyboard"", ""Phone"", ""Charger""]",1692.84,{},269660,1,South America +2023-06-15,28478,8015,"[""Charger"", ""Headphones""]",2897.44,"{""loyalty"": ""20%""}",64974,1,North America +2023-12-02,28479,9551,"[""Phone"", ""Wireless Mouse""]",2235.24,{},243108,0,Europe +2023-05-05,28480,3995,"[""Tablet"", ""Charger""]",3838.23,"{"""": ""29%""}",186461,1,South America +2024-08-24,28481,3277,"[""Laptop""]",3186.85,"{""promo"": ""23%""}",125098,1,Europe +2024-08-11,28482,3442,"[""Monitor""]",2863.07,"{"""": ""9%""}",259842,0,North America +2023-02-20,28483,7512,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4232.42,"{""seasonal"": ""30%""}",4485,0,Asia +2023-01-06,28484,8857,"[""Monitor""]",2507.92,"{""loyalty"": ""18%""}",276772,1,Asia +2024-07-21,28485,4988,"[""Monitor"", ""Tablet"", ""Charger""]",2443.15,"{"""": ""17%""}",64772,1,North America +2023-06-25,28486,8924,"[""Monitor"", ""Wireless Mouse""]",162.13,{},174068,1,Europe +2024-04-07,28487,219,"[""Charger""]",224.44,"{""loyalty"": ""9%""}",143080,1,North America +2024-01-28,28488,4882,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1933.29,{},274133,1,North America +2023-09-12,28489,4230,"[""Monitor""]",3516.28,{},104670,0,Africa +2024-08-16,28490,7085,"[""Headphones"", ""Keyboard"", ""Charger""]",4745.92,"{"""": ""14%""}",268848,1,Africa +2023-07-12,28491,2489,"[""Phone""]",219.04,"{""seasonal"": ""10%""}",191248,0,North America +2024-07-11,28492,4894,"[""Laptop"", ""Monitor"", ""Headphones""]",3212.36,"{"""": ""23%""}",140673,0,South America +2023-05-29,28493,2832,"[""Tablet""]",3978.9,{},58394,0,Africa +2024-04-09,28494,5328,"[""Headphones""]",1107.71,"{""loyalty"": ""10%""}",84083,0,Europe +2024-02-25,28495,5680,"[""Keyboard""]",4581.43,"{""promo"": ""9%""}",179369,1,Europe +2024-02-24,28496,779,"[""Phone""]",4452.74,"{""seasonal"": ""8%""}",102721,1,North America +2024-03-27,28497,4262,"[""Charger"", ""Monitor"", ""Keyboard""]",789.89,{},103315,1,South America +2024-01-29,28498,9168,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1855.21,{},5648,1,Europe +2023-09-14,28499,247,"[""Charger"", ""Phone""]",2254.03,"{"""": ""7%""}",219905,0,Asia +2024-11-01,28500,2931,"[""Headphones""]",2182.71,"{"""": ""10%""}",220685,1,South America +2023-07-08,28501,9844,"[""Monitor"", ""Phone""]",2461.3,{},82904,1,North America +2023-09-26,28502,761,"[""Keyboard""]",1126.94,{},288797,1,North America +2023-12-10,28503,2334,"[""Phone""]",2629.48,{},18501,1,Asia +2023-03-11,28504,1551,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2230.65,{},186591,0,North America +2023-01-09,28505,8824,"[""Tablet"", ""Keyboard"", ""Phone""]",2119.09,{},286436,0,North America +2024-11-02,28506,8381,"[""Charger""]",2805.22,{},260820,0,North America +2023-03-09,28507,4824,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",460.27,{},168029,0,Asia +2023-02-12,28508,1084,"[""Monitor""]",4218.23,"{""loyalty"": ""13%""}",217579,0,North America +2024-01-10,28509,8378,"[""Charger""]",2382.36,"{"""": ""29%""}",155901,0,North America +2023-06-30,28510,7412,"[""Wireless Mouse""]",936.31,"{"""": ""21%""}",100339,0,North America +2024-04-23,28511,9038,"[""Headphones"", ""Monitor""]",881.58,"{""loyalty"": ""30%""}",134711,0,Europe +2024-02-24,28512,7556,"[""Laptop""]",1544.8,{},13248,1,Europe +2024-08-21,28513,9403,"[""Headphones"", ""Laptop"", ""Keyboard""]",65.72,{},85592,0,Africa +2023-02-26,28514,5679,"[""Charger"", ""Tablet"", ""Monitor""]",1099.99,"{""seasonal"": ""27%""}",248811,0,Africa +2024-06-02,28515,2402,"[""Charger""]",1470.15,{},243780,0,Africa +2023-04-29,28516,7561,"[""Tablet"", ""Monitor""]",1084.45,"{""seasonal"": ""10%""}",256102,1,Africa +2024-12-13,28517,5430,"[""Laptop""]",3344.3,"{""promo"": ""17%""}",278680,0,Africa +2024-08-17,28518,9319,"[""Charger"", ""Tablet"", ""Keyboard""]",4350.68,{},64475,0,South America +2023-05-20,28519,9671,"[""Keyboard""]",675.27,"{""promo"": ""19%""}",275944,1,Africa +2023-01-03,28520,7170,"[""Laptop"", ""Keyboard"", ""Monitor""]",3897.75,"{""promo"": ""12%""}",275234,1,South America +2024-06-27,28521,1567,"[""Tablet"", ""Laptop""]",2151.0,{},68654,0,Africa +2023-10-29,28522,3323,"[""Charger""]",4688.5,"{""seasonal"": ""27%""}",175527,0,Europe +2023-11-28,28523,218,"[""Headphones"", ""Charger"", ""Monitor""]",1212.65,{},254525,1,North America +2024-02-18,28524,3106,"[""Wireless Mouse"", ""Charger""]",903.61,{},218247,1,Asia +2023-05-25,28525,9947,"[""Charger"", ""Keyboard"", ""Headphones""]",2782.11,{},161950,1,Europe +2024-05-21,28526,7456,"[""Tablet""]",196.76,"{""loyalty"": ""13%""}",10983,0,South America +2023-11-13,28527,2541,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1356.55,{},258673,1,Asia +2024-12-08,28528,2413,"[""Headphones""]",2429.64,{},79214,1,Asia +2024-05-06,28529,8778,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4676.31,{},267296,0,Africa +2024-04-16,28530,9232,"[""Tablet""]",1474.83,{},208608,0,Asia +2023-11-03,28531,971,"[""Headphones""]",3541.47,"{""loyalty"": ""10%""}",92446,1,Europe +2023-09-09,28532,7406,"[""Wireless Mouse""]",3347.33,{},285191,0,North America +2023-10-12,28533,2060,"[""Charger""]",493.69,"{""promo"": ""8%""}",274503,0,Africa +2024-02-24,28534,5890,"[""Keyboard"", ""Laptop""]",4389.72,"{"""": ""25%""}",48449,1,Africa +2023-11-13,28535,9858,"[""Wireless Mouse"", ""Charger""]",2023.32,{},137328,1,South America +2024-12-23,28536,6877,"[""Keyboard"", ""Phone"", ""Headphones""]",1363.95,"{""promo"": ""11%""}",96537,0,South America +2023-08-27,28537,6218,"[""Charger"", ""Tablet""]",1322.52,"{""loyalty"": ""13%""}",192714,1,Africa +2024-10-19,28538,7426,"[""Keyboard"", ""Wireless Mouse""]",947.93,"{""loyalty"": ""18%""}",170680,1,Asia +2024-03-14,28539,9273,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",799.52,{},195116,0,Asia +2024-02-06,28540,8038,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1207.96,{},13680,0,Africa +2024-04-04,28541,1835,"[""Tablet"", ""Wireless Mouse""]",150.53,{},44264,1,Asia +2024-04-26,28542,6318,"[""Monitor"", ""Laptop""]",4482.82,{},216061,1,Europe +2024-02-07,28543,7482,"[""Laptop"", ""Charger""]",4204.57,{},92372,0,Asia +2024-08-25,28544,1711,"[""Wireless Mouse"", ""Tablet""]",483.74,"{"""": ""17%""}",140668,0,Asia +2024-10-16,28545,3745,"[""Keyboard"", ""Headphones"", ""Monitor""]",219.94,"{""seasonal"": ""9%""}",286051,1,Asia +2024-04-30,28546,6061,"[""Phone"", ""Keyboard""]",2739.84,{},259763,0,North America +2024-11-20,28547,6881,"[""Laptop"", ""Charger"", ""Headphones""]",4222.21,"{""seasonal"": ""23%""}",87310,0,Asia +2023-07-23,28548,4961,"[""Monitor"", ""Keyboard""]",2777.29,{},36297,1,South America +2023-06-10,28549,7071,"[""Phone"", ""Keyboard""]",1818.87,"{""promo"": ""29%""}",289818,1,Europe +2024-05-28,28550,7153,"[""Wireless Mouse"", ""Keyboard""]",1727.45,"{"""": ""13%""}",195985,0,Asia +2023-12-26,28551,5099,"[""Wireless Mouse""]",1555.67,{},5403,1,North America +2023-12-01,28552,9987,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3898.65,{},214592,1,Europe +2023-10-01,28553,8558,"[""Tablet"", ""Monitor"", ""Charger""]",4337.44,"{""loyalty"": ""20%""}",178631,0,Africa +2024-02-23,28554,8971,"[""Keyboard"", ""Wireless Mouse""]",585.92,{},297637,1,South America +2024-06-02,28555,7791,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3367.25,{},64186,0,South America +2024-01-30,28556,2870,"[""Laptop""]",2449.4,"{""loyalty"": ""22%""}",129952,0,Africa +2023-02-26,28557,2277,"[""Phone""]",1780.18,{},111320,0,North America +2024-12-31,28558,4234,"[""Charger""]",3327.52,{},214043,1,South America +2023-08-09,28559,3724,"[""Charger"", ""Wireless Mouse""]",4015.2,"{""promo"": ""16%""}",259328,1,Asia +2024-01-12,28560,3005,"[""Headphones"", ""Tablet"", ""Laptop""]",2293.71,{},193291,1,North America +2023-05-12,28561,1041,"[""Charger"", ""Keyboard"", ""Headphones""]",4260.94,{},263358,1,Africa +2024-07-07,28562,2213,"[""Phone"", ""Monitor"", ""Headphones""]",973.0,{},136195,0,Asia +2023-03-25,28563,6549,"[""Headphones"", ""Wireless Mouse""]",486.96,"{""promo"": ""8%""}",39813,0,South America +2023-10-07,28564,6394,"[""Phone""]",4696.36,{},123622,0,Asia +2023-10-14,28565,9252,"[""Phone"", ""Charger""]",2635.55,"{""promo"": ""26%""}",182874,1,Europe +2024-08-24,28566,7767,"[""Laptop""]",1178.49,"{""loyalty"": ""5%""}",292339,0,Europe +2023-03-04,28567,14,"[""Keyboard"", ""Laptop"", ""Headphones""]",895.45,{},108160,1,North America +2023-01-13,28568,8193,"[""Monitor""]",1018.96,{},252871,1,North America +2023-09-20,28569,4825,"[""Laptop"", ""Charger"", ""Headphones""]",2752.83,"{""seasonal"": ""8%""}",274883,1,South America +2024-10-01,28570,4394,"[""Tablet""]",1652.05,{},21954,0,Europe +2024-01-26,28571,7937,"[""Headphones"", ""Laptop""]",2007.37,"{""seasonal"": ""16%""}",82726,1,Europe +2023-02-12,28572,8851,"[""Headphones"", ""Charger""]",970.1,"{"""": ""13%""}",135638,1,South America +2023-11-22,28573,2752,"[""Tablet"", ""Keyboard""]",4303.08,"{""promo"": ""21%""}",92064,0,North America +2023-02-16,28574,1540,"[""Charger"", ""Monitor""]",2519.12,"{""loyalty"": ""20%""}",289020,1,South America +2023-05-29,28575,8122,"[""Headphones"", ""Wireless Mouse""]",4533.43,"{""loyalty"": ""16%""}",46174,0,North America +2024-08-30,28576,6299,"[""Headphones"", ""Monitor"", ""Tablet""]",778.65,{},226130,0,Asia +2024-08-12,28577,605,"[""Tablet"", ""Headphones"", ""Charger""]",327.6,{},251895,0,South America +2024-03-25,28578,7370,"[""Monitor"", ""Keyboard"", ""Laptop""]",3717.07,{},230692,0,Asia +2024-04-12,28579,406,"[""Headphones"", ""Keyboard"", ""Tablet""]",2586.29,{},241751,0,Asia +2024-06-04,28580,2229,"[""Keyboard""]",678.37,"{"""": ""15%""}",7170,0,South America +2023-04-09,28581,3034,"[""Wireless Mouse"", ""Keyboard""]",1726.56,{},211532,0,Europe +2024-07-02,28582,7173,"[""Headphones"", ""Charger"", ""Tablet""]",2586.95,"{"""": ""7%""}",150429,1,Africa +2024-09-16,28583,6073,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3532.62,{},39678,0,Africa +2023-06-22,28584,2534,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3618.04,"{""promo"": ""27%""}",82271,0,Africa +2024-07-30,28585,9146,"[""Keyboard"", ""Monitor"", ""Tablet""]",1093.54,{},129185,1,South America +2023-08-14,28586,3163,"[""Laptop""]",2961.7,"{""loyalty"": ""8%""}",92548,1,Europe +2024-10-26,28587,9919,"[""Laptop"", ""Headphones""]",605.91,"{""loyalty"": ""23%""}",60468,1,North America +2024-12-26,28588,8787,"[""Monitor""]",4038.5,"{""promo"": ""15%""}",299502,1,Africa +2023-01-04,28589,6724,"[""Charger""]",3346.06,"{""promo"": ""10%""}",190921,1,Africa +2023-03-22,28590,7552,"[""Monitor""]",970.44,"{""loyalty"": ""21%""}",273217,0,Asia +2024-10-04,28591,3155,"[""Wireless Mouse""]",4179.92,"{""loyalty"": ""18%""}",84576,0,Africa +2024-06-05,28592,4308,"[""Laptop""]",1734.52,"{"""": ""26%""}",291851,0,North America +2024-03-05,28593,4276,"[""Keyboard"", ""Headphones"", ""Phone""]",896.67,"{""promo"": ""19%""}",235958,1,Africa +2024-10-18,28594,8684,"[""Phone"", ""Headphones""]",1319.05,{},24571,0,Africa +2023-09-11,28595,1841,"[""Tablet"", ""Charger""]",2185.0,{},217634,1,Europe +2023-02-08,28596,8285,"[""Keyboard"", ""Headphones"", ""Monitor""]",3072.83,"{""seasonal"": ""12%""}",214494,1,Europe +2024-12-20,28597,6414,"[""Charger"", ""Tablet""]",3030.67,"{"""": ""19%""}",180416,0,Europe +2023-05-28,28598,6747,"[""Phone"", ""Laptop""]",1966.69,{},68781,1,Asia +2023-01-10,28599,5451,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1690.36,"{""seasonal"": ""10%""}",71719,0,Africa +2024-11-18,28600,8293,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3031.88,"{""loyalty"": ""20%""}",184273,0,North America +2024-03-31,28601,7429,"[""Charger""]",2065.05,{},35294,1,Africa +2023-05-03,28602,5195,"[""Phone""]",3823.18,"{""promo"": ""16%""}",279117,1,North America +2023-01-15,28603,8987,"[""Headphones""]",2595.88,{},110220,0,Asia +2023-01-01,28604,524,"[""Laptop"", ""Wireless Mouse""]",4612.44,"{""loyalty"": ""24%""}",239305,1,Europe +2024-09-16,28605,7319,"[""Keyboard"", ""Monitor""]",2987.63,"{""loyalty"": ""25%""}",144009,1,Europe +2024-02-07,28606,8776,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2119.63,"{""seasonal"": ""9%""}",100567,1,Africa +2023-03-16,28607,7072,"[""Laptop"", ""Charger"", ""Headphones""]",3824.55,"{""seasonal"": ""14%""}",272682,0,Asia +2023-06-27,28608,1994,"[""Monitor"", ""Phone"", ""Keyboard""]",2491.02,{},80169,1,Europe +2023-11-19,28609,7207,"[""Monitor"", ""Headphones""]",777.2,"{""seasonal"": ""11%""}",232956,1,Europe +2024-08-16,28610,7296,"[""Monitor""]",2781.12,{},212655,1,Asia +2024-02-23,28611,1292,"[""Laptop"", ""Charger""]",3956.71,{},278801,1,North America +2023-09-15,28612,7690,"[""Laptop"", ""Tablet""]",804.38,{},139009,0,Asia +2023-07-07,28613,2700,"[""Wireless Mouse"", ""Charger""]",3524.12,{},58320,0,Europe +2023-06-08,28614,7569,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2247.89,{},187167,1,Asia +2023-12-21,28615,3758,"[""Charger""]",2237.45,"{"""": ""12%""}",260471,1,South America +2023-07-24,28616,6659,"[""Headphones"", ""Monitor"", ""Keyboard""]",1389.96,{},7104,0,Europe +2024-03-22,28617,1739,"[""Headphones"", ""Monitor"", ""Laptop""]",2614.55,"{""promo"": ""20%""}",119928,1,Europe +2024-11-06,28618,4687,"[""Wireless Mouse""]",3747.95,{},259469,1,Europe +2024-06-16,28619,9587,"[""Keyboard""]",3186.78,{},278893,0,Africa +2023-01-14,28620,5114,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",372.36,{},56646,1,South America +2023-09-13,28621,6520,"[""Keyboard"", ""Laptop""]",1742.28,{},271805,1,Europe +2023-11-02,28622,4254,"[""Laptop"", ""Tablet"", ""Headphones""]",1708.19,"{""seasonal"": ""25%""}",54481,0,South America +2023-04-29,28623,3090,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2168.03,"{"""": ""10%""}",97311,1,Asia +2024-03-15,28624,9299,"[""Phone"", ""Headphones""]",1556.75,"{"""": ""17%""}",136269,0,South America +2023-05-03,28625,3078,"[""Charger""]",2294.72,{},126817,1,South America +2024-06-10,28626,7886,"[""Charger"", ""Keyboard""]",3278.19,{},243836,1,North America +2023-02-10,28627,5650,"[""Phone""]",2183.28,{},276034,1,Africa +2023-07-01,28628,7396,"[""Laptop"", ""Headphones"", ""Tablet""]",4898.21,{},167225,1,Asia +2023-01-25,28629,1373,"[""Phone""]",1058.71,{},84618,1,Europe +2024-08-31,28630,2487,"[""Tablet"", ""Headphones"", ""Charger""]",2746.84,"{"""": ""15%""}",154398,1,South America +2023-01-28,28631,9115,"[""Tablet""]",2330.03,{},267673,0,South America +2024-02-12,28632,7362,"[""Headphones"", ""Laptop"", ""Phone""]",1120.57,"{"""": ""24%""}",75408,1,South America +2024-05-05,28633,6864,"[""Wireless Mouse""]",2811.51,{},95771,0,South America +2024-01-24,28634,1036,"[""Laptop"", ""Wireless Mouse""]",3631.31,{},18913,1,Asia +2023-10-21,28635,4513,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2469.69,{},82914,0,Europe +2023-10-29,28636,7274,"[""Charger"", ""Laptop"", ""Keyboard""]",2510.58,{},196399,0,Asia +2023-06-19,28637,3604,"[""Phone""]",1603.3,{},260425,0,South America +2024-04-17,28638,6210,"[""Monitor"", ""Headphones""]",4251.52,"{""promo"": ""11%""}",119459,1,Europe +2024-02-25,28639,2621,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4134.45,"{"""": ""29%""}",102399,0,North America +2023-08-22,28640,5109,"[""Monitor"", ""Keyboard"", ""Tablet""]",3350.07,"{""seasonal"": ""6%""}",70524,1,North America +2023-11-21,28641,5027,"[""Laptop""]",2802.04,{},133379,1,South America +2024-05-09,28642,2739,"[""Monitor""]",3467.32,"{""promo"": ""29%""}",236645,1,Asia +2023-09-05,28643,3558,"[""Headphones"", ""Monitor"", ""Charger""]",2658.91,"{""seasonal"": ""7%""}",65557,0,Africa +2024-03-17,28644,7480,"[""Keyboard"", ""Charger""]",2737.53,"{""promo"": ""8%""}",190079,0,South America +2024-11-06,28645,3496,"[""Laptop""]",3916.4,{},242632,1,Europe +2023-02-01,28646,5712,"[""Wireless Mouse"", ""Monitor""]",1107.31,"{""promo"": ""8%""}",7459,1,Europe +2024-12-10,28647,7828,"[""Phone""]",937.26,{},94569,1,Europe +2024-06-11,28648,4012,"[""Headphones"", ""Tablet"", ""Keyboard""]",1911.93,{},151339,1,Africa +2024-04-27,28649,7807,"[""Keyboard"", ""Charger"", ""Laptop""]",3701.51,{},297942,1,South America +2024-09-08,28650,6243,"[""Laptop"", ""Wireless Mouse""]",1546.8,"{""seasonal"": ""11%""}",28284,1,North America +2023-04-15,28651,3441,"[""Monitor"", ""Headphones"", ""Tablet""]",1123.4,{},72189,0,North America +2023-02-16,28652,2781,"[""Laptop""]",4498.54,{},53916,0,Europe +2023-02-21,28653,9554,"[""Wireless Mouse"", ""Laptop""]",4650.89,{},137547,1,Africa +2024-11-01,28654,295,"[""Keyboard""]",2292.41,{},15367,1,Asia +2024-09-08,28655,1052,"[""Wireless Mouse"", ""Phone""]",4555.5,"{"""": ""22%""}",211323,1,South America +2024-04-12,28656,7698,"[""Laptop"", ""Charger""]",4623.69,{},187402,1,Africa +2024-02-10,28657,4354,"[""Charger""]",4464.57,{},264432,0,North America +2024-12-31,28658,1659,"[""Monitor"", ""Phone""]",1628.35,"{"""": ""11%""}",184268,1,Asia +2024-04-09,28659,6683,"[""Keyboard"", ""Charger"", ""Phone""]",3501.41,"{""loyalty"": ""28%""}",14670,1,Europe +2024-04-12,28660,754,"[""Tablet"", ""Monitor""]",4560.71,{},60504,1,North America +2023-12-18,28661,7736,"[""Laptop""]",3602.51,{},39767,0,Europe +2023-09-15,28662,6609,"[""Headphones""]",4611.03,"{""promo"": ""11%""}",29536,0,South America +2024-01-09,28663,9469,"[""Keyboard"", ""Tablet""]",4860.59,{},235899,0,North America +2023-07-30,28664,9799,"[""Laptop""]",3510.18,"{""seasonal"": ""26%""}",98681,1,North America +2023-08-08,28665,8664,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",679.72,"{""promo"": ""12%""}",173709,0,Asia +2024-01-21,28666,2743,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3523.14,"{""promo"": ""7%""}",60231,1,Africa +2024-11-17,28667,2881,"[""Tablet"", ""Monitor"", ""Laptop""]",4747.54,{},205491,1,Europe +2023-12-27,28668,8772,"[""Charger"", ""Keyboard"", ""Monitor""]",1081.15,"{""loyalty"": ""29%""}",60360,0,Asia +2023-05-30,28669,5163,"[""Monitor"", ""Keyboard""]",1124.11,"{""promo"": ""28%""}",99618,0,Asia +2024-01-30,28670,4558,"[""Laptop"", ""Phone""]",220.17,"{""loyalty"": ""22%""}",3839,0,Africa +2024-04-02,28671,3575,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1165.68,{},139702,0,Africa +2023-11-17,28672,9316,"[""Phone""]",3628.56,{},145243,0,Asia +2024-02-20,28673,616,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1449.13,"{""seasonal"": ""20%""}",249005,1,Europe +2024-02-04,28674,1225,"[""Charger"", ""Tablet"", ""Keyboard""]",733.85,"{"""": ""16%""}",240801,1,Asia +2024-09-29,28675,6492,"[""Tablet"", ""Monitor""]",1725.36,{},92573,1,Africa +2023-06-23,28676,7953,"[""Monitor""]",2473.95,{},189977,0,Europe +2024-01-01,28677,1550,"[""Charger"", ""Headphones""]",1570.71,"{""loyalty"": ""16%""}",119780,1,North America +2023-08-12,28678,9701,"[""Keyboard""]",3525.07,{},37254,0,Africa +2023-12-26,28679,3941,"[""Wireless Mouse"", ""Tablet""]",1963.5,{},48572,0,South America +2023-07-24,28680,605,"[""Headphones""]",248.44,"{""promo"": ""21%""}",231005,1,South America +2024-07-22,28681,6570,"[""Keyboard"", ""Laptop""]",89.82,{},35006,0,Africa +2024-07-24,28682,1526,"[""Phone"", ""Wireless Mouse""]",1639.54,"{"""": ""24%""}",6974,1,Africa +2024-02-14,28683,3611,"[""Tablet"", ""Keyboard""]",4216.25,"{"""": ""18%""}",256698,1,Africa +2023-11-07,28684,3158,"[""Laptop""]",2136.13,"{""loyalty"": ""12%""}",275734,0,Europe +2023-12-02,28685,1187,"[""Headphones""]",2020.08,{},26874,0,Europe +2024-10-18,28686,9694,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3254.73,"{"""": ""8%""}",195762,1,Europe +2024-02-01,28687,7229,"[""Wireless Mouse"", ""Charger""]",4265.11,"{""loyalty"": ""20%""}",160471,0,North America +2023-11-17,28688,7194,"[""Wireless Mouse"", ""Headphones""]",1779.27,"{""loyalty"": ""15%""}",144366,0,South America +2023-07-10,28689,4966,"[""Tablet"", ""Headphones"", ""Charger""]",4532.7,{},149721,0,Africa +2023-11-01,28690,7901,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",754.35,"{"""": ""22%""}",117877,0,North America +2024-10-07,28691,75,"[""Wireless Mouse"", ""Tablet""]",2174.88,"{""loyalty"": ""21%""}",249008,0,South America +2024-11-26,28692,5783,"[""Tablet""]",3062.49,"{"""": ""8%""}",13211,0,Asia +2023-08-05,28693,1938,"[""Tablet"", ""Laptop""]",3243.71,"{"""": ""13%""}",141341,1,South America +2024-09-17,28694,2532,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",846.97,"{""promo"": ""18%""}",98056,1,Asia +2024-01-02,28695,2372,"[""Phone""]",3207.08,"{""seasonal"": ""21%""}",164849,0,Europe +2024-06-03,28696,9,"[""Keyboard""]",2181.74,"{""seasonal"": ""25%""}",299281,0,North America +2024-10-01,28697,2120,"[""Tablet"", ""Keyboard""]",3105.95,{},114174,1,Africa +2024-11-27,28698,5031,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2715.44,{},299971,0,Europe +2023-05-11,28699,8261,"[""Tablet"", ""Keyboard"", ""Headphones""]",3179.2,{},273861,0,North America +2023-01-11,28700,766,"[""Keyboard""]",2385.78,"{""promo"": ""16%""}",120760,0,Africa +2024-08-27,28701,5405,"[""Keyboard"", ""Monitor""]",4966.63,{},53410,1,South America +2024-08-08,28702,6261,"[""Laptop""]",4084.45,"{""promo"": ""23%""}",258703,0,Asia +2024-05-24,28703,178,"[""Laptop"", ""Monitor"", ""Headphones""]",3933.77,"{"""": ""21%""}",147656,0,Europe +2024-09-28,28704,6658,"[""Tablet""]",1194.4,{},34060,1,Europe +2023-06-30,28705,3677,"[""Phone"", ""Wireless Mouse""]",2534.64,{},195161,0,South America +2024-05-17,28706,6356,"[""Wireless Mouse"", ""Headphones""]",4919.94,"{""loyalty"": ""13%""}",202133,0,Europe +2024-12-15,28707,9546,"[""Phone"", ""Wireless Mouse""]",96.46,"{"""": ""6%""}",18070,1,Asia +2024-12-29,28708,6095,"[""Monitor"", ""Keyboard""]",1296.57,{},54538,1,Africa +2024-10-12,28709,3084,"[""Charger"", ""Laptop"", ""Monitor""]",1387.69,{},211247,1,Asia +2024-08-24,28710,5441,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3623.67,{},188953,0,Europe +2023-08-23,28711,1281,"[""Tablet""]",965.98,"{""promo"": ""19%""}",123877,0,South America +2023-06-28,28712,1312,"[""Headphones""]",4105.44,{},281049,0,Asia +2024-12-03,28713,2949,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2837.9,"{""loyalty"": ""15%""}",122144,0,Africa +2024-04-29,28714,3536,"[""Keyboard""]",4815.37,"{""promo"": ""27%""}",211858,1,Africa +2023-03-29,28715,4763,"[""Tablet""]",1405.87,{},206445,1,South America +2023-03-12,28716,9639,"[""Monitor""]",1540.38,{},34069,1,Asia +2023-11-15,28717,2805,"[""Tablet""]",2689.47,{},81189,0,Europe +2023-12-20,28718,3813,"[""Headphones"", ""Charger"", ""Tablet""]",4868.42,"{"""": ""29%""}",101519,0,North America +2023-08-01,28719,1173,"[""Headphones"", ""Keyboard"", ""Phone""]",1439.09,"{"""": ""13%""}",217929,0,Europe +2023-04-08,28720,5073,"[""Charger""]",383.41,{},39585,0,Europe +2023-04-09,28721,2524,"[""Charger"", ""Phone"", ""Headphones""]",4394.85,"{"""": ""20%""}",79614,1,South America +2024-01-06,28722,8913,"[""Charger"", ""Headphones""]",1272.21,{},44801,1,Europe +2023-11-22,28723,6022,"[""Phone""]",4941.15,{},183520,0,Asia +2024-09-01,28724,3333,"[""Phone"", ""Headphones""]",230.78,{},165825,1,South America +2024-06-21,28725,3887,"[""Headphones"", ""Keyboard""]",2449.11,"{""seasonal"": ""30%""}",278290,1,Africa +2023-10-14,28726,291,"[""Phone""]",3055.16,"{""loyalty"": ""26%""}",292205,1,North America +2023-08-06,28727,5686,"[""Monitor""]",3309.11,{},299205,0,Europe +2024-12-25,28728,8413,"[""Monitor"", ""Headphones"", ""Keyboard""]",1241.7,"{""loyalty"": ""7%""}",104382,1,North America +2024-12-16,28729,3018,"[""Phone""]",725.06,{},248661,1,Africa +2023-02-27,28730,4830,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1785.11,{},269134,1,North America +2023-12-02,28731,3750,"[""Wireless Mouse"", ""Monitor""]",3056.61,"{""promo"": ""23%""}",260016,0,South America +2023-05-15,28732,5900,"[""Wireless Mouse"", ""Phone""]",4353.18,"{"""": ""21%""}",102371,1,Europe +2024-04-06,28733,3465,"[""Tablet"", ""Headphones""]",3878.36,{},14930,0,North America +2024-11-14,28734,9837,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1612.11,{},75850,0,Africa +2024-03-21,28735,9841,"[""Phone"", ""Headphones""]",3458.86,{},226070,1,Africa +2023-11-21,28736,5187,"[""Tablet""]",1753.27,{},4971,0,Europe +2023-11-19,28737,1457,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1893.21,"{"""": ""28%""}",118200,1,North America +2024-12-17,28738,9125,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4100.96,"{""seasonal"": ""26%""}",207639,0,Asia +2023-11-03,28739,9581,"[""Phone"", ""Tablet"", ""Charger""]",1470.11,{},140053,1,South America +2024-09-15,28740,3082,"[""Phone""]",3032.84,{},123052,1,Africa +2023-12-31,28741,1781,"[""Phone"", ""Monitor""]",2666.1,{},170816,1,Europe +2023-07-27,28742,2974,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",587.33,"{""seasonal"": ""15%""}",268484,0,North America +2023-03-15,28743,338,"[""Tablet"", ""Headphones"", ""Monitor""]",1268.15,"{"""": ""29%""}",154157,1,Asia +2024-08-06,28744,8447,"[""Tablet""]",2838.9,"{"""": ""25%""}",287151,1,Africa +2024-03-27,28745,9735,"[""Headphones"", ""Wireless Mouse""]",875.02,"{""loyalty"": ""8%""}",209731,1,Africa +2023-05-17,28746,9498,"[""Laptop"", ""Charger""]",3979.89,{},282484,1,Africa +2023-12-04,28747,1923,"[""Monitor"", ""Tablet"", ""Keyboard""]",360.78,{},149325,1,Africa +2023-05-01,28748,2297,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2580.48,{},15430,0,Europe +2023-01-23,28749,3188,"[""Keyboard"", ""Laptop""]",1432.8,{},116825,0,Asia +2023-02-25,28750,9300,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2330.48,"{"""": ""7%""}",143282,0,North America +2024-01-28,28751,7842,"[""Laptop"", ""Headphones""]",2948.46,{},105529,0,Asia +2023-10-13,28752,1571,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2784.97,"{""promo"": ""21%""}",168155,1,Europe +2024-06-17,28753,7780,"[""Laptop""]",2104.23,{},16509,0,Africa +2024-09-23,28754,2274,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",235.44,{},37653,0,Asia +2024-12-21,28755,5393,"[""Keyboard"", ""Wireless Mouse""]",2800.91,"{"""": ""7%""}",48647,0,Asia +2024-01-13,28756,1186,"[""Tablet""]",3763.14,{},122767,1,Asia +2024-08-01,28757,919,"[""Tablet""]",4159.52,"{""promo"": ""18%""}",270275,1,South America +2024-11-03,28758,199,"[""Keyboard"", ""Phone""]",3317.1,"{""promo"": ""15%""}",247869,1,Asia +2024-07-16,28759,655,"[""Charger"", ""Phone""]",2228.7,"{""loyalty"": ""20%""}",69194,1,South America +2023-09-17,28760,5264,"[""Phone""]",4879.58,{},225413,0,South America +2024-09-14,28761,4615,"[""Keyboard"", ""Wireless Mouse""]",4439.88,"{""promo"": ""24%""}",32550,1,North America +2024-01-19,28762,2796,"[""Phone"", ""Tablet"", ""Charger""]",4052.95,{},173541,0,Europe +2024-11-16,28763,1948,"[""Phone"", ""Headphones"", ""Charger""]",1640.41,{},25843,0,North America +2023-05-01,28764,5171,"[""Charger"", ""Monitor""]",2702.27,{},82040,1,South America +2024-09-17,28765,3990,"[""Tablet"", ""Wireless Mouse""]",1340.71,{},126635,0,North America +2024-11-09,28766,1793,"[""Tablet""]",1209.63,"{""seasonal"": ""22%""}",141980,0,South America +2023-08-20,28767,5194,"[""Keyboard"", ""Wireless Mouse""]",2478.49,"{""promo"": ""5%""}",57520,1,Africa +2023-03-29,28768,5844,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2244.47,{},166691,0,North America +2023-05-30,28769,6945,"[""Phone"", ""Wireless Mouse""]",2743.16,{},153530,1,Europe +2023-03-17,28770,957,"[""Headphones"", ""Phone""]",4784.09,"{"""": ""19%""}",72827,1,Asia +2024-07-20,28771,784,"[""Charger"", ""Laptop""]",1048.24,"{""promo"": ""20%""}",130911,0,Europe +2023-01-03,28772,7117,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",258.36,{},283951,1,Africa +2023-06-25,28773,8772,"[""Laptop"", ""Headphones"", ""Monitor""]",175.04,"{""promo"": ""12%""}",61458,1,South America +2024-04-29,28774,940,"[""Monitor"", ""Headphones"", ""Phone""]",1300.98,"{""seasonal"": ""30%""}",266322,1,North America +2024-11-02,28775,9401,"[""Keyboard""]",3310.61,{},23974,1,South America +2023-03-21,28776,4062,"[""Headphones"", ""Laptop"", ""Charger""]",4194.79,{},10172,0,North America +2023-02-05,28777,7391,"[""Tablet""]",3281.02,"{"""": ""9%""}",216799,1,Africa +2024-02-28,28778,8055,"[""Tablet""]",2574.16,"{""seasonal"": ""20%""}",101995,0,Africa +2023-04-21,28779,9271,"[""Tablet"", ""Charger""]",4883.76,"{""seasonal"": ""25%""}",241725,0,Africa +2024-05-04,28780,6368,"[""Charger"", ""Laptop"", ""Phone""]",1917.4,{},222616,0,South America +2024-11-28,28781,9114,"[""Monitor"", ""Keyboard"", ""Charger""]",3914.59,{},47711,0,Asia +2024-02-25,28782,5204,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1962.61,"{""seasonal"": ""10%""}",249072,0,Europe +2024-03-27,28783,1022,"[""Laptop""]",3553.4,{},72975,1,Asia +2023-02-22,28784,2425,"[""Phone"", ""Laptop""]",980.32,"{"""": ""26%""}",125735,1,North America +2023-05-25,28785,229,"[""Headphones"", ""Charger"", ""Keyboard""]",1553.44,{},194837,0,Europe +2023-09-30,28786,5273,"[""Keyboard"", ""Wireless Mouse""]",2388.44,{},247417,1,Europe +2023-09-27,28787,2584,"[""Phone"", ""Headphones""]",3904.57,"{""promo"": ""21%""}",21466,0,Africa +2024-06-16,28788,7444,"[""Tablet"", ""Keyboard"", ""Charger""]",1033.7,"{""seasonal"": ""25%""}",5902,1,Europe +2023-08-05,28789,4155,"[""Charger"", ""Phone""]",4572.56,{},87899,1,Asia +2024-11-16,28790,1036,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",785.44,"{""promo"": ""6%""}",225888,1,North America +2023-11-04,28791,7769,"[""Charger"", ""Headphones""]",435.31,{},84287,1,South America +2024-10-26,28792,7140,"[""Laptop""]",2752.8,{},200015,0,South America +2024-04-27,28793,5016,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1067.83,{},242297,1,Africa +2023-12-03,28794,980,"[""Laptop"", ""Keyboard""]",2670.27,{},85091,1,North America +2024-09-03,28795,1054,"[""Phone"", ""Monitor""]",4242.47,"{""loyalty"": ""22%""}",197020,1,Europe +2023-04-14,28796,9351,"[""Laptop""]",3656.36,"{""promo"": ""22%""}",177688,0,Africa +2023-10-04,28797,8301,"[""Laptop""]",4767.13,"{""seasonal"": ""30%""}",219707,1,Asia +2024-03-03,28798,7081,"[""Wireless Mouse""]",4805.33,{},75837,0,South America +2023-04-23,28799,841,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2417.94,"{""promo"": ""12%""}",9528,1,Europe +2024-06-02,28800,432,"[""Headphones""]",4467.05,"{"""": ""8%""}",22368,1,Europe +2024-04-23,28801,930,"[""Laptop"", ""Monitor""]",3961.71,"{"""": ""10%""}",216971,1,Europe +2023-07-06,28802,3879,"[""Charger"", ""Laptop""]",434.81,{},189633,0,Asia +2023-02-03,28803,2110,"[""Keyboard""]",2300.17,"{""loyalty"": ""7%""}",175888,1,North America +2023-01-01,28804,6936,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3340.17,{},297884,1,Europe +2024-06-20,28805,4239,"[""Keyboard"", ""Phone"", ""Monitor""]",3142.82,{},136595,0,North America +2024-11-27,28806,5982,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2338.67,"{""promo"": ""22%""}",164762,0,Africa +2024-06-03,28807,2026,"[""Tablet"", ""Laptop""]",1272.49,{},243064,1,Africa +2024-04-12,28808,3849,"[""Monitor"", ""Tablet""]",2836.15,"{""loyalty"": ""9%""}",293725,0,Africa +2024-11-28,28809,1659,"[""Laptop"", ""Charger"", ""Phone""]",147.03,{},102939,1,North America +2024-01-23,28810,9202,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3545.64,{},40589,0,Europe +2023-01-15,28811,505,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3130.44,{},130955,1,Europe +2023-12-28,28812,1117,"[""Keyboard"", ""Laptop"", ""Phone""]",623.72,"{""seasonal"": ""13%""}",286900,1,North America +2024-04-03,28813,5273,"[""Keyboard"", ""Phone""]",4486.53,"{""promo"": ""6%""}",18792,0,Asia +2024-09-07,28814,7249,"[""Keyboard"", ""Laptop""]",4961.72,"{""loyalty"": ""5%""}",20097,1,Europe +2023-12-25,28815,6614,"[""Phone""]",1607.4,"{""promo"": ""20%""}",239077,0,Africa +2024-12-19,28816,1691,"[""Monitor""]",4060.66,{},61139,0,South America +2024-07-23,28817,6587,"[""Charger""]",4750.83,"{"""": ""8%""}",266572,1,Asia +2024-06-13,28818,8693,"[""Charger"", ""Headphones"", ""Phone""]",2467.15,"{""loyalty"": ""30%""}",115848,0,Africa +2023-01-29,28819,5401,"[""Charger"", ""Tablet""]",2818.74,{},124337,0,Africa +2024-09-04,28820,4447,"[""Laptop""]",1644.22,"{"""": ""30%""}",151542,1,South America +2024-01-14,28821,8073,"[""Laptop"", ""Charger""]",1900.99,{},216701,1,Europe +2024-06-12,28822,7636,"[""Keyboard"", ""Tablet"", ""Laptop""]",3542.54,{},272157,1,Asia +2023-07-09,28823,1979,"[""Charger"", ""Keyboard""]",794.44,"{""seasonal"": ""7%""}",230270,0,Asia +2024-07-05,28824,3930,"[""Tablet""]",1761.3,{},217646,1,Europe +2023-01-22,28825,830,"[""Phone""]",4618.45,{},107921,1,Asia +2024-04-14,28826,5672,"[""Keyboard""]",4347.88,"{""loyalty"": ""18%""}",147465,0,Europe +2023-05-22,28827,9453,"[""Laptop""]",750.38,"{""loyalty"": ""8%""}",51481,0,South America +2023-01-14,28828,7396,"[""Keyboard""]",2872.22,{},159732,1,North America +2023-03-20,28829,4416,"[""Charger"", ""Tablet"", ""Phone""]",4115.89,{},180421,0,North America +2024-11-20,28830,5812,"[""Wireless Mouse""]",1292.03,"{""promo"": ""27%""}",170232,0,South America +2023-11-12,28831,4042,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2943.97,{},184353,0,Africa +2023-09-16,28832,575,"[""Headphones"", ""Keyboard""]",172.48,"{""loyalty"": ""17%""}",86417,1,Africa +2023-07-24,28833,2986,"[""Wireless Mouse""]",631.9,"{""promo"": ""25%""}",248444,1,North America +2023-07-30,28834,622,"[""Headphones"", ""Charger"", ""Monitor""]",728.89,{},63880,1,North America +2023-12-24,28835,9768,"[""Monitor""]",4592.82,{},280300,0,North America +2024-04-18,28836,9169,"[""Tablet"", ""Monitor""]",1806.19,"{""seasonal"": ""12%""}",95045,1,Europe +2024-12-28,28837,9488,"[""Tablet""]",3187.16,"{""promo"": ""20%""}",7276,1,Europe +2024-02-09,28838,102,"[""Tablet"", ""Keyboard""]",520.14,"{""promo"": ""8%""}",53945,1,Europe +2024-02-16,28839,813,"[""Phone""]",2835.52,{},200328,0,Asia +2024-02-03,28840,8549,"[""Keyboard"", ""Laptop""]",3310.46,"{""loyalty"": ""30%""}",50951,1,Europe +2024-12-10,28841,251,"[""Laptop"", ""Keyboard"", ""Tablet""]",4352.33,"{"""": ""28%""}",36133,0,Africa +2023-01-23,28842,7725,"[""Monitor"", ""Headphones""]",4820.68,{},181404,1,North America +2024-04-23,28843,5775,"[""Wireless Mouse""]",4265.68,{},99069,1,North America +2024-02-01,28844,6765,"[""Tablet"", ""Phone""]",1242.78,{},190319,1,South America +2024-06-28,28845,1077,"[""Keyboard""]",3133.28,"{""promo"": ""15%""}",7317,1,Africa +2024-11-15,28846,6299,"[""Charger"", ""Tablet""]",3791.01,"{"""": ""29%""}",91112,0,Europe +2024-07-06,28847,6965,"[""Wireless Mouse""]",1073.32,"{""loyalty"": ""28%""}",47983,1,North America +2023-12-23,28848,7602,"[""Tablet"", ""Phone""]",369.29,{},44026,1,Europe +2023-09-16,28849,5276,"[""Tablet"", ""Headphones""]",414.19,{},214663,1,Africa +2023-07-06,28850,7265,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3344.46,"{""promo"": ""14%""}",187175,0,South America +2023-08-31,28851,9888,"[""Keyboard"", ""Tablet"", ""Charger""]",1388.49,{},205102,1,Asia +2023-01-21,28852,9338,"[""Monitor""]",1231.54,{},77288,0,Europe +2024-05-09,28853,9685,"[""Headphones"", ""Keyboard""]",3831.49,{},68933,1,Europe +2024-12-05,28854,8027,"[""Monitor""]",1826.89,{},265045,1,North America +2023-04-02,28855,1356,"[""Laptop"", ""Charger""]",281.64,{},167895,0,Asia +2024-02-24,28856,7798,"[""Tablet"", ""Phone""]",743.65,{},230111,0,South America +2024-03-31,28857,4970,"[""Monitor"", ""Phone""]",903.51,{},9293,1,Africa +2024-03-01,28858,4281,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4870.03,"{""seasonal"": ""20%""}",190820,1,Asia +2023-05-07,28859,813,"[""Tablet"", ""Keyboard""]",537.8,"{"""": ""13%""}",227976,0,Africa +2023-10-11,28860,6799,"[""Charger"", ""Laptop"", ""Monitor""]",4631.51,{},12255,0,South America +2024-05-21,28861,8338,"[""Headphones"", ""Keyboard""]",2289.05,"{"""": ""26%""}",151609,1,Africa +2024-10-26,28862,7796,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1809.29,"{""seasonal"": ""6%""}",165025,1,Europe +2023-02-09,28863,7174,"[""Monitor"", ""Tablet"", ""Keyboard""]",3692.45,"{""loyalty"": ""29%""}",64957,0,Asia +2023-01-07,28864,2249,"[""Keyboard""]",1920.64,"{"""": ""23%""}",112638,1,North America +2024-08-05,28865,2909,"[""Tablet"", ""Charger""]",1334.86,"{"""": ""25%""}",27537,0,Europe +2024-06-29,28866,3753,"[""Laptop""]",2990.9,{},96009,1,South America +2023-05-21,28867,9046,"[""Headphones"", ""Wireless Mouse""]",2033.58,{},126543,0,Africa +2024-10-27,28868,7060,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",188.8,{},269985,1,Africa +2024-12-09,28869,660,"[""Laptop"", ""Headphones""]",4942.37,{},49733,1,North America +2023-07-07,28870,980,"[""Tablet"", ""Charger"", ""Monitor""]",2063.07,{},199694,0,South America +2024-08-25,28871,6333,"[""Charger"", ""Wireless Mouse""]",3377.24,"{""promo"": ""24%""}",108689,0,South America +2024-10-01,28872,8142,"[""Laptop"", ""Headphones"", ""Monitor""]",878.04,{},6962,1,Africa +2024-04-30,28873,831,"[""Keyboard"", ""Monitor""]",948.71,"{""seasonal"": ""10%""}",97799,0,North America +2024-03-06,28874,1854,"[""Laptop""]",3638.45,"{""loyalty"": ""23%""}",103204,1,Africa +2023-01-27,28875,7123,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4532.96,{},96750,0,South America +2024-11-18,28876,3446,"[""Phone"", ""Tablet""]",594.38,"{""promo"": ""17%""}",174525,1,Africa +2023-03-27,28877,398,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4942.27,"{""seasonal"": ""15%""}",81386,1,Africa +2023-02-24,28878,2450,"[""Phone""]",2774.08,"{""seasonal"": ""29%""}",166878,1,North America +2023-05-16,28879,2411,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1753.26,"{""seasonal"": ""13%""}",142483,0,Asia +2024-09-01,28880,9503,"[""Monitor"", ""Keyboard""]",4455.26,{},171152,1,Europe +2023-07-09,28881,2520,"[""Keyboard""]",4845.94,"{""loyalty"": ""30%""}",231340,1,South America +2023-05-22,28882,267,"[""Keyboard""]",677.78,"{"""": ""16%""}",21970,1,South America +2023-03-02,28883,4335,"[""Headphones""]",3557.74,{},226618,1,South America +2024-03-10,28884,3630,"[""Tablet"", ""Monitor"", ""Keyboard""]",3104.11,"{""loyalty"": ""7%""}",12771,1,Asia +2023-02-25,28885,9410,"[""Monitor"", ""Tablet"", ""Charger""]",1004.54,{},267005,0,South America +2024-07-04,28886,5659,"[""Monitor""]",3339.83,{},213351,0,Europe +2024-01-31,28887,8594,"[""Laptop""]",4047.85,{},204235,0,North America +2023-05-23,28888,1742,"[""Tablet""]",4532.2,"{"""": ""22%""}",73132,0,North America +2023-11-26,28889,8244,"[""Keyboard"", ""Charger""]",1388.21,{},112499,0,South America +2023-02-09,28890,7331,"[""Keyboard"", ""Laptop""]",3313.81,{},78908,0,Asia +2023-12-10,28891,9636,"[""Tablet"", ""Phone"", ""Keyboard""]",2342.64,{},144416,0,Europe +2024-08-03,28892,7534,"[""Laptop"", ""Keyboard""]",806.44,"{""loyalty"": ""16%""}",247382,1,Europe +2023-03-04,28893,3704,"[""Tablet"", ""Laptop"", ""Monitor""]",2015.63,"{""promo"": ""14%""}",93826,1,Asia +2023-05-25,28894,5199,"[""Monitor""]",2459.67,{},206168,1,North America +2023-02-19,28895,7332,"[""Keyboard""]",1298.95,"{"""": ""14%""}",134695,1,Europe +2024-05-29,28896,538,"[""Tablet"", ""Headphones""]",4208.34,"{""seasonal"": ""12%""}",234835,1,Africa +2023-08-27,28897,5287,"[""Laptop"", ""Monitor""]",299.32,{},83291,0,Asia +2023-04-26,28898,4174,"[""Monitor""]",4049.0,"{"""": ""23%""}",180269,0,South America +2023-09-29,28899,4607,"[""Phone"", ""Keyboard"", ""Headphones""]",2911.06,{},241372,1,Africa +2023-03-11,28900,8879,"[""Charger""]",2888.12,{},263543,0,Asia +2023-11-15,28901,3527,"[""Tablet"", ""Wireless Mouse""]",4321.72,{},231296,1,Asia +2023-09-01,28902,3704,"[""Laptop"", ""Headphones""]",2622.53,"{""seasonal"": ""5%""}",155924,1,South America +2024-03-28,28903,2459,"[""Monitor""]",1128.03,"{""loyalty"": ""9%""}",100880,1,North America +2023-12-03,28904,9033,"[""Monitor"", ""Laptop""]",1102.45,{},142169,1,Europe +2024-02-25,28905,3964,"[""Wireless Mouse""]",1319.46,{},98826,1,North America +2023-01-24,28906,2362,"[""Wireless Mouse"", ""Laptop""]",693.24,"{""seasonal"": ""25%""}",267605,0,North America +2023-05-18,28907,8137,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",114.31,"{""loyalty"": ""28%""}",76573,1,Europe +2024-12-03,28908,8128,"[""Keyboard"", ""Charger""]",517.76,"{"""": ""5%""}",92736,0,Europe +2023-07-28,28909,6066,"[""Laptop""]",4710.51,"{"""": ""10%""}",211232,0,Europe +2023-07-27,28910,6967,"[""Monitor"", ""Phone"", ""Keyboard""]",3914.46,{},102188,1,Asia +2023-06-09,28911,2154,"[""Phone"", ""Charger"", ""Headphones""]",2155.93,{},189357,1,Asia +2024-02-09,28912,4975,"[""Wireless Mouse""]",4827.21,"{"""": ""30%""}",111797,1,Asia +2023-09-10,28913,9088,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3854.77,"{""promo"": ""30%""}",72538,0,Asia +2024-06-02,28914,98,"[""Laptop"", ""Tablet""]",705.13,{},153649,0,Europe +2024-03-03,28915,1066,"[""Headphones"", ""Wireless Mouse""]",935.0,"{""promo"": ""8%""}",1968,1,North America +2023-07-19,28916,6814,"[""Keyboard""]",3421.5,{},117140,0,South America +2023-06-29,28917,6562,"[""Charger""]",1464.34,{},98778,1,Europe +2024-07-10,28918,4940,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1761.09,{},217786,0,South America +2024-02-02,28919,4992,"[""Phone"", ""Laptop""]",4059.82,"{"""": ""17%""}",126922,1,Europe +2024-03-03,28920,2291,"[""Keyboard"", ""Tablet"", ""Laptop""]",1294.76,{},172450,0,Asia +2024-10-21,28921,9300,"[""Phone""]",778.09,"{"""": ""20%""}",82605,0,Asia +2023-09-05,28922,9873,"[""Wireless Mouse"", ""Monitor""]",1597.95,{},176289,0,South America +2023-01-26,28923,7795,"[""Charger"", ""Laptop"", ""Phone""]",1286.34,{},14996,0,North America +2023-03-17,28924,3262,"[""Tablet"", ""Monitor"", ""Keyboard""]",4372.2,"{""promo"": ""30%""}",171448,1,North America +2023-09-07,28925,1363,"[""Wireless Mouse"", ""Headphones""]",2088.64,"{""loyalty"": ""14%""}",157945,1,Europe +2024-04-09,28926,4432,"[""Charger"", ""Tablet""]",1828.77,{},280308,1,Asia +2023-07-12,28927,1919,"[""Phone""]",995.15,"{""loyalty"": ""7%""}",290510,0,Africa +2023-10-22,28928,1974,"[""Charger"", ""Tablet""]",3814.47,{},233028,1,South America +2023-05-21,28929,4478,"[""Charger"", ""Headphones"", ""Monitor""]",3847.34,{},257553,0,Asia +2023-01-09,28930,1652,"[""Keyboard"", ""Wireless Mouse""]",2389.27,"{"""": ""17%""}",239793,1,South America +2024-09-24,28931,9075,"[""Monitor"", ""Headphones"", ""Charger""]",1767.14,"{""seasonal"": ""13%""}",112366,0,Europe +2024-10-25,28932,7384,"[""Monitor"", ""Headphones""]",1996.74,{},209375,1,Europe +2023-03-02,28933,3587,"[""Phone"", ""Keyboard""]",3509.56,"{""seasonal"": ""24%""}",158251,1,North America +2023-07-02,28934,8453,"[""Keyboard"", ""Tablet"", ""Headphones""]",4467.35,"{""loyalty"": ""25%""}",246572,0,Africa +2024-05-13,28935,24,"[""Phone"", ""Tablet""]",1529.86,{},225233,1,South America +2024-05-29,28936,4171,"[""Charger"", ""Phone""]",206.53,{},268221,1,South America +2024-02-24,28937,2353,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",789.95,"{"""": ""7%""}",62697,1,Asia +2024-08-30,28938,4536,"[""Monitor""]",492.9,"{""loyalty"": ""5%""}",288383,1,South America +2023-05-09,28939,7092,"[""Wireless Mouse""]",1860.57,"{"""": ""26%""}",120268,1,Europe +2023-06-15,28940,6743,"[""Charger""]",1701.42,"{"""": ""13%""}",219370,1,Asia +2024-06-16,28941,8942,"[""Keyboard""]",4527.13,"{""seasonal"": ""18%""}",296381,1,Africa +2023-09-30,28942,4320,"[""Tablet"", ""Headphones"", ""Laptop""]",850.09,"{"""": ""17%""}",117265,1,Asia +2024-02-13,28943,972,"[""Phone""]",3047.45,"{""loyalty"": ""22%""}",243600,1,Africa +2024-11-15,28944,1598,"[""Tablet"", ""Keyboard""]",4484.26,"{"""": ""12%""}",7170,0,Asia +2023-03-30,28945,3903,"[""Phone"", ""Monitor"", ""Laptop""]",2192.78,"{""seasonal"": ""13%""}",12225,0,Asia +2023-05-10,28946,9972,"[""Charger"", ""Wireless Mouse""]",2127.06,{},47288,1,North America +2023-10-02,28947,6301,"[""Headphones""]",100.03,"{"""": ""17%""}",109304,0,North America +2024-04-01,28948,410,"[""Laptop"", ""Monitor"", ""Phone""]",2291.57,{},88925,1,Africa +2023-12-17,28949,3738,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1835.74,"{""promo"": ""7%""}",91117,0,Asia +2023-10-24,28950,3571,"[""Wireless Mouse"", ""Laptop""]",4463.6,"{""seasonal"": ""20%""}",257234,0,North America +2023-09-06,28951,8341,"[""Tablet""]",472.22,"{""loyalty"": ""22%""}",131503,1,Europe +2024-10-18,28952,9255,"[""Wireless Mouse"", ""Tablet""]",2252.14,{},126001,1,Africa +2024-08-09,28953,5762,"[""Tablet""]",1832.0,"{""promo"": ""10%""}",52744,0,South America +2024-07-21,28954,1474,"[""Keyboard"", ""Headphones""]",3831.86,{},151319,1,South America +2024-04-18,28955,6908,"[""Charger""]",2031.3,"{""seasonal"": ""17%""}",146295,1,Europe +2024-05-09,28956,2107,"[""Tablet"", ""Headphones"", ""Charger""]",2426.06,{},109205,0,Africa +2023-10-24,28957,4666,"[""Phone"", ""Keyboard"", ""Charger""]",461.71,"{""loyalty"": ""18%""}",273474,1,North America +2024-02-24,28958,9717,"[""Headphones"", ""Phone"", ""Keyboard""]",1080.44,{},36527,1,Asia +2023-07-20,28959,8428,"[""Headphones""]",4958.13,{},294842,1,North America +2023-06-24,28960,1679,"[""Headphones"", ""Monitor""]",171.44,"{""loyalty"": ""27%""}",259294,0,Europe +2023-02-09,28961,5688,"[""Headphones""]",3492.46,{},22569,0,South America +2023-10-04,28962,279,"[""Phone"", ""Keyboard""]",4881.38,"{""seasonal"": ""15%""}",97394,1,Africa +2023-02-16,28963,9792,"[""Headphones"", ""Tablet""]",4320.4,"{""promo"": ""15%""}",147637,0,Africa +2023-06-12,28964,6296,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4696.23,{},148119,1,Africa +2024-07-13,28965,1686,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1559.37,"{""seasonal"": ""30%""}",177100,1,Europe +2023-03-05,28966,3227,"[""Headphones"", ""Laptop""]",2694.16,"{""loyalty"": ""21%""}",209441,1,South America +2023-11-15,28967,8797,"[""Keyboard"", ""Headphones""]",4513.46,{},113845,1,North America +2023-05-11,28968,7600,"[""Monitor"", ""Keyboard"", ""Charger""]",1969.92,{},265885,0,North America +2024-03-23,28969,3418,"[""Keyboard"", ""Tablet"", ""Charger""]",2571.02,"{""promo"": ""23%""}",149368,1,North America +2023-08-20,28970,7979,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4849.27,{},201066,1,Asia +2023-05-26,28971,4799,"[""Wireless Mouse"", ""Keyboard""]",3026.42,"{"""": ""26%""}",69140,1,South America +2023-03-24,28972,5837,"[""Headphones"", ""Laptop""]",3474.15,{},41146,1,North America +2023-05-24,28973,8876,"[""Phone""]",3556.44,{},23456,1,South America +2024-05-12,28974,5227,"[""Charger""]",1713.55,{},132022,1,South America +2023-03-15,28975,2999,"[""Headphones"", ""Laptop""]",2901.61,{},215117,0,Asia +2024-01-07,28976,1396,"[""Headphones"", ""Phone"", ""Charger""]",4933.36,{},236809,1,Asia +2024-09-07,28977,4970,"[""Phone"", ""Laptop"", ""Tablet""]",2568.95,"{"""": ""30%""}",72563,0,Africa +2023-03-15,28978,5664,"[""Tablet"", ""Keyboard""]",2390.17,"{""promo"": ""29%""}",69050,0,South America +2024-12-31,28979,257,"[""Headphones"", ""Monitor"", ""Laptop""]",3903.13,"{""promo"": ""15%""}",9094,1,South America +2023-06-27,28980,4729,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2463.06,{},236444,1,Europe +2024-10-02,28981,7095,"[""Charger""]",4466.49,"{""promo"": ""9%""}",212478,0,Africa +2023-09-30,28982,2823,"[""Tablet""]",3434.57,"{"""": ""10%""}",179322,1,Asia +2023-02-15,28983,2776,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4824.94,{},117292,1,South America +2024-12-01,28984,2170,"[""Wireless Mouse"", ""Laptop""]",4428.05,"{"""": ""18%""}",205334,0,Asia +2024-10-13,28985,3298,"[""Tablet"", ""Monitor"", ""Charger""]",3267.55,{},152301,0,South America +2024-07-11,28986,8488,"[""Wireless Mouse"", ""Tablet""]",1088.82,"{"""": ""9%""}",40593,1,North America +2023-10-12,28987,8744,"[""Tablet"", ""Charger""]",2430.01,"{""promo"": ""23%""}",248376,0,South America +2023-08-18,28988,7857,"[""Headphones""]",4728.82,{},189625,0,Europe +2024-11-09,28989,630,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3127.01,"{"""": ""5%""}",199812,1,Africa +2023-11-25,28990,59,"[""Monitor""]",2407.2,{},256496,1,South America +2023-08-10,28991,9672,"[""Headphones"", ""Monitor"", ""Charger""]",3950.36,"{""seasonal"": ""22%""}",257242,0,Asia +2024-12-02,28992,2597,"[""Charger"", ""Monitor"", ""Keyboard""]",2522.9,{},5221,1,South America +2023-07-03,28993,8532,"[""Charger"", ""Monitor"", ""Phone""]",3301.26,{},21719,0,Africa +2024-11-15,28994,7840,"[""Headphones"", ""Charger"", ""Laptop""]",3858.35,"{""seasonal"": ""23%""}",284142,0,Asia +2023-07-08,28995,6472,"[""Headphones"", ""Charger""]",2556.56,"{""promo"": ""29%""}",165605,0,Europe +2023-12-13,28996,1670,"[""Phone""]",3168.38,"{""seasonal"": ""16%""}",43685,1,Africa +2023-06-03,28997,7172,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4074.0,{},271028,1,Asia +2024-02-12,28998,5577,"[""Keyboard""]",4897.94,"{"""": ""15%""}",221225,0,Africa +2024-11-09,28999,6750,"[""Charger""]",2081.74,"{""promo"": ""10%""}",140205,1,Africa +2024-06-13,29000,8118,"[""Keyboard"", ""Charger"", ""Tablet""]",2097.45,"{""promo"": ""12%""}",32005,1,Africa +2023-11-14,29001,6637,"[""Phone"", ""Charger""]",4117.24,{},86074,0,North America +2023-10-26,29002,409,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",617.15,{},249750,1,South America +2024-06-29,29003,9982,"[""Monitor"", ""Phone""]",804.72,"{""seasonal"": ""22%""}",114598,1,Europe +2023-03-12,29004,4949,"[""Tablet"", ""Phone""]",363.9,"{""promo"": ""24%""}",49378,1,Asia +2024-03-07,29005,5425,"[""Monitor""]",1418.23,{},63969,1,Asia +2023-01-12,29006,5225,"[""Laptop"", ""Monitor""]",4019.81,{},99325,0,Asia +2023-12-27,29007,3391,"[""Tablet""]",2210.97,{},280365,0,Europe +2023-01-17,29008,5237,"[""Headphones"", ""Phone""]",3661.56,{},179035,1,North America +2023-01-31,29009,9968,"[""Headphones"", ""Laptop"", ""Phone""]",3018.77,"{""promo"": ""28%""}",239913,0,Asia +2024-07-22,29010,5366,"[""Keyboard""]",4902.67,{},102539,0,North America +2023-06-19,29011,6729,"[""Charger"", ""Headphones""]",4821.07,{},181803,0,Asia +2024-07-08,29012,4006,"[""Tablet"", ""Keyboard""]",73.79,"{""seasonal"": ""10%""}",266742,0,Asia +2024-08-26,29013,5870,"[""Monitor""]",1413.15,{},15202,1,North America +2024-04-19,29014,1400,"[""Charger""]",345.43,"{""seasonal"": ""29%""}",218648,0,North America +2023-01-10,29015,9587,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3042.6,"{""loyalty"": ""24%""}",273951,1,Europe +2023-09-11,29016,1096,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1773.4,"{""loyalty"": ""9%""}",265245,0,Asia +2024-10-01,29017,7574,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",248.2,{},155121,1,Asia +2023-10-19,29018,3590,"[""Charger"", ""Headphones""]",164.18,"{"""": ""22%""}",46038,0,Africa +2024-11-05,29019,2565,"[""Keyboard"", ""Phone"", ""Headphones""]",2042.13,"{""loyalty"": ""20%""}",85167,1,Asia +2023-01-29,29020,3504,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2873.73,{},239738,1,South America +2023-02-17,29021,9983,"[""Tablet""]",1591.13,{},203357,1,Asia +2023-12-21,29022,5810,"[""Tablet""]",2882.49,{},1563,1,Asia +2023-06-09,29023,5680,"[""Monitor""]",3401.61,"{""promo"": ""16%""}",289740,0,Asia +2023-03-17,29024,9744,"[""Laptop"", ""Phone"", ""Tablet""]",2387.91,{},284576,1,Europe +2023-03-23,29025,771,"[""Laptop""]",3729.7,{},225695,1,Asia +2024-02-18,29026,7341,"[""Charger"", ""Keyboard""]",2795.91,"{""loyalty"": ""29%""}",122593,1,Africa +2023-04-27,29027,7846,"[""Tablet"", ""Charger"", ""Headphones""]",2853.58,{},282839,1,Asia +2023-09-17,29028,5646,"[""Phone"", ""Monitor""]",4126.95,"{""promo"": ""30%""}",33171,1,South America +2024-10-27,29029,1863,"[""Keyboard"", ""Headphones""]",2183.54,{},170140,1,Asia +2023-11-25,29030,7687,"[""Headphones""]",3631.37,"{"""": ""15%""}",67656,1,Europe +2024-10-22,29031,4412,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4087.62,{},44875,0,Europe +2023-10-23,29032,6808,"[""Phone""]",4525.36,{},133421,1,North America +2024-06-24,29033,7018,"[""Keyboard"", ""Headphones""]",4744.09,{},204477,1,Europe +2024-02-28,29034,6497,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1937.19,{},31048,1,South America +2024-01-06,29035,1005,"[""Phone"", ""Keyboard""]",173.25,{},228956,1,Asia +2023-01-02,29036,2594,"[""Wireless Mouse""]",63.14,{},299941,1,South America +2023-11-21,29037,938,"[""Headphones"", ""Charger"", ""Phone""]",2135.09,"{""promo"": ""30%""}",158560,0,Asia +2024-09-26,29038,9750,"[""Keyboard""]",1911.43,{},80859,1,South America +2023-01-31,29039,3739,"[""Monitor""]",2590.76,{},101440,1,Asia +2024-01-24,29040,8348,"[""Phone"", ""Laptop""]",4958.21,"{""seasonal"": ""12%""}",225553,1,South America +2024-08-06,29041,4463,"[""Laptop"", ""Phone""]",4945.22,"{"""": ""27%""}",260288,1,Asia +2023-04-29,29042,7786,"[""Wireless Mouse""]",4559.63,"{""loyalty"": ""26%""}",207525,0,South America +2023-09-24,29043,7535,"[""Wireless Mouse"", ""Monitor""]",1072.49,"{""promo"": ""9%""}",18686,1,North America +2023-07-15,29044,2882,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3573.26,{},261743,0,Asia +2023-09-03,29045,9632,"[""Laptop""]",541.51,{},22857,0,North America +2023-06-04,29046,3919,"[""Keyboard""]",3147.56,{},208030,0,North America +2023-05-04,29047,7051,"[""Charger""]",102.9,{},82929,1,North America +2023-10-02,29048,5748,"[""Monitor"", ""Phone""]",4996.08,{},80758,1,Africa +2023-10-30,29049,7521,"[""Headphones"", ""Keyboard"", ""Tablet""]",3602.99,{},133267,0,North America +2024-12-20,29050,3389,"[""Wireless Mouse"", ""Headphones""]",3545.22,{},216928,1,Europe +2023-01-02,29051,6466,"[""Headphones"", ""Monitor""]",3855.8,"{""loyalty"": ""29%""}",183768,0,South America +2024-09-12,29052,1756,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4541.42,"{""seasonal"": ""21%""}",215689,1,South America +2024-02-02,29053,3667,"[""Headphones"", ""Tablet"", ""Monitor""]",504.74,"{""loyalty"": ""27%""}",275079,0,Europe +2023-09-19,29054,5274,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2978.33,{},220679,1,South America +2024-10-25,29055,9462,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",688.12,"{""seasonal"": ""17%""}",79084,1,Asia +2023-07-30,29056,7846,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2283.84,{},18666,1,Africa +2023-05-26,29057,9061,"[""Tablet"", ""Wireless Mouse""]",3308.14,{},129138,1,Europe +2024-07-14,29058,2439,"[""Wireless Mouse""]",3415.61,"{""loyalty"": ""10%""}",170937,1,South America +2023-06-10,29059,4153,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3951.85,{},251584,1,Europe +2023-04-21,29060,7468,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1509.23,"{"""": ""14%""}",104604,0,South America +2023-11-01,29061,6971,"[""Phone"", ""Tablet""]",1643.03,"{""promo"": ""7%""}",278272,0,South America +2024-02-26,29062,6387,"[""Monitor""]",4282.75,"{""seasonal"": ""10%""}",137306,0,South America +2024-05-12,29063,6389,"[""Wireless Mouse""]",4196.51,"{"""": ""10%""}",61666,0,South America +2023-04-04,29064,7243,"[""Keyboard"", ""Monitor""]",234.67,{},26046,1,South America +2024-01-24,29065,8068,"[""Headphones"", ""Charger"", ""Phone""]",4027.66,"{""loyalty"": ""6%""}",133937,0,Africa +2023-09-22,29066,9277,"[""Laptop"", ""Tablet"", ""Charger""]",3726.37,"{""promo"": ""18%""}",298965,0,South America +2024-08-01,29067,583,"[""Tablet""]",789.38,"{""seasonal"": ""25%""}",181247,0,South America +2024-02-19,29068,3205,"[""Laptop""]",535.01,{},56779,1,South America +2023-12-24,29069,4784,"[""Keyboard"", ""Charger"", ""Phone""]",1284.67,"{""loyalty"": ""25%""}",87554,1,North America +2023-12-29,29070,4661,"[""Headphones"", ""Monitor"", ""Charger""]",1921.51,{},269761,1,Africa +2024-12-18,29071,8538,"[""Phone"", ""Charger"", ""Laptop""]",393.81,{},129262,1,Europe +2023-04-03,29072,1698,"[""Monitor""]",2400.45,"{"""": ""24%""}",247096,0,Africa +2024-05-16,29073,7125,"[""Headphones"", ""Tablet"", ""Charger""]",4037.28,{},185920,1,Africa +2024-10-29,29074,2917,"[""Headphones""]",4109.2,"{""seasonal"": ""5%""}",87295,1,Africa +2024-08-18,29075,6003,"[""Phone""]",2730.19,"{""promo"": ""11%""}",97945,1,South America +2024-06-15,29076,3796,"[""Monitor"", ""Phone"", ""Keyboard""]",4031.01,{},254334,0,North America +2023-11-17,29077,1714,"[""Wireless Mouse"", ""Keyboard""]",194.27,{},170431,1,South America +2024-07-28,29078,2068,"[""Keyboard"", ""Tablet""]",1869.73,"{""seasonal"": ""20%""}",251444,1,South America +2023-06-12,29079,5551,"[""Monitor""]",4406.03,"{""promo"": ""22%""}",288316,0,South America +2024-09-15,29080,5313,"[""Phone"", ""Charger"", ""Laptop""]",2734.15,{},278052,1,Africa +2023-11-16,29081,779,"[""Phone"", ""Monitor"", ""Keyboard""]",3433.19,{},30620,0,Africa +2024-07-08,29082,7295,"[""Monitor"", ""Phone"", ""Tablet""]",2071.12,{},247314,1,Africa +2023-09-23,29083,6812,"[""Monitor"", ""Phone""]",4738.01,"{""promo"": ""7%""}",191460,1,Africa +2024-09-29,29084,2013,"[""Laptop""]",405.41,{},279379,1,North America +2023-07-25,29085,4029,"[""Phone"", ""Wireless Mouse""]",2793.36,{},177486,1,Europe +2023-06-18,29086,9192,"[""Keyboard""]",1047.2,{},153612,0,Europe +2024-05-11,29087,8275,"[""Charger""]",1825.13,{},31497,1,Europe +2023-11-28,29088,7997,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3068.66,{},33501,1,North America +2023-07-23,29089,9407,"[""Wireless Mouse"", ""Charger""]",1823.19,"{""promo"": ""29%""}",215550,1,Europe +2023-12-07,29090,2851,"[""Headphones""]",77.71,"{""promo"": ""11%""}",117245,1,Africa +2024-12-24,29091,2066,"[""Tablet""]",3167.06,{},115706,1,South America +2023-07-02,29092,4769,"[""Monitor"", ""Keyboard""]",3858.33,{},78762,0,North America +2023-11-02,29093,3063,"[""Headphones"", ""Monitor"", ""Phone""]",3489.25,{},225278,0,Asia +2023-05-12,29094,79,"[""Phone""]",2973.61,{},233599,1,Asia +2024-11-10,29095,3257,"[""Phone"", ""Monitor""]",2433.39,{},260419,1,North America +2023-03-14,29096,6044,"[""Tablet"", ""Phone""]",1155.16,"{""loyalty"": ""21%""}",241740,1,Asia +2024-08-25,29097,7654,"[""Charger""]",2055.49,{},96222,1,Asia +2024-03-20,29098,7434,"[""Monitor""]",2719.59,"{""seasonal"": ""25%""}",5968,0,Europe +2023-08-05,29099,4207,"[""Phone""]",1412.99,"{""seasonal"": ""24%""}",222796,0,North America +2024-11-18,29100,7609,"[""Headphones"", ""Monitor"", ""Charger""]",3480.4,{},127619,1,Asia +2023-03-25,29101,8520,"[""Keyboard"", ""Charger""]",2703.13,{},243567,1,North America +2024-02-19,29102,9196,"[""Wireless Mouse"", ""Laptop""]",3849.18,{},216539,0,Europe +2023-06-09,29103,4569,"[""Headphones""]",4494.6,{},222771,1,Europe +2024-05-10,29104,4718,"[""Tablet"", ""Monitor""]",3903.84,{},51642,1,North America +2024-03-09,29105,109,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",708.64,{},22064,1,South America +2023-08-31,29106,3852,"[""Keyboard""]",2750.01,"{""promo"": ""28%""}",243651,0,Europe +2024-01-28,29107,3326,"[""Phone"", ""Charger""]",3490.08,"{""seasonal"": ""30%""}",54952,1,Asia +2024-07-07,29108,4400,"[""Phone"", ""Headphones""]",2035.3,{},263004,0,North America +2023-09-29,29109,9883,"[""Charger"", ""Monitor"", ""Phone""]",4784.12,{},293657,1,Europe +2023-03-22,29110,2802,"[""Headphones"", ""Charger""]",4657.94,{},147971,0,South America +2023-02-06,29111,7588,"[""Headphones""]",3492.02,"{""seasonal"": ""21%""}",78398,0,Europe +2024-06-10,29112,794,"[""Tablet""]",427.1,"{""promo"": ""24%""}",104021,1,Africa +2023-06-11,29113,7786,"[""Wireless Mouse"", ""Phone""]",1420.37,{},274318,1,South America +2024-10-19,29114,8886,"[""Charger""]",1180.76,"{"""": ""9%""}",187353,1,Africa +2024-07-12,29115,3463,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3215.74,{},286108,0,Africa +2023-03-02,29116,3076,"[""Monitor"", ""Wireless Mouse""]",436.96,{},284124,0,North America +2023-03-24,29117,1148,"[""Phone""]",2544.24,"{""loyalty"": ""13%""}",239689,1,North America +2024-09-03,29118,3264,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1441.02,"{"""": ""13%""}",42282,0,Asia +2024-06-17,29119,8763,"[""Charger"", ""Headphones"", ""Keyboard""]",4626.17,{},45286,1,South America +2023-03-02,29120,8886,"[""Phone"", ""Wireless Mouse""]",4721.29,"{""seasonal"": ""30%""}",152511,0,South America +2023-12-16,29121,43,"[""Laptop"", ""Headphones""]",3526.9,"{""loyalty"": ""10%""}",59738,1,North America +2023-03-10,29122,9816,"[""Wireless Mouse"", ""Tablet""]",2269.43,"{""promo"": ""10%""}",139511,0,Africa +2024-03-17,29123,343,"[""Wireless Mouse""]",4142.08,"{""seasonal"": ""17%""}",220532,0,Asia +2024-09-09,29124,1304,"[""Keyboard"", ""Monitor""]",1838.88,"{"""": ""6%""}",144626,0,Asia +2023-08-20,29125,8992,"[""Headphones""]",1552.03,"{""loyalty"": ""24%""}",236770,1,Europe +2023-10-30,29126,286,"[""Keyboard"", ""Wireless Mouse""]",1311.96,{},45258,0,North America +2024-12-20,29127,6800,"[""Keyboard""]",2776.69,"{""loyalty"": ""15%""}",165468,0,Europe +2023-01-03,29128,891,"[""Headphones""]",3571.26,"{""seasonal"": ""19%""}",283651,0,Asia +2024-09-18,29129,1065,"[""Charger""]",1025.45,"{"""": ""7%""}",213020,0,Europe +2023-09-16,29130,7792,"[""Keyboard"", ""Headphones""]",1535.83,"{""seasonal"": ""20%""}",71186,1,Asia +2024-02-16,29131,184,"[""Phone"", ""Wireless Mouse""]",2214.17,{},157687,1,Europe +2024-04-20,29132,1479,"[""Charger""]",3427.43,"{""seasonal"": ""29%""}",188897,0,Africa +2023-11-28,29133,5744,"[""Monitor""]",4942.89,"{"""": ""22%""}",95722,0,Europe +2023-05-09,29134,9995,"[""Wireless Mouse""]",1512.11,"{"""": ""5%""}",54362,0,Asia +2023-07-14,29135,2832,"[""Charger"", ""Monitor"", ""Laptop""]",3022.8,"{""promo"": ""11%""}",17718,0,Africa +2023-05-31,29136,8890,"[""Phone""]",62.31,{},83151,1,North America +2024-12-04,29137,9061,"[""Phone""]",78.47,"{""promo"": ""8%""}",185329,1,Europe +2024-06-25,29138,7106,"[""Tablet""]",4323.22,"{"""": ""25%""}",288058,0,North America +2024-07-18,29139,9969,"[""Charger"", ""Laptop"", ""Headphones""]",167.85,{},165709,0,Asia +2023-08-22,29140,853,"[""Wireless Mouse""]",2545.37,"{""promo"": ""27%""}",228063,0,South America +2024-05-27,29141,8024,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",353.74,"{""loyalty"": ""28%""}",77982,1,North America +2023-09-06,29142,9641,"[""Tablet"", ""Keyboard""]",2032.33,"{"""": ""12%""}",40193,1,Africa +2023-07-02,29143,370,"[""Monitor"", ""Keyboard"", ""Charger""]",2904.13,{},155374,1,Asia +2023-07-18,29144,382,"[""Laptop"", ""Tablet""]",3613.84,{},6659,1,Europe +2024-06-27,29145,29,"[""Monitor""]",799.22,"{""loyalty"": ""23%""}",38710,1,North America +2023-05-23,29146,7539,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1962.55,"{"""": ""16%""}",120631,1,South America +2024-01-30,29147,6265,"[""Phone"", ""Tablet""]",994.17,"{""promo"": ""23%""}",222531,0,North America +2023-11-26,29148,5356,"[""Charger"", ""Tablet"", ""Monitor""]",2560.12,"{""loyalty"": ""15%""}",90951,1,Europe +2024-10-17,29149,1092,"[""Tablet""]",4987.91,"{""promo"": ""19%""}",77019,0,Africa +2023-04-18,29150,9315,"[""Monitor"", ""Wireless Mouse""]",812.28,{},157356,0,Africa +2024-06-27,29151,8850,"[""Headphones"", ""Monitor""]",4120.4,"{""promo"": ""27%""}",6341,0,Asia +2023-11-07,29152,4518,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",685.42,{},203290,0,Asia +2024-03-28,29153,76,"[""Headphones"", ""Keyboard"", ""Charger""]",1503.08,{},161707,1,Europe +2023-06-26,29154,9170,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",89.79,"{""promo"": ""18%""}",218480,1,South America +2023-12-18,29155,2408,"[""Tablet"", ""Keyboard"", ""Phone""]",3923.33,{},83714,0,Asia +2024-02-04,29156,126,"[""Wireless Mouse"", ""Keyboard""]",1574.68,{},173701,1,South America +2023-08-07,29157,8225,"[""Tablet"", ""Headphones""]",727.57,"{""loyalty"": ""9%""}",108770,0,Africa +2023-05-19,29158,5882,"[""Wireless Mouse""]",2032.77,{},5998,1,Europe +2024-11-28,29159,3841,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2374.6,{},220607,1,Asia +2024-09-29,29160,277,"[""Phone"", ""Laptop"", ""Tablet""]",884.38,{},101507,0,Africa +2023-04-05,29161,9495,"[""Laptop"", ""Keyboard""]",1103.81,{},165973,0,Asia +2024-08-30,29162,4081,"[""Phone"", ""Monitor""]",920.1,"{""seasonal"": ""8%""}",255446,0,Europe +2024-01-21,29163,7131,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2327.21,"{"""": ""26%""}",79593,1,Europe +2023-09-25,29164,5341,"[""Keyboard""]",4775.48,{},34611,0,North America +2024-12-25,29165,7747,"[""Headphones"", ""Laptop""]",1887.82,{},130323,1,Asia +2023-07-30,29166,5700,"[""Phone"", ""Tablet""]",3146.09,"{""seasonal"": ""30%""}",203963,1,Europe +2024-04-24,29167,2292,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4520.74,"{""seasonal"": ""18%""}",135285,0,North America +2023-10-18,29168,4087,"[""Phone""]",2722.77,{},249460,1,Europe +2024-01-15,29169,8969,"[""Charger"", ""Keyboard""]",2869.79,"{""loyalty"": ""15%""}",199545,1,South America +2024-05-27,29170,8424,"[""Keyboard""]",2316.87,"{"""": ""20%""}",232292,1,Europe +2023-01-14,29171,931,"[""Laptop"", ""Phone""]",3624.32,"{"""": ""6%""}",230666,0,Asia +2024-05-30,29172,5735,"[""Wireless Mouse""]",4277.08,{},140278,0,Africa +2024-02-09,29173,560,"[""Charger"", ""Headphones""]",2850.48,{},10962,0,North America +2024-03-05,29174,8786,"[""Tablet"", ""Charger""]",4436.73,"{"""": ""15%""}",254925,0,South America +2024-12-31,29175,7677,"[""Tablet""]",672.2,{},92189,0,Africa +2024-12-29,29176,3964,"[""Headphones"", ""Tablet""]",3412.12,{},167698,1,South America +2024-02-19,29177,7938,"[""Keyboard"", ""Charger"", ""Laptop""]",1028.49,{},63895,0,South America +2023-03-08,29178,5292,"[""Tablet"", ""Keyboard""]",122.34,{},210837,0,North America +2024-01-13,29179,4050,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1420.04,"{""seasonal"": ""13%""}",3742,0,Asia +2023-08-05,29180,1418,"[""Charger""]",1863.14,"{"""": ""22%""}",7606,1,Africa +2023-12-21,29181,2917,"[""Monitor"", ""Tablet""]",4693.92,"{""promo"": ""25%""}",233039,1,Europe +2023-10-10,29182,9758,"[""Wireless Mouse"", ""Tablet""]",4506.21,{},17742,0,North America +2024-04-19,29183,8346,"[""Headphones"", ""Phone"", ""Monitor""]",4788.74,{},291766,1,South America +2023-11-24,29184,4892,"[""Laptop"", ""Monitor""]",1928.75,"{"""": ""18%""}",51738,0,North America +2023-05-08,29185,6481,"[""Headphones"", ""Tablet"", ""Monitor""]",1986.8,"{"""": ""6%""}",269044,1,Africa +2023-03-19,29186,8354,"[""Tablet"", ""Charger""]",2496.69,{},90255,0,Europe +2024-01-19,29187,4649,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1818.12,"{""loyalty"": ""16%""}",261689,0,Europe +2024-08-23,29188,2859,"[""Laptop"", ""Keyboard""]",2479.98,{},112613,1,Asia +2023-02-02,29189,6237,"[""Monitor"", ""Phone""]",4601.06,"{""promo"": ""23%""}",16335,1,North America +2023-06-02,29190,8654,"[""Phone""]",1429.79,"{""loyalty"": ""29%""}",241663,0,Asia +2024-06-12,29191,8028,"[""Tablet""]",4676.99,{},33931,0,Europe +2023-04-07,29192,7518,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3024.63,{},109478,1,Europe +2024-12-11,29193,1668,"[""Headphones"", ""Monitor"", ""Phone""]",4759.48,"{""seasonal"": ""13%""}",184830,0,Europe +2024-06-06,29194,3072,"[""Keyboard""]",3632.74,"{""seasonal"": ""8%""}",8461,0,Europe +2024-10-04,29195,3208,"[""Wireless Mouse"", ""Phone""]",4081.08,{},32365,0,Europe +2024-02-08,29196,2636,"[""Keyboard"", ""Laptop""]",347.93,"{""seasonal"": ""20%""}",291338,0,North America +2024-02-18,29197,195,"[""Phone"", ""Monitor"", ""Laptop""]",632.2,"{""promo"": ""7%""}",103767,1,South America +2023-07-19,29198,2248,"[""Phone"", ""Monitor""]",3786.84,"{""promo"": ""14%""}",49625,1,Europe +2023-01-29,29199,8156,"[""Monitor""]",1610.38,"{"""": ""14%""}",243382,1,Europe +2024-03-29,29200,8402,"[""Phone"", ""Laptop"", ""Tablet""]",4304.5,"{""seasonal"": ""16%""}",16169,1,North America +2024-10-30,29201,9054,"[""Wireless Mouse""]",208.91,{},96360,0,North America +2023-06-28,29202,4895,"[""Laptop"", ""Tablet"", ""Charger""]",2225.91,{},134494,0,Asia +2023-08-31,29203,9560,"[""Headphones"", ""Charger""]",3785.95,{},81183,0,Asia +2024-09-23,29204,4880,"[""Charger""]",519.54,"{"""": ""25%""}",109469,1,Africa +2023-03-03,29205,1388,"[""Charger""]",4424.6,{},33977,0,Africa +2023-05-20,29206,6683,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3507.59,{},245361,0,South America +2024-05-02,29207,5232,"[""Tablet"", ""Laptop""]",4072.3,{},272528,1,Africa +2023-03-03,29208,8779,"[""Tablet""]",2729.29,"{""seasonal"": ""17%""}",165889,1,Africa +2024-11-27,29209,9398,"[""Phone"", ""Headphones"", ""Laptop""]",1395.55,{},142610,0,Asia +2023-04-27,29210,5046,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3282.88,"{""loyalty"": ""10%""}",288670,1,South America +2024-03-08,29211,4189,"[""Headphones"", ""Laptop""]",1936.47,"{""loyalty"": ""5%""}",288267,0,Asia +2024-10-02,29212,8513,"[""Laptop"", ""Keyboard""]",54.94,"{""loyalty"": ""19%""}",20315,1,Europe +2024-08-25,29213,9707,"[""Monitor""]",2656.53,"{"""": ""24%""}",226584,0,South America +2024-02-17,29214,7271,"[""Keyboard"", ""Charger"", ""Monitor""]",2574.15,{},53844,0,Asia +2023-10-13,29215,8641,"[""Wireless Mouse"", ""Headphones""]",174.86,{},66619,1,North America +2023-08-22,29216,917,"[""Wireless Mouse""]",1130.3,{},250889,1,Asia +2023-04-10,29217,9010,"[""Phone""]",4051.32,{},84219,1,Asia +2023-05-16,29218,4185,"[""Phone""]",4167.06,{},236889,0,Asia +2023-08-07,29219,6064,"[""Headphones"", ""Laptop""]",3254.34,"{"""": ""8%""}",51575,1,Africa +2023-07-20,29220,3963,"[""Phone""]",52.29,"{""promo"": ""8%""}",216110,0,Africa +2023-07-06,29221,8912,"[""Tablet""]",2990.2,"{""seasonal"": ""7%""}",75982,0,North America +2023-08-30,29222,7193,"[""Phone""]",837.71,{},61018,1,South America +2023-02-25,29223,7511,"[""Monitor"", ""Phone"", ""Laptop""]",3829.77,"{""seasonal"": ""29%""}",183153,0,Asia +2024-01-20,29224,198,"[""Tablet""]",2391.64,"{"""": ""21%""}",190982,1,North America +2023-02-25,29225,1042,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3291.21,{},242489,0,North America +2024-06-05,29226,5190,"[""Phone"", ""Charger"", ""Keyboard""]",2094.02,"{""promo"": ""23%""}",60546,0,Europe +2024-02-15,29227,3010,"[""Phone""]",3883.24,"{""loyalty"": ""16%""}",248193,0,South America +2023-01-03,29228,5446,"[""Monitor"", ""Charger""]",4823.43,"{""promo"": ""27%""}",177689,0,Europe +2023-10-21,29229,7022,"[""Monitor""]",1829.03,"{""promo"": ""8%""}",219377,1,Africa +2023-08-27,29230,1036,"[""Laptop""]",2549.71,{},55072,0,Africa +2024-10-23,29231,7001,"[""Keyboard"", ""Charger""]",3147.93,{},64680,0,Africa +2024-07-13,29232,9788,"[""Monitor"", ""Tablet""]",3632.42,{},196813,1,Asia +2024-02-04,29233,5989,"[""Keyboard"", ""Laptop"", ""Phone""]",4867.93,"{""loyalty"": ""23%""}",218376,0,South America +2023-01-01,29234,781,"[""Monitor""]",3202.68,"{"""": ""22%""}",251654,1,Europe +2023-03-31,29235,2189,"[""Charger"", ""Monitor""]",1832.19,"{"""": ""22%""}",288634,1,Asia +2023-11-11,29236,3104,"[""Keyboard"", ""Headphones""]",750.22,{},201175,0,South America +2023-05-05,29237,2377,"[""Keyboard"", ""Laptop""]",659.81,"{""promo"": ""17%""}",208827,1,Africa +2023-07-10,29238,6572,"[""Tablet"", ""Headphones""]",2365.64,"{""loyalty"": ""20%""}",149081,0,South America +2023-05-02,29239,2063,"[""Monitor""]",4023.82,"{""promo"": ""27%""}",126624,1,Europe +2024-11-19,29240,5630,"[""Wireless Mouse""]",2183.74,{},212036,1,Europe +2024-04-07,29241,1602,"[""Phone"", ""Laptop"", ""Keyboard""]",3604.17,"{""seasonal"": ""5%""}",41203,1,Europe +2023-04-27,29242,9543,"[""Phone"", ""Tablet"", ""Headphones""]",2172.9,"{""seasonal"": ""6%""}",19806,1,North America +2024-02-27,29243,5801,"[""Charger"", ""Tablet""]",3545.84,"{""promo"": ""24%""}",63589,0,North America +2023-08-28,29244,8226,"[""Tablet"", ""Monitor"", ""Charger""]",3317.01,"{"""": ""12%""}",25794,1,North America +2023-06-23,29245,4588,"[""Wireless Mouse""]",4129.41,{},298555,0,South America +2023-07-26,29246,3365,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",408.25,"{""seasonal"": ""6%""}",42125,0,Africa +2023-11-03,29247,6039,"[""Phone""]",177.76,{},49782,1,Africa +2024-06-05,29248,8044,"[""Phone""]",1863.12,{},91274,0,Asia +2024-11-12,29249,3615,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2193.3,{},253770,1,Africa +2024-10-06,29250,1778,"[""Keyboard"", ""Headphones"", ""Laptop""]",3295.54,{},114481,0,North America +2024-02-10,29251,9328,"[""Laptop"", ""Phone""]",111.47,{},273924,0,North America +2023-04-04,29252,5509,"[""Tablet""]",3764.4,{},211880,1,North America +2024-01-25,29253,8812,"[""Keyboard"", ""Charger""]",3870.27,"{""loyalty"": ""23%""}",94147,0,Africa +2024-10-02,29254,2669,"[""Charger""]",3485.95,{},48361,1,Africa +2023-09-30,29255,3478,"[""Tablet"", ""Keyboard"", ""Headphones""]",3788.55,{},56379,0,North America +2024-04-02,29256,1673,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1676.6,{},261252,1,Asia +2023-10-17,29257,1153,"[""Wireless Mouse"", ""Charger""]",838.09,"{""seasonal"": ""28%""}",195542,1,South America +2024-04-27,29258,6394,"[""Tablet""]",4440.66,"{""seasonal"": ""20%""}",131686,1,Asia +2024-10-24,29259,9482,"[""Headphones"", ""Charger"", ""Tablet""]",3055.8,"{""seasonal"": ""25%""}",272860,1,Asia +2024-03-09,29260,4266,"[""Keyboard"", ""Headphones""]",3944.92,{},220457,0,Asia +2024-10-15,29261,247,"[""Charger"", ""Headphones"", ""Tablet""]",3036.54,"{""promo"": ""20%""}",202304,1,South America +2024-07-17,29262,7721,"[""Keyboard"", ""Tablet"", ""Phone""]",1359.55,{},210525,1,South America +2023-09-17,29263,3339,"[""Keyboard"", ""Laptop"", ""Monitor""]",2008.33,"{"""": ""5%""}",3550,0,North America +2023-12-03,29264,6261,"[""Monitor""]",3883.18,{},177132,1,Europe +2024-11-11,29265,2906,"[""Phone""]",1752.4,{},107276,0,South America +2024-03-08,29266,1118,"[""Wireless Mouse"", ""Phone""]",4822.9,{},42310,1,South America +2024-08-31,29267,9533,"[""Laptop""]",2971.58,"{""seasonal"": ""18%""}",58787,0,South America +2023-02-10,29268,6115,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2795.7,"{""promo"": ""11%""}",103307,1,South America +2024-11-29,29269,647,"[""Headphones""]",4940.23,"{""seasonal"": ""30%""}",152010,1,North America +2024-12-30,29270,1628,"[""Keyboard""]",178.04,"{""loyalty"": ""15%""}",41013,1,South America +2023-09-24,29271,3009,"[""Headphones""]",4291.03,"{""loyalty"": ""29%""}",124102,1,Europe +2023-04-14,29272,6370,"[""Laptop"", ""Keyboard""]",86.06,{},77871,0,South America +2023-01-27,29273,9780,"[""Monitor"", ""Charger""]",3771.45,"{""promo"": ""26%""}",58247,1,Europe +2023-09-10,29274,1274,"[""Monitor"", ""Wireless Mouse""]",2601.04,{},110019,0,North America +2023-02-28,29275,9132,"[""Monitor""]",4202.07,"{""loyalty"": ""14%""}",175767,1,North America +2023-11-02,29276,5439,"[""Charger"", ""Headphones"", ""Phone""]",2647.27,"{"""": ""19%""}",142044,0,South America +2024-03-02,29277,4489,"[""Tablet"", ""Phone""]",1934.61,{},232720,0,Europe +2024-12-02,29278,493,"[""Headphones""]",4677.39,"{""loyalty"": ""15%""}",39531,1,South America +2023-07-20,29279,3983,"[""Headphones"", ""Charger""]",3255.19,"{"""": ""7%""}",273509,0,South America +2023-08-08,29280,8635,"[""Wireless Mouse""]",2501.86,"{""seasonal"": ""27%""}",188498,1,Europe +2023-03-09,29281,2809,"[""Laptop""]",4581.21,{},155468,0,North America +2023-01-12,29282,7157,"[""Laptop"", ""Keyboard""]",975.87,"{""seasonal"": ""24%""}",270558,0,Africa +2024-02-11,29283,2294,"[""Laptop"", ""Tablet""]",130.14,{},297486,0,Asia +2024-11-29,29284,5306,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4321.75,{},65116,0,Europe +2023-08-04,29285,2712,"[""Charger""]",1402.01,{},273039,1,Europe +2024-01-06,29286,7340,"[""Charger"", ""Laptop""]",4168.94,{},110286,1,Europe +2024-06-19,29287,5271,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1561.15,"{""seasonal"": ""26%""}",152647,1,Asia +2023-07-25,29288,7260,"[""Phone"", ""Headphones""]",3389.78,"{""promo"": ""11%""}",235055,0,North America +2023-04-05,29289,3675,"[""Tablet"", ""Charger"", ""Laptop""]",3743.53,"{""loyalty"": ""16%""}",52557,1,Africa +2023-05-30,29290,9218,"[""Monitor"", ""Wireless Mouse""]",1566.77,"{""promo"": ""14%""}",249401,0,Asia +2024-06-08,29291,3290,"[""Phone""]",1137.59,{},28035,0,Europe +2023-09-19,29292,6350,"[""Headphones""]",1784.38,"{""seasonal"": ""30%""}",156212,1,North America +2023-04-27,29293,6965,"[""Tablet""]",356.89,{},233953,1,Asia +2023-02-27,29294,2203,"[""Phone""]",3832.77,"{""loyalty"": ""5%""}",273109,1,Africa +2023-10-06,29295,6655,"[""Phone"", ""Tablet""]",2221.91,"{""loyalty"": ""5%""}",266989,1,Europe +2024-08-10,29296,89,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2392.64,"{""loyalty"": ""7%""}",102387,0,North America +2023-01-10,29297,8907,"[""Keyboard"", ""Charger""]",2191.0,"{""promo"": ""9%""}",46420,1,Africa +2023-10-25,29298,5253,"[""Keyboard"", ""Tablet""]",948.93,"{""promo"": ""15%""}",58425,1,North America +2024-03-23,29299,5347,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4386.46,{},18853,1,Africa +2023-03-26,29300,7583,"[""Headphones"", ""Monitor"", ""Keyboard""]",3527.02,{},196967,0,Europe +2023-08-26,29301,4772,"[""Monitor"", ""Tablet"", ""Keyboard""]",2578.47,{},231624,1,North America +2024-01-24,29302,1028,"[""Wireless Mouse"", ""Monitor""]",2409.15,"{""seasonal"": ""22%""}",283349,0,Africa +2024-12-29,29303,8006,"[""Charger""]",2641.45,{},269130,1,North America +2023-05-28,29304,9488,"[""Laptop"", ""Wireless Mouse""]",885.06,"{""loyalty"": ""6%""}",262613,1,North America +2024-05-26,29305,6269,"[""Keyboard"", ""Laptop"", ""Phone""]",2887.98,"{""loyalty"": ""9%""}",86697,0,South America +2024-09-30,29306,7445,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2803.36,"{"""": ""21%""}",7472,0,Africa +2023-11-03,29307,3982,"[""Monitor"", ""Charger""]",3973.82,{},136311,0,Europe +2024-08-20,29308,7521,"[""Charger"", ""Headphones""]",2489.48,"{"""": ""19%""}",243668,0,North America +2024-11-01,29309,9286,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1046.54,"{"""": ""9%""}",206713,0,South America +2024-01-20,29310,2053,"[""Tablet""]",2170.43,"{""seasonal"": ""5%""}",149001,0,Asia +2023-09-07,29311,4189,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2853.9,{},133963,1,North America +2023-07-24,29312,8799,"[""Laptop"", ""Wireless Mouse""]",4804.72,"{""seasonal"": ""9%""}",87420,1,Asia +2024-02-14,29313,1370,"[""Monitor"", ""Laptop"", ""Headphones""]",226.18,"{""promo"": ""17%""}",138980,1,South America +2023-10-02,29314,7577,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4527.59,"{""seasonal"": ""11%""}",20604,1,Asia +2023-09-19,29315,9151,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4875.64,{},67704,0,Europe +2023-05-29,29316,3964,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3153.62,{},263926,0,Europe +2024-02-06,29317,5044,"[""Headphones""]",3029.3,{},128399,1,South America +2023-12-28,29318,3714,"[""Headphones"", ""Wireless Mouse""]",1687.66,{},103215,0,Africa +2024-11-18,29319,6862,"[""Monitor"", ""Headphones""]",1562.93,"{""seasonal"": ""16%""}",291563,1,Africa +2024-01-14,29320,1738,"[""Monitor"", ""Phone""]",1076.11,"{"""": ""25%""}",252664,0,Africa +2023-09-23,29321,4678,"[""Charger"", ""Tablet"", ""Monitor""]",1215.87,{},95252,1,Africa +2023-07-21,29322,2776,"[""Monitor""]",2561.23,"{""seasonal"": ""24%""}",220116,0,Africa +2024-01-31,29323,3507,"[""Keyboard"", ""Headphones""]",4036.45,"{""seasonal"": ""13%""}",79884,0,Africa +2024-08-30,29324,9434,"[""Wireless Mouse"", ""Keyboard""]",1334.77,"{""seasonal"": ""24%""}",265746,0,Africa +2023-03-08,29325,6785,"[""Charger"", ""Monitor""]",3250.4,"{""promo"": ""28%""}",207889,0,Europe +2023-05-11,29326,1102,"[""Laptop"", ""Wireless Mouse""]",574.97,{},73420,1,South America +2023-12-04,29327,937,"[""Phone""]",690.41,{},229851,1,North America +2024-11-17,29328,1630,"[""Monitor"", ""Tablet""]",2618.19,{},242022,0,Asia +2024-07-24,29329,4714,"[""Headphones""]",400.94,{},176955,0,South America +2023-08-23,29330,5080,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3562.07,{},1734,0,Asia +2024-12-11,29331,9684,"[""Headphones"", ""Phone"", ""Charger""]",4988.13,"{""seasonal"": ""23%""}",294421,1,Europe +2023-12-16,29332,350,"[""Monitor"", ""Tablet""]",1476.89,{},66539,1,Europe +2024-12-29,29333,2112,"[""Charger""]",4714.46,"{""seasonal"": ""27%""}",190761,1,Africa +2023-07-04,29334,6935,"[""Wireless Mouse"", ""Keyboard""]",3127.64,"{""loyalty"": ""7%""}",198355,0,South America +2024-12-07,29335,8532,"[""Phone""]",563.73,"{""loyalty"": ""6%""}",18009,1,North America +2023-07-09,29336,4541,"[""Phone"", ""Keyboard""]",801.6,"{"""": ""24%""}",170968,0,North America +2023-02-16,29337,1862,"[""Phone"", ""Laptop""]",2843.37,{},257985,1,South America +2023-12-16,29338,7033,"[""Charger"", ""Phone"", ""Tablet""]",1322.91,"{""loyalty"": ""5%""}",271322,1,Africa +2023-03-26,29339,4068,"[""Phone""]",1551.24,"{""seasonal"": ""30%""}",192555,1,Europe +2023-10-19,29340,8405,"[""Phone""]",4364.14,{},286618,0,Europe +2023-11-05,29341,6515,"[""Wireless Mouse""]",2968.47,{},179463,1,North America +2024-01-31,29342,7015,"[""Tablet"", ""Phone""]",4500.56,{},256173,0,North America +2023-03-22,29343,6544,"[""Charger""]",3132.25,"{""loyalty"": ""23%""}",53871,0,South America +2023-08-31,29344,2826,"[""Monitor"", ""Charger"", ""Headphones""]",4101.24,{},73747,0,North America +2023-03-15,29345,8154,"[""Keyboard""]",224.61,{},213622,1,Asia +2023-04-02,29346,7308,"[""Tablet"", ""Headphones""]",870.64,{},69195,1,Europe +2024-01-11,29347,5530,"[""Wireless Mouse"", ""Charger""]",96.38,"{"""": ""24%""}",238939,0,Africa +2023-11-14,29348,7435,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3658.79,{},150485,1,Europe +2024-04-05,29349,7525,"[""Laptop"", ""Headphones""]",4366.55,"{""loyalty"": ""17%""}",24670,0,Asia +2024-11-30,29350,4944,"[""Monitor""]",3031.4,"{""seasonal"": ""10%""}",141842,1,Africa +2024-09-07,29351,1443,"[""Headphones"", ""Phone"", ""Monitor""]",2747.19,{},138222,0,North America +2023-05-04,29352,8714,"[""Keyboard"", ""Charger""]",2996.22,"{"""": ""24%""}",299341,0,Africa +2023-09-26,29353,8348,"[""Headphones"", ""Phone""]",4824.54,"{""promo"": ""28%""}",63091,1,Africa +2024-02-02,29354,997,"[""Laptop"", ""Headphones"", ""Charger""]",475.67,"{"""": ""7%""}",152754,1,South America +2024-05-09,29355,7615,"[""Headphones""]",1451.55,"{""promo"": ""6%""}",117447,0,South America +2023-03-04,29356,3086,"[""Keyboard"", ""Wireless Mouse""]",2569.67,{},90637,0,Asia +2024-01-19,29357,9671,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2641.96,"{"""": ""17%""}",219092,1,South America +2023-01-12,29358,3410,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4052.89,"{"""": ""26%""}",180096,1,Asia +2024-10-03,29359,1062,"[""Keyboard"", ""Headphones""]",1905.08,{},124836,1,Africa +2024-03-11,29360,8440,"[""Wireless Mouse"", ""Monitor""]",327.34,{},18391,0,North America +2024-09-02,29361,2060,"[""Headphones"", ""Laptop"", ""Monitor""]",3297.54,{},298880,1,South America +2023-12-15,29362,1774,"[""Keyboard""]",3690.74,"{""promo"": ""29%""}",259761,1,South America +2024-11-21,29363,7662,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",161.73,{},233292,1,North America +2024-08-09,29364,1208,"[""Phone""]",3058.75,"{""promo"": ""7%""}",209696,1,South America +2024-10-04,29365,3288,"[""Phone""]",834.07,{},79679,1,North America +2023-06-28,29366,473,"[""Charger""]",3508.5,"{""seasonal"": ""27%""}",139418,1,Asia +2024-04-24,29367,4728,"[""Tablet"", ""Headphones"", ""Keyboard""]",4585.44,{},193035,1,South America +2024-06-10,29368,7725,"[""Monitor"", ""Tablet"", ""Headphones""]",1688.24,"{"""": ""13%""}",53692,1,South America +2023-08-12,29369,6460,"[""Monitor"", ""Phone"", ""Headphones""]",1751.92,"{"""": ""30%""}",174249,0,South America +2023-04-07,29370,1030,"[""Monitor"", ""Tablet""]",1466.52,"{""loyalty"": ""24%""}",264225,1,North America +2023-10-10,29371,8553,"[""Keyboard"", ""Charger"", ""Laptop""]",938.18,"{""loyalty"": ""26%""}",71794,0,Asia +2023-01-07,29372,3248,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4332.2,"{""loyalty"": ""6%""}",185522,1,Africa +2023-11-30,29373,3047,"[""Phone""]",4836.36,{},146508,0,Europe +2023-02-18,29374,6193,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1454.69,{},232702,0,Asia +2023-09-20,29375,450,"[""Monitor"", ""Tablet"", ""Phone""]",4989.35,"{""seasonal"": ""21%""}",139096,0,South America +2023-05-24,29376,1952,"[""Phone"", ""Keyboard""]",3183.25,"{""seasonal"": ""18%""}",143083,0,South America +2024-07-27,29377,4472,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2488.42,{},275266,0,North America +2023-08-16,29378,7012,"[""Wireless Mouse"", ""Phone""]",2001.83,"{""loyalty"": ""15%""}",160634,1,Africa +2023-01-20,29379,2160,"[""Monitor""]",699.89,{},288099,1,North America +2024-12-31,29380,5895,"[""Phone""]",1602.87,{},64136,0,Asia +2023-11-14,29381,8575,"[""Monitor""]",750.67,"{""loyalty"": ""30%""}",72711,0,Asia +2023-08-06,29382,3138,"[""Charger"", ""Phone""]",585.85,"{"""": ""23%""}",273167,0,North America +2024-05-10,29383,4406,"[""Keyboard"", ""Laptop""]",2856.81,{},283680,1,North America +2024-12-29,29384,8920,"[""Phone"", ""Tablet""]",4820.15,{},289147,0,Africa +2024-02-12,29385,643,"[""Phone""]",4417.61,"{""loyalty"": ""6%""}",241766,0,Africa +2024-07-19,29386,8366,"[""Wireless Mouse""]",1198.19,{},166695,0,Europe +2023-05-10,29387,4767,"[""Charger""]",131.21,"{"""": ""7%""}",29115,0,South America +2024-07-25,29388,9391,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1989.22,"{""seasonal"": ""22%""}",210790,0,Asia +2024-06-24,29389,9691,"[""Phone"", ""Laptop"", ""Headphones""]",2410.06,"{"""": ""10%""}",216170,1,Europe +2024-02-11,29390,6971,"[""Laptop""]",1864.28,"{""loyalty"": ""9%""}",234040,1,Africa +2024-08-18,29391,8862,"[""Charger"", ""Tablet""]",212.66,"{""promo"": ""20%""}",30621,1,Europe +2023-11-29,29392,4806,"[""Wireless Mouse""]",4841.86,"{""seasonal"": ""6%""}",228185,0,South America +2024-04-27,29393,9969,"[""Laptop"", ""Monitor""]",1649.89,{},198816,1,Europe +2024-09-09,29394,3024,"[""Charger"", ""Phone"", ""Monitor""]",1788.94,"{""seasonal"": ""18%""}",117627,0,Europe +2024-06-19,29395,46,"[""Keyboard"", ""Charger""]",326.5,"{"""": ""23%""}",37660,1,Africa +2024-11-29,29396,5682,"[""Laptop"", ""Keyboard""]",2078.73,"{"""": ""7%""}",36283,1,Europe +2024-06-21,29397,5945,"[""Phone"", ""Keyboard""]",358.26,"{"""": ""12%""}",291993,0,Africa +2024-10-28,29398,9957,"[""Keyboard""]",614.56,"{"""": ""28%""}",1851,0,Africa +2023-03-24,29399,2818,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3734.34,"{""loyalty"": ""10%""}",237579,0,Africa +2023-06-10,29400,4101,"[""Phone"", ""Keyboard""]",4570.64,"{""seasonal"": ""25%""}",98165,1,Europe +2024-07-16,29401,1065,"[""Wireless Mouse""]",4558.42,{},215830,1,Africa +2023-03-10,29402,796,"[""Tablet""]",2674.75,"{""promo"": ""21%""}",290152,0,South America +2023-05-09,29403,1137,"[""Laptop"", ""Wireless Mouse""]",3245.21,{},237983,0,Europe +2023-11-11,29404,7240,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",948.11,"{""promo"": ""28%""}",167861,1,Asia +2023-06-21,29405,9761,"[""Monitor"", ""Keyboard"", ""Phone""]",3290.85,{},82706,1,Europe +2024-06-29,29406,6570,"[""Keyboard""]",889.14,{},185710,0,South America +2024-04-20,29407,4123,"[""Charger"", ""Tablet""]",3952.55,"{""promo"": ""24%""}",228385,0,North America +2024-11-17,29408,6167,"[""Keyboard""]",4444.32,"{""promo"": ""27%""}",145109,0,Asia +2023-03-22,29409,1026,"[""Phone""]",1101.11,"{""seasonal"": ""20%""}",113160,1,North America +2023-02-16,29410,6048,"[""Keyboard"", ""Phone""]",4457.8,"{"""": ""20%""}",26251,0,North America +2023-09-26,29411,3499,"[""Keyboard""]",552.26,"{""seasonal"": ""21%""}",204609,0,Asia +2023-05-05,29412,377,"[""Keyboard"", ""Phone"", ""Headphones""]",115.82,{},173010,0,Africa +2024-08-01,29413,3318,"[""Keyboard"", ""Laptop""]",3269.43,"{""loyalty"": ""9%""}",240405,1,North America +2024-07-28,29414,2658,"[""Monitor"", ""Tablet""]",4416.2,"{""loyalty"": ""23%""}",293695,0,Asia +2024-02-29,29415,4614,"[""Monitor""]",4703.21,"{"""": ""17%""}",85869,0,North America +2023-12-10,29416,6982,"[""Laptop"", ""Phone"", ""Monitor""]",319.64,{},43338,1,Europe +2023-10-28,29417,3150,"[""Headphones"", ""Laptop""]",2171.01,{},32105,0,Asia +2023-07-16,29418,4949,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3511.72,{},267755,1,South America +2023-09-29,29419,8175,"[""Laptop""]",4550.54,{},83102,0,North America +2023-07-12,29420,3410,"[""Phone""]",2945.99,"{""loyalty"": ""15%""}",292813,0,North America +2024-04-04,29421,8000,"[""Keyboard"", ""Laptop""]",1873.74,{},17080,1,North America +2024-06-15,29422,7484,"[""Monitor"", ""Tablet""]",4474.11,{},159690,0,South America +2023-07-01,29423,7778,"[""Laptop"", ""Phone"", ""Charger""]",3810.51,{},123769,0,North America +2023-01-03,29424,597,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2171.48,{},219647,0,Asia +2023-11-19,29425,9483,"[""Wireless Mouse""]",2502.43,{},69732,0,Africa +2023-05-12,29426,8124,"[""Charger"", ""Laptop""]",1934.46,{},287663,1,Africa +2024-03-29,29427,9083,"[""Laptop"", ""Monitor""]",2117.64,{},199979,1,Europe +2023-07-16,29428,245,"[""Charger"", ""Phone"", ""Keyboard""]",1885.05,{},75682,0,North America +2023-04-12,29429,9239,"[""Wireless Mouse"", ""Charger""]",4084.93,{},147192,1,South America +2023-01-04,29430,7280,"[""Phone""]",4157.05,{},141344,1,South America +2024-07-08,29431,5508,"[""Laptop"", ""Headphones""]",4059.98,{},26438,1,Asia +2023-07-07,29432,8889,"[""Tablet"", ""Charger"", ""Laptop""]",3858.26,{},3162,0,Africa +2024-11-28,29433,1962,"[""Monitor"", ""Keyboard""]",3140.69,{},192495,1,Africa +2023-12-25,29434,9748,"[""Headphones""]",4511.79,"{""seasonal"": ""20%""}",50464,0,Asia +2024-12-27,29435,9528,"[""Charger""]",854.07,"{"""": ""9%""}",174399,0,South America +2023-07-28,29436,9851,"[""Tablet"", ""Headphones"", ""Phone""]",3695.56,{},216929,0,Africa +2023-12-20,29437,3984,"[""Keyboard"", ""Tablet""]",4988.77,"{"""": ""5%""}",252685,1,North America +2024-02-21,29438,9916,"[""Phone""]",2328.04,{},257987,1,Europe +2024-08-26,29439,4344,"[""Tablet""]",1646.76,"{""loyalty"": ""8%""}",189122,1,Europe +2023-06-19,29440,1239,"[""Charger"", ""Headphones""]",2937.02,"{"""": ""17%""}",296988,1,Europe +2024-09-13,29441,3078,"[""Phone""]",759.38,"{""promo"": ""27%""}",30913,0,Asia +2024-08-11,29442,9576,"[""Charger"", ""Wireless Mouse""]",4589.41,{},251243,0,Europe +2024-03-24,29443,2637,"[""Keyboard""]",1856.97,"{""loyalty"": ""12%""}",258072,1,Africa +2023-06-07,29444,474,"[""Charger"", ""Monitor"", ""Keyboard""]",2111.34,{},108748,0,South America +2023-11-13,29445,867,"[""Phone"", ""Charger"", ""Keyboard""]",3005.31,"{""promo"": ""9%""}",224330,1,Europe +2024-12-17,29446,7254,"[""Tablet""]",1261.01,{},200149,1,Europe +2023-09-23,29447,7222,"[""Charger"", ""Monitor""]",377.38,"{"""": ""14%""}",287476,1,Asia +2023-04-24,29448,6267,"[""Phone"", ""Laptop"", ""Keyboard""]",4085.06,{},144438,0,Asia +2023-09-05,29449,8696,"[""Keyboard""]",2327.75,"{"""": ""26%""}",222945,1,South America +2023-07-03,29450,1925,"[""Phone"", ""Charger""]",3967.25,{},167434,0,South America +2023-01-27,29451,2115,"[""Laptop"", ""Tablet""]",4653.45,"{""promo"": ""26%""}",168025,1,Africa +2023-01-04,29452,7531,"[""Phone"", ""Laptop"", ""Monitor""]",3369.07,"{""seasonal"": ""28%""}",100466,0,South America +2024-04-10,29453,8349,"[""Laptop"", ""Headphones"", ""Monitor""]",3721.7,"{"""": ""6%""}",73710,1,Africa +2023-11-25,29454,257,"[""Tablet"", ""Wireless Mouse""]",1518.02,{},280879,1,North America +2023-10-08,29455,6507,"[""Keyboard""]",2074.96,{},284953,1,Asia +2024-01-08,29456,7189,"[""Charger"", ""Headphones""]",629.61,"{""seasonal"": ""19%""}",213651,1,Europe +2023-02-10,29457,6481,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1939.82,{},248625,1,North America +2023-04-09,29458,3855,"[""Keyboard""]",3704.4,"{""seasonal"": ""5%""}",148569,1,Asia +2024-01-31,29459,2871,"[""Tablet"", ""Keyboard""]",3050.57,"{"""": ""20%""}",7874,1,Africa +2024-02-14,29460,6182,"[""Monitor"", ""Keyboard"", ""Laptop""]",3755.91,"{""seasonal"": ""9%""}",115579,0,South America +2024-12-02,29461,6579,"[""Keyboard""]",2829.47,"{"""": ""10%""}",130185,1,Asia +2023-01-20,29462,7496,"[""Keyboard""]",2607.16,"{""seasonal"": ""23%""}",277976,0,South America +2023-06-06,29463,2059,"[""Laptop"", ""Wireless Mouse""]",4447.88,{},286244,1,South America +2024-04-21,29464,6210,"[""Phone"", ""Wireless Mouse""]",389.59,{},102436,1,Africa +2024-11-08,29465,5623,"[""Wireless Mouse""]",4170.1,"{""seasonal"": ""21%""}",135419,1,South America +2024-09-17,29466,8450,"[""Keyboard""]",4191.53,"{"""": ""6%""}",113054,0,North America +2024-01-02,29467,765,"[""Tablet"", ""Keyboard""]",2771.2,"{""loyalty"": ""29%""}",182913,1,South America +2024-06-23,29468,654,"[""Phone"", ""Laptop""]",729.27,{},37685,0,Asia +2023-05-02,29469,1826,"[""Phone"", ""Keyboard""]",3719.39,{},184085,0,South America +2024-01-24,29470,6804,"[""Charger"", ""Headphones"", ""Keyboard""]",3507.28,"{""seasonal"": ""10%""}",56250,0,North America +2023-09-04,29471,2330,"[""Charger""]",444.62,{},266314,1,South America +2023-06-29,29472,1264,"[""Laptop"", ""Tablet"", ""Phone""]",3574.59,{},1462,0,South America +2024-05-17,29473,8310,"[""Charger"", ""Keyboard"", ""Monitor""]",1702.47,{},111245,0,South America +2023-08-19,29474,2191,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2612.83,{},119232,1,South America +2024-01-25,29475,2234,"[""Tablet"", ""Laptop""]",2158.21,{},13835,1,Africa +2023-12-18,29476,6700,"[""Keyboard"", ""Headphones""]",4600.38,{},97239,1,Asia +2023-05-06,29477,6386,"[""Keyboard"", ""Wireless Mouse""]",575.64,{},245990,0,Asia +2024-08-27,29478,1378,"[""Tablet""]",151.5,{},181169,0,Europe +2024-12-11,29479,7847,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2871.31,"{""seasonal"": ""22%""}",148112,0,Asia +2023-10-22,29480,4625,"[""Headphones""]",489.0,{},93356,0,South America +2023-07-17,29481,4012,"[""Monitor""]",329.89,"{""loyalty"": ""14%""}",14609,1,North America +2024-10-20,29482,5885,"[""Keyboard"", ""Phone"", ""Headphones""]",512.15,{},294032,0,Africa +2023-09-22,29483,8608,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",190.27,{},39239,0,Africa +2024-03-07,29484,7919,"[""Tablet"", ""Laptop"", ""Monitor""]",3378.28,"{"""": ""18%""}",72779,0,Europe +2024-02-22,29485,1819,"[""Charger"", ""Keyboard""]",2106.67,"{""seasonal"": ""6%""}",284647,0,Asia +2024-12-12,29486,1461,"[""Keyboard""]",76.2,{},157829,0,Africa +2023-01-20,29487,8165,"[""Keyboard"", ""Headphones"", ""Charger""]",3963.82,"{""seasonal"": ""7%""}",244004,1,Africa +2024-09-08,29488,10000,"[""Monitor"", ""Phone"", ""Laptop""]",2973.25,{},220165,1,South America +2023-08-12,29489,5080,"[""Headphones""]",1783.37,"{"""": ""14%""}",46614,1,Europe +2024-05-13,29490,4768,"[""Monitor"", ""Tablet"", ""Headphones""]",433.35,"{""loyalty"": ""9%""}",111578,0,Europe +2023-03-03,29491,1710,"[""Tablet"", ""Laptop""]",1255.66,"{"""": ""15%""}",134553,1,Europe +2024-03-02,29492,6422,"[""Laptop"", ""Keyboard""]",3935.35,"{""loyalty"": ""23%""}",168933,1,North America +2023-10-27,29493,2738,"[""Monitor""]",2305.0,{},122783,1,Africa +2024-03-12,29494,9578,"[""Charger""]",1321.91,{},243628,1,Asia +2024-12-22,29495,9163,"[""Laptop""]",3252.77,"{"""": ""26%""}",103532,1,Asia +2023-04-22,29496,7228,"[""Phone"", ""Headphones""]",1875.86,"{""promo"": ""29%""}",12780,0,Africa +2023-08-06,29497,7712,"[""Headphones"", ""Keyboard"", ""Monitor""]",3331.62,"{""promo"": ""23%""}",69710,0,Asia +2024-08-08,29498,3993,"[""Charger""]",2759.63,{},80219,1,South America +2023-05-06,29499,4342,"[""Monitor"", ""Wireless Mouse""]",1798.97,{},297424,0,North America +2024-07-18,29500,806,"[""Tablet""]",2127.67,"{""loyalty"": ""25%""}",189166,1,Africa +2024-08-21,29501,2434,"[""Keyboard""]",1427.82,{},291541,0,Africa +2024-06-27,29502,2825,"[""Phone"", ""Headphones"", ""Charger""]",63.18,{},158125,0,South America +2023-06-14,29503,2952,"[""Laptop"", ""Charger"", ""Headphones""]",868.18,{},119140,1,North America +2023-01-02,29504,8600,"[""Phone"", ""Keyboard""]",1097.36,"{""promo"": ""21%""}",41888,1,Asia +2023-10-03,29505,6646,"[""Tablet"", ""Keyboard"", ""Laptop""]",51.04,"{""promo"": ""26%""}",76592,0,Asia +2024-01-09,29506,1168,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",100.36,"{""loyalty"": ""29%""}",223694,0,Europe +2024-09-02,29507,1154,"[""Monitor"", ""Laptop"", ""Headphones""]",4448.47,{},260020,1,South America +2023-03-01,29508,2649,"[""Laptop""]",1681.92,"{"""": ""22%""}",147618,1,South America +2024-03-28,29509,2597,"[""Tablet""]",1766.35,{},87572,0,Africa +2024-08-11,29510,3649,"[""Keyboard"", ""Tablet""]",1776.38,{},17469,0,North America +2023-06-14,29511,2918,"[""Monitor""]",2144.65,{},281057,0,Asia +2023-07-12,29512,9859,"[""Monitor"", ""Laptop""]",2314.5,{},161269,0,Europe +2023-11-11,29513,2962,"[""Monitor"", ""Keyboard"", ""Tablet""]",2614.2,"{""seasonal"": ""16%""}",201552,0,South America +2023-07-26,29514,7147,"[""Wireless Mouse"", ""Monitor""]",1435.37,"{""promo"": ""13%""}",185116,0,Asia +2024-08-17,29515,2781,"[""Charger""]",2917.93,"{""loyalty"": ""29%""}",198479,1,Europe +2024-07-26,29516,4919,"[""Monitor"", ""Laptop""]",4267.97,"{"""": ""20%""}",236021,1,Asia +2023-01-11,29517,125,"[""Headphones""]",2891.81,"{""seasonal"": ""25%""}",48347,1,Asia +2024-06-24,29518,3231,"[""Laptop"", ""Monitor"", ""Charger""]",2496.38,{},242125,1,Europe +2024-07-14,29519,2636,"[""Tablet""]",568.42,{},166550,1,Asia +2024-01-21,29520,2985,"[""Monitor"", ""Phone""]",3586.9,"{""seasonal"": ""29%""}",256291,0,Europe +2024-10-27,29521,2903,"[""Keyboard""]",1611.1,{},3021,1,Africa +2024-05-03,29522,2863,"[""Keyboard""]",409.42,"{""loyalty"": ""27%""}",272635,1,Asia +2023-12-17,29523,9539,"[""Monitor""]",1119.58,"{""seasonal"": ""28%""}",106732,1,North America +2023-08-28,29524,7612,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1160.18,{},271332,0,North America +2024-07-17,29525,4401,"[""Phone"", ""Monitor""]",2432.12,{},268830,1,Asia +2023-08-19,29526,4676,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",520.05,{},83896,0,Europe +2024-10-08,29527,656,"[""Monitor""]",2400.0,"{""seasonal"": ""16%""}",248857,0,Europe +2024-03-31,29528,4594,"[""Phone"", ""Keyboard"", ""Headphones""]",2212.35,"{""loyalty"": ""16%""}",189650,0,South America +2024-05-26,29529,2148,"[""Wireless Mouse""]",2995.41,"{""seasonal"": ""10%""}",107917,1,North America +2024-04-03,29530,9410,"[""Keyboard""]",2733.3,{},122188,0,Asia +2024-01-09,29531,92,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4265.14,"{""promo"": ""15%""}",50353,1,Asia +2024-04-01,29532,908,"[""Monitor"", ""Charger""]",3347.22,"{"""": ""22%""}",92310,1,Europe +2023-10-30,29533,8719,"[""Charger"", ""Headphones""]",1877.88,"{""promo"": ""13%""}",18244,0,Asia +2024-12-09,29534,2673,"[""Monitor""]",3838.84,{},86218,0,Europe +2023-04-19,29535,9848,"[""Monitor"", ""Laptop""]",4020.0,{},82053,1,Africa +2023-02-07,29536,2822,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",678.93,"{"""": ""19%""}",69350,1,South America +2023-12-06,29537,8445,"[""Monitor""]",781.23,"{""promo"": ""12%""}",188201,0,South America +2024-05-12,29538,5147,"[""Phone"", ""Tablet"", ""Monitor""]",4526.64,{},23951,1,Asia +2024-06-17,29539,5147,"[""Monitor""]",1485.06,{},137613,1,North America +2023-11-07,29540,5560,"[""Laptop""]",3418.7,"{"""": ""16%""}",29019,1,Asia +2024-09-28,29541,593,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1967.92,{},164108,0,Asia +2024-05-24,29542,5729,"[""Phone""]",375.95,"{""loyalty"": ""7%""}",94694,1,Africa +2023-11-29,29543,6149,"[""Monitor"", ""Headphones"", ""Keyboard""]",912.81,"{""loyalty"": ""25%""}",243958,1,North America +2024-05-28,29544,3273,"[""Monitor""]",4230.48,{},139998,1,Africa +2023-04-01,29545,7634,"[""Headphones"", ""Keyboard""]",364.06,"{""promo"": ""23%""}",284230,0,Africa +2023-09-19,29546,7308,"[""Tablet"", ""Monitor""]",2614.62,"{""loyalty"": ""29%""}",196517,0,Europe +2023-02-16,29547,5336,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4418.9,{},162860,1,Europe +2024-08-22,29548,7798,"[""Wireless Mouse"", ""Keyboard""]",4664.05,{},105853,0,North America +2023-10-09,29549,3430,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1467.68,{},162014,0,North America +2024-06-06,29550,8348,"[""Monitor"", ""Phone""]",652.21,"{""promo"": ""27%""}",120853,0,North America +2023-04-06,29551,8683,"[""Monitor"", ""Keyboard"", ""Tablet""]",1947.94,"{""promo"": ""10%""}",215512,0,South America +2024-10-31,29552,8456,"[""Phone"", ""Headphones"", ""Tablet""]",2069.24,"{""loyalty"": ""13%""}",96838,0,Asia +2024-12-29,29553,8067,"[""Keyboard"", ""Tablet""]",3996.84,"{""promo"": ""26%""}",198382,1,Africa +2024-05-11,29554,5121,"[""Charger"", ""Phone""]",3997.08,{},250446,0,Asia +2023-07-02,29555,3317,"[""Tablet"", ""Keyboard""]",3754.49,"{"""": ""27%""}",181948,0,South America +2024-10-01,29556,4392,"[""Charger"", ""Keyboard""]",2006.62,{},209642,0,North America +2023-02-11,29557,7995,"[""Phone"", ""Tablet"", ""Headphones""]",3259.26,"{""seasonal"": ""6%""}",267970,1,South America +2023-12-01,29558,4942,"[""Tablet"", ""Charger""]",552.91,{},119199,0,South America +2024-05-09,29559,8842,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1686.96,{},265863,1,Asia +2024-01-28,29560,8861,"[""Headphones"", ""Monitor"", ""Phone""]",3023.53,"{""seasonal"": ""23%""}",70334,1,North America +2023-05-10,29561,3063,"[""Charger"", ""Wireless Mouse""]",4569.36,{},250022,0,Asia +2024-02-09,29562,2137,"[""Charger"", ""Tablet""]",854.67,"{"""": ""18%""}",51796,0,South America +2023-07-08,29563,6961,"[""Monitor"", ""Laptop""]",675.09,{},3998,0,Asia +2024-01-31,29564,4184,"[""Laptop"", ""Charger"", ""Monitor""]",4494.44,"{""promo"": ""7%""}",10397,1,Europe +2023-02-08,29565,8239,"[""Monitor"", ""Laptop"", ""Headphones""]",1110.19,{},294480,0,South America +2024-10-25,29566,4917,"[""Tablet"", ""Keyboard"", ""Charger""]",3973.52,"{""promo"": ""13%""}",114585,1,Europe +2024-09-18,29567,4831,"[""Charger"", ""Phone"", ""Monitor""]",2307.09,"{""seasonal"": ""13%""}",57142,0,Asia +2024-03-17,29568,3812,"[""Wireless Mouse""]",3794.25,"{"""": ""21%""}",128429,0,South America +2023-12-07,29569,9531,"[""Monitor"", ""Wireless Mouse""]",691.5,{},100524,0,Africa +2023-10-30,29570,6647,"[""Headphones"", ""Charger"", ""Phone""]",1351.25,"{"""": ""19%""}",182393,0,Africa +2023-12-08,29571,73,"[""Wireless Mouse""]",56.27,{},65909,0,North America +2024-06-08,29572,5182,"[""Monitor""]",3378.1,"{""loyalty"": ""13%""}",214259,1,North America +2023-05-13,29573,8954,"[""Laptop""]",4210.11,"{""loyalty"": ""17%""}",183245,1,South America +2023-10-26,29574,5719,"[""Tablet""]",2493.27,"{""loyalty"": ""12%""}",31652,1,Europe +2024-09-26,29575,1795,"[""Keyboard""]",2910.75,{},24359,0,Europe +2023-11-02,29576,6705,"[""Tablet""]",4664.39,"{""loyalty"": ""14%""}",101302,0,Europe +2024-04-21,29577,6566,"[""Tablet"", ""Phone""]",4772.26,"{""loyalty"": ""17%""}",138991,1,South America +2023-08-20,29578,9569,"[""Tablet"", ""Keyboard""]",2783.76,{},249016,1,Asia +2023-12-16,29579,1313,"[""Headphones"", ""Tablet"", ""Phone""]",1918.01,"{""promo"": ""29%""}",243470,0,Africa +2024-06-30,29580,4286,"[""Headphones""]",3953.65,"{""promo"": ""21%""}",237774,0,Europe +2023-04-19,29581,1651,"[""Charger"", ""Laptop""]",434.9,{},63197,0,North America +2023-02-21,29582,2566,"[""Keyboard"", ""Monitor""]",4000.81,"{""loyalty"": ""9%""}",37725,0,Europe +2024-07-31,29583,9678,"[""Phone""]",4864.73,{},84318,1,Europe +2024-07-30,29584,5096,"[""Charger"", ""Tablet"", ""Monitor""]",1736.13,{},148492,1,South America +2023-02-19,29585,2183,"[""Headphones"", ""Keyboard""]",566.13,"{""loyalty"": ""8%""}",123211,1,South America +2023-06-03,29586,8628,"[""Keyboard"", ""Monitor"", ""Tablet""]",2747.14,{},212793,1,Africa +2024-10-22,29587,2347,"[""Phone""]",2484.09,{},103081,1,Asia +2024-09-04,29588,2731,"[""Wireless Mouse""]",2911.05,"{""loyalty"": ""25%""}",34954,1,Europe +2024-04-03,29589,4763,"[""Monitor"", ""Phone""]",2734.06,{},240740,1,Europe +2024-05-22,29590,7415,"[""Keyboard"", ""Monitor""]",715.77,"{""promo"": ""6%""}",38811,0,Africa +2023-03-18,29591,4371,"[""Laptop"", ""Wireless Mouse""]",3858.0,{},161780,0,South America +2023-07-11,29592,1146,"[""Tablet"", ""Charger""]",1385.66,"{""seasonal"": ""20%""}",224630,0,North America +2024-05-16,29593,9447,"[""Monitor"", ""Keyboard""]",975.68,{},92844,0,South America +2024-01-30,29594,7973,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",71.99,"{"""": ""15%""}",29435,0,Africa +2023-11-29,29595,7034,"[""Charger""]",1353.3,"{""seasonal"": ""23%""}",116059,0,North America +2024-03-15,29596,5565,"[""Phone""]",4049.69,"{""promo"": ""25%""}",197851,1,Europe +2023-09-19,29597,8759,"[""Charger"", ""Headphones"", ""Laptop""]",3576.83,"{""seasonal"": ""11%""}",189181,0,Africa +2024-11-05,29598,4182,"[""Headphones"", ""Keyboard""]",519.34,{},206971,1,South America +2023-06-16,29599,7992,"[""Monitor""]",417.57,{},102016,0,Asia +2023-08-23,29600,4365,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3149.23,{},246620,0,Asia +2024-10-06,29601,5862,"[""Laptop"", ""Charger""]",807.71,"{"""": ""12%""}",252740,0,Africa +2024-05-14,29602,4172,"[""Monitor""]",3711.0,{},295179,1,North America +2024-05-07,29603,6784,"[""Headphones""]",3135.22,{},237781,0,North America +2023-12-04,29604,7355,"[""Tablet""]",2176.52,{},235989,1,Africa +2024-03-29,29605,7680,"[""Charger"", ""Laptop""]",1454.51,"{""seasonal"": ""23%""}",15529,0,Asia +2024-01-16,29606,3803,"[""Laptop"", ""Phone"", ""Tablet""]",393.57,{},84619,0,Africa +2024-11-04,29607,1985,"[""Monitor""]",2601.74,{},191215,0,North America +2024-01-13,29608,4765,"[""Laptop"", ""Keyboard"", ""Tablet""]",123.22,{},134307,1,South America +2024-06-11,29609,2926,"[""Headphones""]",756.27,{},98336,1,Europe +2024-06-22,29610,289,"[""Tablet"", ""Phone""]",2741.17,"{""loyalty"": ""27%""}",91474,0,Europe +2023-02-04,29611,7724,"[""Wireless Mouse"", ""Headphones""]",172.89,"{""loyalty"": ""9%""}",215126,0,Asia +2023-05-11,29612,6775,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2779.99,{},38535,0,Asia +2024-12-25,29613,1521,"[""Headphones""]",138.52,"{""seasonal"": ""21%""}",165285,0,Asia +2023-09-07,29614,4628,"[""Charger""]",1381.58,{},198496,0,Asia +2024-03-28,29615,2216,"[""Wireless Mouse""]",1333.59,{},257823,0,North America +2024-06-15,29616,6191,"[""Tablet"", ""Wireless Mouse""]",1889.21,{},174686,0,Africa +2024-03-21,29617,988,"[""Monitor""]",2687.04,"{""loyalty"": ""25%""}",130088,0,South America +2023-11-27,29618,5974,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1196.87,"{""loyalty"": ""26%""}",290805,1,South America +2023-03-09,29619,6289,"[""Tablet""]",4606.68,{},143827,0,North America +2024-08-17,29620,2886,"[""Headphones""]",488.01,{},48345,0,Europe +2023-07-19,29621,2485,"[""Headphones""]",1009.95,"{"""": ""10%""}",167187,1,North America +2024-11-16,29622,5981,"[""Monitor"", ""Charger"", ""Phone""]",4914.69,"{""seasonal"": ""9%""}",5486,1,Asia +2023-07-08,29623,4583,"[""Laptop""]",417.59,{},267346,0,Asia +2023-06-26,29624,8409,"[""Phone""]",2505.4,"{"""": ""14%""}",221409,0,Europe +2024-05-02,29625,4778,"[""Tablet"", ""Keyboard"", ""Monitor""]",3955.21,{},65932,0,Africa +2023-02-11,29626,9349,"[""Laptop"", ""Charger"", ""Monitor""]",2691.34,{},15561,0,Asia +2023-06-06,29627,4730,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4590.92,{},173275,0,South America +2023-12-30,29628,8011,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2058.39,{},276939,0,North America +2023-05-04,29629,4146,"[""Phone"", ""Tablet"", ""Keyboard""]",1942.68,{},271432,0,Europe +2023-10-14,29630,2998,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3753.53,"{""promo"": ""17%""}",120360,1,South America +2023-09-13,29631,816,"[""Laptop"", ""Monitor"", ""Tablet""]",3051.89,{},111177,1,Africa +2023-09-18,29632,720,"[""Monitor""]",2466.68,{},146327,1,Europe +2024-06-06,29633,5621,"[""Monitor"", ""Charger"", ""Keyboard""]",919.57,"{""loyalty"": ""7%""}",20222,0,Asia +2023-12-28,29634,4005,"[""Tablet"", ""Headphones"", ""Keyboard""]",4705.21,"{""seasonal"": ""15%""}",5995,0,Asia +2024-07-29,29635,9963,"[""Phone"", ""Laptop""]",1098.19,{},229614,0,South America +2024-03-29,29636,2751,"[""Wireless Mouse"", ""Monitor""]",4613.62,"{"""": ""15%""}",63613,1,South America +2023-05-28,29637,1996,"[""Laptop""]",2235.76,"{"""": ""22%""}",27472,0,North America +2024-09-24,29638,7250,"[""Headphones"", ""Keyboard""]",2164.48,{},153076,0,Europe +2024-06-29,29639,7394,"[""Laptop"", ""Keyboard""]",194.2,"{""loyalty"": ""29%""}",48518,0,Europe +2024-02-19,29640,3492,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4692.29,"{"""": ""23%""}",260520,1,Africa +2023-06-25,29641,8466,"[""Wireless Mouse""]",2755.68,"{""promo"": ""16%""}",96199,0,North America +2024-06-16,29642,9461,"[""Charger"", ""Wireless Mouse""]",1950.98,{},134365,0,Africa +2024-04-20,29643,9616,"[""Laptop"", ""Phone""]",563.62,{},127619,1,North America +2024-01-18,29644,5387,"[""Wireless Mouse"", ""Monitor""]",3822.16,"{""promo"": ""13%""}",163042,1,Europe +2024-08-25,29645,1357,"[""Phone""]",4271.3,{},36497,1,North America +2023-05-30,29646,1739,"[""Phone"", ""Charger""]",4762.57,{},2783,1,Asia +2023-08-29,29647,3715,"[""Tablet"", ""Laptop""]",602.75,{},164547,1,Europe +2024-09-09,29648,907,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4332.6,"{""promo"": ""21%""}",133110,1,North America +2024-01-13,29649,3323,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",691.2,"{""promo"": ""13%""}",98969,1,South America +2023-03-26,29650,5487,"[""Keyboard"", ""Monitor""]",2393.35,"{""seasonal"": ""28%""}",248912,1,Asia +2023-09-07,29651,6569,"[""Keyboard""]",3442.55,{},291455,1,Europe +2023-07-07,29652,345,"[""Monitor"", ""Laptop"", ""Tablet""]",207.93,{},99965,1,Africa +2023-03-07,29653,6842,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",765.93,"{""loyalty"": ""27%""}",166186,0,Asia +2024-02-02,29654,225,"[""Phone""]",4752.61,"{""promo"": ""9%""}",227101,0,Africa +2023-05-08,29655,1669,"[""Keyboard""]",2838.47,{},8954,1,North America +2024-08-02,29656,2777,"[""Wireless Mouse"", ""Headphones""]",1805.6,"{""promo"": ""24%""}",182162,0,North America +2024-09-11,29657,4715,"[""Wireless Mouse""]",1973.68,{},25396,0,Africa +2023-07-29,29658,8270,"[""Headphones"", ""Keyboard""]",190.64,"{"""": ""8%""}",79600,1,Asia +2023-05-23,29659,9889,"[""Phone""]",3195.78,{},262978,1,South America +2023-05-14,29660,9643,"[""Wireless Mouse"", ""Laptop""]",4918.23,{},72925,0,South America +2023-01-29,29661,5465,"[""Charger"", ""Headphones"", ""Laptop""]",4225.16,"{"""": ""9%""}",216379,1,South America +2023-10-03,29662,9203,"[""Keyboard"", ""Phone""]",1489.65,"{""promo"": ""14%""}",77134,1,Africa +2024-04-11,29663,1530,"[""Monitor""]",4483.25,"{""promo"": ""13%""}",3148,0,Africa +2023-06-13,29664,1766,"[""Wireless Mouse"", ""Phone""]",3007.88,"{""seasonal"": ""29%""}",117987,0,North America +2023-12-07,29665,2017,"[""Charger""]",4497.06,{},23656,1,Europe +2023-04-04,29666,1935,"[""Monitor"", ""Phone""]",652.27,"{""promo"": ""22%""}",71002,0,South America +2024-04-25,29667,8559,"[""Keyboard""]",86.71,{},43311,1,North America +2024-11-30,29668,1493,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",932.4,{},60066,0,North America +2024-05-04,29669,2440,"[""Monitor"", ""Tablet""]",2039.15,"{""loyalty"": ""14%""}",215375,1,Africa +2024-09-05,29670,7851,"[""Laptop""]",759.19,{},283604,1,Asia +2023-03-15,29671,8204,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",386.56,"{""promo"": ""11%""}",207710,1,South America +2023-04-01,29672,2760,"[""Charger"", ""Tablet"", ""Phone""]",299.34,{},225711,0,Europe +2024-03-15,29673,2408,"[""Laptop"", ""Tablet"", ""Charger""]",2347.8,{},278577,0,Asia +2024-11-28,29674,6932,"[""Headphones"", ""Charger""]",4394.64,{},217240,1,North America +2024-05-09,29675,3421,"[""Headphones"", ""Laptop"", ""Monitor""]",852.07,{},199505,0,Asia +2023-12-27,29676,2762,"[""Phone""]",4356.89,"{""seasonal"": ""16%""}",243129,0,North America +2024-07-25,29677,8899,"[""Tablet""]",984.52,{},287058,0,North America +2024-08-27,29678,3465,"[""Headphones"", ""Phone""]",2135.26,"{""loyalty"": ""21%""}",118852,1,North America +2023-02-08,29679,89,"[""Headphones"", ""Keyboard""]",1617.14,{},237468,1,Asia +2024-06-03,29680,9571,"[""Headphones""]",4915.68,{},126246,0,South America +2023-04-06,29681,3561,"[""Laptop""]",698.9,"{""loyalty"": ""9%""}",78444,1,North America +2023-05-10,29682,4617,"[""Laptop"", ""Monitor"", ""Headphones""]",1003.35,{},184586,0,Europe +2023-06-16,29683,7809,"[""Charger""]",1097.57,"{""loyalty"": ""30%""}",232849,0,Africa +2024-03-01,29684,4417,"[""Headphones"", ""Monitor""]",443.43,"{""loyalty"": ""5%""}",227587,1,Europe +2024-06-11,29685,3475,"[""Headphones""]",3305.06,{},186907,1,Europe +2024-03-27,29686,273,"[""Headphones""]",1992.04,{},64192,1,North America +2023-09-29,29687,3570,"[""Tablet"", ""Headphones"", ""Keyboard""]",3967.53,{},210253,1,South America +2023-02-11,29688,1382,"[""Keyboard""]",2519.04,{},101619,1,Africa +2024-07-27,29689,2999,"[""Charger"", ""Monitor""]",2935.9,"{""loyalty"": ""6%""}",119161,1,South America +2024-09-21,29690,2467,"[""Phone""]",781.79,"{""loyalty"": ""22%""}",122324,0,Europe +2023-07-11,29691,9100,"[""Tablet""]",2877.78,{},38799,0,Asia +2024-06-03,29692,5048,"[""Monitor"", ""Tablet"", ""Phone""]",3401.9,"{""promo"": ""19%""}",10187,1,Europe +2024-10-05,29693,8930,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3218.07,"{"""": ""5%""}",258877,1,South America +2023-08-18,29694,5266,"[""Wireless Mouse"", ""Charger""]",1298.39,{},151658,0,South America +2023-08-30,29695,163,"[""Wireless Mouse"", ""Monitor""]",1861.54,{},175491,1,Africa +2024-10-22,29696,4228,"[""Monitor"", ""Tablet""]",4486.01,"{""promo"": ""8%""}",259408,1,Asia +2023-11-13,29697,3250,"[""Tablet""]",374.13,"{"""": ""25%""}",99265,1,South America +2024-10-31,29698,6541,"[""Monitor"", ""Charger"", ""Tablet""]",624.91,"{"""": ""25%""}",89772,1,Europe +2023-02-06,29699,4227,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2611.34,"{""loyalty"": ""20%""}",197965,0,Asia +2023-08-08,29700,3230,"[""Headphones""]",1980.14,"{"""": ""18%""}",205863,1,South America +2024-01-30,29701,8552,"[""Headphones""]",2192.68,{},101600,1,North America +2024-03-15,29702,4086,"[""Headphones"", ""Keyboard"", ""Laptop""]",4825.6,{},80515,0,South America +2023-07-01,29703,4592,"[""Phone"", ""Charger""]",4465.76,{},74397,0,Africa +2023-12-21,29704,5438,"[""Laptop"", ""Charger"", ""Keyboard""]",4915.22,"{""loyalty"": ""28%""}",83926,0,Europe +2023-05-02,29705,7716,"[""Laptop"", ""Keyboard""]",3572.94,{},147230,1,Asia +2023-02-16,29706,2216,"[""Monitor"", ""Keyboard""]",363.85,"{""loyalty"": ""28%""}",162694,1,Africa +2024-03-19,29707,5040,"[""Charger"", ""Headphones""]",3048.42,"{""promo"": ""5%""}",108604,0,Europe +2024-03-14,29708,6022,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2380.47,"{""seasonal"": ""16%""}",152728,1,Africa +2023-10-29,29709,7185,"[""Phone"", ""Laptop"", ""Tablet""]",1764.7,"{""seasonal"": ""15%""}",148008,0,North America +2024-01-27,29710,6022,"[""Laptop"", ""Tablet""]",3822.59,"{""seasonal"": ""7%""}",70924,0,Africa +2024-10-13,29711,868,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4649.99,"{"""": ""26%""}",295683,1,Africa +2024-03-10,29712,2536,"[""Charger"", ""Tablet""]",218.11,{},85885,1,North America +2023-05-31,29713,7536,"[""Phone"", ""Headphones"", ""Laptop""]",556.2,{},136853,0,North America +2024-12-21,29714,1197,"[""Tablet"", ""Monitor""]",785.95,{},228774,0,Africa +2023-12-25,29715,7661,"[""Monitor"", ""Wireless Mouse""]",614.72,{},247041,1,Europe +2023-04-28,29716,9388,"[""Keyboard"", ""Charger"", ""Monitor""]",2688.7,{},59811,1,Africa +2024-09-16,29717,1108,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3213.37,"{""loyalty"": ""28%""}",131047,0,Europe +2023-05-10,29718,2748,"[""Charger"", ""Tablet""]",4405.74,{},41369,0,North America +2023-09-20,29719,5143,"[""Wireless Mouse"", ""Phone""]",226.14,"{""loyalty"": ""29%""}",243088,1,South America +2023-06-26,29720,3102,"[""Tablet""]",3471.11,"{""seasonal"": ""9%""}",66119,1,Europe +2023-11-11,29721,6279,"[""Keyboard""]",2670.18,"{"""": ""29%""}",289872,1,Africa +2023-06-16,29722,9820,"[""Phone"", ""Keyboard"", ""Laptop""]",4913.12,"{""seasonal"": ""7%""}",214344,1,South America +2024-07-23,29723,6015,"[""Keyboard""]",4400.69,{},297301,0,Africa +2023-12-30,29724,7099,"[""Headphones"", ""Wireless Mouse""]",2955.32,{},37813,1,Asia +2023-10-31,29725,5301,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",302.91,{},132037,0,Africa +2023-07-11,29726,5366,"[""Phone"", ""Monitor""]",4226.97,{},8736,0,Asia +2024-12-01,29727,2411,"[""Headphones"", ""Keyboard""]",3615.09,{},76818,0,Europe +2024-02-08,29728,2268,"[""Laptop""]",1895.41,{},179828,0,Asia +2023-11-03,29729,6849,"[""Monitor"", ""Keyboard""]",2607.85,"{""seasonal"": ""24%""}",226873,0,North America +2023-09-09,29730,3614,"[""Laptop"", ""Keyboard""]",563.5,"{""loyalty"": ""17%""}",205257,1,Asia +2023-04-27,29731,4638,"[""Phone"", ""Headphones"", ""Charger""]",1968.9,"{""loyalty"": ""24%""}",289637,1,Asia +2023-03-25,29732,1954,"[""Laptop""]",4193.51,{},144554,0,Africa +2023-04-14,29733,7313,"[""Charger"", ""Laptop"", ""Phone""]",4512.63,{},217943,0,Asia +2023-05-24,29734,7320,"[""Phone""]",3434.15,"{""promo"": ""9%""}",143239,1,Europe +2023-09-16,29735,6464,"[""Keyboard""]",2656.16,"{"""": ""10%""}",103941,1,South America +2024-05-09,29736,4552,"[""Tablet""]",958.37,"{""promo"": ""22%""}",264679,1,Europe +2024-05-18,29737,5598,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4635.82,"{""loyalty"": ""21%""}",29441,0,South America +2024-03-18,29738,8801,"[""Wireless Mouse""]",705.24,"{""loyalty"": ""22%""}",19864,1,Africa +2024-01-28,29739,9619,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",841.49,{},264450,1,Africa +2024-07-14,29740,6630,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3276.77,{},13550,1,South America +2023-01-18,29741,4936,"[""Keyboard"", ""Headphones"", ""Laptop""]",3700.95,{},225333,0,Asia +2023-01-23,29742,1950,"[""Tablet""]",2433.11,{},6707,1,Africa +2023-12-26,29743,7101,"[""Phone""]",1388.42,"{""seasonal"": ""23%""}",218330,0,North America +2023-07-28,29744,6300,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3717.16,"{""promo"": ""26%""}",167770,1,South America +2023-04-13,29745,7436,"[""Keyboard""]",3147.36,"{"""": ""27%""}",41385,0,Asia +2023-05-02,29746,8858,"[""Laptop""]",4468.19,"{"""": ""28%""}",76538,1,South America +2024-03-09,29747,7209,"[""Tablet"", ""Charger""]",258.71,"{""loyalty"": ""18%""}",196432,1,North America +2024-09-05,29748,787,"[""Keyboard""]",3374.28,{},55598,0,Asia +2024-03-28,29749,2470,"[""Laptop""]",3832.16,{},257645,0,North America +2024-08-14,29750,4764,"[""Phone"", ""Laptop""]",486.07,"{""loyalty"": ""11%""}",124848,0,Europe +2024-12-06,29751,1456,"[""Keyboard"", ""Monitor""]",4329.34,{},122531,1,North America +2023-07-16,29752,3396,"[""Charger"", ""Laptop"", ""Tablet""]",293.7,{},132724,0,Europe +2024-12-10,29753,2270,"[""Phone""]",4347.74,"{""seasonal"": ""22%""}",206612,1,Asia +2023-11-19,29754,4860,"[""Laptop"", ""Tablet"", ""Headphones""]",1963.27,{},295572,1,South America +2024-06-17,29755,4673,"[""Tablet"", ""Keyboard"", ""Phone""]",760.33,{},28320,1,Europe +2023-02-16,29756,5118,"[""Keyboard"", ""Laptop"", ""Monitor""]",1756.42,"{""seasonal"": ""7%""}",120380,0,Asia +2024-12-12,29757,2170,"[""Monitor""]",4658.42,"{"""": ""15%""}",135475,0,Africa +2024-08-14,29758,325,"[""Headphones""]",196.41,{},105961,1,South America +2023-01-12,29759,9862,"[""Headphones"", ""Monitor"", ""Charger""]",2555.64,"{""loyalty"": ""28%""}",173446,0,South America +2024-09-17,29760,5215,"[""Keyboard"", ""Charger"", ""Headphones""]",1058.06,"{"""": ""16%""}",156304,0,Africa +2023-10-01,29761,4510,"[""Phone""]",3209.81,"{""seasonal"": ""24%""}",140488,0,Asia +2023-04-19,29762,2574,"[""Tablet"", ""Laptop"", ""Keyboard""]",2223.87,{},7790,0,Europe +2023-01-11,29763,5691,"[""Wireless Mouse""]",149.44,{},114127,1,Asia +2024-11-22,29764,2828,"[""Laptop""]",736.67,"{"""": ""13%""}",298612,1,Europe +2024-07-01,29765,9352,"[""Headphones"", ""Keyboard""]",317.32,"{""seasonal"": ""11%""}",221541,0,Africa +2024-04-25,29766,2800,"[""Tablet""]",1974.73,{},128322,0,Africa +2024-07-05,29767,2841,"[""Headphones""]",2206.92,"{""promo"": ""12%""}",153235,0,North America +2023-11-16,29768,774,"[""Wireless Mouse""]",2028.98,{},272200,0,Asia +2023-06-25,29769,7710,"[""Wireless Mouse"", ""Monitor""]",263.75,"{""promo"": ""21%""}",70502,1,Africa +2023-12-07,29770,973,"[""Keyboard"", ""Phone"", ""Laptop""]",401.56,"{""loyalty"": ""30%""}",169918,1,Asia +2023-12-07,29771,4965,"[""Tablet""]",207.38,{},141494,1,Europe +2024-07-06,29772,7978,"[""Wireless Mouse""]",4194.12,{},298814,0,Africa +2024-06-17,29773,4857,"[""Monitor"", ""Charger""]",3299.08,{},114455,0,Asia +2024-05-02,29774,472,"[""Laptop"", ""Headphones""]",4499.94,"{""loyalty"": ""26%""}",237536,0,Africa +2023-03-09,29775,5749,"[""Keyboard"", ""Headphones""]",1287.37,"{""seasonal"": ""21%""}",283950,1,South America +2023-07-23,29776,4145,"[""Keyboard"", ""Laptop""]",460.63,"{""loyalty"": ""15%""}",124223,1,Asia +2024-01-03,29777,3578,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",412.36,{},213627,0,Asia +2023-04-02,29778,4513,"[""Headphones"", ""Tablet"", ""Phone""]",4107.98,{},154951,1,Europe +2023-06-29,29779,430,"[""Laptop"", ""Headphones""]",4801.77,{},219495,0,Africa +2023-10-07,29780,9266,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",421.96,{},148106,0,Africa +2024-01-12,29781,7241,"[""Monitor"", ""Charger""]",657.83,"{""loyalty"": ""28%""}",260873,1,Europe +2023-01-14,29782,8476,"[""Charger"", ""Keyboard""]",794.39,{},287128,0,Africa +2023-02-24,29783,7541,"[""Headphones"", ""Laptop""]",3334.04,{},254572,1,Asia +2024-11-08,29784,2110,"[""Tablet"", ""Laptop"", ""Headphones""]",3864.28,"{""seasonal"": ""14%""}",174282,1,South America +2024-02-24,29785,6424,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2528.42,{},267047,1,Asia +2024-08-03,29786,4337,"[""Monitor""]",4000.44,{},76478,0,South America +2023-03-08,29787,1124,"[""Phone"", ""Headphones"", ""Laptop""]",187.54,"{"""": ""17%""}",52812,0,Asia +2024-01-22,29788,499,"[""Tablet"", ""Headphones"", ""Phone""]",227.13,{},180855,1,Europe +2024-06-13,29789,8860,"[""Tablet"", ""Monitor""]",257.13,"{""promo"": ""30%""}",178978,1,Europe +2024-12-10,29790,7632,"[""Wireless Mouse"", ""Charger""]",3302.1,{},113312,0,North America +2024-04-17,29791,6206,"[""Laptop"", ""Charger""]",566.38,"{""seasonal"": ""15%""}",267252,0,Asia +2023-12-07,29792,4389,"[""Phone"", ""Headphones""]",3740.94,{},166661,1,Africa +2023-09-08,29793,7086,"[""Tablet""]",509.62,{},201176,1,Europe +2024-10-23,29794,9642,"[""Wireless Mouse""]",1917.62,{},123868,1,South America +2023-02-28,29795,5742,"[""Wireless Mouse"", ""Charger""]",4342.39,{},219059,0,Asia +2024-11-19,29796,8131,"[""Charger""]",2741.24,"{""seasonal"": ""25%""}",80694,1,South America +2024-11-27,29797,3205,"[""Charger""]",1733.63,"{""loyalty"": ""21%""}",55972,1,North America +2023-05-20,29798,2885,"[""Laptop""]",4271.82,"{""loyalty"": ""11%""}",174363,1,Africa +2024-04-12,29799,8891,"[""Monitor"", ""Phone"", ""Tablet""]",1662.34,{},128455,1,Africa +2024-06-18,29800,8616,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2909.81,{},222075,0,South America +2023-04-25,29801,1521,"[""Headphones"", ""Monitor"", ""Phone""]",1928.86,"{"""": ""11%""}",270272,1,Africa +2024-07-25,29802,9136,"[""Charger"", ""Phone""]",425.55,"{"""": ""23%""}",206216,0,South America +2023-07-21,29803,5225,"[""Laptop"", ""Monitor""]",3416.14,"{""promo"": ""15%""}",241567,0,Africa +2023-11-03,29804,5542,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1584.43,{},222897,1,Africa +2024-03-14,29805,2576,"[""Monitor"", ""Headphones""]",4688.84,{},10539,0,Europe +2024-01-09,29806,6446,"[""Headphones"", ""Keyboard"", ""Laptop""]",933.5,"{""seasonal"": ""21%""}",66814,0,Europe +2023-01-02,29807,4078,"[""Keyboard"", ""Phone"", ""Headphones""]",4636.34,{},84383,0,Africa +2023-01-15,29808,8537,"[""Phone"", ""Headphones""]",1221.8,"{""loyalty"": ""14%""}",233791,0,Africa +2024-05-30,29809,8839,"[""Monitor"", ""Headphones""]",1735.0,"{"""": ""21%""}",225654,1,Africa +2023-05-05,29810,271,"[""Tablet""]",1442.92,"{""loyalty"": ""29%""}",90052,0,South America +2023-04-30,29811,1271,"[""Laptop"", ""Charger""]",3379.84,{},12773,0,South America +2024-11-08,29812,7809,"[""Keyboard"", ""Charger""]",3764.09,{},212544,0,Europe +2023-11-16,29813,2485,"[""Wireless Mouse"", ""Phone"", ""Charger""]",879.03,"{""loyalty"": ""17%""}",8269,1,Europe +2023-12-03,29814,90,"[""Laptop"", ""Phone"", ""Monitor""]",2181.09,"{""loyalty"": ""21%""}",197163,1,South America +2024-02-03,29815,938,"[""Wireless Mouse"", ""Keyboard""]",3034.13,"{"""": ""14%""}",196219,1,North America +2023-09-22,29816,8140,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2331.93,"{""promo"": ""17%""}",48291,1,South America +2024-12-05,29817,7909,"[""Monitor""]",3664.79,{},274033,0,North America +2023-10-07,29818,7536,"[""Keyboard"", ""Laptop""]",3301.82,{},96463,1,North America +2024-08-11,29819,7877,"[""Monitor""]",1280.37,{},288200,1,North America +2023-09-14,29820,1014,"[""Keyboard"", ""Monitor"", ""Laptop""]",3798.8,"{""loyalty"": ""22%""}",233358,0,Asia +2023-07-19,29821,3914,"[""Keyboard"", ""Wireless Mouse""]",2008.34,{},277176,1,South America +2024-11-05,29822,4007,"[""Tablet"", ""Phone"", ""Keyboard""]",4137.23,"{"""": ""29%""}",201788,0,Asia +2024-03-14,29823,8672,"[""Charger"", ""Laptop""]",4501.81,{},64790,1,South America +2023-07-06,29824,9346,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2253.11,"{""loyalty"": ""14%""}",142473,0,Asia +2024-03-03,29825,1263,"[""Phone"", ""Tablet""]",3278.07,{},70090,0,South America +2024-11-28,29826,5513,"[""Keyboard""]",825.36,{},84700,1,Europe +2023-02-06,29827,3714,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3603.29,"{""promo"": ""26%""}",107662,1,Europe +2023-04-21,29828,7468,"[""Tablet""]",883.86,{},148409,1,Asia +2023-11-04,29829,2041,"[""Phone""]",1315.42,{},28767,0,South America +2023-01-02,29830,5085,"[""Laptop""]",591.33,{},213107,1,Europe +2024-07-08,29831,3182,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2848.42,"{""promo"": ""11%""}",92340,1,Asia +2024-06-20,29832,5876,"[""Monitor""]",1558.42,{},260500,0,Europe +2024-10-31,29833,6069,"[""Tablet"", ""Monitor"", ""Keyboard""]",2392.78,"{""loyalty"": ""11%""}",118905,0,Europe +2024-04-08,29834,2369,"[""Phone"", ""Headphones"", ""Monitor""]",4978.39,"{"""": ""5%""}",291154,0,Asia +2023-07-10,29835,1347,"[""Laptop"", ""Charger"", ""Monitor""]",2348.14,{},101358,1,North America +2024-06-11,29836,8136,"[""Headphones"", ""Laptop""]",135.97,{},208837,1,North America +2023-07-10,29837,8367,"[""Headphones"", ""Phone""]",3284.25,{},56278,0,Asia +2024-01-09,29838,2248,"[""Charger"", ""Keyboard""]",3859.81,{},31146,0,Asia +2024-11-22,29839,5806,"[""Charger"", ""Phone"", ""Tablet""]",862.27,"{""seasonal"": ""19%""}",11241,0,North America +2024-11-10,29840,5554,"[""Laptop""]",2235.15,{},298640,1,Europe +2023-07-02,29841,1815,"[""Tablet"", ""Keyboard""]",2187.83,{},259211,1,Europe +2023-12-14,29842,2843,"[""Tablet"", ""Monitor""]",4136.66,{},1323,1,Asia +2023-06-26,29843,1838,"[""Keyboard"", ""Phone"", ""Monitor""]",2168.27,"{"""": ""5%""}",224281,0,North America +2024-11-07,29844,5783,"[""Tablet"", ""Keyboard""]",4726.23,{},101252,0,Africa +2024-12-17,29845,831,"[""Monitor"", ""Tablet""]",3013.78,"{""seasonal"": ""27%""}",117248,0,South America +2023-02-01,29846,5888,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2078.86,{},106296,1,Africa +2023-01-28,29847,1774,"[""Headphones"", ""Monitor"", ""Laptop""]",328.49,"{""seasonal"": ""12%""}",170150,0,Europe +2024-06-18,29848,3436,"[""Tablet"", ""Laptop"", ""Phone""]",4579.05,"{""seasonal"": ""28%""}",84040,1,Asia +2023-04-10,29849,7143,"[""Charger"", ""Laptop"", ""Monitor""]",2154.31,{},13430,1,Asia +2024-12-10,29850,7578,"[""Headphones"", ""Keyboard""]",998.73,"{"""": ""10%""}",35399,1,North America +2023-06-28,29851,743,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4198.79,{},135705,0,South America +2023-03-02,29852,2273,"[""Headphones"", ""Laptop"", ""Charger""]",113.05,{},136155,0,North America +2024-09-10,29853,8884,"[""Headphones"", ""Monitor"", ""Keyboard""]",1431.11,"{""promo"": ""12%""}",254426,1,North America +2023-11-06,29854,1239,"[""Laptop"", ""Tablet""]",987.03,"{""seasonal"": ""10%""}",84889,0,North America +2024-11-27,29855,5556,"[""Phone"", ""Headphones""]",1885.38,"{""seasonal"": ""12%""}",168196,0,Europe +2024-04-13,29856,4966,"[""Charger""]",4752.87,{},203469,0,South America +2023-12-05,29857,3939,"[""Phone""]",422.29,"{""loyalty"": ""26%""}",229885,1,Asia +2023-10-21,29858,2106,"[""Charger"", ""Tablet"", ""Headphones""]",120.23,{},265930,0,South America +2023-07-14,29859,5894,"[""Monitor"", ""Headphones"", ""Tablet""]",3706.47,{},166872,0,Africa +2023-08-20,29860,6866,"[""Tablet"", ""Wireless Mouse""]",2613.16,{},217356,0,Asia +2024-03-26,29861,4466,"[""Headphones""]",3690.96,"{"""": ""24%""}",165630,1,Europe +2024-03-22,29862,5626,"[""Charger"", ""Tablet""]",3665.63,{},33456,1,North America +2023-06-08,29863,8249,"[""Charger"", ""Tablet"", ""Keyboard""]",721.54,"{""seasonal"": ""20%""}",217952,0,Europe +2024-05-04,29864,1832,"[""Headphones"", ""Laptop"", ""Phone""]",831.93,"{""seasonal"": ""6%""}",126055,1,Africa +2024-07-29,29865,9357,"[""Headphones"", ""Charger""]",1716.75,{},283446,0,North America +2024-02-25,29866,5060,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3025.39,"{"""": ""10%""}",101401,0,South America +2023-03-14,29867,7010,"[""Headphones"", ""Laptop""]",3707.36,"{""promo"": ""19%""}",16234,0,Europe +2024-05-19,29868,8956,"[""Keyboard"", ""Wireless Mouse""]",4483.81,"{"""": ""5%""}",37177,0,Europe +2023-05-20,29869,8435,"[""Tablet"", ""Monitor"", ""Charger""]",1207.22,{},237351,1,South America +2023-04-15,29870,6395,"[""Monitor"", ""Charger""]",4120.77,{},11737,0,Africa +2024-02-14,29871,4341,"[""Headphones"", ""Charger"", ""Keyboard""]",4777.48,"{""loyalty"": ""12%""}",157675,1,North America +2023-12-08,29872,434,"[""Keyboard""]",3392.05,{},2743,1,South America +2023-05-06,29873,1685,"[""Laptop""]",1746.94,{},29799,1,Europe +2023-07-27,29874,3133,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4136.69,"{"""": ""18%""}",95273,1,North America +2024-02-04,29875,6078,"[""Charger"", ""Monitor"", ""Laptop""]",3287.91,"{""seasonal"": ""15%""}",101464,0,North America +2023-08-28,29876,7137,"[""Charger""]",674.7,"{""loyalty"": ""10%""}",111850,0,Europe +2023-10-10,29877,5983,"[""Charger"", ""Phone""]",4930.74,{},148250,1,Africa +2024-08-18,29878,6362,"[""Phone"", ""Charger""]",2333.81,{},24806,1,Europe +2023-12-29,29879,2708,"[""Charger""]",3156.52,{},144913,0,Asia +2023-07-21,29880,1427,"[""Charger""]",622.5,"{""loyalty"": ""25%""}",117808,1,North America +2023-01-20,29881,2105,"[""Laptop""]",4471.16,"{""promo"": ""16%""}",68262,1,Europe +2024-04-01,29882,9593,"[""Tablet""]",3679.96,"{""seasonal"": ""29%""}",152307,0,North America +2023-08-15,29883,3300,"[""Phone""]",4296.19,{},200672,0,Europe +2024-01-03,29884,5941,"[""Headphones""]",4124.16,{},216437,1,South America +2024-12-06,29885,5568,"[""Charger"", ""Headphones"", ""Laptop""]",411.64,"{"""": ""26%""}",87329,0,Asia +2023-09-25,29886,1838,"[""Phone"", ""Charger"", ""Headphones""]",229.14,"{""seasonal"": ""22%""}",231775,1,South America +2024-10-23,29887,467,"[""Laptop""]",2232.14,{},190127,0,Europe +2024-01-23,29888,7404,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4272.62,{},256353,0,South America +2023-06-30,29889,4556,"[""Phone""]",3880.52,"{"""": ""17%""}",72113,0,Asia +2024-01-04,29890,4569,"[""Keyboard"", ""Phone"", ""Monitor""]",441.24,{},215010,1,South America +2023-04-08,29891,9958,"[""Laptop"", ""Keyboard"", ""Headphones""]",3221.66,{},172144,1,North America +2024-01-03,29892,570,"[""Laptop"", ""Keyboard""]",3132.14,{},204320,0,North America +2024-11-24,29893,5210,"[""Laptop"", ""Wireless Mouse""]",2042.77,"{""promo"": ""16%""}",159364,1,Europe +2024-06-05,29894,7085,"[""Tablet"", ""Monitor"", ""Laptop""]",1253.22,{},225853,0,Europe +2023-06-03,29895,3164,"[""Charger"", ""Tablet""]",911.5,"{"""": ""5%""}",259793,0,South America +2023-02-21,29896,8882,"[""Charger"", ""Laptop""]",2052.52,"{""promo"": ""29%""}",289253,0,Europe +2024-07-04,29897,1679,"[""Charger"", ""Phone""]",2046.64,"{"""": ""21%""}",3398,0,Asia +2024-03-28,29898,1276,"[""Laptop""]",985.52,{},115650,1,Europe +2023-11-05,29899,4543,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1481.78,{},223245,1,North America +2024-10-31,29900,3729,"[""Tablet""]",2601.48,{},31823,0,South America +2023-07-04,29901,6639,"[""Phone"", ""Keyboard""]",3318.07,"{""promo"": ""30%""}",216657,0,South America +2024-05-31,29902,7677,"[""Headphones"", ""Keyboard""]",144.2,"{""promo"": ""19%""}",214741,1,Europe +2024-08-03,29903,7912,"[""Tablet"", ""Charger"", ""Keyboard""]",4197.55,{},248688,0,Europe +2023-08-25,29904,8874,"[""Laptop""]",4976.63,{},121970,1,South America +2024-03-01,29905,75,"[""Phone"", ""Laptop""]",3267.56,"{""loyalty"": ""8%""}",224793,1,Africa +2024-02-18,29906,2902,"[""Headphones"", ""Charger""]",4507.03,"{"""": ""30%""}",12562,1,North America +2024-06-20,29907,2863,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4885.79,"{""loyalty"": ""21%""}",2971,0,Asia +2023-10-11,29908,2583,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",278.82,"{""promo"": ""14%""}",212443,1,Europe +2023-12-18,29909,9733,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3237.49,"{"""": ""25%""}",248751,1,Europe +2023-10-23,29910,9555,"[""Keyboard"", ""Headphones"", ""Tablet""]",3717.36,{},139353,1,Europe +2023-04-04,29911,506,"[""Phone""]",2470.69,"{""loyalty"": ""13%""}",282318,0,South America +2024-07-25,29912,5336,"[""Wireless Mouse"", ""Tablet""]",736.24,"{"""": ""28%""}",175368,0,Europe +2024-10-04,29913,3892,"[""Headphones"", ""Monitor""]",4454.07,{},152608,0,Asia +2024-11-27,29914,1244,"[""Headphones""]",2936.41,{},288216,1,Africa +2024-12-25,29915,7233,"[""Laptop"", ""Monitor""]",4440.12,{},149210,0,Africa +2023-07-05,29916,504,"[""Phone"", ""Charger""]",874.6,{},38638,1,North America +2023-08-06,29917,7532,"[""Laptop""]",4595.74,"{""promo"": ""16%""}",197620,1,Africa +2023-07-14,29918,2683,"[""Headphones""]",4897.67,"{""seasonal"": ""13%""}",140283,1,South America +2023-01-31,29919,9985,"[""Keyboard"", ""Wireless Mouse""]",4242.25,{},243121,0,Europe +2023-03-14,29920,6213,"[""Monitor"", ""Laptop"", ""Keyboard""]",3008.58,"{""promo"": ""30%""}",270597,0,Asia +2023-12-25,29921,8763,"[""Monitor"", ""Keyboard""]",3200.96,{},207100,0,Europe +2023-07-27,29922,5500,"[""Laptop"", ""Keyboard""]",2734.6,"{""seasonal"": ""30%""}",55265,1,South America +2024-01-26,29923,5663,"[""Laptop""]",1112.2,{},5637,1,Europe +2024-10-27,29924,8068,"[""Tablet"", ""Monitor""]",1210.91,{},28775,0,South America +2024-06-01,29925,4646,"[""Laptop"", ""Charger""]",1106.64,{},122257,1,Africa +2024-03-02,29926,7515,"[""Charger"", ""Laptop""]",3782.36,"{""seasonal"": ""24%""}",17015,1,Asia +2023-03-25,29927,9214,"[""Monitor"", ""Tablet"", ""Laptop""]",2972.01,"{""seasonal"": ""30%""}",221728,0,South America +2023-10-27,29928,4957,"[""Charger"", ""Keyboard"", ""Headphones""]",3362.83,{},285251,1,Asia +2023-01-22,29929,2727,"[""Tablet""]",4402.2,{},123346,0,Asia +2023-07-12,29930,4130,"[""Tablet"", ""Charger"", ""Keyboard""]",1452.76,{},163138,0,South America +2024-07-17,29931,5454,"[""Charger""]",4255.01,{},246033,1,Africa +2024-01-11,29932,8814,"[""Monitor""]",3987.31,{},193539,1,Asia +2024-04-25,29933,1909,"[""Wireless Mouse"", ""Keyboard""]",86.48,"{""seasonal"": ""7%""}",261389,1,Asia +2023-08-14,29934,8615,"[""Monitor"", ""Tablet""]",1802.08,{},227853,0,Asia +2024-12-10,29935,6703,"[""Charger"", ""Laptop""]",1494.23,{},33036,0,Asia +2023-02-25,29936,4357,"[""Charger""]",3648.28,{},266960,0,Asia +2023-12-19,29937,465,"[""Phone"", ""Monitor""]",967.72,"{""seasonal"": ""14%""}",10527,0,Africa +2024-08-18,29938,8251,"[""Monitor"", ""Phone"", ""Keyboard""]",2049.21,"{""seasonal"": ""30%""}",41452,0,North America +2023-04-22,29939,7368,"[""Phone"", ""Headphones""]",4176.28,"{""seasonal"": ""16%""}",229791,0,North America +2024-07-19,29940,192,"[""Tablet"", ""Charger""]",2139.62,{},46073,0,North America +2023-08-19,29941,4138,"[""Charger""]",137.15,{},151587,0,Asia +2024-10-01,29942,7987,"[""Wireless Mouse"", ""Tablet""]",3647.6,"{""seasonal"": ""25%""}",37460,0,Europe +2023-01-01,29943,4696,"[""Keyboard"", ""Headphones""]",2147.82,"{""seasonal"": ""30%""}",151714,1,Asia +2024-07-23,29944,4551,"[""Laptop"", ""Monitor"", ""Charger""]",2472.86,"{""seasonal"": ""28%""}",272455,0,North America +2023-03-21,29945,1904,"[""Phone""]",2040.44,"{""loyalty"": ""27%""}",117157,0,South America +2023-05-09,29946,1753,"[""Monitor"", ""Phone""]",2304.95,{},35542,0,Africa +2023-12-05,29947,3175,"[""Tablet""]",1366.56,{},170791,1,South America +2023-08-30,29948,3106,"[""Charger"", ""Keyboard"", ""Headphones""]",1338.24,"{""promo"": ""16%""}",270829,1,North America +2023-02-24,29949,3894,"[""Keyboard"", ""Headphones""]",3076.98,{},245434,1,Asia +2023-03-25,29950,5112,"[""Keyboard"", ""Phone"", ""Tablet""]",2510.21,{},62686,1,South America +2024-01-09,29951,3880,"[""Monitor"", ""Headphones"", ""Phone""]",4437.33,{},105997,0,Asia +2023-08-26,29952,3254,"[""Phone"", ""Charger"", ""Keyboard""]",4479.94,{},14906,1,Asia +2023-08-16,29953,8688,"[""Laptop""]",4742.65,"{""promo"": ""27%""}",287472,0,North America +2024-10-25,29954,9727,"[""Keyboard""]",3692.89,{},83668,0,North America +2023-01-25,29955,5862,"[""Phone"", ""Keyboard""]",923.36,"{""seasonal"": ""21%""}",193386,1,Europe +2023-01-31,29956,4738,"[""Phone"", ""Wireless Mouse""]",4652.66,"{""seasonal"": ""19%""}",258950,0,Asia +2024-02-20,29957,8988,"[""Charger"", ""Laptop"", ""Phone""]",2655.65,"{""seasonal"": ""13%""}",262808,1,South America +2023-06-18,29958,8378,"[""Tablet""]",3286.08,"{""loyalty"": ""23%""}",157131,1,Europe +2023-08-20,29959,2181,"[""Tablet"", ""Laptop"", ""Phone""]",1025.19,"{""promo"": ""20%""}",202093,1,Africa +2023-07-07,29960,3840,"[""Laptop""]",870.15,"{""promo"": ""16%""}",47928,0,Asia +2023-03-16,29961,5736,"[""Wireless Mouse""]",3654.25,{},291996,0,Asia +2023-06-17,29962,1846,"[""Laptop"", ""Charger"", ""Phone""]",2635.75,"{""seasonal"": ""22%""}",59982,1,Europe +2023-03-16,29963,8247,"[""Headphones"", ""Tablet""]",4548.27,{},240970,1,South America +2024-08-03,29964,9642,"[""Charger""]",4887.59,{},276130,0,South America +2024-05-07,29965,833,"[""Wireless Mouse""]",1956.32,{},204423,0,South America +2024-07-29,29966,49,"[""Wireless Mouse""]",3151.29,"{""seasonal"": ""20%""}",203117,0,South America +2023-07-01,29967,4629,"[""Laptop"", ""Phone"", ""Charger""]",3037.65,"{"""": ""28%""}",278366,0,South America +2023-08-19,29968,8816,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4918.65,"{""promo"": ""5%""}",261225,0,Africa +2023-10-06,29969,2508,"[""Phone"", ""Charger""]",693.17,{},210142,1,Europe +2023-11-09,29970,7586,"[""Keyboard""]",661.67,"{""loyalty"": ""28%""}",19239,1,Africa +2024-09-20,29971,1888,"[""Monitor"", ""Headphones""]",3257.19,{},209529,0,Europe +2023-07-12,29972,7554,"[""Tablet"", ""Laptop"", ""Keyboard""]",1615.73,"{""loyalty"": ""10%""}",186818,1,South America +2023-08-04,29973,7651,"[""Charger"", ""Laptop""]",2643.76,"{""loyalty"": ""28%""}",146834,1,Asia +2024-02-14,29974,2184,"[""Wireless Mouse""]",98.08,{},268428,0,North America +2023-06-06,29975,8277,"[""Headphones"", ""Tablet"", ""Phone""]",1522.65,{},41875,1,North America +2023-12-29,29976,6044,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1321.55,"{"""": ""17%""}",216898,1,North America +2023-06-30,29977,6912,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3973.46,{},298812,0,Europe +2023-07-13,29978,9362,"[""Keyboard""]",4295.45,"{""promo"": ""17%""}",286071,0,Europe +2024-04-25,29979,7970,"[""Monitor"", ""Charger""]",2539.95,{},153925,0,South America +2023-08-07,29980,9365,"[""Phone""]",4688.59,"{"""": ""5%""}",140321,0,South America +2024-04-01,29981,6986,"[""Wireless Mouse""]",4236.8,{},105720,1,North America +2024-10-13,29982,8151,"[""Charger"", ""Keyboard"", ""Monitor""]",301.15,"{""seasonal"": ""5%""}",156859,0,Africa +2024-07-17,29983,2900,"[""Monitor""]",3970.69,"{"""": ""16%""}",159121,0,North America +2024-08-21,29984,193,"[""Tablet""]",4098.87,{},296432,1,South America +2023-01-31,29985,9350,"[""Monitor"", ""Tablet""]",1272.29,"{""loyalty"": ""26%""}",218156,1,Europe +2024-10-01,29986,458,"[""Monitor""]",3062.28,{},277400,0,Africa +2023-03-26,29987,1550,"[""Headphones""]",333.86,"{""loyalty"": ""25%""}",155202,1,North America +2023-11-28,29988,1821,"[""Laptop"", ""Wireless Mouse""]",3916.85,"{""seasonal"": ""15%""}",129894,0,Europe +2024-05-18,29989,7469,"[""Charger"", ""Monitor""]",2624.85,"{"""": ""9%""}",177264,0,Africa +2023-02-21,29990,4289,"[""Charger""]",980.05,"{""seasonal"": ""13%""}",53099,0,South America +2024-03-17,29991,6496,"[""Phone"", ""Wireless Mouse""]",2979.22,"{""seasonal"": ""30%""}",238195,0,Asia +2024-09-01,29992,9548,"[""Phone"", ""Headphones"", ""Monitor""]",2795.35,{},184410,1,South America +2024-01-10,29993,921,"[""Wireless Mouse""]",2793.67,"{""promo"": ""12%""}",259947,0,Europe +2024-03-03,29994,6479,"[""Charger"", ""Keyboard"", ""Headphones""]",1674.72,"{""seasonal"": ""7%""}",14218,0,Asia +2024-01-21,29995,6451,"[""Phone""]",3210.85,"{"""": ""15%""}",149777,1,North America +2024-02-04,29996,9901,"[""Laptop""]",848.82,{},109793,0,Asia +2023-08-19,29997,422,"[""Wireless Mouse""]",3980.53,"{"""": ""23%""}",99404,0,North America +2024-01-16,29998,6386,"[""Tablet"", ""Wireless Mouse""]",1174.13,"{""promo"": ""14%""}",278633,1,Africa +2024-10-13,29999,7534,"[""Phone"", ""Charger""]",4965.63,{},299928,1,South America +2024-06-06,30000,6194,"[""Monitor""]",4755.1,"{""loyalty"": ""8%""}",69708,0,Africa +2023-06-08,30001,5257,"[""Tablet""]",3896.59,"{""loyalty"": ""6%""}",78326,1,North America +2024-05-27,30002,2698,"[""Charger"", ""Keyboard""]",2023.3,{},262978,1,Europe +2023-11-09,30003,2939,"[""Tablet"", ""Charger""]",550.98,{},151476,1,South America +2023-05-24,30004,2413,"[""Headphones"", ""Tablet""]",3571.79,{},169454,1,Africa +2024-06-13,30005,4508,"[""Keyboard""]",3405.7,"{""loyalty"": ""12%""}",184086,0,South America +2023-12-08,30006,7303,"[""Laptop""]",566.2,{},112641,1,Asia +2024-04-10,30007,4299,"[""Tablet"", ""Charger"", ""Keyboard""]",2478.66,"{""promo"": ""27%""}",220426,1,Europe +2024-09-12,30008,6058,"[""Charger"", ""Keyboard""]",2959.51,{},229967,0,Europe +2024-12-31,30009,1481,"[""Charger"", ""Wireless Mouse""]",4742.19,"{"""": ""15%""}",293106,1,Africa +2024-11-23,30010,4729,"[""Monitor"", ""Tablet""]",3875.44,"{""seasonal"": ""11%""}",167354,1,Africa +2024-01-03,30011,8078,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1706.76,"{""loyalty"": ""9%""}",200492,0,South America +2024-08-04,30012,1895,"[""Laptop"", ""Keyboard""]",3465.88,"{""seasonal"": ""12%""}",137534,1,North America +2023-12-04,30013,9979,"[""Tablet""]",392.43,"{"""": ""17%""}",216056,1,Europe +2023-01-16,30014,1623,"[""Keyboard"", ""Monitor""]",3069.89,{},248637,1,Asia +2024-06-10,30015,5935,"[""Phone""]",4655.21,{},192211,0,Asia +2023-01-17,30016,4736,"[""Tablet""]",1573.04,{},209753,0,Asia +2024-07-19,30017,9024,"[""Keyboard""]",290.28,{},12481,0,Asia +2024-03-08,30018,5166,"[""Wireless Mouse""]",2275.33,"{""promo"": ""17%""}",119727,0,North America +2023-01-01,30019,3800,"[""Tablet"", ""Wireless Mouse""]",4608.73,"{""promo"": ""6%""}",252514,0,North America +2024-12-05,30020,4269,"[""Keyboard""]",658.93,{},221475,1,Africa +2024-01-01,30021,7728,"[""Monitor"", ""Wireless Mouse""]",713.69,{},42411,0,Asia +2024-02-06,30022,8174,"[""Headphones""]",3944.8,"{"""": ""8%""}",217797,0,Africa +2024-10-21,30023,2428,"[""Keyboard""]",3479.63,{},233775,1,North America +2024-03-28,30024,3185,"[""Headphones""]",686.86,"{"""": ""6%""}",50146,0,Africa +2024-11-16,30025,6332,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",987.13,{},222720,0,South America +2023-01-11,30026,8855,"[""Phone"", ""Charger"", ""Laptop""]",677.83,"{"""": ""30%""}",170774,1,Europe +2023-03-02,30027,5975,"[""Tablet""]",1298.3,"{""seasonal"": ""8%""}",6237,0,North America +2024-02-05,30028,1580,"[""Phone"", ""Keyboard"", ""Monitor""]",2788.78,"{""promo"": ""18%""}",99686,1,Asia +2024-06-12,30029,7838,"[""Keyboard"", ""Monitor"", ""Headphones""]",2521.55,"{""promo"": ""26%""}",261992,1,South America +2023-09-23,30030,2256,"[""Wireless Mouse"", ""Monitor""]",1493.44,{},159628,0,Europe +2023-03-14,30031,1906,"[""Monitor"", ""Laptop""]",3406.26,{},258120,1,North America +2023-11-14,30032,3417,"[""Laptop""]",157.17,"{""promo"": ""6%""}",182327,0,South America +2023-02-06,30033,2844,"[""Charger"", ""Tablet""]",1053.97,{},291010,1,Africa +2023-10-05,30034,7355,"[""Wireless Mouse""]",1736.11,"{""promo"": ""8%""}",205326,1,North America +2023-02-20,30035,7109,"[""Phone"", ""Laptop""]",1628.51,{},276205,0,Africa +2024-01-02,30036,3861,"[""Tablet""]",123.69,{},270115,1,Africa +2023-05-12,30037,1628,"[""Laptop"", ""Tablet""]",4372.15,{},4366,0,Africa +2024-10-03,30038,6896,"[""Headphones"", ""Keyboard"", ""Laptop""]",2982.48,{},277188,1,Africa +2023-07-29,30039,2707,"[""Monitor""]",2857.17,{},2792,0,North America +2024-04-28,30040,9212,"[""Tablet"", ""Monitor"", ""Headphones""]",769.31,{},73777,0,North America +2024-04-11,30041,2638,"[""Keyboard""]",906.14,"{""promo"": ""18%""}",91680,0,Asia +2024-05-21,30042,8256,"[""Headphones"", ""Keyboard"", ""Charger""]",908.46,{},274254,0,Africa +2024-05-30,30043,1469,"[""Headphones""]",2086.12,{},136594,0,Africa +2024-08-05,30044,5617,"[""Keyboard"", ""Monitor""]",703.09,"{""seasonal"": ""30%""}",67875,1,Asia +2023-02-13,30045,6809,"[""Charger"", ""Wireless Mouse""]",2443.97,{},239373,1,Africa +2024-04-16,30046,814,"[""Keyboard""]",295.15,{},289299,1,North America +2024-06-14,30047,7142,"[""Laptop""]",375.03,{},144061,0,South America +2023-03-04,30048,5123,"[""Phone"", ""Monitor"", ""Headphones""]",1330.49,{},284527,0,Asia +2024-04-08,30049,8036,"[""Tablet""]",2774.56,{},18541,0,Africa +2024-05-10,30050,1247,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2714.15,"{""loyalty"": ""17%""}",179977,0,South America +2023-04-06,30051,33,"[""Wireless Mouse"", ""Charger""]",4744.58,"{"""": ""22%""}",225603,0,Asia +2024-08-25,30052,7345,"[""Tablet"", ""Headphones""]",131.2,"{"""": ""21%""}",35490,0,Asia +2023-12-11,30053,1530,"[""Wireless Mouse"", ""Laptop""]",1411.14,{},46466,1,Asia +2023-11-25,30054,7449,"[""Laptop"", ""Headphones""]",3204.36,"{""loyalty"": ""10%""}",233872,1,South America +2023-12-03,30055,9032,"[""Headphones"", ""Monitor""]",3133.7,"{""seasonal"": ""22%""}",165993,1,South America +2024-06-16,30056,9128,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4212.99,"{""promo"": ""30%""}",166040,0,North America +2023-01-19,30057,593,"[""Charger""]",2754.85,{},13882,1,Europe +2024-08-26,30058,8886,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1990.9,"{"""": ""15%""}",198408,1,Africa +2024-07-21,30059,6116,"[""Phone""]",2404.63,{},136623,0,Asia +2024-01-17,30060,9904,"[""Headphones"", ""Keyboard"", ""Phone""]",2537.07,{},10730,0,Europe +2024-02-06,30061,1533,"[""Phone""]",1080.14,{},279251,1,Europe +2024-04-29,30062,5620,"[""Laptop""]",2418.28,"{""promo"": ""19%""}",213099,1,North America +2023-02-23,30063,3458,"[""Monitor""]",361.33,{},222936,0,North America +2023-12-15,30064,6975,"[""Tablet"", ""Headphones"", ""Laptop""]",1983.56,{},72981,1,Europe +2023-08-26,30065,4484,"[""Laptop"", ""Charger"", ""Tablet""]",4088.93,{},106525,1,South America +2023-11-08,30066,763,"[""Charger"", ""Laptop""]",889.5,{},102462,0,Europe +2023-08-16,30067,9821,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4156.78,"{""loyalty"": ""30%""}",147716,1,Asia +2023-05-27,30068,5643,"[""Keyboard"", ""Laptop""]",1572.81,"{""promo"": ""18%""}",111029,1,Asia +2024-01-28,30069,4175,"[""Monitor"", ""Phone""]",456.96,"{"""": ""7%""}",227016,1,Europe +2023-07-18,30070,1036,"[""Phone"", ""Tablet"", ""Monitor""]",4542.83,"{"""": ""24%""}",41197,0,Europe +2024-01-10,30071,5854,"[""Tablet"", ""Wireless Mouse""]",4649.62,"{"""": ""25%""}",250695,1,South America +2023-12-04,30072,8465,"[""Keyboard""]",2219.05,"{"""": ""8%""}",152081,1,Asia +2023-08-26,30073,2559,"[""Headphones"", ""Monitor"", ""Laptop""]",759.03,"{"""": ""9%""}",232478,0,Europe +2023-06-03,30074,9659,"[""Monitor"", ""Phone""]",3197.27,{},217415,0,Asia +2024-10-28,30075,97,"[""Tablet"", ""Laptop"", ""Charger""]",860.0,"{"""": ""10%""}",197941,1,Africa +2024-06-10,30076,7525,"[""Phone"", ""Monitor"", ""Laptop""]",2903.83,{},123804,0,North America +2023-05-28,30077,3743,"[""Headphones"", ""Keyboard""]",3046.13,"{""seasonal"": ""6%""}",206175,0,South America +2023-07-24,30078,2894,"[""Keyboard""]",3998.76,{},68261,1,South America +2024-12-09,30079,5813,"[""Monitor"", ""Laptop""]",3303.4,"{""loyalty"": ""30%""}",283553,0,Europe +2023-05-21,30080,5920,"[""Tablet""]",2407.87,"{""promo"": ""16%""}",138783,1,Europe +2023-11-13,30081,1712,"[""Headphones"", ""Tablet"", ""Charger""]",2018.18,"{"""": ""8%""}",293556,0,Europe +2024-02-27,30082,4998,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4220.04,{},33752,1,Europe +2024-07-06,30083,1269,"[""Keyboard""]",1766.12,{},154537,1,Europe +2024-07-20,30084,4167,"[""Laptop"", ""Charger""]",725.96,{},100173,0,Africa +2024-07-20,30085,7062,"[""Charger""]",1175.35,{},77895,0,Africa +2024-08-27,30086,444,"[""Laptop""]",3073.72,{},218101,1,North America +2024-08-08,30087,3062,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4820.91,{},207285,1,South America +2023-10-03,30088,6765,"[""Phone"", ""Charger""]",4011.64,{},9131,0,South America +2024-02-16,30089,5775,"[""Headphones"", ""Wireless Mouse""]",4954.65,{},274035,0,South America +2023-06-22,30090,6254,"[""Charger""]",2411.16,"{""promo"": ""29%""}",213609,0,North America +2023-09-29,30091,3969,"[""Laptop"", ""Tablet""]",4543.93,{},249337,1,South America +2023-11-06,30092,4999,"[""Charger"", ""Keyboard""]",1131.97,{},78138,0,Africa +2024-06-04,30093,9489,"[""Charger"", ""Wireless Mouse""]",1114.96,{},297093,1,North America +2023-05-04,30094,3966,"[""Headphones"", ""Monitor"", ""Laptop""]",392.75,"{"""": ""10%""}",160433,0,Europe +2023-02-26,30095,2200,"[""Monitor"", ""Keyboard""]",1317.74,{},84715,1,Africa +2024-05-21,30096,5634,"[""Monitor"", ""Charger""]",992.34,{},34833,1,Africa +2024-12-17,30097,1801,"[""Headphones"", ""Laptop""]",3502.93,"{""loyalty"": ""28%""}",15093,0,South America +2023-06-02,30098,1637,"[""Wireless Mouse"", ""Charger""]",2523.94,"{""promo"": ""21%""}",246986,0,North America +2024-11-16,30099,1638,"[""Laptop"", ""Keyboard""]",2161.26,"{""loyalty"": ""10%""}",143219,1,Europe +2023-06-18,30100,2296,"[""Wireless Mouse"", ""Phone""]",3088.42,{},276829,1,Asia +2024-06-15,30101,5016,"[""Tablet"", ""Monitor""]",261.49,"{""promo"": ""13%""}",264757,1,South America +2023-07-29,30102,4859,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",291.87,{},160395,0,Europe +2023-04-13,30103,1490,"[""Keyboard""]",4476.08,"{""seasonal"": ""18%""}",3850,0,Europe +2024-09-11,30104,4696,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3339.75,"{""promo"": ""9%""}",82913,1,North America +2024-08-06,30105,2377,"[""Headphones"", ""Keyboard"", ""Monitor""]",4946.98,"{""promo"": ""14%""}",115804,0,Africa +2023-03-25,30106,3921,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2197.77,{},108226,1,Europe +2023-10-29,30107,8847,"[""Monitor""]",191.48,{},242448,1,Africa +2023-09-21,30108,3940,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3619.48,{},285170,0,Asia +2024-09-12,30109,4854,"[""Keyboard"", ""Monitor""]",1479.33,"{"""": ""24%""}",58190,1,South America +2023-05-13,30110,7428,"[""Tablet""]",2528.75,{},165811,0,North America +2023-12-21,30111,3952,"[""Phone""]",4928.13,"{""loyalty"": ""7%""}",34256,0,Africa +2023-01-18,30112,4965,"[""Laptop"", ""Monitor""]",2654.34,{},274375,1,Africa +2024-04-29,30113,7101,"[""Headphones"", ""Phone"", ""Tablet""]",4038.18,"{""loyalty"": ""16%""}",13482,0,Asia +2024-03-24,30114,2798,"[""Headphones"", ""Keyboard"", ""Tablet""]",3097.13,{},204901,0,Asia +2024-12-05,30115,3004,"[""Laptop"", ""Headphones"", ""Charger""]",2691.8,"{""loyalty"": ""15%""}",6885,1,North America +2023-05-05,30116,9506,"[""Headphones"", ""Monitor""]",681.54,"{"""": ""18%""}",258900,1,South America +2023-02-05,30117,3209,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4317.07,{},246582,1,Europe +2023-05-15,30118,7837,"[""Headphones"", ""Phone""]",3882.67,"{""promo"": ""28%""}",252037,0,Europe +2024-05-24,30119,5391,"[""Phone"", ""Monitor"", ""Charger""]",193.18,{},33819,0,North America +2023-10-26,30120,2210,"[""Headphones"", ""Phone"", ""Laptop""]",651.15,{},2526,1,North America +2023-04-26,30121,335,"[""Tablet"", ""Keyboard""]",658.17,"{""loyalty"": ""17%""}",257427,1,Asia +2024-12-02,30122,2604,"[""Tablet"", ""Wireless Mouse""]",4052.8,{},114309,0,Asia +2023-06-04,30123,6057,"[""Charger"", ""Phone""]",183.0,"{"""": ""14%""}",130995,1,Asia +2023-01-21,30124,7072,"[""Keyboard"", ""Laptop""]",4791.18,{},285629,1,North America +2023-04-26,30125,2613,"[""Charger""]",4434.18,"{"""": ""7%""}",6015,0,Africa +2023-02-23,30126,997,"[""Phone"", ""Laptop""]",4794.27,{},100968,1,Europe +2023-03-20,30127,9625,"[""Wireless Mouse""]",954.48,{},161113,1,Africa +2023-07-28,30128,6890,"[""Phone"", ""Keyboard"", ""Monitor""]",4756.83,{},193125,1,Africa +2024-12-19,30129,3212,"[""Charger"", ""Phone"", ""Monitor""]",3425.69,{},110064,0,Asia +2024-12-30,30130,1516,"[""Monitor"", ""Keyboard""]",3681.8,"{""promo"": ""16%""}",11557,0,Africa +2023-01-02,30131,6681,"[""Charger""]",2485.34,{},254296,0,Europe +2024-09-15,30132,2885,"[""Charger"", ""Tablet"", ""Headphones""]",4391.49,"{"""": ""29%""}",244610,1,Europe +2024-06-15,30133,8378,"[""Headphones"", ""Tablet""]",823.14,"{""loyalty"": ""10%""}",211051,1,Africa +2023-09-08,30134,3847,"[""Tablet""]",2721.79,{},17145,0,Europe +2023-09-02,30135,1335,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2168.78,"{""promo"": ""20%""}",207424,1,North America +2023-08-16,30136,5392,"[""Laptop"", ""Phone"", ""Tablet""]",2481.9,"{""loyalty"": ""20%""}",53563,1,Europe +2024-07-22,30137,1168,"[""Monitor"", ""Charger""]",1152.79,"{""seasonal"": ""5%""}",12007,0,Africa +2023-04-12,30138,1894,"[""Phone"", ""Charger""]",2776.62,"{""loyalty"": ""27%""}",148034,0,Asia +2023-01-14,30139,525,"[""Monitor"", ""Laptop""]",90.67,{},264008,0,South America +2024-07-15,30140,3090,"[""Charger""]",2213.21,{},232059,0,Asia +2023-02-05,30141,3316,"[""Monitor""]",2460.63,{},159116,0,Africa +2023-06-11,30142,2336,"[""Laptop"", ""Keyboard"", ""Headphones""]",3638.7,{},291789,0,North America +2024-01-03,30143,3364,"[""Charger"", ""Headphones""]",2702.86,{},219131,0,Africa +2024-04-04,30144,7907,"[""Tablet"", ""Headphones"", ""Monitor""]",515.35,"{""promo"": ""23%""}",73307,1,North America +2024-03-08,30145,1466,"[""Charger"", ""Laptop"", ""Phone""]",2037.37,"{""seasonal"": ""7%""}",174445,0,Africa +2023-12-15,30146,3216,"[""Headphones""]",2993.26,{},25965,1,Africa +2023-04-04,30147,4057,"[""Charger"", ""Tablet"", ""Headphones""]",3561.94,{},136444,0,Africa +2024-01-09,30148,176,"[""Keyboard"", ""Tablet"", ""Headphones""]",3564.16,{},98352,1,Africa +2024-03-07,30149,2073,"[""Headphones"", ""Charger"", ""Keyboard""]",4315.32,{},99361,0,Europe +2023-07-25,30150,4210,"[""Keyboard"", ""Tablet""]",151.02,"{""loyalty"": ""29%""}",37506,1,Europe +2024-01-10,30151,6392,"[""Keyboard"", ""Tablet""]",757.7,{},26641,1,North America +2023-02-15,30152,7498,"[""Charger"", ""Tablet"", ""Keyboard""]",827.29,{},235261,0,Asia +2023-02-16,30153,5842,"[""Laptop""]",2991.26,"{"""": ""26%""}",241845,0,North America +2023-04-19,30154,3896,"[""Keyboard""]",460.54,{},63179,0,South America +2024-02-28,30155,165,"[""Wireless Mouse""]",777.86,"{""promo"": ""10%""}",102493,0,Africa +2023-03-23,30156,6586,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4038.47,"{""seasonal"": ""29%""}",22001,1,North America +2023-04-15,30157,6845,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3552.23,{},202187,1,North America +2023-09-18,30158,3978,"[""Laptop""]",3640.67,{},9707,1,Africa +2024-11-19,30159,1294,"[""Keyboard"", ""Wireless Mouse""]",4560.62,"{""promo"": ""14%""}",45217,0,Europe +2023-01-17,30160,8617,"[""Tablet"", ""Keyboard""]",3767.44,"{"""": ""16%""}",83061,0,Africa +2023-08-17,30161,3752,"[""Tablet""]",903.04,"{""seasonal"": ""19%""}",247723,1,North America +2024-02-24,30162,1295,"[""Monitor""]",4774.88,"{"""": ""18%""}",176935,1,Europe +2024-04-29,30163,8427,"[""Tablet""]",2405.7,"{""promo"": ""17%""}",9810,1,North America +2024-04-06,30164,5022,"[""Tablet"", ""Phone""]",513.3,{},170233,1,South America +2024-07-23,30165,4367,"[""Monitor""]",4754.93,"{""loyalty"": ""19%""}",69262,0,South America +2024-07-06,30166,7716,"[""Headphones"", ""Tablet""]",3099.78,"{""loyalty"": ""7%""}",253236,0,Asia +2024-01-12,30167,1937,"[""Headphones""]",3683.48,"{"""": ""20%""}",73936,1,Asia +2024-07-22,30168,2748,"[""Laptop"", ""Phone""]",2391.8,{},270348,1,Africa +2024-03-22,30169,9651,"[""Phone"", ""Keyboard""]",3080.57,{},138038,0,Africa +2023-10-08,30170,5905,"[""Headphones""]",3411.08,{},136800,0,Africa +2023-09-08,30171,6976,"[""Tablet""]",3088.17,"{"""": ""16%""}",35328,1,Europe +2024-02-12,30172,1485,"[""Charger"", ""Laptop""]",4150.67,{},70097,1,North America +2024-08-12,30173,9193,"[""Keyboard"", ""Charger"", ""Laptop""]",4808.44,"{""seasonal"": ""15%""}",224563,0,Europe +2023-12-02,30174,5427,"[""Keyboard"", ""Headphones""]",4806.26,{},128970,1,Europe +2024-03-25,30175,7689,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2951.58,"{""seasonal"": ""10%""}",298867,0,South America +2023-09-09,30176,2054,"[""Charger""]",3236.68,"{""promo"": ""7%""}",190983,0,South America +2024-07-13,30177,1877,"[""Laptop"", ""Headphones""]",1930.53,"{"""": ""21%""}",107248,1,North America +2023-07-11,30178,4086,"[""Laptop"", ""Wireless Mouse""]",2417.18,"{""promo"": ""25%""}",8659,1,Europe +2023-11-04,30179,5690,"[""Tablet"", ""Keyboard"", ""Headphones""]",2454.47,"{""seasonal"": ""18%""}",194402,1,Asia +2024-03-04,30180,218,"[""Phone"", ""Charger""]",3359.29,{},269228,0,South America +2023-11-11,30181,4621,"[""Keyboard"", ""Laptop""]",1551.26,{},262721,0,North America +2023-07-18,30182,659,"[""Tablet""]",2866.22,{},28974,1,South America +2023-08-08,30183,9074,"[""Laptop""]",2322.73,"{""promo"": ""9%""}",80297,0,South America +2024-05-03,30184,3509,"[""Tablet"", ""Headphones""]",4656.66,"{""promo"": ""15%""}",82047,0,Europe +2023-02-08,30185,1709,"[""Charger"", ""Wireless Mouse""]",1579.46,{},82740,0,Africa +2024-05-28,30186,8121,"[""Laptop""]",650.99,{},98890,1,Europe +2023-09-06,30187,2414,"[""Tablet"", ""Wireless Mouse""]",1671.55,{},146600,1,North America +2023-08-09,30188,645,"[""Tablet""]",3079.09,"{""promo"": ""9%""}",240707,1,Asia +2024-02-02,30189,1505,"[""Headphones""]",4813.08,{},118025,1,North America +2023-12-21,30190,9206,"[""Keyboard"", ""Headphones""]",3136.7,"{"""": ""10%""}",275661,0,Africa +2023-08-13,30191,6198,"[""Phone"", ""Charger"", ""Headphones""]",3287.47,{},69850,0,North America +2023-02-07,30192,2119,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4944.03,"{""promo"": ""16%""}",116966,0,Europe +2024-05-04,30193,1448,"[""Headphones"", ""Tablet"", ""Monitor""]",3602.78,"{""seasonal"": ""23%""}",242364,0,North America +2023-12-29,30194,7569,"[""Tablet""]",4796.92,"{""loyalty"": ""6%""}",173766,0,South America +2023-10-08,30195,8889,"[""Keyboard""]",177.92,{},266384,0,South America +2023-01-20,30196,7089,"[""Tablet""]",4128.4,"{""loyalty"": ""22%""}",77704,0,North America +2024-06-19,30197,2253,"[""Headphones""]",2406.85,{},117732,1,North America +2024-02-11,30198,2792,"[""Laptop"", ""Headphones"", ""Keyboard""]",2903.35,"{""loyalty"": ""30%""}",88426,0,Africa +2024-02-26,30199,3032,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1519.08,{},100102,0,North America +2024-09-18,30200,1444,"[""Monitor"", ""Phone""]",3734.19,"{""seasonal"": ""11%""}",128047,0,South America +2023-07-01,30201,6164,"[""Charger""]",3335.85,"{""loyalty"": ""24%""}",57817,0,South America +2024-05-03,30202,6099,"[""Laptop"", ""Keyboard"", ""Phone""]",782.54,{},95527,1,North America +2024-03-09,30203,2141,"[""Monitor"", ""Tablet"", ""Laptop""]",1569.1,"{""seasonal"": ""12%""}",262263,1,South America +2023-10-01,30204,5064,"[""Wireless Mouse""]",3729.58,{},148854,0,Europe +2024-09-14,30205,5762,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4704.41,{},258958,0,Africa +2023-09-25,30206,8001,"[""Phone""]",102.9,"{""promo"": ""22%""}",109706,0,North America +2023-12-06,30207,4533,"[""Charger"", ""Laptop""]",4058.02,{},239819,0,Europe +2024-12-21,30208,9319,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4088.45,{},145757,0,Africa +2024-12-07,30209,6230,"[""Tablet""]",3649.7,"{""promo"": ""26%""}",86607,1,North America +2023-10-26,30210,9113,"[""Keyboard"", ""Laptop""]",1593.77,{},38758,0,Asia +2024-11-06,30211,184,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",780.4,"{""seasonal"": ""5%""}",175299,0,South America +2023-09-15,30212,9307,"[""Charger"", ""Monitor""]",3051.03,"{""promo"": ""18%""}",228864,1,South America +2024-08-31,30213,4003,"[""Tablet"", ""Charger""]",3500.82,"{""loyalty"": ""13%""}",86912,0,Africa +2023-10-20,30214,6043,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",593.34,{},205071,1,Europe +2024-04-02,30215,5836,"[""Keyboard"", ""Laptop""]",3940.2,{},59240,0,North America +2023-06-25,30216,9189,"[""Phone""]",4298.97,{},176678,0,Europe +2024-05-23,30217,6622,"[""Headphones"", ""Keyboard"", ""Tablet""]",534.52,{},24722,0,North America +2024-11-26,30218,2025,"[""Charger"", ""Monitor"", ""Laptop""]",1394.06,{},222645,1,Asia +2024-11-05,30219,8341,"[""Keyboard"", ""Charger"", ""Monitor""]",4917.29,"{"""": ""11%""}",168657,1,Asia +2023-04-06,30220,6152,"[""Laptop""]",4892.24,"{""promo"": ""5%""}",256433,0,Europe +2024-05-10,30221,9313,"[""Phone""]",2969.01,"{""loyalty"": ""5%""}",199649,0,Africa +2024-10-08,30222,6502,"[""Phone"", ""Laptop"", ""Charger""]",4361.54,{},59421,0,Europe +2024-04-06,30223,5045,"[""Monitor"", ""Wireless Mouse""]",1714.06,"{""promo"": ""21%""}",207894,1,Africa +2024-10-05,30224,7744,"[""Headphones"", ""Laptop"", ""Phone""]",1014.3,"{""seasonal"": ""30%""}",23733,1,South America +2024-07-17,30225,1106,"[""Monitor"", ""Laptop"", ""Tablet""]",2512.62,{},110126,0,Africa +2023-03-08,30226,560,"[""Monitor"", ""Headphones"", ""Phone""]",3815.78,{},226196,0,Europe +2023-02-01,30227,3408,"[""Phone""]",1447.48,{},46007,0,Asia +2024-01-05,30228,1186,"[""Phone"", ""Headphones"", ""Keyboard""]",4426.04,"{""loyalty"": ""14%""}",250985,1,South America +2023-03-01,30229,3109,"[""Keyboard"", ""Monitor""]",2761.16,"{"""": ""21%""}",191541,0,Europe +2023-06-01,30230,7675,"[""Phone"", ""Keyboard"", ""Tablet""]",4131.62,{},161801,1,North America +2023-04-18,30231,5322,"[""Wireless Mouse"", ""Phone""]",2103.75,"{""seasonal"": ""16%""}",225746,0,Africa +2023-10-24,30232,8821,"[""Laptop""]",1251.16,"{""promo"": ""18%""}",11358,1,Africa +2024-05-17,30233,1797,"[""Keyboard"", ""Charger""]",3057.36,{},86422,0,South America +2023-08-24,30234,9189,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1268.5,{},4268,0,Africa +2024-11-09,30235,9119,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",547.28,{},141358,0,North America +2024-07-26,30236,3258,"[""Laptop""]",565.03,{},195968,1,Europe +2023-07-29,30237,4241,"[""Charger"", ""Monitor""]",566.1,"{""promo"": ""25%""}",215239,1,Africa +2023-07-21,30238,9255,"[""Phone"", ""Charger""]",248.46,{},248123,0,Asia +2024-12-11,30239,4390,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",563.31,{},101984,1,North America +2023-07-22,30240,235,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1294.93,{},222235,1,South America +2024-05-21,30241,3254,"[""Tablet"", ""Keyboard""]",1206.88,"{"""": ""27%""}",43967,0,Africa +2024-01-15,30242,3526,"[""Charger"", ""Keyboard"", ""Tablet""]",1422.04,{},106559,0,Africa +2023-09-05,30243,4374,"[""Keyboard""]",924.69,"{""seasonal"": ""19%""}",31551,1,South America +2024-06-13,30244,7039,"[""Monitor"", ""Headphones""]",2276.62,{},13066,1,South America +2024-01-31,30245,8653,"[""Charger""]",85.0,"{""seasonal"": ""15%""}",37094,1,Asia +2024-10-20,30246,436,"[""Headphones"", ""Phone""]",3156.43,"{""loyalty"": ""10%""}",5636,1,Asia +2024-05-03,30247,4717,"[""Charger"", ""Headphones""]",3832.82,{},137921,1,Africa +2024-10-06,30248,4873,"[""Headphones""]",3407.62,{},157020,0,Africa +2024-07-08,30249,6259,"[""Monitor""]",4552.12,"{""promo"": ""30%""}",221167,1,Europe +2023-03-29,30250,6975,"[""Keyboard"", ""Headphones""]",2292.42,"{""seasonal"": ""8%""}",45223,1,Africa +2024-01-01,30251,4846,"[""Laptop""]",3784.41,"{""promo"": ""13%""}",235387,1,North America +2024-06-30,30252,8804,"[""Headphones""]",4150.98,"{""loyalty"": ""15%""}",75757,1,South America +2024-10-17,30253,3519,"[""Tablet""]",3831.48,{},94162,1,Africa +2023-01-20,30254,1016,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1120.67,"{""loyalty"": ""7%""}",199442,0,South America +2024-05-11,30255,4424,"[""Monitor""]",4522.0,{},13167,0,South America +2024-07-12,30256,6134,"[""Keyboard"", ""Phone""]",2732.15,{},6003,1,Asia +2024-09-28,30257,9067,"[""Laptop"", ""Charger"", ""Tablet""]",1671.98,{},215927,0,Africa +2024-01-25,30258,9103,"[""Monitor""]",326.56,{},58527,1,North America +2023-11-17,30259,8431,"[""Tablet""]",4114.42,"{""loyalty"": ""18%""}",39574,0,Europe +2024-06-28,30260,4659,"[""Wireless Mouse""]",1952.83,"{""loyalty"": ""16%""}",73194,0,Asia +2024-05-13,30261,2461,"[""Headphones"", ""Charger""]",3460.8,{},226697,0,Africa +2023-04-15,30262,1179,"[""Headphones"", ""Phone""]",1204.22,{},211190,0,Africa +2023-01-18,30263,5650,"[""Wireless Mouse"", ""Charger""]",562.99,"{"""": ""18%""}",159814,0,North America +2024-04-27,30264,6878,"[""Phone""]",303.11,"{""promo"": ""7%""}",30544,0,Africa +2024-04-01,30265,4590,"[""Headphones"", ""Charger""]",2340.66,"{"""": ""9%""}",65200,0,South America +2023-04-01,30266,7829,"[""Wireless Mouse"", ""Charger""]",677.37,{},187771,0,South America +2024-01-20,30267,5096,"[""Laptop""]",1247.71,{},131131,0,Asia +2023-02-25,30268,1837,"[""Keyboard"", ""Laptop"", ""Headphones""]",3984.33,{},236584,0,South America +2024-11-07,30269,9098,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3286.91,"{""loyalty"": ""15%""}",117606,0,North America +2023-03-08,30270,44,"[""Monitor""]",3398.39,{},148640,1,Africa +2023-04-14,30271,432,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1760.87,{},206731,0,Asia +2023-08-19,30272,5265,"[""Monitor"", ""Charger"", ""Laptop""]",668.02,"{""loyalty"": ""22%""}",76895,0,Asia +2023-05-12,30273,2997,"[""Keyboard""]",2497.61,"{""seasonal"": ""23%""}",191761,0,North America +2023-07-31,30274,3157,"[""Laptop""]",4102.69,{},122627,1,Asia +2024-03-09,30275,9631,"[""Tablet""]",3611.04,"{""promo"": ""25%""}",122998,1,South America +2023-01-06,30276,9549,"[""Laptop"", ""Headphones"", ""Keyboard""]",465.05,{},28681,0,South America +2024-09-20,30277,5414,"[""Monitor""]",3051.79,{},221529,0,Europe +2024-09-29,30278,9312,"[""Headphones"", ""Wireless Mouse""]",3037.7,{},160733,0,Asia +2024-05-11,30279,8679,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1060.32,{},169702,1,South America +2023-07-03,30280,4760,"[""Phone""]",3608.62,{},141849,0,South America +2024-04-16,30281,3300,"[""Monitor""]",3679.38,"{""promo"": ""17%""}",172051,0,South America +2024-07-17,30282,7877,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4472.28,{},107662,0,Africa +2023-12-04,30283,979,"[""Charger""]",1415.16,{},51289,1,Europe +2024-01-21,30284,1015,"[""Charger""]",3633.62,{},42553,0,Asia +2023-07-14,30285,3474,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",787.53,{},42140,0,South America +2023-11-17,30286,7998,"[""Charger""]",1611.89,{},101666,1,North America +2024-08-12,30287,3751,"[""Keyboard"", ""Charger"", ""Tablet""]",3350.64,"{""seasonal"": ""30%""}",85431,0,Europe +2023-09-23,30288,8135,"[""Wireless Mouse""]",154.58,{},27042,1,Africa +2024-03-24,30289,2763,"[""Laptop"", ""Phone"", ""Tablet""]",1945.76,"{"""": ""13%""}",137909,1,Africa +2024-07-21,30290,9052,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3465.22,"{""seasonal"": ""18%""}",208079,1,Asia +2024-09-24,30291,1955,"[""Laptop"", ""Charger""]",2593.09,{},203272,1,Asia +2024-03-26,30292,5705,"[""Tablet"", ""Wireless Mouse""]",2676.9,{},35378,0,North America +2024-02-07,30293,448,"[""Charger"", ""Tablet"", ""Monitor""]",4645.32,{},213276,0,Africa +2024-07-14,30294,9307,"[""Keyboard"", ""Wireless Mouse""]",858.26,{},258472,0,Africa +2023-07-15,30295,7073,"[""Keyboard""]",1049.88,"{"""": ""26%""}",6366,1,South America +2024-03-26,30296,21,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4583.17,"{""seasonal"": ""22%""}",174252,0,Asia +2024-05-02,30297,4088,"[""Charger"", ""Laptop""]",157.28,{},252713,0,North America +2023-04-16,30298,7692,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",969.17,"{""seasonal"": ""25%""}",60638,1,North America +2024-03-12,30299,7848,"[""Tablet""]",2322.35,"{""seasonal"": ""25%""}",186868,0,Asia +2024-06-12,30300,9388,"[""Monitor""]",4284.31,"{"""": ""25%""}",70283,1,Africa +2024-01-21,30301,2441,"[""Headphones""]",2921.8,"{""seasonal"": ""11%""}",188706,1,Asia +2024-04-12,30302,3955,"[""Wireless Mouse""]",3225.11,"{""loyalty"": ""18%""}",71507,0,South America +2023-08-08,30303,2169,"[""Phone"", ""Monitor"", ""Laptop""]",2459.48,"{""seasonal"": ""17%""}",122940,1,Asia +2024-10-04,30304,1171,"[""Tablet"", ""Phone""]",2147.82,"{"""": ""5%""}",98898,1,Europe +2023-09-05,30305,7038,"[""Monitor""]",282.31,{},5715,0,North America +2023-10-01,30306,925,"[""Charger"", ""Laptop""]",2928.11,{},219423,0,Europe +2024-10-11,30307,5399,"[""Monitor"", ""Phone""]",3553.97,{},190323,1,North America +2023-04-03,30308,1210,"[""Tablet"", ""Monitor"", ""Charger""]",4512.69,{},109498,0,Europe +2024-05-07,30309,7203,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1463.44,"{""loyalty"": ""12%""}",251645,1,Asia +2024-01-22,30310,4173,"[""Charger"", ""Headphones""]",4905.79,"{""seasonal"": ""14%""}",130972,0,Europe +2024-10-14,30311,2923,"[""Charger""]",507.52,"{""loyalty"": ""21%""}",106639,0,Asia +2024-11-14,30312,7758,"[""Wireless Mouse""]",63.59,"{""promo"": ""6%""}",29331,0,Asia +2023-01-21,30313,5255,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3143.18,"{""seasonal"": ""30%""}",271994,0,South America +2023-02-28,30314,4426,"[""Phone"", ""Headphones""]",3800.66,{},49310,0,Africa +2024-06-19,30315,1094,"[""Monitor"", ""Laptop""]",1675.08,"{""promo"": ""22%""}",122803,0,South America +2024-11-03,30316,6060,"[""Headphones"", ""Laptop"", ""Charger""]",1733.44,{},298844,1,Europe +2023-04-30,30317,60,"[""Phone"", ""Tablet""]",4350.9,"{"""": ""18%""}",299119,0,South America +2023-08-05,30318,6769,"[""Tablet""]",1364.82,{},85701,1,Asia +2024-05-23,30319,199,"[""Tablet"", ""Charger"", ""Keyboard""]",1586.32,"{"""": ""14%""}",138416,0,Asia +2023-01-04,30320,282,"[""Wireless Mouse""]",3954.1,"{"""": ""18%""}",34381,0,Asia +2023-01-16,30321,6356,"[""Keyboard"", ""Tablet"", ""Charger""]",2620.21,"{""promo"": ""20%""}",133762,0,Asia +2024-07-01,30322,5353,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2524.06,"{"""": ""14%""}",296813,1,Europe +2024-05-02,30323,1037,"[""Keyboard"", ""Laptop"", ""Phone""]",1651.21,"{""promo"": ""15%""}",127213,0,South America +2024-01-09,30324,7666,"[""Charger""]",2156.44,"{""promo"": ""12%""}",99373,1,Asia +2024-09-16,30325,2746,"[""Wireless Mouse"", ""Monitor""]",2770.34,"{""loyalty"": ""28%""}",261558,1,North America +2023-12-19,30326,5533,"[""Charger"", ""Keyboard""]",4839.93,"{""promo"": ""18%""}",280984,0,Africa +2023-11-28,30327,9626,"[""Charger"", ""Keyboard""]",4160.76,"{""promo"": ""15%""}",262300,1,Europe +2023-09-17,30328,4098,"[""Wireless Mouse"", ""Charger""]",3924.55,{},96513,1,Europe +2023-12-28,30329,4380,"[""Keyboard"", ""Wireless Mouse""]",2001.61,"{""seasonal"": ""5%""}",289008,0,North America +2024-10-01,30330,4497,"[""Wireless Mouse""]",2428.64,{},166652,0,Asia +2024-03-23,30331,2549,"[""Wireless Mouse"", ""Headphones""]",757.43,{},10308,1,Europe +2023-09-04,30332,9753,"[""Monitor""]",1850.75,{},265056,1,South America +2023-03-08,30333,6639,"[""Keyboard""]",4680.92,{},269140,1,South America +2024-05-02,30334,819,"[""Tablet"", ""Headphones"", ""Keyboard""]",832.01,{},75734,0,Africa +2023-08-22,30335,3021,"[""Keyboard""]",1822.26,{},108416,0,Africa +2024-06-20,30336,1949,"[""Laptop""]",324.82,{},57097,1,South America +2023-04-06,30337,922,"[""Charger""]",4228.99,{},238651,0,North America +2024-01-12,30338,2333,"[""Laptop"", ""Keyboard"", ""Tablet""]",3856.62,{},27437,1,North America +2024-10-26,30339,9664,"[""Keyboard"", ""Monitor""]",4384.22,{},65631,1,North America +2023-06-06,30340,2166,"[""Wireless Mouse"", ""Laptop""]",3031.47,"{""seasonal"": ""8%""}",122743,0,South America +2024-03-04,30341,4493,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1657.1,{},126747,0,North America +2024-08-28,30342,2868,"[""Headphones"", ""Phone"", ""Keyboard""]",2330.69,"{"""": ""30%""}",137771,0,Europe +2024-01-26,30343,2579,"[""Laptop"", ""Monitor"", ""Tablet""]",4155.67,{},262951,1,Africa +2023-06-13,30344,7080,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2702.39,{},28312,0,Africa +2024-01-19,30345,6069,"[""Phone""]",1148.79,"{""seasonal"": ""15%""}",142384,1,Asia +2023-01-09,30346,3283,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4190.44,"{""promo"": ""7%""}",127635,1,North America +2023-12-01,30347,2788,"[""Laptop""]",2325.01,"{""seasonal"": ""14%""}",229795,0,Asia +2023-12-15,30348,9920,"[""Wireless Mouse""]",2719.4,{},260617,1,South America +2023-08-17,30349,4163,"[""Monitor"", ""Laptop""]",1720.0,"{"""": ""23%""}",109056,0,Europe +2024-07-12,30350,8409,"[""Tablet"", ""Monitor"", ""Keyboard""]",3571.7,"{""seasonal"": ""6%""}",107461,1,North America +2024-07-21,30351,3365,"[""Laptop"", ""Tablet"", ""Keyboard""]",994.09,{},53096,1,Asia +2023-08-02,30352,920,"[""Phone"", ""Headphones""]",4683.85,"{""seasonal"": ""24%""}",69994,0,Africa +2023-01-15,30353,8318,"[""Headphones"", ""Monitor"", ""Tablet""]",1067.24,"{"""": ""18%""}",83890,1,North America +2024-02-29,30354,5850,"[""Charger""]",4455.99,{},49836,0,Africa +2024-11-16,30355,8134,"[""Charger"", ""Keyboard"", ""Laptop""]",4508.76,"{""promo"": ""13%""}",261674,1,Europe +2023-04-13,30356,289,"[""Tablet""]",3159.7,{},230199,1,Africa +2023-05-11,30357,3023,"[""Tablet""]",4196.5,"{""seasonal"": ""28%""}",281213,0,South America +2023-07-07,30358,2172,"[""Laptop""]",1315.55,"{"""": ""10%""}",9017,1,North America +2024-05-24,30359,1357,"[""Tablet"", ""Headphones""]",3257.89,{},159904,1,North America +2024-05-28,30360,3974,"[""Wireless Mouse"", ""Headphones""]",1929.71,{},117539,1,Asia +2023-09-07,30361,6893,"[""Charger""]",2553.84,{},290578,0,North America +2023-06-05,30362,1906,"[""Charger"", ""Phone"", ""Tablet""]",4326.19,"{""seasonal"": ""30%""}",69798,1,South America +2023-01-12,30363,7033,"[""Monitor""]",3525.42,"{""seasonal"": ""22%""}",153914,1,Europe +2023-03-28,30364,7945,"[""Wireless Mouse""]",4585.97,"{""loyalty"": ""5%""}",293370,0,North America +2024-06-27,30365,3839,"[""Laptop""]",442.71,"{""promo"": ""20%""}",145426,1,Europe +2023-07-22,30366,7737,"[""Charger"", ""Tablet"", ""Keyboard""]",51.29,{},59182,0,South America +2023-09-11,30367,2255,"[""Charger"", ""Tablet""]",2844.73,"{""seasonal"": ""20%""}",277427,0,South America +2023-06-07,30368,1327,"[""Laptop"", ""Keyboard"", ""Headphones""]",1241.5,"{"""": ""12%""}",11857,0,Africa +2024-03-25,30369,5054,"[""Charger""]",2982.82,{},241213,1,North America +2024-08-31,30370,7198,"[""Laptop"", ""Keyboard"", ""Tablet""]",1745.58,"{""loyalty"": ""7%""}",274670,1,South America +2024-05-12,30371,4267,"[""Charger""]",1644.1,"{""promo"": ""23%""}",27748,0,Europe +2024-07-17,30372,6736,"[""Phone"", ""Charger""]",4223.68,{},283459,0,North America +2024-01-07,30373,1425,"[""Charger"", ""Phone""]",4320.36,{},59785,1,North America +2023-03-02,30374,6369,"[""Charger"", ""Tablet""]",1816.85,"{""promo"": ""21%""}",199836,0,South America +2024-10-05,30375,3217,"[""Tablet"", ""Monitor"", ""Keyboard""]",1737.03,"{""loyalty"": ""8%""}",200758,1,Asia +2024-02-09,30376,8029,"[""Wireless Mouse""]",2720.15,{},17046,1,Europe +2024-07-07,30377,5536,"[""Wireless Mouse"", ""Keyboard""]",2590.09,{},156796,0,Europe +2024-12-14,30378,6504,"[""Monitor"", ""Tablet""]",2540.94,{},146496,0,Asia +2023-09-22,30379,9281,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1893.9,{},149175,0,North America +2024-12-13,30380,5271,"[""Monitor"", ""Phone"", ""Charger""]",784.78,{},154539,1,Asia +2024-04-16,30381,4196,"[""Phone"", ""Monitor"", ""Tablet""]",1937.47,"{""loyalty"": ""29%""}",296174,0,Europe +2023-04-23,30382,7137,"[""Phone"", ""Laptop""]",4383.18,"{""promo"": ""25%""}",161878,0,Europe +2023-06-07,30383,5,"[""Headphones"", ""Keyboard""]",650.2,"{""promo"": ""6%""}",274413,1,North America +2024-04-30,30384,6619,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3221.87,"{""promo"": ""9%""}",156508,0,South America +2024-01-05,30385,4311,"[""Tablet"", ""Phone"", ""Laptop""]",3688.57,{},197939,1,North America +2023-04-08,30386,1048,"[""Laptop"", ""Charger""]",558.13,"{""seasonal"": ""10%""}",211618,1,Asia +2023-02-11,30387,9360,"[""Monitor""]",1686.35,"{""promo"": ""16%""}",114088,0,Asia +2023-02-24,30388,274,"[""Keyboard"", ""Phone""]",4489.24,{},131623,0,North America +2023-08-27,30389,3760,"[""Keyboard"", ""Charger"", ""Monitor""]",4839.78,"{"""": ""19%""}",135058,0,Africa +2023-10-16,30390,6796,"[""Charger"", ""Phone"", ""Monitor""]",4839.7,{},286342,1,North America +2023-03-06,30391,1230,"[""Headphones"", ""Wireless Mouse""]",2745.27,"{""promo"": ""24%""}",25795,1,South America +2023-05-24,30392,9011,"[""Monitor"", ""Laptop"", ""Phone""]",644.48,{},278207,1,Europe +2023-12-16,30393,2307,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4302.05,"{"""": ""17%""}",270591,1,Asia +2023-11-07,30394,4400,"[""Tablet""]",4515.87,{},51403,0,North America +2024-03-13,30395,3726,"[""Charger"", ""Keyboard"", ""Phone""]",1379.4,{},51312,0,Europe +2023-03-04,30396,8633,"[""Charger"", ""Keyboard"", ""Monitor""]",1854.8,{},209715,1,North America +2024-09-28,30397,6697,"[""Tablet""]",4963.75,"{""promo"": ""9%""}",249321,0,North America +2023-12-05,30398,7087,"[""Tablet"", ""Charger""]",3877.78,{},275229,1,North America +2024-09-15,30399,5013,"[""Tablet"", ""Laptop"", ""Keyboard""]",4479.02,{},70861,1,Asia +2024-09-03,30400,194,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",215.06,"{""promo"": ""15%""}",79839,0,North America +2024-02-12,30401,1200,"[""Phone""]",3602.55,{},125045,1,South America +2024-05-07,30402,4747,"[""Charger"", ""Laptop""]",4828.9,{},86266,0,Africa +2023-07-30,30403,6040,"[""Tablet"", ""Monitor""]",1689.54,{},101659,1,Africa +2024-11-09,30404,4179,"[""Monitor""]",2178.78,"{"""": ""11%""}",244524,1,Africa +2024-09-30,30405,3223,"[""Monitor"", ""Charger""]",3282.85,"{""promo"": ""11%""}",94353,1,South America +2024-08-19,30406,6512,"[""Monitor"", ""Laptop""]",385.65,"{"""": ""26%""}",206822,0,Europe +2024-03-22,30407,436,"[""Monitor""]",2687.2,{},3437,1,Africa +2024-10-03,30408,4910,"[""Phone"", ""Laptop"", ""Charger""]",3274.15,"{""loyalty"": ""7%""}",47314,1,South America +2023-01-23,30409,2913,"[""Wireless Mouse"", ""Headphones""]",1672.09,"{""seasonal"": ""12%""}",100112,0,Africa +2023-07-26,30410,1295,"[""Keyboard"", ""Tablet""]",2790.62,{},296338,1,Africa +2024-03-03,30411,9341,"[""Charger"", ""Monitor"", ""Headphones""]",1174.36,"{""seasonal"": ""8%""}",90375,1,Africa +2024-10-10,30412,6870,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3448.59,{},54558,1,South America +2024-01-09,30413,6386,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2252.55,{},162808,1,Europe +2024-10-10,30414,2240,"[""Laptop""]",4186.99,{},110376,0,Europe +2023-10-13,30415,4369,"[""Headphones"", ""Laptop"", ""Keyboard""]",3002.71,"{""seasonal"": ""28%""}",5535,1,Europe +2024-07-14,30416,5512,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",897.75,{},111604,0,North America +2024-01-13,30417,7550,"[""Monitor"", ""Laptop""]",4358.74,"{""loyalty"": ""13%""}",25179,0,Europe +2024-02-26,30418,575,"[""Laptop"", ""Charger""]",3044.69,"{""promo"": ""11%""}",50858,0,Africa +2023-06-27,30419,922,"[""Wireless Mouse"", ""Laptop""]",478.75,"{""promo"": ""6%""}",74312,1,Europe +2023-04-30,30420,8087,"[""Headphones"", ""Keyboard""]",2039.35,{},63557,1,Europe +2024-11-12,30421,8501,"[""Charger"", ""Laptop"", ""Monitor""]",4676.8,{},232052,1,Africa +2024-06-15,30422,5588,"[""Phone"", ""Keyboard""]",3774.83,"{""promo"": ""19%""}",58259,1,North America +2024-05-11,30423,5636,"[""Phone""]",3758.28,{},167180,0,Europe +2023-12-18,30424,1718,"[""Charger"", ""Monitor""]",2258.63,"{""loyalty"": ""19%""}",78519,0,Europe +2023-01-16,30425,7763,"[""Charger"", ""Headphones""]",3256.03,"{"""": ""9%""}",169775,0,North America +2023-05-14,30426,8601,"[""Headphones"", ""Monitor""]",1817.09,{},22626,1,South America +2024-10-15,30427,836,"[""Keyboard""]",2250.41,"{"""": ""15%""}",216104,0,South America +2024-11-04,30428,1929,"[""Monitor""]",3765.24,{},272228,1,Africa +2024-09-17,30429,1914,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1336.73,"{""loyalty"": ""29%""}",227509,0,Asia +2023-09-08,30430,7753,"[""Tablet""]",3771.27,"{""promo"": ""12%""}",258224,1,Europe +2023-10-02,30431,6880,"[""Monitor"", ""Headphones"", ""Laptop""]",2874.61,"{""seasonal"": ""22%""}",115051,0,Africa +2023-02-03,30432,1420,"[""Keyboard""]",4180.91,{},66077,1,South America +2023-10-16,30433,8562,"[""Headphones""]",293.12,"{"""": ""7%""}",186339,0,North America +2024-06-10,30434,9575,"[""Wireless Mouse""]",2705.0,{},280621,0,Asia +2024-09-03,30435,4647,"[""Keyboard"", ""Headphones""]",2190.94,{},24197,0,Europe +2023-06-21,30436,7057,"[""Keyboard""]",1719.89,{},149023,0,Europe +2024-07-13,30437,594,"[""Headphones""]",890.96,"{""loyalty"": ""12%""}",30157,1,Africa +2023-05-23,30438,5022,"[""Headphones"", ""Laptop"", ""Tablet""]",2750.94,{},75761,0,Asia +2023-04-06,30439,314,"[""Wireless Mouse""]",4194.81,"{"""": ""29%""}",31091,1,Europe +2024-05-17,30440,3641,"[""Wireless Mouse"", ""Phone""]",311.35,{},192847,1,South America +2024-07-29,30441,4530,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4737.7,"{""promo"": ""21%""}",120491,0,North America +2024-11-24,30442,834,"[""Monitor"", ""Wireless Mouse""]",1571.62,{},84577,1,Europe +2024-05-16,30443,1730,"[""Laptop"", ""Tablet"", ""Monitor""]",579.01,{},208851,0,Africa +2024-06-18,30444,6597,"[""Laptop""]",3125.65,"{""promo"": ""20%""}",134836,0,Europe +2024-07-10,30445,3541,"[""Laptop""]",452.73,{},26492,0,Europe +2023-12-20,30446,5384,"[""Monitor""]",1606.75,"{"""": ""7%""}",80907,1,South America +2023-07-14,30447,7362,"[""Keyboard"", ""Headphones""]",2236.61,"{"""": ""27%""}",141303,1,Asia +2024-03-07,30448,2297,"[""Phone""]",2011.56,"{""promo"": ""13%""}",247510,1,South America +2023-09-03,30449,4319,"[""Laptop"", ""Headphones"", ""Monitor""]",1256.69,{},13354,1,Africa +2023-07-10,30450,6170,"[""Headphones"", ""Wireless Mouse""]",4987.28,{},53829,1,South America +2023-02-14,30451,8633,"[""Monitor""]",131.65,{},77005,1,Europe +2024-06-18,30452,929,"[""Laptop"", ""Keyboard""]",2781.49,"{""loyalty"": ""28%""}",78448,1,South America +2024-07-26,30453,4562,"[""Laptop"", ""Headphones""]",2104.86,{},264310,0,Europe +2023-07-11,30454,4759,"[""Wireless Mouse"", ""Phone""]",677.9,"{""loyalty"": ""5%""}",27941,0,Asia +2024-03-11,30455,8779,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3586.13,{},196501,1,Africa +2023-02-13,30456,8873,"[""Wireless Mouse"", ""Headphones""]",2976.87,"{""promo"": ""18%""}",32344,1,Europe +2024-06-10,30457,511,"[""Tablet"", ""Headphones""]",2483.97,{},171528,1,Africa +2024-10-30,30458,5261,"[""Charger""]",1368.87,{},219672,0,North America +2024-06-23,30459,5396,"[""Wireless Mouse"", ""Phone""]",3772.89,{},287966,0,Asia +2024-10-28,30460,3253,"[""Keyboard""]",1708.98,"{""loyalty"": ""17%""}",173317,1,Africa +2023-11-21,30461,7238,"[""Tablet""]",430.18,"{""promo"": ""28%""}",195562,1,North America +2024-10-30,30462,3754,"[""Headphones"", ""Charger"", ""Keyboard""]",4735.26,"{"""": ""22%""}",82264,1,Europe +2023-11-02,30463,7476,"[""Charger"", ""Monitor""]",2860.06,"{""seasonal"": ""30%""}",258229,0,Asia +2024-09-08,30464,7369,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2204.88,{},263490,0,Asia +2023-10-08,30465,3339,"[""Headphones"", ""Monitor"", ""Tablet""]",2808.11,"{""loyalty"": ""5%""}",73124,0,Asia +2023-02-25,30466,810,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1159.6,{},122441,0,Europe +2023-09-17,30467,3298,"[""Headphones"", ""Tablet""]",1265.97,{},187584,1,South America +2023-09-16,30468,7810,"[""Phone"", ""Charger""]",1695.54,{},276886,1,Europe +2023-10-05,30469,9921,"[""Laptop""]",3989.99,"{""seasonal"": ""11%""}",189963,1,Europe +2023-03-05,30470,7455,"[""Headphones"", ""Keyboard"", ""Phone""]",978.27,{},76827,1,North America +2024-12-17,30471,2919,"[""Laptop""]",2790.38,"{""promo"": ""24%""}",142279,0,Asia +2023-12-24,30472,7738,"[""Tablet"", ""Phone""]",167.36,"{""loyalty"": ""19%""}",87163,1,Africa +2023-07-01,30473,4728,"[""Tablet""]",167.51,{},120856,1,South America +2023-06-14,30474,120,"[""Tablet""]",4985.33,"{""loyalty"": ""14%""}",183406,0,Europe +2024-04-21,30475,7735,"[""Laptop""]",653.2,"{"""": ""10%""}",106637,0,North America +2023-01-02,30476,5739,"[""Phone"", ""Wireless Mouse""]",1967.51,"{""loyalty"": ""7%""}",185545,1,Asia +2023-06-18,30477,2478,"[""Monitor"", ""Phone""]",1158.86,{},79730,0,South America +2024-09-23,30478,2996,"[""Keyboard"", ""Headphones"", ""Tablet""]",1322.23,"{""loyalty"": ""13%""}",147333,0,Africa +2023-01-27,30479,7516,"[""Charger"", ""Phone"", ""Headphones""]",1469.8,"{""loyalty"": ""11%""}",174550,0,South America +2024-03-26,30480,5089,"[""Phone""]",3534.38,"{""promo"": ""29%""}",133638,0,Europe +2024-11-21,30481,579,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4890.66,"{"""": ""11%""}",81101,1,Asia +2023-09-18,30482,8380,"[""Keyboard"", ""Tablet""]",3886.34,"{"""": ""12%""}",227574,0,Europe +2024-04-09,30483,323,"[""Phone"", ""Charger"", ""Laptop""]",3816.97,{},56260,0,Asia +2023-12-23,30484,7807,"[""Laptop""]",871.52,{},220702,1,Africa +2024-10-08,30485,2735,"[""Monitor""]",2422.76,{},54085,1,Asia +2023-07-14,30486,3517,"[""Laptop"", ""Keyboard""]",73.19,"{""promo"": ""19%""}",31760,0,South America +2023-05-05,30487,9359,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2813.77,{},288212,1,Asia +2024-04-22,30488,170,"[""Keyboard"", ""Monitor""]",681.79,{},119631,1,Africa +2023-05-27,30489,1578,"[""Phone""]",2957.52,{},23775,0,South America +2023-02-17,30490,563,"[""Phone""]",4394.37,{},233995,0,North America +2024-07-27,30491,946,"[""Charger""]",1997.04,"{""promo"": ""25%""}",70737,0,Europe +2023-03-02,30492,6655,"[""Headphones"", ""Tablet""]",1762.54,"{""promo"": ""15%""}",130977,0,Europe +2023-12-14,30493,5836,"[""Monitor""]",1258.9,"{"""": ""12%""}",259143,1,Asia +2023-01-02,30494,4204,"[""Charger""]",2781.67,"{""promo"": ""12%""}",70609,0,Europe +2023-12-05,30495,2305,"[""Monitor"", ""Tablet""]",2334.0,{},156310,0,Europe +2023-10-01,30496,6851,"[""Phone""]",521.42,"{""loyalty"": ""25%""}",234982,1,North America +2023-11-08,30497,3590,"[""Monitor"", ""Laptop""]",2001.23,"{""loyalty"": ""5%""}",1851,0,North America +2023-07-25,30498,5248,"[""Tablet"", ""Phone""]",860.52,"{""promo"": ""18%""}",11832,1,Europe +2024-05-26,30499,7012,"[""Laptop"", ""Monitor"", ""Headphones""]",3762.43,{},241452,0,Africa +2024-05-19,30500,9661,"[""Laptop"", ""Keyboard"", ""Phone""]",1098.96,"{""seasonal"": ""11%""}",291761,0,Africa +2023-07-16,30501,5252,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",973.81,{},214987,0,Europe +2023-01-24,30502,2591,"[""Keyboard"", ""Headphones"", ""Phone""]",2821.59,"{"""": ""19%""}",292425,1,North America +2023-11-22,30503,1737,"[""Tablet""]",4126.05,"{""loyalty"": ""22%""}",1662,1,Europe +2023-04-15,30504,5592,"[""Tablet"", ""Monitor"", ""Headphones""]",2732.43,{},41998,1,Africa +2023-02-11,30505,5163,"[""Laptop"", ""Monitor""]",2711.02,"{"""": ""10%""}",93137,0,North America +2023-10-23,30506,8729,"[""Charger""]",225.26,"{"""": ""12%""}",142721,0,Africa +2024-11-01,30507,9415,"[""Keyboard"", ""Charger""]",2924.2,"{"""": ""30%""}",113432,0,Asia +2023-10-23,30508,552,"[""Monitor"", ""Phone"", ""Charger""]",4820.83,{},48328,1,Europe +2024-09-15,30509,2366,"[""Charger"", ""Wireless Mouse""]",4836.15,{},178208,1,Africa +2023-09-29,30510,4587,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2394.65,"{"""": ""5%""}",233708,0,South America +2023-10-01,30511,988,"[""Wireless Mouse"", ""Phone""]",828.34,{},249735,0,Africa +2024-01-08,30512,8014,"[""Phone""]",4601.19,{},9381,0,Africa +2023-01-03,30513,8031,"[""Charger""]",2464.19,{},28464,0,Europe +2024-07-29,30514,7692,"[""Monitor"", ""Keyboard"", ""Tablet""]",72.2,{},289621,0,Europe +2024-12-11,30515,9573,"[""Tablet""]",1297.9,{},298770,1,North America +2023-05-22,30516,5506,"[""Keyboard""]",381.44,"{""loyalty"": ""27%""}",200404,0,North America +2024-11-18,30517,7500,"[""Charger"", ""Monitor""]",1082.24,{},139476,0,Europe +2024-11-28,30518,1781,"[""Monitor""]",395.52,{},275177,0,Asia +2023-01-01,30519,7220,"[""Laptop"", ""Monitor"", ""Tablet""]",628.59,{},120813,0,North America +2024-04-01,30520,4124,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3426.83,{},83437,1,Africa +2024-02-01,30521,4036,"[""Monitor""]",2024.57,{},235495,0,Africa +2023-05-15,30522,2395,"[""Monitor""]",836.35,"{"""": ""23%""}",63344,1,North America +2024-09-27,30523,4315,"[""Phone"", ""Monitor""]",4085.23,"{""promo"": ""19%""}",97959,1,Europe +2023-10-28,30524,6010,"[""Headphones"", ""Keyboard"", ""Laptop""]",4866.24,{},122772,1,Asia +2023-01-13,30525,7762,"[""Laptop"", ""Charger"", ""Phone""]",4565.66,{},64382,0,Africa +2023-04-17,30526,3381,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",868.63,"{""loyalty"": ""5%""}",55683,0,Africa +2024-05-23,30527,587,"[""Keyboard""]",2288.59,{},133549,1,Asia +2024-02-01,30528,2483,"[""Keyboard"", ""Wireless Mouse""]",1823.46,{},273470,0,South America +2023-06-02,30529,2989,"[""Monitor""]",2874.77,"{""promo"": ""14%""}",155131,1,Asia +2023-04-29,30530,8586,"[""Headphones"", ""Tablet"", ""Monitor""]",1535.27,"{""loyalty"": ""5%""}",78844,0,Africa +2023-12-31,30531,1089,"[""Wireless Mouse"", ""Keyboard""]",3367.03,"{""loyalty"": ""28%""}",29444,0,Europe +2023-07-19,30532,4147,"[""Laptop"", ""Keyboard""]",1829.36,{},190270,0,North America +2024-04-14,30533,915,"[""Monitor"", ""Headphones""]",3201.42,"{""loyalty"": ""22%""}",128365,1,South America +2023-10-05,30534,8725,"[""Laptop""]",274.31,{},184052,0,Africa +2023-12-03,30535,9170,"[""Charger""]",1287.4,"{""seasonal"": ""15%""}",251755,0,North America +2023-03-19,30536,5521,"[""Phone""]",2376.25,{},250160,1,North America +2023-02-18,30537,5631,"[""Monitor"", ""Tablet"", ""Charger""]",4856.96,{},119425,0,Africa +2024-11-26,30538,6613,"[""Laptop""]",2799.93,{},194366,0,South America +2023-04-04,30539,4757,"[""Keyboard""]",907.45,"{""loyalty"": ""17%""}",47111,0,Europe +2023-11-27,30540,5434,"[""Tablet"", ""Keyboard"", ""Monitor""]",3912.23,"{""loyalty"": ""14%""}",27451,0,Europe +2024-12-09,30541,2792,"[""Laptop"", ""Keyboard""]",697.91,{},207766,0,Europe +2024-08-14,30542,2081,"[""Headphones"", ""Monitor""]",4859.75,"{""seasonal"": ""13%""}",145283,1,South America +2023-07-31,30543,6708,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4698.2,{},189809,0,Asia +2023-10-11,30544,9975,"[""Headphones"", ""Charger"", ""Laptop""]",785.98,{},143703,0,South America +2023-09-21,30545,8397,"[""Charger"", ""Tablet"", ""Keyboard""]",1922.82,{},34871,0,Asia +2024-11-24,30546,9097,"[""Charger"", ""Keyboard""]",2070.1,{},249209,1,Africa +2024-07-31,30547,124,"[""Charger""]",2640.49,"{""seasonal"": ""26%""}",120578,0,North America +2024-12-02,30548,7704,"[""Charger"", ""Phone""]",1638.25,{},20958,0,Asia +2024-06-18,30549,8939,"[""Monitor"", ""Charger""]",1357.72,{},89758,1,South America +2024-02-25,30550,1589,"[""Keyboard""]",622.85,{},13930,1,North America +2024-08-18,30551,6684,"[""Headphones""]",2879.03,{},221293,1,South America +2023-10-01,30552,1679,"[""Tablet"", ""Charger"", ""Keyboard""]",254.23,{},203998,1,Africa +2024-07-24,30553,3034,"[""Keyboard""]",641.87,{},54982,0,North America +2024-04-09,30554,6093,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1031.58,"{""promo"": ""29%""}",253302,1,Asia +2023-05-30,30555,2570,"[""Charger""]",682.44,{},287464,0,Europe +2024-03-22,30556,7995,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3051.96,{},122389,1,North America +2024-05-29,30557,8541,"[""Laptop""]",1396.02,"{""promo"": ""11%""}",38900,1,Africa +2024-07-23,30558,290,"[""Wireless Mouse"", ""Phone""]",4381.87,"{""seasonal"": ""10%""}",296413,0,Asia +2024-06-02,30559,2519,"[""Charger""]",2026.05,"{""seasonal"": ""27%""}",75999,1,Europe +2024-08-07,30560,718,"[""Laptop""]",2114.02,{},59792,1,North America +2023-01-28,30561,8480,"[""Tablet""]",1180.46,{},98935,1,South America +2024-02-27,30562,3704,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4080.21,"{""seasonal"": ""11%""}",213652,1,Asia +2023-08-06,30563,6153,"[""Headphones"", ""Keyboard"", ""Charger""]",747.63,"{""loyalty"": ""15%""}",261131,1,Europe +2024-11-21,30564,6759,"[""Tablet"", ""Keyboard"", ""Headphones""]",844.05,"{""promo"": ""24%""}",140208,1,Africa +2024-08-02,30565,744,"[""Headphones"", ""Monitor""]",597.82,{},84304,0,Asia +2024-11-04,30566,3803,"[""Keyboard"", ""Tablet""]",3273.92,{},81419,0,Europe +2024-05-26,30567,1352,"[""Tablet"", ""Monitor""]",3428.21,{},264035,1,South America +2024-06-27,30568,9129,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2120.09,"{""promo"": ""28%""}",137499,1,Europe +2023-05-03,30569,246,"[""Phone""]",1834.39,{},148572,1,Asia +2024-09-18,30570,7267,"[""Wireless Mouse"", ""Keyboard""]",3325.95,{},180037,0,Asia +2024-12-28,30571,347,"[""Phone"", ""Headphones""]",4229.11,{},91043,0,South America +2024-01-13,30572,8684,"[""Keyboard"", ""Tablet"", ""Phone""]",4235.43,{},135485,1,Europe +2024-03-16,30573,151,"[""Charger""]",1002.82,"{""seasonal"": ""20%""}",56870,0,Europe +2023-01-27,30574,8440,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3221.77,"{""seasonal"": ""21%""}",202836,1,South America +2023-05-11,30575,4053,"[""Monitor""]",4546.82,{},26851,1,North America +2023-12-31,30576,133,"[""Laptop""]",415.18,"{"""": ""18%""}",260778,1,Europe +2023-03-16,30577,6507,"[""Phone"", ""Charger""]",3646.34,{},208809,1,Europe +2023-10-09,30578,2420,"[""Phone"", ""Wireless Mouse""]",4867.25,{},150325,0,Asia +2024-01-07,30579,7917,"[""Headphones"", ""Laptop""]",4100.14,{},245477,0,Europe +2024-09-11,30580,6051,"[""Charger"", ""Laptop""]",4942.42,{},151190,1,South America +2024-11-02,30581,7718,"[""Tablet"", ""Laptop""]",4909.76,"{"""": ""14%""}",153305,0,Asia +2024-05-06,30582,4644,"[""Tablet"", ""Charger"", ""Keyboard""]",3822.62,{},15354,1,North America +2023-11-06,30583,6329,"[""Charger""]",852.62,{},101194,1,South America +2023-07-16,30584,3984,"[""Headphones"", ""Charger"", ""Phone""]",66.77,"{""promo"": ""27%""}",286371,0,North America +2024-07-05,30585,7708,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4691.41,{},12785,0,North America +2024-07-20,30586,1449,"[""Charger""]",4069.85,{},218647,0,Asia +2024-02-20,30587,3939,"[""Wireless Mouse""]",2175.72,{},113375,0,North America +2023-09-15,30588,9237,"[""Charger"", ""Laptop"", ""Keyboard""]",4641.9,"{""loyalty"": ""8%""}",61400,1,South America +2023-02-20,30589,1566,"[""Wireless Mouse"", ""Laptop""]",69.7,"{""loyalty"": ""12%""}",159868,0,South America +2023-02-03,30590,4670,"[""Laptop"", ""Keyboard""]",4161.14,{},34927,0,North America +2024-07-09,30591,2757,"[""Monitor"", ""Keyboard"", ""Charger""]",374.68,{},144393,1,Asia +2024-10-07,30592,8846,"[""Wireless Mouse"", ""Phone""]",2820.15,{},156381,0,Asia +2023-04-02,30593,6665,"[""Phone""]",4217.73,{},61106,0,Asia +2024-12-28,30594,6258,"[""Tablet"", ""Phone"", ""Headphones""]",862.8,"{"""": ""21%""}",53676,0,North America +2023-07-03,30595,8080,"[""Headphones"", ""Charger"", ""Laptop""]",1655.8,"{"""": ""19%""}",281200,1,Africa +2023-12-11,30596,8645,"[""Tablet""]",128.73,{},223898,0,North America +2024-06-11,30597,1012,"[""Phone"", ""Headphones""]",1729.76,{},28341,1,Asia +2024-09-17,30598,8735,"[""Monitor""]",4244.42,{},286336,1,Asia +2023-08-21,30599,2283,"[""Tablet""]",2950.25,{},205408,1,Europe +2023-02-09,30600,244,"[""Phone"", ""Laptop"", ""Keyboard""]",4375.52,"{"""": ""29%""}",140403,1,Europe +2023-09-13,30601,9143,"[""Headphones""]",2673.32,{},289205,0,Africa +2024-08-10,30602,1391,"[""Wireless Mouse"", ""Keyboard""]",3368.55,{},209833,0,Asia +2023-10-09,30603,1329,"[""Keyboard""]",4376.41,{},169492,0,Africa +2023-11-22,30604,4490,"[""Monitor"", ""Headphones""]",3764.15,"{"""": ""29%""}",165463,0,Africa +2023-07-14,30605,710,"[""Headphones""]",4925.54,{},139686,0,Europe +2024-12-20,30606,3377,"[""Charger"", ""Keyboard"", ""Phone""]",1109.69,"{""promo"": ""23%""}",125375,1,North America +2024-03-20,30607,8681,"[""Headphones""]",1194.79,"{""promo"": ""14%""}",132374,0,South America +2023-02-16,30608,6649,"[""Charger"", ""Keyboard"", ""Monitor""]",2108.98,{},116745,0,South America +2023-08-06,30609,5438,"[""Tablet""]",2530.19,"{""seasonal"": ""21%""}",62101,1,Asia +2024-04-10,30610,9767,"[""Headphones"", ""Keyboard""]",1550.25,"{""loyalty"": ""18%""}",105152,0,Africa +2024-07-31,30611,7621,"[""Charger"", ""Laptop""]",1053.04,{},105449,0,South America +2024-08-24,30612,2395,"[""Tablet""]",459.41,{},115376,0,Europe +2023-03-29,30613,709,"[""Laptop""]",255.54,"{""seasonal"": ""15%""}",46263,1,Asia +2024-12-15,30614,303,"[""Monitor"", ""Headphones"", ""Laptop""]",3623.81,"{""promo"": ""26%""}",80547,0,South America +2024-12-11,30615,803,"[""Monitor"", ""Laptop"", ""Tablet""]",4342.59,{},227559,0,Africa +2024-02-14,30616,3121,"[""Headphones""]",2968.3,{},2788,0,Africa +2024-06-29,30617,210,"[""Charger""]",2406.99,{},77098,0,Africa +2024-01-31,30618,3443,"[""Wireless Mouse"", ""Monitor""]",2859.06,{},52380,0,South America +2024-11-30,30619,4174,"[""Keyboard"", ""Wireless Mouse""]",2302.48,"{""promo"": ""5%""}",50390,0,North America +2024-08-26,30620,4782,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",712.69,"{""loyalty"": ""13%""}",47775,0,South America +2023-11-30,30621,7708,"[""Charger"", ""Keyboard""]",2751.08,"{"""": ""10%""}",161911,1,Europe +2024-08-19,30622,4026,"[""Laptop"", ""Monitor""]",3433.41,{},262440,0,Europe +2023-10-07,30623,3630,"[""Phone""]",3151.21,{},75697,0,Europe +2024-03-30,30624,6815,"[""Tablet""]",1949.7,{},272193,1,North America +2024-10-09,30625,6549,"[""Tablet""]",4748.23,"{""loyalty"": ""12%""}",211446,0,Africa +2023-12-16,30626,3492,"[""Headphones"", ""Keyboard""]",2553.62,{},293376,1,Europe +2023-09-03,30627,1394,"[""Charger"", ""Tablet"", ""Monitor""]",2613.05,"{"""": ""18%""}",88753,0,North America +2023-01-20,30628,5223,"[""Keyboard"", ""Laptop""]",4661.66,"{""loyalty"": ""10%""}",193406,0,Asia +2024-11-20,30629,1592,"[""Tablet"", ""Keyboard""]",4616.68,"{"""": ""6%""}",288186,1,Africa +2024-03-04,30630,6215,"[""Charger""]",4121.71,{},196590,0,South America +2023-02-16,30631,6235,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",530.02,"{"""": ""10%""}",15591,1,Africa +2024-02-25,30632,3319,"[""Keyboard"", ""Monitor"", ""Charger""]",4070.55,"{""seasonal"": ""19%""}",5586,1,Africa +2023-09-07,30633,7643,"[""Tablet"", ""Phone"", ""Monitor""]",3535.69,{},244832,0,Europe +2023-01-11,30634,6313,"[""Monitor"", ""Tablet""]",3373.22,{},21022,1,Asia +2023-11-17,30635,2902,"[""Phone"", ""Headphones""]",2320.26,{},25562,1,Asia +2023-08-20,30636,7496,"[""Headphones""]",1690.39,{},60080,1,South America +2024-02-18,30637,9014,"[""Headphones""]",2672.37,"{"""": ""6%""}",165736,0,Asia +2023-12-20,30638,6693,"[""Monitor"", ""Tablet""]",4644.3,"{""loyalty"": ""13%""}",137998,1,Africa +2023-10-29,30639,821,"[""Headphones""]",4988.26,{},17093,1,South America +2024-09-14,30640,958,"[""Laptop"", ""Monitor""]",2861.5,{},153043,1,Europe +2024-01-17,30641,479,"[""Laptop"", ""Tablet"", ""Phone""]",4719.15,"{""promo"": ""12%""}",31691,0,Africa +2023-04-25,30642,7990,"[""Phone"", ""Charger"", ""Laptop""]",2600.38,"{""loyalty"": ""19%""}",279015,1,North America +2023-07-25,30643,1983,"[""Wireless Mouse"", ""Phone""]",2106.92,{},141371,0,Asia +2023-06-10,30644,5332,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4150.32,{},267293,0,Africa +2024-05-24,30645,6904,"[""Wireless Mouse""]",829.21,{},238945,0,South America +2023-03-08,30646,6399,"[""Phone""]",506.27,"{""loyalty"": ""19%""}",36087,0,Europe +2024-04-19,30647,9739,"[""Headphones"", ""Charger"", ""Phone""]",1254.28,"{""promo"": ""24%""}",169991,1,South America +2024-02-22,30648,6564,"[""Charger"", ""Keyboard"", ""Tablet""]",928.78,{},133211,1,Africa +2023-07-02,30649,2134,"[""Monitor"", ""Headphones"", ""Laptop""]",2695.76,{},233779,1,South America +2024-06-16,30650,6011,"[""Headphones"", ""Charger""]",4920.49,{},244424,1,North America +2023-02-28,30651,9661,"[""Phone"", ""Tablet""]",971.57,"{""loyalty"": ""27%""}",242770,0,Asia +2024-05-16,30652,5780,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2150.02,"{""promo"": ""29%""}",37207,0,Africa +2023-12-24,30653,2790,"[""Phone"", ""Headphones"", ""Tablet""]",4851.89,{},290727,0,Asia +2023-01-27,30654,7097,"[""Keyboard"", ""Laptop""]",3985.1,{},7014,1,Africa +2023-07-31,30655,506,"[""Charger"", ""Laptop"", ""Headphones""]",3383.37,"{""promo"": ""18%""}",124922,1,South America +2024-03-08,30656,3672,"[""Keyboard"", ""Monitor"", ""Charger""]",2513.59,{},24509,1,Africa +2024-03-16,30657,5132,"[""Phone""]",425.69,{},255355,1,North America +2024-07-31,30658,5320,"[""Tablet"", ""Monitor""]",1206.82,"{""loyalty"": ""21%""}",36631,1,Europe +2023-09-13,30659,664,"[""Wireless Mouse""]",265.62,{},165234,1,South America +2023-06-25,30660,5576,"[""Laptop"", ""Wireless Mouse""]",2382.19,"{""loyalty"": ""6%""}",268519,1,Europe +2023-07-14,30661,3707,"[""Keyboard"", ""Tablet""]",2081.64,{},105770,1,Africa +2024-09-15,30662,5185,"[""Charger""]",4774.08,"{""seasonal"": ""9%""}",113010,0,North America +2024-08-20,30663,2795,"[""Keyboard"", ""Wireless Mouse""]",2388.38,"{"""": ""11%""}",229798,1,Europe +2024-08-13,30664,9180,"[""Phone"", ""Tablet"", ""Monitor""]",3266.33,"{""seasonal"": ""15%""}",221817,1,South America +2024-03-08,30665,415,"[""Tablet"", ""Keyboard""]",1811.1,"{"""": ""13%""}",97009,0,North America +2023-08-13,30666,4481,"[""Phone"", ""Laptop""]",4020.06,{},201448,0,Europe +2023-06-19,30667,466,"[""Laptop""]",4889.98,{},296163,0,Asia +2023-02-02,30668,2410,"[""Monitor"", ""Charger"", ""Laptop""]",4376.31,{},100898,0,Africa +2024-07-15,30669,4796,"[""Headphones"", ""Phone"", ""Keyboard""]",3991.87,"{""loyalty"": ""29%""}",254054,1,Africa +2023-12-18,30670,2775,"[""Tablet"", ""Phone""]",3421.76,"{""seasonal"": ""23%""}",145357,1,North America +2024-03-13,30671,6814,"[""Headphones""]",388.37,"{""seasonal"": ""23%""}",152878,1,North America +2024-11-06,30672,1281,"[""Tablet""]",793.6,{},97060,1,Africa +2024-11-24,30673,1148,"[""Monitor""]",897.41,"{""seasonal"": ""10%""}",248313,0,South America +2023-01-13,30674,1477,"[""Headphones"", ""Monitor"", ""Keyboard""]",226.19,{},13065,1,Europe +2024-03-28,30675,4717,"[""Laptop""]",313.41,"{""loyalty"": ""15%""}",99678,0,South America +2024-10-30,30676,1264,"[""Keyboard"", ""Charger""]",1043.02,{},116555,0,South America +2024-09-26,30677,8456,"[""Headphones"", ""Monitor"", ""Charger""]",2166.1,{},146877,0,Europe +2023-03-26,30678,3223,"[""Keyboard""]",4480.38,"{""promo"": ""7%""}",52364,1,South America +2023-10-23,30679,145,"[""Keyboard""]",4019.81,"{""loyalty"": ""7%""}",194742,0,North America +2024-03-04,30680,4554,"[""Charger"", ""Tablet""]",140.68,"{"""": ""13%""}",262763,1,Africa +2023-12-16,30681,3782,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2667.5,"{""seasonal"": ""17%""}",6487,1,Africa +2023-09-01,30682,5829,"[""Phone""]",212.57,"{""seasonal"": ""10%""}",280131,0,North America +2024-09-14,30683,142,"[""Headphones"", ""Tablet""]",3894.25,{},274763,0,South America +2023-11-18,30684,1307,"[""Keyboard"", ""Headphones"", ""Phone""]",3354.72,"{""loyalty"": ""22%""}",186220,0,North America +2023-06-08,30685,2596,"[""Laptop""]",4802.54,{},216301,1,Asia +2024-05-27,30686,557,"[""Laptop""]",3010.04,{},14703,0,North America +2023-01-02,30687,7060,"[""Headphones"", ""Tablet"", ""Phone""]",4924.13,"{"""": ""29%""}",15544,0,South America +2024-03-29,30688,5671,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",546.08,{},259681,0,South America +2024-04-28,30689,4119,"[""Monitor"", ""Laptop""]",2303.43,"{""seasonal"": ""19%""}",117228,0,Europe +2024-08-19,30690,7585,"[""Laptop""]",214.7,"{""seasonal"": ""25%""}",275924,1,North America +2023-02-04,30691,676,"[""Phone""]",2270.37,"{"""": ""30%""}",216925,1,Asia +2024-06-28,30692,6035,"[""Charger""]",3901.21,"{""promo"": ""18%""}",216972,0,Africa +2024-10-01,30693,3617,"[""Wireless Mouse"", ""Laptop""]",301.46,{},236794,0,South America +2024-02-17,30694,5852,"[""Monitor"", ""Headphones""]",1433.25,{},75083,0,Africa +2023-04-20,30695,3130,"[""Headphones"", ""Tablet""]",3659.92,{},48016,0,Europe +2024-04-08,30696,9467,"[""Wireless Mouse""]",2165.32,"{""loyalty"": ""26%""}",137488,0,Asia +2023-04-09,30697,7297,"[""Monitor""]",3320.58,"{""loyalty"": ""25%""}",182486,1,Europe +2023-12-17,30698,4304,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",720.2,{},118931,1,Asia +2023-06-28,30699,290,"[""Charger""]",1824.77,{},254344,0,Europe +2023-02-25,30700,166,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3242.37,{},10522,1,Asia +2024-10-10,30701,7900,"[""Wireless Mouse""]",1611.53,{},33326,0,Asia +2023-11-24,30702,3376,"[""Wireless Mouse""]",2441.74,{},269543,0,Europe +2024-05-13,30703,2205,"[""Wireless Mouse"", ""Charger""]",3123.67,"{"""": ""13%""}",210394,0,North America +2024-12-19,30704,3585,"[""Monitor""]",3847.78,{},58216,1,Africa +2024-01-04,30705,2518,"[""Wireless Mouse""]",822.02,{},297916,0,Africa +2024-11-10,30706,4041,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3203.67,"{"""": ""30%""}",31997,1,North America +2024-08-07,30707,9333,"[""Laptop""]",1132.41,{},125900,0,South America +2023-08-13,30708,4985,"[""Phone"", ""Tablet"", ""Laptop""]",4369.26,"{""seasonal"": ""8%""}",294284,0,Asia +2023-04-24,30709,7744,"[""Charger"", ""Monitor""]",3812.42,{},91791,0,Europe +2024-12-15,30710,9310,"[""Wireless Mouse"", ""Headphones""]",3335.21,{},192295,0,Europe +2024-08-08,30711,2638,"[""Wireless Mouse""]",529.42,"{""seasonal"": ""22%""}",147055,0,Africa +2023-06-01,30712,6137,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2700.5,"{""loyalty"": ""26%""}",56116,1,Asia +2023-07-23,30713,2057,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2363.48,"{"""": ""17%""}",62085,1,Africa +2024-07-02,30714,5011,"[""Keyboard""]",4597.86,{},176050,0,Asia +2024-01-27,30715,160,"[""Tablet"", ""Headphones"", ""Monitor""]",4613.92,"{"""": ""7%""}",120739,0,Europe +2024-05-28,30716,1187,"[""Charger"", ""Tablet""]",4710.17,"{""loyalty"": ""8%""}",145242,0,North America +2023-06-21,30717,7846,"[""Charger""]",4870.28,{},29255,1,South America +2023-06-26,30718,4423,"[""Monitor""]",2707.58,"{""seasonal"": ""23%""}",115910,0,South America +2024-04-09,30719,9217,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",625.93,"{""loyalty"": ""11%""}",289303,0,Asia +2023-04-06,30720,3125,"[""Laptop""]",2614.22,"{""promo"": ""20%""}",251232,0,North America +2024-12-28,30721,9763,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4811.24,{},286918,1,South America +2024-02-14,30722,4219,"[""Wireless Mouse"", ""Tablet""]",4743.71,"{""loyalty"": ""5%""}",245268,0,North America +2024-07-03,30723,1830,"[""Keyboard"", ""Charger"", ""Phone""]",2762.8,{},29223,1,South America +2023-05-23,30724,4093,"[""Wireless Mouse""]",410.83,"{""promo"": ""24%""}",244471,0,South America +2023-04-26,30725,9875,"[""Phone""]",859.09,{},23725,1,South America +2023-11-26,30726,7094,"[""Keyboard""]",166.65,{},184981,1,Europe +2023-04-02,30727,6486,"[""Wireless Mouse"", ""Phone""]",96.62,"{""promo"": ""18%""}",35489,0,South America +2024-09-21,30728,5488,"[""Laptop"", ""Keyboard"", ""Charger""]",603.39,{},61656,1,Asia +2023-07-25,30729,851,"[""Tablet"", ""Headphones""]",3767.02,"{"""": ""21%""}",266254,0,North America +2023-04-17,30730,9217,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3281.6,"{""loyalty"": ""18%""}",100574,1,Europe +2024-08-24,30731,3119,"[""Monitor""]",4531.04,"{""promo"": ""17%""}",84414,0,Asia +2024-04-25,30732,1249,"[""Monitor"", ""Headphones"", ""Phone""]",4366.26,"{"""": ""22%""}",134867,0,Africa +2023-03-24,30733,6503,"[""Phone""]",3587.45,"{""seasonal"": ""13%""}",167670,1,Africa +2024-02-05,30734,9638,"[""Wireless Mouse"", ""Laptop""]",2264.3,{},137183,0,Africa +2023-11-23,30735,5241,"[""Wireless Mouse"", ""Tablet""]",647.41,{},295212,1,North America +2024-10-13,30736,1434,"[""Tablet""]",4852.67,{},122741,1,Africa +2023-06-07,30737,2360,"[""Charger""]",2671.13,{},212336,0,Africa +2023-02-16,30738,7409,"[""Tablet"", ""Keyboard"", ""Monitor""]",89.08,{},242414,1,Africa +2023-05-19,30739,1913,"[""Tablet""]",3597.34,{},43977,0,South America +2023-05-28,30740,1366,"[""Laptop""]",4100.9,{},54935,1,South America +2024-05-31,30741,2412,"[""Charger"", ""Laptop""]",745.11,{},234826,1,Europe +2023-12-29,30742,9913,"[""Keyboard"", ""Monitor""]",3812.82,{},60063,0,Asia +2024-01-25,30743,9274,"[""Headphones""]",3591.6,"{""seasonal"": ""24%""}",298257,0,South America +2024-06-16,30744,5481,"[""Headphones""]",4461.71,{},181015,1,South America +2023-12-14,30745,7223,"[""Charger"", ""Headphones""]",2092.49,{},265052,1,Europe +2023-08-29,30746,7530,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1021.77,{},71214,0,Africa +2023-10-30,30747,2444,"[""Headphones"", ""Monitor"", ""Keyboard""]",4629.83,{},52590,1,Europe +2023-06-17,30748,6437,"[""Phone"", ""Keyboard"", ""Monitor""]",3244.28,{},61731,0,North America +2023-07-13,30749,3633,"[""Wireless Mouse"", ""Tablet""]",1245.22,"{""seasonal"": ""19%""}",10784,0,Europe +2024-07-21,30750,3949,"[""Tablet"", ""Headphones"", ""Keyboard""]",4232.51,{},205970,0,South America +2023-06-13,30751,2128,"[""Laptop""]",3827.08,{},221211,1,South America +2024-04-13,30752,6077,"[""Wireless Mouse"", ""Headphones""]",3642.27,"{"""": ""15%""}",275659,1,Asia +2023-05-06,30753,6565,"[""Headphones"", ""Laptop""]",3550.41,"{""seasonal"": ""13%""}",163925,1,Europe +2023-08-14,30754,1212,"[""Keyboard"", ""Tablet""]",1633.31,"{""loyalty"": ""17%""}",262828,1,Africa +2023-12-24,30755,8832,"[""Laptop""]",2644.58,"{""loyalty"": ""26%""}",126031,1,Europe +2023-05-18,30756,9760,"[""Keyboard"", ""Tablet""]",1287.41,{},262041,1,Asia +2024-10-07,30757,8141,"[""Phone"", ""Wireless Mouse""]",4495.95,{},245511,0,Africa +2023-10-10,30758,1160,"[""Headphones"", ""Charger""]",3232.14,{},122420,1,Asia +2024-05-02,30759,5275,"[""Keyboard""]",563.65,{},258803,0,North America +2023-05-03,30760,6453,"[""Monitor"", ""Phone"", ""Keyboard""]",763.5,"{""promo"": ""22%""}",265341,1,Europe +2024-05-26,30761,6831,"[""Headphones""]",3929.68,"{""promo"": ""23%""}",172061,1,Europe +2023-11-25,30762,1417,"[""Keyboard"", ""Monitor""]",3266.28,"{""loyalty"": ""21%""}",156383,0,Europe +2023-07-09,30763,6210,"[""Wireless Mouse""]",4888.9,{},78228,1,South America +2024-07-02,30764,3377,"[""Tablet""]",1131.4,{},67346,1,Europe +2023-03-01,30765,9027,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",614.06,"{""seasonal"": ""27%""}",129390,1,Europe +2024-05-05,30766,2223,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1932.84,"{""promo"": ""25%""}",28720,1,South America +2024-01-26,30767,4184,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2821.42,"{"""": ""27%""}",16046,1,North America +2023-12-16,30768,811,"[""Wireless Mouse"", ""Tablet""]",1778.19,{},297854,1,Asia +2023-09-18,30769,9552,"[""Tablet"", ""Phone"", ""Headphones""]",2181.88,"{""loyalty"": ""16%""}",65814,0,Africa +2023-10-21,30770,3045,"[""Keyboard"", ""Tablet""]",4046.47,"{""promo"": ""12%""}",118219,1,South America +2023-03-08,30771,9249,"[""Laptop"", ""Monitor""]",2448.12,{},270593,1,South America +2024-02-26,30772,9877,"[""Phone"", ""Wireless Mouse""]",4578.43,{},83463,0,Africa +2024-03-08,30773,5471,"[""Headphones""]",1969.89,{},281236,0,Africa +2024-07-19,30774,2862,"[""Tablet""]",2159.04,"{""seasonal"": ""28%""}",218446,1,South America +2024-05-13,30775,7848,"[""Keyboard""]",2407.01,"{""seasonal"": ""26%""}",57218,0,North America +2023-10-12,30776,6404,"[""Wireless Mouse"", ""Headphones""]",3066.6,{},30471,1,Africa +2024-03-26,30777,8146,"[""Phone"", ""Headphones"", ""Charger""]",1146.25,{},291782,0,Europe +2024-05-31,30778,7436,"[""Monitor"", ""Tablet"", ""Laptop""]",1481.75,{},181768,1,Asia +2023-09-23,30779,246,"[""Keyboard""]",3300.32,"{""seasonal"": ""29%""}",111065,1,Asia +2023-04-15,30780,7159,"[""Tablet"", ""Monitor""]",808.61,{},196751,0,South America +2024-12-31,30781,8661,"[""Phone"", ""Laptop""]",3792.17,"{""loyalty"": ""26%""}",79180,0,Africa +2024-10-31,30782,842,"[""Laptop""]",116.79,"{""promo"": ""7%""}",120038,1,Asia +2024-12-28,30783,124,"[""Phone"", ""Monitor"", ""Laptop""]",322.64,{},63026,1,Asia +2023-06-06,30784,4200,"[""Phone"", ""Wireless Mouse""]",1016.64,"{""promo"": ""5%""}",236275,1,Africa +2024-10-21,30785,4053,"[""Keyboard""]",2545.62,"{""seasonal"": ""15%""}",101293,1,Asia +2024-01-12,30786,9443,"[""Charger"", ""Wireless Mouse""]",730.65,"{"""": ""15%""}",183977,1,North America +2023-04-23,30787,336,"[""Tablet""]",3901.55,"{""seasonal"": ""30%""}",7742,1,North America +2023-10-31,30788,8329,"[""Phone"", ""Keyboard"", ""Headphones""]",1658.32,{},254128,1,Europe +2023-12-28,30789,9148,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4209.97,{},66858,1,North America +2024-09-22,30790,4539,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3593.28,"{"""": ""29%""}",164699,0,Asia +2024-08-30,30791,5167,"[""Tablet""]",970.96,{},83321,0,Asia +2023-11-25,30792,7288,"[""Tablet""]",3560.31,{},287378,0,North America +2024-08-17,30793,9709,"[""Monitor""]",4417.11,{},134769,1,Asia +2023-06-25,30794,2420,"[""Headphones"", ""Keyboard""]",3936.67,{},208842,1,Europe +2023-04-23,30795,8872,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3171.61,{},263066,0,Africa +2024-03-18,30796,6469,"[""Laptop""]",3609.49,{},251574,0,Asia +2023-11-24,30797,3144,"[""Charger"", ""Headphones""]",1240.47,"{""promo"": ""21%""}",241816,1,Africa +2024-12-10,30798,8801,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4855.21,"{""loyalty"": ""25%""}",190399,0,Africa +2023-04-02,30799,921,"[""Monitor""]",92.34,{},266284,0,North America +2024-07-14,30800,711,"[""Tablet"", ""Charger""]",3936.91,"{"""": ""28%""}",284544,1,Africa +2023-06-18,30801,3395,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4802.66,"{"""": ""14%""}",119366,1,Europe +2023-02-10,30802,2907,"[""Phone""]",1364.11,{},287109,1,South America +2023-05-29,30803,774,"[""Wireless Mouse""]",1476.22,"{"""": ""30%""}",235340,0,Africa +2023-05-02,30804,3414,"[""Keyboard"", ""Laptop"", ""Monitor""]",674.29,{},80726,1,Europe +2024-06-10,30805,1692,"[""Keyboard""]",1391.08,{},98674,1,Europe +2024-05-27,30806,1262,"[""Headphones"", ""Wireless Mouse""]",2646.46,{},209290,1,Asia +2024-12-24,30807,7615,"[""Tablet"", ""Wireless Mouse""]",3120.91,"{"""": ""9%""}",258935,0,North America +2024-05-06,30808,2592,"[""Charger""]",230.33,"{""seasonal"": ""30%""}",137145,0,South America +2023-08-31,30809,5016,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",956.35,{},244480,0,South America +2023-08-15,30810,2105,"[""Keyboard"", ""Phone""]",2954.11,"{""seasonal"": ""20%""}",9921,1,Asia +2023-06-26,30811,9820,"[""Tablet"", ""Headphones"", ""Phone""]",2821.59,"{"""": ""15%""}",142275,1,North America +2023-01-10,30812,1553,"[""Laptop"", ""Headphones"", ""Charger""]",4448.42,"{"""": ""5%""}",156879,1,Africa +2024-04-21,30813,3400,"[""Headphones""]",2786.26,{},65316,1,North America +2024-07-27,30814,6714,"[""Headphones""]",3262.88,{},28774,0,South America +2024-09-11,30815,8044,"[""Charger"", ""Phone"", ""Tablet""]",3200.63,{},247697,1,Africa +2024-11-05,30816,7192,"[""Phone"", ""Charger""]",2041.57,{},172329,1,South America +2023-03-16,30817,8351,"[""Phone""]",1349.59,{},39733,1,Europe +2023-01-18,30818,322,"[""Phone"", ""Headphones"", ""Monitor""]",2683.34,{},272758,1,North America +2023-07-30,30819,984,"[""Monitor"", ""Charger""]",3077.58,"{""seasonal"": ""6%""}",47926,0,Europe +2024-06-04,30820,4035,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4327.3,"{""seasonal"": ""24%""}",288807,0,Africa +2023-12-28,30821,2747,"[""Headphones""]",870.05,"{"""": ""17%""}",206897,0,Africa +2023-10-07,30822,4807,"[""Monitor""]",1176.64,{},60368,0,Africa +2023-01-14,30823,726,"[""Keyboard"", ""Monitor""]",2032.26,"{""seasonal"": ""10%""}",201139,1,Africa +2023-08-23,30824,7177,"[""Monitor"", ""Headphones""]",429.39,"{""promo"": ""25%""}",105394,1,Europe +2023-08-08,30825,6635,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4683.16,"{""promo"": ""28%""}",52659,0,South America +2023-05-10,30826,9057,"[""Wireless Mouse"", ""Monitor""]",4036.49,{},186735,0,Asia +2023-07-06,30827,3797,"[""Monitor"", ""Headphones"", ""Laptop""]",2511.2,{},263377,0,North America +2023-05-18,30828,3874,"[""Wireless Mouse""]",250.75,"{""promo"": ""7%""}",36553,0,Africa +2023-07-09,30829,435,"[""Monitor"", ""Keyboard""]",4990.8,"{""loyalty"": ""16%""}",265197,1,Europe +2023-11-25,30830,2067,"[""Monitor"", ""Wireless Mouse""]",2422.35,"{""promo"": ""20%""}",109846,0,South America +2024-05-16,30831,7223,"[""Monitor""]",404.19,"{""seasonal"": ""9%""}",3554,1,North America +2023-02-21,30832,5102,"[""Tablet"", ""Monitor"", ""Phone""]",3834.92,{},38791,0,Asia +2024-01-29,30833,5806,"[""Monitor""]",2358.6,"{""loyalty"": ""5%""}",120862,1,North America +2023-12-08,30834,1504,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2988.14,{},56952,0,Asia +2023-03-28,30835,7565,"[""Charger""]",2444.09,"{""loyalty"": ""18%""}",31886,0,Europe +2023-10-19,30836,1052,"[""Laptop"", ""Monitor""]",1024.45,"{"""": ""13%""}",247535,0,Europe +2023-05-07,30837,9730,"[""Wireless Mouse"", ""Keyboard""]",4376.13,{},33747,0,Africa +2023-04-07,30838,2589,"[""Charger"", ""Tablet"", ""Phone""]",629.71,{},275807,0,Europe +2024-08-01,30839,4300,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3899.17,{},286042,1,Asia +2023-05-12,30840,3317,"[""Wireless Mouse""]",4954.03,{},139523,1,South America +2024-09-18,30841,2806,"[""Charger"", ""Tablet""]",2857.63,"{""loyalty"": ""19%""}",9155,1,North America +2024-06-30,30842,8354,"[""Monitor"", ""Laptop""]",1271.88,"{""loyalty"": ""8%""}",251498,1,North America +2024-06-01,30843,5010,"[""Keyboard""]",4358.04,"{"""": ""29%""}",243965,1,South America +2023-03-19,30844,8969,"[""Tablet""]",491.22,"{""promo"": ""7%""}",270566,0,Asia +2024-05-10,30845,6629,"[""Laptop"", ""Headphones"", ""Tablet""]",197.75,{},277608,1,Europe +2024-09-24,30846,5729,"[""Keyboard"", ""Tablet""]",3287.92,{},201727,0,Asia +2024-02-23,30847,1954,"[""Phone"", ""Wireless Mouse""]",315.4,{},226216,1,Europe +2023-12-17,30848,8366,"[""Phone"", ""Keyboard""]",1369.73,"{""loyalty"": ""29%""}",47499,1,Asia +2024-02-14,30849,3017,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3170.71,{},164968,1,North America +2024-11-10,30850,4164,"[""Monitor"", ""Headphones""]",2561.65,{},167598,1,South America +2024-09-21,30851,8416,"[""Monitor""]",228.68,{},219478,0,South America +2023-01-07,30852,7976,"[""Headphones"", ""Monitor""]",3896.49,{},61616,0,South America +2023-10-09,30853,856,"[""Charger""]",2333.31,{},83247,1,Europe +2023-08-31,30854,6016,"[""Headphones"", ""Monitor""]",513.03,{},12876,1,Europe +2023-08-28,30855,3410,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1887.55,{},214706,1,Africa +2023-04-20,30856,9903,"[""Monitor"", ""Wireless Mouse""]",3072.7,"{""seasonal"": ""20%""}",217412,1,North America +2023-11-21,30857,3734,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",367.98,{},174169,1,Asia +2024-04-11,30858,9094,"[""Charger""]",4209.68,{},291497,0,Africa +2023-07-10,30859,3974,"[""Headphones"", ""Tablet""]",1718.16,"{""promo"": ""29%""}",299009,0,Africa +2023-10-28,30860,7238,"[""Phone""]",1281.52,{},254012,1,South America +2024-10-31,30861,9061,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3586.39,{},274304,1,South America +2024-09-12,30862,5676,"[""Headphones"", ""Tablet"", ""Monitor""]",3038.18,{},250126,1,Asia +2023-12-12,30863,1272,"[""Laptop"", ""Monitor""]",3268.61,"{""loyalty"": ""21%""}",42631,0,South America +2023-06-13,30864,3723,"[""Phone"", ""Laptop"", ""Monitor""]",3852.41,"{""promo"": ""13%""}",63689,1,Africa +2024-07-31,30865,7697,"[""Keyboard""]",2891.59,"{""promo"": ""14%""}",64820,1,Europe +2024-06-15,30866,6103,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1754.89,"{""seasonal"": ""10%""}",283410,1,South America +2024-11-20,30867,3131,"[""Phone"", ""Monitor""]",1298.67,"{"""": ""21%""}",257384,1,Africa +2023-06-30,30868,9908,"[""Tablet""]",1991.36,{},16216,0,Asia +2024-07-23,30869,9813,"[""Charger"", ""Keyboard"", ""Monitor""]",895.61,"{""loyalty"": ""25%""}",145842,1,Africa +2023-06-28,30870,3362,"[""Monitor""]",1817.99,{},274761,1,Africa +2024-08-14,30871,9344,"[""Phone"", ""Keyboard"", ""Tablet""]",971.74,{},299333,0,Europe +2024-10-08,30872,6699,"[""Charger""]",400.44,{},259210,1,North America +2023-04-17,30873,6503,"[""Headphones"", ""Monitor"", ""Charger""]",884.85,{},250623,0,North America +2023-02-13,30874,2511,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4860.01,{},24229,0,Asia +2023-01-02,30875,7340,"[""Phone"", ""Keyboard""]",1549.78,"{""seasonal"": ""26%""}",199379,0,North America +2024-10-23,30876,2355,"[""Headphones"", ""Laptop""]",3035.96,{},184882,0,Europe +2024-07-10,30877,1098,"[""Monitor""]",4492.32,{},5254,0,Europe +2023-07-31,30878,596,"[""Wireless Mouse"", ""Tablet""]",4951.91,"{""loyalty"": ""6%""}",278494,1,North America +2024-05-20,30879,9782,"[""Monitor"", ""Phone""]",2711.05,{},39150,0,South America +2023-08-20,30880,5328,"[""Monitor""]",1071.38,"{"""": ""17%""}",52435,0,South America +2024-12-13,30881,2840,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4251.78,{},116254,1,South America +2023-04-07,30882,5153,"[""Keyboard"", ""Wireless Mouse""]",1140.65,{},285558,0,South America +2024-02-02,30883,8052,"[""Headphones"", ""Tablet""]",3906.88,{},75561,1,North America +2023-02-12,30884,7632,"[""Keyboard""]",694.43,"{"""": ""11%""}",175155,1,Asia +2023-01-27,30885,5074,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2365.62,{},65705,0,North America +2024-07-07,30886,853,"[""Laptop""]",4211.02,{},160479,0,Asia +2024-07-13,30887,3590,"[""Headphones""]",471.41,{},14807,1,Europe +2023-11-02,30888,5495,"[""Phone""]",4340.18,{},204882,1,South America +2024-03-29,30889,5402,"[""Laptop""]",1689.95,{},216416,1,Asia +2023-11-20,30890,755,"[""Charger""]",2569.88,{},269068,1,Africa +2024-11-12,30891,4739,"[""Keyboard"", ""Tablet""]",2869.57,{},103060,1,Asia +2023-02-25,30892,3978,"[""Wireless Mouse"", ""Laptop""]",2115.96,{},103198,1,Africa +2023-07-02,30893,5306,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",645.19,"{""loyalty"": ""5%""}",90845,1,Europe +2023-05-07,30894,9244,"[""Monitor"", ""Wireless Mouse""]",1258.29,{},8857,0,South America +2024-10-26,30895,4346,"[""Laptop""]",4135.06,"{""loyalty"": ""16%""}",5710,0,South America +2024-07-29,30896,1959,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1362.11,{},139447,0,Africa +2023-10-19,30897,3680,"[""Charger""]",2894.05,"{""seasonal"": ""9%""}",108381,0,North America +2023-03-20,30898,6016,"[""Monitor""]",4459.89,"{"""": ""23%""}",117489,0,South America +2023-03-17,30899,3273,"[""Charger""]",4671.96,{},60952,0,North America +2024-04-18,30900,3035,"[""Phone""]",4037.55,"{""loyalty"": ""10%""}",73794,0,Europe +2024-11-06,30901,7104,"[""Laptop""]",3420.51,{},247410,1,Asia +2024-01-24,30902,3191,"[""Tablet"", ""Phone"", ""Charger""]",846.53,"{"""": ""8%""}",293029,1,Asia +2024-05-03,30903,8673,"[""Charger"", ""Headphones"", ""Phone""]",4477.23,{},91615,1,North America +2024-04-08,30904,3058,"[""Keyboard"", ""Tablet"", ""Phone""]",570.54,{},24864,1,South America +2024-08-13,30905,7377,"[""Monitor""]",4220.8,"{""seasonal"": ""17%""}",144358,0,North America +2024-09-12,30906,3390,"[""Laptop""]",2643.7,"{""promo"": ""23%""}",56284,0,Asia +2023-10-17,30907,3786,"[""Tablet"", ""Phone""]",2876.0,{},248694,0,North America +2024-01-15,30908,6704,"[""Keyboard"", ""Headphones""]",3495.24,{},21162,1,Asia +2023-10-08,30909,7247,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4846.69,{},271345,0,North America +2023-11-18,30910,7349,"[""Headphones"", ""Monitor""]",2475.76,{},191629,0,Europe +2024-02-27,30911,578,"[""Charger"", ""Tablet""]",3238.48,{},151034,0,Europe +2023-12-13,30912,225,"[""Wireless Mouse""]",338.22,"{""seasonal"": ""24%""}",251956,1,Asia +2024-06-03,30913,4819,"[""Monitor""]",1297.94,{},289492,1,Africa +2023-11-18,30914,7608,"[""Charger"", ""Monitor""]",1715.78,"{"""": ""9%""}",191359,0,North America +2024-06-14,30915,853,"[""Monitor"", ""Keyboard""]",2070.97,{},247373,1,Asia +2024-02-12,30916,5868,"[""Monitor"", ""Wireless Mouse""]",1095.46,"{""promo"": ""10%""}",200199,0,Europe +2023-09-25,30917,2257,"[""Monitor"", ""Tablet"", ""Phone""]",3943.04,"{""loyalty"": ""15%""}",78415,1,South America +2024-02-18,30918,9833,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1442.44,{},10415,1,Africa +2023-11-13,30919,1493,"[""Charger""]",127.74,{},246713,0,Europe +2023-12-09,30920,5135,"[""Tablet"", ""Keyboard""]",1860.83,{},286883,0,North America +2023-08-25,30921,5896,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1019.65,"{""promo"": ""28%""}",198179,1,South America +2023-12-18,30922,6308,"[""Phone"", ""Tablet""]",4987.04,{},10434,0,Asia +2024-08-01,30923,172,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1755.44,{},273996,1,South America +2024-03-13,30924,4045,"[""Wireless Mouse"", ""Keyboard""]",2879.27,{},204486,1,South America +2023-01-20,30925,3290,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1789.19,{},156319,0,Europe +2024-03-31,30926,2397,"[""Keyboard""]",2979.66,"{""loyalty"": ""27%""}",201967,1,Africa +2023-04-17,30927,7112,"[""Phone""]",3735.93,{},223887,0,Europe +2023-04-28,30928,1855,"[""Laptop"", ""Monitor""]",4754.85,"{""seasonal"": ""14%""}",260212,0,North America +2024-04-23,30929,2577,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",678.27,"{"""": ""21%""}",270757,1,South America +2023-06-09,30930,9491,"[""Laptop""]",3203.31,"{""loyalty"": ""27%""}",69557,0,North America +2023-01-15,30931,4686,"[""Laptop""]",469.64,{},121440,1,Asia +2024-03-24,30932,5193,"[""Phone"", ""Charger"", ""Monitor""]",3902.63,{},140795,1,North America +2023-02-08,30933,3250,"[""Laptop"", ""Monitor""]",4642.58,"{""seasonal"": ""24%""}",280928,0,Asia +2023-04-30,30934,2636,"[""Tablet"", ""Charger""]",2615.23,"{"""": ""24%""}",140881,1,Europe +2023-11-02,30935,123,"[""Phone"", ""Keyboard""]",1518.93,{},7863,0,Europe +2024-02-15,30936,9842,"[""Monitor""]",4677.32,"{""seasonal"": ""13%""}",119064,0,Europe +2023-08-13,30937,8193,"[""Keyboard""]",4926.89,"{"""": ""27%""}",49667,0,Europe +2024-01-06,30938,1947,"[""Wireless Mouse""]",1133.78,"{""seasonal"": ""19%""}",101336,1,Europe +2024-12-15,30939,7728,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3461.17,{},12437,0,Europe +2023-10-02,30940,9182,"[""Laptop"", ""Monitor""]",2296.94,{},264861,0,Africa +2024-10-05,30941,2850,"[""Headphones"", ""Keyboard"", ""Charger""]",3769.63,"{""promo"": ""6%""}",223641,0,Asia +2023-10-28,30942,7114,"[""Headphones"", ""Monitor""]",1665.29,"{""loyalty"": ""28%""}",242563,1,Asia +2023-04-29,30943,8364,"[""Laptop""]",1523.64,"{"""": ""24%""}",12994,0,South America +2024-09-17,30944,3077,"[""Keyboard""]",4053.25,"{""seasonal"": ""23%""}",230763,1,Africa +2023-01-07,30945,5091,"[""Laptop"", ""Charger"", ""Tablet""]",3556.66,"{""seasonal"": ""17%""}",81072,0,South America +2023-02-01,30946,3315,"[""Laptop"", ""Wireless Mouse""]",989.09,"{"""": ""19%""}",34035,0,North America +2024-09-25,30947,8972,"[""Monitor""]",2508.17,"{"""": ""14%""}",107772,0,Europe +2024-11-14,30948,4301,"[""Monitor""]",2557.98,{},290762,0,Europe +2023-08-15,30949,8462,"[""Tablet""]",3594.58,"{""loyalty"": ""21%""}",107648,1,Europe +2024-05-26,30950,5317,"[""Headphones"", ""Keyboard"", ""Phone""]",2237.86,{},23709,1,South America +2024-08-04,30951,8240,"[""Tablet"", ""Laptop"", ""Charger""]",1517.81,"{"""": ""29%""}",195624,1,Asia +2024-12-29,30952,7004,"[""Headphones""]",91.76,"{""promo"": ""16%""}",255465,0,Africa +2023-08-26,30953,8559,"[""Tablet"", ""Monitor"", ""Headphones""]",3857.4,"{""seasonal"": ""28%""}",115446,0,South America +2023-07-17,30954,2292,"[""Wireless Mouse"", ""Phone""]",672.01,{},35661,1,Africa +2023-05-16,30955,8274,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1673.57,"{""promo"": ""30%""}",113310,0,Asia +2023-10-24,30956,8509,"[""Phone""]",2261.14,{},203658,1,Europe +2024-11-16,30957,7999,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4120.71,{},283633,1,Africa +2023-03-11,30958,7486,"[""Keyboard"", ""Headphones"", ""Tablet""]",3768.41,{},9671,0,Europe +2023-03-27,30959,1901,"[""Keyboard"", ""Headphones""]",4165.93,"{"""": ""12%""}",66510,0,Europe +2024-08-31,30960,5440,"[""Charger""]",3250.54,{},185312,0,Europe +2023-08-07,30961,2815,"[""Wireless Mouse""]",1604.52,{},45307,1,Africa +2024-07-06,30962,9210,"[""Phone"", ""Keyboard""]",4568.56,"{""loyalty"": ""18%""}",80508,0,Africa +2023-08-31,30963,977,"[""Keyboard""]",4745.61,"{""promo"": ""27%""}",30026,1,South America +2024-01-21,30964,1471,"[""Laptop""]",1135.23,"{""seasonal"": ""30%""}",250666,1,North America +2024-11-21,30965,1453,"[""Laptop""]",797.49,"{""loyalty"": ""19%""}",149640,0,Europe +2024-07-22,30966,9513,"[""Keyboard""]",1284.21,{},145139,0,Asia +2024-06-01,30967,3137,"[""Keyboard"", ""Monitor""]",4943.78,{},54686,0,Asia +2023-04-19,30968,6725,"[""Phone""]",2787.89,"{""seasonal"": ""25%""}",111292,0,Africa +2024-05-21,30969,5301,"[""Wireless Mouse""]",670.99,"{"""": ""9%""}",269639,1,Africa +2024-02-08,30970,5332,"[""Wireless Mouse""]",4616.66,"{""promo"": ""7%""}",183044,1,Asia +2023-01-02,30971,6784,"[""Monitor""]",1064.87,"{""promo"": ""23%""}",197893,1,Africa +2023-05-26,30972,3002,"[""Monitor"", ""Keyboard""]",3568.25,{},40251,1,South America +2024-08-11,30973,7904,"[""Laptop""]",3692.29,{},33614,1,Africa +2023-11-24,30974,4346,"[""Headphones"", ""Charger"", ""Keyboard""]",963.11,"{""loyalty"": ""16%""}",84833,1,Africa +2024-07-23,30975,5689,"[""Charger""]",3836.04,"{""seasonal"": ""17%""}",70151,1,South America +2024-08-13,30976,4391,"[""Tablet"", ""Charger""]",1899.14,{},40235,1,North America +2024-05-11,30977,4297,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3542.05,{},2139,1,Europe +2023-03-12,30978,1780,"[""Tablet""]",3966.0,"{""loyalty"": ""21%""}",227128,1,South America +2023-08-08,30979,8105,"[""Monitor""]",2594.05,{},128009,0,South America +2023-03-27,30980,2490,"[""Charger"", ""Laptop"", ""Keyboard""]",123.02,{},294753,0,Africa +2023-04-24,30981,1016,"[""Charger""]",2078.56,{},119677,1,South America +2024-06-24,30982,5517,"[""Phone"", ""Tablet"", ""Charger""]",4780.39,"{""promo"": ""13%""}",120009,0,Asia +2023-09-26,30983,7784,"[""Tablet""]",506.42,"{""promo"": ""12%""}",49569,0,Europe +2023-10-06,30984,8984,"[""Charger"", ""Keyboard""]",2463.02,{},238584,0,Africa +2024-06-12,30985,3697,"[""Laptop"", ""Tablet""]",2387.93,{},30228,1,North America +2023-04-10,30986,9169,"[""Monitor"", ""Charger""]",669.74,"{"""": ""25%""}",2153,0,Europe +2024-09-11,30987,3696,"[""Headphones""]",1336.04,{},79329,0,South America +2024-05-20,30988,3397,"[""Phone"", ""Headphones""]",735.17,"{""seasonal"": ""23%""}",227405,0,South America +2023-12-06,30989,7149,"[""Monitor"", ""Wireless Mouse""]",4227.93,"{""promo"": ""13%""}",171884,0,Europe +2024-10-27,30990,8688,"[""Phone"", ""Keyboard"", ""Headphones""]",4870.51,"{"""": ""14%""}",240682,1,Europe +2024-05-18,30991,9036,"[""Phone"", ""Charger"", ""Laptop""]",839.53,{},256453,1,Africa +2023-06-01,30992,863,"[""Phone"", ""Monitor"", ""Charger""]",3077.91,{},15562,0,Asia +2024-09-16,30993,2929,"[""Keyboard"", ""Phone""]",1374.19,{},211198,0,South America +2023-04-09,30994,2102,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2100.07,"{""loyalty"": ""18%""}",234732,0,Asia +2023-09-10,30995,9897,"[""Phone"", ""Laptop""]",2394.01,"{""promo"": ""16%""}",23635,1,Africa +2024-04-12,30996,479,"[""Keyboard"", ""Headphones""]",2547.98,"{"""": ""12%""}",156507,1,North America +2023-10-08,30997,2139,"[""Laptop""]",4637.89,{},157796,0,Asia +2023-12-04,30998,6421,"[""Wireless Mouse"", ""Monitor""]",1808.85,{},173608,1,South America +2023-07-24,30999,1701,"[""Headphones""]",3042.68,{},206194,1,North America +2024-05-17,31000,7611,"[""Monitor"", ""Tablet"", ""Phone""]",3586.88,{},135321,0,Africa +2024-05-29,31001,9977,"[""Laptop"", ""Charger""]",1815.67,"{""loyalty"": ""22%""}",238566,1,North America +2024-06-06,31002,8722,"[""Headphones""]",1818.84,"{"""": ""26%""}",225981,0,North America +2024-06-29,31003,1764,"[""Wireless Mouse""]",3730.24,"{""promo"": ""13%""}",64975,1,Asia +2023-07-31,31004,16,"[""Laptop"", ""Tablet"", ""Monitor""]",1976.13,{},285601,0,Asia +2024-11-18,31005,9018,"[""Tablet"", ""Keyboard""]",3222.67,"{""seasonal"": ""10%""}",198009,1,Europe +2023-01-30,31006,3689,"[""Phone"", ""Laptop""]",2909.38,{},256792,0,Asia +2023-11-30,31007,2702,"[""Tablet"", ""Keyboard"", ""Headphones""]",1420.83,"{""loyalty"": ""29%""}",60631,1,Europe +2023-11-26,31008,3658,"[""Phone"", ""Tablet""]",2513.44,"{"""": ""10%""}",265244,1,Europe +2023-12-26,31009,1936,"[""Headphones"", ""Charger""]",4257.45,{},128664,0,Asia +2023-01-21,31010,5701,"[""Keyboard""]",4908.97,{},82731,1,Asia +2023-01-03,31011,1546,"[""Headphones""]",3451.73,"{""promo"": ""22%""}",229686,0,Europe +2024-12-04,31012,8527,"[""Tablet"", ""Headphones"", ""Keyboard""]",4385.9,{},28793,0,South America +2023-05-16,31013,4989,"[""Charger"", ""Tablet"", ""Phone""]",3406.67,"{""seasonal"": ""22%""}",75878,1,Asia +2023-08-20,31014,1302,"[""Charger"", ""Phone"", ""Monitor""]",2284.57,"{""seasonal"": ""11%""}",143016,1,North America +2023-03-05,31015,2162,"[""Charger"", ""Keyboard""]",1890.37,{},238914,1,Europe +2024-10-24,31016,99,"[""Keyboard"", ""Laptop""]",2423.97,"{""promo"": ""23%""}",242823,0,Africa +2024-08-01,31017,2655,"[""Keyboard"", ""Headphones"", ""Charger""]",2293.32,"{""seasonal"": ""8%""}",104954,1,South America +2024-04-09,31018,5823,"[""Laptop""]",3853.19,"{""promo"": ""25%""}",218260,1,Asia +2023-12-11,31019,5675,"[""Monitor"", ""Tablet"", ""Headphones""]",3827.16,{},40415,0,North America +2023-04-27,31020,3462,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4689.41,"{"""": ""6%""}",79280,0,South America +2023-09-26,31021,5657,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4553.82,"{""seasonal"": ""5%""}",249262,0,Europe +2024-01-08,31022,8871,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",786.79,{},3554,0,South America +2023-01-13,31023,1050,"[""Phone"", ""Charger"", ""Tablet""]",3927.55,"{""promo"": ""11%""}",163680,1,South America +2024-05-05,31024,7442,"[""Laptop""]",4457.47,"{"""": ""10%""}",143321,1,South America +2023-02-15,31025,5572,"[""Monitor"", ""Keyboard"", ""Headphones""]",2862.82,"{""loyalty"": ""5%""}",268476,1,North America +2024-10-03,31026,3058,"[""Laptop""]",1982.65,"{""promo"": ""12%""}",20475,1,Asia +2024-05-28,31027,2553,"[""Phone"", ""Keyboard""]",4020.41,{},43352,0,North America +2023-02-17,31028,9660,"[""Laptop""]",2023.29,"{""promo"": ""16%""}",254506,1,Asia +2024-12-06,31029,383,"[""Monitor"", ""Phone""]",430.1,{},190104,1,North America +2024-10-17,31030,255,"[""Charger"", ""Monitor"", ""Laptop""]",1732.52,{},273419,0,North America +2024-12-09,31031,8025,"[""Laptop"", ""Monitor"", ""Headphones""]",261.24,{},285844,1,North America +2024-12-28,31032,8371,"[""Monitor""]",2647.66,{},104121,1,Africa +2023-12-10,31033,9039,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2786.77,"{""seasonal"": ""23%""}",230838,0,Africa +2023-07-12,31034,8604,"[""Wireless Mouse""]",1629.98,"{""loyalty"": ""18%""}",47708,0,Asia +2023-08-01,31035,1110,"[""Keyboard"", ""Phone"", ""Tablet""]",2305.4,"{""promo"": ""8%""}",30145,1,North America +2024-11-22,31036,3333,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2866.86,"{"""": ""8%""}",277731,0,Europe +2023-12-18,31037,9841,"[""Wireless Mouse"", ""Laptop""]",3498.34,{},197891,1,Europe +2023-02-11,31038,9475,"[""Tablet"", ""Headphones""]",2149.89,{},35294,1,North America +2023-05-21,31039,1151,"[""Keyboard"", ""Laptop""]",2454.77,"{""promo"": ""19%""}",177601,0,Asia +2023-07-06,31040,5196,"[""Phone"", ""Laptop""]",3227.78,"{""promo"": ""15%""}",154253,0,Europe +2023-03-09,31041,2765,"[""Keyboard"", ""Headphones""]",3540.54,"{""seasonal"": ""8%""}",21068,0,North America +2023-03-12,31042,2048,"[""Laptop"", ""Charger"", ""Monitor""]",4421.03,"{""seasonal"": ""18%""}",157348,0,Africa +2023-04-29,31043,1689,"[""Headphones""]",787.85,"{""promo"": ""23%""}",280636,0,Europe +2024-05-11,31044,1065,"[""Charger"", ""Tablet""]",4709.13,"{""promo"": ""27%""}",250448,1,Africa +2023-10-21,31045,5067,"[""Monitor"", ""Keyboard"", ""Tablet""]",4247.43,{},202215,1,Europe +2023-07-21,31046,6201,"[""Monitor"", ""Tablet"", ""Keyboard""]",1672.07,{},296144,0,Africa +2024-10-14,31047,2431,"[""Wireless Mouse""]",4674.6,"{""seasonal"": ""5%""}",169124,1,Europe +2023-04-28,31048,3090,"[""Charger"", ""Keyboard"", ""Laptop""]",3965.98,"{"""": ""23%""}",225766,0,Asia +2023-11-21,31049,4859,"[""Laptop""]",3507.69,{},191684,0,Africa +2023-09-02,31050,9717,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3507.07,"{""loyalty"": ""20%""}",48908,0,South America +2024-01-13,31051,5247,"[""Wireless Mouse""]",2083.89,{},119365,1,Africa +2024-08-19,31052,1440,"[""Monitor""]",4030.0,"{""loyalty"": ""5%""}",100541,1,Asia +2024-11-26,31053,5981,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1811.65,"{""promo"": ""30%""}",123971,0,Asia +2024-11-04,31054,4321,"[""Keyboard"", ""Tablet""]",798.36,"{""seasonal"": ""6%""}",203340,1,South America +2024-11-08,31055,4146,"[""Phone"", ""Keyboard""]",733.45,{},160145,0,Africa +2023-06-03,31056,4287,"[""Wireless Mouse"", ""Laptop""]",2595.93,{},181933,1,South America +2024-05-01,31057,7092,"[""Laptop"", ""Phone""]",151.06,{},193788,0,South America +2024-02-13,31058,9876,"[""Charger""]",3313.7,"{""loyalty"": ""9%""}",263873,0,Africa +2024-05-07,31059,8907,"[""Laptop"", ""Phone"", ""Monitor""]",3619.59,"{""seasonal"": ""16%""}",7775,1,North America +2024-12-09,31060,1843,"[""Headphones""]",1248.56,{},232896,1,South America +2024-09-17,31061,7280,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2781.89,{},242936,1,Africa +2023-09-24,31062,4645,"[""Phone"", ""Charger""]",194.65,{},56804,0,South America +2024-04-20,31063,2893,"[""Tablet"", ""Charger"", ""Phone""]",198.49,{},279635,0,Europe +2024-04-04,31064,3400,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3375.42,"{""loyalty"": ""12%""}",148478,1,Europe +2024-03-02,31065,9934,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1796.56,{},40551,0,Asia +2024-04-08,31066,6537,"[""Charger""]",2563.12,"{""promo"": ""18%""}",253864,0,North America +2023-02-23,31067,1473,"[""Charger"", ""Monitor"", ""Headphones""]",3034.78,"{"""": ""28%""}",169338,0,Africa +2024-03-16,31068,1497,"[""Tablet""]",1419.18,{},1339,0,North America +2024-11-12,31069,1467,"[""Tablet"", ""Phone""]",2433.33,"{""seasonal"": ""12%""}",292912,1,Africa +2023-05-05,31070,7172,"[""Tablet""]",3490.53,"{""loyalty"": ""6%""}",93269,1,Africa +2024-11-23,31071,8755,"[""Tablet"", ""Keyboard""]",4140.24,{},250469,1,North America +2023-02-19,31072,7920,"[""Phone""]",2192.73,{},178128,1,South America +2023-09-30,31073,1231,"[""Tablet""]",2911.92,{},218529,1,Africa +2024-06-07,31074,1246,"[""Tablet"", ""Monitor""]",952.71,{},57096,1,Europe +2023-04-10,31075,8330,"[""Phone"", ""Monitor""]",225.55,"{""loyalty"": ""23%""}",31318,0,Africa +2024-12-11,31076,452,"[""Monitor"", ""Laptop"", ""Charger""]",3359.91,"{""seasonal"": ""28%""}",79896,1,Asia +2024-01-25,31077,4193,"[""Phone"", ""Monitor""]",2055.9,{},276242,0,North America +2023-11-27,31078,2768,"[""Monitor"", ""Headphones""]",1963.05,{},204300,1,Africa +2024-09-22,31079,8068,"[""Laptop"", ""Phone""]",2395.83,"{""promo"": ""6%""}",147836,0,North America +2023-05-08,31080,5858,"[""Monitor"", ""Charger""]",2204.82,{},234024,1,Africa +2023-04-03,31081,2914,"[""Tablet""]",4950.67,"{""promo"": ""12%""}",47602,1,South America +2024-07-27,31082,2306,"[""Monitor"", ""Keyboard"", ""Charger""]",747.81,"{""loyalty"": ""7%""}",194719,0,South America +2023-01-12,31083,2929,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",600.09,"{"""": ""27%""}",185656,0,Asia +2024-07-21,31084,4968,"[""Wireless Mouse""]",693.14,"{""promo"": ""22%""}",189669,0,South America +2024-09-07,31085,5778,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2383.09,"{""seasonal"": ""20%""}",277151,1,North America +2023-03-09,31086,765,"[""Monitor""]",1836.15,"{""seasonal"": ""25%""}",273548,1,Asia +2024-10-11,31087,2975,"[""Laptop""]",2235.39,{},252410,0,South America +2023-01-17,31088,5963,"[""Wireless Mouse""]",2927.89,"{"""": ""18%""}",122390,0,Africa +2023-09-11,31089,7122,"[""Phone"", ""Charger"", ""Headphones""]",409.34,"{""seasonal"": ""15%""}",28635,0,North America +2023-01-08,31090,9294,"[""Headphones"", ""Laptop"", ""Phone""]",449.87,"{""promo"": ""27%""}",119875,1,Asia +2024-07-14,31091,3373,"[""Keyboard""]",1688.35,{},268626,1,Europe +2023-10-26,31092,2478,"[""Laptop"", ""Charger""]",4298.93,"{"""": ""16%""}",184037,0,Europe +2023-11-11,31093,4124,"[""Wireless Mouse"", ""Keyboard""]",4190.16,{},214977,1,South America +2024-02-07,31094,9419,"[""Headphones"", ""Keyboard""]",3426.8,"{""loyalty"": ""25%""}",64391,0,Africa +2023-08-15,31095,6489,"[""Charger"", ""Headphones""]",1428.19,{},257505,1,Africa +2024-06-12,31096,3569,"[""Monitor"", ""Headphones"", ""Charger""]",3928.45,"{""promo"": ""21%""}",3553,1,Europe +2024-08-25,31097,2051,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1930.44,{},125567,1,Europe +2024-12-25,31098,5952,"[""Tablet"", ""Laptop"", ""Monitor""]",1506.74,{},220269,1,Europe +2024-07-17,31099,7881,"[""Monitor""]",3364.63,{},6655,0,Europe +2023-01-22,31100,4017,"[""Charger""]",2405.71,"{""loyalty"": ""20%""}",128374,0,North America +2024-06-01,31101,9085,"[""Charger"", ""Headphones"", ""Keyboard""]",1834.76,{},226007,0,Europe +2024-12-16,31102,3991,"[""Monitor""]",217.14,"{"""": ""13%""}",280312,1,North America +2023-09-18,31103,5388,"[""Wireless Mouse""]",643.26,"{"""": ""13%""}",11114,1,South America +2023-12-09,31104,7409,"[""Laptop""]",2807.58,{},159177,0,Europe +2024-07-20,31105,9992,"[""Headphones"", ""Tablet""]",2725.98,"{""promo"": ""22%""}",131691,0,South America +2023-12-04,31106,4069,"[""Tablet""]",1729.69,"{""seasonal"": ""22%""}",189911,0,Europe +2024-05-09,31107,6989,"[""Monitor"", ""Headphones""]",4742.18,{},278579,0,South America +2023-10-19,31108,3286,"[""Monitor"", ""Keyboard"", ""Tablet""]",4053.63,"{""promo"": ""11%""}",151099,0,North America +2023-11-08,31109,6871,"[""Headphones""]",1873.7,"{"""": ""18%""}",57182,0,North America +2024-03-29,31110,9251,"[""Wireless Mouse"", ""Monitor""]",1432.25,"{"""": ""7%""}",133663,1,Asia +2023-01-18,31111,5883,"[""Tablet"", ""Phone"", ""Headphones""]",1920.89,"{""promo"": ""18%""}",121553,1,Asia +2024-07-22,31112,7101,"[""Charger"", ""Headphones"", ""Phone""]",4091.15,{},235025,0,South America +2023-03-22,31113,5666,"[""Monitor""]",2071.14,"{""promo"": ""19%""}",34114,0,North America +2023-06-26,31114,5290,"[""Phone""]",1069.5,{},144770,1,Africa +2024-12-21,31115,2469,"[""Keyboard"", ""Laptop""]",4135.86,"{""loyalty"": ""25%""}",136004,0,Africa +2024-05-21,31116,684,"[""Phone"", ""Headphones"", ""Tablet""]",2184.59,{},35212,1,South America +2024-05-26,31117,2628,"[""Keyboard"", ""Tablet""]",2859.94,{},65344,1,South America +2023-10-31,31118,1819,"[""Keyboard""]",4681.4,"{""loyalty"": ""5%""}",217615,0,Europe +2024-01-02,31119,6557,"[""Wireless Mouse"", ""Headphones""]",58.69,{},238239,1,Europe +2024-12-30,31120,960,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2269.01,"{""seasonal"": ""11%""}",273248,0,North America +2023-07-10,31121,974,"[""Charger"", ""Phone""]",4437.11,{},155924,0,North America +2023-07-20,31122,2620,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1526.63,"{""seasonal"": ""9%""}",285225,1,Asia +2023-06-06,31123,6687,"[""Keyboard"", ""Monitor""]",1062.88,{},31632,1,Africa +2024-01-22,31124,5749,"[""Laptop"", ""Charger"", ""Headphones""]",497.47,"{"""": ""14%""}",172088,0,South America +2024-08-16,31125,1095,"[""Headphones"", ""Monitor""]",298.82,"{""loyalty"": ""9%""}",38785,1,South America +2024-06-23,31126,4280,"[""Phone""]",4355.4,"{""seasonal"": ""21%""}",8098,1,Europe +2023-10-17,31127,3196,"[""Tablet""]",1129.22,"{""loyalty"": ""29%""}",107077,1,Africa +2023-09-24,31128,7031,"[""Charger"", ""Laptop""]",1520.96,{},64628,1,Africa +2023-08-09,31129,2823,"[""Tablet""]",218.1,{},213160,0,Africa +2024-04-24,31130,254,"[""Headphones""]",4087.68,"{""loyalty"": ""7%""}",40567,0,North America +2024-02-18,31131,8433,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2891.37,{},71924,0,Africa +2023-01-13,31132,7712,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4411.47,{},117858,1,North America +2023-09-21,31133,8619,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4708.09,{},103843,1,South America +2024-09-27,31134,1548,"[""Tablet"", ""Monitor""]",699.25,{},46133,0,North America +2023-01-06,31135,8146,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4223.14,{},217100,1,Europe +2023-12-20,31136,627,"[""Laptop""]",4379.86,"{"""": ""25%""}",211683,0,North America +2023-03-26,31137,6692,"[""Charger""]",890.78,"{""loyalty"": ""25%""}",39267,1,South America +2023-07-26,31138,1354,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3475.79,{},51878,1,Africa +2024-12-25,31139,6296,"[""Tablet"", ""Headphones""]",3268.69,"{""seasonal"": ""14%""}",142603,0,South America +2023-01-14,31140,1590,"[""Laptop"", ""Keyboard""]",2383.87,"{""loyalty"": ""15%""}",201133,1,South America +2023-09-06,31141,9063,"[""Laptop""]",3957.16,"{"""": ""12%""}",276752,0,North America +2023-03-08,31142,1259,"[""Laptop"", ""Phone"", ""Charger""]",575.02,"{""seasonal"": ""23%""}",178323,1,Africa +2023-10-27,31143,3684,"[""Monitor"", ""Phone""]",1049.46,"{""seasonal"": ""30%""}",195045,0,South America +2024-10-16,31144,1089,"[""Keyboard"", ""Monitor"", ""Tablet""]",3393.77,{},204961,0,North America +2023-02-14,31145,2127,"[""Wireless Mouse"", ""Keyboard""]",4649.64,"{"""": ""28%""}",132750,1,Asia +2023-07-08,31146,4847,"[""Keyboard"", ""Headphones""]",844.86,"{""seasonal"": ""26%""}",197704,1,Africa +2024-04-06,31147,3461,"[""Laptop"", ""Monitor""]",3860.13,"{""promo"": ""14%""}",236064,1,Asia +2024-09-26,31148,1119,"[""Laptop""]",752.59,{},165495,1,North America +2023-02-26,31149,9651,"[""Headphones""]",66.55,{},155330,1,South America +2023-04-17,31150,9162,"[""Phone""]",147.47,"{""loyalty"": ""12%""}",298470,1,Asia +2024-01-31,31151,711,"[""Laptop""]",304.77,"{"""": ""27%""}",277442,0,North America +2023-01-14,31152,7508,"[""Headphones"", ""Monitor"", ""Phone""]",2309.81,{},205963,1,Europe +2024-12-31,31153,8658,"[""Keyboard""]",59.75,"{""loyalty"": ""21%""}",260538,0,Africa +2023-12-05,31154,7582,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3835.6,{},105034,1,Asia +2023-11-04,31155,6377,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4514.21,{},91316,1,North America +2024-08-19,31156,2541,"[""Keyboard"", ""Headphones"", ""Laptop""]",4317.56,"{"""": ""5%""}",159604,0,Asia +2024-07-07,31157,1456,"[""Charger""]",1852.55,"{""promo"": ""18%""}",31487,0,North America +2024-09-19,31158,954,"[""Wireless Mouse""]",1716.0,{},69800,0,Africa +2024-02-17,31159,5707,"[""Tablet"", ""Charger"", ""Headphones""]",1794.7,"{"""": ""29%""}",13042,1,Africa +2024-01-02,31160,2481,"[""Laptop""]",3484.31,{},233835,0,Africa +2024-09-05,31161,8578,"[""Tablet"", ""Monitor""]",2069.25,"{"""": ""23%""}",120374,1,North America +2023-09-19,31162,7940,"[""Tablet""]",3567.04,{},288067,1,Europe +2023-08-19,31163,7375,"[""Wireless Mouse"", ""Monitor""]",3552.65,"{""loyalty"": ""21%""}",80853,0,Africa +2023-03-25,31164,6795,"[""Phone"", ""Keyboard""]",367.37,"{""loyalty"": ""21%""}",54118,1,Africa +2024-12-25,31165,3227,"[""Charger"", ""Laptop"", ""Monitor""]",1402.78,"{""loyalty"": ""26%""}",156846,1,North America +2023-06-08,31166,3418,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2407.67,{},267127,1,North America +2024-11-13,31167,505,"[""Keyboard"", ""Headphones"", ""Monitor""]",2305.31,{},136249,0,South America +2023-04-01,31168,8114,"[""Monitor"", ""Phone""]",4905.24,{},242946,0,Europe +2023-02-27,31169,6552,"[""Monitor""]",888.1,"{""promo"": ""21%""}",98858,1,Europe +2023-10-31,31170,1386,"[""Headphones"", ""Keyboard"", ""Tablet""]",4674.95,"{""loyalty"": ""5%""}",64201,1,Europe +2023-09-24,31171,9504,"[""Laptop"", ""Wireless Mouse""]",2213.64,{},159039,0,South America +2024-06-05,31172,2898,"[""Phone"", ""Tablet"", ""Monitor""]",3458.95,"{""loyalty"": ""28%""}",140006,0,Africa +2024-01-27,31173,8852,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4452.31,{},270295,0,Europe +2023-01-22,31174,7570,"[""Headphones"", ""Tablet""]",2997.43,"{""loyalty"": ""19%""}",93843,0,Asia +2024-04-28,31175,2049,"[""Laptop"", ""Keyboard""]",4781.23,{},220667,1,North America +2023-04-08,31176,5760,"[""Monitor"", ""Headphones"", ""Charger""]",3879.84,"{""loyalty"": ""13%""}",132268,1,North America +2024-07-12,31177,7502,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",163.98,"{"""": ""24%""}",274343,0,Europe +2023-11-11,31178,6620,"[""Phone""]",4803.27,"{""loyalty"": ""11%""}",202616,1,Asia +2023-02-17,31179,1004,"[""Charger""]",4713.63,"{"""": ""11%""}",49352,0,Asia +2023-08-17,31180,5943,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2033.13,"{""seasonal"": ""25%""}",13748,0,North America +2023-12-23,31181,752,"[""Keyboard""]",1192.76,{},74578,1,South America +2023-05-07,31182,9026,"[""Wireless Mouse"", ""Monitor""]",4704.73,{},162177,1,Europe +2024-01-28,31183,7720,"[""Monitor""]",3252.09,"{""seasonal"": ""13%""}",221123,0,Europe +2024-12-16,31184,1067,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1733.48,{},113340,0,Africa +2023-02-19,31185,9949,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4274.02,"{"""": ""6%""}",75716,0,North America +2023-06-05,31186,5017,"[""Headphones"", ""Charger""]",4367.66,{},249839,1,South America +2023-05-13,31187,4065,"[""Phone""]",4471.06,"{""seasonal"": ""5%""}",78963,0,Asia +2023-11-01,31188,3779,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",157.18,"{""loyalty"": ""17%""}",12185,0,South America +2024-03-22,31189,3304,"[""Headphones"", ""Tablet""]",3728.18,{},232178,0,Asia +2023-07-06,31190,6708,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3607.82,"{""loyalty"": ""25%""}",160261,1,Europe +2024-06-03,31191,8146,"[""Phone""]",4934.0,"{""promo"": ""9%""}",51582,0,North America +2024-06-13,31192,6256,"[""Headphones"", ""Phone""]",4057.52,"{""promo"": ""26%""}",187430,0,South America +2024-07-05,31193,4683,"[""Headphones"", ""Keyboard""]",4784.2,"{""seasonal"": ""17%""}",73124,0,North America +2024-06-04,31194,9016,"[""Phone""]",4803.72,"{""promo"": ""24%""}",169435,1,Asia +2023-05-28,31195,7648,"[""Keyboard"", ""Laptop"", ""Charger""]",3480.56,{},245507,0,Asia +2023-08-04,31196,5260,"[""Charger"", ""Tablet""]",98.49,"{"""": ""10%""}",295253,0,Asia +2023-02-06,31197,7448,"[""Phone"", ""Keyboard""]",2491.69,"{"""": ""6%""}",183119,0,Asia +2024-08-07,31198,2365,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",348.43,{},211173,1,Africa +2023-07-10,31199,8502,"[""Laptop""]",268.99,{},106756,0,North America +2024-05-01,31200,7755,"[""Keyboard""]",3226.17,{},139347,1,Europe +2023-01-28,31201,6464,"[""Tablet"", ""Headphones""]",3247.39,{},136406,1,Europe +2024-06-10,31202,1483,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3762.5,"{"""": ""20%""}",14628,1,Africa +2024-01-19,31203,8023,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",769.88,{},111675,0,South America +2024-04-23,31204,6127,"[""Keyboard"", ""Laptop"", ""Charger""]",2650.31,{},97457,0,South America +2023-11-11,31205,3708,"[""Tablet"", ""Monitor""]",3557.15,{},205907,0,North America +2023-03-06,31206,5558,"[""Keyboard""]",2515.6,{},290295,1,South America +2024-07-31,31207,7392,"[""Wireless Mouse"", ""Keyboard""]",4828.07,{},228512,0,South America +2024-09-15,31208,8420,"[""Laptop"", ""Keyboard""]",4656.32,"{""promo"": ""12%""}",138972,1,South America +2024-12-24,31209,1739,"[""Charger"", ""Keyboard""]",2390.69,"{"""": ""15%""}",270136,1,Asia +2023-10-16,31210,4054,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1834.62,{},172302,0,Asia +2023-10-20,31211,489,"[""Monitor""]",1626.96,{},124322,1,South America +2023-06-05,31212,3203,"[""Laptop""]",2334.04,{},210504,1,South America +2023-12-14,31213,3521,"[""Laptop"", ""Monitor"", ""Tablet""]",4607.13,{},227578,0,Asia +2023-10-19,31214,3346,"[""Headphones"", ""Keyboard""]",2862.54,{},219414,1,Africa +2024-10-01,31215,9043,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2166.61,{},12574,0,Europe +2023-06-23,31216,3317,"[""Monitor"", ""Headphones"", ""Phone""]",1340.18,"{""promo"": ""26%""}",82042,0,North America +2023-06-20,31217,8438,"[""Keyboard""]",4966.04,{},142647,1,South America +2023-03-09,31218,9159,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3347.16,"{""seasonal"": ""8%""}",48621,1,Africa +2024-07-08,31219,9173,"[""Wireless Mouse"", ""Laptop""]",405.29,{},26998,0,Africa +2024-12-10,31220,1600,"[""Monitor"", ""Charger""]",1847.9,"{""loyalty"": ""29%""}",76914,0,Africa +2024-09-20,31221,8817,"[""Headphones"", ""Keyboard"", ""Charger""]",1566.5,{},43542,0,Asia +2023-02-14,31222,8033,"[""Phone"", ""Wireless Mouse""]",3579.26,"{""seasonal"": ""10%""}",11858,1,Europe +2023-08-05,31223,7702,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4651.0,"{""seasonal"": ""22%""}",211877,1,Asia +2024-03-20,31224,7809,"[""Tablet"", ""Laptop"", ""Monitor""]",1824.93,{},261463,1,North America +2023-03-06,31225,7347,"[""Charger"", ""Headphones""]",1826.12,"{""loyalty"": ""20%""}",59235,1,Asia +2023-05-30,31226,3059,"[""Tablet"", ""Laptop"", ""Phone""]",2288.64,{},22117,0,Asia +2024-01-08,31227,4699,"[""Wireless Mouse"", ""Tablet""]",1858.75,"{""seasonal"": ""28%""}",67268,1,South America +2024-05-15,31228,133,"[""Charger"", ""Laptop""]",1648.39,{},58224,1,Asia +2024-12-24,31229,6020,"[""Monitor""]",2306.35,"{""promo"": ""5%""}",252336,0,North America +2024-07-17,31230,5397,"[""Headphones"", ""Charger"", ""Phone""]",1768.03,"{"""": ""30%""}",139625,1,South America +2024-07-09,31231,8045,"[""Charger""]",2160.8,"{""promo"": ""14%""}",117406,0,Europe +2024-10-09,31232,3334,"[""Phone"", ""Monitor"", ""Tablet""]",4154.31,"{""promo"": ""27%""}",100519,0,Europe +2023-01-20,31233,2211,"[""Keyboard""]",3525.98,"{""promo"": ""6%""}",88670,0,North America +2023-05-14,31234,4787,"[""Tablet"", ""Wireless Mouse""]",1969.57,{},286689,0,Asia +2023-01-16,31235,2701,"[""Laptop"", ""Wireless Mouse""]",2534.66,"{""seasonal"": ""30%""}",210336,0,Africa +2023-03-12,31236,729,"[""Monitor"", ""Keyboard""]",3713.78,"{""seasonal"": ""27%""}",64969,1,North America +2024-05-22,31237,3452,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",183.32,"{""seasonal"": ""8%""}",94735,1,North America +2024-07-03,31238,284,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1519.42,"{""loyalty"": ""20%""}",186383,1,North America +2023-06-26,31239,4861,"[""Laptop"", ""Monitor""]",1749.55,{},111526,0,Europe +2024-08-24,31240,576,"[""Laptop"", ""Tablet""]",4475.63,{},27016,0,Europe +2023-08-17,31241,1978,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1882.48,"{""loyalty"": ""27%""}",78680,1,South America +2023-08-10,31242,48,"[""Laptop"", ""Monitor"", ""Keyboard""]",3464.45,"{"""": ""8%""}",81833,1,Europe +2024-02-11,31243,4147,"[""Tablet""]",3156.4,"{""promo"": ""27%""}",81957,0,Europe +2023-01-10,31244,5124,"[""Charger""]",4979.22,"{"""": ""15%""}",193930,0,North America +2023-10-07,31245,8441,"[""Headphones""]",3419.2,{},289084,0,Africa +2024-05-19,31246,8376,"[""Phone"", ""Keyboard""]",3861.29,{},111304,0,Asia +2023-09-25,31247,4088,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1102.5,"{""promo"": ""26%""}",77241,0,South America +2023-01-11,31248,7053,"[""Keyboard"", ""Phone""]",4909.6,{},102376,1,South America +2024-12-25,31249,2575,"[""Headphones""]",2194.6,{},138684,0,Asia +2024-11-30,31250,8737,"[""Charger"", ""Headphones"", ""Phone""]",4725.65,"{"""": ""17%""}",32060,0,Asia +2023-08-12,31251,7463,"[""Monitor""]",4067.18,{},12054,1,North America +2023-07-26,31252,6253,"[""Keyboard"", ""Monitor"", ""Laptop""]",3812.39,{},7477,0,Asia +2024-07-09,31253,3324,"[""Tablet""]",3830.64,"{""promo"": ""14%""}",138335,1,North America +2023-05-14,31254,7361,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1951.44,"{""promo"": ""15%""}",250917,1,Asia +2024-08-25,31255,1794,"[""Phone"", ""Keyboard""]",990.58,"{""promo"": ""11%""}",4190,0,South America +2024-09-08,31256,4183,"[""Phone""]",2341.7,"{""loyalty"": ""19%""}",32742,1,Asia +2024-08-18,31257,3173,"[""Wireless Mouse""]",3453.43,"{"""": ""29%""}",209547,1,South America +2023-08-10,31258,9833,"[""Headphones"", ""Charger""]",1651.88,"{""promo"": ""18%""}",230639,1,South America +2024-06-02,31259,258,"[""Laptop""]",969.12,{},246540,1,Asia +2024-02-13,31260,8189,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1419.79,"{"""": ""6%""}",46933,1,Asia +2024-06-13,31261,3907,"[""Laptop""]",4623.1,"{""seasonal"": ""22%""}",258423,0,South America +2024-08-06,31262,453,"[""Monitor"", ""Headphones"", ""Tablet""]",1974.59,{},279778,0,North America +2023-08-02,31263,7491,"[""Tablet""]",2448.29,"{"""": ""6%""}",128201,1,South America +2023-08-20,31264,2889,"[""Charger""]",2392.1,"{"""": ""5%""}",46118,1,North America +2023-03-10,31265,8154,"[""Tablet"", ""Monitor""]",2295.25,{},105924,1,Africa +2023-11-05,31266,7622,"[""Charger""]",396.62,"{""loyalty"": ""23%""}",110078,1,Asia +2024-09-25,31267,2688,"[""Keyboard"", ""Tablet"", ""Headphones""]",595.11,"{"""": ""25%""}",183639,0,South America +2024-02-16,31268,8219,"[""Laptop""]",4109.6,"{"""": ""24%""}",5262,0,North America +2023-01-27,31269,8342,"[""Wireless Mouse"", ""Laptop""]",1044.28,"{""seasonal"": ""23%""}",114082,1,Africa +2023-11-09,31270,3588,"[""Headphones"", ""Tablet""]",2118.08,"{""promo"": ""20%""}",58073,1,Europe +2024-11-22,31271,3734,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3107.57,{},38979,1,North America +2023-02-02,31272,4463,"[""Charger""]",2337.29,"{""loyalty"": ""26%""}",108431,1,Europe +2023-06-04,31273,8829,"[""Wireless Mouse"", ""Tablet""]",785.54,{},198476,0,Europe +2024-01-05,31274,6138,"[""Headphones"", ""Monitor""]",569.79,{},204677,1,Africa +2024-01-26,31275,1302,"[""Keyboard""]",2679.86,"{""loyalty"": ""29%""}",239703,1,Asia +2024-04-04,31276,1516,"[""Charger"", ""Monitor""]",2253.09,"{""seasonal"": ""21%""}",179044,1,Africa +2023-11-11,31277,7610,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3078.13,"{""seasonal"": ""6%""}",284731,0,Africa +2024-03-06,31278,849,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1760.67,{},154814,0,Europe +2023-05-20,31279,7346,"[""Keyboard"", ""Phone""]",4142.36,"{""loyalty"": ""12%""}",150633,1,South America +2023-06-01,31280,9066,"[""Tablet"", ""Charger""]",2017.46,{},254846,1,North America +2023-02-02,31281,3163,"[""Wireless Mouse""]",3847.64,{},180595,0,North America +2024-08-10,31282,7075,"[""Charger""]",501.28,{},223547,0,Asia +2024-12-16,31283,4370,"[""Monitor"", ""Headphones"", ""Phone""]",1609.26,"{"""": ""25%""}",164165,0,Africa +2023-11-06,31284,5374,"[""Phone"", ""Monitor""]",2438.05,{},35504,0,Africa +2023-02-03,31285,8210,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3959.17,{},83500,0,South America +2023-06-13,31286,3349,"[""Charger"", ""Keyboard"", ""Phone""]",368.54,{},138901,0,South America +2023-02-01,31287,3677,"[""Charger"", ""Tablet"", ""Laptop""]",1367.7,"{"""": ""11%""}",280114,0,North America +2024-08-15,31288,3196,"[""Phone"", ""Tablet""]",2578.13,"{""seasonal"": ""14%""}",184722,1,Asia +2023-07-09,31289,6652,"[""Laptop"", ""Phone""]",4848.75,{},297575,1,Asia +2023-01-22,31290,5390,"[""Phone"", ""Keyboard""]",2450.47,"{"""": ""14%""}",212268,1,South America +2024-08-04,31291,9067,"[""Headphones""]",4769.32,{},3914,1,Europe +2023-11-27,31292,7820,"[""Keyboard""]",214.13,"{""loyalty"": ""13%""}",181837,1,Europe +2024-09-20,31293,2857,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1762.52,{},38702,1,Asia +2023-01-09,31294,6661,"[""Wireless Mouse""]",2594.19,"{"""": ""12%""}",169375,1,South America +2024-09-05,31295,3103,"[""Wireless Mouse"", ""Monitor""]",999.64,"{""loyalty"": ""29%""}",250068,0,Asia +2023-01-01,31296,5233,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",620.02,"{""promo"": ""10%""}",91805,1,Asia +2024-04-16,31297,130,"[""Headphones"", ""Phone"", ""Keyboard""]",3384.26,"{"""": ""20%""}",26078,1,South America +2023-07-01,31298,9232,"[""Laptop"", ""Charger"", ""Monitor""]",4443.7,"{""seasonal"": ""30%""}",35466,0,Europe +2023-12-16,31299,5801,"[""Tablet"", ""Phone"", ""Laptop""]",1959.49,"{""seasonal"": ""20%""}",292866,1,Europe +2024-04-05,31300,7950,"[""Charger"", ""Laptop"", ""Phone""]",3429.09,"{""promo"": ""14%""}",173041,0,Africa +2023-06-14,31301,9035,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4510.51,"{""loyalty"": ""15%""}",243206,1,North America +2023-12-27,31302,1516,"[""Laptop"", ""Keyboard""]",758.88,{},178715,1,North America +2023-01-04,31303,9439,"[""Tablet""]",1227.79,"{""promo"": ""13%""}",25566,1,North America +2023-10-04,31304,229,"[""Keyboard"", ""Phone""]",1938.6,{},234042,1,Europe +2023-04-24,31305,3896,"[""Monitor""]",2253.09,"{""promo"": ""13%""}",214534,0,Europe +2023-04-22,31306,5705,"[""Keyboard"", ""Headphones"", ""Laptop""]",639.33,"{""seasonal"": ""11%""}",214211,1,Asia +2023-08-03,31307,347,"[""Laptop""]",2704.06,{},274106,0,Asia +2023-04-30,31308,3537,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",643.64,"{"""": ""20%""}",180278,0,North America +2024-02-08,31309,5647,"[""Tablet""]",1987.28,{},270926,0,Africa +2024-07-25,31310,5774,"[""Keyboard"", ""Laptop""]",3701.99,{},11536,1,Europe +2024-02-24,31311,6148,"[""Laptop"", ""Monitor""]",1649.96,{},197794,1,Europe +2023-03-23,31312,785,"[""Charger"", ""Phone""]",1220.62,{},210116,0,North America +2024-07-20,31313,6021,"[""Laptop"", ""Phone"", ""Keyboard""]",1584.41,"{""loyalty"": ""24%""}",159697,0,Europe +2024-10-20,31314,3506,"[""Charger""]",433.78,{},56674,1,South America +2023-09-06,31315,8786,"[""Wireless Mouse"", ""Keyboard""]",3352.56,"{""promo"": ""11%""}",96829,0,Africa +2023-08-28,31316,3852,"[""Keyboard""]",3423.45,"{""loyalty"": ""20%""}",125148,0,Asia +2024-10-19,31317,2843,"[""Laptop"", ""Headphones"", ""Tablet""]",672.43,"{""promo"": ""24%""}",164166,1,Europe +2023-04-19,31318,564,"[""Charger"", ""Monitor"", ""Laptop""]",3927.93,"{""promo"": ""7%""}",181715,0,Europe +2024-04-27,31319,9424,"[""Wireless Mouse"", ""Phone""]",2923.27,"{"""": ""7%""}",91350,1,North America +2023-06-20,31320,1743,"[""Wireless Mouse""]",4255.82,"{""promo"": ""17%""}",13363,1,South America +2023-08-16,31321,7300,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3656.9,"{""seasonal"": ""13%""}",231999,0,Africa +2023-02-17,31322,7482,"[""Wireless Mouse"", ""Headphones""]",3368.2,"{""loyalty"": ""21%""}",18885,1,North America +2023-09-07,31323,9360,"[""Keyboard"", ""Tablet"", ""Charger""]",3235.85,"{""loyalty"": ""29%""}",49428,0,Africa +2023-02-04,31324,5539,"[""Charger"", ""Laptop""]",1159.3,{},267211,0,North America +2023-04-24,31325,5760,"[""Charger"", ""Headphones""]",3871.11,{},151464,1,Europe +2024-01-28,31326,5635,"[""Monitor"", ""Keyboard""]",2243.58,{},4300,1,Europe +2024-04-18,31327,1847,"[""Phone"", ""Monitor""]",4157.46,{},176162,0,North America +2023-09-06,31328,2177,"[""Laptop""]",3630.16,{},143704,0,Asia +2023-01-10,31329,7928,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1922.96,"{""loyalty"": ""13%""}",265312,1,North America +2023-07-06,31330,1686,"[""Tablet""]",2986.43,"{""seasonal"": ""13%""}",24720,0,Africa +2024-06-27,31331,9619,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",757.36,{},227595,0,Africa +2024-04-17,31332,2014,"[""Monitor""]",2518.33,"{""seasonal"": ""6%""}",61114,0,Asia +2023-05-10,31333,730,"[""Wireless Mouse"", ""Tablet""]",4151.89,{},91663,0,South America +2023-06-23,31334,4465,"[""Charger"", ""Monitor"", ""Headphones""]",993.79,"{"""": ""21%""}",189046,0,Africa +2023-08-06,31335,6665,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3565.29,{},15418,0,South America +2023-10-11,31336,727,"[""Phone""]",3883.03,{},243197,0,South America +2023-01-12,31337,7542,"[""Charger"", ""Headphones"", ""Monitor""]",668.77,{},175670,0,Europe +2023-08-10,31338,8707,"[""Laptop"", ""Phone"", ""Headphones""]",464.78,"{""loyalty"": ""22%""}",80902,0,Africa +2023-03-15,31339,849,"[""Charger""]",4059.31,"{"""": ""22%""}",217601,1,Africa +2023-06-30,31340,2815,"[""Wireless Mouse""]",4068.67,"{""seasonal"": ""16%""}",297126,1,Europe +2024-10-28,31341,7368,"[""Charger"", ""Tablet"", ""Keyboard""]",1656.6,"{""loyalty"": ""15%""}",156447,0,Europe +2024-08-24,31342,722,"[""Tablet"", ""Headphones""]",3049.06,{},197287,1,Africa +2023-10-25,31343,7566,"[""Wireless Mouse"", ""Tablet""]",2829.51,"{""seasonal"": ""18%""}",207993,1,Europe +2024-07-23,31344,4398,"[""Wireless Mouse"", ""Laptop""]",4121.57,"{""loyalty"": ""16%""}",247398,1,Africa +2024-06-02,31345,796,"[""Keyboard""]",3560.72,{},229220,0,North America +2023-03-10,31346,408,"[""Monitor"", ""Keyboard"", ""Tablet""]",1948.41,{},179227,1,Asia +2023-07-27,31347,322,"[""Monitor""]",2944.08,"{""promo"": ""8%""}",99202,1,Europe +2024-03-12,31348,8101,"[""Tablet"", ""Wireless Mouse""]",4948.12,{},177358,1,Europe +2024-12-24,31349,7720,"[""Tablet"", ""Keyboard""]",1466.84,"{"""": ""17%""}",202243,1,Asia +2023-12-08,31350,7261,"[""Monitor"", ""Keyboard"", ""Laptop""]",3769.4,{},215778,1,Europe +2023-02-27,31351,2688,"[""Tablet"", ""Headphones""]",426.36,"{""loyalty"": ""7%""}",281211,0,South America +2024-10-11,31352,6905,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2219.61,{},74906,1,Asia +2023-03-20,31353,474,"[""Laptop""]",1111.26,{},66687,1,South America +2023-10-15,31354,63,"[""Wireless Mouse""]",2841.61,"{""loyalty"": ""29%""}",252777,0,South America +2023-11-14,31355,7579,"[""Monitor""]",3459.09,"{""promo"": ""13%""}",211744,1,Africa +2024-01-19,31356,3734,"[""Charger"", ""Phone""]",808.11,{},84556,1,North America +2024-01-29,31357,9452,"[""Headphones"", ""Tablet""]",721.54,{},88969,0,South America +2024-01-13,31358,8973,"[""Laptop"", ""Phone""]",958.7,"{""seasonal"": ""15%""}",257884,0,Europe +2023-04-27,31359,3476,"[""Monitor"", ""Tablet"", ""Headphones""]",545.64,"{""loyalty"": ""10%""}",48964,1,South America +2023-06-19,31360,1200,"[""Monitor""]",4823.91,{},47982,0,Europe +2024-01-06,31361,732,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",534.49,"{"""": ""16%""}",273236,1,Europe +2023-07-18,31362,719,"[""Monitor"", ""Phone""]",271.7,{},126984,0,South America +2024-12-09,31363,7321,"[""Wireless Mouse"", ""Headphones""]",339.57,"{""loyalty"": ""5%""}",90685,1,Africa +2024-10-03,31364,9217,"[""Headphones""]",1448.93,"{""promo"": ""9%""}",16111,0,South America +2024-05-31,31365,4810,"[""Tablet""]",3695.66,"{""seasonal"": ""14%""}",129551,1,South America +2024-01-04,31366,3697,"[""Laptop"", ""Wireless Mouse""]",2781.43,"{""seasonal"": ""12%""}",37759,1,Europe +2024-02-19,31367,46,"[""Headphones"", ""Tablet""]",4685.64,"{""seasonal"": ""13%""}",105214,1,Europe +2024-08-28,31368,2872,"[""Phone""]",4104.22,"{"""": ""16%""}",5950,1,Africa +2024-12-24,31369,2296,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",678.77,"{""seasonal"": ""28%""}",60043,0,Africa +2024-07-30,31370,4894,"[""Phone"", ""Keyboard"", ""Monitor""]",4382.71,{},278084,0,South America +2023-07-07,31371,5846,"[""Headphones""]",1468.79,{},294969,0,South America +2024-09-14,31372,9864,"[""Monitor""]",300.03,{},247653,1,Asia +2023-06-04,31373,5797,"[""Tablet"", ""Headphones"", ""Charger""]",2398.84,"{""loyalty"": ""15%""}",61666,0,Europe +2024-03-21,31374,9912,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",59.34,{},283955,0,North America +2023-06-16,31375,146,"[""Headphones"", ""Phone""]",717.89,"{""promo"": ""13%""}",80026,0,South America +2024-03-26,31376,3729,"[""Headphones""]",4257.07,{},143083,0,Asia +2024-01-29,31377,1829,"[""Tablet"", ""Headphones""]",2147.53,{},283833,1,North America +2024-11-19,31378,3366,"[""Wireless Mouse""]",4092.01,"{""promo"": ""18%""}",33638,1,South America +2024-10-28,31379,1251,"[""Laptop"", ""Wireless Mouse""]",4314.5,"{""promo"": ""9%""}",234531,0,South America +2024-05-11,31380,9135,"[""Tablet"", ""Wireless Mouse""]",3724.77,{},199400,1,South America +2023-01-01,31381,432,"[""Laptop"", ""Charger""]",179.34,{},29509,0,Europe +2023-04-11,31382,2319,"[""Wireless Mouse"", ""Keyboard""]",3029.33,{},87929,1,Africa +2023-07-21,31383,4087,"[""Headphones"", ""Tablet""]",3396.18,"{""promo"": ""18%""}",231364,0,Africa +2024-01-06,31384,6381,"[""Wireless Mouse""]",450.56,{},133950,0,South America +2024-12-09,31385,417,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3999.51,{},182548,1,Asia +2023-12-29,31386,8291,"[""Laptop""]",898.51,{},208717,0,South America +2023-03-20,31387,8451,"[""Phone"", ""Headphones""]",4673.76,"{""promo"": ""19%""}",65866,0,Asia +2023-05-23,31388,5807,"[""Headphones"", ""Laptop""]",1667.03,"{""promo"": ""23%""}",19693,0,South America +2024-05-03,31389,7223,"[""Keyboard"", ""Monitor"", ""Laptop""]",514.77,{},5398,0,Africa +2023-03-25,31390,7627,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1659.12,{},243493,0,South America +2023-08-20,31391,4893,"[""Charger""]",2667.31,"{""promo"": ""5%""}",234895,0,North America +2023-10-30,31392,4684,"[""Tablet"", ""Monitor""]",3176.58,{},214391,0,Asia +2024-08-02,31393,5831,"[""Monitor""]",4456.92,{},256736,1,North America +2024-09-17,31394,1010,"[""Wireless Mouse""]",465.38,"{"""": ""17%""}",275645,0,Africa +2023-06-06,31395,1848,"[""Charger"", ""Wireless Mouse""]",4373.28,"{""loyalty"": ""20%""}",212247,1,Asia +2024-01-10,31396,4935,"[""Headphones"", ""Tablet"", ""Charger""]",1302.2,"{""loyalty"": ""27%""}",86499,0,Asia +2024-12-09,31397,594,"[""Phone"", ""Tablet"", ""Monitor""]",2243.94,"{""promo"": ""23%""}",269273,0,Europe +2024-05-31,31398,693,"[""Wireless Mouse"", ""Phone""]",2819.82,{},5983,0,Africa +2023-07-06,31399,8906,"[""Keyboard""]",3367.55,{},119066,1,North America +2023-11-11,31400,2172,"[""Tablet"", ""Laptop""]",2684.92,"{""promo"": ""8%""}",176360,0,South America +2024-11-28,31401,4252,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4268.36,"{"""": ""28%""}",198091,0,Asia +2024-08-07,31402,4155,"[""Charger"", ""Headphones"", ""Keyboard""]",964.7,{},96336,1,Africa +2024-05-30,31403,2325,"[""Phone"", ""Headphones""]",115.53,"{""promo"": ""23%""}",286339,1,Africa +2023-12-24,31404,8711,"[""Phone"", ""Tablet"", ""Headphones""]",4905.7,{},68613,0,South America +2024-12-08,31405,2954,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2370.67,"{"""": ""21%""}",81064,1,North America +2024-07-24,31406,7894,"[""Wireless Mouse""]",4559.43,"{""seasonal"": ""23%""}",253780,1,Europe +2023-05-04,31407,2459,"[""Keyboard"", ""Monitor"", ""Headphones""]",508.76,"{""seasonal"": ""17%""}",8332,0,North America +2023-10-28,31408,984,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2222.91,"{"""": ""27%""}",78112,1,South America +2023-09-25,31409,8051,"[""Tablet"", ""Headphones"", ""Monitor""]",2660.26,"{"""": ""8%""}",197359,0,South America +2023-05-16,31410,1648,"[""Monitor""]",350.46,{},296247,0,Asia +2023-05-20,31411,3831,"[""Keyboard"", ""Tablet""]",517.38,{},144829,0,North America +2024-06-01,31412,7257,"[""Charger"", ""Headphones""]",1684.5,{},215202,0,Asia +2023-02-03,31413,6685,"[""Headphones"", ""Charger""]",906.51,"{""promo"": ""13%""}",105115,1,South America +2024-02-22,31414,8166,"[""Headphones""]",4653.76,"{""promo"": ""9%""}",266693,0,North America +2023-06-08,31415,6971,"[""Laptop""]",499.8,"{"""": ""12%""}",251727,0,North America +2024-06-25,31416,929,"[""Tablet""]",4475.56,"{""seasonal"": ""11%""}",155807,1,Europe +2024-05-02,31417,2015,"[""Keyboard"", ""Charger"", ""Tablet""]",3888.6,{},168515,1,Africa +2024-10-22,31418,863,"[""Tablet""]",1113.18,{},71848,0,South America +2023-03-13,31419,8652,"[""Keyboard"", ""Charger""]",1294.37,{},121392,0,North America +2024-02-05,31420,9892,"[""Headphones"", ""Keyboard""]",1657.06,{},201077,1,South America +2023-03-04,31421,4604,"[""Charger"", ""Headphones"", ""Keyboard""]",1915.26,"{""loyalty"": ""12%""}",184730,1,North America +2023-09-27,31422,7332,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2190.01,{},132511,0,Europe +2024-06-14,31423,1879,"[""Tablet""]",283.25,{},145073,0,Africa +2023-05-29,31424,5169,"[""Keyboard"", ""Monitor""]",3172.24,{},139755,0,Africa +2024-09-25,31425,9967,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1082.28,{},147161,1,North America +2023-12-30,31426,927,"[""Tablet"", ""Monitor"", ""Laptop""]",2025.85,{},94451,1,Asia +2023-05-13,31427,7800,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2275.29,"{""promo"": ""16%""}",141920,1,South America +2024-11-28,31428,8094,"[""Phone""]",1422.67,{},185984,0,North America +2023-03-31,31429,9831,"[""Charger"", ""Headphones"", ""Laptop""]",2002.35,"{"""": ""9%""}",231327,0,North America +2024-05-15,31430,3170,"[""Monitor"", ""Headphones"", ""Tablet""]",1937.89,"{""loyalty"": ""5%""}",11851,1,Europe +2024-03-29,31431,6922,"[""Keyboard"", ""Charger"", ""Tablet""]",4328.44,"{""seasonal"": ""14%""}",159199,0,Europe +2024-04-14,31432,6773,"[""Keyboard"", ""Tablet""]",1244.57,"{"""": ""19%""}",9297,0,North America +2023-07-08,31433,3118,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2394.3,{},153210,1,North America +2024-01-06,31434,1596,"[""Monitor"", ""Headphones""]",2979.16,{},88422,1,South America +2024-07-05,31435,6523,"[""Headphones""]",3680.36,"{""promo"": ""20%""}",64327,0,Asia +2024-05-22,31436,3828,"[""Headphones"", ""Laptop""]",1956.98,"{""loyalty"": ""20%""}",6348,1,Asia +2023-10-26,31437,1161,"[""Wireless Mouse"", ""Tablet""]",2952.95,{},129845,1,North America +2024-04-14,31438,5063,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4778.46,{},191447,1,Asia +2024-02-09,31439,7749,"[""Charger""]",3194.74,"{""loyalty"": ""23%""}",261273,1,Europe +2023-09-08,31440,1683,"[""Charger"", ""Keyboard"", ""Headphones""]",2679.34,{},278646,1,North America +2023-09-11,31441,8480,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4089.51,"{""seasonal"": ""12%""}",285739,0,South America +2024-01-27,31442,3752,"[""Phone"", ""Charger""]",96.7,{},67712,0,Africa +2023-12-12,31443,9823,"[""Phone""]",2057.86,"{""seasonal"": ""14%""}",170370,0,Asia +2024-09-20,31444,6167,"[""Laptop""]",1058.71,{},179480,1,Europe +2023-11-05,31445,1757,"[""Laptop""]",2985.44,{},55084,0,Asia +2024-02-04,31446,6264,"[""Tablet""]",813.52,{},67687,1,Africa +2024-05-19,31447,1580,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4687.99,"{""seasonal"": ""16%""}",238557,1,North America +2023-12-25,31448,5000,"[""Charger"", ""Monitor"", ""Tablet""]",2445.69,{},27009,1,Europe +2023-06-19,31449,9821,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1804.01,{},270816,0,Africa +2024-11-25,31450,3449,"[""Headphones""]",3204.99,{},137911,1,Africa +2024-06-14,31451,4442,"[""Monitor""]",3374.52,{},113535,1,Africa +2024-02-19,31452,2999,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",463.85,{},209850,0,Asia +2024-08-18,31453,5772,"[""Tablet""]",4265.66,"{""promo"": ""16%""}",100207,0,Asia +2023-08-30,31454,4650,"[""Laptop""]",1498.84,"{""promo"": ""24%""}",165087,1,Europe +2024-06-01,31455,4281,"[""Headphones"", ""Phone""]",3071.68,{},247242,1,Africa +2024-02-07,31456,8613,"[""Headphones"", ""Laptop""]",4704.79,{},269314,0,Africa +2024-06-22,31457,9575,"[""Monitor""]",4927.77,{},299578,0,South America +2024-05-01,31458,3351,"[""Monitor"", ""Laptop""]",4562.68,{},225084,0,Africa +2024-01-11,31459,9634,"[""Keyboard"", ""Monitor""]",543.12,"{""seasonal"": ""19%""}",73499,1,North America +2024-08-27,31460,7820,"[""Phone"", ""Tablet""]",4187.5,{},242712,1,North America +2023-05-15,31461,1882,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",249.05,"{""seasonal"": ""19%""}",84897,0,Europe +2024-09-09,31462,3867,"[""Laptop""]",4586.05,{},213325,0,Africa +2023-02-04,31463,8926,"[""Phone""]",4230.08,{},128065,1,Europe +2024-04-28,31464,7009,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1616.48,"{""promo"": ""18%""}",78088,0,Africa +2023-10-29,31465,6721,"[""Charger""]",764.16,{},200611,0,Europe +2023-10-08,31466,3371,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",747.64,"{""promo"": ""13%""}",279411,1,Asia +2024-11-10,31467,5465,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",986.45,"{""loyalty"": ""16%""}",145851,1,Asia +2024-09-10,31468,7225,"[""Charger"", ""Headphones""]",3883.27,{},163899,0,Europe +2023-08-15,31469,9832,"[""Headphones"", ""Keyboard""]",3973.69,{},169339,1,Asia +2024-09-05,31470,247,"[""Phone""]",3014.81,{},240018,0,North America +2024-08-30,31471,4981,"[""Charger""]",4907.15,{},4359,0,North America +2024-11-14,31472,9849,"[""Monitor"", ""Laptop""]",4977.5,{},162177,1,North America +2024-07-26,31473,5543,"[""Charger"", ""Tablet"", ""Keyboard""]",1695.1,{},95064,1,North America +2024-04-02,31474,8338,"[""Monitor"", ""Laptop"", ""Charger""]",4788.93,{},273887,0,South America +2024-09-01,31475,7688,"[""Wireless Mouse""]",632.02,{},200424,1,North America +2024-05-27,31476,9241,"[""Charger"", ""Tablet"", ""Phone""]",261.39,{},235858,0,South America +2024-11-24,31477,1241,"[""Charger""]",2302.85,{},259619,0,Asia +2024-11-12,31478,6082,"[""Laptop"", ""Headphones"", ""Tablet""]",1203.02,{},297259,1,Africa +2024-11-21,31479,8680,"[""Monitor"", ""Charger""]",4976.92,{},109522,0,North America +2024-09-12,31480,3636,"[""Charger"", ""Tablet"", ""Laptop""]",1660.56,{},127029,1,Europe +2024-10-07,31481,7654,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3819.8,"{""loyalty"": ""5%""}",73287,1,Africa +2023-10-03,31482,4292,"[""Tablet""]",539.08,"{""seasonal"": ""14%""}",273093,1,Asia +2024-02-21,31483,5350,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1845.21,"{""promo"": ""10%""}",74136,0,Europe +2023-09-10,31484,4541,"[""Keyboard"", ""Monitor"", ""Tablet""]",3125.21,"{""promo"": ""24%""}",137564,0,Africa +2024-11-06,31485,1940,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1333.45,{},8320,0,Africa +2024-11-12,31486,8721,"[""Tablet"", ""Headphones""]",1222.58,"{""promo"": ""8%""}",220051,0,North America +2023-06-01,31487,4506,"[""Tablet"", ""Phone"", ""Laptop""]",3375.77,{},198731,0,South America +2024-09-18,31488,6029,"[""Keyboard""]",4658.26,{},187582,1,South America +2024-12-25,31489,1953,"[""Tablet""]",281.55,"{""seasonal"": ""23%""}",248535,0,South America +2024-06-22,31490,1942,"[""Wireless Mouse"", ""Headphones""]",1687.88,"{"""": ""14%""}",256147,0,North America +2024-05-26,31491,2500,"[""Headphones""]",4442.82,{},171420,0,South America +2023-06-27,31492,1477,"[""Keyboard"", ""Wireless Mouse""]",4556.53,"{""promo"": ""12%""}",219146,1,South America +2024-11-27,31493,6817,"[""Tablet""]",2932.47,"{""promo"": ""10%""}",249161,0,Asia +2024-09-03,31494,5763,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4453.12,"{""seasonal"": ""29%""}",210450,1,Europe +2023-03-07,31495,6820,"[""Tablet"", ""Monitor"", ""Phone""]",2910.69,{},212155,1,Africa +2024-01-05,31496,8383,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2437.32,"{""loyalty"": ""24%""}",187587,0,Africa +2023-10-17,31497,8249,"[""Charger"", ""Laptop"", ""Keyboard""]",3474.97,"{""loyalty"": ""17%""}",83172,0,North America +2023-08-05,31498,4805,"[""Headphones"", ""Charger"", ""Phone""]",3657.18,"{""seasonal"": ""15%""}",184121,0,South America +2024-07-24,31499,8762,"[""Phone"", ""Charger""]",1134.89,{},116156,1,Europe +2023-02-23,31500,2201,"[""Wireless Mouse""]",4125.35,"{"""": ""19%""}",22389,0,Europe +2023-04-16,31501,8373,"[""Charger"", ""Monitor"", ""Phone""]",4442.87,"{""seasonal"": ""8%""}",140654,0,Africa +2023-11-19,31502,3811,"[""Wireless Mouse""]",4419.38,"{"""": ""14%""}",299085,0,Asia +2024-01-09,31503,9395,"[""Laptop"", ""Tablet"", ""Keyboard""]",1625.22,"{"""": ""22%""}",261641,1,Europe +2023-07-26,31504,6736,"[""Charger""]",1009.61,{},45739,0,Europe +2023-01-21,31505,8435,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1236.89,{},66288,1,North America +2024-06-07,31506,6026,"[""Phone"", ""Keyboard"", ""Headphones""]",492.49,{},121867,0,South America +2023-04-06,31507,5931,"[""Headphones"", ""Laptop""]",4416.87,"{""promo"": ""5%""}",292739,0,South America +2024-03-19,31508,8433,"[""Tablet"", ""Charger""]",4539.98,"{""loyalty"": ""19%""}",273680,0,North America +2023-11-01,31509,8669,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",474.13,"{""seasonal"": ""20%""}",82479,0,Asia +2024-02-12,31510,9546,"[""Headphones"", ""Charger"", ""Keyboard""]",3855.06,"{""promo"": ""30%""}",78766,0,Africa +2023-01-26,31511,570,"[""Charger"", ""Phone"", ""Monitor""]",947.39,{},264825,1,North America +2023-11-11,31512,3124,"[""Wireless Mouse""]",2236.06,"{""promo"": ""28%""}",268623,0,North America +2023-11-25,31513,5399,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3667.82,"{""seasonal"": ""12%""}",102953,1,Asia +2024-05-01,31514,4884,"[""Headphones"", ""Tablet"", ""Charger""]",4065.34,"{""loyalty"": ""17%""}",257294,0,Asia +2024-01-15,31515,1299,"[""Laptop"", ""Tablet"", ""Headphones""]",3356.33,{},175946,1,Europe +2023-10-28,31516,4374,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1450.64,"{""loyalty"": ""30%""}",61330,0,South America +2024-06-25,31517,1018,"[""Keyboard""]",1835.97,{},104783,0,Asia +2023-03-07,31518,6181,"[""Wireless Mouse""]",2629.89,"{""loyalty"": ""24%""}",193367,0,Europe +2024-01-22,31519,8117,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4591.11,"{""promo"": ""20%""}",173449,1,Africa +2023-08-19,31520,4371,"[""Wireless Mouse""]",4217.15,{},227667,0,South America +2023-10-18,31521,6376,"[""Laptop""]",2634.52,{},204953,0,North America +2023-08-26,31522,9829,"[""Monitor"", ""Laptop""]",3272.27,{},185929,0,Asia +2023-03-21,31523,2053,"[""Keyboard"", ""Charger"", ""Laptop""]",3479.18,"{"""": ""23%""}",140142,1,South America +2023-05-26,31524,2588,"[""Monitor""]",783.65,"{""loyalty"": ""24%""}",222381,1,Africa +2023-12-30,31525,7922,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",396.59,{},32661,0,Europe +2024-07-08,31526,9994,"[""Laptop"", ""Wireless Mouse""]",1453.93,"{""loyalty"": ""16%""}",140950,1,Asia +2024-08-05,31527,6041,"[""Phone"", ""Laptop"", ""Monitor""]",2743.66,"{"""": ""18%""}",24994,0,North America +2024-11-22,31528,3518,"[""Wireless Mouse""]",1289.87,{},267099,1,Asia +2024-11-26,31529,1617,"[""Laptop"", ""Charger"", ""Tablet""]",3333.62,"{""loyalty"": ""29%""}",231421,1,Africa +2024-10-10,31530,9575,"[""Keyboard""]",4836.32,{},124436,1,Asia +2024-08-05,31531,9376,"[""Laptop""]",2475.52,{},12378,1,Europe +2023-07-01,31532,9784,"[""Keyboard"", ""Monitor""]",2061.96,{},200548,1,Asia +2023-08-02,31533,9888,"[""Tablet"", ""Phone"", ""Headphones""]",1275.73,{},95126,0,Europe +2023-06-12,31534,2600,"[""Wireless Mouse""]",2534.97,{},137426,0,Asia +2023-05-20,31535,9053,"[""Wireless Mouse""]",2149.12,"{"""": ""14%""}",269008,1,Asia +2024-12-24,31536,1096,"[""Headphones""]",370.58,{},270337,0,Asia +2023-02-24,31537,6138,"[""Laptop""]",966.96,{},169439,1,Europe +2024-03-31,31538,6879,"[""Phone"", ""Keyboard""]",2349.13,"{"""": ""18%""}",283875,0,Africa +2024-02-06,31539,1369,"[""Headphones""]",1562.72,"{""promo"": ""10%""}",5527,0,Europe +2024-09-13,31540,6143,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1076.46,"{""loyalty"": ""27%""}",170947,1,Africa +2023-05-16,31541,8283,"[""Laptop"", ""Monitor"", ""Headphones""]",4442.66,{},161773,1,South America +2024-10-14,31542,6614,"[""Charger""]",3111.92,{},71109,0,North America +2024-01-15,31543,7276,"[""Keyboard"", ""Headphones""]",1524.93,"{""loyalty"": ""20%""}",53936,1,South America +2023-08-14,31544,8685,"[""Monitor""]",4741.53,{},128221,1,Europe +2024-02-02,31545,581,"[""Laptop"", ""Wireless Mouse""]",3167.67,"{""loyalty"": ""16%""}",65342,0,South America +2024-06-24,31546,6910,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4548.77,"{""seasonal"": ""5%""}",267181,1,Africa +2023-06-25,31547,747,"[""Laptop"", ""Keyboard"", ""Charger""]",4129.99,"{""promo"": ""14%""}",71718,1,Africa +2024-10-13,31548,6514,"[""Phone"", ""Monitor"", ""Keyboard""]",97.51,{},97638,1,Africa +2024-05-08,31549,4179,"[""Laptop"", ""Keyboard"", ""Charger""]",2768.46,{},297152,1,Europe +2023-08-17,31550,8876,"[""Phone"", ""Headphones""]",371.18,{},80636,0,Africa +2023-05-22,31551,8393,"[""Wireless Mouse"", ""Charger""]",1401.02,{},187082,0,Asia +2023-01-30,31552,6603,"[""Tablet"", ""Headphones""]",2059.45,{},228709,1,Asia +2024-10-15,31553,9326,"[""Monitor""]",4133.54,"{"""": ""7%""}",272701,1,South America +2024-09-26,31554,5206,"[""Tablet"", ""Phone""]",2499.07,"{""loyalty"": ""30%""}",156180,0,Asia +2024-03-08,31555,3755,"[""Monitor"", ""Laptop""]",4545.03,{},167822,1,Asia +2024-12-26,31556,8658,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2711.66,{},299086,1,Africa +2023-06-06,31557,2419,"[""Tablet""]",1655.87,{},178464,0,Europe +2023-06-08,31558,9593,"[""Laptop"", ""Phone"", ""Monitor""]",121.45,"{""promo"": ""14%""}",96940,1,North America +2023-09-05,31559,3100,"[""Charger"", ""Laptop""]",4034.32,"{""seasonal"": ""10%""}",30700,0,North America +2023-09-24,31560,3298,"[""Tablet"", ""Headphones"", ""Charger""]",4962.5,"{""seasonal"": ""20%""}",150284,0,Africa +2023-01-17,31561,1467,"[""Charger"", ""Monitor""]",1323.29,"{"""": ""27%""}",279157,0,Africa +2023-07-15,31562,8614,"[""Wireless Mouse"", ""Monitor""]",1955.03,"{"""": ""23%""}",265196,1,Europe +2024-01-06,31563,8459,"[""Wireless Mouse""]",1377.99,{},166369,1,North America +2024-03-16,31564,7764,"[""Phone"", ""Charger""]",2390.77,"{""loyalty"": ""27%""}",201286,0,South America +2024-09-29,31565,7252,"[""Laptop""]",2883.5,"{"""": ""20%""}",118619,1,Africa +2024-09-03,31566,6972,"[""Charger""]",473.6,"{""loyalty"": ""29%""}",192942,1,North America +2023-03-07,31567,4229,"[""Monitor"", ""Wireless Mouse""]",4717.39,{},243258,1,South America +2024-10-18,31568,8382,"[""Keyboard"", ""Monitor""]",2771.8,{},191847,1,North America +2024-04-01,31569,6805,"[""Tablet"", ""Keyboard"", ""Phone""]",2103.97,{},194520,1,North America +2024-10-13,31570,2338,"[""Headphones""]",1530.48,{},85101,0,South America +2023-12-11,31571,4473,"[""Wireless Mouse"", ""Tablet""]",213.97,"{""loyalty"": ""23%""}",219393,1,Africa +2024-10-20,31572,1858,"[""Keyboard""]",2429.69,"{""promo"": ""15%""}",142794,0,Europe +2023-05-11,31573,9445,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1934.84,{},106924,1,South America +2024-07-26,31574,6785,"[""Monitor""]",1331.39,"{""seasonal"": ""8%""}",176858,0,North America +2023-07-04,31575,6254,"[""Phone""]",2840.45,"{"""": ""19%""}",159012,0,South America +2023-03-16,31576,5057,"[""Tablet"", ""Phone""]",4205.87,"{"""": ""8%""}",3007,0,Africa +2024-04-26,31577,190,"[""Phone"", ""Monitor""]",1185.01,{},149652,0,Asia +2024-10-22,31578,519,"[""Keyboard""]",1613.82,"{""seasonal"": ""21%""}",42165,0,South America +2023-06-24,31579,1632,"[""Phone"", ""Headphones""]",2100.88,{},51518,1,North America +2024-07-26,31580,6883,"[""Keyboard""]",3035.91,{},110655,0,Europe +2024-11-11,31581,3273,"[""Headphones""]",1795.58,"{""promo"": ""22%""}",7777,1,Asia +2023-06-26,31582,621,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4583.32,{},31929,1,Africa +2023-08-29,31583,4988,"[""Monitor"", ""Laptop""]",1508.97,"{""seasonal"": ""28%""}",226633,0,Europe +2024-05-26,31584,8571,"[""Monitor"", ""Charger""]",2464.77,{},155877,1,Europe +2023-11-07,31585,4844,"[""Tablet""]",3472.25,{},275100,0,North America +2023-10-07,31586,9811,"[""Monitor""]",3408.85,"{""seasonal"": ""10%""}",146012,0,Europe +2024-01-12,31587,3603,"[""Keyboard"", ""Charger"", ""Laptop""]",1204.53,{},158415,0,Asia +2024-11-15,31588,3941,"[""Tablet"", ""Wireless Mouse""]",578.61,"{"""": ""8%""}",247093,0,Asia +2024-08-18,31589,7501,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3818.18,"{""promo"": ""14%""}",219389,0,Europe +2024-10-02,31590,475,"[""Laptop"", ""Charger""]",654.34,{},24216,0,Asia +2023-09-30,31591,4723,"[""Tablet"", ""Keyboard"", ""Charger""]",2064.04,{},39199,1,South America +2024-11-21,31592,8051,"[""Charger""]",3290.74,"{"""": ""28%""}",242736,0,South America +2024-02-23,31593,541,"[""Charger"", ""Monitor""]",1707.61,{},34905,0,Europe +2024-05-22,31594,2099,"[""Charger""]",4104.06,{},252853,0,Africa +2023-10-29,31595,7964,"[""Headphones""]",910.55,{},125503,0,Africa +2024-10-28,31596,6635,"[""Wireless Mouse""]",4947.98,{},231792,0,Europe +2024-06-02,31597,4130,"[""Phone""]",249.7,{},131720,0,Africa +2023-06-25,31598,8211,"[""Headphones""]",2256.61,"{""promo"": ""22%""}",164157,1,North America +2023-10-14,31599,8992,"[""Laptop"", ""Phone"", ""Charger""]",3117.29,{},112061,0,North America +2024-08-11,31600,5293,"[""Wireless Mouse"", ""Laptop""]",4785.9,{},107249,0,Asia +2024-09-20,31601,1117,"[""Tablet"", ""Charger""]",2572.44,"{""loyalty"": ""28%""}",101817,1,Europe +2023-10-15,31602,1163,"[""Laptop"", ""Charger"", ""Headphones""]",3661.96,{},270485,1,North America +2023-12-22,31603,2776,"[""Monitor"", ""Laptop""]",985.97,{},239713,0,Africa +2024-11-14,31604,3347,"[""Charger""]",2691.57,"{""promo"": ""23%""}",296320,1,Europe +2023-12-04,31605,300,"[""Tablet"", ""Charger""]",798.52,{},246903,1,North America +2024-05-28,31606,6292,"[""Monitor"", ""Laptop""]",1512.06,"{""loyalty"": ""19%""}",52859,0,Africa +2023-12-31,31607,3058,"[""Keyboard""]",4145.84,"{""promo"": ""26%""}",197963,1,North America +2023-05-18,31608,1949,"[""Charger""]",775.73,{},166130,1,Asia +2023-08-15,31609,4755,"[""Monitor"", ""Tablet"", ""Phone""]",2981.6,"{""seasonal"": ""14%""}",29367,0,Africa +2023-01-26,31610,3178,"[""Tablet"", ""Charger"", ""Phone""]",2018.32,"{""seasonal"": ""11%""}",147206,1,South America +2023-01-26,31611,9063,"[""Phone""]",1776.25,"{""promo"": ""18%""}",149428,1,Africa +2024-03-06,31612,507,"[""Laptop""]",4864.77,{},29281,0,Europe +2023-02-05,31613,3808,"[""Laptop""]",4801.75,"{"""": ""24%""}",8296,1,Africa +2023-10-17,31614,4938,"[""Monitor"", ""Headphones"", ""Charger""]",1759.06,{},273390,1,Africa +2024-12-24,31615,9414,"[""Laptop"", ""Keyboard""]",519.35,{},133249,1,Asia +2023-01-12,31616,9600,"[""Charger"", ""Headphones""]",522.65,{},186894,0,Asia +2023-08-12,31617,9026,"[""Laptop"", ""Phone""]",2683.41,"{"""": ""23%""}",119889,0,Europe +2024-09-09,31618,3441,"[""Tablet"", ""Phone""]",2204.41,"{""promo"": ""30%""}",32079,0,Asia +2024-10-02,31619,4391,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2532.62,"{""seasonal"": ""16%""}",177698,0,South America +2024-03-12,31620,584,"[""Laptop"", ""Charger""]",3026.08,{},249453,1,Europe +2024-06-25,31621,8590,"[""Tablet"", ""Phone""]",3759.24,{},184349,0,South America +2024-09-21,31622,911,"[""Laptop""]",373.1,"{""promo"": ""27%""}",186061,1,Asia +2023-09-18,31623,4197,"[""Monitor"", ""Laptop"", ""Phone""]",1111.84,{},182261,1,Asia +2023-11-01,31624,7626,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4281.3,{},51567,1,Europe +2023-12-06,31625,951,"[""Phone"", ""Tablet""]",4441.0,"{"""": ""6%""}",279858,0,Africa +2024-05-16,31626,2483,"[""Laptop"", ""Charger""]",1259.38,"{""promo"": ""12%""}",124167,1,South America +2024-02-18,31627,8312,"[""Laptop""]",4640.96,"{""loyalty"": ""7%""}",3646,0,Asia +2024-04-16,31628,247,"[""Keyboard""]",4415.91,{},230125,0,North America +2023-04-13,31629,5335,"[""Laptop"", ""Wireless Mouse""]",4716.64,"{""promo"": ""28%""}",44198,0,Africa +2023-03-28,31630,5406,"[""Phone"", ""Headphones""]",4922.15,{},289114,0,Europe +2024-12-14,31631,6044,"[""Tablet""]",3922.29,{},41786,0,North America +2024-10-11,31632,4652,"[""Tablet"", ""Headphones""]",2035.53,{},40904,1,North America +2024-10-02,31633,9643,"[""Headphones"", ""Monitor""]",1203.51,"{""promo"": ""24%""}",288255,1,Asia +2023-03-27,31634,6217,"[""Wireless Mouse"", ""Headphones""]",3405.51,{},262406,0,Asia +2024-03-06,31635,2229,"[""Monitor"", ""Wireless Mouse""]",422.1,"{""seasonal"": ""10%""}",28007,0,Africa +2023-10-08,31636,667,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",579.75,"{"""": ""12%""}",23203,1,North America +2023-02-05,31637,94,"[""Laptop""]",2551.72,{},276257,0,Asia +2023-04-28,31638,968,"[""Laptop"", ""Keyboard""]",2150.55,"{""promo"": ""8%""}",30907,0,Asia +2023-09-04,31639,2146,"[""Charger"", ""Wireless Mouse""]",1482.73,"{""seasonal"": ""7%""}",151000,0,Asia +2024-02-08,31640,8340,"[""Laptop""]",1805.83,{},213374,0,Africa +2024-01-23,31641,9379,"[""Laptop""]",4698.01,"{"""": ""11%""}",43270,1,Europe +2024-07-17,31642,9772,"[""Phone""]",2577.18,"{""seasonal"": ""14%""}",196578,1,North America +2024-03-08,31643,6099,"[""Charger"", ""Phone""]",4793.29,"{""loyalty"": ""27%""}",180422,1,Europe +2023-01-12,31644,2487,"[""Monitor"", ""Wireless Mouse""]",3837.46,{},275199,0,Europe +2024-03-28,31645,748,"[""Keyboard"", ""Wireless Mouse""]",2733.04,"{""loyalty"": ""5%""}",18162,0,Europe +2023-08-14,31646,1080,"[""Headphones"", ""Phone""]",4880.47,{},191239,0,Africa +2023-04-26,31647,3404,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2950.74,{},270067,0,Europe +2023-08-23,31648,574,"[""Phone"", ""Monitor"", ""Headphones""]",199.9,"{""promo"": ""8%""}",88547,1,Africa +2023-12-28,31649,9407,"[""Headphones"", ""Charger""]",1148.27,"{""seasonal"": ""12%""}",10316,0,South America +2023-09-25,31650,1656,"[""Headphones"", ""Tablet"", ""Monitor""]",515.98,"{""loyalty"": ""13%""}",181612,1,Asia +2023-08-15,31651,8527,"[""Wireless Mouse"", ""Monitor""]",4690.76,"{"""": ""14%""}",250259,0,Asia +2023-05-05,31652,7563,"[""Monitor"", ""Headphones"", ""Laptop""]",4524.96,"{""promo"": ""8%""}",236844,1,North America +2024-08-30,31653,8548,"[""Monitor""]",3567.13,{},23446,1,South America +2023-04-16,31654,9236,"[""Phone"", ""Monitor"", ""Headphones""]",2171.16,"{""seasonal"": ""25%""}",87388,0,South America +2024-03-25,31655,509,"[""Charger"", ""Laptop"", ""Headphones""]",2781.0,"{""seasonal"": ""9%""}",245253,1,Europe +2023-12-19,31656,7970,"[""Wireless Mouse""]",1126.29,{},296623,1,North America +2023-05-02,31657,576,"[""Laptop""]",2985.26,"{""promo"": ""23%""}",123240,1,South America +2024-11-21,31658,8136,"[""Headphones"", ""Wireless Mouse""]",4420.13,{},115437,1,Europe +2023-02-07,31659,7209,"[""Keyboard"", ""Monitor"", ""Phone""]",4840.55,{},155002,1,Asia +2023-09-26,31660,6322,"[""Headphones"", ""Monitor""]",3032.24,"{""seasonal"": ""20%""}",214637,1,Europe +2024-11-07,31661,5827,"[""Wireless Mouse""]",3109.22,{},282422,0,Europe +2024-08-09,31662,110,"[""Wireless Mouse""]",2801.51,{},92193,0,Asia +2024-08-15,31663,6378,"[""Headphones"", ""Laptop"", ""Phone""]",581.93,"{""promo"": ""17%""}",229739,0,Europe +2024-01-29,31664,4240,"[""Keyboard"", ""Tablet"", ""Laptop""]",2102.11,{},278899,1,Asia +2023-03-02,31665,1629,"[""Monitor"", ""Headphones"", ""Phone""]",2376.88,"{""loyalty"": ""30%""}",254555,0,North America +2024-02-18,31666,4795,"[""Charger"", ""Phone"", ""Tablet""]",2590.92,"{""loyalty"": ""22%""}",238362,0,South America +2023-09-26,31667,9155,"[""Keyboard"", ""Monitor""]",3926.22,{},2049,1,Asia +2024-01-27,31668,5755,"[""Laptop"", ""Monitor"", ""Headphones""]",3602.43,"{"""": ""24%""}",284370,0,Africa +2023-03-09,31669,2729,"[""Tablet"", ""Keyboard""]",2961.76,{},235889,0,Africa +2023-12-14,31670,5722,"[""Laptop"", ""Charger""]",1362.52,"{"""": ""28%""}",62262,0,North America +2023-09-21,31671,1890,"[""Keyboard""]",3121.31,"{""promo"": ""14%""}",76879,1,Africa +2023-06-28,31672,9255,"[""Keyboard"", ""Headphones"", ""Charger""]",1100.35,{},108551,0,South America +2023-01-12,31673,7033,"[""Tablet""]",742.56,"{""promo"": ""26%""}",102597,0,Asia +2024-09-14,31674,8019,"[""Monitor"", ""Laptop""]",333.88,{},215447,1,South America +2023-05-26,31675,8632,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",278.08,{},219061,1,Asia +2024-09-16,31676,7717,"[""Laptop""]",3707.19,{},202032,0,Asia +2023-07-30,31677,1487,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",174.9,{},152713,0,Africa +2023-08-02,31678,8904,"[""Tablet""]",2695.67,{},66660,0,North America +2024-02-24,31679,8581,"[""Keyboard"", ""Tablet"", ""Headphones""]",2833.3,"{""seasonal"": ""8%""}",131715,1,North America +2023-02-08,31680,8209,"[""Keyboard"", ""Tablet"", ""Phone""]",1823.71,"{"""": ""13%""}",91935,0,Africa +2024-09-28,31681,4882,"[""Phone"", ""Charger"", ""Keyboard""]",1215.5,"{""loyalty"": ""9%""}",81885,0,North America +2024-12-10,31682,1389,"[""Wireless Mouse""]",3626.01,"{""loyalty"": ""26%""}",125548,1,Africa +2023-11-05,31683,7150,"[""Charger"", ""Phone""]",622.7,{},36307,0,Asia +2023-02-27,31684,3616,"[""Headphones"", ""Laptop"", ""Phone""]",284.97,"{""seasonal"": ""7%""}",8802,1,Asia +2023-05-24,31685,3790,"[""Charger"", ""Monitor""]",3470.5,{},29441,1,North America +2023-06-20,31686,5176,"[""Phone"", ""Keyboard"", ""Tablet""]",494.74,"{""loyalty"": ""8%""}",67673,0,Africa +2023-04-02,31687,1124,"[""Tablet"", ""Monitor"", ""Laptop""]",847.41,{},226878,0,North America +2024-09-10,31688,1083,"[""Charger"", ""Wireless Mouse""]",786.4,{},20302,0,Europe +2023-02-16,31689,9332,"[""Monitor""]",376.05,{},59018,0,South America +2024-12-06,31690,3799,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4931.53,"{""promo"": ""28%""}",11936,1,Africa +2024-12-28,31691,8771,"[""Charger""]",3165.94,{},67644,0,South America +2024-02-08,31692,4569,"[""Headphones"", ""Phone""]",2072.28,"{""seasonal"": ""25%""}",60639,0,Asia +2024-05-07,31693,1708,"[""Laptop"", ""Keyboard"", ""Headphones""]",3741.5,"{""promo"": ""26%""}",20994,1,Europe +2023-03-12,31694,5165,"[""Monitor"", ""Keyboard"", ""Charger""]",1600.94,"{""loyalty"": ""20%""}",100618,1,Europe +2023-06-03,31695,8894,"[""Phone""]",1719.18,{},115573,1,Asia +2024-02-24,31696,93,"[""Wireless Mouse"", ""Laptop""]",1014.66,"{""seasonal"": ""30%""}",63132,0,Asia +2023-11-13,31697,4045,"[""Wireless Mouse""]",3970.36,"{"""": ""16%""}",138740,1,South America +2024-09-08,31698,7241,"[""Tablet""]",3633.8,{},51076,1,Africa +2023-08-11,31699,7500,"[""Headphones""]",2199.98,"{""seasonal"": ""10%""}",74151,0,South America +2024-12-17,31700,1760,"[""Monitor"", ""Laptop"", ""Headphones""]",2702.72,{},193181,0,Europe +2023-04-11,31701,2744,"[""Keyboard"", ""Headphones"", ""Monitor""]",3044.28,"{""seasonal"": ""23%""}",146509,1,Africa +2023-02-19,31702,6066,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",289.68,"{""loyalty"": ""6%""}",265412,1,North America +2024-08-03,31703,1085,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1821.98,{},20995,1,North America +2023-02-14,31704,3302,"[""Charger"", ""Phone"", ""Laptop""]",1536.8,"{""loyalty"": ""26%""}",71800,0,South America +2023-03-18,31705,5326,"[""Monitor"", ""Phone""]",294.38,{},90790,0,Asia +2024-09-11,31706,4331,"[""Headphones""]",2706.61,"{"""": ""12%""}",138800,0,Europe +2024-09-15,31707,1272,"[""Monitor""]",2665.79,"{"""": ""12%""}",160318,1,South America +2023-03-27,31708,3383,"[""Wireless Mouse"", ""Phone""]",3585.77,{},116500,1,Asia +2023-02-07,31709,1663,"[""Phone""]",4327.83,{},285790,1,South America +2023-01-15,31710,7444,"[""Wireless Mouse"", ""Tablet""]",346.62,{},262685,1,North America +2024-06-27,31711,9151,"[""Wireless Mouse"", ""Monitor""]",4937.13,"{"""": ""28%""}",34027,0,Europe +2023-05-30,31712,9893,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4515.22,"{"""": ""16%""}",45003,0,North America +2023-08-13,31713,444,"[""Keyboard""]",2540.88,"{""promo"": ""5%""}",229655,0,Asia +2023-08-11,31714,8373,"[""Monitor"", ""Charger"", ""Laptop""]",4877.0,"{""seasonal"": ""5%""}",201227,0,Asia +2023-09-01,31715,1834,"[""Phone"", ""Monitor""]",4611.72,{},253086,1,North America +2023-02-19,31716,4654,"[""Wireless Mouse"", ""Laptop""]",412.09,"{""loyalty"": ""30%""}",220860,0,South America +2024-05-12,31717,5808,"[""Wireless Mouse""]",649.61,{},59566,1,North America +2023-11-28,31718,7732,"[""Keyboard"", ""Tablet"", ""Headphones""]",970.86,"{""seasonal"": ""14%""}",265029,0,North America +2023-04-08,31719,1325,"[""Laptop"", ""Keyboard"", ""Phone""]",1271.39,"{"""": ""29%""}",57050,1,Asia +2024-01-10,31720,1653,"[""Charger"", ""Tablet"", ""Monitor""]",3450.84,"{""promo"": ""20%""}",141395,1,North America +2023-12-08,31721,2220,"[""Wireless Mouse""]",4508.96,{},295082,0,Africa +2023-01-22,31722,5443,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2765.62,"{""seasonal"": ""21%""}",98672,0,South America +2023-08-04,31723,8436,"[""Keyboard""]",2086.3,{},296742,1,South America +2023-09-27,31724,6496,"[""Charger"", ""Laptop"", ""Phone""]",1675.98,{},201937,0,Asia +2024-02-06,31725,8504,"[""Laptop"", ""Charger"", ""Headphones""]",2135.67,{},231817,1,Europe +2023-01-24,31726,4160,"[""Laptop""]",1887.29,{},35774,0,Africa +2023-09-15,31727,3239,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4198.75,{},99731,1,Asia +2024-02-07,31728,545,"[""Headphones"", ""Charger"", ""Monitor""]",4145.28,{},273276,0,Asia +2023-10-01,31729,6068,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3251.92,"{""promo"": ""22%""}",70539,0,Europe +2024-04-20,31730,2979,"[""Charger"", ""Laptop""]",823.45,"{""loyalty"": ""5%""}",211028,1,Europe +2023-03-11,31731,4204,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2860.16,"{""loyalty"": ""8%""}",18759,0,North America +2023-09-07,31732,5237,"[""Headphones""]",660.73,{},264910,1,Africa +2023-02-11,31733,7288,"[""Keyboard""]",1998.43,{},21543,1,North America +2023-10-21,31734,2716,"[""Headphones"", ""Keyboard"", ""Laptop""]",2852.77,{},125317,1,South America +2024-08-24,31735,5878,"[""Laptop"", ""Monitor"", ""Charger""]",2662.02,"{""loyalty"": ""30%""}",220550,1,Africa +2024-05-13,31736,4407,"[""Phone""]",611.38,"{"""": ""9%""}",75485,1,South America +2024-08-12,31737,1918,"[""Keyboard"", ""Monitor""]",2415.39,"{""promo"": ""29%""}",280743,1,Africa +2023-05-11,31738,4039,"[""Keyboard""]",2565.22,{},148347,0,North America +2023-07-18,31739,6582,"[""Wireless Mouse""]",1824.96,"{"""": ""17%""}",286840,0,Asia +2024-03-11,31740,4407,"[""Laptop""]",2674.45,{},291862,1,North America +2024-06-17,31741,1022,"[""Monitor"", ""Headphones"", ""Charger""]",3199.0,"{""seasonal"": ""16%""}",266467,1,North America +2024-03-10,31742,9060,"[""Laptop"", ""Tablet"", ""Phone""]",3299.4,"{""loyalty"": ""13%""}",286541,0,Asia +2024-09-16,31743,2401,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2232.73,{},281322,1,Asia +2024-08-17,31744,5592,"[""Laptop""]",2523.05,"{""promo"": ""14%""}",270818,1,North America +2023-01-09,31745,9960,"[""Keyboard"", ""Tablet""]",1837.73,"{"""": ""8%""}",176396,0,South America +2023-09-24,31746,743,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",954.29,{},145586,0,Europe +2024-06-04,31747,5661,"[""Keyboard"", ""Laptop"", ""Headphones""]",318.43,"{""seasonal"": ""21%""}",119380,0,South America +2024-08-26,31748,3218,"[""Keyboard""]",3500.73,"{"""": ""11%""}",178531,1,Africa +2023-09-06,31749,1084,"[""Headphones"", ""Monitor""]",588.04,{},118460,1,Europe +2024-12-25,31750,6409,"[""Laptop"", ""Charger"", ""Monitor""]",723.31,"{""promo"": ""26%""}",40326,0,South America +2024-06-08,31751,1042,"[""Phone"", ""Headphones""]",3897.83,"{""promo"": ""21%""}",203996,0,South America +2024-03-07,31752,4542,"[""Keyboard"", ""Laptop"", ""Phone""]",242.98,"{""seasonal"": ""16%""}",73118,1,Asia +2024-07-12,31753,1587,"[""Wireless Mouse"", ""Tablet""]",2189.27,{},19335,0,Asia +2024-11-17,31754,4645,"[""Charger"", ""Keyboard""]",679.78,"{""loyalty"": ""6%""}",171911,0,North America +2023-03-12,31755,1374,"[""Tablet"", ""Laptop""]",1143.73,"{""loyalty"": ""14%""}",65138,1,Europe +2023-11-24,31756,6796,"[""Charger"", ""Phone"", ""Headphones""]",1457.14,"{""loyalty"": ""21%""}",296844,1,Asia +2024-08-04,31757,3586,"[""Charger""]",1787.52,"{""seasonal"": ""11%""}",174327,1,Africa +2024-01-29,31758,7943,"[""Charger""]",867.55,"{"""": ""5%""}",33946,0,Europe +2024-10-01,31759,8506,"[""Phone""]",4785.56,{},94821,0,Africa +2023-03-23,31760,3125,"[""Charger""]",2191.6,"{""loyalty"": ""6%""}",105074,1,South America +2023-07-15,31761,4167,"[""Keyboard""]",4340.91,"{"""": ""12%""}",187323,0,Africa +2024-05-15,31762,136,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3368.36,{},27634,0,Europe +2023-08-10,31763,7659,"[""Headphones""]",2907.39,"{"""": ""7%""}",284102,0,South America +2023-06-29,31764,9377,"[""Charger"", ""Phone""]",3679.96,{},99648,1,South America +2023-02-17,31765,8637,"[""Monitor"", ""Tablet""]",612.87,"{"""": ""19%""}",249050,0,North America +2024-07-30,31766,1730,"[""Wireless Mouse"", ""Headphones""]",1896.3,{},116038,1,North America +2024-11-22,31767,5805,"[""Tablet"", ""Laptop"", ""Keyboard""]",3180.53,{},135533,0,Africa +2023-07-24,31768,2045,"[""Tablet""]",2102.04,{},112005,1,North America +2023-10-23,31769,9060,"[""Monitor""]",3472.96,"{""seasonal"": ""6%""}",295361,1,Asia +2024-02-12,31770,9614,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1710.61,"{""seasonal"": ""25%""}",118939,0,South America +2024-11-27,31771,5753,"[""Keyboard""]",4158.81,"{""seasonal"": ""10%""}",282385,1,North America +2024-08-01,31772,3075,"[""Monitor"", ""Charger"", ""Headphones""]",2673.95,{},160490,1,Asia +2024-03-02,31773,6924,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",325.1,"{""seasonal"": ""18%""}",49563,0,Europe +2023-10-21,31774,6580,"[""Charger"", ""Phone""]",3298.13,{},66147,0,Asia +2023-12-02,31775,6456,"[""Phone"", ""Laptop"", ""Keyboard""]",4243.0,{},279058,0,Asia +2024-01-01,31776,588,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1922.45,{},224553,1,South America +2024-02-15,31777,3247,"[""Wireless Mouse"", ""Keyboard""]",221.58,{},89628,0,Asia +2024-12-21,31778,9716,"[""Monitor"", ""Charger"", ""Phone""]",1567.14,"{"""": ""19%""}",3865,1,Africa +2024-08-06,31779,7620,"[""Monitor"", ""Laptop""]",1576.45,"{""seasonal"": ""11%""}",99344,1,Europe +2024-02-03,31780,9593,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4641.58,{},194333,1,Africa +2023-07-19,31781,5179,"[""Monitor"", ""Charger"", ""Laptop""]",1240.33,{},29385,1,Africa +2024-03-06,31782,179,"[""Keyboard"", ""Wireless Mouse""]",4155.27,"{""loyalty"": ""13%""}",116292,0,Asia +2023-05-31,31783,1561,"[""Monitor""]",4343.04,"{""promo"": ""18%""}",90296,0,North America +2023-04-19,31784,157,"[""Laptop"", ""Keyboard"", ""Tablet""]",2839.37,"{"""": ""6%""}",251470,1,Africa +2023-06-17,31785,5309,"[""Tablet""]",671.19,{},183896,0,North America +2023-05-07,31786,6411,"[""Headphones"", ""Keyboard"", ""Phone""]",4154.27,{},124764,0,Asia +2023-01-22,31787,6283,"[""Tablet"", ""Phone"", ""Headphones""]",1501.49,"{""promo"": ""17%""}",168628,1,Europe +2024-11-27,31788,2093,"[""Headphones"", ""Laptop""]",4324.6,"{"""": ""5%""}",39537,0,Africa +2024-06-02,31789,7579,"[""Monitor"", ""Charger""]",4827.1,"{"""": ""15%""}",141023,1,South America +2024-02-09,31790,8749,"[""Laptop"", ""Keyboard""]",1069.87,"{"""": ""11%""}",57306,1,North America +2024-12-07,31791,8467,"[""Wireless Mouse"", ""Phone""]",3679.28,{},65097,0,Asia +2023-01-12,31792,1217,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4610.69,"{""promo"": ""30%""}",52891,0,North America +2023-09-23,31793,4444,"[""Wireless Mouse"", ""Headphones""]",878.51,"{""loyalty"": ""25%""}",212143,1,South America +2023-03-21,31794,7511,"[""Phone""]",1503.04,{},131734,1,Africa +2023-12-13,31795,4427,"[""Phone"", ""Wireless Mouse""]",4240.26,{},16614,1,Asia +2023-06-23,31796,6353,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3945.35,"{""promo"": ""28%""}",126944,0,Europe +2023-11-25,31797,770,"[""Laptop""]",2328.57,"{""loyalty"": ""11%""}",283493,1,Africa +2023-05-03,31798,6306,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1764.78,{},14143,0,South America +2023-03-16,31799,3640,"[""Tablet"", ""Headphones"", ""Charger""]",3610.4,{},195255,0,Africa +2023-02-21,31800,4221,"[""Laptop""]",332.27,"{""seasonal"": ""15%""}",14791,0,Africa +2024-05-29,31801,9846,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",387.36,{},175187,1,Africa +2024-03-04,31802,5377,"[""Charger"", ""Phone"", ""Headphones""]",1822.17,{},141713,1,Europe +2023-05-09,31803,9940,"[""Phone"", ""Keyboard""]",3003.14,{},128860,1,Africa +2023-06-21,31804,5952,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1387.07,{},210928,1,North America +2023-11-02,31805,7772,"[""Laptop""]",865.96,{},140751,0,Europe +2024-10-21,31806,8015,"[""Laptop"", ""Keyboard""]",2301.57,{},89319,0,Europe +2024-11-05,31807,3664,"[""Keyboard""]",329.82,{},203386,1,Africa +2024-09-01,31808,3496,"[""Tablet""]",4726.02,"{""seasonal"": ""22%""}",64408,0,Asia +2023-03-09,31809,9731,"[""Monitor"", ""Wireless Mouse""]",3138.13,{},287371,0,Africa +2023-07-20,31810,3917,"[""Tablet"", ""Monitor"", ""Keyboard""]",4660.51,"{"""": ""18%""}",122227,1,Europe +2024-09-12,31811,2219,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2954.39,{},61238,0,Asia +2024-03-20,31812,6147,"[""Keyboard"", ""Phone"", ""Headphones""]",236.54,"{""seasonal"": ""12%""}",67349,1,Europe +2024-12-31,31813,9826,"[""Monitor"", ""Tablet"", ""Headphones""]",3590.73,{},239005,1,South America +2023-06-03,31814,359,"[""Tablet"", ""Wireless Mouse""]",1563.65,"{""seasonal"": ""25%""}",148512,0,Africa +2023-02-08,31815,2565,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4479.12,{},186061,0,Africa +2024-01-29,31816,4824,"[""Keyboard"", ""Charger""]",1836.71,{},264335,0,Africa +2024-02-29,31817,9547,"[""Tablet"", ""Laptop""]",4602.48,"{""loyalty"": ""29%""}",69589,1,Africa +2023-04-23,31818,6924,"[""Phone"", ""Wireless Mouse""]",2768.44,"{""promo"": ""24%""}",165846,1,Europe +2023-01-04,31819,9179,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",547.05,{},260915,1,Europe +2024-08-14,31820,6989,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1187.2,{},299331,1,South America +2023-11-23,31821,4615,"[""Monitor"", ""Phone"", ""Tablet""]",2308.22,{},46256,1,Europe +2024-02-23,31822,553,"[""Headphones""]",521.7,"{"""": ""10%""}",101417,0,Africa +2024-08-09,31823,8822,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2905.37,"{""loyalty"": ""11%""}",20663,0,North America +2023-06-25,31824,5053,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4185.94,{},265282,0,North America +2024-03-29,31825,7723,"[""Charger"", ""Tablet""]",2770.53,"{""seasonal"": ""21%""}",11246,1,Asia +2024-06-01,31826,6850,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3038.55,"{""promo"": ""14%""}",149965,0,South America +2024-02-10,31827,5612,"[""Laptop"", ""Tablet""]",668.11,"{""loyalty"": ""27%""}",156861,0,Africa +2024-03-09,31828,2386,"[""Headphones"", ""Phone""]",4082.08,"{""seasonal"": ""7%""}",226566,0,North America +2023-08-28,31829,2284,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4928.14,{},6175,0,North America +2024-07-29,31830,4043,"[""Laptop"", ""Tablet"", ""Charger""]",4826.79,"{""seasonal"": ""6%""}",90162,1,South America +2023-12-21,31831,3281,"[""Monitor"", ""Laptop"", ""Headphones""]",4311.6,"{"""": ""20%""}",153585,1,Europe +2023-05-17,31832,4677,"[""Headphones""]",3382.0,"{""loyalty"": ""6%""}",82099,1,North America +2023-03-27,31833,5014,"[""Wireless Mouse""]",3981.01,"{"""": ""11%""}",193160,1,Europe +2023-05-29,31834,1991,"[""Wireless Mouse"", ""Laptop""]",2819.47,{},5833,0,North America +2023-05-28,31835,6975,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2036.36,"{""promo"": ""24%""}",33927,1,North America +2024-07-21,31836,6731,"[""Laptop""]",4334.04,{},202566,0,North America +2023-07-28,31837,8525,"[""Laptop""]",1274.05,{},82608,0,South America +2023-05-12,31838,5236,"[""Tablet"", ""Laptop""]",4689.74,"{""seasonal"": ""14%""}",13736,0,Africa +2024-09-28,31839,7826,"[""Keyboard"", ""Laptop""]",4195.77,"{"""": ""16%""}",206250,0,South America +2023-03-30,31840,6818,"[""Headphones"", ""Tablet""]",3292.3,"{"""": ""17%""}",108731,0,Europe +2024-08-09,31841,2605,"[""Laptop"", ""Phone"", ""Tablet""]",1775.81,"{""seasonal"": ""25%""}",180895,0,Africa +2023-11-08,31842,5517,"[""Charger"", ""Tablet"", ""Headphones""]",2435.81,{},243327,0,Africa +2023-09-21,31843,4033,"[""Charger""]",2550.33,{},61766,1,Africa +2023-02-23,31844,5080,"[""Keyboard"", ""Headphones""]",2114.17,"{""promo"": ""13%""}",95743,0,Africa +2024-07-28,31845,189,"[""Tablet""]",4933.79,"{""seasonal"": ""29%""}",97178,1,Europe +2023-09-08,31846,7665,"[""Phone"", ""Wireless Mouse""]",4948.01,"{""promo"": ""18%""}",121006,0,South America +2023-11-15,31847,9820,"[""Laptop""]",1114.71,{},21045,0,North America +2023-12-21,31848,8168,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3768.37,{},104695,1,Europe +2023-03-13,31849,6741,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4184.14,"{""loyalty"": ""5%""}",180083,1,South America +2024-07-28,31850,4330,"[""Phone""]",3006.28,{},277837,0,Africa +2023-12-27,31851,5853,"[""Charger""]",3223.74,{},25970,1,North America +2023-07-06,31852,1584,"[""Headphones""]",4356.79,{},25615,0,Europe +2023-04-09,31853,1635,"[""Monitor""]",3767.09,"{"""": ""20%""}",177659,0,Asia +2024-08-11,31854,2293,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",504.82,{},207310,1,Africa +2024-09-20,31855,1676,"[""Wireless Mouse""]",2821.63,{},32007,1,Europe +2023-03-23,31856,2150,"[""Keyboard"", ""Charger""]",2963.84,{},4246,1,Africa +2023-09-17,31857,6970,"[""Headphones"", ""Charger""]",659.32,{},153648,0,Africa +2024-09-09,31858,4451,"[""Headphones"", ""Tablet""]",3247.15,{},27408,0,Asia +2024-04-06,31859,8426,"[""Charger"", ""Headphones"", ""Tablet""]",1655.81,"{""loyalty"": ""13%""}",223307,0,North America +2023-01-05,31860,7480,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",323.32,{},23397,1,South America +2024-05-13,31861,3532,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1009.47,{},196321,0,North America +2024-03-14,31862,4027,"[""Headphones""]",2115.19,"{""promo"": ""28%""}",275604,0,North America +2024-06-01,31863,4374,"[""Tablet""]",713.63,"{"""": ""9%""}",60380,1,Asia +2023-05-15,31864,4756,"[""Keyboard""]",4332.5,{},7816,1,South America +2023-07-04,31865,6948,"[""Laptop""]",3636.77,{},121606,0,South America +2024-01-18,31866,5027,"[""Headphones""]",750.75,"{""promo"": ""15%""}",166359,0,North America +2024-01-25,31867,9873,"[""Headphones"", ""Wireless Mouse""]",350.36,"{""promo"": ""13%""}",289691,0,North America +2024-10-20,31868,536,"[""Wireless Mouse""]",2052.88,"{""loyalty"": ""13%""}",262753,0,Europe +2023-10-21,31869,2884,"[""Headphones"", ""Monitor""]",3043.0,"{""loyalty"": ""26%""}",143480,1,North America +2024-02-19,31870,1406,"[""Laptop"", ""Keyboard""]",674.6,{},172015,1,Africa +2024-10-26,31871,2122,"[""Tablet""]",1978.71,{},126776,0,Africa +2023-08-15,31872,1486,"[""Tablet""]",4273.84,{},139687,1,Europe +2023-01-21,31873,387,"[""Keyboard""]",1446.3,{},125068,0,Europe +2023-08-29,31874,7455,"[""Wireless Mouse"", ""Tablet""]",1862.67,"{""seasonal"": ""18%""}",287699,0,Europe +2024-12-31,31875,3826,"[""Charger"", ""Laptop"", ""Monitor""]",1581.47,{},242797,1,Africa +2023-07-29,31876,4065,"[""Wireless Mouse"", ""Charger""]",1257.48,{},285113,0,South America +2023-12-11,31877,3543,"[""Keyboard"", ""Laptop"", ""Charger""]",2224.9,{},243804,1,Europe +2023-04-04,31878,8178,"[""Keyboard""]",1651.5,{},145006,1,Africa +2024-09-17,31879,6005,"[""Tablet"", ""Charger""]",3997.96,"{""seasonal"": ""30%""}",165884,1,North America +2024-11-10,31880,5558,"[""Phone"", ""Tablet"", ""Keyboard""]",162.71,{},214943,0,Africa +2023-01-13,31881,3508,"[""Laptop"", ""Charger""]",1369.56,{},36303,1,Africa +2023-04-22,31882,141,"[""Keyboard""]",1405.02,{},92756,1,Asia +2024-01-29,31883,5693,"[""Charger"", ""Headphones""]",1993.07,"{""promo"": ""12%""}",51566,0,Europe +2023-11-01,31884,6714,"[""Tablet"", ""Monitor""]",2199.76,{},277112,0,Europe +2023-05-20,31885,8874,"[""Monitor"", ""Laptop"", ""Charger""]",4843.25,{},2418,1,North America +2023-11-24,31886,408,"[""Keyboard""]",2313.04,"{""promo"": ""5%""}",121908,0,South America +2024-04-28,31887,9705,"[""Monitor""]",3811.01,"{"""": ""12%""}",297234,0,Asia +2023-03-17,31888,6617,"[""Headphones"", ""Keyboard"", ""Laptop""]",4757.4,"{""loyalty"": ""16%""}",71558,1,South America +2024-11-20,31889,8673,"[""Headphones"", ""Keyboard""]",3341.1,{},228551,0,Europe +2024-08-09,31890,9447,"[""Headphones"", ""Charger""]",2320.24,{},8269,0,Asia +2023-02-16,31891,5824,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1131.09,"{"""": ""14%""}",285774,1,North America +2023-07-15,31892,2420,"[""Headphones"", ""Charger""]",2255.99,{},240906,1,South America +2023-10-06,31893,9031,"[""Wireless Mouse"", ""Monitor""]",318.0,{},229406,1,North America +2023-10-16,31894,8116,"[""Wireless Mouse""]",3611.55,{},267687,0,North America +2023-12-04,31895,6120,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1424.44,"{""promo"": ""12%""}",124070,0,Africa +2024-02-28,31896,5796,"[""Monitor"", ""Charger""]",4571.12,"{""promo"": ""25%""}",209102,1,Asia +2024-11-14,31897,3341,"[""Headphones"", ""Laptop""]",2740.78,"{""seasonal"": ""8%""}",106192,0,North America +2023-08-29,31898,6333,"[""Phone"", ""Laptop"", ""Monitor""]",4520.41,"{""loyalty"": ""14%""}",207620,1,Africa +2023-04-19,31899,6056,"[""Keyboard""]",1388.09,{},71627,1,Africa +2024-03-02,31900,8065,"[""Phone"", ""Tablet"", ""Monitor""]",2630.94,"{""promo"": ""5%""}",201146,0,North America +2023-05-02,31901,4814,"[""Headphones""]",3883.97,{},211134,1,South America +2023-03-03,31902,4901,"[""Headphones""]",4413.87,{},128520,0,Europe +2023-06-03,31903,2496,"[""Charger"", ""Monitor""]",570.59,"{"""": ""29%""}",120566,0,Europe +2024-12-10,31904,5956,"[""Laptop"", ""Tablet""]",3332.91,"{"""": ""9%""}",218727,0,Africa +2023-08-25,31905,2007,"[""Charger"", ""Wireless Mouse""]",585.94,"{""promo"": ""16%""}",66560,0,Asia +2023-03-24,31906,9815,"[""Phone"", ""Wireless Mouse""]",1126.67,{},233401,0,Europe +2023-06-25,31907,7772,"[""Charger""]",2451.75,{},125420,0,Africa +2024-03-22,31908,295,"[""Keyboard"", ""Wireless Mouse""]",3925.64,"{""loyalty"": ""23%""}",119905,1,South America +2023-06-30,31909,2606,"[""Charger""]",3630.6,"{""loyalty"": ""14%""}",75539,1,Europe +2024-06-24,31910,2614,"[""Charger"", ""Laptop""]",1038.52,"{""seasonal"": ""9%""}",285991,1,Asia +2023-06-07,31911,9259,"[""Phone""]",1008.35,{},220359,1,Asia +2023-11-20,31912,9231,"[""Phone"", ""Tablet""]",3763.9,{},95418,0,Africa +2023-11-02,31913,901,"[""Headphones""]",1668.25,"{""seasonal"": ""19%""}",207163,0,North America +2024-04-28,31914,6304,"[""Headphones""]",4485.67,"{""promo"": ""20%""}",271839,1,Europe +2024-03-22,31915,679,"[""Charger"", ""Headphones""]",177.61,"{""loyalty"": ""6%""}",283918,0,North America +2024-04-27,31916,9124,"[""Tablet""]",652.88,{},60629,0,South America +2024-06-04,31917,6229,"[""Keyboard"", ""Phone""]",3779.73,{},77454,1,Europe +2024-04-13,31918,5374,"[""Wireless Mouse"", ""Keyboard""]",3852.32,{},257765,0,Asia +2024-05-19,31919,6992,"[""Headphones"", ""Keyboard""]",2083.73,"{""loyalty"": ""29%""}",241696,1,Africa +2024-06-02,31920,3017,"[""Charger"", ""Headphones"", ""Phone""]",4250.16,{},36789,0,Asia +2023-07-29,31921,7175,"[""Monitor"", ""Tablet""]",4726.24,"{"""": ""25%""}",260120,1,North America +2023-09-20,31922,1467,"[""Monitor"", ""Headphones"", ""Keyboard""]",1101.53,{},52713,1,North America +2024-06-26,31923,1994,"[""Monitor""]",2523.75,"{"""": ""27%""}",40911,0,North America +2023-09-10,31924,7727,"[""Laptop""]",2370.64,"{""promo"": ""21%""}",248906,0,South America +2024-01-09,31925,9274,"[""Headphones"", ""Laptop""]",223.49,"{"""": ""11%""}",106026,0,Asia +2023-03-03,31926,1677,"[""Charger""]",4282.33,"{""loyalty"": ""8%""}",7177,0,North America +2024-05-17,31927,7077,"[""Laptop"", ""Charger"", ""Monitor""]",3901.65,{},259946,1,Europe +2023-08-26,31928,9944,"[""Headphones""]",4245.46,{},235214,0,Asia +2023-07-18,31929,2498,"[""Monitor"", ""Keyboard""]",3371.34,"{""promo"": ""6%""}",1912,1,Europe +2023-08-14,31930,1580,"[""Charger""]",2082.91,{},96557,0,Africa +2024-11-10,31931,4282,"[""Charger"", ""Phone""]",1799.85,{},174535,1,North America +2024-05-22,31932,9041,"[""Laptop"", ""Charger""]",2628.58,"{""seasonal"": ""10%""}",224923,1,Africa +2024-07-12,31933,7750,"[""Keyboard""]",859.13,{},148619,0,Europe +2023-02-15,31934,3306,"[""Monitor""]",391.15,"{"""": ""28%""}",148638,0,North America +2024-10-13,31935,5913,"[""Monitor"", ""Tablet""]",4372.19,{},213912,0,North America +2023-01-30,31936,3311,"[""Keyboard""]",3188.25,{},141908,1,South America +2023-08-09,31937,967,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4513.98,"{"""": ""26%""}",195295,0,South America +2023-07-17,31938,1108,"[""Phone"", ""Monitor"", ""Keyboard""]",4946.83,"{"""": ""22%""}",238198,0,Asia +2023-12-22,31939,4512,"[""Headphones"", ""Tablet"", ""Charger""]",1813.59,{},28696,0,Asia +2023-03-22,31940,9677,"[""Phone""]",425.69,{},80959,0,North America +2024-11-14,31941,9946,"[""Laptop"", ""Headphones""]",4209.16,{},21483,1,South America +2023-07-21,31942,6070,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1803.17,{},210093,0,Asia +2023-01-06,31943,9487,"[""Tablet"", ""Charger""]",4837.98,"{""promo"": ""25%""}",97473,0,Asia +2023-12-12,31944,3187,"[""Charger""]",2427.86,"{""loyalty"": ""28%""}",116577,0,Asia +2023-09-14,31945,1592,"[""Headphones""]",3858.96,"{""seasonal"": ""25%""}",188550,1,North America +2024-06-04,31946,6234,"[""Tablet""]",3511.58,{},111703,1,South America +2024-01-17,31947,8180,"[""Charger""]",2362.43,{},141576,0,Europe +2023-11-07,31948,2540,"[""Monitor""]",2327.75,"{""seasonal"": ""6%""}",84798,0,North America +2023-07-15,31949,9307,"[""Charger"", ""Wireless Mouse""]",3146.4,{},174436,1,Asia +2024-03-07,31950,1847,"[""Wireless Mouse"", ""Tablet""]",307.76,"{"""": ""12%""}",79607,1,North America +2024-03-22,31951,9264,"[""Tablet"", ""Headphones""]",357.16,"{"""": ""27%""}",208623,0,Africa +2023-10-04,31952,3293,"[""Phone"", ""Laptop""]",3155.28,{},232467,1,Europe +2024-03-22,31953,5356,"[""Keyboard""]",1308.69,{},97223,1,Africa +2023-02-09,31954,6534,"[""Headphones""]",4310.25,{},181363,1,South America +2023-02-04,31955,3037,"[""Phone"", ""Tablet"", ""Laptop""]",86.47,{},268155,0,North America +2024-08-22,31956,6464,"[""Headphones"", ""Keyboard"", ""Monitor""]",4405.11,"{""seasonal"": ""17%""}",198068,1,Asia +2023-10-08,31957,1842,"[""Tablet""]",1525.24,"{""loyalty"": ""10%""}",165904,1,North America +2024-01-26,31958,9390,"[""Phone""]",1037.26,"{""seasonal"": ""26%""}",6324,0,North America +2024-02-27,31959,5414,"[""Keyboard"", ""Laptop"", ""Tablet""]",4469.28,{},127543,1,Asia +2023-08-30,31960,719,"[""Tablet"", ""Headphones"", ""Laptop""]",4419.74,{},211988,0,Asia +2024-09-19,31961,2595,"[""Keyboard"", ""Tablet""]",4757.04,"{""seasonal"": ""11%""}",15908,0,North America +2024-09-20,31962,473,"[""Laptop""]",2866.7,{},77951,0,Europe +2024-06-03,31963,3554,"[""Charger""]",3506.32,{},298047,0,Europe +2024-06-19,31964,8296,"[""Charger"", ""Keyboard"", ""Tablet""]",2515.19,"{"""": ""16%""}",99782,0,North America +2024-06-09,31965,4313,"[""Wireless Mouse"", ""Keyboard""]",2436.34,"{"""": ""23%""}",297533,1,South America +2024-07-07,31966,9443,"[""Keyboard""]",4210.87,"{""loyalty"": ""21%""}",77546,0,Europe +2023-04-18,31967,3905,"[""Laptop"", ""Phone""]",3567.34,"{"""": ""21%""}",102072,0,Africa +2024-03-11,31968,4490,"[""Charger""]",3817.07,{},21055,0,Africa +2023-06-09,31969,5287,"[""Monitor""]",121.93,{},232570,0,Asia +2024-04-06,31970,1918,"[""Headphones"", ""Tablet"", ""Charger""]",4960.11,"{"""": ""22%""}",213537,0,Africa +2024-01-09,31971,1410,"[""Laptop""]",263.78,{},189695,1,North America +2023-09-26,31972,8898,"[""Headphones"", ""Keyboard"", ""Phone""]",2261.88,"{""seasonal"": ""17%""}",257956,0,South America +2024-12-24,31973,7256,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",390.6,{},219218,0,South America +2023-04-10,31974,1807,"[""Wireless Mouse""]",4983.54,{},78673,1,Africa +2023-11-01,31975,7111,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1015.69,"{"""": ""12%""}",164468,1,Africa +2023-06-03,31976,77,"[""Charger""]",3688.54,{},279028,1,Europe +2024-03-06,31977,3647,"[""Headphones"", ""Wireless Mouse""]",2217.92,{},212703,1,South America +2023-04-28,31978,9642,"[""Wireless Mouse"", ""Charger""]",2585.38,{},162248,0,South America +2023-08-07,31979,9130,"[""Keyboard"", ""Monitor"", ""Charger""]",3282.96,{},286014,1,North America +2023-03-03,31980,3580,"[""Monitor""]",3454.67,{},268933,0,Africa +2023-06-05,31981,2255,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",554.29,"{""promo"": ""12%""}",130871,0,Asia +2023-04-19,31982,6622,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",557.31,{},269458,1,Asia +2023-02-16,31983,23,"[""Charger"", ""Phone"", ""Keyboard""]",4148.93,{},249979,1,North America +2024-10-30,31984,8583,"[""Charger"", ""Monitor"", ""Laptop""]",1990.03,{},122976,1,South America +2024-07-16,31985,5973,"[""Tablet"", ""Keyboard"", ""Charger""]",3664.11,{},60391,0,Africa +2023-08-08,31986,8926,"[""Charger"", ""Monitor""]",2597.33,"{""promo"": ""11%""}",65129,1,Asia +2024-10-29,31987,3412,"[""Monitor"", ""Phone"", ""Charger""]",4801.59,{},37495,1,Europe +2024-09-09,31988,8174,"[""Laptop""]",3256.48,"{"""": ""23%""}",102982,0,Europe +2024-10-19,31989,2186,"[""Keyboard""]",1284.06,"{""seasonal"": ""11%""}",113415,0,South America +2024-05-26,31990,1392,"[""Headphones"", ""Phone""]",759.58,"{""loyalty"": ""18%""}",171329,0,North America +2023-05-15,31991,966,"[""Charger"", ""Laptop""]",1534.45,{},133337,0,South America +2023-06-18,31992,3791,"[""Laptop"", ""Headphones"", ""Tablet""]",4113.55,{},93913,1,Africa +2023-08-20,31993,7448,"[""Headphones"", ""Phone"", ""Keyboard""]",1899.71,"{"""": ""21%""}",274347,1,Africa +2023-10-13,31994,3752,"[""Phone"", ""Monitor""]",522.15,{},180400,0,Europe +2024-04-19,31995,3844,"[""Monitor"", ""Phone"", ""Laptop""]",1837.83,"{""loyalty"": ""25%""}",147441,0,Asia +2024-01-08,31996,9512,"[""Monitor"", ""Tablet""]",2450.32,"{""promo"": ""26%""}",197476,0,North America +2023-08-02,31997,398,"[""Headphones"", ""Keyboard"", ""Monitor""]",3637.6,"{""loyalty"": ""27%""}",28867,0,Africa +2023-12-06,31998,8603,"[""Laptop""]",3591.75,{},261314,1,South America +2024-04-03,31999,7466,"[""Wireless Mouse""]",4388.51,{},207697,0,Asia +2024-03-17,32000,9976,"[""Wireless Mouse""]",3799.9,"{""seasonal"": ""16%""}",248116,0,Europe +2023-07-23,32001,7591,"[""Wireless Mouse"", ""Phone""]",4555.89,{},120898,1,Asia +2023-02-01,32002,195,"[""Wireless Mouse""]",1266.43,{},32922,1,Europe +2024-01-20,32003,803,"[""Laptop"", ""Headphones"", ""Tablet""]",4839.69,{},170745,0,Europe +2023-05-01,32004,7552,"[""Laptop""]",2076.03,"{""promo"": ""6%""}",287822,1,Europe +2024-12-27,32005,6687,"[""Phone"", ""Keyboard"", ""Laptop""]",3089.74,"{""loyalty"": ""6%""}",229875,0,Asia +2024-03-26,32006,6415,"[""Laptop""]",157.7,"{""promo"": ""21%""}",210428,1,Europe +2023-09-05,32007,1842,"[""Phone"", ""Headphones""]",1873.53,"{""seasonal"": ""14%""}",98146,0,Europe +2024-05-02,32008,6795,"[""Charger"", ""Tablet"", ""Laptop""]",1951.99,"{""promo"": ""6%""}",140996,0,North America +2024-09-09,32009,5949,"[""Phone"", ""Wireless Mouse""]",3915.62,"{""loyalty"": ""7%""}",185578,1,Asia +2023-02-16,32010,1650,"[""Tablet""]",711.29,"{""loyalty"": ""24%""}",253488,1,Europe +2023-07-30,32011,7971,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1161.44,"{"""": ""18%""}",135077,0,Europe +2024-01-05,32012,4862,"[""Wireless Mouse"", ""Monitor""]",3995.46,"{""seasonal"": ""21%""}",239283,0,Asia +2023-04-27,32013,6952,"[""Wireless Mouse"", ""Keyboard""]",947.98,"{""loyalty"": ""11%""}",138527,0,South America +2024-10-25,32014,3623,"[""Phone"", ""Monitor"", ""Tablet""]",1921.49,{},226564,1,North America +2023-06-10,32015,5401,"[""Charger"", ""Headphones"", ""Tablet""]",627.61,{},177817,1,South America +2024-12-28,32016,2252,"[""Headphones"", ""Keyboard"", ""Tablet""]",4712.39,{},78292,0,Asia +2024-12-06,32017,4896,"[""Headphones"", ""Charger"", ""Laptop""]",4318.53,"{"""": ""23%""}",171614,0,South America +2024-09-08,32018,1948,"[""Wireless Mouse""]",2395.71,"{""seasonal"": ""20%""}",48509,1,Europe +2023-06-27,32019,3666,"[""Charger"", ""Laptop"", ""Tablet""]",2634.3,{},231431,0,Asia +2023-10-17,32020,5118,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1180.48,"{""promo"": ""18%""}",120819,1,North America +2024-07-21,32021,6140,"[""Charger""]",989.16,"{""seasonal"": ""16%""}",199160,0,South America +2024-02-06,32022,1972,"[""Headphones"", ""Monitor"", ""Phone""]",4064.56,{},166129,0,North America +2023-08-03,32023,7762,"[""Charger"", ""Laptop""]",1102.03,{},24842,1,Africa +2024-06-05,32024,868,"[""Keyboard""]",2772.7,{},203595,1,Africa +2023-10-04,32025,94,"[""Phone"", ""Headphones"", ""Tablet""]",1817.46,"{"""": ""13%""}",189036,0,Europe +2023-11-05,32026,4231,"[""Keyboard"", ""Headphones""]",172.17,"{"""": ""12%""}",84353,1,Asia +2023-05-12,32027,2785,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2470.29,{},66381,1,Europe +2023-07-10,32028,6560,"[""Keyboard"", ""Headphones"", ""Monitor""]",4797.32,"{"""": ""12%""}",287719,1,Europe +2024-01-08,32029,6692,"[""Phone"", ""Keyboard"", ""Monitor""]",4174.81,"{""promo"": ""15%""}",273669,0,Europe +2023-05-08,32030,1047,"[""Tablet"", ""Laptop"", ""Phone""]",4340.7,{},64969,1,Europe +2024-01-18,32031,1335,"[""Wireless Mouse"", ""Laptop""]",2109.86,"{""promo"": ""23%""}",213825,0,North America +2023-06-03,32032,7818,"[""Charger"", ""Headphones"", ""Phone""]",2277.0,"{""promo"": ""23%""}",269677,1,Asia +2024-06-21,32033,5164,"[""Phone""]",697.02,{},113618,0,Africa +2023-08-03,32034,3941,"[""Charger"", ""Phone""]",2387.9,"{""seasonal"": ""24%""}",62213,0,Asia +2024-07-27,32035,8001,"[""Tablet"", ""Headphones""]",2577.47,"{""seasonal"": ""26%""}",248203,0,South America +2023-12-26,32036,7915,"[""Keyboard""]",2070.83,"{"""": ""23%""}",47631,1,South America +2024-04-16,32037,5974,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3212.88,{},72855,1,Africa +2023-02-21,32038,3848,"[""Tablet"", ""Headphones""]",2973.18,"{""seasonal"": ""26%""}",81335,0,Asia +2024-05-26,32039,2558,"[""Wireless Mouse"", ""Monitor""]",2538.13,"{""promo"": ""10%""}",32846,1,North America +2023-12-17,32040,9788,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3313.23,"{"""": ""21%""}",253259,1,Asia +2023-12-16,32041,8905,"[""Wireless Mouse""]",3304.42,{},29033,1,Asia +2023-03-21,32042,2301,"[""Wireless Mouse"", ""Headphones""]",2863.65,{},29241,1,Europe +2023-01-17,32043,6679,"[""Phone""]",4298.51,"{""loyalty"": ""27%""}",250442,0,Asia +2024-10-31,32044,43,"[""Laptop"", ""Tablet"", ""Charger""]",1957.14,"{""seasonal"": ""15%""}",214334,1,Europe +2024-11-20,32045,7945,"[""Tablet"", ""Monitor""]",2145.02,"{""promo"": ""20%""}",100894,1,North America +2024-08-10,32046,7348,"[""Monitor""]",405.32,"{"""": ""16%""}",299756,0,Africa +2023-03-15,32047,9378,"[""Keyboard"", ""Headphones"", ""Laptop""]",684.63,{},186502,1,Asia +2023-08-02,32048,7990,"[""Monitor"", ""Laptop"", ""Keyboard""]",4144.73,"{""promo"": ""17%""}",198048,0,Europe +2024-02-26,32049,3598,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",928.54,"{"""": ""8%""}",127224,1,Europe +2023-09-26,32050,8166,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2046.57,{},154937,0,Europe +2023-10-31,32051,557,"[""Charger""]",2038.6,"{""loyalty"": ""19%""}",145154,0,North America +2024-06-20,32052,8956,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1209.67,"{"""": ""7%""}",271058,0,Asia +2024-07-03,32053,1192,"[""Wireless Mouse""]",362.5,{},243134,0,North America +2024-05-24,32054,7313,"[""Wireless Mouse""]",2170.56,"{""promo"": ""17%""}",97924,1,Africa +2024-03-22,32055,620,"[""Laptop"", ""Keyboard""]",2423.73,"{""loyalty"": ""6%""}",247378,1,South America +2024-12-11,32056,2468,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",879.34,"{""loyalty"": ""6%""}",154189,0,Africa +2023-01-02,32057,8919,"[""Phone""]",986.92,{},134514,1,Asia +2024-11-17,32058,8641,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1575.3,"{""promo"": ""12%""}",66495,0,Africa +2023-07-21,32059,896,"[""Headphones"", ""Laptop"", ""Phone""]",3375.59,"{"""": ""26%""}",66199,1,North America +2024-03-24,32060,7031,"[""Headphones""]",295.58,{},144658,1,North America +2024-07-13,32061,3908,"[""Tablet""]",888.31,{},193747,1,Europe +2024-07-29,32062,5739,"[""Monitor""]",4052.48,"{""loyalty"": ""12%""}",12484,1,South America +2023-05-31,32063,1951,"[""Monitor"", ""Headphones"", ""Phone""]",1482.69,"{""seasonal"": ""17%""}",44245,0,South America +2024-01-25,32064,2332,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1502.35,"{"""": ""25%""}",257509,0,Asia +2023-01-01,32065,1343,"[""Laptop"", ""Monitor""]",4819.92,"{""seasonal"": ""30%""}",286761,0,Europe +2023-11-14,32066,1103,"[""Monitor"", ""Keyboard"", ""Charger""]",1323.22,"{""promo"": ""14%""}",51332,0,North America +2024-09-24,32067,5172,"[""Phone"", ""Charger""]",1375.56,"{"""": ""8%""}",219372,1,Europe +2024-05-26,32068,4967,"[""Headphones""]",1935.09,"{""seasonal"": ""20%""}",132804,0,North America +2023-07-03,32069,560,"[""Tablet""]",2235.14,"{"""": ""27%""}",115900,0,Asia +2023-03-21,32070,1638,"[""Monitor"", ""Keyboard""]",1737.33,{},158258,0,Africa +2024-12-13,32071,9734,"[""Headphones"", ""Charger""]",4646.07,{},150249,1,South America +2024-09-02,32072,1048,"[""Monitor""]",1325.17,"{""seasonal"": ""21%""}",198682,1,South America +2023-03-28,32073,7558,"[""Keyboard"", ""Laptop"", ""Monitor""]",1713.34,{},117761,0,North America +2023-09-22,32074,6834,"[""Tablet"", ""Monitor""]",4012.42,"{""loyalty"": ""27%""}",292088,1,Africa +2023-01-06,32075,5337,"[""Phone"", ""Wireless Mouse""]",3962.46,{},295774,1,Europe +2024-03-20,32076,401,"[""Monitor""]",2592.85,"{""promo"": ""12%""}",152455,0,Europe +2024-08-04,32077,4089,"[""Headphones"", ""Charger"", ""Monitor""]",226.65,"{"""": ""30%""}",170960,0,North America +2024-02-03,32078,7751,"[""Charger"", ""Keyboard"", ""Tablet""]",102.57,"{"""": ""16%""}",186043,0,Africa +2024-02-19,32079,8811,"[""Keyboard""]",4317.64,{},265905,0,Europe +2024-06-06,32080,4111,"[""Charger"", ""Keyboard""]",538.71,"{""loyalty"": ""11%""}",90886,1,North America +2024-08-09,32081,2551,"[""Phone"", ""Laptop""]",1988.52,{},240962,0,Asia +2023-12-15,32082,7714,"[""Headphones""]",1263.75,{},137763,0,Europe +2024-12-23,32083,1915,"[""Phone"", ""Keyboard"", ""Charger""]",555.67,{},114310,0,Europe +2023-06-30,32084,4337,"[""Wireless Mouse""]",2196.07,{},222129,0,South America +2023-08-05,32085,494,"[""Headphones""]",1161.23,"{""seasonal"": ""18%""}",71021,0,North America +2023-05-26,32086,2197,"[""Headphones"", ""Wireless Mouse""]",2842.41,"{""promo"": ""15%""}",106668,1,Asia +2023-03-29,32087,3728,"[""Monitor""]",4645.99,{},19573,0,Europe +2023-10-10,32088,2042,"[""Phone"", ""Charger"", ""Laptop""]",3818.94,{},224119,0,Asia +2024-12-31,32089,5170,"[""Headphones"", ""Tablet"", ""Keyboard""]",3195.76,{},97751,1,Europe +2024-02-17,32090,604,"[""Keyboard"", ""Wireless Mouse""]",2537.14,"{""promo"": ""28%""}",249536,1,Europe +2024-11-29,32091,2276,"[""Phone""]",470.54,{},106645,0,Africa +2023-01-25,32092,7593,"[""Phone"", ""Charger""]",4724.24,{},160849,0,South America +2024-09-27,32093,7540,"[""Tablet"", ""Monitor"", ""Charger""]",122.28,"{""loyalty"": ""14%""}",95388,1,Asia +2023-10-29,32094,7318,"[""Wireless Mouse"", ""Phone""]",437.6,"{""promo"": ""15%""}",78478,1,Asia +2023-01-19,32095,61,"[""Laptop""]",3723.18,{},239437,1,North America +2024-07-02,32096,2712,"[""Charger""]",3461.43,"{""promo"": ""5%""}",200832,0,Africa +2024-01-25,32097,1154,"[""Phone""]",4800.15,"{""loyalty"": ""26%""}",23907,0,Europe +2023-12-10,32098,8594,"[""Monitor""]",680.42,"{""promo"": ""17%""}",40267,0,South America +2023-09-18,32099,3505,"[""Tablet"", ""Keyboard""]",2870.59,{},3822,1,Asia +2023-01-05,32100,7843,"[""Monitor"", ""Wireless Mouse""]",2867.63,"{"""": ""24%""}",163128,0,South America +2024-02-03,32101,5222,"[""Phone"", ""Monitor""]",585.54,"{""seasonal"": ""9%""}",226355,1,Asia +2023-10-18,32102,451,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3805.53,{},100732,1,North America +2023-12-14,32103,5082,"[""Charger"", ""Headphones""]",1821.24,{},28476,0,South America +2024-10-20,32104,6162,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2231.63,"{""seasonal"": ""20%""}",22064,0,Africa +2024-10-06,32105,7784,"[""Keyboard""]",4797.96,{},116557,1,Europe +2024-02-29,32106,6473,"[""Laptop"", ""Wireless Mouse""]",4748.31,"{"""": ""12%""}",131706,1,Europe +2023-05-13,32107,7432,"[""Laptop""]",3747.05,"{""loyalty"": ""26%""}",167322,0,Africa +2023-11-09,32108,458,"[""Phone"", ""Charger""]",1158.88,{},96230,0,South America +2023-01-24,32109,8602,"[""Laptop"", ""Keyboard""]",160.0,"{""seasonal"": ""17%""}",275363,1,Asia +2024-10-11,32110,4459,"[""Keyboard""]",4073.99,"{""seasonal"": ""20%""}",107759,1,Africa +2024-11-13,32111,140,"[""Charger""]",3789.25,"{""promo"": ""16%""}",159081,1,Europe +2023-08-30,32112,626,"[""Phone""]",3683.87,{},160632,0,Europe +2023-06-01,32113,3746,"[""Monitor""]",3092.35,"{"""": ""14%""}",248936,0,North America +2024-11-10,32114,2413,"[""Charger""]",2436.01,"{""promo"": ""17%""}",180958,1,Asia +2023-12-28,32115,3608,"[""Laptop"", ""Monitor""]",1589.88,{},216797,0,North America +2023-06-09,32116,9265,"[""Keyboard"", ""Phone""]",1096.14,{},135225,1,South America +2023-04-16,32117,9359,"[""Phone""]",4280.18,"{""loyalty"": ""10%""}",27339,0,North America +2024-09-18,32118,4081,"[""Headphones"", ""Keyboard""]",3724.17,"{""loyalty"": ""13%""}",162716,0,North America +2024-03-22,32119,8908,"[""Tablet"", ""Phone""]",4503.4,{},34204,1,Asia +2024-01-04,32120,356,"[""Laptop"", ""Tablet""]",4611.41,"{"""": ""12%""}",110960,0,North America +2024-04-25,32121,1922,"[""Monitor"", ""Charger"", ""Phone""]",247.46,"{""promo"": ""26%""}",114166,0,South America +2023-12-10,32122,1417,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",202.35,"{"""": ""24%""}",8555,0,North America +2024-11-12,32123,9904,"[""Keyboard""]",2621.81,"{""loyalty"": ""13%""}",216804,0,Africa +2023-11-13,32124,5921,"[""Phone"", ""Tablet"", ""Charger""]",2390.34,"{""loyalty"": ""27%""}",185573,0,South America +2024-02-09,32125,158,"[""Charger"", ""Monitor""]",1689.17,{},25847,0,Asia +2024-10-24,32126,8248,"[""Phone""]",1741.82,"{""loyalty"": ""14%""}",65005,0,Asia +2023-01-14,32127,3748,"[""Phone"", ""Headphones""]",3429.19,"{""promo"": ""11%""}",293321,0,Africa +2024-10-05,32128,1521,"[""Laptop""]",3922.47,"{""seasonal"": ""28%""}",173257,1,Asia +2023-05-31,32129,2232,"[""Headphones"", ""Charger""]",1034.58,"{""seasonal"": ""30%""}",134683,1,Asia +2023-09-16,32130,7475,"[""Headphones"", ""Laptop"", ""Tablet""]",2626.38,"{""loyalty"": ""27%""}",10187,1,North America +2023-04-02,32131,2014,"[""Phone""]",1434.3,"{""seasonal"": ""23%""}",179549,1,South America +2024-03-12,32132,5190,"[""Keyboard"", ""Phone"", ""Tablet""]",2080.13,"{""promo"": ""22%""}",92450,1,South America +2023-08-28,32133,1487,"[""Keyboard""]",865.7,{},288833,0,Asia +2023-11-18,32134,8961,"[""Headphones"", ""Charger"", ""Laptop""]",4624.78,{},123764,1,Europe +2024-01-13,32135,2385,"[""Wireless Mouse"", ""Phone""]",1506.19,{},191715,0,South America +2023-03-15,32136,6639,"[""Keyboard"", ""Charger"", ""Laptop""]",980.45,{},138068,1,Asia +2024-01-03,32137,5558,"[""Headphones"", ""Laptop""]",1482.51,"{""loyalty"": ""18%""}",40995,1,North America +2023-12-05,32138,1635,"[""Monitor""]",2188.92,"{"""": ""27%""}",238490,0,Europe +2023-02-19,32139,1054,"[""Headphones""]",4305.96,"{""promo"": ""17%""}",141770,0,Africa +2024-09-13,32140,3045,"[""Charger""]",4640.8,"{""promo"": ""9%""}",218631,0,North America +2023-07-09,32141,8948,"[""Tablet""]",346.2,{},86957,1,Asia +2024-06-20,32142,9133,"[""Phone"", ""Wireless Mouse""]",1623.86,{},30923,1,South America +2023-06-06,32143,8800,"[""Wireless Mouse""]",4544.55,{},108079,0,North America +2024-12-14,32144,3669,"[""Phone""]",2897.27,{},37681,1,North America +2023-08-09,32145,7808,"[""Headphones"", ""Tablet"", ""Keyboard""]",369.51,"{""promo"": ""20%""}",278162,0,Asia +2024-09-12,32146,8539,"[""Headphones""]",3860.53,{},196404,0,South America +2023-12-21,32147,1592,"[""Phone"", ""Laptop""]",471.3,{},274335,1,North America +2024-07-22,32148,9800,"[""Tablet""]",1237.55,{},233943,1,Europe +2023-12-02,32149,5341,"[""Headphones"", ""Monitor""]",4912.15,{},140530,1,North America +2023-06-16,32150,4032,"[""Wireless Mouse"", ""Phone""]",3406.33,{},132320,1,Europe +2023-06-19,32151,1401,"[""Wireless Mouse""]",4984.22,{},168472,0,Asia +2023-09-25,32152,5946,"[""Tablet"", ""Charger""]",1547.54,{},114611,0,Asia +2024-12-22,32153,7936,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",478.29,{},183381,0,Africa +2023-11-05,32154,7871,"[""Tablet"", ""Keyboard"", ""Phone""]",133.91,{},277308,1,South America +2023-08-02,32155,5859,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2961.38,{},80291,1,Europe +2023-03-03,32156,804,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3599.45,{},222689,0,Asia +2023-09-01,32157,5873,"[""Laptop"", ""Tablet"", ""Headphones""]",3954.69,{},72910,1,North America +2023-01-24,32158,6582,"[""Charger"", ""Phone""]",2076.9,{},57928,0,North America +2023-06-02,32159,2171,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",842.29,"{""promo"": ""5%""}",127118,1,Europe +2024-01-16,32160,7545,"[""Tablet""]",4589.84,{},182224,1,South America +2024-12-14,32161,2711,"[""Monitor"", ""Charger"", ""Keyboard""]",185.38,"{""promo"": ""14%""}",149387,0,Europe +2023-03-04,32162,1087,"[""Monitor""]",3028.15,{},296539,1,Asia +2023-09-06,32163,9577,"[""Laptop""]",2380.36,{},188983,0,Africa +2024-05-30,32164,3030,"[""Tablet"", ""Headphones""]",1008.42,"{""loyalty"": ""22%""}",12794,0,Europe +2024-10-19,32165,7740,"[""Tablet"", ""Headphones"", ""Charger""]",1672.96,{},171525,0,North America +2023-12-03,32166,9832,"[""Charger"", ""Headphones""]",1244.35,"{"""": ""29%""}",8407,1,Asia +2023-03-19,32167,8179,"[""Laptop"", ""Phone""]",3717.47,{},154335,0,North America +2024-12-05,32168,3038,"[""Monitor"", ""Keyboard""]",4295.63,{},13011,1,Asia +2023-07-19,32169,5418,"[""Phone"", ""Keyboard""]",339.95,"{"""": ""12%""}",10981,0,North America +2024-06-11,32170,8796,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4182.76,{},54581,1,Europe +2023-08-13,32171,8849,"[""Headphones""]",2335.25,"{""loyalty"": ""17%""}",227847,0,North America +2023-12-01,32172,53,"[""Laptop"", ""Keyboard"", ""Headphones""]",1925.75,{},266839,1,Europe +2024-03-02,32173,3850,"[""Monitor"", ""Laptop"", ""Keyboard""]",2234.58,"{"""": ""29%""}",164854,1,South America +2024-09-11,32174,4343,"[""Tablet"", ""Charger"", ""Keyboard""]",1681.36,"{"""": ""23%""}",243016,0,South America +2023-06-14,32175,6513,"[""Keyboard""]",3504.63,"{""promo"": ""14%""}",188749,0,South America +2023-05-05,32176,657,"[""Tablet"", ""Keyboard"", ""Charger""]",114.27,"{""seasonal"": ""9%""}",78534,1,Europe +2024-06-27,32177,6005,"[""Laptop""]",2755.12,{},192815,0,Asia +2024-07-13,32178,6205,"[""Headphones"", ""Laptop"", ""Phone""]",2037.48,{},174689,1,Africa +2024-07-26,32179,8219,"[""Wireless Mouse""]",1351.12,{},79255,0,South America +2024-03-14,32180,6975,"[""Headphones"", ""Laptop"", ""Tablet""]",1786.91,{},46856,0,South America +2024-03-30,32181,3865,"[""Tablet"", ""Charger"", ""Headphones""]",3593.84,"{""loyalty"": ""21%""}",206758,1,South America +2023-07-10,32182,6643,"[""Phone"", ""Monitor"", ""Charger""]",1140.47,"{""loyalty"": ""19%""}",75595,1,Europe +2024-11-07,32183,8085,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4453.35,{},60291,0,North America +2023-07-26,32184,8826,"[""Tablet""]",4987.43,{},4230,1,Asia +2023-07-03,32185,1813,"[""Headphones"", ""Keyboard""]",869.74,"{"""": ""23%""}",68438,1,Asia +2023-03-06,32186,9354,"[""Keyboard"", ""Tablet""]",1515.42,"{""loyalty"": ""11%""}",122645,0,South America +2023-11-19,32187,1375,"[""Charger"", ""Wireless Mouse""]",739.75,"{""loyalty"": ""22%""}",225048,0,North America +2024-06-20,32188,2783,"[""Laptop""]",2018.27,{},206633,1,Africa +2023-08-24,32189,2763,"[""Tablet"", ""Phone"", ""Monitor""]",922.26,{},19379,1,Asia +2023-11-25,32190,8642,"[""Monitor""]",2747.24,{},234037,0,North America +2024-06-20,32191,2628,"[""Keyboard""]",2694.81,"{"""": ""29%""}",71020,0,North America +2024-01-29,32192,8057,"[""Charger"", ""Tablet""]",3278.58,"{"""": ""6%""}",157900,1,North America +2024-06-04,32193,8441,"[""Charger"", ""Keyboard"", ""Laptop""]",3791.85,{},100682,1,South America +2023-05-11,32194,6863,"[""Tablet""]",4565.24,{},217577,0,Africa +2024-11-21,32195,6413,"[""Keyboard"", ""Headphones""]",1509.41,{},158924,0,Africa +2024-12-29,32196,6074,"[""Monitor""]",4921.05,{},59430,1,Asia +2023-06-08,32197,814,"[""Laptop""]",2618.01,{},272319,1,Asia +2023-11-22,32198,6541,"[""Laptop"", ""Phone""]",1995.89,"{"""": ""10%""}",28956,1,Africa +2024-01-16,32199,4704,"[""Laptop"", ""Tablet""]",3124.8,"{""loyalty"": ""20%""}",95718,0,Europe +2024-12-13,32200,5553,"[""Charger"", ""Keyboard"", ""Monitor""]",3615.5,{},215822,0,South America +2024-05-15,32201,1284,"[""Laptop""]",3513.5,{},257178,0,Europe +2024-05-22,32202,6960,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4442.76,{},14382,0,Asia +2024-06-23,32203,3380,"[""Monitor""]",4235.17,"{"""": ""18%""}",278823,0,North America +2024-04-15,32204,2896,"[""Keyboard"", ""Charger""]",129.08,{},224349,1,North America +2023-11-16,32205,5473,"[""Headphones"", ""Keyboard"", ""Phone""]",3137.24,{},11443,1,South America +2023-03-31,32206,6662,"[""Charger"", ""Tablet""]",3658.33,{},139781,1,South America +2023-05-28,32207,1791,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1809.37,"{""loyalty"": ""8%""}",103784,1,Africa +2024-10-04,32208,9574,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2449.04,"{"""": ""5%""}",168894,1,Asia +2023-07-30,32209,8249,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1735.35,{},42645,1,Africa +2024-09-27,32210,4068,"[""Monitor""]",2241.65,"{""seasonal"": ""8%""}",12743,0,Asia +2023-12-29,32211,8154,"[""Monitor""]",968.99,"{""seasonal"": ""13%""}",44209,0,Africa +2023-05-06,32212,8799,"[""Laptop""]",1480.56,"{""promo"": ""26%""}",89216,0,Africa +2024-11-06,32213,2500,"[""Wireless Mouse""]",4928.63,"{""seasonal"": ""8%""}",36034,1,Europe +2024-12-27,32214,3371,"[""Charger"", ""Headphones""]",4036.47,{},215669,1,Asia +2024-09-02,32215,6216,"[""Monitor""]",2650.65,"{"""": ""21%""}",33812,0,Africa +2023-03-30,32216,7676,"[""Wireless Mouse""]",706.01,{},103777,0,Europe +2024-12-13,32217,8135,"[""Monitor""]",3975.36,"{""promo"": ""30%""}",59271,1,Africa +2024-12-21,32218,5054,"[""Headphones"", ""Monitor"", ""Tablet""]",842.25,{},124665,0,Europe +2024-10-06,32219,920,"[""Wireless Mouse"", ""Charger""]",4988.99,"{""seasonal"": ""20%""}",164977,0,South America +2023-07-08,32220,427,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",780.7,{},223399,0,Europe +2023-12-30,32221,818,"[""Wireless Mouse""]",967.38,"{"""": ""28%""}",108922,1,South America +2024-11-19,32222,8203,"[""Tablet"", ""Charger"", ""Headphones""]",3224.49,"{"""": ""16%""}",257673,1,Asia +2023-06-07,32223,1359,"[""Tablet"", ""Monitor"", ""Keyboard""]",1770.47,{},143539,1,Africa +2024-12-25,32224,8490,"[""Monitor""]",848.55,{},26768,0,Africa +2024-05-24,32225,377,"[""Phone""]",428.85,"{""loyalty"": ""14%""}",253175,0,Asia +2023-03-29,32226,2456,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4655.55,"{"""": ""10%""}",66434,1,Europe +2023-04-02,32227,6194,"[""Phone"", ""Charger""]",1104.95,{},81267,1,Europe +2024-07-28,32228,2903,"[""Keyboard""]",1152.46,"{""promo"": ""23%""}",237142,0,Asia +2024-06-10,32229,5792,"[""Keyboard"", ""Phone"", ""Charger""]",3134.83,{},86206,1,North America +2024-05-08,32230,7603,"[""Phone"", ""Charger"", ""Wireless Mouse""]",567.59,"{""seasonal"": ""8%""}",245460,1,South America +2024-10-13,32231,4957,"[""Charger"", ""Wireless Mouse""]",806.98,"{""seasonal"": ""29%""}",113464,1,Asia +2024-02-25,32232,4603,"[""Keyboard""]",943.76,{},14816,1,South America +2024-07-10,32233,7158,"[""Wireless Mouse"", ""Laptop""]",184.36,{},259421,1,North America +2024-01-27,32234,5926,"[""Tablet"", ""Laptop""]",2562.59,{},17638,1,South America +2023-03-20,32235,3871,"[""Tablet"", ""Keyboard""]",2651.19,{},192574,0,Africa +2023-02-20,32236,6389,"[""Wireless Mouse""]",4439.56,"{""promo"": ""8%""}",138548,1,South America +2023-11-14,32237,309,"[""Keyboard"", ""Charger""]",2201.29,"{""loyalty"": ""30%""}",158909,0,Europe +2023-11-24,32238,9414,"[""Laptop""]",1443.44,"{""seasonal"": ""21%""}",55042,0,Africa +2023-01-16,32239,8187,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3547.35,"{""promo"": ""27%""}",158423,0,South America +2024-06-30,32240,7975,"[""Tablet""]",1259.0,{},288872,0,Europe +2023-09-01,32241,5119,"[""Charger""]",3322.26,"{""seasonal"": ""29%""}",101542,0,Africa +2024-07-24,32242,321,"[""Charger"", ""Tablet"", ""Monitor""]",566.54,"{""promo"": ""11%""}",120583,1,North America +2023-11-28,32243,2933,"[""Phone""]",4703.29,{},298263,1,North America +2023-01-01,32244,7114,"[""Keyboard""]",376.31,{},165146,1,Asia +2023-02-27,32245,9468,"[""Wireless Mouse"", ""Monitor""]",881.71,{},100392,0,Africa +2024-03-12,32246,43,"[""Tablet""]",3421.81,{},90206,0,Europe +2024-02-03,32247,5393,"[""Laptop""]",1960.21,{},38242,1,South America +2023-05-30,32248,8540,"[""Keyboard""]",2724.0,{},263412,1,Europe +2024-04-11,32249,3972,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1548.14,{},248635,0,Africa +2023-09-12,32250,9118,"[""Phone""]",4127.09,{},57422,0,Europe +2024-08-20,32251,8110,"[""Keyboard""]",4731.84,"{""seasonal"": ""5%""}",76159,1,Africa +2024-01-05,32252,6823,"[""Tablet"", ""Phone""]",3866.92,"{""promo"": ""13%""}",43713,1,Africa +2023-05-18,32253,384,"[""Keyboard""]",3582.69,{},155007,1,North America +2024-05-30,32254,910,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4492.29,{},203630,0,South America +2024-02-18,32255,9948,"[""Laptop"", ""Wireless Mouse""]",486.1,"{""promo"": ""23%""}",58043,0,North America +2023-04-15,32256,4096,"[""Monitor"", ""Keyboard"", ""Headphones""]",1449.6,"{""promo"": ""16%""}",238769,1,Africa +2024-07-19,32257,8992,"[""Tablet"", ""Wireless Mouse""]",268.78,{},247334,1,Europe +2023-08-11,32258,5018,"[""Tablet"", ""Charger""]",4883.09,"{""seasonal"": ""13%""}",18874,1,Europe +2024-03-04,32259,9431,"[""Keyboard"", ""Laptop"", ""Headphones""]",4149.26,{},162408,1,Africa +2024-09-10,32260,1196,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2119.54,{},160581,0,South America +2023-05-14,32261,3524,"[""Tablet"", ""Monitor""]",2724.53,{},73638,0,Asia +2023-11-12,32262,1025,"[""Phone""]",160.9,{},142096,0,Africa +2023-07-17,32263,1572,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2910.72,{},82242,0,South America +2024-06-06,32264,4047,"[""Monitor"", ""Keyboard"", ""Laptop""]",329.05,{},162331,0,South America +2024-04-14,32265,7173,"[""Phone"", ""Tablet"", ""Headphones""]",3937.78,"{""seasonal"": ""23%""}",181720,1,South America +2024-06-28,32266,3717,"[""Tablet"", ""Monitor""]",2949.42,{},55710,1,North America +2024-11-10,32267,8764,"[""Laptop"", ""Charger"", ""Monitor""]",3987.06,{},235480,1,Asia +2023-01-19,32268,7939,"[""Charger"", ""Monitor"", ""Laptop""]",2817.12,"{""seasonal"": ""18%""}",95978,0,Africa +2024-02-16,32269,6178,"[""Keyboard""]",4899.16,{},17908,1,Europe +2024-12-29,32270,6274,"[""Headphones"", ""Charger"", ""Keyboard""]",4057.56,{},254046,0,Asia +2024-03-20,32271,9410,"[""Laptop"", ""Headphones"", ""Tablet""]",1252.35,"{""promo"": ""14%""}",207143,1,South America +2023-04-18,32272,1642,"[""Laptop"", ""Tablet""]",1370.9,{},21064,1,Africa +2023-12-03,32273,3542,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3480.94,"{"""": ""26%""}",136830,0,North America +2023-04-06,32274,5839,"[""Keyboard"", ""Phone"", ""Charger""]",559.73,{},177697,0,South America +2023-11-07,32275,4151,"[""Phone"", ""Tablet""]",173.7,"{""seasonal"": ""11%""}",26329,1,Europe +2024-12-14,32276,5729,"[""Wireless Mouse""]",1589.21,{},46205,0,South America +2023-03-18,32277,6768,"[""Phone"", ""Monitor""]",4534.08,"{"""": ""8%""}",279705,1,Africa +2023-07-26,32278,305,"[""Monitor"", ""Wireless Mouse""]",1783.7,"{"""": ""9%""}",299189,1,Africa +2023-09-13,32279,9699,"[""Laptop""]",2828.87,"{""loyalty"": ""13%""}",293536,0,South America +2024-01-12,32280,4406,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4989.45,{},45036,1,Africa +2024-02-07,32281,6159,"[""Charger""]",1512.61,"{""promo"": ""6%""}",6683,1,Europe +2023-05-15,32282,3329,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1551.83,{},194441,1,North America +2023-08-28,32283,379,"[""Keyboard"", ""Charger"", ""Monitor""]",2941.54,{},123205,0,Asia +2023-01-13,32284,8966,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1956.41,"{"""": ""25%""}",294661,1,Africa +2023-08-01,32285,1094,"[""Phone"", ""Headphones""]",3194.52,{},165331,1,Asia +2024-02-20,32286,4760,"[""Phone""]",4004.31,"{"""": ""12%""}",131891,0,Africa +2024-06-16,32287,5485,"[""Keyboard"", ""Laptop"", ""Monitor""]",2396.62,"{""loyalty"": ""10%""}",165519,1,North America +2024-02-05,32288,6420,"[""Phone"", ""Wireless Mouse""]",1003.77,{},116522,0,South America +2023-03-13,32289,5424,"[""Keyboard""]",2047.3,{},134365,1,Europe +2024-12-26,32290,8176,"[""Wireless Mouse""]",1564.37,"{""seasonal"": ""23%""}",266541,0,South America +2024-06-15,32291,8435,"[""Charger""]",3735.01,{},236120,1,Europe +2024-02-09,32292,2376,"[""Phone"", ""Tablet""]",4074.09,"{""promo"": ""8%""}",159226,1,North America +2023-06-22,32293,9025,"[""Charger"", ""Keyboard""]",3330.44,{},41588,0,North America +2023-08-14,32294,9187,"[""Headphones""]",4352.43,{},177485,0,Asia +2024-11-24,32295,8844,"[""Tablet""]",3024.55,"{"""": ""9%""}",250673,1,Africa +2023-07-14,32296,8932,"[""Headphones""]",4495.02,"{""seasonal"": ""11%""}",115844,0,Asia +2024-03-11,32297,1692,"[""Phone"", ""Monitor""]",1260.41,"{""promo"": ""23%""}",69691,1,Europe +2023-01-05,32298,3633,"[""Laptop""]",1379.8,"{""promo"": ""10%""}",178818,1,North America +2024-03-10,32299,8998,"[""Phone"", ""Monitor"", ""Tablet""]",1507.16,{},273999,1,Europe +2024-12-07,32300,5611,"[""Headphones"", ""Wireless Mouse""]",3066.26,"{"""": ""16%""}",119225,1,Europe +2024-11-04,32301,2101,"[""Headphones""]",1403.79,{},9261,0,Asia +2024-04-26,32302,8353,"[""Laptop""]",4157.11,{},31594,0,Europe +2023-06-26,32303,1954,"[""Wireless Mouse"", ""Headphones""]",3739.51,{},146969,0,Africa +2024-02-29,32304,6957,"[""Charger"", ""Wireless Mouse""]",2667.1,{},212230,0,Europe +2024-02-20,32305,8917,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4419.16,{},202148,1,Africa +2023-10-16,32306,878,"[""Phone"", ""Headphones""]",4754.45,{},242064,0,South America +2023-10-31,32307,5606,"[""Monitor"", ""Laptop"", ""Headphones""]",2782.46,{},244610,1,Asia +2024-09-27,32308,802,"[""Headphones""]",4839.17,{},222398,1,Asia +2023-05-05,32309,4942,"[""Headphones"", ""Keyboard""]",3785.34,"{"""": ""9%""}",243638,0,Europe +2024-01-28,32310,3515,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2089.26,{},100000,0,Africa +2024-12-15,32311,4490,"[""Headphones"", ""Tablet""]",3933.64,{},266409,0,South America +2024-06-13,32312,7840,"[""Wireless Mouse"", ""Headphones""]",2289.82,"{""loyalty"": ""30%""}",189616,1,North America +2023-11-16,32313,7556,"[""Monitor""]",4704.58,"{""loyalty"": ""6%""}",249511,1,Africa +2023-03-17,32314,6789,"[""Monitor"", ""Keyboard""]",2289.15,{},106425,1,South America +2024-03-29,32315,2002,"[""Headphones""]",1591.72,"{""promo"": ""26%""}",35875,0,Africa +2023-08-01,32316,4410,"[""Wireless Mouse""]",842.6,{},243740,0,Europe +2024-08-07,32317,3604,"[""Phone""]",1527.5,"{"""": ""5%""}",108330,0,North America +2024-04-15,32318,3615,"[""Phone"", ""Headphones""]",970.19,{},46717,0,South America +2024-09-23,32319,8598,"[""Laptop"", ""Phone"", ""Keyboard""]",2271.07,{},120577,1,Europe +2023-08-05,32320,463,"[""Keyboard""]",1887.08,"{""seasonal"": ""6%""}",103619,1,Africa +2024-02-08,32321,4863,"[""Laptop"", ""Headphones"", ""Tablet""]",2563.79,{},242704,1,Africa +2024-04-03,32322,3890,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2319.42,{},136228,0,Europe +2024-06-11,32323,3858,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4841.67,"{""seasonal"": ""14%""}",129078,1,Asia +2023-09-29,32324,7084,"[""Phone"", ""Headphones"", ""Tablet""]",2215.04,{},293875,1,North America +2023-11-11,32325,6633,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2712.74,"{""promo"": ""15%""}",173472,1,Africa +2024-11-09,32326,2569,"[""Tablet"", ""Headphones"", ""Phone""]",427.35,{},194937,0,Africa +2024-11-24,32327,1701,"[""Charger"", ""Laptop"", ""Keyboard""]",2726.39,{},252405,1,Europe +2023-07-30,32328,7846,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2397.99,"{""promo"": ""14%""}",44755,0,Europe +2024-11-02,32329,9017,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1484.39,"{""seasonal"": ""15%""}",184272,0,Asia +2023-12-13,32330,8169,"[""Monitor"", ""Charger"", ""Keyboard""]",2839.19,"{""loyalty"": ""27%""}",222266,0,Europe +2024-11-05,32331,8719,"[""Charger""]",2491.33,{},269243,1,North America +2024-03-18,32332,6384,"[""Wireless Mouse""]",862.22,{},295037,1,Asia +2023-03-04,32333,9095,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2925.29,"{""seasonal"": ""29%""}",223687,0,Africa +2024-05-23,32334,653,"[""Headphones"", ""Wireless Mouse""]",1287.27,{},32899,1,South America +2023-08-19,32335,2781,"[""Wireless Mouse""]",2686.96,"{""promo"": ""25%""}",63782,1,Africa +2024-06-02,32336,8624,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",499.63,{},134997,1,Europe +2023-06-30,32337,7204,"[""Wireless Mouse""]",3337.59,"{""loyalty"": ""14%""}",166653,0,Asia +2023-03-15,32338,7929,"[""Headphones""]",4256.89,{},246882,1,Europe +2023-02-10,32339,2770,"[""Headphones"", ""Charger""]",3176.73,"{""promo"": ""5%""}",107387,1,Europe +2023-08-28,32340,2624,"[""Keyboard""]",1524.38,"{""promo"": ""8%""}",249963,0,Africa +2023-02-26,32341,4353,"[""Laptop"", ""Keyboard"", ""Charger""]",4522.96,"{""promo"": ""22%""}",169042,0,Africa +2023-04-23,32342,6466,"[""Phone""]",4098.85,"{""seasonal"": ""23%""}",203895,0,Africa +2023-01-24,32343,2252,"[""Charger""]",4862.76,{},172854,0,South America +2024-06-08,32344,2303,"[""Headphones""]",4781.53,{},286039,1,South America +2023-08-13,32345,2226,"[""Monitor"", ""Headphones"", ""Charger""]",432.56,{},183959,0,Asia +2023-01-16,32346,4034,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3803.09,{},211107,0,Africa +2024-03-27,32347,2285,"[""Tablet""]",2890.25,{},135848,0,Africa +2024-02-11,32348,1466,"[""Phone"", ""Keyboard""]",4380.4,{},38034,0,Asia +2023-02-27,32349,8218,"[""Tablet""]",326.45,"{"""": ""28%""}",183558,1,North America +2024-08-02,32350,8915,"[""Tablet"", ""Phone"", ""Headphones""]",412.17,"{""seasonal"": ""8%""}",13981,1,North America +2023-11-28,32351,9892,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2616.08,"{""loyalty"": ""5%""}",207154,0,Asia +2024-09-15,32352,9345,"[""Headphones"", ""Phone""]",3239.59,{},108912,1,Europe +2023-12-17,32353,2827,"[""Monitor""]",2448.63,"{"""": ""7%""}",195795,1,Europe +2024-08-10,32354,338,"[""Tablet"", ""Phone""]",731.83,"{"""": ""28%""}",238712,0,North America +2023-02-06,32355,1914,"[""Laptop""]",495.74,{},57428,0,North America +2024-11-17,32356,2153,"[""Laptop"", ""Keyboard""]",2375.25,"{"""": ""14%""}",146570,1,South America +2024-02-27,32357,4386,"[""Wireless Mouse"", ""Monitor""]",3678.2,"{"""": ""19%""}",261806,0,North America +2023-05-14,32358,6735,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1023.26,{},52383,0,Asia +2024-07-12,32359,7338,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2974.95,{},11310,1,Africa +2024-10-02,32360,7735,"[""Monitor""]",3332.44,"{"""": ""21%""}",248620,1,South America +2023-07-28,32361,4787,"[""Wireless Mouse"", ""Phone""]",3975.72,"{""promo"": ""15%""}",229080,1,Africa +2023-05-10,32362,2613,"[""Keyboard"", ""Monitor"", ""Phone""]",4778.15,{},96453,1,Europe +2023-12-14,32363,1679,"[""Laptop""]",3311.47,{},194833,0,North America +2023-02-06,32364,3560,"[""Monitor"", ""Headphones"", ""Phone""]",4066.7,"{"""": ""12%""}",175691,1,Africa +2023-01-29,32365,6202,"[""Headphones"", ""Keyboard"", ""Monitor""]",2758.47,"{""seasonal"": ""30%""}",197828,1,Africa +2024-11-13,32366,8296,"[""Keyboard""]",2935.23,"{"""": ""15%""}",290123,0,Asia +2024-06-09,32367,1166,"[""Phone"", ""Tablet""]",4122.67,"{"""": ""27%""}",28543,0,Europe +2023-05-12,32368,5796,"[""Keyboard""]",135.77,"{"""": ""9%""}",221754,0,Europe +2024-06-22,32369,5611,"[""Phone"", ""Keyboard""]",2224.6,"{"""": ""29%""}",15609,0,South America +2024-09-17,32370,4248,"[""Monitor"", ""Wireless Mouse""]",2956.55,{},285538,1,Europe +2023-10-22,32371,7969,"[""Monitor"", ""Keyboard"", ""Headphones""]",2830.48,{},240573,0,Africa +2024-12-26,32372,8939,"[""Tablet"", ""Phone""]",2730.03,"{""seasonal"": ""18%""}",151413,0,Europe +2024-12-25,32373,288,"[""Phone"", ""Keyboard""]",4116.25,{},73269,0,Europe +2024-11-08,32374,6426,"[""Monitor""]",1499.28,{},234167,0,Africa +2023-07-07,32375,470,"[""Laptop""]",440.39,"{"""": ""24%""}",235433,0,South America +2024-01-19,32376,3287,"[""Keyboard""]",3067.74,{},272816,0,South America +2023-09-25,32377,135,"[""Monitor""]",3667.39,{},61042,0,Europe +2023-01-10,32378,9804,"[""Keyboard"", ""Headphones""]",670.23,"{"""": ""7%""}",95904,0,Asia +2023-11-22,32379,5511,"[""Tablet"", ""Keyboard"", ""Laptop""]",218.66,"{""promo"": ""30%""}",45221,1,Asia +2024-09-15,32380,1026,"[""Monitor"", ""Laptop"", ""Keyboard""]",2618.74,"{""promo"": ""20%""}",75332,0,Asia +2024-05-03,32381,4334,"[""Keyboard"", ""Phone""]",4569.83,"{""promo"": ""21%""}",216522,1,Asia +2023-07-22,32382,9814,"[""Wireless Mouse"", ""Laptop""]",177.63,{},198864,1,Asia +2024-04-23,32383,1279,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2734.61,"{""promo"": ""27%""}",124401,0,North America +2023-05-07,32384,7827,"[""Monitor""]",1748.26,{},265247,0,Asia +2023-08-20,32385,1987,"[""Laptop""]",2919.22,{},67771,0,Asia +2023-09-27,32386,57,"[""Wireless Mouse"", ""Phone""]",1261.97,{},26284,0,Africa +2024-07-18,32387,8435,"[""Monitor""]",4953.87,{},53941,1,Europe +2023-08-19,32388,4001,"[""Wireless Mouse"", ""Laptop""]",1120.34,{},219140,0,Europe +2023-01-20,32389,6697,"[""Laptop"", ""Tablet"", ""Phone""]",3747.76,"{""promo"": ""26%""}",247757,1,Europe +2023-08-18,32390,4146,"[""Tablet""]",4777.17,"{""loyalty"": ""9%""}",54410,0,Africa +2024-05-26,32391,2682,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1989.12,{},30033,0,Asia +2024-07-18,32392,983,"[""Headphones"", ""Charger""]",1054.66,{},279944,0,Asia +2023-03-31,32393,4666,"[""Headphones""]",969.11,"{""loyalty"": ""27%""}",197987,1,Europe +2023-05-01,32394,8845,"[""Wireless Mouse""]",413.64,"{"""": ""21%""}",221656,1,Europe +2024-07-02,32395,5454,"[""Wireless Mouse"", ""Charger""]",4445.18,"{""seasonal"": ""14%""}",190766,0,Africa +2024-04-16,32396,9531,"[""Tablet""]",2983.77,{},117401,0,North America +2024-10-28,32397,5507,"[""Laptop""]",2275.91,"{""loyalty"": ""20%""}",214917,0,North America +2024-09-11,32398,1006,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3168.5,{},82437,0,North America +2023-05-31,32399,6770,"[""Charger"", ""Wireless Mouse""]",2101.26,{},267096,1,Asia +2023-11-13,32400,1631,"[""Tablet"", ""Headphones"", ""Monitor""]",57.23,"{""promo"": ""10%""}",284706,1,Asia +2023-08-23,32401,3321,"[""Headphones"", ""Charger"", ""Laptop""]",3762.06,"{""seasonal"": ""26%""}",66426,0,North America +2024-09-23,32402,5948,"[""Phone"", ""Keyboard""]",2707.13,{},146892,0,Europe +2024-09-14,32403,7834,"[""Laptop"", ""Charger"", ""Tablet""]",2259.7,{},297642,0,Asia +2023-07-31,32404,27,"[""Phone"", ""Laptop"", ""Tablet""]",3435.47,{},156363,1,South America +2024-03-22,32405,5697,"[""Phone""]",3891.43,{},151518,1,Europe +2023-12-21,32406,6535,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4285.98,"{""seasonal"": ""7%""}",95228,1,Europe +2023-11-23,32407,4469,"[""Laptop""]",4664.74,{},113766,0,Asia +2024-07-31,32408,5801,"[""Charger"", ""Phone""]",3510.09,"{"""": ""12%""}",199781,0,Asia +2023-11-17,32409,2662,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",744.56,"{""promo"": ""10%""}",162959,0,North America +2023-11-08,32410,5430,"[""Headphones"", ""Laptop""]",1201.36,{},163188,1,South America +2024-06-07,32411,8281,"[""Keyboard"", ""Monitor""]",1194.82,"{"""": ""9%""}",45168,1,North America +2023-01-10,32412,6094,"[""Charger""]",4731.88,"{""loyalty"": ""22%""}",219766,1,South America +2023-10-07,32413,4298,"[""Monitor"", ""Phone"", ""Laptop""]",50.75,"{""promo"": ""23%""}",60879,1,Africa +2024-08-19,32414,2848,"[""Headphones"", ""Keyboard""]",2323.42,"{""seasonal"": ""20%""}",201319,1,South America +2023-12-19,32415,7741,"[""Laptop"", ""Phone"", ""Tablet""]",4000.17,"{""loyalty"": ""28%""}",193860,0,South America +2024-07-13,32416,1499,"[""Laptop"", ""Charger""]",1467.9,"{""loyalty"": ""13%""}",68112,0,Europe +2023-05-15,32417,7281,"[""Laptop"", ""Headphones"", ""Tablet""]",4240.26,"{""seasonal"": ""11%""}",258655,1,South America +2023-11-15,32418,6695,"[""Monitor"", ""Laptop""]",1396.15,{},172240,0,South America +2023-03-30,32419,3870,"[""Keyboard"", ""Charger""]",2953.18,{},106338,0,Africa +2023-07-27,32420,8528,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1221.48,"{""loyalty"": ""21%""}",245714,1,South America +2024-09-27,32421,6180,"[""Charger"", ""Laptop""]",2633.32,{},210109,1,South America +2023-10-22,32422,4794,"[""Charger""]",4018.63,"{"""": ""20%""}",294920,1,South America +2023-05-21,32423,7862,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",751.06,"{"""": ""17%""}",246002,1,North America +2023-04-04,32424,1220,"[""Headphones""]",4769.91,"{"""": ""15%""}",26732,0,Asia +2023-06-23,32425,5205,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2897.64,"{""promo"": ""17%""}",217441,1,South America +2024-07-04,32426,804,"[""Wireless Mouse""]",4887.14,{},220010,1,South America +2024-05-22,32427,6184,"[""Headphones""]",631.64,"{""seasonal"": ""22%""}",62076,1,South America +2024-04-05,32428,3935,"[""Headphones""]",314.76,"{"""": ""28%""}",90424,0,South America +2023-08-15,32429,3574,"[""Wireless Mouse""]",767.3,"{"""": ""20%""}",84789,0,North America +2023-08-06,32430,1749,"[""Phone""]",3081.23,{},35822,0,Europe +2023-04-10,32431,5277,"[""Wireless Mouse"", ""Laptop""]",2766.05,{},9267,0,Asia +2023-08-15,32432,4446,"[""Laptop""]",4177.24,{},67733,1,South America +2023-07-28,32433,9100,"[""Keyboard"", ""Wireless Mouse""]",2403.09,{},242231,1,North America +2024-05-15,32434,4400,"[""Wireless Mouse""]",3812.81,{},51812,1,Asia +2024-01-10,32435,9565,"[""Tablet"", ""Laptop""]",2934.87,"{""seasonal"": ""20%""}",16837,0,Asia +2023-03-25,32436,3949,"[""Phone""]",2127.26,"{"""": ""6%""}",58262,0,Europe +2023-11-30,32437,5857,"[""Charger"", ""Headphones""]",3739.86,"{""loyalty"": ""28%""}",227933,1,South America +2024-08-15,32438,5415,"[""Headphones""]",3307.54,"{""promo"": ""8%""}",298857,1,Africa +2024-02-18,32439,652,"[""Laptop""]",1839.84,{},229773,0,South America +2024-01-22,32440,4155,"[""Laptop""]",2547.71,"{""seasonal"": ""8%""}",147950,0,Asia +2024-05-26,32441,1416,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2287.13,"{"""": ""29%""}",49708,1,South America +2023-07-03,32442,7300,"[""Headphones"", ""Laptop""]",4801.78,"{""promo"": ""24%""}",196696,1,Asia +2023-03-06,32443,8469,"[""Keyboard""]",4090.59,"{""loyalty"": ""21%""}",27425,1,Asia +2024-06-07,32444,7006,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4026.96,{},258631,0,Asia +2024-03-24,32445,6237,"[""Phone""]",3112.74,{},249461,1,Africa +2024-01-01,32446,9140,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4225.46,{},215572,1,Asia +2024-01-20,32447,2233,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2659.87,{},148705,0,South America +2024-03-27,32448,9412,"[""Wireless Mouse"", ""Headphones""]",2023.39,{},282086,0,Europe +2023-04-07,32449,7654,"[""Charger""]",256.75,"{""promo"": ""9%""}",68990,1,North America +2023-03-25,32450,5614,"[""Laptop"", ""Keyboard""]",191.13,"{"""": ""11%""}",226276,1,Asia +2024-05-23,32451,1082,"[""Laptop"", ""Keyboard""]",4593.33,"{""promo"": ""13%""}",218128,0,South America +2023-09-22,32452,7762,"[""Charger"", ""Keyboard"", ""Laptop""]",711.37,"{""promo"": ""19%""}",169624,1,North America +2023-08-31,32453,7914,"[""Headphones""]",2155.29,"{"""": ""12%""}",112791,1,Europe +2023-02-16,32454,4956,"[""Keyboard"", ""Wireless Mouse""]",285.56,"{""seasonal"": ""9%""}",232028,1,South America +2023-04-18,32455,639,"[""Laptop""]",945.32,"{""loyalty"": ""18%""}",120800,1,Africa +2024-12-03,32456,3518,"[""Laptop"", ""Monitor""]",2002.9,"{""seasonal"": ""18%""}",280912,1,Europe +2023-01-30,32457,7568,"[""Monitor"", ""Headphones"", ""Tablet""]",3749.47,"{""promo"": ""6%""}",91825,0,Europe +2023-04-06,32458,4252,"[""Monitor"", ""Tablet""]",2022.9,"{"""": ""6%""}",27947,1,South America +2023-07-31,32459,4201,"[""Keyboard"", ""Monitor""]",2002.8,"{"""": ""9%""}",236784,1,Europe +2023-02-26,32460,2214,"[""Keyboard"", ""Monitor"", ""Charger""]",2298.08,{},279337,1,North America +2023-04-01,32461,3624,"[""Wireless Mouse""]",3110.06,"{""promo"": ""28%""}",92520,0,Africa +2024-07-23,32462,713,"[""Laptop""]",780.81,{},116061,1,Europe +2024-10-21,32463,2567,"[""Wireless Mouse"", ""Monitor""]",1582.95,"{""seasonal"": ""30%""}",204495,0,South America +2024-05-30,32464,7710,"[""Laptop""]",2200.23,"{""seasonal"": ""6%""}",54668,0,Asia +2024-04-04,32465,769,"[""Tablet"", ""Laptop"", ""Phone""]",486.78,{},41289,0,Europe +2023-11-15,32466,9910,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2108.37,{},56781,0,Asia +2023-12-10,32467,5114,"[""Charger"", ""Keyboard"", ""Headphones""]",4984.01,"{""promo"": ""10%""}",238205,1,South America +2023-08-02,32468,7131,"[""Phone"", ""Monitor""]",443.81,{},191129,1,Europe +2023-07-17,32469,1587,"[""Headphones""]",4401.86,"{""loyalty"": ""13%""}",7496,1,South America +2024-08-31,32470,3850,"[""Headphones"", ""Phone""]",1211.29,"{""loyalty"": ""23%""}",236291,0,North America +2023-10-17,32471,5993,"[""Laptop"", ""Monitor""]",4567.13,{},91050,0,Europe +2023-01-05,32472,4447,"[""Laptop""]",3766.09,"{"""": ""6%""}",19390,1,Europe +2023-03-17,32473,9890,"[""Monitor""]",976.72,{},160009,0,Asia +2024-12-13,32474,1791,"[""Monitor"", ""Tablet""]",4147.39,"{""promo"": ""12%""}",272359,1,Europe +2024-03-07,32475,9445,"[""Wireless Mouse"", ""Laptop""]",1568.71,{},133195,1,Europe +2024-09-04,32476,6100,"[""Laptop"", ""Tablet""]",3707.03,{},210059,0,North America +2023-11-26,32477,3872,"[""Tablet"", ""Phone"", ""Charger""]",129.43,"{"""": ""5%""}",284753,0,Africa +2023-06-04,32478,3075,"[""Tablet"", ""Monitor""]",756.19,"{""seasonal"": ""21%""}",72022,1,South America +2023-01-04,32479,2935,"[""Charger"", ""Monitor"", ""Phone""]",2047.51,{},226722,1,Africa +2024-06-03,32480,745,"[""Laptop"", ""Charger""]",2659.29,{},19552,1,South America +2024-12-31,32481,9894,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3023.32,{},37484,0,Europe +2023-08-30,32482,9392,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",191.4,"{""promo"": ""22%""}",140220,0,South America +2023-07-11,32483,7086,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3847.34,{},226312,0,North America +2023-01-11,32484,7546,"[""Monitor"", ""Charger"", ""Laptop""]",1076.34,{},218308,1,South America +2024-10-18,32485,2402,"[""Tablet""]",1370.06,"{""loyalty"": ""9%""}",21640,1,South America +2023-07-03,32486,3520,"[""Keyboard"", ""Charger""]",3453.8,{},237540,0,Asia +2024-02-27,32487,1889,"[""Charger""]",2661.75,{},155284,1,South America +2024-07-11,32488,9782,"[""Tablet"", ""Wireless Mouse""]",4973.15,{},114769,0,North America +2023-03-23,32489,1525,"[""Tablet"", ""Headphones"", ""Phone""]",2403.38,{},270433,0,South America +2023-09-28,32490,4445,"[""Charger"", ""Laptop"", ""Tablet""]",3173.02,"{"""": ""17%""}",291686,0,Asia +2024-05-01,32491,8785,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2919.93,"{"""": ""27%""}",119427,0,Asia +2024-02-22,32492,5798,"[""Monitor""]",3097.2,"{""seasonal"": ""13%""}",277642,0,Europe +2023-08-11,32493,4713,"[""Keyboard"", ""Charger""]",1408.53,"{""promo"": ""29%""}",76065,1,South America +2024-08-09,32494,5582,"[""Tablet"", ""Phone"", ""Charger""]",2684.92,"{""loyalty"": ""12%""}",127574,1,South America +2023-06-18,32495,3888,"[""Charger"", ""Monitor"", ""Headphones""]",4754.02,{},290978,0,Europe +2023-05-24,32496,3566,"[""Tablet""]",2223.0,{},33882,0,Africa +2024-08-20,32497,3197,"[""Headphones""]",4455.86,{},14386,1,North America +2023-01-06,32498,8900,"[""Tablet""]",957.03,"{""loyalty"": ""11%""}",70994,0,Africa +2023-11-16,32499,5094,"[""Charger"", ""Headphones""]",3060.8,"{"""": ""6%""}",109018,1,North America +2024-03-14,32500,8168,"[""Laptop"", ""Wireless Mouse""]",802.67,"{""loyalty"": ""11%""}",100686,1,Europe +2024-11-27,32501,6194,"[""Phone"", ""Tablet""]",4303.81,"{"""": ""11%""}",122366,0,Europe +2023-12-18,32502,691,"[""Phone"", ""Laptop"", ""Headphones""]",3936.54,{},228836,0,North America +2023-01-06,32503,5328,"[""Keyboard""]",57.77,"{""loyalty"": ""8%""}",116465,1,North America +2024-10-14,32504,9529,"[""Phone"", ""Laptop"", ""Charger""]",110.87,"{""seasonal"": ""7%""}",130138,1,North America +2023-02-18,32505,8843,"[""Charger"", ""Monitor"", ""Tablet""]",1924.9,"{""loyalty"": ""30%""}",166335,1,Europe +2023-07-01,32506,6619,"[""Headphones"", ""Keyboard"", ""Tablet""]",253.34,"{""seasonal"": ""18%""}",277151,0,Africa +2023-07-12,32507,6773,"[""Monitor"", ""Tablet""]",851.9,{},171023,1,Africa +2023-09-11,32508,8025,"[""Monitor""]",4993.28,{},268639,1,Europe +2024-09-17,32509,4525,"[""Charger"", ""Headphones""]",4770.87,"{""loyalty"": ""25%""}",98528,1,South America +2024-03-07,32510,3063,"[""Tablet"", ""Charger""]",2311.49,{},284677,1,North America +2023-04-04,32511,2366,"[""Headphones""]",2400.35,{},150008,1,North America +2023-02-09,32512,3546,"[""Wireless Mouse"", ""Headphones""]",1162.62,"{"""": ""28%""}",237572,0,South America +2023-08-02,32513,3541,"[""Tablet""]",4921.98,{},241056,0,Europe +2023-11-13,32514,2588,"[""Headphones"", ""Tablet""]",3975.62,"{""seasonal"": ""17%""}",29269,1,Asia +2023-09-12,32515,6334,"[""Laptop"", ""Charger""]",4240.69,{},211843,1,Africa +2024-05-09,32516,2273,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4231.8,"{""seasonal"": ""18%""}",7260,1,Africa +2023-02-03,32517,2814,"[""Phone""]",1544.82,{},103017,1,Asia +2024-05-15,32518,6682,"[""Monitor"", ""Headphones""]",804.71,"{"""": ""23%""}",107235,0,Africa +2023-03-08,32519,8907,"[""Keyboard"", ""Phone""]",3681.37,{},162388,0,Europe +2023-09-04,32520,9113,"[""Keyboard"", ""Charger""]",828.31,{},53938,0,Europe +2024-02-26,32521,4350,"[""Tablet"", ""Laptop"", ""Keyboard""]",4887.83,{},205530,1,North America +2024-08-22,32522,4156,"[""Keyboard"", ""Monitor""]",1745.55,{},84722,1,South America +2024-06-02,32523,5259,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3521.24,"{""promo"": ""12%""}",119035,0,Asia +2024-06-05,32524,8839,"[""Keyboard""]",4250.73,"{""promo"": ""24%""}",255444,1,North America +2024-12-21,32525,7097,"[""Phone""]",1363.55,"{"""": ""23%""}",204918,1,Europe +2024-10-29,32526,1742,"[""Wireless Mouse"", ""Tablet""]",4479.78,"{""loyalty"": ""20%""}",200332,1,Europe +2023-06-09,32527,9303,"[""Monitor"", ""Headphones""]",2803.91,{},258343,0,North America +2024-04-27,32528,3947,"[""Keyboard"", ""Monitor""]",3048.56,"{""promo"": ""30%""}",160880,1,Africa +2023-01-20,32529,7866,"[""Phone"", ""Charger""]",218.4,"{"""": ""21%""}",164796,1,Africa +2023-08-29,32530,370,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",549.36,{},26599,1,South America +2023-11-08,32531,9404,"[""Phone"", ""Laptop""]",1434.15,{},145522,0,South America +2024-03-18,32532,2635,"[""Phone""]",722.8,"{"""": ""7%""}",222806,1,North America +2023-05-03,32533,832,"[""Wireless Mouse""]",900.35,{},16624,0,Africa +2023-09-14,32534,2361,"[""Laptop"", ""Keyboard"", ""Phone""]",938.76,{},21548,0,North America +2024-11-10,32535,8638,"[""Headphones"", ""Tablet"", ""Keyboard""]",1078.18,{},176163,0,Asia +2023-04-21,32536,9277,"[""Keyboard"", ""Laptop"", ""Headphones""]",4723.57,{},172553,0,North America +2023-05-09,32537,5154,"[""Tablet""]",890.13,{},213027,1,North America +2024-12-23,32538,9531,"[""Tablet"", ""Monitor""]",1074.23,{},265682,1,North America +2023-04-20,32539,338,"[""Monitor""]",1125.99,{},162005,0,North America +2024-09-01,32540,2086,"[""Laptop""]",4414.52,{},285045,1,North America +2023-08-28,32541,8594,"[""Charger"", ""Phone"", ""Keyboard""]",2957.09,{},160427,1,South America +2023-06-22,32542,4728,"[""Monitor"", ""Tablet""]",4337.42,"{""loyalty"": ""12%""}",247089,1,Asia +2024-09-10,32543,8953,"[""Monitor"", ""Keyboard"", ""Phone""]",4181.5,{},287584,1,Europe +2024-12-19,32544,1219,"[""Keyboard""]",628.91,"{""seasonal"": ""15%""}",68985,0,South America +2024-08-24,32545,3677,"[""Charger""]",3893.16,"{""loyalty"": ""12%""}",121886,0,Europe +2023-10-10,32546,7819,"[""Tablet"", ""Laptop"", ""Charger""]",2871.15,"{""loyalty"": ""28%""}",233232,1,North America +2024-06-14,32547,8233,"[""Phone""]",4993.09,{},299235,0,Africa +2023-12-29,32548,972,"[""Headphones"", ""Tablet"", ""Laptop""]",728.04,"{"""": ""12%""}",273512,0,North America +2024-12-23,32549,4240,"[""Charger"", ""Phone"", ""Headphones""]",957.94,"{"""": ""28%""}",58997,1,Asia +2023-10-25,32550,5837,"[""Laptop""]",1276.82,"{""seasonal"": ""28%""}",284190,0,South America +2024-06-14,32551,6586,"[""Tablet""]",1479.91,{},48713,0,Europe +2024-06-20,32552,9467,"[""Tablet""]",1409.93,"{""seasonal"": ""12%""}",6566,0,North America +2024-05-30,32553,5826,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",50.79,"{""loyalty"": ""29%""}",206362,0,Asia +2024-10-24,32554,3529,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3093.72,"{""loyalty"": ""12%""}",262536,0,Asia +2023-10-15,32555,5788,"[""Charger"", ""Monitor""]",2885.48,"{"""": ""12%""}",9134,1,North America +2023-07-27,32556,9747,"[""Tablet"", ""Phone""]",232.52,"{""seasonal"": ""8%""}",79419,0,North America +2024-04-30,32557,5028,"[""Charger"", ""Wireless Mouse""]",3798.99,{},172050,0,Africa +2024-10-09,32558,9875,"[""Tablet""]",988.71,"{""promo"": ""29%""}",74014,1,South America +2024-04-25,32559,6123,"[""Tablet"", ""Phone"", ""Laptop""]",627.95,{},154710,1,North America +2024-08-07,32560,6701,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3874.79,{},239754,1,Asia +2023-11-26,32561,6454,"[""Wireless Mouse""]",4839.07,"{"""": ""5%""}",107184,0,Europe +2024-12-28,32562,7979,"[""Headphones"", ""Phone""]",2660.14,{},148173,0,South America +2023-06-04,32563,7942,"[""Monitor""]",3881.46,{},63216,1,Europe +2023-09-20,32564,3152,"[""Charger"", ""Headphones"", ""Keyboard""]",581.0,{},64357,1,North America +2024-12-21,32565,2448,"[""Headphones"", ""Laptop"", ""Phone""]",4689.87,"{""seasonal"": ""8%""}",119260,1,North America +2024-02-26,32566,3427,"[""Headphones"", ""Phone""]",1324.73,"{""seasonal"": ""30%""}",47382,0,Asia +2024-11-28,32567,3384,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3670.49,"{""seasonal"": ""23%""}",143044,1,Europe +2023-10-30,32568,5473,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2620.19,"{""loyalty"": ""15%""}",215968,1,Africa +2023-01-06,32569,2475,"[""Tablet"", ""Keyboard"", ""Monitor""]",4795.21,{},220984,1,North America +2024-04-10,32570,5461,"[""Tablet""]",561.87,{},38233,1,North America +2024-05-06,32571,1613,"[""Charger"", ""Laptop"", ""Monitor""]",3551.32,{},145973,0,Asia +2023-12-01,32572,9970,"[""Tablet""]",4229.67,"{"""": ""17%""}",240167,1,South America +2023-05-18,32573,4956,"[""Charger"", ""Monitor""]",590.26,{},201122,0,South America +2023-01-16,32574,2033,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3727.76,{},31357,1,South America +2023-04-03,32575,1983,"[""Monitor"", ""Laptop""]",4108.97,{},167448,0,North America +2023-10-29,32576,5220,"[""Phone"", ""Wireless Mouse""]",2139.16,{},216795,1,Europe +2023-08-18,32577,9335,"[""Charger""]",996.49,"{""loyalty"": ""13%""}",143128,0,Africa +2023-06-27,32578,4060,"[""Charger"", ""Headphones""]",1834.86,{},161512,0,Europe +2024-12-11,32579,1614,"[""Charger"", ""Keyboard""]",1668.76,"{""loyalty"": ""10%""}",64104,1,Asia +2023-02-17,32580,2987,"[""Tablet"", ""Laptop""]",704.33,{},35417,1,Europe +2024-02-10,32581,7872,"[""Tablet""]",217.49,{},96764,1,Africa +2024-05-15,32582,2800,"[""Keyboard"", ""Charger""]",554.05,"{""seasonal"": ""24%""}",216387,0,Africa +2023-03-05,32583,8842,"[""Tablet"", ""Keyboard"", ""Charger""]",608.68,"{""loyalty"": ""12%""}",41022,1,Europe +2023-07-17,32584,5362,"[""Monitor"", ""Phone""]",1880.28,{},80383,0,South America +2024-01-13,32585,2680,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4475.69,"{""seasonal"": ""22%""}",68630,0,Asia +2023-09-15,32586,1695,"[""Phone"", ""Tablet"", ""Monitor""]",2834.6,{},243959,1,North America +2023-11-11,32587,5758,"[""Tablet"", ""Headphones"", ""Phone""]",4959.94,"{""loyalty"": ""7%""}",99254,1,North America +2024-01-30,32588,9503,"[""Laptop""]",4185.02,"{"""": ""6%""}",110806,0,Europe +2024-02-19,32589,1116,"[""Phone""]",1764.14,"{""promo"": ""5%""}",29801,1,Europe +2024-03-20,32590,6835,"[""Keyboard"", ""Phone""]",3260.16,{},232841,0,South America +2023-08-23,32591,1006,"[""Keyboard"", ""Monitor""]",2676.26,"{""seasonal"": ""21%""}",158360,1,Europe +2023-10-17,32592,7632,"[""Wireless Mouse""]",1909.58,"{""promo"": ""14%""}",95602,1,Asia +2024-10-06,32593,4146,"[""Charger"", ""Keyboard"", ""Phone""]",4277.7,{},173000,1,Africa +2024-12-02,32594,1155,"[""Monitor""]",3412.59,"{""loyalty"": ""25%""}",147088,0,Africa +2023-03-24,32595,2091,"[""Monitor""]",4570.4,"{"""": ""5%""}",164719,1,Asia +2023-09-05,32596,2780,"[""Laptop"", ""Headphones"", ""Keyboard""]",1849.23,"{""seasonal"": ""11%""}",81629,0,Africa +2024-11-20,32597,6736,"[""Headphones"", ""Keyboard""]",2946.72,{},297148,0,Africa +2024-06-06,32598,5081,"[""Laptop"", ""Charger"", ""Headphones""]",2017.98,"{""promo"": ""17%""}",1208,1,Africa +2023-02-24,32599,2433,"[""Charger"", ""Tablet""]",734.05,"{"""": ""24%""}",255895,0,North America +2023-09-09,32600,1020,"[""Wireless Mouse"", ""Phone""]",1308.48,{},288313,1,South America +2023-03-30,32601,355,"[""Laptop""]",4757.15,{},167087,0,Asia +2024-07-13,32602,3245,"[""Wireless Mouse""]",453.82,{},42279,1,Europe +2023-07-04,32603,3621,"[""Charger"", ""Tablet""]",152.08,"{"""": ""7%""}",138298,1,Africa +2024-08-08,32604,1360,"[""Phone""]",2484.63,{},130448,1,South America +2023-06-07,32605,7708,"[""Monitor"", ""Laptop""]",742.65,{},252364,0,Asia +2023-01-04,32606,4817,"[""Tablet"", ""Charger"", ""Headphones""]",922.88,"{""loyalty"": ""30%""}",158397,1,Africa +2023-02-12,32607,1760,"[""Headphones"", ""Laptop"", ""Charger""]",2356.92,"{"""": ""7%""}",197554,0,Asia +2023-03-09,32608,4259,"[""Headphones"", ""Keyboard""]",2573.25,"{""seasonal"": ""8%""}",145118,0,Asia +2023-11-20,32609,1715,"[""Laptop"", ""Headphones""]",3597.98,"{"""": ""25%""}",269265,1,Europe +2024-03-18,32610,1968,"[""Monitor"", ""Keyboard"", ""Phone""]",2026.65,"{"""": ""28%""}",121604,0,Asia +2024-04-02,32611,4207,"[""Tablet"", ""Headphones""]",2687.35,"{"""": ""5%""}",261964,0,North America +2023-03-23,32612,4451,"[""Headphones""]",1542.41,{},132868,0,Africa +2024-08-13,32613,255,"[""Laptop"", ""Monitor""]",3894.08,{},111894,0,North America +2024-01-21,32614,1677,"[""Phone""]",4862.18,"{""seasonal"": ""10%""}",280460,0,Asia +2023-06-12,32615,2517,"[""Tablet"", ""Keyboard"", ""Laptop""]",1096.4,{},111917,1,South America +2023-02-20,32616,3705,"[""Tablet"", ""Charger"", ""Laptop""]",227.63,"{""loyalty"": ""5%""}",181628,1,Europe +2023-09-23,32617,7639,"[""Laptop""]",3188.14,{},184874,1,Europe +2023-12-27,32618,783,"[""Tablet"", ""Headphones"", ""Monitor""]",3751.45,"{""promo"": ""5%""}",220654,0,Africa +2024-01-04,32619,476,"[""Laptop""]",4699.58,{},158339,0,Asia +2023-08-31,32620,7058,"[""Laptop"", ""Phone"", ""Headphones""]",2206.25,{},183796,1,North America +2023-06-25,32621,2048,"[""Headphones"", ""Tablet""]",3990.5,{},12272,1,Africa +2023-12-20,32622,7768,"[""Phone"", ""Charger""]",4501.0,{},153997,0,Africa +2024-03-01,32623,2273,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1089.61,{},124504,1,North America +2023-03-31,32624,8124,"[""Charger""]",1283.01,{},146835,0,North America +2024-09-09,32625,7707,"[""Headphones""]",2506.65,"{""seasonal"": ""7%""}",248555,0,Asia +2023-11-10,32626,369,"[""Tablet"", ""Headphones"", ""Laptop""]",2967.67,{},60217,0,Asia +2023-04-12,32627,6549,"[""Headphones"", ""Wireless Mouse""]",1466.45,{},276351,0,South America +2024-05-04,32628,275,"[""Tablet"", ""Charger"", ""Headphones""]",464.37,{},113863,1,Africa +2023-05-02,32629,8869,"[""Monitor""]",1983.94,{},118575,0,North America +2024-07-02,32630,8499,"[""Headphones""]",3467.85,{},7944,0,Africa +2023-05-02,32631,4175,"[""Tablet"", ""Phone"", ""Charger""]",198.19,{},253496,0,South America +2024-02-21,32632,7887,"[""Monitor"", ""Charger""]",4126.75,{},92388,1,Europe +2024-02-25,32633,9604,"[""Phone"", ""Laptop""]",1114.14,"{"""": ""25%""}",50247,1,South America +2024-05-27,32634,731,"[""Tablet"", ""Laptop""]",1635.5,"{""promo"": ""22%""}",283725,1,North America +2023-10-12,32635,5912,"[""Charger""]",3769.17,{},127944,0,Asia +2023-11-17,32636,2893,"[""Keyboard"", ""Headphones""]",995.71,"{"""": ""19%""}",162656,0,Europe +2024-10-04,32637,5212,"[""Laptop"", ""Headphones""]",640.17,{},197703,1,South America +2023-08-26,32638,442,"[""Charger""]",4127.01,"{""loyalty"": ""15%""}",56026,0,South America +2023-06-23,32639,5758,"[""Monitor""]",4708.86,"{""promo"": ""15%""}",185447,1,Asia +2024-05-08,32640,3157,"[""Headphones""]",4071.14,{},244721,1,Europe +2023-07-19,32641,4427,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4551.88,{},2565,0,North America +2023-09-26,32642,1262,"[""Keyboard""]",353.71,{},165983,1,Africa +2024-12-17,32643,4891,"[""Monitor""]",974.65,{},70704,0,Asia +2024-05-02,32644,2224,"[""Phone""]",3755.16,"{""promo"": ""28%""}",246365,1,North America +2023-02-28,32645,3022,"[""Keyboard"", ""Headphones""]",2858.1,{},131270,0,Africa +2024-08-02,32646,2843,"[""Laptop"", ""Tablet"", ""Charger""]",4956.11,"{""seasonal"": ""29%""}",266083,1,Europe +2023-04-29,32647,7804,"[""Wireless Mouse""]",4475.04,"{""promo"": ""16%""}",68372,1,Europe +2023-05-21,32648,8755,"[""Keyboard""]",2327.96,{},183180,1,Europe +2024-09-26,32649,5915,"[""Phone"", ""Keyboard""]",3859.1,"{"""": ""23%""}",182912,1,Asia +2024-05-25,32650,5369,"[""Wireless Mouse""]",4612.49,"{""loyalty"": ""10%""}",59064,1,Africa +2024-09-23,32651,80,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4853.88,{},106041,1,Asia +2023-06-12,32652,8762,"[""Monitor"", ""Keyboard""]",3187.12,{},255158,1,Asia +2023-10-23,32653,183,"[""Phone"", ""Keyboard""]",1036.62,{},229607,0,Africa +2024-12-09,32654,5709,"[""Laptop"", ""Phone""]",4023.8,{},197660,0,South America +2023-12-04,32655,5762,"[""Keyboard"", ""Charger""]",2414.94,{},48606,0,South America +2023-09-02,32656,6195,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1755.26,"{"""": ""14%""}",86790,0,South America +2024-11-17,32657,2033,"[""Monitor""]",2575.29,{},66976,1,Asia +2024-02-07,32658,3283,"[""Tablet"", ""Keyboard"", ""Monitor""]",3941.43,{},267709,1,Asia +2024-07-28,32659,7846,"[""Wireless Mouse""]",4502.25,{},82873,1,South America +2023-11-07,32660,9089,"[""Laptop""]",472.07,"{"""": ""18%""}",187682,1,South America +2024-02-02,32661,6136,"[""Wireless Mouse"", ""Phone""]",488.23,{},93854,1,Asia +2023-08-08,32662,6132,"[""Keyboard"", ""Tablet""]",4391.53,{},136861,0,Europe +2023-08-16,32663,6018,"[""Phone""]",2421.09,{},92137,0,North America +2023-05-17,32664,1325,"[""Headphones"", ""Tablet""]",2083.19,{},246905,1,Europe +2024-01-03,32665,1652,"[""Keyboard""]",491.86,{},188673,1,South America +2023-09-03,32666,2834,"[""Headphones"", ""Charger""]",1588.37,{},194016,0,Asia +2023-03-08,32667,278,"[""Keyboard"", ""Monitor"", ""Headphones""]",4581.16,"{"""": ""25%""}",24674,0,South America +2024-01-24,32668,1760,"[""Keyboard"", ""Charger"", ""Tablet""]",4254.9,{},99585,1,South America +2024-09-26,32669,7015,"[""Charger"", ""Tablet"", ""Monitor""]",4943.9,"{""loyalty"": ""25%""}",35061,0,Europe +2023-07-24,32670,5,"[""Keyboard"", ""Phone"", ""Tablet""]",3511.09,"{""loyalty"": ""18%""}",252337,1,Asia +2024-09-24,32671,4779,"[""Wireless Mouse"", ""Laptop""]",1093.73,{},191210,1,Africa +2023-04-27,32672,3357,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3646.85,"{"""": ""17%""}",78157,1,South America +2024-06-04,32673,4059,"[""Charger"", ""Laptop""]",381.46,{},177815,1,Asia +2024-02-09,32674,8080,"[""Laptop"", ""Monitor""]",3155.27,{},10825,0,Africa +2023-09-24,32675,9001,"[""Phone""]",4478.39,{},107671,0,Europe +2023-09-19,32676,6491,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4912.92,"{""loyalty"": ""7%""}",297867,1,Africa +2023-04-15,32677,2818,"[""Keyboard""]",4035.41,"{""seasonal"": ""11%""}",45889,1,Africa +2024-01-09,32678,2303,"[""Headphones"", ""Phone"", ""Laptop""]",1428.01,{},200427,0,Africa +2024-04-24,32679,2586,"[""Tablet"", ""Keyboard"", ""Monitor""]",1031.2,{},232352,0,Africa +2023-04-30,32680,3450,"[""Laptop""]",3406.13,"{""seasonal"": ""5%""}",118184,1,Africa +2024-04-29,32681,59,"[""Charger"", ""Keyboard""]",132.6,"{""promo"": ""6%""}",224013,1,Europe +2024-11-09,32682,5722,"[""Headphones""]",4893.01,"{""seasonal"": ""18%""}",172318,0,Asia +2024-07-10,32683,9027,"[""Laptop""]",4899.01,{},70140,0,North America +2024-12-29,32684,4260,"[""Wireless Mouse""]",2454.79,"{"""": ""27%""}",48617,1,Africa +2024-06-16,32685,9242,"[""Keyboard"", ""Charger"", ""Phone""]",1694.03,"{""seasonal"": ""13%""}",295789,0,Europe +2023-11-16,32686,7623,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3210.62,{},25824,1,Africa +2023-04-10,32687,566,"[""Charger"", ""Tablet""]",4749.17,"{"""": ""21%""}",29790,0,Asia +2023-07-03,32688,3764,"[""Headphones""]",754.96,{},182087,1,North America +2024-10-27,32689,6716,"[""Tablet"", ""Laptop""]",3685.89,{},87806,1,Europe +2023-10-01,32690,9282,"[""Headphones"", ""Keyboard"", ""Monitor""]",2462.47,"{""loyalty"": ""5%""}",50779,0,Asia +2024-03-12,32691,2686,"[""Laptop"", ""Charger"", ""Monitor""]",3083.06,"{""seasonal"": ""10%""}",138523,1,South America +2024-06-01,32692,7675,"[""Wireless Mouse"", ""Monitor""]",4469.91,{},216390,1,South America +2023-11-20,32693,2351,"[""Wireless Mouse"", ""Laptop""]",1645.54,"{""loyalty"": ""22%""}",261105,1,Asia +2024-06-14,32694,9018,"[""Keyboard""]",3692.28,"{""loyalty"": ""22%""}",145565,1,South America +2023-05-21,32695,8132,"[""Tablet""]",2763.95,{},139131,1,North America +2023-09-02,32696,228,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",203.94,{},164484,0,Africa +2024-04-05,32697,3087,"[""Monitor"", ""Phone"", ""Laptop""]",4741.11,{},238507,0,North America +2023-06-19,32698,9812,"[""Headphones""]",1810.27,{},63662,1,North America +2024-01-21,32699,2372,"[""Tablet""]",611.73,"{""promo"": ""7%""}",23448,0,Asia +2023-10-19,32700,8994,"[""Monitor""]",2527.86,{},256462,0,Africa +2024-02-26,32701,9295,"[""Tablet"", ""Monitor"", ""Keyboard""]",3189.7,"{""loyalty"": ""13%""}",185284,0,North America +2024-09-20,32702,9444,"[""Charger""]",665.2,{},216187,1,North America +2024-02-20,32703,3571,"[""Monitor"", ""Charger""]",2188.92,{},66268,1,South America +2024-02-12,32704,1459,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3559.98,"{""promo"": ""28%""}",20414,1,Africa +2023-12-05,32705,4344,"[""Tablet"", ""Monitor""]",2246.37,{},123821,1,South America +2024-12-13,32706,7455,"[""Tablet""]",4229.52,"{""loyalty"": ""17%""}",125338,1,Europe +2023-02-09,32707,4900,"[""Keyboard""]",356.02,"{""seasonal"": ""25%""}",161834,1,South America +2023-09-28,32708,8525,"[""Laptop"", ""Charger""]",3809.31,{},233203,0,Africa +2023-10-02,32709,5158,"[""Monitor"", ""Keyboard""]",3370.21,{},254590,0,South America +2023-07-02,32710,803,"[""Laptop"", ""Wireless Mouse""]",789.18,{},284146,0,Europe +2024-01-06,32711,7362,"[""Wireless Mouse"", ""Phone""]",4591.24,"{""seasonal"": ""19%""}",42753,1,Asia +2023-10-08,32712,5831,"[""Phone"", ""Charger""]",4843.9,"{"""": ""5%""}",257333,1,North America +2023-01-06,32713,7102,"[""Laptop"", ""Phone""]",4278.55,"{"""": ""18%""}",9150,1,North America +2023-07-07,32714,8850,"[""Laptop""]",3691.01,{},238535,1,North America +2024-09-11,32715,110,"[""Laptop""]",674.0,"{""promo"": ""15%""}",142249,1,Asia +2024-02-07,32716,5504,"[""Wireless Mouse""]",4801.31,{},55387,0,Africa +2023-12-06,32717,3135,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4061.14,"{""seasonal"": ""26%""}",276436,1,North America +2023-09-06,32718,2412,"[""Keyboard""]",2411.38,"{""loyalty"": ""28%""}",289186,1,Asia +2024-10-16,32719,1123,"[""Laptop"", ""Monitor""]",4417.42,{},13821,1,South America +2024-01-19,32720,8422,"[""Monitor"", ""Keyboard""]",3517.95,{},136973,1,Asia +2024-11-11,32721,2514,"[""Phone""]",1125.95,"{""seasonal"": ""12%""}",200715,1,North America +2023-09-20,32722,1805,"[""Charger"", ""Keyboard""]",768.32,{},98711,1,Europe +2023-05-15,32723,7375,"[""Keyboard"", ""Tablet"", ""Laptop""]",2349.66,"{"""": ""18%""}",198354,0,North America +2024-06-28,32724,1184,"[""Keyboard""]",264.86,{},211105,0,Africa +2024-06-08,32725,359,"[""Wireless Mouse"", ""Phone""]",3949.86,{},232906,1,North America +2024-07-06,32726,6957,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4940.63,{},214890,0,Africa +2023-01-31,32727,7723,"[""Phone""]",3715.94,{},174157,0,Africa +2024-07-28,32728,8390,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4382.55,"{"""": ""11%""}",42314,0,Asia +2024-05-30,32729,9637,"[""Headphones""]",2493.66,"{""promo"": ""11%""}",111278,0,South America +2024-10-30,32730,2946,"[""Monitor"", ""Tablet""]",2043.62,"{""loyalty"": ""11%""}",169642,1,North America +2023-10-15,32731,2249,"[""Phone""]",2610.76,{},274152,1,South America +2024-11-03,32732,3271,"[""Headphones"", ""Phone"", ""Charger""]",4013.24,{},242035,0,North America +2023-10-04,32733,4024,"[""Headphones""]",3182.0,"{""promo"": ""9%""}",105266,0,Europe +2024-09-01,32734,1996,"[""Tablet""]",2617.68,{},195217,1,Africa +2024-05-19,32735,5236,"[""Laptop"", ""Monitor""]",958.11,"{""promo"": ""9%""}",10696,0,Asia +2023-03-03,32736,1617,"[""Phone""]",3399.76,"{""promo"": ""9%""}",268448,0,South America +2023-04-02,32737,8985,"[""Charger""]",1884.09,{},237384,0,Africa +2023-03-06,32738,1676,"[""Phone""]",1846.0,{},287281,0,Asia +2024-12-16,32739,5379,"[""Monitor""]",1776.65,"{""promo"": ""25%""}",211935,0,North America +2023-08-20,32740,1976,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2402.56,"{""loyalty"": ""30%""}",297534,0,Europe +2023-11-30,32741,1173,"[""Keyboard""]",1608.01,"{""promo"": ""9%""}",88439,1,North America +2024-02-29,32742,3853,"[""Tablet"", ""Charger""]",3268.31,"{""promo"": ""24%""}",103023,0,Africa +2024-09-06,32743,9262,"[""Tablet"", ""Wireless Mouse""]",3362.77,"{"""": ""28%""}",210718,1,South America +2024-12-18,32744,7621,"[""Wireless Mouse""]",4877.35,{},192277,0,Africa +2024-08-25,32745,1144,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4536.76,{},79035,0,North America +2024-07-16,32746,8234,"[""Monitor"", ""Tablet"", ""Laptop""]",4705.53,"{""promo"": ""26%""}",1756,1,Asia +2023-07-29,32747,6466,"[""Phone"", ""Tablet""]",4683.88,{},166048,1,North America +2024-07-08,32748,3301,"[""Charger"", ""Laptop""]",3808.47,{},119033,0,Africa +2024-01-10,32749,5960,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3658.4,"{"""": ""28%""}",127739,1,Africa +2023-04-10,32750,7603,"[""Keyboard""]",4146.67,{},222205,1,Asia +2023-08-21,32751,5619,"[""Phone"", ""Monitor""]",4081.02,{},68948,0,Europe +2024-03-11,32752,2907,"[""Headphones"", ""Wireless Mouse""]",3456.9,{},195449,0,Europe +2024-04-17,32753,2362,"[""Phone""]",4327.52,{},179934,0,North America +2024-05-29,32754,4807,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3708.97,{},67622,0,Europe +2024-09-29,32755,9010,"[""Phone"", ""Headphones"", ""Charger""]",544.77,{},151415,0,Africa +2024-01-31,32756,1767,"[""Monitor"", ""Headphones""]",1659.89,"{""promo"": ""22%""}",50774,0,Africa +2023-09-30,32757,856,"[""Keyboard"", ""Tablet"", ""Phone""]",1444.58,{},25555,0,Asia +2023-09-12,32758,1536,"[""Laptop""]",3205.9,"{""seasonal"": ""20%""}",81050,0,North America +2023-03-26,32759,4315,"[""Tablet""]",4903.48,{},249734,0,Europe +2024-06-04,32760,1898,"[""Headphones""]",4064.23,"{""seasonal"": ""22%""}",197068,1,Europe +2023-02-04,32761,350,"[""Phone""]",3754.03,{},164097,0,South America +2023-01-08,32762,4585,"[""Laptop""]",2992.74,{},7395,0,South America +2024-06-25,32763,3378,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2338.29,"{"""": ""15%""}",18292,1,Asia +2023-04-29,32764,2966,"[""Monitor""]",3349.1,{},124467,0,North America +2024-10-31,32765,2145,"[""Charger"", ""Keyboard"", ""Monitor""]",4541.59,"{""seasonal"": ""7%""}",233737,0,North America +2023-07-25,32766,5101,"[""Phone""]",1852.98,"{""seasonal"": ""5%""}",63720,1,South America +2024-01-07,32767,2372,"[""Tablet"", ""Keyboard""]",1777.56,"{""loyalty"": ""11%""}",45650,1,South America +2023-02-04,32768,969,"[""Laptop"", ""Phone""]",3895.42,"{""seasonal"": ""17%""}",128495,0,Europe +2024-01-11,32769,1252,"[""Headphones""]",4018.1,"{""loyalty"": ""18%""}",240551,0,South America +2023-12-23,32770,58,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2359.62,{},271117,1,South America +2023-04-18,32771,7483,"[""Tablet"", ""Phone"", ""Charger""]",1693.91,"{"""": ""20%""}",146708,1,Europe +2024-05-01,32772,1625,"[""Charger"", ""Headphones"", ""Tablet""]",4910.15,{},142962,1,Asia +2023-02-04,32773,2970,"[""Headphones"", ""Tablet"", ""Keyboard""]",4347.61,{},233233,1,Asia +2023-01-18,32774,8559,"[""Keyboard""]",3920.32,"{""seasonal"": ""6%""}",123028,0,Asia +2023-11-06,32775,5887,"[""Keyboard"", ""Monitor""]",4503.26,{},72228,0,Africa +2024-07-14,32776,5906,"[""Charger"", ""Monitor""]",352.93,"{""loyalty"": ""25%""}",67688,0,South America +2023-06-09,32777,3078,"[""Keyboard"", ""Phone"", ""Headphones""]",3794.96,"{"""": ""21%""}",217165,0,Europe +2023-06-23,32778,9037,"[""Phone""]",3310.34,{},7171,0,Africa +2024-03-18,32779,2208,"[""Keyboard"", ""Tablet"", ""Headphones""]",257.31,{},297189,0,North America +2023-05-01,32780,4888,"[""Phone"", ""Wireless Mouse""]",1070.12,"{"""": ""10%""}",191158,0,Africa +2024-04-11,32781,9112,"[""Phone""]",1640.08,"{""loyalty"": ""13%""}",218608,1,Asia +2024-11-07,32782,3733,"[""Charger""]",915.02,{},180402,1,South America +2024-08-12,32783,5598,"[""Wireless Mouse""]",4331.02,{},172552,0,South America +2024-11-04,32784,6750,"[""Keyboard""]",2168.27,{},293563,0,North America +2023-04-20,32785,8146,"[""Laptop"", ""Tablet""]",1222.04,"{""loyalty"": ""5%""}",144106,1,South America +2024-08-25,32786,6461,"[""Phone"", ""Tablet"", ""Charger""]",1224.83,"{""promo"": ""27%""}",5318,1,Asia +2024-01-24,32787,1975,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",209.73,"{""loyalty"": ""16%""}",247118,1,North America +2024-03-26,32788,6147,"[""Tablet""]",2368.65,{},269741,1,Africa +2023-12-23,32789,3168,"[""Phone"", ""Charger""]",1460.72,"{""promo"": ""12%""}",141904,0,South America +2024-10-28,32790,502,"[""Keyboard"", ""Monitor"", ""Tablet""]",2135.83,"{""loyalty"": ""17%""}",119756,0,South America +2023-04-26,32791,4362,"[""Monitor"", ""Laptop""]",3732.42,"{""promo"": ""28%""}",297972,1,South America +2023-03-24,32792,7673,"[""Headphones"", ""Monitor""]",3675.38,"{""loyalty"": ""29%""}",31715,1,Africa +2024-06-22,32793,9848,"[""Headphones"", ""Laptop""]",3873.8,"{""loyalty"": ""26%""}",178969,0,Asia +2024-03-06,32794,6142,"[""Tablet""]",4359.16,"{""seasonal"": ""9%""}",236668,1,South America +2023-07-25,32795,6277,"[""Keyboard"", ""Monitor""]",581.96,{},17817,0,Europe +2023-05-17,32796,6022,"[""Monitor"", ""Laptop""]",1570.59,"{"""": ""18%""}",77066,1,North America +2023-06-25,32797,4554,"[""Keyboard"", ""Monitor"", ""Charger""]",4317.3,"{""loyalty"": ""8%""}",281588,1,Asia +2023-08-20,32798,4988,"[""Phone""]",2706.6,{},141319,0,South America +2024-07-22,32799,2461,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",395.18,{},116456,0,Asia +2023-10-06,32800,7388,"[""Tablet"", ""Charger""]",213.4,{},203265,0,South America +2023-02-26,32801,3435,"[""Phone"", ""Tablet"", ""Monitor""]",1010.01,"{""promo"": ""6%""}",158852,0,Asia +2024-10-27,32802,8716,"[""Charger"", ""Phone"", ""Tablet""]",4624.68,"{""seasonal"": ""28%""}",205453,0,Asia +2024-12-27,32803,9557,"[""Headphones""]",1099.44,{},154020,1,Europe +2024-12-12,32804,8521,"[""Monitor"", ""Headphones"", ""Charger""]",3727.04,"{""promo"": ""17%""}",215170,0,South America +2023-03-22,32805,6100,"[""Tablet"", ""Headphones""]",1225.1,"{""promo"": ""14%""}",278288,1,Africa +2024-10-14,32806,8136,"[""Headphones"", ""Laptop"", ""Charger""]",3556.76,{},128531,0,Africa +2023-09-23,32807,1769,"[""Tablet"", ""Laptop""]",4688.08,"{""seasonal"": ""13%""}",226276,1,Europe +2023-01-17,32808,8412,"[""Phone"", ""Keyboard""]",2464.4,{},205552,1,Asia +2023-07-10,32809,3570,"[""Charger"", ""Laptop""]",1087.1,{},199669,0,Africa +2023-03-29,32810,6535,"[""Phone"", ""Charger""]",1503.59,{},216714,0,North America +2024-09-16,32811,808,"[""Wireless Mouse""]",579.47,"{""seasonal"": ""25%""}",280356,0,Asia +2023-04-30,32812,7136,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",362.92,"{""loyalty"": ""20%""}",146227,0,Africa +2024-02-01,32813,7929,"[""Wireless Mouse""]",4674.24,{},298379,1,North America +2023-04-30,32814,1421,"[""Monitor""]",4130.88,{},139788,1,South America +2023-06-16,32815,6504,"[""Monitor""]",1841.94,"{""seasonal"": ""15%""}",266600,1,Asia +2023-02-25,32816,2679,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2521.73,{},24701,0,Asia +2024-04-25,32817,5580,"[""Tablet""]",1180.06,"{""loyalty"": ""30%""}",168423,1,Asia +2024-04-02,32818,7749,"[""Tablet""]",1092.03,{},269656,1,Europe +2023-07-14,32819,5709,"[""Wireless Mouse"", ""Keyboard""]",138.91,"{""promo"": ""19%""}",290331,1,North America +2023-09-07,32820,2092,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4417.38,"{""promo"": ""22%""}",30080,0,South America +2023-06-16,32821,9727,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4475.12,{},118834,0,South America +2023-10-29,32822,4827,"[""Tablet"", ""Monitor"", ""Keyboard""]",1464.43,"{""seasonal"": ""15%""}",158401,0,Africa +2024-03-10,32823,605,"[""Tablet""]",3836.88,{},265487,1,Africa +2023-01-05,32824,7590,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1947.24,{},9741,0,North America +2023-11-16,32825,5784,"[""Wireless Mouse""]",742.56,{},69376,1,Asia +2024-02-19,32826,9825,"[""Tablet"", ""Headphones"", ""Charger""]",2524.51,{},92624,1,Europe +2024-08-15,32827,2149,"[""Monitor"", ""Charger"", ""Keyboard""]",4489.89,{},172536,1,Europe +2023-04-04,32828,6434,"[""Headphones"", ""Keyboard""]",4682.36,"{""promo"": ""28%""}",270898,0,South America +2024-08-14,32829,9000,"[""Headphones"", ""Phone"", ""Charger""]",844.26,{},206780,1,South America +2023-02-19,32830,3093,"[""Phone"", ""Headphones""]",1091.22,"{""loyalty"": ""18%""}",106572,1,North America +2023-11-08,32831,6535,"[""Tablet"", ""Laptop""]",1081.4,{},274949,1,Asia +2024-12-07,32832,7249,"[""Phone"", ""Charger"", ""Tablet""]",1406.02,"{""seasonal"": ""5%""}",12395,0,Europe +2024-12-10,32833,1363,"[""Laptop"", ""Wireless Mouse""]",1585.87,"{""loyalty"": ""12%""}",41978,0,Africa +2023-11-05,32834,8967,"[""Headphones"", ""Keyboard""]",1917.42,"{""loyalty"": ""28%""}",35609,1,Europe +2024-08-28,32835,4400,"[""Tablet"", ""Keyboard"", ""Monitor""]",492.83,"{""promo"": ""11%""}",197411,0,South America +2024-08-18,32836,5365,"[""Headphones"", ""Keyboard"", ""Charger""]",4726.04,"{"""": ""5%""}",276862,0,South America +2023-11-17,32837,6479,"[""Laptop""]",4505.75,"{"""": ""23%""}",202340,0,Africa +2024-02-02,32838,9343,"[""Keyboard"", ""Wireless Mouse""]",2174.75,{},15577,0,Europe +2023-12-01,32839,653,"[""Keyboard"", ""Phone"", ""Tablet""]",79.15,{},67870,0,Africa +2024-08-11,32840,7762,"[""Keyboard""]",647.0,"{"""": ""5%""}",123122,1,North America +2023-12-30,32841,2471,"[""Wireless Mouse""]",252.78,"{"""": ""23%""}",175711,0,Asia +2024-02-14,32842,6331,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2463.88,{},224161,1,North America +2024-10-22,32843,112,"[""Keyboard""]",3506.78,"{""seasonal"": ""10%""}",274324,0,Asia +2023-09-15,32844,8851,"[""Monitor"", ""Keyboard""]",1232.83,"{""promo"": ""30%""}",184893,1,Africa +2023-07-03,32845,428,"[""Monitor""]",3219.21,"{"""": ""8%""}",272702,1,North America +2024-09-23,32846,5607,"[""Phone"", ""Keyboard"", ""Monitor""]",275.37,{},153434,1,Africa +2023-01-21,32847,2066,"[""Tablet"", ""Laptop"", ""Keyboard""]",1024.47,{},115325,1,Europe +2024-10-11,32848,9394,"[""Phone""]",860.94,{},61810,1,North America +2024-04-24,32849,92,"[""Monitor"", ""Charger""]",3033.74,"{""promo"": ""8%""}",87290,0,Europe +2024-02-25,32850,9020,"[""Keyboard""]",3203.14,{},140547,1,South America +2024-05-25,32851,7349,"[""Wireless Mouse"", ""Laptop""]",3651.38,{},261896,0,North America +2023-05-31,32852,1163,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3388.18,"{""seasonal"": ""5%""}",153015,0,North America +2023-05-19,32853,1312,"[""Laptop"", ""Charger"", ""Phone""]",2223.2,{},255615,1,South America +2023-11-24,32854,597,"[""Wireless Mouse""]",3326.85,{},155593,0,Europe +2024-01-11,32855,6553,"[""Phone"", ""Wireless Mouse""]",4609.57,{},197291,0,South America +2024-05-06,32856,4177,"[""Wireless Mouse""]",1539.81,{},205407,0,Africa +2024-09-04,32857,5864,"[""Headphones""]",2210.58,"{"""": ""23%""}",157907,0,North America +2024-10-31,32858,4477,"[""Tablet"", ""Laptop"", ""Monitor""]",1966.87,"{""promo"": ""19%""}",259728,0,North America +2023-03-18,32859,991,"[""Laptop"", ""Charger"", ""Headphones""]",4635.85,{},247346,0,Africa +2023-03-13,32860,6915,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2258.81,{},186378,0,North America +2023-08-29,32861,9195,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2808.57,{},180624,1,Europe +2024-07-04,32862,1404,"[""Tablet"", ""Monitor"", ""Keyboard""]",4767.65,{},274762,0,South America +2023-10-21,32863,3991,"[""Wireless Mouse"", ""Laptop""]",3716.09,{},155120,1,Asia +2024-10-14,32864,9000,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2105.19,{},40076,1,South America +2023-10-05,32865,5391,"[""Headphones""]",150.75,"{""loyalty"": ""19%""}",299267,0,North America +2024-02-19,32866,8086,"[""Monitor"", ""Headphones"", ""Tablet""]",3639.67,"{"""": ""26%""}",123067,1,South America +2024-10-30,32867,9971,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4687.75,{},88333,1,Africa +2024-02-17,32868,8260,"[""Wireless Mouse"", ""Monitor""]",1055.92,"{""loyalty"": ""14%""}",170689,1,Europe +2023-06-22,32869,252,"[""Charger""]",3509.59,{},94874,0,Europe +2024-09-15,32870,313,"[""Monitor"", ""Tablet""]",3387.44,"{""loyalty"": ""6%""}",12384,1,Europe +2024-09-10,32871,5399,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1119.97,"{""seasonal"": ""23%""}",204422,0,Asia +2023-08-11,32872,6083,"[""Wireless Mouse"", ""Keyboard""]",4450.19,{},251137,0,North America +2023-05-25,32873,7101,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3097.68,"{"""": ""12%""}",182292,1,South America +2024-09-01,32874,9588,"[""Phone"", ""Monitor""]",2585.17,{},81313,0,Asia +2023-03-13,32875,6027,"[""Tablet""]",2780.13,{},52061,0,North America +2023-07-10,32876,4710,"[""Charger"", ""Tablet"", ""Keyboard""]",1501.03,{},5182,0,Europe +2023-10-06,32877,2901,"[""Monitor""]",1755.67,{},248521,0,North America +2024-04-28,32878,6062,"[""Headphones"", ""Charger"", ""Keyboard""]",1836.89,"{""promo"": ""28%""}",51965,0,Europe +2024-07-06,32879,3528,"[""Keyboard"", ""Phone"", ""Laptop""]",175.1,"{""loyalty"": ""14%""}",48051,0,Europe +2023-02-13,32880,6759,"[""Headphones"", ""Phone"", ""Monitor""]",1584.27,"{""seasonal"": ""14%""}",195410,1,South America +2024-11-22,32881,7652,"[""Keyboard"", ""Headphones"", ""Charger""]",1755.43,"{""seasonal"": ""15%""}",289590,1,South America +2024-10-28,32882,1371,"[""Laptop"", ""Phone"", ""Monitor""]",4539.95,"{""loyalty"": ""27%""}",29917,1,Africa +2024-11-04,32883,8084,"[""Laptop"", ""Keyboard""]",3527.81,{},201791,0,Africa +2023-03-09,32884,7761,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3312.7,{},42922,1,Asia +2023-12-03,32885,5963,"[""Laptop""]",3707.13,{},228624,1,South America +2023-01-02,32886,1871,"[""Keyboard""]",3291.76,{},67905,0,Asia +2023-06-16,32887,3720,"[""Phone""]",1210.71,"{"""": ""7%""}",110830,0,North America +2024-01-25,32888,4401,"[""Monitor"", ""Phone""]",3354.52,{},81540,0,North America +2023-08-31,32889,721,"[""Wireless Mouse""]",2863.89,{},251086,0,Asia +2023-08-19,32890,2980,"[""Laptop"", ""Monitor"", ""Headphones""]",2424.96,"{""promo"": ""11%""}",48056,0,Africa +2024-03-27,32891,1725,"[""Laptop""]",492.2,"{"""": ""9%""}",121212,1,North America +2023-12-07,32892,1234,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3323.69,{},64719,1,Europe +2023-10-31,32893,5066,"[""Keyboard""]",2636.13,"{""promo"": ""9%""}",58351,0,Africa +2024-06-08,32894,8417,"[""Charger"", ""Wireless Mouse""]",4772.24,{},65866,0,Africa +2023-09-02,32895,4330,"[""Keyboard""]",739.2,{},85462,0,South America +2024-03-29,32896,7053,"[""Wireless Mouse""]",1977.38,"{"""": ""8%""}",163990,0,South America +2023-01-22,32897,5176,"[""Laptop""]",3828.89,{},70583,0,North America +2024-08-01,32898,7160,"[""Charger"", ""Monitor""]",3546.32,"{""seasonal"": ""25%""}",279674,0,South America +2023-08-02,32899,4620,"[""Charger""]",3473.07,{},218661,1,Africa +2024-09-03,32900,5607,"[""Headphones"", ""Tablet""]",4274.54,"{"""": ""6%""}",116478,0,South America +2024-07-26,32901,1980,"[""Wireless Mouse""]",1351.26,{},233886,0,South America +2024-02-23,32902,4240,"[""Headphones"", ""Tablet""]",3578.61,"{"""": ""14%""}",137640,1,Asia +2024-02-19,32903,1213,"[""Wireless Mouse""]",2925.42,{},51340,1,Europe +2024-03-09,32904,4165,"[""Headphones"", ""Monitor"", ""Charger""]",101.2,{},118278,0,South America +2023-06-13,32905,5953,"[""Laptop"", ""Charger"", ""Keyboard""]",756.39,{},125293,0,Europe +2024-04-14,32906,7912,"[""Keyboard"", ""Laptop""]",2768.77,"{""loyalty"": ""5%""}",255845,0,South America +2023-11-27,32907,8360,"[""Charger"", ""Phone""]",3984.13,{},291311,0,Africa +2023-06-17,32908,5301,"[""Tablet"", ""Laptop"", ""Monitor""]",1439.99,"{""seasonal"": ""12%""}",89817,1,Europe +2023-05-29,32909,1081,"[""Wireless Mouse"", ""Monitor""]",2980.24,{},231780,0,Africa +2024-10-23,32910,7955,"[""Phone"", ""Charger"", ""Headphones""]",539.13,{},267507,1,Europe +2023-10-11,32911,1145,"[""Keyboard"", ""Charger"", ""Phone""]",2834.75,{},260230,1,Asia +2024-08-16,32912,6771,"[""Keyboard"", ""Laptop""]",121.08,"{""promo"": ""7%""}",239489,0,South America +2024-07-28,32913,5803,"[""Tablet"", ""Phone"", ""Headphones""]",1164.81,{},107623,1,Africa +2024-11-20,32914,204,"[""Phone""]",3790.46,{},285524,1,Asia +2023-05-25,32915,215,"[""Laptop"", ""Monitor"", ""Charger""]",3285.89,{},89233,0,Asia +2023-12-30,32916,7627,"[""Phone""]",698.78,"{""seasonal"": ""28%""}",174828,1,South America +2024-04-20,32917,1969,"[""Laptop""]",4971.35,{},59610,1,Africa +2024-08-14,32918,239,"[""Phone"", ""Tablet""]",4681.27,{},198725,1,Asia +2023-08-05,32919,1288,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",918.28,{},244573,0,North America +2024-02-04,32920,3681,"[""Headphones"", ""Monitor"", ""Tablet""]",3560.32,"{""promo"": ""29%""}",156357,0,Europe +2024-11-13,32921,8768,"[""Headphones""]",708.09,{},79479,0,North America +2023-09-22,32922,6419,"[""Tablet"", ""Keyboard""]",2764.88,"{""loyalty"": ""24%""}",132872,0,North America +2023-08-31,32923,9535,"[""Keyboard""]",418.62,"{""loyalty"": ""8%""}",37524,1,Asia +2023-08-10,32924,5735,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3047.3,"{""loyalty"": ""28%""}",46383,1,Asia +2024-06-09,32925,9860,"[""Keyboard""]",3310.37,"{""promo"": ""11%""}",117744,0,Asia +2024-06-25,32926,4119,"[""Phone""]",668.98,"{""seasonal"": ""7%""}",157528,1,Africa +2024-04-10,32927,9856,"[""Wireless Mouse""]",56.95,{},13138,0,Europe +2023-12-30,32928,3480,"[""Monitor"", ""Phone"", ""Keyboard""]",136.99,{},13215,0,Africa +2023-08-26,32929,2301,"[""Wireless Mouse"", ""Headphones""]",4956.16,"{""loyalty"": ""17%""}",35692,1,Asia +2023-09-14,32930,1737,"[""Tablet""]",3279.65,"{""loyalty"": ""29%""}",20173,0,Europe +2023-09-05,32931,7286,"[""Wireless Mouse""]",2868.53,{},173424,0,Africa +2023-12-24,32932,5654,"[""Wireless Mouse""]",2028.88,"{""loyalty"": ""18%""}",132087,0,North America +2023-06-05,32933,6205,"[""Charger"", ""Wireless Mouse""]",2821.57,{},101758,1,South America +2024-08-21,32934,7788,"[""Charger""]",366.57,"{""loyalty"": ""10%""}",129096,1,Europe +2024-03-16,32935,7817,"[""Monitor""]",1463.25,{},135889,1,Asia +2023-08-27,32936,5389,"[""Wireless Mouse""]",3150.13,"{""loyalty"": ""20%""}",235218,0,Europe +2023-08-24,32937,2912,"[""Wireless Mouse"", ""Headphones""]",3511.54,"{"""": ""19%""}",226900,0,South America +2024-01-05,32938,2539,"[""Phone""]",4957.68,"{""promo"": ""24%""}",154924,0,Europe +2023-05-19,32939,2501,"[""Charger"", ""Laptop"", ""Phone""]",1196.14,"{""seasonal"": ""24%""}",14445,1,Asia +2024-12-20,32940,4447,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4592.78,"{""promo"": ""12%""}",208736,0,Europe +2024-01-17,32941,7935,"[""Headphones""]",4397.49,"{""loyalty"": ""30%""}",252112,0,South America +2023-07-14,32942,9824,"[""Headphones"", ""Laptop""]",2557.26,{},48224,1,Europe +2024-12-30,32943,4885,"[""Monitor"", ""Tablet"", ""Laptop""]",3955.83,{},104612,1,Asia +2024-04-25,32944,8211,"[""Charger""]",3554.97,{},290650,1,South America +2023-07-06,32945,6263,"[""Tablet""]",1330.11,"{""seasonal"": ""11%""}",98730,1,Europe +2024-06-11,32946,77,"[""Headphones"", ""Charger"", ""Tablet""]",136.03,{},111024,0,Africa +2024-11-18,32947,3051,"[""Headphones"", ""Tablet""]",2534.55,"{""promo"": ""28%""}",11047,1,Africa +2023-10-18,32948,3177,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1714.21,{},131372,1,North America +2024-05-11,32949,6178,"[""Monitor"", ""Wireless Mouse""]",692.37,"{""loyalty"": ""26%""}",276001,0,Asia +2024-01-29,32950,7875,"[""Keyboard"", ""Tablet""]",1839.0,{},10610,0,North America +2023-05-28,32951,517,"[""Monitor"", ""Headphones"", ""Phone""]",3579.38,{},157023,0,Europe +2024-11-01,32952,2207,"[""Headphones"", ""Tablet""]",207.09,"{""promo"": ""7%""}",148609,0,Asia +2023-01-08,32953,9209,"[""Laptop""]",3911.6,{},153455,1,Europe +2023-09-05,32954,8089,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",475.25,"{"""": ""5%""}",30141,1,Europe +2023-09-04,32955,4071,"[""Tablet"", ""Headphones""]",1630.65,"{""loyalty"": ""22%""}",209745,1,Asia +2024-04-24,32956,1289,"[""Wireless Mouse""]",3440.5,"{""promo"": ""19%""}",260201,1,Asia +2023-05-05,32957,6128,"[""Charger""]",4313.0,{},145370,1,North America +2024-06-11,32958,119,"[""Wireless Mouse"", ""Headphones""]",1788.21,{},110783,0,South America +2023-07-31,32959,5078,"[""Monitor"", ""Keyboard""]",3120.44,"{""loyalty"": ""8%""}",245385,1,Africa +2024-02-10,32960,3832,"[""Keyboard""]",2463.61,"{""loyalty"": ""24%""}",253036,1,North America +2023-07-03,32961,7974,"[""Tablet""]",4158.26,"{"""": ""8%""}",150215,0,Asia +2023-12-01,32962,2643,"[""Laptop""]",407.25,"{""seasonal"": ""24%""}",96388,1,Africa +2023-05-26,32963,8984,"[""Phone""]",2126.25,{},100060,0,South America +2023-11-23,32964,8797,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3532.68,"{""seasonal"": ""14%""}",132209,1,Africa +2023-11-02,32965,1085,"[""Tablet"", ""Laptop""]",1876.65,{},61307,0,Europe +2024-06-05,32966,7975,"[""Laptop"", ""Keyboard"", ""Headphones""]",2432.77,"{""loyalty"": ""12%""}",154683,0,Asia +2023-06-29,32967,5734,"[""Monitor"", ""Charger"", ""Phone""]",126.71,{},148992,0,North America +2023-11-19,32968,8812,"[""Keyboard""]",1114.7,{},141917,1,North America +2023-04-27,32969,1401,"[""Phone"", ""Headphones""]",1798.55,"{""seasonal"": ""24%""}",263017,1,South America +2023-03-08,32970,4834,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1107.02,{},54868,0,Asia +2023-09-23,32971,4565,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2001.05,{},138317,0,South America +2023-02-05,32972,6920,"[""Wireless Mouse""]",980.98,"{""promo"": ""13%""}",65062,0,North America +2023-08-01,32973,3690,"[""Wireless Mouse""]",3521.87,"{""loyalty"": ""7%""}",153744,0,Europe +2024-02-02,32974,1864,"[""Phone"", ""Headphones""]",1354.39,{},252694,0,South America +2024-01-23,32975,6155,"[""Charger"", ""Headphones"", ""Monitor""]",2636.78,{},298369,0,Europe +2023-06-17,32976,6828,"[""Headphones""]",2021.63,"{""promo"": ""9%""}",59027,1,Africa +2024-05-01,32977,6830,"[""Headphones"", ""Keyboard""]",2048.67,{},239892,0,Africa +2023-04-21,32978,9209,"[""Laptop""]",525.49,"{""loyalty"": ""23%""}",2334,1,South America +2023-01-14,32979,6275,"[""Wireless Mouse""]",1396.19,{},129146,1,Africa +2024-09-09,32980,1027,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1672.25,"{"""": ""5%""}",243006,1,Europe +2024-05-18,32981,6253,"[""Phone"", ""Laptop"", ""Charger""]",3838.44,{},45351,0,South America +2024-02-01,32982,9818,"[""Monitor"", ""Charger"", ""Keyboard""]",928.28,"{""loyalty"": ""22%""}",123096,1,South America +2024-03-17,32983,4497,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2222.11,"{""loyalty"": ""28%""}",97868,1,Europe +2023-09-11,32984,923,"[""Laptop"", ""Charger""]",343.86,{},281134,1,Africa +2024-03-13,32985,9152,"[""Phone"", ""Keyboard"", ""Headphones""]",1147.54,{},22832,1,Europe +2023-08-01,32986,5273,"[""Headphones"", ""Charger""]",265.61,"{""promo"": ""6%""}",132952,1,South America +2024-03-22,32987,9412,"[""Phone"", ""Wireless Mouse""]",2967.38,"{""seasonal"": ""17%""}",246817,0,Asia +2024-07-18,32988,4187,"[""Keyboard""]",3238.88,{},12401,0,South America +2024-10-18,32989,197,"[""Phone"", ""Charger"", ""Tablet""]",2803.59,{},47004,0,Asia +2024-06-28,32990,82,"[""Charger"", ""Phone""]",1678.21,"{""seasonal"": ""25%""}",183746,0,South America +2024-12-21,32991,8232,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1052.87,"{""loyalty"": ""30%""}",56370,0,Europe +2024-10-15,32992,4814,"[""Laptop"", ""Keyboard""]",2008.92,"{"""": ""5%""}",106536,1,Africa +2023-10-17,32993,7693,"[""Keyboard"", ""Laptop""]",4022.55,"{"""": ""20%""}",128800,1,Africa +2024-06-21,32994,8032,"[""Tablet"", ""Monitor""]",1194.91,"{""loyalty"": ""15%""}",150533,1,Africa +2024-12-16,32995,1705,"[""Charger"", ""Phone""]",3107.15,"{""seasonal"": ""29%""}",38273,0,Europe +2024-03-27,32996,735,"[""Headphones"", ""Wireless Mouse""]",4795.73,"{"""": ""24%""}",156031,0,Asia +2024-08-18,32997,4712,"[""Laptop"", ""Headphones""]",4039.39,{},113786,0,Asia +2024-09-16,32998,5682,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3540.69,{},172646,0,Africa +2024-05-20,32999,7036,"[""Tablet"", ""Charger""]",888.47,"{""loyalty"": ""13%""}",236608,1,Africa +2023-11-23,33000,6243,"[""Laptop"", ""Headphones"", ""Charger""]",1940.92,"{"""": ""5%""}",24157,0,Africa +2024-10-11,33001,9471,"[""Wireless Mouse""]",292.84,"{""promo"": ""12%""}",282657,0,Europe +2023-05-12,33002,8970,"[""Charger"", ""Keyboard""]",3911.39,"{"""": ""21%""}",218104,1,Africa +2024-07-10,33003,1929,"[""Charger"", ""Laptop""]",2770.0,"{""loyalty"": ""29%""}",115137,1,Europe +2024-11-09,33004,824,"[""Monitor"", ""Phone"", ""Tablet""]",1767.36,"{""promo"": ""29%""}",92911,1,Europe +2023-02-16,33005,8832,"[""Monitor"", ""Keyboard""]",2822.22,{},288203,0,South America +2023-05-25,33006,9571,"[""Laptop"", ""Headphones"", ""Monitor""]",3166.9,"{""loyalty"": ""27%""}",117044,0,South America +2023-11-01,33007,9200,"[""Monitor"", ""Headphones"", ""Phone""]",4200.42,{},165428,0,South America +2023-02-07,33008,5798,"[""Laptop""]",249.18,{},46705,0,North America +2024-01-20,33009,6942,"[""Monitor"", ""Charger""]",3771.52,"{""loyalty"": ""17%""}",148171,1,South America +2023-02-06,33010,2763,"[""Laptop""]",1589.53,"{"""": ""10%""}",41007,1,North America +2024-11-10,33011,2171,"[""Tablet""]",3614.79,{},165048,0,Asia +2024-05-18,33012,4015,"[""Charger""]",3823.25,"{""seasonal"": ""28%""}",96389,1,Europe +2024-11-19,33013,1354,"[""Wireless Mouse"", ""Phone""]",585.54,{},19023,1,Africa +2024-07-17,33014,7682,"[""Monitor""]",2181.09,{},105922,1,Asia +2024-04-04,33015,8909,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1810.97,"{""loyalty"": ""7%""}",251772,1,North America +2024-05-13,33016,6306,"[""Headphones"", ""Keyboard""]",238.91,"{""seasonal"": ""13%""}",262735,1,South America +2024-10-13,33017,261,"[""Headphones"", ""Charger""]",1041.73,"{""promo"": ""20%""}",119231,1,South America +2024-05-20,33018,4389,"[""Tablet"", ""Phone"", ""Laptop""]",2291.21,"{""promo"": ""23%""}",79242,1,North America +2024-06-14,33019,9361,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",99.84,{},69176,0,Europe +2023-10-16,33020,8045,"[""Headphones"", ""Laptop""]",2208.93,"{""promo"": ""24%""}",277076,0,Europe +2024-04-12,33021,906,"[""Wireless Mouse""]",2119.06,{},160963,1,Africa +2024-06-10,33022,6157,"[""Headphones"", ""Keyboard""]",1964.0,{},147578,0,Asia +2024-12-15,33023,4320,"[""Headphones"", ""Monitor""]",2282.63,{},190787,0,South America +2024-08-11,33024,6061,"[""Wireless Mouse""]",3840.84,{},105037,1,North America +2024-12-09,33025,5124,"[""Laptop""]",3390.28,"{""loyalty"": ""16%""}",271163,0,Asia +2023-06-27,33026,9077,"[""Tablet"", ""Laptop"", ""Charger""]",629.31,"{""seasonal"": ""11%""}",130795,1,South America +2023-03-03,33027,2192,"[""Keyboard"", ""Phone""]",1575.06,{},150811,1,North America +2023-09-26,33028,1473,"[""Tablet"", ""Charger""]",2370.39,"{""loyalty"": ""7%""}",133886,0,Europe +2024-04-21,33029,3912,"[""Headphones"", ""Tablet"", ""Phone""]",4911.85,"{""promo"": ""9%""}",293592,0,North America +2023-05-11,33030,5528,"[""Laptop""]",1536.24,"{"""": ""14%""}",204748,1,South America +2023-02-26,33031,5779,"[""Keyboard"", ""Headphones"", ""Charger""]",189.12,{},14788,1,Asia +2024-05-24,33032,4054,"[""Tablet"", ""Laptop"", ""Monitor""]",3125.31,"{""loyalty"": ""26%""}",193217,1,North America +2023-03-04,33033,1785,"[""Monitor""]",1208.86,"{""seasonal"": ""13%""}",97698,0,South America +2024-11-16,33034,4181,"[""Headphones"", ""Charger"", ""Tablet""]",1854.58,"{"""": ""23%""}",207030,0,North America +2023-05-29,33035,8210,"[""Wireless Mouse""]",1618.96,"{""promo"": ""17%""}",110856,1,South America +2023-12-30,33036,7347,"[""Headphones""]",118.34,{},242190,1,Europe +2023-01-24,33037,4630,"[""Charger""]",4942.3,"{""promo"": ""16%""}",90446,1,Africa +2023-10-31,33038,5383,"[""Keyboard""]",578.04,"{""loyalty"": ""24%""}",30591,0,Asia +2023-01-12,33039,1299,"[""Laptop"", ""Keyboard"", ""Monitor""]",4769.85,"{""promo"": ""16%""}",67786,0,Europe +2023-07-11,33040,9301,"[""Headphones"", ""Phone""]",4730.5,"{""seasonal"": ""30%""}",280098,1,Asia +2023-01-22,33041,1030,"[""Wireless Mouse"", ""Headphones""]",1026.3,{},139411,1,Africa +2023-03-10,33042,4531,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2642.79,"{""loyalty"": ""27%""}",106367,1,South America +2023-11-27,33043,6346,"[""Monitor""]",3123.01,{},271697,1,Asia +2024-10-27,33044,5215,"[""Laptop""]",4228.03,"{""loyalty"": ""19%""}",195825,0,North America +2024-05-28,33045,4744,"[""Charger"", ""Wireless Mouse""]",3384.43,{},60528,1,North America +2024-06-06,33046,580,"[""Monitor"", ""Wireless Mouse""]",1042.97,{},162445,1,Africa +2024-08-09,33047,6013,"[""Phone"", ""Laptop""]",1546.92,{},10473,0,North America +2023-08-03,33048,3144,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3624.53,"{""promo"": ""26%""}",279571,1,Africa +2024-11-16,33049,9001,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",961.96,{},108795,1,South America +2023-07-10,33050,1594,"[""Keyboard"", ""Charger"", ""Laptop""]",122.12,"{"""": ""24%""}",49940,0,Europe +2023-04-27,33051,5218,"[""Monitor"", ""Keyboard""]",1872.96,{},141688,1,Europe +2024-01-19,33052,2784,"[""Tablet"", ""Charger"", ""Phone""]",420.67,{},136838,1,North America +2024-12-23,33053,8365,"[""Tablet"", ""Monitor"", ""Laptop""]",2647.88,{},12078,0,Africa +2023-02-10,33054,7352,"[""Wireless Mouse""]",4284.22,{},41419,0,Asia +2023-01-16,33055,8870,"[""Wireless Mouse"", ""Keyboard""]",2495.71,"{""promo"": ""9%""}",20402,0,South America +2023-01-22,33056,6605,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",222.47,{},273114,0,North America +2023-07-19,33057,6985,"[""Keyboard""]",4688.96,"{""seasonal"": ""29%""}",95232,0,North America +2023-08-13,33058,3751,"[""Laptop"", ""Charger""]",430.66,"{""loyalty"": ""24%""}",184975,1,South America +2024-02-12,33059,3469,"[""Headphones"", ""Phone"", ""Charger""]",1600.55,{},93752,1,Asia +2024-10-14,33060,2520,"[""Tablet"", ""Monitor"", ""Laptop""]",990.34,"{""seasonal"": ""27%""}",131036,1,Asia +2023-12-29,33061,9829,"[""Monitor"", ""Charger""]",3545.0,{},27737,0,Asia +2023-04-14,33062,9437,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3433.45,"{""loyalty"": ""15%""}",121963,1,South America +2023-09-08,33063,7241,"[""Charger"", ""Wireless Mouse""]",852.65,"{""promo"": ""8%""}",142618,0,Europe +2023-12-02,33064,1848,"[""Charger""]",2696.9,"{""promo"": ""12%""}",256116,0,Africa +2024-09-03,33065,6314,"[""Laptop"", ""Charger"", ""Phone""]",2638.65,{},157758,1,Africa +2023-12-09,33066,386,"[""Laptop""]",4460.44,{},69719,1,North America +2023-03-05,33067,9756,"[""Wireless Mouse""]",851.94,"{"""": ""13%""}",161753,1,Europe +2023-09-07,33068,4854,"[""Phone"", ""Laptop"", ""Tablet""]",4124.39,{},268973,1,North America +2024-09-24,33069,8731,"[""Keyboard""]",3445.86,"{"""": ""25%""}",191862,1,South America +2024-01-22,33070,5246,"[""Laptop""]",2382.57,{},250498,1,Asia +2024-06-02,33071,2358,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3606.48,{},139821,1,Asia +2024-10-16,33072,9297,"[""Monitor"", ""Charger""]",2679.42,{},190768,0,Asia +2023-02-06,33073,6768,"[""Headphones""]",1050.24,"{"""": ""27%""}",157275,0,North America +2024-09-23,33074,6996,"[""Headphones"", ""Laptop""]",3030.39,"{""seasonal"": ""12%""}",80294,1,North America +2023-04-28,33075,7669,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1060.99,"{"""": ""27%""}",94335,1,Africa +2023-01-14,33076,42,"[""Tablet"", ""Charger""]",1012.36,{},83397,1,South America +2024-04-14,33077,2100,"[""Phone"", ""Wireless Mouse""]",4306.76,{},96093,1,Asia +2023-04-16,33078,7351,"[""Headphones""]",4182.49,{},233030,0,Asia +2024-02-06,33079,1433,"[""Headphones"", ""Laptop""]",1011.88,{},9964,0,Europe +2023-05-21,33080,671,"[""Laptop""]",822.25,{},210363,1,Africa +2023-05-10,33081,3545,"[""Tablet"", ""Headphones"", ""Monitor""]",4904.43,"{""seasonal"": ""7%""}",203042,0,Asia +2024-04-07,33082,4991,"[""Headphones"", ""Keyboard""]",1354.71,{},18798,0,Europe +2023-12-07,33083,4176,"[""Tablet"", ""Headphones"", ""Charger""]",259.0,"{""loyalty"": ""29%""}",7889,1,Asia +2024-11-05,33084,779,"[""Tablet"", ""Laptop"", ""Keyboard""]",4076.73,{},99831,0,Asia +2023-05-17,33085,5888,"[""Headphones"", ""Charger""]",2922.42,"{""loyalty"": ""14%""}",65562,1,Asia +2024-07-28,33086,6874,"[""Phone"", ""Headphones"", ""Monitor""]",3107.88,"{"""": ""27%""}",94479,0,Africa +2023-06-27,33087,2081,"[""Laptop"", ""Phone""]",344.29,{},181837,0,Asia +2023-01-13,33088,5700,"[""Charger"", ""Keyboard"", ""Phone""]",4568.1,{},293750,1,Asia +2023-07-01,33089,4966,"[""Monitor"", ""Wireless Mouse""]",3660.55,"{""promo"": ""26%""}",41292,0,South America +2024-07-10,33090,4837,"[""Keyboard"", ""Monitor"", ""Phone""]",1870.08,"{"""": ""30%""}",47709,0,Asia +2024-02-13,33091,9621,"[""Keyboard""]",3498.31,"{""promo"": ""11%""}",38968,1,North America +2023-10-10,33092,5266,"[""Keyboard""]",2071.2,{},265454,1,South America +2023-10-05,33093,5851,"[""Monitor""]",1583.33,{},182741,0,South America +2024-01-06,33094,4444,"[""Charger"", ""Phone"", ""Keyboard""]",2077.75,{},108468,1,South America +2023-12-25,33095,6438,"[""Charger"", ""Headphones"", ""Laptop""]",3036.58,{},87884,1,Asia +2023-07-12,33096,2186,"[""Headphones"", ""Monitor""]",194.21,{},258182,1,Asia +2023-01-24,33097,223,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3856.07,{},127370,0,South America +2023-08-23,33098,8320,"[""Laptop"", ""Headphones""]",3137.21,"{""seasonal"": ""6%""}",81165,1,Europe +2024-01-24,33099,6417,"[""Keyboard"", ""Laptop""]",904.15,{},177363,1,Asia +2024-08-09,33100,3906,"[""Tablet"", ""Laptop""]",1009.18,{},202339,1,North America +2023-01-31,33101,1656,"[""Laptop"", ""Monitor""]",133.98,{},240354,0,North America +2023-06-07,33102,4870,"[""Laptop"", ""Headphones""]",3851.8,"{""seasonal"": ""21%""}",157174,0,Asia +2023-11-22,33103,5867,"[""Headphones"", ""Phone""]",4725.52,{},230869,1,Africa +2023-10-10,33104,4649,"[""Headphones""]",2115.79,{},165117,0,North America +2024-04-26,33105,8986,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4507.49,"{""seasonal"": ""13%""}",177391,1,South America +2024-03-01,33106,3643,"[""Headphones""]",1113.68,"{""loyalty"": ""29%""}",75348,0,Europe +2023-07-27,33107,9256,"[""Phone""]",4829.4,"{"""": ""5%""}",279049,1,South America +2024-07-20,33108,5096,"[""Headphones"", ""Monitor"", ""Phone""]",3451.83,"{""promo"": ""29%""}",243066,0,Europe +2023-02-18,33109,8547,"[""Charger"", ""Headphones"", ""Keyboard""]",1079.31,"{""promo"": ""6%""}",250517,0,South America +2023-03-28,33110,1125,"[""Headphones""]",1816.04,"{""loyalty"": ""26%""}",54519,1,Asia +2024-03-19,33111,9661,"[""Tablet""]",68.54,"{""loyalty"": ""27%""}",9117,1,Africa +2024-07-13,33112,755,"[""Charger"", ""Phone""]",59.1,"{""promo"": ""8%""}",160663,1,Asia +2023-01-23,33113,9572,"[""Phone""]",583.69,"{""promo"": ""5%""}",142288,1,South America +2023-11-13,33114,1756,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2385.87,{},210796,0,South America +2023-04-08,33115,1027,"[""Keyboard"", ""Laptop""]",2044.24,"{""loyalty"": ""26%""}",70543,1,South America +2024-04-07,33116,9061,"[""Charger"", ""Tablet""]",4456.3,{},162423,0,Africa +2024-08-09,33117,7142,"[""Headphones"", ""Keyboard"", ""Charger""]",4836.15,"{""seasonal"": ""11%""}",111457,1,Asia +2023-03-02,33118,7632,"[""Laptop"", ""Charger""]",2465.42,"{""loyalty"": ""16%""}",295036,0,Europe +2023-05-15,33119,9530,"[""Keyboard"", ""Phone"", ""Charger""]",4053.94,"{""loyalty"": ""24%""}",23268,0,Europe +2024-01-15,33120,7245,"[""Headphones"", ""Keyboard""]",2130.85,"{"""": ""30%""}",80541,0,North America +2023-02-01,33121,3019,"[""Headphones"", ""Keyboard""]",1672.68,{},114602,1,Asia +2023-03-19,33122,6905,"[""Laptop""]",1434.29,"{""loyalty"": ""10%""}",210338,1,Africa +2023-04-08,33123,9783,"[""Wireless Mouse"", ""Phone""]",279.32,{},161988,0,Africa +2024-06-06,33124,6939,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2349.59,{},298421,1,Africa +2023-08-16,33125,8864,"[""Monitor""]",160.34,{},241368,0,North America +2023-04-10,33126,7211,"[""Keyboard"", ""Headphones""]",478.34,{},154365,0,South America +2024-08-07,33127,6036,"[""Tablet"", ""Phone""]",3969.76,{},190309,1,Africa +2024-02-09,33128,1046,"[""Wireless Mouse""]",1659.78,{},233886,0,Europe +2023-08-01,33129,6538,"[""Tablet""]",4380.11,"{""promo"": ""5%""}",148981,1,Asia +2023-08-13,33130,2116,"[""Tablet"", ""Keyboard""]",4512.83,{},90573,0,South America +2023-05-10,33131,4104,"[""Monitor"", ""Tablet""]",4281.31,{},61204,1,Asia +2023-06-29,33132,6602,"[""Monitor""]",2078.63,"{""seasonal"": ""10%""}",121520,0,South America +2023-09-11,33133,632,"[""Phone""]",69.2,"{""loyalty"": ""5%""}",142518,1,Europe +2024-01-02,33134,314,"[""Tablet""]",4157.19,"{""seasonal"": ""17%""}",295685,1,Africa +2023-05-26,33135,6123,"[""Monitor""]",1051.55,"{""loyalty"": ""13%""}",113638,0,Asia +2024-02-13,33136,5932,"[""Monitor""]",1852.0,"{""promo"": ""26%""}",239413,0,Africa +2024-05-01,33137,1921,"[""Charger"", ""Tablet""]",836.84,"{""loyalty"": ""28%""}",219316,0,Asia +2024-10-31,33138,4029,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1895.15,"{""seasonal"": ""20%""}",294352,0,Europe +2023-03-09,33139,3291,"[""Keyboard""]",3829.67,"{""seasonal"": ""29%""}",86303,0,Europe +2023-09-27,33140,2357,"[""Laptop"", ""Wireless Mouse""]",1312.61,"{""loyalty"": ""10%""}",59179,0,South America +2023-07-18,33141,3843,"[""Phone"", ""Headphones"", ""Monitor""]",4232.72,"{""seasonal"": ""15%""}",177737,0,Europe +2024-03-01,33142,4631,"[""Headphones"", ""Keyboard""]",1125.93,{},233511,0,Europe +2023-03-30,33143,4635,"[""Headphones"", ""Keyboard"", ""Laptop""]",3307.36,"{""seasonal"": ""15%""}",18353,0,Europe +2024-12-04,33144,712,"[""Charger""]",2347.01,"{""promo"": ""11%""}",212998,0,North America +2024-12-12,33145,8483,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1968.79,"{""loyalty"": ""30%""}",65911,0,South America +2023-12-21,33146,861,"[""Keyboard"", ""Laptop"", ""Tablet""]",1914.88,"{""promo"": ""19%""}",66418,0,North America +2023-09-22,33147,9090,"[""Headphones""]",4900.9,"{"""": ""30%""}",32336,1,Asia +2024-07-16,33148,6716,"[""Monitor"", ""Phone""]",2324.25,"{""loyalty"": ""29%""}",249405,0,Europe +2024-11-15,33149,6268,"[""Tablet"", ""Charger""]",2063.07,{},214584,1,Africa +2024-03-12,33150,1251,"[""Headphones"", ""Keyboard""]",1383.34,{},155776,1,Asia +2023-03-17,33151,3185,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4315.2,"{""promo"": ""8%""}",9065,1,Asia +2023-10-15,33152,5549,"[""Monitor"", ""Headphones"", ""Phone""]",450.98,{},126981,1,Africa +2024-05-09,33153,1374,"[""Wireless Mouse""]",1277.65,{},119815,0,North America +2023-12-25,33154,1737,"[""Wireless Mouse""]",542.01,"{""loyalty"": ""25%""}",201332,0,Europe +2024-07-19,33155,712,"[""Keyboard""]",3284.61,"{""promo"": ""13%""}",48727,0,Africa +2024-06-04,33156,9465,"[""Headphones"", ""Tablet"", ""Phone""]",234.25,{},132857,1,North America +2023-09-15,33157,6797,"[""Laptop"", ""Phone""]",984.59,"{""seasonal"": ""19%""}",274910,0,South America +2023-09-27,33158,4662,"[""Phone"", ""Charger""]",4276.28,{},101216,1,Africa +2024-01-28,33159,2224,"[""Keyboard"", ""Phone"", ""Charger""]",4103.39,"{""loyalty"": ""10%""}",123962,1,Europe +2023-05-07,33160,2213,"[""Phone"", ""Charger"", ""Monitor""]",448.06,{},72604,0,Europe +2024-03-17,33161,1615,"[""Phone""]",3112.14,"{""promo"": ""5%""}",69346,1,Europe +2024-03-21,33162,8145,"[""Headphones"", ""Charger""]",3015.98,{},166685,1,Europe +2023-03-22,33163,2636,"[""Phone"", ""Headphones"", ""Monitor""]",2022.77,"{"""": ""28%""}",135994,0,Asia +2023-12-17,33164,2072,"[""Monitor"", ""Phone""]",4931.31,"{""loyalty"": ""27%""}",43933,0,Asia +2024-05-21,33165,8845,"[""Laptop""]",3019.6,"{""promo"": ""21%""}",184693,1,South America +2023-11-03,33166,4717,"[""Phone"", ""Tablet"", ""Charger""]",514.97,{},17423,0,Asia +2024-08-26,33167,1821,"[""Wireless Mouse"", ""Keyboard""]",4634.24,{},130670,1,North America +2023-11-15,33168,8382,"[""Monitor"", ""Laptop""]",3019.35,"{""loyalty"": ""5%""}",285154,1,Europe +2024-01-01,33169,4654,"[""Laptop""]",1305.1,"{""loyalty"": ""11%""}",26609,0,North America +2023-03-30,33170,9424,"[""Headphones"", ""Tablet""]",4850.25,{},66800,1,Asia +2023-02-10,33171,9675,"[""Keyboard"", ""Phone""]",3874.03,{},157928,1,South America +2023-12-29,33172,6561,"[""Tablet"", ""Charger""]",1618.99,"{""promo"": ""9%""}",67935,1,Africa +2023-09-22,33173,4446,"[""Keyboard"", ""Tablet"", ""Laptop""]",609.52,{},190905,0,Asia +2023-12-20,33174,7996,"[""Tablet"", ""Laptop""]",3660.84,{},285172,1,Asia +2023-06-20,33175,7401,"[""Tablet"", ""Monitor""]",3463.6,{},141687,0,South America +2023-12-24,33176,980,"[""Wireless Mouse""]",3920.21,"{"""": ""20%""}",138610,0,Europe +2024-06-19,33177,1527,"[""Keyboard""]",1897.22,"{""loyalty"": ""24%""}",205763,0,Africa +2024-05-09,33178,6640,"[""Tablet"", ""Wireless Mouse""]",2089.7,"{""seasonal"": ""19%""}",177676,1,South America +2024-02-09,33179,9930,"[""Charger"", ""Wireless Mouse""]",2816.2,{},112058,1,Africa +2023-06-05,33180,5939,"[""Charger"", ""Phone"", ""Monitor""]",4632.0,{},279660,0,South America +2023-11-22,33181,4661,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1777.52,"{"""": ""7%""}",50233,1,Europe +2024-06-11,33182,9723,"[""Laptop"", ""Monitor""]",1615.78,{},214031,1,North America +2023-08-08,33183,5153,"[""Phone""]",2049.19,{},125641,0,Europe +2024-05-22,33184,7446,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2789.76,{},158290,0,Asia +2023-12-03,33185,7804,"[""Keyboard""]",2778.07,{},260046,0,Europe +2024-02-17,33186,5085,"[""Wireless Mouse""]",310.89,"{""seasonal"": ""8%""}",252060,1,North America +2023-03-20,33187,6436,"[""Phone""]",3105.68,"{""promo"": ""13%""}",82013,1,Asia +2023-08-24,33188,8489,"[""Tablet"", ""Phone""]",1857.69,{},157982,1,Asia +2023-08-04,33189,3141,"[""Phone"", ""Keyboard""]",93.64,{},227568,0,South America +2023-02-28,33190,40,"[""Wireless Mouse"", ""Phone""]",347.85,"{""promo"": ""12%""}",144072,0,Asia +2024-07-19,33191,5151,"[""Monitor"", ""Keyboard"", ""Charger""]",677.88,"{""promo"": ""7%""}",50741,1,Africa +2024-07-21,33192,8832,"[""Charger""]",1975.72,{},23966,0,South America +2024-10-11,33193,6393,"[""Phone"", ""Monitor"", ""Laptop""]",389.34,"{""promo"": ""13%""}",120507,1,South America +2023-06-14,33194,1276,"[""Phone"", ""Laptop""]",4925.06,"{""loyalty"": ""10%""}",209271,1,North America +2023-02-04,33195,8134,"[""Charger""]",3202.35,{},215813,1,North America +2023-11-03,33196,1452,"[""Keyboard"", ""Phone"", ""Tablet""]",1298.74,{},128183,0,North America +2024-12-14,33197,7845,"[""Keyboard"", ""Laptop"", ""Tablet""]",2071.52,{},12847,1,Africa +2024-06-26,33198,726,"[""Monitor""]",4691.91,{},9863,1,Europe +2023-12-17,33199,8080,"[""Charger"", ""Tablet""]",3232.42,{},9883,1,Africa +2024-10-07,33200,4610,"[""Laptop""]",3013.21,{},1700,0,Asia +2024-10-23,33201,1847,"[""Tablet""]",3096.38,{},35987,0,Africa +2024-03-08,33202,936,"[""Charger"", ""Monitor""]",2577.78,{},196040,0,Europe +2023-11-16,33203,2262,"[""Headphones"", ""Monitor"", ""Phone""]",2042.95,{},25431,1,Africa +2023-07-22,33204,261,"[""Wireless Mouse""]",2411.74,{},2226,1,North America +2023-10-01,33205,8439,"[""Keyboard"", ""Headphones""]",321.61,{},67727,0,North America +2024-04-28,33206,1687,"[""Monitor"", ""Laptop""]",1719.86,"{""loyalty"": ""14%""}",71611,0,Europe +2023-09-12,33207,3606,"[""Wireless Mouse""]",801.53,"{"""": ""22%""}",3200,1,South America +2023-12-14,33208,7272,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4079.99,{},124265,1,Asia +2024-09-17,33209,6758,"[""Charger""]",1741.34,{},141672,0,Europe +2023-06-26,33210,948,"[""Keyboard""]",1909.54,"{""seasonal"": ""7%""}",82682,0,South America +2023-02-03,33211,9953,"[""Tablet""]",3202.45,{},171610,1,South America +2024-06-11,33212,9719,"[""Phone"", ""Keyboard""]",2183.61,"{""loyalty"": ""19%""}",216210,0,Europe +2024-07-01,33213,1793,"[""Phone"", ""Charger"", ""Headphones""]",1474.0,"{""loyalty"": ""12%""}",266990,1,North America +2024-03-24,33214,2675,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",918.63,"{"""": ""12%""}",6037,0,South America +2023-06-23,33215,813,"[""Monitor"", ""Wireless Mouse""]",2591.46,"{""loyalty"": ""9%""}",8267,0,Asia +2024-12-11,33216,7933,"[""Keyboard"", ""Charger""]",4867.48,"{""promo"": ""9%""}",230491,0,North America +2024-12-17,33217,7808,"[""Headphones""]",1224.6,{},130158,1,Europe +2024-11-30,33218,7899,"[""Headphones"", ""Monitor""]",3609.34,"{""seasonal"": ""25%""}",173388,0,Africa +2023-02-10,33219,2567,"[""Laptop""]",3666.02,"{""seasonal"": ""9%""}",25383,1,Europe +2023-04-20,33220,238,"[""Headphones"", ""Keyboard""]",2487.24,"{"""": ""9%""}",105904,0,Asia +2023-09-26,33221,450,"[""Keyboard"", ""Charger"", ""Headphones""]",3588.18,"{""loyalty"": ""8%""}",102488,1,North America +2023-03-09,33222,4015,"[""Monitor"", ""Phone""]",3952.09,"{""seasonal"": ""29%""}",268460,0,Europe +2023-11-09,33223,6338,"[""Tablet"", ""Headphones""]",2370.89,{},203672,1,Europe +2023-06-13,33224,9552,"[""Laptop"", ""Phone"", ""Charger""]",3270.34,"{""seasonal"": ""13%""}",287237,1,Europe +2023-03-20,33225,8606,"[""Headphones"", ""Phone"", ""Keyboard""]",4629.29,{},212433,0,Europe +2024-11-22,33226,2697,"[""Charger""]",784.68,{},182753,1,Europe +2024-08-14,33227,2573,"[""Tablet"", ""Keyboard""]",2283.38,"{"""": ""9%""}",128741,1,Asia +2023-07-15,33228,6461,"[""Keyboard""]",4190.85,"{""promo"": ""27%""}",99901,1,Africa +2023-01-15,33229,856,"[""Monitor"", ""Tablet""]",4542.6,"{""seasonal"": ""17%""}",76332,1,North America +2024-09-26,33230,2001,"[""Laptop""]",3477.28,"{""loyalty"": ""21%""}",179658,0,Africa +2023-11-01,33231,6861,"[""Monitor"", ""Tablet"", ""Headphones""]",3945.54,"{""promo"": ""22%""}",22581,1,Africa +2024-12-11,33232,8533,"[""Tablet""]",2663.36,{},115269,0,Africa +2023-12-06,33233,4809,"[""Charger"", ""Monitor""]",4306.77,"{""promo"": ""10%""}",42403,1,Asia +2024-09-27,33234,626,"[""Monitor"", ""Keyboard""]",1227.38,"{""loyalty"": ""16%""}",58415,0,North America +2023-06-19,33235,8723,"[""Wireless Mouse"", ""Charger""]",3421.4,"{""promo"": ""23%""}",12088,0,Asia +2023-10-02,33236,1878,"[""Monitor""]",2744.72,"{""seasonal"": ""15%""}",135194,0,Europe +2024-10-05,33237,3570,"[""Headphones""]",1798.59,{},177064,0,North America +2023-01-20,33238,4368,"[""Charger""]",1370.34,"{""promo"": ""22%""}",22628,0,Africa +2023-11-16,33239,6808,"[""Phone"", ""Headphones""]",1228.04,"{""loyalty"": ""30%""}",135619,0,Europe +2023-08-19,33240,5588,"[""Laptop"", ""Headphones""]",2069.24,"{"""": ""28%""}",238606,0,Asia +2024-11-06,33241,6451,"[""Charger""]",286.78,{},216129,1,Europe +2023-02-16,33242,8192,"[""Headphones""]",767.77,{},261496,0,North America +2023-02-19,33243,2493,"[""Keyboard""]",2393.31,"{""loyalty"": ""22%""}",229388,1,North America +2024-11-13,33244,170,"[""Wireless Mouse""]",4960.44,"{""loyalty"": ""7%""}",141136,1,Europe +2023-04-22,33245,8760,"[""Headphones"", ""Laptop""]",1823.85,{},61864,1,South America +2024-01-22,33246,9913,"[""Tablet"", ""Wireless Mouse""]",3649.84,{},175135,0,Africa +2024-11-10,33247,7640,"[""Wireless Mouse"", ""Keyboard""]",373.84,{},35042,1,Africa +2023-10-06,33248,2966,"[""Charger"", ""Keyboard"", ""Headphones""]",4589.26,{},47907,1,South America +2023-12-29,33249,8847,"[""Monitor"", ""Tablet""]",3702.79,"{"""": ""26%""}",245444,1,Asia +2024-08-13,33250,5932,"[""Keyboard""]",4855.11,"{""loyalty"": ""30%""}",247102,0,Europe +2024-03-09,33251,6283,"[""Keyboard"", ""Monitor""]",2594.18,{},65536,1,North America +2023-12-01,33252,8491,"[""Wireless Mouse""]",3924.96,"{"""": ""11%""}",282099,0,South America +2024-07-03,33253,1692,"[""Headphones""]",709.68,{},240037,0,North America +2024-07-19,33254,2232,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",161.36,"{""loyalty"": ""15%""}",264468,0,Europe +2023-09-12,33255,9027,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3496.81,{},1504,1,Europe +2023-01-08,33256,2046,"[""Monitor""]",2782.38,"{""loyalty"": ""27%""}",281725,1,Asia +2023-01-20,33257,3996,"[""Keyboard"", ""Monitor"", ""Tablet""]",4237.9,{},231763,1,Africa +2024-09-05,33258,4094,"[""Tablet""]",1150.86,{},30007,1,South America +2024-10-17,33259,1447,"[""Phone""]",713.82,"{""seasonal"": ""8%""}",163777,1,Africa +2024-09-17,33260,7401,"[""Headphones""]",1116.76,"{""seasonal"": ""26%""}",217146,1,North America +2024-09-16,33261,1056,"[""Monitor"", ""Keyboard""]",3210.37,{},151224,1,South America +2023-01-10,33262,6618,"[""Tablet"", ""Monitor""]",794.88,{},144069,0,Asia +2024-04-13,33263,3246,"[""Charger"", ""Headphones""]",1602.72,{},245952,0,Europe +2024-05-14,33264,6501,"[""Monitor""]",3384.14,"{"""": ""8%""}",296512,0,Africa +2023-09-28,33265,7623,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4034.52,"{""loyalty"": ""7%""}",215353,1,North America +2024-12-23,33266,2732,"[""Charger"", ""Laptop""]",1927.01,{},288586,1,North America +2023-02-13,33267,2518,"[""Phone"", ""Charger""]",901.97,"{""loyalty"": ""17%""}",271609,1,Africa +2023-02-12,33268,7648,"[""Keyboard"", ""Headphones"", ""Laptop""]",4809.93,{},31922,0,South America +2023-06-30,33269,6993,"[""Tablet"", ""Wireless Mouse""]",2729.88,{},154837,1,South America +2024-07-19,33270,891,"[""Laptop""]",3139.33,"{""loyalty"": ""25%""}",253046,1,North America +2024-12-11,33271,6509,"[""Phone""]",156.53,{},275327,1,South America +2024-01-17,33272,1728,"[""Headphones"", ""Monitor""]",1524.71,"{"""": ""5%""}",70360,0,North America +2024-05-10,33273,9659,"[""Tablet"", ""Keyboard""]",1736.74,"{""loyalty"": ""28%""}",9872,0,Europe +2024-08-15,33274,6661,"[""Headphones""]",2343.66,{},26927,0,Africa +2024-06-22,33275,1879,"[""Headphones""]",4829.18,{},88013,0,South America +2023-07-26,33276,4307,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",646.48,{},208653,0,Asia +2023-07-31,33277,5053,"[""Headphones""]",4372.42,"{"""": ""23%""}",58753,0,South America +2023-05-15,33278,2541,"[""Headphones"", ""Wireless Mouse""]",1512.66,"{""seasonal"": ""18%""}",276901,0,North America +2023-01-09,33279,7456,"[""Tablet"", ""Laptop""]",3404.63,{},221890,0,South America +2024-02-26,33280,4495,"[""Phone"", ""Headphones""]",4877.95,{},124236,0,Europe +2023-12-14,33281,9009,"[""Tablet"", ""Phone"", ""Monitor""]",504.09,"{""seasonal"": ""14%""}",81452,1,Asia +2023-06-17,33282,1758,"[""Monitor""]",1480.43,"{""loyalty"": ""26%""}",103977,0,Europe +2024-01-02,33283,1899,"[""Charger"", ""Tablet""]",2968.13,{},82781,0,Asia +2023-05-13,33284,918,"[""Headphones"", ""Wireless Mouse""]",313.79,"{""promo"": ""23%""}",292178,1,North America +2024-02-01,33285,4925,"[""Keyboard""]",3873.48,{},98255,1,Asia +2024-02-10,33286,432,"[""Tablet"", ""Charger""]",2868.5,"{""loyalty"": ""17%""}",2774,0,Africa +2023-06-08,33287,2124,"[""Keyboard""]",4354.19,{},163895,0,South America +2024-02-11,33288,635,"[""Monitor"", ""Charger""]",2512.89,"{"""": ""25%""}",258019,1,Africa +2023-05-31,33289,354,"[""Tablet"", ""Charger""]",994.03,{},217533,1,Africa +2024-01-22,33290,650,"[""Headphones"", ""Tablet""]",3267.28,{},284891,0,Europe +2024-09-21,33291,6552,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1526.38,"{"""": ""27%""}",200642,1,Europe +2024-06-27,33292,3570,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2923.84,"{""loyalty"": ""30%""}",16561,1,South America +2023-05-30,33293,4133,"[""Charger"", ""Monitor"", ""Phone""]",2442.78,"{"""": ""8%""}",67077,1,Asia +2023-09-23,33294,1708,"[""Headphones"", ""Wireless Mouse""]",232.61,{},235053,0,Asia +2024-03-06,33295,5540,"[""Charger""]",3177.92,"{""loyalty"": ""21%""}",284345,1,Africa +2023-07-03,33296,6047,"[""Laptop"", ""Keyboard"", ""Headphones""]",1791.45,"{"""": ""12%""}",60151,0,North America +2024-06-02,33297,3262,"[""Monitor"", ""Keyboard""]",2744.13,"{""loyalty"": ""5%""}",226156,1,Asia +2024-11-19,33298,3019,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3278.75,"{""seasonal"": ""25%""}",148288,0,Asia +2024-05-23,33299,5220,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3265.04,{},1298,0,South America +2023-08-21,33300,8300,"[""Headphones"", ""Keyboard""]",500.23,"{"""": ""27%""}",199569,1,South America +2023-09-11,33301,3357,"[""Headphones"", ""Laptop""]",3182.0,"{""seasonal"": ""20%""}",221820,0,Asia +2024-11-14,33302,2559,"[""Headphones"", ""Charger""]",2327.75,"{"""": ""21%""}",194542,0,North America +2024-11-10,33303,9972,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1692.96,"{""seasonal"": ""12%""}",197952,1,South America +2024-04-28,33304,664,"[""Tablet""]",82.38,"{""promo"": ""22%""}",22499,0,Asia +2023-09-27,33305,3040,"[""Monitor"", ""Phone"", ""Laptop""]",1397.07,{},190839,1,Asia +2024-06-16,33306,1222,"[""Keyboard"", ""Headphones"", ""Phone""]",4175.27,"{"""": ""23%""}",36983,0,Asia +2024-08-12,33307,5067,"[""Charger"", ""Phone""]",4428.93,{},78820,0,Europe +2023-05-07,33308,6935,"[""Keyboard""]",702.22,"{""seasonal"": ""21%""}",152515,0,Asia +2024-05-22,33309,7929,"[""Monitor""]",3297.46,{},140543,1,Europe +2024-09-20,33310,9420,"[""Wireless Mouse""]",2215.79,"{""promo"": ""21%""}",299660,1,Asia +2024-12-21,33311,7695,"[""Laptop""]",2185.63,"{"""": ""20%""}",49655,0,North America +2024-11-29,33312,8740,"[""Phone"", ""Headphones""]",4822.74,"{""loyalty"": ""26%""}",284504,0,Africa +2024-03-28,33313,8163,"[""Laptop""]",3569.6,"{""promo"": ""26%""}",273742,1,Africa +2024-03-15,33314,1802,"[""Headphones""]",3428.07,{},72260,1,South America +2023-04-01,33315,2539,"[""Laptop""]",2596.92,{},95940,1,North America +2024-12-25,33316,9122,"[""Keyboard""]",3563.01,"{""seasonal"": ""6%""}",122707,0,Africa +2023-01-24,33317,2149,"[""Charger"", ""Headphones"", ""Monitor""]",238.96,"{""seasonal"": ""19%""}",254791,1,North America +2024-05-16,33318,8102,"[""Phone""]",221.41,{},99296,0,Asia +2023-11-03,33319,3444,"[""Phone"", ""Charger""]",2663.9,{},164046,1,Europe +2023-05-23,33320,6198,"[""Keyboard""]",3111.33,"{""seasonal"": ""21%""}",48627,1,Europe +2023-07-13,33321,7035,"[""Charger"", ""Keyboard""]",4518.99,"{""loyalty"": ""8%""}",231191,1,North America +2024-10-10,33322,8024,"[""Phone"", ""Laptop""]",1119.51,"{""seasonal"": ""25%""}",28945,0,Asia +2023-06-26,33323,8852,"[""Phone"", ""Laptop"", ""Charger""]",2910.36,{},272585,0,Africa +2023-04-22,33324,1424,"[""Tablet"", ""Headphones"", ""Charger""]",3274.83,{},285094,0,Europe +2023-03-12,33325,4706,"[""Tablet"", ""Laptop"", ""Monitor""]",4174.12,"{""promo"": ""28%""}",104633,1,Europe +2024-06-16,33326,9140,"[""Charger""]",4451.8,{},239824,0,South America +2024-10-11,33327,2146,"[""Phone""]",482.2,"{"""": ""18%""}",188847,0,Asia +2024-05-18,33328,2404,"[""Phone"", ""Tablet"", ""Charger""]",2242.67,"{"""": ""28%""}",95313,0,Africa +2024-06-24,33329,9171,"[""Keyboard"", ""Monitor"", ""Charger""]",863.78,"{""loyalty"": ""18%""}",249606,1,South America +2024-12-21,33330,3564,"[""Charger"", ""Laptop"", ""Phone""]",1879.71,"{""loyalty"": ""21%""}",252106,0,Africa +2023-08-12,33331,9597,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3544.03,{},267817,1,South America +2023-05-22,33332,6520,"[""Tablet"", ""Headphones"", ""Phone""]",3705.58,"{""loyalty"": ""6%""}",268003,0,Asia +2023-04-10,33333,2830,"[""Headphones""]",1146.87,"{""promo"": ""17%""}",211031,1,South America +2024-11-07,33334,8319,"[""Keyboard"", ""Monitor""]",1671.72,"{"""": ""18%""}",62530,0,Asia +2023-03-11,33335,5828,"[""Wireless Mouse"", ""Monitor""]",1867.01,"{"""": ""9%""}",121334,1,North America +2024-08-23,33336,3194,"[""Wireless Mouse""]",1683.31,{},85186,0,Europe +2023-07-02,33337,9794,"[""Keyboard"", ""Tablet"", ""Monitor""]",4953.2,"{""promo"": ""12%""}",123001,0,North America +2024-05-21,33338,3606,"[""Keyboard"", ""Monitor""]",1260.76,"{""seasonal"": ""9%""}",146556,1,Africa +2023-06-19,33339,2621,"[""Wireless Mouse""]",4877.74,"{""loyalty"": ""8%""}",15207,1,South America +2024-07-15,33340,4996,"[""Laptop"", ""Keyboard""]",195.94,{},64896,0,Europe +2023-02-15,33341,5893,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4354.63,"{""loyalty"": ""9%""}",8720,1,North America +2024-03-31,33342,828,"[""Charger""]",582.93,"{""promo"": ""7%""}",224399,0,Europe +2023-06-10,33343,7950,"[""Keyboard"", ""Charger""]",4642.78,{},100641,0,North America +2024-03-19,33344,7522,"[""Keyboard""]",2714.78,{},79515,0,North America +2023-06-08,33345,6725,"[""Laptop"", ""Tablet"", ""Phone""]",3985.64,{},54447,1,Europe +2024-09-03,33346,9846,"[""Headphones""]",245.04,"{""loyalty"": ""11%""}",291377,1,Asia +2024-09-10,33347,4518,"[""Monitor""]",4609.45,"{"""": ""6%""}",53152,0,North America +2023-09-21,33348,1484,"[""Wireless Mouse""]",2457.75,"{""promo"": ""27%""}",92911,0,Asia +2023-10-31,33349,9970,"[""Charger""]",2847.12,{},154168,0,Europe +2023-11-08,33350,2225,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1235.87,"{""promo"": ""13%""}",90848,0,Asia +2024-02-13,33351,5753,"[""Headphones""]",3343.52,"{""loyalty"": ""26%""}",65227,1,Asia +2024-06-14,33352,5164,"[""Monitor"", ""Phone"", ""Keyboard""]",3568.37,"{"""": ""6%""}",187809,0,South America +2023-12-30,33353,3133,"[""Monitor""]",1266.73,{},47295,0,North America +2024-11-19,33354,4661,"[""Phone"", ""Laptop""]",2554.15,{},64707,0,South America +2024-09-06,33355,2437,"[""Wireless Mouse"", ""Monitor""]",217.05,"{"""": ""19%""}",32156,0,Europe +2024-11-25,33356,2974,"[""Headphones""]",4293.29,"{"""": ""16%""}",274735,1,Asia +2023-06-24,33357,6443,"[""Charger"", ""Laptop"", ""Tablet""]",3665.18,{},94267,0,North America +2023-09-20,33358,5603,"[""Monitor"", ""Headphones"", ""Laptop""]",734.3,{},172418,0,Africa +2023-02-04,33359,8162,"[""Monitor"", ""Charger""]",3674.62,{},80650,1,Asia +2023-10-06,33360,5927,"[""Keyboard""]",4399.55,{},132610,1,North America +2024-11-14,33361,2760,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",599.77,{},211722,1,Africa +2023-01-25,33362,4505,"[""Headphones"", ""Tablet""]",712.74,"{""seasonal"": ""19%""}",7361,1,North America +2023-02-11,33363,769,"[""Charger""]",2090.51,{},33096,1,Africa +2023-05-02,33364,4832,"[""Charger""]",1257.7,"{""seasonal"": ""5%""}",273355,0,South America +2024-02-18,33365,4462,"[""Keyboard"", ""Phone"", ""Laptop""]",1494.01,"{""seasonal"": ""18%""}",66252,1,Africa +2023-07-14,33366,7830,"[""Keyboard"", ""Laptop"", ""Phone""]",2889.93,{},32059,0,North America +2023-11-03,33367,8275,"[""Charger""]",98.83,"{"""": ""27%""}",174357,1,South America +2024-10-29,33368,9755,"[""Tablet""]",295.06,{},210347,0,North America +2024-02-03,33369,8078,"[""Headphones"", ""Phone"", ""Monitor""]",4150.27,"{""seasonal"": ""19%""}",36114,1,Africa +2023-09-21,33370,2886,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3031.5,{},208310,0,North America +2024-04-05,33371,1862,"[""Headphones""]",1711.41,{},205225,1,Africa +2023-10-17,33372,3913,"[""Phone""]",2653.15,"{""loyalty"": ""25%""}",247686,1,Africa +2023-02-06,33373,9260,"[""Tablet""]",2001.5,"{"""": ""8%""}",273727,1,Africa +2023-06-19,33374,4711,"[""Charger""]",3584.73,"{"""": ""25%""}",264305,1,South America +2023-01-18,33375,8457,"[""Monitor""]",3465.8,{},124100,0,South America +2023-07-18,33376,6662,"[""Laptop"", ""Headphones""]",1519.82,{},48631,1,South America +2024-04-15,33377,9466,"[""Keyboard"", ""Monitor"", ""Charger""]",3612.37,{},213101,0,Africa +2023-04-18,33378,3995,"[""Phone"", ""Keyboard"", ""Tablet""]",4314.29,{},210402,0,Asia +2024-05-13,33379,3145,"[""Charger"", ""Wireless Mouse""]",3409.69,{},243735,1,North America +2024-09-28,33380,269,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3321.86,{},68033,0,North America +2023-04-15,33381,2246,"[""Headphones""]",1736.83,{},49386,0,Africa +2024-09-22,33382,9287,"[""Tablet"", ""Keyboard"", ""Monitor""]",3978.74,"{""promo"": ""10%""}",58251,1,Europe +2024-12-11,33383,5174,"[""Wireless Mouse"", ""Headphones""]",2249.75,"{"""": ""22%""}",130421,1,Europe +2023-09-28,33384,6041,"[""Tablet"", ""Phone""]",2725.84,{},191449,1,Europe +2024-08-16,33385,7199,"[""Charger"", ""Monitor""]",2822.17,"{"""": ""18%""}",87834,0,South America +2024-05-07,33386,4176,"[""Laptop"", ""Headphones""]",2351.26,"{""promo"": ""17%""}",122033,0,Asia +2024-02-21,33387,8462,"[""Tablet"", ""Laptop""]",4041.72,"{""loyalty"": ""9%""}",75140,1,South America +2024-09-25,33388,2726,"[""Keyboard"", ""Tablet""]",3511.76,{},252167,1,Asia +2024-02-23,33389,7584,"[""Keyboard""]",2888.88,{},296575,0,South America +2024-06-21,33390,6398,"[""Charger"", ""Phone""]",2442.25,"{""loyalty"": ""11%""}",32271,1,Europe +2023-02-04,33391,3300,"[""Tablet"", ""Monitor"", ""Phone""]",390.09,{},280133,1,Africa +2024-03-21,33392,5870,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2892.76,"{""loyalty"": ""17%""}",268952,0,Africa +2024-06-29,33393,3318,"[""Monitor"", ""Laptop""]",2386.58,{},133443,0,North America +2023-05-13,33394,826,"[""Phone"", ""Laptop"", ""Headphones""]",3463.05,"{""promo"": ""28%""}",66943,1,South America +2023-03-22,33395,6651,"[""Monitor"", ""Charger""]",546.65,"{""seasonal"": ""9%""}",171028,0,Europe +2024-09-22,33396,4478,"[""Keyboard"", ""Headphones"", ""Charger""]",1520.66,{},132028,1,South America +2024-11-21,33397,820,"[""Charger"", ""Keyboard"", ""Tablet""]",2061.54,"{""promo"": ""17%""}",131661,0,Africa +2023-11-14,33398,9555,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",52.92,"{"""": ""11%""}",130534,1,Asia +2024-10-16,33399,3373,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1996.56,{},192899,1,Asia +2023-07-08,33400,2566,"[""Laptop""]",3030.0,"{""loyalty"": ""21%""}",179676,1,Africa +2023-09-25,33401,9039,"[""Tablet"", ""Wireless Mouse""]",262.94,"{""loyalty"": ""25%""}",245083,0,Africa +2024-11-09,33402,6904,"[""Keyboard"", ""Wireless Mouse""]",4167.15,{},281126,1,Europe +2023-03-30,33403,8441,"[""Phone"", ""Laptop""]",4795.44,{},177045,1,Africa +2024-11-15,33404,8155,"[""Monitor"", ""Charger""]",579.0,"{"""": ""24%""}",216300,0,Asia +2023-10-26,33405,1759,"[""Tablet""]",2059.22,{},72658,1,Africa +2023-04-12,33406,8366,"[""Phone"", ""Charger""]",4759.9,"{""loyalty"": ""14%""}",294252,1,Europe +2024-11-05,33407,9737,"[""Phone"", ""Tablet"", ""Monitor""]",1101.61,"{""loyalty"": ""12%""}",89363,1,Africa +2023-12-15,33408,5009,"[""Tablet""]",778.72,"{"""": ""13%""}",114821,0,North America +2024-10-21,33409,773,"[""Headphones""]",945.96,"{""promo"": ""28%""}",36636,0,North America +2024-10-05,33410,3116,"[""Phone"", ""Charger""]",3656.67,"{""promo"": ""6%""}",71359,0,Asia +2023-10-28,33411,4933,"[""Phone"", ""Headphones""]",2302.68,"{""loyalty"": ""29%""}",186783,0,North America +2024-06-02,33412,6647,"[""Headphones"", ""Laptop"", ""Tablet""]",199.68,"{""promo"": ""7%""}",13807,1,Asia +2023-10-18,33413,3926,"[""Headphones"", ""Keyboard""]",852.27,{},18524,1,Africa +2024-04-24,33414,2968,"[""Phone"", ""Charger""]",2196.89,{},117799,1,Europe +2023-01-02,33415,5509,"[""Keyboard"", ""Laptop"", ""Phone""]",4822.44,"{"""": ""22%""}",163775,1,Asia +2024-01-23,33416,3380,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3942.57,"{""seasonal"": ""10%""}",124660,1,North America +2024-12-29,33417,2465,"[""Keyboard""]",112.3,{},4145,0,Africa +2024-06-26,33418,2934,"[""Charger"", ""Keyboard"", ""Phone""]",303.95,{},136304,0,South America +2024-04-24,33419,3163,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2110.4,{},21995,0,Africa +2024-07-01,33420,4193,"[""Laptop""]",4777.65,{},58172,0,North America +2024-08-18,33421,8754,"[""Charger""]",4177.92,"{""seasonal"": ""28%""}",207118,1,Europe +2023-03-15,33422,5856,"[""Headphones""]",1228.81,{},208584,0,Africa +2024-10-05,33423,532,"[""Tablet"", ""Laptop"", ""Charger""]",4013.88,{},198375,1,Asia +2023-03-23,33424,188,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2955.9,"{""loyalty"": ""10%""}",296122,1,South America +2023-04-11,33425,5475,"[""Headphones""]",4452.24,{},36367,1,Europe +2023-06-07,33426,3944,"[""Tablet""]",3078.79,"{""promo"": ""29%""}",255025,0,Asia +2023-07-23,33427,3051,"[""Phone"", ""Keyboard"", ""Headphones""]",4162.17,{},96230,0,Asia +2024-07-30,33428,2927,"[""Phone"", ""Laptop"", ""Charger""]",235.13,{},26652,1,Asia +2024-03-29,33429,3319,"[""Keyboard"", ""Headphones"", ""Charger""]",1189.5,{},238995,0,Africa +2023-04-20,33430,8129,"[""Tablet"", ""Wireless Mouse""]",1877.78,{},152132,1,North America +2024-05-27,33431,9630,"[""Headphones"", ""Keyboard"", ""Phone""]",4432.87,{},284106,1,Europe +2024-09-19,33432,8800,"[""Wireless Mouse""]",1747.68,{},236117,1,South America +2024-08-27,33433,3677,"[""Charger"", ""Monitor"", ""Headphones""]",4561.18,"{"""": ""25%""}",132612,1,South America +2024-09-02,33434,4838,"[""Tablet"", ""Keyboard""]",4104.62,{},99948,0,Africa +2023-02-05,33435,4941,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4472.11,{},233108,1,Africa +2024-01-29,33436,7968,"[""Monitor"", ""Phone""]",3963.14,{},226231,1,Africa +2023-07-18,33437,6301,"[""Monitor"", ""Phone""]",1324.75,"{""promo"": ""9%""}",259323,0,South America +2023-03-03,33438,3883,"[""Laptop"", ""Monitor"", ""Phone""]",287.73,{},36399,1,Africa +2024-12-09,33439,6255,"[""Monitor"", ""Tablet"", ""Charger""]",4907.52,"{""promo"": ""5%""}",162630,1,South America +2024-06-21,33440,9264,"[""Headphones"", ""Tablet""]",86.5,{},190920,1,Asia +2024-12-11,33441,2434,"[""Phone"", ""Keyboard""]",3993.25,"{""promo"": ""22%""}",5376,0,Europe +2023-09-15,33442,4804,"[""Charger"", ""Tablet"", ""Monitor""]",3597.2,{},98640,0,North America +2024-03-16,33443,8947,"[""Phone""]",4355.0,{},95860,1,South America +2023-01-29,33444,6589,"[""Tablet"", ""Monitor"", ""Laptop""]",416.4,"{"""": ""23%""}",49245,0,North America +2023-09-04,33445,3833,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4107.89,{},156112,0,Africa +2024-01-07,33446,4882,"[""Phone"", ""Keyboard""]",2021.46,"{""promo"": ""28%""}",268139,0,North America +2024-08-07,33447,7082,"[""Phone""]",4058.06,{},208429,0,South America +2024-06-04,33448,6581,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2623.69,{},46091,1,Europe +2024-05-05,33449,2613,"[""Charger"", ""Monitor""]",2765.87,{},27585,1,Africa +2024-01-14,33450,1456,"[""Keyboard"", ""Charger""]",3409.75,"{""loyalty"": ""12%""}",258502,0,Africa +2023-02-15,33451,5772,"[""Keyboard""]",818.6,"{""promo"": ""18%""}",4146,1,Europe +2023-04-26,33452,7429,"[""Phone""]",3485.36,"{"""": ""17%""}",224251,0,Europe +2023-12-19,33453,9490,"[""Charger"", ""Keyboard"", ""Headphones""]",1020.99,"{""loyalty"": ""21%""}",41137,0,Europe +2023-08-26,33454,6073,"[""Laptop"", ""Keyboard"", ""Headphones""]",3848.67,{},218626,1,North America +2023-06-28,33455,701,"[""Headphones"", ""Laptop""]",3131.74,{},265055,1,Asia +2023-05-23,33456,8120,"[""Keyboard"", ""Charger"", ""Phone""]",2966.18,"{""promo"": ""16%""}",167368,1,Asia +2023-05-17,33457,6535,"[""Monitor""]",1257.41,"{""seasonal"": ""7%""}",149370,1,North America +2024-03-20,33458,3178,"[""Keyboard"", ""Phone"", ""Headphones""]",1570.28,{},261442,0,Asia +2023-12-20,33459,9311,"[""Keyboard"", ""Laptop""]",2957.58,{},57450,0,Africa +2023-07-24,33460,8183,"[""Tablet"", ""Charger""]",3320.89,{},154544,1,Europe +2023-05-07,33461,9486,"[""Laptop"", ""Keyboard"", ""Headphones""]",4717.61,{},238664,1,North America +2024-05-24,33462,3572,"[""Monitor""]",1318.6,"{"""": ""15%""}",45640,0,Africa +2023-12-13,33463,6791,"[""Keyboard"", ""Wireless Mouse""]",4340.9,{},81479,1,South America +2023-08-21,33464,6267,"[""Keyboard""]",3479.85,"{""promo"": ""14%""}",71919,0,Asia +2024-05-29,33465,2557,"[""Laptop""]",4404.8,"{""seasonal"": ""25%""}",244868,1,Europe +2024-02-20,33466,6288,"[""Monitor"", ""Phone"", ""Tablet""]",1994.92,"{""loyalty"": ""14%""}",129997,0,South America +2024-01-19,33467,7338,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1355.52,{},212988,0,Asia +2023-06-17,33468,8034,"[""Headphones"", ""Monitor"", ""Tablet""]",388.94,"{""promo"": ""27%""}",55615,1,Asia +2023-02-03,33469,8471,"[""Keyboard"", ""Monitor"", ""Phone""]",3471.96,{},53592,1,Europe +2024-09-04,33470,6085,"[""Phone"", ""Monitor""]",3667.21,"{"""": ""13%""}",286688,0,North America +2024-11-09,33471,7694,"[""Phone"", ""Monitor""]",4282.83,{},223394,0,North America +2024-01-05,33472,2416,"[""Wireless Mouse""]",3688.05,{},74476,1,North America +2024-12-28,33473,3338,"[""Laptop"", ""Tablet""]",372.57,"{"""": ""7%""}",15367,0,North America +2023-02-08,33474,9120,"[""Headphones"", ""Wireless Mouse""]",4925.42,"{""seasonal"": ""8%""}",38885,1,Europe +2024-11-03,33475,4183,"[""Laptop"", ""Tablet""]",2105.12,"{""promo"": ""18%""}",204661,1,Asia +2023-04-27,33476,6879,"[""Laptop"", ""Headphones"", ""Keyboard""]",4092.81,"{""promo"": ""17%""}",200153,1,South America +2023-06-25,33477,2953,"[""Phone"", ""Headphones"", ""Laptop""]",3484.33,"{"""": ""24%""}",83266,0,Africa +2024-05-10,33478,4653,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4819.0,"{""promo"": ""23%""}",59115,0,North America +2023-11-24,33479,2496,"[""Charger""]",681.67,{},174122,0,North America +2024-09-30,33480,5073,"[""Laptop"", ""Charger""]",4203.72,{},24469,1,Africa +2024-05-16,33481,2506,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1907.28,{},206112,0,Europe +2023-04-22,33482,6831,"[""Charger"", ""Laptop""]",379.54,{},57339,1,South America +2024-06-11,33483,1180,"[""Headphones"", ""Wireless Mouse""]",551.72,"{""loyalty"": ""17%""}",100113,1,Europe +2024-08-06,33484,9322,"[""Monitor"", ""Phone""]",3250.72,"{""seasonal"": ""24%""}",24018,0,North America +2024-03-30,33485,1064,"[""Headphones"", ""Monitor""]",4090.87,"{""seasonal"": ""11%""}",280835,1,Asia +2023-02-28,33486,9754,"[""Laptop"", ""Headphones"", ""Monitor""]",1086.05,"{""seasonal"": ""7%""}",201522,1,South America +2024-03-04,33487,4166,"[""Headphones""]",1879.16,{},77030,0,South America +2024-01-14,33488,9069,"[""Tablet"", ""Keyboard"", ""Headphones""]",4474.85,{},48764,1,Europe +2024-11-17,33489,2556,"[""Tablet""]",2975.33,"{""seasonal"": ""7%""}",203132,0,Asia +2024-06-24,33490,4416,"[""Laptop"", ""Keyboard"", ""Monitor""]",3196.86,"{""promo"": ""26%""}",127560,0,Africa +2023-12-04,33491,2225,"[""Laptop""]",3152.51,"{"""": ""5%""}",181349,0,Europe +2023-11-20,33492,3047,"[""Keyboard"", ""Headphones""]",4748.78,"{""seasonal"": ""10%""}",127918,1,South America +2024-08-15,33493,1594,"[""Phone""]",4010.06,"{"""": ""15%""}",270490,0,Asia +2024-12-20,33494,4685,"[""Headphones"", ""Tablet""]",2398.08,{},139629,0,North America +2023-07-28,33495,6573,"[""Monitor"", ""Laptop"", ""Keyboard""]",4729.42,"{""loyalty"": ""12%""}",59966,1,South America +2023-01-26,33496,5972,"[""Laptop""]",2559.8,{},196399,1,South America +2024-06-27,33497,2287,"[""Monitor"", ""Laptop"", ""Keyboard""]",2025.92,{},279431,0,South America +2023-05-02,33498,637,"[""Laptop"", ""Keyboard""]",3322.01,{},185174,0,Europe +2023-04-15,33499,9444,"[""Laptop""]",2307.27,{},277281,1,Africa +2024-02-09,33500,1075,"[""Phone""]",1280.91,"{""loyalty"": ""13%""}",162612,0,Europe +2023-04-16,33501,7367,"[""Phone"", ""Charger"", ""Laptop""]",1832.85,"{""loyalty"": ""11%""}",117529,1,Asia +2023-12-08,33502,1837,"[""Laptop""]",4437.12,{},251887,0,Europe +2023-01-20,33503,9427,"[""Phone"", ""Keyboard""]",3955.83,{},225712,1,North America +2023-08-02,33504,3607,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",411.36,{},227987,0,Asia +2024-06-10,33505,7404,"[""Wireless Mouse""]",4226.44,{},257112,1,Europe +2024-10-18,33506,9909,"[""Tablet"", ""Laptop"", ""Phone""]",3736.43,"{"""": ""25%""}",138753,1,South America +2024-10-15,33507,462,"[""Laptop""]",4611.09,{},151858,1,North America +2023-12-23,33508,6161,"[""Keyboard"", ""Wireless Mouse""]",2979.75,"{""promo"": ""25%""}",266148,1,South America +2024-10-30,33509,6917,"[""Headphones""]",1599.66,"{""promo"": ""8%""}",229390,0,Europe +2023-12-26,33510,9156,"[""Keyboard""]",3151.43,{},166873,0,South America +2024-03-16,33511,3551,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1538.15,{},234675,0,South America +2024-06-27,33512,1718,"[""Tablet"", ""Keyboard"", ""Charger""]",4914.03,{},37283,0,Asia +2023-05-08,33513,5239,"[""Phone"", ""Monitor""]",1541.58,"{""promo"": ""11%""}",284744,1,North America +2023-10-07,33514,6631,"[""Tablet"", ""Laptop"", ""Keyboard""]",994.24,"{""seasonal"": ""5%""}",159332,0,Africa +2024-09-06,33515,1815,"[""Headphones""]",684.33,{},32167,1,Africa +2023-09-08,33516,1438,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3486.74,{},23560,0,Asia +2024-02-23,33517,3820,"[""Phone"", ""Keyboard"", ""Laptop""]",4104.53,{},109374,1,Europe +2023-09-27,33518,503,"[""Laptop"", ""Tablet"", ""Phone""]",1440.26,"{"""": ""17%""}",137847,1,Asia +2024-12-17,33519,8051,"[""Tablet""]",3399.49,"{"""": ""17%""}",224316,1,Asia +2023-07-11,33520,3228,"[""Charger"", ""Phone"", ""Monitor""]",4180.17,"{""seasonal"": ""14%""}",51900,0,South America +2024-07-17,33521,9918,"[""Laptop""]",4917.65,"{""loyalty"": ""13%""}",242126,0,Europe +2023-05-17,33522,5747,"[""Charger"", ""Phone"", ""Monitor""]",4764.93,{},109996,1,Asia +2024-11-30,33523,9273,"[""Phone""]",577.59,{},25041,0,Europe +2023-08-18,33524,1164,"[""Keyboard"", ""Tablet""]",2999.14,"{""seasonal"": ""18%""}",208860,1,Asia +2024-10-09,33525,529,"[""Charger"", ""Headphones"", ""Tablet""]",4228.98,"{""loyalty"": ""8%""}",201698,0,Africa +2023-03-17,33526,4694,"[""Keyboard""]",2022.93,"{""promo"": ""29%""}",262498,1,Asia +2023-05-26,33527,1343,"[""Monitor"", ""Charger"", ""Headphones""]",2864.66,"{""seasonal"": ""28%""}",50010,1,Europe +2023-07-24,33528,8364,"[""Monitor"", ""Keyboard"", ""Laptop""]",4076.2,{},115059,1,South America +2023-07-25,33529,4796,"[""Keyboard""]",2072.74,{},70255,1,Africa +2024-08-04,33530,6300,"[""Charger""]",2349.25,"{""promo"": ""19%""}",121142,1,Asia +2023-06-11,33531,3919,"[""Tablet"", ""Monitor""]",3409.7,"{"""": ""27%""}",33414,1,Europe +2024-10-09,33532,887,"[""Phone""]",1146.43,"{""promo"": ""12%""}",221774,1,South America +2024-11-06,33533,4935,"[""Wireless Mouse""]",587.18,"{""promo"": ""11%""}",146290,1,South America +2024-11-01,33534,2746,"[""Tablet""]",3379.14,"{""promo"": ""23%""}",75174,0,North America +2023-10-29,33535,4153,"[""Headphones"", ""Tablet""]",714.15,{},33138,1,North America +2023-05-20,33536,2521,"[""Phone""]",4473.21,{},3900,1,North America +2023-07-16,33537,4029,"[""Wireless Mouse"", ""Charger""]",518.16,"{""promo"": ""7%""}",275116,0,North America +2023-12-16,33538,485,"[""Wireless Mouse""]",3546.03,"{""loyalty"": ""9%""}",253261,0,Africa +2024-11-08,33539,4855,"[""Keyboard""]",162.46,"{"""": ""28%""}",254470,0,Asia +2024-04-26,33540,3714,"[""Keyboard""]",4949.17,{},1417,0,South America +2024-12-03,33541,6589,"[""Monitor"", ""Laptop"", ""Charger""]",2533.39,{},83984,1,Asia +2023-11-29,33542,2532,"[""Monitor"", ""Headphones"", ""Tablet""]",783.87,"{""seasonal"": ""6%""}",251722,0,Asia +2024-09-21,33543,581,"[""Headphones"", ""Monitor""]",2467.25,"{""loyalty"": ""26%""}",6491,0,Asia +2024-01-12,33544,4578,"[""Laptop"", ""Phone"", ""Charger""]",1041.42,{},205575,1,Europe +2023-08-29,33545,5529,"[""Monitor""]",969.58,{},141032,1,North America +2023-05-12,33546,5668,"[""Phone"", ""Tablet"", ""Charger""]",95.76,"{"""": ""19%""}",165673,0,South America +2023-05-17,33547,3156,"[""Laptop""]",1599.77,"{""seasonal"": ""14%""}",270493,0,South America +2023-10-18,33548,226,"[""Keyboard""]",4925.2,"{""promo"": ""21%""}",8471,0,North America +2023-10-01,33549,6342,"[""Keyboard""]",3347.46,{},47936,1,South America +2024-08-28,33550,5858,"[""Wireless Mouse"", ""Phone""]",909.78,"{""loyalty"": ""27%""}",1426,0,Europe +2023-11-28,33551,3813,"[""Laptop""]",1962.71,{},193543,0,Europe +2023-11-29,33552,8086,"[""Phone"", ""Headphones""]",4092.8,"{""seasonal"": ""23%""}",196757,1,Africa +2024-04-01,33553,603,"[""Phone""]",1795.07,"{""loyalty"": ""18%""}",254760,0,Africa +2023-11-29,33554,9452,"[""Headphones"", ""Wireless Mouse""]",492.58,"{""seasonal"": ""16%""}",170838,0,South America +2023-10-08,33555,7673,"[""Charger"", ""Headphones""]",435.61,"{""promo"": ""5%""}",256106,1,Asia +2024-04-10,33556,8353,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4268.28,"{"""": ""12%""}",171807,1,North America +2024-10-27,33557,6630,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",684.31,{},220574,0,South America +2023-04-30,33558,37,"[""Laptop"", ""Headphones"", ""Keyboard""]",377.15,"{""loyalty"": ""28%""}",187485,1,South America +2024-11-08,33559,1049,"[""Headphones"", ""Keyboard"", ""Phone""]",2591.63,"{""loyalty"": ""16%""}",217761,0,Europe +2024-08-03,33560,76,"[""Charger""]",1836.86,{},177418,1,North America +2024-03-15,33561,1750,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2322.04,{},191567,1,South America +2023-10-13,33562,9959,"[""Keyboard"", ""Charger"", ""Tablet""]",1999.49,"{""seasonal"": ""6%""}",122573,1,North America +2024-12-08,33563,8975,"[""Tablet"", ""Wireless Mouse""]",4666.81,{},247420,1,Africa +2024-04-06,33564,7719,"[""Charger"", ""Headphones"", ""Laptop""]",4215.32,{},124632,1,North America +2023-05-28,33565,9031,"[""Laptop""]",1055.55,"{"""": ""25%""}",8627,0,Asia +2024-07-15,33566,3008,"[""Laptop""]",4725.46,"{""seasonal"": ""16%""}",162734,1,Europe +2023-07-24,33567,8456,"[""Phone""]",4919.86,{},83406,1,Africa +2023-08-27,33568,4845,"[""Phone"", ""Keyboard"", ""Laptop""]",1915.28,{},184945,0,Europe +2023-10-26,33569,6413,"[""Wireless Mouse"", ""Laptop""]",4835.8,"{""seasonal"": ""7%""}",250839,1,Asia +2023-10-24,33570,4334,"[""Charger"", ""Headphones""]",2049.26,{},248962,1,Asia +2024-03-02,33571,9273,"[""Tablet""]",4910.43,"{""loyalty"": ""27%""}",82517,1,Africa +2024-12-19,33572,3440,"[""Monitor"", ""Phone""]",4938.5,"{""promo"": ""20%""}",261942,0,Asia +2023-05-23,33573,6661,"[""Monitor""]",3891.55,"{""promo"": ""9%""}",212238,0,North America +2024-09-14,33574,7992,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4158.64,"{""promo"": ""18%""}",50054,0,Africa +2023-08-19,33575,9959,"[""Charger"", ""Headphones"", ""Phone""]",1408.09,{},64782,0,Asia +2023-02-03,33576,1067,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1661.08,{},101601,0,Asia +2023-04-28,33577,9558,"[""Wireless Mouse""]",3881.1,{},44425,1,Asia +2023-10-02,33578,1626,"[""Charger""]",1773.3,"{""promo"": ""15%""}",54593,0,South America +2023-10-13,33579,4092,"[""Headphones""]",4364.07,"{""seasonal"": ""14%""}",74047,1,Europe +2024-02-21,33580,7892,"[""Laptop"", ""Tablet""]",3873.28,"{""promo"": ""12%""}",14647,0,South America +2023-04-13,33581,967,"[""Wireless Mouse"", ""Keyboard""]",3828.92,"{"""": ""22%""}",51652,0,South America +2024-06-22,33582,5212,"[""Headphones""]",2860.63,"{"""": ""21%""}",158106,0,Europe +2023-10-20,33583,558,"[""Monitor""]",571.01,"{""loyalty"": ""27%""}",174285,0,Africa +2023-10-01,33584,3478,"[""Charger""]",2995.5,"{"""": ""14%""}",23997,1,North America +2023-07-25,33585,9560,"[""Tablet"", ""Monitor"", ""Phone""]",318.31,"{"""": ""17%""}",237027,0,Europe +2023-05-16,33586,6455,"[""Wireless Mouse"", ""Laptop""]",2067.69,"{""seasonal"": ""8%""}",234603,1,Europe +2023-09-29,33587,5459,"[""Phone""]",1941.35,"{""seasonal"": ""21%""}",77998,1,North America +2023-11-18,33588,7385,"[""Keyboard"", ""Monitor""]",4767.92,{},175879,1,South America +2023-11-01,33589,9611,"[""Tablet""]",2461.35,{},275898,1,Africa +2024-09-26,33590,4042,"[""Charger""]",1953.55,"{"""": ""12%""}",216774,0,Europe +2024-05-18,33591,899,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4311.76,{},58220,0,South America +2024-04-03,33592,6052,"[""Monitor"", ""Charger"", ""Laptop""]",3226.18,"{""loyalty"": ""18%""}",56273,1,Africa +2023-07-13,33593,8039,"[""Headphones"", ""Laptop""]",4052.05,{},169540,1,North America +2023-09-03,33594,5952,"[""Monitor"", ""Laptop"", ""Tablet""]",3624.88,{},134242,1,Europe +2023-01-23,33595,2978,"[""Phone"", ""Charger"", ""Headphones""]",2093.58,"{""promo"": ""27%""}",226321,0,North America +2024-10-15,33596,264,"[""Phone"", ""Wireless Mouse""]",4650.11,{},276659,1,North America +2023-11-04,33597,6388,"[""Wireless Mouse"", ""Laptop""]",1194.34,{},28085,0,North America +2024-03-02,33598,7680,"[""Charger""]",4058.3,"{""seasonal"": ""23%""}",181978,0,North America +2023-09-30,33599,2699,"[""Laptop""]",739.0,"{""seasonal"": ""15%""}",36302,1,Africa +2024-06-25,33600,7710,"[""Keyboard""]",2966.85,{},245385,1,South America +2024-10-31,33601,9124,"[""Headphones"", ""Phone"", ""Charger""]",3896.39,"{"""": ""11%""}",229989,0,Europe +2024-05-12,33602,2225,"[""Wireless Mouse""]",4744.9,{},126741,1,Europe +2023-10-24,33603,4308,"[""Phone"", ""Wireless Mouse""]",257.17,"{""loyalty"": ""20%""}",148194,0,Asia +2024-03-21,33604,410,"[""Wireless Mouse""]",2704.35,{},230614,1,Europe +2024-03-21,33605,7306,"[""Tablet"", ""Phone""]",1505.53,{},168059,0,Asia +2023-09-04,33606,1662,"[""Monitor""]",2717.76,{},191482,0,Africa +2024-09-14,33607,6021,"[""Monitor"", ""Keyboard"", ""Charger""]",2758.32,"{"""": ""16%""}",128712,0,South America +2024-08-07,33608,8870,"[""Laptop"", ""Wireless Mouse""]",2183.55,{},161567,0,Asia +2023-04-15,33609,3569,"[""Wireless Mouse"", ""Keyboard""]",3063.28,"{""seasonal"": ""26%""}",142932,1,Europe +2023-05-27,33610,9250,"[""Monitor"", ""Wireless Mouse""]",4556.25,{},34440,1,North America +2024-01-04,33611,9701,"[""Monitor"", ""Headphones"", ""Keyboard""]",3270.76,{},192110,0,Asia +2024-05-23,33612,1302,"[""Monitor"", ""Wireless Mouse""]",2464.36,{},126451,1,South America +2023-03-17,33613,9770,"[""Phone""]",1467.08,{},239847,1,Asia +2023-11-21,33614,4014,"[""Monitor""]",3129.01,{},70902,0,North America +2023-03-06,33615,3311,"[""Tablet""]",4261.19,{},196539,0,Asia +2024-11-28,33616,3320,"[""Headphones""]",639.01,{},284309,1,South America +2024-04-21,33617,4410,"[""Charger"", ""Keyboard"", ""Headphones""]",3015.4,"{""promo"": ""28%""}",32809,0,South America +2023-11-19,33618,1370,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",720.02,{},292489,0,Asia +2024-05-27,33619,9470,"[""Monitor"", ""Headphones"", ""Tablet""]",3565.72,{},190048,0,Europe +2023-05-03,33620,8211,"[""Wireless Mouse""]",2591.69,"{"""": ""15%""}",282695,0,South America +2023-05-03,33621,4613,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",996.97,"{""loyalty"": ""9%""}",207457,0,South America +2024-06-10,33622,4341,"[""Headphones""]",1176.86,"{"""": ""9%""}",203244,1,Europe +2024-01-18,33623,200,"[""Phone"", ""Charger""]",2679.83,{},206232,1,Europe +2024-11-14,33624,3944,"[""Wireless Mouse""]",3102.77,{},117531,1,North America +2023-02-27,33625,3048,"[""Tablet""]",751.92,"{""promo"": ""9%""}",178219,0,Europe +2023-06-09,33626,3648,"[""Tablet"", ""Charger""]",4619.45,{},290103,1,Africa +2024-11-26,33627,3168,"[""Wireless Mouse"", ""Headphones""]",4844.54,"{"""": ""16%""}",140903,0,South America +2024-09-09,33628,4549,"[""Wireless Mouse"", ""Tablet""]",2863.03,{},170942,0,South America +2023-04-15,33629,4829,"[""Charger""]",2794.18,"{""promo"": ""13%""}",101971,0,South America +2024-05-23,33630,7391,"[""Keyboard""]",4342.45,"{"""": ""10%""}",38795,1,Europe +2024-06-27,33631,5241,"[""Monitor"", ""Phone""]",188.52,{},161180,0,South America +2024-01-09,33632,3212,"[""Phone"", ""Charger""]",1012.67,{},257578,0,North America +2024-09-19,33633,4888,"[""Monitor"", ""Keyboard""]",1364.83,"{""loyalty"": ""26%""}",268809,1,Africa +2024-11-04,33634,8439,"[""Laptop""]",4040.79,{},107549,0,Africa +2023-01-14,33635,7770,"[""Wireless Mouse""]",3623.0,{},206910,0,South America +2023-04-05,33636,1889,"[""Headphones"", ""Laptop""]",3704.52,"{""seasonal"": ""21%""}",274012,1,Asia +2023-11-17,33637,3179,"[""Laptop""]",2994.8,{},109325,0,South America +2023-08-12,33638,6880,"[""Keyboard""]",3690.92,"{"""": ""16%""}",51085,1,Asia +2023-02-20,33639,3224,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1372.31,{},264453,1,South America +2023-01-22,33640,2758,"[""Tablet"", ""Charger""]",4464.5,{},89153,0,Asia +2023-04-19,33641,3361,"[""Laptop"", ""Keyboard"", ""Charger""]",1317.45,{},76448,0,Europe +2024-11-24,33642,6185,"[""Monitor""]",2538.8,"{"""": ""5%""}",104611,0,Africa +2024-03-16,33643,3290,"[""Wireless Mouse"", ""Headphones""]",1842.46,{},60301,0,Africa +2024-04-28,33644,1070,"[""Tablet""]",3654.38,"{""promo"": ""26%""}",112731,0,North America +2024-07-03,33645,1259,"[""Phone"", ""Laptop"", ""Monitor""]",3940.94,{},258683,0,Europe +2023-08-22,33646,1109,"[""Tablet"", ""Charger"", ""Laptop""]",947.48,"{""seasonal"": ""15%""}",208908,1,Asia +2024-03-24,33647,9083,"[""Wireless Mouse"", ""Phone""]",63.83,{},80477,1,Europe +2023-12-08,33648,5017,"[""Monitor""]",2294.63,{},49694,1,Europe +2023-10-18,33649,4912,"[""Monitor"", ""Laptop""]",1454.93,"{"""": ""13%""}",3421,0,Africa +2024-04-22,33650,7680,"[""Phone"", ""Charger"", ""Headphones""]",864.52,"{""loyalty"": ""22%""}",7373,0,Asia +2024-06-15,33651,8782,"[""Headphones"", ""Tablet""]",4215.92,"{""seasonal"": ""25%""}",258935,1,North America +2023-10-29,33652,5679,"[""Charger"", ""Phone""]",1910.91,{},224319,1,South America +2024-10-16,33653,1310,"[""Charger""]",2971.05,{},207624,1,Africa +2024-05-27,33654,9672,"[""Laptop""]",1593.82,{},88019,0,Europe +2023-02-06,33655,5215,"[""Laptop""]",3656.82,"{""promo"": ""29%""}",156564,0,South America +2024-07-05,33656,5313,"[""Keyboard"", ""Wireless Mouse""]",1140.79,{},42916,1,Africa +2023-12-14,33657,3330,"[""Laptop"", ""Charger"", ""Headphones""]",1474.1,"{"""": ""28%""}",187915,1,Africa +2023-07-31,33658,9604,"[""Wireless Mouse"", ""Headphones""]",243.46,{},209872,1,Asia +2024-04-11,33659,3612,"[""Wireless Mouse"", ""Monitor""]",323.67,"{"""": ""9%""}",82193,1,Africa +2024-04-03,33660,6659,"[""Tablet"", ""Phone"", ""Charger""]",236.0,"{""loyalty"": ""7%""}",195122,1,South America +2023-03-14,33661,6111,"[""Laptop"", ""Wireless Mouse""]",1064.03,"{""loyalty"": ""20%""}",288963,1,North America +2024-10-05,33662,3812,"[""Keyboard"", ""Phone""]",830.07,"{""seasonal"": ""7%""}",81513,0,Europe +2023-10-18,33663,2120,"[""Phone""]",2825.31,{},67204,1,North America +2024-06-28,33664,1345,"[""Charger""]",2177.87,{},158923,1,North America +2024-08-02,33665,3664,"[""Headphones"", ""Phone""]",2997.57,{},281713,1,Europe +2024-12-08,33666,9437,"[""Phone""]",4185.22,"{""seasonal"": ""6%""}",83909,1,North America +2023-08-31,33667,6496,"[""Tablet"", ""Laptop""]",1366.8,{},195142,0,North America +2023-09-06,33668,1687,"[""Monitor""]",2574.3,{},287824,0,Europe +2023-06-28,33669,7721,"[""Tablet""]",4562.58,{},29123,1,North America +2024-01-10,33670,1099,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4718.49,"{""loyalty"": ""10%""}",55716,0,Europe +2023-01-29,33671,7801,"[""Laptop"", ""Keyboard""]",453.01,"{"""": ""18%""}",75368,1,North America +2024-11-19,33672,9541,"[""Charger"", ""Monitor"", ""Keyboard""]",3899.17,"{""seasonal"": ""26%""}",27154,0,North America +2023-08-31,33673,1648,"[""Laptop"", ""Headphones""]",1544.77,"{""seasonal"": ""21%""}",56079,1,Asia +2023-01-23,33674,5691,"[""Tablet"", ""Charger"", ""Laptop""]",4662.62,"{""loyalty"": ""17%""}",59229,1,Asia +2023-07-11,33675,4137,"[""Keyboard"", ""Tablet"", ""Laptop""]",3611.06,"{""loyalty"": ""29%""}",271312,1,Africa +2023-06-26,33676,3005,"[""Keyboard"", ""Tablet""]",4735.73,"{""seasonal"": ""17%""}",204607,0,Asia +2024-08-31,33677,7336,"[""Keyboard"", ""Charger""]",450.3,"{""loyalty"": ""25%""}",6384,0,Europe +2024-05-29,33678,832,"[""Tablet"", ""Wireless Mouse""]",553.76,{},208642,0,Europe +2024-04-30,33679,6005,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2510.24,{},186091,0,Asia +2023-04-23,33680,1265,"[""Tablet""]",4820.42,"{""promo"": ""5%""}",222797,0,North America +2023-05-19,33681,1607,"[""Laptop""]",1648.27,"{""loyalty"": ""22%""}",242357,1,South America +2023-08-16,33682,7502,"[""Laptop""]",3882.73,{},115218,0,Asia +2024-02-17,33683,3809,"[""Charger"", ""Headphones""]",2442.37,{},35543,1,Europe +2024-11-23,33684,4877,"[""Monitor"", ""Laptop""]",1262.75,{},218402,1,South America +2024-10-08,33685,1080,"[""Laptop"", ""Phone""]",4580.7,{},34946,1,South America +2024-01-12,33686,7189,"[""Headphones"", ""Keyboard"", ""Tablet""]",3559.09,"{""seasonal"": ""21%""}",7062,1,South America +2023-04-14,33687,294,"[""Phone"", ""Monitor""]",3451.85,{},272103,1,North America +2023-01-07,33688,4494,"[""Phone"", ""Monitor"", ""Laptop""]",261.22,"{""seasonal"": ""13%""}",49575,1,North America +2024-08-31,33689,8769,"[""Tablet""]",4978.66,{},184385,0,South America +2023-02-02,33690,1281,"[""Monitor"", ""Charger""]",1196.52,"{""seasonal"": ""23%""}",287777,1,Europe +2024-08-29,33691,6611,"[""Charger"", ""Headphones""]",1710.62,{},270429,1,North America +2023-10-22,33692,8101,"[""Phone"", ""Tablet"", ""Laptop""]",3361.55,"{""loyalty"": ""5%""}",68948,0,Africa +2024-02-26,33693,506,"[""Headphones"", ""Tablet""]",3290.69,{},271837,1,North America +2024-09-17,33694,9564,"[""Laptop"", ""Wireless Mouse""]",82.4,{},138172,1,North America +2023-09-07,33695,6857,"[""Phone""]",2829.17,{},14297,1,Europe +2024-11-22,33696,4770,"[""Laptop"", ""Charger""]",1088.97,"{"""": ""27%""}",91679,1,Europe +2024-05-14,33697,2341,"[""Laptop""]",1788.2,{},97049,0,Africa +2024-07-04,33698,8178,"[""Laptop"", ""Keyboard"", ""Monitor""]",2332.15,"{"""": ""7%""}",233191,1,North America +2023-03-09,33699,4487,"[""Headphones"", ""Phone""]",399.82,{},190923,0,South America +2024-12-20,33700,7302,"[""Laptop""]",3722.03,"{""loyalty"": ""17%""}",90383,1,Asia +2023-10-31,33701,2751,"[""Monitor"", ""Tablet"", ""Headphones""]",4309.45,"{""seasonal"": ""23%""}",231626,0,South America +2023-04-05,33702,1092,"[""Wireless Mouse"", ""Keyboard""]",1861.7,{},188220,1,South America +2024-10-29,33703,6282,"[""Keyboard"", ""Charger"", ""Phone""]",3470.48,{},36163,0,Africa +2023-05-06,33704,1625,"[""Laptop""]",1522.49,{},17755,1,Europe +2024-05-10,33705,7974,"[""Charger"", ""Monitor"", ""Laptop""]",291.75,{},135983,0,North America +2023-07-27,33706,1854,"[""Phone"", ""Headphones"", ""Keyboard""]",4393.32,"{""seasonal"": ""6%""}",270436,1,Asia +2023-02-27,33707,7086,"[""Laptop""]",517.82,{},295630,0,North America +2023-01-31,33708,2067,"[""Tablet""]",4598.3,"{""seasonal"": ""12%""}",190463,0,Europe +2024-09-07,33709,5535,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1291.76,"{"""": ""27%""}",265836,1,North America +2024-03-29,33710,3812,"[""Monitor""]",2155.82,{},64526,1,North America +2024-03-26,33711,7168,"[""Keyboard"", ""Monitor"", ""Laptop""]",3053.11,{},123037,0,Europe +2023-08-25,33712,2580,"[""Charger""]",2204.42,{},6135,1,North America +2023-07-17,33713,6583,"[""Laptop"", ""Keyboard"", ""Tablet""]",3146.9,"{"""": ""5%""}",240369,0,North America +2024-07-14,33714,5326,"[""Wireless Mouse""]",1728.83,{},283302,0,North America +2023-01-11,33715,9452,"[""Charger"", ""Laptop""]",1678.63,"{""promo"": ""26%""}",297524,0,North America +2024-07-26,33716,7097,"[""Keyboard""]",3308.01,"{"""": ""28%""}",175989,0,Africa +2023-01-05,33717,3718,"[""Monitor"", ""Tablet"", ""Charger""]",4534.42,"{""loyalty"": ""14%""}",64046,0,South America +2023-08-21,33718,1477,"[""Phone"", ""Wireless Mouse""]",2053.41,"{""loyalty"": ""13%""}",290155,0,North America +2023-07-03,33719,4683,"[""Keyboard""]",2510.32,{},21017,0,Africa +2023-02-27,33720,614,"[""Wireless Mouse""]",4882.91,{},279342,1,South America +2024-05-05,33721,1026,"[""Headphones"", ""Tablet"", ""Charger""]",2849.42,{},35470,1,South America +2024-08-04,33722,5536,"[""Phone"", ""Keyboard""]",4140.4,{},253841,1,North America +2023-11-21,33723,6711,"[""Laptop"", ""Monitor""]",1698.7,"{""loyalty"": ""7%""}",19973,1,North America +2023-12-20,33724,2180,"[""Headphones"", ""Monitor"", ""Laptop""]",4819.38,{},27632,0,Africa +2024-06-17,33725,9891,"[""Keyboard"", ""Headphones"", ""Monitor""]",1042.78,{},98132,0,Africa +2023-07-30,33726,7735,"[""Charger"", ""Laptop"", ""Keyboard""]",4185.09,{},251106,0,Africa +2024-06-05,33727,9224,"[""Monitor""]",2892.78,"{""promo"": ""23%""}",4089,0,Asia +2023-07-06,33728,3033,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2357.99,"{""loyalty"": ""15%""}",57243,0,Asia +2024-04-29,33729,7147,"[""Headphones"", ""Monitor""]",454.39,"{""seasonal"": ""6%""}",26058,1,Europe +2023-09-11,33730,9623,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1129.05,"{""promo"": ""30%""}",140765,1,South America +2024-05-29,33731,921,"[""Monitor"", ""Charger""]",252.25,"{""loyalty"": ""29%""}",83794,1,South America +2023-07-03,33732,1761,"[""Phone""]",3487.25,"{""loyalty"": ""28%""}",268881,0,North America +2023-05-01,33733,7878,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",105.66,"{""seasonal"": ""29%""}",31050,0,North America +2024-07-16,33734,4296,"[""Keyboard"", ""Monitor""]",924.46,"{""promo"": ""13%""}",277050,1,North America +2024-03-29,33735,1745,"[""Tablet""]",1960.95,{},138912,1,North America +2024-02-01,33736,9858,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2248.06,{},64041,0,Europe +2024-02-08,33737,5694,"[""Keyboard""]",2579.77,"{""loyalty"": ""14%""}",136982,1,Asia +2023-08-17,33738,1630,"[""Wireless Mouse"", ""Headphones""]",4793.31,{},116047,1,South America +2023-03-07,33739,4079,"[""Monitor""]",789.46,{},7849,0,Asia +2024-04-06,33740,4855,"[""Charger"", ""Tablet""]",62.93,"{""seasonal"": ""7%""}",8312,0,Africa +2023-12-24,33741,2871,"[""Headphones"", ""Wireless Mouse""]",3233.28,{},222323,1,North America +2023-12-25,33742,4316,"[""Keyboard"", ""Tablet""]",4954.53,{},267433,0,Africa +2024-06-05,33743,6371,"[""Charger"", ""Headphones"", ""Keyboard""]",4328.99,"{""promo"": ""19%""}",191903,0,Asia +2024-04-18,33744,2537,"[""Laptop""]",4592.0,"{""seasonal"": ""24%""}",110278,1,North America +2024-06-04,33745,773,"[""Monitor"", ""Tablet"", ""Headphones""]",65.09,"{""promo"": ""25%""}",164007,0,Europe +2024-03-05,33746,1198,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2806.97,{},181212,1,South America +2023-09-07,33747,6254,"[""Charger"", ""Headphones""]",1808.64,{},157918,1,Africa +2023-03-16,33748,2417,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2849.24,{},204268,0,Europe +2023-12-25,33749,1446,"[""Monitor"", ""Laptop"", ""Headphones""]",1749.04,{},258013,1,Asia +2023-07-01,33750,9016,"[""Monitor""]",2202.12,{},248795,1,South America +2023-10-24,33751,5875,"[""Charger"", ""Keyboard""]",4837.38,{},71871,1,South America +2023-02-20,33752,7867,"[""Tablet"", ""Wireless Mouse""]",124.59,"{""seasonal"": ""30%""}",299366,1,South America +2024-01-27,33753,6423,"[""Headphones"", ""Keyboard"", ""Phone""]",735.09,"{""seasonal"": ""6%""}",75087,0,Europe +2023-12-01,33754,6554,"[""Tablet""]",1642.65,"{""promo"": ""5%""}",266323,1,Africa +2024-08-27,33755,5487,"[""Headphones""]",1603.47,{},18648,0,Europe +2023-05-27,33756,1630,"[""Wireless Mouse""]",4426.31,"{"""": ""18%""}",247011,1,Asia +2024-09-17,33757,7374,"[""Tablet"", ""Headphones""]",1533.26,{},8763,0,South America +2024-12-09,33758,9601,"[""Phone"", ""Keyboard"", ""Laptop""]",1444.05,{},268075,1,Africa +2023-09-20,33759,8534,"[""Charger""]",4817.0,"{""seasonal"": ""25%""}",112374,1,North America +2024-01-31,33760,3154,"[""Monitor""]",1214.47,{},293169,0,North America +2024-09-09,33761,2523,"[""Keyboard""]",2231.86,"{""loyalty"": ""20%""}",70150,0,South America +2023-09-30,33762,4546,"[""Phone"", ""Charger""]",3895.52,"{"""": ""8%""}",253219,1,North America +2023-12-20,33763,5424,"[""Keyboard"", ""Headphones"", ""Laptop""]",4574.1,{},163190,0,Europe +2023-10-05,33764,824,"[""Keyboard""]",2078.28,"{""promo"": ""23%""}",228249,1,Europe +2023-02-08,33765,754,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",913.55,"{""loyalty"": ""12%""}",186660,1,North America +2024-06-29,33766,6224,"[""Monitor"", ""Tablet"", ""Laptop""]",4243.87,{},225743,1,North America +2024-12-25,33767,3147,"[""Phone"", ""Laptop"", ""Charger""]",3830.96,{},257336,1,Africa +2023-12-25,33768,6109,"[""Wireless Mouse"", ""Headphones""]",1639.03,{},225909,1,Africa +2024-07-04,33769,6459,"[""Monitor"", ""Charger"", ""Keyboard""]",4548.57,{},264157,1,Asia +2023-12-08,33770,7325,"[""Charger""]",2456.14,"{""seasonal"": ""24%""}",37494,0,South America +2023-09-11,33771,9743,"[""Laptop"", ""Tablet"", ""Monitor""]",1732.25,"{""promo"": ""8%""}",151413,1,Africa +2023-06-15,33772,2507,"[""Laptop"", ""Phone""]",1935.82,{},294205,1,North America +2023-10-13,33773,6596,"[""Monitor"", ""Charger"", ""Headphones""]",3895.31,"{"""": ""14%""}",28524,0,South America +2024-08-31,33774,9223,"[""Charger"", ""Keyboard"", ""Phone""]",3450.86,{},232327,0,Africa +2024-04-07,33775,7380,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1505.26,{},125711,1,Africa +2023-09-05,33776,4544,"[""Tablet"", ""Monitor""]",102.95,"{""seasonal"": ""12%""}",200107,1,Europe +2024-02-04,33777,5714,"[""Charger""]",278.15,"{""promo"": ""9%""}",5868,1,Europe +2023-12-14,33778,6217,"[""Headphones""]",2588.92,{},217432,0,North America +2023-06-04,33779,8285,"[""Tablet"", ""Keyboard"", ""Laptop""]",4805.72,"{""promo"": ""22%""}",65141,1,Africa +2024-05-22,33780,9104,"[""Monitor"", ""Phone"", ""Keyboard""]",4111.4,{},5328,0,North America +2024-01-11,33781,2526,"[""Headphones"", ""Charger""]",1196.94,"{""promo"": ""28%""}",184758,1,Africa +2023-03-15,33782,9217,"[""Headphones"", ""Wireless Mouse""]",2022.98,"{""loyalty"": ""11%""}",142530,1,Europe +2023-10-06,33783,581,"[""Phone"", ""Headphones"", ""Keyboard""]",393.36,"{""promo"": ""21%""}",288770,0,Asia +2023-05-05,33784,6894,"[""Wireless Mouse""]",653.12,"{""promo"": ""18%""}",144353,0,Africa +2023-05-19,33785,6774,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",539.23,{},227333,0,Europe +2024-08-06,33786,3005,"[""Charger"", ""Phone""]",1830.39,"{""promo"": ""25%""}",13292,0,Africa +2023-12-05,33787,2719,"[""Headphones""]",2972.69,"{"""": ""10%""}",181693,1,Asia +2023-10-14,33788,1028,"[""Tablet""]",2156.79,"{""seasonal"": ""14%""}",35740,0,Africa +2024-06-10,33789,6147,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2505.92,"{"""": ""26%""}",106336,0,North America +2024-06-25,33790,1018,"[""Headphones"", ""Laptop""]",1389.52,{},127196,1,Africa +2023-10-07,33791,272,"[""Headphones"", ""Wireless Mouse""]",375.97,"{""promo"": ""25%""}",227547,1,North America +2023-10-10,33792,7108,"[""Charger""]",3835.6,"{"""": ""30%""}",217475,0,Europe +2024-01-10,33793,8851,"[""Phone"", ""Headphones"", ""Monitor""]",203.96,{},128941,1,North America +2024-12-02,33794,9798,"[""Tablet"", ""Keyboard"", ""Monitor""]",2384.65,{},208440,1,Africa +2024-11-16,33795,3131,"[""Laptop""]",3663.29,{},281492,1,North America +2024-08-28,33796,8755,"[""Charger"", ""Phone""]",1273.63,{},109382,1,North America +2023-06-14,33797,1761,"[""Wireless Mouse""]",855.28,{},15317,0,South America +2023-05-13,33798,3924,"[""Laptop""]",56.44,"{""loyalty"": ""24%""}",70789,0,North America +2024-07-17,33799,399,"[""Tablet""]",4768.88,"{""seasonal"": ""18%""}",240579,0,North America +2024-05-15,33800,7030,"[""Tablet"", ""Charger""]",326.48,{},74465,1,North America +2024-05-05,33801,7015,"[""Laptop"", ""Wireless Mouse""]",2101.83,"{""loyalty"": ""29%""}",103184,0,Africa +2024-10-28,33802,3975,"[""Wireless Mouse"", ""Phone""]",1495.54,"{""promo"": ""16%""}",58515,0,Europe +2024-06-09,33803,7656,"[""Keyboard"", ""Tablet"", ""Monitor""]",2294.32,{},185225,1,North America +2023-07-08,33804,3799,"[""Laptop"", ""Tablet"", ""Keyboard""]",3895.35,"{""promo"": ""30%""}",46685,0,Africa +2024-03-14,33805,7976,"[""Tablet"", ""Laptop"", ""Monitor""]",4803.45,{},104657,0,Asia +2024-01-02,33806,5988,"[""Keyboard"", ""Monitor""]",3745.3,"{""promo"": ""18%""}",94142,1,Asia +2024-08-22,33807,8695,"[""Wireless Mouse"", ""Laptop""]",2344.61,"{"""": ""8%""}",42320,1,Asia +2024-06-22,33808,3158,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",646.58,"{""loyalty"": ""16%""}",152387,0,Asia +2024-08-30,33809,941,"[""Headphones"", ""Phone""]",3583.88,"{""seasonal"": ""22%""}",45337,0,Europe +2023-04-24,33810,3109,"[""Keyboard"", ""Wireless Mouse""]",3632.15,"{"""": ""12%""}",273782,0,South America +2023-04-05,33811,8948,"[""Tablet""]",1973.82,{},221796,0,North America +2023-09-14,33812,6335,"[""Laptop"", ""Charger"", ""Monitor""]",2010.07,"{""loyalty"": ""14%""}",66583,1,Africa +2024-02-03,33813,3718,"[""Laptop"", ""Keyboard""]",4151.69,{},89259,0,Africa +2023-02-27,33814,5066,"[""Charger"", ""Monitor""]",4598.17,"{""loyalty"": ""13%""}",262748,0,Asia +2024-08-13,33815,3332,"[""Keyboard""]",4642.65,"{""promo"": ""28%""}",11112,0,Europe +2023-04-27,33816,347,"[""Phone"", ""Monitor""]",2180.12,"{""seasonal"": ""9%""}",167457,0,Africa +2024-11-26,33817,8751,"[""Monitor""]",1515.64,{},163337,0,Asia +2024-01-03,33818,5564,"[""Monitor""]",4207.05,{},38162,0,Africa +2024-02-18,33819,1171,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1212.09,"{""loyalty"": ""29%""}",197787,1,North America +2024-12-21,33820,4425,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",985.2,{},261659,1,Europe +2023-08-08,33821,1272,"[""Charger""]",3092.55,{},235910,1,Europe +2024-11-27,33822,3668,"[""Keyboard""]",4213.65,"{""loyalty"": ""17%""}",8368,0,Africa +2023-10-22,33823,9318,"[""Monitor""]",295.36,"{"""": ""7%""}",5734,0,Africa +2024-07-26,33824,9805,"[""Charger"", ""Keyboard""]",3343.31,"{""seasonal"": ""15%""}",291294,0,Asia +2024-10-12,33825,5883,"[""Headphones"", ""Monitor"", ""Phone""]",536.76,"{""promo"": ""14%""}",183203,1,North America +2023-12-01,33826,811,"[""Headphones"", ""Tablet""]",3225.65,{},105299,0,Europe +2023-07-14,33827,4370,"[""Phone""]",1194.17,{},242949,1,South America +2024-06-21,33828,8920,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4327.95,{},161215,1,Africa +2023-05-07,33829,6007,"[""Laptop"", ""Tablet""]",1594.11,{},212316,1,Europe +2023-01-27,33830,7457,"[""Headphones"", ""Laptop"", ""Keyboard""]",2264.48,{},110265,0,Africa +2024-12-23,33831,2356,"[""Laptop"", ""Headphones""]",834.44,"{"""": ""27%""}",82359,0,North America +2023-12-15,33832,4462,"[""Wireless Mouse"", ""Headphones""]",3748.18,{},88087,0,North America +2024-03-25,33833,8023,"[""Headphones""]",2198.23,"{"""": ""23%""}",236422,1,North America +2023-07-22,33834,9342,"[""Headphones"", ""Charger"", ""Keyboard""]",808.13,{},177829,1,Africa +2024-10-19,33835,2257,"[""Keyboard"", ""Tablet"", ""Charger""]",2962.64,"{""seasonal"": ""15%""}",35912,1,Asia +2024-07-12,33836,9790,"[""Charger""]",820.35,"{""promo"": ""30%""}",220262,0,Asia +2024-04-24,33837,6727,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1549.26,{},26775,1,North America +2023-11-26,33838,2236,"[""Tablet"", ""Charger"", ""Laptop""]",3010.55,"{"""": ""20%""}",272243,1,Asia +2023-01-17,33839,1740,"[""Tablet"", ""Wireless Mouse""]",2053.2,{},209880,1,North America +2024-12-19,33840,232,"[""Tablet"", ""Headphones""]",4822.91,{},200577,1,Europe +2023-04-13,33841,2099,"[""Keyboard"", ""Monitor""]",1683.91,"{""seasonal"": ""19%""}",236571,0,Africa +2023-03-18,33842,6807,"[""Charger"", ""Headphones"", ""Laptop""]",454.65,{},216445,0,Europe +2024-11-22,33843,8308,"[""Charger""]",3669.78,"{"""": ""10%""}",226410,0,South America +2024-07-30,33844,2271,"[""Wireless Mouse"", ""Laptop""]",1599.3,{},39751,0,Asia +2024-07-22,33845,1551,"[""Charger"", ""Monitor"", ""Laptop""]",1844.06,{},242353,1,Africa +2024-04-27,33846,9065,"[""Monitor""]",2757.66,{},107815,0,North America +2023-08-11,33847,829,"[""Wireless Mouse"", ""Laptop""]",87.02,"{""loyalty"": ""11%""}",99001,0,South America +2024-09-13,33848,8198,"[""Keyboard""]",4936.55,{},243295,0,North America +2024-08-02,33849,4487,"[""Headphones"", ""Wireless Mouse""]",442.23,"{""seasonal"": ""30%""}",128943,0,South America +2024-10-12,33850,6272,"[""Monitor"", ""Phone"", ""Keyboard""]",205.03,"{""promo"": ""17%""}",3993,1,Europe +2024-11-18,33851,7733,"[""Laptop"", ""Monitor"", ""Phone""]",2153.26,{},266919,1,Europe +2024-07-14,33852,6415,"[""Headphones""]",332.44,{},228715,0,South America +2024-09-15,33853,6258,"[""Tablet""]",58.8,"{""loyalty"": ""7%""}",52017,1,Europe +2023-02-15,33854,1112,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2097.56,{},273441,1,Asia +2024-04-23,33855,7413,"[""Tablet""]",3001.59,"{""seasonal"": ""22%""}",115865,0,Asia +2023-05-20,33856,2914,"[""Headphones"", ""Monitor""]",4924.5,{},185657,0,Africa +2023-05-06,33857,4913,"[""Wireless Mouse""]",2846.41,{},101055,0,North America +2024-12-22,33858,4339,"[""Wireless Mouse"", ""Charger""]",85.97,{},223957,1,Africa +2023-10-07,33859,7309,"[""Keyboard"", ""Monitor""]",631.0,{},203072,0,Asia +2024-02-03,33860,7752,"[""Headphones""]",1835.74,{},196295,1,Europe +2023-05-28,33861,8281,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",429.16,"{""seasonal"": ""29%""}",187581,1,North America +2023-04-15,33862,3271,"[""Phone""]",4367.98,{},247178,1,North America +2024-07-07,33863,3130,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4221.76,{},249844,0,Africa +2024-07-05,33864,4725,"[""Headphones"", ""Monitor""]",4493.16,"{""promo"": ""30%""}",156818,0,Africa +2023-12-19,33865,4750,"[""Headphones""]",3875.28,"{""promo"": ""30%""}",12795,0,Europe +2024-12-25,33866,1688,"[""Laptop""]",4067.44,{},150120,0,North America +2023-10-14,33867,2137,"[""Headphones"", ""Tablet""]",730.22,{},177953,0,Asia +2023-10-09,33868,7653,"[""Phone"", ""Laptop""]",3855.53,{},12207,0,South America +2024-06-22,33869,3979,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2322.41,"{""promo"": ""5%""}",228529,1,South America +2023-09-01,33870,9440,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4169.16,"{""promo"": ""22%""}",41275,0,Africa +2023-07-03,33871,3069,"[""Keyboard"", ""Laptop"", ""Phone""]",4512.94,"{""seasonal"": ""16%""}",287160,1,Asia +2024-02-11,33872,4494,"[""Tablet"", ""Wireless Mouse""]",2691.32,"{""seasonal"": ""25%""}",212570,1,North America +2023-02-07,33873,7644,"[""Laptop"", ""Charger""]",630.11,"{""loyalty"": ""10%""}",174147,1,Europe +2024-08-31,33874,8139,"[""Phone"", ""Headphones""]",2619.15,{},49673,0,Europe +2023-04-04,33875,5935,"[""Headphones"", ""Tablet""]",1579.83,{},26221,0,Africa +2023-01-27,33876,3017,"[""Tablet""]",3709.21,"{"""": ""27%""}",103247,1,Europe +2023-12-04,33877,8908,"[""Charger"", ""Monitor""]",4994.01,"{""loyalty"": ""7%""}",38130,0,Africa +2023-08-02,33878,4622,"[""Laptop"", ""Charger"", ""Keyboard""]",4570.77,"{""loyalty"": ""11%""}",175924,1,Asia +2024-06-02,33879,2535,"[""Phone"", ""Laptop""]",4699.81,"{""loyalty"": ""8%""}",214064,1,Africa +2024-05-10,33880,3298,"[""Wireless Mouse"", ""Monitor""]",4345.7,"{""loyalty"": ""30%""}",198247,1,Europe +2023-06-30,33881,8437,"[""Wireless Mouse""]",4839.8,{},29402,1,Africa +2023-04-04,33882,9473,"[""Monitor""]",2315.33,"{""loyalty"": ""19%""}",29926,1,Europe +2023-01-20,33883,5797,"[""Headphones"", ""Keyboard""]",427.16,"{""seasonal"": ""16%""}",265803,1,North America +2023-10-02,33884,9611,"[""Headphones""]",2339.44,"{""seasonal"": ""17%""}",35592,0,Europe +2024-06-11,33885,5768,"[""Charger"", ""Monitor""]",3680.77,"{"""": ""28%""}",55979,1,Europe +2023-07-23,33886,5161,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3904.54,"{""loyalty"": ""19%""}",139728,1,Asia +2023-08-07,33887,9083,"[""Headphones""]",2125.15,"{"""": ""16%""}",237071,0,Asia +2024-04-20,33888,6136,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2220.38,{},238574,1,North America +2023-06-16,33889,8864,"[""Phone"", ""Headphones""]",731.96,{},26203,0,Europe +2024-11-05,33890,9523,"[""Phone"", ""Headphones""]",3197.05,{},280374,1,South America +2024-09-03,33891,6904,"[""Tablet""]",4128.11,{},224096,1,South America +2024-02-04,33892,8906,"[""Laptop""]",352.09,"{""loyalty"": ""19%""}",3956,1,North America +2024-11-01,33893,8356,"[""Wireless Mouse""]",1964.67,{},50841,0,South America +2024-01-21,33894,9323,"[""Laptop""]",3637.7,{},215215,0,Asia +2023-12-31,33895,1998,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3498.28,{},124862,1,Africa +2024-09-24,33896,2539,"[""Charger"", ""Laptop"", ""Tablet""]",1537.04,"{""promo"": ""16%""}",13808,1,Europe +2023-01-09,33897,4259,"[""Tablet""]",4277.6,{},237139,1,Europe +2023-11-19,33898,4623,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",267.14,"{""loyalty"": ""18%""}",15338,1,North America +2023-10-24,33899,9813,"[""Tablet""]",3574.52,{},78486,0,Asia +2024-03-30,33900,4552,"[""Tablet""]",3351.89,{},70747,1,Asia +2024-11-29,33901,325,"[""Phone"", ""Laptop""]",1293.1,"{""loyalty"": ""6%""}",262876,0,South America +2023-08-21,33902,433,"[""Keyboard"", ""Tablet""]",1397.69,{},55699,0,South America +2024-12-27,33903,7005,"[""Wireless Mouse"", ""Keyboard""]",1641.86,{},159280,1,North America +2023-06-12,33904,3568,"[""Keyboard""]",4507.7,"{""promo"": ""20%""}",144797,1,Africa +2024-04-09,33905,690,"[""Keyboard"", ""Laptop"", ""Charger""]",4083.34,"{""loyalty"": ""16%""}",39422,1,Africa +2024-09-12,33906,6233,"[""Charger""]",153.09,{},197710,1,Africa +2023-06-08,33907,9349,"[""Monitor"", ""Headphones""]",3990.36,{},133800,1,North America +2023-05-03,33908,3970,"[""Headphones"", ""Wireless Mouse""]",2306.76,"{""loyalty"": ""19%""}",270336,1,Asia +2023-07-16,33909,4876,"[""Tablet"", ""Laptop""]",381.56,{},240208,0,South America +2023-02-26,33910,6694,"[""Monitor"", ""Tablet""]",717.78,{},263049,0,South America +2024-08-18,33911,5027,"[""Phone"", ""Charger"", ""Laptop""]",3281.66,"{""promo"": ""13%""}",186168,1,North America +2023-05-15,33912,4929,"[""Tablet""]",536.8,{},144337,1,North America +2024-02-02,33913,6402,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",119.04,"{""seasonal"": ""21%""}",131234,1,North America +2024-10-31,33914,8213,"[""Tablet"", ""Wireless Mouse""]",3748.33,"{""promo"": ""7%""}",15037,0,Asia +2024-02-09,33915,6451,"[""Tablet"", ""Charger""]",2456.17,{},80325,1,Africa +2023-11-30,33916,6809,"[""Laptop"", ""Phone""]",1811.96,"{""promo"": ""18%""}",7504,0,Europe +2024-12-19,33917,9128,"[""Phone"", ""Keyboard""]",434.76,"{"""": ""14%""}",77983,0,Africa +2024-07-28,33918,9043,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",991.49,{},293688,1,South America +2023-04-12,33919,3474,"[""Charger""]",556.45,"{"""": ""10%""}",291992,1,North America +2023-06-05,33920,9346,"[""Keyboard"", ""Wireless Mouse""]",801.97,{},153447,0,Europe +2024-12-23,33921,9557,"[""Monitor"", ""Laptop"", ""Keyboard""]",3608.65,{},67326,0,North America +2024-07-05,33922,3754,"[""Wireless Mouse"", ""Charger""]",2548.58,"{"""": ""26%""}",296173,1,South America +2023-03-26,33923,246,"[""Wireless Mouse"", ""Laptop""]",3700.57,"{""seasonal"": ""17%""}",107478,0,South America +2023-11-20,33924,5343,"[""Keyboard"", ""Charger"", ""Headphones""]",95.31,{},239735,0,Africa +2024-08-30,33925,8075,"[""Headphones"", ""Phone""]",2334.49,"{""seasonal"": ""6%""}",189557,0,Asia +2024-07-24,33926,1641,"[""Laptop"", ""Charger""]",4065.54,"{"""": ""20%""}",59277,0,South America +2023-02-15,33927,6795,"[""Charger"", ""Monitor"", ""Laptop""]",3918.31,"{""loyalty"": ""19%""}",236731,1,Europe +2024-05-10,33928,7593,"[""Tablet"", ""Monitor""]",2383.19,"{""loyalty"": ""23%""}",227675,0,Europe +2024-09-26,33929,5826,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3835.44,"{""promo"": ""26%""}",131356,0,Africa +2023-02-15,33930,4573,"[""Tablet"", ""Monitor"", ""Headphones""]",1183.87,{},220419,0,Africa +2023-01-01,33931,503,"[""Monitor"", ""Headphones""]",4347.29,{},273661,1,Asia +2023-03-19,33932,2878,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2757.82,"{""loyalty"": ""9%""}",180819,0,South America +2023-05-29,33933,2334,"[""Monitor"", ""Wireless Mouse""]",1180.24,"{"""": ""30%""}",87341,1,Europe +2023-06-30,33934,1723,"[""Wireless Mouse""]",2082.17,"{"""": ""23%""}",32656,0,North America +2023-04-06,33935,7929,"[""Tablet"", ""Phone"", ""Monitor""]",506.84,{},31973,0,Africa +2024-01-23,33936,3730,"[""Charger"", ""Tablet"", ""Headphones""]",112.46,"{""loyalty"": ""20%""}",99488,1,Europe +2024-01-07,33937,6449,"[""Monitor""]",3192.42,{},263271,0,Africa +2024-01-25,33938,5495,"[""Tablet"", ""Charger""]",4296.61,{},39062,1,North America +2023-04-08,33939,8182,"[""Tablet"", ""Phone""]",2577.56,{},84857,1,Asia +2024-12-20,33940,3703,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3296.69,"{""loyalty"": ""19%""}",142844,1,South America +2024-04-25,33941,4303,"[""Laptop""]",1503.35,{},72774,1,North America +2023-09-10,33942,6525,"[""Keyboard""]",368.08,"{""seasonal"": ""26%""}",50253,0,North America +2023-01-03,33943,8023,"[""Charger"", ""Monitor""]",4820.98,"{""loyalty"": ""9%""}",18363,0,South America +2023-12-05,33944,9904,"[""Tablet""]",3214.28,{},154967,0,Europe +2024-06-27,33945,5629,"[""Laptop"", ""Phone"", ""Keyboard""]",200.14,"{"""": ""28%""}",119735,0,Europe +2023-01-09,33946,6660,"[""Wireless Mouse""]",574.84,{},157670,0,Europe +2024-07-04,33947,381,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1183.41,{},103470,1,North America +2023-02-10,33948,267,"[""Monitor"", ""Phone""]",4956.53,{},20796,1,Europe +2023-10-17,33949,5952,"[""Laptop"", ""Monitor"", ""Phone""]",472.33,{},248255,0,Africa +2023-09-25,33950,1343,"[""Tablet""]",450.68,{},282912,1,South America +2023-06-08,33951,4793,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1450.86,"{"""": ""23%""}",224253,1,Asia +2023-02-03,33952,4990,"[""Keyboard"", ""Charger"", ""Laptop""]",1615.88,"{"""": ""16%""}",165569,1,Europe +2023-04-25,33953,6086,"[""Tablet""]",3789.69,"{""loyalty"": ""27%""}",84977,0,Europe +2024-05-21,33954,6733,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3962.96,"{""seasonal"": ""16%""}",28373,1,Asia +2023-01-20,33955,4428,"[""Tablet""]",2765.48,{},280150,0,North America +2023-07-07,33956,1912,"[""Monitor""]",3268.6,"{""seasonal"": ""16%""}",72751,0,Africa +2023-11-23,33957,7215,"[""Monitor""]",3734.0,"{""loyalty"": ""13%""}",122397,1,Africa +2023-02-25,33958,8016,"[""Wireless Mouse"", ""Tablet""]",826.63,{},264623,1,Africa +2024-09-16,33959,1026,"[""Laptop""]",3089.48,{},216751,0,Africa +2024-04-06,33960,6052,"[""Laptop""]",1444.04,{},102434,1,South America +2023-10-27,33961,8416,"[""Phone""]",679.57,"{""loyalty"": ""22%""}",163374,1,South America +2024-05-05,33962,3309,"[""Headphones"", ""Laptop"", ""Keyboard""]",727.55,{},299316,0,Asia +2023-04-24,33963,9185,"[""Charger"", ""Wireless Mouse""]",1027.33,{},172306,1,South America +2024-03-03,33964,5395,"[""Monitor"", ""Keyboard""]",1888.48,{},8735,0,Europe +2023-12-14,33965,7177,"[""Charger"", ""Laptop""]",2486.15,"{""promo"": ""23%""}",190925,1,Europe +2023-11-12,33966,3596,"[""Phone"", ""Wireless Mouse""]",2027.8,{},287348,1,North America +2023-10-27,33967,9540,"[""Keyboard"", ""Charger"", ""Phone""]",4602.13,"{""seasonal"": ""8%""}",200481,0,Europe +2023-05-16,33968,1028,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2740.1,"{"""": ""17%""}",290691,0,South America +2023-03-12,33969,5359,"[""Charger""]",1635.18,{},210873,1,Europe +2024-11-01,33970,1739,"[""Tablet""]",1557.9,"{""promo"": ""25%""}",112059,1,South America +2024-07-09,33971,7455,"[""Charger"", ""Keyboard"", ""Monitor""]",985.75,"{""promo"": ""12%""}",6157,1,Asia +2023-10-09,33972,1245,"[""Tablet"", ""Laptop""]",284.31,{},201462,0,Asia +2024-06-11,33973,5925,"[""Wireless Mouse"", ""Headphones""]",2871.63,{},27906,0,Europe +2023-03-15,33974,7880,"[""Headphones""]",3205.11,{},180201,1,North America +2023-05-02,33975,9571,"[""Charger"", ""Monitor""]",4152.02,"{""promo"": ""15%""}",186198,1,North America +2024-02-26,33976,3462,"[""Phone""]",3692.71,{},133589,1,Europe +2024-05-03,33977,5472,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",599.33,{},204352,0,South America +2024-09-25,33978,343,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4242.65,"{"""": ""30%""}",74893,0,Europe +2023-03-14,33979,895,"[""Headphones"", ""Keyboard"", ""Phone""]",3243.71,"{""seasonal"": ""8%""}",179979,1,North America +2023-05-08,33980,53,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4380.51,{},86829,1,Europe +2023-06-28,33981,1724,"[""Tablet""]",2748.23,{},130150,0,South America +2024-10-15,33982,2470,"[""Charger""]",2694.13,{},190844,1,Africa +2023-06-19,33983,1053,"[""Headphones"", ""Monitor""]",3051.67,"{"""": ""25%""}",249467,0,North America +2024-12-11,33984,2290,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4461.67,{},189911,1,South America +2023-07-18,33985,6984,"[""Monitor""]",2917.42,{},37422,1,North America +2023-02-14,33986,3568,"[""Wireless Mouse"", ""Laptop""]",4921.66,"{""seasonal"": ""19%""}",176129,1,Asia +2024-11-20,33987,7752,"[""Tablet"", ""Keyboard""]",1917.82,"{""loyalty"": ""21%""}",172453,0,Europe +2023-06-21,33988,5976,"[""Laptop"", ""Wireless Mouse""]",3825.66,"{""loyalty"": ""13%""}",143990,0,South America +2024-05-15,33989,9273,"[""Phone"", ""Charger""]",1492.18,"{"""": ""27%""}",147283,0,Asia +2023-05-16,33990,8227,"[""Phone"", ""Wireless Mouse""]",3010.88,{},19647,1,Africa +2023-08-04,33991,5623,"[""Laptop"", ""Headphones"", ""Keyboard""]",2336.72,{},32227,1,Asia +2023-10-13,33992,620,"[""Phone""]",1039.71,"{""promo"": ""22%""}",18630,1,South America +2024-01-01,33993,8851,"[""Tablet"", ""Phone""]",151.07,{},125194,0,Asia +2023-05-03,33994,3302,"[""Headphones"", ""Phone""]",1140.81,"{""loyalty"": ""24%""}",249043,1,Europe +2024-05-06,33995,9789,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",191.17,{},105945,1,Europe +2024-05-02,33996,8911,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",339.82,"{""promo"": ""14%""}",226624,1,Europe +2024-02-08,33997,5479,"[""Charger"", ""Monitor""]",2550.12,{},86675,1,Europe +2023-12-20,33998,9601,"[""Monitor"", ""Headphones""]",122.72,"{""loyalty"": ""28%""}",171232,0,Europe +2024-12-01,33999,2615,"[""Tablet"", ""Headphones"", ""Monitor""]",578.12,{},98846,1,Europe +2023-01-02,34000,7624,"[""Monitor"", ""Headphones""]",1815.55,{},279964,0,Asia +2024-10-04,34001,8492,"[""Phone""]",1334.27,{},150548,0,North America +2024-05-31,34002,237,"[""Monitor""]",473.59,{},98602,0,South America +2024-07-11,34003,4066,"[""Laptop"", ""Phone"", ""Keyboard""]",3523.31,"{"""": ""14%""}",61925,1,Asia +2024-02-24,34004,9552,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1481.56,{},125833,0,Europe +2024-07-28,34005,1268,"[""Charger"", ""Tablet"", ""Headphones""]",3908.44,{},146598,0,Africa +2024-06-02,34006,9380,"[""Monitor"", ""Headphones""]",2359.57,{},108458,1,Asia +2024-05-04,34007,2139,"[""Keyboard"", ""Tablet""]",1947.73,{},106595,0,Africa +2023-01-11,34008,2276,"[""Tablet"", ""Keyboard"", ""Phone""]",4954.2,"{"""": ""27%""}",287137,0,Asia +2024-11-10,34009,4708,"[""Keyboard"", ""Wireless Mouse""]",3238.83,"{""loyalty"": ""27%""}",32083,0,Africa +2023-05-07,34010,9302,"[""Charger"", ""Headphones"", ""Keyboard""]",598.35,{},31200,0,Asia +2024-04-05,34011,1868,"[""Wireless Mouse""]",3016.44,{},140741,1,South America +2024-11-21,34012,9393,"[""Wireless Mouse"", ""Laptop""]",3458.39,{},136463,0,Europe +2023-10-10,34013,6997,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1331.43,"{""promo"": ""14%""}",45173,1,Europe +2024-05-12,34014,1435,"[""Wireless Mouse""]",393.82,{},159392,1,Africa +2024-01-06,34015,7192,"[""Headphones""]",1667.67,{},260609,1,Africa +2023-10-05,34016,9801,"[""Phone"", ""Charger""]",1793.8,"{""seasonal"": ""25%""}",15834,1,Asia +2023-08-19,34017,7062,"[""Laptop"", ""Keyboard"", ""Monitor""]",3717.4,"{"""": ""14%""}",159122,1,North America +2023-12-04,34018,857,"[""Keyboard""]",4797.42,"{""loyalty"": ""20%""}",14348,0,Asia +2024-04-14,34019,6029,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1334.07,"{""promo"": ""13%""}",284817,0,North America +2024-08-04,34020,8445,"[""Monitor""]",1324.25,"{"""": ""14%""}",8604,0,Europe +2024-04-02,34021,3162,"[""Keyboard"", ""Charger"", ""Headphones""]",2902.62,{},157669,1,Asia +2024-08-29,34022,7675,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2437.15,{},209839,1,South America +2023-03-07,34023,6787,"[""Wireless Mouse"", ""Phone""]",917.94,"{"""": ""22%""}",143835,1,Asia +2023-11-09,34024,2447,"[""Charger"", ""Phone""]",4231.61,"{""loyalty"": ""19%""}",11895,0,Africa +2024-04-13,34025,3486,"[""Tablet""]",2228.96,{},52177,1,North America +2023-01-16,34026,9024,"[""Tablet""]",3756.45,{},40254,0,South America +2024-08-25,34027,5818,"[""Laptop"", ""Charger""]",464.06,"{""promo"": ""18%""}",137852,1,Europe +2023-04-19,34028,4582,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",217.52,{},170716,1,South America +2024-01-14,34029,6963,"[""Wireless Mouse"", ""Monitor""]",635.71,{},92330,1,Asia +2023-05-01,34030,8837,"[""Tablet"", ""Charger""]",3834.16,"{""seasonal"": ""13%""}",130872,0,Asia +2023-12-04,34031,5387,"[""Monitor"", ""Laptop""]",4686.44,{},139742,1,Africa +2023-09-26,34032,2051,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2285.35,"{""promo"": ""28%""}",287716,0,North America +2023-09-03,34033,5151,"[""Headphones""]",1126.49,"{""promo"": ""20%""}",104732,0,Europe +2023-03-12,34034,7206,"[""Tablet"", ""Laptop"", ""Headphones""]",2346.31,{},228898,1,Europe +2023-03-22,34035,2214,"[""Tablet"", ""Monitor"", ""Charger""]",2191.39,"{""loyalty"": ""14%""}",175433,1,Europe +2023-09-30,34036,1980,"[""Monitor"", ""Charger""]",540.86,{},178292,1,South America +2024-10-08,34037,1999,"[""Laptop"", ""Headphones""]",2762.09,"{"""": ""30%""}",171328,0,Europe +2023-10-06,34038,1503,"[""Headphones"", ""Monitor""]",442.95,"{""promo"": ""6%""}",137835,1,North America +2023-10-12,34039,9336,"[""Tablet""]",3015.47,{},177802,1,Africa +2023-11-15,34040,5897,"[""Phone"", ""Tablet"", ""Laptop""]",262.75,{},259777,1,Asia +2023-11-01,34041,9932,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2134.83,"{""loyalty"": ""18%""}",11272,1,South America +2024-11-18,34042,2306,"[""Keyboard"", ""Monitor"", ""Laptop""]",4059.03,"{""seasonal"": ""21%""}",114030,1,Asia +2023-01-22,34043,9760,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3540.1,{},247530,1,Africa +2024-06-29,34044,3468,"[""Tablet""]",2469.06,{},276230,0,Europe +2023-04-02,34045,9326,"[""Headphones"", ""Tablet"", ""Keyboard""]",1967.69,"{"""": ""21%""}",259945,1,South America +2024-01-07,34046,4566,"[""Keyboard"", ""Phone""]",4630.25,{},126273,1,Africa +2024-06-20,34047,4,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2986.86,"{""promo"": ""5%""}",106598,0,Africa +2024-07-02,34048,2845,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4220.47,"{""loyalty"": ""7%""}",10045,0,Europe +2023-08-01,34049,8376,"[""Tablet""]",680.19,{},78444,0,Asia +2023-12-03,34050,7569,"[""Keyboard"", ""Monitor""]",1778.96,{},292768,1,Africa +2023-12-25,34051,2447,"[""Keyboard"", ""Tablet"", ""Monitor""]",1761.91,"{""seasonal"": ""14%""}",73189,1,North America +2023-03-14,34052,6611,"[""Tablet""]",4305.02,"{"""": ""12%""}",184189,0,Europe +2023-06-17,34053,4288,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2282.53,{},63011,0,South America +2024-08-04,34054,2761,"[""Charger"", ""Wireless Mouse""]",3557.68,"{"""": ""26%""}",280244,1,Asia +2023-10-19,34055,177,"[""Tablet"", ""Keyboard""]",3537.44,{},29454,0,South America +2023-12-22,34056,3905,"[""Keyboard""]",1008.73,{},143620,1,Europe +2023-10-21,34057,3944,"[""Tablet""]",1564.76,"{""loyalty"": ""24%""}",104536,1,North America +2023-07-17,34058,2730,"[""Laptop""]",323.66,"{""promo"": ""11%""}",288013,1,South America +2024-07-21,34059,3465,"[""Charger""]",3102.52,"{""promo"": ""27%""}",255694,1,Europe +2024-12-15,34060,1970,"[""Laptop""]",1196.41,{},38911,1,Africa +2023-12-03,34061,336,"[""Laptop"", ""Tablet""]",615.52,"{"""": ""26%""}",89514,0,Africa +2024-07-16,34062,7283,"[""Laptop"", ""Phone"", ""Charger""]",3687.81,{},94420,0,North America +2024-08-28,34063,2134,"[""Charger"", ""Laptop""]",213.76,"{""promo"": ""26%""}",255024,0,Africa +2023-02-11,34064,5897,"[""Wireless Mouse"", ""Charger""]",129.9,{},220261,0,South America +2023-06-13,34065,6796,"[""Keyboard"", ""Tablet"", ""Laptop""]",1666.19,{},273465,0,Europe +2023-07-15,34066,8590,"[""Headphones""]",2973.15,{},40420,0,South America +2023-10-04,34067,1096,"[""Laptop""]",1198.97,"{""seasonal"": ""21%""}",87546,0,Europe +2024-07-01,34068,4984,"[""Tablet"", ""Monitor"", ""Phone""]",2542.54,"{""promo"": ""11%""}",22021,0,Asia +2024-06-20,34069,9755,"[""Keyboard""]",584.54,{},265437,0,Asia +2024-04-27,34070,5204,"[""Laptop"", ""Keyboard""]",3792.73,"{""loyalty"": ""9%""}",67793,1,Asia +2024-07-17,34071,2590,"[""Charger"", ""Monitor"", ""Tablet""]",2823.67,"{""seasonal"": ""17%""}",12020,0,North America +2024-09-14,34072,1125,"[""Charger"", ""Phone"", ""Keyboard""]",4101.65,"{"""": ""30%""}",177342,1,Europe +2023-07-25,34073,3429,"[""Tablet"", ""Charger""]",3342.07,"{""loyalty"": ""7%""}",199382,0,North America +2023-12-30,34074,8358,"[""Phone""]",206.86,"{""loyalty"": ""8%""}",70211,1,Africa +2023-11-03,34075,1249,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3869.92,{},257001,1,Europe +2024-02-01,34076,9793,"[""Monitor""]",4552.53,"{""seasonal"": ""8%""}",224273,1,Asia +2023-10-30,34077,3728,"[""Headphones""]",4405.27,{},118959,1,South America +2023-11-17,34078,960,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4403.29,{},252505,1,North America +2023-01-07,34079,1783,"[""Charger""]",2667.73,{},232770,1,Africa +2024-03-03,34080,4940,"[""Phone"", ""Laptop""]",4072.08,{},288593,1,North America +2024-01-16,34081,2775,"[""Headphones""]",3194.76,{},226289,1,Europe +2024-01-20,34082,813,"[""Phone""]",4169.31,{},248109,1,Europe +2024-01-25,34083,1908,"[""Phone"", ""Charger"", ""Headphones""]",3869.89,"{""seasonal"": ""21%""}",44637,1,Africa +2023-11-11,34084,7752,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3541.1,{},26721,1,North America +2024-10-07,34085,9309,"[""Keyboard""]",1230.59,{},251717,1,South America +2024-01-15,34086,4736,"[""Phone"", ""Charger"", ""Headphones""]",2937.8,"{""promo"": ""16%""}",65060,1,Africa +2024-06-22,34087,4568,"[""Monitor"", ""Laptop""]",825.04,"{""loyalty"": ""18%""}",123029,1,South America +2024-01-04,34088,6479,"[""Keyboard"", ""Monitor"", ""Tablet""]",2064.72,{},111860,0,North America +2024-07-26,34089,9434,"[""Monitor""]",1122.69,{},241675,0,North America +2023-09-27,34090,2311,"[""Phone""]",1638.15,"{"""": ""28%""}",15708,0,South America +2024-09-07,34091,1898,"[""Laptop"", ""Wireless Mouse""]",1686.19,{},193220,0,Africa +2024-06-03,34092,8789,"[""Phone""]",4116.76,{},268290,1,South America +2024-10-18,34093,6982,"[""Wireless Mouse""]",2652.8,"{""promo"": ""18%""}",239450,1,North America +2023-12-16,34094,1451,"[""Phone"", ""Monitor"", ""Charger""]",4847.82,"{""promo"": ""8%""}",42489,0,Asia +2023-10-31,34095,3999,"[""Headphones"", ""Monitor"", ""Tablet""]",3692.89,{},25792,0,Europe +2023-11-21,34096,8715,"[""Headphones"", ""Tablet""]",4015.42,{},134671,1,Africa +2024-08-31,34097,1095,"[""Keyboard""]",3090.47,"{""promo"": ""13%""}",106624,0,Africa +2024-10-10,34098,2152,"[""Keyboard"", ""Wireless Mouse""]",1371.6,"{""promo"": ""16%""}",145054,0,Africa +2023-12-04,34099,6832,"[""Monitor"", ""Phone"", ""Tablet""]",3961.32,{},27702,1,North America +2023-02-19,34100,8633,"[""Wireless Mouse"", ""Monitor""]",3945.03,"{"""": ""24%""}",84640,0,North America +2023-12-28,34101,8767,"[""Phone""]",705.33,{},200160,1,South America +2023-12-06,34102,1721,"[""Tablet""]",1937.22,{},37262,1,Africa +2024-11-26,34103,8161,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2184.94,"{"""": ""8%""}",176638,0,South America +2024-02-14,34104,3230,"[""Phone""]",2377.81,"{""seasonal"": ""7%""}",93934,0,Africa +2023-06-07,34105,2914,"[""Charger"", ""Keyboard"", ""Headphones""]",1563.07,"{""promo"": ""30%""}",96362,0,South America +2024-01-04,34106,200,"[""Monitor"", ""Tablet""]",479.19,"{"""": ""22%""}",240843,1,North America +2024-08-14,34107,8285,"[""Laptop"", ""Keyboard"", ""Tablet""]",1130.53,{},91407,0,South America +2024-08-22,34108,1796,"[""Phone"", ""Charger""]",3375.46,"{""promo"": ""24%""}",139134,0,North America +2024-11-17,34109,9852,"[""Phone"", ""Laptop""]",3174.67,{},133291,1,South America +2023-04-12,34110,6212,"[""Monitor""]",1415.44,"{"""": ""13%""}",276007,0,North America +2024-02-28,34111,8380,"[""Tablet"", ""Headphones""]",748.21,{},181202,0,Asia +2023-09-29,34112,9418,"[""Wireless Mouse""]",4865.67,{},200815,1,Africa +2024-05-05,34113,7999,"[""Monitor""]",984.59,"{""loyalty"": ""29%""}",29916,1,Asia +2023-06-22,34114,40,"[""Phone""]",475.16,"{"""": ""29%""}",98290,1,North America +2024-05-15,34115,1436,"[""Keyboard""]",2960.39,"{""seasonal"": ""17%""}",102545,1,Asia +2023-04-04,34116,426,"[""Keyboard""]",4859.88,"{""seasonal"": ""14%""}",240466,1,South America +2023-05-05,34117,688,"[""Wireless Mouse""]",272.73,"{""loyalty"": ""24%""}",126602,1,Africa +2023-04-28,34118,2479,"[""Monitor"", ""Charger""]",1773.84,{},22044,0,Africa +2024-05-14,34119,6234,"[""Keyboard"", ""Headphones""]",2906.47,"{""promo"": ""17%""}",239534,0,South America +2024-04-21,34120,5283,"[""Charger"", ""Headphones""]",454.7,"{"""": ""20%""}",77128,1,Africa +2024-07-20,34121,7047,"[""Monitor"", ""Phone""]",1071.35,"{"""": ""29%""}",19702,1,Europe +2023-08-29,34122,6393,"[""Wireless Mouse""]",3933.03,{},293675,1,Asia +2024-12-22,34123,125,"[""Charger"", ""Monitor""]",914.45,"{""seasonal"": ""20%""}",281062,0,North America +2024-06-04,34124,4149,"[""Charger"", ""Keyboard"", ""Monitor""]",2398.07,"{""loyalty"": ""17%""}",57981,1,North America +2023-03-05,34125,4939,"[""Tablet"", ""Monitor""]",1460.23,{},42332,1,Africa +2023-03-03,34126,9346,"[""Tablet""]",2941.1,{},199134,1,North America +2023-11-12,34127,3126,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1491.07,{},1023,0,South America +2023-02-24,34128,3875,"[""Tablet"", ""Headphones""]",345.85,{},65568,0,Africa +2023-06-02,34129,2922,"[""Tablet""]",4330.04,"{""promo"": ""7%""}",204375,0,Europe +2024-06-07,34130,629,"[""Charger"", ""Wireless Mouse""]",3693.26,"{"""": ""19%""}",50267,0,Europe +2024-10-16,34131,5214,"[""Keyboard"", ""Monitor""]",1682.54,{},82894,1,South America +2023-03-29,34132,3638,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2999.53,{},26869,0,South America +2023-04-29,34133,1664,"[""Headphones""]",3069.01,"{"""": ""20%""}",234359,0,North America +2024-04-20,34134,383,"[""Monitor"", ""Tablet""]",3412.72,"{"""": ""11%""}",96375,0,South America +2023-01-16,34135,2580,"[""Wireless Mouse"", ""Tablet""]",190.56,{},166714,0,South America +2023-03-07,34136,8267,"[""Wireless Mouse"", ""Charger"", ""Phone""]",614.76,{},55963,1,South America +2023-07-29,34137,9085,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2421.02,{},291515,1,Africa +2023-07-18,34138,4451,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2593.87,{},188387,0,North America +2023-07-23,34139,135,"[""Wireless Mouse""]",4845.02,{},29907,0,North America +2023-06-13,34140,5560,"[""Monitor"", ""Phone""]",3067.19,"{""promo"": ""11%""}",219018,1,Europe +2023-05-02,34141,7355,"[""Laptop"", ""Phone"", ""Keyboard""]",1295.23,"{""promo"": ""16%""}",93783,1,Europe +2024-06-02,34142,6397,"[""Headphones""]",858.86,"{"""": ""11%""}",173552,1,North America +2024-04-26,34143,3646,"[""Phone"", ""Monitor"", ""Headphones""]",2193.18,{},69511,0,Europe +2024-01-08,34144,7468,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1444.12,{},212208,0,South America +2023-06-11,34145,141,"[""Wireless Mouse""]",591.74,{},59250,0,North America +2024-08-20,34146,884,"[""Headphones""]",727.79,{},265537,0,Europe +2024-01-18,34147,9071,"[""Monitor"", ""Keyboard""]",4505.88,"{"""": ""23%""}",79537,0,Africa +2023-01-23,34148,4236,"[""Charger"", ""Headphones"", ""Keyboard""]",2284.63,{},119155,1,Africa +2023-11-20,34149,7415,"[""Headphones""]",3409.73,"{""loyalty"": ""18%""}",236938,1,North America +2023-09-10,34150,7710,"[""Phone"", ""Wireless Mouse""]",3845.27,"{""promo"": ""7%""}",245788,0,Asia +2023-05-21,34151,3472,"[""Keyboard"", ""Headphones""]",4333.37,"{""seasonal"": ""17%""}",80692,1,Europe +2023-03-24,34152,9700,"[""Monitor""]",3628.72,{},8333,0,North America +2024-02-28,34153,4829,"[""Wireless Mouse"", ""Charger"", ""Phone""]",196.41,{},230904,1,Europe +2024-12-14,34154,4716,"[""Laptop""]",578.19,{},178164,1,Europe +2023-03-28,34155,2920,"[""Keyboard"", ""Tablet""]",2088.54,{},80591,1,Europe +2024-10-29,34156,6242,"[""Charger"", ""Headphones"", ""Monitor""]",1666.81,{},62141,1,Africa +2024-12-28,34157,2990,"[""Laptop""]",731.62,"{""seasonal"": ""10%""}",18209,0,Africa +2023-04-27,34158,2174,"[""Tablet"", ""Wireless Mouse""]",3592.14,"{""promo"": ""9%""}",25362,1,South America +2023-01-28,34159,1051,"[""Charger"", ""Phone""]",4628.21,"{"""": ""22%""}",235922,1,North America +2023-01-02,34160,4464,"[""Monitor""]",67.84,{},146030,0,Europe +2023-02-17,34161,3352,"[""Tablet"", ""Wireless Mouse""]",2690.91,{},242790,0,Asia +2023-08-14,34162,8293,"[""Charger""]",4207.64,{},232854,0,Africa +2023-02-07,34163,6613,"[""Tablet"", ""Phone""]",1240.87,"{""promo"": ""16%""}",122735,0,North America +2024-11-28,34164,3616,"[""Monitor""]",800.18,{},227344,1,South America +2024-09-28,34165,8230,"[""Monitor""]",2330.97,{},69657,1,Europe +2024-02-25,34166,3440,"[""Monitor"", ""Laptop""]",659.19,"{""seasonal"": ""19%""}",148971,0,Europe +2024-04-13,34167,4598,"[""Keyboard""]",1504.26,"{""seasonal"": ""18%""}",82656,1,Europe +2024-01-04,34168,5558,"[""Charger"", ""Keyboard"", ""Monitor""]",4752.93,{},198130,1,North America +2024-02-07,34169,5964,"[""Headphones"", ""Phone"", ""Tablet""]",4183.66,{},155025,1,North America +2024-10-07,34170,3973,"[""Tablet"", ""Laptop"", ""Headphones""]",2168.34,"{""promo"": ""5%""}",211415,0,Africa +2024-09-21,34171,1177,"[""Monitor""]",1473.3,{},282565,1,Africa +2023-04-30,34172,5890,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2721.0,"{""seasonal"": ""19%""}",46150,0,South America +2024-05-27,34173,8944,"[""Charger"", ""Monitor"", ""Keyboard""]",4307.8,{},242190,1,Africa +2024-06-23,34174,1596,"[""Phone""]",4068.19,"{"""": ""27%""}",201447,1,Asia +2024-09-26,34175,1830,"[""Phone"", ""Monitor""]",2330.51,"{""loyalty"": ""13%""}",216498,1,Africa +2024-12-21,34176,7882,"[""Keyboard""]",422.34,{},8430,1,Europe +2024-04-07,34177,6846,"[""Headphones"", ""Keyboard""]",2125.23,"{""loyalty"": ""30%""}",266715,1,South America +2023-06-24,34178,1545,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3308.25,"{""seasonal"": ""11%""}",16412,1,Europe +2024-09-28,34179,9816,"[""Charger"", ""Keyboard""]",3100.01,{},244588,0,North America +2024-04-05,34180,2719,"[""Monitor""]",3967.69,"{""promo"": ""18%""}",291007,0,Europe +2024-01-16,34181,8362,"[""Headphones"", ""Wireless Mouse""]",605.95,"{"""": ""14%""}",211356,1,North America +2024-11-15,34182,2831,"[""Keyboard"", ""Monitor"", ""Charger""]",1053.76,{},104245,0,Africa +2024-12-16,34183,1923,"[""Headphones""]",842.44,{},110065,1,Europe +2024-03-06,34184,3720,"[""Laptop"", ""Charger"", ""Phone""]",1236.13,"{""promo"": ""13%""}",8430,1,Europe +2023-11-25,34185,297,"[""Monitor""]",1531.26,{},20425,0,Asia +2023-05-29,34186,1730,"[""Keyboard""]",3237.49,"{"""": ""5%""}",111720,0,Africa +2024-05-30,34187,3987,"[""Tablet""]",2308.69,{},4566,0,Asia +2023-07-19,34188,4936,"[""Phone"", ""Charger""]",4610.09,{},267243,1,North America +2024-02-15,34189,9540,"[""Monitor"", ""Laptop""]",232.63,{},140457,1,North America +2023-02-15,34190,1964,"[""Tablet"", ""Wireless Mouse""]",1880.39,{},148268,0,Africa +2023-04-19,34191,8672,"[""Phone""]",2440.72,{},180514,1,Africa +2023-11-26,34192,6949,"[""Keyboard"", ""Tablet""]",2231.07,"{""seasonal"": ""27%""}",161432,0,Asia +2024-08-05,34193,5734,"[""Laptop"", ""Monitor""]",1407.93,{},9562,1,Europe +2023-07-08,34194,8273,"[""Charger"", ""Laptop"", ""Tablet""]",2446.78,{},220225,0,North America +2023-04-17,34195,3968,"[""Phone"", ""Wireless Mouse""]",3536.67,"{""seasonal"": ""14%""}",214616,0,North America +2023-10-28,34196,8629,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",878.2,"{"""": ""18%""}",59553,1,Europe +2023-01-13,34197,3711,"[""Charger""]",4696.82,{},20042,0,Africa +2024-08-03,34198,7693,"[""Monitor"", ""Headphones""]",3273.1,{},7144,1,Africa +2024-10-30,34199,9559,"[""Tablet""]",2786.91,"{""loyalty"": ""16%""}",102470,1,Europe +2023-07-12,34200,2597,"[""Tablet"", ""Keyboard"", ""Laptop""]",3121.21,{},197631,0,Europe +2024-01-02,34201,2980,"[""Charger""]",2265.5,"{""loyalty"": ""20%""}",281774,1,South America +2023-12-18,34202,3995,"[""Tablet"", ""Wireless Mouse""]",3572.14,"{"""": ""6%""}",180863,0,Asia +2023-01-17,34203,8940,"[""Phone""]",1624.47,{},238721,1,Africa +2024-04-17,34204,4960,"[""Headphones"", ""Wireless Mouse""]",4016.82,"{""promo"": ""15%""}",296617,1,Europe +2024-01-01,34205,8055,"[""Phone"", ""Charger"", ""Keyboard""]",1737.39,"{""loyalty"": ""15%""}",32755,1,South America +2023-08-14,34206,4892,"[""Tablet"", ""Keyboard""]",4191.96,"{""promo"": ""29%""}",209167,0,South America +2024-03-17,34207,9165,"[""Charger"", ""Keyboard""]",2308.0,"{""seasonal"": ""20%""}",275573,1,Europe +2024-02-28,34208,9499,"[""Charger"", ""Laptop""]",185.9,"{""seasonal"": ""19%""}",182536,1,Europe +2024-12-08,34209,7152,"[""Monitor"", ""Phone""]",2156.58,"{""promo"": ""21%""}",264572,0,Europe +2023-12-24,34210,3768,"[""Phone"", ""Monitor"", ""Charger""]",3863.09,{},110946,0,Europe +2024-04-05,34211,3487,"[""Laptop"", ""Monitor""]",3313.96,{},63226,0,South America +2023-02-13,34212,4513,"[""Keyboard""]",1616.06,{},109926,0,Asia +2024-10-28,34213,5597,"[""Keyboard"", ""Tablet""]",2600.75,"{""promo"": ""30%""}",267714,1,South America +2024-08-07,34214,1615,"[""Keyboard"", ""Tablet"", ""Laptop""]",585.36,{},103522,0,North America +2024-08-26,34215,897,"[""Laptop"", ""Keyboard""]",4107.5,{},124652,1,North America +2024-08-03,34216,114,"[""Wireless Mouse""]",4522.73,{},85198,0,Africa +2024-09-06,34217,5027,"[""Charger"", ""Headphones""]",2188.23,{},133126,1,North America +2024-02-22,34218,2660,"[""Headphones""]",1025.16,{},187989,1,North America +2024-08-05,34219,9495,"[""Monitor"", ""Charger""]",3606.74,"{""promo"": ""5%""}",241357,0,Africa +2024-01-04,34220,4991,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3974.89,{},237878,1,Asia +2023-03-09,34221,9528,"[""Laptop""]",947.91,{},294763,1,Europe +2024-09-04,34222,5130,"[""Charger""]",1513.24,{},34244,0,South America +2023-10-06,34223,9862,"[""Keyboard"", ""Laptop"", ""Headphones""]",4765.59,"{""promo"": ""9%""}",230332,0,Europe +2024-03-21,34224,16,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3368.24,{},172023,1,South America +2023-01-07,34225,598,"[""Phone"", ""Monitor""]",1655.84,"{""promo"": ""10%""}",197875,1,Europe +2023-06-16,34226,1379,"[""Phone"", ""Headphones""]",3466.16,"{""loyalty"": ""29%""}",164806,1,North America +2024-04-30,34227,1035,"[""Charger""]",4593.15,{},248431,0,South America +2023-01-07,34228,1356,"[""Tablet""]",2666.23,"{""seasonal"": ""27%""}",264364,0,Asia +2023-08-24,34229,1640,"[""Headphones"", ""Phone""]",844.35,{},149383,0,Africa +2024-11-11,34230,7581,"[""Keyboard"", ""Laptop""]",326.42,"{""promo"": ""12%""}",221254,1,North America +2024-01-25,34231,3119,"[""Phone"", ""Headphones""]",2807.29,"{""promo"": ""25%""}",180465,1,Asia +2024-04-17,34232,6059,"[""Charger"", ""Wireless Mouse""]",2165.66,"{""seasonal"": ""14%""}",88397,0,Asia +2023-12-16,34233,2732,"[""Headphones"", ""Tablet"", ""Phone""]",4153.41,"{""seasonal"": ""18%""}",31538,1,North America +2023-09-17,34234,8788,"[""Keyboard""]",2287.03,{},162508,1,South America +2024-03-02,34235,8539,"[""Tablet"", ""Keyboard""]",1248.19,{},155659,1,Africa +2024-10-30,34236,4198,"[""Laptop""]",1124.2,{},59565,1,South America +2023-02-08,34237,7209,"[""Tablet""]",3159.62,{},50378,1,South America +2023-09-12,34238,9453,"[""Laptop"", ""Tablet""]",223.74,"{""promo"": ""26%""}",213424,0,North America +2023-06-26,34239,840,"[""Wireless Mouse"", ""Charger""]",3900.75,"{"""": ""13%""}",171873,1,Asia +2024-11-24,34240,2856,"[""Charger"", ""Monitor""]",3910.79,{},106903,0,Africa +2023-04-04,34241,831,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1867.77,"{""seasonal"": ""20%""}",78420,0,Africa +2024-12-13,34242,7900,"[""Charger""]",4297.24,{},177296,0,Africa +2024-12-14,34243,3314,"[""Phone"", ""Wireless Mouse""]",3784.27,"{""promo"": ""26%""}",195159,1,South America +2024-06-03,34244,9488,"[""Headphones"", ""Laptop"", ""Keyboard""]",3276.44,{},292859,1,South America +2024-10-30,34245,2592,"[""Wireless Mouse""]",628.76,{},59273,1,Europe +2024-12-03,34246,8591,"[""Monitor"", ""Phone"", ""Headphones""]",1671.56,"{""loyalty"": ""16%""}",13102,0,South America +2023-02-14,34247,2020,"[""Phone"", ""Headphones""]",3972.8,{},64501,0,Africa +2024-02-12,34248,5307,"[""Wireless Mouse""]",3831.51,{},23829,0,Asia +2024-05-12,34249,1444,"[""Monitor"", ""Phone"", ""Headphones""]",2401.52,{},71060,1,North America +2023-12-16,34250,5312,"[""Phone""]",2853.64,"{""loyalty"": ""18%""}",240073,1,North America +2023-03-11,34251,4895,"[""Phone"", ""Tablet"", ""Keyboard""]",2470.52,"{""seasonal"": ""11%""}",45988,1,South America +2024-01-12,34252,9076,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4012.28,"{""seasonal"": ""23%""}",263606,1,Africa +2024-10-17,34253,9857,"[""Laptop"", ""Keyboard""]",3320.85,{},185217,0,North America +2024-05-27,34254,8261,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4482.5,"{""promo"": ""13%""}",213175,0,North America +2023-04-02,34255,380,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",427.01,"{"""": ""29%""}",96685,1,South America +2024-03-29,34256,2287,"[""Phone"", ""Headphones"", ""Laptop""]",4014.64,{},92709,1,South America +2023-08-09,34257,759,"[""Headphones"", ""Wireless Mouse""]",798.21,"{""seasonal"": ""23%""}",161427,1,South America +2023-09-18,34258,2978,"[""Keyboard"", ""Charger"", ""Headphones""]",784.78,{},16911,1,Africa +2023-08-08,34259,3490,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2428.39,"{""loyalty"": ""28%""}",150830,0,North America +2024-10-06,34260,8021,"[""Phone"", ""Charger""]",2714.05,{},73784,1,Europe +2023-11-08,34261,4705,"[""Monitor""]",1570.75,"{""loyalty"": ""5%""}",15672,0,North America +2024-05-27,34262,6422,"[""Phone"", ""Headphones""]",4692.06,"{"""": ""11%""}",16433,0,North America +2023-12-29,34263,3212,"[""Keyboard""]",1201.64,"{""seasonal"": ""8%""}",39252,1,Asia +2024-02-12,34264,2264,"[""Laptop"", ""Wireless Mouse""]",3989.26,"{""loyalty"": ""25%""}",113013,1,Europe +2023-01-31,34265,1673,"[""Monitor""]",2491.18,"{""promo"": ""22%""}",260369,1,Europe +2023-06-30,34266,1403,"[""Wireless Mouse""]",2080.17,"{"""": ""19%""}",85743,1,North America +2023-05-12,34267,978,"[""Monitor"", ""Phone"", ""Keyboard""]",888.98,"{""promo"": ""27%""}",30631,0,South America +2023-11-30,34268,2924,"[""Monitor""]",1512.62,"{""promo"": ""18%""}",8901,1,Africa +2023-08-18,34269,4865,"[""Keyboard""]",3528.5,{},174889,1,Africa +2023-07-16,34270,583,"[""Tablet"", ""Phone""]",491.82,"{""promo"": ""27%""}",51210,0,Europe +2023-10-22,34271,7010,"[""Keyboard"", ""Tablet"", ""Charger""]",1029.28,"{""promo"": ""17%""}",82517,1,South America +2024-08-08,34272,3837,"[""Wireless Mouse""]",1093.18,{},164477,0,North America +2023-12-25,34273,5562,"[""Tablet""]",654.66,{},243826,1,South America +2023-08-19,34274,5162,"[""Tablet""]",4374.32,"{"""": ""24%""}",187436,0,Europe +2023-05-19,34275,771,"[""Headphones""]",4539.94,"{""promo"": ""13%""}",252715,1,Africa +2024-03-10,34276,9475,"[""Keyboard"", ""Charger"", ""Phone""]",2278.19,{},258771,1,Asia +2024-06-28,34277,6173,"[""Phone"", ""Headphones""]",3599.82,"{""seasonal"": ""29%""}",32526,0,Asia +2024-09-12,34278,1874,"[""Monitor""]",3167.35,"{""promo"": ""6%""}",213407,0,Europe +2023-07-09,34279,5607,"[""Tablet""]",265.94,{},139330,0,Europe +2023-11-15,34280,210,"[""Keyboard""]",1493.77,{},102588,1,Africa +2023-05-26,34281,9273,"[""Phone""]",1164.63,{},239518,0,Africa +2023-01-13,34282,2324,"[""Monitor"", ""Phone"", ""Charger""]",3092.77,{},37255,0,North America +2024-06-03,34283,2858,"[""Wireless Mouse""]",2488.09,{},28820,1,Europe +2023-11-30,34284,5437,"[""Monitor"", ""Phone""]",2375.59,{},127395,1,South America +2024-03-01,34285,437,"[""Keyboard""]",4617.06,{},200075,1,Africa +2023-05-02,34286,8190,"[""Tablet""]",3548.9,{},173908,0,Africa +2024-08-02,34287,5601,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4523.65,"{""loyalty"": ""5%""}",68899,0,North America +2024-12-27,34288,4756,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2885.39,{},215583,0,Asia +2024-02-22,34289,1091,"[""Monitor""]",843.8,"{""loyalty"": ""8%""}",280504,1,South America +2023-01-25,34290,4776,"[""Charger""]",4418.59,{},147930,0,North America +2024-09-11,34291,7446,"[""Tablet"", ""Laptop"", ""Charger""]",1690.89,{},7353,0,North America +2024-03-13,34292,5318,"[""Charger"", ""Tablet""]",389.34,"{""loyalty"": ""22%""}",45076,0,South America +2023-03-01,34293,2591,"[""Laptop""]",3768.0,{},190485,1,Africa +2023-10-16,34294,6364,"[""Monitor"", ""Tablet"", ""Keyboard""]",162.96,{},241567,0,South America +2023-10-09,34295,5981,"[""Monitor"", ""Keyboard"", ""Charger""]",1280.88,{},104590,1,South America +2023-05-10,34296,4408,"[""Keyboard"", ""Phone""]",3423.56,{},98572,1,Africa +2024-10-25,34297,3119,"[""Charger""]",4937.99,{},102235,1,North America +2023-10-24,34298,9519,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",860.16,{},121530,1,Europe +2024-12-30,34299,2382,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2937.27,{},258378,0,North America +2023-02-28,34300,7855,"[""Monitor""]",1584.42,"{""seasonal"": ""19%""}",184230,1,Africa +2024-12-18,34301,7780,"[""Tablet"", ""Monitor"", ""Headphones""]",991.13,{},246626,0,North America +2024-06-04,34302,8165,"[""Keyboard""]",4323.63,{},219910,1,South America +2024-09-25,34303,9879,"[""Charger"", ""Monitor""]",4748.11,{},60043,0,South America +2023-01-17,34304,8368,"[""Wireless Mouse""]",3408.92,{},150211,1,Europe +2023-01-24,34305,4387,"[""Tablet"", ""Wireless Mouse""]",1460.65,"{""promo"": ""7%""}",198968,0,North America +2023-01-22,34306,2839,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1094.66,"{""loyalty"": ""5%""}",243564,1,Asia +2024-09-04,34307,64,"[""Phone"", ""Tablet"", ""Charger""]",3289.94,"{""seasonal"": ""11%""}",78648,0,South America +2024-05-16,34308,9851,"[""Charger"", ""Tablet"", ""Monitor""]",4801.36,"{""seasonal"": ""17%""}",39784,1,Europe +2023-06-08,34309,2513,"[""Wireless Mouse""]",3718.37,"{"""": ""30%""}",263980,1,Africa +2023-02-15,34310,4351,"[""Keyboard"", ""Charger""]",4519.71,"{"""": ""27%""}",5589,0,Asia +2024-11-23,34311,7912,"[""Phone"", ""Headphones""]",1970.49,{},198788,0,Asia +2023-08-08,34312,3732,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1894.18,{},56715,0,Africa +2023-05-18,34313,9885,"[""Laptop"", ""Phone"", ""Monitor""]",1249.0,"{""seasonal"": ""14%""}",19799,1,South America +2024-09-21,34314,6490,"[""Tablet"", ""Headphones""]",1879.28,{},80417,0,Asia +2024-12-05,34315,8927,"[""Keyboard"", ""Tablet"", ""Headphones""]",1588.1,"{""promo"": ""9%""}",262707,0,Europe +2024-10-31,34316,244,"[""Charger"", ""Monitor"", ""Tablet""]",2606.16,{},73735,0,Africa +2023-03-27,34317,1422,"[""Headphones""]",233.55,{},55345,1,South America +2024-04-26,34318,5948,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",963.16,{},134475,0,Asia +2024-02-05,34319,797,"[""Tablet"", ""Charger"", ""Monitor""]",2159.17,{},231564,0,South America +2023-07-16,34320,9004,"[""Wireless Mouse""]",271.99,{},182000,1,Europe +2024-04-08,34321,1974,"[""Phone"", ""Monitor""]",1539.86,"{""promo"": ""27%""}",77037,1,Asia +2024-02-11,34322,2853,"[""Charger"", ""Laptop"", ""Monitor""]",4050.77,"{""loyalty"": ""14%""}",71369,0,Europe +2024-06-30,34323,1157,"[""Phone"", ""Keyboard"", ""Headphones""]",3359.44,{},76933,0,North America +2024-06-20,34324,3083,"[""Wireless Mouse"", ""Keyboard""]",2386.15,{},184852,0,North America +2023-01-06,34325,9328,"[""Keyboard"", ""Monitor"", ""Phone""]",3211.81,"{""promo"": ""12%""}",230072,0,Europe +2023-10-04,34326,3830,"[""Monitor""]",182.81,{},133082,0,North America +2023-02-19,34327,8955,"[""Phone"", ""Headphones""]",2407.94,"{"""": ""26%""}",8053,0,Africa +2024-02-23,34328,4473,"[""Laptop"", ""Tablet"", ""Charger""]",3591.84,{},277184,1,Asia +2024-11-11,34329,25,"[""Wireless Mouse""]",854.7,{},277229,1,Europe +2024-11-08,34330,9058,"[""Charger"", ""Phone""]",3121.34,{},180709,1,South America +2023-04-02,34331,752,"[""Charger"", ""Headphones"", ""Tablet""]",3296.57,"{""loyalty"": ""19%""}",216983,1,North America +2024-03-11,34332,6103,"[""Phone"", ""Keyboard"", ""Charger""]",4170.71,"{""loyalty"": ""19%""}",291089,0,North America +2024-10-08,34333,4936,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4592.81,"{"""": ""13%""}",153186,1,Asia +2023-10-22,34334,1441,"[""Headphones"", ""Laptop""]",1734.8,"{""loyalty"": ""30%""}",178599,0,Africa +2023-07-09,34335,2261,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1983.54,"{""loyalty"": ""14%""}",125860,1,Africa +2024-09-15,34336,3302,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2212.34,{},144991,1,Asia +2024-08-23,34337,2488,"[""Keyboard"", ""Laptop""]",4185.63,"{""seasonal"": ""29%""}",28239,0,Asia +2023-02-15,34338,4757,"[""Charger"", ""Monitor"", ""Laptop""]",2990.18,"{"""": ""25%""}",109148,0,Europe +2024-08-30,34339,314,"[""Charger"", ""Tablet""]",3351.42,"{"""": ""8%""}",58036,0,North America +2023-01-17,34340,3085,"[""Charger""]",1879.12,"{"""": ""5%""}",294206,0,Africa +2023-08-31,34341,6212,"[""Tablet""]",890.71,"{""seasonal"": ""17%""}",79784,1,South America +2024-12-29,34342,8706,"[""Charger""]",1346.41,{},135866,1,Asia +2024-08-15,34343,5632,"[""Headphones""]",3608.0,"{"""": ""28%""}",40396,0,Europe +2024-02-10,34344,5776,"[""Charger"", ""Tablet""]",1391.12,{},111223,0,North America +2024-06-19,34345,6777,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",863.55,"{""loyalty"": ""23%""}",19103,0,South America +2023-04-27,34346,2263,"[""Headphones"", ""Monitor"", ""Charger""]",3775.53,"{"""": ""21%""}",272742,1,South America +2024-06-26,34347,6263,"[""Wireless Mouse"", ""Monitor""]",2939.2,"{"""": ""21%""}",93225,1,South America +2023-03-26,34348,6666,"[""Laptop""]",1421.56,"{""loyalty"": ""17%""}",292998,1,Europe +2024-09-02,34349,473,"[""Wireless Mouse""]",1791.6,"{"""": ""15%""}",170102,0,North America +2023-08-02,34350,8474,"[""Headphones""]",3320.47,"{""loyalty"": ""7%""}",112292,1,Europe +2024-03-16,34351,9421,"[""Monitor"", ""Tablet"", ""Phone""]",3332.54,"{"""": ""20%""}",291278,0,South America +2024-02-17,34352,713,"[""Phone"", ""Wireless Mouse""]",1637.53,"{""promo"": ""27%""}",64053,0,South America +2023-08-27,34353,9283,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2805.65,{},73540,1,North America +2023-02-01,34354,7944,"[""Phone""]",1969.24,{},31642,1,South America +2024-04-12,34355,7623,"[""Monitor"", ""Headphones""]",2914.18,"{""seasonal"": ""26%""}",248393,0,South America +2024-06-04,34356,3934,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1040.52,"{""seasonal"": ""23%""}",289367,1,Europe +2023-07-04,34357,3024,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4983.44,"{"""": ""12%""}",292515,1,North America +2024-04-02,34358,4898,"[""Tablet"", ""Laptop""]",164.14,{},59937,1,Europe +2024-07-29,34359,2106,"[""Keyboard"", ""Charger"", ""Phone""]",1157.22,"{""promo"": ""19%""}",32013,0,Asia +2023-12-24,34360,1276,"[""Keyboard""]",1421.36,{},232655,1,South America +2024-03-09,34361,3078,"[""Wireless Mouse"", ""Monitor""]",861.03,"{""promo"": ""28%""}",222640,1,South America +2023-08-08,34362,8323,"[""Headphones"", ""Laptop""]",4785.08,{},125200,0,Africa +2023-04-05,34363,7072,"[""Wireless Mouse""]",4169.47,"{"""": ""22%""}",279436,1,Asia +2024-06-09,34364,4359,"[""Keyboard"", ""Phone"", ""Charger""]",957.54,{},39728,1,South America +2024-09-19,34365,43,"[""Wireless Mouse""]",1546.18,"{""promo"": ""25%""}",125447,0,Europe +2023-10-16,34366,1990,"[""Charger""]",2995.07,"{""loyalty"": ""28%""}",14034,1,South America +2024-02-25,34367,9918,"[""Wireless Mouse""]",564.79,{},297019,0,South America +2023-04-21,34368,8784,"[""Headphones""]",3114.85,{},288365,0,North America +2023-12-02,34369,1864,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3289.65,{},77254,0,Africa +2023-03-04,34370,8366,"[""Phone"", ""Laptop""]",994.81,{},128112,0,Asia +2024-08-23,34371,158,"[""Charger"", ""Keyboard""]",1501.77,"{"""": ""16%""}",188479,0,Africa +2023-08-12,34372,9494,"[""Headphones"", ""Charger""]",4459.87,{},283694,1,South America +2024-05-12,34373,1539,"[""Monitor""]",304.91,{},160680,0,South America +2024-10-04,34374,4768,"[""Laptop"", ""Keyboard""]",1402.53,{},173422,0,Africa +2024-12-06,34375,2727,"[""Tablet""]",3760.56,"{""seasonal"": ""27%""}",69343,1,Africa +2024-12-20,34376,9278,"[""Headphones"", ""Tablet"", ""Laptop""]",197.71,{},125803,0,Europe +2023-09-03,34377,1721,"[""Phone""]",2993.6,"{""loyalty"": ""10%""}",30801,1,South America +2024-09-15,34378,695,"[""Phone"", ""Keyboard"", ""Charger""]",1582.01,"{""loyalty"": ""29%""}",67386,0,Africa +2023-09-15,34379,9631,"[""Laptop"", ""Tablet"", ""Headphones""]",2825.99,"{"""": ""29%""}",196441,0,Asia +2023-06-30,34380,707,"[""Laptop""]",2472.06,"{"""": ""23%""}",211842,0,North America +2023-08-21,34381,288,"[""Monitor"", ""Phone"", ""Headphones""]",1339.18,{},14838,0,South America +2023-02-04,34382,5679,"[""Charger""]",4739.12,"{"""": ""24%""}",23132,0,North America +2024-11-17,34383,10000,"[""Charger""]",3472.12,{},135728,1,South America +2023-08-04,34384,6837,"[""Monitor"", ""Laptop""]",636.04,"{""promo"": ""11%""}",17052,0,Asia +2023-02-25,34385,2177,"[""Headphones"", ""Laptop"", ""Phone""]",838.75,{},186656,0,North America +2023-07-25,34386,4330,"[""Charger""]",4565.4,"{"""": ""6%""}",276179,0,South America +2024-07-29,34387,8688,"[""Phone""]",3699.33,"{""seasonal"": ""26%""}",177383,0,Asia +2023-01-26,34388,4095,"[""Monitor""]",2115.25,"{""promo"": ""27%""}",135822,0,Europe +2023-02-10,34389,8940,"[""Keyboard"", ""Laptop""]",1077.55,{},18985,0,Asia +2024-09-08,34390,6301,"[""Tablet"", ""Charger"", ""Laptop""]",242.87,{},209437,0,North America +2023-05-11,34391,2521,"[""Monitor"", ""Headphones""]",642.13,"{""seasonal"": ""19%""}",208391,0,Europe +2023-06-21,34392,9051,"[""Monitor"", ""Charger"", ""Laptop""]",4572.27,"{""loyalty"": ""14%""}",225041,0,Asia +2023-12-15,34393,9560,"[""Monitor""]",3345.24,{},143144,0,North America +2024-04-22,34394,8719,"[""Monitor""]",846.81,"{""seasonal"": ""29%""}",123368,0,North America +2023-04-16,34395,5547,"[""Wireless Mouse""]",1796.46,{},58321,1,Asia +2024-06-15,34396,6708,"[""Keyboard"", ""Phone""]",3632.24,{},162417,1,Europe +2023-09-22,34397,1855,"[""Phone""]",234.4,"{""promo"": ""24%""}",187235,1,Africa +2023-04-11,34398,7753,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1135.59,"{""loyalty"": ""28%""}",118103,0,Africa +2023-08-01,34399,2768,"[""Laptop""]",1713.83,"{""seasonal"": ""8%""}",192296,0,South America +2024-06-29,34400,7493,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1433.71,{},18451,1,Africa +2023-04-04,34401,9452,"[""Wireless Mouse"", ""Phone""]",3275.34,{},29108,0,Asia +2024-11-23,34402,5322,"[""Tablet"", ""Monitor""]",1224.69,{},142534,1,North America +2024-08-29,34403,7803,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3410.05,"{""loyalty"": ""7%""}",57821,1,South America +2023-03-12,34404,5666,"[""Monitor""]",4889.18,"{""promo"": ""21%""}",272295,1,Africa +2024-03-08,34405,8626,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",825.64,{},78504,1,North America +2024-12-10,34406,3173,"[""Wireless Mouse"", ""Laptop""]",818.91,{},138893,0,North America +2024-06-30,34407,2035,"[""Laptop""]",3111.48,{},209870,1,South America +2023-03-23,34408,5383,"[""Phone""]",444.47,{},246722,0,Asia +2023-05-22,34409,513,"[""Tablet"", ""Wireless Mouse""]",2169.46,{},222072,1,Asia +2023-10-15,34410,2629,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1400.53,"{""loyalty"": ""21%""}",212119,1,North America +2024-07-21,34411,30,"[""Laptop""]",2829.21,"{""seasonal"": ""23%""}",273997,0,Europe +2024-03-21,34412,1546,"[""Headphones"", ""Tablet"", ""Phone""]",2167.17,{},292086,0,South America +2024-11-11,34413,2027,"[""Keyboard"", ""Laptop"", ""Headphones""]",3212.07,{},108063,0,Africa +2024-06-04,34414,493,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",991.0,{},209656,0,Europe +2023-01-30,34415,1008,"[""Charger"", ""Laptop""]",4069.48,"{""seasonal"": ""30%""}",163608,0,Africa +2024-03-01,34416,9421,"[""Charger"", ""Wireless Mouse""]",4610.5,"{"""": ""15%""}",22504,1,South America +2024-12-16,34417,9367,"[""Headphones""]",2833.97,"{""seasonal"": ""17%""}",25020,0,Africa +2023-06-28,34418,5433,"[""Phone"", ""Laptop"", ""Headphones""]",3988.69,"{""loyalty"": ""29%""}",108015,1,Europe +2023-08-05,34419,5285,"[""Charger"", ""Tablet""]",1044.83,"{""loyalty"": ""17%""}",270647,1,Europe +2023-03-18,34420,8880,"[""Wireless Mouse"", ""Monitor""]",3408.4,{},84608,0,Europe +2023-11-06,34421,349,"[""Laptop""]",2353.03,"{"""": ""12%""}",255220,1,North America +2024-03-02,34422,9576,"[""Charger"", ""Tablet""]",3146.62,"{""seasonal"": ""9%""}",234357,1,Europe +2023-01-07,34423,4598,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4564.11,"{""seasonal"": ""7%""}",162762,1,South America +2024-01-30,34424,7360,"[""Phone""]",1312.96,"{""loyalty"": ""15%""}",273801,1,South America +2024-06-08,34425,6573,"[""Monitor""]",93.81,{},84984,1,North America +2023-04-11,34426,4839,"[""Laptop"", ""Headphones"", ""Charger""]",1128.59,{},253122,0,Asia +2023-04-19,34427,2868,"[""Laptop"", ""Keyboard"", ""Charger""]",3671.08,{},245683,1,Africa +2024-02-24,34428,6907,"[""Charger"", ""Keyboard""]",2117.51,"{""loyalty"": ""11%""}",144897,1,Europe +2024-05-18,34429,6724,"[""Tablet"", ""Monitor"", ""Headphones""]",4153.38,"{""promo"": ""14%""}",50955,1,Africa +2024-02-04,34430,798,"[""Phone""]",1868.52,"{""promo"": ""17%""}",139148,0,Africa +2023-05-05,34431,9769,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4995.12,"{"""": ""20%""}",197576,0,Asia +2024-05-19,34432,7220,"[""Monitor"", ""Tablet"", ""Headphones""]",3126.84,{},256868,1,North America +2023-03-16,34433,3121,"[""Keyboard""]",2943.69,{},263490,0,South America +2024-11-18,34434,6110,"[""Headphones""]",3115.39,{},215459,1,Africa +2024-10-29,34435,53,"[""Headphones"", ""Phone"", ""Charger""]",3266.65,"{""promo"": ""27%""}",206021,0,Europe +2024-04-30,34436,8638,"[""Headphones"", ""Charger""]",677.01,"{""promo"": ""5%""}",11779,1,South America +2024-07-04,34437,53,"[""Monitor"", ""Headphones""]",4202.15,"{""loyalty"": ""7%""}",251120,1,Asia +2024-04-25,34438,120,"[""Phone""]",723.08,"{""promo"": ""22%""}",194251,1,Europe +2024-10-05,34439,3819,"[""Keyboard"", ""Phone""]",1640.73,"{""seasonal"": ""20%""}",2477,1,Africa +2023-09-25,34440,9861,"[""Laptop""]",2177.79,"{""loyalty"": ""16%""}",290381,0,Europe +2024-07-29,34441,6610,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2657.58,"{""promo"": ""9%""}",126566,1,North America +2024-10-12,34442,380,"[""Phone""]",3519.53,"{""promo"": ""5%""}",69721,1,Africa +2024-08-21,34443,4364,"[""Headphones""]",3184.9,"{""loyalty"": ""5%""}",221974,0,North America +2024-10-06,34444,5282,"[""Keyboard"", ""Phone""]",122.2,{},225637,0,Europe +2023-03-04,34445,116,"[""Tablet"", ""Laptop"", ""Keyboard""]",377.36,"{"""": ""8%""}",251358,0,Asia +2023-09-09,34446,5702,"[""Headphones""]",2218.14,"{"""": ""6%""}",282017,1,South America +2024-05-29,34447,471,"[""Phone"", ""Wireless Mouse""]",2425.55,"{""promo"": ""16%""}",66488,0,South America +2023-10-31,34448,4642,"[""Monitor""]",4035.28,{},298005,1,Asia +2023-04-04,34449,2178,"[""Monitor""]",4636.35,"{""promo"": ""21%""}",16420,1,North America +2023-07-07,34450,3027,"[""Headphones"", ""Laptop""]",198.02,"{""seasonal"": ""6%""}",161549,0,Europe +2023-08-20,34451,3895,"[""Headphones"", ""Laptop"", ""Tablet""]",665.73,"{""loyalty"": ""20%""}",276912,1,Europe +2023-06-06,34452,2215,"[""Wireless Mouse""]",571.49,{},237316,0,North America +2024-09-19,34453,5908,"[""Charger"", ""Headphones""]",2833.44,"{""seasonal"": ""29%""}",31061,1,North America +2023-01-07,34454,4795,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2897.14,"{""loyalty"": ""26%""}",175994,1,Africa +2023-11-12,34455,9169,"[""Phone"", ""Keyboard""]",4239.61,"{""seasonal"": ""7%""}",152632,0,South America +2024-09-25,34456,8384,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3168.84,"{"""": ""30%""}",220845,1,Africa +2024-01-02,34457,882,"[""Laptop"", ""Wireless Mouse""]",948.48,{},91346,1,North America +2024-02-07,34458,395,"[""Charger""]",4992.8,{},276753,0,Asia +2024-01-08,34459,7236,"[""Headphones""]",2608.75,"{"""": ""17%""}",2745,1,Europe +2023-08-10,34460,3216,"[""Monitor""]",1297.96,"{""seasonal"": ""5%""}",255622,1,Africa +2024-06-26,34461,6988,"[""Tablet"", ""Phone""]",4556.53,"{""promo"": ""20%""}",286091,0,Asia +2024-09-13,34462,2793,"[""Charger"", ""Tablet"", ""Headphones""]",2839.53,"{"""": ""14%""}",41761,1,South America +2024-04-23,34463,4063,"[""Tablet"", ""Keyboard"", ""Charger""]",2985.02,{},278232,1,Asia +2023-11-11,34464,1177,"[""Headphones"", ""Laptop""]",1879.67,{},270457,0,South America +2024-03-10,34465,4943,"[""Charger"", ""Tablet"", ""Laptop""]",744.87,{},131198,0,Europe +2023-01-10,34466,5384,"[""Charger"", ""Phone"", ""Keyboard""]",1118.96,"{""seasonal"": ""20%""}",263596,0,South America +2023-11-27,34467,3946,"[""Phone"", ""Monitor""]",4638.19,"{"""": ""5%""}",24463,1,Asia +2023-07-08,34468,4535,"[""Tablet"", ""Keyboard""]",4841.4,"{""loyalty"": ""8%""}",200509,0,South America +2024-06-22,34469,2778,"[""Laptop"", ""Phone"", ""Charger""]",4733.66,"{"""": ""7%""}",15003,1,Asia +2024-01-02,34470,6481,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4381.59,"{""seasonal"": ""8%""}",172583,1,Asia +2024-10-03,34471,3576,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4079.1,{},239338,1,Asia +2023-04-11,34472,1391,"[""Charger""]",2078.76,"{"""": ""11%""}",224327,0,South America +2023-03-30,34473,5969,"[""Monitor"", ""Keyboard""]",3747.18,"{""promo"": ""28%""}",44142,0,North America +2023-02-16,34474,6016,"[""Wireless Mouse""]",482.83,"{""promo"": ""21%""}",37085,0,South America +2024-12-12,34475,6858,"[""Charger""]",1571.4,"{""promo"": ""26%""}",219170,1,North America +2023-11-13,34476,9239,"[""Charger"", ""Phone"", ""Tablet""]",1246.52,{},8133,1,North America +2024-12-19,34477,4541,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",386.04,"{""loyalty"": ""13%""}",198315,0,Africa +2024-02-02,34478,4859,"[""Wireless Mouse"", ""Charger""]",4075.34,{},43134,0,Africa +2024-06-24,34479,9230,"[""Phone""]",4606.63,"{""promo"": ""29%""}",140016,0,North America +2023-01-14,34480,9783,"[""Phone""]",968.09,{},16614,1,Europe +2024-12-08,34481,8680,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1405.83,{},103798,0,Asia +2023-11-12,34482,5180,"[""Phone""]",4263.42,{},159222,1,Africa +2023-08-19,34483,3643,"[""Keyboard"", ""Headphones""]",2898.21,"{"""": ""28%""}",139191,1,Africa +2023-03-10,34484,9422,"[""Phone"", ""Tablet"", ""Laptop""]",2549.02,"{""loyalty"": ""26%""}",148516,0,Europe +2024-05-19,34485,7959,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4716.14,{},127258,0,Asia +2024-06-14,34486,4214,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3730.55,"{""seasonal"": ""12%""}",114545,0,Africa +2023-02-20,34487,514,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2009.63,{},205907,0,Europe +2024-06-17,34488,9771,"[""Keyboard"", ""Phone"", ""Monitor""]",3282.48,"{""promo"": ""28%""}",227007,0,Africa +2024-04-02,34489,8695,"[""Headphones""]",2208.08,{},276984,0,South America +2024-09-19,34490,1795,"[""Keyboard"", ""Wireless Mouse""]",3886.94,"{""promo"": ""9%""}",43034,0,South America +2023-09-27,34491,4082,"[""Keyboard"", ""Charger""]",131.71,"{""seasonal"": ""23%""}",297195,1,Asia +2023-10-04,34492,291,"[""Charger""]",300.78,"{""loyalty"": ""9%""}",68380,0,North America +2023-09-09,34493,9234,"[""Wireless Mouse""]",2733.13,{},55833,1,South America +2024-07-22,34494,7518,"[""Laptop""]",1339.56,"{""promo"": ""30%""}",187782,0,South America +2023-09-26,34495,1611,"[""Laptop"", ""Phone"", ""Monitor""]",3031.54,{},245319,1,Asia +2023-02-02,34496,3870,"[""Keyboard"", ""Wireless Mouse""]",1523.81,"{""loyalty"": ""7%""}",23793,1,North America +2023-01-09,34497,1730,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1577.64,"{""loyalty"": ""11%""}",11125,0,North America +2023-05-01,34498,9561,"[""Wireless Mouse"", ""Phone""]",2665.33,"{""seasonal"": ""18%""}",214842,1,North America +2023-05-24,34499,4734,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",957.52,{},151064,0,Africa +2023-03-25,34500,2455,"[""Tablet""]",2010.43,{},113801,0,Asia +2023-09-19,34501,630,"[""Headphones""]",1469.77,"{""loyalty"": ""5%""}",171658,0,Europe +2023-10-08,34502,4292,"[""Phone"", ""Keyboard"", ""Charger""]",4086.75,"{""promo"": ""13%""}",82073,0,South America +2023-08-31,34503,8055,"[""Phone"", ""Keyboard""]",4149.81,{},97737,0,Africa +2024-07-08,34504,408,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",453.22,{},82163,1,North America +2023-04-04,34505,285,"[""Keyboard"", ""Monitor""]",568.84,{},40081,0,South America +2023-07-23,34506,2278,"[""Phone""]",4920.52,{},122767,1,North America +2024-03-23,34507,6571,"[""Monitor"", ""Tablet""]",2977.16,"{""seasonal"": ""26%""}",294761,1,North America +2023-03-14,34508,5147,"[""Headphones"", ""Wireless Mouse""]",2542.51,"{""loyalty"": ""6%""}",86008,1,Africa +2024-03-28,34509,6311,"[""Laptop"", ""Keyboard"", ""Tablet""]",3328.94,{},79887,1,South America +2023-03-30,34510,8217,"[""Tablet"", ""Monitor""]",4013.76,"{"""": ""13%""}",127113,1,Asia +2024-08-08,34511,6171,"[""Wireless Mouse"", ""Headphones""]",4250.51,{},178946,0,Africa +2024-01-23,34512,8994,"[""Wireless Mouse"", ""Headphones""]",2711.43,"{""seasonal"": ""6%""}",10581,1,South America +2024-10-10,34513,3932,"[""Phone"", ""Headphones"", ""Monitor""]",710.26,{},158356,1,Africa +2023-01-11,34514,9356,"[""Phone""]",1997.59,{},212511,1,Asia +2023-02-11,34515,2109,"[""Monitor""]",3045.95,"{"""": ""5%""}",32595,1,South America +2024-09-16,34516,2453,"[""Laptop""]",4940.88,{},273893,1,South America +2023-10-08,34517,8721,"[""Wireless Mouse"", ""Charger""]",3584.9,"{""promo"": ""19%""}",182961,1,South America +2023-10-05,34518,3979,"[""Wireless Mouse"", ""Tablet""]",3781.25,"{""promo"": ""23%""}",248628,0,South America +2023-01-25,34519,6707,"[""Phone"", ""Wireless Mouse""]",2337.85,{},251898,1,Asia +2023-06-20,34520,9133,"[""Keyboard"", ""Monitor""]",1032.5,"{"""": ""20%""}",161564,1,Europe +2023-09-14,34521,4585,"[""Phone"", ""Tablet""]",62.15,{},205882,0,Africa +2023-05-16,34522,3502,"[""Monitor"", ""Laptop"", ""Tablet""]",3690.68,{},94720,0,South America +2023-05-27,34523,6439,"[""Monitor""]",2291.24,"{""seasonal"": ""19%""}",251533,0,Africa +2023-03-31,34524,4976,"[""Laptop""]",254.61,"{"""": ""7%""}",123096,1,South America +2024-04-20,34525,2915,"[""Charger""]",2887.2,"{""promo"": ""13%""}",208400,0,North America +2023-05-06,34526,7730,"[""Keyboard""]",2449.69,"{""seasonal"": ""27%""}",213663,0,South America +2024-05-10,34527,9104,"[""Charger""]",419.04,{},261428,1,South America +2023-01-03,34528,6940,"[""Keyboard""]",567.82,"{""seasonal"": ""26%""}",52634,1,Asia +2023-09-10,34529,8170,"[""Monitor"", ""Charger""]",240.44,"{"""": ""14%""}",161909,0,South America +2023-04-10,34530,669,"[""Monitor""]",2987.84,{},95030,0,Africa +2024-11-02,34531,8977,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3409.08,{},131818,1,South America +2024-06-01,34532,5270,"[""Wireless Mouse"", ""Tablet""]",2001.33,"{""seasonal"": ""9%""}",175202,0,Africa +2024-12-01,34533,6098,"[""Laptop"", ""Charger"", ""Headphones""]",904.77,{},150183,1,Africa +2023-11-26,34534,243,"[""Tablet"", ""Wireless Mouse""]",451.73,{},162791,1,Africa +2024-01-18,34535,5203,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",204.82,{},213859,0,Europe +2023-08-30,34536,6007,"[""Monitor"", ""Keyboard""]",4163.64,{},61661,0,Africa +2023-07-12,34537,2318,"[""Headphones""]",3854.73,"{"""": ""24%""}",165768,0,Africa +2023-06-06,34538,3930,"[""Laptop"", ""Charger"", ""Monitor""]",357.14,{},28326,0,South America +2024-09-27,34539,1471,"[""Wireless Mouse"", ""Monitor""]",198.95,{},178047,0,Asia +2023-01-23,34540,2372,"[""Keyboard"", ""Tablet""]",1540.77,"{"""": ""20%""}",115627,0,Europe +2023-09-18,34541,3756,"[""Charger"", ""Laptop""]",3520.16,"{""promo"": ""19%""}",265235,1,North America +2024-04-22,34542,5455,"[""Keyboard"", ""Charger""]",2123.9,{},158971,0,South America +2024-03-16,34543,1434,"[""Phone"", ""Monitor""]",4189.68,{},102581,0,Asia +2023-09-11,34544,3159,"[""Laptop"", ""Monitor""]",3040.77,"{""promo"": ""7%""}",65717,1,Asia +2023-04-06,34545,1691,"[""Phone""]",977.09,"{"""": ""11%""}",118986,0,Africa +2024-08-24,34546,526,"[""Laptop""]",315.88,"{""loyalty"": ""7%""}",265008,1,Asia +2023-01-13,34547,1567,"[""Keyboard""]",226.84,"{"""": ""27%""}",85484,1,Europe +2024-12-03,34548,9210,"[""Monitor""]",1011.03,"{"""": ""25%""}",57555,0,Europe +2023-04-18,34549,1232,"[""Keyboard""]",725.23,{},10407,0,South America +2024-12-26,34550,5561,"[""Wireless Mouse""]",4913.39,{},51387,0,Europe +2024-11-16,34551,532,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3893.87,{},115735,1,Asia +2024-06-18,34552,3755,"[""Charger""]",767.08,{},55529,0,Africa +2023-04-18,34553,5365,"[""Keyboard"", ""Laptop""]",2767.1,{},246400,0,Europe +2023-10-30,34554,985,"[""Laptop"", ""Phone"", ""Keyboard""]",2995.39,{},169653,0,Europe +2024-10-01,34555,872,"[""Laptop"", ""Tablet""]",4149.57,{},299158,0,North America +2024-09-29,34556,3163,"[""Laptop""]",1040.02,"{""promo"": ""6%""}",78109,0,Africa +2023-05-21,34557,7422,"[""Charger"", ""Monitor"", ""Keyboard""]",1096.87,{},281751,1,Europe +2023-03-15,34558,425,"[""Charger""]",3453.78,"{""promo"": ""6%""}",143673,1,Africa +2023-08-08,34559,2817,"[""Headphones"", ""Wireless Mouse""]",791.57,"{""seasonal"": ""19%""}",217842,1,Europe +2024-05-18,34560,6177,"[""Headphones"", ""Laptop""]",3528.32,{},268622,0,South America +2024-11-23,34561,2178,"[""Tablet""]",4674.68,"{"""": ""29%""}",186407,1,Asia +2023-06-18,34562,677,"[""Headphones""]",4746.59,{},100440,1,Asia +2024-11-05,34563,8522,"[""Phone"", ""Monitor"", ""Keyboard""]",4107.87,{},234753,1,Asia +2024-09-21,34564,1181,"[""Monitor"", ""Laptop""]",3334.42,"{"""": ""18%""}",180628,1,Europe +2024-04-06,34565,2138,"[""Phone"", ""Keyboard"", ""Tablet""]",1951.0,"{""loyalty"": ""24%""}",241765,1,Asia +2024-04-23,34566,9001,"[""Tablet"", ""Keyboard""]",2148.34,"{"""": ""22%""}",147011,1,Africa +2023-12-19,34567,7548,"[""Tablet""]",724.38,{},26095,1,South America +2024-05-25,34568,8302,"[""Phone""]",1121.75,{},245777,1,Asia +2023-10-18,34569,4162,"[""Monitor"", ""Charger"", ""Headphones""]",227.46,"{""promo"": ""16%""}",104958,1,Europe +2023-10-17,34570,9998,"[""Phone"", ""Monitor""]",1236.9,"{""promo"": ""13%""}",258311,1,South America +2024-10-25,34571,3882,"[""Phone""]",4954.89,{},12234,1,Asia +2024-06-30,34572,5080,"[""Laptop"", ""Keyboard""]",2928.73,{},102526,1,South America +2023-12-06,34573,8287,"[""Charger"", ""Monitor""]",190.37,"{""loyalty"": ""10%""}",192752,1,Africa +2023-11-20,34574,1163,"[""Charger"", ""Phone""]",3221.18,"{""promo"": ""11%""}",126621,1,South America +2023-08-02,34575,3251,"[""Headphones"", ""Phone""]",4174.53,"{""loyalty"": ""11%""}",34354,1,Europe +2023-05-16,34576,5613,"[""Headphones""]",4881.65,"{""seasonal"": ""9%""}",153776,0,South America +2023-09-11,34577,2020,"[""Laptop""]",600.55,{},18745,0,Asia +2023-04-19,34578,8501,"[""Headphones"", ""Phone""]",4506.55,"{""promo"": ""12%""}",99006,0,Africa +2024-09-03,34579,3322,"[""Laptop"", ""Keyboard"", ""Charger""]",4116.48,"{""seasonal"": ""26%""}",39753,0,South America +2023-05-24,34580,3921,"[""Keyboard""]",4490.82,{},116766,1,South America +2024-10-23,34581,865,"[""Laptop"", ""Tablet""]",2823.24,{},41689,0,South America +2023-07-02,34582,5279,"[""Monitor""]",3006.54,{},272708,0,Asia +2023-02-06,34583,8093,"[""Monitor"", ""Keyboard""]",2850.93,"{"""": ""29%""}",208030,0,North America +2023-04-18,34584,8772,"[""Phone"", ""Keyboard"", ""Charger""]",3088.26,"{""loyalty"": ""8%""}",34017,0,Europe +2024-02-09,34585,481,"[""Monitor"", ""Headphones""]",1009.16,"{""loyalty"": ""6%""}",258020,0,Asia +2023-11-17,34586,4274,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2761.94,"{""promo"": ""11%""}",211933,1,North America +2024-12-16,34587,8505,"[""Monitor"", ""Keyboard"", ""Charger""]",2820.52,{},249507,0,North America +2023-08-23,34588,9417,"[""Monitor"", ""Laptop""]",927.5,{},89591,1,North America +2023-11-25,34589,745,"[""Headphones"", ""Charger"", ""Phone""]",1448.76,"{""promo"": ""20%""}",163911,0,Africa +2023-03-22,34590,2551,"[""Tablet"", ""Charger""]",352.49,"{""loyalty"": ""9%""}",278229,1,North America +2024-03-06,34591,7850,"[""Keyboard""]",376.09,{},83692,1,South America +2024-08-23,34592,1868,"[""Headphones"", ""Tablet""]",1838.33,{},91839,1,Africa +2024-03-24,34593,4374,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2305.56,"{""loyalty"": ""11%""}",121237,0,Asia +2024-01-26,34594,2058,"[""Charger""]",4128.66,{},39638,0,South America +2023-10-30,34595,4568,"[""Tablet""]",2238.39,"{""loyalty"": ""15%""}",127645,1,South America +2024-03-14,34596,4380,"[""Charger""]",4786.46,{},117717,1,North America +2023-06-14,34597,7978,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4899.84,"{""promo"": ""20%""}",81949,1,Asia +2024-02-03,34598,6366,"[""Headphones""]",2333.45,{},245915,0,North America +2024-04-09,34599,8563,"[""Wireless Mouse"", ""Charger""]",1542.85,{},66617,0,Europe +2024-01-25,34600,1509,"[""Charger""]",3114.98,{},296568,1,Africa +2023-09-06,34601,4471,"[""Charger"", ""Headphones""]",3404.25,{},21666,0,South America +2024-08-14,34602,7932,"[""Phone""]",528.85,{},189607,0,Asia +2023-03-20,34603,9968,"[""Tablet""]",4132.18,"{""loyalty"": ""18%""}",39657,1,Asia +2024-09-25,34604,4636,"[""Laptop""]",2439.43,{},45130,1,Asia +2024-12-07,34605,2202,"[""Tablet"", ""Monitor""]",931.99,{},208414,1,Asia +2024-02-19,34606,6075,"[""Laptop"", ""Phone""]",1095.3,{},246964,0,Africa +2024-12-22,34607,8595,"[""Charger"", ""Laptop""]",4800.22,{},23198,0,South America +2023-10-16,34608,6605,"[""Charger""]",4101.61,"{""loyalty"": ""6%""}",183599,0,Asia +2024-11-24,34609,2396,"[""Keyboard"", ""Tablet""]",1164.51,{},162692,1,Asia +2023-12-09,34610,6795,"[""Headphones"", ""Laptop""]",3069.7,{},79758,0,North America +2023-10-03,34611,5772,"[""Charger"", ""Tablet"", ""Headphones""]",542.55,"{""loyalty"": ""22%""}",37984,1,Africa +2024-04-04,34612,2116,"[""Keyboard"", ""Laptop""]",4427.71,"{""seasonal"": ""10%""}",150156,1,Africa +2024-01-20,34613,7042,"[""Laptop""]",550.35,"{""seasonal"": ""11%""}",198383,0,South America +2024-08-24,34614,8471,"[""Monitor"", ""Tablet"", ""Headphones""]",1107.79,{},141239,1,Asia +2023-07-13,34615,8484,"[""Tablet""]",3198.7,"{""seasonal"": ""11%""}",299135,1,Asia +2023-05-12,34616,6718,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",316.15,{},175632,1,North America +2023-07-14,34617,9856,"[""Headphones"", ""Phone""]",230.19,{},100540,0,South America +2024-02-23,34618,1278,"[""Charger"", ""Keyboard"", ""Tablet""]",4490.23,"{""promo"": ""30%""}",27580,0,Europe +2024-01-24,34619,2743,"[""Laptop""]",3865.0,"{""seasonal"": ""23%""}",209970,0,North America +2024-09-10,34620,225,"[""Tablet""]",506.76,"{""seasonal"": ""11%""}",153734,0,Europe +2024-03-28,34621,4159,"[""Monitor"", ""Headphones""]",2383.07,"{""promo"": ""14%""}",91322,0,South America +2023-10-05,34622,5615,"[""Charger"", ""Laptop""]",2412.06,{},49614,1,Africa +2023-01-28,34623,8061,"[""Headphones"", ""Charger""]",1494.83,"{""seasonal"": ""26%""}",60770,0,North America +2024-12-18,34624,1010,"[""Monitor"", ""Keyboard"", ""Tablet""]",1750.08,"{""seasonal"": ""12%""}",127294,1,South America +2024-06-08,34625,4049,"[""Keyboard""]",2372.64,"{""loyalty"": ""5%""}",155122,1,South America +2024-11-06,34626,5383,"[""Keyboard"", ""Headphones""]",1298.92,{},163968,0,Europe +2024-04-10,34627,371,"[""Phone""]",4873.58,{},264787,0,South America +2023-01-22,34628,5912,"[""Phone"", ""Headphones"", ""Keyboard""]",2843.09,"{""loyalty"": ""18%""}",97956,0,South America +2023-03-15,34629,1256,"[""Laptop"", ""Tablet""]",2564.74,{},194623,0,North America +2024-07-11,34630,1345,"[""Laptop"", ""Monitor""]",1503.65,{},59858,0,South America +2024-10-05,34631,1140,"[""Tablet"", ""Charger"", ""Laptop""]",4975.72,"{""loyalty"": ""22%""}",104069,1,North America +2024-01-15,34632,4891,"[""Laptop""]",2056.62,{},146998,0,Africa +2024-10-19,34633,3006,"[""Keyboard"", ""Monitor""]",93.49,{},295453,0,Africa +2023-12-17,34634,8160,"[""Phone""]",2910.8,{},78147,0,Asia +2023-11-01,34635,8084,"[""Laptop"", ""Charger""]",4718.9,"{""seasonal"": ""24%""}",66794,1,Asia +2024-12-25,34636,9256,"[""Monitor"", ""Charger""]",3624.82,"{""promo"": ""18%""}",114713,1,North America +2024-05-23,34637,4469,"[""Keyboard""]",1974.38,{},291445,0,Africa +2023-08-20,34638,7713,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2984.57,"{""seasonal"": ""14%""}",281280,0,Africa +2023-12-11,34639,2542,"[""Keyboard""]",179.05,"{"""": ""10%""}",78835,1,Europe +2023-06-14,34640,7467,"[""Laptop""]",587.21,"{""loyalty"": ""27%""}",46762,0,Africa +2023-08-19,34641,7861,"[""Charger"", ""Laptop""]",956.57,{},139309,0,South America +2023-04-12,34642,7305,"[""Charger""]",1044.63,"{""promo"": ""12%""}",242595,1,Europe +2023-01-09,34643,3154,"[""Headphones"", ""Keyboard""]",539.44,"{"""": ""22%""}",15331,0,South America +2024-11-02,34644,9613,"[""Laptop"", ""Keyboard""]",371.67,{},99539,1,Asia +2023-02-03,34645,4620,"[""Keyboard"", ""Charger""]",849.05,{},67268,1,North America +2023-02-18,34646,4746,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",999.6,{},188080,1,North America +2023-06-01,34647,1875,"[""Phone"", ""Wireless Mouse""]",123.64,"{"""": ""10%""}",275376,1,South America +2023-01-16,34648,8114,"[""Wireless Mouse""]",2774.33,"{"""": ""20%""}",143857,0,Africa +2023-03-07,34649,3380,"[""Charger"", ""Laptop""]",446.57,{},206966,0,South America +2024-10-20,34650,4515,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2779.76,"{""loyalty"": ""17%""}",177744,1,North America +2023-08-13,34651,9269,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4980.63,"{"""": ""20%""}",214488,0,Europe +2023-08-12,34652,6489,"[""Charger""]",216.21,"{""loyalty"": ""9%""}",31692,1,Europe +2024-12-27,34653,7635,"[""Wireless Mouse""]",1302.17,"{""promo"": ""8%""}",100263,0,Asia +2023-08-10,34654,7459,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2233.88,{},137638,0,Asia +2024-10-07,34655,32,"[""Phone"", ""Laptop""]",2034.53,"{""promo"": ""24%""}",296764,1,Europe +2023-01-14,34656,9888,"[""Monitor"", ""Headphones""]",4782.85,"{""promo"": ""11%""}",143709,1,Asia +2023-03-30,34657,914,"[""Keyboard""]",2794.98,{},128560,0,Asia +2024-12-24,34658,4736,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2658.67,"{""loyalty"": ""12%""}",41281,0,South America +2024-12-22,34659,3912,"[""Charger"", ""Tablet"", ""Keyboard""]",1548.07,{},58241,1,Africa +2024-07-02,34660,3388,"[""Keyboard"", ""Headphones""]",4416.49,"{"""": ""17%""}",59670,0,South America +2023-07-05,34661,5957,"[""Keyboard""]",3936.58,"{""seasonal"": ""24%""}",251940,1,Europe +2023-12-01,34662,8868,"[""Tablet""]",3893.35,"{""seasonal"": ""10%""}",66512,1,Africa +2024-06-19,34663,548,"[""Monitor""]",331.01,"{""loyalty"": ""27%""}",274450,1,Europe +2023-09-20,34664,5333,"[""Laptop"", ""Phone""]",2279.88,"{""loyalty"": ""18%""}",65308,1,Europe +2024-07-31,34665,6009,"[""Wireless Mouse"", ""Charger""]",3738.36,{},100532,1,Africa +2023-05-06,34666,578,"[""Wireless Mouse"", ""Phone""]",1465.55,{},40270,1,Africa +2023-06-15,34667,4698,"[""Headphones"", ""Laptop"", ""Tablet""]",198.06,"{"""": ""24%""}",234014,0,Europe +2023-07-19,34668,7285,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1264.68,"{""seasonal"": ""30%""}",168724,0,Europe +2024-07-17,34669,8975,"[""Phone"", ""Wireless Mouse""]",1746.12,"{""promo"": ""11%""}",60493,1,Asia +2024-03-03,34670,7344,"[""Tablet"", ""Laptop"", ""Headphones""]",1787.64,"{"""": ""16%""}",69777,1,South America +2024-04-17,34671,5807,"[""Keyboard"", ""Headphones"", ""Monitor""]",3597.28,"{""loyalty"": ""7%""}",48143,0,Asia +2023-05-10,34672,7023,"[""Keyboard"", ""Charger"", ""Tablet""]",4949.51,{},155809,1,Asia +2024-11-04,34673,9372,"[""Laptop""]",3315.46,{},232822,1,Africa +2023-12-29,34674,3728,"[""Wireless Mouse""]",496.88,{},151835,1,North America +2024-02-23,34675,7403,"[""Charger"", ""Keyboard"", ""Tablet""]",3516.48,"{""loyalty"": ""21%""}",26708,0,Africa +2023-04-24,34676,2209,"[""Keyboard""]",3456.0,{},230889,0,Europe +2024-10-31,34677,504,"[""Laptop"", ""Phone""]",2103.71,"{""seasonal"": ""12%""}",13250,1,Europe +2023-10-18,34678,3833,"[""Tablet"", ""Headphones""]",1867.57,{},101860,0,North America +2024-05-31,34679,2994,"[""Wireless Mouse""]",697.1,"{""promo"": ""26%""}",58355,1,North America +2024-11-09,34680,7133,"[""Laptop"", ""Monitor""]",2034.56,{},104783,1,South America +2023-06-22,34681,3967,"[""Charger"", ""Monitor""]",954.46,"{""seasonal"": ""5%""}",22745,0,Africa +2023-06-03,34682,1236,"[""Charger"", ""Laptop"", ""Phone""]",1775.75,"{"""": ""11%""}",30204,0,Africa +2023-09-27,34683,3406,"[""Wireless Mouse""]",3944.29,"{"""": ""16%""}",46149,1,Asia +2024-10-01,34684,3518,"[""Tablet"", ""Charger""]",773.53,"{"""": ""15%""}",232840,1,North America +2024-02-02,34685,5048,"[""Laptop""]",4863.46,{},1966,0,South America +2024-07-18,34686,1497,"[""Laptop"", ""Monitor""]",3029.03,{},268466,0,Africa +2023-08-16,34687,5033,"[""Monitor"", ""Tablet""]",1735.21,"{""seasonal"": ""19%""}",224269,0,North America +2024-11-10,34688,7402,"[""Monitor"", ""Charger"", ""Phone""]",2935.1,{},282458,0,North America +2023-04-29,34689,2956,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4399.45,"{"""": ""12%""}",148142,1,Asia +2023-07-01,34690,8636,"[""Keyboard"", ""Headphones""]",2222.24,{},79961,1,Africa +2023-05-23,34691,2151,"[""Phone"", ""Headphones""]",4203.19,{},137613,0,Asia +2023-01-13,34692,4411,"[""Charger"", ""Headphones"", ""Tablet""]",2628.26,"{""promo"": ""26%""}",272932,0,South America +2023-11-12,34693,4522,"[""Headphones"", ""Phone""]",910.67,"{""promo"": ""7%""}",11502,1,North America +2023-03-28,34694,7176,"[""Tablet"", ""Wireless Mouse""]",1835.5,{},75677,1,Africa +2023-01-12,34695,4679,"[""Laptop""]",4662.34,"{""seasonal"": ""10%""}",222465,0,Africa +2023-06-25,34696,3078,"[""Keyboard"", ""Phone"", ""Monitor""]",3701.07,"{""loyalty"": ""19%""}",210643,0,Europe +2024-03-25,34697,6763,"[""Laptop"", ""Headphones"", ""Phone""]",2892.45,{},15659,1,Asia +2024-06-25,34698,2366,"[""Headphones""]",2253.29,"{""seasonal"": ""25%""}",25244,0,South America +2023-02-15,34699,7571,"[""Charger"", ""Laptop"", ""Keyboard""]",2274.24,{},172151,1,Africa +2024-12-31,34700,3244,"[""Phone"", ""Monitor""]",4766.3,"{"""": ""6%""}",128844,0,Asia +2023-11-10,34701,9584,"[""Keyboard""]",852.93,"{""loyalty"": ""16%""}",263760,1,South America +2024-07-06,34702,1969,"[""Phone"", ""Laptop"", ""Headphones""]",3049.01,{},253822,1,Africa +2023-10-27,34703,9761,"[""Phone"", ""Charger""]",4557.32,{},108337,0,Africa +2023-10-24,34704,3491,"[""Laptop"", ""Tablet"", ""Phone""]",798.64,{},26166,0,North America +2023-05-02,34705,273,"[""Tablet""]",587.83,"{""loyalty"": ""5%""}",195527,0,North America +2023-05-21,34706,7881,"[""Headphones"", ""Keyboard""]",2249.78,{},189820,1,North America +2024-09-01,34707,9355,"[""Charger"", ""Laptop"", ""Phone""]",3759.2,"{""loyalty"": ""12%""}",43595,1,North America +2023-01-16,34708,4387,"[""Laptop"", ""Charger"", ""Headphones""]",3304.23,"{""loyalty"": ""21%""}",44146,0,Europe +2023-12-07,34709,1746,"[""Phone"", ""Laptop"", ""Headphones""]",1253.66,{},260306,0,Asia +2023-03-06,34710,2286,"[""Tablet""]",1780.58,{},69544,1,Asia +2023-02-04,34711,4801,"[""Keyboard""]",842.81,"{""seasonal"": ""25%""}",108835,1,South America +2023-01-10,34712,4778,"[""Laptop"", ""Charger"", ""Monitor""]",4505.39,{},136439,0,Europe +2023-08-24,34713,3422,"[""Wireless Mouse"", ""Laptop""]",1458.96,"{""seasonal"": ""15%""}",43919,1,Africa +2024-06-04,34714,9400,"[""Keyboard""]",394.34,{},1406,0,Asia +2024-02-03,34715,634,"[""Keyboard"", ""Monitor""]",3994.24,{},25473,0,Africa +2024-01-27,34716,6422,"[""Phone"", ""Keyboard""]",466.5,"{""promo"": ""30%""}",80308,0,South America +2023-02-15,34717,9999,"[""Headphones""]",3342.34,{},180448,1,Africa +2023-03-24,34718,5030,"[""Wireless Mouse"", ""Phone""]",1424.62,"{"""": ""22%""}",154066,1,North America +2024-05-12,34719,8354,"[""Monitor"", ""Laptop""]",2245.76,{},43028,1,South America +2023-12-18,34720,8792,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4770.47,{},81464,1,Asia +2024-04-21,34721,2090,"[""Headphones"", ""Monitor""]",4005.66,"{""seasonal"": ""16%""}",239279,0,Africa +2024-04-11,34722,2473,"[""Charger"", ""Keyboard""]",1269.21,"{""promo"": ""8%""}",41363,1,North America +2023-07-28,34723,2787,"[""Headphones"", ""Monitor""]",1875.85,{},20853,1,Europe +2024-12-21,34724,7565,"[""Charger""]",745.98,"{""seasonal"": ""28%""}",106784,0,South America +2023-01-17,34725,675,"[""Phone""]",4434.47,{},25387,0,South America +2023-03-15,34726,970,"[""Laptop"", ""Headphones""]",4170.05,{},81675,0,South America +2023-12-01,34727,94,"[""Phone""]",2034.64,"{""seasonal"": ""13%""}",102047,0,North America +2023-09-24,34728,2874,"[""Monitor"", ""Phone""]",618.44,{},204337,1,Africa +2023-08-21,34729,7618,"[""Monitor"", ""Wireless Mouse""]",829.3,"{"""": ""29%""}",225106,1,South America +2023-04-22,34730,3998,"[""Tablet""]",4376.09,{},106325,1,North America +2023-07-15,34731,8607,"[""Keyboard"", ""Phone""]",2202.31,"{"""": ""30%""}",79366,1,North America +2024-09-24,34732,32,"[""Phone"", ""Tablet""]",1002.79,"{""promo"": ""17%""}",11701,0,South America +2024-06-11,34733,8346,"[""Monitor""]",4958.97,"{""seasonal"": ""19%""}",298980,0,Africa +2024-06-05,34734,8905,"[""Headphones"", ""Charger"", ""Phone""]",696.21,"{""loyalty"": ""13%""}",298616,1,North America +2023-02-09,34735,6611,"[""Keyboard"", ""Laptop"", ""Monitor""]",1792.2,{},53308,0,Asia +2023-07-09,34736,8820,"[""Wireless Mouse"", ""Phone""]",1113.37,"{""promo"": ""16%""}",13163,0,North America +2023-02-05,34737,2866,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",889.05,"{""promo"": ""18%""}",225224,1,North America +2024-07-11,34738,4687,"[""Monitor""]",4694.79,{},271853,0,South America +2023-09-23,34739,8298,"[""Keyboard""]",4128.93,"{"""": ""8%""}",274199,0,Asia +2024-01-30,34740,7785,"[""Wireless Mouse""]",3350.32,"{""loyalty"": ""20%""}",117045,1,Africa +2024-02-26,34741,4697,"[""Tablet""]",4196.5,"{""loyalty"": ""24%""}",85002,0,North America +2024-01-06,34742,3968,"[""Tablet""]",3072.82,"{"""": ""30%""}",20535,0,Africa +2023-01-04,34743,6803,"[""Laptop"", ""Phone""]",4244.47,{},101467,0,Europe +2024-07-07,34744,9027,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",298.36,"{"""": ""20%""}",223738,1,Europe +2024-02-16,34745,8461,"[""Wireless Mouse"", ""Charger""]",751.83,{},291064,0,South America +2024-06-10,34746,4190,"[""Headphones"", ""Phone"", ""Charger""]",1017.03,{},228770,0,Asia +2024-10-18,34747,2659,"[""Phone"", ""Tablet""]",633.47,{},244664,0,Asia +2024-07-28,34748,5051,"[""Phone""]",3758.42,{},36988,1,North America +2024-08-09,34749,6363,"[""Tablet""]",2421.93,{},122009,0,North America +2023-07-16,34750,5514,"[""Phone""]",3837.39,"{""loyalty"": ""21%""}",259540,0,North America +2023-02-08,34751,217,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",823.27,"{"""": ""22%""}",100477,0,North America +2023-05-09,34752,9888,"[""Phone"", ""Keyboard"", ""Tablet""]",1396.85,{},251176,1,Europe +2023-07-25,34753,9366,"[""Phone""]",604.98,"{"""": ""19%""}",24601,0,South America +2024-12-21,34754,9788,"[""Keyboard"", ""Headphones""]",3655.92,"{""loyalty"": ""7%""}",114841,1,North America +2023-12-10,34755,3056,"[""Phone""]",2116.87,"{""loyalty"": ""23%""}",114571,1,Asia +2023-08-10,34756,6706,"[""Tablet"", ""Wireless Mouse""]",1690.21,"{""seasonal"": ""7%""}",219362,0,Europe +2023-07-21,34757,8218,"[""Headphones"", ""Monitor"", ""Phone""]",2224.8,{},125944,1,North America +2024-05-13,34758,2897,"[""Wireless Mouse""]",364.05,{},105549,1,Europe +2024-05-22,34759,922,"[""Keyboard"", ""Headphones"", ""Phone""]",1527.22,"{"""": ""24%""}",164159,1,Asia +2023-03-28,34760,2615,"[""Charger""]",1761.37,"{""loyalty"": ""27%""}",270197,1,Africa +2024-12-31,34761,1865,"[""Phone""]",2947.7,"{""promo"": ""24%""}",55990,0,Africa +2023-05-06,34762,7562,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3504.39,"{""promo"": ""10%""}",238480,0,Europe +2024-09-21,34763,8706,"[""Phone""]",3607.11,"{""loyalty"": ""30%""}",53741,1,Africa +2023-02-13,34764,7750,"[""Monitor""]",1616.56,{},17984,1,Asia +2024-01-11,34765,3947,"[""Monitor"", ""Keyboard""]",3049.49,{},197635,0,Europe +2023-08-29,34766,8652,"[""Keyboard""]",3098.18,{},276668,1,Africa +2024-05-12,34767,2484,"[""Keyboard""]",1712.53,{},199964,0,Europe +2023-10-24,34768,4651,"[""Wireless Mouse"", ""Phone""]",465.3,{},98452,1,Africa +2023-11-21,34769,3021,"[""Monitor"", ""Laptop""]",71.39,"{"""": ""16%""}",242544,0,Europe +2023-05-19,34770,1822,"[""Laptop""]",4247.82,{},118581,1,Europe +2023-01-09,34771,931,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4938.78,{},248408,0,Asia +2024-07-31,34772,7097,"[""Phone"", ""Tablet"", ""Keyboard""]",2251.96,"{""promo"": ""8%""}",271775,1,North America +2023-08-15,34773,9866,"[""Monitor"", ""Phone"", ""Headphones""]",1140.55,"{""promo"": ""27%""}",7611,0,Europe +2024-06-21,34774,3500,"[""Tablet"", ""Phone""]",466.71,"{"""": ""10%""}",224698,0,South America +2024-02-29,34775,3065,"[""Headphones"", ""Laptop"", ""Tablet""]",2716.09,{},228343,0,Africa +2023-09-03,34776,9036,"[""Headphones"", ""Keyboard"", ""Tablet""]",4196.66,"{"""": ""23%""}",21564,0,Europe +2023-01-14,34777,5760,"[""Wireless Mouse""]",4167.65,{},103718,1,Asia +2023-08-17,34778,3542,"[""Laptop"", ""Keyboard"", ""Phone""]",3869.45,{},163574,0,North America +2024-05-19,34779,2631,"[""Charger"", ""Monitor""]",1942.78,"{"""": ""26%""}",17862,0,South America +2023-06-06,34780,3877,"[""Keyboard""]",2223.44,{},6735,0,Asia +2023-08-04,34781,644,"[""Phone"", ""Monitor"", ""Keyboard""]",3239.88,{},157949,0,Europe +2023-02-01,34782,7573,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1411.18,"{""promo"": ""6%""}",173072,1,Asia +2023-03-14,34783,1496,"[""Wireless Mouse"", ""Laptop""]",4222.79,"{""promo"": ""26%""}",180566,1,Asia +2024-07-27,34784,606,"[""Laptop"", ""Charger""]",3375.83,{},115102,1,Africa +2024-05-21,34785,6120,"[""Laptop"", ""Monitor""]",3848.96,{},183118,0,Europe +2024-06-12,34786,6206,"[""Laptop""]",1429.74,"{"""": ""22%""}",47982,0,Asia +2024-10-10,34787,7118,"[""Charger"", ""Keyboard""]",1481.94,"{"""": ""9%""}",205260,1,North America +2024-10-27,34788,3432,"[""Tablet""]",2156.81,"{""seasonal"": ""22%""}",148745,0,Europe +2024-06-19,34789,6505,"[""Headphones""]",4855.56,"{""loyalty"": ""25%""}",1156,1,Africa +2023-11-22,34790,6665,"[""Laptop"", ""Charger"", ""Phone""]",1411.24,{},49171,1,South America +2024-04-06,34791,3224,"[""Laptop""]",177.85,{},85906,1,Europe +2024-08-24,34792,8432,"[""Tablet"", ""Charger""]",795.19,"{""loyalty"": ""21%""}",168885,0,Europe +2023-08-27,34793,595,"[""Monitor"", ""Wireless Mouse""]",4348.8,{},112157,0,Asia +2023-04-10,34794,9672,"[""Charger""]",1974.78,"{"""": ""23%""}",201150,1,Africa +2024-04-02,34795,905,"[""Phone"", ""Keyboard""]",2621.79,"{"""": ""28%""}",295812,1,Europe +2023-06-19,34796,4338,"[""Monitor"", ""Keyboard""]",1138.78,{},19914,1,North America +2024-04-24,34797,914,"[""Headphones"", ""Tablet""]",2963.96,"{""promo"": ""13%""}",87100,0,South America +2023-03-04,34798,2379,"[""Charger""]",1687.83,"{"""": ""13%""}",45390,0,Africa +2023-05-29,34799,7437,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1222.53,{},259524,1,Asia +2023-10-03,34800,6148,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3025.2,{},245803,0,South America +2023-06-05,34801,8195,"[""Charger"", ""Headphones""]",1527.71,"{""promo"": ""28%""}",242074,1,Europe +2023-07-28,34802,2084,"[""Keyboard"", ""Monitor"", ""Phone""]",3361.77,"{"""": ""20%""}",239380,0,North America +2024-11-10,34803,2782,"[""Charger"", ""Headphones""]",343.68,"{"""": ""28%""}",243968,1,South America +2023-12-07,34804,147,"[""Laptop"", ""Tablet""]",3641.64,"{"""": ""22%""}",158739,0,Europe +2023-06-19,34805,1186,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4786.05,"{""promo"": ""26%""}",232923,0,North America +2024-09-17,34806,4479,"[""Charger"", ""Laptop"", ""Keyboard""]",1839.35,"{""promo"": ""24%""}",18556,0,Africa +2023-02-26,34807,9903,"[""Tablet"", ""Keyboard""]",4646.53,"{""seasonal"": ""29%""}",250483,0,North America +2023-05-08,34808,7231,"[""Headphones"", ""Laptop"", ""Tablet""]",1443.45,{},9267,1,Africa +2024-02-23,34809,549,"[""Monitor"", ""Phone"", ""Laptop""]",3843.39,"{""promo"": ""13%""}",98624,1,Africa +2023-12-04,34810,1424,"[""Phone"", ""Headphones""]",1776.43,"{"""": ""21%""}",181283,1,Asia +2023-12-17,34811,3421,"[""Keyboard""]",771.31,"{""promo"": ""20%""}",100785,0,South America +2024-12-17,34812,7622,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2627.3,"{"""": ""9%""}",132798,0,North America +2023-01-08,34813,5959,"[""Keyboard"", ""Tablet""]",2885.72,"{"""": ""28%""}",256075,1,South America +2023-04-20,34814,2003,"[""Phone"", ""Tablet""]",3384.44,"{""promo"": ""14%""}",7365,0,Asia +2023-07-30,34815,1615,"[""Charger""]",990.45,{},8388,1,Africa +2024-09-13,34816,3955,"[""Monitor"", ""Tablet"", ""Phone""]",1772.15,"{""seasonal"": ""29%""}",128789,1,North America +2024-11-02,34817,4093,"[""Wireless Mouse"", ""Laptop""]",3200.15,"{""promo"": ""15%""}",7458,1,Africa +2024-04-02,34818,4747,"[""Monitor"", ""Tablet"", ""Laptop""]",1130.3,"{""promo"": ""12%""}",90389,0,North America +2023-08-27,34819,8346,"[""Tablet"", ""Headphones"", ""Keyboard""]",3070.58,"{"""": ""18%""}",33410,1,North America +2023-01-04,34820,5199,"[""Charger""]",4968.58,{},230174,0,North America +2023-01-05,34821,5796,"[""Wireless Mouse"", ""Charger""]",3715.75,{},152395,0,Europe +2023-07-14,34822,5589,"[""Monitor"", ""Laptop"", ""Headphones""]",2210.15,{},199152,1,North America +2024-01-24,34823,6165,"[""Keyboard""]",4402.02,"{""seasonal"": ""22%""}",55534,0,North America +2024-11-03,34824,4282,"[""Monitor"", ""Phone"", ""Charger""]",3099.32,{},1313,0,Africa +2023-07-22,34825,4345,"[""Headphones"", ""Wireless Mouse""]",2483.91,{},87409,1,North America +2023-08-05,34826,7263,"[""Headphones"", ""Laptop""]",58.94,{},275843,1,Europe +2023-10-13,34827,2416,"[""Keyboard"", ""Phone""]",2564.87,"{""promo"": ""22%""}",39280,0,South America +2023-06-12,34828,5575,"[""Keyboard"", ""Laptop"", ""Tablet""]",4202.49,{},253857,1,Europe +2023-11-08,34829,8900,"[""Tablet""]",4220.7,{},130891,1,North America +2023-05-10,34830,1923,"[""Tablet"", ""Charger""]",396.38,"{""seasonal"": ""8%""}",92475,1,South America +2023-04-11,34831,9207,"[""Tablet"", ""Laptop"", ""Phone""]",486.36,{},169368,1,Africa +2024-07-19,34832,4774,"[""Tablet"", ""Charger"", ""Keyboard""]",178.37,{},40847,0,Europe +2023-01-20,34833,4727,"[""Charger"", ""Monitor""]",3889.88,{},194766,1,Asia +2024-07-12,34834,2624,"[""Headphones"", ""Tablet""]",1386.19,"{""loyalty"": ""28%""}",218334,1,Europe +2024-09-18,34835,2649,"[""Keyboard"", ""Tablet""]",3244.57,"{""loyalty"": ""25%""}",200470,0,Africa +2023-04-15,34836,132,"[""Keyboard"", ""Monitor""]",3291.6,"{"""": ""25%""}",63362,0,Asia +2023-11-01,34837,5988,"[""Charger"", ""Headphones""]",1562.53,"{"""": ""29%""}",54420,0,South America +2024-10-09,34838,5643,"[""Keyboard"", ""Wireless Mouse""]",2022.08,"{""promo"": ""6%""}",167434,0,South America +2024-10-15,34839,9280,"[""Monitor"", ""Wireless Mouse""]",4396.29,{},253434,1,Europe +2024-08-20,34840,5646,"[""Keyboard"", ""Monitor""]",4564.26,{},288976,0,Asia +2023-02-18,34841,8573,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3281.28,{},209230,0,South America +2023-03-21,34842,7404,"[""Phone"", ""Keyboard""]",607.02,"{""seasonal"": ""14%""}",46844,0,Africa +2024-08-22,34843,998,"[""Wireless Mouse"", ""Charger""]",3365.34,"{""promo"": ""15%""}",202997,1,Africa +2023-11-07,34844,4015,"[""Keyboard"", ""Headphones""]",3568.66,"{""promo"": ""9%""}",175985,1,South America +2024-12-23,34845,2904,"[""Phone""]",417.86,{},129010,1,Europe +2023-05-03,34846,9898,"[""Keyboard""]",1281.94,"{"""": ""18%""}",10117,0,South America +2024-07-29,34847,8180,"[""Tablet""]",3020.57,{},231811,1,Europe +2023-12-16,34848,7664,"[""Charger""]",4855.53,"{""seasonal"": ""26%""}",250524,0,Africa +2024-01-17,34849,6698,"[""Monitor""]",2941.66,"{""loyalty"": ""21%""}",295676,0,Europe +2023-08-30,34850,6523,"[""Charger"", ""Wireless Mouse""]",2538.88,{},232606,0,Asia +2024-09-18,34851,6746,"[""Phone"", ""Tablet""]",937.05,{},236151,0,Asia +2023-09-21,34852,2317,"[""Phone"", ""Wireless Mouse""]",3546.43,"{"""": ""16%""}",62008,0,Asia +2024-05-21,34853,4664,"[""Keyboard"", ""Wireless Mouse""]",4915.17,"{""seasonal"": ""6%""}",70000,0,Asia +2023-08-14,34854,468,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3557.41,{},58758,0,South America +2023-03-21,34855,1357,"[""Phone""]",3916.3,"{""promo"": ""5%""}",289683,1,South America +2023-04-07,34856,4900,"[""Phone"", ""Monitor""]",1324.72,{},94992,1,Africa +2024-01-27,34857,6437,"[""Laptop"", ""Headphones""]",3058.42,{},56917,1,Asia +2024-08-05,34858,2507,"[""Headphones""]",3779.43,{},197298,0,Africa +2023-11-30,34859,2926,"[""Headphones"", ""Tablet""]",4198.33,"{""loyalty"": ""6%""}",48842,1,North America +2024-04-08,34860,4077,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4999.62,"{""loyalty"": ""23%""}",136253,1,Europe +2023-12-22,34861,4752,"[""Charger"", ""Phone""]",3867.16,"{""loyalty"": ""13%""}",182076,0,South America +2024-07-25,34862,8557,"[""Monitor""]",1060.23,{},249323,0,Africa +2023-08-01,34863,3045,"[""Headphones"", ""Charger""]",2687.98,{},244877,0,Africa +2024-01-23,34864,7162,"[""Keyboard"", ""Charger""]",1041.17,{},42284,0,Asia +2023-02-28,34865,6698,"[""Monitor""]",1570.51,"{"""": ""12%""}",121842,1,Africa +2024-05-29,34866,2486,"[""Keyboard"", ""Monitor""]",1663.74,"{""seasonal"": ""19%""}",263809,1,South America +2023-01-01,34867,1997,"[""Tablet""]",1636.0,"{"""": ""5%""}",250193,0,Asia +2023-06-30,34868,1077,"[""Keyboard"", ""Tablet""]",4654.64,{},43269,1,Europe +2023-09-10,34869,4123,"[""Charger""]",3604.45,{},96055,0,South America +2023-08-17,34870,7016,"[""Phone"", ""Charger""]",3220.79,{},188326,1,North America +2023-12-11,34871,2143,"[""Headphones"", ""Charger"", ""Laptop""]",4634.26,"{""promo"": ""25%""}",168675,0,Asia +2023-06-11,34872,276,"[""Headphones"", ""Phone"", ""Charger""]",539.05,{},227562,0,Africa +2023-12-15,34873,7330,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4342.15,{},176517,1,Asia +2023-04-03,34874,3614,"[""Headphones"", ""Keyboard""]",571.14,"{"""": ""20%""}",19585,0,Europe +2024-02-23,34875,5597,"[""Keyboard"", ""Headphones""]",2939.29,"{""loyalty"": ""8%""}",51929,1,North America +2024-05-26,34876,8128,"[""Keyboard""]",2585.16,{},222488,1,Europe +2024-02-11,34877,5959,"[""Laptop"", ""Charger""]",3014.0,{},235235,0,Africa +2023-06-19,34878,7945,"[""Keyboard"", ""Monitor"", ""Laptop""]",4634.09,"{""loyalty"": ""16%""}",142324,0,Europe +2023-01-22,34879,2258,"[""Wireless Mouse"", ""Phone"", ""Charger""]",254.36,{},93919,0,Asia +2023-03-16,34880,1758,"[""Headphones"", ""Charger""]",865.61,"{""loyalty"": ""23%""}",210621,0,Asia +2023-04-10,34881,4647,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4603.08,{},154066,0,South America +2023-08-15,34882,7604,"[""Tablet"", ""Keyboard"", ""Charger""]",4847.69,{},98938,1,Europe +2024-03-02,34883,6673,"[""Tablet""]",1580.66,{},46850,1,Africa +2023-10-15,34884,5615,"[""Tablet"", ""Headphones"", ""Phone""]",1740.89,{},53907,0,Europe +2024-10-04,34885,4588,"[""Wireless Mouse""]",690.31,{},255611,1,Asia +2023-01-27,34886,7572,"[""Charger"", ""Keyboard"", ""Laptop""]",4665.1,"{""promo"": ""30%""}",223201,1,North America +2024-09-25,34887,8997,"[""Keyboard""]",393.91,"{""loyalty"": ""25%""}",13900,0,South America +2024-12-08,34888,364,"[""Monitor""]",3532.96,"{""promo"": ""25%""}",225506,0,South America +2023-10-28,34889,6216,"[""Phone"", ""Wireless Mouse""]",4992.96,{},228563,1,Asia +2024-01-23,34890,1627,"[""Charger""]",1447.56,{},103533,1,Africa +2023-11-08,34891,6170,"[""Phone""]",380.67,{},136308,1,Europe +2024-06-26,34892,2237,"[""Phone""]",2524.77,"{""loyalty"": ""23%""}",143410,1,Africa +2023-03-01,34893,224,"[""Keyboard"", ""Tablet""]",1649.03,"{""loyalty"": ""13%""}",146445,0,Africa +2023-01-31,34894,9230,"[""Laptop"", ""Headphones""]",3700.27,"{""loyalty"": ""8%""}",86784,1,South America +2023-12-25,34895,3728,"[""Monitor"", ""Keyboard""]",3290.92,{},198935,1,Asia +2023-12-24,34896,7395,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2610.44,"{""loyalty"": ""23%""}",198032,0,Africa +2023-07-02,34897,9225,"[""Wireless Mouse"", ""Charger""]",3750.17,{},7267,1,Asia +2023-01-16,34898,410,"[""Keyboard"", ""Charger"", ""Phone""]",3490.74,"{""loyalty"": ""19%""}",76277,0,Africa +2024-03-12,34899,1281,"[""Phone"", ""Tablet""]",3004.91,"{""loyalty"": ""25%""}",255574,0,Europe +2023-01-18,34900,7609,"[""Charger"", ""Phone"", ""Wireless Mouse""]",873.74,{},78971,0,South America +2023-08-05,34901,1868,"[""Keyboard""]",1501.32,"{"""": ""15%""}",44466,1,Asia +2024-09-24,34902,5883,"[""Tablet""]",2669.59,"{""promo"": ""28%""}",76653,0,North America +2023-09-18,34903,8477,"[""Phone"", ""Keyboard"", ""Headphones""]",510.38,"{""promo"": ""9%""}",260397,0,Asia +2024-09-21,34904,8300,"[""Wireless Mouse"", ""Charger"", ""Phone""]",881.2,{},291189,1,Africa +2024-11-22,34905,675,"[""Charger"", ""Phone"", ""Laptop""]",4984.55,"{"""": ""9%""}",287253,1,Africa +2023-08-23,34906,9258,"[""Monitor""]",4794.41,"{""promo"": ""24%""}",140420,1,Africa +2024-06-04,34907,5704,"[""Wireless Mouse"", ""Charger""]",3684.63,"{"""": ""17%""}",276573,0,Asia +2024-03-20,34908,9794,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1166.54,"{""seasonal"": ""12%""}",284877,1,Europe +2023-11-07,34909,7604,"[""Laptop"", ""Phone""]",212.36,{},1228,1,Europe +2023-12-16,34910,9744,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1288.53,{},269180,0,Asia +2023-06-14,34911,4648,"[""Monitor""]",3550.3,"{""promo"": ""19%""}",53098,0,Europe +2024-06-05,34912,7039,"[""Wireless Mouse""]",1528.14,"{""loyalty"": ""26%""}",234789,1,Europe +2023-06-12,34913,1214,"[""Laptop""]",3997.22,"{""loyalty"": ""20%""}",65713,0,North America +2023-01-06,34914,5578,"[""Laptop"", ""Tablet""]",4181.63,"{""promo"": ""12%""}",152915,0,North America +2024-12-22,34915,2913,"[""Laptop"", ""Charger"", ""Tablet""]",3950.75,"{""loyalty"": ""22%""}",294888,1,Africa +2024-01-19,34916,6161,"[""Keyboard"", ""Tablet""]",2769.03,{},62513,0,Asia +2023-08-23,34917,5541,"[""Phone"", ""Charger"", ""Tablet""]",3109.8,"{""seasonal"": ""9%""}",182913,0,Asia +2023-03-17,34918,8691,"[""Monitor""]",4490.49,{},288757,0,Europe +2023-11-13,34919,3697,"[""Tablet""]",4939.4,"{""promo"": ""6%""}",246048,1,Asia +2023-12-31,34920,8701,"[""Phone""]",669.51,{},123592,0,Africa +2023-09-24,34921,975,"[""Headphones"", ""Keyboard""]",467.45,{},233210,0,South America +2024-01-01,34922,5253,"[""Monitor""]",1723.31,{},140091,0,South America +2024-10-10,34923,7980,"[""Monitor"", ""Keyboard""]",269.56,"{""seasonal"": ""9%""}",159656,0,Africa +2023-01-14,34924,8337,"[""Charger""]",4502.74,{},21219,1,South America +2023-09-24,34925,9765,"[""Keyboard""]",1454.34,"{""promo"": ""10%""}",299039,1,Asia +2024-06-17,34926,1459,"[""Headphones"", ""Laptop""]",2262.66,{},4747,1,North America +2023-10-31,34927,8252,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3120.62,{},200057,0,Asia +2023-01-26,34928,1529,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3162.09,"{""loyalty"": ""29%""}",240935,1,Europe +2023-02-18,34929,6287,"[""Tablet"", ""Keyboard""]",2416.02,"{""promo"": ""9%""}",176394,0,South America +2024-04-07,34930,5271,"[""Charger"", ""Tablet"", ""Keyboard""]",2394.21,{},57975,1,Asia +2024-09-20,34931,1351,"[""Wireless Mouse"", ""Monitor""]",2633.57,"{""promo"": ""30%""}",166218,0,Asia +2024-06-04,34932,6907,"[""Wireless Mouse""]",705.62,{},116183,0,Africa +2023-10-01,34933,5982,"[""Phone"", ""Charger"", ""Tablet""]",2803.61,{},286804,0,Europe +2023-06-28,34934,8985,"[""Charger""]",2049.86,{},109024,1,Asia +2023-07-16,34935,1162,"[""Headphones"", ""Wireless Mouse""]",3843.85,"{""seasonal"": ""18%""}",150211,1,Asia +2023-04-16,34936,7688,"[""Headphones"", ""Tablet""]",4686.96,{},117051,0,South America +2023-08-29,34937,4624,"[""Laptop"", ""Wireless Mouse""]",1277.51,"{""loyalty"": ""30%""}",170238,1,North America +2023-02-23,34938,6362,"[""Headphones"", ""Charger""]",1634.46,{},246665,0,Europe +2024-09-26,34939,7210,"[""Wireless Mouse"", ""Phone""]",445.63,"{"""": ""12%""}",134905,1,South America +2023-08-16,34940,5985,"[""Phone"", ""Tablet""]",1990.63,"{""seasonal"": ""13%""}",234467,0,South America +2023-08-16,34941,5138,"[""Monitor""]",3418.62,{},227869,1,Europe +2024-06-16,34942,8807,"[""Laptop""]",3187.91,{},265135,1,North America +2024-11-10,34943,1846,"[""Tablet""]",1633.29,{},187599,1,Asia +2023-12-10,34944,3289,"[""Laptop"", ""Phone"", ""Headphones""]",2608.97,{},37818,1,Africa +2023-11-01,34945,205,"[""Headphones"", ""Monitor""]",2490.71,{},185097,1,Africa +2024-11-29,34946,3344,"[""Headphones""]",2354.64,"{""loyalty"": ""5%""}",19440,0,Africa +2023-06-25,34947,1639,"[""Tablet"", ""Headphones"", ""Phone""]",3929.1,{},107916,1,Asia +2023-08-31,34948,5457,"[""Phone"", ""Charger""]",2584.49,{},85779,0,North America +2024-06-18,34949,4117,"[""Headphones"", ""Tablet""]",1496.52,"{""seasonal"": ""23%""}",3450,1,Africa +2023-09-27,34950,3558,"[""Wireless Mouse"", ""Keyboard""]",1331.74,{},169788,0,Europe +2024-01-05,34951,5506,"[""Monitor"", ""Tablet"", ""Laptop""]",3676.03,{},65487,0,North America +2023-03-03,34952,8284,"[""Phone""]",4823.25,{},129812,1,Asia +2023-10-03,34953,3306,"[""Monitor"", ""Charger"", ""Laptop""]",2590.08,"{""promo"": ""15%""}",31661,1,North America +2023-02-04,34954,7602,"[""Monitor""]",1480.91,"{""seasonal"": ""25%""}",160507,1,Asia +2023-01-04,34955,6377,"[""Laptop"", ""Charger"", ""Headphones""]",3052.23,"{"""": ""27%""}",43525,1,Africa +2024-01-26,34956,4262,"[""Headphones""]",2036.81,{},149547,1,South America +2023-08-06,34957,3893,"[""Charger""]",626.63,"{"""": ""7%""}",33274,1,North America +2023-10-24,34958,8692,"[""Headphones""]",1648.64,{},183201,0,South America +2023-01-08,34959,63,"[""Tablet"", ""Headphones""]",1803.3,"{""seasonal"": ""20%""}",281743,1,Africa +2024-10-24,34960,6241,"[""Phone""]",4910.23,{},148328,0,Asia +2024-11-20,34961,8317,"[""Wireless Mouse"", ""Keyboard""]",554.0,{},37314,0,South America +2023-04-21,34962,534,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1133.72,"{""seasonal"": ""19%""}",30817,1,North America +2023-04-18,34963,7934,"[""Charger"", ""Tablet""]",3899.85,{},151720,0,Asia +2023-04-03,34964,8744,"[""Laptop"", ""Charger""]",2533.47,"{""seasonal"": ""6%""}",85009,0,North America +2024-06-14,34965,4203,"[""Laptop"", ""Phone"", ""Monitor""]",3585.61,"{""loyalty"": ""9%""}",254693,1,North America +2024-02-16,34966,8631,"[""Headphones"", ""Charger""]",3828.37,{},139410,1,Asia +2024-03-07,34967,9513,"[""Tablet"", ""Phone""]",1174.4,"{"""": ""29%""}",286480,0,Europe +2024-02-07,34968,7009,"[""Laptop"", ""Keyboard""]",4921.01,"{"""": ""29%""}",10969,1,North America +2024-02-25,34969,7816,"[""Keyboard"", ""Tablet"", ""Headphones""]",1919.83,"{""seasonal"": ""7%""}",10947,1,Africa +2024-06-18,34970,3447,"[""Monitor"", ""Headphones"", ""Phone""]",4261.13,"{""seasonal"": ""5%""}",287557,0,Europe +2024-10-16,34971,6430,"[""Charger""]",3945.72,{},192836,1,Asia +2024-03-10,34972,657,"[""Phone"", ""Charger"", ""Monitor""]",1765.01,{},161375,1,North America +2024-03-12,34973,6379,"[""Wireless Mouse"", ""Charger""]",3760.61,{},235308,0,South America +2024-04-19,34974,7189,"[""Phone"", ""Charger""]",684.41,"{""promo"": ""25%""}",149300,1,Europe +2023-06-20,34975,3440,"[""Tablet""]",2151.93,"{"""": ""27%""}",264418,1,Europe +2024-06-10,34976,976,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3129.79,"{""seasonal"": ""21%""}",224323,0,Europe +2024-02-06,34977,4386,"[""Monitor"", ""Headphones""]",3065.14,"{""loyalty"": ""10%""}",71371,1,Asia +2024-06-05,34978,5875,"[""Wireless Mouse"", ""Laptop""]",2613.95,{},39912,1,Europe +2024-08-13,34979,790,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3302.46,{},242039,0,South America +2023-08-30,34980,879,"[""Monitor""]",4185.52,"{"""": ""21%""}",185672,1,Asia +2024-03-12,34981,399,"[""Charger"", ""Headphones""]",1109.78,{},51246,1,Africa +2023-10-24,34982,8012,"[""Phone""]",586.99,"{""seasonal"": ""8%""}",291857,0,Africa +2024-05-27,34983,6196,"[""Tablet"", ""Keyboard"", ""Charger""]",799.68,"{""loyalty"": ""21%""}",263985,0,South America +2023-04-29,34984,9318,"[""Laptop""]",1935.01,{},273539,1,Asia +2023-04-15,34985,4961,"[""Tablet"", ""Laptop""]",4342.47,"{""promo"": ""9%""}",280803,1,South America +2023-04-10,34986,2227,"[""Phone"", ""Keyboard"", ""Monitor""]",3966.13,"{""seasonal"": ""5%""}",114543,1,Africa +2024-11-22,34987,2441,"[""Tablet""]",4499.7,"{""promo"": ""28%""}",275010,0,South America +2023-07-12,34988,3891,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1108.94,{},9654,1,North America +2023-08-16,34989,3809,"[""Headphones"", ""Phone""]",1570.89,"{""promo"": ""16%""}",160468,0,North America +2023-12-14,34990,1834,"[""Keyboard"", ""Headphones"", ""Phone""]",1175.34,"{""promo"": ""7%""}",67110,1,South America +2024-12-21,34991,9512,"[""Tablet"", ""Headphones"", ""Laptop""]",732.53,"{""promo"": ""19%""}",265435,0,Europe +2024-02-26,34992,9175,"[""Wireless Mouse""]",764.46,{},200015,1,North America +2023-11-03,34993,3155,"[""Headphones""]",3088.97,{},297845,1,Asia +2023-11-22,34994,6302,"[""Wireless Mouse""]",526.35,{},247293,0,Africa +2023-02-04,34995,1379,"[""Laptop""]",2235.05,{},147612,1,South America +2023-07-26,34996,9532,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2562.23,{},259406,0,Asia +2024-09-09,34997,7216,"[""Charger""]",2968.06,{},240508,0,South America +2023-06-21,34998,8019,"[""Monitor"", ""Tablet""]",3927.63,"{""seasonal"": ""11%""}",161711,0,South America +2023-01-18,34999,6066,"[""Tablet"", ""Keyboard"", ""Monitor""]",1041.3,"{"""": ""20%""}",165022,1,Asia +2023-02-05,35000,3089,"[""Phone"", ""Keyboard"", ""Monitor""]",4883.93,"{""loyalty"": ""22%""}",203002,0,Africa +2023-02-26,35001,5741,"[""Tablet"", ""Monitor"", ""Laptop""]",1985.69,{},104401,1,North America +2023-06-04,35002,7292,"[""Tablet"", ""Laptop""]",4370.77,{},75559,1,South America +2023-04-21,35003,3518,"[""Charger""]",1930.45,{},106820,1,Europe +2024-09-14,35004,4032,"[""Keyboard"", ""Tablet"", ""Charger""]",1174.59,{},281948,0,Asia +2024-08-24,35005,9102,"[""Keyboard"", ""Charger""]",1746.17,"{""promo"": ""5%""}",141668,1,Asia +2023-07-06,35006,6152,"[""Headphones""]",1165.23,{},227400,0,South America +2024-03-16,35007,5636,"[""Laptop"", ""Phone""]",3391.77,"{""promo"": ""30%""}",60957,1,South America +2024-11-08,35008,7416,"[""Tablet"", ""Wireless Mouse""]",3596.45,"{""promo"": ""9%""}",164614,0,Europe +2023-05-20,35009,3862,"[""Headphones""]",4025.85,"{""loyalty"": ""21%""}",231693,1,South America +2023-03-15,35010,2602,"[""Headphones""]",1969.8,"{""promo"": ""28%""}",28263,0,South America +2023-01-25,35011,8629,"[""Headphones""]",4765.73,"{""loyalty"": ""26%""}",86908,1,Asia +2023-08-04,35012,3792,"[""Tablet"", ""Monitor"", ""Laptop""]",3162.49,{},169138,1,Africa +2023-04-01,35013,4167,"[""Charger""]",3061.03,{},297290,1,Europe +2024-10-23,35014,7188,"[""Wireless Mouse"", ""Headphones""]",1962.11,{},16956,0,North America +2024-06-13,35015,3272,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",663.07,"{""loyalty"": ""12%""}",287348,0,North America +2024-10-15,35016,797,"[""Phone"", ""Tablet""]",2496.74,{},214793,0,South America +2023-01-22,35017,8103,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",938.17,"{"""": ""8%""}",10027,0,North America +2023-01-06,35018,9720,"[""Headphones""]",3800.25,{},119054,0,North America +2024-08-02,35019,6148,"[""Tablet"", ""Phone"", ""Charger""]",2285.63,"{""promo"": ""11%""}",226500,1,Europe +2023-08-14,35020,4301,"[""Headphones"", ""Phone""]",4799.77,{},286861,0,South America +2023-07-28,35021,667,"[""Laptop""]",3952.41,{},166556,0,Africa +2024-09-26,35022,7017,"[""Monitor""]",1521.63,{},170872,0,Africa +2023-01-29,35023,1065,"[""Charger""]",640.79,"{""seasonal"": ""23%""}",183318,1,Africa +2023-09-28,35024,9702,"[""Monitor""]",2349.29,{},180309,1,Africa +2023-07-15,35025,7849,"[""Monitor""]",2183.11,{},235387,0,North America +2024-12-18,35026,6408,"[""Phone""]",1071.71,{},171973,1,Africa +2023-01-01,35027,7740,"[""Tablet"", ""Monitor""]",3087.54,"{""promo"": ""22%""}",228549,1,North America +2023-07-01,35028,5733,"[""Phone"", ""Charger"", ""Monitor""]",1991.82,{},87169,1,North America +2023-06-06,35029,63,"[""Monitor"", ""Phone"", ""Keyboard""]",4135.54,"{""loyalty"": ""26%""}",131184,0,North America +2023-11-24,35030,6551,"[""Monitor""]",607.9,"{""promo"": ""18%""}",179664,1,South America +2023-02-02,35031,4909,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2781.0,"{""loyalty"": ""30%""}",147879,0,Europe +2023-03-07,35032,1642,"[""Phone"", ""Laptop""]",3829.39,"{""seasonal"": ""6%""}",38639,0,Europe +2024-11-04,35033,5228,"[""Headphones"", ""Laptop""]",1099.63,{},27573,1,Asia +2024-11-07,35034,5942,"[""Phone"", ""Laptop"", ""Monitor""]",2735.66,{},247189,1,South America +2023-03-06,35035,6576,"[""Laptop""]",1962.54,"{""loyalty"": ""7%""}",289502,0,South America +2024-01-17,35036,9378,"[""Keyboard"", ""Wireless Mouse""]",4527.99,{},4666,1,South America +2023-04-28,35037,7873,"[""Laptop"", ""Tablet""]",2445.89,{},271085,1,Africa +2024-05-27,35038,7789,"[""Phone""]",3630.14,{},92620,0,Asia +2023-08-18,35039,3709,"[""Charger""]",145.9,"{"""": ""29%""}",129163,1,Europe +2023-10-25,35040,7041,"[""Wireless Mouse"", ""Laptop""]",293.79,"{"""": ""10%""}",101031,1,Africa +2024-03-23,35041,8472,"[""Headphones"", ""Tablet""]",4855.06,"{""promo"": ""23%""}",211094,0,Europe +2024-06-06,35042,6842,"[""Keyboard""]",3780.56,{},5412,1,South America +2024-10-30,35043,1055,"[""Wireless Mouse"", ""Phone""]",1927.3,"{"""": ""6%""}",74295,0,Asia +2023-07-06,35044,8436,"[""Headphones"", ""Wireless Mouse""]",4199.29,{},184427,1,South America +2024-06-25,35045,6923,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2335.8,"{""loyalty"": ""9%""}",124990,0,Europe +2024-10-17,35046,2803,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2130.04,{},12310,0,Asia +2024-03-24,35047,2095,"[""Laptop""]",2830.86,{},252883,0,Europe +2023-09-09,35048,3437,"[""Monitor""]",3737.76,"{""seasonal"": ""14%""}",92704,0,North America +2023-05-15,35049,3011,"[""Headphones"", ""Monitor"", ""Keyboard""]",112.96,{},60341,0,South America +2023-07-09,35050,833,"[""Charger"", ""Monitor""]",2423.76,"{""seasonal"": ""27%""}",165744,0,Europe +2024-10-01,35051,603,"[""Tablet""]",77.88,{},38334,1,Africa +2023-11-23,35052,296,"[""Keyboard""]",706.95,"{"""": ""11%""}",13195,0,North America +2023-12-30,35053,3916,"[""Charger"", ""Headphones""]",3986.21,{},138318,0,South America +2024-05-19,35054,9985,"[""Monitor"", ""Laptop""]",4992.52,{},69153,1,Asia +2024-03-20,35055,4933,"[""Tablet"", ""Charger"", ""Phone""]",2343.37,"{"""": ""23%""}",122098,0,Africa +2024-08-19,35056,5362,"[""Laptop"", ""Phone""]",222.23,"{""loyalty"": ""23%""}",50617,0,Asia +2023-06-24,35057,7185,"[""Wireless Mouse"", ""Tablet""]",4842.44,"{""loyalty"": ""18%""}",286359,1,Africa +2024-09-17,35058,5811,"[""Charger"", ""Tablet"", ""Keyboard""]",4087.92,"{""promo"": ""30%""}",41843,0,Europe +2024-11-22,35059,5720,"[""Monitor"", ""Phone""]",4752.44,{},274985,0,South America +2023-12-19,35060,2779,"[""Phone"", ""Monitor""]",203.8,"{""promo"": ""9%""}",118682,1,Asia +2023-05-21,35061,3591,"[""Headphones"", ""Phone""]",2628.47,{},170882,1,Africa +2024-08-04,35062,5614,"[""Monitor""]",2165.51,{},28777,0,South America +2024-05-04,35063,896,"[""Tablet""]",4168.13,{},259282,0,Africa +2024-10-17,35064,9113,"[""Wireless Mouse"", ""Tablet""]",3677.88,"{""loyalty"": ""29%""}",2674,0,Asia +2024-02-25,35065,3905,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3316.29,{},144515,1,Asia +2023-11-28,35066,5696,"[""Headphones"", ""Phone""]",4531.98,"{""seasonal"": ""23%""}",138550,1,Africa +2023-04-28,35067,9272,"[""Headphones"", ""Laptop""]",3613.46,"{""seasonal"": ""26%""}",71342,0,Asia +2024-05-10,35068,3988,"[""Laptop""]",2829.2,{},140145,0,Africa +2023-02-16,35069,5000,"[""Charger"", ""Phone"", ""Headphones""]",4075.61,{},66410,0,North America +2023-06-30,35070,8862,"[""Laptop""]",3221.33,{},268087,1,Asia +2024-04-17,35071,87,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4474.01,{},36093,0,North America +2023-09-26,35072,4766,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",771.72,{},177005,0,Europe +2023-10-15,35073,7937,"[""Phone""]",2897.92,{},16022,0,Europe +2023-10-13,35074,3753,"[""Keyboard""]",4779.29,{},232491,1,North America +2023-03-20,35075,8118,"[""Headphones""]",883.91,"{""promo"": ""9%""}",182219,0,South America +2023-02-05,35076,5865,"[""Charger"", ""Monitor""]",2911.92,{},283500,1,North America +2023-12-03,35077,765,"[""Tablet""]",3756.55,{},246172,1,Asia +2023-03-28,35078,7125,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",657.91,"{"""": ""7%""}",134823,1,Africa +2024-08-28,35079,1946,"[""Charger""]",3414.07,{},31185,1,Africa +2024-07-30,35080,8731,"[""Headphones"", ""Laptop"", ""Charger""]",375.77,{},269691,1,North America +2024-08-23,35081,3462,"[""Tablet"", ""Keyboard"", ""Monitor""]",577.93,"{""promo"": ""18%""}",294315,1,Africa +2024-06-22,35082,9880,"[""Charger"", ""Phone""]",4347.81,"{""loyalty"": ""25%""}",46957,1,North America +2024-05-27,35083,2937,"[""Phone"", ""Tablet""]",4003.64,{},281717,0,Africa +2024-03-28,35084,5182,"[""Charger"", ""Keyboard""]",1011.39,"{""seasonal"": ""23%""}",203214,0,South America +2023-04-28,35085,8921,"[""Phone"", ""Laptop"", ""Charger""]",3569.72,"{""seasonal"": ""11%""}",8496,0,Asia +2024-10-25,35086,1361,"[""Laptop""]",1388.83,"{""loyalty"": ""21%""}",44541,0,Asia +2023-11-27,35087,8059,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4714.1,{},161026,1,Asia +2023-08-02,35088,1542,"[""Wireless Mouse""]",2219.57,{},84082,0,North America +2024-10-20,35089,7058,"[""Charger"", ""Headphones""]",2299.85,{},19977,1,North America +2024-10-24,35090,3212,"[""Tablet"", ""Phone""]",2570.58,"{""seasonal"": ""11%""}",158814,1,Africa +2023-01-01,35091,6781,"[""Keyboard"", ""Phone""]",2539.14,"{""seasonal"": ""21%""}",296513,1,Europe +2023-09-18,35092,2373,"[""Phone""]",3873.77,"{""promo"": ""16%""}",39727,1,North America +2023-08-02,35093,7561,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1390.88,{},111070,0,North America +2024-07-27,35094,16,"[""Wireless Mouse""]",4048.03,{},78832,0,South America +2023-09-18,35095,7049,"[""Laptop"", ""Headphones""]",713.4,{},253836,1,Africa +2023-04-08,35096,3941,"[""Charger""]",2466.93,"{""seasonal"": ""8%""}",211632,0,South America +2023-01-21,35097,8552,"[""Headphones"", ""Laptop"", ""Monitor""]",3852.96,"{""promo"": ""20%""}",182453,1,Europe +2024-01-05,35098,5558,"[""Tablet"", ""Charger""]",4230.28,"{""seasonal"": ""26%""}",36365,1,North America +2023-11-30,35099,7216,"[""Headphones"", ""Laptop"", ""Charger""]",1284.38,{},133828,1,North America +2023-06-05,35100,9308,"[""Tablet""]",1178.95,{},92794,1,South America +2023-08-18,35101,4656,"[""Keyboard"", ""Monitor""]",4648.47,"{"""": ""7%""}",272518,0,Africa +2024-01-10,35102,9410,"[""Keyboard"", ""Tablet""]",4164.7,"{""loyalty"": ""28%""}",251538,0,North America +2023-02-17,35103,1966,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3013.05,"{""seasonal"": ""12%""}",154835,1,Africa +2023-01-09,35104,2652,"[""Charger""]",4214.29,"{""loyalty"": ""20%""}",12755,0,Europe +2024-05-02,35105,4115,"[""Laptop""]",3125.33,"{"""": ""30%""}",226367,0,South America +2023-05-26,35106,6393,"[""Wireless Mouse""]",3443.25,"{""promo"": ""20%""}",155033,0,Europe +2024-06-12,35107,6223,"[""Phone"", ""Tablet"", ""Keyboard""]",2473.82,{},275736,1,Asia +2024-12-07,35108,6832,"[""Phone""]",2083.78,{},264715,1,Europe +2024-03-12,35109,6912,"[""Headphones""]",890.0,"{"""": ""9%""}",62449,1,Europe +2024-04-22,35110,267,"[""Charger"", ""Phone""]",4429.94,{},229360,0,Asia +2023-09-30,35111,7234,"[""Wireless Mouse"", ""Monitor""]",580.12,{},147346,1,Europe +2023-05-04,35112,5584,"[""Headphones""]",1535.25,"{""promo"": ""9%""}",108169,0,Africa +2024-03-18,35113,234,"[""Tablet"", ""Headphones""]",958.46,"{""loyalty"": ""18%""}",182628,1,South America +2024-01-27,35114,9978,"[""Phone"", ""Monitor""]",4154.13,{},241768,0,Europe +2024-04-29,35115,5778,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2885.34,"{"""": ""29%""}",110258,0,Africa +2024-06-18,35116,8264,"[""Laptop"", ""Keyboard""]",4270.88,{},117787,1,Africa +2024-08-13,35117,7494,"[""Phone"", ""Headphones"", ""Keyboard""]",1723.51,"{""promo"": ""20%""}",220652,1,South America +2023-04-09,35118,4795,"[""Keyboard""]",2259.79,{},268626,1,Asia +2024-10-14,35119,1284,"[""Headphones"", ""Monitor"", ""Laptop""]",2929.34,{},263510,1,South America +2024-12-25,35120,569,"[""Laptop"", ""Headphones""]",4771.25,{},250597,0,South America +2024-12-12,35121,9234,"[""Wireless Mouse"", ""Monitor""]",196.86,"{""seasonal"": ""17%""}",195066,1,Asia +2023-03-22,35122,2319,"[""Wireless Mouse""]",2117.46,{},217570,0,Africa +2023-03-07,35123,3823,"[""Keyboard"", ""Charger"", ""Phone""]",2825.73,"{""promo"": ""28%""}",207875,0,Africa +2023-01-14,35124,9458,"[""Wireless Mouse"", ""Phone""]",258.9,{},34673,0,Africa +2024-04-20,35125,3496,"[""Phone""]",2550.87,{},97106,0,Asia +2023-12-24,35126,3791,"[""Tablet"", ""Charger""]",73.13,"{""promo"": ""16%""}",193317,0,Europe +2023-07-01,35127,6481,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3947.62,{},115464,0,North America +2023-08-14,35128,2569,"[""Headphones""]",552.32,"{"""": ""14%""}",148190,1,South America +2023-10-24,35129,8867,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3744.15,"{""loyalty"": ""19%""}",210620,0,Africa +2023-04-12,35130,1197,"[""Keyboard"", ""Phone""]",721.92,"{""promo"": ""14%""}",149560,1,Africa +2024-08-02,35131,117,"[""Tablet"", ""Laptop""]",3780.11,"{""promo"": ""13%""}",89042,0,Asia +2024-04-06,35132,3157,"[""Keyboard"", ""Charger"", ""Headphones""]",4422.51,{},81804,0,Africa +2023-09-21,35133,3376,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1290.0,{},70360,1,Europe +2024-12-17,35134,3794,"[""Keyboard""]",775.84,"{"""": ""26%""}",139180,1,Europe +2024-05-29,35135,6841,"[""Phone""]",2556.07,{},187104,0,Africa +2024-10-30,35136,273,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2033.66,{},191407,1,South America +2023-11-13,35137,3052,"[""Tablet""]",294.94,{},11881,0,Asia +2024-11-25,35138,142,"[""Wireless Mouse""]",2801.27,{},62427,1,Asia +2024-08-21,35139,2968,"[""Tablet"", ""Monitor"", ""Headphones""]",3277.91,{},270776,0,North America +2023-11-12,35140,4632,"[""Charger"", ""Monitor"", ""Laptop""]",955.08,"{"""": ""18%""}",50834,1,Asia +2023-02-17,35141,36,"[""Phone"", ""Headphones""]",2268.45,{},276192,1,North America +2024-01-17,35142,4406,"[""Monitor"", ""Phone""]",788.69,{},137432,1,North America +2023-07-20,35143,7549,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1998.96,{},247448,1,Asia +2024-11-26,35144,1922,"[""Charger"", ""Keyboard""]",3212.18,{},14171,1,Europe +2023-08-12,35145,2596,"[""Headphones"", ""Laptop""]",4799.86,{},10617,1,Europe +2023-01-27,35146,2701,"[""Tablet"", ""Laptop""]",4743.78,{},134440,1,Asia +2024-04-12,35147,6746,"[""Laptop"", ""Headphones"", ""Phone""]",3567.82,"{""seasonal"": ""13%""}",138642,1,Europe +2024-08-28,35148,9379,"[""Laptop""]",1260.04,{},292986,1,Africa +2024-08-23,35149,6702,"[""Wireless Mouse"", ""Tablet""]",4799.08,"{""seasonal"": ""26%""}",119672,1,North America +2024-06-01,35150,9316,"[""Keyboard""]",652.07,{},265709,0,Asia +2023-10-29,35151,1590,"[""Headphones"", ""Keyboard"", ""Charger""]",4472.21,"{""promo"": ""12%""}",150659,0,South America +2024-01-09,35152,2371,"[""Monitor"", ""Headphones""]",1947.95,"{""seasonal"": ""11%""}",210746,0,Europe +2023-08-20,35153,5919,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4374.45,"{""promo"": ""14%""}",64773,0,Africa +2023-06-19,35154,1884,"[""Charger"", ""Keyboard""]",2901.13,"{"""": ""7%""}",132627,1,North America +2024-08-31,35155,6921,"[""Phone"", ""Charger"", ""Keyboard""]",1491.6,"{""seasonal"": ""20%""}",190534,0,Africa +2024-12-12,35156,7671,"[""Phone""]",3430.72,"{""promo"": ""8%""}",273537,0,Africa +2023-09-26,35157,3495,"[""Laptop"", ""Wireless Mouse""]",2068.98,{},45941,0,South America +2023-08-30,35158,8499,"[""Laptop""]",3898.28,{},208852,1,North America +2023-05-01,35159,2736,"[""Tablet"", ""Monitor""]",2489.05,"{""loyalty"": ""7%""}",250658,0,North America +2024-09-01,35160,2383,"[""Keyboard"", ""Phone""]",3024.61,"{""seasonal"": ""18%""}",109870,0,Asia +2023-05-03,35161,1734,"[""Phone"", ""Tablet"", ""Charger""]",3852.81,"{""loyalty"": ""9%""}",217655,1,Asia +2024-06-07,35162,1955,"[""Charger"", ""Tablet""]",3059.49,"{""loyalty"": ""14%""}",72585,0,Europe +2024-10-30,35163,7621,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4406.86,"{"""": ""9%""}",191133,1,South America +2024-05-20,35164,3696,"[""Tablet""]",410.67,{},153208,1,Africa +2024-11-10,35165,3202,"[""Tablet"", ""Phone""]",4834.94,{},140147,1,South America +2023-05-19,35166,6983,"[""Keyboard""]",4949.02,"{""loyalty"": ""13%""}",42217,1,Asia +2024-11-02,35167,948,"[""Charger"", ""Headphones"", ""Laptop""]",1819.21,"{""loyalty"": ""21%""}",67252,0,Asia +2023-11-19,35168,278,"[""Phone"", ""Tablet""]",4180.11,"{""seasonal"": ""23%""}",66089,1,North America +2023-12-15,35169,557,"[""Charger""]",1855.59,"{"""": ""14%""}",287885,1,North America +2023-02-27,35170,2391,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2841.61,{},86512,1,North America +2023-06-16,35171,8760,"[""Keyboard""]",2249.98,"{"""": ""15%""}",97816,1,Africa +2023-03-25,35172,5212,"[""Keyboard"", ""Laptop"", ""Phone""]",2766.82,{},44339,0,Asia +2024-11-04,35173,6474,"[""Phone"", ""Charger""]",4811.89,{},228378,0,North America +2024-12-05,35174,1723,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1494.79,{},104290,1,Africa +2023-11-20,35175,3875,"[""Keyboard"", ""Phone"", ""Laptop""]",1837.41,{},275974,0,Asia +2024-07-25,35176,3214,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1209.88,"{""loyalty"": ""15%""}",122364,0,South America +2024-06-12,35177,928,"[""Laptop""]",4651.4,"{"""": ""27%""}",84603,0,Europe +2023-06-01,35178,3676,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",116.98,"{"""": ""26%""}",220816,0,North America +2023-11-05,35179,3731,"[""Laptop""]",3399.92,{},112323,0,Africa +2023-12-26,35180,3528,"[""Phone""]",4325.97,{},132499,0,Europe +2024-09-11,35181,7365,"[""Monitor"", ""Phone"", ""Keyboard""]",3241.45,{},125228,0,Europe +2023-06-09,35182,5082,"[""Charger"", ""Laptop"", ""Monitor""]",402.53,"{""loyalty"": ""28%""}",159086,0,Europe +2023-03-25,35183,7680,"[""Headphones"", ""Keyboard""]",1097.83,{},279035,1,Europe +2024-08-29,35184,7592,"[""Laptop""]",1145.31,{},139619,0,Africa +2023-10-24,35185,1436,"[""Laptop"", ""Tablet"", ""Charger""]",965.02,"{""seasonal"": ""11%""}",175984,0,South America +2023-12-26,35186,4432,"[""Monitor"", ""Tablet"", ""Headphones""]",3853.84,"{"""": ""19%""}",38837,0,South America +2023-08-20,35187,9492,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2378.5,"{"""": ""21%""}",105860,1,Africa +2023-06-21,35188,6412,"[""Phone""]",2286.91,{},241947,0,Africa +2023-05-09,35189,4756,"[""Charger"", ""Phone""]",57.08,{},98059,0,Europe +2024-11-23,35190,9547,"[""Headphones"", ""Charger""]",53.89,"{""loyalty"": ""26%""}",101160,0,North America +2023-10-12,35191,2602,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1618.27,"{""loyalty"": ""10%""}",82272,1,North America +2024-11-03,35192,4432,"[""Charger"", ""Monitor""]",3938.26,"{""loyalty"": ""6%""}",121823,1,South America +2024-11-10,35193,9487,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",667.14,{},129653,1,Asia +2024-06-06,35194,979,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2032.96,"{""seasonal"": ""14%""}",84358,0,Africa +2024-07-23,35195,4780,"[""Phone"", ""Charger"", ""Keyboard""]",4517.36,"{""promo"": ""29%""}",160674,1,Asia +2023-04-26,35196,4876,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",715.55,{},18872,1,Asia +2023-06-21,35197,3161,"[""Phone""]",2494.75,"{""seasonal"": ""17%""}",98440,1,South America +2024-01-30,35198,4523,"[""Phone"", ""Wireless Mouse""]",3719.52,{},190123,0,South America +2024-08-08,35199,3731,"[""Tablet"", ""Keyboard"", ""Headphones""]",3849.06,{},147569,1,Europe +2024-01-19,35200,5821,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2737.24,"{""promo"": ""16%""}",72707,1,North America +2023-12-16,35201,4475,"[""Tablet""]",2837.51,"{""promo"": ""8%""}",62204,0,South America +2024-01-13,35202,8310,"[""Tablet""]",332.08,"{""promo"": ""15%""}",283163,0,Europe +2023-10-24,35203,9148,"[""Phone""]",2256.79,{},48738,1,Europe +2023-02-14,35204,6661,"[""Laptop""]",2860.05,"{""loyalty"": ""20%""}",75325,1,Africa +2023-01-11,35205,924,"[""Phone"", ""Wireless Mouse""]",2682.5,{},78251,1,Europe +2023-06-04,35206,4756,"[""Laptop""]",2076.5,"{"""": ""28%""}",49253,1,South America +2023-09-30,35207,9056,"[""Monitor"", ""Charger"", ""Laptop""]",1521.88,{},4562,1,Africa +2024-06-02,35208,8437,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4408.65,"{"""": ""22%""}",111325,0,Europe +2024-10-31,35209,7323,"[""Keyboard"", ""Laptop"", ""Phone""]",2875.91,{},161785,1,Africa +2023-01-06,35210,6215,"[""Keyboard"", ""Laptop"", ""Tablet""]",3848.2,{},76845,0,Europe +2024-10-17,35211,6125,"[""Phone""]",200.42,"{"""": ""11%""}",200548,1,Asia +2024-03-09,35212,6421,"[""Laptop""]",2104.29,"{""seasonal"": ""19%""}",253616,0,North America +2024-04-30,35213,1722,"[""Monitor"", ""Laptop""]",4113.99,"{""promo"": ""29%""}",266634,0,Africa +2024-12-06,35214,6406,"[""Wireless Mouse"", ""Laptop""]",4858.27,{},39082,1,Europe +2024-03-21,35215,4013,"[""Keyboard"", ""Tablet""]",421.37,{},126137,0,North America +2023-02-12,35216,5409,"[""Phone""]",4384.8,"{""promo"": ""8%""}",156653,0,Asia +2023-03-10,35217,3745,"[""Tablet"", ""Laptop"", ""Keyboard""]",2686.07,{},228914,1,South America +2023-02-19,35218,5482,"[""Laptop"", ""Headphones"", ""Charger""]",3452.27,"{"""": ""16%""}",186435,0,Asia +2024-09-30,35219,1154,"[""Laptop"", ""Charger""]",2074.34,"{""promo"": ""17%""}",23135,1,Africa +2024-05-01,35220,1425,"[""Charger"", ""Tablet"", ""Headphones""]",3760.81,{},45162,1,Europe +2023-07-28,35221,4248,"[""Tablet"", ""Charger"", ""Monitor""]",594.69,{},287090,1,Europe +2024-01-29,35222,468,"[""Charger""]",1490.66,"{""seasonal"": ""13%""}",40473,1,Africa +2024-07-25,35223,6267,"[""Phone"", ""Headphones""]",2824.49,{},109126,1,Europe +2024-02-23,35224,7814,"[""Charger"", ""Laptop"", ""Tablet""]",3793.77,{},44934,0,Europe +2024-06-29,35225,8751,"[""Headphones""]",630.66,{},155957,1,Africa +2023-06-22,35226,369,"[""Wireless Mouse"", ""Laptop""]",4612.94,"{""seasonal"": ""7%""}",249487,0,Asia +2023-09-20,35227,316,"[""Tablet"", ""Wireless Mouse""]",2749.27,"{""promo"": ""20%""}",197879,1,Asia +2024-01-02,35228,1853,"[""Headphones""]",4337.83,{},60106,0,Africa +2023-07-07,35229,1383,"[""Wireless Mouse""]",191.43,{},275403,1,Asia +2023-02-05,35230,8505,"[""Tablet"", ""Headphones"", ""Charger""]",1085.16,"{"""": ""27%""}",168217,1,North America +2023-09-20,35231,7036,"[""Tablet"", ""Laptop"", ""Monitor""]",1780.39,"{"""": ""10%""}",199863,0,Asia +2023-07-10,35232,5867,"[""Wireless Mouse""]",1047.88,"{"""": ""8%""}",234717,1,Africa +2023-09-01,35233,7840,"[""Laptop"", ""Monitor""]",2076.49,{},137388,0,Africa +2024-02-29,35234,9751,"[""Phone"", ""Laptop""]",4413.76,{},294946,1,South America +2024-08-19,35235,4545,"[""Laptop"", ""Headphones"", ""Monitor""]",3094.63,{},60817,0,Europe +2023-10-14,35236,6108,"[""Monitor""]",138.04,{},154158,0,Africa +2023-07-02,35237,4569,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3287.19,"{""promo"": ""29%""}",49325,1,South America +2023-04-24,35238,5044,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3384.41,"{""seasonal"": ""20%""}",91261,1,South America +2023-03-30,35239,1299,"[""Laptop"", ""Charger"", ""Monitor""]",4014.5,{},174219,0,South America +2024-04-06,35240,8598,"[""Phone"", ""Tablet""]",3080.58,{},281740,1,North America +2024-03-13,35241,8315,"[""Keyboard"", ""Monitor""]",4335.42,"{"""": ""15%""}",230902,1,Africa +2023-07-11,35242,8995,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2449.92,{},108312,0,North America +2023-08-12,35243,960,"[""Monitor""]",2876.12,{},113832,1,Africa +2023-09-21,35244,9329,"[""Headphones"", ""Charger""]",4481.81,{},193315,1,Asia +2023-07-24,35245,1518,"[""Headphones"", ""Phone"", ""Tablet""]",3787.73,{},30037,1,North America +2023-08-15,35246,452,"[""Monitor"", ""Headphones""]",296.55,{},273463,1,Africa +2024-12-21,35247,7849,"[""Tablet"", ""Wireless Mouse""]",3734.19,{},187472,0,Asia +2024-07-18,35248,1977,"[""Monitor"", ""Wireless Mouse""]",2707.75,"{"""": ""27%""}",262089,1,Africa +2023-03-06,35249,9258,"[""Monitor"", ""Laptop""]",4626.56,{},187019,0,Asia +2023-12-02,35250,6027,"[""Headphones"", ""Tablet"", ""Phone""]",797.03,{},40931,1,Asia +2023-01-05,35251,8665,"[""Phone""]",1613.55,{},244271,1,North America +2024-08-12,35252,5779,"[""Keyboard""]",4709.1,"{""seasonal"": ""7%""}",17002,1,Asia +2024-02-12,35253,9018,"[""Keyboard""]",4890.37,{},268746,1,Europe +2023-08-28,35254,2232,"[""Laptop""]",3995.87,"{""promo"": ""6%""}",216225,0,South America +2023-06-02,35255,2815,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2567.3,{},94006,1,Africa +2024-01-08,35256,1754,"[""Monitor""]",1676.14,"{""promo"": ""25%""}",39195,1,Europe +2023-11-15,35257,9386,"[""Phone""]",3999.82,{},147814,1,Asia +2023-10-08,35258,2651,"[""Tablet""]",3404.67,{},212938,1,Europe +2024-03-29,35259,5065,"[""Phone"", ""Keyboard"", ""Charger""]",1502.57,"{"""": ""14%""}",248524,1,Asia +2023-11-22,35260,7223,"[""Keyboard"", ""Headphones"", ""Laptop""]",4285.36,"{""promo"": ""10%""}",240549,1,Asia +2023-04-17,35261,6346,"[""Tablet"", ""Headphones""]",3982.89,"{""loyalty"": ""20%""}",185114,0,North America +2024-07-11,35262,2431,"[""Headphones""]",2475.96,"{"""": ""12%""}",112131,1,Africa +2024-04-26,35263,7069,"[""Monitor"", ""Laptop""]",188.57,{},283511,0,South America +2023-08-16,35264,3880,"[""Charger"", ""Keyboard"", ""Laptop""]",3097.08,{},39334,0,Africa +2024-11-19,35265,3749,"[""Laptop""]",4188.82,"{""loyalty"": ""13%""}",177273,0,South America +2024-06-04,35266,8766,"[""Keyboard"", ""Tablet""]",3584.08,{},216246,1,Asia +2023-11-22,35267,6752,"[""Phone"", ""Headphones""]",2196.22,"{"""": ""23%""}",258867,1,Africa +2023-03-23,35268,6522,"[""Keyboard""]",4685.86,{},225866,0,South America +2023-08-26,35269,9265,"[""Headphones""]",511.75,{},61138,0,Asia +2024-07-27,35270,4501,"[""Monitor"", ""Keyboard"", ""Headphones""]",4317.94,{},238350,1,Europe +2024-12-24,35271,4111,"[""Headphones"", ""Keyboard""]",3399.68,{},238490,1,North America +2023-09-26,35272,5979,"[""Monitor""]",604.64,"{""seasonal"": ""13%""}",41003,0,Europe +2023-05-01,35273,9163,"[""Phone""]",880.18,{},143322,0,Africa +2024-08-08,35274,3961,"[""Headphones"", ""Keyboard"", ""Charger""]",3851.86,"{"""": ""16%""}",208118,0,Europe +2024-11-17,35275,9818,"[""Monitor""]",3335.86,{},240309,1,South America +2024-02-18,35276,1429,"[""Keyboard"", ""Laptop"", ""Headphones""]",1535.09,{},72341,1,Africa +2023-10-18,35277,8881,"[""Laptop"", ""Tablet""]",3708.38,"{""seasonal"": ""6%""}",214699,0,South America +2023-05-11,35278,8569,"[""Laptop"", ""Wireless Mouse""]",2142.27,"{""promo"": ""6%""}",274269,0,Africa +2024-12-30,35279,8526,"[""Laptop""]",3502.54,"{""loyalty"": ""15%""}",135252,0,South America +2024-07-28,35280,2636,"[""Charger""]",2038.03,{},190330,0,Asia +2024-07-13,35281,2972,"[""Laptop"", ""Tablet"", ""Keyboard""]",2364.66,"{"""": ""7%""}",250070,0,South America +2024-04-03,35282,9609,"[""Monitor""]",2871.78,"{"""": ""13%""}",297892,1,Europe +2023-06-17,35283,5430,"[""Tablet""]",2119.18,"{"""": ""27%""}",58215,1,Asia +2023-07-11,35284,8044,"[""Phone""]",2556.74,"{""seasonal"": ""14%""}",275724,0,Africa +2023-07-15,35285,5648,"[""Tablet"", ""Phone""]",1682.54,"{"""": ""18%""}",74518,1,North America +2024-09-02,35286,8913,"[""Charger""]",4441.2,{},75947,0,North America +2023-03-11,35287,4231,"[""Phone""]",132.54,"{""promo"": ""28%""}",298240,1,Asia +2023-05-20,35288,7592,"[""Wireless Mouse""]",2888.41,"{""loyalty"": ""29%""}",288578,0,Africa +2023-12-11,35289,1601,"[""Keyboard"", ""Laptop""]",2262.99,"{"""": ""9%""}",145686,1,North America +2023-11-01,35290,465,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2746.89,{},205330,0,South America +2023-08-31,35291,9406,"[""Monitor""]",972.18,{},62972,0,South America +2024-07-12,35292,374,"[""Keyboard"", ""Phone"", ""Laptop""]",4135.72,"{"""": ""9%""}",201950,1,South America +2023-08-04,35293,8394,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3515.91,"{"""": ""20%""}",54442,0,Asia +2023-08-24,35294,1213,"[""Keyboard""]",1080.0,"{""loyalty"": ""24%""}",97503,1,Asia +2023-05-17,35295,3568,"[""Charger""]",336.45,{},145474,0,South America +2023-01-28,35296,9983,"[""Charger"", ""Laptop"", ""Phone""]",1829.29,"{""seasonal"": ""29%""}",168766,0,North America +2023-01-04,35297,8122,"[""Laptop""]",3713.4,"{""loyalty"": ""19%""}",65281,0,Asia +2023-10-15,35298,6679,"[""Keyboard"", ""Monitor"", ""Charger""]",1820.02,"{""seasonal"": ""18%""}",116884,0,Asia +2023-03-10,35299,9803,"[""Phone"", ""Keyboard""]",2961.75,{},3821,1,South America +2024-12-01,35300,8971,"[""Charger"", ""Phone"", ""Tablet""]",1981.21,{},254409,1,South America +2024-12-26,35301,8121,"[""Charger"", ""Headphones"", ""Phone""]",4640.65,{},179187,0,Africa +2023-09-29,35302,9589,"[""Charger"", ""Laptop"", ""Keyboard""]",4348.04,"{""seasonal"": ""29%""}",117654,0,Asia +2024-10-01,35303,5741,"[""Keyboard"", ""Tablet"", ""Phone""]",3707.2,{},289426,1,Africa +2023-09-10,35304,482,"[""Tablet""]",4281.96,{},179274,1,South America +2024-08-01,35305,4539,"[""Phone"", ""Monitor"", ""Charger""]",2547.93,"{"""": ""20%""}",75410,1,Asia +2024-03-15,35306,5567,"[""Tablet"", ""Keyboard"", ""Monitor""]",4600.32,{},15016,1,Asia +2024-04-25,35307,7886,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",967.45,{},280685,0,North America +2023-09-22,35308,604,"[""Charger""]",2102.7,{},288777,0,South America +2023-06-17,35309,9224,"[""Charger"", ""Tablet""]",531.35,{},47072,0,North America +2023-09-02,35310,4906,"[""Headphones"", ""Laptop""]",3793.15,{},206245,0,North America +2023-01-19,35311,2470,"[""Phone"", ""Monitor""]",4954.98,{},90797,1,South America +2024-11-08,35312,3752,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2248.21,{},69540,0,Africa +2024-10-02,35313,2514,"[""Phone""]",703.43,{},237944,1,South America +2024-07-17,35314,4812,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3687.91,"{"""": ""10%""}",83204,1,Africa +2024-09-12,35315,1821,"[""Wireless Mouse"", ""Charger""]",3829.71,{},108179,0,North America +2023-07-29,35316,3012,"[""Wireless Mouse""]",1451.71,{},39106,0,Africa +2024-04-23,35317,860,"[""Laptop""]",4048.84,{},143436,1,Europe +2023-12-19,35318,6078,"[""Laptop"", ""Charger""]",2314.07,"{""promo"": ""25%""}",140100,1,Europe +2023-07-19,35319,4095,"[""Tablet""]",1413.56,{},236241,0,North America +2024-02-11,35320,808,"[""Keyboard"", ""Wireless Mouse""]",3538.81,"{""loyalty"": ""10%""}",211204,1,Africa +2023-06-03,35321,3828,"[""Tablet"", ""Laptop""]",2070.99,{},109828,0,Asia +2023-04-25,35322,7360,"[""Monitor"", ""Tablet""]",2518.86,"{""seasonal"": ""8%""}",116509,0,North America +2024-08-15,35323,6819,"[""Laptop""]",3489.38,"{""promo"": ""29%""}",298834,0,North America +2024-02-23,35324,1187,"[""Laptop"", ""Tablet"", ""Phone""]",1099.35,"{"""": ""11%""}",26828,0,South America +2024-09-04,35325,2815,"[""Headphones"", ""Keyboard""]",4189.47,{},257122,1,Europe +2023-11-03,35326,7959,"[""Laptop"", ""Keyboard"", ""Phone""]",4698.85,{},136993,1,Africa +2023-10-20,35327,8336,"[""Charger""]",4071.52,"{""seasonal"": ""10%""}",102292,1,South America +2024-01-14,35328,2598,"[""Tablet""]",573.56,{},127889,0,Europe +2023-07-15,35329,5197,"[""Phone""]",4393.65,{},206236,1,Europe +2023-10-11,35330,4767,"[""Monitor"", ""Tablet"", ""Charger""]",604.94,"{""seasonal"": ""15%""}",242557,0,South America +2023-09-10,35331,3626,"[""Monitor"", ""Headphones"", ""Charger""]",4357.72,{},233804,0,Africa +2024-06-01,35332,9756,"[""Monitor"", ""Phone"", ""Tablet""]",2613.51,{},142175,0,Africa +2024-11-09,35333,6491,"[""Tablet"", ""Laptop"", ""Charger""]",1807.37,{},248924,0,Asia +2024-07-10,35334,8047,"[""Keyboard""]",4596.98,{},267455,0,North America +2023-12-07,35335,1034,"[""Tablet""]",4830.43,{},210511,1,South America +2024-02-26,35336,6530,"[""Wireless Mouse""]",4306.13,{},114466,1,Europe +2024-03-17,35337,5536,"[""Tablet"", ""Laptop"", ""Keyboard""]",174.26,"{""promo"": ""30%""}",63339,1,Asia +2023-08-10,35338,707,"[""Monitor"", ""Keyboard"", ""Laptop""]",439.16,"{""seasonal"": ""22%""}",260349,1,Africa +2024-07-05,35339,3791,"[""Charger""]",3921.95,{},107202,1,Europe +2024-08-01,35340,4975,"[""Wireless Mouse"", ""Keyboard""]",1266.3,"{"""": ""21%""}",10946,0,Europe +2023-10-11,35341,4475,"[""Wireless Mouse""]",3289.72,"{""loyalty"": ""20%""}",288298,0,Africa +2024-06-26,35342,6964,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2898.12,"{""promo"": ""28%""}",161524,0,Africa +2024-03-19,35343,7600,"[""Monitor""]",643.45,{},199336,1,South America +2023-12-26,35344,3911,"[""Charger""]",3628.96,{},280219,0,South America +2024-04-03,35345,6087,"[""Wireless Mouse"", ""Headphones""]",4370.09,"{""promo"": ""26%""}",16591,1,Europe +2024-07-04,35346,9841,"[""Headphones"", ""Tablet""]",2500.99,{},292734,1,Europe +2023-06-30,35347,7413,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4790.08,{},248735,0,South America +2023-12-01,35348,6337,"[""Keyboard"", ""Laptop"", ""Headphones""]",1897.85,{},101330,0,North America +2024-02-03,35349,6393,"[""Keyboard"", ""Headphones"", ""Phone""]",2012.63,{},130515,1,Asia +2024-01-17,35350,611,"[""Tablet"", ""Laptop""]",3625.42,"{""promo"": ""9%""}",55329,0,South America +2023-11-21,35351,557,"[""Monitor"", ""Tablet""]",4831.2,{},299932,0,North America +2024-06-29,35352,3890,"[""Laptop"", ""Phone""]",2557.38,"{""loyalty"": ""11%""}",194312,1,Asia +2023-02-14,35353,7296,"[""Headphones""]",2193.97,{},266897,1,Africa +2024-01-26,35354,927,"[""Wireless Mouse"", ""Laptop""]",4989.38,"{""promo"": ""17%""}",49145,1,Africa +2023-10-06,35355,3284,"[""Phone"", ""Headphones""]",3052.44,{},63249,0,South America +2023-02-04,35356,3820,"[""Phone"", ""Tablet"", ""Keyboard""]",1983.82,"{""loyalty"": ""12%""}",246309,1,Europe +2024-07-08,35357,4246,"[""Headphones"", ""Laptop""]",293.06,"{"""": ""14%""}",148817,0,North America +2024-12-09,35358,1869,"[""Headphones"", ""Charger"", ""Tablet""]",2654.37,{},114419,1,Asia +2023-06-05,35359,1005,"[""Keyboard""]",2894.74,"{""loyalty"": ""27%""}",17312,0,Africa +2023-03-26,35360,9079,"[""Phone""]",4684.47,"{"""": ""8%""}",245292,0,Europe +2023-07-11,35361,56,"[""Charger"", ""Wireless Mouse""]",359.35,"{""seasonal"": ""15%""}",53912,0,Asia +2023-05-14,35362,5250,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",622.82,{},86374,1,Asia +2023-01-02,35363,3711,"[""Phone"", ""Monitor"", ""Laptop""]",1037.12,"{""promo"": ""30%""}",282431,1,Asia +2024-02-15,35364,8902,"[""Laptop"", ""Phone"", ""Monitor""]",3217.62,"{""loyalty"": ""21%""}",282152,0,Asia +2024-07-05,35365,5168,"[""Keyboard""]",2790.36,{},234271,0,Europe +2023-01-10,35366,6142,"[""Headphones"", ""Tablet"", ""Charger""]",263.49,"{""loyalty"": ""26%""}",286304,0,South America +2023-01-20,35367,4489,"[""Headphones"", ""Tablet"", ""Keyboard""]",3713.34,"{""seasonal"": ""23%""}",73108,1,South America +2023-07-11,35368,1596,"[""Tablet""]",379.26,{},76681,0,North America +2023-05-24,35369,6707,"[""Charger"", ""Wireless Mouse""]",4761.1,"{""loyalty"": ""28%""}",28556,0,Africa +2024-03-12,35370,5115,"[""Phone""]",3403.6,{},193661,1,Africa +2024-03-03,35371,6306,"[""Tablet"", ""Phone""]",3340.25,"{""promo"": ""23%""}",18889,1,Africa +2024-04-06,35372,5562,"[""Phone"", ""Tablet"", ""Laptop""]",1945.14,{},75793,1,Africa +2023-03-30,35373,2549,"[""Laptop"", ""Tablet""]",2237.6,{},76153,1,North America +2023-03-21,35374,5919,"[""Laptop""]",763.03,"{""promo"": ""19%""}",282955,0,North America +2023-05-03,35375,2239,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4934.59,{},223001,1,Africa +2024-01-15,35376,6390,"[""Monitor""]",128.92,{},45358,1,Asia +2023-03-31,35377,116,"[""Headphones"", ""Monitor""]",4937.05,"{""loyalty"": ""5%""}",114095,1,Europe +2024-03-22,35378,7306,"[""Laptop"", ""Headphones""]",2502.83,"{""promo"": ""23%""}",207303,0,Asia +2024-08-09,35379,212,"[""Monitor"", ""Keyboard""]",311.93,"{"""": ""12%""}",143683,1,South America +2023-12-23,35380,1916,"[""Phone"", ""Laptop"", ""Charger""]",910.45,{},188128,0,Asia +2023-07-08,35381,1266,"[""Phone"", ""Keyboard""]",2026.48,{},270291,1,North America +2024-09-13,35382,7639,"[""Laptop""]",976.7,"{""loyalty"": ""21%""}",150118,0,South America +2023-06-23,35383,783,"[""Wireless Mouse"", ""Charger""]",4210.19,{},257415,1,Asia +2023-12-06,35384,8472,"[""Monitor""]",3763.71,{},247594,1,Asia +2024-12-13,35385,7748,"[""Phone"", ""Wireless Mouse""]",1829.38,"{""promo"": ""7%""}",218947,1,Europe +2023-02-23,35386,9108,"[""Laptop""]",3446.73,"{""seasonal"": ""15%""}",84253,0,North America +2024-07-06,35387,4689,"[""Keyboard"", ""Monitor"", ""Headphones""]",1145.5,{},205069,1,Africa +2023-07-25,35388,8482,"[""Monitor""]",72.85,"{""seasonal"": ""28%""}",262806,0,North America +2023-07-11,35389,494,"[""Charger""]",659.1,{},241980,1,Africa +2024-06-23,35390,1648,"[""Laptop"", ""Charger""]",1937.5,"{""promo"": ""15%""}",252067,0,South America +2023-06-17,35391,8267,"[""Wireless Mouse""]",4393.88,"{""promo"": ""18%""}",216406,0,North America +2024-05-04,35392,5418,"[""Headphones"", ""Monitor""]",4241.83,"{""promo"": ""21%""}",106907,1,North America +2024-09-19,35393,7614,"[""Tablet""]",4444.42,{},19874,0,North America +2023-04-29,35394,794,"[""Phone"", ""Charger""]",1225.59,"{"""": ""8%""}",80786,0,Europe +2024-04-15,35395,3683,"[""Phone"", ""Charger"", ""Monitor""]",136.71,{},228510,1,Europe +2023-08-31,35396,2886,"[""Wireless Mouse""]",203.09,{},150082,1,Africa +2023-07-25,35397,9186,"[""Charger""]",376.55,"{"""": ""17%""}",74575,1,Asia +2024-05-12,35398,1884,"[""Wireless Mouse""]",225.42,"{"""": ""30%""}",164388,1,South America +2023-11-28,35399,8098,"[""Tablet"", ""Keyboard""]",2488.83,"{""loyalty"": ""16%""}",112957,1,South America +2023-10-31,35400,8622,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4539.27,"{""promo"": ""21%""}",153351,1,South America +2023-07-06,35401,9759,"[""Laptop"", ""Tablet""]",4017.84,"{""loyalty"": ""27%""}",160518,0,Europe +2023-03-10,35402,5842,"[""Keyboard"", ""Headphones""]",63.7,{},83474,1,Africa +2023-08-06,35403,5331,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3759.68,"{""promo"": ""7%""}",91376,0,North America +2024-09-25,35404,8281,"[""Wireless Mouse"", ""Monitor""]",3610.67,"{""promo"": ""12%""}",24291,0,Asia +2023-07-22,35405,1503,"[""Charger"", ""Wireless Mouse""]",2753.08,"{""loyalty"": ""25%""}",42462,1,Europe +2023-05-01,35406,8673,"[""Phone"", ""Charger""]",4400.39,"{""seasonal"": ""19%""}",131235,0,Europe +2023-03-22,35407,8148,"[""Charger""]",3965.38,{},43559,1,Europe +2023-05-09,35408,8886,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3867.12,{},175028,0,Asia +2023-11-06,35409,2623,"[""Phone"", ""Headphones""]",2313.06,{},75027,0,Asia +2024-02-13,35410,7291,"[""Charger"", ""Phone"", ""Keyboard""]",2301.61,{},169771,1,Asia +2023-01-11,35411,8023,"[""Tablet""]",665.34,{},45995,1,Africa +2024-11-23,35412,9347,"[""Tablet""]",4641.1,"{""seasonal"": ""6%""}",163547,0,Asia +2024-10-24,35413,1168,"[""Phone"", ""Monitor""]",3195.61,"{""promo"": ""24%""}",214234,0,Africa +2024-12-02,35414,1174,"[""Tablet"", ""Keyboard"", ""Monitor""]",3527.49,{},158401,1,Europe +2023-10-15,35415,3138,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",766.02,{},128064,1,North America +2023-12-24,35416,3782,"[""Headphones"", ""Wireless Mouse""]",1819.03,{},5190,0,Asia +2024-05-24,35417,3129,"[""Headphones""]",3341.45,"{"""": ""10%""}",149271,0,Africa +2023-05-03,35418,3254,"[""Phone"", ""Headphones"", ""Tablet""]",789.81,{},168594,0,South America +2023-10-28,35419,9576,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2727.18,{},173557,0,Asia +2023-10-06,35420,1157,"[""Keyboard""]",2934.93,"{"""": ""5%""}",212366,1,North America +2024-09-21,35421,6344,"[""Monitor"", ""Laptop""]",4020.82,{},33488,1,Asia +2023-06-16,35422,7252,"[""Charger""]",3992.72,{},219075,1,South America +2023-12-28,35423,6114,"[""Tablet"", ""Charger""]",3284.76,{},33565,1,Europe +2024-03-08,35424,5697,"[""Tablet""]",2901.4,{},271006,0,Asia +2023-10-27,35425,5857,"[""Laptop""]",3820.16,"{""promo"": ""11%""}",124386,0,Europe +2024-12-08,35426,7007,"[""Phone""]",3418.04,{},150487,1,Europe +2023-04-16,35427,5301,"[""Tablet"", ""Headphones""]",4952.65,"{""loyalty"": ""19%""}",50337,1,Asia +2023-05-13,35428,2422,"[""Charger"", ""Wireless Mouse"", ""Phone""]",612.94,"{""seasonal"": ""18%""}",2019,1,Europe +2023-06-17,35429,826,"[""Monitor"", ""Tablet""]",4711.75,"{""seasonal"": ""7%""}",138771,0,Europe +2023-11-20,35430,4979,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3729.46,"{"""": ""16%""}",269367,1,North America +2023-06-02,35431,4411,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4397.4,"{""loyalty"": ""6%""}",143709,1,Africa +2024-11-07,35432,7876,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2800.74,{},159636,0,North America +2023-09-26,35433,130,"[""Wireless Mouse""]",3798.84,"{"""": ""11%""}",165847,1,Europe +2023-02-22,35434,7044,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",279.31,"{""loyalty"": ""9%""}",299836,0,Europe +2024-04-22,35435,1944,"[""Wireless Mouse""]",1138.4,{},291087,1,Europe +2023-02-08,35436,3704,"[""Tablet"", ""Keyboard""]",558.94,{},49854,1,North America +2024-08-27,35437,5655,"[""Tablet"", ""Keyboard"", ""Monitor""]",4422.84,{},172250,1,North America +2023-05-19,35438,9939,"[""Phone""]",3862.71,"{""loyalty"": ""5%""}",258713,1,South America +2023-02-08,35439,125,"[""Phone"", ""Tablet""]",3920.68,"{""loyalty"": ""21%""}",287396,0,Africa +2024-10-03,35440,9259,"[""Phone"", ""Charger"", ""Keyboard""]",3356.72,"{""promo"": ""16%""}",7073,1,Europe +2024-09-01,35441,3649,"[""Monitor"", ""Headphones""]",4894.66,"{""promo"": ""30%""}",38660,1,Africa +2024-04-02,35442,4720,"[""Phone""]",4799.82,{},148186,1,Europe +2024-04-14,35443,1303,"[""Headphones"", ""Phone""]",3554.33,"{"""": ""20%""}",206366,0,Europe +2024-09-08,35444,4172,"[""Phone"", ""Laptop"", ""Charger""]",3218.12,{},289290,0,South America +2024-10-25,35445,35,"[""Laptop""]",920.07,{},19611,0,Africa +2023-10-04,35446,5152,"[""Wireless Mouse"", ""Monitor""]",2029.18,"{"""": ""29%""}",278548,1,Europe +2024-04-03,35447,5867,"[""Phone"", ""Keyboard"", ""Headphones""]",1480.82,"{""seasonal"": ""9%""}",114256,0,Africa +2024-11-29,35448,3634,"[""Headphones""]",3468.76,{},128093,0,Africa +2024-07-06,35449,9892,"[""Monitor"", ""Laptop"", ""Charger""]",3088.1,"{""loyalty"": ""8%""}",167476,0,South America +2023-10-24,35450,5616,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2735.25,{},152037,1,North America +2024-10-29,35451,7637,"[""Keyboard"", ""Headphones"", ""Tablet""]",2172.95,"{""seasonal"": ""8%""}",166379,1,North America +2024-07-18,35452,797,"[""Phone"", ""Monitor""]",626.51,"{"""": ""16%""}",65373,1,Africa +2023-01-31,35453,5583,"[""Keyboard""]",91.06,{},25199,1,Africa +2024-07-20,35454,450,"[""Monitor""]",4499.44,"{""promo"": ""22%""}",87319,0,Asia +2024-12-24,35455,8495,"[""Monitor""]",1614.58,{},30506,1,South America +2024-12-25,35456,3754,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3544.31,{},27693,0,South America +2024-10-08,35457,5133,"[""Charger""]",2927.4,{},149203,1,Europe +2024-05-21,35458,4911,"[""Wireless Mouse""]",895.8,"{""seasonal"": ""30%""}",168488,0,Asia +2024-11-19,35459,9201,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3145.91,"{""seasonal"": ""30%""}",253332,1,North America +2023-07-09,35460,6778,"[""Phone""]",2529.47,{},244243,0,Europe +2023-04-16,35461,9057,"[""Keyboard"", ""Tablet"", ""Laptop""]",3725.24,"{"""": ""19%""}",110229,0,North America +2024-01-02,35462,1577,"[""Phone"", ""Headphones""]",640.51,{},284014,1,Europe +2023-11-30,35463,8494,"[""Headphones"", ""Tablet""]",3838.53,{},54698,0,Africa +2024-02-13,35464,5121,"[""Charger""]",4703.36,{},149622,1,North America +2023-06-24,35465,7605,"[""Keyboard"", ""Tablet"", ""Monitor""]",4842.67,{},184043,1,Europe +2024-05-26,35466,482,"[""Headphones""]",2762.18,{},179747,1,North America +2023-06-01,35467,8010,"[""Wireless Mouse"", ""Tablet""]",2400.92,{},242692,1,Africa +2024-01-08,35468,1811,"[""Monitor""]",3874.79,"{""loyalty"": ""23%""}",160943,1,Asia +2024-06-06,35469,3840,"[""Monitor""]",4625.25,{},57998,1,South America +2023-08-01,35470,2791,"[""Tablet"", ""Keyboard"", ""Headphones""]",504.85,{},286857,1,Europe +2023-11-12,35471,3293,"[""Charger"", ""Phone""]",2705.15,{},160150,0,South America +2024-03-22,35472,6775,"[""Phone""]",2903.12,{},237538,0,North America +2024-11-25,35473,3087,"[""Keyboard""]",3311.33,{},60418,0,North America +2023-01-15,35474,2983,"[""Monitor"", ""Laptop""]",3768.31,{},278108,1,Africa +2024-08-13,35475,4899,"[""Monitor""]",4283.53,{},129024,1,Europe +2024-08-22,35476,6264,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",487.0,{},286367,0,Europe +2024-12-31,35477,7379,"[""Laptop"", ""Tablet""]",3436.3,{},117196,0,North America +2024-01-15,35478,661,"[""Charger""]",1611.94,"{""seasonal"": ""21%""}",193529,1,North America +2024-06-05,35479,4464,"[""Laptop""]",729.0,{},152322,0,Asia +2024-02-19,35480,2940,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4688.41,{},285900,0,South America +2024-04-28,35481,5653,"[""Headphones"", ""Wireless Mouse""]",3275.17,"{""promo"": ""27%""}",214285,0,Europe +2024-04-01,35482,6574,"[""Keyboard"", ""Monitor""]",439.62,"{""promo"": ""8%""}",61087,1,Asia +2024-07-12,35483,7731,"[""Keyboard"", ""Wireless Mouse""]",944.64,"{""promo"": ""21%""}",287828,0,Africa +2023-03-18,35484,114,"[""Charger""]",2342.84,{},223274,1,Europe +2024-02-24,35485,7097,"[""Tablet"", ""Headphones""]",4424.28,"{"""": ""12%""}",161667,1,Asia +2024-12-08,35486,5495,"[""Charger"", ""Phone"", ""Monitor""]",750.65,"{"""": ""13%""}",286359,0,Africa +2023-07-29,35487,6163,"[""Monitor"", ""Laptop"", ""Tablet""]",2216.98,{},155488,0,Africa +2023-07-07,35488,4807,"[""Headphones"", ""Monitor"", ""Phone""]",2224.96,{},130141,1,Asia +2024-07-31,35489,405,"[""Headphones""]",3682.65,{},218765,0,Europe +2024-03-17,35490,1353,"[""Headphones"", ""Charger""]",310.67,{},163647,1,Asia +2024-11-10,35491,9402,"[""Phone"", ""Keyboard""]",702.84,"{""promo"": ""29%""}",143118,1,Europe +2023-03-30,35492,3669,"[""Headphones"", ""Charger"", ""Laptop""]",365.53,{},131141,0,Europe +2023-04-06,35493,7769,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2553.32,"{""seasonal"": ""10%""}",71412,1,Europe +2024-11-16,35494,4017,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3956.42,{},14477,0,South America +2024-08-17,35495,8523,"[""Keyboard"", ""Monitor"", ""Charger""]",480.65,"{"""": ""7%""}",113119,0,South America +2024-09-12,35496,8118,"[""Keyboard""]",641.66,"{""loyalty"": ""17%""}",125626,0,Africa +2024-03-24,35497,9922,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",169.08,"{""promo"": ""10%""}",266772,1,North America +2024-08-05,35498,3650,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4024.01,"{""loyalty"": ""18%""}",268917,1,Africa +2023-07-24,35499,678,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3209.11,{},290915,0,Africa +2024-02-16,35500,9776,"[""Laptop"", ""Wireless Mouse""]",4519.63,"{"""": ""5%""}",291279,1,North America +2024-04-01,35501,1819,"[""Tablet"", ""Laptop"", ""Charger""]",374.31,{},108984,1,Africa +2023-01-18,35502,8997,"[""Laptop""]",1775.73,"{""loyalty"": ""15%""}",235085,1,South America +2023-03-14,35503,7182,"[""Keyboard"", ""Headphones""]",2001.07,"{"""": ""7%""}",199965,0,Africa +2024-12-23,35504,2140,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2888.92,"{"""": ""25%""}",64740,0,Asia +2023-07-18,35505,5628,"[""Monitor"", ""Charger"", ""Phone""]",4224.14,{},24385,1,Europe +2024-08-28,35506,537,"[""Headphones""]",2472.03,"{"""": ""13%""}",132762,0,North America +2023-06-12,35507,8687,"[""Wireless Mouse"", ""Charger""]",4861.43,{},41401,0,Africa +2024-07-09,35508,2560,"[""Charger""]",326.08,{},180371,1,Europe +2023-04-14,35509,7941,"[""Headphones""]",4820.42,{},294234,1,North America +2023-04-04,35510,9515,"[""Monitor"", ""Laptop""]",4329.14,{},40802,0,Europe +2024-09-24,35511,2020,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1849.84,{},31308,0,Africa +2023-03-06,35512,8818,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3279.47,{},237191,1,North America +2023-10-13,35513,8191,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4474.29,"{""promo"": ""19%""}",182885,1,Europe +2024-02-22,35514,6680,"[""Tablet"", ""Keyboard"", ""Charger""]",3690.51,{},222040,1,Africa +2024-01-02,35515,92,"[""Tablet"", ""Laptop""]",2059.2,{},221809,0,Africa +2024-03-11,35516,9821,"[""Headphones"", ""Monitor""]",3490.43,"{""loyalty"": ""29%""}",68696,1,North America +2024-01-12,35517,9254,"[""Laptop"", ""Tablet"", ""Charger""]",2764.03,"{""promo"": ""7%""}",54687,1,Asia +2024-04-22,35518,1320,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2378.31,"{""seasonal"": ""12%""}",45856,1,North America +2023-09-17,35519,4208,"[""Charger""]",4112.78,{},225811,0,North America +2024-02-08,35520,2476,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1916.39,"{"""": ""21%""}",29973,0,South America +2023-09-14,35521,1522,"[""Charger"", ""Monitor""]",3044.46,{},210330,1,South America +2023-06-27,35522,9074,"[""Keyboard""]",1281.66,{},271304,1,Asia +2024-03-17,35523,9585,"[""Charger"", ""Tablet""]",3583.55,{},209178,1,Asia +2023-07-16,35524,1751,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2315.21,"{"""": ""13%""}",293820,1,Europe +2023-03-14,35525,4271,"[""Phone"", ""Keyboard"", ""Charger""]",297.22,"{""seasonal"": ""10%""}",249877,1,North America +2024-03-05,35526,6344,"[""Phone"", ""Charger"", ""Laptop""]",1076.12,"{"""": ""30%""}",166348,1,Asia +2024-11-09,35527,6099,"[""Tablet"", ""Charger"", ""Phone""]",4689.67,"{""seasonal"": ""21%""}",273814,1,Asia +2024-12-21,35528,7551,"[""Laptop"", ""Headphones"", ""Charger""]",4138.76,{},251815,1,North America +2023-11-04,35529,3042,"[""Keyboard"", ""Charger""]",4025.09,{},150776,1,North America +2023-11-20,35530,9356,"[""Charger"", ""Monitor"", ""Laptop""]",964.32,{},93747,0,Europe +2023-12-22,35531,5674,"[""Wireless Mouse""]",2441.31,"{""loyalty"": ""17%""}",170873,1,Asia +2024-11-29,35532,9489,"[""Monitor""]",2027.21,{},50547,0,Europe +2024-03-08,35533,9380,"[""Laptop"", ""Charger""]",4519.13,"{""loyalty"": ""30%""}",34195,0,Africa +2024-05-21,35534,8562,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2928.43,"{""loyalty"": ""15%""}",160685,1,Africa +2024-05-25,35535,532,"[""Wireless Mouse"", ""Headphones""]",885.87,{},14798,0,Asia +2023-09-29,35536,5833,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1135.27,{},63608,1,South America +2023-09-12,35537,6017,"[""Phone"", ""Charger""]",4841.48,"{"""": ""23%""}",196071,1,South America +2023-05-16,35538,9951,"[""Headphones"", ""Phone"", ""Keyboard""]",871.19,{},281059,1,South America +2024-10-01,35539,4645,"[""Monitor"", ""Charger""]",2291.4,"{""loyalty"": ""22%""}",263687,0,North America +2024-12-31,35540,5108,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2545.65,{},276178,0,North America +2023-11-05,35541,4560,"[""Charger""]",1000.39,"{""loyalty"": ""15%""}",143693,1,South America +2023-02-04,35542,6391,"[""Monitor""]",3556.03,"{""seasonal"": ""6%""}",282635,0,South America +2024-10-17,35543,1645,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1564.06,"{""promo"": ""28%""}",194152,1,Asia +2024-02-12,35544,3904,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1304.79,"{"""": ""17%""}",268193,0,Africa +2023-08-18,35545,5061,"[""Laptop"", ""Phone"", ""Tablet""]",1959.73,"{""loyalty"": ""26%""}",293566,1,Europe +2023-02-11,35546,2741,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",269.44,{},205714,1,Asia +2024-12-22,35547,5581,"[""Wireless Mouse"", ""Charger""]",4928.67,"{"""": ""5%""}",225511,1,Africa +2024-10-31,35548,2558,"[""Wireless Mouse"", ""Phone""]",1254.45,"{""seasonal"": ""28%""}",215636,1,South America +2023-06-21,35549,7136,"[""Keyboard"", ""Monitor""]",410.45,"{"""": ""14%""}",156530,1,South America +2023-12-13,35550,1061,"[""Phone"", ""Charger""]",1559.66,{},172457,0,South America +2023-03-19,35551,8110,"[""Laptop""]",1259.94,"{""loyalty"": ""28%""}",142454,0,Africa +2024-05-26,35552,1608,"[""Keyboard""]",1071.92,"{""loyalty"": ""10%""}",106031,0,South America +2024-07-20,35553,8165,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4346.41,{},175346,0,Asia +2024-05-21,35554,3947,"[""Laptop"", ""Monitor""]",4722.93,{},7263,1,Africa +2023-09-09,35555,7502,"[""Phone"", ""Keyboard""]",2793.87,{},183298,1,Asia +2023-04-13,35556,521,"[""Phone"", ""Headphones"", ""Laptop""]",1366.55,{},16627,0,Asia +2023-01-04,35557,8990,"[""Charger"", ""Tablet"", ""Keyboard""]",429.12,"{""loyalty"": ""12%""}",13007,0,Europe +2024-07-09,35558,5810,"[""Headphones"", ""Laptop""]",627.85,"{""promo"": ""23%""}",124287,1,South America +2023-04-24,35559,4889,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2365.0,{},199199,0,North America +2024-07-29,35560,8102,"[""Monitor""]",3076.58,{},127438,0,Africa +2023-07-12,35561,7986,"[""Tablet"", ""Laptop"", ""Monitor""]",2901.89,"{""seasonal"": ""20%""}",124514,0,Africa +2024-09-14,35562,9256,"[""Laptop"", ""Monitor"", ""Keyboard""]",1236.6,{},20641,1,Asia +2024-09-11,35563,6814,"[""Laptop"", ""Tablet"", ""Phone""]",4803.42,"{"""": ""15%""}",296519,1,North America +2024-12-02,35564,5803,"[""Keyboard"", ""Monitor"", ""Charger""]",2648.67,{},289557,0,Asia +2023-08-30,35565,4727,"[""Wireless Mouse""]",1474.61,{},99402,0,North America +2023-07-10,35566,2049,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1625.26,"{"""": ""30%""}",275325,0,Asia +2024-09-05,35567,7922,"[""Wireless Mouse"", ""Charger""]",4811.64,"{""seasonal"": ""30%""}",192263,1,Africa +2024-01-26,35568,525,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",815.41,{},3414,0,South America +2023-12-15,35569,7097,"[""Monitor"", ""Laptop"", ""Headphones""]",302.59,{},92528,1,North America +2024-11-30,35570,3670,"[""Charger""]",4249.63,"{""seasonal"": ""9%""}",60609,0,South America +2024-02-11,35571,2301,"[""Charger""]",4043.83,"{""seasonal"": ""19%""}",136606,1,North America +2024-10-31,35572,5282,"[""Charger"", ""Keyboard""]",3159.39,"{"""": ""10%""}",79178,0,South America +2024-05-17,35573,5895,"[""Laptop""]",1024.55,{},131813,1,Africa +2023-01-27,35574,4501,"[""Charger"", ""Keyboard""]",3078.96,"{""promo"": ""28%""}",55742,1,North America +2023-09-04,35575,5395,"[""Laptop""]",4636.52,"{""seasonal"": ""19%""}",194563,1,North America +2024-11-14,35576,2633,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2713.44,{},126330,1,South America +2023-09-03,35577,3393,"[""Monitor"", ""Headphones""]",3793.72,"{""promo"": ""18%""}",84587,1,Africa +2023-03-13,35578,9592,"[""Tablet""]",2536.36,"{"""": ""30%""}",292592,1,Africa +2023-01-26,35579,2104,"[""Monitor"", ""Headphones"", ""Phone""]",3015.1,"{"""": ""6%""}",52827,1,South America +2023-10-31,35580,2865,"[""Charger""]",3748.8,{},269801,0,North America +2023-03-31,35581,4469,"[""Phone"", ""Monitor""]",138.99,{},200902,1,Europe +2023-09-02,35582,7361,"[""Phone""]",4774.35,"{""loyalty"": ""16%""}",221878,1,Africa +2024-05-17,35583,9419,"[""Monitor"", ""Headphones""]",1477.83,{},288044,0,South America +2024-01-29,35584,7067,"[""Phone"", ""Wireless Mouse""]",2550.52,"{""seasonal"": ""15%""}",257759,1,Africa +2023-09-23,35585,9530,"[""Wireless Mouse""]",4694.72,"{""loyalty"": ""16%""}",291678,0,North America +2023-03-07,35586,1118,"[""Headphones""]",1520.86,{},139019,0,North America +2024-03-09,35587,8182,"[""Headphones""]",2330.98,{},285912,0,South America +2024-05-03,35588,5196,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2003.37,"{"""": ""18%""}",203172,1,North America +2023-05-02,35589,8262,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",220.41,{},230175,1,North America +2024-09-14,35590,2988,"[""Wireless Mouse""]",3615.8,"{""promo"": ""12%""}",84577,1,North America +2024-12-09,35591,5205,"[""Laptop"", ""Phone""]",834.93,"{""seasonal"": ""9%""}",271069,1,South America +2024-08-16,35592,8141,"[""Laptop"", ""Monitor"", ""Keyboard""]",1304.43,"{""loyalty"": ""27%""}",244958,1,South America +2023-09-21,35593,4194,"[""Wireless Mouse""]",424.93,"{""loyalty"": ""16%""}",129733,0,Africa +2023-10-27,35594,2747,"[""Keyboard""]",3024.66,{},179716,1,Europe +2024-02-02,35595,7366,"[""Charger"", ""Tablet"", ""Phone""]",3579.09,"{""seasonal"": ""27%""}",193781,0,Africa +2023-12-11,35596,6645,"[""Laptop""]",3088.04,{},40607,0,Asia +2023-04-28,35597,8487,"[""Phone"", ""Keyboard""]",161.86,{},121411,0,Africa +2023-08-16,35598,8117,"[""Monitor"", ""Headphones"", ""Charger""]",2960.12,{},235292,1,South America +2024-01-26,35599,4898,"[""Charger""]",4746.78,"{""promo"": ""15%""}",57944,0,Africa +2023-03-31,35600,1927,"[""Laptop"", ""Monitor""]",1483.0,"{"""": ""15%""}",155715,0,Asia +2023-07-06,35601,5408,"[""Tablet"", ""Headphones""]",4950.63,{},148501,1,Asia +2024-08-21,35602,2741,"[""Monitor"", ""Headphones""]",2309.04,{},126794,0,South America +2023-10-29,35603,5340,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1942.26,"{""seasonal"": ""13%""}",109518,1,Europe +2024-11-26,35604,7633,"[""Wireless Mouse"", ""Monitor""]",3177.66,{},57295,1,North America +2024-12-17,35605,1828,"[""Tablet"", ""Phone""]",1940.49,{},142507,1,South America +2023-02-28,35606,726,"[""Laptop""]",2040.67,{},1743,1,Europe +2024-08-19,35607,5246,"[""Tablet""]",2426.12,"{"""": ""17%""}",40236,1,Africa +2024-07-08,35608,2375,"[""Wireless Mouse"", ""Charger""]",961.71,"{""promo"": ""29%""}",66305,0,Europe +2023-04-30,35609,3150,"[""Keyboard""]",3256.41,{},116700,1,Asia +2023-08-21,35610,4138,"[""Charger"", ""Keyboard""]",2829.35,"{""promo"": ""10%""}",177642,0,South America +2024-11-07,35611,7187,"[""Charger""]",319.91,{},4001,1,North America +2024-10-11,35612,6161,"[""Tablet""]",1480.63,"{"""": ""22%""}",88164,0,North America +2024-02-01,35613,2902,"[""Tablet"", ""Laptop""]",3356.44,"{""promo"": ""25%""}",36598,0,Europe +2024-02-23,35614,5080,"[""Headphones"", ""Tablet""]",688.47,{},60198,0,North America +2023-11-20,35615,9566,"[""Tablet""]",579.47,"{""loyalty"": ""5%""}",175163,0,Europe +2023-12-05,35616,8594,"[""Phone""]",1708.4,"{"""": ""6%""}",210474,1,South America +2024-05-30,35617,1302,"[""Charger"", ""Monitor"", ""Keyboard""]",4494.58,{},93075,1,South America +2024-08-30,35618,6176,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4992.47,{},84887,0,Europe +2023-05-11,35619,3069,"[""Phone""]",3020.96,{},15212,1,Europe +2023-06-11,35620,9310,"[""Wireless Mouse"", ""Laptop""]",4328.54,"{""promo"": ""27%""}",47537,1,Europe +2024-09-28,35621,4008,"[""Laptop"", ""Monitor""]",390.98,"{"""": ""14%""}",168105,1,South America +2024-01-10,35622,2978,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1220.03,"{""seasonal"": ""29%""}",111432,0,Asia +2023-08-28,35623,7067,"[""Phone"", ""Tablet""]",1050.04,{},16669,0,North America +2023-09-30,35624,2059,"[""Wireless Mouse""]",2141.52,"{""seasonal"": ""11%""}",30444,1,Europe +2023-09-10,35625,2207,"[""Wireless Mouse"", ""Tablet""]",1445.16,"{""seasonal"": ""19%""}",267262,1,Asia +2024-03-11,35626,8863,"[""Phone""]",1572.18,{},293026,1,Europe +2024-02-05,35627,8862,"[""Wireless Mouse""]",2412.28,"{""loyalty"": ""15%""}",119905,0,South America +2024-11-17,35628,650,"[""Laptop""]",105.52,{},153697,0,Africa +2024-07-17,35629,1700,"[""Charger"", ""Headphones"", ""Keyboard""]",2276.9,{},9855,0,South America +2024-07-31,35630,2455,"[""Headphones""]",2470.19,{},292214,0,Europe +2024-01-01,35631,426,"[""Monitor"", ""Keyboard""]",4432.43,"{""seasonal"": ""17%""}",35300,1,Europe +2024-11-30,35632,3504,"[""Tablet""]",3055.43,"{""loyalty"": ""11%""}",8705,1,Asia +2023-12-03,35633,1423,"[""Monitor"", ""Wireless Mouse""]",3968.16,{},207571,0,Africa +2023-02-18,35634,9564,"[""Tablet"", ""Laptop"", ""Monitor""]",2722.93,"{""seasonal"": ""26%""}",84988,1,Africa +2023-12-06,35635,1589,"[""Wireless Mouse""]",3666.95,{},12404,1,North America +2024-12-20,35636,5826,"[""Tablet""]",2224.15,"{""promo"": ""20%""}",54969,0,Africa +2023-05-22,35637,7509,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2989.66,{},67300,1,Europe +2023-12-02,35638,1049,"[""Tablet"", ""Phone""]",348.8,"{""seasonal"": ""7%""}",289719,0,South America +2024-05-27,35639,8069,"[""Laptop"", ""Tablet""]",826.6,{},77160,0,South America +2024-11-19,35640,8190,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",622.17,"{"""": ""6%""}",148698,0,Africa +2023-11-05,35641,7788,"[""Laptop""]",3379.28,{},83019,1,Africa +2023-02-27,35642,6589,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3015.22,{},83488,1,North America +2023-12-16,35643,628,"[""Tablet""]",3516.31,"{""seasonal"": ""26%""}",196289,0,Africa +2023-01-22,35644,5100,"[""Phone"", ""Charger""]",4276.48,{},114582,1,South America +2024-10-12,35645,5559,"[""Headphones"", ""Wireless Mouse""]",1093.07,{},277172,0,Africa +2024-09-20,35646,5703,"[""Phone"", ""Keyboard""]",4238.6,"{""loyalty"": ""18%""}",38855,1,Africa +2024-08-31,35647,9750,"[""Headphones"", ""Laptop""]",3955.29,{},53479,1,North America +2023-11-23,35648,7501,"[""Monitor""]",658.3,{},139398,1,Europe +2024-03-30,35649,7497,"[""Headphones""]",327.82,"{""seasonal"": ""18%""}",263548,1,South America +2023-02-03,35650,640,"[""Monitor"", ""Headphones""]",2714.37,{},11120,1,Asia +2023-08-09,35651,3034,"[""Monitor""]",2314.75,"{""loyalty"": ""8%""}",82204,0,Africa +2024-09-05,35652,4286,"[""Keyboard"", ""Phone"", ""Headphones""]",528.65,"{""promo"": ""25%""}",135808,0,South America +2023-01-31,35653,1219,"[""Phone"", ""Tablet""]",4727.52,{},40947,0,Europe +2023-12-13,35654,435,"[""Headphones""]",2986.05,{},250737,0,Africa +2024-01-16,35655,307,"[""Keyboard""]",1596.02,"{"""": ""17%""}",180156,1,North America +2024-06-12,35656,471,"[""Wireless Mouse""]",2800.07,{},33573,1,North America +2023-05-25,35657,7474,"[""Keyboard""]",3287.08,{},280884,0,Europe +2024-09-15,35658,1084,"[""Phone"", ""Keyboard"", ""Tablet""]",497.2,{},105391,1,Asia +2024-04-08,35659,6441,"[""Phone"", ""Laptop"", ""Charger""]",3790.93,{},23227,1,Asia +2024-08-16,35660,2496,"[""Charger"", ""Monitor""]",4686.99,{},285231,1,North America +2023-05-27,35661,3120,"[""Phone""]",3744.44,"{""promo"": ""14%""}",171778,1,Africa +2023-01-06,35662,6977,"[""Headphones"", ""Monitor"", ""Charger""]",825.77,{},117528,1,South America +2023-07-16,35663,5388,"[""Monitor"", ""Charger"", ""Laptop""]",3282.79,{},163780,0,North America +2024-06-21,35664,7695,"[""Phone""]",3223.64,{},236804,0,Africa +2024-10-09,35665,8162,"[""Phone""]",2843.03,"{""promo"": ""13%""}",237914,1,North America +2023-03-09,35666,264,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1481.36,{},160687,0,North America +2023-06-05,35667,847,"[""Headphones""]",4142.03,{},178054,1,Africa +2023-04-10,35668,7401,"[""Laptop"", ""Keyboard"", ""Monitor""]",1009.45,"{"""": ""19%""}",231816,0,North America +2024-05-25,35669,8479,"[""Monitor"", ""Charger""]",4982.07,{},112762,1,Asia +2024-02-23,35670,2113,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4715.49,{},207971,1,Europe +2023-04-02,35671,7664,"[""Phone"", ""Keyboard""]",270.54,{},55628,1,Africa +2023-10-05,35672,5382,"[""Monitor"", ""Charger"", ""Laptop""]",4553.41,"{"""": ""15%""}",112503,1,Asia +2024-03-03,35673,9940,"[""Headphones""]",1313.24,"{""loyalty"": ""9%""}",251484,0,Asia +2023-09-20,35674,8721,"[""Charger"", ""Headphones"", ""Laptop""]",3306.2,{},156399,1,North America +2023-11-07,35675,5190,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4820.66,{},128412,0,Europe +2023-08-27,35676,3723,"[""Laptop"", ""Wireless Mouse""]",4207.77,{},111706,0,Asia +2023-02-03,35677,6637,"[""Laptop"", ""Phone""]",4083.97,{},165988,1,Africa +2024-04-07,35678,3166,"[""Phone""]",2328.57,"{""loyalty"": ""24%""}",69887,0,North America +2024-06-16,35679,7520,"[""Charger""]",4238.78,{},165394,0,South America +2023-02-21,35680,6368,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4667.34,"{"""": ""22%""}",287874,1,Africa +2023-04-14,35681,4669,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2837.11,"{""promo"": ""30%""}",62730,1,Africa +2024-09-08,35682,51,"[""Wireless Mouse""]",4821.2,"{"""": ""14%""}",193121,0,North America +2023-08-05,35683,9431,"[""Charger""]",4988.19,{},73461,1,Asia +2024-03-20,35684,7531,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2507.18,"{"""": ""13%""}",123043,0,South America +2023-11-18,35685,4424,"[""Charger"", ""Tablet"", ""Headphones""]",487.48,{},212388,1,Europe +2023-06-21,35686,9432,"[""Phone""]",2980.36,{},107111,0,South America +2024-08-25,35687,8070,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",173.61,"{""promo"": ""7%""}",100244,1,Africa +2023-01-12,35688,4091,"[""Headphones""]",2624.16,"{""promo"": ""6%""}",43189,1,Europe +2024-08-28,35689,7597,"[""Wireless Mouse""]",1033.27,"{"""": ""22%""}",10964,1,Asia +2024-03-08,35690,7021,"[""Charger""]",3207.39,"{""seasonal"": ""25%""}",5304,0,South America +2024-09-10,35691,9967,"[""Laptop""]",3677.12,"{""promo"": ""18%""}",22641,1,South America +2024-11-28,35692,7109,"[""Charger"", ""Phone"", ""Laptop""]",1180.35,"{"""": ""21%""}",117996,1,South America +2024-06-02,35693,8714,"[""Headphones"", ""Wireless Mouse""]",854.39,"{""loyalty"": ""17%""}",242723,0,North America +2024-02-25,35694,4544,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1744.23,{},299789,1,Africa +2023-07-05,35695,9454,"[""Keyboard""]",4678.51,"{""promo"": ""28%""}",8472,0,North America +2024-04-15,35696,1068,"[""Headphones""]",3439.99,"{"""": ""26%""}",52704,0,Asia +2024-08-15,35697,5100,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",419.27,"{""promo"": ""30%""}",161891,1,South America +2023-03-12,35698,7690,"[""Laptop""]",4100.91,{},88664,0,Africa +2024-07-02,35699,8000,"[""Tablet""]",3844.87,"{""promo"": ""29%""}",226251,1,North America +2024-01-02,35700,3668,"[""Monitor"", ""Phone""]",2509.12,"{""seasonal"": ""25%""}",193653,0,North America +2023-05-19,35701,1658,"[""Tablet"", ""Laptop"", ""Charger""]",3685.7,{},18163,0,Europe +2023-03-03,35702,4714,"[""Charger""]",424.14,"{""seasonal"": ""24%""}",91978,1,Africa +2024-12-04,35703,9130,"[""Laptop""]",2685.71,"{"""": ""13%""}",291386,1,Asia +2024-04-19,35704,2069,"[""Tablet""]",165.17,"{""promo"": ""12%""}",114574,0,Africa +2023-06-08,35705,4780,"[""Wireless Mouse"", ""Headphones""]",3806.47,"{""loyalty"": ""8%""}",86652,1,North America +2023-09-05,35706,7567,"[""Charger"", ""Monitor"", ""Tablet""]",1025.04,"{""loyalty"": ""24%""}",121103,0,Asia +2023-05-28,35707,4929,"[""Monitor"", ""Laptop""]",3528.19,"{"""": ""30%""}",217485,1,Europe +2023-11-09,35708,9458,"[""Wireless Mouse""]",2794.28,{},213996,1,Asia +2023-05-29,35709,9781,"[""Keyboard""]",4772.84,"{""seasonal"": ""22%""}",92148,1,Europe +2023-06-22,35710,3781,"[""Charger"", ""Headphones""]",637.64,"{""promo"": ""9%""}",97365,1,Africa +2023-10-03,35711,4108,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4999.06,"{"""": ""9%""}",263356,1,North America +2023-07-04,35712,9088,"[""Keyboard""]",4160.51,"{""promo"": ""20%""}",228115,0,Europe +2024-12-02,35713,6030,"[""Headphones"", ""Tablet""]",2378.67,"{"""": ""16%""}",172864,0,Europe +2024-02-06,35714,1564,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3939.04,"{"""": ""8%""}",287881,1,South America +2023-03-25,35715,2031,"[""Charger""]",4891.13,{},277935,1,North America +2023-03-22,35716,886,"[""Tablet"", ""Laptop"", ""Monitor""]",3078.97,"{"""": ""10%""}",163137,0,Asia +2024-10-28,35717,7212,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2311.68,{},132358,0,Asia +2024-01-09,35718,196,"[""Phone""]",4544.05,{},109534,0,Africa +2023-03-15,35719,6635,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2434.43,"{""loyalty"": ""12%""}",232439,1,Asia +2024-10-27,35720,8112,"[""Phone"", ""Laptop""]",2655.09,"{"""": ""13%""}",62383,0,North America +2024-04-29,35721,4506,"[""Headphones""]",387.26,"{""loyalty"": ""8%""}",17878,1,Europe +2024-03-03,35722,6539,"[""Headphones"", ""Phone"", ""Charger""]",1267.0,{},93500,0,South America +2023-11-26,35723,519,"[""Wireless Mouse""]",322.87,{},79665,0,Asia +2024-04-06,35724,3597,"[""Tablet""]",426.55,"{""promo"": ""12%""}",228841,0,Africa +2023-08-09,35725,6661,"[""Phone""]",3771.19,"{"""": ""7%""}",298521,1,Europe +2023-06-14,35726,9725,"[""Monitor"", ""Wireless Mouse""]",4432.3,{},165893,1,South America +2023-11-22,35727,5814,"[""Monitor"", ""Keyboard"", ""Tablet""]",2299.52,{},254717,0,North America +2023-09-30,35728,4261,"[""Phone""]",1705.08,{},95729,0,North America +2023-01-11,35729,2119,"[""Charger"", ""Laptop""]",3844.45,{},214805,1,South America +2023-08-30,35730,5113,"[""Wireless Mouse"", ""Laptop""]",1551.4,"{"""": ""17%""}",144669,1,Asia +2023-12-17,35731,9551,"[""Tablet"", ""Headphones"", ""Charger""]",3911.9,"{""loyalty"": ""12%""}",273806,0,Africa +2024-10-01,35732,8980,"[""Phone""]",2766.88,{},29842,1,South America +2023-05-28,35733,6546,"[""Charger"", ""Monitor""]",3416.42,"{"""": ""19%""}",153203,0,North America +2023-08-27,35734,8542,"[""Tablet""]",4974.88,"{"""": ""11%""}",210491,1,Africa +2023-10-17,35735,6344,"[""Headphones""]",2483.87,{},299911,1,Europe +2024-12-16,35736,7591,"[""Tablet"", ""Wireless Mouse""]",4240.2,"{""loyalty"": ""20%""}",297775,1,Africa +2023-10-22,35737,1839,"[""Keyboard"", ""Tablet""]",3007.22,"{"""": ""21%""}",142717,1,Africa +2024-06-10,35738,658,"[""Wireless Mouse""]",3676.66,{},227128,1,Asia +2023-03-21,35739,3209,"[""Keyboard""]",1585.76,"{""loyalty"": ""16%""}",52113,1,Europe +2023-06-13,35740,4628,"[""Tablet""]",2415.85,"{""seasonal"": ""5%""}",42678,1,Asia +2023-05-25,35741,3837,"[""Charger""]",3245.52,{},12554,1,South America +2024-05-01,35742,7082,"[""Tablet"", ""Charger""]",1023.96,{},225017,0,Africa +2024-08-11,35743,9955,"[""Keyboard"", ""Headphones""]",979.66,"{""promo"": ""23%""}",32389,0,Africa +2023-06-11,35744,9229,"[""Laptop""]",563.39,{},203024,1,South America +2024-02-22,35745,894,"[""Phone"", ""Charger"", ""Monitor""]",878.78,"{""loyalty"": ""7%""}",293993,1,South America +2024-07-16,35746,9404,"[""Laptop""]",2444.58,"{""seasonal"": ""25%""}",207125,0,Asia +2024-01-08,35747,9355,"[""Charger"", ""Tablet""]",4190.61,{},69958,0,Asia +2023-07-13,35748,4061,"[""Keyboard""]",1412.75,{},31911,0,North America +2024-03-06,35749,4443,"[""Phone"", ""Headphones"", ""Keyboard""]",3071.95,"{""seasonal"": ""22%""}",131766,0,South America +2024-02-20,35750,9344,"[""Headphones"", ""Monitor""]",1956.39,"{""loyalty"": ""8%""}",233435,0,Europe +2024-12-20,35751,2761,"[""Keyboard"", ""Laptop""]",3063.41,"{"""": ""10%""}",116582,0,South America +2024-04-03,35752,1012,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3825.62,{},228871,0,South America +2023-05-15,35753,333,"[""Tablet"", ""Headphones"", ""Phone""]",888.44,{},267445,0,South America +2024-06-03,35754,2240,"[""Wireless Mouse"", ""Tablet""]",2958.05,{},287286,1,Europe +2023-10-30,35755,6090,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",455.46,"{"""": ""6%""}",109910,0,Europe +2023-04-15,35756,893,"[""Keyboard"", ""Phone""]",2518.79,{},296148,0,Africa +2024-03-25,35757,335,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2327.62,{},6896,0,Europe +2023-09-05,35758,5435,"[""Phone"", ""Charger""]",4080.04,"{""promo"": ""25%""}",47107,0,Asia +2024-06-02,35759,4363,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4329.09,"{""loyalty"": ""16%""}",201490,1,South America +2023-12-31,35760,7674,"[""Monitor"", ""Wireless Mouse""]",1974.49,"{""loyalty"": ""13%""}",88696,0,Africa +2024-04-11,35761,9161,"[""Headphones""]",814.63,{},167321,1,South America +2023-12-12,35762,2189,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4363.18,{},202280,1,North America +2024-11-23,35763,3030,"[""Monitor"", ""Charger"", ""Tablet""]",2602.48,{},95036,1,Africa +2024-05-19,35764,945,"[""Keyboard"", ""Laptop"", ""Phone""]",2468.25,{},161908,1,North America +2023-09-07,35765,4249,"[""Monitor"", ""Charger""]",2623.17,"{""loyalty"": ""26%""}",182613,1,Africa +2023-01-09,35766,6104,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",50.94,"{"""": ""29%""}",203007,0,Asia +2023-02-11,35767,4400,"[""Charger""]",3678.95,{},272086,0,South America +2024-09-22,35768,3011,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1323.59,"{""loyalty"": ""25%""}",261112,0,Europe +2024-04-06,35769,3331,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2791.55,"{"""": ""7%""}",230222,1,Africa +2024-04-17,35770,6775,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",402.92,{},188067,1,Asia +2023-09-18,35771,8131,"[""Wireless Mouse"", ""Tablet""]",3996.2,{},20195,0,Asia +2023-09-20,35772,73,"[""Phone"", ""Headphones"", ""Monitor""]",4263.68,"{""seasonal"": ""24%""}",183171,0,Africa +2023-10-11,35773,58,"[""Keyboard""]",2394.3,{},288621,0,South America +2024-06-18,35774,7606,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2893.28,{},164400,0,Asia +2023-10-24,35775,9674,"[""Laptop""]",304.95,"{""promo"": ""9%""}",140196,0,Asia +2024-03-24,35776,9167,"[""Tablet""]",3777.87,"{""promo"": ""14%""}",216889,0,North America +2023-06-05,35777,2827,"[""Wireless Mouse"", ""Keyboard""]",4441.52,"{""promo"": ""27%""}",249555,0,Asia +2024-12-12,35778,4669,"[""Monitor"", ""Tablet"", ""Headphones""]",597.6,{},82794,1,Africa +2023-05-01,35779,4034,"[""Keyboard""]",2901.09,"{""loyalty"": ""13%""}",228526,0,Europe +2024-03-28,35780,3727,"[""Charger"", ""Keyboard""]",4384.69,"{""promo"": ""10%""}",176616,1,Africa +2023-11-25,35781,9054,"[""Phone"", ""Monitor"", ""Headphones""]",2062.22,{},105479,0,Africa +2023-09-15,35782,9587,"[""Tablet"", ""Charger"", ""Keyboard""]",1314.95,"{"""": ""21%""}",139445,0,Europe +2024-01-15,35783,9101,"[""Headphones""]",789.0,"{""seasonal"": ""24%""}",196205,1,Europe +2024-08-23,35784,4192,"[""Phone"", ""Tablet"", ""Laptop""]",623.9,"{""seasonal"": ""8%""}",40164,0,North America +2024-06-05,35785,3789,"[""Tablet""]",4142.47,{},1028,0,North America +2023-09-18,35786,170,"[""Phone"", ""Monitor"", ""Keyboard""]",4958.65,{},260211,0,Asia +2023-10-21,35787,4551,"[""Phone""]",4110.51,{},276873,0,Asia +2024-10-03,35788,5546,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1162.58,{},59735,0,Asia +2024-06-07,35789,4061,"[""Monitor"", ""Laptop""]",4202.08,{},146343,1,Europe +2023-06-28,35790,4999,"[""Monitor""]",4984.88,{},115313,0,North America +2023-06-10,35791,752,"[""Headphones"", ""Tablet"", ""Laptop""]",147.2,"{""seasonal"": ""13%""}",60013,0,Asia +2023-03-20,35792,684,"[""Tablet"", ""Wireless Mouse""]",757.53,"{"""": ""25%""}",2877,0,Asia +2023-12-26,35793,6785,"[""Monitor"", ""Headphones"", ""Laptop""]",1890.54,{},277149,1,South America +2023-04-17,35794,8501,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2351.56,{},102445,1,North America +2024-10-12,35795,8580,"[""Headphones""]",4088.74,"{""loyalty"": ""19%""}",70739,1,North America +2023-01-25,35796,9510,"[""Headphones"", ""Tablet""]",1723.31,{},55568,0,Europe +2023-04-02,35797,3884,"[""Keyboard"", ""Monitor"", ""Headphones""]",3061.19,"{"""": ""26%""}",259121,0,Africa +2023-08-06,35798,1865,"[""Laptop"", ""Tablet""]",3700.97,"{""promo"": ""22%""}",200472,1,South America +2023-09-13,35799,5700,"[""Tablet"", ""Phone""]",2691.03,{},247111,1,Africa +2023-05-27,35800,6387,"[""Keyboard""]",1025.85,{},184787,0,Europe +2024-01-17,35801,8023,"[""Monitor"", ""Wireless Mouse""]",1849.53,{},54716,1,Africa +2023-09-14,35802,4396,"[""Monitor"", ""Charger"", ""Headphones""]",3920.8,{},7669,0,Asia +2023-05-31,35803,8714,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",483.23,{},233044,0,Europe +2024-06-10,35804,3499,"[""Charger""]",691.77,"{""promo"": ""6%""}",89934,1,North America +2023-05-01,35805,6790,"[""Tablet""]",2267.87,{},39604,0,Asia +2024-10-17,35806,4184,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",902.11,"{""promo"": ""12%""}",246248,0,Africa +2023-06-02,35807,738,"[""Headphones""]",3004.33,{},114728,1,North America +2024-12-04,35808,890,"[""Charger""]",1155.79,"{"""": ""9%""}",241767,0,Africa +2024-03-15,35809,7498,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4679.94,{},134152,0,Africa +2023-03-26,35810,3095,"[""Charger""]",4083.89,{},187691,1,North America +2023-11-21,35811,8696,"[""Charger""]",2914.38,"{""seasonal"": ""21%""}",229051,1,Africa +2024-02-20,35812,6324,"[""Tablet"", ""Keyboard"", ""Phone""]",1739.32,"{""seasonal"": ""12%""}",62031,0,South America +2023-12-28,35813,3714,"[""Wireless Mouse"", ""Laptop""]",1881.69,{},57858,0,Asia +2024-01-23,35814,2055,"[""Wireless Mouse""]",2416.62,{},150876,0,South America +2023-08-05,35815,3065,"[""Phone"", ""Monitor""]",1320.16,{},128627,0,Europe +2024-08-10,35816,409,"[""Keyboard"", ""Tablet"", ""Charger""]",79.77,{},293851,0,North America +2024-09-19,35817,6402,"[""Tablet"", ""Headphones"", ""Monitor""]",631.45,{},176941,1,Europe +2024-06-12,35818,2046,"[""Monitor"", ""Tablet"", ""Headphones""]",897.87,"{"""": ""23%""}",200597,0,Asia +2023-07-22,35819,2879,"[""Monitor""]",3949.08,{},272837,1,Europe +2024-08-04,35820,9590,"[""Monitor""]",4937.69,"{""promo"": ""7%""}",52605,0,North America +2023-09-26,35821,2522,"[""Wireless Mouse"", ""Tablet""]",1034.21,"{""loyalty"": ""5%""}",31052,0,Africa +2024-12-31,35822,1941,"[""Keyboard""]",3672.96,{},7639,0,South America +2023-02-28,35823,6285,"[""Laptop"", ""Wireless Mouse""]",476.97,{},132572,1,Africa +2024-06-14,35824,781,"[""Keyboard""]",4312.63,"{""loyalty"": ""29%""}",222371,1,Europe +2024-10-11,35825,4575,"[""Charger"", ""Keyboard""]",1430.22,{},58838,1,North America +2024-07-27,35826,8008,"[""Charger"", ""Keyboard""]",4655.09,{},48415,0,South America +2023-12-18,35827,9997,"[""Wireless Mouse"", ""Monitor""]",4444.83,"{""loyalty"": ""17%""}",106945,1,North America +2023-02-06,35828,3149,"[""Laptop"", ""Headphones""]",3114.88,"{""promo"": ""14%""}",221891,0,Europe +2023-01-25,35829,3432,"[""Tablet"", ""Headphones""]",3485.23,"{"""": ""22%""}",253394,0,North America +2024-06-04,35830,9483,"[""Headphones""]",4831.42,{},59889,0,Africa +2023-05-15,35831,5230,"[""Headphones"", ""Charger"", ""Tablet""]",663.84,{},74352,1,North America +2023-11-27,35832,7869,"[""Monitor"", ""Keyboard"", ""Laptop""]",1905.54,"{""seasonal"": ""21%""}",169322,0,South America +2024-12-14,35833,7970,"[""Wireless Mouse""]",1413.71,{},44295,0,South America +2024-04-28,35834,6672,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",914.29,{},80855,1,Asia +2023-10-23,35835,9685,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3494.19,"{""promo"": ""10%""}",244795,0,Europe +2023-10-04,35836,8919,"[""Tablet""]",1559.33,{},39864,0,South America +2024-06-08,35837,4358,"[""Headphones"", ""Laptop""]",4572.3,"{""seasonal"": ""11%""}",95559,0,Africa +2023-02-18,35838,4813,"[""Keyboard"", ""Tablet""]",4168.2,{},272387,0,South America +2023-04-05,35839,7689,"[""Charger""]",497.34,"{"""": ""13%""}",131216,1,North America +2024-11-04,35840,2838,"[""Laptop"", ""Charger""]",3302.53,{},106901,0,Asia +2024-06-11,35841,3672,"[""Monitor"", ""Keyboard""]",793.66,{},81089,0,North America +2023-10-11,35842,3373,"[""Wireless Mouse""]",1305.59,"{""loyalty"": ""7%""}",3242,1,North America +2024-05-31,35843,4063,"[""Keyboard""]",580.23,"{""promo"": ""6%""}",254945,1,South America +2024-01-06,35844,4011,"[""Keyboard"", ""Monitor""]",808.17,{},241744,1,North America +2024-08-11,35845,3013,"[""Phone""]",752.74,"{"""": ""16%""}",131950,1,South America +2023-07-16,35846,7573,"[""Wireless Mouse""]",2851.89,"{""promo"": ""5%""}",214625,0,South America +2023-01-05,35847,4380,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2822.36,{},162346,0,South America +2024-05-09,35848,2490,"[""Keyboard"", ""Headphones"", ""Charger""]",2877.6,"{"""": ""12%""}",283988,1,Europe +2024-06-28,35849,9123,"[""Charger"", ""Wireless Mouse""]",3812.62,{},169021,0,North America +2023-02-25,35850,2794,"[""Phone""]",4336.01,"{""loyalty"": ""30%""}",46551,0,South America +2023-07-21,35851,108,"[""Keyboard"", ""Monitor""]",4391.14,"{"""": ""26%""}",255790,1,South America +2024-07-28,35852,258,"[""Laptop"", ""Keyboard"", ""Charger""]",3272.0,"{"""": ""28%""}",297501,0,North America +2024-12-07,35853,5168,"[""Keyboard"", ""Headphones"", ""Laptop""]",3230.57,"{"""": ""17%""}",74363,1,South America +2023-03-29,35854,4521,"[""Headphones"", ""Monitor"", ""Tablet""]",3505.86,{},121589,0,North America +2024-11-20,35855,4956,"[""Charger""]",1042.88,"{"""": ""18%""}",159109,0,South America +2023-12-06,35856,1058,"[""Wireless Mouse"", ""Keyboard""]",1684.69,"{""loyalty"": ""30%""}",80937,1,Africa +2023-01-02,35857,1193,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1251.54,{},243386,1,North America +2024-12-29,35858,58,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2566.46,"{"""": ""23%""}",50358,1,Europe +2024-01-21,35859,4143,"[""Keyboard"", ""Laptop"", ""Monitor""]",3958.06,"{""loyalty"": ""15%""}",31691,0,Europe +2023-10-26,35860,6507,"[""Monitor"", ""Laptop""]",2699.73,"{""loyalty"": ""18%""}",253101,0,Europe +2023-06-08,35861,4973,"[""Keyboard"", ""Tablet""]",1652.75,{},80187,0,North America +2023-09-26,35862,2469,"[""Keyboard""]",3436.31,"{""promo"": ""19%""}",258323,1,Asia +2023-08-24,35863,8644,"[""Phone""]",3290.57,"{""promo"": ""21%""}",270096,0,North America +2023-11-20,35864,6457,"[""Charger""]",272.7,"{""promo"": ""24%""}",92565,1,Africa +2023-11-04,35865,8130,"[""Tablet""]",1523.26,{},187074,1,Europe +2023-08-10,35866,5350,"[""Laptop""]",4873.87,"{"""": ""21%""}",197852,0,Asia +2024-02-10,35867,5245,"[""Keyboard"", ""Headphones"", ""Phone""]",950.82,"{""seasonal"": ""26%""}",101116,1,Asia +2023-07-07,35868,2718,"[""Headphones"", ""Phone"", ""Tablet""]",374.76,{},296012,1,South America +2023-11-05,35869,2366,"[""Monitor"", ""Keyboard""]",2205.17,"{"""": ""29%""}",32502,1,South America +2023-01-02,35870,1841,"[""Charger"", ""Tablet""]",2829.25,{},223522,0,North America +2024-06-05,35871,1982,"[""Keyboard"", ""Charger""]",4373.92,"{""seasonal"": ""8%""}",203592,0,Asia +2023-01-28,35872,759,"[""Charger""]",4490.59,"{""loyalty"": ""21%""}",90319,1,Europe +2023-03-24,35873,43,"[""Charger"", ""Monitor"", ""Tablet""]",2330.83,"{""seasonal"": ""29%""}",26211,0,Asia +2023-07-13,35874,1629,"[""Monitor""]",4826.88,"{""loyalty"": ""19%""}",259659,1,South America +2024-01-05,35875,6287,"[""Wireless Mouse"", ""Keyboard""]",2728.66,{},266537,0,Asia +2023-01-24,35876,8083,"[""Keyboard"", ""Tablet""]",4797.19,"{""promo"": ""16%""}",92647,0,Africa +2023-11-22,35877,1759,"[""Monitor"", ""Laptop"", ""Headphones""]",3974.84,{},207472,1,Africa +2023-03-28,35878,3225,"[""Laptop""]",4348.55,{},271047,1,Europe +2023-05-23,35879,1117,"[""Keyboard"", ""Wireless Mouse""]",685.22,{},44441,0,Asia +2023-10-14,35880,4147,"[""Keyboard"", ""Monitor""]",839.69,{},140330,0,Europe +2023-09-25,35881,9015,"[""Laptop"", ""Keyboard""]",4619.8,"{""seasonal"": ""20%""}",130747,1,Africa +2024-08-02,35882,971,"[""Keyboard"", ""Monitor""]",773.26,{},103022,1,North America +2024-10-07,35883,4924,"[""Laptop"", ""Headphones""]",3193.69,"{""seasonal"": ""13%""}",54891,0,North America +2023-02-14,35884,7426,"[""Wireless Mouse"", ""Monitor""]",2140.22,"{""promo"": ""9%""}",19591,0,North America +2024-07-28,35885,1242,"[""Wireless Mouse""]",636.85,{},85410,0,South America +2024-01-03,35886,2984,"[""Keyboard"", ""Laptop"", ""Phone""]",2637.36,{},234409,0,North America +2023-09-02,35887,1954,"[""Tablet""]",3033.97,{},214576,0,Asia +2023-03-10,35888,719,"[""Wireless Mouse"", ""Monitor""]",3291.58,"{""loyalty"": ""23%""}",152350,1,North America +2024-09-15,35889,6355,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1788.74,{},176109,0,Europe +2023-11-03,35890,1743,"[""Headphones"", ""Laptop""]",4842.29,{},139736,0,North America +2024-05-17,35891,860,"[""Monitor"", ""Tablet"", ""Phone""]",4809.34,{},91648,1,Asia +2024-06-13,35892,3952,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2027.96,"{""promo"": ""20%""}",158108,0,Asia +2024-06-09,35893,5767,"[""Monitor"", ""Phone""]",4516.37,"{""seasonal"": ""14%""}",32118,1,Europe +2023-07-18,35894,5122,"[""Tablet""]",3301.06,"{""promo"": ""20%""}",290590,1,Africa +2024-07-22,35895,8428,"[""Monitor"", ""Keyboard""]",596.81,{},75878,0,North America +2023-06-06,35896,3755,"[""Keyboard""]",2858.82,{},101856,0,South America +2023-07-10,35897,1009,"[""Wireless Mouse"", ""Headphones""]",3197.63,"{""seasonal"": ""9%""}",110846,1,Europe +2024-01-07,35898,182,"[""Laptop"", ""Wireless Mouse""]",2067.92,{},29643,1,Asia +2023-11-05,35899,2097,"[""Headphones"", ""Keyboard"", ""Laptop""]",1400.5,{},177829,1,North America +2024-09-11,35900,2689,"[""Keyboard"", ""Wireless Mouse""]",4555.39,{},246365,1,Europe +2024-10-07,35901,293,"[""Tablet""]",4835.4,{},19208,1,Africa +2023-03-13,35902,9206,"[""Monitor"", ""Wireless Mouse""]",1318.32,"{""loyalty"": ""8%""}",88154,1,Europe +2024-12-20,35903,4833,"[""Keyboard"", ""Headphones""]",2788.56,{},245168,1,South America +2023-01-07,35904,3174,"[""Headphones""]",3017.99,"{""seasonal"": ""7%""}",244127,1,Africa +2023-01-18,35905,4071,"[""Keyboard"", ""Phone""]",711.07,"{"""": ""26%""}",30453,0,Asia +2023-08-21,35906,7828,"[""Tablet"", ""Headphones"", ""Charger""]",2448.04,"{"""": ""18%""}",182122,0,North America +2024-03-30,35907,9569,"[""Phone"", ""Monitor""]",236.36,{},103601,1,Europe +2024-09-04,35908,2816,"[""Monitor"", ""Keyboard""]",2840.71,{},60315,1,South America +2024-10-30,35909,9251,"[""Keyboard"", ""Tablet"", ""Phone""]",2599.39,"{""seasonal"": ""16%""}",249070,0,South America +2024-04-28,35910,304,"[""Headphones""]",4619.56,"{""loyalty"": ""27%""}",183174,1,Asia +2024-09-15,35911,876,"[""Monitor""]",1030.01,"{"""": ""17%""}",199044,0,South America +2023-10-04,35912,3388,"[""Headphones""]",3657.88,"{""loyalty"": ""8%""}",189202,1,Asia +2023-05-22,35913,7603,"[""Monitor""]",2327.29,"{""promo"": ""8%""}",81034,1,South America +2023-05-20,35914,7499,"[""Phone"", ""Charger"", ""Tablet""]",4156.79,{},70612,0,Europe +2024-11-27,35915,1161,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2324.98,{},284919,0,South America +2023-12-08,35916,9032,"[""Headphones""]",4790.37,{},106454,0,South America +2023-02-20,35917,5454,"[""Keyboard"", ""Laptop"", ""Monitor""]",2800.86,{},9793,0,Asia +2024-05-29,35918,146,"[""Wireless Mouse"", ""Tablet""]",3141.06,"{""loyalty"": ""18%""}",240041,0,Africa +2023-03-31,35919,2024,"[""Laptop""]",168.48,{},237328,0,North America +2024-12-31,35920,9032,"[""Headphones"", ""Wireless Mouse""]",786.85,"{""seasonal"": ""16%""}",285029,1,Africa +2024-08-29,35921,3965,"[""Monitor"", ""Laptop""]",4413.54,{},48640,1,Europe +2024-08-11,35922,2698,"[""Tablet"", ""Charger""]",3759.07,{},127534,0,North America +2023-10-02,35923,3024,"[""Wireless Mouse"", ""Phone""]",2063.09,"{"""": ""9%""}",280237,1,Europe +2024-07-17,35924,6586,"[""Tablet"", ""Monitor"", ""Keyboard""]",4106.13,{},182796,1,South America +2024-11-25,35925,395,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1735.48,"{""seasonal"": ""21%""}",195722,0,Asia +2024-08-26,35926,7980,"[""Tablet"", ""Headphones""]",898.61,{},189210,1,Africa +2023-08-21,35927,1497,"[""Tablet"", ""Laptop"", ""Charger""]",3792.22,{},155072,1,Europe +2024-07-04,35928,6940,"[""Charger"", ""Monitor"", ""Tablet""]",2916.64,{},128388,0,Asia +2024-06-22,35929,4792,"[""Keyboard"", ""Wireless Mouse""]",1017.52,"{""seasonal"": ""19%""}",36812,1,North America +2023-09-25,35930,8602,"[""Wireless Mouse"", ""Phone""]",1006.8,{},138026,1,Asia +2023-03-20,35931,8560,"[""Laptop"", ""Headphones"", ""Monitor""]",2508.72,{},159961,0,North America +2023-02-03,35932,1400,"[""Headphones""]",1531.53,{},278578,0,Africa +2023-05-30,35933,6934,"[""Laptop"", ""Keyboard"", ""Headphones""]",2006.46,{},238991,1,Europe +2023-07-05,35934,5383,"[""Keyboard"", ""Monitor"", ""Headphones""]",4432.02,"{""seasonal"": ""10%""}",252522,1,Asia +2023-10-01,35935,3835,"[""Phone""]",2114.09,"{""seasonal"": ""7%""}",87553,1,North America +2023-12-14,35936,8724,"[""Headphones"", ""Monitor"", ""Tablet""]",2112.74,"{""seasonal"": ""11%""}",221913,1,North America +2023-03-07,35937,8896,"[""Keyboard""]",4400.32,"{""promo"": ""10%""}",140734,0,Europe +2024-08-26,35938,9578,"[""Keyboard""]",2618.06,{},105355,0,South America +2023-10-08,35939,9040,"[""Wireless Mouse""]",4278.34,"{""seasonal"": ""11%""}",280723,1,South America +2024-10-23,35940,4111,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1583.26,{},128411,0,Africa +2023-04-07,35941,18,"[""Tablet""]",4100.98,"{"""": ""20%""}",202106,1,South America +2024-06-13,35942,3293,"[""Laptop"", ""Wireless Mouse""]",1506.51,{},208280,0,Europe +2023-11-03,35943,2258,"[""Headphones""]",4235.67,{},104378,0,North America +2023-01-12,35944,148,"[""Tablet"", ""Charger""]",477.42,{},78949,0,North America +2024-08-20,35945,1506,"[""Charger""]",740.07,"{""promo"": ""24%""}",151905,0,Europe +2023-04-23,35946,2073,"[""Monitor""]",3539.31,"{"""": ""24%""}",25706,0,Asia +2023-08-05,35947,655,"[""Laptop"", ""Charger""]",3798.73,"{""promo"": ""23%""}",143017,0,Asia +2023-10-04,35948,8789,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2247.71,{},56895,0,South America +2023-11-22,35949,1561,"[""Charger"", ""Tablet""]",2411.42,"{""promo"": ""19%""}",131285,1,Europe +2023-07-02,35950,7623,"[""Phone"", ""Headphones"", ""Monitor""]",1244.46,{},245361,0,Africa +2024-12-12,35951,3153,"[""Wireless Mouse""]",4290.2,{},267651,0,North America +2023-10-07,35952,6570,"[""Headphones"", ""Charger""]",2628.59,"{""loyalty"": ""21%""}",248056,1,Asia +2024-01-22,35953,4239,"[""Tablet"", ""Laptop""]",243.81,{},37130,1,South America +2023-08-12,35954,8247,"[""Charger"", ""Wireless Mouse""]",1445.69,"{""loyalty"": ""17%""}",120380,0,Europe +2023-11-16,35955,7637,"[""Charger"", ""Laptop""]",3357.79,{},263141,1,Asia +2023-02-03,35956,1592,"[""Monitor"", ""Charger""]",4490.58,{},181492,0,Europe +2024-08-04,35957,9205,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",575.94,{},60467,1,Africa +2023-03-25,35958,4862,"[""Keyboard""]",3767.24,"{""loyalty"": ""22%""}",85887,0,Europe +2024-08-06,35959,882,"[""Keyboard""]",4319.41,{},126169,0,South America +2023-12-20,35960,7792,"[""Phone""]",3488.83,{},219442,1,South America +2024-04-17,35961,2802,"[""Monitor"", ""Laptop"", ""Phone""]",3241.59,"{"""": ""28%""}",200069,1,Africa +2023-11-13,35962,9087,"[""Phone""]",1246.17,"{""loyalty"": ""22%""}",298488,1,Europe +2024-12-16,35963,7070,"[""Headphones"", ""Monitor"", ""Tablet""]",2767.11,{},141476,0,Asia +2024-06-21,35964,6511,"[""Tablet"", ""Monitor""]",4122.17,{},90611,1,Europe +2024-07-01,35965,717,"[""Phone"", ""Charger""]",4366.51,"{"""": ""25%""}",189702,0,Europe +2023-08-06,35966,9772,"[""Keyboard"", ""Wireless Mouse""]",3752.58,"{"""": ""18%""}",58735,0,South America +2024-06-07,35967,5676,"[""Monitor"", ""Keyboard""]",4744.52,"{""loyalty"": ""25%""}",135809,0,Europe +2024-11-27,35968,5612,"[""Monitor""]",981.02,"{""promo"": ""19%""}",24804,0,Africa +2023-09-05,35969,4867,"[""Wireless Mouse""]",4959.93,{},153140,0,South America +2024-08-24,35970,4780,"[""Tablet"", ""Charger""]",2833.51,{},211594,1,Africa +2024-03-31,35971,4687,"[""Laptop""]",3672.62,"{""loyalty"": ""8%""}",14630,0,North America +2024-01-24,35972,1959,"[""Tablet"", ""Charger"", ""Laptop""]",394.23,"{""seasonal"": ""23%""}",10727,0,South America +2023-11-29,35973,4267,"[""Laptop"", ""Tablet"", ""Phone""]",1491.5,{},54378,0,Asia +2024-01-23,35974,2569,"[""Headphones"", ""Phone""]",4183.39,{},199548,1,South America +2024-12-16,35975,7957,"[""Monitor"", ""Phone"", ""Laptop""]",1242.73,"{""seasonal"": ""29%""}",289364,1,South America +2023-10-16,35976,9488,"[""Monitor"", ""Tablet""]",4199.16,{},275002,0,South America +2024-10-02,35977,9836,"[""Keyboard"", ""Wireless Mouse""]",365.46,{},114153,1,Africa +2023-09-02,35978,4002,"[""Phone""]",4766.99,{},287691,1,Europe +2024-10-08,35979,3996,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",104.76,"{""seasonal"": ""8%""}",141365,0,Asia +2023-05-12,35980,7221,"[""Charger"", ""Laptop""]",422.22,"{""seasonal"": ""18%""}",270514,0,North America +2023-06-18,35981,4907,"[""Wireless Mouse""]",1224.7,"{""loyalty"": ""12%""}",121880,1,Asia +2024-12-12,35982,3646,"[""Laptop"", ""Charger""]",2288.0,{},248899,0,Africa +2024-11-15,35983,8785,"[""Tablet""]",3848.57,"{""seasonal"": ""14%""}",100872,0,Asia +2024-08-13,35984,1300,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",723.91,{},161636,0,Africa +2024-01-04,35985,1073,"[""Monitor""]",4301.96,{},257376,1,South America +2023-10-14,35986,9693,"[""Keyboard"", ""Phone"", ""Monitor""]",1467.6,{},119409,0,Africa +2023-05-24,35987,7816,"[""Headphones"", ""Wireless Mouse""]",4295.76,{},17219,1,Europe +2024-08-15,35988,9389,"[""Keyboard""]",95.09,{},197102,0,Africa +2024-03-17,35989,6243,"[""Tablet"", ""Headphones""]",4864.77,{},266401,0,Europe +2023-11-08,35990,6316,"[""Monitor""]",1970.18,{},20199,0,Africa +2024-08-24,35991,1085,"[""Keyboard"", ""Phone"", ""Laptop""]",1967.99,{},203915,1,Africa +2023-03-09,35992,5407,"[""Headphones"", ""Wireless Mouse""]",3234.59,{},147854,1,South America +2024-05-20,35993,8192,"[""Phone"", ""Charger""]",1224.15,"{""promo"": ""29%""}",109851,0,North America +2024-08-23,35994,4700,"[""Monitor""]",3684.45,{},135818,1,Africa +2024-05-09,35995,9817,"[""Phone"", ""Charger"", ""Laptop""]",2565.05,{},30278,0,South America +2024-11-27,35996,4932,"[""Monitor"", ""Laptop""]",3148.64,"{""loyalty"": ""20%""}",169814,1,Asia +2024-01-28,35997,1673,"[""Monitor""]",4527.85,"{""loyalty"": ""27%""}",76774,0,North America +2024-02-29,35998,8074,"[""Monitor""]",1405.14,"{""promo"": ""18%""}",190520,1,Africa +2023-06-19,35999,3513,"[""Wireless Mouse""]",4777.24,{},274588,1,North America +2023-06-01,36000,8074,"[""Monitor"", ""Wireless Mouse""]",4048.91,"{""loyalty"": ""21%""}",22837,1,Asia +2023-08-21,36001,7758,"[""Laptop"", ""Charger""]",4680.61,{},198220,1,Europe +2024-09-11,36002,8031,"[""Charger"", ""Monitor""]",4313.72,{},172910,0,Europe +2023-01-27,36003,5276,"[""Wireless Mouse""]",4989.15,"{""seasonal"": ""25%""}",253391,1,Africa +2023-01-26,36004,4783,"[""Phone"", ""Monitor"", ""Charger""]",3303.19,{},36755,0,North America +2023-06-26,36005,173,"[""Laptop"", ""Headphones""]",1150.7,{},166892,0,Africa +2024-10-22,36006,517,"[""Keyboard""]",3973.82,{},149811,1,South America +2023-09-05,36007,9590,"[""Headphones""]",3750.14,"{""promo"": ""27%""}",6165,0,South America +2023-07-27,36008,9448,"[""Monitor""]",3907.14,{},261567,0,Africa +2024-12-26,36009,7781,"[""Headphones""]",4419.57,{},160350,1,North America +2024-11-15,36010,52,"[""Laptop"", ""Phone"", ""Tablet""]",1518.21,"{""promo"": ""11%""}",295235,0,Africa +2024-12-31,36011,6457,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1080.57,{},261212,1,Asia +2023-01-26,36012,1215,"[""Phone"", ""Keyboard""]",1900.65,{},210738,1,Asia +2024-09-17,36013,8833,"[""Keyboard"", ""Phone"", ""Monitor""]",946.43,{},229058,1,Europe +2023-02-18,36014,4537,"[""Laptop"", ""Tablet""]",3187.39,"{""seasonal"": ""30%""}",184059,0,South America +2024-07-09,36015,2775,"[""Headphones"", ""Tablet"", ""Monitor""]",4590.29,"{"""": ""12%""}",129245,0,South America +2024-06-28,36016,9890,"[""Wireless Mouse"", ""Charger""]",2431.11,"{""seasonal"": ""15%""}",194337,0,Asia +2024-03-27,36017,9285,"[""Laptop""]",1114.08,"{""loyalty"": ""25%""}",52254,0,Europe +2024-08-12,36018,4042,"[""Tablet"", ""Laptop"", ""Keyboard""]",406.42,"{"""": ""10%""}",201958,1,North America +2023-09-29,36019,4687,"[""Keyboard""]",477.79,{},9493,1,Asia +2023-09-15,36020,4750,"[""Headphones""]",3744.83,"{""loyalty"": ""21%""}",267600,0,Europe +2023-04-06,36021,2158,"[""Monitor"", ""Laptop""]",2393.27,"{""loyalty"": ""14%""}",10105,1,North America +2023-10-29,36022,5362,"[""Phone""]",963.13,"{""promo"": ""27%""}",132538,1,Africa +2023-10-05,36023,2392,"[""Wireless Mouse"", ""Keyboard""]",4639.57,"{""loyalty"": ""14%""}",258780,1,Europe +2023-08-27,36024,4233,"[""Headphones"", ""Monitor""]",808.36,{},271203,0,North America +2024-04-28,36025,7151,"[""Headphones"", ""Monitor"", ""Tablet""]",2351.24,{},75825,0,Africa +2024-07-11,36026,3506,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4076.51,"{""seasonal"": ""11%""}",291383,1,Asia +2024-09-12,36027,1229,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4362.96,"{""loyalty"": ""22%""}",69292,0,Africa +2024-06-19,36028,5916,"[""Keyboard""]",453.02,"{""seasonal"": ""10%""}",189148,0,North America +2023-09-01,36029,8654,"[""Wireless Mouse""]",2139.41,"{""seasonal"": ""7%""}",62328,1,Europe +2024-11-27,36030,8790,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4576.7,{},237830,0,Europe +2024-04-13,36031,6292,"[""Monitor"", ""Charger""]",109.49,"{""seasonal"": ""6%""}",222436,0,Asia +2023-03-08,36032,7494,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3700.29,"{""loyalty"": ""27%""}",149772,0,South America +2023-02-28,36033,3197,"[""Wireless Mouse""]",959.53,"{""seasonal"": ""28%""}",231200,0,Africa +2024-08-27,36034,9717,"[""Monitor""]",2698.32,{},165194,0,Europe +2024-06-17,36035,7535,"[""Phone"", ""Laptop""]",4420.39,{},95244,1,Africa +2024-11-22,36036,1126,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2597.69,{},71287,1,Europe +2024-05-14,36037,5280,"[""Monitor"", ""Wireless Mouse""]",1271.83,"{"""": ""19%""}",166083,1,South America +2023-08-20,36038,7263,"[""Phone"", ""Keyboard"", ""Laptop""]",4087.6,{},111144,0,Africa +2024-01-01,36039,1466,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",152.68,"{""seasonal"": ""24%""}",25559,1,Europe +2024-08-27,36040,7451,"[""Laptop""]",1806.91,{},251421,0,North America +2024-07-28,36041,7163,"[""Wireless Mouse"", ""Charger""]",2053.11,{},46075,0,Asia +2024-07-10,36042,1502,"[""Keyboard""]",1480.2,{},50088,1,North America +2023-01-13,36043,305,"[""Charger"", ""Wireless Mouse""]",136.59,"{""loyalty"": ""21%""}",176291,1,South America +2024-01-28,36044,593,"[""Phone""]",4859.97,{},92927,1,North America +2024-03-07,36045,8011,"[""Wireless Mouse""]",1707.89,{},85005,1,South America +2023-04-11,36046,6711,"[""Charger"", ""Phone""]",627.77,"{"""": ""29%""}",226939,0,North America +2024-02-27,36047,4463,"[""Laptop"", ""Phone""]",955.46,{},275250,1,South America +2024-04-26,36048,644,"[""Phone"", ""Charger""]",3764.54,"{""promo"": ""7%""}",260896,1,Europe +2024-08-19,36049,2195,"[""Phone"", ""Tablet"", ""Charger""]",4575.74,"{""loyalty"": ""27%""}",273351,0,South America +2023-04-30,36050,8129,"[""Phone""]",4545.94,{},139401,0,Asia +2023-10-31,36051,7717,"[""Headphones"", ""Wireless Mouse""]",3368.41,"{""promo"": ""7%""}",172866,0,South America +2024-02-10,36052,3222,"[""Laptop"", ""Monitor""]",3660.17,"{""promo"": ""9%""}",204978,1,South America +2023-10-26,36053,794,"[""Headphones"", ""Tablet""]",1709.43,"{""promo"": ""30%""}",53021,1,Asia +2024-11-14,36054,4567,"[""Laptop""]",4904.62,{},164117,1,Africa +2023-03-02,36055,5226,"[""Laptop"", ""Wireless Mouse""]",1505.62,"{""seasonal"": ""15%""}",282216,1,Africa +2023-04-29,36056,8232,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2288.25,"{""promo"": ""15%""}",294653,0,Asia +2024-12-25,36057,5081,"[""Charger"", ""Laptop""]",4439.08,"{""promo"": ""13%""}",32274,0,North America +2023-05-09,36058,3781,"[""Headphones""]",213.55,"{""seasonal"": ""21%""}",175088,0,Africa +2023-05-10,36059,2368,"[""Monitor"", ""Tablet""]",4266.39,"{""seasonal"": ""14%""}",184973,1,Europe +2024-12-08,36060,1505,"[""Monitor""]",2532.52,"{""loyalty"": ""25%""}",110664,0,Europe +2023-05-21,36061,247,"[""Phone"", ""Keyboard""]",3187.49,"{""promo"": ""13%""}",100573,0,Asia +2024-02-05,36062,5971,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",874.6,"{"""": ""30%""}",299703,0,Africa +2023-03-22,36063,5130,"[""Keyboard"", ""Wireless Mouse""]",3767.93,{},107420,0,North America +2023-06-20,36064,978,"[""Keyboard""]",576.5,"{""loyalty"": ""12%""}",290096,0,Europe +2024-04-20,36065,9029,"[""Laptop"", ""Headphones"", ""Keyboard""]",4815.17,"{""seasonal"": ""27%""}",297473,1,Africa +2024-09-28,36066,3384,"[""Laptop"", ""Monitor""]",507.82,"{""loyalty"": ""12%""}",271388,1,South America +2023-10-12,36067,2020,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1166.52,"{""seasonal"": ""6%""}",239367,1,South America +2024-04-26,36068,7392,"[""Laptop"", ""Charger"", ""Phone""]",3137.16,"{""promo"": ""19%""}",140595,1,Asia +2024-09-02,36069,1920,"[""Monitor"", ""Headphones""]",3552.0,{},254362,0,Europe +2024-11-08,36070,2837,"[""Laptop""]",551.52,{},167097,1,Africa +2024-08-20,36071,6474,"[""Phone"", ""Headphones"", ""Laptop""]",4120.79,"{"""": ""29%""}",276898,0,Europe +2024-11-22,36072,6171,"[""Tablet""]",4375.29,{},106329,1,Europe +2023-08-27,36073,5900,"[""Tablet""]",3414.66,"{""promo"": ""13%""}",298358,1,Asia +2024-08-31,36074,7085,"[""Charger""]",4889.29,"{""seasonal"": ""5%""}",197282,0,Asia +2024-06-18,36075,5493,"[""Phone"", ""Headphones"", ""Keyboard""]",1700.64,{},82609,1,Europe +2023-06-17,36076,9630,"[""Laptop"", ""Monitor""]",2557.85,{},279938,1,North America +2024-05-15,36077,960,"[""Headphones"", ""Phone"", ""Tablet""]",1735.11,{},165753,0,Asia +2023-08-15,36078,2671,"[""Monitor"", ""Wireless Mouse""]",929.18,{},11516,0,Africa +2024-12-18,36079,460,"[""Laptop"", ""Charger""]",2054.75,{},193425,0,South America +2024-01-30,36080,7384,"[""Headphones""]",2927.0,{},181845,0,Africa +2023-12-20,36081,2236,"[""Charger""]",2527.43,"{""loyalty"": ""7%""}",47806,0,South America +2024-10-13,36082,3127,"[""Keyboard"", ""Tablet"", ""Charger""]",3372.24,{},170414,0,South America +2024-10-03,36083,5619,"[""Wireless Mouse"", ""Tablet""]",4826.37,{},241634,0,South America +2023-09-02,36084,6144,"[""Phone"", ""Wireless Mouse""]",4958.76,{},213824,0,North America +2023-07-10,36085,6804,"[""Charger""]",648.09,"{"""": ""18%""}",120983,1,Africa +2023-02-21,36086,5784,"[""Phone""]",4591.59,"{"""": ""30%""}",296099,1,Africa +2023-08-02,36087,20,"[""Laptop"", ""Phone""]",4421.3,"{""seasonal"": ""7%""}",278702,0,North America +2024-11-07,36088,9304,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",207.37,"{""seasonal"": ""14%""}",245389,0,South America +2023-05-14,36089,1715,"[""Headphones"", ""Laptop"", ""Monitor""]",2733.66,{},238546,0,North America +2023-03-17,36090,7224,"[""Laptop"", ""Phone""]",1636.34,{},49836,0,Asia +2023-04-09,36091,4302,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2283.62,"{""promo"": ""8%""}",261062,0,South America +2024-04-01,36092,1316,"[""Phone"", ""Wireless Mouse""]",503.47,{},18457,1,Africa +2024-08-30,36093,2133,"[""Phone""]",4845.56,{},59514,0,Europe +2023-01-09,36094,6634,"[""Laptop"", ""Tablet""]",4837.12,{},179096,1,Africa +2023-05-19,36095,9469,"[""Phone"", ""Keyboard"", ""Monitor""]",3848.23,{},186665,1,Asia +2024-11-17,36096,5216,"[""Headphones"", ""Laptop""]",688.81,"{""seasonal"": ""10%""}",206160,1,Africa +2023-05-30,36097,458,"[""Laptop""]",1793.47,{},197355,1,North America +2024-01-17,36098,875,"[""Laptop""]",4829.47,"{""promo"": ""20%""}",31443,1,South America +2023-07-18,36099,7721,"[""Charger"", ""Headphones""]",3906.8,"{""loyalty"": ""11%""}",161971,0,Africa +2024-04-24,36100,9407,"[""Laptop"", ""Phone""]",1319.88,"{""promo"": ""6%""}",139308,1,North America +2024-12-23,36101,5919,"[""Keyboard"", ""Laptop"", ""Headphones""]",270.81,"{"""": ""6%""}",89874,0,Asia +2023-10-04,36102,9720,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4014.75,"{"""": ""28%""}",284291,0,South America +2023-04-24,36103,2820,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3642.97,{},157079,1,Asia +2024-03-23,36104,1140,"[""Monitor""]",901.57,{},24825,0,Asia +2024-05-23,36105,5525,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1158.7,{},164307,1,Africa +2023-04-09,36106,4345,"[""Wireless Mouse""]",2218.23,"{""promo"": ""28%""}",99888,1,Asia +2023-02-27,36107,2015,"[""Monitor"", ""Charger""]",4996.83,"{""seasonal"": ""13%""}",280037,0,South America +2023-11-07,36108,5961,"[""Monitor""]",964.04,{},151964,1,Africa +2023-12-09,36109,538,"[""Keyboard""]",4047.3,"{"""": ""30%""}",268162,1,Africa +2024-12-24,36110,6735,"[""Phone""]",2685.67,{},71895,0,Asia +2023-11-18,36111,1099,"[""Headphones"", ""Keyboard"", ""Phone""]",3975.78,{},219720,1,Asia +2023-02-16,36112,7175,"[""Headphones""]",2448.24,{},200364,0,North America +2023-01-16,36113,9228,"[""Headphones"", ""Wireless Mouse""]",1852.44,{},93323,1,South America +2023-06-22,36114,7824,"[""Wireless Mouse""]",2957.93,"{""seasonal"": ""9%""}",264741,1,Asia +2023-04-05,36115,7854,"[""Laptop"", ""Charger"", ""Headphones""]",2388.31,{},65816,1,South America +2023-10-05,36116,398,"[""Headphones""]",4207.11,"{""seasonal"": ""17%""}",236518,1,North America +2024-11-04,36117,5432,"[""Headphones"", ""Keyboard""]",2136.26,{},179066,0,Europe +2023-04-10,36118,955,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4308.39,{},252690,0,Africa +2023-11-04,36119,7346,"[""Phone""]",357.54,"{"""": ""12%""}",118546,1,North America +2024-06-02,36120,1395,"[""Headphones"", ""Phone""]",465.47,"{""promo"": ""12%""}",149091,0,South America +2024-06-15,36121,6043,"[""Charger"", ""Keyboard"", ""Laptop""]",3193.52,"{""loyalty"": ""18%""}",94739,0,Europe +2023-08-21,36122,7027,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3569.18,{},118622,1,South America +2023-07-25,36123,7356,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2689.28,"{"""": ""12%""}",222555,1,Europe +2023-07-10,36124,3599,"[""Headphones"", ""Keyboard""]",469.6,"{"""": ""13%""}",18950,0,North America +2023-02-01,36125,7937,"[""Monitor""]",3005.27,{},65561,0,Asia +2023-10-25,36126,7765,"[""Laptop""]",3048.99,{},179546,0,Europe +2024-10-22,36127,4264,"[""Laptop""]",3841.14,{},160632,0,South America +2024-12-13,36128,7248,"[""Wireless Mouse"", ""Headphones""]",1083.83,"{""seasonal"": ""25%""}",180984,1,South America +2024-09-22,36129,3885,"[""Tablet"", ""Wireless Mouse""]",3583.3,"{""promo"": ""26%""}",230577,1,South America +2023-10-19,36130,3741,"[""Monitor"", ""Charger""]",4493.36,"{""promo"": ""9%""}",173177,1,North America +2024-12-25,36131,6507,"[""Headphones"", ""Tablet""]",793.68,"{""loyalty"": ""26%""}",115078,0,North America +2024-02-06,36132,7186,"[""Tablet""]",3673.91,{},264157,0,Asia +2024-12-09,36133,2007,"[""Headphones""]",1597.9,"{"""": ""16%""}",166401,0,Asia +2023-11-12,36134,2194,"[""Charger""]",3835.83,"{"""": ""6%""}",26436,1,South America +2023-04-28,36135,9001,"[""Laptop"", ""Phone""]",169.39,"{""seasonal"": ""22%""}",150073,0,South America +2024-02-25,36136,8203,"[""Tablet"", ""Monitor""]",4233.0,{},136458,1,Africa +2024-12-08,36137,7994,"[""Phone"", ""Headphones""]",4288.69,{},184531,1,South America +2023-10-12,36138,191,"[""Tablet"", ""Laptop""]",4639.17,"{""seasonal"": ""14%""}",25872,1,South America +2024-01-26,36139,8328,"[""Phone"", ""Tablet"", ""Headphones""]",119.19,"{""promo"": ""28%""}",62347,0,Asia +2024-09-02,36140,1455,"[""Headphones"", ""Monitor""]",2549.83,"{""seasonal"": ""9%""}",289278,1,Asia +2023-09-01,36141,1994,"[""Laptop"", ""Tablet"", ""Phone""]",4258.67,{},139733,1,Africa +2023-01-31,36142,428,"[""Headphones"", ""Wireless Mouse""]",1546.25,{},30345,1,Africa +2023-02-09,36143,9564,"[""Laptop"", ""Monitor""]",4450.29,{},196651,1,North America +2023-12-21,36144,3312,"[""Monitor"", ""Keyboard""]",4053.65,{},287556,1,Africa +2024-11-08,36145,1512,"[""Laptop""]",3147.43,"{""promo"": ""21%""}",186123,0,Europe +2024-11-25,36146,7468,"[""Phone"", ""Wireless Mouse""]",372.24,"{""loyalty"": ""24%""}",31717,0,Asia +2024-02-19,36147,2318,"[""Laptop"", ""Monitor"", ""Headphones""]",2782.46,"{""seasonal"": ""12%""}",285018,1,North America +2023-04-22,36148,1217,"[""Monitor"", ""Tablet""]",864.6,{},208155,1,Africa +2024-01-12,36149,3630,"[""Phone"", ""Keyboard""]",2895.77,"{""promo"": ""23%""}",218513,1,Europe +2023-12-24,36150,3244,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1056.34,"{""seasonal"": ""22%""}",141454,1,North America +2024-10-23,36151,5952,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3567.36,"{""loyalty"": ""9%""}",215880,0,Asia +2024-06-26,36152,6272,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2730.73,"{"""": ""7%""}",15021,1,North America +2023-10-17,36153,5169,"[""Keyboard"", ""Headphones""]",4076.79,"{""promo"": ""18%""}",37781,1,Europe +2023-09-05,36154,775,"[""Laptop""]",3671.14,{},246490,0,Europe +2024-03-31,36155,9578,"[""Keyboard""]",4969.65,{},114173,0,North America +2023-05-10,36156,5171,"[""Tablet""]",4204.1,{},281819,1,Europe +2023-03-08,36157,3742,"[""Headphones""]",3972.87,"{"""": ""11%""}",75409,1,Asia +2023-11-30,36158,1903,"[""Headphones"", ""Wireless Mouse""]",2428.66,{},159419,0,South America +2023-09-30,36159,419,"[""Laptop""]",3405.23,{},244088,0,North America +2024-08-23,36160,2693,"[""Laptop"", ""Charger"", ""Headphones""]",335.01,{},22021,0,North America +2023-11-06,36161,379,"[""Tablet"", ""Headphones"", ""Monitor""]",114.64,{},207369,0,Europe +2024-08-28,36162,2739,"[""Keyboard"", ""Tablet"", ""Monitor""]",312.99,"{""loyalty"": ""19%""}",65829,0,North America +2024-11-20,36163,2462,"[""Keyboard"", ""Charger""]",2860.76,"{""promo"": ""8%""}",85852,0,Africa +2024-12-27,36164,2683,"[""Monitor"", ""Keyboard"", ""Tablet""]",261.79,"{"""": ""19%""}",204450,0,North America +2024-12-14,36165,3988,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2633.8,{},229085,0,South America +2023-04-27,36166,333,"[""Monitor"", ""Laptop""]",2636.52,"{""promo"": ""17%""}",164739,0,Africa +2024-02-09,36167,4878,"[""Phone"", ""Monitor""]",1890.81,{},165468,0,Africa +2024-11-01,36168,863,"[""Phone"", ""Keyboard"", ""Headphones""]",1985.18,"{"""": ""24%""}",174935,0,Europe +2023-08-04,36169,9368,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1623.76,{},17269,0,Asia +2023-06-05,36170,1778,"[""Wireless Mouse"", ""Tablet""]",3075.73,{},174517,0,Europe +2024-03-22,36171,2567,"[""Phone"", ""Monitor"", ""Tablet""]",629.42,"{""loyalty"": ""28%""}",236789,0,Asia +2023-07-26,36172,2533,"[""Monitor""]",1469.26,{},297017,1,North America +2024-10-02,36173,4980,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4011.61,"{""loyalty"": ""23%""}",88913,0,North America +2023-08-05,36174,9416,"[""Tablet"", ""Wireless Mouse""]",4088.38,"{""seasonal"": ""10%""}",27992,1,North America +2024-07-14,36175,15,"[""Phone"", ""Headphones""]",4091.09,"{"""": ""21%""}",259662,0,Africa +2023-02-09,36176,2929,"[""Wireless Mouse""]",4888.1,"{""promo"": ""27%""}",164423,1,Asia +2023-04-23,36177,3138,"[""Tablet""]",781.32,"{"""": ""12%""}",187557,0,Europe +2024-12-12,36178,5543,"[""Laptop"", ""Charger""]",4954.79,{},118417,1,North America +2024-10-18,36179,3448,"[""Headphones"", ""Phone""]",3380.79,{},98635,0,South America +2023-09-14,36180,2563,"[""Headphones"", ""Tablet""]",2868.77,{},187103,1,Europe +2023-12-11,36181,9262,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1007.13,{},137853,0,Africa +2023-02-23,36182,8275,"[""Keyboard"", ""Phone"", ""Monitor""]",3858.7,"{""loyalty"": ""14%""}",206069,1,South America +2024-12-17,36183,571,"[""Headphones""]",3006.21,{},182060,0,Asia +2024-03-01,36184,9414,"[""Laptop"", ""Monitor"", ""Headphones""]",1834.98,{},180493,1,Europe +2023-10-16,36185,3153,"[""Monitor""]",2086.8,{},178373,0,Europe +2023-04-17,36186,7669,"[""Keyboard""]",4253.84,"{""loyalty"": ""25%""}",249271,0,Europe +2024-10-26,36187,7498,"[""Tablet"", ""Phone"", ""Monitor""]",3650.78,{},107346,1,North America +2023-05-04,36188,5313,"[""Charger"", ""Phone""]",3057.56,"{""loyalty"": ""17%""}",177030,1,North America +2024-09-21,36189,2776,"[""Charger""]",991.56,"{""seasonal"": ""27%""}",34835,0,North America +2023-07-29,36190,4865,"[""Keyboard""]",900.69,"{""loyalty"": ""7%""}",77141,1,Asia +2023-06-08,36191,1951,"[""Monitor"", ""Wireless Mouse""]",1948.4,{},165908,0,Africa +2023-09-03,36192,2795,"[""Headphones"", ""Tablet"", ""Laptop""]",2045.87,"{""promo"": ""30%""}",250543,0,South America +2023-09-25,36193,8539,"[""Charger""]",399.18,{},212115,1,Africa +2024-04-09,36194,1619,"[""Headphones"", ""Tablet"", ""Charger""]",2545.27,"{""seasonal"": ""22%""}",275519,0,South America +2024-08-19,36195,324,"[""Charger""]",1541.53,"{""seasonal"": ""10%""}",37747,1,Africa +2024-10-19,36196,6751,"[""Monitor""]",242.01,{},102498,0,Europe +2023-10-25,36197,3735,"[""Headphones""]",2397.44,"{""loyalty"": ""20%""}",154172,0,Africa +2023-08-16,36198,4360,"[""Charger"", ""Headphones"", ""Phone""]",3357.72,"{""seasonal"": ""14%""}",144268,0,North America +2023-09-18,36199,4948,"[""Tablet"", ""Phone"", ""Laptop""]",4613.23,"{""loyalty"": ""11%""}",70910,1,Europe +2024-09-06,36200,404,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",812.29,{},239199,1,North America +2024-11-28,36201,9295,"[""Phone""]",4755.23,{},80201,1,South America +2023-06-18,36202,3529,"[""Wireless Mouse"", ""Tablet""]",1366.84,"{"""": ""30%""}",163029,0,North America +2023-09-22,36203,3184,"[""Phone"", ""Headphones"", ""Monitor""]",1686.88,"{""seasonal"": ""8%""}",146849,0,Africa +2024-07-25,36204,1671,"[""Wireless Mouse""]",1973.32,{},182993,0,Europe +2024-10-01,36205,9339,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4693.02,{},176422,0,South America +2024-08-11,36206,4170,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4301.25,"{"""": ""28%""}",98785,1,North America +2024-08-27,36207,1597,"[""Charger"", ""Tablet"", ""Monitor""]",944.39,"{""seasonal"": ""6%""}",189685,0,Europe +2023-04-24,36208,3595,"[""Monitor"", ""Tablet"", ""Phone""]",310.44,{},79802,1,Africa +2024-03-18,36209,2792,"[""Charger"", ""Keyboard""]",909.7,"{""promo"": ""16%""}",284630,0,South America +2023-07-05,36210,2390,"[""Keyboard"", ""Phone"", ""Laptop""]",3331.12,{},76222,1,Asia +2024-03-14,36211,8974,"[""Wireless Mouse""]",2369.23,"{""loyalty"": ""9%""}",109629,0,Europe +2023-09-24,36212,8030,"[""Monitor"", ""Keyboard""]",167.35,"{""seasonal"": ""14%""}",169276,1,North America +2024-04-22,36213,9540,"[""Charger""]",2048.54,{},11015,0,Asia +2024-11-14,36214,6239,"[""Keyboard""]",3404.59,"{""loyalty"": ""8%""}",281678,1,Asia +2024-11-13,36215,5808,"[""Monitor"", ""Phone""]",4467.66,{},77189,1,Europe +2024-07-01,36216,984,"[""Headphones"", ""Charger""]",1259.23,{},139864,1,Africa +2024-07-30,36217,811,"[""Monitor""]",2055.18,"{"""": ""5%""}",210895,1,Africa +2023-01-06,36218,9001,"[""Keyboard""]",1151.81,{},100938,0,South America +2024-10-15,36219,6130,"[""Tablet""]",3107.82,"{"""": ""13%""}",176537,0,Asia +2023-01-04,36220,136,"[""Laptop"", ""Wireless Mouse""]",2789.79,"{""seasonal"": ""14%""}",187444,1,Asia +2024-08-25,36221,8173,"[""Wireless Mouse"", ""Tablet""]",4220.78,{},119840,0,North America +2024-07-09,36222,2947,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2729.63,"{""promo"": ""29%""}",75660,0,Europe +2024-09-23,36223,6710,"[""Monitor"", ""Wireless Mouse""]",4432.51,"{"""": ""7%""}",167471,0,Asia +2023-10-17,36224,1347,"[""Tablet""]",3442.99,{},198148,0,South America +2024-08-05,36225,5751,"[""Laptop"", ""Headphones"", ""Phone""]",3102.85,{},297802,0,Europe +2024-06-08,36226,393,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",872.14,"{""promo"": ""17%""}",29515,0,Africa +2024-09-04,36227,5086,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1133.44,{},171784,1,Asia +2024-03-23,36228,7507,"[""Charger""]",4985.49,"{""promo"": ""16%""}",233963,0,Africa +2023-04-21,36229,6142,"[""Keyboard""]",4086.69,"{"""": ""21%""}",16411,1,Asia +2023-03-20,36230,1116,"[""Keyboard"", ""Headphones""]",1128.07,"{"""": ""14%""}",239546,0,South America +2024-04-21,36231,3391,"[""Wireless Mouse""]",1767.81,"{"""": ""22%""}",31818,0,North America +2024-03-30,36232,5058,"[""Monitor""]",1083.93,{},146099,1,Asia +2023-10-03,36233,9150,"[""Tablet"", ""Keyboard"", ""Headphones""]",1038.84,{},291383,0,North America +2023-09-21,36234,3216,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3545.89,"{"""": ""27%""}",81287,1,North America +2024-11-18,36235,9456,"[""Laptop""]",730.21,{},58939,0,Europe +2024-07-25,36236,2182,"[""Keyboard"", ""Wireless Mouse""]",2326.63,"{"""": ""17%""}",41384,1,North America +2024-07-06,36237,9894,"[""Charger""]",4702.79,"{""promo"": ""10%""}",99788,0,Africa +2023-03-13,36238,5694,"[""Keyboard""]",1137.27,"{"""": ""24%""}",135453,0,Asia +2023-01-28,36239,1213,"[""Phone"", ""Charger"", ""Headphones""]",3295.99,"{""loyalty"": ""13%""}",265188,1,Asia +2024-02-18,36240,9428,"[""Monitor"", ""Tablet""]",3705.02,"{""seasonal"": ""15%""}",111540,0,Africa +2024-05-16,36241,872,"[""Headphones"", ""Laptop"", ""Monitor""]",472.38,"{"""": ""28%""}",230126,0,South America +2023-05-09,36242,9784,"[""Wireless Mouse"", ""Charger""]",4801.53,"{"""": ""6%""}",28380,0,South America +2023-09-25,36243,8790,"[""Laptop""]",319.85,{},9685,1,Asia +2023-02-18,36244,9774,"[""Phone"", ""Keyboard""]",3333.29,"{""loyalty"": ""11%""}",236548,1,Asia +2024-08-11,36245,8434,"[""Charger"", ""Phone""]",2420.17,{},57495,0,South America +2024-09-12,36246,7873,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2638.36,"{"""": ""28%""}",108265,0,South America +2024-06-16,36247,2894,"[""Tablet"", ""Phone""]",3823.5,"{""promo"": ""18%""}",268775,1,Europe +2023-04-12,36248,5154,"[""Monitor"", ""Keyboard"", ""Charger""]",3607.41,{},233736,0,South America +2023-09-29,36249,8838,"[""Charger""]",3310.34,{},246567,1,South America +2024-03-18,36250,6045,"[""Tablet"", ""Laptop""]",3477.62,"{""loyalty"": ""10%""}",217289,0,North America +2023-11-25,36251,6240,"[""Tablet"", ""Headphones"", ""Keyboard""]",1345.87,{},181290,0,Europe +2024-04-10,36252,913,"[""Tablet""]",1739.51,"{""loyalty"": ""28%""}",225099,0,Asia +2023-03-07,36253,6303,"[""Monitor""]",365.83,{},249102,0,Africa +2023-09-29,36254,3920,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3917.67,"{""loyalty"": ""17%""}",114289,1,Africa +2023-07-22,36255,6077,"[""Keyboard""]",4909.1,{},145285,1,Africa +2023-09-19,36256,8502,"[""Monitor"", ""Laptop""]",4241.89,{},261243,1,Africa +2024-05-07,36257,7406,"[""Charger""]",3211.11,{},56328,0,Europe +2023-10-30,36258,6921,"[""Monitor"", ""Tablet""]",3849.81,{},8006,0,Asia +2024-08-05,36259,2378,"[""Charger"", ""Tablet""]",2085.97,{},231864,0,Asia +2023-12-14,36260,1984,"[""Monitor"", ""Headphones"", ""Charger""]",4613.13,"{""loyalty"": ""30%""}",270066,1,Europe +2024-11-18,36261,2417,"[""Headphones""]",4381.08,{},131871,0,North America +2023-07-22,36262,2780,"[""Laptop"", ""Headphones"", ""Keyboard""]",1254.79,{},129384,0,North America +2023-03-12,36263,162,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4362.82,{},225361,0,North America +2024-04-12,36264,5033,"[""Phone""]",2488.93,{},20930,1,South America +2024-03-03,36265,1042,"[""Headphones"", ""Wireless Mouse""]",4262.95,{},74061,0,South America +2024-04-21,36266,8287,"[""Monitor"", ""Laptop"", ""Keyboard""]",369.08,{},96665,0,Europe +2023-10-18,36267,5122,"[""Headphones""]",1469.13,"{""loyalty"": ""30%""}",161772,0,South America +2024-12-09,36268,7492,"[""Charger"", ""Phone"", ""Laptop""]",3298.93,{},278787,1,Africa +2023-05-17,36269,6870,"[""Headphones"", ""Charger"", ""Phone""]",3032.9,"{""seasonal"": ""5%""}",176022,0,South America +2024-09-16,36270,3575,"[""Phone"", ""Monitor""]",220.33,{},204674,0,North America +2024-10-30,36271,1011,"[""Wireless Mouse"", ""Charger""]",2847.53,"{""promo"": ""12%""}",276361,0,Africa +2024-11-25,36272,6744,"[""Monitor""]",1488.11,{},91503,0,Europe +2023-09-03,36273,1694,"[""Charger"", ""Monitor""]",1953.23,{},184686,1,North America +2024-06-17,36274,6934,"[""Monitor"", ""Keyboard""]",2363.69,{},174335,0,Africa +2024-09-24,36275,5541,"[""Monitor"", ""Headphones""]",434.3,"{"""": ""25%""}",271407,0,South America +2023-01-06,36276,8450,"[""Keyboard""]",3974.64,"{""promo"": ""8%""}",221216,0,Africa +2024-05-04,36277,1667,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2656.98,"{""promo"": ""24%""}",74156,1,North America +2024-04-26,36278,5222,"[""Wireless Mouse"", ""Phone""]",3239.97,{},35912,0,North America +2024-12-03,36279,8985,"[""Laptop"", ""Tablet""]",1097.7,"{""promo"": ""25%""}",59870,0,South America +2024-11-05,36280,5094,"[""Wireless Mouse""]",4237.13,{},292200,1,South America +2023-08-31,36281,6972,"[""Phone""]",687.68,{},299730,0,Africa +2023-04-22,36282,1268,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2744.52,"{""promo"": ""24%""}",18938,0,Asia +2024-03-17,36283,9736,"[""Headphones"", ""Laptop""]",901.19,"{""promo"": ""7%""}",111578,0,Europe +2023-06-09,36284,5971,"[""Phone"", ""Keyboard""]",1147.62,{},164018,1,Europe +2024-10-02,36285,4883,"[""Tablet"", ""Headphones""]",2302.22,{},145766,0,Asia +2023-09-14,36286,8462,"[""Monitor"", ""Wireless Mouse""]",2911.26,{},47186,1,Asia +2024-06-08,36287,2020,"[""Monitor"", ""Headphones""]",2018.5,{},223962,0,Asia +2023-10-07,36288,276,"[""Wireless Mouse"", ""Charger""]",763.75,{},67637,1,Asia +2024-08-04,36289,9234,"[""Charger"", ""Keyboard""]",217.43,"{""seasonal"": ""8%""}",23296,1,Europe +2023-09-19,36290,465,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",289.43,"{"""": ""18%""}",134039,1,Asia +2024-08-26,36291,3459,"[""Laptop"", ""Monitor""]",2136.34,{},97838,0,North America +2023-01-21,36292,1258,"[""Headphones""]",4854.04,"{""loyalty"": ""17%""}",137745,0,North America +2023-09-15,36293,203,"[""Monitor"", ""Headphones""]",3620.99,{},141954,1,South America +2024-09-22,36294,2580,"[""Tablet"", ""Phone""]",1348.78,"{""promo"": ""20%""}",256733,0,North America +2024-11-20,36295,877,"[""Phone"", ""Headphones"", ""Charger""]",492.3,{},100134,0,North America +2023-08-14,36296,8750,"[""Wireless Mouse""]",4246.42,"{""promo"": ""28%""}",6509,0,Europe +2023-04-19,36297,1412,"[""Monitor"", ""Charger"", ""Headphones""]",511.04,"{""loyalty"": ""9%""}",32296,1,North America +2024-03-25,36298,4924,"[""Tablet""]",2018.81,"{""loyalty"": ""20%""}",219221,1,Africa +2023-12-28,36299,6612,"[""Headphones""]",4852.05,"{""promo"": ""28%""}",128222,1,South America +2023-06-23,36300,2815,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2995.06,{},219841,0,North America +2024-08-23,36301,2890,"[""Headphones""]",4107.96,"{"""": ""26%""}",32760,0,Africa +2023-01-29,36302,983,"[""Phone"", ""Wireless Mouse""]",372.4,{},291395,0,Europe +2023-03-06,36303,4147,"[""Keyboard"", ""Tablet""]",3223.22,{},211314,0,South America +2023-01-09,36304,1685,"[""Charger""]",4889.79,"{""loyalty"": ""12%""}",282160,0,South America +2024-12-11,36305,8632,"[""Tablet"", ""Wireless Mouse""]",3143.97,"{"""": ""8%""}",228948,0,South America +2023-05-07,36306,6218,"[""Tablet"", ""Headphones""]",4887.12,"{"""": ""29%""}",264049,0,Africa +2024-10-12,36307,1493,"[""Phone"", ""Headphones"", ""Laptop""]",437.57,"{"""": ""9%""}",286777,0,South America +2023-07-23,36308,9400,"[""Tablet""]",3882.52,{},18341,0,Africa +2023-06-08,36309,1813,"[""Phone"", ""Headphones""]",3007.4,"{""loyalty"": ""22%""}",178504,1,Africa +2023-08-26,36310,2822,"[""Monitor""]",2605.51,"{""loyalty"": ""21%""}",161380,0,North America +2024-09-10,36311,535,"[""Keyboard"", ""Wireless Mouse""]",1797.71,"{"""": ""21%""}",243767,0,South America +2024-09-05,36312,4911,"[""Tablet"", ""Phone""]",4773.73,{},31798,0,North America +2023-04-18,36313,6652,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",56.49,"{""promo"": ""13%""}",87321,1,South America +2024-06-19,36314,7077,"[""Monitor"", ""Charger""]",2056.65,{},181983,1,Asia +2023-03-06,36315,5968,"[""Keyboard"", ""Tablet""]",2881.89,"{""seasonal"": ""17%""}",119336,0,South America +2023-05-14,36316,7591,"[""Keyboard"", ""Laptop"", ""Tablet""]",3564.97,"{"""": ""16%""}",188669,1,South America +2023-10-14,36317,3531,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2608.33,"{""loyalty"": ""11%""}",136888,0,Europe +2023-12-20,36318,2302,"[""Charger"", ""Phone""]",1349.86,"{""promo"": ""6%""}",12266,1,South America +2024-01-16,36319,7386,"[""Headphones""]",2867.86,"{""loyalty"": ""8%""}",273772,0,Africa +2023-06-29,36320,8493,"[""Keyboard"", ""Phone""]",1995.21,{},270802,0,Asia +2023-08-13,36321,3565,"[""Tablet""]",1245.97,{},214264,0,Africa +2024-05-21,36322,4040,"[""Headphones""]",381.68,{},43430,1,Europe +2024-03-20,36323,2789,"[""Monitor""]",3662.48,"{""loyalty"": ""11%""}",75106,1,Asia +2024-11-07,36324,7423,"[""Keyboard"", ""Wireless Mouse""]",3940.78,"{""seasonal"": ""26%""}",239310,1,Africa +2024-02-17,36325,9199,"[""Monitor"", ""Headphones"", ""Keyboard""]",1106.14,{},117726,0,South America +2024-11-28,36326,7778,"[""Laptop"", ""Keyboard"", ""Monitor""]",1734.65,"{""loyalty"": ""21%""}",247960,1,Asia +2023-04-23,36327,6392,"[""Charger"", ""Headphones"", ""Monitor""]",2674.57,{},257365,1,North America +2023-04-30,36328,4664,"[""Laptop""]",3329.09,{},276465,0,Africa +2023-04-01,36329,9375,"[""Wireless Mouse"", ""Headphones""]",2294.83,"{"""": ""25%""}",254782,0,North America +2024-01-07,36330,8670,"[""Tablet""]",897.13,"{"""": ""16%""}",230053,1,Africa +2024-08-30,36331,2138,"[""Phone"", ""Monitor"", ""Tablet""]",712.66,"{""seasonal"": ""28%""}",87128,0,Asia +2024-06-09,36332,7302,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3543.34,{},169094,1,Europe +2023-12-27,36333,1093,"[""Headphones"", ""Monitor""]",744.45,{},194503,1,Africa +2023-10-01,36334,7891,"[""Tablet""]",3154.75,"{""promo"": ""20%""}",239636,1,Africa +2023-12-15,36335,1960,"[""Wireless Mouse""]",4469.56,"{"""": ""22%""}",280129,0,Africa +2023-02-25,36336,9964,"[""Laptop""]",1356.35,{},58633,0,Africa +2024-09-10,36337,6814,"[""Headphones""]",1396.98,"{""promo"": ""11%""}",205873,1,Asia +2023-05-10,36338,5415,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",722.33,{},81924,0,South America +2024-12-12,36339,3095,"[""Monitor"", ""Charger"", ""Phone""]",4449.09,{},262394,0,South America +2024-03-16,36340,9096,"[""Charger""]",4121.52,"{""loyalty"": ""10%""}",238980,1,Europe +2023-09-22,36341,9012,"[""Laptop""]",2870.62,"{""loyalty"": ""26%""}",12363,1,North America +2024-12-17,36342,5037,"[""Laptop"", ""Headphones"", ""Keyboard""]",3490.92,{},255697,0,Africa +2023-08-17,36343,1361,"[""Charger"", ""Headphones""]",4867.84,"{""promo"": ""17%""}",38091,0,Asia +2024-09-29,36344,5597,"[""Keyboard"", ""Headphones""]",4682.62,{},278577,1,North America +2023-01-29,36345,2212,"[""Keyboard"", ""Charger""]",2313.91,{},246141,1,North America +2024-07-04,36346,3085,"[""Tablet"", ""Headphones""]",2406.14,"{""seasonal"": ""24%""}",215037,0,Africa +2023-10-23,36347,7417,"[""Laptop"", ""Charger"", ""Tablet""]",3163.73,"{""promo"": ""19%""}",169762,0,Africa +2023-03-24,36348,7504,"[""Laptop"", ""Tablet"", ""Keyboard""]",436.87,"{""seasonal"": ""24%""}",2629,0,Europe +2023-09-10,36349,7709,"[""Laptop""]",2663.76,{},250242,0,Africa +2023-04-10,36350,1986,"[""Phone""]",1960.3,{},50861,1,North America +2024-01-08,36351,3782,"[""Charger"", ""Phone""]",3784.38,{},17003,1,South America +2024-05-10,36352,5113,"[""Charger""]",267.91,{},291465,0,North America +2023-01-31,36353,4879,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4897.79,"{""promo"": ""28%""}",203885,1,Africa +2023-01-25,36354,7743,"[""Headphones""]",2392.51,"{""promo"": ""11%""}",84221,0,North America +2024-12-23,36355,2920,"[""Keyboard""]",92.54,{},154996,1,Asia +2023-01-30,36356,1160,"[""Headphones""]",1732.43,"{""loyalty"": ""11%""}",210995,0,North America +2023-08-20,36357,969,"[""Laptop""]",4404.07,"{"""": ""29%""}",155311,1,South America +2024-05-20,36358,5813,"[""Monitor"", ""Headphones"", ""Tablet""]",427.19,"{""promo"": ""10%""}",259426,0,Europe +2023-01-07,36359,6235,"[""Keyboard"", ""Headphones"", ""Charger""]",3309.96,"{""loyalty"": ""10%""}",201811,0,Africa +2023-02-13,36360,3357,"[""Headphones""]",1585.36,"{"""": ""24%""}",176081,0,Europe +2023-01-02,36361,1944,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",336.08,{},141431,1,North America +2023-05-02,36362,9662,"[""Phone"", ""Monitor"", ""Keyboard""]",4912.08,"{""seasonal"": ""22%""}",84422,0,Europe +2023-08-24,36363,7392,"[""Phone""]",4511.67,"{"""": ""5%""}",97720,0,North America +2024-05-26,36364,1532,"[""Headphones""]",2710.23,{},198827,1,Asia +2024-01-25,36365,2960,"[""Wireless Mouse""]",1904.41,"{"""": ""29%""}",1080,1,Europe +2024-12-03,36366,9942,"[""Headphones"", ""Tablet""]",330.9,{},169036,1,Africa +2024-06-06,36367,4336,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2926.41,"{""seasonal"": ""17%""}",100444,0,Africa +2023-12-31,36368,4371,"[""Charger"", ""Keyboard""]",1895.36,"{"""": ""8%""}",2246,1,South America +2024-09-15,36369,6292,"[""Keyboard"", ""Monitor""]",1107.42,"{""promo"": ""16%""}",294417,1,Asia +2023-07-03,36370,5689,"[""Monitor"", ""Headphones"", ""Charger""]",2781.68,{},254690,1,Asia +2023-03-29,36371,4450,"[""Monitor"", ""Headphones"", ""Phone""]",3328.19,"{""loyalty"": ""7%""}",218091,0,North America +2023-06-19,36372,1365,"[""Keyboard"", ""Tablet"", ""Charger""]",3205.78,{},117152,0,North America +2023-02-19,36373,7,"[""Headphones""]",2346.37,"{""loyalty"": ""5%""}",57011,0,North America +2024-12-09,36374,4743,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3445.34,"{"""": ""29%""}",78490,0,South America +2024-07-21,36375,3940,"[""Monitor"", ""Phone""]",3106.01,{},28937,0,North America +2024-12-05,36376,6582,"[""Tablet""]",4746.76,"{""promo"": ""15%""}",93391,0,Europe +2024-01-19,36377,1285,"[""Laptop""]",3825.75,{},180928,0,North America +2023-04-01,36378,5119,"[""Tablet""]",173.8,"{""promo"": ""7%""}",161287,1,Europe +2023-04-21,36379,4617,"[""Laptop"", ""Phone"", ""Charger""]",1887.94,"{""seasonal"": ""10%""}",54060,1,Asia +2024-05-05,36380,578,"[""Wireless Mouse"", ""Tablet""]",4774.78,{},298703,0,Asia +2024-08-12,36381,2067,"[""Laptop"", ""Charger""]",3556.99,{},168511,0,Africa +2023-02-13,36382,9806,"[""Tablet"", ""Laptop"", ""Charger""]",4799.49,"{""promo"": ""28%""}",211989,0,South America +2023-06-11,36383,9925,"[""Wireless Mouse""]",4139.08,{},151647,0,Europe +2023-04-26,36384,7866,"[""Tablet""]",152.55,{},211531,1,Europe +2024-04-19,36385,7446,"[""Laptop"", ""Charger"", ""Tablet""]",2638.11,{},153501,1,South America +2023-08-31,36386,8091,"[""Phone"", ""Tablet"", ""Keyboard""]",1068.33,{},247855,1,Asia +2024-12-27,36387,4789,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1522.17,{},128287,0,Asia +2024-09-13,36388,1830,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3157.91,"{""loyalty"": ""24%""}",258130,0,North America +2024-06-02,36389,8468,"[""Tablet"", ""Laptop"", ""Phone""]",870.16,{},296386,1,Asia +2023-10-29,36390,5651,"[""Tablet"", ""Charger""]",2395.42,{},287281,1,North America +2024-08-28,36391,7386,"[""Charger"", ""Monitor""]",4893.37,"{""seasonal"": ""17%""}",67796,0,Europe +2024-03-14,36392,1146,"[""Monitor"", ""Charger"", ""Laptop""]",4035.61,{},161678,1,Asia +2023-12-17,36393,9897,"[""Monitor"", ""Phone"", ""Tablet""]",4526.68,{},98277,0,Europe +2024-10-11,36394,9018,"[""Phone""]",3123.66,{},187571,0,Asia +2023-06-29,36395,1551,"[""Laptop"", ""Phone""]",3736.65,"{""promo"": ""6%""}",128212,0,South America +2023-01-18,36396,4779,"[""Monitor"", ""Keyboard""]",607.68,"{""seasonal"": ""28%""}",200163,0,North America +2023-11-29,36397,6474,"[""Phone"", ""Laptop"", ""Headphones""]",1765.25,{},181830,0,South America +2024-03-10,36398,7499,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2344.96,"{""seasonal"": ""24%""}",282112,1,South America +2024-12-11,36399,7268,"[""Phone""]",4869.78,{},298180,0,North America +2024-05-20,36400,2340,"[""Tablet""]",260.2,"{""seasonal"": ""19%""}",69464,1,South America +2023-11-08,36401,9775,"[""Charger"", ""Keyboard"", ""Monitor""]",4344.32,{},144818,1,Asia +2024-12-29,36402,1317,"[""Monitor"", ""Headphones""]",2356.62,{},94685,0,Africa +2024-07-19,36403,9321,"[""Laptop"", ""Keyboard""]",422.76,{},144178,0,South America +2023-11-30,36404,3018,"[""Phone""]",3811.89,{},183878,1,Europe +2023-05-09,36405,2777,"[""Phone""]",3661.56,{},121829,1,Europe +2024-07-10,36406,4225,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4941.46,"{""seasonal"": ""12%""}",92046,1,Europe +2024-08-28,36407,2023,"[""Laptop"", ""Headphones"", ""Keyboard""]",1985.02,{},177550,1,Africa +2024-04-18,36408,3684,"[""Phone"", ""Headphones"", ""Laptop""]",1446.37,{},197765,0,Europe +2023-10-08,36409,8606,"[""Monitor"", ""Wireless Mouse""]",1275.05,"{""promo"": ""21%""}",32370,1,North America +2024-08-08,36410,9642,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2037.79,"{"""": ""16%""}",199285,1,Europe +2024-11-25,36411,1717,"[""Keyboard""]",2785.02,{},198097,0,Africa +2024-02-23,36412,5600,"[""Tablet""]",4508.74,{},222701,0,North America +2024-04-27,36413,4903,"[""Charger""]",2644.63,"{"""": ""25%""}",74905,1,Africa +2024-09-02,36414,1032,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3590.05,"{""seasonal"": ""24%""}",86229,0,North America +2024-06-02,36415,5734,"[""Phone"", ""Charger""]",4955.67,{},290292,1,South America +2024-04-23,36416,5325,"[""Laptop""]",2141.82,{},54428,0,Africa +2023-05-15,36417,7556,"[""Wireless Mouse""]",497.41,{},136274,0,Europe +2024-08-24,36418,6662,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",582.42,{},62149,0,Asia +2023-07-25,36419,8501,"[""Headphones""]",3451.43,"{""promo"": ""22%""}",69340,0,North America +2024-10-18,36420,2194,"[""Tablet"", ""Monitor""]",3912.09,{},261522,1,Asia +2024-03-25,36421,9051,"[""Monitor""]",501.93,{},42338,1,North America +2023-03-29,36422,1601,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3366.55,{},273976,1,North America +2024-02-18,36423,8337,"[""Phone"", ""Keyboard""]",845.53,"{""loyalty"": ""17%""}",176217,0,Africa +2024-11-01,36424,3497,"[""Charger""]",1488.11,"{""loyalty"": ""27%""}",172780,0,North America +2023-08-10,36425,1857,"[""Phone"", ""Charger""]",4827.27,{},65643,0,Africa +2023-06-02,36426,1985,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4289.01,{},93160,1,North America +2023-04-21,36427,8453,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4426.15,{},247571,0,Asia +2023-06-14,36428,3180,"[""Phone"", ""Wireless Mouse""]",1657.27,{},33990,0,Africa +2023-05-24,36429,854,"[""Keyboard"", ""Laptop""]",4953.09,{},234713,0,Africa +2024-03-17,36430,4925,"[""Phone""]",971.65,{},32530,1,Europe +2024-10-18,36431,6090,"[""Tablet"", ""Wireless Mouse""]",2590.7,{},138541,1,Asia +2024-03-13,36432,4115,"[""Charger""]",401.25,{},81467,0,Europe +2023-06-24,36433,4578,"[""Tablet"", ""Wireless Mouse""]",1607.84,"{""loyalty"": ""12%""}",206241,0,Africa +2023-06-05,36434,8954,"[""Monitor"", ""Phone"", ""Headphones""]",3571.45,{},267080,1,Asia +2023-08-10,36435,4760,"[""Phone"", ""Monitor""]",407.15,"{""seasonal"": ""8%""}",209830,1,North America +2024-10-20,36436,7059,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3237.22,{},175614,0,North America +2024-12-26,36437,5122,"[""Laptop""]",1209.82,"{""seasonal"": ""9%""}",151562,1,South America +2023-07-15,36438,2086,"[""Phone""]",3251.36,"{""promo"": ""21%""}",4579,0,South America +2023-03-14,36439,2869,"[""Headphones"", ""Charger""]",4238.77,"{""loyalty"": ""27%""}",86773,0,Africa +2023-12-20,36440,7685,"[""Laptop"", ""Headphones""]",2713.89,{},198613,1,Europe +2023-07-13,36441,8363,"[""Tablet""]",3908.62,"{""seasonal"": ""22%""}",235520,1,North America +2024-10-08,36442,4812,"[""Laptop"", ""Monitor""]",4065.85,"{"""": ""14%""}",106176,0,North America +2023-07-09,36443,9276,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2971.42,{},25881,0,Europe +2024-05-22,36444,9939,"[""Monitor"", ""Tablet"", ""Headphones""]",114.12,{},291612,0,North America +2024-05-31,36445,5907,"[""Keyboard""]",3250.27,"{""promo"": ""24%""}",280562,0,Asia +2023-04-12,36446,3975,"[""Phone"", ""Charger"", ""Monitor""]",3508.91,{},145465,1,Europe +2023-09-09,36447,3340,"[""Headphones"", ""Phone""]",831.8,{},243327,0,Europe +2023-09-09,36448,1156,"[""Keyboard""]",682.13,"{"""": ""9%""}",116837,0,Africa +2023-02-12,36449,9094,"[""Charger"", ""Laptop""]",651.74,{},101440,1,Africa +2023-02-12,36450,3586,"[""Tablet""]",2326.33,"{"""": ""20%""}",109175,1,Asia +2024-06-25,36451,1856,"[""Keyboard"", ""Headphones""]",1703.05,"{""promo"": ""15%""}",138473,0,North America +2023-07-19,36452,5320,"[""Keyboard""]",1566.03,{},106439,1,Africa +2024-09-27,36453,9973,"[""Headphones""]",761.12,{},265144,1,Africa +2024-08-17,36454,9208,"[""Laptop"", ""Wireless Mouse""]",3083.8,"{""seasonal"": ""13%""}",54345,0,South America +2024-08-17,36455,2814,"[""Keyboard"", ""Tablet""]",1935.42,"{"""": ""23%""}",161308,0,Asia +2024-07-15,36456,7124,"[""Charger""]",3211.53,"{""promo"": ""11%""}",154668,0,Asia +2023-11-02,36457,3833,"[""Wireless Mouse""]",702.96,"{""loyalty"": ""13%""}",4614,0,Africa +2023-05-19,36458,7802,"[""Phone""]",4341.49,"{""promo"": ""17%""}",158699,0,Europe +2023-01-05,36459,4736,"[""Headphones"", ""Monitor"", ""Charger""]",301.47,{},112537,1,Africa +2024-09-26,36460,9907,"[""Laptop"", ""Charger"", ""Headphones""]",4382.31,{},130650,0,Africa +2023-02-06,36461,3123,"[""Monitor"", ""Keyboard""]",4289.18,"{""promo"": ""23%""}",9918,1,North America +2024-12-14,36462,1412,"[""Charger"", ""Headphones"", ""Keyboard""]",1875.73,{},286988,1,North America +2023-05-24,36463,4017,"[""Phone"", ""Tablet"", ""Headphones""]",873.1,{},60361,1,Europe +2024-10-09,36464,1835,"[""Phone"", ""Keyboard"", ""Laptop""]",1960.86,{},198054,1,North America +2023-04-08,36465,1258,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2033.88,{},233336,1,South America +2024-10-17,36466,208,"[""Keyboard"", ""Tablet"", ""Headphones""]",4753.05,"{""seasonal"": ""28%""}",136473,0,South America +2024-08-01,36467,4538,"[""Monitor"", ""Headphones""]",3399.53,"{"""": ""21%""}",71808,1,Asia +2024-01-06,36468,4222,"[""Laptop"", ""Phone"", ""Charger""]",3721.83,"{""promo"": ""19%""}",220409,1,North America +2024-12-28,36469,9197,"[""Phone"", ""Keyboard""]",74.12,"{""seasonal"": ""26%""}",174974,0,South America +2024-09-15,36470,4593,"[""Wireless Mouse"", ""Monitor""]",3992.12,{},238779,0,Asia +2024-10-20,36471,1952,"[""Keyboard"", ""Charger""]",4707.68,{},101048,0,Europe +2024-10-04,36472,36,"[""Laptop""]",213.69,"{""promo"": ""8%""}",55459,1,Asia +2023-08-08,36473,4862,"[""Keyboard"", ""Monitor""]",3235.64,"{"""": ""27%""}",68538,0,Asia +2023-10-26,36474,7294,"[""Monitor""]",938.0,"{"""": ""12%""}",289203,1,Asia +2024-10-27,36475,1052,"[""Tablet"", ""Monitor""]",1851.84,{},271286,1,Asia +2023-12-07,36476,7696,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1227.08,{},255282,1,South America +2024-02-12,36477,9465,"[""Charger""]",3345.96,"{""loyalty"": ""16%""}",261658,1,Africa +2024-06-25,36478,7235,"[""Headphones""]",429.72,"{"""": ""14%""}",8019,0,South America +2024-08-10,36479,6971,"[""Headphones""]",1694.68,{},215670,0,Asia +2023-12-18,36480,9557,"[""Laptop"", ""Wireless Mouse""]",2811.07,"{"""": ""13%""}",132085,0,Europe +2024-06-10,36481,8087,"[""Monitor"", ""Tablet""]",300.25,"{""seasonal"": ""17%""}",258919,1,Africa +2023-03-03,36482,398,"[""Phone""]",3416.8,{},268040,1,Africa +2023-10-20,36483,2919,"[""Headphones"", ""Keyboard""]",3367.39,{},114354,0,Europe +2023-10-23,36484,8243,"[""Wireless Mouse""]",529.73,"{""loyalty"": ""26%""}",219333,0,Europe +2024-12-03,36485,6734,"[""Phone"", ""Wireless Mouse""]",4415.04,{},268149,0,Africa +2024-11-29,36486,4647,"[""Headphones"", ""Keyboard""]",120.53,"{""loyalty"": ""30%""}",181064,0,South America +2024-10-09,36487,3625,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3820.08,{},172225,1,Africa +2024-03-21,36488,5962,"[""Keyboard""]",470.08,"{"""": ""25%""}",113240,1,Africa +2023-04-19,36489,1968,"[""Keyboard"", ""Tablet""]",525.76,"{""loyalty"": ""9%""}",37072,1,Africa +2023-02-09,36490,5056,"[""Keyboard"", ""Phone""]",1733.39,"{""promo"": ""15%""}",283907,0,South America +2023-07-11,36491,5566,"[""Keyboard""]",1310.84,"{""seasonal"": ""23%""}",58320,0,South America +2023-08-01,36492,2690,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3488.04,{},264782,0,Africa +2024-02-29,36493,9822,"[""Wireless Mouse""]",428.84,"{""loyalty"": ""19%""}",71807,1,Asia +2023-09-28,36494,2619,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",298.41,{},214237,0,Asia +2024-05-14,36495,5379,"[""Phone"", ""Laptop"", ""Tablet""]",1928.6,"{""loyalty"": ""20%""}",118008,0,South America +2023-09-14,36496,8022,"[""Laptop""]",2675.7,{},191272,0,Africa +2024-04-06,36497,2333,"[""Tablet""]",3389.58,{},293477,0,Asia +2023-12-12,36498,2832,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",809.48,"{""promo"": ""13%""}",176144,1,South America +2024-03-07,36499,8223,"[""Keyboard""]",3541.85,{},247095,0,North America +2024-12-14,36500,196,"[""Phone"", ""Tablet""]",285.57,"{""seasonal"": ""26%""}",34263,0,South America +2023-09-07,36501,9188,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4520.78,{},19354,1,South America +2023-02-09,36502,4763,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4040.8,{},164406,1,Asia +2024-11-03,36503,8913,"[""Tablet""]",1240.13,{},146260,0,Africa +2024-02-24,36504,9210,"[""Tablet"", ""Monitor"", ""Phone""]",4792.83,"{""promo"": ""11%""}",282010,0,Europe +2024-02-22,36505,2922,"[""Wireless Mouse"", ""Keyboard""]",2266.5,"{""seasonal"": ""11%""}",89125,1,South America +2023-06-14,36506,2605,"[""Charger"", ""Laptop"", ""Tablet""]",2400.64,"{"""": ""10%""}",274083,1,Europe +2023-07-06,36507,6148,"[""Charger"", ""Laptop""]",3087.67,{},25734,1,South America +2024-04-04,36508,1785,"[""Headphones"", ""Phone"", ""Charger""]",1615.24,{},106404,1,Europe +2024-01-29,36509,9521,"[""Wireless Mouse""]",316.59,{},288517,1,South America +2024-11-16,36510,6122,"[""Monitor"", ""Phone"", ""Charger""]",2101.78,{},279596,0,Africa +2023-10-05,36511,1552,"[""Monitor"", ""Wireless Mouse""]",2592.15,"{"""": ""26%""}",285685,1,Asia +2023-11-11,36512,7109,"[""Keyboard""]",2139.61,{},102498,0,Asia +2024-06-09,36513,177,"[""Monitor"", ""Charger""]",4143.95,"{"""": ""10%""}",51096,0,South America +2023-06-02,36514,6212,"[""Headphones""]",1735.05,{},130533,0,Asia +2024-11-21,36515,3190,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1985.52,{},297474,0,Europe +2024-05-10,36516,1307,"[""Wireless Mouse""]",362.72,{},90431,1,Europe +2023-08-13,36517,8409,"[""Monitor""]",1082.56,"{"""": ""13%""}",233785,1,Africa +2024-10-18,36518,8093,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3042.99,{},126019,0,Europe +2023-08-19,36519,1823,"[""Tablet""]",411.86,"{""seasonal"": ""30%""}",294253,0,Africa +2023-05-14,36520,7705,"[""Tablet"", ""Charger""]",4162.92,"{""promo"": ""25%""}",149738,1,North America +2024-09-13,36521,1640,"[""Tablet"", ""Laptop"", ""Charger""]",3201.29,"{""seasonal"": ""9%""}",206608,1,North America +2023-02-01,36522,7480,"[""Tablet""]",2501.34,{},64098,0,North America +2024-11-22,36523,7486,"[""Headphones"", ""Tablet""]",2518.59,{},137339,0,Africa +2024-08-02,36524,9245,"[""Headphones""]",1241.33,{},292148,1,Asia +2023-11-19,36525,3002,"[""Keyboard"", ""Monitor"", ""Charger""]",448.21,"{""loyalty"": ""22%""}",244972,1,North America +2023-05-26,36526,119,"[""Monitor"", ""Phone"", ""Tablet""]",1720.89,{},230826,0,North America +2023-11-08,36527,1078,"[""Keyboard"", ""Headphones""]",2811.92,"{""loyalty"": ""27%""}",233420,1,South America +2024-11-29,36528,8272,"[""Keyboard""]",3472.08,"{""promo"": ""5%""}",243736,1,Europe +2024-04-09,36529,1177,"[""Phone""]",3078.95,{},17692,0,North America +2023-01-18,36530,1330,"[""Laptop"", ""Charger"", ""Monitor""]",215.21,{},126437,1,Asia +2024-08-07,36531,7126,"[""Headphones"", ""Keyboard"", ""Phone""]",3114.98,{},9099,0,Africa +2024-02-06,36532,5194,"[""Monitor""]",3026.47,"{""promo"": ""22%""}",98258,1,Europe +2023-09-22,36533,397,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1703.51,"{""loyalty"": ""28%""}",172082,0,South America +2024-07-10,36534,7650,"[""Monitor"", ""Laptop""]",427.13,{},297089,1,Asia +2024-04-08,36535,6707,"[""Phone""]",3589.96,"{""seasonal"": ""27%""}",48788,0,Africa +2024-12-19,36536,2278,"[""Tablet""]",4018.87,{},286385,1,South America +2023-03-24,36537,7764,"[""Charger"", ""Headphones""]",2736.52,{},54523,0,Asia +2024-11-25,36538,7594,"[""Charger""]",2627.45,{},179322,1,South America +2023-04-16,36539,5693,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1775.73,{},297889,1,Asia +2023-10-25,36540,5217,"[""Wireless Mouse""]",1263.27,{},16866,1,South America +2024-08-10,36541,9722,"[""Phone"", ""Headphones"", ""Monitor""]",762.95,{},271274,0,Asia +2024-05-10,36542,4231,"[""Phone"", ""Headphones""]",4328.6,"{""seasonal"": ""17%""}",33121,1,North America +2024-03-15,36543,5025,"[""Phone""]",2780.66,"{""promo"": ""20%""}",261250,1,Africa +2024-11-25,36544,4833,"[""Monitor""]",4588.32,"{""promo"": ""13%""}",84949,0,South America +2024-07-03,36545,4386,"[""Wireless Mouse"", ""Headphones""]",4196.85,"{""loyalty"": ""18%""}",96712,0,North America +2023-08-19,36546,7076,"[""Tablet""]",1471.54,{},29582,0,Europe +2024-04-21,36547,7720,"[""Phone""]",3749.36,"{""loyalty"": ""30%""}",39267,1,Africa +2024-04-24,36548,8406,"[""Wireless Mouse""]",674.59,"{""seasonal"": ""12%""}",244311,1,Asia +2023-04-23,36549,254,"[""Monitor"", ""Tablet"", ""Charger""]",4514.58,"{""loyalty"": ""13%""}",96660,0,North America +2024-11-10,36550,4560,"[""Phone"", ""Monitor""]",1953.01,{},27506,1,North America +2024-03-05,36551,6288,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",140.04,"{""seasonal"": ""27%""}",258674,0,South America +2024-06-14,36552,5333,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2306.38,"{"""": ""18%""}",65648,0,Asia +2023-10-09,36553,615,"[""Phone"", ""Headphones""]",4698.25,{},24125,1,Asia +2024-07-24,36554,5829,"[""Keyboard""]",1206.0,{},87364,1,Asia +2024-06-06,36555,9005,"[""Phone""]",2418.57,"{""loyalty"": ""27%""}",232231,1,Asia +2024-06-08,36556,5553,"[""Headphones""]",3393.74,{},162495,0,Africa +2023-12-12,36557,1565,"[""Charger"", ""Keyboard""]",1434.38,{},187535,0,Africa +2024-03-31,36558,3900,"[""Monitor""]",4343.49,{},220889,1,South America +2023-10-31,36559,3653,"[""Keyboard""]",3080.18,"{""promo"": ""23%""}",289463,1,South America +2024-10-08,36560,6335,"[""Charger""]",1169.53,{},266426,0,Africa +2024-06-15,36561,7605,"[""Tablet""]",2927.62,"{""promo"": ""15%""}",94960,1,Asia +2023-12-01,36562,2646,"[""Phone""]",3266.21,"{""seasonal"": ""17%""}",221905,0,Africa +2023-07-25,36563,7055,"[""Charger"", ""Monitor""]",2527.45,"{"""": ""6%""}",77898,0,Asia +2024-11-07,36564,2105,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1196.27,"{"""": ""7%""}",258433,0,North America +2023-10-21,36565,7492,"[""Wireless Mouse""]",186.89,"{"""": ""22%""}",148974,0,North America +2024-10-23,36566,4296,"[""Phone"", ""Laptop""]",3268.88,{},232809,1,South America +2024-04-22,36567,7787,"[""Keyboard"", ""Monitor""]",3729.67,{},256189,0,Europe +2023-07-02,36568,1396,"[""Wireless Mouse""]",3423.61,{},101174,0,Asia +2024-07-18,36569,5895,"[""Phone""]",2256.42,{},292529,1,Asia +2024-11-26,36570,8505,"[""Laptop""]",2823.62,"{"""": ""16%""}",285293,0,Europe +2023-10-26,36571,1222,"[""Tablet"", ""Laptop"", ""Phone""]",2943.24,{},46770,1,Africa +2024-07-27,36572,8752,"[""Charger"", ""Headphones""]",3662.61,{},66688,0,Asia +2023-09-24,36573,5389,"[""Monitor"", ""Headphones""]",1321.0,{},187523,1,Africa +2024-02-06,36574,9933,"[""Phone""]",1319.28,{},299854,1,North America +2023-07-03,36575,7497,"[""Charger"", ""Monitor""]",1145.1,"{""seasonal"": ""18%""}",198834,1,Europe +2023-06-02,36576,5110,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2347.66,"{""loyalty"": ""9%""}",160049,1,Africa +2023-03-05,36577,2689,"[""Headphones"", ""Laptop""]",4421.87,"{""seasonal"": ""14%""}",260307,1,North America +2023-02-13,36578,567,"[""Charger"", ""Wireless Mouse""]",3497.64,"{""seasonal"": ""25%""}",194449,1,Europe +2024-11-28,36579,7664,"[""Wireless Mouse""]",2253.97,{},87038,0,Africa +2024-05-12,36580,3478,"[""Laptop""]",585.54,{},191712,0,South America +2024-11-23,36581,3919,"[""Keyboard"", ""Charger"", ""Monitor""]",4990.45,"{""promo"": ""5%""}",161848,0,Africa +2023-07-31,36582,6540,"[""Monitor"", ""Charger""]",286.73,"{""loyalty"": ""26%""}",240056,0,South America +2024-06-05,36583,9361,"[""Tablet""]",3512.48,"{""loyalty"": ""13%""}",53737,1,Africa +2023-07-26,36584,3830,"[""Tablet""]",2644.0,"{"""": ""23%""}",117393,0,South America +2024-11-17,36585,5634,"[""Keyboard"", ""Wireless Mouse""]",247.09,"{"""": ""7%""}",232105,1,Africa +2024-08-15,36586,7901,"[""Tablet"", ""Wireless Mouse""]",1770.35,"{""promo"": ""12%""}",94902,1,Africa +2024-03-21,36587,575,"[""Keyboard"", ""Charger""]",3496.69,{},203858,1,North America +2024-01-03,36588,3014,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1954.17,{},196288,0,North America +2023-09-26,36589,9915,"[""Keyboard"", ""Monitor"", ""Laptop""]",211.65,"{""loyalty"": ""12%""}",129728,0,Europe +2023-04-23,36590,4333,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4266.78,"{""seasonal"": ""24%""}",204228,1,Asia +2023-09-15,36591,9896,"[""Laptop""]",717.2,"{""seasonal"": ""9%""}",74906,0,North America +2023-11-17,36592,8084,"[""Monitor"", ""Headphones"", ""Tablet""]",2319.0,"{""promo"": ""9%""}",224476,1,Asia +2023-06-02,36593,9455,"[""Headphones""]",776.01,"{""promo"": ""21%""}",242444,1,Africa +2024-11-08,36594,4125,"[""Monitor"", ""Headphones""]",3653.08,"{""promo"": ""20%""}",2495,1,North America +2023-06-18,36595,8515,"[""Phone"", ""Headphones""]",2982.19,{},100389,0,Asia +2023-02-02,36596,7817,"[""Phone""]",4353.66,{},115230,0,North America +2023-03-04,36597,6856,"[""Monitor""]",2163.23,"{""loyalty"": ""12%""}",143041,0,North America +2024-03-20,36598,4604,"[""Headphones"", ""Monitor"", ""Charger""]",2078.77,{},42445,0,Asia +2024-07-13,36599,3048,"[""Wireless Mouse"", ""Tablet""]",2063.35,{},151282,0,North America +2024-08-02,36600,350,"[""Headphones"", ""Tablet""]",1951.28,{},132565,0,Africa +2024-05-12,36601,9618,"[""Phone""]",4500.51,"{""promo"": ""25%""}",245421,0,North America +2024-12-25,36602,4827,"[""Monitor"", ""Headphones"", ""Tablet""]",1742.31,{},119847,1,Europe +2023-08-23,36603,9966,"[""Charger"", ""Keyboard"", ""Laptop""]",4935.67,"{""seasonal"": ""11%""}",140379,1,North America +2024-03-03,36604,9728,"[""Tablet""]",1451.6,"{"""": ""7%""}",183768,0,Asia +2024-10-12,36605,5883,"[""Charger"", ""Tablet""]",1962.1,"{"""": ""17%""}",71823,0,South America +2024-07-20,36606,6697,"[""Keyboard""]",2705.88,{},42728,1,Africa +2023-01-13,36607,282,"[""Charger"", ""Tablet""]",1012.95,{},262921,1,Europe +2024-10-23,36608,4479,"[""Laptop""]",2644.77,{},180072,0,Africa +2023-02-09,36609,7214,"[""Phone"", ""Keyboard"", ""Headphones""]",3994.77,"{""loyalty"": ""15%""}",72294,0,South America +2023-09-14,36610,3559,"[""Tablet"", ""Headphones"", ""Laptop""]",1750.52,"{""seasonal"": ""15%""}",212733,0,Asia +2023-02-15,36611,1562,"[""Laptop"", ""Headphones""]",2352.46,{},203724,0,North America +2024-12-10,36612,7234,"[""Phone"", ""Wireless Mouse""]",2607.82,"{"""": ""24%""}",103061,1,South America +2024-05-11,36613,3595,"[""Monitor""]",3281.52,"{""seasonal"": ""17%""}",268191,0,Asia +2023-08-13,36614,6481,"[""Charger""]",2586.14,{},121796,1,North America +2023-10-22,36615,5889,"[""Charger""]",1809.58,{},83118,0,North America +2023-08-05,36616,6319,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",663.72,"{""loyalty"": ""10%""}",192717,0,Africa +2024-03-29,36617,3550,"[""Phone""]",1580.98,"{""loyalty"": ""5%""}",219386,1,South America +2024-07-31,36618,171,"[""Wireless Mouse""]",4882.57,"{""loyalty"": ""24%""}",270014,0,South America +2024-07-30,36619,9995,"[""Wireless Mouse"", ""Monitor""]",839.83,{},216182,0,Asia +2023-10-28,36620,9693,"[""Monitor""]",479.53,{},209066,1,Europe +2024-08-18,36621,4951,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",375.43,"{""seasonal"": ""13%""}",238830,1,Europe +2024-06-30,36622,8793,"[""Laptop"", ""Phone"", ""Headphones""]",3337.66,{},197390,1,Europe +2024-10-30,36623,937,"[""Tablet"", ""Monitor"", ""Keyboard""]",2698.86,"{"""": ""26%""}",114007,1,Europe +2023-11-26,36624,6764,"[""Tablet"", ""Laptop""]",1748.02,{},166773,0,Europe +2023-07-02,36625,5603,"[""Laptop"", ""Keyboard""]",1557.03,{},153819,0,Europe +2023-09-19,36626,6643,"[""Keyboard"", ""Headphones""]",4016.55,"{""loyalty"": ""13%""}",126752,0,North America +2023-06-13,36627,1723,"[""Phone"", ""Charger"", ""Keyboard""]",60.64,"{""loyalty"": ""14%""}",171025,0,South America +2023-01-30,36628,3213,"[""Charger""]",4617.01,{},86780,1,North America +2024-01-28,36629,9892,"[""Keyboard"", ""Laptop"", ""Phone""]",2396.47,"{""seasonal"": ""17%""}",21145,0,Asia +2024-08-01,36630,8015,"[""Keyboard""]",3004.55,{},196377,0,South America +2023-12-04,36631,5551,"[""Tablet"", ""Monitor""]",2809.93,"{""promo"": ""12%""}",82525,1,South America +2023-05-16,36632,3189,"[""Laptop"", ""Tablet""]",4786.58,{},254281,1,Asia +2024-04-16,36633,2584,"[""Phone""]",2037.75,"{"""": ""23%""}",147283,1,South America +2024-02-28,36634,7274,"[""Charger"", ""Keyboard""]",1470.57,"{"""": ""30%""}",62248,1,Africa +2023-12-13,36635,6896,"[""Tablet""]",3640.44,"{"""": ""12%""}",283567,0,Africa +2024-02-11,36636,116,"[""Phone""]",921.15,"{""promo"": ""18%""}",134595,1,Europe +2023-10-13,36637,7328,"[""Tablet"", ""Headphones""]",2944.34,{},210535,0,Asia +2024-12-23,36638,1254,"[""Keyboard""]",4973.01,{},187509,1,North America +2024-01-27,36639,6045,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3169.03,{},56816,0,Asia +2024-02-01,36640,7703,"[""Keyboard"", ""Charger""]",2409.78,"{"""": ""19%""}",77773,1,South America +2024-05-10,36641,3746,"[""Keyboard"", ""Headphones"", ""Charger""]",1640.25,{},131588,1,Asia +2023-09-09,36642,8592,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2298.84,{},210295,1,Africa +2024-10-01,36643,241,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2460.13,"{""loyalty"": ""24%""}",69194,0,Africa +2024-07-14,36644,2687,"[""Tablet""]",323.28,{},219973,0,Africa +2023-01-12,36645,5666,"[""Tablet"", ""Laptop""]",3582.28,{},208699,1,Africa +2023-05-10,36646,5598,"[""Laptop"", ""Phone"", ""Monitor""]",171.11,"{""seasonal"": ""19%""}",176262,1,South America +2023-12-21,36647,4250,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2719.84,"{""seasonal"": ""20%""}",77519,1,South America +2023-04-07,36648,1925,"[""Keyboard"", ""Charger""]",678.91,"{""loyalty"": ""8%""}",46049,0,South America +2024-03-25,36649,2565,"[""Headphones""]",2476.64,{},197267,0,South America +2023-05-10,36650,3205,"[""Headphones""]",1981.25,"{""promo"": ""27%""}",91777,1,North America +2023-07-04,36651,2080,"[""Laptop""]",2221.83,"{"""": ""14%""}",19019,0,South America +2023-02-13,36652,1007,"[""Wireless Mouse"", ""Keyboard""]",1863.52,"{""loyalty"": ""17%""}",48190,1,South America +2023-07-25,36653,9014,"[""Headphones"", ""Keyboard""]",2138.27,{},97966,0,North America +2023-07-05,36654,7083,"[""Monitor"", ""Laptop"", ""Headphones""]",1141.51,{},96748,1,Europe +2024-05-15,36655,4482,"[""Laptop"", ""Charger""]",4475.41,"{""promo"": ""30%""}",160954,1,Europe +2024-05-10,36656,213,"[""Tablet"", ""Charger"", ""Monitor""]",3844.41,{},243421,0,Europe +2024-01-28,36657,6345,"[""Keyboard""]",1179.63,"{""seasonal"": ""21%""}",1423,0,South America +2024-11-09,36658,6413,"[""Phone"", ""Headphones""]",3243.08,"{""seasonal"": ""11%""}",181886,0,Asia +2024-08-22,36659,4213,"[""Keyboard"", ""Laptop"", ""Tablet""]",3681.61,{},163399,1,Europe +2023-12-29,36660,2968,"[""Keyboard"", ""Wireless Mouse""]",1274.52,"{""promo"": ""28%""}",57718,0,Asia +2023-12-18,36661,7692,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",57.09,"{""loyalty"": ""25%""}",103812,0,Europe +2024-05-07,36662,8634,"[""Tablet"", ""Laptop""]",1059.1,"{""loyalty"": ""18%""}",46850,0,Asia +2023-05-16,36663,8692,"[""Laptop""]",4585.71,{},143118,1,South America +2023-09-25,36664,3814,"[""Headphones"", ""Charger"", ""Monitor""]",3946.56,{},151868,1,North America +2023-03-03,36665,9248,"[""Phone"", ""Wireless Mouse""]",2221.21,{},116890,1,South America +2023-04-28,36666,2638,"[""Phone""]",4824.66,"{""promo"": ""26%""}",267120,1,Asia +2024-10-10,36667,2596,"[""Headphones""]",2124.42,{},97908,1,Europe +2023-01-03,36668,153,"[""Wireless Mouse"", ""Keyboard""]",3127.72,"{""loyalty"": ""13%""}",213904,1,Asia +2024-01-12,36669,8081,"[""Headphones"", ""Tablet""]",367.32,"{"""": ""26%""}",51753,1,Europe +2023-05-11,36670,153,"[""Wireless Mouse""]",3653.96,"{"""": ""27%""}",199455,1,South America +2023-01-27,36671,8846,"[""Wireless Mouse"", ""Monitor""]",1382.34,{},296359,0,North America +2023-08-09,36672,112,"[""Phone"", ""Charger""]",3066.0,{},118665,0,Africa +2023-06-09,36673,6288,"[""Tablet""]",860.93,{},68681,0,Asia +2024-10-19,36674,5755,"[""Monitor"", ""Phone"", ""Keyboard""]",3436.67,"{""seasonal"": ""28%""}",229036,0,North America +2023-08-15,36675,9641,"[""Monitor"", ""Phone""]",4443.62,"{"""": ""30%""}",107770,0,North America +2024-05-02,36676,8190,"[""Monitor""]",2592.04,"{""promo"": ""23%""}",193443,1,Africa +2024-11-09,36677,9847,"[""Tablet"", ""Keyboard""]",1250.35,"{""promo"": ""19%""}",69407,0,Europe +2023-12-05,36678,6854,"[""Monitor"", ""Charger"", ""Phone""]",2904.98,"{""seasonal"": ""5%""}",18941,1,North America +2024-01-23,36679,5741,"[""Laptop""]",4929.39,{},41230,1,North America +2024-03-06,36680,9185,"[""Keyboard"", ""Tablet""]",436.03,"{""seasonal"": ""15%""}",272546,0,South America +2024-02-05,36681,5814,"[""Phone"", ""Headphones"", ""Tablet""]",221.82,"{""loyalty"": ""9%""}",261974,1,South America +2024-08-26,36682,567,"[""Tablet"", ""Headphones"", ""Laptop""]",946.6,"{"""": ""22%""}",296345,1,Europe +2023-10-15,36683,3598,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",531.46,"{""seasonal"": ""28%""}",291303,0,Asia +2023-04-23,36684,7077,"[""Phone"", ""Charger""]",4770.86,{},86655,0,South America +2023-12-26,36685,8971,"[""Charger""]",1591.35,{},20700,1,North America +2024-05-20,36686,2996,"[""Wireless Mouse"", ""Tablet""]",3150.38,{},243721,1,Asia +2024-09-18,36687,2841,"[""Keyboard"", ""Charger""]",834.34,{},31216,0,Asia +2024-04-29,36688,3274,"[""Headphones""]",1736.98,"{""promo"": ""22%""}",104225,1,Asia +2023-02-08,36689,2544,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3745.87,{},108650,0,Africa +2024-12-05,36690,218,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3373.62,"{"""": ""25%""}",24294,1,South America +2024-03-30,36691,2158,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",539.71,{},254730,0,Africa +2023-05-05,36692,3706,"[""Headphones"", ""Monitor"", ""Tablet""]",1211.2,"{""promo"": ""30%""}",210605,1,Asia +2024-11-11,36693,4729,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",700.4,"{""seasonal"": ""10%""}",138699,1,Europe +2024-03-10,36694,3739,"[""Phone"", ""Charger""]",1648.6,{},281914,0,Asia +2024-12-10,36695,3241,"[""Charger""]",2278.68,{},214676,0,Africa +2023-10-25,36696,6469,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",620.13,"{""promo"": ""8%""}",168275,0,Asia +2024-08-03,36697,5332,"[""Headphones""]",2484.38,{},13250,1,Europe +2023-05-12,36698,6559,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3884.51,"{""promo"": ""30%""}",284389,0,Europe +2024-11-20,36699,1575,"[""Phone"", ""Laptop"", ""Tablet""]",2527.78,"{""loyalty"": ""25%""}",90398,0,Africa +2024-11-11,36700,7925,"[""Monitor"", ""Phone""]",4743.95,{},275458,1,Africa +2023-05-03,36701,7397,"[""Laptop""]",2789.73,"{""loyalty"": ""18%""}",45442,1,South America +2024-08-14,36702,5363,"[""Laptop"", ""Headphones""]",329.99,{},174267,0,North America +2024-12-18,36703,3934,"[""Charger"", ""Monitor"", ""Laptop""]",1466.79,"{""seasonal"": ""12%""}",214785,1,Europe +2024-02-11,36704,2736,"[""Tablet"", ""Wireless Mouse""]",2551.06,"{""loyalty"": ""21%""}",29881,0,Asia +2023-11-04,36705,4102,"[""Keyboard"", ""Tablet""]",1904.22,"{""seasonal"": ""6%""}",103645,0,North America +2023-01-20,36706,8586,"[""Laptop"", ""Charger"", ""Tablet""]",3228.45,{},209949,1,Africa +2023-02-24,36707,7113,"[""Laptop""]",1958.47,"{"""": ""30%""}",199082,0,Asia +2023-02-01,36708,8036,"[""Headphones"", ""Wireless Mouse""]",1239.97,{},192983,1,North America +2023-05-17,36709,3388,"[""Wireless Mouse""]",3238.82,{},252048,0,South America +2023-01-08,36710,278,"[""Wireless Mouse""]",4440.39,"{""seasonal"": ""28%""}",11676,1,Europe +2023-10-25,36711,4379,"[""Headphones"", ""Charger""]",2511.07,"{""loyalty"": ""6%""}",61886,0,North America +2023-12-23,36712,1214,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2285.88,"{""seasonal"": ""26%""}",287511,1,South America +2024-06-09,36713,3475,"[""Phone"", ""Laptop""]",4126.86,{},20909,0,Asia +2024-09-03,36714,9915,"[""Wireless Mouse"", ""Headphones""]",2782.14,"{""promo"": ""29%""}",38024,1,Asia +2024-12-09,36715,7557,"[""Tablet""]",3692.16,{},189648,0,Asia +2023-03-29,36716,8327,"[""Phone"", ""Keyboard""]",1351.39,{},5777,1,North America +2023-01-15,36717,4954,"[""Headphones""]",951.74,"{"""": ""12%""}",278714,0,South America +2023-02-07,36718,5662,"[""Tablet"", ""Charger"", ""Keyboard""]",1828.36,{},158725,1,South America +2024-09-17,36719,1072,"[""Monitor""]",3593.38,{},24122,0,South America +2024-10-25,36720,3778,"[""Headphones"", ""Charger""]",1760.53,{},8845,0,North America +2023-03-31,36721,8222,"[""Keyboard""]",968.8,"{""seasonal"": ""30%""}",44853,0,South America +2024-03-10,36722,7143,"[""Wireless Mouse""]",330.48,{},215916,0,Europe +2023-01-07,36723,6081,"[""Laptop""]",3752.42,{},57868,0,Africa +2024-10-05,36724,3632,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2729.78,{},140610,0,Europe +2024-03-11,36725,4459,"[""Monitor""]",4866.86,"{"""": ""29%""}",112746,1,South America +2024-11-04,36726,3227,"[""Charger"", ""Monitor""]",3711.15,{},3581,1,Africa +2023-05-11,36727,1271,"[""Keyboard"", ""Laptop""]",3880.14,{},183994,0,Asia +2024-07-03,36728,1009,"[""Charger"", ""Tablet""]",2196.39,"{"""": ""26%""}",247101,1,Europe +2023-11-15,36729,2547,"[""Laptop"", ""Keyboard"", ""Phone""]",3421.35,"{""seasonal"": ""9%""}",273869,0,Europe +2023-05-19,36730,4857,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2013.05,"{""loyalty"": ""20%""}",147152,1,Asia +2024-07-18,36731,8007,"[""Monitor"", ""Wireless Mouse""]",1722.36,"{""promo"": ""8%""}",16116,0,Asia +2023-12-27,36732,8120,"[""Tablet"", ""Headphones""]",1824.01,"{""promo"": ""14%""}",257473,1,Europe +2024-12-02,36733,4450,"[""Laptop"", ""Tablet""]",2821.97,"{""seasonal"": ""5%""}",252836,0,Africa +2023-11-06,36734,7863,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4226.13,{},88884,1,Africa +2023-07-20,36735,9656,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3953.83,"{""seasonal"": ""20%""}",67363,0,South America +2024-09-03,36736,5991,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",377.95,{},62121,0,Asia +2024-05-14,36737,1032,"[""Keyboard"", ""Tablet""]",3449.29,"{""promo"": ""26%""}",189944,0,Africa +2023-01-07,36738,2364,"[""Charger""]",533.27,"{""promo"": ""25%""}",53862,0,South America +2024-07-03,36739,7372,"[""Phone""]",2457.91,{},243496,1,South America +2024-05-08,36740,8147,"[""Laptop""]",1013.49,"{"""": ""5%""}",119844,0,Europe +2024-02-17,36741,2727,"[""Phone"", ""Tablet"", ""Charger""]",2345.16,{},215491,0,North America +2023-05-25,36742,234,"[""Headphones"", ""Laptop""]",3605.33,"{""seasonal"": ""29%""}",3957,1,Europe +2023-07-20,36743,3938,"[""Tablet""]",2448.82,{},173895,0,Africa +2023-11-13,36744,5527,"[""Headphones"", ""Monitor"", ""Tablet""]",4771.18,{},147511,0,Africa +2024-10-08,36745,7406,"[""Wireless Mouse"", ""Tablet""]",4183.12,"{"""": ""16%""}",53255,0,Africa +2024-02-02,36746,5454,"[""Headphones"", ""Monitor"", ""Tablet""]",154.21,"{""loyalty"": ""28%""}",97720,1,Africa +2024-03-08,36747,6853,"[""Monitor""]",1194.06,{},42287,1,Europe +2024-03-19,36748,4140,"[""Laptop""]",588.15,{},77568,0,North America +2024-01-05,36749,5085,"[""Headphones"", ""Keyboard"", ""Tablet""]",3171.07,{},187961,1,North America +2023-07-27,36750,499,"[""Tablet"", ""Keyboard""]",1494.84,"{""seasonal"": ""25%""}",59295,0,Europe +2023-08-08,36751,6783,"[""Laptop"", ""Keyboard""]",1606.71,{},132316,1,Africa +2023-05-10,36752,1870,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1604.59,"{""promo"": ""21%""}",34309,1,Asia +2024-04-25,36753,5698,"[""Charger""]",1184.25,"{"""": ""21%""}",30820,0,North America +2024-12-09,36754,6698,"[""Headphones"", ""Phone""]",701.35,{},32776,1,Asia +2023-01-15,36755,9239,"[""Monitor"", ""Charger""]",1244.48,"{""loyalty"": ""30%""}",150333,1,Africa +2024-03-03,36756,1523,"[""Headphones"", ""Phone""]",3150.97,"{""loyalty"": ""6%""}",160551,1,North America +2023-07-06,36757,7091,"[""Tablet"", ""Phone"", ""Laptop""]",3841.48,{},3190,1,Asia +2023-05-11,36758,7078,"[""Charger"", ""Monitor"", ""Keyboard""]",2303.82,{},280180,1,Europe +2023-02-02,36759,8812,"[""Keyboard"", ""Tablet"", ""Monitor""]",2197.83,{},290138,1,South America +2023-03-23,36760,64,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1647.83,{},179082,1,Europe +2023-04-12,36761,9008,"[""Tablet"", ""Monitor""]",4759.34,{},21734,1,South America +2023-11-14,36762,4228,"[""Tablet""]",4283.62,{},5301,1,Africa +2024-10-31,36763,6258,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",533.0,"{""seasonal"": ""7%""}",259291,1,Europe +2023-01-08,36764,9854,"[""Charger""]",3936.01,"{""promo"": ""6%""}",90933,1,Asia +2023-10-04,36765,4919,"[""Laptop"", ""Wireless Mouse""]",4403.6,"{""seasonal"": ""6%""}",52014,1,Africa +2024-09-11,36766,5000,"[""Wireless Mouse"", ""Charger""]",4907.92,{},88461,1,Africa +2023-11-03,36767,6952,"[""Charger"", ""Tablet""]",4330.6,{},91081,1,South America +2023-07-07,36768,6238,"[""Tablet""]",1797.69,{},107534,0,Asia +2023-05-04,36769,8927,"[""Charger"", ""Wireless Mouse""]",1686.6,"{"""": ""16%""}",225365,0,Asia +2024-03-26,36770,1565,"[""Charger"", ""Phone"", ""Laptop""]",54.17,"{"""": ""11%""}",295842,1,Africa +2024-07-29,36771,3411,"[""Phone""]",4904.52,{},26452,0,South America +2024-10-20,36772,5066,"[""Wireless Mouse"", ""Monitor""]",4702.08,"{""seasonal"": ""8%""}",144539,0,Asia +2024-09-05,36773,1661,"[""Charger""]",2449.96,"{"""": ""23%""}",147315,0,North America +2023-10-28,36774,2541,"[""Tablet"", ""Phone"", ""Monitor""]",4663.42,"{""seasonal"": ""6%""}",293368,1,Asia +2023-03-22,36775,5440,"[""Phone"", ""Wireless Mouse""]",650.35,{},174111,1,South America +2023-01-13,36776,3992,"[""Charger"", ""Headphones"", ""Keyboard""]",4406.69,"{"""": ""5%""}",160876,0,North America +2023-06-20,36777,267,"[""Wireless Mouse"", ""Laptop""]",1167.45,"{"""": ""29%""}",193894,1,South America +2023-01-14,36778,8918,"[""Headphones"", ""Laptop"", ""Monitor""]",2552.11,{},214375,1,South America +2023-02-16,36779,2003,"[""Wireless Mouse""]",1583.47,{},151198,0,Africa +2023-11-27,36780,8213,"[""Tablet"", ""Phone"", ""Monitor""]",4852.51,{},140464,1,South America +2023-04-14,36781,6800,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2241.86,{},147262,1,Asia +2024-10-14,36782,6041,"[""Keyboard"", ""Tablet""]",1247.17,"{"""": ""23%""}",199612,0,Asia +2023-06-06,36783,5445,"[""Monitor"", ""Headphones"", ""Phone""]",4821.47,{},34671,0,North America +2023-05-08,36784,3623,"[""Phone""]",4402.18,{},76319,1,Asia +2023-03-15,36785,4278,"[""Monitor"", ""Phone"", ""Headphones""]",956.78,{},55266,1,North America +2023-01-30,36786,6108,"[""Wireless Mouse"", ""Charger""]",1143.94,"{""seasonal"": ""26%""}",62937,1,Africa +2024-05-06,36787,8863,"[""Phone"", ""Headphones"", ""Laptop""]",3127.39,{},161208,1,South America +2023-10-15,36788,7400,"[""Laptop"", ""Keyboard"", ""Phone""]",2650.04,"{""promo"": ""15%""}",193877,0,Asia +2024-12-08,36789,2655,"[""Charger"", ""Headphones""]",2385.94,"{""loyalty"": ""22%""}",223268,1,Asia +2024-04-13,36790,7658,"[""Phone""]",4253.29,{},138941,1,North America +2023-09-07,36791,2520,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3312.6,{},296642,1,Asia +2024-05-03,36792,8100,"[""Laptop"", ""Phone""]",80.02,"{""promo"": ""14%""}",138092,1,Asia +2024-01-19,36793,4298,"[""Phone""]",3293.91,{},175590,1,South America +2024-08-19,36794,1610,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",371.32,"{""seasonal"": ""15%""}",120822,0,Africa +2024-02-25,36795,3705,"[""Tablet""]",4638.92,"{""seasonal"": ""24%""}",107099,0,North America +2023-03-18,36796,9238,"[""Monitor"", ""Phone"", ""Laptop""]",3532.68,"{""loyalty"": ""16%""}",90787,1,Europe +2024-11-07,36797,55,"[""Monitor""]",3693.96,{},134299,1,Africa +2023-02-04,36798,7850,"[""Charger"", ""Laptop"", ""Phone""]",2498.09,"{""loyalty"": ""26%""}",215768,1,North America +2024-03-28,36799,7167,"[""Laptop"", ""Headphones""]",1788.96,"{"""": ""18%""}",19033,0,Europe +2023-03-31,36800,5650,"[""Phone""]",3157.58,{},220357,1,North America +2024-10-07,36801,7802,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3849.96,{},61185,1,North America +2024-08-04,36802,3208,"[""Charger"", ""Monitor""]",4881.4,{},176994,1,North America +2023-08-01,36803,5009,"[""Monitor"", ""Keyboard""]",115.75,{},242818,1,Europe +2024-12-30,36804,2233,"[""Keyboard""]",1528.88,{},145406,1,Africa +2023-06-02,36805,5673,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3110.19,{},160776,1,Asia +2023-01-15,36806,3669,"[""Keyboard"", ""Tablet"", ""Charger""]",4296.45,"{"""": ""16%""}",179751,0,Europe +2023-01-26,36807,5340,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",376.18,"{"""": ""18%""}",184940,1,North America +2023-03-29,36808,6473,"[""Keyboard"", ""Laptop""]",886.62,"{"""": ""11%""}",118797,1,Asia +2024-01-04,36809,3466,"[""Wireless Mouse""]",3402.2,"{""seasonal"": ""24%""}",194461,0,Europe +2023-01-27,36810,5915,"[""Charger""]",3334.12,"{""promo"": ""23%""}",73023,1,South America +2023-01-17,36811,7485,"[""Phone"", ""Laptop""]",3026.31,{},99440,1,Africa +2023-11-08,36812,8165,"[""Wireless Mouse"", ""Laptop""]",1725.29,"{""seasonal"": ""27%""}",80130,1,Africa +2024-01-17,36813,9889,"[""Charger"", ""Headphones"", ""Laptop""]",1441.1,"{""promo"": ""8%""}",158615,1,Africa +2024-04-09,36814,2520,"[""Laptop""]",4695.57,{},85557,0,South America +2024-07-06,36815,3654,"[""Keyboard"", ""Headphones"", ""Laptop""]",3184.98,{},11350,1,North America +2023-05-04,36816,4317,"[""Headphones"", ""Keyboard""]",2885.41,{},276179,0,Africa +2024-07-31,36817,9696,"[""Phone"", ""Tablet""]",4303.48,"{""loyalty"": ""10%""}",131831,1,Asia +2023-02-20,36818,335,"[""Charger""]",3147.55,{},240173,0,Asia +2024-07-24,36819,6532,"[""Monitor""]",60.2,{},213678,1,North America +2023-01-05,36820,6308,"[""Wireless Mouse"", ""Charger""]",4550.95,{},175569,0,Africa +2023-04-22,36821,8963,"[""Laptop"", ""Keyboard"", ""Charger""]",2968.72,{},249952,0,Asia +2024-01-17,36822,156,"[""Laptop"", ""Phone""]",1250.61,{},290166,1,North America +2024-03-24,36823,7732,"[""Headphones"", ""Charger"", ""Phone""]",2181.19,"{""promo"": ""19%""}",36951,1,South America +2023-01-16,36824,4188,"[""Headphones"", ""Wireless Mouse""]",1932.97,"{""loyalty"": ""29%""}",2682,1,Europe +2024-09-21,36825,9913,"[""Keyboard""]",2483.99,"{""loyalty"": ""10%""}",70981,1,North America +2024-05-25,36826,5452,"[""Wireless Mouse"", ""Phone""]",219.58,"{"""": ""17%""}",143968,0,North America +2023-03-09,36827,5285,"[""Charger""]",2578.38,{},292842,0,North America +2024-11-21,36828,6673,"[""Keyboard""]",1581.09,{},146772,1,North America +2024-07-22,36829,8927,"[""Headphones"", ""Keyboard""]",2448.54,{},27976,1,North America +2023-09-24,36830,4453,"[""Wireless Mouse"", ""Phone""]",2746.44,"{""loyalty"": ""12%""}",83850,1,Europe +2023-10-04,36831,4867,"[""Charger"", ""Headphones""]",230.35,{},253963,0,North America +2024-10-23,36832,9271,"[""Wireless Mouse""]",4898.32,{},84544,1,Africa +2024-09-19,36833,310,"[""Headphones"", ""Keyboard"", ""Charger""]",4395.25,{},69628,0,North America +2024-07-05,36834,8790,"[""Charger""]",1986.13,"{"""": ""27%""}",221277,1,South America +2023-11-22,36835,6160,"[""Keyboard""]",3892.64,{},159652,0,North America +2024-01-24,36836,6208,"[""Headphones"", ""Keyboard"", ""Charger""]",4734.72,{},247997,1,North America +2024-11-07,36837,540,"[""Laptop""]",2747.21,"{""seasonal"": ""5%""}",265418,1,Africa +2023-06-01,36838,5064,"[""Wireless Mouse""]",4101.45,{},259236,1,Asia +2024-09-26,36839,7148,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1891.12,"{""promo"": ""16%""}",282906,0,South America +2024-05-09,36840,3876,"[""Charger"", ""Laptop""]",2013.32,"{"""": ""24%""}",230647,1,Asia +2024-02-16,36841,7504,"[""Charger""]",2527.07,"{"""": ""28%""}",85899,1,Europe +2023-12-22,36842,9274,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",527.17,"{""promo"": ""28%""}",180773,1,Europe +2024-03-10,36843,8485,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4570.78,{},91754,1,Africa +2024-11-03,36844,9994,"[""Laptop"", ""Tablet""]",3954.73,{},40800,1,South America +2023-10-16,36845,9286,"[""Tablet"", ""Laptop""]",3263.35,"{"""": ""15%""}",110893,0,Asia +2023-02-13,36846,2912,"[""Keyboard"", ""Wireless Mouse""]",4998.03,{},35182,0,South America +2024-01-10,36847,49,"[""Monitor""]",3189.3,{},184931,0,North America +2024-06-02,36848,8988,"[""Charger"", ""Wireless Mouse""]",3230.81,{},45534,0,North America +2024-07-03,36849,4712,"[""Laptop""]",391.32,{},175706,0,Africa +2024-08-24,36850,2018,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1172.52,"{""seasonal"": ""7%""}",209726,0,North America +2024-11-15,36851,3332,"[""Keyboard"", ""Headphones""]",295.97,{},244515,0,Europe +2024-09-10,36852,369,"[""Monitor"", ""Laptop"", ""Phone""]",4036.66,"{""seasonal"": ""30%""}",97025,0,Europe +2024-03-05,36853,797,"[""Tablet""]",544.55,{},181768,1,Europe +2023-10-11,36854,5710,"[""Charger""]",1153.58,"{""loyalty"": ""15%""}",56215,1,South America +2024-03-16,36855,8669,"[""Charger"", ""Laptop"", ""Keyboard""]",922.48,"{"""": ""5%""}",51515,1,North America +2024-04-17,36856,3583,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3210.38,"{"""": ""22%""}",225413,1,Europe +2024-07-09,36857,9633,"[""Tablet""]",400.92,{},231502,0,South America +2023-09-24,36858,191,"[""Keyboard"", ""Charger"", ""Headphones""]",2907.32,{},62363,0,South America +2024-11-12,36859,4843,"[""Keyboard"", ""Charger"", ""Tablet""]",4944.17,{},19047,0,Africa +2023-07-15,36860,1718,"[""Tablet"", ""Headphones""]",597.6,{},17341,0,South America +2024-09-04,36861,6540,"[""Tablet"", ""Laptop"", ""Monitor""]",867.39,"{""loyalty"": ""26%""}",206590,0,South America +2024-09-20,36862,4729,"[""Keyboard"", ""Headphones"", ""Monitor""]",4449.69,"{""promo"": ""14%""}",7069,1,South America +2023-02-13,36863,5174,"[""Keyboard"", ""Tablet""]",4149.22,"{""loyalty"": ""13%""}",244303,0,Africa +2024-11-07,36864,2886,"[""Phone""]",2054.2,{},268105,0,North America +2024-01-04,36865,9435,"[""Keyboard"", ""Laptop""]",689.12,{},290850,1,Africa +2024-05-08,36866,2268,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4864.22,{},161363,1,Asia +2023-06-08,36867,9723,"[""Wireless Mouse"", ""Charger""]",4625.45,"{"""": ""16%""}",84422,1,Asia +2023-07-27,36868,4796,"[""Monitor"", ""Headphones""]",2139.91,{},33193,0,Europe +2023-07-12,36869,8337,"[""Tablet"", ""Phone"", ""Headphones""]",4622.95,"{""loyalty"": ""21%""}",251851,1,Europe +2024-07-31,36870,9593,"[""Monitor"", ""Laptop""]",1850.11,{},118834,1,South America +2023-11-17,36871,2018,"[""Keyboard"", ""Monitor""]",2616.75,"{""promo"": ""8%""}",242362,0,South America +2023-11-01,36872,5699,"[""Phone"", ""Laptop"", ""Headphones""]",2099.08,{},213113,0,North America +2023-06-21,36873,7554,"[""Laptop"", ""Charger"", ""Phone""]",2140.35,"{""seasonal"": ""18%""}",263619,1,Asia +2023-03-20,36874,6842,"[""Keyboard""]",1214.71,{},232663,1,Asia +2024-05-06,36875,9852,"[""Wireless Mouse"", ""Headphones""]",1794.42,{},61383,1,South America +2023-01-07,36876,8126,"[""Keyboard"", ""Monitor""]",2775.88,"{""seasonal"": ""10%""}",91219,1,North America +2024-03-12,36877,6873,"[""Phone"", ""Tablet"", ""Headphones""]",3131.75,"{"""": ""5%""}",55538,1,Europe +2023-03-25,36878,9196,"[""Wireless Mouse""]",1882.91,"{""seasonal"": ""13%""}",168377,1,North America +2024-06-11,36879,1968,"[""Wireless Mouse""]",2175.62,"{""promo"": ""8%""}",4049,1,South America +2023-07-24,36880,632,"[""Keyboard""]",2021.7,{},187205,0,Africa +2023-02-05,36881,439,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1594.36,"{""seasonal"": ""20%""}",6239,0,Asia +2023-09-19,36882,3771,"[""Monitor""]",2755.77,{},235112,0,South America +2023-12-12,36883,5848,"[""Monitor"", ""Charger""]",4510.45,{},174072,0,Asia +2023-04-23,36884,9598,"[""Monitor"", ""Keyboard""]",4590.22,"{""promo"": ""28%""}",153923,0,South America +2024-10-06,36885,7581,"[""Monitor"", ""Tablet""]",690.62,{},131808,0,North America +2024-03-02,36886,516,"[""Keyboard""]",4264.23,{},224386,0,Asia +2024-01-11,36887,328,"[""Charger"", ""Laptop""]",4306.24,"{""loyalty"": ""6%""}",102219,1,South America +2023-08-26,36888,9202,"[""Charger"", ""Headphones"", ""Phone""]",2958.68,{},249702,1,Asia +2023-01-30,36889,2697,"[""Phone"", ""Headphones"", ""Laptop""]",3840.48,{},202314,0,Europe +2024-12-27,36890,7538,"[""Charger""]",2888.66,{},277383,1,North America +2024-09-24,36891,7827,"[""Tablet""]",4445.03,"{"""": ""15%""}",233259,1,Europe +2023-08-12,36892,2687,"[""Phone"", ""Tablet"", ""Keyboard""]",2164.45,{},134103,0,Africa +2023-01-19,36893,6482,"[""Laptop""]",959.04,{},67077,1,South America +2024-07-28,36894,8080,"[""Charger"", ""Wireless Mouse""]",4667.56,{},153980,1,South America +2023-06-26,36895,5964,"[""Tablet"", ""Charger""]",619.68,"{""seasonal"": ""30%""}",257258,0,North America +2023-08-28,36896,9760,"[""Wireless Mouse""]",1262.2,"{""loyalty"": ""11%""}",69263,0,Europe +2023-01-10,36897,6236,"[""Wireless Mouse""]",1329.28,"{""promo"": ""21%""}",101585,1,Europe +2024-03-27,36898,1561,"[""Phone"", ""Monitor""]",1235.06,"{""seasonal"": ""25%""}",62146,0,Africa +2024-04-29,36899,172,"[""Tablet""]",4968.9,"{""loyalty"": ""10%""}",96767,0,Asia +2024-12-17,36900,2977,"[""Monitor""]",3463.41,"{""seasonal"": ""5%""}",261075,0,Europe +2023-02-19,36901,307,"[""Phone"", ""Monitor"", ""Tablet""]",3779.31,"{"""": ""18%""}",2760,0,Europe +2024-06-28,36902,5656,"[""Charger""]",4192.84,"{""seasonal"": ""22%""}",192431,0,Asia +2023-04-10,36903,1,"[""Tablet"", ""Monitor""]",1324.42,"{"""": ""11%""}",122994,0,Asia +2024-11-22,36904,3549,"[""Tablet"", ""Monitor""]",936.73,{},25405,0,South America +2023-10-09,36905,9941,"[""Headphones"", ""Tablet""]",4169.85,"{"""": ""28%""}",82395,1,Asia +2024-04-23,36906,3580,"[""Keyboard""]",966.99,"{""promo"": ""22%""}",154718,0,North America +2023-09-08,36907,5787,"[""Headphones""]",4986.74,{},261139,0,North America +2023-05-20,36908,7220,"[""Phone"", ""Wireless Mouse""]",3642.78,"{""promo"": ""8%""}",12560,1,Africa +2024-01-06,36909,8485,"[""Headphones""]",4231.56,{},225867,1,South America +2023-02-02,36910,3129,"[""Wireless Mouse"", ""Monitor""]",2636.91,{},126342,1,Africa +2024-12-03,36911,8578,"[""Charger""]",2070.31,{},57603,1,Europe +2024-01-31,36912,6469,"[""Headphones""]",1469.83,{},75218,1,Asia +2023-11-06,36913,9259,"[""Tablet""]",2529.45,"{""promo"": ""9%""}",288764,1,Asia +2023-01-26,36914,2798,"[""Charger""]",3388.08,{},46808,0,North America +2023-01-10,36915,238,"[""Charger"", ""Phone""]",4361.48,{},252299,1,North America +2023-10-22,36916,8879,"[""Laptop"", ""Wireless Mouse""]",3584.39,{},253021,1,North America +2023-10-14,36917,5580,"[""Keyboard""]",4982.43,"{""loyalty"": ""17%""}",273875,1,South America +2024-06-07,36918,6349,"[""Wireless Mouse"", ""Tablet""]",526.04,{},27534,0,South America +2024-06-10,36919,4379,"[""Headphones"", ""Wireless Mouse""]",3702.63,{},153895,1,North America +2023-11-28,36920,5047,"[""Charger""]",82.37,{},285048,0,Europe +2024-11-20,36921,1845,"[""Charger""]",825.35,{},282772,1,Asia +2023-08-02,36922,9482,"[""Wireless Mouse"", ""Laptop""]",523.81,{},227595,1,Africa +2024-04-14,36923,4026,"[""Phone""]",3056.8,"{""loyalty"": ""20%""}",172678,0,Asia +2023-08-08,36924,843,"[""Wireless Mouse""]",834.94,"{""promo"": ""15%""}",98802,1,Asia +2024-01-27,36925,4013,"[""Headphones"", ""Tablet"", ""Keyboard""]",1119.76,{},51414,1,Africa +2023-04-29,36926,3303,"[""Phone"", ""Monitor"", ""Tablet""]",1420.2,"{""loyalty"": ""12%""}",96253,1,Europe +2024-05-07,36927,9155,"[""Phone"", ""Tablet"", ""Headphones""]",4957.53,{},266682,0,Africa +2023-05-04,36928,7410,"[""Keyboard"", ""Charger""]",3961.13,{},102479,1,Europe +2023-09-23,36929,2322,"[""Tablet"", ""Charger""]",2353.28,{},167870,1,Africa +2024-11-15,36930,430,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2931.21,{},223471,1,Africa +2023-06-14,36931,8958,"[""Monitor"", ""Headphones""]",1155.78,{},22653,1,Asia +2023-01-28,36932,3940,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3458.01,{},59667,1,North America +2024-11-28,36933,727,"[""Charger"", ""Monitor"", ""Tablet""]",2754.76,"{""loyalty"": ""24%""}",120869,1,Europe +2024-08-12,36934,8407,"[""Headphones"", ""Charger"", ""Phone""]",1971.18,"{""loyalty"": ""9%""}",173941,0,South America +2024-06-24,36935,6789,"[""Charger""]",457.26,{},49599,0,North America +2024-01-28,36936,1201,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4939.86,"{""seasonal"": ""14%""}",125516,1,North America +2023-09-01,36937,5283,"[""Laptop"", ""Headphones"", ""Keyboard""]",2656.06,"{""loyalty"": ""9%""}",13653,0,North America +2024-04-12,36938,3105,"[""Monitor"", ""Phone""]",4684.25,{},12614,0,Africa +2023-05-12,36939,6612,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3910.4,{},264446,0,North America +2023-02-05,36940,2531,"[""Keyboard""]",4542.98,{},28069,0,Asia +2023-06-14,36941,4304,"[""Charger"", ""Tablet"", ""Headphones""]",130.15,{},234352,1,South America +2023-02-16,36942,4833,"[""Phone""]",362.54,{},49300,0,Africa +2024-01-29,36943,4489,"[""Wireless Mouse"", ""Phone""]",541.0,{},28776,1,North America +2024-06-21,36944,716,"[""Monitor"", ""Tablet"", ""Charger""]",4220.14,{},166117,1,Africa +2024-07-29,36945,7377,"[""Phone"", ""Keyboard""]",2088.19,{},95549,0,Europe +2023-09-11,36946,7646,"[""Keyboard"", ""Monitor""]",3895.22,"{""loyalty"": ""8%""}",96419,0,Asia +2024-06-15,36947,6689,"[""Keyboard""]",3259.26,"{""loyalty"": ""22%""}",198506,0,North America +2024-10-11,36948,2595,"[""Tablet""]",2586.39,{},233979,1,Europe +2023-08-02,36949,9868,"[""Laptop""]",1127.89,{},75447,1,North America +2023-12-08,36950,4332,"[""Keyboard""]",3088.89,"{""promo"": ""7%""}",271399,0,North America +2024-10-19,36951,2388,"[""Keyboard""]",740.65,{},31363,0,Europe +2024-09-13,36952,840,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2476.45,"{""loyalty"": ""23%""}",114799,1,Asia +2023-09-14,36953,9497,"[""Headphones"", ""Laptop""]",2135.34,{},115184,0,Europe +2023-12-03,36954,8172,"[""Charger""]",3041.38,{},285853,1,South America +2023-10-30,36955,6745,"[""Monitor""]",2234.4,"{""loyalty"": ""22%""}",80299,0,Europe +2024-11-18,36956,106,"[""Phone"", ""Wireless Mouse""]",2045.61,{},258291,0,Africa +2024-03-03,36957,5843,"[""Wireless Mouse""]",2646.77,{},150054,0,Africa +2023-01-27,36958,8956,"[""Laptop"", ""Headphones""]",535.21,{},45618,1,Asia +2024-11-16,36959,4023,"[""Charger""]",4329.89,"{""loyalty"": ""11%""}",113342,1,North America +2024-06-04,36960,7666,"[""Monitor"", ""Headphones""]",650.82,{},132341,1,Europe +2023-05-22,36961,9461,"[""Laptop"", ""Wireless Mouse""]",1579.81,"{""seasonal"": ""12%""}",61601,0,Asia +2023-11-07,36962,2978,"[""Phone"", ""Keyboard""]",4372.22,"{""loyalty"": ""24%""}",294207,1,Africa +2024-09-04,36963,902,"[""Phone"", ""Laptop""]",2900.5,{},259292,0,South America +2024-08-01,36964,5033,"[""Monitor""]",222.5,{},239444,0,Asia +2024-10-07,36965,186,"[""Wireless Mouse""]",1011.8,"{""seasonal"": ""6%""}",169768,0,Europe +2024-04-24,36966,411,"[""Tablet"", ""Monitor"", ""Charger""]",2276.71,"{""loyalty"": ""15%""}",123074,0,Africa +2023-11-27,36967,4096,"[""Headphones""]",183.38,{},82332,1,Asia +2024-07-14,36968,7701,"[""Phone"", ""Wireless Mouse""]",3000.18,{},247036,0,Asia +2023-01-22,36969,4983,"[""Phone"", ""Keyboard""]",3030.73,"{""promo"": ""24%""}",57780,0,Asia +2023-09-06,36970,5506,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4100.23,"{""loyalty"": ""6%""}",174038,1,Asia +2023-03-24,36971,4978,"[""Phone"", ""Wireless Mouse""]",4230.17,{},34265,1,Africa +2024-03-23,36972,3858,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",318.31,{},29352,0,Asia +2023-07-29,36973,2276,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2151.32,"{""loyalty"": ""5%""}",198486,0,Africa +2023-11-18,36974,9398,"[""Phone"", ""Monitor"", ""Keyboard""]",2096.38,{},298712,1,South America +2023-06-15,36975,7597,"[""Monitor"", ""Tablet"", ""Charger""]",1147.87,{},116098,0,North America +2023-05-22,36976,4606,"[""Keyboard"", ""Laptop"", ""Headphones""]",1940.88,{},224400,1,Europe +2024-12-30,36977,9565,"[""Tablet""]",4014.4,{},169436,1,Europe +2024-12-18,36978,6068,"[""Wireless Mouse""]",148.29,"{""promo"": ""17%""}",238231,0,Europe +2023-06-30,36979,1502,"[""Tablet"", ""Phone""]",2850.09,"{""loyalty"": ""9%""}",279572,0,North America +2024-09-12,36980,896,"[""Charger"", ""Phone""]",2101.48,{},14173,1,Asia +2024-06-17,36981,8464,"[""Tablet""]",4943.53,"{""loyalty"": ""12%""}",59538,0,South America +2024-07-08,36982,2060,"[""Phone""]",4086.44,{},41760,1,South America +2024-03-18,36983,9675,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1706.03,"{""promo"": ""5%""}",21172,0,South America +2024-10-20,36984,909,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3845.12,{},274691,1,South America +2023-11-27,36985,2434,"[""Phone"", ""Charger""]",3147.66,"{""seasonal"": ""21%""}",72096,0,Europe +2024-08-28,36986,6686,"[""Keyboard"", ""Phone"", ""Tablet""]",4624.79,{},132354,0,Asia +2024-12-21,36987,8197,"[""Phone""]",3538.36,{},76761,0,Europe +2024-05-16,36988,9554,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2640.18,"{""seasonal"": ""20%""}",147016,1,Africa +2023-12-28,36989,9062,"[""Tablet"", ""Headphones"", ""Phone""]",4891.47,"{""promo"": ""25%""}",120961,0,Europe +2023-11-16,36990,7567,"[""Headphones"", ""Phone"", ""Charger""]",1649.16,"{""seasonal"": ""16%""}",194251,1,Asia +2024-05-26,36991,6552,"[""Charger""]",558.63,{},267952,0,Africa +2024-05-28,36992,247,"[""Monitor"", ""Phone"", ""Tablet""]",1585.13,{},256953,0,Africa +2024-11-06,36993,4138,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4420.4,"{""loyalty"": ""11%""}",25317,1,Europe +2023-03-21,36994,5388,"[""Monitor"", ""Laptop"", ""Charger""]",4487.95,"{"""": ""30%""}",106123,0,South America +2024-02-10,36995,2490,"[""Headphones"", ""Keyboard""]",4162.15,"{"""": ""20%""}",140953,1,North America +2024-05-18,36996,5694,"[""Wireless Mouse""]",3679.02,{},225492,1,Europe +2024-03-02,36997,8646,"[""Charger""]",2506.99,"{""loyalty"": ""10%""}",142124,0,Asia +2023-07-05,36998,5301,"[""Laptop"", ""Monitor"", ""Headphones""]",4592.17,{},174866,0,Africa +2023-09-18,36999,9326,"[""Laptop""]",1726.87,{},107106,0,Africa +2023-04-13,37000,6567,"[""Monitor""]",4482.49,{},234195,1,North America +2023-06-06,37001,4602,"[""Tablet""]",4720.08,"{""seasonal"": ""17%""}",182290,1,South America +2023-03-09,37002,677,"[""Phone"", ""Laptop"", ""Headphones""]",2242.56,"{""loyalty"": ""26%""}",289238,1,South America +2024-09-01,37003,7300,"[""Keyboard"", ""Phone""]",1990.68,{},238786,0,Europe +2023-03-25,37004,7258,"[""Monitor""]",2321.72,"{""promo"": ""8%""}",63258,0,Asia +2023-02-23,37005,3266,"[""Monitor"", ""Phone"", ""Keyboard""]",1302.92,{},249878,0,Africa +2024-11-25,37006,3153,"[""Laptop""]",4254.97,{},161453,1,North America +2024-10-13,37007,4291,"[""Phone"", ""Laptop""]",876.3,{},77018,0,Europe +2024-03-19,37008,9651,"[""Laptop"", ""Charger""]",789.64,"{"""": ""26%""}",194823,1,Asia +2023-01-23,37009,4547,"[""Keyboard"", ""Laptop""]",3146.78,{},108312,0,South America +2023-07-29,37010,7491,"[""Phone"", ""Headphones"", ""Keyboard""]",4073.58,{},272222,0,Africa +2023-04-17,37011,1410,"[""Wireless Mouse""]",3828.49,{},7056,0,North America +2023-08-19,37012,9513,"[""Laptop""]",1775.94,{},171429,0,Africa +2023-11-24,37013,8913,"[""Phone"", ""Tablet"", ""Charger""]",217.58,{},164731,0,North America +2024-07-12,37014,9489,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",487.91,{},216921,1,Africa +2024-02-19,37015,2739,"[""Headphones""]",1257.65,"{"""": ""5%""}",299691,1,Asia +2023-01-19,37016,4437,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1610.32,{},17799,1,North America +2024-01-17,37017,9727,"[""Headphones""]",4702.93,{},191126,1,South America +2024-05-10,37018,7802,"[""Charger""]",3108.39,"{""seasonal"": ""20%""}",62710,1,Asia +2023-05-11,37019,8402,"[""Tablet"", ""Keyboard""]",403.38,"{""promo"": ""8%""}",52411,0,Europe +2024-04-20,37020,3329,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1124.81,"{""promo"": ""6%""}",95651,0,North America +2024-01-05,37021,7851,"[""Monitor"", ""Laptop""]",123.12,"{"""": ""28%""}",249260,1,Asia +2023-01-05,37022,1138,"[""Charger"", ""Monitor""]",3665.37,{},111166,0,Europe +2024-01-21,37023,6512,"[""Laptop"", ""Tablet""]",1874.85,{},69090,1,South America +2023-07-02,37024,8136,"[""Charger""]",1682.71,"{""seasonal"": ""8%""}",1490,1,Africa +2024-10-17,37025,2695,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1626.63,{},134882,0,South America +2024-03-04,37026,5273,"[""Tablet""]",1504.14,{},98654,1,Africa +2024-10-07,37027,7106,"[""Monitor"", ""Wireless Mouse""]",4192.56,"{"""": ""27%""}",92384,1,Europe +2024-09-19,37028,6947,"[""Tablet"", ""Phone""]",638.89,"{"""": ""22%""}",14243,0,South America +2023-02-16,37029,8119,"[""Monitor"", ""Keyboard""]",4826.82,{},139285,0,North America +2023-07-23,37030,8672,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",806.38,"{"""": ""26%""}",293124,1,North America +2024-12-08,37031,5850,"[""Tablet""]",3319.45,{},288177,1,Europe +2024-05-19,37032,9318,"[""Monitor"", ""Tablet"", ""Headphones""]",728.48,{},184545,1,Europe +2024-09-19,37033,317,"[""Laptop"", ""Charger""]",2471.3,{},160351,1,South America +2023-12-05,37034,3646,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4193.34,"{""loyalty"": ""6%""}",222770,1,Asia +2023-02-12,37035,8376,"[""Monitor""]",3377.12,"{""seasonal"": ""26%""}",122020,0,Asia +2024-08-23,37036,2079,"[""Monitor"", ""Headphones"", ""Laptop""]",155.88,{},298394,1,Asia +2024-03-22,37037,7183,"[""Charger""]",913.66,{},153010,1,South America +2024-04-30,37038,4091,"[""Monitor"", ""Laptop""]",1510.56,{},237029,1,North America +2023-03-13,37039,9018,"[""Keyboard"", ""Laptop"", ""Tablet""]",1287.68,"{""promo"": ""27%""}",163861,0,Africa +2024-02-08,37040,6472,"[""Charger"", ""Headphones""]",1158.75,"{""promo"": ""30%""}",155230,0,North America +2023-02-12,37041,9664,"[""Monitor""]",3204.06,"{""seasonal"": ""8%""}",35473,0,Asia +2023-11-03,37042,129,"[""Laptop"", ""Wireless Mouse""]",1712.83,{},200785,1,Europe +2024-01-27,37043,2085,"[""Wireless Mouse"", ""Tablet""]",3943.05,"{""seasonal"": ""17%""}",273348,0,Europe +2023-04-05,37044,4528,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1402.28,"{""promo"": ""10%""}",87885,1,North America +2024-09-02,37045,703,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4462.24,{},229865,0,North America +2023-02-28,37046,5040,"[""Keyboard"", ""Phone"", ""Monitor""]",1701.97,{},148986,1,South America +2024-02-27,37047,9873,"[""Headphones"", ""Keyboard""]",4707.87,"{""promo"": ""24%""}",25354,0,Europe +2023-11-18,37048,6496,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3354.02,{},5065,0,South America +2024-12-13,37049,1957,"[""Phone"", ""Charger"", ""Keyboard""]",4181.46,{},214411,1,North America +2024-12-27,37050,8384,"[""Phone"", ""Keyboard""]",1206.38,"{""loyalty"": ""15%""}",292140,1,Asia +2023-01-06,37051,3937,"[""Keyboard"", ""Laptop""]",1538.41,{},156812,0,North America +2023-07-02,37052,6481,"[""Charger"", ""Phone""]",4835.77,"{"""": ""28%""}",250575,1,South America +2023-11-04,37053,2008,"[""Tablet""]",4042.15,"{""loyalty"": ""6%""}",169371,0,Europe +2024-01-15,37054,6226,"[""Headphones"", ""Tablet"", ""Monitor""]",3605.68,{},153689,0,Europe +2024-01-24,37055,3682,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3500.03,{},208608,1,South America +2023-02-03,37056,5968,"[""Phone"", ""Keyboard""]",2221.76,"{""promo"": ""30%""}",184841,0,Africa +2023-06-01,37057,4764,"[""Monitor"", ""Charger"", ""Keyboard""]",1399.83,"{""promo"": ""28%""}",95835,0,South America +2023-07-19,37058,6860,"[""Wireless Mouse"", ""Tablet""]",1960.66,"{"""": ""13%""}",46133,0,North America +2024-08-12,37059,2934,"[""Headphones"", ""Laptop""]",3182.38,"{""seasonal"": ""21%""}",201682,0,Europe +2023-03-17,37060,6163,"[""Keyboard"", ""Phone""]",2184.51,{},13503,0,Europe +2024-03-08,37061,8484,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2722.05,"{""promo"": ""15%""}",113211,0,Asia +2024-02-09,37062,1242,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4408.99,{},102526,0,South America +2023-04-29,37063,5377,"[""Laptop""]",4517.75,"{"""": ""20%""}",284149,0,North America +2023-09-13,37064,5522,"[""Monitor""]",2606.89,"{"""": ""22%""}",13684,1,North America +2023-06-13,37065,1327,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1325.65,"{""seasonal"": ""25%""}",274619,1,Africa +2024-12-28,37066,4698,"[""Keyboard""]",4940.67,{},193369,1,Asia +2024-05-26,37067,1948,"[""Keyboard"", ""Laptop""]",3251.83,{},38141,0,North America +2024-05-05,37068,4263,"[""Phone"", ""Laptop""]",279.77,{},113896,0,Africa +2024-08-20,37069,9624,"[""Wireless Mouse""]",3577.85,{},279167,1,Asia +2024-12-24,37070,8993,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2626.09,{},111994,0,Asia +2023-12-24,37071,7226,"[""Wireless Mouse"", ""Phone""]",3829.85,{},165794,0,Europe +2023-04-17,37072,8569,"[""Wireless Mouse"", ""Monitor""]",1860.09,{},24387,1,South America +2023-03-21,37073,8011,"[""Laptop"", ""Tablet"", ""Keyboard""]",602.73,"{""promo"": ""13%""}",212521,0,Asia +2024-01-10,37074,7042,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3668.54,"{"""": ""17%""}",206447,1,North America +2023-08-18,37075,3024,"[""Headphones"", ""Keyboard""]",4296.72,{},211494,0,South America +2024-02-03,37076,8392,"[""Phone"", ""Monitor""]",4690.56,"{""loyalty"": ""13%""}",294446,1,Africa +2023-06-09,37077,5871,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3072.8,"{""loyalty"": ""20%""}",205358,0,South America +2023-05-26,37078,3899,"[""Charger"", ""Phone""]",3537.02,{},197513,0,South America +2024-05-13,37079,3003,"[""Charger""]",2456.09,"{"""": ""28%""}",76175,0,North America +2023-03-04,37080,1106,"[""Monitor""]",796.5,{},272532,0,North America +2024-11-18,37081,2442,"[""Tablet""]",723.07,{},61115,0,Europe +2024-07-08,37082,5454,"[""Keyboard""]",2196.93,{},250421,1,South America +2023-07-27,37083,4158,"[""Headphones"", ""Tablet"", ""Monitor""]",1024.83,{},85000,1,Europe +2023-10-17,37084,2155,"[""Phone""]",1345.59,"{""loyalty"": ""22%""}",185837,0,South America +2023-06-04,37085,5875,"[""Wireless Mouse"", ""Monitor""]",4354.62,{},65218,1,Africa +2024-10-09,37086,4367,"[""Tablet"", ""Monitor""]",3119.18,{},148341,0,North America +2023-06-14,37087,5125,"[""Laptop"", ""Wireless Mouse""]",3932.4,{},36016,1,Asia +2023-12-14,37088,5147,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3076.15,{},55287,0,Asia +2023-09-11,37089,9425,"[""Monitor""]",4271.59,{},237503,1,Africa +2024-05-22,37090,8100,"[""Monitor""]",1113.1,{},22897,0,South America +2023-08-30,37091,3960,"[""Headphones""]",2513.33,"{""promo"": ""25%""}",38785,0,North America +2023-01-06,37092,3068,"[""Laptop""]",4278.13,{},21253,1,South America +2024-05-19,37093,4952,"[""Charger""]",867.26,{},65604,0,Asia +2023-11-14,37094,5165,"[""Wireless Mouse""]",2304.87,{},31307,1,Africa +2024-05-02,37095,2601,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3130.54,"{""loyalty"": ""12%""}",102683,1,Africa +2023-11-19,37096,2765,"[""Laptop""]",636.19,{},226930,0,Europe +2023-01-06,37097,5841,"[""Wireless Mouse""]",434.88,{},216487,1,North America +2023-05-25,37098,8325,"[""Tablet""]",292.69,"{""seasonal"": ""5%""}",200649,0,Africa +2023-02-15,37099,3314,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4613.46,"{""seasonal"": ""10%""}",56589,1,South America +2023-11-01,37100,2720,"[""Headphones""]",1758.6,"{""loyalty"": ""21%""}",62042,1,Africa +2024-08-22,37101,3915,"[""Charger"", ""Keyboard"", ""Laptop""]",2138.54,"{"""": ""20%""}",141123,1,Europe +2024-12-30,37102,66,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3886.14,{},222741,1,Africa +2024-08-22,37103,1993,"[""Headphones"", ""Monitor"", ""Keyboard""]",661.04,"{""loyalty"": ""14%""}",226998,1,Europe +2024-05-17,37104,6732,"[""Tablet"", ""Laptop""]",4255.37,"{""loyalty"": ""15%""}",148687,1,South America +2023-04-04,37105,5714,"[""Monitor"", ""Tablet"", ""Charger""]",4215.33,"{"""": ""19%""}",70558,1,South America +2023-07-23,37106,6934,"[""Headphones""]",4716.85,{},276462,0,North America +2023-09-08,37107,3069,"[""Headphones"", ""Keyboard"", ""Phone""]",962.17,{},199044,0,Asia +2024-12-25,37108,1423,"[""Charger""]",2017.8,{},269412,0,Europe +2024-12-19,37109,1016,"[""Keyboard"", ""Charger"", ""Laptop""]",2341.06,{},55386,0,North America +2024-01-25,37110,3778,"[""Tablet""]",3592.71,{},128673,1,Asia +2023-09-09,37111,8609,"[""Tablet"", ""Monitor"", ""Keyboard""]",3836.37,"{""seasonal"": ""8%""}",111348,0,Europe +2023-10-18,37112,9346,"[""Keyboard"", ""Monitor""]",708.93,{},129842,0,South America +2023-09-26,37113,921,"[""Monitor"", ""Tablet""]",275.11,{},34568,0,Asia +2024-01-10,37114,7215,"[""Phone""]",2276.61,"{""promo"": ""22%""}",150616,0,North America +2023-04-09,37115,4256,"[""Phone"", ""Keyboard"", ""Monitor""]",2378.35,"{""promo"": ""12%""}",231787,0,Africa +2023-11-14,37116,1509,"[""Laptop""]",3603.13,{},274725,0,North America +2023-02-06,37117,416,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4880.55,{},155726,0,Africa +2023-06-05,37118,1778,"[""Charger"", ""Keyboard""]",348.42,"{""promo"": ""27%""}",76543,0,North America +2024-11-24,37119,1414,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3782.42,{},121023,1,Europe +2024-03-04,37120,1200,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3302.02,"{""loyalty"": ""19%""}",99341,1,Asia +2023-09-22,37121,338,"[""Laptop"", ""Keyboard""]",2969.04,"{"""": ""8%""}",108595,0,Africa +2023-10-21,37122,5153,"[""Monitor""]",3833.09,"{"""": ""10%""}",100570,0,Asia +2023-09-29,37123,9504,"[""Headphones""]",429.35,{},283990,0,Africa +2024-11-05,37124,856,"[""Charger""]",499.2,"{""seasonal"": ""15%""}",247281,1,South America +2024-10-20,37125,4322,"[""Headphones""]",4543.92,"{""seasonal"": ""21%""}",237610,1,Africa +2023-10-01,37126,5229,"[""Charger"", ""Tablet"", ""Headphones""]",2168.05,{},209137,0,Europe +2023-01-21,37127,1153,"[""Keyboard"", ""Monitor""]",3322.74,"{""loyalty"": ""9%""}",194916,1,North America +2023-08-20,37128,23,"[""Wireless Mouse""]",4114.51,"{"""": ""14%""}",18351,1,Asia +2023-12-23,37129,9963,"[""Headphones"", ""Keyboard""]",1640.82,"{"""": ""20%""}",267716,1,Asia +2023-10-19,37130,5942,"[""Keyboard"", ""Wireless Mouse""]",3404.98,"{""promo"": ""27%""}",56985,1,South America +2024-07-22,37131,7949,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4582.45,{},40825,1,Europe +2023-10-12,37132,3144,"[""Wireless Mouse""]",1752.45,{},270564,1,Africa +2024-03-24,37133,7771,"[""Wireless Mouse"", ""Laptop""]",1976.69,"{""loyalty"": ""18%""}",279364,0,Asia +2023-03-11,37134,9296,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",889.13,{},39934,0,Africa +2024-08-25,37135,1816,"[""Laptop"", ""Charger"", ""Tablet""]",2348.15,"{""seasonal"": ""15%""}",19921,1,North America +2023-03-20,37136,1557,"[""Tablet""]",3185.59,"{""loyalty"": ""26%""}",111434,0,South America +2024-06-10,37137,5268,"[""Charger"", ""Keyboard"", ""Monitor""]",854.02,"{""loyalty"": ""14%""}",133090,1,Europe +2023-03-25,37138,3121,"[""Phone"", ""Charger"", ""Tablet""]",3874.26,"{""loyalty"": ""6%""}",64823,0,Asia +2024-11-01,37139,9443,"[""Headphones"", ""Charger"", ""Laptop""]",1631.63,{},231870,1,Asia +2024-11-23,37140,1251,"[""Headphones"", ""Charger""]",3224.95,{},244109,0,Africa +2023-03-14,37141,7490,"[""Keyboard"", ""Tablet"", ""Monitor""]",3298.07,{},15893,1,Europe +2024-11-06,37142,3590,"[""Wireless Mouse"", ""Keyboard""]",4076.88,{},87106,1,North America +2024-07-10,37143,3429,"[""Wireless Mouse""]",1905.83,{},142644,1,Africa +2023-07-29,37144,137,"[""Monitor"", ""Tablet""]",4855.54,{},96456,1,North America +2023-10-18,37145,9444,"[""Tablet"", ""Laptop"", ""Phone""]",2851.76,"{""loyalty"": ""27%""}",223915,0,Asia +2024-05-15,37146,2523,"[""Tablet"", ""Laptop"", ""Monitor""]",1227.37,"{""promo"": ""15%""}",92377,1,Africa +2023-08-12,37147,5617,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",811.2,"{""seasonal"": ""10%""}",68833,0,Asia +2024-11-16,37148,173,"[""Laptop"", ""Monitor""]",1296.11,{},245004,0,Africa +2023-10-16,37149,8427,"[""Keyboard"", ""Phone"", ""Charger""]",2963.58,"{""promo"": ""30%""}",218787,1,North America +2023-01-31,37150,5858,"[""Wireless Mouse""]",4828.65,"{"""": ""9%""}",114914,1,North America +2023-02-24,37151,5448,"[""Charger"", ""Keyboard"", ""Phone""]",2796.27,{},61506,1,Asia +2023-03-28,37152,8614,"[""Phone"", ""Wireless Mouse""]",2575.55,{},182196,0,South America +2024-03-07,37153,3325,"[""Tablet""]",3500.9,{},297732,1,Africa +2023-10-22,37154,5064,"[""Monitor"", ""Headphones""]",2174.43,{},54734,0,North America +2023-02-26,37155,6171,"[""Headphones""]",116.29,{},100346,1,Asia +2024-10-03,37156,6433,"[""Monitor"", ""Tablet""]",2634.35,{},103972,1,Europe +2024-12-21,37157,9245,"[""Headphones"", ""Laptop"", ""Keyboard""]",4085.33,{},180453,1,Europe +2024-05-22,37158,4717,"[""Monitor""]",2725.58,{},35541,0,Europe +2024-01-13,37159,9021,"[""Keyboard"", ""Monitor""]",2332.66,{},151915,0,Europe +2024-10-07,37160,137,"[""Phone"", ""Charger""]",2086.42,"{"""": ""16%""}",259523,0,North America +2023-08-28,37161,6130,"[""Charger""]",4232.26,{},224275,0,North America +2024-09-10,37162,2919,"[""Phone"", ""Laptop"", ""Headphones""]",412.24,{},284017,0,North America +2024-06-12,37163,4861,"[""Monitor"", ""Headphones""]",4562.56,{},134063,0,Europe +2024-10-14,37164,4545,"[""Charger"", ""Wireless Mouse""]",4528.51,{},122652,1,Asia +2024-08-12,37165,3511,"[""Monitor"", ""Headphones""]",2875.66,"{""seasonal"": ""17%""}",214264,1,South America +2024-01-27,37166,6684,"[""Keyboard"", ""Wireless Mouse""]",4922.79,{},272494,1,Europe +2023-07-02,37167,131,"[""Monitor"", ""Tablet""]",151.78,"{""seasonal"": ""11%""}",68395,1,Asia +2023-07-14,37168,1477,"[""Phone"", ""Headphones""]",3179.61,"{""seasonal"": ""23%""}",75188,0,North America +2024-07-10,37169,1816,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2093.72,"{""seasonal"": ""14%""}",151215,1,Africa +2023-10-20,37170,639,"[""Monitor"", ""Keyboard"", ""Charger""]",894.5,{},240014,0,Africa +2024-10-10,37171,366,"[""Wireless Mouse""]",2988.43,{},247849,0,Europe +2023-10-18,37172,395,"[""Keyboard"", ""Phone""]",1177.28,"{""loyalty"": ""18%""}",264341,0,North America +2024-03-31,37173,2201,"[""Headphones""]",94.05,"{""promo"": ""20%""}",181860,0,Asia +2023-04-11,37174,2598,"[""Headphones""]",1400.4,{},44412,0,South America +2024-04-08,37175,2632,"[""Charger"", ""Tablet""]",921.06,"{""loyalty"": ""23%""}",180344,0,Africa +2024-12-22,37176,4583,"[""Tablet"", ""Keyboard"", ""Phone""]",4520.43,{},143983,1,Africa +2024-11-18,37177,1869,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2155.7,"{""promo"": ""8%""}",240515,1,Africa +2024-04-03,37178,21,"[""Phone""]",3411.87,{},224991,1,Africa +2023-07-20,37179,5893,"[""Laptop"", ""Phone""]",4051.76,{},83565,0,South America +2024-04-02,37180,6692,"[""Monitor"", ""Headphones""]",2749.03,{},49915,1,North America +2024-12-15,37181,2174,"[""Monitor"", ""Charger""]",4013.8,{},91986,1,Asia +2023-07-28,37182,7968,"[""Tablet"", ""Monitor"", ""Headphones""]",3101.9,"{""loyalty"": ""25%""}",105010,0,North America +2024-04-22,37183,8219,"[""Laptop"", ""Keyboard"", ""Headphones""]",1254.24,"{"""": ""11%""}",143519,0,Europe +2024-11-13,37184,5131,"[""Charger"", ""Wireless Mouse""]",4795.92,"{""loyalty"": ""13%""}",85284,1,Europe +2024-02-10,37185,2347,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4775.67,{},247380,0,Europe +2023-02-06,37186,1959,"[""Monitor"", ""Keyboard""]",4654.32,{},194004,0,North America +2024-01-31,37187,2035,"[""Monitor"", ""Keyboard""]",1005.29,"{"""": ""18%""}",102082,1,North America +2023-02-07,37188,5161,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1842.41,"{""promo"": ""12%""}",201962,0,Europe +2023-12-15,37189,4496,"[""Laptop""]",2589.15,"{""promo"": ""29%""}",206653,1,North America +2023-02-28,37190,9727,"[""Monitor""]",219.72,"{""loyalty"": ""17%""}",113216,0,Asia +2023-10-05,37191,6943,"[""Laptop"", ""Monitor"", ""Keyboard""]",3146.06,{},152488,1,Asia +2024-05-13,37192,9551,"[""Monitor"", ""Charger"", ""Tablet""]",898.07,"{""promo"": ""7%""}",63266,0,Europe +2024-12-07,37193,9142,"[""Tablet"", ""Charger""]",3052.72,"{""seasonal"": ""20%""}",168365,1,South America +2024-03-22,37194,5389,"[""Monitor"", ""Wireless Mouse""]",4467.92,"{""loyalty"": ""7%""}",251654,0,Europe +2023-06-18,37195,1198,"[""Phone""]",3844.89,{},278072,0,Africa +2023-06-02,37196,3563,"[""Headphones"", ""Monitor"", ""Keyboard""]",3384.08,{},237740,1,South America +2024-10-10,37197,8301,"[""Keyboard""]",904.75,"{""loyalty"": ""16%""}",73145,1,North America +2024-04-09,37198,8024,"[""Headphones"", ""Keyboard""]",3736.75,"{""promo"": ""15%""}",210443,1,North America +2024-03-17,37199,5807,"[""Headphones"", ""Monitor"", ""Keyboard""]",1301.03,"{""promo"": ""22%""}",11781,1,Africa +2023-08-25,37200,207,"[""Monitor""]",545.57,"{"""": ""13%""}",103118,1,Asia +2023-08-08,37201,5862,"[""Wireless Mouse""]",544.05,"{""promo"": ""6%""}",243431,1,North America +2024-06-15,37202,5835,"[""Wireless Mouse"", ""Phone""]",343.1,{},240890,1,South America +2023-12-15,37203,8967,"[""Keyboard"", ""Tablet"", ""Monitor""]",165.93,{},8229,1,Europe +2024-10-01,37204,4755,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4429.84,"{""loyalty"": ""12%""}",58452,1,South America +2024-03-16,37205,1640,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2209.92,{},40371,0,Asia +2024-05-08,37206,9461,"[""Wireless Mouse"", ""Laptop""]",2439.87,{},123460,1,Europe +2024-12-28,37207,567,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4864.55,"{""promo"": ""8%""}",288666,0,South America +2024-02-11,37208,1966,"[""Laptop"", ""Phone""]",3083.21,{},245607,0,Africa +2024-05-23,37209,5550,"[""Wireless Mouse"", ""Phone""]",869.32,{},55335,0,Europe +2024-08-05,37210,5527,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2815.23,"{""promo"": ""20%""}",101557,0,Africa +2024-03-07,37211,8332,"[""Tablet""]",577.49,"{""promo"": ""14%""}",283070,1,Europe +2024-07-11,37212,6956,"[""Laptop"", ""Charger""]",3250.63,"{"""": ""8%""}",194675,1,Africa +2024-01-25,37213,9904,"[""Keyboard""]",4093.8,{},226141,1,South America +2023-02-26,37214,9932,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3416.8,"{""promo"": ""30%""}",271126,0,Africa +2023-05-23,37215,2449,"[""Tablet"", ""Wireless Mouse""]",87.07,{},89272,1,North America +2024-08-09,37216,4118,"[""Wireless Mouse"", ""Charger""]",3012.51,{},257251,1,North America +2024-05-28,37217,7615,"[""Wireless Mouse""]",681.56,"{""seasonal"": ""27%""}",281462,0,Europe +2023-11-29,37218,1433,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2933.64,{},14451,1,North America +2024-10-04,37219,5279,"[""Tablet"", ""Laptop""]",2808.05,{},251048,1,Europe +2024-11-13,37220,7745,"[""Charger""]",637.24,{},117417,0,Europe +2023-05-10,37221,719,"[""Tablet"", ""Monitor"", ""Laptop""]",3151.43,"{""seasonal"": ""16%""}",153466,1,North America +2024-12-30,37222,2377,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1229.64,{},192641,1,South America +2023-05-28,37223,130,"[""Phone"", ""Wireless Mouse""]",2809.48,{},242432,1,Europe +2024-12-08,37224,7416,"[""Monitor"", ""Phone""]",820.77,{},210843,1,North America +2023-08-21,37225,9009,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3494.37,{},235211,1,Africa +2023-02-18,37226,1994,"[""Phone""]",293.84,{},143534,0,Asia +2024-04-16,37227,9940,"[""Monitor"", ""Phone""]",4216.07,"{""loyalty"": ""26%""}",99023,1,Europe +2024-12-30,37228,7241,"[""Tablet"", ""Charger""]",3656.71,"{""loyalty"": ""14%""}",238207,0,Asia +2023-01-12,37229,3936,"[""Monitor"", ""Laptop""]",4402.72,{},21764,0,Europe +2024-04-06,37230,4845,"[""Charger"", ""Headphones"", ""Monitor""]",1446.67,{},121884,1,North America +2024-12-21,37231,8822,"[""Phone"", ""Wireless Mouse""]",4055.32,"{"""": ""10%""}",211819,0,Africa +2024-12-21,37232,9265,"[""Wireless Mouse""]",4931.66,{},273271,0,Europe +2023-02-12,37233,4719,"[""Tablet"", ""Charger"", ""Keyboard""]",3033.59,{},235958,1,Europe +2023-05-16,37234,2490,"[""Wireless Mouse"", ""Tablet""]",3084.69,"{""promo"": ""26%""}",230485,0,North America +2024-06-17,37235,4029,"[""Headphones"", ""Tablet"", ""Laptop""]",3128.17,"{""loyalty"": ""26%""}",44613,1,North America +2023-02-09,37236,6905,"[""Phone"", ""Headphones"", ""Tablet""]",3952.45,{},297703,1,North America +2024-03-28,37237,6731,"[""Keyboard""]",4581.63,{},216690,0,Europe +2024-09-06,37238,6078,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3920.32,{},148703,1,North America +2023-08-09,37239,8246,"[""Headphones"", ""Charger""]",4469.07,"{""seasonal"": ""23%""}",171436,1,Europe +2023-11-15,37240,2083,"[""Laptop"", ""Headphones""]",1393.0,"{""seasonal"": ""12%""}",111010,1,South America +2023-01-29,37241,8345,"[""Headphones""]",1667.61,"{""promo"": ""13%""}",260680,1,Europe +2024-11-05,37242,489,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2796.95,"{""seasonal"": ""22%""}",234861,1,Asia +2023-10-02,37243,5480,"[""Phone"", ""Keyboard"", ""Tablet""]",1009.08,{},72009,1,Europe +2024-09-02,37244,2209,"[""Monitor""]",2100.83,"{""loyalty"": ""14%""}",24509,0,South America +2023-05-22,37245,2710,"[""Headphones"", ""Tablet"", ""Phone""]",4031.91,{},266664,0,Asia +2023-10-31,37246,4107,"[""Charger"", ""Laptop""]",2091.74,{},198834,1,Africa +2024-04-12,37247,9302,"[""Wireless Mouse""]",2909.67,{},47854,1,Europe +2024-05-23,37248,8710,"[""Laptop"", ""Phone""]",4579.39,"{"""": ""21%""}",297055,1,Asia +2024-12-05,37249,75,"[""Laptop"", ""Tablet"", ""Charger""]",4121.51,{},93213,1,South America +2023-07-24,37250,2336,"[""Phone"", ""Tablet""]",1204.34,"{"""": ""20%""}",100999,1,North America +2024-11-22,37251,9922,"[""Monitor"", ""Charger"", ""Laptop""]",2120.13,"{""promo"": ""11%""}",50782,0,Europe +2024-09-12,37252,2315,"[""Keyboard"", ""Charger""]",1259.72,"{""promo"": ""17%""}",9171,1,Asia +2023-04-01,37253,5470,"[""Charger""]",3515.52,{},144164,0,South America +2023-05-02,37254,7432,"[""Keyboard"", ""Charger""]",1483.1,{},189953,0,North America +2023-12-31,37255,3809,"[""Laptop""]",4251.35,{},103687,1,North America +2023-11-16,37256,7954,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1361.84,{},172000,0,Africa +2023-05-19,37257,7778,"[""Wireless Mouse"", ""Phone""]",152.73,"{"""": ""21%""}",237296,1,Africa +2024-11-19,37258,7491,"[""Monitor""]",2988.07,{},128053,1,North America +2024-12-10,37259,2357,"[""Keyboard"", ""Headphones"", ""Monitor""]",3098.03,{},28977,0,South America +2023-12-21,37260,9608,"[""Monitor"", ""Phone"", ""Keyboard""]",2287.38,{},35015,0,North America +2023-03-15,37261,2616,"[""Keyboard""]",3808.35,"{""loyalty"": ""14%""}",86288,1,Asia +2023-10-03,37262,2119,"[""Keyboard"", ""Laptop"", ""Tablet""]",4166.49,{},71395,0,North America +2023-09-16,37263,9530,"[""Phone"", ""Charger""]",3738.57,{},299278,1,Europe +2023-04-08,37264,6487,"[""Headphones""]",4112.57,"{""promo"": ""21%""}",103692,1,North America +2023-04-21,37265,7560,"[""Phone""]",1979.87,"{""promo"": ""21%""}",85256,1,Africa +2023-09-08,37266,9836,"[""Wireless Mouse"", ""Monitor""]",3321.17,{},37937,1,Asia +2024-01-27,37267,568,"[""Charger"", ""Phone""]",4589.64,"{""seasonal"": ""17%""}",149485,0,Asia +2023-02-25,37268,8845,"[""Tablet""]",1762.79,{},162678,0,South America +2024-02-19,37269,7466,"[""Laptop""]",730.31,{},39798,1,North America +2023-10-27,37270,4702,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1592.43,"{""loyalty"": ""26%""}",130527,0,Africa +2024-08-05,37271,9677,"[""Laptop"", ""Tablet""]",114.86,"{"""": ""23%""}",21912,1,Africa +2023-11-27,37272,2622,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4426.63,"{"""": ""13%""}",87493,0,South America +2023-12-27,37273,7745,"[""Monitor""]",3039.58,{},9136,1,Africa +2023-06-02,37274,9194,"[""Monitor"", ""Charger""]",2733.99,"{""loyalty"": ""9%""}",194143,1,South America +2023-10-09,37275,9392,"[""Keyboard"", ""Charger""]",3883.6,{},96044,0,North America +2023-05-27,37276,9178,"[""Wireless Mouse"", ""Charger""]",1769.37,"{"""": ""5%""}",190271,0,North America +2023-10-18,37277,586,"[""Headphones""]",1830.32,{},241910,1,South America +2024-01-24,37278,1638,"[""Headphones""]",4589.31,{},50734,1,North America +2023-06-12,37279,5096,"[""Phone"", ""Keyboard""]",3555.1,"{""loyalty"": ""19%""}",62958,0,North America +2024-08-10,37280,3600,"[""Phone"", ""Monitor""]",1776.9,"{""promo"": ""16%""}",171918,0,Asia +2024-07-07,37281,5340,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2040.36,"{""promo"": ""26%""}",35874,0,Asia +2024-03-14,37282,9749,"[""Wireless Mouse""]",1845.75,"{""seasonal"": ""20%""}",150014,0,Europe +2023-05-27,37283,6134,"[""Charger"", ""Keyboard""]",1908.67,"{""seasonal"": ""5%""}",234336,1,Africa +2023-11-06,37284,153,"[""Charger""]",417.88,"{""promo"": ""25%""}",265036,0,South America +2024-07-28,37285,9650,"[""Wireless Mouse"", ""Headphones""]",1117.19,{},263954,1,South America +2023-06-18,37286,2753,"[""Laptop"", ""Keyboard"", ""Tablet""]",2468.34,{},254999,0,Africa +2024-02-17,37287,4367,"[""Headphones""]",2591.67,"{"""": ""30%""}",200547,1,Asia +2024-09-04,37288,1459,"[""Tablet"", ""Wireless Mouse""]",1863.7,{},110773,1,South America +2024-04-12,37289,9510,"[""Monitor""]",4117.53,"{""seasonal"": ""9%""}",186189,0,South America +2024-03-29,37290,613,"[""Charger"", ""Laptop""]",4205.62,{},219258,1,South America +2024-05-05,37291,2209,"[""Charger"", ""Headphones"", ""Phone""]",3715.44,"{""loyalty"": ""26%""}",129885,1,North America +2023-09-17,37292,6713,"[""Laptop""]",557.17,{},285141,1,South America +2023-03-30,37293,1663,"[""Tablet"", ""Keyboard""]",2402.13,{},42266,1,Europe +2024-09-04,37294,1191,"[""Monitor""]",4697.31,"{""seasonal"": ""24%""}",196224,0,Asia +2024-10-22,37295,3147,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3779.88,{},265754,0,Africa +2024-11-24,37296,5385,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3298.3,{},180510,1,North America +2024-05-15,37297,1913,"[""Wireless Mouse""]",857.74,"{"""": ""22%""}",294076,0,North America +2023-06-04,37298,1561,"[""Tablet"", ""Laptop""]",2491.99,{},178991,1,Asia +2024-06-17,37299,4220,"[""Tablet"", ""Monitor"", ""Charger""]",4114.13,{},60210,1,Africa +2024-08-02,37300,5892,"[""Keyboard"", ""Monitor"", ""Tablet""]",2201.09,"{""loyalty"": ""28%""}",201520,1,Asia +2024-01-22,37301,9699,"[""Laptop"", ""Monitor""]",2419.05,{},104068,1,South America +2023-04-14,37302,8655,"[""Phone"", ""Tablet""]",1567.82,{},189587,0,Europe +2023-07-25,37303,4798,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3612.91,{},189033,1,North America +2023-04-23,37304,9195,"[""Tablet"", ""Headphones""]",3649.14,{},251995,1,North America +2024-06-14,37305,4569,"[""Tablet"", ""Monitor""]",3234.85,{},163333,1,South America +2023-02-09,37306,7778,"[""Keyboard"", ""Phone""]",4700.48,"{""seasonal"": ""8%""}",221097,1,Africa +2023-03-20,37307,7006,"[""Laptop"", ""Keyboard""]",190.42,{},188982,0,Africa +2023-07-21,37308,697,"[""Tablet""]",1755.86,{},245153,0,North America +2024-12-03,37309,2859,"[""Keyboard""]",2108.11,{},167034,1,South America +2023-02-19,37310,6047,"[""Phone""]",4238.93,{},213767,1,South America +2023-06-11,37311,3240,"[""Headphones""]",3327.27,{},126159,1,South America +2024-01-27,37312,1406,"[""Laptop"", ""Phone""]",355.85,{},234556,1,South America +2024-08-11,37313,7362,"[""Keyboard""]",609.66,"{""seasonal"": ""5%""}",14452,0,Asia +2024-08-09,37314,8441,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3445.12,"{""seasonal"": ""20%""}",28267,0,Asia +2023-11-28,37315,280,"[""Charger"", ""Headphones"", ""Keyboard""]",4373.95,"{""seasonal"": ""14%""}",250222,0,Africa +2023-08-25,37316,1817,"[""Charger"", ""Keyboard"", ""Tablet""]",661.65,"{""promo"": ""21%""}",92202,0,North America +2024-05-14,37317,3544,"[""Laptop"", ""Monitor"", ""Headphones""]",3430.13,{},107025,1,Africa +2024-09-26,37318,2357,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2260.87,"{""promo"": ""22%""}",271912,0,Africa +2023-05-06,37319,4096,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1323.54,{},126005,1,Europe +2024-12-29,37320,5412,"[""Monitor"", ""Wireless Mouse""]",4241.36,"{"""": ""9%""}",16413,0,Asia +2024-07-12,37321,9725,"[""Keyboard"", ""Wireless Mouse""]",590.56,{},293156,0,South America +2024-02-08,37322,8368,"[""Laptop"", ""Wireless Mouse""]",2246.49,"{"""": ""26%""}",58472,1,South America +2023-04-18,37323,5973,"[""Headphones"", ""Charger""]",1637.51,"{"""": ""30%""}",229328,0,North America +2024-05-28,37324,8173,"[""Tablet"", ""Keyboard"", ""Laptop""]",460.84,"{""loyalty"": ""18%""}",114886,1,Asia +2024-09-28,37325,6945,"[""Keyboard"", ""Laptop"", ""Tablet""]",1290.42,{},76548,1,Asia +2024-05-30,37326,3752,"[""Charger""]",1349.92,"{""loyalty"": ""27%""}",40900,1,Africa +2023-02-13,37327,5259,"[""Wireless Mouse""]",2950.99,{},257236,1,Asia +2024-01-01,37328,5838,"[""Wireless Mouse""]",772.97,"{""loyalty"": ""29%""}",92461,1,North America +2024-01-23,37329,4265,"[""Tablet"", ""Monitor"", ""Charger""]",1497.81,"{"""": ""11%""}",118924,1,Asia +2024-02-02,37330,8897,"[""Wireless Mouse""]",3117.43,"{""promo"": ""5%""}",173055,0,South America +2023-05-15,37331,9763,"[""Laptop"", ""Keyboard"", ""Tablet""]",3504.29,"{"""": ""27%""}",60833,0,Europe +2024-06-30,37332,2634,"[""Wireless Mouse"", ""Headphones""]",236.16,"{""loyalty"": ""9%""}",246200,1,Asia +2024-03-20,37333,4774,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3247.56,{},122743,0,South America +2023-05-02,37334,9298,"[""Monitor"", ""Keyboard""]",1120.41,{},39540,0,Africa +2024-03-23,37335,4311,"[""Headphones"", ""Tablet""]",2089.78,"{""seasonal"": ""21%""}",134456,1,Europe +2024-03-08,37336,3970,"[""Monitor""]",4281.44,{},56186,0,Europe +2024-12-12,37337,2029,"[""Headphones"", ""Tablet"", ""Charger""]",4066.68,{},17704,0,North America +2023-09-08,37338,863,"[""Laptop"", ""Charger"", ""Headphones""]",4852.6,"{""promo"": ""11%""}",185691,1,North America +2023-03-11,37339,4430,"[""Phone"", ""Wireless Mouse""]",1837.55,"{""seasonal"": ""29%""}",108454,0,Europe +2023-01-14,37340,7731,"[""Wireless Mouse"", ""Monitor""]",2839.47,{},6807,0,Europe +2024-06-03,37341,9672,"[""Monitor"", ""Laptop""]",3644.68,"{""loyalty"": ""16%""}",220974,0,North America +2024-01-07,37342,4265,"[""Charger"", ""Laptop"", ""Keyboard""]",472.38,{},205610,1,North America +2024-09-17,37343,3371,"[""Tablet"", ""Monitor""]",4561.05,"{""seasonal"": ""24%""}",109431,0,Africa +2024-01-24,37344,7487,"[""Charger""]",3333.91,"{""promo"": ""27%""}",241276,1,Europe +2023-07-12,37345,4688,"[""Laptop""]",648.0,"{""loyalty"": ""27%""}",125229,0,Africa +2024-05-04,37346,3019,"[""Charger""]",4520.57,{},30240,1,North America +2024-05-16,37347,9064,"[""Tablet"", ""Charger""]",4682.32,{},227980,1,Europe +2023-12-24,37348,5471,"[""Charger"", ""Monitor""]",3815.1,"{""promo"": ""10%""}",106819,1,Africa +2023-09-11,37349,8861,"[""Headphones"", ""Monitor"", ""Laptop""]",2083.82,"{""loyalty"": ""13%""}",140884,0,Africa +2024-11-09,37350,2785,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",338.03,"{"""": ""16%""}",113480,1,Asia +2024-01-15,37351,836,"[""Tablet""]",3043.96,"{""seasonal"": ""22%""}",273191,1,Asia +2024-01-02,37352,6472,"[""Wireless Mouse"", ""Headphones""]",3915.69,"{""promo"": ""8%""}",250525,1,South America +2024-11-09,37353,4958,"[""Headphones"", ""Charger"", ""Laptop""]",3884.31,"{""seasonal"": ""8%""}",68111,0,Africa +2024-03-19,37354,8843,"[""Charger"", ""Headphones"", ""Monitor""]",4563.15,{},208961,0,South America +2023-03-31,37355,2691,"[""Laptop"", ""Phone""]",2366.92,{},186240,0,South America +2024-02-21,37356,5409,"[""Charger""]",3364.16,"{"""": ""12%""}",243732,1,North America +2024-02-08,37357,3429,"[""Tablet""]",1246.23,{},224693,0,Africa +2023-09-09,37358,2739,"[""Headphones"", ""Tablet"", ""Phone""]",226.52,{},41242,1,South America +2023-05-14,37359,2667,"[""Monitor""]",838.5,"{""seasonal"": ""22%""}",228647,0,North America +2023-12-06,37360,8079,"[""Headphones"", ""Charger"", ""Laptop""]",728.17,{},236396,0,Asia +2023-05-29,37361,4616,"[""Laptop""]",1154.51,{},59136,0,North America +2024-10-31,37362,8509,"[""Monitor"", ""Charger""]",2865.2,{},13120,1,Africa +2023-06-13,37363,3811,"[""Laptop"", ""Charger"", ""Headphones""]",1110.17,{},209305,0,Africa +2023-12-07,37364,9063,"[""Phone""]",1858.58,{},82034,0,Europe +2023-04-25,37365,9299,"[""Headphones""]",2040.57,{},217992,1,North America +2024-09-30,37366,7872,"[""Tablet""]",2047.13,"{""loyalty"": ""26%""}",212133,1,Africa +2024-12-20,37367,2858,"[""Laptop"", ""Tablet""]",2803.49,{},4203,0,Africa +2024-03-01,37368,950,"[""Monitor"", ""Headphones"", ""Tablet""]",3777.45,{},20133,1,North America +2024-10-01,37369,4810,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3174.72,"{""loyalty"": ""28%""}",150211,0,Africa +2023-12-26,37370,3290,"[""Headphones"", ""Phone"", ""Keyboard""]",3255.46,"{"""": ""25%""}",77047,0,Europe +2024-04-10,37371,444,"[""Headphones"", ""Charger"", ""Phone""]",4486.12,{},192211,1,South America +2024-07-29,37372,8184,"[""Charger"", ""Wireless Mouse""]",2572.56,{},212610,0,Africa +2023-12-18,37373,1162,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",587.82,"{""loyalty"": ""8%""}",136776,1,South America +2023-03-06,37374,7415,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3748.1,"{""seasonal"": ""15%""}",203861,0,Europe +2023-04-19,37375,3448,"[""Monitor"", ""Charger""]",4472.88,{},95190,0,Europe +2023-01-04,37376,9716,"[""Monitor""]",3814.7,{},8644,1,Asia +2024-07-28,37377,8452,"[""Headphones"", ""Phone""]",2287.19,"{""seasonal"": ""28%""}",130405,0,Asia +2023-08-01,37378,1615,"[""Keyboard"", ""Laptop"", ""Phone""]",1021.54,{},64450,1,Europe +2023-06-15,37379,1427,"[""Headphones""]",4518.65,"{"""": ""17%""}",184993,0,Asia +2023-11-03,37380,4691,"[""Monitor"", ""Tablet"", ""Charger""]",2125.65,{},113387,1,South America +2023-06-30,37381,9538,"[""Headphones"", ""Phone""]",2682.55,"{""promo"": ""9%""}",249269,0,South America +2023-01-29,37382,9133,"[""Headphones"", ""Phone""]",293.18,{},149031,0,Europe +2024-05-07,37383,9661,"[""Tablet""]",1050.84,"{""promo"": ""25%""}",147089,0,South America +2023-03-21,37384,1641,"[""Wireless Mouse""]",421.68,"{""promo"": ""13%""}",65286,0,North America +2023-01-13,37385,3714,"[""Monitor"", ""Wireless Mouse""]",2627.45,{},184925,0,South America +2024-05-18,37386,4503,"[""Headphones""]",3233.06,{},158800,0,Europe +2023-10-11,37387,2028,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4015.96,{},163714,0,Africa +2024-10-22,37388,3400,"[""Laptop""]",4047.49,"{""seasonal"": ""7%""}",219604,1,Africa +2023-09-19,37389,6550,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2177.0,"{""promo"": ""8%""}",135359,1,South America +2023-07-21,37390,4170,"[""Laptop"", ""Tablet""]",690.51,"{""seasonal"": ""16%""}",119529,0,South America +2024-11-17,37391,1171,"[""Keyboard""]",660.98,"{""seasonal"": ""12%""}",261272,1,Africa +2023-11-21,37392,4016,"[""Keyboard""]",4374.7,{},275144,0,South America +2023-07-04,37393,8208,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4864.1,"{""promo"": ""22%""}",277290,0,North America +2023-02-09,37394,6309,"[""Keyboard""]",1958.35,"{""loyalty"": ""24%""}",189336,0,North America +2023-01-31,37395,4561,"[""Headphones"", ""Wireless Mouse""]",1389.84,{},80368,0,Africa +2024-10-15,37396,6018,"[""Headphones""]",392.06,{},55820,0,Asia +2023-04-10,37397,1135,"[""Phone"", ""Charger""]",1662.59,"{"""": ""19%""}",186263,1,Europe +2023-02-17,37398,9145,"[""Keyboard"", ""Tablet""]",2041.8,"{""seasonal"": ""6%""}",87479,1,Asia +2023-11-02,37399,4125,"[""Laptop"", ""Monitor""]",986.61,"{""promo"": ""20%""}",49702,1,South America +2024-11-19,37400,982,"[""Headphones"", ""Wireless Mouse""]",290.7,"{""seasonal"": ""15%""}",5925,0,Asia +2024-03-12,37401,5168,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3822.14,"{""seasonal"": ""17%""}",70464,0,Europe +2024-08-04,37402,7837,"[""Phone"", ""Laptop""]",253.53,{},61953,1,Europe +2023-08-10,37403,8432,"[""Laptop"", ""Charger""]",2055.6,{},58117,1,Africa +2023-01-04,37404,6685,"[""Laptop"", ""Monitor""]",1882.16,{},82692,1,Europe +2024-10-28,37405,743,"[""Monitor"", ""Tablet""]",2107.96,"{""loyalty"": ""27%""}",100156,1,North America +2023-07-18,37406,9164,"[""Laptop""]",477.98,{},16815,0,Asia +2023-08-04,37407,2927,"[""Keyboard""]",728.02,{},198163,0,Europe +2023-03-08,37408,5420,"[""Keyboard""]",2574.86,"{"""": ""15%""}",31945,1,Asia +2023-11-26,37409,3358,"[""Headphones"", ""Phone"", ""Monitor""]",3629.27,"{"""": ""6%""}",170626,0,South America +2024-05-03,37410,729,"[""Phone""]",1512.04,{},109974,0,Africa +2024-11-15,37411,3235,"[""Tablet"", ""Charger""]",829.62,{},199754,0,Africa +2023-01-22,37412,5930,"[""Keyboard"", ""Tablet"", ""Phone""]",1402.93,"{""loyalty"": ""25%""}",78126,0,South America +2024-01-17,37413,9855,"[""Headphones"", ""Charger"", ""Tablet""]",2891.08,"{""promo"": ""7%""}",199457,1,Europe +2024-12-22,37414,5815,"[""Keyboard"", ""Headphones""]",913.23,"{""seasonal"": ""10%""}",103188,0,South America +2024-08-10,37415,147,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4895.93,"{"""": ""19%""}",171747,0,South America +2023-12-22,37416,780,"[""Keyboard"", ""Monitor""]",1128.6,{},83441,0,Africa +2023-02-20,37417,4589,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3390.93,"{""loyalty"": ""13%""}",72440,1,Europe +2024-01-05,37418,4268,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1965.27,{},62657,0,South America +2024-01-01,37419,3882,"[""Charger"", ""Wireless Mouse""]",1978.75,"{""loyalty"": ""21%""}",222829,1,Asia +2023-05-23,37420,9746,"[""Wireless Mouse""]",834.87,"{""promo"": ""30%""}",149843,1,North America +2023-09-01,37421,5539,"[""Laptop""]",921.32,"{"""": ""26%""}",198349,1,Africa +2023-02-17,37422,1546,"[""Keyboard"", ""Laptop"", ""Monitor""]",2278.29,{},206689,1,South America +2023-10-11,37423,5753,"[""Monitor"", ""Phone"", ""Headphones""]",3344.05,"{""loyalty"": ""10%""}",64642,0,Africa +2023-07-14,37424,9680,"[""Keyboard""]",2374.96,{},24421,1,Europe +2023-12-13,37425,3994,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1198.06,{},112358,1,Africa +2024-06-29,37426,9923,"[""Charger"", ""Phone"", ""Keyboard""]",4884.74,{},48963,0,North America +2023-01-02,37427,231,"[""Keyboard""]",1624.72,{},159513,1,South America +2024-09-28,37428,8226,"[""Headphones""]",2213.97,{},91475,0,South America +2023-09-05,37429,7714,"[""Headphones"", ""Laptop""]",733.76,"{"""": ""17%""}",240510,0,Asia +2024-11-05,37430,8173,"[""Keyboard"", ""Tablet""]",1014.52,"{""loyalty"": ""24%""}",206705,1,Asia +2024-01-09,37431,2095,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1658.45,"{""seasonal"": ""23%""}",213445,0,Africa +2024-06-23,37432,9215,"[""Phone"", ""Monitor"", ""Tablet""]",1301.9,"{"""": ""27%""}",144395,1,Africa +2024-11-11,37433,7830,"[""Charger"", ""Monitor"", ""Keyboard""]",3284.14,{},12052,1,Europe +2024-02-09,37434,443,"[""Wireless Mouse"", ""Charger""]",4295.94,"{""seasonal"": ""10%""}",154908,0,South America +2023-02-14,37435,1929,"[""Laptop"", ""Monitor""]",3850.02,"{"""": ""24%""}",232931,0,Europe +2023-08-08,37436,2623,"[""Headphones"", ""Laptop"", ""Tablet""]",2392.52,"{"""": ""15%""}",119285,0,South America +2024-12-16,37437,3917,"[""Tablet""]",3015.8,"{""seasonal"": ""20%""}",210601,1,Europe +2023-12-04,37438,4706,"[""Laptop""]",274.9,{},47351,1,South America +2024-09-09,37439,3316,"[""Charger"", ""Keyboard"", ""Monitor""]",3779.69,"{""promo"": ""25%""}",209487,1,Asia +2024-07-22,37440,3227,"[""Laptop"", ""Phone"", ""Monitor""]",3151.67,"{""promo"": ""15%""}",132023,0,South America +2024-03-14,37441,1565,"[""Laptop""]",1266.35,{},115178,1,South America +2024-07-05,37442,2675,"[""Keyboard""]",1244.28,"{"""": ""16%""}",173483,0,North America +2023-05-05,37443,2603,"[""Laptop"", ""Phone""]",2823.93,"{"""": ""21%""}",180347,0,North America +2023-10-24,37444,1961,"[""Headphones""]",3255.29,"{""seasonal"": ""10%""}",104675,1,South America +2024-03-24,37445,4381,"[""Monitor""]",1213.55,{},298260,0,North America +2023-05-06,37446,3007,"[""Keyboard"", ""Tablet""]",2854.25,"{""loyalty"": ""29%""}",142637,0,North America +2024-12-31,37447,6102,"[""Headphones"", ""Monitor"", ""Keyboard""]",2735.06,{},210257,0,South America +2024-03-02,37448,629,"[""Keyboard"", ""Phone"", ""Tablet""]",654.51,{},242212,1,Europe +2023-02-04,37449,4206,"[""Laptop""]",4655.02,"{""promo"": ""8%""}",67656,0,Africa +2024-11-12,37450,9836,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4722.51,{},116793,1,Europe +2024-09-08,37451,5250,"[""Laptop"", ""Monitor""]",3600.26,{},95486,0,Asia +2023-08-14,37452,5390,"[""Keyboard"", ""Tablet"", ""Charger""]",198.9,{},12423,1,Europe +2024-04-29,37453,6701,"[""Phone"", ""Laptop"", ""Tablet""]",4626.55,{},179462,0,South America +2023-05-24,37454,4827,"[""Wireless Mouse"", ""Tablet""]",2275.9,{},9672,1,Europe +2024-09-20,37455,8680,"[""Tablet"", ""Laptop""]",924.6,"{""loyalty"": ""27%""}",145264,0,South America +2024-11-03,37456,1375,"[""Phone"", ""Keyboard""]",2285.81,{},201323,1,Asia +2024-10-18,37457,9437,"[""Tablet""]",3707.53,{},186089,1,Asia +2023-09-26,37458,112,"[""Charger"", ""Headphones""]",4555.24,{},157794,0,North America +2024-08-11,37459,5261,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3398.68,"{"""": ""23%""}",100750,0,Asia +2024-09-11,37460,7654,"[""Tablet""]",3881.99,{},28090,0,Asia +2024-02-15,37461,7237,"[""Headphones""]",1586.99,{},204392,1,Europe +2024-05-10,37462,8428,"[""Monitor"", ""Laptop""]",1693.79,"{"""": ""12%""}",66527,1,Europe +2023-06-01,37463,5918,"[""Keyboard"", ""Tablet"", ""Phone""]",583.95,"{""promo"": ""20%""}",246844,0,Africa +2024-07-05,37464,5879,"[""Phone""]",77.69,"{""seasonal"": ""9%""}",217083,0,Europe +2024-02-15,37465,2156,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3120.8,{},206634,0,Europe +2023-06-26,37466,2025,"[""Headphones""]",740.85,"{"""": ""18%""}",67894,1,South America +2024-03-07,37467,8224,"[""Monitor""]",2061.6,{},163199,1,Europe +2023-05-13,37468,3273,"[""Headphones"", ""Phone"", ""Keyboard""]",3246.63,"{""promo"": ""27%""}",62120,1,North America +2024-01-26,37469,4354,"[""Monitor""]",744.79,{},87093,1,Europe +2024-08-08,37470,2372,"[""Charger"", ""Phone""]",56.68,"{"""": ""8%""}",107040,0,North America +2024-06-10,37471,4165,"[""Headphones""]",141.32,{},38587,0,Asia +2023-03-18,37472,3561,"[""Wireless Mouse""]",2473.51,{},299522,0,Asia +2023-07-01,37473,3293,"[""Monitor"", ""Laptop"", ""Tablet""]",2020.03,{},249689,1,Asia +2023-02-28,37474,2,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1274.49,{},278633,0,Asia +2024-05-24,37475,9889,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1301.92,{},118207,0,Europe +2023-03-08,37476,1499,"[""Headphones"", ""Charger"", ""Tablet""]",2135.74,{},274635,1,North America +2024-04-08,37477,9784,"[""Monitor"", ""Tablet""]",2102.86,{},189094,0,Africa +2024-01-20,37478,3952,"[""Phone"", ""Headphones""]",4406.88,{},27690,0,Asia +2024-10-26,37479,3951,"[""Wireless Mouse"", ""Monitor""]",3721.94,"{""loyalty"": ""29%""}",32230,0,Asia +2023-02-08,37480,5291,"[""Charger"", ""Phone"", ""Keyboard""]",661.95,"{""seasonal"": ""25%""}",226568,1,North America +2023-04-22,37481,6115,"[""Laptop"", ""Phone""]",4427.21,"{""promo"": ""23%""}",182046,0,Europe +2023-10-13,37482,8332,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3788.67,{},184353,0,North America +2024-09-10,37483,5656,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3368.25,{},163689,0,North America +2023-11-27,37484,3683,"[""Charger"", ""Phone"", ""Laptop""]",3532.33,{},26214,1,Africa +2024-02-26,37485,8222,"[""Headphones"", ""Charger""]",4787.4,"{""promo"": ""28%""}",289401,0,Asia +2024-09-10,37486,4477,"[""Monitor""]",2573.15,"{""loyalty"": ""25%""}",21710,0,Asia +2024-01-17,37487,636,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2196.03,"{""loyalty"": ""14%""}",259224,0,South America +2023-12-26,37488,3733,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2292.73,"{""seasonal"": ""7%""}",278612,0,South America +2023-10-12,37489,2325,"[""Charger"", ""Laptop"", ""Phone""]",1056.55,{},101335,1,North America +2024-05-12,37490,6691,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3704.78,"{""seasonal"": ""9%""}",238021,0,North America +2024-04-17,37491,1896,"[""Headphones""]",2440.27,{},73692,1,South America +2023-02-06,37492,9224,"[""Charger"", ""Headphones""]",550.79,"{"""": ""19%""}",283393,0,Europe +2023-09-20,37493,1985,"[""Keyboard"", ""Tablet"", ""Monitor""]",4501.77,"{""loyalty"": ""20%""}",158544,1,Europe +2024-01-07,37494,1339,"[""Headphones""]",2087.66,{},286946,1,North America +2023-09-23,37495,2507,"[""Wireless Mouse""]",3768.02,{},156520,0,Africa +2024-09-11,37496,8427,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1015.14,{},295247,1,Africa +2024-10-29,37497,148,"[""Keyboard"", ""Tablet"", ""Monitor""]",488.84,"{""promo"": ""6%""}",161561,1,Africa +2023-02-13,37498,6627,"[""Phone"", ""Wireless Mouse""]",56.79,{},119726,1,Africa +2024-12-28,37499,6490,"[""Headphones"", ""Tablet""]",681.87,"{""seasonal"": ""17%""}",38294,0,Europe +2024-12-12,37500,3156,"[""Tablet""]",2590.65,"{""promo"": ""28%""}",182636,1,Asia +2024-04-07,37501,9764,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2676.13,"{""loyalty"": ""27%""}",119528,1,Asia +2023-04-10,37502,5831,"[""Headphones"", ""Keyboard"", ""Monitor""]",717.02,{},5395,1,Africa +2023-10-30,37503,1104,"[""Headphones""]",2118.22,{},102877,1,Europe +2023-06-28,37504,511,"[""Monitor"", ""Wireless Mouse""]",338.46,"{""seasonal"": ""7%""}",239536,1,North America +2024-01-25,37505,2109,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2648.26,{},189297,1,Africa +2024-09-09,37506,6196,"[""Laptop"", ""Charger"", ""Keyboard""]",3514.9,{},149383,1,Africa +2024-11-03,37507,5653,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2350.46,"{""seasonal"": ""14%""}",226070,1,Europe +2024-06-18,37508,6603,"[""Phone"", ""Tablet"", ""Monitor""]",3964.74,"{""promo"": ""28%""}",219637,1,South America +2023-01-29,37509,7196,"[""Laptop"", ""Phone"", ""Monitor""]",273.59,"{""seasonal"": ""22%""}",282322,1,Africa +2023-09-11,37510,9286,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4690.37,{},293187,1,Europe +2023-01-30,37511,8807,"[""Laptop"", ""Phone""]",3781.88,"{""loyalty"": ""9%""}",88966,1,North America +2024-12-18,37512,1859,"[""Wireless Mouse"", ""Monitor""]",4008.45,"{""seasonal"": ""17%""}",142867,1,Europe +2024-02-24,37513,3009,"[""Tablet""]",4101.58,"{"""": ""10%""}",200983,0,North America +2024-02-28,37514,171,"[""Laptop"", ""Tablet"", ""Charger""]",3601.14,"{""loyalty"": ""9%""}",274094,1,North America +2023-07-27,37515,966,"[""Phone"", ""Charger"", ""Headphones""]",4453.68,"{""seasonal"": ""30%""}",198296,1,South America +2023-01-10,37516,7084,"[""Laptop""]",491.2,{},147531,0,Europe +2024-06-07,37517,2419,"[""Laptop"", ""Charger""]",3085.75,"{""loyalty"": ""29%""}",101444,0,Europe +2023-11-04,37518,6708,"[""Wireless Mouse""]",4556.0,{},292169,0,Europe +2024-10-09,37519,7649,"[""Headphones"", ""Keyboard""]",3963.22,"{""seasonal"": ""12%""}",49195,1,Europe +2024-10-28,37520,8020,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",490.86,"{"""": ""19%""}",8543,0,North America +2023-08-09,37521,5571,"[""Monitor"", ""Headphones""]",4049.0,"{""seasonal"": ""8%""}",110825,1,Africa +2024-10-20,37522,8764,"[""Monitor""]",3529.79,"{""loyalty"": ""16%""}",134804,1,South America +2023-11-27,37523,1248,"[""Headphones""]",975.12,"{""promo"": ""17%""}",95792,1,Asia +2023-05-12,37524,4771,"[""Tablet"", ""Monitor"", ""Charger""]",2839.48,"{""loyalty"": ""27%""}",43549,1,Africa +2024-10-02,37525,2414,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",625.31,"{""seasonal"": ""12%""}",119688,0,Asia +2023-11-23,37526,4012,"[""Keyboard""]",2465.2,{},143083,1,Europe +2024-04-16,37527,2350,"[""Keyboard""]",4702.83,"{""loyalty"": ""29%""}",248738,1,Europe +2024-01-23,37528,2470,"[""Headphones"", ""Monitor""]",2716.09,{},83744,1,Africa +2024-09-11,37529,5030,"[""Charger""]",2583.49,{},167382,1,Asia +2023-01-17,37530,8332,"[""Headphones"", ""Keyboard""]",3087.59,"{""seasonal"": ""11%""}",75467,0,North America +2024-12-03,37531,3072,"[""Phone"", ""Monitor""]",1173.35,"{""seasonal"": ""13%""}",174697,0,North America +2023-03-21,37532,1899,"[""Phone""]",2584.03,"{""seasonal"": ""14%""}",51999,0,South America +2023-06-17,37533,7026,"[""Monitor"", ""Charger"", ""Laptop""]",4561.41,{},139340,0,Europe +2023-04-01,37534,6273,"[""Phone""]",622.1,"{"""": ""10%""}",79364,1,Europe +2024-01-16,37535,4564,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1824.33,{},189656,0,South America +2024-07-01,37536,5006,"[""Wireless Mouse""]",2432.3,{},181750,0,Europe +2023-07-03,37537,2546,"[""Tablet"", ""Monitor"", ""Laptop""]",2290.13,"{""promo"": ""22%""}",72003,1,North America +2024-09-17,37538,2582,"[""Keyboard""]",4929.42,{},298469,1,Europe +2024-05-20,37539,7088,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",408.88,{},7806,0,Africa +2023-12-28,37540,3667,"[""Keyboard"", ""Phone"", ""Charger""]",4078.51,{},291322,0,South America +2024-04-24,37541,3773,"[""Monitor"", ""Laptop""]",3677.74,{},184017,1,Africa +2024-03-12,37542,5716,"[""Tablet""]",3254.88,"{"""": ""23%""}",39385,0,Africa +2023-01-15,37543,3249,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1275.83,"{"""": ""10%""}",284096,1,Africa +2024-04-12,37544,1992,"[""Laptop""]",3701.7,{},53562,1,North America +2024-05-28,37545,7668,"[""Laptop""]",299.44,{},77648,1,Europe +2024-02-04,37546,8315,"[""Phone""]",225.12,"{""loyalty"": ""8%""}",75622,0,Asia +2023-03-09,37547,2321,"[""Tablet"", ""Charger"", ""Headphones""]",1140.61,{},138429,0,North America +2023-07-20,37548,7035,"[""Phone"", ""Tablet"", ""Monitor""]",913.44,{},208957,0,Europe +2023-06-05,37549,378,"[""Monitor"", ""Keyboard"", ""Headphones""]",3900.99,{},120264,1,South America +2023-01-01,37550,7742,"[""Charger""]",4084.73,"{""promo"": ""15%""}",242854,1,North America +2024-02-17,37551,6540,"[""Monitor"", ""Charger""]",708.08,"{"""": ""7%""}",105159,1,Europe +2023-07-04,37552,2726,"[""Phone""]",1257.88,{},131393,1,Africa +2024-01-08,37553,841,"[""Keyboard""]",916.92,{},200585,1,Europe +2023-04-01,37554,1431,"[""Tablet"", ""Charger"", ""Keyboard""]",2661.75,{},45934,0,Asia +2023-09-28,37555,3361,"[""Phone"", ""Monitor"", ""Charger""]",3164.21,"{""seasonal"": ""15%""}",247383,0,North America +2024-05-10,37556,6353,"[""Keyboard"", ""Charger""]",1449.43,{},241953,0,Africa +2024-10-11,37557,1053,"[""Laptop"", ""Tablet""]",2270.49,{},281319,1,North America +2024-07-22,37558,5431,"[""Phone"", ""Monitor"", ""Laptop""]",2108.79,{},18626,0,Africa +2023-09-27,37559,2903,"[""Phone"", ""Laptop"", ""Charger""]",4339.41,"{"""": ""12%""}",191008,1,North America +2023-06-08,37560,2887,"[""Keyboard"", ""Phone"", ""Tablet""]",2162.41,"{""promo"": ""16%""}",185938,1,North America +2024-08-06,37561,4895,"[""Phone"", ""Keyboard""]",3653.84,{},198700,0,Asia +2023-08-26,37562,8696,"[""Tablet""]",2211.14,"{""loyalty"": ""18%""}",278787,0,Asia +2024-03-28,37563,1364,"[""Laptop""]",1083.84,{},257572,0,North America +2023-02-24,37564,7043,"[""Charger"", ""Monitor"", ""Headphones""]",3944.02,"{""loyalty"": ""7%""}",297656,1,South America +2024-08-21,37565,4299,"[""Headphones"", ""Keyboard"", ""Phone""]",3836.94,{},263218,0,North America +2024-10-27,37566,4013,"[""Headphones""]",417.88,"{""promo"": ""6%""}",295574,0,Africa +2024-03-08,37567,8917,"[""Laptop""]",2110.64,"{""loyalty"": ""19%""}",273735,0,South America +2023-01-15,37568,4165,"[""Tablet""]",1260.19,{},87952,0,Africa +2024-05-18,37569,7573,"[""Tablet""]",2081.85,{},228300,0,North America +2023-01-30,37570,7648,"[""Wireless Mouse"", ""Charger""]",2631.4,"{""seasonal"": ""8%""}",138765,1,Europe +2024-02-15,37571,2643,"[""Keyboard"", ""Phone""]",4142.41,{},149187,0,Africa +2024-02-11,37572,7392,"[""Tablet""]",3800.27,{},35531,1,South America +2024-01-26,37573,2732,"[""Monitor""]",464.72,"{"""": ""30%""}",195410,0,Europe +2023-06-08,37574,9537,"[""Phone"", ""Keyboard"", ""Tablet""]",971.28,"{"""": ""15%""}",48732,0,Africa +2024-05-09,37575,7968,"[""Tablet""]",435.36,{},296401,0,Asia +2023-02-02,37576,9905,"[""Wireless Mouse""]",4293.39,{},162624,0,Europe +2023-09-11,37577,1429,"[""Keyboard"", ""Phone"", ""Tablet""]",1807.88,{},195880,1,Africa +2024-05-12,37578,4569,"[""Headphones""]",1269.16,"{"""": ""20%""}",230192,1,South America +2024-01-01,37579,7009,"[""Laptop"", ""Headphones""]",1178.11,"{""loyalty"": ""24%""}",67303,1,South America +2024-04-06,37580,5543,"[""Headphones"", ""Keyboard""]",534.09,"{""seasonal"": ""16%""}",156428,0,Asia +2023-11-14,37581,1980,"[""Monitor"", ""Charger"", ""Headphones""]",4501.2,{},244372,1,North America +2024-02-08,37582,3955,"[""Tablet"", ""Wireless Mouse""]",3145.32,"{""seasonal"": ""23%""}",69903,0,North America +2023-04-12,37583,9717,"[""Phone""]",1437.86,"{""promo"": ""19%""}",55306,0,Asia +2023-06-27,37584,2353,"[""Wireless Mouse"", ""Charger""]",1363.93,{},222963,1,Asia +2024-09-01,37585,2252,"[""Wireless Mouse"", ""Tablet""]",3398.12,"{""promo"": ""16%""}",106809,0,South America +2024-02-23,37586,3703,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1928.55,{},46988,0,South America +2023-03-31,37587,488,"[""Phone""]",4215.49,{},149860,0,Asia +2024-06-24,37588,7389,"[""Laptop"", ""Tablet"", ""Charger""]",3138.95,"{""promo"": ""26%""}",294298,0,North America +2023-05-05,37589,1433,"[""Headphones""]",3162.87,{},202423,0,Asia +2024-09-18,37590,8401,"[""Tablet""]",1753.39,"{""promo"": ""8%""}",252696,0,North America +2024-07-16,37591,5572,"[""Tablet"", ""Charger"", ""Monitor""]",4912.45,"{""loyalty"": ""27%""}",79393,1,North America +2024-10-15,37592,2516,"[""Tablet"", ""Monitor""]",496.59,"{"""": ""20%""}",196350,1,Europe +2024-07-28,37593,4304,"[""Tablet"", ""Keyboard""]",4086.35,"{""seasonal"": ""22%""}",88018,0,Europe +2023-09-17,37594,1527,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3599.03,"{"""": ""14%""}",104239,1,South America +2023-01-15,37595,1500,"[""Wireless Mouse"", ""Tablet""]",3850.87,"{""loyalty"": ""8%""}",176900,1,Africa +2023-09-22,37596,4325,"[""Charger""]",2171.94,{},86090,0,North America +2024-11-03,37597,1366,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2336.86,"{""seasonal"": ""30%""}",158765,0,Europe +2024-12-01,37598,9220,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2438.2,"{"""": ""29%""}",200158,1,Africa +2024-07-09,37599,6985,"[""Headphones"", ""Charger""]",373.29,"{""loyalty"": ""12%""}",17942,0,Europe +2023-07-12,37600,9963,"[""Laptop"", ""Headphones"", ""Phone""]",2695.74,"{""loyalty"": ""29%""}",166760,0,Europe +2024-03-08,37601,3944,"[""Headphones"", ""Tablet"", ""Phone""]",381.47,{},285206,0,Asia +2023-07-21,37602,6934,"[""Headphones"", ""Charger"", ""Keyboard""]",1325.69,{},91630,1,Africa +2024-05-28,37603,1104,"[""Monitor""]",2377.82,"{"""": ""20%""}",101500,0,Africa +2023-04-13,37604,461,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2637.51,"{""seasonal"": ""7%""}",55820,1,Europe +2023-08-07,37605,2562,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1037.43,"{""loyalty"": ""14%""}",62635,1,Asia +2023-02-03,37606,1342,"[""Tablet""]",1916.7,{},100005,0,Africa +2024-06-30,37607,5812,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4861.47,"{""loyalty"": ""13%""}",101030,1,Asia +2024-03-16,37608,1262,"[""Monitor"", ""Laptop"", ""Tablet""]",4999.33,"{"""": ""24%""}",210955,0,South America +2024-11-06,37609,2734,"[""Phone"", ""Charger"", ""Monitor""]",3770.99,"{""promo"": ""26%""}",158710,1,Europe +2024-05-30,37610,6307,"[""Charger"", ""Phone""]",4627.09,"{"""": ""5%""}",138090,1,Asia +2023-06-05,37611,1846,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",205.52,{},150177,0,Africa +2024-09-01,37612,1314,"[""Keyboard"", ""Phone""]",3590.14,{},31640,0,Asia +2023-01-07,37613,5795,"[""Tablet""]",1195.98,"{"""": ""16%""}",19073,1,South America +2023-10-27,37614,8798,"[""Laptop""]",1873.77,"{""loyalty"": ""10%""}",246165,1,South America +2024-10-28,37615,3686,"[""Laptop"", ""Headphones""]",2159.88,"{"""": ""23%""}",145219,0,Africa +2024-08-03,37616,8024,"[""Monitor"", ""Charger""]",2480.62,"{""promo"": ""11%""}",5897,0,Europe +2024-08-17,37617,810,"[""Monitor"", ""Keyboard"", ""Laptop""]",2428.53,"{"""": ""19%""}",129322,1,South America +2023-04-12,37618,616,"[""Laptop"", ""Keyboard""]",4148.25,{},181532,0,Europe +2024-04-20,37619,647,"[""Wireless Mouse"", ""Laptop""]",218.52,"{""seasonal"": ""5%""}",144683,1,North America +2024-02-19,37620,6432,"[""Monitor""]",640.0,"{""promo"": ""24%""}",198735,0,Europe +2024-07-16,37621,2750,"[""Laptop"", ""Tablet""]",4643.78,{},254877,1,North America +2023-06-22,37622,7028,"[""Headphones"", ""Charger""]",1844.63,{},98039,0,South America +2023-02-01,37623,1323,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",290.09,{},11779,0,Africa +2024-06-30,37624,6106,"[""Laptop"", ""Monitor""]",742.89,{},187392,1,Europe +2024-04-01,37625,6109,"[""Headphones""]",3966.19,{},274669,1,Europe +2023-04-16,37626,6698,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3387.39,{},144851,0,Europe +2023-01-05,37627,773,"[""Headphones"", ""Charger""]",3964.06,"{""seasonal"": ""5%""}",161829,0,South America +2023-12-23,37628,2698,"[""Keyboard"", ""Laptop""]",4784.51,{},136045,1,South America +2023-04-03,37629,2384,"[""Tablet"", ""Wireless Mouse""]",3521.76,{},235203,0,Asia +2024-01-31,37630,9349,"[""Tablet""]",3763.29,"{""seasonal"": ""29%""}",163303,0,South America +2023-01-17,37631,7770,"[""Laptop"", ""Headphones""]",2562.44,"{""loyalty"": ""21%""}",238569,0,Europe +2023-05-07,37632,2146,"[""Tablet""]",3084.89,{},164876,0,Africa +2023-05-22,37633,2407,"[""Wireless Mouse""]",2551.87,"{"""": ""21%""}",183968,0,South America +2024-02-03,37634,2520,"[""Tablet"", ""Phone"", ""Charger""]",1318.87,"{""loyalty"": ""21%""}",286314,1,Asia +2023-10-19,37635,7654,"[""Keyboard"", ""Tablet"", ""Laptop""]",202.22,{},21029,0,Europe +2024-11-02,37636,4658,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",682.71,"{""seasonal"": ""17%""}",272110,0,Europe +2023-12-18,37637,9466,"[""Headphones""]",122.39,"{""seasonal"": ""30%""}",145428,0,Africa +2024-05-13,37638,5533,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2923.49,"{""promo"": ""23%""}",44402,0,Africa +2024-11-22,37639,4371,"[""Phone"", ""Monitor"", ""Headphones""]",4856.66,"{""seasonal"": ""18%""}",56231,1,South America +2023-06-13,37640,9465,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",565.21,"{""seasonal"": ""24%""}",172515,1,Asia +2023-11-30,37641,4493,"[""Laptop""]",1483.16,{},15536,1,Africa +2023-11-02,37642,2385,"[""Headphones"", ""Phone""]",259.78,"{""seasonal"": ""6%""}",194811,0,Asia +2024-07-03,37643,2116,"[""Charger""]",566.79,"{"""": ""23%""}",128627,1,Asia +2023-11-28,37644,185,"[""Tablet"", ""Keyboard"", ""Phone""]",3316.72,{},156412,1,Europe +2024-04-27,37645,2080,"[""Laptop""]",2177.74,{},140369,0,Asia +2023-03-07,37646,9378,"[""Monitor"", ""Keyboard""]",1680.27,"{""seasonal"": ""9%""}",36329,1,South America +2024-01-01,37647,8725,"[""Laptop""]",850.29,"{"""": ""9%""}",88481,0,South America +2024-09-11,37648,7645,"[""Wireless Mouse""]",1011.75,"{""promo"": ""22%""}",41388,0,Europe +2023-09-02,37649,4589,"[""Headphones""]",3180.9,"{""loyalty"": ""26%""}",145011,0,South America +2023-03-13,37650,4912,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3186.11,{},20873,0,South America +2023-10-03,37651,1565,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4436.13,"{""loyalty"": ""22%""}",22213,0,Asia +2023-07-29,37652,1290,"[""Tablet""]",4837.5,"{""loyalty"": ""7%""}",46465,1,Africa +2024-06-23,37653,496,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",475.03,{},8408,0,Asia +2023-04-13,37654,6753,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2694.92,{},241158,1,Africa +2024-01-18,37655,6568,"[""Charger"", ""Wireless Mouse""]",3743.76,{},56524,0,South America +2024-12-05,37656,7611,"[""Charger"", ""Headphones""]",2812.57,"{"""": ""23%""}",185653,1,Africa +2024-09-09,37657,8788,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1617.4,{},286353,0,South America +2023-11-01,37658,177,"[""Keyboard""]",383.26,"{""loyalty"": ""14%""}",204096,0,South America +2023-03-10,37659,7268,"[""Tablet"", ""Wireless Mouse""]",2113.89,{},255316,1,South America +2023-06-03,37660,6176,"[""Keyboard"", ""Wireless Mouse""]",2730.74,"{"""": ""27%""}",137645,1,South America +2023-04-21,37661,5226,"[""Phone"", ""Charger""]",4865.27,"{""loyalty"": ""25%""}",37596,1,Europe +2024-02-29,37662,6712,"[""Laptop""]",2823.2,"{""promo"": ""13%""}",121771,1,Asia +2023-06-23,37663,6305,"[""Tablet""]",2765.85,{},267481,0,North America +2024-01-16,37664,5,"[""Headphones"", ""Monitor""]",4194.47,{},254419,0,Africa +2024-09-03,37665,8291,"[""Charger"", ""Keyboard"", ""Headphones""]",3330.74,{},296090,1,South America +2024-11-14,37666,2153,"[""Headphones""]",188.39,{},182864,1,South America +2024-10-21,37667,969,"[""Laptop""]",1444.02,"{"""": ""23%""}",219612,0,North America +2023-05-28,37668,3498,"[""Laptop""]",4326.18,{},16482,0,North America +2024-01-19,37669,1783,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2455.87,"{""loyalty"": ""12%""}",91724,1,Europe +2023-12-06,37670,1657,"[""Tablet"", ""Headphones"", ""Keyboard""]",4316.44,{},108122,1,Europe +2023-10-25,37671,8972,"[""Wireless Mouse""]",1321.0,"{""loyalty"": ""26%""}",286467,0,South America +2023-04-16,37672,2174,"[""Keyboard"", ""Charger"", ""Monitor""]",3974.06,{},131818,0,South America +2024-09-07,37673,3939,"[""Monitor"", ""Phone"", ""Headphones""]",1417.47,{},283803,0,Asia +2023-02-13,37674,9067,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1060.08,{},111085,1,Africa +2024-12-08,37675,7068,"[""Keyboard"", ""Laptop"", ""Charger""]",988.59,"{""loyalty"": ""20%""}",37681,0,South America +2023-09-15,37676,5630,"[""Tablet"", ""Laptop""]",3152.59,{},246259,1,South America +2023-12-08,37677,8351,"[""Phone"", ""Monitor"", ""Tablet""]",445.99,"{""seasonal"": ""5%""}",234804,0,Asia +2023-02-15,37678,872,"[""Wireless Mouse""]",4179.73,{},267092,0,South America +2024-03-15,37679,1959,"[""Tablet"", ""Monitor"", ""Keyboard""]",1558.3,"{""seasonal"": ""10%""}",196455,1,North America +2023-05-16,37680,4196,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2585.14,{},17058,0,North America +2023-01-08,37681,4937,"[""Keyboard"", ""Wireless Mouse""]",2120.04,{},83179,0,Asia +2023-03-16,37682,1527,"[""Headphones"", ""Keyboard""]",1793.0,{},260745,0,Europe +2024-01-31,37683,8201,"[""Monitor"", ""Phone"", ""Keyboard""]",4166.34,"{"""": ""25%""}",236255,0,North America +2024-12-25,37684,567,"[""Headphones""]",4296.85,"{""seasonal"": ""19%""}",210270,1,Europe +2023-03-14,37685,3030,"[""Keyboard""]",4237.87,"{""loyalty"": ""28%""}",152452,1,Africa +2023-05-03,37686,1963,"[""Keyboard"", ""Tablet""]",4075.34,"{"""": ""16%""}",23722,0,South America +2024-09-24,37687,6483,"[""Laptop""]",1530.68,{},180675,0,Africa +2023-11-22,37688,4174,"[""Headphones""]",1715.96,"{""seasonal"": ""29%""}",87403,0,Europe +2024-09-07,37689,2343,"[""Keyboard"", ""Charger"", ""Tablet""]",2469.76,{},248441,1,Asia +2024-12-16,37690,5523,"[""Phone"", ""Laptop""]",2707.49,"{""loyalty"": ""14%""}",33984,1,Asia +2023-02-27,37691,9220,"[""Monitor"", ""Tablet"", ""Laptop""]",2693.42,"{""loyalty"": ""18%""}",81732,0,Africa +2024-01-20,37692,5807,"[""Monitor""]",3895.21,"{""promo"": ""23%""}",26328,0,Europe +2023-02-19,37693,8897,"[""Keyboard""]",4879.98,"{"""": ""5%""}",167775,0,North America +2023-02-25,37694,726,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2224.93,{},109113,1,North America +2023-03-11,37695,7584,"[""Charger"", ""Wireless Mouse""]",4764.54,"{""loyalty"": ""19%""}",221770,0,South America +2024-09-24,37696,4703,"[""Phone""]",225.09,"{"""": ""14%""}",182444,0,Asia +2024-08-02,37697,3803,"[""Charger""]",2799.77,{},187517,0,Europe +2023-08-29,37698,2345,"[""Laptop"", ""Charger""]",4120.22,"{"""": ""9%""}",270958,0,North America +2024-11-29,37699,8839,"[""Monitor"", ""Wireless Mouse""]",764.97,"{""promo"": ""17%""}",183666,0,Africa +2024-07-22,37700,4880,"[""Tablet""]",3209.71,{},166125,0,Asia +2024-11-03,37701,8138,"[""Keyboard"", ""Tablet""]",2811.26,{},72466,1,South America +2024-08-19,37702,2869,"[""Phone"", ""Laptop""]",1779.44,"{""loyalty"": ""15%""}",94633,0,South America +2024-12-28,37703,4443,"[""Headphones"", ""Keyboard"", ""Phone""]",4221.65,"{""promo"": ""9%""}",220937,0,North America +2024-03-28,37704,5815,"[""Monitor"", ""Keyboard"", ""Laptop""]",2896.69,{},202183,0,Africa +2024-10-31,37705,1480,"[""Charger"", ""Laptop""]",3140.26,{},238356,0,Africa +2023-11-12,37706,2109,"[""Monitor"", ""Laptop"", ""Tablet""]",718.17,{},271481,1,North America +2023-02-18,37707,101,"[""Monitor""]",3108.7,"{""loyalty"": ""6%""}",164865,0,Africa +2024-04-02,37708,7972,"[""Phone"", ""Keyboard""]",2595.76,{},107839,0,Europe +2024-03-13,37709,5716,"[""Monitor"", ""Keyboard"", ""Headphones""]",2377.48,{},121345,0,South America +2023-09-06,37710,251,"[""Tablet"", ""Charger""]",2772.98,{},138066,1,North America +2024-07-18,37711,3763,"[""Headphones"", ""Tablet""]",289.02,{},106538,1,Africa +2024-12-31,37712,7809,"[""Charger"", ""Keyboard"", ""Phone""]",958.88,"{"""": ""17%""}",123494,1,North America +2024-11-23,37713,5183,"[""Tablet"", ""Wireless Mouse""]",3292.39,"{""seasonal"": ""21%""}",46377,0,Europe +2023-12-10,37714,3186,"[""Laptop"", ""Tablet"", ""Charger""]",4631.74,"{""seasonal"": ""30%""}",297280,1,Africa +2023-01-07,37715,3388,"[""Headphones""]",153.69,{},274418,1,North America +2024-12-12,37716,6857,"[""Laptop"", ""Monitor""]",832.34,{},104208,0,South America +2023-12-19,37717,2189,"[""Tablet"", ""Charger""]",2968.01,"{""promo"": ""17%""}",161216,1,North America +2023-07-26,37718,5376,"[""Monitor"", ""Laptop""]",1893.51,{},226349,1,Asia +2024-11-27,37719,8384,"[""Monitor""]",3885.69,"{""seasonal"": ""27%""}",245338,0,Africa +2023-03-13,37720,8272,"[""Laptop"", ""Charger"", ""Keyboard""]",4664.2,{},151777,1,North America +2024-09-13,37721,964,"[""Headphones""]",444.65,"{"""": ""28%""}",283644,1,North America +2024-08-29,37722,6098,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2500.36,"{""loyalty"": ""26%""}",182355,0,Africa +2023-07-22,37723,4195,"[""Tablet"", ""Phone"", ""Laptop""]",2382.49,"{"""": ""10%""}",38389,1,Africa +2024-09-18,37724,2910,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2015.65,"{""promo"": ""8%""}",264431,1,North America +2023-09-21,37725,6702,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3506.75,{},191501,0,Europe +2024-11-06,37726,2850,"[""Keyboard"", ""Monitor""]",3671.45,"{"""": ""18%""}",292096,0,South America +2023-11-11,37727,1409,"[""Phone""]",4811.06,{},133315,0,Asia +2023-05-17,37728,3992,"[""Laptop"", ""Headphones"", ""Keyboard""]",473.12,"{""promo"": ""21%""}",125349,0,North America +2024-04-03,37729,4581,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1604.74,"{""promo"": ""29%""}",57074,1,Africa +2024-10-03,37730,9600,"[""Charger""]",516.38,"{""promo"": ""9%""}",73399,1,South America +2024-02-21,37731,8560,"[""Tablet"", ""Monitor""]",3301.12,"{""promo"": ""25%""}",37086,1,Asia +2024-01-19,37732,8166,"[""Tablet"", ""Phone""]",479.9,"{""promo"": ""8%""}",93116,1,North America +2023-02-06,37733,9960,"[""Monitor"", ""Charger"", ""Phone""]",4750.83,"{""promo"": ""15%""}",270749,0,Europe +2023-05-01,37734,7758,"[""Charger"", ""Laptop"", ""Monitor""]",3331.26,"{""promo"": ""18%""}",282024,1,Europe +2024-09-29,37735,3207,"[""Monitor"", ""Tablet"", ""Charger""]",4615.27,"{""seasonal"": ""10%""}",194586,0,Asia +2023-07-06,37736,8293,"[""Headphones"", ""Tablet""]",1418.26,"{""promo"": ""25%""}",208397,0,North America +2024-07-08,37737,8060,"[""Keyboard""]",2435.34,{},279640,0,South America +2023-10-28,37738,7332,"[""Phone""]",3276.34,{},94062,1,South America +2024-04-29,37739,77,"[""Tablet"", ""Wireless Mouse""]",3041.96,{},262398,1,South America +2023-08-13,37740,1656,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1601.57,"{"""": ""30%""}",265723,1,North America +2023-10-19,37741,2532,"[""Wireless Mouse"", ""Headphones""]",1671.65,{},83102,1,Europe +2024-04-26,37742,4258,"[""Headphones"", ""Wireless Mouse""]",3602.01,"{""promo"": ""9%""}",190876,0,South America +2023-09-10,37743,2338,"[""Laptop"", ""Charger""]",200.41,{},286948,0,North America +2023-09-08,37744,8038,"[""Monitor"", ""Headphones""]",2531.86,"{""loyalty"": ""27%""}",101566,1,Europe +2024-10-07,37745,5432,"[""Monitor"", ""Tablet""]",1246.92,{},42160,0,North America +2024-10-27,37746,335,"[""Tablet"", ""Charger""]",1142.82,"{""loyalty"": ""12%""}",298441,1,North America +2024-11-20,37747,5807,"[""Monitor"", ""Charger"", ""Keyboard""]",3633.95,{},77279,0,Asia +2024-04-09,37748,1767,"[""Monitor"", ""Phone""]",2971.84,"{""loyalty"": ""7%""}",97904,0,Asia +2023-10-02,37749,2459,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3393.75,"{""loyalty"": ""6%""}",39320,1,Europe +2023-05-29,37750,2784,"[""Keyboard"", ""Laptop"", ""Headphones""]",4800.6,"{""promo"": ""16%""}",173967,0,Europe +2023-10-18,37751,8896,"[""Keyboard"", ""Laptop"", ""Phone""]",646.03,"{""seasonal"": ""24%""}",105208,1,Europe +2024-03-20,37752,723,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3458.12,"{""promo"": ""8%""}",156121,0,South America +2024-02-29,37753,3103,"[""Charger""]",1288.52,"{"""": ""29%""}",281815,0,Africa +2024-03-27,37754,3214,"[""Laptop"", ""Phone"", ""Charger""]",156.25,"{""loyalty"": ""21%""}",43219,1,Asia +2023-05-07,37755,1520,"[""Monitor"", ""Keyboard""]",1976.71,{},183086,1,Asia +2023-01-19,37756,8641,"[""Tablet"", ""Wireless Mouse""]",2312.23,"{""promo"": ""20%""}",282522,0,South America +2024-10-22,37757,1573,"[""Headphones"", ""Monitor""]",1943.34,"{""promo"": ""14%""}",50807,1,Asia +2023-09-24,37758,1005,"[""Wireless Mouse"", ""Tablet""]",1747.55,"{""seasonal"": ""30%""}",52523,1,Africa +2024-09-12,37759,7778,"[""Charger"", ""Tablet""]",1888.31,"{""loyalty"": ""11%""}",195289,0,Asia +2023-12-15,37760,9233,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4159.48,{},299246,1,South America +2023-07-30,37761,6302,"[""Monitor"", ""Keyboard""]",3752.2,{},148677,1,Europe +2024-07-15,37762,3793,"[""Headphones"", ""Monitor""]",787.53,{},178364,0,Europe +2024-08-13,37763,167,"[""Laptop"", ""Tablet"", ""Monitor""]",4112.9,"{""loyalty"": ""20%""}",41474,0,Asia +2023-10-17,37764,2836,"[""Phone"", ""Charger"", ""Monitor""]",1413.58,"{""loyalty"": ""12%""}",265120,1,North America +2024-12-01,37765,9657,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3172.1,{},64029,0,North America +2024-03-05,37766,7919,"[""Monitor"", ""Headphones""]",2162.54,{},182422,0,Africa +2023-03-21,37767,5299,"[""Phone""]",3965.76,"{""seasonal"": ""5%""}",201251,0,Asia +2024-05-21,37768,5960,"[""Laptop"", ""Wireless Mouse""]",4783.15,{},286252,0,Asia +2023-03-20,37769,1038,"[""Headphones""]",1624.63,"{""loyalty"": ""13%""}",70208,1,Africa +2023-01-09,37770,8792,"[""Headphones"", ""Tablet""]",1136.88,{},27742,1,North America +2023-11-04,37771,2495,"[""Wireless Mouse"", ""Tablet""]",4355.83,{},194391,0,North America +2024-02-16,37772,664,"[""Phone"", ""Headphones"", ""Charger""]",2098.32,"{"""": ""20%""}",27436,1,North America +2023-02-12,37773,7241,"[""Phone"", ""Laptop""]",953.05,{},299271,1,Asia +2024-10-14,37774,4086,"[""Keyboard"", ""Monitor"", ""Phone""]",1520.3,{},230677,0,Asia +2024-12-30,37775,2408,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1158.27,{},19656,1,Africa +2023-01-20,37776,5877,"[""Monitor"", ""Keyboard""]",4983.89,"{""seasonal"": ""23%""}",9163,1,South America +2023-05-04,37777,8149,"[""Laptop"", ""Charger""]",1316.97,{},239233,0,Africa +2024-02-11,37778,6469,"[""Laptop""]",3268.48,{},37472,0,Africa +2023-08-06,37779,6280,"[""Laptop"", ""Keyboard"", ""Headphones""]",306.67,"{""promo"": ""11%""}",60564,0,Asia +2023-12-13,37780,3193,"[""Tablet""]",4237.68,"{""seasonal"": ""5%""}",213977,0,Africa +2024-08-18,37781,7218,"[""Keyboard"", ""Phone""]",1370.74,"{""promo"": ""22%""}",189150,0,Africa +2023-06-04,37782,1479,"[""Charger"", ""Phone""]",4563.09,"{""seasonal"": ""28%""}",106514,1,Europe +2023-06-21,37783,9631,"[""Headphones""]",4755.5,{},168351,1,North America +2024-09-27,37784,3114,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3356.41,{},62871,0,Europe +2023-11-25,37785,9335,"[""Headphones"", ""Tablet""]",2991.28,"{""promo"": ""29%""}",253494,0,South America +2024-05-09,37786,9633,"[""Phone""]",2891.64,{},126937,0,Africa +2023-11-19,37787,8885,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",404.24,{},180343,0,Europe +2024-04-19,37788,6405,"[""Wireless Mouse"", ""Tablet""]",4397.05,"{"""": ""23%""}",56805,0,Africa +2023-01-07,37789,623,"[""Keyboard""]",2572.26,"{"""": ""13%""}",77000,1,Asia +2024-12-20,37790,4773,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",423.98,"{"""": ""13%""}",242127,0,South America +2024-08-20,37791,2567,"[""Tablet"", ""Laptop""]",3396.43,"{""seasonal"": ""14%""}",281417,1,Europe +2024-02-23,37792,1366,"[""Keyboard""]",1182.43,{},238976,1,Africa +2023-04-13,37793,3958,"[""Tablet"", ""Keyboard"", ""Phone""]",2871.85,"{""seasonal"": ""5%""}",244315,1,North America +2024-04-11,37794,4806,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1289.31,"{"""": ""12%""}",189082,0,Africa +2023-02-03,37795,5562,"[""Phone"", ""Keyboard"", ""Charger""]",621.95,"{""loyalty"": ""23%""}",52717,0,North America +2024-03-12,37796,3611,"[""Tablet"", ""Phone"", ""Keyboard""]",2530.08,{},2290,1,Asia +2023-04-12,37797,7945,"[""Headphones"", ""Tablet""]",3106.35,"{""seasonal"": ""16%""}",139981,0,South America +2023-03-05,37798,1757,"[""Laptop"", ""Monitor""]",4229.86,{},7191,1,Africa +2024-04-29,37799,7143,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2576.95,{},199557,0,Europe +2024-05-21,37800,633,"[""Wireless Mouse""]",386.57,"{"""": ""11%""}",52399,0,Africa +2024-12-18,37801,9117,"[""Tablet"", ""Phone""]",1046.93,{},217867,1,North America +2024-08-17,37802,1337,"[""Monitor""]",360.64,{},14900,0,Asia +2023-12-14,37803,5000,"[""Keyboard"", ""Monitor"", ""Headphones""]",1294.43,{},167064,0,Africa +2024-12-31,37804,417,"[""Tablet""]",4937.58,{},120891,1,Asia +2024-12-13,37805,9697,"[""Keyboard"", ""Wireless Mouse""]",838.72,{},125226,0,North America +2023-03-26,37806,642,"[""Wireless Mouse"", ""Headphones""]",410.95,"{""seasonal"": ""15%""}",132534,1,Europe +2023-09-23,37807,2930,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3675.22,"{""loyalty"": ""26%""}",130699,1,Asia +2023-12-10,37808,129,"[""Laptop"", ""Tablet""]",2384.17,{},232585,1,South America +2023-02-09,37809,6577,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4143.95,"{""promo"": ""19%""}",81885,1,North America +2023-11-12,37810,2722,"[""Wireless Mouse""]",867.43,{},40541,1,Asia +2024-07-17,37811,1081,"[""Headphones"", ""Phone""]",974.99,{},18562,1,Asia +2024-07-14,37812,612,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2810.17,"{""promo"": ""10%""}",181239,0,Europe +2024-02-18,37813,5052,"[""Phone""]",3967.38,{},173960,0,Asia +2024-10-06,37814,564,"[""Wireless Mouse"", ""Charger""]",2979.33,"{"""": ""13%""}",43979,0,Africa +2024-03-14,37815,7639,"[""Headphones""]",90.1,{},288896,0,Africa +2023-07-16,37816,5989,"[""Phone"", ""Laptop""]",2186.19,"{""loyalty"": ""29%""}",185021,1,North America +2024-09-08,37817,2900,"[""Keyboard""]",4282.35,"{""promo"": ""11%""}",163760,0,Asia +2023-06-17,37818,8888,"[""Tablet""]",3753.24,{},151156,1,North America +2024-12-27,37819,4076,"[""Phone""]",4632.09,{},81851,1,Africa +2024-06-24,37820,6391,"[""Charger""]",919.06,{},236651,1,South America +2024-09-01,37821,4864,"[""Headphones""]",3415.58,"{""promo"": ""29%""}",173701,1,North America +2024-12-26,37822,8560,"[""Laptop""]",2631.1,"{""promo"": ""11%""}",113731,0,South America +2024-02-11,37823,4570,"[""Laptop""]",1074.18,{},169553,1,Europe +2024-09-17,37824,9978,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2040.67,"{""promo"": ""14%""}",118298,1,South America +2024-11-06,37825,9395,"[""Phone""]",250.18,"{""loyalty"": ""16%""}",282145,1,North America +2023-11-10,37826,9098,"[""Headphones"", ""Keyboard""]",2047.53,"{""loyalty"": ""7%""}",249868,0,Asia +2024-09-21,37827,6599,"[""Wireless Mouse"", ""Monitor""]",4777.46,"{""promo"": ""23%""}",240893,1,Asia +2023-12-31,37828,2461,"[""Tablet"", ""Charger"", ""Laptop""]",3169.64,{},214950,0,South America +2024-12-02,37829,4713,"[""Headphones""]",4215.81,{},102962,0,South America +2024-06-20,37830,3585,"[""Laptop""]",99.48,{},46283,1,Europe +2023-12-09,37831,2013,"[""Charger"", ""Wireless Mouse""]",4066.22,"{"""": ""30%""}",35741,1,Europe +2023-03-07,37832,6808,"[""Monitor""]",4761.33,{},102315,0,Asia +2023-11-26,37833,6376,"[""Charger"", ""Headphones""]",3021.56,{},11952,0,North America +2024-06-02,37834,3791,"[""Charger"", ""Tablet""]",4299.62,{},96660,0,North America +2024-05-02,37835,8756,"[""Monitor"", ""Keyboard""]",1753.48,"{""promo"": ""16%""}",188999,1,North America +2023-08-29,37836,1293,"[""Headphones"", ""Phone"", ""Tablet""]",2188.74,{},20063,0,South America +2024-01-28,37837,3715,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3159.13,{},196711,1,North America +2023-04-24,37838,2639,"[""Laptop""]",4260.29,"{""promo"": ""8%""}",75808,0,North America +2024-05-04,37839,2008,"[""Charger""]",1971.82,{},130213,1,Asia +2024-05-27,37840,1001,"[""Charger"", ""Keyboard""]",1732.64,"{""loyalty"": ""6%""}",27379,0,Asia +2023-06-08,37841,4334,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3100.24,"{""promo"": ""22%""}",62952,0,Asia +2023-12-24,37842,9447,"[""Keyboard""]",3558.39,{},288787,1,South America +2023-03-16,37843,8433,"[""Keyboard"", ""Phone"", ""Laptop""]",3285.17,{},242347,0,Europe +2024-08-01,37844,1928,"[""Phone"", ""Tablet""]",1925.01,{},27898,0,North America +2023-04-15,37845,7233,"[""Tablet"", ""Wireless Mouse""]",1125.11,{},108380,1,Europe +2023-02-25,37846,1787,"[""Tablet"", ""Laptop"", ""Charger""]",4762.64,{},86294,1,Africa +2024-11-29,37847,1466,"[""Keyboard"", ""Charger"", ""Monitor""]",4332.0,"{""loyalty"": ""26%""}",174777,0,North America +2023-01-30,37848,6699,"[""Keyboard"", ""Headphones"", ""Phone""]",4246.95,"{""seasonal"": ""5%""}",251159,0,South America +2024-08-19,37849,5043,"[""Keyboard""]",1004.98,"{""loyalty"": ""7%""}",145739,0,Africa +2023-07-08,37850,5096,"[""Monitor""]",2979.51,{},209401,0,North America +2023-10-11,37851,4476,"[""Headphones"", ""Wireless Mouse""]",4462.23,{},81008,1,Asia +2024-05-05,37852,298,"[""Laptop""]",3605.64,"{""loyalty"": ""29%""}",199241,0,North America +2024-07-21,37853,2265,"[""Charger"", ""Keyboard""]",186.98,"{""seasonal"": ""25%""}",92189,1,North America +2024-07-15,37854,5245,"[""Laptop"", ""Charger"", ""Headphones""]",2960.08,{},180398,1,Africa +2023-02-15,37855,7439,"[""Keyboard"", ""Laptop""]",1194.43,{},141150,0,Africa +2024-06-30,37856,5326,"[""Headphones"", ""Tablet"", ""Monitor""]",189.64,"{""seasonal"": ""23%""}",111357,0,Africa +2024-07-27,37857,4727,"[""Tablet"", ""Monitor""]",3083.03,"{""promo"": ""11%""}",199923,0,Europe +2024-09-29,37858,8164,"[""Phone"", ""Tablet"", ""Headphones""]",2143.57,"{""seasonal"": ""24%""}",109326,1,Africa +2024-01-18,37859,1754,"[""Charger""]",2693.31,"{"""": ""12%""}",244463,1,Africa +2024-01-17,37860,4703,"[""Monitor"", ""Phone"", ""Tablet""]",3627.07,"{""seasonal"": ""6%""}",83361,1,North America +2023-11-27,37861,5511,"[""Tablet"", ""Wireless Mouse""]",3945.69,{},110857,0,North America +2023-09-27,37862,7281,"[""Tablet"", ""Keyboard""]",213.53,{},282395,0,Africa +2024-07-07,37863,1221,"[""Phone"", ""Keyboard"", ""Laptop""]",2528.0,"{""loyalty"": ""11%""}",171407,0,Europe +2023-11-17,37864,9948,"[""Monitor""]",3677.05,{},1539,0,North America +2024-07-17,37865,2700,"[""Monitor""]",4579.27,{},253288,0,South America +2023-02-04,37866,3368,"[""Charger"", ""Keyboard"", ""Tablet""]",2986.01,{},238527,0,Asia +2024-06-24,37867,1205,"[""Tablet"", ""Charger""]",4193.44,"{""loyalty"": ""15%""}",73693,0,South America +2024-05-06,37868,3016,"[""Monitor""]",1876.86,"{""promo"": ""26%""}",121647,1,North America +2024-03-20,37869,4312,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4877.59,"{"""": ""7%""}",164045,1,Asia +2024-04-19,37870,6913,"[""Laptop"", ""Keyboard""]",4103.5,{},215623,0,Asia +2023-04-03,37871,9036,"[""Charger""]",2367.96,"{""loyalty"": ""9%""}",21904,0,Asia +2023-02-08,37872,5989,"[""Tablet"", ""Charger"", ""Keyboard""]",2753.14,{},299589,1,Asia +2024-05-11,37873,6409,"[""Phone""]",2919.44,{},210806,0,South America +2023-03-27,37874,2034,"[""Keyboard""]",3888.24,"{""seasonal"": ""19%""}",149436,0,Africa +2023-09-17,37875,253,"[""Phone""]",2636.73,"{""seasonal"": ""16%""}",287581,0,North America +2023-02-20,37876,541,"[""Laptop""]",4760.81,{},247213,1,Asia +2024-04-25,37877,9909,"[""Keyboard"", ""Monitor"", ""Tablet""]",1001.29,{},167461,0,Africa +2024-03-26,37878,8950,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4442.98,"{""seasonal"": ""27%""}",144798,0,Europe +2024-02-10,37879,9085,"[""Headphones""]",875.73,{},299953,1,Asia +2023-06-05,37880,8337,"[""Laptop""]",3009.7,"{""promo"": ""17%""}",120286,0,Asia +2023-09-13,37881,5390,"[""Charger""]",636.16,"{""loyalty"": ""15%""}",298994,0,Asia +2023-03-05,37882,9044,"[""Wireless Mouse"", ""Tablet""]",796.98,"{"""": ""7%""}",139486,0,Europe +2023-01-18,37883,1499,"[""Headphones"", ""Monitor"", ""Keyboard""]",734.32,"{""loyalty"": ""17%""}",208384,0,North America +2024-06-07,37884,8017,"[""Wireless Mouse"", ""Charger""]",1926.2,"{""seasonal"": ""6%""}",54485,1,Europe +2023-12-15,37885,1327,"[""Phone""]",278.51,{},159772,0,North America +2023-01-08,37886,4647,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",89.55,"{""promo"": ""16%""}",298708,0,North America +2023-11-04,37887,4290,"[""Keyboard""]",1285.07,{},147702,1,North America +2024-08-13,37888,3756,"[""Keyboard""]",664.67,{},183169,0,Asia +2024-03-19,37889,2042,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3507.11,{},265790,1,North America +2023-06-21,37890,5984,"[""Charger""]",2906.82,"{""promo"": ""5%""}",141712,0,Asia +2023-10-26,37891,651,"[""Tablet"", ""Charger""]",2333.38,"{""loyalty"": ""6%""}",34228,0,Asia +2023-05-17,37892,4841,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4931.84,{},74731,1,South America +2024-10-30,37893,2801,"[""Keyboard""]",4105.13,"{""loyalty"": ""12%""}",219460,1,Africa +2024-12-13,37894,1839,"[""Charger"", ""Wireless Mouse""]",3954.85,"{""promo"": ""17%""}",220226,1,North America +2023-04-02,37895,1795,"[""Keyboard""]",176.68,{},179557,1,North America +2024-09-02,37896,4228,"[""Monitor"", ""Charger"", ""Phone""]",2800.61,"{""loyalty"": ""19%""}",60931,0,Asia +2023-08-24,37897,631,"[""Monitor"", ""Phone""]",674.08,"{"""": ""18%""}",155910,1,South America +2024-12-20,37898,6275,"[""Headphones""]",3131.82,"{""loyalty"": ""25%""}",15647,1,North America +2024-12-04,37899,3133,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3138.44,{},213263,1,South America +2024-04-03,37900,2021,"[""Headphones"", ""Monitor"", ""Phone""]",3656.58,"{""loyalty"": ""10%""}",108220,0,South America +2024-09-20,37901,3165,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4332.86,{},70051,0,South America +2023-10-16,37902,5486,"[""Wireless Mouse"", ""Tablet""]",2395.63,{},112727,1,North America +2023-01-20,37903,5726,"[""Tablet"", ""Headphones""]",1144.04,{},6321,1,North America +2024-01-20,37904,1141,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3740.36,{},22239,0,North America +2024-01-31,37905,2080,"[""Headphones""]",630.05,{},260532,1,Africa +2023-03-21,37906,9196,"[""Headphones""]",3500.45,"{""seasonal"": ""9%""}",281424,1,Europe +2024-05-05,37907,5984,"[""Monitor""]",3818.89,"{""promo"": ""29%""}",174079,1,Africa +2024-11-16,37908,930,"[""Headphones""]",2687.35,"{"""": ""9%""}",115624,1,North America +2024-01-11,37909,3721,"[""Keyboard"", ""Charger""]",4680.15,"{"""": ""21%""}",263941,1,North America +2024-04-19,37910,5332,"[""Laptop"", ""Headphones"", ""Monitor""]",1639.28,"{"""": ""22%""}",280326,1,North America +2023-01-29,37911,7627,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1995.67,"{""loyalty"": ""18%""}",51193,0,Asia +2024-11-07,37912,4331,"[""Charger"", ""Monitor"", ""Phone""]",2891.73,{},244751,0,Asia +2024-09-07,37913,1437,"[""Phone"", ""Monitor""]",218.38,{},256083,0,South America +2023-04-30,37914,8961,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",605.86,{},284038,1,South America +2023-09-18,37915,9850,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4821.98,{},121792,1,Asia +2024-12-24,37916,7403,"[""Keyboard"", ""Phone""]",3741.87,"{""seasonal"": ""9%""}",221045,0,Africa +2023-05-30,37917,871,"[""Tablet"", ""Headphones"", ""Charger""]",919.83,{},256853,1,Europe +2024-11-01,37918,5711,"[""Monitor"", ""Charger"", ""Laptop""]",1371.21,"{""seasonal"": ""9%""}",221679,1,Asia +2023-12-13,37919,3134,"[""Phone"", ""Tablet""]",229.22,{},154006,0,Asia +2024-09-21,37920,4477,"[""Charger"", ""Phone""]",2911.49,"{""promo"": ""29%""}",241196,0,South America +2024-04-01,37921,5567,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2258.01,"{""seasonal"": ""23%""}",143723,1,Asia +2024-03-18,37922,8108,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",912.82,"{""loyalty"": ""8%""}",291103,0,South America +2024-10-22,37923,4480,"[""Headphones"", ""Monitor"", ""Charger""]",4747.95,"{""loyalty"": ""22%""}",225303,1,North America +2024-04-17,37924,6259,"[""Monitor"", ""Phone"", ""Headphones""]",3253.52,"{""loyalty"": ""7%""}",257432,1,Europe +2024-03-03,37925,28,"[""Tablet"", ""Headphones""]",4702.23,"{""promo"": ""25%""}",15802,0,South America +2023-12-29,37926,1358,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2222.3,"{""promo"": ""5%""}",42849,1,North America +2024-06-02,37927,4852,"[""Wireless Mouse""]",3871.8,"{"""": ""24%""}",298822,0,Africa +2023-08-02,37928,9245,"[""Laptop""]",4049.18,{},292758,1,Europe +2024-07-14,37929,4038,"[""Charger"", ""Phone""]",3677.67,"{""promo"": ""12%""}",40133,1,Africa +2023-11-02,37930,9480,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3590.72,{},93057,0,South America +2024-09-15,37931,9659,"[""Laptop"", ""Phone""]",849.84,{},105521,0,Africa +2024-12-28,37932,7955,"[""Keyboard"", ""Monitor"", ""Tablet""]",4365.96,"{""promo"": ""11%""}",175263,0,North America +2024-10-14,37933,374,"[""Charger"", ""Laptop""]",4964.94,{},225403,1,Africa +2023-05-19,37934,7601,"[""Laptop"", ""Tablet"", ""Keyboard""]",1201.13,"{""seasonal"": ""8%""}",251352,1,South America +2023-08-16,37935,4064,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2654.86,{},124912,1,Asia +2023-06-08,37936,8320,"[""Charger"", ""Tablet""]",3793.57,"{"""": ""22%""}",56026,1,Africa +2024-02-10,37937,9133,"[""Tablet""]",548.99,{},255629,0,Africa +2024-02-11,37938,979,"[""Keyboard""]",1571.54,"{""loyalty"": ""18%""}",267613,0,Asia +2023-10-13,37939,194,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2683.83,{},72960,1,Europe +2023-12-02,37940,2124,"[""Charger"", ""Tablet"", ""Laptop""]",526.37,{},27207,0,North America +2023-08-03,37941,3959,"[""Charger"", ""Laptop""]",2699.92,"{""seasonal"": ""24%""}",138344,0,Asia +2024-12-23,37942,5163,"[""Phone"", ""Laptop""]",4409.89,"{""promo"": ""17%""}",138466,1,Asia +2024-09-17,37943,5866,"[""Phone""]",4212.76,{},263179,0,South America +2024-12-08,37944,2793,"[""Phone"", ""Charger""]",3228.06,{},167874,1,Europe +2023-01-25,37945,5733,"[""Wireless Mouse""]",1247.26,{},25778,1,Asia +2023-06-28,37946,1475,"[""Monitor""]",4390.94,{},57927,1,South America +2024-04-08,37947,770,"[""Headphones"", ""Keyboard""]",733.33,{},84642,0,Europe +2023-04-17,37948,9606,"[""Monitor"", ""Wireless Mouse""]",521.0,"{""loyalty"": ""28%""}",92130,1,North America +2024-05-14,37949,4797,"[""Laptop""]",1891.99,{},152048,0,Europe +2023-02-11,37950,6114,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1184.61,"{"""": ""16%""}",26675,1,Europe +2023-11-25,37951,7137,"[""Keyboard""]",704.64,"{"""": ""10%""}",75309,0,North America +2024-09-29,37952,5139,"[""Keyboard"", ""Monitor"", ""Headphones""]",553.86,"{"""": ""24%""}",65389,0,North America +2024-01-18,37953,9508,"[""Tablet""]",2662.81,{},68590,1,North America +2024-06-27,37954,9257,"[""Keyboard"", ""Laptop""]",3976.87,"{""promo"": ""14%""}",125519,0,Asia +2023-06-25,37955,7096,"[""Monitor""]",1805.93,{},274383,1,Asia +2023-09-05,37956,8514,"[""Headphones"", ""Laptop"", ""Keyboard""]",2326.28,{},268415,0,Africa +2023-10-21,37957,5427,"[""Keyboard"", ""Tablet""]",2809.78,{},77653,1,Asia +2023-04-19,37958,1817,"[""Charger"", ""Headphones""]",4954.2,{},146854,0,South America +2024-11-13,37959,8286,"[""Laptop"", ""Charger""]",1281.81,{},173364,1,Europe +2023-06-02,37960,8329,"[""Charger"", ""Laptop""]",3722.14,{},165726,1,Asia +2024-06-30,37961,7763,"[""Charger""]",1521.5,{},273166,1,Africa +2024-05-02,37962,6875,"[""Monitor"", ""Headphones""]",3365.51,{},204358,0,Asia +2023-03-12,37963,402,"[""Laptop"", ""Tablet"", ""Phone""]",998.52,{},53832,1,Asia +2024-10-08,37964,881,"[""Headphones"", ""Phone"", ""Laptop""]",4006.77,"{""promo"": ""22%""}",37863,1,Europe +2023-06-23,37965,3671,"[""Keyboard"", ""Tablet"", ""Charger""]",3296.12,{},2908,1,Africa +2024-11-01,37966,4170,"[""Headphones"", ""Tablet"", ""Monitor""]",464.16,"{""promo"": ""22%""}",298601,1,Europe +2023-12-06,37967,9736,"[""Wireless Mouse""]",1132.29,{},185437,0,South America +2024-02-26,37968,4035,"[""Tablet"", ""Keyboard"", ""Phone""]",1204.82,"{""loyalty"": ""22%""}",140580,1,Asia +2023-10-21,37969,4443,"[""Charger""]",2745.26,{},36373,0,Asia +2023-08-24,37970,4029,"[""Tablet""]",218.63,{},160838,0,North America +2023-04-15,37971,3887,"[""Laptop"", ""Charger""]",4723.46,{},96896,1,Europe +2024-09-06,37972,968,"[""Keyboard""]",2786.05,{},60942,0,Asia +2024-05-16,37973,9749,"[""Phone""]",2109.73,"{"""": ""6%""}",199711,1,North America +2024-04-18,37974,5442,"[""Wireless Mouse""]",2171.39,{},119440,1,South America +2023-07-25,37975,1803,"[""Headphones"", ""Charger"", ""Tablet""]",2724.21,"{"""": ""12%""}",155413,1,North America +2023-08-02,37976,3017,"[""Phone"", ""Charger"", ""Headphones""]",293.85,"{""promo"": ""19%""}",259673,1,South America +2023-06-13,37977,2462,"[""Charger""]",3023.99,{},109807,1,Africa +2024-09-09,37978,6365,"[""Tablet""]",2786.64,{},146567,0,North America +2024-10-18,37979,2503,"[""Laptop"", ""Wireless Mouse""]",3782.31,"{""seasonal"": ""5%""}",234931,0,Africa +2023-11-03,37980,3461,"[""Monitor"", ""Keyboard"", ""Laptop""]",4723.42,{},15503,0,South America +2024-09-25,37981,2784,"[""Keyboard"", ""Laptop""]",411.97,"{""promo"": ""21%""}",256800,1,South America +2024-01-07,37982,5319,"[""Tablet""]",4602.69,{},119184,0,South America +2023-10-17,37983,8672,"[""Laptop""]",568.0,"{"""": ""25%""}",115247,0,Europe +2024-10-20,37984,6659,"[""Wireless Mouse"", ""Phone""]",2539.27,"{""seasonal"": ""25%""}",96228,0,South America +2024-06-22,37985,4041,"[""Keyboard""]",120.63,"{""seasonal"": ""17%""}",81644,0,Europe +2024-06-30,37986,2842,"[""Monitor"", ""Charger""]",4914.0,{},278632,1,Europe +2024-07-31,37987,9730,"[""Wireless Mouse""]",1955.01,"{""seasonal"": ""29%""}",105716,1,Africa +2024-04-14,37988,7231,"[""Laptop"", ""Wireless Mouse""]",4199.48,"{""seasonal"": ""28%""}",46400,0,Africa +2023-05-02,37989,1851,"[""Tablet""]",2285.06,"{""promo"": ""16%""}",180272,0,South America +2024-12-02,37990,4592,"[""Laptop"", ""Phone""]",2630.92,"{""loyalty"": ""15%""}",95548,1,Asia +2023-03-11,37991,2264,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1793.5,"{"""": ""27%""}",264941,1,Africa +2023-09-14,37992,780,"[""Phone"", ""Monitor""]",301.93,"{"""": ""6%""}",134429,0,South America +2024-10-13,37993,6842,"[""Headphones"", ""Tablet""]",4906.14,"{""seasonal"": ""28%""}",248491,1,Europe +2023-12-31,37994,8827,"[""Keyboard""]",2865.16,{},228210,0,North America +2023-07-07,37995,2160,"[""Tablet"", ""Headphones""]",3657.36,"{""loyalty"": ""6%""}",22892,0,Africa +2023-09-13,37996,9959,"[""Monitor"", ""Laptop""]",4082.24,{},260694,0,Europe +2024-09-15,37997,6925,"[""Wireless Mouse"", ""Tablet""]",2476.33,"{""promo"": ""11%""}",205966,0,Europe +2024-02-28,37998,8421,"[""Tablet"", ""Keyboard""]",4514.78,{},126592,0,Africa +2024-11-08,37999,5014,"[""Keyboard""]",1767.46,{},285180,1,Asia +2024-02-01,38000,8970,"[""Charger""]",622.92,"{""promo"": ""13%""}",150429,0,South America +2023-02-17,38001,8780,"[""Charger""]",2807.76,"{""loyalty"": ""12%""}",99924,1,North America +2024-05-31,38002,4762,"[""Charger""]",4631.93,{},84104,1,North America +2024-09-06,38003,5817,"[""Laptop"", ""Wireless Mouse""]",2515.31,"{"""": ""19%""}",292452,1,South America +2024-06-30,38004,3,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3066.94,{},30066,0,Asia +2024-12-12,38005,205,"[""Keyboard""]",2851.09,{},286781,1,North America +2024-03-03,38006,7925,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",434.23,{},122408,0,South America +2024-06-05,38007,9557,"[""Monitor"", ""Headphones""]",838.94,"{""loyalty"": ""8%""}",229668,1,Europe +2023-07-20,38008,3212,"[""Tablet""]",1320.49,"{""seasonal"": ""20%""}",223878,1,Asia +2024-08-31,38009,964,"[""Charger"", ""Laptop"", ""Phone""]",424.65,"{""loyalty"": ""18%""}",113507,1,Asia +2023-07-01,38010,859,"[""Keyboard"", ""Phone"", ""Tablet""]",1197.88,"{""loyalty"": ""22%""}",228891,0,South America +2024-09-23,38011,8290,"[""Monitor"", ""Headphones"", ""Laptop""]",799.91,"{""loyalty"": ""9%""}",231394,0,Africa +2023-12-24,38012,3652,"[""Headphones"", ""Laptop"", ""Monitor""]",243.43,{},123689,1,Africa +2023-07-07,38013,2473,"[""Monitor"", ""Laptop"", ""Headphones""]",1334.43,{},39943,1,Africa +2023-03-23,38014,1344,"[""Phone"", ""Monitor""]",4189.32,"{""loyalty"": ""6%""}",272195,0,Europe +2023-11-12,38015,9650,"[""Laptop"", ""Keyboard"", ""Charger""]",2675.79,"{""seasonal"": ""24%""}",239575,1,Africa +2024-05-16,38016,3694,"[""Keyboard"", ""Wireless Mouse""]",3422.98,"{""loyalty"": ""20%""}",64311,1,Asia +2024-12-23,38017,86,"[""Keyboard"", ""Phone"", ""Laptop""]",4145.34,"{"""": ""13%""}",276821,1,Europe +2024-01-03,38018,3177,"[""Wireless Mouse"", ""Laptop""]",540.03,"{""loyalty"": ""19%""}",180796,1,Europe +2024-12-31,38019,1192,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",602.19,"{""seasonal"": ""15%""}",104956,0,Africa +2023-04-04,38020,6708,"[""Charger"", ""Tablet"", ""Keyboard""]",3418.34,"{""loyalty"": ""5%""}",61681,0,Asia +2023-01-10,38021,7498,"[""Wireless Mouse""]",2450.59,{},94159,1,South America +2023-11-18,38022,2086,"[""Phone""]",2332.24,{},245486,0,Europe +2024-04-09,38023,743,"[""Charger"", ""Laptop""]",1750.59,{},114087,0,South America +2023-03-26,38024,7336,"[""Headphones""]",1056.29,"{""seasonal"": ""13%""}",278750,1,Asia +2024-09-10,38025,616,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2500.95,"{""promo"": ""29%""}",253944,1,Asia +2024-07-10,38026,7746,"[""Laptop"", ""Phone"", ""Charger""]",4125.64,{},115214,1,Africa +2023-04-02,38027,6194,"[""Monitor""]",4646.52,"{"""": ""5%""}",14209,0,Europe +2023-12-17,38028,2757,"[""Wireless Mouse""]",1623.56,{},192884,0,Asia +2024-03-29,38029,3102,"[""Headphones"", ""Charger""]",2576.23,{},208030,0,Africa +2024-06-24,38030,9174,"[""Charger""]",2532.66,{},191938,0,Europe +2024-02-25,38031,8251,"[""Phone"", ""Charger""]",283.39,{},23685,1,Asia +2023-10-07,38032,6669,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1132.62,"{""seasonal"": ""23%""}",115482,1,South America +2023-10-10,38033,8413,"[""Headphones""]",1333.19,"{""loyalty"": ""20%""}",107508,0,North America +2023-09-24,38034,9172,"[""Charger"", ""Laptop"", ""Headphones""]",232.4,{},246788,1,Africa +2024-02-28,38035,3113,"[""Wireless Mouse""]",3287.27,{},83039,0,North America +2024-04-17,38036,2978,"[""Phone"", ""Laptop""]",505.75,{},282078,1,North America +2024-03-13,38037,9401,"[""Charger""]",3084.86,"{""seasonal"": ""13%""}",134574,1,Africa +2023-05-05,38038,7700,"[""Keyboard""]",2968.35,{},71900,0,North America +2024-11-22,38039,1617,"[""Phone"", ""Headphones"", ""Charger""]",407.5,{},42781,1,South America +2024-03-20,38040,3622,"[""Charger""]",4050.8,{},82929,1,Africa +2024-08-02,38041,3690,"[""Headphones"", ""Keyboard"", ""Monitor""]",1435.22,{},226177,1,Europe +2024-06-02,38042,1093,"[""Tablet""]",3767.6,{},121688,1,Africa +2024-03-28,38043,4719,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",610.64,"{"""": ""20%""}",15136,0,Europe +2023-10-12,38044,9525,"[""Phone""]",3836.41,{},6816,0,Europe +2024-09-21,38045,3370,"[""Headphones"", ""Laptop""]",3265.51,{},244509,1,Africa +2023-02-05,38046,1826,"[""Laptop""]",895.43,"{""promo"": ""14%""}",108660,1,South America +2024-07-14,38047,6848,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",106.06,"{"""": ""30%""}",29030,0,Asia +2024-09-27,38048,346,"[""Keyboard""]",4067.93,"{""loyalty"": ""21%""}",272282,1,Africa +2024-04-08,38049,1232,"[""Phone""]",2427.06,{},134524,0,South America +2023-07-20,38050,1405,"[""Laptop""]",4193.57,"{"""": ""24%""}",176327,1,North America +2024-11-15,38051,6373,"[""Headphones""]",1146.82,"{""loyalty"": ""23%""}",150297,1,Asia +2023-12-26,38052,9462,"[""Laptop"", ""Headphones""]",935.52,"{""loyalty"": ""14%""}",207229,1,Asia +2023-08-07,38053,8102,"[""Charger""]",223.4,{},29317,0,Africa +2023-08-27,38054,9715,"[""Monitor""]",1698.18,"{"""": ""28%""}",211520,1,Europe +2023-11-08,38055,4837,"[""Laptop"", ""Charger""]",233.47,{},260084,0,Asia +2024-02-22,38056,6898,"[""Tablet"", ""Monitor""]",4892.42,{},17199,1,North America +2023-03-02,38057,3881,"[""Tablet""]",603.29,"{""loyalty"": ""12%""}",133463,0,South America +2024-08-28,38058,8117,"[""Keyboard"", ""Laptop""]",635.08,{},138933,1,South America +2023-07-31,38059,9860,"[""Monitor"", ""Charger""]",2758.0,"{""seasonal"": ""19%""}",194980,0,Asia +2024-02-05,38060,7877,"[""Phone"", ""Tablet"", ""Charger""]",1232.47,"{""seasonal"": ""9%""}",35986,1,Europe +2024-05-29,38061,8217,"[""Headphones""]",3716.59,{},239314,0,Europe +2023-03-20,38062,6237,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3278.42,{},273050,0,Asia +2023-02-10,38063,9280,"[""Headphones""]",2072.22,{},32381,1,South America +2024-01-13,38064,8787,"[""Charger"", ""Phone""]",1432.07,"{""promo"": ""13%""}",84333,1,Africa +2024-11-30,38065,6106,"[""Wireless Mouse""]",4030.42,{},258034,0,South America +2023-09-16,38066,2177,"[""Tablet""]",191.36,{},265641,1,North America +2023-02-24,38067,4249,"[""Charger"", ""Tablet"", ""Phone""]",729.06,"{""promo"": ""23%""}",32470,1,North America +2024-05-07,38068,1473,"[""Tablet""]",1588.35,"{"""": ""22%""}",109674,1,North America +2023-12-23,38069,1224,"[""Laptop"", ""Keyboard""]",314.46,"{""loyalty"": ""16%""}",186460,0,Europe +2023-07-27,38070,6839,"[""Tablet"", ""Phone""]",3329.78,"{""loyalty"": ""16%""}",4835,0,Europe +2024-09-30,38071,3044,"[""Headphones""]",1547.22,{},95785,0,North America +2024-11-11,38072,842,"[""Headphones"", ""Charger"", ""Phone""]",3226.26,"{"""": ""5%""}",165180,0,Europe +2024-08-01,38073,207,"[""Laptop""]",4097.85,{},210360,0,Africa +2024-10-16,38074,3828,"[""Keyboard"", ""Phone"", ""Headphones""]",1136.33,"{""seasonal"": ""5%""}",270591,1,South America +2024-12-09,38075,4029,"[""Charger"", ""Monitor"", ""Headphones""]",2735.53,{},224803,1,Europe +2024-10-12,38076,7546,"[""Keyboard""]",877.41,"{""loyalty"": ""28%""}",182218,0,Europe +2024-11-04,38077,8408,"[""Charger"", ""Keyboard"", ""Phone""]",4119.26,"{""loyalty"": ""26%""}",10469,0,Asia +2023-12-30,38078,9011,"[""Tablet"", ""Headphones""]",2311.12,"{""promo"": ""22%""}",218745,1,Africa +2024-05-31,38079,4329,"[""Charger"", ""Wireless Mouse""]",493.62,"{""seasonal"": ""26%""}",61763,0,Asia +2023-06-14,38080,8032,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1685.31,"{""seasonal"": ""26%""}",225192,0,Asia +2024-01-28,38081,8606,"[""Laptop""]",1484.32,"{""seasonal"": ""14%""}",262412,1,Europe +2024-03-12,38082,1353,"[""Wireless Mouse""]",1855.56,"{"""": ""26%""}",127268,1,Asia +2024-08-28,38083,3113,"[""Headphones"", ""Wireless Mouse""]",2953.99,{},265426,1,Africa +2024-08-02,38084,4795,"[""Headphones"", ""Laptop""]",4270.52,{},182951,0,Africa +2023-10-07,38085,4317,"[""Phone""]",1792.79,"{""loyalty"": ""12%""}",258203,1,Europe +2023-03-21,38086,5274,"[""Phone"", ""Monitor""]",3675.46,"{"""": ""26%""}",238199,0,North America +2023-03-13,38087,8663,"[""Headphones"", ""Tablet""]",3859.69,"{""seasonal"": ""24%""}",129619,1,Europe +2023-04-24,38088,9958,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3779.33,{},253050,0,Asia +2024-11-09,38089,5193,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",850.35,{},87672,0,North America +2024-05-01,38090,2967,"[""Laptop""]",3782.93,"{""loyalty"": ""23%""}",3604,1,Africa +2023-08-21,38091,2868,"[""Keyboard""]",3511.73,"{""seasonal"": ""6%""}",56588,0,Asia +2024-09-08,38092,7120,"[""Headphones""]",2777.03,"{"""": ""28%""}",50047,1,South America +2024-05-11,38093,6552,"[""Charger""]",1298.62,{},165501,0,South America +2024-11-25,38094,3087,"[""Laptop""]",1626.51,"{""seasonal"": ""14%""}",196007,0,Europe +2023-03-02,38095,5501,"[""Phone""]",102.32,{},73042,0,Asia +2024-11-26,38096,4622,"[""Wireless Mouse"", ""Phone""]",1937.05,"{""promo"": ""15%""}",104476,0,South America +2024-04-12,38097,5617,"[""Headphones"", ""Monitor"", ""Charger""]",861.85,"{"""": ""19%""}",211165,1,South America +2023-12-06,38098,3032,"[""Charger""]",3836.8,{},203026,1,Africa +2023-02-09,38099,1785,"[""Monitor"", ""Keyboard"", ""Phone""]",877.12,{},205991,0,South America +2024-08-12,38100,423,"[""Tablet""]",2318.19,{},47051,0,Africa +2023-07-12,38101,9826,"[""Monitor"", ""Keyboard""]",937.84,"{"""": ""28%""}",144437,1,North America +2024-06-15,38102,9039,"[""Phone""]",419.72,{},227230,1,South America +2023-04-16,38103,987,"[""Charger""]",3980.96,"{""promo"": ""23%""}",95603,0,Africa +2024-06-26,38104,5429,"[""Charger"", ""Keyboard"", ""Tablet""]",4367.8,{},119235,0,Europe +2024-02-07,38105,6264,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4081.02,"{""promo"": ""8%""}",135187,0,North America +2023-01-22,38106,159,"[""Wireless Mouse""]",168.61,"{"""": ""8%""}",107151,1,North America +2024-09-23,38107,5517,"[""Charger"", ""Laptop""]",2021.79,"{""seasonal"": ""14%""}",15352,0,North America +2024-08-19,38108,2888,"[""Monitor"", ""Phone"", ""Headphones""]",2528.19,{},266452,1,Europe +2024-03-08,38109,7538,"[""Headphones""]",3235.25,{},86307,0,Asia +2024-03-30,38110,5017,"[""Phone""]",53.96,{},111043,1,South America +2024-10-14,38111,7397,"[""Laptop"", ""Tablet""]",3225.07,"{""promo"": ""12%""}",183524,0,South America +2023-06-05,38112,6356,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2040.61,"{""seasonal"": ""5%""}",34804,1,Africa +2023-11-12,38113,121,"[""Charger""]",1447.58,"{""promo"": ""20%""}",155645,0,South America +2024-09-18,38114,120,"[""Headphones""]",2979.65,{},63272,0,North America +2023-06-20,38115,9288,"[""Keyboard"", ""Headphones""]",827.29,{},65688,0,Europe +2023-04-29,38116,552,"[""Phone"", ""Keyboard""]",3179.43,"{""loyalty"": ""29%""}",257076,1,North America +2024-10-18,38117,7235,"[""Monitor"", ""Headphones""]",3580.46,"{"""": ""23%""}",69110,1,Asia +2023-06-01,38118,8083,"[""Phone""]",3180.08,{},105087,1,South America +2024-11-23,38119,4307,"[""Tablet"", ""Monitor""]",2969.6,"{""promo"": ""22%""}",46572,1,North America +2023-05-03,38120,1931,"[""Monitor""]",738.54,"{""loyalty"": ""29%""}",168458,0,Asia +2023-09-15,38121,7823,"[""Tablet"", ""Laptop""]",717.46,{},29257,1,Europe +2023-02-06,38122,3314,"[""Tablet""]",4811.97,{},2807,1,North America +2024-12-01,38123,3279,"[""Charger""]",1182.56,{},147604,0,Asia +2023-03-23,38124,1279,"[""Tablet"", ""Wireless Mouse""]",116.01,{},234403,1,Asia +2024-12-04,38125,3142,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",160.86,"{""seasonal"": ""26%""}",227913,1,Africa +2023-08-15,38126,8113,"[""Wireless Mouse"", ""Charger""]",2431.12,"{""seasonal"": ""16%""}",137647,0,North America +2023-02-08,38127,7952,"[""Headphones""]",2023.43,{},212345,1,North America +2023-08-05,38128,3498,"[""Tablet""]",4548.42,"{""promo"": ""5%""}",34222,1,Africa +2024-11-10,38129,9509,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3961.51,{},13997,0,North America +2023-09-28,38130,6866,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3380.54,"{""promo"": ""22%""}",170330,0,South America +2024-01-08,38131,2169,"[""Wireless Mouse""]",3195.82,{},283321,1,Europe +2023-03-25,38132,8071,"[""Tablet"", ""Monitor"", ""Laptop""]",554.56,{},4014,1,North America +2024-05-05,38133,5968,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3396.4,{},32058,0,Europe +2024-08-09,38134,5404,"[""Keyboard""]",1350.47,"{""promo"": ""15%""}",234346,0,North America +2023-12-19,38135,8185,"[""Monitor"", ""Headphones""]",764.48,"{""loyalty"": ""17%""}",98728,1,Africa +2023-11-29,38136,3443,"[""Phone"", ""Tablet"", ""Laptop""]",3169.72,{},193993,1,Europe +2024-02-13,38137,1554,"[""Keyboard""]",2774.01,"{"""": ""25%""}",241590,1,North America +2023-11-16,38138,3773,"[""Monitor""]",2321.31,"{""seasonal"": ""29%""}",238026,1,North America +2023-02-28,38139,5864,"[""Tablet"", ""Phone""]",4338.18,"{""loyalty"": ""16%""}",250721,1,Africa +2023-11-12,38140,7998,"[""Monitor"", ""Charger"", ""Phone""]",3712.34,{},127032,1,Asia +2024-04-02,38141,4581,"[""Tablet"", ""Monitor"", ""Charger""]",2194.2,"{"""": ""21%""}",11276,1,North America +2024-10-05,38142,260,"[""Tablet"", ""Keyboard""]",4099.05,{},83921,1,Africa +2024-10-16,38143,2987,"[""Laptop"", ""Wireless Mouse""]",2180.61,"{""loyalty"": ""17%""}",49592,1,North America +2024-04-18,38144,7784,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4525.38,"{""seasonal"": ""21%""}",228524,0,Asia +2024-04-26,38145,4130,"[""Tablet"", ""Phone"", ""Monitor""]",1106.37,"{""loyalty"": ""12%""}",228661,1,Asia +2023-09-23,38146,4466,"[""Headphones"", ""Wireless Mouse""]",850.66,"{""seasonal"": ""18%""}",14312,0,South America +2023-09-23,38147,7366,"[""Tablet"", ""Phone"", ""Monitor""]",211.61,{},207687,0,Africa +2024-08-01,38148,4086,"[""Monitor""]",3858.15,{},88764,0,Europe +2024-09-27,38149,6864,"[""Phone"", ""Headphones""]",2793.96,"{""promo"": ""9%""}",85460,0,Africa +2023-03-16,38150,4338,"[""Headphones"", ""Phone"", ""Charger""]",1170.11,"{"""": ""16%""}",38048,0,North America +2024-03-07,38151,1633,"[""Keyboard""]",2968.17,"{"""": ""7%""}",278019,0,South America +2024-08-16,38152,2483,"[""Laptop"", ""Monitor""]",215.7,{},140627,0,South America +2023-08-19,38153,9423,"[""Wireless Mouse"", ""Tablet""]",729.58,"{""loyalty"": ""6%""}",251949,0,South America +2024-03-26,38154,2360,"[""Headphones"", ""Charger""]",818.29,{},60454,1,North America +2023-03-11,38155,8062,"[""Keyboard"", ""Phone""]",231.81,"{""promo"": ""7%""}",81540,1,Europe +2023-04-16,38156,3611,"[""Keyboard""]",4716.38,"{""promo"": ""8%""}",23488,0,South America +2023-06-03,38157,701,"[""Charger""]",233.52,"{""loyalty"": ""7%""}",292657,1,Asia +2024-06-19,38158,6763,"[""Laptop"", ""Keyboard"", ""Headphones""]",1560.58,"{""promo"": ""21%""}",75711,1,Europe +2023-08-23,38159,3919,"[""Phone"", ""Laptop""]",3622.13,{},190437,0,South America +2023-06-02,38160,3306,"[""Monitor"", ""Tablet"", ""Headphones""]",1122.14,{},119820,1,Europe +2023-12-23,38161,982,"[""Phone"", ""Charger""]",674.08,{},93928,0,South America +2024-08-26,38162,4114,"[""Headphones""]",2895.49,{},241233,0,South America +2024-07-11,38163,1676,"[""Phone"", ""Monitor"", ""Tablet""]",4440.02,{},219947,0,North America +2024-01-25,38164,993,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4385.13,{},76075,1,Asia +2024-10-16,38165,7635,"[""Charger"", ""Wireless Mouse""]",2361.87,{},180079,1,North America +2023-09-02,38166,5356,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3055.14,{},134227,0,Europe +2023-10-01,38167,7844,"[""Charger"", ""Tablet"", ""Phone""]",2448.46,"{""promo"": ""21%""}",96027,0,Asia +2023-01-04,38168,9020,"[""Headphones"", ""Laptop"", ""Tablet""]",2420.51,{},133935,1,North America +2024-08-11,38169,8250,"[""Wireless Mouse""]",3554.29,{},168366,1,North America +2023-08-01,38170,6121,"[""Charger"", ""Tablet""]",2263.7,{},290772,0,Asia +2024-12-09,38171,7150,"[""Tablet"", ""Keyboard""]",2708.21,"{""seasonal"": ""12%""}",83539,0,Europe +2024-06-26,38172,1508,"[""Headphones"", ""Charger""]",2756.32,"{""loyalty"": ""15%""}",160923,1,South America +2023-08-30,38173,4726,"[""Tablet"", ""Laptop"", ""Phone""]",3567.82,"{""promo"": ""18%""}",23938,1,Europe +2023-10-13,38174,1224,"[""Tablet""]",2268.12,{},49617,0,South America +2023-11-08,38175,4067,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",371.57,{},112731,0,North America +2024-02-05,38176,9274,"[""Laptop""]",2650.01,{},74225,0,Africa +2023-04-08,38177,7049,"[""Phone"", ""Headphones"", ""Charger""]",1718.38,"{""seasonal"": ""15%""}",112617,0,Asia +2023-03-07,38178,7004,"[""Charger"", ""Monitor""]",2348.4,"{"""": ""26%""}",9036,0,Asia +2023-07-28,38179,1032,"[""Monitor"", ""Keyboard"", ""Phone""]",4469.87,{},254748,1,Asia +2024-05-23,38180,7079,"[""Monitor"", ""Wireless Mouse""]",4489.84,{},116095,1,South America +2024-09-21,38181,166,"[""Laptop""]",3719.77,"{""loyalty"": ""30%""}",4907,0,Europe +2023-06-04,38182,1099,"[""Keyboard"", ""Charger"", ""Monitor""]",3295.35,"{""promo"": ""19%""}",147934,1,Asia +2024-12-04,38183,8968,"[""Laptop""]",2082.1,{},295368,1,South America +2024-01-31,38184,8748,"[""Charger"", ""Phone"", ""Monitor""]",1894.38,{},50012,0,South America +2024-02-08,38185,9388,"[""Charger""]",4109.38,{},235319,1,Africa +2024-05-17,38186,287,"[""Charger""]",416.75,"{"""": ""5%""}",132231,1,Europe +2024-09-16,38187,2363,"[""Tablet""]",4443.79,{},284142,0,Europe +2023-04-28,38188,1580,"[""Wireless Mouse""]",1126.46,"{""seasonal"": ""7%""}",245632,1,Africa +2024-06-05,38189,2339,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3341.79,{},207181,0,South America +2023-10-01,38190,8967,"[""Charger"", ""Phone"", ""Headphones""]",2131.39,"{""loyalty"": ""21%""}",38000,0,North America +2024-09-10,38191,7521,"[""Monitor"", ""Charger""]",4360.89,"{"""": ""18%""}",148297,0,Asia +2023-08-05,38192,9379,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3049.62,"{""loyalty"": ""19%""}",205685,1,Africa +2023-07-20,38193,1657,"[""Keyboard""]",4274.52,"{""seasonal"": ""11%""}",168400,0,South America +2023-06-24,38194,4346,"[""Tablet"", ""Wireless Mouse""]",4760.05,{},2006,1,Africa +2024-06-30,38195,3647,"[""Keyboard"", ""Laptop""]",3881.65,"{""promo"": ""10%""}",174467,0,Africa +2023-03-28,38196,6855,"[""Tablet""]",4945.58,{},187124,0,Africa +2023-10-12,38197,2541,"[""Wireless Mouse""]",1759.3,{},13536,0,Europe +2023-02-28,38198,9611,"[""Laptop"", ""Headphones""]",690.07,{},292536,0,Europe +2024-05-29,38199,3996,"[""Monitor""]",1508.83,{},256907,0,North America +2023-01-06,38200,8717,"[""Wireless Mouse""]",210.8,{},217685,1,Europe +2023-10-15,38201,718,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3826.07,"{""loyalty"": ""12%""}",31476,1,Asia +2024-03-27,38202,7833,"[""Keyboard"", ""Tablet""]",655.87,"{""loyalty"": ""28%""}",169882,1,Africa +2024-03-16,38203,2889,"[""Phone"", ""Monitor""]",1871.73,{},127659,1,Africa +2023-03-30,38204,5852,"[""Wireless Mouse""]",2669.62,"{""promo"": ""10%""}",199570,1,Europe +2023-07-22,38205,7024,"[""Phone"", ""Headphones""]",1897.33,"{""loyalty"": ""27%""}",284460,1,North America +2024-03-12,38206,6192,"[""Charger"", ""Monitor"", ""Laptop""]",4168.59,"{"""": ""8%""}",293933,0,North America +2023-08-27,38207,1087,"[""Wireless Mouse"", ""Laptop""]",2485.95,{},263722,0,North America +2024-01-05,38208,1542,"[""Monitor""]",390.28,{},76285,1,Africa +2024-08-25,38209,1761,"[""Monitor"", ""Tablet"", ""Keyboard""]",106.95,{},70998,0,North America +2024-05-15,38210,2168,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4405.42,{},261966,0,Asia +2023-04-20,38211,3901,"[""Headphones""]",3141.14,{},16030,0,Europe +2023-08-12,38212,7610,"[""Headphones"", ""Keyboard""]",4278.37,{},296945,1,South America +2024-02-11,38213,1026,"[""Wireless Mouse""]",1895.65,"{""promo"": ""8%""}",244480,1,Europe +2023-05-15,38214,8752,"[""Phone"", ""Tablet"", ""Keyboard""]",4104.99,"{""promo"": ""19%""}",248028,0,Africa +2023-06-03,38215,1357,"[""Monitor"", ""Charger"", ""Tablet""]",4712.14,"{""seasonal"": ""6%""}",277161,1,Europe +2023-02-05,38216,2428,"[""Headphones""]",1078.59,"{""promo"": ""29%""}",25879,0,Africa +2024-02-02,38217,7901,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2160.68,"{""promo"": ""18%""}",9206,0,North America +2024-07-30,38218,2481,"[""Headphones""]",3146.4,"{""seasonal"": ""25%""}",209184,0,North America +2023-07-11,38219,5149,"[""Keyboard"", ""Laptop""]",1212.33,{},133361,1,North America +2024-06-15,38220,6250,"[""Monitor"", ""Tablet"", ""Laptop""]",1907.96,"{""promo"": ""8%""}",100035,0,Africa +2024-10-31,38221,1483,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3632.64,{},99015,0,North America +2023-06-14,38222,7670,"[""Phone"", ""Laptop""]",4519.02,{},155644,0,Africa +2024-12-28,38223,6049,"[""Wireless Mouse"", ""Headphones""]",4659.09,{},158496,1,Asia +2023-01-18,38224,6049,"[""Wireless Mouse""]",2478.76,"{""seasonal"": ""10%""}",116957,1,South America +2023-02-24,38225,2389,"[""Tablet""]",900.42,{},143438,1,Asia +2023-11-09,38226,8703,"[""Keyboard"", ""Tablet"", ""Headphones""]",2287.27,"{""loyalty"": ""25%""}",17453,0,Africa +2023-08-15,38227,6908,"[""Monitor""]",667.27,"{"""": ""9%""}",191447,0,North America +2024-07-04,38228,4987,"[""Keyboard"", ""Tablet""]",2501.87,{},126385,1,North America +2024-02-19,38229,8785,"[""Monitor"", ""Laptop""]",1969.12,{},29576,0,Europe +2024-11-17,38230,4213,"[""Phone"", ""Tablet"", ""Keyboard""]",1499.33,"{""seasonal"": ""30%""}",158845,1,Europe +2023-02-09,38231,275,"[""Headphones"", ""Wireless Mouse""]",209.89,{},274833,0,South America +2023-07-09,38232,9296,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2340.8,"{""loyalty"": ""14%""}",6892,0,Europe +2023-07-25,38233,2962,"[""Tablet""]",4254.35,{},114888,1,North America +2023-03-16,38234,1076,"[""Headphones"", ""Laptop"", ""Keyboard""]",327.66,{},236418,0,South America +2024-10-28,38235,4239,"[""Monitor"", ""Laptop""]",1449.26,"{""promo"": ""7%""}",174700,0,North America +2024-08-25,38236,7365,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",981.13,{},215526,0,Africa +2024-12-09,38237,7852,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2846.38,"{"""": ""28%""}",273381,0,North America +2024-09-16,38238,4149,"[""Keyboard"", ""Tablet"", ""Monitor""]",2093.54,{},253676,1,North America +2024-06-19,38239,508,"[""Tablet"", ""Wireless Mouse""]",1006.92,"{""loyalty"": ""7%""}",164628,0,North America +2023-05-05,38240,8895,"[""Tablet""]",3621.84,"{""seasonal"": ""15%""}",149553,1,North America +2023-04-17,38241,2685,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3454.99,{},106779,1,Africa +2023-09-19,38242,7853,"[""Headphones"", ""Wireless Mouse""]",4886.73,{},282902,1,North America +2023-04-15,38243,4369,"[""Monitor"", ""Keyboard""]",2777.91,"{""seasonal"": ""8%""}",291970,0,Asia +2023-04-30,38244,8157,"[""Tablet"", ""Phone""]",3365.09,"{"""": ""11%""}",18618,1,Africa +2023-02-13,38245,2576,"[""Tablet""]",1578.8,{},154492,1,North America +2024-05-13,38246,3914,"[""Tablet"", ""Monitor""]",2242.07,{},19861,0,Europe +2023-11-23,38247,3031,"[""Tablet"", ""Laptop""]",3642.39,{},98408,0,North America +2023-11-08,38248,7500,"[""Tablet""]",4410.85,"{""promo"": ""25%""}",30328,1,Africa +2024-04-07,38249,3483,"[""Charger"", ""Tablet"", ""Monitor""]",1217.36,{},26133,0,Africa +2023-12-19,38250,9062,"[""Monitor""]",4149.86,{},189086,0,North America +2024-06-28,38251,621,"[""Wireless Mouse"", ""Laptop""]",2448.0,{},297722,1,Africa +2023-06-10,38252,6136,"[""Laptop"", ""Charger"", ""Monitor""]",659.4,"{"""": ""28%""}",50929,1,North America +2024-02-19,38253,9472,"[""Monitor"", ""Wireless Mouse""]",4980.65,{},87461,0,South America +2023-03-31,38254,8348,"[""Laptop""]",2809.88,"{""loyalty"": ""14%""}",241661,1,North America +2023-06-14,38255,4972,"[""Phone""]",170.83,"{""seasonal"": ""17%""}",42893,0,South America +2024-10-22,38256,3891,"[""Laptop"", ""Keyboard""]",3873.27,"{""loyalty"": ""7%""}",252657,0,North America +2024-05-23,38257,231,"[""Charger"", ""Tablet"", ""Laptop""]",710.44,"{""loyalty"": ""18%""}",102206,1,North America +2024-03-27,38258,1789,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3222.33,"{"""": ""21%""}",200748,0,Africa +2023-04-27,38259,9524,"[""Laptop"", ""Phone"", ""Headphones""]",3826.9,"{"""": ""19%""}",23376,1,Asia +2024-07-10,38260,5991,"[""Keyboard""]",2149.33,"{""seasonal"": ""5%""}",81459,1,Africa +2024-01-06,38261,2284,"[""Monitor"", ""Tablet"", ""Keyboard""]",2586.27,"{""loyalty"": ""14%""}",108812,0,Asia +2024-05-02,38262,9417,"[""Tablet"", ""Phone""]",1470.48,"{""promo"": ""22%""}",57378,1,North America +2023-02-13,38263,1124,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",330.45,{},248067,0,Asia +2024-07-29,38264,2967,"[""Headphones""]",3720.98,"{""promo"": ""23%""}",294848,1,North America +2023-09-28,38265,9602,"[""Monitor"", ""Keyboard""]",2070.26,"{""loyalty"": ""16%""}",266516,0,Africa +2023-07-19,38266,7395,"[""Tablet"", ""Headphones""]",141.42,{},257617,1,Africa +2024-12-04,38267,1635,"[""Headphones""]",2578.33,"{""loyalty"": ""7%""}",177511,1,South America +2024-02-28,38268,3700,"[""Phone"", ""Keyboard"", ""Tablet""]",3266.24,"{"""": ""8%""}",260143,1,South America +2023-02-21,38269,1997,"[""Wireless Mouse""]",2571.28,{},73348,0,Europe +2024-11-12,38270,2323,"[""Laptop""]",263.45,{},164182,1,Africa +2023-01-28,38271,6215,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1217.82,{},82798,1,Asia +2024-04-30,38272,2279,"[""Tablet"", ""Laptop"", ""Monitor""]",2827.9,"{""loyalty"": ""7%""}",121013,0,North America +2024-04-04,38273,7692,"[""Charger"", ""Laptop"", ""Headphones""]",985.58,"{"""": ""21%""}",133905,0,Africa +2024-04-29,38274,6271,"[""Wireless Mouse""]",4952.0,{},32782,1,Africa +2024-12-24,38275,1479,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3449.99,{},6028,1,Asia +2024-03-14,38276,9890,"[""Wireless Mouse"", ""Monitor""]",438.32,"{""loyalty"": ""6%""}",263944,0,North America +2024-06-06,38277,1913,"[""Tablet"", ""Headphones"", ""Keyboard""]",4563.08,{},250195,0,North America +2024-03-25,38278,8558,"[""Keyboard""]",4752.42,"{""seasonal"": ""28%""}",55755,1,North America +2023-07-04,38279,7865,"[""Phone"", ""Laptop""]",1709.68,"{""promo"": ""26%""}",259836,0,North America +2023-12-28,38280,494,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2940.2,{},121604,0,Asia +2023-11-18,38281,815,"[""Phone"", ""Monitor"", ""Tablet""]",3588.96,"{""promo"": ""21%""}",1939,1,South America +2023-11-18,38282,9805,"[""Headphones""]",1567.8,{},189396,0,Africa +2024-06-06,38283,6299,"[""Headphones"", ""Phone"", ""Tablet""]",2619.89,{},193275,1,Asia +2023-05-10,38284,7098,"[""Headphones""]",2784.77,"{""seasonal"": ""11%""}",115903,0,North America +2023-06-23,38285,3117,"[""Monitor"", ""Charger""]",534.96,{},256762,0,Africa +2023-02-22,38286,2601,"[""Wireless Mouse""]",1926.57,"{""promo"": ""14%""}",276882,1,North America +2024-03-25,38287,5073,"[""Wireless Mouse"", ""Headphones""]",4685.77,{},72228,1,North America +2024-03-14,38288,5599,"[""Monitor"", ""Laptop"", ""Keyboard""]",387.37,{},202173,1,North America +2024-08-17,38289,7176,"[""Tablet""]",4588.31,"{""loyalty"": ""6%""}",176027,0,Asia +2023-08-09,38290,1587,"[""Headphones"", ""Laptop"", ""Monitor""]",3816.57,"{"""": ""29%""}",49941,0,South America +2024-04-28,38291,1633,"[""Headphones"", ""Monitor"", ""Keyboard""]",4034.17,"{"""": ""16%""}",160198,0,Africa +2023-10-13,38292,8886,"[""Headphones""]",454.15,"{""loyalty"": ""29%""}",278306,0,Asia +2024-03-31,38293,6898,"[""Keyboard""]",666.1,"{""promo"": ""18%""}",108942,1,Africa +2023-09-23,38294,5979,"[""Monitor""]",4576.43,{},44270,0,Africa +2023-05-27,38295,7029,"[""Charger"", ""Laptop""]",2634.51,"{""loyalty"": ""7%""}",292942,0,Europe +2023-05-25,38296,2111,"[""Charger"", ""Headphones""]",4806.67,{},171376,0,South America +2024-01-13,38297,9666,"[""Headphones"", ""Tablet""]",4337.51,"{""loyalty"": ""29%""}",102768,0,South America +2023-07-04,38298,1029,"[""Keyboard""]",4808.82,{},2900,1,North America +2023-10-04,38299,3318,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2911.82,{},105912,0,Africa +2024-04-22,38300,4496,"[""Phone""]",4857.2,{},247161,0,North America +2024-03-12,38301,3316,"[""Laptop"", ""Monitor"", ""Tablet""]",4601.42,{},143935,1,North America +2023-12-13,38302,6386,"[""Keyboard""]",2665.74,"{""loyalty"": ""18%""}",237250,1,North America +2024-06-24,38303,7624,"[""Headphones"", ""Keyboard""]",2915.32,{},120623,0,South America +2023-04-16,38304,8464,"[""Tablet"", ""Keyboard""]",2589.17,{},289284,1,North America +2024-05-05,38305,6425,"[""Monitor"", ""Wireless Mouse""]",1782.73,"{""promo"": ""20%""}",121478,1,North America +2024-12-21,38306,6667,"[""Tablet""]",283.69,"{""seasonal"": ""27%""}",290893,1,Asia +2023-08-09,38307,5016,"[""Charger""]",3918.45,"{""promo"": ""27%""}",254846,1,Asia +2024-04-11,38308,3465,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1849.46,{},267121,0,North America +2024-07-19,38309,5448,"[""Headphones"", ""Phone"", ""Charger""]",3310.5,"{""promo"": ""27%""}",166045,0,North America +2024-11-08,38310,863,"[""Charger"", ""Monitor"", ""Phone""]",1085.8,{},193664,0,Africa +2024-11-19,38311,2832,"[""Wireless Mouse"", ""Keyboard""]",2215.98,{},217983,1,Europe +2023-11-02,38312,103,"[""Phone""]",3219.28,{},165310,0,South America +2023-06-12,38313,100,"[""Phone""]",1031.8,{},280881,0,Europe +2024-04-25,38314,9870,"[""Charger"", ""Keyboard""]",2965.4,{},189282,0,North America +2024-06-25,38315,256,"[""Keyboard"", ""Tablet"", ""Headphones""]",1290.63,{},24703,1,Africa +2023-10-31,38316,9118,"[""Phone"", ""Charger""]",2675.55,{},49605,1,North America +2023-07-12,38317,4911,"[""Monitor""]",3314.97,{},53833,1,Asia +2024-11-27,38318,6838,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",262.28,{},179623,1,Africa +2023-03-22,38319,9364,"[""Wireless Mouse""]",4501.69,"{"""": ""24%""}",4337,1,Europe +2024-06-07,38320,138,"[""Laptop""]",3016.37,"{""loyalty"": ""29%""}",126340,0,South America +2024-11-27,38321,2097,"[""Laptop"", ""Monitor""]",667.55,{},220835,0,Africa +2024-01-29,38322,6128,"[""Laptop""]",4883.89,{},32428,0,Asia +2023-02-23,38323,6370,"[""Monitor"", ""Tablet""]",1461.43,"{""promo"": ""12%""}",128011,1,Asia +2023-10-03,38324,8362,"[""Charger""]",2039.24,"{""seasonal"": ""15%""}",127778,0,Asia +2023-06-15,38325,2685,"[""Wireless Mouse""]",3335.62,"{"""": ""25%""}",198167,0,South America +2024-12-15,38326,9022,"[""Charger""]",929.6,{},69354,0,Asia +2024-06-15,38327,4026,"[""Phone"", ""Laptop""]",3784.16,"{""promo"": ""7%""}",40190,0,Africa +2024-06-15,38328,3017,"[""Monitor"", ""Tablet""]",4821.58,"{""loyalty"": ""9%""}",264101,0,Africa +2024-02-06,38329,321,"[""Wireless Mouse""]",4626.89,{},13607,1,North America +2023-08-27,38330,665,"[""Monitor"", ""Wireless Mouse""]",59.4,{},112622,0,North America +2024-05-19,38331,2739,"[""Phone""]",3261.42,"{"""": ""26%""}",55258,1,South America +2023-12-05,38332,4599,"[""Monitor"", ""Tablet""]",1261.2,"{""seasonal"": ""19%""}",83856,1,Europe +2024-11-30,38333,5136,"[""Charger""]",4822.91,"{""promo"": ""22%""}",277291,0,North America +2023-02-22,38334,2713,"[""Phone"", ""Wireless Mouse""]",1148.5,"{""promo"": ""14%""}",172962,0,Asia +2023-11-25,38335,7928,"[""Phone""]",2970.61,"{""loyalty"": ""24%""}",24783,1,Asia +2023-09-12,38336,7748,"[""Phone""]",4018.0,"{""loyalty"": ""11%""}",274343,0,Africa +2024-07-18,38337,215,"[""Tablet"", ""Headphones""]",256.64,"{""seasonal"": ""30%""}",212130,1,Asia +2023-06-20,38338,9449,"[""Phone"", ""Headphones""]",4758.57,"{""promo"": ""5%""}",75455,0,North America +2024-04-29,38339,9205,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",492.69,"{""seasonal"": ""5%""}",137456,0,Asia +2023-12-20,38340,8846,"[""Keyboard"", ""Charger"", ""Phone""]",1381.91,"{""promo"": ""12%""}",223776,1,Europe +2023-07-30,38341,2971,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1771.87,{},217381,0,North America +2024-09-26,38342,5761,"[""Tablet""]",4870.33,"{""promo"": ""13%""}",217494,1,Europe +2023-04-30,38343,8122,"[""Tablet""]",1774.4,{},262325,0,South America +2023-03-19,38344,2405,"[""Charger"", ""Tablet""]",4064.91,"{""seasonal"": ""12%""}",258516,0,North America +2024-01-14,38345,617,"[""Phone"", ""Tablet""]",2359.39,"{""seasonal"": ""12%""}",17539,1,Asia +2023-02-03,38346,1791,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4043.86,{},186526,0,Africa +2024-04-11,38347,3838,"[""Phone""]",4929.04,"{""seasonal"": ""9%""}",177936,1,South America +2023-11-16,38348,8322,"[""Tablet"", ""Monitor""]",2630.49,"{""seasonal"": ""26%""}",25663,0,Europe +2023-02-10,38349,9679,"[""Charger""]",3660.6,{},147596,1,Asia +2023-01-31,38350,2765,"[""Wireless Mouse"", ""Charger""]",1504.28,"{""promo"": ""12%""}",237123,1,Asia +2024-05-31,38351,9707,"[""Laptop""]",3903.36,"{""seasonal"": ""15%""}",239216,0,South America +2023-02-09,38352,3638,"[""Headphones"", ""Laptop"", ""Charger""]",3207.85,{},197405,1,North America +2023-05-18,38353,8564,"[""Headphones"", ""Phone""]",4369.6,{},92005,1,South America +2023-07-29,38354,7280,"[""Tablet"", ""Monitor"", ""Laptop""]",3460.3,"{""promo"": ""16%""}",235407,1,Asia +2024-07-27,38355,5410,"[""Monitor"", ""Headphones"", ""Laptop""]",926.83,{},35004,1,Europe +2023-12-05,38356,3593,"[""Laptop""]",4001.66,"{"""": ""21%""}",124481,0,Europe +2023-05-06,38357,8082,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3048.09,{},281113,1,Africa +2023-09-27,38358,3601,"[""Phone""]",4985.79,"{""loyalty"": ""15%""}",289651,0,North America +2024-11-29,38359,784,"[""Charger"", ""Phone""]",4040.76,"{""promo"": ""12%""}",40614,1,Europe +2024-11-27,38360,7444,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4945.85,"{""seasonal"": ""13%""}",236927,0,Europe +2024-12-09,38361,2524,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",891.19,{},61012,1,Europe +2023-01-03,38362,2408,"[""Laptop"", ""Charger""]",4936.56,{},174435,0,Africa +2024-05-19,38363,7180,"[""Headphones"", ""Charger"", ""Monitor""]",1322.52,"{""seasonal"": ""11%""}",265525,1,Asia +2024-07-05,38364,1209,"[""Wireless Mouse"", ""Monitor""]",804.19,{},37683,1,South America +2023-07-01,38365,3042,"[""Charger"", ""Wireless Mouse""]",828.54,{},117267,0,South America +2024-08-25,38366,6169,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1144.25,{},168422,1,Africa +2023-02-05,38367,6839,"[""Monitor"", ""Laptop"", ""Keyboard""]",328.59,"{"""": ""18%""}",182207,1,Europe +2023-11-26,38368,4093,"[""Charger"", ""Wireless Mouse"", ""Phone""]",254.53,"{""loyalty"": ""9%""}",291641,1,Africa +2024-06-11,38369,6248,"[""Laptop""]",4778.93,{},149564,1,Europe +2024-10-09,38370,5276,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2282.66,"{""seasonal"": ""23%""}",197268,1,Europe +2024-12-17,38371,1774,"[""Headphones""]",490.33,"{""loyalty"": ""7%""}",279696,0,Europe +2023-04-07,38372,3163,"[""Headphones"", ""Laptop"", ""Phone""]",272.27,"{""promo"": ""11%""}",191264,0,South America +2024-07-26,38373,2945,"[""Keyboard"", ""Tablet"", ""Monitor""]",3500.55,{},143119,0,Asia +2023-05-19,38374,8402,"[""Keyboard""]",3609.72,{},134904,1,Africa +2023-10-21,38375,4536,"[""Keyboard""]",98.22,{},107322,0,South America +2023-10-12,38376,5251,"[""Keyboard""]",838.31,{},174466,1,Asia +2024-03-24,38377,5492,"[""Phone"", ""Wireless Mouse""]",2167.59,{},90790,0,Europe +2024-10-17,38378,447,"[""Laptop"", ""Headphones""]",2919.72,{},204965,1,South America +2024-05-02,38379,2448,"[""Monitor"", ""Charger"", ""Tablet""]",4975.13,{},164042,0,North America +2023-12-30,38380,7384,"[""Wireless Mouse"", ""Tablet""]",3787.94,{},168344,0,Asia +2024-03-29,38381,3015,"[""Monitor"", ""Tablet"", ""Laptop""]",2692.59,{},249474,1,Europe +2023-04-26,38382,1486,"[""Charger""]",2483.58,{},48769,0,South America +2023-06-10,38383,904,"[""Monitor"", ""Laptop"", ""Keyboard""]",4192.63,"{""promo"": ""9%""}",98968,1,South America +2023-08-27,38384,7738,"[""Tablet""]",2310.07,{},155895,0,Asia +2023-01-01,38385,4581,"[""Monitor"", ""Charger"", ""Tablet""]",1731.84,"{""loyalty"": ""22%""}",209495,1,Europe +2024-07-18,38386,6745,"[""Phone"", ""Monitor""]",1286.34,"{""loyalty"": ""22%""}",206852,1,North America +2023-01-08,38387,9727,"[""Keyboard"", ""Charger""]",2590.57,"{""promo"": ""12%""}",241051,1,North America +2024-11-09,38388,1380,"[""Laptop""]",3538.55,{},75469,0,North America +2024-02-11,38389,4725,"[""Headphones""]",2200.18,{},110092,1,Europe +2023-09-23,38390,6051,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3745.6,"{""loyalty"": ""18%""}",109800,0,Africa +2023-05-24,38391,8137,"[""Wireless Mouse""]",2371.06,"{""loyalty"": ""7%""}",148572,0,Asia +2024-04-08,38392,4391,"[""Phone"", ""Monitor""]",2627.48,"{""seasonal"": ""19%""}",55580,0,North America +2024-10-29,38393,5797,"[""Laptop"", ""Phone"", ""Headphones""]",942.99,{},284269,1,Asia +2023-04-11,38394,5521,"[""Keyboard""]",950.85,{},289454,1,Asia +2023-05-08,38395,1023,"[""Wireless Mouse"", ""Headphones""]",3352.85,{},48451,1,Europe +2024-09-04,38396,7707,"[""Tablet"", ""Monitor""]",2782.14,{},176326,1,North America +2024-03-28,38397,3338,"[""Monitor"", ""Headphones""]",3939.51,{},12964,0,Africa +2023-09-30,38398,981,"[""Headphones"", ""Keyboard""]",4989.44,{},104834,0,Asia +2024-07-05,38399,6761,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2134.35,{},222550,0,South America +2023-09-16,38400,1593,"[""Charger"", ""Laptop"", ""Headphones""]",100.77,{},2358,0,North America +2023-04-07,38401,104,"[""Phone"", ""Laptop"", ""Tablet""]",4021.94,{},182034,0,North America +2023-10-13,38402,5208,"[""Wireless Mouse""]",97.24,{},39593,1,Africa +2023-11-01,38403,3973,"[""Laptop"", ""Phone"", ""Tablet""]",4693.5,"{""promo"": ""12%""}",121683,0,Europe +2023-12-25,38404,8994,"[""Keyboard"", ""Headphones""]",2471.62,{},298514,1,South America +2023-06-20,38405,1925,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2687.17,{},154532,1,North America +2024-06-27,38406,897,"[""Keyboard"", ""Headphones"", ""Phone""]",4123.62,"{""loyalty"": ""13%""}",102130,0,South America +2023-03-28,38407,7530,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1266.64,{},29144,1,Europe +2023-03-16,38408,1850,"[""Keyboard""]",2245.3,"{""seasonal"": ""16%""}",86829,1,North America +2024-02-04,38409,1123,"[""Keyboard"", ""Laptop""]",3042.56,"{""promo"": ""7%""}",250441,1,North America +2023-10-09,38410,6219,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2525.32,"{""loyalty"": ""23%""}",249211,1,South America +2024-01-08,38411,4963,"[""Headphones"", ""Wireless Mouse""]",2538.21,{},212769,1,North America +2024-09-03,38412,8294,"[""Wireless Mouse"", ""Keyboard""]",295.37,"{"""": ""24%""}",208542,1,North America +2023-04-03,38413,7953,"[""Tablet""]",3545.15,"{"""": ""11%""}",255379,1,Europe +2024-09-20,38414,1883,"[""Laptop"", ""Keyboard""]",2563.87,"{"""": ""8%""}",245923,0,Africa +2023-04-29,38415,3150,"[""Tablet""]",1415.53,"{""loyalty"": ""7%""}",38907,0,Europe +2023-04-15,38416,3120,"[""Phone"", ""Charger""]",479.71,{},130145,0,North America +2023-01-27,38417,1353,"[""Wireless Mouse"", ""Headphones""]",4556.62,"{"""": ""19%""}",255993,1,Europe +2023-09-28,38418,8519,"[""Keyboard"", ""Phone"", ""Charger""]",4301.11,"{""seasonal"": ""12%""}",158733,1,Europe +2024-04-11,38419,962,"[""Phone"", ""Keyboard"", ""Monitor""]",296.46,"{""promo"": ""11%""}",235553,1,South America +2024-02-04,38420,5652,"[""Tablet"", ""Headphones""]",324.18,{},184649,1,Europe +2024-03-11,38421,4822,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",459.75,{},136972,1,Africa +2024-07-08,38422,3802,"[""Laptop"", ""Monitor"", ""Phone""]",2573.02,"{""loyalty"": ""10%""}",237418,0,North America +2023-08-30,38423,5932,"[""Monitor"", ""Phone""]",4721.15,{},8281,0,Africa +2023-01-05,38424,2023,"[""Laptop""]",134.79,"{"""": ""8%""}",129203,1,Asia +2023-03-13,38425,5529,"[""Laptop"", ""Headphones"", ""Phone""]",3779.76,"{"""": ""29%""}",66165,1,Europe +2023-06-12,38426,2805,"[""Wireless Mouse"", ""Keyboard""]",2437.8,{},48963,0,Africa +2024-10-18,38427,6907,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3660.14,"{"""": ""14%""}",12161,1,Africa +2023-05-12,38428,6454,"[""Laptop""]",1304.7,{},241522,0,North America +2023-04-04,38429,1515,"[""Headphones"", ""Tablet""]",2168.58,{},298252,0,Europe +2023-12-29,38430,4461,"[""Keyboard""]",796.62,{},272803,1,South America +2023-11-24,38431,1193,"[""Headphones""]",1328.22,"{"""": ""18%""}",225070,0,Europe +2023-09-06,38432,7843,"[""Monitor"", ""Keyboard"", ""Headphones""]",3868.66,"{""promo"": ""23%""}",160513,0,South America +2024-05-17,38433,3684,"[""Tablet""]",3925.36,"{"""": ""7%""}",55634,1,Europe +2023-11-11,38434,9136,"[""Laptop""]",4447.73,"{"""": ""18%""}",259399,1,Europe +2024-11-02,38435,315,"[""Phone""]",3907.95,{},299180,1,Europe +2023-05-23,38436,1116,"[""Wireless Mouse"", ""Phone""]",3311.59,{},231830,1,North America +2024-05-23,38437,6201,"[""Phone""]",4663.11,"{""loyalty"": ""16%""}",59883,0,Asia +2023-08-18,38438,4555,"[""Keyboard"", ""Monitor"", ""Laptop""]",2744.6,{},168505,1,Asia +2024-08-29,38439,9285,"[""Keyboard"", ""Charger"", ""Laptop""]",416.34,{},232451,1,Africa +2024-06-13,38440,5817,"[""Phone"", ""Keyboard"", ""Charger""]",2675.33,"{""seasonal"": ""26%""}",123073,0,Europe +2024-02-21,38441,7413,"[""Keyboard"", ""Monitor""]",4532.05,"{""promo"": ""28%""}",207137,1,Asia +2023-06-23,38442,6471,"[""Phone"", ""Keyboard"", ""Monitor""]",3568.64,{},263369,0,Africa +2023-01-22,38443,3666,"[""Wireless Mouse"", ""Tablet""]",2732.79,"{""loyalty"": ""16%""}",62266,1,North America +2024-02-20,38444,1814,"[""Charger"", ""Tablet"", ""Monitor""]",2352.06,"{""loyalty"": ""22%""}",118863,1,South America +2023-09-17,38445,8483,"[""Phone""]",3805.11,{},295381,1,South America +2023-09-06,38446,7608,"[""Laptop""]",567.7,{},223826,0,Africa +2023-04-11,38447,5270,"[""Laptop""]",1113.27,{},238700,1,Asia +2023-08-12,38448,598,"[""Monitor""]",589.9,{},179739,1,South America +2024-09-18,38449,7862,"[""Laptop""]",3004.48,"{""seasonal"": ""9%""}",252530,1,Africa +2023-11-30,38450,4033,"[""Tablet"", ""Charger""]",2373.01,"{""loyalty"": ""9%""}",45096,0,Asia +2024-07-04,38451,6653,"[""Headphones""]",498.81,"{""loyalty"": ""5%""}",140176,0,South America +2024-03-26,38452,8235,"[""Phone"", ""Laptop"", ""Keyboard""]",4046.35,{},32891,0,North America +2023-02-17,38453,995,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2088.68,"{""promo"": ""30%""}",50876,1,Africa +2024-01-28,38454,696,"[""Charger""]",3230.9,"{""loyalty"": ""21%""}",166184,0,Europe +2024-08-29,38455,7427,"[""Laptop"", ""Tablet"", ""Phone""]",4112.16,{},63417,1,North America +2023-09-17,38456,4341,"[""Laptop""]",4870.86,{},275611,1,Asia +2024-09-19,38457,2609,"[""Keyboard"", ""Monitor""]",972.51,{},215156,1,Europe +2023-03-12,38458,3013,"[""Tablet"", ""Wireless Mouse""]",2147.25,"{""seasonal"": ""18%""}",91046,0,Asia +2023-03-02,38459,6958,"[""Phone"", ""Wireless Mouse""]",1424.45,{},276330,0,Africa +2024-07-16,38460,1282,"[""Wireless Mouse""]",51.71,{},216614,1,North America +2023-02-10,38461,8662,"[""Monitor"", ""Wireless Mouse""]",3889.66,{},170738,0,South America +2024-09-25,38462,9661,"[""Phone""]",3072.28,"{""loyalty"": ""23%""}",143560,0,Africa +2023-06-23,38463,9454,"[""Tablet"", ""Wireless Mouse""]",2315.07,{},296584,1,Africa +2024-06-13,38464,9922,"[""Tablet"", ""Laptop"", ""Monitor""]",4956.03,"{""loyalty"": ""18%""}",110782,0,Africa +2024-10-02,38465,7463,"[""Keyboard"", ""Phone""]",124.6,"{""loyalty"": ""17%""}",235251,0,Africa +2023-03-14,38466,7800,"[""Wireless Mouse""]",2370.65,{},14359,1,North America +2023-08-31,38467,7085,"[""Keyboard""]",4530.27,"{"""": ""20%""}",299856,0,Asia +2024-09-13,38468,8899,"[""Laptop"", ""Keyboard"", ""Headphones""]",2007.63,{},242264,1,North America +2023-11-24,38469,5119,"[""Charger"", ""Laptop"", ""Keyboard""]",1664.63,{},177591,0,South America +2023-04-10,38470,7815,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4605.49,"{""promo"": ""17%""}",232521,1,Africa +2024-03-26,38471,5892,"[""Phone"", ""Keyboard""]",4089.27,{},7479,0,South America +2024-08-16,38472,2392,"[""Charger"", ""Keyboard""]",3948.64,"{""seasonal"": ""13%""}",86227,1,North America +2023-01-08,38473,879,"[""Laptop""]",80.13,{},93169,0,Asia +2024-03-20,38474,566,"[""Charger"", ""Laptop""]",2433.95,"{""loyalty"": ""29%""}",208793,0,Asia +2023-02-04,38475,6538,"[""Keyboard"", ""Laptop""]",3329.83,"{""loyalty"": ""29%""}",141407,1,Asia +2024-06-06,38476,9715,"[""Headphones"", ""Laptop"", ""Monitor""]",1635.74,{},294099,0,Africa +2024-01-06,38477,1741,"[""Keyboard""]",1180.8,"{""promo"": ""29%""}",279983,0,South America +2024-05-27,38478,7159,"[""Keyboard"", ""Wireless Mouse""]",3835.16,{},224432,1,South America +2024-07-08,38479,4040,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2672.33,"{""loyalty"": ""30%""}",132899,0,Europe +2023-07-03,38480,4317,"[""Laptop"", ""Tablet"", ""Monitor""]",1555.77,{},91276,1,South America +2023-12-21,38481,1238,"[""Tablet"", ""Keyboard""]",2708.14,"{""promo"": ""12%""}",205888,1,Europe +2024-09-04,38482,1784,"[""Wireless Mouse"", ""Keyboard""]",2303.96,{},73909,0,Europe +2023-06-18,38483,7484,"[""Wireless Mouse""]",2025.08,"{""promo"": ""29%""}",36857,0,Europe +2024-05-22,38484,6148,"[""Laptop"", ""Headphones""]",4405.16,"{""seasonal"": ""25%""}",41309,1,North America +2023-03-06,38485,6980,"[""Tablet"", ""Monitor"", ""Laptop""]",3289.96,"{"""": ""20%""}",107830,0,Europe +2023-05-11,38486,1143,"[""Charger""]",990.19,"{""seasonal"": ""14%""}",214503,1,Asia +2024-11-28,38487,8853,"[""Laptop"", ""Keyboard""]",3705.83,"{""seasonal"": ""23%""}",60295,1,Asia +2023-10-31,38488,8486,"[""Wireless Mouse"", ""Headphones""]",4525.3,{},84689,1,Africa +2024-08-31,38489,5006,"[""Wireless Mouse"", ""Phone"", ""Charger""]",927.8,"{""seasonal"": ""12%""}",86011,1,Asia +2023-12-21,38490,3342,"[""Laptop"", ""Headphones"", ""Monitor""]",2968.68,{},196794,0,North America +2024-07-06,38491,1647,"[""Headphones""]",2617.2,"{""promo"": ""26%""}",141207,0,North America +2024-07-29,38492,6295,"[""Headphones"", ""Tablet"", ""Keyboard""]",1691.12,"{""loyalty"": ""9%""}",61991,0,Africa +2023-06-28,38493,5754,"[""Keyboard"", ""Laptop""]",1270.72,"{""promo"": ""26%""}",244285,0,Asia +2023-06-28,38494,3861,"[""Phone"", ""Tablet""]",2669.27,{},199620,1,Africa +2024-05-16,38495,6080,"[""Monitor"", ""Phone""]",2047.82,{},276921,1,North America +2023-12-05,38496,5574,"[""Keyboard""]",4986.9,{},120119,0,South America +2024-05-24,38497,742,"[""Phone"", ""Headphones"", ""Charger""]",3984.73,{},74726,1,South America +2024-09-11,38498,5931,"[""Phone"", ""Wireless Mouse""]",351.99,"{""loyalty"": ""29%""}",149233,1,Europe +2023-07-22,38499,9346,"[""Phone""]",4768.96,{},126455,0,North America +2024-04-20,38500,4101,"[""Headphones"", ""Wireless Mouse""]",326.65,{},87996,0,Europe +2023-09-08,38501,2679,"[""Wireless Mouse"", ""Monitor""]",2648.67,{},142355,0,North America +2023-09-10,38502,4106,"[""Phone"", ""Monitor"", ""Headphones""]",1177.94,"{""seasonal"": ""19%""}",3110,1,Africa +2024-01-11,38503,6266,"[""Keyboard"", ""Charger""]",2411.49,{},71298,0,Europe +2023-04-11,38504,5712,"[""Headphones"", ""Charger""]",4977.17,{},17874,1,Asia +2024-10-02,38505,4427,"[""Phone""]",87.45,"{""promo"": ""28%""}",276683,0,South America +2024-01-14,38506,5763,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4366.15,{},273982,1,South America +2024-09-26,38507,3491,"[""Wireless Mouse""]",2210.83,"{""seasonal"": ""24%""}",28643,1,South America +2024-08-23,38508,56,"[""Monitor"", ""Phone"", ""Laptop""]",3018.38,"{""seasonal"": ""18%""}",179303,1,North America +2023-09-22,38509,762,"[""Keyboard""]",4132.07,"{""promo"": ""29%""}",240572,0,North America +2024-10-17,38510,6702,"[""Tablet"", ""Laptop""]",2412.02,{},191184,0,North America +2023-05-16,38511,12,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2735.48,"{"""": ""14%""}",34250,1,South America +2024-04-10,38512,8460,"[""Headphones"", ""Monitor"", ""Charger""]",347.86,{},202605,0,South America +2024-07-15,38513,9592,"[""Laptop"", ""Tablet"", ""Keyboard""]",4727.85,{},81647,1,Asia +2023-04-17,38514,961,"[""Wireless Mouse"", ""Keyboard""]",661.07,"{"""": ""16%""}",32352,1,South America +2023-08-22,38515,1491,"[""Headphones"", ""Charger"", ""Keyboard""]",2804.55,{},62007,1,Europe +2023-03-28,38516,1315,"[""Phone"", ""Laptop""]",2614.02,{},1567,1,North America +2024-07-27,38517,8049,"[""Laptop"", ""Tablet"", ""Charger""]",2146.18,{},181589,1,North America +2023-04-17,38518,5098,"[""Charger""]",446.11,"{""promo"": ""25%""}",111459,1,Asia +2024-01-27,38519,2251,"[""Keyboard""]",1605.73,{},247253,0,North America +2023-10-11,38520,8057,"[""Keyboard"", ""Monitor""]",2408.26,{},298665,1,Asia +2024-07-21,38521,6691,"[""Tablet"", ""Monitor""]",1243.39,{},22078,1,Asia +2024-01-26,38522,3367,"[""Monitor""]",3272.9,"{""seasonal"": ""27%""}",161173,1,Europe +2023-03-09,38523,5785,"[""Headphones"", ""Charger""]",4565.75,"{"""": ""5%""}",220306,0,North America +2023-08-19,38524,6227,"[""Phone"", ""Laptop""]",897.49,"{""promo"": ""12%""}",164618,1,North America +2023-07-09,38525,1324,"[""Keyboard"", ""Tablet"", ""Headphones""]",1585.88,{},185225,0,South America +2023-07-13,38526,8593,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3186.67,"{""loyalty"": ""15%""}",31489,1,North America +2024-05-27,38527,2056,"[""Wireless Mouse""]",3420.14,"{"""": ""20%""}",183453,1,Africa +2024-05-16,38528,7803,"[""Headphones"", ""Tablet""]",332.08,"{"""": ""30%""}",75904,1,Europe +2024-08-09,38529,4147,"[""Keyboard""]",3376.5,"{""seasonal"": ""27%""}",45511,1,Asia +2024-12-20,38530,6768,"[""Tablet""]",502.28,{},287893,1,Africa +2024-06-17,38531,3541,"[""Laptop""]",895.36,"{""seasonal"": ""29%""}",286673,0,South America +2023-01-27,38532,9589,"[""Monitor"", ""Wireless Mouse""]",1608.08,"{"""": ""16%""}",17695,1,South America +2024-05-06,38533,8641,"[""Tablet"", ""Headphones""]",912.4,{},167771,0,South America +2024-12-20,38534,2153,"[""Monitor"", ""Phone"", ""Charger""]",2690.78,{},255288,0,Europe +2024-04-15,38535,5060,"[""Monitor""]",982.6,"{""promo"": ""20%""}",272699,0,Africa +2023-10-01,38536,95,"[""Keyboard"", ""Wireless Mouse""]",1721.97,"{""seasonal"": ""19%""}",177479,0,Asia +2023-02-18,38537,6285,"[""Monitor""]",1523.67,{},224271,0,South America +2024-10-08,38538,2173,"[""Tablet""]",4185.56,"{""loyalty"": ""14%""}",15658,0,South America +2024-12-06,38539,6454,"[""Monitor"", ""Tablet"", ""Headphones""]",1173.34,"{""promo"": ""22%""}",77476,0,Asia +2024-09-04,38540,6735,"[""Headphones""]",3829.29,"{""loyalty"": ""25%""}",212389,1,Asia +2024-09-05,38541,817,"[""Headphones""]",4930.96,"{"""": ""29%""}",153867,1,South America +2024-09-29,38542,5081,"[""Laptop""]",4071.98,{},285779,1,South America +2023-01-02,38543,6234,"[""Monitor""]",2163.35,"{""loyalty"": ""24%""}",157779,1,Asia +2024-11-28,38544,8214,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3841.14,"{""seasonal"": ""22%""}",83951,1,Europe +2024-04-04,38545,4985,"[""Charger""]",494.42,"{""promo"": ""23%""}",142533,1,North America +2024-10-21,38546,5249,"[""Charger""]",2762.45,"{""loyalty"": ""25%""}",142714,0,Africa +2023-03-19,38547,9782,"[""Phone"", ""Headphones"", ""Keyboard""]",1151.11,{},162475,1,Europe +2023-10-21,38548,7035,"[""Headphones"", ""Charger"", ""Laptop""]",4678.7,{},136719,1,Europe +2023-09-14,38549,376,"[""Headphones"", ""Keyboard"", ""Phone""]",1130.69,{},32399,0,Africa +2024-02-12,38550,2718,"[""Keyboard""]",846.94,"{""loyalty"": ""6%""}",3646,0,South America +2024-05-01,38551,4239,"[""Tablet"", ""Phone""]",4534.76,"{"""": ""17%""}",259100,0,North America +2024-11-05,38552,99,"[""Headphones"", ""Laptop""]",391.37,{},100880,0,Asia +2024-11-09,38553,3395,"[""Wireless Mouse"", ""Headphones""]",3391.95,"{"""": ""6%""}",249766,1,North America +2023-08-19,38554,5760,"[""Monitor"", ""Charger""]",3017.96,"{""loyalty"": ""23%""}",10101,0,South America +2023-05-14,38555,5152,"[""Charger"", ""Laptop"", ""Monitor""]",2149.29,{},3465,1,Asia +2024-08-21,38556,6415,"[""Laptop"", ""Charger""]",3055.21,"{""loyalty"": ""27%""}",242248,1,Asia +2023-03-31,38557,2702,"[""Headphones"", ""Tablet""]",2159.07,{},178892,1,North America +2024-10-23,38558,216,"[""Monitor""]",2348.02,"{"""": ""9%""}",278878,1,South America +2024-09-01,38559,2118,"[""Keyboard"", ""Monitor"", ""Phone""]",739.16,{},66967,0,Asia +2023-02-07,38560,168,"[""Wireless Mouse""]",4111.81,"{"""": ""18%""}",50618,1,Asia +2024-10-14,38561,3555,"[""Tablet""]",1201.24,{},180515,0,South America +2024-11-10,38562,6289,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3420.04,"{""loyalty"": ""19%""}",213451,0,North America +2024-11-29,38563,3632,"[""Laptop""]",2881.28,"{""promo"": ""6%""}",201336,1,South America +2023-05-27,38564,8870,"[""Keyboard"", ""Monitor"", ""Tablet""]",324.57,{},47768,1,Europe +2023-07-16,38565,2978,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1937.89,{},205902,0,Europe +2023-12-20,38566,9554,"[""Keyboard""]",2690.88,"{""seasonal"": ""23%""}",226556,0,South America +2024-11-27,38567,9023,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4477.35,"{""seasonal"": ""9%""}",225614,1,North America +2023-12-09,38568,4974,"[""Keyboard""]",2242.06,{},269201,0,Europe +2023-02-22,38569,2201,"[""Phone""]",2253.21,{},134139,1,Africa +2023-10-24,38570,8564,"[""Monitor"", ""Charger""]",1504.09,{},152020,1,North America +2024-08-17,38571,4145,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",310.61,"{""promo"": ""24%""}",103843,0,Europe +2023-09-20,38572,6758,"[""Monitor"", ""Keyboard""]",3024.6,"{"""": ""16%""}",196356,1,Europe +2024-02-26,38573,9687,"[""Phone""]",482.42,"{""loyalty"": ""20%""}",294692,0,South America +2023-09-05,38574,1054,"[""Laptop""]",4805.89,{},91942,0,North America +2024-12-01,38575,612,"[""Headphones"", ""Monitor"", ""Phone""]",3549.28,{},11918,0,North America +2024-11-02,38576,210,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4534.53,"{""promo"": ""9%""}",37091,1,Asia +2024-10-25,38577,1351,"[""Charger""]",713.4,"{""seasonal"": ""8%""}",10688,1,Africa +2023-11-05,38578,4668,"[""Charger"", ""Tablet""]",2902.26,{},129597,1,Europe +2024-07-09,38579,5435,"[""Monitor""]",3501.16,"{""loyalty"": ""13%""}",21618,0,North America +2023-08-25,38580,5276,"[""Monitor"", ""Tablet""]",1316.39,"{""promo"": ""16%""}",70503,0,North America +2024-01-25,38581,5548,"[""Headphones"", ""Monitor"", ""Keyboard""]",4171.72,{},140868,0,Europe +2024-06-26,38582,2560,"[""Laptop""]",3622.78,"{"""": ""8%""}",108344,1,Europe +2024-07-06,38583,261,"[""Charger""]",4804.41,"{""loyalty"": ""27%""}",27674,1,Africa +2023-04-21,38584,4037,"[""Headphones"", ""Phone"", ""Laptop""]",3104.44,{},39768,0,North America +2023-11-12,38585,9464,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3132.52,{},248611,1,Europe +2024-07-26,38586,9224,"[""Keyboard""]",628.71,{},145563,1,Africa +2024-11-22,38587,6894,"[""Headphones"", ""Monitor""]",2953.67,"{"""": ""17%""}",48552,1,Europe +2023-07-10,38588,3562,"[""Keyboard""]",1310.91,"{""promo"": ""10%""}",203299,0,Europe +2023-02-01,38589,3606,"[""Laptop"", ""Tablet""]",1136.9,{},220978,0,North America +2024-02-17,38590,2409,"[""Wireless Mouse""]",1760.75,"{""promo"": ""14%""}",41482,0,South America +2024-08-08,38591,566,"[""Charger"", ""Keyboard""]",4163.36,"{""seasonal"": ""9%""}",210844,0,North America +2024-10-01,38592,3961,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4552.65,"{""loyalty"": ""9%""}",282835,0,North America +2023-06-30,38593,2031,"[""Phone""]",2820.02,"{""loyalty"": ""26%""}",23219,0,Africa +2024-01-07,38594,8929,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4545.76,"{""promo"": ""20%""}",90870,0,Africa +2023-10-15,38595,948,"[""Headphones""]",4980.62,{},267482,0,Asia +2024-05-01,38596,9922,"[""Laptop""]",3695.34,{},29086,0,Asia +2023-12-16,38597,4030,"[""Laptop""]",1701.93,"{""seasonal"": ""11%""}",80686,1,Africa +2023-07-05,38598,1796,"[""Headphones"", ""Charger""]",4027.19,{},74178,0,South America +2024-05-18,38599,9756,"[""Monitor"", ""Tablet"", ""Phone""]",1177.81,{},279838,1,South America +2024-07-30,38600,1150,"[""Tablet"", ""Wireless Mouse""]",487.01,"{""loyalty"": ""18%""}",296112,0,Asia +2023-03-26,38601,4605,"[""Headphones"", ""Wireless Mouse""]",2223.86,"{""loyalty"": ""19%""}",278633,1,South America +2024-03-28,38602,7740,"[""Phone"", ""Tablet"", ""Monitor""]",725.49,{},267737,1,Asia +2024-12-02,38603,7993,"[""Phone"", ""Keyboard""]",506.41,"{""promo"": ""12%""}",117161,1,South America +2024-04-02,38604,535,"[""Monitor"", ""Phone"", ""Tablet""]",3198.44,{},156187,1,North America +2024-10-17,38605,7445,"[""Phone"", ""Wireless Mouse""]",1460.96,{},285864,1,Africa +2024-03-12,38606,6465,"[""Phone"", ""Charger"", ""Headphones""]",797.26,{},283406,0,Europe +2023-02-01,38607,3437,"[""Laptop"", ""Tablet"", ""Keyboard""]",3038.0,"{""promo"": ""26%""}",4423,1,Africa +2024-09-11,38608,4302,"[""Wireless Mouse""]",1286.35,"{""seasonal"": ""18%""}",25227,0,North America +2023-12-08,38609,5506,"[""Wireless Mouse"", ""Headphones""]",4179.41,"{"""": ""29%""}",238342,1,Asia +2023-08-06,38610,9239,"[""Monitor""]",2010.18,"{""loyalty"": ""24%""}",153480,0,South America +2024-01-28,38611,2982,"[""Charger""]",2321.96,{},249506,1,Asia +2023-03-25,38612,107,"[""Monitor"", ""Phone"", ""Tablet""]",1070.67,"{""promo"": ""29%""}",28843,0,South America +2024-08-02,38613,3742,"[""Keyboard"", ""Headphones""]",4993.08,{},119912,0,Africa +2023-03-24,38614,5499,"[""Phone"", ""Monitor"", ""Charger""]",1581.18,"{""loyalty"": ""8%""}",116449,0,Europe +2024-05-22,38615,9953,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",361.0,"{"""": ""22%""}",223001,0,North America +2023-11-17,38616,1858,"[""Laptop"", ""Monitor"", ""Headphones""]",3787.73,"{""loyalty"": ""13%""}",80026,1,Europe +2024-10-23,38617,2765,"[""Tablet"", ""Phone""]",2993.33,"{""loyalty"": ""6%""}",43988,0,Africa +2024-09-04,38618,3112,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4399.61,{},265217,1,North America +2024-07-21,38619,6983,"[""Wireless Mouse"", ""Monitor""]",3132.17,{},245131,0,North America +2023-02-10,38620,4617,"[""Phone"", ""Laptop"", ""Keyboard""]",708.12,"{""promo"": ""13%""}",73583,0,North America +2023-11-10,38621,9096,"[""Charger""]",1760.16,{},67112,0,Asia +2023-11-12,38622,3179,"[""Charger"", ""Monitor"", ""Phone""]",3638.9,{},237541,0,Africa +2023-08-23,38623,8,"[""Monitor""]",2204.7,"{""seasonal"": ""5%""}",134047,1,North America +2024-03-07,38624,8953,"[""Tablet""]",1724.7,{},209184,0,Europe +2023-03-12,38625,6318,"[""Charger"", ""Keyboard""]",370.71,{},53405,1,South America +2024-01-02,38626,4779,"[""Wireless Mouse"", ""Keyboard""]",2040.29,"{""loyalty"": ""30%""}",196444,0,North America +2023-07-09,38627,7459,"[""Monitor""]",445.68,{},297588,0,North America +2024-04-30,38628,9571,"[""Monitor"", ""Tablet""]",187.68,{},95963,0,Asia +2024-03-29,38629,1288,"[""Headphones""]",3809.29,{},112894,0,Asia +2023-03-22,38630,6679,"[""Tablet""]",4185.22,"{""promo"": ""16%""}",27765,1,North America +2024-03-03,38631,5439,"[""Headphones"", ""Monitor"", ""Laptop""]",4268.63,{},109163,1,Asia +2023-07-21,38632,1422,"[""Headphones""]",4439.58,{},198053,0,Asia +2023-01-02,38633,7651,"[""Tablet"", ""Charger""]",3944.73,"{"""": ""16%""}",136087,0,North America +2024-05-21,38634,775,"[""Wireless Mouse""]",2722.83,{},256864,0,South America +2024-08-07,38635,8750,"[""Tablet"", ""Monitor"", ""Keyboard""]",3946.25,{},75725,0,North America +2024-01-19,38636,8140,"[""Laptop"", ""Monitor"", ""Headphones""]",3703.14,{},156973,0,Asia +2023-09-02,38637,4606,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3029.62,{},4527,1,North America +2023-05-07,38638,1929,"[""Charger""]",4474.32,"{""seasonal"": ""27%""}",122388,1,South America +2024-04-08,38639,9837,"[""Tablet"", ""Monitor"", ""Headphones""]",4104.25,"{""seasonal"": ""8%""}",194003,1,North America +2023-09-04,38640,5688,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1882.53,{},82621,0,Africa +2023-09-07,38641,2904,"[""Laptop""]",99.04,"{""loyalty"": ""6%""}",3713,0,Asia +2024-12-02,38642,2544,"[""Charger"", ""Headphones"", ""Phone""]",2180.11,"{""promo"": ""24%""}",217645,1,North America +2023-07-20,38643,8757,"[""Monitor"", ""Charger""]",1913.84,"{""seasonal"": ""9%""}",23856,1,Africa +2024-10-05,38644,8108,"[""Tablet"", ""Laptop""]",751.38,{},218716,0,North America +2024-05-21,38645,4582,"[""Charger"", ""Laptop"", ""Tablet""]",4611.78,{},157112,1,Europe +2024-04-25,38646,521,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4107.69,"{"""": ""18%""}",156154,1,Europe +2023-08-05,38647,7048,"[""Tablet"", ""Charger""]",80.49,{},29933,1,South America +2023-06-30,38648,2757,"[""Charger"", ""Phone"", ""Laptop""]",3211.45,"{"""": ""26%""}",147973,0,Europe +2024-01-14,38649,729,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4749.47,"{""loyalty"": ""16%""}",230029,1,Asia +2023-03-28,38650,2505,"[""Headphones"", ""Tablet"", ""Monitor""]",4358.49,{},49602,0,South America +2024-02-07,38651,16,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2342.31,{},60861,1,South America +2023-08-13,38652,8920,"[""Wireless Mouse"", ""Phone""]",335.9,"{""promo"": ""20%""}",145417,1,Asia +2024-08-31,38653,1581,"[""Monitor"", ""Charger"", ""Keyboard""]",3425.66,{},170008,1,Europe +2023-10-14,38654,398,"[""Phone"", ""Tablet"", ""Charger""]",2303.77,"{""seasonal"": ""30%""}",8304,1,South America +2023-02-08,38655,7663,"[""Wireless Mouse""]",3414.18,{},276731,1,Asia +2024-10-08,38656,532,"[""Phone"", ""Headphones""]",3923.7,"{""loyalty"": ""29%""}",256689,0,South America +2023-05-14,38657,4283,"[""Phone"", ""Monitor""]",1509.44,{},258007,1,South America +2023-05-25,38658,2861,"[""Phone""]",656.42,{},26451,0,North America +2023-01-14,38659,6652,"[""Charger"", ""Laptop""]",4106.51,"{""seasonal"": ""6%""}",251750,1,South America +2024-04-27,38660,20,"[""Headphones"", ""Tablet""]",132.35,"{""seasonal"": ""26%""}",46582,0,Africa +2023-02-21,38661,4899,"[""Monitor"", ""Headphones"", ""Laptop""]",1864.98,{},17893,1,North America +2023-12-18,38662,5727,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2262.92,"{""seasonal"": ""9%""}",100945,1,North America +2023-06-06,38663,3195,"[""Monitor""]",2617.32,{},3637,1,Europe +2024-12-08,38664,4078,"[""Tablet""]",4826.12,{},56984,1,Europe +2024-10-07,38665,418,"[""Charger"", ""Monitor"", ""Headphones""]",2976.42,{},156084,0,North America +2023-11-28,38666,3931,"[""Charger""]",3406.49,{},253867,1,South America +2024-03-30,38667,18,"[""Monitor"", ""Keyboard""]",310.01,{},160019,1,South America +2023-03-04,38668,2506,"[""Charger"", ""Keyboard""]",3387.22,{},91318,1,Europe +2024-09-12,38669,9892,"[""Laptop"", ""Tablet"", ""Phone""]",4681.33,{},88860,0,Asia +2024-08-29,38670,3408,"[""Keyboard"", ""Headphones""]",1781.65,{},201748,0,Africa +2023-12-31,38671,6785,"[""Tablet"", ""Monitor"", ""Keyboard""]",3706.44,{},81295,0,South America +2024-02-03,38672,3939,"[""Keyboard""]",1934.28,{},296579,0,Asia +2024-04-21,38673,660,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4202.25,{},79157,0,North America +2023-02-09,38674,3733,"[""Wireless Mouse""]",3216.8,{},120443,1,Africa +2023-01-07,38675,1918,"[""Wireless Mouse"", ""Phone""]",415.39,{},265560,0,Africa +2024-07-24,38676,4097,"[""Charger"", ""Phone""]",1592.99,{},122747,1,South America +2024-02-17,38677,7410,"[""Charger""]",4035.9,{},299528,0,Europe +2024-09-11,38678,1162,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3838.05,"{""promo"": ""30%""}",281824,0,South America +2023-07-19,38679,1947,"[""Phone""]",4151.97,{},50509,1,Europe +2023-07-11,38680,3915,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4731.73,{},226286,0,North America +2023-04-15,38681,2637,"[""Headphones""]",384.73,{},50148,0,Africa +2024-01-21,38682,4507,"[""Phone"", ""Keyboard""]",4428.36,{},142762,1,South America +2023-05-28,38683,5637,"[""Charger"", ""Headphones"", ""Laptop""]",3543.85,"{"""": ""26%""}",32022,1,Europe +2024-07-31,38684,805,"[""Charger"", ""Laptop"", ""Monitor""]",486.82,{},248781,1,North America +2023-11-14,38685,303,"[""Keyboard"", ""Laptop""]",1123.12,{},286565,1,Africa +2024-03-24,38686,2382,"[""Tablet"", ""Headphones"", ""Laptop""]",305.11,"{""promo"": ""7%""}",146179,1,North America +2023-03-01,38687,533,"[""Wireless Mouse"", ""Monitor""]",3561.23,{},53553,0,North America +2024-01-15,38688,2305,"[""Tablet"", ""Laptop""]",1871.57,"{""promo"": ""23%""}",60164,0,South America +2024-05-23,38689,8335,"[""Monitor""]",2374.1,"{""promo"": ""30%""}",41294,1,Europe +2023-10-24,38690,9399,"[""Tablet"", ""Monitor"", ""Keyboard""]",2201.54,{},181727,1,North America +2024-04-06,38691,8077,"[""Headphones"", ""Laptop""]",4550.04,{},30837,0,North America +2024-04-17,38692,7592,"[""Wireless Mouse""]",1732.0,"{"""": ""9%""}",235923,0,South America +2023-04-11,38693,9112,"[""Tablet"", ""Keyboard"", ""Monitor""]",287.77,"{""promo"": ""19%""}",33062,1,South America +2024-03-12,38694,3224,"[""Headphones""]",2551.96,{},161543,1,North America +2023-03-03,38695,1360,"[""Charger""]",110.84,{},173068,0,Africa +2024-09-11,38696,5224,"[""Headphones""]",2501.96,{},202651,0,Europe +2023-01-01,38697,988,"[""Wireless Mouse"", ""Tablet""]",3777.13,"{""loyalty"": ""24%""}",174405,0,South America +2023-05-21,38698,1849,"[""Keyboard"", ""Monitor""]",503.9,"{""promo"": ""9%""}",179278,0,North America +2024-10-16,38699,5782,"[""Laptop"", ""Headphones""]",784.75,{},57307,1,Africa +2024-07-26,38700,1519,"[""Monitor"", ""Charger""]",519.38,"{""loyalty"": ""18%""}",244382,1,Asia +2023-12-13,38701,2047,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4967.41,"{""promo"": ""30%""}",137414,1,North America +2023-12-08,38702,5375,"[""Headphones"", ""Tablet""]",2132.62,"{""seasonal"": ""28%""}",29469,1,Europe +2023-07-03,38703,8438,"[""Monitor"", ""Headphones""]",3792.56,"{""loyalty"": ""9%""}",127448,1,Asia +2024-08-21,38704,726,"[""Phone"", ""Laptop""]",4749.06,"{""promo"": ""22%""}",100568,0,Africa +2023-01-10,38705,6778,"[""Wireless Mouse""]",3109.46,"{""promo"": ""14%""}",280655,1,Europe +2024-02-20,38706,5839,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2442.46,{},115341,0,Africa +2024-05-13,38707,8803,"[""Charger"", ""Tablet""]",342.79,{},205267,1,Asia +2023-07-20,38708,4470,"[""Phone""]",2812.08,{},247666,1,South America +2024-01-22,38709,6852,"[""Charger""]",2798.62,"{"""": ""5%""}",115039,1,North America +2023-02-28,38710,8882,"[""Charger"", ""Laptop"", ""Monitor""]",670.03,"{""seasonal"": ""23%""}",198340,0,Europe +2023-10-18,38711,720,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",792.65,"{""promo"": ""8%""}",195854,0,Africa +2023-07-11,38712,1319,"[""Charger"", ""Phone""]",881.17,"{""seasonal"": ""24%""}",207833,0,Africa +2023-09-23,38713,2695,"[""Monitor"", ""Tablet""]",3568.44,"{""loyalty"": ""13%""}",298149,1,Africa +2023-03-13,38714,4875,"[""Headphones"", ""Wireless Mouse""]",4339.6,{},131611,1,Asia +2024-09-09,38715,8525,"[""Laptop"", ""Tablet""]",2855.44,{},149892,0,Africa +2024-06-19,38716,5907,"[""Charger"", ""Tablet""]",2417.18,"{""loyalty"": ""19%""}",58292,0,Asia +2023-08-02,38717,2306,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2325.93,{},268568,0,South America +2023-01-22,38718,851,"[""Tablet"", ""Laptop""]",4445.23,{},66708,0,South America +2024-07-01,38719,678,"[""Charger"", ""Laptop""]",1041.29,"{""seasonal"": ""13%""}",98602,0,North America +2024-10-24,38720,8533,"[""Keyboard"", ""Wireless Mouse""]",4334.45,"{""loyalty"": ""6%""}",218148,1,South America +2024-04-15,38721,4089,"[""Phone"", ""Laptop""]",4344.91,{},130567,0,Asia +2023-07-06,38722,9361,"[""Phone"", ""Keyboard""]",827.28,{},295945,0,Europe +2023-07-13,38723,7360,"[""Charger"", ""Tablet"", ""Laptop""]",4205.26,"{""loyalty"": ""9%""}",155586,0,Europe +2024-07-17,38724,8394,"[""Monitor""]",880.09,"{"""": ""5%""}",168092,0,North America +2023-09-20,38725,9536,"[""Tablet"", ""Phone"", ""Charger""]",840.13,"{""seasonal"": ""8%""}",295537,1,Asia +2024-10-24,38726,9333,"[""Monitor""]",1400.75,"{""seasonal"": ""17%""}",148512,1,Europe +2024-04-12,38727,5060,"[""Laptop""]",1258.52,"{""loyalty"": ""29%""}",74306,1,South America +2023-12-07,38728,4480,"[""Tablet""]",2665.54,"{""seasonal"": ""5%""}",41410,1,North America +2024-08-26,38729,7265,"[""Monitor""]",937.8,"{""promo"": ""25%""}",177037,1,South America +2024-02-05,38730,1643,"[""Laptop"", ""Tablet""]",4167.22,"{""promo"": ""14%""}",93427,0,Europe +2023-02-06,38731,3809,"[""Monitor"", ""Tablet""]",4607.83,"{"""": ""10%""}",82707,1,North America +2024-11-18,38732,7191,"[""Keyboard"", ""Headphones""]",4557.22,{},173246,0,South America +2023-11-21,38733,3051,"[""Charger""]",998.46,"{""promo"": ""10%""}",287337,1,Asia +2024-07-11,38734,3311,"[""Phone""]",2840.0,{},109079,0,Asia +2024-06-14,38735,5689,"[""Wireless Mouse""]",3107.75,{},248991,0,Africa +2024-08-08,38736,2691,"[""Phone"", ""Wireless Mouse""]",3212.9,{},43807,0,Asia +2024-06-27,38737,3255,"[""Laptop""]",4935.32,"{""seasonal"": ""11%""}",139799,1,North America +2023-12-14,38738,4937,"[""Wireless Mouse"", ""Headphones""]",2199.21,"{""seasonal"": ""7%""}",246086,1,South America +2023-05-27,38739,6884,"[""Monitor"", ""Phone"", ""Charger""]",1620.36,{},94430,1,Africa +2024-01-04,38740,3946,"[""Phone""]",813.66,{},132788,0,North America +2024-06-23,38741,7236,"[""Tablet"", ""Wireless Mouse""]",4019.21,{},164932,0,Europe +2024-01-02,38742,1007,"[""Tablet""]",1396.79,{},101362,1,Europe +2024-05-14,38743,4150,"[""Headphones"", ""Wireless Mouse""]",3321.31,"{""loyalty"": ""22%""}",69247,1,Europe +2023-07-30,38744,5536,"[""Headphones"", ""Monitor""]",365.5,{},88461,1,South America +2023-06-01,38745,3091,"[""Phone"", ""Headphones""]",4307.97,"{"""": ""10%""}",31130,1,Europe +2024-03-23,38746,5597,"[""Keyboard"", ""Monitor""]",4659.0,{},71590,1,North America +2023-11-28,38747,377,"[""Wireless Mouse"", ""Monitor""]",2570.51,"{""seasonal"": ""24%""}",197305,0,South America +2024-10-28,38748,2337,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1408.72,{},283039,1,North America +2023-06-13,38749,776,"[""Monitor"", ""Keyboard"", ""Tablet""]",3260.53,"{""promo"": ""24%""}",63408,1,South America +2024-04-12,38750,1822,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4649.13,{},239660,0,Africa +2023-04-16,38751,8714,"[""Headphones"", ""Laptop"", ""Charger""]",4894.85,"{""promo"": ""25%""}",250005,1,Europe +2024-04-17,38752,5377,"[""Keyboard""]",3402.88,"{""seasonal"": ""11%""}",127054,0,Africa +2023-11-27,38753,9831,"[""Headphones"", ""Charger"", ""Phone""]",4943.38,"{""promo"": ""26%""}",268688,0,South America +2024-08-15,38754,3769,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2860.74,{},48752,0,South America +2023-12-04,38755,4166,"[""Wireless Mouse"", ""Phone"", ""Charger""]",254.35,{},55155,0,North America +2023-08-07,38756,4136,"[""Monitor"", ""Tablet"", ""Phone""]",1912.52,{},88553,0,Africa +2023-12-29,38757,5232,"[""Keyboard"", ""Charger"", ""Laptop""]",4659.7,{},22808,1,Africa +2023-07-24,38758,2516,"[""Headphones""]",2968.41,{},62108,1,North America +2024-05-04,38759,2201,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3382.64,"{"""": ""7%""}",93509,0,Asia +2023-06-21,38760,8849,"[""Tablet"", ""Phone"", ""Laptop""]",3725.62,"{""loyalty"": ""10%""}",265632,1,North America +2024-05-06,38761,9724,"[""Laptop""]",3365.02,"{""seasonal"": ""29%""}",171775,1,Africa +2024-08-19,38762,4812,"[""Tablet"", ""Charger"", ""Monitor""]",954.48,"{""promo"": ""29%""}",113868,1,South America +2023-12-13,38763,2357,"[""Headphones"", ""Monitor"", ""Keyboard""]",3225.23,{},147858,0,Europe +2023-01-18,38764,8022,"[""Keyboard"", ""Tablet""]",3329.47,{},114600,1,North America +2023-03-02,38765,3131,"[""Keyboard""]",3465.66,"{""promo"": ""30%""}",8014,1,South America +2023-04-23,38766,63,"[""Keyboard""]",2011.71,{},110881,0,Africa +2024-03-11,38767,6863,"[""Keyboard""]",4270.98,"{"""": ""11%""}",1802,0,Europe +2023-02-15,38768,8367,"[""Charger""]",1089.59,{},37170,1,South America +2024-01-23,38769,6299,"[""Tablet""]",3569.43,{},221323,0,North America +2023-02-04,38770,9675,"[""Keyboard""]",2634.85,{},96720,0,North America +2024-09-08,38771,7180,"[""Tablet"", ""Phone"", ""Laptop""]",4784.97,"{"""": ""22%""}",270452,1,Africa +2024-09-03,38772,9470,"[""Laptop"", ""Keyboard"", ""Tablet""]",634.1,"{"""": ""24%""}",175653,1,South America +2024-12-28,38773,8386,"[""Charger""]",839.45,{},155292,1,Africa +2024-07-08,38774,6103,"[""Wireless Mouse""]",4218.48,{},145741,0,Asia +2024-05-23,38775,5831,"[""Tablet"", ""Charger""]",2044.61,"{""seasonal"": ""19%""}",200972,0,South America +2023-12-20,38776,6934,"[""Charger""]",4493.04,"{""loyalty"": ""5%""}",138482,1,South America +2024-08-18,38777,5018,"[""Keyboard"", ""Monitor"", ""Phone""]",1872.62,"{""loyalty"": ""26%""}",264219,0,Europe +2023-10-08,38778,6834,"[""Tablet"", ""Charger"", ""Laptop""]",1045.94,"{""seasonal"": ""27%""}",24259,1,Asia +2023-03-13,38779,5943,"[""Phone"", ""Monitor"", ""Tablet""]",4170.19,{},104364,1,Asia +2023-03-03,38780,1629,"[""Laptop"", ""Headphones"", ""Tablet""]",4580.32,"{""loyalty"": ""20%""}",106170,0,South America +2024-02-03,38781,9115,"[""Keyboard"", ""Phone"", ""Monitor""]",146.37,"{"""": ""7%""}",51946,1,South America +2023-11-24,38782,3673,"[""Monitor""]",3429.12,"{""promo"": ""12%""}",3227,0,Asia +2024-03-30,38783,1197,"[""Monitor"", ""Charger""]",3089.53,"{""loyalty"": ""13%""}",52480,0,Africa +2024-10-22,38784,7944,"[""Laptop"", ""Phone""]",3590.32,"{""loyalty"": ""17%""}",76579,0,Africa +2023-10-09,38785,6353,"[""Laptop""]",1258.38,{},76264,0,Asia +2023-11-28,38786,1517,"[""Phone""]",3746.6,"{""seasonal"": ""15%""}",6337,1,Africa +2023-10-09,38787,3101,"[""Headphones"", ""Laptop""]",682.38,"{""seasonal"": ""8%""}",158924,0,South America +2024-02-23,38788,4847,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1990.46,"{""loyalty"": ""27%""}",188366,0,Europe +2024-06-24,38789,2635,"[""Charger"", ""Headphones""]",1247.57,"{""seasonal"": ""9%""}",180656,0,North America +2023-07-27,38790,69,"[""Phone"", ""Charger"", ""Laptop""]",4006.84,{},253923,1,Europe +2023-05-10,38791,1853,"[""Tablet"", ""Headphones"", ""Phone""]",676.04,"{""promo"": ""14%""}",282444,0,South America +2023-12-01,38792,7227,"[""Monitor""]",2784.83,"{""seasonal"": ""10%""}",258480,1,Europe +2024-11-21,38793,9335,"[""Wireless Mouse""]",2134.16,{},180039,1,Europe +2023-03-09,38794,2407,"[""Keyboard"", ""Headphones"", ""Laptop""]",4963.55,"{""promo"": ""23%""}",112834,0,South America +2024-02-23,38795,6086,"[""Headphones"", ""Wireless Mouse""]",3584.51,{},290045,1,North America +2024-01-22,38796,3827,"[""Monitor""]",2586.43,{},271569,0,Europe +2024-09-24,38797,1261,"[""Wireless Mouse""]",1258.93,"{""seasonal"": ""24%""}",22027,0,North America +2023-01-23,38798,4334,"[""Charger"", ""Wireless Mouse""]",4254.61,{},76249,0,South America +2023-12-31,38799,8705,"[""Headphones"", ""Laptop"", ""Monitor""]",4747.58,"{""seasonal"": ""15%""}",106543,1,Asia +2024-07-21,38800,9867,"[""Wireless Mouse""]",1511.77,"{""seasonal"": ""12%""}",48127,0,Africa +2024-10-04,38801,6308,"[""Charger""]",2464.39,"{""promo"": ""5%""}",175763,1,Europe +2023-10-04,38802,8481,"[""Wireless Mouse"", ""Keyboard""]",4084.44,{},10611,0,Africa +2024-06-17,38803,3952,"[""Laptop""]",4196.78,"{"""": ""21%""}",248522,1,North America +2023-03-11,38804,1501,"[""Phone"", ""Charger""]",3723.44,{},214386,1,Africa +2024-04-02,38805,2915,"[""Charger"", ""Phone"", ""Keyboard""]",1192.49,"{""seasonal"": ""10%""}",10144,0,South America +2024-01-22,38806,1134,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3716.7,"{""loyalty"": ""10%""}",185841,1,Asia +2023-12-06,38807,9604,"[""Wireless Mouse""]",1049.08,"{""seasonal"": ""20%""}",268819,0,Africa +2024-03-12,38808,6809,"[""Wireless Mouse"", ""Phone""]",4360.96,{},257759,0,Africa +2024-07-13,38809,3902,"[""Tablet"", ""Headphones""]",3918.18,{},137926,0,Asia +2024-06-30,38810,3518,"[""Charger"", ""Monitor""]",3388.1,"{"""": ""12%""}",56823,1,North America +2023-07-10,38811,1533,"[""Headphones"", ""Keyboard"", ""Monitor""]",2491.85,{},154536,0,South America +2023-07-31,38812,3520,"[""Headphones"", ""Charger""]",3338.35,"{""promo"": ""30%""}",8880,0,North America +2024-02-14,38813,1836,"[""Monitor"", ""Tablet"", ""Charger""]",3735.6,"{""seasonal"": ""17%""}",274876,1,Africa +2023-09-18,38814,9152,"[""Keyboard"", ""Monitor"", ""Phone""]",291.4,"{""promo"": ""12%""}",192879,1,North America +2024-04-26,38815,4568,"[""Charger""]",2509.11,"{""promo"": ""21%""}",55360,1,Africa +2023-01-25,38816,9069,"[""Keyboard"", ""Monitor"", ""Headphones""]",432.53,{},157801,0,South America +2024-08-17,38817,3881,"[""Laptop"", ""Headphones""]",4404.07,{},22420,1,South America +2023-11-17,38818,4618,"[""Headphones"", ""Charger""]",1154.02,{},134358,0,North America +2023-07-29,38819,9554,"[""Phone"", ""Wireless Mouse""]",4926.89,"{""promo"": ""10%""}",14895,1,South America +2024-02-10,38820,1338,"[""Monitor"", ""Keyboard""]",1820.47,{},66431,1,North America +2023-08-30,38821,3106,"[""Laptop""]",1249.11,"{""loyalty"": ""23%""}",266029,0,Europe +2023-04-07,38822,6623,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1703.76,"{"""": ""9%""}",84900,0,Asia +2023-07-16,38823,8517,"[""Phone""]",595.47,"{""loyalty"": ""7%""}",36057,0,North America +2023-09-21,38824,6192,"[""Laptop""]",1188.64,"{""promo"": ""24%""}",234253,0,Africa +2024-12-06,38825,6801,"[""Keyboard"", ""Tablet"", ""Headphones""]",3125.09,{},74306,0,South America +2024-05-21,38826,7245,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4261.69,"{""promo"": ""17%""}",34898,1,South America +2023-07-30,38827,8088,"[""Charger""]",4951.64,"{""loyalty"": ""10%""}",159427,0,Africa +2024-01-01,38828,4635,"[""Phone""]",687.21,{},215567,0,Asia +2024-08-22,38829,6098,"[""Keyboard""]",411.33,{},70102,0,Africa +2023-11-28,38830,6665,"[""Laptop"", ""Monitor""]",3586.59,{},2439,0,Europe +2024-08-09,38831,2275,"[""Wireless Mouse"", ""Monitor""]",2778.7,{},204811,1,South America +2024-01-10,38832,6897,"[""Charger"", ""Monitor""]",1781.02,"{""seasonal"": ""29%""}",57152,1,Asia +2023-09-01,38833,7635,"[""Keyboard"", ""Monitor""]",1103.45,"{"""": ""12%""}",161249,1,South America +2024-01-08,38834,1760,"[""Keyboard"", ""Wireless Mouse""]",2783.64,"{""promo"": ""20%""}",170626,0,Africa +2023-09-15,38835,9994,"[""Charger"", ""Wireless Mouse""]",3036.99,"{"""": ""13%""}",227367,1,Africa +2024-08-31,38836,808,"[""Laptop"", ""Charger""]",2477.87,{},211146,1,South America +2023-10-24,38837,3373,"[""Tablet"", ""Headphones"", ""Phone""]",1702.04,{},123298,1,South America +2024-06-12,38838,9448,"[""Laptop"", ""Monitor"", ""Headphones""]",1649.3,{},214277,0,Africa +2024-06-27,38839,1217,"[""Tablet""]",4870.67,"{""promo"": ""9%""}",19333,1,South America +2023-01-05,38840,698,"[""Monitor""]",575.94,{},285569,1,Africa +2023-03-25,38841,6863,"[""Phone"", ""Monitor"", ""Charger""]",1052.41,"{"""": ""22%""}",208873,0,Europe +2023-11-17,38842,4595,"[""Phone""]",4434.57,{},161695,0,Africa +2023-07-30,38843,7831,"[""Headphones""]",4924.8,{},34655,0,South America +2023-08-22,38844,3563,"[""Tablet""]",1671.72,"{""seasonal"": ""26%""}",93213,0,Asia +2023-12-18,38845,4427,"[""Headphones""]",1544.14,{},266332,1,Asia +2024-10-19,38846,6641,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2590.65,{},62379,0,Asia +2023-07-21,38847,8278,"[""Laptop"", ""Monitor"", ""Headphones""]",3443.71,"{"""": ""12%""}",240014,0,South America +2024-09-12,38848,8913,"[""Tablet""]",209.57,{},147949,0,North America +2024-03-30,38849,7351,"[""Tablet"", ""Wireless Mouse""]",852.83,"{""seasonal"": ""29%""}",200644,1,North America +2024-11-09,38850,8404,"[""Phone"", ""Monitor""]",2120.46,"{""seasonal"": ""14%""}",213736,0,Europe +2024-12-04,38851,3401,"[""Monitor"", ""Keyboard""]",833.03,"{"""": ""20%""}",298751,0,Europe +2024-05-23,38852,2123,"[""Monitor"", ""Charger""]",4740.4,"{""loyalty"": ""21%""}",117873,1,North America +2024-07-13,38853,4773,"[""Headphones""]",2375.29,{},172145,1,Europe +2024-10-20,38854,9222,"[""Monitor""]",4449.78,"{""loyalty"": ""17%""}",154583,1,North America +2024-02-14,38855,1937,"[""Tablet"", ""Phone""]",335.7,"{""seasonal"": ""7%""}",231395,0,Europe +2023-09-14,38856,4636,"[""Charger"", ""Monitor""]",4532.13,{},21350,0,Europe +2023-09-24,38857,2977,"[""Charger""]",351.86,{},79010,0,Europe +2023-01-27,38858,6093,"[""Laptop""]",4337.44,{},157005,1,South America +2023-04-16,38859,7144,"[""Wireless Mouse"", ""Phone""]",3156.23,"{""promo"": ""5%""}",256522,1,Asia +2023-02-27,38860,8867,"[""Laptop"", ""Phone""]",4902.21,{},172500,0,Africa +2024-03-10,38861,6781,"[""Headphones""]",137.97,{},93763,1,North America +2024-11-08,38862,2513,"[""Charger"", ""Keyboard""]",1593.03,{},44660,0,Europe +2023-11-24,38863,5334,"[""Headphones"", ""Keyboard"", ""Charger""]",988.02,"{""promo"": ""23%""}",132490,0,Africa +2024-09-29,38864,4451,"[""Laptop"", ""Headphones"", ""Monitor""]",164.8,"{""promo"": ""16%""}",188177,0,Asia +2024-08-23,38865,5417,"[""Phone"", ""Laptop"", ""Keyboard""]",2419.4,"{""promo"": ""21%""}",217267,1,North America +2024-05-10,38866,4848,"[""Charger""]",4803.3,{},259941,1,Europe +2024-11-26,38867,8704,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4261.43,"{""loyalty"": ""19%""}",168947,0,Europe +2024-08-28,38868,8605,"[""Headphones"", ""Phone"", ""Charger""]",1306.99,{},265477,1,Asia +2024-07-21,38869,4186,"[""Laptop"", ""Tablet""]",3545.2,"{""loyalty"": ""7%""}",158872,0,Asia +2023-11-26,38870,658,"[""Charger""]",86.33,"{""promo"": ""14%""}",11843,0,Europe +2023-05-02,38871,5892,"[""Keyboard"", ""Charger"", ""Phone""]",772.43,"{""loyalty"": ""11%""}",175747,0,South America +2024-09-24,38872,6701,"[""Tablet"", ""Phone""]",3527.02,{},263930,0,Africa +2023-03-25,38873,8815,"[""Keyboard"", ""Phone"", ""Headphones""]",2329.36,"{""promo"": ""7%""}",255598,1,Africa +2023-06-20,38874,9363,"[""Tablet"", ""Headphones""]",485.63,"{"""": ""22%""}",113335,1,North America +2023-12-30,38875,4606,"[""Monitor""]",3383.99,"{""seasonal"": ""6%""}",285150,1,Europe +2023-07-02,38876,5248,"[""Laptop"", ""Charger""]",4014.87,"{""seasonal"": ""28%""}",294360,0,North America +2023-02-08,38877,8610,"[""Monitor"", ""Charger"", ""Headphones""]",1139.64,"{""loyalty"": ""22%""}",248764,0,Europe +2024-12-18,38878,6688,"[""Monitor""]",1626.74,"{""promo"": ""23%""}",88537,0,North America +2024-04-02,38879,9791,"[""Keyboard"", ""Monitor"", ""Charger""]",3706.32,{},204470,1,Africa +2024-03-30,38880,1716,"[""Headphones"", ""Wireless Mouse""]",2459.85,"{""seasonal"": ""8%""}",203150,1,Europe +2023-12-07,38881,3455,"[""Tablet"", ""Keyboard""]",670.99,{},275652,1,Europe +2024-12-14,38882,4652,"[""Keyboard""]",1818.1,{},5910,1,South America +2024-12-30,38883,879,"[""Headphones"", ""Laptop""]",2313.3,{},5570,0,Europe +2024-03-07,38884,4338,"[""Charger"", ""Monitor"", ""Laptop""]",4107.62,{},130540,0,North America +2024-09-29,38885,721,"[""Wireless Mouse"", ""Headphones""]",2168.03,{},252042,1,Europe +2024-10-11,38886,5119,"[""Monitor""]",4231.2,"{""loyalty"": ""29%""}",215202,1,Asia +2024-02-16,38887,1996,"[""Phone""]",3522.16,{},236724,1,North America +2024-11-02,38888,3712,"[""Headphones"", ""Charger""]",3054.9,"{""seasonal"": ""12%""}",98816,0,Europe +2023-03-16,38889,522,"[""Wireless Mouse""]",4470.55,{},175708,1,Europe +2023-10-13,38890,6762,"[""Charger""]",4508.52,"{"""": ""7%""}",13250,0,Europe +2023-02-04,38891,2515,"[""Tablet"", ""Charger""]",758.77,{},173655,1,North America +2023-11-27,38892,5990,"[""Monitor""]",1730.13,{},48609,0,Europe +2023-11-11,38893,299,"[""Headphones""]",3521.65,"{""seasonal"": ""21%""}",186892,0,Europe +2024-05-25,38894,4520,"[""Phone"", ""Keyboard"", ""Monitor""]",1506.44,"{""loyalty"": ""23%""}",281537,1,Europe +2023-04-02,38895,5483,"[""Laptop"", ""Tablet"", ""Monitor""]",710.06,{},248012,0,Asia +2023-09-07,38896,1747,"[""Headphones"", ""Phone""]",2035.11,"{"""": ""24%""}",51369,0,North America +2023-04-27,38897,886,"[""Laptop"", ""Headphones""]",4199.08,{},175396,1,Asia +2023-09-03,38898,2987,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3745.55,{},5189,1,Europe +2023-11-13,38899,3176,"[""Keyboard"", ""Laptop"", ""Charger""]",2854.36,"{"""": ""6%""}",130479,0,Asia +2023-07-18,38900,6359,"[""Charger""]",1788.29,"{""loyalty"": ""27%""}",88054,1,Asia +2024-09-17,38901,8281,"[""Wireless Mouse"", ""Charger""]",1242.84,{},17646,1,Asia +2024-06-12,38902,7653,"[""Headphones""]",2886.65,{},210666,0,South America +2023-05-16,38903,4554,"[""Wireless Mouse""]",4023.76,"{"""": ""28%""}",258526,1,Africa +2024-01-21,38904,9677,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1150.52,"{""promo"": ""15%""}",180634,0,South America +2024-06-06,38905,8492,"[""Monitor"", ""Laptop""]",1392.55,{},196988,1,Asia +2023-09-16,38906,8338,"[""Charger"", ""Phone""]",2390.32,{},40774,0,Africa +2024-09-28,38907,4239,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1846.27,"{""seasonal"": ""20%""}",84168,1,South America +2023-04-18,38908,193,"[""Phone""]",3770.89,{},6631,1,North America +2023-09-27,38909,2843,"[""Headphones"", ""Charger""]",4070.35,"{""seasonal"": ""25%""}",131997,0,Africa +2024-07-03,38910,111,"[""Monitor""]",4110.15,{},271197,1,North America +2023-10-16,38911,7855,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2969.54,{},257950,1,Africa +2023-04-08,38912,1443,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4009.02,{},220401,1,Africa +2023-12-30,38913,1802,"[""Phone"", ""Monitor"", ""Keyboard""]",2835.66,{},131083,1,Europe +2023-07-13,38914,2488,"[""Laptop"", ""Charger""]",2768.69,{},88052,0,North America +2023-06-19,38915,2301,"[""Headphones"", ""Charger"", ""Phone""]",499.14,{},258654,1,Europe +2024-03-17,38916,8774,"[""Laptop""]",4374.36,{},288838,0,Asia +2024-09-13,38917,2312,"[""Phone"", ""Headphones""]",531.31,"{""loyalty"": ""26%""}",172320,1,North America +2024-09-19,38918,3230,"[""Headphones""]",145.96,{},28861,0,Europe +2023-02-04,38919,5643,"[""Monitor""]",888.12,"{"""": ""8%""}",65224,1,Africa +2024-03-01,38920,1560,"[""Keyboard"", ""Laptop"", ""Tablet""]",1307.37,{},219592,0,North America +2024-07-16,38921,542,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",938.69,{},269899,0,Africa +2023-07-03,38922,7171,"[""Keyboard""]",910.16,"{""loyalty"": ""9%""}",73894,0,Africa +2024-05-14,38923,9289,"[""Laptop""]",4958.57,"{""seasonal"": ""10%""}",248465,0,Africa +2023-12-28,38924,1083,"[""Headphones"", ""Phone""]",1223.07,"{""loyalty"": ""18%""}",295138,0,Asia +2024-01-11,38925,6142,"[""Phone"", ""Monitor"", ""Charger""]",4901.44,{},121173,0,Europe +2024-04-17,38926,6596,"[""Tablet"", ""Monitor""]",3673.99,"{""loyalty"": ""12%""}",32866,1,Europe +2023-10-22,38927,905,"[""Headphones"", ""Tablet"", ""Phone""]",1870.56,{},270120,0,Africa +2024-07-14,38928,1437,"[""Keyboard"", ""Laptop""]",1168.45,"{""loyalty"": ""21%""}",180743,0,Asia +2023-11-30,38929,7676,"[""Laptop""]",4150.22,{},135787,1,South America +2023-06-08,38930,2532,"[""Headphones"", ""Keyboard""]",4524.41,"{""seasonal"": ""30%""}",203762,0,North America +2024-09-09,38931,2794,"[""Headphones"", ""Monitor""]",3986.16,"{""loyalty"": ""14%""}",43208,1,Europe +2023-02-19,38932,1225,"[""Charger"", ""Headphones"", ""Laptop""]",977.12,{},105165,0,North America +2024-03-12,38933,2100,"[""Monitor"", ""Charger"", ""Keyboard""]",3395.85,"{""loyalty"": ""7%""}",257705,0,Asia +2024-05-18,38934,9977,"[""Monitor""]",1127.38,{},123699,0,Africa +2023-11-26,38935,5532,"[""Headphones""]",394.99,{},214889,1,South America +2023-05-06,38936,7428,"[""Wireless Mouse"", ""Monitor""]",3850.48,{},29242,1,North America +2024-06-21,38937,3424,"[""Keyboard"", ""Monitor""]",3876.05,"{"""": ""9%""}",294127,0,South America +2024-09-03,38938,3177,"[""Headphones""]",3248.31,{},63404,1,North America +2024-03-26,38939,7157,"[""Tablet""]",1773.79,{},223231,0,Asia +2023-06-17,38940,7323,"[""Phone""]",1231.94,{},9762,1,Africa +2023-06-02,38941,3552,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",252.45,"{"""": ""28%""}",127820,1,South America +2024-10-03,38942,959,"[""Tablet""]",1738.19,"{""seasonal"": ""14%""}",112994,1,Africa +2024-08-11,38943,6364,"[""Tablet"", ""Phone"", ""Keyboard""]",4255.64,"{""promo"": ""22%""}",83565,0,Asia +2024-12-24,38944,6039,"[""Laptop""]",1780.85,{},121609,0,South America +2023-02-27,38945,9030,"[""Monitor"", ""Wireless Mouse""]",873.61,{},77849,1,Africa +2023-04-17,38946,40,"[""Wireless Mouse""]",4109.29,"{""seasonal"": ""19%""}",190514,1,Africa +2023-11-09,38947,5701,"[""Headphones"", ""Charger"", ""Keyboard""]",2950.86,"{""seasonal"": ""6%""}",244095,1,North America +2023-04-07,38948,8730,"[""Monitor"", ""Keyboard""]",3388.45,"{"""": ""28%""}",189197,1,Europe +2023-09-10,38949,5730,"[""Headphones""]",2738.27,"{"""": ""13%""}",44538,0,Africa +2023-05-12,38950,5925,"[""Tablet""]",4882.86,{},157974,1,South America +2023-06-12,38951,3653,"[""Headphones"", ""Keyboard"", ""Tablet""]",1676.99,"{"""": ""9%""}",272703,0,Africa +2024-10-16,38952,4592,"[""Tablet""]",1292.22,"{""loyalty"": ""18%""}",249236,0,North America +2023-08-07,38953,7096,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4008.43,{},148635,1,North America +2023-06-22,38954,6489,"[""Keyboard"", ""Charger"", ""Monitor""]",1592.21,{},104043,1,South America +2024-04-03,38955,7729,"[""Keyboard"", ""Headphones"", ""Tablet""]",4269.46,"{""loyalty"": ""16%""}",176493,1,North America +2023-09-09,38956,8009,"[""Headphones"", ""Monitor""]",326.26,"{""loyalty"": ""9%""}",283210,0,Asia +2024-06-10,38957,3157,"[""Tablet"", ""Headphones"", ""Charger""]",579.4,"{""seasonal"": ""16%""}",255954,0,Africa +2024-04-22,38958,3175,"[""Laptop"", ""Charger""]",2576.38,{},184859,1,North America +2024-07-02,38959,1181,"[""Laptop""]",897.08,{},193864,0,Asia +2024-05-01,38960,346,"[""Laptop"", ""Keyboard""]",4838.94,"{""seasonal"": ""6%""}",37680,1,Africa +2023-04-23,38961,3849,"[""Keyboard"", ""Headphones""]",3241.72,"{"""": ""11%""}",118199,1,Africa +2024-05-18,38962,2608,"[""Laptop"", ""Headphones""]",4921.24,{},53700,1,Asia +2024-09-11,38963,5661,"[""Headphones""]",2292.99,{},166139,0,South America +2023-08-04,38964,6435,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3893.01,{},262630,0,Asia +2024-08-13,38965,5852,"[""Laptop""]",1669.92,{},221403,0,Africa +2023-08-19,38966,6521,"[""Headphones"", ""Monitor"", ""Charger""]",1448.67,"{"""": ""20%""}",114633,0,Asia +2023-07-25,38967,8301,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1599.58,"{"""": ""24%""}",6356,0,Asia +2023-10-07,38968,7094,"[""Laptop"", ""Tablet""]",2447.54,{},139475,0,Europe +2023-01-18,38969,6961,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1366.16,"{""seasonal"": ""16%""}",65780,0,Europe +2024-01-03,38970,8154,"[""Laptop""]",1212.07,"{""promo"": ""10%""}",123881,1,North America +2023-10-07,38971,7592,"[""Charger""]",2934.99,"{""loyalty"": ""10%""}",273727,1,Africa +2023-09-06,38972,2346,"[""Headphones"", ""Tablet"", ""Keyboard""]",2601.75,"{"""": ""9%""}",73457,1,South America +2024-11-10,38973,5563,"[""Charger"", ""Monitor""]",3188.65,"{""promo"": ""11%""}",167007,0,Africa +2023-06-28,38974,4460,"[""Monitor"", ""Charger""]",1674.31,{},161695,0,Europe +2024-08-14,38975,3073,"[""Headphones"", ""Laptop""]",904.84,"{"""": ""14%""}",39056,1,Europe +2024-05-26,38976,7310,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2176.61,"{""seasonal"": ""7%""}",134930,0,Asia +2024-06-10,38977,8954,"[""Charger"", ""Headphones""]",4417.78,"{"""": ""5%""}",19674,1,Africa +2023-08-11,38978,5783,"[""Keyboard""]",4882.82,"{""promo"": ""19%""}",98696,0,South America +2023-06-05,38979,4871,"[""Keyboard"", ""Laptop""]",3605.7,{},184628,1,South America +2024-04-11,38980,4156,"[""Wireless Mouse""]",4256.67,{},201317,0,South America +2023-07-08,38981,1267,"[""Tablet""]",2974.77,{},45674,0,Africa +2024-05-11,38982,8859,"[""Keyboard"", ""Tablet""]",1043.88,"{""seasonal"": ""11%""}",245663,0,Africa +2024-01-30,38983,4721,"[""Laptop""]",4206.86,"{""loyalty"": ""24%""}",63828,0,Asia +2023-12-22,38984,7110,"[""Phone""]",1417.22,{},153247,1,Europe +2024-11-25,38985,7625,"[""Laptop"", ""Charger"", ""Headphones""]",1913.81,{},203638,1,Asia +2023-07-18,38986,5740,"[""Laptop""]",2586.14,"{""loyalty"": ""19%""}",27539,1,Asia +2024-05-16,38987,7891,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1477.33,"{""promo"": ""6%""}",137251,1,South America +2024-12-06,38988,5049,"[""Laptop"", ""Charger""]",410.07,"{""promo"": ""13%""}",297024,0,Asia +2024-09-03,38989,8461,"[""Monitor""]",3593.01,{},65427,0,South America +2023-02-15,38990,4097,"[""Keyboard""]",2645.93,{},165108,1,South America +2023-11-03,38991,2113,"[""Phone"", ""Tablet""]",4977.56,{},256297,1,North America +2023-12-21,38992,9866,"[""Keyboard"", ""Laptop""]",1185.83,{},217591,0,Africa +2024-05-21,38993,2549,"[""Laptop""]",1066.36,"{""loyalty"": ""11%""}",103118,0,Asia +2023-12-09,38994,808,"[""Tablet""]",503.96,"{""promo"": ""20%""}",276634,1,North America +2024-04-08,38995,3071,"[""Tablet"", ""Laptop"", ""Monitor""]",241.34,"{"""": ""23%""}",43876,0,Europe +2024-12-03,38996,1026,"[""Laptop""]",3709.37,"{"""": ""10%""}",82385,1,South America +2023-12-15,38997,5059,"[""Laptop"", ""Headphones""]",2499.45,{},230663,1,Europe +2024-10-15,38998,1179,"[""Charger"", ""Laptop"", ""Tablet""]",1118.48,{},25605,1,Asia +2024-12-19,38999,841,"[""Phone""]",1506.64,{},120494,0,Asia +2024-09-03,39000,3015,"[""Charger"", ""Tablet""]",4710.5,{},43505,0,Africa +2023-03-15,39001,6946,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3376.48,{},134330,0,Europe +2024-03-03,39002,5738,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3793.75,"{"""": ""17%""}",253817,1,Asia +2024-04-23,39003,9686,"[""Phone""]",1886.37,"{"""": ""9%""}",159475,1,Europe +2023-02-02,39004,4732,"[""Charger"", ""Tablet""]",2937.27,{},250255,0,Asia +2023-04-16,39005,5283,"[""Phone"", ""Monitor""]",1032.21,{},282217,1,Europe +2024-05-10,39006,8625,"[""Wireless Mouse""]",4586.87,"{""loyalty"": ""18%""}",298652,0,Asia +2024-09-28,39007,7400,"[""Charger"", ""Wireless Mouse""]",4166.32,{},126768,0,Europe +2024-08-04,39008,58,"[""Charger""]",2934.24,{},230473,1,Europe +2024-08-16,39009,3326,"[""Phone"", ""Headphones"", ""Keyboard""]",3242.5,"{""promo"": ""9%""}",209806,0,Asia +2024-12-06,39010,3506,"[""Laptop""]",3168.12,{},58037,1,Asia +2023-04-10,39011,4802,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1063.68,{},166425,0,North America +2023-02-02,39012,2463,"[""Monitor"", ""Laptop"", ""Charger""]",473.18,"{""loyalty"": ""6%""}",158669,1,Africa +2023-09-30,39013,3829,"[""Wireless Mouse""]",4242.34,{},292341,0,Asia +2023-02-01,39014,8922,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2892.94,{},261207,1,Africa +2023-03-09,39015,9736,"[""Charger"", ""Headphones""]",2251.85,{},248100,0,Europe +2024-06-19,39016,6329,"[""Laptop"", ""Keyboard""]",2742.63,"{"""": ""13%""}",175874,1,Africa +2023-04-10,39017,2074,"[""Headphones""]",4050.27,"{""loyalty"": ""20%""}",134083,1,Africa +2023-10-20,39018,373,"[""Phone"", ""Keyboard"", ""Laptop""]",3005.69,"{""seasonal"": ""26%""}",143546,1,Africa +2024-07-19,39019,4890,"[""Phone""]",3460.82,{},156484,0,South America +2024-02-25,39020,8768,"[""Tablet""]",3859.93,{},297445,1,South America +2024-08-03,39021,1359,"[""Wireless Mouse"", ""Headphones""]",170.7,"{""promo"": ""5%""}",65241,0,South America +2023-08-02,39022,6625,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1732.35,"{""seasonal"": ""6%""}",90909,1,Asia +2023-01-27,39023,3320,"[""Keyboard""]",4126.6,{},13439,0,North America +2024-03-26,39024,1282,"[""Monitor""]",3213.57,{},40653,1,Europe +2024-09-13,39025,9540,"[""Wireless Mouse""]",2707.56,{},282769,1,Africa +2024-06-22,39026,161,"[""Headphones""]",3637.14,"{""promo"": ""6%""}",20557,0,Africa +2023-04-30,39027,574,"[""Headphones"", ""Tablet""]",2393.53,{},272709,1,South America +2023-07-27,39028,9797,"[""Headphones""]",293.68,{},199707,0,North America +2023-11-16,39029,4246,"[""Keyboard""]",2129.62,{},239940,1,Asia +2023-05-28,39030,3804,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3575.22,"{"""": ""21%""}",203731,0,North America +2024-12-03,39031,4473,"[""Wireless Mouse"", ""Charger""]",824.3,{},84199,0,Asia +2024-06-15,39032,1032,"[""Laptop"", ""Charger"", ""Keyboard""]",639.8,{},223396,0,Asia +2023-12-08,39033,231,"[""Monitor"", ""Wireless Mouse""]",4295.35,{},253240,0,Asia +2023-09-30,39034,5524,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2420.44,"{""seasonal"": ""10%""}",152615,1,North America +2023-03-02,39035,6427,"[""Keyboard""]",779.67,{},200806,1,Europe +2024-05-09,39036,5473,"[""Wireless Mouse"", ""Monitor""]",3274.31,{},87161,0,Europe +2023-03-19,39037,5313,"[""Keyboard"", ""Monitor""]",269.59,{},63720,1,Africa +2024-09-23,39038,1162,"[""Keyboard"", ""Charger"", ""Monitor""]",3736.36,{},211557,1,South America +2023-03-02,39039,6536,"[""Keyboard"", ""Phone""]",4993.78,{},129305,1,North America +2023-03-28,39040,391,"[""Phone"", ""Wireless Mouse""]",4433.25,"{""seasonal"": ""25%""}",248756,1,South America +2023-02-24,39041,3495,"[""Tablet""]",1984.06,"{""promo"": ""30%""}",113782,0,Asia +2024-11-18,39042,5725,"[""Charger"", ""Tablet""]",781.55,{},158254,1,South America +2024-05-22,39043,3045,"[""Headphones""]",1037.74,"{"""": ""8%""}",3001,1,South America +2024-10-29,39044,673,"[""Headphones"", ""Keyboard"", ""Charger""]",4409.88,"{"""": ""19%""}",124614,0,Africa +2023-06-04,39045,405,"[""Headphones"", ""Keyboard"", ""Laptop""]",4986.78,"{""promo"": ""15%""}",9454,0,Africa +2023-01-11,39046,3590,"[""Phone""]",4186.96,{},78366,0,South America +2024-04-29,39047,3189,"[""Laptop"", ""Charger""]",1079.98,{},176264,0,Europe +2023-06-24,39048,9176,"[""Phone"", ""Tablet"", ""Charger""]",4150.8,{},276130,1,Europe +2023-11-07,39049,5753,"[""Headphones"", ""Laptop""]",3269.31,"{"""": ""24%""}",71019,0,North America +2024-09-29,39050,9937,"[""Keyboard""]",949.02,"{""promo"": ""15%""}",109685,1,North America +2023-08-02,39051,6478,"[""Keyboard""]",3561.74,{},143216,0,Europe +2024-09-11,39052,9211,"[""Phone"", ""Laptop"", ""Charger""]",3075.49,{},240507,0,Asia +2024-06-02,39053,8997,"[""Tablet""]",1965.43,"{"""": ""11%""}",2742,0,Africa +2023-03-17,39054,2211,"[""Charger""]",2612.93,"{""promo"": ""27%""}",84865,0,Africa +2023-09-01,39055,8870,"[""Headphones"", ""Wireless Mouse""]",2231.63,{},202196,1,Africa +2024-04-24,39056,4676,"[""Phone"", ""Headphones""]",1662.31,"{""loyalty"": ""15%""}",280724,1,South America +2024-09-15,39057,1565,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4121.08,{},63338,1,Europe +2023-09-20,39058,6402,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",444.31,{},133024,0,South America +2024-03-13,39059,9094,"[""Wireless Mouse"", ""Tablet""]",3614.97,{},196021,0,North America +2024-12-21,39060,4684,"[""Wireless Mouse""]",3733.5,"{""promo"": ""9%""}",107747,0,Asia +2024-04-07,39061,7264,"[""Monitor"", ""Headphones"", ""Charger""]",4948.8,{},142511,1,Africa +2023-04-22,39062,2239,"[""Headphones"", ""Laptop"", ""Charger""]",4657.5,"{""loyalty"": ""6%""}",26824,0,Europe +2024-07-19,39063,3887,"[""Headphones"", ""Phone""]",4504.41,{},152372,1,North America +2024-07-16,39064,3570,"[""Monitor"", ""Tablet""]",3963.58,{},172491,1,Asia +2023-11-15,39065,1410,"[""Tablet"", ""Headphones"", ""Laptop""]",4731.69,"{""loyalty"": ""9%""}",248503,0,Europe +2023-08-17,39066,2250,"[""Headphones"", ""Phone"", ""Tablet""]",2673.62,"{""seasonal"": ""26%""}",133453,0,South America +2024-07-17,39067,3408,"[""Charger"", ""Wireless Mouse""]",2842.44,{},102852,1,Africa +2024-02-21,39068,1616,"[""Tablet"", ""Monitor""]",2769.92,{},201033,0,North America +2023-08-02,39069,8871,"[""Wireless Mouse""]",1469.88,"{""promo"": ""15%""}",30314,0,Africa +2024-02-20,39070,8147,"[""Wireless Mouse"", ""Keyboard""]",2232.93,"{""seasonal"": ""23%""}",228015,0,Europe +2023-11-02,39071,7139,"[""Phone"", ""Monitor""]",3349.5,"{"""": ""13%""}",278619,1,North America +2024-03-14,39072,5649,"[""Laptop"", ""Headphones"", ""Charger""]",2646.67,"{"""": ""17%""}",212922,1,North America +2023-01-31,39073,8567,"[""Keyboard""]",180.71,{},203588,1,Asia +2023-01-07,39074,8902,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3679.08,{},84337,1,South America +2023-05-16,39075,4281,"[""Charger""]",2111.3,{},258369,0,Asia +2023-05-29,39076,4556,"[""Headphones""]",2307.04,"{""seasonal"": ""22%""}",4973,0,North America +2023-02-14,39077,4566,"[""Charger"", ""Keyboard"", ""Headphones""]",3278.69,"{""seasonal"": ""20%""}",55219,0,North America +2024-05-06,39078,7294,"[""Charger"", ""Monitor"", ""Keyboard""]",4374.21,{},253233,0,Africa +2023-09-10,39079,1102,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2622.54,{},32808,0,Asia +2024-01-08,39080,7682,"[""Headphones"", ""Phone"", ""Keyboard""]",2906.02,"{""seasonal"": ""21%""}",179033,0,South America +2024-08-13,39081,2695,"[""Keyboard"", ""Phone""]",1976.18,"{""loyalty"": ""17%""}",268572,1,North America +2023-07-25,39082,660,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2488.68,"{"""": ""10%""}",293794,0,Africa +2024-08-14,39083,3806,"[""Monitor""]",295.29,{},117790,1,Africa +2023-08-06,39084,6859,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3512.3,"{""loyalty"": ""22%""}",11004,1,Europe +2024-04-27,39085,3197,"[""Tablet"", ""Phone""]",3667.56,"{""promo"": ""18%""}",150576,1,South America +2024-03-24,39086,9799,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4872.8,{},130856,0,North America +2024-04-09,39087,7417,"[""Phone"", ""Headphones"", ""Tablet""]",409.35,{},231513,0,Asia +2024-03-08,39088,5528,"[""Laptop""]",151.44,"{""seasonal"": ""5%""}",117063,0,Europe +2024-07-26,39089,8393,"[""Laptop""]",2583.48,{},299535,0,Asia +2024-11-03,39090,8323,"[""Charger"", ""Tablet"", ""Laptop""]",4729.55,"{""loyalty"": ""7%""}",2555,0,Africa +2024-07-24,39091,4078,"[""Laptop""]",3885.21,{},282278,0,Europe +2024-02-19,39092,3932,"[""Tablet""]",4302.73,"{"""": ""28%""}",229552,0,Europe +2024-06-19,39093,6112,"[""Tablet""]",213.64,"{"""": ""8%""}",74262,0,Europe +2024-10-12,39094,7602,"[""Tablet"", ""Wireless Mouse""]",2526.47,"{""seasonal"": ""27%""}",249834,1,South America +2024-11-13,39095,4282,"[""Phone"", ""Monitor""]",297.07,{},62413,0,North America +2024-11-16,39096,5260,"[""Wireless Mouse"", ""Headphones""]",602.31,{},88374,0,Europe +2024-09-29,39097,4173,"[""Tablet""]",2054.19,"{""promo"": ""11%""}",1819,1,North America +2023-12-09,39098,1048,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3138.77,"{""loyalty"": ""9%""}",170290,0,South America +2023-08-10,39099,2110,"[""Wireless Mouse"", ""Headphones""]",171.88,"{""seasonal"": ""12%""}",17817,0,South America +2024-06-13,39100,2051,"[""Tablet"", ""Laptop""]",4509.37,{},94561,0,Asia +2024-06-28,39101,8304,"[""Monitor""]",4272.72,{},54960,0,North America +2023-01-29,39102,5244,"[""Tablet"", ""Monitor"", ""Phone""]",4427.5,{},216221,0,South America +2023-03-16,39103,9706,"[""Charger""]",4695.73,"{""loyalty"": ""14%""}",286967,1,Asia +2023-04-16,39104,9760,"[""Tablet""]",887.87,"{"""": ""22%""}",28391,0,South America +2023-06-17,39105,3803,"[""Keyboard"", ""Tablet""]",2613.88,"{""promo"": ""30%""}",265928,0,South America +2024-10-12,39106,3720,"[""Keyboard"", ""Tablet""]",4741.77,{},99821,0,South America +2023-05-07,39107,9888,"[""Charger"", ""Phone""]",1845.6,"{""loyalty"": ""8%""}",100615,0,North America +2024-12-17,39108,514,"[""Headphones"", ""Charger""]",749.62,{},141855,0,Asia +2024-11-20,39109,8743,"[""Keyboard"", ""Tablet""]",816.42,"{""seasonal"": ""15%""}",158519,0,Asia +2023-06-13,39110,9998,"[""Headphones"", ""Tablet""]",3034.72,{},221417,0,Asia +2024-09-24,39111,7980,"[""Headphones"", ""Laptop""]",3976.97,{},261550,0,Europe +2024-06-19,39112,5340,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2168.78,"{"""": ""18%""}",23755,0,South America +2023-07-13,39113,86,"[""Phone"", ""Headphones"", ""Keyboard""]",3399.8,{},189349,0,North America +2023-01-06,39114,7134,"[""Tablet"", ""Charger"", ""Laptop""]",3286.46,{},242194,1,North America +2024-11-25,39115,3595,"[""Headphones""]",740.92,"{""seasonal"": ""14%""}",141139,1,South America +2024-11-24,39116,365,"[""Keyboard""]",3384.55,"{""promo"": ""20%""}",207779,0,South America +2024-12-30,39117,1858,"[""Wireless Mouse""]",4995.6,"{""promo"": ""28%""}",203998,0,North America +2023-10-16,39118,2249,"[""Laptop""]",2002.67,{},290567,0,North America +2024-09-29,39119,511,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4801.47,"{""seasonal"": ""19%""}",32369,1,Africa +2024-06-24,39120,9804,"[""Monitor"", ""Headphones"", ""Laptop""]",2901.61,{},186790,0,Asia +2023-11-18,39121,1274,"[""Keyboard"", ""Wireless Mouse""]",2819.73,{},176976,1,Asia +2024-02-02,39122,7836,"[""Keyboard""]",338.55,"{"""": ""18%""}",164193,0,North America +2023-04-08,39123,2635,"[""Phone"", ""Keyboard""]",1461.82,"{""promo"": ""28%""}",54483,0,North America +2024-12-23,39124,5164,"[""Monitor"", ""Phone""]",4642.22,{},226138,1,South America +2024-09-19,39125,1934,"[""Phone"", ""Laptop"", ""Keyboard""]",1273.62,"{""promo"": ""10%""}",83567,0,North America +2023-09-24,39126,6279,"[""Monitor"", ""Tablet""]",2586.32,"{""seasonal"": ""18%""}",178623,0,North America +2024-03-22,39127,8015,"[""Headphones"", ""Keyboard"", ""Tablet""]",1204.04,{},31651,0,South America +2023-08-19,39128,4963,"[""Wireless Mouse""]",4708.39,{},205290,0,Europe +2023-10-03,39129,1018,"[""Headphones"", ""Charger""]",755.75,"{"""": ""14%""}",184392,0,Europe +2024-05-27,39130,3150,"[""Headphones"", ""Tablet"", ""Laptop""]",2229.19,{},283823,0,Asia +2024-02-01,39131,5520,"[""Charger""]",4396.39,{},32652,1,Europe +2024-08-10,39132,371,"[""Headphones""]",4023.23,"{"""": ""30%""}",246614,1,Europe +2023-10-03,39133,2167,"[""Charger"", ""Phone"", ""Tablet""]",845.08,{},14503,0,Africa +2024-04-27,39134,7316,"[""Charger"", ""Keyboard""]",1537.96,{},221284,1,Europe +2023-12-30,39135,4719,"[""Charger"", ""Monitor""]",1364.19,"{"""": ""18%""}",125006,1,Asia +2023-10-07,39136,7346,"[""Laptop"", ""Keyboard""]",4126.95,"{""promo"": ""15%""}",139480,1,Europe +2023-01-10,39137,1075,"[""Keyboard"", ""Laptop""]",2688.89,{},32348,0,South America +2024-05-19,39138,9422,"[""Charger"", ""Tablet"", ""Keyboard""]",2667.26,{},169101,1,North America +2023-03-17,39139,6799,"[""Laptop""]",552.5,"{""loyalty"": ""13%""}",290154,1,Europe +2023-04-01,39140,6807,"[""Monitor"", ""Laptop""]",3138.35,"{""promo"": ""24%""}",31850,1,Asia +2024-12-10,39141,3870,"[""Phone""]",1155.68,"{""seasonal"": ""27%""}",237208,0,North America +2024-03-19,39142,7061,"[""Headphones"", ""Monitor""]",782.49,{},276281,1,North America +2024-09-29,39143,5356,"[""Keyboard"", ""Laptop""]",3572.25,"{""seasonal"": ""23%""}",24818,0,Africa +2024-07-04,39144,178,"[""Laptop""]",3936.38,{},208193,1,North America +2023-06-22,39145,3257,"[""Monitor""]",923.22,{},149230,1,North America +2024-12-02,39146,8753,"[""Phone"", ""Keyboard"", ""Laptop""]",3734.49,"{""loyalty"": ""6%""}",255952,1,Asia +2023-04-11,39147,1640,"[""Keyboard"", ""Phone"", ""Laptop""]",2874.58,{},113278,1,Asia +2024-10-26,39148,9322,"[""Headphones"", ""Monitor""]",1516.08,"{""promo"": ""7%""}",111148,0,Europe +2024-09-21,39149,3745,"[""Headphones""]",3567.52,{},190031,0,Europe +2023-12-09,39150,1961,"[""Monitor"", ""Headphones"", ""Laptop""]",981.78,{},65030,1,Africa +2023-03-21,39151,9463,"[""Monitor"", ""Charger""]",2398.25,"{"""": ""29%""}",5255,1,North America +2023-01-23,39152,4243,"[""Wireless Mouse"", ""Headphones""]",556.51,{},33363,1,North America +2023-04-28,39153,2362,"[""Keyboard""]",1509.42,"{"""": ""28%""}",255991,0,North America +2023-04-08,39154,9758,"[""Phone"", ""Charger""]",181.87,{},99788,1,Asia +2023-04-26,39155,2780,"[""Phone"", ""Laptop""]",2210.45,"{""loyalty"": ""30%""}",212574,0,North America +2024-11-12,39156,8930,"[""Monitor""]",3781.9,"{""promo"": ""8%""}",147328,1,Europe +2023-04-23,39157,9298,"[""Headphones""]",3797.07,{},203042,0,Africa +2024-06-26,39158,1577,"[""Charger""]",4332.62,{},64155,0,Africa +2024-09-30,39159,5503,"[""Wireless Mouse"", ""Monitor""]",859.28,"{""promo"": ""27%""}",29073,1,Europe +2024-07-26,39160,8494,"[""Laptop"", ""Monitor"", ""Tablet""]",4091.82,{},248148,0,Asia +2023-10-09,39161,2953,"[""Wireless Mouse"", ""Phone""]",4896.72,"{""promo"": ""10%""}",229147,1,Asia +2023-02-27,39162,1497,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1562.21,"{"""": ""6%""}",126307,0,Africa +2023-03-19,39163,8329,"[""Tablet""]",2810.98,{},145706,0,North America +2023-02-01,39164,8114,"[""Monitor""]",2151.58,"{"""": ""8%""}",21926,1,North America +2023-01-05,39165,309,"[""Monitor"", ""Headphones""]",4735.61,"{"""": ""13%""}",197810,0,South America +2023-09-13,39166,5253,"[""Keyboard""]",1969.36,"{"""": ""13%""}",155399,1,South America +2023-03-20,39167,1880,"[""Wireless Mouse"", ""Laptop""]",4780.81,"{"""": ""30%""}",16998,1,North America +2024-08-14,39168,2068,"[""Keyboard""]",2651.52,"{"""": ""14%""}",52319,1,South America +2024-10-09,39169,3873,"[""Keyboard"", ""Wireless Mouse""]",1570.88,{},254104,0,Africa +2024-10-12,39170,2304,"[""Tablet""]",1896.08,"{""promo"": ""9%""}",17823,0,North America +2024-02-28,39171,1566,"[""Charger"", ""Monitor"", ""Phone""]",2196.08,"{""loyalty"": ""6%""}",99938,1,South America +2024-10-26,39172,8906,"[""Keyboard"", ""Laptop""]",3386.16,"{""promo"": ""27%""}",6370,0,South America +2023-11-15,39173,6525,"[""Charger""]",468.08,{},273801,1,South America +2024-11-24,39174,682,"[""Phone"", ""Keyboard""]",4260.39,{},125273,0,South America +2024-10-23,39175,6826,"[""Charger""]",3855.25,{},282750,1,South America +2023-11-30,39176,7702,"[""Laptop""]",4512.78,{},248780,0,Europe +2023-07-03,39177,8895,"[""Phone"", ""Keyboard""]",844.35,{},222181,0,Europe +2023-12-29,39178,9174,"[""Headphones"", ""Monitor"", ""Tablet""]",2139.14,{},184031,1,Africa +2024-03-07,39179,8321,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3478.7,"{""seasonal"": ""29%""}",140079,0,Asia +2023-12-28,39180,6237,"[""Phone""]",2577.45,"{""seasonal"": ""5%""}",196548,0,Asia +2024-03-22,39181,5434,"[""Tablet""]",2944.22,{},252361,1,North America +2023-03-26,39182,7727,"[""Tablet""]",4052.78,"{""promo"": ""26%""}",155300,1,Asia +2023-11-16,39183,4131,"[""Laptop"", ""Tablet"", ""Charger""]",4642.49,"{"""": ""28%""}",286464,1,Africa +2023-03-19,39184,699,"[""Keyboard"", ""Tablet""]",2320.98,{},296965,1,South America +2023-10-29,39185,4415,"[""Monitor"", ""Tablet"", ""Headphones""]",4358.49,{},114981,1,Asia +2024-11-29,39186,5665,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1277.08,{},15672,0,Africa +2023-04-17,39187,9150,"[""Monitor"", ""Headphones"", ""Keyboard""]",1958.31,"{""seasonal"": ""26%""}",99567,1,Asia +2024-11-26,39188,6972,"[""Tablet""]",4691.63,"{""promo"": ""5%""}",292642,1,Europe +2023-01-31,39189,1013,"[""Charger""]",4948.18,{},31811,0,South America +2023-06-19,39190,746,"[""Headphones"", ""Keyboard"", ""Laptop""]",1454.25,"{""promo"": ""23%""}",12530,0,Africa +2024-02-09,39191,4583,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2822.82,{},166614,1,Asia +2024-08-04,39192,3979,"[""Charger""]",3078.89,"{"""": ""19%""}",155340,0,South America +2023-07-27,39193,4935,"[""Tablet""]",3566.43,"{"""": ""30%""}",158450,0,South America +2023-02-19,39194,9351,"[""Charger""]",2796.87,{},213418,0,South America +2023-11-30,39195,5281,"[""Laptop"", ""Phone""]",96.36,"{""seasonal"": ""11%""}",172836,0,North America +2023-05-12,39196,7301,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3339.13,"{""seasonal"": ""7%""}",8155,1,Africa +2023-06-04,39197,3498,"[""Phone""]",3203.24,"{""loyalty"": ""10%""}",157040,0,South America +2023-12-24,39198,3647,"[""Headphones""]",4345.14,"{""loyalty"": ""24%""}",99214,0,Europe +2024-02-03,39199,1855,"[""Laptop"", ""Charger"", ""Phone""]",2793.35,"{""loyalty"": ""26%""}",266918,0,North America +2023-06-09,39200,1454,"[""Wireless Mouse"", ""Laptop""]",1598.97,"{""promo"": ""10%""}",114877,0,Asia +2024-05-30,39201,8323,"[""Phone"", ""Laptop""]",3517.33,"{""promo"": ""25%""}",74090,1,Europe +2024-03-18,39202,3805,"[""Keyboard"", ""Phone"", ""Monitor""]",4132.02,"{""promo"": ""18%""}",186150,0,Africa +2024-08-04,39203,6821,"[""Monitor"", ""Charger""]",3829.16,{},128594,0,Asia +2024-03-31,39204,3964,"[""Charger"", ""Laptop"", ""Headphones""]",3353.19,{},161296,0,North America +2024-04-15,39205,1033,"[""Keyboard""]",2641.09,{},154735,0,Africa +2023-02-12,39206,6152,"[""Laptop"", ""Tablet"", ""Phone""]",284.47,{},88991,1,Africa +2023-03-27,39207,5191,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",96.62,{},115120,1,Africa +2024-06-23,39208,6511,"[""Charger""]",3738.1,"{"""": ""24%""}",187016,1,Asia +2023-09-25,39209,4875,"[""Monitor"", ""Tablet""]",3944.99,{},150418,1,South America +2024-08-07,39210,2758,"[""Monitor""]",1853.41,{},238794,0,Europe +2024-06-12,39211,194,"[""Tablet""]",4903.16,{},90239,0,South America +2024-08-10,39212,7942,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2399.92,{},235494,0,North America +2024-09-09,39213,5080,"[""Laptop""]",1904.65,{},46198,0,Africa +2023-04-21,39214,2543,"[""Keyboard"", ""Monitor""]",3908.8,"{""seasonal"": ""22%""}",24944,0,South America +2024-12-29,39215,6810,"[""Keyboard"", ""Headphones""]",3807.76,"{""promo"": ""28%""}",16350,1,North America +2024-09-01,39216,4544,"[""Tablet""]",3999.18,{},76551,0,Asia +2024-07-07,39217,6120,"[""Laptop"", ""Tablet""]",4972.79,"{""loyalty"": ""28%""}",260561,0,Asia +2024-03-25,39218,2475,"[""Headphones""]",4468.82,"{""loyalty"": ""10%""}",149505,0,North America +2024-08-10,39219,3096,"[""Phone"", ""Wireless Mouse""]",3483.44,{},220299,0,Asia +2024-03-02,39220,4630,"[""Phone""]",2235.1,"{""loyalty"": ""10%""}",188173,0,Asia +2023-04-03,39221,8895,"[""Monitor""]",987.95,{},6294,1,North America +2024-06-30,39222,7498,"[""Keyboard"", ""Charger""]",4061.45,"{""loyalty"": ""30%""}",134270,0,North America +2024-10-17,39223,9143,"[""Tablet"", ""Headphones"", ""Charger""]",836.97,{},251347,1,South America +2023-02-10,39224,1881,"[""Headphones"", ""Wireless Mouse""]",1439.01,{},237498,0,Europe +2023-02-26,39225,8895,"[""Laptop"", ""Wireless Mouse""]",147.98,"{""seasonal"": ""8%""}",130103,1,North America +2024-01-29,39226,7508,"[""Monitor"", ""Headphones""]",919.63,"{""loyalty"": ""10%""}",183856,1,Asia +2023-08-30,39227,1674,"[""Monitor"", ""Headphones""]",2226.8,{},177830,1,Asia +2024-03-03,39228,2696,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4758.92,{},73554,1,Europe +2023-02-16,39229,5488,"[""Phone"", ""Laptop""]",2541.9,"{""seasonal"": ""15%""}",37714,0,Africa +2024-05-11,39230,8595,"[""Phone""]",4117.33,"{"""": ""13%""}",66589,0,North America +2024-02-23,39231,9230,"[""Monitor"", ""Tablet"", ""Laptop""]",568.86,"{""seasonal"": ""26%""}",43599,0,South America +2024-12-22,39232,7476,"[""Charger""]",1663.89,"{""promo"": ""5%""}",106727,1,Asia +2024-10-16,39233,8688,"[""Laptop"", ""Monitor""]",3742.42,{},264676,0,Africa +2023-10-02,39234,7409,"[""Phone""]",3994.45,"{""promo"": ""28%""}",32582,1,Africa +2023-06-28,39235,5256,"[""Keyboard"", ""Wireless Mouse""]",3502.09,{},97146,1,Asia +2023-12-12,39236,1565,"[""Wireless Mouse"", ""Laptop""]",2904.66,{},225283,1,South America +2024-03-23,39237,8363,"[""Phone""]",2436.22,{},154886,0,Asia +2024-11-01,39238,2539,"[""Headphones""]",2298.03,{},123763,0,Africa +2023-07-09,39239,7977,"[""Phone"", ""Monitor"", ""Tablet""]",3537.16,"{""promo"": ""22%""}",92136,0,South America +2024-11-12,39240,9803,"[""Keyboard""]",3350.13,{},140411,1,Africa +2024-10-03,39241,9407,"[""Charger"", ""Laptop"", ""Phone""]",4379.75,"{""promo"": ""5%""}",19726,0,Europe +2023-09-14,39242,5814,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3932.27,"{""promo"": ""20%""}",232466,1,South America +2024-09-29,39243,7742,"[""Phone"", ""Headphones"", ""Charger""]",3514.6,{},269455,0,South America +2023-08-19,39244,9885,"[""Headphones""]",784.5,{},147830,0,South America +2024-04-10,39245,4179,"[""Keyboard"", ""Phone""]",949.07,"{""promo"": ""26%""}",220235,1,North America +2023-07-19,39246,3039,"[""Headphones"", ""Tablet""]",1283.85,"{"""": ""10%""}",34849,1,Africa +2023-11-20,39247,8115,"[""Phone""]",2495.26,"{""seasonal"": ""12%""}",268743,1,Africa +2024-08-13,39248,865,"[""Tablet"", ""Monitor"", ""Keyboard""]",2093.29,"{""seasonal"": ""29%""}",125325,0,Africa +2024-10-08,39249,2408,"[""Laptop""]",3272.47,{},25149,1,North America +2023-09-07,39250,1892,"[""Charger""]",1886.14,{},200872,1,North America +2024-05-10,39251,4167,"[""Headphones""]",2810.8,"{"""": ""30%""}",66083,1,South America +2024-11-23,39252,2658,"[""Charger"", ""Wireless Mouse""]",4985.79,"{"""": ""26%""}",22531,0,Asia +2023-11-10,39253,5827,"[""Wireless Mouse""]",3846.28,"{""loyalty"": ""9%""}",62745,0,Europe +2024-03-19,39254,2693,"[""Monitor""]",1633.24,"{""seasonal"": ""16%""}",37076,0,Africa +2024-09-24,39255,7453,"[""Headphones""]",2408.6,"{"""": ""22%""}",10894,1,South America +2024-10-20,39256,5821,"[""Wireless Mouse"", ""Keyboard""]",688.79,"{""loyalty"": ""20%""}",260522,0,Europe +2023-03-01,39257,6129,"[""Headphones"", ""Keyboard"", ""Monitor""]",1431.81,{},136001,0,South America +2023-12-06,39258,121,"[""Laptop"", ""Charger""]",2731.1,"{""seasonal"": ""10%""}",121699,1,Africa +2024-12-11,39259,4760,"[""Wireless Mouse""]",2413.24,{},295192,1,South America +2023-08-13,39260,288,"[""Keyboard"", ""Monitor""]",906.72,{},262893,1,Asia +2024-06-11,39261,3042,"[""Wireless Mouse""]",746.19,"{""promo"": ""18%""}",130777,0,Africa +2024-01-06,39262,9853,"[""Charger"", ""Tablet""]",803.58,"{"""": ""10%""}",286499,0,Europe +2023-07-06,39263,9079,"[""Headphones"", ""Tablet"", ""Monitor""]",4526.54,"{""loyalty"": ""14%""}",159056,1,North America +2024-06-18,39264,344,"[""Charger"", ""Laptop"", ""Headphones""]",672.19,"{""loyalty"": ""19%""}",108600,1,Africa +2023-10-24,39265,6062,"[""Tablet""]",860.07,"{""promo"": ""8%""}",127259,0,Europe +2023-05-19,39266,5567,"[""Headphones"", ""Monitor"", ""Charger""]",3303.01,"{""seasonal"": ""5%""}",102959,0,North America +2024-05-25,39267,2734,"[""Charger"", ""Tablet""]",3696.82,{},235920,0,Asia +2024-04-24,39268,6916,"[""Headphones"", ""Tablet"", ""Keyboard""]",142.56,"{""promo"": ""23%""}",4503,0,Europe +2023-03-30,39269,1923,"[""Charger""]",3834.0,{},40816,1,North America +2023-09-28,39270,3201,"[""Monitor"", ""Tablet""]",2712.21,"{""loyalty"": ""10%""}",68881,0,Europe +2024-06-03,39271,1230,"[""Laptop""]",2273.87,{},282993,1,North America +2023-05-23,39272,9492,"[""Keyboard"", ""Monitor""]",2545.57,"{""promo"": ""16%""}",223422,1,South America +2023-12-27,39273,3056,"[""Tablet"", ""Phone"", ""Laptop""]",2415.13,"{"""": ""7%""}",221966,0,South America +2024-03-06,39274,1631,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1534.37,"{""seasonal"": ""24%""}",79352,0,North America +2023-02-17,39275,4932,"[""Monitor"", ""Keyboard""]",4661.39,"{"""": ""11%""}",233760,1,South America +2023-07-16,39276,1408,"[""Phone""]",2787.8,{},90786,0,South America +2023-03-20,39277,8683,"[""Tablet""]",473.54,{},93468,0,South America +2023-01-07,39278,8955,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1136.22,{},252733,1,Africa +2024-06-14,39279,8627,"[""Wireless Mouse"", ""Phone""]",273.81,"{""seasonal"": ""7%""}",8256,1,South America +2023-06-08,39280,1625,"[""Tablet"", ""Charger"", ""Headphones""]",1053.94,{},10886,0,Asia +2024-04-15,39281,8785,"[""Laptop"", ""Headphones"", ""Monitor""]",1718.48,"{""promo"": ""21%""}",50079,0,South America +2024-04-05,39282,8031,"[""Charger""]",1963.39,"{""loyalty"": ""14%""}",190687,0,South America +2023-12-03,39283,9229,"[""Wireless Mouse"", ""Tablet""]",2872.25,{},94784,0,Africa +2023-10-17,39284,6008,"[""Keyboard""]",3546.55,"{""seasonal"": ""13%""}",149869,0,Africa +2023-06-01,39285,4888,"[""Phone"", ""Headphones""]",2736.33,"{""loyalty"": ""16%""}",25230,0,Africa +2024-04-21,39286,4018,"[""Charger"", ""Headphones"", ""Tablet""]",3017.77,{},199320,0,North America +2024-07-30,39287,8422,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",571.84,"{""promo"": ""15%""}",101167,1,Asia +2024-09-28,39288,9166,"[""Wireless Mouse""]",1641.19,{},293407,0,North America +2024-07-27,39289,631,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2320.82,"{"""": ""10%""}",169804,1,Asia +2024-06-09,39290,3664,"[""Monitor"", ""Wireless Mouse""]",4612.87,"{""loyalty"": ""27%""}",295828,1,South America +2023-04-13,39291,4281,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2947.22,{},39972,0,Asia +2023-12-12,39292,7688,"[""Phone"", ""Headphones""]",2025.88,{},223678,0,Europe +2024-01-12,39293,7656,"[""Phone""]",227.49,{},63513,0,North America +2023-01-19,39294,8494,"[""Tablet""]",4811.28,"{""seasonal"": ""12%""}",215493,0,Africa +2023-09-30,39295,5011,"[""Wireless Mouse""]",1238.52,{},89402,1,Africa +2023-04-10,39296,9467,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2101.78,"{"""": ""5%""}",168907,0,Europe +2024-04-08,39297,4769,"[""Monitor""]",2200.85,"{""promo"": ""5%""}",76088,0,North America +2024-11-09,39298,488,"[""Wireless Mouse""]",4074.14,{},274582,1,North America +2024-10-20,39299,8599,"[""Keyboard"", ""Monitor""]",4025.31,{},124633,1,Africa +2023-12-10,39300,1801,"[""Tablet""]",1890.72,"{"""": ""30%""}",82511,1,South America +2023-11-02,39301,3337,"[""Keyboard""]",2354.99,"{""loyalty"": ""17%""}",136401,0,South America +2023-05-04,39302,1607,"[""Laptop""]",1149.92,{},202616,0,Asia +2023-06-20,39303,9398,"[""Wireless Mouse"", ""Charger""]",1474.52,"{""seasonal"": ""29%""}",45799,0,North America +2024-01-17,39304,2669,"[""Laptop"", ""Charger"", ""Keyboard""]",4893.76,{},241016,0,Africa +2024-05-24,39305,2417,"[""Monitor"", ""Keyboard""]",1405.81,"{""seasonal"": ""9%""}",277030,1,Asia +2024-09-17,39306,5556,"[""Phone""]",4968.53,"{""seasonal"": ""21%""}",234768,1,Africa +2024-04-03,39307,5157,"[""Wireless Mouse""]",1929.82,{},243210,1,South America +2023-10-14,39308,2432,"[""Charger"", ""Keyboard""]",1216.21,{},16449,1,North America +2024-11-03,39309,6189,"[""Phone"", ""Monitor"", ""Keyboard""]",3573.4,"{""promo"": ""15%""}",169874,0,Asia +2023-09-15,39310,9810,"[""Headphones"", ""Keyboard""]",3398.61,{},145485,1,Europe +2024-11-14,39311,3949,"[""Charger""]",4901.25,"{""promo"": ""21%""}",266959,0,Africa +2023-12-05,39312,1578,"[""Headphones"", ""Laptop""]",1074.42,"{""loyalty"": ""22%""}",262429,0,North America +2024-06-07,39313,9613,"[""Monitor""]",370.23,{},27424,0,South America +2023-06-26,39314,2162,"[""Keyboard""]",1403.12,{},96563,0,Europe +2023-05-19,39315,7731,"[""Headphones""]",4362.0,"{"""": ""16%""}",265674,1,Europe +2023-11-24,39316,8397,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",563.74,{},88299,0,Europe +2023-02-12,39317,7731,"[""Charger"", ""Keyboard""]",4647.16,{},229663,0,South America +2024-01-29,39318,7808,"[""Wireless Mouse""]",331.03,{},8521,1,Europe +2024-11-28,39319,9307,"[""Headphones""]",376.06,{},118219,1,Africa +2024-10-18,39320,1538,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3428.65,{},221980,0,Europe +2023-01-09,39321,4226,"[""Phone"", ""Charger"", ""Laptop""]",294.54,"{""loyalty"": ""23%""}",35991,0,North America +2024-01-14,39322,6606,"[""Headphones""]",4781.07,"{""promo"": ""25%""}",120992,1,Africa +2023-11-22,39323,1604,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1802.5,{},243161,0,Asia +2024-02-05,39324,9850,"[""Laptop""]",289.51,"{""promo"": ""29%""}",79664,0,Asia +2024-01-23,39325,1837,"[""Laptop"", ""Tablet"", ""Phone""]",1554.18,"{""promo"": ""15%""}",91355,1,Africa +2023-04-22,39326,1697,"[""Keyboard"", ""Monitor"", ""Laptop""]",2472.65,"{""promo"": ""15%""}",71162,1,North America +2024-02-14,39327,4794,"[""Laptop"", ""Wireless Mouse""]",1152.51,{},105814,0,Europe +2023-10-02,39328,2162,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4232.21,"{""promo"": ""11%""}",64064,0,Europe +2024-07-27,39329,6280,"[""Laptop"", ""Keyboard""]",4746.33,{},29082,1,Europe +2024-09-12,39330,7826,"[""Phone"", ""Laptop"", ""Charger""]",1440.6,"{""seasonal"": ""19%""}",137556,0,South America +2023-07-10,39331,1355,"[""Phone"", ""Keyboard""]",3255.69,"{""promo"": ""29%""}",267662,0,Africa +2024-03-06,39332,8267,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4100.49,{},195225,0,North America +2024-11-22,39333,5953,"[""Tablet"", ""Phone""]",3176.42,"{""promo"": ""10%""}",188651,1,Africa +2023-12-23,39334,7242,"[""Monitor""]",4872.58,{},164182,1,Asia +2024-05-11,39335,1374,"[""Laptop"", ""Headphones"", ""Charger""]",4569.23,{},93577,1,Africa +2024-05-23,39336,2307,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2049.21,"{""promo"": ""13%""}",167442,0,Asia +2024-05-17,39337,8263,"[""Phone"", ""Monitor""]",889.42,{},101299,0,South America +2024-09-16,39338,7462,"[""Laptop""]",3414.99,{},196057,1,Africa +2023-08-01,39339,6967,"[""Tablet"", ""Charger""]",4316.21,"{""promo"": ""15%""}",247298,1,South America +2023-03-16,39340,4042,"[""Headphones""]",4781.63,{},266166,0,Asia +2023-09-28,39341,2695,"[""Laptop""]",4296.19,"{"""": ""24%""}",121974,0,Asia +2024-07-11,39342,6996,"[""Wireless Mouse""]",3264.85,"{""loyalty"": ""11%""}",72700,1,Africa +2023-01-30,39343,7333,"[""Wireless Mouse""]",2425.1,"{""loyalty"": ""12%""}",262289,1,South America +2024-08-24,39344,3335,"[""Headphones""]",1571.87,{},33335,1,North America +2024-08-14,39345,5333,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1025.86,{},253993,1,North America +2024-09-26,39346,4916,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4261.48,{},197180,0,Europe +2023-02-24,39347,2456,"[""Phone"", ""Headphones"", ""Tablet""]",4241.87,{},80507,0,North America +2024-04-16,39348,3278,"[""Headphones"", ""Laptop"", ""Tablet""]",2487.53,{},259850,0,Europe +2023-08-12,39349,5843,"[""Phone"", ""Headphones""]",1985.0,{},282115,1,Europe +2023-12-03,39350,4248,"[""Charger""]",1034.28,"{""loyalty"": ""19%""}",252732,1,South America +2024-06-28,39351,9306,"[""Charger"", ""Phone""]",1753.24,"{"""": ""11%""}",112163,0,North America +2023-05-11,39352,3450,"[""Keyboard"", ""Phone""]",4557.17,{},124710,1,Europe +2023-12-25,39353,1939,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4658.76,{},296949,1,South America +2024-12-17,39354,7306,"[""Keyboard"", ""Headphones""]",424.11,{},79478,1,Europe +2023-05-29,39355,3738,"[""Laptop"", ""Tablet""]",676.43,"{""promo"": ""29%""}",242655,0,North America +2023-08-21,39356,4879,"[""Wireless Mouse"", ""Charger""]",1843.97,"{""seasonal"": ""12%""}",151147,0,Asia +2023-11-04,39357,7523,"[""Charger""]",4448.03,{},171568,0,Africa +2024-12-01,39358,7173,"[""Phone""]",3643.87,{},277580,0,South America +2023-07-30,39359,3522,"[""Phone"", ""Keyboard""]",3272.48,"{""promo"": ""22%""}",145640,0,Asia +2023-07-13,39360,1846,"[""Charger"", ""Phone""]",1132.51,{},113291,0,Africa +2024-05-18,39361,3899,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4165.73,{},156479,1,Asia +2024-12-16,39362,592,"[""Charger""]",2973.16,{},129774,1,Europe +2023-06-27,39363,8484,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",329.28,{},74777,1,Europe +2024-09-21,39364,1141,"[""Tablet""]",3189.1,"{""loyalty"": ""13%""}",288331,1,Asia +2024-01-29,39365,6690,"[""Headphones""]",3543.37,{},255762,1,Asia +2024-09-19,39366,3383,"[""Phone"", ""Tablet"", ""Laptop""]",3103.94,"{""loyalty"": ""26%""}",216039,1,Africa +2024-05-01,39367,8481,"[""Headphones"", ""Keyboard""]",2585.89,{},17813,0,North America +2023-10-04,39368,6044,"[""Keyboard"", ""Laptop"", ""Phone""]",924.59,{},245012,0,Europe +2023-02-20,39369,1553,"[""Phone""]",4320.97,"{""loyalty"": ""19%""}",173701,0,Africa +2024-10-06,39370,1975,"[""Laptop"", ""Tablet"", ""Phone""]",2725.85,{},30613,1,North America +2023-07-18,39371,2030,"[""Headphones"", ""Phone""]",1411.74,"{""loyalty"": ""29%""}",52525,1,South America +2023-10-03,39372,8652,"[""Laptop""]",918.21,{},103154,0,Europe +2023-06-29,39373,1542,"[""Keyboard""]",3817.13,{},269430,1,Africa +2024-06-02,39374,7520,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",422.89,{},158256,1,Asia +2024-02-06,39375,625,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2302.78,{},136195,0,North America +2023-06-26,39376,4524,"[""Charger""]",2957.53,"{""promo"": ""30%""}",296359,0,North America +2024-06-19,39377,1758,"[""Laptop""]",4291.22,"{""promo"": ""22%""}",46849,0,South America +2023-12-13,39378,6270,"[""Tablet"", ""Wireless Mouse""]",1903.85,{},212072,1,Africa +2024-01-18,39379,3955,"[""Charger"", ""Tablet""]",2198.16,"{""loyalty"": ""24%""}",92715,0,Africa +2023-06-18,39380,9593,"[""Headphones""]",389.84,"{""loyalty"": ""11%""}",204482,0,South America +2024-06-23,39381,537,"[""Phone""]",3093.41,{},136701,0,North America +2024-06-02,39382,1134,"[""Wireless Mouse"", ""Charger""]",3066.1,"{"""": ""29%""}",188160,0,Europe +2024-01-30,39383,5073,"[""Headphones"", ""Charger""]",4954.54,"{""seasonal"": ""20%""}",261649,1,North America +2024-10-09,39384,804,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3769.98,{},141407,0,North America +2024-10-24,39385,5606,"[""Phone"", ""Headphones"", ""Laptop""]",4681.87,{},85006,1,Europe +2023-04-02,39386,4157,"[""Phone""]",4579.28,{},240927,1,Europe +2024-12-17,39387,1023,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3992.2,"{""promo"": ""9%""}",97192,1,Europe +2024-03-16,39388,9606,"[""Tablet"", ""Keyboard""]",4802.02,{},286325,1,South America +2023-09-14,39389,3150,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",533.13,{},81414,1,North America +2024-06-15,39390,545,"[""Charger"", ""Phone""]",1347.68,{},25205,1,South America +2024-10-23,39391,8027,"[""Charger"", ""Headphones""]",1519.61,"{"""": ""15%""}",45208,1,Africa +2024-10-19,39392,9433,"[""Keyboard"", ""Tablet""]",530.72,{},56284,0,South America +2023-11-10,39393,1341,"[""Monitor""]",3985.74,{},115642,1,Europe +2023-08-04,39394,6291,"[""Wireless Mouse""]",1655.28,"{""promo"": ""27%""}",283647,0,North America +2024-02-14,39395,5091,"[""Charger""]",3264.49,{},92131,0,South America +2023-05-03,39396,5706,"[""Laptop""]",301.65,"{"""": ""26%""}",93471,1,South America +2024-09-20,39397,1315,"[""Laptop""]",3218.65,"{""seasonal"": ""14%""}",261817,0,Asia +2023-07-22,39398,766,"[""Keyboard""]",449.48,{},299716,0,Asia +2024-11-15,39399,4838,"[""Wireless Mouse""]",117.41,{},270890,0,Europe +2023-02-05,39400,3269,"[""Keyboard"", ""Tablet"", ""Laptop""]",1968.43,"{""loyalty"": ""5%""}",13832,0,Africa +2024-02-11,39401,4552,"[""Headphones"", ""Monitor"", ""Charger""]",124.52,"{""loyalty"": ""20%""}",44002,1,Africa +2023-09-25,39402,6719,"[""Tablet"", ""Keyboard"", ""Laptop""]",2688.76,"{"""": ""26%""}",162581,1,Europe +2024-10-05,39403,8799,"[""Monitor"", ""Keyboard""]",451.99,"{""seasonal"": ""12%""}",40859,0,North America +2024-05-08,39404,1439,"[""Tablet"", ""Monitor""]",3153.69,{},176565,0,Europe +2023-06-26,39405,1923,"[""Charger"", ""Wireless Mouse""]",4143.38,{},139037,0,Asia +2024-07-06,39406,9151,"[""Keyboard""]",2454.77,"{""loyalty"": ""30%""}",238304,0,South America +2023-03-20,39407,4187,"[""Phone"", ""Headphones""]",2287.94,"{""loyalty"": ""14%""}",158054,0,North America +2024-07-08,39408,2753,"[""Wireless Mouse"", ""Headphones""]",4613.37,{},238467,1,Europe +2023-07-17,39409,6713,"[""Headphones""]",1439.01,"{""seasonal"": ""27%""}",91043,0,Europe +2023-07-04,39410,5587,"[""Laptop"", ""Headphones""]",4714.56,"{"""": ""19%""}",39582,1,South America +2024-11-10,39411,6789,"[""Keyboard"", ""Monitor""]",4999.5,"{"""": ""24%""}",142773,1,Africa +2024-09-12,39412,7733,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4322.0,{},278150,1,Asia +2024-01-02,39413,3624,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2775.05,{},2060,1,Asia +2023-06-30,39414,3246,"[""Charger""]",245.54,{},34102,1,Asia +2024-05-01,39415,7500,"[""Wireless Mouse""]",3855.16,"{""loyalty"": ""18%""}",216284,0,Europe +2023-11-14,39416,3178,"[""Tablet""]",477.69,{},100316,1,Asia +2023-06-17,39417,4060,"[""Laptop"", ""Headphones""]",68.35,{},51514,0,Europe +2023-12-30,39418,9140,"[""Laptop"", ""Monitor"", ""Phone""]",3085.91,{},56842,1,Europe +2024-06-12,39419,7541,"[""Laptop""]",4991.54,"{"""": ""22%""}",72138,0,North America +2023-01-07,39420,8208,"[""Tablet"", ""Charger""]",1403.84,"{"""": ""18%""}",162381,0,Europe +2024-12-20,39421,2497,"[""Wireless Mouse"", ""Phone""]",889.68,{},273556,1,South America +2024-04-03,39422,2634,"[""Tablet"", ""Monitor"", ""Laptop""]",3531.47,{},226495,0,North America +2023-02-18,39423,5637,"[""Laptop"", ""Keyboard""]",4273.26,{},136167,0,North America +2024-06-06,39424,6467,"[""Monitor"", ""Wireless Mouse""]",1972.81,{},167440,0,North America +2024-12-31,39425,1214,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1745.56,{},31364,0,Asia +2023-09-08,39426,937,"[""Monitor"", ""Charger""]",3747.62,"{""loyalty"": ""5%""}",114001,1,South America +2023-10-08,39427,8664,"[""Wireless Mouse"", ""Headphones""]",1326.78,"{""promo"": ""11%""}",20834,0,South America +2023-09-05,39428,343,"[""Wireless Mouse""]",4308.63,"{""promo"": ""9%""}",115539,1,Africa +2023-02-23,39429,2466,"[""Wireless Mouse""]",2740.05,{},229682,1,Europe +2023-11-26,39430,5856,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",247.41,{},157962,0,Europe +2023-11-03,39431,82,"[""Keyboard"", ""Monitor""]",3297.44,"{""loyalty"": ""7%""}",45273,1,Africa +2023-04-23,39432,3443,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4099.45,"{"""": ""16%""}",138672,0,Europe +2023-02-06,39433,1640,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4245.5,"{"""": ""11%""}",109271,0,South America +2024-01-04,39434,1989,"[""Phone"", ""Tablet"", ""Headphones""]",2349.12,"{""promo"": ""28%""}",151677,0,Europe +2023-04-08,39435,5707,"[""Monitor"", ""Keyboard"", ""Laptop""]",691.59,"{""loyalty"": ""14%""}",290428,0,Europe +2023-08-19,39436,6382,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3915.8,{},60784,1,North America +2023-10-10,39437,2009,"[""Phone"", ""Headphones"", ""Keyboard""]",3409.25,{},211350,0,North America +2024-11-09,39438,5441,"[""Monitor""]",3566.37,{},147478,0,South America +2024-07-12,39439,5871,"[""Wireless Mouse""]",3592.8,{},198470,1,Africa +2024-05-14,39440,656,"[""Keyboard"", ""Charger"", ""Laptop""]",2334.14,{},267832,1,South America +2024-02-23,39441,5648,"[""Wireless Mouse""]",1085.36,{},264621,1,South America +2024-04-08,39442,5209,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1435.14,"{""seasonal"": ""18%""}",85871,1,North America +2024-06-09,39443,7347,"[""Tablet""]",612.44,"{""promo"": ""23%""}",19026,0,Africa +2024-11-01,39444,6274,"[""Phone""]",2294.82,"{""promo"": ""29%""}",197420,0,North America +2023-09-13,39445,4547,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1942.11,"{""promo"": ""12%""}",247990,1,North America +2024-09-24,39446,777,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3179.8,{},139353,1,South America +2024-01-19,39447,6069,"[""Laptop"", ""Wireless Mouse""]",1198.08,{},210004,0,Asia +2024-03-24,39448,893,"[""Headphones"", ""Laptop""]",4635.43,{},45566,0,South America +2024-02-26,39449,6516,"[""Monitor""]",1949.89,"{"""": ""13%""}",214701,1,Asia +2024-05-31,39450,1137,"[""Charger"", ""Monitor""]",3512.82,{},233414,0,North America +2024-08-25,39451,6079,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4765.3,{},92261,0,North America +2024-02-27,39452,5895,"[""Wireless Mouse""]",83.58,{},213978,1,Africa +2023-05-31,39453,8091,"[""Tablet""]",2688.86,"{""promo"": ""5%""}",266310,0,Africa +2024-03-26,39454,6709,"[""Headphones""]",1023.72,{},74334,1,Asia +2023-12-15,39455,5105,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3493.04,{},139725,0,North America +2023-04-10,39456,5909,"[""Headphones"", ""Tablet"", ""Charger""]",2994.52,"{""seasonal"": ""7%""}",74461,1,South America +2023-06-21,39457,3182,"[""Charger"", ""Laptop"", ""Headphones""]",4876.0,"{"""": ""30%""}",84232,1,Asia +2024-03-05,39458,1015,"[""Tablet"", ""Charger""]",1939.24,{},147891,0,Asia +2023-09-09,39459,8609,"[""Laptop""]",621.16,"{""loyalty"": ""29%""}",258537,1,Europe +2024-08-28,39460,9193,"[""Laptop"", ""Tablet"", ""Monitor""]",185.05,"{""loyalty"": ""5%""}",210191,0,Africa +2024-09-18,39461,60,"[""Charger"", ""Monitor"", ""Tablet""]",1915.24,{},30789,0,Europe +2023-06-10,39462,4273,"[""Laptop"", ""Monitor"", ""Phone""]",3430.22,"{""loyalty"": ""20%""}",249826,0,Asia +2024-05-14,39463,1303,"[""Phone"", ""Keyboard"", ""Tablet""]",1422.49,"{""loyalty"": ""17%""}",130733,0,North America +2023-04-25,39464,3702,"[""Headphones""]",3652.27,{},69905,1,North America +2023-01-02,39465,4621,"[""Wireless Mouse""]",4240.24,{},58000,0,Africa +2024-07-27,39466,9773,"[""Wireless Mouse""]",3899.93,{},225825,1,North America +2024-07-26,39467,9000,"[""Laptop"", ""Headphones""]",3173.73,{},206646,1,Asia +2024-05-16,39468,4491,"[""Charger"", ""Headphones"", ""Tablet""]",1274.76,{},288151,1,South America +2023-09-29,39469,7612,"[""Headphones""]",4988.5,"{""seasonal"": ""6%""}",194759,1,Africa +2024-10-04,39470,7621,"[""Charger"", ""Headphones"", ""Laptop""]",4411.64,{},260879,0,North America +2024-07-10,39471,3526,"[""Monitor"", ""Headphones"", ""Keyboard""]",4525.48,{},109041,1,Africa +2023-10-21,39472,3393,"[""Keyboard""]",4306.16,"{""seasonal"": ""13%""}",51887,0,Europe +2024-02-09,39473,8762,"[""Charger"", ""Keyboard"", ""Phone""]",544.75,"{"""": ""25%""}",86171,1,North America +2024-04-12,39474,9327,"[""Monitor"", ""Charger""]",3082.71,"{""loyalty"": ""19%""}",43449,1,Europe +2023-01-12,39475,4377,"[""Wireless Mouse"", ""Tablet""]",1021.23,{},19464,1,South America +2024-11-12,39476,540,"[""Headphones"", ""Laptop""]",3739.42,{},290622,0,South America +2024-08-24,39477,6822,"[""Charger"", ""Wireless Mouse""]",1451.58,"{""seasonal"": ""5%""}",83214,0,Asia +2024-10-27,39478,2246,"[""Headphones""]",2983.68,"{""loyalty"": ""30%""}",73558,0,Asia +2023-02-17,39479,5262,"[""Laptop""]",3774.7,"{""loyalty"": ""23%""}",121151,1,Asia +2024-08-26,39480,81,"[""Laptop""]",1769.7,{},115418,1,Asia +2024-12-31,39481,2820,"[""Laptop"", ""Phone""]",181.06,"{""loyalty"": ""5%""}",47878,0,Europe +2023-08-10,39482,8504,"[""Monitor""]",322.27,{},220547,0,South America +2023-03-24,39483,9313,"[""Keyboard"", ""Tablet"", ""Charger""]",3955.0,{},265312,1,North America +2024-05-31,39484,170,"[""Tablet""]",3840.43,"{""loyalty"": ""10%""}",264670,1,Asia +2023-01-07,39485,4831,"[""Phone""]",4618.92,"{""promo"": ""13%""}",274250,0,Africa +2024-06-04,39486,3000,"[""Phone"", ""Laptop""]",1028.25,"{""seasonal"": ""22%""}",111342,0,South America +2024-10-24,39487,8267,"[""Monitor"", ""Charger"", ""Tablet""]",1983.22,{},113443,0,Europe +2023-07-15,39488,6139,"[""Phone"", ""Laptop""]",4992.64,"{""loyalty"": ""8%""}",21792,1,North America +2023-08-22,39489,4532,"[""Phone""]",4427.56,{},133470,0,Asia +2023-02-18,39490,5121,"[""Headphones"", ""Keyboard"", ""Monitor""]",4462.02,{},190896,1,Africa +2023-02-24,39491,9959,"[""Monitor"", ""Tablet""]",401.46,{},21016,0,Africa +2023-07-30,39492,834,"[""Keyboard"", ""Headphones"", ""Laptop""]",4224.41,{},269347,1,Europe +2023-08-09,39493,888,"[""Headphones"", ""Phone"", ""Charger""]",374.29,{},270982,0,Europe +2024-06-02,39494,3810,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3026.5,"{""promo"": ""10%""}",21834,1,North America +2024-01-22,39495,232,"[""Wireless Mouse"", ""Phone""]",4126.86,{},39333,1,Europe +2023-05-16,39496,7728,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3663.67,"{""loyalty"": ""27%""}",225612,0,Europe +2024-07-10,39497,8434,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",650.14,"{""loyalty"": ""27%""}",160009,1,South America +2024-04-05,39498,7639,"[""Phone"", ""Laptop"", ""Monitor""]",2615.98,"{"""": ""12%""}",11813,0,Europe +2024-01-27,39499,6455,"[""Monitor"", ""Charger""]",3948.1,{},174336,0,Europe +2024-08-05,39500,1804,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1681.36,{},63743,1,Africa +2023-01-24,39501,9543,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2938.52,"{""promo"": ""22%""}",140329,0,North America +2023-03-20,39502,8845,"[""Wireless Mouse""]",4443.8,{},261175,0,South America +2023-06-20,39503,857,"[""Keyboard"", ""Laptop""]",2059.9,"{""seasonal"": ""20%""}",60808,1,Africa +2024-01-03,39504,884,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2647.55,{},167544,0,Europe +2024-10-02,39505,2451,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1856.65,"{""promo"": ""23%""}",204278,0,Europe +2024-08-18,39506,8695,"[""Tablet"", ""Charger"", ""Keyboard""]",3249.58,{},222907,0,Asia +2024-08-13,39507,4452,"[""Charger""]",4782.76,{},272728,1,South America +2024-12-30,39508,2986,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2431.72,"{"""": ""5%""}",54764,0,Asia +2023-01-04,39509,7567,"[""Monitor""]",4497.86,"{"""": ""20%""}",183145,1,South America +2023-07-13,39510,4760,"[""Headphones"", ""Phone""]",2326.44,{},275534,0,Africa +2023-02-26,39511,9678,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4270.38,"{""seasonal"": ""28%""}",60139,0,Asia +2023-04-08,39512,1219,"[""Phone"", ""Keyboard""]",2091.47,{},229252,0,North America +2023-10-27,39513,4138,"[""Keyboard"", ""Headphones""]",408.33,{},17921,0,Asia +2023-03-29,39514,2973,"[""Phone"", ""Monitor""]",3636.57,{},166567,0,North America +2023-03-12,39515,4708,"[""Wireless Mouse"", ""Charger""]",1333.14,{},181987,0,Europe +2023-07-01,39516,8471,"[""Charger""]",4572.21,{},10368,1,Asia +2024-09-04,39517,7300,"[""Headphones"", ""Charger""]",2727.03,"{"""": ""7%""}",72959,1,Europe +2023-12-05,39518,3146,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1730.26,{},236209,0,South America +2023-11-06,39519,9301,"[""Laptop"", ""Tablet"", ""Monitor""]",3384.9,"{""seasonal"": ""25%""}",184668,0,Africa +2024-09-16,39520,9485,"[""Charger"", ""Headphones""]",4154.6,{},64233,0,North America +2023-03-30,39521,6446,"[""Monitor"", ""Headphones"", ""Phone""]",1606.76,{},122339,0,Europe +2023-01-03,39522,4877,"[""Headphones""]",3448.91,{},271903,0,Asia +2023-01-03,39523,8570,"[""Charger""]",426.23,{},99323,0,Europe +2023-05-17,39524,5715,"[""Charger"", ""Tablet"", ""Laptop""]",4641.74,{},53968,1,Europe +2024-07-05,39525,7019,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3898.4,"{""seasonal"": ""12%""}",211446,0,Africa +2024-10-07,39526,8991,"[""Phone""]",3561.1,{},196668,0,Europe +2024-01-19,39527,5444,"[""Keyboard"", ""Phone"", ""Tablet""]",2202.15,"{""promo"": ""18%""}",10028,1,North America +2024-08-12,39528,5765,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",605.16,{},245025,0,Africa +2023-06-14,39529,5227,"[""Phone""]",1692.59,{},277100,1,Asia +2024-12-24,39530,3178,"[""Phone"", ""Tablet"", ""Monitor""]",2077.88,{},149799,0,North America +2023-05-15,39531,4140,"[""Laptop""]",2888.14,"{""loyalty"": ""14%""}",31640,1,North America +2023-06-25,39532,4920,"[""Headphones""]",3229.68,"{""seasonal"": ""29%""}",256544,1,North America +2023-11-04,39533,2947,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4655.5,"{""seasonal"": ""14%""}",32250,0,Asia +2024-10-26,39534,7846,"[""Charger"", ""Monitor""]",4967.65,"{""loyalty"": ""27%""}",234754,0,Europe +2024-03-23,39535,9996,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",356.54,"{"""": ""14%""}",264648,1,Europe +2024-10-20,39536,6686,"[""Keyboard"", ""Laptop""]",704.44,{},49409,0,Asia +2024-05-05,39537,8771,"[""Phone""]",1169.55,"{""loyalty"": ""10%""}",190313,1,Asia +2024-08-25,39538,3898,"[""Tablet"", ""Monitor"", ""Headphones""]",1288.84,"{"""": ""24%""}",283721,0,North America +2024-05-08,39539,8882,"[""Keyboard""]",3855.45,"{"""": ""23%""}",249454,1,North America +2023-05-11,39540,2903,"[""Monitor""]",2387.37,{},80596,1,North America +2023-10-14,39541,3289,"[""Laptop""]",4972.32,{},88961,0,Europe +2024-11-17,39542,4121,"[""Charger""]",3995.77,{},91685,1,South America +2023-05-12,39543,2072,"[""Phone""]",2834.43,"{"""": ""6%""}",199483,0,Asia +2023-07-09,39544,3135,"[""Keyboard""]",720.25,{},55053,1,North America +2023-04-18,39545,9806,"[""Charger"", ""Phone""]",2250.74,{},154693,0,Africa +2024-10-15,39546,71,"[""Monitor""]",3172.01,{},32434,1,South America +2024-08-17,39547,617,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4328.05,{},128905,0,Europe +2023-07-23,39548,5331,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2341.06,{},119170,1,Africa +2023-01-17,39549,2245,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",928.85,{},249000,0,North America +2023-01-20,39550,3591,"[""Phone""]",4447.61,{},270988,0,North America +2023-10-04,39551,9687,"[""Charger""]",3590.35,{},194911,0,North America +2024-05-28,39552,9131,"[""Tablet"", ""Headphones""]",734.69,"{""promo"": ""17%""}",74029,0,Africa +2024-08-14,39553,9738,"[""Charger""]",2660.02,"{""seasonal"": ""19%""}",101265,1,Asia +2023-10-06,39554,9833,"[""Charger"", ""Keyboard""]",1843.78,{},176512,1,Asia +2023-02-23,39555,4169,"[""Monitor""]",4664.95,{},227016,0,North America +2023-12-02,39556,3978,"[""Laptop""]",600.1,{},14731,1,Africa +2023-05-01,39557,64,"[""Monitor"", ""Phone"", ""Keyboard""]",3510.02,"{"""": ""12%""}",195638,1,Africa +2024-08-21,39558,1372,"[""Tablet""]",4588.15,{},77360,1,South America +2023-11-26,39559,1210,"[""Wireless Mouse""]",2543.17,{},65179,1,Europe +2023-03-08,39560,6525,"[""Wireless Mouse""]",959.12,{},1409,0,South America +2024-04-20,39561,5734,"[""Tablet"", ""Wireless Mouse""]",2161.47,"{""seasonal"": ""22%""}",290808,0,Europe +2024-03-08,39562,8651,"[""Laptop"", ""Tablet""]",2655.06,"{""promo"": ""20%""}",127278,0,South America +2023-04-07,39563,9199,"[""Headphones"", ""Phone"", ""Monitor""]",4499.97,"{""loyalty"": ""22%""}",196431,1,Europe +2024-04-22,39564,547,"[""Wireless Mouse""]",1368.41,"{""promo"": ""10%""}",10831,1,Africa +2023-05-10,39565,5938,"[""Wireless Mouse""]",2193.02,{},192467,0,Asia +2023-06-14,39566,7257,"[""Phone"", ""Keyboard""]",189.92,{},81108,1,Africa +2023-07-16,39567,9880,"[""Charger""]",66.03,{},139493,1,Asia +2024-01-15,39568,4318,"[""Headphones"", ""Laptop""]",4677.73,{},2401,1,South America +2024-05-11,39569,2673,"[""Headphones""]",4697.59,"{""promo"": ""16%""}",243181,0,South America +2024-12-21,39570,2051,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3578.76,{},150922,1,Africa +2023-03-05,39571,353,"[""Headphones""]",1986.6,"{""loyalty"": ""7%""}",140022,0,Africa +2023-01-18,39572,1994,"[""Keyboard"", ""Tablet""]",1385.2,"{""loyalty"": ""9%""}",167256,1,Europe +2023-10-12,39573,9794,"[""Monitor"", ""Laptop""]",765.83,"{""seasonal"": ""9%""}",283625,0,South America +2024-12-14,39574,2268,"[""Keyboard"", ""Monitor""]",266.9,{},79845,1,North America +2024-08-20,39575,7696,"[""Monitor"", ""Keyboard""]",1465.22,"{"""": ""24%""}",55102,1,North America +2024-11-01,39576,8895,"[""Charger""]",1570.25,{},262190,0,Asia +2023-06-07,39577,1743,"[""Laptop"", ""Keyboard""]",3327.58,{},43267,1,Asia +2023-10-02,39578,9555,"[""Tablet""]",4116.15,{},271125,0,Asia +2023-04-19,39579,3248,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2729.33,{},249862,1,Europe +2024-01-26,39580,3161,"[""Wireless Mouse"", ""Headphones""]",4773.0,{},175536,1,Africa +2023-01-06,39581,9738,"[""Charger"", ""Phone"", ""Laptop""]",605.3,{},227421,0,Asia +2024-03-06,39582,8635,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",709.78,{},36719,1,Europe +2024-07-12,39583,250,"[""Charger"", ""Headphones"", ""Keyboard""]",736.24,{},161202,1,North America +2023-12-18,39584,6176,"[""Laptop""]",947.47,"{""loyalty"": ""29%""}",281132,1,North America +2023-08-16,39585,1414,"[""Headphones""]",2261.38,"{""promo"": ""29%""}",159522,1,Asia +2024-09-21,39586,7202,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",979.58,"{"""": ""7%""}",113430,0,Europe +2024-01-06,39587,8151,"[""Monitor""]",1428.37,{},102581,0,Africa +2023-10-04,39588,3138,"[""Tablet""]",1568.57,{},265348,0,Asia +2024-05-02,39589,4273,"[""Wireless Mouse"", ""Keyboard""]",2409.75,{},227755,1,Asia +2023-09-30,39590,4718,"[""Laptop"", ""Keyboard""]",3854.91,"{""promo"": ""9%""}",52577,0,Asia +2024-03-10,39591,7989,"[""Keyboard"", ""Wireless Mouse""]",2388.57,{},233867,0,Europe +2024-04-17,39592,6611,"[""Wireless Mouse"", ""Keyboard""]",2557.79,{},9128,1,Africa +2023-09-29,39593,1684,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3201.93,"{"""": ""22%""}",164504,0,North America +2024-09-03,39594,6573,"[""Laptop""]",1138.7,{},138892,1,North America +2024-08-09,39595,6757,"[""Charger"", ""Tablet"", ""Monitor""]",2574.47,{},247683,1,South America +2024-10-26,39596,4459,"[""Tablet""]",63.53,{},32088,1,South America +2024-04-20,39597,7697,"[""Headphones"", ""Keyboard""]",2853.33,{},105121,1,Europe +2023-07-21,39598,8115,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3303.89,"{""seasonal"": ""29%""}",131912,1,South America +2023-04-28,39599,3616,"[""Keyboard"", ""Monitor"", ""Charger""]",731.95,"{""loyalty"": ""23%""}",72960,1,Europe +2024-08-29,39600,3600,"[""Charger"", ""Keyboard"", ""Laptop""]",1714.97,"{""loyalty"": ""19%""}",160920,0,Europe +2023-05-02,39601,3969,"[""Tablet"", ""Charger""]",3714.93,{},204847,0,South America +2023-12-07,39602,307,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2701.84,{},292647,0,South America +2024-05-19,39603,9263,"[""Monitor""]",3737.68,"{""promo"": ""25%""}",281263,1,Europe +2024-09-14,39604,7786,"[""Laptop"", ""Monitor""]",4515.05,{},231241,1,Africa +2024-07-20,39605,5780,"[""Keyboard""]",352.72,{},141453,1,Europe +2024-07-02,39606,6271,"[""Charger"", ""Tablet"", ""Phone""]",2246.97,"{"""": ""28%""}",99929,0,South America +2024-01-18,39607,9556,"[""Monitor""]",2619.95,"{""loyalty"": ""25%""}",29137,1,Asia +2024-11-27,39608,8757,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2954.87,"{""seasonal"": ""8%""}",6538,1,South America +2023-06-28,39609,3401,"[""Laptop""]",3696.34,{},126156,0,Asia +2023-02-22,39610,7250,"[""Phone"", ""Charger"", ""Monitor""]",4925.6,"{""loyalty"": ""20%""}",135090,0,North America +2023-01-19,39611,6651,"[""Phone"", ""Tablet"", ""Headphones""]",2696.67,"{""promo"": ""27%""}",35367,0,Africa +2024-09-15,39612,580,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2548.67,{},98086,1,Europe +2023-12-24,39613,7753,"[""Keyboard"", ""Wireless Mouse""]",4297.35,{},198160,1,Africa +2024-11-13,39614,2949,"[""Phone"", ""Charger""]",484.31,{},29959,0,Africa +2024-02-14,39615,3015,"[""Laptop""]",3214.17,"{""promo"": ""15%""}",35124,0,South America +2023-03-26,39616,8181,"[""Tablet"", ""Phone"", ""Laptop""]",169.41,{},76098,0,Europe +2023-08-29,39617,6212,"[""Phone""]",2672.68,"{"""": ""30%""}",174112,1,Africa +2023-09-13,39618,325,"[""Charger"", ""Monitor"", ""Headphones""]",3942.24,{},47554,1,Europe +2023-08-31,39619,904,"[""Tablet"", ""Charger"", ""Laptop""]",1404.92,"{""seasonal"": ""28%""}",21716,0,Asia +2023-11-26,39620,5814,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2896.2,"{""loyalty"": ""28%""}",155293,0,Europe +2023-06-22,39621,2068,"[""Monitor"", ""Charger""]",4387.12,"{"""": ""5%""}",117365,0,Africa +2024-03-12,39622,5653,"[""Monitor"", ""Headphones""]",4720.73,"{""promo"": ""8%""}",182131,0,South America +2024-05-17,39623,4134,"[""Monitor""]",1072.11,{},272236,1,Asia +2024-07-21,39624,1409,"[""Wireless Mouse""]",1387.78,{},199965,1,North America +2024-10-04,39625,6150,"[""Headphones"", ""Laptop""]",3310.35,{},223271,1,South America +2023-09-21,39626,961,"[""Monitor""]",1730.17,"{""promo"": ""20%""}",244179,1,Africa +2023-03-25,39627,5491,"[""Wireless Mouse""]",3389.15,{},144571,1,Asia +2023-07-17,39628,4287,"[""Phone"", ""Monitor""]",1889.3,"{""loyalty"": ""11%""}",227661,0,Europe +2024-11-26,39629,8410,"[""Headphones""]",1953.22,{},251449,0,North America +2023-07-09,39630,1107,"[""Keyboard""]",4720.92,{},251563,1,Asia +2024-02-26,39631,7064,"[""Headphones"", ""Monitor""]",4708.51,{},235735,0,Asia +2023-09-20,39632,461,"[""Laptop"", ""Keyboard"", ""Headphones""]",4774.18,{},50102,1,Africa +2024-07-20,39633,2706,"[""Laptop"", ""Headphones"", ""Monitor""]",4131.56,"{""loyalty"": ""17%""}",1477,0,North America +2023-09-10,39634,3334,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4670.69,"{""promo"": ""27%""}",131179,1,Europe +2024-02-07,39635,6013,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3555.56,"{""promo"": ""26%""}",140555,1,Africa +2023-09-18,39636,5636,"[""Monitor"", ""Charger""]",4926.3,"{""promo"": ""25%""}",75656,1,South America +2024-06-08,39637,8757,"[""Monitor"", ""Charger"", ""Headphones""]",4946.61,"{""promo"": ""29%""}",257821,1,Europe +2024-08-06,39638,213,"[""Laptop""]",3276.76,"{""promo"": ""28%""}",278275,0,South America +2023-11-14,39639,8273,"[""Phone""]",2484.52,"{""seasonal"": ""15%""}",188356,1,Europe +2024-04-22,39640,4327,"[""Tablet"", ""Laptop"", ""Phone""]",1466.91,{},145682,1,Europe +2024-05-20,39641,5143,"[""Headphones""]",1908.94,"{""loyalty"": ""17%""}",214137,0,Africa +2024-06-14,39642,2559,"[""Keyboard"", ""Tablet""]",2960.54,"{""promo"": ""9%""}",54009,0,Europe +2024-03-13,39643,6757,"[""Phone"", ""Charger"", ""Monitor""]",1850.76,"{"""": ""18%""}",219540,0,South America +2023-12-16,39644,1027,"[""Wireless Mouse"", ""Charger"", ""Phone""]",641.05,"{""seasonal"": ""12%""}",41317,0,Africa +2024-11-16,39645,3130,"[""Charger"", ""Tablet""]",3364.06,"{""loyalty"": ""5%""}",155051,1,Europe +2024-04-15,39646,91,"[""Headphones"", ""Laptop""]",1595.82,{},150693,1,South America +2024-05-23,39647,9495,"[""Phone"", ""Tablet""]",938.39,"{""promo"": ""6%""}",183649,0,North America +2023-12-27,39648,3600,"[""Monitor"", ""Charger""]",4616.79,{},166432,0,North America +2023-06-04,39649,6517,"[""Monitor""]",4940.31,"{""promo"": ""17%""}",162486,0,South America +2024-11-29,39650,8239,"[""Charger"", ""Laptop""]",2679.28,{},286983,1,North America +2023-07-06,39651,2002,"[""Wireless Mouse""]",364.76,{},63354,0,North America +2024-05-19,39652,6140,"[""Charger""]",1443.06,"{"""": ""27%""}",79361,1,Africa +2023-12-18,39653,1998,"[""Headphones""]",1407.32,"{""seasonal"": ""27%""}",217500,0,Asia +2024-09-21,39654,9091,"[""Tablet""]",553.03,{},245661,1,Africa +2024-01-09,39655,24,"[""Phone"", ""Charger"", ""Monitor""]",4504.02,{},269654,1,North America +2024-01-09,39656,78,"[""Monitor"", ""Laptop"", ""Charger""]",1515.53,{},290395,1,North America +2024-07-26,39657,1783,"[""Phone""]",2708.89,"{""seasonal"": ""30%""}",233683,1,South America +2024-07-26,39658,7793,"[""Laptop""]",742.24,{},163714,1,Africa +2023-12-01,39659,9154,"[""Monitor""]",3156.73,"{""promo"": ""22%""}",270117,1,South America +2024-03-17,39660,8416,"[""Headphones"", ""Phone"", ""Charger""]",3622.0,{},150791,0,Africa +2024-10-20,39661,7863,"[""Monitor"", ""Charger"", ""Laptop""]",3524.83,{},106334,1,North America +2023-05-15,39662,5079,"[""Charger"", ""Wireless Mouse""]",3856.08,"{""seasonal"": ""27%""}",148633,1,South America +2024-11-25,39663,6804,"[""Laptop"", ""Phone""]",1650.22,{},245315,1,Asia +2024-09-10,39664,7728,"[""Headphones""]",3810.62,"{""promo"": ""11%""}",263711,0,North America +2023-03-19,39665,5109,"[""Phone"", ""Tablet""]",4636.79,"{""loyalty"": ""22%""}",47893,0,South America +2023-04-12,39666,7152,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4536.7,{},267390,1,South America +2024-01-06,39667,9730,"[""Wireless Mouse"", ""Laptop""]",374.24,"{""seasonal"": ""14%""}",231146,1,North America +2024-08-02,39668,1188,"[""Monitor""]",4617.44,{},172570,1,Africa +2023-10-19,39669,3155,"[""Keyboard""]",3246.31,"{""loyalty"": ""7%""}",291019,1,North America +2024-03-29,39670,8067,"[""Monitor"", ""Phone""]",148.36,"{""promo"": ""12%""}",252343,0,Africa +2024-10-04,39671,1,"[""Headphones"", ""Tablet""]",1764.69,{},144753,0,Africa +2024-12-27,39672,9714,"[""Keyboard"", ""Tablet"", ""Charger""]",1386.96,{},232174,0,Asia +2023-03-05,39673,1201,"[""Charger""]",599.69,{},177610,0,North America +2024-04-08,39674,845,"[""Charger"", ""Laptop"", ""Monitor""]",3625.88,"{""seasonal"": ""26%""}",101343,1,Europe +2023-06-28,39675,9508,"[""Tablet"", ""Headphones"", ""Phone""]",1593.69,"{"""": ""6%""}",292432,1,North America +2024-05-09,39676,1381,"[""Monitor""]",327.67,"{""promo"": ""12%""}",51693,0,Africa +2024-06-22,39677,5967,"[""Charger"", ""Monitor"", ""Headphones""]",2791.67,"{""seasonal"": ""10%""}",10184,1,Africa +2024-10-07,39678,1980,"[""Keyboard"", ""Charger""]",2190.72,{},171787,1,South America +2023-07-30,39679,5280,"[""Keyboard"", ""Monitor"", ""Headphones""]",4938.48,"{""promo"": ""25%""}",289651,0,Europe +2024-10-22,39680,1738,"[""Tablet"", ""Keyboard"", ""Laptop""]",971.6,{},294723,0,Europe +2023-02-01,39681,5681,"[""Keyboard""]",3435.49,"{"""": ""24%""}",164424,0,Africa +2024-04-07,39682,1412,"[""Monitor"", ""Tablet"", ""Laptop""]",1232.41,"{""seasonal"": ""14%""}",136092,1,Asia +2024-12-22,39683,9485,"[""Wireless Mouse"", ""Headphones""]",4297.09,{},239075,0,Asia +2023-06-06,39684,2225,"[""Charger"", ""Monitor"", ""Phone""]",3873.14,"{"""": ""19%""}",265014,1,Africa +2024-08-19,39685,4468,"[""Tablet"", ""Phone"", ""Charger""]",4932.11,"{""promo"": ""11%""}",116016,1,South America +2023-08-20,39686,9679,"[""Keyboard""]",4903.54,{},243176,0,North America +2023-06-02,39687,7192,"[""Monitor"", ""Wireless Mouse""]",1397.16,"{"""": ""12%""}",99804,1,North America +2024-04-19,39688,1262,"[""Monitor""]",1708.38,"{""loyalty"": ""14%""}",85670,0,South America +2023-01-14,39689,4858,"[""Phone"", ""Monitor""]",3143.59,"{""seasonal"": ""27%""}",28036,0,Europe +2023-03-28,39690,4993,"[""Charger"", ""Keyboard""]",1850.74,"{"""": ""7%""}",191158,1,South America +2023-04-17,39691,7828,"[""Headphones"", ""Phone"", ""Laptop""]",2897.43,"{""seasonal"": ""13%""}",13271,0,North America +2024-04-01,39692,9273,"[""Headphones"", ""Wireless Mouse""]",3802.59,{},29491,0,Africa +2024-09-02,39693,6634,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",197.24,"{""promo"": ""28%""}",246460,1,Africa +2024-04-07,39694,423,"[""Phone"", ""Monitor""]",1702.57,{},256024,0,North America +2023-01-29,39695,9524,"[""Wireless Mouse""]",4848.09,"{""seasonal"": ""9%""}",42614,1,North America +2024-08-17,39696,4666,"[""Monitor"", ""Phone""]",2780.7,"{""promo"": ""8%""}",2426,1,Asia +2024-05-04,39697,4826,"[""Phone"", ""Headphones""]",3042.42,{},214645,1,Africa +2024-02-08,39698,9456,"[""Monitor"", ""Tablet""]",797.73,{},4227,1,Europe +2024-11-26,39699,3412,"[""Keyboard""]",3477.92,{},239400,0,Europe +2023-04-28,39700,7822,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2518.58,"{""loyalty"": ""26%""}",196149,0,North America +2023-05-29,39701,5440,"[""Laptop"", ""Keyboard""]",2285.62,{},59746,0,Asia +2024-12-03,39702,6484,"[""Headphones""]",2068.21,{},135081,0,Asia +2024-03-27,39703,618,"[""Monitor""]",3683.98,"{"""": ""14%""}",56108,0,Asia +2024-01-09,39704,5541,"[""Charger""]",2045.14,{},192566,0,South America +2024-04-19,39705,4135,"[""Phone"", ""Monitor""]",4895.09,{},145783,1,South America +2023-11-13,39706,9962,"[""Tablet"", ""Monitor""]",3350.54,"{""loyalty"": ""8%""}",238357,0,Europe +2023-02-01,39707,7207,"[""Headphones"", ""Monitor"", ""Charger""]",1344.1,"{""seasonal"": ""24%""}",79334,1,Europe +2024-04-11,39708,6234,"[""Headphones""]",4496.45,"{""loyalty"": ""26%""}",257159,1,Asia +2023-04-18,39709,7839,"[""Tablet""]",3960.93,{},267560,0,Asia +2023-05-25,39710,3100,"[""Laptop""]",4959.51,{},78028,0,Asia +2023-10-29,39711,6530,"[""Laptop""]",988.5,"{""loyalty"": ""19%""}",233254,1,South America +2024-11-09,39712,9540,"[""Phone"", ""Tablet"", ""Monitor""]",4561.42,{},37523,0,South America +2023-04-07,39713,762,"[""Keyboard""]",608.99,"{""promo"": ""22%""}",65133,0,North America +2024-05-29,39714,9265,"[""Headphones"", ""Keyboard""]",623.39,{},144631,1,Africa +2024-12-28,39715,563,"[""Phone"", ""Charger"", ""Laptop""]",2506.22,"{""seasonal"": ""23%""}",159176,0,North America +2023-07-23,39716,6828,"[""Laptop""]",462.97,{},273608,0,South America +2023-07-22,39717,2953,"[""Wireless Mouse"", ""Headphones""]",2936.45,{},181996,0,Asia +2024-03-04,39718,9451,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2279.92,{},198126,0,North America +2023-03-27,39719,152,"[""Wireless Mouse"", ""Tablet""]",1757.94,"{""loyalty"": ""19%""}",187014,0,South America +2024-05-04,39720,6611,"[""Laptop""]",2480.81,"{""promo"": ""29%""}",19750,1,Asia +2024-03-29,39721,2323,"[""Monitor"", ""Phone""]",2272.89,{},114821,0,Asia +2024-02-24,39722,1064,"[""Headphones"", ""Monitor"", ""Charger""]",3202.96,"{""seasonal"": ""19%""}",233932,1,Europe +2024-10-28,39723,7835,"[""Charger""]",4997.61,{},207084,0,Europe +2023-08-01,39724,9801,"[""Wireless Mouse"", ""Headphones""]",1746.99,"{""loyalty"": ""25%""}",98587,1,Asia +2023-02-11,39725,1053,"[""Keyboard""]",1894.1,"{""seasonal"": ""7%""}",185132,0,North America +2024-12-12,39726,390,"[""Phone"", ""Monitor""]",1465.8,"{""loyalty"": ""29%""}",197656,1,Asia +2023-12-11,39727,6744,"[""Laptop"", ""Keyboard"", ""Phone""]",237.13,"{""promo"": ""20%""}",156699,1,South America +2023-12-26,39728,8312,"[""Wireless Mouse"", ""Tablet""]",3751.93,"{""loyalty"": ""20%""}",282436,1,Europe +2024-07-16,39729,4613,"[""Headphones"", ""Laptop"", ""Phone""]",1131.32,{},172595,1,Africa +2023-07-10,39730,642,"[""Headphones"", ""Phone""]",1902.11,"{""seasonal"": ""16%""}",56522,1,Europe +2024-03-29,39731,1444,"[""Phone""]",1427.68,"{""seasonal"": ""7%""}",299000,1,Africa +2023-05-04,39732,748,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4895.07,{},176935,1,North America +2023-09-15,39733,7225,"[""Monitor"", ""Charger"", ""Tablet""]",397.0,{},16093,0,Asia +2024-03-22,39734,6361,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2660.52,{},299150,1,Europe +2024-03-19,39735,4582,"[""Keyboard""]",1513.51,"{""seasonal"": ""20%""}",120859,0,North America +2024-01-06,39736,9139,"[""Wireless Mouse"", ""Keyboard""]",4058.64,{},65556,0,North America +2024-05-25,39737,7319,"[""Wireless Mouse""]",56.53,{},154252,1,North America +2024-11-13,39738,341,"[""Charger""]",1634.89,{},225590,0,Africa +2024-05-06,39739,2324,"[""Monitor""]",661.29,"{""seasonal"": ""6%""}",140006,1,South America +2023-08-06,39740,4017,"[""Phone"", ""Keyboard""]",1996.61,{},122834,1,Africa +2024-11-12,39741,2493,"[""Monitor""]",1907.65,{},69328,1,Europe +2024-09-15,39742,7413,"[""Charger""]",4131.27,"{""seasonal"": ""28%""}",8601,0,Africa +2024-08-24,39743,8681,"[""Keyboard"", ""Laptop"", ""Tablet""]",2543.89,"{""promo"": ""5%""}",120664,1,Africa +2024-07-25,39744,3453,"[""Laptop"", ""Monitor""]",2690.59,"{""seasonal"": ""10%""}",39254,0,Asia +2023-10-22,39745,1911,"[""Headphones""]",2683.0,"{""promo"": ""7%""}",76033,1,Europe +2023-02-02,39746,7789,"[""Charger"", ""Laptop""]",2860.38,{},120385,1,South America +2023-09-29,39747,7591,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",113.89,"{""promo"": ""27%""}",286606,1,Africa +2024-09-08,39748,9829,"[""Monitor"", ""Laptop"", ""Headphones""]",2656.68,"{""promo"": ""17%""}",133368,1,Europe +2024-06-27,39749,8579,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4883.23,"{""loyalty"": ""18%""}",285090,0,Europe +2024-09-07,39750,5572,"[""Charger"", ""Keyboard""]",1249.57,"{""promo"": ""30%""}",283430,1,South America +2024-05-13,39751,8443,"[""Charger""]",1822.3,"{""promo"": ""22%""}",125624,0,North America +2024-04-23,39752,8851,"[""Laptop"", ""Wireless Mouse""]",2874.14,{},189774,1,South America +2024-08-01,39753,5991,"[""Monitor"", ""Wireless Mouse""]",3074.42,{},205068,1,Asia +2023-05-16,39754,3673,"[""Tablet"", ""Phone"", ""Monitor""]",3228.27,"{""promo"": ""7%""}",47047,1,Africa +2023-05-20,39755,6637,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4598.63,{},166707,1,North America +2023-11-28,39756,7667,"[""Laptop"", ""Charger""]",4813.84,"{""loyalty"": ""11%""}",227570,0,Europe +2023-01-14,39757,2379,"[""Tablet"", ""Monitor"", ""Charger""]",2316.63,{},33536,1,South America +2023-02-16,39758,7135,"[""Monitor"", ""Charger"", ""Tablet""]",2328.86,"{""seasonal"": ""14%""}",177124,0,South America +2023-12-23,39759,5375,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1062.55,{},274975,0,Asia +2023-10-01,39760,4361,"[""Tablet""]",1930.62,"{"""": ""12%""}",24120,0,Africa +2024-07-02,39761,5331,"[""Headphones""]",4370.72,{},244256,0,Europe +2023-05-17,39762,6805,"[""Keyboard""]",1008.68,"{""promo"": ""25%""}",103288,0,Asia +2024-06-15,39763,7131,"[""Headphones"", ""Laptop"", ""Keyboard""]",4390.69,{},199420,1,South America +2024-12-11,39764,9959,"[""Laptop"", ""Wireless Mouse""]",1629.0,{},28770,0,Asia +2023-05-28,39765,8558,"[""Phone""]",3557.04,"{""loyalty"": ""30%""}",218735,0,Africa +2024-11-21,39766,3874,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4676.14,"{""seasonal"": ""22%""}",153292,0,Africa +2024-01-12,39767,416,"[""Charger"", ""Wireless Mouse""]",4752.62,{},146511,1,Europe +2023-01-30,39768,1993,"[""Laptop""]",2113.36,"{""loyalty"": ""6%""}",163243,0,South America +2023-06-14,39769,6198,"[""Wireless Mouse"", ""Keyboard""]",3114.55,"{""promo"": ""23%""}",277649,0,South America +2023-12-02,39770,3731,"[""Laptop""]",2156.98,{},28026,1,Asia +2024-01-01,39771,8825,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",369.36,{},136020,1,Europe +2024-02-27,39772,1983,"[""Charger""]",3087.21,{},259870,1,Africa +2024-08-18,39773,2894,"[""Tablet""]",4814.67,{},9788,0,South America +2024-02-13,39774,8935,"[""Wireless Mouse""]",2052.51,"{"""": ""15%""}",220987,0,Europe +2024-04-19,39775,3387,"[""Phone"", ""Monitor""]",3806.77,{},13600,1,Africa +2023-02-17,39776,5080,"[""Monitor"", ""Keyboard""]",4467.91,"{""promo"": ""15%""}",171094,0,Asia +2024-07-02,39777,7201,"[""Laptop"", ""Keyboard""]",2673.44,{},277841,1,Africa +2023-04-14,39778,4937,"[""Phone"", ""Keyboard"", ""Monitor""]",4575.31,{},253094,0,South America +2023-09-11,39779,4997,"[""Charger""]",2768.1,{},290909,0,Asia +2023-07-12,39780,4986,"[""Monitor"", ""Laptop""]",3014.28,"{""loyalty"": ""26%""}",295862,0,North America +2023-09-28,39781,8618,"[""Headphones"", ""Laptop""]",3392.58,{},118501,0,Europe +2024-11-05,39782,5516,"[""Laptop""]",4208.65,{},188503,0,North America +2023-11-13,39783,676,"[""Wireless Mouse""]",3928.72,{},239344,1,North America +2024-09-01,39784,9933,"[""Phone"", ""Tablet""]",3717.76,{},182962,1,North America +2023-05-18,39785,6276,"[""Keyboard""]",1470.1,{},135197,0,Asia +2024-07-12,39786,2961,"[""Phone"", ""Charger"", ""Headphones""]",2004.11,{},53448,0,Africa +2024-09-07,39787,806,"[""Wireless Mouse"", ""Phone""]",4250.49,{},124447,1,North America +2023-09-17,39788,4367,"[""Phone"", ""Monitor""]",595.94,"{""promo"": ""18%""}",117172,1,South America +2024-05-05,39789,4625,"[""Monitor"", ""Phone""]",3768.18,{},25301,1,South America +2023-12-18,39790,1811,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",457.18,"{""promo"": ""6%""}",77230,0,Africa +2023-02-12,39791,7017,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3946.67,"{""loyalty"": ""15%""}",170812,0,Europe +2023-03-17,39792,2923,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1019.81,"{""loyalty"": ""7%""}",53434,0,Europe +2023-06-14,39793,7317,"[""Charger"", ""Monitor"", ""Headphones""]",4474.27,"{""seasonal"": ""9%""}",4351,0,Asia +2024-02-12,39794,1119,"[""Charger"", ""Phone"", ""Wireless Mouse""]",153.67,"{""promo"": ""12%""}",65575,0,North America +2023-12-05,39795,9037,"[""Monitor""]",3033.01,"{""promo"": ""30%""}",232035,1,Africa +2024-04-02,39796,3074,"[""Tablet"", ""Monitor""]",1131.1,"{"""": ""15%""}",37739,0,South America +2024-11-30,39797,9679,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",841.73,"{""loyalty"": ""13%""}",229942,1,Asia +2023-08-05,39798,2823,"[""Monitor"", ""Phone"", ""Laptop""]",361.98,"{""loyalty"": ""7%""}",153426,1,South America +2024-11-13,39799,3632,"[""Wireless Mouse"", ""Tablet""]",4878.98,"{""loyalty"": ""23%""}",9685,0,Europe +2023-10-24,39800,8649,"[""Tablet"", ""Headphones""]",741.98,{},170144,1,North America +2023-02-15,39801,8392,"[""Headphones"", ""Tablet"", ""Charger""]",634.04,"{""seasonal"": ""12%""}",2156,1,North America +2024-01-02,39802,6648,"[""Headphones""]",4363.12,{},78579,1,South America +2024-09-14,39803,2639,"[""Monitor"", ""Phone""]",3279.06,"{"""": ""20%""}",67512,1,Africa +2024-11-14,39804,7406,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1032.09,"{"""": ""17%""}",156154,0,Africa +2023-04-07,39805,7539,"[""Laptop""]",144.67,{},181505,1,Europe +2024-11-22,39806,5269,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1894.18,"{""seasonal"": ""6%""}",292845,0,Europe +2023-12-16,39807,6418,"[""Keyboard"", ""Laptop"", ""Tablet""]",4766.73,{},289081,1,Africa +2024-02-13,39808,792,"[""Charger"", ""Tablet""]",129.37,"{""promo"": ""7%""}",167724,1,Africa +2023-08-18,39809,6311,"[""Phone""]",4837.59,{},285720,1,South America +2024-04-10,39810,7464,"[""Monitor""]",3905.46,{},37825,0,North America +2024-10-19,39811,2555,"[""Tablet""]",435.14,{},144090,1,South America +2023-10-29,39812,3946,"[""Keyboard"", ""Wireless Mouse""]",4277.39,"{""promo"": ""16%""}",292469,1,South America +2024-10-28,39813,5734,"[""Phone"", ""Tablet""]",1869.89,"{""loyalty"": ""12%""}",92458,1,Europe +2024-09-10,39814,4659,"[""Keyboard"", ""Charger"", ""Laptop""]",3962.53,"{""seasonal"": ""15%""}",6611,1,Europe +2023-07-30,39815,1740,"[""Phone"", ""Headphones"", ""Keyboard""]",1067.23,{},69715,1,Africa +2023-11-11,39816,5562,"[""Monitor"", ""Headphones""]",1459.53,"{""seasonal"": ""8%""}",174151,1,Africa +2024-10-16,39817,4954,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1324.71,"{"""": ""24%""}",297390,1,South America +2024-06-05,39818,4925,"[""Monitor""]",2601.95,{},99127,0,Europe +2023-03-13,39819,4046,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4629.32,{},36339,1,Asia +2023-03-23,39820,9338,"[""Monitor"", ""Laptop""]",400.88,"{""loyalty"": ""15%""}",293548,0,North America +2024-08-17,39821,9026,"[""Monitor"", ""Tablet"", ""Headphones""]",2887.42,{},226778,1,North America +2024-08-11,39822,5829,"[""Phone"", ""Headphones""]",4525.98,{},262405,1,South America +2024-09-03,39823,3725,"[""Charger""]",3787.22,"{"""": ""22%""}",208017,1,Africa +2024-03-12,39824,5391,"[""Headphones"", ""Tablet""]",2243.89,{},1716,0,North America +2023-09-04,39825,2087,"[""Phone""]",1354.13,{},201902,0,Europe +2023-01-23,39826,2043,"[""Laptop"", ""Keyboard""]",962.54,{},23221,0,Europe +2024-03-23,39827,3559,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3700.3,{},146656,0,South America +2024-08-08,39828,3784,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4731.64,"{"""": ""6%""}",200864,1,South America +2024-02-25,39829,7417,"[""Monitor"", ""Tablet"", ""Keyboard""]",4059.98,"{""seasonal"": ""29%""}",116784,0,South America +2023-06-17,39830,7513,"[""Charger""]",4934.8,"{"""": ""10%""}",222327,1,South America +2024-01-24,39831,4278,"[""Headphones""]",1829.71,{},242166,1,North America +2023-11-10,39832,700,"[""Monitor""]",2341.25,{},72166,0,Africa +2023-07-21,39833,7962,"[""Wireless Mouse"", ""Headphones""]",2280.78,{},86890,1,Asia +2024-12-04,39834,4185,"[""Charger""]",2452.55,{},100301,0,Asia +2024-08-09,39835,4029,"[""Tablet""]",3570.03,{},64316,1,North America +2023-11-01,39836,9506,"[""Wireless Mouse"", ""Charger""]",3220.6,"{""promo"": ""13%""}",226356,0,Africa +2024-07-21,39837,7784,"[""Tablet""]",447.92,{},97480,1,Europe +2024-05-13,39838,3907,"[""Charger"", ""Keyboard""]",4319.67,"{""promo"": ""30%""}",98216,1,Europe +2024-03-25,39839,2184,"[""Keyboard"", ""Laptop""]",2076.95,{},25984,0,Asia +2023-02-11,39840,5342,"[""Charger"", ""Laptop"", ""Monitor""]",3529.84,{},29312,1,Europe +2024-01-03,39841,8143,"[""Tablet""]",4109.25,{},245564,0,Europe +2024-11-25,39842,5811,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1346.1,"{""promo"": ""7%""}",34471,0,North America +2024-09-05,39843,1619,"[""Monitor"", ""Laptop"", ""Charger""]",3794.42,{},24185,1,South America +2023-07-07,39844,317,"[""Wireless Mouse"", ""Keyboard""]",661.86,{},4972,0,South America +2024-06-29,39845,5232,"[""Phone"", ""Laptop"", ""Charger""]",1129.96,"{""seasonal"": ""10%""}",35184,1,Africa +2023-08-26,39846,1175,"[""Keyboard"", ""Tablet""]",334.66,{},242646,0,Europe +2023-09-04,39847,3197,"[""Charger"", ""Keyboard"", ""Headphones""]",2001.62,{},258803,1,Asia +2024-04-25,39848,9225,"[""Charger""]",570.55,"{""seasonal"": ""14%""}",296719,1,Europe +2023-08-05,39849,3032,"[""Headphones""]",3388.14,"{"""": ""23%""}",191704,0,South America +2024-07-06,39850,8511,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3745.33,{},138942,0,South America +2023-02-16,39851,2825,"[""Headphones"", ""Keyboard"", ""Laptop""]",1305.73,{},79753,0,Africa +2024-12-01,39852,9559,"[""Phone"", ""Laptop"", ""Charger""]",1117.49,{},130770,1,North America +2024-06-08,39853,9649,"[""Monitor""]",1668.51,{},107561,0,North America +2024-07-24,39854,4958,"[""Laptop""]",2509.11,"{""promo"": ""28%""}",85097,1,Asia +2023-08-22,39855,1649,"[""Charger""]",3226.83,"{""promo"": ""27%""}",233754,0,Europe +2024-02-12,39856,6965,"[""Laptop"", ""Monitor""]",888.95,"{""loyalty"": ""13%""}",156823,1,North America +2024-01-06,39857,5341,"[""Wireless Mouse"", ""Phone""]",2386.41,{},258423,0,Asia +2023-04-12,39858,2106,"[""Tablet""]",442.4,{},192814,0,Europe +2024-02-05,39859,9088,"[""Monitor"", ""Tablet"", ""Keyboard""]",302.26,{},81046,1,North America +2023-01-09,39860,8583,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3369.96,"{""seasonal"": ""21%""}",119583,1,Africa +2024-07-03,39861,8682,"[""Monitor""]",3536.39,"{""promo"": ""24%""}",200644,0,Europe +2023-03-07,39862,9734,"[""Tablet""]",1272.72,{},3097,1,Asia +2024-12-04,39863,4914,"[""Keyboard"", ""Laptop""]",3356.99,"{""loyalty"": ""9%""}",151307,0,Africa +2024-12-29,39864,1942,"[""Laptop""]",4795.83,"{""seasonal"": ""16%""}",30199,1,Africa +2024-04-02,39865,6528,"[""Headphones"", ""Monitor"", ""Laptop""]",3211.9,"{""seasonal"": ""14%""}",205019,1,Asia +2024-07-08,39866,259,"[""Keyboard"", ""Tablet""]",633.31,"{""seasonal"": ""6%""}",213911,0,Asia +2024-03-26,39867,9583,"[""Wireless Mouse"", ""Headphones""]",3010.82,"{""loyalty"": ""10%""}",152635,1,South America +2023-03-22,39868,3525,"[""Phone"", ""Tablet""]",3698.46,{},143893,1,North America +2024-04-11,39869,6636,"[""Headphones""]",1429.12,{},65910,0,Africa +2024-02-27,39870,4215,"[""Wireless Mouse"", ""Keyboard""]",4433.82,{},251717,1,Asia +2024-02-03,39871,9496,"[""Phone"", ""Keyboard""]",2101.49,"{"""": ""20%""}",46815,1,Africa +2023-03-28,39872,640,"[""Keyboard"", ""Charger"", ""Phone""]",4947.01,{},129825,1,Asia +2024-09-18,39873,5541,"[""Keyboard""]",2647.23,{},239173,1,Europe +2023-07-24,39874,4551,"[""Laptop""]",3824.55,{},273541,0,Asia +2024-03-28,39875,8012,"[""Tablet"", ""Charger"", ""Laptop""]",2539.42,{},258604,0,Europe +2024-08-11,39876,9071,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4299.83,{},232123,0,North America +2024-01-13,39877,6474,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4168.34,{},186046,0,Africa +2024-06-20,39878,1488,"[""Tablet"", ""Keyboard""]",1159.82,{},35001,1,Europe +2024-07-25,39879,3162,"[""Phone"", ""Tablet""]",1091.72,{},114497,0,North America +2023-09-13,39880,1908,"[""Keyboard"", ""Laptop"", ""Monitor""]",512.34,{},41241,1,North America +2024-06-29,39881,9377,"[""Phone""]",1191.87,"{""loyalty"": ""28%""}",102228,0,Asia +2023-06-26,39882,2080,"[""Wireless Mouse"", ""Monitor""]",2532.64,"{""loyalty"": ""16%""}",188748,0,Africa +2024-07-25,39883,4289,"[""Laptop""]",142.87,"{""seasonal"": ""18%""}",187226,0,Europe +2023-10-09,39884,2070,"[""Headphones"", ""Tablet""]",1718.05,{},192471,0,South America +2023-08-26,39885,9023,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3579.94,{},24286,1,South America +2023-06-14,39886,2199,"[""Keyboard""]",2541.72,{},41343,0,South America +2023-07-10,39887,2816,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3705.04,"{""promo"": ""30%""}",246169,0,South America +2023-11-29,39888,3751,"[""Keyboard"", ""Headphones""]",2786.12,"{""promo"": ""6%""}",94054,0,Europe +2024-11-12,39889,6625,"[""Laptop"", ""Monitor"", ""Charger""]",1615.07,"{""loyalty"": ""24%""}",135623,0,Africa +2024-04-21,39890,2619,"[""Monitor"", ""Charger""]",1016.57,"{"""": ""29%""}",292496,1,North America +2024-04-09,39891,9675,"[""Laptop"", ""Wireless Mouse""]",3144.98,{},269930,0,Africa +2024-01-19,39892,8776,"[""Tablet"", ""Monitor""]",1626.4,{},177786,1,Africa +2023-12-20,39893,1713,"[""Laptop""]",4538.24,{},166258,0,North America +2023-10-24,39894,2988,"[""Monitor"", ""Phone""]",3017.24,{},61189,1,North America +2024-04-25,39895,7341,"[""Charger""]",2545.45,"{""loyalty"": ""22%""}",243634,0,Africa +2024-09-21,39896,8907,"[""Charger""]",2698.75,"{""promo"": ""20%""}",124297,1,North America +2024-05-18,39897,8562,"[""Phone"", ""Charger""]",174.7,{},276190,0,Africa +2024-01-24,39898,7515,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2727.36,"{"""": ""22%""}",59213,0,North America +2024-05-11,39899,5023,"[""Keyboard""]",839.54,"{""seasonal"": ""6%""}",273404,0,Africa +2023-06-30,39900,2040,"[""Tablet"", ""Monitor"", ""Charger""]",3292.24,"{"""": ""12%""}",272151,1,Asia +2023-05-22,39901,5739,"[""Keyboard""]",4482.87,{},2776,1,Europe +2024-09-02,39902,5987,"[""Charger""]",559.69,"{""loyalty"": ""22%""}",224704,0,Europe +2024-12-13,39903,5246,"[""Keyboard""]",4296.54,"{""seasonal"": ""10%""}",182176,1,North America +2023-02-07,39904,4303,"[""Monitor""]",2391.93,"{""seasonal"": ""6%""}",166716,0,Africa +2023-12-13,39905,4424,"[""Charger"", ""Laptop""]",2465.48,"{""promo"": ""8%""}",154153,1,North America +2024-07-14,39906,9850,"[""Charger"", ""Headphones""]",1111.15,"{""loyalty"": ""7%""}",267788,0,Asia +2023-02-01,39907,1542,"[""Phone"", ""Headphones""]",2190.82,"{"""": ""5%""}",12065,1,South America +2024-12-02,39908,2041,"[""Wireless Mouse"", ""Headphones""]",3852.39,"{""loyalty"": ""14%""}",201766,1,Europe +2023-03-11,39909,4022,"[""Charger"", ""Headphones""]",3875.12,"{"""": ""8%""}",214542,0,Asia +2023-12-13,39910,6250,"[""Headphones""]",3859.7,{},106454,1,Africa +2024-07-06,39911,8093,"[""Laptop"", ""Headphones""]",435.64,"{""loyalty"": ""22%""}",196917,1,North America +2023-10-08,39912,3191,"[""Laptop"", ""Phone""]",1751.56,{},80572,1,South America +2024-04-19,39913,9290,"[""Tablet"", ""Keyboard""]",4017.47,{},90334,1,Asia +2024-10-07,39914,8657,"[""Keyboard"", ""Phone""]",235.62,"{""loyalty"": ""18%""}",186793,1,South America +2023-06-22,39915,5415,"[""Laptop"", ""Wireless Mouse""]",4410.03,{},165253,0,Europe +2024-09-26,39916,6425,"[""Monitor""]",4454.56,"{""promo"": ""17%""}",62041,0,South America +2024-05-29,39917,5078,"[""Phone"", ""Monitor""]",2552.09,{},73416,0,North America +2023-01-19,39918,565,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3605.75,"{""seasonal"": ""6%""}",265726,0,Africa +2024-06-07,39919,2157,"[""Laptop""]",1329.02,"{"""": ""8%""}",181160,1,Europe +2023-03-26,39920,200,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1799.75,{},251394,0,North America +2024-09-17,39921,7078,"[""Headphones"", ""Charger"", ""Monitor""]",3918.82,"{""promo"": ""9%""}",23748,1,Asia +2024-07-17,39922,6943,"[""Laptop"", ""Tablet"", ""Monitor""]",3894.99,{},41118,0,Asia +2023-10-27,39923,7549,"[""Wireless Mouse"", ""Tablet""]",2608.85,{},21644,1,North America +2024-04-09,39924,191,"[""Charger"", ""Tablet"", ""Keyboard""]",943.95,"{""promo"": ""23%""}",5035,0,South America +2023-08-13,39925,1465,"[""Charger"", ""Phone""]",4141.77,{},240429,0,South America +2024-12-01,39926,7841,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1627.87,{},35469,0,Europe +2024-11-04,39927,2455,"[""Phone""]",2671.67,{},19948,1,Asia +2024-08-31,39928,8621,"[""Phone""]",60.42,{},188873,1,Europe +2023-02-04,39929,2646,"[""Tablet"", ""Laptop"", ""Monitor""]",566.44,"{""seasonal"": ""6%""}",153166,1,Europe +2023-11-06,39930,1442,"[""Tablet"", ""Headphones""]",2651.77,"{""loyalty"": ""23%""}",195279,0,Asia +2023-06-21,39931,788,"[""Wireless Mouse""]",4057.74,"{""promo"": ""23%""}",78638,0,Europe +2023-01-18,39932,6754,"[""Tablet"", ""Charger""]",1816.66,"{"""": ""30%""}",35225,1,Europe +2024-09-06,39933,6812,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1570.85,"{"""": ""30%""}",278168,0,Africa +2023-10-01,39934,1886,"[""Headphones"", ""Tablet""]",3479.68,"{""seasonal"": ""24%""}",97238,0,North America +2023-08-02,39935,8519,"[""Wireless Mouse"", ""Keyboard""]",2025.25,{},275782,0,North America +2023-03-30,39936,9764,"[""Wireless Mouse"", ""Monitor""]",1711.85,{},149443,1,Asia +2024-01-26,39937,9249,"[""Monitor"", ""Laptop""]",3161.37,{},211763,1,Africa +2024-04-15,39938,3338,"[""Wireless Mouse"", ""Keyboard""]",506.03,"{""seasonal"": ""9%""}",279595,0,South America +2024-09-23,39939,2992,"[""Wireless Mouse""]",4789.58,{},228906,0,Africa +2024-03-14,39940,5680,"[""Laptop"", ""Wireless Mouse""]",3074.44,"{""seasonal"": ""29%""}",95811,0,North America +2023-01-30,39941,6000,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2970.8,{},179645,0,North America +2023-07-08,39942,3086,"[""Headphones""]",3935.11,"{""promo"": ""16%""}",275769,0,South America +2023-02-08,39943,5030,"[""Headphones"", ""Charger"", ""Monitor""]",76.59,{},251263,1,Europe +2024-08-06,39944,8551,"[""Phone""]",2634.12,"{""seasonal"": ""9%""}",14173,0,South America +2023-03-28,39945,9533,"[""Charger"", ""Monitor""]",3756.73,"{""promo"": ""6%""}",205203,0,Africa +2023-05-24,39946,1425,"[""Headphones""]",1530.54,{},39156,0,Asia +2024-08-28,39947,4070,"[""Monitor""]",4676.31,"{""seasonal"": ""27%""}",81536,0,South America +2024-03-23,39948,1935,"[""Headphones"", ""Keyboard"", ""Phone""]",2517.26,"{"""": ""26%""}",188245,0,Africa +2023-05-11,39949,2356,"[""Keyboard"", ""Tablet""]",1659.31,"{"""": ""15%""}",200730,1,Europe +2023-12-12,39950,5636,"[""Charger"", ""Monitor""]",338.09,{},166726,1,Africa +2023-11-03,39951,3715,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1850.64,{},183199,1,Africa +2024-06-08,39952,8329,"[""Headphones"", ""Keyboard""]",2807.86,"{"""": ""25%""}",189655,1,North America +2024-01-26,39953,4500,"[""Laptop"", ""Keyboard"", ""Tablet""]",84.86,{},196377,0,Africa +2024-04-08,39954,8942,"[""Wireless Mouse""]",1158.05,{},78109,0,Asia +2024-06-12,39955,1609,"[""Laptop""]",3564.92,{},186683,1,Africa +2023-03-22,39956,3095,"[""Tablet""]",234.87,{},198569,1,Asia +2023-02-18,39957,1091,"[""Tablet""]",1639.79,{},40188,0,Asia +2024-07-11,39958,6701,"[""Monitor"", ""Charger""]",1059.8,"{""promo"": ""8%""}",63709,1,South America +2024-04-21,39959,9199,"[""Laptop"", ""Keyboard""]",1506.52,{},241121,1,North America +2024-04-29,39960,9672,"[""Tablet"", ""Wireless Mouse""]",4800.87,"{""seasonal"": ""8%""}",25777,1,North America +2024-03-11,39961,3120,"[""Laptop"", ""Monitor"", ""Keyboard""]",2762.89,"{""loyalty"": ""8%""}",78291,0,North America +2023-09-19,39962,4516,"[""Tablet""]",1994.1,"{""promo"": ""24%""}",105793,0,Asia +2023-07-22,39963,7566,"[""Monitor""]",4183.12,{},243554,0,Europe +2023-10-01,39964,2423,"[""Keyboard"", ""Headphones"", ""Laptop""]",2930.22,{},34748,1,North America +2024-04-29,39965,5565,"[""Tablet""]",2258.04,"{"""": ""23%""}",241656,0,North America +2023-11-13,39966,1686,"[""Keyboard""]",768.01,"{"""": ""27%""}",41162,0,South America +2023-07-21,39967,9116,"[""Charger""]",1125.7,{},103298,1,South America +2024-08-28,39968,2605,"[""Keyboard"", ""Phone""]",3805.88,"{""seasonal"": ""23%""}",281808,1,South America +2023-04-06,39969,4248,"[""Monitor"", ""Tablet""]",1640.01,{},107023,1,Asia +2023-07-31,39970,4367,"[""Headphones"", ""Phone""]",2849.33,{},43512,0,Asia +2024-02-25,39971,4215,"[""Keyboard""]",1646.56,{},100612,0,Europe +2024-12-30,39972,1797,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1763.26,{},32834,1,Europe +2024-11-20,39973,9395,"[""Phone""]",2416.38,"{""promo"": ""16%""}",14150,1,Asia +2023-10-01,39974,6184,"[""Monitor"", ""Laptop""]",1361.31,"{""seasonal"": ""27%""}",5780,1,Asia +2024-06-06,39975,8237,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4741.76,"{""loyalty"": ""27%""}",87809,1,Africa +2024-03-09,39976,7081,"[""Tablet""]",528.48,"{""seasonal"": ""8%""}",198018,1,Asia +2024-06-22,39977,3677,"[""Headphones"", ""Phone""]",2640.09,"{"""": ""22%""}",129728,1,South America +2024-05-29,39978,5722,"[""Laptop""]",2608.04,{},137134,0,South America +2024-04-14,39979,1995,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3885.81,{},138743,1,South America +2023-11-02,39980,6251,"[""Laptop"", ""Tablet""]",3395.73,{},262749,1,Asia +2024-10-17,39981,8732,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4640.85,{},134189,0,Europe +2023-11-04,39982,7529,"[""Laptop"", ""Keyboard""]",3132.77,{},162315,0,Europe +2024-05-13,39983,7582,"[""Phone"", ""Monitor""]",4905.43,{},126424,0,Asia +2024-09-14,39984,1495,"[""Laptop"", ""Keyboard""]",1249.41,{},267595,1,Europe +2024-12-13,39985,1668,"[""Laptop"", ""Tablet"", ""Headphones""]",2758.89,{},289225,0,North America +2023-08-23,39986,5318,"[""Wireless Mouse"", ""Tablet""]",230.71,"{""seasonal"": ""18%""}",135349,0,Asia +2023-07-25,39987,8017,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4311.52,{},30248,1,Europe +2023-10-24,39988,7225,"[""Headphones"", ""Tablet"", ""Charger""]",1757.59,{},247091,1,North America +2024-11-06,39989,8232,"[""Monitor""]",4270.91,{},260413,0,North America +2023-12-24,39990,9785,"[""Monitor""]",664.1,{},77439,0,Asia +2023-08-07,39991,9008,"[""Headphones"", ""Tablet""]",4873.81,{},7408,1,South America +2024-12-30,39992,7654,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3205.6,{},196609,1,North America +2023-02-03,39993,8031,"[""Laptop"", ""Tablet""]",1351.25,"{""loyalty"": ""8%""}",80189,0,South America +2023-09-25,39994,3526,"[""Phone"", ""Headphones""]",1904.3,"{""loyalty"": ""15%""}",146475,0,Europe +2023-04-25,39995,8140,"[""Headphones""]",4917.92,"{""loyalty"": ""21%""}",275427,0,Europe +2023-09-24,39996,2222,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",621.21,{},295703,1,North America +2024-07-26,39997,6899,"[""Laptop""]",849.22,"{""loyalty"": ""15%""}",13594,0,South America +2023-03-15,39998,7968,"[""Laptop""]",4325.01,"{""promo"": ""22%""}",26633,1,South America +2023-02-23,39999,936,"[""Laptop"", ""Keyboard""]",371.36,"{"""": ""13%""}",138648,1,Africa +2024-07-15,40000,8097,"[""Charger"", ""Phone"", ""Keyboard""]",4968.46,{},241159,0,Europe +2024-01-26,40001,5227,"[""Wireless Mouse"", ""Charger""]",734.47,{},10997,0,Asia +2023-03-16,40002,697,"[""Tablet"", ""Charger""]",4952.4,"{"""": ""26%""}",89532,0,North America +2024-01-10,40003,5088,"[""Keyboard"", ""Tablet""]",4027.62,{},267340,0,North America +2023-10-16,40004,1121,"[""Wireless Mouse""]",4948.92,"{""loyalty"": ""16%""}",46338,1,North America +2023-06-07,40005,9621,"[""Keyboard"", ""Tablet""]",1141.58,{},45360,1,North America +2024-12-21,40006,7197,"[""Phone"", ""Headphones"", ""Monitor""]",4410.46,"{""loyalty"": ""15%""}",130410,1,Asia +2023-03-02,40007,7889,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2327.76,"{""seasonal"": ""20%""}",252945,1,Africa +2024-06-28,40008,2990,"[""Charger"", ""Monitor"", ""Headphones""]",1802.5,"{""promo"": ""29%""}",293556,1,Asia +2023-11-17,40009,9250,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1918.11,"{"""": ""29%""}",283666,0,North America +2024-09-26,40010,8877,"[""Charger"", ""Phone""]",1559.98,{},255466,1,Europe +2024-05-20,40011,7569,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1188.93,"{""promo"": ""12%""}",114120,0,Europe +2023-12-16,40012,1780,"[""Monitor"", ""Headphones""]",2780.57,{},158541,0,Europe +2024-08-25,40013,7195,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",801.86,{},248961,1,North America +2024-05-01,40014,1341,"[""Tablet""]",1751.23,"{"""": ""10%""}",151547,1,Europe +2024-03-09,40015,2350,"[""Wireless Mouse"", ""Charger"", ""Phone""]",585.31,"{""loyalty"": ""19%""}",229671,1,Africa +2024-11-28,40016,1197,"[""Phone"", ""Headphones"", ""Monitor""]",4315.39,"{"""": ""18%""}",23272,1,North America +2024-09-17,40017,4004,"[""Monitor""]",2537.92,{},160306,0,Europe +2023-06-08,40018,774,"[""Monitor"", ""Phone""]",4981.91,"{"""": ""13%""}",280242,1,Africa +2024-08-25,40019,4648,"[""Monitor""]",1983.08,{},68894,0,North America +2023-07-08,40020,672,"[""Tablet"", ""Keyboard"", ""Monitor""]",2919.64,"{""promo"": ""26%""}",20475,0,Europe +2024-08-02,40021,8865,"[""Monitor"", ""Keyboard""]",1144.64,{},272141,1,Asia +2024-09-14,40022,3445,"[""Keyboard"", ""Charger"", ""Monitor""]",4568.42,{},176745,1,Asia +2023-08-30,40023,7536,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1945.91,{},70940,0,Asia +2023-09-10,40024,7262,"[""Tablet""]",4335.46,"{"""": ""8%""}",77784,1,North America +2024-01-19,40025,8380,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3229.8,{},244716,1,South America +2023-05-13,40026,485,"[""Laptop""]",537.52,{},93778,0,South America +2023-02-23,40027,5812,"[""Charger"", ""Headphones"", ""Keyboard""]",2436.13,{},274353,0,North America +2024-08-26,40028,2970,"[""Phone"", ""Keyboard""]",1119.66,{},205060,1,Africa +2023-01-19,40029,7255,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3219.52,{},126607,0,Africa +2023-09-08,40030,5462,"[""Phone""]",4723.86,"{"""": ""9%""}",190371,0,Europe +2023-06-10,40031,6469,"[""Keyboard"", ""Headphones""]",244.81,"{""promo"": ""13%""}",151952,1,Asia +2023-03-05,40032,1138,"[""Charger"", ""Keyboard""]",2337.84,{},166383,1,Africa +2024-07-26,40033,8577,"[""Headphones"", ""Monitor"", ""Phone""]",4227.0,"{""seasonal"": ""29%""}",153480,1,South America +2024-03-27,40034,141,"[""Headphones"", ""Charger""]",3873.78,{},45037,1,Asia +2024-09-21,40035,9407,"[""Tablet""]",3986.15,{},47203,1,North America +2024-10-30,40036,3629,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2894.23,{},3151,0,North America +2023-03-07,40037,4996,"[""Wireless Mouse"", ""Monitor""]",3738.34,{},188360,0,Europe +2024-03-16,40038,2293,"[""Keyboard"", ""Charger"", ""Laptop""]",2694.8,"{""promo"": ""7%""}",15415,0,North America +2024-03-19,40039,1358,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1873.08,"{"""": ""30%""}",30551,1,Asia +2023-03-05,40040,1136,"[""Laptop"", ""Phone"", ""Keyboard""]",4039.64,{},22345,1,Asia +2023-04-07,40041,3827,"[""Tablet""]",3993.11,"{""promo"": ""29%""}",185822,1,Asia +2024-12-05,40042,4255,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2670.54,{},247640,0,Africa +2023-08-04,40043,4356,"[""Tablet"", ""Headphones""]",2707.58,"{"""": ""21%""}",185854,0,Europe +2024-02-24,40044,1242,"[""Laptop""]",2844.15,{},56846,1,Asia +2023-11-24,40045,157,"[""Phone""]",4156.88,"{""seasonal"": ""17%""}",62241,1,South America +2023-12-30,40046,360,"[""Charger"", ""Monitor"", ""Keyboard""]",2889.96,{},113931,1,South America +2024-10-16,40047,2583,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2119.26,"{""seasonal"": ""29%""}",143750,0,South America +2024-01-20,40048,18,"[""Keyboard"", ""Phone"", ""Tablet""]",1326.58,"{""seasonal"": ""24%""}",285966,1,Africa +2024-12-12,40049,3399,"[""Laptop"", ""Tablet"", ""Phone""]",4399.51,{},260393,1,Africa +2024-03-19,40050,6007,"[""Phone"", ""Tablet""]",1704.65,{},80835,0,South America +2023-05-01,40051,6096,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2006.73,"{""promo"": ""28%""}",229463,1,North America +2024-01-16,40052,6025,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2080.71,{},41236,0,Africa +2023-06-16,40053,8827,"[""Monitor""]",2560.62,"{""seasonal"": ""23%""}",228978,0,North America +2023-04-20,40054,6974,"[""Charger"", ""Keyboard""]",934.83,"{""seasonal"": ""19%""}",60619,0,North America +2023-01-08,40055,8061,"[""Keyboard""]",1246.59,{},137664,0,Asia +2023-12-05,40056,1500,"[""Tablet"", ""Keyboard""]",4839.79,"{""seasonal"": ""21%""}",193235,1,North America +2023-02-22,40057,7814,"[""Phone"", ""Tablet""]",4796.43,"{""promo"": ""7%""}",144001,0,Africa +2024-07-23,40058,2789,"[""Laptop""]",2157.9,"{""loyalty"": ""18%""}",206478,0,South America +2024-08-14,40059,8046,"[""Headphones""]",3978.6,{},96498,1,South America +2023-04-28,40060,769,"[""Keyboard"", ""Headphones"", ""Monitor""]",4590.68,{},198933,0,Asia +2024-01-06,40061,4019,"[""Headphones"", ""Phone""]",4450.81,"{"""": ""5%""}",250724,0,North America +2023-01-13,40062,9343,"[""Keyboard"", ""Tablet""]",178.1,{},175099,0,Asia +2024-04-20,40063,82,"[""Wireless Mouse"", ""Phone""]",3031.22,"{""seasonal"": ""14%""}",296532,1,Asia +2023-11-30,40064,3912,"[""Charger"", ""Phone"", ""Keyboard""]",3772.91,"{""seasonal"": ""11%""}",118481,0,Asia +2024-02-24,40065,2278,"[""Charger"", ""Keyboard""]",1654.04,"{"""": ""16%""}",194482,1,Europe +2024-08-09,40066,4849,"[""Wireless Mouse"", ""Headphones""]",2858.0,{},76510,1,Europe +2024-07-07,40067,2485,"[""Tablet"", ""Keyboard""]",3083.16,{},87762,1,Africa +2023-12-09,40068,9105,"[""Laptop"", ""Headphones"", ""Keyboard""]",1901.53,{},2430,0,Asia +2024-07-03,40069,8870,"[""Charger"", ""Keyboard"", ""Laptop""]",2676.97,"{""seasonal"": ""17%""}",298574,1,South America +2024-01-20,40070,7738,"[""Keyboard"", ""Tablet""]",3880.92,"{"""": ""29%""}",95999,0,South America +2023-09-23,40071,1093,"[""Charger"", ""Headphones"", ""Phone""]",1126.17,{},198390,0,South America +2023-04-06,40072,7519,"[""Keyboard"", ""Monitor"", ""Phone""]",3921.12,{},211418,1,Africa +2023-01-01,40073,1268,"[""Headphones"", ""Charger""]",1424.01,"{""promo"": ""23%""}",86500,1,Europe +2023-12-18,40074,7700,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2897.68,{},50763,0,Europe +2024-10-06,40075,7874,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2180.33,{},110697,1,Asia +2023-12-24,40076,3475,"[""Charger""]",790.8,"{"""": ""17%""}",179074,1,Africa +2023-01-13,40077,6847,"[""Laptop"", ""Charger""]",3157.92,{},120509,1,Asia +2024-10-04,40078,6043,"[""Charger"", ""Headphones""]",1406.29,{},34931,1,Asia +2024-07-05,40079,9385,"[""Laptop""]",51.16,{},168040,0,South America +2023-05-09,40080,187,"[""Charger"", ""Laptop"", ""Tablet""]",3842.36,"{""promo"": ""27%""}",139981,1,North America +2024-07-19,40081,8214,"[""Charger"", ""Tablet""]",1973.08,{},176478,1,North America +2023-03-22,40082,5929,"[""Keyboard"", ""Phone"", ""Monitor""]",3594.68,"{""seasonal"": ""17%""}",197074,1,Europe +2024-08-10,40083,7650,"[""Headphones""]",800.92,"{"""": ""12%""}",250627,0,Asia +2024-05-17,40084,4778,"[""Headphones"", ""Keyboard"", ""Monitor""]",620.71,"{""promo"": ""8%""}",157587,1,Africa +2024-07-25,40085,3910,"[""Monitor""]",2881.59,"{""seasonal"": ""29%""}",161704,0,South America +2024-07-27,40086,3403,"[""Keyboard"", ""Charger"", ""Laptop""]",2992.93,"{""seasonal"": ""29%""}",159407,1,Asia +2024-12-09,40087,2148,"[""Tablet"", ""Charger""]",1946.97,{},253704,1,Asia +2024-11-05,40088,9040,"[""Phone"", ""Tablet""]",2024.44,{},240968,0,Asia +2024-04-23,40089,7878,"[""Keyboard"", ""Charger"", ""Phone""]",1239.91,"{""loyalty"": ""19%""}",150498,1,Africa +2024-02-27,40090,9325,"[""Tablet"", ""Monitor""]",3378.69,{},42859,1,Asia +2024-09-19,40091,2664,"[""Tablet"", ""Headphones""]",4574.15,"{""seasonal"": ""29%""}",274806,1,Europe +2024-07-31,40092,2157,"[""Charger""]",4906.29,{},87116,1,Africa +2023-03-07,40093,6521,"[""Keyboard""]",120.17,"{""promo"": ""30%""}",138880,0,Africa +2023-06-24,40094,6764,"[""Charger""]",626.55,"{""loyalty"": ""8%""}",268873,0,South America +2024-12-11,40095,5337,"[""Laptop""]",1106.99,{},119388,0,North America +2024-04-23,40096,6216,"[""Headphones""]",3665.14,{},39218,0,North America +2023-04-03,40097,4749,"[""Keyboard""]",3925.26,{},156243,0,Africa +2024-07-03,40098,1916,"[""Wireless Mouse"", ""Monitor""]",2329.6,{},108310,0,Africa +2024-11-28,40099,191,"[""Monitor"", ""Headphones""]",707.93,{},197945,1,Europe +2023-08-18,40100,9727,"[""Charger"", ""Phone"", ""Wireless Mouse""]",680.27,{},4893,1,South America +2024-12-28,40101,9739,"[""Phone"", ""Charger"", ""Monitor""]",734.22,{},57925,0,Africa +2023-10-21,40102,6793,"[""Phone""]",1717.95,{},22927,1,Africa +2023-08-25,40103,4316,"[""Wireless Mouse""]",833.8,"{""seasonal"": ""17%""}",291749,0,South America +2023-04-01,40104,6697,"[""Keyboard""]",2975.67,{},290895,0,South America +2023-12-07,40105,1196,"[""Wireless Mouse"", ""Keyboard""]",4711.87,{},216541,0,Africa +2024-07-28,40106,4748,"[""Laptop""]",3802.26,"{""seasonal"": ""12%""}",242223,1,North America +2024-04-13,40107,666,"[""Keyboard""]",2129.43,"{""loyalty"": ""12%""}",7997,0,Europe +2023-04-28,40108,764,"[""Tablet""]",3936.67,"{""promo"": ""16%""}",196545,0,North America +2024-11-18,40109,1720,"[""Laptop""]",2966.58,{},52206,1,Europe +2024-12-12,40110,3878,"[""Phone"", ""Headphones""]",1985.86,{},141840,1,Africa +2023-03-18,40111,6714,"[""Phone""]",2162.79,{},84215,1,Europe +2024-08-31,40112,7838,"[""Headphones""]",2165.85,{},76634,0,South America +2023-05-14,40113,8981,"[""Laptop"", ""Keyboard"", ""Headphones""]",598.96,"{"""": ""13%""}",9860,0,Africa +2023-04-13,40114,5326,"[""Tablet"", ""Phone"", ""Keyboard""]",2157.31,{},261077,1,Asia +2023-12-27,40115,1065,"[""Phone""]",4488.46,"{"""": ""28%""}",145725,0,Europe +2023-01-18,40116,4248,"[""Monitor""]",1045.2,{},36618,0,Asia +2024-03-19,40117,3233,"[""Tablet"", ""Keyboard"", ""Charger""]",3798.25,"{"""": ""9%""}",240905,0,North America +2023-12-16,40118,6433,"[""Keyboard"", ""Phone""]",1234.69,"{""seasonal"": ""18%""}",209701,1,Africa +2023-12-08,40119,9150,"[""Keyboard"", ""Tablet""]",2931.97,"{"""": ""18%""}",199640,0,South America +2023-11-05,40120,4686,"[""Phone"", ""Laptop"", ""Monitor""]",409.09,"{""seasonal"": ""24%""}",275881,0,North America +2024-07-13,40121,3664,"[""Headphones"", ""Monitor"", ""Tablet""]",2205.99,"{""seasonal"": ""6%""}",42798,0,Africa +2023-11-21,40122,186,"[""Laptop"", ""Charger""]",887.68,{},238180,1,Europe +2024-12-06,40123,315,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2121.29,"{""seasonal"": ""6%""}",125496,1,Europe +2024-07-20,40124,4510,"[""Monitor""]",227.62,{},243616,1,North America +2023-03-27,40125,6323,"[""Charger""]",2403.96,"{""promo"": ""7%""}",17605,1,Asia +2024-02-29,40126,4701,"[""Laptop""]",1843.76,"{""seasonal"": ""14%""}",35820,1,North America +2023-01-25,40127,1393,"[""Wireless Mouse"", ""Laptop""]",538.6,"{""promo"": ""18%""}",119995,1,Europe +2023-04-26,40128,4555,"[""Keyboard"", ""Laptop""]",2711.5,"{""seasonal"": ""9%""}",272826,0,Africa +2023-10-05,40129,6534,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2265.65,"{"""": ""13%""}",95765,0,North America +2023-11-18,40130,2721,"[""Headphones"", ""Tablet""]",4862.2,{},201783,1,South America +2024-03-19,40131,432,"[""Keyboard""]",3116.16,{},66773,1,Africa +2024-07-24,40132,8476,"[""Monitor"", ""Phone"", ""Tablet""]",4788.32,"{"""": ""5%""}",298807,0,South America +2024-10-28,40133,6118,"[""Monitor"", ""Tablet"", ""Laptop""]",3656.88,{},39807,1,South America +2024-10-22,40134,5152,"[""Laptop"", ""Keyboard""]",1835.19,{},246610,0,Africa +2024-10-25,40135,6635,"[""Tablet"", ""Monitor"", ""Laptop""]",4705.46,"{""seasonal"": ""6%""}",194184,1,Europe +2023-07-23,40136,4089,"[""Headphones""]",3162.89,{},44426,1,North America +2024-12-18,40137,2427,"[""Monitor""]",4250.75,"{""seasonal"": ""19%""}",186510,0,South America +2023-03-16,40138,12,"[""Phone""]",105.44,{},94618,0,Europe +2024-12-29,40139,9453,"[""Charger"", ""Keyboard""]",2767.67,{},129201,1,Europe +2023-07-20,40140,3373,"[""Laptop"", ""Monitor""]",3149.44,{},85836,1,Asia +2023-01-25,40141,7222,"[""Wireless Mouse"", ""Laptop""]",2812.51,"{""seasonal"": ""17%""}",117420,1,South America +2023-08-09,40142,550,"[""Keyboard"", ""Laptop""]",3699.11,{},200963,1,Africa +2024-06-25,40143,5443,"[""Charger""]",101.65,"{""loyalty"": ""21%""}",188575,1,Europe +2023-06-22,40144,3474,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1593.89,"{""loyalty"": ""8%""}",199541,0,Europe +2024-07-10,40145,8724,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3139.97,{},235459,0,Africa +2023-09-20,40146,1235,"[""Tablet"", ""Charger"", ""Laptop""]",950.5,"{"""": ""25%""}",82248,0,Asia +2024-12-24,40147,3190,"[""Laptop""]",3483.9,{},50574,0,Africa +2023-05-12,40148,9511,"[""Headphones"", ""Laptop"", ""Monitor""]",1756.61,{},274898,1,North America +2024-02-21,40149,1384,"[""Monitor""]",4347.52,{},238049,1,North America +2024-06-01,40150,6174,"[""Wireless Mouse""]",347.42,{},177118,0,South America +2024-08-22,40151,1339,"[""Charger""]",983.19,{},50912,0,North America +2023-04-25,40152,8929,"[""Monitor""]",4283.88,"{""promo"": ""30%""}",225089,1,North America +2024-06-18,40153,98,"[""Laptop""]",4471.18,"{""loyalty"": ""13%""}",11048,1,Asia +2023-03-22,40154,6781,"[""Charger""]",2627.31,"{""loyalty"": ""8%""}",67413,1,Europe +2024-07-25,40155,910,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2687.97,"{""loyalty"": ""16%""}",4582,1,North America +2023-07-14,40156,9882,"[""Wireless Mouse""]",3041.68,{},53321,1,Europe +2024-12-22,40157,6614,"[""Keyboard"", ""Monitor"", ""Laptop""]",1437.84,{},14978,0,Africa +2023-05-22,40158,2195,"[""Wireless Mouse"", ""Charger""]",2302.81,{},77461,1,Asia +2023-02-01,40159,3590,"[""Monitor"", ""Headphones"", ""Phone""]",4270.41,{},28537,1,North America +2023-11-11,40160,4801,"[""Wireless Mouse"", ""Keyboard""]",983.45,"{""promo"": ""29%""}",144252,1,North America +2023-11-21,40161,8598,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",193.45,{},7900,0,Asia +2024-09-22,40162,9769,"[""Keyboard""]",2334.69,"{""seasonal"": ""16%""}",292788,1,Europe +2024-05-21,40163,2952,"[""Phone"", ""Wireless Mouse""]",4714.75,{},297677,0,South America +2024-05-29,40164,4065,"[""Laptop""]",3022.68,"{""seasonal"": ""14%""}",248002,1,Asia +2024-09-13,40165,2180,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",911.56,"{""loyalty"": ""18%""}",173900,0,Asia +2024-04-15,40166,8194,"[""Laptop"", ""Phone""]",3299.87,{},20915,0,Europe +2024-11-12,40167,7980,"[""Phone""]",2986.07,{},280160,0,Asia +2023-08-07,40168,4995,"[""Monitor"", ""Phone""]",1537.64,"{""seasonal"": ""5%""}",42355,1,Africa +2023-03-20,40169,5699,"[""Headphones"", ""Tablet""]",1854.74,"{""promo"": ""18%""}",237012,1,South America +2023-12-11,40170,5108,"[""Tablet""]",4560.5,{},5191,0,South America +2024-02-09,40171,2648,"[""Tablet""]",753.16,{},23218,1,South America +2023-04-01,40172,1247,"[""Phone""]",99.8,{},199277,1,North America +2023-06-30,40173,5991,"[""Headphones""]",1288.8,"{""loyalty"": ""21%""}",273830,0,Asia +2023-01-07,40174,118,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2428.42,{},75944,0,Asia +2023-06-13,40175,1947,"[""Monitor"", ""Phone""]",436.21,{},219668,1,North America +2023-04-01,40176,7280,"[""Tablet"", ""Monitor""]",3815.72,{},46989,0,Europe +2023-09-14,40177,5867,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3509.19,"{""seasonal"": ""5%""}",10266,0,Asia +2024-09-19,40178,7201,"[""Laptop"", ""Phone""]",914.29,{},211143,0,Asia +2024-09-08,40179,4338,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3390.29,{},285782,1,South America +2024-07-05,40180,2008,"[""Charger""]",3641.15,{},175797,0,Europe +2023-10-08,40181,3397,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3048.45,"{""loyalty"": ""22%""}",33480,0,Europe +2024-12-31,40182,5442,"[""Monitor"", ""Tablet""]",4729.94,{},250764,1,North America +2024-05-22,40183,4355,"[""Keyboard""]",564.21,"{""loyalty"": ""10%""}",217509,0,Asia +2024-06-08,40184,7348,"[""Charger"", ""Keyboard""]",2738.94,{},109852,1,Europe +2024-02-22,40185,3281,"[""Phone"", ""Monitor""]",1440.41,"{""loyalty"": ""9%""}",23308,1,North America +2024-01-31,40186,3925,"[""Wireless Mouse"", ""Laptop""]",274.51,"{""loyalty"": ""5%""}",280097,1,Europe +2024-11-01,40187,8511,"[""Phone""]",3627.38,{},166715,1,Asia +2024-07-06,40188,8325,"[""Keyboard""]",1368.68,"{""seasonal"": ""24%""}",44334,0,North America +2023-01-28,40189,413,"[""Wireless Mouse"", ""Laptop""]",2249.47,{},250306,0,Africa +2023-06-15,40190,4979,"[""Keyboard""]",3580.36,"{""seasonal"": ""15%""}",118691,1,North America +2024-01-17,40191,2709,"[""Laptop""]",1308.26,{},69556,1,Asia +2024-02-13,40192,3747,"[""Laptop"", ""Phone"", ""Keyboard""]",2282.73,"{"""": ""10%""}",110056,1,North America +2024-04-28,40193,4563,"[""Charger""]",4006.67,"{""loyalty"": ""5%""}",299852,0,South America +2023-06-08,40194,3516,"[""Wireless Mouse""]",3955.73,"{""promo"": ""25%""}",247240,1,Europe +2023-05-29,40195,9390,"[""Tablet""]",3950.64,{},111641,1,Asia +2023-12-06,40196,8318,"[""Laptop""]",4381.3,{},20600,0,Europe +2023-11-20,40197,9970,"[""Tablet"", ""Charger""]",4727.16,"{""seasonal"": ""11%""}",214860,0,North America +2023-04-13,40198,1641,"[""Phone"", ""Tablet"", ""Charger""]",2891.52,{},276432,0,South America +2024-08-29,40199,3989,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4397.08,"{""loyalty"": ""16%""}",175925,0,North America +2023-03-19,40200,1014,"[""Laptop"", ""Charger"", ""Monitor""]",2849.03,{},228631,1,South America +2023-12-06,40201,1722,"[""Headphones""]",2711.21,{},188543,0,Africa +2023-12-05,40202,2398,"[""Phone""]",1764.53,"{"""": ""21%""}",51816,1,Europe +2023-01-07,40203,9035,"[""Tablet"", ""Laptop""]",4901.27,"{""promo"": ""8%""}",280385,0,Europe +2023-05-24,40204,1226,"[""Charger"", ""Monitor"", ""Phone""]",1038.14,"{""loyalty"": ""16%""}",200992,1,Asia +2024-04-26,40205,2244,"[""Charger""]",2451.3,{},137594,0,Europe +2023-09-29,40206,5979,"[""Headphones"", ""Monitor""]",1689.03,{},173185,1,Asia +2023-02-17,40207,261,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2423.23,{},136837,0,Europe +2024-11-19,40208,2169,"[""Charger""]",1498.13,"{""loyalty"": ""5%""}",108822,0,Europe +2024-08-10,40209,7602,"[""Tablet""]",4263.09,"{"""": ""26%""}",249562,0,Europe +2024-12-08,40210,4565,"[""Monitor""]",4756.86,"{"""": ""22%""}",89738,1,South America +2024-01-28,40211,9965,"[""Phone"", ""Keyboard"", ""Headphones""]",1598.12,"{""promo"": ""19%""}",79462,1,South America +2024-04-01,40212,5407,"[""Keyboard"", ""Headphones""]",419.0,{},18616,1,South America +2023-12-11,40213,7082,"[""Tablet"", ""Charger""]",4571.94,"{""seasonal"": ""27%""}",58505,1,Europe +2023-08-27,40214,5685,"[""Laptop"", ""Keyboard""]",544.95,{},262950,1,Africa +2023-05-06,40215,567,"[""Laptop"", ""Charger"", ""Phone""]",4017.78,"{""seasonal"": ""7%""}",275241,1,Africa +2024-04-19,40216,2749,"[""Laptop""]",4870.32,{},10719,1,Africa +2023-04-15,40217,9290,"[""Wireless Mouse""]",3226.73,"{""promo"": ""24%""}",278646,1,Africa +2024-12-31,40218,3327,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",130.34,{},294241,0,North America +2023-12-31,40219,3777,"[""Monitor"", ""Keyboard""]",368.7,"{"""": ""29%""}",222263,0,South America +2024-12-17,40220,3782,"[""Tablet"", ""Charger""]",4259.35,"{""promo"": ""29%""}",299777,1,North America +2024-09-13,40221,4295,"[""Phone"", ""Tablet"", ""Monitor""]",139.44,{},108408,0,Africa +2023-10-31,40222,4558,"[""Charger""]",2084.28,"{""promo"": ""28%""}",233973,1,South America +2023-11-30,40223,6190,"[""Laptop"", ""Keyboard""]",4450.93,"{"""": ""21%""}",135333,1,Africa +2024-11-12,40224,6616,"[""Tablet"", ""Phone"", ""Monitor""]",3686.77,{},265596,0,Asia +2023-03-31,40225,5493,"[""Charger""]",1554.91,{},68993,0,North America +2024-04-23,40226,7658,"[""Tablet"", ""Monitor"", ""Keyboard""]",1958.16,{},190609,1,North America +2023-05-27,40227,1536,"[""Charger"", ""Laptop"", ""Monitor""]",1886.82,"{"""": ""30%""}",15171,0,North America +2023-02-17,40228,5952,"[""Tablet""]",1537.35,"{""seasonal"": ""10%""}",210039,1,Europe +2023-09-21,40229,5117,"[""Keyboard"", ""Laptop"", ""Charger""]",873.02,{},299999,1,Europe +2023-05-17,40230,4060,"[""Monitor""]",4129.66,"{""seasonal"": ""14%""}",265122,1,South America +2024-09-30,40231,2493,"[""Wireless Mouse""]",190.03,{},176707,0,South America +2024-08-10,40232,3134,"[""Wireless Mouse""]",2682.87,{},187566,1,North America +2024-05-14,40233,91,"[""Keyboard""]",1799.11,{},272638,1,South America +2024-02-02,40234,9996,"[""Wireless Mouse""]",1937.56,"{""promo"": ""22%""}",147298,1,South America +2024-04-24,40235,5591,"[""Keyboard"", ""Monitor"", ""Laptop""]",4693.53,"{"""": ""10%""}",241698,0,South America +2024-10-31,40236,3447,"[""Keyboard""]",331.93,{},77308,1,Europe +2024-11-10,40237,3569,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1875.34,{},174167,1,South America +2023-08-30,40238,4857,"[""Tablet""]",1715.46,"{""promo"": ""28%""}",182342,1,North America +2023-04-28,40239,9178,"[""Charger"", ""Headphones""]",4454.89,"{""loyalty"": ""13%""}",254152,1,Europe +2023-06-04,40240,2229,"[""Monitor"", ""Wireless Mouse""]",2919.21,{},196229,0,South America +2024-04-23,40241,5903,"[""Headphones"", ""Wireless Mouse""]",4749.29,"{""seasonal"": ""15%""}",46691,0,South America +2023-10-25,40242,2995,"[""Charger"", ""Headphones"", ""Keyboard""]",2011.3,"{""loyalty"": ""23%""}",91924,0,Africa +2023-07-19,40243,1186,"[""Wireless Mouse""]",1817.1,{},114042,1,Europe +2023-05-26,40244,598,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4164.91,{},138709,0,Asia +2023-02-01,40245,2710,"[""Monitor"", ""Wireless Mouse""]",3034.15,"{""loyalty"": ""12%""}",26702,1,South America +2024-04-03,40246,1173,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2014.17,{},193881,0,Europe +2024-12-25,40247,3668,"[""Phone""]",3168.06,{},246853,0,South America +2023-04-19,40248,7590,"[""Tablet"", ""Charger""]",4165.84,"{"""": ""11%""}",197267,0,South America +2023-01-21,40249,8004,"[""Phone"", ""Charger""]",2190.43,"{""promo"": ""25%""}",143051,0,Africa +2023-06-13,40250,9555,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3652.92,{},264876,0,Asia +2023-01-07,40251,4449,"[""Monitor""]",970.74,"{"""": ""16%""}",199273,1,Africa +2024-01-20,40252,8320,"[""Wireless Mouse"", ""Keyboard""]",3943.04,"{""seasonal"": ""30%""}",172972,0,Asia +2024-05-01,40253,6496,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",754.28,{},34331,1,Europe +2023-03-18,40254,3408,"[""Charger""]",748.44,{},264208,0,Asia +2024-08-04,40255,5131,"[""Charger"", ""Wireless Mouse""]",3160.33,{},122700,1,Europe +2024-09-01,40256,5428,"[""Wireless Mouse"", ""Monitor""]",2689.38,"{""loyalty"": ""30%""}",166633,0,Europe +2023-11-14,40257,4720,"[""Wireless Mouse""]",3395.49,"{""seasonal"": ""6%""}",179217,1,North America +2024-04-03,40258,4739,"[""Phone"", ""Keyboard"", ""Tablet""]",902.09,"{""seasonal"": ""25%""}",133354,0,North America +2024-02-09,40259,8457,"[""Phone"", ""Laptop"", ""Headphones""]",4725.86,{},258913,1,South America +2024-10-06,40260,8603,"[""Phone""]",3920.63,"{""seasonal"": ""24%""}",244521,0,Europe +2024-10-23,40261,5154,"[""Wireless Mouse""]",1572.58,"{""promo"": ""23%""}",242670,1,Africa +2023-06-12,40262,3263,"[""Monitor"", ""Keyboard""]",3081.34,{},130576,0,North America +2024-12-27,40263,4027,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4919.6,"{""seasonal"": ""29%""}",122036,0,Europe +2023-10-14,40264,4729,"[""Wireless Mouse""]",1254.83,"{""loyalty"": ""27%""}",117163,1,Africa +2023-12-30,40265,5528,"[""Phone"", ""Tablet""]",954.47,{},296276,1,South America +2023-12-13,40266,8453,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2891.76,"{""loyalty"": ""14%""}",64360,0,Africa +2023-03-01,40267,4277,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3911.78,"{""loyalty"": ""17%""}",169638,1,Europe +2024-10-29,40268,1900,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2194.69,{},23410,1,Europe +2024-03-16,40269,113,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3351.27,"{""seasonal"": ""22%""}",249504,0,Asia +2024-07-29,40270,6856,"[""Wireless Mouse""]",3218.35,{},248909,0,Europe +2023-09-10,40271,661,"[""Charger""]",3995.3,{},123688,0,Europe +2023-03-17,40272,4266,"[""Charger"", ""Keyboard"", ""Tablet""]",2975.52,{},261336,0,South America +2024-08-10,40273,3699,"[""Headphones"", ""Phone""]",3577.29,"{""loyalty"": ""17%""}",75480,0,Europe +2024-04-26,40274,3765,"[""Headphones""]",3860.65,"{"""": ""5%""}",74636,0,South America +2024-06-08,40275,5171,"[""Charger""]",3854.65,{},129250,1,South America +2024-11-06,40276,1581,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3552.15,"{""seasonal"": ""21%""}",129938,1,Europe +2023-12-08,40277,6203,"[""Tablet""]",2745.32,"{""promo"": ""13%""}",186811,0,North America +2023-01-05,40278,9056,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1175.94,{},178974,1,Asia +2023-01-07,40279,1270,"[""Tablet""]",1991.16,"{""seasonal"": ""30%""}",215722,1,North America +2023-03-26,40280,4206,"[""Monitor"", ""Charger""]",1613.48,"{""promo"": ""29%""}",140947,0,North America +2024-02-22,40281,3954,"[""Monitor""]",3666.45,"{""seasonal"": ""22%""}",119475,0,North America +2023-05-22,40282,9824,"[""Phone"", ""Charger""]",1706.51,"{"""": ""10%""}",101340,1,South America +2024-06-14,40283,2698,"[""Headphones"", ""Keyboard""]",2384.82,{},7270,0,North America +2024-06-27,40284,8042,"[""Wireless Mouse"", ""Headphones""]",2570.81,{},139597,1,South America +2023-10-17,40285,7089,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2109.58,"{""loyalty"": ""29%""}",284057,0,Europe +2024-09-24,40286,2250,"[""Wireless Mouse""]",4899.27,{},218284,1,Asia +2023-11-12,40287,8709,"[""Phone"", ""Wireless Mouse""]",3252.98,"{""loyalty"": ""25%""}",272324,0,South America +2024-03-07,40288,534,"[""Monitor""]",414.45,{},92947,1,Asia +2024-03-14,40289,1203,"[""Laptop""]",241.32,{},169213,1,South America +2023-09-07,40290,8749,"[""Tablet"", ""Phone""]",1585.45,{},50616,1,North America +2024-11-12,40291,7476,"[""Keyboard"", ""Monitor""]",303.0,"{""seasonal"": ""27%""}",280766,1,North America +2024-02-24,40292,7891,"[""Wireless Mouse"", ""Tablet""]",663.98,"{""loyalty"": ""7%""}",63019,0,North America +2024-10-15,40293,8834,"[""Monitor"", ""Wireless Mouse""]",267.9,"{""promo"": ""25%""}",208938,0,South America +2024-07-25,40294,5489,"[""Keyboard"", ""Phone"", ""Laptop""]",3121.3,{},277305,1,South America +2023-08-20,40295,7270,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4875.76,"{""seasonal"": ""24%""}",56347,0,Asia +2023-11-19,40296,7950,"[""Charger""]",1562.61,{},244187,1,Europe +2023-05-21,40297,3806,"[""Wireless Mouse"", ""Charger""]",1595.53,"{"""": ""12%""}",280418,0,Asia +2023-05-12,40298,5359,"[""Wireless Mouse""]",3498.76,{},285888,1,North America +2023-06-19,40299,8832,"[""Wireless Mouse"", ""Monitor""]",1362.9,"{""loyalty"": ""13%""}",264725,0,South America +2024-02-06,40300,9228,"[""Headphones"", ""Phone"", ""Laptop""]",2408.35,{},90873,1,Africa +2024-08-13,40301,4833,"[""Wireless Mouse"", ""Laptop""]",3060.39,"{""promo"": ""20%""}",218997,0,North America +2023-04-19,40302,287,"[""Laptop""]",386.99,{},76585,1,South America +2024-04-09,40303,7061,"[""Headphones"", ""Phone""]",68.29,"{""promo"": ""25%""}",120699,1,Africa +2024-01-04,40304,928,"[""Keyboard"", ""Headphones"", ""Tablet""]",382.63,"{"""": ""23%""}",165047,1,Africa +2023-02-02,40305,6044,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3592.11,"{""loyalty"": ""17%""}",43803,0,North America +2024-01-10,40306,2074,"[""Monitor"", ""Phone"", ""Charger""]",1188.09,"{""promo"": ""5%""}",96270,1,North America +2024-11-22,40307,2946,"[""Laptop""]",2382.34,{},94201,0,North America +2024-08-14,40308,6600,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3897.91,{},238237,0,Asia +2024-03-20,40309,165,"[""Charger"", ""Laptop"", ""Keyboard""]",3583.17,"{""promo"": ""6%""}",278672,0,Europe +2023-03-25,40310,5607,"[""Tablet""]",942.53,"{""loyalty"": ""10%""}",57725,1,Europe +2023-08-03,40311,1248,"[""Laptop""]",2259.89,{},155358,1,Africa +2023-07-05,40312,8777,"[""Monitor""]",1945.5,"{""loyalty"": ""5%""}",228573,0,North America +2023-09-09,40313,6339,"[""Tablet""]",3890.4,{},130476,1,North America +2023-02-12,40314,2611,"[""Charger""]",3355.24,"{""promo"": ""30%""}",214074,1,South America +2023-02-02,40315,1899,"[""Laptop""]",4623.27,{},253965,0,South America +2023-05-13,40316,475,"[""Headphones""]",1426.7,"{"""": ""24%""}",290890,1,Europe +2023-05-24,40317,911,"[""Tablet"", ""Headphones"", ""Laptop""]",2911.54,"{""promo"": ""15%""}",259077,1,Europe +2023-05-03,40318,6289,"[""Tablet""]",2294.27,"{""seasonal"": ""13%""}",103525,1,Asia +2023-07-01,40319,2118,"[""Charger""]",4494.07,{},266425,1,Africa +2023-10-30,40320,9960,"[""Laptop""]",4588.15,"{""promo"": ""25%""}",241577,0,Europe +2023-07-31,40321,5223,"[""Headphones""]",1618.83,"{""promo"": ""14%""}",129318,0,Asia +2023-10-12,40322,4844,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4458.98,"{""seasonal"": ""18%""}",54624,0,Asia +2023-04-16,40323,3760,"[""Laptop""]",2996.97,{},201530,0,South America +2023-04-21,40324,3092,"[""Headphones"", ""Laptop"", ""Phone""]",1808.02,"{""seasonal"": ""30%""}",38433,1,Africa +2024-07-09,40325,9304,"[""Wireless Mouse"", ""Phone""]",3088.83,"{""loyalty"": ""13%""}",259254,1,South America +2024-08-29,40326,3661,"[""Monitor""]",218.61,{},272342,0,Asia +2023-08-29,40327,8342,"[""Phone"", ""Laptop"", ""Keyboard""]",3272.4,{},162843,1,Africa +2023-11-25,40328,4475,"[""Keyboard""]",4756.65,{},269787,1,Europe +2023-11-24,40329,3391,"[""Headphones"", ""Wireless Mouse""]",917.43,"{""seasonal"": ""20%""}",20249,0,North America +2024-11-09,40330,1505,"[""Laptop"", ""Tablet"", ""Charger""]",2757.25,{},212504,1,Europe +2023-08-06,40331,8608,"[""Phone"", ""Headphones""]",4249.51,"{""seasonal"": ""10%""}",270960,1,South America +2023-09-11,40332,7383,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",444.68,"{""seasonal"": ""10%""}",159391,1,Africa +2023-02-28,40333,3733,"[""Phone"", ""Headphones"", ""Keyboard""]",4612.01,{},118940,1,Africa +2024-07-12,40334,4867,"[""Wireless Mouse""]",4648.65,{},134739,1,North America +2023-07-06,40335,8717,"[""Laptop"", ""Phone"", ""Headphones""]",1556.73,{},198455,0,Europe +2024-07-17,40336,4729,"[""Charger"", ""Keyboard""]",4949.42,{},17815,0,Asia +2024-03-16,40337,9854,"[""Phone"", ""Keyboard""]",326.46,"{""promo"": ""16%""}",72147,1,South America +2023-10-27,40338,2749,"[""Monitor""]",3068.39,{},167588,0,North America +2023-02-07,40339,2595,"[""Tablet"", ""Phone"", ""Monitor""]",233.41,"{""seasonal"": ""28%""}",265074,0,North America +2024-05-18,40340,7969,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2488.64,"{""loyalty"": ""10%""}",139722,0,Africa +2024-10-05,40341,8380,"[""Monitor"", ""Tablet""]",2690.51,{},290267,1,South America +2023-05-04,40342,8020,"[""Tablet""]",4051.59,{},28277,1,Africa +2023-07-19,40343,8205,"[""Monitor""]",827.43,{},93816,0,North America +2023-12-02,40344,1590,"[""Tablet"", ""Laptop""]",1010.98,"{""seasonal"": ""30%""}",177083,0,Asia +2023-07-12,40345,51,"[""Phone""]",4818.47,"{"""": ""8%""}",118925,0,South America +2024-12-01,40346,5312,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3249.49,{},98411,1,Europe +2023-09-04,40347,9015,"[""Tablet""]",191.92,{},192111,0,North America +2024-07-24,40348,696,"[""Phone""]",241.08,{},266081,0,North America +2023-03-18,40349,21,"[""Wireless Mouse""]",1230.82,{},281793,1,North America +2023-02-19,40350,1428,"[""Wireless Mouse"", ""Headphones""]",1225.85,{},7553,1,Africa +2023-12-29,40351,7735,"[""Phone"", ""Keyboard"", ""Headphones""]",3020.97,{},20570,0,South America +2023-02-07,40352,9788,"[""Headphones"", ""Phone"", ""Laptop""]",3481.73,"{""promo"": ""6%""}",40732,0,Africa +2023-09-18,40353,7333,"[""Keyboard"", ""Headphones"", ""Monitor""]",4779.58,"{""seasonal"": ""7%""}",31570,0,Asia +2024-07-19,40354,318,"[""Phone"", ""Keyboard""]",3293.47,{},36896,1,Africa +2024-07-18,40355,3234,"[""Phone"", ""Keyboard""]",2602.19,"{""seasonal"": ""11%""}",249244,1,Africa +2023-10-10,40356,6514,"[""Keyboard"", ""Wireless Mouse""]",3328.35,{},214151,1,South America +2023-06-30,40357,2424,"[""Monitor"", ""Charger""]",1671.41,"{""promo"": ""30%""}",221418,1,Europe +2024-02-12,40358,3201,"[""Monitor"", ""Laptop""]",4742.07,"{"""": ""15%""}",21900,0,Africa +2023-05-17,40359,4553,"[""Charger"", ""Keyboard""]",3612.56,{},207192,0,Europe +2023-06-11,40360,696,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2072.96,{},151960,1,Europe +2023-07-09,40361,1244,"[""Monitor"", ""Keyboard"", ""Phone""]",1715.25,"{""promo"": ""11%""}",96018,0,North America +2024-02-03,40362,2964,"[""Charger"", ""Headphones"", ""Laptop""]",3151.39,{},189802,0,Europe +2024-08-26,40363,3328,"[""Tablet"", ""Headphones"", ""Phone""]",1773.15,"{""loyalty"": ""17%""}",285527,1,Europe +2024-04-29,40364,3164,"[""Headphones"", ""Wireless Mouse""]",1189.38,{},6201,1,Africa +2023-01-01,40365,3207,"[""Keyboard"", ""Phone""]",2225.11,"{"""": ""23%""}",37657,0,Europe +2023-07-23,40366,9775,"[""Tablet""]",3504.38,{},126710,1,Africa +2024-04-12,40367,5849,"[""Laptop"", ""Phone"", ""Monitor""]",108.86,"{""loyalty"": ""22%""}",214688,0,Asia +2024-04-24,40368,5391,"[""Monitor"", ""Charger""]",2153.98,"{""seasonal"": ""20%""}",84829,1,South America +2023-09-09,40369,9811,"[""Headphones"", ""Keyboard"", ""Charger""]",4764.65,"{""promo"": ""14%""}",117908,0,North America +2024-12-29,40370,2816,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2369.68,{},162838,1,South America +2024-01-23,40371,3277,"[""Tablet""]",2500.56,"{""promo"": ""28%""}",143303,0,North America +2023-05-17,40372,9300,"[""Tablet"", ""Charger"", ""Monitor""]",4820.35,"{"""": ""18%""}",59767,0,Africa +2023-06-20,40373,3552,"[""Tablet"", ""Headphones""]",1580.01,{},276169,0,South America +2023-01-28,40374,787,"[""Keyboard"", ""Charger""]",1081.15,"{""promo"": ""20%""}",14154,1,Europe +2023-01-24,40375,6445,"[""Wireless Mouse""]",4162.96,"{"""": ""14%""}",109756,0,Asia +2023-06-19,40376,3703,"[""Headphones"", ""Laptop""]",3121.79,"{"""": ""16%""}",137331,1,Europe +2023-05-04,40377,9587,"[""Wireless Mouse"", ""Charger""]",1473.56,{},271084,1,Asia +2023-10-03,40378,7606,"[""Charger"", ""Laptop""]",1308.6,{},52521,0,Asia +2024-11-08,40379,8011,"[""Tablet"", ""Keyboard"", ""Charger""]",4845.01,"{""loyalty"": ""26%""}",52075,0,Asia +2023-03-16,40380,7383,"[""Tablet""]",1391.16,{},52704,0,South America +2023-03-03,40381,7996,"[""Laptop"", ""Charger"", ""Headphones""]",1315.35,{},37403,0,Africa +2024-10-04,40382,6403,"[""Monitor""]",4307.87,"{""loyalty"": ""23%""}",138807,1,Europe +2023-09-23,40383,6359,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3853.95,{},157394,0,Europe +2023-01-24,40384,7816,"[""Phone""]",3472.01,{},108676,1,Europe +2024-09-13,40385,7026,"[""Charger"", ""Monitor""]",4576.76,"{""loyalty"": ""13%""}",123518,1,South America +2023-01-15,40386,7781,"[""Tablet""]",1652.59,"{""promo"": ""14%""}",275101,1,Europe +2024-11-12,40387,205,"[""Phone""]",4010.03,{},247650,1,Europe +2023-06-23,40388,6522,"[""Tablet"", ""Monitor"", ""Phone""]",2080.12,"{""loyalty"": ""27%""}",267775,0,North America +2023-10-08,40389,2724,"[""Charger"", ""Keyboard""]",987.94,"{""loyalty"": ""11%""}",285495,1,Africa +2024-12-15,40390,2184,"[""Wireless Mouse"", ""Charger""]",1764.92,"{""loyalty"": ""27%""}",44755,0,Africa +2024-04-10,40391,8483,"[""Charger"", ""Laptop""]",2784.26,{},39192,0,Europe +2024-10-19,40392,3345,"[""Charger"", ""Laptop"", ""Tablet""]",1207.88,"{"""": ""5%""}",270428,0,Europe +2023-01-29,40393,2265,"[""Charger""]",614.32,{},258075,1,North America +2023-05-16,40394,3530,"[""Charger""]",3138.91,{},92622,0,North America +2024-12-31,40395,2154,"[""Headphones""]",967.9,{},53583,1,Africa +2024-02-05,40396,711,"[""Headphones"", ""Phone""]",4393.72,"{""loyalty"": ""24%""}",121945,0,Africa +2024-01-12,40397,3090,"[""Wireless Mouse""]",3382.88,"{"""": ""6%""}",218578,0,Africa +2024-01-20,40398,9767,"[""Wireless Mouse"", ""Laptop""]",1204.74,{},37919,0,South America +2024-11-22,40399,1483,"[""Tablet"", ""Monitor"", ""Phone""]",4244.4,{},48108,1,Europe +2023-05-23,40400,4297,"[""Laptop"", ""Charger"", ""Headphones""]",2153.01,{},206826,1,North America +2024-12-18,40401,3537,"[""Charger"", ""Tablet"", ""Keyboard""]",3844.34,"{"""": ""28%""}",19125,0,Europe +2023-08-10,40402,3344,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2402.83,"{""loyalty"": ""6%""}",65109,1,Europe +2024-10-25,40403,8700,"[""Laptop""]",1107.6,{},250538,0,South America +2023-04-08,40404,9964,"[""Phone"", ""Laptop"", ""Charger""]",505.99,"{""seasonal"": ""27%""}",42616,0,Europe +2024-04-30,40405,3784,"[""Tablet"", ""Charger""]",2722.89,{},112966,1,Africa +2024-08-30,40406,642,"[""Tablet"", ""Charger"", ""Keyboard""]",2245.0,"{"""": ""5%""}",158790,0,Asia +2023-01-16,40407,2456,"[""Tablet""]",4664.31,{},151998,0,North America +2024-02-12,40408,5433,"[""Wireless Mouse""]",1492.02,"{""seasonal"": ""22%""}",98205,1,South America +2023-02-05,40409,6406,"[""Tablet"", ""Laptop""]",1224.2,{},53419,1,Europe +2024-11-03,40410,5061,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",183.48,{},287691,0,Asia +2024-01-03,40411,3290,"[""Phone"", ""Monitor"", ""Charger""]",1549.75,{},108597,1,Europe +2023-09-10,40412,4239,"[""Wireless Mouse"", ""Keyboard""]",2166.41,"{""loyalty"": ""28%""}",185689,1,North America +2024-01-04,40413,4443,"[""Charger""]",1545.28,{},30447,0,Asia +2024-03-27,40414,8993,"[""Keyboard"", ""Phone""]",2834.62,{},176372,0,North America +2023-12-08,40415,7110,"[""Headphones"", ""Tablet"", ""Laptop""]",4737.75,"{""seasonal"": ""9%""}",223769,1,Africa +2023-01-22,40416,538,"[""Wireless Mouse"", ""Keyboard""]",3464.03,"{""seasonal"": ""8%""}",159244,1,Africa +2024-06-06,40417,8558,"[""Tablet"", ""Keyboard""]",3832.71,"{"""": ""6%""}",51982,1,South America +2024-01-16,40418,624,"[""Tablet"", ""Laptop"", ""Keyboard""]",1378.02,{},17796,0,Europe +2023-07-07,40419,9655,"[""Keyboard"", ""Headphones""]",1966.42,{},62551,1,Europe +2023-06-27,40420,1210,"[""Charger"", ""Keyboard""]",4262.22,"{""loyalty"": ""9%""}",13842,1,South America +2024-02-14,40421,2636,"[""Charger""]",602.86,{},137661,0,South America +2024-01-15,40422,4393,"[""Charger""]",2192.61,"{""promo"": ""5%""}",192175,1,Asia +2024-04-29,40423,4514,"[""Headphones"", ""Phone""]",443.74,"{""loyalty"": ""7%""}",152120,0,North America +2024-10-04,40424,1023,"[""Monitor""]",782.5,"{""seasonal"": ""20%""}",179142,0,Europe +2024-05-05,40425,8063,"[""Monitor""]",2583.2,{},193600,1,South America +2023-07-22,40426,5094,"[""Charger""]",4654.68,{},234947,0,Asia +2023-04-20,40427,5383,"[""Phone"", ""Monitor""]",2922.24,"{""loyalty"": ""8%""}",25711,0,Africa +2023-04-29,40428,4738,"[""Charger"", ""Tablet"", ""Monitor""]",4073.12,{},69565,1,South America +2024-09-18,40429,2543,"[""Headphones"", ""Phone""]",2794.43,"{""loyalty"": ""5%""}",154259,1,North America +2023-03-30,40430,234,"[""Tablet"", ""Laptop""]",141.04,"{"""": ""6%""}",209331,1,Asia +2023-01-20,40431,1530,"[""Monitor""]",3950.2,{},133955,0,North America +2023-08-13,40432,3727,"[""Monitor"", ""Headphones""]",1604.65,{},62231,1,Europe +2024-10-17,40433,7370,"[""Phone""]",3583.04,"{""promo"": ""23%""}",223978,1,Europe +2023-03-06,40434,4168,"[""Monitor"", ""Tablet""]",3741.96,"{""promo"": ""13%""}",236960,0,Asia +2024-05-19,40435,6087,"[""Headphones""]",817.51,{},66424,1,Asia +2024-12-26,40436,3156,"[""Laptop"", ""Headphones""]",4764.09,"{"""": ""16%""}",138492,0,North America +2023-05-30,40437,545,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3727.77,{},247758,1,South America +2024-07-18,40438,6499,"[""Laptop""]",3278.6,{},187533,1,North America +2023-06-30,40439,6648,"[""Headphones"", ""Monitor"", ""Phone""]",3146.58,"{""seasonal"": ""25%""}",233636,0,Asia +2023-02-16,40440,4886,"[""Charger"", ""Laptop"", ""Headphones""]",4002.06,{},276473,1,Africa +2024-10-01,40441,3801,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4719.28,{},271484,1,North America +2024-02-23,40442,3078,"[""Monitor"", ""Headphones""]",4901.88,{},7951,1,South America +2023-09-07,40443,7531,"[""Monitor"", ""Phone""]",3685.3,{},295526,0,South America +2024-12-11,40444,4998,"[""Headphones"", ""Phone""]",2215.98,{},20734,1,Europe +2023-10-29,40445,7459,"[""Charger"", ""Laptop"", ""Headphones""]",4538.07,{},96810,0,South America +2024-07-29,40446,3925,"[""Tablet""]",1424.07,{},148641,1,South America +2023-02-15,40447,1902,"[""Headphones"", ""Charger""]",3770.08,{},31798,0,North America +2024-01-16,40448,4847,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2496.89,"{"""": ""15%""}",229182,0,North America +2024-02-18,40449,2494,"[""Keyboard"", ""Laptop""]",441.28,"{""loyalty"": ""30%""}",176939,0,Asia +2024-03-03,40450,873,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2701.26,{},299371,0,Africa +2024-05-29,40451,5453,"[""Phone"", ""Tablet"", ""Laptop""]",3618.91,{},213546,1,South America +2024-10-01,40452,6637,"[""Charger"", ""Headphones"", ""Laptop""]",4447.86,{},200999,1,South America +2023-07-09,40453,1105,"[""Charger""]",2573.36,{},73675,1,South America +2023-12-19,40454,2749,"[""Keyboard""]",4164.17,{},163075,1,North America +2023-12-23,40455,4070,"[""Charger""]",4087.22,{},260658,0,Europe +2023-06-20,40456,3810,"[""Tablet"", ""Charger""]",1843.5,{},138489,0,South America +2024-01-05,40457,6386,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2934.46,"{""seasonal"": ""12%""}",83437,1,North America +2023-06-26,40458,860,"[""Laptop"", ""Monitor"", ""Headphones""]",1446.02,{},62303,0,Europe +2023-09-19,40459,8399,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3765.9,"{""loyalty"": ""28%""}",131336,1,Africa +2024-01-08,40460,5702,"[""Laptop"", ""Phone""]",2252.2,{},281156,0,Asia +2024-03-14,40461,991,"[""Keyboard"", ""Charger""]",4887.33,{},150592,1,Asia +2023-04-29,40462,1063,"[""Charger""]",3962.88,"{""seasonal"": ""9%""}",250104,1,Africa +2024-10-11,40463,1574,"[""Phone""]",1647.47,{},159369,1,Asia +2024-09-23,40464,8402,"[""Headphones"", ""Monitor"", ""Laptop""]",2947.28,{},19035,1,Asia +2024-11-10,40465,4615,"[""Keyboard"", ""Tablet"", ""Laptop""]",4851.01,{},273667,0,North America +2024-01-20,40466,2369,"[""Wireless Mouse""]",1745.07,"{""promo"": ""19%""}",88351,1,South America +2023-12-26,40467,8888,"[""Tablet"", ""Laptop"", ""Headphones""]",2916.54,"{""promo"": ""10%""}",21175,0,Africa +2024-05-16,40468,1716,"[""Monitor"", ""Tablet""]",3906.77,"{""loyalty"": ""22%""}",235523,1,South America +2023-03-04,40469,5039,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4448.96,{},222263,1,Africa +2024-06-26,40470,315,"[""Tablet""]",1425.0,{},192452,1,North America +2024-02-29,40471,4068,"[""Wireless Mouse"", ""Laptop""]",804.75,{},163507,1,Asia +2024-10-09,40472,6177,"[""Laptop"", ""Monitor"", ""Phone""]",3563.32,{},45110,1,Asia +2023-02-05,40473,9417,"[""Monitor""]",1839.63,{},242793,0,North America +2023-01-24,40474,253,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2537.69,"{"""": ""17%""}",200622,1,Europe +2023-08-23,40475,1944,"[""Keyboard"", ""Monitor"", ""Charger""]",858.12,{},256357,1,Asia +2024-02-13,40476,9025,"[""Wireless Mouse""]",856.04,{},133017,0,Europe +2024-11-22,40477,2618,"[""Headphones""]",3461.97,{},217224,0,Asia +2023-12-05,40478,7916,"[""Wireless Mouse""]",359.58,"{""promo"": ""20%""}",140341,1,Europe +2023-07-06,40479,4012,"[""Monitor""]",4923.12,"{""loyalty"": ""28%""}",295691,0,Africa +2023-07-21,40480,6582,"[""Tablet""]",2360.84,"{""loyalty"": ""25%""}",141103,1,North America +2024-11-14,40481,6449,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2898.07,"{""promo"": ""25%""}",248949,1,South America +2024-02-09,40482,4043,"[""Headphones"", ""Laptop"", ""Tablet""]",1559.24,"{""promo"": ""8%""}",98999,0,Asia +2024-12-19,40483,8579,"[""Wireless Mouse""]",881.96,"{""seasonal"": ""21%""}",285164,1,Africa +2024-06-19,40484,5757,"[""Keyboard"", ""Headphones"", ""Tablet""]",2604.35,{},248677,0,South America +2024-03-18,40485,4595,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2710.89,"{""promo"": ""13%""}",51352,1,North America +2023-06-30,40486,8750,"[""Monitor"", ""Keyboard"", ""Phone""]",4829.1,"{""promo"": ""14%""}",275453,0,Asia +2024-05-12,40487,7484,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4983.54,"{""loyalty"": ""13%""}",51500,1,Africa +2023-09-10,40488,6602,"[""Headphones""]",4409.64,"{"""": ""17%""}",262553,1,Europe +2023-09-13,40489,5637,"[""Monitor"", ""Charger"", ""Headphones""]",55.93,"{"""": ""25%""}",252523,1,Africa +2023-10-10,40490,5067,"[""Phone"", ""Keyboard"", ""Tablet""]",4596.1,{},78778,0,Europe +2023-01-30,40491,6092,"[""Monitor"", ""Charger"", ""Laptop""]",3899.41,"{""seasonal"": ""5%""}",293805,1,Africa +2024-06-23,40492,6140,"[""Phone"", ""Keyboard"", ""Tablet""]",1126.5,{},286031,1,Africa +2023-01-24,40493,8542,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3772.08,"{""promo"": ""10%""}",236742,0,Africa +2024-01-19,40494,5437,"[""Headphones"", ""Wireless Mouse""]",3400.38,{},268568,1,South America +2023-07-01,40495,8257,"[""Tablet""]",1269.12,{},163812,1,North America +2024-06-08,40496,2575,"[""Headphones"", ""Charger"", ""Tablet""]",3040.39,"{""seasonal"": ""11%""}",198224,1,Africa +2023-11-27,40497,7549,"[""Wireless Mouse"", ""Charger""]",2436.53,"{""loyalty"": ""6%""}",258765,1,South America +2023-10-24,40498,2855,"[""Tablet"", ""Laptop"", ""Headphones""]",2352.82,"{"""": ""15%""}",48802,1,Africa +2023-01-02,40499,606,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2447.19,{},216359,0,North America +2023-03-11,40500,6286,"[""Wireless Mouse""]",1129.85,"{""seasonal"": ""21%""}",41014,1,Asia +2023-12-06,40501,6028,"[""Tablet"", ""Monitor"", ""Laptop""]",4096.28,"{""loyalty"": ""26%""}",233311,0,Asia +2024-05-05,40502,8524,"[""Monitor""]",1720.46,"{"""": ""25%""}",188087,1,Europe +2023-03-15,40503,714,"[""Monitor"", ""Phone""]",4127.07,{},131647,1,South America +2023-11-13,40504,7242,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2442.94,"{""loyalty"": ""10%""}",176441,0,Europe +2024-05-28,40505,2306,"[""Monitor"", ""Laptop""]",4966.0,{},29062,1,Europe +2024-03-19,40506,4946,"[""Tablet""]",3189.95,"{"""": ""5%""}",209723,1,Europe +2024-10-07,40507,5243,"[""Laptop""]",799.76,{},15185,0,Africa +2024-09-23,40508,6876,"[""Keyboard"", ""Charger"", ""Tablet""]",3578.55,"{""loyalty"": ""19%""}",183720,1,Asia +2023-03-13,40509,2260,"[""Phone""]",3361.0,{},224264,0,North America +2024-01-25,40510,6107,"[""Laptop"", ""Charger"", ""Phone""]",1230.1,{},255891,0,Asia +2023-04-13,40511,7617,"[""Charger"", ""Keyboard""]",3642.63,"{""loyalty"": ""26%""}",68190,0,Asia +2024-04-26,40512,335,"[""Monitor"", ""Phone""]",1248.05,{},235465,0,Europe +2024-08-30,40513,6838,"[""Keyboard"", ""Headphones"", ""Monitor""]",4638.25,"{""seasonal"": ""23%""}",51466,0,Europe +2024-03-09,40514,7468,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1385.5,{},58242,0,Europe +2023-10-23,40515,9200,"[""Wireless Mouse"", ""Monitor""]",4900.97,"{""promo"": ""7%""}",70855,1,South America +2024-05-07,40516,7774,"[""Phone"", ""Tablet"", ""Charger""]",4046.46,"{""loyalty"": ""30%""}",252538,0,Africa +2024-12-05,40517,3212,"[""Tablet""]",4715.78,{},229024,0,Europe +2024-02-18,40518,6236,"[""Keyboard"", ""Monitor"", ""Tablet""]",2897.99,{},281504,1,Africa +2024-03-22,40519,1542,"[""Keyboard""]",611.52,{},66760,0,South America +2023-02-18,40520,5285,"[""Phone"", ""Monitor""]",2280.36,{},94421,1,Europe +2023-04-28,40521,1418,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1361.6,"{""promo"": ""10%""}",178056,0,Europe +2024-08-09,40522,1055,"[""Wireless Mouse""]",3048.42,{},100043,1,South America +2024-05-09,40523,7559,"[""Charger"", ""Phone""]",3147.6,"{""loyalty"": ""7%""}",49524,1,North America +2024-10-26,40524,6259,"[""Charger""]",2442.11,{},117828,1,Africa +2023-07-13,40525,7675,"[""Tablet""]",4102.54,"{""promo"": ""29%""}",271529,0,Africa +2024-11-10,40526,1647,"[""Phone"", ""Wireless Mouse""]",4723.43,{},215403,1,Africa +2024-02-09,40527,4112,"[""Charger""]",2931.35,{},43212,0,Europe +2023-09-15,40528,5377,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4480.51,{},172732,1,North America +2024-10-13,40529,2457,"[""Tablet"", ""Headphones""]",4579.56,{},5946,0,Africa +2023-03-30,40530,9322,"[""Headphones""]",3364.67,"{""seasonal"": ""17%""}",133608,0,Europe +2024-08-08,40531,6777,"[""Laptop"", ""Headphones"", ""Monitor""]",1250.74,{},143033,1,Europe +2024-10-06,40532,5665,"[""Tablet""]",2107.54,"{""seasonal"": ""9%""}",32422,1,Europe +2024-01-12,40533,8928,"[""Phone""]",1514.2,{},214349,0,Asia +2023-05-04,40534,6051,"[""Phone"", ""Keyboard""]",1418.71,{},100084,1,South America +2024-12-22,40535,2809,"[""Phone"", ""Keyboard"", ""Monitor""]",2284.23,"{"""": ""25%""}",238717,1,Africa +2024-06-22,40536,8344,"[""Laptop""]",3508.7,"{""promo"": ""12%""}",31081,0,South America +2023-02-12,40537,35,"[""Phone"", ""Keyboard""]",396.29,{},35214,0,Africa +2024-10-21,40538,2877,"[""Phone"", ""Laptop""]",3934.26,{},45196,0,North America +2024-11-26,40539,1407,"[""Phone""]",2117.91,"{""promo"": ""21%""}",218379,0,Asia +2024-07-20,40540,1156,"[""Keyboard"", ""Headphones"", ""Monitor""]",4006.18,{},280994,1,Europe +2024-10-19,40541,4821,"[""Charger"", ""Monitor""]",4653.03,"{""seasonal"": ""21%""}",276385,1,Africa +2023-05-15,40542,3399,"[""Monitor"", ""Charger"", ""Headphones""]",1726.27,"{""promo"": ""28%""}",186163,0,North America +2023-12-19,40543,5265,"[""Laptop""]",4209.89,"{""promo"": ""5%""}",105066,1,Asia +2024-04-27,40544,5036,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2744.04,"{""seasonal"": ""6%""}",56355,1,North America +2024-02-24,40545,4947,"[""Charger""]",3946.48,"{""seasonal"": ""27%""}",141808,1,Asia +2024-09-22,40546,7337,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3442.14,"{"""": ""23%""}",248160,1,Europe +2024-09-05,40547,8147,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4166.94,"{"""": ""26%""}",121074,0,South America +2024-11-05,40548,5438,"[""Headphones"", ""Monitor""]",1127.2,"{""seasonal"": ""18%""}",16510,0,Europe +2023-11-13,40549,8931,"[""Headphones""]",1285.53,"{""loyalty"": ""28%""}",26496,0,Asia +2024-05-16,40550,4106,"[""Monitor"", ""Tablet"", ""Laptop""]",2877.17,{},74664,0,Africa +2023-02-22,40551,355,"[""Wireless Mouse"", ""Charger""]",4613.77,"{"""": ""22%""}",95515,1,Asia +2024-08-09,40552,1742,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2994.71,{},119871,1,North America +2023-11-21,40553,6970,"[""Keyboard"", ""Charger""]",1417.76,{},109271,1,North America +2024-08-26,40554,2296,"[""Headphones""]",2440.66,"{""loyalty"": ""5%""}",248612,1,North America +2024-07-04,40555,6733,"[""Headphones"", ""Wireless Mouse""]",3354.52,{},41947,0,North America +2024-07-23,40556,7901,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1835.78,"{""loyalty"": ""18%""}",294289,1,Africa +2023-12-19,40557,1012,"[""Headphones""]",3411.16,"{""promo"": ""24%""}",126150,1,North America +2023-03-11,40558,6688,"[""Tablet"", ""Wireless Mouse""]",3478.44,{},258160,0,Africa +2024-07-02,40559,4543,"[""Phone""]",2661.09,"{""seasonal"": ""14%""}",251770,1,Asia +2023-07-13,40560,91,"[""Wireless Mouse""]",3566.49,{},100478,0,Africa +2023-01-04,40561,6177,"[""Headphones"", ""Charger"", ""Keyboard""]",1171.52,{},67246,1,North America +2024-08-26,40562,2578,"[""Charger""]",1309.61,{},287130,0,Africa +2024-04-07,40563,7463,"[""Wireless Mouse"", ""Charger""]",2619.27,{},107300,1,Asia +2023-09-11,40564,9229,"[""Laptop""]",3508.11,{},268708,0,Africa +2024-05-22,40565,8394,"[""Headphones"", ""Keyboard""]",4693.13,"{""loyalty"": ""22%""}",73303,0,Africa +2024-08-11,40566,5056,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1076.58,{},256650,0,Asia +2023-01-26,40567,7669,"[""Laptop""]",4001.04,"{""promo"": ""20%""}",202059,1,Asia +2023-04-13,40568,514,"[""Headphones""]",3469.41,{},176140,1,Asia +2024-04-21,40569,49,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1227.52,{},100330,0,North America +2023-11-10,40570,9760,"[""Headphones""]",3116.09,{},120898,0,North America +2023-07-15,40571,9222,"[""Tablet""]",2547.23,{},293680,1,Africa +2023-12-15,40572,7349,"[""Monitor"", ""Laptop""]",344.7,"{"""": ""19%""}",139285,0,North America +2023-02-21,40573,5755,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3079.73,{},105794,1,Europe +2024-12-30,40574,8368,"[""Charger"", ""Tablet""]",1320.13,"{""promo"": ""7%""}",43950,0,Asia +2024-09-12,40575,9857,"[""Keyboard""]",2060.26,"{"""": ""19%""}",236252,1,Europe +2024-11-18,40576,2327,"[""Charger"", ""Phone""]",3509.9,{},143076,1,Europe +2024-09-22,40577,7950,"[""Keyboard"", ""Laptop""]",1300.19,"{"""": ""6%""}",275513,1,Africa +2023-04-11,40578,6438,"[""Headphones"", ""Phone"", ""Monitor""]",283.08,"{""promo"": ""12%""}",24091,1,Africa +2024-07-05,40579,3482,"[""Charger""]",4604.23,"{""seasonal"": ""14%""}",36560,1,Asia +2023-02-17,40580,9199,"[""Wireless Mouse""]",3196.8,"{"""": ""13%""}",203050,1,North America +2024-02-23,40581,8566,"[""Wireless Mouse"", ""Headphones""]",3516.44,{},223805,0,Asia +2024-01-15,40582,4802,"[""Wireless Mouse""]",1646.93,"{""loyalty"": ""10%""}",65526,0,Asia +2024-01-18,40583,3252,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3011.66,"{""promo"": ""7%""}",204823,1,Asia +2024-06-24,40584,3308,"[""Monitor""]",4771.74,{},61591,1,North America +2023-08-16,40585,1813,"[""Laptop"", ""Wireless Mouse""]",1697.59,"{""loyalty"": ""30%""}",190968,1,Europe +2024-04-23,40586,2961,"[""Laptop"", ""Keyboard"", ""Charger""]",4399.63,{},196318,1,Asia +2023-07-27,40587,3314,"[""Monitor""]",3674.82,{},126626,1,North America +2023-08-29,40588,9183,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2260.71,{},288962,0,Europe +2023-03-20,40589,2913,"[""Headphones"", ""Laptop""]",4720.51,"{"""": ""13%""}",189059,1,Asia +2024-09-19,40590,1742,"[""Wireless Mouse""]",4128.92,"{""seasonal"": ""25%""}",55807,0,Asia +2024-06-02,40591,2846,"[""Wireless Mouse""]",1001.75,{},213846,0,Europe +2024-08-10,40592,4548,"[""Tablet"", ""Charger"", ""Monitor""]",4137.74,"{""loyalty"": ""21%""}",297455,0,Africa +2023-06-12,40593,2649,"[""Monitor"", ""Tablet""]",3613.34,"{""seasonal"": ""22%""}",53942,0,North America +2024-01-06,40594,1580,"[""Phone"", ""Tablet""]",3653.0,"{""promo"": ""15%""}",115940,0,Africa +2024-11-26,40595,8707,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",272.38,{},49530,0,Asia +2023-06-03,40596,8677,"[""Monitor"", ""Laptop"", ""Tablet""]",2722.61,"{""seasonal"": ""22%""}",60400,1,Europe +2024-06-10,40597,2277,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",832.57,"{""loyalty"": ""30%""}",280268,0,Asia +2024-07-26,40598,7182,"[""Laptop""]",4679.28,"{""seasonal"": ""14%""}",297840,0,Asia +2024-05-21,40599,430,"[""Monitor"", ""Keyboard"", ""Charger""]",944.44,"{""loyalty"": ""11%""}",2614,1,South America +2023-06-10,40600,4045,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3439.94,"{""seasonal"": ""29%""}",258643,1,Africa +2024-06-17,40601,3259,"[""Wireless Mouse"", ""Charger""]",924.79,"{""seasonal"": ""29%""}",146789,0,Asia +2023-02-09,40602,5902,"[""Wireless Mouse""]",2391.42,"{""seasonal"": ""13%""}",36659,0,Asia +2023-06-07,40603,6595,"[""Tablet"", ""Monitor""]",4815.7,"{""seasonal"": ""29%""}",40444,1,Asia +2024-05-01,40604,6971,"[""Tablet""]",2092.09,"{""promo"": ""21%""}",157031,0,Asia +2023-04-11,40605,1461,"[""Charger"", ""Keyboard""]",3516.59,"{"""": ""18%""}",203663,0,South America +2023-04-19,40606,1414,"[""Keyboard""]",1147.15,"{""loyalty"": ""17%""}",104351,1,Europe +2024-02-16,40607,6322,"[""Wireless Mouse"", ""Keyboard""]",772.38,"{""loyalty"": ""17%""}",29414,0,Europe +2024-03-05,40608,8483,"[""Keyboard"", ""Monitor""]",177.38,"{""seasonal"": ""27%""}",250607,1,Africa +2024-05-07,40609,170,"[""Wireless Mouse"", ""Headphones""]",207.06,{},184586,0,Europe +2024-04-03,40610,8116,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3078.34,{},183332,1,Europe +2024-10-22,40611,8877,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3751.58,{},48652,1,Europe +2024-12-25,40612,7142,"[""Phone"", ""Monitor""]",1738.51,{},26094,0,Europe +2024-05-17,40613,1087,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1226.41,{},229714,1,Africa +2023-05-20,40614,3415,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4823.34,"{""seasonal"": ""19%""}",170259,0,Asia +2023-07-29,40615,2550,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2184.29,"{"""": ""11%""}",213853,0,South America +2024-03-26,40616,7959,"[""Monitor"", ""Tablet""]",697.66,{},235820,0,South America +2024-08-27,40617,4949,"[""Phone""]",4681.76,{},81785,1,Asia +2023-07-30,40618,3312,"[""Phone"", ""Tablet"", ""Headphones""]",2291.84,{},48770,0,Asia +2023-08-19,40619,5099,"[""Tablet"", ""Keyboard""]",3408.88,{},256483,1,Africa +2023-09-18,40620,6285,"[""Phone"", ""Laptop""]",3844.4,{},185151,0,South America +2024-12-25,40621,554,"[""Phone"", ""Monitor""]",1089.21,{},31119,1,Europe +2024-03-08,40622,2075,"[""Tablet""]",2377.26,"{"""": ""9%""}",167308,0,Africa +2023-07-02,40623,9679,"[""Tablet"", ""Monitor""]",1773.49,{},88139,0,Asia +2023-03-28,40624,4132,"[""Phone"", ""Tablet"", ""Monitor""]",1955.13,{},125753,1,South America +2023-08-23,40625,7165,"[""Phone"", ""Laptop"", ""Headphones""]",269.32,"{""loyalty"": ""23%""}",209736,0,North America +2023-11-18,40626,2301,"[""Keyboard"", ""Phone""]",1060.67,"{""loyalty"": ""18%""}",10822,1,South America +2023-04-05,40627,7716,"[""Charger""]",3750.66,"{""seasonal"": ""28%""}",286727,1,Asia +2023-03-17,40628,570,"[""Laptop""]",2510.41,{},158001,0,Asia +2024-12-30,40629,6551,"[""Wireless Mouse"", ""Laptop""]",4366.21,"{""loyalty"": ""21%""}",69742,1,Europe +2024-12-06,40630,7676,"[""Phone""]",3369.6,"{""seasonal"": ""26%""}",254851,0,Europe +2024-03-24,40631,6229,"[""Monitor"", ""Keyboard"", ""Tablet""]",4775.44,"{""seasonal"": ""14%""}",114147,0,Asia +2023-11-07,40632,8577,"[""Headphones"", ""Monitor""]",814.14,{},211784,0,Asia +2024-05-17,40633,5224,"[""Headphones"", ""Wireless Mouse""]",2935.48,"{"""": ""8%""}",298508,0,Europe +2023-03-02,40634,217,"[""Phone""]",4789.18,{},267793,1,Europe +2024-07-20,40635,8163,"[""Charger"", ""Monitor""]",3896.47,"{""loyalty"": ""25%""}",201634,0,Europe +2023-01-19,40636,6533,"[""Laptop"", ""Tablet""]",1613.13,{},187800,1,Europe +2024-11-14,40637,9832,"[""Tablet""]",3987.65,"{"""": ""14%""}",265557,0,Asia +2023-10-17,40638,8220,"[""Wireless Mouse""]",4991.02,{},283575,0,North America +2024-02-15,40639,9600,"[""Laptop"", ""Charger"", ""Keyboard""]",3640.35,"{""loyalty"": ""22%""}",242079,1,North America +2024-04-05,40640,7991,"[""Keyboard"", ""Headphones"", ""Tablet""]",2532.33,{},247956,0,Asia +2024-04-11,40641,3340,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3707.49,"{""loyalty"": ""8%""}",33681,1,North America +2023-08-29,40642,288,"[""Laptop"", ""Phone"", ""Charger""]",1737.66,"{"""": ""14%""}",127446,1,Europe +2023-02-01,40643,5373,"[""Charger"", ""Phone""]",4457.63,"{""loyalty"": ""19%""}",206392,0,North America +2023-04-11,40644,3325,"[""Monitor"", ""Keyboard"", ""Charger""]",4866.65,"{""promo"": ""30%""}",87156,1,North America +2024-06-12,40645,1610,"[""Headphones"", ""Keyboard""]",2076.05,{},282802,1,Europe +2024-05-16,40646,9164,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2892.47,"{""promo"": ""12%""}",86037,0,South America +2024-03-21,40647,4879,"[""Keyboard""]",2292.68,"{""promo"": ""27%""}",150432,0,Africa +2023-07-23,40648,9675,"[""Charger"", ""Phone""]",3794.83,{},108381,1,Africa +2023-06-02,40649,8391,"[""Headphones"", ""Tablet"", ""Laptop""]",1970.24,{},250219,1,Asia +2023-09-10,40650,1006,"[""Monitor""]",782.65,"{"""": ""29%""}",17525,1,North America +2024-02-21,40651,8455,"[""Keyboard"", ""Monitor"", ""Tablet""]",1135.68,{},69317,0,Europe +2023-12-07,40652,449,"[""Tablet"", ""Laptop"", ""Monitor""]",841.0,"{""seasonal"": ""20%""}",99258,0,Asia +2024-01-03,40653,4705,"[""Headphones"", ""Wireless Mouse""]",1476.34,{},289872,1,South America +2023-12-24,40654,1616,"[""Monitor""]",4182.88,{},48846,0,Asia +2024-01-28,40655,6909,"[""Laptop"", ""Headphones"", ""Monitor""]",4346.62,{},6746,1,Asia +2023-01-03,40656,2210,"[""Charger"", ""Keyboard"", ""Phone""]",4468.36,"{""loyalty"": ""25%""}",185716,1,North America +2023-10-13,40657,877,"[""Phone""]",4578.83,{},20090,1,Asia +2024-05-23,40658,5626,"[""Tablet"", ""Phone""]",4096.53,{},42099,1,Africa +2023-10-27,40659,6890,"[""Tablet"", ""Charger"", ""Monitor""]",1528.48,{},6263,0,North America +2023-06-28,40660,210,"[""Charger"", ""Laptop""]",1653.5,{},134124,0,Europe +2024-01-11,40661,2167,"[""Headphones"", ""Charger"", ""Keyboard""]",510.01,{},263267,0,Europe +2024-04-11,40662,2847,"[""Charger""]",3502.9,"{""seasonal"": ""6%""}",62946,0,Asia +2024-07-04,40663,7150,"[""Headphones"", ""Phone"", ""Tablet""]",110.38,"{""seasonal"": ""7%""}",229154,0,Europe +2023-12-03,40664,6167,"[""Monitor"", ""Keyboard""]",3603.78,{},133691,1,South America +2024-03-29,40665,9140,"[""Tablet"", ""Keyboard""]",1542.78,"{"""": ""23%""}",259673,1,Europe +2023-06-24,40666,9353,"[""Tablet"", ""Wireless Mouse""]",133.32,"{""promo"": ""20%""}",124020,1,North America +2024-08-15,40667,4459,"[""Headphones""]",1938.23,"{""loyalty"": ""14%""}",256683,1,Africa +2024-01-31,40668,5932,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1907.37,"{"""": ""26%""}",83081,0,Africa +2023-05-17,40669,3279,"[""Charger"", ""Phone""]",1969.93,{},78714,0,South America +2023-09-12,40670,7743,"[""Laptop""]",3652.92,{},92564,1,North America +2023-01-31,40671,4505,"[""Headphones""]",1783.4,{},263525,0,Asia +2024-01-31,40672,7348,"[""Wireless Mouse"", ""Laptop""]",2761.2,"{""seasonal"": ""25%""}",91690,1,Europe +2024-03-02,40673,1178,"[""Charger"", ""Wireless Mouse""]",626.31,{},106272,0,Asia +2023-10-08,40674,9770,"[""Tablet"", ""Charger""]",368.5,"{""seasonal"": ""29%""}",169658,0,Europe +2023-11-29,40675,8657,"[""Charger"", ""Tablet"", ""Monitor""]",2435.73,"{"""": ""20%""}",78539,1,Europe +2024-12-14,40676,4673,"[""Laptop""]",4650.34,{},270598,1,Asia +2023-04-08,40677,6340,"[""Keyboard""]",1329.28,{},234670,0,Europe +2024-03-26,40678,7306,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4670.41,"{""loyalty"": ""10%""}",109925,1,Europe +2023-02-09,40679,3337,"[""Monitor"", ""Tablet"", ""Headphones""]",2799.71,"{"""": ""27%""}",124539,0,South America +2024-08-30,40680,8733,"[""Headphones"", ""Laptop""]",2444.31,"{""promo"": ""25%""}",84047,1,North America +2023-01-09,40681,5854,"[""Tablet""]",2868.96,{},252909,0,North America +2024-05-11,40682,1082,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1874.86,"{""seasonal"": ""28%""}",126590,0,Africa +2023-05-07,40683,6989,"[""Wireless Mouse"", ""Tablet""]",2706.11,{},12651,1,North America +2024-08-19,40684,4708,"[""Charger"", ""Tablet""]",4788.18,"{""seasonal"": ""12%""}",1034,1,Europe +2023-03-02,40685,7550,"[""Monitor"", ""Charger"", ""Tablet""]",1452.64,"{""promo"": ""20%""}",278313,1,Asia +2023-04-12,40686,6402,"[""Tablet"", ""Headphones"", ""Monitor""]",4544.7,{},217175,0,Africa +2023-11-01,40687,954,"[""Keyboard""]",3630.85,"{""promo"": ""13%""}",148649,1,Europe +2024-02-17,40688,9788,"[""Phone"", ""Keyboard""]",1665.62,{},148639,0,North America +2024-01-03,40689,7436,"[""Charger"", ""Keyboard""]",4921.73,"{""seasonal"": ""25%""}",93072,1,Asia +2023-05-22,40690,5522,"[""Monitor"", ""Charger"", ""Laptop""]",1992.21,"{"""": ""17%""}",79484,1,Europe +2024-12-09,40691,596,"[""Keyboard"", ""Laptop""]",2153.92,"{"""": ""27%""}",127950,0,Asia +2024-09-21,40692,5972,"[""Laptop"", ""Headphones""]",1063.35,"{""promo"": ""13%""}",147447,0,Africa +2023-06-19,40693,6509,"[""Headphones"", ""Charger""]",2183.11,{},216290,1,Asia +2024-08-20,40694,7102,"[""Charger"", ""Headphones""]",249.63,{},140777,1,South America +2024-08-13,40695,8640,"[""Tablet"", ""Laptop"", ""Monitor""]",781.78,{},203109,1,Asia +2023-09-17,40696,3459,"[""Charger""]",3634.6,{},236378,1,North America +2023-05-14,40697,6289,"[""Keyboard"", ""Tablet"", ""Phone""]",1614.47,{},187419,0,Asia +2024-12-07,40698,8505,"[""Headphones"", ""Monitor"", ""Phone""]",4005.82,"{""promo"": ""18%""}",172550,1,Europe +2024-12-27,40699,6335,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4393.28,{},76222,0,South America +2023-07-12,40700,1422,"[""Laptop""]",3528.72,"{""promo"": ""5%""}",167432,1,North America +2023-11-28,40701,7883,"[""Laptop""]",846.07,{},272939,0,North America +2023-11-13,40702,5588,"[""Monitor""]",4821.32,"{""promo"": ""10%""}",95050,1,Europe +2023-10-10,40703,7411,"[""Charger"", ""Headphones""]",77.98,{},135792,1,Asia +2024-11-23,40704,221,"[""Phone"", ""Wireless Mouse""]",4090.68,{},262118,0,Europe +2024-03-31,40705,7168,"[""Wireless Mouse"", ""Headphones""]",2802.15,"{""loyalty"": ""13%""}",222175,1,South America +2023-08-31,40706,568,"[""Wireless Mouse""]",2148.12,"{""loyalty"": ""28%""}",250255,0,South America +2024-05-30,40707,6995,"[""Keyboard"", ""Laptop""]",2640.54,{},198736,0,Africa +2024-10-13,40708,7979,"[""Laptop""]",3537.85,{},55049,0,South America +2023-07-29,40709,4164,"[""Tablet"", ""Charger""]",330.4,"{""seasonal"": ""5%""}",102167,0,North America +2024-10-02,40710,5881,"[""Tablet""]",2536.19,"{""promo"": ""10%""}",29311,0,Africa +2024-11-21,40711,7321,"[""Charger"", ""Monitor"", ""Keyboard""]",3933.99,"{""seasonal"": ""29%""}",293790,0,North America +2023-01-08,40712,5536,"[""Headphones"", ""Laptop"", ""Keyboard""]",2540.24,{},122928,0,Asia +2023-01-23,40713,4958,"[""Phone""]",1878.68,{},38678,0,Asia +2024-01-30,40714,3678,"[""Keyboard"", ""Laptop""]",1746.45,"{"""": ""28%""}",271219,0,Asia +2024-07-15,40715,4977,"[""Laptop"", ""Charger"", ""Keyboard""]",3869.97,{},116207,0,North America +2023-02-14,40716,4809,"[""Monitor"", ""Laptop"", ""Keyboard""]",3036.92,{},54053,0,North America +2024-12-27,40717,1698,"[""Phone"", ""Wireless Mouse""]",2069.34,"{"""": ""30%""}",129573,1,South America +2024-01-09,40718,1500,"[""Phone"", ""Laptop""]",2081.24,"{""loyalty"": ""17%""}",225717,1,Asia +2024-08-04,40719,5455,"[""Tablet"", ""Wireless Mouse""]",343.06,"{""loyalty"": ""10%""}",104987,1,South America +2023-09-08,40720,1231,"[""Phone"", ""Tablet"", ""Keyboard""]",3752.0,{},93684,1,South America +2024-05-05,40721,3875,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1656.58,"{"""": ""15%""}",122764,0,Europe +2023-10-05,40722,4565,"[""Laptop"", ""Charger"", ""Keyboard""]",4386.79,"{"""": ""27%""}",206477,0,Asia +2024-03-22,40723,487,"[""Keyboard"", ""Phone"", ""Headphones""]",3398.39,"{""loyalty"": ""11%""}",299325,1,North America +2023-12-05,40724,8573,"[""Tablet"", ""Keyboard""]",895.77,"{""loyalty"": ""12%""}",165332,0,South America +2024-12-10,40725,9996,"[""Headphones""]",3464.86,{},106810,1,Asia +2023-03-01,40726,4460,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4457.76,{},257166,1,Asia +2023-08-18,40727,925,"[""Charger"", ""Laptop"", ""Headphones""]",1799.72,"{""loyalty"": ""10%""}",17679,0,South America +2024-09-25,40728,2179,"[""Keyboard""]",2482.63,"{"""": ""16%""}",30794,0,Europe +2024-08-11,40729,2668,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3661.3,"{"""": ""12%""}",109942,0,North America +2024-03-02,40730,386,"[""Headphones"", ""Phone"", ""Laptop""]",1957.78,"{""promo"": ""30%""}",119763,1,Asia +2023-05-23,40731,7652,"[""Charger"", ""Wireless Mouse""]",353.81,"{""seasonal"": ""11%""}",55129,0,North America +2024-10-17,40732,8267,"[""Charger""]",2241.81,"{""loyalty"": ""10%""}",90287,1,Asia +2024-02-01,40733,883,"[""Tablet"", ""Headphones"", ""Laptop""]",3829.09,{},160520,1,South America +2024-04-05,40734,1464,"[""Headphones"", ""Keyboard"", ""Charger""]",3096.47,{},202911,1,Asia +2024-06-07,40735,7593,"[""Phone""]",2553.93,"{""loyalty"": ""21%""}",229612,1,North America +2023-02-19,40736,4620,"[""Keyboard""]",3695.89,{},134905,0,Europe +2024-11-09,40737,2585,"[""Wireless Mouse""]",1639.46,"{""loyalty"": ""21%""}",17172,0,South America +2023-07-18,40738,8914,"[""Laptop"", ""Tablet""]",3695.61,"{""seasonal"": ""8%""}",289800,0,Africa +2024-03-11,40739,2892,"[""Charger"", ""Headphones"", ""Laptop""]",1006.02,"{""promo"": ""19%""}",102083,1,Africa +2023-07-20,40740,5797,"[""Monitor"", ""Headphones"", ""Charger""]",2380.6,"{""promo"": ""11%""}",210167,1,North America +2024-04-17,40741,1987,"[""Tablet"", ""Phone"", ""Monitor""]",3075.86,{},178070,1,Africa +2023-12-09,40742,8330,"[""Charger"", ""Laptop"", ""Headphones""]",210.03,"{""loyalty"": ""25%""}",56896,0,North America +2023-09-12,40743,4430,"[""Monitor"", ""Phone"", ""Charger""]",340.24,"{""seasonal"": ""29%""}",200253,1,Africa +2023-02-23,40744,5462,"[""Phone"", ""Keyboard"", ""Charger""]",1308.2,"{""loyalty"": ""20%""}",273372,1,South America +2023-12-05,40745,2700,"[""Laptop"", ""Monitor"", ""Charger""]",4770.78,"{""loyalty"": ""15%""}",21954,0,Asia +2024-06-03,40746,8270,"[""Monitor""]",2270.03,{},248346,0,North America +2024-10-23,40747,3213,"[""Laptop""]",3012.76,{},6643,1,Europe +2023-10-20,40748,3469,"[""Monitor"", ""Keyboard"", ""Charger""]",1927.4,"{"""": ""6%""}",203877,1,Europe +2023-12-11,40749,1739,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3411.71,"{"""": ""23%""}",134626,0,North America +2024-07-22,40750,289,"[""Headphones"", ""Keyboard"", ""Phone""]",345.16,"{""promo"": ""15%""}",135481,0,Europe +2023-08-03,40751,5563,"[""Wireless Mouse"", ""Laptop""]",3431.96,"{"""": ""11%""}",21680,1,Africa +2024-10-09,40752,9881,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",940.42,"{""seasonal"": ""20%""}",82125,1,Europe +2023-06-06,40753,5783,"[""Keyboard"", ""Charger""]",3460.92,{},228827,0,North America +2024-01-11,40754,6549,"[""Wireless Mouse"", ""Tablet""]",4192.24,"{""loyalty"": ""10%""}",99748,1,South America +2023-04-07,40755,5612,"[""Tablet""]",2724.89,"{""loyalty"": ""11%""}",4096,1,Africa +2023-05-06,40756,9129,"[""Wireless Mouse"", ""Keyboard""]",2813.5,"{""promo"": ""6%""}",139790,0,North America +2024-05-31,40757,5108,"[""Headphones"", ""Wireless Mouse""]",3436.36,"{"""": ""8%""}",204453,1,North America +2023-01-09,40758,3968,"[""Wireless Mouse""]",2599.34,{},254941,0,Europe +2024-08-10,40759,5299,"[""Keyboard"", ""Phone""]",3373.6,{},261143,0,Asia +2024-12-30,40760,211,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2835.16,{},50350,0,South America +2024-12-29,40761,9136,"[""Headphones"", ""Keyboard""]",2584.07,{},180812,1,North America +2024-09-15,40762,8053,"[""Charger"", ""Phone""]",4286.76,{},187300,0,North America +2023-09-01,40763,2661,"[""Monitor"", ""Laptop""]",4438.41,"{""promo"": ""20%""}",294391,1,Africa +2024-09-24,40764,2150,"[""Headphones""]",4015.54,"{"""": ""29%""}",10624,1,North America +2024-02-10,40765,7338,"[""Keyboard"", ""Phone""]",3108.1,"{""seasonal"": ""5%""}",83584,0,Africa +2024-06-19,40766,1655,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",72.41,"{""promo"": ""13%""}",55713,1,Asia +2024-11-13,40767,1827,"[""Laptop"", ""Phone""]",4945.33,{},228249,0,Europe +2023-07-25,40768,2779,"[""Headphones"", ""Keyboard"", ""Tablet""]",3509.1,"{"""": ""8%""}",258484,1,Europe +2023-08-02,40769,1022,"[""Wireless Mouse"", ""Laptop""]",1021.91,"{"""": ""27%""}",267649,1,Asia +2024-11-15,40770,8739,"[""Wireless Mouse"", ""Monitor""]",3149.7,"{""promo"": ""27%""}",64478,1,Asia +2023-01-16,40771,99,"[""Tablet"", ""Charger"", ""Headphones""]",2909.14,"{""loyalty"": ""21%""}",51751,1,South America +2023-06-28,40772,5097,"[""Tablet"", ""Laptop""]",3036.96,{},190962,1,Europe +2023-03-18,40773,2265,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1244.36,{},118072,0,Asia +2024-01-14,40774,4028,"[""Charger""]",3951.43,"{""seasonal"": ""7%""}",157762,0,Europe +2023-04-12,40775,6356,"[""Charger"", ""Wireless Mouse""]",4015.5,{},113289,1,North America +2023-07-26,40776,2479,"[""Laptop"", ""Headphones""]",2974.41,{},81054,0,Europe +2023-11-12,40777,2742,"[""Monitor""]",4930.53,"{""promo"": ""11%""}",186336,0,Asia +2023-03-29,40778,4194,"[""Phone"", ""Wireless Mouse""]",4489.73,"{""promo"": ""18%""}",163888,0,North America +2023-04-11,40779,515,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3506.74,{},62460,0,Asia +2023-06-24,40780,2105,"[""Phone""]",4065.61,"{"""": ""22%""}",27739,0,South America +2024-02-16,40781,633,"[""Charger""]",2703.14,"{""seasonal"": ""30%""}",21793,1,North America +2023-10-02,40782,9351,"[""Wireless Mouse"", ""Phone""]",380.19,"{""seasonal"": ""11%""}",8786,1,Africa +2023-03-16,40783,8121,"[""Phone"", ""Tablet"", ""Keyboard""]",3477.58,"{""loyalty"": ""28%""}",158959,0,Asia +2024-10-14,40784,6240,"[""Keyboard"", ""Laptop""]",1463.64,{},92835,0,Asia +2024-11-06,40785,3165,"[""Laptop"", ""Tablet""]",817.57,"{""seasonal"": ""16%""}",170187,1,South America +2024-04-26,40786,6044,"[""Phone"", ""Charger"", ""Laptop""]",2227.73,"{"""": ""11%""}",154500,0,South America +2023-05-27,40787,5582,"[""Charger"", ""Headphones"", ""Monitor""]",1459.86,"{""promo"": ""21%""}",89277,0,Europe +2024-01-01,40788,5699,"[""Monitor""]",922.86,"{""loyalty"": ""7%""}",117263,0,Africa +2024-09-11,40789,5830,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1743.44,{},249323,1,Europe +2023-07-15,40790,5007,"[""Headphones"", ""Monitor""]",3926.15,{},146278,1,Africa +2023-05-14,40791,7040,"[""Keyboard"", ""Phone""]",4396.39,{},155526,1,Asia +2023-10-09,40792,2355,"[""Wireless Mouse""]",1499.01,{},144193,1,North America +2024-04-06,40793,3299,"[""Phone"", ""Laptop""]",1139.06,"{"""": ""28%""}",118874,1,Asia +2024-06-30,40794,3195,"[""Laptop""]",2315.32,"{""loyalty"": ""11%""}",244097,0,Asia +2024-09-27,40795,5654,"[""Charger"", ""Phone"", ""Tablet""]",3060.85,"{""loyalty"": ""15%""}",196292,1,Africa +2024-07-23,40796,2895,"[""Laptop"", ""Keyboard""]",2124.11,{},80040,0,Asia +2023-09-20,40797,2581,"[""Tablet"", ""Keyboard"", ""Headphones""]",4807.68,"{"""": ""5%""}",268104,0,North America +2024-06-27,40798,3277,"[""Laptop"", ""Charger"", ""Phone""]",2447.88,{},57900,1,North America +2024-10-21,40799,3051,"[""Keyboard""]",921.35,{},108836,1,Asia +2024-11-08,40800,8948,"[""Wireless Mouse""]",1839.82,{},76898,0,Asia +2023-03-28,40801,7188,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3232.35,"{""loyalty"": ""16%""}",209610,1,Europe +2023-11-14,40802,8940,"[""Tablet""]",4425.37,"{"""": ""6%""}",13139,1,South America +2024-01-21,40803,9629,"[""Phone""]",2894.95,"{""promo"": ""12%""}",173542,1,Africa +2024-09-07,40804,2605,"[""Tablet"", ""Keyboard""]",2959.41,{},231915,0,North America +2024-09-05,40805,4732,"[""Wireless Mouse"", ""Monitor""]",123.7,"{""loyalty"": ""7%""}",183594,1,Asia +2023-12-31,40806,7643,"[""Charger""]",4214.0,{},150040,0,South America +2023-07-14,40807,8995,"[""Keyboard"", ""Monitor"", ""Charger""]",1367.74,{},190622,0,Asia +2024-04-25,40808,3859,"[""Tablet"", ""Laptop""]",3424.37,"{""seasonal"": ""26%""}",118714,1,Africa +2023-11-02,40809,3771,"[""Charger""]",4666.13,"{"""": ""14%""}",67054,0,Asia +2023-09-09,40810,5948,"[""Tablet"", ""Phone"", ""Keyboard""]",4366.87,"{""promo"": ""28%""}",59417,1,South America +2023-02-04,40811,4577,"[""Headphones"", ""Monitor"", ""Tablet""]",1226.32,{},221127,0,North America +2023-07-21,40812,9532,"[""Monitor"", ""Tablet""]",4157.62,{},263815,0,South America +2023-01-06,40813,9609,"[""Charger"", ""Wireless Mouse""]",3797.76,"{""promo"": ""28%""}",102507,0,Europe +2024-09-29,40814,7021,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",697.36,{},267948,1,Europe +2023-01-24,40815,8782,"[""Tablet""]",4296.71,"{""seasonal"": ""15%""}",52400,1,South America +2023-10-19,40816,8678,"[""Tablet""]",440.78,"{""seasonal"": ""24%""}",297409,0,Europe +2024-06-18,40817,7673,"[""Wireless Mouse""]",4226.65,{},107657,0,Africa +2023-01-08,40818,7034,"[""Tablet"", ""Wireless Mouse""]",4059.09,"{""promo"": ""10%""}",12530,1,Asia +2023-08-20,40819,7503,"[""Keyboard""]",3468.49,"{""loyalty"": ""29%""}",263913,0,North America +2023-09-26,40820,526,"[""Monitor""]",3931.83,"{""seasonal"": ""28%""}",252125,0,Europe +2024-01-24,40821,919,"[""Monitor""]",4828.36,{},259941,0,Asia +2023-06-12,40822,5665,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3716.89,{},225927,1,Africa +2024-08-13,40823,8361,"[""Charger"", ""Monitor"", ""Phone""]",3906.17,"{""promo"": ""21%""}",23460,1,South America +2024-05-02,40824,2687,"[""Laptop"", ""Wireless Mouse""]",1303.45,"{"""": ""12%""}",254223,1,North America +2024-05-06,40825,1673,"[""Headphones""]",1315.74,{},10694,0,Europe +2023-03-27,40826,9136,"[""Wireless Mouse"", ""Headphones""]",4313.49,{},225406,0,Africa +2023-01-27,40827,3819,"[""Laptop"", ""Keyboard""]",2561.11,{},87095,0,South America +2024-12-21,40828,1444,"[""Wireless Mouse"", ""Phone""]",2939.25,{},55455,0,South America +2024-03-02,40829,8612,"[""Tablet""]",4373.34,"{""seasonal"": ""17%""}",80036,1,Asia +2024-01-17,40830,1905,"[""Laptop"", ""Keyboard"", ""Charger""]",512.54,"{""loyalty"": ""16%""}",214766,1,South America +2023-07-17,40831,7828,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3247.58,"{""promo"": ""20%""}",13110,0,Europe +2023-03-09,40832,6505,"[""Headphones"", ""Charger""]",4263.89,"{""seasonal"": ""13%""}",76432,1,North America +2024-05-22,40833,2203,"[""Headphones"", ""Charger""]",3392.59,{},135738,1,Asia +2024-07-17,40834,6861,"[""Laptop""]",125.41,{},185869,1,South America +2024-03-27,40835,5400,"[""Phone""]",2390.75,"{"""": ""18%""}",194498,0,North America +2024-05-25,40836,2708,"[""Monitor""]",1235.19,{},260164,0,North America +2023-03-27,40837,8993,"[""Headphones"", ""Laptop"", ""Charger""]",3320.25,"{"""": ""14%""}",44757,1,Africa +2024-02-20,40838,4760,"[""Charger""]",87.92,"{""loyalty"": ""25%""}",286100,1,Africa +2024-02-07,40839,6779,"[""Monitor""]",3133.75,"{""seasonal"": ""26%""}",78785,1,Europe +2024-02-08,40840,7652,"[""Phone"", ""Laptop"", ""Charger""]",4906.43,"{""promo"": ""21%""}",213674,0,North America +2023-11-07,40841,461,"[""Phone"", ""Tablet"", ""Laptop""]",4357.1,{},212579,0,Europe +2023-08-04,40842,355,"[""Laptop""]",796.26,"{""loyalty"": ""10%""}",27108,1,South America +2024-10-20,40843,8299,"[""Tablet"", ""Monitor"", ""Charger""]",4302.83,"{""loyalty"": ""5%""}",225500,1,Africa +2023-10-11,40844,9581,"[""Wireless Mouse""]",1315.55,"{""loyalty"": ""6%""}",228788,0,Europe +2024-01-05,40845,4309,"[""Laptop"", ""Tablet""]",3988.42,"{""loyalty"": ""10%""}",88832,0,Europe +2023-09-13,40846,191,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1132.47,"{""promo"": ""6%""}",135707,0,Europe +2023-04-30,40847,8305,"[""Charger"", ""Monitor"", ""Keyboard""]",3038.38,"{""loyalty"": ""24%""}",132634,1,Europe +2023-09-01,40848,1234,"[""Laptop""]",1765.91,{},129432,0,South America +2023-01-25,40849,2526,"[""Tablet""]",4908.81,"{""promo"": ""16%""}",192528,0,Europe +2023-03-21,40850,1109,"[""Headphones"", ""Wireless Mouse""]",2156.57,{},64461,1,North America +2023-02-21,40851,4530,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2890.8,{},80400,0,Asia +2023-05-31,40852,8734,"[""Laptop""]",290.77,"{"""": ""10%""}",231712,0,Asia +2023-08-01,40853,141,"[""Keyboard"", ""Wireless Mouse""]",1367.19,{},189367,0,South America +2024-02-27,40854,8239,"[""Headphones"", ""Charger""]",4750.57,"{""seasonal"": ""26%""}",233267,0,Asia +2023-08-09,40855,9691,"[""Wireless Mouse""]",3471.38,{},76096,0,North America +2024-01-24,40856,4021,"[""Phone""]",3201.0,"{""seasonal"": ""7%""}",101309,0,South America +2024-04-18,40857,2970,"[""Charger"", ""Monitor"", ""Phone""]",3097.14,"{""seasonal"": ""9%""}",75629,0,Africa +2023-12-25,40858,7998,"[""Monitor"", ""Keyboard"", ""Charger""]",2594.41,"{""promo"": ""7%""}",255463,0,Europe +2024-01-10,40859,8404,"[""Keyboard"", ""Wireless Mouse""]",2939.16,{},131520,0,Europe +2023-09-04,40860,8370,"[""Charger""]",1672.02,"{""promo"": ""25%""}",44048,1,Europe +2023-09-07,40861,3019,"[""Charger"", ""Headphones"", ""Laptop""]",2309.23,"{""promo"": ""30%""}",103829,1,Africa +2024-07-26,40862,9356,"[""Headphones""]",4938.99,"{""loyalty"": ""13%""}",25515,1,Asia +2024-04-19,40863,8757,"[""Tablet""]",1995.22,"{"""": ""29%""}",239974,1,Asia +2023-06-21,40864,8336,"[""Monitor"", ""Wireless Mouse""]",1311.75,{},159728,0,Africa +2023-10-06,40865,9879,"[""Headphones"", ""Phone""]",4319.19,"{""seasonal"": ""27%""}",261435,0,Asia +2023-02-25,40866,5259,"[""Laptop""]",1824.3,"{""seasonal"": ""28%""}",223235,1,Asia +2024-01-09,40867,3837,"[""Wireless Mouse"", ""Monitor""]",1936.64,"{""seasonal"": ""7%""}",239821,0,North America +2024-12-11,40868,5989,"[""Phone"", ""Monitor""]",2327.16,{},136984,0,North America +2023-10-17,40869,3895,"[""Phone"", ""Wireless Mouse""]",573.69,{},136918,1,North America +2023-01-19,40870,3961,"[""Keyboard"", ""Monitor""]",4116.35,"{""seasonal"": ""17%""}",270493,1,North America +2023-05-30,40871,4610,"[""Headphones""]",419.85,{},54544,0,Europe +2023-12-20,40872,6243,"[""Phone"", ""Headphones""]",4555.5,{},131731,1,Asia +2023-04-11,40873,5186,"[""Tablet""]",2174.78,"{"""": ""21%""}",15036,0,North America +2023-10-29,40874,2228,"[""Monitor"", ""Laptop""]",3428.87,"{""loyalty"": ""28%""}",105625,0,Asia +2024-12-06,40875,533,"[""Monitor"", ""Tablet"", ""Keyboard""]",1192.51,"{""loyalty"": ""6%""}",259072,0,Europe +2023-12-25,40876,3505,"[""Laptop""]",2409.05,"{""promo"": ""8%""}",204533,1,Europe +2023-01-15,40877,1453,"[""Charger"", ""Tablet"", ""Headphones""]",999.64,"{""seasonal"": ""16%""}",232529,0,Asia +2023-05-29,40878,3219,"[""Tablet""]",3056.23,{},146522,1,Asia +2024-06-09,40879,2596,"[""Phone"", ""Headphones"", ""Laptop""]",1136.84,{},136480,0,Asia +2024-02-05,40880,2505,"[""Keyboard""]",760.07,{},52222,0,North America +2023-12-10,40881,3698,"[""Keyboard"", ""Monitor""]",337.43,"{"""": ""5%""}",27315,0,Africa +2024-09-21,40882,4228,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",504.01,{},238733,0,Africa +2024-09-10,40883,1498,"[""Tablet"", ""Charger""]",2006.1,"{"""": ""19%""}",95558,0,North America +2023-08-25,40884,2040,"[""Phone"", ""Laptop"", ""Tablet""]",3763.46,{},148355,0,South America +2024-06-02,40885,5091,"[""Phone""]",4749.38,{},168994,0,North America +2023-10-13,40886,6258,"[""Monitor"", ""Laptop"", ""Tablet""]",3537.86,"{""seasonal"": ""12%""}",15723,1,Asia +2024-02-21,40887,6939,"[""Monitor"", ""Tablet"", ""Headphones""]",4505.36,{},258289,0,Africa +2023-11-07,40888,4492,"[""Wireless Mouse""]",511.53,"{""promo"": ""5%""}",140501,1,Africa +2023-02-14,40889,5892,"[""Tablet""]",3578.74,{},291224,1,North America +2023-07-16,40890,2216,"[""Tablet"", ""Laptop""]",3516.73,{},289566,1,North America +2023-11-17,40891,7742,"[""Laptop""]",1789.47,{},146393,1,Europe +2023-08-06,40892,4978,"[""Charger"", ""Wireless Mouse""]",2772.62,{},9877,0,South America +2023-08-21,40893,2352,"[""Keyboard"", ""Laptop""]",4559.87,{},81104,0,Africa +2024-04-14,40894,6923,"[""Charger""]",2344.12,{},85667,0,South America +2023-12-15,40895,8601,"[""Headphones"", ""Charger""]",2710.18,"{""promo"": ""13%""}",46225,1,Asia +2024-10-19,40896,2315,"[""Wireless Mouse""]",3922.3,"{"""": ""19%""}",97608,0,Africa +2023-04-28,40897,8119,"[""Headphones"", ""Monitor""]",495.99,"{""loyalty"": ""26%""}",240541,1,North America +2024-08-01,40898,975,"[""Headphones"", ""Keyboard"", ""Charger""]",238.56,"{""seasonal"": ""10%""}",190470,0,South America +2023-06-06,40899,6107,"[""Keyboard"", ""Tablet""]",3158.09,{},104597,0,North America +2023-06-15,40900,3409,"[""Monitor"", ""Headphones""]",2061.42,"{""promo"": ""19%""}",140782,0,North America +2023-01-13,40901,3477,"[""Phone""]",1249.61,"{"""": ""27%""}",14072,1,Europe +2023-09-27,40902,5572,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1146.75,"{"""": ""16%""}",67102,0,North America +2024-03-06,40903,1732,"[""Wireless Mouse"", ""Tablet""]",2097.76,"{""seasonal"": ""19%""}",83015,0,Africa +2023-12-30,40904,9807,"[""Monitor"", ""Keyboard"", ""Tablet""]",2511.55,{},223691,0,Europe +2024-12-11,40905,4320,"[""Phone"", ""Tablet""]",4857.73,{},154414,1,Asia +2023-09-03,40906,8903,"[""Tablet"", ""Monitor"", ""Headphones""]",3696.88,"{""loyalty"": ""20%""}",215008,1,Europe +2024-11-02,40907,5433,"[""Phone""]",4497.91,"{""seasonal"": ""28%""}",88176,0,South America +2023-01-23,40908,5244,"[""Tablet"", ""Keyboard"", ""Laptop""]",1531.9,{},40856,1,Asia +2023-10-18,40909,1837,"[""Phone"", ""Keyboard"", ""Charger""]",4158.14,{},143588,0,South America +2024-04-09,40910,4777,"[""Phone"", ""Tablet""]",3527.35,{},161800,1,North America +2024-08-03,40911,8955,"[""Wireless Mouse""]",3160.98,{},130031,0,South America +2024-05-09,40912,6160,"[""Headphones"", ""Charger""]",4991.32,"{""seasonal"": ""27%""}",191151,0,Africa +2024-09-14,40913,2858,"[""Keyboard"", ""Charger"", ""Phone""]",4982.87,{},8018,0,Asia +2024-07-09,40914,2238,"[""Wireless Mouse"", ""Headphones""]",4312.73,{},47258,1,Asia +2023-11-06,40915,4261,"[""Phone""]",2414.03,"{""loyalty"": ""16%""}",87149,0,Europe +2024-05-05,40916,5813,"[""Wireless Mouse""]",337.25,"{""promo"": ""28%""}",215546,0,Asia +2024-06-07,40917,8052,"[""Keyboard"", ""Laptop""]",482.95,{},87367,0,South America +2023-04-26,40918,1867,"[""Wireless Mouse"", ""Phone""]",4087.09,{},7112,0,Asia +2023-11-05,40919,3807,"[""Laptop""]",435.9,"{""seasonal"": ""5%""}",27671,0,Africa +2023-11-20,40920,3414,"[""Wireless Mouse"", ""Monitor""]",1648.65,"{""seasonal"": ""18%""}",13648,1,Europe +2024-08-14,40921,9856,"[""Phone"", ""Laptop"", ""Tablet""]",899.43,{},108417,0,Africa +2024-06-10,40922,8171,"[""Keyboard"", ""Wireless Mouse""]",550.85,"{"""": ""14%""}",195373,0,South America +2023-07-28,40923,4358,"[""Wireless Mouse"", ""Keyboard""]",198.57,{},71761,1,Europe +2023-01-23,40924,8790,"[""Wireless Mouse"", ""Keyboard""]",3001.66,"{"""": ""6%""}",251605,0,Europe +2024-03-02,40925,3743,"[""Monitor""]",3109.52,{},272960,1,South America +2024-07-10,40926,4913,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4873.35,{},210221,1,Africa +2024-08-03,40927,1037,"[""Monitor"", ""Tablet"", ""Charger""]",4499.35,{},79134,1,Europe +2024-12-12,40928,1867,"[""Laptop""]",975.36,"{""promo"": ""16%""}",273550,1,Asia +2024-05-24,40929,9013,"[""Phone""]",2760.65,"{""seasonal"": ""30%""}",57799,0,Asia +2023-02-18,40930,1651,"[""Charger"", ""Monitor""]",4330.54,"{""promo"": ""23%""}",222151,1,Europe +2023-06-08,40931,6001,"[""Laptop"", ""Keyboard"", ""Phone""]",1479.34,{},55800,1,North America +2023-03-02,40932,2440,"[""Phone"", ""Charger""]",1252.33,{},32819,1,North America +2024-05-25,40933,4462,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3258.83,{},122799,0,Asia +2024-03-20,40934,3076,"[""Headphones""]",4734.76,{},208357,1,Europe +2023-10-03,40935,7965,"[""Headphones"", ""Laptop"", ""Keyboard""]",57.64,"{""seasonal"": ""11%""}",91603,0,Europe +2023-04-25,40936,1076,"[""Wireless Mouse"", ""Keyboard""]",4785.12,"{""loyalty"": ""12%""}",291667,0,South America +2023-06-08,40937,7353,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1625.13,"{""promo"": ""18%""}",203995,1,Asia +2023-04-11,40938,3926,"[""Monitor""]",4046.7,{},282327,0,Asia +2023-10-09,40939,8608,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4142.74,{},55078,0,South America +2023-08-11,40940,2130,"[""Charger""]",4649.87,"{""seasonal"": ""19%""}",117228,1,Europe +2023-06-06,40941,1595,"[""Laptop""]",4024.04,{},135142,1,North America +2023-06-09,40942,1244,"[""Laptop"", ""Tablet"", ""Charger""]",1549.71,{},170748,0,Africa +2023-04-27,40943,7427,"[""Wireless Mouse""]",1638.11,{},125010,0,Africa +2024-02-12,40944,5668,"[""Keyboard"", ""Charger""]",2633.43,"{""seasonal"": ""22%""}",280630,1,South America +2023-08-23,40945,6921,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1029.21,{},223650,1,Europe +2023-03-12,40946,23,"[""Keyboard"", ""Tablet""]",712.32,"{""promo"": ""23%""}",227875,1,South America +2023-12-05,40947,5884,"[""Phone""]",3066.69,"{"""": ""21%""}",217511,0,South America +2023-02-16,40948,4423,"[""Headphones""]",4382.34,{},137411,1,Africa +2024-10-07,40949,826,"[""Headphones"", ""Keyboard"", ""Charger""]",1499.67,{},203147,1,Africa +2024-10-22,40950,2018,"[""Laptop"", ""Keyboard""]",4292.01,"{""loyalty"": ""9%""}",274821,0,Asia +2023-04-29,40951,8817,"[""Monitor"", ""Charger""]",1178.97,{},135930,0,South America +2023-05-24,40952,6077,"[""Charger""]",2760.06,"{""loyalty"": ""17%""}",72533,0,Africa +2023-07-19,40953,6953,"[""Laptop""]",4726.41,"{""loyalty"": ""8%""}",97104,1,North America +2023-02-28,40954,5551,"[""Headphones""]",287.14,{},222790,0,Europe +2024-07-03,40955,2668,"[""Tablet""]",3167.52,{},291848,1,Asia +2023-04-02,40956,4233,"[""Charger""]",2682.82,{},69797,1,North America +2024-06-14,40957,3885,"[""Laptop"", ""Headphones""]",736.93,"{""loyalty"": ""27%""}",294668,0,Africa +2023-07-11,40958,8755,"[""Phone"", ""Monitor""]",3018.31,"{""promo"": ""8%""}",126827,1,Asia +2024-09-02,40959,5972,"[""Keyboard""]",2363.74,{},169519,1,South America +2023-10-17,40960,588,"[""Phone""]",4189.7,{},284351,1,South America +2024-11-12,40961,2237,"[""Wireless Mouse""]",4278.99,"{""promo"": ""5%""}",53672,1,Asia +2024-10-26,40962,1150,"[""Headphones"", ""Keyboard""]",4504.72,"{""loyalty"": ""14%""}",153660,0,South America +2023-07-23,40963,6789,"[""Laptop"", ""Wireless Mouse""]",1006.48,"{""promo"": ""13%""}",38757,1,Europe +2024-07-29,40964,2467,"[""Monitor""]",3494.17,"{"""": ""19%""}",119694,0,Asia +2024-06-05,40965,4522,"[""Laptop"", ""Phone"", ""Keyboard""]",1925.65,"{""loyalty"": ""14%""}",80513,0,Africa +2024-12-04,40966,724,"[""Phone"", ""Headphones"", ""Laptop""]",4556.17,"{"""": ""18%""}",100757,1,Africa +2024-12-21,40967,3891,"[""Headphones"", ""Phone""]",4499.73,{},153835,0,North America +2023-05-19,40968,7418,"[""Charger"", ""Tablet""]",2853.0,"{""loyalty"": ""8%""}",189895,0,North America +2024-07-25,40969,6923,"[""Tablet""]",2464.86,{},245281,1,South America +2024-01-07,40970,6335,"[""Laptop""]",1906.81,"{""loyalty"": ""23%""}",74182,0,Asia +2024-09-24,40971,7390,"[""Charger"", ""Tablet""]",398.05,"{""seasonal"": ""11%""}",258863,0,South America +2023-11-27,40972,8757,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2936.73,"{""seasonal"": ""22%""}",129071,1,South America +2024-10-23,40973,6361,"[""Laptop"", ""Monitor"", ""Charger""]",1339.28,{},224357,0,North America +2024-05-12,40974,1079,"[""Keyboard""]",2007.72,{},37919,0,South America +2023-03-19,40975,2055,"[""Headphones"", ""Wireless Mouse""]",2087.03,{},71208,0,Europe +2024-03-07,40976,5389,"[""Phone"", ""Wireless Mouse""]",3877.58,{},237530,1,Africa +2023-01-13,40977,5360,"[""Monitor"", ""Headphones"", ""Tablet""]",457.37,{},110643,0,Europe +2024-07-27,40978,600,"[""Headphones""]",4606.74,"{""loyalty"": ""23%""}",81337,1,Asia +2024-02-05,40979,6628,"[""Phone"", ""Charger""]",4135.83,"{""promo"": ""29%""}",263533,0,North America +2023-09-11,40980,5242,"[""Keyboard"", ""Tablet""]",2236.91,{},231455,0,Africa +2023-03-08,40981,1526,"[""Laptop"", ""Charger""]",4343.59,{},265723,1,Europe +2023-07-05,40982,3822,"[""Tablet""]",3244.37,"{""loyalty"": ""18%""}",8829,1,North America +2024-09-15,40983,1889,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1118.52,"{""loyalty"": ""9%""}",127251,1,Europe +2024-06-09,40984,7178,"[""Phone"", ""Laptop""]",4071.98,"{""loyalty"": ""13%""}",286763,1,North America +2023-05-29,40985,1697,"[""Monitor"", ""Headphones""]",2869.45,"{"""": ""6%""}",131839,0,South America +2023-09-12,40986,7924,"[""Keyboard""]",3738.09,{},249094,0,Europe +2024-04-09,40987,6012,"[""Tablet"", ""Phone""]",4681.47,{},182724,1,South America +2024-11-19,40988,1881,"[""Charger"", ""Laptop""]",244.57,"{""seasonal"": ""13%""}",61426,1,North America +2023-03-07,40989,5314,"[""Laptop"", ""Headphones""]",2030.52,"{"""": ""9%""}",99211,1,Europe +2023-10-13,40990,4400,"[""Charger"", ""Laptop""]",4217.54,"{""seasonal"": ""14%""}",30085,0,South America +2023-08-11,40991,7009,"[""Headphones"", ""Wireless Mouse""]",2621.95,{},150147,1,North America +2023-09-19,40992,2252,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1555.76,{},221700,1,Asia +2023-01-26,40993,9814,"[""Keyboard"", ""Tablet""]",4205.98,"{""promo"": ""12%""}",29631,1,Africa +2024-08-11,40994,764,"[""Monitor""]",1306.56,"{""seasonal"": ""21%""}",277923,1,South America +2024-11-30,40995,319,"[""Wireless Mouse""]",4066.63,"{"""": ""13%""}",21357,1,Africa +2023-05-04,40996,3684,"[""Laptop"", ""Phone""]",4601.05,{},168791,0,North America +2023-02-26,40997,2059,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1502.24,"{""seasonal"": ""7%""}",136279,0,Europe +2024-07-14,40998,6986,"[""Charger""]",116.61,"{""seasonal"": ""7%""}",34413,0,Europe +2023-09-06,40999,1647,"[""Laptop"", ""Wireless Mouse""]",953.85,"{"""": ""20%""}",151510,1,North America +2023-07-19,41000,7064,"[""Laptop"", ""Phone""]",4759.28,{},295004,0,South America +2024-12-08,41001,6742,"[""Phone"", ""Monitor"", ""Headphones""]",2585.01,"{""loyalty"": ""6%""}",87734,0,North America +2024-07-28,41002,5871,"[""Keyboard"", ""Headphones"", ""Phone""]",345.04,"{""seasonal"": ""13%""}",97509,0,Asia +2024-12-13,41003,3416,"[""Tablet""]",826.35,{},61146,0,Africa +2023-11-12,41004,4921,"[""Charger""]",3888.29,{},164725,1,Europe +2023-12-02,41005,3591,"[""Keyboard""]",4637.35,{},56478,0,Europe +2023-02-18,41006,9361,"[""Phone""]",4192.77,"{""promo"": ""18%""}",292579,0,Europe +2024-01-01,41007,8967,"[""Wireless Mouse""]",1409.16,"{"""": ""26%""}",236002,0,Asia +2023-06-02,41008,4694,"[""Charger""]",2133.59,"{"""": ""5%""}",33113,0,Europe +2024-10-22,41009,4230,"[""Headphones"", ""Laptop""]",3908.81,"{""loyalty"": ""11%""}",9015,1,South America +2023-10-05,41010,804,"[""Keyboard"", ""Monitor""]",1571.18,"{""promo"": ""10%""}",68541,0,Europe +2024-03-23,41011,5687,"[""Phone"", ""Tablet""]",1090.38,"{""seasonal"": ""26%""}",69102,1,Africa +2024-01-24,41012,5987,"[""Keyboard""]",4376.05,{},283902,1,North America +2024-09-02,41013,624,"[""Monitor"", ""Headphones"", ""Keyboard""]",1716.98,"{"""": ""11%""}",216472,1,North America +2024-11-21,41014,4525,"[""Headphones""]",4885.98,"{""seasonal"": ""15%""}",90830,0,Africa +2023-01-07,41015,2388,"[""Laptop"", ""Monitor"", ""Headphones""]",709.75,{},22612,0,Asia +2023-09-05,41016,1200,"[""Phone"", ""Tablet""]",2631.09,{},166474,1,South America +2023-11-08,41017,9188,"[""Phone""]",1064.5,{},166267,0,South America +2024-05-23,41018,9249,"[""Charger"", ""Keyboard"", ""Phone""]",1437.25,{},163025,0,Europe +2024-05-07,41019,1032,"[""Phone"", ""Charger"", ""Monitor""]",3367.28,"{"""": ""7%""}",245302,1,Africa +2023-11-02,41020,5265,"[""Wireless Mouse"", ""Tablet""]",4957.26,"{""seasonal"": ""16%""}",178295,1,Africa +2023-08-19,41021,158,"[""Charger"", ""Tablet""]",3412.56,{},265149,1,Europe +2024-10-18,41022,702,"[""Laptop"", ""Phone""]",2248.46,"{""loyalty"": ""24%""}",145521,1,Asia +2023-05-04,41023,7509,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3823.89,"{""promo"": ""21%""}",147704,0,Asia +2023-12-30,41024,2105,"[""Phone"", ""Tablet""]",771.89,{},222370,1,North America +2023-02-25,41025,6250,"[""Charger""]",1763.63,"{""loyalty"": ""25%""}",3103,1,Europe +2024-04-29,41026,557,"[""Monitor"", ""Laptop""]",296.2,{},185803,0,Africa +2023-01-04,41027,6134,"[""Keyboard"", ""Monitor""]",2931.55,{},271495,0,Europe +2023-12-03,41028,5127,"[""Keyboard""]",4617.0,{},291615,1,South America +2024-07-10,41029,4163,"[""Laptop"", ""Phone""]",3043.4,"{""promo"": ""24%""}",107429,1,North America +2024-06-02,41030,9032,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",480.61,{},88427,1,Asia +2024-07-06,41031,688,"[""Charger"", ""Monitor""]",4974.68,"{""loyalty"": ""24%""}",5766,1,Europe +2023-10-18,41032,9631,"[""Tablet""]",486.15,"{""loyalty"": ""26%""}",141061,1,South America +2023-08-20,41033,3287,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3507.49,{},37786,0,South America +2023-04-17,41034,5734,"[""Keyboard"", ""Headphones"", ""Tablet""]",3824.48,"{""promo"": ""12%""}",122303,1,Europe +2024-10-01,41035,8802,"[""Headphones""]",4271.8,"{""loyalty"": ""23%""}",157435,1,South America +2024-09-20,41036,7696,"[""Tablet""]",4013.34,{},140841,1,Asia +2024-05-29,41037,9039,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1640.14,{},87244,1,Europe +2024-02-03,41038,8690,"[""Keyboard"", ""Headphones""]",825.37,{},19959,0,Europe +2023-07-24,41039,1262,"[""Headphones""]",2600.79,"{""seasonal"": ""25%""}",115642,0,North America +2024-12-16,41040,1254,"[""Monitor"", ""Headphones""]",2974.04,"{""seasonal"": ""7%""}",116922,1,North America +2023-10-23,41041,3887,"[""Tablet"", ""Wireless Mouse""]",3508.91,"{""seasonal"": ""12%""}",241932,1,Africa +2024-07-27,41042,1755,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3176.67,"{""seasonal"": ""18%""}",183216,0,Europe +2023-10-15,41043,3699,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1844.21,"{""loyalty"": ""13%""}",128651,0,Asia +2023-12-23,41044,748,"[""Monitor"", ""Laptop""]",328.37,{},89073,1,Asia +2023-02-03,41045,1034,"[""Monitor"", ""Phone"", ""Keyboard""]",3698.24,"{"""": ""8%""}",211245,1,Europe +2023-05-09,41046,8134,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4990.56,{},167896,0,Asia +2024-11-24,41047,2645,"[""Keyboard""]",1524.1,"{"""": ""15%""}",120993,1,Africa +2023-01-20,41048,7065,"[""Laptop"", ""Monitor""]",797.88,{},114359,0,North America +2024-08-15,41049,7875,"[""Headphones"", ""Phone""]",3840.55,"{""seasonal"": ""9%""}",238795,0,South America +2024-03-24,41050,6143,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3358.67,{},47236,0,South America +2024-10-02,41051,8226,"[""Tablet""]",1850.16,"{""promo"": ""13%""}",223255,1,South America +2023-05-16,41052,6801,"[""Charger""]",2336.1,{},111153,1,North America +2024-10-16,41053,8445,"[""Headphones"", ""Laptop"", ""Tablet""]",927.61,{},29211,1,North America +2024-08-23,41054,9035,"[""Laptop""]",1965.02,"{"""": ""24%""}",62275,0,North America +2024-11-24,41055,6518,"[""Charger"", ""Tablet"", ""Monitor""]",3225.1,"{"""": ""10%""}",202429,0,Africa +2024-08-11,41056,8362,"[""Phone""]",288.33,{},228337,0,Asia +2023-08-23,41057,9104,"[""Laptop"", ""Wireless Mouse""]",3643.51,{},112788,1,South America +2024-07-02,41058,5348,"[""Charger""]",578.33,"{""seasonal"": ""14%""}",6184,0,Asia +2024-11-13,41059,824,"[""Headphones"", ""Monitor""]",4495.81,{},286313,1,Asia +2024-05-27,41060,3171,"[""Tablet""]",2481.99,"{""seasonal"": ""11%""}",164333,0,Europe +2024-02-13,41061,7124,"[""Phone""]",4026.25,{},209096,0,Europe +2024-02-06,41062,3495,"[""Wireless Mouse"", ""Charger""]",4276.12,"{""seasonal"": ""23%""}",34325,0,South America +2024-01-20,41063,2,"[""Headphones"", ""Wireless Mouse""]",2585.88,{},20753,0,North America +2024-05-06,41064,2072,"[""Tablet"", ""Charger""]",4850.59,{},112516,1,Europe +2024-04-19,41065,1384,"[""Monitor"", ""Keyboard""]",2012.63,"{"""": ""19%""}",204256,0,South America +2023-04-28,41066,7053,"[""Tablet"", ""Laptop"", ""Phone""]",2136.35,{},180338,1,Asia +2023-11-25,41067,1336,"[""Tablet""]",1214.34,"{""loyalty"": ""29%""}",228309,0,North America +2024-08-16,41068,2113,"[""Laptop"", ""Monitor""]",4324.87,"{""loyalty"": ""20%""}",39761,1,North America +2023-08-05,41069,9769,"[""Phone""]",2059.74,{},67260,1,Africa +2024-02-20,41070,4926,"[""Headphones"", ""Monitor"", ""Phone""]",2654.87,{},268113,1,Africa +2024-06-24,41071,5001,"[""Monitor"", ""Wireless Mouse""]",4923.12,{},141809,1,Europe +2023-11-24,41072,5917,"[""Headphones""]",3045.81,{},131213,0,Africa +2023-02-15,41073,8542,"[""Phone"", ""Tablet"", ""Charger""]",1088.25,"{"""": ""25%""}",257611,0,Africa +2024-09-19,41074,7497,"[""Charger""]",1029.43,{},138587,1,Europe +2024-07-23,41075,5928,"[""Tablet"", ""Monitor""]",2830.48,"{""seasonal"": ""21%""}",197130,1,South America +2023-06-13,41076,9478,"[""Laptop"", ""Headphones""]",1208.33,"{""seasonal"": ""16%""}",160195,1,Asia +2023-04-25,41077,2175,"[""Tablet""]",3389.14,{},157616,0,Asia +2023-04-06,41078,4199,"[""Tablet"", ""Monitor""]",53.06,{},287692,0,Asia +2024-03-08,41079,4434,"[""Laptop""]",1395.79,{},150278,0,Europe +2024-08-07,41080,6699,"[""Headphones"", ""Keyboard""]",4942.36,{},13878,1,South America +2023-07-10,41081,6617,"[""Charger"", ""Tablet"", ""Laptop""]",1566.88,{},168272,0,Europe +2024-10-18,41082,5737,"[""Charger"", ""Headphones""]",4645.32,"{""seasonal"": ""16%""}",13036,1,South America +2024-08-31,41083,6640,"[""Charger"", ""Laptop""]",4271.16,{},193076,0,North America +2023-02-28,41084,6623,"[""Phone"", ""Wireless Mouse""]",4128.96,{},270149,1,North America +2024-02-24,41085,5719,"[""Tablet""]",3720.94,"{""promo"": ""30%""}",80074,1,Asia +2023-10-12,41086,1444,"[""Headphones"", ""Charger"", ""Phone""]",4909.07,{},172714,1,Europe +2023-04-12,41087,8900,"[""Headphones""]",1121.24,"{""loyalty"": ""23%""}",181092,1,South America +2023-07-14,41088,2641,"[""Charger""]",4946.33,"{""promo"": ""14%""}",100609,1,North America +2024-12-25,41089,6807,"[""Keyboard""]",3430.78,{},128369,1,Europe +2023-12-26,41090,6933,"[""Phone""]",4854.51,"{""loyalty"": ""28%""}",60325,0,Asia +2024-07-06,41091,7644,"[""Charger""]",1563.97,{},273769,0,North America +2024-02-28,41092,1028,"[""Tablet""]",1010.14,{},80951,1,North America +2024-08-03,41093,3661,"[""Tablet"", ""Monitor""]",2605.56,{},131801,1,North America +2023-09-20,41094,2340,"[""Monitor"", ""Keyboard"", ""Phone""]",4780.32,{},55885,0,North America +2023-09-03,41095,479,"[""Wireless Mouse"", ""Laptop""]",1152.42,"{""seasonal"": ""19%""}",56270,0,South America +2023-07-16,41096,4943,"[""Wireless Mouse""]",4632.81,"{""promo"": ""26%""}",127887,0,Asia +2023-02-05,41097,4078,"[""Keyboard"", ""Wireless Mouse""]",2230.37,"{""loyalty"": ""26%""}",292437,1,South America +2024-11-24,41098,7890,"[""Monitor"", ""Laptop"", ""Tablet""]",905.82,{},204664,1,North America +2024-10-18,41099,9634,"[""Tablet"", ""Keyboard"", ""Headphones""]",3238.63,"{""loyalty"": ""6%""}",229881,0,Asia +2023-03-14,41100,9166,"[""Phone"", ""Tablet"", ""Keyboard""]",3880.09,{},10621,1,Europe +2024-02-21,41101,1133,"[""Headphones""]",4820.3,"{""loyalty"": ""11%""}",127829,1,North America +2024-06-16,41102,1097,"[""Charger""]",67.64,"{""promo"": ""9%""}",270882,0,Asia +2023-10-10,41103,2532,"[""Keyboard"", ""Charger""]",3385.76,{},139268,1,Africa +2024-07-11,41104,9172,"[""Charger"", ""Wireless Mouse""]",1132.82,"{""promo"": ""8%""}",61636,1,Asia +2023-08-14,41105,6561,"[""Tablet""]",4697.73,"{"""": ""25%""}",237278,0,North America +2024-01-08,41106,7007,"[""Monitor"", ""Tablet"", ""Phone""]",3742.67,{},138884,1,Africa +2023-02-07,41107,422,"[""Charger""]",3241.33,"{""seasonal"": ""6%""}",199162,1,South America +2024-12-18,41108,6121,"[""Headphones"", ""Tablet""]",2841.87,"{"""": ""11%""}",155994,1,Africa +2023-01-21,41109,7130,"[""Monitor"", ""Charger""]",4596.45,"{""promo"": ""19%""}",259073,1,Europe +2024-06-26,41110,5592,"[""Laptop""]",3016.3,"{""seasonal"": ""23%""}",223639,1,Europe +2023-11-05,41111,1125,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1039.59,{},114762,0,Asia +2024-07-31,41112,564,"[""Headphones""]",4521.36,{},53348,0,Europe +2023-12-15,41113,687,"[""Tablet"", ""Monitor""]",4835.15,"{""promo"": ""6%""}",100477,0,Europe +2023-01-04,41114,9931,"[""Wireless Mouse""]",2435.75,{},104140,0,Europe +2024-10-10,41115,586,"[""Charger"", ""Wireless Mouse"", ""Phone""]",599.89,"{""loyalty"": ""16%""}",58587,1,Europe +2023-03-31,41116,3312,"[""Monitor"", ""Laptop"", ""Charger""]",4276.05,{},59847,1,North America +2024-08-12,41117,8836,"[""Keyboard""]",4093.26,{},169519,1,Asia +2023-10-08,41118,3449,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3935.33,"{""promo"": ""7%""}",77367,0,North America +2023-01-19,41119,4990,"[""Tablet""]",4051.68,"{""promo"": ""12%""}",128221,0,Asia +2023-01-27,41120,1757,"[""Phone"", ""Keyboard""]",1606.64,{},172152,0,Africa +2023-12-06,41121,7666,"[""Headphones"", ""Phone""]",4615.37,"{""promo"": ""8%""}",144205,0,North America +2023-06-02,41122,6779,"[""Laptop"", ""Wireless Mouse""]",2413.85,{},211072,1,Europe +2023-06-11,41123,6173,"[""Tablet"", ""Phone"", ""Headphones""]",4602.21,{},159884,0,Africa +2023-08-29,41124,6146,"[""Keyboard""]",4587.16,"{"""": ""6%""}",148442,1,Europe +2023-09-04,41125,4379,"[""Headphones"", ""Keyboard"", ""Monitor""]",3470.61,"{""seasonal"": ""6%""}",276452,1,South America +2023-01-02,41126,9899,"[""Monitor"", ""Phone"", ""Tablet""]",4718.89,{},90963,0,Asia +2024-03-28,41127,8916,"[""Charger"", ""Phone""]",4610.86,"{"""": ""15%""}",225252,0,Europe +2023-09-28,41128,5509,"[""Headphones""]",3711.22,{},132843,0,Asia +2023-01-17,41129,1447,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1522.95,"{""loyalty"": ""9%""}",115306,1,North America +2024-03-13,41130,6877,"[""Tablet"", ""Keyboard""]",1827.55,"{""loyalty"": ""25%""}",256403,0,Europe +2023-02-09,41131,8815,"[""Tablet""]",2620.31,"{"""": ""12%""}",40133,0,North America +2023-12-05,41132,4281,"[""Laptop"", ""Charger""]",2317.2,{},116214,1,North America +2023-09-06,41133,13,"[""Tablet"", ""Keyboard""]",3025.42,"{"""": ""18%""}",153156,1,Asia +2024-02-03,41134,3294,"[""Tablet"", ""Headphones"", ""Phone""]",3258.99,{},214992,0,Africa +2023-12-23,41135,9618,"[""Headphones"", ""Laptop""]",3677.61,"{""loyalty"": ""19%""}",207303,0,Europe +2023-01-31,41136,8728,"[""Laptop""]",3278.58,"{""promo"": ""22%""}",88700,0,Europe +2023-07-22,41137,7,"[""Charger"", ""Headphones"", ""Laptop""]",2236.87,{},191462,0,Africa +2024-01-07,41138,8788,"[""Keyboard"", ""Phone""]",4408.28,"{""promo"": ""27%""}",186200,1,Asia +2023-12-12,41139,2919,"[""Tablet"", ""Charger"", ""Laptop""]",3526.61,"{"""": ""22%""}",75458,1,Asia +2024-06-11,41140,4408,"[""Phone"", ""Monitor"", ""Keyboard""]",1469.95,{},140209,0,Africa +2024-05-20,41141,6099,"[""Tablet"", ""Monitor""]",1944.55,{},144248,1,North America +2024-04-22,41142,1353,"[""Headphones""]",4175.23,"{""loyalty"": ""10%""}",121790,1,Asia +2024-11-25,41143,4865,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3758.93,{},246411,0,Africa +2024-01-17,41144,6920,"[""Monitor""]",2164.99,{},27118,1,North America +2023-09-21,41145,8130,"[""Monitor"", ""Headphones""]",2737.95,"{""loyalty"": ""8%""}",75229,1,South America +2023-04-16,41146,8021,"[""Charger"", ""Wireless Mouse""]",3720.48,"{""loyalty"": ""5%""}",281016,1,South America +2024-11-05,41147,817,"[""Monitor""]",3941.79,{},297357,0,Europe +2024-08-09,41148,2,"[""Wireless Mouse"", ""Keyboard""]",2572.8,"{""seasonal"": ""16%""}",175508,0,Africa +2023-07-08,41149,8948,"[""Monitor""]",1617.43,"{""seasonal"": ""20%""}",143179,0,North America +2023-10-12,41150,6959,"[""Monitor"", ""Tablet""]",4117.06,"{""loyalty"": ""20%""}",87401,1,South America +2023-07-18,41151,8539,"[""Phone"", ""Keyboard"", ""Charger""]",2309.83,"{"""": ""30%""}",116344,1,Europe +2024-09-11,41152,51,"[""Monitor"", ""Laptop""]",4123.17,"{""seasonal"": ""18%""}",48714,1,Africa +2024-11-11,41153,429,"[""Laptop"", ""Monitor"", ""Keyboard""]",2628.96,{},50176,1,South America +2024-08-03,41154,4992,"[""Wireless Mouse""]",4137.22,{},283196,0,Asia +2024-01-09,41155,4388,"[""Tablet"", ""Phone"", ""Keyboard""]",879.27,{},35838,1,Asia +2024-08-17,41156,4468,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3672.79,"{""promo"": ""7%""}",206138,0,Asia +2023-07-06,41157,694,"[""Wireless Mouse""]",2057.51,{},287674,0,South America +2024-11-19,41158,8955,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4555.92,{},20457,1,Europe +2023-03-11,41159,5290,"[""Tablet"", ""Laptop""]",363.15,"{""loyalty"": ""17%""}",184963,0,Asia +2024-04-14,41160,3545,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",851.7,"{""promo"": ""11%""}",37116,1,South America +2023-06-01,41161,9922,"[""Phone""]",4643.8,"{"""": ""30%""}",228884,0,North America +2023-12-06,41162,8188,"[""Laptop"", ""Keyboard"", ""Tablet""]",4267.01,"{""seasonal"": ""10%""}",153377,1,Asia +2024-10-19,41163,8424,"[""Tablet"", ""Monitor"", ""Charger""]",3815.16,"{""promo"": ""8%""}",165885,0,Asia +2024-11-04,41164,5993,"[""Headphones"", ""Monitor""]",1581.91,"{"""": ""30%""}",46757,0,Europe +2024-02-25,41165,1043,"[""Wireless Mouse"", ""Tablet""]",2538.76,"{""promo"": ""15%""}",72347,1,Asia +2023-06-23,41166,165,"[""Wireless Mouse""]",1421.97,"{"""": ""23%""}",121075,1,North America +2024-08-12,41167,5666,"[""Phone"", ""Tablet"", ""Keyboard""]",3063.64,"{""promo"": ""5%""}",19441,0,Africa +2023-03-30,41168,3931,"[""Charger"", ""Phone""]",3656.12,"{""promo"": ""19%""}",172932,0,South America +2024-04-14,41169,1539,"[""Tablet""]",2233.3,"{""loyalty"": ""15%""}",33925,0,Europe +2023-05-09,41170,3054,"[""Wireless Mouse"", ""Laptop""]",2360.29,"{"""": ""20%""}",122140,0,Africa +2023-03-04,41171,1289,"[""Monitor"", ""Phone"", ""Keyboard""]",2499.78,{},96290,0,Asia +2024-02-05,41172,4110,"[""Keyboard""]",2961.95,{},94372,0,South America +2024-10-03,41173,1234,"[""Tablet"", ""Charger""]",2135.43,"{""loyalty"": ""7%""}",217759,0,Asia +2023-04-03,41174,6512,"[""Tablet"", ""Phone""]",2708.89,"{""promo"": ""26%""}",104666,1,Asia +2024-11-29,41175,6719,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4011.03,"{""promo"": ""7%""}",117343,0,North America +2024-01-19,41176,5086,"[""Tablet"", ""Charger"", ""Laptop""]",1264.43,"{"""": ""25%""}",122583,1,Europe +2024-08-09,41177,2868,"[""Phone""]",3371.78,"{""promo"": ""23%""}",119197,0,South America +2024-06-19,41178,4906,"[""Phone"", ""Keyboard""]",1939.03,"{""seasonal"": ""11%""}",172685,0,Africa +2024-11-21,41179,9056,"[""Tablet"", ""Keyboard""]",323.07,{},64509,0,South America +2024-10-30,41180,4172,"[""Charger"", ""Headphones""]",3763.85,"{""promo"": ""13%""}",152613,1,Africa +2023-10-30,41181,2860,"[""Laptop"", ""Tablet"", ""Keyboard""]",2476.66,{},202224,1,South America +2023-01-13,41182,2586,"[""Laptop"", ""Monitor""]",4927.17,"{""seasonal"": ""14%""}",90732,0,South America +2023-05-05,41183,9610,"[""Tablet"", ""Phone"", ""Charger""]",826.06,"{""loyalty"": ""14%""}",158927,1,Africa +2023-07-15,41184,8048,"[""Wireless Mouse"", ""Headphones""]",516.51,"{""loyalty"": ""13%""}",61588,0,South America +2023-11-20,41185,9514,"[""Headphones"", ""Keyboard"", ""Tablet""]",1556.92,"{"""": ""25%""}",129988,0,South America +2023-05-15,41186,7535,"[""Keyboard"", ""Wireless Mouse""]",2997.25,{},230620,0,South America +2024-01-02,41187,9051,"[""Keyboard"", ""Headphones""]",4645.8,{},133262,0,North America +2023-12-27,41188,6840,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4747.04,"{"""": ""19%""}",75880,0,North America +2023-04-30,41189,7420,"[""Charger"", ""Laptop""]",4084.69,"{""seasonal"": ""13%""}",143452,1,Asia +2024-04-28,41190,2710,"[""Monitor""]",1431.83,"{""loyalty"": ""10%""}",243802,0,South America +2024-03-30,41191,2858,"[""Wireless Mouse""]",155.03,{},159372,0,North America +2024-08-06,41192,6396,"[""Monitor""]",1128.2,{},29499,1,Africa +2024-02-26,41193,5964,"[""Monitor""]",796.11,{},260585,0,North America +2023-02-25,41194,8122,"[""Tablet"", ""Laptop"", ""Headphones""]",3313.42,"{""promo"": ""10%""}",222589,0,South America +2023-05-16,41195,2256,"[""Laptop"", ""Phone""]",925.39,"{""promo"": ""23%""}",44771,0,Africa +2024-11-20,41196,5163,"[""Headphones"", ""Tablet"", ""Charger""]",487.4,"{""seasonal"": ""10%""}",55720,0,Europe +2023-09-09,41197,8481,"[""Laptop"", ""Charger"", ""Tablet""]",2452.29,{},288204,0,North America +2023-09-30,41198,4283,"[""Laptop""]",2453.02,{},123191,0,South America +2024-10-22,41199,7392,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3924.31,"{""loyalty"": ""20%""}",224304,0,Europe +2024-09-28,41200,1792,"[""Monitor""]",2808.98,"{""seasonal"": ""14%""}",250937,0,Africa +2024-12-03,41201,4520,"[""Headphones""]",376.24,{},17512,1,Europe +2024-04-11,41202,2853,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1188.33,"{""seasonal"": ""30%""}",255638,1,Europe +2024-09-27,41203,8943,"[""Phone"", ""Keyboard"", ""Tablet""]",4227.97,"{"""": ""9%""}",14613,1,South America +2023-05-23,41204,1833,"[""Wireless Mouse"", ""Laptop""]",4969.16,"{"""": ""12%""}",278567,1,Africa +2024-07-10,41205,7526,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4372.36,"{""seasonal"": ""13%""}",182142,0,Asia +2024-05-19,41206,9329,"[""Keyboard"", ""Wireless Mouse""]",1598.7,{},295637,1,Asia +2024-04-19,41207,1180,"[""Laptop"", ""Monitor""]",3545.97,"{""promo"": ""28%""}",123286,0,North America +2023-11-05,41208,2366,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3248.2,"{"""": ""29%""}",36823,1,Asia +2024-12-17,41209,3174,"[""Laptop"", ""Charger"", ""Monitor""]",508.19,{},242087,0,South America +2024-12-06,41210,8091,"[""Charger"", ""Tablet"", ""Keyboard""]",127.52,"{""loyalty"": ""7%""}",213497,0,Africa +2024-09-05,41211,2993,"[""Laptop""]",3553.59,"{""promo"": ""20%""}",17457,1,North America +2024-10-10,41212,2163,"[""Tablet"", ""Laptop""]",3695.32,{},133567,0,North America +2023-10-14,41213,3865,"[""Monitor"", ""Wireless Mouse""]",3620.68,{},224252,1,Asia +2024-01-11,41214,7056,"[""Tablet""]",3817.57,"{"""": ""24%""}",259175,1,Asia +2024-08-23,41215,8500,"[""Headphones"", ""Tablet""]",3029.55,"{""seasonal"": ""21%""}",235701,1,Asia +2023-08-13,41216,422,"[""Headphones""]",167.09,"{""promo"": ""29%""}",279280,0,North America +2024-12-21,41217,587,"[""Wireless Mouse"", ""Charger""]",3028.59,"{"""": ""28%""}",206734,1,South America +2024-05-29,41218,9544,"[""Tablet"", ""Phone""]",1770.8,{},53646,0,Africa +2023-09-27,41219,3517,"[""Wireless Mouse"", ""Headphones""]",3365.15,{},55485,0,South America +2023-04-29,41220,9405,"[""Headphones"", ""Charger"", ""Keyboard""]",1066.78,{},34666,1,Africa +2024-04-29,41221,2708,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",412.13,"{"""": ""28%""}",131190,1,Europe +2024-04-07,41222,1004,"[""Phone"", ""Tablet""]",899.93,{},273762,0,South America +2023-03-29,41223,7414,"[""Phone""]",4978.7,{},54924,0,North America +2023-01-16,41224,8904,"[""Tablet""]",2092.02,"{"""": ""28%""}",61871,1,Africa +2024-02-13,41225,3740,"[""Phone""]",1539.77,{},1287,1,North America +2024-07-25,41226,7958,"[""Phone""]",3480.45,{},143744,1,Africa +2024-12-21,41227,2780,"[""Headphones"", ""Charger""]",2536.98,"{""seasonal"": ""21%""}",228514,0,North America +2024-07-27,41228,2833,"[""Keyboard"", ""Tablet"", ""Laptop""]",1697.72,{},141745,1,South America +2023-08-04,41229,5171,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",682.93,{},241517,1,Africa +2024-07-01,41230,2267,"[""Laptop"", ""Phone"", ""Keyboard""]",3389.58,{},242853,1,Europe +2024-12-15,41231,5268,"[""Monitor"", ""Tablet"", ""Headphones""]",430.24,{},166136,0,South America +2024-04-19,41232,1051,"[""Charger""]",2242.52,{},160853,1,South America +2024-09-22,41233,8223,"[""Phone"", ""Headphones"", ""Laptop""]",4211.73,{},43609,1,Europe +2023-11-19,41234,7937,"[""Monitor""]",1206.15,{},47023,1,South America +2024-06-02,41235,7036,"[""Monitor""]",4205.11,{},288939,0,Asia +2023-01-16,41236,605,"[""Phone""]",4018.3,"{""loyalty"": ""20%""}",125069,1,Africa +2024-04-07,41237,6612,"[""Laptop"", ""Keyboard"", ""Monitor""]",2858.58,{},129047,0,Africa +2023-10-11,41238,9036,"[""Phone"", ""Keyboard""]",2679.29,"{""seasonal"": ""29%""}",109355,1,South America +2024-05-24,41239,9,"[""Tablet"", ""Headphones"", ""Monitor""]",3423.74,"{""loyalty"": ""7%""}",221690,0,Asia +2024-07-22,41240,5293,"[""Keyboard"", ""Monitor"", ""Laptop""]",2724.78,{},122561,1,Asia +2023-10-13,41241,1566,"[""Tablet""]",3082.42,"{""loyalty"": ""18%""}",71145,0,South America +2023-07-06,41242,744,"[""Monitor"", ""Phone"", ""Laptop""]",3095.66,{},227354,0,Africa +2024-10-04,41243,8191,"[""Charger""]",3828.27,{},88050,1,Europe +2024-08-25,41244,3001,"[""Charger""]",451.72,"{""seasonal"": ""30%""}",284633,1,Europe +2024-01-21,41245,9398,"[""Tablet""]",3293.06,"{"""": ""28%""}",110282,1,North America +2023-09-07,41246,1553,"[""Phone"", ""Monitor"", ""Keyboard""]",2959.36,"{""loyalty"": ""10%""}",128567,0,Africa +2024-03-18,41247,696,"[""Keyboard""]",3393.36,"{""loyalty"": ""18%""}",293793,0,North America +2023-08-07,41248,2023,"[""Phone"", ""Charger""]",3779.83,"{""loyalty"": ""8%""}",68641,1,North America +2024-11-18,41249,3022,"[""Tablet""]",4225.24,"{""promo"": ""26%""}",25223,0,Europe +2024-03-30,41250,4908,"[""Headphones""]",4273.78,"{""seasonal"": ""30%""}",183633,1,Europe +2024-08-27,41251,702,"[""Phone"", ""Keyboard"", ""Tablet""]",680.57,{},189487,1,Africa +2023-10-26,41252,539,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2172.48,{},41428,0,Africa +2024-02-16,41253,1013,"[""Wireless Mouse""]",1051.41,{},119846,1,Africa +2024-09-06,41254,9245,"[""Phone"", ""Keyboard"", ""Laptop""]",1528.81,{},106216,1,North America +2023-09-13,41255,4348,"[""Headphones""]",3632.76,"{""promo"": ""22%""}",273507,0,Europe +2024-01-02,41256,1493,"[""Tablet"", ""Charger"", ""Keyboard""]",3204.33,{},289276,1,Europe +2024-09-17,41257,7011,"[""Wireless Mouse""]",119.92,"{""loyalty"": ""7%""}",289269,0,South America +2023-04-21,41258,2334,"[""Headphones"", ""Laptop""]",3040.17,{},149146,1,South America +2024-09-23,41259,4109,"[""Monitor""]",931.58,{},188841,0,North America +2023-06-08,41260,7227,"[""Monitor"", ""Phone""]",2250.33,{},108199,1,Asia +2023-09-26,41261,4316,"[""Headphones"", ""Monitor"", ""Laptop""]",813.35,"{"""": ""19%""}",173781,1,Africa +2024-04-12,41262,5546,"[""Wireless Mouse"", ""Keyboard""]",4893.48,{},154692,0,North America +2023-06-16,41263,708,"[""Headphones""]",1077.45,{},166836,0,Europe +2023-09-03,41264,5090,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4788.16,"{""seasonal"": ""20%""}",213917,0,North America +2024-04-06,41265,4291,"[""Keyboard""]",198.79,"{""loyalty"": ""27%""}",211235,1,Africa +2023-01-27,41266,8284,"[""Headphones""]",3572.04,"{"""": ""22%""}",260180,1,Africa +2024-08-01,41267,2093,"[""Keyboard"", ""Laptop"", ""Headphones""]",1449.25,{},70806,1,Africa +2023-04-08,41268,8577,"[""Charger"", ""Laptop"", ""Monitor""]",2606.03,{},95433,1,Africa +2024-08-01,41269,5393,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1163.56,"{""promo"": ""18%""}",173906,1,Asia +2024-03-04,41270,8006,"[""Charger"", ""Phone""]",4466.41,{},239817,1,Africa +2023-05-31,41271,2560,"[""Phone"", ""Headphones"", ""Keyboard""]",3193.14,"{""seasonal"": ""29%""}",190629,0,North America +2024-12-03,41272,4734,"[""Headphones""]",4799.73,{},16092,0,North America +2024-07-21,41273,4705,"[""Laptop"", ""Monitor"", ""Keyboard""]",2637.73,"{""promo"": ""17%""}",13011,0,Asia +2024-07-27,41274,5380,"[""Keyboard""]",2316.87,"{""loyalty"": ""15%""}",238714,1,Africa +2023-01-12,41275,4717,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",294.36,{},118642,1,Asia +2023-01-29,41276,2771,"[""Tablet"", ""Monitor"", ""Headphones""]",1873.88,"{""promo"": ""24%""}",276491,1,South America +2024-03-01,41277,8469,"[""Keyboard""]",4802.85,{},233220,1,North America +2024-03-04,41278,2424,"[""Keyboard""]",3802.34,{},73215,0,South America +2024-08-26,41279,2312,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2755.41,{},87356,1,Europe +2024-06-15,41280,470,"[""Headphones""]",1500.37,"{"""": ""8%""}",202009,0,Africa +2024-10-23,41281,707,"[""Keyboard"", ""Monitor"", ""Phone""]",3257.72,"{""seasonal"": ""9%""}",204630,0,Asia +2024-10-28,41282,5768,"[""Phone"", ""Headphones""]",452.86,"{""loyalty"": ""13%""}",220837,0,North America +2023-10-24,41283,7996,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1438.16,"{""promo"": ""12%""}",93144,1,Asia +2023-10-24,41284,3876,"[""Headphones""]",4982.17,"{""promo"": ""25%""}",6570,1,Europe +2024-12-01,41285,9673,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",781.46,{},280543,1,Europe +2023-12-10,41286,6227,"[""Headphones"", ""Tablet"", ""Monitor""]",3098.16,{},226107,1,Africa +2024-08-22,41287,8530,"[""Tablet"", ""Laptop""]",1635.04,{},296381,0,South America +2023-11-07,41288,4061,"[""Phone""]",1469.99,{},136683,0,South America +2023-11-02,41289,9327,"[""Tablet"", ""Monitor""]",3447.96,{},121252,0,North America +2023-12-05,41290,8450,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1285.86,{},94375,0,South America +2023-05-07,41291,8492,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3358.39,"{"""": ""25%""}",27927,0,Asia +2024-03-30,41292,2187,"[""Headphones"", ""Keyboard""]",737.26,"{""promo"": ""18%""}",41754,1,South America +2023-08-21,41293,2882,"[""Keyboard"", ""Laptop""]",4587.01,"{""promo"": ""15%""}",118688,0,Asia +2024-04-08,41294,7520,"[""Charger""]",397.7,"{"""": ""9%""}",204240,0,South America +2023-02-22,41295,7069,"[""Charger"", ""Phone"", ""Keyboard""]",337.04,"{""seasonal"": ""24%""}",78963,1,Asia +2024-08-05,41296,4109,"[""Laptop"", ""Charger""]",3569.93,"{""seasonal"": ""30%""}",149832,1,North America +2024-08-20,41297,4685,"[""Charger""]",294.11,{},99616,0,South America +2024-11-14,41298,8074,"[""Headphones"", ""Keyboard"", ""Monitor""]",946.21,"{""seasonal"": ""26%""}",222806,0,Europe +2023-12-27,41299,5593,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4483.67,{},130527,0,Asia +2023-10-08,41300,2692,"[""Wireless Mouse"", ""Headphones""]",1861.33,"{""loyalty"": ""27%""}",47545,1,Asia +2023-08-08,41301,7257,"[""Headphones""]",1540.74,"{""loyalty"": ""23%""}",65096,1,Africa +2023-07-06,41302,5203,"[""Headphones""]",2525.79,"{""seasonal"": ""27%""}",94873,0,Asia +2023-03-15,41303,3456,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",104.37,{},20694,0,Europe +2023-10-19,41304,8014,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3687.47,{},84140,0,Europe +2023-10-25,41305,3748,"[""Headphones""]",1865.48,{},149116,1,Africa +2023-06-07,41306,5071,"[""Charger"", ""Headphones"", ""Keyboard""]",4333.21,"{""loyalty"": ""21%""}",202554,1,Asia +2023-09-15,41307,8916,"[""Monitor"", ""Laptop""]",1888.84,{},158408,1,Africa +2023-08-20,41308,4541,"[""Headphones"", ""Monitor"", ""Charger""]",2737.94,"{""promo"": ""7%""}",147455,1,Europe +2024-11-10,41309,9356,"[""Wireless Mouse"", ""Laptop""]",837.36,"{""seasonal"": ""17%""}",35625,0,South America +2023-11-28,41310,5872,"[""Headphones"", ""Charger""]",689.9,{},15459,0,Asia +2024-04-22,41311,6579,"[""Tablet"", ""Laptop"", ""Keyboard""]",2980.81,"{"""": ""6%""}",12849,1,North America +2023-03-13,41312,3466,"[""Laptop"", ""Keyboard""]",4350.43,{},250954,0,Africa +2024-05-16,41313,2428,"[""Charger"", ""Headphones""]",559.35,{},225425,1,Asia +2023-11-19,41314,2955,"[""Tablet""]",1592.39,{},277134,0,Asia +2024-07-18,41315,7822,"[""Tablet"", ""Headphones""]",4144.47,"{"""": ""6%""}",82416,1,Asia +2024-07-07,41316,5523,"[""Tablet""]",2107.41,{},200877,0,Asia +2024-09-09,41317,3635,"[""Keyboard"", ""Phone""]",149.48,"{"""": ""15%""}",44101,1,North America +2024-08-12,41318,7301,"[""Keyboard"", ""Headphones"", ""Phone""]",4044.33,{},234695,1,South America +2023-03-17,41319,1144,"[""Monitor"", ""Headphones""]",129.7,"{"""": ""7%""}",289162,1,Africa +2023-01-30,41320,1258,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",147.34,"{"""": ""28%""}",221862,0,Africa +2024-01-11,41321,6044,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1201.49,"{"""": ""16%""}",297853,1,Europe +2024-11-26,41322,9887,"[""Charger""]",474.23,"{""promo"": ""26%""}",160523,1,Asia +2024-09-27,41323,3423,"[""Laptop""]",3815.33,{},116211,1,South America +2024-01-02,41324,4642,"[""Headphones""]",411.56,{},73925,0,Africa +2024-12-29,41325,7776,"[""Laptop"", ""Wireless Mouse""]",1232.37,"{""promo"": ""16%""}",29856,0,North America +2024-07-22,41326,1377,"[""Charger"", ""Phone""]",3386.45,"{""loyalty"": ""20%""}",140942,1,Asia +2023-05-03,41327,7669,"[""Phone"", ""Keyboard"", ""Tablet""]",3035.73,"{""seasonal"": ""26%""}",253339,1,Africa +2024-07-01,41328,3206,"[""Wireless Mouse"", ""Phone""]",2460.63,{},220234,1,Africa +2024-10-23,41329,6003,"[""Tablet"", ""Charger"", ""Monitor""]",4388.11,{},187971,0,Europe +2024-07-26,41330,7986,"[""Tablet"", ""Phone""]",768.63,{},5315,0,Asia +2023-02-23,41331,3999,"[""Charger""]",3498.03,{},269842,1,Africa +2023-02-15,41332,8314,"[""Headphones""]",1693.02,"{""loyalty"": ""16%""}",13211,0,Asia +2024-05-28,41333,6356,"[""Monitor"", ""Wireless Mouse""]",2773.33,{},102828,1,North America +2024-05-15,41334,3127,"[""Charger""]",909.47,{},248853,1,Europe +2023-07-28,41335,1357,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1117.89,{},18183,0,Asia +2023-09-21,41336,3080,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4840.31,"{""loyalty"": ""5%""}",55609,1,North America +2024-08-10,41337,5717,"[""Phone"", ""Charger""]",935.85,{},2374,0,Africa +2023-05-15,41338,5446,"[""Headphones"", ""Laptop"", ""Tablet""]",661.91,"{""loyalty"": ""17%""}",158139,1,North America +2024-06-09,41339,180,"[""Tablet""]",113.44,"{"""": ""16%""}",273655,0,South America +2023-03-18,41340,7283,"[""Charger"", ""Headphones""]",326.66,"{"""": ""7%""}",24167,1,Asia +2024-04-11,41341,5104,"[""Laptop"", ""Charger""]",1095.12,"{""loyalty"": ""18%""}",250628,1,North America +2024-09-19,41342,7314,"[""Tablet""]",3990.34,{},13715,1,South America +2023-07-07,41343,2080,"[""Monitor"", ""Charger""]",4880.27,{},6829,1,South America +2024-10-10,41344,3315,"[""Wireless Mouse"", ""Keyboard""]",4781.85,"{"""": ""5%""}",30009,0,North America +2023-04-22,41345,9040,"[""Headphones"", ""Monitor""]",3502.63,"{"""": ""29%""}",209215,1,South America +2024-11-22,41346,8522,"[""Headphones"", ""Tablet""]",93.32,{},226647,1,Africa +2023-11-03,41347,6126,"[""Tablet""]",1767.72,"{""seasonal"": ""15%""}",23379,0,Africa +2024-01-24,41348,6200,"[""Laptop"", ""Tablet""]",1245.33,"{""loyalty"": ""27%""}",201132,1,South America +2023-12-14,41349,3124,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3352.28,{},177791,0,South America +2024-04-15,41350,5967,"[""Phone""]",2689.13,"{""promo"": ""17%""}",149721,0,Asia +2024-12-02,41351,2933,"[""Phone"", ""Keyboard""]",2030.12,"{""loyalty"": ""19%""}",190360,0,Asia +2023-03-15,41352,7696,"[""Wireless Mouse"", ""Monitor""]",2563.06,{},232601,0,Africa +2024-11-20,41353,8042,"[""Headphones"", ""Tablet""]",957.65,"{""loyalty"": ""12%""}",257800,1,Africa +2023-04-02,41354,1933,"[""Monitor"", ""Laptop""]",2113.86,{},183639,1,North America +2023-07-20,41355,2513,"[""Monitor"", ""Charger""]",4952.54,"{"""": ""13%""}",172891,0,Europe +2024-05-28,41356,888,"[""Headphones"", ""Tablet""]",3490.15,{},126767,0,Africa +2023-01-04,41357,5779,"[""Keyboard""]",4658.49,"{""promo"": ""5%""}",166163,1,Africa +2024-05-30,41358,291,"[""Monitor"", ""Tablet"", ""Keyboard""]",2535.28,{},52192,1,Africa +2023-06-18,41359,6892,"[""Monitor""]",3599.23,"{""loyalty"": ""21%""}",50433,0,Europe +2024-03-31,41360,9120,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1578.95,"{""promo"": ""7%""}",63956,0,Europe +2023-01-10,41361,5188,"[""Tablet""]",3351.2,"{""loyalty"": ""13%""}",131305,1,South America +2023-12-19,41362,3489,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",493.87,"{"""": ""29%""}",263535,1,South America +2024-05-08,41363,8132,"[""Monitor""]",4900.75,{},129977,1,Asia +2023-06-24,41364,3618,"[""Tablet"", ""Headphones""]",306.86,{},207271,1,North America +2023-08-18,41365,353,"[""Laptop"", ""Phone""]",318.62,"{"""": ""11%""}",153229,1,Europe +2023-05-26,41366,870,"[""Headphones"", ""Monitor""]",4246.27,{},101408,1,Europe +2023-04-09,41367,7361,"[""Laptop"", ""Monitor"", ""Keyboard""]",608.92,"{"""": ""29%""}",5232,0,Africa +2024-07-13,41368,975,"[""Keyboard"", ""Tablet""]",4442.27,{},257834,1,North America +2023-08-04,41369,1700,"[""Phone"", ""Charger"", ""Laptop""]",2960.82,{},217917,0,Asia +2024-12-18,41370,9548,"[""Phone""]",4214.7,{},223527,0,Europe +2024-12-24,41371,4800,"[""Headphones""]",1098.56,{},165122,0,Africa +2024-10-19,41372,2779,"[""Laptop""]",4950.78,{},92175,0,Asia +2023-08-27,41373,8848,"[""Headphones""]",1572.48,{},219506,1,Asia +2024-10-11,41374,471,"[""Charger""]",741.34,{},255505,1,Africa +2023-12-04,41375,8582,"[""Charger""]",890.22,"{"""": ""8%""}",60115,1,Africa +2024-08-10,41376,8805,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1678.62,{},248760,1,Asia +2024-05-26,41377,9103,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1625.52,"{""loyalty"": ""22%""}",117966,1,Africa +2024-07-23,41378,3267,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4931.06,{},163909,0,Europe +2024-10-20,41379,2203,"[""Keyboard"", ""Charger""]",2926.48,"{"""": ""5%""}",15410,1,Europe +2024-06-10,41380,3437,"[""Keyboard""]",1837.12,{},21813,0,Asia +2024-07-20,41381,1910,"[""Phone"", ""Wireless Mouse""]",2073.96,"{""seasonal"": ""30%""}",80248,0,North America +2024-04-13,41382,8814,"[""Keyboard"", ""Monitor""]",2190.0,"{""loyalty"": ""24%""}",253134,1,Africa +2023-07-05,41383,6022,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",784.64,"{""loyalty"": ""11%""}",143158,0,Europe +2024-01-18,41384,4999,"[""Monitor"", ""Laptop"", ""Headphones""]",3100.14,"{""seasonal"": ""25%""}",100477,1,North America +2024-06-09,41385,167,"[""Keyboard"", ""Monitor""]",947.34,"{"""": ""27%""}",106563,1,Asia +2023-06-29,41386,2597,"[""Charger""]",1449.72,{},238813,1,Asia +2024-03-30,41387,8969,"[""Phone""]",4183.77,{},281286,1,Europe +2023-05-15,41388,4650,"[""Wireless Mouse""]",4777.39,{},194220,0,North America +2024-05-14,41389,8427,"[""Charger""]",1450.78,"{""loyalty"": ""18%""}",231053,1,Asia +2023-03-30,41390,7035,"[""Monitor""]",3591.27,"{""promo"": ""20%""}",190761,1,North America +2023-09-02,41391,7329,"[""Phone"", ""Tablet"", ""Charger""]",3197.37,{},57187,0,Africa +2023-03-18,41392,8043,"[""Phone"", ""Headphones""]",1423.65,{},255394,0,Africa +2023-09-24,41393,5428,"[""Monitor"", ""Wireless Mouse""]",3114.2,"{"""": ""22%""}",217306,1,North America +2023-04-27,41394,3263,"[""Monitor"", ""Tablet""]",4125.81,"{""loyalty"": ""18%""}",58297,0,Africa +2023-01-26,41395,4377,"[""Wireless Mouse""]",1029.48,{},208416,1,Asia +2024-07-15,41396,5997,"[""Laptop""]",3241.58,"{""loyalty"": ""10%""}",205024,0,North America +2024-09-22,41397,1190,"[""Tablet""]",3937.54,{},61312,0,North America +2024-10-28,41398,4494,"[""Tablet""]",2200.52,{},98363,0,North America +2024-06-25,41399,8495,"[""Headphones"", ""Wireless Mouse""]",871.25,"{""promo"": ""7%""}",27889,1,North America +2023-10-11,41400,921,"[""Phone""]",4193.7,"{"""": ""20%""}",35042,1,North America +2023-12-23,41401,9775,"[""Phone"", ""Laptop""]",734.58,{},264799,1,Africa +2024-01-22,41402,7655,"[""Phone"", ""Laptop"", ""Monitor""]",3259.44,"{""seasonal"": ""30%""}",222026,0,Asia +2024-09-20,41403,9996,"[""Charger"", ""Monitor"", ""Headphones""]",491.99,{},73644,1,South America +2023-01-13,41404,9386,"[""Headphones"", ""Phone""]",1111.75,{},109399,0,Europe +2024-06-03,41405,9188,"[""Wireless Mouse"", ""Monitor""]",2030.03,{},161956,1,North America +2024-05-15,41406,7695,"[""Monitor"", ""Charger"", ""Headphones""]",70.87,"{""seasonal"": ""23%""}",76322,1,North America +2023-01-17,41407,4892,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2200.86,"{""promo"": ""13%""}",294654,1,Europe +2023-11-17,41408,7403,"[""Phone""]",1509.51,{},119616,1,South America +2024-12-21,41409,2775,"[""Keyboard"", ""Tablet"", ""Charger""]",4703.58,"{""seasonal"": ""7%""}",62251,0,South America +2024-12-05,41410,471,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",821.22,{},8522,0,Africa +2023-10-28,41411,5672,"[""Wireless Mouse"", ""Keyboard""]",2457.97,{},40264,0,North America +2024-11-21,41412,3439,"[""Keyboard"", ""Laptop"", ""Charger""]",504.94,"{""loyalty"": ""15%""}",190271,0,Europe +2024-02-13,41413,1211,"[""Wireless Mouse"", ""Phone""]",523.66,{},122878,0,Europe +2024-02-12,41414,9567,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1277.63,"{""promo"": ""29%""}",43990,0,North America +2024-07-05,41415,7000,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1781.09,"{""promo"": ""27%""}",118775,0,Asia +2024-06-13,41416,8985,"[""Wireless Mouse""]",3387.72,"{"""": ""12%""}",148342,0,South America +2024-09-11,41417,2457,"[""Phone""]",4200.18,"{"""": ""30%""}",27353,0,South America +2023-05-13,41418,6814,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4187.95,{},47994,1,Africa +2024-07-01,41419,989,"[""Tablet"", ""Headphones"", ""Charger""]",3715.67,"{""loyalty"": ""5%""}",173585,0,Africa +2024-01-27,41420,7897,"[""Monitor"", ""Charger"", ""Keyboard""]",3736.55,"{"""": ""7%""}",29728,0,Europe +2024-05-02,41421,9089,"[""Charger""]",224.21,"{"""": ""7%""}",278937,0,Europe +2024-09-06,41422,4858,"[""Headphones""]",2296.62,{},117130,0,Asia +2023-10-05,41423,1827,"[""Headphones""]",3504.66,"{""seasonal"": ""28%""}",195039,0,North America +2023-02-25,41424,7902,"[""Keyboard"", ""Monitor"", ""Laptop""]",2206.45,"{""seasonal"": ""20%""}",74706,1,South America +2023-04-04,41425,8909,"[""Keyboard""]",2918.91,{},290372,1,Asia +2023-11-29,41426,5907,"[""Tablet"", ""Phone""]",2042.21,{},111408,0,Europe +2024-03-10,41427,6120,"[""Charger"", ""Phone""]",509.57,"{""seasonal"": ""16%""}",242473,0,Africa +2024-02-25,41428,9963,"[""Monitor""]",4711.52,{},275277,0,North America +2024-04-09,41429,9779,"[""Wireless Mouse""]",141.57,{},180779,1,North America +2024-05-28,41430,7463,"[""Phone"", ""Headphones""]",1969.7,{},134716,0,South America +2024-12-30,41431,1584,"[""Keyboard"", ""Headphones"", ""Tablet""]",824.42,{},135172,0,South America +2023-05-04,41432,5024,"[""Laptop""]",527.8,"{""loyalty"": ""21%""}",6869,0,Europe +2024-01-27,41433,1905,"[""Laptop"", ""Headphones"", ""Tablet""]",516.78,"{""seasonal"": ""28%""}",229235,1,South America +2023-01-07,41434,5882,"[""Tablet"", ""Keyboard""]",2550.06,{},273706,0,Asia +2024-12-12,41435,6204,"[""Keyboard"", ""Charger""]",1039.44,{},290196,1,Asia +2024-05-30,41436,3099,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4822.67,{},12893,0,Europe +2023-08-22,41437,5174,"[""Tablet"", ""Charger"", ""Headphones""]",1427.79,"{"""": ""15%""}",271951,0,Africa +2023-08-24,41438,4740,"[""Headphones"", ""Laptop"", ""Tablet""]",1799.34,"{""seasonal"": ""15%""}",39772,0,Africa +2023-05-10,41439,153,"[""Keyboard""]",195.92,"{"""": ""20%""}",67934,0,Asia +2024-07-16,41440,8353,"[""Monitor""]",876.11,"{""loyalty"": ""6%""}",187282,1,Europe +2024-07-15,41441,3621,"[""Tablet""]",4319.65,{},170652,0,North America +2024-10-02,41442,6481,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4009.77,{},289291,1,Africa +2023-07-21,41443,4550,"[""Laptop"", ""Charger"", ""Monitor""]",2597.06,{},205383,1,North America +2024-07-02,41444,7211,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1411.26,{},28679,0,North America +2024-10-03,41445,33,"[""Headphones"", ""Phone""]",94.14,{},61401,1,North America +2024-03-16,41446,7213,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2553.42,"{""loyalty"": ""20%""}",16281,1,North America +2023-02-24,41447,6236,"[""Headphones"", ""Wireless Mouse""]",4634.31,{},74247,0,North America +2024-09-17,41448,3066,"[""Keyboard""]",3064.56,"{"""": ""21%""}",25136,0,Africa +2024-07-03,41449,244,"[""Keyboard""]",3715.5,{},44015,1,Africa +2024-06-30,41450,517,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1388.29,{},32505,0,Africa +2023-12-24,41451,5540,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",462.54,"{""promo"": ""18%""}",115553,0,Asia +2023-06-06,41452,4802,"[""Tablet"", ""Keyboard"", ""Monitor""]",1155.43,{},89287,0,Africa +2023-03-04,41453,3623,"[""Charger"", ""Monitor""]",2235.97,"{""loyalty"": ""17%""}",10116,0,South America +2023-06-23,41454,1633,"[""Monitor""]",2695.69,{},72745,1,Asia +2024-08-08,41455,2056,"[""Charger""]",1505.36,{},17405,0,Africa +2024-12-24,41456,109,"[""Laptop"", ""Monitor""]",2920.29,{},288834,0,Asia +2023-07-08,41457,3101,"[""Phone"", ""Headphones""]",520.68,{},111945,1,Europe +2023-12-08,41458,8117,"[""Phone"", ""Charger""]",3309.67,"{""loyalty"": ""18%""}",299748,0,South America +2023-09-19,41459,3531,"[""Headphones"", ""Phone""]",2113.97,{},212860,0,Europe +2023-09-30,41460,1913,"[""Keyboard"", ""Charger"", ""Headphones""]",1364.37,"{""loyalty"": ""29%""}",222061,0,South America +2023-05-25,41461,7088,"[""Tablet"", ""Charger"", ""Laptop""]",4021.86,"{"""": ""21%""}",209917,1,Europe +2023-06-16,41462,3341,"[""Phone"", ""Monitor"", ""Tablet""]",2359.63,"{""seasonal"": ""9%""}",112188,1,Asia +2024-12-23,41463,1996,"[""Charger"", ""Keyboard""]",241.02,{},51995,0,Africa +2023-02-22,41464,7282,"[""Tablet""]",3379.4,{},89323,1,Asia +2024-02-17,41465,2445,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3038.03,{},59914,0,South America +2023-03-21,41466,3523,"[""Wireless Mouse""]",3121.36,{},254359,0,Europe +2023-04-20,41467,9840,"[""Tablet""]",2471.02,"{"""": ""11%""}",292528,0,South America +2024-10-02,41468,5882,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2866.41,{},54129,1,Asia +2024-11-16,41469,9085,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",882.44,{},144306,0,Europe +2023-08-13,41470,3282,"[""Laptop"", ""Tablet""]",563.3,"{""seasonal"": ""16%""}",45913,1,Asia +2023-10-03,41471,4359,"[""Keyboard"", ""Tablet""]",1984.63,{},72269,0,Asia +2024-08-25,41472,7709,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",404.46,{},246544,0,Africa +2024-10-28,41473,2009,"[""Monitor"", ""Tablet""]",586.99,{},256376,1,Africa +2023-01-06,41474,6540,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1025.56,"{""promo"": ""15%""}",14706,1,Europe +2024-02-14,41475,3015,"[""Keyboard"", ""Headphones""]",2576.4,"{""loyalty"": ""12%""}",214042,0,South America +2024-12-12,41476,9514,"[""Charger"", ""Headphones"", ""Monitor""]",585.57,"{"""": ""17%""}",242067,1,South America +2023-05-02,41477,8254,"[""Headphones"", ""Wireless Mouse""]",2548.66,{},94646,0,Asia +2024-10-25,41478,6340,"[""Monitor""]",4347.26,{},45500,1,Africa +2023-10-04,41479,8313,"[""Tablet"", ""Monitor"", ""Laptop""]",2584.16,"{""promo"": ""26%""}",160891,1,South America +2023-03-02,41480,9685,"[""Tablet""]",3745.31,{},257526,1,Asia +2024-09-02,41481,9897,"[""Laptop""]",536.63,{},97525,1,North America +2023-12-26,41482,3624,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3736.61,"{""seasonal"": ""25%""}",12230,1,Africa +2024-09-14,41483,102,"[""Wireless Mouse""]",3997.89,{},245652,1,Europe +2024-06-24,41484,7630,"[""Keyboard""]",4321.18,"{""loyalty"": ""24%""}",204724,1,Asia +2023-06-24,41485,303,"[""Keyboard"", ""Monitor"", ""Charger""]",775.92,"{""loyalty"": ""10%""}",200166,0,South America +2024-03-25,41486,1081,"[""Charger"", ""Tablet""]",2739.6,"{"""": ""21%""}",86451,1,North America +2023-06-18,41487,3680,"[""Phone"", ""Keyboard""]",2846.22,{},62883,1,Asia +2023-10-08,41488,9910,"[""Tablet"", ""Charger"", ""Keyboard""]",521.74,"{"""": ""9%""}",78438,0,Africa +2023-02-15,41489,4511,"[""Monitor""]",2528.77,{},107941,1,Africa +2024-05-12,41490,7993,"[""Laptop"", ""Headphones""]",1270.08,{},105170,1,South America +2023-09-19,41491,5924,"[""Tablet"", ""Laptop""]",2535.61,"{"""": ""16%""}",267340,0,Asia +2024-06-14,41492,7482,"[""Tablet""]",2757.05,{},286101,0,North America +2024-11-24,41493,6947,"[""Keyboard"", ""Wireless Mouse""]",2256.83,"{""promo"": ""23%""}",3033,1,South America +2024-09-11,41494,7880,"[""Phone"", ""Charger""]",4577.03,{},179453,1,Africa +2024-07-23,41495,3385,"[""Keyboard""]",3726.95,"{"""": ""13%""}",238745,0,Asia +2023-11-09,41496,2869,"[""Charger""]",3506.72,{},82974,1,South America +2023-12-25,41497,3168,"[""Keyboard"", ""Monitor""]",3119.18,"{""loyalty"": ""11%""}",127598,0,Europe +2024-02-10,41498,4825,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",318.79,"{""loyalty"": ""19%""}",296582,0,South America +2024-06-28,41499,9214,"[""Headphones"", ""Monitor""]",2555.71,{},299249,1,Asia +2024-06-08,41500,2612,"[""Keyboard""]",607.14,{},166038,0,Africa +2023-09-02,41501,361,"[""Keyboard""]",1243.36,{},57600,0,South America +2023-09-12,41502,4025,"[""Wireless Mouse""]",2711.3,"{""seasonal"": ""30%""}",299661,1,Africa +2023-09-13,41503,4429,"[""Headphones"", ""Phone"", ""Charger""]",587.71,{},45896,1,South America +2023-10-26,41504,2409,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2956.95,{},289440,1,Asia +2023-12-07,41505,5881,"[""Wireless Mouse"", ""Monitor""]",1693.66,{},117977,0,Europe +2024-03-04,41506,7295,"[""Phone"", ""Laptop""]",4726.96,{},264069,0,North America +2023-04-05,41507,9853,"[""Keyboard""]",1040.19,{},160439,1,Asia +2024-11-24,41508,3427,"[""Laptop""]",3348.62,"{"""": ""25%""}",97633,0,North America +2024-03-13,41509,8134,"[""Phone"", ""Wireless Mouse""]",3156.16,{},277445,0,Europe +2024-09-20,41510,4847,"[""Tablet"", ""Monitor"", ""Phone""]",1823.36,"{""promo"": ""16%""}",159112,0,Africa +2024-10-10,41511,9638,"[""Charger"", ""Headphones""]",4560.35,{},89443,0,Asia +2023-01-17,41512,2921,"[""Monitor""]",3685.9,"{"""": ""23%""}",144138,1,South America +2023-09-22,41513,72,"[""Wireless Mouse""]",3259.69,"{""loyalty"": ""5%""}",144101,1,North America +2023-05-31,41514,9235,"[""Phone"", ""Monitor""]",553.35,{},79871,0,Africa +2024-03-06,41515,6154,"[""Charger"", ""Monitor"", ""Tablet""]",4071.36,"{""loyalty"": ""13%""}",268040,1,North America +2024-07-01,41516,4569,"[""Tablet"", ""Charger""]",150.52,"{"""": ""30%""}",169994,1,Europe +2023-11-07,41517,9534,"[""Phone"", ""Monitor""]",4366.11,"{""seasonal"": ""21%""}",274490,1,Africa +2023-09-30,41518,6982,"[""Phone""]",2410.11,"{""loyalty"": ""9%""}",195505,0,Asia +2024-08-04,41519,6684,"[""Monitor"", ""Tablet""]",1901.24,{},186051,0,North America +2023-07-15,41520,4180,"[""Charger""]",1105.72,{},206663,0,Asia +2024-07-14,41521,6605,"[""Headphones"", ""Monitor""]",2585.73,{},35676,1,Asia +2024-03-28,41522,5617,"[""Tablet"", ""Headphones""]",800.54,"{"""": ""20%""}",291568,0,Africa +2023-10-13,41523,2995,"[""Monitor"", ""Headphones"", ""Laptop""]",4063.46,"{""promo"": ""12%""}",231500,1,Asia +2023-09-30,41524,2929,"[""Phone"", ""Wireless Mouse""]",3767.26,"{"""": ""15%""}",267572,1,Asia +2024-07-03,41525,4673,"[""Tablet"", ""Charger""]",1432.83,{},90051,0,Asia +2023-09-06,41526,5095,"[""Laptop"", ""Phone""]",1016.76,"{""loyalty"": ""11%""}",273921,1,North America +2024-08-11,41527,946,"[""Phone"", ""Monitor""]",921.43,"{""loyalty"": ""6%""}",75376,1,Europe +2024-07-06,41528,5329,"[""Phone"", ""Charger""]",4753.16,{},265507,1,South America +2024-11-04,41529,5486,"[""Tablet""]",4617.01,"{""promo"": ""24%""}",232072,0,Africa +2023-06-27,41530,1649,"[""Headphones""]",3766.27,{},175697,0,North America +2023-06-30,41531,5391,"[""Phone"", ""Charger""]",1621.35,"{""promo"": ""24%""}",275182,1,South America +2023-01-13,41532,2627,"[""Headphones"", ""Wireless Mouse""]",322.75,"{"""": ""30%""}",265102,1,Asia +2023-06-17,41533,5245,"[""Laptop"", ""Charger""]",285.44,"{""promo"": ""20%""}",99171,1,North America +2023-09-05,41534,8445,"[""Headphones"", ""Tablet""]",3039.84,"{""loyalty"": ""21%""}",164481,0,North America +2023-10-07,41535,6068,"[""Wireless Mouse""]",1578.59,"{""seasonal"": ""15%""}",272164,1,North America +2023-10-02,41536,3207,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1782.36,"{""loyalty"": ""22%""}",171314,0,North America +2024-07-04,41537,5881,"[""Keyboard"", ""Wireless Mouse""]",2263.2,"{""loyalty"": ""28%""}",57254,0,Europe +2023-04-23,41538,8554,"[""Charger""]",4713.4,{},81133,0,North America +2023-04-14,41539,4077,"[""Headphones"", ""Monitor"", ""Laptop""]",1660.92,"{""promo"": ""15%""}",48736,1,Africa +2024-09-03,41540,4824,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1912.79,{},168690,1,Africa +2024-02-26,41541,8184,"[""Wireless Mouse""]",3425.57,"{""loyalty"": ""11%""}",115404,0,Asia +2024-03-20,41542,3721,"[""Keyboard""]",2274.12,"{"""": ""18%""}",238968,1,Africa +2024-05-17,41543,722,"[""Charger"", ""Keyboard"", ""Phone""]",1737.34,"{"""": ""10%""}",40688,1,Asia +2024-07-29,41544,9783,"[""Keyboard"", ""Phone""]",3282.45,{},71131,1,North America +2023-10-12,41545,4783,"[""Charger"", ""Monitor""]",4353.52,"{""loyalty"": ""5%""}",233993,0,South America +2024-02-12,41546,2715,"[""Laptop"", ""Tablet"", ""Monitor""]",101.27,{},255919,0,South America +2023-01-29,41547,8931,"[""Monitor""]",4854.94,"{""seasonal"": ""5%""}",131257,1,North America +2024-10-27,41548,968,"[""Headphones"", ""Charger"", ""Laptop""]",4427.98,{},97492,0,Africa +2024-01-19,41549,737,"[""Phone"", ""Wireless Mouse""]",3162.25,"{""seasonal"": ""30%""}",118215,0,Europe +2024-04-14,41550,591,"[""Keyboard"", ""Laptop""]",809.16,{},198488,1,Africa +2023-11-13,41551,5267,"[""Keyboard"", ""Laptop"", ""Monitor""]",593.64,"{""seasonal"": ""14%""}",130973,1,Asia +2024-05-19,41552,9441,"[""Keyboard"", ""Tablet"", ""Monitor""]",767.42,{},214368,0,South America +2024-06-03,41553,7584,"[""Tablet""]",1095.53,{},49293,0,South America +2024-01-04,41554,7419,"[""Monitor"", ""Laptop"", ""Headphones""]",1166.7,"{""seasonal"": ""11%""}",250571,1,Africa +2023-01-30,41555,7598,"[""Headphones"", ""Wireless Mouse""]",4828.06,{},33004,1,Asia +2023-02-02,41556,9657,"[""Laptop""]",4743.32,{},147674,0,Asia +2023-07-21,41557,6561,"[""Laptop""]",3524.68,{},105610,0,Asia +2023-07-03,41558,5024,"[""Tablet"", ""Laptop"", ""Monitor""]",1256.34,"{""seasonal"": ""12%""}",175218,1,Asia +2023-06-05,41559,5954,"[""Headphones"", ""Charger"", ""Tablet""]",3778.52,{},38182,1,Africa +2024-09-24,41560,554,"[""Phone"", ""Wireless Mouse""]",1504.97,{},57519,0,Africa +2024-12-04,41561,7038,"[""Headphones"", ""Phone""]",3170.77,"{""promo"": ""11%""}",109723,1,North America +2023-11-06,41562,5306,"[""Laptop""]",154.81,"{""loyalty"": ""21%""}",287810,0,South America +2023-05-08,41563,4315,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",253.34,{},235882,1,South America +2024-02-10,41564,1063,"[""Keyboard""]",1697.57,{},228080,0,South America +2024-12-28,41565,6529,"[""Tablet"", ""Phone"", ""Laptop""]",3386.01,"{""loyalty"": ""26%""}",199893,1,Africa +2024-04-20,41566,1608,"[""Laptop"", ""Charger"", ""Headphones""]",1504.06,{},34935,1,South America +2024-09-10,41567,7232,"[""Headphones"", ""Keyboard"", ""Tablet""]",199.18,{},100354,1,South America +2023-10-04,41568,8539,"[""Tablet"", ""Headphones""]",4140.55,{},214662,0,Asia +2023-08-09,41569,7763,"[""Tablet"", ""Monitor"", ""Charger""]",3603.22,{},126707,0,Africa +2024-12-10,41570,210,"[""Keyboard"", ""Tablet""]",1625.69,"{""seasonal"": ""18%""}",241002,1,Europe +2024-04-22,41571,850,"[""Headphones""]",970.99,"{"""": ""27%""}",57199,1,North America +2023-12-02,41572,4230,"[""Phone""]",3727.16,"{""promo"": ""14%""}",70647,1,North America +2023-10-14,41573,9169,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3035.91,"{""seasonal"": ""7%""}",16533,0,Africa +2023-01-14,41574,6867,"[""Laptop"", ""Keyboard""]",3130.28,{},96275,0,Asia +2024-03-21,41575,6680,"[""Phone""]",4483.07,{},74328,0,Asia +2024-09-21,41576,3151,"[""Monitor"", ""Laptop"", ""Phone""]",1942.55,"{""promo"": ""13%""}",287955,1,Asia +2024-02-08,41577,106,"[""Tablet"", ""Monitor""]",3454.5,"{""loyalty"": ""20%""}",25712,1,North America +2023-09-17,41578,5846,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3628.1,"{""loyalty"": ""26%""}",131541,0,Africa +2024-10-14,41579,7412,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",628.93,{},297584,1,South America +2024-04-30,41580,8153,"[""Keyboard"", ""Tablet""]",4023.47,{},98429,1,Africa +2023-04-01,41581,3798,"[""Keyboard"", ""Tablet""]",3612.0,{},152738,0,Africa +2024-06-12,41582,5274,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3842.19,"{""promo"": ""29%""}",57091,0,South America +2023-06-18,41583,429,"[""Charger""]",2566.26,"{""loyalty"": ""14%""}",273310,0,Europe +2023-11-04,41584,1385,"[""Phone""]",581.28,{},48844,0,Africa +2024-08-06,41585,1781,"[""Laptop"", ""Wireless Mouse""]",1553.93,{},209639,1,South America +2023-08-31,41586,4534,"[""Tablet"", ""Keyboard""]",2896.91,"{""promo"": ""10%""}",139745,1,North America +2023-09-17,41587,3303,"[""Tablet"", ""Laptop""]",187.34,"{""promo"": ""15%""}",137414,0,South America +2024-04-20,41588,8,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4830.62,"{""loyalty"": ""6%""}",171359,0,Africa +2024-06-16,41589,5484,"[""Charger""]",368.55,"{""loyalty"": ""10%""}",264385,0,Africa +2023-04-26,41590,7701,"[""Headphones""]",2337.94,"{""seasonal"": ""19%""}",283365,0,South America +2024-12-01,41591,3103,"[""Laptop""]",4530.0,"{""loyalty"": ""24%""}",44317,0,South America +2024-06-09,41592,7138,"[""Headphones"", ""Monitor""]",3674.81,"{""promo"": ""11%""}",217970,0,Europe +2024-02-03,41593,4467,"[""Tablet"", ""Phone""]",4108.13,"{""promo"": ""10%""}",232158,1,Africa +2023-09-03,41594,3582,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4598.46,{},139480,0,Europe +2023-05-28,41595,6092,"[""Headphones""]",4743.94,{},291844,1,North America +2023-06-19,41596,7638,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3008.95,"{""seasonal"": ""9%""}",31381,0,South America +2024-12-04,41597,930,"[""Monitor""]",1526.97,"{"""": ""26%""}",217244,0,Europe +2023-09-04,41598,5399,"[""Keyboard""]",3314.96,"{""promo"": ""25%""}",40660,0,Europe +2023-05-09,41599,9433,"[""Headphones""]",2383.88,"{"""": ""17%""}",145210,0,Asia +2023-08-01,41600,67,"[""Wireless Mouse"", ""Keyboard""]",2480.99,"{""loyalty"": ""20%""}",248851,0,Africa +2023-05-21,41601,4306,"[""Phone"", ""Charger"", ""Wireless Mouse""]",917.22,"{"""": ""6%""}",29649,1,Europe +2023-06-29,41602,7349,"[""Keyboard""]",4132.73,"{""seasonal"": ""18%""}",179437,1,Africa +2024-02-24,41603,4494,"[""Phone""]",3055.55,"{""loyalty"": ""18%""}",231427,0,North America +2024-06-23,41604,506,"[""Charger""]",1788.03,"{"""": ""6%""}",47928,0,Africa +2023-10-12,41605,985,"[""Monitor""]",3521.4,{},221602,1,South America +2023-12-28,41606,9788,"[""Monitor"", ""Charger"", ""Tablet""]",846.4,"{"""": ""18%""}",83875,1,Asia +2024-05-20,41607,6975,"[""Monitor"", ""Phone""]",3124.38,"{"""": ""20%""}",7897,1,North America +2023-05-06,41608,1606,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1539.77,{},249634,1,Africa +2024-08-12,41609,9079,"[""Laptop"", ""Wireless Mouse""]",3328.53,"{""promo"": ""29%""}",44344,1,South America +2023-11-28,41610,3392,"[""Wireless Mouse"", ""Headphones""]",3890.88,{},255861,0,Europe +2023-02-20,41611,9062,"[""Wireless Mouse""]",1545.1,{},38843,1,North America +2024-07-15,41612,782,"[""Phone""]",2343.88,"{"""": ""14%""}",9036,1,Asia +2023-03-17,41613,9328,"[""Keyboard"", ""Laptop""]",4738.94,{},205836,0,Europe +2024-03-27,41614,4935,"[""Phone""]",948.18,{},259432,0,Asia +2023-09-13,41615,5968,"[""Headphones""]",649.67,{},86277,0,Asia +2024-09-28,41616,4142,"[""Charger"", ""Tablet"", ""Keyboard""]",2861.74,"{""seasonal"": ""9%""}",155193,0,Africa +2024-06-23,41617,842,"[""Monitor""]",1635.46,"{"""": ""17%""}",179543,1,North America +2024-02-18,41618,6008,"[""Charger"", ""Phone""]",3607.22,{},24486,0,Asia +2024-07-01,41619,5226,"[""Headphones""]",4696.61,"{""seasonal"": ""14%""}",253278,1,North America +2023-12-26,41620,9221,"[""Keyboard""]",382.8,{},167265,0,North America +2024-06-11,41621,3388,"[""Wireless Mouse""]",2513.58,{},184781,1,South America +2023-01-16,41622,1493,"[""Phone"", ""Monitor"", ""Headphones""]",816.24,{},263783,1,Europe +2024-02-02,41623,5253,"[""Keyboard"", ""Wireless Mouse""]",4431.47,"{""promo"": ""11%""}",36455,1,Africa +2023-01-20,41624,953,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",772.13,"{""promo"": ""23%""}",219598,0,North America +2023-10-24,41625,1174,"[""Headphones"", ""Keyboard""]",387.3,"{"""": ""28%""}",227261,0,Europe +2023-06-22,41626,2771,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2296.44,"{"""": ""18%""}",115283,0,Europe +2023-12-22,41627,9652,"[""Headphones""]",562.5,"{""promo"": ""22%""}",192387,1,North America +2024-02-25,41628,578,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1777.45,{},230817,1,Africa +2023-06-27,41629,2422,"[""Phone"", ""Monitor""]",3045.26,{},132838,0,South America +2024-04-16,41630,5871,"[""Phone""]",894.08,{},101134,1,Asia +2024-08-14,41631,1930,"[""Keyboard"", ""Monitor""]",871.28,"{""loyalty"": ""28%""}",243631,1,South America +2024-04-29,41632,3778,"[""Phone"", ""Charger"", ""Laptop""]",3263.86,{},190907,0,Europe +2023-05-17,41633,7551,"[""Wireless Mouse"", ""Tablet""]",3952.29,"{""loyalty"": ""23%""}",13090,0,North America +2023-03-29,41634,5115,"[""Monitor"", ""Wireless Mouse""]",607.89,"{""seasonal"": ""14%""}",286420,1,Asia +2023-07-01,41635,6331,"[""Headphones""]",3771.63,"{"""": ""6%""}",179395,1,North America +2023-02-10,41636,463,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3566.89,{},186093,1,Asia +2024-11-06,41637,8206,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",361.06,"{""loyalty"": ""18%""}",216821,1,Europe +2023-03-05,41638,9102,"[""Laptop""]",3403.31,{},250106,0,Asia +2023-07-30,41639,3450,"[""Charger"", ""Keyboard""]",4788.87,{},242358,0,South America +2023-08-09,41640,3837,"[""Headphones"", ""Charger""]",2372.83,{},289257,0,Europe +2024-02-15,41641,1778,"[""Laptop""]",3010.95,"{""seasonal"": ""10%""}",17478,1,Asia +2024-02-11,41642,7258,"[""Laptop""]",398.19,"{""seasonal"": ""29%""}",211458,1,Europe +2024-03-08,41643,3987,"[""Laptop"", ""Headphones""]",3010.4,{},26088,0,North America +2023-10-04,41644,6062,"[""Laptop"", ""Monitor"", ""Tablet""]",1587.31,{},124633,0,Asia +2023-12-27,41645,326,"[""Keyboard"", ""Tablet""]",3950.55,"{"""": ""15%""}",77305,0,Asia +2023-03-08,41646,6106,"[""Headphones"", ""Monitor""]",3238.7,{},53935,1,Africa +2024-05-21,41647,4927,"[""Tablet"", ""Monitor""]",4122.1,{},85154,0,Africa +2023-09-07,41648,566,"[""Laptop"", ""Charger""]",77.89,{},79810,1,North America +2023-06-20,41649,2672,"[""Keyboard"", ""Headphones"", ""Charger""]",1449.02,"{""promo"": ""11%""}",124768,0,Africa +2023-07-20,41650,5932,"[""Monitor"", ""Phone"", ""Laptop""]",2489.69,"{"""": ""21%""}",86369,1,Asia +2023-02-01,41651,589,"[""Keyboard""]",1659.59,{},130833,1,South America +2024-11-23,41652,3794,"[""Charger"", ""Monitor""]",1412.94,"{""promo"": ""13%""}",292879,0,Africa +2024-03-30,41653,4187,"[""Wireless Mouse"", ""Monitor""]",3973.19,{},241984,0,South America +2024-10-19,41654,9842,"[""Phone"", ""Laptop""]",4698.72,{},78065,0,South America +2024-02-03,41655,2040,"[""Headphones"", ""Laptop""]",1640.32,{},165703,1,Africa +2023-09-11,41656,3826,"[""Headphones""]",2771.44,"{""promo"": ""24%""}",68486,0,Europe +2024-09-19,41657,3758,"[""Tablet"", ""Headphones""]",2009.27,"{"""": ""16%""}",151243,0,South America +2023-09-28,41658,6734,"[""Monitor"", ""Laptop"", ""Tablet""]",2663.58,"{""loyalty"": ""7%""}",147822,1,Europe +2023-03-07,41659,362,"[""Monitor""]",3165.95,{},105117,1,Asia +2024-01-06,41660,814,"[""Tablet"", ""Charger""]",246.6,{},120288,1,Europe +2024-05-28,41661,2521,"[""Keyboard"", ""Monitor"", ""Headphones""]",2442.41,"{"""": ""28%""}",3974,1,North America +2023-08-22,41662,3229,"[""Charger"", ""Monitor"", ""Keyboard""]",1279.08,"{"""": ""14%""}",83741,0,South America +2024-02-05,41663,503,"[""Phone"", ""Wireless Mouse""]",4425.9,"{"""": ""28%""}",134650,0,Asia +2024-06-24,41664,994,"[""Charger"", ""Phone""]",4724.56,"{""loyalty"": ""8%""}",61151,1,South America +2023-05-23,41665,2489,"[""Monitor""]",1493.03,{},42266,1,South America +2024-08-06,41666,2355,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2265.93,{},156553,0,North America +2024-09-04,41667,4846,"[""Headphones"", ""Keyboard""]",4257.84,"{""loyalty"": ""28%""}",130472,0,Europe +2024-12-17,41668,4328,"[""Tablet""]",1501.25,"{""promo"": ""14%""}",166652,0,Asia +2024-07-19,41669,818,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1753.65,"{"""": ""28%""}",245974,1,South America +2024-06-09,41670,6642,"[""Laptop""]",1267.56,{},252169,1,Europe +2023-10-22,41671,715,"[""Charger""]",4111.24,{},35484,1,North America +2023-05-24,41672,4916,"[""Headphones"", ""Keyboard"", ""Laptop""]",1906.28,"{""loyalty"": ""23%""}",194076,1,Asia +2023-11-01,41673,8824,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",418.16,{},256332,1,Europe +2023-07-23,41674,478,"[""Monitor"", ""Laptop""]",2291.82,{},198577,1,Africa +2023-12-19,41675,3578,"[""Laptop""]",895.18,"{""promo"": ""30%""}",281698,1,Asia +2024-03-13,41676,6343,"[""Tablet""]",3722.23,"{""promo"": ""27%""}",102940,1,North America +2023-03-30,41677,1472,"[""Charger""]",1278.38,{},217198,1,Africa +2024-05-13,41678,8207,"[""Keyboard"", ""Phone"", ""Charger""]",410.99,"{""promo"": ""29%""}",66474,0,South America +2024-07-07,41679,8547,"[""Monitor""]",2247.48,{},179657,0,Europe +2024-06-15,41680,6160,"[""Wireless Mouse"", ""Keyboard""]",1268.85,{},91530,1,Europe +2023-09-06,41681,6397,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1813.87,"{""loyalty"": ""6%""}",170957,0,Asia +2023-10-30,41682,1083,"[""Monitor"", ""Laptop"", ""Tablet""]",715.78,"{""seasonal"": ""8%""}",161523,0,South America +2024-02-01,41683,8117,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3871.48,"{""seasonal"": ""25%""}",271363,0,North America +2024-11-07,41684,3214,"[""Monitor""]",2707.58,"{""promo"": ""23%""}",172594,0,South America +2023-05-24,41685,8740,"[""Monitor""]",1831.88,"{""promo"": ""28%""}",114861,1,North America +2023-04-18,41686,6678,"[""Phone"", ""Tablet""]",3159.43,{},261392,1,Africa +2023-11-05,41687,401,"[""Headphones"", ""Monitor"", ""Charger""]",2355.95,{},4307,0,North America +2023-06-12,41688,2004,"[""Charger"", ""Tablet"", ""Headphones""]",1364.04,{},196244,1,Asia +2023-12-01,41689,3670,"[""Laptop"", ""Tablet"", ""Monitor""]",2683.91,{},246408,1,North America +2024-03-11,41690,4603,"[""Phone"", ""Charger""]",4309.89,{},74075,1,North America +2023-05-31,41691,6358,"[""Wireless Mouse""]",980.52,{},28618,1,Asia +2024-09-06,41692,501,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4778.15,"{""promo"": ""26%""}",99540,1,South America +2023-02-03,41693,5589,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1716.78,{},48050,0,North America +2024-08-09,41694,1828,"[""Wireless Mouse"", ""Charger""]",4166.39,{},208478,0,North America +2024-05-30,41695,4797,"[""Charger""]",2796.34,"{""loyalty"": ""8%""}",203521,1,Africa +2024-12-23,41696,8558,"[""Keyboard""]",1160.74,{},55208,1,Europe +2024-10-07,41697,1470,"[""Charger""]",2844.82,{},107409,0,Africa +2024-06-22,41698,3170,"[""Wireless Mouse""]",1660.53,"{""loyalty"": ""5%""}",39430,1,Africa +2023-04-06,41699,3455,"[""Laptop"", ""Wireless Mouse""]",2250.63,{},136156,0,North America +2024-03-13,41700,3165,"[""Keyboard"", ""Phone""]",3847.96,"{"""": ""29%""}",201642,0,Asia +2024-11-30,41701,6815,"[""Phone"", ""Laptop""]",2534.4,{},238429,1,Africa +2024-07-16,41702,1628,"[""Laptop""]",1884.5,{},211707,0,Asia +2024-06-21,41703,5915,"[""Keyboard"", ""Wireless Mouse""]",3820.1,"{""loyalty"": ""19%""}",263070,0,South America +2024-04-09,41704,9900,"[""Charger""]",2399.07,"{"""": ""14%""}",168828,1,Africa +2023-09-18,41705,5081,"[""Monitor"", ""Tablet""]",1022.53,{},32382,0,Europe +2024-12-19,41706,7920,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",254.99,{},231906,1,South America +2023-07-09,41707,3734,"[""Laptop""]",858.57,{},270892,1,South America +2023-06-11,41708,8402,"[""Phone"", ""Tablet"", ""Charger""]",4249.08,"{""seasonal"": ""9%""}",84065,0,Asia +2024-12-25,41709,8677,"[""Wireless Mouse""]",619.65,{},254037,1,North America +2023-12-27,41710,4752,"[""Monitor"", ""Headphones"", ""Charger""]",4209.59,"{""seasonal"": ""20%""}",178594,1,Asia +2023-07-27,41711,7029,"[""Laptop"", ""Monitor""]",3347.18,"{""loyalty"": ""13%""}",271397,1,Asia +2024-02-25,41712,2519,"[""Laptop""]",3580.92,"{""seasonal"": ""27%""}",225040,1,Asia +2023-01-12,41713,9488,"[""Headphones"", ""Keyboard"", ""Laptop""]",2428.16,{},209241,1,Africa +2024-11-16,41714,1887,"[""Headphones""]",4922.94,"{""seasonal"": ""21%""}",265932,1,Asia +2023-10-26,41715,1740,"[""Laptop""]",4183.38,{},227953,1,Africa +2024-11-05,41716,2418,"[""Headphones""]",2008.64,{},251721,1,South America +2023-03-09,41717,6864,"[""Keyboard"", ""Charger""]",1165.34,{},101991,0,South America +2023-05-22,41718,9371,"[""Monitor"", ""Tablet""]",4551.66,"{""promo"": ""8%""}",36646,0,Asia +2023-03-27,41719,1515,"[""Wireless Mouse"", ""Tablet""]",4580.3,{},108699,1,South America +2023-10-01,41720,8852,"[""Laptop"", ""Keyboard"", ""Headphones""]",2934.79,{},157463,1,Africa +2023-12-02,41721,7679,"[""Tablet"", ""Monitor"", ""Keyboard""]",377.45,"{"""": ""20%""}",42515,0,Africa +2024-02-07,41722,923,"[""Phone""]",2226.65,"{""loyalty"": ""8%""}",26044,0,Europe +2023-03-27,41723,1671,"[""Phone"", ""Keyboard""]",1627.06,"{""seasonal"": ""26%""}",291196,1,Europe +2023-01-01,41724,586,"[""Tablet""]",2838.34,"{""seasonal"": ""13%""}",225235,0,Europe +2024-03-13,41725,6624,"[""Charger""]",4968.74,{},215595,1,South America +2024-03-16,41726,2657,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4683.91,"{""seasonal"": ""17%""}",163234,1,South America +2024-11-20,41727,2585,"[""Keyboard"", ""Charger""]",1092.32,{},292792,1,South America +2024-03-10,41728,4685,"[""Laptop"", ""Charger"", ""Headphones""]",2804.97,"{""loyalty"": ""19%""}",118353,0,North America +2023-02-16,41729,6335,"[""Laptop"", ""Monitor"", ""Phone""]",3503.66,"{"""": ""27%""}",119415,0,South America +2024-09-16,41730,3937,"[""Charger""]",4633.72,"{""promo"": ""15%""}",55206,1,South America +2023-08-18,41731,9246,"[""Charger"", ""Phone""]",3351.98,{},157370,0,North America +2024-04-06,41732,3513,"[""Tablet""]",743.73,"{""promo"": ""29%""}",89451,1,Asia +2023-02-20,41733,7826,"[""Charger"", ""Phone""]",470.28,"{""seasonal"": ""10%""}",101854,1,North America +2023-02-24,41734,6575,"[""Headphones""]",1528.42,{},131929,0,South America +2024-06-12,41735,3018,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",315.41,{},35926,1,Europe +2023-08-07,41736,3560,"[""Wireless Mouse""]",3395.67,{},255476,0,South America +2024-04-18,41737,5654,"[""Headphones"", ""Tablet"", ""Laptop""]",939.97,"{"""": ""30%""}",87805,1,South America +2023-07-22,41738,8492,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1470.58,{},219332,1,North America +2023-03-09,41739,6927,"[""Tablet"", ""Charger""]",2300.6,{},288144,0,South America +2023-09-03,41740,3189,"[""Laptop""]",1079.93,{},163562,1,South America +2024-07-22,41741,8268,"[""Laptop"", ""Charger"", ""Keyboard""]",398.16,{},214344,0,Africa +2023-12-15,41742,6735,"[""Monitor""]",612.49,{},148818,1,Asia +2024-03-06,41743,4241,"[""Phone"", ""Headphones"", ""Laptop""]",990.51,{},50572,0,North America +2024-10-11,41744,3880,"[""Headphones"", ""Monitor"", ""Tablet""]",1436.14,"{"""": ""12%""}",61242,1,Asia +2024-06-26,41745,267,"[""Keyboard"", ""Laptop""]",1111.81,"{""loyalty"": ""18%""}",113839,1,North America +2024-04-23,41746,255,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2707.06,{},285396,1,North America +2024-03-23,41747,502,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1903.54,{},195792,1,Asia +2024-11-12,41748,763,"[""Wireless Mouse"", ""Headphones""]",1408.58,"{""seasonal"": ""27%""}",122640,1,Europe +2023-11-27,41749,8204,"[""Laptop""]",3170.83,{},108694,1,Europe +2024-11-18,41750,8227,"[""Headphones"", ""Keyboard"", ""Laptop""]",1660.83,{},201918,1,North America +2024-01-16,41751,9952,"[""Wireless Mouse""]",4056.39,"{""seasonal"": ""27%""}",109963,0,Asia +2024-05-19,41752,3209,"[""Charger"", ""Monitor""]",842.99,{},144326,1,Europe +2023-01-16,41753,5343,"[""Keyboard"", ""Headphones"", ""Monitor""]",2431.14,"{""seasonal"": ""28%""}",183736,1,South America +2024-02-17,41754,6190,"[""Laptop""]",1372.78,{},46365,0,North America +2023-12-08,41755,9841,"[""Charger""]",3351.17,"{"""": ""17%""}",69860,0,South America +2024-02-10,41756,7927,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",192.87,"{""seasonal"": ""24%""}",216567,0,Africa +2023-06-17,41757,4973,"[""Tablet"", ""Wireless Mouse""]",3240.13,"{""loyalty"": ""18%""}",36974,1,Europe +2024-01-10,41758,4482,"[""Charger""]",213.61,"{"""": ""25%""}",182466,1,North America +2023-04-23,41759,1201,"[""Wireless Mouse""]",3743.59,"{""loyalty"": ""25%""}",36648,1,Europe +2024-03-02,41760,5988,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3588.3,{},255673,0,Asia +2023-08-13,41761,1254,"[""Keyboard""]",4232.98,{},111048,0,South America +2024-09-14,41762,7403,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4624.0,{},101786,0,North America +2024-11-06,41763,5188,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3401.93,{},287880,1,Africa +2023-07-12,41764,3733,"[""Keyboard"", ""Tablet""]",1665.04,"{""promo"": ""13%""}",60082,1,North America +2023-01-15,41765,9114,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4253.51,{},35960,1,North America +2023-09-05,41766,6072,"[""Monitor""]",3828.31,"{""loyalty"": ""9%""}",80354,0,North America +2023-09-06,41767,682,"[""Headphones"", ""Wireless Mouse""]",1318.59,{},28951,1,South America +2024-06-16,41768,4370,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1773.54,"{"""": ""12%""}",158956,0,Europe +2023-11-09,41769,6081,"[""Monitor"", ""Keyboard""]",82.08,"{""promo"": ""21%""}",38554,0,Asia +2024-03-08,41770,9687,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4562.65,{},1262,0,North America +2024-04-20,41771,6909,"[""Monitor""]",4305.18,{},34153,0,Europe +2024-10-10,41772,9394,"[""Phone"", ""Tablet""]",2483.17,{},240230,1,Africa +2023-07-12,41773,8971,"[""Charger""]",1221.58,"{""promo"": ""26%""}",235688,0,Africa +2024-10-21,41774,174,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2229.68,"{"""": ""29%""}",175662,0,North America +2024-10-21,41775,1929,"[""Laptop""]",3809.85,"{""loyalty"": ""12%""}",182342,1,North America +2023-10-09,41776,6769,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2033.46,{},182192,1,South America +2023-09-14,41777,7484,"[""Wireless Mouse""]",4590.92,{},262098,0,Africa +2024-03-29,41778,2826,"[""Laptop""]",3952.29,"{""promo"": ""18%""}",35102,1,Europe +2024-02-29,41779,8517,"[""Keyboard""]",4617.82,{},248755,0,North America +2024-03-23,41780,4874,"[""Monitor"", ""Laptop""]",3474.02,{},184295,0,Europe +2024-11-26,41781,2166,"[""Wireless Mouse""]",1213.45,{},195125,0,Africa +2024-06-27,41782,3496,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",441.07,"{""loyalty"": ""16%""}",45550,0,South America +2024-08-15,41783,3438,"[""Phone""]",4313.52,"{"""": ""15%""}",111014,1,Europe +2024-02-25,41784,3796,"[""Laptop"", ""Charger""]",2742.64,{},209994,1,Africa +2023-05-26,41785,8787,"[""Monitor"", ""Laptop"", ""Tablet""]",4807.86,"{""promo"": ""6%""}",17509,1,South America +2024-05-27,41786,4895,"[""Laptop"", ""Charger""]",4407.5,{},160942,0,Asia +2023-11-30,41787,5899,"[""Tablet""]",3544.79,{},240372,0,Europe +2024-09-17,41788,7858,"[""Laptop""]",4271.19,{},277698,0,Asia +2023-08-23,41789,6583,"[""Wireless Mouse""]",3131.77,"{""promo"": ""30%""}",165461,1,South America +2024-06-18,41790,6633,"[""Laptop"", ""Phone""]",3486.5,{},248201,1,South America +2023-08-21,41791,9978,"[""Laptop""]",416.45,{},255761,1,Africa +2024-05-12,41792,1387,"[""Wireless Mouse""]",1020.09,{},121710,0,South America +2024-07-21,41793,3151,"[""Headphones"", ""Laptop"", ""Phone""]",1391.66,"{""loyalty"": ""14%""}",235245,1,Europe +2023-10-24,41794,6813,"[""Monitor"", ""Tablet"", ""Keyboard""]",2576.72,{},223817,0,North America +2023-02-04,41795,5546,"[""Headphones"", ""Keyboard""]",3992.94,"{""promo"": ""17%""}",81775,1,South America +2023-12-09,41796,9592,"[""Headphones"", ""Charger""]",1875.33,"{""promo"": ""15%""}",247309,1,North America +2023-11-03,41797,5916,"[""Phone""]",745.4,{},266319,0,North America +2024-12-12,41798,2581,"[""Wireless Mouse"", ""Phone""]",2517.68,"{""seasonal"": ""30%""}",205941,0,South America +2023-09-22,41799,5493,"[""Wireless Mouse"", ""Tablet""]",1346.53,{},225833,0,South America +2023-09-03,41800,8196,"[""Charger"", ""Laptop""]",1555.51,{},109287,0,Asia +2024-08-27,41801,8373,"[""Laptop"", ""Headphones""]",2612.7,"{"""": ""23%""}",257416,0,Europe +2024-12-16,41802,5067,"[""Phone"", ""Charger""]",777.65,{},115037,0,North America +2024-07-21,41803,4773,"[""Laptop"", ""Tablet"", ""Monitor""]",2795.63,"{""seasonal"": ""6%""}",261408,1,South America +2023-11-20,41804,9231,"[""Tablet""]",1695.58,"{""loyalty"": ""12%""}",204292,0,Europe +2023-12-11,41805,6728,"[""Tablet"", ""Monitor""]",1363.11,"{""promo"": ""30%""}",207374,1,North America +2023-06-12,41806,806,"[""Charger""]",3303.35,{},124275,0,Europe +2023-04-12,41807,6062,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4438.48,{},108865,1,Africa +2023-05-12,41808,1687,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3853.33,"{""promo"": ""25%""}",262250,1,Europe +2023-02-21,41809,1470,"[""Charger""]",3627.55,{},259895,0,South America +2023-12-18,41810,5612,"[""Headphones""]",1697.76,{},107502,0,Asia +2024-01-17,41811,876,"[""Laptop""]",1626.11,"{"""": ""18%""}",157209,1,Asia +2023-05-28,41812,9403,"[""Keyboard""]",943.46,"{""seasonal"": ""29%""}",130745,0,Asia +2023-07-27,41813,8787,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4523.11,"{""promo"": ""14%""}",2463,1,Asia +2023-01-12,41814,918,"[""Phone"", ""Monitor"", ""Keyboard""]",1228.04,{},79905,1,Europe +2024-07-02,41815,6315,"[""Tablet""]",2054.43,{},217242,1,North America +2023-06-17,41816,2496,"[""Wireless Mouse"", ""Monitor""]",3618.3,{},195220,0,Asia +2023-10-05,41817,6385,"[""Charger"", ""Headphones"", ""Laptop""]",459.37,{},186417,1,North America +2024-06-24,41818,5539,"[""Laptop""]",2791.55,{},90307,0,Asia +2023-12-26,41819,2918,"[""Laptop"", ""Monitor""]",2841.03,{},69293,1,South America +2023-05-17,41820,9807,"[""Keyboard"", ""Headphones""]",2289.15,{},106951,0,North America +2023-06-01,41821,9132,"[""Wireless Mouse""]",4009.3,"{""promo"": ""17%""}",289212,0,Africa +2024-04-23,41822,3968,"[""Monitor"", ""Headphones"", ""Phone""]",2350.7,{},207319,1,Asia +2023-08-03,41823,5318,"[""Keyboard""]",4949.83,"{""promo"": ""27%""}",46937,0,North America +2023-04-17,41824,6371,"[""Keyboard"", ""Headphones"", ""Monitor""]",481.2,{},191641,0,Asia +2024-10-29,41825,8135,"[""Keyboard""]",3878.33,{},248511,1,Asia +2023-10-09,41826,9859,"[""Wireless Mouse""]",551.96,"{""seasonal"": ""21%""}",74222,1,South America +2024-01-22,41827,2227,"[""Headphones"", ""Laptop""]",4897.5,{},198825,1,Asia +2023-05-18,41828,3452,"[""Monitor"", ""Keyboard""]",2384.38,"{""seasonal"": ""19%""}",172996,1,Asia +2024-07-22,41829,5648,"[""Charger""]",702.98,{},291438,0,South America +2024-10-23,41830,6107,"[""Monitor"", ""Headphones""]",2012.87,{},151672,0,South America +2023-07-21,41831,6975,"[""Charger""]",4085.63,{},28611,1,Europe +2023-12-30,41832,7522,"[""Keyboard""]",1710.18,"{""promo"": ""20%""}",204225,1,South America +2024-10-27,41833,1702,"[""Keyboard"", ""Phone"", ""Charger""]",4455.05,"{""promo"": ""19%""}",267802,1,Africa +2024-02-03,41834,8323,"[""Tablet"", ""Phone""]",221.41,{},168664,1,North America +2023-10-12,41835,8932,"[""Wireless Mouse"", ""Tablet""]",1526.99,{},284380,1,Europe +2023-04-10,41836,6964,"[""Tablet"", ""Keyboard"", ""Phone""]",2155.16,{},178893,1,North America +2023-03-19,41837,8848,"[""Laptop"", ""Tablet""]",933.77,{},234982,0,Africa +2023-01-03,41838,9774,"[""Charger"", ""Tablet"", ""Monitor""]",2475.41,"{""promo"": ""20%""}",197980,0,Asia +2024-01-08,41839,6117,"[""Phone""]",76.27,{},197948,0,Europe +2023-04-27,41840,4573,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3390.71,{},212504,1,South America +2023-12-16,41841,4702,"[""Laptop"", ""Monitor""]",4551.93,{},146639,1,Africa +2023-07-16,41842,2488,"[""Monitor"", ""Tablet"", ""Headphones""]",3409.38,{},90600,0,North America +2024-08-26,41843,3836,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2086.45,"{"""": ""20%""}",57792,1,Africa +2023-08-29,41844,7351,"[""Monitor""]",3596.05,{},230563,1,Africa +2024-08-31,41845,6700,"[""Monitor"", ""Keyboard"", ""Phone""]",402.75,"{""promo"": ""24%""}",123339,1,Asia +2024-02-03,41846,9498,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4172.71,{},177803,0,Asia +2024-04-11,41847,8446,"[""Headphones"", ""Tablet""]",1854.98,{},77409,0,Europe +2024-08-01,41848,6282,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",840.94,{},13289,1,Africa +2023-07-06,41849,7857,"[""Keyboard"", ""Phone""]",747.43,{},103155,0,Europe +2024-07-25,41850,1485,"[""Charger""]",2701.49,"{""promo"": ""5%""}",153211,0,Asia +2024-08-10,41851,4873,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3824.94,{},297586,0,Africa +2024-09-10,41852,950,"[""Phone"", ""Tablet"", ""Headphones""]",1008.81,"{""loyalty"": ""18%""}",28925,0,South America +2023-04-23,41853,1912,"[""Laptop"", ""Phone"", ""Headphones""]",4812.06,"{"""": ""28%""}",89786,1,Africa +2024-11-06,41854,9989,"[""Tablet"", ""Keyboard"", ""Laptop""]",1714.46,"{"""": ""20%""}",221059,1,Europe +2024-12-03,41855,3160,"[""Phone"", ""Wireless Mouse""]",3143.18,"{""loyalty"": ""11%""}",143639,1,South America +2023-06-06,41856,3872,"[""Charger"", ""Keyboard""]",3144.73,"{""loyalty"": ""8%""}",108259,1,Africa +2024-01-04,41857,126,"[""Wireless Mouse"", ""Phone""]",863.29,"{""loyalty"": ""7%""}",224995,1,Asia +2023-05-24,41858,3341,"[""Monitor"", ""Tablet""]",1548.44,"{""seasonal"": ""10%""}",175089,0,Africa +2023-02-27,41859,4982,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4165.35,"{"""": ""29%""}",138689,0,South America +2024-04-17,41860,6147,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4800.49,"{""loyalty"": ""10%""}",77547,0,Asia +2024-07-06,41861,9355,"[""Monitor""]",2178.97,{},14062,0,South America +2024-04-05,41862,9489,"[""Monitor""]",977.41,"{""seasonal"": ""17%""}",146722,1,Africa +2023-05-27,41863,2699,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",172.08,"{""loyalty"": ""12%""}",226366,1,Africa +2023-12-22,41864,8993,"[""Charger""]",2178.46,"{""loyalty"": ""15%""}",151718,1,Asia +2023-09-04,41865,1098,"[""Charger"", ""Laptop""]",448.52,"{""seasonal"": ""20%""}",33599,1,Asia +2024-04-03,41866,5907,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1281.3,"{"""": ""20%""}",287660,0,South America +2024-04-14,41867,534,"[""Phone"", ""Charger""]",737.82,"{"""": ""13%""}",1038,0,Africa +2024-10-12,41868,2718,"[""Wireless Mouse""]",1711.36,"{""loyalty"": ""10%""}",16423,0,Asia +2024-02-23,41869,3961,"[""Charger"", ""Monitor""]",2320.64,"{""promo"": ""22%""}",203251,1,South America +2024-11-08,41870,6713,"[""Charger""]",2009.51,{},177842,0,South America +2024-07-09,41871,4223,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1015.28,{},104374,1,Asia +2024-11-15,41872,7904,"[""Monitor"", ""Headphones""]",3698.31,{},76793,0,Europe +2024-08-29,41873,6992,"[""Tablet""]",2546.01,"{"""": ""6%""}",116289,0,Asia +2023-09-06,41874,9809,"[""Charger"", ""Headphones"", ""Keyboard""]",1365.35,"{""loyalty"": ""20%""}",83721,0,Asia +2024-08-05,41875,9434,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4904.41,{},128119,1,Asia +2024-06-27,41876,207,"[""Tablet"", ""Charger""]",159.34,"{"""": ""20%""}",256918,1,North America +2023-06-29,41877,4001,"[""Tablet""]",3711.11,"{""loyalty"": ""12%""}",5786,1,Asia +2023-07-16,41878,3870,"[""Tablet""]",945.64,{},185260,1,Asia +2023-10-17,41879,5449,"[""Laptop"", ""Headphones""]",249.59,{},269211,1,Africa +2024-12-05,41880,2025,"[""Tablet""]",403.11,{},237088,0,South America +2024-05-24,41881,516,"[""Monitor"", ""Keyboard"", ""Phone""]",1477.32,{},247064,1,North America +2023-06-03,41882,3957,"[""Phone"", ""Headphones"", ""Monitor""]",4790.62,{},4808,0,Europe +2024-02-23,41883,4561,"[""Keyboard"", ""Wireless Mouse""]",67.92,{},50005,0,Asia +2024-08-05,41884,3498,"[""Monitor"", ""Keyboard""]",696.3,{},49665,1,Africa +2023-10-24,41885,74,"[""Wireless Mouse""]",843.32,{},246123,0,South America +2023-08-16,41886,820,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3877.88,"{""loyalty"": ""9%""}",198358,0,South America +2023-10-04,41887,5672,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2612.94,"{""loyalty"": ""15%""}",182048,0,Europe +2024-02-06,41888,9516,"[""Keyboard""]",2307.74,{},75576,0,Africa +2024-06-30,41889,3915,"[""Wireless Mouse"", ""Laptop""]",2716.48,"{""loyalty"": ""23%""}",290450,1,South America +2024-10-17,41890,6704,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4569.96,{},298437,1,North America +2024-04-17,41891,3844,"[""Charger"", ""Wireless Mouse""]",3585.51,{},141772,0,South America +2023-06-29,41892,5125,"[""Charger""]",488.42,{},187955,0,Asia +2023-03-08,41893,606,"[""Monitor"", ""Headphones""]",2593.44,{},43424,0,North America +2023-04-18,41894,5288,"[""Keyboard"", ""Laptop""]",4051.52,"{"""": ""14%""}",138694,0,South America +2024-07-28,41895,2861,"[""Charger""]",3523.75,{},129642,0,Africa +2024-01-06,41896,1643,"[""Tablet"", ""Phone""]",1738.67,{},51600,0,Europe +2024-05-08,41897,2656,"[""Headphones"", ""Keyboard"", ""Tablet""]",4844.15,"{""loyalty"": ""7%""}",109999,0,Asia +2023-10-09,41898,1436,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3956.44,"{"""": ""11%""}",7520,0,Africa +2023-05-12,41899,6088,"[""Phone""]",3158.72,"{""seasonal"": ""6%""}",285982,1,North America +2023-10-18,41900,4812,"[""Keyboard"", ""Phone"", ""Charger""]",4684.92,"{""loyalty"": ""20%""}",85208,1,North America +2023-02-25,41901,6950,"[""Laptop"", ""Tablet"", ""Keyboard""]",3930.76,{},22258,0,Europe +2023-06-07,41902,859,"[""Monitor"", ""Tablet"", ""Headphones""]",3728.03,{},134447,1,South America +2023-09-20,41903,160,"[""Keyboard"", ""Phone""]",4014.02,{},65598,0,Asia +2023-04-15,41904,7207,"[""Charger"", ""Keyboard""]",2413.16,{},210270,0,Europe +2023-08-20,41905,1168,"[""Tablet"", ""Phone""]",4908.89,"{""seasonal"": ""9%""}",81835,0,Africa +2023-01-09,41906,1629,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2811.22,"{""loyalty"": ""16%""}",1248,0,North America +2024-06-15,41907,687,"[""Tablet""]",4314.0,{},176483,1,Asia +2024-07-16,41908,5034,"[""Laptop"", ""Phone""]",2575.09,"{""promo"": ""29%""}",273038,0,Asia +2024-01-10,41909,9465,"[""Wireless Mouse"", ""Tablet""]",4806.45,"{""loyalty"": ""23%""}",36652,1,South America +2023-06-30,41910,8614,"[""Tablet"", ""Headphones""]",4914.09,"{""promo"": ""16%""}",47101,1,South America +2023-02-23,41911,1122,"[""Charger""]",2008.73,"{""seasonal"": ""22%""}",272458,0,Asia +2023-06-11,41912,1383,"[""Charger"", ""Laptop""]",1261.77,"{""seasonal"": ""8%""}",181304,1,North America +2024-12-10,41913,2243,"[""Phone"", ""Laptop"", ""Charger""]",323.65,"{"""": ""20%""}",23394,1,Europe +2023-03-15,41914,7872,"[""Laptop"", ""Tablet""]",3332.13,{},230190,1,Africa +2023-12-12,41915,2750,"[""Charger""]",4633.23,"{"""": ""23%""}",31361,1,Africa +2024-07-30,41916,1146,"[""Charger"", ""Phone"", ""Keyboard""]",63.75,"{""promo"": ""15%""}",253857,1,North America +2024-06-11,41917,104,"[""Phone"", ""Laptop"", ""Headphones""]",3025.11,"{""seasonal"": ""15%""}",191340,0,Europe +2023-06-24,41918,5672,"[""Phone"", ""Charger""]",831.52,"{""loyalty"": ""11%""}",208803,1,Africa +2024-08-12,41919,1910,"[""Tablet""]",3800.17,"{""seasonal"": ""9%""}",222613,1,Africa +2024-06-14,41920,9374,"[""Laptop"", ""Headphones"", ""Keyboard""]",1348.42,"{""seasonal"": ""26%""}",21939,1,North America +2023-09-12,41921,6636,"[""Wireless Mouse"", ""Monitor""]",1940.41,{},258729,1,Africa +2023-02-23,41922,2920,"[""Keyboard"", ""Charger""]",310.75,"{""seasonal"": ""7%""}",164019,0,Africa +2024-03-04,41923,5122,"[""Charger"", ""Keyboard""]",4293.52,"{""seasonal"": ""14%""}",294610,0,Europe +2023-03-05,41924,2102,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1844.34,{},51112,0,North America +2024-02-08,41925,5160,"[""Tablet""]",2805.44,"{""promo"": ""30%""}",126056,1,South America +2023-09-22,41926,7070,"[""Laptop""]",2556.77,{},87682,0,Asia +2023-08-22,41927,2259,"[""Wireless Mouse""]",1149.04,{},222973,1,North America +2024-06-28,41928,1799,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",59.74,"{""loyalty"": ""30%""}",214640,0,Europe +2023-02-14,41929,4885,"[""Phone""]",3958.8,"{""loyalty"": ""10%""}",95214,1,Africa +2024-10-04,41930,7964,"[""Laptop""]",537.29,{},230712,1,Europe +2024-07-01,41931,6352,"[""Phone"", ""Tablet""]",4855.82,{},86794,1,North America +2024-09-24,41932,564,"[""Laptop""]",1170.72,"{""seasonal"": ""30%""}",218061,0,South America +2024-11-09,41933,4891,"[""Wireless Mouse"", ""Laptop""]",1753.07,"{""loyalty"": ""27%""}",170272,0,South America +2023-04-03,41934,4281,"[""Keyboard"", ""Wireless Mouse""]",3209.42,"{"""": ""21%""}",8648,0,North America +2024-01-27,41935,1346,"[""Monitor""]",1487.75,"{"""": ""29%""}",296194,1,Asia +2024-10-18,41936,8347,"[""Wireless Mouse"", ""Phone""]",828.21,"{""promo"": ""19%""}",55058,1,South America +2023-09-20,41937,9997,"[""Monitor"", ""Charger""]",2952.99,{},218009,1,North America +2024-04-10,41938,3926,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",165.41,"{""promo"": ""18%""}",128866,0,Africa +2023-12-10,41939,2344,"[""Phone""]",748.88,{},111836,0,Europe +2024-01-28,41940,6794,"[""Monitor"", ""Keyboard""]",4554.42,{},44164,1,Africa +2024-12-11,41941,9748,"[""Charger""]",3038.84,"{""seasonal"": ""9%""}",150594,0,Europe +2023-12-17,41942,2982,"[""Keyboard""]",700.11,"{""promo"": ""23%""}",229594,1,Europe +2023-04-02,41943,1064,"[""Headphones"", ""Monitor""]",410.04,"{""promo"": ""26%""}",161760,1,Asia +2023-03-14,41944,6685,"[""Laptop"", ""Monitor"", ""Headphones""]",3809.06,"{""seasonal"": ""15%""}",3606,1,Europe +2024-08-20,41945,5581,"[""Phone""]",3027.91,"{""promo"": ""11%""}",280972,1,Europe +2024-12-12,41946,9739,"[""Phone"", ""Monitor"", ""Laptop""]",235.06,"{""seasonal"": ""24%""}",65930,1,Africa +2023-04-11,41947,5187,"[""Phone""]",1847.03,{},48405,1,North America +2024-04-15,41948,7135,"[""Wireless Mouse""]",3861.93,"{""loyalty"": ""14%""}",42967,1,South America +2023-09-10,41949,2640,"[""Laptop"", ""Charger"", ""Headphones""]",911.44,"{""loyalty"": ""26%""}",5071,0,South America +2023-01-05,41950,5846,"[""Tablet"", ""Charger""]",1726.98,"{"""": ""21%""}",3584,0,Europe +2024-03-31,41951,9629,"[""Headphones"", ""Keyboard"", ""Tablet""]",3613.96,{},55573,1,Africa +2023-08-17,41952,3562,"[""Tablet""]",260.83,"{""promo"": ""10%""}",76921,1,Europe +2023-02-26,41953,4339,"[""Wireless Mouse""]",1146.61,"{""promo"": ""9%""}",225496,1,Europe +2024-03-09,41954,4135,"[""Tablet"", ""Charger""]",4465.99,"{"""": ""10%""}",214463,1,Europe +2023-11-07,41955,6901,"[""Phone"", ""Headphones"", ""Keyboard""]",1732.97,"{"""": ""26%""}",124130,1,Africa +2024-07-21,41956,1856,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1888.37,{},173130,0,Europe +2023-12-23,41957,8585,"[""Keyboard"", ""Laptop"", ""Phone""]",2874.9,{},265717,0,Africa +2023-11-24,41958,9929,"[""Laptop""]",3457.26,{},15854,0,Asia +2024-11-04,41959,9324,"[""Phone""]",3806.47,"{""seasonal"": ""25%""}",43917,0,South America +2024-06-01,41960,7492,"[""Phone"", ""Charger""]",4752.34,"{""seasonal"": ""8%""}",125439,0,North America +2024-01-24,41961,9989,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",577.15,{},73513,1,Asia +2024-08-20,41962,4852,"[""Phone""]",1597.29,"{""promo"": ""27%""}",53959,0,Europe +2023-03-31,41963,2979,"[""Phone"", ""Wireless Mouse""]",1767.41,"{""loyalty"": ""7%""}",267573,0,Africa +2024-01-08,41964,8313,"[""Monitor"", ""Headphones"", ""Phone""]",2043.98,{},77743,0,Asia +2024-01-15,41965,288,"[""Phone"", ""Headphones"", ""Laptop""]",4239.43,"{""promo"": ""14%""}",228777,0,South America +2023-05-19,41966,7673,"[""Laptop""]",3609.23,"{""promo"": ""18%""}",185242,0,Asia +2024-03-10,41967,5145,"[""Tablet"", ""Laptop"", ""Headphones""]",4935.06,{},181116,1,Asia +2023-01-16,41968,3761,"[""Wireless Mouse""]",4792.05,"{""loyalty"": ""18%""}",188019,1,South America +2024-06-24,41969,6771,"[""Keyboard"", ""Laptop"", ""Tablet""]",4999.84,"{"""": ""18%""}",223701,0,Africa +2024-02-01,41970,8001,"[""Phone"", ""Headphones""]",1776.13,"{"""": ""28%""}",78155,1,North America +2024-06-16,41971,2104,"[""Charger""]",4636.97,"{""promo"": ""15%""}",56806,1,South America +2023-03-18,41972,1556,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3013.34,"{""loyalty"": ""23%""}",6380,0,Europe +2023-10-30,41973,7556,"[""Keyboard"", ""Wireless Mouse""]",2477.31,"{""promo"": ""8%""}",81893,1,North America +2023-10-29,41974,2133,"[""Monitor""]",4163.43,{},115867,0,Asia +2024-01-20,41975,6686,"[""Monitor"", ""Charger""]",4797.51,{},293835,0,South America +2024-04-10,41976,1090,"[""Keyboard"", ""Phone"", ""Headphones""]",3116.38,"{""loyalty"": ""13%""}",52499,0,South America +2024-08-04,41977,4673,"[""Keyboard""]",443.06,"{"""": ""24%""}",204699,1,North America +2023-08-18,41978,1749,"[""Wireless Mouse""]",3303.37,{},76845,0,North America +2023-07-21,41979,4947,"[""Tablet"", ""Laptop"", ""Headphones""]",3139.41,{},122984,0,Asia +2024-07-03,41980,5039,"[""Charger""]",4224.14,{},65932,1,Africa +2023-02-06,41981,8824,"[""Wireless Mouse"", ""Tablet""]",812.93,"{"""": ""8%""}",206848,0,Africa +2024-08-08,41982,8211,"[""Headphones"", ""Tablet"", ""Keyboard""]",74.74,"{"""": ""14%""}",68502,1,North America +2023-08-27,41983,9027,"[""Phone"", ""Charger""]",4294.38,"{""loyalty"": ""20%""}",247630,0,Europe +2024-11-23,41984,1533,"[""Keyboard""]",3360.39,{},178727,1,Africa +2024-08-31,41985,6946,"[""Tablet"", ""Headphones"", ""Keyboard""]",461.18,{},220295,0,Europe +2023-01-28,41986,3808,"[""Tablet""]",1730.45,"{""promo"": ""29%""}",292293,1,North America +2023-09-12,41987,3932,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",689.17,{},23377,1,Europe +2023-03-15,41988,2870,"[""Monitor""]",4604.86,"{""seasonal"": ""15%""}",145547,0,North America +2023-08-06,41989,922,"[""Phone"", ""Keyboard"", ""Headphones""]",1633.48,{},81603,0,Europe +2023-09-07,41990,3816,"[""Headphones""]",51.39,{},51901,1,Asia +2024-09-15,41991,3219,"[""Keyboard"", ""Monitor"", ""Tablet""]",3521.05,{},12376,1,Asia +2024-11-22,41992,47,"[""Tablet""]",3111.81,"{"""": ""11%""}",126689,1,Africa +2023-05-16,41993,9392,"[""Tablet"", ""Charger""]",3163.07,{},262378,0,South America +2024-11-10,41994,5779,"[""Wireless Mouse"", ""Charger""]",1943.16,"{"""": ""18%""}",117951,0,Africa +2023-11-22,41995,6220,"[""Wireless Mouse""]",3545.57,{},21703,1,North America +2024-09-24,41996,5405,"[""Laptop""]",1206.71,{},121718,0,North America +2024-08-19,41997,3901,"[""Tablet""]",2344.12,{},122019,1,South America +2023-04-26,41998,606,"[""Laptop""]",112.94,{},79816,0,Europe +2023-08-21,41999,5313,"[""Keyboard"", ""Phone""]",2143.63,"{"""": ""8%""}",112937,0,Europe +2024-04-16,42000,2636,"[""Headphones"", ""Monitor""]",722.9,"{""promo"": ""20%""}",276459,0,Europe +2024-12-04,42001,9159,"[""Headphones""]",2668.34,{},167856,1,Africa +2023-12-08,42002,9485,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",546.07,{},198987,1,North America +2024-11-23,42003,6077,"[""Wireless Mouse""]",697.85,{},180553,1,North America +2024-05-24,42004,8016,"[""Phone"", ""Tablet"", ""Headphones""]",3105.41,{},205146,1,Asia +2023-12-11,42005,9807,"[""Laptop"", ""Charger""]",788.17,{},274972,0,Africa +2024-03-08,42006,3834,"[""Monitor""]",1140.19,{},110153,0,Africa +2024-10-10,42007,2639,"[""Laptop""]",4223.5,"{"""": ""11%""}",126141,1,Asia +2023-06-04,42008,4127,"[""Phone"", ""Charger"", ""Headphones""]",1655.06,"{""promo"": ""30%""}",11337,0,Asia +2024-07-19,42009,7152,"[""Charger""]",3499.33,{},157415,0,South America +2024-08-28,42010,8180,"[""Charger"", ""Phone""]",2732.67,{},222182,0,Africa +2023-07-29,42011,9366,"[""Headphones""]",3429.67,"{""promo"": ""20%""}",190974,1,North America +2023-10-31,42012,595,"[""Wireless Mouse""]",2586.09,"{"""": ""9%""}",270447,0,South America +2024-06-30,42013,2100,"[""Wireless Mouse"", ""Headphones""]",1259.5,{},55526,0,Europe +2024-07-05,42014,482,"[""Tablet""]",1854.4,"{""seasonal"": ""13%""}",8913,0,South America +2024-04-06,42015,4329,"[""Headphones""]",4856.57,{},199921,1,Africa +2023-05-29,42016,2815,"[""Laptop"", ""Tablet""]",3362.46,{},12662,1,Europe +2023-04-27,42017,7024,"[""Monitor""]",2814.97,{},154999,0,Asia +2023-01-02,42018,2463,"[""Tablet"", ""Keyboard"", ""Headphones""]",329.37,"{""promo"": ""12%""}",248476,1,Africa +2024-01-26,42019,2548,"[""Headphones""]",907.01,{},259554,0,South America +2024-05-30,42020,7162,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3639.24,"{""seasonal"": ""8%""}",17664,0,South America +2023-07-30,42021,5924,"[""Tablet""]",931.21,"{"""": ""7%""}",226314,0,Asia +2024-06-06,42022,7832,"[""Keyboard"", ""Laptop""]",695.78,"{"""": ""28%""}",259107,1,Europe +2023-05-11,42023,5054,"[""Tablet"", ""Headphones"", ""Charger""]",2078.21,{},204353,1,North America +2024-08-17,42024,944,"[""Monitor"", ""Wireless Mouse""]",578.75,{},259236,0,Africa +2023-01-26,42025,7188,"[""Laptop""]",375.67,{},162567,1,Europe +2023-02-23,42026,4800,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",607.47,"{""seasonal"": ""25%""}",140357,1,South America +2023-11-28,42027,2654,"[""Phone""]",3192.99,"{""loyalty"": ""23%""}",186030,1,South America +2024-09-26,42028,4805,"[""Phone""]",1340.81,{},4677,0,Asia +2024-03-04,42029,6161,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2002.55,"{""seasonal"": ""6%""}",252150,1,Europe +2024-02-09,42030,1866,"[""Charger"", ""Monitor""]",3885.38,"{"""": ""14%""}",108533,0,North America +2024-06-30,42031,6718,"[""Headphones"", ""Tablet""]",1570.52,"{""loyalty"": ""27%""}",265718,0,South America +2023-05-01,42032,1249,"[""Wireless Mouse"", ""Keyboard""]",594.18,"{""promo"": ""18%""}",275428,1,Asia +2024-08-06,42033,8639,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2686.77,{},219577,1,Africa +2024-09-10,42034,5425,"[""Wireless Mouse""]",3516.77,{},105356,0,Africa +2024-06-26,42035,8029,"[""Charger""]",4300.46,{},264553,1,Europe +2024-08-30,42036,7170,"[""Wireless Mouse""]",1813.9,"{""seasonal"": ""28%""}",63454,1,North America +2024-12-21,42037,5312,"[""Phone"", ""Tablet""]",4864.41,"{""seasonal"": ""10%""}",82607,1,North America +2023-05-20,42038,7749,"[""Phone"", ""Monitor""]",4422.41,"{""loyalty"": ""24%""}",263392,0,Europe +2023-01-20,42039,6582,"[""Monitor"", ""Laptop"", ""Phone""]",4638.26,"{"""": ""30%""}",102603,1,Asia +2024-05-20,42040,3293,"[""Phone""]",951.05,"{"""": ""20%""}",90014,0,South America +2024-12-02,42041,6864,"[""Keyboard""]",4976.45,{},288695,0,North America +2023-03-13,42042,8268,"[""Laptop"", ""Headphones""]",2985.64,{},128274,0,Africa +2023-01-24,42043,885,"[""Phone""]",873.57,{},270502,1,South America +2024-11-23,42044,8105,"[""Wireless Mouse"", ""Laptop""]",3481.4,{},272042,0,Europe +2023-06-19,42045,9645,"[""Headphones""]",1010.51,"{""loyalty"": ""28%""}",43927,0,North America +2024-05-07,42046,9826,"[""Wireless Mouse"", ""Tablet""]",426.27,{},132083,0,North America +2024-07-21,42047,2719,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4450.49,"{""loyalty"": ""8%""}",176449,0,Europe +2023-10-09,42048,2338,"[""Charger""]",268.76,"{""promo"": ""13%""}",123702,0,North America +2024-01-18,42049,8955,"[""Wireless Mouse""]",3165.62,"{""promo"": ""15%""}",233415,0,South America +2023-11-29,42050,2554,"[""Charger""]",2525.0,{},232861,0,South America +2023-09-01,42051,6265,"[""Phone"", ""Monitor""]",4708.93,{},254686,0,Asia +2023-10-01,42052,8616,"[""Wireless Mouse"", ""Headphones""]",4535.89,"{""loyalty"": ""15%""}",162694,1,North America +2024-07-25,42053,4022,"[""Charger"", ""Monitor""]",1570.51,{},175374,0,North America +2023-05-21,42054,7456,"[""Keyboard"", ""Headphones"", ""Phone""]",2772.5,"{"""": ""25%""}",278827,1,North America +2024-10-17,42055,9662,"[""Phone""]",1404.64,"{""promo"": ""14%""}",173271,0,Africa +2023-07-14,42056,767,"[""Headphones"", ""Charger""]",2675.37,{},131749,0,Africa +2023-02-11,42057,2859,"[""Laptop"", ""Keyboard"", ""Tablet""]",2292.41,"{"""": ""24%""}",184522,0,Africa +2023-11-13,42058,3099,"[""Laptop"", ""Monitor""]",1151.17,{},117063,1,South America +2024-05-31,42059,7022,"[""Phone"", ""Laptop""]",4323.63,{},179165,1,South America +2023-01-30,42060,6731,"[""Monitor"", ""Laptop"", ""Phone""]",1698.96,"{""promo"": ""9%""}",135363,1,Asia +2023-05-21,42061,1840,"[""Keyboard"", ""Laptop"", ""Tablet""]",3244.01,"{""promo"": ""12%""}",118458,1,South America +2024-10-20,42062,559,"[""Laptop"", ""Keyboard"", ""Phone""]",1341.74,"{""promo"": ""9%""}",266518,1,Europe +2024-08-30,42063,8596,"[""Keyboard"", ""Charger"", ""Headphones""]",671.46,{},108596,0,Asia +2023-08-29,42064,537,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",738.78,{},22157,0,Europe +2024-09-08,42065,5915,"[""Laptop"", ""Headphones""]",1529.74,"{""seasonal"": ""30%""}",194558,1,North America +2023-10-05,42066,4064,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2321.93,"{""seasonal"": ""13%""}",36369,0,Africa +2023-06-01,42067,2595,"[""Keyboard"", ""Phone"", ""Tablet""]",977.24,"{"""": ""13%""}",52262,0,North America +2024-03-16,42068,3928,"[""Keyboard"", ""Laptop""]",1482.17,"{""seasonal"": ""15%""}",193750,1,Asia +2024-07-02,42069,3869,"[""Laptop"", ""Keyboard""]",3101.18,{},173453,1,Africa +2024-09-02,42070,5486,"[""Charger"", ""Tablet"", ""Monitor""]",3298.46,{},76606,0,Africa +2024-01-02,42071,4522,"[""Monitor""]",4573.71,"{""loyalty"": ""28%""}",94203,1,South America +2024-09-10,42072,4078,"[""Wireless Mouse""]",3098.97,"{"""": ""12%""}",257844,1,Europe +2023-03-05,42073,4065,"[""Tablet""]",4752.17,"{""loyalty"": ""19%""}",203961,1,Africa +2023-12-19,42074,2890,"[""Monitor""]",994.3,{},15026,0,Africa +2023-12-01,42075,1778,"[""Laptop""]",1389.96,"{""loyalty"": ""16%""}",2695,1,North America +2023-07-20,42076,1727,"[""Headphones"", ""Laptop"", ""Tablet""]",1816.74,"{""seasonal"": ""16%""}",32041,0,North America +2024-10-14,42077,6985,"[""Keyboard"", ""Headphones"", ""Phone""]",1457.09,{},246591,0,Asia +2023-02-24,42078,3773,"[""Keyboard""]",4464.12,"{""loyalty"": ""9%""}",199640,0,North America +2024-02-02,42079,3340,"[""Phone"", ""Laptop"", ""Charger""]",1973.51,{},266529,1,North America +2023-12-02,42080,4340,"[""Tablet"", ""Charger""]",1138.5,"{""promo"": ""12%""}",54749,0,South America +2024-02-02,42081,6827,"[""Monitor""]",1942.61,{},160626,0,Europe +2024-10-29,42082,8725,"[""Laptop"", ""Keyboard"", ""Charger""]",4935.83,{},89818,0,Europe +2023-05-21,42083,1317,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",841.06,"{""seasonal"": ""25%""}",85807,0,Europe +2024-01-07,42084,1341,"[""Headphones"", ""Charger"", ""Laptop""]",3854.56,"{""loyalty"": ""5%""}",286291,0,Asia +2023-01-23,42085,5280,"[""Monitor"", ""Phone""]",3266.79,{},267187,1,Europe +2024-01-22,42086,1239,"[""Laptop""]",879.0,{},33130,0,Europe +2024-12-07,42087,7145,"[""Laptop"", ""Phone""]",3507.15,{},238050,0,Africa +2023-10-13,42088,492,"[""Monitor"", ""Keyboard""]",4017.96,"{""seasonal"": ""26%""}",61937,0,Asia +2024-02-12,42089,3784,"[""Keyboard""]",2335.03,{},203084,0,Europe +2023-03-03,42090,2427,"[""Monitor""]",3610.66,"{""seasonal"": ""18%""}",41911,0,Africa +2023-07-26,42091,6507,"[""Headphones"", ""Wireless Mouse""]",1247.47,{},296520,1,Africa +2024-01-13,42092,2577,"[""Laptop"", ""Monitor"", ""Tablet""]",100.89,"{""promo"": ""14%""}",90463,0,Africa +2024-02-29,42093,5666,"[""Tablet"", ""Laptop"", ""Headphones""]",514.33,{},204986,1,Asia +2024-05-01,42094,144,"[""Wireless Mouse""]",4676.68,{},74496,0,Asia +2023-09-19,42095,5004,"[""Charger"", ""Keyboard""]",639.95,{},279511,0,North America +2024-12-21,42096,21,"[""Charger"", ""Headphones"", ""Keyboard""]",4525.43,"{""loyalty"": ""20%""}",99505,1,Asia +2023-11-27,42097,7139,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4604.1,{},109773,0,South America +2024-10-31,42098,1267,"[""Keyboard"", ""Monitor""]",1819.83,"{""promo"": ""19%""}",263586,0,Africa +2024-12-15,42099,718,"[""Monitor"", ""Keyboard"", ""Charger""]",2963.7,"{"""": ""13%""}",3672,0,Asia +2023-09-26,42100,3011,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2633.82,{},77247,1,Asia +2024-06-05,42101,3955,"[""Headphones"", ""Laptop"", ""Tablet""]",1407.35,{},157989,0,Africa +2024-08-29,42102,2473,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",586.75,"{"""": ""22%""}",37597,0,North America +2023-10-25,42103,8991,"[""Tablet"", ""Keyboard"", ""Laptop""]",3416.06,{},205167,0,North America +2024-10-13,42104,506,"[""Tablet"", ""Headphones"", ""Charger""]",765.86,"{"""": ""22%""}",217018,1,Asia +2024-02-29,42105,8721,"[""Monitor"", ""Charger"", ""Laptop""]",4388.18,"{""loyalty"": ""29%""}",176160,1,Europe +2024-05-07,42106,6788,"[""Laptop""]",2614.98,{},201939,1,Europe +2023-07-10,42107,2562,"[""Monitor"", ""Wireless Mouse""]",1336.8,{},174059,0,South America +2024-04-07,42108,5818,"[""Charger""]",663.31,{},95206,1,North America +2024-07-22,42109,2869,"[""Laptop"", ""Tablet""]",2778.98,{},231906,0,Africa +2023-02-25,42110,4429,"[""Laptop""]",108.05,{},105460,0,South America +2023-06-08,42111,2189,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2768.83,"{""seasonal"": ""17%""}",79256,0,North America +2024-06-02,42112,4105,"[""Tablet"", ""Phone"", ""Monitor""]",4266.4,"{""loyalty"": ""12%""}",49677,1,Asia +2024-09-06,42113,4848,"[""Phone""]",4459.28,"{""loyalty"": ""6%""}",181362,0,North America +2023-11-04,42114,9154,"[""Charger"", ""Keyboard"", ""Tablet""]",3398.13,{},15256,1,North America +2024-12-17,42115,7592,"[""Laptop"", ""Wireless Mouse""]",1438.89,{},195762,0,Asia +2023-02-25,42116,5055,"[""Charger"", ""Headphones"", ""Tablet""]",1029.38,{},270624,0,Africa +2024-10-09,42117,7667,"[""Headphones"", ""Keyboard"", ""Tablet""]",1705.33,{},180642,0,Asia +2023-03-18,42118,3881,"[""Wireless Mouse"", ""Tablet""]",2970.43,{},116115,0,North America +2023-02-09,42119,6577,"[""Tablet""]",4820.12,"{""promo"": ""13%""}",67551,1,South America +2024-07-03,42120,753,"[""Headphones"", ""Tablet"", ""Phone""]",4006.32,"{"""": ""7%""}",59903,0,Europe +2023-06-27,42121,2171,"[""Tablet""]",1033.27,{},282286,1,South America +2023-10-23,42122,8042,"[""Tablet"", ""Headphones""]",4925.67,{},139284,0,North America +2024-03-22,42123,2118,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1883.28,{},1376,0,South America +2023-08-21,42124,9827,"[""Monitor"", ""Tablet"", ""Keyboard""]",2228.66,"{"""": ""30%""}",72027,1,Europe +2024-08-28,42125,4130,"[""Phone"", ""Charger"", ""Laptop""]",3457.52,{},28718,1,Europe +2023-10-14,42126,9118,"[""Tablet"", ""Laptop""]",742.61,"{""promo"": ""13%""}",1054,0,Africa +2023-08-23,42127,6629,"[""Tablet"", ""Phone""]",4218.72,{},34498,0,South America +2024-01-10,42128,6390,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2010.67,"{""loyalty"": ""27%""}",30010,0,North America +2024-07-24,42129,2771,"[""Charger"", ""Laptop""]",674.06,{},162370,1,South America +2023-01-12,42130,5758,"[""Keyboard""]",2715.3,"{""seasonal"": ""20%""}",95149,1,North America +2024-03-28,42131,2464,"[""Tablet""]",4260.38,"{""loyalty"": ""28%""}",71473,1,Asia +2024-03-03,42132,4929,"[""Monitor""]",1908.72,{},186394,1,Africa +2024-06-10,42133,4774,"[""Headphones"", ""Laptop"", ""Keyboard""]",4758.64,{},3663,0,South America +2024-02-10,42134,4511,"[""Monitor"", ""Tablet"", ""Headphones""]",3999.22,"{""seasonal"": ""19%""}",136850,0,Africa +2024-07-14,42135,6757,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",268.16,"{""seasonal"": ""19%""}",160718,0,Africa +2023-07-07,42136,3362,"[""Keyboard"", ""Phone"", ""Headphones""]",2675.55,"{""loyalty"": ""20%""}",234888,0,Asia +2024-01-14,42137,818,"[""Headphones""]",527.37,{},149615,0,North America +2023-05-16,42138,4785,"[""Keyboard"", ""Wireless Mouse""]",4378.13,"{""seasonal"": ""22%""}",167232,1,South America +2023-05-05,42139,4754,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4336.87,{},7107,1,North America +2023-10-22,42140,1967,"[""Phone""]",4504.85,{},197857,1,North America +2024-02-29,42141,579,"[""Wireless Mouse"", ""Phone""]",1739.6,{},151101,0,South America +2023-08-05,42142,9197,"[""Laptop"", ""Headphones""]",4427.72,"{"""": ""21%""}",100311,1,North America +2023-02-10,42143,8560,"[""Wireless Mouse"", ""Keyboard""]",500.74,"{""promo"": ""17%""}",60038,0,North America +2024-11-10,42144,2518,"[""Keyboard"", ""Charger"", ""Monitor""]",323.24,"{"""": ""19%""}",160240,0,South America +2024-01-19,42145,7927,"[""Headphones""]",3806.2,{},14965,0,North America +2023-04-13,42146,6810,"[""Phone"", ""Laptop"", ""Monitor""]",885.25,{},165707,1,North America +2023-10-06,42147,5211,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4469.37,"{"""": ""28%""}",254508,1,South America +2024-07-25,42148,5592,"[""Wireless Mouse"", ""Keyboard""]",1369.44,"{""promo"": ""20%""}",157991,1,Asia +2023-12-20,42149,3808,"[""Headphones""]",4031.27,"{""seasonal"": ""16%""}",257943,1,Asia +2024-03-19,42150,5695,"[""Phone""]",2324.61,"{""promo"": ""16%""}",205727,1,North America +2024-03-21,42151,8769,"[""Laptop""]",4217.5,"{""seasonal"": ""17%""}",56585,0,Asia +2024-07-23,42152,7358,"[""Phone""]",1050.41,"{"""": ""25%""}",35954,1,South America +2024-11-23,42153,6201,"[""Phone""]",1008.97,"{""loyalty"": ""28%""}",286626,0,Asia +2024-09-17,42154,300,"[""Headphones"", ""Phone"", ""Monitor""]",2593.7,"{""seasonal"": ""7%""}",267838,0,Asia +2024-06-22,42155,3535,"[""Wireless Mouse"", ""Phone""]",1070.43,{},214657,1,Africa +2024-03-10,42156,9759,"[""Charger""]",1742.3,"{""seasonal"": ""21%""}",6943,0,South America +2024-12-02,42157,4367,"[""Charger"", ""Headphones"", ""Tablet""]",3297.52,"{""loyalty"": ""16%""}",92235,0,North America +2023-07-26,42158,6856,"[""Headphones"", ""Charger"", ""Tablet""]",2975.04,"{""seasonal"": ""26%""}",170288,1,North America +2023-01-05,42159,7693,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1087.09,{},9315,1,Asia +2023-07-25,42160,4947,"[""Tablet"", ""Monitor"", ""Keyboard""]",668.24,"{""loyalty"": ""13%""}",288210,1,North America +2024-11-18,42161,8421,"[""Keyboard""]",2727.84,{},176707,0,Europe +2023-03-24,42162,5374,"[""Keyboard"", ""Monitor"", ""Charger""]",4164.5,{},36110,1,Europe +2024-02-20,42163,2027,"[""Monitor""]",4892.25,{},185232,1,South America +2023-07-28,42164,5923,"[""Phone"", ""Headphones""]",1034.48,"{"""": ""13%""}",114715,1,Asia +2024-03-18,42165,6305,"[""Charger"", ""Monitor""]",2377.04,"{""loyalty"": ""27%""}",202269,1,Asia +2023-05-10,42166,2743,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3609.66,"{""seasonal"": ""19%""}",131718,1,Asia +2024-07-31,42167,7210,"[""Wireless Mouse"", ""Charger""]",1153.29,{},98696,1,Europe +2023-03-28,42168,1742,"[""Wireless Mouse"", ""Tablet""]",3870.99,{},141627,1,South America +2023-07-19,42169,4278,"[""Tablet"", ""Monitor"", ""Laptop""]",1320.55,"{""seasonal"": ""12%""}",8924,0,Africa +2023-11-26,42170,278,"[""Laptop"", ""Headphones""]",4884.34,{},34724,0,Africa +2023-05-09,42171,592,"[""Headphones"", ""Laptop""]",2748.05,"{""promo"": ""15%""}",286658,1,Europe +2023-06-26,42172,2895,"[""Wireless Mouse""]",2865.42,"{""seasonal"": ""12%""}",101700,0,Europe +2024-03-29,42173,7221,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",55.42,"{""loyalty"": ""8%""}",177326,0,South America +2023-11-29,42174,6271,"[""Monitor"", ""Laptop""]",4846.03,"{""loyalty"": ""29%""}",196719,0,Asia +2023-05-13,42175,592,"[""Headphones"", ""Monitor""]",1498.26,"{""promo"": ""9%""}",191350,0,Africa +2024-05-18,42176,6435,"[""Keyboard"", ""Headphones""]",389.91,{},65174,0,Asia +2023-09-24,42177,8003,"[""Headphones"", ""Keyboard""]",157.33,{},86865,1,Africa +2024-10-20,42178,4498,"[""Charger""]",3353.35,"{"""": ""8%""}",250169,1,Asia +2024-10-16,42179,3121,"[""Tablet"", ""Monitor""]",616.56,{},114765,0,South America +2024-10-29,42180,1564,"[""Keyboard""]",2860.47,"{""loyalty"": ""22%""}",29411,1,South America +2024-10-10,42181,3294,"[""Charger"", ""Laptop""]",1952.18,{},253104,1,Asia +2024-02-05,42182,3455,"[""Keyboard"", ""Tablet""]",822.47,{},82848,0,Europe +2024-04-08,42183,6373,"[""Wireless Mouse""]",1094.51,"{"""": ""16%""}",98831,1,Asia +2024-03-19,42184,2647,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2719.04,{},128847,0,Africa +2023-06-22,42185,7185,"[""Tablet"", ""Headphones""]",1783.87,"{""loyalty"": ""6%""}",204030,0,Europe +2023-04-15,42186,9127,"[""Headphones"", ""Laptop"", ""Charger""]",2223.17,"{""promo"": ""21%""}",196541,1,Asia +2023-08-31,42187,2283,"[""Charger"", ""Laptop""]",4168.93,"{""seasonal"": ""15%""}",101042,0,South America +2024-01-22,42188,1848,"[""Laptop"", ""Charger"", ""Monitor""]",1824.1,{},95749,0,South America +2024-11-28,42189,7476,"[""Laptop""]",1204.05,"{""loyalty"": ""29%""}",146780,1,North America +2024-10-23,42190,8429,"[""Tablet"", ""Laptop""]",136.57,{},79843,0,Africa +2024-04-03,42191,253,"[""Keyboard"", ""Tablet"", ""Phone""]",2360.33,{},230147,0,South America +2024-08-15,42192,7444,"[""Tablet"", ""Monitor""]",2142.12,"{""promo"": ""23%""}",199349,1,Europe +2024-05-30,42193,1185,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3179.6,"{""seasonal"": ""12%""}",188623,1,Asia +2024-12-07,42194,3843,"[""Keyboard""]",2221.23,"{""seasonal"": ""10%""}",250355,0,South America +2023-09-27,42195,1215,"[""Headphones"", ""Tablet""]",3499.42,"{""seasonal"": ""26%""}",271021,0,South America +2023-08-19,42196,3059,"[""Charger"", ""Monitor"", ""Tablet""]",354.45,{},245057,0,North America +2024-04-05,42197,4671,"[""Keyboard"", ""Monitor""]",4687.48,{},206019,1,Asia +2023-08-12,42198,5719,"[""Phone""]",166.68,{},103197,0,Asia +2024-03-13,42199,8883,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2267.92,"{""seasonal"": ""7%""}",222124,1,Europe +2023-03-25,42200,8019,"[""Phone"", ""Laptop"", ""Tablet""]",4879.73,"{""loyalty"": ""27%""}",205256,0,Africa +2024-07-22,42201,9187,"[""Phone"", ""Headphones""]",1823.91,"{"""": ""9%""}",244442,0,North America +2023-10-06,42202,8235,"[""Headphones"", ""Charger""]",1721.01,"{""loyalty"": ""6%""}",25117,1,Africa +2023-05-08,42203,5456,"[""Monitor"", ""Charger""]",64.05,{},110602,0,South America +2024-06-26,42204,3378,"[""Tablet""]",3748.63,"{""promo"": ""5%""}",133250,1,Asia +2024-05-10,42205,1545,"[""Monitor"", ""Charger"", ""Headphones""]",3507.41,{},277260,0,North America +2024-10-18,42206,2727,"[""Tablet"", ""Keyboard"", ""Charger""]",268.64,"{""seasonal"": ""8%""}",218318,1,Asia +2024-06-30,42207,3195,"[""Headphones"", ""Keyboard""]",2677.19,{},70939,1,Europe +2023-10-22,42208,4498,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2634.16,{},48234,1,North America +2023-01-31,42209,8725,"[""Keyboard"", ""Phone""]",3997.89,{},237436,0,Europe +2024-08-25,42210,8295,"[""Charger""]",2504.21,"{""promo"": ""20%""}",212578,1,Europe +2024-05-18,42211,4247,"[""Charger"", ""Phone"", ""Headphones""]",2585.79,"{""loyalty"": ""20%""}",277086,0,Europe +2024-07-18,42212,5480,"[""Keyboard"", ""Laptop""]",3760.12,{},230244,1,North America +2023-12-11,42213,1805,"[""Phone"", ""Charger"", ""Tablet""]",1591.32,{},245355,1,South America +2024-12-14,42214,4218,"[""Charger"", ""Phone""]",4613.17,"{""loyalty"": ""12%""}",287130,1,Asia +2024-11-01,42215,3958,"[""Charger"", ""Phone""]",1537.31,{},220396,1,Africa +2024-06-11,42216,1941,"[""Wireless Mouse"", ""Phone""]",2199.26,"{""promo"": ""26%""}",204560,0,Africa +2023-02-12,42217,6620,"[""Monitor""]",3264.32,"{""promo"": ""30%""}",198179,1,South America +2023-03-09,42218,9117,"[""Phone"", ""Headphones""]",3033.51,{},112228,0,Asia +2024-07-16,42219,6684,"[""Wireless Mouse"", ""Charger""]",3326.69,"{""promo"": ""25%""}",136371,0,Asia +2024-05-09,42220,2833,"[""Wireless Mouse""]",4139.04,"{"""": ""7%""}",150924,1,Africa +2024-02-20,42221,7067,"[""Tablet"", ""Headphones""]",4260.65,"{""promo"": ""7%""}",67639,1,North America +2023-06-19,42222,9638,"[""Charger""]",1363.47,"{""loyalty"": ""8%""}",215308,0,Europe +2024-01-11,42223,6219,"[""Monitor""]",3585.55,{},269166,1,North America +2024-12-23,42224,2414,"[""Keyboard""]",2090.09,"{""loyalty"": ""18%""}",73353,0,Africa +2024-07-07,42225,724,"[""Laptop"", ""Charger"", ""Tablet""]",3627.25,"{""loyalty"": ""18%""}",148925,0,Europe +2024-04-07,42226,2206,"[""Charger"", ""Headphones""]",1656.45,{},247272,0,North America +2023-10-04,42227,1188,"[""Tablet"", ""Wireless Mouse""]",3240.75,{},277205,0,Asia +2023-02-24,42228,9511,"[""Tablet""]",4333.2,"{""promo"": ""19%""}",157799,1,Asia +2024-03-14,42229,6774,"[""Monitor""]",4897.86,"{""promo"": ""30%""}",137340,1,Africa +2023-10-29,42230,5336,"[""Monitor""]",2787.75,{},239281,0,Europe +2024-07-29,42231,569,"[""Monitor"", ""Phone""]",697.22,"{""promo"": ""25%""}",163568,0,South America +2024-07-10,42232,9018,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4801.65,{},93993,1,Asia +2023-06-20,42233,611,"[""Headphones"", ""Wireless Mouse""]",3008.26,"{"""": ""22%""}",229520,1,South America +2024-08-01,42234,1180,"[""Headphones""]",4108.38,"{""promo"": ""28%""}",25793,1,Asia +2023-01-22,42235,1959,"[""Monitor""]",1620.28,"{""seasonal"": ""13%""}",76697,0,Europe +2023-05-11,42236,9249,"[""Monitor"", ""Keyboard""]",1456.34,{},53834,0,Asia +2024-11-22,42237,9863,"[""Phone"", ""Keyboard"", ""Laptop""]",969.78,{},121173,0,South America +2023-07-10,42238,7117,"[""Laptop"", ""Headphones"", ""Keyboard""]",4451.26,{},203138,0,North America +2024-04-13,42239,132,"[""Laptop"", ""Tablet"", ""Headphones""]",1884.16,"{"""": ""18%""}",42198,1,Europe +2024-06-07,42240,4625,"[""Keyboard"", ""Tablet""]",3948.1,"{"""": ""24%""}",269315,1,South America +2023-03-19,42241,6190,"[""Wireless Mouse""]",483.6,"{""loyalty"": ""21%""}",253553,1,Europe +2023-07-16,42242,2647,"[""Tablet"", ""Phone"", ""Headphones""]",477.34,{},263704,1,Africa +2023-05-07,42243,1284,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",279.02,"{""seasonal"": ""30%""}",79180,1,Europe +2023-08-26,42244,2982,"[""Headphones"", ""Tablet"", ""Laptop""]",3438.64,"{""loyalty"": ""9%""}",109799,1,Europe +2024-01-03,42245,8868,"[""Wireless Mouse"", ""Monitor""]",2839.98,{},109932,0,Europe +2023-01-23,42246,8680,"[""Charger""]",2690.54,"{"""": ""7%""}",240200,1,Africa +2024-05-24,42247,8301,"[""Tablet""]",2103.04,{},110567,1,South America +2023-08-13,42248,4202,"[""Charger"", ""Wireless Mouse""]",3638.84,{},39460,0,North America +2024-12-02,42249,9115,"[""Headphones""]",1229.32,"{""promo"": ""17%""}",250688,0,Africa +2024-10-21,42250,3332,"[""Laptop"", ""Headphones""]",2259.12,{},257652,0,Africa +2023-03-28,42251,8484,"[""Keyboard"", ""Phone""]",4647.25,{},180779,1,North America +2024-11-10,42252,4980,"[""Monitor"", ""Phone"", ""Charger""]",1568.76,"{"""": ""19%""}",174454,0,North America +2024-03-22,42253,2132,"[""Headphones""]",1591.44,"{""promo"": ""25%""}",220961,0,Africa +2024-02-25,42254,582,"[""Wireless Mouse""]",3430.02,"{"""": ""20%""}",81863,0,Africa +2023-12-13,42255,2926,"[""Monitor"", ""Headphones""]",4935.58,"{""loyalty"": ""24%""}",195617,1,South America +2024-12-21,42256,1632,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1122.35,"{""loyalty"": ""24%""}",185023,1,Europe +2024-12-02,42257,7613,"[""Charger"", ""Phone"", ""Monitor""]",4312.76,"{""promo"": ""9%""}",192708,0,Africa +2024-11-16,42258,697,"[""Monitor"", ""Charger"", ""Keyboard""]",4956.17,"{""promo"": ""30%""}",71632,1,North America +2023-03-11,42259,2281,"[""Keyboard"", ""Laptop"", ""Charger""]",3155.8,"{""loyalty"": ""16%""}",3818,0,North America +2023-06-01,42260,175,"[""Keyboard"", ""Charger"", ""Headphones""]",1083.79,{},18347,0,Africa +2024-06-07,42261,1134,"[""Monitor"", ""Keyboard""]",2661.99,{},206730,0,Asia +2024-11-26,42262,2937,"[""Laptop""]",1379.44,{},220513,1,North America +2023-08-14,42263,6669,"[""Monitor""]",2197.07,{},287696,1,North America +2023-03-18,42264,7287,"[""Tablet"", ""Laptop"", ""Phone""]",3498.53,"{""seasonal"": ""24%""}",251751,1,North America +2023-04-25,42265,9304,"[""Wireless Mouse""]",199.39,"{""promo"": ""26%""}",156220,1,South America +2024-03-09,42266,6458,"[""Tablet"", ""Wireless Mouse""]",331.03,{},84842,0,Asia +2023-06-25,42267,1875,"[""Charger"", ""Tablet"", ""Monitor""]",2720.08,{},68269,1,South America +2023-07-23,42268,3827,"[""Phone""]",4721.55,{},118264,1,Europe +2024-06-19,42269,1801,"[""Monitor"", ""Charger"", ""Tablet""]",4327.9,"{""loyalty"": ""13%""}",10003,0,South America +2024-12-23,42270,7923,"[""Tablet""]",2907.55,{},278951,0,South America +2023-06-06,42271,1961,"[""Keyboard"", ""Tablet"", ""Phone""]",3412.13,"{"""": ""18%""}",178447,1,Africa +2023-06-08,42272,9133,"[""Tablet"", ""Laptop""]",342.58,{},168828,1,South America +2023-03-08,42273,7522,"[""Keyboard""]",612.96,"{""seasonal"": ""9%""}",60403,1,Asia +2024-12-26,42274,7120,"[""Keyboard"", ""Headphones"", ""Monitor""]",1740.09,"{""promo"": ""12%""}",35652,0,Asia +2023-07-08,42275,4263,"[""Charger""]",3686.31,{},237545,1,South America +2023-07-27,42276,628,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2119.21,"{""loyalty"": ""20%""}",15570,0,South America +2023-03-30,42277,6168,"[""Monitor"", ""Keyboard""]",3172.27,{},228766,1,Asia +2024-02-12,42278,7779,"[""Headphones"", ""Tablet"", ""Charger""]",3556.33,"{"""": ""30%""}",223813,0,Europe +2024-07-11,42279,3284,"[""Phone""]",1565.48,{},236920,0,South America +2023-01-17,42280,3977,"[""Phone"", ""Tablet""]",432.49,"{""promo"": ""27%""}",276614,0,North America +2024-08-23,42281,5987,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1419.87,{},207115,1,North America +2023-05-28,42282,1898,"[""Monitor"", ""Tablet""]",3050.55,"{""loyalty"": ""9%""}",76112,1,South America +2023-10-04,42283,1140,"[""Charger"", ""Phone"", ""Monitor""]",3022.43,"{"""": ""11%""}",189234,0,South America +2023-04-08,42284,8338,"[""Tablet"", ""Laptop"", ""Phone""]",2543.48,"{""seasonal"": ""11%""}",109073,0,Asia +2024-01-25,42285,224,"[""Charger"", ""Laptop""]",2807.89,{},125390,1,North America +2023-04-12,42286,3302,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4964.86,{},58913,0,South America +2023-02-19,42287,2797,"[""Wireless Mouse"", ""Keyboard""]",4597.16,{},11742,0,Asia +2024-02-03,42288,4109,"[""Keyboard"", ""Headphones"", ""Laptop""]",1347.18,{},58328,0,Asia +2024-08-19,42289,3478,"[""Charger""]",4935.67,{},58554,0,Africa +2024-08-31,42290,5219,"[""Charger"", ""Tablet"", ""Headphones""]",2123.02,"{""seasonal"": ""25%""}",247211,1,South America +2024-10-14,42291,7620,"[""Headphones"", ""Laptop""]",4415.1,{},134474,1,North America +2023-06-24,42292,6073,"[""Tablet"", ""Wireless Mouse""]",1298.96,"{""promo"": ""16%""}",1669,0,South America +2023-05-15,42293,4969,"[""Phone""]",1611.7,"{""promo"": ""7%""}",254918,0,Africa +2023-08-06,42294,5191,"[""Laptop"", ""Wireless Mouse""]",3373.79,{},258195,0,Africa +2024-06-02,42295,4534,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1636.3,{},35371,1,Europe +2024-11-02,42296,9899,"[""Headphones""]",3035.01,"{""seasonal"": ""5%""}",153367,1,South America +2024-02-27,42297,6586,"[""Laptop""]",2116.48,{},267888,1,Asia +2024-09-13,42298,1867,"[""Laptop""]",3595.97,{},80505,0,North America +2024-09-16,42299,7199,"[""Phone"", ""Charger""]",3001.06,"{""loyalty"": ""22%""}",144545,0,Asia +2024-12-13,42300,586,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2760.52,"{""loyalty"": ""28%""}",17255,0,Africa +2024-08-18,42301,257,"[""Laptop"", ""Phone"", ""Charger""]",628.04,{},81228,1,South America +2023-11-21,42302,5315,"[""Wireless Mouse""]",4372.18,{},40399,1,Asia +2024-01-07,42303,1427,"[""Phone"", ""Keyboard""]",1994.28,"{""loyalty"": ""20%""}",157600,0,Europe +2023-07-31,42304,8275,"[""Phone""]",1432.76,{},241461,1,South America +2024-10-11,42305,5213,"[""Keyboard""]",522.49,{},113049,1,Africa +2023-01-26,42306,8362,"[""Monitor"", ""Wireless Mouse""]",1569.76,{},205523,0,Europe +2023-03-24,42307,9891,"[""Keyboard"", ""Charger""]",4814.84,"{""loyalty"": ""10%""}",250341,0,North America +2024-10-26,42308,3518,"[""Phone"", ""Tablet"", ""Keyboard""]",3397.55,"{""seasonal"": ""17%""}",258117,0,Africa +2024-04-13,42309,6457,"[""Phone"", ""Keyboard"", ""Laptop""]",1889.44,"{"""": ""19%""}",179910,0,North America +2023-09-07,42310,4533,"[""Charger"", ""Monitor""]",2699.28,"{""seasonal"": ""16%""}",234185,1,Africa +2024-03-27,42311,3422,"[""Laptop"", ""Monitor""]",4226.74,"{""promo"": ""11%""}",162620,0,Europe +2023-06-17,42312,8428,"[""Headphones""]",4203.14,{},81168,0,Africa +2023-04-01,42313,9715,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1496.44,"{"""": ""11%""}",74189,0,Europe +2023-07-28,42314,3077,"[""Charger"", ""Laptop"", ""Phone""]",4627.51,"{""loyalty"": ""26%""}",161006,1,Asia +2023-05-26,42315,9002,"[""Monitor""]",4389.11,{},91760,1,North America +2023-01-31,42316,1528,"[""Charger"", ""Tablet"", ""Headphones""]",3370.99,"{""promo"": ""25%""}",179992,0,Europe +2024-06-09,42317,3239,"[""Laptop"", ""Phone"", ""Keyboard""]",853.84,"{"""": ""30%""}",213684,1,North America +2024-09-27,42318,2053,"[""Keyboard"", ""Laptop""]",3187.35,{},143005,0,North America +2024-05-26,42319,5978,"[""Keyboard""]",683.51,{},206585,1,Africa +2024-11-08,42320,4877,"[""Phone"", ""Keyboard"", ""Monitor""]",2205.94,{},215530,0,Africa +2024-09-16,42321,9053,"[""Tablet"", ""Monitor"", ""Phone""]",4377.5,{},6811,1,Africa +2023-08-12,42322,487,"[""Wireless Mouse""]",3187.44,"{""promo"": ""28%""}",57163,0,Africa +2023-08-15,42323,7313,"[""Charger""]",3054.27,{},247018,1,Europe +2024-03-16,42324,1922,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2007.51,{},228709,0,Asia +2023-04-18,42325,7844,"[""Headphones"", ""Keyboard"", ""Monitor""]",3729.16,"{"""": ""28%""}",39271,0,Asia +2023-01-21,42326,4637,"[""Headphones""]",384.95,{},110307,0,South America +2024-02-17,42327,4560,"[""Keyboard""]",2865.14,"{"""": ""26%""}",195331,0,South America +2023-03-06,42328,6614,"[""Phone""]",1275.39,"{"""": ""19%""}",279124,1,South America +2023-10-22,42329,2876,"[""Keyboard"", ""Phone"", ""Headphones""]",615.87,{},14594,0,South America +2024-06-15,42330,8721,"[""Headphones"", ""Charger"", ""Keyboard""]",1518.18,"{""promo"": ""19%""}",62425,0,Africa +2023-09-23,42331,8791,"[""Laptop""]",3302.78,{},162410,1,Asia +2023-11-10,42332,9491,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3163.8,"{"""": ""30%""}",177339,0,Europe +2024-04-03,42333,6516,"[""Monitor"", ""Keyboard"", ""Headphones""]",3776.5,"{""seasonal"": ""21%""}",218016,0,Asia +2024-10-24,42334,9030,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2290.06,{},61366,0,South America +2023-11-06,42335,6254,"[""Monitor""]",3958.06,{},189579,0,Asia +2024-08-08,42336,2147,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",651.05,"{""seasonal"": ""23%""}",138650,0,Europe +2023-12-05,42337,6978,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4879.9,"{"""": ""19%""}",275829,0,Europe +2024-08-09,42338,2066,"[""Phone""]",747.93,{},264537,1,Asia +2023-03-08,42339,2594,"[""Monitor""]",4775.88,{},107981,0,North America +2023-06-25,42340,3327,"[""Laptop"", ""Monitor""]",1429.33,{},46203,0,South America +2024-04-13,42341,6781,"[""Monitor""]",4743.9,"{""promo"": ""27%""}",58805,0,South America +2023-07-09,42342,4226,"[""Charger""]",2277.86,{},73787,0,Europe +2023-07-11,42343,7386,"[""Keyboard""]",1341.12,"{""promo"": ""8%""}",112391,0,North America +2024-06-11,42344,4215,"[""Charger"", ""Monitor""]",1114.65,"{""seasonal"": ""28%""}",82101,1,Asia +2024-08-15,42345,856,"[""Headphones"", ""Tablet""]",775.33,{},186622,0,South America +2023-06-03,42346,3161,"[""Laptop"", ""Tablet""]",1711.51,{},135732,0,Africa +2024-04-28,42347,4869,"[""Monitor"", ""Phone""]",3722.64,{},278280,1,Asia +2024-07-13,42348,8461,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",417.46,{},268735,0,Africa +2023-02-03,42349,4263,"[""Phone""]",1741.27,{},267788,1,North America +2024-11-17,42350,5704,"[""Keyboard"", ""Wireless Mouse""]",2316.1,{},149683,1,South America +2024-02-21,42351,2537,"[""Keyboard"", ""Headphones""]",844.57,"{""loyalty"": ""15%""}",194887,1,Africa +2023-06-02,42352,3634,"[""Laptop"", ""Keyboard""]",4545.2,"{""loyalty"": ""20%""}",128754,1,South America +2023-02-17,42353,5153,"[""Tablet"", ""Phone"", ""Headphones""]",4029.25,"{""loyalty"": ""7%""}",291085,1,Africa +2023-04-04,42354,5882,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1183.26,"{"""": ""16%""}",13149,0,Africa +2023-07-09,42355,2584,"[""Wireless Mouse"", ""Laptop""]",3907.27,"{""loyalty"": ""18%""}",80999,0,South America +2024-04-18,42356,7776,"[""Monitor""]",877.75,{},295780,0,Africa +2023-01-05,42357,1663,"[""Tablet"", ""Monitor"", ""Charger""]",694.72,"{""loyalty"": ""15%""}",143657,1,Europe +2024-06-29,42358,3784,"[""Monitor""]",2268.0,{},267345,1,North America +2024-01-12,42359,8408,"[""Charger"", ""Keyboard"", ""Phone""]",1253.38,"{""loyalty"": ""25%""}",294766,0,Asia +2023-11-30,42360,6726,"[""Keyboard""]",3666.88,"{""loyalty"": ""20%""}",104638,0,Asia +2024-01-04,42361,2216,"[""Phone"", ""Headphones""]",511.0,{},97357,1,South America +2024-09-06,42362,317,"[""Headphones""]",4279.83,{},205590,0,Asia +2023-05-14,42363,607,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3421.1,{},294987,1,North America +2024-11-02,42364,2691,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",231.99,"{""seasonal"": ""29%""}",116477,1,Europe +2024-05-23,42365,4616,"[""Charger""]",4380.95,{},217062,1,South America +2024-03-27,42366,8161,"[""Monitor""]",3687.22,"{""seasonal"": ""9%""}",154661,1,North America +2024-05-13,42367,5535,"[""Phone""]",1716.77,{},208909,1,North America +2023-01-06,42368,8864,"[""Charger""]",1526.15,"{""loyalty"": ""5%""}",105075,0,Europe +2024-10-28,42369,4324,"[""Phone"", ""Monitor"", ""Keyboard""]",4296.27,"{"""": ""27%""}",107712,0,Asia +2023-12-22,42370,3114,"[""Keyboard""]",4682.55,{},175297,0,Europe +2023-09-25,42371,5796,"[""Phone"", ""Keyboard"", ""Laptop""]",4384.54,{},17603,0,South America +2024-10-27,42372,1177,"[""Laptop""]",2014.61,{},12453,0,North America +2024-12-30,42373,1223,"[""Keyboard"", ""Charger""]",236.95,{},228874,1,Asia +2024-01-17,42374,6157,"[""Wireless Mouse"", ""Keyboard""]",3547.7,"{"""": ""8%""}",157454,0,South America +2024-09-15,42375,3738,"[""Headphones"", ""Wireless Mouse""]",2964.08,"{""loyalty"": ""17%""}",281915,0,Africa +2024-11-01,42376,5297,"[""Phone""]",2391.24,"{""promo"": ""15%""}",220272,0,Europe +2023-02-22,42377,4548,"[""Phone"", ""Monitor"", ""Charger""]",4663.69,{},14328,1,North America +2024-03-24,42378,2642,"[""Charger"", ""Wireless Mouse""]",4334.33,{},246629,0,Africa +2024-08-14,42379,7810,"[""Tablet"", ""Keyboard""]",4261.58,"{""loyalty"": ""30%""}",194706,1,South America +2023-08-31,42380,2504,"[""Phone"", ""Charger""]",3598.84,{},200276,0,North America +2023-08-25,42381,2006,"[""Tablet""]",3584.83,{},142700,1,Africa +2023-12-11,42382,4227,"[""Laptop"", ""Keyboard""]",4816.62,{},251038,0,North America +2023-08-08,42383,5841,"[""Tablet"", ""Phone""]",955.58,{},260802,0,South America +2024-07-16,42384,6280,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4665.31,{},215736,0,North America +2024-05-11,42385,3733,"[""Laptop"", ""Headphones""]",4013.38,"{""loyalty"": ""18%""}",299358,1,Africa +2023-12-25,42386,8598,"[""Tablet"", ""Phone""]",904.51,"{""promo"": ""29%""}",187457,0,Africa +2023-03-25,42387,6586,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3681.06,{},244917,0,South America +2023-07-29,42388,4082,"[""Phone"", ""Tablet""]",4699.51,"{"""": ""7%""}",31683,1,South America +2023-07-08,42389,6570,"[""Keyboard"", ""Tablet""]",4669.48,"{""loyalty"": ""15%""}",131148,0,Africa +2023-01-26,42390,6378,"[""Headphones"", ""Laptop""]",2048.19,{},213349,0,Europe +2024-08-01,42391,7174,"[""Charger"", ""Keyboard""]",2439.48,{},18672,0,Europe +2023-06-29,42392,9509,"[""Laptop"", ""Monitor""]",3355.46,{},292170,0,Africa +2023-09-19,42393,5363,"[""Laptop""]",4572.88,"{""promo"": ""21%""}",108050,1,Europe +2023-05-22,42394,2725,"[""Keyboard"", ""Wireless Mouse""]",3645.97,{},75355,0,Europe +2023-12-19,42395,3803,"[""Monitor""]",2868.02,"{"""": ""27%""}",235084,1,South America +2024-06-18,42396,8065,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4695.9,"{""promo"": ""27%""}",35470,1,North America +2023-01-13,42397,3910,"[""Wireless Mouse""]",1550.06,"{""seasonal"": ""12%""}",29993,1,South America +2023-10-01,42398,4767,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",294.55,"{"""": ""29%""}",86688,0,Europe +2023-05-18,42399,2134,"[""Headphones""]",2366.42,"{""loyalty"": ""10%""}",75014,0,Europe +2023-01-26,42400,1092,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2562.15,"{""loyalty"": ""16%""}",130649,1,North America +2023-01-13,42401,9370,"[""Phone"", ""Keyboard""]",4731.2,"{""promo"": ""19%""}",206130,1,Europe +2023-09-17,42402,7629,"[""Keyboard""]",2834.48,{},130854,1,Africa +2024-04-10,42403,2135,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",235.46,"{""seasonal"": ""29%""}",113587,1,Asia +2024-12-01,42404,8690,"[""Laptop"", ""Phone"", ""Monitor""]",4076.61,{},7056,0,Asia +2023-11-12,42405,2078,"[""Charger""]",2117.26,{},248513,0,North America +2023-07-23,42406,6388,"[""Phone"", ""Keyboard"", ""Laptop""]",3046.42,"{"""": ""9%""}",7165,0,South America +2023-02-05,42407,998,"[""Charger""]",3405.25,"{""loyalty"": ""28%""}",259328,1,Europe +2023-09-27,42408,3087,"[""Keyboard"", ""Headphones""]",2345.39,{},282399,1,Europe +2024-03-06,42409,2037,"[""Wireless Mouse""]",2945.45,"{""seasonal"": ""27%""}",80291,1,Africa +2024-05-27,42410,894,"[""Phone"", ""Laptop""]",1753.89,{},205229,1,Asia +2023-06-07,42411,3603,"[""Keyboard"", ""Laptop"", ""Charger""]",776.61,{},14681,1,Europe +2024-06-07,42412,3967,"[""Tablet"", ""Monitor""]",118.5,{},154612,1,North America +2023-08-03,42413,4277,"[""Laptop""]",3025.35,{},43598,0,North America +2024-05-18,42414,7538,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1976.63,{},192366,0,Europe +2023-03-22,42415,9267,"[""Wireless Mouse""]",3602.22,"{""loyalty"": ""28%""}",119631,0,North America +2023-09-02,42416,4037,"[""Laptop"", ""Phone"", ""Tablet""]",4839.45,{},231448,1,Europe +2024-02-06,42417,5490,"[""Tablet""]",2753.46,"{""promo"": ""18%""}",102990,1,Asia +2023-05-09,42418,8945,"[""Headphones"", ""Wireless Mouse""]",2036.95,{},8708,1,Asia +2023-07-24,42419,14,"[""Headphones"", ""Monitor"", ""Tablet""]",4302.04,"{""promo"": ""10%""}",154574,1,South America +2023-02-19,42420,9558,"[""Keyboard"", ""Wireless Mouse""]",4771.27,{},6483,0,South America +2024-04-25,42421,6667,"[""Headphones"", ""Monitor"", ""Phone""]",2665.12,{},29657,1,South America +2024-06-10,42422,3693,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4361.66,"{"""": ""12%""}",294170,1,South America +2024-05-01,42423,8932,"[""Headphones"", ""Charger"", ""Phone""]",2278.02,"{"""": ""27%""}",123249,0,South America +2024-07-29,42424,1925,"[""Keyboard"", ""Charger""]",1039.55,{},210280,1,Africa +2023-12-03,42425,2051,"[""Keyboard"", ""Phone""]",784.24,{},247071,1,South America +2023-03-10,42426,9591,"[""Laptop""]",882.92,{},108765,1,North America +2023-07-29,42427,4685,"[""Wireless Mouse"", ""Charger""]",1581.01,"{""promo"": ""9%""}",189366,1,Africa +2023-02-25,42428,1695,"[""Headphones""]",3369.13,{},91101,0,North America +2024-03-21,42429,7881,"[""Phone"", ""Keyboard"", ""Laptop""]",4530.54,{},87034,1,North America +2024-12-14,42430,1334,"[""Tablet"", ""Charger""]",4002.41,{},40327,1,South America +2023-08-03,42431,5077,"[""Monitor"", ""Tablet""]",1761.51,"{""promo"": ""25%""}",275107,0,North America +2024-08-17,42432,6596,"[""Tablet""]",2280.82,{},103412,1,Asia +2023-05-15,42433,7582,"[""Tablet"", ""Wireless Mouse""]",679.43,"{"""": ""9%""}",226768,0,Europe +2023-10-03,42434,2505,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",715.17,{},69582,1,Asia +2023-10-12,42435,9845,"[""Headphones"", ""Tablet"", ""Laptop""]",2018.3,"{""loyalty"": ""13%""}",289565,0,South America +2023-04-03,42436,9039,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2711.81,"{""promo"": ""9%""}",149762,0,North America +2023-10-22,42437,3195,"[""Monitor"", ""Charger""]",3353.01,{},116946,1,Africa +2023-08-06,42438,236,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3852.92,{},192851,1,Asia +2023-09-13,42439,6290,"[""Tablet""]",2082.33,{},199076,0,South America +2024-09-01,42440,3669,"[""Phone""]",2930.46,{},287318,0,North America +2024-12-21,42441,6326,"[""Monitor"", ""Keyboard"", ""Tablet""]",4693.26,{},284581,1,Europe +2024-12-16,42442,5853,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",245.93,{},251835,1,North America +2023-12-07,42443,2277,"[""Phone""]",1324.54,{},43785,1,Africa +2023-11-15,42444,9533,"[""Phone""]",2695.16,{},89230,1,Europe +2023-10-29,42445,838,"[""Laptop""]",4706.9,{},288435,0,South America +2024-12-07,42446,7535,"[""Wireless Mouse"", ""Phone"", ""Charger""]",61.79,{},133647,0,Africa +2023-11-16,42447,816,"[""Keyboard""]",4266.12,"{""promo"": ""24%""}",157317,1,North America +2024-02-20,42448,9732,"[""Wireless Mouse""]",1742.35,"{""loyalty"": ""11%""}",292235,0,North America +2024-10-13,42449,9882,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3890.74,"{""loyalty"": ""14%""}",170000,0,North America +2023-12-23,42450,230,"[""Headphones"", ""Monitor"", ""Tablet""]",4396.67,{},39593,1,South America +2023-08-17,42451,3152,"[""Wireless Mouse""]",2966.67,{},155740,1,Asia +2024-08-18,42452,2917,"[""Tablet"", ""Wireless Mouse""]",1548.8,"{""seasonal"": ""26%""}",165957,1,Europe +2023-10-19,42453,2779,"[""Monitor"", ""Keyboard""]",951.02,{},59641,1,South America +2024-08-06,42454,910,"[""Keyboard""]",708.67,"{""loyalty"": ""15%""}",90297,0,North America +2023-04-11,42455,3857,"[""Headphones"", ""Monitor"", ""Charger""]",2268.81,"{""seasonal"": ""29%""}",55590,1,Asia +2023-12-10,42456,1289,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2081.78,"{"""": ""24%""}",269016,1,Europe +2024-06-12,42457,8733,"[""Laptop"", ""Keyboard""]",2080.39,"{""loyalty"": ""13%""}",226930,1,Africa +2023-03-04,42458,8175,"[""Phone"", ""Monitor"", ""Keyboard""]",1882.58,"{""loyalty"": ""30%""}",266862,1,North America +2023-08-09,42459,3281,"[""Wireless Mouse"", ""Tablet""]",3989.98,"{""promo"": ""14%""}",255426,0,North America +2024-06-07,42460,7507,"[""Headphones"", ""Tablet""]",4184.6,{},17958,0,Europe +2023-12-09,42461,8356,"[""Headphones"", ""Laptop""]",3380.67,"{""seasonal"": ""28%""}",98652,0,Asia +2023-01-29,42462,8474,"[""Keyboard"", ""Charger""]",4763.28,"{""seasonal"": ""8%""}",224349,1,Europe +2023-12-26,42463,6624,"[""Keyboard""]",3089.88,"{"""": ""15%""}",67584,1,South America +2024-02-15,42464,6279,"[""Monitor"", ""Charger"", ""Tablet""]",4286.54,{},208490,0,North America +2023-11-10,42465,2024,"[""Tablet"", ""Phone""]",453.99,{},157618,1,Africa +2024-01-08,42466,4386,"[""Charger"", ""Monitor""]",800.05,{},205897,1,North America +2023-03-31,42467,4472,"[""Laptop""]",1874.03,{},112571,0,North America +2024-06-08,42468,9826,"[""Headphones""]",4015.59,"{"""": ""12%""}",214815,1,Europe +2023-06-08,42469,8114,"[""Headphones""]",3921.64,"{""seasonal"": ""11%""}",173935,0,South America +2023-07-07,42470,9909,"[""Headphones""]",4288.22,{},141323,1,Asia +2023-03-07,42471,8187,"[""Phone"", ""Charger""]",76.66,{},42998,1,South America +2024-02-21,42472,4521,"[""Phone""]",1133.18,{},14030,1,Africa +2024-04-22,42473,7174,"[""Tablet""]",2177.89,{},166022,1,Africa +2023-12-10,42474,7201,"[""Headphones""]",3180.12,{},198832,1,Africa +2024-04-13,42475,2204,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",308.58,{},148327,1,South America +2024-11-19,42476,5021,"[""Phone"", ""Tablet""]",277.1,"{""loyalty"": ""13%""}",49944,1,North America +2024-09-29,42477,6259,"[""Tablet"", ""Laptop""]",4043.05,"{""promo"": ""8%""}",192974,0,Africa +2024-11-21,42478,3409,"[""Tablet""]",2289.33,{},241460,0,Asia +2023-09-28,42479,9881,"[""Monitor"", ""Headphones"", ""Tablet""]",3773.59,{},181312,0,Asia +2024-09-25,42480,7647,"[""Monitor"", ""Tablet"", ""Laptop""]",4853.63,"{"""": ""16%""}",58837,1,Europe +2024-12-13,42481,1005,"[""Tablet""]",4132.6,"{""loyalty"": ""7%""}",129486,0,North America +2024-07-30,42482,9544,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4313.25,{},128574,0,South America +2024-02-22,42483,8230,"[""Headphones""]",4283.69,{},270435,0,South America +2024-03-03,42484,8312,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1780.61,{},218809,0,Europe +2024-05-19,42485,1380,"[""Wireless Mouse"", ""Laptop""]",2010.82,{},288424,0,Africa +2023-03-14,42486,4278,"[""Headphones"", ""Monitor""]",2877.07,"{"""": ""16%""}",197833,0,South America +2024-04-14,42487,3410,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4006.88,{},76383,1,Asia +2024-02-15,42488,9039,"[""Tablet""]",1592.89,"{""loyalty"": ""30%""}",141146,1,Africa +2023-01-23,42489,600,"[""Monitor""]",148.13,"{"""": ""8%""}",59174,0,North America +2024-09-19,42490,2461,"[""Monitor""]",610.36,{},67381,0,Europe +2024-08-07,42491,6074,"[""Phone"", ""Tablet""]",4007.2,"{""promo"": ""25%""}",276980,1,South America +2023-06-26,42492,4302,"[""Monitor""]",4924.44,"{""promo"": ""8%""}",146141,0,South America +2023-05-18,42493,1697,"[""Phone""]",2199.19,{},71473,1,Asia +2024-03-28,42494,2376,"[""Charger"", ""Headphones""]",3488.4,{},272711,0,Europe +2023-09-14,42495,1718,"[""Monitor"", ""Phone""]",3921.72,{},7610,0,South America +2023-10-22,42496,6593,"[""Keyboard""]",2899.21,"{""seasonal"": ""19%""}",98650,0,South America +2024-06-21,42497,9658,"[""Phone"", ""Tablet""]",3721.67,"{""promo"": ""14%""}",292698,0,North America +2024-05-12,42498,6822,"[""Tablet"", ""Keyboard"", ""Headphones""]",2870.74,"{""promo"": ""14%""}",158054,0,Europe +2023-05-17,42499,6060,"[""Tablet"", ""Keyboard""]",1102.51,{},8295,0,Asia +2023-10-09,42500,7681,"[""Headphones"", ""Keyboard"", ""Monitor""]",1541.54,{},34602,0,North America +2024-08-12,42501,2955,"[""Charger""]",2255.4,"{""promo"": ""29%""}",137761,1,Europe +2024-10-29,42502,8034,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",252.49,{},252639,1,South America +2024-11-12,42503,3315,"[""Laptop""]",2422.11,{},80699,1,Europe +2023-05-15,42504,7007,"[""Tablet"", ""Phone"", ""Headphones""]",2661.45,{},81909,1,Africa +2024-09-22,42505,5637,"[""Headphones"", ""Keyboard""]",573.92,"{""loyalty"": ""16%""}",247835,1,North America +2024-02-05,42506,9798,"[""Wireless Mouse""]",2545.32,"{"""": ""25%""}",162154,1,Asia +2024-05-10,42507,7486,"[""Charger""]",4503.69,"{"""": ""16%""}",245099,1,South America +2024-08-22,42508,6645,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3893.71,{},180935,1,Asia +2023-08-13,42509,3085,"[""Headphones"", ""Laptop"", ""Phone""]",3477.74,{},182011,0,Europe +2024-02-09,42510,9533,"[""Laptop"", ""Keyboard""]",2380.11,{},64045,1,Africa +2024-09-14,42511,1140,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2581.39,"{""promo"": ""15%""}",207701,0,Asia +2024-09-17,42512,3455,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2957.12,"{""promo"": ""7%""}",18902,0,North America +2024-12-19,42513,1908,"[""Keyboard"", ""Wireless Mouse""]",3130.99,"{""seasonal"": ""19%""}",45284,1,South America +2024-05-18,42514,3512,"[""Laptop"", ""Tablet"", ""Headphones""]",4070.32,"{"""": ""16%""}",216398,0,North America +2024-08-21,42515,6990,"[""Tablet"", ""Monitor"", ""Charger""]",1417.76,"{""loyalty"": ""23%""}",102356,1,North America +2024-02-29,42516,4550,"[""Laptop""]",1494.62,"{""seasonal"": ""28%""}",105144,0,North America +2024-01-09,42517,4272,"[""Monitor"", ""Laptop""]",4651.44,"{""loyalty"": ""18%""}",8564,1,North America +2023-06-18,42518,3414,"[""Laptop""]",3417.25,{},99761,0,North America +2023-04-18,42519,2335,"[""Wireless Mouse"", ""Keyboard""]",4737.63,"{""loyalty"": ""8%""}",21296,0,South America +2023-11-20,42520,2004,"[""Charger"", ""Phone""]",4765.73,"{""seasonal"": ""12%""}",42125,0,Europe +2024-11-02,42521,8775,"[""Tablet""]",298.02,"{""promo"": ""17%""}",108455,1,Europe +2024-08-05,42522,3009,"[""Monitor"", ""Headphones""]",2949.2,"{""seasonal"": ""23%""}",266077,0,Africa +2023-03-25,42523,834,"[""Keyboard""]",4508.73,"{""loyalty"": ""26%""}",131421,0,North America +2024-07-25,42524,3237,"[""Monitor"", ""Laptop"", ""Headphones""]",382.26,{},285870,0,Asia +2023-10-14,42525,5448,"[""Laptop"", ""Monitor"", ""Charger""]",4065.76,{},272326,1,North America +2023-09-01,42526,3212,"[""Charger""]",3191.62,{},60946,1,South America +2024-08-07,42527,1549,"[""Laptop"", ""Charger""]",2634.81,"{"""": ""28%""}",299745,0,Europe +2024-09-24,42528,9816,"[""Phone"", ""Keyboard""]",4220.02,"{""loyalty"": ""16%""}",86717,1,Europe +2023-06-01,42529,8970,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1841.73,"{""loyalty"": ""9%""}",51098,1,North America +2023-05-25,42530,5890,"[""Headphones""]",1062.21,"{""promo"": ""5%""}",68493,0,Asia +2024-12-25,42531,2330,"[""Keyboard""]",2359.81,{},206050,0,North America +2023-09-06,42532,3296,"[""Tablet""]",745.6,"{""promo"": ""18%""}",103315,0,Asia +2023-10-20,42533,6009,"[""Keyboard""]",879.04,{},155329,1,Asia +2024-08-17,42534,411,"[""Phone"", ""Headphones"", ""Monitor""]",4416.5,"{""loyalty"": ""24%""}",1679,1,North America +2024-07-20,42535,6155,"[""Wireless Mouse"", ""Monitor""]",2467.86,{},199360,1,Africa +2024-09-01,42536,341,"[""Charger"", ""Wireless Mouse""]",1001.81,"{"""": ""18%""}",247520,0,South America +2023-12-30,42537,9276,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1907.11,{},239234,0,Africa +2023-05-12,42538,4041,"[""Tablet""]",2883.65,"{""loyalty"": ""21%""}",57844,0,North America +2024-10-02,42539,3543,"[""Phone""]",4367.9,{},215908,1,Asia +2024-11-05,42540,1282,"[""Phone""]",4484.22,"{""loyalty"": ""27%""}",105261,0,North America +2023-12-19,42541,3962,"[""Phone"", ""Headphones""]",2949.73,"{""loyalty"": ""5%""}",211287,0,Africa +2023-04-12,42542,254,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3634.18,"{""seasonal"": ""11%""}",288325,1,Africa +2023-12-29,42543,486,"[""Tablet"", ""Headphones"", ""Monitor""]",1585.65,{},2638,1,North America +2024-05-28,42544,2829,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2296.08,{},197734,0,Asia +2024-07-30,42545,4257,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",320.51,"{""loyalty"": ""18%""}",136221,1,Africa +2023-03-02,42546,5477,"[""Keyboard""]",1917.91,{},270942,1,Europe +2024-12-07,42547,1221,"[""Keyboard"", ""Charger""]",380.29,"{""seasonal"": ""18%""}",62320,1,Europe +2024-11-22,42548,9837,"[""Headphones"", ""Phone""]",1851.28,{},172411,0,Africa +2023-12-04,42549,4164,"[""Headphones"", ""Keyboard""]",4833.51,"{""promo"": ""28%""}",228763,0,South America +2023-10-03,42550,8566,"[""Monitor"", ""Keyboard"", ""Laptop""]",1479.72,{},280899,1,Europe +2024-07-13,42551,2720,"[""Charger""]",4793.03,{},202039,0,Africa +2023-03-09,42552,7648,"[""Phone""]",4776.74,{},281544,0,Africa +2023-08-08,42553,4537,"[""Wireless Mouse""]",3644.21,{},202202,0,Asia +2024-01-03,42554,629,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",865.02,"{"""": ""19%""}",170641,0,North America +2023-02-28,42555,7749,"[""Tablet""]",175.33,{},281831,1,South America +2024-07-11,42556,6946,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",536.56,{},156444,1,South America +2023-02-19,42557,1862,"[""Headphones""]",2836.84,{},152806,1,South America +2023-06-02,42558,1433,"[""Charger"", ""Tablet"", ""Keyboard""]",1113.75,{},111664,0,North America +2024-10-15,42559,3722,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4511.32,{},129372,1,North America +2024-02-25,42560,1945,"[""Tablet"", ""Charger"", ""Laptop""]",2799.76,"{""promo"": ""19%""}",135020,1,South America +2023-11-17,42561,5577,"[""Phone"", ""Tablet"", ""Charger""]",1318.85,{},127392,0,Europe +2023-06-07,42562,4580,"[""Laptop"", ""Monitor"", ""Keyboard""]",1125.16,"{""seasonal"": ""11%""}",62923,1,Africa +2024-02-14,42563,450,"[""Charger""]",1319.27,"{"""": ""10%""}",126193,0,North America +2023-10-30,42564,201,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3062.47,"{""loyalty"": ""5%""}",86888,1,Europe +2023-07-06,42565,2962,"[""Keyboard"", ""Headphones"", ""Monitor""]",151.06,"{""loyalty"": ""24%""}",299444,1,South America +2024-07-03,42566,8911,"[""Keyboard""]",2480.76,"{""promo"": ""16%""}",54732,1,Africa +2024-01-27,42567,5880,"[""Keyboard""]",1030.89,"{"""": ""11%""}",239024,1,Africa +2024-08-04,42568,5072,"[""Laptop""]",4943.23,{},233735,1,Europe +2024-10-28,42569,5593,"[""Headphones"", ""Tablet""]",3696.76,{},64485,1,South America +2023-03-28,42570,1589,"[""Monitor"", ""Phone"", ""Charger""]",1700.65,"{""promo"": ""10%""}",249452,1,Asia +2024-03-11,42571,4413,"[""Laptop""]",4935.65,"{""loyalty"": ""6%""}",249609,0,Europe +2023-07-14,42572,8520,"[""Laptop"", ""Keyboard""]",419.44,{},109113,1,Europe +2023-02-15,42573,8852,"[""Tablet"", ""Charger""]",3485.02,"{"""": ""8%""}",154141,0,Europe +2023-04-29,42574,337,"[""Monitor"", ""Charger""]",1386.61,"{""seasonal"": ""6%""}",127477,0,South America +2024-04-15,42575,5724,"[""Headphones"", ""Charger""]",2109.96,"{""promo"": ""30%""}",223500,0,South America +2024-04-26,42576,8772,"[""Headphones"", ""Wireless Mouse""]",205.44,{},203173,1,South America +2024-04-19,42577,4699,"[""Wireless Mouse""]",2357.33,"{"""": ""14%""}",230553,1,South America +2024-01-29,42578,3891,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1652.73,"{""promo"": ""9%""}",87976,0,Asia +2023-05-27,42579,3516,"[""Monitor"", ""Tablet"", ""Laptop""]",4598.14,{},115390,1,Africa +2024-08-10,42580,6076,"[""Tablet"", ""Headphones"", ""Monitor""]",3850.77,"{""seasonal"": ""10%""}",89943,0,Africa +2023-11-06,42581,5096,"[""Wireless Mouse""]",1566.03,{},62894,1,North America +2024-09-03,42582,9943,"[""Headphones""]",3840.78,"{"""": ""5%""}",181966,1,North America +2024-02-29,42583,8875,"[""Phone"", ""Headphones"", ""Keyboard""]",4040.85,{},154835,0,Europe +2023-02-05,42584,5697,"[""Monitor"", ""Charger""]",3439.84,{},76506,0,North America +2024-12-05,42585,7202,"[""Headphones""]",2566.69,{},109855,1,Europe +2024-12-23,42586,6802,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2726.53,"{""loyalty"": ""23%""}",281193,1,South America +2024-11-17,42587,3984,"[""Keyboard"", ""Headphones""]",4165.61,"{"""": ""10%""}",84281,1,North America +2023-05-09,42588,7365,"[""Tablet""]",3703.5,"{""seasonal"": ""23%""}",128121,1,Asia +2024-03-13,42589,4605,"[""Keyboard""]",4901.26,"{""seasonal"": ""27%""}",58065,1,Europe +2024-02-23,42590,9168,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2604.22,{},230293,1,Asia +2024-03-14,42591,7023,"[""Charger"", ""Laptop"", ""Monitor""]",1115.26,{},22095,0,Europe +2023-12-04,42592,6540,"[""Charger""]",4538.62,"{""loyalty"": ""10%""}",242075,0,Africa +2023-10-01,42593,7272,"[""Phone"", ""Monitor"", ""Laptop""]",302.84,{},267584,1,Europe +2024-04-04,42594,546,"[""Keyboard"", ""Laptop"", ""Monitor""]",3829.49,"{"""": ""19%""}",93740,0,Africa +2024-08-13,42595,9588,"[""Phone""]",291.36,"{""loyalty"": ""21%""}",128388,1,Europe +2023-04-19,42596,9273,"[""Laptop""]",4433.52,{},162741,0,North America +2023-07-09,42597,4889,"[""Keyboard""]",4966.38,"{""loyalty"": ""21%""}",81100,0,North America +2023-08-31,42598,8792,"[""Charger"", ""Laptop"", ""Tablet""]",1458.12,"{"""": ""13%""}",296541,1,Asia +2023-10-22,42599,1913,"[""Tablet"", ""Laptop"", ""Charger""]",4427.53,"{""promo"": ""18%""}",17841,1,North America +2023-06-24,42600,4877,"[""Headphones"", ""Laptop"", ""Tablet""]",3109.77,"{""seasonal"": ""13%""}",94262,1,North America +2024-12-28,42601,5469,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3010.17,{},286764,1,North America +2024-11-01,42602,8226,"[""Laptop""]",2979.21,"{""seasonal"": ""25%""}",148728,1,Europe +2023-02-15,42603,1433,"[""Wireless Mouse""]",1808.1,{},168290,1,Europe +2024-12-29,42604,75,"[""Headphones""]",3128.77,{},132523,0,South America +2023-01-25,42605,41,"[""Phone"", ""Monitor""]",2464.41,{},147673,1,Asia +2023-02-09,42606,5705,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2233.01,"{""loyalty"": ""28%""}",157127,0,Asia +2023-07-09,42607,3896,"[""Monitor""]",107.96,"{""loyalty"": ""24%""}",181294,0,Asia +2023-01-16,42608,1968,"[""Headphones"", ""Tablet"", ""Keyboard""]",3640.61,{},199175,0,Asia +2024-03-18,42609,5254,"[""Monitor""]",3676.82,"{"""": ""12%""}",2224,1,Africa +2024-05-05,42610,1681,"[""Laptop"", ""Monitor""]",890.93,"{""loyalty"": ""6%""}",246056,0,North America +2024-07-10,42611,7665,"[""Headphones"", ""Monitor""]",4022.49,{},83562,1,Africa +2024-09-26,42612,5997,"[""Keyboard""]",1401.5,{},61280,1,Asia +2024-04-07,42613,6659,"[""Keyboard""]",2614.93,"{""seasonal"": ""23%""}",147841,1,South America +2024-01-04,42614,9812,"[""Phone""]",3288.26,"{""loyalty"": ""17%""}",272777,0,Europe +2023-05-21,42615,4880,"[""Keyboard"", ""Headphones""]",3914.77,"{""loyalty"": ""5%""}",136082,0,Europe +2024-01-19,42616,6552,"[""Phone""]",4058.53,{},110589,1,South America +2024-07-18,42617,5324,"[""Charger"", ""Phone""]",947.57,{},96513,1,North America +2023-02-21,42618,9018,"[""Headphones"", ""Monitor""]",792.91,"{""loyalty"": ""29%""}",266999,0,Africa +2023-11-13,42619,1157,"[""Phone"", ""Keyboard""]",1863.89,"{"""": ""15%""}",290171,0,North America +2024-12-20,42620,2645,"[""Charger"", ""Phone""]",2818.9,"{""loyalty"": ""29%""}",152976,0,Africa +2024-02-02,42621,6734,"[""Keyboard""]",4102.12,{},220793,0,North America +2023-11-19,42622,6487,"[""Wireless Mouse"", ""Phone""]",324.6,"{""loyalty"": ""9%""}",173062,0,Asia +2024-09-14,42623,7315,"[""Phone""]",2451.03,{},64395,1,Europe +2023-10-31,42624,5396,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1458.31,"{""loyalty"": ""28%""}",14096,1,North America +2023-03-10,42625,65,"[""Phone"", ""Tablet"", ""Headphones""]",3415.99,"{""promo"": ""20%""}",212764,1,Europe +2024-07-08,42626,6127,"[""Tablet"", ""Headphones""]",4192.84,{},233843,0,Asia +2023-12-29,42627,2866,"[""Phone"", ""Monitor"", ""Headphones""]",3867.46,{},152883,0,Africa +2024-07-22,42628,3157,"[""Tablet"", ""Phone"", ""Charger""]",4964.7,{},117592,1,Africa +2023-05-03,42629,8697,"[""Phone""]",556.74,"{""loyalty"": ""25%""}",275969,1,Europe +2023-03-25,42630,7959,"[""Charger"", ""Monitor""]",1152.46,{},51097,0,Europe +2023-12-21,42631,6154,"[""Monitor"", ""Phone""]",4943.65,{},226154,1,Africa +2023-04-26,42632,794,"[""Laptop"", ""Monitor""]",1407.75,{},61746,1,North America +2024-11-09,42633,7107,"[""Laptop"", ""Phone"", ""Monitor""]",3972.37,"{""seasonal"": ""23%""}",207662,0,Africa +2023-10-23,42634,7193,"[""Laptop""]",4904.63,"{""loyalty"": ""19%""}",135974,1,Europe +2024-12-14,42635,4838,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3533.95,{},92036,1,South America +2024-10-07,42636,5984,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1256.19,{},161792,1,South America +2024-03-15,42637,65,"[""Keyboard""]",2566.56,{},288670,1,South America +2023-02-07,42638,6819,"[""Wireless Mouse"", ""Headphones""]",3075.68,"{""loyalty"": ""23%""}",81670,0,North America +2023-11-18,42639,7856,"[""Laptop"", ""Headphones""]",646.57,"{""seasonal"": ""18%""}",163725,1,Europe +2024-12-09,42640,2467,"[""Laptop"", ""Monitor""]",1922.21,"{""loyalty"": ""21%""}",290928,1,Africa +2024-10-15,42641,1776,"[""Monitor""]",1608.58,"{""seasonal"": ""13%""}",298639,0,North America +2024-06-21,42642,3669,"[""Phone""]",3757.61,"{""promo"": ""18%""}",109955,1,South America +2024-12-31,42643,9900,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",405.57,"{""promo"": ""21%""}",105455,1,North America +2023-04-30,42644,5869,"[""Wireless Mouse""]",1737.44,{},212702,1,North America +2024-02-16,42645,2677,"[""Tablet"", ""Headphones""]",3549.54,{},244373,1,South America +2023-04-12,42646,1337,"[""Laptop"", ""Wireless Mouse""]",4496.67,{},162652,0,South America +2023-09-28,42647,9294,"[""Laptop"", ""Headphones"", ""Monitor""]",3185.49,"{""loyalty"": ""12%""}",100949,0,Africa +2024-08-30,42648,9559,"[""Phone"", ""Keyboard"", ""Tablet""]",224.47,{},166382,1,Asia +2023-05-16,42649,8388,"[""Charger""]",1764.06,{},152339,1,Africa +2023-03-20,42650,1154,"[""Wireless Mouse"", ""Tablet""]",1403.26,{},220872,1,Africa +2023-11-10,42651,6301,"[""Laptop""]",2337.41,"{""loyalty"": ""24%""}",228522,1,Europe +2024-09-23,42652,4940,"[""Laptop"", ""Phone""]",4118.45,"{""promo"": ""17%""}",73849,1,Africa +2024-01-17,42653,6435,"[""Tablet""]",3151.27,{},39205,0,Asia +2024-04-22,42654,4904,"[""Tablet""]",4155.14,"{""loyalty"": ""12%""}",221107,1,Africa +2024-04-27,42655,6750,"[""Tablet""]",3298.41,{},293095,1,Africa +2023-12-23,42656,6392,"[""Laptop""]",1555.67,"{""promo"": ""9%""}",279648,0,Asia +2024-03-08,42657,3801,"[""Headphones"", ""Monitor""]",3605.35,"{""loyalty"": ""8%""}",175641,0,Africa +2023-02-05,42658,4938,"[""Laptop"", ""Keyboard""]",4466.02,{},11709,1,Africa +2024-07-22,42659,7461,"[""Laptop"", ""Charger"", ""Tablet""]",1520.06,{},111891,0,Europe +2023-07-04,42660,6004,"[""Headphones""]",1419.29,{},172951,0,North America +2024-04-04,42661,578,"[""Headphones"", ""Tablet"", ""Keyboard""]",3304.51,"{"""": ""12%""}",52327,1,Europe +2023-04-07,42662,4818,"[""Phone"", ""Keyboard"", ""Tablet""]",2217.49,{},62479,0,Africa +2024-08-02,42663,9034,"[""Headphones""]",4197.96,{},84450,0,Africa +2024-05-09,42664,71,"[""Monitor"", ""Keyboard""]",2077.73,"{""promo"": ""10%""}",169413,1,Europe +2024-10-31,42665,5095,"[""Keyboard"", ""Monitor""]",4932.03,"{""loyalty"": ""28%""}",206565,1,North America +2023-12-19,42666,5805,"[""Laptop""]",4380.32,{},16062,0,North America +2024-05-09,42667,6500,"[""Wireless Mouse"", ""Charger""]",4128.63,{},219449,0,South America +2024-03-08,42668,3543,"[""Laptop"", ""Keyboard"", ""Headphones""]",3704.74,"{"""": ""14%""}",291699,0,Africa +2024-09-08,42669,7129,"[""Laptop""]",3504.67,"{""loyalty"": ""24%""}",269454,1,Asia +2023-12-16,42670,2289,"[""Monitor"", ""Headphones""]",4507.97,{},20600,1,South America +2024-05-24,42671,1999,"[""Keyboard"", ""Phone""]",2410.61,{},215875,0,Africa +2024-11-12,42672,3931,"[""Headphones"", ""Phone""]",3579.66,{},63476,1,South America +2023-01-15,42673,5067,"[""Tablet""]",2584.86,"{"""": ""5%""}",153856,0,Asia +2024-06-05,42674,7963,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",113.54,{},176495,0,South America +2024-08-30,42675,6966,"[""Headphones"", ""Keyboard""]",4953.02,{},258106,1,Asia +2024-05-07,42676,7002,"[""Charger"", ""Headphones""]",3502.63,{},47782,1,North America +2024-06-15,42677,4829,"[""Phone"", ""Monitor"", ""Tablet""]",492.73,"{""loyalty"": ""20%""}",58320,0,South America +2023-03-04,42678,3541,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4741.25,{},189144,0,South America +2023-09-14,42679,3306,"[""Laptop""]",4497.33,{},128345,1,Europe +2023-10-25,42680,4337,"[""Charger"", ""Monitor"", ""Keyboard""]",2126.06,"{"""": ""14%""}",50819,0,Africa +2023-03-15,42681,182,"[""Laptop""]",4848.66,"{""seasonal"": ""17%""}",56958,0,Europe +2024-03-27,42682,6293,"[""Keyboard"", ""Headphones"", ""Monitor""]",3895.55,{},208062,1,South America +2023-03-26,42683,4578,"[""Monitor""]",4970.68,"{"""": ""23%""}",270696,1,North America +2024-12-09,42684,7951,"[""Tablet""]",3402.73,{},256527,1,Africa +2024-12-22,42685,4968,"[""Phone"", ""Monitor""]",4991.62,"{"""": ""7%""}",110464,1,Europe +2023-12-31,42686,4894,"[""Headphones"", ""Keyboard"", ""Tablet""]",3028.94,{},191248,1,Africa +2024-03-26,42687,887,"[""Wireless Mouse"", ""Phone""]",1006.06,"{""seasonal"": ""28%""}",58309,1,South America +2023-11-25,42688,7649,"[""Headphones""]",4997.35,{},198995,0,Africa +2023-09-17,42689,1210,"[""Wireless Mouse""]",3596.82,"{""promo"": ""21%""}",55280,1,North America +2023-11-09,42690,1140,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",295.68,{},127513,1,North America +2024-04-16,42691,7651,"[""Laptop""]",3405.61,{},238319,0,Asia +2023-11-12,42692,9890,"[""Headphones""]",4613.64,"{"""": ""28%""}",290641,0,North America +2023-01-20,42693,676,"[""Laptop"", ""Headphones""]",899.28,"{"""": ""19%""}",68519,0,Europe +2023-03-08,42694,4986,"[""Wireless Mouse"", ""Headphones""]",529.73,{},139771,0,South America +2023-12-02,42695,5487,"[""Charger""]",1919.31,{},231614,0,Asia +2024-12-26,42696,4474,"[""Keyboard""]",4386.18,{},54357,0,North America +2024-05-10,42697,5132,"[""Phone"", ""Charger"", ""Headphones""]",2037.37,{},20185,1,North America +2023-10-31,42698,8376,"[""Keyboard"", ""Wireless Mouse""]",1260.04,"{""seasonal"": ""15%""}",22398,1,South America +2024-09-06,42699,7924,"[""Keyboard""]",3704.48,"{""seasonal"": ""16%""}",209453,1,Asia +2024-05-20,42700,1908,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3597.04,"{"""": ""22%""}",163322,0,Asia +2023-07-24,42701,7323,"[""Keyboard""]",4286.22,"{""loyalty"": ""8%""}",192121,0,Africa +2024-06-01,42702,4072,"[""Tablet""]",250.91,{},271710,0,Europe +2023-03-17,42703,2117,"[""Wireless Mouse""]",4932.18,{},222567,1,South America +2023-02-05,42704,1346,"[""Tablet""]",1611.57,"{"""": ""19%""}",164263,1,Europe +2023-05-27,42705,7050,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",798.7,{},49235,0,Asia +2024-04-09,42706,5149,"[""Monitor"", ""Charger""]",3320.08,"{"""": ""22%""}",16651,0,Africa +2023-02-20,42707,5960,"[""Phone""]",1148.13,"{""seasonal"": ""10%""}",184249,1,Europe +2024-10-29,42708,6752,"[""Tablet"", ""Keyboard"", ""Laptop""]",4773.43,{},234482,0,Africa +2023-11-05,42709,7474,"[""Wireless Mouse""]",129.7,"{""loyalty"": ""20%""}",164619,1,South America +2023-07-23,42710,7477,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3879.78,"{"""": ""23%""}",16141,0,Africa +2024-09-18,42711,2446,"[""Monitor"", ""Headphones"", ""Tablet""]",4867.87,{},119471,1,Europe +2024-11-19,42712,2472,"[""Headphones"", ""Tablet"", ""Laptop""]",4277.9,"{""promo"": ""5%""}",184145,1,Europe +2024-04-18,42713,9956,"[""Headphones"", ""Monitor"", ""Tablet""]",2655.62,{},37275,0,South America +2023-11-21,42714,5484,"[""Monitor"", ""Laptop""]",809.22,{},299712,1,South America +2024-08-28,42715,2737,"[""Keyboard"", ""Laptop"", ""Monitor""]",2800.14,{},291645,0,South America +2024-01-17,42716,6286,"[""Tablet"", ""Charger"", ""Phone""]",982.3,"{""seasonal"": ""22%""}",101362,1,Asia +2024-06-20,42717,8000,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3823.42,"{"""": ""27%""}",180782,1,South America +2023-04-17,42718,1768,"[""Tablet""]",1832.06,{},58556,1,Asia +2024-11-16,42719,9961,"[""Wireless Mouse"", ""Monitor""]",1522.23,{},146380,0,Europe +2024-11-27,42720,7371,"[""Keyboard""]",1013.29,{},239300,0,North America +2024-10-25,42721,1079,"[""Phone"", ""Headphones""]",436.39,{},195926,1,South America +2023-05-05,42722,5629,"[""Phone"", ""Keyboard"", ""Monitor""]",4380.72,{},19137,0,Asia +2024-10-06,42723,9227,"[""Keyboard"", ""Monitor""]",946.14,"{""promo"": ""22%""}",180854,0,Africa +2024-12-18,42724,4304,"[""Phone"", ""Headphones""]",2555.44,{},146002,1,North America +2024-05-16,42725,8708,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3302.94,{},107652,1,North America +2024-12-17,42726,148,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3581.86,{},242524,1,Asia +2023-07-18,42727,7787,"[""Headphones""]",2053.28,{},166441,1,Africa +2023-12-02,42728,5477,"[""Tablet"", ""Headphones"", ""Keyboard""]",95.14,{},69283,1,Africa +2024-06-04,42729,6832,"[""Monitor""]",2597.68,"{""seasonal"": ""8%""}",83851,0,Europe +2024-07-01,42730,2027,"[""Tablet""]",4139.2,{},93078,1,Asia +2023-09-26,42731,351,"[""Keyboard"", ""Phone""]",417.69,"{""loyalty"": ""6%""}",61342,1,Europe +2023-12-08,42732,8401,"[""Phone""]",2226.29,{},257187,1,Africa +2024-08-05,42733,6553,"[""Charger""]",2209.44,"{""promo"": ""27%""}",61101,1,South America +2023-04-18,42734,2315,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2668.09,"{""promo"": ""20%""}",292655,1,Asia +2023-07-21,42735,9510,"[""Tablet""]",3616.62,{},139624,1,Asia +2023-07-24,42736,9826,"[""Charger""]",2423.9,{},167346,0,South America +2024-12-12,42737,6636,"[""Tablet""]",849.08,{},239111,1,South America +2024-05-24,42738,7765,"[""Tablet"", ""Keyboard"", ""Laptop""]",1539.37,{},106819,1,Africa +2024-09-11,42739,9443,"[""Tablet"", ""Laptop"", ""Charger""]",1204.01,"{""loyalty"": ""18%""}",248954,0,North America +2023-02-14,42740,1937,"[""Tablet"", ""Headphones""]",3787.91,"{"""": ""24%""}",127201,0,Asia +2023-07-14,42741,4604,"[""Monitor"", ""Headphones"", ""Keyboard""]",55.95,{},106474,0,South America +2023-09-13,42742,6814,"[""Keyboard"", ""Tablet"", ""Monitor""]",3944.1,{},210631,0,South America +2024-08-10,42743,7763,"[""Laptop"", ""Headphones"", ""Keyboard""]",2272.89,{},169381,1,Asia +2023-05-05,42744,1054,"[""Phone""]",4092.4,"{""promo"": ""9%""}",40221,1,North America +2023-11-24,42745,9429,"[""Charger"", ""Laptop""]",4025.8,"{"""": ""8%""}",199010,0,North America +2024-10-04,42746,523,"[""Monitor""]",2403.19,{},137903,0,Asia +2024-02-28,42747,5539,"[""Wireless Mouse""]",3645.06,"{""loyalty"": ""20%""}",246220,1,Asia +2023-06-16,42748,6197,"[""Tablet"", ""Keyboard""]",868.27,"{""seasonal"": ""16%""}",21304,1,South America +2023-07-02,42749,5846,"[""Tablet""]",1959.93,"{""seasonal"": ""15%""}",49093,1,South America +2023-05-18,42750,1331,"[""Phone"", ""Keyboard""]",2250.43,{},185683,1,North America +2023-07-20,42751,5537,"[""Tablet"", ""Charger""]",1654.14,"{"""": ""12%""}",173674,0,Europe +2024-09-26,42752,1247,"[""Monitor"", ""Phone"", ""Laptop""]",4552.73,"{"""": ""10%""}",212238,1,Europe +2024-05-20,42753,3292,"[""Headphones""]",4651.48,"{"""": ""7%""}",124011,1,Africa +2024-03-20,42754,7118,"[""Phone""]",4211.18,"{""promo"": ""5%""}",171741,0,Europe +2024-01-06,42755,4905,"[""Laptop"", ""Wireless Mouse""]",4987.28,{},286417,0,North America +2023-08-30,42756,6068,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1212.01,"{""promo"": ""12%""}",63790,1,Europe +2023-02-17,42757,5874,"[""Tablet"", ""Phone""]",4735.05,{},73346,1,North America +2024-01-29,42758,7145,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3247.33,"{""seasonal"": ""7%""}",241217,0,Africa +2024-11-21,42759,7611,"[""Headphones"", ""Laptop""]",650.23,"{""loyalty"": ""27%""}",78305,0,North America +2024-02-13,42760,6728,"[""Charger""]",1313.05,{},147099,0,Africa +2023-11-14,42761,9716,"[""Wireless Mouse""]",92.65,{},69292,0,Asia +2023-12-01,42762,6462,"[""Phone"", ""Keyboard"", ""Laptop""]",4514.53,{},145717,0,Africa +2024-07-12,42763,7462,"[""Phone"", ""Monitor"", ""Keyboard""]",733.96,{},94479,0,Asia +2023-04-08,42764,4504,"[""Monitor"", ""Laptop""]",4891.32,"{""loyalty"": ""20%""}",128709,1,Africa +2023-06-02,42765,2865,"[""Headphones"", ""Tablet""]",3532.88,{},229368,0,Europe +2024-07-02,42766,8975,"[""Tablet"", ""Headphones"", ""Phone""]",1351.29,{},205155,0,Africa +2024-07-21,42767,6128,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3400.72,{},34947,1,Europe +2023-03-29,42768,1745,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4388.0,{},106123,0,Asia +2024-03-19,42769,9207,"[""Headphones"", ""Monitor""]",4018.14,{},112493,0,South America +2023-08-13,42770,6793,"[""Phone"", ""Headphones"", ""Monitor""]",4256.64,{},42156,0,South America +2023-01-21,42771,120,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4325.69,"{""promo"": ""18%""}",210806,1,Europe +2024-04-10,42772,4193,"[""Wireless Mouse""]",2585.98,{},90902,1,Africa +2024-01-23,42773,8679,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3135.0,"{"""": ""10%""}",285955,1,South America +2023-07-23,42774,9038,"[""Laptop"", ""Charger"", ""Monitor""]",4967.09,{},147857,0,Europe +2023-03-22,42775,5547,"[""Wireless Mouse""]",2203.86,"{""promo"": ""20%""}",158228,0,Asia +2023-01-29,42776,7596,"[""Keyboard"", ""Headphones""]",3174.83,"{""loyalty"": ""17%""}",277051,1,North America +2024-02-06,42777,7090,"[""Keyboard"", ""Monitor"", ""Phone""]",3390.61,"{""promo"": ""25%""}",15434,0,South America +2024-10-10,42778,8772,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2864.35,{},153950,1,Asia +2023-10-06,42779,8957,"[""Headphones""]",3371.67,"{""promo"": ""25%""}",36962,0,Africa +2023-11-25,42780,7659,"[""Keyboard""]",1239.66,"{"""": ""24%""}",261595,1,South America +2024-06-14,42781,6783,"[""Phone"", ""Wireless Mouse""]",4248.91,"{""promo"": ""24%""}",217197,1,South America +2024-11-13,42782,1826,"[""Phone""]",4565.66,"{""seasonal"": ""15%""}",146146,1,South America +2023-10-16,42783,1419,"[""Laptop""]",216.94,{},299805,0,North America +2024-02-01,42784,4191,"[""Keyboard""]",2289.27,{},61105,1,South America +2024-07-21,42785,6726,"[""Monitor""]",1414.37,"{""promo"": ""21%""}",97166,0,Europe +2024-02-03,42786,1580,"[""Headphones"", ""Tablet""]",2089.23,"{""seasonal"": ""10%""}",30365,1,Europe +2023-01-09,42787,9864,"[""Tablet""]",997.79,{},223853,0,North America +2024-08-19,42788,9760,"[""Headphones"", ""Monitor""]",3326.19,"{""promo"": ""20%""}",175792,0,Asia +2023-11-16,42789,3384,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1349.03,"{"""": ""19%""}",30968,0,North America +2023-03-26,42790,8219,"[""Phone""]",973.6,"{"""": ""14%""}",296185,1,South America +2024-04-16,42791,427,"[""Keyboard"", ""Phone""]",3071.65,{},158497,1,Africa +2023-04-30,42792,9770,"[""Phone""]",834.33,"{""seasonal"": ""30%""}",23185,0,Europe +2023-09-04,42793,2976,"[""Phone"", ""Wireless Mouse""]",1729.81,"{""loyalty"": ""5%""}",287239,0,North America +2024-07-06,42794,2722,"[""Headphones""]",2104.62,{},137864,1,Africa +2024-07-18,42795,5031,"[""Monitor""]",434.79,"{""seasonal"": ""7%""}",136578,1,South America +2024-06-10,42796,5030,"[""Charger"", ""Phone""]",3335.96,"{""promo"": ""6%""}",282899,0,Europe +2023-12-29,42797,8715,"[""Monitor"", ""Keyboard""]",812.19,"{""promo"": ""9%""}",210760,1,Africa +2023-06-20,42798,1979,"[""Laptop"", ""Charger"", ""Headphones""]",4057.31,"{""loyalty"": ""19%""}",47213,0,Europe +2023-08-08,42799,6148,"[""Tablet""]",4408.75,{},295088,0,Europe +2023-03-04,42800,8653,"[""Keyboard"", ""Monitor"", ""Phone""]",2114.12,{},94176,1,South America +2024-04-03,42801,5383,"[""Headphones"", ""Laptop"", ""Monitor""]",1694.74,{},154307,1,North America +2024-11-26,42802,8906,"[""Wireless Mouse"", ""Headphones""]",3448.77,"{"""": ""12%""}",52863,0,Europe +2024-02-06,42803,1265,"[""Phone""]",1685.17,"{""promo"": ""20%""}",249526,0,Africa +2024-06-06,42804,1758,"[""Wireless Mouse""]",3872.25,"{""seasonal"": ""20%""}",161936,0,Europe +2024-03-04,42805,3799,"[""Headphones"", ""Wireless Mouse""]",3292.65,{},15534,1,North America +2024-02-05,42806,2467,"[""Tablet""]",2118.38,"{""loyalty"": ""17%""}",260867,0,South America +2023-05-30,42807,7271,"[""Phone""]",2750.82,"{""promo"": ""26%""}",153177,0,Africa +2023-10-23,42808,9673,"[""Headphones"", ""Keyboard""]",2676.65,"{"""": ""21%""}",278094,1,South America +2024-11-19,42809,3539,"[""Wireless Mouse""]",2172.65,"{"""": ""21%""}",116390,0,North America +2024-08-15,42810,966,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2946.9,{},52860,1,North America +2023-05-28,42811,3175,"[""Wireless Mouse"", ""Monitor""]",3929.41,{},211606,0,Europe +2024-11-14,42812,8803,"[""Tablet"", ""Keyboard""]",4702.41,{},235927,0,South America +2024-07-18,42813,4721,"[""Tablet""]",2668.01,{},187562,0,North America +2023-02-06,42814,9186,"[""Headphones"", ""Keyboard""]",4131.57,"{""promo"": ""5%""}",293064,0,Africa +2024-02-07,42815,4687,"[""Wireless Mouse""]",1852.49,{},28976,1,South America +2023-09-13,42816,6404,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3799.54,"{""seasonal"": ""17%""}",298373,0,South America +2023-11-29,42817,1527,"[""Headphones""]",3127.02,"{""promo"": ""13%""}",151867,0,Europe +2023-08-23,42818,383,"[""Charger"", ""Phone""]",4856.21,{},38348,0,Europe +2024-06-25,42819,150,"[""Charger"", ""Keyboard"", ""Tablet""]",931.37,"{""promo"": ""17%""}",172299,1,Asia +2024-11-01,42820,477,"[""Keyboard"", ""Charger""]",1502.26,"{""seasonal"": ""17%""}",216268,0,North America +2023-04-23,42821,2367,"[""Laptop""]",179.28,"{""loyalty"": ""12%""}",44239,1,North America +2024-08-14,42822,4340,"[""Tablet""]",4431.95,"{""promo"": ""22%""}",240659,0,Asia +2023-02-08,42823,8838,"[""Headphones"", ""Keyboard""]",648.91,"{"""": ""29%""}",58224,1,Asia +2024-07-19,42824,6180,"[""Monitor"", ""Charger""]",4131.23,{},218358,1,North America +2024-09-28,42825,7659,"[""Phone""]",1897.01,"{"""": ""26%""}",1505,1,Africa +2023-03-25,42826,9052,"[""Monitor"", ""Laptop"", ""Keyboard""]",1659.82,{},66162,1,Africa +2024-08-16,42827,6351,"[""Charger"", ""Keyboard"", ""Laptop""]",2143.52,"{""seasonal"": ""18%""}",244553,0,Europe +2024-05-12,42828,4577,"[""Laptop"", ""Phone""]",1519.68,{},72053,0,South America +2023-05-09,42829,5407,"[""Headphones"", ""Phone""]",3913.95,"{"""": ""16%""}",160707,1,North America +2024-02-15,42830,5797,"[""Charger"", ""Monitor"", ""Keyboard""]",2373.83,{},146242,1,South America +2024-01-11,42831,4084,"[""Monitor"", ""Phone"", ""Keyboard""]",2292.94,"{""seasonal"": ""30%""}",27046,1,Europe +2023-03-23,42832,1800,"[""Keyboard"", ""Phone""]",3673.6,"{""seasonal"": ""6%""}",261126,0,Africa +2023-05-05,42833,8098,"[""Phone"", ""Charger""]",1572.12,{},264152,1,South America +2024-01-02,42834,4467,"[""Keyboard"", ""Laptop"", ""Monitor""]",1972.65,{},16790,0,Europe +2023-11-18,42835,8538,"[""Tablet"", ""Phone"", ""Laptop""]",1912.72,"{"""": ""15%""}",220512,1,Europe +2023-07-14,42836,9705,"[""Charger"", ""Wireless Mouse""]",4430.85,"{"""": ""27%""}",22493,1,North America +2024-08-29,42837,6851,"[""Monitor"", ""Headphones"", ""Tablet""]",2568.77,{},88454,1,South America +2023-09-28,42838,2700,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",318.9,{},42259,1,Europe +2023-10-08,42839,4884,"[""Headphones"", ""Monitor""]",2348.04,"{"""": ""29%""}",31041,0,Asia +2024-03-01,42840,8598,"[""Charger"", ""Phone""]",275.83,{},26202,0,South America +2024-04-07,42841,665,"[""Tablet"", ""Phone"", ""Headphones""]",3715.3,{},241847,1,South America +2024-02-15,42842,7299,"[""Phone""]",4608.79,{},22358,0,North America +2023-02-27,42843,3392,"[""Headphones"", ""Charger"", ""Phone""]",826.38,{},207367,1,Europe +2023-04-24,42844,5063,"[""Wireless Mouse"", ""Phone""]",473.37,{},261632,1,Europe +2023-05-14,42845,9226,"[""Tablet""]",990.69,{},57045,0,Africa +2024-09-10,42846,7073,"[""Keyboard""]",1656.96,{},15026,1,Europe +2023-09-07,42847,5271,"[""Headphones"", ""Tablet"", ""Charger""]",4730.38,{},64907,1,Asia +2023-04-03,42848,1618,"[""Tablet""]",3770.23,"{""promo"": ""17%""}",270763,1,Africa +2024-10-26,42849,6486,"[""Charger"", ""Keyboard""]",1343.82,"{""promo"": ""10%""}",66331,0,Africa +2023-01-13,42850,2975,"[""Charger"", ""Phone"", ""Tablet""]",255.98,"{""seasonal"": ""7%""}",83891,0,North America +2024-05-07,42851,5853,"[""Phone""]",678.62,{},272827,1,South America +2023-04-12,42852,6729,"[""Tablet""]",1434.35,"{""seasonal"": ""7%""}",164360,0,North America +2024-09-10,42853,2362,"[""Headphones"", ""Tablet"", ""Monitor""]",796.06,"{"""": ""11%""}",294231,0,South America +2023-07-16,42854,9566,"[""Wireless Mouse"", ""Tablet""]",2310.31,"{""promo"": ""9%""}",134086,1,Africa +2023-05-27,42855,1543,"[""Wireless Mouse"", ""Monitor""]",318.01,"{"""": ""18%""}",210714,1,Africa +2024-10-08,42856,1917,"[""Tablet""]",644.15,"{""promo"": ""28%""}",188635,1,North America +2024-11-23,42857,6902,"[""Keyboard""]",1320.29,{},187385,0,Asia +2023-06-02,42858,6456,"[""Keyboard"", ""Laptop"", ""Headphones""]",4469.58,{},281592,1,North America +2023-09-20,42859,3514,"[""Wireless Mouse"", ""Monitor""]",970.52,{},190132,0,Africa +2023-08-03,42860,6045,"[""Charger"", ""Tablet""]",1436.05,{},67427,0,Africa +2024-10-27,42861,4041,"[""Keyboard"", ""Laptop""]",808.0,"{""loyalty"": ""19%""}",237568,0,Africa +2023-01-08,42862,1493,"[""Tablet""]",4274.55,"{""promo"": ""21%""}",11765,1,North America +2023-09-20,42863,2056,"[""Monitor"", ""Phone"", ""Headphones""]",2641.57,{},125719,1,Asia +2024-05-17,42864,5741,"[""Charger""]",724.6,{},106590,0,Europe +2024-01-13,42865,8597,"[""Monitor"", ""Keyboard"", ""Laptop""]",2738.0,{},161452,0,Europe +2024-09-13,42866,2645,"[""Wireless Mouse""]",3755.61,{},275435,1,North America +2024-03-04,42867,4344,"[""Wireless Mouse"", ""Laptop""]",4449.28,"{""promo"": ""17%""}",182561,0,South America +2024-04-28,42868,5466,"[""Charger""]",3927.74,"{"""": ""9%""}",229030,1,Africa +2024-06-21,42869,7778,"[""Wireless Mouse""]",705.09,{},270325,1,Africa +2024-11-12,42870,3874,"[""Laptop"", ""Headphones"", ""Phone""]",4584.53,{},53997,1,Europe +2024-11-09,42871,7289,"[""Monitor""]",2103.72,{},93233,0,South America +2023-06-24,42872,6981,"[""Laptop"", ""Keyboard"", ""Monitor""]",3017.4,"{""loyalty"": ""17%""}",57611,1,South America +2024-07-03,42873,8299,"[""Headphones"", ""Keyboard""]",511.41,"{"""": ""11%""}",156324,1,Africa +2023-03-31,42874,2927,"[""Charger"", ""Monitor""]",2646.57,{},273083,1,Europe +2024-08-07,42875,1961,"[""Phone"", ""Tablet""]",2753.46,"{""loyalty"": ""15%""}",289736,0,South America +2024-07-13,42876,4300,"[""Monitor""]",2757.6,{},45518,0,North America +2024-08-17,42877,1859,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1245.45,{},180747,0,Europe +2023-11-11,42878,3264,"[""Laptop"", ""Phone""]",1288.86,"{""seasonal"": ""23%""}",181896,1,Europe +2024-12-12,42879,6787,"[""Laptop"", ""Monitor""]",3811.99,{},64376,0,Africa +2023-02-12,42880,7016,"[""Monitor"", ""Phone""]",1755.66,{},223496,0,Africa +2024-02-17,42881,6587,"[""Phone"", ""Keyboard"", ""Tablet""]",1893.96,"{""seasonal"": ""13%""}",195771,0,South America +2023-04-23,42882,767,"[""Keyboard""]",773.91,"{""seasonal"": ""17%""}",79091,1,Asia +2024-04-01,42883,3238,"[""Charger"", ""Headphones""]",3052.97,"{""promo"": ""15%""}",144838,0,Africa +2024-11-27,42884,4235,"[""Keyboard"", ""Phone"", ""Laptop""]",1353.73,"{"""": ""25%""}",98128,1,Asia +2024-08-07,42885,9683,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3234.43,"{""promo"": ""6%""}",222158,0,Africa +2024-05-26,42886,1313,"[""Keyboard"", ""Laptop""]",2203.05,{},133077,1,North America +2023-09-17,42887,4924,"[""Phone"", ""Headphones""]",1224.8,"{""loyalty"": ""7%""}",21158,1,Europe +2024-01-06,42888,4483,"[""Tablet""]",2326.46,"{""seasonal"": ""7%""}",130838,0,Asia +2023-10-17,42889,102,"[""Headphones""]",4735.36,{},137767,1,North America +2024-11-27,42890,568,"[""Tablet"", ""Headphones""]",1422.89,{},291242,0,Asia +2023-04-06,42891,7226,"[""Tablet"", ""Monitor"", ""Charger""]",589.51,{},50028,1,North America +2023-09-24,42892,1940,"[""Tablet""]",3431.12,{},14655,0,Asia +2023-11-28,42893,1748,"[""Wireless Mouse"", ""Phone""]",3762.15,"{"""": ""16%""}",192047,1,Africa +2023-12-15,42894,4960,"[""Laptop""]",3570.15,"{""seasonal"": ""21%""}",159826,1,Africa +2023-04-29,42895,394,"[""Keyboard"", ""Headphones""]",376.01,{},128658,0,Europe +2024-06-19,42896,6312,"[""Headphones"", ""Tablet"", ""Charger""]",1207.37,{},130058,1,Europe +2024-01-07,42897,6465,"[""Tablet"", ""Phone""]",1226.38,{},225694,1,Asia +2023-01-04,42898,5563,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2107.91,"{""promo"": ""20%""}",256187,1,Europe +2024-10-19,42899,4915,"[""Charger"", ""Tablet""]",566.46,"{""promo"": ""13%""}",152308,1,Europe +2023-06-23,42900,6056,"[""Keyboard"", ""Monitor"", ""Laptop""]",2947.27,{},299644,1,Asia +2023-06-04,42901,5188,"[""Phone"", ""Headphones""]",3127.1,{},244082,1,Asia +2024-10-10,42902,7593,"[""Phone"", ""Headphones""]",4573.57,{},257901,1,Africa +2023-10-06,42903,7975,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3263.01,"{""seasonal"": ""30%""}",30247,1,Africa +2024-07-11,42904,3431,"[""Keyboard""]",3019.75,"{""seasonal"": ""8%""}",209219,1,Africa +2024-08-20,42905,7774,"[""Laptop""]",3082.39,"{""seasonal"": ""9%""}",15029,0,Europe +2023-04-19,42906,6569,"[""Wireless Mouse""]",2711.73,{},245842,0,Europe +2023-06-26,42907,1021,"[""Charger""]",4038.34,"{""seasonal"": ""30%""}",202160,1,Africa +2024-05-20,42908,8905,"[""Phone"", ""Monitor""]",1963.59,{},172175,1,Africa +2023-08-07,42909,8874,"[""Laptop"", ""Headphones"", ""Keyboard""]",1657.28,"{"""": ""12%""}",282411,0,Asia +2024-07-19,42910,5460,"[""Keyboard""]",684.27,"{""seasonal"": ""21%""}",25344,1,Europe +2024-09-28,42911,4214,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1669.15,"{""loyalty"": ""10%""}",285127,0,North America +2023-11-05,42912,4971,"[""Wireless Mouse""]",4653.93,{},22158,0,North America +2023-09-01,42913,1728,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2458.8,{},234565,1,Africa +2023-10-06,42914,9192,"[""Tablet"", ""Keyboard""]",302.4,"{"""": ""8%""}",121710,1,Africa +2024-05-24,42915,8085,"[""Phone"", ""Monitor"", ""Laptop""]",134.46,"{""loyalty"": ""24%""}",4980,1,Africa +2024-09-06,42916,4988,"[""Phone""]",3258.89,"{""seasonal"": ""25%""}",121717,1,Europe +2023-09-09,42917,4756,"[""Keyboard""]",1845.5,{},190552,0,Africa +2024-02-24,42918,5700,"[""Keyboard"", ""Wireless Mouse""]",1988.01,"{""loyalty"": ""26%""}",247733,0,Africa +2024-01-19,42919,4225,"[""Laptop"", ""Keyboard"", ""Monitor""]",715.94,"{""promo"": ""8%""}",78988,1,Asia +2023-10-29,42920,7316,"[""Phone""]",3592.34,"{""seasonal"": ""23%""}",158565,0,Asia +2024-11-22,42921,5737,"[""Wireless Mouse""]",2904.21,"{""promo"": ""16%""}",176860,1,Africa +2023-04-16,42922,6861,"[""Monitor""]",1342.48,{},27829,1,North America +2024-08-14,42923,2401,"[""Laptop""]",4363.71,{},140118,1,South America +2023-06-18,42924,5839,"[""Keyboard""]",4476.59,{},23568,0,Africa +2023-03-07,42925,6025,"[""Laptop""]",4227.74,{},203243,1,South America +2024-11-22,42926,4979,"[""Monitor""]",3316.21,"{""loyalty"": ""29%""}",9298,1,North America +2023-11-25,42927,8065,"[""Laptop"", ""Phone""]",4589.24,"{""loyalty"": ""13%""}",272007,0,Europe +2024-08-27,42928,252,"[""Monitor"", ""Tablet""]",2684.98,{},270671,0,Africa +2024-11-15,42929,3006,"[""Phone"", ""Monitor""]",4039.3,"{""promo"": ""25%""}",96382,1,Africa +2024-03-21,42930,3581,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4509.39,{},267826,0,South America +2023-10-04,42931,9832,"[""Monitor""]",2087.04,{},230779,1,Europe +2024-08-19,42932,189,"[""Phone""]",3848.97,{},43725,1,South America +2024-10-02,42933,9629,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4905.5,"{""seasonal"": ""6%""}",261102,1,Asia +2024-06-15,42934,3163,"[""Tablet"", ""Monitor"", ""Phone""]",2605.08,"{"""": ""13%""}",204837,1,South America +2024-03-13,42935,4731,"[""Charger""]",3772.12,{},61782,1,North America +2023-12-19,42936,7003,"[""Laptop""]",3550.66,"{""seasonal"": ""13%""}",172360,0,South America +2023-11-25,42937,9161,"[""Charger"", ""Keyboard"", ""Phone""]",4382.19,{},110093,1,Europe +2023-08-18,42938,3188,"[""Charger"", ""Tablet""]",2832.64,{},183503,1,Europe +2024-12-05,42939,9566,"[""Headphones"", ""Monitor"", ""Keyboard""]",371.36,{},190956,1,Africa +2024-11-27,42940,8255,"[""Monitor"", ""Keyboard""]",2180.42,"{""seasonal"": ""17%""}",264144,1,Asia +2023-06-11,42941,1824,"[""Tablet""]",2596.99,"{""loyalty"": ""11%""}",285526,1,Asia +2023-03-04,42942,7888,"[""Monitor""]",2528.44,"{""loyalty"": ""15%""}",35173,0,South America +2023-03-13,42943,8034,"[""Keyboard""]",4605.33,{},128946,0,South America +2024-05-03,42944,3197,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",821.67,{},135787,1,South America +2024-03-26,42945,2974,"[""Laptop"", ""Wireless Mouse""]",4338.38,{},257414,0,South America +2024-04-28,42946,665,"[""Monitor"", ""Charger""]",947.72,"{""promo"": ""19%""}",293497,1,Europe +2024-01-18,42947,3895,"[""Tablet"", ""Headphones""]",302.02,{},226548,1,South America +2024-10-31,42948,6066,"[""Tablet"", ""Laptop""]",4281.1,{},230563,1,Africa +2024-10-27,42949,7771,"[""Wireless Mouse""]",123.72,{},250057,0,Europe +2024-06-10,42950,7646,"[""Charger"", ""Tablet""]",4512.32,"{""promo"": ""9%""}",187237,1,Europe +2023-03-14,42951,6897,"[""Laptop""]",4528.34,{},283799,1,Asia +2024-01-17,42952,653,"[""Headphones""]",1934.19,{},20040,1,Africa +2024-04-20,42953,7734,"[""Headphones""]",2538.21,{},50262,0,North America +2023-04-24,42954,4451,"[""Tablet"", ""Phone"", ""Monitor""]",2561.22,{},291761,0,Europe +2024-07-24,42955,8651,"[""Wireless Mouse"", ""Charger""]",4347.2,{},200334,0,South America +2023-06-08,42956,8991,"[""Charger"", ""Phone"", ""Tablet""]",191.03,{},18469,0,North America +2023-02-06,42957,2405,"[""Keyboard""]",840.58,"{""loyalty"": ""27%""}",121544,1,Africa +2023-07-24,42958,4740,"[""Tablet"", ""Headphones""]",4664.96,"{""loyalty"": ""25%""}",207605,1,Asia +2023-03-23,42959,9438,"[""Keyboard"", ""Tablet""]",2564.27,"{""loyalty"": ""10%""}",1501,1,Asia +2023-10-28,42960,3837,"[""Tablet"", ""Headphones""]",3993.56,{},89990,1,Asia +2023-02-09,42961,9823,"[""Charger""]",1754.05,"{"""": ""20%""}",188207,1,South America +2024-08-03,42962,1930,"[""Monitor"", ""Charger""]",2956.76,"{"""": ""21%""}",93960,1,Europe +2023-09-25,42963,4246,"[""Tablet"", ""Monitor"", ""Headphones""]",4269.73,"{""seasonal"": ""28%""}",212731,1,North America +2023-02-08,42964,2723,"[""Keyboard"", ""Headphones"", ""Charger""]",2974.12,"{""seasonal"": ""22%""}",24746,1,Europe +2024-09-16,42965,4756,"[""Phone"", ""Headphones"", ""Monitor""]",2511.85,"{""seasonal"": ""7%""}",149193,1,Asia +2023-08-12,42966,1174,"[""Monitor"", ""Phone""]",1873.79,"{""promo"": ""14%""}",257261,1,South America +2024-06-23,42967,5897,"[""Monitor"", ""Headphones"", ""Laptop""]",2614.56,"{""loyalty"": ""20%""}",227996,1,Asia +2023-03-25,42968,5391,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1470.12,"{""promo"": ""25%""}",89933,1,South America +2023-07-20,42969,6558,"[""Charger""]",4656.59,"{""loyalty"": ""12%""}",20469,1,Africa +2023-03-20,42970,9585,"[""Tablet""]",54.04,{},276000,0,South America +2023-11-23,42971,9073,"[""Phone"", ""Tablet"", ""Headphones""]",2034.2,"{""seasonal"": ""25%""}",129088,1,South America +2024-12-18,42972,8299,"[""Monitor"", ""Headphones""]",1359.19,{},91347,0,North America +2023-09-05,42973,4230,"[""Tablet""]",673.78,"{"""": ""24%""}",109479,0,Africa +2024-03-28,42974,2138,"[""Laptop"", ""Monitor"", ""Phone""]",1395.89,{},281700,0,South America +2023-01-18,42975,3811,"[""Headphones"", ""Phone""]",3535.38,"{""promo"": ""11%""}",15432,1,North America +2024-03-16,42976,5036,"[""Wireless Mouse"", ""Phone""]",1273.89,"{"""": ""23%""}",13488,1,Africa +2024-09-22,42977,4351,"[""Phone"", ""Monitor""]",3298.25,"{""seasonal"": ""10%""}",243322,1,Africa +2024-01-19,42978,8574,"[""Charger""]",3904.51,{},259487,0,South America +2023-10-14,42979,3392,"[""Monitor"", ""Laptop"", ""Charger""]",1344.4,"{"""": ""25%""}",6917,0,Asia +2023-08-26,42980,3017,"[""Keyboard""]",3861.81,"{""seasonal"": ""18%""}",93332,0,Africa +2024-09-13,42981,2094,"[""Monitor"", ""Phone""]",3001.05,"{""loyalty"": ""27%""}",215091,0,South America +2023-06-17,42982,5670,"[""Wireless Mouse""]",2638.4,"{""promo"": ""11%""}",29056,0,Asia +2024-02-04,42983,6781,"[""Keyboard""]",870.7,"{""loyalty"": ""30%""}",21122,0,Europe +2023-07-14,42984,8247,"[""Keyboard"", ""Tablet""]",149.31,"{""seasonal"": ""23%""}",64773,0,Europe +2023-09-18,42985,1815,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3029.65,"{""loyalty"": ""25%""}",67227,0,South America +2023-02-27,42986,6438,"[""Phone"", ""Keyboard"", ""Headphones""]",1537.19,{},253003,1,North America +2023-01-17,42987,6872,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3096.12,{},204189,0,Asia +2023-08-21,42988,1768,"[""Headphones""]",4336.79,"{""seasonal"": ""19%""}",27951,0,South America +2024-10-07,42989,2759,"[""Phone"", ""Keyboard""]",1096.7,"{""loyalty"": ""6%""}",83877,1,Asia +2024-04-26,42990,7487,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1197.4,"{""seasonal"": ""19%""}",193341,0,Europe +2023-07-05,42991,4602,"[""Headphones"", ""Phone"", ""Tablet""]",3807.52,"{""promo"": ""12%""}",35091,0,Europe +2024-12-28,42992,7900,"[""Headphones"", ""Wireless Mouse""]",414.54,{},86274,0,Europe +2024-07-03,42993,6117,"[""Tablet"", ""Laptop""]",1719.42,{},137734,1,Europe +2023-08-09,42994,4970,"[""Laptop"", ""Monitor""]",1325.97,"{""promo"": ""17%""}",145546,0,Europe +2023-03-29,42995,3804,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1219.17,{},174426,0,South America +2024-05-30,42996,8645,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2263.44,{},151518,1,Asia +2024-11-03,42997,5217,"[""Charger"", ""Headphones"", ""Phone""]",435.76,{},240717,1,South America +2024-02-12,42998,1992,"[""Keyboard""]",4496.05,"{""promo"": ""27%""}",15850,1,Asia +2023-08-19,42999,4900,"[""Tablet"", ""Keyboard""]",1407.51,{},188986,0,Africa +2023-07-22,43000,5441,"[""Wireless Mouse"", ""Charger""]",794.63,"{"""": ""7%""}",166592,0,North America +2024-12-09,43001,1835,"[""Monitor""]",2366.8,"{"""": ""10%""}",282099,1,South America +2024-03-20,43002,5019,"[""Tablet""]",3395.46,{},157669,0,Asia +2024-05-31,43003,5130,"[""Tablet"", ""Monitor"", ""Charger""]",3786.79,{},2183,1,Europe +2023-02-11,43004,5453,"[""Phone"", ""Monitor"", ""Tablet""]",3585.95,"{"""": ""20%""}",247145,0,Europe +2023-09-29,43005,7374,"[""Phone""]",1101.24,"{""seasonal"": ""30%""}",217879,0,South America +2024-07-14,43006,4999,"[""Monitor"", ""Laptop""]",1628.95,{},211663,1,Europe +2023-09-26,43007,1580,"[""Laptop"", ""Charger""]",4880.3,{},2660,1,South America +2023-08-26,43008,8033,"[""Phone"", ""Laptop"", ""Charger""]",3747.23,"{""promo"": ""21%""}",53452,0,Asia +2023-05-08,43009,2480,"[""Headphones"", ""Tablet"", ""Phone""]",826.86,{},209147,1,Asia +2023-05-23,43010,6095,"[""Charger"", ""Laptop"", ""Headphones""]",4546.07,"{""promo"": ""15%""}",241414,1,South America +2023-01-20,43011,4543,"[""Headphones"", ""Laptop"", ""Phone""]",1808.22,"{"""": ""18%""}",236232,0,Africa +2024-04-06,43012,6507,"[""Tablet""]",4394.93,{},277301,0,Asia +2024-07-03,43013,4328,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4785.12,{},240139,0,North America +2024-10-06,43014,7941,"[""Headphones""]",3468.18,{},8712,1,South America +2023-04-27,43015,3504,"[""Phone"", ""Charger""]",3358.63,"{""loyalty"": ""27%""}",166723,0,Asia +2024-03-18,43016,6813,"[""Tablet"", ""Headphones""]",1072.31,"{""seasonal"": ""25%""}",214512,1,North America +2023-04-30,43017,4867,"[""Laptop"", ""Keyboard""]",4939.29,{},6271,0,South America +2023-01-01,43018,5688,"[""Headphones"", ""Keyboard""]",2892.6,"{""loyalty"": ""17%""}",88072,0,North America +2024-05-07,43019,4935,"[""Monitor"", ""Tablet""]",2983.55,{},133245,1,Africa +2024-06-07,43020,6092,"[""Monitor"", ""Keyboard""]",4260.32,"{""promo"": ""22%""}",73101,1,North America +2024-10-12,43021,8463,"[""Laptop""]",3490.56,{},73531,1,North America +2023-12-23,43022,1277,"[""Laptop"", ""Keyboard"", ""Charger""]",4258.56,{},237882,1,North America +2024-05-24,43023,9942,"[""Monitor"", ""Tablet""]",146.0,{},220322,0,North America +2023-01-08,43024,4781,"[""Monitor""]",835.55,{},200617,1,Asia +2023-01-18,43025,4774,"[""Keyboard""]",663.19,"{""promo"": ""21%""}",84148,0,North America +2023-10-16,43026,3450,"[""Phone""]",1256.25,"{"""": ""9%""}",76425,1,North America +2024-07-30,43027,3617,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4852.83,{},97891,1,Asia +2024-08-17,43028,4233,"[""Phone"", ""Laptop""]",4543.98,{},202642,0,North America +2024-04-10,43029,7434,"[""Charger"", ""Headphones""]",1326.23,{},293486,0,Asia +2023-11-04,43030,3245,"[""Charger"", ""Tablet""]",2769.51,{},26300,1,Europe +2023-01-15,43031,6425,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3132.35,"{"""": ""10%""}",182023,0,Africa +2023-02-28,43032,8562,"[""Keyboard"", ""Charger""]",2236.73,{},68965,1,Africa +2024-02-13,43033,459,"[""Keyboard"", ""Laptop""]",2207.61,"{""loyalty"": ""9%""}",90240,1,North America +2023-12-29,43034,1339,"[""Monitor""]",3760.02,"{""promo"": ""29%""}",294965,1,Europe +2024-02-25,43035,7347,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1834.69,"{"""": ""21%""}",159013,1,South America +2023-01-20,43036,7166,"[""Wireless Mouse""]",1941.29,{},252784,1,Europe +2024-03-07,43037,8187,"[""Charger""]",4000.74,"{"""": ""10%""}",260570,0,Asia +2023-07-14,43038,7253,"[""Headphones"", ""Laptop""]",630.31,"{""loyalty"": ""23%""}",51373,1,South America +2024-04-15,43039,6188,"[""Keyboard"", ""Wireless Mouse""]",2708.0,{},144752,1,South America +2024-08-29,43040,4551,"[""Laptop"", ""Wireless Mouse""]",382.0,"{"""": ""16%""}",103418,1,Europe +2023-07-08,43041,5394,"[""Laptop""]",1896.13,{},199962,1,North America +2024-06-04,43042,6015,"[""Headphones"", ""Wireless Mouse""]",4123.87,"{""loyalty"": ""19%""}",139754,0,Africa +2023-09-11,43043,3269,"[""Keyboard""]",1060.56,"{"""": ""7%""}",110939,1,South America +2024-02-01,43044,5220,"[""Headphones""]",1062.34,{},63627,0,Africa +2024-12-01,43045,1378,"[""Headphones"", ""Tablet"", ""Laptop""]",1671.28,"{""seasonal"": ""28%""}",203192,1,North America +2024-11-12,43046,3632,"[""Phone""]",4936.64,{},77625,0,Europe +2023-03-17,43047,4688,"[""Phone""]",2234.98,"{""seasonal"": ""7%""}",280366,1,South America +2023-01-30,43048,8597,"[""Charger"", ""Laptop""]",3525.25,{},236635,0,North America +2024-05-01,43049,7122,"[""Laptop"", ""Monitor"", ""Tablet""]",779.1,"{""promo"": ""16%""}",29191,1,Europe +2023-12-21,43050,1494,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2340.28,{},6723,0,North America +2024-02-08,43051,7187,"[""Headphones"", ""Charger""]",2938.4,{},245477,1,South America +2023-08-15,43052,1574,"[""Headphones""]",4022.66,"{"""": ""22%""}",23484,0,North America +2024-11-24,43053,2758,"[""Tablet""]",928.96,"{"""": ""23%""}",133328,0,Asia +2023-04-02,43054,527,"[""Phone"", ""Laptop"", ""Headphones""]",4953.58,{},8539,0,South America +2024-07-04,43055,5289,"[""Phone"", ""Headphones""]",4369.61,"{"""": ""9%""}",84424,0,Europe +2024-10-30,43056,6603,"[""Phone"", ""Laptop"", ""Charger""]",2646.32,{},197306,1,Asia +2023-01-15,43057,9721,"[""Phone"", ""Monitor""]",1737.89,{},202551,1,Asia +2024-05-02,43058,5869,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4555.0,{},65087,0,North America +2023-01-17,43059,2095,"[""Phone"", ""Headphones"", ""Laptop""]",4180.56,"{""loyalty"": ""18%""}",155004,1,North America +2024-10-19,43060,331,"[""Phone"", ""Charger"", ""Keyboard""]",4490.49,"{""loyalty"": ""13%""}",29254,1,Europe +2024-01-04,43061,1157,"[""Charger"", ""Tablet"", ""Laptop""]",4371.94,"{""seasonal"": ""28%""}",132552,1,South America +2023-09-10,43062,9343,"[""Keyboard"", ""Laptop"", ""Monitor""]",425.06,{},61531,1,Asia +2024-02-29,43063,7028,"[""Charger""]",2477.55,"{""loyalty"": ""22%""}",117014,0,Africa +2024-01-04,43064,2953,"[""Wireless Mouse""]",126.89,{},74037,1,South America +2024-03-11,43065,6700,"[""Monitor"", ""Wireless Mouse""]",705.72,{},282015,1,South America +2024-04-28,43066,7808,"[""Laptop"", ""Monitor"", ""Headphones""]",4250.53,{},125238,1,Europe +2024-04-19,43067,5586,"[""Keyboard"", ""Charger"", ""Phone""]",2810.96,"{""promo"": ""22%""}",20108,1,Europe +2023-10-23,43068,1997,"[""Headphones"", ""Charger"", ""Tablet""]",3534.47,{},242510,1,Asia +2024-11-12,43069,4016,"[""Laptop"", ""Headphones""]",3604.72,"{""seasonal"": ""16%""}",205489,1,Asia +2024-09-27,43070,1039,"[""Laptop""]",4401.2,"{"""": ""30%""}",187266,1,South America +2023-02-23,43071,6735,"[""Charger""]",764.5,"{""loyalty"": ""30%""}",99178,1,South America +2023-08-27,43072,8807,"[""Monitor"", ""Tablet""]",2424.28,{},157527,0,South America +2024-03-07,43073,536,"[""Wireless Mouse""]",4473.8,"{""loyalty"": ""15%""}",56127,0,South America +2023-03-05,43074,1465,"[""Tablet"", ""Monitor""]",4216.03,{},200281,1,Europe +2024-08-26,43075,768,"[""Laptop""]",3181.15,{},141677,0,Africa +2024-07-21,43076,7374,"[""Tablet""]",2401.08,"{""promo"": ""28%""}",237076,1,Europe +2023-07-20,43077,9501,"[""Headphones"", ""Tablet""]",4451.65,"{"""": ""14%""}",249687,0,Asia +2024-12-23,43078,2940,"[""Monitor""]",1668.48,{},264789,1,South America +2024-05-30,43079,1406,"[""Tablet""]",1098.52,"{""promo"": ""6%""}",119335,0,North America +2023-07-12,43080,7919,"[""Headphones"", ""Charger"", ""Laptop""]",3004.05,"{""promo"": ""18%""}",249895,0,South America +2024-11-18,43081,7068,"[""Monitor"", ""Charger""]",60.94,{},100780,1,South America +2024-09-22,43082,2851,"[""Monitor"", ""Keyboard""]",2102.09,{},55563,0,North America +2023-12-06,43083,7842,"[""Wireless Mouse"", ""Monitor""]",694.33,"{""loyalty"": ""24%""}",110323,0,North America +2024-05-13,43084,1880,"[""Keyboard""]",1794.17,{},295185,1,Asia +2023-01-04,43085,8498,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",482.04,{},13666,0,Africa +2023-02-17,43086,9715,"[""Monitor"", ""Tablet""]",1290.24,{},222202,0,Europe +2023-09-02,43087,2330,"[""Tablet"", ""Phone"", ""Keyboard""]",247.63,"{""loyalty"": ""11%""}",27779,1,Asia +2023-03-01,43088,3377,"[""Headphones""]",1099.74,"{""loyalty"": ""8%""}",40651,0,South America +2024-12-26,43089,7646,"[""Monitor""]",3839.61,"{""promo"": ""16%""}",80523,0,Africa +2024-11-13,43090,1922,"[""Tablet""]",1672.2,"{""loyalty"": ""20%""}",274426,1,Asia +2023-06-16,43091,9386,"[""Phone"", ""Wireless Mouse""]",2870.71,{},280404,1,South America +2023-10-28,43092,3758,"[""Phone""]",2950.48,{},247228,0,North America +2023-02-26,43093,6018,"[""Phone"", ""Charger"", ""Keyboard""]",260.59,"{""seasonal"": ""26%""}",54889,0,Africa +2023-10-01,43094,5001,"[""Headphones"", ""Tablet""]",2181.61,"{""seasonal"": ""5%""}",66669,0,North America +2024-12-18,43095,8937,"[""Laptop""]",1010.47,{},168692,1,North America +2023-08-24,43096,5751,"[""Tablet"", ""Laptop""]",2107.4,"{""seasonal"": ""30%""}",137931,1,South America +2023-06-01,43097,6403,"[""Laptop""]",1461.28,"{"""": ""7%""}",1298,1,Asia +2024-05-30,43098,6507,"[""Keyboard"", ""Laptop""]",4933.02,{},159576,1,South America +2023-08-12,43099,6034,"[""Monitor"", ""Phone"", ""Laptop""]",4477.65,"{""promo"": ""25%""}",11483,1,Europe +2023-12-08,43100,3867,"[""Charger""]",1858.5,"{""seasonal"": ""23%""}",264032,0,Africa +2023-12-17,43101,324,"[""Keyboard"", ""Laptop"", ""Tablet""]",3146.32,{},299692,0,North America +2023-01-23,43102,1370,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",134.5,{},283043,0,North America +2023-02-07,43103,6662,"[""Headphones"", ""Monitor"", ""Laptop""]",2163.24,"{"""": ""28%""}",117482,1,North America +2023-05-18,43104,2237,"[""Headphones""]",566.99,"{""loyalty"": ""18%""}",204662,1,North America +2024-12-13,43105,1732,"[""Keyboard"", ""Monitor""]",66.03,"{""promo"": ""9%""}",215801,0,South America +2024-12-19,43106,3366,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",601.73,{},250350,1,Europe +2023-11-21,43107,3401,"[""Laptop""]",2542.88,"{"""": ""18%""}",72962,0,Asia +2024-07-15,43108,2405,"[""Wireless Mouse"", ""Charger""]",2728.39,{},77642,1,Asia +2023-03-24,43109,3024,"[""Monitor"", ""Wireless Mouse""]",3021.34,{},141996,0,North America +2023-12-23,43110,1333,"[""Monitor"", ""Charger""]",3827.17,{},31497,1,Asia +2024-11-27,43111,7661,"[""Headphones"", ""Charger""]",1815.33,"{""seasonal"": ""19%""}",13009,0,Europe +2023-08-05,43112,5928,"[""Charger""]",4743.23,{},297497,1,Africa +2023-01-29,43113,6414,"[""Charger""]",2581.27,"{""seasonal"": ""27%""}",295496,1,Asia +2023-04-26,43114,3413,"[""Monitor"", ""Keyboard""]",4859.88,{},56770,0,South America +2024-02-13,43115,2219,"[""Phone""]",1796.64,"{""promo"": ""11%""}",197896,0,Europe +2024-08-22,43116,9726,"[""Keyboard"", ""Tablet""]",2241.72,{},99297,0,Europe +2023-10-08,43117,9390,"[""Laptop"", ""Tablet"", ""Phone""]",3486.85,"{""seasonal"": ""24%""}",148522,0,North America +2023-01-24,43118,3507,"[""Headphones"", ""Phone"", ""Charger""]",3293.96,"{""seasonal"": ""15%""}",52693,1,Europe +2023-08-02,43119,2527,"[""Headphones"", ""Charger"", ""Tablet""]",1297.62,{},157361,0,South America +2024-08-09,43120,8552,"[""Monitor"", ""Charger""]",4797.54,{},210968,1,North America +2023-04-06,43121,9280,"[""Wireless Mouse"", ""Keyboard""]",1798.59,{},93872,1,North America +2024-02-06,43122,2934,"[""Phone"", ""Monitor""]",919.69,{},223959,1,North America +2023-10-13,43123,9789,"[""Headphones"", ""Monitor"", ""Charger""]",129.16,"{"""": ""13%""}",262407,1,Europe +2023-07-05,43124,7769,"[""Wireless Mouse"", ""Charger""]",571.29,{},227192,1,Europe +2024-07-06,43125,9316,"[""Headphones"", ""Keyboard""]",334.08,{},5515,0,South America +2024-12-22,43126,5695,"[""Headphones""]",2041.75,{},155410,1,Europe +2023-08-10,43127,641,"[""Charger"", ""Phone"", ""Keyboard""]",1555.91,"{""seasonal"": ""21%""}",206599,1,Asia +2024-02-24,43128,6721,"[""Phone"", ""Laptop"", ""Tablet""]",354.85,{},267267,1,Europe +2023-04-11,43129,7199,"[""Laptop""]",4155.44,{},276714,1,Europe +2023-11-06,43130,3280,"[""Charger"", ""Monitor"", ""Tablet""]",3004.02,{},251483,1,Europe +2024-06-10,43131,7996,"[""Monitor"", ""Charger"", ""Headphones""]",183.75,{},243364,1,North America +2023-12-07,43132,6248,"[""Charger""]",3136.64,{},102819,1,Africa +2024-01-17,43133,3714,"[""Monitor""]",3575.72,"{""promo"": ""29%""}",89661,0,North America +2023-08-25,43134,5468,"[""Phone""]",4571.72,{},226944,1,Asia +2024-12-27,43135,8286,"[""Keyboard"", ""Phone""]",2772.19,{},197122,1,Asia +2024-03-12,43136,9935,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4005.82,"{""loyalty"": ""15%""}",179373,0,South America +2023-10-04,43137,3608,"[""Laptop""]",3439.76,"{""loyalty"": ""27%""}",84376,1,South America +2024-08-01,43138,7608,"[""Keyboard""]",797.22,"{"""": ""10%""}",141052,1,Africa +2024-02-07,43139,9436,"[""Phone""]",3731.21,{},9541,1,North America +2024-09-28,43140,9350,"[""Keyboard"", ""Monitor"", ""Laptop""]",274.55,{},275219,0,Africa +2023-10-16,43141,2070,"[""Tablet""]",1309.1,{},109540,0,Africa +2023-03-27,43142,8484,"[""Charger""]",4087.03,{},21838,1,Africa +2024-12-03,43143,4439,"[""Headphones"", ""Keyboard""]",3694.0,{},132292,0,South America +2023-03-11,43144,2174,"[""Wireless Mouse""]",2637.76,"{""seasonal"": ""19%""}",142034,0,South America +2024-12-15,43145,7615,"[""Charger"", ""Laptop"", ""Tablet""]",4846.51,"{""promo"": ""20%""}",21025,1,Asia +2023-06-11,43146,3610,"[""Laptop""]",4122.0,"{""seasonal"": ""29%""}",45356,0,Asia +2023-12-18,43147,8465,"[""Charger"", ""Wireless Mouse""]",742.1,"{"""": ""13%""}",221205,0,North America +2024-01-24,43148,49,"[""Keyboard"", ""Charger""]",1606.88,{},59741,0,Africa +2024-11-14,43149,8878,"[""Phone"", ""Tablet""]",867.95,"{""loyalty"": ""6%""}",213477,0,Africa +2023-09-13,43150,2472,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",748.26,{},45913,0,Africa +2024-09-22,43151,38,"[""Keyboard""]",409.0,{},135196,0,South America +2023-11-03,43152,4399,"[""Headphones"", ""Phone"", ""Laptop""]",3391.48,{},272166,1,North America +2023-02-01,43153,8108,"[""Headphones"", ""Wireless Mouse""]",2436.41,"{""seasonal"": ""11%""}",47995,0,Asia +2023-03-13,43154,380,"[""Tablet""]",3648.2,{},73673,1,Africa +2024-02-02,43155,9228,"[""Phone"", ""Keyboard"", ""Monitor""]",4408.59,{},74182,1,South America +2023-01-25,43156,5000,"[""Tablet""]",4619.36,{},60919,1,Europe +2024-01-07,43157,9757,"[""Headphones"", ""Wireless Mouse""]",739.32,"{""loyalty"": ""13%""}",189510,1,Asia +2023-10-25,43158,2741,"[""Charger"", ""Laptop""]",4172.42,{},49114,1,North America +2023-06-19,43159,4001,"[""Monitor"", ""Laptop""]",2485.97,"{""promo"": ""5%""}",68570,0,North America +2023-12-10,43160,6142,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2764.37,"{""promo"": ""28%""}",3388,0,South America +2023-02-22,43161,2014,"[""Charger"", ""Headphones"", ""Laptop""]",1817.88,{},252840,1,Europe +2024-03-13,43162,2286,"[""Headphones"", ""Laptop""]",1427.09,{},208021,1,North America +2024-07-16,43163,4977,"[""Headphones"", ""Monitor""]",1631.16,{},87830,0,Africa +2023-05-27,43164,2824,"[""Charger""]",2505.84,"{"""": ""28%""}",14226,1,North America +2023-02-27,43165,8293,"[""Wireless Mouse"", ""Tablet""]",173.36,"{""seasonal"": ""21%""}",281864,0,South America +2024-05-28,43166,5558,"[""Tablet""]",4095.13,{},212396,1,Europe +2023-11-07,43167,44,"[""Wireless Mouse""]",2131.08,"{"""": ""18%""}",72303,1,North America +2024-01-12,43168,7162,"[""Monitor"", ""Keyboard""]",4157.84,{},65228,1,Europe +2024-07-10,43169,6833,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3629.27,"{""loyalty"": ""13%""}",70082,0,Africa +2024-06-25,43170,6457,"[""Keyboard""]",2809.39,"{""loyalty"": ""13%""}",128942,1,North America +2023-12-26,43171,2032,"[""Wireless Mouse""]",2069.04,{},71525,0,Europe +2023-04-24,43172,7602,"[""Laptop"", ""Wireless Mouse""]",4137.22,"{""seasonal"": ""6%""}",32419,1,South America +2023-02-11,43173,3105,"[""Charger""]",1925.6,"{""promo"": ""8%""}",50113,0,Africa +2023-01-11,43174,3658,"[""Laptop"", ""Wireless Mouse""]",3929.26,{},109566,1,Asia +2023-03-08,43175,7469,"[""Keyboard""]",4687.39,{},114570,0,South America +2024-06-23,43176,9553,"[""Keyboard""]",4270.39,{},252899,0,Europe +2023-02-12,43177,3296,"[""Phone""]",564.46,"{""seasonal"": ""26%""}",3758,1,Asia +2023-02-20,43178,8525,"[""Wireless Mouse""]",1959.17,"{""promo"": ""5%""}",255122,0,South America +2023-03-17,43179,1645,"[""Phone""]",1287.5,{},134539,1,Europe +2023-10-24,43180,2043,"[""Charger""]",3269.41,"{"""": ""24%""}",74571,0,South America +2024-08-18,43181,3284,"[""Keyboard"", ""Monitor"", ""Phone""]",3341.05,{},106405,1,Europe +2023-04-12,43182,4805,"[""Laptop"", ""Headphones""]",4195.89,"{""seasonal"": ""10%""}",247449,1,North America +2023-08-01,43183,9461,"[""Phone""]",860.79,"{""seasonal"": ""26%""}",208986,0,Europe +2023-04-20,43184,3262,"[""Charger"", ""Phone""]",3889.37,{},10799,1,South America +2023-03-20,43185,4724,"[""Headphones""]",2654.8,"{"""": ""15%""}",36018,0,North America +2023-04-24,43186,5621,"[""Monitor"", ""Headphones"", ""Laptop""]",951.34,"{""promo"": ""23%""}",151744,0,North America +2024-11-11,43187,5279,"[""Wireless Mouse"", ""Keyboard""]",3117.47,{},12472,1,Africa +2023-02-21,43188,8441,"[""Charger""]",4716.39,"{""loyalty"": ""25%""}",102144,0,Africa +2024-06-11,43189,5519,"[""Laptop"", ""Phone""]",1469.95,"{""promo"": ""9%""}",148928,0,South America +2024-07-26,43190,954,"[""Monitor"", ""Tablet"", ""Phone""]",4912.32,{},271008,1,Europe +2024-10-15,43191,3133,"[""Charger"", ""Wireless Mouse""]",2107.25,"{"""": ""22%""}",298667,0,South America +2024-03-20,43192,594,"[""Tablet""]",3126.86,"{"""": ""26%""}",259747,0,Africa +2023-10-23,43193,3768,"[""Charger""]",1133.41,{},52878,1,Asia +2023-11-18,43194,7605,"[""Phone""]",3841.14,{},128004,0,Asia +2023-01-09,43195,1043,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4906.45,{},226113,1,Europe +2023-07-08,43196,8943,"[""Phone"", ""Laptop""]",2759.73,"{""promo"": ""16%""}",145885,1,Asia +2024-01-18,43197,7040,"[""Laptop"", ""Charger"", ""Keyboard""]",4006.86,"{""seasonal"": ""11%""}",30764,1,Africa +2023-05-13,43198,9697,"[""Wireless Mouse"", ""Charger""]",335.14,"{""loyalty"": ""25%""}",299481,1,North America +2023-11-18,43199,355,"[""Tablet"", ""Keyboard""]",3474.04,"{""loyalty"": ""10%""}",105225,0,North America +2023-12-20,43200,850,"[""Tablet"", ""Headphones""]",756.35,"{""loyalty"": ""25%""}",69793,1,Europe +2023-07-17,43201,659,"[""Keyboard"", ""Charger""]",1113.12,"{""seasonal"": ""14%""}",253297,1,North America +2023-05-06,43202,875,"[""Charger""]",326.56,{},253890,1,South America +2024-07-18,43203,7134,"[""Keyboard"", ""Headphones"", ""Charger""]",3516.47,"{""loyalty"": ""24%""}",10859,0,Africa +2023-12-27,43204,9311,"[""Phone"", ""Keyboard"", ""Headphones""]",1361.83,{},226043,1,Europe +2024-11-10,43205,3497,"[""Headphones"", ""Tablet""]",4886.97,"{"""": ""14%""}",113026,1,Asia +2023-09-03,43206,940,"[""Laptop"", ""Headphones""]",1373.53,"{""loyalty"": ""15%""}",263658,0,North America +2023-09-08,43207,5157,"[""Monitor""]",437.81,"{""seasonal"": ""19%""}",87967,0,South America +2023-08-20,43208,5789,"[""Charger"", ""Tablet""]",2710.38,{},31292,1,Africa +2023-09-11,43209,4987,"[""Keyboard"", ""Phone""]",3634.31,"{""loyalty"": ""24%""}",101558,1,South America +2024-12-13,43210,8234,"[""Keyboard""]",1700.05,"{""seasonal"": ""21%""}",195126,1,Europe +2023-10-19,43211,992,"[""Keyboard""]",408.89,"{"""": ""27%""}",39501,0,Europe +2024-02-15,43212,3918,"[""Monitor"", ""Laptop""]",1189.8,{},180574,1,South America +2023-09-28,43213,9772,"[""Phone"", ""Charger""]",1688.33,{},45471,0,Europe +2023-02-02,43214,4920,"[""Tablet"", ""Charger"", ""Laptop""]",2198.4,{},91246,1,North America +2024-11-09,43215,7720,"[""Phone""]",3652.27,"{""seasonal"": ""13%""}",99749,0,Africa +2024-06-17,43216,1961,"[""Phone""]",4408.13,"{""loyalty"": ""9%""}",151239,0,Africa +2023-03-08,43217,7588,"[""Charger"", ""Keyboard""]",2930.76,{},102400,1,Asia +2024-02-27,43218,6309,"[""Laptop""]",232.98,"{""promo"": ""17%""}",95134,1,Africa +2023-09-13,43219,3856,"[""Laptop""]",1751.49,{},194858,1,North America +2023-10-11,43220,4076,"[""Charger""]",2957.67,{},296690,1,Asia +2023-06-03,43221,6098,"[""Wireless Mouse"", ""Charger""]",2172.79,{},241389,1,North America +2024-05-26,43222,6034,"[""Wireless Mouse""]",97.28,{},34505,1,North America +2023-12-09,43223,7921,"[""Wireless Mouse"", ""Keyboard""]",4158.67,"{"""": ""16%""}",103717,0,North America +2023-10-07,43224,7247,"[""Tablet"", ""Monitor""]",3523.31,{},74725,1,Asia +2023-01-06,43225,4617,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4075.09,{},35515,0,North America +2024-12-10,43226,1276,"[""Phone"", ""Wireless Mouse""]",243.94,"{""loyalty"": ""10%""}",209136,0,Africa +2023-08-21,43227,5345,"[""Wireless Mouse""]",524.95,{},184002,1,South America +2023-03-28,43228,4090,"[""Tablet"", ""Phone"", ""Laptop""]",3583.43,{},55098,1,Europe +2023-12-09,43229,4783,"[""Tablet"", ""Headphones"", ""Laptop""]",3722.43,{},10379,0,Asia +2023-11-08,43230,9782,"[""Keyboard"", ""Headphones""]",2004.93,"{""seasonal"": ""19%""}",142085,1,Africa +2024-03-23,43231,7470,"[""Monitor"", ""Keyboard"", ""Tablet""]",3012.5,"{""seasonal"": ""9%""}",196135,0,Asia +2024-10-12,43232,4865,"[""Wireless Mouse""]",3547.27,"{""loyalty"": ""27%""}",274921,0,Africa +2024-06-21,43233,3402,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3916.34,{},242493,0,Europe +2024-10-22,43234,4223,"[""Keyboard""]",399.7,"{""seasonal"": ""22%""}",114151,1,Africa +2023-05-30,43235,2845,"[""Headphones"", ""Wireless Mouse""]",3105.84,"{""loyalty"": ""19%""}",202885,1,Europe +2023-02-21,43236,5473,"[""Monitor""]",4210.76,"{""promo"": ""22%""}",99869,0,Africa +2023-12-31,43237,2384,"[""Laptop"", ""Keyboard""]",4232.73,"{""loyalty"": ""18%""}",20398,0,South America +2024-04-29,43238,6544,"[""Wireless Mouse""]",3632.07,{},176339,1,Europe +2023-10-24,43239,3247,"[""Phone"", ""Laptop""]",2184.83,{},3948,1,North America +2024-05-31,43240,3601,"[""Headphones""]",3115.98,"{""promo"": ""14%""}",248935,1,North America +2024-12-30,43241,370,"[""Headphones"", ""Phone""]",2453.37,{},53193,0,South America +2023-05-11,43242,4888,"[""Monitor"", ""Charger"", ""Laptop""]",3073.68,{},72397,1,Asia +2023-03-08,43243,9037,"[""Charger"", ""Laptop"", ""Headphones""]",4302.92,{},91722,0,Europe +2023-02-18,43244,8896,"[""Keyboard"", ""Monitor"", ""Phone""]",4403.78,"{""seasonal"": ""15%""}",149207,0,South America +2023-07-18,43245,9775,"[""Tablet"", ""Laptop""]",2448.79,"{""seasonal"": ""8%""}",133954,0,Europe +2024-09-07,43246,5833,"[""Phone"", ""Headphones""]",1991.66,"{""promo"": ""18%""}",11121,1,Africa +2023-09-03,43247,9109,"[""Laptop""]",2189.88,{},283276,0,Europe +2024-11-24,43248,8667,"[""Charger"", ""Phone"", ""Tablet""]",4533.88,{},240907,1,Asia +2023-06-15,43249,5185,"[""Headphones"", ""Charger""]",4856.38,{},190605,1,Africa +2023-01-04,43250,198,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2100.93,{},166108,0,Africa +2023-09-25,43251,8352,"[""Headphones"", ""Tablet"", ""Charger""]",773.85,{},67674,1,Asia +2023-07-23,43252,7259,"[""Laptop"", ""Phone"", ""Keyboard""]",3213.09,"{""promo"": ""25%""}",68178,1,Asia +2023-01-12,43253,7946,"[""Keyboard"", ""Charger""]",2098.86,{},112429,1,North America +2023-06-13,43254,4181,"[""Keyboard""]",2720.23,"{""loyalty"": ""17%""}",18200,0,South America +2024-02-10,43255,4590,"[""Wireless Mouse""]",615.68,"{""seasonal"": ""16%""}",57621,0,North America +2024-03-13,43256,1085,"[""Tablet"", ""Charger"", ""Monitor""]",1722.29,"{""seasonal"": ""14%""}",231471,0,Asia +2024-08-06,43257,9760,"[""Phone""]",1486.87,"{""promo"": ""29%""}",95197,0,Asia +2023-03-19,43258,4809,"[""Phone""]",4411.12,{},55804,0,Africa +2024-04-07,43259,9801,"[""Wireless Mouse""]",1549.59,"{""loyalty"": ""8%""}",11714,1,South America +2024-12-23,43260,3708,"[""Keyboard""]",4292.19,"{""seasonal"": ""30%""}",80041,1,Africa +2023-09-03,43261,395,"[""Monitor"", ""Laptop"", ""Phone""]",3823.78,{},134968,0,South America +2024-10-05,43262,9599,"[""Headphones""]",2761.1,"{""promo"": ""18%""}",72683,0,Africa +2024-06-26,43263,3446,"[""Tablet""]",3334.54,"{""loyalty"": ""17%""}",269773,0,North America +2023-11-15,43264,5667,"[""Monitor"", ""Tablet""]",367.07,{},110092,0,Asia +2023-09-24,43265,7171,"[""Laptop"", ""Charger"", ""Keyboard""]",4189.33,{},219744,0,Europe +2023-07-04,43266,4716,"[""Monitor"", ""Phone"", ""Laptop""]",2960.03,"{""seasonal"": ""9%""}",259040,1,North America +2023-04-25,43267,3257,"[""Headphones"", ""Phone"", ""Keyboard""]",4606.15,{},87681,0,South America +2024-09-22,43268,8115,"[""Phone""]",2827.18,{},60175,1,North America +2023-03-09,43269,9732,"[""Phone""]",204.51,"{""seasonal"": ""8%""}",99894,1,Africa +2023-08-17,43270,8470,"[""Headphones"", ""Phone""]",3687.72,{},254922,0,Africa +2023-10-26,43271,7902,"[""Charger""]",1268.68,{},46142,1,North America +2023-04-22,43272,2440,"[""Phone"", ""Monitor""]",62.97,"{""promo"": ""13%""}",5485,0,Africa +2024-04-28,43273,3775,"[""Tablet"", ""Monitor"", ""Laptop""]",3248.4,{},235845,0,Europe +2023-11-05,43274,5078,"[""Charger"", ""Monitor""]",1262.31,{},2546,0,North America +2023-07-29,43275,2309,"[""Charger"", ""Monitor""]",2225.99,{},117823,0,South America +2024-10-10,43276,1894,"[""Wireless Mouse""]",4008.7,{},67778,1,Africa +2024-07-05,43277,5701,"[""Keyboard"", ""Charger""]",810.56,{},163365,1,Africa +2023-12-05,43278,9554,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3811.05,"{""seasonal"": ""15%""}",81147,0,Europe +2023-01-04,43279,4606,"[""Phone"", ""Monitor"", ""Laptop""]",4829.77,{},172456,0,Asia +2024-02-01,43280,3681,"[""Headphones"", ""Monitor""]",4788.78,"{""promo"": ""22%""}",88872,0,North America +2023-08-11,43281,3447,"[""Tablet"", ""Wireless Mouse""]",1389.45,"{""loyalty"": ""21%""}",249934,0,North America +2024-02-04,43282,8434,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3190.7,"{""loyalty"": ""10%""}",249250,1,Africa +2024-05-22,43283,7630,"[""Wireless Mouse""]",1610.36,{},174095,1,South America +2024-06-07,43284,9989,"[""Monitor""]",442.65,"{""promo"": ""15%""}",76937,0,Asia +2023-12-26,43285,5922,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",525.25,{},17222,0,North America +2024-03-17,43286,2024,"[""Headphones"", ""Tablet""]",3378.14,"{""promo"": ""23%""}",294063,0,South America +2023-04-05,43287,6672,"[""Headphones""]",1436.44,{},70055,0,North America +2023-06-25,43288,3471,"[""Laptop""]",340.26,"{""promo"": ""5%""}",298384,1,Europe +2023-11-29,43289,2719,"[""Monitor"", ""Headphones"", ""Keyboard""]",2455.37,"{""seasonal"": ""6%""}",18444,1,North America +2023-08-22,43290,2296,"[""Headphones"", ""Charger""]",4156.31,{},56212,1,South America +2024-01-24,43291,6582,"[""Headphones"", ""Wireless Mouse""]",4954.78,"{""promo"": ""14%""}",162951,1,Africa +2023-02-24,43292,5255,"[""Laptop"", ""Headphones""]",2865.97,{},255690,1,South America +2024-02-29,43293,1959,"[""Wireless Mouse""]",4421.2,"{"""": ""10%""}",250243,0,Asia +2024-06-18,43294,3311,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3672.16,{},53889,0,South America +2023-06-23,43295,7675,"[""Laptop""]",738.01,"{""loyalty"": ""26%""}",34783,1,South America +2023-01-17,43296,8855,"[""Laptop"", ""Tablet""]",527.95,{},6861,1,Europe +2023-04-13,43297,6201,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4581.94,"{"""": ""18%""}",122080,1,Europe +2023-07-17,43298,1350,"[""Keyboard"", ""Laptop"", ""Monitor""]",2721.0,{},117748,1,South America +2023-04-25,43299,7598,"[""Laptop""]",1926.86,{},163825,0,Europe +2024-10-02,43300,2314,"[""Tablet"", ""Charger""]",2466.59,{},80549,1,South America +2023-07-10,43301,2941,"[""Headphones"", ""Monitor"", ""Phone""]",735.38,"{"""": ""27%""}",6416,1,Asia +2024-10-04,43302,5253,"[""Keyboard"", ""Monitor""]",3074.5,{},122167,1,North America +2024-07-24,43303,2608,"[""Keyboard"", ""Tablet""]",555.91,{},138420,1,Africa +2024-05-28,43304,7163,"[""Phone""]",1048.38,"{""loyalty"": ""28%""}",11201,0,North America +2024-12-03,43305,3975,"[""Charger""]",2585.63,{},127281,0,North America +2024-09-04,43306,9207,"[""Tablet"", ""Keyboard""]",3705.02,{},287093,0,Africa +2024-11-03,43307,5880,"[""Laptop"", ""Tablet"", ""Charger""]",3704.8,{},182153,1,Asia +2024-02-23,43308,5076,"[""Charger""]",2806.86,"{"""": ""14%""}",229924,0,South America +2024-07-10,43309,2296,"[""Monitor""]",1634.75,"{""seasonal"": ""18%""}",200046,0,Africa +2024-09-28,43310,8860,"[""Wireless Mouse""]",3458.46,"{""loyalty"": ""7%""}",161572,0,Africa +2024-03-21,43311,5544,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1240.75,{},48278,0,South America +2023-07-19,43312,4664,"[""Laptop""]",3495.59,"{""seasonal"": ""5%""}",276406,1,Asia +2024-01-11,43313,603,"[""Wireless Mouse"", ""Headphones""]",57.22,"{""promo"": ""20%""}",111118,0,Europe +2023-09-08,43314,1178,"[""Laptop"", ""Headphones""]",4541.69,{},264370,0,Europe +2024-08-29,43315,5969,"[""Phone"", ""Tablet"", ""Monitor""]",668.03,"{"""": ""24%""}",105888,1,Europe +2023-11-05,43316,9770,"[""Monitor"", ""Wireless Mouse""]",2769.21,{},194365,1,North America +2023-03-06,43317,486,"[""Headphones"", ""Phone"", ""Tablet""]",3147.99,"{"""": ""9%""}",244308,1,South America +2023-07-24,43318,7856,"[""Keyboard"", ""Monitor""]",433.25,{},281355,1,Asia +2023-08-31,43319,6148,"[""Wireless Mouse"", ""Charger""]",2118.74,"{""seasonal"": ""30%""}",137768,0,South America +2023-03-07,43320,7601,"[""Monitor"", ""Charger"", ""Laptop""]",1095.76,"{"""": ""24%""}",5290,0,South America +2023-03-10,43321,4839,"[""Phone""]",2204.37,"{""promo"": ""11%""}",288110,1,Europe +2024-05-24,43322,9732,"[""Monitor"", ""Charger"", ""Headphones""]",1320.94,"{""promo"": ""22%""}",64328,1,Europe +2023-01-02,43323,7512,"[""Keyboard"", ""Monitor"", ""Headphones""]",2894.44,{},199981,0,South America +2024-05-30,43324,4835,"[""Keyboard"", ""Wireless Mouse""]",1699.57,"{"""": ""17%""}",273377,0,North America +2024-04-10,43325,2455,"[""Charger""]",4678.6,"{""seasonal"": ""27%""}",1813,0,North America +2023-07-03,43326,2490,"[""Phone"", ""Charger""]",3060.19,"{""promo"": ""24%""}",141615,1,Africa +2023-11-02,43327,7333,"[""Tablet"", ""Laptop"", ""Headphones""]",3021.23,"{"""": ""19%""}",294911,0,Asia +2023-11-12,43328,8432,"[""Laptop"", ""Headphones"", ""Keyboard""]",1080.29,"{""promo"": ""20%""}",279204,0,North America +2024-03-08,43329,3877,"[""Laptop""]",3344.09,"{""loyalty"": ""16%""}",296251,0,South America +2023-07-16,43330,2211,"[""Charger"", ""Tablet"", ""Keyboard""]",2632.87,{},180783,0,North America +2023-11-26,43331,1117,"[""Phone"", ""Keyboard""]",1773.92,{},232630,1,North America +2024-01-11,43332,3572,"[""Headphones"", ""Phone"", ""Charger""]",4219.01,{},269412,1,Africa +2024-03-17,43333,4785,"[""Laptop"", ""Wireless Mouse""]",4498.81,"{""promo"": ""29%""}",125734,0,South America +2023-02-08,43334,1981,"[""Laptop"", ""Headphones""]",2639.21,"{"""": ""14%""}",39182,0,North America +2024-08-28,43335,390,"[""Monitor"", ""Headphones"", ""Phone""]",3572.99,"{""promo"": ""8%""}",120309,1,North America +2023-04-29,43336,9994,"[""Headphones"", ""Tablet""]",3960.59,{},91875,0,South America +2023-11-12,43337,1927,"[""Wireless Mouse"", ""Monitor""]",2276.2,{},191915,1,North America +2023-08-10,43338,2360,"[""Monitor""]",3464.01,"{""promo"": ""14%""}",176228,0,South America +2024-02-09,43339,9340,"[""Tablet"", ""Headphones"", ""Laptop""]",1381.28,{},128112,0,Africa +2023-10-17,43340,476,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",333.25,"{""loyalty"": ""24%""}",202348,0,Africa +2023-05-26,43341,6132,"[""Charger""]",3482.46,{},290924,1,Europe +2023-07-26,43342,5915,"[""Phone""]",4443.15,"{""loyalty"": ""14%""}",287518,1,Europe +2024-12-31,43343,6288,"[""Headphones"", ""Phone"", ""Tablet""]",4350.92,{},22821,1,Asia +2024-08-13,43344,6245,"[""Laptop""]",2262.03,"{""seasonal"": ""21%""}",66205,0,North America +2023-03-04,43345,9546,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2926.36,"{""loyalty"": ""6%""}",278648,1,North America +2023-05-14,43346,7861,"[""Keyboard"", ""Phone""]",2403.09,"{""seasonal"": ""12%""}",60707,1,North America +2024-05-17,43347,7736,"[""Phone"", ""Wireless Mouse""]",2483.61,"{""promo"": ""10%""}",174507,0,Europe +2023-05-12,43348,6155,"[""Keyboard""]",3269.22,{},49195,0,Africa +2024-04-21,43349,7187,"[""Tablet""]",4872.49,"{""loyalty"": ""6%""}",194835,1,South America +2023-10-16,43350,9772,"[""Tablet"", ""Phone"", ""Keyboard""]",2130.76,"{""promo"": ""23%""}",200699,0,Asia +2023-11-17,43351,2618,"[""Monitor""]",4339.71,"{""seasonal"": ""25%""}",229399,0,Africa +2023-07-02,43352,2637,"[""Monitor"", ""Phone"", ""Tablet""]",3966.24,"{""promo"": ""27%""}",253214,0,South America +2023-09-06,43353,422,"[""Monitor"", ""Headphones""]",3682.9,"{"""": ""7%""}",115822,0,Africa +2023-06-16,43354,811,"[""Phone""]",2557.17,"{""loyalty"": ""18%""}",18320,1,Asia +2023-08-16,43355,7734,"[""Tablet"", ""Monitor"", ""Keyboard""]",1120.34,"{""loyalty"": ""11%""}",235162,1,Asia +2023-03-08,43356,9558,"[""Laptop"", ""Tablet""]",4997.36,{},240710,1,Asia +2023-06-06,43357,6258,"[""Headphones""]",3939.02,{},180189,1,North America +2023-04-05,43358,9825,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3368.58,{},94194,1,South America +2023-07-25,43359,7059,"[""Tablet""]",4761.03,{},264158,1,South America +2023-09-28,43360,9963,"[""Tablet"", ""Keyboard""]",524.1,{},104801,1,South America +2023-12-22,43361,7361,"[""Phone"", ""Headphones""]",3927.4,"{""seasonal"": ""26%""}",292143,1,Europe +2024-03-11,43362,598,"[""Headphones""]",1197.83,"{""seasonal"": ""27%""}",93783,1,South America +2023-12-04,43363,3917,"[""Phone"", ""Wireless Mouse""]",1702.46,{},183088,0,Asia +2023-09-04,43364,2107,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3425.66,"{""loyalty"": ""19%""}",105419,1,North America +2023-10-30,43365,2872,"[""Keyboard"", ""Wireless Mouse""]",2509.46,"{""seasonal"": ""18%""}",190928,1,Asia +2024-02-05,43366,5413,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3431.82,"{"""": ""29%""}",239241,0,Europe +2023-05-29,43367,6301,"[""Monitor""]",501.14,"{"""": ""24%""}",257166,0,Africa +2023-01-10,43368,5178,"[""Headphones""]",4175.55,{},122034,1,North America +2023-09-19,43369,9496,"[""Monitor""]",3882.89,"{""loyalty"": ""27%""}",155005,1,South America +2023-07-02,43370,510,"[""Wireless Mouse"", ""Charger""]",772.82,"{"""": ""22%""}",180536,0,Asia +2024-10-01,43371,5643,"[""Headphones"", ""Laptop""]",460.65,"{""seasonal"": ""9%""}",94142,0,Africa +2024-12-07,43372,8052,"[""Headphones"", ""Wireless Mouse""]",1333.09,{},182847,1,North America +2024-02-12,43373,1117,"[""Laptop"", ""Headphones""]",4537.45,"{""loyalty"": ""10%""}",55444,0,South America +2024-03-21,43374,1468,"[""Charger""]",403.67,{},6871,0,Asia +2024-11-03,43375,446,"[""Monitor""]",1262.77,"{""promo"": ""25%""}",88844,0,South America +2023-09-09,43376,6939,"[""Tablet""]",1137.54,{},32969,0,Asia +2024-05-25,43377,364,"[""Keyboard""]",4256.37,"{"""": ""23%""}",39791,1,Africa +2024-07-29,43378,3973,"[""Headphones""]",1289.73,"{""loyalty"": ""10%""}",266212,1,Europe +2024-10-22,43379,4830,"[""Charger""]",4057.98,{},48394,0,North America +2023-12-06,43380,4852,"[""Laptop"", ""Keyboard"", ""Charger""]",1541.54,{},97788,1,South America +2023-04-23,43381,8909,"[""Monitor"", ""Headphones""]",4060.68,"{""seasonal"": ""22%""}",163137,0,Europe +2023-09-05,43382,7575,"[""Phone"", ""Laptop"", ""Tablet""]",1460.52,{},115186,1,Europe +2023-11-29,43383,6577,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2244.34,"{"""": ""26%""}",264551,0,Asia +2024-06-29,43384,2577,"[""Headphones"", ""Keyboard""]",500.36,"{""loyalty"": ""19%""}",216406,0,North America +2023-01-02,43385,187,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3326.21,"{"""": ""13%""}",122301,1,Asia +2024-06-25,43386,5726,"[""Laptop"", ""Wireless Mouse""]",3147.79,"{""promo"": ""14%""}",209942,0,Africa +2024-07-26,43387,727,"[""Tablet""]",4086.34,"{""loyalty"": ""13%""}",148070,0,South America +2024-12-10,43388,1975,"[""Phone""]",2923.68,"{""seasonal"": ""6%""}",171913,0,South America +2024-09-25,43389,1055,"[""Wireless Mouse""]",4106.58,"{""loyalty"": ""6%""}",14902,0,Africa +2024-08-16,43390,2561,"[""Wireless Mouse""]",2285.28,{},169822,0,Asia +2024-02-25,43391,5063,"[""Headphones"", ""Charger""]",3607.55,"{""promo"": ""11%""}",212097,0,Africa +2023-01-28,43392,933,"[""Headphones""]",3596.21,"{""seasonal"": ""19%""}",166563,1,Europe +2024-05-07,43393,7636,"[""Phone"", ""Wireless Mouse""]",2251.18,"{""loyalty"": ""21%""}",274684,1,Asia +2024-04-15,43394,9051,"[""Laptop"", ""Charger""]",4423.35,"{""seasonal"": ""9%""}",203058,1,South America +2023-09-15,43395,1950,"[""Keyboard"", ""Wireless Mouse""]",3839.93,"{""promo"": ""15%""}",13451,1,North America +2024-09-22,43396,1432,"[""Monitor"", ""Charger""]",4415.09,{},28984,0,South America +2023-10-06,43397,6064,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2794.62,{},91552,1,Africa +2023-02-11,43398,7861,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4786.31,"{""loyalty"": ""12%""}",172207,0,North America +2024-05-26,43399,8054,"[""Wireless Mouse""]",115.48,{},43789,0,Asia +2023-09-04,43400,719,"[""Phone"", ""Charger"", ""Laptop""]",3122.49,"{""loyalty"": ""21%""}",87586,1,Africa +2023-10-16,43401,1111,"[""Laptop"", ""Monitor"", ""Tablet""]",618.84,{},146328,0,North America +2024-12-25,43402,4487,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4643.13,"{""promo"": ""25%""}",291365,1,Asia +2024-11-16,43403,3783,"[""Laptop"", ""Tablet"", ""Monitor""]",4164.63,{},241796,1,Africa +2023-10-31,43404,8434,"[""Laptop""]",3763.04,"{""loyalty"": ""12%""}",81349,0,North America +2024-04-28,43405,1860,"[""Wireless Mouse""]",2714.57,"{""promo"": ""27%""}",79143,1,Asia +2023-10-26,43406,3234,"[""Headphones""]",3271.94,{},202023,1,North America +2024-06-12,43407,1605,"[""Monitor"", ""Phone"", ""Headphones""]",4970.77,{},100255,0,North America +2023-08-26,43408,4760,"[""Tablet""]",2696.65,{},72196,0,North America +2023-10-09,43409,4180,"[""Laptop"", ""Phone"", ""Headphones""]",250.96,{},134883,1,Africa +2024-06-28,43410,9093,"[""Headphones"", ""Laptop""]",253.13,"{""promo"": ""15%""}",52707,1,Africa +2023-11-10,43411,2717,"[""Wireless Mouse""]",3073.18,{},162049,0,North America +2024-06-01,43412,4769,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3159.14,"{""seasonal"": ""6%""}",36786,1,South America +2023-08-10,43413,341,"[""Charger"", ""Tablet""]",4715.92,"{"""": ""6%""}",119428,1,Africa +2024-10-05,43414,7935,"[""Tablet"", ""Headphones""]",4452.39,{},249130,0,Europe +2024-02-14,43415,5323,"[""Keyboard"", ""Laptop"", ""Monitor""]",3219.8,"{"""": ""7%""}",11617,0,Europe +2024-01-11,43416,7818,"[""Tablet""]",4410.51,{},236410,1,Africa +2023-07-05,43417,4853,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3882.41,{},259758,0,Africa +2023-08-27,43418,261,"[""Wireless Mouse""]",4295.78,"{"""": ""8%""}",140966,0,South America +2023-05-27,43419,378,"[""Headphones"", ""Tablet"", ""Keyboard""]",4823.33,"{""seasonal"": ""21%""}",112721,0,South America +2023-04-24,43420,2388,"[""Tablet""]",3607.68,"{""loyalty"": ""17%""}",225258,1,Asia +2023-04-28,43421,2332,"[""Monitor""]",3649.85,"{""loyalty"": ""23%""}",122141,1,South America +2024-07-12,43422,9769,"[""Charger"", ""Tablet""]",748.5,"{""loyalty"": ""26%""}",248079,0,Europe +2024-08-06,43423,6332,"[""Monitor""]",1497.28,{},117455,1,North America +2023-09-28,43424,4073,"[""Keyboard""]",4330.16,"{""seasonal"": ""16%""}",141962,0,Asia +2023-05-21,43425,1855,"[""Charger"", ""Phone"", ""Laptop""]",2258.93,"{"""": ""13%""}",26711,0,North America +2024-07-17,43426,4488,"[""Keyboard"", ""Wireless Mouse""]",3586.37,{},25453,1,Asia +2023-03-05,43427,4992,"[""Keyboard"", ""Laptop"", ""Charger""]",339.27,"{""seasonal"": ""23%""}",129385,1,Europe +2024-08-06,43428,9504,"[""Keyboard"", ""Phone""]",3256.41,"{""seasonal"": ""16%""}",73362,1,Africa +2023-03-08,43429,904,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1880.26,{},60123,0,South America +2023-09-29,43430,7787,"[""Keyboard"", ""Charger""]",4593.72,{},39490,0,Africa +2023-04-22,43431,1825,"[""Charger""]",1579.76,{},118783,1,North America +2023-12-16,43432,8384,"[""Laptop"", ""Wireless Mouse""]",4663.17,"{"""": ""9%""}",36952,1,Africa +2023-01-31,43433,5714,"[""Charger""]",4869.87,{},172650,1,North America +2023-09-25,43434,6090,"[""Phone""]",3112.57,{},215952,1,Europe +2023-06-09,43435,8786,"[""Tablet""]",3768.0,"{""seasonal"": ""29%""}",158357,1,Europe +2023-12-27,43436,3303,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3804.37,{},96590,0,Europe +2023-10-24,43437,181,"[""Laptop"", ""Charger""]",4810.36,{},27903,1,Europe +2023-09-13,43438,170,"[""Laptop"", ""Keyboard"", ""Tablet""]",1514.79,{},285433,1,South America +2024-04-09,43439,3860,"[""Wireless Mouse"", ""Headphones""]",3507.34,"{""promo"": ""24%""}",43552,1,North America +2024-07-01,43440,5381,"[""Monitor"", ""Tablet""]",2757.56,{},188742,0,North America +2023-04-11,43441,2192,"[""Laptop"", ""Charger"", ""Monitor""]",4843.64,{},52797,0,Europe +2023-12-21,43442,9730,"[""Tablet"", ""Keyboard""]",2352.05,"{""seasonal"": ""17%""}",158823,1,South America +2023-06-21,43443,2051,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1106.76,{},4005,1,Asia +2024-03-01,43444,6424,"[""Tablet"", ""Headphones"", ""Monitor""]",1914.02,{},193192,1,South America +2024-06-14,43445,3129,"[""Monitor"", ""Laptop"", ""Charger""]",4116.05,{},236148,1,Europe +2024-08-22,43446,189,"[""Phone""]",4917.07,"{""seasonal"": ""5%""}",233446,1,Asia +2023-08-02,43447,847,"[""Laptop"", ""Monitor"", ""Charger""]",377.05,{},52649,0,Asia +2024-01-17,43448,5395,"[""Monitor"", ""Keyboard""]",1622.1,{},271399,1,Africa +2024-12-09,43449,2874,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1328.46,"{""promo"": ""9%""}",146899,0,North America +2024-11-08,43450,8083,"[""Wireless Mouse"", ""Tablet""]",1119.09,{},94842,0,Europe +2023-03-13,43451,2277,"[""Wireless Mouse"", ""Headphones""]",1128.79,{},209145,0,Europe +2024-12-29,43452,3184,"[""Keyboard""]",2301.98,{},41567,0,Europe +2024-02-16,43453,3166,"[""Tablet"", ""Keyboard""]",4334.17,"{""seasonal"": ""5%""}",256784,0,Africa +2024-06-21,43454,4912,"[""Tablet"", ""Wireless Mouse""]",3486.81,{},4340,1,South America +2024-05-05,43455,6034,"[""Keyboard""]",1957.68,{},132053,0,South America +2024-05-20,43456,2325,"[""Charger"", ""Keyboard"", ""Tablet""]",2278.51,{},2043,0,South America +2023-12-14,43457,2145,"[""Laptop"", ""Keyboard"", ""Tablet""]",2295.7,"{""seasonal"": ""5%""}",85121,0,North America +2024-03-06,43458,3184,"[""Charger""]",2156.47,{},116355,1,Asia +2023-11-25,43459,3493,"[""Keyboard"", ""Wireless Mouse""]",2235.69,{},129626,0,Asia +2023-10-21,43460,4003,"[""Wireless Mouse"", ""Phone""]",3897.59,{},95289,1,Africa +2024-10-13,43461,7421,"[""Wireless Mouse""]",396.21,{},267303,0,South America +2024-05-18,43462,5083,"[""Wireless Mouse""]",4988.0,"{"""": ""9%""}",41209,0,Europe +2023-09-23,43463,4669,"[""Tablet""]",1588.44,{},275693,1,Asia +2023-04-28,43464,6556,"[""Laptop""]",4718.53,"{""seasonal"": ""6%""}",52000,1,Europe +2023-09-22,43465,6515,"[""Charger"", ""Wireless Mouse""]",2750.52,{},20155,1,North America +2023-02-19,43466,4981,"[""Phone""]",3414.12,"{"""": ""7%""}",269550,1,Europe +2023-08-09,43467,2506,"[""Wireless Mouse""]",1373.6,{},228246,1,Africa +2024-03-27,43468,6707,"[""Headphones""]",137.89,{},190837,1,South America +2024-07-24,43469,5478,"[""Headphones""]",2798.74,"{""promo"": ""15%""}",238868,1,Africa +2023-02-01,43470,3546,"[""Phone"", ""Wireless Mouse""]",3660.7,{},228454,1,North America +2023-08-19,43471,4587,"[""Keyboard"", ""Tablet"", ""Monitor""]",4762.88,{},274084,0,North America +2023-12-31,43472,9600,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",837.28,"{""seasonal"": ""7%""}",297689,1,Europe +2024-04-13,43473,8383,"[""Monitor"", ""Phone""]",613.09,"{""seasonal"": ""15%""}",279026,0,North America +2024-09-22,43474,8030,"[""Wireless Mouse"", ""Tablet""]",1465.35,{},275128,1,Africa +2023-10-17,43475,7596,"[""Laptop""]",493.81,"{""promo"": ""26%""}",125290,0,Europe +2024-01-02,43476,7385,"[""Headphones"", ""Monitor""]",4760.17,"{""promo"": ""13%""}",85404,0,South America +2023-12-17,43477,2689,"[""Charger"", ""Tablet""]",2334.74,{},142831,0,Asia +2024-10-24,43478,7490,"[""Tablet"", ""Headphones"", ""Phone""]",4126.66,"{""loyalty"": ""6%""}",203811,0,Asia +2023-03-07,43479,6585,"[""Laptop"", ""Charger""]",346.89,"{""promo"": ""24%""}",81495,1,North America +2023-05-14,43480,2770,"[""Laptop""]",3544.24,{},220851,0,South America +2023-01-11,43481,3036,"[""Headphones"", ""Phone""]",3255.1,"{""seasonal"": ""23%""}",9812,0,Africa +2023-01-09,43482,915,"[""Tablet""]",2431.62,{},17377,0,Asia +2023-11-15,43483,5383,"[""Monitor""]",4188.12,{},229965,1,North America +2024-03-12,43484,3804,"[""Headphones"", ""Charger""]",241.66,{},228168,0,North America +2023-07-29,43485,8521,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3461.39,"{"""": ""28%""}",147310,1,North America +2024-04-04,43486,5283,"[""Phone""]",385.84,"{""seasonal"": ""7%""}",128333,1,North America +2023-08-30,43487,4230,"[""Monitor""]",147.9,"{""seasonal"": ""30%""}",106931,1,Asia +2024-04-19,43488,483,"[""Phone"", ""Laptop""]",4874.06,"{""loyalty"": ""5%""}",42796,1,South America +2023-06-05,43489,4209,"[""Monitor"", ""Tablet""]",1782.81,{},64040,1,Europe +2024-12-22,43490,6507,"[""Keyboard"", ""Headphones"", ""Phone""]",4495.93,"{"""": ""8%""}",50354,1,North America +2023-06-03,43491,3516,"[""Charger""]",805.83,{},125567,1,Africa +2024-10-12,43492,4486,"[""Headphones""]",3456.68,{},154897,1,Europe +2023-08-29,43493,9927,"[""Laptop"", ""Keyboard"", ""Tablet""]",4090.48,{},59301,0,Africa +2024-06-24,43494,6893,"[""Laptop"", ""Monitor""]",2213.39,{},62163,0,Africa +2023-11-29,43495,4908,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4075.7,"{""loyalty"": ""27%""}",280678,1,North America +2024-08-07,43496,2483,"[""Phone"", ""Keyboard""]",1273.04,{},196474,1,South America +2024-03-12,43497,7121,"[""Monitor""]",442.69,"{""loyalty"": ""11%""}",110731,0,North America +2023-11-27,43498,8917,"[""Monitor"", ""Tablet"", ""Phone""]",4393.2,{},5423,0,Africa +2024-02-12,43499,9105,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4939.8,"{""promo"": ""10%""}",256084,0,Asia +2023-03-08,43500,4353,"[""Headphones"", ""Tablet""]",580.85,{},209443,0,North America +2023-01-22,43501,6487,"[""Wireless Mouse"", ""Charger""]",3411.72,"{""seasonal"": ""18%""}",205955,0,Europe +2024-12-20,43502,2087,"[""Keyboard"", ""Laptop"", ""Phone""]",3095.6,"{""loyalty"": ""8%""}",182156,1,South America +2023-08-16,43503,2334,"[""Headphones""]",1430.32,"{"""": ""19%""}",182915,1,South America +2023-04-25,43504,9107,"[""Tablet""]",4692.8,{},111508,0,Asia +2023-04-20,43505,7331,"[""Charger"", ""Laptop"", ""Headphones""]",2762.88,{},133206,1,Europe +2023-11-06,43506,6537,"[""Charger"", ""Keyboard""]",2598.48,"{""promo"": ""27%""}",136844,0,Africa +2024-12-02,43507,1938,"[""Headphones"", ""Tablet"", ""Phone""]",4115.47,{},206225,1,Asia +2024-10-01,43508,8084,"[""Phone""]",685.05,"{""loyalty"": ""15%""}",286176,1,South America +2023-01-23,43509,5234,"[""Keyboard""]",3246.74,{},29366,1,Asia +2024-11-07,43510,3751,"[""Headphones"", ""Monitor"", ""Tablet""]",3927.06,"{""promo"": ""7%""}",150485,1,Europe +2023-02-24,43511,8349,"[""Wireless Mouse""]",797.1,{},105092,1,North America +2024-02-26,43512,9517,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1316.61,"{""promo"": ""30%""}",56511,0,Asia +2023-08-05,43513,9825,"[""Keyboard""]",2199.54,{},154544,1,Europe +2023-04-09,43514,5985,"[""Charger"", ""Keyboard""]",2823.4,"{"""": ""26%""}",164235,1,North America +2024-05-15,43515,7662,"[""Laptop""]",916.97,"{""seasonal"": ""22%""}",236181,1,Africa +2024-03-24,43516,1391,"[""Tablet""]",3924.25,{},88265,1,North America +2023-02-21,43517,9671,"[""Headphones""]",2209.22,{},221648,0,North America +2024-06-27,43518,8732,"[""Keyboard""]",3501.57,"{""promo"": ""24%""}",5047,1,North America +2024-05-15,43519,6220,"[""Headphones"", ""Charger""]",3646.34,"{""seasonal"": ""26%""}",102189,1,Asia +2024-08-29,43520,3031,"[""Tablet""]",2848.47,"{""loyalty"": ""26%""}",192284,0,South America +2023-12-01,43521,1898,"[""Laptop"", ""Monitor""]",3021.04,{},41715,1,North America +2023-01-04,43522,404,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1806.42,{},204118,1,Africa +2023-06-13,43523,9528,"[""Headphones""]",1859.02,"{""seasonal"": ""7%""}",174510,0,South America +2024-09-11,43524,5215,"[""Monitor"", ""Charger""]",2802.35,"{""promo"": ""22%""}",160065,0,South America +2023-08-23,43525,9313,"[""Headphones"", ""Keyboard""]",718.8,{},7949,1,South America +2023-04-12,43526,1975,"[""Phone"", ""Monitor"", ""Charger""]",4441.21,"{"""": ""17%""}",283717,1,Europe +2024-07-22,43527,8000,"[""Charger"", ""Phone"", ""Keyboard""]",1973.2,"{""promo"": ""23%""}",284672,0,Asia +2023-07-07,43528,383,"[""Laptop"", ""Headphones"", ""Tablet""]",955.07,"{""seasonal"": ""24%""}",207050,1,North America +2023-06-15,43529,5610,"[""Monitor""]",3568.02,"{""seasonal"": ""18%""}",296410,0,Asia +2024-04-13,43530,5217,"[""Headphones"", ""Keyboard"", ""Laptop""]",1674.87,{},158353,1,North America +2023-10-16,43531,3988,"[""Wireless Mouse""]",3253.26,"{""loyalty"": ""27%""}",89511,0,South America +2023-03-06,43532,5249,"[""Monitor""]",146.82,"{""promo"": ""28%""}",284267,0,Asia +2024-01-05,43533,7758,"[""Tablet"", ""Wireless Mouse""]",128.56,"{"""": ""28%""}",35741,0,Africa +2023-04-25,43534,687,"[""Phone""]",150.0,{},288900,0,Europe +2023-07-27,43535,6068,"[""Headphones"", ""Monitor""]",1443.67,"{""seasonal"": ""12%""}",198959,1,South America +2024-03-03,43536,9486,"[""Phone"", ""Tablet"", ""Monitor""]",422.11,"{""promo"": ""20%""}",156213,0,North America +2024-12-06,43537,5608,"[""Phone"", ""Tablet""]",4743.63,{},248860,0,Europe +2023-12-31,43538,1522,"[""Charger"", ""Laptop"", ""Monitor""]",4255.48,{},46583,0,South America +2024-10-24,43539,5518,"[""Monitor""]",4238.94,{},44232,0,North America +2024-12-07,43540,7989,"[""Monitor"", ""Wireless Mouse""]",3143.48,"{"""": ""29%""}",54857,0,Europe +2023-03-17,43541,7238,"[""Laptop"", ""Monitor""]",1748.27,{},273423,1,Asia +2024-06-19,43542,806,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3668.58,{},279126,0,North America +2024-05-17,43543,1327,"[""Monitor""]",3010.75,"{""promo"": ""12%""}",170337,1,South America +2023-08-08,43544,5549,"[""Monitor"", ""Tablet"", ""Charger""]",4008.02,"{"""": ""6%""}",224183,1,Africa +2024-08-27,43545,3943,"[""Wireless Mouse"", ""Headphones""]",1914.59,"{""loyalty"": ""28%""}",115843,0,South America +2023-04-25,43546,4311,"[""Tablet"", ""Phone"", ""Headphones""]",4088.69,{},130391,0,Europe +2023-11-07,43547,2785,"[""Laptop"", ""Keyboard"", ""Phone""]",4166.44,{},280872,1,South America +2024-05-06,43548,6730,"[""Laptop"", ""Wireless Mouse""]",2498.82,"{"""": ""29%""}",47999,0,Asia +2024-11-06,43549,3259,"[""Wireless Mouse""]",1312.95,{},76162,0,South America +2024-07-17,43550,9553,"[""Monitor"", ""Keyboard"", ""Phone""]",228.69,"{""seasonal"": ""7%""}",272382,1,Asia +2023-03-04,43551,1384,"[""Keyboard"", ""Monitor""]",1088.52,{},134882,1,Asia +2023-08-12,43552,9249,"[""Laptop""]",3043.51,"{"""": ""14%""}",199602,0,North America +2023-05-25,43553,9543,"[""Charger"", ""Monitor"", ""Keyboard""]",603.24,"{""loyalty"": ""18%""}",135125,0,Asia +2024-08-31,43554,5357,"[""Laptop"", ""Phone"", ""Keyboard""]",3615.91,{},298137,1,North America +2024-11-07,43555,127,"[""Wireless Mouse"", ""Tablet""]",2573.23,"{""loyalty"": ""6%""}",176895,0,Africa +2023-04-29,43556,7133,"[""Keyboard""]",2279.05,"{""loyalty"": ""7%""}",100860,1,Asia +2024-11-26,43557,8041,"[""Keyboard"", ""Headphones""]",3726.01,"{""loyalty"": ""18%""}",28956,0,Africa +2024-05-15,43558,966,"[""Laptop"", ""Phone"", ""Monitor""]",2213.01,"{"""": ""12%""}",244066,0,Africa +2024-05-08,43559,1596,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",145.52,"{""loyalty"": ""27%""}",11281,0,Africa +2024-12-07,43560,1809,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1266.27,"{"""": ""13%""}",236168,1,Europe +2024-09-19,43561,7465,"[""Laptop"", ""Charger""]",2588.76,"{""promo"": ""17%""}",202913,1,North America +2024-05-29,43562,6242,"[""Keyboard""]",2790.36,{},62594,0,Europe +2024-10-24,43563,9297,"[""Wireless Mouse"", ""Tablet""]",2127.05,"{"""": ""29%""}",155097,0,Asia +2023-11-14,43564,7132,"[""Headphones"", ""Phone"", ""Laptop""]",115.69,{},214426,1,North America +2024-07-23,43565,8652,"[""Phone""]",4719.28,"{""promo"": ""29%""}",279924,1,Europe +2024-07-20,43566,1598,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",750.1,"{""seasonal"": ""24%""}",7410,1,Europe +2024-10-18,43567,6522,"[""Headphones"", ""Phone""]",1623.07,{},107235,1,Africa +2024-07-21,43568,5546,"[""Monitor""]",950.06,"{""seasonal"": ""11%""}",197957,1,North America +2023-12-23,43569,8401,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3943.91,{},35563,1,South America +2023-10-17,43570,8080,"[""Monitor"", ""Charger""]",2338.28,"{""loyalty"": ""24%""}",190194,0,South America +2024-01-07,43571,440,"[""Phone""]",1406.81,{},90296,1,Europe +2024-04-18,43572,6337,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1575.64,"{""loyalty"": ""22%""}",122861,1,South America +2023-12-31,43573,938,"[""Laptop"", ""Keyboard"", ""Tablet""]",3959.67,{},23278,0,Africa +2024-07-22,43574,1344,"[""Monitor""]",524.19,{},149243,1,Europe +2024-09-09,43575,3664,"[""Headphones""]",4542.05,{},233886,1,Europe +2023-09-15,43576,7889,"[""Tablet"", ""Keyboard""]",3209.98,"{""loyalty"": ""9%""}",195166,1,North America +2023-09-13,43577,3357,"[""Keyboard""]",2089.94,"{"""": ""5%""}",177153,0,Europe +2023-10-12,43578,7257,"[""Keyboard"", ""Tablet"", ""Headphones""]",1829.78,{},41052,1,Europe +2023-11-01,43579,8127,"[""Keyboard""]",2444.95,{},23829,0,North America +2024-10-08,43580,2535,"[""Monitor"", ""Tablet""]",3672.18,"{""loyalty"": ""28%""}",160212,1,North America +2023-04-10,43581,8775,"[""Tablet"", ""Phone""]",1676.59,"{"""": ""28%""}",14768,0,Africa +2024-11-09,43582,5937,"[""Monitor"", ""Wireless Mouse""]",321.14,{},177657,0,South America +2024-12-14,43583,6537,"[""Phone"", ""Headphones"", ""Keyboard""]",2278.04,{},200192,1,Europe +2023-12-23,43584,2925,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3466.21,{},183652,1,South America +2023-07-19,43585,9485,"[""Phone"", ""Wireless Mouse""]",2584.47,{},100857,0,Europe +2023-12-27,43586,5015,"[""Headphones"", ""Laptop""]",4335.68,{},266716,1,South America +2024-10-08,43587,1601,"[""Headphones""]",1995.02,{},192440,1,Asia +2024-09-18,43588,1423,"[""Keyboard"", ""Laptop"", ""Headphones""]",2308.22,"{""seasonal"": ""11%""}",66595,1,Africa +2023-06-27,43589,315,"[""Phone""]",3958.98,{},216799,1,North America +2023-05-22,43590,7434,"[""Laptop"", ""Charger"", ""Tablet""]",919.59,"{"""": ""7%""}",4280,1,Europe +2023-02-16,43591,5028,"[""Monitor"", ""Laptop""]",4244.0,"{""seasonal"": ""26%""}",80153,1,Europe +2024-02-04,43592,8427,"[""Tablet"", ""Keyboard"", ""Monitor""]",3931.76,"{""loyalty"": ""6%""}",291221,0,North America +2024-01-08,43593,8823,"[""Laptop"", ""Phone""]",383.17,"{""promo"": ""13%""}",223785,0,Africa +2024-04-08,43594,5212,"[""Keyboard""]",4732.36,"{""loyalty"": ""25%""}",223660,0,Europe +2024-11-15,43595,6373,"[""Laptop"", ""Phone""]",498.02,{},170851,1,Europe +2024-08-08,43596,4307,"[""Phone""]",732.01,{},105103,1,Asia +2023-09-02,43597,5158,"[""Wireless Mouse""]",3286.07,"{""promo"": ""15%""}",85719,0,Asia +2023-03-28,43598,7502,"[""Headphones"", ""Charger""]",365.07,{},14921,1,Europe +2024-12-02,43599,3691,"[""Wireless Mouse"", ""Laptop""]",3029.12,{},56648,0,Africa +2024-10-10,43600,4632,"[""Keyboard""]",3044.14,{},12103,1,North America +2023-10-08,43601,3247,"[""Keyboard"", ""Headphones""]",2191.36,"{"""": ""7%""}",292683,0,Asia +2024-02-20,43602,4365,"[""Keyboard"", ""Charger"", ""Laptop""]",2310.98,{},235351,1,Europe +2023-01-08,43603,2660,"[""Keyboard""]",4576.4,{},205593,0,South America +2024-05-01,43604,6719,"[""Headphones"", ""Phone"", ""Monitor""]",2640.93,{},237715,0,Africa +2023-03-19,43605,8370,"[""Headphones"", ""Wireless Mouse""]",1107.44,{},143878,0,North America +2024-10-11,43606,5069,"[""Charger""]",4900.9,{},136911,0,Europe +2023-10-04,43607,4673,"[""Headphones""]",353.44,{},253931,1,Asia +2023-06-25,43608,9946,"[""Keyboard"", ""Wireless Mouse""]",3595.26,"{""promo"": ""30%""}",47232,1,Africa +2023-09-09,43609,5083,"[""Laptop"", ""Monitor"", ""Headphones""]",3412.53,"{"""": ""16%""}",266487,1,North America +2024-12-08,43610,6196,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1289.2,{},181813,0,Africa +2023-07-22,43611,1288,"[""Tablet"", ""Phone"", ""Laptop""]",1857.02,"{""promo"": ""17%""}",239388,0,South America +2023-04-24,43612,3762,"[""Keyboard"", ""Charger""]",4970.84,{},204747,1,North America +2024-12-26,43613,3716,"[""Keyboard""]",3540.15,"{""loyalty"": ""23%""}",44159,0,South America +2023-08-27,43614,9613,"[""Monitor"", ""Laptop""]",3425.33,"{""seasonal"": ""14%""}",80670,1,North America +2024-09-15,43615,2552,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1227.81,"{"""": ""7%""}",184433,1,South America +2024-01-30,43616,4054,"[""Headphones"", ""Monitor"", ""Laptop""]",3097.92,"{"""": ""9%""}",5288,0,North America +2024-09-24,43617,8664,"[""Tablet"", ""Keyboard"", ""Phone""]",3051.55,"{""promo"": ""8%""}",267880,0,Europe +2023-03-30,43618,1071,"[""Tablet"", ""Headphones""]",1841.28,"{"""": ""29%""}",18276,1,North America +2023-08-01,43619,5213,"[""Wireless Mouse""]",634.35,"{""loyalty"": ""29%""}",53592,0,Africa +2023-11-21,43620,8978,"[""Wireless Mouse"", ""Monitor""]",492.42,"{""promo"": ""28%""}",29071,1,Asia +2024-12-16,43621,3219,"[""Wireless Mouse"", ""Tablet""]",2685.29,"{""loyalty"": ""18%""}",255826,0,Europe +2023-12-13,43622,1655,"[""Tablet"", ""Keyboard"", ""Laptop""]",2877.45,"{"""": ""21%""}",100959,1,Africa +2023-09-06,43623,872,"[""Charger""]",3639.44,"{""loyalty"": ""10%""}",33794,0,Europe +2023-06-16,43624,6399,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1733.37,{},65483,1,Asia +2023-09-01,43625,4882,"[""Headphones"", ""Tablet""]",557.85,{},9537,1,Europe +2024-07-31,43626,3041,"[""Wireless Mouse""]",2849.1,{},117721,0,North America +2023-02-01,43627,5347,"[""Headphones""]",4116.09,"{"""": ""5%""}",15309,0,Europe +2024-04-07,43628,2739,"[""Wireless Mouse""]",1690.02,"{"""": ""11%""}",21522,1,Europe +2024-05-07,43629,9085,"[""Keyboard""]",4172.51,{},71206,0,Europe +2024-12-10,43630,6629,"[""Keyboard"", ""Phone""]",2446.98,{},2509,0,Africa +2024-07-23,43631,4473,"[""Monitor"", ""Laptop""]",308.96,{},129671,0,Africa +2024-12-10,43632,2941,"[""Headphones"", ""Keyboard"", ""Charger""]",3238.54,"{"""": ""17%""}",164472,1,South America +2024-12-17,43633,6770,"[""Keyboard""]",4798.2,"{""loyalty"": ""28%""}",135006,0,North America +2024-11-19,43634,3434,"[""Charger"", ""Headphones"", ""Laptop""]",2343.64,{},73030,1,Europe +2023-12-13,43635,4021,"[""Keyboard"", ""Charger"", ""Tablet""]",3946.71,"{""promo"": ""7%""}",161209,1,South America +2023-06-20,43636,6513,"[""Keyboard""]",3420.33,{},41151,1,Africa +2024-10-04,43637,5748,"[""Tablet"", ""Charger""]",3512.6,{},161507,1,Europe +2023-05-16,43638,597,"[""Headphones""]",4863.61,{},48672,0,Asia +2024-11-16,43639,7277,"[""Monitor"", ""Laptop""]",2093.56,{},210043,1,Europe +2023-08-24,43640,4465,"[""Tablet"", ""Keyboard"", ""Monitor""]",2273.18,{},182652,1,Europe +2023-08-25,43641,903,"[""Tablet""]",366.5,{},272627,0,South America +2024-10-27,43642,2745,"[""Phone"", ""Laptop""]",1590.13,"{"""": ""25%""}",139567,0,Asia +2023-07-04,43643,7121,"[""Charger"", ""Monitor""]",1511.23,{},228594,0,North America +2024-05-01,43644,6865,"[""Charger"", ""Headphones""]",1344.82,"{""seasonal"": ""16%""}",271163,1,Europe +2024-11-11,43645,6936,"[""Tablet"", ""Charger"", ""Laptop""]",4150.41,"{"""": ""28%""}",7879,0,Asia +2023-04-14,43646,3794,"[""Phone"", ""Laptop"", ""Monitor""]",853.66,{},87597,0,South America +2023-11-08,43647,6279,"[""Phone""]",882.17,"{""promo"": ""24%""}",276556,0,Asia +2023-11-20,43648,9936,"[""Headphones"", ""Phone"", ""Monitor""]",2606.93,{},120904,0,South America +2023-03-01,43649,431,"[""Phone""]",590.36,{},65992,1,Africa +2023-03-28,43650,1518,"[""Laptop""]",3336.07,"{""promo"": ""26%""}",286050,0,Asia +2024-02-09,43651,8491,"[""Headphones"", ""Laptop""]",1057.7,"{""seasonal"": ""16%""}",234588,1,North America +2024-04-30,43652,8300,"[""Tablet""]",1641.56,{},82610,0,North America +2024-02-12,43653,4151,"[""Monitor"", ""Headphones""]",4736.15,"{""seasonal"": ""23%""}",73553,0,South America +2024-12-16,43654,1742,"[""Phone""]",4725.51,"{""seasonal"": ""11%""}",166300,0,South America +2023-11-26,43655,6792,"[""Laptop"", ""Keyboard""]",1458.16,{},234629,0,Europe +2023-01-21,43656,121,"[""Tablet"", ""Monitor"", ""Phone""]",2498.34,{},269616,1,Asia +2024-11-28,43657,9009,"[""Monitor""]",1567.68,{},158606,0,Asia +2024-12-10,43658,7476,"[""Wireless Mouse"", ""Tablet""]",4567.71,"{""loyalty"": ""30%""}",267211,1,Asia +2023-06-21,43659,8814,"[""Monitor"", ""Tablet"", ""Charger""]",4392.44,{},72784,0,Europe +2023-09-18,43660,4054,"[""Phone"", ""Keyboard""]",3970.92,"{""promo"": ""12%""}",68020,0,Africa +2023-08-20,43661,4587,"[""Wireless Mouse""]",4559.47,{},23715,1,North America +2024-06-02,43662,920,"[""Tablet"", ""Keyboard"", ""Monitor""]",1832.96,"{"""": ""11%""}",7052,1,Asia +2024-08-07,43663,767,"[""Headphones"", ""Tablet"", ""Monitor""]",713.6,"{""seasonal"": ""11%""}",168736,1,Asia +2024-07-28,43664,6181,"[""Tablet"", ""Wireless Mouse""]",1414.32,{},140115,0,North America +2024-04-29,43665,3080,"[""Phone""]",3721.28,{},252695,0,South America +2023-03-19,43666,5049,"[""Phone"", ""Laptop""]",430.06,"{""promo"": ""12%""}",180140,0,Europe +2023-11-02,43667,9830,"[""Tablet"", ""Phone"", ""Headphones""]",242.74,"{"""": ""5%""}",137559,0,Africa +2024-01-31,43668,5508,"[""Tablet""]",3194.06,{},261738,0,North America +2024-04-04,43669,6179,"[""Monitor""]",4505.51,{},205854,0,South America +2024-09-15,43670,5038,"[""Keyboard"", ""Tablet""]",4200.49,{},39085,0,South America +2024-02-27,43671,1603,"[""Keyboard"", ""Laptop""]",2627.47,"{""seasonal"": ""18%""}",224129,1,South America +2024-06-27,43672,2187,"[""Laptop"", ""Wireless Mouse""]",3869.34,"{""promo"": ""25%""}",122635,1,Europe +2023-03-05,43673,9812,"[""Laptop""]",4061.96,{},133632,1,Africa +2024-07-18,43674,2983,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3879.46,{},74635,1,Europe +2023-01-19,43675,8070,"[""Tablet""]",3021.84,{},290812,0,North America +2024-07-17,43676,505,"[""Monitor"", ""Laptop"", ""Charger""]",982.8,{},288908,1,Asia +2023-07-10,43677,6259,"[""Laptop"", ""Wireless Mouse""]",580.24,{},84828,0,Asia +2024-04-17,43678,2730,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4334.84,"{""seasonal"": ""12%""}",156737,0,South America +2024-09-10,43679,723,"[""Phone"", ""Wireless Mouse""]",2397.52,"{""seasonal"": ""14%""}",180643,0,Africa +2023-02-25,43680,7499,"[""Keyboard""]",4686.5,{},249128,0,Europe +2024-11-19,43681,5942,"[""Laptop"", ""Charger""]",4106.19,{},150213,0,Africa +2024-06-28,43682,5346,"[""Laptop"", ""Keyboard""]",1576.95,{},66135,0,Africa +2023-02-12,43683,6925,"[""Charger""]",3765.5,"{""loyalty"": ""26%""}",61784,1,Africa +2023-03-02,43684,160,"[""Monitor""]",3544.77,{},57815,0,South America +2023-08-12,43685,4193,"[""Charger"", ""Keyboard""]",4997.83,{},41209,0,North America +2024-03-07,43686,686,"[""Wireless Mouse"", ""Phone""]",2589.26,{},86490,1,Europe +2023-03-15,43687,4258,"[""Phone"", ""Headphones""]",4964.21,{},80359,1,Europe +2023-06-22,43688,5115,"[""Phone"", ""Keyboard""]",4657.73,{},214316,1,South America +2024-01-04,43689,8262,"[""Phone"", ""Tablet""]",3407.73,"{""loyalty"": ""29%""}",89361,0,Africa +2024-09-29,43690,7716,"[""Tablet"", ""Headphones"", ""Charger""]",477.6,"{""seasonal"": ""25%""}",51407,0,South America +2023-01-12,43691,4697,"[""Tablet""]",4280.26,"{""seasonal"": ""24%""}",292025,0,Asia +2024-03-20,43692,4768,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3658.94,"{"""": ""24%""}",212131,1,South America +2024-10-11,43693,739,"[""Phone"", ""Charger"", ""Laptop""]",3894.77,{},7113,0,Africa +2023-01-23,43694,499,"[""Monitor"", ""Phone""]",1310.9,"{""promo"": ""25%""}",287739,0,North America +2024-02-21,43695,7178,"[""Charger"", ""Wireless Mouse""]",2840.14,"{"""": ""12%""}",155739,0,North America +2024-05-11,43696,8928,"[""Tablet""]",2752.97,{},163198,0,Africa +2023-04-29,43697,7575,"[""Tablet"", ""Keyboard"", ""Charger""]",3551.22,"{""seasonal"": ""6%""}",205168,0,South America +2023-12-12,43698,7020,"[""Laptop"", ""Phone""]",4689.4,{},179042,0,North America +2024-08-05,43699,7723,"[""Laptop"", ""Headphones"", ""Monitor""]",4979.65,"{""seasonal"": ""9%""}",29974,1,Asia +2023-07-29,43700,7166,"[""Phone""]",2056.3,{},271605,0,Africa +2023-02-10,43701,9076,"[""Phone"", ""Charger"", ""Keyboard""]",2711.19,"{""loyalty"": ""16%""}",24973,1,Asia +2024-04-13,43702,4832,"[""Wireless Mouse""]",3401.39,{},90480,1,Europe +2023-04-10,43703,5817,"[""Phone""]",3209.4,"{"""": ""28%""}",170012,1,Asia +2023-01-18,43704,2105,"[""Laptop""]",98.32,"{"""": ""29%""}",26595,0,South America +2024-01-01,43705,1809,"[""Charger""]",4032.72,{},285298,1,Africa +2024-05-10,43706,3896,"[""Laptop"", ""Headphones""]",337.26,"{""promo"": ""20%""}",93382,1,North America +2023-02-11,43707,9704,"[""Tablet""]",1360.8,"{"""": ""8%""}",126047,0,Africa +2024-03-20,43708,2806,"[""Charger""]",413.47,{},102712,1,Africa +2023-10-30,43709,6989,"[""Phone"", ""Headphones""]",2034.83,{},49128,1,North America +2023-01-23,43710,1326,"[""Phone"", ""Laptop"", ""Keyboard""]",3252.44,{},173543,1,Africa +2024-10-10,43711,9305,"[""Laptop"", ""Keyboard"", ""Tablet""]",1239.66,{},222580,0,North America +2024-08-09,43712,7865,"[""Laptop"", ""Headphones"", ""Phone""]",2148.7,"{"""": ""30%""}",149165,1,Africa +2024-11-10,43713,3450,"[""Keyboard"", ""Headphones"", ""Charger""]",3303.5,"{""seasonal"": ""9%""}",10824,1,South America +2024-07-16,43714,9445,"[""Charger""]",2792.57,{},271698,0,Europe +2024-08-30,43715,3028,"[""Keyboard""]",61.82,"{"""": ""9%""}",174210,0,North America +2024-05-25,43716,5410,"[""Wireless Mouse""]",1021.95,{},26346,1,North America +2024-12-17,43717,3341,"[""Headphones""]",1049.4,{},30677,0,North America +2023-03-23,43718,7756,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",372.37,"{"""": ""11%""}",215686,0,Asia +2023-06-03,43719,7604,"[""Charger"", ""Laptop"", ""Phone""]",2755.83,"{""seasonal"": ""20%""}",254084,1,Asia +2023-09-26,43720,6116,"[""Tablet"", ""Wireless Mouse""]",247.86,{},168245,1,North America +2023-03-16,43721,2852,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1667.0,{},199560,0,Europe +2023-06-28,43722,3730,"[""Tablet"", ""Headphones""]",3565.62,{},72003,0,South America +2023-06-02,43723,2403,"[""Charger""]",1424.13,{},270890,1,Africa +2023-04-05,43724,1384,"[""Keyboard""]",2797.02,"{"""": ""27%""}",139644,0,Africa +2023-05-07,43725,2634,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1711.52,"{""seasonal"": ""23%""}",289913,0,South America +2024-12-11,43726,3380,"[""Charger"", ""Headphones""]",3195.14,"{""seasonal"": ""26%""}",253759,1,South America +2023-03-20,43727,8283,"[""Tablet"", ""Keyboard""]",2445.17,"{""loyalty"": ""20%""}",20375,1,North America +2024-07-02,43728,8743,"[""Charger""]",2089.58,"{""promo"": ""11%""}",207640,1,North America +2024-11-20,43729,9446,"[""Phone""]",4745.73,"{"""": ""19%""}",210601,0,South America +2023-01-29,43730,557,"[""Headphones""]",1953.72,{},177285,1,Europe +2024-08-19,43731,8795,"[""Laptop"", ""Wireless Mouse""]",1809.12,{},22569,0,Europe +2024-09-24,43732,5005,"[""Keyboard"", ""Laptop"", ""Phone""]",4053.7,"{"""": ""17%""}",265888,0,Europe +2023-02-26,43733,136,"[""Headphones""]",961.95,"{""loyalty"": ""11%""}",172590,0,Asia +2024-02-24,43734,946,"[""Headphones""]",2938.89,"{"""": ""27%""}",215722,1,South America +2024-05-19,43735,9367,"[""Headphones"", ""Phone""]",1387.14,{},173020,0,Europe +2024-07-23,43736,2508,"[""Headphones""]",1646.95,"{""promo"": ""7%""}",11152,1,Asia +2024-02-07,43737,1156,"[""Keyboard"", ""Monitor"", ""Laptop""]",4197.21,{},208107,1,Europe +2023-01-02,43738,603,"[""Tablet"", ""Keyboard"", ""Headphones""]",4767.53,"{""promo"": ""16%""}",27716,0,Europe +2024-03-05,43739,550,"[""Wireless Mouse""]",4632.66,{},251627,0,Africa +2023-07-31,43740,1013,"[""Charger"", ""Tablet""]",2600.8,{},174803,1,Africa +2023-08-20,43741,1082,"[""Monitor"", ""Charger""]",1691.48,"{"""": ""15%""}",38575,0,South America +2024-12-29,43742,781,"[""Monitor""]",3554.1,"{""seasonal"": ""20%""}",118373,0,South America +2024-11-22,43743,8063,"[""Charger"", ""Laptop""]",1454.99,"{"""": ""17%""}",62410,1,Asia +2023-10-11,43744,5254,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1827.79,"{""promo"": ""30%""}",131174,0,South America +2023-09-13,43745,7877,"[""Phone"", ""Laptop""]",1781.17,{},29551,0,Europe +2024-11-25,43746,1656,"[""Laptop""]",4463.69,{},52033,1,South America +2023-07-24,43747,2903,"[""Phone"", ""Monitor""]",4188.81,"{""seasonal"": ""24%""}",90942,1,Asia +2024-07-08,43748,8670,"[""Tablet""]",3867.85,{},180865,1,Africa +2024-06-16,43749,3072,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1710.86,"{""seasonal"": ""7%""}",142204,0,North America +2023-03-12,43750,714,"[""Headphones""]",893.63,"{""loyalty"": ""20%""}",181511,0,Asia +2024-10-08,43751,5170,"[""Tablet"", ""Headphones""]",267.75,{},117985,0,Asia +2023-01-09,43752,2868,"[""Monitor"", ""Laptop"", ""Keyboard""]",3911.53,"{""seasonal"": ""23%""}",116176,0,South America +2023-07-11,43753,8515,"[""Monitor""]",1086.64,"{""seasonal"": ""17%""}",80822,0,Asia +2024-10-15,43754,3128,"[""Wireless Mouse""]",2874.38,"{""promo"": ""27%""}",134765,1,Europe +2024-10-09,43755,4334,"[""Keyboard"", ""Headphones""]",1533.43,"{""loyalty"": ""25%""}",225696,0,Africa +2024-01-16,43756,5738,"[""Laptop""]",478.57,{},174673,0,Africa +2024-10-08,43757,2410,"[""Charger"", ""Keyboard"", ""Headphones""]",1048.07,"{""promo"": ""6%""}",203566,0,Asia +2023-11-06,43758,3446,"[""Tablet"", ""Wireless Mouse""]",4620.64,{},263473,0,North America +2023-08-10,43759,6746,"[""Headphones""]",3568.29,"{""loyalty"": ""26%""}",219385,0,North America +2024-05-23,43760,1644,"[""Laptop""]",1900.06,"{""seasonal"": ""14%""}",223601,0,Africa +2023-03-06,43761,6911,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4327.43,{},41777,1,Asia +2024-12-15,43762,8877,"[""Keyboard""]",1342.68,{},151766,1,South America +2023-04-27,43763,6703,"[""Laptop"", ""Keyboard""]",3038.26,"{""loyalty"": ""21%""}",249917,1,North America +2023-03-03,43764,5046,"[""Headphones""]",3931.56,{},127691,0,North America +2023-12-22,43765,1565,"[""Phone"", ""Monitor""]",1165.97,"{""loyalty"": ""17%""}",159262,1,Asia +2024-05-16,43766,573,"[""Phone"", ""Keyboard""]",3245.55,{},76629,1,South America +2024-10-04,43767,3275,"[""Laptop"", ""Keyboard"", ""Headphones""]",3118.26,"{""seasonal"": ""23%""}",15778,1,North America +2024-08-30,43768,4471,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4684.57,{},246706,0,South America +2024-07-27,43769,8449,"[""Wireless Mouse"", ""Monitor""]",1519.35,{},71327,0,North America +2023-12-28,43770,5932,"[""Charger"", ""Headphones"", ""Phone""]",2302.03,"{""seasonal"": ""29%""}",35288,0,Asia +2024-01-18,43771,7122,"[""Phone""]",1063.13,{},91244,0,North America +2024-02-01,43772,6443,"[""Keyboard""]",773.09,{},206110,1,South America +2024-01-26,43773,9840,"[""Tablet""]",4118.69,{},45648,0,Europe +2023-07-01,43774,2001,"[""Laptop"", ""Charger""]",2524.2,"{"""": ""25%""}",134505,1,South America +2023-08-08,43775,9829,"[""Laptop"", ""Keyboard"", ""Headphones""]",2939.39,{},104054,0,North America +2023-11-24,43776,9802,"[""Monitor"", ""Wireless Mouse""]",876.58,{},37572,1,Africa +2023-01-29,43777,1549,"[""Phone"", ""Headphones""]",3095.25,{},238617,1,North America +2023-10-21,43778,2555,"[""Headphones"", ""Phone"", ""Keyboard""]",432.41,"{""seasonal"": ""24%""}",41251,1,Asia +2023-05-07,43779,1642,"[""Headphones"", ""Tablet""]",1429.3,"{""loyalty"": ""18%""}",271181,0,South America +2023-05-18,43780,1675,"[""Laptop"", ""Keyboard""]",3570.62,{},184079,1,Asia +2024-12-20,43781,8322,"[""Monitor""]",1338.8,"{""loyalty"": ""27%""}",244914,0,North America +2023-08-16,43782,6937,"[""Wireless Mouse""]",4609.14,{},113441,0,Asia +2024-10-16,43783,2842,"[""Tablet""]",4283.31,"{""loyalty"": ""28%""}",91883,0,Asia +2024-06-20,43784,5961,"[""Wireless Mouse"", ""Laptop""]",3896.85,{},23712,0,South America +2023-05-13,43785,8738,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2534.72,"{""promo"": ""30%""}",104643,1,Asia +2024-08-08,43786,3602,"[""Keyboard"", ""Charger"", ""Phone""]",102.42,{},80023,0,Europe +2024-03-31,43787,4691,"[""Laptop""]",3319.47,"{""promo"": ""7%""}",228771,0,Africa +2023-07-15,43788,2845,"[""Headphones"", ""Tablet""]",4459.25,"{""promo"": ""6%""}",101279,1,North America +2024-06-28,43789,3955,"[""Wireless Mouse""]",1654.12,{},191252,1,South America +2023-03-01,43790,5024,"[""Keyboard"", ""Headphones""]",254.31,"{""promo"": ""28%""}",80790,1,Asia +2024-05-12,43791,3397,"[""Laptop"", ""Tablet"", ""Keyboard""]",2506.46,{},163660,1,Africa +2024-12-30,43792,1225,"[""Laptop"", ""Monitor""]",3883.39,{},78941,0,Africa +2023-08-14,43793,4912,"[""Charger"", ""Wireless Mouse""]",4546.35,{},120698,1,Africa +2023-12-31,43794,4692,"[""Charger""]",3532.94,{},72734,0,South America +2024-06-13,43795,5152,"[""Laptop""]",3030.72,{},258010,0,Europe +2023-06-18,43796,7717,"[""Tablet""]",3276.15,{},252013,1,Europe +2023-09-07,43797,8145,"[""Tablet""]",3510.81,"{"""": ""8%""}",210959,0,South America +2024-01-13,43798,9560,"[""Keyboard"", ""Monitor""]",4382.11,"{""loyalty"": ""6%""}",239126,1,Africa +2023-03-11,43799,2557,"[""Headphones"", ""Charger""]",1554.99,{},225792,1,Africa +2023-10-30,43800,3751,"[""Keyboard""]",4352.24,{},90368,0,Europe +2023-10-14,43801,5317,"[""Monitor"", ""Wireless Mouse""]",582.4,{},71549,1,North America +2023-04-28,43802,5702,"[""Wireless Mouse"", ""Monitor""]",1297.49,"{"""": ""26%""}",50492,1,South America +2024-03-16,43803,9404,"[""Phone""]",1615.87,{},228896,1,Africa +2023-04-19,43804,6941,"[""Wireless Mouse"", ""Keyboard""]",4883.99,{},34582,1,Africa +2023-07-31,43805,4048,"[""Tablet""]",934.42,"{""loyalty"": ""8%""}",7866,0,Europe +2024-09-23,43806,1500,"[""Keyboard"", ""Headphones""]",4396.48,{},65732,1,South America +2023-09-28,43807,5264,"[""Tablet"", ""Monitor"", ""Headphones""]",3091.03,{},28150,0,Africa +2023-03-10,43808,7285,"[""Wireless Mouse""]",582.34,"{"""": ""8%""}",96424,0,North America +2023-09-10,43809,3557,"[""Keyboard"", ""Laptop"", ""Monitor""]",1238.46,"{""loyalty"": ""14%""}",257167,0,Africa +2024-12-27,43810,6645,"[""Phone""]",3565.21,"{""loyalty"": ""30%""}",32078,0,North America +2023-03-26,43811,2900,"[""Phone"", ""Headphones""]",1267.73,"{""promo"": ""29%""}",298467,1,Europe +2023-09-20,43812,4143,"[""Charger"", ""Monitor""]",3271.73,{},165808,0,Africa +2024-12-13,43813,8746,"[""Headphones"", ""Keyboard"", ""Laptop""]",3752.55,"{""promo"": ""24%""}",196601,1,Africa +2024-08-16,43814,3546,"[""Keyboard""]",4873.29,{},96383,1,Europe +2023-05-30,43815,5718,"[""Phone"", ""Tablet""]",3290.87,{},177680,0,South America +2024-07-12,43816,4043,"[""Tablet""]",4939.72,"{"""": ""16%""}",114823,1,Africa +2023-04-28,43817,1483,"[""Keyboard"", ""Monitor"", ""Headphones""]",551.47,{},62607,1,Asia +2023-10-19,43818,9088,"[""Keyboard""]",4410.49,{},231906,0,Asia +2024-11-02,43819,9303,"[""Wireless Mouse"", ""Headphones""]",1513.74,"{"""": ""17%""}",130162,0,South America +2023-02-18,43820,906,"[""Phone"", ""Charger""]",4384.66,"{""seasonal"": ""25%""}",219628,0,South America +2024-01-19,43821,9022,"[""Phone"", ""Monitor""]",537.31,"{""loyalty"": ""15%""}",270694,0,South America +2024-01-12,43822,7075,"[""Tablet""]",4909.89,{},1877,0,Asia +2023-11-04,43823,2115,"[""Phone""]",4810.45,"{""seasonal"": ""24%""}",57798,1,Asia +2024-02-17,43824,7115,"[""Headphones"", ""Monitor"", ""Charger""]",1134.39,{},97730,1,North America +2023-07-02,43825,9792,"[""Tablet""]",1294.1,{},35842,0,Europe +2024-03-12,43826,1376,"[""Keyboard"", ""Charger"", ""Headphones""]",2907.27,{},86555,0,Asia +2024-09-05,43827,6013,"[""Keyboard"", ""Laptop""]",4454.36,"{""loyalty"": ""12%""}",172756,0,South America +2023-07-23,43828,8269,"[""Phone"", ""Laptop"", ""Keyboard""]",3708.39,{},5800,1,North America +2023-10-19,43829,8289,"[""Charger"", ""Phone""]",872.64,{},87388,1,Africa +2023-09-07,43830,7971,"[""Phone"", ""Tablet"", ""Headphones""]",607.26,"{""loyalty"": ""22%""}",51694,0,North America +2023-08-16,43831,4494,"[""Tablet"", ""Wireless Mouse""]",3143.81,"{""seasonal"": ""25%""}",21635,0,Africa +2023-05-15,43832,2922,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1639.26,{},8722,1,North America +2024-07-04,43833,8880,"[""Keyboard"", ""Charger""]",518.79,{},153935,1,Europe +2023-04-12,43834,9563,"[""Keyboard"", ""Tablet"", ""Headphones""]",2912.17,"{""promo"": ""5%""}",99948,1,Africa +2024-12-18,43835,1379,"[""Laptop"", ""Monitor""]",2878.68,"{""promo"": ""17%""}",236374,1,Asia +2023-08-07,43836,7947,"[""Wireless Mouse"", ""Tablet""]",4333.22,"{""seasonal"": ""30%""}",120140,1,North America +2024-07-19,43837,2965,"[""Wireless Mouse""]",76.79,{},55574,1,Europe +2023-01-19,43838,1191,"[""Monitor""]",1658.46,"{""loyalty"": ""9%""}",178473,1,Asia +2024-03-11,43839,1082,"[""Laptop"", ""Phone""]",2490.54,"{"""": ""28%""}",18757,1,Asia +2024-07-29,43840,480,"[""Phone"", ""Headphones"", ""Laptop""]",1262.25,"{""promo"": ""16%""}",126156,0,Asia +2023-07-12,43841,6689,"[""Monitor"", ""Wireless Mouse""]",1706.86,"{""seasonal"": ""29%""}",203345,0,Europe +2024-11-24,43842,3133,"[""Monitor"", ""Charger""]",1574.97,{},144123,0,Europe +2023-12-18,43843,426,"[""Laptop"", ""Phone"", ""Charger""]",1120.93,"{"""": ""9%""}",146755,1,South America +2023-08-06,43844,1194,"[""Headphones"", ""Charger"", ""Monitor""]",2620.6,"{""seasonal"": ""9%""}",106698,0,South America +2023-05-22,43845,1629,"[""Tablet""]",2248.29,{},235881,0,Asia +2023-07-30,43846,2996,"[""Charger"", ""Headphones""]",3224.07,{},108686,0,Africa +2023-08-23,43847,7468,"[""Headphones""]",1228.74,"{""promo"": ""17%""}",290114,0,North America +2023-03-18,43848,944,"[""Keyboard"", ""Headphones""]",4237.9,{},39056,0,Africa +2023-01-10,43849,5084,"[""Laptop"", ""Monitor""]",2476.05,"{"""": ""15%""}",10919,0,North America +2023-06-24,43850,1155,"[""Phone"", ""Laptop"", ""Monitor""]",2336.95,{},135247,0,Asia +2024-09-11,43851,5132,"[""Headphones"", ""Wireless Mouse""]",703.34,"{""promo"": ""7%""}",191006,0,Europe +2023-04-15,43852,5893,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1427.12,{},246379,0,North America +2024-08-16,43853,5909,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3055.71,"{""seasonal"": ""8%""}",36927,1,Africa +2023-04-20,43854,2236,"[""Monitor""]",2771.38,{},239635,1,Africa +2023-07-17,43855,442,"[""Monitor"", ""Tablet""]",1839.35,{},121248,1,Africa +2024-05-03,43856,8800,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3226.23,"{""seasonal"": ""16%""}",190622,1,Europe +2023-08-14,43857,6278,"[""Headphones"", ""Keyboard"", ""Tablet""]",2229.44,{},157009,0,Asia +2023-02-26,43858,5206,"[""Phone""]",1634.27,{},42767,0,Asia +2023-01-29,43859,8310,"[""Charger"", ""Laptop"", ""Monitor""]",2862.92,"{"""": ""28%""}",191920,1,Europe +2023-04-25,43860,7890,"[""Charger""]",4358.26,{},62968,1,North America +2023-09-05,43861,3486,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2138.78,"{""seasonal"": ""18%""}",90561,0,Asia +2024-08-18,43862,3647,"[""Laptop""]",1383.44,{},158089,1,Africa +2023-02-24,43863,7004,"[""Phone""]",4200.75,"{"""": ""14%""}",21496,0,South America +2024-05-24,43864,3555,"[""Tablet"", ""Phone"", ""Monitor""]",4959.51,"{""loyalty"": ""11%""}",145924,1,Asia +2023-04-24,43865,504,"[""Monitor"", ""Laptop""]",3736.59,{},173451,1,Asia +2023-04-15,43866,7040,"[""Keyboard"", ""Charger""]",468.75,{},90090,1,Africa +2024-04-05,43867,2203,"[""Laptop""]",1985.58,{},61572,0,Europe +2023-12-21,43868,6824,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4237.23,{},113666,0,Africa +2023-03-30,43869,9494,"[""Wireless Mouse"", ""Laptop""]",2822.25,{},189046,1,South America +2024-05-10,43870,4416,"[""Tablet"", ""Laptop""]",1787.13,{},107624,1,Asia +2023-09-21,43871,8068,"[""Phone""]",2512.31,"{""seasonal"": ""11%""}",16047,1,Africa +2024-10-04,43872,3567,"[""Keyboard""]",2636.25,"{"""": ""6%""}",99057,1,North America +2024-04-26,43873,5539,"[""Headphones""]",3744.41,{},32588,0,Africa +2024-11-13,43874,3502,"[""Headphones""]",4030.58,"{"""": ""22%""}",118377,0,South America +2024-07-08,43875,101,"[""Headphones"", ""Charger"", ""Tablet""]",1526.98,{},294401,1,South America +2023-03-05,43876,5387,"[""Laptop""]",4289.56,"{""loyalty"": ""22%""}",15590,0,Africa +2023-09-02,43877,1570,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2131.06,"{"""": ""10%""}",41412,0,North America +2023-10-29,43878,7411,"[""Monitor"", ""Phone""]",4455.52,{},19366,1,Europe +2024-03-14,43879,2617,"[""Wireless Mouse"", ""Headphones""]",3437.19,"{""seasonal"": ""5%""}",197593,0,Europe +2023-11-05,43880,9863,"[""Monitor"", ""Tablet""]",577.53,{},75777,0,Europe +2024-03-10,43881,7674,"[""Laptop"", ""Charger""]",1424.37,{},84489,1,South America +2023-11-25,43882,2005,"[""Phone"", ""Keyboard""]",2260.26,"{""seasonal"": ""26%""}",201061,0,South America +2024-02-09,43883,4554,"[""Wireless Mouse""]",3448.1,{},42807,0,South America +2023-01-20,43884,4282,"[""Monitor""]",2841.61,"{""seasonal"": ""16%""}",68318,1,Asia +2023-07-29,43885,7349,"[""Tablet""]",104.53,{},51931,0,North America +2024-08-27,43886,705,"[""Phone""]",1815.64,{},209972,0,North America +2023-04-29,43887,8454,"[""Headphones""]",986.67,{},202585,0,South America +2023-06-06,43888,1589,"[""Tablet"", ""Headphones""]",591.98,"{""loyalty"": ""22%""}",146831,1,South America +2023-12-08,43889,749,"[""Keyboard"", ""Phone"", ""Tablet""]",4288.96,"{""seasonal"": ""17%""}",157558,1,Asia +2024-01-25,43890,1813,"[""Keyboard""]",1220.18,{},287380,1,Africa +2024-08-18,43891,8168,"[""Tablet"", ""Charger""]",3529.31,"{""seasonal"": ""27%""}",49124,0,North America +2024-08-15,43892,2170,"[""Tablet""]",512.11,{},186301,1,Asia +2024-02-23,43893,4046,"[""Wireless Mouse""]",3023.13,"{"""": ""5%""}",213796,1,South America +2023-06-30,43894,5422,"[""Laptop"", ""Monitor"", ""Keyboard""]",4921.79,"{""seasonal"": ""26%""}",37820,1,Europe +2023-07-28,43895,8696,"[""Phone""]",3390.18,"{""seasonal"": ""11%""}",284830,0,Asia +2023-10-03,43896,2744,"[""Keyboard""]",1630.97,{},40946,1,South America +2023-10-24,43897,3557,"[""Tablet""]",1654.37,"{"""": ""22%""}",191615,0,Asia +2023-09-25,43898,3531,"[""Phone""]",4659.91,"{""promo"": ""21%""}",252160,1,South America +2024-10-22,43899,8581,"[""Headphones""]",481.64,{},172056,0,North America +2023-03-06,43900,5331,"[""Charger""]",2367.9,{},10765,1,Asia +2023-07-19,43901,3942,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",752.61,"{""seasonal"": ""9%""}",8183,1,Europe +2024-11-05,43902,1545,"[""Headphones"", ""Tablet"", ""Charger""]",2431.14,{},196799,1,North America +2023-03-11,43903,7509,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3550.76,"{""promo"": ""20%""}",177477,0,Africa +2023-04-23,43904,819,"[""Monitor""]",742.03,"{""promo"": ""17%""}",258013,0,South America +2023-09-20,43905,6358,"[""Phone"", ""Keyboard"", ""Monitor""]",1367.59,"{""loyalty"": ""24%""}",15007,1,Africa +2023-05-05,43906,7413,"[""Tablet"", ""Phone""]",4172.39,"{""loyalty"": ""24%""}",252125,0,South America +2023-12-13,43907,1162,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2447.21,"{""seasonal"": ""5%""}",286833,0,Europe +2023-01-07,43908,4452,"[""Keyboard"", ""Charger""]",564.61,{},114569,0,Asia +2023-07-09,43909,2222,"[""Headphones"", ""Charger""]",1755.46,"{""seasonal"": ""11%""}",180838,1,Asia +2024-05-24,43910,1960,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3977.5,"{""seasonal"": ""29%""}",184182,1,North America +2023-01-15,43911,4428,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4604.92,{},128875,1,North America +2023-07-15,43912,7180,"[""Laptop"", ""Tablet""]",1976.51,"{""promo"": ""9%""}",193858,0,Africa +2024-01-14,43913,4123,"[""Keyboard"", ""Monitor"", ""Tablet""]",4445.93,{},160926,1,Asia +2024-12-13,43914,1358,"[""Wireless Mouse""]",4417.6,{},55838,1,South America +2023-02-15,43915,5726,"[""Headphones""]",3907.98,"{"""": ""28%""}",255032,1,Europe +2023-09-10,43916,3034,"[""Tablet"", ""Headphones""]",1636.4,"{"""": ""28%""}",60639,1,Europe +2024-12-29,43917,3260,"[""Phone"", ""Headphones"", ""Monitor""]",3567.29,{},56446,0,Africa +2024-03-17,43918,2715,"[""Charger"", ""Phone"", ""Headphones""]",1619.66,{},283456,0,Africa +2024-06-16,43919,6907,"[""Wireless Mouse"", ""Headphones""]",996.26,{},194411,1,South America +2024-08-11,43920,1838,"[""Wireless Mouse""]",453.99,"{"""": ""5%""}",263341,1,Europe +2023-07-21,43921,1680,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2591.31,{},105162,0,South America +2024-06-04,43922,4133,"[""Charger""]",3157.18,"{""loyalty"": ""21%""}",26743,1,Europe +2024-03-18,43923,3656,"[""Phone"", ""Headphones"", ""Monitor""]",2450.56,{},157387,0,Europe +2023-07-23,43924,8439,"[""Laptop"", ""Phone"", ""Monitor""]",539.98,{},282459,0,Europe +2023-12-09,43925,919,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4769.49,"{""seasonal"": ""16%""}",97512,1,North America +2024-05-10,43926,4443,"[""Headphones"", ""Tablet""]",1557.04,{},272707,1,Asia +2024-09-21,43927,4515,"[""Laptop"", ""Tablet""]",1835.2,"{"""": ""28%""}",200216,1,North America +2024-05-16,43928,6710,"[""Headphones"", ""Laptop"", ""Charger""]",517.25,{},154806,0,Africa +2023-03-20,43929,9535,"[""Monitor"", ""Wireless Mouse""]",4223.69,{},10700,0,Africa +2024-10-20,43930,5425,"[""Laptop"", ""Monitor""]",3341.17,{},289469,1,Asia +2024-04-27,43931,1845,"[""Laptop""]",1259.25,"{""seasonal"": ""28%""}",15373,0,North America +2024-04-14,43932,8504,"[""Phone"", ""Keyboard""]",3489.77,"{""promo"": ""24%""}",297504,1,Europe +2024-02-11,43933,4012,"[""Phone""]",3228.15,"{""seasonal"": ""10%""}",36506,1,South America +2024-11-28,43934,5781,"[""Tablet""]",4877.55,"{"""": ""9%""}",66830,1,Asia +2024-07-13,43935,2349,"[""Wireless Mouse"", ""Phone""]",1729.93,"{""seasonal"": ""11%""}",223742,0,Asia +2023-07-17,43936,9286,"[""Laptop"", ""Monitor""]",1299.73,{},179760,0,Asia +2024-05-22,43937,967,"[""Wireless Mouse"", ""Phone""]",1439.4,{},282059,1,Europe +2023-12-15,43938,3591,"[""Monitor"", ""Wireless Mouse""]",4023.89,{},296233,0,Africa +2024-01-10,43939,6656,"[""Laptop""]",837.38,{},37768,1,North America +2023-02-24,43940,9675,"[""Monitor""]",4457.42,{},207569,0,Europe +2023-12-20,43941,7690,"[""Wireless Mouse""]",213.9,{},140894,1,Africa +2023-10-27,43942,4383,"[""Tablet""]",1793.45,{},99131,0,South America +2024-09-14,43943,2178,"[""Laptop"", ""Phone"", ""Headphones""]",3943.82,{},297270,1,Europe +2024-10-31,43944,6847,"[""Phone""]",1333.11,{},123868,0,North America +2023-12-28,43945,6615,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3197.09,{},78913,0,Africa +2024-05-04,43946,3999,"[""Charger"", ""Tablet""]",2058.71,"{""seasonal"": ""23%""}",92999,0,Africa +2023-12-01,43947,7,"[""Monitor"", ""Phone""]",4880.67,"{"""": ""14%""}",152479,0,Africa +2023-09-05,43948,1439,"[""Phone"", ""Tablet"", ""Monitor""]",3598.0,"{""seasonal"": ""17%""}",153595,0,Europe +2024-06-29,43949,6865,"[""Headphones""]",1889.31,"{""loyalty"": ""26%""}",162076,0,Europe +2024-01-26,43950,4986,"[""Charger"", ""Keyboard""]",2888.71,{},260237,1,South America +2023-01-20,43951,7055,"[""Keyboard"", ""Phone""]",1965.55,"{""promo"": ""26%""}",299734,1,North America +2023-07-06,43952,2703,"[""Laptop"", ""Monitor"", ""Tablet""]",4659.22,{},196852,1,North America +2024-05-13,43953,7582,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1164.57,{},285329,0,South America +2023-03-02,43954,804,"[""Charger""]",3119.82,{},65578,0,Europe +2023-12-08,43955,688,"[""Wireless Mouse""]",444.85,"{""seasonal"": ""28%""}",271668,0,Asia +2024-11-07,43956,7776,"[""Laptop"", ""Monitor""]",1502.11,{},181232,1,North America +2024-04-22,43957,2902,"[""Tablet""]",4584.55,{},134558,1,North America +2024-07-11,43958,413,"[""Headphones"", ""Keyboard"", ""Phone""]",1480.53,{},56516,0,Europe +2023-05-07,43959,9321,"[""Wireless Mouse""]",3444.77,"{""loyalty"": ""10%""}",244539,1,North America +2023-08-30,43960,17,"[""Laptop"", ""Tablet"", ""Keyboard""]",327.68,"{""loyalty"": ""5%""}",258383,1,North America +2023-02-08,43961,230,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2618.32,{},257024,1,Asia +2023-07-29,43962,1826,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2899.86,{},15766,0,Africa +2023-02-03,43963,6618,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",621.61,{},273427,1,Europe +2024-03-04,43964,7808,"[""Tablet""]",2379.27,"{""promo"": ""20%""}",53524,0,South America +2023-04-25,43965,1122,"[""Phone"", ""Headphones"", ""Tablet""]",82.0,"{""seasonal"": ""14%""}",251704,1,Africa +2023-05-23,43966,5660,"[""Wireless Mouse""]",467.76,"{"""": ""26%""}",109474,1,North America +2024-06-30,43967,2278,"[""Headphones"", ""Charger"", ""Tablet""]",2394.24,{},173826,0,Africa +2023-07-31,43968,9131,"[""Charger"", ""Monitor""]",782.82,{},212680,0,Asia +2024-08-31,43969,8257,"[""Charger"", ""Monitor""]",3201.81,{},137513,1,South America +2024-06-11,43970,9929,"[""Charger""]",483.21,{},182026,0,North America +2023-03-29,43971,4746,"[""Tablet""]",4591.11,"{""promo"": ""7%""}",146426,1,South America +2023-07-31,43972,6720,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1910.12,"{""loyalty"": ""17%""}",172233,1,Europe +2023-05-17,43973,5694,"[""Wireless Mouse""]",3604.57,"{""loyalty"": ""8%""}",153805,0,North America +2023-07-31,43974,8174,"[""Keyboard"", ""Wireless Mouse""]",1836.48,{},136562,1,North America +2023-11-29,43975,6126,"[""Laptop"", ""Phone"", ""Monitor""]",4906.6,{},63796,0,Africa +2024-10-18,43976,2832,"[""Keyboard""]",1124.46,"{""seasonal"": ""17%""}",282636,1,North America +2024-03-19,43977,6058,"[""Monitor""]",3507.67,"{""seasonal"": ""27%""}",298921,0,South America +2023-12-06,43978,5943,"[""Keyboard"", ""Wireless Mouse""]",782.29,"{""seasonal"": ""13%""}",100770,0,Africa +2023-09-22,43979,7715,"[""Phone"", ""Monitor"", ""Keyboard""]",1095.52,"{""promo"": ""30%""}",26808,1,South America +2023-06-07,43980,1552,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1156.54,{},144551,1,Africa +2023-10-21,43981,3730,"[""Wireless Mouse""]",4553.3,{},177803,0,Africa +2023-07-28,43982,4275,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3144.97,{},245675,0,Africa +2024-11-20,43983,3298,"[""Charger"", ""Headphones"", ""Keyboard""]",208.69,"{""seasonal"": ""19%""}",54714,0,Africa +2023-06-09,43984,3758,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1685.38,"{""promo"": ""17%""}",185722,0,South America +2024-05-12,43985,3140,"[""Tablet"", ""Phone""]",1627.67,{},18977,1,North America +2023-12-16,43986,1903,"[""Headphones"", ""Wireless Mouse""]",2192.19,"{"""": ""18%""}",90440,0,Asia +2023-07-24,43987,8501,"[""Monitor"", ""Tablet""]",84.79,{},292606,0,Africa +2023-03-17,43988,3169,"[""Wireless Mouse""]",2161.77,"{""loyalty"": ""6%""}",137592,1,Europe +2024-03-17,43989,369,"[""Charger"", ""Keyboard""]",4977.58,"{""loyalty"": ""21%""}",146778,0,Europe +2024-11-10,43990,294,"[""Phone""]",2772.29,"{"""": ""29%""}",260941,0,Asia +2024-01-11,43991,4383,"[""Phone""]",1253.43,"{""seasonal"": ""25%""}",172959,1,North America +2024-03-18,43992,8396,"[""Phone"", ""Monitor"", ""Tablet""]",2570.42,"{""seasonal"": ""11%""}",161364,1,Asia +2024-10-04,43993,3200,"[""Laptop""]",119.75,"{""seasonal"": ""7%""}",116161,0,Africa +2023-11-04,43994,3940,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1761.71,"{""promo"": ""15%""}",87306,1,North America +2023-03-13,43995,9721,"[""Monitor"", ""Tablet""]",431.88,{},288508,0,Asia +2023-08-08,43996,9045,"[""Keyboard""]",3966.09,"{""promo"": ""23%""}",250535,1,South America +2024-06-10,43997,877,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4581.51,"{""seasonal"": ""16%""}",241784,0,South America +2024-07-19,43998,2577,"[""Laptop"", ""Tablet"", ""Keyboard""]",4738.67,{},245820,1,Asia +2023-07-02,43999,3041,"[""Headphones"", ""Keyboard""]",4697.77,"{""seasonal"": ""14%""}",79624,1,North America +2024-02-06,44000,8979,"[""Charger""]",3136.39,{},11677,1,Africa +2024-10-01,44001,5459,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1575.88,"{""seasonal"": ""21%""}",259665,1,North America +2024-04-17,44002,1201,"[""Tablet"", ""Headphones""]",3726.1,"{""seasonal"": ""20%""}",248876,0,North America +2024-11-30,44003,5297,"[""Tablet"", ""Monitor""]",1804.89,{},54889,1,Africa +2024-04-22,44004,821,"[""Headphones"", ""Charger""]",2485.81,{},32792,0,Asia +2023-10-03,44005,4810,"[""Phone"", ""Headphones""]",2726.27,"{""loyalty"": ""16%""}",116569,1,Africa +2024-03-12,44006,3576,"[""Headphones"", ""Tablet""]",1419.62,{},194138,1,South America +2023-03-18,44007,3085,"[""Headphones"", ""Laptop"", ""Tablet""]",4464.15,"{""promo"": ""15%""}",271008,0,North America +2023-06-29,44008,7551,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1758.74,{},167144,0,Asia +2023-12-29,44009,1766,"[""Laptop"", ""Phone""]",2960.47,{},217808,0,South America +2023-05-18,44010,6305,"[""Laptop""]",3298.15,"{""promo"": ""20%""}",82325,0,South America +2023-09-03,44011,9844,"[""Phone"", ""Tablet"", ""Headphones""]",1274.86,{},92383,1,Africa +2023-04-05,44012,3433,"[""Laptop""]",1686.23,{},31366,0,Africa +2023-12-10,44013,5311,"[""Laptop"", ""Phone""]",542.89,{},252926,1,Asia +2023-06-25,44014,9743,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2978.88,{},200356,0,Asia +2023-10-16,44015,1668,"[""Tablet"", ""Headphones""]",3208.25,"{""promo"": ""18%""}",92733,1,South America +2024-02-04,44016,4228,"[""Monitor"", ""Keyboard"", ""Headphones""]",716.69,{},131571,0,South America +2023-08-15,44017,1748,"[""Phone"", ""Monitor""]",3251.64,{},277164,0,Africa +2023-06-19,44018,52,"[""Monitor"", ""Laptop""]",356.64,"{""seasonal"": ""7%""}",91966,1,North America +2024-10-21,44019,8210,"[""Tablet""]",3503.63,{},67859,0,Europe +2024-09-26,44020,4014,"[""Wireless Mouse"", ""Laptop""]",795.44,"{""seasonal"": ""12%""}",7998,0,Europe +2024-04-16,44021,6781,"[""Headphones"", ""Tablet"", ""Laptop""]",2680.88,"{""loyalty"": ""8%""}",226199,1,South America +2024-01-26,44022,4773,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1418.62,"{"""": ""28%""}",161135,1,North America +2024-09-29,44023,5616,"[""Charger"", ""Headphones"", ""Monitor""]",1654.83,"{"""": ""5%""}",177976,0,North America +2023-03-22,44024,5839,"[""Keyboard""]",1979.49,{},277561,1,Africa +2024-06-24,44025,2116,"[""Phone"", ""Wireless Mouse""]",2020.12,{},83072,0,North America +2023-05-05,44026,1835,"[""Headphones""]",2295.84,{},23022,1,Asia +2023-11-15,44027,8897,"[""Laptop"", ""Headphones""]",2893.26,{},135459,0,Europe +2023-02-20,44028,4418,"[""Monitor""]",4899.66,{},296915,0,Africa +2024-07-10,44029,1113,"[""Charger"", ""Keyboard"", ""Tablet""]",4298.61,"{"""": ""30%""}",6453,1,South America +2024-04-06,44030,1811,"[""Monitor""]",356.95,"{""loyalty"": ""18%""}",241409,0,North America +2024-10-07,44031,8508,"[""Wireless Mouse""]",2071.73,{},87262,0,Europe +2024-02-10,44032,5674,"[""Monitor"", ""Laptop"", ""Headphones""]",1335.67,"{""promo"": ""15%""}",262396,0,South America +2024-04-12,44033,9838,"[""Phone""]",1849.12,{},147917,0,South America +2024-11-16,44034,3823,"[""Charger"", ""Monitor""]",2344.11,"{""promo"": ""17%""}",288554,0,Asia +2024-09-27,44035,1290,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",332.52,"{""loyalty"": ""9%""}",259600,1,Africa +2023-06-26,44036,7334,"[""Monitor""]",2323.31,"{"""": ""17%""}",147365,1,Europe +2024-03-07,44037,1508,"[""Tablet"", ""Phone"", ""Laptop""]",231.69,"{""promo"": ""25%""}",275183,1,North America +2024-09-05,44038,7778,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2836.51,"{""loyalty"": ""28%""}",146422,1,South America +2024-06-26,44039,6892,"[""Monitor"", ""Laptop""]",2640.97,{},208604,1,South America +2023-05-01,44040,9296,"[""Laptop""]",1577.71,"{""seasonal"": ""17%""}",259067,1,North America +2024-12-04,44041,9290,"[""Charger""]",1246.02,"{"""": ""27%""}",171545,1,South America +2023-09-05,44042,1221,"[""Headphones"", ""Keyboard"", ""Phone""]",3042.67,"{"""": ""17%""}",75383,1,North America +2024-05-31,44043,1073,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3913.44,"{"""": ""15%""}",31786,0,South America +2024-02-07,44044,2090,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3916.35,"{""seasonal"": ""9%""}",204163,0,Africa +2024-02-14,44045,5730,"[""Charger"", ""Keyboard""]",2639.87,"{""promo"": ""21%""}",202061,1,Europe +2024-09-25,44046,5434,"[""Tablet"", ""Laptop"", ""Phone""]",4158.92,{},19881,0,Africa +2023-08-27,44047,1473,"[""Phone"", ""Headphones""]",4865.39,"{""loyalty"": ""29%""}",147124,1,Africa +2024-05-31,44048,799,"[""Charger"", ""Monitor""]",1874.28,"{""loyalty"": ""26%""}",267588,1,Asia +2023-01-16,44049,1232,"[""Phone""]",2300.48,{},94878,1,South America +2023-12-14,44050,9740,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",955.87,{},137354,1,Asia +2023-08-27,44051,4874,"[""Headphones"", ""Charger"", ""Keyboard""]",817.34,"{""loyalty"": ""17%""}",96972,1,North America +2023-12-19,44052,537,"[""Keyboard""]",2020.14,"{""loyalty"": ""22%""}",2713,0,Africa +2023-08-16,44053,7613,"[""Keyboard"", ""Phone"", ""Laptop""]",1597.55,{},121677,0,Europe +2024-11-04,44054,8652,"[""Phone"", ""Keyboard"", ""Monitor""]",365.38,"{""seasonal"": ""30%""}",174760,0,Asia +2024-08-13,44055,1499,"[""Wireless Mouse""]",881.79,"{""loyalty"": ""23%""}",247752,1,Europe +2023-07-28,44056,1214,"[""Keyboard"", ""Charger""]",4736.27,{},84560,1,Asia +2023-07-24,44057,4135,"[""Phone""]",481.94,"{""loyalty"": ""14%""}",76846,0,Asia +2023-11-21,44058,535,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2313.02,"{""loyalty"": ""21%""}",261804,0,Europe +2024-07-25,44059,5131,"[""Charger"", ""Headphones"", ""Phone""]",4459.24,{},268117,0,Africa +2023-11-12,44060,4394,"[""Keyboard"", ""Charger"", ""Phone""]",1243.94,{},287696,1,North America +2024-05-22,44061,3247,"[""Tablet""]",3021.63,{},7299,1,Europe +2024-05-16,44062,8704,"[""Tablet"", ""Wireless Mouse""]",431.25,{},166659,0,Asia +2024-02-22,44063,9744,"[""Charger""]",4989.49,{},148784,1,Africa +2023-08-17,44064,4380,"[""Tablet"", ""Headphones""]",4908.36,{},64999,0,Africa +2024-12-17,44065,478,"[""Laptop"", ""Charger""]",1867.06,"{""seasonal"": ""22%""}",159832,0,Europe +2023-11-11,44066,2718,"[""Keyboard""]",896.56,"{""seasonal"": ""7%""}",213022,1,Europe +2023-06-19,44067,3890,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",598.58,{},123308,0,Asia +2024-10-22,44068,102,"[""Keyboard""]",2291.48,"{""seasonal"": ""22%""}",143506,0,Africa +2024-12-07,44069,2684,"[""Wireless Mouse"", ""Charger""]",3858.62,"{""seasonal"": ""18%""}",294997,1,South America +2024-10-14,44070,1124,"[""Wireless Mouse""]",3953.39,"{"""": ""16%""}",25583,1,Europe +2023-06-01,44071,2178,"[""Keyboard"", ""Phone""]",663.69,{},66979,1,South America +2023-01-15,44072,2246,"[""Monitor"", ""Wireless Mouse""]",4581.68,{},258512,0,South America +2023-12-01,44073,1363,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4491.23,"{""promo"": ""30%""}",10151,1,South America +2024-08-08,44074,2779,"[""Headphones"", ""Wireless Mouse""]",2015.78,"{""loyalty"": ""14%""}",243402,1,South America +2024-03-26,44075,5823,"[""Headphones""]",1967.01,{},134414,1,Europe +2024-11-23,44076,6076,"[""Phone"", ""Laptop""]",3629.41,{},36752,1,Asia +2023-07-26,44077,7221,"[""Keyboard""]",3639.52,{},278548,0,Asia +2023-11-20,44078,7771,"[""Monitor"", ""Keyboard""]",4450.71,{},226159,1,North America +2024-09-08,44079,1101,"[""Laptop""]",1168.77,"{""seasonal"": ""23%""}",140468,0,Africa +2023-03-04,44080,6586,"[""Laptop"", ""Wireless Mouse""]",951.15,"{""loyalty"": ""13%""}",114634,0,Africa +2024-03-15,44081,9111,"[""Headphones"", ""Phone"", ""Laptop""]",4264.34,{},177715,0,Asia +2024-07-22,44082,7166,"[""Monitor"", ""Phone"", ""Laptop""]",2518.21,"{""promo"": ""9%""}",66315,0,North America +2024-09-19,44083,2213,"[""Laptop"", ""Keyboard""]",4905.65,"{"""": ""8%""}",10372,1,Asia +2023-09-21,44084,585,"[""Charger"", ""Tablet""]",678.72,{},76178,0,Africa +2024-07-02,44085,9082,"[""Wireless Mouse""]",4984.39,{},13029,0,South America +2024-11-30,44086,6039,"[""Laptop""]",459.26,"{""seasonal"": ""27%""}",174048,0,Asia +2024-08-20,44087,1874,"[""Monitor"", ""Charger""]",4989.65,{},296936,1,South America +2024-03-25,44088,9115,"[""Monitor""]",3982.71,{},167825,0,Europe +2023-09-13,44089,1175,"[""Keyboard"", ""Phone"", ""Headphones""]",1630.66,{},11651,0,Asia +2023-12-11,44090,8771,"[""Laptop"", ""Charger"", ""Tablet""]",810.76,"{"""": ""15%""}",243823,1,South America +2023-02-12,44091,2075,"[""Keyboard""]",3569.57,"{""seasonal"": ""14%""}",48206,0,Asia +2023-03-01,44092,4596,"[""Keyboard""]",3484.52,{},259345,0,North America +2023-08-04,44093,5266,"[""Keyboard""]",3966.22,"{""promo"": ""26%""}",94565,0,Africa +2024-12-28,44094,3683,"[""Tablet"", ""Wireless Mouse""]",1545.13,{},285996,0,Europe +2024-04-20,44095,261,"[""Keyboard""]",2263.9,{},107903,0,Asia +2023-01-10,44096,2980,"[""Charger""]",2827.78,"{"""": ""12%""}",194946,0,South America +2023-10-20,44097,9402,"[""Monitor""]",3167.75,{},236113,0,North America +2023-06-16,44098,9126,"[""Tablet""]",3666.51,{},56059,1,North America +2024-04-13,44099,1128,"[""Charger""]",4575.63,{},179088,0,Africa +2023-09-03,44100,5947,"[""Monitor""]",1339.09,"{""seasonal"": ""30%""}",49532,1,North America +2023-08-09,44101,2500,"[""Monitor"", ""Headphones"", ""Laptop""]",761.0,"{""loyalty"": ""20%""}",198733,1,North America +2023-04-28,44102,8322,"[""Keyboard""]",4710.36,{},248200,0,South America +2024-02-25,44103,358,"[""Charger"", ""Monitor"", ""Phone""]",1989.11,"{""seasonal"": ""26%""}",192795,0,Africa +2023-10-18,44104,7583,"[""Phone"", ""Keyboard"", ""Laptop""]",3607.76,"{""seasonal"": ""29%""}",113129,0,Africa +2023-09-08,44105,5621,"[""Monitor"", ""Phone""]",2455.47,{},178452,1,South America +2023-04-06,44106,9294,"[""Tablet""]",375.28,{},73066,1,Asia +2024-02-01,44107,1545,"[""Headphones"", ""Phone""]",4618.62,{},68796,0,South America +2023-11-06,44108,6970,"[""Laptop""]",256.16,"{""seasonal"": ""21%""}",137205,1,Asia +2024-06-01,44109,8359,"[""Tablet""]",2447.08,{},179199,0,South America +2024-02-06,44110,8358,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4064.96,{},294528,0,South America +2024-04-10,44111,9140,"[""Charger"", ""Tablet""]",1781.9,"{"""": ""5%""}",36521,1,Europe +2024-02-15,44112,1871,"[""Monitor"", ""Laptop""]",4063.27,"{""loyalty"": ""10%""}",248063,1,Europe +2023-07-19,44113,1840,"[""Laptop"", ""Tablet""]",4342.76,"{""loyalty"": ""15%""}",156585,0,Europe +2024-05-13,44114,9228,"[""Wireless Mouse""]",3351.8,"{""promo"": ""17%""}",134422,1,South America +2024-11-15,44115,2520,"[""Monitor""]",763.46,{},153919,1,Asia +2024-06-29,44116,1930,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3970.31,"{""seasonal"": ""14%""}",82444,0,Asia +2024-11-05,44117,1427,"[""Headphones"", ""Monitor"", ""Keyboard""]",1756.7,"{""loyalty"": ""14%""}",77363,1,Europe +2023-12-26,44118,8805,"[""Wireless Mouse""]",4270.53,"{""seasonal"": ""20%""}",280812,0,South America +2024-03-28,44119,1518,"[""Phone""]",4613.82,"{"""": ""17%""}",244145,1,Africa +2023-08-23,44120,7393,"[""Laptop""]",1249.06,{},250635,0,Asia +2023-06-15,44121,2612,"[""Wireless Mouse""]",2064.08,{},134439,1,Europe +2023-06-17,44122,4016,"[""Keyboard"", ""Monitor"", ""Tablet""]",1596.75,{},258746,1,North America +2023-06-28,44123,1398,"[""Wireless Mouse"", ""Laptop""]",336.12,{},124726,1,Africa +2024-02-22,44124,3651,"[""Headphones""]",3978.34,{},243909,1,Africa +2023-06-05,44125,3614,"[""Tablet""]",838.56,"{"""": ""28%""}",187527,1,Asia +2023-06-14,44126,1397,"[""Monitor"", ""Keyboard""]",1060.46,{},89717,1,Asia +2023-04-24,44127,3099,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2027.06,"{""loyalty"": ""21%""}",208336,1,Asia +2023-09-17,44128,3443,"[""Charger"", ""Laptop"", ""Monitor""]",4671.82,{},205712,0,South America +2024-03-18,44129,9443,"[""Phone""]",2470.79,{},170565,0,Europe +2024-01-30,44130,9418,"[""Monitor""]",523.33,{},241000,0,South America +2024-04-27,44131,8709,"[""Laptop""]",3719.55,"{"""": ""7%""}",113517,1,South America +2023-11-25,44132,1128,"[""Headphones""]",1002.88,{},92684,1,Europe +2023-09-23,44133,8675,"[""Phone""]",2386.4,{},75013,1,Europe +2024-08-30,44134,9036,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4284.2,{},280408,0,Africa +2024-08-19,44135,8663,"[""Monitor"", ""Tablet""]",3753.58,{},121916,0,North America +2023-01-05,44136,9881,"[""Headphones""]",2185.37,{},92144,0,Europe +2024-05-03,44137,9532,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2708.8,"{""loyalty"": ""13%""}",232395,1,North America +2024-04-15,44138,2637,"[""Keyboard""]",4841.4,{},217887,1,South America +2024-07-05,44139,6060,"[""Monitor""]",3077.86,{},217030,0,Europe +2023-01-24,44140,8430,"[""Laptop""]",739.64,{},3047,1,South America +2024-04-01,44141,3902,"[""Charger""]",4926.61,{},109078,1,South America +2023-11-14,44142,4448,"[""Tablet"", ""Charger"", ""Keyboard""]",502.64,"{""seasonal"": ""10%""}",21042,0,Asia +2024-10-15,44143,80,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2452.98,"{"""": ""27%""}",40613,0,South America +2023-08-16,44144,5340,"[""Tablet"", ""Laptop""]",2856.31,{},76241,1,Europe +2023-01-27,44145,688,"[""Charger""]",549.42,{},134851,0,Asia +2024-07-17,44146,6593,"[""Laptop"", ""Tablet""]",4593.71,{},131163,1,Europe +2023-06-01,44147,241,"[""Keyboard"", ""Laptop""]",3146.69,{},255327,1,Asia +2024-06-09,44148,2816,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3201.23,"{""promo"": ""9%""}",290227,0,Africa +2023-01-27,44149,187,"[""Laptop""]",3664.45,"{""seasonal"": ""9%""}",244753,1,South America +2024-05-07,44150,3390,"[""Wireless Mouse"", ""Keyboard""]",2458.57,{},252306,0,Europe +2023-03-10,44151,6525,"[""Keyboard"", ""Wireless Mouse""]",2340.51,{},277838,0,South America +2024-02-01,44152,9262,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4406.05,{},28536,1,Europe +2023-02-03,44153,5483,"[""Headphones""]",2500.5,{},171478,0,Africa +2024-05-18,44154,7177,"[""Monitor"", ""Laptop"", ""Tablet""]",1989.17,"{""seasonal"": ""26%""}",132369,0,Europe +2024-12-12,44155,6501,"[""Keyboard""]",3701.12,{},100861,1,Europe +2023-04-26,44156,3312,"[""Headphones""]",2767.19,{},143294,0,Asia +2024-11-14,44157,6114,"[""Phone""]",417.25,{},171378,0,South America +2024-07-10,44158,394,"[""Monitor""]",2268.85,{},5106,1,Asia +2023-03-17,44159,7176,"[""Keyboard"", ""Monitor""]",2796.67,{},124704,0,North America +2023-02-05,44160,8461,"[""Tablet"", ""Wireless Mouse""]",1707.02,{},11870,0,South America +2023-06-15,44161,8436,"[""Tablet"", ""Monitor""]",2576.07,"{""loyalty"": ""24%""}",13780,0,South America +2023-05-05,44162,4676,"[""Charger""]",4053.4,{},111011,1,South America +2023-09-15,44163,5258,"[""Tablet""]",194.66,"{""promo"": ""23%""}",44571,0,Africa +2024-05-22,44164,6547,"[""Charger"", ""Headphones""]",4813.34,"{"""": ""10%""}",287842,0,Africa +2023-01-09,44165,1508,"[""Charger""]",2776.66,"{""seasonal"": ""10%""}",93482,0,Europe +2024-01-06,44166,1785,"[""Keyboard"", ""Monitor""]",117.54,{},129355,1,Asia +2024-08-11,44167,6243,"[""Headphones"", ""Charger"", ""Monitor""]",2371.82,"{""promo"": ""15%""}",285146,0,Africa +2023-01-03,44168,3945,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1321.06,{},141338,0,South America +2023-10-10,44169,5891,"[""Keyboard"", ""Charger"", ""Phone""]",710.03,{},133770,0,Africa +2024-12-04,44170,6854,"[""Charger""]",4130.5,{},144353,1,Asia +2024-01-10,44171,4656,"[""Phone"", ""Tablet"", ""Laptop""]",1491.02,"{"""": ""6%""}",197358,0,North America +2024-08-07,44172,7160,"[""Wireless Mouse""]",382.74,"{"""": ""22%""}",95528,1,North America +2024-04-21,44173,6385,"[""Keyboard""]",2919.78,"{""promo"": ""24%""}",193928,1,North America +2023-06-15,44174,4896,"[""Phone"", ""Tablet""]",1480.43,"{""seasonal"": ""20%""}",43114,0,Asia +2023-01-06,44175,9341,"[""Charger"", ""Wireless Mouse""]",1632.25,{},152737,0,South America +2023-03-10,44176,2484,"[""Phone"", ""Tablet""]",2000.58,"{""seasonal"": ""19%""}",82469,0,North America +2023-02-24,44177,3217,"[""Laptop"", ""Tablet"", ""Phone""]",4255.86,"{""promo"": ""23%""}",19507,0,Europe +2023-07-29,44178,4761,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1396.29,{},248293,1,South America +2024-12-08,44179,5941,"[""Tablet""]",3269.39,{},222182,1,North America +2023-08-22,44180,1995,"[""Phone""]",3739.68,"{""promo"": ""15%""}",255312,1,Africa +2024-05-03,44181,8503,"[""Charger""]",4435.04,"{""seasonal"": ""24%""}",172239,0,North America +2023-07-14,44182,493,"[""Headphones""]",2280.41,"{"""": ""18%""}",259674,0,Africa +2023-05-23,44183,2165,"[""Laptop""]",333.98,{},236365,0,Europe +2024-02-20,44184,6255,"[""Wireless Mouse"", ""Keyboard""]",1054.85,{},189353,0,South America +2024-05-16,44185,4076,"[""Charger""]",2307.81,{},167523,1,Africa +2023-02-23,44186,3847,"[""Charger""]",4471.26,{},129174,0,Asia +2024-11-10,44187,6036,"[""Tablet""]",235.63,"{""seasonal"": ""21%""}",235365,1,Africa +2024-03-25,44188,8313,"[""Laptop""]",4391.29,"{""seasonal"": ""14%""}",44031,0,Africa +2024-12-08,44189,9285,"[""Tablet""]",571.94,{},144716,1,Europe +2023-06-02,44190,1800,"[""Wireless Mouse""]",3492.77,{},276520,0,South America +2024-07-17,44191,2643,"[""Monitor"", ""Keyboard"", ""Laptop""]",1107.49,{},168027,0,North America +2023-07-07,44192,2541,"[""Keyboard"", ""Charger""]",3855.73,{},288393,1,Asia +2024-11-02,44193,3291,"[""Keyboard"", ""Laptop"", ""Phone""]",3698.98,"{"""": ""6%""}",66522,1,Europe +2023-10-09,44194,406,"[""Keyboard""]",2444.12,"{""promo"": ""27%""}",42633,1,Europe +2023-05-09,44195,1189,"[""Charger"", ""Wireless Mouse""]",3555.77,{},204036,1,Africa +2024-04-10,44196,5346,"[""Phone""]",3401.0,"{""seasonal"": ""27%""}",86400,1,South America +2024-01-10,44197,4692,"[""Laptop"", ""Headphones""]",2687.17,{},24993,0,Africa +2023-07-21,44198,9197,"[""Monitor"", ""Tablet"", ""Headphones""]",2217.88,{},148713,0,North America +2023-05-25,44199,7356,"[""Tablet"", ""Laptop"", ""Charger""]",3904.02,{},281967,0,Europe +2024-07-18,44200,3068,"[""Monitor"", ""Charger""]",4452.83,"{""seasonal"": ""26%""}",34929,0,South America +2023-02-20,44201,8834,"[""Monitor"", ""Headphones""]",3631.51,{},261325,1,North America +2024-10-25,44202,2858,"[""Phone"", ""Wireless Mouse""]",3822.48,"{""promo"": ""11%""}",280254,0,Europe +2023-09-21,44203,6058,"[""Monitor"", ""Phone""]",3170.01,"{""loyalty"": ""5%""}",140276,0,Asia +2024-06-26,44204,2196,"[""Phone""]",3397.37,"{"""": ""6%""}",119766,1,Africa +2023-04-26,44205,3947,"[""Laptop"", ""Phone"", ""Tablet""]",2611.26,{},141510,0,Asia +2023-07-02,44206,1372,"[""Headphones"", ""Laptop"", ""Phone""]",255.21,{},210378,1,Europe +2023-12-31,44207,130,"[""Phone""]",552.59,{},11194,1,Europe +2023-08-24,44208,2672,"[""Phone""]",4577.35,"{""promo"": ""29%""}",150136,0,North America +2024-01-22,44209,2553,"[""Monitor""]",207.06,{},67064,0,Europe +2023-09-19,44210,5042,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2541.63,{},194196,0,South America +2023-06-14,44211,7581,"[""Monitor"", ""Wireless Mouse""]",391.51,{},189812,0,Europe +2023-11-17,44212,9378,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2205.49,"{""loyalty"": ""16%""}",30967,0,South America +2023-08-14,44213,9813,"[""Phone"", ""Tablet"", ""Charger""]",4974.77,{},199184,0,North America +2023-08-12,44214,8087,"[""Charger"", ""Headphones"", ""Tablet""]",4936.36,"{""seasonal"": ""13%""}",264189,0,Europe +2024-05-23,44215,3320,"[""Headphones""]",4087.84,"{""promo"": ""6%""}",258292,0,Asia +2023-03-10,44216,9835,"[""Charger"", ""Headphones"", ""Tablet""]",2307.4,{},185096,1,Europe +2024-01-18,44217,8599,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2926.88,"{""loyalty"": ""6%""}",68302,1,Europe +2024-08-20,44218,6760,"[""Phone""]",4714.38,"{""loyalty"": ""12%""}",170322,1,Europe +2024-11-24,44219,8999,"[""Monitor"", ""Phone"", ""Headphones""]",1656.1,{},92182,1,Asia +2023-05-27,44220,2440,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",895.01,"{""loyalty"": ""9%""}",283833,1,Africa +2024-04-27,44221,1827,"[""Keyboard"", ""Tablet""]",1157.25,"{"""": ""21%""}",253258,0,Asia +2023-10-17,44222,4260,"[""Laptop"", ""Phone"", ""Headphones""]",4159.45,"{"""": ""19%""}",248984,0,Africa +2024-02-23,44223,5676,"[""Phone"", ""Monitor"", ""Tablet""]",3432.47,{},15973,1,South America +2024-04-02,44224,5146,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",111.65,"{""promo"": ""18%""}",89255,1,Asia +2024-09-22,44225,355,"[""Headphones""]",2418.69,"{""loyalty"": ""24%""}",130871,1,Africa +2023-08-18,44226,9572,"[""Phone""]",708.07,{},30191,1,North America +2024-02-12,44227,1562,"[""Laptop"", ""Monitor""]",2135.6,"{"""": ""22%""}",98091,1,Asia +2023-01-05,44228,1442,"[""Monitor"", ""Laptop"", ""Headphones""]",1394.76,"{""promo"": ""14%""}",288429,0,South America +2023-04-26,44229,8306,"[""Keyboard""]",374.29,"{""loyalty"": ""8%""}",186157,1,South America +2024-06-24,44230,1461,"[""Laptop""]",4183.83,"{""promo"": ""28%""}",276221,1,South America +2024-12-08,44231,9326,"[""Laptop""]",690.25,{},276548,0,Africa +2024-03-22,44232,9024,"[""Laptop"", ""Keyboard""]",338.0,{},88171,0,Africa +2023-06-24,44233,5562,"[""Keyboard""]",2200.02,{},297486,1,Europe +2023-08-16,44234,4631,"[""Keyboard"", ""Monitor""]",4648.37,{},244821,0,Asia +2023-10-17,44235,9744,"[""Charger""]",3939.28,"{""loyalty"": ""7%""}",162181,0,Africa +2023-02-03,44236,405,"[""Charger"", ""Phone""]",75.4,"{""loyalty"": ""5%""}",4655,0,Africa +2023-11-11,44237,140,"[""Phone""]",968.53,"{""loyalty"": ""15%""}",166952,1,Europe +2024-09-05,44238,3565,"[""Charger""]",1354.09,"{""seasonal"": ""5%""}",278656,1,Africa +2023-03-17,44239,1958,"[""Tablet"", ""Phone"", ""Keyboard""]",4620.27,"{""seasonal"": ""20%""}",285717,1,Asia +2024-07-22,44240,7466,"[""Keyboard"", ""Headphones""]",1377.99,{},9836,0,Asia +2024-04-22,44241,5879,"[""Tablet"", ""Monitor""]",725.73,"{""seasonal"": ""9%""}",202298,0,Asia +2023-10-05,44242,5081,"[""Phone"", ""Keyboard""]",1526.5,{},30039,1,Asia +2023-04-02,44243,1334,"[""Headphones"", ""Laptop""]",1571.32,{},181579,0,North America +2024-06-19,44244,7268,"[""Monitor"", ""Charger""]",2295.9,"{"""": ""12%""}",223417,0,Africa +2024-06-02,44245,1478,"[""Laptop"", ""Tablet""]",2179.04,{},122037,0,North America +2024-06-17,44246,4010,"[""Tablet"", ""Phone"", ""Headphones""]",2277.28,"{""promo"": ""22%""}",86770,0,Europe +2023-06-01,44247,3803,"[""Headphones"", ""Keyboard""]",599.39,"{"""": ""17%""}",143232,1,Africa +2024-09-03,44248,624,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3092.47,"{""promo"": ""5%""}",232197,0,Europe +2024-09-30,44249,7585,"[""Wireless Mouse"", ""Headphones""]",4881.12,"{""loyalty"": ""20%""}",193106,0,Africa +2024-09-04,44250,612,"[""Charger"", ""Phone""]",1850.13,{},208283,1,South America +2024-10-01,44251,6399,"[""Headphones"", ""Laptop"", ""Monitor""]",3853.58,"{""seasonal"": ""11%""}",196156,1,Africa +2024-07-30,44252,9968,"[""Charger""]",1710.96,{},18332,0,Asia +2024-07-20,44253,4485,"[""Charger""]",3491.86,"{"""": ""23%""}",159424,0,Africa +2024-05-06,44254,978,"[""Phone"", ""Monitor""]",4038.84,{},23047,1,Europe +2024-09-14,44255,4952,"[""Phone""]",1441.33,{},42065,1,South America +2023-04-27,44256,8298,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3930.63,{},160940,0,Asia +2023-03-28,44257,1584,"[""Phone"", ""Laptop"", ""Tablet""]",4977.78,{},49588,0,Europe +2023-06-08,44258,1414,"[""Charger"", ""Tablet""]",4814.14,{},126072,0,South America +2023-03-04,44259,8675,"[""Tablet"", ""Wireless Mouse""]",306.5,"{""seasonal"": ""28%""}",225733,1,Europe +2024-07-18,44260,1617,"[""Tablet"", ""Charger""]",4753.17,"{""loyalty"": ""29%""}",201951,0,Europe +2023-06-05,44261,161,"[""Charger"", ""Laptop""]",947.62,{},234379,0,Europe +2023-05-12,44262,3361,"[""Phone"", ""Headphones""]",3973.65,{},25182,1,Europe +2023-10-18,44263,8548,"[""Phone"", ""Tablet""]",3056.24,"{""loyalty"": ""26%""}",119358,1,North America +2023-06-07,44264,3169,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1909.27,"{"""": ""29%""}",282058,1,North America +2023-01-17,44265,1061,"[""Phone"", ""Charger"", ""Keyboard""]",580.35,{},20345,1,North America +2023-07-14,44266,4199,"[""Phone"", ""Headphones"", ""Monitor""]",878.9,{},211263,0,Europe +2023-12-29,44267,195,"[""Laptop"", ""Phone"", ""Headphones""]",3909.29,"{"""": ""27%""}",275864,0,Africa +2023-09-23,44268,617,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2636.39,{},262908,0,North America +2024-06-06,44269,8650,"[""Monitor"", ""Keyboard""]",3081.43,{},16238,0,North America +2023-02-26,44270,6761,"[""Phone"", ""Keyboard"", ""Charger""]",4371.38,"{"""": ""11%""}",284007,0,Europe +2023-10-28,44271,4956,"[""Headphones"", ""Phone""]",1206.91,"{""loyalty"": ""13%""}",263124,1,South America +2024-03-13,44272,4246,"[""Phone"", ""Charger""]",642.89,"{""promo"": ""24%""}",99828,1,South America +2023-03-14,44273,5896,"[""Monitor"", ""Charger""]",372.82,"{""seasonal"": ""22%""}",86341,1,Asia +2024-02-19,44274,8210,"[""Headphones""]",362.4,"{""loyalty"": ""23%""}",68642,0,Europe +2023-07-31,44275,1502,"[""Monitor"", ""Keyboard"", ""Phone""]",676.06,{},111741,0,North America +2024-10-17,44276,69,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2797.27,{},165161,0,Africa +2023-01-10,44277,1665,"[""Laptop"", ""Monitor""]",410.82,"{""seasonal"": ""23%""}",202305,1,Europe +2023-03-14,44278,6908,"[""Wireless Mouse"", ""Headphones""]",977.77,{},253696,1,Africa +2023-05-17,44279,9070,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",646.45,"{"""": ""30%""}",129263,0,Africa +2024-09-17,44280,2495,"[""Monitor"", ""Keyboard""]",2095.05,{},205712,1,Africa +2023-08-12,44281,9803,"[""Keyboard"", ""Headphones""]",2767.25,{},271342,1,North America +2023-06-06,44282,6001,"[""Laptop"", ""Phone"", ""Charger""]",2862.29,"{""seasonal"": ""24%""}",265137,0,Africa +2023-06-06,44283,6244,"[""Headphones""]",4097.81,{},129287,0,Europe +2023-10-16,44284,5051,"[""Laptop"", ""Charger""]",342.48,"{""seasonal"": ""25%""}",88265,1,Asia +2024-05-05,44285,2127,"[""Tablet"", ""Monitor"", ""Charger""]",1476.66,"{"""": ""7%""}",12194,1,Asia +2023-08-21,44286,4079,"[""Monitor"", ""Charger"", ""Keyboard""]",889.6,{},24316,1,Africa +2024-09-28,44287,8339,"[""Headphones"", ""Laptop"", ""Keyboard""]",4888.65,"{""promo"": ""6%""}",220061,1,Asia +2023-03-06,44288,7052,"[""Phone""]",2549.99,"{""seasonal"": ""6%""}",188011,1,North America +2023-10-28,44289,977,"[""Keyboard"", ""Laptop""]",3793.68,"{""promo"": ""25%""}",279149,1,South America +2024-09-03,44290,8864,"[""Monitor"", ""Tablet""]",3453.86,"{""seasonal"": ""29%""}",274876,0,Europe +2023-01-24,44291,943,"[""Laptop""]",2198.25,"{""loyalty"": ""20%""}",169137,1,Europe +2024-10-27,44292,2619,"[""Charger"", ""Tablet""]",3831.86,"{""loyalty"": ""13%""}",89222,1,North America +2024-10-07,44293,5601,"[""Keyboard"", ""Charger"", ""Laptop""]",2623.25,"{"""": ""6%""}",212880,1,North America +2023-11-01,44294,1425,"[""Keyboard""]",1218.88,{},60733,1,Africa +2023-12-24,44295,8329,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3526.85,{},136921,0,Europe +2024-09-13,44296,2935,"[""Headphones"", ""Phone"", ""Tablet""]",3586.33,{},38386,0,South America +2023-01-13,44297,8728,"[""Keyboard"", ""Headphones"", ""Tablet""]",3437.36,"{""seasonal"": ""30%""}",272449,1,Africa +2024-06-08,44298,5081,"[""Laptop""]",958.01,"{"""": ""25%""}",130540,1,North America +2024-10-24,44299,9138,"[""Phone"", ""Monitor""]",402.38,{},234146,1,South America +2024-10-04,44300,6180,"[""Laptop"", ""Keyboard""]",3157.61,"{"""": ""7%""}",44057,0,Africa +2024-03-19,44301,654,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1500.94,{},39949,0,Asia +2024-01-18,44302,8685,"[""Tablet""]",91.35,"{"""": ""19%""}",290236,0,Africa +2023-09-18,44303,8344,"[""Monitor"", ""Phone""]",2375.82,"{""seasonal"": ""8%""}",182421,1,North America +2024-10-17,44304,4289,"[""Wireless Mouse""]",1581.68,"{"""": ""22%""}",25734,0,Africa +2023-07-18,44305,2548,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",532.67,{},64095,0,Europe +2024-05-25,44306,1121,"[""Charger"", ""Monitor"", ""Laptop""]",151.19,{},250646,1,South America +2024-04-20,44307,749,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4792.15,"{"""": ""17%""}",173512,1,Africa +2023-03-30,44308,1121,"[""Headphones""]",2966.55,"{""promo"": ""12%""}",222736,1,Asia +2024-09-23,44309,7784,"[""Headphones"", ""Wireless Mouse""]",1264.35,{},69189,1,Africa +2023-09-19,44310,1096,"[""Tablet"", ""Headphones"", ""Laptop""]",3087.22,{},23387,0,Asia +2023-03-16,44311,5791,"[""Keyboard""]",2856.54,"{""seasonal"": ""27%""}",7807,1,Asia +2023-04-09,44312,6880,"[""Headphones"", ""Monitor""]",494.24,{},284784,1,Asia +2023-04-30,44313,7302,"[""Laptop""]",3786.45,"{""loyalty"": ""13%""}",252024,0,Asia +2024-08-10,44314,6979,"[""Keyboard"", ""Charger""]",897.56,{},58864,1,Europe +2024-08-05,44315,9213,"[""Headphones"", ""Keyboard""]",1741.45,"{""promo"": ""11%""}",7736,0,North America +2023-03-15,44316,2340,"[""Keyboard""]",624.71,"{""loyalty"": ""9%""}",169341,0,North America +2024-10-01,44317,8272,"[""Headphones"", ""Charger""]",4369.66,{},48838,1,Asia +2024-04-10,44318,7305,"[""Laptop"", ""Tablet""]",3999.7,{},1966,1,South America +2024-09-08,44319,7956,"[""Laptop""]",2832.97,{},228192,0,North America +2023-07-02,44320,8835,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4144.0,{},168121,1,South America +2023-07-23,44321,5016,"[""Monitor""]",926.62,"{"""": ""14%""}",3795,0,Europe +2023-07-31,44322,904,"[""Phone"", ""Headphones"", ""Charger""]",4394.59,{},110787,0,Africa +2024-04-30,44323,5920,"[""Charger"", ""Phone"", ""Headphones""]",452.77,"{"""": ""28%""}",61926,1,Asia +2023-02-25,44324,363,"[""Phone""]",944.09,"{""loyalty"": ""13%""}",105155,1,Africa +2023-06-16,44325,3022,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2096.94,{},295198,1,North America +2023-04-17,44326,3350,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4285.89,"{""promo"": ""12%""}",179902,1,South America +2024-12-11,44327,299,"[""Headphones"", ""Tablet"", ""Monitor""]",3634.48,"{""loyalty"": ""15%""}",146223,1,Europe +2023-02-13,44328,6495,"[""Phone""]",3662.83,{},273375,0,Europe +2023-12-07,44329,8353,"[""Monitor"", ""Tablet""]",1796.98,"{""seasonal"": ""20%""}",47133,0,North America +2024-09-26,44330,7048,"[""Tablet"", ""Monitor""]",2946.94,"{""loyalty"": ""9%""}",235707,0,Europe +2024-07-06,44331,711,"[""Monitor"", ""Tablet"", ""Charger""]",4987.3,"{""loyalty"": ""9%""}",162608,1,Asia +2024-04-22,44332,7257,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4846.07,{},3573,1,Asia +2023-04-12,44333,3917,"[""Laptop"", ""Phone""]",4123.96,{},288119,1,Africa +2023-10-26,44334,7387,"[""Keyboard"", ""Phone"", ""Headphones""]",2207.64,{},281156,1,South America +2023-10-30,44335,1866,"[""Charger"", ""Phone""]",1834.74,"{"""": ""19%""}",101806,1,North America +2023-06-13,44336,3534,"[""Monitor"", ""Laptop""]",2436.64,"{""seasonal"": ""20%""}",2942,0,South America +2024-06-21,44337,4040,"[""Tablet"", ""Charger"", ""Laptop""]",3729.58,"{""loyalty"": ""19%""}",166544,0,North America +2023-05-14,44338,2229,"[""Monitor"", ""Wireless Mouse""]",529.71,"{""loyalty"": ""27%""}",151614,0,South America +2024-01-06,44339,924,"[""Keyboard"", ""Laptop"", ""Charger""]",2546.23,{},188085,1,Asia +2024-11-27,44340,5626,"[""Phone"", ""Tablet"", ""Monitor""]",2308.31,"{""loyalty"": ""30%""}",111086,0,Europe +2024-05-06,44341,4793,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3898.03,{},31008,0,Asia +2024-06-18,44342,7834,"[""Charger"", ""Keyboard""]",753.62,{},165454,0,North America +2024-04-19,44343,7355,"[""Laptop""]",4205.95,"{""promo"": ""21%""}",27931,0,Africa +2023-12-06,44344,487,"[""Laptop""]",3626.46,"{"""": ""17%""}",253464,0,Europe +2024-10-01,44345,1317,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2328.95,"{"""": ""10%""}",77488,1,Asia +2024-03-08,44346,9925,"[""Keyboard""]",4482.12,{},27949,1,Asia +2023-07-04,44347,3429,"[""Monitor""]",2409.73,"{""promo"": ""15%""}",142480,1,North America +2024-01-24,44348,8409,"[""Monitor""]",3266.01,{},50307,0,South America +2024-12-22,44349,7007,"[""Keyboard"", ""Charger""]",2096.71,{},197305,0,Africa +2024-04-19,44350,575,"[""Phone"", ""Charger""]",1112.14,"{""loyalty"": ""7%""}",200208,0,South America +2023-05-09,44351,8972,"[""Charger""]",4096.32,"{""seasonal"": ""11%""}",24479,0,Africa +2024-05-22,44352,5526,"[""Laptop""]",1912.3,"{""promo"": ""27%""}",239747,1,Africa +2024-07-24,44353,8277,"[""Laptop"", ""Tablet"", ""Charger""]",3949.94,"{""seasonal"": ""7%""}",204606,1,Asia +2023-11-28,44354,3712,"[""Phone"", ""Headphones""]",3947.49,{},120681,1,Africa +2024-09-10,44355,3642,"[""Headphones""]",1416.82,{},146850,0,South America +2024-07-14,44356,8900,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2664.08,{},219732,0,Europe +2024-04-03,44357,9238,"[""Wireless Mouse""]",2429.49,"{""promo"": ""22%""}",203958,0,North America +2023-01-24,44358,683,"[""Phone"", ""Tablet"", ""Keyboard""]",576.15,"{""loyalty"": ""30%""}",92523,1,North America +2023-10-21,44359,3829,"[""Headphones"", ""Keyboard"", ""Monitor""]",3636.24,{},28548,0,North America +2023-11-09,44360,4224,"[""Headphones""]",3512.48,{},138904,1,South America +2023-07-08,44361,8444,"[""Laptop""]",4153.19,"{""seasonal"": ""9%""}",277680,0,South America +2024-12-13,44362,4758,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3466.77,{},255683,1,South America +2023-07-01,44363,8936,"[""Monitor"", ""Charger""]",3775.68,"{""promo"": ""17%""}",122649,0,North America +2024-02-29,44364,2256,"[""Charger"", ""Headphones"", ""Phone""]",3440.81,{},212419,0,Europe +2023-01-01,44365,1113,"[""Monitor""]",3434.27,"{""seasonal"": ""20%""}",122963,0,Asia +2024-08-26,44366,7710,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4856.07,"{""loyalty"": ""12%""}",247302,1,Asia +2023-01-30,44367,6907,"[""Headphones""]",4037.42,{},121151,1,Africa +2023-07-01,44368,6343,"[""Monitor""]",1746.36,{},37854,0,Africa +2024-04-15,44369,2299,"[""Charger""]",452.5,{},156768,1,Asia +2024-01-12,44370,5726,"[""Monitor"", ""Keyboard""]",2314.41,{},35618,1,Africa +2023-10-04,44371,5470,"[""Charger""]",4596.95,"{"""": ""16%""}",250239,0,North America +2023-05-20,44372,2685,"[""Phone"", ""Tablet""]",1606.22,{},174305,0,North America +2024-08-29,44373,3767,"[""Charger""]",3607.89,{},268949,1,Africa +2024-12-08,44374,5111,"[""Wireless Mouse""]",4242.2,{},6325,0,Africa +2023-05-15,44375,9839,"[""Phone"", ""Headphones"", ""Laptop""]",2542.11,"{""promo"": ""25%""}",14758,0,Africa +2024-01-10,44376,9326,"[""Tablet"", ""Phone"", ""Monitor""]",1984.0,{},153271,0,Europe +2024-07-08,44377,5659,"[""Monitor"", ""Headphones""]",1946.49,{},256785,0,Europe +2023-04-16,44378,5947,"[""Keyboard"", ""Headphones"", ""Laptop""]",3350.68,"{""loyalty"": ""28%""}",6125,1,Europe +2024-07-21,44379,181,"[""Charger""]",2877.18,{},14659,0,North America +2023-03-13,44380,9874,"[""Headphones""]",1271.83,"{"""": ""24%""}",124274,1,Europe +2023-07-07,44381,7497,"[""Tablet""]",3365.85,"{""promo"": ""6%""}",102032,0,North America +2023-04-24,44382,8914,"[""Keyboard"", ""Phone""]",258.94,"{"""": ""22%""}",118736,0,South America +2023-12-08,44383,4093,"[""Tablet""]",1612.09,{},3218,1,South America +2024-09-05,44384,7554,"[""Monitor""]",2450.47,{},290676,1,South America +2024-06-11,44385,6766,"[""Phone"", ""Charger""]",771.59,"{""loyalty"": ""20%""}",270125,0,Asia +2024-01-05,44386,1165,"[""Monitor"", ""Charger""]",2873.89,{},256439,1,North America +2023-03-15,44387,6593,"[""Wireless Mouse"", ""Monitor""]",2478.58,{},5645,0,South America +2024-09-12,44388,9430,"[""Tablet"", ""Phone"", ""Headphones""]",2230.93,{},52107,1,Europe +2024-02-12,44389,4806,"[""Laptop"", ""Charger""]",1099.54,{},24362,1,North America +2024-04-14,44390,3449,"[""Monitor""]",4035.83,{},219441,0,Europe +2024-02-19,44391,5788,"[""Headphones"", ""Monitor""]",2868.83,"{""promo"": ""16%""}",35227,0,Asia +2023-06-01,44392,2076,"[""Laptop"", ""Monitor"", ""Tablet""]",1136.49,"{"""": ""22%""}",176342,0,South America +2023-06-13,44393,4457,"[""Keyboard"", ""Tablet"", ""Phone""]",4983.94,{},59546,1,South America +2023-09-13,44394,4737,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1589.12,"{"""": ""28%""}",147438,1,North America +2023-01-25,44395,3556,"[""Monitor"", ""Wireless Mouse""]",3358.29,"{""promo"": ""11%""}",147290,0,South America +2024-04-13,44396,1858,"[""Laptop""]",2066.53,"{""loyalty"": ""17%""}",121620,0,South America +2023-07-12,44397,3689,"[""Laptop"", ""Phone""]",2303.4,{},32958,1,Europe +2023-04-13,44398,5178,"[""Headphones"", ""Phone"", ""Tablet""]",1193.83,{},292797,0,North America +2023-10-01,44399,5588,"[""Monitor""]",126.71,"{""seasonal"": ""9%""}",235166,0,North America +2024-08-26,44400,306,"[""Keyboard""]",762.81,{},168593,1,North America +2024-11-26,44401,8087,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3046.51,"{""seasonal"": ""5%""}",205018,1,North America +2023-04-20,44402,6516,"[""Laptop""]",3751.96,{},265260,0,Europe +2023-04-03,44403,7724,"[""Wireless Mouse"", ""Charger""]",4068.03,{},43041,0,Africa +2023-02-09,44404,7807,"[""Phone"", ""Tablet""]",3970.84,"{"""": ""19%""}",280840,1,South America +2023-06-05,44405,5623,"[""Phone"", ""Wireless Mouse""]",595.38,{},141859,0,North America +2023-08-11,44406,5067,"[""Charger""]",3277.02,{},279180,0,South America +2023-08-07,44407,4529,"[""Keyboard"", ""Laptop"", ""Phone""]",594.89,"{"""": ""18%""}",134431,1,Africa +2024-12-01,44408,39,"[""Laptop"", ""Monitor"", ""Tablet""]",287.09,"{"""": ""8%""}",20733,1,North America +2023-08-07,44409,220,"[""Keyboard""]",3042.33,"{""seasonal"": ""17%""}",128700,1,North America +2023-07-11,44410,9512,"[""Laptop"", ""Keyboard"", ""Tablet""]",865.04,{},281260,1,North America +2024-10-29,44411,7904,"[""Keyboard"", ""Phone""]",931.57,"{""promo"": ""14%""}",246364,1,Asia +2023-10-09,44412,7240,"[""Charger"", ""Keyboard"", ""Tablet""]",252.5,"{"""": ""12%""}",225453,0,South America +2024-04-15,44413,5592,"[""Headphones""]",2867.32,"{""seasonal"": ""10%""}",109272,1,Asia +2023-04-03,44414,8097,"[""Keyboard""]",2208.43,{},185738,0,North America +2024-11-13,44415,7049,"[""Laptop"", ""Tablet"", ""Keyboard""]",4461.06,"{""seasonal"": ""24%""}",181283,1,Europe +2023-08-19,44416,9968,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4699.02,{},219959,1,North America +2023-03-29,44417,5702,"[""Headphones"", ""Tablet"", ""Phone""]",3040.39,"{"""": ""12%""}",63559,0,South America +2024-06-14,44418,8144,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2488.96,{},217708,0,South America +2024-07-27,44419,7144,"[""Keyboard"", ""Laptop"", ""Monitor""]",2024.07,"{""loyalty"": ""7%""}",265068,0,Europe +2023-04-02,44420,2816,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3733.81,"{""seasonal"": ""10%""}",157642,1,North America +2023-10-31,44421,5328,"[""Headphones""]",1168.33,{},265947,1,Europe +2023-07-18,44422,8920,"[""Tablet"", ""Headphones"", ""Laptop""]",3203.67,{},30238,1,Asia +2023-05-10,44423,5531,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3720.26,{},46041,1,South America +2024-03-31,44424,3839,"[""Monitor"", ""Laptop""]",3965.41,"{"""": ""11%""}",251452,0,Africa +2024-10-13,44425,2834,"[""Headphones""]",1042.43,{},299584,1,South America +2024-05-13,44426,8729,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4643.04,"{""loyalty"": ""30%""}",159350,1,South America +2024-01-29,44427,7232,"[""Phone"", ""Headphones"", ""Keyboard""]",2252.08,"{""loyalty"": ""18%""}",61485,1,North America +2023-05-23,44428,9374,"[""Monitor"", ""Wireless Mouse""]",2225.74,"{""loyalty"": ""24%""}",176812,1,Asia +2023-10-09,44429,2727,"[""Headphones"", ""Phone""]",3761.72,"{""loyalty"": ""12%""}",158641,1,North America +2023-02-20,44430,8657,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2950.22,{},195221,1,South America +2024-05-27,44431,8806,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",734.49,"{""loyalty"": ""7%""}",95082,1,North America +2024-07-17,44432,2944,"[""Charger""]",3978.95,{},161869,1,Asia +2023-11-09,44433,6980,"[""Charger"", ""Headphones"", ""Phone""]",4160.63,"{""promo"": ""8%""}",188562,1,Africa +2023-11-28,44434,7492,"[""Headphones"", ""Keyboard""]",1524.59,"{""promo"": ""9%""}",73045,0,South America +2024-03-25,44435,8191,"[""Charger"", ""Tablet"", ""Phone""]",1934.27,{},294983,0,South America +2024-06-24,44436,5715,"[""Phone"", ""Tablet""]",2218.41,{},209208,1,Europe +2024-02-03,44437,9193,"[""Charger""]",3165.85,{},267882,1,Europe +2024-03-22,44438,489,"[""Tablet"", ""Phone""]",376.37,"{""seasonal"": ""25%""}",154539,0,Africa +2024-04-18,44439,5483,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4690.55,{},31892,1,Asia +2024-08-05,44440,6496,"[""Headphones"", ""Monitor"", ""Phone""]",1899.06,{},100591,1,North America +2024-08-15,44441,1153,"[""Monitor""]",2345.69,"{""seasonal"": ""9%""}",70782,1,Africa +2024-11-19,44442,3632,"[""Charger""]",2154.06,{},216422,0,Asia +2024-05-09,44443,1718,"[""Wireless Mouse""]",4929.88,{},296281,1,South America +2023-03-18,44444,8880,"[""Headphones""]",4180.16,{},117290,0,Europe +2024-09-24,44445,3567,"[""Phone"", ""Headphones"", ""Tablet""]",532.31,{},246233,1,Africa +2023-10-30,44446,7880,"[""Laptop"", ""Headphones""]",129.01,{},236788,1,South America +2024-07-27,44447,6512,"[""Headphones"", ""Laptop""]",3567.21,"{"""": ""23%""}",100960,1,Europe +2024-01-23,44448,6200,"[""Keyboard""]",3879.34,"{"""": ""11%""}",169478,0,Europe +2023-02-01,44449,5961,"[""Monitor""]",4486.46,"{""seasonal"": ""5%""}",93006,0,Europe +2024-06-25,44450,7269,"[""Keyboard""]",1043.1,{},20772,0,Africa +2023-08-02,44451,5585,"[""Headphones"", ""Keyboard"", ""Monitor""]",3652.07,{},192331,0,Africa +2023-04-07,44452,5450,"[""Keyboard""]",293.92,{},107500,0,South America +2023-04-06,44453,5722,"[""Phone"", ""Keyboard""]",4829.73,{},42917,1,South America +2024-11-08,44454,8479,"[""Charger"", ""Monitor"", ""Headphones""]",3213.83,"{""seasonal"": ""24%""}",216450,0,Asia +2024-12-12,44455,3654,"[""Keyboard"", ""Headphones"", ""Monitor""]",2732.93,{},182866,0,North America +2024-08-04,44456,7432,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",918.15,{},267896,0,North America +2024-11-14,44457,4997,"[""Headphones"", ""Keyboard"", ""Tablet""]",4694.6,{},151411,1,Asia +2024-08-24,44458,3125,"[""Charger"", ""Headphones"", ""Phone""]",3005.25,{},15381,1,Africa +2024-02-19,44459,1048,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4992.39,{},187774,0,Europe +2023-10-26,44460,1459,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4364.33,{},31144,1,South America +2023-12-08,44461,4351,"[""Phone"", ""Charger"", ""Laptop""]",3722.07,{},68397,1,South America +2024-07-13,44462,6055,"[""Phone"", ""Charger""]",3630.61,"{""seasonal"": ""11%""}",193085,1,North America +2024-11-26,44463,6167,"[""Monitor""]",4894.93,"{"""": ""20%""}",74167,0,North America +2024-04-11,44464,5166,"[""Charger"", ""Tablet""]",120.86,"{""seasonal"": ""17%""}",78511,1,Africa +2024-08-16,44465,3104,"[""Phone""]",1621.14,"{""promo"": ""6%""}",277195,1,Europe +2024-10-16,44466,5082,"[""Laptop""]",3925.16,{},268748,1,Africa +2023-03-08,44467,5418,"[""Charger""]",3228.14,{},277202,0,Africa +2023-03-30,44468,5499,"[""Charger"", ""Tablet""]",1147.04,"{""promo"": ""13%""}",35524,0,Asia +2023-07-02,44469,5199,"[""Monitor""]",3938.24,"{"""": ""6%""}",76876,1,South America +2024-08-22,44470,2973,"[""Charger"", ""Tablet""]",239.26,{},4666,1,Europe +2024-11-16,44471,8338,"[""Charger"", ""Headphones"", ""Monitor""]",3271.43,{},129294,0,Africa +2024-02-06,44472,4035,"[""Keyboard""]",1897.75,{},63838,1,North America +2023-03-25,44473,1808,"[""Phone""]",2208.84,{},279080,0,North America +2023-05-17,44474,2494,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3363.72,"{""promo"": ""15%""}",291153,0,Europe +2023-01-13,44475,1006,"[""Headphones"", ""Monitor""]",1832.49,{},192815,0,South America +2024-04-06,44476,1784,"[""Keyboard"", ""Headphones""]",2800.95,{},116268,0,Europe +2023-11-18,44477,3841,"[""Phone""]",4309.42,"{"""": ""23%""}",181070,1,Asia +2024-11-17,44478,3096,"[""Monitor"", ""Wireless Mouse""]",4181.06,{},150267,0,Asia +2023-10-29,44479,2678,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4734.43,{},14061,0,North America +2023-10-22,44480,1298,"[""Keyboard"", ""Headphones"", ""Laptop""]",4762.78,"{""seasonal"": ""16%""}",27437,1,Europe +2023-12-20,44481,1912,"[""Laptop"", ""Phone""]",4748.45,{},5747,1,Europe +2024-09-02,44482,4655,"[""Tablet"", ""Laptop""]",4214.02,"{""seasonal"": ""20%""}",94726,0,Asia +2024-12-24,44483,8044,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",772.64,"{""promo"": ""21%""}",201540,0,Europe +2023-06-13,44484,6749,"[""Charger""]",1194.17,"{"""": ""20%""}",16298,0,Europe +2023-11-10,44485,6790,"[""Tablet"", ""Phone"", ""Headphones""]",1355.66,{},50138,1,Europe +2023-08-02,44486,2114,"[""Tablet""]",4940.92,{},256398,0,Africa +2024-12-18,44487,905,"[""Keyboard"", ""Phone""]",1226.04,{},235906,0,Europe +2024-09-27,44488,5462,"[""Laptop""]",2573.48,"{""loyalty"": ""7%""}",249628,0,Europe +2024-12-04,44489,1156,"[""Tablet""]",3001.05,"{""promo"": ""26%""}",297552,1,North America +2023-11-27,44490,7316,"[""Phone"", ""Wireless Mouse""]",555.18,{},298164,0,Asia +2024-08-13,44491,632,"[""Wireless Mouse""]",2587.19,{},25448,0,Africa +2023-10-25,44492,1035,"[""Phone""]",823.91,"{""loyalty"": ""18%""}",139386,1,Asia +2023-12-20,44493,2786,"[""Wireless Mouse"", ""Tablet""]",1829.74,"{""promo"": ""30%""}",125596,1,Africa +2024-07-07,44494,3037,"[""Tablet""]",3152.51,{},81307,0,South America +2023-10-29,44495,1314,"[""Tablet"", ""Monitor"", ""Keyboard""]",1861.58,{},216093,1,North America +2023-08-01,44496,9165,"[""Phone"", ""Wireless Mouse""]",3469.72,"{"""": ""15%""}",287251,0,South America +2024-06-10,44497,3226,"[""Laptop"", ""Keyboard""]",3143.2,{},199788,1,Europe +2023-09-01,44498,6883,"[""Tablet"", ""Headphones"", ""Keyboard""]",2760.45,"{"""": ""16%""}",229476,0,North America +2023-03-28,44499,7446,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3555.45,{},51313,1,Africa +2023-11-02,44500,3595,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",563.7,"{"""": ""20%""}",43442,0,Asia +2023-02-01,44501,4993,"[""Keyboard"", ""Phone"", ""Charger""]",2801.93,{},294812,1,Africa +2023-04-11,44502,4604,"[""Tablet"", ""Monitor""]",3466.76,"{"""": ""25%""}",249289,1,South America +2023-09-14,44503,3885,"[""Charger"", ""Keyboard"", ""Laptop""]",3215.36,{},233202,1,South America +2023-08-09,44504,516,"[""Monitor"", ""Charger""]",2925.86,"{""promo"": ""11%""}",179077,0,South America +2024-04-08,44505,1087,"[""Keyboard""]",3458.22,{},157085,1,North America +2024-06-28,44506,802,"[""Laptop"", ""Tablet"", ""Monitor""]",2241.49,"{""promo"": ""9%""}",134978,0,Europe +2023-03-22,44507,3660,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4455.63,"{""loyalty"": ""13%""}",244578,1,Europe +2024-05-16,44508,2632,"[""Phone""]",4752.67,"{""seasonal"": ""21%""}",107283,0,North America +2024-01-31,44509,2525,"[""Laptop"", ""Monitor"", ""Phone""]",2983.12,"{""promo"": ""13%""}",83538,1,Africa +2024-09-22,44510,8344,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4445.02,{},70289,0,Asia +2024-09-02,44511,137,"[""Headphones"", ""Tablet""]",4016.53,{},259913,1,Europe +2024-05-07,44512,5356,"[""Phone""]",2394.02,{},47942,1,North America +2024-12-17,44513,2764,"[""Charger"", ""Phone"", ""Monitor""]",2828.31,"{""loyalty"": ""5%""}",21590,1,Europe +2024-12-22,44514,8118,"[""Keyboard"", ""Headphones""]",2287.15,{},5570,1,Africa +2023-03-09,44515,5952,"[""Tablet"", ""Headphones""]",840.17,"{"""": ""7%""}",195542,0,Africa +2023-02-09,44516,95,"[""Tablet"", ""Keyboard""]",756.74,{},88664,1,North America +2024-03-19,44517,4612,"[""Keyboard"", ""Charger"", ""Phone""]",4910.91,"{""promo"": ""13%""}",12447,1,South America +2023-10-02,44518,6153,"[""Keyboard""]",2849.43,{},4946,0,Africa +2024-03-03,44519,47,"[""Keyboard"", ""Headphones""]",4168.75,{},33254,1,Europe +2024-02-23,44520,6164,"[""Tablet""]",4617.78,{},291965,1,South America +2023-08-04,44521,6309,"[""Laptop"", ""Tablet""]",2218.21,"{""promo"": ""8%""}",122651,1,Europe +2024-02-15,44522,8607,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4230.45,"{""seasonal"": ""20%""}",133983,1,South America +2024-08-13,44523,1807,"[""Phone""]",2498.2,{},206196,1,South America +2024-11-16,44524,2502,"[""Phone"", ""Charger""]",4789.78,{},212891,1,Europe +2024-12-05,44525,6479,"[""Phone"", ""Charger""]",378.45,{},212240,0,Europe +2023-06-24,44526,8392,"[""Headphones""]",2631.52,{},154437,0,North America +2023-03-07,44527,1293,"[""Wireless Mouse""]",2166.43,{},95767,0,North America +2023-09-01,44528,5493,"[""Headphones"", ""Phone"", ""Charger""]",3568.11,{},68640,1,Europe +2023-06-16,44529,5503,"[""Charger"", ""Wireless Mouse""]",1964.12,{},147553,1,South America +2023-04-14,44530,8295,"[""Wireless Mouse"", ""Headphones""]",4640.17,{},196497,1,Africa +2024-04-12,44531,982,"[""Phone"", ""Laptop"", ""Charger""]",789.42,"{""loyalty"": ""7%""}",207160,1,Asia +2023-10-06,44532,8181,"[""Phone"", ""Tablet""]",1144.08,"{""seasonal"": ""22%""}",166544,1,South America +2023-12-17,44533,4899,"[""Monitor"", ""Charger"", ""Laptop""]",4666.93,"{"""": ""26%""}",100311,1,Europe +2024-08-21,44534,4478,"[""Phone"", ""Tablet""]",3865.88,"{""seasonal"": ""13%""}",207826,0,Asia +2024-10-21,44535,900,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1862.01,"{""seasonal"": ""20%""}",176232,1,Africa +2023-10-13,44536,8682,"[""Laptop""]",957.0,"{""promo"": ""24%""}",131364,0,South America +2024-08-03,44537,3884,"[""Keyboard""]",1513.77,"{"""": ""28%""}",57085,0,South America +2024-10-18,44538,8646,"[""Monitor"", ""Headphones"", ""Keyboard""]",558.23,"{""promo"": ""25%""}",26047,1,Asia +2023-05-05,44539,611,"[""Headphones""]",91.73,"{"""": ""11%""}",156018,0,Africa +2024-07-21,44540,4373,"[""Keyboard""]",1167.32,{},36378,0,Africa +2024-12-10,44541,5166,"[""Tablet"", ""Charger"", ""Headphones""]",66.44,"{"""": ""13%""}",173997,1,South America +2023-07-11,44542,9097,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2688.32,"{""seasonal"": ""30%""}",284796,1,South America +2024-03-16,44543,594,"[""Monitor"", ""Keyboard""]",331.87,"{""seasonal"": ""15%""}",206794,0,Asia +2023-09-24,44544,7156,"[""Wireless Mouse""]",1326.91,{},291397,0,North America +2024-06-27,44545,77,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2075.92,"{""loyalty"": ""25%""}",147051,1,North America +2024-06-21,44546,6227,"[""Wireless Mouse"", ""Charger""]",4936.14,"{""loyalty"": ""20%""}",257875,1,Asia +2024-04-05,44547,6396,"[""Charger"", ""Laptop"", ""Phone""]",4892.78,"{""promo"": ""5%""}",189196,0,Asia +2023-10-01,44548,8889,"[""Phone"", ""Charger"", ""Laptop""]",1353.0,"{""promo"": ""13%""}",88228,0,Asia +2024-10-25,44549,4854,"[""Laptop"", ""Headphones"", ""Keyboard""]",3727.56,"{""seasonal"": ""24%""}",224663,1,Europe +2024-03-22,44550,5035,"[""Phone""]",4725.78,"{""promo"": ""13%""}",259364,0,Europe +2024-12-11,44551,4556,"[""Headphones"", ""Keyboard"", ""Monitor""]",4000.11,"{""loyalty"": ""24%""}",147371,1,North America +2023-12-13,44552,2699,"[""Laptop"", ""Wireless Mouse""]",3754.75,{},205361,1,South America +2023-11-20,44553,4421,"[""Tablet"", ""Keyboard""]",1944.51,"{""loyalty"": ""9%""}",289994,0,Europe +2024-06-20,44554,1765,"[""Headphones""]",1108.63,"{""promo"": ""26%""}",135691,0,Europe +2024-07-27,44555,9704,"[""Charger""]",2176.57,{},176983,1,South America +2024-07-26,44556,8682,"[""Headphones"", ""Tablet""]",3147.44,{},79380,0,North America +2023-03-05,44557,7980,"[""Headphones"", ""Monitor""]",1445.7,"{""seasonal"": ""22%""}",275520,1,Africa +2024-05-31,44558,7726,"[""Headphones"", ""Monitor""]",2395.4,{},119966,1,North America +2024-12-26,44559,5241,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1393.76,{},150880,1,South America +2024-09-26,44560,6168,"[""Phone"", ""Wireless Mouse""]",3584.12,"{""loyalty"": ""16%""}",42157,0,North America +2023-06-10,44561,2146,"[""Phone""]",4644.33,"{""promo"": ""10%""}",164938,1,Europe +2023-03-30,44562,3068,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",144.66,{},79325,0,North America +2023-10-30,44563,3973,"[""Monitor"", ""Keyboard"", ""Tablet""]",1841.09,{},51126,0,Europe +2023-11-03,44564,9919,"[""Monitor"", ""Wireless Mouse""]",315.31,"{""seasonal"": ""22%""}",184063,1,South America +2024-12-30,44565,9760,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2177.4,{},297786,0,South America +2023-06-18,44566,9043,"[""Laptop"", ""Charger""]",1480.47,{},249873,1,Africa +2024-01-19,44567,5908,"[""Phone"", ""Monitor"", ""Headphones""]",3671.82,{},218553,0,Africa +2023-12-20,44568,5610,"[""Tablet""]",1288.39,"{""seasonal"": ""17%""}",33142,0,Europe +2024-07-25,44569,102,"[""Tablet""]",2776.77,"{""seasonal"": ""5%""}",161012,1,Europe +2023-05-07,44570,5274,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",599.48,"{""promo"": ""15%""}",86853,0,Europe +2024-03-03,44571,8114,"[""Phone""]",4553.86,{},77712,0,South America +2023-10-20,44572,2587,"[""Keyboard""]",2693.87,{},60749,0,Europe +2024-06-03,44573,8373,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1704.6,{},217607,0,Africa +2024-12-03,44574,3841,"[""Monitor""]",3018.29,"{""seasonal"": ""17%""}",166700,1,Asia +2023-07-05,44575,6352,"[""Phone""]",1080.19,{},256967,0,Africa +2023-04-23,44576,1416,"[""Charger"", ""Headphones""]",1707.17,"{""promo"": ""12%""}",114674,1,Europe +2024-02-08,44577,4574,"[""Keyboard"", ""Tablet""]",3302.84,{},25372,0,Europe +2023-07-20,44578,3525,"[""Headphones"", ""Keyboard""]",4587.7,{},79554,0,Africa +2024-01-10,44579,4244,"[""Charger"", ""Keyboard"", ""Phone""]",3649.74,{},45471,0,South America +2024-03-10,44580,7235,"[""Laptop""]",1813.14,"{"""": ""16%""}",52157,0,Europe +2023-08-03,44581,1440,"[""Laptop""]",3454.96,"{""loyalty"": ""9%""}",203197,1,South America +2024-01-13,44582,7681,"[""Laptop"", ""Charger""]",4878.02,"{""promo"": ""23%""}",166509,1,Europe +2024-04-08,44583,9450,"[""Charger"", ""Monitor"", ""Laptop""]",1424.38,"{""loyalty"": ""18%""}",49931,0,Europe +2024-10-07,44584,2056,"[""Headphones"", ""Keyboard""]",4617.12,"{"""": ""28%""}",58153,0,North America +2024-10-21,44585,5897,"[""Keyboard"", ""Tablet""]",3781.73,"{"""": ""16%""}",162967,0,Asia +2023-11-07,44586,4240,"[""Monitor""]",3933.84,"{"""": ""23%""}",26546,1,Europe +2023-11-01,44587,6807,"[""Charger""]",1326.34,"{""loyalty"": ""28%""}",298454,1,Africa +2023-08-06,44588,7746,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4078.52,{},294836,0,South America +2023-10-16,44589,484,"[""Monitor"", ""Laptop"", ""Headphones""]",2441.31,{},166423,0,Africa +2024-11-30,44590,2057,"[""Laptop"", ""Keyboard""]",3902.56,"{"""": ""26%""}",194960,0,Europe +2024-03-14,44591,8100,"[""Phone""]",1215.43,"{""seasonal"": ""15%""}",292262,1,South America +2023-04-20,44592,6495,"[""Tablet"", ""Laptop"", ""Keyboard""]",636.23,{},27961,0,South America +2023-09-09,44593,2286,"[""Phone"", ""Monitor""]",4542.8,{},52291,0,North America +2024-11-29,44594,5371,"[""Keyboard"", ""Wireless Mouse""]",1795.53,{},77990,1,Asia +2024-03-14,44595,3363,"[""Wireless Mouse"", ""Keyboard""]",79.68,{},193988,1,Africa +2024-02-26,44596,7879,"[""Laptop""]",1659.23,{},257668,1,South America +2023-02-12,44597,1883,"[""Keyboard"", ""Charger"", ""Tablet""]",2198.84,{},48985,1,North America +2024-12-22,44598,4468,"[""Tablet""]",668.8,"{"""": ""19%""}",232261,1,Africa +2024-01-30,44599,199,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1970.41,"{"""": ""30%""}",47716,1,Europe +2024-06-27,44600,2763,"[""Headphones"", ""Monitor""]",1807.07,{},298163,1,South America +2023-06-24,44601,2758,"[""Phone""]",503.77,"{""seasonal"": ""28%""}",107374,1,Africa +2023-07-15,44602,6500,"[""Monitor"", ""Keyboard"", ""Charger""]",1743.57,"{""promo"": ""11%""}",217942,1,North America +2023-01-10,44603,9396,"[""Wireless Mouse"", ""Charger""]",2741.25,{},43178,0,Europe +2024-02-09,44604,1844,"[""Monitor"", ""Keyboard"", ""Headphones""]",1517.5,"{""loyalty"": ""18%""}",3588,0,Africa +2023-12-06,44605,5544,"[""Phone"", ""Keyboard"", ""Charger""]",2973.75,"{""seasonal"": ""23%""}",42108,1,Africa +2024-09-06,44606,4618,"[""Laptop"", ""Headphones"", ""Phone""]",152.96,{},39691,0,South America +2023-11-25,44607,7783,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1739.95,"{""promo"": ""13%""}",238296,0,Asia +2024-07-12,44608,185,"[""Keyboard"", ""Charger""]",3963.92,{},242800,0,Asia +2023-07-29,44609,9180,"[""Tablet"", ""Headphones"", ""Monitor""]",2454.98,{},116364,0,Asia +2023-10-01,44610,420,"[""Headphones"", ""Monitor"", ""Phone""]",2119.02,"{""seasonal"": ""16%""}",41340,1,Africa +2024-04-17,44611,6616,"[""Headphones"", ""Phone""]",2288.22,{},123435,0,Asia +2023-05-03,44612,312,"[""Phone"", ""Monitor""]",2048.29,{},227215,1,Europe +2024-01-18,44613,356,"[""Wireless Mouse""]",3783.5,"{""loyalty"": ""21%""}",84047,1,Asia +2024-11-05,44614,1866,"[""Wireless Mouse""]",1435.76,"{""seasonal"": ""29%""}",174648,1,Europe +2023-06-11,44615,4807,"[""Charger""]",2738.81,"{""seasonal"": ""20%""}",160938,0,Europe +2024-03-29,44616,5994,"[""Phone"", ""Keyboard""]",3426.52,"{"""": ""23%""}",55736,0,Africa +2023-03-19,44617,6379,"[""Headphones""]",2919.69,"{""promo"": ""6%""}",210945,0,South America +2024-12-20,44618,2562,"[""Tablet"", ""Keyboard""]",296.79,{},125054,1,Africa +2023-12-10,44619,3998,"[""Keyboard""]",2706.43,{},214792,1,Asia +2023-10-31,44620,7494,"[""Charger"", ""Phone""]",976.53,{},148562,1,Asia +2024-09-28,44621,2770,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2750.41,{},190043,1,North America +2024-08-30,44622,4431,"[""Charger""]",3514.68,"{""loyalty"": ""12%""}",248133,1,Asia +2023-07-02,44623,8721,"[""Wireless Mouse""]",77.01,{},71499,0,North America +2024-05-10,44624,5384,"[""Tablet""]",1394.29,"{"""": ""20%""}",117799,1,Africa +2023-02-07,44625,2441,"[""Laptop"", ""Monitor""]",3789.7,"{""seasonal"": ""25%""}",15899,0,Europe +2024-02-10,44626,2198,"[""Charger"", ""Laptop"", ""Headphones""]",1531.75,"{""promo"": ""20%""}",47738,1,Europe +2023-08-26,44627,1188,"[""Charger"", ""Monitor"", ""Tablet""]",1742.82,{},245810,0,Europe +2023-01-12,44628,7260,"[""Laptop""]",744.01,{},246117,0,Asia +2023-12-13,44629,6427,"[""Monitor""]",4830.16,{},41199,0,Africa +2024-03-03,44630,8897,"[""Laptop"", ""Monitor""]",2478.95,{},185976,1,Europe +2023-05-29,44631,883,"[""Headphones""]",4548.77,{},227948,1,Europe +2024-04-10,44632,8958,"[""Keyboard""]",4017.94,"{""promo"": ""28%""}",143831,1,South America +2023-12-18,44633,3737,"[""Monitor"", ""Wireless Mouse""]",512.73,{},68704,1,South America +2024-09-06,44634,4800,"[""Monitor""]",2126.59,{},25233,0,South America +2023-10-23,44635,520,"[""Phone"", ""Monitor"", ""Laptop""]",4778.87,{},173934,1,Africa +2024-08-03,44636,4784,"[""Headphones""]",1601.39,{},43880,1,South America +2024-08-28,44637,2668,"[""Tablet"", ""Charger""]",1411.88,{},76275,0,Europe +2023-11-02,44638,6859,"[""Phone"", ""Keyboard"", ""Laptop""]",3885.15,"{""promo"": ""20%""}",114148,0,Africa +2024-12-02,44639,6076,"[""Headphones"", ""Monitor"", ""Laptop""]",1578.42,{},144871,0,South America +2024-11-21,44640,6405,"[""Phone""]",2386.84,"{""promo"": ""20%""}",251404,0,Europe +2023-08-11,44641,6063,"[""Wireless Mouse"", ""Charger""]",4854.34,"{""loyalty"": ""9%""}",291270,1,South America +2023-03-14,44642,1289,"[""Keyboard""]",2205.92,"{""seasonal"": ""13%""}",283494,1,South America +2024-09-11,44643,8797,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1680.61,"{""promo"": ""10%""}",162843,0,Asia +2024-10-30,44644,4279,"[""Monitor""]",4151.14,"{""loyalty"": ""28%""}",99517,1,Africa +2024-11-18,44645,3454,"[""Headphones"", ""Laptop"", ""Monitor""]",1197.93,{},50782,0,Europe +2023-01-17,44646,3812,"[""Monitor"", ""Keyboard"", ""Tablet""]",1490.03,"{""loyalty"": ""7%""}",199129,0,Asia +2024-09-10,44647,9363,"[""Keyboard"", ""Charger"", ""Monitor""]",2361.96,"{""promo"": ""30%""}",86979,1,North America +2024-06-25,44648,215,"[""Laptop"", ""Monitor""]",2607.77,"{""loyalty"": ""28%""}",277405,1,Africa +2024-05-05,44649,4884,"[""Keyboard"", ""Headphones"", ""Phone""]",1048.57,"{""loyalty"": ""14%""}",134510,0,Africa +2024-03-06,44650,8154,"[""Headphones"", ""Laptop"", ""Charger""]",4792.3,"{""promo"": ""28%""}",18974,1,Asia +2024-11-19,44651,1727,"[""Phone"", ""Monitor""]",1363.1,"{""loyalty"": ""23%""}",263898,0,Europe +2023-08-13,44652,4188,"[""Phone"", ""Laptop""]",1315.05,{},32740,1,North America +2023-11-12,44653,2309,"[""Phone"", ""Monitor"", ""Keyboard""]",3965.2,{},153875,0,South America +2024-01-21,44654,5410,"[""Headphones"", ""Monitor""]",3720.17,"{""promo"": ""29%""}",102332,0,North America +2024-04-23,44655,7525,"[""Wireless Mouse""]",4558.32,"{""seasonal"": ""27%""}",192944,0,Asia +2023-12-19,44656,422,"[""Monitor"", ""Charger"", ""Keyboard""]",336.65,{},157973,0,Asia +2023-08-25,44657,2031,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2101.34,"{"""": ""21%""}",274422,1,South America +2023-03-11,44658,7534,"[""Keyboard"", ""Laptop""]",4740.66,{},41611,1,Asia +2023-04-26,44659,7359,"[""Monitor"", ""Laptop"", ""Keyboard""]",4627.53,{},108434,1,Africa +2024-07-25,44660,8417,"[""Headphones"", ""Phone"", ""Tablet""]",1078.05,"{""loyalty"": ""18%""}",71237,1,Asia +2023-01-31,44661,9171,"[""Wireless Mouse""]",2462.79,"{""loyalty"": ""12%""}",127607,0,Asia +2024-10-23,44662,2814,"[""Keyboard""]",2449.7,"{""loyalty"": ""14%""}",237332,1,North America +2023-05-19,44663,6312,"[""Wireless Mouse"", ""Laptop""]",364.87,"{""promo"": ""11%""}",31321,1,Europe +2024-03-20,44664,1321,"[""Charger"", ""Tablet""]",1804.08,"{""seasonal"": ""10%""}",182456,0,South America +2023-10-02,44665,8836,"[""Laptop"", ""Tablet""]",970.81,{},159293,0,North America +2023-09-18,44666,6032,"[""Monitor"", ""Tablet"", ""Headphones""]",201.43,{},123106,0,Africa +2023-04-19,44667,8843,"[""Charger"", ""Phone""]",1122.61,{},192122,0,Europe +2023-06-28,44668,6834,"[""Tablet"", ""Monitor"", ""Phone""]",2307.66,{},21390,1,South America +2023-03-31,44669,7147,"[""Laptop"", ""Headphones"", ""Phone""]",254.62,"{""loyalty"": ""11%""}",144448,1,Europe +2023-03-20,44670,3071,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1675.0,"{""promo"": ""21%""}",3476,0,Europe +2024-06-10,44671,4945,"[""Tablet"", ""Laptop""]",2887.45,"{""seasonal"": ""19%""}",266749,1,South America +2024-10-14,44672,52,"[""Headphones"", ""Keyboard""]",4641.39,{},173852,1,Europe +2024-08-09,44673,1657,"[""Charger""]",3457.35,"{""seasonal"": ""20%""}",183284,1,Africa +2024-12-01,44674,139,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4916.51,{},46512,0,Europe +2024-10-04,44675,8403,"[""Headphones"", ""Tablet""]",2099.78,"{""seasonal"": ""28%""}",50969,1,Africa +2024-03-20,44676,6346,"[""Laptop""]",831.49,{},58818,1,North America +2024-12-08,44677,5235,"[""Keyboard"", ""Charger""]",2141.88,"{""loyalty"": ""20%""}",53104,1,Asia +2024-02-12,44678,176,"[""Laptop"", ""Keyboard""]",4415.66,{},14030,1,Africa +2024-02-25,44679,1875,"[""Keyboard"", ""Tablet"", ""Headphones""]",3423.28,"{""seasonal"": ""20%""}",256029,1,North America +2023-02-01,44680,1117,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2058.89,"{""loyalty"": ""17%""}",238391,1,South America +2023-05-24,44681,22,"[""Keyboard"", ""Headphones"", ""Monitor""]",506.58,"{""loyalty"": ""16%""}",68854,0,Africa +2024-10-19,44682,2984,"[""Phone"", ""Tablet""]",3705.89,{},138642,0,Asia +2024-09-17,44683,1106,"[""Monitor"", ""Charger""]",1856.84,"{""loyalty"": ""22%""}",220126,1,Europe +2024-03-09,44684,4196,"[""Monitor"", ""Headphones"", ""Tablet""]",4577.84,"{""loyalty"": ""14%""}",213424,0,Asia +2024-06-11,44685,909,"[""Charger"", ""Keyboard""]",843.9,"{"""": ""21%""}",226829,1,Asia +2024-06-05,44686,7224,"[""Wireless Mouse""]",1702.65,{},181071,0,North America +2024-05-21,44687,3996,"[""Laptop""]",4470.74,"{"""": ""9%""}",188987,0,North America +2023-12-02,44688,4943,"[""Wireless Mouse""]",3812.4,{},201312,1,Asia +2024-04-23,44689,5234,"[""Tablet""]",2474.65,{},102203,1,North America +2024-04-16,44690,2055,"[""Headphones""]",1619.53,{},245271,1,Europe +2024-11-27,44691,6355,"[""Charger"", ""Laptop"", ""Phone""]",3699.57,{},217371,1,South America +2023-08-20,44692,4897,"[""Monitor""]",4028.82,{},259241,0,North America +2023-03-10,44693,77,"[""Charger"", ""Wireless Mouse""]",2700.58,"{""loyalty"": ""14%""}",2166,1,Africa +2023-11-07,44694,2573,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1208.95,{},23799,1,Africa +2024-06-19,44695,1226,"[""Wireless Mouse""]",2611.28,{},236871,0,Europe +2023-03-19,44696,6738,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4475.74,"{""seasonal"": ""22%""}",227031,0,Africa +2024-12-13,44697,4904,"[""Charger"", ""Phone"", ""Laptop""]",2184.29,"{""seasonal"": ""23%""}",226744,0,Europe +2024-10-26,44698,9549,"[""Phone"", ""Keyboard"", ""Laptop""]",2587.31,"{""loyalty"": ""7%""}",174027,1,Europe +2024-08-20,44699,6070,"[""Monitor""]",4631.53,"{""promo"": ""19%""}",243670,1,Europe +2023-03-20,44700,6273,"[""Wireless Mouse""]",1254.02,"{""loyalty"": ""30%""}",283652,0,Asia +2023-03-25,44701,3220,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2182.67,{},187125,0,Africa +2023-05-22,44702,199,"[""Phone""]",3355.27,{},93136,1,Asia +2023-12-16,44703,5848,"[""Headphones"", ""Monitor""]",3684.28,{},204061,0,Africa +2023-01-03,44704,526,"[""Laptop""]",2451.31,{},263987,0,South America +2024-10-27,44705,3438,"[""Keyboard"", ""Wireless Mouse""]",3319.79,{},258486,1,North America +2024-06-21,44706,6267,"[""Phone""]",4905.44,"{""promo"": ""9%""}",213480,1,Asia +2023-07-04,44707,1361,"[""Monitor"", ""Headphones"", ""Laptop""]",1041.52,"{""promo"": ""11%""}",43125,0,North America +2024-01-11,44708,4345,"[""Laptop"", ""Phone""]",200.13,"{""seasonal"": ""13%""}",249222,1,South America +2024-05-19,44709,2444,"[""Charger"", ""Laptop"", ""Phone""]",1001.05,{},5869,1,Asia +2024-04-16,44710,7542,"[""Laptop"", ""Headphones""]",3316.87,{},122904,0,Asia +2024-04-06,44711,3184,"[""Tablet"", ""Headphones""]",4875.57,"{""loyalty"": ""28%""}",279278,0,Europe +2024-12-23,44712,7090,"[""Keyboard""]",1211.55,"{""seasonal"": ""13%""}",100792,1,Europe +2023-10-03,44713,3187,"[""Headphones"", ""Monitor""]",3715.2,"{""promo"": ""8%""}",251854,1,Europe +2024-12-08,44714,9691,"[""Headphones"", ""Monitor""]",1773.79,"{""promo"": ""18%""}",192031,1,Africa +2023-12-09,44715,7712,"[""Tablet""]",134.53,{},142545,0,Europe +2024-07-17,44716,818,"[""Keyboard""]",4743.08,"{""seasonal"": ""21%""}",189584,0,Africa +2024-08-16,44717,5280,"[""Phone""]",119.22,{},68837,0,Africa +2024-04-24,44718,8583,"[""Laptop""]",3187.73,{},166706,0,South America +2024-10-15,44719,8493,"[""Headphones"", ""Charger""]",1168.11,{},118964,0,Africa +2024-02-18,44720,2428,"[""Keyboard""]",217.18,{},166282,1,South America +2024-03-09,44721,9828,"[""Laptop"", ""Monitor""]",2524.45,"{""promo"": ""28%""}",15334,1,South America +2023-11-30,44722,857,"[""Tablet"", ""Headphones""]",4389.43,"{""seasonal"": ""21%""}",154345,1,Asia +2024-10-15,44723,7085,"[""Monitor"", ""Phone""]",3054.26,"{""seasonal"": ""25%""}",54908,1,North America +2024-10-26,44724,2874,"[""Wireless Mouse"", ""Tablet""]",4192.84,{},101985,0,Europe +2024-06-20,44725,1121,"[""Monitor""]",2031.07,{},47348,0,South America +2023-06-09,44726,8454,"[""Laptop""]",2210.45,"{""seasonal"": ""13%""}",253961,1,South America +2024-09-09,44727,1987,"[""Charger""]",1212.87,"{""promo"": ""26%""}",281699,0,Europe +2023-10-12,44728,2811,"[""Headphones""]",4404.65,"{"""": ""24%""}",231725,1,North America +2023-03-14,44729,43,"[""Wireless Mouse"", ""Charger""]",4502.42,{},224271,1,South America +2023-06-25,44730,3844,"[""Laptop"", ""Headphones"", ""Tablet""]",4478.51,{},254460,0,South America +2024-08-07,44731,5061,"[""Charger""]",3137.64,"{"""": ""17%""}",216722,0,South America +2023-08-12,44732,980,"[""Keyboard"", ""Monitor"", ""Charger""]",2020.81,"{""promo"": ""18%""}",72100,1,Africa +2024-07-16,44733,3753,"[""Charger""]",4838.48,"{"""": ""26%""}",61743,0,South America +2023-11-10,44734,693,"[""Charger"", ""Monitor"", ""Headphones""]",516.72,{},86213,0,Africa +2024-06-29,44735,6694,"[""Charger"", ""Headphones"", ""Monitor""]",424.1,{},59164,1,Asia +2024-06-20,44736,3388,"[""Phone""]",1187.47,"{"""": ""17%""}",220048,1,Europe +2023-11-27,44737,1306,"[""Monitor""]",2268.72,{},279796,0,Europe +2024-12-01,44738,8770,"[""Tablet"", ""Wireless Mouse""]",3111.37,{},164892,1,Europe +2024-04-21,44739,4000,"[""Tablet""]",4219.41,{},69334,0,South America +2024-03-25,44740,2325,"[""Tablet"", ""Charger""]",3599.63,"{""promo"": ""7%""}",46334,0,Asia +2023-01-17,44741,2531,"[""Monitor"", ""Phone""]",662.94,{},4191,0,Europe +2024-01-01,44742,6506,"[""Wireless Mouse"", ""Charger""]",3444.03,{},2125,0,Asia +2024-06-23,44743,8039,"[""Phone"", ""Monitor"", ""Charger""]",1415.57,"{""loyalty"": ""14%""}",112250,1,South America +2023-03-19,44744,2316,"[""Wireless Mouse"", ""Keyboard""]",2998.24,"{""promo"": ""11%""}",67894,1,Africa +2024-03-26,44745,3089,"[""Phone"", ""Tablet""]",3895.32,"{""seasonal"": ""10%""}",102332,0,South America +2024-04-07,44746,357,"[""Keyboard"", ""Wireless Mouse""]",4914.7,{},103155,0,Asia +2023-06-19,44747,4226,"[""Laptop"", ""Charger"", ""Tablet""]",1656.44,"{""seasonal"": ""15%""}",137723,0,South America +2024-07-27,44748,6285,"[""Tablet"", ""Charger""]",4040.9,{},100049,1,South America +2023-06-01,44749,254,"[""Phone""]",3207.1,"{""loyalty"": ""27%""}",40027,0,Asia +2023-07-25,44750,3417,"[""Wireless Mouse""]",3987.81,"{""promo"": ""11%""}",209007,1,North America +2024-03-04,44751,2201,"[""Keyboard"", ""Laptop"", ""Monitor""]",2109.74,{},172190,1,Europe +2024-07-29,44752,6321,"[""Phone""]",4225.34,{},89485,0,Africa +2024-05-17,44753,8075,"[""Laptop"", ""Phone""]",3451.7,"{""promo"": ""27%""}",199093,1,Africa +2024-04-09,44754,4051,"[""Headphones"", ""Phone"", ""Charger""]",2724.11,{},183380,0,Asia +2023-08-30,44755,4098,"[""Phone""]",723.01,{},251701,1,South America +2024-05-25,44756,4483,"[""Phone""]",3959.71,{},249820,1,Europe +2024-07-02,44757,8110,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",716.52,{},205370,1,South America +2024-12-07,44758,198,"[""Headphones""]",3444.19,"{""loyalty"": ""11%""}",197088,0,Africa +2023-01-01,44759,285,"[""Keyboard""]",608.27,{},142889,1,Asia +2024-10-31,44760,8082,"[""Tablet"", ""Headphones""]",4262.93,"{"""": ""28%""}",111225,0,Europe +2023-04-12,44761,4186,"[""Tablet""]",117.5,"{""seasonal"": ""22%""}",131740,1,South America +2023-03-16,44762,4817,"[""Charger""]",2503.47,{},232227,0,South America +2023-05-07,44763,3040,"[""Charger"", ""Monitor""]",4994.7,{},176047,0,Europe +2024-12-19,44764,7000,"[""Monitor"", ""Wireless Mouse""]",4196.36,"{""seasonal"": ""25%""}",118077,0,Africa +2024-06-29,44765,4799,"[""Charger"", ""Monitor""]",711.4,"{""promo"": ""29%""}",274557,1,North America +2024-11-22,44766,1366,"[""Charger"", ""Laptop"", ""Phone""]",3344.89,"{""loyalty"": ""19%""}",155330,0,North America +2024-06-26,44767,5949,"[""Laptop""]",127.11,{},159285,0,North America +2023-06-18,44768,6641,"[""Tablet""]",4904.71,"{""seasonal"": ""14%""}",5045,1,South America +2023-03-20,44769,8679,"[""Tablet"", ""Charger""]",2486.39,"{""seasonal"": ""26%""}",291273,0,Africa +2024-05-01,44770,9754,"[""Tablet""]",2778.74,{},9791,0,Europe +2024-07-18,44771,8184,"[""Headphones""]",1655.81,{},290032,1,Asia +2023-02-23,44772,8865,"[""Keyboard""]",2468.05,{},10153,0,Europe +2024-09-03,44773,313,"[""Tablet""]",2337.11,{},136332,0,Asia +2023-09-28,44774,3031,"[""Headphones"", ""Laptop""]",2571.35,"{""promo"": ""12%""}",201364,0,North America +2024-09-10,44775,5040,"[""Monitor""]",4848.79,"{""loyalty"": ""18%""}",156178,1,Europe +2023-08-04,44776,6339,"[""Monitor"", ""Laptop""]",3969.34,"{"""": ""13%""}",271981,1,South America +2023-04-07,44777,425,"[""Laptop"", ""Keyboard""]",4754.61,"{""loyalty"": ""10%""}",279494,0,North America +2024-07-12,44778,1516,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1364.22,"{"""": ""14%""}",28040,0,North America +2024-12-07,44779,1809,"[""Charger""]",2230.94,{},42696,1,Africa +2023-03-01,44780,5024,"[""Phone"", ""Tablet"", ""Monitor""]",3742.47,"{""loyalty"": ""9%""}",218096,1,Asia +2023-12-20,44781,9251,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1630.02,"{""seasonal"": ""14%""}",137819,0,Europe +2023-12-06,44782,3251,"[""Tablet"", ""Laptop""]",2369.77,"{""seasonal"": ""25%""}",263466,0,Europe +2023-04-06,44783,1108,"[""Headphones"", ""Tablet"", ""Keyboard""]",2258.88,{},37185,0,North America +2024-09-14,44784,3102,"[""Wireless Mouse"", ""Monitor""]",2781.49,{},150108,0,Africa +2023-08-05,44785,4806,"[""Laptop"", ""Phone"", ""Headphones""]",1207.43,{},180303,0,Africa +2023-04-28,44786,7395,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",78.46,"{""promo"": ""18%""}",59278,1,Africa +2024-06-12,44787,9647,"[""Phone"", ""Keyboard""]",2845.02,"{""loyalty"": ""8%""}",184893,1,Asia +2023-02-09,44788,6104,"[""Phone"", ""Charger""]",1194.68,"{""promo"": ""23%""}",83383,1,Asia +2023-07-06,44789,8891,"[""Tablet"", ""Laptop""]",2335.63,"{""promo"": ""22%""}",34934,0,South America +2023-12-09,44790,2047,"[""Tablet"", ""Laptop"", ""Headphones""]",926.95,{},159846,0,Asia +2023-08-28,44791,2462,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",206.34,{},133972,0,Africa +2023-05-24,44792,4146,"[""Monitor""]",78.45,"{""promo"": ""25%""}",2532,0,Asia +2024-03-26,44793,4539,"[""Wireless Mouse""]",4821.22,{},272308,0,North America +2023-01-01,44794,5142,"[""Keyboard"", ""Headphones"", ""Phone""]",1258.18,"{""seasonal"": ""12%""}",135123,0,Europe +2024-07-12,44795,590,"[""Charger"", ""Phone"", ""Keyboard""]",3210.16,{},142252,1,North America +2024-01-30,44796,7479,"[""Tablet"", ""Keyboard""]",2244.89,{},251749,1,Europe +2024-08-22,44797,1503,"[""Keyboard""]",573.68,"{""seasonal"": ""5%""}",98764,0,South America +2023-12-07,44798,5443,"[""Phone"", ""Laptop""]",3342.53,"{"""": ""27%""}",25125,0,Africa +2023-04-24,44799,7433,"[""Laptop"", ""Tablet""]",491.33,"{"""": ""17%""}",4042,0,North America +2024-02-02,44800,4699,"[""Phone"", ""Headphones"", ""Tablet""]",3928.0,{},101550,1,North America +2024-01-21,44801,3288,"[""Tablet"", ""Wireless Mouse""]",4512.88,{},66585,0,Asia +2023-02-08,44802,9779,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2194.82,{},142735,1,South America +2023-09-20,44803,3678,"[""Laptop"", ""Charger""]",2338.01,{},193270,1,Africa +2023-01-03,44804,5674,"[""Laptop""]",3333.73,"{"""": ""13%""}",167326,0,Africa +2023-09-19,44805,7352,"[""Charger"", ""Tablet"", ""Phone""]",1539.67,"{""seasonal"": ""19%""}",113635,1,North America +2024-09-24,44806,7726,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",360.74,{},48636,0,Africa +2023-08-15,44807,1158,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",773.07,{},209176,1,Europe +2024-10-26,44808,8372,"[""Headphones""]",3311.3,"{""promo"": ""22%""}",142244,0,North America +2023-08-22,44809,2875,"[""Monitor"", ""Keyboard"", ""Headphones""]",4372.08,{},175512,1,Europe +2023-08-12,44810,6115,"[""Headphones""]",2613.25,{},169227,0,South America +2024-05-05,44811,9761,"[""Monitor""]",1576.98,"{""seasonal"": ""10%""}",39071,1,South America +2023-10-28,44812,6114,"[""Phone"", ""Tablet"", ""Headphones""]",3161.23,{},8547,0,Europe +2024-05-03,44813,9551,"[""Charger"", ""Tablet""]",2999.6,"{""promo"": ""8%""}",155452,1,North America +2024-04-30,44814,2858,"[""Keyboard""]",2932.04,{},152163,1,Africa +2023-05-08,44815,6295,"[""Tablet"", ""Laptop"", ""Headphones""]",4209.16,"{""seasonal"": ""29%""}",55523,1,Europe +2024-04-19,44816,3496,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",568.72,"{""seasonal"": ""26%""}",28346,1,South America +2023-03-02,44817,2264,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1132.45,{},195236,1,Africa +2024-03-28,44818,7361,"[""Keyboard""]",95.35,"{""seasonal"": ""12%""}",174123,1,Europe +2023-11-17,44819,4768,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4269.13,"{""seasonal"": ""18%""}",69714,0,North America +2023-10-07,44820,6352,"[""Charger"", ""Laptop""]",2279.13,"{""loyalty"": ""28%""}",55600,1,Asia +2024-12-06,44821,85,"[""Tablet"", ""Charger""]",1060.08,{},72204,1,Europe +2024-12-14,44822,1204,"[""Headphones""]",1612.85,{},262649,0,North America +2024-06-03,44823,3591,"[""Tablet""]",180.55,{},77573,1,Asia +2023-03-09,44824,7546,"[""Headphones""]",2860.43,"{""seasonal"": ""6%""}",8559,1,Europe +2023-06-04,44825,6608,"[""Wireless Mouse"", ""Laptop""]",954.39,"{""promo"": ""17%""}",27545,1,Europe +2024-07-31,44826,818,"[""Phone"", ""Charger"", ""Monitor""]",4857.06,{},272960,0,Africa +2023-02-01,44827,9398,"[""Tablet""]",1666.47,{},51132,0,Africa +2023-02-25,44828,7137,"[""Keyboard""]",433.65,{},188859,1,South America +2024-02-17,44829,2918,"[""Headphones"", ""Wireless Mouse""]",632.98,"{""seasonal"": ""18%""}",264796,1,Asia +2023-02-08,44830,7904,"[""Headphones""]",3642.32,"{""seasonal"": ""9%""}",86766,0,Asia +2023-10-19,44831,8310,"[""Wireless Mouse"", ""Keyboard""]",334.28,"{""seasonal"": ""14%""}",266902,0,Europe +2024-06-17,44832,4620,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2876.88,"{"""": ""20%""}",56923,1,North America +2023-11-16,44833,2325,"[""Wireless Mouse"", ""Laptop""]",2804.38,"{"""": ""13%""}",44831,0,North America +2023-04-19,44834,3234,"[""Tablet"", ""Phone""]",4484.58,"{"""": ""22%""}",54827,0,North America +2023-10-07,44835,5974,"[""Monitor"", ""Keyboard"", ""Tablet""]",4553.6,"{""loyalty"": ""9%""}",214678,0,Asia +2023-06-19,44836,3417,"[""Monitor"", ""Laptop"", ""Tablet""]",3012.35,"{""loyalty"": ""17%""}",69772,0,Asia +2023-10-16,44837,8769,"[""Phone""]",1677.3,"{""seasonal"": ""8%""}",52932,1,South America +2024-08-02,44838,4153,"[""Keyboard"", ""Tablet"", ""Charger""]",2155.04,{},186095,1,Asia +2023-08-21,44839,6682,"[""Laptop""]",2060.9,{},222589,1,South America +2024-07-22,44840,6910,"[""Tablet"", ""Headphones""]",3503.51,{},21768,0,North America +2023-09-08,44841,1594,"[""Charger"", ""Keyboard""]",1975.5,"{""seasonal"": ""20%""}",156005,1,Africa +2024-01-31,44842,8914,"[""Keyboard""]",3958.33,"{""loyalty"": ""13%""}",116952,0,South America +2024-12-07,44843,5374,"[""Wireless Mouse"", ""Keyboard""]",2314.03,{},217335,0,South America +2024-06-03,44844,9108,"[""Headphones"", ""Laptop"", ""Charger""]",3154.26,{},51713,0,Asia +2023-10-02,44845,5990,"[""Laptop"", ""Charger""]",2158.63,{},192406,1,Europe +2023-03-12,44846,8690,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",631.47,"{""seasonal"": ""24%""}",176471,1,Africa +2023-11-12,44847,7334,"[""Phone""]",3284.92,{},108784,1,South America +2024-07-12,44848,5674,"[""Headphones"", ""Tablet""]",1690.39,{},40971,0,North America +2024-08-22,44849,1896,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3867.3,{},150102,1,Asia +2023-11-02,44850,6723,"[""Headphones"", ""Tablet""]",776.23,"{""seasonal"": ""8%""}",234205,0,North America +2024-10-07,44851,1910,"[""Headphones""]",943.67,{},288303,0,Africa +2024-03-25,44852,4420,"[""Laptop"", ""Charger"", ""Monitor""]",1519.1,{},190196,1,South America +2024-12-07,44853,2115,"[""Monitor"", ""Laptop""]",4357.48,{},92660,0,South America +2024-08-01,44854,4215,"[""Tablet"", ""Headphones""]",2561.85,"{""seasonal"": ""13%""}",224200,1,North America +2023-12-30,44855,9428,"[""Charger"", ""Keyboard""]",4403.97,"{""loyalty"": ""8%""}",283836,0,South America +2023-08-17,44856,8919,"[""Monitor""]",3244.52,"{"""": ""12%""}",112027,0,Europe +2024-07-18,44857,1613,"[""Keyboard"", ""Phone"", ""Laptop""]",1083.26,"{""loyalty"": ""7%""}",153915,0,North America +2023-05-09,44858,1846,"[""Monitor""]",4959.07,{},32592,0,South America +2023-07-16,44859,4772,"[""Charger""]",3619.42,{},242511,1,Asia +2023-01-28,44860,7722,"[""Headphones"", ""Laptop""]",75.45,"{""loyalty"": ""25%""}",121210,1,Africa +2024-09-18,44861,2126,"[""Phone"", ""Monitor""]",3894.14,"{""seasonal"": ""25%""}",63958,0,Africa +2023-11-09,44862,4851,"[""Tablet"", ""Phone""]",3484.75,"{""seasonal"": ""29%""}",142798,0,Asia +2024-05-18,44863,8535,"[""Charger"", ""Laptop"", ""Keyboard""]",3031.53,{},287981,1,South America +2024-01-19,44864,4408,"[""Tablet""]",1127.99,{},4894,0,Europe +2023-10-25,44865,3238,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",516.22,"{""promo"": ""20%""}",219360,1,South America +2023-06-20,44866,4836,"[""Charger""]",4253.84,"{""promo"": ""19%""}",194752,0,Africa +2024-03-16,44867,7170,"[""Charger"", ""Keyboard""]",1246.78,{},43793,1,Asia +2023-01-07,44868,1539,"[""Laptop"", ""Phone""]",1497.97,{},296214,1,Africa +2023-01-26,44869,9965,"[""Laptop"", ""Keyboard"", ""Phone""]",3196.5,"{""seasonal"": ""17%""}",157156,1,Africa +2024-08-27,44870,3880,"[""Laptop""]",3219.07,{},157115,1,South America +2023-06-16,44871,263,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4835.09,"{""seasonal"": ""15%""}",48937,0,Asia +2023-03-29,44872,8387,"[""Phone""]",3512.7,"{""promo"": ""7%""}",187956,1,Europe +2023-10-01,44873,3934,"[""Charger"", ""Headphones""]",674.68,{},215924,1,South America +2024-01-05,44874,3234,"[""Monitor"", ""Tablet"", ""Laptop""]",4570.47,{},216915,0,North America +2023-07-13,44875,4038,"[""Laptop"", ""Headphones""]",2976.84,"{""loyalty"": ""24%""}",40471,1,Asia +2023-06-10,44876,5254,"[""Wireless Mouse"", ""Laptop""]",4376.98,"{""loyalty"": ""27%""}",152977,0,Asia +2023-06-16,44877,9822,"[""Monitor"", ""Laptop""]",1313.63,{},297119,1,Africa +2024-01-31,44878,3827,"[""Headphones"", ""Tablet"", ""Phone""]",4761.63,{},277011,0,North America +2023-07-15,44879,6104,"[""Wireless Mouse""]",2019.91,{},263835,0,North America +2024-08-06,44880,7802,"[""Laptop"", ""Keyboard""]",1646.41,"{"""": ""11%""}",196312,1,Africa +2024-02-19,44881,3362,"[""Charger"", ""Keyboard""]",235.88,"{""seasonal"": ""22%""}",4866,0,Asia +2024-03-30,44882,284,"[""Keyboard"", ""Tablet""]",1799.12,"{""seasonal"": ""10%""}",27338,1,Africa +2023-07-03,44883,9869,"[""Laptop"", ""Keyboard""]",1772.89,"{""loyalty"": ""11%""}",51923,1,Europe +2024-05-30,44884,7592,"[""Laptop"", ""Phone""]",3291.89,"{""loyalty"": ""20%""}",283573,1,Asia +2024-12-31,44885,5028,"[""Monitor""]",2655.65,{},151779,0,South America +2023-03-14,44886,4894,"[""Phone"", ""Keyboard""]",1102.42,{},226673,0,South America +2023-11-17,44887,4648,"[""Monitor"", ""Tablet""]",4937.05,{},231198,0,South America +2024-06-08,44888,5266,"[""Wireless Mouse""]",1993.13,{},57481,0,Asia +2024-01-22,44889,7561,"[""Wireless Mouse"", ""Phone""]",1294.31,"{""seasonal"": ""29%""}",228176,1,Europe +2024-04-07,44890,7619,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3192.55,{},187622,1,North America +2024-12-18,44891,7594,"[""Tablet"", ""Monitor"", ""Charger""]",4398.8,"{""loyalty"": ""20%""}",157928,1,Asia +2024-12-15,44892,1423,"[""Keyboard"", ""Monitor"", ""Tablet""]",3136.81,{},146577,1,South America +2024-11-12,44893,3621,"[""Tablet""]",1552.9,{},31585,1,Asia +2024-04-28,44894,840,"[""Keyboard""]",2534.66,{},290104,0,Europe +2023-06-26,44895,6704,"[""Tablet"", ""Phone"", ""Charger""]",3545.31,{},224061,0,North America +2024-09-20,44896,9572,"[""Charger""]",4401.72,"{""promo"": ""30%""}",244388,0,North America +2023-05-01,44897,1249,"[""Keyboard""]",1374.73,{},99338,0,North America +2024-12-22,44898,2517,"[""Charger""]",2266.82,{},180184,1,Asia +2024-02-22,44899,1551,"[""Laptop"", ""Phone""]",98.45,"{""loyalty"": ""28%""}",273372,1,Europe +2024-12-05,44900,8391,"[""Phone"", ""Headphones""]",4388.22,{},58423,1,Africa +2023-01-20,44901,3456,"[""Wireless Mouse""]",4964.41,"{"""": ""30%""}",49747,1,South America +2024-07-08,44902,8151,"[""Tablet"", ""Laptop"", ""Monitor""]",741.04,"{""loyalty"": ""14%""}",225024,1,Europe +2023-12-08,44903,604,"[""Laptop"", ""Monitor"", ""Keyboard""]",4748.89,{},105271,0,Africa +2024-02-03,44904,2989,"[""Keyboard""]",68.19,"{""promo"": ""27%""}",69503,1,Asia +2024-09-25,44905,1608,"[""Wireless Mouse""]",4912.88,{},154164,0,Asia +2023-10-23,44906,7339,"[""Wireless Mouse"", ""Headphones""]",391.37,{},25385,1,North America +2024-01-30,44907,9331,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3396.05,{},73574,0,Asia +2023-04-04,44908,7057,"[""Headphones""]",1044.1,"{""promo"": ""6%""}",12953,0,Africa +2023-10-04,44909,7277,"[""Monitor""]",1663.68,{},71501,1,North America +2023-08-21,44910,8340,"[""Laptop"", ""Tablet""]",1221.57,"{""promo"": ""12%""}",267787,1,Africa +2024-12-21,44911,6692,"[""Charger"", ""Phone""]",3544.13,"{""loyalty"": ""6%""}",243103,1,North America +2024-09-08,44912,7836,"[""Monitor"", ""Phone""]",3995.69,"{"""": ""6%""}",292401,0,South America +2023-10-08,44913,5127,"[""Phone"", ""Tablet"", ""Charger""]",891.14,{},140897,1,Europe +2023-04-18,44914,8768,"[""Phone"", ""Headphones""]",661.66,{},172272,0,North America +2023-03-21,44915,7947,"[""Headphones"", ""Wireless Mouse""]",498.77,"{"""": ""10%""}",161423,0,Asia +2024-06-11,44916,1318,"[""Monitor"", ""Laptop"", ""Keyboard""]",1048.88,"{"""": ""12%""}",55567,1,South America +2023-01-13,44917,6714,"[""Phone""]",3741.96,"{""seasonal"": ""24%""}",204324,0,Europe +2023-03-02,44918,9722,"[""Monitor"", ""Keyboard""]",3949.19,"{""loyalty"": ""9%""}",98909,1,North America +2024-04-05,44919,6274,"[""Headphones""]",2324.72,{},277843,1,Europe +2023-07-22,44920,7011,"[""Charger"", ""Keyboard""]",4367.91,"{"""": ""27%""}",80830,0,Asia +2024-12-20,44921,5675,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3444.28,"{""seasonal"": ""17%""}",74771,0,North America +2023-04-04,44922,8437,"[""Wireless Mouse""]",2463.65,{},34196,0,South America +2023-11-08,44923,2969,"[""Monitor"", ""Tablet"", ""Charger""]",243.25,"{""promo"": ""8%""}",19428,1,Asia +2023-04-16,44924,1665,"[""Monitor"", ""Tablet""]",3633.27,"{""loyalty"": ""12%""}",5744,0,Asia +2024-05-18,44925,6759,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2581.54,"{""promo"": ""23%""}",99681,1,Asia +2023-01-02,44926,5284,"[""Headphones"", ""Monitor"", ""Keyboard""]",724.27,"{"""": ""9%""}",123723,0,Europe +2024-02-22,44927,9258,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",558.48,{},247587,1,North America +2024-10-23,44928,2741,"[""Monitor"", ""Tablet""]",4616.01,"{""loyalty"": ""18%""}",81890,0,Africa +2023-08-17,44929,5568,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",453.14,"{""seasonal"": ""27%""}",204517,0,Africa +2024-02-07,44930,6411,"[""Laptop"", ""Keyboard"", ""Phone""]",3654.23,{},113667,0,Asia +2024-08-10,44931,6592,"[""Phone"", ""Laptop""]",2654.5,{},82733,0,Asia +2024-04-26,44932,8792,"[""Phone""]",2394.18,"{""promo"": ""10%""}",73023,1,Asia +2024-03-05,44933,4358,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2258.56,"{""promo"": ""16%""}",34963,0,Asia +2024-06-14,44934,6334,"[""Monitor""]",3683.28,{},14491,1,South America +2024-12-30,44935,4273,"[""Keyboard"", ""Wireless Mouse""]",2753.79,"{""seasonal"": ""8%""}",250023,1,Europe +2023-09-01,44936,6558,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2742.69,"{""seasonal"": ""15%""}",84355,1,Europe +2023-06-07,44937,893,"[""Charger""]",1052.55,{},48530,1,North America +2024-11-05,44938,181,"[""Laptop""]",3963.49,{},262486,1,North America +2023-12-15,44939,3414,"[""Laptop""]",4910.23,"{""seasonal"": ""7%""}",89227,1,Asia +2024-12-15,44940,8447,"[""Tablet"", ""Laptop"", ""Phone""]",3947.8,{},176751,1,North America +2024-02-27,44941,8733,"[""Charger"", ""Tablet"", ""Monitor""]",4370.15,"{""seasonal"": ""7%""}",224691,0,Africa +2023-07-31,44942,5601,"[""Headphones"", ""Monitor""]",2785.09,"{"""": ""14%""}",31981,1,North America +2023-02-21,44943,2148,"[""Keyboard"", ""Tablet""]",303.91,"{""seasonal"": ""7%""}",175990,0,Asia +2024-10-09,44944,6993,"[""Charger""]",1810.09,"{"""": ""12%""}",180412,1,South America +2023-01-21,44945,9320,"[""Keyboard"", ""Charger""]",4338.66,"{"""": ""23%""}",56376,1,South America +2023-09-29,44946,9299,"[""Phone"", ""Charger"", ""Laptop""]",4819.54,{},261891,1,North America +2023-06-20,44947,5760,"[""Tablet""]",698.95,"{""loyalty"": ""16%""}",103820,0,North America +2023-07-04,44948,6076,"[""Headphones""]",1176.81,{},216349,1,South America +2024-03-05,44949,4152,"[""Tablet""]",336.5,{},154070,1,South America +2024-04-05,44950,2299,"[""Monitor"", ""Headphones""]",4220.46,{},107080,0,Asia +2024-08-11,44951,4506,"[""Wireless Mouse"", ""Keyboard""]",3877.85,"{""loyalty"": ""5%""}",291775,1,South America +2024-06-23,44952,1237,"[""Phone""]",3236.92,"{"""": ""11%""}",2930,0,Africa +2023-06-29,44953,9892,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4236.22,"{""seasonal"": ""28%""}",292178,0,Africa +2024-12-27,44954,8155,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1033.25,"{"""": ""28%""}",173035,1,South America +2023-03-16,44955,6499,"[""Tablet"", ""Monitor"", ""Phone""]",4116.16,"{""seasonal"": ""13%""}",57892,1,North America +2023-12-18,44956,5837,"[""Phone"", ""Charger"", ""Headphones""]",679.52,{},282821,1,Africa +2023-06-12,44957,1573,"[""Laptop""]",1059.24,"{""seasonal"": ""12%""}",66402,1,Europe +2023-07-29,44958,8801,"[""Phone"", ""Laptop""]",3094.93,{},147407,1,Asia +2024-08-19,44959,4728,"[""Charger""]",3934.8,"{""seasonal"": ""28%""}",241181,0,North America +2024-09-10,44960,3574,"[""Headphones"", ""Tablet""]",4903.04,"{"""": ""6%""}",146249,1,Africa +2023-12-27,44961,2975,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2578.76,"{""loyalty"": ""6%""}",141870,1,North America +2023-03-02,44962,7280,"[""Laptop"", ""Keyboard"", ""Headphones""]",1284.87,{},120568,0,Europe +2024-09-21,44963,8397,"[""Laptop"", ""Keyboard""]",2339.31,"{"""": ""13%""}",57952,0,Asia +2024-06-14,44964,7537,"[""Keyboard"", ""Headphones"", ""Laptop""]",4003.91,{},200850,0,Africa +2024-04-01,44965,9678,"[""Laptop"", ""Monitor"", ""Keyboard""]",992.61,{},231271,0,North America +2023-09-12,44966,8709,"[""Headphones""]",2805.18,{},289225,0,South America +2024-02-07,44967,2758,"[""Charger"", ""Keyboard"", ""Tablet""]",3840.48,"{"""": ""6%""}",164290,0,South America +2024-03-25,44968,9131,"[""Laptop""]",823.05,{},270240,0,Europe +2024-02-09,44969,590,"[""Laptop""]",4626.38,{},173835,1,Africa +2023-06-24,44970,2489,"[""Laptop"", ""Phone""]",3967.59,"{""promo"": ""23%""}",158129,0,South America +2023-07-12,44971,8918,"[""Headphones""]",357.08,{},46592,1,South America +2024-06-05,44972,4016,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1156.33,"{""loyalty"": ""27%""}",17602,0,North America +2024-04-09,44973,6429,"[""Tablet""]",1857.75,"{""loyalty"": ""29%""}",85926,0,Asia +2023-05-03,44974,8389,"[""Headphones"", ""Charger"", ""Monitor""]",4287.98,{},123424,1,North America +2024-07-06,44975,7835,"[""Monitor"", ""Wireless Mouse""]",1039.44,"{"""": ""5%""}",125778,1,North America +2024-11-24,44976,6821,"[""Charger"", ""Headphones""]",4429.43,"{""promo"": ""25%""}",129029,1,South America +2024-12-10,44977,3820,"[""Phone"", ""Tablet"", ""Monitor""]",4232.48,"{""promo"": ""5%""}",222016,1,Europe +2024-10-26,44978,2910,"[""Headphones"", ""Laptop""]",3494.31,"{"""": ""9%""}",162351,1,Europe +2024-09-06,44979,3680,"[""Phone""]",4721.48,{},155247,0,Africa +2023-10-02,44980,8433,"[""Phone""]",3337.35,"{""promo"": ""20%""}",237995,1,North America +2024-05-08,44981,5276,"[""Laptop"", ""Keyboard""]",4091.47,"{""promo"": ""17%""}",279733,1,South America +2024-01-03,44982,3256,"[""Laptop"", ""Tablet"", ""Phone""]",852.65,"{""seasonal"": ""25%""}",103487,1,Africa +2023-10-16,44983,4385,"[""Monitor"", ""Headphones""]",3012.12,"{""seasonal"": ""25%""}",11008,1,Europe +2024-06-21,44984,1687,"[""Headphones""]",4949.31,"{""loyalty"": ""26%""}",191439,1,South America +2023-09-15,44985,7800,"[""Phone"", ""Headphones""]",4756.23,"{""loyalty"": ""20%""}",102983,0,Europe +2023-04-11,44986,1976,"[""Wireless Mouse""]",680.57,{},147598,0,Asia +2023-01-25,44987,2361,"[""Phone"", ""Laptop""]",1500.86,{},15513,0,Europe +2023-08-23,44988,4300,"[""Laptop"", ""Phone"", ""Monitor""]",514.22,"{""loyalty"": ""8%""}",68204,1,Europe +2024-11-13,44989,5189,"[""Charger"", ""Tablet"", ""Monitor""]",1197.11,{},215717,1,South America +2023-01-19,44990,3972,"[""Phone"", ""Keyboard"", ""Laptop""]",89.37,{},197659,0,Africa +2023-03-31,44991,3505,"[""Tablet""]",4133.18,{},294133,1,Europe +2023-02-05,44992,4164,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2576.15,{},252096,1,Asia +2023-08-14,44993,8235,"[""Phone"", ""Charger"", ""Keyboard""]",1619.86,"{""promo"": ""8%""}",35781,0,Europe +2023-05-01,44994,9848,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2341.14,"{""promo"": ""6%""}",123567,1,Africa +2024-01-17,44995,65,"[""Headphones"", ""Monitor"", ""Charger""]",58.11,"{""promo"": ""18%""}",218053,1,Africa +2023-06-28,44996,6681,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1858.79,"{"""": ""10%""}",285446,1,South America +2024-03-08,44997,6275,"[""Laptop""]",4711.49,"{""loyalty"": ""10%""}",49959,0,South America +2023-01-12,44998,2192,"[""Tablet"", ""Keyboard"", ""Phone""]",4991.86,{},8150,1,Asia +2023-07-11,44999,2735,"[""Tablet""]",951.81,{},233450,1,South America +2023-02-25,45000,66,"[""Tablet"", ""Headphones"", ""Monitor""]",4646.35,"{""promo"": ""13%""}",257579,1,Asia +2023-12-13,45001,4372,"[""Charger""]",164.65,{},175457,0,South America +2023-07-23,45002,5553,"[""Keyboard"", ""Charger"", ""Tablet""]",863.84,"{""promo"": ""30%""}",2236,1,North America +2023-08-08,45003,9704,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3297.05,"{""promo"": ""20%""}",81710,0,North America +2024-07-11,45004,4618,"[""Laptop"", ""Headphones"", ""Charger""]",1069.02,"{""seasonal"": ""14%""}",101787,0,Africa +2023-10-03,45005,2798,"[""Headphones"", ""Phone""]",4390.05,"{""seasonal"": ""22%""}",97508,0,Asia +2023-02-23,45006,230,"[""Keyboard"", ""Phone"", ""Charger""]",3505.93,"{""seasonal"": ""29%""}",29576,1,Europe +2023-02-14,45007,6877,"[""Tablet"", ""Phone""]",3115.27,{},297442,0,Europe +2023-02-16,45008,3488,"[""Laptop"", ""Tablet""]",319.11,{},207324,1,Europe +2024-07-23,45009,9056,"[""Laptop"", ""Wireless Mouse""]",400.22,{},183695,1,Africa +2023-05-02,45010,5507,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",844.24,"{"""": ""27%""}",104620,0,North America +2024-05-18,45011,6886,"[""Keyboard""]",915.21,{},291425,0,North America +2023-04-25,45012,3044,"[""Tablet"", ""Laptop""]",2716.26,"{"""": ""22%""}",163982,1,Africa +2024-12-20,45013,9878,"[""Tablet"", ""Phone""]",2319.2,"{""loyalty"": ""29%""}",130479,0,Europe +2024-10-24,45014,9886,"[""Wireless Mouse"", ""Tablet""]",3963.33,"{"""": ""30%""}",53325,1,Asia +2023-06-15,45015,3107,"[""Headphones"", ""Phone""]",3714.26,{},124695,0,Asia +2024-03-29,45016,5441,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2254.2,"{""seasonal"": ""22%""}",221365,0,Africa +2023-07-08,45017,3738,"[""Tablet""]",3923.57,"{"""": ""5%""}",283015,1,Europe +2023-03-31,45018,7264,"[""Monitor""]",1991.12,{},148227,0,Europe +2024-10-21,45019,2101,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",653.05,{},181827,0,Asia +2024-10-16,45020,2601,"[""Charger"", ""Laptop""]",3626.11,"{"""": ""27%""}",93068,0,Europe +2023-05-12,45021,7247,"[""Headphones"", ""Tablet""]",912.0,{},14267,1,Africa +2023-07-04,45022,8915,"[""Headphones"", ""Phone""]",1836.44,"{""loyalty"": ""19%""}",64082,0,Asia +2023-05-13,45023,3048,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4082.02,{},167781,1,Europe +2023-05-10,45024,4253,"[""Charger"", ""Monitor""]",4375.29,{},163216,1,Asia +2023-01-09,45025,6368,"[""Monitor""]",851.03,{},247266,0,South America +2023-05-01,45026,4265,"[""Keyboard"", ""Laptop"", ""Phone""]",1063.51,"{""seasonal"": ""26%""}",215956,0,South America +2024-04-22,45027,3962,"[""Headphones"", ""Laptop"", ""Tablet""]",1445.73,{},273508,0,Europe +2023-01-31,45028,3092,"[""Wireless Mouse""]",2482.25,"{"""": ""19%""}",202947,0,South America +2024-01-26,45029,6099,"[""Charger"", ""Monitor"", ""Laptop""]",2887.72,{},275029,1,Asia +2023-04-22,45030,2443,"[""Laptop"", ""Charger"", ""Keyboard""]",4172.46,"{""loyalty"": ""14%""}",213165,0,North America +2024-07-11,45031,8219,"[""Laptop""]",3071.65,"{""promo"": ""27%""}",282992,0,North America +2024-07-29,45032,1209,"[""Keyboard"", ""Headphones""]",4470.27,"{"""": ""6%""}",114966,1,South America +2023-04-22,45033,7342,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",661.84,"{""promo"": ""18%""}",4330,1,Africa +2023-03-14,45034,5698,"[""Charger"", ""Phone"", ""Monitor""]",1322.82,{},88971,0,Africa +2023-08-28,45035,6763,"[""Phone"", ""Tablet"", ""Laptop""]",2794.7,"{"""": ""23%""}",23957,1,Europe +2023-04-23,45036,1868,"[""Monitor"", ""Phone""]",1797.96,{},168676,1,Asia +2023-12-06,45037,4330,"[""Monitor"", ""Wireless Mouse""]",3729.34,"{""promo"": ""24%""}",27045,0,North America +2024-05-19,45038,5580,"[""Charger"", ""Laptop""]",4537.99,{},175209,1,Europe +2023-09-04,45039,1035,"[""Headphones"", ""Phone""]",3784.06,"{""loyalty"": ""28%""}",286343,1,Africa +2023-07-31,45040,2786,"[""Headphones"", ""Keyboard""]",371.22,{},76941,0,North America +2023-10-27,45041,3556,"[""Monitor""]",3482.26,{},205943,0,Africa +2023-01-06,45042,6843,"[""Laptop""]",4426.85,{},294953,0,North America +2024-04-29,45043,4566,"[""Wireless Mouse""]",2033.12,{},128764,1,Europe +2023-01-10,45044,6797,"[""Laptop""]",1347.57,{},175153,1,South America +2023-08-25,45045,8122,"[""Phone"", ""Wireless Mouse""]",339.17,"{""loyalty"": ""19%""}",206690,0,Europe +2023-06-25,45046,892,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1295.05,{},45188,1,Africa +2023-03-28,45047,6639,"[""Headphones"", ""Wireless Mouse""]",93.1,"{"""": ""12%""}",79917,1,Africa +2024-06-12,45048,8237,"[""Monitor""]",2036.02,{},88535,0,Europe +2024-08-02,45049,7122,"[""Tablet""]",4909.96,{},113254,1,Europe +2024-12-26,45050,7874,"[""Laptop""]",4958.93,"{""seasonal"": ""15%""}",17943,0,North America +2023-08-11,45051,7284,"[""Keyboard"", ""Monitor"", ""Headphones""]",1347.36,"{""promo"": ""6%""}",176818,0,Africa +2024-05-10,45052,8032,"[""Monitor""]",1336.92,{},224835,1,South America +2024-07-07,45053,7969,"[""Headphones""]",1605.31,"{""seasonal"": ""17%""}",20211,1,North America +2023-08-29,45054,3956,"[""Charger"", ""Monitor"", ""Phone""]",806.28,"{""seasonal"": ""9%""}",160918,1,Europe +2024-04-24,45055,6618,"[""Charger"", ""Tablet"", ""Monitor""]",4069.27,{},246843,1,Africa +2023-01-07,45056,8877,"[""Keyboard"", ""Tablet"", ""Monitor""]",290.52,{},247810,0,Europe +2024-03-04,45057,6566,"[""Phone"", ""Monitor""]",1623.69,{},158343,1,Asia +2023-03-18,45058,1746,"[""Wireless Mouse""]",2520.84,"{""promo"": ""10%""}",243563,1,Europe +2023-11-15,45059,1768,"[""Monitor"", ""Keyboard""]",895.28,"{""seasonal"": ""25%""}",110100,1,Europe +2023-07-07,45060,7820,"[""Monitor""]",4547.61,"{""loyalty"": ""19%""}",249248,1,Europe +2024-04-16,45061,1577,"[""Monitor""]",1581.96,{},111393,0,Asia +2023-08-18,45062,1827,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4027.78,{},294606,0,Africa +2023-12-24,45063,8801,"[""Monitor"", ""Charger"", ""Keyboard""]",1953.5,{},116129,1,Europe +2023-06-30,45064,6008,"[""Charger""]",505.14,{},36695,1,Europe +2024-04-10,45065,7295,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3308.82,"{""loyalty"": ""7%""}",150561,1,North America +2023-08-23,45066,923,"[""Laptop""]",4362.53,"{"""": ""26%""}",140531,1,Africa +2023-04-07,45067,8904,"[""Phone""]",3532.57,{},121577,1,Africa +2024-07-04,45068,7331,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",574.23,"{""promo"": ""25%""}",2910,0,Europe +2023-10-21,45069,7421,"[""Laptop"", ""Tablet"", ""Headphones""]",3822.25,"{""promo"": ""9%""}",200426,0,Asia +2024-05-23,45070,5894,"[""Headphones"", ""Charger""]",2505.57,"{""loyalty"": ""10%""}",291978,1,Asia +2024-06-03,45071,1885,"[""Phone"", ""Tablet"", ""Keyboard""]",4115.96,"{""loyalty"": ""30%""}",96358,1,Asia +2024-11-14,45072,5678,"[""Keyboard"", ""Phone""]",231.22,{},184760,1,Europe +2023-03-30,45073,7610,"[""Wireless Mouse"", ""Keyboard""]",4202.54,"{""loyalty"": ""14%""}",83791,1,Asia +2023-09-26,45074,3881,"[""Keyboard""]",3443.74,"{""loyalty"": ""23%""}",117144,0,Europe +2023-05-10,45075,3154,"[""Charger"", ""Wireless Mouse""]",3971.62,{},89314,1,North America +2023-07-23,45076,6838,"[""Charger""]",3762.11,"{"""": ""21%""}",251690,1,Europe +2023-07-10,45077,3038,"[""Headphones"", ""Wireless Mouse""]",3201.57,"{"""": ""16%""}",10982,1,South America +2023-08-15,45078,4140,"[""Wireless Mouse""]",4519.96,{},68813,1,South America +2024-08-28,45079,4288,"[""Tablet"", ""Charger"", ""Headphones""]",1517.35,"{""seasonal"": ""29%""}",102734,0,Asia +2023-11-24,45080,6206,"[""Monitor"", ""Phone"", ""Tablet""]",2030.9,"{"""": ""29%""}",52017,0,Asia +2024-08-21,45081,7442,"[""Headphones"", ""Monitor"", ""Laptop""]",281.87,{},213935,0,Africa +2024-02-23,45082,7418,"[""Headphones"", ""Tablet"", ""Charger""]",3931.2,"{""promo"": ""25%""}",175932,1,Asia +2024-03-26,45083,8439,"[""Headphones""]",4857.88,{},16404,0,South America +2024-10-20,45084,6375,"[""Tablet"", ""Keyboard"", ""Headphones""]",3902.76,{},56854,0,Africa +2023-09-02,45085,9946,"[""Charger"", ""Laptop"", ""Headphones""]",2818.45,"{""seasonal"": ""7%""}",299770,1,Europe +2024-05-31,45086,987,"[""Tablet"", ""Keyboard"", ""Headphones""]",2610.55,{},36656,0,North America +2023-06-09,45087,1554,"[""Keyboard"", ""Phone""]",1541.29,{},139744,1,Asia +2024-04-26,45088,9337,"[""Charger""]",4593.28,"{""loyalty"": ""24%""}",273360,1,Asia +2024-07-13,45089,7876,"[""Wireless Mouse"", ""Monitor""]",4286.58,"{""seasonal"": ""20%""}",76666,0,Asia +2023-09-26,45090,3389,"[""Charger"", ""Headphones"", ""Keyboard""]",1190.01,{},94025,0,South America +2023-07-22,45091,1096,"[""Tablet"", ""Keyboard"", ""Laptop""]",1569.31,"{""loyalty"": ""25%""}",6052,1,North America +2024-10-23,45092,1921,"[""Laptop""]",1720.13,{},240993,1,Africa +2023-05-20,45093,6145,"[""Phone""]",3420.22,"{""loyalty"": ""8%""}",19540,0,Asia +2024-10-15,45094,8080,"[""Keyboard"", ""Charger"", ""Tablet""]",2437.27,"{""seasonal"": ""16%""}",95519,1,North America +2024-08-02,45095,8618,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1941.73,{},90519,0,South America +2024-12-22,45096,3850,"[""Headphones"", ""Charger""]",3494.64,{},285046,0,South America +2024-02-14,45097,4373,"[""Phone""]",1101.38,"{"""": ""8%""}",200574,0,Europe +2024-01-26,45098,6309,"[""Laptop"", ""Charger""]",325.52,{},146482,0,South America +2023-11-11,45099,7716,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2673.26,{},270916,1,Africa +2024-10-28,45100,2122,"[""Charger""]",3353.68,{},223190,1,North America +2023-05-18,45101,686,"[""Laptop"", ""Wireless Mouse""]",2864.37,{},277895,1,Africa +2024-04-17,45102,9028,"[""Laptop"", ""Tablet"", ""Charger""]",2311.59,{},112103,0,Africa +2023-02-11,45103,2111,"[""Phone""]",3192.47,"{"""": ""6%""}",51721,1,North America +2024-08-16,45104,2228,"[""Wireless Mouse""]",930.37,{},263014,1,North America +2024-10-29,45105,7980,"[""Phone""]",792.25,{},263836,1,South America +2024-04-15,45106,3954,"[""Laptop""]",3505.86,{},187062,1,South America +2024-06-25,45107,5007,"[""Monitor"", ""Keyboard"", ""Charger""]",2659.0,{},220735,0,Africa +2023-07-23,45108,8923,"[""Keyboard""]",191.22,{},275984,1,Africa +2023-06-27,45109,8737,"[""Keyboard"", ""Laptop""]",4070.9,"{""seasonal"": ""9%""}",160429,0,North America +2024-09-21,45110,4650,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1753.54,{},247537,1,Africa +2023-12-28,45111,5014,"[""Keyboard"", ""Headphones"", ""Laptop""]",4817.38,{},158110,0,Europe +2023-11-06,45112,1650,"[""Monitor"", ""Tablet""]",1425.02,{},104821,0,Africa +2024-02-09,45113,8082,"[""Wireless Mouse"", ""Phone""]",484.58,{},128842,0,Africa +2023-08-03,45114,9037,"[""Laptop"", ""Headphones""]",4049.45,{},62491,0,Africa +2023-07-21,45115,8955,"[""Tablet"", ""Headphones"", ""Keyboard""]",2701.94,"{""promo"": ""29%""}",47607,0,Africa +2023-05-20,45116,1461,"[""Laptop""]",3990.3,"{"""": ""14%""}",219889,1,Africa +2024-02-24,45117,5644,"[""Keyboard""]",305.7,{},56362,1,Africa +2024-02-17,45118,7895,"[""Keyboard"", ""Charger"", ""Tablet""]",1661.69,{},111141,1,Africa +2024-05-27,45119,1449,"[""Monitor"", ""Phone"", ""Laptop""]",4432.32,{},153401,0,Asia +2024-05-09,45120,262,"[""Laptop""]",1419.95,"{""promo"": ""7%""}",185517,0,Africa +2024-09-27,45121,440,"[""Phone"", ""Headphones"", ""Charger""]",4794.18,"{"""": ""29%""}",268089,0,North America +2023-01-01,45122,5097,"[""Wireless Mouse""]",1563.95,{},143409,1,South America +2024-09-09,45123,66,"[""Monitor""]",880.16,{},30680,1,Africa +2024-07-15,45124,7261,"[""Laptop"", ""Wireless Mouse""]",3133.19,"{"""": ""18%""}",11136,1,Africa +2024-02-12,45125,1322,"[""Keyboard"", ""Laptop""]",619.31,"{""seasonal"": ""12%""}",196995,0,Africa +2024-02-21,45126,2898,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3078.6,"{""seasonal"": ""7%""}",129241,1,Europe +2023-02-19,45127,7339,"[""Headphones"", ""Laptop"", ""Keyboard""]",2537.11,"{""loyalty"": ""16%""}",276790,0,South America +2024-02-01,45128,8798,"[""Charger"", ""Wireless Mouse""]",1732.25,"{"""": ""28%""}",200747,0,Africa +2023-06-20,45129,3266,"[""Wireless Mouse"", ""Monitor""]",3579.66,{},206788,0,Asia +2024-06-24,45130,765,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1332.44,"{""promo"": ""21%""}",129869,0,South America +2024-05-31,45131,4444,"[""Tablet""]",1639.4,{},280582,1,North America +2024-12-07,45132,6373,"[""Keyboard"", ""Monitor""]",3824.01,"{""seasonal"": ""15%""}",3529,0,Africa +2023-08-18,45133,305,"[""Keyboard""]",1127.7,{},23345,1,South America +2024-06-02,45134,4400,"[""Wireless Mouse""]",482.41,{},221633,1,North America +2023-08-26,45135,9796,"[""Monitor""]",1131.58,{},268114,1,Africa +2024-10-15,45136,2886,"[""Tablet""]",3267.61,"{""loyalty"": ""23%""}",37816,1,South America +2024-03-22,45137,2097,"[""Headphones"", ""Wireless Mouse""]",581.5,{},257712,0,Asia +2023-05-01,45138,7593,"[""Wireless Mouse""]",1636.29,"{""loyalty"": ""6%""}",204933,1,South America +2023-03-17,45139,6666,"[""Wireless Mouse""]",190.66,{},48826,0,Asia +2023-03-12,45140,1561,"[""Wireless Mouse""]",2071.34,{},54545,1,North America +2024-08-01,45141,9249,"[""Wireless Mouse""]",346.11,"{"""": ""24%""}",80710,0,Europe +2024-04-14,45142,3105,"[""Tablet"", ""Phone"", ""Charger""]",1974.62,{},231001,1,South America +2023-05-24,45143,8521,"[""Laptop"", ""Tablet""]",4648.44,"{""loyalty"": ""29%""}",19133,1,Asia +2023-04-27,45144,8207,"[""Laptop"", ""Headphones"", ""Phone""]",654.33,"{""seasonal"": ""5%""}",158605,0,North America +2024-06-13,45145,9960,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1448.24,"{"""": ""19%""}",295015,1,Africa +2023-06-09,45146,5370,"[""Keyboard""]",2368.53,{},170573,1,South America +2023-09-24,45147,1357,"[""Laptop"", ""Monitor""]",3209.99,"{""seasonal"": ""17%""}",251759,1,South America +2024-11-11,45148,8537,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1626.99,{},117360,1,North America +2023-04-16,45149,3085,"[""Tablet""]",334.67,{},20848,0,Asia +2024-02-21,45150,4227,"[""Laptop"", ""Keyboard"", ""Monitor""]",4479.55,{},108155,1,South America +2023-04-09,45151,9149,"[""Headphones""]",3956.51,"{""promo"": ""19%""}",287702,0,Asia +2023-01-25,45152,3748,"[""Charger""]",4746.82,{},279083,1,North America +2024-08-06,45153,533,"[""Laptop"", ""Wireless Mouse""]",3491.67,"{""promo"": ""27%""}",262669,0,North America +2023-06-26,45154,1280,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3915.37,{},247511,1,Europe +2024-05-18,45155,4075,"[""Laptop"", ""Keyboard"", ""Phone""]",635.45,{},238087,0,Europe +2023-02-20,45156,7677,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",691.85,{},293020,0,Africa +2024-06-09,45157,4895,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4007.73,{},125591,0,Africa +2023-11-02,45158,9432,"[""Headphones"", ""Tablet""]",228.14,"{""loyalty"": ""6%""}",184193,0,Africa +2024-09-22,45159,3839,"[""Wireless Mouse""]",3586.08,{},144095,0,Europe +2024-07-26,45160,9589,"[""Headphones""]",4052.66,"{""promo"": ""12%""}",23415,0,Europe +2023-07-14,45161,3390,"[""Headphones""]",4018.18,"{""promo"": ""25%""}",29150,1,Asia +2024-03-24,45162,43,"[""Laptop""]",463.2,{},225801,1,Asia +2023-09-17,45163,1656,"[""Laptop"", ""Tablet"", ""Monitor""]",3187.07,"{""seasonal"": ""13%""}",153207,0,North America +2024-02-19,45164,7897,"[""Wireless Mouse""]",4119.91,"{""promo"": ""12%""}",271711,1,North America +2023-01-25,45165,1693,"[""Keyboard""]",3037.42,{},59049,0,Europe +2024-02-17,45166,8483,"[""Phone""]",1260.93,{},185270,0,Africa +2023-07-04,45167,3395,"[""Tablet"", ""Laptop""]",1103.18,{},22521,1,Asia +2023-11-20,45168,200,"[""Headphones"", ""Wireless Mouse""]",2578.7,"{"""": ""18%""}",44154,0,Africa +2024-02-21,45169,5318,"[""Tablet"", ""Wireless Mouse""]",2983.0,{},288386,1,Africa +2023-07-22,45170,1748,"[""Headphones"", ""Wireless Mouse""]",1276.54,"{""seasonal"": ""9%""}",6118,1,Africa +2023-06-14,45171,1753,"[""Laptop""]",3163.49,{},78871,1,Asia +2023-07-31,45172,17,"[""Phone""]",749.27,{},179678,1,Asia +2024-03-03,45173,7463,"[""Tablet"", ""Phone"", ""Monitor""]",71.17,"{""promo"": ""28%""}",32032,1,South America +2023-01-27,45174,8165,"[""Headphones""]",3924.28,{},111237,0,North America +2024-12-21,45175,2673,"[""Keyboard"", ""Wireless Mouse""]",3584.53,{},5522,0,Europe +2024-12-18,45176,6153,"[""Laptop"", ""Wireless Mouse""]",450.54,"{""promo"": ""22%""}",125194,0,Africa +2024-07-19,45177,6816,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2664.2,"{"""": ""25%""}",30947,0,South America +2023-02-18,45178,3456,"[""Laptop"", ""Wireless Mouse""]",3590.03,{},291306,0,South America +2023-05-30,45179,9926,"[""Charger""]",4341.16,{},289715,0,South America +2023-06-28,45180,7648,"[""Phone"", ""Keyboard""]",4187.52,{},136083,1,Africa +2024-08-18,45181,8913,"[""Laptop""]",3402.84,{},154663,1,Asia +2024-08-11,45182,2307,"[""Laptop"", ""Phone"", ""Tablet""]",4063.14,{},62573,0,Africa +2023-07-06,45183,1504,"[""Phone"", ""Monitor"", ""Tablet""]",1974.26,{},108021,0,Africa +2023-06-23,45184,2553,"[""Laptop""]",3720.67,{},133848,0,Africa +2024-07-17,45185,3255,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1323.89,"{""seasonal"": ""24%""}",178539,0,Asia +2024-08-29,45186,8048,"[""Keyboard"", ""Laptop""]",2943.07,"{""loyalty"": ""11%""}",77491,0,South America +2023-03-09,45187,9840,"[""Headphones"", ""Keyboard""]",3070.33,{},64704,0,Africa +2023-07-18,45188,7831,"[""Wireless Mouse"", ""Keyboard""]",4858.92,{},104407,1,Africa +2023-08-16,45189,6192,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1186.46,"{""seasonal"": ""28%""}",237221,1,Asia +2023-01-25,45190,5691,"[""Phone"", ""Keyboard""]",223.91,"{""promo"": ""17%""}",106940,0,Europe +2024-09-02,45191,905,"[""Laptop"", ""Phone"", ""Monitor""]",2493.65,"{"""": ""11%""}",200153,0,Europe +2024-10-29,45192,9691,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1302.35,"{""loyalty"": ""9%""}",175975,1,South America +2023-04-25,45193,2844,"[""Charger"", ""Wireless Mouse""]",3202.4,{},66332,1,South America +2023-08-04,45194,6512,"[""Laptop"", ""Headphones"", ""Phone""]",4092.21,{},9915,1,Europe +2024-07-05,45195,9401,"[""Tablet"", ""Wireless Mouse""]",3636.63,"{""loyalty"": ""30%""}",105691,0,South America +2023-03-30,45196,9876,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2583.93,"{"""": ""10%""}",248662,0,North America +2023-04-22,45197,4388,"[""Monitor""]",100.17,{},254823,0,Europe +2023-11-06,45198,2335,"[""Wireless Mouse""]",2404.7,"{""seasonal"": ""7%""}",259483,0,Europe +2023-11-13,45199,9121,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",222.76,"{""loyalty"": ""24%""}",30929,0,South America +2024-04-03,45200,4265,"[""Tablet"", ""Charger""]",4667.09,"{""promo"": ""18%""}",69599,0,Africa +2024-06-03,45201,458,"[""Keyboard""]",1926.7,"{""seasonal"": ""17%""}",139530,0,North America +2023-11-27,45202,1855,"[""Keyboard"", ""Monitor"", ""Charger""]",1118.36,{},40359,0,Europe +2024-05-16,45203,4059,"[""Charger"", ""Tablet"", ""Monitor""]",398.2,"{""seasonal"": ""24%""}",92917,0,Europe +2024-07-07,45204,9899,"[""Laptop"", ""Wireless Mouse""]",2954.14,{},214571,1,Africa +2023-04-04,45205,357,"[""Laptop""]",290.38,{},10975,1,Asia +2023-10-12,45206,8910,"[""Keyboard"", ""Monitor""]",244.98,"{""loyalty"": ""12%""}",205255,0,North America +2023-04-19,45207,665,"[""Laptop"", ""Charger""]",3561.16,"{"""": ""5%""}",50023,1,Africa +2024-05-25,45208,8820,"[""Wireless Mouse"", ""Phone""]",3633.1,{},223887,0,Europe +2023-04-19,45209,3007,"[""Phone"", ""Headphones""]",4395.68,"{""seasonal"": ""13%""}",209835,0,Asia +2024-07-05,45210,5641,"[""Phone"", ""Charger"", ""Headphones""]",2967.66,{},12516,1,Africa +2023-10-28,45211,6690,"[""Headphones"", ""Phone""]",848.35,{},100437,0,Asia +2024-01-17,45212,3197,"[""Wireless Mouse""]",4857.7,"{""promo"": ""14%""}",113240,1,South America +2024-01-08,45213,1533,"[""Monitor"", ""Laptop"", ""Tablet""]",3499.49,"{"""": ""24%""}",249872,0,Asia +2023-06-30,45214,2365,"[""Phone"", ""Headphones"", ""Tablet""]",1636.32,{},287619,0,Asia +2023-02-04,45215,8829,"[""Monitor"", ""Phone"", ""Headphones""]",4761.15,{},112508,0,North America +2024-10-23,45216,577,"[""Headphones""]",3427.93,{},52173,1,North America +2024-10-20,45217,6604,"[""Phone"", ""Headphones""]",229.04,"{"""": ""7%""}",144067,0,Africa +2023-11-02,45218,66,"[""Phone"", ""Monitor"", ""Laptop""]",2046.71,{},205802,1,Asia +2024-10-12,45219,1942,"[""Phone"", ""Tablet""]",3163.09,{},156948,1,South America +2024-01-06,45220,296,"[""Tablet"", ""Monitor"", ""Phone""]",3852.16,{},123362,1,North America +2023-08-05,45221,4228,"[""Charger"", ""Tablet"", ""Headphones""]",1322.26,"{""promo"": ""8%""}",294578,1,Europe +2023-10-06,45222,3711,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",243.56,"{""promo"": ""15%""}",175967,1,Africa +2023-10-02,45223,7517,"[""Tablet""]",4498.0,"{""promo"": ""24%""}",196277,0,Asia +2023-09-01,45224,3404,"[""Keyboard"", ""Monitor"", ""Tablet""]",2208.4,{},140924,0,Asia +2024-11-22,45225,6066,"[""Tablet""]",2588.81,"{""promo"": ""21%""}",194760,1,South America +2023-08-31,45226,9308,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3183.18,"{""seasonal"": ""6%""}",106961,0,Africa +2024-10-08,45227,5956,"[""Wireless Mouse""]",1410.67,{},93114,0,Europe +2024-05-07,45228,5884,"[""Monitor"", ""Laptop""]",4607.15,"{""loyalty"": ""18%""}",141677,0,Europe +2024-01-07,45229,4614,"[""Charger"", ""Laptop"", ""Phone""]",2321.94,{},84351,1,North America +2024-09-09,45230,1566,"[""Headphones""]",1730.07,{},251040,1,North America +2023-01-19,45231,4306,"[""Tablet"", ""Monitor"", ""Phone""]",2411.86,{},5769,0,South America +2024-12-30,45232,4,"[""Headphones"", ""Laptop""]",347.43,"{""loyalty"": ""30%""}",186224,0,Europe +2023-09-08,45233,5683,"[""Laptop"", ""Monitor""]",1263.2,{},140981,0,Europe +2023-09-23,45234,1724,"[""Tablet""]",2150.79,{},227926,0,Asia +2024-09-19,45235,2217,"[""Wireless Mouse""]",3768.33,{},132760,0,Europe +2024-06-30,45236,1727,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1911.38,{},298666,0,Europe +2023-08-12,45237,2373,"[""Keyboard"", ""Monitor"", ""Laptop""]",1003.67,"{""seasonal"": ""29%""}",266791,0,South America +2023-10-12,45238,9117,"[""Laptop""]",4021.93,"{"""": ""10%""}",40808,1,South America +2024-08-02,45239,7858,"[""Monitor""]",3161.91,"{""loyalty"": ""12%""}",263083,0,Europe +2024-04-20,45240,7883,"[""Charger"", ""Phone""]",4986.35,{},94786,1,Asia +2024-06-06,45241,5515,"[""Monitor"", ""Tablet"", ""Headphones""]",4358.89,{},9146,1,South America +2023-09-17,45242,1064,"[""Monitor"", ""Phone""]",961.48,{},109303,1,North America +2024-02-10,45243,2770,"[""Tablet"", ""Charger""]",2394.23,"{""promo"": ""24%""}",188020,1,North America +2024-06-15,45244,4789,"[""Monitor"", ""Laptop""]",4508.68,{},211557,0,Europe +2024-10-09,45245,7891,"[""Laptop"", ""Phone"", ""Headphones""]",1681.48,{},9884,0,Asia +2023-09-30,45246,1139,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1884.76,{},6598,0,South America +2023-08-07,45247,9935,"[""Charger"", ""Monitor"", ""Headphones""]",4185.29,"{""loyalty"": ""13%""}",142441,0,Africa +2024-06-22,45248,3964,"[""Headphones"", ""Phone""]",938.43,{},130856,1,North America +2024-03-20,45249,6946,"[""Laptop""]",2194.7,{},267826,1,North America +2024-04-19,45250,2210,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3352.92,"{""promo"": ""27%""}",279190,0,Europe +2024-08-24,45251,7587,"[""Keyboard"", ""Laptop""]",3504.86,"{"""": ""16%""}",287357,0,North America +2024-09-04,45252,1693,"[""Headphones"", ""Monitor""]",3750.57,"{""promo"": ""29%""}",237275,1,North America +2023-02-01,45253,3665,"[""Charger"", ""Monitor""]",1015.67,"{""seasonal"": ""26%""}",156944,0,North America +2024-08-26,45254,5452,"[""Laptop""]",2388.56,{},14665,0,Asia +2023-01-09,45255,1170,"[""Monitor"", ""Headphones""]",284.74,{},61730,1,Africa +2024-09-13,45256,9162,"[""Headphones""]",4826.27,"{""promo"": ""5%""}",223177,1,Africa +2024-01-02,45257,9196,"[""Monitor""]",2874.13,"{""promo"": ""10%""}",270231,1,South America +2024-05-04,45258,1933,"[""Keyboard""]",2594.35,{},84546,1,Europe +2024-03-24,45259,1040,"[""Charger"", ""Headphones""]",3361.35,{},166717,1,Africa +2023-07-05,45260,1845,"[""Phone"", ""Laptop""]",4839.18,"{""promo"": ""26%""}",169237,1,North America +2024-03-14,45261,619,"[""Headphones"", ""Phone""]",826.59,{},237066,0,Europe +2024-03-14,45262,7332,"[""Laptop""]",613.93,{},194155,0,Africa +2024-08-30,45263,5312,"[""Tablet"", ""Laptop""]",306.72,{},182589,1,Europe +2024-11-04,45264,2686,"[""Monitor""]",2993.29,"{""seasonal"": ""17%""}",156800,1,North America +2023-12-22,45265,4692,"[""Monitor"", ""Phone""]",4472.89,{},180844,0,North America +2024-07-09,45266,4394,"[""Phone"", ""Monitor"", ""Keyboard""]",2792.6,"{""promo"": ""27%""}",276308,1,Africa +2024-07-31,45267,3973,"[""Laptop""]",926.79,{},169648,1,South America +2023-01-29,45268,7766,"[""Tablet"", ""Charger""]",4469.78,{},138444,0,Africa +2023-08-11,45269,1611,"[""Headphones""]",4464.85,{},12988,0,Europe +2023-02-01,45270,7556,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4822.74,"{""promo"": ""6%""}",189578,1,Africa +2023-11-05,45271,7108,"[""Monitor""]",3793.11,{},72507,1,Asia +2024-08-06,45272,3459,"[""Keyboard"", ""Monitor""]",137.8,{},13895,1,North America +2023-01-10,45273,9455,"[""Headphones""]",4621.09,{},70588,1,Africa +2024-03-28,45274,9807,"[""Phone"", ""Keyboard"", ""Monitor""]",1954.78,{},114012,0,Africa +2024-07-02,45275,9402,"[""Headphones"", ""Laptop"", ""Tablet""]",3468.55,"{""seasonal"": ""24%""}",292489,0,South America +2023-06-09,45276,6704,"[""Headphones"", ""Laptop"", ""Phone""]",2813.68,{},222034,0,North America +2024-03-20,45277,1021,"[""Wireless Mouse"", ""Tablet""]",4754.1,{},299486,1,Europe +2024-06-17,45278,8584,"[""Charger""]",3998.12,"{""loyalty"": ""19%""}",50930,0,Asia +2023-10-08,45279,5834,"[""Keyboard""]",2531.61,"{""loyalty"": ""8%""}",172956,0,Asia +2023-11-04,45280,2729,"[""Keyboard"", ""Laptop""]",1901.9,{},147764,1,North America +2023-10-16,45281,9985,"[""Laptop"", ""Monitor"", ""Charger""]",3518.46,"{""seasonal"": ""17%""}",227955,1,South America +2023-12-19,45282,9220,"[""Headphones"", ""Tablet""]",4319.69,{},141027,1,Asia +2024-06-26,45283,1472,"[""Monitor"", ""Headphones"", ""Phone""]",3260.44,"{""promo"": ""29%""}",109699,0,North America +2024-12-12,45284,3699,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3849.14,{},122555,0,Africa +2023-02-01,45285,6459,"[""Monitor""]",2830.77,"{""loyalty"": ""22%""}",93749,0,North America +2023-09-29,45286,98,"[""Charger"", ""Headphones""]",1195.59,"{"""": ""26%""}",145569,1,Europe +2024-03-11,45287,9971,"[""Tablet"", ""Headphones""]",3876.48,{},22040,0,North America +2024-07-14,45288,1318,"[""Phone""]",3899.26,{},21496,1,Asia +2023-05-04,45289,749,"[""Wireless Mouse""]",83.67,{},39144,1,North America +2024-04-10,45290,6602,"[""Headphones"", ""Keyboard""]",1050.08,{},248856,0,Europe +2023-05-08,45291,2388,"[""Keyboard"", ""Tablet""]",3200.31,"{"""": ""25%""}",195954,1,South America +2023-03-07,45292,9135,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2811.81,{},227590,1,South America +2023-06-17,45293,1966,"[""Monitor"", ""Headphones"", ""Charger""]",1290.65,"{""loyalty"": ""9%""}",299688,0,North America +2024-03-01,45294,7941,"[""Keyboard"", ""Monitor"", ""Laptop""]",1750.88,"{"""": ""25%""}",27887,0,Asia +2023-12-30,45295,5243,"[""Headphones""]",1300.64,"{""promo"": ""8%""}",268870,0,Europe +2024-01-09,45296,5003,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3319.12,{},297976,0,Europe +2023-03-27,45297,8875,"[""Charger"", ""Wireless Mouse""]",4796.09,{},220932,1,North America +2024-07-23,45298,4102,"[""Phone"", ""Monitor""]",2607.63,"{"""": ""20%""}",69861,0,Africa +2024-07-16,45299,7720,"[""Laptop"", ""Wireless Mouse""]",3066.44,{},25386,0,South America +2024-06-03,45300,2281,"[""Charger""]",3739.46,"{""promo"": ""8%""}",228426,1,South America +2023-04-05,45301,1711,"[""Charger""]",553.17,"{"""": ""12%""}",123569,1,Africa +2024-12-16,45302,7973,"[""Wireless Mouse"", ""Keyboard""]",2948.62,{},195075,0,South America +2023-02-06,45303,2422,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4660.19,{},40959,1,Asia +2024-03-03,45304,966,"[""Laptop""]",3714.11,{},85833,1,Asia +2024-10-13,45305,235,"[""Headphones"", ""Wireless Mouse""]",2378.28,"{""loyalty"": ""6%""}",165002,0,South America +2024-04-02,45306,1435,"[""Phone"", ""Charger""]",60.97,{},142050,1,North America +2023-09-07,45307,8147,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4937.94,"{""promo"": ""16%""}",171320,1,North America +2024-10-08,45308,8570,"[""Charger""]",442.21,{},15166,1,Europe +2024-05-22,45309,2438,"[""Keyboard"", ""Monitor""]",490.85,{},129415,0,North America +2024-04-10,45310,6936,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4013.84,{},224970,1,Africa +2024-05-06,45311,4974,"[""Keyboard"", ""Headphones""]",562.31,"{""seasonal"": ""23%""}",21033,1,North America +2024-06-03,45312,5376,"[""Wireless Mouse"", ""Charger""]",3850.46,"{""promo"": ""8%""}",175258,1,Asia +2023-07-02,45313,6767,"[""Keyboard""]",1355.95,"{""promo"": ""29%""}",298785,0,South America +2024-06-25,45314,7015,"[""Phone"", ""Laptop""]",1774.83,"{""seasonal"": ""14%""}",191300,0,Europe +2023-03-19,45315,5693,"[""Laptop""]",2278.96,"{"""": ""25%""}",193839,1,Asia +2024-12-04,45316,1309,"[""Monitor"", ""Tablet"", ""Laptop""]",2851.31,{},161234,0,Asia +2023-02-10,45317,6117,"[""Charger"", ""Headphones""]",121.76,{},264736,0,North America +2024-02-06,45318,7222,"[""Phone"", ""Monitor""]",3046.17,"{""promo"": ""8%""}",274925,0,North America +2023-03-10,45319,401,"[""Charger"", ""Keyboard""]",3431.45,"{""promo"": ""22%""}",88743,1,Asia +2024-03-16,45320,8806,"[""Monitor""]",2492.64,"{""loyalty"": ""23%""}",67060,0,South America +2023-02-12,45321,2961,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2837.6,{},139678,0,North America +2023-05-27,45322,4102,"[""Monitor"", ""Headphones""]",3508.86,"{""seasonal"": ""17%""}",203836,0,Asia +2024-07-12,45323,6362,"[""Keyboard"", ""Phone"", ""Charger""]",4074.47,{},101855,0,Europe +2024-09-11,45324,9684,"[""Laptop""]",4822.15,"{"""": ""30%""}",241489,0,Africa +2024-10-19,45325,8395,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4989.17,{},34529,0,North America +2024-04-30,45326,5289,"[""Keyboard"", ""Charger""]",4191.46,"{""loyalty"": ""13%""}",298454,0,Africa +2023-06-30,45327,1550,"[""Headphones"", ""Tablet"", ""Laptop""]",2701.74,{},237956,1,Africa +2024-02-18,45328,7082,"[""Monitor""]",665.83,"{""seasonal"": ""12%""}",127976,1,Africa +2024-05-28,45329,9698,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3987.84,{},8394,1,South America +2024-02-26,45330,4159,"[""Phone""]",4761.27,{},170582,0,Asia +2024-10-09,45331,7532,"[""Phone"", ""Tablet"", ""Keyboard""]",2740.33,"{"""": ""10%""}",209432,1,North America +2023-06-19,45332,1180,"[""Laptop"", ""Headphones""]",2407.67,"{""loyalty"": ""19%""}",237873,1,North America +2023-12-24,45333,10000,"[""Tablet"", ""Phone"", ""Keyboard""]",4436.2,{},43821,1,Africa +2024-10-22,45334,6897,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3072.63,{},40565,1,Europe +2023-08-29,45335,8250,"[""Tablet"", ""Headphones""]",1261.62,{},236518,1,Africa +2023-04-25,45336,7357,"[""Wireless Mouse"", ""Phone""]",3515.84,"{""promo"": ""15%""}",293058,0,Africa +2023-09-23,45337,5263,"[""Wireless Mouse"", ""Phone""]",1412.78,{},275155,0,Africa +2024-06-03,45338,100,"[""Keyboard"", ""Wireless Mouse""]",2644.48,"{""loyalty"": ""22%""}",106473,1,South America +2024-08-22,45339,8302,"[""Charger"", ""Tablet"", ""Monitor""]",4857.01,"{""promo"": ""26%""}",126728,0,Europe +2024-10-16,45340,1336,"[""Wireless Mouse""]",2498.17,{},270512,1,Africa +2023-10-05,45341,737,"[""Charger"", ""Tablet""]",4909.53,"{""loyalty"": ""11%""}",179997,1,North America +2023-05-15,45342,2845,"[""Keyboard""]",2371.09,{},195937,1,Africa +2024-02-02,45343,2346,"[""Headphones""]",407.33,{},293786,1,Europe +2024-08-26,45344,5266,"[""Laptop"", ""Monitor""]",4080.04,"{"""": ""26%""}",79112,1,Asia +2023-03-11,45345,5292,"[""Tablet""]",649.07,"{""promo"": ""9%""}",285331,0,North America +2023-10-13,45346,71,"[""Tablet"", ""Keyboard""]",2602.89,{},124130,1,Asia +2023-03-29,45347,5312,"[""Headphones""]",2836.42,"{""promo"": ""21%""}",190384,1,North America +2024-08-25,45348,50,"[""Charger"", ""Wireless Mouse""]",2133.84,"{""loyalty"": ""17%""}",236393,1,Europe +2024-11-06,45349,1272,"[""Headphones"", ""Charger"", ""Laptop""]",783.33,"{"""": ""16%""}",24587,1,South America +2023-11-01,45350,8367,"[""Laptop"", ""Wireless Mouse""]",4205.74,{},262520,1,South America +2024-08-04,45351,9619,"[""Phone"", ""Wireless Mouse""]",3348.14,{},107687,0,North America +2024-12-31,45352,3691,"[""Phone"", ""Headphones""]",4507.12,{},22200,0,Europe +2023-03-23,45353,48,"[""Charger""]",1359.41,{},6217,1,Africa +2023-02-08,45354,1324,"[""Charger"", ""Keyboard""]",2476.67,"{""promo"": ""28%""}",159989,1,North America +2024-11-24,45355,5120,"[""Phone"", ""Charger""]",886.16,{},130511,1,Asia +2023-03-24,45356,3168,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2275.06,{},109033,0,Asia +2024-10-12,45357,7945,"[""Keyboard"", ""Tablet""]",2688.27,"{"""": ""14%""}",15847,1,North America +2023-05-16,45358,1397,"[""Tablet""]",2261.64,{},98621,0,Europe +2023-12-19,45359,687,"[""Monitor"", ""Tablet""]",4450.04,{},98583,1,Africa +2023-10-27,45360,8889,"[""Charger"", ""Phone"", ""Keyboard""]",2739.55,"{""seasonal"": ""16%""}",103016,1,Asia +2024-10-06,45361,5485,"[""Headphones"", ""Monitor""]",3603.58,"{""loyalty"": ""22%""}",232261,0,South America +2024-08-05,45362,2674,"[""Headphones"", ""Charger"", ""Monitor""]",2007.8,{},208097,1,North America +2024-04-13,45363,7662,"[""Keyboard"", ""Monitor""]",2817.22,{},76008,1,South America +2023-09-26,45364,1591,"[""Phone"", ""Laptop""]",3086.4,"{""loyalty"": ""6%""}",297360,0,Europe +2023-11-19,45365,4484,"[""Keyboard"", ""Monitor"", ""Laptop""]",4385.13,"{""loyalty"": ""25%""}",3855,0,Europe +2023-09-23,45366,4712,"[""Wireless Mouse""]",1447.38,{},206454,0,North America +2023-04-18,45367,4562,"[""Monitor"", ""Phone"", ""Tablet""]",1905.3,"{""promo"": ""7%""}",299139,1,Asia +2024-03-11,45368,5743,"[""Monitor"", ""Tablet"", ""Phone""]",1039.55,{},166707,0,South America +2023-04-09,45369,3395,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2199.07,{},10521,0,Asia +2023-12-14,45370,3403,"[""Charger"", ""Phone"", ""Headphones""]",1602.75,{},81915,1,Europe +2024-08-18,45371,9296,"[""Laptop""]",3214.04,{},172867,1,South America +2024-02-03,45372,7926,"[""Charger"", ""Laptop""]",4161.99,{},49027,1,South America +2023-12-02,45373,4140,"[""Tablet""]",3979.04,"{""promo"": ""7%""}",161758,1,North America +2024-08-09,45374,5081,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1832.88,{},70824,0,North America +2023-12-14,45375,9113,"[""Laptop"", ""Tablet""]",2822.84,"{""promo"": ""19%""}",207175,1,Africa +2024-04-10,45376,9859,"[""Keyboard""]",2597.25,"{""promo"": ""25%""}",85794,0,North America +2023-12-31,45377,912,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1932.64,"{""promo"": ""6%""}",219009,1,North America +2023-07-16,45378,3061,"[""Headphones""]",64.63,"{""loyalty"": ""29%""}",55796,1,Europe +2024-01-14,45379,8526,"[""Wireless Mouse""]",280.22,"{"""": ""18%""}",189897,0,North America +2023-05-08,45380,6462,"[""Charger"", ""Monitor""]",3774.83,{},35623,0,South America +2023-02-25,45381,739,"[""Tablet""]",4889.7,{},102344,1,North America +2024-08-22,45382,1723,"[""Monitor"", ""Phone""]",3951.3,"{""promo"": ""29%""}",231220,0,Africa +2023-12-10,45383,9344,"[""Headphones"", ""Keyboard""]",2249.98,"{"""": ""28%""}",153204,1,Africa +2023-04-11,45384,8960,"[""Monitor"", ""Phone""]",820.66,{},289654,0,South America +2023-09-21,45385,2689,"[""Keyboard"", ""Phone""]",3069.47,"{""seasonal"": ""17%""}",149783,1,South America +2024-05-08,45386,9320,"[""Headphones"", ""Phone"", ""Laptop""]",2305.19,{},158878,0,North America +2023-04-23,45387,1106,"[""Laptop"", ""Monitor""]",857.84,{},148231,0,Africa +2023-10-09,45388,2896,"[""Wireless Mouse"", ""Tablet""]",645.46,"{""seasonal"": ""13%""}",204753,0,Europe +2023-02-11,45389,2470,"[""Keyboard""]",4893.42,{},257785,0,Africa +2023-06-20,45390,165,"[""Monitor""]",2882.1,{},17535,1,North America +2024-11-14,45391,3452,"[""Keyboard"", ""Monitor"", ""Laptop""]",2862.94,{},50212,0,Africa +2023-09-24,45392,2437,"[""Wireless Mouse""]",4396.86,"{""seasonal"": ""24%""}",98364,0,North America +2024-01-09,45393,3293,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",886.41,{},62752,0,South America +2023-03-02,45394,1226,"[""Charger""]",1448.89,"{""promo"": ""25%""}",81387,1,South America +2024-08-27,45395,7564,"[""Phone"", ""Wireless Mouse""]",151.29,{},276145,1,North America +2024-03-06,45396,6159,"[""Tablet"", ""Headphones""]",774.07,{},279233,1,North America +2023-11-05,45397,9320,"[""Tablet"", ""Headphones""]",1877.34,{},155606,1,Asia +2024-02-28,45398,2465,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3873.51,{},197435,1,South America +2023-08-07,45399,3743,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1822.39,{},276563,0,North America +2023-04-19,45400,8443,"[""Wireless Mouse"", ""Keyboard""]",573.97,"{""promo"": ""15%""}",125459,0,Europe +2024-04-08,45401,4000,"[""Monitor""]",1103.5,"{"""": ""29%""}",65639,0,Asia +2023-07-25,45402,719,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2603.42,"{"""": ""6%""}",80165,1,Africa +2023-11-01,45403,3249,"[""Wireless Mouse"", ""Phone""]",1852.42,"{"""": ""29%""}",264859,1,Africa +2024-02-10,45404,1866,"[""Laptop""]",449.61,{},238772,0,Africa +2023-07-17,45405,4566,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3582.59,{},18449,1,Asia +2024-07-21,45406,9695,"[""Laptop"", ""Headphones"", ""Monitor""]",2558.06,{},86217,1,Europe +2023-02-13,45407,3990,"[""Monitor"", ""Keyboard"", ""Charger""]",1326.74,"{"""": ""11%""}",235992,0,Europe +2023-10-05,45408,5403,"[""Keyboard""]",301.57,"{""promo"": ""30%""}",212247,0,Asia +2024-11-13,45409,6271,"[""Laptop""]",4049.82,{},72393,1,Africa +2024-05-12,45410,164,"[""Headphones"", ""Wireless Mouse""]",612.8,"{""loyalty"": ""21%""}",135697,1,Europe +2024-11-02,45411,8999,"[""Tablet"", ""Phone""]",4429.09,"{"""": ""23%""}",104978,1,Europe +2024-02-15,45412,3773,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1758.58,{},143523,1,South America +2024-07-25,45413,331,"[""Keyboard""]",1265.42,{},83770,1,South America +2024-10-17,45414,2903,"[""Headphones"", ""Charger"", ""Tablet""]",2188.43,"{""seasonal"": ""16%""}",142346,0,Africa +2024-05-02,45415,395,"[""Headphones""]",4311.75,"{""seasonal"": ""13%""}",55843,0,Africa +2024-08-17,45416,9718,"[""Wireless Mouse"", ""Monitor""]",2494.18,"{""promo"": ""25%""}",71873,0,Africa +2024-05-25,45417,6339,"[""Tablet"", ""Monitor"", ""Laptop""]",847.16,{},201522,0,South America +2023-09-14,45418,7220,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4303.76,"{""promo"": ""5%""}",269292,1,Africa +2024-02-05,45419,1132,"[""Headphones""]",2889.29,{},272606,0,Africa +2023-04-07,45420,5409,"[""Wireless Mouse""]",4506.31,{},215222,0,Europe +2024-05-29,45421,4398,"[""Monitor"", ""Wireless Mouse""]",3405.4,{},201850,1,Africa +2023-11-23,45422,3620,"[""Tablet"", ""Phone""]",4811.16,"{""loyalty"": ""29%""}",176127,0,Europe +2023-10-31,45423,7419,"[""Monitor"", ""Tablet"", ""Headphones""]",3770.0,{},216543,1,Asia +2024-05-03,45424,4819,"[""Phone"", ""Keyboard""]",4047.22,{},176371,0,North America +2023-04-28,45425,4653,"[""Keyboard"", ""Charger""]",1475.04,{},131864,1,Europe +2024-03-12,45426,2254,"[""Headphones""]",2860.68,"{""seasonal"": ""7%""}",292692,1,Asia +2024-08-25,45427,2986,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3829.34,{},176037,1,South America +2023-05-10,45428,874,"[""Headphones"", ""Wireless Mouse""]",4505.67,"{""loyalty"": ""17%""}",291318,1,South America +2023-10-30,45429,8856,"[""Laptop""]",3131.62,{},294860,0,Europe +2024-05-08,45430,4794,"[""Headphones""]",780.73,"{"""": ""20%""}",212430,1,North America +2024-03-25,45431,9797,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2192.58,{},72225,0,Europe +2024-09-13,45432,9583,"[""Tablet""]",1135.85,"{""loyalty"": ""25%""}",53803,1,Europe +2023-05-24,45433,9184,"[""Keyboard"", ""Headphones"", ""Charger""]",4508.09,"{""seasonal"": ""13%""}",279473,1,North America +2024-11-04,45434,6419,"[""Headphones"", ""Charger""]",3238.61,"{""seasonal"": ""13%""}",121755,1,Europe +2023-06-16,45435,9614,"[""Laptop"", ""Tablet"", ""Charger""]",3636.6,"{""loyalty"": ""24%""}",198532,1,North America +2023-07-31,45436,1033,"[""Keyboard""]",4825.77,"{""promo"": ""12%""}",175405,0,Africa +2024-08-17,45437,6963,"[""Laptop"", ""Monitor""]",1681.81,{},91008,1,South America +2023-06-23,45438,3154,"[""Laptop""]",2934.96,"{""seasonal"": ""12%""}",141033,0,North America +2024-02-25,45439,9032,"[""Keyboard""]",1924.85,"{"""": ""26%""}",290565,0,Europe +2023-07-26,45440,8002,"[""Headphones""]",147.74,"{""promo"": ""9%""}",98185,1,Africa +2024-05-28,45441,8773,"[""Keyboard"", ""Phone"", ""Laptop""]",3457.2,{},79382,0,Asia +2024-07-14,45442,4464,"[""Charger""]",4822.13,{},56126,1,Asia +2024-02-26,45443,6682,"[""Monitor""]",1829.76,"{"""": ""28%""}",207060,0,North America +2023-02-09,45444,3502,"[""Charger""]",4765.5,"{""promo"": ""23%""}",272054,0,South America +2024-08-23,45445,9396,"[""Keyboard""]",2704.33,"{""promo"": ""13%""}",103213,0,North America +2023-01-17,45446,8676,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",90.12,"{""promo"": ""20%""}",68031,1,Europe +2024-12-23,45447,5587,"[""Charger"", ""Phone""]",4687.57,{},197344,1,Europe +2024-12-14,45448,6557,"[""Tablet"", ""Phone""]",1873.31,{},158426,1,North America +2023-01-12,45449,2687,"[""Phone"", ""Headphones""]",2277.98,{},122688,0,South America +2023-10-02,45450,5631,"[""Charger"", ""Phone"", ""Keyboard""]",790.1,"{"""": ""30%""}",9151,1,North America +2023-08-15,45451,8282,"[""Monitor""]",1016.68,"{""promo"": ""18%""}",82923,1,North America +2024-11-26,45452,131,"[""Laptop"", ""Keyboard"", ""Charger""]",4276.79,{},128754,0,Africa +2023-04-25,45453,9475,"[""Monitor"", ""Wireless Mouse""]",750.96,{},137166,1,Africa +2023-07-20,45454,6783,"[""Phone""]",958.22,{},170516,0,South America +2024-01-22,45455,1909,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2900.92,{},176635,0,Europe +2023-05-20,45456,4517,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4315.31,{},269498,0,North America +2024-05-29,45457,4897,"[""Keyboard""]",471.3,{},149657,0,North America +2023-06-25,45458,6344,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",858.43,"{""loyalty"": ""23%""}",95433,0,North America +2023-08-16,45459,9069,"[""Laptop""]",1532.65,{},87628,0,North America +2023-04-15,45460,963,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3035.03,{},189006,1,Europe +2023-10-03,45461,546,"[""Phone"", ""Laptop""]",1358.62,{},113579,1,Europe +2023-06-14,45462,6367,"[""Keyboard""]",1232.2,{},290908,1,Asia +2023-04-30,45463,8834,"[""Phone"", ""Charger""]",2870.47,"{"""": ""14%""}",46736,1,Europe +2024-12-31,45464,5950,"[""Tablet"", ""Wireless Mouse""]",3758.76,{},92656,0,Asia +2024-05-28,45465,3930,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",847.9,{},43809,0,South America +2023-07-09,45466,4225,"[""Laptop"", ""Headphones""]",4551.65,{},186064,0,Europe +2024-10-06,45467,8214,"[""Charger"", ""Laptop""]",2464.5,{},27696,1,Africa +2024-07-07,45468,9434,"[""Keyboard"", ""Phone"", ""Tablet""]",511.13,"{""promo"": ""9%""}",117125,0,Africa +2023-02-02,45469,4160,"[""Keyboard"", ""Phone""]",3084.21,{},19327,0,Europe +2023-07-16,45470,3734,"[""Charger"", ""Wireless Mouse""]",245.54,{},135348,1,South America +2024-08-20,45471,5903,"[""Tablet""]",4771.32,{},81280,1,Europe +2023-07-30,45472,1211,"[""Phone"", ""Tablet""]",950.75,"{""promo"": ""9%""}",238773,1,Europe +2023-10-08,45473,7484,"[""Headphones"", ""Laptop""]",4933.32,{},181501,0,Africa +2023-04-08,45474,7317,"[""Headphones"", ""Phone"", ""Charger""]",2774.83,"{""loyalty"": ""21%""}",245844,1,North America +2024-03-21,45475,6721,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3837.32,"{""promo"": ""30%""}",102702,0,Europe +2023-09-17,45476,8874,"[""Laptop""]",3278.85,{},113822,1,North America +2023-05-24,45477,3110,"[""Charger"", ""Wireless Mouse""]",2272.92,{},169136,1,Africa +2024-09-06,45478,9734,"[""Laptop""]",3033.03,"{""promo"": ""20%""}",147888,1,Asia +2023-12-21,45479,9144,"[""Wireless Mouse"", ""Monitor""]",3635.66,"{"""": ""30%""}",124806,0,North America +2024-10-23,45480,5837,"[""Keyboard"", ""Charger""]",4861.22,{},107927,0,North America +2023-04-12,45481,1340,"[""Headphones""]",851.72,{},192271,1,Europe +2023-08-17,45482,3680,"[""Phone""]",4068.35,{},152610,1,North America +2023-11-19,45483,8200,"[""Keyboard""]",3187.76,{},74644,0,North America +2024-10-14,45484,4028,"[""Phone""]",3546.54,"{""promo"": ""16%""}",196673,1,Asia +2023-06-06,45485,9273,"[""Phone"", ""Wireless Mouse""]",4104.84,{},95535,1,Africa +2024-09-25,45486,601,"[""Wireless Mouse""]",3414.79,{},47760,0,Europe +2023-06-11,45487,1711,"[""Tablet"", ""Keyboard"", ""Laptop""]",2417.58,"{""seasonal"": ""30%""}",88153,0,Asia +2024-01-07,45488,3119,"[""Keyboard""]",3569.59,{},124927,0,South America +2024-10-17,45489,5928,"[""Tablet"", ""Charger"", ""Phone""]",2820.21,"{""loyalty"": ""5%""}",15671,1,Europe +2023-09-27,45490,8074,"[""Monitor"", ""Laptop""]",841.6,{},275963,0,Europe +2024-10-22,45491,8958,"[""Phone"", ""Keyboard""]",3733.47,"{""promo"": ""24%""}",249268,0,South America +2023-04-16,45492,985,"[""Phone"", ""Headphones""]",413.76,{},195122,1,Asia +2023-08-17,45493,5501,"[""Phone"", ""Headphones""]",797.76,"{""promo"": ""16%""}",68446,0,North America +2023-10-26,45494,3279,"[""Headphones"", ""Laptop""]",3609.52,"{""loyalty"": ""22%""}",164200,0,Africa +2023-07-29,45495,4106,"[""Wireless Mouse""]",4662.69,"{"""": ""20%""}",194942,1,Africa +2024-03-20,45496,47,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2423.78,{},111295,0,Europe +2024-11-14,45497,881,"[""Charger"", ""Phone"", ""Monitor""]",88.4,"{""loyalty"": ""18%""}",201340,1,Asia +2024-02-28,45498,6341,"[""Charger"", ""Tablet""]",2456.3,"{""loyalty"": ""21%""}",195631,0,North America +2024-02-02,45499,4203,"[""Wireless Mouse"", ""Laptop""]",3338.06,"{"""": ""25%""}",124590,1,Asia +2023-10-18,45500,828,"[""Wireless Mouse"", ""Charger""]",745.82,"{"""": ""20%""}",14703,1,Europe +2023-12-14,45501,2470,"[""Headphones"", ""Charger"", ""Monitor""]",766.13,"{""seasonal"": ""12%""}",125731,0,Asia +2024-08-02,45502,7763,"[""Tablet"", ""Charger""]",2192.86,{},289154,0,Europe +2024-05-27,45503,9090,"[""Monitor"", ""Phone""]",1118.27,"{"""": ""19%""}",125486,1,Africa +2024-11-23,45504,6402,"[""Laptop"", ""Headphones""]",2371.37,"{""promo"": ""25%""}",79887,1,Europe +2024-06-03,45505,7058,"[""Phone"", ""Headphones""]",135.32,{},31453,1,North America +2023-12-17,45506,3007,"[""Tablet""]",3087.59,{},236464,0,Asia +2024-04-18,45507,6195,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2402.05,"{""seasonal"": ""15%""}",246996,1,Asia +2023-01-19,45508,7212,"[""Headphones"", ""Keyboard""]",816.67,{},201670,1,South America +2024-10-07,45509,4072,"[""Phone""]",182.91,"{""seasonal"": ""12%""}",50119,0,North America +2024-05-17,45510,1903,"[""Charger""]",1713.33,{},61252,0,North America +2024-01-01,45511,8040,"[""Monitor"", ""Phone"", ""Charger""]",1265.87,"{"""": ""27%""}",210526,0,North America +2023-02-24,45512,2531,"[""Headphones"", ""Phone""]",2984.94,"{""promo"": ""30%""}",175192,1,Africa +2024-09-30,45513,2097,"[""Phone""]",4320.62,"{"""": ""5%""}",135465,1,Asia +2023-08-14,45514,2391,"[""Phone""]",2912.49,"{""promo"": ""15%""}",261664,0,North America +2024-07-13,45515,7771,"[""Tablet"", ""Keyboard""]",3032.84,"{"""": ""29%""}",96687,1,Europe +2023-01-09,45516,7112,"[""Wireless Mouse""]",295.3,{},205660,1,South America +2023-05-15,45517,8790,"[""Wireless Mouse"", ""Laptop""]",102.41,"{""promo"": ""14%""}",50899,1,South America +2023-09-26,45518,9515,"[""Laptop"", ""Tablet""]",3278.38,"{""loyalty"": ""21%""}",9807,1,Africa +2024-02-08,45519,7380,"[""Laptop"", ""Wireless Mouse""]",950.46,{},163544,0,Asia +2023-06-23,45520,1816,"[""Charger"", ""Monitor""]",840.69,"{""loyalty"": ""8%""}",112568,1,South America +2024-07-03,45521,6751,"[""Phone"", ""Headphones""]",122.01,{},177249,1,Asia +2024-10-30,45522,374,"[""Laptop"", ""Phone""]",712.31,{},292420,0,North America +2024-05-04,45523,2876,"[""Tablet"", ""Charger"", ""Keyboard""]",4696.9,{},262611,1,North America +2024-05-24,45524,811,"[""Tablet"", ""Headphones"", ""Keyboard""]",2380.86,"{""loyalty"": ""26%""}",65966,1,North America +2024-03-20,45525,2483,"[""Charger""]",2668.7,{},224302,0,South America +2024-06-01,45526,5142,"[""Charger"", ""Tablet""]",3645.67,"{""loyalty"": ""27%""}",90776,0,Europe +2023-10-24,45527,7232,"[""Wireless Mouse"", ""Monitor""]",4772.86,{},249092,1,Europe +2024-12-27,45528,7684,"[""Headphones""]",4454.83,"{"""": ""19%""}",245790,1,Europe +2023-02-14,45529,1327,"[""Laptop"", ""Monitor""]",3535.6,"{""seasonal"": ""9%""}",167498,1,Africa +2024-09-12,45530,3355,"[""Tablet""]",3009.03,{},112799,1,Europe +2024-02-23,45531,3760,"[""Headphones""]",950.26,{},98724,0,South America +2024-08-02,45532,6967,"[""Headphones"", ""Charger""]",661.87,{},197855,0,Africa +2024-03-18,45533,876,"[""Charger"", ""Tablet"", ""Headphones""]",3283.96,{},39357,1,Asia +2024-01-16,45534,6343,"[""Tablet"", ""Laptop"", ""Phone""]",579.01,"{""loyalty"": ""29%""}",150184,1,South America +2024-11-26,45535,3326,"[""Charger"", ""Phone""]",2285.98,{},176250,0,North America +2023-10-11,45536,4398,"[""Laptop"", ""Monitor""]",141.73,{},253419,0,Asia +2023-12-27,45537,3041,"[""Tablet"", ""Keyboard"", ""Laptop""]",1555.29,{},147296,0,Africa +2024-08-31,45538,3132,"[""Charger""]",1004.23,{},63296,1,Europe +2023-12-09,45539,6770,"[""Keyboard"", ""Monitor"", ""Headphones""]",457.44,"{""promo"": ""11%""}",229171,1,Africa +2023-02-07,45540,1194,"[""Monitor"", ""Wireless Mouse""]",3331.35,"{""loyalty"": ""27%""}",241286,0,Africa +2024-02-07,45541,7883,"[""Phone"", ""Keyboard"", ""Tablet""]",2264.26,"{"""": ""6%""}",66493,0,Asia +2024-04-08,45542,6984,"[""Headphones"", ""Keyboard""]",2640.37,{},69030,1,Africa +2023-08-19,45543,9273,"[""Laptop""]",4285.89,"{""seasonal"": ""30%""}",198294,0,Africa +2023-10-05,45544,6600,"[""Wireless Mouse""]",2703.29,"{"""": ""19%""}",119100,0,Africa +2023-02-21,45545,1006,"[""Keyboard"", ""Headphones"", ""Charger""]",1422.74,"{""promo"": ""12%""}",58007,1,Asia +2024-06-24,45546,7432,"[""Keyboard"", ""Tablet"", ""Phone""]",1275.1,{},149284,1,South America +2023-04-26,45547,2948,"[""Tablet"", ""Monitor""]",4098.98,"{""promo"": ""19%""}",59830,1,South America +2023-05-19,45548,1641,"[""Phone"", ""Keyboard""]",3631.35,"{""loyalty"": ""25%""}",17950,1,Africa +2023-09-28,45549,2835,"[""Laptop"", ""Phone""]",1024.33,{},248047,0,Asia +2023-05-10,45550,2934,"[""Charger"", ""Keyboard"", ""Headphones""]",216.34,{},206635,1,Africa +2023-03-18,45551,2432,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",79.01,"{""seasonal"": ""14%""}",38145,1,North America +2023-04-25,45552,7221,"[""Wireless Mouse"", ""Keyboard""]",3361.85,"{"""": ""17%""}",295495,1,South America +2023-09-10,45553,3324,"[""Monitor"", ""Headphones""]",4574.46,"{"""": ""19%""}",208219,0,Africa +2024-11-15,45554,8146,"[""Laptop""]",863.92,{},117901,1,Asia +2023-06-11,45555,3021,"[""Tablet""]",626.99,"{"""": ""16%""}",278859,0,Asia +2023-12-15,45556,6294,"[""Keyboard"", ""Headphones""]",2019.32,"{"""": ""8%""}",25988,1,Africa +2024-04-07,45557,1470,"[""Laptop"", ""Phone"", ""Tablet""]",2608.91,"{""loyalty"": ""18%""}",12266,0,Africa +2024-11-23,45558,6954,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1948.09,"{""seasonal"": ""18%""}",242851,0,Europe +2024-03-23,45559,4428,"[""Charger""]",828.7,{},43265,1,Europe +2023-09-14,45560,8340,"[""Phone""]",1569.43,{},74880,1,Asia +2023-05-04,45561,9806,"[""Charger"", ""Wireless Mouse""]",4079.3,"{""loyalty"": ""22%""}",231147,0,Africa +2024-08-27,45562,9054,"[""Laptop""]",1600.31,{},112171,1,Asia +2023-11-21,45563,9840,"[""Tablet"", ""Keyboard"", ""Monitor""]",3099.74,{},236823,0,Africa +2023-05-19,45564,3677,"[""Monitor""]",2362.08,"{"""": ""21%""}",249238,0,North America +2023-10-06,45565,7728,"[""Keyboard"", ""Tablet"", ""Monitor""]",3607.74,{},7879,0,Africa +2024-09-10,45566,3086,"[""Laptop"", ""Phone""]",2965.35,{},113620,1,North America +2024-05-23,45567,8653,"[""Charger"", ""Phone"", ""Laptop""]",1508.79,"{""promo"": ""13%""}",178366,1,Europe +2023-10-15,45568,5940,"[""Monitor"", ""Phone"", ""Tablet""]",4529.18,"{""promo"": ""9%""}",253743,0,Africa +2023-05-22,45569,3471,"[""Monitor"", ""Tablet""]",3958.52,"{"""": ""12%""}",292196,1,Africa +2024-07-19,45570,5585,"[""Keyboard"", ""Tablet"", ""Charger""]",1899.51,"{""loyalty"": ""25%""}",209388,0,Africa +2023-11-23,45571,8153,"[""Tablet"", ""Monitor"", ""Headphones""]",464.1,{},100308,0,South America +2023-04-14,45572,5809,"[""Monitor"", ""Charger""]",3420.09,{},80138,1,South America +2023-09-26,45573,2444,"[""Monitor""]",1893.31,"{""promo"": ""20%""}",180338,1,South America +2023-05-03,45574,5198,"[""Laptop""]",1813.36,"{""loyalty"": ""12%""}",86408,0,Europe +2024-07-11,45575,4239,"[""Monitor""]",2555.26,"{"""": ""19%""}",287708,1,Asia +2024-12-08,45576,4241,"[""Wireless Mouse""]",4265.99,{},33122,0,South America +2024-12-26,45577,7818,"[""Phone""]",1267.74,{},103540,1,North America +2023-07-19,45578,9764,"[""Keyboard""]",3810.45,"{""loyalty"": ""16%""}",93193,0,Europe +2024-12-30,45579,2219,"[""Monitor"", ""Tablet"", ""Charger""]",4428.94,"{""seasonal"": ""15%""}",217732,1,Asia +2024-05-10,45580,3374,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3516.38,{},105553,1,Africa +2023-08-20,45581,2470,"[""Keyboard"", ""Monitor"", ""Tablet""]",1217.74,{},41604,0,Europe +2023-03-25,45582,6815,"[""Headphones""]",2921.29,{},146394,0,Africa +2023-01-01,45583,2802,"[""Charger""]",4879.16,"{""seasonal"": ""21%""}",131218,1,North America +2024-06-06,45584,7339,"[""Headphones"", ""Monitor""]",1802.67,{},13151,1,Africa +2024-01-16,45585,9613,"[""Wireless Mouse"", ""Keyboard""]",3673.96,{},244006,0,North America +2024-04-11,45586,2055,"[""Charger""]",4020.71,{},240753,1,Africa +2023-03-04,45587,5283,"[""Laptop"", ""Headphones"", ""Monitor""]",1192.58,"{""loyalty"": ""18%""}",109303,1,Europe +2023-10-02,45588,8518,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",472.5,"{""loyalty"": ""6%""}",230255,1,South America +2023-12-19,45589,4029,"[""Headphones"", ""Laptop""]",3760.7,"{""promo"": ""14%""}",233101,0,Europe +2023-04-20,45590,5141,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1511.84,{},229430,0,Europe +2023-04-21,45591,1490,"[""Tablet""]",4445.62,{},277975,0,South America +2023-02-06,45592,4198,"[""Phone""]",472.58,{},262481,1,South America +2024-04-25,45593,5493,"[""Keyboard"", ""Laptop"", ""Monitor""]",2069.36,"{""seasonal"": ""10%""}",60093,1,North America +2024-08-22,45594,8279,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2461.19,"{""promo"": ""25%""}",218727,0,Africa +2023-04-04,45595,1321,"[""Phone""]",1874.13,{},263012,0,North America +2023-02-17,45596,4479,"[""Laptop"", ""Keyboard""]",2272.33,{},261049,1,North America +2023-01-21,45597,2125,"[""Tablet"", ""Charger"", ""Keyboard""]",2849.58,"{""promo"": ""16%""}",220753,0,South America +2023-07-31,45598,7963,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4562.37,"{""promo"": ""26%""}",116494,0,South America +2023-04-19,45599,6170,"[""Monitor"", ""Keyboard""]",2923.04,"{""promo"": ""14%""}",19547,0,Asia +2024-08-16,45600,3017,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4952.49,"{""promo"": ""21%""}",15722,1,North America +2024-04-04,45601,3070,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2507.08,{},283112,0,Africa +2024-01-23,45602,2414,"[""Charger"", ""Monitor""]",824.27,"{"""": ""12%""}",25204,0,Africa +2024-04-01,45603,4086,"[""Keyboard"", ""Phone"", ""Charger""]",2753.74,{},40221,1,South America +2023-12-16,45604,5751,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1379.03,"{"""": ""26%""}",156469,1,North America +2023-06-30,45605,7321,"[""Headphones"", ""Keyboard""]",1230.74,{},298106,0,North America +2024-12-18,45606,1821,"[""Keyboard"", ""Monitor"", ""Laptop""]",61.5,{},233916,0,North America +2024-05-27,45607,9756,"[""Monitor"", ""Tablet"", ""Charger""]",3633.48,"{""promo"": ""18%""}",257444,0,Europe +2023-08-30,45608,5959,"[""Tablet"", ""Keyboard"", ""Headphones""]",1485.55,"{""seasonal"": ""26%""}",200701,1,North America +2023-06-27,45609,2098,"[""Monitor"", ""Tablet""]",938.54,"{"""": ""13%""}",160585,1,Africa +2024-02-06,45610,5070,"[""Keyboard""]",2931.01,{},244987,1,South America +2023-06-09,45611,6311,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4563.28,{},295830,0,Europe +2023-06-15,45612,9826,"[""Tablet"", ""Phone""]",2100.52,{},85532,1,Africa +2024-03-25,45613,7270,"[""Headphones"", ""Wireless Mouse""]",214.32,{},191589,1,North America +2024-03-12,45614,8477,"[""Headphones""]",2302.41,{},164935,0,South America +2023-05-18,45615,2485,"[""Tablet""]",2744.05,{},173464,1,Asia +2024-03-07,45616,9042,"[""Monitor"", ""Keyboard"", ""Laptop""]",2515.87,{},8697,1,South America +2023-10-05,45617,1518,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4819.75,"{""promo"": ""6%""}",25088,0,Europe +2023-11-25,45618,1284,"[""Tablet""]",2588.59,{},33299,0,North America +2024-07-26,45619,1581,"[""Phone"", ""Charger"", ""Headphones""]",4487.04,"{"""": ""22%""}",139402,0,Africa +2024-11-20,45620,2111,"[""Keyboard""]",1261.5,{},69054,0,North America +2024-11-08,45621,3778,"[""Monitor"", ""Wireless Mouse""]",1271.56,{},179054,1,South America +2024-04-18,45622,922,"[""Headphones"", ""Tablet""]",520.18,{},165302,0,North America +2024-02-14,45623,1704,"[""Headphones"", ""Phone""]",1781.83,{},219346,0,South America +2023-04-22,45624,8434,"[""Charger""]",716.12,{},211047,1,Europe +2023-10-20,45625,4724,"[""Monitor""]",4828.19,"{"""": ""15%""}",80150,1,South America +2023-04-12,45626,6158,"[""Tablet"", ""Headphones""]",3478.27,"{""loyalty"": ""13%""}",253625,1,Europe +2023-01-20,45627,2663,"[""Monitor"", ""Charger"", ""Laptop""]",2022.27,"{"""": ""16%""}",266258,0,Africa +2023-01-07,45628,6794,"[""Headphones"", ""Keyboard""]",1327.43,"{""promo"": ""29%""}",255703,1,Asia +2024-11-10,45629,494,"[""Tablet""]",1059.81,"{""loyalty"": ""15%""}",227872,0,Europe +2024-03-24,45630,4412,"[""Wireless Mouse"", ""Phone""]",1312.92,{},74895,0,Europe +2024-05-28,45631,893,"[""Phone"", ""Monitor"", ""Tablet""]",1092.91,{},179214,0,North America +2023-10-28,45632,2691,"[""Wireless Mouse""]",3272.69,"{""seasonal"": ""5%""}",27332,1,South America +2023-06-18,45633,1131,"[""Monitor"", ""Phone"", ""Laptop""]",4163.02,"{""seasonal"": ""9%""}",247123,0,Africa +2024-05-20,45634,9558,"[""Laptop""]",1466.88,{},98283,1,North America +2024-04-03,45635,5646,"[""Keyboard""]",2065.57,{},165001,0,Europe +2023-09-05,45636,8528,"[""Headphones"", ""Tablet""]",3929.08,"{"""": ""30%""}",212326,1,South America +2024-03-10,45637,2007,"[""Headphones""]",1013.08,{},260243,1,Africa +2024-02-02,45638,5101,"[""Headphones""]",3392.18,{},48934,1,North America +2023-06-02,45639,4674,"[""Laptop"", ""Keyboard""]",2169.35,{},46971,0,North America +2024-04-27,45640,2541,"[""Phone"", ""Tablet"", ""Charger""]",2895.12,"{"""": ""6%""}",32431,0,South America +2024-08-23,45641,3766,"[""Laptop""]",253.58,"{""promo"": ""12%""}",222386,1,Asia +2023-02-04,45642,830,"[""Phone"", ""Wireless Mouse""]",2162.99,"{"""": ""14%""}",198729,0,Asia +2023-12-13,45643,9764,"[""Laptop""]",4785.38,{},108030,0,North America +2024-07-04,45644,7945,"[""Charger""]",3691.51,{},139637,1,South America +2024-01-11,45645,4345,"[""Headphones"", ""Keyboard"", ""Charger""]",801.77,{},264144,0,North America +2024-06-04,45646,5587,"[""Keyboard""]",4718.3,{},256590,1,North America +2024-02-06,45647,8031,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2020.66,{},54845,0,North America +2023-08-23,45648,3687,"[""Monitor""]",3112.59,"{"""": ""15%""}",272167,0,Europe +2024-11-02,45649,501,"[""Headphones"", ""Tablet"", ""Phone""]",577.78,{},105553,1,Europe +2023-08-27,45650,4927,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2964.55,"{""loyalty"": ""27%""}",187959,1,North America +2023-08-04,45651,1256,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3559.41,{},148071,1,Asia +2023-01-14,45652,8990,"[""Charger"", ""Headphones""]",384.71,{},27176,1,Asia +2024-06-04,45653,1950,"[""Keyboard""]",2834.57,{},150417,1,South America +2023-02-12,45654,1297,"[""Headphones""]",2314.62,"{"""": ""23%""}",250894,0,Asia +2024-10-17,45655,3998,"[""Keyboard"", ""Tablet"", ""Charger""]",4971.5,"{"""": ""10%""}",153661,0,Africa +2024-10-07,45656,5203,"[""Charger"", ""Laptop""]",1083.88,{},250882,1,South America +2023-02-19,45657,636,"[""Tablet""]",1847.74,{},177567,0,Europe +2023-05-31,45658,1477,"[""Monitor"", ""Headphones"", ""Phone""]",884.92,"{""promo"": ""25%""}",132798,1,Asia +2024-01-08,45659,4595,"[""Phone"", ""Keyboard"", ""Charger""]",207.95,{},124196,0,Africa +2023-11-01,45660,943,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2591.36,{},164539,1,North America +2024-03-09,45661,2064,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4706.99,{},196938,0,Europe +2023-03-29,45662,7310,"[""Headphones""]",544.6,"{""promo"": ""27%""}",195553,1,South America +2023-11-05,45663,4551,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4022.33,"{""seasonal"": ""25%""}",152101,0,Africa +2023-12-23,45664,2823,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4097.04,"{""loyalty"": ""5%""}",142027,1,South America +2024-02-29,45665,4119,"[""Monitor"", ""Headphones""]",510.86,"{""seasonal"": ""20%""}",293303,1,Asia +2024-02-02,45666,6722,"[""Headphones"", ""Charger""]",4184.5,{},60847,0,Asia +2024-10-14,45667,7037,"[""Wireless Mouse""]",2034.2,"{""loyalty"": ""28%""}",256133,1,Asia +2023-06-18,45668,2623,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4401.2,"{""seasonal"": ""19%""}",252993,0,Asia +2024-04-01,45669,9712,"[""Tablet""]",4049.69,{},135867,0,South America +2023-02-20,45670,2113,"[""Keyboard""]",3948.29,"{""loyalty"": ""11%""}",288387,0,Asia +2024-06-21,45671,2180,"[""Monitor""]",570.42,"{""seasonal"": ""15%""}",190938,0,Europe +2023-01-31,45672,236,"[""Keyboard""]",2683.96,{},56180,0,Europe +2024-05-22,45673,7210,"[""Laptop"", ""Wireless Mouse""]",4747.64,"{""loyalty"": ""20%""}",107101,0,North America +2023-12-10,45674,1436,"[""Charger"", ""Phone""]",3206.16,{},103427,0,North America +2024-01-25,45675,8594,"[""Wireless Mouse"", ""Headphones""]",4533.61,{},114432,1,Europe +2024-08-28,45676,5498,"[""Monitor""]",2474.76,{},240965,1,South America +2023-04-04,45677,1278,"[""Wireless Mouse"", ""Phone""]",2945.75,"{""seasonal"": ""14%""}",290193,0,Asia +2024-10-25,45678,2458,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4417.79,{},256475,0,Asia +2023-02-28,45679,5461,"[""Monitor""]",3560.35,{},295529,0,South America +2023-12-13,45680,6501,"[""Tablet"", ""Monitor"", ""Headphones""]",4803.07,{},43729,1,South America +2024-07-23,45681,181,"[""Phone""]",1962.08,"{""promo"": ""30%""}",172252,1,North America +2024-02-10,45682,7333,"[""Laptop""]",4275.96,"{""promo"": ""6%""}",228232,0,Africa +2024-05-16,45683,210,"[""Keyboard"", ""Phone""]",258.7,{},111984,1,Europe +2023-02-25,45684,8624,"[""Laptop""]",461.23,{},219996,0,Europe +2023-06-25,45685,2005,"[""Laptop"", ""Charger""]",3809.24,{},74880,0,Europe +2023-06-30,45686,2852,"[""Wireless Mouse""]",2713.17,{},207380,0,Africa +2023-07-07,45687,8622,"[""Charger""]",2047.95,"{"""": ""18%""}",209980,1,Asia +2024-08-15,45688,3492,"[""Wireless Mouse""]",1052.42,{},258289,1,Africa +2024-10-26,45689,7570,"[""Keyboard"", ""Monitor"", ""Headphones""]",1324.18,"{"""": ""8%""}",275480,0,South America +2023-01-02,45690,8610,"[""Charger"", ""Monitor""]",1155.82,"{"""": ""16%""}",233766,1,South America +2023-09-24,45691,4571,"[""Monitor"", ""Laptop"", ""Tablet""]",2373.34,{},144103,1,Africa +2024-07-09,45692,9718,"[""Tablet""]",4047.71,{},206551,0,Asia +2023-10-06,45693,3555,"[""Headphones""]",744.33,{},93036,0,Asia +2023-10-15,45694,51,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2236.63,{},114471,1,Asia +2024-07-07,45695,8434,"[""Wireless Mouse"", ""Monitor""]",2095.17,"{""loyalty"": ""20%""}",89679,0,Africa +2024-07-08,45696,4430,"[""Laptop"", ""Phone"", ""Monitor""]",3252.73,"{""seasonal"": ""7%""}",92754,0,South America +2024-10-14,45697,2822,"[""Laptop""]",4580.71,{},47156,1,Europe +2023-07-29,45698,2615,"[""Phone"", ""Headphones""]",988.06,"{""loyalty"": ""27%""}",127282,1,North America +2023-05-15,45699,4042,"[""Keyboard"", ""Laptop""]",3169.5,{},251605,0,Asia +2023-09-29,45700,5651,"[""Laptop""]",1538.56,"{""seasonal"": ""10%""}",118926,0,South America +2023-02-06,45701,4834,"[""Laptop"", ""Keyboard"", ""Tablet""]",4484.19,{},4093,0,South America +2023-02-12,45702,9451,"[""Tablet"", ""Monitor"", ""Charger""]",3589.98,"{""promo"": ""19%""}",278498,1,North America +2024-03-19,45703,3360,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2180.99,{},261043,1,North America +2023-01-11,45704,8890,"[""Tablet"", ""Headphones""]",4684.85,"{"""": ""30%""}",122940,1,North America +2024-04-25,45705,915,"[""Keyboard"", ""Headphones""]",3635.04,"{""seasonal"": ""25%""}",29392,0,Asia +2024-04-25,45706,6296,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3204.69,{},215819,1,North America +2023-06-22,45707,3315,"[""Headphones""]",3670.99,"{"""": ""27%""}",193620,0,Europe +2024-01-19,45708,8813,"[""Laptop""]",1868.07,"{"""": ""17%""}",183331,0,Europe +2024-05-17,45709,5721,"[""Laptop""]",1763.38,"{""loyalty"": ""10%""}",182555,1,South America +2023-08-22,45710,635,"[""Monitor"", ""Keyboard"", ""Phone""]",4694.02,{},191861,0,South America +2023-10-22,45711,7176,"[""Keyboard"", ""Phone""]",4513.28,{},54632,0,Europe +2023-10-24,45712,3317,"[""Laptop"", ""Keyboard"", ""Headphones""]",1491.87,{},112323,1,South America +2023-07-13,45713,1394,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2228.61,{},51207,1,Europe +2024-05-07,45714,6942,"[""Laptop"", ""Wireless Mouse""]",818.28,"{""promo"": ""27%""}",220620,0,Asia +2024-11-01,45715,4212,"[""Phone"", ""Keyboard""]",2473.56,"{"""": ""11%""}",12468,0,Europe +2024-07-03,45716,3106,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3557.45,"{""loyalty"": ""21%""}",69524,1,Africa +2023-09-11,45717,4382,"[""Charger"", ""Laptop"", ""Monitor""]",3477.71,"{""seasonal"": ""20%""}",252507,1,North America +2024-03-12,45718,5528,"[""Wireless Mouse""]",4851.42,{},184550,1,Asia +2023-09-14,45719,3021,"[""Laptop"", ""Keyboard"", ""Phone""]",761.2,{},111626,1,Europe +2023-08-13,45720,5248,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",416.17,"{""seasonal"": ""24%""}",296045,0,North America +2024-05-09,45721,9708,"[""Tablet""]",445.27,{},71803,1,Asia +2024-10-24,45722,8187,"[""Phone"", ""Monitor"", ""Keyboard""]",3963.56,"{"""": ""17%""}",118035,1,North America +2023-07-25,45723,9664,"[""Charger"", ""Phone""]",1613.14,"{""seasonal"": ""7%""}",113250,0,Asia +2023-03-15,45724,9454,"[""Monitor""]",2980.07,{},117608,0,North America +2023-05-03,45725,8391,"[""Tablet""]",1332.68,"{""seasonal"": ""26%""}",74590,0,Asia +2024-07-08,45726,4148,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1041.93,"{""promo"": ""10%""}",200529,1,North America +2024-08-20,45727,8693,"[""Phone"", ""Monitor""]",4878.79,{},110585,1,Europe +2023-10-20,45728,3063,"[""Laptop"", ""Monitor""]",3244.33,{},53709,1,Europe +2024-05-28,45729,7424,"[""Phone"", ""Keyboard""]",1871.86,{},96755,0,Europe +2024-10-30,45730,7465,"[""Tablet"", ""Monitor""]",2281.63,{},292261,1,Asia +2023-09-19,45731,3970,"[""Tablet""]",4597.55,"{""loyalty"": ""17%""}",58883,1,Asia +2024-06-25,45732,7862,"[""Laptop""]",2778.75,"{""loyalty"": ""9%""}",13039,1,Europe +2023-03-12,45733,4249,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3116.47,{},238543,0,North America +2024-02-14,45734,4050,"[""Headphones""]",4443.67,"{""promo"": ""7%""}",229469,0,Asia +2024-04-06,45735,5822,"[""Headphones"", ""Phone"", ""Charger""]",3846.38,"{""seasonal"": ""18%""}",18864,0,Europe +2023-01-09,45736,2566,"[""Tablet""]",4755.09,{},245775,0,North America +2024-03-21,45737,1414,"[""Phone"", ""Wireless Mouse""]",2340.48,"{""promo"": ""23%""}",56971,0,Asia +2023-08-22,45738,6493,"[""Laptop""]",1416.41,{},38734,0,Asia +2024-11-08,45739,4658,"[""Phone"", ""Keyboard""]",2317.47,{},53671,0,North America +2024-10-27,45740,8256,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4903.23,{},40128,0,Europe +2023-12-23,45741,9062,"[""Laptop"", ""Headphones"", ""Keyboard""]",1529.05,{},31966,1,South America +2024-07-06,45742,4338,"[""Charger"", ""Monitor""]",3722.01,{},256981,0,Africa +2023-07-12,45743,5960,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1171.96,"{"""": ""29%""}",30816,1,Africa +2023-12-24,45744,4038,"[""Headphones"", ""Wireless Mouse""]",2444.96,{},189062,0,South America +2024-04-02,45745,8230,"[""Phone"", ""Headphones""]",3592.65,"{""loyalty"": ""8%""}",109907,0,South America +2023-09-10,45746,7257,"[""Keyboard"", ""Charger"", ""Phone""]",3482.93,{},201756,0,Europe +2023-03-12,45747,5102,"[""Tablet""]",2309.75,{},262579,0,Africa +2023-10-05,45748,4159,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3732.98,"{""promo"": ""19%""}",56063,1,North America +2023-09-02,45749,3531,"[""Headphones""]",1190.06,"{""promo"": ""18%""}",67449,0,Africa +2023-01-29,45750,481,"[""Charger"", ""Wireless Mouse""]",2897.76,"{""seasonal"": ""27%""}",31678,0,South America +2023-01-28,45751,4402,"[""Charger"", ""Laptop""]",1135.57,{},97237,1,South America +2024-12-18,45752,1803,"[""Charger"", ""Keyboard""]",1681.4,"{""promo"": ""24%""}",81945,1,Europe +2023-08-23,45753,5107,"[""Phone"", ""Laptop""]",3347.69,{},76897,0,Europe +2024-06-25,45754,4951,"[""Keyboard"", ""Tablet""]",3655.18,{},239747,0,North America +2023-01-25,45755,1674,"[""Headphones"", ""Keyboard""]",1652.1,{},148997,1,Asia +2023-05-04,45756,7763,"[""Laptop""]",2527.65,{},250972,0,Europe +2023-02-10,45757,907,"[""Laptop"", ""Charger""]",1026.48,"{""seasonal"": ""19%""}",296645,1,Europe +2024-07-27,45758,3429,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",517.28,{},191467,0,North America +2023-08-19,45759,3168,"[""Tablet"", ""Charger"", ""Monitor""]",4079.74,{},42745,1,North America +2023-10-20,45760,8927,"[""Wireless Mouse"", ""Headphones""]",1925.23,"{""loyalty"": ""7%""}",127018,0,South America +2024-09-27,45761,4306,"[""Phone"", ""Keyboard""]",4278.44,{},53590,1,South America +2024-12-04,45762,3970,"[""Headphones""]",2315.4,{},250243,0,North America +2024-06-02,45763,2591,"[""Headphones""]",2022.59,{},177126,1,South America +2023-02-06,45764,5777,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2704.26,"{"""": ""7%""}",124368,0,Asia +2023-05-13,45765,2745,"[""Headphones"", ""Charger"", ""Monitor""]",2914.63,{},41592,0,North America +2024-04-09,45766,1973,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",543.32,{},64139,1,Africa +2024-09-28,45767,4918,"[""Tablet"", ""Laptop""]",3170.81,"{""seasonal"": ""6%""}",156545,1,Africa +2024-12-17,45768,5039,"[""Monitor"", ""Laptop""]",2013.24,{},296471,1,Asia +2023-04-10,45769,2116,"[""Wireless Mouse"", ""Monitor""]",3574.35,{},189534,0,Asia +2024-01-30,45770,493,"[""Tablet""]",3306.52,"{""seasonal"": ""9%""}",8293,1,Europe +2024-02-16,45771,2660,"[""Headphones"", ""Phone""]",4421.81,{},172402,0,Africa +2024-02-14,45772,4097,"[""Keyboard"", ""Phone""]",3078.97,"{"""": ""10%""}",251361,1,Asia +2023-05-06,45773,6422,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2142.6,{},283975,1,South America +2023-04-25,45774,2590,"[""Tablet""]",846.73,"{"""": ""28%""}",89965,0,North America +2023-09-20,45775,3749,"[""Charger""]",2966.62,{},299659,1,Africa +2023-11-28,45776,8689,"[""Phone"", ""Wireless Mouse""]",3609.92,{},297229,0,Europe +2023-04-10,45777,7659,"[""Headphones""]",318.71,"{"""": ""27%""}",197788,1,North America +2023-04-22,45778,4494,"[""Monitor"", ""Charger""]",3663.46,{},106682,0,Asia +2024-09-01,45779,5179,"[""Headphones"", ""Laptop""]",3391.31,"{"""": ""23%""}",108956,0,North America +2023-05-17,45780,5915,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2073.9,"{""seasonal"": ""19%""}",194150,0,South America +2023-04-28,45781,8246,"[""Phone""]",837.88,{},270128,1,North America +2023-10-11,45782,8801,"[""Wireless Mouse"", ""Charger""]",1895.73,{},38445,0,Asia +2023-09-11,45783,7388,"[""Laptop"", ""Monitor"", ""Charger""]",3966.39,"{""promo"": ""14%""}",73622,1,Europe +2023-04-20,45784,5251,"[""Monitor"", ""Laptop""]",3729.72,{},159676,1,Europe +2023-11-01,45785,9917,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3166.42,"{"""": ""7%""}",269092,0,Europe +2023-04-17,45786,5779,"[""Monitor"", ""Keyboard"", ""Tablet""]",4442.62,"{""loyalty"": ""15%""}",23514,1,Europe +2023-12-10,45787,8807,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4378.21,{},79398,0,North America +2023-07-15,45788,8052,"[""Phone""]",1149.88,{},60533,0,Europe +2024-07-14,45789,2547,"[""Phone"", ""Charger"", ""Monitor""]",303.44,{},72365,0,Asia +2024-08-31,45790,1107,"[""Charger""]",1833.39,{},252423,1,North America +2023-02-24,45791,5710,"[""Tablet""]",1428.8,{},72743,0,Europe +2023-06-22,45792,4181,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2317.1,"{""seasonal"": ""6%""}",153580,0,South America +2024-10-17,45793,7727,"[""Wireless Mouse""]",270.86,{},275061,0,South America +2024-07-24,45794,1693,"[""Laptop"", ""Wireless Mouse""]",1006.99,"{"""": ""7%""}",91433,0,Africa +2023-06-08,45795,2458,"[""Laptop"", ""Monitor"", ""Charger""]",1264.23,"{""promo"": ""18%""}",299857,0,Europe +2024-07-18,45796,6969,"[""Charger"", ""Headphones"", ""Laptop""]",1607.19,"{""loyalty"": ""16%""}",181974,1,South America +2024-08-08,45797,5263,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3931.96,{},16607,0,Europe +2024-11-13,45798,3260,"[""Charger""]",3158.0,{},74869,0,Asia +2023-04-17,45799,9578,"[""Laptop""]",3573.87,"{""promo"": ""26%""}",297656,0,South America +2023-09-26,45800,6395,"[""Monitor"", ""Tablet"", ""Charger""]",4617.25,"{"""": ""13%""}",50219,0,Africa +2024-05-16,45801,1368,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3226.83,{},19653,0,Africa +2024-04-08,45802,5946,"[""Charger"", ""Tablet"", ""Headphones""]",3421.53,"{""promo"": ""9%""}",64663,1,South America +2023-02-06,45803,3814,"[""Phone""]",4474.19,{},139188,0,Africa +2023-08-09,45804,1084,"[""Headphones""]",3767.08,"{""seasonal"": ""9%""}",144326,1,Asia +2023-05-21,45805,331,"[""Keyboard"", ""Tablet"", ""Laptop""]",2964.32,"{""seasonal"": ""8%""}",242026,1,North America +2024-12-22,45806,5832,"[""Tablet""]",2860.57,{},94201,1,Europe +2024-06-01,45807,1675,"[""Monitor"", ""Charger"", ""Tablet""]",3513.55,"{""promo"": ""7%""}",252677,0,North America +2023-06-07,45808,9789,"[""Charger"", ""Wireless Mouse""]",342.74,"{""promo"": ""17%""}",265100,0,Asia +2024-05-07,45809,825,"[""Monitor""]",3112.15,{},120539,0,Asia +2024-06-29,45810,1663,"[""Monitor"", ""Laptop"", ""Headphones""]",2749.44,"{""loyalty"": ""5%""}",223971,0,South America +2024-10-18,45811,7989,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4111.1,{},52912,0,South America +2024-02-16,45812,1302,"[""Keyboard""]",2402.11,"{"""": ""30%""}",56814,0,South America +2024-01-25,45813,6342,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2630.63,"{""loyalty"": ""19%""}",226140,1,Asia +2023-01-22,45814,9081,"[""Monitor"", ""Headphones"", ""Laptop""]",1167.67,"{"""": ""13%""}",164869,1,Europe +2023-05-17,45815,1639,"[""Laptop"", ""Wireless Mouse""]",4145.91,"{""loyalty"": ""21%""}",118157,1,North America +2023-11-11,45816,2203,"[""Tablet"", ""Headphones"", ""Monitor""]",3606.64,{},177428,1,Africa +2023-09-21,45817,6828,"[""Headphones""]",4682.97,{},86715,0,Africa +2024-04-22,45818,1768,"[""Monitor"", ""Charger""]",1331.88,"{"""": ""21%""}",224669,1,Asia +2024-12-26,45819,5811,"[""Phone"", ""Laptop"", ""Keyboard""]",1930.47,{},293224,0,South America +2023-12-08,45820,5147,"[""Headphones"", ""Keyboard""]",292.87,"{"""": ""19%""}",57791,0,Asia +2023-08-24,45821,7398,"[""Laptop"", ""Keyboard"", ""Charger""]",4042.53,{},2009,0,Asia +2023-12-06,45822,5338,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3931.76,"{""promo"": ""5%""}",26317,1,North America +2023-09-07,45823,1739,"[""Headphones"", ""Keyboard"", ""Monitor""]",4368.78,"{"""": ""11%""}",29779,0,Africa +2023-08-07,45824,7825,"[""Headphones"", ""Charger"", ""Monitor""]",3794.82,"{""seasonal"": ""8%""}",288127,1,North America +2024-02-03,45825,1645,"[""Headphones""]",953.04,"{""promo"": ""19%""}",143267,0,Europe +2024-10-30,45826,4280,"[""Tablet"", ""Charger"", ""Keyboard""]",4547.26,"{""seasonal"": ""5%""}",261533,0,Asia +2024-07-04,45827,4882,"[""Wireless Mouse"", ""Tablet""]",771.51,{},9944,0,South America +2024-03-19,45828,2887,"[""Keyboard"", ""Wireless Mouse""]",319.83,{},139463,0,South America +2024-11-22,45829,2863,"[""Charger"", ""Tablet"", ""Keyboard""]",1016.05,{},199114,1,Africa +2023-08-31,45830,5365,"[""Phone"", ""Charger""]",4124.81,"{""loyalty"": ""26%""}",153518,0,Asia +2023-05-10,45831,1124,"[""Monitor"", ""Phone""]",2721.6,"{""seasonal"": ""21%""}",138216,1,Asia +2024-12-12,45832,3395,"[""Wireless Mouse"", ""Monitor""]",2196.39,{},24841,1,South America +2024-11-17,45833,2343,"[""Phone"", ""Monitor""]",2304.01,{},116336,1,North America +2024-03-21,45834,6824,"[""Tablet""]",2191.78,{},192153,0,North America +2023-11-07,45835,3330,"[""Wireless Mouse"", ""Charger""]",1770.26,"{""promo"": ""25%""}",281455,0,South America +2024-10-12,45836,5576,"[""Keyboard"", ""Tablet"", ""Monitor""]",2337.19,{},200290,0,Africa +2023-07-11,45837,2758,"[""Laptop""]",961.19,"{""loyalty"": ""25%""}",221868,1,Europe +2023-12-29,45838,4555,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3766.92,"{""seasonal"": ""26%""}",246320,1,Asia +2023-12-13,45839,6692,"[""Laptop"", ""Headphones"", ""Keyboard""]",4300.61,{},96797,0,South America +2024-04-10,45840,5052,"[""Keyboard""]",2891.02,"{""promo"": ""15%""}",200406,1,Asia +2024-10-21,45841,1067,"[""Charger"", ""Monitor""]",4978.69,{},152660,1,South America +2024-02-17,45842,8262,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3522.84,{},148819,1,North America +2024-08-17,45843,497,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3629.79,{},59527,1,South America +2024-04-04,45844,4892,"[""Phone"", ""Tablet"", ""Charger""]",4778.39,{},153279,1,Europe +2024-10-20,45845,1755,"[""Wireless Mouse""]",4893.79,"{""loyalty"": ""30%""}",167116,1,Europe +2023-12-21,45846,7204,"[""Wireless Mouse""]",2388.05,"{""promo"": ""22%""}",162116,1,Europe +2023-08-27,45847,5512,"[""Keyboard"", ""Tablet""]",3774.64,{},211025,1,North America +2023-01-19,45848,6135,"[""Tablet"", ""Charger"", ""Headphones""]",3344.33,"{"""": ""21%""}",56865,1,South America +2024-07-08,45849,6192,"[""Phone"", ""Tablet""]",1023.88,"{""seasonal"": ""17%""}",191758,1,South America +2024-06-25,45850,1593,"[""Charger""]",175.62,{},279075,1,Africa +2024-12-12,45851,5455,"[""Tablet"", ""Monitor""]",466.23,{},147950,0,South America +2023-07-17,45852,8164,"[""Monitor"", ""Tablet"", ""Charger""]",1873.85,{},94212,0,Africa +2023-08-10,45853,4091,"[""Keyboard"", ""Laptop""]",3858.8,{},236733,1,Asia +2024-08-16,45854,966,"[""Keyboard""]",3982.29,{},239640,1,North America +2024-01-22,45855,4840,"[""Wireless Mouse"", ""Headphones""]",168.89,{},93956,0,Africa +2024-05-14,45856,3749,"[""Charger""]",4739.41,"{""seasonal"": ""22%""}",34969,0,Asia +2023-07-07,45857,9485,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4279.45,{},196762,1,Africa +2024-03-04,45858,6186,"[""Tablet"", ""Phone""]",4221.19,{},209297,1,Europe +2024-02-14,45859,7256,"[""Wireless Mouse"", ""Laptop""]",59.59,{},151723,1,South America +2023-03-05,45860,8614,"[""Charger""]",301.78,{},208336,1,North America +2024-03-30,45861,8352,"[""Laptop"", ""Phone""]",339.12,{},166176,0,Asia +2024-09-25,45862,2474,"[""Keyboard""]",1799.94,"{""promo"": ""29%""}",271659,1,Europe +2024-02-11,45863,3424,"[""Keyboard"", ""Tablet"", ""Monitor""]",2143.47,"{""seasonal"": ""5%""}",86833,1,Africa +2024-09-27,45864,4664,"[""Headphones"", ""Monitor""]",4863.32,"{"""": ""7%""}",275574,1,Africa +2023-10-23,45865,5727,"[""Phone"", ""Tablet""]",3501.51,"{"""": ""25%""}",41909,1,South America +2023-05-10,45866,5578,"[""Headphones"", ""Phone""]",972.9,"{"""": ""24%""}",284508,1,Asia +2024-11-23,45867,1260,"[""Charger""]",3492.93,{},19536,1,Asia +2023-04-07,45868,4756,"[""Wireless Mouse""]",479.81,"{""promo"": ""18%""}",94055,1,South America +2023-08-04,45869,4829,"[""Monitor""]",4574.97,{},207592,0,Africa +2023-04-13,45870,5576,"[""Charger""]",1057.05,"{"""": ""27%""}",118643,0,Europe +2024-07-16,45871,4309,"[""Headphones"", ""Monitor""]",3030.68,"{""loyalty"": ""11%""}",79159,1,South America +2024-07-18,45872,7460,"[""Monitor"", ""Tablet""]",4130.78,{},280534,1,Africa +2023-08-17,45873,8564,"[""Keyboard"", ""Tablet"", ""Monitor""]",3114.18,"{"""": ""9%""}",280288,0,North America +2023-07-27,45874,1203,"[""Charger""]",2938.6,{},176894,0,Africa +2024-10-22,45875,9436,"[""Charger"", ""Keyboard""]",4970.22,{},199748,0,North America +2024-12-16,45876,8468,"[""Tablet""]",71.76,{},64441,0,Europe +2024-07-30,45877,9955,"[""Charger""]",2889.81,"{""seasonal"": ""9%""}",277959,1,South America +2023-08-09,45878,3309,"[""Phone"", ""Headphones"", ""Laptop""]",3205.07,{},75798,1,Africa +2023-10-01,45879,4653,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2745.51,"{"""": ""27%""}",248418,0,Europe +2024-05-02,45880,5101,"[""Charger"", ""Phone""]",2691.13,{},222725,1,South America +2023-01-12,45881,9471,"[""Monitor"", ""Phone""]",1794.97,{},188904,0,Asia +2024-12-02,45882,9882,"[""Wireless Mouse"", ""Headphones""]",260.66,"{""promo"": ""19%""}",68850,0,North America +2023-03-31,45883,4898,"[""Phone"", ""Monitor"", ""Keyboard""]",4597.53,"{""promo"": ""18%""}",264768,1,Africa +2023-07-31,45884,1457,"[""Monitor""]",3881.48,{},209920,1,Asia +2024-11-12,45885,78,"[""Laptop"", ""Phone""]",4134.47,{},14575,1,Africa +2023-05-15,45886,793,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4557.89,{},119759,0,Africa +2023-09-29,45887,2068,"[""Laptop"", ""Keyboard"", ""Phone""]",798.25,{},121453,0,Asia +2024-11-05,45888,8828,"[""Charger"", ""Laptop"", ""Tablet""]",3879.66,"{"""": ""28%""}",156896,1,North America +2023-03-04,45889,533,"[""Wireless Mouse""]",2763.65,{},96791,1,North America +2024-10-17,45890,2376,"[""Charger"", ""Headphones"", ""Tablet""]",1020.51,{},290837,1,South America +2023-12-23,45891,9214,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2127.43,{},121040,0,Asia +2023-06-17,45892,2604,"[""Laptop""]",4037.02,"{""loyalty"": ""26%""}",141502,1,Africa +2024-10-10,45893,720,"[""Charger"", ""Phone"", ""Headphones""]",3884.72,{},122821,0,Europe +2024-09-04,45894,5893,"[""Keyboard"", ""Phone""]",2826.1,{},50999,1,Europe +2023-05-03,45895,1263,"[""Phone""]",425.47,"{"""": ""19%""}",282987,1,Africa +2023-10-24,45896,2152,"[""Phone"", ""Wireless Mouse""]",803.35,"{""promo"": ""28%""}",83220,1,Asia +2024-11-16,45897,4601,"[""Tablet""]",4541.26,"{""promo"": ""22%""}",134937,0,Europe +2023-04-30,45898,1553,"[""Headphones"", ""Monitor""]",2951.25,{},197549,0,Africa +2024-02-20,45899,6211,"[""Keyboard""]",2490.5,"{"""": ""17%""}",285303,1,Asia +2023-12-09,45900,5168,"[""Monitor""]",4779.21,{},186415,1,North America +2024-09-03,45901,3467,"[""Monitor"", ""Wireless Mouse""]",2858.43,"{""loyalty"": ""21%""}",65593,1,North America +2023-07-09,45902,241,"[""Monitor""]",3638.86,"{"""": ""30%""}",249095,0,North America +2024-03-18,45903,6665,"[""Headphones""]",162.11,"{"""": ""6%""}",64708,1,Asia +2024-10-06,45904,4908,"[""Phone"", ""Headphones""]",835.87,{},263983,0,Asia +2023-04-30,45905,5944,"[""Headphones"", ""Phone"", ""Monitor""]",2537.91,{},48868,1,Africa +2024-09-05,45906,2589,"[""Charger"", ""Phone""]",3592.67,"{""seasonal"": ""23%""}",21731,1,South America +2024-08-23,45907,740,"[""Keyboard""]",1211.23,{},279817,1,Africa +2024-08-30,45908,3288,"[""Keyboard""]",4153.48,"{""loyalty"": ""19%""}",269824,1,North America +2024-10-25,45909,8612,"[""Laptop""]",3892.93,"{""loyalty"": ""30%""}",184656,1,Europe +2023-04-04,45910,7457,"[""Tablet"", ""Phone"", ""Headphones""]",4780.14,"{""loyalty"": ""18%""}",165335,0,Europe +2023-11-13,45911,6465,"[""Charger""]",4471.09,"{""seasonal"": ""14%""}",274719,1,Asia +2023-03-11,45912,6955,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1531.74,{},115779,1,Asia +2023-05-26,45913,657,"[""Laptop"", ""Tablet""]",4978.69,"{""seasonal"": ""10%""}",299832,1,Asia +2024-10-13,45914,1630,"[""Laptop"", ""Tablet"", ""Headphones""]",774.45,{},83181,0,North America +2023-04-27,45915,6073,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3371.21,{},166234,0,Europe +2024-04-30,45916,4172,"[""Wireless Mouse"", ""Keyboard""]",1047.21,{},21439,0,Africa +2023-01-13,45917,6720,"[""Charger"", ""Headphones""]",2224.34,{},170093,1,Africa +2023-03-23,45918,2178,"[""Charger""]",913.04,{},287654,1,Asia +2023-04-23,45919,405,"[""Wireless Mouse"", ""Phone""]",2841.74,"{""loyalty"": ""21%""}",71603,1,Europe +2024-12-02,45920,4518,"[""Keyboard"", ""Headphones""]",1609.35,"{"""": ""12%""}",170989,1,North America +2023-07-25,45921,3362,"[""Phone"", ""Monitor"", ""Headphones""]",617.99,"{""loyalty"": ""28%""}",169418,0,Asia +2023-03-02,45922,7182,"[""Tablet""]",751.4,"{""loyalty"": ""26%""}",47193,1,North America +2024-05-06,45923,662,"[""Wireless Mouse"", ""Keyboard""]",2202.4,{},275200,0,North America +2024-12-30,45924,8275,"[""Keyboard""]",1715.07,"{""seasonal"": ""30%""}",89685,0,Asia +2023-09-14,45925,7348,"[""Charger""]",1437.01,{},49190,1,South America +2024-06-25,45926,1551,"[""Tablet"", ""Headphones"", ""Keyboard""]",4532.87,{},183243,0,North America +2024-08-11,45927,9756,"[""Phone""]",3298.12,{},104725,0,North America +2024-07-03,45928,2117,"[""Wireless Mouse""]",315.92,"{""loyalty"": ""24%""}",56911,0,Africa +2024-09-28,45929,208,"[""Keyboard"", ""Monitor""]",2315.55,{},37679,1,North America +2023-04-27,45930,844,"[""Headphones"", ""Keyboard"", ""Tablet""]",978.86,{},267277,0,Europe +2024-03-13,45931,2429,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",173.67,{},161195,0,Asia +2023-09-09,45932,2510,"[""Tablet""]",293.8,{},228704,0,North America +2024-11-28,45933,7473,"[""Keyboard""]",4829.33,"{""seasonal"": ""30%""}",153401,0,Africa +2023-05-23,45934,1319,"[""Laptop"", ""Keyboard"", ""Phone""]",4274.6,"{""promo"": ""30%""}",181600,0,North America +2024-07-27,45935,9345,"[""Monitor"", ""Charger"", ""Headphones""]",3180.64,"{""loyalty"": ""7%""}",43909,0,Europe +2024-08-17,45936,6621,"[""Charger"", ""Wireless Mouse""]",957.65,{},29971,1,Asia +2024-08-03,45937,6454,"[""Laptop"", ""Keyboard"", ""Tablet""]",4024.51,"{"""": ""19%""}",35993,0,Asia +2023-02-13,45938,187,"[""Monitor"", ""Charger"", ""Laptop""]",1173.99,{},64009,0,Europe +2023-07-01,45939,7447,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2375.91,{},87185,0,North America +2024-10-09,45940,2151,"[""Wireless Mouse"", ""Tablet""]",3177.67,{},163130,0,Africa +2024-11-03,45941,1289,"[""Headphones""]",2749.24,{},58425,0,Europe +2023-07-15,45942,5391,"[""Laptop"", ""Headphones"", ""Keyboard""]",357.99,"{""seasonal"": ""20%""}",104236,1,Europe +2024-05-09,45943,9683,"[""Charger""]",1913.52,"{""promo"": ""29%""}",248195,1,Asia +2024-09-02,45944,9534,"[""Tablet""]",4457.57,"{""loyalty"": ""21%""}",98858,1,North America +2023-01-10,45945,4937,"[""Monitor""]",2439.33,"{""seasonal"": ""10%""}",47900,0,Europe +2024-01-21,45946,9222,"[""Laptop""]",2244.48,"{"""": ""9%""}",27266,1,Europe +2024-10-31,45947,1592,"[""Laptop""]",581.85,"{""seasonal"": ""7%""}",6155,1,Europe +2024-05-27,45948,8921,"[""Charger"", ""Phone""]",345.79,"{""seasonal"": ""16%""}",135982,0,Africa +2024-07-08,45949,7019,"[""Monitor"", ""Tablet""]",991.35,"{""seasonal"": ""25%""}",272317,1,South America +2023-03-31,45950,7673,"[""Phone"", ""Wireless Mouse""]",2857.42,"{""loyalty"": ""11%""}",126149,0,Europe +2024-05-16,45951,6328,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3793.44,{},186755,1,North America +2023-06-18,45952,4643,"[""Phone""]",2320.33,"{""promo"": ""25%""}",37762,1,North America +2023-12-01,45953,6362,"[""Charger""]",2554.69,"{""seasonal"": ""8%""}",281069,0,Asia +2023-12-10,45954,3937,"[""Tablet"", ""Charger""]",3008.0,{},42695,0,Asia +2023-12-30,45955,7383,"[""Charger"", ""Headphones"", ""Keyboard""]",1727.93,{},224861,1,Asia +2023-07-21,45956,9255,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3582.56,"{""seasonal"": ""6%""}",138134,1,Africa +2023-01-03,45957,9369,"[""Charger"", ""Laptop"", ""Tablet""]",1623.39,"{""loyalty"": ""21%""}",114820,1,Asia +2024-08-18,45958,2479,"[""Tablet"", ""Keyboard""]",4205.73,"{""promo"": ""29%""}",203838,0,North America +2024-06-21,45959,5869,"[""Monitor"", ""Phone"", ""Tablet""]",735.99,{},140559,1,North America +2023-03-27,45960,4671,"[""Monitor"", ""Phone"", ""Headphones""]",1107.39,{},227278,0,North America +2023-10-29,45961,4954,"[""Keyboard"", ""Laptop"", ""Headphones""]",1145.95,{},70592,1,Africa +2024-01-02,45962,415,"[""Laptop"", ""Headphones"", ""Charger""]",3538.2,{},208993,1,Europe +2024-03-15,45963,3664,"[""Monitor"", ""Tablet""]",635.59,"{""seasonal"": ""12%""}",185744,0,North America +2024-05-22,45964,1958,"[""Headphones"", ""Keyboard""]",551.98,{},255436,0,Asia +2023-09-15,45965,1865,"[""Laptop"", ""Monitor""]",3071.72,"{""seasonal"": ""9%""}",153127,1,Europe +2024-05-07,45966,7095,"[""Tablet""]",4916.62,"{"""": ""5%""}",245103,0,North America +2024-01-01,45967,7722,"[""Laptop""]",4780.38,"{""seasonal"": ""7%""}",190854,0,South America +2024-12-29,45968,5658,"[""Monitor""]",1667.05,{},203556,0,Africa +2023-02-16,45969,1276,"[""Monitor"", ""Laptop""]",4108.91,"{"""": ""26%""}",158188,1,Asia +2023-08-17,45970,8244,"[""Keyboard"", ""Tablet""]",3068.04,"{""loyalty"": ""6%""}",66112,1,South America +2024-05-25,45971,3996,"[""Monitor"", ""Laptop"", ""Phone""]",388.53,{},213065,0,North America +2024-12-17,45972,7596,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",185.62,"{""loyalty"": ""25%""}",159076,1,North America +2024-10-08,45973,287,"[""Laptop"", ""Keyboard""]",56.09,{},185088,1,Europe +2023-02-26,45974,7007,"[""Wireless Mouse""]",3587.82,{},66660,1,South America +2023-06-30,45975,7682,"[""Headphones""]",3138.06,{},290483,0,Africa +2024-02-14,45976,7764,"[""Headphones"", ""Tablet"", ""Monitor""]",862.75,{},141532,0,Asia +2024-11-29,45977,1046,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2908.89,{},60419,1,Europe +2024-07-10,45978,3421,"[""Phone"", ""Charger""]",264.96,{},176491,0,North America +2023-04-22,45979,9429,"[""Monitor"", ""Charger""]",4767.81,"{""seasonal"": ""16%""}",195786,0,North America +2023-07-24,45980,4123,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1558.83,"{""seasonal"": ""5%""}",128776,0,Asia +2023-07-08,45981,5138,"[""Monitor"", ""Phone""]",345.85,{},102303,0,North America +2024-12-04,45982,3096,"[""Monitor"", ""Charger""]",4907.32,{},73416,1,North America +2023-03-02,45983,70,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2747.36,"{"""": ""25%""}",14982,0,Africa +2023-05-29,45984,475,"[""Laptop"", ""Monitor"", ""Tablet""]",3376.91,"{""seasonal"": ""8%""}",73347,0,Europe +2023-04-07,45985,4540,"[""Monitor"", ""Keyboard"", ""Tablet""]",4346.34,"{""seasonal"": ""7%""}",161900,0,South America +2023-06-03,45986,2975,"[""Laptop"", ""Charger""]",2481.7,{},207170,1,Europe +2024-12-24,45987,1080,"[""Laptop"", ""Keyboard""]",4742.28,{},140227,0,South America +2023-06-04,45988,7615,"[""Wireless Mouse""]",924.23,"{""loyalty"": ""9%""}",40759,1,North America +2024-03-12,45989,5092,"[""Monitor"", ""Headphones""]",251.67,"{"""": ""12%""}",35488,1,South America +2023-12-30,45990,1622,"[""Monitor"", ""Tablet""]",1744.41,"{"""": ""26%""}",200111,0,Europe +2023-11-27,45991,4550,"[""Keyboard""]",4083.75,"{""seasonal"": ""13%""}",297583,1,Africa +2023-06-24,45992,1176,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4866.87,"{""loyalty"": ""27%""}",103776,1,Africa +2023-01-03,45993,4113,"[""Charger"", ""Headphones""]",2492.65,"{"""": ""23%""}",264206,1,South America +2023-08-22,45994,9699,"[""Wireless Mouse""]",3432.18,"{""promo"": ""5%""}",115909,0,Asia +2024-03-22,45995,8227,"[""Laptop""]",4245.79,{},245777,0,North America +2024-05-13,45996,1019,"[""Headphones"", ""Tablet""]",4809.0,{},184166,1,Asia +2024-08-28,45997,6839,"[""Tablet"", ""Monitor""]",1660.37,"{""promo"": ""11%""}",164653,1,Europe +2023-06-10,45998,7207,"[""Phone"", ""Charger""]",2035.42,"{"""": ""21%""}",172104,0,Europe +2024-05-26,45999,8742,"[""Keyboard"", ""Wireless Mouse""]",2239.61,"{""loyalty"": ""26%""}",173706,0,South America +2023-02-20,46000,4941,"[""Keyboard"", ""Monitor""]",1917.52,{},89135,0,Africa +2024-03-22,46001,4488,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",365.71,"{""loyalty"": ""25%""}",156911,0,Asia +2023-01-21,46002,7662,"[""Headphones"", ""Laptop""]",4907.43,{},194676,1,Asia +2023-11-14,46003,6735,"[""Monitor"", ""Tablet""]",1066.59,"{""loyalty"": ""28%""}",66793,1,Asia +2024-05-08,46004,6420,"[""Charger"", ""Laptop""]",4549.21,"{"""": ""28%""}",274055,1,North America +2024-03-06,46005,3562,"[""Laptop""]",4278.06,"{""loyalty"": ""18%""}",130026,1,Africa +2023-12-18,46006,623,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1494.88,"{"""": ""20%""}",164908,1,North America +2023-04-07,46007,1233,"[""Laptop"", ""Wireless Mouse""]",3926.79,"{""promo"": ""20%""}",240171,0,South America +2023-03-03,46008,822,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",189.3,{},35447,0,Europe +2024-04-21,46009,9628,"[""Tablet"", ""Keyboard"", ""Headphones""]",3095.73,{},99220,1,North America +2024-10-27,46010,2763,"[""Tablet"", ""Keyboard"", ""Charger""]",2265.24,"{""promo"": ""11%""}",262604,1,Asia +2023-07-24,46011,6478,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3162.1,{},68398,1,North America +2023-12-17,46012,2182,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1238.3,{},222598,0,Europe +2023-06-05,46013,4126,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4347.19,"{""seasonal"": ""19%""}",21859,1,Europe +2023-10-08,46014,7144,"[""Wireless Mouse"", ""Phone""]",4311.26,{},248186,1,Africa +2023-10-05,46015,9788,"[""Wireless Mouse""]",3402.13,"{"""": ""7%""}",167560,1,Europe +2024-12-27,46016,7583,"[""Phone"", ""Charger""]",1179.45,{},242082,0,Europe +2023-01-19,46017,6766,"[""Monitor""]",4219.9,"{""promo"": ""6%""}",233510,0,Asia +2024-02-02,46018,6477,"[""Monitor"", ""Headphones"", ""Charger""]",932.79,"{""promo"": ""20%""}",99812,0,North America +2024-10-16,46019,2085,"[""Charger"", ""Tablet""]",1733.84,{},237573,0,Africa +2023-06-10,46020,6587,"[""Headphones""]",2907.55,"{"""": ""15%""}",208829,0,South America +2023-06-10,46021,9339,"[""Tablet"", ""Laptop""]",1921.84,{},92784,1,Africa +2023-05-09,46022,5401,"[""Charger""]",2994.53,"{""seasonal"": ""20%""}",218917,0,Asia +2023-10-06,46023,8740,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4880.97,"{""promo"": ""13%""}",187837,1,Europe +2023-02-23,46024,6998,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4690.24,{},67046,0,Africa +2024-06-27,46025,1750,"[""Charger""]",779.12,{},246284,1,Africa +2024-12-24,46026,916,"[""Phone"", ""Tablet""]",332.34,"{"""": ""28%""}",183897,1,South America +2023-03-23,46027,1840,"[""Phone"", ""Headphones"", ""Charger""]",2918.69,{},83173,1,Africa +2023-10-01,46028,8202,"[""Charger"", ""Wireless Mouse""]",3475.54,"{""promo"": ""15%""}",185367,1,Asia +2024-12-25,46029,5254,"[""Keyboard"", ""Charger""]",2733.57,{},200324,0,Asia +2023-11-16,46030,631,"[""Headphones"", ""Keyboard""]",2852.62,{},33259,0,Africa +2023-11-20,46031,6726,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2906.5,"{"""": ""26%""}",130481,0,Europe +2023-11-03,46032,2984,"[""Monitor"", ""Phone""]",2225.66,"{"""": ""18%""}",55662,0,Asia +2023-02-14,46033,979,"[""Wireless Mouse""]",4868.88,"{""loyalty"": ""28%""}",226288,0,South America +2024-03-06,46034,6270,"[""Keyboard"", ""Wireless Mouse""]",4727.89,"{"""": ""9%""}",194412,0,Africa +2024-08-22,46035,7418,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2047.42,"{""seasonal"": ""27%""}",259685,0,South America +2024-08-24,46036,3231,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4868.84,{},214708,0,Europe +2024-08-10,46037,9894,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1586.58,"{""loyalty"": ""22%""}",273442,0,South America +2023-12-03,46038,7072,"[""Monitor"", ""Laptop""]",3072.49,{},65118,0,Asia +2023-06-25,46039,4208,"[""Monitor"", ""Keyboard"", ""Tablet""]",996.45,{},71605,1,North America +2024-01-04,46040,8711,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",447.58,{},143905,0,South America +2024-10-17,46041,4985,"[""Monitor"", ""Phone""]",271.35,"{""promo"": ""19%""}",153353,0,Europe +2024-04-18,46042,5471,"[""Wireless Mouse"", ""Laptop""]",2409.31,{},202591,0,Africa +2023-12-26,46043,9569,"[""Laptop"", ""Keyboard"", ""Monitor""]",2660.21,{},179435,0,Africa +2024-11-21,46044,3406,"[""Wireless Mouse"", ""Phone"", ""Charger""]",854.31,"{""seasonal"": ""25%""}",204374,1,Asia +2023-06-15,46045,6832,"[""Laptop""]",2116.74,"{"""": ""14%""}",123302,0,Asia +2023-07-29,46046,3842,"[""Charger"", ""Keyboard""]",909.37,"{""promo"": ""14%""}",150696,0,South America +2024-07-01,46047,6198,"[""Laptop"", ""Keyboard"", ""Phone""]",2845.7,"{""promo"": ""23%""}",137183,0,Africa +2024-04-24,46048,2486,"[""Tablet"", ""Laptop""]",3621.1,{},215152,1,Africa +2024-05-03,46049,4941,"[""Laptop""]",1458.43,"{""promo"": ""6%""}",294468,1,Africa +2024-10-09,46050,1953,"[""Keyboard"", ""Tablet""]",3220.96,"{""promo"": ""13%""}",207863,1,North America +2024-01-12,46051,9299,"[""Phone""]",4496.21,"{""seasonal"": ""30%""}",20782,1,North America +2024-11-14,46052,8288,"[""Headphones"", ""Laptop""]",2063.33,{},144715,1,Europe +2023-05-20,46053,6168,"[""Charger"", ""Headphones"", ""Tablet""]",3299.26,"{""seasonal"": ""13%""}",136326,0,South America +2023-07-09,46054,832,"[""Monitor""]",4512.22,"{""promo"": ""24%""}",113671,1,South America +2023-11-11,46055,9155,"[""Keyboard""]",1278.42,{},128237,1,South America +2024-01-08,46056,4637,"[""Wireless Mouse"", ""Charger""]",799.99,"{""seasonal"": ""10%""}",210234,0,South America +2023-06-28,46057,1398,"[""Keyboard"", ""Phone""]",4443.44,{},102465,0,Africa +2024-12-23,46058,861,"[""Phone"", ""Tablet""]",1285.36,"{""promo"": ""11%""}",167172,1,Africa +2023-12-15,46059,305,"[""Charger""]",592.01,{},294827,1,Europe +2023-03-12,46060,6333,"[""Keyboard"", ""Wireless Mouse""]",1212.8,"{"""": ""19%""}",145154,1,Asia +2024-11-03,46061,3885,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2326.79,"{"""": ""21%""}",287043,1,South America +2023-07-30,46062,5854,"[""Headphones""]",2425.8,"{""seasonal"": ""23%""}",54637,0,North America +2023-07-16,46063,8383,"[""Wireless Mouse""]",1967.59,"{""loyalty"": ""7%""}",99300,1,Africa +2023-08-26,46064,7395,"[""Monitor""]",1183.65,"{"""": ""17%""}",236636,0,North America +2024-01-29,46065,7831,"[""Laptop"", ""Wireless Mouse""]",3742.94,{},185789,1,Europe +2024-10-25,46066,6433,"[""Keyboard"", ""Phone"", ""Monitor""]",2808.03,"{""promo"": ""14%""}",204793,0,North America +2024-09-23,46067,7287,"[""Phone"", ""Charger"", ""Monitor""]",2344.16,{},140956,1,Asia +2024-04-16,46068,4679,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4902.71,{},135791,0,North America +2024-04-22,46069,8421,"[""Headphones"", ""Keyboard"", ""Charger""]",4505.05,"{""loyalty"": ""22%""}",53760,0,Asia +2024-03-24,46070,1941,"[""Keyboard"", ""Charger""]",520.3,"{""promo"": ""7%""}",94476,1,Asia +2023-06-28,46071,6787,"[""Laptop""]",3900.85,{},127774,0,Europe +2024-12-27,46072,7539,"[""Laptop"", ""Charger""]",3226.23,{},31333,0,North America +2024-07-28,46073,3226,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1886.9,"{""loyalty"": ""26%""}",96139,0,South America +2023-10-27,46074,5943,"[""Monitor""]",3116.81,"{"""": ""13%""}",144194,1,North America +2024-12-25,46075,9546,"[""Wireless Mouse""]",1606.72,{},175803,0,Europe +2024-10-22,46076,4147,"[""Wireless Mouse"", ""Headphones""]",4553.38,"{""loyalty"": ""28%""}",193911,1,Europe +2023-09-05,46077,1391,"[""Phone"", ""Keyboard"", ""Tablet""]",2250.69,{},65234,0,South America +2024-11-28,46078,4829,"[""Charger"", ""Monitor"", ""Tablet""]",2090.42,"{""seasonal"": ""13%""}",7679,0,South America +2024-04-08,46079,2531,"[""Headphones""]",1268.98,{},61968,1,Europe +2024-10-17,46080,6228,"[""Laptop"", ""Headphones""]",2674.08,{},287840,0,North America +2024-06-08,46081,7748,"[""Charger"", ""Tablet"", ""Headphones""]",4942.81,"{""loyalty"": ""23%""}",179343,0,Africa +2023-10-07,46082,6646,"[""Laptop"", ""Phone"", ""Charger""]",447.85,{},272360,1,South America +2024-08-08,46083,2084,"[""Phone""]",3490.42,"{""seasonal"": ""19%""}",36116,1,Asia +2024-06-10,46084,6268,"[""Laptop"", ""Tablet"", ""Headphones""]",2221.56,{},205132,1,Europe +2024-07-08,46085,5291,"[""Headphones"", ""Monitor"", ""Keyboard""]",4927.39,{},155952,1,Europe +2023-09-22,46086,1375,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",498.03,{},88363,1,Africa +2024-01-31,46087,2133,"[""Wireless Mouse""]",2526.46,"{""promo"": ""5%""}",17353,1,South America +2023-05-09,46088,3237,"[""Wireless Mouse"", ""Tablet""]",4635.51,{},160099,1,Europe +2024-06-26,46089,3403,"[""Keyboard"", ""Laptop"", ""Monitor""]",2998.9,{},230586,1,South America +2024-05-04,46090,5857,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3443.81,{},5818,1,Africa +2024-09-24,46091,7255,"[""Monitor"", ""Wireless Mouse""]",3374.87,{},66115,1,South America +2023-05-09,46092,6325,"[""Tablet"", ""Headphones""]",4174.55,{},250019,1,South America +2024-08-18,46093,9858,"[""Monitor""]",4302.44,{},253516,0,Asia +2024-08-27,46094,514,"[""Headphones"", ""Wireless Mouse""]",3247.61,{},98117,1,South America +2023-12-16,46095,7523,"[""Wireless Mouse""]",3312.47,{},145699,1,North America +2024-05-04,46096,5478,"[""Charger"", ""Monitor"", ""Headphones""]",1423.39,"{""promo"": ""24%""}",149378,0,Africa +2024-02-29,46097,5061,"[""Monitor"", ""Phone""]",1108.11,"{""seasonal"": ""9%""}",290301,0,Africa +2023-08-05,46098,3187,"[""Charger"", ""Phone"", ""Headphones""]",3759.49,"{""loyalty"": ""7%""}",184323,0,Africa +2024-11-28,46099,9293,"[""Headphones"", ""Tablet"", ""Keyboard""]",150.87,{},295999,1,South America +2024-11-11,46100,4173,"[""Tablet"", ""Wireless Mouse""]",221.11,{},55570,0,North America +2023-02-18,46101,8602,"[""Tablet"", ""Monitor""]",3548.93,"{""seasonal"": ""28%""}",186650,1,Europe +2024-02-12,46102,5127,"[""Charger""]",395.36,"{"""": ""18%""}",45920,0,Europe +2023-01-07,46103,6560,"[""Wireless Mouse"", ""Laptop""]",4040.49,{},201294,0,North America +2023-01-25,46104,5805,"[""Keyboard"", ""Charger""]",86.29,"{"""": ""16%""}",262551,1,Asia +2024-08-24,46105,2445,"[""Charger""]",2944.36,{},82559,1,Europe +2024-05-31,46106,8822,"[""Headphones"", ""Monitor""]",1921.61,"{""seasonal"": ""25%""}",186967,0,North America +2023-01-30,46107,716,"[""Headphones"", ""Charger"", ""Tablet""]",1025.36,{},163545,1,Asia +2023-01-26,46108,9640,"[""Phone"", ""Keyboard"", ""Laptop""]",3451.55,{},2725,1,South America +2023-10-04,46109,5770,"[""Charger"", ""Headphones""]",1624.28,{},124950,0,Africa +2023-07-27,46110,7541,"[""Charger""]",315.13,"{""seasonal"": ""17%""}",130931,1,Africa +2024-08-21,46111,1847,"[""Headphones""]",1354.94,"{""seasonal"": ""27%""}",218114,1,South America +2023-01-09,46112,1384,"[""Monitor""]",1983.5,{},1740,0,North America +2024-06-28,46113,2116,"[""Charger"", ""Laptop"", ""Tablet""]",606.15,{},184156,1,Africa +2023-06-04,46114,4691,"[""Tablet"", ""Laptop"", ""Charger""]",1076.93,"{""loyalty"": ""29%""}",9646,0,North America +2023-12-09,46115,6328,"[""Tablet"", ""Phone"", ""Monitor""]",1057.4,{},271209,0,Asia +2023-12-07,46116,8368,"[""Keyboard"", ""Tablet""]",4626.12,{},178514,0,Europe +2023-08-04,46117,9566,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3952.43,{},195328,0,Europe +2023-08-11,46118,5104,"[""Laptop""]",1395.24,{},84415,0,Asia +2023-03-07,46119,9994,"[""Tablet""]",2430.21,"{""seasonal"": ""17%""}",138638,1,South America +2024-07-03,46120,7230,"[""Charger"", ""Phone""]",4052.4,{},237709,0,Africa +2024-06-02,46121,1384,"[""Wireless Mouse""]",449.11,{},265175,1,South America +2023-06-08,46122,6946,"[""Charger""]",1802.09,"{"""": ""20%""}",62355,0,South America +2023-06-02,46123,9333,"[""Wireless Mouse""]",917.12,"{"""": ""5%""}",98353,0,North America +2023-10-24,46124,5101,"[""Laptop"", ""Wireless Mouse""]",2114.73,"{""promo"": ""15%""}",127936,0,Africa +2023-11-16,46125,2415,"[""Tablet"", ""Keyboard"", ""Charger""]",3678.3,{},58260,1,Africa +2023-02-20,46126,4851,"[""Phone"", ""Tablet"", ""Charger""]",86.37,{},90710,0,North America +2023-08-23,46127,206,"[""Tablet"", ""Headphones""]",4768.1,"{""seasonal"": ""29%""}",156530,0,South America +2023-07-06,46128,3073,"[""Laptop""]",712.48,{},79872,0,Asia +2023-06-16,46129,7043,"[""Phone"", ""Tablet"", ""Headphones""]",2082.4,{},237865,0,Asia +2023-08-30,46130,9306,"[""Monitor"", ""Phone""]",2940.25,{},121321,1,Africa +2024-05-17,46131,3516,"[""Tablet""]",1657.82,"{""loyalty"": ""11%""}",61894,1,Africa +2023-09-01,46132,5766,"[""Phone"", ""Headphones"", ""Tablet""]",4313.21,"{""promo"": ""14%""}",142562,0,Europe +2023-01-27,46133,8469,"[""Headphones""]",4650.22,"{""seasonal"": ""28%""}",248921,0,Asia +2024-02-19,46134,7650,"[""Tablet""]",3741.7,"{""promo"": ""29%""}",92652,0,Africa +2024-08-07,46135,1639,"[""Phone"", ""Keyboard""]",312.76,"{""loyalty"": ""23%""}",250313,0,South America +2023-05-30,46136,1816,"[""Keyboard"", ""Laptop"", ""Tablet""]",2361.25,"{""seasonal"": ""11%""}",97370,0,North America +2024-03-17,46137,8336,"[""Laptop"", ""Keyboard""]",2270.95,{},83858,0,Africa +2023-03-21,46138,4340,"[""Tablet"", ""Charger""]",3537.68,{},295138,0,South America +2023-08-11,46139,8624,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3331.73,"{"""": ""11%""}",75173,0,North America +2024-08-30,46140,1962,"[""Monitor""]",200.0,"{""loyalty"": ""19%""}",184353,1,South America +2024-01-22,46141,4866,"[""Tablet"", ""Charger"", ""Headphones""]",194.75,{},128222,0,South America +2023-06-28,46142,3275,"[""Charger"", ""Keyboard"", ""Phone""]",2022.79,{},251868,1,Africa +2023-10-16,46143,5393,"[""Headphones""]",1208.04,{},138631,1,Asia +2024-01-21,46144,5704,"[""Phone"", ""Keyboard""]",3008.32,"{""promo"": ""20%""}",295079,0,Africa +2023-09-20,46145,4641,"[""Monitor""]",2558.51,"{"""": ""30%""}",79746,1,Africa +2024-08-27,46146,263,"[""Monitor""]",2926.48,{},240943,1,North America +2024-11-27,46147,7650,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4320.67,"{""promo"": ""20%""}",125007,0,Africa +2023-11-17,46148,6334,"[""Monitor"", ""Headphones""]",1842.56,"{""promo"": ""10%""}",280386,1,Asia +2024-11-16,46149,7060,"[""Wireless Mouse"", ""Headphones""]",2076.87,"{""promo"": ""24%""}",91584,0,Europe +2023-10-20,46150,4976,"[""Charger"", ""Laptop""]",1341.84,"{"""": ""16%""}",208167,0,Asia +2024-12-22,46151,355,"[""Laptop"", ""Headphones"", ""Charger""]",3740.76,{},65943,1,Europe +2024-04-26,46152,6550,"[""Charger"", ""Tablet"", ""Laptop""]",824.08,"{""promo"": ""22%""}",243593,1,South America +2024-04-01,46153,2199,"[""Tablet"", ""Wireless Mouse""]",4167.68,"{""seasonal"": ""26%""}",108990,1,North America +2023-02-03,46154,6314,"[""Tablet"", ""Laptop"", ""Charger""]",1280.33,"{""loyalty"": ""26%""}",273833,0,Europe +2023-08-23,46155,9130,"[""Charger""]",2895.02,"{""loyalty"": ""8%""}",80011,0,Europe +2023-05-09,46156,2328,"[""Phone""]",3376.93,"{"""": ""13%""}",150313,1,Africa +2024-02-28,46157,8549,"[""Headphones""]",302.6,{},233222,1,Europe +2023-07-19,46158,2197,"[""Tablet""]",1895.86,{},39901,1,Africa +2024-08-28,46159,461,"[""Monitor"", ""Laptop""]",1600.7,{},243859,1,North America +2023-04-17,46160,61,"[""Headphones""]",1810.43,"{""seasonal"": ""18%""}",254880,0,North America +2024-11-16,46161,6779,"[""Headphones"", ""Phone""]",745.81,{},64333,1,South America +2024-01-22,46162,7768,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",273.2,{},73215,1,Europe +2024-08-28,46163,1819,"[""Wireless Mouse""]",2900.77,"{""promo"": ""8%""}",237510,0,Europe +2023-04-12,46164,5484,"[""Keyboard"", ""Charger"", ""Tablet""]",211.22,"{"""": ""21%""}",186440,0,North America +2023-02-01,46165,5454,"[""Tablet"", ""Monitor""]",255.09,{},21850,0,South America +2024-01-13,46166,7632,"[""Monitor""]",565.65,{},247092,1,South America +2023-06-22,46167,4578,"[""Headphones"", ""Phone"", ""Monitor""]",437.33,{},266337,1,Africa +2023-03-05,46168,956,"[""Tablet"", ""Phone"", ""Charger""]",2767.01,"{""loyalty"": ""28%""}",100697,0,North America +2023-12-01,46169,4553,"[""Charger"", ""Headphones""]",4956.69,{},70004,0,South America +2024-11-02,46170,7261,"[""Headphones""]",1781.13,"{"""": ""12%""}",273423,0,Africa +2024-06-02,46171,41,"[""Laptop"", ""Monitor""]",1446.34,"{""promo"": ""19%""}",74688,1,South America +2024-04-02,46172,2706,"[""Laptop"", ""Wireless Mouse""]",3653.11,{},26955,1,South America +2024-04-11,46173,9265,"[""Phone""]",2451.97,"{"""": ""28%""}",297002,1,South America +2024-08-27,46174,4694,"[""Charger"", ""Headphones"", ""Monitor""]",2241.92,"{""seasonal"": ""16%""}",31644,1,North America +2024-10-27,46175,9720,"[""Headphones"", ""Tablet""]",147.12,{},221273,0,North America +2023-03-11,46176,3632,"[""Headphones"", ""Keyboard""]",3105.25,{},104402,1,Africa +2024-06-04,46177,637,"[""Tablet"", ""Headphones""]",3335.71,{},71564,0,Asia +2023-01-30,46178,8412,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4216.78,{},60298,1,Asia +2023-03-03,46179,5545,"[""Monitor""]",4660.04,"{""seasonal"": ""28%""}",178500,1,North America +2023-12-29,46180,591,"[""Phone"", ""Monitor"", ""Tablet""]",546.01,"{""seasonal"": ""25%""}",272650,0,Asia +2024-03-13,46181,8869,"[""Tablet"", ""Headphones"", ""Phone""]",453.58,{},156027,1,South America +2023-09-20,46182,9541,"[""Keyboard"", ""Tablet""]",4099.67,{},149130,1,Africa +2024-09-07,46183,1018,"[""Phone"", ""Headphones""]",989.09,"{""loyalty"": ""23%""}",197272,1,South America +2024-04-20,46184,8413,"[""Keyboard""]",1110.69,{},220881,1,Europe +2024-12-04,46185,2606,"[""Charger"", ""Phone""]",2758.37,"{""seasonal"": ""21%""}",93519,1,South America +2023-09-09,46186,8371,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",450.11,"{""promo"": ""7%""}",218214,1,Asia +2024-12-10,46187,762,"[""Headphones""]",240.74,"{""seasonal"": ""26%""}",12583,0,South America +2024-08-25,46188,6452,"[""Wireless Mouse"", ""Charger"", ""Phone""]",430.51,{},176097,0,Asia +2024-02-04,46189,4616,"[""Phone"", ""Tablet"", ""Laptop""]",3277.78,{},15561,1,Asia +2024-04-23,46190,9823,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1487.36,"{"""": ""13%""}",200036,0,Europe +2023-05-09,46191,5498,"[""Tablet""]",1863.01,"{""seasonal"": ""9%""}",253629,0,South America +2024-11-11,46192,9508,"[""Headphones"", ""Keyboard""]",3711.12,"{""loyalty"": ""22%""}",237169,0,Africa +2024-09-06,46193,5994,"[""Keyboard"", ""Tablet"", ""Headphones""]",384.65,"{""seasonal"": ""6%""}",92012,1,Asia +2023-10-28,46194,4998,"[""Wireless Mouse"", ""Laptop""]",1892.68,{},159070,0,North America +2024-02-03,46195,2301,"[""Keyboard""]",338.66,{},273068,1,Europe +2023-02-06,46196,8527,"[""Tablet"", ""Wireless Mouse""]",1706.08,{},86749,1,Asia +2024-06-20,46197,5514,"[""Monitor""]",2923.79,"{"""": ""9%""}",32757,1,North America +2023-10-28,46198,1695,"[""Laptop""]",3193.28,"{""loyalty"": ""28%""}",158741,1,North America +2024-07-03,46199,7679,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3137.52,"{""loyalty"": ""21%""}",200140,1,South America +2024-12-20,46200,9601,"[""Monitor""]",1418.97,{},176785,0,North America +2023-02-27,46201,5289,"[""Headphones""]",3782.17,"{""promo"": ""29%""}",291459,0,Europe +2024-04-01,46202,4034,"[""Monitor"", ""Charger"", ""Headphones""]",4500.62,{},112698,1,Asia +2024-03-21,46203,318,"[""Keyboard"", ""Charger""]",2245.04,{},186651,1,Europe +2024-08-12,46204,1158,"[""Keyboard"", ""Monitor""]",1700.17,{},237907,1,Europe +2023-03-17,46205,4151,"[""Headphones""]",3290.31,"{""loyalty"": ""30%""}",63843,1,Africa +2023-01-27,46206,8097,"[""Tablet"", ""Keyboard""]",394.21,{},25988,1,South America +2023-01-11,46207,8364,"[""Charger"", ""Monitor""]",3358.77,"{"""": ""8%""}",205403,0,Asia +2024-12-12,46208,8891,"[""Phone"", ""Keyboard"", ""Charger""]",2499.73,"{""promo"": ""5%""}",201632,1,Asia +2024-03-21,46209,3512,"[""Charger""]",2928.69,"{"""": ""19%""}",160526,1,North America +2023-10-31,46210,4497,"[""Monitor""]",190.92,{},30576,1,South America +2023-03-16,46211,3618,"[""Tablet""]",3957.1,{},170162,0,South America +2023-03-05,46212,4541,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3366.6,{},163174,1,North America +2023-10-29,46213,4931,"[""Keyboard"", ""Phone"", ""Headphones""]",3230.29,{},249072,0,Asia +2024-09-17,46214,1819,"[""Monitor"", ""Keyboard""]",1854.73,"{"""": ""7%""}",282025,1,Asia +2023-05-13,46215,7093,"[""Headphones""]",2620.41,"{""seasonal"": ""17%""}",165510,0,Europe +2023-08-03,46216,6588,"[""Headphones"", ""Keyboard""]",2866.2,"{""loyalty"": ""11%""}",202888,1,Europe +2024-08-18,46217,4688,"[""Headphones"", ""Wireless Mouse""]",551.81,"{""promo"": ""12%""}",82597,0,Asia +2023-08-12,46218,3323,"[""Monitor""]",804.85,{},171870,1,Europe +2024-02-18,46219,5391,"[""Keyboard"", ""Tablet""]",4728.18,"{"""": ""25%""}",174297,1,Europe +2024-12-03,46220,6184,"[""Keyboard"", ""Charger"", ""Laptop""]",4696.17,"{"""": ""19%""}",88921,1,Europe +2023-05-03,46221,960,"[""Wireless Mouse"", ""Keyboard""]",4174.69,"{""loyalty"": ""30%""}",74161,0,North America +2024-04-01,46222,2461,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1451.52,"{""promo"": ""15%""}",96742,0,Asia +2024-09-19,46223,8421,"[""Laptop"", ""Phone""]",4783.63,{},224959,0,Europe +2024-05-06,46224,9896,"[""Phone""]",2512.01,{},180962,0,Europe +2024-06-23,46225,9994,"[""Phone""]",3546.21,"{""promo"": ""18%""}",144928,1,Europe +2023-07-14,46226,7767,"[""Charger"", ""Headphones""]",3789.95,"{""promo"": ""10%""}",170136,0,South America +2023-06-11,46227,8243,"[""Wireless Mouse""]",4606.4,"{""seasonal"": ""24%""}",6450,0,Africa +2023-02-26,46228,6977,"[""Keyboard"", ""Tablet""]",2091.17,"{""promo"": ""28%""}",206694,0,North America +2023-04-16,46229,9708,"[""Monitor""]",3908.32,{},178349,0,South America +2023-10-17,46230,644,"[""Charger"", ""Tablet"", ""Headphones""]",3582.14,{},286698,1,Asia +2024-12-25,46231,8893,"[""Keyboard""]",4753.86,{},30236,0,South America +2023-05-04,46232,7150,"[""Charger""]",4070.41,"{""loyalty"": ""30%""}",128394,1,Africa +2024-03-17,46233,5141,"[""Laptop"", ""Charger""]",3893.05,"{"""": ""30%""}",241947,1,Asia +2024-05-26,46234,9352,"[""Monitor""]",3701.72,"{""loyalty"": ""25%""}",75237,1,Africa +2024-11-12,46235,9424,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4835.82,{},181251,0,Asia +2023-04-19,46236,8805,"[""Charger""]",2158.27,"{""promo"": ""11%""}",278818,1,North America +2024-08-20,46237,8865,"[""Phone"", ""Charger""]",4551.5,{},68835,1,Asia +2023-01-09,46238,1909,"[""Keyboard""]",3799.05,"{""loyalty"": ""29%""}",166221,0,North America +2023-08-11,46239,1636,"[""Phone"", ""Tablet"", ""Monitor""]",1913.99,{},251399,1,South America +2023-09-08,46240,8782,"[""Monitor"", ""Phone"", ""Headphones""]",3091.63,"{""promo"": ""7%""}",42995,1,South America +2024-07-30,46241,1441,"[""Wireless Mouse"", ""Keyboard""]",1663.31,"{""loyalty"": ""16%""}",292735,1,North America +2024-03-22,46242,9603,"[""Laptop"", ""Wireless Mouse""]",2463.67,"{"""": ""17%""}",21551,0,North America +2023-08-26,46243,6996,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3842.26,{},16722,1,Europe +2023-01-27,46244,6073,"[""Keyboard"", ""Phone""]",2440.77,"{""promo"": ""15%""}",273612,1,Europe +2023-11-20,46245,1445,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1944.31,"{""seasonal"": ""15%""}",143418,0,Africa +2023-01-19,46246,3831,"[""Laptop"", ""Monitor""]",4294.68,"{""loyalty"": ""22%""}",1634,1,North America +2023-05-18,46247,8440,"[""Monitor""]",279.96,{},238114,0,South America +2024-08-07,46248,2292,"[""Wireless Mouse"", ""Headphones""]",4915.44,{},191504,0,North America +2023-08-13,46249,9763,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2136.17,{},120004,1,South America +2023-05-31,46250,8645,"[""Tablet"", ""Charger"", ""Headphones""]",838.87,{},89201,1,Europe +2024-11-11,46251,6560,"[""Monitor""]",2278.96,"{""promo"": ""16%""}",124073,1,Europe +2023-04-07,46252,7076,"[""Phone"", ""Laptop""]",493.46,{},49362,1,Asia +2024-11-01,46253,7183,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",370.99,{},139913,0,Asia +2023-07-19,46254,5067,"[""Tablet""]",2409.46,"{"""": ""25%""}",283956,0,North America +2023-12-12,46255,636,"[""Headphones""]",3209.71,"{""seasonal"": ""15%""}",146954,1,Asia +2024-06-18,46256,9825,"[""Laptop""]",2401.24,"{"""": ""22%""}",82657,1,Africa +2023-05-25,46257,3147,"[""Keyboard""]",2933.39,{},97863,0,Africa +2023-07-28,46258,4122,"[""Wireless Mouse"", ""Laptop""]",2948.22,"{"""": ""8%""}",148655,1,Europe +2024-04-02,46259,9194,"[""Keyboard""]",1075.91,{},182822,1,Africa +2023-04-22,46260,3661,"[""Headphones"", ""Phone"", ""Charger""]",3313.9,{},271500,0,Africa +2023-08-10,46261,4730,"[""Laptop""]",841.53,{},188217,1,Asia +2024-04-13,46262,8173,"[""Phone"", ""Laptop""]",4802.61,{},17834,1,Europe +2024-09-04,46263,7374,"[""Keyboard"", ""Monitor"", ""Headphones""]",4405.52,{},114389,0,Asia +2024-05-26,46264,728,"[""Phone"", ""Monitor"", ""Charger""]",4654.08,"{"""": ""21%""}",84861,1,North America +2023-01-27,46265,346,"[""Laptop""]",4575.54,"{""loyalty"": ""29%""}",57044,1,Africa +2023-06-09,46266,6008,"[""Headphones"", ""Charger""]",886.1,{},175309,0,North America +2024-07-16,46267,6578,"[""Laptop"", ""Keyboard"", ""Phone""]",785.66,"{""loyalty"": ""16%""}",124254,1,South America +2023-12-01,46268,9807,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",56.57,{},140687,1,Asia +2024-11-10,46269,7535,"[""Keyboard"", ""Monitor""]",3944.69,{},144455,1,Africa +2024-04-19,46270,3120,"[""Tablet""]",654.3,"{""promo"": ""30%""}",208327,0,South America +2023-05-28,46271,5602,"[""Keyboard"", ""Charger""]",4151.74,"{""loyalty"": ""13%""}",222711,0,Africa +2023-03-17,46272,9064,"[""Monitor"", ""Keyboard""]",235.96,"{""loyalty"": ""29%""}",273182,1,Europe +2024-07-04,46273,9086,"[""Monitor"", ""Laptop""]",2774.0,"{""loyalty"": ""8%""}",187611,1,Asia +2023-04-02,46274,8656,"[""Monitor""]",1547.16,"{""loyalty"": ""20%""}",240333,0,Europe +2023-05-31,46275,6528,"[""Headphones"", ""Charger"", ""Keyboard""]",4063.28,"{""promo"": ""22%""}",240495,0,Europe +2023-10-27,46276,2837,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",318.66,"{""promo"": ""28%""}",152188,0,South America +2023-03-14,46277,1923,"[""Keyboard"", ""Tablet""]",2206.94,"{""loyalty"": ""14%""}",238801,0,Africa +2023-06-22,46278,2426,"[""Monitor"", ""Wireless Mouse""]",2027.96,{},36047,1,South America +2023-04-28,46279,2168,"[""Laptop""]",1330.41,"{""promo"": ""9%""}",100038,0,Europe +2024-05-07,46280,3312,"[""Charger""]",4958.97,"{""loyalty"": ""7%""}",14971,0,North America +2023-03-03,46281,3542,"[""Keyboard"", ""Headphones"", ""Phone""]",1312.14,"{""seasonal"": ""12%""}",256204,1,Asia +2024-09-17,46282,2268,"[""Tablet"", ""Headphones""]",567.12,{},124259,0,Asia +2023-06-22,46283,6954,"[""Wireless Mouse"", ""Headphones""]",2297.88,{},190540,1,South America +2024-03-13,46284,5989,"[""Charger"", ""Laptop""]",2563.51,"{""seasonal"": ""12%""}",212124,0,Europe +2024-01-19,46285,904,"[""Headphones"", ""Tablet""]",883.67,{},1101,0,Asia +2023-05-17,46286,8657,"[""Charger"", ""Monitor""]",3562.96,{},237396,0,North America +2024-02-22,46287,6339,"[""Headphones""]",2288.93,"{""seasonal"": ""23%""}",274341,0,North America +2023-12-18,46288,5736,"[""Monitor""]",1120.87,{},225731,1,North America +2024-02-18,46289,8920,"[""Wireless Mouse"", ""Monitor""]",4017.32,{},297206,0,South America +2024-01-22,46290,3845,"[""Monitor"", ""Phone""]",3821.69,{},257455,0,South America +2023-03-30,46291,9175,"[""Laptop"", ""Wireless Mouse""]",3795.26,"{""loyalty"": ""11%""}",233900,1,Asia +2023-05-25,46292,8084,"[""Laptop"", ""Monitor"", ""Keyboard""]",448.15,{},215018,1,North America +2024-03-21,46293,8717,"[""Tablet"", ""Phone""]",857.4,"{"""": ""30%""}",112441,1,North America +2023-01-03,46294,4422,"[""Tablet"", ""Laptop""]",2758.27,{},136707,1,Europe +2024-03-25,46295,3024,"[""Monitor""]",2909.41,"{"""": ""19%""}",147666,1,Asia +2024-11-10,46296,3075,"[""Keyboard""]",2184.68,{},109299,1,South America +2023-03-01,46297,8654,"[""Phone"", ""Tablet""]",2116.66,{},186363,0,Europe +2024-10-27,46298,5793,"[""Wireless Mouse"", ""Charger""]",122.77,"{""loyalty"": ""28%""}",61502,1,South America +2023-04-05,46299,9299,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4470.38,{},269615,1,Asia +2024-04-14,46300,8927,"[""Wireless Mouse""]",2907.87,"{""loyalty"": ""28%""}",298628,0,Europe +2023-12-03,46301,7729,"[""Tablet"", ""Phone""]",2754.71,"{""seasonal"": ""15%""}",56670,1,Asia +2024-09-20,46302,514,"[""Phone""]",302.26,{},209357,0,North America +2024-08-03,46303,128,"[""Laptop"", ""Keyboard""]",752.0,{},74316,0,Europe +2024-09-19,46304,4106,"[""Phone"", ""Wireless Mouse""]",3618.11,"{""seasonal"": ""24%""}",246557,0,Europe +2023-01-24,46305,4175,"[""Laptop""]",698.27,{},263257,0,Asia +2023-06-11,46306,2108,"[""Tablet"", ""Phone"", ""Headphones""]",1091.25,{},204828,1,North America +2024-08-07,46307,1966,"[""Tablet"", ""Laptop"", ""Charger""]",3520.75,"{""promo"": ""17%""}",125193,1,South America +2024-12-07,46308,3683,"[""Laptop"", ""Charger""]",2220.48,"{""promo"": ""22%""}",23949,1,South America +2023-05-15,46309,9829,"[""Keyboard""]",3051.3,{},233067,1,North America +2024-07-24,46310,2757,"[""Tablet"", ""Keyboard""]",1264.37,{},281809,0,South America +2023-11-08,46311,7627,"[""Charger"", ""Tablet"", ""Headphones""]",2781.99,{},204162,1,North America +2023-04-10,46312,9615,"[""Wireless Mouse"", ""Phone""]",1813.86,"{"""": ""24%""}",272513,0,Africa +2024-07-11,46313,547,"[""Headphones"", ""Tablet""]",2268.77,{},145048,0,South America +2023-07-12,46314,6346,"[""Monitor"", ""Headphones"", ""Keyboard""]",4215.95,"{"""": ""9%""}",59379,1,South America +2023-12-17,46315,5675,"[""Laptop""]",2759.77,"{""seasonal"": ""28%""}",145408,0,Asia +2024-07-01,46316,6085,"[""Keyboard""]",4210.82,{},161725,0,South America +2024-02-24,46317,4937,"[""Laptop"", ""Tablet"", ""Monitor""]",4455.26,{},15271,0,Asia +2023-03-17,46318,8553,"[""Headphones"", ""Keyboard"", ""Laptop""]",275.3,{},170351,1,South America +2023-06-27,46319,7920,"[""Laptop""]",2055.4,{},12116,0,Asia +2024-09-21,46320,5541,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4398.58,"{"""": ""22%""}",111962,1,Asia +2024-02-23,46321,7269,"[""Phone"", ""Wireless Mouse""]",2912.92,{},186923,1,Africa +2024-05-11,46322,6584,"[""Phone"", ""Monitor"", ""Laptop""]",2377.76,"{""promo"": ""25%""}",260909,0,Asia +2023-01-17,46323,8884,"[""Phone"", ""Keyboard"", ""Headphones""]",2857.51,"{""seasonal"": ""21%""}",276248,0,South America +2023-01-11,46324,4705,"[""Monitor""]",288.33,"{""loyalty"": ""17%""}",97248,1,North America +2024-08-25,46325,1186,"[""Wireless Mouse"", ""Keyboard""]",626.33,{},63815,0,Asia +2024-07-06,46326,9235,"[""Phone"", ""Charger"", ""Headphones""]",4244.88,"{"""": ""20%""}",231625,0,South America +2023-03-26,46327,4540,"[""Charger""]",3187.75,{},59268,0,Africa +2023-11-21,46328,6348,"[""Laptop"", ""Headphones""]",2977.38,"{""seasonal"": ""20%""}",283485,0,South America +2024-04-19,46329,3877,"[""Tablet"", ""Headphones""]",1600.54,"{""loyalty"": ""19%""}",245226,0,Europe +2024-01-15,46330,9594,"[""Wireless Mouse"", ""Headphones""]",2399.68,{},49330,1,North America +2024-11-08,46331,4641,"[""Keyboard""]",4787.72,"{""loyalty"": ""10%""}",12512,0,Asia +2024-01-22,46332,2270,"[""Laptop""]",3508.87,{},55958,0,Africa +2023-12-14,46333,6542,"[""Phone""]",2295.3,{},15003,1,North America +2024-01-13,46334,112,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4677.23,"{""promo"": ""8%""}",85236,1,Africa +2024-08-01,46335,909,"[""Headphones"", ""Laptop"", ""Keyboard""]",57.46,"{""promo"": ""27%""}",273962,1,South America +2024-09-27,46336,685,"[""Phone"", ""Keyboard""]",1071.31,{},259436,1,South America +2024-04-21,46337,963,"[""Tablet""]",513.35,{},44530,1,Asia +2024-04-26,46338,1944,"[""Headphones"", ""Monitor""]",914.2,{},105950,1,North America +2023-05-10,46339,7607,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4678.42,{},169451,0,North America +2023-09-04,46340,6833,"[""Phone"", ""Charger""]",1199.3,"{""promo"": ""15%""}",241866,0,South America +2024-11-03,46341,9747,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3377.9,{},171745,0,Europe +2023-12-26,46342,7468,"[""Charger""]",197.26,"{""loyalty"": ""23%""}",236580,0,Europe +2023-06-25,46343,1344,"[""Charger"", ""Monitor""]",932.42,{},159577,0,Europe +2024-08-08,46344,5555,"[""Monitor"", ""Charger"", ""Laptop""]",3124.39,{},18868,1,Asia +2023-05-01,46345,3683,"[""Laptop"", ""Tablet""]",2641.98,{},38922,0,Europe +2023-09-07,46346,9013,"[""Laptop"", ""Charger"", ""Monitor""]",3694.78,{},13365,1,North America +2023-05-23,46347,4734,"[""Laptop""]",4536.92,"{""loyalty"": ""29%""}",292938,1,South America +2024-02-11,46348,8226,"[""Tablet""]",3001.3,"{""promo"": ""8%""}",91903,0,Asia +2023-05-02,46349,9185,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2235.51,"{""loyalty"": ""9%""}",193458,0,North America +2024-01-06,46350,2525,"[""Charger""]",2486.64,{},267150,1,Africa +2023-09-21,46351,1330,"[""Charger""]",4880.74,{},190970,1,North America +2023-09-05,46352,1606,"[""Phone"", ""Laptop"", ""Charger""]",3285.27,{},99963,0,Europe +2023-03-14,46353,4529,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2082.56,"{""loyalty"": ""16%""}",239896,1,Africa +2024-03-03,46354,375,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",73.24,{},143635,1,South America +2023-06-18,46355,5535,"[""Monitor"", ""Laptop""]",3111.87,{},160903,1,North America +2024-12-22,46356,4596,"[""Laptop""]",3371.33,"{""promo"": ""13%""}",226041,0,South America +2023-01-04,46357,1324,"[""Wireless Mouse"", ""Phone""]",4617.62,"{""loyalty"": ""27%""}",251083,1,North America +2024-11-24,46358,3057,"[""Wireless Mouse""]",1098.77,{},53895,0,Asia +2024-08-20,46359,2584,"[""Monitor"", ""Headphones""]",4269.29,{},125561,0,South America +2024-11-04,46360,299,"[""Headphones"", ""Monitor""]",3709.75,"{""seasonal"": ""6%""}",6566,0,South America +2023-01-27,46361,1266,"[""Wireless Mouse"", ""Monitor""]",2209.34,"{"""": ""27%""}",222945,0,Europe +2023-03-14,46362,8201,"[""Tablet"", ""Wireless Mouse""]",4266.34,"{""seasonal"": ""23%""}",182616,0,Africa +2023-01-28,46363,7867,"[""Charger"", ""Phone"", ""Tablet""]",3911.0,"{""promo"": ""26%""}",58546,1,South America +2023-02-14,46364,4991,"[""Keyboard"", ""Monitor"", ""Charger""]",3863.07,{},86848,0,Asia +2023-01-20,46365,8641,"[""Headphones"", ""Charger"", ""Keyboard""]",4308.74,"{""loyalty"": ""22%""}",77526,1,Europe +2024-12-20,46366,6122,"[""Monitor"", ""Phone""]",3788.04,{},72779,0,South America +2024-07-27,46367,862,"[""Wireless Mouse""]",2574.95,"{""seasonal"": ""11%""}",273365,1,South America +2024-08-22,46368,6225,"[""Tablet""]",4777.66,"{"""": ""9%""}",52989,0,Africa +2024-11-10,46369,747,"[""Phone""]",2955.5,{},96520,1,South America +2024-05-04,46370,9819,"[""Keyboard"", ""Charger"", ""Laptop""]",4527.96,"{""promo"": ""21%""}",27366,1,Asia +2023-10-01,46371,5827,"[""Headphones""]",685.43,{},212091,1,North America +2023-04-16,46372,4096,"[""Headphones"", ""Tablet""]",1155.34,"{""loyalty"": ""12%""}",110910,1,Africa +2024-02-24,46373,2448,"[""Keyboard"", ""Tablet"", ""Phone""]",1821.84,"{"""": ""18%""}",70528,1,North America +2023-05-29,46374,2863,"[""Laptop"", ""Phone"", ""Headphones""]",2641.23,{},159892,1,Africa +2023-04-04,46375,6778,"[""Laptop""]",3131.92,{},101153,1,South America +2024-10-25,46376,6488,"[""Tablet"", ""Keyboard""]",3884.71,{},112978,1,Asia +2024-06-08,46377,5411,"[""Tablet"", ""Monitor"", ""Keyboard""]",3705.04,{},141203,1,Europe +2024-07-17,46378,8997,"[""Keyboard"", ""Charger"", ""Headphones""]",2189.82,{},43376,1,Asia +2024-11-28,46379,3698,"[""Phone""]",3518.0,"{""seasonal"": ""28%""}",214088,0,Africa +2023-11-17,46380,759,"[""Keyboard"", ""Tablet""]",4907.51,"{""loyalty"": ""23%""}",292633,1,Asia +2024-07-01,46381,5504,"[""Keyboard""]",4940.79,{},244566,1,North America +2023-08-01,46382,9135,"[""Monitor"", ""Phone""]",3811.53,"{""loyalty"": ""30%""}",9102,1,Asia +2024-07-09,46383,1980,"[""Headphones""]",2861.27,"{"""": ""7%""}",255452,0,Africa +2023-02-21,46384,4685,"[""Wireless Mouse""]",1121.66,"{""promo"": ""28%""}",282862,1,Asia +2023-07-25,46385,9858,"[""Charger"", ""Phone""]",547.39,{},224411,0,South America +2024-03-08,46386,2900,"[""Wireless Mouse"", ""Charger""]",476.44,"{""seasonal"": ""13%""}",238063,0,North America +2024-12-03,46387,3485,"[""Monitor"", ""Laptop"", ""Headphones""]",1539.47,"{""seasonal"": ""24%""}",27847,1,Africa +2023-08-05,46388,2498,"[""Headphones"", ""Phone""]",3641.47,"{""seasonal"": ""28%""}",85930,0,Africa +2024-03-12,46389,7366,"[""Tablet"", ""Laptop"", ""Phone""]",3248.82,"{""loyalty"": ""18%""}",94025,1,Asia +2024-09-07,46390,1451,"[""Tablet"", ""Laptop"", ""Keyboard""]",4093.07,"{"""": ""13%""}",180550,0,South America +2023-12-13,46391,9744,"[""Monitor"", ""Charger""]",570.88,"{"""": ""22%""}",296577,1,South America +2024-05-24,46392,6210,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3796.72,"{"""": ""5%""}",173639,0,Europe +2024-04-17,46393,8872,"[""Monitor""]",2171.14,"{"""": ""13%""}",57509,0,Europe +2023-03-01,46394,790,"[""Laptop"", ""Phone"", ""Headphones""]",1044.64,{},71138,0,South America +2024-01-13,46395,5929,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1161.32,{},54717,1,Europe +2023-01-17,46396,3212,"[""Wireless Mouse"", ""Headphones""]",2308.44,{},163915,0,Europe +2024-01-11,46397,9249,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2588.78,{},270034,1,Europe +2024-03-26,46398,2274,"[""Headphones""]",4219.11,{},202165,0,South America +2023-03-15,46399,1393,"[""Keyboard"", ""Headphones"", ""Laptop""]",1781.93,"{""loyalty"": ""26%""}",178497,1,Europe +2023-05-17,46400,9884,"[""Laptop"", ""Monitor""]",1222.0,{},110119,0,South America +2024-03-16,46401,1332,"[""Charger""]",3029.46,"{""promo"": ""15%""}",221879,1,North America +2023-12-03,46402,5344,"[""Headphones""]",4158.95,"{""seasonal"": ""5%""}",87795,1,Africa +2024-06-20,46403,6341,"[""Charger""]",393.41,"{""promo"": ""27%""}",223686,0,Asia +2023-10-03,46404,4788,"[""Tablet""]",2905.45,"{"""": ""25%""}",183323,0,South America +2023-08-12,46405,86,"[""Keyboard"", ""Charger""]",1410.32,{},108198,0,Africa +2023-10-28,46406,6163,"[""Keyboard""]",1363.27,{},190693,1,Africa +2024-09-29,46407,5609,"[""Monitor""]",4116.83,{},219033,1,South America +2023-09-26,46408,5989,"[""Tablet"", ""Keyboard""]",1989.9,"{""loyalty"": ""20%""}",240660,1,Asia +2023-11-27,46409,4530,"[""Wireless Mouse""]",4021.82,{},223646,0,Africa +2023-06-12,46410,7881,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",819.37,"{""promo"": ""26%""}",238841,0,Asia +2024-10-20,46411,8382,"[""Monitor"", ""Keyboard"", ""Phone""]",95.71,{},173809,1,Europe +2024-04-23,46412,4538,"[""Charger"", ""Tablet""]",188.1,"{""seasonal"": ""16%""}",39601,0,Europe +2024-08-02,46413,2424,"[""Wireless Mouse"", ""Monitor""]",805.77,{},11889,0,Africa +2024-07-17,46414,8429,"[""Phone""]",2228.46,{},280806,1,Africa +2023-10-08,46415,9036,"[""Monitor"", ""Keyboard""]",1318.16,{},224697,0,Europe +2023-06-10,46416,4566,"[""Headphones"", ""Tablet""]",427.46,"{"""": ""15%""}",224805,1,South America +2023-04-24,46417,5652,"[""Monitor"", ""Tablet"", ""Keyboard""]",4240.75,{},24672,0,Asia +2024-01-09,46418,818,"[""Phone"", ""Headphones""]",4117.26,"{""loyalty"": ""28%""}",182700,1,Europe +2023-09-30,46419,4116,"[""Charger""]",4248.79,{},1119,0,Europe +2024-07-17,46420,1205,"[""Laptop""]",3557.18,"{"""": ""16%""}",122049,0,South America +2023-04-16,46421,9380,"[""Laptop"", ""Keyboard"", ""Charger""]",446.66,{},74790,0,Asia +2023-09-22,46422,9162,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1569.27,{},54198,0,Africa +2023-09-07,46423,5670,"[""Charger"", ""Laptop""]",1156.49,{},225343,0,Africa +2023-01-08,46424,9617,"[""Charger"", ""Monitor""]",1760.46,"{""promo"": ""27%""}",23233,0,Europe +2024-02-12,46425,8442,"[""Tablet""]",3412.89,"{""promo"": ""11%""}",38940,1,Europe +2023-11-07,46426,6008,"[""Charger""]",3608.41,{},16771,1,South America +2023-03-25,46427,3943,"[""Charger"", ""Laptop""]",1323.18,"{"""": ""16%""}",108125,1,North America +2023-12-21,46428,6501,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2082.96,"{""seasonal"": ""8%""}",85993,1,South America +2024-07-03,46429,4156,"[""Keyboard"", ""Headphones""]",3415.4,{},164370,0,South America +2024-07-21,46430,5799,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4708.84,{},85779,0,Europe +2023-07-20,46431,8533,"[""Monitor""]",1339.34,{},277277,0,North America +2023-09-29,46432,2431,"[""Headphones"", ""Tablet""]",3137.07,"{"""": ""29%""}",129837,0,Europe +2023-12-18,46433,6128,"[""Tablet""]",2845.69,{},10012,1,Asia +2023-12-17,46434,3079,"[""Monitor"", ""Headphones""]",4012.58,{},36357,0,North America +2024-11-02,46435,6007,"[""Charger""]",160.04,{},190694,0,Africa +2024-03-26,46436,9767,"[""Headphones""]",776.82,{},123292,1,Africa +2023-09-06,46437,6143,"[""Laptop""]",2258.84,{},245282,1,South America +2023-02-02,46438,8820,"[""Laptop""]",4829.09,{},263988,0,South America +2023-12-09,46439,9799,"[""Tablet"", ""Keyboard"", ""Headphones""]",1930.15,"{""loyalty"": ""18%""}",44876,1,Africa +2024-09-21,46440,8454,"[""Keyboard""]",2547.84,{},248532,0,Asia +2024-04-06,46441,8330,"[""Wireless Mouse""]",902.48,"{""promo"": ""11%""}",200053,1,Europe +2023-03-08,46442,6614,"[""Monitor"", ""Keyboard"", ""Headphones""]",358.82,"{""seasonal"": ""26%""}",169104,0,Europe +2023-11-22,46443,4492,"[""Headphones"", ""Charger""]",1536.24,"{""loyalty"": ""19%""}",36180,1,Asia +2023-07-21,46444,4083,"[""Keyboard""]",2839.44,"{""promo"": ""15%""}",252907,0,South America +2024-09-27,46445,2362,"[""Laptop"", ""Wireless Mouse""]",1423.69,{},216634,1,Asia +2024-10-25,46446,7069,"[""Phone"", ""Charger"", ""Laptop""]",998.86,"{"""": ""17%""}",15240,1,Asia +2024-05-12,46447,623,"[""Phone"", ""Monitor""]",1444.38,"{""loyalty"": ""18%""}",160435,1,Europe +2023-09-16,46448,8299,"[""Monitor""]",367.34,"{""loyalty"": ""21%""}",114646,1,North America +2023-01-10,46449,4587,"[""Wireless Mouse"", ""Phone""]",245.81,{},148949,0,South America +2023-09-27,46450,5440,"[""Charger""]",3104.33,{},283100,0,South America +2023-04-14,46451,3699,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2937.26,"{""loyalty"": ""5%""}",271633,1,South America +2024-06-10,46452,5176,"[""Charger""]",3987.1,{},28643,0,Africa +2024-08-30,46453,4536,"[""Keyboard"", ""Laptop""]",1522.58,{},205590,0,North America +2023-06-01,46454,2839,"[""Charger""]",3528.66,"{""promo"": ""7%""}",149697,1,North America +2024-08-28,46455,1758,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",441.64,{},294357,1,South America +2023-10-22,46456,5077,"[""Keyboard"", ""Monitor""]",4611.91,{},293495,1,Africa +2023-06-04,46457,6269,"[""Laptop"", ""Phone"", ""Tablet""]",2044.6,{},124519,1,South America +2023-02-23,46458,1870,"[""Keyboard"", ""Laptop""]",3366.16,"{""promo"": ""21%""}",211249,0,North America +2023-02-24,46459,7580,"[""Headphones""]",962.65,{},168077,0,Europe +2023-12-14,46460,3516,"[""Laptop"", ""Phone""]",2875.65,{},39697,1,South America +2023-12-19,46461,205,"[""Monitor""]",4145.22,"{""loyalty"": ""11%""}",53007,1,Europe +2023-06-21,46462,1128,"[""Laptop"", ""Headphones"", ""Charger""]",917.21,{},181398,0,Asia +2023-10-24,46463,7882,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2744.13,"{"""": ""6%""}",197474,0,Europe +2023-05-26,46464,117,"[""Headphones"", ""Charger""]",4965.36,"{""loyalty"": ""5%""}",146270,0,South America +2024-03-10,46465,8080,"[""Phone""]",4011.52,{},257589,1,Asia +2023-01-14,46466,5575,"[""Laptop"", ""Keyboard"", ""Headphones""]",393.07,{},128007,1,North America +2024-12-02,46467,7,"[""Monitor"", ""Laptop""]",1565.04,{},29957,0,Asia +2024-04-05,46468,5595,"[""Phone""]",4248.02,"{"""": ""10%""}",294245,1,Africa +2023-08-15,46469,9464,"[""Monitor"", ""Phone"", ""Charger""]",1932.47,"{"""": ""19%""}",33599,1,Europe +2024-06-10,46470,8952,"[""Charger"", ""Phone""]",2520.61,"{""seasonal"": ""10%""}",160318,1,Asia +2023-12-10,46471,5008,"[""Laptop"", ""Phone""]",1890.16,"{""loyalty"": ""19%""}",226004,1,North America +2024-07-07,46472,9363,"[""Monitor""]",2312.05,{},7466,0,Asia +2023-05-08,46473,2580,"[""Monitor"", ""Phone""]",4900.11,"{"""": ""16%""}",219752,0,Asia +2023-12-08,46474,2998,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3970.24,"{""loyalty"": ""7%""}",162287,0,Asia +2024-08-10,46475,92,"[""Monitor"", ""Tablet""]",2412.77,{},278799,0,North America +2023-04-09,46476,5270,"[""Keyboard"", ""Headphones""]",424.63,"{""loyalty"": ""29%""}",157876,0,Africa +2024-04-29,46477,4517,"[""Wireless Mouse""]",4578.12,"{"""": ""30%""}",117284,0,South America +2024-10-01,46478,8093,"[""Phone""]",125.78,{},234716,0,Europe +2024-06-18,46479,4578,"[""Charger""]",4591.51,"{""loyalty"": ""5%""}",47257,0,Europe +2024-09-03,46480,2387,"[""Headphones"", ""Charger""]",4648.27,{},98085,1,North America +2024-05-20,46481,9287,"[""Phone"", ""Monitor"", ""Keyboard""]",3524.22,"{""seasonal"": ""19%""}",247334,1,Africa +2023-10-05,46482,9432,"[""Laptop"", ""Keyboard"", ""Tablet""]",818.29,{},73352,1,North America +2024-05-28,46483,8002,"[""Keyboard"", ""Monitor""]",3972.12,"{"""": ""23%""}",252192,1,Europe +2023-04-10,46484,4779,"[""Headphones""]",2874.92,{},8488,0,Asia +2023-09-09,46485,9757,"[""Phone""]",3707.24,"{""loyalty"": ""7%""}",187095,1,Africa +2023-08-06,46486,2561,"[""Charger""]",1234.55,{},102939,0,Africa +2023-12-13,46487,6756,"[""Monitor""]",4803.43,"{""promo"": ""15%""}",67869,1,South America +2023-06-11,46488,8354,"[""Phone"", ""Tablet"", ""Keyboard""]",4136.47,{},48424,1,Africa +2023-08-07,46489,9395,"[""Monitor"", ""Charger"", ""Phone""]",131.9,"{""promo"": ""14%""}",90878,1,North America +2023-05-09,46490,2385,"[""Tablet"", ""Headphones""]",536.74,"{"""": ""27%""}",160840,0,Europe +2024-07-01,46491,6222,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1422.0,"{""promo"": ""17%""}",165272,1,Africa +2023-06-18,46492,1829,"[""Wireless Mouse""]",1556.35,"{""promo"": ""11%""}",259406,0,Asia +2024-12-28,46493,2603,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",463.05,"{""promo"": ""30%""}",173264,0,Africa +2024-07-26,46494,5529,"[""Charger"", ""Monitor""]",3142.76,"{""seasonal"": ""22%""}",81639,1,Africa +2023-08-11,46495,7751,"[""Wireless Mouse"", ""Laptop""]",1954.54,"{"""": ""19%""}",44096,1,Africa +2023-01-29,46496,6840,"[""Phone"", ""Laptop"", ""Headphones""]",2710.8,"{""seasonal"": ""16%""}",263409,1,North America +2023-04-14,46497,9148,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2210.18,"{"""": ""11%""}",37305,1,South America +2023-05-07,46498,8810,"[""Tablet""]",64.3,"{"""": ""9%""}",187514,1,North America +2024-08-14,46499,1288,"[""Keyboard"", ""Headphones"", ""Charger""]",280.86,{},77227,1,Africa +2023-04-26,46500,6433,"[""Monitor""]",3222.23,"{""promo"": ""24%""}",143068,0,Asia +2023-04-21,46501,5386,"[""Monitor"", ""Phone""]",4465.56,{},148257,1,Africa +2024-10-09,46502,2979,"[""Headphones"", ""Keyboard"", ""Laptop""]",2773.09,"{""promo"": ""10%""}",54331,0,North America +2023-08-01,46503,7077,"[""Tablet""]",2264.04,{},260452,0,South America +2023-01-28,46504,7900,"[""Monitor""]",3533.31,{},243835,0,Africa +2024-12-31,46505,5354,"[""Headphones""]",4702.56,"{""promo"": ""27%""}",64706,0,North America +2023-02-17,46506,9882,"[""Monitor""]",2191.44,{},217930,0,North America +2024-07-23,46507,503,"[""Keyboard"", ""Phone""]",4614.08,"{""promo"": ""12%""}",70500,0,Europe +2023-11-15,46508,1417,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3487.59,"{""promo"": ""18%""}",156662,0,North America +2024-06-05,46509,6012,"[""Phone""]",2886.72,"{""loyalty"": ""22%""}",121766,0,Europe +2024-11-27,46510,7414,"[""Headphones"", ""Phone""]",311.39,"{"""": ""25%""}",199364,0,Africa +2024-09-26,46511,4119,"[""Laptop""]",2299.29,{},26646,0,South America +2024-01-26,46512,1176,"[""Monitor"", ""Charger""]",1015.75,"{""seasonal"": ""23%""}",24335,1,Asia +2024-08-31,46513,3268,"[""Tablet"", ""Laptop""]",4704.92,"{""promo"": ""20%""}",228499,1,South America +2023-11-26,46514,4554,"[""Charger""]",743.79,{},71897,0,Africa +2023-01-18,46515,70,"[""Tablet"", ""Laptop""]",154.79,{},55692,0,Asia +2024-01-13,46516,7131,"[""Monitor"", ""Charger""]",3660.71,{},107209,1,South America +2023-11-01,46517,8943,"[""Tablet"", ""Charger""]",2203.83,"{""promo"": ""16%""}",222487,1,North America +2023-10-21,46518,2181,"[""Tablet"", ""Keyboard""]",4326.64,{},89127,1,Africa +2024-11-29,46519,2310,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3435.88,{},86486,0,Europe +2023-02-18,46520,8671,"[""Headphones"", ""Charger""]",2134.59,"{""seasonal"": ""25%""}",134036,0,Africa +2024-12-19,46521,2069,"[""Monitor""]",905.14,{},212210,1,North America +2023-09-27,46522,5552,"[""Wireless Mouse""]",4814.85,{},187857,0,Africa +2024-03-05,46523,345,"[""Headphones"", ""Tablet""]",359.47,{},25502,0,South America +2024-05-17,46524,1996,"[""Charger"", ""Monitor""]",563.55,{},69758,1,Africa +2024-07-12,46525,5867,"[""Wireless Mouse"", ""Tablet""]",3945.92,{},290286,0,Asia +2024-12-14,46526,6425,"[""Phone"", ""Tablet""]",2370.58,{},36671,1,North America +2023-02-22,46527,90,"[""Wireless Mouse""]",1553.02,"{"""": ""23%""}",260494,0,Asia +2023-12-25,46528,2141,"[""Laptop""]",4849.77,{},206231,0,Europe +2023-04-16,46529,4123,"[""Headphones"", ""Tablet"", ""Phone""]",4927.15,"{""promo"": ""9%""}",294561,1,Europe +2023-07-10,46530,8245,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1396.35,{},268941,0,North America +2024-11-21,46531,4763,"[""Phone"", ""Charger"", ""Headphones""]",1537.06,"{""loyalty"": ""28%""}",160819,1,Europe +2023-12-18,46532,1972,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2400.05,{},4893,1,Europe +2023-01-12,46533,45,"[""Tablet"", ""Wireless Mouse""]",4355.75,"{"""": ""7%""}",48918,0,Europe +2023-07-27,46534,6815,"[""Headphones""]",4173.76,"{""promo"": ""6%""}",229641,1,North America +2023-04-27,46535,9,"[""Keyboard"", ""Monitor"", ""Phone""]",2213.85,{},201362,1,North America +2024-08-28,46536,4055,"[""Headphones""]",3547.41,{},35631,1,Africa +2023-06-20,46537,1387,"[""Monitor"", ""Wireless Mouse""]",4711.2,{},37176,1,Europe +2024-12-31,46538,7930,"[""Wireless Mouse""]",3990.17,"{""loyalty"": ""10%""}",203386,0,Europe +2024-01-04,46539,9383,"[""Wireless Mouse""]",4100.65,"{""seasonal"": ""26%""}",81023,1,North America +2023-02-18,46540,7635,"[""Laptop"", ""Monitor"", ""Phone""]",4139.0,{},255246,0,South America +2024-03-27,46541,6371,"[""Keyboard"", ""Charger""]",2285.35,"{""seasonal"": ""27%""}",66790,1,South America +2023-05-21,46542,3938,"[""Laptop""]",2146.73,{},68264,1,South America +2023-01-19,46543,4089,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4619.62,"{""loyalty"": ""20%""}",106462,0,South America +2023-05-21,46544,5985,"[""Wireless Mouse""]",2073.25,{},276080,0,South America +2023-03-31,46545,4115,"[""Charger""]",3969.62,"{""loyalty"": ""18%""}",217810,0,Asia +2024-08-08,46546,6076,"[""Laptop"", ""Tablet""]",1322.07,"{""seasonal"": ""13%""}",83691,1,Europe +2023-06-02,46547,2366,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1537.4,"{""promo"": ""12%""}",237120,0,South America +2023-09-26,46548,9005,"[""Keyboard"", ""Phone"", ""Tablet""]",2193.33,"{""seasonal"": ""30%""}",148528,0,Europe +2024-06-24,46549,9224,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1755.69,"{""promo"": ""30%""}",137074,0,North America +2024-12-19,46550,3581,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2559.78,{},16813,1,Europe +2023-08-09,46551,9281,"[""Wireless Mouse""]",1846.64,{},215426,1,Asia +2023-06-27,46552,4673,"[""Tablet"", ""Headphones""]",1671.19,"{""loyalty"": ""29%""}",164582,1,Africa +2023-08-27,46553,9900,"[""Monitor""]",429.4,"{""seasonal"": ""15%""}",50118,0,Africa +2024-06-14,46554,8442,"[""Keyboard"", ""Phone""]",3700.44,{},246067,1,Europe +2024-03-31,46555,2050,"[""Wireless Mouse""]",3114.32,"{""promo"": ""28%""}",61037,0,South America +2023-08-11,46556,1348,"[""Charger""]",3366.82,{},299922,0,Africa +2023-01-17,46557,9818,"[""Headphones""]",2452.8,"{""promo"": ""8%""}",297485,0,Europe +2023-09-02,46558,9231,"[""Keyboard"", ""Headphones"", ""Phone""]",1899.62,{},107975,1,Asia +2024-12-16,46559,6062,"[""Headphones"", ""Laptop""]",4402.3,{},46770,1,Asia +2024-10-07,46560,6946,"[""Keyboard"", ""Headphones""]",429.26,"{""loyalty"": ""20%""}",115386,1,South America +2024-02-03,46561,6784,"[""Keyboard""]",3870.21,"{""promo"": ""29%""}",218462,0,Africa +2023-04-04,46562,4825,"[""Phone"", ""Tablet""]",4182.41,{},273533,0,Europe +2023-05-19,46563,7428,"[""Tablet"", ""Wireless Mouse""]",2230.98,"{""promo"": ""5%""}",118975,0,Asia +2024-06-15,46564,6140,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4176.79,{},21179,1,Asia +2024-10-15,46565,8417,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2235.7,"{"""": ""6%""}",66232,0,Asia +2024-12-06,46566,7606,"[""Wireless Mouse""]",2232.48,"{""loyalty"": ""27%""}",38457,1,Europe +2024-11-08,46567,4342,"[""Charger""]",249.87,{},25813,0,South America +2023-02-25,46568,2104,"[""Keyboard""]",1864.51,"{""seasonal"": ""26%""}",167683,0,Asia +2024-04-11,46569,597,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",71.42,"{""seasonal"": ""18%""}",156872,1,North America +2023-07-11,46570,9627,"[""Phone""]",1683.92,{},186241,0,North America +2024-08-19,46571,3211,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3615.96,{},214155,1,Europe +2023-06-20,46572,4950,"[""Monitor""]",4886.73,{},76166,0,Africa +2023-08-12,46573,4353,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3040.46,{},196285,1,South America +2024-07-20,46574,95,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1364.93,"{""promo"": ""30%""}",135954,0,Europe +2024-01-13,46575,5136,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4227.15,"{""promo"": ""22%""}",277766,0,South America +2024-04-11,46576,675,"[""Keyboard"", ""Phone"", ""Laptop""]",1197.29,{},47877,0,Europe +2023-02-15,46577,398,"[""Keyboard""]",2574.12,{},261852,0,North America +2024-01-08,46578,8595,"[""Headphones"", ""Keyboard""]",2250.26,"{""loyalty"": ""6%""}",45595,0,Asia +2024-08-02,46579,5447,"[""Wireless Mouse""]",597.38,"{"""": ""23%""}",143602,1,Asia +2024-05-10,46580,774,"[""Laptop"", ""Keyboard""]",3390.12,{},56418,0,Africa +2023-05-18,46581,7485,"[""Wireless Mouse""]",3193.87,{},214307,1,North America +2023-05-19,46582,1379,"[""Phone"", ""Laptop"", ""Headphones""]",1314.66,{},206432,1,North America +2023-04-05,46583,4663,"[""Monitor"", ""Keyboard""]",2928.45,{},76149,0,Europe +2024-03-02,46584,9059,"[""Charger""]",1637.08,"{""loyalty"": ""25%""}",298662,0,South America +2023-04-21,46585,8811,"[""Monitor"", ""Laptop"", ""Charger""]",4937.48,{},296933,0,South America +2024-12-20,46586,9314,"[""Phone"", ""Keyboard""]",4355.28,"{""seasonal"": ""21%""}",43889,1,Asia +2023-04-04,46587,6589,"[""Tablet"", ""Laptop""]",566.76,"{"""": ""18%""}",10141,0,Europe +2023-02-26,46588,1611,"[""Monitor"", ""Tablet""]",661.2,"{"""": ""26%""}",247178,0,Asia +2023-01-05,46589,3452,"[""Charger""]",3570.74,{},278908,0,South America +2023-03-24,46590,6992,"[""Phone""]",1589.46,{},266490,0,Asia +2023-11-17,46591,6826,"[""Monitor"", ""Tablet""]",2339.53,"{""promo"": ""21%""}",299608,1,Europe +2024-12-30,46592,6356,"[""Headphones"", ""Keyboard"", ""Phone""]",507.57,"{""loyalty"": ""27%""}",217002,0,North America +2024-06-30,46593,247,"[""Monitor""]",353.82,"{""loyalty"": ""7%""}",261466,1,Asia +2024-08-30,46594,6424,"[""Phone"", ""Wireless Mouse""]",397.72,"{"""": ""22%""}",261457,0,North America +2023-12-15,46595,4434,"[""Laptop"", ""Headphones""]",1996.93,{},287621,0,Asia +2023-06-09,46596,5941,"[""Monitor"", ""Phone"", ""Charger""]",773.8,{},252318,1,North America +2024-07-03,46597,3070,"[""Laptop"", ""Charger"", ""Phone""]",4391.24,{},230119,0,South America +2024-04-12,46598,7801,"[""Tablet"", ""Monitor"", ""Phone""]",1728.1,{},25159,1,Europe +2024-01-11,46599,8176,"[""Wireless Mouse""]",296.47,"{""seasonal"": ""20%""}",47287,1,Africa +2024-09-09,46600,3296,"[""Laptop""]",232.13,"{""loyalty"": ""16%""}",110990,0,Asia +2023-12-28,46601,6579,"[""Laptop""]",653.39,{},70028,0,South America +2023-12-05,46602,6683,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3300.12,{},267421,0,South America +2024-03-05,46603,9346,"[""Phone"", ""Monitor""]",3691.69,"{"""": ""18%""}",51775,1,Asia +2023-02-23,46604,4904,"[""Tablet"", ""Keyboard"", ""Headphones""]",4623.14,{},137807,0,Asia +2024-06-28,46605,4342,"[""Headphones"", ""Wireless Mouse""]",1454.61,{},166393,1,South America +2024-09-21,46606,934,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3299.17,{},71947,0,North America +2023-06-20,46607,6298,"[""Keyboard"", ""Tablet"", ""Monitor""]",193.91,"{""loyalty"": ""23%""}",45074,1,North America +2024-04-04,46608,9266,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4430.12,"{""seasonal"": ""23%""}",25533,0,South America +2024-10-13,46609,453,"[""Phone""]",1738.17,{},55180,1,South America +2023-05-16,46610,7652,"[""Tablet"", ""Phone"", ""Monitor""]",236.49,{},170351,0,South America +2023-07-08,46611,7105,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1232.35,"{""promo"": ""5%""}",14496,0,Africa +2023-11-01,46612,2824,"[""Phone"", ""Charger"", ""Keyboard""]",1508.84,"{""seasonal"": ""24%""}",185548,1,North America +2023-03-01,46613,6090,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3838.95,"{""promo"": ""27%""}",273408,0,Africa +2023-10-25,46614,7289,"[""Monitor"", ""Laptop""]",680.12,"{""promo"": ""9%""}",277280,1,North America +2023-11-07,46615,7457,"[""Tablet"", ""Charger""]",4271.04,"{"""": ""7%""}",131093,1,North America +2023-10-24,46616,1724,"[""Charger""]",638.22,"{""promo"": ""20%""}",111910,0,North America +2024-01-24,46617,321,"[""Tablet"", ""Monitor""]",2081.53,{},262873,1,North America +2024-01-01,46618,9740,"[""Headphones"", ""Charger""]",333.26,"{""seasonal"": ""18%""}",88801,0,South America +2023-07-28,46619,7874,"[""Laptop"", ""Charger"", ""Phone""]",2427.87,{},142682,0,Asia +2024-10-20,46620,8561,"[""Wireless Mouse""]",2016.39,"{""promo"": ""24%""}",253158,0,South America +2024-05-18,46621,9630,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1607.98,"{""promo"": ""20%""}",295447,1,North America +2023-10-17,46622,3786,"[""Charger"", ""Monitor"", ""Laptop""]",2022.2,"{""loyalty"": ""8%""}",72432,0,South America +2023-11-22,46623,6790,"[""Headphones"", ""Monitor""]",1746.13,"{""seasonal"": ""29%""}",202195,0,Europe +2023-12-09,46624,9275,"[""Tablet"", ""Monitor"", ""Phone""]",2395.54,{},112708,0,South America +2024-06-06,46625,8962,"[""Laptop"", ""Keyboard"", ""Charger""]",169.76,{},39517,0,Asia +2024-07-24,46626,5742,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1449.85,"{""seasonal"": ""25%""}",122486,0,Asia +2023-08-24,46627,1960,"[""Tablet""]",1757.16,"{""loyalty"": ""5%""}",85202,1,Africa +2024-08-14,46628,8589,"[""Tablet"", ""Phone""]",852.85,{},97890,1,Asia +2024-12-12,46629,8611,"[""Phone""]",3015.18,{},161468,0,Africa +2023-09-28,46630,9585,"[""Headphones"", ""Laptop"", ""Keyboard""]",2730.66,{},201828,1,Africa +2023-05-07,46631,2269,"[""Headphones"", ""Laptop""]",1241.38,"{"""": ""27%""}",286468,1,Africa +2024-01-18,46632,1727,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2671.05,{},105868,0,South America +2023-03-31,46633,6204,"[""Laptop"", ""Phone"", ""Headphones""]",4320.06,{},69442,1,South America +2024-07-06,46634,7940,"[""Monitor""]",2734.87,{},198908,0,North America +2023-03-18,46635,7592,"[""Monitor"", ""Keyboard""]",1196.89,{},113134,1,Africa +2023-03-11,46636,6837,"[""Laptop""]",275.3,{},50324,0,North America +2023-05-16,46637,8639,"[""Monitor""]",2634.73,"{"""": ""12%""}",78619,0,Asia +2024-10-29,46638,6465,"[""Tablet""]",2577.12,{},64979,1,South America +2024-08-07,46639,2702,"[""Monitor"", ""Keyboard"", ""Charger""]",3475.63,{},240145,1,South America +2024-11-07,46640,594,"[""Charger""]",197.33,{},153794,1,South America +2024-09-02,46641,9112,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4656.94,"{""seasonal"": ""27%""}",106912,1,South America +2024-03-15,46642,4274,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4728.8,"{""loyalty"": ""14%""}",64325,0,Asia +2023-11-30,46643,8349,"[""Wireless Mouse"", ""Tablet""]",1282.35,{},262837,1,Europe +2023-12-27,46644,1463,"[""Phone""]",112.73,"{""loyalty"": ""18%""}",162102,0,Europe +2024-03-02,46645,3178,"[""Charger"", ""Laptop""]",877.51,"{""seasonal"": ""25%""}",189966,0,South America +2023-09-18,46646,2139,"[""Keyboard"", ""Monitor"", ""Phone""]",551.4,{},272875,0,Europe +2024-10-26,46647,9510,"[""Laptop"", ""Tablet""]",3433.54,{},139925,1,South America +2024-07-02,46648,3583,"[""Wireless Mouse""]",363.98,"{""promo"": ""12%""}",176183,0,Asia +2023-11-06,46649,87,"[""Tablet"", ""Phone""]",2164.08,{},108102,0,North America +2024-06-18,46650,8404,"[""Tablet""]",3260.89,"{""seasonal"": ""13%""}",145392,1,North America +2024-03-16,46651,9455,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1138.13,{},31673,0,South America +2024-09-27,46652,5945,"[""Laptop""]",3260.24,"{""seasonal"": ""25%""}",22726,0,South America +2023-06-30,46653,8815,"[""Charger"", ""Wireless Mouse""]",3364.21,"{""seasonal"": ""18%""}",15527,0,Europe +2023-03-03,46654,8941,"[""Phone"", ""Wireless Mouse""]",3662.01,{},242321,0,South America +2024-04-02,46655,5523,"[""Monitor"", ""Phone""]",1537.81,{},201935,0,Africa +2023-11-26,46656,1789,"[""Tablet"", ""Headphones""]",3203.48,{},114063,1,North America +2023-07-25,46657,7302,"[""Charger"", ""Wireless Mouse""]",1011.49,{},6390,1,North America +2023-10-22,46658,2417,"[""Keyboard""]",3461.96,{},230738,0,North America +2023-06-19,46659,1506,"[""Phone""]",1868.24,{},105346,0,Africa +2023-01-06,46660,517,"[""Keyboard"", ""Monitor"", ""Laptop""]",3316.5,"{""seasonal"": ""10%""}",68641,1,South America +2024-05-09,46661,6309,"[""Headphones"", ""Laptop""]",2009.55,"{""loyalty"": ""13%""}",109614,1,Europe +2024-11-06,46662,3284,"[""Charger"", ""Keyboard"", ""Headphones""]",4632.69,{},155195,1,Asia +2023-03-23,46663,3244,"[""Charger"", ""Tablet"", ""Phone""]",4824.62,"{""seasonal"": ""16%""}",247368,1,Africa +2023-07-29,46664,998,"[""Headphones""]",4278.88,{},160744,0,South America +2024-01-23,46665,4335,"[""Charger"", ""Wireless Mouse""]",3773.1,"{"""": ""24%""}",20835,0,Europe +2023-07-30,46666,312,"[""Monitor"", ""Phone"", ""Laptop""]",1348.4,{},109257,1,Africa +2023-05-10,46667,3634,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",575.25,"{""promo"": ""20%""}",165465,0,Europe +2024-07-13,46668,3478,"[""Tablet""]",4044.91,"{""promo"": ""22%""}",294438,0,Africa +2023-06-04,46669,6373,"[""Monitor""]",856.98,{},83231,0,South America +2023-09-27,46670,9715,"[""Headphones""]",938.71,{},248563,0,Europe +2023-12-13,46671,652,"[""Monitor""]",2948.73,{},154514,1,Africa +2023-04-26,46672,3837,"[""Laptop""]",4442.4,{},126230,0,Africa +2023-01-02,46673,9317,"[""Headphones"", ""Charger"", ""Phone""]",4345.72,{},246356,0,Europe +2024-05-05,46674,5887,"[""Phone""]",1601.03,"{""promo"": ""28%""}",166821,0,Asia +2023-12-29,46675,2230,"[""Phone""]",3771.2,"{""loyalty"": ""13%""}",264709,0,Asia +2024-04-01,46676,513,"[""Charger"", ""Tablet"", ""Keyboard""]",4901.07,{},261403,0,Europe +2023-09-10,46677,2277,"[""Tablet"", ""Headphones"", ""Charger""]",2296.96,{},63855,1,Asia +2023-11-10,46678,5103,"[""Keyboard"", ""Tablet""]",106.95,{},161763,1,North America +2024-04-17,46679,8506,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",372.84,"{""promo"": ""25%""}",141693,1,Asia +2024-09-12,46680,4473,"[""Phone""]",4125.46,"{""promo"": ""10%""}",121196,1,Asia +2024-07-15,46681,331,"[""Keyboard""]",2684.47,"{"""": ""9%""}",6571,1,Africa +2024-07-18,46682,9712,"[""Phone""]",2036.24,"{""seasonal"": ""23%""}",13848,1,Africa +2024-07-02,46683,1361,"[""Headphones"", ""Wireless Mouse""]",140.38,"{"""": ""29%""}",127624,0,Europe +2024-03-28,46684,9801,"[""Tablet""]",1335.0,{},193482,1,Asia +2024-01-01,46685,1883,"[""Headphones""]",2728.2,"{""seasonal"": ""13%""}",152750,0,Europe +2024-04-27,46686,5902,"[""Headphones""]",4981.07,"{""seasonal"": ""8%""}",27546,0,South America +2024-12-26,46687,9701,"[""Charger"", ""Tablet""]",3236.37,{},146394,1,Europe +2023-11-10,46688,6526,"[""Tablet""]",1325.46,"{""loyalty"": ""25%""}",237252,0,Europe +2023-09-12,46689,1197,"[""Phone"", ""Laptop""]",931.14,{},112989,1,South America +2024-03-09,46690,4589,"[""Keyboard"", ""Tablet""]",1872.01,"{""promo"": ""12%""}",214826,0,Africa +2023-01-06,46691,3786,"[""Keyboard""]",2897.87,"{""loyalty"": ""13%""}",38104,0,North America +2023-04-27,46692,6452,"[""Charger""]",3390.96,{},245224,0,North America +2024-05-05,46693,4316,"[""Wireless Mouse"", ""Headphones""]",643.19,"{""seasonal"": ""7%""}",246317,0,Europe +2023-05-21,46694,167,"[""Charger"", ""Headphones""]",527.74,"{""seasonal"": ""6%""}",2231,0,Africa +2023-07-12,46695,4166,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",969.07,{},32042,0,Asia +2024-11-30,46696,323,"[""Wireless Mouse""]",2458.74,"{""promo"": ""5%""}",11091,0,Europe +2024-03-04,46697,7512,"[""Tablet"", ""Headphones""]",3650.0,"{""promo"": ""24%""}",141589,0,Europe +2023-09-04,46698,7227,"[""Phone"", ""Tablet"", ""Laptop""]",3171.03,{},144256,0,South America +2024-12-18,46699,1366,"[""Keyboard""]",3296.46,{},246331,1,Africa +2023-02-24,46700,5382,"[""Headphones"", ""Laptop""]",3957.16,"{""loyalty"": ""25%""}",114224,0,Asia +2023-05-06,46701,9534,"[""Charger""]",2617.43,"{""promo"": ""10%""}",179794,0,Africa +2024-07-23,46702,9282,"[""Charger"", ""Wireless Mouse""]",3030.51,{},78006,1,South America +2024-05-19,46703,9879,"[""Keyboard"", ""Phone""]",2730.61,"{""seasonal"": ""17%""}",71172,0,South America +2023-11-06,46704,7563,"[""Keyboard""]",490.94,"{""loyalty"": ""16%""}",76547,0,Asia +2023-07-18,46705,177,"[""Phone"", ""Charger""]",2241.31,"{""seasonal"": ""28%""}",54874,0,Europe +2024-02-15,46706,8376,"[""Headphones""]",854.95,{},104238,1,Africa +2023-05-23,46707,1701,"[""Keyboard""]",1947.89,"{""promo"": ""18%""}",88954,0,Europe +2023-10-18,46708,7247,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1939.57,"{""seasonal"": ""16%""}",121578,1,Asia +2023-12-30,46709,4140,"[""Headphones"", ""Monitor""]",1924.42,{},196480,1,South America +2024-09-03,46710,917,"[""Charger""]",756.43,{},118713,1,Africa +2024-02-14,46711,8355,"[""Headphones""]",2270.69,"{""loyalty"": ""22%""}",54801,1,Africa +2023-01-06,46712,3800,"[""Keyboard"", ""Phone""]",236.96,{},251217,0,North America +2024-08-09,46713,8196,"[""Charger"", ""Tablet""]",858.39,"{""seasonal"": ""18%""}",77191,0,Asia +2024-05-11,46714,8874,"[""Wireless Mouse"", ""Phone""]",4810.69,"{""promo"": ""19%""}",145821,1,Asia +2024-11-19,46715,7238,"[""Monitor""]",4902.89,{},148196,1,Europe +2023-11-20,46716,5651,"[""Monitor"", ""Keyboard"", ""Charger""]",2232.14,{},126612,1,South America +2024-03-31,46717,1331,"[""Phone"", ""Monitor"", ""Charger""]",2532.28,"{""seasonal"": ""18%""}",69341,0,Africa +2023-10-05,46718,8287,"[""Phone"", ""Charger"", ""Headphones""]",1824.62,"{""promo"": ""27%""}",132043,1,Europe +2023-10-18,46719,3257,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",720.13,{},143181,0,Africa +2023-04-13,46720,1877,"[""Laptop""]",4931.96,{},69730,0,Europe +2023-08-14,46721,4410,"[""Laptop"", ""Headphones""]",993.74,"{""loyalty"": ""6%""}",79676,0,Africa +2023-03-06,46722,5840,"[""Tablet""]",3386.09,"{""loyalty"": ""27%""}",138976,1,South America +2023-08-26,46723,4683,"[""Keyboard"", ""Wireless Mouse""]",1376.4,{},239311,0,Europe +2023-06-07,46724,2253,"[""Tablet""]",2569.38,"{""seasonal"": ""14%""}",195193,1,Asia +2023-09-02,46725,1892,"[""Tablet"", ""Headphones""]",1229.82,{},4583,0,South America +2023-12-10,46726,9985,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4317.15,{},95319,0,Europe +2023-07-17,46727,899,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1068.94,{},198109,0,South America +2023-01-04,46728,1853,"[""Keyboard"", ""Monitor""]",820.19,"{""seasonal"": ""16%""}",290887,0,South America +2023-03-12,46729,6308,"[""Tablet"", ""Headphones""]",3856.84,{},187663,0,Africa +2023-03-09,46730,45,"[""Phone""]",1334.12,"{"""": ""24%""}",8938,1,North America +2024-02-20,46731,1815,"[""Keyboard"", ""Tablet"", ""Laptop""]",4433.28,"{""loyalty"": ""27%""}",116222,0,Africa +2023-10-10,46732,5003,"[""Tablet""]",1381.28,{},81284,0,Africa +2023-12-08,46733,5531,"[""Laptop""]",1662.47,"{""promo"": ""16%""}",9223,1,Africa +2023-01-06,46734,7771,"[""Phone""]",399.24,"{""seasonal"": ""12%""}",238503,1,South America +2023-11-18,46735,3739,"[""Charger"", ""Headphones""]",313.87,"{""seasonal"": ""10%""}",152095,0,Asia +2024-11-09,46736,2565,"[""Headphones""]",4760.04,{},239563,0,Asia +2023-06-11,46737,3116,"[""Keyboard"", ""Tablet"", ""Laptop""]",2328.17,"{""seasonal"": ""29%""}",241037,1,Asia +2024-12-30,46738,4423,"[""Keyboard""]",1219.84,"{"""": ""16%""}",293667,0,South America +2024-02-11,46739,5900,"[""Headphones""]",1227.25,{},142168,1,Europe +2024-04-07,46740,3297,"[""Charger""]",4758.26,{},269637,1,Africa +2024-06-23,46741,5187,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3926.66,{},93527,1,Europe +2024-07-09,46742,2113,"[""Headphones"", ""Keyboard"", ""Phone""]",382.48,"{""seasonal"": ""28%""}",143274,1,North America +2024-10-20,46743,3079,"[""Monitor"", ""Laptop"", ""Charger""]",1871.73,{},40979,1,Asia +2024-11-18,46744,5492,"[""Keyboard""]",1101.17,"{""promo"": ""9%""}",261907,1,North America +2024-06-24,46745,4472,"[""Phone"", ""Keyboard""]",419.84,"{""seasonal"": ""19%""}",175581,1,South America +2023-08-27,46746,1663,"[""Tablet"", ""Phone"", ""Headphones""]",3996.99,{},13827,0,South America +2024-09-03,46747,4199,"[""Laptop"", ""Tablet""]",113.25,{},149233,0,Europe +2024-03-23,46748,9607,"[""Phone""]",1319.19,{},169739,1,Asia +2023-06-10,46749,6774,"[""Laptop"", ""Headphones"", ""Keyboard""]",1185.43,"{""promo"": ""27%""}",177185,0,South America +2024-09-09,46750,8228,"[""Wireless Mouse"", ""Laptop""]",2780.76,{},227498,0,Asia +2024-05-09,46751,1637,"[""Phone"", ""Headphones""]",1764.12,"{""promo"": ""13%""}",283545,0,North America +2023-11-28,46752,6085,"[""Wireless Mouse"", ""Charger""]",3496.16,{},28921,0,Europe +2024-12-10,46753,8783,"[""Phone"", ""Laptop""]",2007.18,{},176140,0,Asia +2023-05-01,46754,2430,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",940.53,{},152226,0,North America +2023-11-24,46755,8327,"[""Keyboard"", ""Phone"", ""Monitor""]",986.2,{},82114,0,North America +2023-04-27,46756,2829,"[""Laptop"", ""Keyboard"", ""Headphones""]",2955.9,"{""seasonal"": ""6%""}",252109,1,South America +2024-11-03,46757,3526,"[""Keyboard""]",2605.59,{},231257,1,South America +2024-05-05,46758,7213,"[""Keyboard""]",1380.4,"{""seasonal"": ""8%""}",145858,1,Europe +2024-05-07,46759,9358,"[""Headphones"", ""Wireless Mouse""]",3578.48,"{""seasonal"": ""11%""}",147793,1,Asia +2023-12-26,46760,6392,"[""Laptop""]",2147.65,"{""promo"": ""15%""}",246592,0,Asia +2023-04-17,46761,7883,"[""Laptop"", ""Headphones"", ""Charger""]",4760.75,"{"""": ""8%""}",224415,0,North America +2024-09-08,46762,6501,"[""Headphones"", ""Tablet"", ""Phone""]",940.41,"{""seasonal"": ""20%""}",211495,0,Africa +2023-09-24,46763,4745,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4476.24,"{"""": ""10%""}",185043,1,Africa +2024-08-16,46764,5934,"[""Monitor"", ""Keyboard""]",2806.64,{},214381,0,Africa +2024-02-01,46765,6115,"[""Laptop""]",806.9,"{"""": ""19%""}",165809,0,Asia +2023-11-22,46766,2572,"[""Charger""]",2176.71,{},273718,0,Africa +2024-09-16,46767,6251,"[""Laptop""]",3921.48,"{""promo"": ""18%""}",136454,0,Europe +2024-12-28,46768,6682,"[""Headphones""]",1833.64,"{""promo"": ""15%""}",165876,1,North America +2023-05-28,46769,6116,"[""Charger"", ""Phone"", ""Keyboard""]",1289.39,{},237876,1,Asia +2024-08-14,46770,4234,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2257.28,{},132128,0,Asia +2024-06-03,46771,5816,"[""Wireless Mouse""]",4982.87,"{"""": ""29%""}",218882,0,North America +2024-07-27,46772,1636,"[""Keyboard""]",1828.57,"{""seasonal"": ""17%""}",2469,0,North America +2023-08-03,46773,6294,"[""Laptop"", ""Tablet""]",1428.8,{},90858,0,Asia +2024-11-15,46774,7410,"[""Headphones"", ""Laptop""]",1730.3,{},54973,1,Africa +2024-02-24,46775,5977,"[""Tablet"", ""Monitor""]",3911.97,"{""promo"": ""8%""}",193864,1,South America +2024-04-16,46776,903,"[""Wireless Mouse"", ""Keyboard""]",501.69,{},240403,1,Africa +2024-07-24,46777,6184,"[""Laptop"", ""Charger"", ""Keyboard""]",2569.53,{},290349,0,Europe +2023-03-31,46778,7910,"[""Headphones"", ""Phone""]",1319.43,"{""promo"": ""22%""}",281454,1,North America +2024-03-17,46779,2663,"[""Monitor"", ""Wireless Mouse""]",3204.61,"{"""": ""27%""}",246297,0,Asia +2024-01-08,46780,8750,"[""Monitor"", ""Wireless Mouse""]",2533.08,"{""promo"": ""30%""}",222003,0,Asia +2024-11-04,46781,5424,"[""Charger"", ""Tablet"", ""Monitor""]",1699.56,"{"""": ""10%""}",140623,0,North America +2023-10-22,46782,7691,"[""Headphones""]",4666.4,"{"""": ""15%""}",138613,1,Africa +2023-01-25,46783,1205,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2154.56,"{""promo"": ""11%""}",219829,0,Asia +2024-09-02,46784,961,"[""Tablet"", ""Keyboard"", ""Phone""]",835.06,"{"""": ""7%""}",20967,1,North America +2024-04-26,46785,2699,"[""Keyboard"", ""Charger""]",308.03,{},144403,1,Europe +2024-04-07,46786,8167,"[""Keyboard"", ""Laptop""]",4545.43,"{""promo"": ""20%""}",73147,0,South America +2023-06-02,46787,9046,"[""Tablet"", ""Headphones""]",3338.26,{},58095,1,Africa +2024-03-21,46788,1790,"[""Laptop"", ""Keyboard"", ""Tablet""]",4341.39,{},177887,1,South America +2023-03-09,46789,7957,"[""Charger"", ""Laptop"", ""Tablet""]",1087.19,"{"""": ""14%""}",242937,0,Europe +2024-08-23,46790,3390,"[""Tablet"", ""Wireless Mouse""]",3019.96,"{""loyalty"": ""7%""}",91682,0,Europe +2023-11-06,46791,1168,"[""Tablet"", ""Laptop"", ""Monitor""]",3385.89,"{""loyalty"": ""9%""}",148662,1,Asia +2023-03-04,46792,2017,"[""Monitor""]",305.81,"{""promo"": ""29%""}",71527,1,Africa +2024-11-20,46793,5038,"[""Keyboard""]",4975.95,"{""promo"": ""10%""}",15955,1,Europe +2023-10-10,46794,6653,"[""Phone""]",1767.56,"{""seasonal"": ""19%""}",299298,1,South America +2023-12-24,46795,7631,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3286.77,"{""loyalty"": ""28%""}",235990,0,North America +2023-12-06,46796,3705,"[""Phone"", ""Keyboard""]",1435.72,"{""seasonal"": ""11%""}",183959,0,Europe +2023-07-10,46797,4562,"[""Charger"", ""Monitor"", ""Phone""]",4920.07,{},107590,1,Europe +2024-01-19,46798,4683,"[""Keyboard"", ""Laptop""]",4247.74,"{""seasonal"": ""16%""}",172447,0,Europe +2024-09-07,46799,4564,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4708.82,{},142771,1,South America +2024-06-10,46800,9502,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2801.21,"{""seasonal"": ""19%""}",32484,0,South America +2023-05-04,46801,9456,"[""Charger"", ""Monitor"", ""Laptop""]",4705.82,{},44666,1,North America +2024-08-21,46802,6990,"[""Monitor"", ""Charger"", ""Keyboard""]",1740.07,{},47437,0,North America +2024-10-11,46803,1326,"[""Keyboard"", ""Tablet""]",1064.47,"{""loyalty"": ""5%""}",92769,0,Asia +2023-11-10,46804,4075,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2370.82,{},152892,0,South America +2023-05-20,46805,6050,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4175.42,"{""promo"": ""19%""}",87721,1,Europe +2024-09-23,46806,3005,"[""Tablet"", ""Keyboard""]",1272.99,"{""seasonal"": ""7%""}",299901,0,North America +2024-06-21,46807,4872,"[""Laptop"", ""Phone""]",500.23,{},118950,0,South America +2023-03-30,46808,264,"[""Keyboard""]",2947.64,{},169284,0,Europe +2024-12-17,46809,4464,"[""Tablet"", ""Laptop""]",1758.0,"{"""": ""30%""}",137989,0,Asia +2023-04-23,46810,8413,"[""Tablet""]",1577.58,"{""seasonal"": ""18%""}",207111,0,Asia +2023-04-01,46811,7031,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4688.86,{},145454,1,Africa +2024-11-29,46812,3899,"[""Headphones"", ""Laptop"", ""Charger""]",4182.02,"{""seasonal"": ""22%""}",7706,0,Europe +2023-10-05,46813,4911,"[""Monitor"", ""Headphones""]",4312.44,"{"""": ""26%""}",46335,1,North America +2024-06-23,46814,924,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2388.5,"{"""": ""29%""}",145940,0,North America +2024-12-05,46815,6674,"[""Wireless Mouse"", ""Laptop""]",249.99,"{""promo"": ""27%""}",267960,0,Asia +2023-07-24,46816,5886,"[""Wireless Mouse"", ""Phone""]",416.99,"{""promo"": ""9%""}",18629,1,Africa +2024-05-14,46817,3915,"[""Laptop""]",720.1,{},19345,1,Africa +2024-12-25,46818,4910,"[""Laptop""]",4683.16,"{""loyalty"": ""5%""}",266717,0,North America +2023-11-07,46819,8632,"[""Monitor"", ""Laptop"", ""Phone""]",633.62,{},285758,0,South America +2024-02-13,46820,4362,"[""Tablet""]",4718.32,{},235907,0,Asia +2024-04-30,46821,2228,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3589.81,"{""loyalty"": ""6%""}",261108,0,Europe +2023-02-08,46822,6823,"[""Keyboard""]",4132.95,{},119586,0,Europe +2023-04-17,46823,1421,"[""Headphones"", ""Charger""]",449.25,"{""promo"": ""27%""}",292278,0,Europe +2023-11-01,46824,2122,"[""Keyboard"", ""Monitor"", ""Phone""]",2213.68,{},298705,0,Europe +2023-06-24,46825,5882,"[""Phone"", ""Keyboard""]",211.67,"{""seasonal"": ""5%""}",283524,1,North America +2024-09-16,46826,5937,"[""Monitor"", ""Tablet""]",4683.9,"{""loyalty"": ""20%""}",162207,0,Europe +2024-04-17,46827,9590,"[""Charger""]",1116.72,"{""promo"": ""6%""}",110710,1,Africa +2024-11-12,46828,5371,"[""Headphones""]",63.32,"{""promo"": ""8%""}",69164,0,Asia +2024-01-28,46829,6652,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3120.01,{},206077,1,Africa +2024-05-18,46830,892,"[""Headphones""]",3968.03,"{""promo"": ""21%""}",260099,1,Africa +2023-08-30,46831,5411,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2750.16,"{""promo"": ""10%""}",257326,0,South America +2023-07-10,46832,5081,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",128.07,"{""promo"": ""15%""}",281639,0,Europe +2024-10-05,46833,1649,"[""Keyboard""]",4956.34,"{""loyalty"": ""16%""}",140049,0,Africa +2023-01-25,46834,8045,"[""Monitor"", ""Laptop""]",1079.89,"{""promo"": ""20%""}",47875,0,North America +2024-07-19,46835,695,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2077.85,"{""promo"": ""9%""}",177314,1,South America +2024-11-27,46836,7358,"[""Monitor"", ""Headphones""]",891.16,"{""promo"": ""7%""}",151713,1,Europe +2024-10-19,46837,206,"[""Tablet""]",3477.89,"{""seasonal"": ""26%""}",137351,1,Asia +2024-06-18,46838,8008,"[""Wireless Mouse"", ""Tablet""]",2473.39,"{""loyalty"": ""6%""}",293035,1,South America +2023-08-18,46839,5095,"[""Tablet"", ""Headphones""]",2219.09,"{""promo"": ""6%""}",172222,0,South America +2023-12-15,46840,9389,"[""Monitor"", ""Charger""]",658.85,{},8433,0,South America +2024-06-23,46841,7566,"[""Wireless Mouse""]",1813.8,"{""promo"": ""13%""}",270172,1,North America +2023-02-07,46842,6554,"[""Phone""]",4650.04,{},16692,0,Asia +2024-01-08,46843,2343,"[""Tablet"", ""Monitor"", ""Keyboard""]",2374.65,{},195872,1,Africa +2023-04-01,46844,9299,"[""Wireless Mouse"", ""Keyboard""]",3704.09,{},195357,1,South America +2023-09-23,46845,5467,"[""Charger""]",1431.92,"{"""": ""24%""}",112188,1,Asia +2023-03-31,46846,2965,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4055.04,"{"""": ""19%""}",43809,0,North America +2024-05-16,46847,5363,"[""Charger"", ""Headphones""]",3562.38,{},265323,1,Africa +2024-10-13,46848,4468,"[""Laptop""]",126.63,"{""loyalty"": ""29%""}",274330,1,Europe +2024-04-27,46849,5283,"[""Headphones"", ""Laptop"", ""Monitor""]",378.16,"{""promo"": ""13%""}",94722,1,Europe +2023-10-23,46850,7651,"[""Headphones"", ""Phone"", ""Laptop""]",66.92,{},138769,0,North America +2023-02-18,46851,6736,"[""Wireless Mouse"", ""Charger""]",863.08,{},285890,0,North America +2024-12-18,46852,9772,"[""Wireless Mouse""]",2407.22,{},36396,1,North America +2023-04-19,46853,7479,"[""Headphones""]",281.61,{},62675,1,North America +2023-10-17,46854,3618,"[""Phone""]",4509.65,{},5562,0,North America +2024-10-12,46855,4599,"[""Charger"", ""Phone"", ""Monitor""]",2768.44,"{""seasonal"": ""11%""}",240120,0,South America +2023-01-24,46856,6014,"[""Headphones"", ""Laptop"", ""Keyboard""]",1129.92,"{""promo"": ""9%""}",298730,0,Africa +2023-11-04,46857,8058,"[""Phone"", ""Tablet""]",1649.96,"{""promo"": ""13%""}",50666,0,North America +2023-10-25,46858,1516,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4375.52,"{""promo"": ""26%""}",95017,0,Africa +2024-08-02,46859,6280,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3199.02,"{""loyalty"": ""12%""}",45877,1,Europe +2024-08-10,46860,3635,"[""Wireless Mouse"", ""Charger""]",4925.86,"{"""": ""14%""}",221287,0,Asia +2023-08-12,46861,6132,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2179.54,"{""loyalty"": ""21%""}",99120,0,Africa +2024-10-22,46862,7325,"[""Monitor""]",4686.11,{},184992,0,Europe +2024-02-18,46863,8234,"[""Charger"", ""Wireless Mouse""]",4499.81,"{""loyalty"": ""11%""}",130373,1,Europe +2023-09-05,46864,4939,"[""Tablet"", ""Keyboard""]",399.46,"{"""": ""16%""}",196760,1,Europe +2023-04-29,46865,39,"[""Charger"", ""Keyboard"", ""Phone""]",1687.42,"{""seasonal"": ""16%""}",11079,1,Africa +2024-03-25,46866,8207,"[""Phone"", ""Laptop"", ""Monitor""]",4216.37,{},175331,1,South America +2024-11-29,46867,7206,"[""Headphones""]",4396.13,{},130337,0,Europe +2023-06-05,46868,5755,"[""Tablet"", ""Keyboard""]",4026.07,"{""promo"": ""5%""}",117001,1,Africa +2023-05-28,46869,9429,"[""Phone""]",4855.01,{},242372,1,Africa +2023-12-31,46870,3689,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1518.61,{},8957,1,North America +2024-03-21,46871,483,"[""Headphones""]",3473.51,"{""promo"": ""18%""}",78449,0,Europe +2023-04-24,46872,6716,"[""Charger""]",1873.18,{},126186,0,South America +2023-03-17,46873,2990,"[""Laptop""]",2379.28,"{""promo"": ""30%""}",215294,1,Africa +2024-10-30,46874,6587,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4430.61,"{""promo"": ""19%""}",164456,1,Asia +2024-07-13,46875,1103,"[""Tablet"", ""Laptop"", ""Headphones""]",3512.26,{},3812,1,South America +2024-02-28,46876,4411,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2516.92,"{""loyalty"": ""11%""}",14093,1,Europe +2023-08-05,46877,3873,"[""Phone"", ""Keyboard""]",4204.21,"{""promo"": ""13%""}",83766,1,Europe +2024-07-02,46878,3108,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2125.44,{},154894,1,North America +2023-05-29,46879,2456,"[""Charger"", ""Tablet""]",2583.93,{},179465,1,Africa +2024-04-24,46880,5749,"[""Monitor"", ""Headphones"", ""Charger""]",2178.36,{},294600,1,Europe +2024-02-19,46881,6453,"[""Tablet"", ""Phone"", ""Laptop""]",3806.16,"{""promo"": ""9%""}",14340,0,Africa +2023-05-18,46882,3618,"[""Monitor"", ""Keyboard"", ""Tablet""]",2406.19,"{""seasonal"": ""28%""}",81453,0,Europe +2024-07-28,46883,4108,"[""Laptop"", ""Wireless Mouse""]",148.74,{},5843,0,Europe +2023-09-12,46884,3352,"[""Wireless Mouse""]",4392.84,"{""loyalty"": ""19%""}",217072,0,South America +2023-06-29,46885,6236,"[""Charger"", ""Keyboard"", ""Laptop""]",1209.42,{},31018,0,North America +2024-06-15,46886,2790,"[""Wireless Mouse"", ""Charger""]",1135.22,"{""seasonal"": ""6%""}",207610,1,Africa +2023-10-28,46887,8170,"[""Tablet""]",2234.55,"{""promo"": ""7%""}",29966,1,North America +2024-12-30,46888,9614,"[""Headphones""]",2804.57,{},74894,1,Europe +2023-02-08,46889,6342,"[""Charger"", ""Keyboard""]",1864.62,{},172309,0,South America +2023-09-28,46890,1229,"[""Laptop""]",2140.72,{},122703,1,South America +2024-05-01,46891,1845,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",169.37,"{""seasonal"": ""8%""}",233341,0,South America +2023-02-10,46892,9887,"[""Phone"", ""Monitor""]",1430.45,{},287302,0,Europe +2023-07-23,46893,9022,"[""Laptop""]",3567.63,"{""loyalty"": ""13%""}",74840,1,Asia +2023-09-28,46894,5377,"[""Charger"", ""Tablet""]",1061.54,"{"""": ""16%""}",24051,0,Europe +2024-12-22,46895,9882,"[""Monitor"", ""Laptop""]",3292.61,"{"""": ""22%""}",35250,0,Europe +2024-10-04,46896,2484,"[""Monitor""]",4450.87,"{"""": ""27%""}",24597,0,North America +2023-11-21,46897,1474,"[""Tablet"", ""Wireless Mouse""]",1975.11,{},47883,1,North America +2023-03-12,46898,3232,"[""Charger"", ""Keyboard""]",4336.58,{},81081,0,Asia +2023-06-26,46899,103,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3557.55,"{""seasonal"": ""30%""}",146548,1,Europe +2023-02-24,46900,865,"[""Laptop"", ""Headphones""]",4427.06,{},149671,1,Africa +2023-03-21,46901,8408,"[""Headphones"", ""Phone"", ""Monitor""]",3751.56,{},109905,0,Europe +2023-03-27,46902,4340,"[""Headphones"", ""Laptop"", ""Tablet""]",942.1,"{"""": ""9%""}",131316,0,Asia +2023-09-19,46903,1650,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4484.55,"{"""": ""8%""}",163615,0,Asia +2024-12-31,46904,6002,"[""Monitor"", ""Headphones""]",2252.54,{},271728,0,Europe +2024-02-13,46905,3041,"[""Phone"", ""Headphones""]",4876.02,"{"""": ""9%""}",155779,1,Africa +2024-11-01,46906,5277,"[""Monitor""]",2270.23,"{""promo"": ""17%""}",107074,0,Africa +2024-01-27,46907,7109,"[""Laptop"", ""Wireless Mouse""]",2311.57,{},204303,0,Asia +2023-01-22,46908,5307,"[""Keyboard"", ""Headphones""]",3755.41,"{""promo"": ""13%""}",90576,1,Asia +2024-10-09,46909,1751,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3240.72,{},244439,1,South America +2023-09-09,46910,7994,"[""Wireless Mouse""]",4074.84,"{""seasonal"": ""9%""}",218883,0,Africa +2023-12-26,46911,4629,"[""Keyboard"", ""Wireless Mouse""]",1493.93,"{"""": ""5%""}",114734,0,North America +2024-07-31,46912,6264,"[""Wireless Mouse""]",2883.82,{},252599,1,North America +2024-08-11,46913,9990,"[""Headphones"", ""Wireless Mouse""]",1382.14,{},86531,1,Asia +2023-08-15,46914,5612,"[""Laptop"", ""Wireless Mouse""]",2606.24,{},106588,1,Africa +2024-10-13,46915,4426,"[""Tablet""]",329.18,"{""loyalty"": ""10%""}",216946,1,Europe +2024-10-05,46916,3813,"[""Tablet"", ""Wireless Mouse""]",4571.71,"{""promo"": ""24%""}",292414,0,North America +2023-10-08,46917,4939,"[""Keyboard"", ""Wireless Mouse""]",2829.37,{},173982,0,South America +2023-09-14,46918,4596,"[""Monitor"", ""Tablet""]",2286.02,{},185732,1,North America +2024-08-12,46919,3962,"[""Charger"", ""Keyboard"", ""Phone""]",4811.02,"{""seasonal"": ""10%""}",16939,1,Europe +2024-05-24,46920,8223,"[""Keyboard""]",2234.58,"{""promo"": ""8%""}",271531,0,Asia +2023-01-14,46921,3741,"[""Monitor"", ""Charger"", ""Tablet""]",1264.92,"{"""": ""22%""}",194114,1,Asia +2023-06-20,46922,628,"[""Charger"", ""Keyboard"", ""Phone""]",2101.46,"{"""": ""10%""}",165576,1,North America +2023-01-23,46923,9120,"[""Keyboard"", ""Tablet"", ""Headphones""]",3380.5,"{""seasonal"": ""11%""}",3121,0,Europe +2023-03-10,46924,5691,"[""Wireless Mouse"", ""Charger""]",4815.44,"{""loyalty"": ""13%""}",15834,0,South America +2023-09-24,46925,7,"[""Wireless Mouse"", ""Tablet""]",1409.31,"{""promo"": ""6%""}",145707,1,North America +2023-09-17,46926,784,"[""Laptop""]",364.0,"{""promo"": ""27%""}",226140,1,Africa +2023-01-12,46927,2468,"[""Laptop""]",1764.94,{},214203,0,Europe +2024-11-21,46928,6380,"[""Tablet"", ""Wireless Mouse""]",2965.92,"{""seasonal"": ""7%""}",126379,0,Africa +2023-12-02,46929,4878,"[""Headphones"", ""Keyboard"", ""Tablet""]",2185.29,{},124234,0,South America +2024-09-11,46930,6896,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1041.84,"{""loyalty"": ""10%""}",33157,1,Asia +2023-08-07,46931,9370,"[""Charger""]",231.15,"{""promo"": ""7%""}",53451,1,Asia +2024-10-30,46932,6245,"[""Laptop""]",1192.81,{},278758,0,South America +2023-12-29,46933,9381,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4521.87,"{"""": ""5%""}",240574,1,North America +2023-12-07,46934,8495,"[""Headphones"", ""Charger""]",296.51,{},222495,0,Asia +2024-12-30,46935,5125,"[""Headphones""]",2817.55,"{""seasonal"": ""21%""}",175337,1,North America +2023-10-29,46936,6273,"[""Keyboard"", ""Phone""]",4315.56,{},258935,1,Asia +2024-11-10,46937,9512,"[""Phone""]",2947.21,{},191218,1,Europe +2024-07-01,46938,5211,"[""Charger"", ""Laptop""]",3001.34,"{"""": ""15%""}",176987,0,South America +2024-09-25,46939,7900,"[""Charger""]",1689.59,{},78891,1,Europe +2023-12-06,46940,1083,"[""Phone"", ""Charger"", ""Headphones""]",562.6,{},1395,1,Asia +2024-07-24,46941,3696,"[""Charger"", ""Keyboard""]",1989.04,"{""seasonal"": ""13%""}",68062,1,Africa +2023-08-07,46942,7671,"[""Keyboard"", ""Monitor""]",1147.37,{},214562,0,North America +2023-01-26,46943,7442,"[""Headphones"", ""Tablet""]",1839.02,"{""promo"": ""15%""}",69149,1,Africa +2024-09-22,46944,3632,"[""Charger"", ""Headphones"", ""Keyboard""]",1957.63,{},232764,0,South America +2023-06-03,46945,6900,"[""Charger""]",60.48,"{""loyalty"": ""7%""}",67342,0,Asia +2024-07-11,46946,5956,"[""Charger"", ""Headphones"", ""Keyboard""]",863.61,{},240957,0,South America +2024-10-01,46947,5366,"[""Tablet"", ""Phone""]",3784.97,{},111584,0,Asia +2023-01-21,46948,1857,"[""Laptop"", ""Headphones"", ""Monitor""]",4529.48,{},285519,1,Africa +2024-06-09,46949,6837,"[""Keyboard"", ""Charger""]",4460.23,"{""promo"": ""26%""}",38505,0,Africa +2023-01-05,46950,2808,"[""Charger"", ""Keyboard""]",2318.36,{},157745,0,South America +2024-04-01,46951,1166,"[""Charger""]",2074.31,"{""loyalty"": ""20%""}",225020,0,Asia +2024-10-14,46952,8167,"[""Headphones""]",4520.46,{},220764,1,Europe +2023-09-08,46953,5876,"[""Wireless Mouse""]",4948.43,{},254962,1,Asia +2023-05-21,46954,9387,"[""Charger"", ""Keyboard"", ""Laptop""]",691.44,{},67846,0,Europe +2023-10-09,46955,6123,"[""Monitor"", ""Keyboard"", ""Headphones""]",4383.71,"{"""": ""25%""}",41317,1,North America +2023-01-28,46956,8125,"[""Monitor"", ""Laptop"", ""Phone""]",935.82,"{""loyalty"": ""6%""}",94264,1,North America +2023-07-01,46957,6031,"[""Headphones"", ""Phone""]",4299.78,{},227839,0,North America +2024-10-25,46958,7630,"[""Charger"", ""Tablet""]",1111.94,"{""loyalty"": ""25%""}",274328,0,Europe +2023-12-04,46959,7842,"[""Charger"", ""Phone""]",4001.64,{},45994,1,Africa +2023-01-17,46960,8242,"[""Phone"", ""Tablet""]",1866.4,"{""promo"": ""10%""}",142182,1,Africa +2023-11-19,46961,3032,"[""Laptop""]",4375.36,{},192896,1,Europe +2023-05-08,46962,1702,"[""Charger"", ""Headphones""]",4312.27,{},56652,0,Europe +2024-01-06,46963,7635,"[""Keyboard"", ""Laptop"", ""Tablet""]",2043.56,"{""loyalty"": ""21%""}",42302,0,North America +2023-10-01,46964,3832,"[""Tablet"", ""Phone"", ""Monitor""]",1884.7,"{""promo"": ""30%""}",29449,0,South America +2023-08-31,46965,4162,"[""Monitor"", ""Headphones"", ""Charger""]",2533.72,"{""promo"": ""9%""}",235402,0,Africa +2023-02-08,46966,7309,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4078.28,"{""loyalty"": ""23%""}",140974,0,North America +2023-09-09,46967,1464,"[""Keyboard""]",3134.79,{},168517,1,Africa +2023-08-19,46968,741,"[""Keyboard"", ""Monitor"", ""Headphones""]",2702.01,{},206283,1,Africa +2024-11-23,46969,156,"[""Phone""]",4598.95,{},45266,1,North America +2023-06-27,46970,6706,"[""Headphones"", ""Monitor""]",4335.39,"{"""": ""5%""}",299762,1,North America +2023-08-16,46971,5111,"[""Tablet"", ""Monitor""]",1919.18,{},195538,0,Europe +2023-11-01,46972,8537,"[""Wireless Mouse"", ""Tablet""]",1248.98,{},290436,1,North America +2024-12-23,46973,9300,"[""Phone"", ""Tablet"", ""Charger""]",3628.43,"{"""": ""23%""}",58614,0,Europe +2023-08-01,46974,5355,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4791.45,"{""seasonal"": ""14%""}",122638,0,North America +2024-02-17,46975,69,"[""Keyboard""]",125.93,{},109291,0,North America +2024-07-08,46976,449,"[""Headphones"", ""Phone""]",4271.52,"{"""": ""5%""}",200590,0,North America +2023-12-19,46977,2003,"[""Wireless Mouse"", ""Charger""]",3532.68,"{""seasonal"": ""8%""}",106825,0,South America +2024-03-25,46978,4175,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3512.09,{},8294,0,South America +2024-06-21,46979,8614,"[""Wireless Mouse""]",3381.35,"{""loyalty"": ""19%""}",218294,0,Asia +2023-12-01,46980,4166,"[""Phone""]",4883.75,{},167862,1,Europe +2024-11-27,46981,107,"[""Phone"", ""Wireless Mouse""]",2083.66,"{""seasonal"": ""10%""}",262223,1,Asia +2023-07-09,46982,5298,"[""Monitor"", ""Headphones"", ""Laptop""]",4638.71,"{"""": ""15%""}",79377,1,South America +2024-02-13,46983,1832,"[""Tablet""]",2037.31,"{""loyalty"": ""5%""}",165289,1,Europe +2024-06-09,46984,7241,"[""Laptop"", ""Charger""]",2949.36,"{"""": ""30%""}",214453,1,North America +2024-01-14,46985,3721,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4110.54,"{""seasonal"": ""27%""}",279069,0,Europe +2023-07-25,46986,2597,"[""Monitor"", ""Headphones""]",603.3,{},2660,0,Asia +2024-07-14,46987,6541,"[""Keyboard"", ""Headphones"", ""Phone""]",2944.56,"{""loyalty"": ""11%""}",166821,0,Africa +2024-07-13,46988,6874,"[""Laptop""]",1821.22,"{"""": ""29%""}",153675,1,Europe +2023-08-11,46989,9082,"[""Phone"", ""Tablet""]",443.1,"{"""": ""22%""}",60157,1,Asia +2024-04-06,46990,6228,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4638.27,{},63401,0,Asia +2024-01-16,46991,9720,"[""Tablet""]",1120.27,"{""seasonal"": ""9%""}",293521,1,North America +2023-12-30,46992,1231,"[""Keyboard""]",3277.63,"{""loyalty"": ""22%""}",53245,0,North America +2023-10-04,46993,3952,"[""Wireless Mouse""]",2034.28,{},49331,1,Africa +2024-07-08,46994,8504,"[""Wireless Mouse"", ""Laptop""]",1424.54,"{""promo"": ""5%""}",20181,0,Africa +2024-04-05,46995,7260,"[""Headphones"", ""Phone""]",3583.49,"{"""": ""11%""}",193783,0,Europe +2024-01-31,46996,7813,"[""Laptop"", ""Monitor""]",4346.07,"{""seasonal"": ""20%""}",62809,0,Europe +2024-11-30,46997,9387,"[""Laptop""]",3023.02,{},215083,1,North America +2023-10-09,46998,5118,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2154.69,{},114782,1,Africa +2023-09-16,46999,5981,"[""Monitor""]",3410.12,{},189314,1,South America +2023-05-10,47000,6396,"[""Phone"", ""Laptop""]",2311.44,{},166131,0,Europe +2023-04-29,47001,4976,"[""Monitor""]",3174.18,{},63280,1,North America +2023-03-12,47002,7485,"[""Monitor""]",4114.29,{},184593,0,Europe +2023-09-27,47003,1666,"[""Tablet"", ""Laptop"", ""Keyboard""]",535.31,{},11905,0,North America +2023-06-13,47004,5209,"[""Wireless Mouse"", ""Charger""]",3087.25,{},223977,1,South America +2023-10-04,47005,5667,"[""Wireless Mouse""]",1040.26,{},13427,0,Asia +2024-02-28,47006,5005,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3545.33,{},231714,1,North America +2024-05-27,47007,6291,"[""Phone"", ""Monitor""]",2761.26,{},91382,1,Africa +2023-04-27,47008,1861,"[""Headphones""]",3155.9,{},133189,1,Africa +2024-02-11,47009,3571,"[""Phone"", ""Tablet"", ""Headphones""]",4311.95,{},267570,0,Asia +2023-07-14,47010,7653,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3845.09,{},182590,1,Asia +2023-06-25,47011,183,"[""Headphones"", ""Charger"", ""Phone""]",3999.13,{},149169,1,Africa +2024-01-10,47012,3070,"[""Phone"", ""Laptop""]",1224.43,"{"""": ""22%""}",209844,0,Europe +2024-04-02,47013,627,"[""Wireless Mouse"", ""Charger""]",3318.53,"{""promo"": ""15%""}",95211,0,Africa +2024-09-27,47014,2738,"[""Tablet""]",994.28,"{"""": ""30%""}",19049,1,South America +2024-06-06,47015,2553,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4806.6,{},272325,1,South America +2023-12-27,47016,702,"[""Laptop"", ""Keyboard"", ""Monitor""]",3749.34,{},200130,1,Africa +2024-02-02,47017,9897,"[""Tablet""]",1796.9,"{""loyalty"": ""9%""}",14166,1,Europe +2024-03-25,47018,4620,"[""Wireless Mouse""]",752.97,"{"""": ""22%""}",44787,1,Europe +2023-12-19,47019,1609,"[""Wireless Mouse"", ""Monitor""]",4384.14,{},179823,1,North America +2024-01-01,47020,4122,"[""Keyboard"", ""Phone""]",3022.25,{},59257,0,Asia +2024-07-13,47021,9229,"[""Phone"", ""Laptop"", ""Keyboard""]",4752.53,"{"""": ""5%""}",119602,0,South America +2024-05-02,47022,7011,"[""Charger""]",3162.85,"{""loyalty"": ""26%""}",169783,1,South America +2023-05-01,47023,3897,"[""Tablet"", ""Keyboard""]",3970.66,{},287536,0,Europe +2023-07-03,47024,6738,"[""Phone"", ""Charger"", ""Laptop""]",191.79,{},11231,0,South America +2024-04-05,47025,319,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4233.32,"{"""": ""19%""}",94028,1,Europe +2024-10-19,47026,7143,"[""Phone"", ""Wireless Mouse""]",2501.97,{},80335,1,North America +2023-02-11,47027,5748,"[""Wireless Mouse"", ""Laptop""]",1204.21,"{""promo"": ""15%""}",67178,0,Europe +2024-11-18,47028,5852,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1190.66,"{""seasonal"": ""10%""}",172494,1,Asia +2024-12-23,47029,8788,"[""Monitor"", ""Headphones""]",209.6,{},82973,0,Africa +2024-05-23,47030,2032,"[""Keyboard"", ""Headphones""]",522.73,"{"""": ""8%""}",119803,1,Asia +2023-05-06,47031,5489,"[""Wireless Mouse"", ""Keyboard""]",1678.13,"{""seasonal"": ""16%""}",132583,0,Africa +2024-01-17,47032,5985,"[""Tablet""]",1402.79,"{"""": ""24%""}",20196,1,North America +2024-08-14,47033,2716,"[""Phone"", ""Charger"", ""Tablet""]",4787.13,"{""seasonal"": ""12%""}",259613,0,Asia +2023-08-31,47034,6772,"[""Charger""]",2764.84,"{""loyalty"": ""11%""}",68101,1,Africa +2024-02-09,47035,4030,"[""Monitor"", ""Wireless Mouse""]",2006.18,{},250516,0,North America +2023-05-27,47036,3258,"[""Tablet"", ""Phone"", ""Laptop""]",1659.2,{},130469,0,Asia +2024-06-25,47037,2887,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3749.03,"{"""": ""22%""}",277991,0,Africa +2023-06-01,47038,9883,"[""Monitor"", ""Headphones""]",3973.7,"{""seasonal"": ""25%""}",199941,0,Africa +2024-07-24,47039,6279,"[""Wireless Mouse"", ""Headphones""]",918.35,{},105431,0,Europe +2023-04-05,47040,1665,"[""Charger"", ""Phone"", ""Monitor""]",3458.88,{},276312,0,North America +2023-12-16,47041,9305,"[""Charger""]",4026.47,{},128019,0,Africa +2024-06-25,47042,58,"[""Phone""]",3081.94,{},47288,0,South America +2024-05-29,47043,8992,"[""Phone"", ""Laptop""]",4253.51,{},262679,1,South America +2023-02-20,47044,9237,"[""Keyboard"", ""Laptop"", ""Phone""]",4747.96,{},99579,1,Africa +2023-03-04,47045,4285,"[""Phone"", ""Headphones""]",3869.83,{},200493,0,Europe +2023-10-07,47046,9349,"[""Keyboard"", ""Phone""]",1961.0,{},116508,0,North America +2024-06-23,47047,6078,"[""Phone"", ""Keyboard""]",3541.51,"{"""": ""26%""}",58389,0,Europe +2024-03-11,47048,1068,"[""Laptop"", ""Headphones"", ""Tablet""]",303.63,{},176660,1,North America +2023-07-09,47049,205,"[""Headphones"", ""Phone"", ""Keyboard""]",1512.84,{},276025,1,Europe +2023-03-12,47050,9787,"[""Monitor"", ""Laptop"", ""Headphones""]",995.82,"{""loyalty"": ""25%""}",207299,0,North America +2023-07-23,47051,4332,"[""Phone""]",4733.36,"{""loyalty"": ""10%""}",20673,1,Africa +2023-05-27,47052,2489,"[""Monitor"", ""Tablet""]",102.2,"{""loyalty"": ""25%""}",94841,1,North America +2023-04-29,47053,1769,"[""Charger""]",4122.36,{},164194,0,Asia +2024-07-15,47054,5009,"[""Keyboard""]",4286.45,{},298405,1,North America +2024-08-16,47055,5593,"[""Tablet"", ""Laptop"", ""Charger""]",1063.26,"{"""": ""21%""}",66433,1,Europe +2023-09-20,47056,646,"[""Keyboard""]",308.64,"{""loyalty"": ""28%""}",185122,0,Asia +2023-12-03,47057,2940,"[""Wireless Mouse"", ""Charger""]",320.82,{},40996,1,Europe +2023-04-22,47058,7074,"[""Keyboard"", ""Monitor""]",203.25,{},26476,1,Asia +2023-12-18,47059,9076,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1397.35,"{""loyalty"": ""7%""}",98983,0,Africa +2023-12-19,47060,8215,"[""Charger"", ""Headphones""]",3331.23,{},143447,0,North America +2023-07-13,47061,800,"[""Laptop""]",4642.6,"{"""": ""13%""}",48071,0,Africa +2024-12-24,47062,9720,"[""Tablet"", ""Wireless Mouse""]",1402.61,{},263573,1,South America +2024-10-09,47063,9688,"[""Laptop"", ""Phone"", ""Charger""]",2290.12,"{""promo"": ""5%""}",46603,1,Africa +2024-03-02,47064,9818,"[""Charger"", ""Tablet"", ""Keyboard""]",3238.85,"{""loyalty"": ""22%""}",216954,1,South America +2024-04-27,47065,4095,"[""Charger"", ""Headphones"", ""Tablet""]",1936.81,"{""promo"": ""25%""}",47583,0,Africa +2023-02-14,47066,5977,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4536.94,"{""seasonal"": ""18%""}",139921,0,North America +2024-10-07,47067,4888,"[""Phone"", ""Tablet"", ""Charger""]",2879.1,{},174020,1,North America +2023-10-31,47068,8857,"[""Phone"", ""Charger"", ""Laptop""]",4396.68,{},161582,0,North America +2023-08-05,47069,1476,"[""Headphones""]",3762.68,{},54908,1,Europe +2023-01-11,47070,7793,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4429.66,{},266428,0,North America +2024-04-05,47071,4460,"[""Headphones""]",2559.73,"{""seasonal"": ""22%""}",168720,0,Africa +2024-01-21,47072,8898,"[""Keyboard"", ""Charger"", ""Phone""]",3951.81,"{""loyalty"": ""20%""}",221693,1,South America +2024-04-12,47073,5091,"[""Headphones""]",3007.31,{},25534,1,South America +2024-06-28,47074,9002,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2821.12,{},52271,1,North America +2023-11-25,47075,3273,"[""Charger"", ""Tablet""]",724.79,{},276077,1,Europe +2023-03-27,47076,1765,"[""Tablet"", ""Laptop""]",2165.17,{},176893,1,South America +2023-01-17,47077,3355,"[""Monitor"", ""Keyboard"", ""Charger""]",2323.22,{},254029,0,Asia +2023-09-01,47078,4433,"[""Phone""]",4211.78,{},292162,1,Europe +2023-08-06,47079,7702,"[""Laptop"", ""Tablet""]",1706.6,"{""loyalty"": ""11%""}",154649,1,North America +2023-07-10,47080,8390,"[""Wireless Mouse""]",3858.4,{},163088,1,North America +2024-02-26,47081,4082,"[""Laptop"", ""Charger""]",3675.97,"{"""": ""16%""}",175866,0,Africa +2023-04-17,47082,2511,"[""Charger"", ""Wireless Mouse""]",2763.82,{},28313,1,Africa +2024-06-12,47083,6873,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2937.82,{},257913,1,Europe +2024-01-08,47084,2819,"[""Keyboard""]",3803.52,"{""loyalty"": ""13%""}",20433,1,Europe +2024-02-17,47085,6697,"[""Wireless Mouse""]",2324.75,"{""seasonal"": ""16%""}",24978,1,South America +2024-08-28,47086,3097,"[""Laptop""]",3917.69,{},211596,1,Asia +2024-03-13,47087,7786,"[""Monitor""]",2473.54,{},2540,0,Africa +2023-01-21,47088,1979,"[""Phone""]",2748.26,{},238572,0,North America +2023-03-15,47089,2166,"[""Charger""]",4902.23,"{""promo"": ""24%""}",88723,1,North America +2024-01-24,47090,9663,"[""Monitor""]",2116.46,{},37428,1,Asia +2023-09-16,47091,9319,"[""Headphones"", ""Laptop""]",779.46,{},73923,0,Europe +2024-06-19,47092,5584,"[""Wireless Mouse"", ""Keyboard""]",2678.09,"{""loyalty"": ""19%""}",18322,0,Europe +2023-01-24,47093,3786,"[""Charger"", ""Tablet"", ""Laptop""]",253.47,{},225510,1,North America +2023-12-17,47094,7917,"[""Wireless Mouse""]",4320.13,"{""loyalty"": ""27%""}",221097,0,Europe +2023-06-17,47095,193,"[""Laptop"", ""Headphones"", ""Charger""]",1984.52,{},241328,0,Asia +2024-07-24,47096,7692,"[""Monitor""]",3428.71,"{"""": ""20%""}",278252,1,Africa +2024-04-23,47097,6619,"[""Headphones""]",950.38,"{""seasonal"": ""29%""}",283763,0,North America +2023-08-16,47098,4990,"[""Charger"", ""Laptop""]",454.19,"{""seasonal"": ""14%""}",68877,0,Europe +2023-11-17,47099,814,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1212.2,"{""seasonal"": ""7%""}",19053,1,Asia +2023-02-19,47100,5506,"[""Charger"", ""Headphones"", ""Monitor""]",272.7,"{""loyalty"": ""24%""}",246679,1,North America +2024-04-10,47101,2259,"[""Wireless Mouse""]",2422.7,"{""seasonal"": ""9%""}",70398,0,Europe +2024-02-22,47102,1203,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2513.99,{},190581,1,Europe +2023-08-17,47103,8633,"[""Wireless Mouse"", ""Phone""]",154.82,{},234849,0,Europe +2024-09-21,47104,8578,"[""Charger"", ""Keyboard""]",1221.8,{},98905,0,Africa +2023-04-01,47105,8042,"[""Wireless Mouse""]",4168.15,"{"""": ""15%""}",219693,1,Europe +2024-07-22,47106,26,"[""Wireless Mouse"", ""Tablet""]",4212.07,{},93929,0,North America +2023-02-14,47107,2969,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",303.51,"{""seasonal"": ""30%""}",246101,0,Africa +2023-09-20,47108,939,"[""Keyboard""]",3263.87,{},298157,0,Asia +2024-05-25,47109,9133,"[""Wireless Mouse"", ""Headphones""]",3217.16,"{"""": ""7%""}",23080,1,South America +2024-08-24,47110,3285,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3955.63,{},261078,1,Asia +2024-10-14,47111,4227,"[""Monitor"", ""Laptop""]",4615.49,"{""promo"": ""11%""}",152455,1,Africa +2023-10-26,47112,8319,"[""Monitor"", ""Laptop"", ""Charger""]",2086.86,{},131325,0,Europe +2023-02-17,47113,4729,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1637.08,{},45777,1,Asia +2023-06-26,47114,7064,"[""Monitor""]",3705.73,"{"""": ""6%""}",173100,0,South America +2023-02-03,47115,262,"[""Charger"", ""Headphones"", ""Monitor""]",2289.79,{},53548,0,Asia +2023-10-13,47116,1441,"[""Keyboard"", ""Wireless Mouse""]",1095.51,{},259800,0,Europe +2023-12-22,47117,1016,"[""Monitor"", ""Laptop""]",3443.47,{},84990,0,North America +2023-12-10,47118,2191,"[""Monitor"", ""Laptop""]",3172.25,"{""seasonal"": ""24%""}",15937,0,South America +2024-01-03,47119,5891,"[""Monitor"", ""Charger""]",4240.04,"{"""": ""23%""}",207860,1,Africa +2023-06-08,47120,1626,"[""Charger"", ""Laptop""]",3251.58,"{""promo"": ""16%""}",240635,0,Africa +2023-04-20,47121,8319,"[""Keyboard""]",629.67,{},263829,0,Africa +2024-05-20,47122,4926,"[""Wireless Mouse""]",3206.11,"{""seasonal"": ""14%""}",36356,0,North America +2023-07-07,47123,5131,"[""Phone"", ""Keyboard""]",4464.44,"{""promo"": ""26%""}",244869,1,Asia +2023-08-02,47124,4219,"[""Phone"", ""Keyboard"", ""Charger""]",2850.23,{},189094,0,Asia +2024-08-03,47125,5318,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2585.23,"{""promo"": ""30%""}",189207,1,Africa +2024-05-17,47126,289,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2334.44,"{"""": ""18%""}",60570,1,Europe +2024-04-19,47127,2699,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4844.34,{},267673,1,North America +2024-04-26,47128,2491,"[""Monitor"", ""Charger"", ""Laptop""]",1643.82,{},213371,1,Africa +2024-04-10,47129,3374,"[""Tablet"", ""Wireless Mouse""]",161.11,{},78649,1,Africa +2024-07-26,47130,1927,"[""Laptop""]",2338.75,"{""seasonal"": ""9%""}",107613,0,South America +2023-05-16,47131,2149,"[""Tablet""]",4781.35,"{"""": ""22%""}",197575,1,Asia +2024-05-10,47132,8116,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3142.1,{},12202,1,Europe +2024-10-26,47133,8181,"[""Keyboard""]",4369.07,"{"""": ""22%""}",274165,0,Europe +2024-06-06,47134,2627,"[""Phone"", ""Tablet"", ""Laptop""]",1652.88,{},259682,0,South America +2023-07-02,47135,4605,"[""Keyboard""]",4749.79,{},266286,1,Europe +2024-04-26,47136,1582,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",398.94,"{""loyalty"": ""16%""}",224364,1,Africa +2024-09-07,47137,8171,"[""Tablet""]",2505.58,{},71070,0,North America +2023-01-28,47138,8730,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2304.16,{},161334,1,North America +2023-08-19,47139,8001,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1799.86,"{""seasonal"": ""22%""}",227957,1,North America +2024-06-08,47140,6839,"[""Phone""]",3571.94,"{"""": ""15%""}",26385,1,Africa +2023-03-24,47141,1048,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",606.54,{},172962,1,North America +2023-02-13,47142,319,"[""Monitor""]",4298.93,{},221155,1,Asia +2024-11-10,47143,6945,"[""Laptop"", ""Tablet""]",2716.26,{},217737,0,South America +2023-03-03,47144,5188,"[""Charger"", ""Phone""]",4797.65,{},146070,0,South America +2023-01-02,47145,8280,"[""Phone"", ""Laptop""]",3227.59,{},96806,0,South America +2024-07-23,47146,9737,"[""Keyboard"", ""Headphones""]",4254.28,"{""seasonal"": ""29%""}",230708,0,Europe +2023-02-16,47147,1652,"[""Monitor"", ""Keyboard""]",1016.97,"{""loyalty"": ""16%""}",284875,0,South America +2023-05-23,47148,4604,"[""Phone"", ""Charger"", ""Monitor""]",1524.06,{},247006,1,South America +2023-06-03,47149,4020,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3949.97,"{""loyalty"": ""6%""}",276174,0,South America +2024-09-12,47150,9877,"[""Keyboard"", ""Tablet"", ""Laptop""]",1301.35,{},201735,0,South America +2023-06-01,47151,6227,"[""Monitor"", ""Laptop""]",956.14,"{""promo"": ""19%""}",241138,1,Africa +2024-09-26,47152,9344,"[""Headphones"", ""Laptop""]",2617.76,"{"""": ""7%""}",245203,0,Africa +2023-09-09,47153,5871,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1236.69,{},88961,1,North America +2023-02-25,47154,8261,"[""Laptop""]",3146.76,{},111275,0,Asia +2023-07-16,47155,3867,"[""Wireless Mouse"", ""Laptop""]",3470.21,{},293387,0,South America +2023-07-10,47156,9349,"[""Wireless Mouse"", ""Phone""]",4649.97,{},6127,1,Africa +2024-04-27,47157,809,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",197.21,"{""loyalty"": ""12%""}",74531,1,South America +2023-08-20,47158,4942,"[""Laptop"", ""Tablet""]",2213.67,{},134436,1,Europe +2023-05-22,47159,9438,"[""Tablet"", ""Headphones""]",2870.58,{},284421,1,Asia +2024-04-17,47160,3626,"[""Laptop""]",1547.06,{},116879,0,North America +2023-11-26,47161,7329,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2979.2,"{"""": ""21%""}",47534,0,South America +2023-03-30,47162,5650,"[""Laptop""]",3061.4,"{""seasonal"": ""16%""}",122609,1,Europe +2023-05-11,47163,7578,"[""Laptop""]",2657.88,{},216876,0,Asia +2023-02-23,47164,9551,"[""Tablet"", ""Charger"", ""Phone""]",1572.04,"{""seasonal"": ""16%""}",258231,0,Europe +2023-03-04,47165,1494,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2064.75,{},292270,1,Africa +2024-06-18,47166,504,"[""Headphones""]",4691.28,{},248744,1,South America +2024-03-02,47167,2802,"[""Wireless Mouse""]",1712.35,{},138333,1,Europe +2024-11-15,47168,8941,"[""Tablet""]",4784.3,"{""promo"": ""12%""}",86068,1,South America +2023-11-03,47169,3126,"[""Laptop"", ""Wireless Mouse""]",4762.7,"{"""": ""30%""}",22869,0,Africa +2023-12-09,47170,8157,"[""Laptop"", ""Monitor""]",1078.01,{},274504,0,North America +2023-09-08,47171,8994,"[""Wireless Mouse"", ""Monitor""]",4812.82,{},286472,1,Asia +2024-03-24,47172,5031,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4234.29,{},69346,1,Africa +2024-01-10,47173,9916,"[""Charger""]",4090.11,"{"""": ""24%""}",275642,1,Asia +2024-12-29,47174,2749,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",311.91,"{""loyalty"": ""12%""}",83476,1,Asia +2024-08-16,47175,4189,"[""Wireless Mouse"", ""Headphones""]",1362.43,{},42115,1,North America +2024-10-17,47176,6312,"[""Keyboard"", ""Monitor""]",633.7,"{""promo"": ""5%""}",11325,1,South America +2023-02-07,47177,1908,"[""Laptop""]",3963.66,"{"""": ""7%""}",122970,0,Asia +2024-10-19,47178,8147,"[""Laptop"", ""Headphones""]",4872.45,{},223813,1,Europe +2024-06-21,47179,998,"[""Tablet""]",4528.12,{},211093,0,Europe +2023-12-28,47180,1237,"[""Phone""]",4741.53,{},21801,0,Asia +2024-02-21,47181,4193,"[""Tablet"", ""Keyboard""]",4900.01,"{"""": ""6%""}",277575,0,North America +2023-08-28,47182,982,"[""Monitor"", ""Keyboard""]",87.36,{},159743,1,Europe +2024-01-15,47183,8372,"[""Charger"", ""Monitor"", ""Headphones""]",2626.27,{},120307,0,Asia +2024-12-31,47184,8607,"[""Keyboard""]",1377.63,{},36548,1,Europe +2024-05-13,47185,9906,"[""Charger"", ""Phone""]",544.28,{},126465,1,North America +2023-12-31,47186,8278,"[""Tablet""]",435.44,{},263804,1,South America +2024-02-05,47187,5456,"[""Laptop""]",3867.34,{},9077,1,Asia +2023-08-06,47188,6118,"[""Laptop"", ""Charger""]",2298.47,{},75781,0,South America +2023-10-11,47189,5221,"[""Headphones""]",490.38,"{"""": ""25%""}",137020,1,Europe +2023-03-24,47190,9058,"[""Charger""]",3448.77,{},246916,1,Africa +2024-02-08,47191,915,"[""Monitor"", ""Charger"", ""Tablet""]",1392.93,{},89621,0,Africa +2023-05-10,47192,1941,"[""Tablet"", ""Wireless Mouse""]",4073.57,{},39276,1,South America +2024-03-08,47193,1617,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1927.12,{},81053,1,Africa +2024-11-21,47194,9633,"[""Laptop"", ""Keyboard""]",3954.77,{},13151,0,South America +2024-04-11,47195,2683,"[""Wireless Mouse"", ""Headphones""]",1702.03,"{"""": ""22%""}",99843,1,Asia +2024-08-24,47196,3335,"[""Monitor"", ""Phone""]",3999.93,{},253480,1,Africa +2024-07-10,47197,4296,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",164.06,"{""seasonal"": ""30%""}",106726,1,Europe +2024-12-27,47198,7789,"[""Charger"", ""Laptop""]",4320.39,"{""loyalty"": ""14%""}",263163,0,Asia +2024-12-02,47199,9691,"[""Tablet"", ""Wireless Mouse""]",1354.33,{},190898,1,Africa +2023-07-13,47200,1085,"[""Phone"", ""Laptop"", ""Monitor""]",1785.55,{},76114,1,Europe +2023-08-31,47201,9521,"[""Keyboard"", ""Laptop"", ""Tablet""]",2620.78,"{"""": ""27%""}",140046,1,Europe +2024-08-18,47202,6948,"[""Phone"", ""Monitor""]",626.73,{},211612,0,South America +2024-06-21,47203,2261,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1998.46,"{""seasonal"": ""29%""}",266256,1,South America +2024-12-07,47204,2503,"[""Wireless Mouse"", ""Monitor""]",435.77,"{""seasonal"": ""26%""}",203723,1,North America +2024-02-16,47205,503,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3328.11,"{""promo"": ""20%""}",206125,0,Africa +2023-09-02,47206,3174,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2900.2,{},180540,1,South America +2023-10-10,47207,3073,"[""Keyboard"", ""Charger"", ""Monitor""]",3601.61,{},211659,0,South America +2023-12-11,47208,9656,"[""Phone"", ""Tablet""]",4282.02,"{"""": ""14%""}",287076,0,North America +2023-11-21,47209,663,"[""Phone"", ""Charger""]",1423.47,"{""seasonal"": ""8%""}",10848,1,Asia +2023-11-05,47210,7529,"[""Wireless Mouse"", ""Laptop""]",1037.46,"{""loyalty"": ""7%""}",195271,0,South America +2023-04-25,47211,5019,"[""Phone"", ""Tablet""]",2361.04,"{""promo"": ""23%""}",56102,1,Europe +2024-07-16,47212,5520,"[""Charger"", ""Monitor""]",245.19,{},201521,0,South America +2024-12-30,47213,9151,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",792.42,{},278623,1,Europe +2024-02-28,47214,7492,"[""Keyboard"", ""Wireless Mouse""]",838.86,{},24037,1,Africa +2023-05-07,47215,337,"[""Wireless Mouse""]",898.57,"{"""": ""19%""}",117126,1,Africa +2023-04-04,47216,2689,"[""Phone"", ""Monitor""]",331.51,"{""promo"": ""18%""}",114628,0,Africa +2023-04-28,47217,6191,"[""Tablet""]",4531.63,{},184121,0,Asia +2023-06-29,47218,8942,"[""Headphones"", ""Keyboard""]",1839.13,{},71562,1,Africa +2023-02-13,47219,5583,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3127.64,"{"""": ""28%""}",101265,1,North America +2024-12-01,47220,7436,"[""Wireless Mouse""]",73.77,"{""promo"": ""7%""}",166572,1,North America +2024-05-21,47221,1644,"[""Monitor""]",938.27,"{"""": ""5%""}",84850,1,South America +2024-07-04,47222,7578,"[""Wireless Mouse""]",3748.29,"{""promo"": ""15%""}",230416,0,Africa +2024-01-18,47223,4105,"[""Tablet"", ""Keyboard"", ""Phone""]",3552.41,"{"""": ""12%""}",16920,0,Asia +2023-05-13,47224,6155,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",133.5,{},42569,1,Europe +2024-10-19,47225,5388,"[""Phone"", ""Wireless Mouse""]",2665.41,"{"""": ""11%""}",160546,0,Asia +2024-03-12,47226,613,"[""Phone"", ""Headphones"", ""Charger""]",3726.28,{},192173,0,South America +2024-08-09,47227,6627,"[""Tablet"", ""Charger"", ""Headphones""]",923.04,"{"""": ""22%""}",270001,0,Asia +2023-12-31,47228,5186,"[""Monitor"", ""Charger""]",2661.25,"{"""": ""12%""}",263126,1,Africa +2023-10-26,47229,636,"[""Headphones""]",4264.34,"{"""": ""30%""}",92122,1,South America +2024-02-04,47230,685,"[""Laptop"", ""Monitor""]",1975.4,{},240623,0,Europe +2024-04-29,47231,748,"[""Headphones"", ""Laptop""]",3001.14,{},75227,0,Europe +2024-01-15,47232,9940,"[""Tablet""]",1398.24,{},202691,0,North America +2024-07-02,47233,8559,"[""Monitor"", ""Headphones"", ""Charger""]",2625.22,{},76401,1,Asia +2024-09-28,47234,7357,"[""Headphones""]",4837.54,{},205175,1,Asia +2024-12-05,47235,5112,"[""Phone"", ""Wireless Mouse""]",3447.52,{},299013,1,Africa +2024-04-02,47236,6028,"[""Laptop"", ""Headphones""]",2884.95,"{""seasonal"": ""24%""}",76613,1,Africa +2024-11-25,47237,1096,"[""Charger"", ""Phone""]",4021.31,{},296983,1,Europe +2023-10-01,47238,2741,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4722.3,"{"""": ""16%""}",79331,0,Africa +2023-01-21,47239,3095,"[""Tablet"", ""Charger""]",1643.7,"{""promo"": ""23%""}",28969,0,Asia +2024-07-03,47240,8579,"[""Phone"", ""Headphones""]",1927.37,"{""seasonal"": ""23%""}",98857,0,Europe +2023-08-11,47241,3949,"[""Wireless Mouse"", ""Laptop""]",549.73,{},246098,1,Africa +2023-02-07,47242,9540,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1033.3,{},214128,0,Africa +2024-01-28,47243,1498,"[""Monitor"", ""Keyboard""]",1149.85,{},71669,0,Asia +2023-03-24,47244,7336,"[""Monitor"", ""Wireless Mouse""]",2734.53,{},158823,0,Europe +2024-03-13,47245,1759,"[""Tablet"", ""Monitor"", ""Keyboard""]",826.49,"{""promo"": ""23%""}",139115,0,South America +2023-10-16,47246,3056,"[""Phone"", ""Laptop""]",860.61,"{"""": ""19%""}",165553,1,North America +2024-02-15,47247,3248,"[""Phone"", ""Keyboard""]",1083.46,{},84122,1,North America +2023-04-04,47248,8950,"[""Keyboard"", ""Headphones""]",2961.09,{},98514,0,Europe +2023-11-23,47249,7388,"[""Wireless Mouse"", ""Monitor""]",2249.34,"{""seasonal"": ""22%""}",111078,0,Asia +2023-12-18,47250,1450,"[""Headphones""]",1807.59,{},159311,1,South America +2023-06-02,47251,1385,"[""Tablet"", ""Phone"", ""Headphones""]",3743.54,"{""loyalty"": ""18%""}",103170,0,North America +2024-12-02,47252,9068,"[""Headphones"", ""Monitor"", ""Tablet""]",368.11,"{""promo"": ""18%""}",76214,1,Africa +2023-03-14,47253,1723,"[""Monitor""]",2522.74,"{""seasonal"": ""30%""}",31942,0,North America +2024-03-15,47254,576,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3304.9,"{""loyalty"": ""30%""}",81971,1,Africa +2024-04-23,47255,4555,"[""Laptop"", ""Monitor"", ""Keyboard""]",3520.57,"{""loyalty"": ""7%""}",207095,0,Africa +2024-12-21,47256,3767,"[""Monitor"", ""Tablet""]",2999.06,{},87958,0,Asia +2024-07-14,47257,9313,"[""Monitor"", ""Charger"", ""Tablet""]",3252.16,"{""loyalty"": ""6%""}",80177,0,Asia +2023-08-27,47258,6736,"[""Phone"", ""Wireless Mouse""]",4315.07,"{""seasonal"": ""29%""}",101802,0,Africa +2024-08-23,47259,332,"[""Keyboard""]",2684.07,{},170556,0,South America +2023-07-01,47260,6740,"[""Phone"", ""Laptop"", ""Tablet""]",1167.24,{},141164,0,Africa +2023-06-11,47261,4781,"[""Charger"", ""Keyboard"", ""Tablet""]",4050.98,"{""loyalty"": ""26%""}",11013,1,Africa +2023-08-15,47262,2031,"[""Phone"", ""Headphones""]",4992.68,{},106971,1,Asia +2024-03-24,47263,7027,"[""Phone"", ""Tablet""]",1671.21,"{""loyalty"": ""5%""}",44601,0,North America +2023-01-11,47264,4287,"[""Charger""]",3085.34,"{""loyalty"": ""5%""}",45257,0,South America +2024-05-16,47265,729,"[""Laptop""]",2334.86,{},284888,0,Asia +2024-11-05,47266,2961,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3206.67,"{""promo"": ""25%""}",4889,1,Europe +2023-03-19,47267,554,"[""Wireless Mouse"", ""Phone""]",553.67,{},143271,0,North America +2024-11-24,47268,144,"[""Monitor""]",3066.18,{},184407,1,North America +2023-03-05,47269,3346,"[""Tablet""]",4412.63,"{""loyalty"": ""19%""}",229912,1,Europe +2023-06-02,47270,6990,"[""Tablet"", ""Keyboard""]",1875.35,{},261542,0,Asia +2024-07-04,47271,8778,"[""Tablet""]",1689.66,"{""seasonal"": ""25%""}",15773,0,South America +2024-10-25,47272,3733,"[""Headphones"", ""Wireless Mouse""]",3450.46,"{""promo"": ""25%""}",161276,0,Europe +2024-07-03,47273,2050,"[""Keyboard""]",2645.79,{},1891,1,Africa +2023-07-15,47274,2068,"[""Wireless Mouse"", ""Headphones""]",4603.28,"{""promo"": ""25%""}",1521,1,Africa +2023-10-20,47275,1125,"[""Wireless Mouse"", ""Keyboard""]",4205.12,"{""seasonal"": ""23%""}",200314,0,South America +2024-11-28,47276,2610,"[""Tablet"", ""Wireless Mouse""]",4561.67,"{""promo"": ""18%""}",263069,0,North America +2024-03-04,47277,1605,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2393.98,"{""promo"": ""5%""}",89018,0,South America +2023-08-14,47278,7713,"[""Keyboard""]",2268.81,{},39633,1,Africa +2023-02-20,47279,3363,"[""Laptop"", ""Phone"", ""Tablet""]",1835.25,{},11728,1,North America +2023-05-30,47280,6664,"[""Headphones"", ""Monitor"", ""Phone""]",1485.85,"{""seasonal"": ""21%""}",156132,1,North America +2023-08-19,47281,7647,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1688.53,{},162560,1,Asia +2023-08-02,47282,2952,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4603.93,"{""loyalty"": ""12%""}",143462,0,Africa +2023-06-14,47283,7377,"[""Keyboard"", ""Monitor"", ""Headphones""]",3622.39,"{""promo"": ""5%""}",172605,1,South America +2023-08-25,47284,605,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1817.97,{},247440,0,North America +2024-10-20,47285,2568,"[""Charger"", ""Laptop""]",948.67,{},289564,0,Europe +2023-02-10,47286,9417,"[""Tablet""]",4802.71,{},226668,1,South America +2023-03-25,47287,6511,"[""Wireless Mouse"", ""Monitor""]",2015.72,{},179796,1,Africa +2024-11-27,47288,7456,"[""Tablet""]",1961.21,"{""loyalty"": ""17%""}",267705,1,Asia +2023-07-22,47289,9169,"[""Laptop""]",4478.72,{},143685,0,Europe +2023-07-31,47290,6129,"[""Wireless Mouse"", ""Charger""]",371.67,{},49838,1,Europe +2024-02-14,47291,5441,"[""Monitor"", ""Phone""]",1351.99,{},246462,1,Europe +2023-12-30,47292,1289,"[""Phone""]",2552.55,"{""promo"": ""15%""}",261951,0,South America +2023-01-29,47293,3162,"[""Tablet"", ""Laptop""]",2680.33,{},88464,0,Europe +2024-02-19,47294,5029,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2359.33,{},168512,1,Africa +2023-01-25,47295,2153,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3749.07,"{"""": ""13%""}",48010,1,South America +2023-12-04,47296,5682,"[""Headphones"", ""Monitor"", ""Keyboard""]",4183.62,{},20087,0,Africa +2024-07-23,47297,8441,"[""Laptop""]",3121.97,{},132070,1,Africa +2024-11-12,47298,8279,"[""Phone"", ""Headphones"", ""Monitor""]",832.2,"{""loyalty"": ""29%""}",216303,1,North America +2024-11-24,47299,810,"[""Phone"", ""Tablet"", ""Keyboard""]",3733.81,"{""promo"": ""9%""}",47408,1,Europe +2024-01-07,47300,3014,"[""Wireless Mouse""]",4487.89,"{""seasonal"": ""24%""}",31240,1,North America +2023-12-11,47301,273,"[""Charger"", ""Phone"", ""Headphones""]",3658.98,"{"""": ""24%""}",159342,1,South America +2024-09-28,47302,8498,"[""Phone""]",2446.36,{},15781,1,South America +2023-08-12,47303,5459,"[""Keyboard"", ""Wireless Mouse""]",2761.03,"{""seasonal"": ""19%""}",297548,1,Europe +2023-08-22,47304,4393,"[""Charger"", ""Laptop"", ""Headphones""]",4390.6,{},82970,0,North America +2023-02-16,47305,2977,"[""Tablet"", ""Monitor""]",3496.59,"{""seasonal"": ""17%""}",148168,0,Asia +2024-11-29,47306,7323,"[""Charger"", ""Monitor""]",442.98,{},179989,0,Europe +2023-01-15,47307,4089,"[""Tablet""]",4870.61,{},51768,0,Asia +2023-10-12,47308,335,"[""Keyboard"", ""Laptop""]",2222.83,"{"""": ""15%""}",181325,0,Africa +2023-03-13,47309,3123,"[""Keyboard"", ""Charger"", ""Phone""]",734.03,"{"""": ""13%""}",245262,1,Europe +2024-06-23,47310,5216,"[""Headphones"", ""Wireless Mouse""]",315.28,"{""promo"": ""11%""}",98375,0,Africa +2023-08-17,47311,6265,"[""Wireless Mouse""]",2066.94,"{""seasonal"": ""16%""}",10008,0,Africa +2023-07-01,47312,4217,"[""Laptop""]",2033.84,{},177372,0,South America +2023-04-13,47313,4328,"[""Monitor"", ""Keyboard"", ""Tablet""]",4589.31,"{""seasonal"": ""18%""}",3818,0,Africa +2023-05-21,47314,9872,"[""Wireless Mouse"", ""Phone""]",2452.92,{},282181,1,Africa +2024-04-27,47315,9970,"[""Monitor"", ""Phone"", ""Headphones""]",1428.07,"{""loyalty"": ""7%""}",39711,0,Africa +2023-07-16,47316,972,"[""Keyboard"", ""Headphones""]",4427.35,"{"""": ""24%""}",69617,0,Asia +2024-12-12,47317,8599,"[""Keyboard"", ""Monitor""]",2233.51,{},267187,1,Asia +2023-01-12,47318,6830,"[""Tablet""]",2537.51,{},111216,1,Europe +2024-02-21,47319,2420,"[""Monitor"", ""Keyboard""]",1843.85,{},264211,0,Europe +2024-05-17,47320,1859,"[""Laptop"", ""Charger"", ""Tablet""]",2452.32,"{""loyalty"": ""19%""}",12274,0,Europe +2024-07-22,47321,9505,"[""Monitor"", ""Charger""]",492.09,"{""seasonal"": ""14%""}",148108,0,Asia +2023-04-07,47322,1621,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4140.92,"{""seasonal"": ""17%""}",149091,1,North America +2024-11-21,47323,3258,"[""Headphones""]",3992.79,{},236045,0,Asia +2023-02-22,47324,8918,"[""Phone"", ""Wireless Mouse""]",3166.26,"{""seasonal"": ""13%""}",219300,1,Africa +2023-06-25,47325,4891,"[""Wireless Mouse"", ""Tablet""]",218.12,{},15683,1,Asia +2024-08-20,47326,1222,"[""Tablet"", ""Laptop""]",1082.48,"{""seasonal"": ""9%""}",46624,0,Europe +2024-12-18,47327,6865,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2880.71,{},125985,0,North America +2023-11-24,47328,4204,"[""Phone"", ""Keyboard"", ""Monitor""]",2538.3,{},17500,0,Africa +2023-06-03,47329,4979,"[""Phone"", ""Laptop""]",2291.96,"{""seasonal"": ""11%""}",105710,1,Asia +2023-10-31,47330,8476,"[""Keyboard""]",790.1,"{""seasonal"": ""21%""}",54691,0,Africa +2024-03-27,47331,4449,"[""Keyboard"", ""Charger"", ""Monitor""]",3109.27,"{""promo"": ""12%""}",154646,0,Africa +2024-08-21,47332,9050,"[""Tablet""]",3769.4,"{""loyalty"": ""16%""}",295755,0,Europe +2024-01-14,47333,4452,"[""Keyboard""]",932.61,{},102903,1,South America +2023-04-27,47334,1436,"[""Charger"", ""Laptop""]",430.19,"{""promo"": ""26%""}",206001,0,South America +2024-07-25,47335,9795,"[""Keyboard""]",3617.65,{},243104,1,Africa +2023-02-27,47336,2928,"[""Tablet"", ""Phone""]",3000.82,"{"""": ""16%""}",277491,0,Europe +2023-04-17,47337,7789,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2014.11,{},220920,0,South America +2023-08-16,47338,9744,"[""Headphones"", ""Wireless Mouse""]",4762.31,"{""loyalty"": ""27%""}",73771,1,North America +2024-12-23,47339,8599,"[""Monitor"", ""Headphones""]",601.23,{},231765,0,Europe +2023-04-22,47340,5109,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1118.35,"{""promo"": ""29%""}",85046,0,Asia +2024-11-16,47341,8184,"[""Phone""]",4418.26,{},41927,1,South America +2024-03-15,47342,6338,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1151.78,"{""seasonal"": ""12%""}",53299,1,South America +2024-10-04,47343,4871,"[""Tablet"", ""Monitor"", ""Keyboard""]",4445.83,"{""promo"": ""25%""}",49688,0,Africa +2024-02-11,47344,9991,"[""Phone"", ""Headphones"", ""Laptop""]",3819.77,{},153935,1,South America +2024-03-21,47345,4533,"[""Charger"", ""Headphones"", ""Phone""]",3744.16,{},177198,0,South America +2023-11-04,47346,3746,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1685.04,{},139465,0,South America +2024-05-11,47347,5008,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1770.36,{},166531,1,Asia +2023-08-19,47348,7774,"[""Laptop"", ""Monitor"", ""Tablet""]",4741.69,{},206593,1,South America +2023-12-06,47349,5860,"[""Wireless Mouse"", ""Laptop""]",3974.86,"{"""": ""10%""}",9867,0,Asia +2024-02-02,47350,9943,"[""Monitor"", ""Charger""]",1225.61,{},68702,0,Africa +2023-11-15,47351,623,"[""Charger"", ""Monitor""]",1557.22,{},153802,1,Asia +2024-09-21,47352,7310,"[""Headphones"", ""Monitor""]",2157.98,{},18050,1,Asia +2024-01-19,47353,9990,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2585.92,{},154077,0,Africa +2024-02-07,47354,600,"[""Monitor"", ""Charger"", ""Tablet""]",3656.28,"{""promo"": ""20%""}",111580,1,Asia +2024-04-20,47355,5900,"[""Laptop""]",636.61,"{""loyalty"": ""18%""}",241848,1,South America +2024-11-19,47356,5186,"[""Charger"", ""Headphones""]",210.49,{},167751,0,Asia +2024-12-15,47357,6386,"[""Headphones""]",52.66,"{""promo"": ""15%""}",166739,0,Asia +2023-01-16,47358,6211,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4506.22,{},221213,1,Africa +2024-04-21,47359,7460,"[""Tablet""]",1735.02,"{""seasonal"": ""12%""}",225793,0,Europe +2024-12-21,47360,8370,"[""Monitor""]",832.46,"{""seasonal"": ""6%""}",32896,0,Europe +2024-03-10,47361,841,"[""Charger""]",3891.37,"{""seasonal"": ""29%""}",14823,1,South America +2024-10-01,47362,3289,"[""Charger""]",1632.39,{},264536,0,North America +2023-05-09,47363,4841,"[""Phone"", ""Charger""]",1018.94,{},154518,1,South America +2023-01-03,47364,4066,"[""Headphones"", ""Tablet"", ""Laptop""]",4369.97,"{""seasonal"": ""10%""}",253321,0,Europe +2024-12-21,47365,9289,"[""Charger""]",1909.05,"{""loyalty"": ""19%""}",100246,0,Asia +2023-02-20,47366,4706,"[""Keyboard"", ""Phone""]",188.05,{},221987,1,South America +2023-12-14,47367,9582,"[""Headphones"", ""Laptop""]",1282.02,{},74377,1,South America +2023-11-18,47368,4496,"[""Laptop""]",910.61,"{""loyalty"": ""19%""}",159700,1,South America +2024-10-18,47369,8126,"[""Laptop"", ""Phone""]",560.84,{},65544,1,North America +2024-02-08,47370,8710,"[""Charger""]",3473.4,{},70789,1,Europe +2023-12-29,47371,9432,"[""Tablet"", ""Monitor""]",2396.03,"{""promo"": ""25%""}",156864,1,South America +2023-10-18,47372,2976,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2161.1,{},245977,1,Africa +2023-05-16,47373,859,"[""Laptop""]",524.15,"{""seasonal"": ""13%""}",171972,1,Asia +2023-01-07,47374,9794,"[""Laptop""]",4472.77,"{""loyalty"": ""25%""}",129511,0,Africa +2023-12-20,47375,4501,"[""Headphones""]",2141.08,{},149193,1,North America +2024-09-24,47376,2337,"[""Headphones""]",4924.67,{},72044,0,North America +2024-08-19,47377,6940,"[""Headphones"", ""Laptop""]",3451.78,"{""promo"": ""21%""}",49958,1,South America +2023-04-26,47378,5774,"[""Phone"", ""Tablet""]",3623.86,"{""seasonal"": ""12%""}",51438,0,South America +2024-04-25,47379,2578,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3171.64,{},104553,0,South America +2023-01-04,47380,9190,"[""Monitor"", ""Keyboard""]",4152.02,{},106687,0,Asia +2023-12-12,47381,4257,"[""Tablet""]",3910.23,{},285850,1,Asia +2024-12-05,47382,987,"[""Phone"", ""Headphones"", ""Tablet""]",3923.87,{},254253,1,Asia +2024-11-24,47383,700,"[""Headphones""]",3586.53,{},78697,0,Africa +2024-03-16,47384,8768,"[""Headphones""]",2515.97,"{"""": ""8%""}",192045,1,Asia +2024-03-09,47385,6868,"[""Keyboard"", ""Laptop""]",1495.85,{},70865,0,North America +2023-09-25,47386,4492,"[""Monitor"", ""Laptop""]",3822.14,"{""seasonal"": ""24%""}",80968,1,North America +2024-04-28,47387,2032,"[""Laptop"", ""Wireless Mouse""]",3546.28,{},258177,1,North America +2023-11-09,47388,8013,"[""Wireless Mouse""]",3405.9,"{""seasonal"": ""27%""}",96184,1,South America +2023-08-07,47389,2123,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4155.74,"{""promo"": ""9%""}",101196,1,Africa +2024-12-17,47390,5620,"[""Phone"", ""Wireless Mouse""]",3509.5,"{""seasonal"": ""7%""}",254440,0,Africa +2023-10-25,47391,8155,"[""Headphones"", ""Monitor""]",368.01,"{""promo"": ""22%""}",103011,1,Europe +2024-02-02,47392,1453,"[""Monitor"", ""Laptop"", ""Charger""]",2837.2,{},30444,1,Europe +2024-10-26,47393,157,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2199.38,"{""promo"": ""28%""}",169467,1,North America +2024-11-09,47394,4265,"[""Charger"", ""Keyboard""]",2491.57,"{"""": ""20%""}",31502,0,South America +2024-08-23,47395,908,"[""Phone""]",2868.31,"{""seasonal"": ""5%""}",222394,0,South America +2024-03-15,47396,3332,"[""Monitor"", ""Headphones""]",4176.82,"{""loyalty"": ""5%""}",19380,0,Asia +2024-06-28,47397,8462,"[""Charger"", ""Monitor""]",4990.92,"{""seasonal"": ""20%""}",85676,0,North America +2024-10-11,47398,9599,"[""Keyboard""]",4543.95,{},293643,1,South America +2024-07-13,47399,6457,"[""Laptop"", ""Phone"", ""Headphones""]",1210.75,"{""loyalty"": ""9%""}",135173,0,North America +2023-09-18,47400,6358,"[""Monitor""]",1813.29,{},61058,0,Europe +2023-08-14,47401,9923,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4303.88,{},229051,1,North America +2024-07-02,47402,9416,"[""Phone"", ""Keyboard""]",2888.8,{},173828,1,Africa +2023-05-27,47403,9686,"[""Charger""]",2194.64,"{"""": ""15%""}",277896,0,Europe +2023-05-24,47404,4715,"[""Monitor"", ""Charger"", ""Laptop""]",2279.05,{},76969,0,North America +2024-06-08,47405,1697,"[""Wireless Mouse""]",1886.14,"{""seasonal"": ""21%""}",22361,1,South America +2024-06-04,47406,7012,"[""Phone"", ""Tablet""]",4929.16,{},131073,0,South America +2023-06-04,47407,9214,"[""Monitor""]",3217.21,"{""loyalty"": ""9%""}",95016,1,Asia +2024-04-27,47408,7106,"[""Wireless Mouse""]",772.16,"{""seasonal"": ""7%""}",267193,1,Europe +2023-07-31,47409,6815,"[""Laptop"", ""Monitor"", ""Charger""]",4351.8,{},170833,0,North America +2023-07-02,47410,7880,"[""Laptop""]",3836.03,{},230806,1,Africa +2023-03-06,47411,9387,"[""Laptop"", ""Tablet"", ""Headphones""]",2168.55,{},153726,0,South America +2024-03-07,47412,3331,"[""Phone"", ""Monitor"", ""Headphones""]",3922.32,{},158594,1,Asia +2024-06-05,47413,8520,"[""Headphones"", ""Charger"", ""Monitor""]",2509.51,{},64052,0,Africa +2023-06-26,47414,9213,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1821.04,{},227719,1,North America +2023-05-21,47415,7863,"[""Headphones"", ""Laptop"", ""Phone""]",1018.96,"{"""": ""15%""}",243942,0,Asia +2023-07-29,47416,4294,"[""Tablet"", ""Phone"", ""Laptop""]",760.13,{},295353,0,Asia +2024-08-15,47417,1647,"[""Keyboard"", ""Monitor"", ""Phone""]",1982.82,{},144385,0,Asia +2023-04-21,47418,4490,"[""Phone"", ""Laptop""]",4434.16,"{""loyalty"": ""22%""}",201602,0,Asia +2023-09-25,47419,1627,"[""Wireless Mouse""]",2190.68,"{""seasonal"": ""6%""}",49801,1,South America +2024-06-04,47420,5945,"[""Wireless Mouse"", ""Tablet""]",57.22,{},105620,0,Asia +2024-02-03,47421,8627,"[""Keyboard""]",2231.58,"{""seasonal"": ""19%""}",267480,1,Asia +2023-06-29,47422,784,"[""Headphones""]",1180.65,{},287136,1,Africa +2024-09-29,47423,6113,"[""Monitor"", ""Keyboard""]",792.53,{},185834,1,Africa +2023-11-25,47424,9145,"[""Monitor"", ""Tablet""]",2037.63,{},186450,0,Europe +2024-07-09,47425,7020,"[""Wireless Mouse""]",1908.84,{},75343,0,North America +2024-10-17,47426,4883,"[""Tablet"", ""Phone"", ""Charger""]",3720.76,"{""loyalty"": ""18%""}",148052,1,Europe +2023-09-29,47427,1719,"[""Keyboard"", ""Tablet""]",2423.62,{},194937,0,Europe +2024-04-12,47428,5117,"[""Wireless Mouse""]",651.02,{},234913,0,Asia +2023-03-12,47429,3781,"[""Wireless Mouse"", ""Phone""]",4949.2,"{""seasonal"": ""5%""}",105444,0,Europe +2024-06-16,47430,7887,"[""Headphones"", ""Keyboard"", ""Phone""]",1849.97,{},78643,0,Asia +2024-01-31,47431,9777,"[""Keyboard"", ""Phone"", ""Monitor""]",3738.49,{},269584,0,Africa +2023-12-24,47432,7652,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2683.75,{},261274,1,Europe +2024-09-04,47433,8676,"[""Keyboard""]",946.81,"{""seasonal"": ""23%""}",227628,0,Africa +2023-02-24,47434,2025,"[""Headphones""]",2188.73,{},32293,1,Asia +2024-05-25,47435,1630,"[""Keyboard"", ""Phone"", ""Charger""]",2505.87,{},83834,0,Africa +2024-09-13,47436,8446,"[""Headphones"", ""Monitor""]",3805.13,"{"""": ""22%""}",165909,1,Asia +2023-05-15,47437,2593,"[""Headphones""]",2664.14,{},216361,0,North America +2024-01-13,47438,2321,"[""Tablet""]",1884.28,"{""loyalty"": ""20%""}",202980,0,North America +2024-12-09,47439,4686,"[""Monitor""]",4919.79,{},7486,1,Africa +2024-06-13,47440,3327,"[""Wireless Mouse"", ""Laptop""]",2109.45,"{""promo"": ""23%""}",147364,0,Africa +2023-02-07,47441,8934,"[""Laptop"", ""Phone""]",3118.62,"{""promo"": ""6%""}",72207,0,Asia +2024-08-16,47442,1903,"[""Charger""]",1475.92,"{"""": ""17%""}",273634,0,Africa +2024-08-18,47443,6556,"[""Tablet""]",144.92,"{"""": ""22%""}",75664,1,Asia +2024-06-15,47444,6761,"[""Phone"", ""Wireless Mouse""]",1553.0,{},290670,1,Africa +2023-07-04,47445,3608,"[""Charger"", ""Tablet""]",3012.88,{},282826,0,Europe +2024-11-08,47446,8505,"[""Headphones"", ""Wireless Mouse""]",4476.69,"{""loyalty"": ""7%""}",222834,0,North America +2023-01-09,47447,9180,"[""Phone"", ""Laptop"", ""Keyboard""]",265.77,"{""seasonal"": ""30%""}",110416,0,South America +2024-01-09,47448,708,"[""Charger""]",409.32,{},129129,1,North America +2024-09-05,47449,6714,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",784.1,"{""seasonal"": ""25%""}",278353,1,North America +2023-03-16,47450,1484,"[""Monitor""]",3874.05,{},113800,0,Europe +2024-07-12,47451,6778,"[""Wireless Mouse"", ""Phone""]",2788.66,{},62916,0,Europe +2024-03-29,47452,2288,"[""Keyboard"", ""Laptop"", ""Headphones""]",4987.93,{},105599,1,Africa +2023-04-04,47453,270,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",515.4,{},183691,0,South America +2024-11-02,47454,287,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4884.76,{},181785,0,North America +2023-12-01,47455,5596,"[""Monitor"", ""Charger""]",4936.53,{},16200,0,Africa +2024-06-08,47456,9184,"[""Charger"", ""Phone""]",1753.81,"{""promo"": ""15%""}",158472,1,North America +2024-03-04,47457,8991,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1856.93,"{""loyalty"": ""13%""}",38372,0,Asia +2023-01-26,47458,9886,"[""Laptop"", ""Keyboard""]",978.1,"{""loyalty"": ""16%""}",62896,1,North America +2023-10-25,47459,8314,"[""Headphones"", ""Phone"", ""Tablet""]",1846.31,{},173575,1,Europe +2024-10-09,47460,2273,"[""Laptop"", ""Charger"", ""Headphones""]",275.77,{},299624,0,North America +2024-09-06,47461,7190,"[""Charger"", ""Monitor"", ""Tablet""]",357.66,"{""seasonal"": ""25%""}",144845,0,Europe +2024-02-07,47462,4419,"[""Laptop""]",4677.35,"{"""": ""16%""}",209488,0,Asia +2024-11-19,47463,4041,"[""Keyboard""]",4130.33,{},79941,0,South America +2024-08-28,47464,1895,"[""Keyboard""]",316.67,{},64684,1,Asia +2024-11-25,47465,7276,"[""Laptop"", ""Headphones"", ""Phone""]",3640.22,{},39503,0,Asia +2024-10-22,47466,403,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4900.93,"{"""": ""21%""}",2790,1,Africa +2023-03-05,47467,9983,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4727.74,"{""loyalty"": ""29%""}",50210,1,Europe +2023-03-16,47468,6716,"[""Laptop""]",4112.25,"{"""": ""19%""}",260631,1,Europe +2024-03-16,47469,9072,"[""Headphones"", ""Charger"", ""Monitor""]",1202.09,"{""loyalty"": ""19%""}",3794,1,Africa +2023-01-13,47470,6674,"[""Wireless Mouse""]",2719.6,"{"""": ""25%""}",20825,1,Africa +2024-03-31,47471,5759,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1369.98,"{""seasonal"": ""21%""}",13109,1,Asia +2023-05-15,47472,859,"[""Laptop""]",271.63,"{"""": ""26%""}",87300,1,Europe +2023-12-01,47473,5014,"[""Tablet"", ""Phone"", ""Monitor""]",1828.55,"{""seasonal"": ""23%""}",243642,0,Asia +2024-09-06,47474,4043,"[""Phone""]",1245.15,"{""seasonal"": ""23%""}",102855,0,North America +2023-11-05,47475,6347,"[""Tablet""]",3274.6,{},198629,1,Africa +2023-11-28,47476,8726,"[""Keyboard"", ""Charger""]",494.65,{},204789,0,Asia +2024-03-29,47477,8647,"[""Monitor"", ""Phone"", ""Tablet""]",4081.56,"{"""": ""10%""}",125312,0,Asia +2023-07-18,47478,7298,"[""Laptop""]",4272.59,{},122248,0,Europe +2024-05-06,47479,1737,"[""Phone""]",1296.76,"{""seasonal"": ""30%""}",219028,0,Africa +2024-01-14,47480,9318,"[""Laptop""]",3448.77,{},73688,0,Africa +2024-09-13,47481,7749,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3769.91,{},270476,1,Europe +2024-11-28,47482,2479,"[""Phone"", ""Tablet""]",1767.64,"{""promo"": ""12%""}",26584,1,Europe +2024-06-24,47483,1896,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",945.76,{},286470,0,North America +2023-06-15,47484,9372,"[""Tablet"", ""Headphones"", ""Keyboard""]",4325.21,"{""promo"": ""10%""}",101878,1,Africa +2024-09-20,47485,1641,"[""Monitor"", ""Keyboard"", ""Phone""]",999.27,{},157798,0,Europe +2023-02-01,47486,6529,"[""Laptop""]",675.06,{},110929,0,North America +2023-01-07,47487,7904,"[""Phone"", ""Wireless Mouse""]",825.8,"{""promo"": ""22%""}",157175,1,Asia +2023-09-22,47488,5321,"[""Phone"", ""Charger""]",3874.97,"{""seasonal"": ""11%""}",182654,0,North America +2023-09-24,47489,5338,"[""Laptop"", ""Monitor""]",4890.67,"{""loyalty"": ""15%""}",218550,1,Europe +2023-11-14,47490,7601,"[""Charger""]",3859.15,{},44378,0,North America +2023-05-08,47491,7854,"[""Monitor""]",4397.2,{},264733,0,North America +2024-03-02,47492,4731,"[""Wireless Mouse""]",4330.45,{},208673,1,South America +2024-02-06,47493,1381,"[""Phone"", ""Keyboard"", ""Charger""]",1373.5,{},231724,0,Europe +2024-01-07,47494,6813,"[""Laptop"", ""Headphones""]",3442.44,"{""seasonal"": ""8%""}",241895,0,Europe +2024-05-13,47495,9590,"[""Laptop""]",3665.9,"{""promo"": ""22%""}",217063,0,Asia +2024-12-07,47496,4424,"[""Laptop""]",1681.5,{},275333,1,Asia +2024-12-01,47497,8366,"[""Charger""]",3847.95,"{""loyalty"": ""18%""}",24537,1,Africa +2024-05-19,47498,3698,"[""Tablet"", ""Keyboard"", ""Charger""]",4299.21,{},281516,1,North America +2024-08-20,47499,5803,"[""Monitor""]",4821.07,"{""loyalty"": ""23%""}",131416,1,South America +2023-08-31,47500,7578,"[""Charger""]",3093.83,{},98786,0,Europe +2024-12-15,47501,590,"[""Headphones"", ""Monitor"", ""Phone""]",2192.6,{},261524,0,North America +2023-12-26,47502,8179,"[""Laptop"", ""Phone"", ""Keyboard""]",3209.59,{},132708,1,Asia +2024-03-09,47503,4607,"[""Keyboard"", ""Tablet""]",722.2,{},150665,0,North America +2024-04-13,47504,4293,"[""Keyboard"", ""Monitor""]",3530.58,{},33342,1,Europe +2023-08-22,47505,8658,"[""Monitor""]",389.43,"{""loyalty"": ""18%""}",42698,0,South America +2024-04-06,47506,2310,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3703.41,{},230363,1,North America +2023-06-29,47507,5870,"[""Monitor""]",2594.33,{},117116,1,South America +2023-10-29,47508,964,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3917.14,{},72616,1,Europe +2024-09-03,47509,8020,"[""Headphones"", ""Tablet""]",947.55,{},2533,1,Europe +2024-02-17,47510,1276,"[""Charger"", ""Keyboard""]",3678.87,"{""loyalty"": ""16%""}",95810,1,Africa +2024-06-27,47511,1266,"[""Charger"", ""Phone"", ""Laptop""]",544.51,"{""promo"": ""19%""}",59533,0,Europe +2024-12-22,47512,9549,"[""Keyboard""]",4195.59,{},70861,1,North America +2024-05-09,47513,3855,"[""Laptop"", ""Charger""]",4269.43,{},26080,0,Africa +2023-08-06,47514,9442,"[""Charger"", ""Tablet"", ""Headphones""]",3906.51,"{""loyalty"": ""25%""}",93940,0,Europe +2023-07-10,47515,4500,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",562.07,{},74974,1,Europe +2023-05-14,47516,5052,"[""Tablet""]",1156.13,{},45415,1,Europe +2024-12-07,47517,7465,"[""Headphones""]",772.33,{},201043,0,South America +2023-10-09,47518,2495,"[""Charger""]",4386.02,{},34375,1,North America +2024-01-29,47519,4150,"[""Monitor""]",89.43,"{"""": ""12%""}",110245,1,Europe +2023-01-02,47520,9804,"[""Wireless Mouse""]",3003.68,{},35055,1,Africa +2024-03-09,47521,4299,"[""Monitor""]",3979.65,"{""loyalty"": ""30%""}",138436,0,North America +2024-04-23,47522,7812,"[""Charger"", ""Phone"", ""Keyboard""]",3422.25,{},106730,0,North America +2023-03-25,47523,7296,"[""Tablet"", ""Laptop""]",2566.2,"{""loyalty"": ""17%""}",148849,0,Asia +2023-04-26,47524,362,"[""Headphones""]",1029.99,"{""loyalty"": ""7%""}",297729,1,Africa +2023-10-07,47525,3743,"[""Headphones"", ""Monitor"", ""Charger""]",477.14,"{""loyalty"": ""10%""}",298222,0,Africa +2024-09-18,47526,7882,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",899.35,{},52584,0,Asia +2023-12-06,47527,5735,"[""Headphones""]",3136.72,"{"""": ""17%""}",80876,0,South America +2024-03-04,47528,4388,"[""Laptop"", ""Charger"", ""Headphones""]",671.94,"{""promo"": ""20%""}",190223,1,Europe +2023-12-31,47529,4475,"[""Laptop""]",1810.73,{},258116,0,North America +2024-03-18,47530,3141,"[""Tablet""]",3862.75,{},12940,1,South America +2023-08-02,47531,9458,"[""Tablet""]",2731.62,{},143561,1,Africa +2024-10-28,47532,1254,"[""Keyboard""]",3125.76,"{""loyalty"": ""8%""}",209852,0,North America +2024-04-03,47533,5165,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4248.14,{},152529,0,Africa +2023-06-15,47534,4309,"[""Charger""]",3620.8,{},113351,0,Africa +2023-02-01,47535,3680,"[""Charger"", ""Phone"", ""Keyboard""]",4395.7,{},195452,1,Europe +2023-08-12,47536,2449,"[""Laptop""]",108.72,{},204992,0,Europe +2023-02-06,47537,310,"[""Headphones"", ""Monitor""]",2487.07,"{""promo"": ""14%""}",258725,1,North America +2024-07-19,47538,5248,"[""Headphones"", ""Monitor""]",1911.93,"{""promo"": ""19%""}",14011,0,Europe +2023-06-13,47539,5428,"[""Wireless Mouse"", ""Phone""]",3222.81,"{"""": ""9%""}",108780,0,South America +2024-07-18,47540,9927,"[""Monitor""]",1812.62,"{""promo"": ""23%""}",132118,0,Europe +2024-03-10,47541,4967,"[""Headphones""]",4451.96,{},279556,0,Europe +2024-06-19,47542,4126,"[""Headphones""]",2163.26,{},83086,1,North America +2023-04-11,47543,9223,"[""Laptop"", ""Wireless Mouse""]",2035.31,"{""seasonal"": ""7%""}",272883,1,North America +2024-05-23,47544,9403,"[""Tablet"", ""Monitor""]",2430.39,"{""promo"": ""17%""}",135908,0,Europe +2023-04-12,47545,556,"[""Charger"", ""Headphones"", ""Keyboard""]",1277.34,{},98940,1,Europe +2024-02-23,47546,6942,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3122.79,{},203981,1,Africa +2024-01-30,47547,4577,"[""Monitor""]",1250.49,"{"""": ""17%""}",118812,0,Europe +2024-05-23,47548,9136,"[""Phone"", ""Keyboard"", ""Monitor""]",1084.89,{},236643,1,South America +2024-12-11,47549,9868,"[""Phone"", ""Headphones""]",191.65,{},65386,1,North America +2024-07-06,47550,336,"[""Monitor"", ""Tablet""]",1915.22,{},207576,0,Asia +2024-01-31,47551,3054,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1499.87,"{""loyalty"": ""9%""}",272617,0,South America +2023-08-14,47552,5355,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1848.88,{},11280,0,South America +2023-06-24,47553,1647,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3248.23,"{""loyalty"": ""8%""}",217067,1,Asia +2024-12-05,47554,5522,"[""Tablet"", ""Monitor"", ""Laptop""]",3469.83,"{"""": ""30%""}",17634,1,North America +2024-04-01,47555,166,"[""Headphones"", ""Monitor"", ""Keyboard""]",1235.24,{},297351,1,North America +2024-09-26,47556,4476,"[""Keyboard""]",1448.98,{},159775,1,North America +2023-06-24,47557,1253,"[""Keyboard"", ""Charger""]",2781.97,{},226338,0,South America +2024-02-20,47558,9828,"[""Keyboard"", ""Phone"", ""Tablet""]",2146.6,{},114750,1,Europe +2023-05-09,47559,7117,"[""Tablet""]",927.56,"{""loyalty"": ""27%""}",182311,1,South America +2024-03-06,47560,4825,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3379.37,{},198537,1,Africa +2024-08-24,47561,9451,"[""Keyboard"", ""Tablet""]",4465.85,{},112121,1,Europe +2024-12-21,47562,1463,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4505.77,"{""seasonal"": ""19%""}",298107,1,North America +2024-02-09,47563,7745,"[""Charger""]",2208.55,{},62049,0,Europe +2023-06-29,47564,2659,"[""Charger"", ""Monitor"", ""Keyboard""]",2172.54,{},296166,1,North America +2024-01-30,47565,5845,"[""Wireless Mouse"", ""Charger""]",4455.7,{},48881,0,Europe +2023-04-15,47566,2356,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1370.95,"{""loyalty"": ""18%""}",177494,0,Africa +2024-05-23,47567,6047,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3444.28,"{""loyalty"": ""8%""}",103310,0,North America +2024-01-07,47568,9231,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",322.52,{},227472,1,North America +2024-05-14,47569,7768,"[""Headphones""]",1518.43,{},216881,1,Asia +2024-08-12,47570,9218,"[""Keyboard""]",2455.94,"{""promo"": ""14%""}",227994,0,Europe +2023-08-08,47571,6288,"[""Charger"", ""Tablet""]",4941.01,{},272658,0,Africa +2024-12-17,47572,9949,"[""Tablet"", ""Phone"", ""Charger""]",4303.67,{},94066,0,South America +2024-09-01,47573,874,"[""Monitor"", ""Phone""]",1239.73,"{"""": ""7%""}",200097,1,South America +2024-04-19,47574,9589,"[""Tablet"", ""Headphones""]",2883.57,"{""promo"": ""20%""}",33644,1,Europe +2024-09-04,47575,9060,"[""Headphones"", ""Laptop""]",1884.2,"{""promo"": ""8%""}",44802,1,North America +2024-10-03,47576,9170,"[""Laptop"", ""Phone"", ""Tablet""]",1866.59,{},41766,1,South America +2024-06-09,47577,9895,"[""Phone""]",3991.45,"{""loyalty"": ""23%""}",258508,0,South America +2023-03-05,47578,8935,"[""Monitor"", ""Phone""]",4172.26,"{"""": ""14%""}",147057,1,Africa +2023-06-17,47579,5181,"[""Keyboard"", ""Tablet""]",3106.52,{},206788,0,Asia +2023-03-20,47580,1316,"[""Phone"", ""Tablet""]",4863.09,{},107116,1,South America +2024-05-20,47581,4942,"[""Charger""]",4401.17,{},234420,1,South America +2024-01-24,47582,6866,"[""Keyboard"", ""Tablet"", ""Charger""]",4558.35,"{""promo"": ""24%""}",148794,1,South America +2024-12-23,47583,7545,"[""Wireless Mouse"", ""Keyboard""]",4692.6,"{""loyalty"": ""20%""}",16709,1,Africa +2024-09-21,47584,1478,"[""Laptop"", ""Tablet"", ""Charger""]",1697.72,"{""promo"": ""5%""}",55243,0,North America +2023-05-16,47585,7956,"[""Wireless Mouse""]",4537.2,{},243126,1,North America +2023-04-24,47586,2061,"[""Wireless Mouse"", ""Headphones""]",456.36,"{""loyalty"": ""17%""}",163300,0,South America +2024-10-11,47587,6341,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3033.96,{},194312,0,South America +2023-02-21,47588,7902,"[""Headphones"", ""Monitor""]",3013.56,{},160933,0,Africa +2023-06-21,47589,4696,"[""Monitor"", ""Wireless Mouse""]",1958.55,{},288544,0,Asia +2024-01-08,47590,727,"[""Keyboard"", ""Headphones"", ""Laptop""]",862.58,{},157052,1,Europe +2024-04-09,47591,7915,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",478.1,"{"""": ""19%""}",73129,1,Asia +2023-02-26,47592,5024,"[""Charger""]",1556.35,{},121647,0,Asia +2024-11-24,47593,5182,"[""Keyboard"", ""Monitor""]",1635.78,"{"""": ""27%""}",233370,0,Asia +2024-01-26,47594,9580,"[""Tablet""]",2150.89,{},156472,0,Africa +2024-11-20,47595,334,"[""Monitor"", ""Phone""]",1079.77,"{""loyalty"": ""15%""}",78014,1,Asia +2023-06-13,47596,7028,"[""Wireless Mouse"", ""Laptop""]",3037.92,"{""loyalty"": ""23%""}",190796,0,Africa +2023-08-09,47597,3779,"[""Monitor"", ""Laptop""]",4568.51,"{""promo"": ""29%""}",112475,1,South America +2024-10-29,47598,8082,"[""Monitor"", ""Headphones"", ""Charger""]",4433.57,"{"""": ""7%""}",52798,1,Africa +2023-05-16,47599,7651,"[""Keyboard"", ""Headphones""]",4472.59,{},84950,0,South America +2023-01-28,47600,6217,"[""Monitor""]",843.22,{},27108,1,Africa +2024-06-06,47601,1,"[""Monitor""]",4587.9,{},33987,0,North America +2024-02-16,47602,2839,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1950.51,{},192336,1,Europe +2024-08-12,47603,2441,"[""Tablet"", ""Wireless Mouse""]",953.89,"{""promo"": ""21%""}",5032,1,North America +2023-06-27,47604,728,"[""Wireless Mouse""]",2857.2,"{""loyalty"": ""27%""}",254899,0,Europe +2023-04-10,47605,8870,"[""Laptop"", ""Phone"", ""Charger""]",1501.24,{},37474,1,North America +2023-05-08,47606,9484,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1333.6,{},168053,0,Asia +2024-11-28,47607,8489,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1665.08,"{""seasonal"": ""26%""}",93616,0,Asia +2023-05-01,47608,6562,"[""Keyboard"", ""Phone"", ""Monitor""]",358.29,"{""promo"": ""17%""}",69907,1,Europe +2023-09-05,47609,6866,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2360.55,{},5302,1,North America +2023-03-20,47610,2934,"[""Headphones""]",1045.0,"{"""": ""12%""}",46596,1,Asia +2024-01-26,47611,6898,"[""Charger""]",1932.82,"{"""": ""11%""}",96011,1,Asia +2024-10-08,47612,7984,"[""Laptop"", ""Keyboard"", ""Phone""]",3028.64,{},186009,1,South America +2023-05-02,47613,2692,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3800.96,{},236146,1,Europe +2023-11-06,47614,4981,"[""Phone"", ""Charger"", ""Keyboard""]",1476.44,"{""loyalty"": ""30%""}",227139,0,Europe +2023-12-06,47615,4554,"[""Wireless Mouse""]",795.17,{},115791,0,Europe +2023-04-15,47616,7866,"[""Charger"", ""Phone"", ""Keyboard""]",156.5,"{"""": ""19%""}",242091,0,Europe +2024-05-05,47617,5211,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4251.05,{},143197,0,Asia +2024-03-07,47618,7021,"[""Charger"", ""Wireless Mouse""]",4408.85,"{""promo"": ""7%""}",281762,0,Africa +2024-12-10,47619,4983,"[""Charger"", ""Phone""]",3859.13,{},263531,0,North America +2023-06-17,47620,8739,"[""Wireless Mouse""]",2517.17,"{"""": ""7%""}",284965,0,Europe +2024-02-23,47621,4200,"[""Monitor""]",2936.18,"{"""": ""20%""}",51880,1,South America +2024-10-13,47622,6407,"[""Headphones"", ""Tablet"", ""Phone""]",353.74,"{""seasonal"": ""9%""}",226093,1,North America +2024-02-05,47623,8324,"[""Laptop"", ""Charger"", ""Headphones""]",4567.06,{},71663,1,North America +2023-10-04,47624,1495,"[""Charger""]",3843.57,"{""promo"": ""29%""}",214977,1,Europe +2023-03-03,47625,3838,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2476.23,{},50446,0,Europe +2023-05-20,47626,1002,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4449.56,{},191174,1,Asia +2023-04-10,47627,9073,"[""Laptop""]",2168.22,{},110381,0,Africa +2024-05-23,47628,3898,"[""Monitor""]",4891.83,"{""promo"": ""5%""}",60778,1,Africa +2023-08-08,47629,281,"[""Phone""]",751.3,"{""seasonal"": ""11%""}",51965,1,South America +2023-04-21,47630,4857,"[""Headphones"", ""Charger"", ""Monitor""]",3394.08,"{""loyalty"": ""21%""}",125303,0,South America +2024-11-12,47631,7049,"[""Laptop""]",305.68,{},256634,0,South America +2023-11-21,47632,1613,"[""Phone""]",3827.07,"{""seasonal"": ""25%""}",231001,1,North America +2024-05-28,47633,9340,"[""Tablet"", ""Laptop"", ""Keyboard""]",3964.02,"{"""": ""6%""}",292515,1,Africa +2024-03-19,47634,3502,"[""Wireless Mouse"", ""Headphones""]",981.04,{},67998,1,Africa +2024-06-07,47635,1187,"[""Monitor"", ""Charger""]",3101.75,"{"""": ""6%""}",7081,1,Asia +2023-05-01,47636,7719,"[""Monitor"", ""Phone""]",1417.37,"{"""": ""6%""}",231089,0,North America +2024-01-08,47637,2643,"[""Tablet""]",2554.74,{},111086,1,Europe +2024-12-10,47638,6877,"[""Headphones"", ""Phone"", ""Keyboard""]",2671.85,{},169526,0,Africa +2024-03-15,47639,862,"[""Headphones"", ""Monitor""]",3555.09,"{""promo"": ""17%""}",276347,1,Asia +2023-12-05,47640,1622,"[""Keyboard""]",2036.23,{},195943,0,Asia +2023-11-24,47641,6265,"[""Laptop"", ""Headphones"", ""Tablet""]",3188.81,"{"""": ""17%""}",123699,1,Europe +2024-12-30,47642,2265,"[""Headphones"", ""Monitor"", ""Phone""]",1576.03,{},87125,1,Europe +2024-10-26,47643,4312,"[""Laptop"", ""Wireless Mouse""]",4016.15,"{""promo"": ""12%""}",214355,0,South America +2024-12-01,47644,2753,"[""Tablet""]",1173.8,{},176659,0,South America +2024-04-07,47645,3320,"[""Tablet""]",4093.48,"{""seasonal"": ""11%""}",128318,0,Europe +2023-04-15,47646,3958,"[""Laptop"", ""Charger"", ""Headphones""]",2896.18,"{""loyalty"": ""9%""}",209661,0,Europe +2023-03-24,47647,7179,"[""Tablet"", ""Headphones"", ""Phone""]",373.0,"{""promo"": ""25%""}",288195,1,Africa +2023-04-12,47648,9515,"[""Monitor"", ""Charger""]",302.33,{},4042,1,South America +2023-06-26,47649,9635,"[""Tablet"", ""Monitor""]",625.89,{},189798,1,Asia +2023-11-23,47650,7156,"[""Wireless Mouse"", ""Headphones""]",1184.21,"{""seasonal"": ""22%""}",25388,0,Asia +2024-12-23,47651,9727,"[""Keyboard"", ""Monitor"", ""Phone""]",3266.31,{},95070,0,North America +2024-10-30,47652,5042,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4590.96,{},100050,0,North America +2023-06-22,47653,8481,"[""Tablet""]",2893.29,"{""loyalty"": ""13%""}",18652,0,Europe +2023-01-15,47654,3466,"[""Monitor""]",756.21,{},25327,1,Asia +2023-02-22,47655,5141,"[""Phone"", ""Keyboard""]",1921.36,"{"""": ""21%""}",227833,0,North America +2024-09-19,47656,6750,"[""Phone"", ""Wireless Mouse""]",3391.39,"{""loyalty"": ""20%""}",288875,0,North America +2024-10-22,47657,3906,"[""Monitor""]",2584.26,"{""promo"": ""25%""}",200397,0,South America +2024-03-07,47658,3004,"[""Wireless Mouse"", ""Monitor""]",443.34,"{""loyalty"": ""7%""}",131879,1,Asia +2023-05-22,47659,6210,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1474.64,"{"""": ""19%""}",245844,1,Asia +2024-09-05,47660,6391,"[""Laptop""]",2081.56,{},52789,1,Asia +2023-01-26,47661,8139,"[""Charger"", ""Headphones"", ""Tablet""]",4086.81,{},21538,0,Asia +2023-11-05,47662,8587,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1394.5,{},190775,0,Asia +2024-04-09,47663,7990,"[""Charger"", ""Headphones"", ""Phone""]",1030.34,"{""loyalty"": ""29%""}",217417,1,Asia +2023-05-03,47664,4884,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",580.69,"{""promo"": ""12%""}",77307,0,South America +2024-02-06,47665,5513,"[""Keyboard"", ""Tablet""]",2697.58,{},66598,0,Africa +2023-08-01,47666,684,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3559.6,{},249177,0,Africa +2023-10-24,47667,3174,"[""Monitor"", ""Charger"", ""Headphones""]",3586.66,{},109454,1,Asia +2023-04-20,47668,2289,"[""Phone"", ""Charger""]",1436.83,"{""promo"": ""7%""}",263548,1,Africa +2023-10-10,47669,333,"[""Wireless Mouse""]",3218.2,"{"""": ""8%""}",204235,1,Africa +2023-02-23,47670,2393,"[""Charger"", ""Monitor""]",835.03,"{""seasonal"": ""10%""}",234769,0,Africa +2024-09-06,47671,6796,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",324.36,"{""promo"": ""19%""}",150714,1,Europe +2024-04-13,47672,556,"[""Laptop""]",3537.1,{},230399,0,Asia +2023-03-28,47673,3333,"[""Wireless Mouse""]",464.99,{},269378,1,North America +2023-07-25,47674,3963,"[""Tablet""]",4739.4,"{"""": ""19%""}",272382,0,Asia +2024-07-15,47675,3417,"[""Monitor"", ""Keyboard"", ""Charger""]",1052.33,"{"""": ""20%""}",179747,1,Asia +2023-02-02,47676,6241,"[""Phone"", ""Charger""]",223.18,"{"""": ""20%""}",232898,0,Asia +2024-12-17,47677,3936,"[""Monitor"", ""Headphones""]",802.44,"{"""": ""19%""}",142834,1,Asia +2023-07-13,47678,6054,"[""Charger"", ""Tablet""]",358.1,"{"""": ""7%""}",188590,1,North America +2024-08-07,47679,6279,"[""Laptop"", ""Keyboard""]",2923.92,"{"""": ""8%""}",101633,1,North America +2023-02-10,47680,2392,"[""Phone""]",289.71,{},286688,0,South America +2023-11-05,47681,8831,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4926.19,{},197956,0,South America +2023-03-14,47682,2012,"[""Phone"", ""Charger"", ""Tablet""]",3918.13,{},26805,1,North America +2024-10-09,47683,255,"[""Keyboard"", ""Headphones""]",1542.47,{},175034,1,Europe +2023-08-13,47684,1048,"[""Headphones""]",993.77,{},45195,1,Asia +2023-08-14,47685,3521,"[""Phone"", ""Keyboard""]",3958.87,{},168613,0,Europe +2023-07-06,47686,4846,"[""Keyboard""]",4199.49,"{""promo"": ""23%""}",73859,0,Asia +2024-01-16,47687,6680,"[""Headphones""]",656.26,"{"""": ""9%""}",20193,1,Europe +2024-03-13,47688,2646,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2337.6,"{""seasonal"": ""8%""}",83963,1,North America +2024-07-07,47689,5849,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4525.33,"{""promo"": ""14%""}",278961,1,Africa +2024-08-30,47690,5969,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4847.93,"{""promo"": ""16%""}",34885,0,Europe +2024-03-05,47691,2283,"[""Keyboard""]",2354.27,{},223621,1,North America +2024-09-24,47692,2279,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2424.6,"{""loyalty"": ""16%""}",70360,0,Asia +2023-07-27,47693,9425,"[""Phone"", ""Laptop""]",2506.39,"{""loyalty"": ""21%""}",222103,1,Africa +2023-08-23,47694,8541,"[""Charger"", ""Wireless Mouse""]",3423.73,"{""loyalty"": ""12%""}",114329,1,South America +2024-06-01,47695,3819,"[""Charger"", ""Headphones""]",3909.69,{},163820,1,South America +2023-12-02,47696,8382,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1131.92,{},93539,1,Africa +2024-12-22,47697,8847,"[""Monitor"", ""Keyboard""]",4498.1,"{"""": ""28%""}",278255,1,North America +2023-06-27,47698,3954,"[""Tablet"", ""Headphones"", ""Keyboard""]",2324.69,"{""promo"": ""15%""}",158144,0,Europe +2023-09-10,47699,5175,"[""Phone"", ""Wireless Mouse""]",1100.01,{},220733,1,South America +2023-10-31,47700,2744,"[""Headphones"", ""Keyboard"", ""Charger""]",616.07,{},258332,0,Asia +2023-05-13,47701,6705,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2029.24,"{"""": ""28%""}",122721,0,North America +2023-12-15,47702,524,"[""Headphones""]",4256.18,{},286375,1,Africa +2024-02-01,47703,5710,"[""Headphones"", ""Keyboard""]",2911.53,{},294605,1,Europe +2024-05-26,47704,940,"[""Charger"", ""Laptop"", ""Tablet""]",146.16,{},114086,0,Europe +2024-04-08,47705,9246,"[""Headphones""]",2079.96,"{"""": ""13%""}",7320,0,Africa +2024-07-01,47706,6844,"[""Headphones"", ""Monitor""]",3631.99,{},42040,0,Asia +2024-07-09,47707,1140,"[""Headphones"", ""Charger""]",4297.79,{},145285,0,Asia +2023-02-19,47708,4205,"[""Charger"", ""Phone"", ""Monitor""]",3032.49,"{"""": ""12%""}",81488,0,Europe +2024-01-18,47709,1767,"[""Laptop""]",883.14,"{"""": ""9%""}",182854,0,North America +2024-05-07,47710,4702,"[""Charger"", ""Headphones""]",170.68,{},31316,1,Africa +2023-07-08,47711,2594,"[""Headphones"", ""Monitor"", ""Tablet""]",2955.94,"{""loyalty"": ""26%""}",119736,1,South America +2023-07-20,47712,2419,"[""Headphones"", ""Charger""]",1133.4,"{""loyalty"": ""12%""}",41441,1,South America +2023-06-08,47713,6804,"[""Tablet"", ""Charger""]",1382.3,"{""loyalty"": ""16%""}",127695,0,South America +2024-05-21,47714,2995,"[""Tablet""]",2278.04,{},169042,1,Asia +2024-10-26,47715,6230,"[""Keyboard"", ""Headphones""]",4571.79,{},180941,0,Europe +2023-04-07,47716,8611,"[""Phone""]",3739.45,{},86574,1,Africa +2024-09-30,47717,7289,"[""Tablet""]",4091.61,{},15721,0,Asia +2024-08-20,47718,2391,"[""Laptop"", ""Tablet"", ""Charger""]",4392.41,{},297918,0,South America +2023-05-12,47719,4461,"[""Charger"", ""Laptop""]",971.34,"{""loyalty"": ""26%""}",131475,0,Europe +2023-04-29,47720,2791,"[""Phone""]",2282.45,"{""seasonal"": ""29%""}",38694,1,Africa +2023-11-04,47721,910,"[""Laptop"", ""Wireless Mouse""]",1293.93,{},20989,1,Europe +2023-01-30,47722,6078,"[""Keyboard"", ""Headphones"", ""Charger""]",2706.55,{},159762,0,North America +2024-04-30,47723,9971,"[""Laptop"", ""Charger"", ""Keyboard""]",3715.41,{},120498,1,North America +2024-09-18,47724,1294,"[""Laptop"", ""Phone""]",4211.72,{},215873,0,Europe +2024-08-12,47725,5647,"[""Charger"", ""Keyboard"", ""Headphones""]",3033.69,{},197304,1,Africa +2023-02-05,47726,7174,"[""Monitor"", ""Tablet"", ""Charger""]",1773.82,{},196062,0,South America +2023-10-19,47727,5757,"[""Tablet"", ""Headphones"", ""Phone""]",50.03,{},99075,1,Africa +2023-05-30,47728,4396,"[""Charger"", ""Laptop"", ""Keyboard""]",4470.58,{},164976,1,North America +2023-01-29,47729,2437,"[""Wireless Mouse""]",73.31,{},207219,1,Europe +2024-11-23,47730,7288,"[""Laptop"", ""Wireless Mouse""]",272.74,"{""loyalty"": ""21%""}",68951,1,Europe +2023-11-23,47731,4927,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1869.11,"{""promo"": ""23%""}",191368,0,Europe +2024-02-06,47732,6015,"[""Headphones""]",770.39,"{""seasonal"": ""17%""}",116482,1,Africa +2023-09-27,47733,9200,"[""Laptop"", ""Tablet"", ""Monitor""]",4755.97,"{""loyalty"": ""9%""}",160502,0,North America +2024-02-12,47734,8260,"[""Monitor"", ""Keyboard""]",660.78,"{""loyalty"": ""24%""}",177408,1,South America +2024-06-17,47735,7004,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2144.03,"{""loyalty"": ""11%""}",156426,1,Europe +2023-01-29,47736,5462,"[""Keyboard"", ""Phone"", ""Laptop""]",4140.28,{},113722,0,Europe +2023-01-14,47737,4720,"[""Wireless Mouse""]",1676.43,"{""loyalty"": ""25%""}",93454,1,Africa +2023-06-16,47738,9866,"[""Keyboard"", ""Tablet""]",2979.65,{},243579,1,Africa +2023-05-06,47739,2092,"[""Headphones"", ""Monitor""]",603.82,"{""seasonal"": ""23%""}",116182,1,North America +2023-03-19,47740,1457,"[""Phone""]",2637.75,{},86585,1,Europe +2024-09-21,47741,4353,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1948.07,"{"""": ""13%""}",169809,0,North America +2024-09-01,47742,9484,"[""Keyboard""]",1189.75,{},32635,1,Africa +2023-11-22,47743,3339,"[""Keyboard"", ""Headphones"", ""Monitor""]",2194.43,{},52082,1,Asia +2023-01-24,47744,7141,"[""Tablet"", ""Headphones"", ""Phone""]",3887.09,{},193399,1,South America +2024-05-07,47745,8470,"[""Tablet""]",629.9,{},232601,1,Asia +2023-03-17,47746,6982,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4158.92,{},148365,1,Europe +2023-07-24,47747,2884,"[""Tablet"", ""Keyboard"", ""Headphones""]",3124.86,"{""seasonal"": ""30%""}",120018,0,North America +2024-06-18,47748,463,"[""Headphones""]",2003.68,{},181522,1,Asia +2024-09-06,47749,2948,"[""Monitor""]",4265.43,{},9004,1,South America +2023-12-19,47750,8295,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1808.02,"{"""": ""11%""}",28425,1,South America +2023-04-03,47751,116,"[""Charger""]",4722.27,"{""loyalty"": ""27%""}",80781,1,Europe +2024-10-04,47752,591,"[""Charger""]",2854.23,{},143047,0,Africa +2024-11-26,47753,3597,"[""Monitor"", ""Tablet"", ""Phone""]",836.89,{},45408,0,Asia +2023-06-03,47754,6135,"[""Laptop"", ""Monitor"", ""Headphones""]",3712.7,{},68409,0,Asia +2023-11-18,47755,2081,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3250.48,{},66808,1,North America +2023-09-30,47756,1263,"[""Charger"", ""Laptop"", ""Phone""]",579.91,{},32341,1,Europe +2024-12-02,47757,7659,"[""Headphones"", ""Phone""]",2100.59,{},183747,1,Africa +2023-04-23,47758,356,"[""Wireless Mouse"", ""Headphones""]",1725.27,"{""promo"": ""24%""}",186494,1,Africa +2024-11-29,47759,7741,"[""Phone"", ""Charger"", ""Keyboard""]",2969.84,"{""seasonal"": ""15%""}",139228,0,Europe +2024-05-21,47760,2267,"[""Charger"", ""Phone""]",1409.9,{},9727,0,Europe +2024-05-29,47761,9847,"[""Tablet""]",3604.99,"{""loyalty"": ""12%""}",107993,0,Asia +2024-08-07,47762,4329,"[""Headphones""]",2336.82,"{"""": ""11%""}",33509,1,North America +2024-04-18,47763,8030,"[""Charger"", ""Tablet"", ""Headphones""]",2447.42,"{""promo"": ""23%""}",69805,1,Africa +2024-09-18,47764,5600,"[""Tablet"", ""Phone"", ""Charger""]",1607.33,{},108928,0,Europe +2024-03-16,47765,6170,"[""Wireless Mouse"", ""Headphones""]",1696.11,"{""seasonal"": ""7%""}",39513,1,Europe +2024-05-21,47766,6810,"[""Headphones"", ""Tablet""]",3064.13,{},266225,0,South America +2024-10-23,47767,5819,"[""Keyboard""]",4270.47,"{""seasonal"": ""5%""}",262158,1,Europe +2024-12-15,47768,6248,"[""Charger""]",2943.13,"{""seasonal"": ""30%""}",291544,0,South America +2024-05-23,47769,6587,"[""Charger""]",2103.58,{},184817,0,Africa +2023-03-07,47770,6334,"[""Charger""]",1483.55,{},184047,1,Africa +2024-12-23,47771,5344,"[""Phone"", ""Tablet"", ""Laptop""]",3513.19,{},124399,0,South America +2024-03-26,47772,1373,"[""Charger"", ""Keyboard""]",3866.44,{},75215,1,South America +2024-07-15,47773,3753,"[""Wireless Mouse"", ""Headphones""]",4130.05,{},280805,0,South America +2023-04-20,47774,6511,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4845.64,"{"""": ""21%""}",173926,1,Europe +2024-03-24,47775,423,"[""Wireless Mouse"", ""Charger""]",4037.41,{},27232,0,South America +2024-04-13,47776,7453,"[""Keyboard"", ""Tablet""]",4848.05,{},170430,1,Europe +2024-05-29,47777,5528,"[""Keyboard"", ""Phone""]",735.35,"{""seasonal"": ""24%""}",5227,0,Asia +2024-12-21,47778,1263,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4168.16,"{""seasonal"": ""11%""}",229734,0,North America +2024-06-06,47779,2234,"[""Phone"", ""Headphones"", ""Tablet""]",3887.48,{},62566,1,North America +2024-06-20,47780,7673,"[""Charger"", ""Tablet"", ""Laptop""]",1087.38,"{""loyalty"": ""10%""}",125750,0,Europe +2024-03-28,47781,7954,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3272.51,"{""promo"": ""8%""}",155487,0,Africa +2024-09-20,47782,5056,"[""Phone"", ""Tablet"", ""Charger""]",2206.13,{},233989,0,North America +2024-07-03,47783,7038,"[""Phone"", ""Charger""]",3627.57,"{""seasonal"": ""7%""}",271485,1,North America +2024-10-05,47784,4307,"[""Tablet""]",3233.68,"{""promo"": ""6%""}",17121,0,Africa +2023-11-12,47785,8143,"[""Monitor""]",404.38,"{""seasonal"": ""12%""}",112309,1,Europe +2023-09-21,47786,169,"[""Keyboard""]",1902.94,"{""seasonal"": ""23%""}",110767,1,Europe +2024-01-05,47787,7584,"[""Headphones""]",1843.77,{},13528,1,North America +2024-08-01,47788,333,"[""Charger"", ""Monitor"", ""Keyboard""]",3924.76,"{""seasonal"": ""10%""}",240698,1,North America +2023-06-17,47789,6589,"[""Charger""]",767.76,{},261362,0,Africa +2023-10-01,47790,4420,"[""Tablet"", ""Laptop"", ""Keyboard""]",2763.07,"{"""": ""29%""}",14545,0,South America +2023-08-31,47791,3231,"[""Keyboard""]",2658.46,{},267439,1,Africa +2023-01-05,47792,6235,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2529.15,{},297587,1,Europe +2024-02-15,47793,4553,"[""Headphones""]",3218.96,{},216903,1,Europe +2023-11-27,47794,3486,"[""Headphones"", ""Tablet""]",119.8,{},180289,1,Africa +2023-02-09,47795,1609,"[""Phone"", ""Monitor"", ""Keyboard""]",950.09,"{""promo"": ""25%""}",198953,0,Africa +2024-09-15,47796,8103,"[""Wireless Mouse"", ""Headphones""]",2492.24,"{""loyalty"": ""27%""}",255748,0,Asia +2023-12-28,47797,8138,"[""Monitor""]",4255.74,{},217232,1,Asia +2023-07-14,47798,8164,"[""Tablet"", ""Monitor"", ""Laptop""]",4642.54,{},105579,1,Asia +2024-10-30,47799,9884,"[""Tablet"", ""Keyboard""]",3774.24,"{""loyalty"": ""6%""}",247852,1,Africa +2024-07-29,47800,3067,"[""Keyboard"", ""Phone"", ""Charger""]",723.85,{},48538,1,Europe +2023-02-23,47801,5634,"[""Headphones""]",3271.91,"{""promo"": ""21%""}",31414,1,Africa +2024-09-18,47802,5511,"[""Wireless Mouse"", ""Laptop""]",2359.62,{},74400,1,Europe +2024-10-09,47803,1463,"[""Headphones"", ""Phone""]",1243.56,"{""promo"": ""5%""}",258569,0,Europe +2023-04-06,47804,1173,"[""Laptop"", ""Monitor"", ""Tablet""]",568.95,"{"""": ""25%""}",294021,1,South America +2023-02-17,47805,1272,"[""Keyboard"", ""Phone""]",2534.16,"{""seasonal"": ""14%""}",32453,0,South America +2023-05-10,47806,1905,"[""Headphones""]",4217.27,{},133659,1,Europe +2023-05-06,47807,8664,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1255.33,"{""promo"": ""21%""}",179283,1,Europe +2023-06-26,47808,5447,"[""Phone""]",951.08,{},202375,1,Europe +2023-02-05,47809,5734,"[""Charger""]",3044.4,{},217545,1,Asia +2024-03-03,47810,6133,"[""Wireless Mouse""]",545.61,{},222631,0,North America +2023-01-31,47811,6730,"[""Keyboard""]",3824.33,"{""loyalty"": ""6%""}",234808,1,North America +2024-01-19,47812,8631,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3026.67,"{"""": ""16%""}",106508,1,Africa +2024-02-20,47813,30,"[""Keyboard""]",691.1,"{"""": ""29%""}",289853,0,North America +2023-09-05,47814,4932,"[""Headphones"", ""Keyboard""]",1685.92,"{""loyalty"": ""30%""}",173513,1,North America +2023-05-13,47815,9057,"[""Keyboard""]",3217.26,{},209432,1,Asia +2024-01-14,47816,1882,"[""Phone"", ""Headphones""]",4566.37,{},71940,1,Europe +2023-01-17,47817,8785,"[""Charger""]",4216.52,{},16428,1,South America +2024-11-11,47818,655,"[""Tablet""]",3960.31,"{""seasonal"": ""28%""}",118867,1,South America +2024-01-15,47819,9059,"[""Wireless Mouse"", ""Tablet""]",1207.89,"{""promo"": ""15%""}",194708,1,Africa +2024-01-14,47820,5727,"[""Phone"", ""Laptop""]",1968.66,"{"""": ""17%""}",152021,1,Asia +2023-02-04,47821,9441,"[""Monitor"", ""Headphones"", ""Charger""]",3177.09,{},118068,1,North America +2023-12-20,47822,7547,"[""Keyboard"", ""Laptop"", ""Phone""]",3035.11,{},71490,0,Africa +2023-07-18,47823,3362,"[""Phone"", ""Keyboard""]",2647.95,{},175004,1,Asia +2024-07-13,47824,9246,"[""Tablet""]",1859.29,{},198531,1,Europe +2023-11-02,47825,2309,"[""Laptop"", ""Tablet"", ""Keyboard""]",1101.8,"{"""": ""16%""}",186096,0,Africa +2024-10-04,47826,717,"[""Charger"", ""Laptop""]",2880.47,{},190663,0,Asia +2023-09-02,47827,8328,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",217.31,{},123217,1,Asia +2024-02-23,47828,8911,"[""Phone"", ""Wireless Mouse"", ""Charger""]",912.0,{},153380,1,South America +2023-08-29,47829,4880,"[""Keyboard"", ""Monitor"", ""Charger""]",408.47,{},264174,0,South America +2024-05-21,47830,7107,"[""Charger"", ""Monitor""]",1074.04,{},239822,1,Africa +2024-08-07,47831,7004,"[""Monitor""]",110.18,{},87555,1,Europe +2023-01-30,47832,3205,"[""Monitor"", ""Keyboard""]",4088.19,{},134027,1,Asia +2024-09-25,47833,5010,"[""Charger""]",2253.76,{},192998,1,Africa +2023-06-19,47834,3938,"[""Headphones"", ""Monitor"", ""Phone""]",3209.83,{},79349,0,South America +2023-06-02,47835,5340,"[""Charger"", ""Headphones""]",4792.05,{},2564,0,North America +2023-02-28,47836,888,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2200.99,"{""loyalty"": ""15%""}",89619,0,Africa +2024-11-04,47837,5007,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2622.18,"{""loyalty"": ""17%""}",119108,1,Africa +2023-12-07,47838,7611,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4955.24,{},45556,0,North America +2023-03-21,47839,3442,"[""Wireless Mouse""]",405.52,{},20663,1,North America +2024-03-07,47840,8405,"[""Charger"", ""Keyboard"", ""Headphones""]",1677.89,"{""promo"": ""6%""}",286183,0,Asia +2023-12-05,47841,1203,"[""Tablet""]",1247.65,"{""seasonal"": ""28%""}",221552,1,South America +2024-11-07,47842,1774,"[""Tablet"", ""Phone""]",1241.74,"{""seasonal"": ""18%""}",49176,1,North America +2023-05-02,47843,4294,"[""Monitor"", ""Charger""]",3989.98,{},104450,1,Africa +2024-10-13,47844,1180,"[""Monitor"", ""Headphones""]",2478.94,"{"""": ""10%""}",258000,1,Europe +2023-01-13,47845,3784,"[""Wireless Mouse"", ""Headphones""]",4427.48,{},44778,0,Africa +2023-11-13,47846,9153,"[""Tablet"", ""Monitor"", ""Headphones""]",3439.21,{},60921,1,Europe +2024-12-14,47847,3577,"[""Charger"", ""Headphones""]",379.55,"{"""": ""22%""}",294476,1,North America +2023-11-01,47848,4036,"[""Laptop"", ""Charger"", ""Monitor""]",4036.53,{},179347,0,Europe +2023-02-16,47849,2030,"[""Tablet""]",1072.54,{},100581,1,North America +2023-09-19,47850,8279,"[""Laptop""]",181.36,"{""promo"": ""8%""}",246752,0,Africa +2023-01-10,47851,9122,"[""Charger"", ""Laptop""]",2798.42,{},57515,0,Europe +2024-04-20,47852,7524,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3815.97,{},267491,0,Europe +2023-09-24,47853,2968,"[""Monitor"", ""Tablet"", ""Phone""]",2963.62,"{""promo"": ""6%""}",245987,0,Asia +2023-02-10,47854,5117,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",968.56,"{"""": ""8%""}",19107,1,North America +2024-05-17,47855,489,"[""Charger"", ""Laptop"", ""Phone""]",3489.39,{},246195,0,Europe +2023-12-12,47856,4181,"[""Wireless Mouse"", ""Laptop""]",2330.34,"{""loyalty"": ""30%""}",133210,1,South America +2023-06-18,47857,5302,"[""Keyboard"", ""Headphones"", ""Phone""]",3911.09,{},13358,1,Asia +2023-09-04,47858,1698,"[""Laptop"", ""Tablet""]",2978.67,{},210806,1,Asia +2023-05-17,47859,889,"[""Wireless Mouse""]",2239.2,"{""seasonal"": ""12%""}",7855,0,Europe +2023-11-11,47860,4132,"[""Phone""]",4402.3,{},4385,0,Asia +2023-02-04,47861,8135,"[""Laptop""]",4132.95,"{"""": ""12%""}",263782,1,Europe +2023-06-29,47862,2664,"[""Laptop"", ""Phone"", ""Charger""]",1248.01,"{"""": ""29%""}",184731,0,Africa +2024-11-26,47863,4219,"[""Phone"", ""Keyboard"", ""Tablet""]",4740.94,{},52781,0,Asia +2023-10-12,47864,2693,"[""Keyboard""]",3701.8,"{""loyalty"": ""27%""}",2353,1,Europe +2023-11-12,47865,6885,"[""Charger"", ""Keyboard"", ""Tablet""]",411.94,{},252088,1,Africa +2023-07-05,47866,9083,"[""Phone""]",881.76,{},204732,1,Europe +2024-11-10,47867,5132,"[""Headphones""]",4942.64,"{""seasonal"": ""19%""}",158285,1,Asia +2024-04-28,47868,6022,"[""Monitor""]",2698.56,"{"""": ""9%""}",273093,1,Asia +2024-05-07,47869,7998,"[""Keyboard""]",4695.27,"{""loyalty"": ""18%""}",233244,0,Africa +2023-11-11,47870,3124,"[""Charger""]",4058.53,{},184196,0,Europe +2023-04-26,47871,5812,"[""Laptop"", ""Charger"", ""Phone""]",1117.97,"{""loyalty"": ""10%""}",138389,0,South America +2024-08-26,47872,3192,"[""Charger"", ""Tablet""]",82.26,{},182785,0,North America +2024-12-04,47873,9771,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1495.99,{},224016,1,South America +2023-01-27,47874,5497,"[""Monitor""]",3646.95,{},245839,1,Asia +2023-07-05,47875,2101,"[""Phone"", ""Monitor""]",2787.59,"{"""": ""13%""}",291367,1,Europe +2023-02-27,47876,3963,"[""Monitor""]",3046.03,{},73324,0,South America +2024-05-14,47877,1726,"[""Wireless Mouse"", ""Monitor""]",1541.4,"{"""": ""17%""}",242389,0,South America +2023-01-06,47878,7496,"[""Tablet""]",3145.72,"{"""": ""20%""}",137383,0,Africa +2023-02-08,47879,9009,"[""Charger"", ""Wireless Mouse""]",2392.32,{},294836,0,Asia +2024-05-25,47880,4315,"[""Keyboard"", ""Charger""]",3170.49,"{""seasonal"": ""25%""}",235514,0,Asia +2023-10-02,47881,986,"[""Monitor"", ""Charger"", ""Phone""]",3203.69,{},30477,0,North America +2024-12-19,47882,5055,"[""Headphones""]",1603.44,{},108236,0,Europe +2023-12-24,47883,7884,"[""Tablet""]",3471.21,{},188740,1,Europe +2023-09-21,47884,5343,"[""Tablet"", ""Headphones"", ""Phone""]",1822.78,"{""seasonal"": ""22%""}",206819,0,Asia +2024-01-20,47885,577,"[""Keyboard""]",1257.92,"{""seasonal"": ""10%""}",51160,0,Europe +2024-01-06,47886,7409,"[""Phone"", ""Tablet"", ""Charger""]",2052.77,"{""loyalty"": ""24%""}",161190,0,South America +2023-01-25,47887,9392,"[""Laptop"", ""Charger"", ""Headphones""]",221.17,"{""seasonal"": ""17%""}",128045,0,Asia +2024-05-30,47888,3883,"[""Phone"", ""Wireless Mouse""]",719.44,{},174929,0,Africa +2023-09-02,47889,9316,"[""Laptop""]",2580.77,{},192878,0,Europe +2023-09-11,47890,8073,"[""Headphones""]",1707.22,"{"""": ""26%""}",32498,1,South America +2023-12-07,47891,2347,"[""Laptop"", ""Keyboard""]",525.94,"{""loyalty"": ""5%""}",70065,0,Asia +2023-10-23,47892,558,"[""Headphones"", ""Tablet""]",199.72,"{""seasonal"": ""21%""}",188858,0,South America +2023-08-09,47893,883,"[""Wireless Mouse"", ""Charger""]",1199.53,"{""seasonal"": ""28%""}",100685,0,Asia +2023-06-09,47894,9482,"[""Monitor"", ""Tablet"", ""Phone""]",4995.57,"{""seasonal"": ""26%""}",144957,0,South America +2024-09-15,47895,1293,"[""Laptop"", ""Wireless Mouse""]",81.41,{},91388,1,Asia +2024-02-15,47896,7190,"[""Tablet"", ""Keyboard""]",2891.03,{},216896,1,Europe +2023-12-18,47897,7757,"[""Laptop""]",3902.76,"{""promo"": ""23%""}",76207,1,Europe +2023-09-30,47898,6266,"[""Wireless Mouse""]",1903.76,"{""loyalty"": ""13%""}",283118,1,Africa +2024-02-08,47899,1027,"[""Wireless Mouse""]",4456.52,"{""loyalty"": ""18%""}",109871,1,South America +2024-05-08,47900,2780,"[""Phone"", ""Headphones"", ""Tablet""]",2426.56,"{""seasonal"": ""10%""}",244739,1,North America +2024-03-14,47901,3810,"[""Laptop"", ""Keyboard"", ""Phone""]",1107.13,{},88060,0,South America +2024-12-02,47902,2545,"[""Charger""]",2197.89,"{""promo"": ""26%""}",142924,0,Asia +2023-04-07,47903,8713,"[""Keyboard"", ""Headphones""]",3286.61,"{""promo"": ""26%""}",234521,1,Asia +2024-07-12,47904,6251,"[""Phone"", ""Keyboard"", ""Monitor""]",4548.9,{},133260,0,Asia +2023-09-30,47905,7679,"[""Charger""]",1758.44,{},44562,0,Asia +2023-07-02,47906,1532,"[""Keyboard""]",4741.65,"{""promo"": ""6%""}",96097,0,Asia +2024-11-21,47907,9705,"[""Monitor""]",2712.16,{},189004,1,Africa +2023-07-10,47908,8143,"[""Wireless Mouse"", ""Keyboard""]",3387.87,"{""seasonal"": ""13%""}",270839,1,Europe +2023-03-22,47909,9793,"[""Phone"", ""Monitor""]",3964.53,"{""loyalty"": ""11%""}",226899,1,Africa +2023-12-21,47910,6936,"[""Charger""]",2188.05,"{""seasonal"": ""26%""}",210092,1,South America +2023-06-12,47911,6397,"[""Phone"", ""Charger""]",4112.84,{},209152,1,North America +2023-01-13,47912,4778,"[""Wireless Mouse"", ""Keyboard""]",3182.39,{},186418,1,Asia +2023-01-30,47913,5547,"[""Laptop"", ""Keyboard""]",4787.58,{},74825,1,Asia +2024-10-17,47914,9697,"[""Tablet"", ""Charger""]",1162.89,"{""loyalty"": ""30%""}",162562,0,Europe +2024-10-29,47915,7928,"[""Monitor"", ""Phone""]",2075.34,"{""loyalty"": ""12%""}",60321,1,South America +2024-10-01,47916,6779,"[""Phone""]",1663.77,"{""promo"": ""12%""}",64701,0,Africa +2024-11-17,47917,8904,"[""Wireless Mouse"", ""Charger""]",1703.49,{},102824,0,South America +2023-03-27,47918,7540,"[""Wireless Mouse"", ""Tablet""]",2637.97,"{""loyalty"": ""23%""}",116475,1,North America +2023-12-10,47919,7132,"[""Keyboard"", ""Tablet"", ""Monitor""]",4962.46,"{""promo"": ""17%""}",200358,0,Europe +2023-01-22,47920,3082,"[""Tablet"", ""Charger"", ""Headphones""]",3789.31,"{"""": ""17%""}",86512,0,Asia +2024-07-05,47921,8543,"[""Tablet""]",1515.42,{},94855,0,Asia +2024-02-21,47922,8236,"[""Phone""]",4511.37,"{""seasonal"": ""21%""}",118068,1,Asia +2024-07-31,47923,3402,"[""Headphones"", ""Monitor"", ""Laptop""]",245.24,"{""promo"": ""20%""}",156049,0,Asia +2023-09-08,47924,9347,"[""Laptop""]",908.42,{},158086,1,Europe +2023-04-21,47925,1477,"[""Tablet""]",4003.83,"{""seasonal"": ""15%""}",121667,0,Asia +2024-12-08,47926,5458,"[""Keyboard"", ""Monitor""]",4908.93,{},256255,0,Africa +2023-04-23,47927,8341,"[""Charger"", ""Wireless Mouse""]",2341.62,{},206583,1,North America +2023-07-25,47928,5024,"[""Phone"", ""Charger"", ""Tablet""]",330.12,"{""loyalty"": ""17%""}",153756,0,Asia +2024-11-30,47929,6775,"[""Phone"", ""Keyboard""]",2655.31,{},198713,1,Europe +2024-07-19,47930,2372,"[""Tablet"", ""Headphones""]",1704.28,"{"""": ""10%""}",67102,1,Asia +2024-03-29,47931,57,"[""Monitor"", ""Phone""]",1824.61,"{""promo"": ""13%""}",249219,0,South America +2023-07-15,47932,4020,"[""Charger"", ""Keyboard""]",3211.6,"{""loyalty"": ""20%""}",120958,0,Europe +2023-06-24,47933,1594,"[""Phone"", ""Keyboard"", ""Monitor""]",2683.32,{},257656,1,South America +2024-07-27,47934,336,"[""Monitor"", ""Keyboard"", ""Phone""]",1938.61,"{""loyalty"": ""5%""}",8674,1,North America +2023-05-30,47935,9167,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4899.57,"{""promo"": ""20%""}",95338,1,Europe +2024-03-30,47936,2486,"[""Monitor""]",830.71,{},101143,0,Asia +2023-04-06,47937,4480,"[""Phone"", ""Charger""]",4832.13,{},172725,1,Europe +2024-04-03,47938,7270,"[""Phone""]",3406.78,{},258057,1,North America +2024-02-06,47939,122,"[""Laptop"", ""Keyboard""]",4980.15,{},297954,0,Asia +2023-05-28,47940,1668,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",308.93,"{""promo"": ""12%""}",70511,1,South America +2024-01-06,47941,9712,"[""Wireless Mouse""]",4905.62,"{""promo"": ""22%""}",237200,1,South America +2023-05-28,47942,6405,"[""Monitor""]",107.89,"{""promo"": ""21%""}",63473,0,North America +2024-09-25,47943,9507,"[""Phone""]",2959.52,"{""seasonal"": ""18%""}",173839,0,Africa +2023-07-17,47944,9196,"[""Phone"", ""Headphones""]",2406.03,"{""seasonal"": ""29%""}",255750,0,South America +2024-05-03,47945,4227,"[""Phone"", ""Charger"", ""Tablet""]",3131.13,{},100063,1,South America +2023-05-20,47946,2053,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1139.76,{},100224,1,South America +2024-11-26,47947,1679,"[""Headphones""]",368.94,{},239957,1,Asia +2024-06-04,47948,5279,"[""Keyboard"", ""Laptop""]",4317.02,{},237037,0,South America +2024-03-31,47949,640,"[""Phone"", ""Monitor""]",740.62,{},95023,1,Asia +2023-02-24,47950,1122,"[""Wireless Mouse""]",4932.09,{},57781,1,Africa +2024-02-12,47951,3453,"[""Laptop""]",3508.97,"{""promo"": ""24%""}",25290,1,South America +2023-04-08,47952,8929,"[""Wireless Mouse""]",4701.26,"{""promo"": ""20%""}",67518,1,South America +2024-11-27,47953,981,"[""Keyboard"", ""Charger"", ""Monitor""]",4762.45,"{""promo"": ""27%""}",49634,0,North America +2023-07-17,47954,7304,"[""Monitor""]",3937.99,"{""loyalty"": ""15%""}",296778,0,South America +2024-01-03,47955,5013,"[""Tablet"", ""Headphones""]",3306.58,{},124250,0,Asia +2024-07-28,47956,4680,"[""Keyboard""]",3849.99,"{""seasonal"": ""28%""}",214356,1,Asia +2023-05-25,47957,795,"[""Keyboard""]",2820.31,{},5976,0,North America +2023-01-29,47958,4866,"[""Keyboard"", ""Wireless Mouse""]",4266.21,{},152709,0,Europe +2024-08-24,47959,1829,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2757.52,"{""loyalty"": ""28%""}",285869,0,Europe +2024-06-23,47960,2798,"[""Keyboard""]",2598.88,{},14576,1,North America +2023-12-21,47961,3542,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4064.24,{},293533,0,Africa +2024-02-09,47962,4183,"[""Charger"", ""Tablet"", ""Monitor""]",565.56,"{""promo"": ""14%""}",50152,0,South America +2024-07-28,47963,5047,"[""Laptop"", ""Headphones""]",591.91,{},2639,0,Europe +2023-05-05,47964,2469,"[""Phone"", ""Charger""]",4875.57,"{""seasonal"": ""7%""}",164714,0,Africa +2023-01-28,47965,4997,"[""Tablet"", ""Keyboard"", ""Charger""]",1429.77,{},121363,1,North America +2023-05-01,47966,2505,"[""Monitor""]",3565.39,"{""seasonal"": ""8%""}",49766,1,Asia +2023-05-21,47967,9801,"[""Phone"", ""Charger""]",4679.64,"{""loyalty"": ""15%""}",24317,0,Africa +2024-12-08,47968,2472,"[""Phone"", ""Charger"", ""Monitor""]",2812.26,"{""seasonal"": ""26%""}",18346,0,North America +2023-05-17,47969,3616,"[""Tablet""]",613.22,"{""seasonal"": ""23%""}",267197,0,North America +2024-09-21,47970,5984,"[""Phone"", ""Keyboard""]",1593.87,"{""loyalty"": ""14%""}",10353,0,Africa +2024-11-13,47971,6656,"[""Headphones"", ""Wireless Mouse""]",1377.16,"{"""": ""22%""}",182751,0,South America +2024-05-19,47972,8391,"[""Keyboard""]",2564.39,{},19040,1,Africa +2023-03-24,47973,7364,"[""Wireless Mouse"", ""Keyboard""]",1932.07,{},115008,0,North America +2023-07-14,47974,7169,"[""Headphones"", ""Wireless Mouse""]",4263.13,"{""seasonal"": ""11%""}",57819,1,Europe +2023-10-29,47975,7171,"[""Headphones""]",4650.89,{},168523,1,Europe +2024-12-25,47976,9559,"[""Keyboard""]",664.85,{},273732,0,Europe +2023-03-08,47977,226,"[""Tablet"", ""Monitor"", ""Headphones""]",4198.77,{},287457,1,North America +2024-10-27,47978,4755,"[""Wireless Mouse""]",1281.14,{},195489,1,Europe +2024-02-05,47979,8718,"[""Wireless Mouse"", ""Tablet""]",2610.98,"{"""": ""12%""}",152961,0,Africa +2024-01-14,47980,74,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2653.69,{},179582,0,Europe +2024-08-27,47981,9727,"[""Tablet""]",3745.97,"{""loyalty"": ""30%""}",256036,1,Africa +2024-04-26,47982,3117,"[""Wireless Mouse"", ""Charger""]",2065.06,{},65699,0,Africa +2023-11-06,47983,4116,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1110.12,"{""promo"": ""24%""}",217529,0,Africa +2023-05-13,47984,4343,"[""Monitor"", ""Headphones"", ""Phone""]",2482.2,{},172500,0,Europe +2023-04-26,47985,8465,"[""Charger"", ""Wireless Mouse""]",2119.66,{},250183,0,Asia +2024-07-12,47986,1131,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3077.26,"{"""": ""16%""}",110757,1,Europe +2024-06-16,47987,6887,"[""Wireless Mouse""]",1413.97,"{""promo"": ""5%""}",80745,0,South America +2023-08-10,47988,4708,"[""Keyboard"", ""Monitor"", ""Phone""]",397.59,"{"""": ""6%""}",26671,0,South America +2023-06-29,47989,4699,"[""Phone""]",2672.01,{},87669,0,Asia +2023-01-31,47990,6707,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",117.65,{},229691,0,Asia +2024-09-29,47991,2444,"[""Keyboard""]",860.17,"{""promo"": ""22%""}",171395,1,North America +2023-06-10,47992,942,"[""Tablet""]",2932.4,"{"""": ""21%""}",77095,1,Africa +2023-10-04,47993,6867,"[""Charger"", ""Monitor""]",3307.21,{},35526,1,South America +2023-10-16,47994,1644,"[""Monitor""]",567.04,"{""seasonal"": ""19%""}",116486,1,South America +2024-10-10,47995,2153,"[""Headphones"", ""Monitor""]",1975.02,{},88474,1,North America +2023-05-09,47996,5929,"[""Phone"", ""Monitor"", ""Laptop""]",468.06,"{""seasonal"": ""24%""}",32643,1,North America +2023-07-11,47997,3056,"[""Tablet"", ""Headphones"", ""Monitor""]",1707.76,"{""promo"": ""22%""}",263230,1,Africa +2024-04-07,47998,3411,"[""Headphones"", ""Monitor""]",4290.61,"{"""": ""18%""}",141105,1,Europe +2024-12-10,47999,7139,"[""Wireless Mouse""]",4072.6,"{""promo"": ""20%""}",37009,1,North America +2023-12-09,48000,7353,"[""Keyboard"", ""Laptop""]",2271.65,"{""seasonal"": ""29%""}",172136,1,Europe +2023-11-19,48001,2465,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",613.15,{},248464,0,Asia +2024-11-01,48002,1274,"[""Charger""]",239.07,"{""promo"": ""8%""}",173743,1,Asia +2024-04-22,48003,8322,"[""Monitor""]",2717.16,"{""seasonal"": ""18%""}",140769,1,Europe +2024-11-24,48004,6399,"[""Phone""]",448.48,"{"""": ""7%""}",105751,1,North America +2024-10-06,48005,2116,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1546.38,"{""loyalty"": ""14%""}",121696,1,Africa +2024-02-13,48006,2456,"[""Charger""]",2605.26,{},227741,1,Europe +2024-10-01,48007,63,"[""Laptop"", ""Wireless Mouse""]",4276.15,{},12046,0,North America +2024-06-24,48008,7143,"[""Charger"", ""Wireless Mouse""]",4632.2,"{"""": ""15%""}",293519,1,Europe +2023-12-19,48009,8946,"[""Phone"", ""Charger""]",3683.07,"{"""": ""22%""}",268318,1,Europe +2024-11-11,48010,4641,"[""Laptop"", ""Headphones"", ""Charger""]",2503.16,"{"""": ""6%""}",49786,0,North America +2023-10-18,48011,5403,"[""Headphones"", ""Monitor"", ""Tablet""]",391.79,"{""seasonal"": ""24%""}",153264,0,Africa +2023-09-26,48012,6575,"[""Charger""]",2528.29,"{""promo"": ""30%""}",28348,0,North America +2023-12-30,48013,1214,"[""Phone"", ""Keyboard""]",876.35,{},169764,0,Europe +2023-12-21,48014,8087,"[""Monitor"", ""Headphones""]",3305.39,"{""seasonal"": ""28%""}",259911,0,Europe +2023-10-18,48015,2455,"[""Phone"", ""Monitor""]",1677.39,"{""loyalty"": ""18%""}",157701,0,South America +2023-12-01,48016,7659,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3819.6,{},245402,1,Asia +2023-03-11,48017,8473,"[""Keyboard""]",1931.0,{},201864,1,North America +2024-04-08,48018,3239,"[""Laptop"", ""Wireless Mouse""]",3304.48,"{""loyalty"": ""27%""}",291056,0,Africa +2023-05-29,48019,9088,"[""Laptop"", ""Keyboard""]",3773.95,"{"""": ""10%""}",166554,1,Africa +2023-07-15,48020,7092,"[""Keyboard"", ""Charger""]",4209.96,{},97396,1,Europe +2023-08-15,48021,83,"[""Laptop""]",2490.77,{},231957,1,North America +2024-09-24,48022,3119,"[""Phone"", ""Headphones"", ""Monitor""]",4507.49,"{""loyalty"": ""16%""}",10661,1,South America +2023-10-22,48023,5180,"[""Headphones"", ""Charger"", ""Keyboard""]",4068.7,{},297887,1,North America +2024-05-19,48024,2199,"[""Tablet"", ""Monitor"", ""Keyboard""]",263.23,{},208541,1,Europe +2024-06-04,48025,1616,"[""Keyboard"", ""Headphones""]",4412.48,{},37179,1,Africa +2024-09-07,48026,2141,"[""Tablet"", ""Keyboard""]",2410.9,"{""loyalty"": ""29%""}",112248,0,South America +2023-06-01,48027,5087,"[""Monitor""]",4801.33,"{""loyalty"": ""29%""}",219518,0,Europe +2024-03-08,48028,9499,"[""Monitor""]",340.27,"{""loyalty"": ""26%""}",245540,1,Africa +2024-06-27,48029,5221,"[""Charger"", ""Laptop""]",2632.08,"{""loyalty"": ""23%""}",176366,1,Europe +2023-03-08,48030,2919,"[""Charger"", ""Monitor""]",1812.5,{},204563,1,Asia +2024-12-10,48031,9885,"[""Wireless Mouse"", ""Headphones""]",3503.36,"{""promo"": ""6%""}",57363,1,Asia +2024-01-13,48032,9943,"[""Monitor"", ""Laptop""]",1728.54,"{"""": ""30%""}",190355,0,South America +2024-03-02,48033,5172,"[""Monitor"", ""Headphones""]",4641.76,"{""loyalty"": ""11%""}",174869,0,North America +2023-12-19,48034,8669,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2359.99,"{""loyalty"": ""30%""}",297690,1,North America +2024-05-25,48035,31,"[""Keyboard"", ""Wireless Mouse""]",4586.58,{},276595,1,Africa +2024-07-23,48036,6839,"[""Phone"", ""Charger""]",2358.51,"{""loyalty"": ""15%""}",31067,1,Asia +2024-12-01,48037,2,"[""Monitor"", ""Charger""]",391.61,"{"""": ""20%""}",97898,1,South America +2024-04-17,48038,5131,"[""Laptop"", ""Charger"", ""Monitor""]",4061.62,{},153440,1,Asia +2024-02-24,48039,424,"[""Keyboard""]",4139.85,{},182668,1,North America +2024-06-07,48040,2704,"[""Laptop""]",2650.88,{},192749,1,North America +2024-11-27,48041,5406,"[""Charger"", ""Headphones"", ""Laptop""]",4461.29,{},186394,1,Asia +2024-12-04,48042,848,"[""Phone""]",2505.16,"{""seasonal"": ""8%""}",264372,0,South America +2023-03-02,48043,6022,"[""Phone"", ""Headphones"", ""Laptop""]",4616.84,"{"""": ""18%""}",224508,1,South America +2024-01-02,48044,7745,"[""Phone""]",4619.13,"{""seasonal"": ""8%""}",113823,1,Asia +2024-09-19,48045,2675,"[""Phone"", ""Monitor"", ""Charger""]",682.65,"{""seasonal"": ""6%""}",20288,1,Asia +2024-06-07,48046,5267,"[""Charger"", ""Phone""]",1062.17,"{""loyalty"": ""24%""}",176210,0,Asia +2023-11-27,48047,6613,"[""Laptop""]",4665.65,"{""seasonal"": ""11%""}",84729,0,North America +2023-10-20,48048,178,"[""Phone""]",383.47,{},159564,0,South America +2023-10-27,48049,2446,"[""Keyboard""]",1675.31,{},178265,1,North America +2023-03-22,48050,3340,"[""Phone""]",2285.29,{},29890,0,North America +2023-01-13,48051,711,"[""Laptop"", ""Monitor"", ""Headphones""]",1396.01,{},285637,0,North America +2023-07-13,48052,9961,"[""Charger"", ""Tablet""]",4709.96,{},183046,1,South America +2023-03-14,48053,62,"[""Laptop"", ""Phone"", ""Tablet""]",742.16,{},253998,0,South America +2023-01-20,48054,9398,"[""Wireless Mouse"", ""Laptop""]",105.96,{},115970,1,Asia +2023-07-17,48055,5223,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3121.4,{},156122,0,South America +2023-10-14,48056,6915,"[""Wireless Mouse""]",4428.82,"{""seasonal"": ""15%""}",191432,0,Africa +2023-05-05,48057,1619,"[""Wireless Mouse"", ""Keyboard""]",2362.84,"{""loyalty"": ""5%""}",56450,0,Asia +2023-08-30,48058,6893,"[""Charger"", ""Keyboard""]",2935.33,{},78279,1,South America +2024-01-31,48059,8394,"[""Tablet"", ""Headphones"", ""Laptop""]",3250.88,"{""loyalty"": ""9%""}",17360,0,North America +2023-09-28,48060,4698,"[""Tablet"", ""Keyboard""]",1794.91,"{"""": ""8%""}",38281,1,Africa +2024-07-26,48061,7338,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1460.18,{},30686,0,Asia +2023-06-14,48062,7057,"[""Wireless Mouse""]",4857.04,{},4098,1,North America +2024-09-30,48063,2925,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4121.14,{},96696,1,Africa +2023-02-07,48064,104,"[""Phone"", ""Headphones"", ""Charger""]",248.21,"{""loyalty"": ""27%""}",120003,1,Africa +2023-04-15,48065,6636,"[""Keyboard""]",1399.78,"{""promo"": ""17%""}",267787,1,Africa +2023-03-28,48066,1629,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3187.59,{},164908,1,Asia +2023-02-15,48067,7233,"[""Monitor""]",1212.7,"{"""": ""5%""}",234766,0,North America +2024-06-19,48068,9429,"[""Tablet""]",204.97,{},286300,1,South America +2024-02-01,48069,7841,"[""Charger"", ""Tablet""]",4439.74,{},43766,0,South America +2023-01-03,48070,3594,"[""Laptop"", ""Phone"", ""Monitor""]",214.71,"{""loyalty"": ""24%""}",231857,0,Africa +2024-06-26,48071,5660,"[""Wireless Mouse""]",3214.2,{},226351,1,Africa +2023-11-02,48072,8873,"[""Headphones""]",2029.85,{},141590,0,Asia +2023-08-26,48073,6081,"[""Tablet"", ""Keyboard"", ""Monitor""]",4643.01,{},211978,0,Europe +2023-10-05,48074,6635,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4365.23,{},57976,0,Africa +2024-02-06,48075,4818,"[""Wireless Mouse""]",2283.55,"{"""": ""6%""}",8521,1,Europe +2023-07-29,48076,5427,"[""Tablet""]",3585.75,{},121593,0,North America +2024-03-08,48077,6143,"[""Headphones"", ""Charger""]",3507.7,{},3791,0,Asia +2024-08-18,48078,3449,"[""Headphones""]",3824.83,"{"""": ""28%""}",256882,1,Africa +2023-07-12,48079,8248,"[""Wireless Mouse""]",723.24,{},128914,1,Africa +2024-07-01,48080,3956,"[""Charger"", ""Keyboard""]",1577.92,{},277171,0,North America +2023-08-02,48081,4710,"[""Phone"", ""Monitor""]",2196.37,"{"""": ""14%""}",194121,1,Africa +2024-08-07,48082,3634,"[""Tablet"", ""Keyboard"", ""Phone""]",3950.36,{},89687,1,Europe +2024-04-11,48083,9609,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2735.46,"{"""": ""25%""}",88549,0,Asia +2024-07-05,48084,5027,"[""Headphones""]",291.7,{},241779,1,Europe +2024-08-08,48085,7964,"[""Wireless Mouse""]",2933.9,{},275167,1,Asia +2023-01-16,48086,7315,"[""Charger""]",305.62,{},288376,1,Africa +2024-07-18,48087,2581,"[""Monitor""]",672.94,{},21565,0,Europe +2023-10-04,48088,8530,"[""Keyboard"", ""Charger""]",633.05,"{""seasonal"": ""11%""}",126134,0,North America +2023-04-06,48089,9946,"[""Tablet""]",1848.93,"{"""": ""12%""}",84280,0,Africa +2024-02-10,48090,8470,"[""Laptop"", ""Tablet""]",3824.47,{},174134,1,South America +2024-09-04,48091,8531,"[""Wireless Mouse"", ""Tablet""]",1689.35,{},79010,0,Europe +2023-12-16,48092,1206,"[""Tablet""]",4282.74,"{""loyalty"": ""14%""}",147039,0,South America +2023-03-13,48093,8973,"[""Monitor"", ""Headphones""]",3290.58,"{""promo"": ""16%""}",229466,0,Europe +2024-05-29,48094,1612,"[""Wireless Mouse""]",1791.47,{},79699,0,North America +2024-08-11,48095,2894,"[""Tablet"", ""Keyboard"", ""Laptop""]",4824.91,"{""promo"": ""13%""}",157475,1,North America +2024-04-30,48096,6949,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4189.33,{},145458,0,North America +2023-05-13,48097,1946,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",860.47,"{""promo"": ""29%""}",153082,0,Europe +2024-03-16,48098,7240,"[""Tablet""]",365.12,"{""loyalty"": ""23%""}",256245,0,North America +2024-01-14,48099,5886,"[""Headphones"", ""Charger"", ""Laptop""]",4097.37,{},215149,1,Africa +2023-09-11,48100,7878,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2289.56,"{""seasonal"": ""8%""}",172578,1,South America +2023-03-02,48101,7998,"[""Headphones"", ""Wireless Mouse""]",1099.05,"{""promo"": ""7%""}",259344,0,Asia +2023-08-19,48102,9436,"[""Wireless Mouse"", ""Phone""]",3183.4,{},26823,1,Asia +2024-02-11,48103,524,"[""Headphones""]",556.59,"{""seasonal"": ""12%""}",165794,0,North America +2024-10-20,48104,6893,"[""Tablet"", ""Phone""]",564.21,"{"""": ""28%""}",173327,0,North America +2023-11-14,48105,8539,"[""Laptop"", ""Monitor"", ""Headphones""]",2267.55,"{""promo"": ""8%""}",136712,1,Europe +2023-10-27,48106,8358,"[""Keyboard"", ""Phone""]",1406.34,"{""seasonal"": ""14%""}",127638,0,Africa +2023-11-18,48107,3807,"[""Phone"", ""Monitor""]",241.85,"{""seasonal"": ""27%""}",86584,0,Africa +2023-11-30,48108,7083,"[""Charger""]",4143.61,"{""promo"": ""19%""}",263041,0,Africa +2024-01-14,48109,3927,"[""Headphones"", ""Laptop""]",649.93,"{""promo"": ""22%""}",160287,0,Africa +2023-10-24,48110,1770,"[""Headphones""]",1098.4,"{""seasonal"": ""5%""}",182163,0,South America +2024-02-16,48111,4730,"[""Monitor"", ""Tablet""]",1276.12,{},146215,0,Asia +2023-07-05,48112,3226,"[""Monitor"", ""Charger""]",1304.56,{},34044,0,Africa +2023-03-09,48113,1892,"[""Headphones"", ""Phone""]",3848.53,{},250438,0,Europe +2023-06-18,48114,5659,"[""Laptop"", ""Phone"", ""Tablet""]",559.83,{},4662,0,Asia +2023-01-06,48115,2415,"[""Charger"", ""Laptop"", ""Monitor""]",3015.12,{},67264,0,Asia +2024-02-22,48116,1820,"[""Laptop"", ""Wireless Mouse""]",1089.65,"{""loyalty"": ""9%""}",236813,1,Asia +2024-10-16,48117,2088,"[""Keyboard"", ""Phone"", ""Tablet""]",4746.58,{},203766,1,South America +2023-07-25,48118,4675,"[""Tablet"", ""Laptop"", ""Phone""]",4390.43,"{""promo"": ""17%""}",189380,0,North America +2024-10-22,48119,2476,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3525.88,{},188117,0,South America +2023-12-26,48120,8947,"[""Phone""]",1177.94,"{"""": ""8%""}",258825,0,North America +2023-07-11,48121,6387,"[""Headphones"", ""Laptop""]",999.3,"{""promo"": ""5%""}",2993,0,South America +2024-10-17,48122,6565,"[""Laptop"", ""Wireless Mouse""]",2180.39,"{""loyalty"": ""9%""}",53373,1,South America +2024-09-12,48123,8422,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",406.24,{},129121,1,Asia +2023-10-21,48124,5589,"[""Phone""]",1606.1,"{""promo"": ""15%""}",49118,1,Africa +2024-07-07,48125,9949,"[""Laptop"", ""Phone"", ""Monitor""]",1653.36,"{""promo"": ""17%""}",200033,0,South America +2023-02-20,48126,1135,"[""Charger"", ""Headphones""]",1199.93,{},220244,1,Asia +2024-01-01,48127,1104,"[""Keyboard"", ""Monitor"", ""Tablet""]",1408.35,"{"""": ""18%""}",129271,1,Africa +2023-02-20,48128,635,"[""Charger""]",2091.81,{},141205,0,North America +2024-08-03,48129,2832,"[""Wireless Mouse"", ""Headphones""]",1752.75,{},68165,0,Asia +2023-11-20,48130,7593,"[""Charger""]",303.02,"{""loyalty"": ""21%""}",34742,0,Africa +2023-04-04,48131,2350,"[""Charger"", ""Phone""]",4698.25,{},279836,1,South America +2024-01-29,48132,5027,"[""Tablet"", ""Monitor""]",333.95,"{"""": ""17%""}",282311,0,North America +2024-02-05,48133,2355,"[""Monitor""]",4022.31,{},214185,1,Europe +2024-04-07,48134,5059,"[""Phone""]",873.38,{},27544,1,Asia +2023-05-13,48135,2111,"[""Laptop""]",2336.22,"{"""": ""19%""}",165894,1,North America +2023-02-03,48136,3007,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3728.84,{},68163,0,Europe +2024-08-18,48137,9375,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4719.88,"{""promo"": ""11%""}",231518,0,Europe +2023-08-17,48138,4770,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2891.1,"{"""": ""12%""}",203143,1,South America +2023-03-23,48139,7413,"[""Headphones"", ""Tablet""]",381.52,"{""promo"": ""26%""}",117102,1,North America +2024-09-19,48140,5691,"[""Headphones"", ""Laptop""]",166.65,{},76227,0,South America +2024-05-16,48141,388,"[""Charger"", ""Monitor"", ""Laptop""]",530.01,{},191703,1,Africa +2023-09-05,48142,5289,"[""Headphones"", ""Laptop"", ""Charger""]",4687.34,{},38541,1,South America +2024-06-07,48143,6361,"[""Keyboard""]",3963.87,"{"""": ""20%""}",172399,0,South America +2023-07-06,48144,7648,"[""Charger"", ""Monitor""]",3433.32,"{"""": ""7%""}",171085,1,Africa +2023-04-19,48145,3522,"[""Keyboard""]",2193.34,{},200453,1,Europe +2024-05-22,48146,7345,"[""Phone""]",1920.06,{},285593,0,North America +2023-05-23,48147,1210,"[""Phone"", ""Tablet""]",4783.5,{},144208,1,North America +2023-07-25,48148,8249,"[""Tablet""]",2612.71,{},232880,1,North America +2024-08-30,48149,2131,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3286.31,{},169276,1,Africa +2023-02-05,48150,1617,"[""Keyboard"", ""Charger""]",683.81,"{""loyalty"": ""27%""}",249716,0,Asia +2023-06-20,48151,7401,"[""Monitor"", ""Tablet""]",413.97,{},89390,0,South America +2023-04-30,48152,1537,"[""Keyboard"", ""Phone""]",550.43,"{""loyalty"": ""27%""}",88629,0,South America +2023-07-20,48153,1492,"[""Wireless Mouse"", ""Keyboard""]",1628.28,{},255050,0,Asia +2024-10-31,48154,360,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2446.49,{},168130,0,North America +2024-08-03,48155,3323,"[""Headphones"", ""Phone""]",1869.75,"{""seasonal"": ""5%""}",143815,0,North America +2023-10-30,48156,7104,"[""Headphones""]",88.95,{},27946,1,North America +2024-09-29,48157,9381,"[""Wireless Mouse""]",3979.33,"{"""": ""7%""}",255948,1,North America +2024-04-13,48158,5566,"[""Phone"", ""Wireless Mouse""]",1054.95,"{""loyalty"": ""6%""}",218607,0,Africa +2024-08-31,48159,9151,"[""Wireless Mouse"", ""Phone""]",722.5,"{""seasonal"": ""15%""}",151561,0,Africa +2024-02-23,48160,3850,"[""Wireless Mouse"", ""Keyboard""]",4884.63,{},71544,1,Europe +2023-07-23,48161,9114,"[""Phone"", ""Tablet""]",1341.53,{},44273,0,North America +2024-03-14,48162,7452,"[""Tablet"", ""Keyboard""]",3766.66,{},79443,1,South America +2024-07-22,48163,986,"[""Monitor"", ""Laptop""]",2643.81,"{"""": ""9%""}",63929,1,South America +2024-03-07,48164,8422,"[""Wireless Mouse""]",801.11,{},191635,1,South America +2024-10-17,48165,7173,"[""Wireless Mouse"", ""Monitor""]",1911.44,"{""loyalty"": ""14%""}",228406,1,South America +2024-05-15,48166,6381,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1313.15,{},110259,0,North America +2023-01-21,48167,3309,"[""Phone"", ""Wireless Mouse""]",1479.38,"{""promo"": ""12%""}",289312,1,Asia +2023-12-25,48168,8561,"[""Charger"", ""Keyboard"", ""Tablet""]",321.66,"{""promo"": ""9%""}",282668,1,Europe +2023-02-12,48169,9149,"[""Keyboard""]",2701.72,{},82449,1,Asia +2023-02-17,48170,1676,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2825.43,"{"""": ""10%""}",134960,1,Asia +2023-11-08,48171,9196,"[""Monitor""]",373.48,"{""seasonal"": ""6%""}",30289,0,South America +2023-12-31,48172,3070,"[""Phone""]",327.58,"{""loyalty"": ""9%""}",28735,1,North America +2023-06-05,48173,9186,"[""Keyboard"", ""Laptop""]",520.32,"{"""": ""24%""}",115259,1,South America +2023-01-15,48174,2857,"[""Tablet"", ""Laptop""]",3189.94,{},297364,0,Africa +2023-05-14,48175,7070,"[""Tablet"", ""Charger"", ""Laptop""]",3453.92,"{""loyalty"": ""21%""}",177703,0,Asia +2023-05-16,48176,8180,"[""Phone""]",3981.25,{},37389,1,North America +2024-07-02,48177,5587,"[""Phone""]",3114.83,"{""seasonal"": ""26%""}",101140,0,North America +2024-03-28,48178,8666,"[""Keyboard"", ""Laptop"", ""Charger""]",4021.07,"{"""": ""27%""}",177419,0,North America +2023-05-29,48179,5828,"[""Keyboard"", ""Phone"", ""Charger""]",3098.96,{},220611,0,Europe +2023-09-13,48180,1325,"[""Keyboard""]",3446.49,{},179430,0,South America +2023-04-16,48181,6539,"[""Monitor"", ""Laptop""]",3261.23,"{""seasonal"": ""5%""}",20734,1,North America +2023-07-15,48182,331,"[""Headphones""]",4681.97,{},277001,1,South America +2023-03-14,48183,1706,"[""Laptop"", ""Phone""]",3174.42,{},141135,1,South America +2023-09-15,48184,9264,"[""Tablet"", ""Keyboard""]",4014.64,"{"""": ""16%""}",215115,1,Africa +2024-08-08,48185,9440,"[""Phone""]",2130.04,{},70220,1,Europe +2023-09-16,48186,3716,"[""Headphones"", ""Charger""]",2297.11,{},130704,0,Europe +2023-11-04,48187,5969,"[""Laptop""]",2320.32,{},234795,1,South America +2023-08-23,48188,4274,"[""Phone"", ""Monitor""]",1105.49,"{""seasonal"": ""16%""}",21078,1,Africa +2024-03-15,48189,305,"[""Keyboard""]",299.29,"{""promo"": ""16%""}",298971,0,North America +2023-05-04,48190,4630,"[""Monitor""]",4695.08,"{"""": ""13%""}",86648,1,Asia +2023-10-19,48191,7919,"[""Phone""]",2704.22,"{""seasonal"": ""19%""}",243414,0,Asia +2024-05-26,48192,1210,"[""Headphones"", ""Charger"", ""Monitor""]",3311.99,"{""seasonal"": ""10%""}",275618,0,Europe +2024-05-01,48193,4419,"[""Laptop""]",602.42,{},88713,0,North America +2024-06-14,48194,4251,"[""Laptop""]",4931.89,"{"""": ""22%""}",138550,1,North America +2023-10-12,48195,3468,"[""Wireless Mouse"", ""Phone""]",116.63,{},112296,1,Africa +2024-01-16,48196,1729,"[""Laptop"", ""Monitor""]",336.17,"{""seasonal"": ""11%""}",134715,0,South America +2023-10-01,48197,6502,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3068.8,{},213089,1,Asia +2023-09-30,48198,2213,"[""Charger""]",3086.94,{},130173,1,North America +2024-04-06,48199,9607,"[""Headphones"", ""Tablet""]",3509.0,"{""promo"": ""18%""}",100772,1,Africa +2024-05-28,48200,9103,"[""Tablet""]",4390.2,"{""promo"": ""12%""}",26881,0,North America +2024-08-24,48201,6858,"[""Laptop"", ""Headphones""]",3075.78,"{""promo"": ""8%""}",143048,0,North America +2023-09-28,48202,7706,"[""Monitor""]",1227.55,{},6036,0,Africa +2023-11-25,48203,5143,"[""Keyboard""]",4168.26,"{""promo"": ""22%""}",186227,1,Africa +2024-06-18,48204,7611,"[""Phone"", ""Charger"", ""Headphones""]",952.16,"{""promo"": ""29%""}",28373,1,Asia +2024-09-22,48205,7073,"[""Wireless Mouse"", ""Laptop""]",2901.08,{},295778,1,South America +2023-08-01,48206,1761,"[""Charger"", ""Headphones""]",4539.05,"{""promo"": ""16%""}",109344,1,Asia +2024-01-23,48207,3106,"[""Tablet"", ""Keyboard"", ""Phone""]",3323.9,{},270365,1,North America +2023-08-05,48208,4169,"[""Wireless Mouse""]",3514.08,{},140973,1,North America +2023-03-01,48209,6019,"[""Tablet""]",79.45,{},249405,0,Europe +2023-06-13,48210,1934,"[""Tablet"", ""Wireless Mouse""]",2253.87,"{"""": ""19%""}",43716,1,Africa +2023-02-20,48211,701,"[""Monitor""]",2746.28,"{""seasonal"": ""22%""}",52682,0,Asia +2023-06-12,48212,4563,"[""Monitor""]",2914.02,{},249915,0,Africa +2023-09-20,48213,4374,"[""Keyboard""]",2720.51,{},117820,0,South America +2023-02-08,48214,4735,"[""Laptop""]",2237.53,{},141162,1,Africa +2023-11-19,48215,2980,"[""Monitor"", ""Phone"", ""Charger""]",825.75,"{"""": ""11%""}",222893,1,South America +2024-10-27,48216,8881,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",943.12,{},83594,1,Europe +2024-04-19,48217,6925,"[""Wireless Mouse""]",3936.11,"{""promo"": ""12%""}",238530,1,South America +2023-07-26,48218,2373,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3251.58,"{"""": ""18%""}",105115,0,South America +2024-12-27,48219,4703,"[""Headphones""]",4202.43,"{""loyalty"": ""29%""}",81280,1,Africa +2023-03-09,48220,1687,"[""Phone"", ""Monitor"", ""Keyboard""]",3224.68,"{""promo"": ""9%""}",76167,0,Europe +2024-08-10,48221,6836,"[""Tablet"", ""Phone""]",602.05,"{""seasonal"": ""24%""}",194712,1,Asia +2024-05-16,48222,5055,"[""Laptop""]",3358.46,{},251368,1,Europe +2024-03-20,48223,1461,"[""Monitor"", ""Keyboard"", ""Laptop""]",4051.57,"{""loyalty"": ""17%""}",123174,0,South America +2023-04-19,48224,6203,"[""Monitor"", ""Tablet"", ""Keyboard""]",1818.38,{},58504,0,Africa +2023-05-26,48225,6584,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4388.47,"{""promo"": ""30%""}",108981,0,Asia +2023-07-22,48226,4750,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",92.93,"{""loyalty"": ""21%""}",254851,0,South America +2023-02-28,48227,1594,"[""Monitor""]",4646.43,"{""seasonal"": ""10%""}",264930,1,Asia +2023-09-01,48228,8746,"[""Monitor""]",4609.62,"{""loyalty"": ""24%""}",190200,1,Africa +2024-04-15,48229,9940,"[""Phone"", ""Tablet""]",3583.78,{},228791,1,Europe +2024-11-01,48230,2962,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2865.01,{},9431,1,Europe +2023-09-23,48231,9675,"[""Phone"", ""Monitor""]",69.68,{},99225,0,North America +2024-11-14,48232,5453,"[""Charger""]",68.04,"{"""": ""12%""}",1225,1,South America +2023-02-09,48233,8669,"[""Keyboard""]",4233.49,"{""loyalty"": ""21%""}",275183,0,Africa +2024-08-04,48234,1292,"[""Laptop"", ""Monitor"", ""Headphones""]",702.84,"{""promo"": ""17%""}",106844,0,Africa +2024-02-02,48235,1468,"[""Headphones""]",3465.35,{},86305,0,South America +2024-04-30,48236,2017,"[""Wireless Mouse"", ""Monitor""]",1922.46,{},293511,1,Europe +2024-04-13,48237,8548,"[""Tablet"", ""Phone""]",1354.43,{},40283,1,Asia +2023-03-30,48238,1131,"[""Wireless Mouse""]",805.62,"{""loyalty"": ""11%""}",51570,0,Asia +2023-07-04,48239,2174,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",947.29,"{""seasonal"": ""15%""}",141099,1,Europe +2023-09-03,48240,9589,"[""Tablet""]",4175.58,"{"""": ""17%""}",26219,1,North America +2023-04-11,48241,9969,"[""Tablet"", ""Headphones"", ""Laptop""]",1010.3,{},209738,1,Asia +2023-01-10,48242,5017,"[""Keyboard""]",1030.65,{},47175,1,Europe +2024-08-13,48243,3310,"[""Wireless Mouse"", ""Monitor""]",185.84,"{""loyalty"": ""17%""}",190188,1,Europe +2024-05-18,48244,7616,"[""Charger""]",543.06,"{""promo"": ""16%""}",206301,0,Europe +2023-05-14,48245,2471,"[""Keyboard"", ""Tablet"", ""Laptop""]",384.15,"{"""": ""17%""}",160825,1,Africa +2023-09-19,48246,5337,"[""Tablet""]",3983.57,{},242583,0,North America +2024-01-23,48247,7021,"[""Headphones""]",578.82,{},31953,0,Asia +2024-03-18,48248,7189,"[""Laptop""]",1790.7,{},119408,0,South America +2024-04-23,48249,5813,"[""Monitor"", ""Charger""]",4229.58,"{""loyalty"": ""7%""}",75893,1,North America +2024-06-10,48250,4460,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",619.66,"{""loyalty"": ""28%""}",110638,1,Europe +2024-10-14,48251,9548,"[""Charger"", ""Wireless Mouse""]",3924.98,{},253180,1,North America +2024-10-20,48252,8261,"[""Monitor"", ""Tablet""]",652.24,"{""loyalty"": ""25%""}",19923,0,Africa +2023-04-03,48253,1440,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3843.97,{},266880,1,Europe +2023-07-03,48254,5190,"[""Monitor"", ""Tablet""]",2729.99,"{""promo"": ""30%""}",31856,1,Europe +2023-06-22,48255,9420,"[""Keyboard"", ""Charger"", ""Headphones""]",948.28,"{""seasonal"": ""9%""}",99858,0,Africa +2024-11-15,48256,5768,"[""Monitor"", ""Wireless Mouse""]",1688.13,{},7959,0,Asia +2023-08-23,48257,5666,"[""Tablet"", ""Headphones""]",2643.76,{},142425,1,Europe +2024-04-10,48258,8172,"[""Tablet"", ""Monitor""]",4920.78,{},27141,1,Africa +2023-10-30,48259,9445,"[""Headphones""]",741.49,"{""seasonal"": ""22%""}",1207,0,Europe +2023-07-17,48260,230,"[""Phone"", ""Keyboard""]",196.6,{},157720,1,South America +2024-06-15,48261,3876,"[""Keyboard"", ""Laptop"", ""Monitor""]",3905.36,{},236560,1,North America +2024-10-13,48262,4550,"[""Wireless Mouse""]",2310.35,{},290337,0,Africa +2024-09-18,48263,2847,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1790.76,"{""seasonal"": ""21%""}",208624,0,South America +2024-03-05,48264,8505,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1523.2,{},170489,0,South America +2023-08-23,48265,3157,"[""Tablet"", ""Phone""]",2281.61,"{""loyalty"": ""16%""}",20809,0,North America +2023-07-30,48266,2423,"[""Headphones""]",2650.86,"{""promo"": ""15%""}",117964,0,Africa +2023-09-30,48267,1588,"[""Phone""]",1293.37,{},190580,0,Europe +2023-04-22,48268,3066,"[""Keyboard"", ""Monitor""]",1867.81,{},148386,0,Asia +2023-07-28,48269,60,"[""Phone"", ""Charger"", ""Keyboard""]",3469.57,{},286614,0,North America +2024-09-02,48270,8062,"[""Keyboard""]",2078.45,{},63911,0,South America +2023-04-08,48271,1205,"[""Keyboard""]",1213.56,{},223197,1,Africa +2023-02-13,48272,6436,"[""Headphones""]",331.82,"{""loyalty"": ""20%""}",263871,0,Asia +2024-10-25,48273,952,"[""Wireless Mouse""]",271.7,"{""seasonal"": ""30%""}",173450,1,Europe +2024-02-12,48274,4030,"[""Tablet"", ""Monitor""]",3213.94,"{""promo"": ""9%""}",191166,0,Africa +2024-09-27,48275,527,"[""Phone"", ""Tablet"", ""Charger""]",786.59,"{""loyalty"": ""16%""}",71638,1,Europe +2024-04-28,48276,14,"[""Monitor"", ""Phone"", ""Charger""]",2249.24,"{""seasonal"": ""24%""}",164222,0,Europe +2024-11-10,48277,7875,"[""Phone"", ""Charger"", ""Tablet""]",4404.48,{},153657,1,Europe +2024-06-05,48278,6987,"[""Phone"", ""Laptop"", ""Headphones""]",1994.46,{},124863,1,Africa +2024-10-21,48279,4306,"[""Wireless Mouse"", ""Charger""]",2823.45,{},42148,1,North America +2024-10-24,48280,7222,"[""Keyboard""]",3616.02,{},66917,0,Asia +2023-11-25,48281,5658,"[""Laptop"", ""Phone""]",2586.82,"{""loyalty"": ""23%""}",234163,1,South America +2023-09-19,48282,7584,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3533.46,"{"""": ""7%""}",272216,1,South America +2023-03-20,48283,7842,"[""Laptop""]",3586.93,{},230658,0,South America +2023-03-24,48284,3388,"[""Wireless Mouse"", ""Laptop""]",4808.7,{},265677,0,Asia +2023-09-01,48285,9119,"[""Charger"", ""Tablet"", ""Keyboard""]",1992.38,{},31863,1,South America +2023-01-01,48286,9489,"[""Tablet""]",3872.07,"{""promo"": ""26%""}",253157,1,South America +2023-03-17,48287,7686,"[""Charger"", ""Headphones"", ""Tablet""]",174.73,{},144145,1,South America +2024-05-22,48288,6075,"[""Headphones""]",354.5,"{""promo"": ""27%""}",86459,1,Asia +2023-05-26,48289,3546,"[""Headphones""]",2564.08,{},49153,1,Asia +2024-11-26,48290,8024,"[""Phone"", ""Monitor"", ""Tablet""]",845.39,"{""seasonal"": ""24%""}",292004,0,Asia +2023-10-08,48291,5932,"[""Tablet"", ""Keyboard"", ""Monitor""]",1164.06,{},274187,1,North America +2023-02-27,48292,3924,"[""Charger""]",3873.68,{},78174,1,South America +2023-12-10,48293,3797,"[""Headphones""]",2353.01,"{""promo"": ""7%""}",155473,0,North America +2024-04-05,48294,2323,"[""Headphones"", ""Wireless Mouse""]",3364.02,{},31108,0,Europe +2024-04-04,48295,4454,"[""Charger"", ""Headphones""]",4968.99,"{""seasonal"": ""27%""}",85610,1,Europe +2023-12-01,48296,7841,"[""Phone""]",3026.31,"{"""": ""5%""}",278891,0,North America +2023-09-20,48297,9088,"[""Wireless Mouse""]",464.71,{},263601,1,Africa +2023-08-09,48298,1490,"[""Wireless Mouse""]",3935.24,"{"""": ""27%""}",32458,1,South America +2023-02-22,48299,9994,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",768.05,{},123224,0,Africa +2024-10-15,48300,2432,"[""Charger""]",4959.58,"{""promo"": ""28%""}",131662,0,Europe +2024-01-13,48301,1354,"[""Headphones"", ""Laptop""]",3207.11,{},16747,1,Africa +2023-04-21,48302,3066,"[""Wireless Mouse""]",1593.46,"{""seasonal"": ""9%""}",234294,0,Europe +2023-10-05,48303,4770,"[""Monitor""]",2443.45,{},235646,0,Europe +2023-02-12,48304,5087,"[""Phone""]",4284.66,{},295524,1,Asia +2024-05-30,48305,1265,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2682.0,{},273337,1,Africa +2023-09-16,48306,7547,"[""Laptop""]",1479.17,{},29033,1,North America +2024-01-08,48307,3203,"[""Headphones"", ""Charger""]",3205.78,"{""loyalty"": ""21%""}",246213,0,North America +2023-07-05,48308,9352,"[""Phone""]",759.75,{},62655,1,Europe +2024-05-30,48309,9092,"[""Tablet"", ""Headphones"", ""Charger""]",4431.79,"{"""": ""14%""}",212689,0,Asia +2024-11-18,48310,2666,"[""Phone""]",3384.86,"{""seasonal"": ""6%""}",29226,1,Asia +2024-11-02,48311,1101,"[""Laptop""]",4504.52,"{""seasonal"": ""9%""}",292073,1,Africa +2024-04-14,48312,3220,"[""Keyboard"", ""Phone"", ""Charger""]",795.62,{},66349,1,Asia +2023-04-11,48313,3418,"[""Keyboard"", ""Tablet""]",771.23,{},112965,0,Asia +2024-08-13,48314,8368,"[""Wireless Mouse""]",4759.62,"{""seasonal"": ""29%""}",127348,1,Asia +2024-01-24,48315,7547,"[""Tablet"", ""Headphones""]",653.56,"{"""": ""21%""}",187141,0,Europe +2024-02-17,48316,9316,"[""Wireless Mouse"", ""Charger""]",997.62,{},16039,0,South America +2024-01-03,48317,2299,"[""Headphones"", ""Keyboard""]",4022.26,"{""promo"": ""6%""}",217457,0,Asia +2023-01-12,48318,4654,"[""Charger""]",112.18,{},69530,0,Asia +2023-03-31,48319,3345,"[""Keyboard"", ""Headphones""]",2722.15,{},163178,1,Asia +2023-02-17,48320,5762,"[""Wireless Mouse"", ""Phone""]",960.79,"{""promo"": ""15%""}",129332,1,South America +2024-06-14,48321,5058,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",711.42,{},23872,0,Asia +2024-10-26,48322,8933,"[""Phone"", ""Charger"", ""Laptop""]",264.11,"{"""": ""8%""}",68345,0,Asia +2024-01-23,48323,557,"[""Monitor""]",1127.89,{},62674,0,Europe +2024-01-06,48324,1887,"[""Charger"", ""Tablet""]",175.77,{},90223,0,Europe +2024-11-11,48325,977,"[""Wireless Mouse"", ""Headphones""]",111.94,{},90551,0,North America +2024-11-13,48326,678,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3913.46,{},138373,0,South America +2023-11-25,48327,4092,"[""Tablet"", ""Keyboard"", ""Charger""]",4167.57,{},55270,1,North America +2023-05-24,48328,5791,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",366.03,{},200073,1,North America +2024-05-29,48329,8248,"[""Tablet"", ""Laptop""]",601.69,"{""loyalty"": ""13%""}",172927,0,Africa +2024-01-14,48330,1063,"[""Charger"", ""Headphones"", ""Tablet""]",212.92,{},112324,0,Asia +2024-10-12,48331,159,"[""Monitor"", ""Tablet"", ""Laptop""]",4247.77,{},197821,1,Asia +2023-05-22,48332,9176,"[""Laptop"", ""Headphones""]",1285.82,"{""loyalty"": ""29%""}",4033,0,Europe +2023-07-23,48333,8301,"[""Headphones"", ""Keyboard"", ""Laptop""]",97.93,"{"""": ""28%""}",192293,1,North America +2023-03-17,48334,1500,"[""Wireless Mouse"", ""Tablet""]",4164.58,"{"""": ""21%""}",52950,1,Africa +2024-03-29,48335,1616,"[""Tablet""]",2937.53,{},113792,0,Asia +2024-04-23,48336,7658,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2779.86,"{""loyalty"": ""18%""}",125561,1,Europe +2024-07-01,48337,1321,"[""Wireless Mouse""]",1693.47,{},59308,0,North America +2023-02-24,48338,6330,"[""Keyboard"", ""Phone"", ""Laptop""]",4054.55,"{""seasonal"": ""25%""}",27106,0,South America +2024-03-17,48339,6437,"[""Monitor"", ""Laptop""]",4615.29,"{""loyalty"": ""15%""}",265369,1,North America +2023-12-19,48340,1938,"[""Monitor"", ""Phone"", ""Laptop""]",3916.94,{},105163,0,Africa +2024-01-27,48341,6574,"[""Headphones"", ""Keyboard""]",784.77,"{"""": ""11%""}",201983,1,North America +2024-03-25,48342,5279,"[""Wireless Mouse"", ""Keyboard""]",735.51,{},171862,0,Europe +2024-11-24,48343,2370,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1979.92,{},82623,1,Europe +2023-07-10,48344,9798,"[""Phone""]",4741.87,{},197622,0,Europe +2024-02-20,48345,995,"[""Laptop"", ""Headphones"", ""Keyboard""]",792.74,"{""seasonal"": ""9%""}",85691,1,North America +2023-04-18,48346,2577,"[""Keyboard""]",2156.63,{},145435,1,South America +2023-12-26,48347,6283,"[""Wireless Mouse"", ""Phone""]",640.67,"{""loyalty"": ""12%""}",167864,1,Europe +2024-09-27,48348,3346,"[""Phone""]",3834.28,{},257694,1,Europe +2024-02-23,48349,9179,"[""Charger""]",3848.5,{},75628,1,Africa +2024-10-20,48350,3287,"[""Laptop"", ""Wireless Mouse""]",1579.66,"{""loyalty"": ""17%""}",230836,0,North America +2024-07-15,48351,2686,"[""Laptop"", ""Charger"", ""Keyboard""]",4594.54,{},155540,1,Africa +2024-03-28,48352,8194,"[""Charger"", ""Keyboard""]",4692.88,{},49537,1,Africa +2024-05-27,48353,5212,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1922.56,"{""seasonal"": ""24%""}",56628,1,Europe +2023-03-08,48354,1150,"[""Headphones""]",1913.32,"{""seasonal"": ""6%""}",43849,0,Africa +2023-12-08,48355,8217,"[""Charger"", ""Laptop""]",1873.51,"{""loyalty"": ""16%""}",250691,1,North America +2024-12-12,48356,8067,"[""Headphones"", ""Tablet"", ""Monitor""]",1078.86,"{""loyalty"": ""29%""}",171523,0,Asia +2023-09-04,48357,3932,"[""Phone""]",816.64,"{"""": ""6%""}",297336,1,Europe +2024-05-17,48358,8316,"[""Keyboard"", ""Headphones"", ""Monitor""]",2303.5,{},168314,0,Europe +2024-05-05,48359,9842,"[""Tablet""]",3532.51,{},138854,0,Europe +2023-04-25,48360,6723,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2281.43,"{""loyalty"": ""24%""}",239197,0,North America +2024-10-07,48361,799,"[""Laptop"", ""Keyboard""]",4308.63,"{"""": ""7%""}",256571,0,North America +2023-01-23,48362,5130,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2223.92,"{""loyalty"": ""7%""}",275257,1,Asia +2024-04-05,48363,6131,"[""Keyboard"", ""Charger""]",245.22,{},29849,0,Asia +2024-05-17,48364,7325,"[""Headphones"", ""Phone"", ""Tablet""]",4254.56,"{""seasonal"": ""20%""}",268416,0,Asia +2024-09-28,48365,2482,"[""Monitor"", ""Tablet""]",292.33,"{"""": ""15%""}",197484,1,South America +2023-08-11,48366,8221,"[""Charger"", ""Laptop""]",1469.47,"{""promo"": ""27%""}",291163,1,North America +2024-02-24,48367,6868,"[""Charger""]",2760.81,{},194846,0,Africa +2024-04-07,48368,2138,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2068.43,"{""promo"": ""24%""}",171036,1,Europe +2024-05-31,48369,1545,"[""Tablet"", ""Headphones""]",3524.77,{},37568,0,Europe +2024-08-15,48370,9937,"[""Laptop"", ""Keyboard"", ""Tablet""]",722.77,"{""loyalty"": ""10%""}",41469,1,North America +2024-07-23,48371,4151,"[""Charger""]",4153.83,{},259910,1,Europe +2023-03-07,48372,1928,"[""Keyboard""]",2764.38,"{"""": ""6%""}",43641,1,Europe +2024-09-23,48373,2144,"[""Phone"", ""Keyboard""]",2263.13,"{""loyalty"": ""30%""}",98848,0,North America +2023-02-28,48374,9805,"[""Wireless Mouse"", ""Phone""]",1314.62,"{""loyalty"": ""19%""}",292442,1,North America +2023-01-23,48375,9326,"[""Laptop""]",104.11,"{"""": ""10%""}",50499,1,South America +2023-04-01,48376,9334,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2414.37,"{""loyalty"": ""18%""}",241378,0,Asia +2024-08-12,48377,9304,"[""Phone"", ""Headphones"", ""Charger""]",1377.11,"{""seasonal"": ""27%""}",263485,0,North America +2024-06-22,48378,9960,"[""Monitor"", ""Laptop"", ""Keyboard""]",237.16,{},219829,0,Africa +2023-11-11,48379,8470,"[""Monitor"", ""Laptop""]",403.53,"{""seasonal"": ""25%""}",141484,1,Africa +2024-07-18,48380,2956,"[""Headphones"", ""Charger""]",4702.18,{},254751,0,Europe +2023-06-22,48381,4287,"[""Monitor""]",3022.53,"{"""": ""8%""}",79719,0,North America +2023-06-08,48382,9664,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4062.09,{},201676,1,Africa +2024-06-29,48383,682,"[""Keyboard"", ""Monitor""]",4221.36,"{""promo"": ""24%""}",112696,0,South America +2023-12-26,48384,6020,"[""Wireless Mouse"", ""Tablet""]",1399.86,{},278302,1,North America +2024-12-09,48385,8300,"[""Laptop"", ""Monitor""]",2757.26,"{""promo"": ""27%""}",168919,1,South America +2024-07-03,48386,8763,"[""Wireless Mouse""]",4299.01,"{""promo"": ""18%""}",59175,1,Asia +2023-07-24,48387,1207,"[""Charger""]",1646.35,{},138346,1,Africa +2023-12-01,48388,5545,"[""Monitor""]",2926.85,{},60624,1,South America +2023-03-28,48389,531,"[""Headphones"", ""Laptop""]",1650.29,"{"""": ""29%""}",233804,0,Africa +2024-08-04,48390,8566,"[""Tablet"", ""Keyboard""]",3395.95,{},262891,1,Asia +2023-04-19,48391,2829,"[""Tablet"", ""Charger""]",4334.4,"{"""": ""12%""}",39389,0,Europe +2023-01-19,48392,495,"[""Laptop"", ""Monitor""]",2350.46,{},270167,1,South America +2023-05-17,48393,7573,"[""Tablet""]",2332.48,"{""promo"": ""29%""}",42207,1,Asia +2023-03-22,48394,6668,"[""Monitor""]",4048.12,"{""promo"": ""29%""}",294774,0,South America +2024-12-08,48395,3824,"[""Headphones"", ""Monitor"", ""Tablet""]",4137.2,"{""seasonal"": ""26%""}",222843,1,Asia +2023-01-07,48396,4969,"[""Phone"", ""Wireless Mouse""]",2384.54,"{""promo"": ""7%""}",217831,0,Europe +2023-11-13,48397,8908,"[""Phone"", ""Monitor""]",2415.12,{},98948,1,Asia +2024-10-24,48398,6149,"[""Tablet"", ""Headphones""]",1558.08,{},67112,0,Europe +2023-08-05,48399,8837,"[""Monitor"", ""Phone"", ""Headphones""]",635.22,"{"""": ""26%""}",181926,0,Asia +2024-05-14,48400,9824,"[""Monitor"", ""Headphones""]",2678.5,{},208262,0,Europe +2024-09-18,48401,1172,"[""Phone"", ""Tablet""]",3674.95,{},136808,0,South America +2024-02-05,48402,3567,"[""Monitor""]",4371.27,"{""loyalty"": ""10%""}",276307,0,Asia +2024-01-06,48403,1745,"[""Laptop"", ""Phone"", ""Headphones""]",3275.99,"{""promo"": ""27%""}",17967,1,Europe +2024-11-04,48404,3183,"[""Keyboard""]",293.24,"{""loyalty"": ""11%""}",272335,0,Asia +2024-01-25,48405,9115,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",510.33,"{""loyalty"": ""29%""}",42966,1,North America +2024-02-28,48406,2978,"[""Monitor"", ""Keyboard""]",4928.68,{},211105,1,North America +2024-03-14,48407,3889,"[""Phone""]",1895.53,{},93153,0,Africa +2023-08-29,48408,2987,"[""Tablet""]",1837.56,"{""loyalty"": ""23%""}",208827,1,Europe +2024-04-10,48409,7981,"[""Headphones""]",2734.56,{},114253,0,Africa +2023-04-21,48410,3498,"[""Keyboard"", ""Headphones""]",3933.05,{},262970,1,Asia +2023-04-14,48411,5430,"[""Phone""]",91.07,{},141532,0,Europe +2024-09-13,48412,5403,"[""Keyboard""]",1040.0,{},27283,1,Africa +2024-08-18,48413,1930,"[""Keyboard""]",113.55,{},207113,1,North America +2024-01-25,48414,4548,"[""Tablet""]",1480.54,"{"""": ""7%""}",51101,0,Africa +2023-08-01,48415,5375,"[""Keyboard"", ""Phone"", ""Monitor""]",1390.87,"{""promo"": ""17%""}",283796,0,Asia +2023-11-29,48416,8851,"[""Wireless Mouse"", ""Headphones""]",2264.5,{},109330,0,North America +2023-05-14,48417,1929,"[""Laptop"", ""Headphones"", ""Phone""]",1203.87,"{"""": ""15%""}",257487,0,Africa +2023-03-18,48418,4020,"[""Laptop""]",258.96,"{""promo"": ""18%""}",170161,0,South America +2024-05-20,48419,6736,"[""Charger""]",4052.02,{},55210,1,North America +2024-02-03,48420,9983,"[""Laptop"", ""Phone""]",510.51,"{""loyalty"": ""20%""}",12529,0,North America +2023-11-20,48421,5377,"[""Phone"", ""Headphones"", ""Laptop""]",4898.56,{},274833,1,Africa +2024-10-13,48422,4743,"[""Wireless Mouse"", ""Tablet""]",2715.12,"{"""": ""14%""}",263667,1,Asia +2023-05-17,48423,4320,"[""Monitor"", ""Phone"", ""Headphones""]",4294.76,"{""promo"": ""16%""}",28278,1,Europe +2023-03-23,48424,6090,"[""Charger"", ""Headphones""]",1540.12,"{""promo"": ""7%""}",109064,0,North America +2023-05-26,48425,7008,"[""Headphones"", ""Phone""]",4402.77,"{""promo"": ""27%""}",121840,1,South America +2023-01-07,48426,8493,"[""Laptop"", ""Keyboard"", ""Monitor""]",3097.19,{},222460,0,South America +2023-09-29,48427,5823,"[""Phone""]",3023.85,{},278836,1,South America +2023-10-04,48428,9482,"[""Keyboard"", ""Phone""]",4866.14,{},247763,0,Africa +2023-02-03,48429,732,"[""Wireless Mouse""]",3793.51,{},19630,1,Asia +2023-12-29,48430,2753,"[""Keyboard"", ""Charger"", ""Laptop""]",4030.01,{},48314,1,Europe +2023-12-07,48431,1500,"[""Tablet"", ""Monitor"", ""Charger""]",2957.53,"{""promo"": ""27%""}",176534,1,North America +2024-04-22,48432,6698,"[""Wireless Mouse""]",2793.38,"{""loyalty"": ""8%""}",238697,0,South America +2024-09-18,48433,902,"[""Tablet"", ""Charger"", ""Monitor""]",4266.29,"{"""": ""24%""}",58480,1,Africa +2024-10-18,48434,7780,"[""Phone""]",2064.4,{},47509,1,North America +2023-08-20,48435,3213,"[""Charger"", ""Monitor""]",4915.35,{},95088,0,Europe +2023-07-13,48436,5300,"[""Phone"", ""Monitor"", ""Keyboard""]",2027.64,"{""loyalty"": ""27%""}",277422,0,South America +2024-12-23,48437,2339,"[""Phone""]",795.44,"{"""": ""25%""}",18101,0,South America +2024-09-12,48438,9938,"[""Phone""]",2897.64,{},30361,1,Europe +2024-08-01,48439,9221,"[""Laptop"", ""Headphones"", ""Charger""]",414.22,{},144135,0,North America +2024-01-17,48440,665,"[""Monitor"", ""Headphones"", ""Phone""]",1616.55,{},17058,0,Europe +2024-03-10,48441,2570,"[""Keyboard""]",1463.35,"{""promo"": ""7%""}",285559,0,South America +2024-04-30,48442,1648,"[""Keyboard"", ""Tablet""]",3503.06,{},155334,1,North America +2023-07-06,48443,9321,"[""Headphones""]",4018.75,{},153603,1,North America +2024-06-29,48444,3291,"[""Laptop""]",3340.63,{},172337,1,South America +2023-10-31,48445,6457,"[""Phone""]",3739.83,{},281535,0,Asia +2024-08-15,48446,7306,"[""Phone""]",2059.99,{},122411,0,South America +2024-06-05,48447,6964,"[""Laptop"", ""Wireless Mouse""]",4589.8,{},176412,1,Africa +2024-11-05,48448,2841,"[""Phone""]",2637.3,{},93472,0,South America +2023-04-12,48449,2627,"[""Wireless Mouse"", ""Phone""]",4893.85,{},274088,1,Europe +2023-08-18,48450,2230,"[""Phone"", ""Headphones"", ""Keyboard""]",1976.46,"{""loyalty"": ""6%""}",183748,1,South America +2023-08-06,48451,7579,"[""Charger"", ""Laptop"", ""Keyboard""]",3116.64,"{"""": ""28%""}",26649,0,South America +2024-08-15,48452,4654,"[""Keyboard""]",2531.72,"{""seasonal"": ""30%""}",80439,0,North America +2024-08-25,48453,8533,"[""Charger"", ""Tablet""]",2578.04,"{""loyalty"": ""7%""}",3746,1,South America +2024-02-08,48454,8684,"[""Wireless Mouse""]",1624.56,"{""loyalty"": ""5%""}",85449,1,Europe +2023-08-27,48455,4470,"[""Monitor""]",3952.52,{},35311,0,Asia +2023-01-15,48456,5999,"[""Keyboard"", ""Wireless Mouse""]",669.17,{},186169,1,North America +2023-11-19,48457,2456,"[""Charger"", ""Wireless Mouse""]",2455.35,{},161090,1,North America +2024-02-12,48458,2377,"[""Keyboard"", ""Charger""]",1761.38,"{""loyalty"": ""20%""}",217204,0,Europe +2023-05-30,48459,3224,"[""Monitor"", ""Headphones""]",330.0,{},104320,1,South America +2024-04-30,48460,8739,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1249.36,{},186238,1,North America +2023-04-19,48461,1002,"[""Tablet""]",2013.91,"{""promo"": ""6%""}",272090,1,South America +2024-02-19,48462,9140,"[""Tablet""]",4295.3,"{""promo"": ""9%""}",103465,1,Europe +2023-05-18,48463,7119,"[""Headphones"", ""Phone"", ""Charger""]",1453.64,{},142081,0,South America +2024-08-28,48464,3588,"[""Tablet"", ""Wireless Mouse""]",1417.95,{},125076,0,South America +2023-11-30,48465,2357,"[""Wireless Mouse"", ""Phone""]",1005.31,{},243920,1,Europe +2023-02-26,48466,9363,"[""Headphones"", ""Phone""]",58.78,{},273056,1,Africa +2023-04-06,48467,8986,"[""Laptop"", ""Keyboard""]",691.02,{},72073,0,Africa +2024-02-16,48468,6763,"[""Laptop"", ""Keyboard""]",2405.49,"{""seasonal"": ""10%""}",180611,0,Africa +2024-08-23,48469,4172,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3083.11,"{"""": ""12%""}",265241,0,Asia +2023-04-24,48470,2400,"[""Keyboard""]",2264.71,{},288764,1,Africa +2024-03-18,48471,8011,"[""Charger"", ""Monitor"", ""Tablet""]",3109.62,"{""seasonal"": ""20%""}",272328,0,Africa +2024-09-13,48472,5086,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4954.2,{},49648,1,Asia +2023-09-26,48473,3173,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4847.41,{},220793,0,South America +2024-11-12,48474,854,"[""Keyboard"", ""Laptop"", ""Tablet""]",487.68,"{""seasonal"": ""6%""}",66865,1,Europe +2023-07-30,48475,6819,"[""Wireless Mouse""]",3811.58,{},295177,0,Asia +2023-05-24,48476,1254,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4270.18,"{"""": ""28%""}",236993,1,Africa +2024-05-19,48477,9969,"[""Keyboard"", ""Phone"", ""Headphones""]",1217.15,"{""loyalty"": ""23%""}",63007,0,South America +2023-09-29,48478,8886,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4154.17,{},250247,1,Europe +2023-07-03,48479,1029,"[""Tablet""]",3809.4,"{""promo"": ""28%""}",93598,0,Africa +2024-10-02,48480,7560,"[""Keyboard"", ""Monitor"", ""Charger""]",1583.03,{},297204,0,North America +2023-12-07,48481,8712,"[""Keyboard""]",4592.31,{},288750,1,Africa +2024-12-25,48482,3453,"[""Charger""]",390.14,"{""loyalty"": ""17%""}",35902,1,North America +2023-01-16,48483,5437,"[""Keyboard"", ""Phone"", ""Monitor""]",3927.87,"{"""": ""8%""}",35167,0,Africa +2024-12-11,48484,7737,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4984.07,"{"""": ""22%""}",89511,1,Europe +2024-03-25,48485,285,"[""Wireless Mouse""]",2890.27,"{""promo"": ""15%""}",148513,0,Asia +2024-12-08,48486,8651,"[""Phone"", ""Headphones""]",169.78,"{""loyalty"": ""22%""}",61742,0,North America +2023-03-09,48487,2450,"[""Keyboard""]",1966.42,"{""loyalty"": ""13%""}",278980,1,South America +2023-11-23,48488,4493,"[""Headphones""]",2191.53,{},131074,1,North America +2024-01-14,48489,3580,"[""Headphones"", ""Charger""]",4540.95,"{"""": ""15%""}",75603,1,Africa +2024-01-07,48490,2980,"[""Keyboard"", ""Charger""]",3195.41,{},148392,1,South America +2024-01-20,48491,1350,"[""Phone""]",4727.57,{},13827,0,North America +2023-10-14,48492,2011,"[""Wireless Mouse""]",1404.85,"{""seasonal"": ""20%""}",178936,1,Asia +2023-04-01,48493,1441,"[""Laptop""]",3587.84,"{""loyalty"": ""14%""}",106619,1,Africa +2023-07-30,48494,8434,"[""Charger""]",4678.68,"{"""": ""10%""}",138196,0,Europe +2023-10-26,48495,9142,"[""Charger""]",4765.57,"{""seasonal"": ""7%""}",254629,1,South America +2023-03-10,48496,2580,"[""Monitor"", ""Headphones"", ""Charger""]",1777.89,"{""loyalty"": ""25%""}",252482,0,South America +2024-07-27,48497,9888,"[""Keyboard"", ""Phone""]",3860.62,{},4087,0,Asia +2023-10-05,48498,7556,"[""Charger""]",106.58,"{""loyalty"": ""10%""}",297184,0,North America +2024-09-04,48499,6994,"[""Headphones"", ""Tablet"", ""Keyboard""]",4273.16,{},10162,1,Africa +2024-02-19,48500,3261,"[""Tablet"", ""Headphones""]",826.06,"{""promo"": ""27%""}",231619,0,Asia +2024-09-17,48501,318,"[""Phone"", ""Wireless Mouse""]",4930.3,"{"""": ""15%""}",184203,1,Asia +2023-09-10,48502,5412,"[""Phone""]",3888.27,{},169630,0,North America +2023-08-20,48503,1677,"[""Laptop"", ""Phone""]",1987.38,"{""loyalty"": ""23%""}",287945,0,Asia +2023-07-11,48504,9469,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",590.21,"{""loyalty"": ""21%""}",21832,0,Asia +2024-02-19,48505,2229,"[""Tablet"", ""Laptop"", ""Monitor""]",1247.43,"{""promo"": ""18%""}",5448,1,South America +2024-10-24,48506,5196,"[""Headphones"", ""Laptop""]",638.81,"{""promo"": ""21%""}",56885,0,South America +2024-03-22,48507,2642,"[""Monitor""]",3784.54,{},169661,0,South America +2024-09-06,48508,4359,"[""Headphones"", ""Charger"", ""Tablet""]",2661.92,"{""promo"": ""30%""}",2057,1,Asia +2024-04-05,48509,9479,"[""Tablet"", ""Keyboard""]",1492.88,{},18345,0,South America +2024-10-24,48510,5482,"[""Charger""]",4609.93,{},158831,0,Asia +2023-05-31,48511,7809,"[""Phone""]",3505.46,"{""promo"": ""26%""}",168958,0,North America +2023-05-27,48512,9070,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",136.11,{},129475,0,South America +2024-11-13,48513,5841,"[""Laptop"", ""Headphones""]",4908.32,"{"""": ""15%""}",36786,1,Africa +2023-09-10,48514,9717,"[""Headphones"", ""Tablet""]",2292.1,{},244633,1,South America +2024-02-13,48515,755,"[""Monitor"", ""Tablet""]",1060.84,{},4908,1,South America +2024-05-26,48516,9830,"[""Charger"", ""Laptop"", ""Keyboard""]",472.61,"{"""": ""24%""}",1343,1,Africa +2023-03-05,48517,1360,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3459.82,{},158151,0,Europe +2024-08-01,48518,6103,"[""Monitor"", ""Tablet""]",351.86,"{""promo"": ""27%""}",15361,0,Africa +2024-05-24,48519,3606,"[""Wireless Mouse""]",1208.93,"{""loyalty"": ""30%""}",147871,0,South America +2023-03-27,48520,1711,"[""Monitor""]",2559.67,"{""seasonal"": ""21%""}",265833,0,Africa +2023-07-24,48521,3445,"[""Monitor""]",3163.84,{},132508,0,South America +2023-09-23,48522,4952,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3639.06,{},277413,1,Africa +2024-02-20,48523,2097,"[""Monitor"", ""Wireless Mouse""]",1633.84,{},17451,1,North America +2024-04-02,48524,5046,"[""Monitor""]",2578.16,{},251030,0,Europe +2024-01-23,48525,1684,"[""Keyboard"", ""Monitor"", ""Charger""]",55.57,{},187802,1,Africa +2023-11-24,48526,5959,"[""Tablet""]",677.79,{},49382,1,Europe +2024-01-17,48527,6349,"[""Headphones""]",256.76,"{"""": ""7%""}",156869,0,South America +2024-08-18,48528,628,"[""Phone"", ""Laptop""]",3432.46,{},103648,1,South America +2023-06-24,48529,9601,"[""Keyboard"", ""Monitor"", ""Tablet""]",1645.82,"{""promo"": ""8%""}",280940,1,North America +2024-02-06,48530,3106,"[""Phone""]",459.6,"{""promo"": ""16%""}",158181,0,Europe +2024-11-15,48531,177,"[""Charger""]",3919.19,"{""seasonal"": ""25%""}",122881,1,Asia +2024-03-20,48532,4538,"[""Monitor"", ""Charger"", ""Headphones""]",4155.5,"{""promo"": ""30%""}",129737,1,North America +2023-09-28,48533,7600,"[""Tablet"", ""Wireless Mouse""]",4402.22,"{""seasonal"": ""13%""}",116293,0,Asia +2024-03-31,48534,4085,"[""Keyboard"", ""Wireless Mouse""]",3495.08,{},160173,0,Asia +2023-09-28,48535,4972,"[""Tablet"", ""Phone"", ""Laptop""]",4536.46,"{""loyalty"": ""24%""}",270736,0,South America +2023-09-22,48536,7134,"[""Headphones"", ""Laptop"", ""Keyboard""]",727.43,{},210499,1,Asia +2024-08-15,48537,7735,"[""Keyboard""]",2777.38,{},17407,0,Asia +2023-06-26,48538,9640,"[""Charger""]",2174.16,"{""promo"": ""13%""}",33075,0,South America +2023-07-30,48539,7008,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1413.03,{},261451,0,Asia +2024-09-03,48540,2492,"[""Phone""]",502.38,{},201035,1,South America +2023-11-17,48541,10,"[""Laptop""]",3094.7,"{""promo"": ""13%""}",233803,1,South America +2023-03-25,48542,9780,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3450.76,{},51580,0,North America +2023-10-27,48543,2721,"[""Phone""]",3197.88,{},198341,0,Asia +2024-12-20,48544,375,"[""Keyboard""]",949.77,{},23693,1,Africa +2023-05-31,48545,4243,"[""Keyboard""]",4379.45,"{""seasonal"": ""20%""}",293669,1,Europe +2023-10-24,48546,4954,"[""Tablet"", ""Monitor""]",1551.64,"{""loyalty"": ""12%""}",273645,0,Asia +2024-05-09,48547,8326,"[""Monitor"", ""Headphones"", ""Keyboard""]",2799.27,"{""seasonal"": ""25%""}",245083,0,Africa +2023-04-01,48548,2449,"[""Headphones"", ""Phone"", ""Tablet""]",4673.28,{},220849,1,Asia +2023-01-14,48549,8362,"[""Charger""]",2477.03,{},177851,0,Europe +2023-05-31,48550,3182,"[""Wireless Mouse""]",1753.1,"{""promo"": ""9%""}",35279,1,Asia +2023-03-14,48551,2648,"[""Phone"", ""Monitor"", ""Charger""]",2513.09,{},164897,1,South America +2023-01-11,48552,9369,"[""Charger"", ""Tablet""]",3253.83,"{"""": ""18%""}",112075,1,Europe +2024-03-22,48553,2810,"[""Headphones""]",4841.33,"{""loyalty"": ""24%""}",295011,1,Asia +2023-11-07,48554,1658,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4579.11,"{"""": ""10%""}",32147,0,Africa +2023-01-08,48555,1096,"[""Phone"", ""Monitor""]",2001.42,"{""promo"": ""6%""}",61652,0,North America +2023-12-31,48556,7324,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4857.95,{},105763,0,Africa +2024-06-06,48557,7670,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1687.35,"{""promo"": ""9%""}",175359,1,Europe +2024-09-20,48558,2965,"[""Wireless Mouse"", ""Keyboard""]",1771.64,{},51580,0,Asia +2023-01-13,48559,1838,"[""Tablet""]",1340.61,{},27424,1,South America +2023-11-27,48560,5744,"[""Charger""]",396.93,{},115975,0,Asia +2023-05-11,48561,4226,"[""Laptop"", ""Wireless Mouse""]",1357.0,{},63829,1,Europe +2023-10-22,48562,681,"[""Monitor""]",2849.31,"{""promo"": ""16%""}",206108,0,Africa +2023-06-28,48563,7354,"[""Charger"", ""Wireless Mouse""]",3377.47,"{""loyalty"": ""14%""}",11165,0,North America +2023-03-02,48564,1984,"[""Monitor"", ""Keyboard"", ""Headphones""]",111.63,{},82509,1,Africa +2023-04-11,48565,6847,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1451.82,{},71727,1,Europe +2023-03-31,48566,7475,"[""Laptop"", ""Wireless Mouse""]",1230.11,{},3753,0,Europe +2023-01-23,48567,8120,"[""Charger"", ""Monitor"", ""Tablet""]",1242.02,{},115714,1,Asia +2023-03-22,48568,1370,"[""Monitor""]",276.1,"{""seasonal"": ""5%""}",72706,1,South America +2023-10-04,48569,891,"[""Keyboard"", ""Laptop""]",2307.18,{},167255,1,Asia +2023-06-10,48570,3769,"[""Keyboard""]",4621.22,"{""loyalty"": ""29%""}",118315,0,Europe +2023-11-09,48571,351,"[""Keyboard""]",3376.85,{},85522,0,Europe +2024-05-02,48572,3473,"[""Headphones""]",4574.8,{},202451,1,Europe +2023-07-25,48573,8012,"[""Charger"", ""Phone""]",1761.76,"{""loyalty"": ""10%""}",3244,0,Europe +2023-02-15,48574,4790,"[""Monitor"", ""Phone"", ""Tablet""]",634.32,"{""promo"": ""6%""}",97117,1,North America +2023-04-01,48575,7665,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4138.75,"{""promo"": ""29%""}",88114,0,Europe +2024-07-18,48576,7171,"[""Headphones""]",1166.43,"{"""": ""7%""}",291386,1,North America +2024-09-23,48577,305,"[""Keyboard""]",2420.8,{},183680,1,Europe +2023-10-01,48578,5084,"[""Laptop""]",1954.71,{},136474,1,South America +2024-10-09,48579,7214,"[""Headphones"", ""Monitor""]",352.16,{},172302,1,North America +2023-08-26,48580,7618,"[""Phone"", ""Wireless Mouse""]",770.33,{},80896,1,Asia +2024-08-04,48581,3810,"[""Laptop"", ""Tablet""]",4829.68,{},86978,1,North America +2024-10-15,48582,1218,"[""Charger"", ""Phone"", ""Laptop""]",4296.61,{},242890,1,South America +2023-04-22,48583,3411,"[""Headphones"", ""Keyboard""]",263.2,{},255581,1,South America +2023-09-01,48584,1162,"[""Tablet"", ""Charger"", ""Keyboard""]",378.49,"{""promo"": ""24%""}",112179,0,North America +2024-01-03,48585,5631,"[""Keyboard""]",2033.6,"{"""": ""26%""}",97257,1,North America +2024-07-06,48586,7948,"[""Monitor"", ""Charger"", ""Tablet""]",94.99,{},7838,0,South America +2023-01-14,48587,3808,"[""Laptop"", ""Headphones""]",2814.85,{},153573,1,Europe +2024-12-12,48588,4680,"[""Wireless Mouse"", ""Charger""]",1356.79,"{""seasonal"": ""20%""}",77651,1,Europe +2024-01-17,48589,7494,"[""Monitor""]",4336.96,"{"""": ""22%""}",166439,1,South America +2023-01-16,48590,3149,"[""Phone""]",96.92,{},73865,1,Africa +2023-10-14,48591,4490,"[""Phone"", ""Keyboard"", ""Tablet""]",4505.71,{},288815,0,Africa +2024-08-17,48592,9517,"[""Wireless Mouse""]",3319.98,"{"""": ""21%""}",60816,1,Asia +2023-08-24,48593,1186,"[""Tablet""]",1356.15,"{""promo"": ""25%""}",268370,0,North America +2024-11-21,48594,5841,"[""Phone"", ""Wireless Mouse""]",1449.36,"{""loyalty"": ""11%""}",79185,1,North America +2024-05-06,48595,265,"[""Monitor""]",968.45,"{""promo"": ""5%""}",154650,1,Europe +2024-11-07,48596,1407,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1705.33,{},268326,1,Africa +2023-11-26,48597,6806,"[""Monitor""]",1908.05,"{""promo"": ""14%""}",279049,1,South America +2023-11-02,48598,3230,"[""Tablet"", ""Wireless Mouse""]",1977.71,{},197598,0,South America +2023-03-13,48599,1453,"[""Monitor"", ""Tablet""]",3143.93,"{""loyalty"": ""14%""}",51542,0,North America +2024-09-19,48600,8167,"[""Monitor""]",3758.49,"{""loyalty"": ""25%""}",199697,1,South America +2023-01-14,48601,7367,"[""Wireless Mouse""]",3210.23,"{"""": ""30%""}",276279,1,North America +2024-11-30,48602,6277,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2717.81,"{""promo"": ""13%""}",86061,1,Asia +2023-08-11,48603,2960,"[""Headphones"", ""Tablet""]",2711.76,"{""seasonal"": ""10%""}",131450,0,Africa +2023-10-02,48604,46,"[""Laptop"", ""Phone""]",1546.55,{},152130,0,Europe +2023-12-03,48605,2737,"[""Laptop"", ""Headphones""]",4242.36,"{""loyalty"": ""14%""}",37467,0,Asia +2023-12-12,48606,985,"[""Charger""]",2797.53,{},41550,0,North America +2024-01-21,48607,879,"[""Headphones"", ""Tablet"", ""Charger""]",4927.04,{},196388,1,South America +2023-10-07,48608,5344,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1502.33,"{""loyalty"": ""17%""}",29924,0,Asia +2024-12-09,48609,1100,"[""Laptop""]",4221.72,{},161620,0,North America +2023-07-19,48610,8818,"[""Tablet""]",3360.79,"{"""": ""15%""}",269133,0,South America +2023-03-23,48611,5072,"[""Tablet""]",3641.68,"{""loyalty"": ""15%""}",231395,1,Europe +2024-09-16,48612,9908,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3110.43,{},280303,1,North America +2023-10-03,48613,527,"[""Monitor"", ""Headphones""]",2233.22,{},102438,1,Africa +2023-11-04,48614,4326,"[""Monitor""]",2086.5,{},74975,1,Europe +2023-09-04,48615,3689,"[""Keyboard""]",1500.16,{},45068,0,North America +2023-10-26,48616,2451,"[""Laptop""]",595.48,"{""loyalty"": ""28%""}",140839,1,Africa +2023-04-01,48617,4662,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2118.12,{},31486,0,North America +2023-12-22,48618,8128,"[""Keyboard"", ""Monitor"", ""Headphones""]",4281.49,{},6071,1,Africa +2024-03-23,48619,8755,"[""Keyboard"", ""Charger""]",3643.26,{},72296,1,South America +2023-12-23,48620,8756,"[""Laptop"", ""Wireless Mouse""]",3256.5,"{""promo"": ""23%""}",94547,0,North America +2024-07-14,48621,4160,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1822.2,{},103009,0,North America +2024-04-04,48622,1006,"[""Headphones"", ""Phone""]",81.06,{},252361,0,South America +2024-12-16,48623,1176,"[""Tablet"", ""Monitor""]",2122.28,{},57314,1,Asia +2023-07-07,48624,4989,"[""Headphones"", ""Charger"", ""Laptop""]",4302.29,"{"""": ""12%""}",34615,0,Asia +2023-11-21,48625,7434,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1062.26,"{"""": ""12%""}",108700,0,Europe +2024-09-23,48626,8783,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3862.39,{},207596,1,Asia +2024-09-29,48627,7148,"[""Laptop""]",62.18,"{"""": ""25%""}",150334,1,North America +2024-09-25,48628,3568,"[""Charger"", ""Keyboard"", ""Laptop""]",1310.53,{},8647,0,Europe +2023-06-28,48629,9589,"[""Monitor"", ""Headphones"", ""Keyboard""]",2033.59,"{""seasonal"": ""26%""}",169252,1,Africa +2024-04-17,48630,553,"[""Wireless Mouse""]",2708.15,"{""promo"": ""27%""}",116809,1,North America +2023-10-12,48631,8601,"[""Keyboard"", ""Laptop""]",1670.81,{},77043,0,Europe +2023-02-10,48632,5756,"[""Phone"", ""Tablet"", ""Keyboard""]",4069.77,{},299619,1,Africa +2024-12-31,48633,843,"[""Headphones"", ""Monitor"", ""Laptop""]",3216.42,{},291784,1,Europe +2023-06-14,48634,763,"[""Charger"", ""Monitor"", ""Phone""]",2152.37,"{""promo"": ""23%""}",120090,0,North America +2024-04-10,48635,8971,"[""Headphones"", ""Tablet"", ""Phone""]",2482.12,"{""promo"": ""16%""}",163208,0,North America +2023-11-22,48636,7215,"[""Monitor"", ""Wireless Mouse""]",2896.22,"{""promo"": ""14%""}",182181,0,Europe +2023-07-22,48637,9638,"[""Headphones"", ""Phone"", ""Tablet""]",4673.64,"{""loyalty"": ""15%""}",32044,1,North America +2024-11-01,48638,7387,"[""Monitor"", ""Charger""]",1019.71,{},223619,1,South America +2023-01-28,48639,4407,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3387.89,"{""seasonal"": ""12%""}",139344,0,North America +2023-05-05,48640,3339,"[""Phone""]",2766.57,{},209545,0,South America +2023-01-06,48641,3666,"[""Phone"", ""Headphones"", ""Monitor""]",2161.5,{},34011,0,Europe +2024-12-31,48642,1134,"[""Charger""]",1755.72,{},242705,1,Europe +2024-01-19,48643,6781,"[""Headphones"", ""Keyboard"", ""Phone""]",468.59,{},152703,0,South America +2024-04-29,48644,4502,"[""Monitor"", ""Headphones""]",3622.71,"{"""": ""22%""}",120744,0,Asia +2024-10-27,48645,3352,"[""Monitor""]",2393.82,"{""seasonal"": ""5%""}",185047,1,Europe +2024-08-25,48646,1601,"[""Phone"", ""Tablet""]",3117.24,"{"""": ""28%""}",37959,0,South America +2024-09-03,48647,8056,"[""Keyboard"", ""Charger""]",3368.14,"{""loyalty"": ""5%""}",156519,0,Africa +2024-05-18,48648,9996,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1607.28,{},133347,1,South America +2023-08-31,48649,7654,"[""Tablet"", ""Keyboard""]",1890.03,{},123158,0,Europe +2024-11-26,48650,2587,"[""Charger""]",4082.37,{},258227,0,Africa +2023-09-20,48651,2319,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3852.54,"{""loyalty"": ""16%""}",166773,1,North America +2024-10-16,48652,4655,"[""Monitor""]",2666.82,{},82589,0,Europe +2024-07-04,48653,309,"[""Tablet"", ""Charger""]",4624.32,{},248545,1,Europe +2024-05-09,48654,357,"[""Headphones"", ""Charger""]",2323.09,"{""loyalty"": ""7%""}",254893,1,South America +2024-11-01,48655,1086,"[""Charger""]",1795.56,"{""promo"": ""22%""}",73993,0,Europe +2024-07-03,48656,3795,"[""Wireless Mouse"", ""Monitor""]",3306.99,{},131650,0,South America +2024-08-26,48657,1021,"[""Monitor"", ""Laptop""]",3646.49,"{""seasonal"": ""22%""}",256632,0,North America +2023-12-16,48658,4613,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4387.36,{},114272,1,Europe +2023-03-16,48659,2229,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2923.55,"{"""": ""9%""}",212527,0,Africa +2023-04-26,48660,4447,"[""Tablet"", ""Charger""]",2145.99,{},142696,1,South America +2023-07-17,48661,1828,"[""Monitor"", ""Phone""]",1185.33,"{""seasonal"": ""10%""}",162662,0,North America +2024-02-27,48662,7630,"[""Headphones""]",3056.5,"{""loyalty"": ""11%""}",152029,0,Asia +2023-07-11,48663,752,"[""Keyboard""]",3930.09,{},67425,0,Africa +2024-08-02,48664,7194,"[""Laptop""]",1315.23,{},156785,0,South America +2023-06-06,48665,2524,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1749.74,"{"""": ""6%""}",125643,0,Europe +2024-12-01,48666,5786,"[""Headphones""]",3866.45,"{""promo"": ""18%""}",67569,0,South America +2024-07-26,48667,9832,"[""Charger""]",1843.56,{},45073,0,Asia +2024-04-28,48668,4774,"[""Monitor""]",931.62,{},183480,0,South America +2023-01-16,48669,8056,"[""Wireless Mouse""]",2056.82,{},121710,1,South America +2024-11-20,48670,7656,"[""Tablet"", ""Charger"", ""Headphones""]",506.76,{},269752,1,Asia +2023-08-07,48671,9167,"[""Charger"", ""Keyboard""]",3375.04,{},17792,0,Europe +2024-12-12,48672,8445,"[""Charger"", ""Tablet"", ""Keyboard""]",547.15,{},162561,0,North America +2023-09-07,48673,9170,"[""Wireless Mouse""]",3855.03,"{""seasonal"": ""23%""}",40437,1,Africa +2024-01-19,48674,6946,"[""Headphones"", ""Tablet""]",4402.64,"{""promo"": ""22%""}",139031,0,Africa +2024-01-01,48675,6040,"[""Tablet"", ""Phone"", ""Headphones""]",4499.37,"{""promo"": ""15%""}",119356,0,Africa +2023-10-23,48676,3855,"[""Wireless Mouse"", ""Charger""]",987.78,"{"""": ""25%""}",15947,1,Africa +2023-01-10,48677,6779,"[""Charger""]",4025.84,{},279824,0,Europe +2023-03-13,48678,4770,"[""Laptop"", ""Wireless Mouse""]",340.09,{},291297,0,North America +2023-07-03,48679,5232,"[""Phone"", ""Laptop"", ""Keyboard""]",3860.52,{},199289,0,South America +2024-10-11,48680,4637,"[""Wireless Mouse"", ""Headphones""]",2715.39,"{"""": ""15%""}",286029,0,Africa +2024-11-10,48681,4807,"[""Laptop"", ""Monitor"", ""Headphones""]",4060.61,"{""promo"": ""7%""}",118595,0,Asia +2024-10-12,48682,9306,"[""Monitor"", ""Tablet"", ""Keyboard""]",276.23,{},85358,0,North America +2023-05-20,48683,7665,"[""Tablet"", ""Phone"", ""Laptop""]",428.9,"{""loyalty"": ""19%""}",272673,0,South America +2024-06-02,48684,4794,"[""Tablet"", ""Keyboard""]",2638.04,{},255663,1,Europe +2024-07-06,48685,6649,"[""Laptop"", ""Tablet"", ""Monitor""]",2463.06,"{""promo"": ""9%""}",283816,0,Asia +2023-09-16,48686,8407,"[""Wireless Mouse"", ""Keyboard""]",1623.31,"{"""": ""8%""}",272659,0,Asia +2023-05-30,48687,4700,"[""Laptop"", ""Phone"", ""Charger""]",1140.59,{},27537,1,Asia +2024-02-02,48688,9174,"[""Keyboard"", ""Charger"", ""Monitor""]",2916.53,{},286204,0,North America +2024-12-23,48689,853,"[""Keyboard""]",2616.39,{},105852,1,Africa +2024-12-07,48690,9453,"[""Tablet"", ""Laptop""]",348.71,"{"""": ""25%""}",136330,1,South America +2024-05-26,48691,790,"[""Headphones"", ""Tablet"", ""Monitor""]",607.79,{},147192,0,Asia +2023-06-30,48692,7963,"[""Charger""]",817.89,{},113598,0,Africa +2023-04-21,48693,7521,"[""Keyboard"", ""Monitor""]",2252.15,"{"""": ""25%""}",138332,1,Asia +2023-11-15,48694,3062,"[""Phone"", ""Tablet"", ""Laptop""]",950.84,"{"""": ""13%""}",17292,0,South America +2023-04-06,48695,3708,"[""Keyboard""]",2124.33,{},31995,0,Africa +2024-09-28,48696,2763,"[""Charger"", ""Phone"", ""Tablet""]",2476.57,{},114753,1,South America +2024-02-27,48697,5530,"[""Keyboard""]",1331.49,{},253229,1,Asia +2023-02-14,48698,2563,"[""Wireless Mouse""]",4940.28,"{"""": ""6%""}",147806,1,South America +2023-07-07,48699,426,"[""Headphones"", ""Laptop""]",1136.99,{},232399,0,North America +2024-08-20,48700,9526,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1978.93,"{""promo"": ""23%""}",35642,1,North America +2023-03-16,48701,2048,"[""Monitor""]",855.06,"{""loyalty"": ""24%""}",261957,0,North America +2024-07-04,48702,1600,"[""Phone""]",1003.27,{},73751,1,North America +2024-08-30,48703,7744,"[""Headphones""]",4938.29,"{""seasonal"": ""28%""}",128587,1,North America +2023-02-26,48704,7061,"[""Headphones"", ""Tablet""]",2769.83,"{""promo"": ""7%""}",132322,1,Europe +2024-05-21,48705,1840,"[""Headphones""]",3218.55,{},197285,0,North America +2024-12-11,48706,2265,"[""Phone"", ""Charger"", ""Monitor""]",672.07,{},82518,1,Africa +2024-02-03,48707,6457,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2159.57,"{"""": ""23%""}",69904,1,North America +2023-05-13,48708,7475,"[""Tablet"", ""Charger""]",241.49,"{""seasonal"": ""16%""}",242191,1,Asia +2024-01-19,48709,7351,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",100.51,{},293909,0,South America +2024-10-04,48710,7092,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",641.97,{},38818,1,Asia +2024-10-12,48711,9827,"[""Keyboard""]",1240.1,"{""seasonal"": ""12%""}",213753,1,South America +2024-08-23,48712,4987,"[""Phone"", ""Monitor"", ""Tablet""]",1173.19,"{""seasonal"": ""9%""}",206027,0,South America +2024-04-06,48713,2472,"[""Tablet""]",4194.4,"{""loyalty"": ""10%""}",148689,1,Asia +2023-01-11,48714,6024,"[""Tablet""]",4118.33,"{""seasonal"": ""22%""}",162511,1,Europe +2023-09-12,48715,9877,"[""Tablet"", ""Keyboard"", ""Headphones""]",2416.04,"{""loyalty"": ""16%""}",182170,1,South America +2023-05-16,48716,742,"[""Laptop"", ""Monitor""]",522.91,"{""loyalty"": ""26%""}",60439,0,Europe +2023-01-14,48717,4102,"[""Keyboard""]",3025.39,"{""seasonal"": ""12%""}",42710,1,Europe +2023-11-19,48718,4567,"[""Charger""]",950.69,{},182883,0,South America +2023-04-12,48719,934,"[""Monitor"", ""Keyboard""]",1703.15,{},290327,0,Europe +2024-11-21,48720,490,"[""Phone"", ""Charger""]",1426.62,{},289158,0,Asia +2023-10-30,48721,8047,"[""Monitor"", ""Charger""]",3072.55,"{"""": ""12%""}",19696,1,North America +2024-05-12,48722,4200,"[""Charger"", ""Headphones"", ""Monitor""]",3695.52,{},13031,1,North America +2024-05-07,48723,181,"[""Keyboard"", ""Phone"", ""Monitor""]",3445.64,{},240453,1,Asia +2024-05-27,48724,2822,"[""Phone""]",840.99,{},228199,1,South America +2023-11-06,48725,9525,"[""Laptop""]",4197.85,{},106056,1,Europe +2023-01-02,48726,2599,"[""Headphones"", ""Laptop""]",3397.98,{},122055,0,Europe +2024-10-04,48727,2376,"[""Laptop""]",3217.73,"{""loyalty"": ""23%""}",212835,1,Europe +2023-02-13,48728,5466,"[""Monitor"", ""Tablet""]",4580.42,{},202701,1,Europe +2024-05-30,48729,7803,"[""Laptop""]",705.2,"{""loyalty"": ""27%""}",254871,1,Africa +2024-06-24,48730,9917,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1876.03,{},214722,0,Africa +2024-08-10,48731,1628,"[""Monitor""]",1558.1,{},74091,1,Africa +2023-07-13,48732,7131,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",628.33,"{""promo"": ""24%""}",98706,0,Europe +2023-01-22,48733,4712,"[""Phone"", ""Tablet""]",3380.62,"{""promo"": ""22%""}",56996,1,Asia +2023-05-31,48734,8399,"[""Phone""]",1440.99,"{""loyalty"": ""12%""}",209273,0,South America +2023-10-22,48735,7552,"[""Wireless Mouse"", ""Keyboard""]",4766.34,"{""promo"": ""8%""}",265422,1,Africa +2024-02-05,48736,1228,"[""Wireless Mouse""]",4637.48,"{""loyalty"": ""8%""}",149128,0,Africa +2024-12-20,48737,2121,"[""Headphones"", ""Laptop""]",1048.73,{},144343,0,Africa +2023-09-13,48738,6107,"[""Headphones""]",1245.99,{},177776,0,Asia +2024-03-25,48739,235,"[""Headphones"", ""Keyboard""]",3599.12,"{""loyalty"": ""28%""}",215506,1,Asia +2024-04-10,48740,3917,"[""Tablet"", ""Headphones""]",2908.31,{},83668,0,Europe +2024-12-22,48741,9995,"[""Keyboard"", ""Monitor""]",4472.02,{},230971,0,Asia +2024-12-15,48742,8676,"[""Headphones"", ""Laptop"", ""Charger""]",4901.1,{},242121,1,North America +2023-12-18,48743,6500,"[""Headphones"", ""Wireless Mouse""]",1239.73,"{""seasonal"": ""12%""}",291075,1,Asia +2024-11-06,48744,620,"[""Laptop"", ""Charger"", ""Tablet""]",2664.49,{},134053,1,South America +2023-06-19,48745,7294,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2322.02,{},215454,1,Europe +2024-02-18,48746,7906,"[""Charger"", ""Headphones""]",3184.62,{},190597,0,Asia +2024-09-19,48747,6621,"[""Charger""]",1969.41,{},58933,0,South America +2023-11-16,48748,5348,"[""Keyboard""]",4837.86,{},47122,1,Europe +2023-05-26,48749,7078,"[""Monitor""]",4217.38,{},93366,0,North America +2024-11-16,48750,8996,"[""Tablet"", ""Monitor"", ""Phone""]",3951.07,{},210493,1,South America +2023-07-02,48751,1058,"[""Laptop""]",4601.29,{},219623,1,South America +2023-07-01,48752,5161,"[""Monitor"", ""Keyboard"", ""Tablet""]",3759.5,"{""loyalty"": ""25%""}",155118,0,Europe +2023-08-21,48753,7224,"[""Charger"", ""Phone"", ""Tablet""]",3364.5,"{"""": ""7%""}",158334,1,Europe +2024-10-17,48754,8561,"[""Wireless Mouse"", ""Monitor""]",1348.29,"{"""": ""11%""}",292922,0,Africa +2024-03-13,48755,3080,"[""Phone"", ""Charger"", ""Keyboard""]",2292.26,{},106175,0,Africa +2024-04-26,48756,1501,"[""Charger""]",1801.69,{},268668,0,North America +2023-01-13,48757,9399,"[""Tablet"", ""Laptop""]",3257.41,{},61307,1,Asia +2024-05-27,48758,1310,"[""Charger""]",811.26,"{""loyalty"": ""24%""}",148418,0,South America +2023-08-09,48759,6826,"[""Keyboard""]",2871.03,"{""seasonal"": ""21%""}",65510,0,Africa +2023-10-30,48760,3267,"[""Monitor""]",794.04,"{"""": ""21%""}",141518,1,North America +2024-01-20,48761,4110,"[""Monitor""]",360.34,{},20032,0,Africa +2023-07-18,48762,5438,"[""Keyboard""]",2413.87,"{""seasonal"": ""27%""}",75147,0,South America +2024-12-10,48763,3120,"[""Tablet"", ""Keyboard""]",3074.12,{},224453,1,South America +2023-01-10,48764,1170,"[""Phone"", ""Charger""]",2728.48,{},6143,0,South America +2024-11-09,48765,7658,"[""Laptop""]",358.52,"{""promo"": ""27%""}",293806,0,North America +2023-12-08,48766,8749,"[""Phone"", ""Monitor"", ""Charger""]",340.17,"{"""": ""24%""}",259494,0,Europe +2024-09-05,48767,4563,"[""Laptop"", ""Phone"", ""Monitor""]",4300.41,{},16635,0,Europe +2023-05-14,48768,8520,"[""Headphones"", ""Monitor"", ""Tablet""]",4557.47,{},12369,1,Asia +2023-02-05,48769,3511,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1766.35,{},241267,1,Asia +2024-08-25,48770,7363,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3960.86,{},18910,1,North America +2023-04-29,48771,4160,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",726.06,"{""promo"": ""6%""}",27799,1,North America +2023-11-01,48772,5733,"[""Monitor"", ""Phone""]",253.02,{},99619,1,South America +2024-05-20,48773,3016,"[""Monitor"", ""Laptop""]",1871.68,"{"""": ""12%""}",66684,0,North America +2023-07-31,48774,3024,"[""Headphones""]",1195.6,{},52930,0,North America +2024-08-31,48775,8743,"[""Tablet"", ""Phone"", ""Keyboard""]",1137.62,{},28288,0,Asia +2024-09-22,48776,4533,"[""Phone"", ""Charger""]",2818.62,"{"""": ""27%""}",158987,0,South America +2023-04-21,48777,2578,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3305.03,{},58364,0,Africa +2023-09-12,48778,6170,"[""Monitor""]",4337.7,{},164088,0,North America +2023-08-03,48779,6809,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",918.08,"{""seasonal"": ""30%""}",30083,0,South America +2024-03-20,48780,6256,"[""Wireless Mouse"", ""Laptop""]",3643.8,"{""seasonal"": ""11%""}",249265,0,South America +2023-11-05,48781,4322,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3591.62,{},250840,1,South America +2024-10-22,48782,409,"[""Tablet""]",4170.56,{},147250,0,Europe +2024-07-09,48783,7730,"[""Phone""]",3559.8,"{""seasonal"": ""24%""}",3864,1,Asia +2023-03-19,48784,1799,"[""Phone""]",2687.52,{},114538,0,Europe +2023-01-10,48785,760,"[""Keyboard"", ""Tablet"", ""Phone""]",3605.21,"{""loyalty"": ""6%""}",204139,0,Africa +2023-09-03,48786,4806,"[""Keyboard"", ""Headphones""]",699.72,{},258189,1,Africa +2024-01-02,48787,1469,"[""Phone""]",4166.56,{},151693,0,South America +2023-04-09,48788,2535,"[""Charger"", ""Monitor""]",2245.25,"{""loyalty"": ""15%""}",92492,1,Europe +2024-04-07,48789,3903,"[""Keyboard""]",4844.19,"{""loyalty"": ""16%""}",77509,0,Asia +2024-10-16,48790,2779,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",447.89,{},94079,0,Asia +2024-02-03,48791,6379,"[""Tablet"", ""Headphones"", ""Keyboard""]",1324.17,{},285592,1,South America +2023-06-26,48792,9506,"[""Charger"", ""Phone""]",755.19,"{""seasonal"": ""6%""}",290259,0,Africa +2024-07-20,48793,6596,"[""Headphones""]",143.16,"{""seasonal"": ""11%""}",99599,1,Europe +2023-11-07,48794,3302,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",142.79,{},118522,0,Asia +2024-02-08,48795,252,"[""Monitor"", ""Tablet"", ""Keyboard""]",4303.98,"{""promo"": ""19%""}",18219,0,Asia +2024-06-11,48796,1883,"[""Laptop"", ""Phone""]",3061.44,"{""promo"": ""20%""}",161736,0,Africa +2024-12-19,48797,5280,"[""Keyboard"", ""Monitor"", ""Laptop""]",885.87,"{""loyalty"": ""29%""}",1771,0,North America +2024-04-27,48798,7481,"[""Charger"", ""Headphones"", ""Monitor""]",2079.85,{},281536,1,Asia +2024-12-16,48799,4997,"[""Wireless Mouse"", ""Charger""]",700.71,"{""seasonal"": ""15%""}",246412,0,Africa +2024-08-12,48800,5505,"[""Keyboard""]",703.82,"{""promo"": ""18%""}",46446,1,North America +2024-05-17,48801,2663,"[""Headphones"", ""Phone""]",2112.89,"{"""": ""17%""}",214364,1,Africa +2024-07-14,48802,1350,"[""Charger""]",4213.03,"{""seasonal"": ""28%""}",273725,0,South America +2023-08-10,48803,4875,"[""Phone"", ""Keyboard""]",3735.56,"{""seasonal"": ""29%""}",229682,0,South America +2024-09-09,48804,6474,"[""Laptop"", ""Tablet"", ""Charger""]",3142.0,"{""promo"": ""5%""}",140609,0,Asia +2023-08-14,48805,6171,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2242.88,"{""seasonal"": ""10%""}",37202,0,Europe +2023-11-18,48806,8026,"[""Charger"", ""Headphones""]",177.11,{},96523,0,Africa +2024-10-06,48807,2159,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4085.51,{},216161,0,Africa +2024-11-16,48808,2523,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3518.66,{},132249,0,South America +2023-01-25,48809,7752,"[""Headphones""]",4689.1,{},24927,0,Europe +2024-03-08,48810,7935,"[""Tablet""]",1442.39,{},15477,1,Africa +2023-01-09,48811,1062,"[""Headphones""]",875.01,"{""loyalty"": ""14%""}",215360,1,South America +2024-05-30,48812,648,"[""Phone""]",3632.98,{},218107,0,South America +2024-12-17,48813,4815,"[""Charger"", ""Tablet"", ""Laptop""]",4641.07,{},157414,1,South America +2023-06-09,48814,36,"[""Monitor""]",3482.15,"{""seasonal"": ""11%""}",200826,1,Europe +2023-08-17,48815,9155,"[""Laptop"", ""Phone"", ""Headphones""]",4948.91,"{"""": ""26%""}",171322,1,North America +2024-11-25,48816,4740,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2351.9,{},184086,1,Africa +2023-03-30,48817,8894,"[""Headphones"", ""Phone""]",4040.8,"{""promo"": ""6%""}",52055,1,Asia +2023-07-31,48818,2180,"[""Monitor"", ""Laptop""]",2336.44,{},42116,0,Africa +2023-12-03,48819,5547,"[""Headphones"", ""Wireless Mouse""]",1295.45,{},191965,1,South America +2024-11-01,48820,1747,"[""Headphones"", ""Charger""]",3380.07,{},63255,0,Africa +2024-09-01,48821,8297,"[""Charger"", ""Monitor""]",3671.08,"{""promo"": ""7%""}",160160,1,North America +2023-08-03,48822,6374,"[""Monitor"", ""Tablet""]",3854.75,{},46892,0,South America +2024-02-10,48823,550,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4912.8,{},55745,1,Asia +2023-05-18,48824,2722,"[""Charger""]",1743.88,{},96100,1,South America +2023-02-18,48825,8880,"[""Laptop"", ""Headphones""]",2471.98,"{""seasonal"": ""23%""}",233748,1,Europe +2024-05-23,48826,1586,"[""Tablet""]",887.02,"{""loyalty"": ""14%""}",117516,0,Asia +2024-09-23,48827,7284,"[""Charger"", ""Tablet"", ""Phone""]",1680.32,"{""seasonal"": ""24%""}",255800,1,Asia +2023-03-15,48828,5003,"[""Laptop"", ""Charger"", ""Tablet""]",4622.26,"{""promo"": ""8%""}",208955,0,Africa +2023-12-06,48829,2748,"[""Laptop""]",3055.04,"{"""": ""25%""}",118599,0,Europe +2023-03-03,48830,2382,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3470.46,{},6460,1,Asia +2024-02-11,48831,580,"[""Wireless Mouse""]",2776.5,"{"""": ""19%""}",206186,1,North America +2023-09-24,48832,5009,"[""Tablet""]",3807.03,"{""seasonal"": ""28%""}",222205,1,Africa +2023-09-17,48833,6781,"[""Tablet""]",4183.86,"{"""": ""12%""}",238745,1,North America +2024-07-26,48834,7026,"[""Wireless Mouse""]",2886.7,{},101722,1,Europe +2023-01-29,48835,7231,"[""Tablet"", ""Phone""]",4752.88,"{""seasonal"": ""28%""}",6563,0,South America +2024-01-16,48836,3305,"[""Phone"", ""Laptop"", ""Monitor""]",2058.12,"{""seasonal"": ""29%""}",154605,0,Asia +2024-12-21,48837,3855,"[""Headphones"", ""Monitor""]",3204.28,"{"""": ""14%""}",96855,1,South America +2024-05-16,48838,6426,"[""Phone"", ""Wireless Mouse""]",4765.37,"{""seasonal"": ""25%""}",298259,0,Asia +2024-12-15,48839,1029,"[""Laptop""]",4697.77,"{""loyalty"": ""19%""}",30977,1,Asia +2023-07-05,48840,2612,"[""Headphones"", ""Tablet""]",2157.63,{},93178,1,South America +2024-10-31,48841,2011,"[""Headphones""]",921.88,"{""promo"": ""12%""}",136528,1,Africa +2024-02-29,48842,7118,"[""Monitor"", ""Keyboard""]",2136.32,"{""seasonal"": ""30%""}",76560,1,Africa +2023-09-30,48843,3866,"[""Charger"", ""Headphones"", ""Laptop""]",2480.29,"{""promo"": ""29%""}",74118,0,South America +2024-06-20,48844,8877,"[""Charger""]",1944.55,{},268515,0,North America +2023-11-09,48845,2791,"[""Charger""]",2163.77,{},123988,0,Africa +2023-11-13,48846,1395,"[""Laptop""]",3412.44,"{""loyalty"": ""21%""}",262500,1,Asia +2024-11-20,48847,3904,"[""Monitor""]",2110.56,{},206205,1,Africa +2024-11-28,48848,3075,"[""Headphones"", ""Wireless Mouse""]",2486.59,"{"""": ""5%""}",133257,1,South America +2024-02-22,48849,2295,"[""Laptop"", ""Charger""]",1454.58,"{""loyalty"": ""5%""}",249091,1,North America +2024-05-17,48850,1669,"[""Headphones"", ""Wireless Mouse""]",1656.58,{},111411,1,Asia +2023-09-03,48851,8759,"[""Tablet""]",140.26,"{""promo"": ""22%""}",152320,0,South America +2023-04-16,48852,6189,"[""Tablet""]",855.09,"{""seasonal"": ""25%""}",85098,1,Africa +2023-11-09,48853,3491,"[""Wireless Mouse"", ""Tablet""]",4231.79,{},221884,1,South America +2023-04-08,48854,493,"[""Phone"", ""Tablet""]",1506.35,{},54081,0,Europe +2024-12-30,48855,9891,"[""Wireless Mouse""]",4191.45,{},149690,0,Africa +2024-03-17,48856,2623,"[""Laptop""]",2894.99,"{""promo"": ""6%""}",65812,0,North America +2023-04-24,48857,3600,"[""Monitor"", ""Laptop""]",4154.65,{},262603,0,Asia +2024-05-29,48858,5074,"[""Wireless Mouse"", ""Headphones""]",735.02,{},200311,1,Europe +2024-12-14,48859,6253,"[""Monitor"", ""Phone""]",476.94,{},280978,1,South America +2024-09-20,48860,7860,"[""Laptop"", ""Tablet"", ""Charger""]",2173.42,{},151393,1,Africa +2024-12-26,48861,6060,"[""Monitor"", ""Headphones"", ""Keyboard""]",3772.1,{},131074,1,Europe +2024-09-06,48862,3928,"[""Tablet"", ""Laptop"", ""Monitor""]",3994.27,"{"""": ""5%""}",77968,0,Europe +2023-12-20,48863,9999,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",531.18,"{"""": ""6%""}",25527,1,North America +2024-07-22,48864,4733,"[""Keyboard""]",1373.99,{},266380,1,North America +2023-03-11,48865,4917,"[""Keyboard""]",1194.5,"{""loyalty"": ""17%""}",53665,1,North America +2023-12-17,48866,9127,"[""Charger"", ""Monitor"", ""Keyboard""]",4564.28,"{"""": ""24%""}",4652,1,Asia +2023-05-23,48867,9442,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",693.15,"{""promo"": ""18%""}",8311,1,Europe +2024-12-29,48868,9841,"[""Wireless Mouse"", ""Headphones""]",731.8,{},228832,0,Africa +2024-12-19,48869,3131,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",787.51,"{""seasonal"": ""7%""}",132828,0,Europe +2023-12-19,48870,1675,"[""Keyboard"", ""Headphones""]",2222.86,{},240733,0,Africa +2023-03-15,48871,4478,"[""Laptop"", ""Tablet""]",1761.75,"{""loyalty"": ""24%""}",236168,0,Europe +2023-08-05,48872,5792,"[""Charger"", ""Wireless Mouse""]",4061.61,{},241837,0,North America +2023-12-24,48873,7485,"[""Laptop"", ""Wireless Mouse""]",2453.0,{},206669,1,Asia +2023-11-03,48874,5135,"[""Laptop"", ""Monitor""]",2468.59,{},68554,1,Asia +2023-05-23,48875,2697,"[""Headphones""]",422.96,"{"""": ""12%""}",294506,1,Asia +2024-06-16,48876,6654,"[""Keyboard"", ""Monitor""]",2968.1,{},275193,0,Europe +2023-08-13,48877,9392,"[""Charger""]",3429.21,"{"""": ""19%""}",216756,1,Asia +2024-11-20,48878,3383,"[""Charger""]",954.96,"{""seasonal"": ""20%""}",265721,1,Europe +2024-03-20,48879,4391,"[""Charger"", ""Laptop""]",3590.85,"{""promo"": ""28%""}",145512,0,Africa +2024-08-21,48880,9603,"[""Keyboard"", ""Wireless Mouse""]",2588.58,"{"""": ""7%""}",102992,1,Asia +2024-04-27,48881,7952,"[""Keyboard""]",3263.71,{},161774,1,South America +2024-09-22,48882,709,"[""Laptop""]",2220.03,{},185318,1,Europe +2024-12-08,48883,361,"[""Keyboard"", ""Headphones"", ""Tablet""]",2964.38,{},174148,1,Europe +2023-12-10,48884,1739,"[""Headphones""]",4023.55,"{"""": ""16%""}",241375,1,Asia +2024-12-29,48885,5632,"[""Charger""]",1871.12,"{""seasonal"": ""21%""}",194580,0,North America +2024-10-28,48886,2518,"[""Tablet"", ""Headphones""]",446.7,{},93544,1,North America +2023-12-03,48887,6235,"[""Charger""]",2273.04,"{""loyalty"": ""8%""}",12891,0,Europe +2024-09-21,48888,6878,"[""Phone"", ""Keyboard""]",4808.37,"{""loyalty"": ""6%""}",72921,0,Africa +2023-08-14,48889,9757,"[""Monitor"", ""Phone""]",4269.52,{},236181,1,Europe +2024-02-04,48890,7540,"[""Monitor""]",2665.91,{},26187,0,Africa +2023-03-30,48891,8149,"[""Monitor"", ""Charger""]",4436.82,"{"""": ""29%""}",151178,1,South America +2023-01-01,48892,8787,"[""Monitor"", ""Keyboard"", ""Charger""]",1435.2,{},86753,1,Asia +2023-07-31,48893,7845,"[""Headphones""]",2512.15,"{"""": ""18%""}",260682,0,Europe +2023-03-15,48894,7220,"[""Monitor"", ""Keyboard""]",4125.92,"{""promo"": ""7%""}",11388,1,Asia +2024-06-22,48895,3796,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",973.82,{},1341,1,Asia +2024-01-19,48896,3182,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4882.57,{},145120,1,South America +2024-02-28,48897,329,"[""Charger"", ""Laptop"", ""Monitor""]",2930.47,{},293324,0,North America +2023-07-30,48898,749,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",737.19,"{"""": ""26%""}",289605,1,Europe +2023-08-14,48899,4650,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2068.58,"{""seasonal"": ""16%""}",288435,1,South America +2024-08-13,48900,8106,"[""Wireless Mouse""]",3411.91,"{""promo"": ""13%""}",194242,1,South America +2023-09-23,48901,7217,"[""Keyboard""]",4725.27,"{""loyalty"": ""24%""}",102985,1,Europe +2023-08-20,48902,8305,"[""Charger""]",4015.57,{},134414,1,Asia +2024-03-07,48903,8868,"[""Headphones"", ""Wireless Mouse""]",252.28,{},260562,1,North America +2023-12-14,48904,9574,"[""Laptop""]",1378.88,{},66868,0,Europe +2023-04-09,48905,7897,"[""Headphones""]",1781.03,"{"""": ""10%""}",154422,0,Africa +2023-09-30,48906,5059,"[""Charger"", ""Headphones""]",1702.61,{},236588,0,Europe +2024-04-19,48907,9019,"[""Keyboard"", ""Laptop"", ""Headphones""]",3503.04,{},269602,1,Africa +2024-04-15,48908,5954,"[""Keyboard""]",288.48,{},8071,1,South America +2023-09-24,48909,3303,"[""Tablet"", ""Charger""]",3132.09,{},269866,1,Asia +2024-10-30,48910,8424,"[""Charger""]",1090.05,{},220485,1,Africa +2023-02-04,48911,4274,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2734.04,"{""seasonal"": ""28%""}",151232,1,Africa +2023-11-08,48912,6934,"[""Tablet""]",4337.37,"{"""": ""8%""}",253244,1,North America +2023-06-24,48913,4036,"[""Wireless Mouse""]",2686.1,{},260059,1,South America +2023-08-23,48914,8202,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1753.29,{},251141,0,North America +2023-11-27,48915,9234,"[""Monitor"", ""Headphones"", ""Keyboard""]",2007.16,{},131622,0,North America +2023-06-30,48916,6862,"[""Headphones"", ""Keyboard"", ""Phone""]",3485.92,{},53155,0,Europe +2024-03-19,48917,6393,"[""Wireless Mouse"", ""Charger""]",1824.41,{},155880,1,Europe +2023-11-13,48918,5148,"[""Phone"", ""Headphones"", ""Tablet""]",2818.06,"{"""": ""22%""}",100862,1,North America +2023-01-04,48919,2558,"[""Charger"", ""Phone"", ""Keyboard""]",2699.5,"{"""": ""13%""}",5380,1,South America +2023-03-10,48920,2121,"[""Wireless Mouse"", ""Keyboard""]",4617.39,"{""loyalty"": ""23%""}",148854,1,Asia +2024-10-27,48921,114,"[""Laptop"", ""Monitor""]",4708.67,"{"""": ""8%""}",65650,0,Asia +2023-09-24,48922,3647,"[""Laptop""]",2168.22,{},177309,0,Africa +2024-11-03,48923,6093,"[""Tablet"", ""Monitor""]",1509.89,{},77335,1,South America +2024-07-07,48924,7509,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",878.11,"{""loyalty"": ""16%""}",18645,1,Europe +2023-12-15,48925,7985,"[""Tablet""]",1561.13,"{""seasonal"": ""6%""}",237560,1,North America +2023-11-03,48926,9406,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",62.22,{},218336,1,North America +2023-01-08,48927,2126,"[""Monitor"", ""Laptop""]",1056.02,"{""seasonal"": ""17%""}",3891,1,Asia +2023-04-14,48928,2906,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3626.66,{},255835,0,South America +2023-10-15,48929,1642,"[""Headphones"", ""Phone""]",1611.65,{},32636,1,North America +2024-11-04,48930,3546,"[""Monitor""]",1290.55,"{""promo"": ""27%""}",67135,1,North America +2023-05-21,48931,6560,"[""Keyboard"", ""Headphones""]",1294.61,"{""loyalty"": ""23%""}",55529,0,North America +2023-09-11,48932,9557,"[""Phone""]",494.56,"{""promo"": ""25%""}",233850,1,South America +2023-04-04,48933,8284,"[""Wireless Mouse"", ""Tablet""]",874.99,{},31072,1,Asia +2024-05-05,48934,7445,"[""Headphones"", ""Monitor""]",4966.66,{},47541,1,Europe +2023-03-13,48935,5426,"[""Wireless Mouse""]",3396.09,{},134769,0,South America +2024-03-17,48936,6472,"[""Phone"", ""Charger""]",3691.01,"{""loyalty"": ""19%""}",217556,1,Asia +2024-03-09,48937,4638,"[""Keyboard"", ""Charger""]",506.87,"{"""": ""30%""}",55047,0,South America +2024-08-23,48938,8168,"[""Laptop""]",3701.17,"{"""": ""21%""}",210656,1,Europe +2024-01-08,48939,1035,"[""Charger"", ""Tablet"", ""Phone""]",2181.87,{},81870,0,Europe +2023-11-22,48940,7500,"[""Monitor"", ""Phone""]",2312.93,"{"""": ""26%""}",73933,1,North America +2023-05-17,48941,7623,"[""Keyboard""]",4924.01,"{""seasonal"": ""19%""}",202145,1,Asia +2023-12-04,48942,9119,"[""Phone""]",3476.57,"{""seasonal"": ""5%""}",160025,1,North America +2024-04-05,48943,6989,"[""Keyboard"", ""Laptop""]",4774.1,"{""seasonal"": ""30%""}",20372,1,Africa +2023-01-14,48944,4491,"[""Charger"", ""Keyboard""]",2871.17,"{""promo"": ""6%""}",156241,0,North America +2023-04-08,48945,6068,"[""Headphones"", ""Laptop"", ""Monitor""]",2851.13,"{"""": ""10%""}",269532,0,Asia +2024-10-21,48946,886,"[""Charger"", ""Laptop""]",1843.1,{},152414,0,North America +2024-06-19,48947,107,"[""Keyboard"", ""Wireless Mouse""]",1173.74,"{""loyalty"": ""28%""}",34510,0,Asia +2023-09-20,48948,3265,"[""Laptop"", ""Keyboard"", ""Phone""]",2034.07,{},146629,1,Africa +2023-06-01,48949,5448,"[""Tablet""]",622.97,"{"""": ""11%""}",32050,1,Africa +2024-02-24,48950,7882,"[""Charger""]",4140.32,{},278752,0,South America +2024-09-20,48951,4706,"[""Phone"", ""Keyboard""]",4006.51,"{""seasonal"": ""11%""}",196169,1,Europe +2023-07-29,48952,2393,"[""Phone""]",4717.77,{},192964,0,South America +2024-08-24,48953,4108,"[""Monitor""]",1234.08,"{""seasonal"": ""11%""}",261515,0,South America +2023-06-10,48954,194,"[""Wireless Mouse"", ""Phone""]",423.36,"{"""": ""13%""}",294047,1,Asia +2024-05-13,48955,3900,"[""Keyboard""]",3169.02,{},66871,1,Europe +2023-04-21,48956,3595,"[""Keyboard"", ""Charger""]",4965.11,{},24335,1,Africa +2023-10-05,48957,5350,"[""Wireless Mouse""]",4261.33,"{""loyalty"": ""21%""}",131850,1,Africa +2023-11-08,48958,1888,"[""Tablet"", ""Charger"", ""Keyboard""]",3332.95,"{"""": ""28%""}",25178,1,North America +2024-05-11,48959,4955,"[""Monitor"", ""Phone""]",2603.11,"{""loyalty"": ""20%""}",177689,0,South America +2023-01-03,48960,5598,"[""Phone"", ""Keyboard"", ""Laptop""]",3031.59,"{""loyalty"": ""5%""}",64712,1,Europe +2023-02-04,48961,258,"[""Monitor"", ""Keyboard""]",2781.45,{},174697,0,South America +2023-10-22,48962,5764,"[""Monitor""]",2669.74,"{""loyalty"": ""23%""}",136844,1,North America +2024-06-07,48963,5301,"[""Tablet""]",2243.31,{},153068,0,North America +2024-08-17,48964,1028,"[""Headphones"", ""Wireless Mouse""]",2101.2,"{""seasonal"": ""27%""}",289839,0,Europe +2023-11-19,48965,8542,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1668.17,{},78887,1,Africa +2023-07-14,48966,2217,"[""Wireless Mouse""]",1757.61,"{""seasonal"": ""14%""}",43324,0,South America +2023-06-05,48967,9638,"[""Charger""]",4833.26,{},249558,0,Asia +2023-08-18,48968,4253,"[""Charger"", ""Laptop"", ""Monitor""]",1731.32,"{""seasonal"": ""28%""}",64601,0,Asia +2023-01-10,48969,1911,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1641.56,{},271012,0,Asia +2024-09-17,48970,631,"[""Laptop"", ""Charger"", ""Monitor""]",1619.67,{},174610,1,South America +2024-03-19,48971,5858,"[""Tablet"", ""Phone""]",1823.05,{},159861,0,North America +2024-12-04,48972,6691,"[""Charger"", ""Headphones""]",3636.2,"{""promo"": ""8%""}",53152,0,North America +2023-06-13,48973,3830,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3880.51,"{""loyalty"": ""27%""}",50486,1,Asia +2024-11-19,48974,9888,"[""Laptop"", ""Keyboard""]",2430.38,"{""seasonal"": ""13%""}",250090,0,Asia +2024-05-22,48975,1168,"[""Monitor"", ""Keyboard"", ""Charger""]",566.65,"{""promo"": ""16%""}",118879,1,North America +2024-09-06,48976,4277,"[""Charger"", ""Headphones"", ""Tablet""]",161.38,{},229380,1,Europe +2023-11-19,48977,6813,"[""Wireless Mouse"", ""Charger""]",3668.34,{},287801,0,South America +2024-08-01,48978,2021,"[""Charger"", ""Tablet""]",962.04,{},66318,1,Asia +2023-05-23,48979,4711,"[""Keyboard"", ""Laptop"", ""Headphones""]",4845.96,{},67576,0,North America +2023-09-03,48980,3678,"[""Headphones"", ""Charger""]",783.33,{},129146,0,North America +2024-07-10,48981,308,"[""Headphones"", ""Keyboard"", ""Monitor""]",3277.4,"{"""": ""15%""}",246980,0,South America +2023-09-01,48982,6234,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4655.83,"{""seasonal"": ""17%""}",277460,0,Europe +2023-04-29,48983,350,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3437.69,"{""promo"": ""7%""}",107858,1,South America +2023-03-01,48984,339,"[""Monitor"", ""Laptop""]",931.49,"{""promo"": ""28%""}",203830,0,Asia +2023-05-06,48985,2145,"[""Keyboard"", ""Monitor""]",3223.74,"{""loyalty"": ""28%""}",272666,0,South America +2024-10-28,48986,2318,"[""Monitor"", ""Keyboard""]",3337.45,"{"""": ""5%""}",186953,1,North America +2024-12-03,48987,2265,"[""Wireless Mouse"", ""Keyboard""]",194.42,{},39395,0,Asia +2023-06-18,48988,8898,"[""Laptop"", ""Keyboard"", ""Headphones""]",2128.2,"{"""": ""7%""}",228619,0,Africa +2023-01-04,48989,3359,"[""Tablet"", ""Charger""]",2004.57,"{""promo"": ""28%""}",125700,1,Africa +2023-04-18,48990,4408,"[""Tablet""]",581.25,"{"""": ""8%""}",1846,0,Asia +2023-10-02,48991,1276,"[""Laptop"", ""Monitor"", ""Keyboard""]",4557.41,{},120635,0,South America +2024-09-08,48992,9117,"[""Laptop"", ""Tablet"", ""Headphones""]",2336.32,{},73075,1,Europe +2024-04-16,48993,1743,"[""Laptop""]",3729.46,"{""promo"": ""22%""}",156318,0,Europe +2024-08-05,48994,7402,"[""Keyboard""]",2440.25,"{""loyalty"": ""5%""}",282523,1,Europe +2024-09-21,48995,3484,"[""Monitor"", ""Phone""]",388.96,{},88681,0,Europe +2024-09-07,48996,450,"[""Charger"", ""Monitor""]",4465.7,{},2043,0,South America +2023-03-12,48997,588,"[""Keyboard""]",4084.37,{},193287,1,Asia +2023-12-09,48998,8078,"[""Charger""]",138.47,{},58226,1,Asia +2024-07-20,48999,4642,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2460.23,{},208747,1,North America +2023-05-20,49000,9156,"[""Keyboard""]",1319.46,{},220857,1,Europe +2023-01-11,49001,7990,"[""Headphones""]",1701.15,{},53679,0,North America +2024-03-31,49002,5513,"[""Charger"", ""Keyboard""]",4277.78,"{""seasonal"": ""14%""}",29886,0,Europe +2024-01-02,49003,7339,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4921.35,"{""loyalty"": ""19%""}",136425,1,Europe +2023-12-20,49004,6019,"[""Laptop""]",1591.15,"{""promo"": ""26%""}",79009,0,Africa +2023-11-12,49005,9955,"[""Headphones"", ""Wireless Mouse""]",506.15,"{""loyalty"": ""20%""}",217886,0,Europe +2024-02-04,49006,8289,"[""Charger"", ""Laptop""]",543.5,"{""loyalty"": ""17%""}",211648,1,Africa +2024-06-19,49007,3061,"[""Tablet""]",4816.99,"{"""": ""10%""}",116289,1,South America +2024-07-26,49008,902,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",475.94,"{""promo"": ""30%""}",96625,1,Africa +2023-05-08,49009,7195,"[""Monitor"", ""Tablet"", ""Keyboard""]",2348.33,"{""seasonal"": ""10%""}",255981,0,Europe +2023-09-28,49010,2771,"[""Headphones"", ""Monitor""]",1985.35,{},274300,1,North America +2023-02-01,49011,1601,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4740.55,"{"""": ""16%""}",69003,0,South America +2023-06-26,49012,5272,"[""Laptop"", ""Charger""]",2868.17,"{""loyalty"": ""17%""}",283405,1,Europe +2024-03-29,49013,4867,"[""Monitor"", ""Charger""]",1360.65,"{""promo"": ""18%""}",279374,1,North America +2023-05-05,49014,9906,"[""Laptop""]",348.9,{},233534,0,South America +2023-05-02,49015,383,"[""Charger""]",1253.78,{},236622,1,Africa +2024-05-20,49016,3121,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2867.64,"{"""": ""27%""}",206154,0,Asia +2023-09-07,49017,4677,"[""Wireless Mouse"", ""Laptop""]",1594.71,"{""promo"": ""29%""}",62638,1,Africa +2023-04-08,49018,9498,"[""Phone""]",2911.39,"{""loyalty"": ""19%""}",122110,1,South America +2024-02-16,49019,9011,"[""Phone"", ""Laptop"", ""Charger""]",3476.71,{},54163,1,Europe +2024-08-23,49020,81,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3939.51,{},255699,0,North America +2023-07-05,49021,3194,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2126.71,{},232205,1,Africa +2024-01-04,49022,773,"[""Laptop""]",4673.41,"{"""": ""20%""}",35570,1,Africa +2024-10-01,49023,995,"[""Keyboard"", ""Monitor""]",1978.05,{},172050,1,Africa +2023-07-26,49024,3290,"[""Monitor"", ""Charger""]",4015.33,"{""promo"": ""14%""}",265501,0,South America +2023-02-09,49025,7575,"[""Monitor""]",2904.28,"{""seasonal"": ""25%""}",231773,1,North America +2023-01-25,49026,3362,"[""Phone"", ""Charger"", ""Keyboard""]",4820.63,"{""loyalty"": ""14%""}",136114,0,Europe +2024-11-06,49027,9982,"[""Monitor""]",3186.58,{},52184,0,Asia +2023-08-31,49028,2946,"[""Charger"", ""Keyboard""]",1565.49,{},181048,1,Africa +2023-07-15,49029,1192,"[""Monitor""]",1800.19,"{""seasonal"": ""9%""}",259837,0,North America +2023-08-24,49030,5288,"[""Wireless Mouse""]",1471.65,"{""seasonal"": ""11%""}",43912,0,Africa +2023-08-17,49031,4485,"[""Tablet"", ""Headphones"", ""Charger""]",4640.78,{},265004,0,Asia +2024-10-03,49032,8895,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",503.64,"{""loyalty"": ""24%""}",58246,1,Africa +2024-04-07,49033,9291,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1101.4,{},174150,0,Asia +2023-08-12,49034,2673,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3304.99,"{""promo"": ""19%""}",4609,1,North America +2023-06-16,49035,1513,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3267.99,{},82425,0,Europe +2024-11-13,49036,7904,"[""Tablet"", ""Keyboard"", ""Laptop""]",80.86,"{""promo"": ""13%""}",292418,0,Africa +2024-10-19,49037,6448,"[""Monitor"", ""Tablet""]",1868.88,{},211282,1,South America +2024-12-10,49038,7730,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4819.82,{},15744,1,North America +2023-04-11,49039,8080,"[""Monitor"", ""Headphones"", ""Laptop""]",1389.88,{},284078,0,North America +2023-08-02,49040,3033,"[""Keyboard"", ""Charger""]",3226.01,"{""loyalty"": ""9%""}",164042,0,North America +2023-12-24,49041,7985,"[""Laptop""]",2711.4,{},263367,1,North America +2024-02-21,49042,7972,"[""Charger"", ""Headphones"", ""Monitor""]",4044.34,{},99000,1,South America +2023-08-22,49043,8388,"[""Keyboard"", ""Headphones"", ""Monitor""]",688.83,"{""seasonal"": ""28%""}",279983,1,Europe +2023-04-24,49044,1626,"[""Tablet"", ""Monitor""]",2688.37,{},69133,1,Asia +2024-04-19,49045,1783,"[""Tablet""]",2176.97,{},146793,1,Europe +2024-12-16,49046,5465,"[""Charger"", ""Phone""]",1671.29,"{""promo"": ""19%""}",211864,1,Europe +2023-08-16,49047,3484,"[""Keyboard"", ""Wireless Mouse""]",1604.76,{},102857,0,South America +2024-02-27,49048,8223,"[""Monitor"", ""Charger""]",2229.74,{},273867,1,Asia +2023-04-11,49049,6278,"[""Headphones""]",2565.27,"{"""": ""17%""}",174369,0,Africa +2024-11-18,49050,9369,"[""Phone"", ""Headphones""]",3879.73,"{""promo"": ""30%""}",79582,0,North America +2024-02-12,49051,9947,"[""Charger"", ""Keyboard""]",631.94,{},162293,0,Africa +2023-10-17,49052,3349,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4906.92,{},116654,1,Asia +2023-11-26,49053,1054,"[""Laptop""]",720.64,"{""seasonal"": ""14%""}",2397,1,South America +2024-09-04,49054,7118,"[""Headphones"", ""Laptop""]",3337.54,{},250346,0,Africa +2024-05-16,49055,3020,"[""Wireless Mouse""]",764.85,{},164658,1,Europe +2024-08-28,49056,9973,"[""Keyboard""]",2163.86,"{"""": ""20%""}",2682,0,Asia +2023-11-13,49057,6448,"[""Monitor"", ""Phone"", ""Charger""]",4110.93,{},205513,1,South America +2023-05-14,49058,8657,"[""Charger"", ""Wireless Mouse""]",163.14,"{""seasonal"": ""5%""}",191657,1,South America +2024-07-04,49059,6212,"[""Laptop"", ""Charger""]",2428.68,{},244213,0,North America +2024-01-27,49060,3453,"[""Monitor"", ""Laptop"", ""Phone""]",3167.42,"{"""": ""5%""}",117000,0,Asia +2024-08-09,49061,4979,"[""Tablet"", ""Keyboard"", ""Monitor""]",1736.04,{},221826,1,Europe +2024-02-14,49062,9212,"[""Laptop"", ""Tablet"", ""Phone""]",2145.83,{},219317,0,North America +2023-09-17,49063,6986,"[""Tablet"", ""Phone"", ""Charger""]",760.24,"{""promo"": ""13%""}",19163,0,North America +2024-07-03,49064,519,"[""Wireless Mouse"", ""Tablet""]",4343.98,"{"""": ""7%""}",174059,0,Asia +2024-03-03,49065,322,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",792.76,{},126173,1,Europe +2023-03-25,49066,3101,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2510.28,"{"""": ""30%""}",251972,0,Asia +2023-12-06,49067,2609,"[""Monitor"", ""Keyboard"", ""Headphones""]",3102.39,"{""seasonal"": ""26%""}",52524,0,Europe +2023-04-27,49068,3794,"[""Phone"", ""Monitor"", ""Charger""]",3075.83,{},19157,0,Africa +2024-07-05,49069,7335,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4335.57,{},297009,1,North America +2023-12-15,49070,7942,"[""Charger"", ""Headphones"", ""Laptop""]",3867.82,"{""loyalty"": ""6%""}",12193,0,Europe +2024-09-02,49071,3066,"[""Wireless Mouse""]",3413.84,{},99087,0,South America +2023-06-10,49072,2561,"[""Phone"", ""Tablet""]",4447.34,{},275165,0,South America +2023-09-10,49073,5394,"[""Headphones"", ""Charger"", ""Laptop""]",1789.99,"{""loyalty"": ""30%""}",89319,1,Africa +2024-08-15,49074,7162,"[""Charger"", ""Laptop""]",4177.64,{},248782,0,Asia +2023-07-28,49075,5544,"[""Tablet"", ""Headphones"", ""Laptop""]",4959.23,"{""promo"": ""6%""}",16785,1,South America +2024-08-21,49076,8656,"[""Headphones""]",2640.46,"{""seasonal"": ""30%""}",243342,0,Africa +2024-06-29,49077,9486,"[""Keyboard""]",1182.29,"{""promo"": ""18%""}",177269,0,North America +2024-03-14,49078,9238,"[""Keyboard""]",162.56,"{""promo"": ""7%""}",279881,1,Asia +2023-12-18,49079,2777,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4273.45,"{"""": ""26%""}",23176,0,Europe +2024-06-17,49080,1548,"[""Keyboard""]",4086.84,{},182027,0,North America +2024-05-27,49081,9395,"[""Monitor"", ""Wireless Mouse""]",1369.51,{},266066,1,North America +2023-10-08,49082,6534,"[""Charger"", ""Headphones""]",2077.58,{},114912,0,Asia +2024-02-04,49083,4589,"[""Laptop""]",3874.65,"{""promo"": ""12%""}",124363,1,Asia +2023-08-30,49084,8174,"[""Monitor""]",1756.82,{},260316,0,South America +2024-03-27,49085,4461,"[""Phone"", ""Wireless Mouse""]",603.9,{},39739,1,South America +2023-02-18,49086,6969,"[""Tablet"", ""Keyboard""]",1270.75,"{"""": ""6%""}",41804,0,Europe +2023-09-15,49087,4598,"[""Keyboard""]",981.84,"{""seasonal"": ""22%""}",219361,1,Africa +2024-08-10,49088,1835,"[""Headphones""]",3062.45,{},47863,0,North America +2024-01-26,49089,3738,"[""Charger"", ""Keyboard""]",903.05,"{""loyalty"": ""22%""}",179318,1,South America +2024-02-01,49090,3494,"[""Charger""]",3480.41,"{"""": ""28%""}",142765,0,Asia +2024-01-24,49091,55,"[""Tablet"", ""Headphones"", ""Charger""]",2749.32,{},71159,0,Asia +2023-11-07,49092,4043,"[""Monitor"", ""Charger""]",831.54,{},241712,1,North America +2024-08-23,49093,2487,"[""Keyboard"", ""Monitor"", ""Laptop""]",2086.22,{},87144,0,Asia +2024-07-13,49094,7896,"[""Laptop""]",1456.4,{},91211,1,North America +2023-07-04,49095,1149,"[""Tablet""]",2202.94,"{""loyalty"": ""21%""}",219144,1,North America +2024-05-06,49096,3489,"[""Phone"", ""Wireless Mouse""]",4732.85,{},228117,0,South America +2024-03-05,49097,5603,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",763.77,"{""seasonal"": ""18%""}",220715,1,Asia +2023-07-17,49098,9732,"[""Headphones"", ""Laptop"", ""Phone""]",2829.97,"{""promo"": ""28%""}",197613,1,South America +2023-11-22,49099,6077,"[""Laptop"", ""Phone"", ""Tablet""]",4371.24,{},287518,0,South America +2024-02-13,49100,1569,"[""Tablet"", ""Headphones""]",1859.14,{},126454,0,North America +2023-07-03,49101,9594,"[""Keyboard""]",2694.61,{},287122,1,Africa +2023-05-17,49102,8421,"[""Monitor"", ""Keyboard""]",668.45,"{""loyalty"": ""29%""}",73599,0,North America +2024-12-14,49103,5299,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1879.62,{},89677,0,Europe +2023-08-19,49104,6827,"[""Tablet"", ""Phone""]",2864.38,"{""loyalty"": ""20%""}",216722,1,Asia +2023-05-23,49105,2589,"[""Phone""]",3019.84,{},8850,0,South America +2023-09-23,49106,114,"[""Keyboard"", ""Tablet"", ""Monitor""]",810.04,{},159054,0,Africa +2023-11-15,49107,2009,"[""Keyboard""]",4752.82,"{""loyalty"": ""19%""}",119275,0,North America +2023-02-25,49108,271,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",125.39,{},4306,0,North America +2023-03-14,49109,1321,"[""Keyboard""]",1862.68,"{""promo"": ""27%""}",122623,1,Africa +2023-12-28,49110,1862,"[""Laptop"", ""Monitor""]",4403.18,"{""loyalty"": ""7%""}",128535,1,Europe +2023-10-04,49111,8297,"[""Tablet"", ""Keyboard""]",1291.69,"{"""": ""29%""}",65314,0,South America +2024-03-27,49112,1373,"[""Headphones""]",2695.17,{},120249,1,North America +2023-02-07,49113,4872,"[""Charger"", ""Laptop"", ""Keyboard""]",1042.06,{},166013,1,North America +2023-01-13,49114,1264,"[""Tablet""]",1944.0,"{""seasonal"": ""14%""}",158098,1,Africa +2023-01-17,49115,1223,"[""Tablet"", ""Phone"", ""Keyboard""]",174.14,{},49929,0,Europe +2023-12-28,49116,5498,"[""Headphones"", ""Tablet"", ""Laptop""]",4735.99,"{"""": ""5%""}",161914,0,South America +2023-08-05,49117,5248,"[""Charger"", ""Monitor""]",1609.81,"{""promo"": ""26%""}",279556,1,North America +2024-05-18,49118,7948,"[""Wireless Mouse""]",4711.16,{},161513,1,South America +2023-04-15,49119,7302,"[""Tablet"", ""Laptop"", ""Monitor""]",4320.57,{},76084,0,Asia +2023-06-28,49120,8249,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",451.69,"{""seasonal"": ""15%""}",127670,0,Africa +2024-03-22,49121,984,"[""Headphones""]",2420.76,"{""promo"": ""30%""}",94438,0,Africa +2024-03-01,49122,8576,"[""Phone"", ""Headphones"", ""Tablet""]",4775.52,"{""promo"": ""9%""}",44929,0,North America +2023-06-22,49123,778,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",350.24,{},107511,0,Europe +2023-07-21,49124,3412,"[""Laptop"", ""Monitor""]",3159.79,"{""loyalty"": ""8%""}",193214,0,South America +2024-05-22,49125,1304,"[""Wireless Mouse"", ""Phone""]",3861.94,{},139285,0,South America +2023-07-11,49126,3535,"[""Charger"", ""Keyboard""]",1233.06,"{""seasonal"": ""24%""}",284544,0,Europe +2024-03-20,49127,6587,"[""Laptop"", ""Keyboard""]",1760.46,"{""promo"": ""9%""}",268052,0,Asia +2024-01-30,49128,3241,"[""Phone"", ""Headphones""]",2434.5,{},139600,0,North America +2024-01-01,49129,8384,"[""Phone""]",433.78,"{""loyalty"": ""8%""}",16411,1,Europe +2023-08-29,49130,4479,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4425.97,{},105030,1,Asia +2023-10-21,49131,979,"[""Laptop"", ""Keyboard""]",3966.07,{},170341,0,Asia +2024-11-19,49132,8929,"[""Tablet""]",832.71,{},149661,0,Europe +2023-08-04,49133,5545,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3034.75,"{""seasonal"": ""15%""}",25931,1,Asia +2023-02-13,49134,4749,"[""Phone""]",1736.71,{},82149,1,Africa +2023-07-30,49135,9638,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1266.0,"{""loyalty"": ""14%""}",200420,1,Africa +2024-11-04,49136,5575,"[""Tablet""]",2946.69,"{""loyalty"": ""13%""}",278072,1,Africa +2024-09-16,49137,1350,"[""Keyboard""]",3852.62,{},277856,0,North America +2024-01-04,49138,6028,"[""Charger"", ""Keyboard""]",2567.11,{},208349,0,South America +2023-07-29,49139,6090,"[""Keyboard""]",3504.17,"{""seasonal"": ""20%""}",194915,0,Europe +2023-06-16,49140,6749,"[""Phone""]",1011.6,{},36780,0,Europe +2024-12-09,49141,9102,"[""Charger""]",605.88,"{""seasonal"": ""9%""}",93927,0,Africa +2024-10-10,49142,648,"[""Monitor""]",4878.09,{},230225,1,North America +2024-11-15,49143,4608,"[""Monitor""]",235.6,{},117817,0,Europe +2023-06-29,49144,5618,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3638.09,"{""promo"": ""23%""}",229783,0,North America +2024-11-26,49145,1900,"[""Phone"", ""Laptop"", ""Headphones""]",717.24,{},223589,0,Africa +2024-07-19,49146,7629,"[""Keyboard""]",4492.01,"{"""": ""17%""}",290662,1,Europe +2024-07-14,49147,9706,"[""Monitor""]",2593.0,{},290257,0,Africa +2024-11-09,49148,9890,"[""Monitor"", ""Headphones""]",1522.28,"{"""": ""18%""}",127463,1,South America +2023-04-11,49149,3565,"[""Phone"", ""Laptop""]",613.1,{},131670,1,South America +2024-07-16,49150,9846,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2016.32,"{""seasonal"": ""17%""}",45513,1,North America +2024-05-24,49151,1665,"[""Keyboard""]",4217.18,{},12883,0,South America +2023-07-12,49152,8684,"[""Tablet""]",3678.47,"{""seasonal"": ""14%""}",177828,0,Africa +2024-04-20,49153,9292,"[""Charger"", ""Keyboard"", ""Monitor""]",893.49,"{""loyalty"": ""15%""}",49484,1,Asia +2023-11-30,49154,1256,"[""Phone"", ""Tablet"", ""Keyboard""]",3601.05,{},268210,1,South America +2024-12-20,49155,3911,"[""Phone"", ""Wireless Mouse""]",1257.46,"{"""": ""9%""}",163058,0,Europe +2024-10-30,49156,272,"[""Phone"", ""Keyboard""]",1994.28,"{""loyalty"": ""6%""}",199681,0,South America +2024-01-23,49157,5030,"[""Tablet""]",4803.4,"{""seasonal"": ""11%""}",165033,1,Europe +2024-06-02,49158,3161,"[""Headphones"", ""Monitor"", ""Tablet""]",447.46,{},133854,1,Africa +2024-10-15,49159,9549,"[""Keyboard""]",4199.34,{},148317,0,Africa +2024-03-31,49160,137,"[""Headphones""]",943.08,{},208759,1,Asia +2023-03-13,49161,666,"[""Laptop""]",1041.85,"{""loyalty"": ""17%""}",222987,1,Asia +2023-08-16,49162,1782,"[""Laptop"", ""Wireless Mouse""]",2645.05,"{"""": ""11%""}",168874,1,North America +2024-09-19,49163,1098,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2946.98,{},60937,0,Asia +2024-05-14,49164,6761,"[""Headphones"", ""Wireless Mouse""]",3282.18,{},145042,0,North America +2023-09-10,49165,8237,"[""Keyboard"", ""Phone""]",2955.18,{},118392,1,Europe +2023-01-20,49166,1647,"[""Laptop"", ""Keyboard"", ""Tablet""]",71.89,"{""promo"": ""6%""}",243417,1,North America +2023-04-21,49167,1069,"[""Headphones""]",2386.02,"{"""": ""26%""}",266831,0,Europe +2023-11-10,49168,3789,"[""Phone""]",4580.95,{},11194,0,Asia +2024-03-22,49169,6093,"[""Monitor""]",3793.6,{},20127,0,Asia +2024-04-21,49170,2659,"[""Charger"", ""Tablet"", ""Laptop""]",1946.44,{},261804,1,Africa +2024-11-29,49171,1151,"[""Charger"", ""Headphones""]",2616.75,"{"""": ""8%""}",94035,0,Europe +2024-12-02,49172,9497,"[""Wireless Mouse""]",2711.16,{},19247,1,Europe +2024-04-03,49173,8535,"[""Headphones"", ""Keyboard""]",1283.76,{},115788,0,Europe +2024-01-28,49174,4271,"[""Monitor"", ""Headphones"", ""Keyboard""]",1547.37,{},36233,0,North America +2024-02-13,49175,5287,"[""Keyboard"", ""Tablet""]",4942.99,{},265446,0,Africa +2024-12-25,49176,7830,"[""Headphones"", ""Wireless Mouse""]",3892.83,"{"""": ""26%""}",220232,0,North America +2024-11-24,49177,9865,"[""Wireless Mouse"", ""Laptop""]",328.8,{},142667,0,South America +2023-08-27,49178,5303,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2790.64,{},282505,1,North America +2023-04-20,49179,5415,"[""Charger"", ""Tablet""]",4606.98,"{""promo"": ""16%""}",298367,0,South America +2023-12-16,49180,1372,"[""Laptop"", ""Wireless Mouse""]",1108.88,{},158153,1,Africa +2024-01-31,49181,8577,"[""Monitor"", ""Headphones""]",456.84,"{""seasonal"": ""18%""}",118072,1,Africa +2023-11-03,49182,1103,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3917.03,"{""seasonal"": ""27%""}",137740,1,North America +2024-08-01,49183,1331,"[""Charger""]",2269.31,{},135973,0,North America +2023-07-25,49184,4139,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2653.06,"{""loyalty"": ""5%""}",266847,1,South America +2024-11-27,49185,9861,"[""Wireless Mouse""]",2227.87,{},77747,1,South America +2024-02-12,49186,5321,"[""Headphones""]",4080.51,{},95091,0,Africa +2024-12-03,49187,2806,"[""Charger"", ""Laptop"", ""Keyboard""]",328.75,{},146682,1,South America +2024-12-27,49188,2979,"[""Phone"", ""Tablet"", ""Charger""]",3286.31,"{""seasonal"": ""23%""}",92817,1,Africa +2024-03-12,49189,9769,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",329.9,"{""promo"": ""10%""}",174250,0,Asia +2024-06-28,49190,8782,"[""Headphones"", ""Tablet"", ""Phone""]",1527.61,{},62815,0,South America +2023-10-03,49191,4276,"[""Keyboard"", ""Monitor"", ""Headphones""]",1426.68,{},210108,1,South America +2023-10-13,49192,6377,"[""Headphones"", ""Laptop"", ""Charger""]",3405.73,{},113719,0,Africa +2024-07-18,49193,3444,"[""Monitor"", ""Keyboard""]",4529.1,"{"""": ""11%""}",103082,0,Asia +2023-11-10,49194,4182,"[""Tablet""]",3618.83,"{""loyalty"": ""20%""}",151111,1,Europe +2023-07-05,49195,5909,"[""Wireless Mouse""]",3558.24,{},202347,1,Asia +2023-04-26,49196,6573,"[""Laptop"", ""Wireless Mouse""]",2041.06,"{""seasonal"": ""10%""}",96300,1,Asia +2024-07-09,49197,8220,"[""Phone"", ""Laptop""]",3279.22,{},294078,0,Asia +2024-06-25,49198,3684,"[""Charger""]",4725.77,{},284977,0,Europe +2023-12-30,49199,7682,"[""Phone""]",1069.14,{},95169,1,South America +2023-02-20,49200,3973,"[""Headphones""]",2376.94,"{""seasonal"": ""27%""}",106666,1,Asia +2024-05-17,49201,7054,"[""Tablet"", ""Charger"", ""Phone""]",4506.69,"{""loyalty"": ""21%""}",286838,0,Africa +2023-07-05,49202,745,"[""Charger""]",1766.68,{},22290,0,Africa +2024-07-05,49203,6756,"[""Wireless Mouse""]",3973.44,{},39528,0,Europe +2023-03-29,49204,4939,"[""Laptop"", ""Keyboard""]",4121.41,{},12658,0,Africa +2024-12-28,49205,9229,"[""Laptop""]",1805.15,"{""promo"": ""11%""}",48389,1,Africa +2023-09-22,49206,2602,"[""Phone"", ""Tablet"", ""Monitor""]",2308.96,{},50808,1,South America +2024-04-18,49207,3085,"[""Laptop""]",3669.64,"{""seasonal"": ""6%""}",282240,0,Asia +2024-01-03,49208,9434,"[""Headphones"", ""Wireless Mouse""]",1365.89,{},219002,0,South America +2024-08-13,49209,898,"[""Monitor"", ""Laptop""]",4509.0,{},258796,0,Asia +2023-07-25,49210,2510,"[""Laptop"", ""Wireless Mouse""]",1894.13,"{""seasonal"": ""17%""}",179962,1,Asia +2024-04-13,49211,6589,"[""Tablet"", ""Charger"", ""Keyboard""]",901.4,"{""seasonal"": ""29%""}",90240,0,Africa +2024-11-23,49212,8520,"[""Wireless Mouse""]",3548.62,{},69136,0,South America +2024-09-01,49213,2854,"[""Phone"", ""Headphones"", ""Monitor""]",2537.79,{},189208,1,Europe +2024-04-17,49214,4588,"[""Wireless Mouse"", ""Tablet""]",1399.4,{},109994,1,Asia +2024-07-18,49215,7800,"[""Charger"", ""Headphones""]",437.93,{},69125,0,Africa +2023-08-24,49216,2972,"[""Keyboard""]",2054.73,{},242185,0,Europe +2023-12-07,49217,4214,"[""Charger""]",2615.8,"{"""": ""29%""}",182736,0,North America +2023-01-02,49218,8895,"[""Charger"", ""Headphones"", ""Keyboard""]",1840.53,"{""promo"": ""17%""}",173764,1,Africa +2024-04-01,49219,1735,"[""Wireless Mouse""]",1011.39,"{""promo"": ""16%""}",143154,0,North America +2024-04-19,49220,8272,"[""Tablet"", ""Laptop"", ""Charger""]",2074.24,{},34920,1,Asia +2023-10-30,49221,3189,"[""Monitor"", ""Tablet"", ""Phone""]",2980.46,{},33804,0,North America +2023-07-15,49222,9064,"[""Monitor"", ""Keyboard""]",257.18,"{""promo"": ""12%""}",279984,1,North America +2024-09-22,49223,8380,"[""Headphones"", ""Tablet"", ""Laptop""]",649.64,{},202433,1,Europe +2024-12-20,49224,7580,"[""Phone"", ""Laptop"", ""Tablet""]",2016.1,{},153211,1,Europe +2024-07-19,49225,7998,"[""Monitor"", ""Phone"", ""Tablet""]",1832.17,{},84026,1,Africa +2023-02-04,49226,7962,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2259.05,"{""promo"": ""27%""}",136415,0,North America +2023-09-04,49227,7492,"[""Tablet"", ""Headphones""]",993.29,"{"""": ""5%""}",49485,1,Africa +2024-06-07,49228,1080,"[""Headphones"", ""Monitor"", ""Keyboard""]",722.27,"{"""": ""24%""}",226116,1,Africa +2023-03-20,49229,318,"[""Laptop""]",781.09,{},61348,0,South America +2023-07-14,49230,9331,"[""Tablet"", ""Headphones""]",256.69,"{""loyalty"": ""8%""}",147466,1,Asia +2024-09-16,49231,4844,"[""Keyboard""]",2772.05,"{""seasonal"": ""29%""}",227882,1,Europe +2023-06-29,49232,7476,"[""Headphones"", ""Wireless Mouse""]",470.04,{},124408,0,Asia +2024-02-29,49233,7280,"[""Phone""]",4637.18,{},292739,0,Asia +2023-04-19,49234,1938,"[""Charger"", ""Monitor""]",3855.73,{},83815,0,North America +2023-12-03,49235,2082,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",959.2,"{""promo"": ""30%""}",14492,1,South America +2024-09-12,49236,1039,"[""Keyboard""]",4142.85,"{""loyalty"": ""24%""}",267949,1,Africa +2024-04-04,49237,7977,"[""Tablet""]",2104.33,{},189352,1,Asia +2024-03-09,49238,8851,"[""Monitor"", ""Headphones"", ""Tablet""]",4900.97,"{""promo"": ""19%""}",93380,1,North America +2023-12-15,49239,2055,"[""Monitor""]",2036.79,"{""seasonal"": ""14%""}",103773,0,Africa +2024-07-06,49240,9889,"[""Headphones"", ""Laptop""]",1051.92,{},133249,1,Europe +2024-06-02,49241,4594,"[""Tablet""]",3911.59,{},173816,0,Africa +2023-05-21,49242,2794,"[""Monitor""]",419.52,{},139199,1,North America +2024-03-02,49243,8103,"[""Monitor"", ""Charger""]",4097.48,{},291639,0,North America +2023-07-30,49244,2857,"[""Monitor""]",4807.71,{},98058,0,Africa +2023-04-29,49245,2229,"[""Monitor"", ""Laptop""]",3064.1,"{""loyalty"": ""29%""}",258464,1,Europe +2024-04-18,49246,8801,"[""Laptop"", ""Tablet""]",3409.17,{},125921,1,Africa +2024-01-19,49247,1440,"[""Laptop""]",2774.07,"{""seasonal"": ""11%""}",142869,0,Africa +2023-11-30,49248,5506,"[""Tablet""]",1373.55,{},247271,1,Asia +2023-05-31,49249,7770,"[""Keyboard""]",1269.89,{},27791,1,Asia +2023-06-25,49250,8492,"[""Monitor""]",2493.49,"{""promo"": ""28%""}",39709,1,Europe +2023-06-19,49251,6618,"[""Keyboard"", ""Monitor"", ""Laptop""]",4169.02,{},2172,1,Europe +2024-09-17,49252,6246,"[""Wireless Mouse"", ""Keyboard""]",2984.41,{},90286,1,Asia +2023-09-25,49253,3537,"[""Headphones""]",3255.15,"{""loyalty"": ""21%""}",18287,1,Asia +2023-09-27,49254,1115,"[""Phone"", ""Tablet"", ""Keyboard""]",2612.85,{},82565,0,South America +2023-06-25,49255,6228,"[""Keyboard""]",2691.6,"{""seasonal"": ""6%""}",222611,0,South America +2023-01-31,49256,9043,"[""Headphones""]",1231.84,"{""promo"": ""22%""}",29568,1,Europe +2023-11-27,49257,3616,"[""Phone""]",1429.0,{},171908,1,Africa +2024-10-17,49258,5850,"[""Charger"", ""Phone""]",3381.98,{},142166,1,Africa +2024-12-16,49259,498,"[""Laptop"", ""Headphones"", ""Keyboard""]",3326.8,{},120030,1,Asia +2023-08-30,49260,1745,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2794.45,{},221028,1,South America +2023-01-04,49261,589,"[""Laptop""]",4030.19,"{""seasonal"": ""8%""}",170771,1,Europe +2024-11-03,49262,2337,"[""Phone"", ""Tablet"", ""Laptop""]",3874.93,{},162225,1,South America +2024-04-14,49263,5329,"[""Keyboard"", ""Charger""]",3499.68,"{""loyalty"": ""18%""}",217087,0,North America +2024-06-02,49264,2500,"[""Laptop"", ""Charger"", ""Tablet""]",2865.87,{},38886,1,Europe +2023-02-16,49265,7102,"[""Monitor"", ""Tablet""]",3097.3,"{""promo"": ""18%""}",42141,1,South America +2023-01-22,49266,5636,"[""Keyboard"", ""Monitor""]",2041.68,"{""loyalty"": ""9%""}",201469,1,North America +2024-04-16,49267,9331,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3395.56,"{""seasonal"": ""7%""}",60859,0,North America +2024-11-01,49268,1101,"[""Charger""]",3118.34,{},137314,1,Africa +2023-03-30,49269,2193,"[""Keyboard"", ""Monitor""]",4072.53,"{""promo"": ""13%""}",157458,1,Asia +2024-10-05,49270,6175,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",366.54,"{""seasonal"": ""8%""}",11831,1,Europe +2023-10-18,49271,7818,"[""Headphones"", ""Phone"", ""Tablet""]",4533.13,"{""seasonal"": ""12%""}",77392,0,South America +2023-06-15,49272,1399,"[""Monitor"", ""Charger""]",3214.01,{},8289,0,North America +2024-10-28,49273,8003,"[""Monitor"", ""Phone""]",1643.78,"{""loyalty"": ""23%""}",8122,1,Africa +2023-09-11,49274,2068,"[""Charger"", ""Keyboard"", ""Phone""]",1153.09,{},290483,1,South America +2024-03-08,49275,2353,"[""Tablet""]",3466.4,{},160230,1,South America +2023-09-21,49276,1615,"[""Phone""]",4789.49,"{""promo"": ""9%""}",50641,1,Europe +2023-01-07,49277,1568,"[""Charger"", ""Laptop"", ""Headphones""]",1577.81,"{""promo"": ""25%""}",108492,0,North America +2024-06-16,49278,2855,"[""Monitor"", ""Tablet"", ""Laptop""]",3714.9,{},187166,1,Europe +2023-11-20,49279,6760,"[""Tablet"", ""Wireless Mouse""]",774.03,{},265401,1,Europe +2023-05-15,49280,4591,"[""Monitor"", ""Wireless Mouse""]",1204.4,{},82839,1,Africa +2024-06-30,49281,5900,"[""Charger""]",3708.62,"{""promo"": ""13%""}",98949,1,Africa +2024-08-06,49282,9662,"[""Phone""]",2227.17,{},261680,1,Africa +2023-11-06,49283,7333,"[""Monitor""]",2100.28,{},32274,1,Europe +2023-07-22,49284,6292,"[""Phone"", ""Monitor""]",4425.01,{},204966,1,Africa +2023-07-18,49285,6843,"[""Headphones"", ""Phone"", ""Laptop""]",4382.97,{},118542,1,Europe +2023-06-21,49286,2911,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3991.74,{},72338,1,South America +2024-02-13,49287,9059,"[""Keyboard"", ""Phone""]",4264.6,"{""seasonal"": ""9%""}",82100,0,Europe +2023-12-27,49288,9266,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1495.48,{},56999,1,North America +2024-10-30,49289,7946,"[""Charger""]",4573.5,{},146357,0,North America +2023-06-07,49290,8550,"[""Phone"", ""Charger"", ""Monitor""]",210.26,{},30624,1,South America +2024-03-31,49291,917,"[""Charger"", ""Laptop""]",1421.63,"{""seasonal"": ""20%""}",185057,1,Europe +2024-05-09,49292,4861,"[""Monitor""]",406.45,{},10695,0,Europe +2024-03-26,49293,2107,"[""Phone"", ""Laptop"", ""Keyboard""]",2636.66,"{""promo"": ""13%""}",253653,1,Europe +2024-05-16,49294,3855,"[""Keyboard"", ""Tablet""]",4830.73,{},2927,1,North America +2024-03-13,49295,994,"[""Laptop""]",3692.19,{},223849,0,Africa +2023-01-02,49296,1386,"[""Keyboard"", ""Monitor"", ""Charger""]",2503.53,{},208536,1,Europe +2024-06-01,49297,396,"[""Wireless Mouse""]",4106.07,{},57687,1,Asia +2024-10-29,49298,3338,"[""Wireless Mouse""]",4325.08,"{"""": ""6%""}",235709,0,North America +2023-04-04,49299,1659,"[""Keyboard""]",895.75,"{""promo"": ""19%""}",123050,1,South America +2023-10-06,49300,951,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3717.62,{},157034,0,South America +2024-10-07,49301,7832,"[""Tablet""]",4708.51,{},22577,1,Europe +2023-08-27,49302,7149,"[""Wireless Mouse""]",4844.34,{},21240,0,South America +2024-02-18,49303,8047,"[""Charger"", ""Laptop"", ""Phone""]",2797.19,"{"""": ""21%""}",151946,0,North America +2023-06-22,49304,8728,"[""Wireless Mouse"", ""Headphones""]",3285.29,"{""seasonal"": ""23%""}",252855,1,Africa +2023-08-21,49305,494,"[""Charger""]",2458.96,"{"""": ""14%""}",81885,1,Europe +2024-06-27,49306,935,"[""Phone"", ""Monitor"", ""Headphones""]",2520.05,"{""loyalty"": ""30%""}",241832,1,Asia +2023-12-04,49307,5443,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4815.69,"{""seasonal"": ""15%""}",276925,0,North America +2024-07-02,49308,873,"[""Monitor"", ""Headphones"", ""Phone""]",4168.96,"{""seasonal"": ""28%""}",173767,0,Africa +2023-06-17,49309,7985,"[""Charger"", ""Keyboard"", ""Laptop""]",2594.55,"{"""": ""24%""}",262722,0,North America +2023-09-15,49310,9713,"[""Charger"", ""Monitor""]",2963.53,"{"""": ""18%""}",218390,0,North America +2023-05-26,49311,8687,"[""Charger"", ""Phone""]",3241.42,{},251564,1,North America +2023-12-17,49312,3347,"[""Wireless Mouse""]",2119.06,"{""loyalty"": ""25%""}",298661,1,North America +2024-07-12,49313,6532,"[""Monitor"", ""Laptop""]",1124.3,"{""seasonal"": ""30%""}",259214,0,North America +2024-01-15,49314,8368,"[""Tablet"", ""Monitor""]",4555.33,"{""seasonal"": ""20%""}",142343,0,Asia +2024-09-27,49315,3297,"[""Charger"", ""Monitor"", ""Headphones""]",2705.55,{},156153,0,North America +2024-01-13,49316,7921,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4257.16,{},241846,0,Africa +2023-11-24,49317,6471,"[""Laptop"", ""Tablet"", ""Phone""]",4722.06,{},2296,1,North America +2024-04-19,49318,1657,"[""Tablet""]",1472.49,{},46942,1,North America +2023-03-23,49319,6458,"[""Laptop"", ""Headphones""]",4388.34,"{""seasonal"": ""8%""}",174493,1,Africa +2023-12-16,49320,3729,"[""Phone""]",2242.35,{},260976,0,Asia +2024-09-20,49321,7064,"[""Keyboard"", ""Headphones"", ""Charger""]",2999.73,"{""promo"": ""25%""}",77415,1,North America +2024-11-01,49322,1890,"[""Keyboard"", ""Wireless Mouse""]",2346.08,{},264394,0,North America +2023-07-31,49323,8423,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2332.05,{},45021,0,Europe +2023-07-15,49324,250,"[""Laptop""]",1031.64,{},289083,0,Africa +2024-01-05,49325,5064,"[""Headphones""]",4123.61,"{""seasonal"": ""16%""}",197879,1,North America +2024-11-29,49326,3629,"[""Phone"", ""Tablet""]",2936.88,{},38555,1,South America +2023-08-02,49327,2334,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3649.52,{},242415,1,Asia +2024-10-11,49328,1643,"[""Tablet"", ""Monitor"", ""Phone""]",133.71,"{""promo"": ""26%""}",214761,1,Asia +2024-02-09,49329,2935,"[""Phone"", ""Tablet""]",3820.62,{},109726,1,Europe +2023-06-24,49330,7627,"[""Laptop""]",2936.78,{},238996,0,North America +2024-06-07,49331,4171,"[""Wireless Mouse""]",1023.68,"{""seasonal"": ""6%""}",43559,0,Africa +2024-05-14,49332,3166,"[""Phone"", ""Monitor"", ""Laptop""]",1741.16,"{""seasonal"": ""8%""}",90197,1,South America +2023-03-10,49333,6643,"[""Tablet"", ""Headphones"", ""Keyboard""]",570.52,{},199087,0,Africa +2023-04-17,49334,2088,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4281.79,{},126575,0,Asia +2024-02-15,49335,5056,"[""Keyboard"", ""Monitor"", ""Tablet""]",3364.59,{},72658,0,North America +2023-02-26,49336,9259,"[""Headphones""]",60.4,"{""loyalty"": ""24%""}",8939,1,Africa +2023-12-13,49337,7309,"[""Phone""]",1904.74,{},192492,1,Asia +2024-08-22,49338,1509,"[""Laptop""]",2384.29,{},279628,0,Africa +2023-11-24,49339,4585,"[""Tablet""]",846.99,"{""loyalty"": ""22%""}",266150,0,Asia +2024-11-10,49340,7510,"[""Monitor"", ""Phone""]",4523.08,"{""loyalty"": ""21%""}",146854,0,Asia +2023-08-27,49341,4457,"[""Keyboard""]",2996.36,"{""loyalty"": ""8%""}",111911,1,Europe +2024-03-29,49342,1596,"[""Keyboard"", ""Charger""]",1246.37,{},78088,0,Europe +2024-01-17,49343,2738,"[""Laptop""]",3205.68,"{"""": ""28%""}",220753,0,Asia +2023-11-15,49344,3953,"[""Laptop""]",3605.31,{},1310,0,Asia +2023-06-11,49345,8764,"[""Keyboard""]",4753.62,{},160359,0,Europe +2023-02-19,49346,7043,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",894.77,"{""seasonal"": ""8%""}",20924,1,North America +2024-07-13,49347,7854,"[""Monitor"", ""Wireless Mouse""]",2758.14,"{""promo"": ""26%""}",63861,1,South America +2024-11-14,49348,3773,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2618.87,{},103195,1,North America +2023-06-14,49349,855,"[""Wireless Mouse"", ""Charger""]",2743.82,"{""seasonal"": ""8%""}",181244,1,Asia +2024-03-17,49350,1566,"[""Headphones"", ""Tablet""]",4363.0,"{"""": ""10%""}",234599,0,Asia +2024-10-31,49351,1195,"[""Tablet"", ""Laptop""]",4643.7,"{"""": ""8%""}",252258,0,North America +2024-02-16,49352,7691,"[""Keyboard"", ""Monitor"", ""Headphones""]",2361.73,{},115304,0,Africa +2023-07-25,49353,4374,"[""Phone"", ""Charger""]",4303.86,"{""loyalty"": ""25%""}",6017,0,Africa +2024-03-14,49354,6612,"[""Headphones"", ""Wireless Mouse""]",2558.31,"{""loyalty"": ""9%""}",29182,1,Asia +2023-09-26,49355,4097,"[""Laptop"", ""Headphones""]",2726.05,"{""seasonal"": ""20%""}",98258,0,Europe +2023-11-01,49356,2178,"[""Charger"", ""Laptop"", ""Keyboard""]",1895.23,{},20751,0,Europe +2023-12-19,49357,6553,"[""Phone"", ""Keyboard"", ""Monitor""]",1155.05,"{""seasonal"": ""14%""}",292742,1,Asia +2024-11-23,49358,204,"[""Headphones"", ""Wireless Mouse""]",1295.15,"{""promo"": ""27%""}",178978,1,South America +2023-08-04,49359,3444,"[""Phone"", ""Laptop"", ""Charger""]",2972.85,"{""loyalty"": ""10%""}",77733,0,Africa +2024-12-06,49360,6552,"[""Tablet""]",3355.86,{},83171,0,South America +2024-10-29,49361,2342,"[""Laptop"", ""Headphones""]",4704.17,"{""promo"": ""24%""}",66523,0,Asia +2023-05-04,49362,7596,"[""Phone""]",4439.18,{},184671,1,Africa +2023-12-08,49363,8111,"[""Monitor""]",2803.98,{},173332,0,Africa +2023-08-17,49364,258,"[""Keyboard"", ""Tablet""]",3328.55,"{""loyalty"": ""8%""}",249236,1,Asia +2023-04-08,49365,3995,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",675.84,"{""loyalty"": ""28%""}",103020,0,South America +2023-04-11,49366,3047,"[""Laptop"", ""Keyboard""]",3639.55,{},176135,1,South America +2023-11-14,49367,4339,"[""Wireless Mouse"", ""Charger""]",1655.61,{},279032,1,South America +2024-05-06,49368,3246,"[""Keyboard""]",1977.1,{},167333,1,Africa +2023-01-06,49369,3370,"[""Tablet"", ""Headphones""]",1604.26,"{""seasonal"": ""22%""}",8572,0,Asia +2024-06-12,49370,5281,"[""Tablet""]",2997.02,{},296254,1,South America +2024-02-14,49371,2234,"[""Headphones""]",615.35,{},118387,1,South America +2024-04-08,49372,7020,"[""Charger"", ""Laptop""]",391.82,{},212399,1,North America +2024-08-01,49373,7739,"[""Monitor""]",4397.54,"{""promo"": ""17%""}",182494,0,Asia +2024-12-10,49374,5997,"[""Wireless Mouse"", ""Headphones""]",953.31,"{""loyalty"": ""12%""}",224781,1,Europe +2023-11-17,49375,1285,"[""Headphones""]",2194.73,{},252803,0,Asia +2024-12-04,49376,9366,"[""Laptop"", ""Keyboard"", ""Charger""]",3959.1,"{""seasonal"": ""6%""}",163450,0,Asia +2023-11-25,49377,6606,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2517.78,{},157321,1,Europe +2023-10-02,49378,3054,"[""Headphones"", ""Tablet"", ""Monitor""]",2025.82,"{""loyalty"": ""6%""}",209056,1,Asia +2024-05-04,49379,9474,"[""Charger"", ""Tablet"", ""Headphones""]",2514.12,{},43829,0,Asia +2024-11-30,49380,9596,"[""Wireless Mouse"", ""Headphones""]",546.33,"{""loyalty"": ""28%""}",114637,1,Asia +2024-01-29,49381,3559,"[""Charger""]",1613.54,{},42991,0,North America +2023-07-24,49382,1948,"[""Monitor""]",1986.47,"{""loyalty"": ""27%""}",191834,0,South America +2024-09-06,49383,2090,"[""Wireless Mouse"", ""Phone""]",2072.48,"{""seasonal"": ""13%""}",249807,0,Asia +2024-03-04,49384,8018,"[""Phone"", ""Charger""]",4611.19,"{""seasonal"": ""18%""}",25686,1,North America +2023-02-05,49385,852,"[""Monitor""]",4032.86,{},205508,1,Africa +2024-06-17,49386,661,"[""Phone"", ""Keyboard"", ""Headphones""]",4893.64,{},124176,0,Africa +2023-01-20,49387,7753,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3683.06,"{"""": ""27%""}",93977,1,South America +2023-07-28,49388,5318,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3281.49,{},201038,0,Asia +2023-02-07,49389,1273,"[""Headphones"", ""Tablet"", ""Keyboard""]",2738.68,"{"""": ""15%""}",191707,0,North America +2024-08-20,49390,1078,"[""Laptop""]",1287.86,"{""loyalty"": ""18%""}",283045,1,Africa +2024-01-09,49391,6218,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",639.52,{},168122,1,South America +2024-10-16,49392,9091,"[""Keyboard"", ""Headphones"", ""Tablet""]",327.58,{},271371,1,Asia +2024-05-17,49393,285,"[""Monitor"", ""Keyboard"", ""Phone""]",3491.87,{},108093,1,Africa +2024-11-18,49394,4562,"[""Wireless Mouse"", ""Charger""]",2738.72,"{"""": ""24%""}",262084,0,North America +2024-05-18,49395,2269,"[""Charger""]",1156.66,"{"""": ""13%""}",22737,0,South America +2024-02-10,49396,4557,"[""Charger"", ""Keyboard"", ""Headphones""]",1535.22,{},189912,1,Europe +2023-07-01,49397,3917,"[""Phone""]",4484.27,"{""promo"": ""20%""}",267132,1,Africa +2024-03-07,49398,2612,"[""Monitor"", ""Phone"", ""Headphones""]",1926.29,{},101406,1,North America +2023-02-19,49399,3228,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2531.38,{},49646,1,North America +2023-06-04,49400,8310,"[""Headphones""]",1054.83,"{""promo"": ""29%""}",19353,0,South America +2024-10-11,49401,3120,"[""Headphones"", ""Tablet""]",93.27,{},29019,0,Africa +2024-11-22,49402,2982,"[""Headphones"", ""Keyboard"", ""Phone""]",1370.77,{},99998,1,North America +2023-10-10,49403,101,"[""Keyboard""]",606.27,{},116132,1,North America +2023-04-16,49404,7006,"[""Headphones""]",1099.16,{},119498,1,South America +2023-08-21,49405,3489,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",895.57,"{""promo"": ""20%""}",145903,0,Asia +2023-03-27,49406,4834,"[""Laptop""]",4821.57,"{""promo"": ""29%""}",4921,0,Europe +2023-04-09,49407,7495,"[""Charger""]",2067.95,"{"""": ""6%""}",180967,1,South America +2023-01-18,49408,126,"[""Phone"", ""Keyboard""]",2975.82,"{""seasonal"": ""6%""}",279605,1,South America +2024-01-11,49409,3170,"[""Laptop"", ""Monitor""]",1247.58,{},129018,1,Africa +2023-05-26,49410,4895,"[""Keyboard"", ""Laptop""]",1122.97,"{""promo"": ""12%""}",202262,1,Africa +2024-08-17,49411,6165,"[""Headphones"", ""Tablet"", ""Charger""]",1350.55,"{""promo"": ""17%""}",100614,0,Asia +2023-11-25,49412,12,"[""Wireless Mouse"", ""Keyboard""]",1296.26,"{""loyalty"": ""21%""}",189073,1,Africa +2023-11-27,49413,496,"[""Laptop"", ""Wireless Mouse""]",3150.1,{},266218,1,Africa +2024-10-21,49414,9326,"[""Headphones"", ""Keyboard"", ""Charger""]",2172.55,"{""loyalty"": ""6%""}",265646,1,Africa +2024-06-15,49415,5793,"[""Headphones"", ""Keyboard""]",4534.98,{},292602,1,Africa +2023-10-11,49416,5728,"[""Keyboard""]",195.3,"{""seasonal"": ""6%""}",100990,0,Europe +2024-03-07,49417,7079,"[""Phone"", ""Tablet"", ""Charger""]",3452.46,{},295890,0,Africa +2024-12-12,49418,1965,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3618.81,{},182094,1,South America +2024-05-14,49419,847,"[""Charger"", ""Wireless Mouse""]",1607.14,"{""promo"": ""12%""}",41047,1,Europe +2023-11-13,49420,2569,"[""Tablet"", ""Headphones"", ""Monitor""]",3852.75,{},288825,1,North America +2023-06-07,49421,7711,"[""Wireless Mouse""]",297.95,"{"""": ""21%""}",3405,0,North America +2023-11-21,49422,3586,"[""Charger"", ""Monitor""]",4422.81,"{""seasonal"": ""11%""}",293488,0,Europe +2023-10-19,49423,9974,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3432.74,"{""promo"": ""21%""}",95099,1,Europe +2023-03-10,49424,8304,"[""Charger""]",3777.41,"{"""": ""5%""}",16180,1,Africa +2024-08-22,49425,5063,"[""Headphones""]",590.45,"{""loyalty"": ""12%""}",232052,1,Europe +2023-06-19,49426,4226,"[""Phone""]",4198.02,"{""loyalty"": ""7%""}",37190,0,Europe +2023-01-24,49427,1475,"[""Laptop""]",4997.01,{},53571,1,Europe +2023-10-18,49428,865,"[""Monitor"", ""Phone""]",4187.6,"{""promo"": ""18%""}",10138,0,Europe +2024-05-25,49429,5818,"[""Monitor"", ""Keyboard""]",2338.39,{},230282,0,South America +2024-09-04,49430,8863,"[""Keyboard"", ""Laptop""]",3972.79,"{""promo"": ""14%""}",137994,1,South America +2023-03-10,49431,5682,"[""Monitor"", ""Charger""]",108.82,"{"""": ""11%""}",232897,1,Africa +2023-08-17,49432,2061,"[""Keyboard"", ""Charger"", ""Phone""]",1237.96,"{""seasonal"": ""14%""}",294938,0,South America +2023-06-19,49433,7094,"[""Monitor""]",3915.04,"{""seasonal"": ""6%""}",258420,1,South America +2024-06-10,49434,6657,"[""Laptop"", ""Wireless Mouse""]",889.27,{},51190,1,Europe +2024-11-19,49435,286,"[""Headphones"", ""Laptop"", ""Keyboard""]",2743.3,{},62757,0,South America +2023-07-04,49436,9400,"[""Laptop"", ""Wireless Mouse""]",1139.13,"{""seasonal"": ""15%""}",113289,1,Asia +2023-12-03,49437,2649,"[""Monitor""]",1945.69,{},192570,1,North America +2024-05-05,49438,3496,"[""Monitor"", ""Phone""]",1767.97,{},118545,0,Asia +2024-03-31,49439,5751,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2777.98,{},245025,1,Asia +2024-10-08,49440,8994,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2187.98,"{"""": ""12%""}",284092,0,Europe +2024-01-08,49441,6094,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4890.0,{},104667,1,Asia +2024-03-28,49442,109,"[""Charger""]",3321.0,"{""seasonal"": ""16%""}",182650,1,Africa +2023-05-02,49443,9293,"[""Keyboard"", ""Laptop""]",3806.21,"{""seasonal"": ""9%""}",121426,1,Asia +2024-08-18,49444,2416,"[""Tablet"", ""Monitor"", ""Laptop""]",4954.23,{},105067,0,South America +2024-09-23,49445,8233,"[""Tablet"", ""Keyboard"", ""Charger""]",3951.82,{},74553,0,North America +2024-08-28,49446,9825,"[""Laptop""]",3417.43,"{"""": ""27%""}",222491,0,South America +2023-12-28,49447,2372,"[""Phone"", ""Monitor""]",984.4,{},57421,0,South America +2023-02-13,49448,960,"[""Wireless Mouse""]",2376.49,"{""loyalty"": ""29%""}",192346,1,North America +2023-03-01,49449,5588,"[""Laptop""]",52.63,"{""promo"": ""18%""}",24639,1,North America +2023-02-24,49450,9377,"[""Monitor"", ""Phone""]",4308.71,"{""loyalty"": ""12%""}",101009,1,North America +2023-03-03,49451,7420,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4439.77,{},6615,1,Asia +2023-11-30,49452,4080,"[""Monitor"", ""Headphones""]",4811.75,{},192566,0,Africa +2023-12-12,49453,9539,"[""Monitor"", ""Phone"", ""Keyboard""]",4811.78,"{""seasonal"": ""11%""}",55645,0,Asia +2024-06-26,49454,9561,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4637.62,"{""seasonal"": ""17%""}",200958,1,Europe +2024-05-31,49455,8501,"[""Keyboard""]",991.26,"{""seasonal"": ""7%""}",214541,0,North America +2024-08-01,49456,5953,"[""Monitor"", ""Headphones""]",2654.1,"{""seasonal"": ""25%""}",251434,0,Asia +2024-11-14,49457,5033,"[""Phone""]",4903.95,{},117119,0,Africa +2024-06-30,49458,7775,"[""Keyboard""]",1167.15,{},286927,1,Europe +2024-11-14,49459,8026,"[""Phone"", ""Monitor"", ""Charger""]",3826.07,"{""promo"": ""10%""}",106645,0,Asia +2024-11-01,49460,2249,"[""Monitor"", ""Keyboard"", ""Laptop""]",3769.49,"{""seasonal"": ""7%""}",225018,0,South America +2024-08-09,49461,3052,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3232.03,"{""seasonal"": ""7%""}",130309,1,North America +2024-12-22,49462,6550,"[""Phone"", ""Headphones""]",1154.69,"{""promo"": ""28%""}",180384,1,Africa +2023-03-26,49463,203,"[""Headphones"", ""Tablet""]",4012.53,{},155918,1,North America +2024-03-16,49464,2352,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3396.33,"{""seasonal"": ""29%""}",276363,1,South America +2023-01-22,49465,6554,"[""Keyboard"", ""Monitor""]",550.41,"{""seasonal"": ""18%""}",113721,0,North America +2023-09-26,49466,9417,"[""Wireless Mouse"", ""Charger""]",1424.8,"{""seasonal"": ""9%""}",204977,1,Africa +2024-01-02,49467,4026,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",833.74,{},190036,0,South America +2024-02-14,49468,7836,"[""Monitor""]",4756.41,"{""promo"": ""12%""}",170084,1,North America +2023-12-14,49469,9977,"[""Phone""]",938.76,{},126683,0,Asia +2023-01-25,49470,7208,"[""Charger""]",2248.59,"{""seasonal"": ""26%""}",171915,0,North America +2024-05-10,49471,8117,"[""Laptop""]",304.56,"{""promo"": ""24%""}",208822,0,North America +2024-12-13,49472,1685,"[""Charger"", ""Tablet"", ""Monitor""]",539.55,{},38309,1,Asia +2023-01-06,49473,7490,"[""Phone"", ""Keyboard"", ""Tablet""]",3484.11,"{"""": ""11%""}",220475,0,Europe +2024-12-03,49474,5179,"[""Headphones""]",1590.61,{},293542,1,Europe +2023-06-28,49475,8266,"[""Monitor"", ""Charger"", ""Headphones""]",3714.27,"{""loyalty"": ""30%""}",267957,1,Africa +2024-02-04,49476,898,"[""Phone""]",4614.37,{},167922,0,Africa +2024-03-06,49477,2135,"[""Phone"", ""Keyboard"", ""Charger""]",2050.55,{},69782,0,North America +2023-01-08,49478,6389,"[""Charger"", ""Monitor""]",1905.94,{},271644,1,Africa +2024-02-16,49479,5872,"[""Phone"", ""Monitor"", ""Keyboard""]",2659.01,{},53129,0,North America +2024-09-28,49480,6655,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1440.52,"{""loyalty"": ""14%""}",299799,0,South America +2023-09-08,49481,2757,"[""Laptop""]",1323.22,"{"""": ""8%""}",189803,0,Europe +2023-12-09,49482,4779,"[""Headphones"", ""Tablet"", ""Keyboard""]",1052.82,{},104550,1,South America +2024-07-18,49483,9862,"[""Wireless Mouse"", ""Monitor""]",3092.66,"{"""": ""19%""}",158028,1,Asia +2024-12-05,49484,7284,"[""Phone""]",1818.76,"{"""": ""24%""}",183942,1,South America +2024-12-19,49485,8887,"[""Charger"", ""Tablet"", ""Laptop""]",4701.25,"{""promo"": ""16%""}",47083,1,Europe +2024-10-28,49486,78,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1924.41,"{""seasonal"": ""16%""}",142186,0,Asia +2023-12-01,49487,3623,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1599.63,{},131215,0,South America +2024-03-30,49488,3997,"[""Laptop"", ""Charger"", ""Phone""]",4894.07,"{""promo"": ""6%""}",120163,0,North America +2023-05-17,49489,3911,"[""Keyboard"", ""Monitor""]",3389.54,{},163990,0,Europe +2024-11-07,49490,3546,"[""Charger"", ""Wireless Mouse""]",383.89,"{""loyalty"": ""12%""}",260445,0,Europe +2023-09-03,49491,9855,"[""Headphones""]",650.63,"{""promo"": ""30%""}",35368,0,Europe +2023-05-11,49492,4713,"[""Monitor"", ""Phone""]",3489.57,{},167787,1,South America +2024-08-20,49493,7067,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4413.2,{},7085,1,Africa +2023-02-03,49494,2358,"[""Monitor"", ""Laptop"", ""Charger""]",3690.97,{},67111,1,Asia +2024-10-22,49495,9132,"[""Phone"", ""Tablet""]",1173.65,{},55459,1,Asia +2024-03-17,49496,6108,"[""Monitor"", ""Headphones""]",2494.34,{},22633,0,Europe +2024-08-24,49497,314,"[""Laptop""]",2752.84,"{""promo"": ""19%""}",21499,1,South America +2024-04-24,49498,6822,"[""Phone"", ""Laptop"", ""Headphones""]",4699.83,"{""promo"": ""15%""}",38674,0,North America +2024-09-16,49499,3365,"[""Laptop"", ""Headphones"", ""Phone""]",546.3,{},59560,0,Europe +2023-02-26,49500,542,"[""Phone"", ""Charger"", ""Headphones""]",4409.5,{},281568,1,North America +2023-12-02,49501,6195,"[""Wireless Mouse"", ""Monitor""]",730.36,"{""promo"": ""30%""}",135370,1,Europe +2024-12-29,49502,4114,"[""Keyboard"", ""Charger""]",4260.57,{},232336,1,Asia +2023-05-27,49503,9663,"[""Tablet"", ""Monitor"", ""Keyboard""]",2940.42,{},55214,1,South America +2023-10-15,49504,4989,"[""Headphones"", ""Monitor""]",1862.57,{},127842,0,Asia +2023-10-22,49505,7839,"[""Laptop"", ""Charger""]",117.34,"{""promo"": ""27%""}",185663,1,Africa +2024-11-14,49506,5003,"[""Wireless Mouse"", ""Headphones""]",67.24,{},170540,1,Asia +2023-03-11,49507,8592,"[""Monitor""]",1157.2,"{""loyalty"": ""10%""}",163834,1,South America +2024-02-11,49508,8258,"[""Tablet"", ""Laptop"", ""Charger""]",2913.26,"{""seasonal"": ""25%""}",112621,1,Asia +2023-04-12,49509,6899,"[""Tablet"", ""Phone""]",2579.48,"{"""": ""21%""}",16475,1,South America +2023-12-03,49510,1199,"[""Keyboard""]",2455.91,"{""promo"": ""21%""}",189849,0,South America +2023-05-26,49511,324,"[""Keyboard""]",4479.26,"{"""": ""19%""}",198883,1,Europe +2024-01-19,49512,823,"[""Charger"", ""Headphones"", ""Keyboard""]",3806.51,{},61028,1,Europe +2024-04-11,49513,1552,"[""Keyboard"", ""Wireless Mouse""]",647.85,{},117796,0,North America +2024-03-17,49514,9522,"[""Charger"", ""Tablet"", ""Keyboard""]",2197.3,{},167124,0,Africa +2024-01-22,49515,4993,"[""Phone"", ""Charger"", ""Tablet""]",3521.57,{},230400,1,Africa +2023-07-23,49516,9419,"[""Laptop""]",476.31,{},39346,0,Asia +2024-09-08,49517,2789,"[""Laptop"", ""Tablet"", ""Charger""]",4874.7,"{""promo"": ""16%""}",253668,1,Africa +2023-08-05,49518,4530,"[""Headphones"", ""Monitor"", ""Charger""]",480.08,"{"""": ""7%""}",200432,0,North America +2023-03-05,49519,7728,"[""Wireless Mouse"", ""Tablet""]",2703.02,"{""promo"": ""20%""}",51071,1,Asia +2024-04-22,49520,9601,"[""Tablet"", ""Phone""]",4369.17,{},167080,0,Africa +2023-01-26,49521,520,"[""Tablet""]",1504.0,"{""promo"": ""12%""}",6366,0,Africa +2024-11-06,49522,4854,"[""Wireless Mouse"", ""Phone""]",235.21,{},70021,1,South America +2023-03-14,49523,5133,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",318.09,{},14092,0,Europe +2023-01-10,49524,9784,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4196.87,{},203605,0,North America +2024-01-18,49525,1053,"[""Wireless Mouse""]",101.57,{},236305,1,South America +2024-08-17,49526,1617,"[""Charger"", ""Laptop"", ""Tablet""]",4958.12,{},62591,1,Africa +2023-01-31,49527,5405,"[""Phone""]",3339.97,{},155433,0,Europe +2024-10-15,49528,5295,"[""Headphones"", ""Tablet"", ""Phone""]",2410.26,{},1882,0,Europe +2023-11-12,49529,3489,"[""Headphones"", ""Phone"", ""Tablet""]",3588.03,"{""seasonal"": ""7%""}",30099,0,North America +2023-03-04,49530,6508,"[""Charger"", ""Phone"", ""Tablet""]",1332.16,{},148648,1,Africa +2024-02-12,49531,1586,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1298.03,"{""loyalty"": ""6%""}",144212,1,North America +2024-04-12,49532,9284,"[""Headphones""]",965.19,"{""seasonal"": ""25%""}",296648,1,Africa +2024-02-05,49533,8594,"[""Monitor""]",1931.53,{},209987,1,Europe +2023-07-10,49534,1312,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3020.99,{},296115,0,Europe +2023-11-15,49535,8508,"[""Phone""]",363.21,"{""seasonal"": ""20%""}",1651,1,South America +2024-08-22,49536,76,"[""Tablet"", ""Headphones""]",2253.42,{},272036,0,North America +2023-07-01,49537,8758,"[""Headphones"", ""Keyboard""]",3056.85,"{""seasonal"": ""5%""}",173886,1,Asia +2023-08-07,49538,7096,"[""Charger"", ""Wireless Mouse""]",3700.46,{},239211,0,Asia +2023-11-04,49539,1484,"[""Keyboard"", ""Monitor""]",1672.84,"{"""": ""5%""}",110383,1,Asia +2024-12-08,49540,9684,"[""Keyboard"", ""Monitor"", ""Phone""]",1065.76,"{""promo"": ""20%""}",199928,0,Africa +2024-09-28,49541,2214,"[""Wireless Mouse"", ""Keyboard""]",1778.56,{},252126,0,South America +2024-12-18,49542,9516,"[""Tablet"", ""Phone""]",3687.46,{},94651,1,Europe +2023-12-03,49543,7730,"[""Tablet"", ""Headphones""]",4770.1,"{""promo"": ""15%""}",214566,0,Asia +2023-01-26,49544,9920,"[""Tablet"", ""Monitor""]",82.43,{},63575,1,Africa +2024-08-15,49545,7400,"[""Tablet"", ""Wireless Mouse""]",4922.25,"{""loyalty"": ""17%""}",106143,0,North America +2024-03-05,49546,7681,"[""Laptop""]",4006.92,"{"""": ""15%""}",58150,1,Asia +2024-09-19,49547,7068,"[""Monitor""]",4218.42,{},138001,1,North America +2024-02-01,49548,5958,"[""Wireless Mouse"", ""Monitor""]",2815.21,"{""loyalty"": ""12%""}",19446,0,Asia +2024-03-20,49549,7765,"[""Keyboard"", ""Monitor""]",1429.63,"{""promo"": ""10%""}",55512,0,Africa +2024-09-17,49550,1720,"[""Charger"", ""Monitor""]",2383.48,{},222845,1,Africa +2024-10-02,49551,1725,"[""Laptop"", ""Keyboard"", ""Headphones""]",2936.81,"{"""": ""20%""}",160154,0,South America +2023-04-29,49552,1507,"[""Monitor""]",2755.11,"{""seasonal"": ""13%""}",135122,0,North America +2024-01-31,49553,9851,"[""Tablet"", ""Phone"", ""Headphones""]",576.47,{},74079,1,South America +2024-06-15,49554,4831,"[""Tablet""]",1846.28,"{""promo"": ""26%""}",211789,1,Africa +2024-02-10,49555,9909,"[""Keyboard"", ""Tablet"", ""Charger""]",3729.23,"{""seasonal"": ""26%""}",173640,1,Europe +2024-03-17,49556,9175,"[""Laptop""]",4620.76,"{"""": ""11%""}",193983,1,Asia +2023-08-21,49557,5390,"[""Tablet""]",3567.7,{},277666,0,Asia +2024-08-13,49558,6346,"[""Keyboard"", ""Laptop""]",3248.23,"{""seasonal"": ""13%""}",181334,0,Europe +2023-12-08,49559,8418,"[""Phone""]",1517.72,"{""loyalty"": ""7%""}",134386,0,Africa +2024-12-13,49560,9157,"[""Headphones"", ""Charger""]",1500.09,"{"""": ""8%""}",71050,1,South America +2023-04-10,49561,4948,"[""Phone""]",3583.92,"{""loyalty"": ""24%""}",71773,0,Asia +2024-02-08,49562,1578,"[""Monitor"", ""Tablet""]",1618.92,{},29726,1,South America +2023-11-04,49563,5408,"[""Keyboard""]",4524.34,{},271259,0,Africa +2024-11-24,49564,5681,"[""Laptop"", ""Tablet"", ""Phone""]",4418.25,"{""loyalty"": ""21%""}",137847,0,Asia +2024-09-11,49565,272,"[""Charger"", ""Headphones""]",3604.0,"{""seasonal"": ""9%""}",275662,0,Africa +2024-05-25,49566,7871,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",688.41,"{""seasonal"": ""11%""}",180131,0,North America +2023-11-18,49567,3800,"[""Tablet"", ""Monitor""]",3755.43,{},65858,1,Europe +2024-07-05,49568,8642,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3062.52,"{"""": ""25%""}",40594,0,Europe +2024-07-21,49569,3478,"[""Tablet"", ""Phone"", ""Charger""]",4246.5,"{""seasonal"": ""7%""}",116711,1,Africa +2023-09-21,49570,9158,"[""Headphones"", ""Phone""]",4183.53,{},105160,0,Europe +2023-08-25,49571,4856,"[""Keyboard""]",776.67,{},63899,0,North America +2024-07-18,49572,230,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2826.99,{},65092,0,Africa +2024-12-18,49573,7219,"[""Headphones""]",4792.37,{},105304,0,Africa +2023-08-15,49574,2799,"[""Headphones""]",957.38,{},206492,0,Europe +2024-03-31,49575,8679,"[""Laptop"", ""Headphones""]",2025.09,"{""promo"": ""29%""}",45469,1,North America +2023-07-17,49576,6248,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",333.25,"{""loyalty"": ""17%""}",115079,0,South America +2024-05-01,49577,7164,"[""Phone"", ""Monitor"", ""Tablet""]",4589.83,{},281086,1,Asia +2024-07-05,49578,5762,"[""Monitor"", ""Laptop""]",2386.73,"{"""": ""14%""}",138391,0,Africa +2024-01-27,49579,985,"[""Keyboard"", ""Laptop"", ""Phone""]",594.83,{},150369,1,Africa +2023-03-21,49580,3907,"[""Tablet"", ""Laptop""]",4651.58,{},189414,1,Africa +2023-05-03,49581,866,"[""Monitor"", ""Tablet"", ""Keyboard""]",497.44,"{""promo"": ""8%""}",54286,1,Asia +2024-11-30,49582,4932,"[""Headphones"", ""Keyboard""]",3053.12,"{""seasonal"": ""14%""}",24525,1,Africa +2023-02-03,49583,579,"[""Charger""]",1926.87,"{""promo"": ""13%""}",107968,0,North America +2023-07-31,49584,9420,"[""Charger"", ""Phone"", ""Laptop""]",1557.3,{},282551,1,Africa +2024-08-15,49585,728,"[""Wireless Mouse"", ""Tablet""]",1509.68,"{"""": ""29%""}",122076,1,North America +2023-06-17,49586,6460,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2926.68,"{""loyalty"": ""23%""}",20349,0,Asia +2023-12-20,49587,8368,"[""Headphones""]",368.83,"{""seasonal"": ""9%""}",205728,1,South America +2023-06-05,49588,2916,"[""Monitor"", ""Headphones""]",2964.03,{},3295,1,Asia +2024-07-14,49589,5144,"[""Monitor""]",1696.29,{},285058,0,Asia +2023-07-24,49590,570,"[""Charger"", ""Wireless Mouse""]",871.36,"{""promo"": ""11%""}",261951,1,Europe +2023-03-04,49591,4363,"[""Monitor"", ""Charger""]",246.63,"{""loyalty"": ""15%""}",179937,1,Africa +2023-05-09,49592,6866,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2664.68,"{""promo"": ""23%""}",207635,1,South America +2023-02-10,49593,3976,"[""Wireless Mouse"", ""Tablet""]",3473.07,"{""seasonal"": ""9%""}",228270,1,Europe +2023-12-20,49594,3923,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4234.9,{},123004,0,South America +2023-04-03,49595,551,"[""Keyboard"", ""Charger"", ""Headphones""]",4098.53,{},284364,1,Africa +2024-02-22,49596,4336,"[""Phone""]",2905.81,"{""loyalty"": ""18%""}",281521,0,North America +2023-09-02,49597,9240,"[""Laptop"", ""Monitor""]",2369.15,{},75953,1,Europe +2023-06-24,49598,8295,"[""Laptop"", ""Headphones"", ""Phone""]",699.65,{},65087,0,Africa +2023-11-07,49599,1798,"[""Tablet"", ""Keyboard""]",1365.56,"{"""": ""7%""}",267929,1,North America +2024-09-06,49600,1692,"[""Keyboard""]",572.3,"{""promo"": ""21%""}",129849,0,Africa +2023-05-08,49601,4841,"[""Monitor"", ""Wireless Mouse""]",909.83,"{""seasonal"": ""17%""}",270024,1,Europe +2023-03-27,49602,1725,"[""Tablet"", ""Monitor"", ""Phone""]",1023.94,{},208839,1,Asia +2023-08-17,49603,3361,"[""Wireless Mouse"", ""Laptop""]",773.31,{},246900,1,South America +2023-02-27,49604,4301,"[""Keyboard""]",4109.07,"{""loyalty"": ""29%""}",231201,0,Asia +2023-02-22,49605,2570,"[""Phone""]",131.57,{},268610,1,South America +2024-09-13,49606,8252,"[""Phone"", ""Monitor"", ""Headphones""]",213.61,{},63671,1,Africa +2023-08-17,49607,5957,"[""Headphones"", ""Charger"", ""Tablet""]",4350.67,"{""promo"": ""23%""}",245059,0,Asia +2024-08-27,49608,378,"[""Wireless Mouse""]",3547.11,"{""promo"": ""26%""}",197115,1,North America +2023-11-22,49609,1079,"[""Phone"", ""Tablet""]",1564.45,"{""seasonal"": ""30%""}",159840,0,Asia +2024-09-01,49610,7678,"[""Charger""]",580.03,{},47964,0,North America +2023-02-22,49611,3372,"[""Wireless Mouse""]",2684.2,"{""loyalty"": ""10%""}",163344,1,Asia +2024-09-04,49612,8735,"[""Wireless Mouse"", ""Phone""]",4917.53,{},255396,1,North America +2023-06-02,49613,5369,"[""Tablet"", ""Charger""]",3986.91,"{"""": ""20%""}",94924,0,Asia +2024-07-07,49614,949,"[""Phone"", ""Wireless Mouse""]",703.25,"{""seasonal"": ""8%""}",237365,0,South America +2024-08-12,49615,4222,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4929.54,"{""promo"": ""27%""}",10061,0,Asia +2023-07-30,49616,3622,"[""Monitor""]",1494.03,"{""loyalty"": ""18%""}",215499,1,North America +2024-01-28,49617,3869,"[""Headphones""]",1280.33,"{""loyalty"": ""12%""}",13736,1,Africa +2024-09-17,49618,253,"[""Charger""]",1066.85,"{""seasonal"": ""8%""}",79368,1,North America +2024-05-29,49619,4297,"[""Laptop"", ""Phone""]",1238.89,{},254207,0,North America +2024-05-31,49620,9647,"[""Wireless Mouse""]",773.83,"{""loyalty"": ""16%""}",231625,1,Africa +2023-10-31,49621,1695,"[""Tablet"", ""Charger"", ""Headphones""]",4059.48,"{""promo"": ""18%""}",159780,1,Africa +2023-07-12,49622,6663,"[""Laptop""]",2935.85,{},32424,1,North America +2023-10-17,49623,5303,"[""Tablet"", ""Headphones""]",3393.02,{},296751,1,Africa +2024-02-02,49624,9333,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1385.65,{},75431,0,South America +2023-03-05,49625,4895,"[""Laptop""]",2638.47,{},228178,0,Europe +2023-05-28,49626,6577,"[""Monitor"", ""Headphones""]",873.72,"{""seasonal"": ""24%""}",58057,0,Asia +2024-04-26,49627,5911,"[""Wireless Mouse"", ""Laptop""]",3101.48,"{"""": ""19%""}",284248,1,Europe +2024-10-22,49628,827,"[""Headphones"", ""Laptop""]",2552.53,{},106343,0,North America +2023-11-16,49629,4796,"[""Monitor"", ""Phone"", ""Charger""]",2735.18,{},229663,1,North America +2023-01-25,49630,8403,"[""Laptop"", ""Charger""]",3007.67,{},100242,1,Africa +2023-01-13,49631,1024,"[""Charger"", ""Tablet"", ""Headphones""]",4111.22,{},161868,0,Europe +2024-11-15,49632,1930,"[""Charger""]",3452.55,{},125427,1,North America +2024-06-15,49633,4698,"[""Laptop"", ""Keyboard"", ""Charger""]",3195.9,{},150745,1,Europe +2024-03-01,49634,6996,"[""Laptop""]",2708.33,{},256646,1,North America +2024-04-22,49635,3667,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1014.52,"{""promo"": ""5%""}",105404,0,Asia +2023-06-22,49636,2976,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2925.44,{},246712,1,North America +2024-06-14,49637,893,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2388.08,"{""seasonal"": ""5%""}",99760,0,Asia +2024-04-02,49638,6789,"[""Laptop""]",2358.18,"{""promo"": ""25%""}",131584,1,North America +2024-10-22,49639,2090,"[""Headphones""]",3946.89,"{"""": ""24%""}",62339,0,South America +2024-04-11,49640,6362,"[""Monitor"", ""Keyboard""]",3713.33,"{""loyalty"": ""15%""}",165720,1,Asia +2024-07-10,49641,1294,"[""Headphones"", ""Charger""]",2305.62,{},90484,0,Europe +2024-11-01,49642,6703,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1038.27,{},231283,0,Europe +2023-10-18,49643,3606,"[""Laptop"", ""Keyboard"", ""Charger""]",4066.7,"{"""": ""9%""}",215971,1,Africa +2024-12-04,49644,8021,"[""Keyboard"", ""Tablet"", ""Laptop""]",4325.3,"{""loyalty"": ""9%""}",77388,1,Asia +2024-07-05,49645,8232,"[""Tablet"", ""Charger""]",1308.61,{},277270,0,South America +2023-05-06,49646,2315,"[""Tablet""]",2871.65,{},74706,1,North America +2023-05-11,49647,2387,"[""Monitor"", ""Charger""]",4050.0,"{""seasonal"": ""8%""}",99940,1,Europe +2023-05-06,49648,9382,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4765.97,"{""promo"": ""15%""}",7907,0,North America +2024-02-18,49649,5221,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4554.84,{},159714,1,South America +2024-11-11,49650,4638,"[""Monitor"", ""Charger"", ""Laptop""]",3056.16,"{""loyalty"": ""13%""}",235755,1,North America +2024-11-24,49651,9822,"[""Phone"", ""Laptop"", ""Tablet""]",3780.05,{},289445,0,Asia +2023-08-14,49652,2132,"[""Laptop"", ""Tablet""]",2386.95,"{"""": ""23%""}",79534,1,South America +2024-08-14,49653,1553,"[""Monitor"", ""Phone"", ""Laptop""]",1215.02,"{""promo"": ""18%""}",84182,1,North America +2023-11-06,49654,6136,"[""Laptop""]",3644.72,"{""loyalty"": ""5%""}",150437,1,North America +2023-04-22,49655,7114,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2758.31,"{""loyalty"": ""5%""}",167923,0,Africa +2023-01-14,49656,8871,"[""Tablet"", ""Keyboard"", ""Charger""]",3733.28,"{""promo"": ""18%""}",164023,1,North America +2024-04-08,49657,2550,"[""Monitor""]",4034.42,"{""promo"": ""28%""}",146479,0,Asia +2023-06-27,49658,3056,"[""Wireless Mouse""]",837.06,"{""loyalty"": ""22%""}",60008,0,North America +2024-12-29,49659,1984,"[""Tablet"", ""Phone"", ""Keyboard""]",85.97,"{""loyalty"": ""10%""}",57476,1,Africa +2023-02-03,49660,7903,"[""Wireless Mouse"", ""Charger""]",2665.22,{},27504,1,Africa +2024-03-22,49661,9902,"[""Phone"", ""Monitor""]",610.06,{},283452,1,North America +2024-02-16,49662,905,"[""Tablet"", ""Monitor""]",4596.95,"{""seasonal"": ""26%""}",185949,0,Africa +2024-03-01,49663,9806,"[""Laptop""]",568.79,"{"""": ""8%""}",59474,1,Europe +2024-10-14,49664,387,"[""Phone"", ""Headphones"", ""Charger""]",1769.09,{},111680,1,Europe +2023-12-11,49665,1895,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3469.16,{},288018,0,Europe +2024-02-25,49666,4553,"[""Laptop"", ""Monitor"", ""Tablet""]",4567.21,{},179111,1,Africa +2023-05-24,49667,8901,"[""Laptop""]",1036.11,{},87939,0,South America +2023-11-04,49668,4248,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2384.87,{},166071,0,Asia +2023-12-13,49669,1638,"[""Wireless Mouse"", ""Charger""]",472.38,{},39265,1,Asia +2023-11-04,49670,4761,"[""Laptop"", ""Monitor"", ""Headphones""]",3149.51,"{""seasonal"": ""10%""}",192670,0,North America +2023-11-03,49671,5414,"[""Phone"", ""Charger"", ""Monitor""]",2082.94,{},176902,1,Europe +2023-05-22,49672,3409,"[""Headphones""]",1503.27,{},247617,0,Europe +2024-05-13,49673,3653,"[""Phone"", ""Charger""]",984.61,{},202664,1,Europe +2023-04-22,49674,1763,"[""Laptop"", ""Phone"", ""Keyboard""]",4472.22,"{""promo"": ""14%""}",262642,0,Africa +2024-01-11,49675,259,"[""Laptop"", ""Charger""]",4883.88,{},31706,1,North America +2023-04-17,49676,3382,"[""Laptop""]",1390.23,"{""promo"": ""9%""}",76846,0,Africa +2024-05-05,49677,2704,"[""Tablet"", ""Charger""]",1167.05,{},116313,1,Europe +2023-06-23,49678,1761,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",377.96,{},118669,0,Asia +2024-02-06,49679,7953,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4187.04,{},70918,0,Africa +2024-03-01,49680,3406,"[""Phone"", ""Monitor""]",4521.74,"{""promo"": ""28%""}",100497,0,Asia +2024-05-06,49681,8439,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3256.73,{},125068,0,Europe +2024-03-23,49682,9187,"[""Phone""]",2544.24,"{""seasonal"": ""17%""}",35501,0,Africa +2024-03-15,49683,8228,"[""Tablet"", ""Phone"", ""Monitor""]",2306.27,"{""seasonal"": ""21%""}",239489,1,North America +2024-06-01,49684,4561,"[""Laptop"", ""Headphones""]",693.0,{},134451,1,Europe +2023-05-12,49685,3790,"[""Monitor""]",387.51,{},95446,1,North America +2024-08-18,49686,3952,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4484.2,{},59735,0,South America +2024-02-13,49687,5161,"[""Laptop"", ""Keyboard"", ""Charger""]",1765.8,"{"""": ""24%""}",166333,0,Asia +2024-01-15,49688,7810,"[""Phone""]",1648.91,{},234958,0,South America +2024-06-16,49689,638,"[""Phone"", ""Keyboard""]",711.46,"{""loyalty"": ""15%""}",278457,1,Africa +2023-12-31,49690,8064,"[""Charger""]",2264.25,"{""seasonal"": ""9%""}",84838,1,Asia +2023-04-18,49691,7347,"[""Headphones"", ""Keyboard"", ""Tablet""]",1723.66,{},53702,0,South America +2024-09-01,49692,1707,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1914.63,"{"""": ""25%""}",184198,1,North America +2023-01-18,49693,6047,"[""Wireless Mouse"", ""Tablet""]",4178.23,{},23256,1,Africa +2023-04-17,49694,9259,"[""Charger"", ""Tablet"", ""Headphones""]",1546.37,"{""seasonal"": ""27%""}",285708,0,Asia +2024-03-09,49695,7859,"[""Keyboard"", ""Laptop"", ""Headphones""]",1392.63,{},292316,1,Asia +2023-02-04,49696,7981,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3383.76,{},50687,1,Africa +2023-06-29,49697,1373,"[""Keyboard"", ""Phone"", ""Tablet""]",135.56,{},245054,1,South America +2024-02-11,49698,7571,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3467.34,{},107735,0,Africa +2024-01-06,49699,872,"[""Keyboard""]",2663.42,"{"""": ""17%""}",112085,1,North America +2024-01-03,49700,9909,"[""Charger"", ""Monitor""]",2318.07,"{""promo"": ""19%""}",287445,1,South America +2023-03-11,49701,7868,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2401.82,"{"""": ""11%""}",219607,1,Asia +2023-11-08,49702,1217,"[""Laptop"", ""Keyboard"", ""Monitor""]",1285.26,"{""promo"": ""29%""}",186172,0,North America +2023-02-06,49703,8123,"[""Headphones"", ""Charger"", ""Keyboard""]",3339.73,"{"""": ""27%""}",168585,1,Europe +2023-06-05,49704,704,"[""Phone"", ""Monitor""]",2964.44,{},4519,0,Asia +2024-02-04,49705,742,"[""Headphones"", ""Tablet""]",293.23,"{""loyalty"": ""23%""}",261726,0,South America +2023-03-30,49706,1835,"[""Monitor""]",2954.95,{},296766,0,Africa +2024-09-03,49707,2447,"[""Laptop""]",1213.08,"{"""": ""5%""}",141047,1,South America +2024-09-28,49708,193,"[""Headphones"", ""Keyboard"", ""Charger""]",268.84,{},67318,1,Africa +2023-06-01,49709,8488,"[""Laptop"", ""Charger"", ""Headphones""]",1652.73,"{""seasonal"": ""14%""}",60044,0,South America +2024-08-06,49710,4724,"[""Tablet"", ""Laptop""]",2132.1,{},182258,1,Asia +2023-11-10,49711,3570,"[""Tablet""]",596.71,{},156982,0,Asia +2024-07-18,49712,4213,"[""Headphones"", ""Tablet""]",253.33,"{""loyalty"": ""17%""}",24559,1,Asia +2024-01-05,49713,1371,"[""Wireless Mouse""]",4087.77,"{"""": ""9%""}",52138,1,Europe +2023-10-07,49714,2742,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1557.33,"{""loyalty"": ""20%""}",102782,1,South America +2023-06-25,49715,9404,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",425.46,{},89396,0,Europe +2024-08-16,49716,4544,"[""Tablet""]",2667.99,"{""seasonal"": ""7%""}",195124,1,Africa +2023-08-25,49717,8018,"[""Keyboard""]",1281.41,{},179477,1,North America +2024-10-25,49718,1308,"[""Headphones"", ""Laptop""]",4335.01,"{"""": ""5%""}",91838,1,Asia +2023-03-26,49719,7124,"[""Headphones"", ""Monitor""]",245.26,"{""seasonal"": ""21%""}",3865,0,Europe +2023-05-08,49720,6647,"[""Monitor""]",583.95,"{""loyalty"": ""11%""}",197539,0,Europe +2023-02-05,49721,6265,"[""Monitor""]",3156.07,{},215655,0,North America +2024-09-18,49722,5445,"[""Monitor"", ""Charger"", ""Laptop""]",4199.36,{},12472,1,Europe +2024-06-05,49723,9587,"[""Headphones""]",710.48,"{"""": ""29%""}",267776,1,South America +2024-04-24,49724,534,"[""Phone"", ""Laptop"", ""Tablet""]",2106.9,{},209918,1,South America +2024-11-28,49725,4257,"[""Headphones"", ""Keyboard""]",473.36,"{"""": ""25%""}",33315,0,Africa +2024-07-03,49726,6914,"[""Charger"", ""Keyboard"", ""Laptop""]",3596.93,{},264259,0,Asia +2024-07-09,49727,3540,"[""Laptop""]",711.82,"{""seasonal"": ""24%""}",278209,1,Africa +2024-04-06,49728,2530,"[""Tablet""]",2997.56,"{"""": ""29%""}",157763,0,South America +2023-02-04,49729,3547,"[""Keyboard""]",805.34,"{""promo"": ""24%""}",196811,1,North America +2023-10-11,49730,4048,"[""Laptop""]",58.58,"{""promo"": ""17%""}",126158,1,Asia +2024-04-11,49731,8063,"[""Monitor"", ""Keyboard""]",3922.82,"{""loyalty"": ""23%""}",123573,0,Africa +2024-11-30,49732,602,"[""Keyboard""]",124.28,{},219979,1,Europe +2023-10-10,49733,6026,"[""Phone""]",4086.41,"{"""": ""17%""}",149645,1,Asia +2024-01-07,49734,4965,"[""Charger""]",1690.35,"{"""": ""23%""}",4679,1,Asia +2024-10-11,49735,8342,"[""Wireless Mouse"", ""Headphones""]",4279.61,{},42322,1,North America +2024-02-04,49736,1269,"[""Charger""]",1532.6,"{""loyalty"": ""13%""}",242032,0,Africa +2024-05-22,49737,5327,"[""Tablet"", ""Phone""]",2857.27,"{""seasonal"": ""29%""}",35277,1,Asia +2024-08-12,49738,2028,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",705.76,{},152812,0,Asia +2023-03-29,49739,7372,"[""Tablet""]",3336.84,{},121499,0,Asia +2024-10-15,49740,6147,"[""Headphones""]",873.91,"{"""": ""16%""}",182732,0,Africa +2023-07-12,49741,9742,"[""Laptop"", ""Headphones"", ""Tablet""]",130.15,"{""promo"": ""13%""}",273377,1,Asia +2023-10-25,49742,9054,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4076.2,{},37145,0,Asia +2023-10-15,49743,2,"[""Wireless Mouse""]",4057.93,"{"""": ""7%""}",115974,0,Europe +2023-03-04,49744,4851,"[""Monitor""]",3567.25,"{"""": ""9%""}",133762,0,South America +2023-11-05,49745,5617,"[""Monitor"", ""Laptop""]",2306.28,{},268016,0,North America +2023-07-19,49746,4601,"[""Phone""]",4217.01,"{""promo"": ""30%""}",47322,0,South America +2024-09-17,49747,9679,"[""Laptop"", ""Wireless Mouse""]",2563.64,{},285874,0,North America +2024-05-04,49748,8650,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4687.39,"{""loyalty"": ""15%""}",83629,1,Asia +2024-03-25,49749,9915,"[""Monitor""]",4381.97,{},172218,1,Europe +2024-02-05,49750,4415,"[""Monitor"", ""Headphones"", ""Charger""]",1817.15,"{""seasonal"": ""27%""}",58994,1,Africa +2024-03-22,49751,2656,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4983.04,"{"""": ""19%""}",213767,1,South America +2023-02-27,49752,9835,"[""Phone""]",820.73,{},270271,0,Asia +2024-11-19,49753,332,"[""Phone"", ""Wireless Mouse""]",1034.08,{},252835,0,South America +2023-08-24,49754,755,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1182.53,"{""promo"": ""5%""}",62915,0,Asia +2023-07-23,49755,9928,"[""Tablet"", ""Headphones"", ""Monitor""]",1791.43,{},225329,1,Asia +2023-07-24,49756,4881,"[""Charger"", ""Phone""]",3668.16,"{""loyalty"": ""26%""}",69034,0,Europe +2024-12-17,49757,9006,"[""Laptop"", ""Wireless Mouse""]",138.12,"{""promo"": ""29%""}",173053,0,Asia +2024-03-08,49758,6366,"[""Headphones""]",4024.09,{},256343,1,Africa +2023-05-18,49759,7293,"[""Wireless Mouse""]",4776.69,"{""seasonal"": ""8%""}",64160,0,North America +2023-06-30,49760,4236,"[""Monitor""]",4989.05,{},51755,1,North America +2024-04-27,49761,5758,"[""Keyboard""]",772.49,"{""seasonal"": ""13%""}",298864,0,Europe +2024-10-16,49762,4682,"[""Keyboard"", ""Charger"", ""Tablet""]",4070.53,"{""loyalty"": ""17%""}",5487,1,South America +2024-03-11,49763,2049,"[""Keyboard""]",2211.59,{},160655,0,Asia +2023-02-06,49764,7036,"[""Headphones"", ""Keyboard"", ""Phone""]",4409.98,{},227548,0,Asia +2024-05-16,49765,8539,"[""Wireless Mouse""]",3880.6,"{"""": ""8%""}",223159,0,Europe +2023-03-07,49766,4819,"[""Laptop"", ""Headphones""]",3873.38,{},271093,0,North America +2023-09-17,49767,1203,"[""Charger"", ""Headphones""]",4377.22,"{""seasonal"": ""29%""}",46353,0,South America +2023-09-28,49768,468,"[""Phone""]",3768.96,"{""loyalty"": ""27%""}",76797,0,South America +2023-08-01,49769,1799,"[""Keyboard"", ""Laptop"", ""Phone""]",4456.79,"{""promo"": ""25%""}",212552,1,South America +2023-01-17,49770,6573,"[""Monitor"", ""Charger""]",1992.53,{},23809,1,South America +2023-08-01,49771,8415,"[""Phone"", ""Headphones"", ""Charger""]",1593.19,"{""loyalty"": ""26%""}",106093,1,South America +2023-02-18,49772,3245,"[""Laptop"", ""Tablet""]",856.86,"{""promo"": ""8%""}",32866,1,South America +2023-08-18,49773,6688,"[""Phone""]",1627.04,"{"""": ""8%""}",170931,0,North America +2023-05-08,49774,9335,"[""Wireless Mouse"", ""Tablet""]",538.24,"{""promo"": ""19%""}",172470,1,Africa +2023-06-14,49775,4412,"[""Keyboard"", ""Phone""]",210.43,"{""loyalty"": ""8%""}",58310,1,South America +2023-11-24,49776,9079,"[""Headphones""]",1634.34,{},124792,0,Europe +2023-01-13,49777,5309,"[""Monitor""]",1123.08,{},173301,1,Europe +2024-05-07,49778,9916,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3772.05,{},276527,0,Asia +2023-04-16,49779,1380,"[""Monitor"", ""Headphones"", ""Laptop""]",2572.05,"{""seasonal"": ""23%""}",165764,1,Asia +2024-12-12,49780,9545,"[""Charger"", ""Tablet"", ""Phone""]",4781.01,{},232561,0,Africa +2024-09-26,49781,2562,"[""Phone"", ""Laptop""]",2693.89,{},53814,1,North America +2023-06-08,49782,5530,"[""Tablet""]",2989.85,{},225789,0,South America +2024-04-01,49783,2307,"[""Headphones"", ""Monitor""]",1202.8,"{""loyalty"": ""10%""}",145942,1,South America +2023-09-23,49784,2469,"[""Monitor"", ""Tablet""]",3769.33,"{""seasonal"": ""28%""}",255408,0,Africa +2024-05-21,49785,1654,"[""Headphones""]",4651.86,{},17357,1,South America +2024-03-07,49786,3657,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3254.85,{},80177,1,Africa +2023-11-02,49787,4206,"[""Monitor""]",1802.77,{},251620,0,South America +2023-09-02,49788,3081,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3926.14,{},103210,0,Africa +2023-04-12,49789,4781,"[""Headphones"", ""Monitor""]",2354.32,"{""seasonal"": ""26%""}",207051,1,South America +2024-03-17,49790,3250,"[""Charger""]",1508.04,"{""loyalty"": ""22%""}",291523,0,South America +2024-04-11,49791,5936,"[""Phone"", ""Charger"", ""Tablet""]",1683.75,"{""seasonal"": ""23%""}",256573,1,North America +2023-01-29,49792,4422,"[""Tablet"", ""Charger"", ""Phone""]",1010.67,{},299073,1,North America +2024-12-09,49793,3427,"[""Laptop""]",1053.6,{},226654,0,North America +2024-01-13,49794,3832,"[""Charger""]",4234.66,{},70996,0,Europe +2023-08-05,49795,5960,"[""Headphones"", ""Keyboard""]",4031.98,{},198040,1,North America +2024-08-24,49796,9758,"[""Laptop"", ""Phone"", ""Monitor""]",3689.78,"{"""": ""18%""}",131338,0,Europe +2024-11-21,49797,5337,"[""Headphones""]",3871.83,"{""seasonal"": ""28%""}",82832,0,South America +2024-07-28,49798,6066,"[""Charger"", ""Phone""]",3658.2,"{""seasonal"": ""10%""}",163730,0,North America +2024-03-03,49799,4754,"[""Phone"", ""Wireless Mouse""]",3636.6,"{""seasonal"": ""10%""}",76679,0,South America +2024-10-27,49800,1557,"[""Charger"", ""Headphones""]",2548.55,"{""promo"": ""14%""}",112072,0,Europe +2024-03-15,49801,7896,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4764.99,{},8083,0,Asia +2023-05-23,49802,1232,"[""Keyboard"", ""Tablet""]",1443.0,{},110926,1,Europe +2023-09-15,49803,7131,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",454.94,"{""promo"": ""14%""}",84395,0,South America +2023-03-17,49804,1842,"[""Charger"", ""Wireless Mouse""]",4146.81,{},17896,1,North America +2024-07-21,49805,4930,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4941.94,"{""loyalty"": ""16%""}",19307,1,South America +2023-07-10,49806,2431,"[""Laptop""]",886.37,"{""promo"": ""25%""}",270214,1,Asia +2023-08-25,49807,5432,"[""Tablet"", ""Headphones"", ""Monitor""]",2087.28,"{""seasonal"": ""8%""}",283390,0,Europe +2023-08-11,49808,8248,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1310.35,{},193684,1,South America +2023-11-28,49809,8771,"[""Charger"", ""Tablet"", ""Laptop""]",2848.55,{},280225,0,South America +2024-04-25,49810,121,"[""Charger"", ""Phone""]",2690.05,"{""seasonal"": ""19%""}",188820,0,North America +2023-01-20,49811,2983,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2705.84,{},170943,1,Asia +2024-03-23,49812,8642,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3644.93,"{""loyalty"": ""11%""}",204616,1,Asia +2023-11-02,49813,6904,"[""Charger"", ""Keyboard""]",2746.79,{},131159,1,Africa +2024-08-17,49814,1154,"[""Headphones"", ""Laptop""]",2772.16,{},188494,1,Europe +2024-02-09,49815,1329,"[""Tablet"", ""Headphones""]",863.1,"{""loyalty"": ""17%""}",91290,0,Europe +2024-04-09,49816,7844,"[""Phone"", ""Charger""]",1302.22,"{"""": ""12%""}",49090,0,North America +2023-03-24,49817,1929,"[""Phone""]",2190.98,"{""seasonal"": ""17%""}",240578,0,Asia +2023-01-09,49818,1760,"[""Laptop"", ""Headphones""]",3967.87,{},266668,0,North America +2023-08-14,49819,3142,"[""Laptop""]",4034.54,"{""promo"": ""16%""}",127788,0,North America +2023-11-02,49820,6970,"[""Tablet"", ""Laptop""]",4983.15,{},205785,0,Asia +2023-02-03,49821,7674,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1179.4,{},297772,0,Europe +2024-09-09,49822,870,"[""Wireless Mouse""]",1647.54,{},169697,0,Africa +2023-04-09,49823,2921,"[""Wireless Mouse"", ""Laptop""]",4903.79,{},164798,0,South America +2024-01-27,49824,686,"[""Keyboard"", ""Phone""]",4123.67,{},213178,0,Europe +2024-09-20,49825,6493,"[""Phone""]",185.71,"{""seasonal"": ""23%""}",167727,0,North America +2023-10-26,49826,2388,"[""Laptop"", ""Phone""]",77.08,{},53670,1,Europe +2024-09-16,49827,3731,"[""Tablet""]",3855.31,"{"""": ""23%""}",258566,1,North America +2024-07-29,49828,8206,"[""Tablet""]",2419.58,"{"""": ""5%""}",246139,1,South America +2023-11-22,49829,5361,"[""Phone"", ""Charger""]",4596.63,{},99083,1,South America +2023-11-26,49830,255,"[""Wireless Mouse"", ""Keyboard""]",466.16,{},243790,1,South America +2023-06-02,49831,4590,"[""Tablet"", ""Keyboard"", ""Monitor""]",1015.93,{},69320,1,Europe +2023-09-13,49832,2312,"[""Laptop"", ""Monitor""]",4864.78,{},256773,1,South America +2023-10-24,49833,4610,"[""Phone""]",1298.07,{},221740,0,South America +2023-10-31,49834,2494,"[""Phone"", ""Wireless Mouse""]",444.65,"{""promo"": ""9%""}",37194,0,Europe +2024-03-05,49835,2657,"[""Charger""]",2875.34,{},41794,0,Europe +2024-07-30,49836,7041,"[""Charger"", ""Monitor""]",3326.83,"{""seasonal"": ""19%""}",219842,1,South America +2023-06-10,49837,729,"[""Wireless Mouse""]",1669.96,{},218057,1,North America +2024-02-27,49838,6951,"[""Laptop""]",3897.39,"{""loyalty"": ""5%""}",115758,0,Africa +2023-11-01,49839,6532,"[""Tablet""]",2442.94,"{""promo"": ""8%""}",114908,0,Asia +2023-05-07,49840,5278,"[""Phone"", ""Headphones""]",1027.14,{},231874,0,Africa +2024-02-18,49841,555,"[""Tablet"", ""Charger"", ""Keyboard""]",126.31,"{""promo"": ""7%""}",206760,1,South America +2024-05-18,49842,4080,"[""Laptop""]",2467.18,"{"""": ""23%""}",26884,1,Africa +2024-04-02,49843,950,"[""Tablet""]",2254.14,"{"""": ""12%""}",91907,1,South America +2023-01-02,49844,3087,"[""Keyboard""]",102.77,"{"""": ""30%""}",208442,1,South America +2024-12-09,49845,2762,"[""Tablet"", ""Headphones""]",908.07,"{"""": ""24%""}",246099,0,North America +2023-10-08,49846,7908,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1638.59,{},259937,0,South America +2023-09-17,49847,1859,"[""Phone"", ""Laptop"", ""Headphones""]",2618.56,{},255115,1,Africa +2023-11-17,49848,5054,"[""Headphones"", ""Laptop"", ""Keyboard""]",3001.55,"{""seasonal"": ""24%""}",221034,1,Africa +2023-03-22,49849,2244,"[""Wireless Mouse""]",2067.89,{},35102,1,Europe +2023-07-02,49850,9286,"[""Headphones"", ""Keyboard""]",2858.03,{},61605,0,Europe +2024-07-30,49851,2926,"[""Monitor""]",2489.49,"{""promo"": ""20%""}",124671,0,Africa +2023-01-05,49852,1156,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4688.57,{},67717,0,North America +2023-06-13,49853,6107,"[""Laptop"", ""Charger"", ""Monitor""]",2686.07,{},216495,0,Europe +2023-08-18,49854,7856,"[""Wireless Mouse"", ""Headphones""]",4818.43,"{""promo"": ""13%""}",16120,1,Asia +2023-05-15,49855,8685,"[""Wireless Mouse"", ""Charger""]",687.17,"{""promo"": ""29%""}",105878,1,Asia +2023-02-02,49856,2501,"[""Tablet""]",4203.04,"{"""": ""14%""}",173213,1,Asia +2023-09-14,49857,7579,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1714.62,{},92088,0,Africa +2023-09-09,49858,4459,"[""Monitor"", ""Laptop""]",3853.98,"{""loyalty"": ""19%""}",68682,1,Europe +2024-11-11,49859,2683,"[""Tablet""]",4998.43,{},45872,0,South America +2023-05-08,49860,5214,"[""Laptop""]",4960.31,{},55887,1,Europe +2024-10-19,49861,9466,"[""Laptop""]",219.64,{},114394,1,Africa +2023-12-02,49862,4524,"[""Monitor"", ""Headphones""]",2920.4,{},135352,1,North America +2023-04-04,49863,3884,"[""Headphones"", ""Monitor""]",3905.47,{},266611,0,Asia +2023-12-18,49864,6892,"[""Laptop"", ""Charger""]",4497.53,"{""promo"": ""10%""}",210254,0,Asia +2024-01-20,49865,1929,"[""Phone"", ""Tablet"", ""Laptop""]",4345.04,"{""loyalty"": ""12%""}",290986,1,Asia +2024-11-27,49866,3814,"[""Phone""]",4423.17,{},278197,0,North America +2023-09-08,49867,4788,"[""Charger"", ""Laptop"", ""Monitor""]",1278.87,{},7048,1,South America +2024-08-19,49868,2526,"[""Keyboard""]",1680.62,"{"""": ""10%""}",229297,1,South America +2024-06-14,49869,4047,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",974.48,"{"""": ""8%""}",97347,1,South America +2024-05-11,49870,9581,"[""Monitor"", ""Charger"", ""Laptop""]",4170.36,{},65458,1,Europe +2023-09-19,49871,9348,"[""Tablet"", ""Monitor"", ""Phone""]",408.57,"{""seasonal"": ""6%""}",20436,0,Africa +2023-02-28,49872,3745,"[""Monitor""]",424.64,{},36251,0,South America +2024-08-28,49873,5290,"[""Keyboard"", ""Phone"", ""Headphones""]",1065.75,"{""seasonal"": ""7%""}",185306,0,Asia +2023-11-03,49874,6759,"[""Monitor"", ""Charger"", ""Headphones""]",2791.77,"{""promo"": ""7%""}",54060,0,Europe +2024-06-23,49875,6253,"[""Monitor"", ""Headphones""]",2034.67,"{""promo"": ""18%""}",269239,1,Africa +2023-12-21,49876,7891,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3981.37,{},192720,1,South America +2023-05-31,49877,6699,"[""Phone""]",1416.53,"{""promo"": ""20%""}",244092,1,Africa +2023-01-03,49878,7594,"[""Monitor"", ""Headphones"", ""Phone""]",155.58,"{""loyalty"": ""29%""}",260662,0,Asia +2023-12-12,49879,3638,"[""Laptop""]",4227.92,{},80562,1,North America +2024-02-01,49880,3761,"[""Laptop"", ""Monitor"", ""Keyboard""]",3570.65,{},94848,0,Europe +2024-06-27,49881,2264,"[""Keyboard"", ""Charger"", ""Laptop""]",2570.51,"{""promo"": ""17%""}",267889,0,Africa +2024-07-31,49882,5966,"[""Tablet"", ""Charger""]",2007.69,"{""promo"": ""30%""}",81314,0,North America +2023-11-23,49883,1796,"[""Keyboard""]",1300.58,{},150425,0,North America +2024-10-07,49884,9943,"[""Monitor"", ""Headphones"", ""Phone""]",2120.19,{},170470,1,Europe +2023-03-21,49885,4122,"[""Charger"", ""Phone"", ""Tablet""]",170.41,{},32244,1,North America +2023-01-27,49886,9290,"[""Monitor""]",4417.82,{},128170,1,Africa +2023-10-03,49887,1880,"[""Monitor"", ""Tablet"", ""Phone""]",2616.27,"{"""": ""22%""}",271314,1,North America +2023-06-22,49888,7253,"[""Wireless Mouse""]",227.52,"{"""": ""13%""}",185670,0,Europe +2023-01-26,49889,5406,"[""Keyboard"", ""Tablet""]",1262.93,"{""loyalty"": ""13%""}",76764,1,Europe +2023-03-28,49890,197,"[""Charger""]",3285.61,{},191994,0,Africa +2024-11-21,49891,2234,"[""Monitor""]",1667.83,"{"""": ""16%""}",30700,1,Africa +2024-01-10,49892,2628,"[""Wireless Mouse""]",3483.61,{},60851,0,North America +2023-08-13,49893,3208,"[""Keyboard"", ""Wireless Mouse""]",4338.3,{},281812,0,South America +2023-11-06,49894,8381,"[""Monitor"", ""Phone""]",4033.17,"{"""": ""22%""}",295858,1,South America +2023-12-16,49895,8051,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2023.64,"{""seasonal"": ""6%""}",10246,0,Europe +2023-07-21,49896,688,"[""Tablet""]",2194.49,{},2254,0,North America +2024-11-09,49897,6515,"[""Laptop"", ""Monitor"", ""Tablet""]",363.4,{},211711,1,South America +2023-12-04,49898,2851,"[""Wireless Mouse""]",3954.7,{},96397,1,Asia +2023-01-02,49899,100,"[""Charger"", ""Phone""]",98.42,"{"""": ""17%""}",98889,1,Europe +2023-11-09,49900,8781,"[""Laptop""]",2082.93,"{"""": ""11%""}",195521,1,South America +2023-11-17,49901,2551,"[""Keyboard"", ""Phone"", ""Laptop""]",2486.01,"{""loyalty"": ""6%""}",151286,0,South America +2023-03-23,49902,4575,"[""Tablet"", ""Laptop"", ""Monitor""]",4512.22,"{"""": ""19%""}",157789,0,Africa +2024-05-29,49903,2658,"[""Charger""]",3759.35,"{""seasonal"": ""23%""}",91437,0,Asia +2024-06-03,49904,4994,"[""Headphones""]",829.05,"{""promo"": ""26%""}",144638,0,South America +2023-11-23,49905,5659,"[""Monitor"", ""Keyboard"", ""Headphones""]",1397.19,{},137064,0,Africa +2024-09-18,49906,23,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2630.27,"{""loyalty"": ""28%""}",106541,0,North America +2024-12-20,49907,4681,"[""Phone""]",1821.67,{},65311,1,Asia +2023-10-10,49908,3247,"[""Laptop"", ""Keyboard""]",2381.6,"{""seasonal"": ""6%""}",17172,0,North America +2023-02-07,49909,4192,"[""Keyboard"", ""Laptop""]",4416.29,"{""promo"": ""14%""}",286878,1,Asia +2024-10-08,49910,5056,"[""Laptop"", ""Keyboard"", ""Monitor""]",2745.95,"{""loyalty"": ""21%""}",197006,0,North America +2023-06-19,49911,7809,"[""Headphones""]",2624.06,{},192003,1,Europe +2024-04-26,49912,888,"[""Tablet""]",1941.88,{},161716,1,North America +2024-01-29,49913,8358,"[""Charger"", ""Phone"", ""Monitor""]",135.39,{},172401,0,Europe +2023-12-29,49914,9184,"[""Laptop"", ""Tablet""]",3454.34,{},148081,0,Africa +2023-02-20,49915,8819,"[""Laptop"", ""Charger""]",2660.04,"{""seasonal"": ""29%""}",159622,0,Asia +2023-12-01,49916,3137,"[""Wireless Mouse""]",450.62,"{""seasonal"": ""28%""}",69638,1,South America +2023-08-20,49917,4784,"[""Keyboard""]",1119.89,{},222939,0,South America +2024-06-08,49918,7714,"[""Charger"", ""Laptop"", ""Phone""]",1722.18,"{""promo"": ""21%""}",114100,0,North America +2024-11-15,49919,3918,"[""Charger"", ""Tablet"", ""Phone""]",1418.02,"{"""": ""10%""}",86307,0,Europe +2024-07-07,49920,215,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2595.89,"{""seasonal"": ""21%""}",270573,1,Asia +2024-08-10,49921,4837,"[""Monitor"", ""Tablet""]",4525.57,{},217119,1,South America +2023-01-18,49922,5754,"[""Phone"", ""Monitor""]",1985.36,"{""seasonal"": ""20%""}",159895,0,Africa +2023-10-07,49923,828,"[""Headphones"", ""Charger"", ""Laptop""]",209.21,{},130918,0,South America +2023-02-14,49924,3135,"[""Phone""]",508.16,"{""loyalty"": ""17%""}",191936,1,South America +2023-11-09,49925,1710,"[""Tablet""]",850.0,"{""promo"": ""13%""}",282099,0,North America +2024-11-28,49926,1777,"[""Monitor"", ""Keyboard""]",2746.94,"{""seasonal"": ""30%""}",47279,1,Asia +2024-01-28,49927,2873,"[""Keyboard""]",1277.05,"{""promo"": ""9%""}",213944,1,North America +2024-03-01,49928,3688,"[""Wireless Mouse""]",1005.97,"{""promo"": ""21%""}",242538,0,Europe +2023-10-20,49929,2523,"[""Monitor"", ""Charger"", ""Laptop""]",101.73,"{"""": ""21%""}",232540,0,North America +2023-03-23,49930,8725,"[""Charger"", ""Keyboard"", ""Monitor""]",4800.91,{},50130,1,Africa +2023-10-18,49931,1804,"[""Tablet"", ""Keyboard"", ""Monitor""]",4692.64,"{"""": ""20%""}",74014,0,Europe +2023-08-09,49932,3779,"[""Tablet"", ""Headphones""]",2008.9,{},150400,0,North America +2023-12-08,49933,2185,"[""Headphones"", ""Laptop""]",280.02,"{""promo"": ""10%""}",269906,0,Asia +2023-09-23,49934,7370,"[""Monitor"", ""Charger"", ""Keyboard""]",162.28,"{""loyalty"": ""22%""}",139259,1,Asia +2024-05-08,49935,7212,"[""Laptop"", ""Headphones""]",2322.43,"{""loyalty"": ""26%""}",253529,0,Europe +2024-03-28,49936,2552,"[""Charger""]",74.02,{},162510,1,Europe +2023-11-03,49937,4806,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1345.34,"{""seasonal"": ""21%""}",199592,1,Asia +2023-06-14,49938,2246,"[""Charger"", ""Tablet"", ""Keyboard""]",4889.9,{},43336,1,Africa +2024-05-16,49939,1939,"[""Monitor""]",4413.94,{},152748,0,North America +2024-10-09,49940,8719,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2285.71,{},130284,1,Europe +2024-10-28,49941,9220,"[""Phone"", ""Charger"", ""Laptop""]",4382.68,{},264491,0,Africa +2024-09-28,49942,8258,"[""Laptop"", ""Keyboard""]",2840.65,"{""loyalty"": ""21%""}",3494,1,North America +2024-03-23,49943,4824,"[""Laptop"", ""Wireless Mouse""]",3318.16,{},249947,1,Asia +2023-10-08,49944,376,"[""Headphones""]",4166.78,"{""promo"": ""30%""}",250865,1,Asia +2023-05-08,49945,719,"[""Charger"", ""Phone""]",554.04,{},210986,0,Africa +2023-01-26,49946,2088,"[""Headphones""]",3514.41,"{""promo"": ""18%""}",18509,1,Europe +2024-10-05,49947,6003,"[""Keyboard"", ""Monitor"", ""Phone""]",4634.96,{},44876,1,Asia +2024-10-11,49948,7579,"[""Keyboard"", ""Phone""]",1409.41,{},142503,1,North America +2024-12-05,49949,7746,"[""Tablet"", ""Laptop"", ""Headphones""]",3135.4,"{""seasonal"": ""7%""}",1580,0,Europe +2023-10-29,49950,5802,"[""Charger"", ""Laptop""]",3730.94,{},218535,1,North America +2024-02-10,49951,5296,"[""Laptop"", ""Charger""]",3001.18,{},55092,0,South America +2024-07-10,49952,1452,"[""Wireless Mouse"", ""Phone""]",2027.82,{},33565,1,Africa +2024-07-04,49953,1342,"[""Tablet"", ""Laptop"", ""Keyboard""]",177.63,"{""promo"": ""11%""}",78695,1,South America +2024-11-22,49954,6488,"[""Monitor"", ""Wireless Mouse""]",1153.23,"{""loyalty"": ""14%""}",180132,1,South America +2023-01-14,49955,2335,"[""Keyboard"", ""Laptop""]",4679.31,"{""seasonal"": ""20%""}",93347,0,North America +2024-04-04,49956,6670,"[""Phone""]",3871.23,{},272883,1,Africa +2024-04-24,49957,9351,"[""Laptop"", ""Tablet"", ""Headphones""]",2309.95,{},205037,1,Africa +2023-12-18,49958,630,"[""Headphones"", ""Wireless Mouse""]",162.61,"{""promo"": ""9%""}",86423,0,South America +2024-09-12,49959,7690,"[""Wireless Mouse"", ""Laptop""]",2484.52,"{""loyalty"": ""12%""}",171926,0,South America +2023-06-15,49960,9875,"[""Phone"", ""Laptop"", ""Keyboard""]",1758.12,{},116297,1,South America +2023-03-12,49961,9593,"[""Wireless Mouse""]",1421.29,"{""loyalty"": ""6%""}",9135,1,Asia +2023-01-05,49962,1936,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4467.07,"{"""": ""26%""}",169821,0,Asia +2023-10-18,49963,427,"[""Keyboard""]",2154.03,"{""promo"": ""24%""}",92320,1,South America +2024-04-02,49964,7932,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",396.23,"{""promo"": ""25%""}",203796,0,South America +2023-09-14,49965,2094,"[""Tablet""]",664.32,"{""seasonal"": ""12%""}",139083,1,Asia +2024-05-13,49966,6549,"[""Tablet""]",3330.64,{},187396,0,North America +2023-02-19,49967,3567,"[""Charger""]",2030.91,{},225530,0,South America +2023-09-05,49968,5870,"[""Phone"", ""Wireless Mouse""]",4864.41,{},217236,1,Africa +2024-05-08,49969,4375,"[""Monitor"", ""Laptop""]",3358.59,{},28153,1,Europe +2023-11-30,49970,9341,"[""Wireless Mouse""]",4172.6,"{""promo"": ""13%""}",88864,0,Asia +2023-10-20,49971,2434,"[""Keyboard""]",3530.78,"{""loyalty"": ""7%""}",258297,0,Europe +2023-05-20,49972,9913,"[""Charger"", ""Tablet""]",4059.32,"{""loyalty"": ""30%""}",80414,0,South America +2024-11-21,49973,4201,"[""Phone"", ""Tablet""]",1953.23,{},131155,0,Asia +2024-03-20,49974,177,"[""Phone"", ""Tablet"", ""Keyboard""]",3994.81,"{""seasonal"": ""6%""}",173389,1,South America +2024-12-11,49975,6158,"[""Phone"", ""Headphones""]",1501.02,"{"""": ""5%""}",113924,0,North America +2024-12-09,49976,4927,"[""Monitor"", ""Phone"", ""Tablet""]",3003.8,"{""loyalty"": ""24%""}",139027,0,South America +2023-07-26,49977,4074,"[""Charger""]",2421.42,"{"""": ""27%""}",42986,0,Africa +2024-09-15,49978,7297,"[""Charger""]",1772.4,"{""seasonal"": ""10%""}",52834,1,North America +2024-02-25,49979,5155,"[""Phone"", ""Laptop"", ""Headphones""]",2702.96,"{""promo"": ""28%""}",292649,0,Asia +2024-08-19,49980,3847,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2406.95,"{"""": ""18%""}",116675,0,Asia +2023-07-31,49981,7631,"[""Monitor"", ""Charger""]",1523.28,"{""promo"": ""20%""}",69572,1,North America +2024-03-14,49982,883,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3850.81,{},265625,0,South America +2024-06-02,49983,3213,"[""Phone"", ""Headphones"", ""Tablet""]",3308.5,"{"""": ""14%""}",256874,0,Asia +2024-05-02,49984,6078,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",721.33,"{"""": ""12%""}",218193,0,South America +2023-02-05,49985,2990,"[""Wireless Mouse""]",3242.35,"{""seasonal"": ""29%""}",253268,1,Asia +2023-08-18,49986,6291,"[""Tablet""]",4146.65,{},148040,0,Europe +2024-06-17,49987,714,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",349.94,"{""promo"": ""26%""}",75182,1,Europe +2023-11-03,49988,3386,"[""Monitor"", ""Laptop""]",1666.66,"{""promo"": ""5%""}",133430,0,North America +2024-04-21,49989,2269,"[""Keyboard"", ""Monitor""]",3304.99,{},121851,0,South America +2024-02-16,49990,3659,"[""Monitor""]",4922.07,{},145875,1,South America +2024-08-18,49991,1493,"[""Headphones"", ""Phone""]",3425.12,{},256332,0,Asia +2024-02-07,49992,9460,"[""Monitor"", ""Phone""]",178.97,"{""seasonal"": ""26%""}",229299,1,South America +2023-06-22,49993,547,"[""Charger""]",4536.07,"{""seasonal"": ""28%""}",273128,1,Europe +2024-11-30,49994,555,"[""Headphones"", ""Charger""]",686.6,"{""seasonal"": ""9%""}",91174,0,Asia +2023-08-15,49995,4762,"[""Monitor""]",938.72,"{"""": ""28%""}",197226,1,Africa +2024-03-07,49996,6765,"[""Tablet"", ""Headphones""]",156.78,{},23086,1,South America +2023-04-12,49997,3795,"[""Charger"", ""Headphones""]",1748.23,"{""seasonal"": ""29%""}",119728,1,Europe +2024-10-21,49998,6010,"[""Charger"", ""Monitor""]",447.98,"{""loyalty"": ""12%""}",211584,1,South America +2023-06-27,49999,388,"[""Headphones""]",3113.9,"{""promo"": ""25%""}",126224,1,South America +2024-02-20,50000,1970,"[""Headphones"", ""Charger""]",4378.57,"{""promo"": ""22%""}",201497,0,Africa +2024-10-28,50001,3154,"[""Headphones"", ""Phone""]",652.86,{},183090,1,Asia +2024-09-27,50002,6076,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2251.03,{},279151,1,Europe +2024-04-15,50003,1843,"[""Tablet""]",4093.55,"{""loyalty"": ""30%""}",159104,0,Asia +2024-02-12,50004,9348,"[""Laptop"", ""Monitor"", ""Phone""]",4800.44,{},208209,1,South America +2023-07-24,50005,2636,"[""Tablet"", ""Laptop""]",1697.01,"{""promo"": ""8%""}",129358,1,South America +2023-03-15,50006,5292,"[""Charger"", ""Phone""]",1685.28,"{""promo"": ""10%""}",159287,0,Asia +2023-11-20,50007,3533,"[""Monitor"", ""Laptop"", ""Keyboard""]",584.99,"{""loyalty"": ""12%""}",36858,0,Europe +2024-05-20,50008,5746,"[""Tablet""]",3006.88,{},66511,0,Africa +2024-10-11,50009,9842,"[""Laptop"", ""Headphones"", ""Phone""]",611.05,{},96476,1,Africa +2024-04-21,50010,4404,"[""Monitor""]",4397.37,"{""seasonal"": ""12%""}",110897,0,North America +2024-08-02,50011,6154,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3316.18,"{""promo"": ""18%""}",102941,0,Europe +2023-03-05,50012,9712,"[""Phone"", ""Headphones""]",971.68,{},99445,1,South America +2024-10-18,50013,1303,"[""Laptop"", ""Phone""]",3860.46,{},3611,1,North America +2023-08-04,50014,7947,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2451.17,"{"""": ""11%""}",161674,0,South America +2023-11-07,50015,4598,"[""Wireless Mouse"", ""Keyboard""]",543.12,{},177257,0,North America +2024-11-11,50016,3554,"[""Phone"", ""Charger"", ""Keyboard""]",2976.33,{},254633,0,Europe +2024-09-13,50017,5314,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1796.61,"{"""": ""9%""}",246410,0,North America +2024-10-03,50018,7639,"[""Keyboard"", ""Charger""]",225.72,"{""promo"": ""16%""}",44228,0,Africa +2024-07-05,50019,2312,"[""Wireless Mouse""]",4589.48,"{""seasonal"": ""14%""}",57359,1,South America +2024-09-30,50020,3587,"[""Wireless Mouse"", ""Keyboard""]",2299.76,{},163710,1,South America +2024-06-24,50021,4023,"[""Monitor"", ""Laptop"", ""Keyboard""]",1936.88,{},120098,0,North America +2023-09-09,50022,8019,"[""Monitor"", ""Keyboard""]",2976.62,"{""seasonal"": ""27%""}",172896,1,Asia +2024-02-19,50023,9447,"[""Phone"", ""Tablet""]",73.3,"{"""": ""11%""}",174201,1,Asia +2023-08-21,50024,4796,"[""Keyboard""]",4240.18,"{""seasonal"": ""9%""}",242824,0,Africa +2024-07-10,50025,542,"[""Phone""]",1100.85,{},32808,1,Asia +2023-12-23,50026,3373,"[""Monitor"", ""Charger""]",1241.17,"{"""": ""9%""}",91337,1,South America +2023-07-28,50027,4916,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4324.84,{},219257,0,Africa +2024-01-22,50028,7922,"[""Keyboard"", ""Headphones"", ""Laptop""]",4494.49,"{""seasonal"": ""18%""}",26288,1,North America +2023-10-07,50029,6711,"[""Headphones"", ""Tablet"", ""Phone""]",4333.32,{},299571,1,Asia +2024-05-21,50030,4676,"[""Headphones"", ""Laptop"", ""Charger""]",2627.73,"{""seasonal"": ""19%""}",236416,1,Europe +2023-09-28,50031,6277,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3352.24,"{""seasonal"": ""18%""}",241869,0,Africa +2023-10-19,50032,3009,"[""Tablet""]",479.0,"{"""": ""16%""}",2253,1,South America +2024-09-23,50033,7058,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3916.21,{},69868,0,Europe +2024-12-10,50034,6297,"[""Laptop"", ""Headphones""]",1531.22,{},145929,1,South America +2024-08-13,50035,6947,"[""Keyboard"", ""Laptop"", ""Phone""]",3262.27,{},270364,1,Asia +2024-07-23,50036,6673,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4473.67,{},7804,0,Africa +2023-07-29,50037,5863,"[""Phone"", ""Keyboard"", ""Headphones""]",4891.32,"{""loyalty"": ""28%""}",241763,1,Africa +2023-06-21,50038,8228,"[""Tablet""]",3031.13,"{""promo"": ""20%""}",279516,0,Africa +2024-01-08,50039,6241,"[""Monitor"", ""Charger"", ""Laptop""]",1348.54,"{""seasonal"": ""25%""}",108544,0,Africa +2024-11-17,50040,1053,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2322.83,"{""promo"": ""23%""}",8791,1,Europe +2023-12-28,50041,9704,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2369.82,"{""seasonal"": ""14%""}",206304,0,Asia +2024-07-16,50042,4107,"[""Tablet"", ""Headphones""]",3106.19,{},258370,0,South America +2023-10-04,50043,751,"[""Headphones""]",1438.75,"{""loyalty"": ""20%""}",276513,0,North America +2023-02-15,50044,916,"[""Laptop""]",2240.6,"{""promo"": ""13%""}",104818,1,Africa +2024-04-07,50045,706,"[""Keyboard"", ""Monitor""]",495.24,{},119805,0,South America +2024-05-11,50046,1638,"[""Charger"", ""Laptop""]",4456.67,"{""promo"": ""19%""}",251486,1,Asia +2024-08-24,50047,6386,"[""Keyboard""]",3585.79,{},10893,1,Africa +2024-08-13,50048,3315,"[""Keyboard"", ""Laptop""]",1342.12,"{""loyalty"": ""21%""}",222317,1,North America +2023-11-03,50049,951,"[""Phone"", ""Laptop""]",4409.97,{},188118,0,South America +2023-12-30,50050,2448,"[""Laptop""]",1954.1,{},210433,1,Asia +2023-11-10,50051,4182,"[""Monitor"", ""Wireless Mouse""]",1097.85,{},49505,1,South America +2023-06-03,50052,8235,"[""Headphones"", ""Keyboard""]",1117.35,{},115298,1,Africa +2023-03-29,50053,5201,"[""Laptop"", ""Wireless Mouse""]",4311.57,{},72416,0,South America +2024-03-11,50054,5344,"[""Laptop""]",720.79,"{"""": ""15%""}",18880,1,South America +2024-06-17,50055,3919,"[""Wireless Mouse""]",2565.49,"{"""": ""25%""}",226651,1,Asia +2024-06-04,50056,2646,"[""Phone"", ""Wireless Mouse""]",4562.51,{},191179,1,Europe +2024-03-20,50057,9339,"[""Phone"", ""Charger"", ""Monitor""]",1155.39,{},65133,0,Asia +2023-06-08,50058,8320,"[""Monitor"", ""Charger"", ""Phone""]",3307.54,"{""seasonal"": ""28%""}",232118,0,Africa +2024-12-05,50059,1419,"[""Laptop"", ""Keyboard""]",1140.69,"{""seasonal"": ""11%""}",114382,0,Europe +2023-08-24,50060,6300,"[""Charger"", ""Laptop"", ""Phone""]",1899.43,{},82796,0,South America +2023-03-27,50061,769,"[""Phone"", ""Headphones""]",3044.08,{},37914,0,Asia +2024-12-15,50062,2895,"[""Keyboard"", ""Headphones"", ""Charger""]",4015.3,{},59095,0,Africa +2023-04-07,50063,5914,"[""Laptop"", ""Charger""]",2279.95,"{"""": ""20%""}",84116,1,South America +2024-09-05,50064,2788,"[""Charger""]",4954.61,"{""seasonal"": ""13%""}",197523,1,Europe +2024-10-17,50065,9994,"[""Phone"", ""Keyboard""]",2356.1,"{""promo"": ""9%""}",269299,1,Europe +2023-07-30,50066,1309,"[""Headphones""]",1657.75,{},251495,0,Africa +2023-02-27,50067,7546,"[""Charger""]",4024.13,"{""loyalty"": ""24%""}",251492,1,Africa +2023-09-28,50068,7662,"[""Headphones""]",160.45,"{""loyalty"": ""6%""}",21579,0,North America +2023-12-01,50069,3717,"[""Monitor"", ""Laptop""]",2830.0,"{""promo"": ""19%""}",207635,1,Africa +2023-01-16,50070,2907,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4112.36,{},173483,1,Asia +2024-07-16,50071,3817,"[""Keyboard"", ""Tablet"", ""Laptop""]",3950.37,{},36749,0,Europe +2023-10-14,50072,2176,"[""Phone"", ""Tablet"", ""Monitor""]",2580.06,"{""seasonal"": ""23%""}",49908,0,Europe +2023-11-07,50073,6545,"[""Phone"", ""Laptop""]",4660.03,{},136798,1,Europe +2024-01-27,50074,1313,"[""Wireless Mouse""]",1296.27,{},272581,0,North America +2024-01-28,50075,8320,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2174.55,{},204088,0,Europe +2024-11-24,50076,7494,"[""Keyboard"", ""Monitor"", ""Tablet""]",1034.79,"{""seasonal"": ""24%""}",249053,1,North America +2024-02-02,50077,734,"[""Phone"", ""Tablet""]",1679.88,"{""promo"": ""19%""}",79298,1,Africa +2023-12-23,50078,4386,"[""Charger"", ""Keyboard""]",797.34,{},237273,1,Europe +2023-04-15,50079,8373,"[""Charger""]",62.31,"{""promo"": ""17%""}",31410,1,Africa +2024-09-11,50080,9620,"[""Phone"", ""Monitor""]",259.3,{},131991,1,Europe +2023-12-21,50081,1351,"[""Wireless Mouse"", ""Headphones""]",2980.62,"{""loyalty"": ""5%""}",33413,0,Africa +2024-03-25,50082,1507,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",940.72,{},17253,0,South America +2024-12-04,50083,8370,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2940.52,"{""promo"": ""13%""}",137855,0,Europe +2023-12-28,50084,9708,"[""Laptop"", ""Monitor""]",3164.5,"{""seasonal"": ""28%""}",11001,1,South America +2024-12-12,50085,8753,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3822.73,{},110390,0,Europe +2024-02-17,50086,7143,"[""Phone"", ""Charger"", ""Laptop""]",2627.45,"{"""": ""9%""}",103556,0,Europe +2023-11-05,50087,8430,"[""Wireless Mouse""]",2110.48,"{""loyalty"": ""13%""}",192419,0,South America +2024-05-12,50088,7061,"[""Monitor"", ""Keyboard""]",2111.93,{},38097,0,South America +2024-02-09,50089,1372,"[""Headphones"", ""Phone""]",3290.82,{},291119,0,Asia +2024-12-05,50090,8206,"[""Wireless Mouse""]",3570.41,"{"""": ""12%""}",219351,1,South America +2023-02-20,50091,8258,"[""Monitor"", ""Laptop"", ""Keyboard""]",2374.34,{},104322,1,South America +2024-11-15,50092,5134,"[""Keyboard""]",1174.75,"{""seasonal"": ""28%""}",260809,0,South America +2024-05-12,50093,7438,"[""Charger""]",4035.6,{},242768,0,North America +2023-04-13,50094,5881,"[""Monitor"", ""Headphones""]",2822.8,{},21008,1,North America +2024-12-01,50095,996,"[""Monitor""]",2406.01,{},225598,0,Asia +2023-07-02,50096,6443,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2232.73,{},98208,0,North America +2023-01-09,50097,4073,"[""Phone"", ""Keyboard""]",3475.01,"{""seasonal"": ""29%""}",162288,1,Africa +2024-11-13,50098,2924,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4931.8,"{""seasonal"": ""24%""}",72154,0,North America +2023-10-13,50099,8688,"[""Headphones"", ""Laptop""]",4954.32,"{"""": ""10%""}",257658,1,Asia +2023-10-12,50100,3380,"[""Headphones"", ""Phone"", ""Charger""]",680.38,"{""promo"": ""27%""}",5148,0,Asia +2023-05-31,50101,7896,"[""Headphones"", ""Charger"", ""Monitor""]",817.72,"{""loyalty"": ""22%""}",180847,1,Asia +2024-04-01,50102,4970,"[""Tablet"", ""Keyboard""]",1439.23,{},186829,0,Asia +2024-11-21,50103,9757,"[""Laptop""]",1388.23,"{"""": ""22%""}",255055,1,South America +2024-07-01,50104,4655,"[""Phone""]",1888.32,{},297728,1,Africa +2023-06-01,50105,9483,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1132.45,{},262454,1,Europe +2024-10-05,50106,5352,"[""Charger"", ""Phone""]",1073.81,{},187846,1,South America +2023-03-06,50107,1997,"[""Laptop"", ""Tablet"", ""Monitor""]",3287.71,{},49314,1,Asia +2024-01-18,50108,4507,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4254.3,"{""loyalty"": ""10%""}",275874,1,South America +2024-12-06,50109,402,"[""Charger"", ""Headphones"", ""Laptop""]",138.68,"{""loyalty"": ""13%""}",151667,1,Asia +2023-07-14,50110,9474,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1504.36,"{""promo"": ""28%""}",48279,0,Africa +2023-12-12,50111,4873,"[""Charger"", ""Headphones""]",3927.59,{},78937,0,Asia +2024-12-20,50112,9326,"[""Tablet""]",4054.72,"{""seasonal"": ""22%""}",295245,1,South America +2024-03-21,50113,2115,"[""Charger"", ""Headphones""]",842.91,{},298482,1,South America +2023-08-09,50114,1831,"[""Phone"", ""Wireless Mouse""]",2726.23,{},106159,1,Europe +2023-10-28,50115,506,"[""Laptop"", ""Headphones""]",264.94,{},21035,0,North America +2023-06-18,50116,7293,"[""Headphones"", ""Phone"", ""Monitor""]",3635.49,{},78580,0,North America +2024-04-21,50117,3234,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2834.11,"{""promo"": ""29%""}",217060,0,North America +2023-09-24,50118,650,"[""Tablet""]",2422.27,{},222260,1,Africa +2024-05-03,50119,6710,"[""Tablet"", ""Keyboard"", ""Headphones""]",2801.88,{},81261,1,Europe +2023-12-28,50120,6140,"[""Laptop"", ""Phone"", ""Headphones""]",4784.8,{},33348,1,South America +2024-10-15,50121,7977,"[""Laptop"", ""Keyboard""]",4495.79,"{""seasonal"": ""19%""}",283885,0,South America +2024-07-15,50122,1425,"[""Laptop"", ""Phone"", ""Keyboard""]",2505.66,"{""loyalty"": ""18%""}",35575,0,Europe +2023-05-17,50123,5246,"[""Laptop"", ""Tablet"", ""Headphones""]",4088.13,{},255854,1,Asia +2024-05-14,50124,1829,"[""Charger""]",2170.32,{},206518,1,Asia +2024-12-13,50125,145,"[""Monitor"", ""Phone"", ""Charger""]",2129.63,{},203213,0,Europe +2024-11-05,50126,8268,"[""Charger"", ""Tablet""]",884.0,"{""promo"": ""23%""}",299441,1,Asia +2023-10-02,50127,3658,"[""Monitor""]",1507.12,"{""loyalty"": ""14%""}",122516,0,Europe +2023-08-26,50128,7859,"[""Headphones"", ""Phone""]",2618.67,{},94384,1,Asia +2024-07-31,50129,8548,"[""Charger"", ""Phone""]",2623.6,{},4119,0,Africa +2024-06-12,50130,159,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1173.42,"{"""": ""6%""}",102313,1,Asia +2024-12-18,50131,4998,"[""Headphones""]",2226.88,"{""seasonal"": ""25%""}",244605,0,Asia +2023-10-30,50132,1688,"[""Phone""]",2670.09,"{""seasonal"": ""28%""}",284966,1,Europe +2023-09-04,50133,4459,"[""Wireless Mouse""]",2559.97,"{""promo"": ""8%""}",277061,0,South America +2024-05-29,50134,6037,"[""Headphones""]",1534.58,"{""seasonal"": ""28%""}",163372,0,South America +2023-09-01,50135,8774,"[""Headphones"", ""Phone""]",2862.87,{},210198,1,Europe +2023-06-30,50136,783,"[""Headphones"", ""Laptop"", ""Monitor""]",2209.09,"{""promo"": ""26%""}",284563,0,Africa +2023-01-21,50137,9491,"[""Headphones"", ""Keyboard""]",4998.18,{},224652,0,Europe +2023-12-08,50138,746,"[""Charger""]",3933.87,{},161571,0,Africa +2024-05-24,50139,4341,"[""Keyboard"", ""Wireless Mouse""]",4931.08,"{""seasonal"": ""22%""}",95990,0,Asia +2024-05-17,50140,5635,"[""Tablet""]",1873.26,"{""loyalty"": ""17%""}",264355,0,Africa +2024-06-01,50141,7278,"[""Headphones"", ""Keyboard""]",3818.99,"{""promo"": ""17%""}",230050,0,South America +2024-11-08,50142,5395,"[""Tablet"", ""Headphones""]",1906.83,{},247191,0,Africa +2023-10-26,50143,2596,"[""Wireless Mouse"", ""Charger""]",1118.52,{},281105,1,South America +2023-10-16,50144,7311,"[""Phone"", ""Tablet"", ""Monitor""]",1359.76,"{""loyalty"": ""9%""}",247737,1,North America +2024-09-23,50145,6794,"[""Headphones"", ""Keyboard"", ""Tablet""]",1013.67,"{""loyalty"": ""14%""}",102163,1,South America +2024-11-30,50146,2900,"[""Laptop""]",1937.44,"{""promo"": ""12%""}",278029,0,South America +2023-01-14,50147,8284,"[""Headphones"", ""Phone"", ""Laptop""]",1188.74,{},99619,0,North America +2023-12-29,50148,8253,"[""Phone""]",3026.98,{},127628,1,Africa +2023-04-13,50149,3976,"[""Monitor""]",3279.71,"{""loyalty"": ""13%""}",146593,0,Europe +2024-04-20,50150,4957,"[""Phone""]",2683.36,"{""promo"": ""26%""}",297606,1,Africa +2024-06-04,50151,7595,"[""Keyboard""]",3100.7,"{""loyalty"": ""26%""}",185397,0,Asia +2023-05-08,50152,8688,"[""Charger""]",4709.17,{},257665,0,Europe +2023-10-30,50153,2537,"[""Headphones""]",2285.64,"{""loyalty"": ""7%""}",236795,0,Africa +2023-03-01,50154,2845,"[""Headphones"", ""Tablet"", ""Monitor""]",121.51,"{""loyalty"": ""14%""}",115654,1,Europe +2023-05-19,50155,9710,"[""Tablet""]",2188.35,{},135140,1,South America +2024-05-28,50156,830,"[""Charger""]",2548.39,{},82332,1,North America +2023-12-26,50157,2984,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",295.59,"{""seasonal"": ""24%""}",108130,0,North America +2024-01-12,50158,7747,"[""Wireless Mouse""]",3264.02,{},32749,0,Africa +2024-09-19,50159,7664,"[""Keyboard"", ""Phone"", ""Monitor""]",1446.47,"{"""": ""25%""}",46745,0,South America +2024-02-29,50160,418,"[""Headphones""]",2308.4,{},245403,0,North America +2024-08-04,50161,220,"[""Headphones"", ""Laptop""]",80.09,"{""seasonal"": ""21%""}",20773,1,Asia +2024-01-22,50162,112,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1050.55,"{""seasonal"": ""29%""}",189097,0,Asia +2024-08-10,50163,4714,"[""Phone"", ""Tablet""]",3452.86,{},202392,1,Europe +2024-10-30,50164,9959,"[""Keyboard"", ""Phone"", ""Charger""]",1733.0,{},204726,0,South America +2024-01-09,50165,7093,"[""Phone"", ""Keyboard""]",2258.43,{},140213,1,Africa +2023-01-05,50166,4019,"[""Charger"", ""Laptop""]",4257.16,"{""seasonal"": ""19%""}",11397,0,Africa +2023-10-19,50167,4405,"[""Headphones""]",4394.28,{},299711,0,South America +2024-03-24,50168,1832,"[""Phone"", ""Keyboard""]",1674.18,"{""promo"": ""5%""}",211281,1,North America +2023-09-30,50169,4192,"[""Monitor""]",2777.55,"{"""": ""9%""}",38160,1,Asia +2024-01-31,50170,8953,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",756.47,{},187388,0,Europe +2023-09-09,50171,6755,"[""Phone"", ""Keyboard""]",3469.43,"{""seasonal"": ""12%""}",275387,1,North America +2023-02-19,50172,2613,"[""Keyboard"", ""Monitor"", ""Charger""]",3241.14,{},299845,0,Asia +2024-12-16,50173,952,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4144.73,{},56119,0,Asia +2024-10-10,50174,6837,"[""Keyboard""]",4798.24,{},139937,1,Africa +2023-02-19,50175,3289,"[""Headphones""]",911.68,"{"""": ""17%""}",207889,1,North America +2024-11-22,50176,8283,"[""Laptop"", ""Monitor"", ""Charger""]",1458.02,"{""promo"": ""6%""}",215972,1,North America +2023-05-09,50177,5818,"[""Wireless Mouse""]",3800.37,{},253718,1,South America +2023-08-24,50178,3681,"[""Charger""]",3844.59,{},30690,1,South America +2024-11-03,50179,1999,"[""Charger""]",2741.74,"{""seasonal"": ""14%""}",285481,0,Asia +2024-11-01,50180,6208,"[""Keyboard"", ""Monitor"", ""Phone""]",81.11,"{"""": ""25%""}",215747,1,North America +2024-02-02,50181,3361,"[""Monitor"", ""Wireless Mouse""]",1761.51,{},298053,1,North America +2023-02-08,50182,8038,"[""Laptop""]",3137.0,"{"""": ""15%""}",65938,0,Asia +2023-04-05,50183,6327,"[""Phone"", ""Monitor""]",4606.17,{},273501,1,Europe +2024-01-24,50184,4696,"[""Monitor"", ""Keyboard"", ""Charger""]",380.24,{},160965,0,Africa +2023-04-27,50185,9498,"[""Laptop"", ""Headphones"", ""Monitor""]",1216.5,"{"""": ""6%""}",82201,1,North America +2024-11-07,50186,6209,"[""Tablet""]",3880.41,{},61321,1,Europe +2023-06-19,50187,972,"[""Headphones"", ""Laptop""]",4142.37,{},216018,0,Africa +2024-07-06,50188,2464,"[""Monitor"", ""Keyboard"", ""Charger""]",4287.02,"{"""": ""25%""}",36569,0,South America +2023-10-25,50189,2313,"[""Monitor"", ""Laptop"", ""Keyboard""]",3890.63,{},266668,1,North America +2023-08-31,50190,1865,"[""Monitor"", ""Keyboard"", ""Charger""]",857.26,{},186162,0,Africa +2023-03-16,50191,1586,"[""Phone""]",4725.65,"{"""": ""9%""}",261756,1,Asia +2024-02-02,50192,6398,"[""Monitor"", ""Keyboard""]",2061.78,{},102809,1,South America +2023-07-02,50193,2531,"[""Charger"", ""Phone"", ""Monitor""]",1034.27,{},132934,1,North America +2023-12-02,50194,5411,"[""Headphones""]",1837.67,{},289453,1,Europe +2023-09-12,50195,6650,"[""Tablet"", ""Monitor""]",1514.99,{},30333,1,Africa +2024-03-12,50196,1005,"[""Monitor"", ""Keyboard"", ""Tablet""]",1946.24,{},247307,0,Asia +2024-03-06,50197,82,"[""Monitor"", ""Headphones""]",2063.2,"{""promo"": ""9%""}",103061,0,Europe +2024-05-02,50198,812,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1272.36,{},42699,0,South America +2024-11-08,50199,3464,"[""Phone"", ""Tablet""]",3484.44,"{""seasonal"": ""29%""}",222009,1,Africa +2023-11-15,50200,1112,"[""Headphones"", ""Wireless Mouse""]",2949.62,{},40565,0,Africa +2024-12-13,50201,3506,"[""Keyboard"", ""Headphones""]",2439.32,"{""seasonal"": ""25%""}",25593,0,Asia +2023-12-12,50202,6462,"[""Headphones""]",965.73,{},111281,0,North America +2024-09-22,50203,1825,"[""Keyboard"", ""Monitor""]",160.56,{},222221,1,Africa +2023-10-04,50204,1898,"[""Monitor""]",1041.2,"{""loyalty"": ""23%""}",62221,1,South America +2023-04-16,50205,1077,"[""Charger""]",1701.52,{},162872,0,Asia +2024-07-28,50206,5373,"[""Monitor""]",1221.24,"{""seasonal"": ""8%""}",108869,1,Asia +2024-08-29,50207,3796,"[""Charger"", ""Tablet"", ""Laptop""]",1677.1,{},153796,0,Africa +2023-01-12,50208,8298,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2819.23,{},37560,0,Africa +2024-12-09,50209,2114,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",368.63,"{""promo"": ""12%""}",10962,1,Asia +2024-02-15,50210,2826,"[""Keyboard""]",698.24,{},43410,0,North America +2023-09-03,50211,9334,"[""Phone"", ""Laptop"", ""Keyboard""]",4538.06,{},35001,1,Europe +2024-01-10,50212,6771,"[""Phone"", ""Monitor""]",3612.21,"{""seasonal"": ""15%""}",97771,0,Europe +2024-07-24,50213,5529,"[""Headphones"", ""Keyboard""]",4219.12,"{""loyalty"": ""13%""}",111393,1,Asia +2023-08-05,50214,8465,"[""Charger"", ""Monitor""]",4000.47,"{""loyalty"": ""8%""}",20416,0,South America +2023-01-29,50215,6596,"[""Monitor""]",655.27,{},224339,0,South America +2023-03-25,50216,2246,"[""Headphones"", ""Phone"", ""Laptop""]",1724.42,"{""loyalty"": ""24%""}",40649,1,North America +2023-12-13,50217,5506,"[""Charger"", ""Laptop""]",1652.58,"{""loyalty"": ""16%""}",165315,0,South America +2024-04-18,50218,6098,"[""Wireless Mouse""]",59.98,{},106448,1,South America +2024-04-25,50219,8916,"[""Monitor"", ""Phone""]",3648.02,{},176346,1,South America +2023-04-26,50220,7865,"[""Tablet""]",1584.89,{},133373,0,Europe +2024-11-07,50221,9230,"[""Phone""]",3844.16,"{""loyalty"": ""8%""}",188124,1,South America +2024-12-04,50222,650,"[""Laptop"", ""Phone"", ""Tablet""]",1552.22,"{""promo"": ""6%""}",14983,1,South America +2023-09-01,50223,8299,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4959.65,{},69298,1,Africa +2023-11-07,50224,8249,"[""Headphones"", ""Keyboard"", ""Laptop""]",1909.44,"{""promo"": ""25%""}",61500,0,South America +2023-10-16,50225,119,"[""Wireless Mouse"", ""Phone""]",1470.29,"{""loyalty"": ""22%""}",47311,1,Asia +2024-09-25,50226,6095,"[""Charger"", ""Headphones"", ""Laptop""]",531.27,"{""seasonal"": ""27%""}",285212,1,Asia +2024-04-16,50227,5091,"[""Charger"", ""Headphones"", ""Phone""]",1299.62,"{""loyalty"": ""13%""}",79751,0,South America +2023-06-26,50228,1781,"[""Laptop"", ""Charger""]",4579.72,"{""seasonal"": ""23%""}",105918,1,Asia +2024-09-17,50229,7968,"[""Phone""]",3999.68,"{""seasonal"": ""10%""}",179642,0,Europe +2023-08-14,50230,7239,"[""Phone"", ""Charger""]",1962.52,"{""loyalty"": ""8%""}",247929,1,Asia +2024-11-19,50231,3038,"[""Tablet""]",3944.94,{},47672,0,Africa +2024-11-27,50232,9367,"[""Tablet"", ""Charger""]",4829.95,{},58554,0,Asia +2023-09-14,50233,1141,"[""Charger""]",3134.34,{},77759,1,North America +2023-08-07,50234,9009,"[""Wireless Mouse"", ""Charger""]",375.23,"{""seasonal"": ""22%""}",51665,1,Europe +2023-05-24,50235,2226,"[""Tablet"", ""Keyboard""]",4389.74,"{"""": ""6%""}",215461,0,South America +2023-05-20,50236,9382,"[""Headphones""]",3474.31,{},167722,1,Asia +2024-04-16,50237,1779,"[""Tablet""]",273.15,{},136665,0,Europe +2024-10-22,50238,3331,"[""Tablet"", ""Keyboard""]",552.89,{},128941,0,Europe +2024-10-31,50239,993,"[""Tablet""]",1746.14,"{"""": ""17%""}",183740,0,Asia +2023-09-05,50240,9377,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4105.73,{},208982,0,Africa +2024-01-08,50241,1494,"[""Keyboard"", ""Monitor""]",2897.6,{},131207,1,Europe +2024-07-30,50242,5767,"[""Charger""]",2633.49,"{""promo"": ""22%""}",97822,0,Europe +2023-11-19,50243,3804,"[""Phone"", ""Charger""]",1834.76,"{""seasonal"": ""29%""}",27237,0,Asia +2023-10-18,50244,902,"[""Laptop"", ""Keyboard"", ""Tablet""]",4959.84,"{"""": ""18%""}",134695,1,Asia +2024-11-01,50245,5965,"[""Monitor"", ""Wireless Mouse""]",1575.29,{},116211,0,Africa +2024-02-26,50246,3668,"[""Laptop"", ""Keyboard""]",1823.28,"{""promo"": ""15%""}",257176,1,South America +2024-03-15,50247,9994,"[""Monitor"", ""Charger""]",3488.21,{},262435,0,Asia +2023-02-27,50248,357,"[""Keyboard""]",1664.44,{},44836,1,South America +2024-11-24,50249,7034,"[""Laptop"", ""Tablet"", ""Charger""]",2156.31,"{""loyalty"": ""28%""}",84138,0,Asia +2024-06-03,50250,7828,"[""Monitor"", ""Tablet""]",4859.24,"{""loyalty"": ""8%""}",21030,1,North America +2024-02-15,50251,8642,"[""Wireless Mouse""]",2153.0,"{""promo"": ""24%""}",267442,1,Asia +2024-04-05,50252,8963,"[""Phone"", ""Headphones""]",2309.03,"{""loyalty"": ""17%""}",137150,0,Africa +2023-05-02,50253,966,"[""Tablet"", ""Charger""]",2747.39,"{""seasonal"": ""24%""}",164489,1,Asia +2023-09-02,50254,7579,"[""Charger""]",2974.7,{},249928,1,North America +2023-04-24,50255,5795,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3974.23,{},18795,0,South America +2023-06-01,50256,3039,"[""Wireless Mouse""]",3855.27,"{""promo"": ""15%""}",169970,0,Africa +2024-01-07,50257,5786,"[""Tablet""]",4188.25,{},248301,1,North America +2024-08-28,50258,2404,"[""Monitor"", ""Charger"", ""Tablet""]",4764.81,"{"""": ""20%""}",54725,1,Asia +2023-04-17,50259,7492,"[""Wireless Mouse"", ""Charger""]",1195.3,{},164118,1,South America +2024-08-03,50260,8740,"[""Laptop"", ""Wireless Mouse""]",1701.28,"{""seasonal"": ""30%""}",178372,0,South America +2023-03-20,50261,2486,"[""Headphones""]",1184.78,"{"""": ""30%""}",185782,1,Asia +2023-06-27,50262,5012,"[""Phone""]",4887.8,"{""seasonal"": ""8%""}",99607,1,Europe +2023-04-17,50263,5321,"[""Keyboard"", ""Wireless Mouse""]",2917.83,"{""seasonal"": ""13%""}",280184,1,Europe +2023-12-10,50264,5816,"[""Headphones"", ""Wireless Mouse""]",498.76,"{"""": ""20%""}",159725,1,North America +2024-03-01,50265,4709,"[""Headphones"", ""Laptop""]",3281.02,"{""seasonal"": ""30%""}",230821,0,North America +2023-02-22,50266,4480,"[""Headphones""]",3277.47,"{""loyalty"": ""12%""}",219874,1,Asia +2024-05-07,50267,9977,"[""Headphones""]",4174.78,{},282556,0,Europe +2024-09-01,50268,7715,"[""Laptop"", ""Phone""]",3579.26,"{""seasonal"": ""14%""}",248350,0,North America +2024-10-31,50269,2626,"[""Monitor"", ""Phone"", ""Headphones""]",4926.26,"{"""": ""25%""}",198049,0,Africa +2024-10-24,50270,4845,"[""Monitor"", ""Keyboard""]",484.84,"{""promo"": ""30%""}",113127,0,North America +2024-06-21,50271,9917,"[""Keyboard"", ""Tablet"", ""Laptop""]",2390.81,{},147316,1,Europe +2023-02-08,50272,7439,"[""Headphones"", ""Charger"", ""Keyboard""]",3052.18,{},61826,0,Asia +2023-08-04,50273,6234,"[""Monitor"", ""Charger""]",4564.99,"{""loyalty"": ""29%""}",16453,0,Europe +2024-11-14,50274,7856,"[""Headphones""]",821.21,{},228615,1,North America +2024-05-18,50275,1970,"[""Tablet"", ""Phone"", ""Keyboard""]",3697.94,"{""promo"": ""14%""}",285958,0,South America +2024-06-22,50276,9970,"[""Tablet"", ""Phone""]",4772.84,{},15364,0,Asia +2023-10-11,50277,786,"[""Wireless Mouse""]",2930.76,{},129351,0,North America +2023-12-22,50278,8851,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",213.61,{},252566,1,Africa +2023-05-31,50279,3293,"[""Keyboard""]",3757.55,{},133057,0,Asia +2024-12-21,50280,4023,"[""Tablet"", ""Laptop"", ""Keyboard""]",1254.61,{},73616,0,North America +2024-10-11,50281,6166,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1292.61,{},129808,0,Africa +2023-03-05,50282,4244,"[""Tablet"", ""Keyboard"", ""Charger""]",3741.44,{},139594,0,Africa +2024-12-01,50283,9079,"[""Headphones"", ""Laptop""]",3176.96,{},271843,0,Africa +2023-10-19,50284,4000,"[""Headphones"", ""Charger""]",4224.82,"{"""": ""14%""}",79665,1,North America +2024-02-27,50285,7995,"[""Laptop"", ""Phone""]",1260.91,"{"""": ""10%""}",219700,0,North America +2024-09-15,50286,7338,"[""Phone"", ""Charger"", ""Tablet""]",1799.67,{},125879,1,Asia +2024-03-14,50287,6576,"[""Wireless Mouse""]",4131.48,"{""loyalty"": ""29%""}",262316,0,Asia +2023-12-17,50288,1978,"[""Laptop"", ""Keyboard""]",1704.02,{},223154,0,South America +2024-04-13,50289,5103,"[""Tablet"", ""Keyboard""]",2879.77,{},133759,0,North America +2023-02-05,50290,6944,"[""Laptop"", ""Phone""]",4410.87,"{"""": ""12%""}",215446,1,Europe +2023-03-26,50291,2666,"[""Monitor"", ""Keyboard"", ""Tablet""]",2476.19,"{"""": ""26%""}",138705,0,Africa +2023-01-09,50292,5038,"[""Charger"", ""Tablet""]",4163.51,"{""loyalty"": ""20%""}",38021,0,North America +2023-10-21,50293,6234,"[""Charger"", ""Phone""]",1007.43,"{""loyalty"": ""6%""}",65458,0,Asia +2023-10-31,50294,5923,"[""Charger""]",4139.64,"{""loyalty"": ""7%""}",190093,1,Africa +2023-03-21,50295,8645,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3017.94,"{""seasonal"": ""21%""}",256919,1,Asia +2024-11-04,50296,564,"[""Keyboard"", ""Laptop"", ""Tablet""]",2873.87,"{"""": ""25%""}",77754,1,South America +2024-03-04,50297,6951,"[""Headphones""]",1814.2,"{""promo"": ""19%""}",119175,0,Africa +2023-11-04,50298,7477,"[""Headphones""]",516.95,{},164307,1,North America +2023-04-03,50299,6159,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2701.16,"{"""": ""5%""}",299162,0,Europe +2023-04-13,50300,5565,"[""Monitor"", ""Wireless Mouse""]",1723.32,{},164650,0,Asia +2024-03-03,50301,8943,"[""Laptop"", ""Phone""]",261.53,"{""loyalty"": ""14%""}",93083,1,North America +2024-06-29,50302,3063,"[""Monitor"", ""Tablet"", ""Charger""]",488.98,{},218651,1,South America +2023-09-05,50303,9523,"[""Keyboard"", ""Charger"", ""Headphones""]",2525.53,{},123489,1,Europe +2024-08-06,50304,4708,"[""Keyboard""]",3471.82,{},233438,1,Asia +2023-02-18,50305,4901,"[""Laptop""]",1011.47,{},48258,1,North America +2024-10-13,50306,3763,"[""Charger"", ""Laptop""]",1269.67,{},249368,1,North America +2023-08-19,50307,910,"[""Charger""]",2421.33,{},123773,0,Africa +2024-01-12,50308,9462,"[""Phone""]",2261.25,{},209839,1,North America +2023-01-08,50309,8226,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4094.91,"{""promo"": ""23%""}",12654,1,Asia +2024-02-13,50310,2757,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2979.48,{},187609,1,Europe +2024-01-27,50311,6784,"[""Wireless Mouse""]",987.8,{},202843,0,Europe +2024-09-21,50312,871,"[""Laptop"", ""Tablet""]",494.11,"{""seasonal"": ""16%""}",285234,0,North America +2023-04-18,50313,8966,"[""Keyboard""]",2355.44,"{""seasonal"": ""5%""}",269612,0,Asia +2024-03-18,50314,3065,"[""Tablet""]",2696.79,"{"""": ""21%""}",74417,1,Asia +2023-03-02,50315,2008,"[""Phone"", ""Tablet"", ""Laptop""]",53.47,"{""loyalty"": ""29%""}",25737,1,Africa +2023-07-15,50316,8385,"[""Laptop"", ""Phone""]",1905.67,{},1691,1,Europe +2024-06-07,50317,2897,"[""Monitor"", ""Charger""]",4276.7,{},45602,0,Europe +2024-02-23,50318,669,"[""Tablet"", ""Monitor""]",2426.49,{},96669,0,Africa +2024-08-01,50319,36,"[""Headphones"", ""Phone""]",916.92,"{""loyalty"": ""7%""}",277079,1,Asia +2024-10-21,50320,5333,"[""Laptop"", ""Charger""]",4817.5,"{""seasonal"": ""23%""}",228274,1,North America +2023-08-21,50321,2830,"[""Phone""]",492.9,{},102095,1,Asia +2023-05-29,50322,8179,"[""Phone"", ""Monitor""]",1624.25,{},30746,0,North America +2023-08-22,50323,6334,"[""Monitor"", ""Keyboard""]",4917.93,"{""seasonal"": ""29%""}",242544,1,Africa +2024-06-28,50324,3460,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2889.94,"{""seasonal"": ""21%""}",253965,1,Asia +2024-03-18,50325,7255,"[""Charger"", ""Keyboard"", ""Headphones""]",2657.08,{},49502,0,South America +2024-11-13,50326,9543,"[""Tablet""]",4096.44,{},40396,1,North America +2023-10-23,50327,7375,"[""Phone"", ""Monitor"", ""Keyboard""]",162.99,"{""promo"": ""12%""}",118073,1,North America +2024-09-21,50328,5549,"[""Laptop""]",809.48,"{""loyalty"": ""28%""}",67397,0,Africa +2023-07-01,50329,3919,"[""Phone"", ""Monitor"", ""Headphones""]",1718.33,"{""seasonal"": ""26%""}",252072,0,South America +2024-04-11,50330,4053,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4804.07,{},129565,1,North America +2024-05-26,50331,2761,"[""Monitor""]",1781.83,"{""seasonal"": ""14%""}",7951,0,Europe +2023-03-06,50332,5736,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3771.72,"{""promo"": ""30%""}",37464,1,Africa +2024-05-29,50333,1461,"[""Keyboard"", ""Headphones"", ""Tablet""]",4072.25,"{"""": ""9%""}",57631,0,North America +2023-08-10,50334,5952,"[""Phone""]",3265.66,"{""seasonal"": ""9%""}",58681,0,North America +2024-09-28,50335,318,"[""Tablet""]",1871.99,{},53265,0,Africa +2024-10-23,50336,2957,"[""Tablet"", ""Laptop""]",1814.77,{},69378,1,South America +2023-04-23,50337,2556,"[""Headphones"", ""Charger"", ""Phone""]",3978.2,"{""promo"": ""11%""}",288002,0,Asia +2023-04-15,50338,2753,"[""Tablet"", ""Phone"", ""Laptop""]",1968.25,"{""seasonal"": ""11%""}",233068,0,North America +2024-01-13,50339,3924,"[""Headphones""]",3435.19,"{"""": ""17%""}",238295,1,Africa +2023-10-04,50340,9956,"[""Keyboard"", ""Wireless Mouse""]",746.0,"{""seasonal"": ""17%""}",216509,1,Asia +2024-03-09,50341,158,"[""Phone""]",2894.13,"{""loyalty"": ""10%""}",168898,1,North America +2023-06-13,50342,3789,"[""Headphones""]",1259.01,{},159391,0,Asia +2023-07-24,50343,5596,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3360.08,{},56171,0,South America +2023-12-01,50344,7429,"[""Headphones"", ""Tablet""]",749.88,{},66169,0,Africa +2024-03-06,50345,9909,"[""Charger""]",3076.12,"{"""": ""16%""}",120176,1,North America +2024-11-06,50346,522,"[""Wireless Mouse"", ""Charger"", ""Phone""]",994.02,{},45394,1,South America +2024-05-03,50347,1322,"[""Tablet""]",143.02,"{""loyalty"": ""9%""}",67331,0,Africa +2024-01-05,50348,8036,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1673.35,{},75122,0,Africa +2024-12-11,50349,307,"[""Wireless Mouse""]",1292.05,"{""seasonal"": ""22%""}",279227,1,Europe +2023-03-30,50350,5648,"[""Laptop"", ""Wireless Mouse""]",4906.84,"{""seasonal"": ""7%""}",55617,1,Asia +2023-02-14,50351,2661,"[""Monitor"", ""Charger"", ""Headphones""]",400.39,{},265935,1,Africa +2023-08-03,50352,7136,"[""Keyboard"", ""Tablet"", ""Charger""]",2060.83,"{""promo"": ""28%""}",177964,0,Europe +2023-07-09,50353,5272,"[""Charger"", ""Laptop"", ""Tablet""]",1670.21,{},232466,1,Africa +2024-07-31,50354,4641,"[""Monitor""]",1161.16,{},114340,1,North America +2023-10-07,50355,9662,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3953.13,{},213024,1,Africa +2023-06-28,50356,3811,"[""Headphones"", ""Keyboard"", ""Charger""]",3633.72,"{""promo"": ""25%""}",174893,0,Asia +2024-11-08,50357,8098,"[""Keyboard"", ""Monitor"", ""Laptop""]",584.78,{},196606,1,Asia +2024-02-27,50358,663,"[""Monitor"", ""Wireless Mouse""]",1425.51,{},51894,0,South America +2024-05-28,50359,2780,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4398.31,"{"""": ""13%""}",151451,1,Europe +2024-09-01,50360,4035,"[""Wireless Mouse""]",4147.07,"{"""": ""27%""}",125905,0,Africa +2024-02-26,50361,6310,"[""Laptop""]",2764.14,{},284382,1,Africa +2023-09-15,50362,6984,"[""Phone""]",4832.7,{},165999,0,Asia +2023-07-09,50363,3062,"[""Headphones""]",1627.32,"{""promo"": ""17%""}",2134,1,Europe +2023-12-15,50364,8164,"[""Charger""]",2542.21,{},57057,0,Asia +2024-11-02,50365,7677,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2367.7,{},152328,1,North America +2024-02-25,50366,7571,"[""Charger"", ""Wireless Mouse""]",4864.16,"{""promo"": ""21%""}",3288,1,North America +2023-08-02,50367,6854,"[""Headphones"", ""Wireless Mouse""]",144.19,{},228269,0,Europe +2024-01-28,50368,5175,"[""Keyboard"", ""Wireless Mouse""]",2061.32,"{""seasonal"": ""23%""}",48697,0,Europe +2024-09-05,50369,4118,"[""Charger"", ""Phone""]",2630.25,"{"""": ""15%""}",267980,0,North America +2023-10-09,50370,248,"[""Keyboard""]",2536.89,"{""promo"": ""23%""}",291228,1,Europe +2024-03-29,50371,4661,"[""Headphones"", ""Charger""]",1361.27,"{""loyalty"": ""28%""}",66319,0,Asia +2024-12-23,50372,2770,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1673.1,{},2711,0,Africa +2024-06-01,50373,248,"[""Keyboard"", ""Laptop""]",2176.19,"{"""": ""13%""}",216304,1,North America +2023-11-15,50374,366,"[""Laptop"", ""Charger"", ""Monitor""]",456.43,{},247834,1,Asia +2024-12-15,50375,8021,"[""Headphones"", ""Tablet"", ""Keyboard""]",558.44,{},227871,1,North America +2023-02-04,50376,6945,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2190.51,"{""promo"": ""14%""}",100476,0,Europe +2023-05-10,50377,3364,"[""Charger"", ""Headphones""]",344.13,"{""seasonal"": ""8%""}",190750,1,South America +2024-03-23,50378,737,"[""Charger"", ""Keyboard""]",3159.91,"{""promo"": ""11%""}",284673,0,North America +2023-10-22,50379,2268,"[""Monitor""]",2828.29,{},250373,1,South America +2023-03-31,50380,4162,"[""Phone"", ""Laptop"", ""Tablet""]",4922.6,{},1705,1,North America +2024-03-13,50381,8924,"[""Monitor"", ""Phone""]",949.48,"{""promo"": ""29%""}",253521,1,South America +2024-07-31,50382,1979,"[""Laptop"", ""Wireless Mouse""]",3796.78,{},231261,0,North America +2024-11-12,50383,7099,"[""Wireless Mouse"", ""Headphones""]",167.45,{},38108,0,North America +2024-12-25,50384,3781,"[""Headphones""]",3801.67,{},83349,0,Europe +2023-01-04,50385,8590,"[""Keyboard"", ""Tablet"", ""Charger""]",1768.49,{},164366,1,Asia +2024-01-06,50386,3893,"[""Headphones"", ""Laptop""]",2878.85,{},101799,0,North America +2024-12-21,50387,582,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1181.41,"{""seasonal"": ""25%""}",165002,1,South America +2023-10-26,50388,1912,"[""Headphones"", ""Keyboard""]",2228.87,{},77088,1,Europe +2024-02-21,50389,2123,"[""Headphones"", ""Phone""]",2664.36,"{""promo"": ""29%""}",129504,0,Africa +2024-11-09,50390,2848,"[""Tablet"", ""Keyboard"", ""Headphones""]",554.8,{},219961,0,South America +2023-10-29,50391,1391,"[""Laptop"", ""Headphones""]",1969.32,{},231879,0,South America +2024-08-18,50392,3851,"[""Tablet""]",610.44,"{""promo"": ""13%""}",14745,0,Europe +2024-05-27,50393,3851,"[""Headphones""]",2078.49,{},47917,1,Africa +2024-02-18,50394,3351,"[""Charger""]",601.27,{},186665,0,South America +2024-01-23,50395,8858,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3159.69,{},129531,0,Africa +2023-01-09,50396,2785,"[""Tablet""]",1870.32,{},109149,0,Africa +2024-04-20,50397,1158,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3500.15,{},169194,0,South America +2023-08-10,50398,9796,"[""Phone""]",3793.86,"{"""": ""12%""}",1004,0,Asia +2023-09-09,50399,1227,"[""Monitor""]",1960.72,"{""seasonal"": ""7%""}",71749,1,Asia +2023-01-28,50400,6973,"[""Laptop""]",1116.52,"{""seasonal"": ""23%""}",96050,1,South America +2023-07-09,50401,8116,"[""Charger""]",1573.32,{},114749,1,Europe +2023-01-08,50402,83,"[""Charger"", ""Phone""]",4186.68,"{""loyalty"": ""18%""}",155274,0,Asia +2024-04-04,50403,3829,"[""Phone"", ""Monitor""]",2770.14,"{"""": ""9%""}",96744,1,North America +2023-06-21,50404,4297,"[""Charger"", ""Phone"", ""Wireless Mouse""]",150.73,{},163659,0,Asia +2023-08-25,50405,570,"[""Tablet"", ""Charger""]",4868.95,{},29840,1,Africa +2023-05-23,50406,4941,"[""Tablet"", ""Headphones""]",3677.79,"{""seasonal"": ""24%""}",191250,1,Asia +2024-05-03,50407,102,"[""Keyboard"", ""Tablet""]",912.24,{},31563,0,South America +2023-11-22,50408,3284,"[""Monitor"", ""Headphones""]",656.87,"{"""": ""10%""}",129100,1,Europe +2023-11-03,50409,3867,"[""Headphones"", ""Laptop"", ""Charger""]",328.24,{},80611,1,Africa +2024-10-14,50410,8156,"[""Monitor"", ""Wireless Mouse""]",4134.02,"{"""": ""30%""}",286869,0,South America +2023-10-01,50411,6446,"[""Keyboard"", ""Headphones""]",698.14,{},258551,0,Asia +2024-05-19,50412,8429,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2913.85,"{""seasonal"": ""6%""}",124848,0,Africa +2023-01-10,50413,9642,"[""Headphones"", ""Tablet"", ""Keyboard""]",181.2,{},49991,1,Africa +2023-02-08,50414,3164,"[""Keyboard""]",133.3,{},98027,0,North America +2023-12-04,50415,4803,"[""Keyboard"", ""Phone"", ""Monitor""]",4690.89,{},162670,1,Africa +2024-03-17,50416,9363,"[""Keyboard""]",877.32,"{""promo"": ""20%""}",116035,1,Africa +2024-03-12,50417,8101,"[""Keyboard""]",119.82,"{""loyalty"": ""12%""}",30355,1,North America +2024-06-09,50418,8852,"[""Headphones"", ""Monitor"", ""Tablet""]",4049.81,{},15523,1,Asia +2023-10-27,50419,5489,"[""Wireless Mouse""]",263.5,"{"""": ""26%""}",197807,1,Asia +2023-03-06,50420,1643,"[""Wireless Mouse"", ""Tablet""]",3121.84,"{""seasonal"": ""16%""}",297541,0,South America +2024-09-06,50421,4007,"[""Laptop""]",4421.21,{},23475,1,South America +2024-07-13,50422,3489,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",596.16,{},154748,0,South America +2023-03-20,50423,9354,"[""Charger""]",2247.67,{},253200,1,Asia +2023-11-02,50424,4469,"[""Wireless Mouse""]",3707.19,{},4600,0,South America +2024-03-30,50425,8360,"[""Headphones"", ""Phone""]",4744.27,{},266807,1,Asia +2023-09-25,50426,9165,"[""Charger"", ""Phone""]",691.41,"{"""": ""30%""}",164021,1,North America +2023-08-17,50427,1457,"[""Headphones""]",3963.74,{},216153,0,North America +2023-01-28,50428,3653,"[""Wireless Mouse"", ""Charger""]",2940.82,{},26461,0,South America +2023-05-27,50429,9214,"[""Wireless Mouse""]",1584.93,{},133288,0,South America +2023-05-01,50430,6548,"[""Tablet"", ""Monitor""]",3601.54,{},245069,0,Africa +2024-11-22,50431,593,"[""Phone"", ""Monitor""]",2907.14,{},62034,1,North America +2024-04-19,50432,3573,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1098.69,"{""promo"": ""21%""}",5551,0,Europe +2024-04-19,50433,5733,"[""Laptop"", ""Charger"", ""Tablet""]",4350.87,"{"""": ""5%""}",76357,1,Asia +2024-01-23,50434,9629,"[""Laptop""]",4901.74,{},141484,1,Europe +2023-04-13,50435,9660,"[""Charger"", ""Phone""]",239.86,{},27274,1,Africa +2023-04-04,50436,1713,"[""Keyboard""]",1932.08,"{""loyalty"": ""15%""}",263658,1,South America +2024-04-25,50437,866,"[""Keyboard"", ""Charger"", ""Tablet""]",3062.27,"{""loyalty"": ""27%""}",131285,0,South America +2023-11-28,50438,1832,"[""Keyboard"", ""Phone""]",2262.52,{},32970,0,North America +2024-10-16,50439,246,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",624.43,{},223492,0,Africa +2024-02-26,50440,8602,"[""Phone"", ""Monitor"", ""Charger""]",1241.3,{},290816,1,Africa +2023-08-24,50441,3500,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",978.62,"{""seasonal"": ""6%""}",148765,0,Europe +2024-05-10,50442,6525,"[""Headphones"", ""Wireless Mouse""]",3693.93,{},207075,0,South America +2024-05-18,50443,2982,"[""Wireless Mouse""]",4256.04,"{""loyalty"": ""17%""}",243823,1,Africa +2023-10-31,50444,9127,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1041.89,"{"""": ""10%""}",209241,1,South America +2023-10-03,50445,5671,"[""Phone"", ""Tablet"", ""Headphones""]",3902.06,"{""seasonal"": ""29%""}",45682,0,South America +2024-06-30,50446,7201,"[""Charger"", ""Keyboard""]",4131.97,"{""seasonal"": ""18%""}",75576,0,South America +2024-12-25,50447,4388,"[""Laptop""]",1243.25,{},107494,0,South America +2023-03-12,50448,103,"[""Wireless Mouse""]",1144.58,{},98531,0,Europe +2023-09-30,50449,5240,"[""Monitor"", ""Tablet"", ""Charger""]",2688.79,"{"""": ""25%""}",8525,1,Asia +2023-05-15,50450,3380,"[""Tablet""]",4561.38,{},159670,0,Asia +2023-11-25,50451,5081,"[""Headphones"", ""Phone""]",4828.78,"{""loyalty"": ""10%""}",242106,1,Asia +2024-06-17,50452,2277,"[""Phone""]",126.41,{},287290,1,South America +2023-06-22,50453,6926,"[""Phone"", ""Tablet"", ""Monitor""]",3501.9,{},160349,1,Asia +2023-11-09,50454,9058,"[""Phone"", ""Keyboard""]",236.51,{},61910,1,Africa +2024-03-11,50455,1083,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3052.25,{},37405,0,Africa +2023-07-31,50456,6266,"[""Laptop""]",137.43,{},29390,1,South America +2023-03-30,50457,504,"[""Keyboard"", ""Tablet""]",4501.81,{},194331,0,Africa +2024-08-27,50458,9669,"[""Phone""]",3501.6,{},123239,1,Europe +2023-02-02,50459,9127,"[""Phone"", ""Charger""]",2823.34,"{"""": ""15%""}",57470,0,Africa +2024-07-02,50460,9424,"[""Phone""]",1034.68,{},40250,0,South America +2023-01-24,50461,2852,"[""Headphones"", ""Wireless Mouse""]",2798.78,{},185311,0,South America +2024-09-08,50462,7337,"[""Laptop"", ""Charger"", ""Phone""]",577.21,"{""promo"": ""13%""}",212435,1,South America +2023-10-08,50463,1047,"[""Phone""]",4432.8,{},232425,1,North America +2024-02-04,50464,5103,"[""Charger""]",3529.51,{},201352,0,Europe +2024-07-01,50465,9645,"[""Headphones""]",3676.45,{},218342,1,Africa +2024-06-27,50466,1138,"[""Monitor"", ""Phone"", ""Headphones""]",2446.9,{},94546,1,South America +2023-10-20,50467,311,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2071.11,"{""loyalty"": ""21%""}",94355,1,South America +2024-06-06,50468,8075,"[""Keyboard"", ""Wireless Mouse""]",1473.4,"{"""": ""6%""}",214322,0,Africa +2024-11-21,50469,7437,"[""Headphones""]",3981.57,{},285326,0,Europe +2024-05-25,50470,74,"[""Wireless Mouse"", ""Tablet""]",1081.05,{},39521,0,South America +2024-12-16,50471,4693,"[""Tablet"", ""Phone"", ""Keyboard""]",113.79,"{"""": ""18%""}",293854,0,Asia +2023-06-19,50472,2509,"[""Charger"", ""Phone""]",4737.99,"{""promo"": ""5%""}",114035,0,South America +2023-03-14,50473,740,"[""Keyboard"", ""Phone""]",3212.06,{},2594,0,Europe +2023-05-20,50474,950,"[""Charger""]",2173.61,{},153762,0,South America +2023-04-18,50475,6432,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",968.94,"{"""": ""30%""}",2127,0,Asia +2023-05-30,50476,6600,"[""Tablet""]",2597.62,{},196119,0,Africa +2024-01-08,50477,6551,"[""Monitor"", ""Phone""]",4909.6,"{"""": ""28%""}",155055,1,Europe +2023-12-28,50478,7974,"[""Headphones"", ""Charger"", ""Laptop""]",1831.43,"{""loyalty"": ""25%""}",52664,0,Asia +2023-10-10,50479,6201,"[""Keyboard"", ""Phone""]",1593.73,"{""promo"": ""16%""}",184920,1,Asia +2024-01-07,50480,6557,"[""Monitor""]",1426.53,{},99769,0,Asia +2023-07-11,50481,8248,"[""Tablet"", ""Wireless Mouse""]",1174.35,"{"""": ""19%""}",55301,1,Africa +2023-07-09,50482,9393,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",756.93,{},274481,1,North America +2023-09-11,50483,7923,"[""Charger"", ""Monitor"", ""Laptop""]",4003.22,"{""loyalty"": ""27%""}",196574,0,South America +2023-06-22,50484,1648,"[""Phone"", ""Headphones""]",1173.75,{},248203,1,Europe +2023-02-17,50485,5846,"[""Tablet""]",2468.47,{},126886,0,South America +2023-11-12,50486,3760,"[""Phone""]",2145.71,"{""promo"": ""9%""}",14800,1,Europe +2023-06-04,50487,7216,"[""Headphones""]",1732.65,{},5768,1,South America +2023-12-01,50488,80,"[""Charger"", ""Phone""]",149.11,"{""promo"": ""14%""}",209379,0,Europe +2024-06-18,50489,6525,"[""Keyboard"", ""Tablet""]",899.03,"{""loyalty"": ""23%""}",143010,0,South America +2024-10-02,50490,736,"[""Keyboard""]",3019.59,"{"""": ""30%""}",100044,1,Africa +2023-11-03,50491,5661,"[""Keyboard"", ""Phone""]",2362.85,{},253003,0,Europe +2024-05-08,50492,190,"[""Tablet"", ""Headphones"", ""Keyboard""]",4923.82,{},263309,0,Asia +2024-04-16,50493,8995,"[""Phone"", ""Tablet""]",1561.84,{},48718,1,Asia +2024-05-12,50494,4690,"[""Charger"", ""Wireless Mouse""]",3791.02,{},49630,0,Europe +2024-06-18,50495,6236,"[""Keyboard"", ""Laptop""]",1267.02,"{"""": ""10%""}",16269,0,Africa +2024-01-25,50496,9583,"[""Monitor"", ""Charger"", ""Laptop""]",4913.69,{},162361,0,Asia +2023-07-17,50497,6286,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",304.58,{},125760,0,Europe +2024-01-21,50498,4207,"[""Laptop"", ""Phone""]",4543.04,{},281436,0,North America +2023-08-24,50499,4691,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",882.83,{},5463,1,Africa +2023-04-20,50500,5632,"[""Keyboard"", ""Tablet"", ""Charger""]",4403.55,{},257128,0,South America +2024-07-26,50501,1635,"[""Monitor""]",1547.41,"{"""": ""17%""}",261070,1,Asia +2024-05-18,50502,262,"[""Headphones""]",4789.25,{},108951,1,Africa +2023-02-13,50503,8078,"[""Monitor"", ""Headphones""]",4364.54,"{""loyalty"": ""9%""}",34242,1,North America +2023-12-05,50504,6390,"[""Monitor"", ""Laptop""]",3309.25,"{""loyalty"": ""7%""}",137582,0,Europe +2023-12-12,50505,9398,"[""Headphones""]",1654.77,"{""loyalty"": ""20%""}",281812,0,Asia +2024-03-30,50506,7167,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4481.93,{},110621,0,South America +2023-05-26,50507,1639,"[""Keyboard"", ""Laptop"", ""Tablet""]",3550.62,"{""promo"": ""13%""}",129601,1,Asia +2024-01-15,50508,6811,"[""Headphones"", ""Monitor"", ""Charger""]",3787.44,{},50528,1,Asia +2023-12-04,50509,9303,"[""Headphones""]",1160.45,"{""promo"": ""19%""}",195674,0,Africa +2023-03-08,50510,2183,"[""Monitor"", ""Wireless Mouse""]",3494.65,"{""loyalty"": ""29%""}",49998,0,Africa +2023-06-09,50511,33,"[""Headphones"", ""Phone""]",2218.86,{},41472,1,South America +2023-03-31,50512,8409,"[""Tablet"", ""Monitor""]",1785.18,{},155192,0,Africa +2023-04-10,50513,300,"[""Charger"", ""Laptop"", ""Keyboard""]",4441.76,"{""seasonal"": ""11%""}",186646,0,Asia +2023-11-28,50514,3430,"[""Wireless Mouse""]",602.4,{},173056,0,Europe +2023-09-03,50515,1526,"[""Charger"", ""Monitor"", ""Phone""]",3116.13,"{""seasonal"": ""11%""}",144814,1,Europe +2024-07-14,50516,5732,"[""Tablet"", ""Headphones"", ""Monitor""]",3892.24,"{""loyalty"": ""16%""}",293073,1,Africa +2024-07-01,50517,1569,"[""Tablet""]",901.7,{},75188,1,South America +2024-09-27,50518,842,"[""Charger""]",4794.62,{},37890,1,North America +2024-11-05,50519,9655,"[""Wireless Mouse"", ""Keyboard""]",3678.43,{},1461,1,South America +2024-06-04,50520,9071,"[""Phone"", ""Charger"", ""Monitor""]",3384.15,{},1368,1,North America +2023-04-14,50521,6967,"[""Monitor""]",1474.88,"{""loyalty"": ""17%""}",117477,0,Europe +2023-03-16,50522,9138,"[""Charger"", ""Keyboard""]",1864.44,"{""promo"": ""22%""}",30491,1,Africa +2024-07-05,50523,1553,"[""Tablet"", ""Keyboard"", ""Monitor""]",4699.67,{},185661,1,South America +2023-09-30,50524,1961,"[""Wireless Mouse"", ""Tablet""]",692.05,"{"""": ""9%""}",271365,1,Europe +2023-08-22,50525,2570,"[""Laptop"", ""Keyboard"", ""Charger""]",88.58,"{"""": ""21%""}",76024,0,Asia +2024-06-12,50526,8959,"[""Keyboard"", ""Headphones"", ""Phone""]",599.13,{},238116,0,North America +2024-06-18,50527,8920,"[""Tablet"", ""Keyboard""]",1853.18,{},27905,1,North America +2024-09-24,50528,4773,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4840.01,{},47409,1,Europe +2024-05-26,50529,2977,"[""Charger"", ""Keyboard""]",4831.03,"{""promo"": ""16%""}",140335,0,Asia +2023-02-18,50530,3928,"[""Wireless Mouse"", ""Phone""]",1687.74,{},139503,1,South America +2023-06-02,50531,256,"[""Headphones"", ""Laptop"", ""Charger""]",2035.51,{},151750,1,North America +2024-04-17,50532,1208,"[""Monitor"", ""Laptop"", ""Keyboard""]",4126.2,{},231599,0,South America +2024-07-01,50533,96,"[""Charger""]",4232.52,{},125966,0,South America +2023-08-24,50534,9710,"[""Headphones"", ""Charger"", ""Laptop""]",4827.31,{},238849,0,Africa +2024-05-18,50535,888,"[""Monitor"", ""Phone""]",2481.83,{},43270,1,North America +2024-07-29,50536,3163,"[""Laptop"", ""Headphones"", ""Phone""]",3351.31,{},170890,0,North America +2023-10-16,50537,6075,"[""Monitor"", ""Charger""]",1192.92,"{""loyalty"": ""7%""}",113460,0,South America +2023-07-16,50538,2375,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4189.58,{},93115,1,Asia +2024-11-17,50539,2391,"[""Laptop""]",963.21,"{"""": ""29%""}",228412,1,North America +2023-07-06,50540,9388,"[""Headphones"", ""Keyboard""]",415.56,"{"""": ""18%""}",41122,1,North America +2023-07-13,50541,6542,"[""Charger"", ""Phone""]",1242.85,"{""loyalty"": ""22%""}",65053,1,Europe +2023-03-16,50542,6545,"[""Monitor"", ""Charger""]",4455.97,{},190070,0,South America +2023-09-16,50543,4359,"[""Charger""]",3424.83,"{""seasonal"": ""9%""}",269034,0,Asia +2024-01-03,50544,7370,"[""Monitor"", ""Laptop"", ""Charger""]",404.61,{},62398,1,Asia +2023-02-08,50545,9497,"[""Wireless Mouse""]",293.05,{},7971,1,Europe +2024-08-20,50546,6832,"[""Charger"", ""Phone"", ""Tablet""]",3197.0,{},23248,1,South America +2023-07-02,50547,4579,"[""Charger""]",539.71,{},233393,1,North America +2023-06-01,50548,6179,"[""Keyboard""]",656.0,"{""seasonal"": ""15%""}",2190,1,Asia +2024-03-06,50549,5959,"[""Headphones"", ""Monitor""]",958.55,{},275311,0,Europe +2024-05-14,50550,1883,"[""Charger"", ""Tablet""]",2897.64,{},183946,1,Africa +2023-12-20,50551,6262,"[""Headphones"", ""Keyboard""]",3551.79,{},147574,0,South America +2023-10-21,50552,1779,"[""Keyboard"", ""Tablet"", ""Charger""]",1522.85,"{""promo"": ""24%""}",52352,1,Africa +2024-11-03,50553,4721,"[""Phone"", ""Laptop"", ""Charger""]",3833.57,{},252602,0,South America +2024-08-30,50554,2544,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4027.49,{},212048,0,Asia +2023-09-20,50555,8855,"[""Monitor"", ""Keyboard""]",3006.34,"{"""": ""13%""}",20105,0,South America +2023-12-15,50556,5151,"[""Phone""]",4146.27,"{""seasonal"": ""7%""}",208428,1,Europe +2023-01-12,50557,8467,"[""Headphones"", ""Laptop""]",4537.43,"{""promo"": ""30%""}",55983,0,North America +2024-01-21,50558,4538,"[""Tablet"", ""Monitor"", ""Headphones""]",3575.94,"{""promo"": ""19%""}",200914,1,Africa +2024-07-11,50559,9727,"[""Tablet""]",51.1,{},253627,0,Africa +2024-11-08,50560,5091,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3250.62,"{""seasonal"": ""8%""}",19881,0,South America +2023-07-09,50561,1886,"[""Headphones"", ""Charger"", ""Phone""]",1939.24,"{"""": ""30%""}",150011,0,North America +2024-02-04,50562,4337,"[""Phone"", ""Monitor"", ""Charger""]",4992.83,"{""loyalty"": ""7%""}",203033,1,Europe +2024-04-19,50563,8153,"[""Monitor""]",2794.61,"{"""": ""17%""}",62298,1,North America +2024-01-30,50564,8427,"[""Charger"", ""Wireless Mouse""]",4830.32,"{""loyalty"": ""24%""}",243693,1,Asia +2023-10-23,50565,2384,"[""Keyboard"", ""Tablet"", ""Headphones""]",3207.51,"{""seasonal"": ""21%""}",8193,0,North America +2024-10-30,50566,505,"[""Phone"", ""Keyboard""]",195.64,"{"""": ""21%""}",162007,0,North America +2024-01-30,50567,5072,"[""Charger"", ""Keyboard""]",4889.4,{},298613,0,Europe +2024-09-04,50568,4969,"[""Laptop"", ""Headphones""]",3675.67,"{"""": ""16%""}",100157,1,Asia +2023-07-21,50569,6691,"[""Tablet"", ""Keyboard"", ""Monitor""]",2488.12,{},38811,0,Asia +2023-11-23,50570,43,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2062.17,{},231300,1,Europe +2023-10-27,50571,8384,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3101.83,{},177878,1,South America +2024-11-21,50572,1951,"[""Laptop"", ""Phone"", ""Keyboard""]",3505.43,"{""loyalty"": ""12%""}",37802,0,Europe +2024-10-28,50573,9985,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2223.41,"{""promo"": ""12%""}",240982,1,Europe +2023-01-27,50574,3572,"[""Headphones""]",2345.16,{},106651,1,Africa +2024-09-10,50575,7036,"[""Laptop"", ""Tablet""]",2267.73,"{"""": ""27%""}",298028,0,Europe +2024-09-25,50576,8317,"[""Tablet"", ""Laptop"", ""Keyboard""]",3868.9,{},154215,1,Asia +2024-08-03,50577,7569,"[""Headphones"", ""Tablet"", ""Phone""]",4415.77,"{""seasonal"": ""20%""}",7604,0,Europe +2023-11-18,50578,3939,"[""Laptop""]",846.2,{},238143,1,Asia +2024-08-28,50579,2031,"[""Phone""]",2871.42,{},95381,1,South America +2023-12-14,50580,6701,"[""Charger""]",4112.68,{},213197,0,Africa +2023-01-10,50581,1834,"[""Laptop""]",4576.17,{},278199,1,North America +2023-08-30,50582,8362,"[""Monitor"", ""Laptop""]",1025.55,"{""loyalty"": ""19%""}",18027,1,South America +2024-12-04,50583,584,"[""Headphones"", ""Monitor"", ""Keyboard""]",297.67,"{""loyalty"": ""25%""}",189522,1,Africa +2023-08-02,50584,6898,"[""Keyboard"", ""Charger""]",3157.46,{},160647,1,Africa +2023-07-13,50585,6679,"[""Tablet""]",2488.3,"{""promo"": ""29%""}",239425,0,Europe +2023-09-01,50586,1266,"[""Wireless Mouse""]",3227.28,{},289512,0,Europe +2023-06-23,50587,6343,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",835.45,"{""loyalty"": ""10%""}",131649,1,Asia +2023-01-02,50588,6880,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3116.69,"{""seasonal"": ""11%""}",248494,0,North America +2023-02-21,50589,8798,"[""Laptop"", ""Monitor"", ""Tablet""]",1460.47,{},162158,0,Asia +2023-10-07,50590,705,"[""Headphones"", ""Laptop""]",2405.11,"{""seasonal"": ""9%""}",116988,0,Africa +2023-08-11,50591,1512,"[""Phone"", ""Keyboard""]",3465.48,"{""loyalty"": ""24%""}",70601,1,North America +2023-10-16,50592,4281,"[""Keyboard""]",3409.58,"{""seasonal"": ""7%""}",233226,1,North America +2024-03-28,50593,9389,"[""Tablet"", ""Laptop"", ""Charger""]",3772.75,{},218564,0,Europe +2023-12-10,50594,2112,"[""Keyboard""]",4186.46,{},244269,0,South America +2023-05-03,50595,6413,"[""Charger""]",1927.58,{},99683,1,Asia +2023-10-01,50596,5003,"[""Wireless Mouse"", ""Monitor""]",4728.52,{},131411,0,Europe +2023-08-28,50597,9245,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1349.02,{},28090,1,North America +2023-07-10,50598,7286,"[""Monitor"", ""Charger""]",4353.2,{},76250,1,North America +2023-02-06,50599,571,"[""Tablet"", ""Charger""]",2666.13,"{""loyalty"": ""10%""}",28863,1,South America +2024-01-01,50600,1839,"[""Phone""]",3868.62,"{""seasonal"": ""10%""}",266491,0,North America +2023-07-26,50601,5494,"[""Tablet"", ""Charger""]",408.19,"{""seasonal"": ""9%""}",269671,0,Europe +2024-07-21,50602,881,"[""Charger""]",2713.62,{},92092,0,Africa +2023-08-03,50603,7167,"[""Wireless Mouse""]",497.99,{},3005,0,Europe +2023-04-23,50604,3305,"[""Monitor""]",4702.56,{},124212,1,Europe +2023-09-20,50605,5731,"[""Wireless Mouse"", ""Phone""]",2525.84,{},253087,1,South America +2024-03-31,50606,5414,"[""Phone"", ""Laptop""]",1370.58,"{""promo"": ""10%""}",225768,1,Europe +2024-08-28,50607,4192,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2379.84,{},221201,1,Europe +2024-08-18,50608,4188,"[""Monitor"", ""Wireless Mouse""]",4127.4,{},250805,0,Africa +2023-02-02,50609,1577,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3474.73,"{""seasonal"": ""15%""}",209554,1,Europe +2023-11-25,50610,1758,"[""Laptop"", ""Monitor""]",3146.24,"{""promo"": ""13%""}",210351,0,South America +2024-08-29,50611,1147,"[""Headphones"", ""Keyboard"", ""Monitor""]",506.93,"{""seasonal"": ""21%""}",279720,1,South America +2024-07-28,50612,6288,"[""Monitor"", ""Wireless Mouse""]",3763.51,"{""promo"": ""7%""}",37189,1,Asia +2024-01-09,50613,5942,"[""Tablet"", ""Keyboard"", ""Headphones""]",4675.19,{},221982,1,Asia +2024-07-22,50614,7388,"[""Laptop""]",2932.87,"{""promo"": ""21%""}",71150,0,Africa +2023-10-04,50615,9468,"[""Phone""]",4546.86,"{""promo"": ""27%""}",227629,0,Asia +2023-07-03,50616,6689,"[""Phone"", ""Wireless Mouse""]",1999.28,{},118012,0,Asia +2024-03-27,50617,5592,"[""Keyboard"", ""Monitor"", ""Laptop""]",4484.28,{},88426,1,Africa +2024-09-20,50618,4797,"[""Phone"", ""Charger""]",1906.82,"{"""": ""11%""}",126952,0,South America +2023-02-25,50619,7483,"[""Keyboard""]",1091.62,"{""loyalty"": ""17%""}",46598,0,Africa +2023-10-31,50620,4996,"[""Laptop""]",3680.69,"{""loyalty"": ""16%""}",103103,0,South America +2024-08-22,50621,7710,"[""Tablet"", ""Monitor""]",2963.01,{},122754,0,South America +2023-04-30,50622,7531,"[""Monitor"", ""Laptop""]",2353.02,"{"""": ""28%""}",208664,1,Africa +2023-07-01,50623,2498,"[""Laptop"", ""Tablet"", ""Monitor""]",4110.59,"{""loyalty"": ""10%""}",5194,1,Europe +2024-06-22,50624,2072,"[""Keyboard""]",2494.53,"{""loyalty"": ""11%""}",53118,0,Africa +2024-03-04,50625,8817,"[""Monitor"", ""Headphones""]",2219.53,{},42603,1,Europe +2024-12-27,50626,2482,"[""Laptop"", ""Phone"", ""Tablet""]",4533.44,"{""loyalty"": ""5%""}",128256,1,South America +2024-02-11,50627,201,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3268.57,"{""seasonal"": ""24%""}",24666,0,Africa +2024-11-04,50628,1346,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4911.42,{},38979,0,North America +2023-10-06,50629,841,"[""Monitor"", ""Keyboard"", ""Phone""]",1972.26,{},172034,1,Africa +2023-04-15,50630,4358,"[""Laptop"", ""Phone"", ""Monitor""]",4201.47,{},111122,1,Africa +2024-11-08,50631,436,"[""Charger"", ""Headphones"", ""Laptop""]",671.61,"{""promo"": ""25%""}",67398,1,South America +2024-05-15,50632,2742,"[""Charger"", ""Phone""]",2683.91,"{""loyalty"": ""25%""}",298812,0,Africa +2024-03-07,50633,1647,"[""Monitor"", ""Charger""]",4898.58,"{"""": ""6%""}",143948,1,Asia +2024-07-02,50634,256,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2253.36,"{""promo"": ""6%""}",175002,0,Europe +2024-01-22,50635,8463,"[""Headphones""]",1889.04,"{""loyalty"": ""26%""}",35077,1,Africa +2024-07-31,50636,9399,"[""Laptop"", ""Monitor"", ""Phone""]",4663.3,"{"""": ""29%""}",170278,0,Africa +2024-12-31,50637,8737,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4126.46,{},289325,0,Europe +2023-07-04,50638,669,"[""Charger""]",1677.4,{},279724,0,Asia +2023-07-15,50639,776,"[""Charger""]",4714.07,"{""seasonal"": ""21%""}",162242,1,Asia +2024-01-08,50640,1647,"[""Phone""]",1064.07,"{"""": ""5%""}",173473,1,South America +2024-11-29,50641,5254,"[""Laptop"", ""Phone""]",1256.69,{},77555,0,Asia +2024-12-31,50642,8165,"[""Headphones"", ""Monitor""]",3193.79,{},110776,1,North America +2024-07-20,50643,5595,"[""Laptop""]",1033.89,{},77612,0,Africa +2023-09-27,50644,3119,"[""Charger"", ""Monitor""]",2748.79,"{""loyalty"": ""15%""}",261168,1,North America +2023-11-19,50645,1889,"[""Headphones"", ""Monitor""]",399.56,"{"""": ""20%""}",95396,1,South America +2024-05-05,50646,7484,"[""Tablet"", ""Monitor""]",699.77,{},290092,0,Europe +2024-12-01,50647,4200,"[""Keyboard""]",1268.27,{},283040,1,South America +2023-05-23,50648,9690,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2783.88,{},65346,0,North America +2024-11-08,50649,6618,"[""Phone"", ""Keyboard"", ""Laptop""]",3428.03,"{""promo"": ""18%""}",299827,0,North America +2023-12-22,50650,5261,"[""Charger""]",4025.05,{},238289,0,North America +2024-05-16,50651,3584,"[""Monitor"", ""Wireless Mouse""]",3542.83,"{""promo"": ""9%""}",191087,0,South America +2024-12-25,50652,5661,"[""Phone"", ""Wireless Mouse""]",697.01,"{""seasonal"": ""25%""}",3981,0,Africa +2024-09-17,50653,932,"[""Headphones"", ""Monitor"", ""Charger""]",181.69,{},11928,0,Europe +2023-01-10,50654,3226,"[""Monitor"", ""Keyboard""]",2807.59,{},178827,0,Asia +2024-07-10,50655,2480,"[""Headphones"", ""Wireless Mouse""]",2308.27,{},5007,1,Asia +2024-10-26,50656,17,"[""Headphones"", ""Tablet"", ""Phone""]",1206.12,"{""promo"": ""21%""}",11035,0,South America +2024-12-21,50657,3110,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",345.03,"{"""": ""6%""}",55933,0,Europe +2023-04-08,50658,3812,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3869.55,{},78686,0,Asia +2024-04-02,50659,7745,"[""Laptop""]",4429.17,"{""seasonal"": ""17%""}",224874,1,South America +2023-04-05,50660,4319,"[""Phone""]",2796.21,"{"""": ""16%""}",92052,0,South America +2024-04-10,50661,3109,"[""Headphones"", ""Keyboard"", ""Phone""]",3622.76,"{"""": ""19%""}",26572,1,South America +2023-01-17,50662,7019,"[""Monitor"", ""Tablet""]",4117.0,{},101731,0,Africa +2023-05-28,50663,9122,"[""Monitor""]",3013.37,{},4815,0,Europe +2023-08-20,50664,636,"[""Laptop"", ""Headphones""]",2836.99,"{""loyalty"": ""16%""}",12254,1,North America +2023-05-26,50665,2916,"[""Charger"", ""Laptop""]",2582.19,"{"""": ""23%""}",237458,1,South America +2023-07-20,50666,479,"[""Tablet"", ""Laptop""]",3027.15,{},246405,1,Europe +2024-02-24,50667,2540,"[""Headphones"", ""Laptop"", ""Charger""]",2598.21,{},68367,1,South America +2024-01-31,50668,9515,"[""Laptop""]",1135.89,{},197313,0,North America +2024-09-19,50669,1855,"[""Wireless Mouse""]",4371.75,"{""promo"": ""10%""}",56106,0,Europe +2024-09-08,50670,4584,"[""Laptop"", ""Monitor"", ""Keyboard""]",2641.26,{},180409,0,North America +2023-08-19,50671,8232,"[""Monitor"", ""Laptop"", ""Headphones""]",3747.8,{},222351,1,North America +2024-06-12,50672,7390,"[""Monitor""]",4998.18,"{""loyalty"": ""13%""}",2275,0,Europe +2024-10-22,50673,2371,"[""Phone"", ""Keyboard""]",1945.83,{},11196,0,Africa +2024-10-11,50674,1235,"[""Charger"", ""Tablet""]",1112.07,"{""loyalty"": ""11%""}",73580,1,Europe +2024-04-05,50675,6513,"[""Keyboard"", ""Wireless Mouse""]",4051.57,{},105687,1,South America +2023-03-01,50676,9372,"[""Laptop""]",3111.66,{},270184,0,South America +2024-05-10,50677,2338,"[""Phone"", ""Wireless Mouse""]",361.84,{},180095,1,Europe +2024-07-05,50678,3156,"[""Monitor"", ""Laptop""]",1783.55,"{""promo"": ""20%""}",131635,1,North America +2024-10-11,50679,5570,"[""Headphones"", ""Laptop"", ""Phone""]",4193.13,"{"""": ""26%""}",222459,0,Europe +2024-08-11,50680,5061,"[""Keyboard""]",4131.35,"{""promo"": ""9%""}",91927,0,Europe +2024-10-31,50681,4227,"[""Monitor"", ""Headphones"", ""Tablet""]",1544.82,{},143375,1,Africa +2024-12-18,50682,3019,"[""Monitor""]",4971.45,"{""loyalty"": ""12%""}",163015,1,Asia +2024-03-07,50683,5690,"[""Laptop"", ""Wireless Mouse""]",2749.51,"{"""": ""24%""}",176003,0,South America +2023-11-10,50684,3217,"[""Headphones"", ""Keyboard"", ""Tablet""]",4333.51,"{""promo"": ""18%""}",192767,1,Asia +2024-09-15,50685,6369,"[""Charger"", ""Keyboard"", ""Laptop""]",1236.79,{},194314,0,Europe +2023-10-17,50686,3552,"[""Phone""]",3847.18,{},124782,0,Asia +2023-02-23,50687,9025,"[""Phone"", ""Keyboard"", ""Headphones""]",1969.2,{},218168,1,Europe +2024-11-25,50688,7577,"[""Phone""]",1053.52,{},231540,0,Europe +2024-03-30,50689,7769,"[""Laptop""]",3589.76,{},54217,0,Asia +2024-10-07,50690,907,"[""Tablet"", ""Charger"", ""Monitor""]",1390.68,{},102892,1,South America +2024-02-28,50691,5563,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4553.71,{},136964,1,Africa +2024-08-31,50692,1004,"[""Wireless Mouse"", ""Headphones""]",4835.69,"{"""": ""17%""}",94923,1,Asia +2024-05-29,50693,7047,"[""Laptop""]",3737.13,{},224628,1,North America +2024-04-21,50694,7059,"[""Laptop"", ""Headphones""]",3279.62,"{"""": ""29%""}",146991,0,Africa +2024-01-18,50695,1714,"[""Keyboard"", ""Headphones"", ""Charger""]",809.2,"{"""": ""26%""}",251434,1,Europe +2024-03-26,50696,5497,"[""Laptop""]",284.25,"{""promo"": ""10%""}",173136,1,North America +2024-01-20,50697,1430,"[""Tablet""]",2401.39,{},53808,0,South America +2023-02-04,50698,1644,"[""Phone"", ""Monitor"", ""Tablet""]",170.33,"{""seasonal"": ""29%""}",123240,1,Europe +2024-01-30,50699,3545,"[""Monitor""]",3552.42,{},112435,1,Europe +2023-05-13,50700,9984,"[""Headphones"", ""Laptop"", ""Tablet""]",3163.21,"{"""": ""11%""}",295456,1,South America +2023-03-01,50701,3982,"[""Wireless Mouse"", ""Keyboard""]",4168.0,{},48552,0,Europe +2023-08-10,50702,8758,"[""Monitor"", ""Charger"", ""Laptop""]",698.26,"{""seasonal"": ""24%""}",238712,0,North America +2023-07-03,50703,3451,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4465.47,{},33769,1,Asia +2024-06-04,50704,2121,"[""Wireless Mouse""]",4466.94,"{""loyalty"": ""9%""}",223146,0,South America +2024-10-03,50705,4240,"[""Laptop"", ""Headphones"", ""Monitor""]",4765.71,{},163548,1,Africa +2024-08-22,50706,8215,"[""Laptop""]",788.3,{},164295,0,South America +2024-07-21,50707,2575,"[""Laptop""]",1997.57,{},4350,1,South America +2024-07-28,50708,1764,"[""Wireless Mouse"", ""Tablet""]",3866.06,"{""loyalty"": ""22%""}",245319,1,Europe +2023-01-08,50709,6354,"[""Monitor"", ""Charger""]",4849.45,{},249520,0,Africa +2023-04-18,50710,2373,"[""Tablet"", ""Monitor""]",3134.12,"{""seasonal"": ""6%""}",160914,1,Asia +2023-01-25,50711,1389,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",105.93,"{""promo"": ""28%""}",275978,0,South America +2023-01-11,50712,2585,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4230.57,"{"""": ""9%""}",194909,1,Africa +2024-09-14,50713,7498,"[""Laptop"", ""Keyboard"", ""Monitor""]",3381.93,"{""promo"": ""15%""}",172265,1,South America +2024-10-22,50714,6462,"[""Phone""]",2414.54,"{""loyalty"": ""27%""}",37314,0,North America +2024-03-15,50715,5325,"[""Keyboard""]",4298.5,"{""seasonal"": ""24%""}",57777,1,North America +2023-07-30,50716,1244,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",929.07,{},146189,0,Europe +2023-10-07,50717,4026,"[""Monitor"", ""Wireless Mouse""]",4573.94,"{""seasonal"": ""30%""}",299720,0,Europe +2024-05-10,50718,2387,"[""Wireless Mouse"", ""Phone""]",3820.51,"{""seasonal"": ""17%""}",126421,0,Europe +2024-12-29,50719,9860,"[""Charger""]",4167.43,{},170699,0,Africa +2023-01-20,50720,2446,"[""Tablet"", ""Laptop""]",4003.24,"{"""": ""14%""}",184378,0,North America +2024-11-24,50721,5438,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2292.26,{},65287,0,Asia +2023-03-13,50722,6760,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4708.21,{},33867,1,Asia +2023-05-16,50723,628,"[""Monitor"", ""Keyboard"", ""Phone""]",2260.17,{},109583,0,Africa +2023-04-18,50724,8395,"[""Headphones""]",992.96,{},77011,0,Europe +2023-07-13,50725,4280,"[""Headphones""]",1766.06,{},229747,0,Africa +2024-12-29,50726,6110,"[""Tablet""]",3869.96,"{"""": ""27%""}",36786,0,South America +2023-02-05,50727,3417,"[""Charger"", ""Tablet""]",2314.25,{},11061,1,Asia +2024-01-29,50728,2558,"[""Phone"", ""Laptop""]",3092.85,"{"""": ""13%""}",237435,1,Africa +2023-09-12,50729,9865,"[""Keyboard"", ""Monitor"", ""Charger""]",2593.72,"{""seasonal"": ""17%""}",108460,0,Asia +2024-10-12,50730,1043,"[""Keyboard"", ""Headphones""]",1440.57,{},194024,0,South America +2024-05-31,50731,426,"[""Tablet"", ""Charger"", ""Keyboard""]",544.28,{},76373,1,Asia +2023-04-19,50732,914,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4097.96,{},161695,0,Asia +2023-04-23,50733,5205,"[""Tablet""]",3641.21,"{""promo"": ""14%""}",16032,0,Europe +2024-01-05,50734,1651,"[""Monitor"", ""Laptop""]",4334.46,{},268747,1,Asia +2023-12-19,50735,2472,"[""Charger"", ""Keyboard"", ""Monitor""]",1062.9,"{""seasonal"": ""25%""}",200347,0,Africa +2023-07-11,50736,1204,"[""Headphones""]",1334.78,{},223461,1,North America +2024-11-15,50737,1883,"[""Charger"", ""Laptop"", ""Phone""]",2449.13,{},177171,1,Europe +2024-02-06,50738,4811,"[""Charger""]",3251.05,"{""seasonal"": ""16%""}",62464,0,Asia +2024-03-02,50739,4112,"[""Keyboard"", ""Charger"", ""Headphones""]",4954.21,{},266077,0,Africa +2024-09-01,50740,7485,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2588.25,{},123059,0,North America +2023-06-04,50741,1910,"[""Charger"", ""Tablet""]",2298.71,{},100796,0,Africa +2023-11-23,50742,1333,"[""Charger"", ""Wireless Mouse""]",2673.38,"{"""": ""19%""}",103732,1,South America +2023-01-13,50743,4481,"[""Wireless Mouse""]",3906.85,"{""seasonal"": ""6%""}",13611,0,South America +2023-07-24,50744,4224,"[""Tablet"", ""Wireless Mouse""]",1834.02,"{"""": ""15%""}",125690,1,South America +2023-12-04,50745,1455,"[""Tablet"", ""Charger""]",2663.81,{},36075,1,North America +2024-09-15,50746,791,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3381.98,{},136232,0,Europe +2024-10-28,50747,9968,"[""Phone"", ""Wireless Mouse""]",4007.28,{},199532,0,Asia +2023-08-06,50748,4442,"[""Laptop""]",3386.04,"{""seasonal"": ""29%""}",45887,0,South America +2024-03-02,50749,1828,"[""Laptop"", ""Monitor"", ""Keyboard""]",3112.34,"{""loyalty"": ""5%""}",137691,0,Asia +2023-07-18,50750,4239,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4516.07,{},249171,0,Africa +2024-12-22,50751,7160,"[""Headphones"", ""Phone""]",1911.4,{},296657,0,Europe +2023-11-17,50752,2761,"[""Charger"", ""Laptop"", ""Phone""]",4292.6,{},25668,0,South America +2024-05-29,50753,5748,"[""Keyboard""]",756.23,"{""seasonal"": ""7%""}",148540,1,Asia +2023-04-29,50754,2762,"[""Headphones"", ""Charger"", ""Tablet""]",3483.16,{},201191,1,South America +2023-05-25,50755,7069,"[""Tablet"", ""Laptop""]",669.79,"{""loyalty"": ""25%""}",171398,1,Africa +2024-01-12,50756,1492,"[""Phone""]",1530.29,"{"""": ""28%""}",46582,0,South America +2024-01-11,50757,8067,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2893.08,"{""promo"": ""30%""}",129422,1,South America +2023-08-20,50758,7437,"[""Laptop"", ""Charger""]",432.91,{},168877,0,North America +2024-06-26,50759,2539,"[""Keyboard"", ""Laptop"", ""Monitor""]",4877.49,"{""seasonal"": ""29%""}",37449,1,South America +2023-07-24,50760,552,"[""Phone"", ""Laptop"", ""Headphones""]",2670.81,{},291169,0,Europe +2024-02-13,50761,5515,"[""Keyboard"", ""Headphones""]",1958.53,"{"""": ""16%""}",278895,0,North America +2024-05-14,50762,2258,"[""Phone""]",2516.31,"{""loyalty"": ""7%""}",235507,1,North America +2023-12-06,50763,3099,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",959.36,"{"""": ""10%""}",247255,1,Africa +2023-10-12,50764,9893,"[""Keyboard""]",4405.74,{},271657,1,South America +2024-07-17,50765,9046,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1899.82,"{"""": ""22%""}",141849,0,Asia +2023-08-28,50766,4399,"[""Charger""]",3384.63,{},49949,0,North America +2023-09-18,50767,7561,"[""Charger"", ""Phone"", ""Keyboard""]",4700.06,{},148917,1,South America +2024-03-11,50768,6206,"[""Laptop""]",2006.21,"{""promo"": ""16%""}",11277,0,North America +2023-12-24,50769,8630,"[""Wireless Mouse"", ""Monitor""]",4087.52,{},140292,0,Europe +2024-04-01,50770,5107,"[""Monitor"", ""Laptop"", ""Headphones""]",1541.75,{},107858,0,Asia +2024-10-03,50771,4991,"[""Tablet""]",3510.98,{},23806,0,North America +2023-01-09,50772,4941,"[""Headphones""]",2848.0,"{""seasonal"": ""14%""}",266718,0,Africa +2024-10-23,50773,6995,"[""Wireless Mouse"", ""Tablet""]",402.64,"{"""": ""16%""}",12910,1,Africa +2024-04-03,50774,5425,"[""Keyboard"", ""Monitor""]",3169.47,"{""loyalty"": ""25%""}",206002,1,North America +2024-12-04,50775,4335,"[""Laptop"", ""Charger"", ""Monitor""]",3033.92,{},7760,1,Africa +2023-01-06,50776,1407,"[""Tablet""]",3195.9,{},138410,0,North America +2024-02-08,50777,7203,"[""Laptop""]",168.06,{},69383,0,Africa +2023-08-27,50778,9439,"[""Keyboard""]",4849.35,{},292436,1,Europe +2024-11-13,50779,1877,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",573.79,"{""promo"": ""14%""}",265439,1,Asia +2023-05-28,50780,9132,"[""Phone""]",3643.44,{},267633,1,Africa +2023-11-18,50781,958,"[""Keyboard"", ""Phone""]",698.98,{},94747,1,North America +2024-05-30,50782,7398,"[""Tablet"", ""Monitor"", ""Headphones""]",2123.9,{},246845,1,Africa +2024-01-09,50783,2508,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4308.05,{},49676,0,Africa +2024-01-28,50784,1597,"[""Headphones""]",3167.7,{},26758,0,Africa +2023-04-07,50785,8482,"[""Phone"", ""Headphones""]",1124.04,{},156687,0,South America +2023-05-24,50786,8656,"[""Laptop"", ""Headphones"", ""Keyboard""]",2613.54,"{""seasonal"": ""16%""}",172806,0,South America +2023-01-15,50787,940,"[""Phone"", ""Tablet""]",2532.4,"{""promo"": ""9%""}",136240,1,South America +2023-07-20,50788,1583,"[""Laptop""]",2663.72,{},74039,0,Asia +2023-04-09,50789,9374,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1020.59,"{""promo"": ""20%""}",126378,0,Africa +2023-10-13,50790,3020,"[""Headphones"", ""Charger"", ""Monitor""]",4810.96,{},266418,0,Africa +2023-08-28,50791,7144,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",159.31,"{""promo"": ""25%""}",265285,0,North America +2023-03-30,50792,9369,"[""Laptop""]",1121.12,{},136986,0,North America +2023-02-16,50793,4752,"[""Phone"", ""Headphones""]",1823.39,{},120462,1,Asia +2024-10-11,50794,2567,"[""Laptop"", ""Monitor"", ""Tablet""]",4966.32,"{""loyalty"": ""26%""}",269180,1,South America +2024-04-14,50795,1906,"[""Headphones""]",1008.13,{},289285,1,North America +2024-02-27,50796,3335,"[""Phone""]",979.94,{},194890,0,Europe +2024-02-04,50797,4690,"[""Phone"", ""Laptop""]",1032.39,{},6234,0,South America +2024-01-10,50798,8349,"[""Phone"", ""Headphones"", ""Tablet""]",4695.25,"{""promo"": ""19%""}",244777,1,Africa +2023-05-26,50799,4287,"[""Phone"", ""Monitor""]",4347.39,"{""loyalty"": ""29%""}",117731,1,South America +2023-02-22,50800,4804,"[""Headphones"", ""Keyboard""]",857.54,"{""promo"": ""19%""}",127126,1,North America +2023-03-15,50801,382,"[""Laptop""]",86.47,{},77159,0,Asia +2023-08-06,50802,2486,"[""Wireless Mouse"", ""Monitor""]",2926.92,"{"""": ""17%""}",84321,0,Asia +2024-04-30,50803,2770,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1585.13,{},166867,1,Africa +2024-05-08,50804,3283,"[""Tablet""]",1817.24,{},89378,0,Asia +2023-11-28,50805,6509,"[""Keyboard"", ""Charger""]",4912.22,"{""promo"": ""6%""}",296752,1,South America +2023-07-06,50806,777,"[""Phone"", ""Charger"", ""Monitor""]",3832.48,{},12090,0,Asia +2023-07-28,50807,5105,"[""Monitor""]",2453.36,"{""loyalty"": ""21%""}",219119,1,Asia +2023-02-20,50808,1649,"[""Keyboard"", ""Headphones"", ""Phone""]",2584.63,"{"""": ""22%""}",282364,1,North America +2024-03-18,50809,4576,"[""Laptop"", ""Phone""]",4655.23,{},107105,1,South America +2023-10-30,50810,9925,"[""Phone"", ""Headphones""]",2407.09,"{""loyalty"": ""15%""}",202871,1,Europe +2023-03-11,50811,7590,"[""Tablet"", ""Wireless Mouse""]",4802.51,{},242224,0,North America +2024-05-09,50812,6662,"[""Monitor"", ""Charger"", ""Keyboard""]",3383.01,{},40285,1,Europe +2023-08-20,50813,4560,"[""Laptop"", ""Monitor"", ""Headphones""]",3689.33,{},241010,0,South America +2024-05-08,50814,9967,"[""Headphones"", ""Phone""]",1380.23,{},127919,1,North America +2024-12-23,50815,7827,"[""Phone"", ""Wireless Mouse""]",1579.16,{},217202,1,Africa +2023-10-15,50816,3412,"[""Laptop"", ""Tablet""]",304.78,"{""loyalty"": ""11%""}",288908,1,Asia +2023-01-26,50817,9301,"[""Laptop""]",4056.55,{},30929,0,Africa +2023-12-30,50818,2458,"[""Laptop"", ""Headphones"", ""Tablet""]",2212.18,"{""seasonal"": ""12%""}",14851,0,South America +2024-08-11,50819,9647,"[""Keyboard"", ""Tablet""]",4505.47,{},10179,1,North America +2023-03-16,50820,1237,"[""Headphones"", ""Laptop""]",3442.94,"{"""": ""17%""}",20831,0,North America +2024-08-29,50821,44,"[""Tablet"", ""Charger""]",3355.02,{},165623,0,South America +2023-02-23,50822,4317,"[""Laptop"", ""Tablet""]",952.13,"{""loyalty"": ""10%""}",143124,1,Asia +2024-01-11,50823,8053,"[""Laptop"", ""Headphones""]",4189.54,"{""promo"": ""17%""}",287531,1,South America +2023-10-06,50824,5890,"[""Laptop""]",3651.61,{},83152,1,Europe +2023-09-07,50825,5104,"[""Tablet""]",1144.62,"{""seasonal"": ""24%""}",51039,1,South America +2024-04-13,50826,5081,"[""Tablet"", ""Laptop""]",2452.73,"{""promo"": ""24%""}",187393,1,Africa +2023-01-28,50827,106,"[""Headphones""]",89.23,{},187910,1,Asia +2023-10-17,50828,4159,"[""Tablet""]",4351.24,"{""loyalty"": ""28%""}",121192,0,South America +2024-09-22,50829,3093,"[""Headphones"", ""Monitor"", ""Tablet""]",1572.76,"{""promo"": ""30%""}",101600,1,North America +2023-05-11,50830,219,"[""Charger"", ""Tablet""]",3862.75,{},171243,1,North America +2024-02-28,50831,9432,"[""Tablet"", ""Charger""]",3850.8,{},215252,0,Asia +2024-06-16,50832,1240,"[""Charger"", ""Monitor"", ""Phone""]",1242.41,{},81919,1,Asia +2023-06-04,50833,7119,"[""Laptop"", ""Tablet""]",2400.33,"{"""": ""18%""}",67105,1,Europe +2023-10-03,50834,5993,"[""Headphones"", ""Laptop"", ""Keyboard""]",291.97,"{""seasonal"": ""12%""}",273124,1,North America +2024-07-22,50835,1753,"[""Keyboard""]",2095.12,{},85630,1,Europe +2024-10-01,50836,3583,"[""Monitor"", ""Wireless Mouse""]",3704.02,"{""promo"": ""29%""}",298787,0,Europe +2023-02-11,50837,5339,"[""Headphones""]",1649.79,{},259217,0,Asia +2024-09-24,50838,8373,"[""Keyboard"", ""Phone"", ""Tablet""]",2468.75,{},232871,1,Asia +2024-02-23,50839,3729,"[""Monitor""]",4804.48,{},87575,1,North America +2023-03-07,50840,8171,"[""Wireless Mouse""]",2115.27,"{""seasonal"": ""11%""}",58709,1,South America +2024-05-23,50841,710,"[""Keyboard""]",782.27,{},38164,1,Africa +2024-04-18,50842,4676,"[""Tablet"", ""Wireless Mouse""]",2595.02,{},75970,0,Europe +2024-10-17,50843,9772,"[""Laptop""]",1836.54,"{"""": ""10%""}",64832,0,Asia +2023-11-01,50844,1776,"[""Phone""]",2366.6,{},154952,0,South America +2023-05-12,50845,8635,"[""Keyboard"", ""Tablet"", ""Monitor""]",4510.14,{},60948,1,Africa +2023-07-05,50846,2536,"[""Headphones"", ""Keyboard"", ""Laptop""]",3300.34,{},101540,1,Africa +2024-02-23,50847,6546,"[""Charger"", ""Monitor"", ""Laptop""]",1649.38,{},200827,0,Africa +2023-06-24,50848,5020,"[""Laptop"", ""Charger""]",2425.84,{},68000,1,Europe +2023-01-07,50849,5886,"[""Phone"", ""Keyboard"", ""Laptop""]",1556.98,{},294993,0,South America +2024-03-10,50850,3412,"[""Laptop""]",1919.69,"{""promo"": ""15%""}",77137,1,Asia +2023-09-05,50851,3959,"[""Charger""]",4588.9,{},20415,0,North America +2024-12-04,50852,910,"[""Laptop""]",1335.94,{},38568,1,Europe +2023-06-03,50853,4600,"[""Tablet"", ""Monitor""]",1733.43,{},75818,1,North America +2024-05-17,50854,9326,"[""Keyboard"", ""Phone""]",3444.21,"{""promo"": ""25%""}",25991,1,South America +2024-09-30,50855,4696,"[""Tablet""]",4798.6,"{""seasonal"": ""30%""}",84935,1,Asia +2023-09-26,50856,5929,"[""Phone"", ""Charger""]",4698.05,"{""seasonal"": ""30%""}",84972,0,Africa +2023-03-26,50857,2048,"[""Phone"", ""Wireless Mouse""]",4740.37,{},259896,1,Africa +2023-06-30,50858,4311,"[""Monitor""]",3582.8,{},191586,1,Africa +2023-04-20,50859,6617,"[""Keyboard"", ""Phone""]",4101.79,"{""promo"": ""24%""}",97756,0,Asia +2024-05-23,50860,893,"[""Phone""]",2598.37,{},278511,0,Asia +2024-06-11,50861,1954,"[""Headphones"", ""Tablet""]",3256.35,{},197765,0,Africa +2023-01-03,50862,3644,"[""Phone"", ""Monitor""]",1313.17,{},262392,0,Europe +2023-08-24,50863,220,"[""Laptop"", ""Keyboard""]",4245.84,"{""loyalty"": ""6%""}",100004,0,Asia +2024-02-04,50864,2621,"[""Phone"", ""Charger""]",3788.48,"{"""": ""7%""}",192148,0,North America +2024-09-10,50865,2477,"[""Phone"", ""Tablet""]",706.69,{},277898,1,North America +2023-05-23,50866,1237,"[""Monitor"", ""Charger""]",3532.77,{},25610,1,North America +2024-04-06,50867,716,"[""Monitor""]",2082.25,{},255162,1,North America +2024-02-23,50868,3382,"[""Laptop"", ""Wireless Mouse""]",2970.58,{},57436,0,Asia +2024-09-17,50869,1590,"[""Headphones"", ""Monitor"", ""Laptop""]",620.46,"{""seasonal"": ""15%""}",39575,0,North America +2023-08-25,50870,2365,"[""Keyboard"", ""Phone"", ""Charger""]",2511.25,"{"""": ""12%""}",287098,1,North America +2023-04-26,50871,4394,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",74.04,{},68337,0,South America +2024-10-22,50872,1663,"[""Tablet""]",1457.62,{},201489,1,North America +2023-01-22,50873,8699,"[""Monitor""]",4360.01,{},122804,0,Europe +2024-06-13,50874,4445,"[""Tablet"", ""Monitor"", ""Headphones""]",2131.11,"{"""": ""13%""}",109967,1,South America +2023-10-16,50875,2876,"[""Monitor"", ""Tablet""]",991.78,{},270338,0,Europe +2024-11-04,50876,9671,"[""Phone""]",3297.44,"{""promo"": ""19%""}",25348,1,South America +2024-11-14,50877,8038,"[""Charger"", ""Headphones"", ""Laptop""]",2140.51,{},122566,1,South America +2024-08-27,50878,6731,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1013.27,{},60621,1,North America +2024-10-30,50879,9085,"[""Phone"", ""Monitor"", ""Keyboard""]",3206.89,"{"""": ""5%""}",211147,0,Asia +2023-03-02,50880,3753,"[""Monitor""]",2313.12,"{"""": ""27%""}",223532,1,North America +2023-09-24,50881,8396,"[""Phone"", ""Monitor""]",3636.01,{},279066,1,Europe +2023-10-11,50882,5486,"[""Monitor""]",2570.33,"{""seasonal"": ""13%""}",69339,0,Europe +2024-12-06,50883,8104,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3911.43,{},170776,0,Asia +2023-12-29,50884,7173,"[""Phone"", ""Monitor""]",1019.47,"{""loyalty"": ""28%""}",190255,0,Africa +2023-03-22,50885,7414,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4104.59,{},229321,1,Asia +2024-09-03,50886,7925,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",900.6,"{""promo"": ""12%""}",145260,0,Asia +2024-11-25,50887,4759,"[""Headphones"", ""Wireless Mouse""]",1183.46,"{""seasonal"": ""23%""}",21392,0,Africa +2024-08-02,50888,1770,"[""Keyboard""]",4463.9,{},256864,0,North America +2023-05-25,50889,1784,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1512.11,{},118046,1,South America +2024-03-10,50890,3216,"[""Keyboard"", ""Charger"", ""Laptop""]",2044.23,"{""promo"": ""22%""}",74436,0,Asia +2023-07-12,50891,7180,"[""Wireless Mouse""]",4286.14,"{""seasonal"": ""12%""}",149438,0,South America +2024-03-18,50892,7264,"[""Tablet""]",4272.11,{},51453,1,Europe +2023-02-03,50893,9802,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4386.16,{},191403,0,Europe +2023-01-23,50894,3476,"[""Headphones""]",2383.71,"{""promo"": ""30%""}",38052,1,Asia +2024-04-15,50895,2089,"[""Wireless Mouse"", ""Tablet""]",1597.31,"{""seasonal"": ""11%""}",47664,0,Africa +2023-10-15,50896,4942,"[""Phone"", ""Keyboard"", ""Charger""]",3714.71,{},239461,0,Europe +2024-01-25,50897,5620,"[""Charger"", ""Headphones""]",4967.92,{},114454,1,Europe +2024-06-02,50898,2417,"[""Monitor"", ""Keyboard"", ""Tablet""]",1285.83,{},284203,0,North America +2024-01-09,50899,1006,"[""Headphones"", ""Tablet""]",4018.35,{},199910,0,North America +2023-03-28,50900,4955,"[""Headphones""]",2702.89,{},163746,1,Europe +2024-03-05,50901,2619,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",861.39,"{""loyalty"": ""8%""}",40389,1,Asia +2023-07-22,50902,5618,"[""Tablet""]",3776.45,"{""promo"": ""18%""}",14428,0,South America +2023-09-19,50903,9013,"[""Laptop"", ""Keyboard""]",2653.81,{},158097,1,Asia +2024-07-25,50904,266,"[""Charger"", ""Keyboard""]",2493.36,{},36777,1,Asia +2024-03-15,50905,1271,"[""Laptop"", ""Charger""]",3308.12,{},156419,0,North America +2023-11-10,50906,8262,"[""Phone"", ""Laptop""]",3356.83,{},240187,1,Europe +2023-04-18,50907,5015,"[""Wireless Mouse"", ""Keyboard""]",1397.76,{},236601,0,Africa +2023-10-08,50908,8470,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1309.15,"{""promo"": ""7%""}",215430,0,Africa +2023-06-18,50909,3467,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2882.38,{},77797,1,Europe +2024-01-18,50910,2094,"[""Phone"", ""Charger"", ""Tablet""]",273.96,{},258379,1,Asia +2023-03-29,50911,9374,"[""Phone"", ""Tablet"", ""Headphones""]",4854.05,"{""promo"": ""25%""}",182520,1,Europe +2023-09-27,50912,3832,"[""Phone"", ""Tablet""]",2902.73,"{""promo"": ""8%""}",51524,0,Africa +2023-12-08,50913,6764,"[""Wireless Mouse"", ""Phone""]",104.31,"{""promo"": ""14%""}",47890,1,Asia +2023-11-11,50914,7264,"[""Laptop""]",2560.33,{},162367,0,South America +2024-03-23,50915,2561,"[""Tablet""]",1213.03,{},226246,1,North America +2023-07-13,50916,5134,"[""Phone"", ""Monitor"", ""Keyboard""]",2780.57,{},177854,1,South America +2023-10-08,50917,5893,"[""Laptop""]",4426.79,"{""promo"": ""10%""}",157722,1,Asia +2023-05-15,50918,1417,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3230.81,"{""loyalty"": ""10%""}",78568,0,Europe +2024-04-08,50919,5812,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1971.06,"{""loyalty"": ""21%""}",168454,1,Europe +2023-09-06,50920,305,"[""Laptop""]",1292.94,{},177541,0,North America +2024-05-05,50921,7265,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2146.83,"{""loyalty"": ""6%""}",48316,1,Asia +2024-10-19,50922,6676,"[""Phone"", ""Headphones"", ""Tablet""]",1276.94,"{""seasonal"": ""26%""}",167226,0,Africa +2023-02-19,50923,4527,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3167.08,"{"""": ""20%""}",175403,0,South America +2024-07-01,50924,4234,"[""Tablet""]",4061.66,"{""loyalty"": ""5%""}",192058,0,North America +2023-06-17,50925,2167,"[""Laptop""]",4232.56,{},8247,1,Europe +2023-04-10,50926,3553,"[""Wireless Mouse""]",3140.34,"{"""": ""19%""}",18529,0,Africa +2023-09-22,50927,102,"[""Phone""]",116.08,{},73284,0,North America +2023-08-26,50928,6600,"[""Tablet"", ""Laptop"", ""Monitor""]",4852.06,"{""seasonal"": ""23%""}",21431,0,South America +2023-07-14,50929,1949,"[""Monitor""]",2267.06,{},10074,1,North America +2023-07-30,50930,9200,"[""Monitor""]",1959.8,{},65782,0,Europe +2024-03-12,50931,3162,"[""Tablet"", ""Charger""]",4545.13,{},258499,1,Europe +2024-02-20,50932,8920,"[""Keyboard""]",213.6,{},113880,0,Africa +2024-02-14,50933,3082,"[""Tablet"", ""Keyboard""]",332.92,{},298308,0,Europe +2024-08-24,50934,9744,"[""Headphones""]",2733.22,{},63504,0,Asia +2024-04-14,50935,2758,"[""Monitor""]",1851.92,{},58799,0,Europe +2023-03-18,50936,4836,"[""Charger""]",2184.73,{},54733,0,South America +2023-10-31,50937,3181,"[""Headphones""]",4213.89,"{"""": ""11%""}",52896,0,North America +2024-12-25,50938,5101,"[""Laptop"", ""Monitor""]",4585.92,"{"""": ""20%""}",100236,0,North America +2023-10-27,50939,5526,"[""Keyboard"", ""Monitor""]",2139.44,"{"""": ""20%""}",236294,1,Europe +2024-07-15,50940,5763,"[""Laptop"", ""Keyboard"", ""Monitor""]",3700.97,"{"""": ""7%""}",297850,0,Asia +2024-06-07,50941,3760,"[""Monitor"", ""Laptop""]",2826.98,"{""loyalty"": ""6%""}",10700,0,North America +2024-05-25,50942,2558,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",913.34,"{""seasonal"": ""23%""}",102263,1,Asia +2023-09-17,50943,8990,"[""Phone""]",1487.89,{},10314,0,Africa +2023-03-18,50944,7940,"[""Phone"", ""Monitor""]",979.34,{},108905,0,Asia +2024-08-19,50945,5354,"[""Keyboard""]",588.98,{},155757,1,South America +2024-07-20,50946,9088,"[""Phone"", ""Laptop""]",818.95,{},67887,1,North America +2023-08-10,50947,2397,"[""Wireless Mouse""]",3829.88,"{"""": ""29%""}",279716,0,North America +2023-10-17,50948,2501,"[""Laptop"", ""Tablet"", ""Monitor""]",1277.24,"{""loyalty"": ""30%""}",99371,1,Asia +2023-10-16,50949,5520,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4374.38,{},92287,0,Africa +2024-01-05,50950,9210,"[""Charger"", ""Laptop""]",563.35,{},93641,0,Europe +2023-05-02,50951,8783,"[""Tablet""]",2118.15,"{"""": ""7%""}",138636,0,Asia +2023-08-15,50952,7884,"[""Monitor"", ""Headphones"", ""Phone""]",2028.27,{},288573,0,North America +2024-12-09,50953,5509,"[""Tablet""]",3191.35,{},279999,1,Asia +2024-06-08,50954,5807,"[""Phone""]",3886.37,"{""seasonal"": ""13%""}",268050,0,South America +2024-01-13,50955,4183,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2638.73,{},222300,1,North America +2023-08-10,50956,7619,"[""Tablet"", ""Laptop"", ""Keyboard""]",4490.33,{},208763,0,Africa +2024-01-05,50957,869,"[""Tablet"", ""Phone""]",1995.31,{},267191,0,Asia +2023-01-25,50958,6869,"[""Phone"", ""Charger""]",4395.76,{},269990,1,South America +2023-12-05,50959,7303,"[""Monitor"", ""Tablet""]",763.15,{},148869,0,Europe +2024-05-25,50960,6219,"[""Headphones"", ""Keyboard""]",3948.74,{},4050,1,South America +2024-01-13,50961,3882,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1191.55,"{""promo"": ""21%""}",169247,1,North America +2024-08-02,50962,1533,"[""Laptop"", ""Keyboard"", ""Tablet""]",2735.04,"{"""": ""14%""}",126705,1,South America +2024-10-15,50963,7285,"[""Tablet"", ""Keyboard""]",2757.69,{},114046,1,North America +2024-10-08,50964,1446,"[""Monitor"", ""Charger""]",2195.62,"{"""": ""18%""}",1562,1,Asia +2024-01-10,50965,7187,"[""Monitor""]",2779.18,{},3610,0,North America +2024-08-24,50966,4854,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2478.35,"{""promo"": ""23%""}",296825,0,South America +2023-06-11,50967,5609,"[""Charger""]",3879.9,"{""promo"": ""14%""}",74967,1,Europe +2024-02-23,50968,6240,"[""Monitor"", ""Laptop""]",4754.66,{},123029,1,North America +2023-11-13,50969,4654,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2827.99,"{""seasonal"": ""12%""}",129235,0,Asia +2023-11-09,50970,844,"[""Keyboard""]",3189.81,{},20852,0,Africa +2023-03-02,50971,671,"[""Monitor"", ""Tablet"", ""Laptop""]",553.94,"{""seasonal"": ""6%""}",31848,0,Asia +2024-03-17,50972,868,"[""Headphones""]",370.97,{},201384,0,Africa +2023-06-24,50973,4084,"[""Monitor"", ""Keyboard"", ""Tablet""]",4364.86,"{""promo"": ""13%""}",284881,1,Europe +2023-09-07,50974,2618,"[""Headphones"", ""Tablet""]",478.81,{},5818,0,Africa +2023-03-06,50975,4548,"[""Keyboard""]",3949.93,"{""seasonal"": ""10%""}",9295,0,Africa +2023-10-28,50976,106,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",506.26,{},191987,1,Europe +2024-05-15,50977,1528,"[""Monitor"", ""Charger"", ""Headphones""]",2481.7,"{""loyalty"": ""5%""}",56590,0,Africa +2024-04-05,50978,1276,"[""Keyboard"", ""Laptop"", ""Phone""]",833.92,"{""loyalty"": ""28%""}",214348,1,Africa +2024-11-18,50979,2742,"[""Laptop""]",403.73,"{"""": ""5%""}",75573,1,Africa +2024-05-21,50980,6892,"[""Phone"", ""Charger"", ""Tablet""]",2095.25,"{"""": ""6%""}",273890,0,Africa +2024-12-17,50981,3391,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1416.77,"{"""": ""21%""}",260564,0,Europe +2024-03-18,50982,1271,"[""Monitor"", ""Keyboard""]",1595.8,"{"""": ""28%""}",62098,0,Europe +2023-04-08,50983,1104,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2903.17,"{""promo"": ""5%""}",218484,0,Asia +2023-04-25,50984,8145,"[""Laptop""]",3767.74,"{""loyalty"": ""22%""}",257177,0,North America +2024-12-31,50985,7233,"[""Tablet"", ""Laptop"", ""Headphones""]",4039.59,{},137196,1,South America +2024-09-10,50986,2520,"[""Tablet""]",4299.1,{},119656,1,Africa +2024-04-28,50987,4272,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2300.09,{},57288,1,Africa +2023-10-06,50988,2208,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4790.98,"{""seasonal"": ""27%""}",67183,1,Africa +2024-04-19,50989,3901,"[""Phone"", ""Tablet""]",3017.35,{},266117,0,Africa +2024-04-14,50990,2396,"[""Laptop""]",1019.61,"{""seasonal"": ""22%""}",16220,0,Africa +2023-10-24,50991,3962,"[""Wireless Mouse""]",1300.07,"{""loyalty"": ""7%""}",134855,1,North America +2024-08-14,50992,9139,"[""Headphones"", ""Wireless Mouse""]",942.0,"{""seasonal"": ""28%""}",232255,0,Africa +2023-10-29,50993,9991,"[""Keyboard""]",3615.48,{},120800,0,North America +2024-02-20,50994,9510,"[""Phone"", ""Headphones""]",2575.08,"{"""": ""19%""}",177523,1,South America +2024-03-30,50995,7311,"[""Keyboard""]",778.21,"{""loyalty"": ""17%""}",162194,0,Africa +2023-10-19,50996,514,"[""Keyboard"", ""Phone"", ""Headphones""]",510.64,"{"""": ""30%""}",41018,0,Africa +2023-05-09,50997,3682,"[""Monitor"", ""Headphones"", ""Charger""]",4604.03,"{""promo"": ""5%""}",92870,0,Europe +2024-11-09,50998,4887,"[""Monitor"", ""Headphones""]",285.58,{},53959,1,South America +2023-03-22,50999,9707,"[""Phone"", ""Laptop""]",758.26,"{""seasonal"": ""19%""}",266845,0,Europe +2023-02-02,51000,1802,"[""Laptop"", ""Monitor"", ""Phone""]",582.46,{},200926,1,North America +2024-10-23,51001,3622,"[""Wireless Mouse""]",3351.78,{},250336,1,South America +2024-03-26,51002,4854,"[""Keyboard"", ""Charger"", ""Phone""]",2818.72,"{"""": ""22%""}",257640,0,Europe +2023-07-03,51003,1516,"[""Monitor""]",823.55,{},133775,0,Asia +2024-10-29,51004,9870,"[""Wireless Mouse""]",1230.89,{},102969,0,South America +2023-06-30,51005,6861,"[""Wireless Mouse"", ""Phone""]",2801.95,{},94135,0,Africa +2024-06-03,51006,3051,"[""Tablet""]",3697.89,{},60585,1,North America +2023-01-07,51007,1881,"[""Monitor"", ""Laptop""]",4529.77,"{""loyalty"": ""19%""}",135340,1,Asia +2024-02-04,51008,1285,"[""Tablet"", ""Monitor""]",1119.55,{},220724,0,North America +2023-12-01,51009,6644,"[""Headphones""]",4741.32,{},10175,0,Asia +2023-10-29,51010,4026,"[""Monitor"", ""Laptop""]",1695.01,{},61267,1,South America +2023-08-05,51011,3747,"[""Charger"", ""Wireless Mouse""]",178.2,{},67828,1,Asia +2023-12-16,51012,258,"[""Phone""]",1064.07,"{""loyalty"": ""9%""}",295995,0,North America +2023-06-11,51013,9884,"[""Wireless Mouse"", ""Laptop""]",432.1,{},208872,1,South America +2024-01-21,51014,8725,"[""Monitor""]",933.71,"{""loyalty"": ""17%""}",48159,1,Asia +2023-04-13,51015,3478,"[""Tablet"", ""Charger""]",151.22,{},19093,1,Asia +2023-06-28,51016,9308,"[""Wireless Mouse""]",1330.0,"{""promo"": ""8%""}",134014,0,South America +2024-05-17,51017,8192,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1690.5,"{""promo"": ""18%""}",278347,0,North America +2023-06-03,51018,2298,"[""Monitor"", ""Tablet"", ""Charger""]",2969.89,{},60416,0,North America +2024-04-08,51019,8677,"[""Charger"", ""Tablet""]",3033.55,{},44846,1,Asia +2023-10-26,51020,5120,"[""Tablet"", ""Headphones"", ""Monitor""]",1754.86,{},182153,1,Asia +2024-02-17,51021,946,"[""Tablet"", ""Charger"", ""Phone""]",3179.44,{},50583,1,South America +2024-12-30,51022,4792,"[""Wireless Mouse""]",2114.38,{},84934,1,Asia +2023-11-27,51023,9922,"[""Keyboard""]",3799.53,{},264789,0,South America +2023-11-16,51024,2654,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3639.07,{},46147,1,South America +2024-11-27,51025,6781,"[""Monitor""]",165.74,{},277508,0,South America +2024-08-17,51026,8427,"[""Tablet"", ""Laptop""]",4326.44,"{""loyalty"": ""5%""}",93241,0,Africa +2024-01-27,51027,3271,"[""Headphones"", ""Tablet""]",4262.07,"{"""": ""19%""}",18301,1,North America +2024-07-24,51028,4302,"[""Headphones"", ""Wireless Mouse""]",4849.48,{},177879,1,Europe +2023-07-06,51029,6790,"[""Phone"", ""Tablet""]",3389.49,{},37158,1,South America +2023-02-24,51030,4945,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4800.91,{},298434,1,South America +2023-04-29,51031,4713,"[""Headphones""]",900.54,"{""loyalty"": ""29%""}",178549,0,Asia +2024-04-11,51032,1275,"[""Monitor"", ""Laptop"", ""Charger""]",366.87,{},139801,0,North America +2024-02-01,51033,3597,"[""Monitor"", ""Keyboard"", ""Phone""]",4062.35,{},127621,0,Asia +2023-06-15,51034,8580,"[""Phone"", ""Charger""]",2389.72,"{""promo"": ""11%""}",246232,0,North America +2023-11-10,51035,1613,"[""Headphones"", ""Phone""]",2231.59,{},287387,0,Europe +2024-05-21,51036,8314,"[""Laptop""]",1428.5,{},177362,0,Africa +2024-02-18,51037,6993,"[""Wireless Mouse"", ""Monitor""]",4782.29,{},153729,1,South America +2023-02-21,51038,6925,"[""Laptop""]",1344.13,"{""promo"": ""23%""}",133959,1,Asia +2024-01-06,51039,8256,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3772.68,{},115726,0,Europe +2023-12-24,51040,8366,"[""Headphones"", ""Wireless Mouse""]",3062.08,{},272007,0,Europe +2024-12-10,51041,3358,"[""Phone""]",395.65,{},261012,1,Africa +2024-04-28,51042,921,"[""Monitor"", ""Headphones""]",765.68,"{""promo"": ""5%""}",132834,1,South America +2023-11-02,51043,5807,"[""Keyboard"", ""Headphones"", ""Monitor""]",4959.15,"{""seasonal"": ""19%""}",231079,1,Asia +2023-07-28,51044,2004,"[""Tablet""]",1317.79,{},241444,0,Asia +2023-06-16,51045,9202,"[""Monitor"", ""Charger"", ""Keyboard""]",1767.96,{},30608,1,Africa +2023-09-27,51046,4123,"[""Phone"", ""Keyboard"", ""Charger""]",2631.08,{},97613,0,Africa +2023-05-11,51047,7036,"[""Charger"", ""Headphones"", ""Phone""]",3381.45,{},89621,1,Asia +2024-03-22,51048,160,"[""Keyboard""]",2313.74,{},117093,1,Asia +2023-10-25,51049,4968,"[""Wireless Mouse"", ""Phone""]",445.55,"{"""": ""18%""}",234148,0,South America +2024-10-18,51050,985,"[""Phone"", ""Headphones"", ""Keyboard""]",299.09,{},60359,0,Europe +2023-01-06,51051,2353,"[""Monitor"", ""Keyboard"", ""Phone""]",3396.56,{},96278,0,Europe +2023-07-05,51052,3072,"[""Phone"", ""Monitor""]",1753.87,"{""promo"": ""29%""}",277252,1,South America +2023-12-02,51053,6108,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4624.88,"{"""": ""19%""}",12201,0,Asia +2024-02-04,51054,1328,"[""Keyboard""]",4757.49,{},190225,0,North America +2024-01-24,51055,3404,"[""Charger""]",199.5,"{"""": ""15%""}",210093,1,North America +2024-06-01,51056,3365,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1357.36,{},127263,0,Europe +2023-04-20,51057,8296,"[""Tablet"", ""Charger"", ""Phone""]",3445.55,"{""seasonal"": ""20%""}",278383,0,North America +2023-04-04,51058,7928,"[""Laptop"", ""Charger"", ""Headphones""]",1760.91,{},11218,1,Asia +2024-07-02,51059,5013,"[""Laptop""]",3760.04,"{""loyalty"": ""25%""}",280791,0,North America +2024-06-16,51060,6037,"[""Phone"", ""Keyboard""]",910.51,{},262843,1,South America +2023-10-19,51061,3064,"[""Headphones""]",138.72,{},152626,1,Asia +2023-06-26,51062,8869,"[""Laptop"", ""Monitor""]",1308.26,"{""promo"": ""10%""}",176942,0,South America +2023-05-19,51063,4622,"[""Tablet"", ""Charger""]",3265.35,"{""loyalty"": ""23%""}",23882,1,North America +2024-09-03,51064,7252,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4527.56,{},106948,0,South America +2024-06-12,51065,5580,"[""Wireless Mouse"", ""Tablet""]",2806.76,{},66672,0,Europe +2024-04-01,51066,9693,"[""Phone""]",269.97,{},218951,0,Africa +2023-11-15,51067,642,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1991.54,{},159129,0,Africa +2024-12-19,51068,4109,"[""Monitor""]",1541.68,"{"""": ""27%""}",184401,1,North America +2023-05-19,51069,8575,"[""Monitor""]",1464.17,"{""seasonal"": ""12%""}",269061,1,Africa +2023-04-19,51070,635,"[""Wireless Mouse"", ""Tablet""]",721.27,{},293818,1,South America +2023-12-10,51071,6452,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4215.51,{},186954,0,North America +2023-08-09,51072,1199,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2487.45,"{""loyalty"": ""20%""}",75327,0,South America +2023-04-12,51073,8689,"[""Keyboard""]",3188.97,"{""seasonal"": ""19%""}",210656,0,North America +2023-03-07,51074,4915,"[""Laptop""]",2174.28,{},291618,0,Europe +2024-07-24,51075,9369,"[""Phone"", ""Tablet"", ""Laptop""]",144.31,"{""loyalty"": ""6%""}",193032,0,Asia +2023-05-31,51076,4353,"[""Phone"", ""Charger""]",2239.03,"{""promo"": ""16%""}",211515,0,Europe +2024-12-14,51077,763,"[""Laptop""]",2096.68,"{""loyalty"": ""29%""}",170690,1,North America +2023-09-27,51078,8788,"[""Charger""]",2375.47,{},2055,0,North America +2024-11-24,51079,5496,"[""Phone"", ""Headphones""]",2845.48,{},65107,1,Africa +2024-07-05,51080,5419,"[""Charger"", ""Phone""]",2229.53,{},172250,1,North America +2023-05-05,51081,7258,"[""Monitor"", ""Tablet""]",1238.0,{},241805,0,South America +2024-12-26,51082,158,"[""Monitor"", ""Tablet""]",4319.13,"{"""": ""20%""}",203011,0,Europe +2024-01-27,51083,7852,"[""Monitor"", ""Wireless Mouse""]",2996.38,{},251958,0,North America +2023-06-17,51084,3051,"[""Phone"", ""Headphones""]",4918.26,"{""seasonal"": ""20%""}",125020,0,Europe +2024-05-16,51085,7107,"[""Wireless Mouse"", ""Headphones""]",3828.7,{},265615,0,North America +2024-05-03,51086,7451,"[""Tablet"", ""Headphones""]",2720.78,{},78522,1,South America +2023-07-12,51087,2668,"[""Tablet"", ""Phone"", ""Monitor""]",2878.79,"{""seasonal"": ""30%""}",269063,1,Europe +2023-09-22,51088,7327,"[""Tablet"", ""Laptop""]",3764.14,{},88712,0,Asia +2024-04-14,51089,7663,"[""Tablet"", ""Headphones"", ""Keyboard""]",1249.24,{},26505,0,Asia +2023-06-21,51090,286,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2505.28,{},125831,1,Asia +2023-04-24,51091,7221,"[""Tablet"", ""Wireless Mouse""]",4772.26,{},136809,1,Europe +2024-12-13,51092,9472,"[""Headphones"", ""Laptop""]",768.46,"{""loyalty"": ""23%""}",31516,1,Europe +2023-09-15,51093,1034,"[""Laptop"", ""Monitor""]",778.22,"{""seasonal"": ""30%""}",170847,0,Asia +2023-11-14,51094,9149,"[""Tablet"", ""Phone""]",530.45,{},266785,1,South America +2024-03-20,51095,6380,"[""Laptop""]",756.0,{},29566,0,South America +2024-08-14,51096,4426,"[""Monitor""]",2823.11,"{""seasonal"": ""15%""}",195934,0,Asia +2024-08-22,51097,664,"[""Keyboard"", ""Headphones""]",1220.83,"{""promo"": ""25%""}",248560,1,South America +2024-08-17,51098,1148,"[""Charger"", ""Keyboard"", ""Tablet""]",657.93,"{"""": ""5%""}",32706,0,Africa +2023-07-11,51099,7772,"[""Monitor"", ""Phone""]",3424.98,{},199052,0,Asia +2023-12-19,51100,2801,"[""Monitor"", ""Keyboard"", ""Charger""]",1854.61,{},254437,1,North America +2024-12-29,51101,7761,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2370.43,"{"""": ""6%""}",297119,1,Africa +2023-01-09,51102,7444,"[""Laptop""]",3407.38,"{""promo"": ""30%""}",207452,0,Asia +2023-11-21,51103,2814,"[""Charger"", ""Headphones"", ""Laptop""]",4955.75,{},121295,1,Europe +2024-09-04,51104,6773,"[""Charger"", ""Monitor"", ""Laptop""]",3599.58,{},219759,0,Europe +2024-01-07,51105,5457,"[""Monitor"", ""Headphones""]",2482.38,{},115212,0,South America +2023-04-26,51106,7655,"[""Phone"", ""Keyboard"", ""Monitor""]",4055.44,"{""seasonal"": ""14%""}",140650,1,South America +2024-05-26,51107,4515,"[""Keyboard"", ""Phone"", ""Tablet""]",838.12,"{""loyalty"": ""26%""}",297610,1,North America +2023-04-17,51108,1688,"[""Headphones""]",4181.85,{},130410,1,North America +2024-07-30,51109,1582,"[""Keyboard"", ""Monitor"", ""Headphones""]",2940.13,{},240787,1,Asia +2024-02-03,51110,6610,"[""Headphones"", ""Keyboard"", ""Charger""]",3480.69,{},156633,1,Africa +2024-08-13,51111,9319,"[""Tablet"", ""Laptop""]",2842.12,"{""seasonal"": ""6%""}",111183,1,Africa +2023-10-18,51112,6743,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",491.74,{},112769,0,North America +2023-04-08,51113,8328,"[""Charger""]",2888.99,"{"""": ""9%""}",139098,0,Europe +2023-03-11,51114,576,"[""Monitor""]",4233.08,"{"""": ""24%""}",223139,1,Asia +2023-11-17,51115,8103,"[""Headphones"", ""Tablet"", ""Monitor""]",4602.75,{},76062,1,Europe +2024-08-19,51116,2004,"[""Laptop""]",780.43,"{""seasonal"": ""22%""}",90198,1,South America +2023-05-05,51117,6271,"[""Monitor"", ""Keyboard""]",3029.81,{},279664,1,South America +2023-12-27,51118,6645,"[""Keyboard""]",1414.56,{},172289,0,North America +2023-01-04,51119,3160,"[""Monitor""]",1923.97,"{""seasonal"": ""23%""}",253417,0,Africa +2023-06-01,51120,2686,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",712.72,{},147372,1,North America +2023-09-09,51121,6163,"[""Keyboard""]",4685.23,{},87454,1,Europe +2023-04-28,51122,5439,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",318.43,{},280359,0,South America +2024-10-20,51123,1305,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1970.2,"{"""": ""27%""}",161549,0,North America +2024-09-29,51124,109,"[""Tablet"", ""Charger""]",994.65,{},38319,1,Africa +2024-10-24,51125,779,"[""Tablet"", ""Charger"", ""Phone""]",4407.99,{},241628,0,South America +2024-08-30,51126,4141,"[""Wireless Mouse"", ""Headphones""]",467.25,{},81147,0,Asia +2024-11-25,51127,4423,"[""Keyboard""]",1485.13,"{""seasonal"": ""20%""}",227849,0,Asia +2023-02-09,51128,186,"[""Headphones"", ""Monitor""]",3603.73,"{"""": ""19%""}",63115,1,North America +2023-05-02,51129,6064,"[""Laptop"", ""Tablet"", ""Monitor""]",1474.71,"{""seasonal"": ""27%""}",263129,1,Asia +2024-05-29,51130,5585,"[""Keyboard""]",3667.71,{},152736,1,Africa +2024-06-05,51131,9971,"[""Keyboard"", ""Tablet"", ""Headphones""]",2693.68,{},160343,0,Asia +2023-04-10,51132,276,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",326.31,"{"""": ""29%""}",296024,1,Europe +2024-10-09,51133,8273,"[""Charger""]",2601.93,"{""promo"": ""10%""}",84364,1,Asia +2024-01-15,51134,3567,"[""Charger""]",926.26,{},1629,1,Europe +2024-08-04,51135,4788,"[""Phone"", ""Laptop""]",3604.96,{},241014,1,Asia +2023-10-07,51136,5103,"[""Charger""]",3648.4,{},268366,1,Europe +2024-03-03,51137,6795,"[""Laptop"", ""Keyboard"", ""Tablet""]",3413.13,"{""loyalty"": ""11%""}",7547,1,Asia +2023-04-27,51138,3683,"[""Charger""]",589.38,{},205945,1,South America +2024-09-25,51139,9440,"[""Laptop"", ""Monitor""]",1590.45,{},50637,1,North America +2024-01-19,51140,8761,"[""Phone"", ""Keyboard"", ""Headphones""]",4544.58,"{""seasonal"": ""16%""}",240163,1,Asia +2023-01-12,51141,450,"[""Phone"", ""Monitor"", ""Tablet""]",258.86,{},188454,0,Asia +2024-04-03,51142,6240,"[""Monitor"", ""Laptop"", ""Phone""]",881.53,"{""loyalty"": ""25%""}",79609,1,North America +2024-04-19,51143,8476,"[""Tablet"", ""Laptop""]",2444.89,"{""seasonal"": ""13%""}",37096,1,Asia +2024-05-20,51144,2189,"[""Keyboard""]",4163.57,"{""loyalty"": ""27%""}",260654,0,South America +2024-03-30,51145,9473,"[""Tablet"", ""Laptop""]",3785.87,"{""promo"": ""27%""}",161259,1,Asia +2024-02-20,51146,6325,"[""Charger"", ""Keyboard""]",609.03,"{"""": ""9%""}",42678,0,Africa +2024-01-19,51147,7744,"[""Wireless Mouse""]",1740.91,{},290047,0,Europe +2023-11-03,51148,3767,"[""Charger""]",4216.56,"{""seasonal"": ""7%""}",81605,0,Europe +2024-01-21,51149,5849,"[""Monitor"", ""Wireless Mouse""]",2552.7,"{""seasonal"": ""20%""}",286908,0,Africa +2023-04-15,51150,3340,"[""Headphones""]",2351.59,{},275776,0,North America +2024-06-02,51151,3758,"[""Laptop""]",2490.04,{},228484,0,Africa +2023-10-02,51152,7610,"[""Monitor"", ""Phone"", ""Tablet""]",316.52,{},38080,0,Europe +2023-01-28,51153,4645,"[""Keyboard"", ""Monitor""]",4895.75,"{""seasonal"": ""27%""}",60627,0,Europe +2023-08-26,51154,3840,"[""Tablet""]",3619.67,{},184411,0,South America +2024-04-26,51155,6572,"[""Charger"", ""Laptop""]",4393.23,"{""seasonal"": ""12%""}",30114,0,North America +2023-04-26,51156,4544,"[""Charger"", ""Keyboard"", ""Headphones""]",1589.71,"{"""": ""5%""}",183660,1,Africa +2023-11-24,51157,5209,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4947.66,"{"""": ""23%""}",21288,1,Asia +2024-04-03,51158,2258,"[""Phone""]",3481.2,{},291530,0,Africa +2024-09-28,51159,3917,"[""Headphones""]",2457.4,{},221542,1,Africa +2023-03-13,51160,680,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2395.63,{},285660,1,Europe +2024-12-01,51161,7516,"[""Laptop"", ""Keyboard"", ""Tablet""]",339.78,"{"""": ""11%""}",248158,1,North America +2024-06-22,51162,2611,"[""Monitor"", ""Laptop""]",589.95,{},158819,1,North America +2023-05-27,51163,1291,"[""Laptop"", ""Headphones""]",1758.23,"{""promo"": ""12%""}",56544,0,Europe +2023-07-29,51164,4114,"[""Tablet"", ""Phone"", ""Charger""]",2988.63,{},205121,1,Europe +2024-05-19,51165,9436,"[""Charger"", ""Keyboard""]",3176.38,"{""promo"": ""8%""}",287346,1,Asia +2023-06-16,51166,9619,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2675.43,{},130807,1,Africa +2023-10-08,51167,2820,"[""Monitor"", ""Charger""]",1865.01,"{""seasonal"": ""10%""}",13208,0,Europe +2024-08-23,51168,1624,"[""Tablet"", ""Wireless Mouse""]",4023.6,{},121212,0,North America +2023-07-01,51169,7245,"[""Laptop"", ""Phone"", ""Monitor""]",145.89,{},241845,0,Europe +2023-05-21,51170,4817,"[""Charger"", ""Monitor"", ""Laptop""]",4612.7,{},105812,1,Asia +2024-02-25,51171,6018,"[""Keyboard"", ""Phone""]",241.32,{},74079,1,Europe +2024-04-22,51172,9166,"[""Charger""]",2197.17,{},18675,0,Europe +2023-09-18,51173,5103,"[""Charger"", ""Keyboard"", ""Laptop""]",2745.28,{},241781,0,Africa +2023-11-25,51174,5934,"[""Monitor""]",2960.39,{},93062,0,Africa +2023-05-13,51175,5181,"[""Charger"", ""Monitor""]",3119.82,{},30057,1,South America +2024-02-14,51176,9996,"[""Phone"", ""Laptop""]",3033.79,"{""promo"": ""25%""}",22854,1,Africa +2023-05-07,51177,241,"[""Headphones"", ""Phone""]",4238.58,"{""promo"": ""30%""}",284653,0,Asia +2024-05-04,51178,3693,"[""Laptop"", ""Tablet"", ""Monitor""]",1202.83,"{""promo"": ""28%""}",65854,1,South America +2023-02-11,51179,1465,"[""Phone""]",788.93,"{""loyalty"": ""12%""}",21369,0,South America +2024-09-02,51180,9947,"[""Wireless Mouse""]",3729.03,"{""loyalty"": ""15%""}",113235,1,South America +2024-05-05,51181,8774,"[""Keyboard"", ""Wireless Mouse""]",1959.35,{},207000,1,Africa +2024-08-11,51182,7734,"[""Laptop""]",4705.97,"{""seasonal"": ""19%""}",62217,0,South America +2023-05-21,51183,2809,"[""Wireless Mouse""]",2633.98,"{""seasonal"": ""20%""}",103274,1,Asia +2023-08-25,51184,9094,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1180.25,{},148602,1,Europe +2024-04-16,51185,9505,"[""Wireless Mouse"", ""Laptop""]",745.08,"{""promo"": ""14%""}",245618,0,Africa +2024-12-22,51186,6112,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",82.37,"{""loyalty"": ""29%""}",176325,1,South America +2023-06-08,51187,5582,"[""Laptop"", ""Charger"", ""Monitor""]",1108.05,"{""loyalty"": ""11%""}",169461,0,Africa +2023-04-26,51188,6654,"[""Keyboard""]",3358.83,{},187917,0,South America +2023-01-11,51189,3263,"[""Laptop"", ""Phone""]",612.92,"{""loyalty"": ""23%""}",266838,1,Africa +2024-05-01,51190,8272,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3121.02,"{""seasonal"": ""9%""}",50371,1,Asia +2024-12-30,51191,1855,"[""Tablet"", ""Charger"", ""Monitor""]",3145.31,{},134227,0,South America +2024-09-17,51192,257,"[""Phone"", ""Charger""]",2995.48,{},7018,1,Africa +2024-11-23,51193,655,"[""Charger""]",4804.04,{},213298,0,South America +2024-05-31,51194,3157,"[""Wireless Mouse"", ""Phone""]",3032.86,"{""promo"": ""15%""}",236725,0,Africa +2023-08-10,51195,3925,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3589.28,{},9884,0,North America +2023-10-29,51196,8067,"[""Headphones""]",3767.91,{},299249,0,Africa +2024-07-30,51197,2112,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1738.77,"{""loyalty"": ""7%""}",52713,1,Africa +2024-08-21,51198,8743,"[""Keyboard"", ""Laptop""]",2759.59,{},255529,1,South America +2023-11-16,51199,7504,"[""Laptop""]",1389.42,"{""promo"": ""20%""}",198776,0,Asia +2024-09-07,51200,12,"[""Tablet"", ""Keyboard""]",605.5,{},17649,1,Asia +2023-03-20,51201,9957,"[""Charger"", ""Keyboard"", ""Laptop""]",4204.83,{},84698,0,Africa +2023-08-26,51202,936,"[""Wireless Mouse"", ""Phone"", ""Charger""]",495.46,{},68693,0,South America +2023-11-27,51203,249,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",587.95,{},52230,0,Asia +2024-10-17,51204,1353,"[""Monitor""]",3168.3,"{""seasonal"": ""18%""}",174803,0,Europe +2023-12-30,51205,6019,"[""Monitor"", ""Phone""]",1278.81,{},18804,1,Africa +2023-07-13,51206,6803,"[""Monitor"", ""Charger""]",4551.75,{},226080,1,Africa +2024-12-16,51207,4294,"[""Tablet"", ""Headphones""]",3276.94,"{"""": ""13%""}",298486,1,North America +2024-01-12,51208,1527,"[""Keyboard"", ""Phone"", ""Tablet""]",1936.49,"{"""": ""20%""}",134077,1,Europe +2024-07-05,51209,158,"[""Laptop"", ""Monitor"", ""Keyboard""]",3000.33,"{""loyalty"": ""22%""}",181100,0,Asia +2023-01-18,51210,2209,"[""Monitor"", ""Keyboard"", ""Laptop""]",3817.84,"{""loyalty"": ""19%""}",26012,0,Africa +2024-12-26,51211,6491,"[""Laptop"", ""Monitor"", ""Keyboard""]",3082.28,"{"""": ""21%""}",255297,1,North America +2024-06-14,51212,5108,"[""Laptop"", ""Phone"", ""Charger""]",2534.96,"{""loyalty"": ""26%""}",8349,0,South America +2024-06-28,51213,3564,"[""Wireless Mouse""]",3601.74,{},53022,1,Europe +2024-03-12,51214,9111,"[""Keyboard""]",772.09,"{""promo"": ""10%""}",175487,0,North America +2024-02-15,51215,9270,"[""Wireless Mouse""]",2314.76,{},121645,1,North America +2024-12-11,51216,6629,"[""Laptop""]",451.84,{},218038,1,South America +2023-04-24,51217,8768,"[""Keyboard"", ""Laptop""]",2060.67,"{""promo"": ""27%""}",136458,1,Africa +2023-03-16,51218,6942,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",861.45,{},228187,1,North America +2024-07-21,51219,7277,"[""Charger"", ""Headphones""]",1956.26,{},232613,0,Europe +2024-09-29,51220,2652,"[""Phone"", ""Wireless Mouse""]",4268.94,"{"""": ""24%""}",251253,0,Europe +2024-04-15,51221,4855,"[""Tablet""]",1624.72,"{""promo"": ""30%""}",32067,0,North America +2023-09-15,51222,9323,"[""Headphones"", ""Tablet"", ""Keyboard""]",2920.87,{},124639,1,Africa +2023-09-25,51223,3899,"[""Monitor"", ""Wireless Mouse""]",1048.97,"{"""": ""18%""}",22413,1,South America +2024-12-08,51224,3522,"[""Tablet""]",2035.69,{},250098,0,North America +2024-03-06,51225,7584,"[""Monitor"", ""Headphones"", ""Phone""]",1445.15,"{"""": ""7%""}",263339,1,Europe +2024-11-24,51226,2018,"[""Wireless Mouse""]",590.91,{},198637,1,Asia +2024-07-22,51227,7961,"[""Tablet""]",1029.62,"{""loyalty"": ""9%""}",118914,0,South America +2023-11-13,51228,3512,"[""Keyboard"", ""Monitor"", ""Phone""]",3076.85,{},248722,1,Asia +2024-08-01,51229,6407,"[""Charger""]",1814.11,{},293688,0,South America +2024-11-28,51230,8957,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2056.69,{},21484,1,South America +2024-11-07,51231,330,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",242.38,{},110592,0,North America +2023-01-19,51232,7312,"[""Headphones"", ""Tablet"", ""Phone""]",1419.85,"{""promo"": ""5%""}",262972,0,Europe +2023-06-17,51233,1683,"[""Laptop""]",185.32,"{""promo"": ""8%""}",160980,1,Africa +2023-03-09,51234,7507,"[""Laptop"", ""Charger""]",4319.94,"{""seasonal"": ""22%""}",115771,0,Africa +2023-08-16,51235,1316,"[""Headphones"", ""Keyboard""]",4777.31,{},170289,1,Europe +2024-09-18,51236,2138,"[""Tablet"", ""Monitor""]",660.28,"{""promo"": ""18%""}",64326,1,Europe +2023-12-31,51237,1987,"[""Charger"", ""Laptop"", ""Phone""]",2282.49,{},27642,1,North America +2023-03-08,51238,7382,"[""Monitor"", ""Laptop"", ""Phone""]",3067.05,"{""promo"": ""8%""}",5226,1,Asia +2023-04-30,51239,6213,"[""Headphones"", ""Keyboard"", ""Charger""]",3025.62,{},56727,0,North America +2023-07-07,51240,8832,"[""Keyboard"", ""Charger"", ""Tablet""]",4986.67,{},37045,0,Europe +2024-12-14,51241,4652,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2817.63,"{""loyalty"": ""21%""}",9990,0,Europe +2023-06-23,51242,7278,"[""Tablet""]",2357.88,{},138614,1,North America +2024-10-12,51243,4715,"[""Monitor""]",966.28,{},47944,1,Europe +2023-09-03,51244,8290,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",82.29,"{""seasonal"": ""22%""}",115485,1,Asia +2024-07-01,51245,917,"[""Laptop""]",3101.24,"{""loyalty"": ""23%""}",187232,1,South America +2023-10-20,51246,298,"[""Tablet"", ""Keyboard"", ""Charger""]",4348.12,"{""promo"": ""12%""}",279448,0,North America +2024-01-22,51247,9757,"[""Laptop"", ""Charger""]",139.33,"{"""": ""14%""}",174952,0,Africa +2024-10-27,51248,2725,"[""Monitor"", ""Charger""]",2081.39,{},123778,0,North America +2024-06-05,51249,9120,"[""Keyboard"", ""Tablet""]",4759.56,"{"""": ""29%""}",280510,0,Asia +2023-04-24,51250,662,"[""Phone"", ""Laptop""]",2003.73,{},2479,1,Europe +2024-08-25,51251,3354,"[""Laptop"", ""Tablet""]",1321.41,"{""promo"": ""28%""}",163721,1,Asia +2023-09-18,51252,7191,"[""Wireless Mouse""]",1103.35,{},107157,1,North America +2023-05-18,51253,4872,"[""Keyboard"", ""Tablet"", ""Charger""]",4817.17,"{""promo"": ""14%""}",88788,0,Asia +2023-11-23,51254,7323,"[""Keyboard"", ""Phone"", ""Laptop""]",1977.44,"{""seasonal"": ""14%""}",170913,0,Europe +2024-02-14,51255,7857,"[""Headphones""]",90.26,"{""seasonal"": ""7%""}",286944,1,Europe +2023-01-21,51256,7295,"[""Phone"", ""Keyboard"", ""Monitor""]",1514.75,{},101618,1,Africa +2024-02-17,51257,4779,"[""Monitor""]",3511.96,"{""seasonal"": ""5%""}",45665,1,Europe +2024-03-22,51258,1026,"[""Tablet"", ""Phone""]",4288.17,{},22705,0,South America +2023-12-16,51259,4085,"[""Wireless Mouse"", ""Keyboard""]",4070.71,"{""seasonal"": ""26%""}",93279,0,Africa +2024-01-21,51260,8709,"[""Phone""]",1859.34,{},25531,0,Asia +2023-03-29,51261,3700,"[""Laptop"", ""Phone""]",1784.81,"{""seasonal"": ""24%""}",45782,1,Europe +2024-11-10,51262,753,"[""Phone"", ""Monitor""]",718.23,{},82835,0,Europe +2024-03-16,51263,2791,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3387.02,{},109954,0,South America +2024-03-26,51264,6233,"[""Monitor""]",305.75,{},102633,0,South America +2023-11-20,51265,3430,"[""Phone""]",798.08,{},76608,1,Africa +2023-06-21,51266,5394,"[""Laptop"", ""Headphones""]",4379.55,{},172240,1,North America +2023-05-31,51267,1943,"[""Monitor"", ""Tablet""]",4486.81,"{"""": ""9%""}",101381,0,Asia +2024-12-20,51268,4124,"[""Keyboard"", ""Headphones""]",503.2,{},21860,0,South America +2023-06-29,51269,1299,"[""Monitor"", ""Tablet""]",3305.23,{},84703,0,Europe +2024-04-20,51270,4454,"[""Laptop""]",3754.47,{},106600,1,Asia +2024-07-23,51271,6764,"[""Laptop"", ""Headphones"", ""Keyboard""]",3506.26,{},236744,1,Europe +2024-12-16,51272,202,"[""Tablet""]",1385.65,"{""promo"": ""21%""}",192589,0,South America +2023-03-02,51273,9582,"[""Monitor""]",763.19,"{""promo"": ""29%""}",137305,0,Asia +2024-10-07,51274,6092,"[""Headphones"", ""Wireless Mouse""]",1112.16,{},148034,1,Asia +2023-04-10,51275,7574,"[""Charger"", ""Headphones"", ""Tablet""]",3642.52,{},6053,1,Africa +2024-02-14,51276,4695,"[""Headphones""]",3767.07,"{""seasonal"": ""28%""}",21874,0,South America +2024-10-11,51277,5191,"[""Charger"", ""Keyboard"", ""Tablet""]",148.55,"{""seasonal"": ""30%""}",259253,0,North America +2023-09-27,51278,1736,"[""Laptop"", ""Monitor"", ""Keyboard""]",3297.03,"{""seasonal"": ""29%""}",287451,0,Europe +2023-07-20,51279,395,"[""Headphones"", ""Wireless Mouse""]",233.52,"{"""": ""30%""}",291430,1,Asia +2024-10-31,51280,1613,"[""Tablet""]",738.27,"{""promo"": ""20%""}",17112,0,Africa +2023-02-16,51281,547,"[""Tablet"", ""Phone"", ""Keyboard""]",4718.15,"{"""": ""14%""}",155390,0,Africa +2024-02-10,51282,9084,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3993.82,"{"""": ""27%""}",77275,0,South America +2023-03-21,51283,7877,"[""Monitor"", ""Tablet""]",1819.36,{},110785,1,North America +2023-05-10,51284,3286,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1953.35,{},275660,1,Asia +2024-08-24,51285,5852,"[""Monitor""]",1593.65,"{"""": ""21%""}",263708,0,Asia +2024-09-19,51286,5127,"[""Keyboard"", ""Phone"", ""Charger""]",2331.53,{},275747,1,Asia +2023-05-05,51287,1409,"[""Monitor"", ""Charger"", ""Keyboard""]",3286.98,{},11345,1,South America +2024-09-10,51288,6048,"[""Keyboard""]",490.5,{},50866,0,Asia +2023-12-21,51289,3553,"[""Monitor"", ""Phone""]",4519.68,{},71415,0,South America +2024-04-14,51290,9843,"[""Monitor"", ""Headphones"", ""Keyboard""]",1071.4,{},234639,1,South America +2023-05-26,51291,2141,"[""Phone"", ""Wireless Mouse""]",1420.95,{},228536,0,Africa +2024-02-01,51292,6064,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2961.91,"{""loyalty"": ""28%""}",60824,0,South America +2024-07-31,51293,3766,"[""Wireless Mouse"", ""Monitor""]",2032.44,"{""promo"": ""29%""}",117795,1,Europe +2024-12-04,51294,9522,"[""Keyboard"", ""Monitor"", ""Phone""]",3910.1,"{""promo"": ""15%""}",191226,1,Asia +2024-12-07,51295,6488,"[""Tablet"", ""Phone"", ""Monitor""]",72.17,"{""seasonal"": ""13%""}",278975,0,Europe +2024-11-29,51296,7963,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2018.84,"{"""": ""26%""}",119901,1,Europe +2024-08-02,51297,2091,"[""Keyboard""]",4527.58,"{""loyalty"": ""8%""}",190484,1,North America +2023-03-24,51298,8207,"[""Keyboard""]",1696.91,{},116269,0,Asia +2023-05-10,51299,7164,"[""Tablet"", ""Phone"", ""Monitor""]",1121.4,"{""promo"": ""14%""}",251744,1,South America +2023-09-26,51300,6093,"[""Keyboard"", ""Monitor""]",2791.9,{},140894,0,Europe +2023-08-18,51301,4563,"[""Phone"", ""Monitor""]",1877.99,"{""seasonal"": ""6%""}",9540,1,Europe +2023-12-28,51302,4809,"[""Phone"", ""Charger"", ""Headphones""]",4078.11,{},257413,0,Africa +2024-01-09,51303,1101,"[""Phone"", ""Wireless Mouse""]",3525.11,"{""loyalty"": ""26%""}",97366,1,North America +2024-04-11,51304,7598,"[""Phone"", ""Charger""]",57.84,"{""promo"": ""13%""}",136074,1,Europe +2024-12-15,51305,8929,"[""Wireless Mouse""]",1028.7,"{""promo"": ""25%""}",146481,0,Africa +2023-01-25,51306,9166,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3322.96,{},166183,0,North America +2024-01-16,51307,2045,"[""Phone"", ""Headphones"", ""Monitor""]",2631.13,"{"""": ""20%""}",61438,1,Africa +2023-05-26,51308,4818,"[""Charger"", ""Tablet"", ""Phone""]",4687.53,{},42731,1,Africa +2024-08-11,51309,7476,"[""Phone"", ""Headphones""]",686.36,{},167839,0,South America +2024-06-03,51310,1526,"[""Phone"", ""Laptop"", ""Keyboard""]",1709.84,"{""promo"": ""26%""}",162819,0,Europe +2023-03-24,51311,8469,"[""Charger"", ""Laptop""]",3215.37,{},110268,0,North America +2023-08-08,51312,8520,"[""Tablet"", ""Laptop"", ""Charger""]",209.93,{},116980,0,Europe +2024-11-12,51313,7059,"[""Laptop"", ""Tablet""]",3130.88,"{""seasonal"": ""13%""}",63259,0,Europe +2023-05-24,51314,7442,"[""Monitor"", ""Keyboard"", ""Headphones""]",4103.15,{},5524,0,Asia +2023-12-30,51315,1973,"[""Keyboard""]",3282.23,"{""promo"": ""23%""}",259490,0,South America +2023-06-05,51316,2896,"[""Laptop"", ""Monitor""]",4002.77,{},180664,1,Europe +2024-09-13,51317,148,"[""Charger""]",367.49,"{"""": ""14%""}",109531,0,Europe +2024-07-03,51318,5756,"[""Tablet"", ""Phone""]",2302.7,{},13739,1,South America +2023-11-12,51319,137,"[""Keyboard"", ""Tablet""]",1453.83,{},10055,0,Africa +2023-12-23,51320,4864,"[""Laptop"", ""Wireless Mouse""]",2110.7,"{"""": ""17%""}",182235,1,Europe +2023-12-14,51321,8595,"[""Tablet"", ""Phone""]",2369.78,{},100921,1,Africa +2024-08-18,51322,5158,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3061.22,"{"""": ""5%""}",182919,0,Africa +2023-03-24,51323,7838,"[""Charger""]",2773.43,{},110264,0,Asia +2024-07-11,51324,1493,"[""Charger"", ""Keyboard"", ""Phone""]",3206.31,"{""promo"": ""6%""}",4071,1,Africa +2023-08-13,51325,3690,"[""Phone"", ""Laptop"", ""Keyboard""]",4963.9,"{""loyalty"": ""24%""}",247518,0,North America +2024-04-03,51326,5634,"[""Keyboard"", ""Charger"", ""Headphones""]",3519.69,"{""loyalty"": ""9%""}",40676,1,Asia +2024-07-26,51327,5370,"[""Monitor"", ""Headphones"", ""Charger""]",4189.42,"{"""": ""14%""}",231351,1,North America +2024-09-27,51328,6642,"[""Tablet""]",4680.57,{},172089,1,Europe +2024-11-30,51329,5700,"[""Monitor"", ""Phone"", ""Keyboard""]",2454.26,"{""promo"": ""15%""}",97182,1,Europe +2024-01-01,51330,4360,"[""Phone"", ""Tablet""]",3431.95,{},276106,1,South America +2023-07-09,51331,2146,"[""Monitor"", ""Charger""]",2118.39,"{""seasonal"": ""23%""}",163064,0,Europe +2024-04-25,51332,3837,"[""Wireless Mouse"", ""Monitor""]",1229.54,"{""seasonal"": ""30%""}",260305,0,North America +2023-06-17,51333,844,"[""Monitor"", ""Keyboard"", ""Laptop""]",1152.31,{},270352,1,Asia +2023-06-01,51334,2698,"[""Headphones"", ""Tablet"", ""Laptop""]",1655.38,"{"""": ""14%""}",165522,1,South America +2024-03-22,51335,8472,"[""Monitor"", ""Keyboard""]",2836.75,{},95241,1,South America +2023-01-19,51336,1166,"[""Monitor"", ""Tablet""]",1276.95,"{""loyalty"": ""23%""}",212638,0,North America +2023-03-20,51337,7029,"[""Wireless Mouse""]",3379.26,"{""seasonal"": ""22%""}",191422,1,Asia +2024-05-17,51338,784,"[""Monitor"", ""Laptop""]",3767.8,{},70786,0,South America +2024-04-07,51339,6144,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2819.18,"{""promo"": ""15%""}",282720,1,South America +2023-10-10,51340,8687,"[""Phone"", ""Wireless Mouse""]",4647.4,{},135504,1,Europe +2023-11-24,51341,5142,"[""Tablet"", ""Laptop""]",4394.33,"{""seasonal"": ""15%""}",207163,1,Africa +2024-04-11,51342,8970,"[""Phone"", ""Tablet"", ""Monitor""]",4733.48,"{""seasonal"": ""18%""}",269146,0,North America +2023-02-05,51343,7593,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3377.55,"{""seasonal"": ""7%""}",150621,1,North America +2023-06-04,51344,250,"[""Phone""]",4290.82,{},78826,1,Asia +2024-03-20,51345,5909,"[""Monitor""]",1998.73,"{"""": ""29%""}",145437,0,Asia +2024-07-13,51346,4981,"[""Tablet""]",3112.95,{},174029,1,Africa +2024-06-10,51347,6314,"[""Tablet""]",2767.4,{},105586,0,Europe +2023-05-23,51348,1841,"[""Charger"", ""Monitor""]",156.88,{},136653,0,Asia +2024-07-22,51349,7835,"[""Headphones"", ""Laptop""]",379.39,"{""promo"": ""6%""}",281748,1,North America +2024-07-03,51350,1078,"[""Laptop"", ""Monitor"", ""Tablet""]",3583.34,"{""seasonal"": ""26%""}",90350,1,North America +2023-02-03,51351,104,"[""Phone"", ""Wireless Mouse""]",3690.19,"{""loyalty"": ""16%""}",21735,1,North America +2023-08-28,51352,2540,"[""Keyboard""]",1205.44,"{""loyalty"": ""29%""}",221522,0,North America +2024-02-08,51353,474,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2443.82,"{""loyalty"": ""5%""}",139697,1,Africa +2024-06-21,51354,5043,"[""Phone"", ""Keyboard"", ""Charger""]",4342.0,"{""loyalty"": ""23%""}",106441,0,Asia +2023-07-05,51355,9305,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1751.99,"{""loyalty"": ""18%""}",237543,1,Europe +2024-10-27,51356,5567,"[""Tablet"", ""Phone"", ""Keyboard""]",744.01,"{""promo"": ""11%""}",63441,1,Europe +2023-05-11,51357,7316,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1153.68,"{"""": ""8%""}",174576,0,South America +2023-04-21,51358,8871,"[""Charger""]",3157.15,"{""seasonal"": ""13%""}",4654,0,Africa +2023-05-05,51359,132,"[""Wireless Mouse"", ""Keyboard""]",1229.78,{},89845,0,Asia +2024-09-28,51360,9975,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4411.72,"{"""": ""26%""}",12432,0,Europe +2023-06-28,51361,5550,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",828.08,"{""seasonal"": ""7%""}",146700,0,North America +2023-02-24,51362,7053,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4959.87,"{"""": ""23%""}",169180,1,Africa +2023-02-05,51363,9952,"[""Tablet"", ""Wireless Mouse""]",3753.51,"{"""": ""26%""}",190189,1,South America +2024-03-15,51364,3734,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1406.84,"{""loyalty"": ""6%""}",147139,1,Asia +2024-05-07,51365,9798,"[""Tablet"", ""Phone"", ""Headphones""]",562.23,{},10448,1,South America +2023-06-18,51366,8734,"[""Tablet""]",744.94,{},127714,0,Africa +2023-07-15,51367,9691,"[""Keyboard""]",3408.44,"{"""": ""6%""}",58539,1,South America +2023-09-12,51368,7591,"[""Phone"", ""Monitor""]",1914.03,{},233269,0,South America +2023-10-14,51369,3609,"[""Keyboard"", ""Monitor""]",1796.1,{},114955,1,Asia +2023-08-29,51370,3625,"[""Monitor"", ""Laptop""]",3356.49,{},163115,0,Europe +2023-01-27,51371,5710,"[""Keyboard""]",4793.72,{},171567,0,South America +2023-03-31,51372,4034,"[""Wireless Mouse"", ""Phone""]",4230.21,"{""promo"": ""20%""}",291033,1,Europe +2024-09-07,51373,7519,"[""Monitor"", ""Laptop""]",2491.48,"{"""": ""16%""}",267679,0,Asia +2023-12-02,51374,2867,"[""Laptop"", ""Monitor""]",2602.37,"{"""": ""5%""}",158636,1,North America +2024-09-10,51375,2977,"[""Headphones"", ""Keyboard""]",2163.76,"{""promo"": ""14%""}",94074,1,South America +2024-07-29,51376,970,"[""Tablet"", ""Laptop""]",2223.56,{},209927,1,Asia +2024-02-01,51377,5617,"[""Phone""]",4858.61,"{""promo"": ""10%""}",33031,0,Africa +2024-10-03,51378,2839,"[""Keyboard"", ""Monitor""]",2470.01,"{""promo"": ""13%""}",76268,0,South America +2024-10-12,51379,1638,"[""Phone"", ""Laptop""]",4931.4,"{""loyalty"": ""17%""}",82365,1,Europe +2024-11-11,51380,4511,"[""Phone"", ""Wireless Mouse""]",1103.24,{},182735,0,North America +2024-05-29,51381,4383,"[""Keyboard"", ""Headphones"", ""Tablet""]",1250.39,"{""loyalty"": ""24%""}",142673,1,Europe +2024-03-03,51382,7732,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2702.95,"{""promo"": ""30%""}",84327,1,South America +2023-04-14,51383,1843,"[""Charger"", ""Phone"", ""Monitor""]",1173.74,{},13267,0,Asia +2024-02-02,51384,5994,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1762.79,{},185220,1,South America +2023-11-22,51385,5794,"[""Headphones""]",593.9,{},63622,0,Asia +2024-03-28,51386,8329,"[""Keyboard"", ""Laptop""]",337.69,{},140315,0,Africa +2024-03-20,51387,2975,"[""Monitor""]",4035.73,{},211346,1,South America +2024-09-09,51388,72,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1887.91,{},83765,1,Asia +2023-03-14,51389,5106,"[""Laptop"", ""Charger""]",863.63,"{""seasonal"": ""5%""}",92592,1,Asia +2024-12-16,51390,1967,"[""Headphones"", ""Monitor"", ""Tablet""]",4098.86,{},286630,1,Asia +2023-03-06,51391,7499,"[""Keyboard"", ""Headphones""]",3375.07,{},138175,1,Europe +2024-08-28,51392,6070,"[""Tablet""]",826.71,{},271172,0,Africa +2023-12-01,51393,2451,"[""Phone""]",4079.06,"{""loyalty"": ""6%""}",282092,0,South America +2023-03-06,51394,2070,"[""Phone"", ""Headphones""]",1281.93,{},74634,1,Africa +2024-09-23,51395,8597,"[""Phone"", ""Wireless Mouse""]",4585.07,"{""seasonal"": ""5%""}",164175,0,Asia +2023-02-02,51396,3862,"[""Charger"", ""Keyboard""]",1320.79,{},239347,1,South America +2023-06-04,51397,1836,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4419.67,{},25530,0,Europe +2023-11-28,51398,549,"[""Monitor"", ""Charger""]",3799.48,{},191798,1,Europe +2023-04-28,51399,1272,"[""Tablet"", ""Keyboard"", ""Charger""]",2349.76,{},181365,0,Africa +2023-08-30,51400,4546,"[""Keyboard""]",1545.84,{},27281,0,North America +2023-01-18,51401,1246,"[""Phone""]",2780.96,{},81306,0,Africa +2024-06-07,51402,7707,"[""Charger"", ""Keyboard""]",588.51,{},251765,0,Asia +2024-08-16,51403,4795,"[""Laptop"", ""Phone""]",4532.29,"{"""": ""7%""}",53018,1,Africa +2024-11-10,51404,2820,"[""Laptop""]",4411.79,"{"""": ""19%""}",22804,1,Africa +2024-01-11,51405,5951,"[""Charger"", ""Tablet""]",4468.08,"{""promo"": ""17%""}",225332,1,Europe +2023-01-28,51406,2236,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2199.38,"{""seasonal"": ""21%""}",138373,0,Asia +2024-02-20,51407,5525,"[""Laptop""]",932.59,"{""loyalty"": ""18%""}",146948,0,Europe +2024-11-20,51408,4890,"[""Tablet"", ""Charger"", ""Headphones""]",2428.53,"{""seasonal"": ""24%""}",265012,1,South America +2023-03-29,51409,621,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3146.07,{},271160,1,South America +2023-02-13,51410,3251,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3655.39,{},200409,0,North America +2023-07-13,51411,9778,"[""Laptop"", ""Monitor"", ""Keyboard""]",4019.45,{},204376,1,Europe +2024-03-10,51412,3529,"[""Charger"", ""Phone""]",4639.02,"{"""": ""6%""}",138407,0,Africa +2023-10-05,51413,4099,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1032.47,{},182175,0,Europe +2023-05-28,51414,7312,"[""Tablet"", ""Charger""]",3342.8,{},282981,1,South America +2023-10-23,51415,8099,"[""Phone""]",4117.79,{},266474,0,South America +2023-10-31,51416,2770,"[""Headphones"", ""Wireless Mouse""]",4017.9,{},59469,0,Africa +2024-05-08,51417,4657,"[""Keyboard""]",2149.08,"{""seasonal"": ""6%""}",253135,0,Europe +2023-06-25,51418,6207,"[""Charger""]",703.16,"{""seasonal"": ""15%""}",73601,1,Africa +2024-07-15,51419,1812,"[""Wireless Mouse""]",4794.84,"{""promo"": ""8%""}",101416,1,Europe +2024-04-12,51420,753,"[""Keyboard"", ""Monitor""]",4355.69,"{"""": ""20%""}",184060,1,North America +2023-12-23,51421,7101,"[""Phone"", ""Keyboard""]",688.71,{},158020,0,Europe +2023-08-01,51422,2959,"[""Monitor"", ""Headphones""]",3858.63,{},5732,1,Africa +2024-01-17,51423,5932,"[""Keyboard"", ""Charger"", ""Phone""]",3831.04,{},215312,1,Africa +2024-11-04,51424,6847,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",154.99,{},214744,1,Asia +2023-10-30,51425,1531,"[""Monitor"", ""Charger"", ""Keyboard""]",2545.11,{},241218,0,Africa +2024-12-27,51426,8631,"[""Laptop"", ""Monitor"", ""Charger""]",3525.76,{},263015,0,Africa +2023-02-02,51427,9051,"[""Tablet""]",3680.95,"{"""": ""12%""}",147854,1,Africa +2023-07-14,51428,2324,"[""Keyboard"", ""Monitor"", ""Headphones""]",1002.2,{},108214,1,Asia +2023-11-22,51429,5875,"[""Charger""]",4421.3,"{""loyalty"": ""19%""}",118886,0,Africa +2023-03-28,51430,3038,"[""Wireless Mouse"", ""Phone""]",2176.45,"{""promo"": ""28%""}",276743,1,South America +2023-11-03,51431,233,"[""Keyboard"", ""Phone""]",3299.05,{},24885,0,Asia +2023-06-01,51432,9584,"[""Keyboard"", ""Tablet""]",2802.78,{},75420,0,Asia +2023-08-30,51433,2130,"[""Phone"", ""Charger""]",1975.21,{},292119,0,Europe +2023-09-29,51434,5100,"[""Phone""]",2098.58,"{""seasonal"": ""24%""}",64889,0,Asia +2023-08-01,51435,8661,"[""Headphones""]",2422.09,"{"""": ""16%""}",130000,0,Africa +2024-07-08,51436,2735,"[""Monitor""]",981.41,{},184614,0,Africa +2024-01-20,51437,8841,"[""Tablet"", ""Laptop"", ""Phone""]",4640.69,"{""seasonal"": ""12%""}",179302,1,Asia +2024-04-05,51438,6791,"[""Monitor""]",3495.45,{},17409,0,Africa +2023-11-03,51439,2956,"[""Monitor""]",2233.17,{},117262,1,Africa +2024-10-12,51440,3647,"[""Charger"", ""Monitor""]",1986.56,{},56381,1,Asia +2024-06-30,51441,5459,"[""Laptop""]",4546.69,"{"""": ""23%""}",94909,0,Europe +2023-06-30,51442,1522,"[""Charger"", ""Wireless Mouse""]",1753.4,"{""promo"": ""10%""}",239061,0,South America +2024-02-11,51443,5252,"[""Phone""]",4537.18,"{""loyalty"": ""26%""}",209642,1,Europe +2023-02-19,51444,2640,"[""Wireless Mouse"", ""Tablet""]",108.41,{},249178,1,South America +2023-04-08,51445,1641,"[""Headphones"", ""Laptop""]",4793.9,"{"""": ""26%""}",222824,1,South America +2023-08-16,51446,8960,"[""Laptop"", ""Tablet""]",1251.81,"{"""": ""7%""}",234366,0,Africa +2023-12-08,51447,9031,"[""Headphones"", ""Laptop""]",1875.08,"{""promo"": ""12%""}",253988,0,South America +2023-02-02,51448,3121,"[""Keyboard""]",1008.36,"{""loyalty"": ""17%""}",55730,0,Africa +2023-12-04,51449,1309,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1491.55,"{""loyalty"": ""20%""}",71524,0,Asia +2023-04-10,51450,2178,"[""Headphones""]",1688.23,{},153053,0,Europe +2023-07-08,51451,3348,"[""Keyboard"", ""Laptop""]",1877.99,{},274114,1,North America +2024-11-16,51452,4804,"[""Tablet""]",3542.35,{},15628,0,Europe +2023-04-09,51453,3760,"[""Keyboard"", ""Phone"", ""Charger""]",461.12,"{""loyalty"": ""25%""}",250435,0,South America +2023-08-25,51454,8749,"[""Monitor"", ""Headphones""]",2974.94,{},137546,1,Africa +2023-01-09,51455,624,"[""Headphones"", ""Phone""]",1071.96,"{"""": ""24%""}",173958,1,South America +2023-07-03,51456,5383,"[""Wireless Mouse"", ""Phone""]",1959.93,"{""loyalty"": ""14%""}",93042,0,Africa +2023-04-03,51457,2350,"[""Phone"", ""Headphones"", ""Charger""]",432.62,{},45172,0,Africa +2024-06-25,51458,7797,"[""Charger""]",276.26,{},169135,1,North America +2023-12-04,51459,5973,"[""Charger""]",3327.37,{},5063,0,North America +2023-12-24,51460,2690,"[""Keyboard"", ""Headphones""]",2281.9,{},193102,1,North America +2024-07-06,51461,5403,"[""Tablet"", ""Laptop""]",2745.75,{},286115,1,Asia +2023-03-07,51462,6668,"[""Keyboard"", ""Laptop"", ""Phone""]",623.07,{},178105,0,Africa +2023-04-23,51463,5183,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2105.69,{},164568,1,Asia +2024-04-27,51464,6414,"[""Laptop"", ""Phone""]",560.14,"{""loyalty"": ""22%""}",140535,0,Africa +2023-05-22,51465,9108,"[""Keyboard""]",626.17,{},215152,1,South America +2023-08-26,51466,4329,"[""Tablet"", ""Wireless Mouse""]",833.69,{},154639,1,South America +2023-05-07,51467,2401,"[""Charger""]",1562.55,"{""promo"": ""16%""}",68943,0,Europe +2024-12-31,51468,4043,"[""Tablet"", ""Phone"", ""Charger""]",4962.77,"{""loyalty"": ""10%""}",97106,0,South America +2023-07-22,51469,5237,"[""Wireless Mouse""]",4428.94,{},243627,0,South America +2023-04-11,51470,1790,"[""Keyboard"", ""Charger""]",2039.96,{},213351,0,North America +2024-03-28,51471,866,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2097.2,"{""seasonal"": ""12%""}",291918,0,Africa +2023-07-20,51472,7044,"[""Tablet"", ""Wireless Mouse""]",3705.28,"{"""": ""14%""}",181373,1,Europe +2024-02-12,51473,2518,"[""Tablet"", ""Wireless Mouse""]",2949.26,"{""promo"": ""10%""}",193238,0,Europe +2023-06-13,51474,8663,"[""Monitor""]",3745.83,{},285576,1,Europe +2024-10-09,51475,4705,"[""Headphones""]",2538.56,{},266474,0,Africa +2024-07-20,51476,2065,"[""Phone""]",516.35,{},283294,1,Africa +2024-12-04,51477,8781,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2904.59,"{""seasonal"": ""14%""}",291194,0,South America +2023-02-26,51478,6911,"[""Tablet"", ""Headphones"", ""Monitor""]",3673.02,{},132018,1,North America +2024-08-17,51479,4838,"[""Tablet"", ""Headphones""]",1667.92,{},202042,1,North America +2024-07-15,51480,704,"[""Wireless Mouse""]",4672.54,{},47689,1,Asia +2024-08-29,51481,2342,"[""Headphones"", ""Tablet""]",2598.83,{},262036,0,Asia +2023-03-15,51482,1471,"[""Charger""]",3910.92,"{"""": ""26%""}",298272,0,Asia +2023-07-09,51483,6004,"[""Laptop"", ""Headphones""]",649.0,{},119978,0,Europe +2024-01-04,51484,3596,"[""Phone"", ""Tablet""]",4138.56,{},74746,0,Africa +2024-11-10,51485,4067,"[""Charger"", ""Phone"", ""Monitor""]",4854.39,{},129989,0,South America +2024-02-05,51486,8977,"[""Wireless Mouse""]",4202.02,"{""promo"": ""17%""}",32537,1,South America +2024-05-15,51487,6383,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1554.69,{},253950,0,Europe +2023-03-16,51488,6098,"[""Phone"", ""Keyboard""]",3037.34,"{"""": ""22%""}",86081,1,Europe +2023-12-02,51489,7415,"[""Headphones"", ""Charger""]",3983.75,{},121522,0,Asia +2023-04-26,51490,7224,"[""Keyboard""]",1732.2,{},149737,1,Asia +2024-10-19,51491,303,"[""Headphones"", ""Keyboard"", ""Tablet""]",56.46,"{"""": ""23%""}",268439,1,Asia +2023-04-17,51492,8638,"[""Charger""]",4717.64,{},214884,0,South America +2024-09-29,51493,3970,"[""Wireless Mouse""]",1720.78,"{""loyalty"": ""22%""}",33149,0,Africa +2023-07-29,51494,4510,"[""Laptop"", ""Monitor""]",118.29,{},11128,1,Africa +2024-07-18,51495,9539,"[""Laptop"", ""Phone""]",1891.57,"{"""": ""25%""}",189083,0,Asia +2024-01-12,51496,8498,"[""Monitor"", ""Laptop""]",567.05,{},23443,1,Asia +2024-07-26,51497,6147,"[""Laptop"", ""Headphones"", ""Phone""]",1241.85,{},226070,1,South America +2024-01-11,51498,596,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2039.42,"{"""": ""11%""}",197601,0,Africa +2024-08-10,51499,6685,"[""Monitor"", ""Keyboard""]",3116.79,"{""loyalty"": ""8%""}",21907,1,Africa +2024-02-29,51500,8253,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3882.48,{},160519,0,Africa +2023-08-06,51501,973,"[""Headphones""]",2949.71,"{""promo"": ""8%""}",32274,1,Asia +2023-02-10,51502,7957,"[""Charger"", ""Phone""]",1399.25,{},276979,0,South America +2024-02-27,51503,6392,"[""Laptop""]",340.19,"{""seasonal"": ""23%""}",25935,1,Africa +2024-04-29,51504,1981,"[""Tablet"", ""Phone"", ""Headphones""]",3380.11,{},109925,0,South America +2024-06-12,51505,6749,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3082.62,"{""loyalty"": ""22%""}",89267,1,North America +2024-11-19,51506,6808,"[""Phone""]",1505.82,"{"""": ""15%""}",11804,1,Asia +2024-10-29,51507,793,"[""Charger""]",1399.28,{},113297,1,North America +2024-09-01,51508,8734,"[""Keyboard"", ""Headphones""]",4202.63,"{""seasonal"": ""7%""}",273494,1,Europe +2024-03-06,51509,5566,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2860.7,{},198053,1,North America +2024-04-05,51510,1745,"[""Charger"", ""Laptop"", ""Headphones""]",2221.98,{},187248,0,Asia +2024-07-06,51511,9678,"[""Phone"", ""Monitor"", ""Headphones""]",1121.56,"{""promo"": ""15%""}",21404,1,Africa +2023-08-18,51512,1970,"[""Headphones""]",90.11,{},217819,1,Africa +2024-01-04,51513,2784,"[""Phone"", ""Charger"", ""Keyboard""]",3516.41,"{""seasonal"": ""24%""}",295940,0,Europe +2023-05-01,51514,5248,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",971.18,"{""seasonal"": ""9%""}",281824,0,Asia +2024-12-03,51515,1105,"[""Keyboard""]",523.8,{},72629,0,Europe +2023-08-30,51516,4208,"[""Headphones""]",4281.16,"{""loyalty"": ""9%""}",110678,0,Africa +2023-04-05,51517,4962,"[""Phone"", ""Keyboard""]",4743.26,"{""seasonal"": ""14%""}",184707,0,South America +2024-06-11,51518,9207,"[""Laptop""]",2965.53,{},197679,0,Africa +2024-08-06,51519,3766,"[""Phone"", ""Charger""]",1773.1,{},279343,1,Asia +2024-04-24,51520,783,"[""Headphones"", ""Tablet"", ""Monitor""]",516.46,{},155287,1,South America +2023-04-19,51521,7364,"[""Laptop"", ""Charger""]",2796.65,"{""promo"": ""11%""}",70638,1,Europe +2024-09-12,51522,8342,"[""Charger""]",1054.01,{},121216,0,South America +2023-01-28,51523,8095,"[""Laptop"", ""Phone""]",1717.0,"{""loyalty"": ""14%""}",200255,0,South America +2023-12-11,51524,3578,"[""Monitor""]",710.6,"{"""": ""20%""}",97910,1,Asia +2023-10-06,51525,8438,"[""Headphones""]",2002.51,{},189288,0,Europe +2024-07-05,51526,6067,"[""Charger"", ""Headphones"", ""Monitor""]",1710.05,"{"""": ""17%""}",206967,1,Africa +2024-01-12,51527,8680,"[""Keyboard"", ""Phone""]",4458.32,"{""promo"": ""8%""}",204679,0,North America +2024-03-11,51528,1423,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1088.53,{},108915,1,Asia +2023-08-30,51529,9941,"[""Monitor"", ""Wireless Mouse""]",321.59,"{""loyalty"": ""20%""}",114405,0,Asia +2024-04-06,51530,2638,"[""Phone"", ""Laptop""]",730.2,"{"""": ""11%""}",57174,1,Europe +2023-03-21,51531,4709,"[""Headphones"", ""Keyboard"", ""Monitor""]",4875.22,{},161748,0,North America +2023-07-01,51532,6913,"[""Monitor"", ""Headphones""]",3155.51,{},67722,1,Europe +2024-07-15,51533,1726,"[""Tablet"", ""Keyboard""]",2649.01,{},235846,0,Africa +2023-01-07,51534,2742,"[""Phone"", ""Headphones"", ""Tablet""]",1398.65,"{""loyalty"": ""14%""}",218414,0,South America +2023-02-18,51535,4905,"[""Headphones""]",607.57,"{""promo"": ""11%""}",234975,0,Europe +2023-09-17,51536,9234,"[""Phone""]",3517.19,{},222669,0,Europe +2023-03-11,51537,3782,"[""Keyboard""]",2088.99,"{""seasonal"": ""21%""}",299247,1,Asia +2023-03-05,51538,6099,"[""Laptop""]",1888.74,{},208131,0,South America +2023-01-12,51539,3120,"[""Laptop"", ""Monitor"", ""Headphones""]",3470.76,{},200448,1,South America +2024-05-22,51540,5452,"[""Keyboard"", ""Laptop""]",4962.98,{},140521,1,North America +2024-05-17,51541,926,"[""Wireless Mouse"", ""Monitor""]",3287.82,"{""seasonal"": ""25%""}",177127,1,Africa +2024-01-31,51542,3052,"[""Keyboard""]",4019.83,{},48447,1,Asia +2023-09-02,51543,6308,"[""Phone""]",1697.95,{},164524,0,Africa +2023-10-12,51544,1949,"[""Laptop""]",4730.14,"{"""": ""17%""}",106715,0,South America +2023-10-23,51545,2765,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3666.53,{},28692,0,Africa +2024-03-22,51546,6186,"[""Laptop""]",1344.11,"{"""": ""14%""}",87743,1,Africa +2023-02-01,51547,5113,"[""Charger"", ""Monitor""]",714.15,{},202517,1,North America +2023-06-14,51548,7368,"[""Phone"", ""Monitor""]",533.94,"{""promo"": ""18%""}",80451,0,Asia +2023-10-05,51549,8459,"[""Wireless Mouse""]",989.96,{},129508,1,Asia +2023-05-11,51550,2117,"[""Phone""]",4835.47,{},264620,1,North America +2024-05-19,51551,5713,"[""Wireless Mouse"", ""Charger""]",2494.95,"{""seasonal"": ""28%""}",239386,1,Europe +2023-08-15,51552,2008,"[""Wireless Mouse""]",3421.7,"{"""": ""8%""}",118290,1,North America +2023-01-01,51553,2691,"[""Headphones""]",939.49,"{""loyalty"": ""17%""}",217139,0,Africa +2023-10-03,51554,5194,"[""Laptop"", ""Monitor""]",4472.19,{},223270,0,Africa +2023-06-05,51555,5144,"[""Monitor""]",1763.9,{},255915,0,Europe +2024-11-05,51556,3176,"[""Phone"", ""Charger"", ""Wireless Mouse""]",784.67,"{""promo"": ""29%""}",58618,1,Europe +2023-02-24,51557,5039,"[""Wireless Mouse"", ""Headphones""]",1514.58,{},259534,0,North America +2024-01-12,51558,5143,"[""Monitor"", ""Laptop""]",2589.33,{},2083,1,Asia +2023-05-31,51559,8891,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3567.26,"{"""": ""27%""}",152313,1,Europe +2024-02-02,51560,6137,"[""Monitor"", ""Laptop""]",2468.63,{},220983,0,South America +2023-10-16,51561,676,"[""Charger"", ""Tablet""]",4688.72,{},101776,1,South America +2023-07-31,51562,7806,"[""Wireless Mouse"", ""Phone""]",3716.39,"{"""": ""17%""}",79270,0,Europe +2024-09-13,51563,5019,"[""Keyboard"", ""Laptop"", ""Monitor""]",4575.46,{},80962,0,Asia +2023-11-13,51564,9033,"[""Keyboard""]",1844.12,{},264685,1,South America +2024-01-02,51565,8976,"[""Charger""]",254.69,{},241061,1,Asia +2024-03-14,51566,21,"[""Tablet"", ""Headphones"", ""Phone""]",177.91,"{""promo"": ""8%""}",11280,1,Europe +2023-11-25,51567,6436,"[""Charger""]",1847.59,{},142135,1,Africa +2023-01-05,51568,3680,"[""Tablet"", ""Phone""]",138.99,"{""loyalty"": ""17%""}",278297,1,Africa +2023-10-02,51569,4080,"[""Monitor"", ""Tablet""]",894.34,"{""loyalty"": ""14%""}",291612,1,Asia +2024-11-09,51570,6802,"[""Headphones""]",2612.02,"{""loyalty"": ""19%""}",197366,1,South America +2024-06-25,51571,6724,"[""Wireless Mouse""]",1914.01,"{"""": ""14%""}",116867,0,Africa +2023-09-09,51572,8965,"[""Laptop"", ""Charger"", ""Headphones""]",686.66,{},204958,1,South America +2024-06-13,51573,489,"[""Monitor"", ""Headphones""]",4583.23,"{""seasonal"": ""11%""}",87653,1,South America +2024-02-28,51574,6138,"[""Keyboard"", ""Tablet"", ""Monitor""]",4493.87,{},171310,0,Europe +2024-10-23,51575,3579,"[""Wireless Mouse""]",2417.28,{},9817,0,Africa +2024-03-29,51576,4624,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3839.74,"{""promo"": ""17%""}",264932,0,Asia +2023-07-01,51577,2265,"[""Headphones"", ""Keyboard""]",776.66,{},60370,1,South America +2024-04-26,51578,1939,"[""Monitor""]",1149.14,{},47886,0,North America +2024-10-24,51579,9819,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2499.52,{},98380,0,North America +2023-04-06,51580,2850,"[""Phone""]",3971.17,"{""loyalty"": ""21%""}",70730,1,Europe +2024-11-04,51581,7917,"[""Headphones"", ""Phone"", ""Keyboard""]",3380.88,"{""loyalty"": ""5%""}",214530,1,North America +2024-09-27,51582,7135,"[""Charger""]",493.65,{},76216,1,Europe +2024-05-06,51583,2796,"[""Monitor""]",2707.64,"{""promo"": ""24%""}",276662,1,Asia +2023-03-03,51584,8371,"[""Monitor"", ""Phone"", ""Tablet""]",2824.37,"{"""": ""11%""}",122791,0,Africa +2024-07-26,51585,428,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3148.73,"{""loyalty"": ""9%""}",124318,0,Europe +2024-11-15,51586,725,"[""Phone"", ""Monitor"", ""Keyboard""]",4707.49,"{"""": ""9%""}",101438,0,Asia +2024-12-04,51587,3538,"[""Charger"", ""Headphones""]",4979.03,{},193516,0,North America +2024-03-20,51588,2538,"[""Headphones"", ""Tablet""]",4261.16,"{"""": ""13%""}",32424,1,Asia +2023-06-25,51589,6903,"[""Headphones"", ""Laptop"", ""Monitor""]",2466.55,"{""seasonal"": ""14%""}",198198,0,North America +2024-04-11,51590,6461,"[""Phone"", ""Laptop""]",4274.72,"{"""": ""30%""}",96952,0,North America +2023-04-01,51591,8171,"[""Keyboard""]",303.68,"{""promo"": ""10%""}",111356,0,Asia +2023-05-19,51592,6318,"[""Keyboard"", ""Phone"", ""Laptop""]",4989.45,"{""loyalty"": ""6%""}",41390,1,South America +2024-11-07,51593,9508,"[""Laptop"", ""Phone""]",1850.05,{},276461,1,Africa +2024-02-10,51594,3996,"[""Charger"", ""Tablet"", ""Laptop""]",1481.57,{},58788,0,Asia +2023-07-24,51595,6102,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4840.31,"{""promo"": ""23%""}",125997,1,Europe +2024-07-09,51596,9956,"[""Monitor"", ""Tablet""]",426.71,"{""promo"": ""21%""}",199930,0,South America +2023-03-02,51597,9394,"[""Charger"", ""Tablet"", ""Monitor""]",2660.34,{},45747,0,Europe +2023-09-18,51598,5175,"[""Keyboard"", ""Phone""]",4330.92,{},121464,1,South America +2023-07-20,51599,9958,"[""Keyboard"", ""Tablet"", ""Phone""]",1998.89,{},72428,0,Africa +2023-06-14,51600,9181,"[""Monitor"", ""Phone""]",3546.65,{},170013,0,Africa +2024-06-28,51601,7894,"[""Monitor"", ""Tablet"", ""Laptop""]",4032.47,{},141441,0,Europe +2023-01-15,51602,4785,"[""Tablet""]",3673.26,{},235620,0,South America +2024-12-15,51603,4739,"[""Wireless Mouse"", ""Headphones""]",3738.35,"{""promo"": ""26%""}",237842,1,Europe +2023-08-26,51604,596,"[""Laptop"", ""Charger"", ""Monitor""]",1856.48,{},217298,0,North America +2023-05-17,51605,4631,"[""Keyboard"", ""Headphones"", ""Tablet""]",715.49,{},66910,0,Asia +2023-11-03,51606,9374,"[""Laptop"", ""Phone""]",4338.41,{},123832,0,Europe +2024-06-16,51607,9537,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",487.97,{},118578,1,North America +2023-02-06,51608,3566,"[""Monitor"", ""Tablet""]",2213.54,{},200005,0,Europe +2023-06-10,51609,6756,"[""Wireless Mouse"", ""Phone""]",2751.15,{},53524,0,Africa +2023-07-11,51610,1324,"[""Charger""]",1281.22,{},242065,1,North America +2024-05-06,51611,1929,"[""Headphones""]",3134.83,{},186196,0,Asia +2024-08-12,51612,8546,"[""Phone"", ""Tablet"", ""Charger""]",4145.12,"{""loyalty"": ""9%""}",151205,0,South America +2024-05-21,51613,2052,"[""Tablet""]",3125.24,"{"""": ""21%""}",237892,1,North America +2024-02-13,51614,3567,"[""Keyboard"", ""Laptop""]",4885.66,"{""promo"": ""12%""}",56026,1,Asia +2023-08-18,51615,2646,"[""Monitor"", ""Keyboard"", ""Charger""]",2377.3,{},77211,1,Europe +2024-06-10,51616,5999,"[""Monitor"", ""Headphones""]",1074.74,"{"""": ""29%""}",151994,1,Asia +2024-08-01,51617,6925,"[""Charger"", ""Phone""]",2040.56,{},283672,0,Asia +2023-03-14,51618,462,"[""Tablet"", ""Keyboard""]",766.41,{},155405,1,South America +2024-05-23,51619,2265,"[""Charger""]",4640.58,"{""loyalty"": ""20%""}",179182,0,Asia +2024-11-11,51620,5676,"[""Phone"", ""Laptop"", ""Tablet""]",4184.87,{},254960,0,South America +2023-12-06,51621,6440,"[""Charger"", ""Monitor""]",2593.13,"{""promo"": ""23%""}",101996,1,South America +2024-10-31,51622,4294,"[""Tablet""]",3611.57,"{""promo"": ""10%""}",41787,0,North America +2024-07-19,51623,6577,"[""Laptop""]",1889.85,{},120287,0,Asia +2024-10-18,51624,4269,"[""Monitor""]",4171.69,"{""promo"": ""18%""}",128760,1,Europe +2023-12-26,51625,7059,"[""Wireless Mouse""]",1023.75,"{""loyalty"": ""22%""}",7473,1,North America +2023-10-08,51626,7148,"[""Keyboard"", ""Laptop"", ""Phone""]",3599.84,{},51883,1,North America +2024-08-17,51627,7694,"[""Charger"", ""Tablet"", ""Phone""]",277.23,"{"""": ""16%""}",223546,1,Asia +2024-03-02,51628,7331,"[""Headphones"", ""Tablet""]",4314.79,{},18574,0,North America +2024-06-21,51629,1093,"[""Headphones"", ""Wireless Mouse""]",4423.94,{},89042,0,Asia +2024-12-26,51630,658,"[""Headphones"", ""Tablet"", ""Laptop""]",1959.89,{},159577,1,Asia +2023-12-26,51631,5761,"[""Headphones""]",2611.39,"{""promo"": ""15%""}",73762,1,Europe +2023-06-19,51632,3398,"[""Monitor"", ""Charger"", ""Keyboard""]",2896.19,"{""loyalty"": ""5%""}",21509,0,South America +2023-08-28,51633,4426,"[""Tablet"", ""Charger"", ""Keyboard""]",3349.65,"{""seasonal"": ""6%""}",192635,1,Africa +2024-06-26,51634,3110,"[""Laptop"", ""Phone"", ""Headphones""]",2170.16,"{""promo"": ""30%""}",58783,0,North America +2024-07-02,51635,5489,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4556.74,{},141303,1,Asia +2023-05-20,51636,4981,"[""Monitor"", ""Laptop""]",1749.92,{},155041,0,South America +2024-06-04,51637,3724,"[""Monitor""]",2214.34,{},215276,0,North America +2024-09-22,51638,1813,"[""Tablet"", ""Laptop""]",502.58,"{""loyalty"": ""24%""}",56137,1,Asia +2023-10-25,51639,3022,"[""Phone""]",4919.33,{},173929,1,Asia +2023-01-18,51640,9028,"[""Keyboard"", ""Laptop"", ""Headphones""]",1011.39,{},93133,0,Europe +2024-08-05,51641,3771,"[""Laptop"", ""Charger""]",4153.38,{},293432,1,North America +2024-10-20,51642,752,"[""Wireless Mouse"", ""Tablet""]",4822.24,"{""promo"": ""29%""}",44802,1,South America +2023-11-21,51643,3128,"[""Phone"", ""Charger""]",455.19,"{""loyalty"": ""14%""}",98124,0,Asia +2024-09-11,51644,7194,"[""Charger"", ""Wireless Mouse""]",4898.47,"{""loyalty"": ""6%""}",105143,0,Asia +2023-06-25,51645,3576,"[""Wireless Mouse"", ""Charger""]",783.06,"{""loyalty"": ""8%""}",222717,0,Africa +2024-02-28,51646,1864,"[""Tablet""]",4437.83,{},59703,0,South America +2023-05-16,51647,4504,"[""Monitor"", ""Headphones"", ""Keyboard""]",3520.45,{},232296,1,Africa +2023-01-20,51648,3162,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",358.07,"{""loyalty"": ""17%""}",93650,0,North America +2024-12-26,51649,6185,"[""Laptop""]",4292.97,"{""loyalty"": ""12%""}",13575,0,South America +2023-05-10,51650,9254,"[""Monitor"", ""Charger""]",3779.84,"{""seasonal"": ""12%""}",285707,0,Europe +2024-06-16,51651,7800,"[""Phone"", ""Laptop"", ""Monitor""]",1503.24,{},200968,0,South America +2023-09-20,51652,9,"[""Laptop"", ""Headphones"", ""Phone""]",1073.78,{},122949,0,Africa +2023-10-23,51653,2234,"[""Monitor""]",2052.98,"{""loyalty"": ""14%""}",72760,1,South America +2024-10-21,51654,3474,"[""Monitor"", ""Headphones"", ""Laptop""]",2360.98,"{""loyalty"": ""20%""}",20265,1,North America +2023-03-20,51655,3241,"[""Laptop"", ""Charger"", ""Monitor""]",489.35,"{"""": ""19%""}",286648,0,Africa +2024-08-12,51656,6405,"[""Phone""]",248.4,{},154269,1,Asia +2024-03-13,51657,2915,"[""Monitor"", ""Tablet""]",3490.96,{},169231,1,South America +2024-02-27,51658,8683,"[""Monitor""]",3865.9,{},119918,1,Africa +2024-04-04,51659,4567,"[""Monitor"", ""Charger"", ""Keyboard""]",3106.7,{},258841,1,Asia +2024-06-06,51660,1318,"[""Wireless Mouse"", ""Monitor""]",2427.01,"{"""": ""10%""}",281122,0,Africa +2024-06-14,51661,7429,"[""Charger"", ""Phone"", ""Monitor""]",3209.13,{},181048,1,Africa +2023-01-29,51662,9442,"[""Phone"", ""Charger""]",1067.14,{},78563,1,Asia +2024-09-21,51663,8921,"[""Phone""]",2333.56,"{""loyalty"": ""20%""}",122816,0,Europe +2024-02-02,51664,5817,"[""Laptop"", ""Monitor""]",4953.48,"{""loyalty"": ""8%""}",53205,0,Asia +2024-02-18,51665,776,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2807.79,"{""loyalty"": ""25%""}",40665,0,North America +2023-10-17,51666,491,"[""Headphones"", ""Phone"", ""Keyboard""]",4968.9,{},202490,1,Asia +2024-07-23,51667,1794,"[""Keyboard""]",3411.42,{},288207,0,Africa +2023-06-05,51668,7501,"[""Phone"", ""Headphones"", ""Keyboard""]",2861.81,"{""seasonal"": ""12%""}",101674,1,North America +2023-01-10,51669,5125,"[""Keyboard""]",3329.5,{},253016,0,Asia +2024-07-30,51670,4781,"[""Charger""]",522.2,"{""promo"": ""30%""}",179981,0,Asia +2024-01-29,51671,2230,"[""Phone"", ""Tablet"", ""Laptop""]",2939.68,"{""loyalty"": ""21%""}",294927,1,Asia +2024-12-13,51672,9063,"[""Monitor"", ""Headphones""]",2749.08,{},149271,0,South America +2024-08-13,51673,5963,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3332.1,{},141115,0,South America +2024-01-15,51674,7477,"[""Laptop"", ""Phone""]",2452.14,{},54694,0,North America +2024-09-14,51675,2621,"[""Laptop"", ""Charger"", ""Monitor""]",4382.93,{},24363,0,Asia +2023-03-17,51676,9966,"[""Laptop"", ""Tablet"", ""Phone""]",2547.71,"{""loyalty"": ""6%""}",140043,1,Africa +2023-06-26,51677,1732,"[""Laptop"", ""Keyboard""]",4783.4,{},185684,0,South America +2024-01-16,51678,391,"[""Monitor"", ""Laptop""]",3877.43,"{""promo"": ""15%""}",91148,0,South America +2024-05-11,51679,6179,"[""Monitor"", ""Wireless Mouse""]",4702.89,"{"""": ""24%""}",30407,0,Asia +2024-12-10,51680,1447,"[""Tablet""]",4823.73,{},244264,0,Asia +2024-12-31,51681,7018,"[""Charger""]",3558.93,{},56110,1,Europe +2023-06-28,51682,2644,"[""Headphones"", ""Laptop""]",4249.03,{},34191,0,South America +2024-05-19,51683,9272,"[""Keyboard"", ""Headphones""]",2312.74,{},20582,1,Asia +2023-04-09,51684,921,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3073.59,{},295450,0,Africa +2024-09-28,51685,9748,"[""Keyboard""]",510.43,{},229028,0,Europe +2024-07-17,51686,3188,"[""Headphones""]",3445.57,"{""loyalty"": ""18%""}",35290,0,Europe +2023-08-17,51687,65,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",896.97,"{""promo"": ""24%""}",274299,1,Europe +2024-08-30,51688,9999,"[""Tablet"", ""Phone""]",230.87,{},122781,1,Asia +2023-02-24,51689,5596,"[""Headphones""]",993.56,{},107170,0,Asia +2024-11-28,51690,7156,"[""Headphones"", ""Wireless Mouse""]",2298.2,"{""loyalty"": ""8%""}",132861,0,Asia +2024-12-15,51691,4951,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",242.55,{},191899,1,Africa +2023-11-12,51692,1164,"[""Keyboard""]",4167.76,{},57385,1,Africa +2024-01-16,51693,2649,"[""Keyboard""]",2086.98,"{""loyalty"": ""25%""}",162149,0,Europe +2023-11-26,51694,2060,"[""Monitor"", ""Headphones""]",2096.2,{},195905,0,North America +2023-12-19,51695,156,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3215.09,{},111167,1,Africa +2024-09-03,51696,5652,"[""Phone""]",1273.4,{},46009,0,South America +2023-05-03,51697,6972,"[""Monitor""]",2869.98,"{"""": ""25%""}",36651,1,Asia +2024-05-24,51698,6554,"[""Headphones""]",3540.51,"{"""": ""26%""}",4274,0,Europe +2023-11-03,51699,6104,"[""Tablet"", ""Phone"", ""Charger""]",3986.42,"{""promo"": ""6%""}",118669,0,South America +2024-04-06,51700,9775,"[""Headphones"", ""Monitor"", ""Laptop""]",819.71,{},57047,0,South America +2024-08-02,51701,1067,"[""Phone"", ""Headphones"", ""Keyboard""]",1363.71,"{"""": ""19%""}",181516,1,South America +2024-08-25,51702,1941,"[""Wireless Mouse""]",3565.28,"{""promo"": ""18%""}",297631,1,Africa +2024-07-15,51703,5017,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2769.33,{},16491,0,South America +2024-11-26,51704,8828,"[""Laptop"", ""Headphones""]",3146.34,"{""promo"": ""30%""}",154585,0,Africa +2023-08-19,51705,1874,"[""Tablet"", ""Laptop""]",1262.88,{},217642,1,Asia +2024-12-04,51706,9300,"[""Laptop"", ""Phone""]",2114.96,"{"""": ""21%""}",178703,1,Africa +2024-04-02,51707,3824,"[""Charger"", ""Tablet"", ""Monitor""]",118.37,{},96615,0,North America +2024-07-17,51708,4950,"[""Charger"", ""Monitor""]",4551.35,{},81118,0,North America +2024-11-02,51709,6859,"[""Tablet"", ""Keyboard"", ""Headphones""]",3306.71,"{""promo"": ""29%""}",124631,1,South America +2024-11-30,51710,2683,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4235.16,"{""seasonal"": ""23%""}",15859,0,Asia +2023-05-31,51711,5116,"[""Laptop"", ""Monitor"", ""Charger""]",4638.12,{},296344,1,North America +2024-08-31,51712,8425,"[""Laptop""]",1935.74,{},257509,0,South America +2024-09-04,51713,576,"[""Phone""]",4897.88,"{""promo"": ""24%""}",39600,1,Europe +2023-10-30,51714,6277,"[""Laptop""]",4087.1,{},26223,0,Europe +2023-11-26,51715,7828,"[""Headphones"", ""Monitor"", ""Keyboard""]",2840.82,"{"""": ""10%""}",120912,1,Africa +2023-06-04,51716,1780,"[""Monitor"", ""Keyboard""]",181.77,"{""loyalty"": ""30%""}",22443,1,Africa +2023-04-17,51717,2990,"[""Wireless Mouse"", ""Charger""]",1906.98,{},284921,0,South America +2023-02-17,51718,9562,"[""Headphones"", ""Charger"", ""Keyboard""]",194.44,"{""promo"": ""18%""}",167419,0,Europe +2023-02-03,51719,8653,"[""Laptop"", ""Headphones"", ""Monitor""]",105.73,{},142929,1,Europe +2024-10-29,51720,4040,"[""Phone"", ""Headphones"", ""Keyboard""]",4733.71,{},45385,0,Asia +2023-03-29,51721,4799,"[""Laptop""]",4927.43,"{""loyalty"": ""26%""}",118980,0,Asia +2024-12-25,51722,4270,"[""Tablet"", ""Phone""]",2305.39,"{"""": ""9%""}",64614,0,Africa +2023-12-13,51723,8235,"[""Tablet"", ""Headphones"", ""Phone""]",3043.5,{},173657,1,North America +2023-06-01,51724,2600,"[""Tablet""]",3619.28,{},5929,0,Europe +2024-03-13,51725,4189,"[""Phone""]",269.14,"{"""": ""26%""}",83372,0,South America +2023-11-03,51726,6336,"[""Keyboard""]",4564.01,"{""loyalty"": ""24%""}",156002,0,Asia +2024-01-05,51727,2507,"[""Monitor""]",2924.53,"{""loyalty"": ""19%""}",146733,1,Africa +2023-05-21,51728,8957,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1238.4,{},85875,1,Asia +2023-11-05,51729,7086,"[""Wireless Mouse""]",4680.79,"{""loyalty"": ""22%""}",204330,0,North America +2023-05-02,51730,8352,"[""Phone""]",2936.3,"{""promo"": ""18%""}",67635,0,Africa +2024-05-11,51731,8403,"[""Headphones""]",2359.04,"{""promo"": ""7%""}",284204,0,Africa +2023-05-07,51732,7059,"[""Laptop""]",3971.95,"{""loyalty"": ""29%""}",168593,0,North America +2024-06-01,51733,2243,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4950.17,{},272142,1,South America +2024-05-18,51734,5652,"[""Wireless Mouse"", ""Keyboard""]",346.38,"{""promo"": ""6%""}",202136,0,Asia +2024-09-20,51735,7101,"[""Tablet""]",4166.29,"{""loyalty"": ""27%""}",14686,0,Africa +2023-03-29,51736,9604,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3012.06,"{""seasonal"": ""27%""}",140006,1,Africa +2023-04-16,51737,2326,"[""Laptop""]",4219.38,"{"""": ""18%""}",279297,0,Asia +2024-04-13,51738,4919,"[""Monitor"", ""Headphones"", ""Phone""]",4947.92,{},173239,1,Asia +2023-03-25,51739,2322,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2006.49,{},25464,1,South America +2024-05-07,51740,6123,"[""Keyboard"", ""Tablet""]",2012.43,{},60115,1,North America +2023-05-31,51741,8092,"[""Tablet"", ""Wireless Mouse""]",821.94,{},225753,0,South America +2023-08-25,51742,3601,"[""Headphones"", ""Keyboard"", ""Laptop""]",3410.87,{},18657,1,North America +2024-10-26,51743,9311,"[""Keyboard"", ""Headphones""]",4667.3,"{""promo"": ""26%""}",62888,1,North America +2024-12-27,51744,6046,"[""Headphones"", ""Laptop"", ""Monitor""]",1736.62,{},221645,0,North America +2023-04-26,51745,284,"[""Tablet""]",2956.33,{},259323,1,Europe +2024-03-16,51746,8887,"[""Keyboard""]",1293.98,"{""seasonal"": ""29%""}",81953,1,Asia +2024-01-28,51747,3759,"[""Headphones"", ""Monitor""]",4676.42,"{""loyalty"": ""17%""}",62304,1,Asia +2024-02-20,51748,5113,"[""Wireless Mouse"", ""Charger""]",1551.5,"{""loyalty"": ""22%""}",85729,1,North America +2024-08-22,51749,1464,"[""Phone"", ""Charger""]",1005.82,{},242947,1,South America +2023-06-08,51750,2983,"[""Tablet"", ""Headphones"", ""Keyboard""]",4426.12,{},56350,0,Asia +2024-04-25,51751,7746,"[""Phone"", ""Keyboard"", ""Charger""]",4131.03,{},266244,0,North America +2023-10-13,51752,605,"[""Wireless Mouse""]",2879.8,{},207877,1,South America +2024-06-27,51753,7655,"[""Laptop""]",1483.37,{},135377,1,South America +2023-07-18,51754,1809,"[""Laptop"", ""Charger""]",3230.33,"{""seasonal"": ""23%""}",243995,0,North America +2023-11-26,51755,5599,"[""Keyboard""]",1310.7,{},171945,1,South America +2024-10-09,51756,7690,"[""Monitor""]",1697.7,"{"""": ""30%""}",204835,1,Asia +2024-04-23,51757,6794,"[""Headphones""]",775.17,"{""seasonal"": ""17%""}",260012,1,Asia +2023-02-06,51758,9700,"[""Keyboard"", ""Phone"", ""Charger""]",2200.85,{},207418,0,Africa +2023-11-12,51759,5867,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3490.46,"{""loyalty"": ""13%""}",79399,1,Europe +2024-03-11,51760,8118,"[""Phone"", ""Monitor""]",4874.3,{},167255,1,South America +2024-01-26,51761,2529,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1711.34,"{""loyalty"": ""5%""}",199253,0,North America +2024-11-18,51762,708,"[""Laptop""]",1738.69,"{"""": ""26%""}",234083,0,Europe +2023-03-18,51763,1008,"[""Headphones""]",3697.65,"{""promo"": ""21%""}",262734,1,Asia +2024-05-22,51764,99,"[""Phone"", ""Monitor"", ""Tablet""]",1196.39,"{"""": ""12%""}",6212,0,South America +2024-12-25,51765,8161,"[""Monitor"", ""Tablet"", ""Keyboard""]",3183.54,{},129812,0,Europe +2023-08-25,51766,1390,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",796.41,"{"""": ""19%""}",185807,0,South America +2023-12-16,51767,4217,"[""Laptop"", ""Phone""]",1604.2,"{""promo"": ""13%""}",283350,1,Europe +2023-12-10,51768,4778,"[""Keyboard"", ""Phone"", ""Laptop""]",2755.49,"{"""": ""13%""}",73810,0,North America +2023-11-21,51769,9966,"[""Headphones"", ""Wireless Mouse""]",3654.66,"{""promo"": ""24%""}",198214,1,South America +2024-12-03,51770,540,"[""Headphones""]",4196.62,{},87417,0,North America +2024-05-07,51771,1714,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4728.15,{},58866,1,Asia +2023-08-20,51772,4766,"[""Tablet"", ""Monitor""]",1678.0,{},122997,1,South America +2023-12-13,51773,7130,"[""Phone""]",4387.41,"{"""": ""20%""}",275845,0,Europe +2024-02-11,51774,7025,"[""Wireless Mouse""]",2754.98,"{"""": ""11%""}",242734,0,Asia +2023-02-09,51775,535,"[""Keyboard"", ""Monitor""]",4859.8,{},261603,1,Africa +2024-12-30,51776,664,"[""Tablet"", ""Laptop"", ""Monitor""]",609.78,{},90281,1,Europe +2024-05-16,51777,3826,"[""Charger"", ""Laptop"", ""Phone""]",4114.66,"{""promo"": ""11%""}",6446,0,Africa +2024-07-12,51778,2520,"[""Wireless Mouse""]",696.83,{},23602,0,Europe +2023-05-22,51779,1436,"[""Phone""]",3281.28,"{""loyalty"": ""23%""}",18695,1,North America +2023-11-03,51780,8735,"[""Wireless Mouse""]",2770.91,{},133210,0,Africa +2023-08-10,51781,1382,"[""Phone"", ""Laptop""]",1872.66,"{"""": ""11%""}",196833,1,Asia +2024-05-04,51782,7298,"[""Charger"", ""Monitor""]",2064.92,"{"""": ""17%""}",185176,0,North America +2024-11-26,51783,277,"[""Keyboard""]",1656.49,"{""loyalty"": ""7%""}",204716,0,Europe +2023-01-19,51784,9173,"[""Keyboard""]",1035.19,"{""seasonal"": ""15%""}",244489,1,North America +2023-09-28,51785,1748,"[""Charger"", ""Wireless Mouse""]",4661.11,{},287698,0,Europe +2023-11-04,51786,133,"[""Keyboard"", ""Charger"", ""Laptop""]",3491.4,"{"""": ""24%""}",76715,0,Asia +2023-03-20,51787,5621,"[""Phone"", ""Keyboard""]",2122.04,"{"""": ""27%""}",150290,1,South America +2024-10-26,51788,6043,"[""Charger"", ""Keyboard""]",1789.3,"{""seasonal"": ""30%""}",295009,0,Asia +2024-10-07,51789,9654,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2901.39,{},218903,1,Europe +2024-03-28,51790,3975,"[""Tablet"", ""Charger""]",4809.03,{},104498,0,South America +2023-11-22,51791,8942,"[""Wireless Mouse""]",4415.91,{},177916,0,South America +2023-06-07,51792,5040,"[""Keyboard"", ""Headphones"", ""Tablet""]",1725.47,"{""promo"": ""13%""}",143530,0,Europe +2023-11-23,51793,6433,"[""Keyboard""]",2153.29,"{""promo"": ""29%""}",269216,1,South America +2023-04-30,51794,4227,"[""Phone"", ""Monitor""]",1736.3,"{""promo"": ""16%""}",259120,0,Africa +2023-04-26,51795,4832,"[""Monitor""]",2918.78,"{""loyalty"": ""17%""}",112661,0,Europe +2024-01-21,51796,6596,"[""Laptop"", ""Phone""]",4924.12,{},163465,1,Asia +2023-05-11,51797,8235,"[""Headphones"", ""Charger""]",3659.94,{},222002,0,South America +2024-11-07,51798,3733,"[""Laptop""]",2144.04,"{""seasonal"": ""27%""}",183363,0,North America +2023-05-08,51799,1128,"[""Keyboard"", ""Phone"", ""Headphones""]",1555.38,"{""loyalty"": ""6%""}",161704,0,Africa +2024-06-25,51800,9044,"[""Wireless Mouse"", ""Keyboard""]",4346.02,{},106865,1,North America +2023-02-18,51801,13,"[""Monitor"", ""Phone"", ""Laptop""]",3186.54,"{""seasonal"": ""6%""}",170924,1,Asia +2023-02-08,51802,2735,"[""Tablet"", ""Laptop""]",1625.17,{},121504,1,South America +2023-03-12,51803,2696,"[""Keyboard"", ""Phone""]",1291.65,"{"""": ""22%""}",169631,1,Asia +2024-03-26,51804,648,"[""Phone""]",3263.18,{},107822,0,Europe +2024-06-14,51805,9986,"[""Headphones"", ""Wireless Mouse""]",1447.15,"{""seasonal"": ""29%""}",11318,0,Europe +2023-07-29,51806,1426,"[""Monitor"", ""Tablet""]",2488.29,"{""seasonal"": ""8%""}",139590,0,North America +2024-12-08,51807,9756,"[""Phone""]",4437.01,"{"""": ""17%""}",277779,1,South America +2023-10-21,51808,2207,"[""Phone""]",4309.88,"{""loyalty"": ""14%""}",96765,1,North America +2023-01-05,51809,6364,"[""Charger"", ""Headphones""]",3026.49,{},41829,0,Europe +2024-05-16,51810,5314,"[""Laptop""]",2483.67,"{""promo"": ""11%""}",33309,1,Asia +2023-01-13,51811,8638,"[""Wireless Mouse"", ""Laptop""]",2644.14,{},260934,0,North America +2023-12-04,51812,7212,"[""Phone"", ""Monitor""]",3503.73,"{"""": ""7%""}",170215,0,Asia +2023-04-23,51813,7880,"[""Keyboard"", ""Headphones""]",1619.2,"{""seasonal"": ""22%""}",290227,1,Europe +2024-01-01,51814,1811,"[""Headphones"", ""Wireless Mouse""]",4446.02,{},152650,1,South America +2023-06-07,51815,290,"[""Charger"", ""Keyboard"", ""Headphones""]",1921.11,"{"""": ""11%""}",286689,0,Asia +2023-03-16,51816,3143,"[""Headphones"", ""Laptop"", ""Phone""]",459.46,{},264253,1,North America +2023-01-18,51817,2087,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",912.18,"{""promo"": ""10%""}",213411,0,Africa +2024-03-21,51818,7588,"[""Laptop""]",4372.83,{},287750,0,North America +2023-02-27,51819,4010,"[""Laptop""]",4337.43,{},100850,0,Asia +2024-03-06,51820,4048,"[""Tablet"", ""Keyboard""]",2997.18,{},267983,0,South America +2023-10-20,51821,405,"[""Charger"", ""Monitor"", ""Headphones""]",3444.21,"{""seasonal"": ""30%""}",55730,1,North America +2023-03-19,51822,692,"[""Laptop""]",1069.39,"{""seasonal"": ""19%""}",50533,0,Africa +2023-05-20,51823,9540,"[""Monitor""]",3096.5,"{"""": ""30%""}",171247,0,Europe +2023-10-24,51824,8290,"[""Laptop""]",434.83,{},99075,0,Africa +2023-09-24,51825,6960,"[""Tablet"", ""Keyboard"", ""Laptop""]",294.48,"{"""": ""25%""}",193599,0,Africa +2024-08-16,51826,272,"[""Monitor""]",4856.61,{},8223,1,Asia +2024-07-09,51827,3334,"[""Charger"", ""Keyboard"", ""Phone""]",279.49,"{""promo"": ""27%""}",197894,0,South America +2023-03-10,51828,240,"[""Laptop""]",669.77,{},15594,0,Asia +2024-09-11,51829,6554,"[""Headphones""]",84.29,{},150998,0,Asia +2024-04-24,51830,565,"[""Monitor""]",2701.01,{},219884,0,Europe +2024-09-02,51831,9526,"[""Keyboard""]",3705.15,"{""promo"": ""7%""}",50009,0,Africa +2024-09-22,51832,1617,"[""Headphones""]",3148.65,"{"""": ""24%""}",191683,1,Africa +2024-05-23,51833,1356,"[""Wireless Mouse""]",1250.05,"{""loyalty"": ""28%""}",156126,0,North America +2023-06-25,51834,3907,"[""Tablet"", ""Monitor"", ""Keyboard""]",332.23,"{""promo"": ""5%""}",120197,1,South America +2023-12-18,51835,6892,"[""Charger""]",1357.08,"{""loyalty"": ""20%""}",29870,1,North America +2024-07-31,51836,6998,"[""Headphones""]",263.37,"{""seasonal"": ""21%""}",266403,0,North America +2024-07-13,51837,7232,"[""Laptop"", ""Keyboard""]",2331.79,"{""seasonal"": ""7%""}",54188,0,South America +2023-03-20,51838,48,"[""Keyboard""]",3253.9,{},48351,1,South America +2023-04-05,51839,7730,"[""Headphones"", ""Keyboard"", ""Laptop""]",748.96,"{"""": ""5%""}",119610,0,Asia +2023-02-16,51840,2645,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3688.83,"{""loyalty"": ""17%""}",193643,1,Europe +2023-05-15,51841,7739,"[""Charger"", ""Tablet""]",4421.33,{},181806,0,Asia +2023-06-21,51842,1118,"[""Keyboard"", ""Wireless Mouse""]",2614.24,{},200160,1,Africa +2023-09-02,51843,2021,"[""Headphones""]",4867.87,"{""loyalty"": ""6%""}",9526,1,Africa +2024-07-20,51844,7435,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1036.19,"{""promo"": ""18%""}",87607,1,Asia +2023-04-23,51845,9126,"[""Wireless Mouse""]",1434.86,"{""loyalty"": ""17%""}",4766,1,Africa +2023-08-20,51846,168,"[""Monitor"", ""Keyboard""]",1991.08,{},9215,0,North America +2023-08-22,51847,996,"[""Phone"", ""Keyboard"", ""Charger""]",1542.6,{},279100,0,Africa +2024-08-25,51848,9337,"[""Laptop""]",2447.74,{},209569,1,North America +2023-08-17,51849,7554,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",364.41,{},189097,0,Africa +2024-05-25,51850,5024,"[""Phone"", ""Tablet""]",3335.12,"{"""": ""21%""}",235470,0,Africa +2023-05-16,51851,677,"[""Charger"", ""Headphones"", ""Phone""]",3750.18,"{""loyalty"": ""28%""}",83972,1,Africa +2023-08-05,51852,8248,"[""Keyboard"", ""Laptop"", ""Phone""]",4874.03,{},208676,0,South America +2023-06-08,51853,6426,"[""Laptop"", ""Tablet"", ""Phone""]",1126.57,"{"""": ""30%""}",283793,1,North America +2023-08-31,51854,9865,"[""Laptop"", ""Wireless Mouse""]",4119.14,"{""promo"": ""5%""}",36885,0,Europe +2023-04-18,51855,5598,"[""Wireless Mouse""]",3334.14,"{""seasonal"": ""26%""}",121082,1,Europe +2023-05-23,51856,8018,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4964.21,"{""loyalty"": ""15%""}",105385,1,North America +2024-05-08,51857,271,"[""Tablet""]",3160.87,"{""seasonal"": ""17%""}",34897,0,South America +2024-06-17,51858,5759,"[""Monitor""]",2899.41,{},245094,1,Asia +2023-01-23,51859,2210,"[""Laptop""]",4521.21,{},299691,0,Africa +2023-06-02,51860,7418,"[""Phone""]",2321.81,"{""loyalty"": ""15%""}",263124,0,North America +2023-06-10,51861,2369,"[""Monitor"", ""Keyboard"", ""Headphones""]",2709.71,{},40437,1,South America +2023-08-12,51862,2042,"[""Phone"", ""Monitor"", ""Charger""]",1802.67,{},195773,0,Europe +2023-08-13,51863,8474,"[""Charger""]",689.91,{},134390,0,Asia +2024-02-17,51864,4905,"[""Phone"", ""Wireless Mouse""]",3413.54,{},128574,1,South America +2023-01-04,51865,1617,"[""Tablet""]",293.87,{},4930,1,Africa +2024-02-11,51866,547,"[""Monitor""]",3923.86,{},23508,1,North America +2024-03-27,51867,9944,"[""Laptop"", ""Charger""]",949.24,{},47014,0,South America +2023-06-09,51868,4645,"[""Keyboard""]",1487.86,{},157772,1,Africa +2023-07-11,51869,2273,"[""Monitor"", ""Tablet"", ""Headphones""]",1219.92,{},21258,1,Asia +2023-01-29,51870,9783,"[""Charger""]",701.67,"{""loyalty"": ""28%""}",99612,1,North America +2023-11-22,51871,9878,"[""Keyboard""]",1156.47,"{""loyalty"": ""7%""}",252065,1,North America +2024-10-27,51872,8511,"[""Tablet"", ""Headphones""]",4625.52,{},2531,1,Europe +2023-10-10,51873,7650,"[""Laptop""]",1001.3,"{""promo"": ""16%""}",75225,0,Europe +2024-06-10,51874,2903,"[""Keyboard"", ""Monitor""]",1479.62,"{""promo"": ""16%""}",66381,1,Europe +2023-01-25,51875,6893,"[""Monitor"", ""Keyboard""]",910.55,"{""promo"": ""20%""}",123968,0,South America +2023-01-27,51876,9860,"[""Tablet"", ""Headphones""]",904.5,{},281362,0,South America +2024-06-04,51877,1782,"[""Monitor"", ""Headphones"", ""Charger""]",1131.94,{},33783,0,South America +2024-07-17,51878,8245,"[""Phone"", ""Keyboard""]",3570.01,{},276505,0,South America +2024-09-13,51879,8212,"[""Laptop"", ""Headphones""]",1534.87,{},180545,0,North America +2024-08-06,51880,9302,"[""Wireless Mouse""]",4937.7,"{""seasonal"": ""23%""}",23574,1,South America +2024-12-17,51881,1556,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3828.76,{},249477,1,South America +2023-08-19,51882,5352,"[""Headphones"", ""Laptop"", ""Monitor""]",1334.81,{},220730,1,South America +2024-04-20,51883,4647,"[""Charger"", ""Laptop""]",3708.07,"{""loyalty"": ""20%""}",90936,1,North America +2024-08-07,51884,7118,"[""Charger"", ""Wireless Mouse""]",898.64,"{"""": ""11%""}",170810,0,Europe +2024-01-09,51885,1355,"[""Tablet""]",2492.9,"{""loyalty"": ""16%""}",160323,1,North America +2023-03-16,51886,3251,"[""Tablet""]",4056.68,{},177069,1,North America +2023-11-13,51887,4075,"[""Phone"", ""Charger""]",405.29,"{""seasonal"": ""8%""}",120779,1,Europe +2024-10-14,51888,3383,"[""Headphones"", ""Charger"", ""Monitor""]",4848.3,"{""seasonal"": ""24%""}",144766,1,North America +2024-11-12,51889,3040,"[""Phone""]",225.43,"{""seasonal"": ""10%""}",203892,1,Africa +2023-03-30,51890,2365,"[""Phone"", ""Charger"", ""Tablet""]",3008.21,"{""seasonal"": ""25%""}",110822,1,South America +2023-01-14,51891,9568,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3539.25,{},4010,0,Asia +2024-01-18,51892,1817,"[""Tablet"", ""Laptop"", ""Keyboard""]",843.07,"{""loyalty"": ""15%""}",113492,1,Europe +2024-10-13,51893,28,"[""Monitor""]",750.15,{},134575,1,South America +2024-08-05,51894,8145,"[""Tablet""]",3927.34,"{""seasonal"": ""6%""}",159307,1,North America +2023-03-29,51895,7445,"[""Headphones"", ""Keyboard""]",2107.65,"{""promo"": ""8%""}",113387,1,South America +2024-12-15,51896,3017,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",610.11,"{""promo"": ""6%""}",48833,1,Asia +2023-03-14,51897,3409,"[""Laptop""]",4814.65,"{""loyalty"": ""24%""}",124605,1,Africa +2023-12-08,51898,2919,"[""Wireless Mouse""]",736.56,"{""seasonal"": ""28%""}",136393,1,Europe +2024-06-06,51899,5269,"[""Keyboard""]",2403.67,{},111772,1,North America +2024-07-05,51900,3263,"[""Monitor"", ""Phone""]",2299.44,{},23737,0,North America +2024-11-11,51901,9059,"[""Charger""]",125.83,{},24649,1,Asia +2023-01-19,51902,1207,"[""Headphones"", ""Charger"", ""Phone""]",3822.16,"{""seasonal"": ""25%""}",135510,0,South America +2023-05-15,51903,4803,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2961.12,{},277223,0,North America +2024-12-12,51904,3757,"[""Monitor"", ""Laptop"", ""Phone""]",3794.88,"{""loyalty"": ""30%""}",137812,1,South America +2023-05-10,51905,269,"[""Wireless Mouse"", ""Phone""]",2962.1,"{""promo"": ""26%""}",79551,1,Europe +2024-08-29,51906,3909,"[""Laptop"", ""Headphones"", ""Keyboard""]",3644.87,"{""seasonal"": ""27%""}",90697,0,Africa +2024-11-15,51907,4547,"[""Tablet"", ""Phone"", ""Monitor""]",4460.73,"{""seasonal"": ""23%""}",78212,1,Africa +2024-01-11,51908,9865,"[""Charger"", ""Laptop"", ""Monitor""]",1984.66,"{""promo"": ""6%""}",20821,1,South America +2023-01-01,51909,6395,"[""Laptop"", ""Charger""]",3748.08,{},206521,0,North America +2023-12-30,51910,2004,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4193.86,{},72275,0,Asia +2024-06-18,51911,8381,"[""Monitor""]",958.53,{},14114,0,South America +2023-12-11,51912,215,"[""Laptop"", ""Keyboard"", ""Charger""]",4251.83,{},40739,1,Africa +2024-09-01,51913,5427,"[""Tablet"", ""Phone""]",2164.53,"{""promo"": ""25%""}",24436,1,South America +2024-01-08,51914,68,"[""Keyboard"", ""Headphones"", ""Tablet""]",1002.5,"{""promo"": ""27%""}",275210,0,Africa +2023-06-19,51915,302,"[""Monitor"", ""Headphones""]",1189.83,"{""loyalty"": ""24%""}",12182,0,South America +2024-03-31,51916,2977,"[""Charger"", ""Tablet""]",4607.11,{},234499,0,Asia +2024-03-12,51917,6166,"[""Monitor"", ""Wireless Mouse""]",3708.32,"{""loyalty"": ""10%""}",289877,0,Europe +2023-10-17,51918,3965,"[""Phone"", ""Tablet""]",4388.58,"{""loyalty"": ""12%""}",2527,1,Asia +2024-05-15,51919,8360,"[""Monitor""]",1964.97,"{"""": ""17%""}",243618,1,Asia +2023-08-16,51920,9140,"[""Headphones"", ""Monitor"", ""Phone""]",1548.99,"{""loyalty"": ""21%""}",96553,1,Europe +2023-03-16,51921,7011,"[""Wireless Mouse""]",1880.46,"{""promo"": ""28%""}",168922,0,North America +2024-07-27,51922,7102,"[""Charger""]",551.64,"{""seasonal"": ""15%""}",8601,1,Africa +2024-02-07,51923,8908,"[""Keyboard"", ""Laptop""]",1427.76,"{""loyalty"": ""18%""}",86094,1,Asia +2024-10-14,51924,8163,"[""Headphones""]",2006.43,{},276092,0,South America +2024-08-27,51925,4196,"[""Phone""]",1584.52,{},270322,0,South America +2023-08-25,51926,6466,"[""Keyboard""]",247.28,"{"""": ""14%""}",105196,1,Europe +2024-01-18,51927,7037,"[""Wireless Mouse"", ""Phone""]",3193.96,"{"""": ""27%""}",63675,1,South America +2023-09-11,51928,3692,"[""Charger"", ""Monitor"", ""Phone""]",4673.97,"{""loyalty"": ""19%""}",55244,1,Europe +2024-02-01,51929,4097,"[""Phone"", ""Charger""]",2798.57,"{""loyalty"": ""30%""}",281224,0,Europe +2023-09-02,51930,5953,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",613.86,"{""promo"": ""12%""}",171056,0,South America +2023-06-26,51931,8778,"[""Wireless Mouse"", ""Monitor""]",115.55,{},13697,1,North America +2024-01-01,51932,3737,"[""Tablet"", ""Laptop""]",1545.14,{},210838,0,North America +2023-11-19,51933,1645,"[""Tablet"", ""Charger"", ""Phone""]",3520.98,"{""loyalty"": ""16%""}",197540,0,North America +2023-10-23,51934,8412,"[""Tablet"", ""Phone""]",3546.59,{},263190,1,Africa +2023-09-08,51935,7460,"[""Phone""]",2526.88,{},22522,0,South America +2024-08-10,51936,3537,"[""Laptop"", ""Keyboard""]",2468.84,{},144845,1,Europe +2024-03-15,51937,2471,"[""Laptop"", ""Monitor"", ""Charger""]",1569.52,"{""promo"": ""9%""}",234233,0,North America +2023-07-02,51938,8842,"[""Phone""]",2810.81,{},56914,1,Africa +2023-10-02,51939,426,"[""Keyboard"", ""Charger""]",3581.24,"{"""": ""8%""}",1729,0,North America +2024-11-26,51940,7350,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1234.15,"{""promo"": ""26%""}",252497,1,South America +2024-05-22,51941,7277,"[""Monitor"", ""Keyboard""]",1098.28,{},68392,1,North America +2024-06-28,51942,1650,"[""Phone"", ""Monitor""]",4672.85,{},133309,1,Europe +2023-03-27,51943,8344,"[""Headphones"", ""Monitor""]",2665.07,{},158383,1,North America +2023-09-23,51944,1762,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1095.0,"{""promo"": ""6%""}",57222,1,Africa +2024-04-12,51945,8807,"[""Keyboard"", ""Phone""]",3878.21,{},265929,0,North America +2023-12-08,51946,2936,"[""Laptop"", ""Phone"", ""Tablet""]",1836.13,"{""loyalty"": ""14%""}",24955,0,South America +2023-12-02,51947,5736,"[""Laptop""]",468.08,{},117784,0,North America +2023-07-27,51948,5417,"[""Keyboard"", ""Monitor""]",3621.15,"{""loyalty"": ""15%""}",258206,1,Africa +2023-02-01,51949,1980,"[""Charger"", ""Keyboard""]",2246.89,"{""loyalty"": ""11%""}",247081,0,Africa +2024-03-04,51950,7314,"[""Keyboard""]",2346.27,{},60594,1,South America +2024-02-08,51951,4758,"[""Tablet"", ""Phone""]",1122.98,{},177788,0,North America +2024-12-07,51952,7204,"[""Phone""]",377.22,{},273624,1,North America +2023-05-25,51953,7588,"[""Headphones""]",1157.54,"{""seasonal"": ""13%""}",50531,0,Asia +2023-07-16,51954,2536,"[""Laptop""]",4751.98,"{""seasonal"": ""20%""}",269205,0,Africa +2024-02-24,51955,7455,"[""Phone"", ""Tablet""]",1297.16,"{""promo"": ""18%""}",37555,0,Europe +2024-12-06,51956,4293,"[""Charger"", ""Keyboard""]",2222.33,"{""seasonal"": ""24%""}",16207,1,South America +2023-01-09,51957,19,"[""Monitor""]",614.74,{},242898,0,Africa +2024-09-18,51958,6323,"[""Wireless Mouse""]",799.99,{},3015,0,South America +2024-05-14,51959,3142,"[""Laptop"", ""Phone"", ""Charger""]",1570.46,{},122411,0,Europe +2024-10-16,51960,7774,"[""Phone"", ""Headphones""]",418.66,"{"""": ""16%""}",162361,1,Europe +2024-06-24,51961,9584,"[""Monitor"", ""Charger"", ""Laptop""]",1991.74,"{""loyalty"": ""13%""}",241863,1,South America +2024-01-11,51962,1395,"[""Headphones"", ""Wireless Mouse""]",3202.55,{},30857,1,Europe +2024-11-27,51963,8245,"[""Laptop"", ""Keyboard""]",1564.26,{},256319,1,North America +2023-09-24,51964,507,"[""Wireless Mouse""]",797.13,{},137029,1,Asia +2023-06-25,51965,9190,"[""Phone""]",2970.44,{},71405,0,North America +2023-08-28,51966,4525,"[""Keyboard""]",2217.27,{},189573,1,South America +2023-08-03,51967,6830,"[""Monitor""]",1746.72,"{""loyalty"": ""19%""}",289270,1,North America +2024-08-15,51968,2951,"[""Headphones""]",1806.47,"{""loyalty"": ""30%""}",100871,0,Europe +2024-09-03,51969,7056,"[""Tablet""]",2617.67,{},24152,1,North America +2023-02-18,51970,4228,"[""Charger"", ""Tablet""]",703.46,"{""seasonal"": ""25%""}",6315,1,Africa +2023-05-05,51971,2740,"[""Wireless Mouse"", ""Monitor""]",4222.34,{},151479,0,North America +2024-07-22,51972,4708,"[""Phone""]",259.16,"{""loyalty"": ""30%""}",280385,0,Africa +2024-07-08,51973,3610,"[""Laptop"", ""Tablet""]",668.45,{},235879,1,Africa +2024-08-13,51974,6294,"[""Laptop""]",644.64,"{""promo"": ""29%""}",67336,1,North America +2023-10-04,51975,7925,"[""Laptop"", ""Keyboard"", ""Tablet""]",2583.84,{},193994,0,North America +2023-11-05,51976,5088,"[""Charger"", ""Headphones"", ""Laptop""]",1222.64,"{""seasonal"": ""7%""}",104609,0,Asia +2023-05-30,51977,4717,"[""Keyboard"", ""Laptop"", ""Tablet""]",102.48,"{""loyalty"": ""30%""}",56811,1,Europe +2024-04-07,51978,9815,"[""Monitor"", ""Keyboard"", ""Phone""]",4446.64,"{"""": ""30%""}",3906,0,South America +2023-08-14,51979,2894,"[""Keyboard"", ""Monitor"", ""Laptop""]",1503.33,"{""promo"": ""24%""}",87915,1,Europe +2023-02-03,51980,3299,"[""Keyboard"", ""Charger""]",355.37,"{"""": ""24%""}",109557,1,Africa +2023-12-27,51981,3739,"[""Laptop"", ""Monitor"", ""Keyboard""]",2744.45,{},40678,0,Africa +2023-12-09,51982,6908,"[""Keyboard""]",3466.2,"{""promo"": ""25%""}",257060,0,Asia +2023-11-13,51983,2325,"[""Laptop"", ""Tablet""]",2772.73,"{""loyalty"": ""10%""}",32408,0,Asia +2023-09-30,51984,6620,"[""Charger"", ""Laptop"", ""Keyboard""]",4986.52,"{"""": ""20%""}",99907,0,South America +2024-07-23,51985,6403,"[""Laptop"", ""Phone""]",4143.72,"{""promo"": ""25%""}",147744,0,Asia +2023-01-31,51986,3665,"[""Tablet""]",3657.38,{},293111,1,South America +2024-02-23,51987,3443,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2733.33,"{""promo"": ""29%""}",187664,0,North America +2023-09-23,51988,9492,"[""Tablet"", ""Charger""]",2524.98,"{""seasonal"": ""29%""}",97933,1,Africa +2024-12-15,51989,9471,"[""Headphones"", ""Phone""]",3846.26,{},289640,1,North America +2023-05-28,51990,6227,"[""Keyboard"", ""Phone"", ""Monitor""]",4796.18,"{""seasonal"": ""22%""}",250041,0,South America +2023-07-20,51991,9984,"[""Monitor""]",1800.16,{},96126,1,North America +2024-04-07,51992,1364,"[""Tablet"", ""Charger"", ""Keyboard""]",3332.04,"{""loyalty"": ""8%""}",53711,0,Asia +2024-02-17,51993,4407,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3446.45,"{""loyalty"": ""13%""}",177704,1,Europe +2023-03-19,51994,4317,"[""Phone"", ""Tablet"", ""Headphones""]",3548.94,"{""promo"": ""19%""}",138872,0,Africa +2023-06-15,51995,9015,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3038.44,"{""seasonal"": ""13%""}",85983,1,Asia +2023-03-06,51996,4876,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3649.72,"{"""": ""7%""}",268134,1,Asia +2023-04-21,51997,2805,"[""Wireless Mouse"", ""Headphones""]",1092.39,"{""loyalty"": ""29%""}",74967,0,Africa +2023-07-27,51998,1332,"[""Phone"", ""Keyboard"", ""Monitor""]",134.99,{},142925,0,Europe +2023-01-02,51999,6021,"[""Headphones"", ""Keyboard""]",2285.05,"{""promo"": ""9%""}",22163,1,Europe +2024-03-12,52000,9065,"[""Charger"", ""Tablet"", ""Keyboard""]",3194.03,{},295499,0,Asia +2024-12-08,52001,2003,"[""Headphones"", ""Tablet"", ""Phone""]",809.69,{},249551,0,Europe +2024-10-22,52002,8057,"[""Headphones"", ""Laptop"", ""Monitor""]",2563.84,{},244684,1,Africa +2024-05-07,52003,139,"[""Headphones""]",4779.6,{},205074,1,Asia +2024-11-09,52004,6510,"[""Laptop"", ""Keyboard"", ""Charger""]",2776.61,"{""loyalty"": ""20%""}",193472,0,South America +2024-11-25,52005,3996,"[""Charger"", ""Phone""]",4524.7,"{""seasonal"": ""26%""}",170625,0,Europe +2023-07-24,52006,8228,"[""Charger""]",3506.38,"{""seasonal"": ""29%""}",147252,0,Asia +2023-01-07,52007,8309,"[""Monitor"", ""Headphones""]",4254.63,"{""promo"": ""20%""}",295431,1,Africa +2024-09-09,52008,1963,"[""Laptop""]",450.97,"{"""": ""9%""}",271448,0,Asia +2024-03-31,52009,9387,"[""Phone"", ""Monitor""]",3603.05,{},124753,0,Asia +2023-01-10,52010,9362,"[""Headphones"", ""Keyboard"", ""Charger""]",1079.63,{},141088,1,Asia +2023-02-13,52011,711,"[""Charger""]",1202.21,{},230205,1,North America +2023-03-08,52012,7431,"[""Phone"", ""Laptop""]",2913.19,"{""loyalty"": ""29%""}",254929,0,North America +2024-07-31,52013,4077,"[""Headphones"", ""Phone""]",4235.75,"{""seasonal"": ""30%""}",166147,1,Africa +2024-12-12,52014,8432,"[""Phone"", ""Headphones"", ""Charger""]",715.73,{},47563,0,Africa +2023-04-01,52015,3027,"[""Headphones"", ""Tablet"", ""Phone""]",2494.43,"{""promo"": ""28%""}",258169,1,North America +2024-02-21,52016,5877,"[""Laptop"", ""Keyboard""]",4648.96,{},134907,1,Asia +2024-10-23,52017,2054,"[""Phone""]",2853.6,{},53165,0,Asia +2024-02-18,52018,7178,"[""Charger"", ""Phone""]",718.56,"{""promo"": ""22%""}",183079,0,North America +2024-08-04,52019,1486,"[""Wireless Mouse"", ""Keyboard""]",608.15,{},13902,1,Africa +2023-08-11,52020,8047,"[""Wireless Mouse"", ""Laptop""]",1857.32,{},14450,1,North America +2023-06-15,52021,8037,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2722.54,"{""seasonal"": ""26%""}",109694,0,North America +2024-11-16,52022,155,"[""Monitor""]",1204.9,{},224926,1,Africa +2023-08-26,52023,4206,"[""Monitor""]",4036.1,{},255672,0,Africa +2023-08-29,52024,1632,"[""Headphones"", ""Phone""]",3045.07,{},118007,0,Europe +2023-09-06,52025,6301,"[""Monitor"", ""Charger""]",2732.96,{},227062,1,Europe +2024-04-11,52026,4449,"[""Headphones""]",126.76,{},292530,1,Africa +2024-01-02,52027,1167,"[""Wireless Mouse""]",4014.3,"{""promo"": ""17%""}",22177,1,South America +2023-11-05,52028,5252,"[""Charger"", ""Phone""]",4153.14,{},172438,0,Europe +2023-12-17,52029,7214,"[""Phone"", ""Tablet"", ""Laptop""]",2576.0,{},83124,0,Africa +2024-07-28,52030,6634,"[""Tablet""]",978.38,{},195045,1,North America +2024-06-12,52031,3406,"[""Monitor"", ""Charger"", ""Headphones""]",3112.46,{},90737,0,Asia +2024-04-14,52032,2650,"[""Tablet"", ""Headphones""]",4981.4,"{""promo"": ""11%""}",255006,1,North America +2024-12-10,52033,9140,"[""Charger"", ""Tablet"", ""Laptop""]",968.05,"{""promo"": ""22%""}",260184,1,Africa +2024-05-10,52034,4322,"[""Keyboard"", ""Laptop"", ""Charger""]",366.1,{},294554,0,South America +2023-11-26,52035,4742,"[""Phone"", ""Monitor""]",4167.04,"{""loyalty"": ""11%""}",294983,1,Africa +2024-07-22,52036,1892,"[""Tablet""]",3191.74,{},174048,1,Asia +2024-09-08,52037,2517,"[""Charger"", ""Tablet""]",2462.54,{},66613,0,South America +2024-10-14,52038,4611,"[""Keyboard""]",538.12,{},217118,1,Asia +2023-01-23,52039,4128,"[""Phone"", ""Charger""]",4952.87,"{""loyalty"": ""23%""}",81916,1,North America +2023-12-21,52040,8359,"[""Wireless Mouse""]",2340.56,"{"""": ""17%""}",144896,1,Africa +2024-04-03,52041,237,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4928.24,{},5933,1,Asia +2024-02-17,52042,8545,"[""Tablet"", ""Wireless Mouse""]",2083.09,{},285613,1,Africa +2024-05-11,52043,8226,"[""Charger""]",3466.68,"{""promo"": ""27%""}",25939,1,Asia +2024-02-10,52044,3763,"[""Charger""]",4214.68,"{""seasonal"": ""22%""}",73310,0,South America +2024-02-16,52045,237,"[""Headphones"", ""Keyboard"", ""Phone""]",527.3,"{""loyalty"": ""24%""}",240439,0,South America +2023-11-19,52046,252,"[""Phone"", ""Headphones"", ""Tablet""]",645.61,"{""seasonal"": ""6%""}",232466,0,Europe +2023-01-06,52047,9458,"[""Phone"", ""Laptop""]",4040.4,"{""loyalty"": ""16%""}",252594,1,Asia +2023-07-04,52048,4613,"[""Tablet"", ""Laptop""]",3563.52,{},212104,1,Europe +2024-11-07,52049,4713,"[""Wireless Mouse"", ""Laptop""]",1247.62,{},25770,0,Africa +2023-12-24,52050,2266,"[""Wireless Mouse""]",2232.56,"{""loyalty"": ""30%""}",123765,0,North America +2023-11-27,52051,7997,"[""Headphones"", ""Keyboard"", ""Charger""]",1261.18,"{""promo"": ""18%""}",266887,0,Europe +2023-09-19,52052,1435,"[""Wireless Mouse"", ""Headphones""]",3256.67,"{""promo"": ""20%""}",131371,1,Africa +2024-12-02,52053,9108,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2864.23,{},142114,0,Africa +2024-12-16,52054,4632,"[""Monitor"", ""Phone"", ""Headphones""]",785.07,"{""loyalty"": ""29%""}",10429,0,South America +2024-08-09,52055,9305,"[""Wireless Mouse""]",1617.79,"{""seasonal"": ""26%""}",260026,0,Europe +2023-06-02,52056,9946,"[""Laptop"", ""Headphones"", ""Charger""]",2332.01,"{""loyalty"": ""25%""}",197603,1,Europe +2023-03-12,52057,2056,"[""Monitor"", ""Phone"", ""Charger""]",2271.63,"{""seasonal"": ""19%""}",82673,0,Europe +2023-03-10,52058,3400,"[""Wireless Mouse""]",921.75,"{"""": ""11%""}",232135,0,Europe +2023-10-25,52059,2564,"[""Laptop"", ""Tablet"", ""Charger""]",2452.97,{},3880,1,Asia +2023-05-03,52060,3818,"[""Laptop"", ""Monitor"", ""Keyboard""]",1674.87,{},32966,0,Asia +2024-09-08,52061,1283,"[""Headphones"", ""Keyboard"", ""Tablet""]",1818.98,{},260317,0,Asia +2024-02-08,52062,5720,"[""Wireless Mouse"", ""Charger""]",3436.89,"{""seasonal"": ""26%""}",219191,0,South America +2023-03-14,52063,6644,"[""Wireless Mouse""]",2174.58,{},149805,0,Africa +2024-11-18,52064,2986,"[""Headphones""]",4853.95,{},247843,0,South America +2023-07-26,52065,161,"[""Laptop"", ""Phone""]",2290.95,{},41907,1,Asia +2023-01-30,52066,3115,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",375.39,{},15309,1,North America +2023-12-21,52067,8429,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3782.17,"{""promo"": ""12%""}",152785,1,South America +2023-04-05,52068,2036,"[""Laptop"", ""Charger""]",4302.79,"{""seasonal"": ""5%""}",228713,1,Asia +2023-03-05,52069,8377,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",827.26,{},40133,1,North America +2024-03-23,52070,1280,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4517.57,"{""loyalty"": ""30%""}",204580,0,Africa +2024-05-22,52071,624,"[""Keyboard""]",3434.21,"{""loyalty"": ""10%""}",296238,1,Africa +2024-01-28,52072,4891,"[""Tablet"", ""Wireless Mouse""]",1960.31,"{""seasonal"": ""8%""}",19292,1,South America +2024-12-09,52073,4211,"[""Phone"", ""Monitor""]",1508.23,{},136576,1,South America +2023-03-29,52074,3031,"[""Phone"", ""Headphones"", ""Monitor""]",1934.55,{},32171,0,North America +2024-10-13,52075,1258,"[""Charger""]",3940.44,{},170685,1,South America +2023-02-12,52076,9925,"[""Tablet"", ""Keyboard"", ""Headphones""]",3324.73,{},237763,1,North America +2023-09-29,52077,995,"[""Tablet""]",236.9,{},219335,0,North America +2023-01-10,52078,3449,"[""Laptop"", ""Monitor"", ""Headphones""]",2862.67,"{""loyalty"": ""29%""}",80282,1,North America +2023-06-16,52079,5633,"[""Phone""]",2383.87,"{""promo"": ""25%""}",71124,0,South America +2023-07-23,52080,3748,"[""Charger""]",2624.34,"{""loyalty"": ""28%""}",77352,1,South America +2023-05-07,52081,580,"[""Wireless Mouse""]",882.54,"{"""": ""19%""}",237229,1,Asia +2024-10-28,52082,1425,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2991.84,"{""loyalty"": ""27%""}",298944,0,Asia +2024-03-04,52083,4232,"[""Headphones"", ""Keyboard""]",2715.54,"{""seasonal"": ""14%""}",237802,0,Europe +2024-08-25,52084,5359,"[""Charger""]",1805.74,"{""seasonal"": ""26%""}",94792,0,North America +2024-02-18,52085,1029,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2999.08,{},10514,0,Africa +2023-11-04,52086,5588,"[""Keyboard"", ""Phone""]",1770.8,{},288178,0,North America +2024-01-09,52087,3729,"[""Tablet"", ""Charger""]",1442.47,"{"""": ""26%""}",257811,1,North America +2023-11-09,52088,3815,"[""Keyboard""]",3834.75,{},133637,0,South America +2023-10-23,52089,6390,"[""Headphones"", ""Phone""]",2417.92,{},144647,0,Europe +2023-09-23,52090,5248,"[""Laptop""]",88.54,{},17887,0,South America +2023-03-20,52091,4655,"[""Keyboard"", ""Tablet""]",4088.91,{},272312,1,South America +2024-06-08,52092,4040,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2765.61,{},175822,1,Asia +2024-03-08,52093,2648,"[""Wireless Mouse""]",3992.17,"{""seasonal"": ""23%""}",21436,0,North America +2024-01-19,52094,9598,"[""Tablet""]",357.56,{},99237,0,North America +2023-10-03,52095,823,"[""Keyboard""]",1572.48,{},172488,1,Asia +2023-02-14,52096,806,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",750.5,{},145048,1,North America +2023-07-01,52097,2559,"[""Charger"", ""Tablet"", ""Headphones""]",1520.07,"{""seasonal"": ""21%""}",150168,0,North America +2024-06-17,52098,2344,"[""Laptop"", ""Charger"", ""Phone""]",2574.61,"{"""": ""16%""}",257269,0,South America +2024-01-15,52099,1242,"[""Keyboard""]",4075.74,{},78625,0,Asia +2023-11-01,52100,4196,"[""Monitor""]",4475.75,"{""seasonal"": ""20%""}",237216,0,Africa +2023-06-19,52101,6956,"[""Keyboard""]",3993.4,"{""seasonal"": ""25%""}",209431,1,Asia +2024-09-06,52102,8597,"[""Keyboard"", ""Tablet"", ""Monitor""]",4998.62,{},171294,0,Africa +2024-09-04,52103,793,"[""Tablet"", ""Headphones""]",446.39,"{"""": ""10%""}",239309,0,North America +2023-04-06,52104,9267,"[""Keyboard"", ""Laptop"", ""Headphones""]",4732.97,{},100288,1,Europe +2023-05-15,52105,7201,"[""Tablet"", ""Keyboard"", ""Phone""]",1242.84,"{""loyalty"": ""23%""}",225852,1,South America +2023-05-21,52106,2779,"[""Keyboard""]",4768.85,{},3295,1,South America +2024-02-12,52107,665,"[""Charger"", ""Phone""]",1646.72,"{""promo"": ""14%""}",126245,0,Europe +2023-08-12,52108,8056,"[""Headphones""]",1444.35,{},79399,1,Africa +2024-03-19,52109,8435,"[""Laptop"", ""Phone""]",853.74,"{""seasonal"": ""5%""}",281327,1,Asia +2024-06-20,52110,3571,"[""Tablet"", ""Headphones""]",1270.26,{},205603,1,Africa +2024-09-19,52111,6180,"[""Phone""]",1672.72,{},181830,0,Africa +2023-04-08,52112,9098,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",107.77,"{""seasonal"": ""24%""}",219379,1,Europe +2024-01-25,52113,9047,"[""Charger""]",1393.56,"{""loyalty"": ""18%""}",235282,0,Asia +2023-06-24,52114,5623,"[""Charger""]",942.4,"{""loyalty"": ""23%""}",36220,1,Europe +2023-05-24,52115,8920,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4325.54,"{""promo"": ""24%""}",127175,1,Asia +2023-10-07,52116,5522,"[""Keyboard""]",3635.42,{},211689,1,Africa +2024-07-13,52117,2142,"[""Tablet""]",165.54,"{""promo"": ""7%""}",90732,0,South America +2023-06-02,52118,5630,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",207.4,{},6052,1,North America +2024-03-26,52119,6508,"[""Tablet"", ""Monitor"", ""Charger""]",2331.34,"{""loyalty"": ""12%""}",272400,0,Europe +2024-08-28,52120,5101,"[""Charger""]",3332.13,{},21157,0,Europe +2024-09-30,52121,9022,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4419.51,{},70327,1,Africa +2024-01-08,52122,445,"[""Keyboard""]",3055.05,{},141666,1,Africa +2024-07-01,52123,7450,"[""Tablet"", ""Charger""]",244.64,"{""seasonal"": ""26%""}",157973,1,South America +2023-08-08,52124,7685,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1802.07,{},215312,0,South America +2024-04-16,52125,6429,"[""Headphones"", ""Charger""]",4220.45,{},253368,0,Asia +2023-06-14,52126,4723,"[""Keyboard"", ""Laptop"", ""Tablet""]",657.55,"{""promo"": ""17%""}",296564,1,Asia +2024-11-28,52127,931,"[""Monitor"", ""Tablet"", ""Keyboard""]",4393.98,"{""loyalty"": ""20%""}",296859,0,Europe +2023-03-19,52128,4280,"[""Charger""]",4150.1,{},38081,1,South America +2024-12-24,52129,8990,"[""Headphones"", ""Tablet""]",2428.06,"{""seasonal"": ""27%""}",76438,1,South America +2024-10-13,52130,2807,"[""Tablet""]",114.92,{},42960,0,South America +2023-01-09,52131,5433,"[""Laptop"", ""Charger"", ""Headphones""]",1945.27,{},117835,0,Asia +2024-06-22,52132,2294,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3315.74,{},114125,0,Asia +2024-11-03,52133,7930,"[""Headphones"", ""Keyboard""]",655.6,{},199461,0,Asia +2023-04-27,52134,8902,"[""Wireless Mouse""]",3754.44,"{""promo"": ""15%""}",149760,1,Europe +2024-04-03,52135,5517,"[""Laptop"", ""Phone""]",789.11,"{""loyalty"": ""10%""}",188831,1,Europe +2023-11-12,52136,9181,"[""Charger""]",4658.6,{},85899,1,South America +2023-10-18,52137,2539,"[""Charger"", ""Monitor""]",2890.25,"{""loyalty"": ""29%""}",226389,0,North America +2023-03-12,52138,2800,"[""Headphones""]",2265.62,"{"""": ""22%""}",115117,1,Europe +2023-02-02,52139,3634,"[""Wireless Mouse""]",100.3,"{""promo"": ""7%""}",151314,1,Africa +2024-09-20,52140,3808,"[""Tablet""]",3249.08,{},238471,1,South America +2023-07-21,52141,2944,"[""Phone"", ""Tablet""]",2291.36,"{""loyalty"": ""29%""}",109562,0,Europe +2023-09-13,52142,5424,"[""Phone""]",3886.8,"{""loyalty"": ""20%""}",183629,1,Asia +2024-04-04,52143,4601,"[""Monitor"", ""Tablet""]",2817.09,{},277961,1,North America +2024-05-30,52144,1776,"[""Laptop""]",2858.11,{},288704,0,Asia +2023-02-24,52145,5194,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1272.7,{},147005,1,Africa +2023-03-10,52146,875,"[""Headphones"", ""Keyboard"", ""Phone""]",2650.87,"{""loyalty"": ""11%""}",221400,0,South America +2024-09-07,52147,8148,"[""Headphones"", ""Laptop"", ""Monitor""]",476.44,{},246705,0,Africa +2023-05-23,52148,9471,"[""Phone"", ""Monitor""]",1390.89,"{""loyalty"": ""8%""}",178791,0,North America +2024-11-09,52149,1414,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4022.34,{},173623,1,South America +2024-09-23,52150,7158,"[""Laptop"", ""Keyboard""]",4254.52,{},285983,0,South America +2024-09-04,52151,7986,"[""Wireless Mouse"", ""Monitor""]",1976.98,{},116538,1,South America +2023-07-12,52152,5874,"[""Phone"", ""Charger""]",3354.47,"{""seasonal"": ""19%""}",286185,0,Europe +2024-04-23,52153,3427,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3291.76,"{"""": ""10%""}",68018,1,Europe +2023-02-01,52154,4111,"[""Monitor""]",1851.8,"{"""": ""19%""}",185787,0,Africa +2023-06-25,52155,6790,"[""Keyboard""]",2953.14,{},31674,1,South America +2023-06-10,52156,2488,"[""Laptop"", ""Phone"", ""Tablet""]",262.44,"{""loyalty"": ""25%""}",135672,0,North America +2024-11-23,52157,9423,"[""Tablet"", ""Headphones""]",4605.26,"{""promo"": ""11%""}",277327,0,South America +2023-01-04,52158,8531,"[""Keyboard"", ""Laptop"", ""Charger""]",3825.91,{},179004,0,Africa +2023-09-15,52159,4088,"[""Headphones""]",1043.85,"{""promo"": ""27%""}",264578,0,North America +2023-11-04,52160,6032,"[""Charger"", ""Keyboard"", ""Laptop""]",2339.35,{},145374,1,Africa +2024-08-08,52161,3530,"[""Headphones"", ""Laptop""]",4793.72,"{"""": ""5%""}",115517,0,Africa +2023-12-19,52162,17,"[""Headphones"", ""Monitor"", ""Phone""]",395.63,"{""seasonal"": ""14%""}",228998,1,Europe +2023-08-23,52163,7543,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2078.36,"{""loyalty"": ""19%""}",13860,0,North America +2023-07-17,52164,9163,"[""Tablet""]",371.06,{},198710,0,Africa +2023-03-07,52165,7599,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",615.2,{},207208,0,Asia +2024-01-21,52166,5946,"[""Headphones""]",3406.79,"{""promo"": ""17%""}",169836,0,Asia +2024-02-01,52167,7167,"[""Headphones""]",416.3,{},154630,1,South America +2023-10-08,52168,9658,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4744.79,"{""promo"": ""22%""}",275294,1,North America +2023-11-12,52169,5154,"[""Laptop"", ""Keyboard""]",2198.88,"{"""": ""23%""}",107325,0,North America +2024-08-11,52170,4785,"[""Laptop"", ""Monitor""]",1963.58,{},112612,0,Asia +2023-08-20,52171,5884,"[""Phone"", ""Keyboard"", ""Laptop""]",3210.29,"{""promo"": ""27%""}",240059,1,Africa +2024-02-09,52172,6592,"[""Headphones"", ""Charger""]",4520.74,"{""seasonal"": ""13%""}",119393,0,Africa +2024-05-07,52173,3651,"[""Phone""]",724.26,{},233371,0,South America +2024-04-30,52174,5380,"[""Charger""]",4511.3,{},170764,0,Africa +2024-09-11,52175,386,"[""Monitor"", ""Headphones""]",4669.48,{},278249,1,Africa +2023-09-12,52176,2634,"[""Keyboard""]",3963.27,"{""loyalty"": ""5%""}",74682,0,Africa +2023-01-26,52177,4125,"[""Charger"", ""Phone""]",1241.26,{},276654,0,South America +2024-03-15,52178,2907,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3776.31,"{""promo"": ""17%""}",209002,1,Africa +2024-07-07,52179,9589,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4019.85,{},178046,1,North America +2024-08-23,52180,8404,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3032.73,"{""loyalty"": ""27%""}",52818,0,Asia +2023-05-27,52181,4248,"[""Monitor""]",3662.93,{},172992,1,Europe +2024-05-11,52182,1677,"[""Wireless Mouse""]",2544.35,"{""loyalty"": ""25%""}",195997,1,Europe +2024-05-22,52183,6394,"[""Wireless Mouse""]",2487.25,"{""loyalty"": ""23%""}",263973,1,South America +2024-01-07,52184,510,"[""Monitor"", ""Laptop""]",2074.55,"{""loyalty"": ""6%""}",260817,0,South America +2024-07-19,52185,74,"[""Tablet"", ""Wireless Mouse""]",1189.72,"{""seasonal"": ""24%""}",65742,0,North America +2023-04-22,52186,9029,"[""Charger"", ""Keyboard""]",2671.6,"{"""": ""24%""}",230143,1,South America +2024-02-08,52187,2666,"[""Headphones"", ""Laptop""]",4030.71,{},282174,0,Africa +2024-12-26,52188,294,"[""Wireless Mouse""]",550.32,"{""promo"": ""28%""}",252347,0,North America +2023-02-24,52189,9983,"[""Charger"", ""Tablet""]",850.68,{},294478,1,North America +2024-06-20,52190,9230,"[""Keyboard""]",3117.99,{},242408,1,North America +2023-10-24,52191,9727,"[""Headphones"", ""Laptop""]",4905.1,"{"""": ""9%""}",264190,0,North America +2024-04-25,52192,2444,"[""Headphones"", ""Laptop"", ""Charger""]",1363.27,{},3139,1,Europe +2023-08-21,52193,8100,"[""Laptop"", ""Tablet"", ""Phone""]",4582.34,{},236508,1,North America +2024-09-10,52194,9032,"[""Charger"", ""Wireless Mouse""]",4355.46,{},39807,1,South America +2023-03-29,52195,4881,"[""Charger"", ""Laptop"", ""Phone""]",4236.14,{},195029,0,Asia +2023-02-09,52196,1553,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",58.21,"{""loyalty"": ""9%""}",192891,1,Europe +2023-05-30,52197,3322,"[""Keyboard"", ""Tablet"", ""Monitor""]",3968.19,"{"""": ""15%""}",218267,1,South America +2023-05-18,52198,9493,"[""Charger""]",3093.82,{},123648,0,Asia +2024-08-09,52199,1181,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4417.38,"{""seasonal"": ""26%""}",230464,1,Asia +2024-08-19,52200,5303,"[""Monitor""]",4869.95,{},290796,1,South America +2023-11-30,52201,1728,"[""Headphones""]",4362.01,{},227506,1,Asia +2024-03-19,52202,1112,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1199.01,{},262827,0,South America +2024-04-22,52203,7872,"[""Charger"", ""Tablet""]",3338.44,{},179025,1,North America +2024-08-02,52204,371,"[""Tablet"", ""Headphones""]",319.16,"{""seasonal"": ""28%""}",111336,0,South America +2023-07-26,52205,5808,"[""Keyboard""]",960.33,"{""loyalty"": ""30%""}",293190,0,Asia +2024-09-10,52206,9050,"[""Keyboard"", ""Phone""]",2586.65,"{""promo"": ""17%""}",229155,1,North America +2023-12-19,52207,8468,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1052.5,"{""seasonal"": ""7%""}",25460,1,North America +2024-07-29,52208,22,"[""Monitor"", ""Headphones""]",2312.88,{},19688,0,Africa +2023-09-29,52209,7702,"[""Phone"", ""Laptop""]",3847.77,{},104837,1,Europe +2023-06-04,52210,3095,"[""Monitor""]",1003.9,"{"""": ""20%""}",296453,1,South America +2023-01-08,52211,4985,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1623.18,{},9443,1,South America +2024-10-15,52212,1914,"[""Monitor""]",127.9,{},180812,1,Africa +2024-05-19,52213,562,"[""Monitor"", ""Headphones""]",4709.96,"{"""": ""21%""}",106325,0,Africa +2023-01-06,52214,893,"[""Monitor"", ""Headphones""]",2798.78,"{""seasonal"": ""11%""}",98187,0,Europe +2024-04-27,52215,6120,"[""Keyboard"", ""Tablet"", ""Monitor""]",2552.93,{},26586,0,South America +2023-01-23,52216,2056,"[""Phone""]",3819.07,{},212254,0,South America +2023-12-28,52217,4273,"[""Laptop"", ""Charger""]",218.21,"{""loyalty"": ""13%""}",236978,1,Europe +2023-01-27,52218,5241,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3512.5,{},19620,0,Asia +2023-08-04,52219,8259,"[""Tablet""]",1026.98,"{""promo"": ""6%""}",217952,0,North America +2024-10-06,52220,3275,"[""Headphones"", ""Tablet"", ""Keyboard""]",834.57,"{""loyalty"": ""17%""}",157527,0,Africa +2024-07-07,52221,2073,"[""Monitor""]",2387.02,"{""promo"": ""25%""}",282572,1,North America +2024-10-06,52222,2222,"[""Keyboard""]",4745.48,{},62198,1,Europe +2024-07-21,52223,8245,"[""Wireless Mouse"", ""Phone""]",2531.11,"{""loyalty"": ""23%""}",216352,1,North America +2023-02-22,52224,9034,"[""Monitor""]",4670.76,{},264832,0,Africa +2023-01-13,52225,6249,"[""Monitor""]",1238.07,{},245834,1,Europe +2023-07-26,52226,8046,"[""Keyboard"", ""Laptop"", ""Tablet""]",1436.37,"{""promo"": ""17%""}",105429,0,Europe +2023-12-08,52227,4114,"[""Laptop"", ""Phone""]",1067.85,{},279873,0,Asia +2024-03-26,52228,28,"[""Tablet"", ""Phone"", ""Charger""]",385.07,{},185341,0,South America +2024-06-04,52229,173,"[""Keyboard"", ""Charger"", ""Phone""]",4628.04,"{"""": ""22%""}",36771,1,Europe +2024-07-28,52230,4573,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2027.4,"{""promo"": ""18%""}",39457,0,Europe +2024-03-22,52231,7374,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2371.17,"{""promo"": ""20%""}",132440,1,South America +2024-08-27,52232,1144,"[""Headphones""]",2010.65,"{""promo"": ""26%""}",14480,0,Europe +2023-10-18,52233,5402,"[""Tablet"", ""Keyboard"", ""Charger""]",259.34,{},2386,1,Africa +2023-08-31,52234,6672,"[""Tablet""]",2840.12,"{"""": ""15%""}",146103,0,South America +2023-03-15,52235,6446,"[""Wireless Mouse"", ""Monitor""]",4287.94,{},171806,1,Africa +2023-11-06,52236,879,"[""Monitor""]",2463.31,"{""loyalty"": ""9%""}",195925,1,Asia +2023-12-20,52237,9802,"[""Phone"", ""Monitor""]",2334.46,{},46314,1,Asia +2023-07-13,52238,227,"[""Phone"", ""Laptop""]",1165.72,{},141248,0,South America +2023-11-21,52239,8597,"[""Wireless Mouse""]",2524.73,"{""promo"": ""28%""}",299246,0,South America +2024-08-25,52240,9279,"[""Phone"", ""Keyboard""]",3010.41,"{"""": ""11%""}",257287,0,Asia +2024-04-06,52241,345,"[""Monitor"", ""Charger"", ""Headphones""]",2299.96,{},201271,0,Asia +2024-10-27,52242,8171,"[""Keyboard"", ""Headphones"", ""Tablet""]",670.28,{},273672,0,Asia +2023-08-17,52243,3720,"[""Phone"", ""Monitor""]",2008.83,{},162754,1,Europe +2024-09-17,52244,4177,"[""Laptop"", ""Wireless Mouse""]",1210.67,"{""promo"": ""9%""}",139012,0,North America +2023-07-17,52245,4288,"[""Keyboard"", ""Charger"", ""Laptop""]",568.56,"{"""": ""30%""}",99976,1,Asia +2023-05-27,52246,1103,"[""Keyboard""]",4590.53,"{""loyalty"": ""16%""}",280459,1,Africa +2023-07-24,52247,7701,"[""Keyboard"", ""Headphones""]",2895.26,"{""seasonal"": ""9%""}",39304,0,Africa +2023-01-24,52248,8517,"[""Headphones"", ""Laptop"", ""Charger""]",3755.32,"{""loyalty"": ""5%""}",259917,1,South America +2023-06-10,52249,319,"[""Headphones""]",3366.75,"{""seasonal"": ""12%""}",102851,0,Europe +2023-08-26,52250,9200,"[""Charger"", ""Tablet"", ""Keyboard""]",3701.35,{},179681,0,Asia +2024-08-07,52251,33,"[""Keyboard"", ""Laptop"", ""Phone""]",4062.04,{},107381,0,South America +2024-02-24,52252,9345,"[""Wireless Mouse""]",2820.91,{},232578,1,South America +2023-05-01,52253,5096,"[""Charger"", ""Headphones"", ""Keyboard""]",4777.54,"{""promo"": ""30%""}",138301,0,North America +2024-11-13,52254,2939,"[""Keyboard"", ""Charger"", ""Headphones""]",491.63,"{""loyalty"": ""5%""}",272074,0,North America +2023-11-28,52255,7610,"[""Monitor"", ""Charger"", ""Headphones""]",3782.7,"{"""": ""20%""}",132801,1,Asia +2023-02-09,52256,9137,"[""Keyboard""]",4722.96,{},234627,0,South America +2024-03-01,52257,8432,"[""Keyboard""]",2650.77,{},243584,0,Europe +2024-07-29,52258,8181,"[""Wireless Mouse"", ""Headphones""]",3122.35,"{"""": ""20%""}",193396,1,Asia +2023-12-12,52259,560,"[""Wireless Mouse""]",2953.62,"{"""": ""26%""}",244388,1,North America +2023-08-28,52260,2722,"[""Headphones""]",2292.51,{},6235,0,South America +2024-03-05,52261,2705,"[""Charger"", ""Tablet"", ""Keyboard""]",3142.81,"{"""": ""22%""}",93459,1,Europe +2024-07-11,52262,4420,"[""Monitor"", ""Keyboard""]",2774.81,{},139084,0,Africa +2023-09-23,52263,9920,"[""Laptop"", ""Keyboard"", ""Tablet""]",2196.07,"{""loyalty"": ""30%""}",236102,0,North America +2024-06-26,52264,1847,"[""Keyboard"", ""Phone""]",4862.0,"{""promo"": ""13%""}",256041,0,Africa +2024-05-19,52265,2621,"[""Tablet""]",1251.97,"{""loyalty"": ""27%""}",77639,0,North America +2023-01-04,52266,5745,"[""Laptop"", ""Tablet""]",3286.77,"{""promo"": ""17%""}",275692,0,South America +2024-04-07,52267,5989,"[""Tablet"", ""Keyboard""]",2193.97,{},155446,1,South America +2024-02-04,52268,5852,"[""Laptop""]",1720.21,"{"""": ""8%""}",277990,1,Asia +2024-06-03,52269,8546,"[""Headphones""]",3072.26,{},225346,0,Asia +2024-08-18,52270,6195,"[""Charger""]",3198.33,"{""loyalty"": ""22%""}",250347,0,Asia +2024-05-02,52271,8438,"[""Headphones"", ""Charger""]",3169.1,"{"""": ""22%""}",10989,0,Europe +2023-10-14,52272,5065,"[""Headphones""]",4693.13,{},114910,1,Europe +2024-08-23,52273,1387,"[""Monitor""]",3009.05,{},209969,1,Europe +2023-05-31,52274,7204,"[""Headphones"", ""Charger"", ""Monitor""]",913.46,"{""promo"": ""24%""}",261595,0,Africa +2024-07-08,52275,920,"[""Monitor"", ""Wireless Mouse""]",1141.41,"{""loyalty"": ""10%""}",283956,1,Europe +2024-01-22,52276,4774,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4089.64,"{""loyalty"": ""19%""}",143260,1,Europe +2023-12-16,52277,9365,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2700.53,"{"""": ""30%""}",104747,0,Africa +2023-07-26,52278,133,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4079.52,"{""loyalty"": ""6%""}",21630,0,North America +2023-10-25,52279,9552,"[""Laptop"", ""Tablet""]",3654.32,"{""loyalty"": ""24%""}",3747,0,South America +2023-11-24,52280,3783,"[""Headphones"", ""Laptop"", ""Monitor""]",2191.57,"{""loyalty"": ""6%""}",170858,1,Africa +2024-11-06,52281,1085,"[""Monitor"", ""Phone""]",3549.14,"{""promo"": ""7%""}",248202,1,South America +2024-05-15,52282,3429,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",536.81,"{""loyalty"": ""24%""}",292377,1,Asia +2023-09-08,52283,4939,"[""Keyboard""]",4671.73,{},174391,0,Europe +2023-10-20,52284,9114,"[""Keyboard"", ""Tablet"", ""Monitor""]",4701.57,"{""loyalty"": ""13%""}",161400,0,Europe +2024-07-02,52285,6837,"[""Phone""]",2402.15,{},157321,0,Asia +2024-03-24,52286,3673,"[""Tablet"", ""Headphones""]",4387.6,"{"""": ""22%""}",211459,1,Europe +2023-02-18,52287,726,"[""Headphones"", ""Phone""]",698.32,{},195392,0,Asia +2024-01-29,52288,3210,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1768.2,"{""loyalty"": ""10%""}",270580,0,Africa +2023-11-02,52289,7271,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4731.24,"{""promo"": ""11%""}",97595,0,North America +2024-09-14,52290,3626,"[""Phone""]",3222.18,{},151560,0,South America +2024-10-25,52291,7412,"[""Laptop""]",3761.02,{},238104,0,Asia +2024-12-30,52292,7383,"[""Laptop"", ""Keyboard"", ""Monitor""]",1248.28,"{""loyalty"": ""24%""}",225381,1,North America +2023-05-24,52293,2607,"[""Charger"", ""Headphones"", ""Tablet""]",2074.87,{},126131,1,South America +2023-11-29,52294,3544,"[""Phone"", ""Tablet"", ""Monitor""]",800.91,{},196724,0,Africa +2023-11-04,52295,2269,"[""Phone""]",2997.45,{},210210,1,Asia +2023-09-19,52296,7874,"[""Charger""]",4165.02,"{""seasonal"": ""9%""}",162457,1,North America +2024-02-08,52297,3083,"[""Wireless Mouse"", ""Charger""]",4605.81,"{""seasonal"": ""27%""}",51738,1,Europe +2023-10-07,52298,4402,"[""Phone"", ""Monitor""]",412.47,{},138541,0,Africa +2023-08-15,52299,8441,"[""Laptop"", ""Phone""]",2817.76,{},24776,1,North America +2024-12-14,52300,4329,"[""Monitor""]",467.44,{},286751,1,Europe +2023-04-28,52301,736,"[""Tablet"", ""Phone""]",3835.22,{},257821,1,Asia +2024-06-18,52302,6793,"[""Tablet""]",3267.46,"{""promo"": ""29%""}",191752,0,North America +2024-05-30,52303,9010,"[""Charger"", ""Keyboard"", ""Phone""]",3009.16,"{""seasonal"": ""17%""}",160660,0,Europe +2024-11-23,52304,6181,"[""Charger"", ""Keyboard""]",709.14,"{""loyalty"": ""6%""}",240161,1,North America +2023-08-26,52305,2150,"[""Keyboard""]",4268.32,"{"""": ""29%""}",38396,1,Asia +2024-10-22,52306,5072,"[""Monitor"", ""Phone"", ""Tablet""]",1058.74,{},136796,0,South America +2023-08-27,52307,4808,"[""Charger"", ""Tablet""]",3084.48,{},280620,1,Asia +2023-03-05,52308,2817,"[""Laptop""]",4845.52,{},280737,1,Asia +2023-02-21,52309,7851,"[""Phone"", ""Tablet""]",4509.52,"{""loyalty"": ""30%""}",292998,0,Europe +2023-03-19,52310,3510,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3991.2,{},78658,0,Africa +2023-12-03,52311,7524,"[""Headphones"", ""Keyboard"", ""Charger""]",3079.36,"{""loyalty"": ""26%""}",169221,1,Europe +2024-05-31,52312,8246,"[""Phone""]",335.74,{},224403,0,Africa +2023-05-19,52313,4239,"[""Laptop"", ""Charger"", ""Phone""]",138.93,"{"""": ""12%""}",141147,1,Africa +2024-04-10,52314,5447,"[""Wireless Mouse"", ""Tablet""]",3300.28,{},211087,1,Africa +2023-05-18,52315,3186,"[""Wireless Mouse""]",4349.33,"{"""": ""12%""}",139327,1,South America +2024-01-28,52316,4923,"[""Monitor""]",1744.25,{},86929,0,South America +2023-03-14,52317,804,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3570.26,{},122601,1,Africa +2024-01-04,52318,3200,"[""Laptop"", ""Keyboard"", ""Charger""]",2034.3,"{""seasonal"": ""28%""}",281464,1,North America +2023-11-06,52319,1285,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1461.8,{},47809,1,Africa +2024-07-08,52320,1379,"[""Keyboard"", ""Laptop"", ""Phone""]",4741.5,"{""loyalty"": ""7%""}",145574,1,Africa +2023-08-08,52321,3306,"[""Charger"", ""Wireless Mouse""]",4582.62,"{""seasonal"": ""6%""}",43000,1,North America +2024-12-24,52322,9535,"[""Keyboard""]",1408.32,{},205574,1,Africa +2023-01-06,52323,8523,"[""Phone"", ""Charger""]",3902.95,"{""loyalty"": ""30%""}",156043,1,Europe +2023-09-30,52324,4501,"[""Keyboard"", ""Laptop"", ""Monitor""]",924.52,{},15744,1,South America +2024-06-30,52325,3962,"[""Headphones"", ""Charger""]",2893.78,"{""loyalty"": ""30%""}",50899,1,Asia +2023-09-28,52326,6180,"[""Phone"", ""Wireless Mouse""]",2904.8,{},8621,1,South America +2024-10-13,52327,1949,"[""Phone"", ""Monitor"", ""Tablet""]",1080.35,{},241994,1,South America +2023-08-14,52328,4315,"[""Wireless Mouse"", ""Tablet""]",1800.52,"{""promo"": ""27%""}",152862,0,Europe +2023-06-12,52329,7664,"[""Headphones"", ""Monitor"", ""Phone""]",3045.05,"{""loyalty"": ""29%""}",282918,1,Europe +2024-12-21,52330,5485,"[""Charger""]",1887.41,"{""promo"": ""8%""}",68051,0,North America +2023-03-01,52331,7980,"[""Charger""]",4317.19,{},57090,1,Europe +2024-07-17,52332,4323,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1285.57,"{""promo"": ""10%""}",137155,1,Europe +2024-12-06,52333,6372,"[""Monitor""]",2939.39,{},83120,0,Africa +2024-03-19,52334,928,"[""Wireless Mouse""]",1997.37,"{""promo"": ""26%""}",98319,0,North America +2023-07-01,52335,8263,"[""Charger"", ""Keyboard""]",3306.04,"{""loyalty"": ""27%""}",202446,1,South America +2024-10-20,52336,378,"[""Wireless Mouse""]",3945.26,{},120412,1,North America +2023-06-17,52337,4620,"[""Phone""]",2585.26,"{""promo"": ""24%""}",294227,1,Asia +2024-12-25,52338,9083,"[""Tablet""]",1285.57,{},182829,1,North America +2024-01-26,52339,7477,"[""Monitor"", ""Charger"", ""Phone""]",3408.74,"{"""": ""29%""}",110666,0,South America +2024-11-30,52340,4938,"[""Headphones""]",3048.99,{},48225,0,South America +2023-06-12,52341,5580,"[""Phone"", ""Headphones"", ""Charger""]",3371.89,{},210334,0,South America +2024-03-13,52342,7649,"[""Keyboard"", ""Laptop""]",1016.15,{},273767,1,North America +2023-04-29,52343,6359,"[""Tablet""]",3825.86,"{"""": ""15%""}",228042,0,South America +2023-09-23,52344,292,"[""Laptop""]",4973.55,"{""seasonal"": ""6%""}",179622,1,North America +2023-05-09,52345,1118,"[""Headphones""]",204.34,{},10744,0,Africa +2023-06-25,52346,2701,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3542.35,{},11077,0,Europe +2023-05-27,52347,6695,"[""Keyboard"", ""Phone""]",3680.58,{},208764,1,Europe +2024-07-20,52348,1364,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4346.22,"{"""": ""18%""}",17097,0,Europe +2023-05-30,52349,3400,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2182.61,{},52522,1,North America +2024-06-06,52350,4579,"[""Wireless Mouse"", ""Keyboard""]",520.53,{},34403,0,South America +2023-01-12,52351,3855,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3236.06,{},198551,0,South America +2024-01-09,52352,941,"[""Wireless Mouse"", ""Headphones""]",1518.21,"{""loyalty"": ""18%""}",295800,1,South America +2023-02-25,52353,3568,"[""Phone"", ""Charger""]",4402.54,"{"""": ""21%""}",163041,0,Asia +2023-10-10,52354,1453,"[""Headphones""]",4517.92,{},77760,1,North America +2024-10-07,52355,2003,"[""Charger"", ""Monitor""]",2899.86,"{"""": ""12%""}",144791,0,Africa +2023-06-13,52356,1070,"[""Headphones"", ""Phone"", ""Monitor""]",1040.5,"{"""": ""21%""}",176742,1,Africa +2023-07-05,52357,4932,"[""Charger"", ""Phone"", ""Monitor""]",885.18,"{"""": ""29%""}",4668,0,South America +2023-02-01,52358,1028,"[""Charger""]",2423.21,"{"""": ""29%""}",59529,1,Europe +2023-10-07,52359,5455,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2213.07,{},141163,0,Africa +2024-11-14,52360,4945,"[""Wireless Mouse""]",578.59,"{""promo"": ""19%""}",30587,1,North America +2024-02-07,52361,914,"[""Charger"", ""Tablet"", ""Monitor""]",4497.56,"{""seasonal"": ""24%""}",175379,0,South America +2023-05-16,52362,4309,"[""Monitor""]",791.66,"{""loyalty"": ""17%""}",281580,0,Europe +2023-09-09,52363,7345,"[""Headphones"", ""Keyboard"", ""Charger""]",1827.71,{},120424,0,Africa +2024-10-03,52364,6371,"[""Keyboard""]",823.95,"{""loyalty"": ""19%""}",134995,1,Asia +2024-07-27,52365,823,"[""Laptop"", ""Headphones""]",3747.21,{},56766,0,Asia +2023-11-19,52366,1208,"[""Laptop""]",180.78,"{""promo"": ""29%""}",258417,1,North America +2023-03-24,52367,1093,"[""Tablet"", ""Phone""]",3835.78,{},86174,0,Africa +2024-09-09,52368,376,"[""Charger"", ""Tablet"", ""Phone""]",2317.92,{},140702,0,North America +2023-12-23,52369,4175,"[""Monitor"", ""Keyboard""]",89.76,"{""loyalty"": ""12%""}",68106,0,Europe +2024-08-11,52370,6777,"[""Laptop""]",704.58,"{""seasonal"": ""15%""}",106903,1,North America +2023-02-16,52371,313,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3324.76,"{""promo"": ""10%""}",241143,1,North America +2023-04-26,52372,8934,"[""Keyboard"", ""Headphones"", ""Phone""]",2146.18,"{"""": ""6%""}",12548,1,Africa +2023-07-10,52373,889,"[""Tablet"", ""Charger"", ""Laptop""]",1054.42,{},25833,1,North America +2024-04-17,52374,3658,"[""Laptop""]",3657.86,"{""seasonal"": ""27%""}",156438,1,Europe +2023-03-28,52375,3162,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1226.45,"{""loyalty"": ""7%""}",290077,0,Africa +2023-09-12,52376,2751,"[""Laptop""]",2998.24,{},190320,0,Africa +2023-03-02,52377,4572,"[""Headphones"", ""Charger"", ""Tablet""]",3654.81,{},231701,1,Africa +2024-08-10,52378,6786,"[""Headphones""]",283.71,{},232868,1,Asia +2024-10-27,52379,7408,"[""Monitor"", ""Keyboard""]",3777.67,{},155202,0,North America +2024-02-08,52380,103,"[""Laptop"", ""Charger"", ""Tablet""]",3832.07,{},251016,1,South America +2024-02-12,52381,7013,"[""Laptop"", ""Charger""]",3254.03,"{""promo"": ""13%""}",108782,1,Africa +2023-10-26,52382,8423,"[""Monitor""]",3405.54,"{""loyalty"": ""14%""}",123687,0,South America +2024-10-26,52383,2975,"[""Monitor"", ""Tablet"", ""Headphones""]",1576.61,{},120625,1,Africa +2023-02-08,52384,6096,"[""Monitor""]",722.61,{},134743,1,South America +2024-03-27,52385,3690,"[""Laptop"", ""Keyboard""]",4828.4,"{""loyalty"": ""14%""}",49727,1,Europe +2023-06-15,52386,6405,"[""Monitor""]",3985.99,{},281484,1,North America +2023-06-10,52387,7765,"[""Phone"", ""Headphones""]",4401.09,{},279670,0,Europe +2024-12-20,52388,594,"[""Charger"", ""Headphones"", ""Monitor""]",4650.73,{},66340,0,North America +2023-04-11,52389,8514,"[""Monitor"", ""Phone"", ""Headphones""]",2903.35,"{""promo"": ""28%""}",231902,1,South America +2024-09-16,52390,7774,"[""Wireless Mouse"", ""Monitor""]",4188.65,{},196718,1,Europe +2024-11-18,52391,3253,"[""Charger"", ""Laptop""]",2246.53,"{""promo"": ""20%""}",159135,1,Africa +2024-02-17,52392,198,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2486.4,"{""loyalty"": ""5%""}",213640,0,Asia +2023-11-22,52393,1462,"[""Keyboard"", ""Headphones""]",3465.99,{},179813,0,Europe +2023-09-29,52394,3641,"[""Headphones""]",3978.12,{},194416,1,North America +2023-08-02,52395,3471,"[""Monitor"", ""Keyboard""]",1572.79,"{""loyalty"": ""18%""}",138063,0,Asia +2024-11-24,52396,6966,"[""Laptop"", ""Headphones""]",2654.78,{},193677,0,Europe +2024-06-26,52397,2775,"[""Laptop"", ""Charger"", ""Monitor""]",4625.21,"{""promo"": ""12%""}",170227,0,North America +2024-01-21,52398,6159,"[""Charger""]",3624.54,{},242890,1,North America +2023-06-07,52399,9805,"[""Laptop"", ""Keyboard"", ""Charger""]",1827.15,{},263047,0,South America +2023-03-31,52400,708,"[""Laptop""]",1634.94,"{""seasonal"": ""7%""}",72476,1,North America +2023-08-29,52401,6602,"[""Keyboard"", ""Monitor"", ""Charger""]",1433.49,{},104459,1,North America +2023-11-07,52402,9174,"[""Charger""]",1057.08,{},116909,0,South America +2023-03-04,52403,3893,"[""Monitor"", ""Tablet""]",3508.27,{},49855,1,South America +2024-04-05,52404,5291,"[""Headphones""]",2448.55,{},259943,0,Africa +2024-12-21,52405,6392,"[""Laptop"", ""Tablet""]",4338.74,"{""loyalty"": ""21%""}",109449,0,Africa +2023-01-25,52406,4120,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3098.75,"{""loyalty"": ""8%""}",140005,0,Europe +2024-12-27,52407,1802,"[""Tablet"", ""Phone""]",4334.83,"{""loyalty"": ""20%""}",1668,1,Europe +2023-05-28,52408,8612,"[""Tablet"", ""Monitor""]",1009.16,"{""seasonal"": ""27%""}",231359,0,South America +2024-02-22,52409,8838,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3581.67,"{""loyalty"": ""17%""}",8336,0,Europe +2023-07-01,52410,5764,"[""Keyboard""]",3311.88,"{"""": ""23%""}",117121,0,Europe +2024-06-08,52411,1053,"[""Phone""]",3056.78,{},61650,1,South America +2024-01-02,52412,1123,"[""Wireless Mouse""]",3758.28,{},75888,1,Africa +2024-07-01,52413,1356,"[""Keyboard""]",2136.67,{},28176,0,Africa +2024-04-22,52414,8435,"[""Charger"", ""Laptop"", ""Headphones""]",3842.54,{},246917,0,Africa +2024-04-24,52415,4693,"[""Headphones""]",1065.93,"{""loyalty"": ""24%""}",32158,0,Africa +2023-12-28,52416,1344,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3935.26,{},177098,0,Europe +2024-02-27,52417,7081,"[""Tablet"", ""Phone"", ""Charger""]",376.76,{},290367,0,North America +2024-07-20,52418,9440,"[""Charger""]",3101.79,{},289156,1,North America +2023-02-26,52419,7844,"[""Monitor""]",1867.48,{},174997,0,Asia +2023-09-20,52420,5625,"[""Phone"", ""Wireless Mouse""]",2666.16,{},116862,1,Asia +2024-08-05,52421,4123,"[""Charger"", ""Laptop""]",1130.72,"{""loyalty"": ""15%""}",73224,1,South America +2023-02-10,52422,2841,"[""Headphones"", ""Charger"", ""Monitor""]",213.32,"{""loyalty"": ""28%""}",225758,1,Europe +2024-11-26,52423,5269,"[""Monitor"", ""Tablet"", ""Headphones""]",2792.1,{},204602,0,North America +2023-09-15,52424,2538,"[""Laptop""]",1683.53,{},169150,0,Africa +2024-03-28,52425,3088,"[""Headphones""]",4699.64,"{""promo"": ""10%""}",269866,1,North America +2024-10-16,52426,4450,"[""Charger""]",2065.21,{},118656,1,Africa +2024-07-16,52427,9956,"[""Tablet"", ""Charger"", ""Phone""]",3848.02,"{""loyalty"": ""7%""}",273138,0,South America +2024-05-03,52428,1828,"[""Charger""]",1828.75,"{"""": ""9%""}",120576,1,Africa +2024-04-08,52429,3715,"[""Keyboard"", ""Laptop""]",583.99,{},95253,1,Europe +2024-12-18,52430,9132,"[""Keyboard"", ""Monitor"", ""Headphones""]",2401.93,"{"""": ""20%""}",203063,1,South America +2023-12-17,52431,2999,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4025.69,{},263727,0,North America +2024-02-11,52432,4461,"[""Headphones""]",4393.25,"{""loyalty"": ""14%""}",30803,0,North America +2024-08-03,52433,4132,"[""Tablet"", ""Wireless Mouse""]",4861.7,{},199792,0,Asia +2024-11-14,52434,9462,"[""Headphones"", ""Tablet""]",1243.37,"{""seasonal"": ""18%""}",297844,0,Africa +2023-01-04,52435,4958,"[""Tablet""]",1757.35,{},142654,0,Asia +2024-03-29,52436,8569,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1663.89,"{""loyalty"": ""8%""}",12574,1,South America +2023-06-25,52437,7616,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",623.14,"{"""": ""27%""}",287281,1,North America +2024-11-28,52438,6619,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3171.41,{},88470,0,Asia +2023-08-11,52439,8181,"[""Wireless Mouse"", ""Monitor""]",3147.43,{},195830,0,Africa +2023-05-28,52440,4671,"[""Charger""]",3960.06,"{"""": ""8%""}",260320,1,Africa +2023-02-28,52441,6266,"[""Monitor""]",351.67,{},126645,1,Africa +2024-12-22,52442,5649,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2742.36,{},147929,0,South America +2024-03-11,52443,4628,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4334.95,{},88139,0,Asia +2024-11-16,52444,2713,"[""Phone"", ""Tablet"", ""Charger""]",3005.72,{},66012,0,South America +2024-12-19,52445,4381,"[""Tablet"", ""Monitor""]",4360.36,{},267133,1,North America +2024-04-20,52446,8776,"[""Phone"", ""Charger""]",1920.28,{},220935,1,Europe +2024-09-21,52447,1201,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4227.23,{},270113,0,Europe +2024-05-02,52448,8084,"[""Laptop""]",2489.41,"{""promo"": ""22%""}",235423,0,Europe +2024-11-30,52449,8070,"[""Headphones"", ""Wireless Mouse""]",1311.19,{},44552,1,North America +2024-09-09,52450,1895,"[""Wireless Mouse"", ""Monitor""]",4463.45,{},193527,0,North America +2023-12-23,52451,3299,"[""Headphones"", ""Wireless Mouse""]",2513.33,{},254316,0,Europe +2023-01-15,52452,487,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1823.44,"{""loyalty"": ""26%""}",13401,1,Africa +2023-05-09,52453,6397,"[""Laptop"", ""Headphones"", ""Monitor""]",4248.91,"{""loyalty"": ""23%""}",229698,0,Asia +2024-08-19,52454,4173,"[""Wireless Mouse""]",1337.01,{},60667,0,Africa +2024-10-21,52455,331,"[""Headphones"", ""Charger"", ""Laptop""]",1821.88,{},91079,1,Europe +2024-10-22,52456,3648,"[""Headphones"", ""Charger""]",4587.17,{},50470,0,South America +2023-06-14,52457,8914,"[""Phone"", ""Charger""]",1125.55,{},266052,1,North America +2024-08-14,52458,9608,"[""Headphones"", ""Keyboard"", ""Phone""]",4876.6,{},271313,1,Africa +2024-01-01,52459,21,"[""Charger"", ""Laptop""]",2074.2,{},254388,1,South America +2024-02-18,52460,499,"[""Charger"", ""Monitor""]",2889.31,"{""seasonal"": ""21%""}",254730,0,Africa +2023-11-15,52461,4970,"[""Charger"", ""Laptop""]",3048.43,{},292563,1,Asia +2023-10-17,52462,8759,"[""Headphones"", ""Tablet"", ""Charger""]",3898.26,{},41457,1,Europe +2024-09-14,52463,5338,"[""Tablet""]",1001.4,{},125755,0,Africa +2024-03-28,52464,3990,"[""Charger""]",2405.46,"{""promo"": ""10%""}",51267,1,Africa +2024-09-30,52465,2247,"[""Charger"", ""Wireless Mouse""]",1214.65,{},259086,1,Africa +2024-11-05,52466,992,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3833.67,"{"""": ""11%""}",135899,0,North America +2024-01-29,52467,6394,"[""Wireless Mouse""]",997.31,{},280342,0,Asia +2023-10-15,52468,5513,"[""Monitor"", ""Wireless Mouse""]",658.95,"{""seasonal"": ""14%""}",204245,0,North America +2023-09-09,52469,6663,"[""Tablet""]",4285.3,"{""promo"": ""24%""}",205018,0,South America +2023-09-02,52470,7433,"[""Laptop""]",318.37,{},79156,1,North America +2023-02-26,52471,1070,"[""Monitor"", ""Charger""]",3371.89,"{""seasonal"": ""8%""}",260679,1,Africa +2023-06-21,52472,4174,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",504.01,"{""promo"": ""16%""}",143653,0,North America +2023-05-11,52473,2844,"[""Wireless Mouse"", ""Tablet""]",2084.08,{},8915,0,Asia +2023-01-11,52474,4361,"[""Monitor""]",3747.74,"{""seasonal"": ""8%""}",237893,1,South America +2024-02-21,52475,4378,"[""Charger"", ""Tablet"", ""Laptop""]",833.27,"{""loyalty"": ""12%""}",249556,0,South America +2023-08-15,52476,6535,"[""Keyboard"", ""Charger"", ""Phone""]",968.26,{},194825,0,Africa +2023-07-14,52477,9628,"[""Laptop"", ""Headphones""]",4292.32,"{"""": ""20%""}",112287,1,Europe +2024-05-04,52478,8843,"[""Headphones"", ""Keyboard"", ""Laptop""]",2859.28,"{""seasonal"": ""21%""}",212404,0,Asia +2024-12-07,52479,8376,"[""Wireless Mouse"", ""Phone""]",3921.78,"{""seasonal"": ""17%""}",89372,0,Africa +2024-01-11,52480,6236,"[""Charger"", ""Tablet""]",4938.49,"{""promo"": ""7%""}",290247,1,Europe +2023-12-02,52481,5961,"[""Keyboard"", ""Headphones"", ""Charger""]",1180.6,"{""loyalty"": ""19%""}",283987,0,Asia +2023-11-04,52482,630,"[""Laptop""]",1401.6,"{"""": ""30%""}",181916,1,Europe +2023-01-23,52483,1644,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3354.84,"{""loyalty"": ""15%""}",10476,1,South America +2023-11-16,52484,6497,"[""Charger""]",2541.33,"{""loyalty"": ""14%""}",77214,1,South America +2023-11-06,52485,1679,"[""Headphones""]",2272.86,{},43323,1,South America +2023-04-29,52486,426,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3170.86,{},49102,1,Asia +2024-06-10,52487,461,"[""Tablet"", ""Headphones""]",2464.68,{},51928,0,Europe +2024-07-06,52488,3374,"[""Wireless Mouse"", ""Keyboard""]",4548.12,"{"""": ""26%""}",55784,1,South America +2023-06-21,52489,4391,"[""Keyboard""]",3277.96,"{""seasonal"": ""16%""}",190426,1,North America +2023-10-01,52490,7587,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1295.14,"{""loyalty"": ""30%""}",22751,0,Africa +2023-09-01,52491,6208,"[""Charger"", ""Phone"", ""Laptop""]",4559.9,"{""loyalty"": ""23%""}",261539,0,Europe +2024-02-27,52492,8965,"[""Laptop"", ""Monitor""]",4138.53,{},15254,1,South America +2024-01-25,52493,2761,"[""Charger"", ""Phone""]",4942.18,"{""seasonal"": ""29%""}",116564,1,Asia +2023-06-26,52494,915,"[""Keyboard""]",295.41,"{""promo"": ""8%""}",283180,1,Africa +2024-01-15,52495,9709,"[""Phone""]",1999.04,{},19736,0,Europe +2023-05-02,52496,898,"[""Monitor"", ""Charger"", ""Keyboard""]",1964.63,{},19579,0,Asia +2024-01-29,52497,2795,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2655.45,{},59452,0,Africa +2024-07-04,52498,4515,"[""Charger"", ""Keyboard""]",150.73,{},290447,0,Europe +2023-05-27,52499,6789,"[""Charger"", ""Phone"", ""Wireless Mouse""]",462.87,{},273803,0,North America +2024-02-24,52500,7057,"[""Laptop"", ""Headphones"", ""Keyboard""]",1748.81,"{""loyalty"": ""23%""}",15865,0,Africa +2023-01-20,52501,7590,"[""Monitor"", ""Keyboard""]",2398.08,{},41094,0,Europe +2023-02-24,52502,1611,"[""Phone""]",4902.8,{},61819,0,Africa +2024-09-18,52503,703,"[""Monitor"", ""Phone""]",4278.84,"{""promo"": ""18%""}",123669,0,Africa +2024-05-12,52504,3385,"[""Charger"", ""Laptop""]",3190.19,{},221921,1,Europe +2023-07-09,52505,5594,"[""Headphones"", ""Laptop""]",3330.16,{},90869,1,Africa +2024-10-22,52506,243,"[""Laptop""]",1164.99,"{"""": ""22%""}",232426,1,Europe +2024-02-11,52507,9609,"[""Phone""]",3366.32,{},267206,1,Africa +2024-03-04,52508,1999,"[""Wireless Mouse""]",4502.58,"{"""": ""29%""}",20326,0,Asia +2023-09-22,52509,8304,"[""Headphones"", ""Phone"", ""Monitor""]",1359.59,{},201427,0,Asia +2023-01-06,52510,6288,"[""Headphones"", ""Wireless Mouse""]",185.28,{},218298,0,South America +2023-04-27,52511,5579,"[""Phone"", ""Wireless Mouse""]",4506.27,{},295394,1,North America +2024-07-16,52512,1357,"[""Monitor""]",439.07,{},273107,1,Europe +2024-02-29,52513,6534,"[""Laptop"", ""Monitor""]",4117.83,{},250596,1,South America +2023-12-25,52514,2507,"[""Keyboard"", ""Phone""]",2471.57,"{"""": ""17%""}",239892,1,South America +2024-02-15,52515,5113,"[""Headphones""]",4663.0,"{"""": ""18%""}",274138,1,Europe +2024-02-21,52516,627,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1826.75,"{"""": ""26%""}",32479,1,Asia +2023-07-22,52517,6306,"[""Wireless Mouse""]",2928.41,"{"""": ""14%""}",82686,0,Africa +2023-11-21,52518,4328,"[""Headphones""]",4007.78,{},9433,0,North America +2024-05-20,52519,9959,"[""Tablet"", ""Charger"", ""Keyboard""]",1951.08,{},246625,1,Africa +2023-07-28,52520,6361,"[""Keyboard"", ""Tablet""]",1280.33,{},19969,0,Europe +2023-04-04,52521,6417,"[""Phone"", ""Monitor"", ""Charger""]",554.03,{},67195,1,Asia +2023-02-08,52522,1991,"[""Charger""]",2232.49,{},11702,1,North America +2023-07-14,52523,6037,"[""Laptop"", ""Tablet""]",3064.33,{},15395,0,Europe +2023-01-13,52524,314,"[""Charger"", ""Monitor"", ""Tablet""]",4204.16,{},56604,0,South America +2024-04-17,52525,8014,"[""Keyboard"", ""Headphones""]",1119.19,"{""seasonal"": ""13%""}",220109,1,South America +2023-03-03,52526,3063,"[""Keyboard""]",3992.55,"{"""": ""19%""}",73757,0,South America +2023-02-12,52527,5703,"[""Monitor""]",4495.74,"{""promo"": ""21%""}",161744,0,Asia +2024-03-08,52528,1551,"[""Monitor"", ""Phone""]",3216.24,"{""promo"": ""22%""}",275655,0,Europe +2023-04-30,52529,6376,"[""Tablet""]",2992.06,"{""promo"": ""28%""}",154513,0,North America +2024-12-11,52530,5164,"[""Tablet"", ""Keyboard""]",297.33,{},110713,0,Europe +2024-05-14,52531,6334,"[""Laptop""]",1933.9,"{""seasonal"": ""7%""}",18965,1,Asia +2024-06-25,52532,763,"[""Phone"", ""Wireless Mouse""]",1198.32,"{""loyalty"": ""26%""}",299175,1,South America +2024-05-24,52533,2363,"[""Tablet"", ""Charger"", ""Laptop""]",3320.4,"{""loyalty"": ""11%""}",65626,0,North America +2024-04-22,52534,3249,"[""Charger""]",3148.27,{},77221,0,Africa +2023-06-04,52535,9012,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1415.21,{},69719,1,Asia +2024-04-30,52536,5728,"[""Charger"", ""Keyboard""]",1907.69,"{""loyalty"": ""12%""}",192397,0,Europe +2023-07-31,52537,1185,"[""Laptop"", ""Headphones""]",1190.67,{},181120,0,South America +2024-04-04,52538,1702,"[""Headphones"", ""Tablet""]",2713.0,"{""seasonal"": ""19%""}",152271,0,Asia +2024-05-28,52539,8618,"[""Tablet""]",4947.55,{},111884,1,Asia +2023-03-25,52540,4594,"[""Keyboard"", ""Headphones""]",3008.99,{},141706,0,Asia +2023-05-14,52541,2864,"[""Laptop"", ""Tablet"", ""Phone""]",3278.58,{},197819,1,North America +2024-12-20,52542,2282,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4382.83,{},7274,0,South America +2023-01-10,52543,9663,"[""Phone"", ""Charger"", ""Keyboard""]",937.06,"{""loyalty"": ""20%""}",118929,1,Africa +2023-11-05,52544,9651,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1434.47,"{"""": ""21%""}",57916,0,Europe +2024-05-26,52545,4018,"[""Tablet"", ""Phone"", ""Headphones""]",4798.11,{},20734,1,North America +2023-02-25,52546,7873,"[""Headphones""]",392.9,{},217218,0,North America +2024-07-15,52547,3971,"[""Tablet"", ""Monitor"", ""Laptop""]",3746.9,"{""loyalty"": ""24%""}",201817,0,Europe +2023-01-16,52548,3135,"[""Wireless Mouse""]",3860.88,{},240437,0,Asia +2023-11-19,52549,2221,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",132.58,"{""seasonal"": ""24%""}",244631,1,Asia +2023-02-12,52550,9357,"[""Headphones"", ""Laptop"", ""Monitor""]",681.49,{},84406,0,North America +2023-10-07,52551,2298,"[""Laptop""]",963.82,{},286995,1,Asia +2023-06-18,52552,6473,"[""Charger""]",1216.35,"{""promo"": ""24%""}",190099,0,Africa +2024-11-29,52553,7878,"[""Monitor"", ""Keyboard"", ""Phone""]",2453.26,"{""seasonal"": ""12%""}",136602,0,North America +2024-08-26,52554,6599,"[""Charger""]",2791.07,{},74653,1,North America +2023-08-15,52555,4319,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3841.63,{},159435,0,Asia +2023-11-27,52556,4756,"[""Keyboard""]",2060.72,{},138232,1,North America +2024-05-10,52557,7692,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",634.78,{},150157,0,Africa +2024-04-19,52558,1752,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2506.11,{},216784,1,Europe +2023-11-22,52559,7844,"[""Headphones""]",3587.36,"{""seasonal"": ""23%""}",76812,0,Asia +2024-03-02,52560,4326,"[""Wireless Mouse""]",524.88,"{""loyalty"": ""23%""}",119034,0,South America +2023-08-16,52561,5049,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2958.96,"{""promo"": ""23%""}",7515,0,Asia +2023-06-28,52562,5795,"[""Laptop"", ""Monitor""]",3201.25,"{""promo"": ""16%""}",12167,1,North America +2023-08-19,52563,9776,"[""Headphones"", ""Tablet""]",993.74,{},147748,1,South America +2023-02-23,52564,2312,"[""Charger"", ""Phone"", ""Keyboard""]",2868.29,"{"""": ""29%""}",122820,0,Africa +2023-03-03,52565,3554,"[""Wireless Mouse""]",825.97,{},180985,0,Africa +2023-03-15,52566,9866,"[""Tablet"", ""Charger"", ""Keyboard""]",129.9,"{""promo"": ""24%""}",293712,1,South America +2023-10-24,52567,7360,"[""Charger""]",4609.48,{},243560,1,Asia +2023-09-13,52568,6736,"[""Monitor"", ""Charger"", ""Tablet""]",2014.12,{},234020,0,Asia +2023-06-14,52569,4077,"[""Laptop""]",4589.78,"{"""": ""18%""}",78758,0,Africa +2023-01-03,52570,4973,"[""Wireless Mouse""]",2906.71,{},14573,1,Asia +2023-04-03,52571,7786,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3956.27,{},267792,1,Africa +2023-09-04,52572,232,"[""Phone""]",320.3,{},243782,0,Asia +2024-03-21,52573,355,"[""Keyboard""]",4887.77,"{"""": ""24%""}",180573,1,North America +2024-09-22,52574,1112,"[""Laptop"", ""Headphones"", ""Phone""]",3284.73,{},7469,0,Africa +2024-12-15,52575,1182,"[""Tablet"", ""Phone"", ""Laptop""]",2384.57,{},47891,1,North America +2024-04-06,52576,3787,"[""Phone""]",3141.71,{},129737,0,Asia +2024-01-14,52577,4255,"[""Monitor"", ""Wireless Mouse""]",4390.82,{},30967,1,Asia +2024-06-18,52578,1982,"[""Phone""]",4143.95,{},257214,0,Europe +2023-10-02,52579,9787,"[""Monitor""]",224.15,{},24547,1,South America +2024-04-22,52580,9207,"[""Charger""]",2904.77,"{""loyalty"": ""14%""}",126383,0,Africa +2023-10-30,52581,9626,"[""Keyboard"", ""Phone"", ""Laptop""]",426.03,{},255188,1,Asia +2023-02-14,52582,5125,"[""Tablet""]",3850.93,{},299539,0,South America +2024-12-12,52583,5911,"[""Charger"", ""Headphones"", ""Phone""]",3946.69,"{""loyalty"": ""25%""}",215034,0,North America +2024-02-16,52584,2193,"[""Charger"", ""Phone""]",388.72,{},202954,1,Asia +2023-04-20,52585,2047,"[""Laptop"", ""Phone""]",3298.66,{},256187,1,Asia +2024-10-14,52586,7919,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3054.24,"{""promo"": ""25%""}",126196,1,South America +2023-12-21,52587,6207,"[""Monitor"", ""Charger"", ""Headphones""]",3170.52,{},23327,0,Africa +2023-09-01,52588,7959,"[""Keyboard""]",3692.76,{},286612,1,North America +2024-07-21,52589,7845,"[""Headphones""]",4554.13,"{"""": ""24%""}",218952,0,South America +2023-09-03,52590,313,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3732.63,{},89226,1,South America +2024-05-26,52591,8157,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3685.62,"{""loyalty"": ""16%""}",33372,0,Africa +2023-03-19,52592,4451,"[""Phone"", ""Monitor"", ""Keyboard""]",2546.01,{},55065,1,North America +2023-11-18,52593,4437,"[""Wireless Mouse"", ""Monitor""]",2861.86,"{""loyalty"": ""9%""}",273651,0,North America +2023-08-04,52594,509,"[""Headphones"", ""Monitor"", ""Keyboard""]",3890.47,{},85479,0,Africa +2024-03-03,52595,4544,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4178.69,"{""promo"": ""17%""}",151347,0,Africa +2023-01-03,52596,4313,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4727.73,{},66683,1,Europe +2023-09-29,52597,8797,"[""Wireless Mouse""]",1844.61,"{""promo"": ""23%""}",111111,1,Europe +2023-12-14,52598,5082,"[""Monitor"", ""Phone"", ""Keyboard""]",2170.21,"{""loyalty"": ""13%""}",202441,0,South America +2023-05-02,52599,8712,"[""Tablet"", ""Monitor"", ""Headphones""]",3216.98,{},190836,1,Asia +2023-08-24,52600,5770,"[""Phone""]",4111.5,{},3507,0,Asia +2024-04-19,52601,3284,"[""Keyboard"", ""Laptop"", ""Headphones""]",1168.32,{},106501,0,Africa +2023-05-21,52602,1781,"[""Monitor"", ""Wireless Mouse""]",3078.14,"{""loyalty"": ""5%""}",141405,1,South America +2024-02-10,52603,8682,"[""Monitor"", ""Keyboard""]",4617.53,{},209865,0,Europe +2023-01-25,52604,888,"[""Keyboard"", ""Headphones"", ""Laptop""]",2335.47,"{"""": ""13%""}",284352,0,North America +2023-07-12,52605,6789,"[""Monitor"", ""Headphones""]",4067.66,"{""seasonal"": ""7%""}",169716,0,Asia +2023-10-27,52606,2770,"[""Headphones"", ""Monitor"", ""Charger""]",4807.41,"{""seasonal"": ""28%""}",136559,1,North America +2023-12-10,52607,8841,"[""Wireless Mouse"", ""Headphones""]",3955.41,"{""loyalty"": ""17%""}",215406,1,Europe +2023-11-14,52608,9530,"[""Keyboard"", ""Laptop""]",2957.58,{},178085,1,North America +2024-01-15,52609,5277,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4179.91,{},116290,0,Europe +2023-11-24,52610,2545,"[""Phone"", ""Headphones""]",2770.69,{},278795,1,South America +2024-12-29,52611,981,"[""Keyboard"", ""Wireless Mouse""]",717.89,{},35395,1,North America +2024-03-15,52612,7695,"[""Charger"", ""Headphones"", ""Monitor""]",4238.88,{},260054,1,Asia +2023-10-19,52613,3375,"[""Charger"", ""Headphones"", ""Keyboard""]",3009.0,"{"""": ""6%""}",161957,1,Asia +2024-03-19,52614,7582,"[""Wireless Mouse"", ""Monitor""]",1960.81,"{"""": ""8%""}",49825,0,Africa +2023-04-10,52615,4232,"[""Charger""]",1948.96,{},19409,0,South America +2023-10-29,52616,1817,"[""Wireless Mouse"", ""Tablet""]",3524.78,{},46659,1,South America +2023-12-20,52617,1702,"[""Tablet"", ""Laptop""]",4797.3,{},88789,1,South America +2024-04-27,52618,3224,"[""Monitor"", ""Laptop""]",3509.56,"{""promo"": ""20%""}",162968,1,South America +2023-05-22,52619,388,"[""Monitor"", ""Tablet"", ""Headphones""]",2434.8,"{""promo"": ""8%""}",143449,1,North America +2024-09-21,52620,6588,"[""Headphones"", ""Keyboard"", ""Charger""]",3877.24,"{""promo"": ""18%""}",184907,0,Asia +2024-06-18,52621,4316,"[""Monitor"", ""Laptop""]",405.73,{},87885,1,North America +2024-07-29,52622,8429,"[""Monitor"", ""Wireless Mouse""]",4241.89,{},38985,1,South America +2024-06-30,52623,7877,"[""Wireless Mouse""]",2302.83,{},195745,1,Africa +2023-01-23,52624,3183,"[""Wireless Mouse"", ""Headphones""]",1917.35,{},131029,1,Europe +2024-04-26,52625,5472,"[""Tablet""]",783.69,"{""loyalty"": ""10%""}",64888,0,Europe +2024-01-10,52626,2843,"[""Charger"", ""Tablet""]",2340.54,{},19047,0,Europe +2024-01-20,52627,4564,"[""Phone"", ""Keyboard"", ""Laptop""]",2396.46,{},147931,1,Africa +2024-05-10,52628,2302,"[""Tablet""]",1521.58,"{""loyalty"": ""17%""}",166005,1,Europe +2023-06-13,52629,5112,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3420.53,{},143680,1,North America +2024-10-14,52630,3456,"[""Headphones"", ""Tablet""]",1888.38,{},166553,1,Asia +2023-01-21,52631,6075,"[""Charger"", ""Phone"", ""Monitor""]",1689.66,{},296569,0,North America +2024-05-18,52632,6602,"[""Phone"", ""Keyboard""]",3169.53,{},252994,0,Europe +2023-10-08,52633,4157,"[""Wireless Mouse""]",1705.54,{},127682,1,Africa +2023-12-18,52634,6117,"[""Keyboard"", ""Headphones"", ""Monitor""]",4671.47,{},173069,1,South America +2023-11-17,52635,9009,"[""Charger"", ""Monitor""]",4407.05,{},32099,1,North America +2024-07-09,52636,5709,"[""Laptop"", ""Keyboard""]",1140.54,{},182632,0,Europe +2023-05-13,52637,2495,"[""Phone"", ""Charger"", ""Wireless Mouse""]",654.29,{},200041,0,Europe +2023-04-07,52638,8493,"[""Charger"", ""Headphones"", ""Laptop""]",4718.4,{},128041,0,Asia +2024-11-23,52639,6381,"[""Keyboard"", ""Charger""]",1653.31,"{""loyalty"": ""9%""}",279309,0,Europe +2023-02-27,52640,7712,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",294.49,"{"""": ""27%""}",105464,1,Africa +2024-06-10,52641,6783,"[""Laptop"", ""Headphones""]",3939.74,{},142221,0,Europe +2023-04-10,52642,2187,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2570.57,"{""loyalty"": ""27%""}",51551,0,Asia +2023-05-25,52643,5921,"[""Keyboard"", ""Tablet""]",1556.03,{},240243,0,South America +2024-10-15,52644,1956,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",500.83,"{""loyalty"": ""8%""}",148850,1,Africa +2023-01-01,52645,8177,"[""Headphones""]",1643.35,"{""promo"": ""20%""}",247344,1,Africa +2023-10-26,52646,9238,"[""Monitor"", ""Headphones"", ""Charger""]",1434.56,{},46694,0,South America +2024-06-13,52647,5712,"[""Keyboard"", ""Charger"", ""Laptop""]",4399.15,"{"""": ""11%""}",196406,0,South America +2023-01-05,52648,7256,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",769.3,"{""loyalty"": ""8%""}",84614,1,Africa +2024-08-16,52649,1099,"[""Headphones"", ""Laptop""]",213.66,{},225227,0,Asia +2024-12-06,52650,5957,"[""Charger""]",2548.24,{},271259,1,Asia +2023-12-13,52651,6792,"[""Laptop"", ""Headphones""]",2009.48,"{""seasonal"": ""27%""}",212509,1,South America +2023-05-01,52652,4611,"[""Tablet""]",3811.22,"{""loyalty"": ""29%""}",11703,0,South America +2024-10-01,52653,7975,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2291.8,{},26587,1,North America +2023-07-18,52654,520,"[""Laptop""]",1033.91,"{"""": ""20%""}",32857,0,Asia +2024-12-03,52655,6315,"[""Wireless Mouse"", ""Headphones""]",4676.73,{},21121,0,Europe +2023-11-24,52656,6352,"[""Laptop""]",925.51,{},12847,1,North America +2024-01-03,52657,5064,"[""Headphones"", ""Keyboard""]",247.56,{},52251,1,South America +2023-10-29,52658,802,"[""Phone"", ""Charger""]",3238.63,{},5311,0,South America +2024-11-01,52659,5138,"[""Charger"", ""Headphones""]",3126.27,"{""seasonal"": ""9%""}",240713,1,North America +2023-10-13,52660,4813,"[""Tablet"", ""Keyboard"", ""Phone""]",1428.35,{},297408,1,Africa +2023-11-14,52661,2195,"[""Tablet"", ""Keyboard""]",2272.18,"{""promo"": ""9%""}",130362,1,Europe +2024-01-17,52662,7531,"[""Tablet"", ""Charger"", ""Keyboard""]",3919.13,{},79523,1,Europe +2024-03-10,52663,4943,"[""Monitor"", ""Laptop"", ""Headphones""]",3389.77,"{""seasonal"": ""16%""}",23246,1,North America +2024-09-13,52664,3309,"[""Laptop"", ""Phone""]",178.94,"{""seasonal"": ""25%""}",279862,1,Asia +2023-10-06,52665,2152,"[""Monitor""]",1074.45,"{""loyalty"": ""25%""}",67346,0,Asia +2023-03-27,52666,7092,"[""Monitor""]",827.77,"{""seasonal"": ""18%""}",211591,1,Europe +2023-04-22,52667,1370,"[""Phone""]",3789.82,"{""seasonal"": ""30%""}",206918,1,Africa +2023-09-18,52668,3901,"[""Laptop"", ""Headphones"", ""Charger""]",2455.5,{},113033,0,Africa +2023-03-25,52669,821,"[""Headphones"", ""Laptop"", ""Phone""]",4406.47,"{""loyalty"": ""22%""}",100904,1,North America +2023-07-29,52670,2632,"[""Monitor""]",3034.09,{},157396,0,Europe +2023-11-12,52671,6919,"[""Tablet"", ""Headphones"", ""Keyboard""]",1360.96,"{""seasonal"": ""10%""}",249820,0,North America +2023-07-20,52672,2288,"[""Laptop"", ""Charger"", ""Headphones""]",2828.2,"{"""": ""29%""}",197204,1,South America +2023-11-04,52673,6256,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2242.65,"{"""": ""20%""}",161099,0,Europe +2023-09-15,52674,3340,"[""Charger""]",406.84,"{""loyalty"": ""27%""}",189087,1,Asia +2023-07-31,52675,1625,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",740.52,"{""seasonal"": ""15%""}",257378,0,Europe +2024-01-04,52676,3423,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3055.75,{},8946,1,Africa +2023-05-03,52677,2710,"[""Charger"", ""Wireless Mouse""]",3488.27,{},154756,1,Europe +2024-12-15,52678,266,"[""Phone"", ""Monitor"", ""Laptop""]",545.37,{},271673,1,South America +2024-02-07,52679,5190,"[""Tablet"", ""Phone""]",2299.59,{},173319,1,South America +2024-02-14,52680,2603,"[""Headphones"", ""Laptop"", ""Tablet""]",1087.98,"{""seasonal"": ""22%""}",154218,1,Europe +2023-11-11,52681,1565,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",60.73,{},100780,1,Africa +2023-03-28,52682,6928,"[""Keyboard"", ""Tablet"", ""Laptop""]",690.46,{},200382,0,Europe +2023-09-23,52683,4694,"[""Headphones""]",91.38,"{""seasonal"": ""25%""}",215716,1,Europe +2024-08-24,52684,4594,"[""Keyboard""]",3550.96,"{""promo"": ""6%""}",261406,0,Africa +2023-04-27,52685,8430,"[""Monitor""]",4698.83,{},156558,1,North America +2023-07-27,52686,1499,"[""Phone""]",3815.44,"{"""": ""12%""}",166516,0,North America +2024-07-28,52687,5532,"[""Laptop"", ""Monitor"", ""Headphones""]",1808.56,{},199455,0,Asia +2024-09-28,52688,1082,"[""Phone"", ""Tablet"", ""Keyboard""]",2279.96,"{"""": ""20%""}",33983,1,North America +2024-08-12,52689,3328,"[""Charger""]",3387.11,"{""seasonal"": ""26%""}",241299,0,Europe +2023-03-04,52690,987,"[""Charger"", ""Laptop""]",2669.49,{},288218,0,Africa +2024-04-13,52691,1525,"[""Tablet"", ""Phone"", ""Monitor""]",4934.57,{},286014,1,Africa +2024-01-12,52692,8331,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3452.0,"{"""": ""21%""}",164168,0,South America +2024-04-10,52693,5248,"[""Phone"", ""Charger""]",4776.22,"{"""": ""11%""}",249373,0,Asia +2024-08-21,52694,1552,"[""Monitor""]",3879.25,"{"""": ""11%""}",14209,1,North America +2024-10-24,52695,9459,"[""Laptop"", ""Keyboard"", ""Monitor""]",2212.02,{},108087,1,Asia +2024-08-17,52696,9201,"[""Charger""]",2033.76,"{""seasonal"": ""28%""}",233720,0,South America +2024-09-10,52697,1345,"[""Charger""]",2793.26,"{""loyalty"": ""27%""}",87714,1,Africa +2023-12-10,52698,8870,"[""Charger"", ""Tablet""]",3238.38,"{""promo"": ""10%""}",177428,0,Africa +2023-12-12,52699,4302,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1741.14,{},119044,0,Africa +2024-04-22,52700,6891,"[""Phone"", ""Keyboard""]",4960.34,{},155166,1,Asia +2023-11-16,52701,6187,"[""Tablet""]",2881.06,{},65548,1,Asia +2023-08-29,52702,6986,"[""Phone"", ""Monitor""]",1826.48,{},170728,0,North America +2023-02-04,52703,494,"[""Tablet"", ""Keyboard""]",3345.52,"{"""": ""5%""}",84788,1,North America +2023-11-02,52704,2857,"[""Tablet""]",2444.99,"{""seasonal"": ""11%""}",143235,0,South America +2023-01-21,52705,1780,"[""Monitor""]",4213.49,"{""promo"": ""17%""}",17983,1,North America +2024-04-12,52706,8769,"[""Laptop""]",471.14,{},155473,0,Europe +2023-10-14,52707,1052,"[""Laptop""]",2768.49,{},99312,1,Asia +2024-03-21,52708,6128,"[""Headphones"", ""Monitor""]",292.97,"{""promo"": ""14%""}",48334,1,Asia +2023-01-26,52709,8006,"[""Charger""]",647.2,"{""loyalty"": ""20%""}",2481,0,North America +2023-10-02,52710,6948,"[""Phone"", ""Monitor"", ""Charger""]",2227.23,"{""promo"": ""11%""}",135728,1,Asia +2024-11-12,52711,1878,"[""Phone"", ""Charger""]",3756.12,{},130082,0,Europe +2023-01-14,52712,4900,"[""Laptop""]",1473.94,{},107904,1,North America +2024-12-13,52713,9229,"[""Tablet""]",747.42,{},155604,0,South America +2023-08-08,52714,3730,"[""Wireless Mouse""]",1342.78,"{""promo"": ""19%""}",174939,0,Asia +2023-04-25,52715,7499,"[""Laptop"", ""Headphones""]",138.04,"{"""": ""18%""}",240702,0,Europe +2024-01-29,52716,8468,"[""Laptop"", ""Charger""]",4148.69,"{"""": ""23%""}",93348,1,Asia +2024-05-22,52717,6652,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1487.24,"{""promo"": ""21%""}",69102,0,Asia +2023-09-05,52718,1999,"[""Tablet"", ""Laptop""]",4348.09,"{""promo"": ""11%""}",7702,0,South America +2023-08-19,52719,3947,"[""Headphones""]",3149.25,"{""promo"": ""16%""}",98022,0,Asia +2023-03-14,52720,9119,"[""Wireless Mouse""]",2620.27,"{""loyalty"": ""19%""}",111802,0,Africa +2024-05-20,52721,4378,"[""Keyboard""]",567.31,{},29853,0,Asia +2023-05-13,52722,1346,"[""Charger""]",189.46,{},198415,0,South America +2024-07-29,52723,4159,"[""Headphones"", ""Charger"", ""Monitor""]",1077.98,"{""seasonal"": ""24%""}",250467,0,South America +2023-03-06,52724,2790,"[""Wireless Mouse"", ""Laptop""]",1432.94,"{"""": ""27%""}",252715,1,North America +2023-12-22,52725,837,"[""Tablet"", ""Phone""]",2045.06,{},84596,0,North America +2024-05-11,52726,5856,"[""Charger"", ""Tablet""]",968.51,"{""seasonal"": ""29%""}",34602,0,Africa +2024-06-01,52727,1326,"[""Monitor""]",2633.3,"{"""": ""25%""}",101617,1,Europe +2024-10-05,52728,8283,"[""Keyboard"", ""Laptop""]",3167.75,{},38110,0,Europe +2024-09-14,52729,5492,"[""Wireless Mouse""]",4996.0,"{""seasonal"": ""10%""}",79853,1,South America +2023-09-09,52730,8518,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",968.61,{},77459,0,South America +2024-07-29,52731,6809,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4437.38,{},80321,0,Asia +2024-06-25,52732,7994,"[""Phone""]",1274.52,{},184048,0,North America +2024-06-09,52733,6033,"[""Headphones"", ""Laptop"", ""Tablet""]",2365.99,"{"""": ""14%""}",217282,0,South America +2024-08-04,52734,8595,"[""Tablet"", ""Laptop""]",2347.11,{},163268,0,Africa +2023-10-16,52735,9502,"[""Tablet"", ""Laptop""]",2881.03,"{""seasonal"": ""29%""}",281221,1,Africa +2023-06-09,52736,5112,"[""Headphones"", ""Phone"", ""Laptop""]",4979.47,{},40248,1,Europe +2024-12-06,52737,2603,"[""Monitor""]",809.33,{},295690,0,South America +2024-01-05,52738,2084,"[""Keyboard"", ""Monitor""]",4200.19,{},209437,0,Asia +2023-10-02,52739,8693,"[""Charger"", ""Laptop""]",338.25,{},38414,1,Asia +2023-08-28,52740,9315,"[""Tablet"", ""Keyboard""]",2258.56,{},15193,1,Europe +2023-06-24,52741,6759,"[""Keyboard""]",1557.29,{},138020,0,North America +2024-01-30,52742,5969,"[""Keyboard"", ""Phone"", ""Monitor""]",2678.11,"{""seasonal"": ""25%""}",197645,1,South America +2023-02-17,52743,2286,"[""Wireless Mouse""]",3809.63,{},164144,1,North America +2024-04-24,52744,3047,"[""Wireless Mouse"", ""Laptop""]",4358.74,"{"""": ""29%""}",294056,0,South America +2024-11-23,52745,3456,"[""Charger"", ""Laptop""]",4248.92,"{""promo"": ""22%""}",246369,1,Africa +2024-08-02,52746,8146,"[""Laptop"", ""Keyboard""]",2452.06,{},184546,0,North America +2023-01-16,52747,5173,"[""Laptop"", ""Keyboard""]",3991.97,{},47134,1,Africa +2023-01-01,52748,263,"[""Phone""]",1939.03,{},269274,0,Africa +2024-01-02,52749,5505,"[""Laptop""]",4934.18,{},35074,1,Africa +2024-10-03,52750,207,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",749.04,{},194047,1,Africa +2024-01-23,52751,3681,"[""Headphones""]",4860.03,{},5728,1,Europe +2023-07-16,52752,189,"[""Charger""]",1097.42,"{""loyalty"": ""14%""}",227399,0,Europe +2023-04-12,52753,5381,"[""Phone"", ""Monitor""]",254.8,"{"""": ""29%""}",299530,0,South America +2024-11-23,52754,8729,"[""Wireless Mouse"", ""Headphones""]",491.72,{},285361,1,Europe +2023-08-25,52755,2800,"[""Headphones"", ""Laptop""]",3595.74,"{""seasonal"": ""18%""}",196265,1,Europe +2023-03-04,52756,2654,"[""Laptop"", ""Tablet"", ""Keyboard""]",2469.36,"{""promo"": ""18%""}",217944,1,North America +2023-06-04,52757,5058,"[""Phone""]",4840.7,"{""promo"": ""9%""}",277682,1,Asia +2023-01-18,52758,6597,"[""Charger""]",4260.43,"{"""": ""17%""}",215846,0,Africa +2023-02-14,52759,8417,"[""Headphones"", ""Charger"", ""Monitor""]",3349.84,"{""promo"": ""8%""}",129555,1,Asia +2023-04-22,52760,5103,"[""Phone"", ""Headphones"", ""Monitor""]",2737.18,{},186182,0,South America +2023-03-05,52761,4676,"[""Charger"", ""Laptop"", ""Monitor""]",2049.04,{},71446,0,North America +2024-05-22,52762,6052,"[""Keyboard""]",3963.1,"{""loyalty"": ""18%""}",173221,1,Europe +2024-10-11,52763,2901,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3287.08,{},285267,1,North America +2023-08-01,52764,3473,"[""Phone"", ""Monitor"", ""Charger""]",3899.05,"{""promo"": ""8%""}",9935,0,Europe +2023-08-15,52765,9885,"[""Keyboard"", ""Tablet"", ""Laptop""]",3594.78,{},149272,0,South America +2023-11-05,52766,8434,"[""Charger"", ""Laptop"", ""Tablet""]",3373.49,"{""promo"": ""15%""}",299625,1,Europe +2023-04-10,52767,1343,"[""Wireless Mouse""]",4068.85,{},248717,0,Africa +2023-08-22,52768,895,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1449.79,{},129715,0,Asia +2024-11-12,52769,7729,"[""Monitor""]",1503.02,{},298699,0,Europe +2023-08-12,52770,703,"[""Charger"", ""Keyboard"", ""Headphones""]",3332.34,{},278881,1,Europe +2024-02-13,52771,2814,"[""Headphones"", ""Phone""]",2814.67,"{""promo"": ""14%""}",105452,1,Asia +2024-08-22,52772,6964,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1230.31,"{""loyalty"": ""26%""}",238266,1,Europe +2024-11-11,52773,5005,"[""Charger"", ""Headphones"", ""Monitor""]",2113.18,"{""loyalty"": ""20%""}",271684,1,Europe +2023-01-31,52774,1892,"[""Keyboard""]",1996.74,{},277576,0,South America +2023-01-13,52775,5223,"[""Phone"", ""Keyboard""]",3611.3,{},52492,1,Asia +2023-11-22,52776,6640,"[""Charger""]",2667.33,"{"""": ""8%""}",246457,1,Asia +2024-09-10,52777,3095,"[""Charger""]",4616.54,{},124881,1,Europe +2024-12-16,52778,7423,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1909.35,"{"""": ""14%""}",172030,1,North America +2023-06-09,52779,6364,"[""Tablet""]",2217.49,"{""loyalty"": ""7%""}",244381,1,South America +2024-05-24,52780,6461,"[""Headphones"", ""Charger""]",2433.55,{},255069,0,Europe +2023-03-14,52781,91,"[""Keyboard""]",2096.49,"{""promo"": ""22%""}",167238,1,South America +2024-08-01,52782,9030,"[""Tablet"", ""Laptop""]",3619.84,{},185696,1,Europe +2023-08-25,52783,8687,"[""Tablet"", ""Monitor"", ""Phone""]",1482.96,{},38575,0,Africa +2023-09-09,52784,3063,"[""Headphones""]",4217.53,{},5935,1,North America +2024-09-24,52785,4052,"[""Monitor"", ""Tablet"", ""Keyboard""]",4544.96,{},28947,1,Asia +2023-12-28,52786,5988,"[""Phone"", ""Keyboard"", ""Charger""]",3483.19,{},205079,1,Asia +2023-12-02,52787,1933,"[""Keyboard""]",2944.64,{},159219,1,Europe +2024-09-17,52788,8374,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4315.64,{},119787,1,Africa +2024-02-28,52789,3880,"[""Phone"", ""Keyboard"", ""Charger""]",4456.4,{},93256,1,Asia +2024-04-13,52790,887,"[""Phone""]",4405.19,"{""seasonal"": ""24%""}",271976,1,North America +2023-11-13,52791,7107,"[""Headphones"", ""Tablet"", ""Monitor""]",4389.03,{},219726,0,North America +2024-04-18,52792,8754,"[""Phone"", ""Tablet""]",2034.94,{},24648,1,Europe +2024-10-17,52793,9659,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1279.96,"{""promo"": ""5%""}",272457,0,Europe +2024-09-02,52794,1070,"[""Phone"", ""Laptop""]",4089.12,"{""seasonal"": ""23%""}",261789,0,Europe +2024-05-09,52795,2198,"[""Phone""]",2572.75,{},53360,0,South America +2023-06-26,52796,8687,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",72.08,"{"""": ""28%""}",130260,1,Europe +2024-11-10,52797,4421,"[""Keyboard""]",786.49,{},194432,0,Europe +2023-02-22,52798,312,"[""Charger"", ""Headphones""]",2431.0,{},11728,0,South America +2023-01-05,52799,1874,"[""Phone"", ""Monitor"", ""Keyboard""]",666.0,"{"""": ""29%""}",99132,1,Europe +2024-06-05,52800,6811,"[""Phone"", ""Headphones"", ""Monitor""]",3304.62,{},104919,1,North America +2023-07-16,52801,3809,"[""Keyboard""]",2128.37,{},20819,0,North America +2023-11-14,52802,6137,"[""Charger""]",1242.01,"{""seasonal"": ""6%""}",36588,0,North America +2023-07-13,52803,1612,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2382.1,"{"""": ""30%""}",138338,1,Africa +2024-04-14,52804,5947,"[""Tablet"", ""Headphones"", ""Charger""]",4663.76,"{""seasonal"": ""24%""}",247206,0,Asia +2023-01-14,52805,6979,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4023.41,{},224402,0,North America +2023-06-02,52806,8374,"[""Tablet"", ""Wireless Mouse""]",4488.8,{},241533,1,Europe +2023-07-15,52807,7475,"[""Phone"", ""Wireless Mouse""]",134.02,{},73802,0,South America +2024-04-25,52808,6005,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3495.32,"{""loyalty"": ""24%""}",261606,1,Europe +2024-09-28,52809,7578,"[""Tablet"", ""Charger"", ""Headphones""]",1972.59,{},183375,0,South America +2024-04-20,52810,2581,"[""Keyboard"", ""Charger""]",2573.58,"{""loyalty"": ""18%""}",254492,0,Africa +2023-06-25,52811,2899,"[""Keyboard""]",4979.96,{},136057,1,Africa +2024-01-17,52812,6458,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1996.71,{},124736,0,Africa +2024-01-15,52813,7479,"[""Phone"", ""Keyboard"", ""Headphones""]",1364.47,{},6533,0,South America +2023-01-30,52814,7598,"[""Laptop""]",2578.66,{},38611,0,Africa +2023-01-07,52815,4365,"[""Headphones""]",1292.36,{},253534,0,South America +2024-11-04,52816,6813,"[""Keyboard"", ""Headphones"", ""Phone""]",4656.64,"{""seasonal"": ""13%""}",31917,0,Asia +2023-09-03,52817,436,"[""Keyboard"", ""Charger"", ""Phone""]",2232.95,"{"""": ""7%""}",132852,1,Europe +2023-08-08,52818,2688,"[""Laptop"", ""Charger""]",704.06,{},195376,1,Asia +2024-05-23,52819,1695,"[""Phone"", ""Monitor"", ""Laptop""]",1265.02,{},167383,0,North America +2024-05-01,52820,1323,"[""Charger"", ""Keyboard""]",4259.56,{},22336,1,Asia +2024-11-23,52821,2048,"[""Laptop""]",462.99,"{""seasonal"": ""10%""}",23279,1,Asia +2023-07-17,52822,5405,"[""Laptop"", ""Charger"", ""Monitor""]",795.12,"{""loyalty"": ""17%""}",211510,1,North America +2024-10-07,52823,1938,"[""Laptop""]",4915.81,"{""seasonal"": ""17%""}",202031,1,Asia +2023-05-16,52824,1274,"[""Laptop""]",420.32,{},119652,0,Asia +2024-08-01,52825,2799,"[""Tablet"", ""Keyboard""]",1718.4,{},252863,1,Africa +2023-07-07,52826,2466,"[""Wireless Mouse"", ""Laptop""]",4633.91,"{""seasonal"": ""27%""}",173403,1,Europe +2024-04-18,52827,7739,"[""Tablet"", ""Headphones"", ""Monitor""]",1380.24,"{""seasonal"": ""26%""}",122529,0,North America +2023-10-13,52828,928,"[""Keyboard"", ""Phone""]",1510.94,{},267235,1,Asia +2023-07-15,52829,8884,"[""Tablet"", ""Phone""]",1109.63,"{""loyalty"": ""27%""}",173869,1,Africa +2024-04-13,52830,972,"[""Monitor"", ""Laptop""]",1957.03,"{"""": ""19%""}",164309,0,South America +2023-07-09,52831,5558,"[""Laptop"", ""Charger""]",3281.22,"{""loyalty"": ""23%""}",243488,0,Europe +2023-12-17,52832,5942,"[""Tablet"", ""Wireless Mouse""]",4157.21,"{""promo"": ""5%""}",57996,1,South America +2023-01-18,52833,5893,"[""Tablet"", ""Wireless Mouse""]",4209.33,"{""promo"": ""14%""}",186351,0,Africa +2024-11-02,52834,3768,"[""Tablet"", ""Laptop"", ""Monitor""]",3328.84,"{""loyalty"": ""7%""}",256507,1,Europe +2023-08-01,52835,5327,"[""Phone"", ""Headphones""]",3020.86,"{"""": ""22%""}",221446,0,Europe +2024-07-04,52836,2985,"[""Monitor""]",2898.36,{},211020,1,North America +2023-05-12,52837,4043,"[""Keyboard""]",2565.89,{},95368,1,South America +2023-09-09,52838,101,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",989.12,{},49210,1,Africa +2023-01-16,52839,747,"[""Headphones""]",1723.45,{},238026,1,North America +2024-02-24,52840,7178,"[""Wireless Mouse""]",959.99,"{"""": ""30%""}",139206,1,Africa +2023-04-11,52841,9112,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",169.81,{},240743,0,Europe +2023-02-02,52842,5051,"[""Charger""]",4739.08,"{""loyalty"": ""15%""}",213555,1,Europe +2024-08-09,52843,8639,"[""Laptop"", ""Tablet""]",2143.84,{},245081,1,Asia +2023-10-23,52844,5238,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2191.99,{},186397,1,Asia +2023-10-07,52845,744,"[""Monitor""]",1210.95,"{""seasonal"": ""15%""}",71014,0,North America +2024-09-27,52846,1904,"[""Keyboard""]",983.62,{},213479,0,North America +2023-01-02,52847,8308,"[""Monitor""]",3409.6,{},275247,1,South America +2024-02-18,52848,4522,"[""Monitor"", ""Phone"", ""Keyboard""]",4515.14,{},84613,1,North America +2024-11-17,52849,7010,"[""Monitor""]",3414.62,"{""promo"": ""16%""}",130008,1,North America +2024-02-12,52850,7281,"[""Monitor""]",4503.07,{},53324,0,Asia +2024-05-30,52851,335,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4017.42,"{""promo"": ""20%""}",10662,1,Europe +2024-01-02,52852,2061,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1351.34,{},49241,0,North America +2024-11-12,52853,358,"[""Headphones"", ""Laptop"", ""Phone""]",2625.94,{},63947,0,Africa +2023-11-24,52854,7182,"[""Keyboard"", ""Headphones""]",1988.53,{},291519,0,North America +2023-11-11,52855,1933,"[""Tablet"", ""Monitor""]",377.27,{},182766,0,Africa +2023-07-03,52856,1547,"[""Phone""]",1699.71,"{"""": ""18%""}",106562,1,Asia +2024-10-20,52857,9131,"[""Phone"", ""Headphones"", ""Keyboard""]",4957.96,"{""promo"": ""28%""}",18904,0,Africa +2023-06-24,52858,6085,"[""Monitor""]",4376.99,{},230950,0,South America +2023-05-04,52859,721,"[""Phone"", ""Wireless Mouse""]",2744.0,"{""loyalty"": ""29%""}",98737,1,Europe +2023-06-19,52860,175,"[""Laptop""]",3386.9,{},249987,0,North America +2024-02-09,52861,7153,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3697.1,"{"""": ""8%""}",57978,0,North America +2024-03-26,52862,2176,"[""Monitor"", ""Phone"", ""Headphones""]",4606.22,"{""loyalty"": ""24%""}",163503,0,North America +2023-02-05,52863,4969,"[""Headphones"", ""Wireless Mouse""]",1142.57,"{"""": ""12%""}",287036,1,South America +2023-03-27,52864,4663,"[""Tablet"", ""Keyboard"", ""Headphones""]",1249.99,"{"""": ""18%""}",153428,1,Africa +2023-01-18,52865,5667,"[""Charger"", ""Tablet"", ""Laptop""]",1300.53,{},30065,1,Europe +2023-05-14,52866,8917,"[""Keyboard"", ""Tablet"", ""Laptop""]",838.45,{},97989,1,Asia +2023-11-03,52867,2532,"[""Headphones"", ""Laptop"", ""Charger""]",4051.26,{},217439,1,South America +2024-05-21,52868,8388,"[""Phone"", ""Keyboard""]",3633.93,"{""seasonal"": ""13%""}",256890,0,Africa +2023-12-19,52869,5409,"[""Wireless Mouse""]",2135.93,"{""loyalty"": ""27%""}",77671,1,Africa +2024-09-21,52870,8891,"[""Laptop"", ""Keyboard"", ""Charger""]",1678.7,{},34568,1,Asia +2023-01-05,52871,4347,"[""Laptop""]",999.52,"{""promo"": ""27%""}",269269,1,Africa +2023-12-05,52872,835,"[""Phone"", ""Charger"", ""Monitor""]",171.07,"{""promo"": ""21%""}",171133,0,Europe +2024-08-12,52873,9072,"[""Monitor"", ""Laptop""]",3394.24,{},294782,1,Europe +2024-10-29,52874,8040,"[""Wireless Mouse"", ""Phone""]",2309.5,"{""seasonal"": ""8%""}",40951,0,Asia +2024-02-03,52875,820,"[""Headphones"", ""Phone""]",3843.13,"{""promo"": ""27%""}",214222,0,Africa +2024-05-01,52876,688,"[""Headphones"", ""Tablet""]",85.89,"{"""": ""19%""}",190902,1,South America +2023-07-10,52877,6847,"[""Wireless Mouse""]",677.98,"{""loyalty"": ""10%""}",212107,0,Africa +2023-02-15,52878,252,"[""Keyboard""]",2737.95,{},141109,1,South America +2024-06-16,52879,359,"[""Phone"", ""Laptop""]",3493.0,{},64253,1,Europe +2023-02-06,52880,2679,"[""Monitor"", ""Keyboard""]",865.52,{},211118,0,North America +2023-12-31,52881,2371,"[""Tablet"", ""Phone"", ""Headphones""]",1065.72,"{""loyalty"": ""26%""}",263113,0,South America +2024-08-13,52882,7433,"[""Keyboard""]",3508.82,{},155345,0,Europe +2024-12-06,52883,7259,"[""Wireless Mouse"", ""Keyboard""]",3868.07,"{"""": ""9%""}",227187,1,North America +2023-10-19,52884,5974,"[""Phone"", ""Headphones""]",4104.84,{},82273,0,North America +2024-05-22,52885,3989,"[""Laptop""]",4384.86,"{"""": ""19%""}",181044,0,Africa +2024-07-07,52886,5990,"[""Headphones"", ""Keyboard""]",76.19,"{"""": ""26%""}",139555,0,South America +2024-09-02,52887,4994,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",147.17,"{""seasonal"": ""30%""}",27942,0,Asia +2024-08-11,52888,3433,"[""Keyboard"", ""Tablet"", ""Headphones""]",81.85,"{""loyalty"": ""20%""}",56593,1,Asia +2023-05-17,52889,4905,"[""Wireless Mouse"", ""Phone""]",4344.95,"{""seasonal"": ""7%""}",275030,1,Asia +2024-04-09,52890,597,"[""Laptop"", ""Keyboard"", ""Tablet""]",1148.69,"{""seasonal"": ""15%""}",164165,1,Europe +2024-08-17,52891,5530,"[""Headphones""]",2737.78,{},183327,0,Africa +2024-04-14,52892,838,"[""Keyboard""]",3695.22,"{"""": ""7%""}",110328,0,Europe +2024-04-16,52893,9871,"[""Keyboard""]",1470.37,{},193582,0,South America +2024-10-20,52894,704,"[""Wireless Mouse""]",3596.83,{},58716,1,North America +2023-09-03,52895,6778,"[""Tablet""]",4705.51,{},212520,1,Africa +2023-02-04,52896,9042,"[""Laptop""]",1633.6,"{""loyalty"": ""11%""}",166895,1,South America +2023-07-01,52897,1051,"[""Headphones""]",107.37,"{""loyalty"": ""13%""}",238938,1,Africa +2023-05-13,52898,9761,"[""Keyboard"", ""Tablet"", ""Headphones""]",1161.95,{},110793,0,Europe +2024-01-23,52899,5486,"[""Laptop"", ""Phone""]",2378.08,"{""seasonal"": ""7%""}",61907,0,North America +2024-05-16,52900,3843,"[""Tablet""]",4136.1,"{""promo"": ""29%""}",250634,1,Africa +2023-08-12,52901,4478,"[""Charger""]",2064.34,"{""seasonal"": ""22%""}",161258,1,South America +2023-02-03,52902,4939,"[""Keyboard"", ""Phone""]",2734.61,{},26517,1,Europe +2023-04-06,52903,5242,"[""Phone"", ""Keyboard""]",2004.83,{},164985,1,Asia +2023-02-18,52904,3293,"[""Phone"", ""Headphones""]",1641.78,"{"""": ""12%""}",266789,0,Asia +2024-12-08,52905,9431,"[""Charger"", ""Monitor""]",2463.91,"{""seasonal"": ""22%""}",122524,1,Europe +2024-06-30,52906,8008,"[""Wireless Mouse"", ""Laptop""]",3616.56,{},152329,0,Africa +2024-05-29,52907,1413,"[""Tablet"", ""Phone"", ""Laptop""]",4279.43,"{""promo"": ""14%""}",168298,1,South America +2024-05-05,52908,7588,"[""Headphones""]",4100.06,{},220074,1,South America +2023-06-19,52909,965,"[""Laptop""]",4316.44,"{"""": ""29%""}",26646,1,South America +2023-09-30,52910,5819,"[""Charger""]",3710.78,"{"""": ""14%""}",232373,1,North America +2023-05-14,52911,119,"[""Monitor"", ""Charger""]",2597.92,"{""loyalty"": ""27%""}",99907,0,North America +2024-12-04,52912,9187,"[""Keyboard"", ""Headphones"", ""Phone""]",1355.87,"{""promo"": ""25%""}",136204,0,South America +2024-10-15,52913,6253,"[""Headphones"", ""Charger""]",4919.24,{},49013,1,South America +2024-06-24,52914,8642,"[""Tablet"", ""Keyboard""]",268.79,{},136529,1,South America +2024-04-23,52915,1939,"[""Laptop""]",3275.03,{},16940,0,Asia +2024-03-29,52916,6582,"[""Headphones""]",923.57,"{""promo"": ""8%""}",17986,0,North America +2024-04-06,52917,5028,"[""Tablet"", ""Charger"", ""Keyboard""]",334.97,"{""loyalty"": ""22%""}",172090,1,South America +2023-07-05,52918,4979,"[""Keyboard"", ""Monitor"", ""Phone""]",2949.6,{},60276,1,South America +2024-04-23,52919,975,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1672.11,{},267107,1,Europe +2024-11-20,52920,6892,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2911.4,{},163020,1,South America +2023-07-17,52921,7837,"[""Keyboard"", ""Tablet"", ""Charger""]",3792.64,"{"""": ""12%""}",165303,1,Africa +2024-03-23,52922,9781,"[""Keyboard"", ""Monitor""]",78.13,"{""loyalty"": ""16%""}",124175,1,Africa +2023-07-24,52923,9306,"[""Monitor"", ""Laptop""]",2535.33,"{""loyalty"": ""20%""}",182618,0,North America +2024-11-22,52924,8006,"[""Headphones"", ""Laptop"", ""Keyboard""]",708.69,{},4072,1,Europe +2024-11-14,52925,1276,"[""Tablet"", ""Charger""]",2648.96,{},233830,1,North America +2024-09-19,52926,5762,"[""Keyboard""]",1294.6,"{""seasonal"": ""5%""}",283249,0,Africa +2024-08-15,52927,5955,"[""Charger"", ""Headphones"", ""Tablet""]",108.64,{},91420,1,South America +2024-09-10,52928,3594,"[""Tablet"", ""Laptop"", ""Monitor""]",1043.31,"{""promo"": ""13%""}",92444,1,North America +2023-05-26,52929,4163,"[""Monitor"", ""Keyboard""]",1553.51,"{""seasonal"": ""28%""}",136101,1,Europe +2024-11-21,52930,576,"[""Headphones"", ""Monitor""]",1481.73,"{""promo"": ""5%""}",137841,0,Africa +2023-03-17,52931,4377,"[""Charger"", ""Keyboard""]",502.42,"{""promo"": ""10%""}",165352,1,Asia +2023-12-10,52932,6895,"[""Tablet""]",279.72,"{""loyalty"": ""8%""}",196391,0,Europe +2023-12-23,52933,2945,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1057.49,{},93454,0,South America +2023-02-05,52934,7615,"[""Wireless Mouse""]",3730.11,{},238247,1,South America +2023-09-17,52935,6799,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3574.5,{},236558,0,North America +2023-07-21,52936,7530,"[""Headphones""]",1060.66,{},150368,1,Asia +2023-05-27,52937,8088,"[""Laptop"", ""Keyboard""]",1583.79,"{""loyalty"": ""17%""}",109933,0,Asia +2023-08-19,52938,6627,"[""Keyboard"", ""Phone"", ""Laptop""]",2623.98,{},243335,0,South America +2023-06-19,52939,3058,"[""Phone"", ""Laptop"", ""Charger""]",877.24,"{""loyalty"": ""23%""}",283423,1,Asia +2023-03-23,52940,40,"[""Phone""]",3410.18,{},268621,0,Europe +2024-07-12,52941,4956,"[""Charger"", ""Keyboard"", ""Monitor""]",4863.09,"{"""": ""20%""}",163409,0,North America +2024-12-01,52942,1236,"[""Charger"", ""Tablet""]",3973.67,{},32963,0,South America +2023-08-03,52943,8506,"[""Keyboard"", ""Headphones""]",2996.56,{},30147,0,Europe +2023-11-13,52944,6046,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1600.76,{},266323,0,South America +2024-10-20,52945,9887,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4836.04,"{"""": ""20%""}",188364,0,North America +2023-10-18,52946,8166,"[""Monitor""]",4288.7,{},114425,0,Africa +2024-11-24,52947,3194,"[""Keyboard"", ""Phone""]",1850.04,{},233459,1,Africa +2023-02-12,52948,8410,"[""Tablet"", ""Phone""]",4801.64,{},93257,1,Africa +2023-10-17,52949,301,"[""Wireless Mouse"", ""Laptop""]",3902.84,{},127492,1,South America +2023-03-15,52950,3221,"[""Tablet""]",3402.94,{},277200,0,Africa +2023-04-28,52951,6400,"[""Charger""]",915.2,{},95137,1,Africa +2024-06-28,52952,7587,"[""Headphones"", ""Phone"", ""Laptop""]",3878.32,{},139721,0,Africa +2024-06-20,52953,2266,"[""Charger""]",1308.87,"{""loyalty"": ""29%""}",156445,1,South America +2024-10-16,52954,7837,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2566.84,"{"""": ""20%""}",111861,1,North America +2023-05-01,52955,9951,"[""Monitor""]",786.74,{},100546,0,Europe +2024-12-18,52956,9785,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2979.13,{},47875,0,Africa +2024-08-28,52957,1823,"[""Wireless Mouse"", ""Tablet""]",208.07,{},266954,1,Europe +2024-10-16,52958,2706,"[""Headphones"", ""Wireless Mouse""]",385.93,"{""promo"": ""5%""}",295761,0,Africa +2024-08-26,52959,7117,"[""Keyboard"", ""Laptop""]",2736.93,"{""seasonal"": ""12%""}",167932,0,South America +2024-10-30,52960,7385,"[""Tablet"", ""Charger""]",569.77,"{""seasonal"": ""13%""}",173095,0,Africa +2023-06-17,52961,3424,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3279.19,"{""loyalty"": ""7%""}",174338,0,Africa +2024-06-14,52962,4230,"[""Laptop"", ""Wireless Mouse""]",2060.22,{},46549,0,Africa +2024-10-30,52963,6809,"[""Charger"", ""Phone"", ""Keyboard""]",2985.51,{},171345,1,Africa +2023-02-25,52964,5045,"[""Monitor""]",2274.31,{},157404,1,Asia +2023-02-22,52965,3797,"[""Wireless Mouse""]",2176.6,{},223797,1,Africa +2024-08-04,52966,5063,"[""Headphones"", ""Tablet"", ""Laptop""]",3978.43,"{"""": ""27%""}",11919,1,Asia +2023-06-27,52967,9898,"[""Phone""]",3206.47,{},113682,1,Europe +2023-10-20,52968,6202,"[""Laptop"", ""Headphones""]",1050.32,{},26751,0,North America +2024-12-11,52969,2967,"[""Keyboard"", ""Tablet"", ""Phone""]",1567.54,{},183710,0,South America +2023-06-03,52970,9614,"[""Monitor""]",2003.26,"{""loyalty"": ""24%""}",2501,0,North America +2024-08-23,52971,1940,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2230.03,"{""loyalty"": ""26%""}",90600,1,Africa +2024-09-29,52972,2838,"[""Monitor"", ""Phone""]",1452.58,{},78250,1,South America +2023-11-24,52973,3859,"[""Phone""]",346.34,"{""seasonal"": ""15%""}",225215,0,Africa +2023-01-07,52974,97,"[""Laptop"", ""Wireless Mouse""]",3648.23,{},74242,1,Asia +2023-12-16,52975,7659,"[""Laptop"", ""Keyboard""]",1388.0,"{""seasonal"": ""9%""}",164260,0,North America +2023-02-07,52976,7950,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1660.35,"{""promo"": ""18%""}",28147,0,South America +2024-12-24,52977,139,"[""Monitor"", ""Tablet""]",1289.17,{},106254,1,South America +2024-11-19,52978,7039,"[""Monitor""]",2557.66,{},247808,1,North America +2024-04-25,52979,7030,"[""Tablet""]",311.22,{},51750,0,Africa +2023-03-27,52980,5807,"[""Headphones"", ""Monitor"", ""Charger""]",2673.44,"{""seasonal"": ""28%""}",86454,1,Europe +2023-01-29,52981,942,"[""Phone"", ""Monitor"", ""Laptop""]",3257.43,"{""loyalty"": ""6%""}",287663,1,South America +2024-11-14,52982,9602,"[""Charger""]",1798.94,{},136433,0,South America +2024-04-11,52983,8347,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1292.97,{},198605,1,Africa +2023-07-03,52984,5813,"[""Laptop"", ""Headphones"", ""Monitor""]",3353.1,{},140286,0,North America +2023-03-11,52985,5523,"[""Keyboard"", ""Tablet""]",722.05,"{""promo"": ""19%""}",64369,0,Africa +2023-09-20,52986,287,"[""Monitor"", ""Laptop"", ""Charger""]",3321.75,{},99062,1,Africa +2024-11-10,52987,632,"[""Wireless Mouse""]",407.57,"{""promo"": ""27%""}",63327,0,South America +2023-05-17,52988,1081,"[""Wireless Mouse""]",922.86,"{""promo"": ""11%""}",116333,1,South America +2023-11-20,52989,34,"[""Tablet"", ""Headphones""]",3310.85,{},186676,1,South America +2024-01-23,52990,1603,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3306.12,{},60305,0,North America +2024-01-30,52991,2829,"[""Keyboard"", ""Wireless Mouse""]",4116.78,{},247007,1,Europe +2024-08-10,52992,5137,"[""Charger"", ""Keyboard""]",4244.24,{},273965,1,Africa +2023-08-07,52993,7936,"[""Wireless Mouse""]",964.48,{},188949,0,Europe +2024-09-30,52994,7366,"[""Keyboard"", ""Charger""]",4443.9,{},201075,1,South America +2024-12-09,52995,9386,"[""Laptop""]",3693.83,{},142427,1,Asia +2024-06-10,52996,1667,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3032.79,{},298375,1,South America +2023-10-06,52997,6911,"[""Laptop"", ""Wireless Mouse""]",2370.96,{},130308,0,Europe +2023-04-06,52998,9995,"[""Wireless Mouse""]",1987.06,{},266428,1,Asia +2024-12-14,52999,4650,"[""Keyboard""]",4753.24,"{""seasonal"": ""17%""}",281646,1,Africa +2024-10-18,53000,6901,"[""Wireless Mouse"", ""Charger""]",1629.01,"{""promo"": ""12%""}",209615,0,South America +2023-08-29,53001,5356,"[""Tablet"", ""Wireless Mouse""]",4313.09,{},8952,0,Africa +2024-01-31,53002,714,"[""Tablet"", ""Wireless Mouse""]",4700.48,{},235064,1,Asia +2024-05-07,53003,5061,"[""Phone"", ""Headphones""]",3459.92,"{""promo"": ""16%""}",275120,1,North America +2023-10-14,53004,7431,"[""Headphones""]",4924.7,"{""seasonal"": ""17%""}",240657,1,Africa +2023-07-30,53005,1891,"[""Phone""]",3101.42,{},128967,0,Europe +2023-03-01,53006,5859,"[""Keyboard"", ""Phone""]",932.89,{},261151,0,South America +2024-05-08,53007,3333,"[""Monitor"", ""Keyboard""]",998.34,{},144879,1,Africa +2023-08-10,53008,9795,"[""Charger"", ""Laptop"", ""Phone""]",4118.13,"{""seasonal"": ""12%""}",63480,0,Asia +2024-03-07,53009,8078,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2418.41,"{""seasonal"": ""6%""}",81773,0,South America +2023-11-01,53010,5456,"[""Charger""]",2945.23,{},58799,1,South America +2023-10-24,53011,1748,"[""Phone"", ""Headphones"", ""Keyboard""]",4636.96,{},160057,1,Europe +2024-12-18,53012,2863,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",969.08,{},51019,1,Europe +2024-07-10,53013,3366,"[""Phone"", ""Charger"", ""Keyboard""]",2354.26,"{""loyalty"": ""30%""}",298288,1,Asia +2024-05-01,53014,4142,"[""Laptop""]",455.45,{},100686,1,Africa +2024-02-26,53015,6423,"[""Tablet"", ""Headphones"", ""Phone""]",4392.3,"{""loyalty"": ""29%""}",266320,0,Africa +2023-05-06,53016,3429,"[""Monitor""]",1627.46,"{""promo"": ""23%""}",248141,1,Europe +2023-04-01,53017,4972,"[""Tablet""]",481.65,"{""seasonal"": ""12%""}",218148,0,South America +2023-11-30,53018,2517,"[""Laptop"", ""Tablet""]",4407.11,"{""loyalty"": ""8%""}",43967,0,Asia +2024-12-29,53019,531,"[""Laptop"", ""Keyboard""]",4263.83,"{""promo"": ""14%""}",162835,1,South America +2024-04-16,53020,8987,"[""Monitor""]",3338.24,{},187942,0,North America +2023-06-20,53021,9588,"[""Laptop""]",285.67,{},259319,1,North America +2023-02-22,53022,9814,"[""Headphones"", ""Monitor"", ""Charger""]",4527.5,"{""promo"": ""25%""}",181261,1,South America +2024-06-02,53023,4475,"[""Monitor"", ""Keyboard""]",3422.96,"{""promo"": ""27%""}",56975,0,South America +2024-09-15,53024,8421,"[""Charger"", ""Wireless Mouse""]",138.96,"{""seasonal"": ""18%""}",237547,1,Europe +2023-01-04,53025,9360,"[""Tablet"", ""Phone""]",621.43,"{"""": ""19%""}",114164,1,Asia +2024-10-18,53026,7009,"[""Charger"", ""Tablet""]",2638.92,{},249754,0,North America +2023-10-20,53027,4914,"[""Headphones"", ""Tablet""]",1099.04,"{""loyalty"": ""16%""}",283083,0,North America +2023-03-30,53028,1112,"[""Wireless Mouse"", ""Headphones""]",1330.02,"{""loyalty"": ""6%""}",196461,1,Asia +2023-06-21,53029,8939,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2945.96,{},87327,1,South America +2024-01-07,53030,7602,"[""Charger""]",1619.9,"{""promo"": ""25%""}",141408,0,North America +2023-01-12,53031,560,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3438.67,"{""promo"": ""6%""}",52847,0,North America +2023-12-14,53032,7899,"[""Headphones"", ""Tablet"", ""Charger""]",1409.44,"{""seasonal"": ""14%""}",199625,0,Europe +2024-06-28,53033,7038,"[""Phone""]",2484.27,"{""loyalty"": ""23%""}",252829,0,South America +2024-12-27,53034,2696,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2366.61,{},57848,0,North America +2024-08-15,53035,2413,"[""Monitor"", ""Headphones""]",2311.65,"{""promo"": ""26%""}",141993,1,South America +2024-06-20,53036,3001,"[""Laptop"", ""Phone""]",3812.75,"{"""": ""13%""}",250287,0,South America +2024-01-14,53037,8602,"[""Monitor"", ""Keyboard""]",1470.91,"{""promo"": ""22%""}",28007,0,Asia +2024-06-13,53038,5629,"[""Tablet"", ""Keyboard"", ""Phone""]",2001.83,{},235007,0,South America +2023-05-25,53039,2443,"[""Headphones"", ""Laptop""]",355.67,{},20820,1,Europe +2024-10-27,53040,3642,"[""Keyboard"", ""Wireless Mouse""]",934.89,{},61514,0,Asia +2023-11-15,53041,5096,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2512.98,"{"""": ""9%""}",139968,1,Asia +2024-01-21,53042,1050,"[""Headphones""]",2265.4,"{""promo"": ""21%""}",248840,1,South America +2024-08-29,53043,5062,"[""Charger"", ""Monitor""]",2754.87,"{""promo"": ""5%""}",177969,1,Europe +2024-08-09,53044,8090,"[""Laptop"", ""Charger""]",888.98,{},89662,0,Asia +2024-08-29,53045,8724,"[""Charger"", ""Headphones"", ""Keyboard""]",4103.46,{},36936,0,Asia +2024-09-02,53046,2165,"[""Phone"", ""Monitor""]",3965.22,"{""promo"": ""28%""}",103755,0,Africa +2023-05-10,53047,1233,"[""Laptop"", ""Monitor"", ""Headphones""]",4235.75,"{""seasonal"": ""20%""}",2446,1,Africa +2023-05-14,53048,8887,"[""Wireless Mouse"", ""Keyboard""]",4833.19,{},151618,1,Europe +2024-05-05,53049,274,"[""Keyboard"", ""Monitor""]",4248.81,"{"""": ""29%""}",64580,1,North America +2024-02-07,53050,4080,"[""Monitor"", ""Charger""]",128.23,"{""promo"": ""30%""}",42846,0,Africa +2024-12-11,53051,6510,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2239.89,"{"""": ""9%""}",265098,1,Asia +2024-03-29,53052,5700,"[""Tablet"", ""Keyboard"", ""Charger""]",411.09,"{""seasonal"": ""9%""}",230796,1,North America +2024-10-14,53053,8983,"[""Charger"", ""Laptop"", ""Phone""]",3812.27,"{""promo"": ""13%""}",165260,0,Europe +2024-07-30,53054,5029,"[""Wireless Mouse""]",1766.88,"{"""": ""8%""}",80951,0,Africa +2023-07-23,53055,4163,"[""Keyboard""]",3106.91,{},50379,0,Africa +2023-04-24,53056,2079,"[""Tablet""]",270.79,{},242228,1,North America +2023-02-22,53057,5138,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3866.39,{},82454,1,Africa +2023-11-22,53058,7722,"[""Keyboard"", ""Charger"", ""Phone""]",3618.06,{},88116,0,Asia +2023-09-07,53059,1542,"[""Tablet"", ""Wireless Mouse""]",4292.96,{},16522,0,South America +2023-11-19,53060,692,"[""Laptop"", ""Headphones"", ""Monitor""]",4756.99,{},102870,0,North America +2024-04-15,53061,9843,"[""Laptop"", ""Phone""]",511.07,{},69053,1,Africa +2024-03-07,53062,6916,"[""Tablet"", ""Charger"", ""Keyboard""]",2398.79,"{""seasonal"": ""23%""}",247977,1,Europe +2024-01-10,53063,3590,"[""Tablet"", ""Wireless Mouse""]",1637.41,{},33780,1,Africa +2023-08-06,53064,4311,"[""Laptop""]",4570.65,"{""promo"": ""5%""}",114526,0,Africa +2024-07-27,53065,7223,"[""Monitor""]",3184.49,"{""promo"": ""22%""}",211225,0,Asia +2023-05-26,53066,9726,"[""Wireless Mouse"", ""Charger""]",676.66,"{""promo"": ""30%""}",261024,0,South America +2024-01-19,53067,3079,"[""Keyboard"", ""Tablet""]",4343.36,{},135056,0,North America +2023-08-22,53068,1316,"[""Phone"", ""Charger""]",836.2,"{""promo"": ""7%""}",208927,0,North America +2024-12-02,53069,5110,"[""Laptop"", ""Wireless Mouse""]",1274.57,{},171518,1,Europe +2024-12-04,53070,8211,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2938.8,{},24426,0,Asia +2024-02-03,53071,9010,"[""Charger""]",3906.13,"{""loyalty"": ""10%""}",272905,0,Africa +2023-10-14,53072,4427,"[""Wireless Mouse"", ""Laptop""]",806.24,"{""promo"": ""29%""}",71204,1,Africa +2024-11-09,53073,3714,"[""Charger"", ""Keyboard""]",260.69,{},38399,1,South America +2024-11-25,53074,1358,"[""Headphones"", ""Wireless Mouse""]",2146.68,"{""loyalty"": ""11%""}",281229,0,Asia +2024-03-25,53075,2977,"[""Keyboard"", ""Charger"", ""Tablet""]",4128.94,"{""promo"": ""20%""}",277606,1,Asia +2023-11-20,53076,2723,"[""Laptop""]",3190.16,{},27034,1,Africa +2024-04-02,53077,8137,"[""Wireless Mouse"", ""Charger""]",499.3,"{""seasonal"": ""13%""}",90438,0,Africa +2024-03-20,53078,1958,"[""Laptop"", ""Phone"", ""Headphones""]",1498.35,{},77773,1,Asia +2023-06-16,53079,8570,"[""Phone"", ""Keyboard"", ""Laptop""]",3480.59,{},64128,1,Europe +2023-08-29,53080,7862,"[""Laptop"", ""Phone"", ""Keyboard""]",1512.85,"{"""": ""21%""}",241080,0,Asia +2023-12-16,53081,5120,"[""Headphones"", ""Charger""]",3507.15,"{""seasonal"": ""8%""}",155292,0,Europe +2024-06-25,53082,8022,"[""Keyboard"", ""Laptop"", ""Phone""]",3908.29,{},205613,1,Asia +2024-12-24,53083,6043,"[""Laptop"", ""Keyboard"", ""Phone""]",2714.58,"{""seasonal"": ""26%""}",231122,1,Europe +2023-07-12,53084,1308,"[""Monitor""]",2443.18,{},172674,0,South America +2023-09-17,53085,2664,"[""Laptop"", ""Monitor""]",3904.28,{},130263,0,Asia +2023-09-11,53086,5005,"[""Headphones""]",4258.72,{},127410,0,Asia +2024-06-15,53087,4797,"[""Wireless Mouse"", ""Monitor""]",3734.7,"{""loyalty"": ""18%""}",177244,1,South America +2024-03-14,53088,3393,"[""Tablet"", ""Charger"", ""Phone""]",2306.48,{},247904,0,Asia +2024-05-06,53089,2528,"[""Phone"", ""Keyboard"", ""Headphones""]",793.6,"{""loyalty"": ""26%""}",1175,1,Europe +2024-11-11,53090,2155,"[""Charger"", ""Tablet""]",919.1,"{""promo"": ""24%""}",189642,1,North America +2024-12-27,53091,233,"[""Laptop""]",788.1,"{""seasonal"": ""30%""}",159348,0,Asia +2023-11-29,53092,3904,"[""Wireless Mouse"", ""Tablet""]",3772.77,"{""promo"": ""6%""}",233587,0,Asia +2024-04-27,53093,424,"[""Phone"", ""Keyboard"", ""Laptop""]",4700.7,"{"""": ""12%""}",96117,1,North America +2023-12-02,53094,5365,"[""Keyboard"", ""Laptop"", ""Monitor""]",1745.68,{},181222,1,Europe +2024-10-19,53095,4133,"[""Headphones""]",2730.03,{},286436,0,Asia +2024-06-07,53096,9390,"[""Wireless Mouse""]",2181.91,{},118914,1,Africa +2024-02-08,53097,75,"[""Tablet"", ""Monitor"", ""Keyboard""]",2539.38,"{""loyalty"": ""13%""}",120874,0,South America +2023-04-21,53098,9729,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2578.5,"{""seasonal"": ""21%""}",15753,0,Europe +2023-12-10,53099,3111,"[""Phone""]",3701.8,{},47416,1,South America +2023-09-06,53100,5160,"[""Headphones"", ""Keyboard""]",4376.69,"{""seasonal"": ""24%""}",47267,1,Africa +2023-02-27,53101,2570,"[""Phone"", ""Wireless Mouse"", ""Charger""]",895.87,"{""promo"": ""26%""}",283021,1,South America +2024-12-22,53102,3757,"[""Phone"", ""Tablet""]",1608.57,"{"""": ""28%""}",59983,0,North America +2023-05-23,53103,2846,"[""Charger""]",489.66,"{""loyalty"": ""28%""}",157142,1,Africa +2023-01-18,53104,7609,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3031.43,{},2864,0,Asia +2023-01-26,53105,7192,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1976.68,"{""seasonal"": ""10%""}",75424,1,Asia +2023-08-07,53106,510,"[""Charger""]",2059.55,"{""promo"": ""5%""}",248341,0,South America +2023-11-08,53107,2421,"[""Headphones""]",3499.41,{},136790,1,South America +2024-04-30,53108,6596,"[""Phone"", ""Monitor""]",143.43,{},23688,0,Asia +2024-06-03,53109,7080,"[""Laptop""]",4921.88,{},155195,0,Asia +2023-10-08,53110,9110,"[""Keyboard""]",290.57,{},136999,1,Asia +2023-03-07,53111,6934,"[""Phone"", ""Keyboard"", ""Headphones""]",4547.32,"{"""": ""21%""}",216723,1,North America +2024-10-14,53112,628,"[""Tablet"", ""Phone"", ""Keyboard""]",182.11,"{""seasonal"": ""5%""}",218705,0,Europe +2024-12-14,53113,4166,"[""Charger"", ""Keyboard"", ""Phone""]",4942.04,{},232537,1,North America +2023-08-05,53114,6284,"[""Headphones"", ""Keyboard"", ""Laptop""]",406.55,"{"""": ""11%""}",230963,0,South America +2024-09-13,53115,7536,"[""Charger"", ""Headphones"", ""Laptop""]",3203.16,"{"""": ""24%""}",193358,1,South America +2023-01-19,53116,1575,"[""Keyboard""]",327.17,"{""loyalty"": ""15%""}",237643,1,Europe +2024-01-31,53117,9746,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",868.08,"{""loyalty"": ""29%""}",255664,0,Europe +2023-04-27,53118,1784,"[""Tablet"", ""Keyboard""]",3225.87,{},278824,1,Asia +2024-07-18,53119,4096,"[""Charger""]",815.85,"{""seasonal"": ""22%""}",281306,1,Europe +2024-06-12,53120,1434,"[""Keyboard""]",358.72,"{""promo"": ""27%""}",66083,1,South America +2023-05-17,53121,4520,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3336.38,"{""loyalty"": ""13%""}",18698,0,South America +2023-03-19,53122,1171,"[""Laptop"", ""Phone"", ""Headphones""]",156.56,{},88105,0,Asia +2023-08-14,53123,6707,"[""Phone""]",659.51,{},3696,0,South America +2024-05-31,53124,6520,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2375.59,"{""loyalty"": ""24%""}",166087,1,Europe +2023-01-09,53125,1912,"[""Wireless Mouse"", ""Headphones""]",4014.81,"{""promo"": ""24%""}",143705,0,Asia +2023-05-07,53126,3804,"[""Headphones"", ""Keyboard""]",1532.83,{},248868,1,Africa +2024-10-20,53127,9087,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",71.97,{},189049,0,Europe +2023-06-25,53128,1956,"[""Headphones"", ""Monitor""]",1204.19,{},200826,1,Asia +2023-08-01,53129,6814,"[""Wireless Mouse""]",4880.7,"{""loyalty"": ""21%""}",79396,0,Asia +2024-06-09,53130,27,"[""Monitor""]",4615.6,"{""seasonal"": ""11%""}",137912,1,Europe +2023-08-30,53131,6582,"[""Monitor"", ""Charger""]",1395.94,{},209193,0,North America +2023-07-03,53132,8461,"[""Charger""]",285.86,{},110130,0,North America +2023-09-26,53133,4763,"[""Phone"", ""Monitor"", ""Charger""]",1871.11,{},97030,1,Europe +2023-10-07,53134,8737,"[""Wireless Mouse"", ""Charger""]",4501.85,{},187119,0,Europe +2024-07-19,53135,3098,"[""Monitor""]",330.0,"{""promo"": ""29%""}",138655,1,Africa +2023-08-04,53136,8888,"[""Phone"", ""Headphones""]",1536.56,{},278351,0,North America +2024-11-07,53137,1383,"[""Charger"", ""Laptop""]",1576.21,{},192496,1,Europe +2023-07-12,53138,7836,"[""Tablet""]",1260.11,{},198031,1,Europe +2024-05-29,53139,30,"[""Keyboard""]",1506.19,{},115974,0,Europe +2024-11-14,53140,6377,"[""Wireless Mouse"", ""Headphones""]",3556.11,"{"""": ""16%""}",116899,1,South America +2024-07-05,53141,6329,"[""Headphones"", ""Monitor""]",4838.41,{},143402,0,Africa +2024-05-10,53142,9521,"[""Headphones""]",4378.49,"{"""": ""29%""}",271280,1,Asia +2023-11-06,53143,1078,"[""Charger""]",4070.78,"{"""": ""28%""}",142463,1,Europe +2024-12-25,53144,3557,"[""Phone"", ""Laptop""]",1628.6,"{""loyalty"": ""7%""}",21740,0,Africa +2024-10-24,53145,9894,"[""Tablet"", ""Laptop""]",489.49,"{""loyalty"": ""6%""}",153101,1,North America +2023-02-01,53146,3250,"[""Laptop"", ""Phone"", ""Charger""]",189.14,{},247978,0,Asia +2023-11-25,53147,5295,"[""Laptop"", ""Tablet"", ""Keyboard""]",1110.66,{},122032,1,South America +2023-06-26,53148,6630,"[""Phone"", ""Charger"", ""Laptop""]",93.63,{},80624,1,South America +2024-10-11,53149,5490,"[""Laptop""]",4880.98,{},94288,1,Asia +2024-01-24,53150,3863,"[""Headphones"", ""Tablet""]",4740.98,"{""loyalty"": ""26%""}",132955,0,South America +2024-05-02,53151,7798,"[""Tablet""]",346.78,"{""loyalty"": ""26%""}",6815,0,Africa +2024-02-20,53152,9882,"[""Monitor"", ""Keyboard""]",3021.34,{},185271,1,Africa +2024-09-23,53153,2687,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2312.37,{},285976,0,South America +2024-08-08,53154,9882,"[""Wireless Mouse"", ""Tablet""]",3052.42,"{"""": ""26%""}",262420,0,Asia +2023-08-22,53155,7112,"[""Charger"", ""Keyboard"", ""Phone""]",656.92,"{""promo"": ""22%""}",118937,1,Asia +2024-02-11,53156,1393,"[""Laptop"", ""Phone"", ""Charger""]",2919.72,"{""seasonal"": ""19%""}",77773,0,North America +2023-03-13,53157,771,"[""Monitor"", ""Tablet"", ""Laptop""]",162.09,"{""seasonal"": ""20%""}",222612,0,South America +2024-11-17,53158,3734,"[""Headphones"", ""Monitor"", ""Keyboard""]",3874.74,"{""seasonal"": ""21%""}",250397,0,Africa +2023-11-12,53159,3378,"[""Headphones""]",4911.39,{},11538,1,South America +2023-10-13,53160,9423,"[""Charger"", ""Laptop"", ""Keyboard""]",178.27,{},18020,1,North America +2023-04-01,53161,1401,"[""Laptop""]",583.69,{},280713,0,Africa +2023-07-24,53162,139,"[""Tablet""]",3061.8,"{""seasonal"": ""21%""}",183052,0,Asia +2023-03-08,53163,4709,"[""Keyboard""]",3541.64,{},166443,0,North America +2024-12-13,53164,914,"[""Keyboard""]",3757.86,{},249585,0,Europe +2024-11-10,53165,1261,"[""Phone""]",446.52,{},221804,1,Europe +2024-05-17,53166,3455,"[""Phone""]",4463.8,"{""seasonal"": ""15%""}",111166,0,North America +2023-08-17,53167,2466,"[""Wireless Mouse""]",1679.42,"{""loyalty"": ""24%""}",264334,1,Africa +2024-06-10,53168,5901,"[""Laptop""]",3401.9,"{""promo"": ""12%""}",189636,0,South America +2023-09-07,53169,8659,"[""Headphones"", ""Monitor"", ""Keyboard""]",1490.19,"{"""": ""23%""}",273113,0,Africa +2024-07-01,53170,1703,"[""Keyboard"", ""Charger""]",1238.32,{},81706,0,Africa +2023-08-24,53171,1130,"[""Keyboard"", ""Monitor"", ""Laptop""]",3599.01,{},222696,0,North America +2023-11-26,53172,9182,"[""Laptop"", ""Charger""]",2102.41,{},184010,1,Asia +2023-09-04,53173,8956,"[""Headphones""]",2500.68,"{""seasonal"": ""11%""}",160319,1,Africa +2023-06-27,53174,3568,"[""Keyboard"", ""Wireless Mouse""]",2769.19,{},172201,0,North America +2024-04-03,53175,2041,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4213.37,"{"""": ""23%""}",36112,0,South America +2024-02-22,53176,9746,"[""Monitor"", ""Laptop""]",3839.31,"{""loyalty"": ""7%""}",245140,0,Africa +2023-08-20,53177,7261,"[""Charger"", ""Phone"", ""Tablet""]",979.79,"{"""": ""6%""}",120502,1,Asia +2023-06-22,53178,4606,"[""Headphones""]",4806.54,"{""seasonal"": ""26%""}",96155,1,South America +2024-05-03,53179,6896,"[""Monitor""]",3879.76,"{"""": ""21%""}",105186,0,South America +2024-05-19,53180,6197,"[""Charger""]",2098.45,"{""seasonal"": ""16%""}",289584,1,Europe +2023-12-21,53181,8232,"[""Keyboard"", ""Monitor""]",1154.8,"{""seasonal"": ""22%""}",70814,0,South America +2023-12-23,53182,490,"[""Charger"", ""Monitor"", ""Phone""]",1405.46,"{"""": ""28%""}",106679,0,Asia +2023-08-03,53183,3415,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4991.71,"{""loyalty"": ""14%""}",240907,0,Asia +2024-08-05,53184,4790,"[""Wireless Mouse""]",1102.71,{},21743,0,Europe +2023-03-06,53185,9162,"[""Tablet"", ""Charger""]",1706.86,"{""promo"": ""21%""}",24180,1,North America +2023-03-25,53186,3199,"[""Phone"", ""Monitor""]",1546.19,{},101870,0,North America +2023-03-31,53187,1265,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2457.79,"{"""": ""30%""}",123690,1,North America +2024-07-25,53188,5754,"[""Monitor"", ""Tablet""]",1916.06,"{"""": ""14%""}",240446,0,North America +2023-06-15,53189,4616,"[""Laptop"", ""Wireless Mouse""]",588.28,"{"""": ""29%""}",115632,1,North America +2023-10-16,53190,982,"[""Wireless Mouse""]",3652.87,{},264075,1,South America +2023-09-22,53191,1732,"[""Headphones"", ""Tablet"", ""Charger""]",323.21,"{""seasonal"": ""26%""}",299434,0,South America +2023-09-29,53192,4821,"[""Tablet""]",123.33,{},250258,1,Europe +2023-06-20,53193,1147,"[""Keyboard"", ""Charger""]",275.02,"{"""": ""26%""}",111250,1,Europe +2023-12-31,53194,3027,"[""Laptop""]",2629.55,{},269676,1,Asia +2024-02-14,53195,3716,"[""Wireless Mouse"", ""Monitor""]",4255.96,{},277004,1,North America +2024-02-24,53196,5103,"[""Monitor"", ""Headphones""]",3277.07,"{""promo"": ""14%""}",275801,1,Africa +2023-08-21,53197,735,"[""Tablet"", ""Wireless Mouse""]",1938.33,"{""seasonal"": ""12%""}",32881,0,Africa +2023-02-20,53198,776,"[""Charger"", ""Laptop""]",3779.31,{},236898,1,South America +2023-03-05,53199,4870,"[""Monitor"", ""Phone""]",1077.22,"{""seasonal"": ""21%""}",47089,1,Europe +2023-07-22,53200,7131,"[""Phone""]",581.39,"{"""": ""23%""}",224913,1,North America +2023-11-01,53201,5948,"[""Keyboard"", ""Tablet""]",4667.05,"{""seasonal"": ""11%""}",85168,1,Europe +2024-12-25,53202,5913,"[""Laptop"", ""Monitor"", ""Keyboard""]",745.69,"{""promo"": ""25%""}",260786,1,South America +2024-01-18,53203,5094,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4949.98,{},206704,1,Europe +2023-12-20,53204,1278,"[""Charger""]",577.58,{},280294,1,South America +2024-07-27,53205,4710,"[""Wireless Mouse""]",712.42,"{""promo"": ""11%""}",3840,1,South America +2023-07-28,53206,5885,"[""Phone"", ""Laptop"", ""Headphones""]",1236.01,{},89995,1,Africa +2024-01-08,53207,4260,"[""Tablet"", ""Laptop"", ""Phone""]",4332.06,{},147078,0,Africa +2024-10-30,53208,7192,"[""Wireless Mouse"", ""Monitor""]",1304.01,{},142161,0,North America +2024-02-14,53209,3890,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2642.52,{},90564,0,Asia +2024-01-03,53210,5115,"[""Wireless Mouse"", ""Keyboard""]",599.48,"{""promo"": ""11%""}",5991,0,Europe +2024-12-06,53211,271,"[""Monitor"", ""Phone"", ""Keyboard""]",4246.0,"{""promo"": ""23%""}",23662,1,Europe +2024-10-29,53212,7249,"[""Charger"", ""Tablet"", ""Phone""]",4455.65,"{""seasonal"": ""24%""}",269051,1,Africa +2024-06-30,53213,9891,"[""Phone""]",4052.84,"{""seasonal"": ""29%""}",224091,1,South America +2024-07-31,53214,7446,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",257.14,{},23089,1,Europe +2023-03-26,53215,5640,"[""Tablet"", ""Laptop""]",3246.85,{},205513,1,South America +2024-10-01,53216,6080,"[""Wireless Mouse"", ""Charger""]",1347.74,"{"""": ""8%""}",10530,0,Europe +2024-06-30,53217,2601,"[""Phone"", ""Wireless Mouse""]",1000.7,"{""loyalty"": ""16%""}",81617,1,South America +2023-01-20,53218,8687,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2602.29,"{"""": ""24%""}",208097,0,Europe +2024-08-27,53219,1274,"[""Charger"", ""Wireless Mouse""]",1998.92,{},81887,0,North America +2023-11-07,53220,5956,"[""Wireless Mouse""]",3004.93,"{"""": ""13%""}",270156,1,South America +2024-12-25,53221,7287,"[""Monitor""]",3709.82,"{""loyalty"": ""21%""}",218259,1,North America +2024-10-09,53222,6104,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2021.99,{},38199,0,Africa +2023-08-06,53223,4319,"[""Monitor"", ""Headphones"", ""Charger""]",4770.61,{},223890,1,North America +2023-07-11,53224,4548,"[""Monitor"", ""Charger""]",2419.45,{},228296,0,North America +2023-10-09,53225,5167,"[""Headphones"", ""Laptop"", ""Phone""]",4614.83,{},145731,1,South America +2023-03-25,53226,4362,"[""Phone""]",227.8,{},157627,1,North America +2023-12-09,53227,8571,"[""Wireless Mouse""]",317.5,"{""promo"": ""19%""}",125438,0,Africa +2024-12-27,53228,4347,"[""Monitor""]",3683.68,{},266595,0,North America +2024-03-31,53229,6588,"[""Tablet"", ""Laptop"", ""Monitor""]",3980.59,{},245681,1,Europe +2023-12-19,53230,8280,"[""Wireless Mouse"", ""Phone""]",1517.69,{},58552,0,North America +2024-03-29,53231,7144,"[""Monitor""]",2030.53,{},172515,0,Europe +2024-05-13,53232,8333,"[""Tablet""]",4479.84,{},109490,1,Europe +2024-09-28,53233,5625,"[""Laptop"", ""Keyboard"", ""Tablet""]",793.6,"{"""": ""11%""}",55889,0,Europe +2023-02-08,53234,6316,"[""Phone""]",4866.74,"{""promo"": ""10%""}",68729,1,North America +2023-06-08,53235,2434,"[""Laptop"", ""Tablet""]",2279.32,{},122876,0,Europe +2024-12-14,53236,159,"[""Laptop"", ""Keyboard""]",2825.57,{},142588,1,Europe +2024-03-17,53237,8631,"[""Charger"", ""Headphones""]",2786.01,"{"""": ""13%""}",53097,1,North America +2024-10-18,53238,8583,"[""Phone""]",2583.0,"{""loyalty"": ""21%""}",291275,0,North America +2023-10-13,53239,5876,"[""Tablet""]",978.48,"{""loyalty"": ""15%""}",14288,0,Asia +2023-04-19,53240,4061,"[""Laptop""]",1101.66,{},57269,0,Africa +2023-07-15,53241,7064,"[""Keyboard"", ""Monitor"", ""Laptop""]",4926.25,{},43045,0,Europe +2023-04-27,53242,2619,"[""Monitor"", ""Charger"", ""Laptop""]",2822.31,"{""promo"": ""14%""}",206858,0,Europe +2023-08-03,53243,4255,"[""Phone""]",2690.47,"{"""": ""16%""}",202066,0,South America +2024-03-13,53244,3619,"[""Keyboard"", ""Headphones""]",4847.92,{},168598,0,North America +2023-09-27,53245,3735,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4318.87,"{"""": ""5%""}",253345,0,South America +2024-07-21,53246,8639,"[""Headphones"", ""Monitor"", ""Tablet""]",3698.72,"{""loyalty"": ""16%""}",26826,0,Asia +2024-11-01,53247,7350,"[""Keyboard"", ""Laptop"", ""Tablet""]",1705.59,{},98946,0,South America +2024-05-17,53248,3286,"[""Headphones"", ""Wireless Mouse""]",2288.05,{},64698,1,Asia +2024-08-14,53249,5193,"[""Phone"", ""Monitor"", ""Tablet""]",4012.9,"{""loyalty"": ""23%""}",159933,1,North America +2024-07-21,53250,5983,"[""Tablet"", ""Phone""]",1623.35,{},202665,0,Asia +2023-08-28,53251,4860,"[""Charger"", ""Phone"", ""Monitor""]",392.53,{},83713,0,Asia +2024-09-03,53252,7543,"[""Monitor""]",996.47,"{"""": ""12%""}",68113,0,Europe +2023-06-22,53253,9092,"[""Tablet"", ""Wireless Mouse""]",2010.36,"{""seasonal"": ""29%""}",18859,1,Europe +2023-07-30,53254,1058,"[""Phone"", ""Keyboard"", ""Laptop""]",4246.42,{},228755,0,Africa +2024-04-28,53255,3873,"[""Monitor"", ""Headphones"", ""Charger""]",4466.72,{},21821,0,Africa +2023-09-12,53256,6829,"[""Charger"", ""Wireless Mouse""]",3373.2,"{""loyalty"": ""23%""}",260128,1,North America +2024-12-05,53257,9315,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3633.82,"{""seasonal"": ""14%""}",283852,0,South America +2024-07-16,53258,6418,"[""Keyboard"", ""Headphones"", ""Tablet""]",3198.11,"{""seasonal"": ""26%""}",243077,1,South America +2024-04-05,53259,1661,"[""Charger"", ""Tablet"", ""Laptop""]",2752.46,{},264280,0,North America +2023-05-17,53260,5601,"[""Laptop"", ""Phone"", ""Charger""]",138.08,"{"""": ""11%""}",174179,0,North America +2024-03-27,53261,6692,"[""Phone"", ""Keyboard""]",1121.4,"{""loyalty"": ""5%""}",134470,0,Africa +2023-02-26,53262,4644,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4313.0,"{""promo"": ""8%""}",212193,0,Europe +2024-11-23,53263,7803,"[""Charger""]",164.43,{},182472,0,Asia +2024-05-05,53264,471,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4402.78,{},174876,0,Asia +2023-06-16,53265,8188,"[""Charger"", ""Tablet"", ""Laptop""]",4453.43,"{""loyalty"": ""5%""}",174710,0,Africa +2024-11-14,53266,5634,"[""Phone"", ""Charger""]",1046.17,"{"""": ""15%""}",196100,1,North America +2024-02-20,53267,1447,"[""Headphones"", ""Laptop"", ""Charger""]",418.41,"{""seasonal"": ""17%""}",34527,1,Africa +2024-11-17,53268,4776,"[""Tablet"", ""Charger""]",3098.85,{},200445,1,North America +2024-08-14,53269,2648,"[""Tablet""]",379.36,{},84696,0,North America +2023-06-03,53270,2997,"[""Laptop""]",63.32,"{"""": ""6%""}",9531,1,South America +2023-10-05,53271,246,"[""Tablet""]",2596.64,"{""loyalty"": ""7%""}",74407,1,Asia +2023-02-15,53272,5476,"[""Monitor""]",3245.91,{},191075,0,Europe +2023-06-09,53273,3285,"[""Charger""]",2721.7,{},223166,1,North America +2023-10-12,53274,1413,"[""Charger""]",2981.13,{},137481,1,Asia +2024-05-24,53275,4710,"[""Tablet""]",131.66,{},4395,1,Africa +2024-04-03,53276,8501,"[""Headphones"", ""Monitor"", ""Laptop""]",534.37,{},20420,0,North America +2024-10-15,53277,8835,"[""Monitor"", ""Phone"", ""Tablet""]",4959.63,"{"""": ""16%""}",247816,0,Asia +2024-11-10,53278,6679,"[""Phone"", ""Monitor"", ""Laptop""]",878.37,"{""seasonal"": ""16%""}",243884,0,Europe +2023-11-04,53279,478,"[""Tablet""]",4758.53,{},276821,1,Asia +2023-06-20,53280,5292,"[""Charger"", ""Headphones"", ""Laptop""]",149.3,"{""promo"": ""8%""}",114328,0,North America +2023-05-09,53281,7657,"[""Keyboard""]",2597.29,"{"""": ""11%""}",238406,1,North America +2023-06-11,53282,2933,"[""Phone"", ""Keyboard"", ""Monitor""]",92.8,"{"""": ""21%""}",149163,0,Asia +2023-01-14,53283,5413,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3255.76,"{"""": ""17%""}",215390,0,Asia +2024-06-30,53284,6638,"[""Phone"", ""Charger""]",3152.75,"{""promo"": ""6%""}",193654,0,Asia +2024-10-12,53285,8080,"[""Laptop"", ""Charger""]",544.63,{},7377,1,South America +2023-11-04,53286,9722,"[""Phone"", ""Headphones""]",341.3,{},12390,1,North America +2023-09-03,53287,6932,"[""Keyboard""]",3572.65,{},71700,1,Europe +2023-03-19,53288,5688,"[""Tablet"", ""Phone"", ""Laptop""]",4177.03,"{""loyalty"": ""29%""}",141857,1,Africa +2023-06-26,53289,7986,"[""Headphones""]",776.12,"{""seasonal"": ""22%""}",207763,0,Asia +2024-10-10,53290,5732,"[""Headphones"", ""Laptop""]",3999.05,{},297537,0,Africa +2023-09-04,53291,9708,"[""Keyboard"", ""Phone"", ""Monitor""]",2088.1,{},192467,0,Europe +2024-09-13,53292,8173,"[""Laptop""]",1966.57,"{""seasonal"": ""16%""}",122497,0,Africa +2023-10-25,53293,9689,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4411.8,{},189991,1,Africa +2023-09-02,53294,8450,"[""Phone"", ""Charger""]",1539.65,{},152370,0,South America +2023-10-24,53295,2644,"[""Wireless Mouse""]",1662.3,"{"""": ""28%""}",121057,1,South America +2024-05-27,53296,5624,"[""Headphones"", ""Charger""]",1573.77,"{"""": ""27%""}",58341,1,Asia +2023-04-25,53297,947,"[""Keyboard""]",1470.9,{},91302,1,Africa +2023-02-21,53298,9393,"[""Tablet"", ""Phone"", ""Headphones""]",4525.95,"{""loyalty"": ""19%""}",204289,0,Europe +2024-01-21,53299,5224,"[""Wireless Mouse""]",1060.15,{},169947,1,Europe +2024-10-12,53300,6800,"[""Headphones""]",3233.95,"{"""": ""20%""}",72363,1,North America +2023-01-07,53301,4272,"[""Monitor""]",2600.88,"{""promo"": ""15%""}",152099,1,North America +2024-07-17,53302,9930,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3863.91,{},229645,0,South America +2023-07-29,53303,5432,"[""Laptop""]",3405.18,{},76028,1,Africa +2023-01-05,53304,570,"[""Monitor""]",3835.71,"{""seasonal"": ""12%""}",24518,0,South America +2024-03-02,53305,6508,"[""Wireless Mouse"", ""Headphones""]",4430.7,"{""loyalty"": ""14%""}",236909,0,Africa +2024-07-19,53306,5833,"[""Laptop"", ""Wireless Mouse""]",4726.13,"{""loyalty"": ""14%""}",43895,0,North America +2024-04-08,53307,8663,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3174.25,"{""seasonal"": ""13%""}",157308,0,North America +2024-02-05,53308,5701,"[""Monitor""]",1895.47,{},87820,0,Europe +2024-09-04,53309,1982,"[""Headphones"", ""Monitor"", ""Phone""]",1035.34,"{""loyalty"": ""15%""}",270687,0,Europe +2023-07-28,53310,961,"[""Headphones"", ""Charger"", ""Laptop""]",318.58,{},281515,0,Europe +2023-11-16,53311,9508,"[""Monitor"", ""Keyboard"", ""Headphones""]",4906.17,"{""seasonal"": ""7%""}",214917,1,North America +2024-05-23,53312,3522,"[""Monitor"", ""Laptop""]",3312.99,"{""loyalty"": ""30%""}",213600,0,Africa +2023-08-25,53313,9873,"[""Monitor"", ""Laptop""]",2152.7,"{""seasonal"": ""16%""}",179567,0,North America +2023-03-03,53314,4173,"[""Phone"", ""Laptop"", ""Monitor""]",2753.16,{},77944,1,Europe +2023-06-20,53315,3776,"[""Monitor"", ""Wireless Mouse""]",1999.8,"{"""": ""6%""}",162604,0,Asia +2023-03-23,53316,5740,"[""Monitor"", ""Keyboard""]",974.68,"{""promo"": ""17%""}",101094,1,Africa +2024-02-20,53317,8998,"[""Monitor""]",550.86,"{""promo"": ""8%""}",245134,0,South America +2024-08-28,53318,8706,"[""Monitor"", ""Headphones""]",2732.87,{},270827,0,Africa +2024-04-30,53319,3699,"[""Headphones"", ""Laptop""]",2927.47,"{""seasonal"": ""8%""}",195136,1,Asia +2023-03-18,53320,7712,"[""Laptop"", ""Phone"", ""Tablet""]",1870.99,{},157370,0,North America +2023-04-18,53321,2912,"[""Tablet"", ""Monitor""]",3277.37,"{""promo"": ""26%""}",5859,1,South America +2023-05-26,53322,9981,"[""Phone""]",4084.8,"{""loyalty"": ""20%""}",75422,0,Africa +2024-02-27,53323,5384,"[""Headphones""]",1720.05,{},287135,0,Europe +2023-04-27,53324,9523,"[""Wireless Mouse"", ""Charger""]",267.74,{},69828,1,North America +2024-07-13,53325,1644,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2795.6,{},20012,0,Europe +2024-04-02,53326,6919,"[""Headphones""]",3707.7,{},119817,1,South America +2023-04-20,53327,1765,"[""Monitor"", ""Tablet""]",951.71,{},198482,0,Asia +2023-04-14,53328,8677,"[""Wireless Mouse""]",3268.34,"{""seasonal"": ""23%""}",103179,0,Africa +2024-02-24,53329,5031,"[""Laptop"", ""Keyboard""]",1399.96,"{""seasonal"": ""30%""}",268547,1,Asia +2024-10-21,53330,1350,"[""Tablet"", ""Phone""]",2758.08,{},206069,0,North America +2024-09-02,53331,2112,"[""Keyboard"", ""Laptop"", ""Headphones""]",4517.71,{},132555,1,Asia +2023-01-07,53332,4363,"[""Laptop""]",2694.88,"{""seasonal"": ""12%""}",241844,1,Africa +2023-09-03,53333,3244,"[""Wireless Mouse"", ""Charger""]",1392.96,{},77714,0,North America +2023-01-29,53334,1489,"[""Wireless Mouse""]",3767.55,"{""loyalty"": ""15%""}",184339,1,North America +2023-01-16,53335,4708,"[""Keyboard"", ""Charger""]",273.26,{},206794,0,North America +2024-11-14,53336,7235,"[""Keyboard"", ""Tablet"", ""Charger""]",2465.13,{},291954,0,Africa +2024-08-18,53337,372,"[""Headphones""]",638.35,{},245653,1,Asia +2024-06-08,53338,9840,"[""Tablet""]",614.94,"{""seasonal"": ""28%""}",3495,1,South America +2023-01-31,53339,5293,"[""Keyboard""]",643.41,"{""promo"": ""27%""}",158821,1,Europe +2023-01-18,53340,5585,"[""Charger"", ""Keyboard"", ""Tablet""]",277.01,{},18833,1,Africa +2023-10-05,53341,9646,"[""Keyboard""]",3256.95,{},215732,1,North America +2024-05-14,53342,5406,"[""Charger"", ""Laptop"", ""Headphones""]",2946.68,{},218982,0,Europe +2024-06-17,53343,1263,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3110.71,{},147258,1,Asia +2023-01-07,53344,5374,"[""Charger"", ""Tablet""]",3875.72,"{""promo"": ""12%""}",24787,1,South America +2024-08-29,53345,3915,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",996.39,"{""loyalty"": ""20%""}",241919,1,North America +2024-02-27,53346,3083,"[""Monitor"", ""Charger"", ""Laptop""]",1104.03,{},82150,0,Europe +2024-10-06,53347,7193,"[""Tablet""]",3164.59,{},102116,1,North America +2023-05-30,53348,8921,"[""Headphones"", ""Monitor"", ""Tablet""]",4580.61,"{""promo"": ""30%""}",67166,1,South America +2023-01-20,53349,8451,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2952.72,{},130935,0,Africa +2023-01-08,53350,1992,"[""Tablet"", ""Keyboard""]",4771.32,"{""seasonal"": ""29%""}",201580,1,Asia +2023-02-10,53351,2639,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",469.58,{},114404,0,Europe +2023-08-20,53352,9370,"[""Wireless Mouse"", ""Laptop""]",3133.36,{},152491,0,Europe +2024-05-11,53353,8006,"[""Tablet"", ""Wireless Mouse""]",3967.72,{},207252,1,North America +2024-02-04,53354,4240,"[""Charger""]",2508.95,{},273421,0,Asia +2023-08-15,53355,5401,"[""Laptop"", ""Charger""]",215.94,{},37669,1,South America +2024-09-23,53356,1818,"[""Headphones""]",336.64,"{""seasonal"": ""22%""}",36000,0,Asia +2024-04-22,53357,4719,"[""Monitor"", ""Charger"", ""Headphones""]",3561.81,"{""seasonal"": ""13%""}",277431,0,North America +2023-12-08,53358,2528,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4164.08,{},254936,0,Asia +2024-09-01,53359,3778,"[""Charger"", ""Monitor"", ""Tablet""]",3221.19,"{""seasonal"": ""12%""}",219444,1,North America +2024-03-18,53360,5111,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3981.27,{},161893,0,South America +2023-12-22,53361,4266,"[""Wireless Mouse"", ""Charger""]",2040.3,"{""seasonal"": ""12%""}",111226,1,South America +2024-07-14,53362,2658,"[""Keyboard""]",1270.35,{},218108,1,Asia +2024-12-28,53363,8544,"[""Monitor"", ""Headphones""]",913.59,"{""promo"": ""9%""}",256671,0,Africa +2023-03-16,53364,3974,"[""Keyboard"", ""Laptop""]",1984.73,{},105653,1,Asia +2023-02-21,53365,8723,"[""Headphones"", ""Keyboard"", ""Laptop""]",4850.63,{},8267,1,North America +2024-03-08,53366,5661,"[""Tablet"", ""Keyboard"", ""Monitor""]",2765.3,"{""loyalty"": ""22%""}",243508,1,Africa +2023-10-01,53367,4528,"[""Laptop""]",2922.6,{},12891,1,Europe +2023-05-08,53368,1393,"[""Phone"", ""Headphones"", ""Charger""]",4761.54,"{"""": ""13%""}",91814,0,Asia +2024-06-17,53369,9098,"[""Monitor""]",1309.01,"{""promo"": ""8%""}",124788,1,Asia +2024-04-04,53370,8657,"[""Laptop"", ""Phone""]",4935.8,{},99078,1,North America +2023-06-20,53371,8203,"[""Monitor"", ""Tablet"", ""Phone""]",946.06,"{""seasonal"": ""16%""}",154821,1,Europe +2023-09-18,53372,7164,"[""Monitor"", ""Laptop"", ""Keyboard""]",4194.78,{},278020,1,Asia +2024-08-11,53373,8169,"[""Monitor"", ""Keyboard""]",3118.05,{},125204,0,Africa +2023-11-26,53374,1839,"[""Phone"", ""Laptop"", ""Keyboard""]",1649.78,"{""promo"": ""18%""}",109963,1,South America +2023-12-03,53375,1358,"[""Phone"", ""Charger""]",2454.2,{},170990,0,Africa +2024-03-04,53376,1266,"[""Laptop"", ""Wireless Mouse""]",1476.39,{},94552,1,South America +2024-02-29,53377,8422,"[""Monitor""]",515.97,{},138043,1,Asia +2023-12-25,53378,1781,"[""Headphones"", ""Tablet"", ""Monitor""]",498.95,"{""seasonal"": ""9%""}",63872,1,South America +2023-11-25,53379,9192,"[""Charger""]",4275.32,"{""promo"": ""18%""}",280090,0,South America +2024-02-19,53380,929,"[""Headphones"", ""Charger""]",2469.43,{},281207,0,Europe +2024-08-31,53381,5687,"[""Monitor"", ""Charger"", ""Tablet""]",410.21,{},116270,0,South America +2024-07-20,53382,6495,"[""Tablet"", ""Headphones"", ""Monitor""]",3715.02,{},138211,0,South America +2024-12-07,53383,3690,"[""Headphones"", ""Charger""]",2382.54,"{"""": ""16%""}",180872,1,North America +2024-01-06,53384,2493,"[""Tablet""]",4923.91,"{"""": ""11%""}",294682,1,Asia +2023-12-13,53385,9604,"[""Phone""]",2514.84,"{""promo"": ""5%""}",279762,1,Africa +2024-05-01,53386,3100,"[""Monitor"", ""Headphones""]",2218.45,{},201926,0,North America +2023-07-22,53387,1016,"[""Monitor""]",3829.77,"{""promo"": ""20%""}",5379,1,North America +2024-06-25,53388,6872,"[""Phone"", ""Tablet""]",1500.76,{},57903,0,South America +2024-02-20,53389,6281,"[""Tablet"", ""Monitor"", ""Headphones""]",3499.41,"{""seasonal"": ""12%""}",196598,1,North America +2024-08-25,53390,2767,"[""Laptop"", ""Tablet""]",2150.74,"{""seasonal"": ""17%""}",34826,0,Europe +2023-01-12,53391,8926,"[""Laptop"", ""Wireless Mouse""]",3079.51,"{""seasonal"": ""17%""}",22720,1,Asia +2023-11-06,53392,7953,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1334.22,"{""seasonal"": ""30%""}",258283,1,Africa +2024-10-01,53393,7041,"[""Monitor"", ""Tablet"", ""Charger""]",405.35,"{""seasonal"": ""14%""}",147888,0,Asia +2024-05-15,53394,2438,"[""Monitor"", ""Laptop"", ""Keyboard""]",2006.03,{},102135,1,Asia +2024-02-05,53395,5357,"[""Laptop"", ""Headphones""]",289.89,{},216943,1,South America +2023-09-08,53396,6750,"[""Laptop"", ""Monitor""]",276.76,"{"""": ""20%""}",191452,0,Europe +2024-03-26,53397,3606,"[""Headphones"", ""Phone"", ""Keyboard""]",1782.74,{},295840,1,North America +2024-10-06,53398,1541,"[""Tablet"", ""Laptop"", ""Headphones""]",2379.43,{},40249,0,North America +2024-07-06,53399,8500,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4607.78,"{""loyalty"": ""20%""}",54033,1,North America +2024-01-01,53400,1949,"[""Laptop""]",1039.1,"{""loyalty"": ""6%""}",40292,0,North America +2023-05-17,53401,350,"[""Monitor""]",3450.92,{},42360,1,Asia +2024-04-17,53402,5544,"[""Charger"", ""Tablet""]",2727.23,{},271365,0,Africa +2023-10-17,53403,4000,"[""Monitor""]",1768.45,{},104295,1,South America +2023-07-19,53404,4959,"[""Charger"", ""Phone""]",1112.96,"{""seasonal"": ""16%""}",155765,0,Asia +2023-02-24,53405,4293,"[""Wireless Mouse""]",590.38,{},258152,0,North America +2024-07-19,53406,7271,"[""Monitor""]",4086.09,{},26994,0,Asia +2024-11-13,53407,3130,"[""Headphones"", ""Charger""]",3635.43,"{""promo"": ""16%""}",194419,0,North America +2023-10-08,53408,3462,"[""Laptop"", ""Keyboard"", ""Charger""]",1006.92,"{""loyalty"": ""15%""}",230641,1,Europe +2023-09-06,53409,9741,"[""Wireless Mouse"", ""Keyboard""]",2194.65,"{""loyalty"": ""22%""}",188898,0,Asia +2023-01-01,53410,9422,"[""Headphones""]",2029.06,{},107938,1,Asia +2024-10-17,53411,9218,"[""Laptop""]",501.68,"{""promo"": ""9%""}",44823,0,Europe +2024-05-23,53412,7024,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1816.41,"{""seasonal"": ""17%""}",296761,0,North America +2024-10-16,53413,2094,"[""Laptop"", ""Monitor""]",3257.94,{},125604,0,Africa +2023-12-20,53414,5928,"[""Tablet""]",591.49,"{"""": ""9%""}",177124,0,Europe +2024-02-12,53415,1638,"[""Charger""]",3291.5,"{""seasonal"": ""28%""}",5472,0,North America +2023-11-26,53416,7795,"[""Headphones"", ""Tablet"", ""Phone""]",4044.77,{},57815,0,Asia +2023-11-23,53417,2676,"[""Charger"", ""Tablet""]",4033.14,"{""promo"": ""21%""}",154426,0,Asia +2023-11-19,53418,2678,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4725.05,"{"""": ""22%""}",216458,1,South America +2024-12-11,53419,9739,"[""Headphones"", ""Charger""]",2553.28,{},284437,1,Africa +2024-08-10,53420,1664,"[""Wireless Mouse"", ""Phone""]",3927.79,{},251508,1,Africa +2023-12-23,53421,7044,"[""Charger"", ""Keyboard""]",1698.04,"{"""": ""10%""}",1777,0,Asia +2023-11-07,53422,8054,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1326.22,"{"""": ""24%""}",233563,1,Europe +2024-06-10,53423,4001,"[""Tablet"", ""Laptop""]",64.28,{},106995,1,Africa +2023-02-18,53424,4176,"[""Phone""]",4620.06,"{""promo"": ""28%""}",205323,0,Asia +2023-12-06,53425,5687,"[""Phone"", ""Tablet"", ""Charger""]",3158.04,{},249353,0,South America +2024-02-25,53426,9914,"[""Tablet"", ""Headphones""]",3884.48,{},183466,1,Europe +2023-09-03,53427,2718,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1140.77,"{"""": ""14%""}",208506,1,South America +2023-01-22,53428,2615,"[""Tablet""]",2310.68,{},13825,1,South America +2023-06-06,53429,1429,"[""Phone"", ""Headphones"", ""Monitor""]",2050.94,"{""loyalty"": ""30%""}",193924,1,Europe +2023-12-22,53430,7603,"[""Monitor""]",1657.92,{},99936,0,Africa +2023-02-07,53431,7161,"[""Phone""]",4021.03,{},103060,1,Europe +2023-08-24,53432,3826,"[""Phone""]",84.96,{},283818,0,Africa +2023-10-01,53433,5098,"[""Headphones"", ""Monitor""]",1541.04,"{""seasonal"": ""26%""}",121501,1,Europe +2023-07-01,53434,2558,"[""Monitor""]",234.11,"{""seasonal"": ""26%""}",91113,1,South America +2024-03-06,53435,8879,"[""Phone""]",4792.4,"{""loyalty"": ""16%""}",116782,0,North America +2023-01-22,53436,3480,"[""Keyboard"", ""Phone""]",62.64,"{""loyalty"": ""5%""}",28846,0,Europe +2023-07-12,53437,8729,"[""Headphones"", ""Tablet""]",736.55,{},189029,0,Europe +2024-03-24,53438,3113,"[""Phone"", ""Headphones"", ""Monitor""]",2101.62,{},149694,0,Europe +2024-06-30,53439,1045,"[""Phone""]",3027.6,"{""promo"": ""21%""}",192816,1,Europe +2023-01-12,53440,6669,"[""Phone"", ""Tablet""]",2410.7,{},9093,0,North America +2023-10-22,53441,5169,"[""Phone"", ""Charger"", ""Tablet""]",4501.14,"{""promo"": ""13%""}",161959,0,South America +2024-12-04,53442,3638,"[""Wireless Mouse""]",2899.56,"{"""": ""7%""}",206454,1,Africa +2024-03-17,53443,2441,"[""Laptop"", ""Keyboard"", ""Phone""]",4073.28,{},263619,0,South America +2024-09-27,53444,6634,"[""Laptop""]",624.29,{},279886,0,Europe +2023-07-23,53445,8497,"[""Tablet"", ""Keyboard""]",1243.5,"{""loyalty"": ""24%""}",191546,0,Asia +2024-07-16,53446,3903,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3969.17,"{""promo"": ""27%""}",220707,1,Europe +2023-06-28,53447,8730,"[""Headphones"", ""Phone""]",1064.31,"{""seasonal"": ""13%""}",243503,1,Africa +2024-07-11,53448,7420,"[""Laptop""]",4298.66,{},210765,0,Europe +2023-03-26,53449,8572,"[""Phone"", ""Headphones""]",4930.92,"{""seasonal"": ""13%""}",204113,0,North America +2024-06-30,53450,9356,"[""Phone"", ""Monitor"", ""Keyboard""]",842.65,{},188034,1,Africa +2023-07-21,53451,2082,"[""Phone"", ""Keyboard"", ""Laptop""]",2356.17,"{""loyalty"": ""16%""}",107985,1,South America +2023-06-08,53452,1732,"[""Laptop"", ""Headphones"", ""Phone""]",4872.16,"{""promo"": ""17%""}",216513,0,Europe +2023-01-17,53453,9818,"[""Wireless Mouse"", ""Tablet""]",700.48,"{""loyalty"": ""16%""}",285497,0,South America +2024-10-09,53454,4529,"[""Wireless Mouse""]",1483.28,"{"""": ""22%""}",57699,1,South America +2024-12-30,53455,7772,"[""Charger"", ""Headphones""]",3943.76,{},99789,0,North America +2023-07-10,53456,9429,"[""Wireless Mouse""]",2251.64,"{"""": ""13%""}",243133,0,Asia +2023-09-22,53457,8281,"[""Monitor"", ""Headphones"", ""Charger""]",2114.74,{},251351,0,Asia +2024-05-02,53458,8592,"[""Phone"", ""Monitor""]",4600.09,"{"""": ""14%""}",290226,0,Asia +2023-08-10,53459,9686,"[""Wireless Mouse"", ""Monitor""]",2066.46,"{""loyalty"": ""26%""}",38360,1,Asia +2023-08-15,53460,2929,"[""Laptop""]",4774.95,{},54856,0,Africa +2024-10-10,53461,7391,"[""Tablet"", ""Headphones""]",2971.4,{},37474,1,South America +2023-03-13,53462,7331,"[""Wireless Mouse""]",2580.83,{},208418,1,South America +2023-07-29,53463,4874,"[""Charger""]",4166.54,{},102906,0,Africa +2023-09-08,53464,433,"[""Laptop""]",624.07,{},267951,0,South America +2023-10-16,53465,7919,"[""Wireless Mouse"", ""Phone""]",642.68,"{""promo"": ""9%""}",297801,0,North America +2024-08-12,53466,6244,"[""Wireless Mouse"", ""Charger""]",1755.22,"{"""": ""15%""}",114235,1,Asia +2024-06-03,53467,4781,"[""Charger"", ""Keyboard""]",3897.41,{},164475,1,North America +2023-08-04,53468,837,"[""Tablet"", ""Charger"", ""Keyboard""]",2417.65,"{""loyalty"": ""23%""}",130031,1,Africa +2024-10-13,53469,4612,"[""Phone""]",2963.14,"{""loyalty"": ""11%""}",258160,1,Asia +2023-02-07,53470,7565,"[""Charger""]",2864.22,{},120681,0,South America +2023-02-11,53471,8409,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",399.76,"{""loyalty"": ""10%""}",70260,1,Africa +2023-07-16,53472,6366,"[""Phone"", ""Headphones"", ""Tablet""]",2684.17,{},1544,0,Asia +2023-11-16,53473,7012,"[""Tablet"", ""Headphones""]",3714.86,"{""seasonal"": ""12%""}",133819,1,Africa +2024-02-20,53474,6117,"[""Headphones""]",3429.65,{},227976,0,Europe +2024-09-24,53475,5472,"[""Monitor"", ""Phone"", ""Tablet""]",1133.01,{},6252,0,Africa +2024-05-03,53476,9720,"[""Wireless Mouse""]",3232.83,{},204711,1,Asia +2024-10-03,53477,6899,"[""Laptop"", ""Charger""]",1789.04,{},54088,1,North America +2024-09-18,53478,6661,"[""Laptop"", ""Keyboard""]",2473.3,"{""seasonal"": ""28%""}",154802,0,Africa +2023-07-21,53479,8287,"[""Tablet""]",4453.74,"{""seasonal"": ""10%""}",124946,0,Europe +2023-09-17,53480,7795,"[""Wireless Mouse"", ""Headphones""]",1162.6,{},19673,1,North America +2024-08-10,53481,7420,"[""Monitor""]",3403.32,{},246419,1,North America +2024-09-24,53482,8981,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",478.17,{},112975,0,Europe +2024-07-04,53483,2852,"[""Headphones""]",3116.08,{},18114,0,Africa +2023-04-16,53484,9045,"[""Phone"", ""Laptop""]",475.07,{},228347,0,North America +2024-11-27,53485,3284,"[""Charger""]",1375.68,"{""loyalty"": ""23%""}",9010,0,Europe +2024-01-13,53486,5886,"[""Phone"", ""Keyboard"", ""Headphones""]",4350.72,{},256364,1,Europe +2024-02-21,53487,5628,"[""Keyboard""]",3069.96,"{""seasonal"": ""22%""}",200246,0,North America +2023-03-17,53488,3802,"[""Headphones"", ""Monitor""]",4210.4,"{"""": ""13%""}",24175,1,Africa +2023-05-15,53489,7141,"[""Laptop"", ""Keyboard""]",2340.51,{},225472,1,South America +2024-08-15,53490,9966,"[""Phone""]",234.1,"{""promo"": ""26%""}",191468,1,South America +2024-02-08,53491,2386,"[""Tablet"", ""Charger""]",3208.74,"{""promo"": ""8%""}",245031,1,Asia +2023-10-16,53492,5376,"[""Headphones"", ""Keyboard"", ""Charger""]",900.84,{},298051,0,Europe +2023-01-23,53493,2931,"[""Tablet""]",2645.71,"{""seasonal"": ""12%""}",47609,0,Africa +2023-12-29,53494,9978,"[""Wireless Mouse""]",2144.37,{},150578,1,South America +2023-01-13,53495,5656,"[""Phone"", ""Keyboard""]",412.52,"{""loyalty"": ""28%""}",122873,1,Asia +2023-07-24,53496,7144,"[""Wireless Mouse"", ""Keyboard""]",2008.89,"{"""": ""25%""}",269844,0,Africa +2023-11-10,53497,6181,"[""Wireless Mouse"", ""Headphones""]",3956.99,"{""promo"": ""21%""}",240311,1,South America +2024-04-20,53498,9359,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3562.11,"{""seasonal"": ""13%""}",76111,0,Asia +2024-03-24,53499,4637,"[""Charger"", ""Laptop"", ""Monitor""]",1201.4,{},167210,0,Africa +2024-05-09,53500,9949,"[""Keyboard"", ""Monitor""]",4863.77,"{"""": ""26%""}",117287,1,South America +2024-03-10,53501,8332,"[""Charger"", ""Phone""]",2708.96,{},87095,1,Europe +2023-01-08,53502,4617,"[""Phone""]",4995.12,"{""promo"": ""14%""}",214884,1,North America +2023-06-30,53503,3078,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1239.52,{},198981,0,South America +2024-05-23,53504,1670,"[""Laptop"", ""Keyboard"", ""Monitor""]",610.04,"{""seasonal"": ""29%""}",179580,1,Africa +2023-12-12,53505,4305,"[""Charger"", ""Headphones""]",3447.09,{},86727,0,Europe +2023-03-17,53506,1674,"[""Phone"", ""Keyboard"", ""Laptop""]",2614.6,"{"""": ""13%""}",101121,0,North America +2023-06-03,53507,2222,"[""Wireless Mouse"", ""Charger""]",3600.87,"{""loyalty"": ""5%""}",9364,0,Europe +2023-04-27,53508,2999,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1862.75,{},140393,1,South America +2023-08-04,53509,6547,"[""Phone"", ""Monitor""]",3731.64,{},271506,0,Asia +2024-12-18,53510,149,"[""Laptop"", ""Monitor""]",3140.44,{},277454,1,South America +2023-05-21,53511,4276,"[""Monitor"", ""Tablet""]",871.29,{},201455,0,Africa +2023-10-19,53512,6599,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3105.09,"{""seasonal"": ""20%""}",295994,0,Europe +2024-08-11,53513,2697,"[""Laptop""]",554.93,{},231898,0,Africa +2024-06-03,53514,2935,"[""Laptop"", ""Keyboard"", ""Charger""]",584.55,{},139473,0,Asia +2024-07-16,53515,8812,"[""Wireless Mouse"", ""Monitor""]",1047.2,{},190591,0,North America +2023-01-05,53516,2021,"[""Tablet""]",2570.39,{},190392,1,Africa +2024-06-30,53517,7822,"[""Keyboard"", ""Headphones""]",1302.08,{},42397,1,Africa +2024-02-27,53518,7300,"[""Charger"", ""Headphones"", ""Monitor""]",2875.96,{},251922,0,Asia +2024-08-30,53519,6736,"[""Headphones"", ""Wireless Mouse""]",4453.49,"{""promo"": ""20%""}",20766,1,Asia +2023-12-29,53520,1548,"[""Keyboard""]",1352.91,"{""seasonal"": ""23%""}",138247,1,North America +2024-04-16,53521,7517,"[""Wireless Mouse""]",257.94,"{""seasonal"": ""12%""}",83753,1,Africa +2024-10-15,53522,3735,"[""Keyboard"", ""Monitor"", ""Headphones""]",4015.9,"{""loyalty"": ""22%""}",6806,1,South America +2024-05-20,53523,4625,"[""Charger"", ""Tablet"", ""Keyboard""]",2239.85,{},153619,1,North America +2024-01-02,53524,913,"[""Wireless Mouse"", ""Headphones""]",3920.06,"{""seasonal"": ""12%""}",243448,0,Africa +2024-02-04,53525,6892,"[""Monitor"", ""Phone""]",3889.53,"{""promo"": ""17%""}",33158,0,Africa +2024-11-12,53526,2517,"[""Laptop""]",1647.89,{},63635,0,South America +2024-12-05,53527,7191,"[""Tablet""]",3674.14,"{""loyalty"": ""19%""}",170699,0,Europe +2024-02-28,53528,2243,"[""Wireless Mouse"", ""Laptop""]",1222.07,"{"""": ""23%""}",65644,0,Asia +2024-12-31,53529,5034,"[""Monitor"", ""Charger""]",3906.37,"{""promo"": ""30%""}",235675,0,South America +2024-11-03,53530,9465,"[""Monitor""]",3911.89,{},92212,1,Africa +2024-08-24,53531,9077,"[""Headphones"", ""Monitor""]",1455.4,{},155436,0,Europe +2024-08-29,53532,5227,"[""Tablet"", ""Keyboard""]",3983.11,"{""loyalty"": ""14%""}",184782,1,Africa +2023-07-26,53533,6873,"[""Keyboard"", ""Wireless Mouse""]",1712.93,{},172979,1,North America +2023-07-29,53534,6157,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3227.02,{},107199,0,North America +2024-03-23,53535,27,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4396.87,{},173845,0,North America +2023-06-27,53536,4978,"[""Keyboard"", ""Tablet""]",4010.7,"{""promo"": ""8%""}",19524,1,Asia +2023-03-09,53537,9609,"[""Laptop""]",4851.28,"{""seasonal"": ""21%""}",122953,0,South America +2024-03-06,53538,4707,"[""Tablet"", ""Laptop"", ""Phone""]",2655.51,"{"""": ""20%""}",178564,0,Africa +2023-07-25,53539,4763,"[""Charger"", ""Keyboard""]",4882.69,{},82936,1,Europe +2023-03-28,53540,3870,"[""Monitor"", ""Charger"", ""Laptop""]",2880.55,{},233218,0,Asia +2024-02-17,53541,5061,"[""Wireless Mouse"", ""Monitor""]",3967.88,"{""promo"": ""26%""}",176149,1,Africa +2023-06-27,53542,3490,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",306.55,"{""seasonal"": ""24%""}",150269,1,South America +2024-06-08,53543,5946,"[""Tablet""]",4178.93,{},131656,1,Africa +2024-05-12,53544,8404,"[""Charger"", ""Laptop"", ""Monitor""]",3328.63,{},167234,1,South America +2024-12-13,53545,8762,"[""Wireless Mouse"", ""Charger""]",107.86,"{""seasonal"": ""22%""}",174656,1,South America +2024-01-27,53546,664,"[""Charger""]",4869.04,{},170067,1,South America +2023-02-15,53547,9924,"[""Phone"", ""Monitor"", ""Headphones""]",4899.29,"{""seasonal"": ""30%""}",38189,1,North America +2024-05-11,53548,709,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3081.96,{},216546,0,North America +2023-03-20,53549,8031,"[""Wireless Mouse"", ""Tablet""]",4277.61,"{""promo"": ""8%""}",21529,1,Africa +2024-05-06,53550,8204,"[""Charger"", ""Keyboard"", ""Tablet""]",4124.99,"{""loyalty"": ""26%""}",52129,1,Africa +2023-05-08,53551,7428,"[""Keyboard"", ""Tablet""]",2718.34,"{""promo"": ""9%""}",52167,0,North America +2024-04-30,53552,6531,"[""Laptop""]",3762.67,{},232537,1,Europe +2024-12-10,53553,33,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",600.85,{},2250,1,North America +2024-01-14,53554,309,"[""Tablet"", ""Keyboard""]",2888.61,{},37212,0,Asia +2023-05-18,53555,2981,"[""Phone"", ""Wireless Mouse""]",657.11,"{""loyalty"": ""18%""}",99186,1,North America +2024-06-11,53556,9557,"[""Charger""]",3398.6,"{""seasonal"": ""18%""}",169200,1,Asia +2024-03-07,53557,112,"[""Laptop"", ""Headphones"", ""Keyboard""]",1970.05,"{""loyalty"": ""25%""}",202656,0,South America +2023-03-20,53558,8706,"[""Wireless Mouse""]",1939.27,{},74995,1,Europe +2024-06-23,53559,8494,"[""Wireless Mouse""]",3048.05,"{""seasonal"": ""19%""}",159765,1,Europe +2023-03-02,53560,3216,"[""Laptop""]",3928.78,{},162920,0,Asia +2024-03-22,53561,5543,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4496.54,{},66957,0,South America +2024-10-30,53562,9933,"[""Headphones""]",2585.11,{},24083,0,North America +2024-10-17,53563,9863,"[""Monitor"", ""Phone""]",2787.98,{},166095,0,South America +2024-11-12,53564,6504,"[""Monitor"", ""Charger"", ""Laptop""]",3013.06,"{""seasonal"": ""16%""}",137688,1,Europe +2023-05-23,53565,3745,"[""Charger""]",1769.54,{},123909,1,South America +2023-08-05,53566,5788,"[""Charger"", ""Headphones"", ""Monitor""]",3898.47,{},53737,1,South America +2024-07-10,53567,1387,"[""Monitor""]",2685.6,"{"""": ""27%""}",206996,0,South America +2023-08-10,53568,5491,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1493.82,{},260904,1,North America +2023-07-14,53569,5931,"[""Phone"", ""Wireless Mouse""]",624.59,"{""promo"": ""11%""}",185672,0,North America +2023-10-24,53570,6696,"[""Monitor"", ""Wireless Mouse""]",3488.89,"{"""": ""10%""}",207207,1,Europe +2023-04-29,53571,1810,"[""Phone"", ""Wireless Mouse""]",886.23,{},259300,1,Africa +2024-03-24,53572,2645,"[""Keyboard"", ""Charger""]",1073.51,"{""loyalty"": ""13%""}",275185,1,Asia +2023-06-17,53573,4058,"[""Headphones""]",898.22,{},282121,1,South America +2023-04-01,53574,7017,"[""Laptop"", ""Tablet"", ""Keyboard""]",1845.73,{},4266,1,Europe +2024-09-02,53575,3565,"[""Laptop"", ""Tablet""]",1457.67,"{""promo"": ""6%""}",248478,0,South America +2023-06-10,53576,5774,"[""Monitor""]",793.41,"{""promo"": ""11%""}",95265,1,South America +2024-06-19,53577,2305,"[""Laptop"", ""Keyboard"", ""Tablet""]",1810.3,"{""seasonal"": ""27%""}",260358,1,Europe +2024-08-03,53578,8527,"[""Keyboard""]",4364.15,"{""promo"": ""14%""}",248811,0,South America +2024-09-04,53579,874,"[""Wireless Mouse"", ""Phone""]",1528.1,{},238501,0,South America +2024-01-24,53580,8326,"[""Monitor""]",621.41,"{""loyalty"": ""25%""}",74355,1,South America +2023-10-28,53581,5341,"[""Tablet""]",1722.78,"{""loyalty"": ""13%""}",203052,1,Europe +2023-04-11,53582,2716,"[""Tablet"", ""Keyboard"", ""Monitor""]",2285.28,{},232987,1,Africa +2024-01-03,53583,4897,"[""Headphones"", ""Phone"", ""Monitor""]",3144.86,{},274493,1,Asia +2023-12-12,53584,2439,"[""Headphones""]",76.17,"{""loyalty"": ""15%""}",82039,1,Asia +2024-08-05,53585,3692,"[""Laptop"", ""Phone"", ""Headphones""]",834.08,{},92554,0,South America +2024-09-04,53586,3036,"[""Keyboard""]",3557.51,"{""loyalty"": ""8%""}",22381,1,Asia +2024-10-25,53587,6078,"[""Keyboard""]",492.95,{},14820,0,Asia +2023-03-04,53588,8093,"[""Monitor"", ""Phone"", ""Tablet""]",1150.17,"{"""": ""24%""}",173060,0,South America +2023-06-23,53589,1516,"[""Wireless Mouse"", ""Monitor""]",4401.93,{},94402,1,North America +2023-11-08,53590,2027,"[""Laptop"", ""Tablet""]",4164.49,{},39924,0,Europe +2024-01-28,53591,3275,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",791.76,"{""seasonal"": ""23%""}",143158,0,Africa +2023-11-11,53592,8771,"[""Headphones""]",4399.42,"{""loyalty"": ""20%""}",93691,1,South America +2023-01-07,53593,1301,"[""Phone"", ""Keyboard"", ""Charger""]",2361.97,{},154736,0,North America +2024-08-31,53594,4291,"[""Wireless Mouse"", ""Laptop""]",2936.36,{},74431,1,Africa +2023-03-03,53595,9686,"[""Charger"", ""Keyboard"", ""Laptop""]",723.22,"{""seasonal"": ""12%""}",71213,0,Asia +2024-11-13,53596,1066,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2552.16,{},23768,1,Europe +2023-11-16,53597,1612,"[""Wireless Mouse"", ""Laptop""]",2734.66,"{""seasonal"": ""24%""}",160326,0,South America +2024-09-27,53598,6419,"[""Wireless Mouse"", ""Charger""]",3686.53,{},9190,1,Europe +2024-11-26,53599,4604,"[""Monitor"", ""Wireless Mouse""]",3828.11,{},264410,1,Africa +2023-08-29,53600,9846,"[""Charger""]",1957.87,{},1326,0,Africa +2023-12-02,53601,3909,"[""Phone"", ""Monitor""]",1861.16,"{""promo"": ""21%""}",149928,0,Asia +2024-01-27,53602,6093,"[""Phone"", ""Keyboard""]",245.32,"{""promo"": ""11%""}",60377,1,Europe +2024-02-13,53603,355,"[""Phone""]",77.3,{},254805,0,North America +2024-10-17,53604,3666,"[""Laptop""]",4687.51,"{""seasonal"": ""12%""}",296637,1,Europe +2024-09-18,53605,461,"[""Phone""]",1531.67,"{""loyalty"": ""29%""}",1669,0,South America +2024-09-26,53606,9037,"[""Phone"", ""Laptop"", ""Charger""]",1875.42,"{""loyalty"": ""9%""}",66233,1,North America +2023-07-27,53607,6786,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4319.16,"{""seasonal"": ""19%""}",212379,1,South America +2024-07-15,53608,6227,"[""Wireless Mouse""]",3658.28,"{""seasonal"": ""30%""}",172484,1,South America +2024-06-30,53609,140,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2774.46,{},80328,0,South America +2024-05-11,53610,6150,"[""Laptop"", ""Tablet""]",1335.94,{},195898,0,North America +2024-03-18,53611,3252,"[""Laptop""]",340.09,"{""seasonal"": ""28%""}",13516,1,Asia +2023-11-19,53612,7577,"[""Charger""]",943.46,"{""seasonal"": ""13%""}",25127,0,Asia +2024-11-25,53613,5496,"[""Phone"", ""Headphones""]",1004.54,"{""promo"": ""8%""}",6208,0,Asia +2023-04-19,53614,266,"[""Monitor""]",4978.7,"{""loyalty"": ""25%""}",62036,1,South America +2023-09-03,53615,9380,"[""Phone"", ""Laptop""]",682.18,"{"""": ""16%""}",198845,0,Africa +2024-02-01,53616,8770,"[""Charger""]",4486.54,{},87496,0,Asia +2024-03-11,53617,5276,"[""Phone""]",4092.11,{},70207,1,Asia +2024-02-09,53618,651,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2317.92,"{""promo"": ""18%""}",229675,1,Africa +2023-02-11,53619,1613,"[""Laptop""]",2922.55,{},74312,1,Africa +2024-11-01,53620,8944,"[""Monitor""]",3953.78,{},267496,1,North America +2023-10-17,53621,4913,"[""Charger""]",4795.97,"{""seasonal"": ""28%""}",85539,1,North America +2023-01-11,53622,9194,"[""Headphones""]",2926.59,{},62308,1,South America +2023-09-21,53623,1589,"[""Monitor""]",303.23,{},258776,0,Africa +2024-12-02,53624,3871,"[""Headphones"", ""Laptop"", ""Charger""]",2089.59,"{""seasonal"": ""13%""}",163880,1,South America +2024-09-22,53625,4690,"[""Laptop"", ""Headphones""]",2966.98,{},16705,0,Africa +2024-08-24,53626,5917,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1679.79,"{""promo"": ""15%""}",45367,0,Africa +2024-07-15,53627,6772,"[""Laptop""]",896.35,"{""loyalty"": ""23%""}",230305,0,Europe +2024-07-29,53628,59,"[""Laptop"", ""Phone"", ""Monitor""]",4493.94,"{""seasonal"": ""7%""}",48917,0,South America +2024-12-31,53629,3571,"[""Keyboard"", ""Tablet""]",329.07,"{"""": ""9%""}",165449,1,Africa +2023-01-07,53630,7527,"[""Keyboard""]",4106.23,{},88873,0,South America +2024-08-18,53631,5193,"[""Charger""]",996.2,{},174637,1,Africa +2024-11-07,53632,9980,"[""Laptop"", ""Monitor""]",2173.47,{},291492,1,South America +2024-03-16,53633,8311,"[""Charger"", ""Tablet""]",498.11,{},269705,0,Africa +2024-01-25,53634,8400,"[""Headphones"", ""Monitor""]",1302.84,{},11940,0,North America +2024-05-05,53635,3947,"[""Phone""]",3792.5,{},132373,1,Africa +2024-08-04,53636,9326,"[""Headphones"", ""Laptop"", ""Monitor""]",2496.31,{},123208,0,Africa +2023-09-25,53637,6084,"[""Headphones"", ""Laptop""]",3127.79,{},5251,0,Africa +2023-07-14,53638,704,"[""Tablet"", ""Monitor""]",272.7,"{"""": ""10%""}",290247,0,Europe +2023-03-05,53639,7738,"[""Tablet"", ""Headphones""]",4335.77,"{""seasonal"": ""24%""}",174156,1,Africa +2024-11-10,53640,3123,"[""Charger"", ""Monitor""]",1592.41,"{"""": ""6%""}",46470,0,Africa +2023-02-16,53641,8908,"[""Headphones"", ""Keyboard""]",3025.48,"{""seasonal"": ""26%""}",287014,0,North America +2023-12-05,53642,7628,"[""Charger"", ""Phone""]",1098.34,"{""seasonal"": ""16%""}",94571,1,Africa +2023-03-31,53643,5252,"[""Charger""]",714.86,{},96433,1,North America +2024-03-20,53644,2012,"[""Phone"", ""Headphones""]",2084.58,{},37525,1,Europe +2023-07-07,53645,4096,"[""Phone""]",2510.72,"{""seasonal"": ""29%""}",184421,1,Asia +2023-12-18,53646,6635,"[""Phone"", ""Keyboard""]",3110.11,"{""promo"": ""21%""}",80504,0,South America +2024-12-13,53647,266,"[""Monitor"", ""Phone""]",2949.44,{},135306,1,North America +2024-05-28,53648,1081,"[""Wireless Mouse""]",2940.43,"{""promo"": ""25%""}",170186,1,North America +2023-01-10,53649,5541,"[""Laptop"", ""Phone""]",4517.19,"{""promo"": ""19%""}",36560,0,Asia +2024-10-12,53650,7892,"[""Phone"", ""Monitor"", ""Tablet""]",4491.05,{},232456,0,Asia +2024-03-27,53651,1160,"[""Laptop""]",3247.69,{},233193,1,Europe +2023-06-29,53652,1361,"[""Laptop""]",3928.81,"{""seasonal"": ""19%""}",245379,1,Europe +2023-07-16,53653,6677,"[""Keyboard"", ""Tablet""]",3553.88,"{""promo"": ""25%""}",193807,0,South America +2023-09-22,53654,9008,"[""Laptop"", ""Charger""]",2021.92,"{""loyalty"": ""19%""}",292417,1,Asia +2023-08-25,53655,727,"[""Phone"", ""Charger"", ""Keyboard""]",1543.67,{},270383,1,North America +2024-09-01,53656,3958,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1514.71,"{""promo"": ""18%""}",39914,1,South America +2024-02-12,53657,8977,"[""Phone""]",4373.3,{},239651,0,North America +2023-02-14,53658,6107,"[""Headphones"", ""Keyboard""]",2690.03,"{""seasonal"": ""20%""}",200089,1,North America +2024-06-29,53659,6694,"[""Charger""]",4851.47,"{""loyalty"": ""29%""}",131800,1,South America +2024-01-20,53660,477,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2177.47,"{""loyalty"": ""20%""}",222611,0,Africa +2023-10-25,53661,5728,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3518.02,{},243488,1,Africa +2024-10-15,53662,577,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1383.28,{},262343,1,Asia +2023-03-15,53663,9303,"[""Laptop""]",4655.1,"{""seasonal"": ""17%""}",244979,0,North America +2024-03-20,53664,3536,"[""Tablet""]",2701.56,{},240361,0,South America +2024-06-03,53665,2421,"[""Monitor""]",2459.9,{},179687,0,Africa +2023-05-11,53666,4762,"[""Tablet"", ""Laptop""]",4548.2,{},287210,1,North America +2023-04-21,53667,5718,"[""Charger"", ""Phone""]",3028.68,"{""promo"": ""27%""}",254805,1,Africa +2024-09-20,53668,6642,"[""Tablet"", ""Keyboard""]",1068.2,"{""promo"": ""8%""}",283720,0,Europe +2024-12-26,53669,5785,"[""Monitor"", ""Phone""]",3684.8,"{"""": ""10%""}",151478,1,Asia +2023-02-12,53670,6132,"[""Keyboard"", ""Laptop""]",2374.2,{},145306,0,Africa +2024-05-02,53671,1226,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1960.39,{},101606,0,Europe +2023-03-05,53672,2687,"[""Keyboard"", ""Tablet""]",3403.31,"{""loyalty"": ""26%""}",156738,0,Europe +2023-12-20,53673,5026,"[""Tablet"", ""Monitor""]",942.14,{},188339,0,Africa +2023-05-22,53674,8954,"[""Monitor"", ""Tablet"", ""Phone""]",4241.0,{},99271,0,Africa +2023-11-17,53675,8917,"[""Laptop"", ""Monitor""]",2197.58,{},29131,0,Europe +2023-03-23,53676,3361,"[""Headphones"", ""Charger""]",2337.28,"{""promo"": ""14%""}",285048,1,North America +2024-06-29,53677,5667,"[""Headphones""]",2662.69,{},138473,0,Asia +2023-03-01,53678,6598,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1041.34,{},164940,1,Africa +2023-01-27,53679,6604,"[""Tablet""]",464.69,"{""seasonal"": ""26%""}",110323,1,North America +2024-01-29,53680,429,"[""Wireless Mouse""]",2770.39,{},282044,0,Africa +2023-10-03,53681,9951,"[""Wireless Mouse"", ""Monitor""]",1673.53,"{""seasonal"": ""23%""}",50447,1,Europe +2023-05-23,53682,1664,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1428.01,{},121080,0,North America +2023-01-03,53683,5886,"[""Monitor"", ""Wireless Mouse""]",3325.06,{},279279,1,Europe +2023-06-12,53684,6669,"[""Phone"", ""Keyboard"", ""Charger""]",994.56,{},39332,0,North America +2023-06-13,53685,3511,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2689.66,{},243442,0,Europe +2024-01-14,53686,1665,"[""Headphones"", ""Wireless Mouse""]",2657.16,"{""loyalty"": ""13%""}",161084,0,Europe +2023-10-10,53687,9708,"[""Monitor""]",1100.21,{},91824,1,Africa +2023-09-14,53688,3399,"[""Monitor""]",4499.03,"{""seasonal"": ""20%""}",229916,1,Europe +2023-03-19,53689,2658,"[""Laptop"", ""Tablet""]",1686.79,{},100795,1,Africa +2024-11-14,53690,6040,"[""Headphones"", ""Monitor""]",2629.19,{},224633,1,South America +2024-03-14,53691,497,"[""Headphones"", ""Tablet"", ""Laptop""]",1079.54,"{"""": ""30%""}",7300,1,North America +2024-03-30,53692,3607,"[""Phone"", ""Laptop"", ""Monitor""]",3957.29,{},147071,1,Africa +2024-08-18,53693,5747,"[""Keyboard""]",4495.62,"{""seasonal"": ""7%""}",97182,0,Africa +2024-05-24,53694,15,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3543.49,{},252037,1,Africa +2024-07-17,53695,5101,"[""Headphones"", ""Keyboard""]",3573.99,{},76270,0,Asia +2024-01-01,53696,4531,"[""Laptop""]",3030.86,{},71748,0,Europe +2024-03-15,53697,1090,"[""Headphones"", ""Laptop""]",800.69,"{""loyalty"": ""6%""}",185534,1,Africa +2023-09-06,53698,3593,"[""Wireless Mouse"", ""Headphones""]",756.39,{},91863,1,Europe +2023-03-23,53699,4982,"[""Tablet"", ""Charger""]",3988.53,"{""loyalty"": ""13%""}",245321,1,Europe +2024-10-31,53700,8450,"[""Laptop"", ""Keyboard""]",4248.4,{},267272,1,Europe +2023-10-19,53701,8321,"[""Headphones"", ""Wireless Mouse""]",697.24,{},50159,0,Europe +2024-12-06,53702,7883,"[""Tablet""]",2345.53,{},95699,1,North America +2023-07-09,53703,115,"[""Charger"", ""Tablet""]",4499.67,{},101394,0,Asia +2023-04-26,53704,9101,"[""Laptop"", ""Phone"", ""Monitor""]",1557.09,{},47004,1,Europe +2023-07-05,53705,7303,"[""Monitor""]",1338.26,"{"""": ""20%""}",25483,1,Africa +2024-11-12,53706,8773,"[""Tablet"", ""Headphones""]",1200.2,"{""promo"": ""10%""}",107402,1,Europe +2023-01-24,53707,8107,"[""Headphones""]",409.46,{},204239,1,North America +2024-10-11,53708,746,"[""Tablet"", ""Laptop"", ""Charger""]",4296.21,"{""loyalty"": ""26%""}",180447,1,Asia +2024-12-13,53709,4994,"[""Laptop"", ""Phone""]",3279.57,"{""seasonal"": ""10%""}",215285,1,Europe +2024-01-04,53710,7653,"[""Headphones"", ""Phone"", ""Monitor""]",4270.7,"{""promo"": ""14%""}",156760,1,South America +2023-10-26,53711,8977,"[""Phone"", ""Wireless Mouse""]",4996.99,"{""promo"": ""26%""}",299933,0,Africa +2024-06-02,53712,5080,"[""Keyboard""]",316.0,"{""loyalty"": ""14%""}",140241,1,South America +2023-01-06,53713,9885,"[""Headphones"", ""Laptop"", ""Tablet""]",1407.92,"{"""": ""6%""}",71076,1,Asia +2023-05-20,53714,6393,"[""Headphones"", ""Monitor""]",467.25,"{""loyalty"": ""28%""}",4460,1,Asia +2023-04-11,53715,893,"[""Headphones"", ""Laptop"", ""Monitor""]",4777.41,{},258859,1,North America +2023-04-19,53716,3449,"[""Laptop"", ""Tablet""]",708.9,"{""promo"": ""17%""}",226216,0,South America +2024-05-25,53717,2296,"[""Laptop""]",3757.67,"{""seasonal"": ""26%""}",247114,0,Asia +2023-05-31,53718,6773,"[""Phone"", ""Wireless Mouse""]",3172.83,"{""seasonal"": ""14%""}",254327,0,North America +2024-08-05,53719,4210,"[""Charger""]",3321.24,"{""loyalty"": ""12%""}",35111,1,South America +2024-03-29,53720,8633,"[""Laptop""]",2277.15,{},118293,1,Africa +2024-04-30,53721,1807,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2297.23,{},145650,1,South America +2023-11-02,53722,3326,"[""Monitor""]",1347.85,{},97214,1,Europe +2023-02-12,53723,7186,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1672.22,{},250449,1,Asia +2023-09-08,53724,7700,"[""Tablet"", ""Charger""]",2728.57,"{"""": ""30%""}",15136,0,Africa +2023-11-18,53725,1567,"[""Phone"", ""Laptop""]",1311.94,"{""promo"": ""7%""}",251351,0,North America +2024-02-03,53726,6206,"[""Monitor"", ""Tablet""]",1228.67,"{""promo"": ""16%""}",276890,1,South America +2024-09-21,53727,7757,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3417.73,{},75202,1,Africa +2024-01-13,53728,5213,"[""Laptop""]",744.56,"{""loyalty"": ""13%""}",166105,0,Asia +2024-10-12,53729,7815,"[""Wireless Mouse"", ""Charger""]",4351.3,{},198280,0,Africa +2024-06-28,53730,4258,"[""Charger"", ""Tablet"", ""Laptop""]",3911.52,{},113804,0,Asia +2024-05-31,53731,7761,"[""Monitor"", ""Laptop"", ""Headphones""]",4377.05,{},27330,0,North America +2024-08-27,53732,1395,"[""Charger"", ""Phone"", ""Keyboard""]",4378.55,{},25870,0,Africa +2023-12-16,53733,5708,"[""Tablet""]",3254.56,{},199247,0,Europe +2024-06-13,53734,2046,"[""Charger"", ""Phone"", ""Keyboard""]",74.59,{},4255,1,Europe +2024-10-15,53735,4222,"[""Keyboard"", ""Monitor""]",786.12,{},85766,1,Africa +2024-12-31,53736,2580,"[""Phone"", ""Laptop""]",4601.84,{},43295,1,Africa +2024-02-22,53737,3311,"[""Wireless Mouse"", ""Laptop""]",459.27,"{""seasonal"": ""11%""}",225031,0,Africa +2024-05-12,53738,163,"[""Phone"", ""Laptop"", ""Monitor""]",358.41,{},96833,0,Africa +2023-09-16,53739,6815,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",930.4,{},205029,0,North America +2024-02-18,53740,3186,"[""Wireless Mouse""]",4801.06,{},153959,0,North America +2023-03-09,53741,9836,"[""Laptop"", ""Wireless Mouse""]",1964.54,"{""loyalty"": ""30%""}",181274,0,Asia +2024-09-07,53742,6861,"[""Charger"", ""Headphones""]",1847.65,"{""promo"": ""16%""}",280674,0,Europe +2023-04-12,53743,5843,"[""Monitor"", ""Tablet"", ""Keyboard""]",4560.88,"{""promo"": ""27%""}",262263,1,South America +2023-01-05,53744,3839,"[""Monitor"", ""Laptop""]",77.93,{},242209,0,Asia +2024-08-30,53745,8120,"[""Monitor"", ""Tablet"", ""Headphones""]",2122.06,{},16702,0,North America +2023-09-19,53746,9550,"[""Tablet"", ""Phone""]",3003.74,{},259064,0,Africa +2023-03-24,53747,4563,"[""Tablet"", ""Headphones"", ""Charger""]",443.53,"{""promo"": ""28%""}",238540,1,Africa +2023-10-28,53748,1873,"[""Laptop"", ""Keyboard"", ""Charger""]",4134.3,{},159414,0,North America +2024-01-07,53749,1228,"[""Headphones"", ""Phone""]",3989.59,"{""seasonal"": ""20%""}",151541,1,North America +2024-11-15,53750,1983,"[""Monitor""]",496.88,{},118307,1,South America +2023-05-22,53751,6034,"[""Laptop""]",3118.78,"{""promo"": ""30%""}",247533,0,Asia +2024-02-20,53752,7489,"[""Headphones""]",3608.55,{},108639,1,Europe +2024-03-23,53753,7889,"[""Tablet""]",4906.22,"{"""": ""18%""}",21268,1,Europe +2024-11-28,53754,3584,"[""Charger""]",835.95,{},276408,1,South America +2024-05-16,53755,3403,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3684.42,{},219006,1,Europe +2024-06-11,53756,9721,"[""Phone"", ""Headphones""]",3450.72,{},285200,1,Asia +2023-01-16,53757,3246,"[""Charger"", ""Laptop""]",3196.66,{},288127,1,North America +2023-07-18,53758,3171,"[""Wireless Mouse"", ""Headphones""]",3305.07,"{""promo"": ""13%""}",158624,1,South America +2023-09-14,53759,384,"[""Laptop""]",315.78,"{""seasonal"": ""20%""}",149320,1,South America +2024-07-27,53760,3675,"[""Wireless Mouse""]",329.81,{},90166,1,Africa +2023-10-02,53761,3050,"[""Headphones"", ""Laptop"", ""Monitor""]",871.78,"{""promo"": ""26%""}",45220,1,South America +2023-04-19,53762,3665,"[""Laptop"", ""Headphones"", ""Charger""]",1841.81,{},91614,0,South America +2023-02-27,53763,2599,"[""Keyboard"", ""Headphones""]",2966.04,"{""seasonal"": ""10%""}",169205,1,Africa +2024-11-28,53764,6546,"[""Keyboard"", ""Charger"", ""Monitor""]",4414.74,"{""seasonal"": ""29%""}",4496,1,Asia +2024-12-20,53765,4122,"[""Laptop"", ""Charger""]",652.97,{},100591,1,Asia +2024-08-22,53766,7456,"[""Tablet""]",878.43,"{""promo"": ""21%""}",50508,1,Africa +2023-03-12,53767,3412,"[""Charger"", ""Keyboard""]",3357.85,{},65948,1,Asia +2023-01-30,53768,8036,"[""Headphones""]",2766.19,{},204344,1,North America +2024-12-14,53769,9818,"[""Charger""]",635.38,{},209006,1,Europe +2024-02-10,53770,5969,"[""Phone""]",446.15,{},28997,0,Asia +2024-04-12,53771,8664,"[""Tablet"", ""Keyboard"", ""Phone""]",1134.4,"{"""": ""15%""}",198042,0,North America +2023-08-23,53772,197,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",96.42,{},117133,1,Europe +2023-02-21,53773,9584,"[""Charger""]",4649.43,"{"""": ""29%""}",81798,0,Africa +2023-01-30,53774,8042,"[""Headphones"", ""Tablet""]",3933.33,{},69046,0,Asia +2023-03-29,53775,2048,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",933.69,"{""loyalty"": ""19%""}",130343,1,Africa +2023-12-14,53776,8909,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1459.39,{},1610,1,Asia +2024-04-20,53777,7141,"[""Monitor"", ""Charger""]",1027.42,{},246255,1,Africa +2024-07-23,53778,4904,"[""Tablet"", ""Phone"", ""Keyboard""]",3532.93,{},201388,0,North America +2023-12-01,53779,2300,"[""Headphones"", ""Phone"", ""Laptop""]",1431.37,"{""loyalty"": ""21%""}",185351,1,South America +2024-03-11,53780,7529,"[""Charger""]",2639.29,"{""loyalty"": ""21%""}",244046,0,South America +2024-06-29,53781,1083,"[""Headphones"", ""Phone""]",328.2,"{"""": ""15%""}",13304,0,Africa +2024-06-01,53782,6533,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2621.61,{},237309,0,Europe +2024-04-26,53783,6171,"[""Headphones""]",1796.21,"{""promo"": ""6%""}",21001,1,Europe +2024-07-04,53784,5560,"[""Keyboard""]",3878.91,{},255951,0,Asia +2024-02-27,53785,341,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2662.71,{},234621,0,Africa +2023-05-31,53786,2739,"[""Charger""]",3529.29,{},50349,1,Asia +2024-08-07,53787,1150,"[""Charger""]",2785.31,{},32144,0,Africa +2024-08-24,53788,6960,"[""Phone"", ""Laptop""]",3941.31,"{"""": ""5%""}",293497,0,South America +2024-08-27,53789,4157,"[""Monitor"", ""Wireless Mouse""]",1660.8,{},95786,0,Asia +2024-11-28,53790,2463,"[""Monitor"", ""Charger"", ""Headphones""]",1955.41,"{""loyalty"": ""11%""}",241303,0,South America +2023-02-08,53791,4967,"[""Phone"", ""Charger""]",4119.34,"{""loyalty"": ""14%""}",187008,0,North America +2024-09-23,53792,2649,"[""Laptop""]",2744.22,"{""loyalty"": ""14%""}",82888,0,Europe +2023-10-18,53793,880,"[""Charger"", ""Headphones"", ""Keyboard""]",3737.22,"{""promo"": ""7%""}",62234,0,Africa +2024-09-26,53794,9650,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2501.22,{},123340,1,Africa +2024-11-23,53795,2541,"[""Charger"", ""Headphones"", ""Monitor""]",1412.13,"{"""": ""9%""}",154066,1,North America +2023-11-06,53796,1762,"[""Keyboard""]",1963.07,{},202593,0,North America +2024-11-04,53797,1149,"[""Keyboard"", ""Laptop"", ""Phone""]",4186.56,"{""promo"": ""24%""}",120120,1,North America +2023-02-22,53798,256,"[""Laptop""]",2856.93,{},276495,0,North America +2023-04-16,53799,7471,"[""Monitor""]",4040.12,"{""promo"": ""16%""}",17444,1,Europe +2024-11-11,53800,8687,"[""Headphones"", ""Keyboard"", ""Monitor""]",4916.95,"{""loyalty"": ""29%""}",89850,0,Asia +2023-04-06,53801,3203,"[""Wireless Mouse"", ""Headphones""]",1034.77,"{"""": ""27%""}",294022,1,Africa +2023-07-20,53802,5344,"[""Wireless Mouse"", ""Headphones""]",4180.66,"{""promo"": ""25%""}",82417,1,Asia +2024-10-04,53803,8655,"[""Keyboard"", ""Charger"", ""Monitor""]",3704.01,{},219784,0,South America +2023-03-18,53804,412,"[""Keyboard"", ""Phone""]",1573.13,{},272335,1,Europe +2023-03-12,53805,9483,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4071.66,{},94710,1,Europe +2024-09-06,53806,9517,"[""Charger""]",2285.1,{},138999,1,Africa +2023-09-12,53807,3768,"[""Wireless Mouse"", ""Monitor""]",1844.75,"{""promo"": ""11%""}",27663,0,Africa +2024-03-15,53808,2890,"[""Headphones"", ""Monitor""]",2354.08,"{"""": ""28%""}",285136,0,Asia +2024-12-28,53809,6043,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",748.53,{},215698,0,North America +2023-12-11,53810,528,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4389.03,"{""promo"": ""18%""}",182012,0,Africa +2023-01-21,53811,5400,"[""Keyboard"", ""Monitor"", ""Tablet""]",1275.93,"{""promo"": ""12%""}",200624,0,North America +2024-03-26,53812,6718,"[""Keyboard"", ""Tablet"", ""Monitor""]",2371.03,{},97112,0,Africa +2023-06-15,53813,651,"[""Monitor"", ""Charger"", ""Keyboard""]",2312.65,"{""promo"": ""24%""}",90156,0,Asia +2023-09-11,53814,7157,"[""Headphones"", ""Laptop""]",2522.3,"{""promo"": ""17%""}",186798,0,Africa +2024-11-19,53815,2269,"[""Phone"", ""Keyboard"", ""Monitor""]",634.25,"{""loyalty"": ""20%""}",233510,0,North America +2024-10-14,53816,3335,"[""Phone"", ""Charger"", ""Keyboard""]",182.18,{},243335,1,Africa +2023-08-30,53817,7337,"[""Monitor"", ""Phone"", ""Tablet""]",2991.43,"{""promo"": ""17%""}",38486,1,Europe +2024-09-01,53818,6877,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",425.19,{},111711,0,North America +2024-12-27,53819,8381,"[""Headphones""]",3029.86,{},161297,0,Africa +2024-11-29,53820,5584,"[""Headphones""]",2008.3,{},77068,1,Africa +2023-07-09,53821,304,"[""Charger""]",681.68,"{""seasonal"": ""29%""}",219848,1,Asia +2023-03-03,53822,2691,"[""Charger"", ""Monitor""]",2432.65,"{"""": ""18%""}",269177,0,South America +2023-05-05,53823,1329,"[""Headphones""]",3983.88,"{""loyalty"": ""15%""}",45329,0,Africa +2023-01-09,53824,111,"[""Phone"", ""Charger""]",4550.97,"{""seasonal"": ""11%""}",30244,0,Asia +2024-11-01,53825,1104,"[""Keyboard"", ""Headphones""]",1509.11,{},227349,1,South America +2023-08-07,53826,2202,"[""Tablet"", ""Charger""]",496.35,{},100001,1,North America +2024-08-17,53827,2180,"[""Tablet"", ""Keyboard"", ""Phone""]",3940.19,{},143647,1,Europe +2024-05-26,53828,3688,"[""Tablet"", ""Keyboard""]",2832.71,"{""loyalty"": ""6%""}",224540,1,Europe +2024-07-17,53829,7234,"[""Phone"", ""Keyboard"", ""Monitor""]",445.84,{},282906,0,Europe +2024-06-14,53830,2690,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1235.64,"{""loyalty"": ""19%""}",273067,0,North America +2023-09-08,53831,8108,"[""Phone""]",1288.33,"{"""": ""25%""}",266757,1,Asia +2023-07-30,53832,7081,"[""Headphones"", ""Phone""]",1605.71,"{"""": ""27%""}",113783,1,North America +2024-10-27,53833,7953,"[""Charger"", ""Headphones"", ""Laptop""]",4070.92,"{"""": ""16%""}",62890,1,Africa +2023-02-04,53834,8351,"[""Wireless Mouse"", ""Phone""]",566.45,{},249913,0,North America +2024-12-03,53835,3215,"[""Phone"", ""Keyboard""]",4246.37,"{""promo"": ""7%""}",160048,0,Asia +2024-01-05,53836,2757,"[""Wireless Mouse"", ""Phone""]",493.21,"{""seasonal"": ""19%""}",5431,0,Africa +2023-07-22,53837,1982,"[""Wireless Mouse"", ""Charger""]",4855.69,{},48027,0,Africa +2024-02-29,53838,4074,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1922.45,"{""seasonal"": ""22%""}",3110,0,North America +2023-04-17,53839,947,"[""Monitor""]",3012.37,"{""seasonal"": ""29%""}",87606,1,Europe +2023-03-21,53840,4972,"[""Phone""]",4992.4,"{""seasonal"": ""23%""}",10374,1,Europe +2023-09-09,53841,8369,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2132.73,"{""promo"": ""23%""}",20983,1,South America +2023-12-05,53842,2926,"[""Tablet""]",1521.9,"{""loyalty"": ""22%""}",192176,0,Africa +2023-07-17,53843,5975,"[""Headphones"", ""Laptop""]",2771.28,"{""seasonal"": ""27%""}",169978,0,Europe +2023-03-28,53844,5936,"[""Monitor"", ""Charger"", ""Phone""]",444.42,"{""promo"": ""30%""}",149884,1,South America +2024-12-14,53845,8660,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3316.78,"{""loyalty"": ""10%""}",183895,1,Africa +2023-08-25,53846,1101,"[""Keyboard"", ""Tablet"", ""Charger""]",1889.36,"{""loyalty"": ""11%""}",92162,0,Europe +2024-12-18,53847,2247,"[""Headphones""]",4231.79,"{""promo"": ""8%""}",135897,0,Africa +2023-12-31,53848,6314,"[""Keyboard""]",3358.93,"{""loyalty"": ""10%""}",119045,1,North America +2023-01-24,53849,3456,"[""Charger""]",758.67,"{""seasonal"": ""11%""}",254593,1,Africa +2024-03-13,53850,8921,"[""Keyboard"", ""Wireless Mouse""]",425.01,{},89579,0,Africa +2023-06-30,53851,4832,"[""Charger""]",1398.59,"{""promo"": ""16%""}",203726,0,Europe +2023-02-23,53852,6953,"[""Wireless Mouse"", ""Phone""]",3197.85,{},239980,0,North America +2023-05-23,53853,8719,"[""Charger""]",4156.84,{},227630,1,North America +2024-11-05,53854,5412,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2709.7,{},1756,1,Africa +2024-01-10,53855,4299,"[""Laptop"", ""Monitor"", ""Keyboard""]",839.93,{},195648,1,Africa +2023-07-14,53856,6456,"[""Monitor""]",1556.6,"{""loyalty"": ""23%""}",145447,1,Europe +2023-04-25,53857,6416,"[""Tablet""]",3076.02,{},263553,0,Africa +2024-06-13,53858,9810,"[""Phone""]",3916.3,"{""promo"": ""26%""}",208801,0,South America +2024-05-03,53859,2197,"[""Headphones""]",1323.45,"{""promo"": ""11%""}",137027,1,Asia +2024-07-12,53860,7081,"[""Headphones""]",4882.44,{},226982,0,Europe +2024-08-31,53861,124,"[""Wireless Mouse"", ""Laptop""]",4422.38,{},80511,1,Europe +2024-02-22,53862,814,"[""Tablet"", ""Phone""]",755.41,{},285441,1,South America +2023-01-20,53863,3795,"[""Monitor"", ""Keyboard""]",4897.51,"{""seasonal"": ""30%""}",31192,0,Asia +2024-05-07,53864,1899,"[""Phone""]",3620.81,{},167385,1,Asia +2023-10-06,53865,6964,"[""Tablet"", ""Keyboard""]",2664.94,"{""loyalty"": ""19%""}",82133,0,South America +2024-03-12,53866,6926,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3839.08,"{""promo"": ""7%""}",245757,0,South America +2023-10-10,53867,269,"[""Headphones"", ""Monitor""]",3638.64,"{""loyalty"": ""7%""}",34953,1,Asia +2024-08-25,53868,3709,"[""Monitor""]",1751.92,"{""seasonal"": ""28%""}",23579,0,North America +2023-09-29,53869,7876,"[""Tablet"", ""Phone"", ""Charger""]",3563.72,"{""promo"": ""25%""}",289136,1,Asia +2023-05-14,53870,5646,"[""Laptop"", ""Monitor""]",371.39,"{""loyalty"": ""21%""}",272003,0,Africa +2023-05-09,53871,8235,"[""Wireless Mouse"", ""Phone""]",4487.35,{},142376,0,Asia +2024-03-24,53872,4688,"[""Tablet""]",1048.27,"{""seasonal"": ""7%""}",116152,0,Asia +2023-09-12,53873,4150,"[""Wireless Mouse""]",413.41,"{""promo"": ""7%""}",13822,0,Africa +2023-09-21,53874,4495,"[""Wireless Mouse"", ""Monitor""]",2012.73,{},21690,1,Africa +2024-04-20,53875,4299,"[""Monitor""]",4574.81,{},245777,1,South America +2023-10-22,53876,9107,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2017.22,"{""loyalty"": ""11%""}",229853,0,North America +2023-03-04,53877,6371,"[""Headphones""]",1107.38,"{""promo"": ""18%""}",256932,0,Asia +2023-02-13,53878,7160,"[""Keyboard"", ""Tablet"", ""Phone""]",91.96,"{"""": ""25%""}",234861,0,Europe +2023-10-19,53879,3263,"[""Monitor""]",3063.14,"{""promo"": ""28%""}",30538,0,South America +2023-04-18,53880,674,"[""Phone"", ""Monitor"", ""Headphones""]",1026.91,"{""loyalty"": ""5%""}",9555,1,North America +2024-08-14,53881,8863,"[""Charger""]",1809.66,{},41949,1,Asia +2023-06-25,53882,1685,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4365.71,{},231818,0,North America +2024-11-19,53883,2157,"[""Wireless Mouse"", ""Keyboard""]",4369.6,"{"""": ""10%""}",174157,0,South America +2023-09-05,53884,3768,"[""Phone"", ""Keyboard""]",152.1,{},255864,1,South America +2024-11-20,53885,5605,"[""Monitor"", ""Charger""]",1988.47,"{""seasonal"": ""22%""}",28043,1,Africa +2023-04-29,53886,8239,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3118.97,"{""loyalty"": ""18%""}",56784,1,Asia +2024-01-08,53887,4751,"[""Laptop"", ""Monitor"", ""Charger""]",4397.75,"{"""": ""25%""}",217069,0,Africa +2024-07-26,53888,1044,"[""Phone"", ""Laptop""]",2798.36,"{"""": ""12%""}",267305,1,North America +2024-05-24,53889,5050,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4121.03,"{""promo"": ""23%""}",160191,0,Africa +2024-11-28,53890,3345,"[""Monitor""]",2052.87,"{""promo"": ""10%""}",67745,1,South America +2024-04-17,53891,2192,"[""Monitor""]",3273.42,{},21780,1,Asia +2024-05-31,53892,6343,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2954.27,"{""seasonal"": ""22%""}",142099,1,Africa +2023-08-09,53893,3764,"[""Wireless Mouse"", ""Tablet""]",364.86,{},6678,0,South America +2023-08-12,53894,5082,"[""Headphones"", ""Keyboard""]",3888.18,{},134298,1,South America +2024-05-30,53895,3171,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2619.82,"{""loyalty"": ""6%""}",124723,1,North America +2023-01-10,53896,84,"[""Tablet"", ""Phone""]",2391.24,"{""seasonal"": ""25%""}",30807,1,Africa +2024-10-07,53897,47,"[""Keyboard""]",3595.47,{},252590,0,Europe +2023-08-09,53898,9290,"[""Keyboard"", ""Laptop"", ""Phone""]",696.86,{},124866,1,North America +2023-07-14,53899,2728,"[""Keyboard"", ""Monitor""]",4771.73,"{""seasonal"": ""24%""}",204651,0,Asia +2024-04-20,53900,1542,"[""Charger"", ""Wireless Mouse""]",2962.64,"{""promo"": ""24%""}",99591,0,North America +2024-08-18,53901,7705,"[""Laptop"", ""Charger""]",3131.99,"{"""": ""12%""}",278621,0,Europe +2023-06-29,53902,6073,"[""Keyboard"", ""Charger""]",2049.7,"{"""": ""9%""}",99532,0,South America +2023-02-25,53903,1897,"[""Headphones""]",1734.47,{},26477,1,North America +2023-11-07,53904,7771,"[""Phone""]",1424.13,{},190902,1,Europe +2024-06-14,53905,5963,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",890.92,{},6073,1,North America +2024-06-06,53906,9379,"[""Tablet""]",4692.17,"{""promo"": ""11%""}",172396,1,Europe +2024-01-10,53907,3207,"[""Laptop""]",2317.19,{},46471,0,Africa +2023-04-20,53908,9297,"[""Laptop"", ""Wireless Mouse""]",4973.71,{},95028,1,North America +2023-05-25,53909,9433,"[""Keyboard""]",2425.66,"{""seasonal"": ""30%""}",157714,1,Europe +2024-10-05,53910,1114,"[""Phone"", ""Tablet""]",4741.53,"{""loyalty"": ""13%""}",274883,0,Europe +2024-11-30,53911,1669,"[""Laptop"", ""Keyboard""]",1528.76,{},147640,0,South America +2023-04-20,53912,3098,"[""Monitor"", ""Charger""]",2881.42,"{""loyalty"": ""11%""}",161296,0,North America +2024-02-22,53913,7154,"[""Wireless Mouse"", ""Headphones""]",4025.65,"{""seasonal"": ""10%""}",163012,1,Asia +2024-03-20,53914,7555,"[""Tablet"", ""Phone""]",1045.94,{},21345,0,Africa +2023-10-03,53915,7956,"[""Phone""]",279.79,"{""seasonal"": ""12%""}",103229,1,Asia +2024-01-19,53916,132,"[""Keyboard""]",4182.16,{},202051,1,Europe +2023-01-02,53917,9905,"[""Keyboard"", ""Laptop"", ""Tablet""]",2264.42,{},75530,1,South America +2023-10-06,53918,6993,"[""Tablet"", ""Monitor""]",3680.9,"{""seasonal"": ""17%""}",265654,1,North America +2023-03-29,53919,2458,"[""Monitor"", ""Charger"", ""Keyboard""]",613.4,"{""loyalty"": ""5%""}",293531,0,North America +2024-09-17,53920,8712,"[""Headphones""]",4648.5,"{""loyalty"": ""19%""}",51768,0,Africa +2024-04-15,53921,9114,"[""Headphones""]",2447.79,"{""loyalty"": ""27%""}",208449,0,North America +2024-07-03,53922,6910,"[""Monitor"", ""Tablet"", ""Keyboard""]",4168.77,"{""loyalty"": ""21%""}",278609,0,Africa +2023-09-10,53923,1815,"[""Laptop"", ""Monitor""]",1699.17,{},135941,0,Asia +2023-10-01,53924,3051,"[""Phone"", ""Headphones""]",3179.55,"{""promo"": ""12%""}",263815,1,Asia +2023-02-25,53925,149,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4300.3,{},289790,0,Asia +2023-07-16,53926,2443,"[""Laptop""]",183.68,{},297934,0,North America +2023-10-05,53927,8946,"[""Phone"", ""Charger""]",1685.87,{},238189,0,North America +2023-12-13,53928,8829,"[""Keyboard""]",2209.66,{},129509,1,Africa +2024-05-12,53929,5278,"[""Charger"", ""Tablet""]",733.44,{},132273,1,Europe +2024-01-31,53930,1949,"[""Wireless Mouse""]",618.47,{},297025,0,North America +2023-05-08,53931,5732,"[""Wireless Mouse""]",3003.18,"{""loyalty"": ""9%""}",29042,1,North America +2023-04-06,53932,1372,"[""Keyboard"", ""Phone""]",1368.39,"{""promo"": ""20%""}",73266,1,North America +2023-05-20,53933,8991,"[""Laptop""]",1537.54,{},279005,0,Africa +2023-06-19,53934,5262,"[""Phone""]",3281.14,"{"""": ""25%""}",290235,0,South America +2023-03-16,53935,1311,"[""Keyboard""]",810.27,"{""seasonal"": ""14%""}",169458,1,Europe +2024-01-23,53936,4423,"[""Charger"", ""Monitor""]",3095.34,{},125165,1,Asia +2023-07-24,53937,2167,"[""Keyboard""]",1081.44,"{"""": ""22%""}",268278,0,North America +2023-01-01,53938,915,"[""Monitor""]",4847.69,{},104539,0,Africa +2023-10-19,53939,4253,"[""Monitor"", ""Phone""]",3554.06,"{""loyalty"": ""26%""}",280413,0,North America +2023-01-22,53940,112,"[""Keyboard"", ""Phone""]",4929.71,{},58184,0,Asia +2023-10-15,53941,9578,"[""Tablet"", ""Headphones"", ""Charger""]",845.49,"{""seasonal"": ""16%""}",103338,1,Asia +2024-12-03,53942,9426,"[""Charger""]",3272.18,{},34209,0,Africa +2024-04-28,53943,1269,"[""Phone"", ""Charger"", ""Monitor""]",289.82,"{""seasonal"": ""8%""}",98173,1,Africa +2023-11-09,53944,2651,"[""Phone""]",2169.14,{},159659,1,Africa +2024-07-20,53945,8154,"[""Headphones"", ""Laptop""]",2708.35,"{"""": ""16%""}",199696,1,South America +2024-05-10,53946,344,"[""Charger"", ""Keyboard"", ""Monitor""]",412.34,"{""loyalty"": ""17%""}",184231,1,Asia +2024-10-25,53947,8778,"[""Charger""]",1434.22,"{"""": ""13%""}",200521,1,South America +2024-12-04,53948,7948,"[""Monitor""]",3868.41,{},178701,1,Europe +2024-07-29,53949,6645,"[""Headphones"", ""Charger"", ""Tablet""]",1547.44,"{"""": ""18%""}",115749,0,South America +2024-06-09,53950,6235,"[""Laptop""]",2094.28,{},279013,1,Africa +2023-02-07,53951,8826,"[""Laptop"", ""Charger""]",696.23,"{"""": ""18%""}",266046,1,Asia +2023-08-08,53952,2992,"[""Keyboard"", ""Charger""]",1514.72,{},184698,1,Asia +2024-04-09,53953,9077,"[""Headphones"", ""Charger""]",1795.73,"{""loyalty"": ""12%""}",118738,1,Asia +2023-06-29,53954,2242,"[""Keyboard"", ""Monitor""]",4106.96,"{""promo"": ""24%""}",22202,0,Africa +2024-08-21,53955,1764,"[""Headphones"", ""Charger"", ""Phone""]",4822.62,"{"""": ""11%""}",167911,0,North America +2023-11-15,53956,7675,"[""Phone""]",2628.87,"{""promo"": ""5%""}",44906,1,Africa +2023-07-28,53957,5614,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2683.54,"{""seasonal"": ""30%""}",107965,1,Asia +2023-06-02,53958,4104,"[""Keyboard""]",884.46,"{""loyalty"": ""29%""}",214190,0,North America +2024-11-09,53959,4140,"[""Charger""]",1904.96,{},9342,0,Africa +2024-12-14,53960,2033,"[""Laptop"", ""Headphones""]",4330.53,"{""loyalty"": ""11%""}",203918,1,Asia +2023-05-27,53961,2928,"[""Charger"", ""Tablet""]",3838.51,"{""loyalty"": ""27%""}",278545,0,North America +2024-05-03,53962,7564,"[""Phone""]",4989.81,"{""loyalty"": ""7%""}",211242,0,North America +2023-02-13,53963,9161,"[""Phone"", ""Headphones"", ""Laptop""]",1694.49,{},114829,0,Asia +2024-12-05,53964,8703,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4780.95,{},223167,1,South America +2024-06-03,53965,7603,"[""Monitor"", ""Keyboard""]",3919.25,"{""seasonal"": ""20%""}",125444,0,Asia +2024-12-07,53966,2533,"[""Phone"", ""Charger"", ""Monitor""]",1390.98,{},192432,0,Africa +2024-08-14,53967,19,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",783.7,"{""promo"": ""18%""}",25012,1,North America +2024-09-06,53968,4612,"[""Headphones"", ""Keyboard""]",2765.04,"{""promo"": ""10%""}",295514,0,South America +2024-08-16,53969,2252,"[""Tablet""]",2163.84,"{""promo"": ""8%""}",17804,1,Asia +2023-10-29,53970,2944,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",813.82,{},248497,1,Africa +2024-03-30,53971,2627,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3276.9,"{""seasonal"": ""27%""}",186950,0,Africa +2024-01-28,53972,6292,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1245.39,"{""loyalty"": ""23%""}",77965,0,Africa +2024-11-18,53973,8380,"[""Tablet"", ""Headphones"", ""Monitor""]",2426.45,"{""loyalty"": ""20%""}",157009,0,North America +2024-11-27,53974,6783,"[""Headphones""]",3170.59,"{""seasonal"": ""16%""}",227602,1,Europe +2023-01-13,53975,8159,"[""Keyboard""]",1065.16,{},261878,1,Africa +2023-02-28,53976,9903,"[""Wireless Mouse"", ""Laptop""]",2049.56,{},7603,1,Europe +2023-02-04,53977,7809,"[""Tablet""]",1646.91,"{"""": ""20%""}",106319,1,Europe +2023-05-24,53978,6612,"[""Monitor"", ""Charger""]",1549.35,{},270819,1,Europe +2023-01-26,53979,2279,"[""Wireless Mouse"", ""Tablet""]",3678.31,{},52167,1,Africa +2023-01-01,53980,6547,"[""Wireless Mouse""]",2501.85,"{""seasonal"": ""21%""}",74965,0,North America +2024-01-21,53981,544,"[""Keyboard"", ""Wireless Mouse""]",4839.82,"{""loyalty"": ""15%""}",276229,0,Africa +2024-11-10,53982,3388,"[""Phone""]",3206.75,{},268530,0,Europe +2024-11-25,53983,2946,"[""Tablet"", ""Wireless Mouse""]",1423.02,{},223674,1,Asia +2023-01-27,53984,9920,"[""Tablet""]",1706.63,{},213596,0,North America +2023-03-18,53985,7266,"[""Headphones"", ""Charger""]",4444.92,"{"""": ""23%""}",246594,1,Asia +2024-04-05,53986,3258,"[""Tablet"", ""Headphones"", ""Laptop""]",1900.08,"{"""": ""29%""}",121960,0,South America +2024-05-24,53987,3726,"[""Phone"", ""Keyboard""]",3594.04,"{"""": ""27%""}",11744,0,North America +2023-06-01,53988,681,"[""Keyboard"", ""Phone"", ""Monitor""]",855.88,"{""loyalty"": ""14%""}",176997,1,Africa +2023-04-02,53989,2258,"[""Keyboard"", ""Phone"", ""Laptop""]",322.91,{},254120,0,South America +2024-11-07,53990,4105,"[""Keyboard"", ""Monitor"", ""Headphones""]",441.0,"{""seasonal"": ""16%""}",232636,1,Asia +2023-02-19,53991,3999,"[""Monitor"", ""Phone"", ""Laptop""]",4115.35,{},137881,1,South America +2024-04-21,53992,5373,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3329.31,{},247028,1,Africa +2024-07-15,53993,2265,"[""Tablet""]",1962.34,"{"""": ""16%""}",23610,1,South America +2023-12-04,53994,9766,"[""Headphones"", ""Charger"", ""Laptop""]",1686.8,"{""seasonal"": ""21%""}",279784,1,North America +2023-10-31,53995,9383,"[""Monitor"", ""Laptop"", ""Tablet""]",3796.46,{},33991,1,Asia +2024-06-20,53996,7225,"[""Wireless Mouse""]",292.98,{},226823,0,Europe +2023-07-16,53997,8907,"[""Tablet"", ""Monitor""]",2754.36,{},180341,0,South America +2023-03-23,53998,7621,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3114.54,"{"""": ""29%""}",155776,1,Asia +2023-05-28,53999,5130,"[""Headphones"", ""Tablet""]",4085.89,{},114033,1,Africa +2023-05-08,54000,9260,"[""Keyboard"", ""Monitor""]",4209.95,"{""promo"": ""7%""}",149474,0,South America +2024-03-14,54001,714,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4326.11,"{""seasonal"": ""5%""}",53396,0,Europe +2023-02-22,54002,5996,"[""Tablet"", ""Keyboard"", ""Phone""]",762.13,{},65003,1,North America +2023-07-07,54003,1011,"[""Charger"", ""Monitor"", ""Headphones""]",714.42,{},95720,1,Europe +2023-04-02,54004,9634,"[""Wireless Mouse"", ""Keyboard""]",3123.95,{},220642,1,Asia +2023-07-05,54005,2646,"[""Headphones"", ""Laptop""]",548.14,"{"""": ""13%""}",232453,1,Asia +2023-06-15,54006,9048,"[""Wireless Mouse"", ""Tablet""]",733.76,"{""seasonal"": ""18%""}",103211,1,South America +2024-07-31,54007,2236,"[""Phone""]",2005.92,"{""loyalty"": ""28%""}",266123,0,Asia +2024-04-26,54008,9738,"[""Charger""]",1194.07,{},98909,0,South America +2024-01-02,54009,2979,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1719.45,"{"""": ""10%""}",262309,1,Asia +2023-01-02,54010,4205,"[""Monitor"", ""Keyboard"", ""Phone""]",2073.0,"{"""": ""23%""}",263846,0,North America +2023-12-11,54011,1027,"[""Laptop""]",3167.91,{},164331,0,Africa +2023-10-02,54012,640,"[""Headphones"", ""Keyboard""]",1439.45,"{""seasonal"": ""22%""}",170356,0,Africa +2024-10-31,54013,7453,"[""Charger""]",1362.75,{},267500,1,Europe +2023-10-13,54014,4566,"[""Tablet""]",4487.45,{},122792,0,Europe +2024-02-14,54015,9369,"[""Laptop"", ""Charger"", ""Monitor""]",283.42,"{"""": ""29%""}",265361,1,South America +2023-05-17,54016,4610,"[""Keyboard""]",4257.87,"{""loyalty"": ""26%""}",145068,1,Asia +2024-06-27,54017,4305,"[""Headphones"", ""Keyboard""]",4193.7,"{""loyalty"": ""28%""}",268896,1,Europe +2023-01-16,54018,2079,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",987.34,{},12959,1,Asia +2023-01-25,54019,5356,"[""Tablet""]",1133.45,{},39995,1,Asia +2024-03-04,54020,4084,"[""Laptop"", ""Phone"", ""Headphones""]",2424.92,{},133247,1,Europe +2024-04-17,54021,4611,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",976.2,{},202693,1,North America +2023-08-12,54022,9790,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2714.2,"{""promo"": ""12%""}",53483,0,South America +2024-01-25,54023,9127,"[""Phone""]",2787.42,{},293554,0,Africa +2024-09-09,54024,3856,"[""Monitor"", ""Laptop""]",4463.55,{},247992,1,Africa +2023-11-17,54025,2615,"[""Headphones""]",2949.73,"{""seasonal"": ""17%""}",39368,1,South America +2023-09-12,54026,8629,"[""Monitor""]",1229.24,"{""promo"": ""7%""}",95348,0,Europe +2024-04-01,54027,6278,"[""Phone"", ""Monitor""]",3842.21,"{""promo"": ""11%""}",154844,1,Europe +2024-08-06,54028,9436,"[""Charger""]",2796.87,{},30432,0,Africa +2023-09-08,54029,670,"[""Laptop"", ""Phone"", ""Keyboard""]",1753.52,{},201068,0,Europe +2024-08-10,54030,3038,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2240.89,"{""promo"": ""22%""}",72175,0,South America +2023-02-02,54031,3493,"[""Tablet""]",1366.94,"{""loyalty"": ""27%""}",132507,1,Europe +2024-03-09,54032,5491,"[""Phone""]",3564.12,{},223943,1,North America +2023-04-17,54033,3285,"[""Headphones"", ""Phone"", ""Charger""]",4185.76,"{""loyalty"": ""12%""}",189660,0,South America +2023-06-05,54034,8425,"[""Monitor"", ""Keyboard"", ""Charger""]",1612.35,{},292495,0,Europe +2023-04-28,54035,276,"[""Phone"", ""Tablet""]",4004.15,{},148410,1,Africa +2024-07-28,54036,4291,"[""Keyboard""]",1561.94,{},261634,0,Africa +2023-01-16,54037,942,"[""Headphones"", ""Tablet"", ""Keyboard""]",1269.02,"{"""": ""14%""}",201321,1,Africa +2023-09-27,54038,7771,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1818.57,{},126428,0,South America +2023-11-19,54039,5016,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1674.32,"{""promo"": ""23%""}",122916,0,Europe +2023-06-29,54040,801,"[""Phone"", ""Tablet""]",1943.81,{},94039,0,South America +2024-04-13,54041,411,"[""Wireless Mouse"", ""Phone"", ""Charger""]",559.88,"{""loyalty"": ""14%""}",275423,1,Europe +2023-05-24,54042,4979,"[""Phone"", ""Laptop""]",4230.65,{},235001,0,North America +2024-08-01,54043,4170,"[""Headphones"", ""Keyboard"", ""Phone""]",3899.5,"{""seasonal"": ""21%""}",125762,0,North America +2023-07-19,54044,8329,"[""Keyboard"", ""Headphones"", ""Phone""]",658.44,{},132771,0,South America +2023-04-29,54045,2351,"[""Keyboard"", ""Monitor""]",4012.23,"{""loyalty"": ""28%""}",211154,0,Africa +2023-06-22,54046,7896,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2283.28,"{""seasonal"": ""8%""}",74308,0,North America +2024-03-30,54047,6549,"[""Wireless Mouse""]",1752.42,{},56800,0,South America +2024-06-04,54048,3122,"[""Phone""]",2828.29,"{""loyalty"": ""19%""}",171321,0,Europe +2023-03-04,54049,1395,"[""Phone"", ""Laptop"", ""Monitor""]",1146.21,"{""promo"": ""30%""}",241114,1,Europe +2024-08-12,54050,6914,"[""Wireless Mouse"", ""Charger""]",4063.2,"{""promo"": ""8%""}",235999,0,South America +2023-08-19,54051,2214,"[""Phone"", ""Monitor""]",3264.51,"{""promo"": ""15%""}",241732,0,South America +2023-03-12,54052,7119,"[""Phone""]",317.08,"{""seasonal"": ""17%""}",143074,1,Asia +2024-06-10,54053,2376,"[""Keyboard"", ""Headphones""]",4907.65,"{""promo"": ""6%""}",96866,0,Africa +2024-04-23,54054,7206,"[""Tablet"", ""Wireless Mouse""]",703.61,{},43181,0,Asia +2023-08-15,54055,9991,"[""Tablet"", ""Phone"", ""Laptop""]",4957.93,{},56811,0,South America +2023-01-11,54056,7949,"[""Phone""]",1805.55,{},267705,0,Asia +2024-12-13,54057,5906,"[""Laptop""]",1734.45,{},210296,0,South America +2023-05-05,54058,3766,"[""Monitor"", ""Phone""]",1695.13,{},253823,0,South America +2023-12-28,54059,922,"[""Keyboard""]",4336.35,"{""promo"": ""19%""}",204486,0,Europe +2023-12-04,54060,7808,"[""Phone"", ""Headphones"", ""Tablet""]",820.56,"{"""": ""25%""}",192365,0,South America +2024-07-16,54061,3854,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1444.87,"{"""": ""12%""}",166979,1,North America +2024-03-17,54062,3756,"[""Monitor"", ""Keyboard"", ""Headphones""]",2012.49,{},29561,0,Asia +2024-09-11,54063,4781,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1121.9,"{""promo"": ""24%""}",149796,0,Europe +2023-12-29,54064,2994,"[""Phone"", ""Laptop""]",2554.75,{},238331,1,Asia +2024-04-01,54065,9165,"[""Headphones"", ""Phone"", ""Keyboard""]",3210.63,"{"""": ""21%""}",237528,1,Asia +2023-02-14,54066,6231,"[""Monitor"", ""Charger""]",3141.04,{},95889,1,Africa +2024-09-25,54067,8932,"[""Phone"", ""Keyboard"", ""Headphones""]",561.12,"{"""": ""12%""}",142821,1,North America +2024-06-14,54068,7475,"[""Monitor""]",484.23,{},39436,0,Africa +2023-07-10,54069,419,"[""Keyboard"", ""Wireless Mouse""]",1500.58,"{""promo"": ""16%""}",283836,1,North America +2023-06-16,54070,1415,"[""Headphones"", ""Monitor"", ""Charger""]",1493.24,"{"""": ""27%""}",226580,1,South America +2024-12-27,54071,8052,"[""Phone"", ""Keyboard"", ""Tablet""]",2076.84,{},139024,0,Africa +2024-04-28,54072,7663,"[""Tablet"", ""Phone""]",4231.68,"{""seasonal"": ""19%""}",30946,1,North America +2024-10-29,54073,847,"[""Monitor"", ""Headphones"", ""Tablet""]",663.27,{},151291,1,North America +2024-03-25,54074,5186,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",532.57,{},94109,0,South America +2023-02-11,54075,3311,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2364.36,{},123515,1,Asia +2024-10-12,54076,9124,"[""Charger"", ""Monitor"", ""Keyboard""]",4313.6,"{""loyalty"": ""18%""}",192373,1,Europe +2024-12-12,54077,1724,"[""Charger""]",2062.62,{},117624,1,Africa +2023-10-06,54078,887,"[""Headphones""]",4463.88,{},213505,1,Africa +2024-12-19,54079,7231,"[""Wireless Mouse"", ""Monitor""]",4605.88,{},273919,0,North America +2024-10-27,54080,2019,"[""Tablet""]",922.98,{},65807,1,North America +2023-05-01,54081,1049,"[""Headphones""]",1477.14,{},195423,1,Africa +2023-07-31,54082,7463,"[""Monitor""]",1246.86,"{""promo"": ""23%""}",268186,0,North America +2023-12-28,54083,6682,"[""Keyboard"", ""Monitor""]",1671.53,{},44938,1,Africa +2023-04-19,54084,4287,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4934.68,{},211454,0,South America +2023-07-21,54085,6714,"[""Wireless Mouse"", ""Tablet""]",1257.79,"{""promo"": ""10%""}",134203,0,South America +2024-08-02,54086,4307,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",984.52,"{""seasonal"": ""26%""}",121648,1,Asia +2024-04-01,54087,9058,"[""Monitor"", ""Keyboard""]",978.54,{},195887,0,Africa +2023-01-09,54088,4312,"[""Headphones"", ""Tablet"", ""Keyboard""]",3599.9,{},195657,1,South America +2024-09-07,54089,8965,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4928.19,"{""seasonal"": ""27%""}",192005,1,Africa +2024-02-20,54090,3979,"[""Charger""]",2279.91,"{""loyalty"": ""30%""}",232019,1,Europe +2023-07-17,54091,2451,"[""Laptop""]",404.57,"{""seasonal"": ""20%""}",36048,1,Africa +2023-10-15,54092,487,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1268.89,"{""seasonal"": ""17%""}",124726,1,South America +2024-06-13,54093,9251,"[""Keyboard"", ""Tablet"", ""Headphones""]",3449.28,"{"""": ""16%""}",296740,0,Europe +2024-11-11,54094,6252,"[""Phone"", ""Keyboard""]",2640.29,"{""promo"": ""14%""}",16809,1,North America +2023-02-20,54095,4603,"[""Laptop"", ""Headphones"", ""Phone""]",2269.02,{},25329,1,Africa +2024-12-02,54096,2986,"[""Headphones""]",2668.01,{},227131,1,South America +2023-07-15,54097,5027,"[""Tablet"", ""Charger""]",352.59,{},233088,1,Africa +2023-01-31,54098,4279,"[""Monitor"", ""Charger""]",3042.99,{},96973,0,Africa +2024-08-25,54099,7585,"[""Headphones""]",641.0,{},226195,0,Asia +2024-06-13,54100,299,"[""Wireless Mouse"", ""Phone""]",3504.7,"{""loyalty"": ""12%""}",149013,0,South America +2023-10-13,54101,6377,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4675.73,{},245374,1,Africa +2023-09-25,54102,3564,"[""Keyboard""]",3949.24,"{""seasonal"": ""19%""}",116208,0,South America +2024-09-01,54103,7253,"[""Phone"", ""Headphones""]",2613.25,{},121675,0,Asia +2024-10-07,54104,8352,"[""Headphones"", ""Phone""]",2542.21,"{""promo"": ""25%""}",271726,0,Africa +2024-11-04,54105,6418,"[""Laptop"", ""Wireless Mouse""]",3228.29,"{""loyalty"": ""26%""}",221265,1,Africa +2023-03-18,54106,3958,"[""Wireless Mouse"", ""Headphones""]",554.84,{},128311,1,South America +2024-12-13,54107,1124,"[""Tablet""]",491.29,{},256141,1,Africa +2024-01-08,54108,5245,"[""Headphones""]",2154.94,"{""promo"": ""21%""}",86875,0,Africa +2023-08-30,54109,2635,"[""Tablet""]",518.46,"{""promo"": ""28%""}",1836,0,North America +2024-11-20,54110,4901,"[""Charger"", ""Headphones""]",4281.27,{},7001,0,South America +2023-07-23,54111,7363,"[""Monitor"", ""Charger""]",3239.26,{},52728,1,Asia +2023-11-01,54112,1776,"[""Headphones""]",2228.3,"{""loyalty"": ""11%""}",157893,1,Europe +2023-01-17,54113,4474,"[""Phone"", ""Charger"", ""Tablet""]",4705.49,{},7032,0,South America +2023-08-08,54114,2682,"[""Charger"", ""Tablet"", ""Phone""]",4825.08,{},197187,0,Asia +2023-08-04,54115,6669,"[""Monitor"", ""Headphones"", ""Charger""]",1503.93,{},116673,0,Africa +2023-09-21,54116,2779,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4908.97,{},280110,1,Europe +2024-03-22,54117,2388,"[""Tablet"", ""Charger"", ""Keyboard""]",704.84,"{"""": ""14%""}",165586,1,South America +2023-07-26,54118,3680,"[""Wireless Mouse""]",3006.37,{},129131,1,North America +2023-09-12,54119,9876,"[""Headphones"", ""Laptop"", ""Keyboard""]",3310.4,"{""seasonal"": ""19%""}",12558,1,North America +2023-12-13,54120,9753,"[""Wireless Mouse""]",1469.98,{},255558,1,South America +2024-04-04,54121,8815,"[""Laptop"", ""Headphones"", ""Phone""]",1498.23,{},178687,0,North America +2023-04-16,54122,6103,"[""Tablet"", ""Keyboard""]",3546.79,{},95826,1,Europe +2024-11-24,54123,6077,"[""Monitor"", ""Keyboard"", ""Tablet""]",3073.58,"{""loyalty"": ""30%""}",90994,0,Asia +2023-03-18,54124,3410,"[""Keyboard"", ""Headphones""]",225.95,{},281928,1,North America +2023-04-04,54125,4476,"[""Wireless Mouse""]",4246.25,"{""loyalty"": ""18%""}",214174,0,Africa +2024-04-21,54126,9974,"[""Headphones"", ""Monitor""]",1872.34,"{""loyalty"": ""28%""}",261583,1,Africa +2024-11-25,54127,2888,"[""Keyboard"", ""Laptop"", ""Tablet""]",3673.1,{},177288,1,Europe +2023-11-15,54128,2795,"[""Monitor""]",2407.2,{},91336,1,South America +2023-10-28,54129,6297,"[""Charger""]",3648.5,"{""promo"": ""25%""}",107881,0,Asia +2023-11-28,54130,2848,"[""Monitor"", ""Phone"", ""Headphones""]",4035.3,"{"""": ""17%""}",42512,0,South America +2024-12-06,54131,8106,"[""Wireless Mouse"", ""Monitor""]",2894.25,{},139018,1,North America +2024-11-14,54132,4071,"[""Keyboard"", ""Laptop"", ""Charger""]",4620.02,"{""seasonal"": ""10%""}",230460,1,North America +2024-05-28,54133,8952,"[""Monitor"", ""Tablet"", ""Laptop""]",1648.23,"{"""": ""17%""}",219351,0,Africa +2024-01-16,54134,5326,"[""Tablet"", ""Phone"", ""Monitor""]",3584.27,{},264600,0,Africa +2024-04-03,54135,3842,"[""Monitor"", ""Charger""]",4282.86,{},242756,0,Asia +2023-09-18,54136,9111,"[""Charger""]",3615.76,"{"""": ""16%""}",40578,1,Asia +2024-05-16,54137,9581,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2412.79,{},250236,1,North America +2024-04-17,54138,8033,"[""Laptop"", ""Wireless Mouse""]",3427.75,{},153150,1,Africa +2023-08-25,54139,92,"[""Charger""]",2951.68,{},226308,1,South America +2024-03-19,54140,8078,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1424.68,{},277981,1,South America +2024-02-01,54141,7195,"[""Headphones"", ""Laptop"", ""Phone""]",1613.61,"{""loyalty"": ""16%""}",95213,1,Asia +2023-04-24,54142,5382,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",493.56,{},42482,0,Europe +2024-08-20,54143,5743,"[""Laptop""]",2952.45,"{""promo"": ""24%""}",63038,1,Asia +2024-05-20,54144,8632,"[""Charger""]",4345.93,"{""promo"": ""8%""}",274634,1,Asia +2024-01-07,54145,7806,"[""Monitor""]",2168.36,{},59025,0,Europe +2024-06-08,54146,2918,"[""Headphones""]",4601.76,{},292467,0,Europe +2024-01-05,54147,9131,"[""Monitor"", ""Charger"", ""Phone""]",2109.05,{},179471,1,North America +2024-04-06,54148,4644,"[""Charger"", ""Wireless Mouse""]",2864.78,{},278479,0,Asia +2023-02-26,54149,4119,"[""Keyboard"", ""Monitor""]",2524.71,"{""loyalty"": ""19%""}",260354,1,Asia +2024-08-28,54150,4863,"[""Keyboard"", ""Headphones""]",3972.37,"{""loyalty"": ""5%""}",273754,1,South America +2023-05-29,54151,3133,"[""Tablet"", ""Charger""]",4344.07,{},76311,0,North America +2023-12-18,54152,8197,"[""Laptop""]",182.69,"{""loyalty"": ""5%""}",32225,0,Africa +2023-03-01,54153,5065,"[""Charger""]",4866.73,{},14922,0,Europe +2023-07-15,54154,2753,"[""Laptop""]",514.65,"{""loyalty"": ""7%""}",271094,0,Africa +2023-04-26,54155,1952,"[""Tablet"", ""Charger""]",2382.5,"{"""": ""8%""}",84775,0,Africa +2023-09-13,54156,4629,"[""Charger""]",4180.79,"{"""": ""11%""}",92035,1,Asia +2024-11-22,54157,8076,"[""Monitor"", ""Keyboard"", ""Charger""]",3649.77,"{"""": ""30%""}",202104,1,Africa +2024-06-13,54158,3268,"[""Phone""]",835.66,{},208228,0,Africa +2023-05-03,54159,1821,"[""Laptop""]",483.57,"{""seasonal"": ""8%""}",124362,1,North America +2023-06-30,54160,1801,"[""Charger"", ""Headphones"", ""Keyboard""]",2651.86,"{""seasonal"": ""30%""}",258413,1,South America +2023-12-28,54161,7506,"[""Charger""]",4167.32,"{"""": ""28%""}",281696,0,Africa +2023-08-14,54162,8042,"[""Monitor"", ""Laptop""]",93.01,{},72680,0,Europe +2024-09-02,54163,7546,"[""Tablet"", ""Monitor"", ""Phone""]",4479.5,"{""loyalty"": ""7%""}",70523,1,Africa +2024-09-17,54164,5313,"[""Wireless Mouse"", ""Phone""]",4154.99,"{""promo"": ""25%""}",101030,1,North America +2024-09-03,54165,6609,"[""Monitor""]",939.86,{},12806,0,Africa +2024-11-21,54166,5596,"[""Tablet"", ""Keyboard"", ""Monitor""]",2880.6,"{""promo"": ""10%""}",234359,1,South America +2023-07-12,54167,2832,"[""Charger"", ""Laptop"", ""Tablet""]",1335.5,"{""seasonal"": ""6%""}",246713,1,Europe +2024-07-04,54168,2027,"[""Phone"", ""Keyboard"", ""Headphones""]",1997.51,{},24094,0,Africa +2024-08-26,54169,7806,"[""Charger""]",4592.1,"{""loyalty"": ""12%""}",251478,0,South America +2023-03-31,54170,6479,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2004.8,"{""promo"": ""15%""}",117757,1,North America +2023-10-07,54171,5169,"[""Laptop"", ""Monitor""]",1152.23,{},76089,1,South America +2023-04-04,54172,608,"[""Tablet""]",4982.34,"{"""": ""11%""}",209308,1,Asia +2024-04-07,54173,6058,"[""Keyboard"", ""Phone"", ""Tablet""]",3770.42,{},121779,0,Asia +2023-08-06,54174,5991,"[""Charger""]",890.4,{},281431,0,North America +2023-10-22,54175,1915,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1068.34,"{"""": ""16%""}",245744,1,South America +2023-06-23,54176,7534,"[""Headphones""]",4917.58,{},200238,1,Africa +2023-06-17,54177,2057,"[""Tablet""]",3483.97,{},99302,1,Europe +2023-04-23,54178,5060,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2719.26,"{""seasonal"": ""22%""}",53036,1,South America +2024-09-25,54179,9602,"[""Headphones""]",234.66,{},233042,1,South America +2023-07-28,54180,1716,"[""Phone"", ""Monitor""]",879.32,"{""seasonal"": ""22%""}",234469,0,Europe +2024-06-02,54181,4330,"[""Monitor"", ""Keyboard""]",2447.62,"{""loyalty"": ""7%""}",205726,1,Asia +2023-06-10,54182,5695,"[""Charger""]",2947.78,"{""seasonal"": ""21%""}",160758,1,South America +2023-06-08,54183,3989,"[""Keyboard"", ""Phone"", ""Tablet""]",3448.34,"{""seasonal"": ""19%""}",177373,1,South America +2024-08-25,54184,1543,"[""Laptop""]",3210.94,{},195951,1,Asia +2023-07-12,54185,4551,"[""Wireless Mouse"", ""Monitor""]",2477.39,"{""promo"": ""15%""}",142923,1,Asia +2023-04-16,54186,2834,"[""Wireless Mouse""]",1141.8,"{""loyalty"": ""17%""}",105801,1,South America +2024-06-24,54187,5736,"[""Phone""]",2728.43,"{"""": ""5%""}",52587,0,Europe +2024-05-20,54188,1177,"[""Keyboard"", ""Charger"", ""Phone""]",3728.78,"{""seasonal"": ""28%""}",148222,0,Europe +2024-11-16,54189,1646,"[""Monitor"", ""Keyboard"", ""Phone""]",337.77,"{""promo"": ""23%""}",34603,1,Africa +2023-04-14,54190,7799,"[""Keyboard""]",2021.91,"{"""": ""5%""}",261181,1,North America +2024-09-25,54191,7704,"[""Laptop"", ""Phone""]",140.46,{},89098,0,Europe +2024-07-08,54192,9152,"[""Wireless Mouse"", ""Keyboard""]",2206.87,"{""seasonal"": ""30%""}",66758,0,South America +2024-09-20,54193,6681,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2683.31,"{""loyalty"": ""11%""}",147213,0,Africa +2023-08-08,54194,7904,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4530.4,{},85354,1,South America +2024-06-03,54195,5573,"[""Monitor"", ""Keyboard""]",4835.36,"{""promo"": ""8%""}",218739,0,Asia +2023-05-21,54196,5380,"[""Wireless Mouse""]",1028.24,{},106306,0,Europe +2023-03-31,54197,6502,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1145.72,"{""seasonal"": ""11%""}",39411,1,Asia +2024-03-12,54198,7578,"[""Tablet"", ""Wireless Mouse""]",1578.43,{},154208,0,Asia +2024-03-10,54199,6717,"[""Tablet"", ""Phone""]",3281.91,"{"""": ""19%""}",158773,1,Africa +2024-01-09,54200,7572,"[""Monitor""]",1203.99,"{""loyalty"": ""16%""}",33029,0,South America +2024-04-24,54201,7005,"[""Tablet""]",1405.12,{},111022,0,Europe +2023-08-19,54202,6612,"[""Charger"", ""Phone"", ""Monitor""]",4702.42,{},234066,0,North America +2023-05-05,54203,5410,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3729.37,"{""loyalty"": ""25%""}",33918,1,South America +2024-04-09,54204,7028,"[""Monitor"", ""Tablet"", ""Laptop""]",3862.81,{},49121,0,Africa +2024-08-01,54205,3313,"[""Laptop"", ""Keyboard""]",4849.36,{},105223,1,North America +2024-01-23,54206,5627,"[""Wireless Mouse""]",1172.2,{},26977,0,Africa +2024-06-10,54207,3557,"[""Keyboard"", ""Charger""]",893.81,{},188665,0,Asia +2024-01-31,54208,2618,"[""Charger""]",991.63,{},277056,0,Africa +2023-06-11,54209,4552,"[""Phone"", ""Headphones"", ""Tablet""]",3655.66,"{""seasonal"": ""27%""}",91816,1,North America +2023-06-06,54210,7611,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4447.34,{},14958,0,Europe +2024-08-05,54211,2483,"[""Wireless Mouse"", ""Charger""]",3207.12,{},191191,0,Africa +2023-08-27,54212,7173,"[""Wireless Mouse"", ""Laptop""]",1518.87,"{""promo"": ""12%""}",148146,0,North America +2024-05-07,54213,2994,"[""Headphones"", ""Monitor"", ""Charger""]",296.88,"{""seasonal"": ""12%""}",218772,1,Europe +2024-06-05,54214,9432,"[""Keyboard""]",1727.04,{},1936,1,Europe +2024-09-04,54215,1275,"[""Laptop"", ""Wireless Mouse""]",1913.85,"{"""": ""23%""}",10884,1,North America +2023-07-14,54216,8146,"[""Charger"", ""Monitor""]",3243.73,{},138034,0,Africa +2023-06-01,54217,8488,"[""Phone""]",3499.16,{},245834,1,North America +2024-01-28,54218,2480,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2461.61,"{""seasonal"": ""24%""}",99187,0,South America +2024-02-14,54219,3557,"[""Charger""]",4594.99,"{""seasonal"": ""26%""}",47492,0,Africa +2024-05-20,54220,7487,"[""Headphones""]",4449.28,"{""loyalty"": ""7%""}",291609,1,Europe +2023-10-05,54221,1713,"[""Headphones"", ""Keyboard""]",495.19,"{"""": ""7%""}",193586,1,Africa +2024-10-08,54222,4360,"[""Tablet"", ""Laptop""]",3516.28,"{""promo"": ""14%""}",43150,1,Africa +2023-02-07,54223,4145,"[""Phone"", ""Monitor""]",4408.38,"{"""": ""15%""}",231444,1,South America +2023-08-15,54224,6137,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3192.28,{},258873,0,Africa +2023-06-07,54225,9825,"[""Monitor""]",4031.91,{},177287,0,North America +2024-03-15,54226,1746,"[""Charger"", ""Monitor"", ""Laptop""]",358.06,"{""seasonal"": ""26%""}",251844,1,South America +2024-05-28,54227,7818,"[""Tablet"", ""Wireless Mouse""]",102.97,"{""loyalty"": ""23%""}",165326,1,Asia +2024-08-13,54228,8284,"[""Headphones"", ""Tablet""]",1020.96,"{""loyalty"": ""28%""}",258783,1,North America +2024-02-17,54229,1654,"[""Phone"", ""Wireless Mouse""]",2826.21,{},98128,1,Asia +2023-11-01,54230,4819,"[""Phone"", ""Laptop""]",2639.68,{},289046,0,North America +2023-02-05,54231,4021,"[""Tablet""]",2861.12,{},266160,1,Africa +2023-06-16,54232,9951,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",248.32,{},205893,0,Asia +2023-02-16,54233,3853,"[""Phone"", ""Keyboard""]",959.43,{},157891,1,North America +2023-03-25,54234,8236,"[""Keyboard"", ""Phone""]",4646.37,{},201857,1,Europe +2023-11-29,54235,9461,"[""Wireless Mouse""]",4805.16,"{""promo"": ""30%""}",32778,0,Africa +2024-03-27,54236,7780,"[""Charger"", ""Laptop"", ""Headphones""]",3237.31,"{"""": ""29%""}",98901,1,Asia +2024-07-09,54237,7001,"[""Monitor""]",2618.29,{},229004,1,Europe +2024-09-12,54238,9419,"[""Laptop""]",4008.93,"{""seasonal"": ""9%""}",262484,1,Asia +2023-09-07,54239,806,"[""Phone"", ""Wireless Mouse""]",751.15,"{"""": ""12%""}",11130,0,South America +2023-02-19,54240,2793,"[""Charger"", ""Tablet"", ""Headphones""]",3513.48,{},134240,1,Africa +2023-11-13,54241,7138,"[""Tablet""]",2900.92,"{""promo"": ""8%""}",277259,0,Europe +2023-08-02,54242,1222,"[""Tablet"", ""Keyboard""]",1072.0,{},290536,1,Africa +2023-08-16,54243,6225,"[""Headphones""]",4673.75,"{""loyalty"": ""6%""}",284334,1,Asia +2023-08-13,54244,4803,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4280.66,{},38865,1,Africa +2024-08-05,54245,7385,"[""Keyboard"", ""Wireless Mouse""]",4380.9,{},281621,0,Europe +2023-09-27,54246,4238,"[""Keyboard""]",3410.99,"{"""": ""9%""}",152356,0,Asia +2024-04-24,54247,8877,"[""Headphones"", ""Charger"", ""Phone""]",3239.48,{},160292,1,Europe +2024-12-06,54248,7952,"[""Laptop"", ""Monitor""]",3486.21,{},257480,1,Africa +2023-08-03,54249,9138,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2724.14,{},153336,0,North America +2023-12-07,54250,7186,"[""Monitor""]",768.55,{},269660,0,South America +2024-06-17,54251,5283,"[""Monitor""]",3404.33,{},219581,1,Asia +2023-03-20,54252,1274,"[""Wireless Mouse""]",1240.38,"{""loyalty"": ""22%""}",134855,0,North America +2024-10-31,54253,3789,"[""Phone""]",760.37,{},59473,0,Asia +2024-11-05,54254,2795,"[""Monitor"", ""Charger""]",618.51,{},227264,0,North America +2024-11-25,54255,1988,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",761.82,"{"""": ""18%""}",197449,0,North America +2023-07-18,54256,6116,"[""Tablet"", ""Charger"", ""Laptop""]",1005.62,{},295874,0,North America +2024-11-09,54257,9559,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3962.02,"{""loyalty"": ""22%""}",37545,0,Asia +2024-06-07,54258,2683,"[""Keyboard"", ""Tablet"", ""Monitor""]",916.66,{},294930,1,Asia +2023-11-26,54259,1132,"[""Tablet""]",1964.21,{},49175,1,North America +2023-07-31,54260,5265,"[""Charger"", ""Keyboard""]",2156.79,{},72145,1,Asia +2024-02-01,54261,9616,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4757.19,{},66798,1,Europe +2024-05-13,54262,1944,"[""Phone"", ""Keyboard"", ""Laptop""]",2710.99,{},18068,0,Europe +2024-02-22,54263,5467,"[""Keyboard"", ""Laptop""]",1658.92,"{""loyalty"": ""10%""}",271641,0,Africa +2024-08-19,54264,6665,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",381.87,"{""seasonal"": ""16%""}",268051,1,North America +2024-10-13,54265,6111,"[""Headphones"", ""Phone"", ""Charger""]",3496.16,{},184850,0,South America +2024-09-02,54266,5209,"[""Wireless Mouse"", ""Charger""]",4660.38,"{""promo"": ""19%""}",93758,1,North America +2023-04-24,54267,3837,"[""Laptop""]",917.6,{},65003,1,Asia +2023-11-26,54268,7089,"[""Keyboard""]",2617.27,"{""promo"": ""28%""}",264414,0,Europe +2023-10-20,54269,8791,"[""Tablet"", ""Wireless Mouse""]",88.86,{},287525,1,Europe +2024-05-08,54270,5691,"[""Laptop"", ""Keyboard""]",1670.17,{},23650,1,Asia +2023-11-15,54271,3493,"[""Headphones"", ""Monitor"", ""Laptop""]",2294.65,"{""seasonal"": ""5%""}",24920,0,North America +2024-12-06,54272,1573,"[""Headphones"", ""Tablet"", ""Laptop""]",4908.02,"{""seasonal"": ""12%""}",158558,0,Asia +2024-01-13,54273,8352,"[""Charger"", ""Monitor""]",4760.3,"{""loyalty"": ""22%""}",75035,1,South America +2024-04-15,54274,6038,"[""Phone"", ""Headphones"", ""Charger""]",668.66,{},40681,0,Asia +2023-12-24,54275,9823,"[""Tablet"", ""Laptop"", ""Phone""]",4194.79,"{""loyalty"": ""23%""}",14729,1,Asia +2024-07-15,54276,9436,"[""Monitor""]",4133.53,{},205494,0,Europe +2023-11-30,54277,1926,"[""Laptop"", ""Tablet"", ""Phone""]",407.46,"{"""": ""26%""}",145632,1,North America +2023-08-14,54278,5828,"[""Charger"", ""Tablet""]",147.21,{},46092,1,South America +2023-05-11,54279,7747,"[""Charger"", ""Phone""]",4060.15,"{""loyalty"": ""7%""}",128004,1,Europe +2024-03-15,54280,9447,"[""Wireless Mouse""]",2708.81,"{"""": ""13%""}",133609,1,North America +2024-10-09,54281,3733,"[""Keyboard""]",4158.56,"{"""": ""28%""}",122737,1,North America +2024-06-15,54282,6068,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4874.06,{},83354,1,North America +2024-05-18,54283,8439,"[""Charger"", ""Phone"", ""Monitor""]",2237.79,"{"""": ""16%""}",206627,1,Europe +2024-09-09,54284,8698,"[""Charger"", ""Keyboard"", ""Monitor""]",3471.83,{},177616,1,Africa +2024-11-11,54285,3843,"[""Tablet""]",3556.72,"{""loyalty"": ""22%""}",25091,1,Europe +2023-04-28,54286,2306,"[""Phone""]",3692.45,"{""loyalty"": ""21%""}",299938,1,Europe +2023-12-07,54287,5751,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",944.35,{},235245,0,Asia +2023-09-21,54288,3030,"[""Charger""]",87.03,{},119623,0,Asia +2023-11-06,54289,7832,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",848.3,"{"""": ""21%""}",285271,1,Europe +2024-09-30,54290,1360,"[""Tablet""]",1474.72,{},260459,1,Asia +2023-11-29,54291,5115,"[""Monitor""]",3339.81,"{""seasonal"": ""20%""}",251404,1,South America +2023-11-18,54292,6908,"[""Monitor""]",4447.54,{},44753,1,Asia +2024-10-07,54293,1179,"[""Charger""]",4002.44,"{""seasonal"": ""26%""}",5557,1,South America +2024-04-25,54294,9205,"[""Laptop"", ""Keyboard""]",306.09,"{""promo"": ""27%""}",16776,0,Europe +2023-04-15,54295,2630,"[""Charger"", ""Laptop"", ""Tablet""]",1758.07,{},273146,1,South America +2024-05-12,54296,7888,"[""Phone"", ""Monitor""]",2148.9,{},59874,1,North America +2024-12-09,54297,3860,"[""Headphones""]",3084.37,{},135383,0,Asia +2023-12-20,54298,2244,"[""Wireless Mouse""]",70.25,{},287156,1,Africa +2023-06-01,54299,4879,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",121.02,"{""loyalty"": ""19%""}",114885,0,Asia +2023-01-23,54300,901,"[""Phone"", ""Keyboard""]",2561.69,{},297208,0,North America +2024-03-17,54301,4907,"[""Laptop""]",1584.33,{},246714,0,Asia +2023-09-25,54302,3653,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4440.16,{},118391,1,North America +2023-10-25,54303,5379,"[""Laptop"", ""Tablet"", ""Headphones""]",1537.56,{},203913,0,South America +2023-05-15,54304,5114,"[""Phone"", ""Charger""]",3248.51,"{"""": ""23%""}",43983,1,Africa +2023-09-22,54305,9035,"[""Charger"", ""Keyboard""]",1438.78,{},4250,1,South America +2023-09-04,54306,490,"[""Laptop"", ""Wireless Mouse""]",2160.22,"{""loyalty"": ""21%""}",280842,1,Asia +2023-10-14,54307,2204,"[""Keyboard""]",1073.21,"{""seasonal"": ""11%""}",129692,1,North America +2023-11-12,54308,6824,"[""Wireless Mouse"", ""Keyboard""]",3743.15,"{""loyalty"": ""9%""}",230371,1,North America +2023-05-08,54309,2467,"[""Wireless Mouse""]",4882.67,{},168201,1,North America +2024-11-15,54310,9250,"[""Keyboard"", ""Tablet"", ""Charger""]",3418.64,"{""seasonal"": ""8%""}",114544,1,South America +2023-02-23,54311,3818,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2855.01,{},25779,0,Africa +2024-05-10,54312,4628,"[""Wireless Mouse"", ""Phone""]",1526.54,{},242556,0,Asia +2023-07-09,54313,3781,"[""Phone""]",2449.47,"{"""": ""23%""}",195987,1,Europe +2023-01-13,54314,4091,"[""Wireless Mouse""]",693.16,{},125472,1,North America +2023-09-10,54315,7512,"[""Phone"", ""Monitor"", ""Charger""]",2270.05,{},211211,0,North America +2023-07-01,54316,9436,"[""Phone""]",2978.79,"{""promo"": ""23%""}",142124,0,North America +2024-06-09,54317,4633,"[""Laptop"", ""Tablet""]",758.17,"{""loyalty"": ""15%""}",167744,0,North America +2023-07-02,54318,737,"[""Keyboard"", ""Monitor"", ""Headphones""]",3686.28,{},128717,0,North America +2023-06-04,54319,2017,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",195.48,{},201470,0,Asia +2024-06-22,54320,2216,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2133.87,{},40780,0,Asia +2023-02-26,54321,3287,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4114.14,{},191051,1,South America +2023-06-07,54322,234,"[""Phone"", ""Keyboard"", ""Charger""]",1021.65,{},33356,1,Africa +2023-05-22,54323,1076,"[""Tablet"", ""Charger""]",2781.18,{},55527,0,Africa +2024-11-22,54324,5484,"[""Monitor""]",3575.17,{},269326,1,Asia +2023-08-26,54325,3288,"[""Headphones""]",4615.95,{},84873,1,North America +2024-10-23,54326,8536,"[""Headphones""]",1751.34,{},224148,1,Africa +2024-11-08,54327,118,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2025.89,{},276165,1,South America +2024-02-11,54328,1307,"[""Wireless Mouse"", ""Charger""]",1926.2,"{"""": ""21%""}",262863,0,South America +2024-11-17,54329,2176,"[""Charger"", ""Phone"", ""Headphones""]",2600.73,{},114492,0,South America +2023-09-20,54330,3899,"[""Headphones"", ""Tablet"", ""Charger""]",1836.06,{},245192,0,Asia +2024-07-17,54331,2493,"[""Phone"", ""Charger"", ""Wireless Mouse""]",154.94,"{""promo"": ""17%""}",265865,0,Europe +2023-10-27,54332,2548,"[""Monitor""]",1856.07,{},271981,1,Europe +2023-11-28,54333,6813,"[""Wireless Mouse"", ""Tablet""]",2009.69,{},192965,1,Africa +2023-11-13,54334,6216,"[""Headphones""]",4282.32,"{""promo"": ""30%""}",60791,1,Asia +2024-08-12,54335,736,"[""Monitor""]",3225.7,{},131524,1,Africa +2023-11-23,54336,6759,"[""Charger"", ""Keyboard"", ""Laptop""]",1253.43,{},119557,1,South America +2024-03-02,54337,5048,"[""Monitor""]",4000.39,{},118198,0,South America +2023-05-02,54338,9866,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3764.24,{},174099,0,Africa +2023-09-02,54339,7528,"[""Headphones"", ""Keyboard""]",3987.51,{},235125,1,Europe +2023-09-18,54340,905,"[""Monitor"", ""Wireless Mouse""]",2191.59,{},150012,0,North America +2024-04-19,54341,8164,"[""Keyboard"", ""Tablet""]",3268.49,{},28935,1,South America +2024-10-08,54342,4368,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1058.67,"{""seasonal"": ""28%""}",147338,0,South America +2024-09-21,54343,6576,"[""Monitor"", ""Wireless Mouse""]",4570.31,"{""loyalty"": ""17%""}",31081,0,Asia +2024-01-13,54344,4790,"[""Keyboard"", ""Headphones"", ""Tablet""]",2603.15,{},5709,0,Asia +2024-12-14,54345,4094,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2400.24,{},30606,1,Europe +2023-11-07,54346,4779,"[""Headphones""]",300.14,{},45818,1,North America +2024-07-06,54347,3365,"[""Charger"", ""Headphones""]",1266.46,"{"""": ""11%""}",97582,1,Europe +2023-03-25,54348,9971,"[""Keyboard""]",1517.47,"{"""": ""21%""}",228750,1,Asia +2024-03-03,54349,2981,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1239.37,"{""promo"": ""12%""}",99337,0,South America +2024-11-23,54350,341,"[""Headphones"", ""Charger"", ""Laptop""]",679.95,"{""seasonal"": ""18%""}",224291,1,Africa +2024-07-26,54351,1190,"[""Headphones"", ""Laptop""]",4287.87,{},270587,0,North America +2024-07-01,54352,2666,"[""Tablet""]",4411.61,"{""promo"": ""28%""}",93906,0,Asia +2024-03-31,54353,5727,"[""Tablet"", ""Charger""]",3968.83,{},41268,0,Europe +2023-03-11,54354,583,"[""Keyboard""]",3060.54,"{"""": ""5%""}",293976,1,South America +2024-05-13,54355,6775,"[""Keyboard"", ""Laptop""]",3137.05,{},277055,1,North America +2023-03-24,54356,1903,"[""Keyboard""]",90.43,{},53353,0,Africa +2023-03-26,54357,9817,"[""Laptop"", ""Wireless Mouse""]",2281.9,{},31630,1,Europe +2023-08-01,54358,1682,"[""Monitor"", ""Keyboard"", ""Phone""]",1872.71,"{""promo"": ""29%""}",9619,1,Africa +2023-12-22,54359,286,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",334.87,{},76275,0,Europe +2024-01-18,54360,4956,"[""Wireless Mouse""]",3138.7,"{"""": ""23%""}",8380,0,Africa +2023-12-25,54361,187,"[""Keyboard"", ""Phone""]",4340.42,{},258703,0,Asia +2023-05-04,54362,1769,"[""Wireless Mouse""]",1915.09,"{""loyalty"": ""25%""}",136953,1,Europe +2024-02-27,54363,1512,"[""Monitor"", ""Phone""]",1247.03,{},31192,1,Africa +2024-02-11,54364,6595,"[""Headphones"", ""Phone""]",2298.57,"{""promo"": ""24%""}",131376,1,Europe +2023-04-21,54365,9700,"[""Keyboard"", ""Phone"", ""Headphones""]",3330.25,{},45137,1,South America +2023-11-19,54366,1932,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4683.77,{},251139,1,Africa +2023-06-12,54367,403,"[""Laptop""]",490.5,"{""seasonal"": ""28%""}",133269,0,North America +2023-05-29,54368,5396,"[""Tablet""]",2951.43,{},20303,1,Europe +2023-01-14,54369,9028,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",916.51,{},261935,0,Asia +2024-03-28,54370,1282,"[""Phone""]",2204.58,"{""seasonal"": ""14%""}",75905,1,Europe +2023-05-30,54371,2977,"[""Tablet""]",4026.47,"{""promo"": ""7%""}",228316,1,South America +2024-08-11,54372,7002,"[""Keyboard"", ""Monitor""]",1423.77,"{""promo"": ""11%""}",134843,1,Europe +2023-08-25,54373,6521,"[""Wireless Mouse""]",2574.23,{},17634,1,Asia +2024-08-18,54374,60,"[""Phone""]",3839.01,{},62310,0,South America +2024-08-04,54375,2625,"[""Wireless Mouse""]",3302.24,{},193088,1,North America +2023-04-19,54376,1793,"[""Tablet""]",4680.36,"{""promo"": ""22%""}",149979,1,Africa +2024-10-25,54377,9049,"[""Tablet"", ""Keyboard""]",3232.7,{},54891,0,Asia +2024-11-06,54378,5697,"[""Keyboard"", ""Monitor""]",900.34,"{""promo"": ""16%""}",247376,0,South America +2024-10-17,54379,7532,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",894.14,{},289451,1,Africa +2024-08-11,54380,3445,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1461.24,"{"""": ""5%""}",163562,1,South America +2023-07-06,54381,2289,"[""Tablet"", ""Laptop"", ""Charger""]",1236.11,"{""promo"": ""23%""}",126733,1,North America +2024-03-23,54382,1322,"[""Tablet""]",616.51,"{"""": ""12%""}",105159,1,Europe +2023-04-07,54383,4365,"[""Tablet"", ""Laptop"", ""Headphones""]",447.92,{},113741,0,Europe +2023-07-03,54384,8696,"[""Laptop""]",526.53,{},139265,0,Europe +2024-07-23,54385,5617,"[""Keyboard"", ""Phone"", ""Monitor""]",444.27,{},264976,1,Europe +2023-11-10,54386,171,"[""Phone"", ""Wireless Mouse""]",4441.84,{},8865,0,Africa +2024-01-20,54387,8356,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3017.02,{},66722,1,North America +2024-12-10,54388,4925,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3780.03,{},129910,1,North America +2024-07-18,54389,9430,"[""Headphones"", ""Monitor""]",316.47,{},36718,0,North America +2024-05-16,54390,2534,"[""Tablet""]",3900.04,"{""loyalty"": ""10%""}",172249,0,South America +2024-06-23,54391,1660,"[""Charger"", ""Keyboard"", ""Monitor""]",4122.24,"{""seasonal"": ""23%""}",194776,1,North America +2023-12-02,54392,152,"[""Headphones"", ""Charger"", ""Monitor""]",1562.33,{},97341,0,North America +2023-12-18,54393,635,"[""Charger"", ""Tablet""]",2801.21,"{"""": ""28%""}",127324,1,South America +2023-10-14,54394,5812,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1988.12,{},150922,1,Asia +2024-01-08,54395,5284,"[""Headphones"", ""Tablet""]",4428.71,{},166655,0,North America +2024-02-09,54396,8557,"[""Wireless Mouse""]",4776.95,{},199363,1,Asia +2023-11-03,54397,2166,"[""Wireless Mouse""]",673.04,{},55159,0,Asia +2024-01-01,54398,1517,"[""Monitor"", ""Wireless Mouse""]",983.83,"{""loyalty"": ""18%""}",257061,1,South America +2023-07-18,54399,2158,"[""Phone"", ""Monitor"", ""Charger""]",1322.66,"{""loyalty"": ""27%""}",299772,1,Asia +2023-07-01,54400,3511,"[""Charger"", ""Phone""]",3691.73,{},205487,0,Europe +2024-05-21,54401,4757,"[""Keyboard"", ""Charger""]",298.29,{},73834,0,North America +2024-07-14,54402,4881,"[""Phone"", ""Tablet""]",1292.92,{},260376,1,South America +2024-05-21,54403,3514,"[""Monitor"", ""Phone"", ""Keyboard""]",2721.52,{},66696,0,Asia +2024-01-08,54404,5973,"[""Laptop""]",549.28,"{""promo"": ""22%""}",87431,0,North America +2024-01-03,54405,2947,"[""Keyboard""]",4159.08,{},292062,1,North America +2023-02-27,54406,8410,"[""Monitor""]",2046.36,"{""promo"": ""16%""}",250381,1,South America +2023-10-23,54407,4799,"[""Laptop"", ""Charger""]",119.19,{},45612,0,North America +2024-04-30,54408,5016,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4658.71,"{""loyalty"": ""23%""}",187868,1,Africa +2024-09-20,54409,1428,"[""Headphones"", ""Wireless Mouse""]",1690.07,"{""seasonal"": ""30%""}",181389,0,North America +2024-04-02,54410,6960,"[""Headphones"", ""Tablet"", ""Charger""]",469.35,{},264277,1,Europe +2023-11-04,54411,8339,"[""Charger"", ""Keyboard""]",750.49,{},6962,1,North America +2023-06-09,54412,964,"[""Phone""]",4829.76,{},3884,0,South America +2024-12-22,54413,188,"[""Headphones"", ""Wireless Mouse""]",451.66,"{""seasonal"": ""26%""}",226698,1,Europe +2023-11-23,54414,4376,"[""Charger""]",2972.42,{},247099,0,Africa +2023-02-06,54415,8700,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",134.65,"{""seasonal"": ""29%""}",117418,1,North America +2024-07-11,54416,2222,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1567.02,{},188608,1,North America +2023-08-10,54417,6383,"[""Phone""]",2235.07,"{"""": ""5%""}",162652,1,Africa +2024-05-24,54418,685,"[""Phone""]",3294.28,{},207987,0,Asia +2024-09-22,54419,6938,"[""Charger"", ""Headphones"", ""Laptop""]",1540.45,"{""loyalty"": ""13%""}",185349,1,Asia +2023-08-10,54420,9130,"[""Wireless Mouse""]",4571.03,"{""loyalty"": ""30%""}",152457,1,Asia +2024-11-10,54421,7983,"[""Charger"", ""Tablet""]",3391.0,{},39135,0,Asia +2024-10-05,54422,6151,"[""Wireless Mouse"", ""Keyboard""]",536.12,"{""promo"": ""24%""}",271215,1,Africa +2023-04-15,54423,8262,"[""Tablet""]",4598.3,"{""seasonal"": ""28%""}",67607,1,Asia +2024-01-19,54424,4880,"[""Charger"", ""Phone""]",3093.89,"{""seasonal"": ""10%""}",78960,1,Asia +2024-01-31,54425,4298,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",847.42,"{"""": ""26%""}",179008,0,South America +2024-02-29,54426,4571,"[""Phone""]",2808.92,{},46087,1,Asia +2024-02-14,54427,4654,"[""Tablet"", ""Wireless Mouse""]",2507.24,"{""loyalty"": ""24%""}",77955,1,North America +2024-09-29,54428,4784,"[""Monitor"", ""Keyboard"", ""Headphones""]",2215.08,"{""promo"": ""24%""}",207302,1,Europe +2023-03-05,54429,9286,"[""Monitor"", ""Tablet"", ""Laptop""]",2406.82,{},130566,0,South America +2024-02-16,54430,6963,"[""Monitor"", ""Headphones""]",4120.13,"{"""": ""26%""}",69152,0,Africa +2023-06-14,54431,560,"[""Keyboard"", ""Charger""]",3745.22,{},219532,0,Europe +2024-04-01,54432,2779,"[""Headphones"", ""Phone""]",653.89,"{""promo"": ""24%""}",236812,1,North America +2024-06-19,54433,1801,"[""Keyboard"", ""Phone"", ""Tablet""]",1441.26,"{""seasonal"": ""10%""}",186602,0,Africa +2023-11-10,54434,4043,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4823.65,"{"""": ""10%""}",268465,0,Africa +2024-11-23,54435,1540,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2340.67,"{"""": ""29%""}",291365,0,Africa +2023-12-21,54436,8087,"[""Keyboard""]",417.17,{},89723,0,South America +2024-04-20,54437,4968,"[""Wireless Mouse"", ""Headphones""]",2211.27,"{"""": ""17%""}",145294,0,Asia +2023-12-19,54438,4497,"[""Tablet""]",4641.16,"{"""": ""20%""}",82714,1,Asia +2023-04-28,54439,2735,"[""Headphones"", ""Phone"", ""Monitor""]",2205.25,"{""loyalty"": ""27%""}",238931,1,Europe +2023-10-17,54440,8621,"[""Charger"", ""Wireless Mouse""]",2984.11,{},97731,1,Europe +2024-06-03,54441,7469,"[""Charger""]",3264.72,"{"""": ""28%""}",132800,1,South America +2023-12-13,54442,502,"[""Keyboard"", ""Headphones"", ""Phone""]",2889.33,{},221516,0,North America +2023-01-05,54443,4946,"[""Wireless Mouse""]",234.45,{},299956,0,Europe +2024-12-31,54444,5795,"[""Keyboard"", ""Monitor"", ""Laptop""]",3643.24,"{"""": ""27%""}",198837,1,Europe +2024-07-09,54445,4135,"[""Phone""]",645.66,{},10366,1,Asia +2024-12-05,54446,5935,"[""Wireless Mouse""]",3877.17,{},49645,0,Asia +2023-06-06,54447,3876,"[""Laptop""]",1343.09,{},159707,1,North America +2023-08-21,54448,8268,"[""Tablet"", ""Headphones""]",3990.18,"{""seasonal"": ""18%""}",169961,1,South America +2024-05-06,54449,2996,"[""Headphones""]",2025.76,{},241961,1,South America +2024-03-19,54450,8561,"[""Keyboard"", ""Charger""]",4961.23,"{""promo"": ""29%""}",20067,1,North America +2023-06-14,54451,3293,"[""Keyboard""]",922.98,{},8127,1,North America +2024-12-26,54452,9419,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2816.66,{},24396,1,Africa +2023-05-03,54453,7017,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3123.51,{},128707,0,Europe +2024-08-27,54454,7441,"[""Headphones"", ""Laptop"", ""Phone""]",447.52,{},179778,1,South America +2024-12-30,54455,400,"[""Keyboard"", ""Tablet"", ""Charger""]",4102.97,"{"""": ""23%""}",13521,1,Africa +2023-06-21,54456,1384,"[""Keyboard""]",3197.6,"{""loyalty"": ""10%""}",134623,1,South America +2023-04-30,54457,8159,"[""Monitor"", ""Tablet""]",1944.17,"{""seasonal"": ""25%""}",41592,0,Asia +2023-05-21,54458,3216,"[""Charger"", ""Headphones"", ""Laptop""]",2411.65,{},2938,1,Africa +2024-09-26,54459,1866,"[""Charger"", ""Phone""]",1159.34,{},23425,0,North America +2023-07-29,54460,2711,"[""Keyboard"", ""Headphones"", ""Phone""]",945.92,{},205175,0,Africa +2024-09-03,54461,5660,"[""Phone"", ""Monitor""]",299.18,"{""promo"": ""17%""}",283415,1,Asia +2024-11-08,54462,9151,"[""Wireless Mouse""]",4922.94,{},31161,0,Asia +2024-07-01,54463,5214,"[""Phone""]",4481.68,"{""loyalty"": ""16%""}",96611,1,Europe +2023-03-19,54464,788,"[""Monitor""]",3101.96,{},203125,1,Africa +2023-01-08,54465,3085,"[""Charger"", ""Tablet"", ""Headphones""]",4636.51,{},86620,0,Europe +2024-01-17,54466,2457,"[""Charger"", ""Headphones"", ""Monitor""]",2894.43,"{""loyalty"": ""10%""}",289036,0,South America +2024-02-10,54467,8638,"[""Headphones""]",1633.34,"{""promo"": ""21%""}",85246,1,Asia +2023-08-29,54468,1995,"[""Keyboard""]",4745.84,{},30188,1,North America +2023-02-11,54469,9889,"[""Wireless Mouse"", ""Charger""]",3178.14,{},249996,1,North America +2024-07-03,54470,9414,"[""Wireless Mouse"", ""Monitor""]",1312.27,"{""loyalty"": ""5%""}",42345,1,Europe +2023-08-04,54471,894,"[""Laptop"", ""Wireless Mouse""]",244.91,{},294736,1,Africa +2023-04-04,54472,6003,"[""Monitor"", ""Wireless Mouse""]",1144.78,"{""promo"": ""30%""}",57169,0,Asia +2024-07-13,54473,8377,"[""Charger"", ""Monitor"", ""Phone""]",751.94,{},147159,0,Asia +2024-12-04,54474,2604,"[""Headphones"", ""Tablet"", ""Keyboard""]",598.86,"{""seasonal"": ""22%""}",85778,1,Africa +2024-09-11,54475,3994,"[""Headphones"", ""Monitor""]",2718.88,{},225513,0,South America +2024-06-29,54476,6095,"[""Phone"", ""Headphones""]",182.46,"{""loyalty"": ""27%""}",179259,1,Africa +2024-04-29,54477,3,"[""Phone"", ""Laptop"", ""Headphones""]",4803.06,{},4858,1,Asia +2024-10-28,54478,8153,"[""Laptop"", ""Monitor""]",591.69,"{""seasonal"": ""17%""}",296451,1,Africa +2023-08-31,54479,5240,"[""Headphones"", ""Tablet""]",2344.25,{},253079,0,Asia +2023-12-22,54480,7710,"[""Headphones""]",3173.76,{},124018,1,North America +2024-05-14,54481,1012,"[""Wireless Mouse""]",4173.03,{},261961,0,South America +2023-04-17,54482,2076,"[""Charger""]",1851.49,"{""loyalty"": ""11%""}",272425,1,South America +2023-01-26,54483,1994,"[""Tablet""]",702.68,"{""loyalty"": ""13%""}",184681,1,South America +2024-12-14,54484,6797,"[""Wireless Mouse"", ""Charger""]",2959.75,{},269658,0,Asia +2023-01-01,54485,938,"[""Keyboard""]",3153.76,{},125349,1,Africa +2024-10-01,54486,9567,"[""Keyboard"", ""Monitor""]",168.7,"{""loyalty"": ""21%""}",34687,0,South America +2024-10-21,54487,4899,"[""Tablet""]",3834.06,{},227386,0,North America +2024-04-25,54488,7396,"[""Tablet"", ""Laptop""]",1598.18,"{"""": ""28%""}",36502,1,Asia +2024-02-19,54489,1141,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2520.69,"{"""": ""14%""}",290234,1,Europe +2024-08-08,54490,7061,"[""Headphones"", ""Charger""]",1935.13,"{""promo"": ""21%""}",123033,0,North America +2024-09-07,54491,4829,"[""Charger"", ""Keyboard"", ""Phone""]",3197.47,"{""seasonal"": ""29%""}",286985,0,Asia +2023-01-18,54492,8496,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3251.53,"{"""": ""26%""}",261933,0,Africa +2024-04-05,54493,2488,"[""Charger""]",4109.26,{},185155,0,North America +2023-08-02,54494,8136,"[""Wireless Mouse"", ""Monitor""]",1053.66,{},296271,0,North America +2024-03-24,54495,1055,"[""Phone""]",2377.62,"{"""": ""27%""}",64339,0,Asia +2024-11-11,54496,6314,"[""Charger"", ""Phone""]",3843.97,"{"""": ""29%""}",186497,0,Europe +2023-01-27,54497,9933,"[""Headphones""]",1832.52,"{"""": ""28%""}",211914,0,Europe +2023-06-18,54498,7350,"[""Tablet""]",4098.76,"{""promo"": ""7%""}",238248,1,South America +2024-12-01,54499,4008,"[""Monitor""]",1726.26,"{""loyalty"": ""24%""}",133189,1,Africa +2024-05-12,54500,9182,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3904.02,{},266455,0,Europe +2024-09-24,54501,1754,"[""Keyboard"", ""Monitor"", ""Headphones""]",91.3,"{""promo"": ""28%""}",135499,1,Africa +2024-05-18,54502,6134,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4679.44,"{""loyalty"": ""7%""}",126847,1,Europe +2023-03-03,54503,1452,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4292.41,"{""promo"": ""22%""}",114988,0,Asia +2023-10-05,54504,9031,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2711.33,"{""loyalty"": ""12%""}",239382,0,North America +2024-02-14,54505,5750,"[""Phone"", ""Charger"", ""Laptop""]",2407.4,"{""promo"": ""19%""}",269295,0,South America +2024-09-22,54506,3071,"[""Wireless Mouse""]",4228.17,"{""promo"": ""16%""}",249284,0,Asia +2024-11-22,54507,3556,"[""Phone"", ""Laptop""]",2412.76,{},13972,1,North America +2024-01-15,54508,1747,"[""Tablet"", ""Monitor""]",1017.35,"{""seasonal"": ""24%""}",257712,1,Africa +2023-11-05,54509,6621,"[""Tablet"", ""Phone"", ""Laptop""]",4523.53,{},146020,0,Asia +2024-12-18,54510,1205,"[""Monitor""]",3791.12,{},211437,0,North America +2024-07-08,54511,2404,"[""Phone"", ""Keyboard""]",545.68,"{"""": ""18%""}",67524,1,Africa +2023-04-27,54512,8341,"[""Headphones"", ""Charger"", ""Phone""]",3431.35,{},168011,0,Asia +2023-02-24,54513,1754,"[""Headphones"", ""Wireless Mouse""]",2321.45,{},149490,0,Africa +2024-09-15,54514,8820,"[""Tablet"", ""Charger""]",3305.7,"{""seasonal"": ""16%""}",162442,1,Asia +2024-03-10,54515,3382,"[""Charger"", ""Keyboard""]",1336.68,"{""seasonal"": ""10%""}",195314,1,North America +2023-12-16,54516,555,"[""Tablet""]",3915.83,{},165349,0,Africa +2023-09-25,54517,3624,"[""Phone"", ""Wireless Mouse""]",4773.26,{},298536,1,South America +2023-05-25,54518,2416,"[""Phone"", ""Charger"", ""Tablet""]",3981.58,"{""seasonal"": ""7%""}",260041,0,Asia +2024-04-05,54519,485,"[""Tablet""]",2594.97,"{""seasonal"": ""14%""}",5102,0,South America +2024-08-13,54520,2340,"[""Tablet"", ""Phone""]",640.02,{},111540,1,Asia +2024-09-22,54521,1713,"[""Monitor""]",1696.65,"{""loyalty"": ""9%""}",241251,0,Asia +2023-08-27,54522,8629,"[""Headphones"", ""Phone""]",2941.86,"{"""": ""6%""}",13242,1,Asia +2023-04-28,54523,7866,"[""Monitor"", ""Keyboard"", ""Phone""]",3058.33,"{""seasonal"": ""9%""}",22693,0,Europe +2023-05-24,54524,7852,"[""Charger"", ""Monitor""]",2243.62,"{""seasonal"": ""15%""}",166692,0,South America +2023-06-13,54525,9349,"[""Keyboard""]",4799.69,{},9006,0,South America +2023-06-09,54526,668,"[""Charger""]",2979.95,{},202983,0,North America +2024-04-15,54527,2968,"[""Laptop""]",2519.15,"{""seasonal"": ""15%""}",162051,1,Asia +2023-09-19,54528,6650,"[""Headphones""]",2619.27,{},63929,1,Asia +2024-01-30,54529,3305,"[""Phone"", ""Keyboard"", ""Charger""]",1277.67,{},200865,0,North America +2024-06-12,54530,3843,"[""Charger"", ""Phone""]",856.26,{},185546,1,Africa +2024-11-27,54531,217,"[""Phone""]",1180.14,{},260797,1,Europe +2024-07-12,54532,9745,"[""Headphones""]",3846.99,"{""seasonal"": ""8%""}",32502,1,North America +2023-10-07,54533,8629,"[""Phone"", ""Monitor"", ""Charger""]",3570.19,{},292256,1,South America +2023-08-30,54534,4477,"[""Charger"", ""Laptop""]",495.46,"{""seasonal"": ""15%""}",44132,0,North America +2023-05-27,54535,8479,"[""Headphones"", ""Tablet"", ""Keyboard""]",2293.18,{},114902,0,Europe +2023-08-08,54536,2649,"[""Headphones""]",4535.1,{},179541,0,Europe +2023-03-04,54537,9657,"[""Wireless Mouse"", ""Monitor""]",1362.36,"{"""": ""12%""}",9343,0,North America +2023-01-22,54538,8254,"[""Laptop"", ""Monitor""]",171.32,"{""promo"": ""24%""}",21793,0,South America +2024-06-03,54539,9595,"[""Laptop"", ""Keyboard"", ""Charger""]",3214.54,"{""seasonal"": ""6%""}",258674,0,North America +2023-12-06,54540,9188,"[""Headphones"", ""Wireless Mouse""]",1226.71,{},266732,1,Africa +2024-12-01,54541,8492,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2421.42,{},62745,0,Asia +2024-07-12,54542,4863,"[""Headphones"", ""Charger""]",2329.87,"{""seasonal"": ""24%""}",29209,0,Europe +2023-10-29,54543,5845,"[""Wireless Mouse"", ""Phone""]",2680.24,"{""seasonal"": ""24%""}",188332,0,South America +2023-12-23,54544,239,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3173.67,"{""seasonal"": ""15%""}",145895,1,Europe +2024-07-12,54545,8241,"[""Keyboard""]",277.69,{},165147,0,Africa +2023-09-15,54546,943,"[""Keyboard"", ""Charger""]",4077.39,{},47648,1,Africa +2024-07-27,54547,3753,"[""Phone"", ""Monitor"", ""Charger""]",2793.25,{},29451,1,South America +2023-06-17,54548,9538,"[""Charger"", ""Monitor""]",1431.48,"{""loyalty"": ""9%""}",172715,0,Africa +2024-06-20,54549,8826,"[""Wireless Mouse""]",653.62,"{""loyalty"": ""6%""}",123990,0,Africa +2023-12-28,54550,1636,"[""Headphones"", ""Tablet""]",1366.88,"{""seasonal"": ""18%""}",216656,0,North America +2023-11-13,54551,6033,"[""Laptop""]",2011.07,{},227262,0,South America +2023-12-17,54552,7508,"[""Monitor""]",1099.1,{},95853,1,North America +2023-09-14,54553,974,"[""Wireless Mouse"", ""Tablet""]",3357.05,{},149926,0,Europe +2023-06-25,54554,3488,"[""Headphones"", ""Laptop""]",2369.42,"{""promo"": ""13%""}",293077,1,Africa +2024-03-23,54555,3143,"[""Wireless Mouse"", ""Phone""]",3842.96,"{"""": ""13%""}",26668,0,Europe +2023-11-24,54556,9195,"[""Laptop"", ""Headphones""]",146.42,{},103335,1,Europe +2023-03-21,54557,5593,"[""Phone""]",2499.68,"{""loyalty"": ""11%""}",296732,1,Africa +2024-03-06,54558,2600,"[""Phone"", ""Keyboard""]",929.87,{},270430,1,Europe +2024-10-08,54559,9650,"[""Headphones"", ""Laptop"", ""Monitor""]",2409.28,{},35422,0,Asia +2023-08-26,54560,6513,"[""Laptop"", ""Phone"", ""Keyboard""]",3080.97,{},156739,0,South America +2024-07-30,54561,3963,"[""Charger"", ""Keyboard"", ""Monitor""]",4426.68,{},73766,1,South America +2023-09-12,54562,5606,"[""Charger"", ""Phone""]",4057.18,"{""seasonal"": ""24%""}",183237,1,Asia +2024-11-08,54563,473,"[""Tablet"", ""Wireless Mouse""]",3539.05,"{""promo"": ""25%""}",206932,0,South America +2024-02-04,54564,6378,"[""Headphones"", ""Wireless Mouse""]",3426.78,"{""seasonal"": ""6%""}",4678,1,North America +2023-11-15,54565,6659,"[""Tablet""]",146.56,"{""promo"": ""14%""}",59306,0,South America +2023-02-12,54566,1929,"[""Laptop"", ""Monitor""]",2674.51,"{""seasonal"": ""7%""}",137958,1,Europe +2023-02-18,54567,1475,"[""Tablet""]",4601.2,"{""seasonal"": ""24%""}",80383,0,South America +2024-08-12,54568,6221,"[""Charger"", ""Laptop"", ""Phone""]",1925.1,"{"""": ""11%""}",210228,1,Asia +2024-12-14,54569,3110,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3031.76,{},46232,0,South America +2024-10-01,54570,1445,"[""Laptop"", ""Wireless Mouse""]",1226.62,{},147353,1,North America +2023-01-28,54571,9384,"[""Keyboard"", ""Laptop"", ""Charger""]",4177.67,"{""seasonal"": ""6%""}",201517,0,Asia +2024-04-15,54572,8423,"[""Headphones""]",1812.52,{},109102,1,Africa +2024-03-21,54573,8774,"[""Monitor""]",2955.62,{},18074,1,Europe +2023-11-19,54574,769,"[""Monitor"", ""Tablet""]",379.08,{},81529,0,North America +2024-04-04,54575,6898,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2769.78,"{""promo"": ""21%""}",131018,0,Europe +2024-06-18,54576,7291,"[""Wireless Mouse""]",4420.08,{},210014,1,Europe +2024-07-27,54577,8209,"[""Keyboard"", ""Monitor""]",2745.89,"{""loyalty"": ""19%""}",95768,1,North America +2023-02-18,54578,5588,"[""Laptop"", ""Charger""]",4692.94,{},9799,1,South America +2023-06-26,54579,9776,"[""Headphones"", ""Monitor"", ""Laptop""]",4437.41,"{""loyalty"": ""13%""}",234473,1,Asia +2023-10-16,54580,3201,"[""Headphones""]",4275.77,{},150743,1,Europe +2024-06-30,54581,1747,"[""Charger"", ""Tablet"", ""Keyboard""]",2905.47,"{""seasonal"": ""29%""}",215840,1,South America +2023-04-20,54582,4385,"[""Charger"", ""Monitor""]",685.68,{},240036,1,Europe +2023-02-28,54583,3817,"[""Tablet"", ""Headphones""]",919.8,"{""loyalty"": ""10%""}",166264,0,North America +2023-10-13,54584,7155,"[""Keyboard""]",700.69,{},125327,0,Africa +2024-10-31,54585,1752,"[""Monitor""]",710.99,"{"""": ""20%""}",145357,1,Asia +2023-03-31,54586,611,"[""Monitor"", ""Charger"", ""Headphones""]",2380.86,{},40987,1,Africa +2024-08-16,54587,8504,"[""Laptop""]",2495.3,{},20958,0,Asia +2024-04-27,54588,5608,"[""Monitor"", ""Laptop"", ""Charger""]",3850.67,{},267593,0,South America +2023-01-12,54589,2298,"[""Charger"", ""Phone"", ""Laptop""]",464.41,"{""loyalty"": ""21%""}",46502,0,North America +2023-12-29,54590,5497,"[""Headphones"", ""Charger""]",3005.57,"{"""": ""24%""}",85800,1,Europe +2024-05-22,54591,5968,"[""Wireless Mouse"", ""Keyboard""]",2572.81,{},130446,0,Africa +2024-05-05,54592,7825,"[""Headphones"", ""Phone""]",1245.74,{},234862,0,Asia +2024-07-07,54593,2768,"[""Phone""]",1337.88,"{""seasonal"": ""25%""}",62374,1,Europe +2024-09-11,54594,8537,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",148.06,{},125501,0,South America +2023-07-10,54595,2117,"[""Laptop"", ""Monitor""]",221.74,{},96561,0,Europe +2023-02-28,54596,5048,"[""Wireless Mouse"", ""Tablet""]",4616.22,{},277125,0,Europe +2024-04-01,54597,2844,"[""Charger"", ""Phone"", ""Monitor""]",3352.83,"{""seasonal"": ""30%""}",27827,1,Europe +2024-09-21,54598,7432,"[""Headphones"", ""Phone""]",4485.61,{},96413,0,Europe +2024-08-11,54599,127,"[""Wireless Mouse""]",154.03,"{""seasonal"": ""9%""}",32320,1,Asia +2024-06-11,54600,7635,"[""Monitor""]",4711.09,"{""promo"": ""24%""}",62571,0,Europe +2024-07-01,54601,5115,"[""Wireless Mouse""]",3097.32,"{""seasonal"": ""24%""}",285739,1,Europe +2024-04-23,54602,9554,"[""Tablet""]",747.0,"{"""": ""20%""}",33625,0,South America +2024-07-17,54603,2870,"[""Keyboard""]",3544.82,"{""loyalty"": ""22%""}",187757,1,North America +2024-01-23,54604,9430,"[""Monitor""]",4019.88,"{""promo"": ""27%""}",254783,0,Asia +2023-05-21,54605,4598,"[""Tablet"", ""Phone"", ""Charger""]",179.97,"{""seasonal"": ""16%""}",10976,1,South America +2024-05-31,54606,6470,"[""Keyboard""]",2249.34,{},277850,0,South America +2023-10-01,54607,8697,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1443.08,{},46451,1,North America +2023-02-07,54608,4281,"[""Charger"", ""Wireless Mouse""]",4742.59,"{"""": ""30%""}",229602,0,Africa +2023-08-22,54609,2300,"[""Keyboard""]",336.76,{},237999,1,South America +2024-10-22,54610,3362,"[""Laptop"", ""Monitor""]",2897.57,{},122126,1,Europe +2024-02-20,54611,3647,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3247.48,"{"""": ""6%""}",214318,0,Africa +2024-09-16,54612,1015,"[""Charger"", ""Tablet""]",715.55,{},100141,1,Europe +2024-10-25,54613,1996,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3566.26,{},263446,1,Europe +2024-10-31,54614,560,"[""Headphones"", ""Monitor""]",2458.84,"{""promo"": ""26%""}",19607,1,South America +2023-03-30,54615,4882,"[""Headphones"", ""Keyboard""]",1275.1,{},147016,1,South America +2023-11-26,54616,519,"[""Tablet""]",1963.95,"{""loyalty"": ""5%""}",121637,0,Africa +2024-11-28,54617,4920,"[""Keyboard"", ""Laptop"", ""Tablet""]",2702.06,{},42580,0,South America +2024-11-16,54618,7222,"[""Tablet""]",4218.31,"{""promo"": ""8%""}",180612,0,South America +2023-08-17,54619,158,"[""Tablet""]",2734.28,"{"""": ""22%""}",70899,0,North America +2023-12-29,54620,7499,"[""Wireless Mouse""]",485.76,{},20097,0,North America +2023-08-15,54621,6310,"[""Tablet""]",1008.6,{},106763,0,Asia +2024-05-15,54622,7563,"[""Charger"", ""Keyboard""]",4589.28,{},220823,1,Asia +2024-10-26,54623,7872,"[""Charger"", ""Tablet"", ""Laptop""]",3658.67,"{"""": ""23%""}",252305,1,Europe +2024-07-18,54624,6906,"[""Monitor"", ""Tablet"", ""Phone""]",1504.32,{},253799,0,Europe +2023-10-12,54625,1542,"[""Monitor""]",717.82,"{""loyalty"": ""24%""}",178355,1,North America +2024-04-21,54626,9101,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",459.27,{},161793,1,Asia +2024-06-26,54627,2280,"[""Monitor"", ""Headphones""]",4524.96,"{""seasonal"": ""29%""}",68057,0,Asia +2023-01-15,54628,7410,"[""Charger"", ""Keyboard""]",4739.88,"{""promo"": ""22%""}",107535,1,Africa +2023-05-29,54629,1667,"[""Keyboard"", ""Phone""]",3329.9,{},88381,0,Asia +2023-03-17,54630,4856,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2397.68,{},4259,1,North America +2024-07-07,54631,9461,"[""Laptop"", ""Phone"", ""Headphones""]",266.46,"{""loyalty"": ""14%""}",205486,0,Europe +2023-07-31,54632,9288,"[""Keyboard""]",4968.33,"{""seasonal"": ""26%""}",54811,0,South America +2023-04-08,54633,7638,"[""Headphones"", ""Phone"", ""Keyboard""]",3520.52,{},265694,0,Europe +2024-01-07,54634,3960,"[""Headphones"", ""Wireless Mouse""]",4017.09,"{""promo"": ""26%""}",192153,1,Europe +2024-11-16,54635,518,"[""Headphones""]",4577.6,{},241552,1,Asia +2024-06-17,54636,9530,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3840.86,"{""promo"": ""30%""}",5912,0,North America +2024-07-18,54637,590,"[""Tablet"", ""Headphones""]",2258.67,"{""loyalty"": ""27%""}",23250,1,North America +2024-09-15,54638,5623,"[""Laptop"", ""Tablet"", ""Charger""]",3609.92,{},227638,1,Africa +2024-06-30,54639,5425,"[""Phone"", ""Keyboard""]",3790.49,"{""loyalty"": ""25%""}",258441,1,North America +2024-08-27,54640,8838,"[""Keyboard"", ""Wireless Mouse""]",911.53,"{""seasonal"": ""23%""}",254867,0,Asia +2024-09-07,54641,374,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2853.14,{},105365,0,Asia +2024-08-10,54642,4268,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4685.56,{},35273,0,South America +2024-06-04,54643,7706,"[""Monitor"", ""Tablet"", ""Keyboard""]",1221.35,"{""promo"": ""11%""}",135946,1,Asia +2024-10-14,54644,9146,"[""Charger""]",2243.45,"{""loyalty"": ""27%""}",232996,1,North America +2024-07-13,54645,7147,"[""Phone""]",1144.45,{},220206,1,Asia +2024-04-04,54646,1200,"[""Charger"", ""Keyboard""]",4954.87,"{""promo"": ""28%""}",257244,1,Africa +2024-07-03,54647,8996,"[""Keyboard"", ""Phone"", ""Monitor""]",1096.3,{},273885,0,North America +2024-03-17,54648,4496,"[""Wireless Mouse""]",4543.61,{},86225,1,Asia +2024-02-23,54649,4412,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1919.06,"{""loyalty"": ""23%""}",162785,0,Europe +2024-04-30,54650,2063,"[""Wireless Mouse"", ""Headphones""]",4791.83,{},220846,1,North America +2024-01-25,54651,2033,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4727.06,{},111608,1,Europe +2023-06-10,54652,283,"[""Headphones""]",4622.88,"{""promo"": ""5%""}",271213,1,North America +2023-09-03,54653,2762,"[""Laptop"", ""Wireless Mouse""]",4482.38,"{""promo"": ""16%""}",265886,1,Europe +2023-12-25,54654,2785,"[""Phone""]",4424.48,"{""seasonal"": ""7%""}",283477,1,Asia +2024-02-16,54655,2157,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",520.47,{},222100,1,Asia +2023-06-05,54656,9429,"[""Monitor"", ""Charger""]",3689.49,{},123047,0,Europe +2023-06-02,54657,9302,"[""Tablet""]",1728.58,"{""loyalty"": ""30%""}",278423,1,Africa +2024-11-14,54658,4719,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1349.7,{},52726,1,North America +2023-12-05,54659,4330,"[""Keyboard"", ""Monitor""]",4633.42,"{""loyalty"": ""22%""}",16049,1,North America +2024-05-26,54660,6507,"[""Tablet"", ""Laptop""]",3287.99,"{"""": ""20%""}",203461,1,Asia +2023-10-13,54661,1812,"[""Phone"", ""Charger""]",3228.11,{},149918,1,Africa +2023-11-13,54662,7716,"[""Charger""]",4692.25,"{"""": ""23%""}",85087,1,Europe +2024-10-02,54663,429,"[""Keyboard"", ""Monitor""]",2001.02,{},33126,1,Africa +2024-03-02,54664,2888,"[""Keyboard"", ""Headphones""]",2402.92,"{""promo"": ""9%""}",15188,1,North America +2024-08-07,54665,8966,"[""Phone""]",581.63,"{"""": ""25%""}",22980,1,South America +2024-12-24,54666,9600,"[""Monitor""]",2919.03,"{""promo"": ""28%""}",130087,1,Asia +2023-07-31,54667,7649,"[""Phone""]",4157.14,"{""seasonal"": ""24%""}",229157,1,Europe +2024-11-11,54668,9911,"[""Tablet"", ""Phone"", ""Keyboard""]",179.77,{},151349,0,Africa +2023-01-07,54669,9447,"[""Wireless Mouse"", ""Tablet""]",4116.13,"{""loyalty"": ""21%""}",24150,1,Asia +2023-01-11,54670,2547,"[""Charger"", ""Laptop"", ""Phone""]",4061.74,"{"""": ""9%""}",221052,1,North America +2024-05-01,54671,9955,"[""Headphones"", ""Monitor"", ""Tablet""]",4524.18,{},128480,1,South America +2024-01-23,54672,5318,"[""Laptop""]",1037.33,{},88069,1,North America +2023-09-06,54673,2760,"[""Charger""]",2095.23,"{""loyalty"": ""12%""}",24290,1,Europe +2024-02-28,54674,9290,"[""Phone"", ""Laptop""]",4090.52,"{""seasonal"": ""26%""}",268224,0,Asia +2024-03-12,54675,4556,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",406.97,"{""promo"": ""13%""}",270768,1,Europe +2024-10-17,54676,3989,"[""Phone"", ""Wireless Mouse""]",4264.64,"{""seasonal"": ""30%""}",82217,0,Africa +2024-08-15,54677,5733,"[""Phone"", ""Monitor"", ""Laptop""]",3480.3,{},274066,1,Europe +2023-11-04,54678,8413,"[""Monitor"", ""Keyboard""]",3784.36,{},18952,1,Asia +2024-07-19,54679,9287,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2598.74,"{""loyalty"": ""19%""}",29781,0,Africa +2024-05-15,54680,8577,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2277.76,{},203733,0,South America +2023-11-08,54681,1834,"[""Monitor"", ""Phone"", ""Tablet""]",2739.98,{},210746,1,South America +2023-06-21,54682,8794,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4182.4,"{""seasonal"": ""21%""}",235535,1,South America +2024-08-23,54683,964,"[""Charger"", ""Tablet""]",4313.98,{},19705,0,South America +2024-03-08,54684,2117,"[""Charger"", ""Laptop"", ""Phone""]",2808.78,{},231673,1,North America +2023-01-31,54685,2638,"[""Tablet"", ""Monitor"", ""Keyboard""]",4286.39,{},269489,0,Europe +2023-08-03,54686,1881,"[""Wireless Mouse""]",1772.05,"{"""": ""14%""}",7375,0,Africa +2024-11-01,54687,8704,"[""Phone"", ""Wireless Mouse""]",125.47,"{""promo"": ""9%""}",177104,0,Africa +2024-05-21,54688,5294,"[""Laptop""]",2491.11,"{"""": ""9%""}",26075,0,Europe +2024-03-04,54689,7489,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4156.46,"{""seasonal"": ""11%""}",274241,0,Europe +2024-10-04,54690,8310,"[""Monitor""]",3983.27,{},145270,0,Europe +2023-08-11,54691,4393,"[""Charger""]",2085.33,"{""seasonal"": ""25%""}",109292,0,South America +2023-10-10,54692,1164,"[""Laptop"", ""Charger"", ""Headphones""]",3843.06,"{""seasonal"": ""24%""}",62810,0,North America +2024-01-13,54693,8435,"[""Keyboard"", ""Tablet"", ""Charger""]",4108.41,{},197576,1,Asia +2023-09-21,54694,8365,"[""Headphones"", ""Phone""]",2529.41,{},209579,0,North America +2023-10-04,54695,7749,"[""Keyboard"", ""Laptop""]",3378.62,{},89980,1,Africa +2024-09-05,54696,8540,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2741.85,"{""promo"": ""20%""}",38355,1,Asia +2023-06-27,54697,542,"[""Phone""]",1947.96,"{""seasonal"": ""27%""}",31119,0,Europe +2024-12-08,54698,7081,"[""Keyboard"", ""Phone""]",2811.4,"{""seasonal"": ""25%""}",151205,0,North America +2024-06-29,54699,7688,"[""Charger"", ""Laptop"", ""Monitor""]",3922.75,"{""seasonal"": ""26%""}",24247,1,Asia +2024-01-30,54700,4211,"[""Wireless Mouse"", ""Laptop""]",4673.78,{},16919,0,Europe +2024-06-23,54701,900,"[""Laptop"", ""Monitor"", ""Headphones""]",4119.84,{},179457,0,Asia +2024-05-09,54702,3824,"[""Monitor"", ""Tablet"", ""Charger""]",4717.29,"{""seasonal"": ""20%""}",292438,0,Africa +2024-11-20,54703,97,"[""Phone"", ""Monitor""]",1444.03,"{""seasonal"": ""23%""}",69823,1,Asia +2023-03-17,54704,1004,"[""Wireless Mouse""]",2794.4,{},65946,0,Africa +2023-07-14,54705,7994,"[""Charger"", ""Laptop"", ""Tablet""]",4632.2,{},23452,1,Africa +2023-07-17,54706,5647,"[""Wireless Mouse"", ""Keyboard""]",1620.95,{},221521,1,Europe +2024-06-03,54707,9647,"[""Phone""]",4516.74,"{""loyalty"": ""6%""}",257175,1,Africa +2024-04-27,54708,4011,"[""Charger""]",444.34,{},180484,0,Africa +2023-05-01,54709,8095,"[""Wireless Mouse"", ""Laptop""]",1719.78,{},235648,1,Africa +2024-09-20,54710,5709,"[""Headphones""]",1288.72,"{""promo"": ""14%""}",5433,1,South America +2024-05-22,54711,7239,"[""Laptop""]",2867.9,"{""promo"": ""8%""}",72141,0,Europe +2023-07-25,54712,2665,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",541.51,"{""seasonal"": ""16%""}",173680,1,North America +2023-01-29,54713,7656,"[""Monitor""]",4149.67,{},251115,0,Asia +2023-04-19,54714,7170,"[""Monitor"", ""Headphones"", ""Laptop""]",846.98,{},125716,1,Africa +2024-05-18,54715,3745,"[""Phone""]",1946.23,"{""loyalty"": ""28%""}",292014,0,North America +2024-12-08,54716,5839,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4682.22,"{""promo"": ""23%""}",154990,0,South America +2024-08-26,54717,3127,"[""Charger""]",1641.57,{},240438,0,South America +2024-04-14,54718,7227,"[""Laptop""]",1646.52,{},39603,0,Africa +2024-02-27,54719,3931,"[""Laptop"", ""Charger"", ""Phone""]",3200.02,"{""seasonal"": ""8%""}",119227,0,Africa +2024-08-01,54720,5103,"[""Monitor"", ""Charger""]",3923.49,"{""loyalty"": ""19%""}",96130,1,Asia +2023-08-24,54721,3500,"[""Laptop"", ""Wireless Mouse""]",2478.29,"{"""": ""10%""}",182743,0,North America +2024-10-31,54722,7591,"[""Laptop"", ""Wireless Mouse""]",4586.0,{},130134,1,South America +2024-10-10,54723,9978,"[""Headphones"", ""Wireless Mouse""]",4150.64,"{""loyalty"": ""18%""}",260499,1,North America +2023-04-29,54724,2845,"[""Monitor"", ""Keyboard"", ""Tablet""]",4518.78,{},62781,1,Asia +2023-04-22,54725,9978,"[""Keyboard""]",3593.71,"{""seasonal"": ""13%""}",227263,1,South America +2023-07-17,54726,2093,"[""Tablet"", ""Monitor"", ""Headphones""]",4447.24,{},28478,1,North America +2023-11-02,54727,426,"[""Tablet"", ""Phone""]",1710.71,{},105825,0,Europe +2024-11-20,54728,2485,"[""Monitor"", ""Tablet""]",4388.4,{},215819,1,North America +2023-09-18,54729,6757,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",959.15,"{""seasonal"": ""23%""}",102705,0,North America +2023-11-23,54730,1438,"[""Headphones""]",1951.62,{},193130,0,South America +2023-07-12,54731,7265,"[""Laptop"", ""Keyboard""]",4203.03,"{""promo"": ""9%""}",158649,0,Europe +2024-08-29,54732,1406,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",396.04,"{""loyalty"": ""30%""}",217147,0,North America +2023-06-11,54733,3606,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3442.32,"{""seasonal"": ""27%""}",221826,1,North America +2024-06-14,54734,5633,"[""Laptop""]",3852.98,{},154245,1,Europe +2023-04-04,54735,4790,"[""Charger"", ""Tablet""]",350.63,{},166460,1,Asia +2024-09-06,54736,6999,"[""Monitor"", ""Laptop"", ""Headphones""]",4950.44,"{""promo"": ""10%""}",67191,0,North America +2024-05-31,54737,2614,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2551.03,{},208657,1,South America +2024-02-08,54738,5186,"[""Headphones""]",4544.7,{},196230,0,Asia +2024-12-09,54739,8599,"[""Headphones""]",470.5,{},288066,0,Africa +2023-10-21,54740,5922,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3317.1,"{""loyalty"": ""11%""}",45614,1,Africa +2024-07-07,54741,7605,"[""Charger"", ""Phone"", ""Monitor""]",3269.11,"{""seasonal"": ""26%""}",170644,0,North America +2023-07-28,54742,4913,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",722.61,{},116889,1,North America +2024-03-27,54743,9747,"[""Laptop"", ""Keyboard"", ""Headphones""]",1333.99,{},14959,0,South America +2024-07-26,54744,3361,"[""Monitor""]",4963.49,{},139537,1,Africa +2024-07-14,54745,4832,"[""Monitor""]",2284.22,{},131852,1,South America +2024-02-04,54746,4670,"[""Charger"", ""Monitor"", ""Phone""]",2684.19,"{""seasonal"": ""20%""}",89035,0,Europe +2023-01-17,54747,4578,"[""Phone""]",1665.04,{},5172,1,Africa +2024-05-16,54748,6541,"[""Keyboard"", ""Laptop""]",3496.68,{},292867,0,South America +2024-08-18,54749,2906,"[""Tablet"", ""Monitor"", ""Phone""]",1271.49,"{"""": ""13%""}",101314,1,Africa +2023-10-07,54750,7774,"[""Monitor""]",2776.97,{},38295,0,North America +2024-07-11,54751,2260,"[""Tablet"", ""Laptop"", ""Headphones""]",549.82,{},276914,1,Africa +2023-07-13,54752,1496,"[""Phone"", ""Laptop"", ""Headphones""]",510.78,{},231935,0,Asia +2023-02-16,54753,1289,"[""Laptop""]",2306.5,"{""seasonal"": ""27%""}",22109,0,North America +2024-11-17,54754,7720,"[""Tablet""]",4766.79,{},26413,1,Europe +2023-01-10,54755,3123,"[""Tablet"", ""Laptop"", ""Monitor""]",1789.45,{},74803,0,North America +2024-03-28,54756,6567,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4401.16,{},250638,1,South America +2024-06-12,54757,7781,"[""Monitor""]",1825.73,{},21850,0,Africa +2024-04-20,54758,7980,"[""Monitor"", ""Keyboard"", ""Tablet""]",2247.7,"{""loyalty"": ""21%""}",268800,0,South America +2024-02-28,54759,1122,"[""Keyboard""]",4315.23,"{""promo"": ""10%""}",208358,1,South America +2024-03-10,54760,5155,"[""Laptop"", ""Monitor"", ""Keyboard""]",4645.95,{},201133,0,Europe +2024-04-27,54761,2261,"[""Charger"", ""Phone""]",1265.18,{},250456,1,Africa +2023-09-25,54762,7399,"[""Keyboard""]",2170.27,"{""promo"": ""29%""}",80247,1,Europe +2024-06-04,54763,8998,"[""Phone"", ""Keyboard"", ""Charger""]",1570.02,"{""loyalty"": ""20%""}",215885,1,Europe +2024-01-16,54764,7904,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3230.69,"{""seasonal"": ""11%""}",261313,1,Europe +2024-08-22,54765,7285,"[""Headphones""]",302.46,{},10734,0,Africa +2024-10-14,54766,4999,"[""Tablet"", ""Phone"", ""Monitor""]",1969.12,"{""loyalty"": ""14%""}",41668,0,North America +2023-11-18,54767,9645,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2408.87,"{""seasonal"": ""28%""}",257959,1,Asia +2024-04-25,54768,3569,"[""Tablet""]",4415.84,"{""promo"": ""29%""}",6277,1,Africa +2024-03-12,54769,341,"[""Headphones"", ""Monitor"", ""Charger""]",2040.19,{},31885,0,North America +2024-03-28,54770,4925,"[""Monitor"", ""Wireless Mouse""]",2933.88,"{""loyalty"": ""28%""}",148697,1,North America +2023-08-17,54771,4369,"[""Keyboard""]",3148.63,"{"""": ""9%""}",40654,0,Asia +2024-10-29,54772,4900,"[""Charger"", ""Phone""]",3201.72,{},219423,0,North America +2024-07-03,54773,538,"[""Keyboard"", ""Charger""]",1887.65,"{""seasonal"": ""15%""}",265758,0,Asia +2023-01-02,54774,7324,"[""Keyboard""]",4246.85,"{""loyalty"": ""20%""}",200965,0,Asia +2024-11-04,54775,2945,"[""Charger"", ""Wireless Mouse""]",3347.46,{},4676,1,Asia +2023-10-03,54776,1984,"[""Tablet""]",2992.8,{},165373,1,Africa +2023-02-07,54777,2032,"[""Tablet""]",4191.91,"{""promo"": ""21%""}",265672,0,South America +2023-11-26,54778,7836,"[""Charger"", ""Phone""]",1254.44,{},31033,0,South America +2024-02-22,54779,7744,"[""Laptop"", ""Wireless Mouse""]",4743.98,{},88050,1,North America +2023-09-15,54780,8883,"[""Laptop"", ""Phone""]",3760.95,{},101968,0,Asia +2024-09-19,54781,7744,"[""Keyboard"", ""Headphones"", ""Phone""]",4378.79,"{""seasonal"": ""10%""}",256524,0,Europe +2024-10-21,54782,9763,"[""Phone"", ""Monitor"", ""Tablet""]",4043.77,"{""promo"": ""7%""}",208653,1,Africa +2024-06-25,54783,7165,"[""Headphones"", ""Wireless Mouse""]",2664.55,{},169460,0,Europe +2024-12-20,54784,7629,"[""Monitor"", ""Tablet"", ""Keyboard""]",3370.21,"{""loyalty"": ""18%""}",116526,0,North America +2023-11-03,54785,7516,"[""Phone"", ""Keyboard"", ""Laptop""]",2703.73,"{""loyalty"": ""26%""}",32211,1,North America +2024-03-14,54786,4349,"[""Phone""]",4612.65,"{""promo"": ""24%""}",124386,0,South America +2023-08-30,54787,7531,"[""Phone"", ""Headphones""]",934.04,"{""loyalty"": ""28%""}",264262,0,Europe +2023-05-08,54788,4253,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",805.88,{},94141,0,Asia +2023-05-30,54789,5604,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1693.89,{},191480,0,Europe +2023-10-28,54790,7916,"[""Keyboard""]",568.56,"{""loyalty"": ""10%""}",167024,0,Europe +2023-09-01,54791,1127,"[""Keyboard"", ""Headphones""]",1243.22,"{"""": ""10%""}",25231,0,North America +2023-12-21,54792,6625,"[""Laptop"", ""Charger""]",3906.45,"{""loyalty"": ""26%""}",42482,1,Europe +2024-09-26,54793,2671,"[""Monitor""]",3214.5,"{"""": ""26%""}",174275,0,South America +2024-10-02,54794,985,"[""Monitor""]",1269.18,{},216768,1,Europe +2023-08-01,54795,6238,"[""Phone"", ""Headphones"", ""Tablet""]",2784.16,"{""loyalty"": ""29%""}",263762,0,North America +2023-07-25,54796,8728,"[""Monitor"", ""Wireless Mouse""]",1262.61,{},276043,0,Africa +2023-05-08,54797,2108,"[""Laptop""]",236.22,{},12720,1,North America +2023-03-12,54798,204,"[""Phone""]",1744.42,"{""seasonal"": ""15%""}",138357,0,Europe +2023-06-10,54799,2017,"[""Laptop""]",2081.4,"{"""": ""19%""}",202512,1,Europe +2023-11-12,54800,9800,"[""Keyboard"", ""Wireless Mouse""]",525.49,{},161329,0,Africa +2024-09-25,54801,2232,"[""Laptop""]",3895.64,{},66691,0,Asia +2024-04-02,54802,7358,"[""Headphones"", ""Keyboard"", ""Laptop""]",4689.38,"{""loyalty"": ""10%""}",269487,0,Europe +2024-01-14,54803,6556,"[""Phone"", ""Laptop"", ""Charger""]",4904.88,"{"""": ""18%""}",229215,1,North America +2023-05-01,54804,6782,"[""Headphones"", ""Charger"", ""Laptop""]",1157.11,{},52414,0,Europe +2023-04-20,54805,6068,"[""Headphones""]",4729.65,"{""promo"": ""19%""}",166884,0,South America +2023-12-03,54806,3270,"[""Laptop"", ""Wireless Mouse""]",4933.74,{},11711,0,Europe +2023-12-22,54807,7456,"[""Keyboard"", ""Charger"", ""Monitor""]",3990.75,"{"""": ""25%""}",79532,0,North America +2023-12-31,54808,7121,"[""Tablet"", ""Monitor""]",1874.85,{},4808,1,Africa +2023-01-08,54809,1330,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3854.44,"{""loyalty"": ""14%""}",163392,0,South America +2024-05-22,54810,9293,"[""Headphones""]",4175.96,{},105403,1,Asia +2023-04-13,54811,2986,"[""Wireless Mouse"", ""Laptop""]",622.55,{},278662,0,Europe +2024-01-10,54812,8902,"[""Keyboard""]",1104.51,{},269582,1,Europe +2023-12-27,54813,8670,"[""Phone"", ""Keyboard"", ""Laptop""]",2741.52,"{"""": ""26%""}",73810,1,South America +2024-12-10,54814,2522,"[""Monitor""]",725.67,"{""loyalty"": ""19%""}",264895,0,South America +2024-01-24,54815,8336,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3872.11,{},219965,0,Europe +2023-09-15,54816,5563,"[""Headphones"", ""Monitor""]",2512.3,{},36495,0,Africa +2023-12-28,54817,1792,"[""Tablet""]",3227.55,{},223759,1,Africa +2023-02-14,54818,1071,"[""Monitor""]",1372.8,{},174084,0,North America +2023-10-10,54819,194,"[""Keyboard""]",3973.78,{},41273,1,South America +2024-01-01,54820,3835,"[""Headphones""]",3987.02,{},12014,1,North America +2024-06-18,54821,902,"[""Headphones"", ""Keyboard""]",3444.34,"{""seasonal"": ""19%""}",52469,1,Europe +2023-06-06,54822,556,"[""Tablet"", ""Keyboard""]",2083.11,"{""promo"": ""29%""}",77369,1,Asia +2024-02-04,54823,5962,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4493.29,{},139124,1,South America +2023-12-17,54824,7028,"[""Keyboard""]",1703.02,{},118900,1,South America +2023-07-10,54825,5365,"[""Wireless Mouse""]",2800.18,"{"""": ""30%""}",204076,0,South America +2023-09-13,54826,5720,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3335.84,"{""seasonal"": ""14%""}",80940,0,Africa +2024-06-02,54827,9395,"[""Headphones""]",1078.94,{},172138,1,South America +2024-10-21,54828,9667,"[""Headphones""]",764.38,{},169071,1,North America +2023-10-14,54829,7550,"[""Headphones"", ""Phone""]",3392.96,{},95048,1,South America +2023-01-16,54830,3507,"[""Monitor"", ""Tablet""]",2576.12,{},186992,1,Africa +2024-10-01,54831,3662,"[""Charger""]",1836.17,{},178192,0,Africa +2023-04-29,54832,2812,"[""Keyboard"", ""Tablet""]",2909.34,"{"""": ""13%""}",62162,0,Asia +2024-04-07,54833,5428,"[""Tablet"", ""Laptop""]",1348.47,"{""seasonal"": ""23%""}",217123,1,Africa +2023-10-22,54834,1974,"[""Keyboard"", ""Headphones"", ""Laptop""]",3518.9,"{""loyalty"": ""29%""}",85771,1,Africa +2024-04-11,54835,9686,"[""Phone"", ""Headphones""]",2993.91,"{""seasonal"": ""12%""}",12033,0,Asia +2024-04-02,54836,5069,"[""Charger"", ""Monitor""]",3253.48,"{""loyalty"": ""17%""}",278631,1,South America +2024-10-20,54837,3690,"[""Phone""]",277.84,{},244619,0,Europe +2023-04-10,54838,1614,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4565.31,"{""promo"": ""10%""}",42972,0,North America +2024-04-20,54839,8609,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",545.76,"{"""": ""6%""}",9083,0,North America +2023-10-29,54840,5237,"[""Laptop"", ""Tablet""]",3994.2,{},150669,0,Africa +2024-09-26,54841,4202,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",301.69,"{""loyalty"": ""21%""}",130092,0,Europe +2023-12-02,54842,9660,"[""Wireless Mouse"", ""Headphones""]",986.11,"{""promo"": ""6%""}",243763,0,North America +2024-08-01,54843,8175,"[""Headphones"", ""Laptop"", ""Charger""]",2047.8,"{""promo"": ""30%""}",200240,0,Africa +2024-08-21,54844,2475,"[""Keyboard"", ""Phone"", ""Tablet""]",3512.64,{},122862,1,Africa +2023-04-01,54845,8227,"[""Laptop""]",4696.07,"{""promo"": ""29%""}",214461,0,North America +2024-09-17,54846,3808,"[""Charger""]",2697.83,{},13144,0,Asia +2023-05-18,54847,5616,"[""Wireless Mouse""]",82.14,{},79076,0,Europe +2024-08-02,54848,2630,"[""Keyboard""]",713.78,"{"""": ""24%""}",52381,1,South America +2023-05-13,54849,5589,"[""Headphones"", ""Charger"", ""Laptop""]",429.49,"{""promo"": ""21%""}",72588,0,South America +2024-04-27,54850,6514,"[""Charger"", ""Tablet"", ""Keyboard""]",1323.29,"{"""": ""13%""}",109710,1,South America +2023-11-25,54851,4706,"[""Phone"", ""Monitor"", ""Charger""]",218.76,"{""seasonal"": ""17%""}",173087,0,South America +2023-06-03,54852,2341,"[""Headphones"", ""Charger""]",1948.56,"{""promo"": ""23%""}",106522,1,Asia +2023-03-07,54853,3935,"[""Headphones"", ""Keyboard""]",4760.0,{},8751,0,North America +2023-09-09,54854,7420,"[""Charger"", ""Tablet""]",1175.62,"{""seasonal"": ""9%""}",2984,0,Europe +2024-04-23,54855,1066,"[""Charger""]",257.83,{},181103,1,South America +2023-01-02,54856,1416,"[""Keyboard"", ""Monitor"", ""Phone""]",2107.95,{},213895,0,Asia +2023-05-05,54857,1620,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2183.69,{},233687,0,Africa +2024-07-01,54858,1871,"[""Monitor""]",335.99,"{""seasonal"": ""19%""}",90182,0,Europe +2024-02-04,54859,8740,"[""Tablet""]",4214.72,{},254053,1,Africa +2024-07-28,54860,9767,"[""Laptop"", ""Headphones""]",2794.56,{},273492,0,Africa +2024-06-22,54861,7567,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4385.79,{},122160,1,Africa +2024-09-14,54862,3819,"[""Monitor"", ""Headphones""]",561.96,"{""promo"": ""5%""}",233706,0,Europe +2024-04-22,54863,7974,"[""Charger""]",2740.73,{},24580,1,North America +2023-11-21,54864,9121,"[""Keyboard""]",540.94,"{"""": ""12%""}",25130,1,North America +2024-08-30,54865,9599,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3920.89,{},213690,0,Europe +2023-11-25,54866,3093,"[""Laptop""]",4400.82,{},114165,1,South America +2023-06-10,54867,6172,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3787.74,"{""loyalty"": ""27%""}",112437,0,Africa +2023-07-03,54868,4202,"[""Laptop"", ""Tablet"", ""Monitor""]",2000.28,{},228110,0,Africa +2023-06-05,54869,1015,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2640.5,"{""seasonal"": ""13%""}",131092,0,South America +2023-11-07,54870,5601,"[""Laptop"", ""Monitor"", ""Keyboard""]",3267.63,"{""seasonal"": ""14%""}",167053,0,Europe +2024-11-18,54871,365,"[""Wireless Mouse""]",1951.85,"{""seasonal"": ""17%""}",290510,0,Africa +2023-10-27,54872,7992,"[""Phone"", ""Monitor"", ""Charger""]",3186.31,{},294355,0,Asia +2023-04-17,54873,1985,"[""Headphones"", ""Keyboard"", ""Charger""]",4210.26,{},101695,0,Africa +2023-06-01,54874,1691,"[""Charger"", ""Monitor"", ""Tablet""]",3629.99,"{""seasonal"": ""22%""}",128860,1,North America +2024-02-08,54875,6915,"[""Phone"", ""Monitor"", ""Laptop""]",4294.83,"{""seasonal"": ""10%""}",193971,0,South America +2024-03-02,54876,3571,"[""Wireless Mouse"", ""Tablet""]",3516.57,{},182717,1,South America +2023-01-27,54877,1171,"[""Wireless Mouse"", ""Monitor""]",2027.84,"{""loyalty"": ""26%""}",251280,1,South America +2024-05-06,54878,4633,"[""Keyboard"", ""Wireless Mouse""]",476.25,"{""loyalty"": ""22%""}",298481,1,North America +2024-07-13,54879,4901,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4974.59,{},167795,0,North America +2023-06-17,54880,3943,"[""Keyboard""]",628.39,"{""loyalty"": ""28%""}",1237,0,South America +2024-10-12,54881,3759,"[""Monitor""]",2615.73,{},7124,1,Africa +2023-12-08,54882,335,"[""Wireless Mouse""]",1046.53,"{""seasonal"": ""27%""}",122135,1,Asia +2023-07-01,54883,3003,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",312.83,"{""promo"": ""5%""}",181016,0,Asia +2023-08-20,54884,3431,"[""Monitor""]",691.61,"{""seasonal"": ""21%""}",109890,0,South America +2023-05-26,54885,2378,"[""Tablet""]",4731.84,{},25449,1,North America +2023-11-03,54886,5990,"[""Tablet""]",1787.04,"{""seasonal"": ""18%""}",50510,1,Europe +2024-05-02,54887,9713,"[""Tablet"", ""Keyboard""]",1425.09,{},250545,0,Europe +2024-06-02,54888,2103,"[""Headphones""]",2752.63,{},61418,1,Africa +2023-09-15,54889,7366,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4342.46,"{"""": ""10%""}",1216,1,North America +2024-06-21,54890,562,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3158.87,"{""promo"": ""7%""}",183989,0,Asia +2023-05-01,54891,3415,"[""Headphones""]",3568.77,"{""seasonal"": ""28%""}",87627,1,South America +2023-10-17,54892,6813,"[""Charger""]",3697.06,"{""promo"": ""10%""}",256952,1,Europe +2024-02-18,54893,5226,"[""Charger""]",1385.32,{},244644,0,Asia +2023-08-07,54894,1312,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",852.75,"{"""": ""28%""}",285186,0,Africa +2024-10-11,54895,1349,"[""Keyboard"", ""Monitor"", ""Headphones""]",4681.87,{},106797,0,Europe +2024-02-22,54896,8762,"[""Monitor""]",1523.69,"{"""": ""13%""}",76664,1,Europe +2023-01-08,54897,7030,"[""Monitor"", ""Laptop"", ""Keyboard""]",817.8,{},134106,1,Asia +2024-08-09,54898,8503,"[""Keyboard"", ""Monitor"", ""Headphones""]",4908.72,{},181667,1,North America +2023-10-07,54899,6378,"[""Monitor""]",145.23,{},217267,1,Asia +2024-04-04,54900,8290,"[""Tablet"", ""Keyboard""]",315.6,"{""loyalty"": ""7%""}",25686,1,Asia +2023-05-29,54901,5980,"[""Keyboard"", ""Charger""]",4590.79,"{""promo"": ""14%""}",146052,0,Asia +2024-03-31,54902,5455,"[""Phone"", ""Headphones"", ""Charger""]",821.9,"{""promo"": ""20%""}",45280,1,Asia +2024-04-03,54903,977,"[""Keyboard"", ""Laptop""]",184.18,{},77499,1,South America +2023-03-18,54904,45,"[""Laptop"", ""Headphones""]",2973.1,"{""seasonal"": ""23%""}",216327,0,Europe +2023-05-02,54905,8897,"[""Laptop""]",4544.31,{},143997,0,North America +2024-07-02,54906,8820,"[""Charger"", ""Headphones""]",3721.48,{},124646,0,Asia +2024-09-01,54907,1979,"[""Wireless Mouse""]",3585.93,"{""seasonal"": ""10%""}",137815,0,Asia +2024-05-03,54908,3917,"[""Tablet""]",3028.12,"{""seasonal"": ""9%""}",156380,0,Europe +2024-07-28,54909,5471,"[""Headphones""]",2436.57,"{""seasonal"": ""21%""}",78947,0,Asia +2024-06-27,54910,9587,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3377.61,{},7325,1,Asia +2024-03-08,54911,6307,"[""Headphones"", ""Tablet""]",388.15,{},170551,1,Asia +2023-03-27,54912,8861,"[""Charger""]",153.76,{},148986,0,South America +2023-07-20,54913,2298,"[""Monitor"", ""Phone""]",287.4,"{"""": ""12%""}",263276,0,Africa +2023-02-17,54914,4977,"[""Keyboard"", ""Phone"", ""Headphones""]",1416.11,"{"""": ""18%""}",6393,0,Asia +2024-04-26,54915,6677,"[""Laptop""]",961.28,"{""promo"": ""16%""}",94619,0,Africa +2024-03-15,54916,9355,"[""Laptop"", ""Phone""]",631.49,"{""loyalty"": ""25%""}",177168,0,Europe +2024-06-04,54917,2970,"[""Tablet""]",4167.64,{},29893,0,South America +2023-06-18,54918,4447,"[""Tablet"", ""Laptop""]",407.45,"{""seasonal"": ""7%""}",71957,0,North America +2024-03-10,54919,9538,"[""Laptop"", ""Charger"", ""Monitor""]",4638.69,{},219181,1,North America +2023-08-02,54920,7540,"[""Phone"", ""Charger""]",3455.15,"{""loyalty"": ""26%""}",111875,1,South America +2023-03-29,54921,6869,"[""Phone"", ""Keyboard""]",4928.9,"{""seasonal"": ""20%""}",242533,0,Europe +2023-08-21,54922,7465,"[""Keyboard"", ""Monitor""]",4865.16,"{""promo"": ""19%""}",52904,0,Europe +2023-04-02,54923,9837,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2109.43,"{""loyalty"": ""24%""}",40457,0,North America +2023-02-06,54924,4388,"[""Tablet""]",4633.81,{},165649,0,Africa +2023-06-21,54925,3336,"[""Charger""]",836.32,"{"""": ""8%""}",205143,1,Europe +2024-05-24,54926,7090,"[""Tablet"", ""Charger""]",1658.09,"{""loyalty"": ""6%""}",22952,0,Asia +2024-03-05,54927,5966,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4388.29,"{"""": ""29%""}",228480,0,Europe +2023-03-05,54928,6832,"[""Laptop""]",2689.9,"{""seasonal"": ""9%""}",133634,0,Europe +2023-03-07,54929,3476,"[""Monitor""]",688.91,"{"""": ""12%""}",81596,0,North America +2024-07-31,54930,4667,"[""Phone"", ""Monitor"", ""Tablet""]",1073.45,"{""seasonal"": ""6%""}",4807,0,Asia +2023-03-09,54931,6976,"[""Phone""]",1306.42,{},8095,0,Africa +2024-12-20,54932,8407,"[""Monitor"", ""Laptop""]",3369.39,{},80784,1,Asia +2023-01-12,54933,9237,"[""Wireless Mouse"", ""Tablet""]",2718.13,"{""promo"": ""14%""}",108775,0,North America +2024-04-02,54934,1025,"[""Keyboard"", ""Headphones""]",1281.94,{},259102,0,Europe +2023-09-29,54935,2172,"[""Headphones""]",1596.44,"{""seasonal"": ""7%""}",131224,1,Africa +2024-02-06,54936,342,"[""Phone"", ""Headphones""]",2741.81,{},271163,1,South America +2023-10-11,54937,5082,"[""Laptop"", ""Phone""]",3748.1,"{""seasonal"": ""19%""}",54219,1,North America +2023-01-30,54938,9413,"[""Laptop"", ""Monitor"", ""Charger""]",3181.54,"{"""": ""18%""}",271269,0,South America +2024-09-19,54939,3667,"[""Keyboard"", ""Phone""]",2529.2,"{""loyalty"": ""5%""}",50324,0,Africa +2024-05-08,54940,7830,"[""Keyboard"", ""Tablet"", ""Headphones""]",1612.61,{},193927,0,Africa +2023-07-12,54941,8349,"[""Keyboard"", ""Laptop""]",791.92,"{""loyalty"": ""22%""}",165215,1,North America +2024-02-19,54942,1119,"[""Laptop"", ""Keyboard""]",1563.78,{},234539,1,Europe +2023-04-24,54943,3094,"[""Keyboard""]",3534.82,{},238537,0,South America +2023-03-16,54944,1569,"[""Charger"", ""Wireless Mouse""]",2344.29,"{""seasonal"": ""30%""}",294160,1,North America +2024-05-13,54945,1016,"[""Phone"", ""Laptop"", ""Headphones""]",1100.13,"{""promo"": ""29%""}",103723,0,South America +2024-12-29,54946,5759,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4731.81,"{""promo"": ""21%""}",150677,0,South America +2023-06-25,54947,6286,"[""Laptop"", ""Monitor"", ""Charger""]",3406.73,"{""seasonal"": ""22%""}",214167,0,North America +2023-10-09,54948,3347,"[""Laptop""]",4500.35,{},197545,1,Asia +2023-01-11,54949,5781,"[""Phone"", ""Tablet""]",4359.15,"{"""": ""5%""}",257199,0,Africa +2023-11-07,54950,2961,"[""Tablet"", ""Monitor"", ""Phone""]",3397.52,"{""seasonal"": ""26%""}",97136,1,North America +2024-03-05,54951,6840,"[""Tablet""]",2906.05,{},54004,0,Asia +2024-12-24,54952,6424,"[""Charger"", ""Monitor""]",1005.9,{},206732,1,Asia +2023-11-13,54953,8474,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3652.64,{},80691,0,Asia +2023-06-17,54954,5141,"[""Charger"", ""Laptop"", ""Monitor""]",2049.88,{},131131,1,South America +2023-08-04,54955,9890,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1007.57,{},121784,0,North America +2024-12-31,54956,5780,"[""Charger"", ""Monitor"", ""Phone""]",4225.71,{},167928,1,South America +2024-05-11,54957,4105,"[""Keyboard""]",1021.27,"{""loyalty"": ""7%""}",67751,1,Asia +2024-05-11,54958,2589,"[""Charger"", ""Headphones"", ""Tablet""]",4872.49,{},104527,1,Asia +2023-07-19,54959,3590,"[""Monitor"", ""Keyboard"", ""Tablet""]",3057.95,"{""seasonal"": ""15%""}",294226,1,Europe +2023-03-24,54960,6019,"[""Laptop"", ""Tablet"", ""Monitor""]",1732.28,"{""seasonal"": ""18%""}",216332,0,Europe +2023-04-21,54961,7191,"[""Keyboard"", ""Charger""]",4393.25,{},61604,1,Asia +2023-09-28,54962,5080,"[""Charger""]",546.93,{},119793,0,South America +2023-11-27,54963,215,"[""Phone""]",3110.8,{},271820,1,South America +2024-12-12,54964,9326,"[""Phone"", ""Tablet""]",1006.65,"{"""": ""30%""}",151530,0,Africa +2023-10-06,54965,2989,"[""Monitor"", ""Laptop"", ""Tablet""]",1939.75,"{""seasonal"": ""6%""}",59988,0,North America +2023-06-24,54966,7593,"[""Tablet"", ""Charger"", ""Monitor""]",4820.56,"{""seasonal"": ""16%""}",148851,0,South America +2024-02-09,54967,4331,"[""Tablet"", ""Headphones""]",423.55,"{""seasonal"": ""18%""}",288000,0,South America +2023-09-10,54968,2287,"[""Wireless Mouse"", ""Monitor""]",458.06,"{"""": ""8%""}",135604,0,Europe +2023-03-29,54969,4407,"[""Headphones"", ""Phone""]",4502.17,"{"""": ""14%""}",167215,1,North America +2023-03-23,54970,7418,"[""Charger""]",1861.89,"{""loyalty"": ""23%""}",119537,1,South America +2023-03-23,54971,4171,"[""Tablet""]",1416.85,{},237183,1,Asia +2024-05-27,54972,8891,"[""Monitor"", ""Phone""]",1966.65,{},200722,0,South America +2023-06-01,54973,6859,"[""Phone"", ""Keyboard"", ""Charger""]",2454.37,"{""seasonal"": ""17%""}",37047,1,Europe +2023-06-19,54974,7556,"[""Tablet"", ""Phone"", ""Laptop""]",3440.39,{},27186,1,South America +2023-07-12,54975,8015,"[""Monitor""]",2168.98,{},123915,0,North America +2023-07-13,54976,759,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2931.85,{},221559,1,South America +2024-04-16,54977,8709,"[""Tablet""]",4194.43,{},167559,0,Europe +2024-07-04,54978,3474,"[""Keyboard"", ""Laptop""]",3389.04,"{""loyalty"": ""17%""}",115798,1,Africa +2024-08-22,54979,5550,"[""Tablet"", ""Headphones""]",1315.33,{},276925,1,Asia +2024-05-22,54980,2489,"[""Tablet"", ""Monitor"", ""Keyboard""]",2150.41,{},228382,1,Africa +2024-08-14,54981,9209,"[""Laptop""]",4240.58,{},136764,0,North America +2023-03-04,54982,9479,"[""Monitor"", ""Keyboard"", ""Charger""]",4697.59,"{""seasonal"": ""16%""}",116452,0,North America +2024-06-17,54983,1269,"[""Wireless Mouse""]",223.53,{},267866,1,South America +2023-04-15,54984,4969,"[""Monitor""]",2386.6,"{""promo"": ""29%""}",166299,0,North America +2023-09-22,54985,9564,"[""Monitor"", ""Laptop""]",4300.69,{},144233,0,Europe +2023-02-15,54986,2024,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3938.07,"{"""": ""29%""}",189786,0,South America +2024-05-18,54987,930,"[""Keyboard"", ""Headphones""]",4879.04,{},61821,1,Africa +2023-02-10,54988,5383,"[""Keyboard""]",1109.53,{},238026,1,North America +2024-10-01,54989,3055,"[""Wireless Mouse"", ""Tablet""]",2375.51,{},279345,1,Asia +2024-06-30,54990,9499,"[""Headphones""]",4618.55,{},285887,0,South America +2023-07-03,54991,457,"[""Charger"", ""Keyboard"", ""Tablet""]",1341.62,"{""loyalty"": ""29%""}",9503,1,Europe +2024-07-17,54992,4760,"[""Tablet"", ""Phone""]",3158.99,{},268479,1,Europe +2024-08-20,54993,4161,"[""Monitor"", ""Keyboard"", ""Laptop""]",443.72,{},287883,1,Europe +2024-12-19,54994,3459,"[""Tablet""]",4958.52,{},244168,1,Europe +2023-01-02,54995,1402,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1882.68,{},180420,1,Africa +2023-10-29,54996,3582,"[""Charger""]",3400.0,"{"""": ""15%""}",233698,0,South America +2023-04-10,54997,8604,"[""Monitor""]",1198.78,{},257714,1,Europe +2023-03-08,54998,7434,"[""Charger"", ""Phone""]",1168.07,{},80030,1,Europe +2023-01-04,54999,8729,"[""Tablet"", ""Headphones""]",3802.94,"{""promo"": ""16%""}",85007,0,Europe +2023-09-27,55000,7357,"[""Phone"", ""Tablet"", ""Headphones""]",2469.01,"{"""": ""5%""}",77094,1,Asia +2023-12-12,55001,7225,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4960.34,{},59277,1,Europe +2024-09-18,55002,123,"[""Tablet""]",200.1,{},144223,1,South America +2024-04-26,55003,7250,"[""Charger"", ""Phone"", ""Tablet""]",1855.39,{},222144,0,South America +2024-03-18,55004,9160,"[""Headphones""]",2100.72,"{""seasonal"": ""10%""}",244725,0,South America +2023-03-31,55005,8990,"[""Tablet"", ""Wireless Mouse""]",2767.97,{},120438,0,Asia +2023-08-10,55006,697,"[""Charger""]",2069.5,{},194156,1,Asia +2024-07-14,55007,5717,"[""Monitor"", ""Charger""]",905.84,{},128045,0,Europe +2024-09-05,55008,8220,"[""Laptop"", ""Tablet"", ""Phone""]",2446.5,"{""loyalty"": ""22%""}",1697,1,Europe +2024-09-25,55009,8101,"[""Tablet"", ""Charger""]",281.39,"{"""": ""10%""}",185246,1,North America +2023-04-10,55010,5764,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4094.54,{},134439,1,South America +2024-01-03,55011,5352,"[""Laptop""]",3207.83,"{""promo"": ""7%""}",255997,1,Africa +2023-07-26,55012,7959,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2887.68,"{""seasonal"": ""29%""}",167613,1,South America +2023-11-30,55013,316,"[""Charger"", ""Laptop"", ""Tablet""]",747.54,"{""loyalty"": ""11%""}",20241,1,Africa +2023-04-27,55014,136,"[""Headphones"", ""Tablet""]",4207.04,{},43514,1,South America +2023-09-01,55015,9663,"[""Monitor""]",3890.76,{},214556,1,North America +2024-11-17,55016,9925,"[""Laptop"", ""Tablet"", ""Keyboard""]",993.59,{},58687,1,North America +2024-07-02,55017,3070,"[""Charger""]",114.91,"{""loyalty"": ""9%""}",150588,1,South America +2024-04-15,55018,3567,"[""Laptop"", ""Headphones"", ""Keyboard""]",265.98,{},44282,0,Africa +2023-04-27,55019,4256,"[""Wireless Mouse"", ""Laptop""]",2785.31,{},36491,1,Asia +2024-05-28,55020,1857,"[""Monitor"", ""Tablet""]",2377.5,{},225297,1,Asia +2024-07-31,55021,5139,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1044.73,"{""loyalty"": ""5%""}",109811,0,Asia +2024-04-14,55022,1314,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3482.55,{},80318,0,Asia +2024-10-18,55023,6715,"[""Laptop"", ""Phone"", ""Tablet""]",516.19,{},35872,1,Africa +2024-05-03,55024,3311,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1686.52,{},195222,1,Africa +2023-05-06,55025,7973,"[""Headphones"", ""Charger"", ""Laptop""]",4223.95,{},26718,1,Europe +2024-03-02,55026,2002,"[""Phone"", ""Headphones"", ""Keyboard""]",3487.86,"{""promo"": ""11%""}",114536,1,North America +2024-08-14,55027,1055,"[""Charger"", ""Headphones""]",3625.3,"{""loyalty"": ""11%""}",257419,1,North America +2023-03-04,55028,278,"[""Monitor"", ""Laptop"", ""Headphones""]",4629.68,"{""promo"": ""5%""}",40257,0,Europe +2024-10-16,55029,5568,"[""Keyboard"", ""Charger"", ""Headphones""]",1040.2,{},208365,0,North America +2024-11-17,55030,9595,"[""Headphones"", ""Monitor""]",4088.46,"{""seasonal"": ""19%""}",137714,1,North America +2023-04-30,55031,9771,"[""Monitor""]",3762.83,"{"""": ""7%""}",150154,1,Asia +2024-03-05,55032,6023,"[""Keyboard""]",2598.61,"{"""": ""24%""}",229476,0,North America +2023-08-06,55033,1245,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3701.31,"{""promo"": ""25%""}",117605,0,Asia +2024-05-24,55034,2646,"[""Tablet"", ""Phone"", ""Charger""]",3282.51,"{""loyalty"": ""25%""}",29262,0,South America +2023-07-02,55035,568,"[""Monitor"", ""Charger"", ""Tablet""]",1882.38,"{""promo"": ""19%""}",144667,1,Europe +2023-08-08,55036,1100,"[""Phone"", ""Keyboard""]",2545.15,{},47363,0,Africa +2023-02-25,55037,7432,"[""Headphones""]",3202.82,{},245733,1,Asia +2024-04-10,55038,9913,"[""Tablet"", ""Keyboard""]",942.49,{},49256,0,South America +2024-03-06,55039,2027,"[""Monitor"", ""Headphones"", ""Phone""]",1184.36,{},280125,1,South America +2023-08-27,55040,6504,"[""Wireless Mouse"", ""Tablet""]",2658.79,"{""promo"": ""29%""}",37274,1,Africa +2023-01-23,55041,3043,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2619.73,{},152560,0,North America +2024-04-27,55042,6742,"[""Keyboard""]",3977.94,"{""loyalty"": ""22%""}",265231,1,Asia +2023-03-03,55043,73,"[""Wireless Mouse"", ""Charger""]",4377.85,{},206621,0,Africa +2023-03-12,55044,422,"[""Monitor""]",215.45,{},104022,1,Europe +2024-07-23,55045,6306,"[""Keyboard"", ""Wireless Mouse""]",4304.96,"{""seasonal"": ""20%""}",272334,0,South America +2023-12-26,55046,6151,"[""Headphones"", ""Keyboard""]",1221.03,{},251169,1,Europe +2023-12-04,55047,3519,"[""Tablet"", ""Keyboard"", ""Charger""]",1604.82,"{""promo"": ""17%""}",4044,0,Europe +2024-10-09,55048,8626,"[""Laptop""]",2223.01,{},36277,0,Europe +2024-02-29,55049,3799,"[""Charger""]",1444.12,"{""seasonal"": ""6%""}",218941,1,Asia +2024-07-21,55050,9063,"[""Wireless Mouse""]",2194.91,"{"""": ""10%""}",76086,0,Europe +2023-10-29,55051,1287,"[""Tablet"", ""Monitor"", ""Keyboard""]",1377.21,{},210598,0,South America +2024-08-09,55052,4783,"[""Wireless Mouse""]",1819.01,"{""promo"": ""17%""}",24096,0,Europe +2024-04-29,55053,6402,"[""Phone"", ""Keyboard"", ""Charger""]",3488.94,{},181549,1,South America +2023-09-02,55054,235,"[""Tablet"", ""Phone""]",4912.87,"{""seasonal"": ""18%""}",163152,1,South America +2024-06-05,55055,6472,"[""Wireless Mouse"", ""Phone""]",2405.93,{},14107,0,Europe +2023-03-22,55056,6834,"[""Headphones"", ""Charger""]",2453.66,"{"""": ""27%""}",60464,1,Europe +2024-01-14,55057,7370,"[""Laptop"", ""Monitor""]",4492.85,"{""seasonal"": ""13%""}",299155,0,Asia +2023-04-10,55058,3696,"[""Headphones"", ""Laptop""]",4780.05,{},263559,0,North America +2023-01-28,55059,161,"[""Headphones""]",2236.23,{},273932,0,Europe +2024-07-26,55060,5803,"[""Phone"", ""Monitor"", ""Headphones""]",4019.87,{},165662,0,Africa +2023-05-03,55061,3011,"[""Headphones"", ""Tablet""]",1218.66,"{""promo"": ""5%""}",11946,0,Europe +2024-02-24,55062,4881,"[""Wireless Mouse"", ""Monitor""]",4122.4,"{""seasonal"": ""25%""}",131316,0,North America +2024-12-26,55063,6295,"[""Wireless Mouse"", ""Laptop""]",2216.73,{},49437,1,Asia +2023-05-21,55064,9113,"[""Laptop"", ""Monitor""]",3759.82,"{""loyalty"": ""14%""}",8994,1,Africa +2023-03-30,55065,4084,"[""Keyboard"", ""Tablet"", ""Charger""]",2313.52,"{""promo"": ""22%""}",94964,1,North America +2023-03-29,55066,369,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4600.23,"{""promo"": ""13%""}",204469,0,Europe +2024-07-10,55067,4628,"[""Monitor"", ""Headphones"", ""Tablet""]",865.86,"{""seasonal"": ""9%""}",220608,0,Europe +2023-12-24,55068,9511,"[""Headphones"", ""Monitor"", ""Keyboard""]",3957.88,"{""loyalty"": ""23%""}",253741,0,South America +2023-11-24,55069,5257,"[""Wireless Mouse""]",3470.01,"{"""": ""15%""}",295699,0,Europe +2024-09-03,55070,3355,"[""Charger"", ""Headphones"", ""Monitor""]",1409.78,{},197722,0,North America +2024-08-14,55071,9134,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",964.66,{},190704,1,North America +2024-12-15,55072,3291,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1016.72,{},89412,0,North America +2023-01-29,55073,5177,"[""Monitor"", ""Laptop"", ""Keyboard""]",724.36,{},139179,0,Africa +2024-02-09,55074,8159,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3708.55,{},137292,1,South America +2024-01-05,55075,3493,"[""Headphones"", ""Monitor"", ""Charger""]",614.71,"{""loyalty"": ""20%""}",247711,0,North America +2023-12-26,55076,5148,"[""Monitor"", ""Keyboard"", ""Headphones""]",1622.14,"{"""": ""10%""}",81735,0,Europe +2023-11-21,55077,6368,"[""Phone"", ""Headphones"", ""Charger""]",4681.59,{},82096,1,Africa +2024-10-26,55078,3598,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3350.7,"{""seasonal"": ""11%""}",36851,1,Europe +2024-05-27,55079,5868,"[""Charger"", ""Phone""]",4272.32,{},245430,1,North America +2023-10-13,55080,4370,"[""Headphones""]",3885.33,{},126541,0,South America +2023-08-10,55081,7477,"[""Wireless Mouse""]",1510.14,{},233868,1,North America +2023-03-24,55082,3146,"[""Headphones""]",2601.35,{},26953,0,Asia +2023-10-08,55083,7407,"[""Keyboard""]",2836.32,"{""promo"": ""29%""}",255826,0,South America +2024-01-24,55084,4495,"[""Charger"", ""Laptop"", ""Headphones""]",2208.18,"{""seasonal"": ""5%""}",146845,1,Asia +2023-05-20,55085,952,"[""Charger"", ""Tablet"", ""Phone""]",858.51,"{""seasonal"": ""7%""}",267979,0,Africa +2023-09-23,55086,5305,"[""Laptop"", ""Headphones""]",3993.46,{},64794,0,Africa +2024-01-14,55087,9202,"[""Tablet"", ""Phone"", ""Charger""]",4919.25,"{""seasonal"": ""10%""}",84061,0,South America +2024-05-27,55088,4450,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",766.34,{},85180,0,Asia +2024-02-26,55089,8643,"[""Wireless Mouse"", ""Headphones""]",1984.18,"{""loyalty"": ""6%""}",92931,1,North America +2024-09-07,55090,8509,"[""Keyboard"", ""Monitor""]",1153.02,{},75298,1,Europe +2023-10-25,55091,336,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3222.54,"{""loyalty"": ""22%""}",96322,0,North America +2024-11-07,55092,2888,"[""Headphones""]",2359.56,"{""promo"": ""23%""}",60456,0,North America +2024-12-31,55093,538,"[""Tablet"", ""Monitor""]",4164.85,"{""loyalty"": ""26%""}",53427,0,North America +2023-06-15,55094,9243,"[""Tablet"", ""Keyboard"", ""Headphones""]",4726.17,"{""seasonal"": ""9%""}",278139,1,Europe +2024-10-21,55095,7037,"[""Phone"", ""Monitor"", ""Charger""]",2254.44,"{"""": ""10%""}",84910,0,Europe +2024-07-08,55096,3931,"[""Tablet""]",603.6,"{"""": ""27%""}",1972,1,South America +2024-02-14,55097,3807,"[""Keyboard""]",4208.35,"{""seasonal"": ""7%""}",283880,0,South America +2023-11-16,55098,7686,"[""Keyboard"", ""Phone"", ""Charger""]",1647.37,{},182238,0,Africa +2024-08-19,55099,1509,"[""Tablet"", ""Charger"", ""Keyboard""]",4999.74,"{"""": ""16%""}",217388,1,Europe +2024-07-29,55100,2373,"[""Charger""]",3365.1,"{""seasonal"": ""13%""}",74389,1,Europe +2023-08-02,55101,2200,"[""Charger"", ""Monitor""]",4741.58,"{""loyalty"": ""20%""}",136237,1,Africa +2024-01-31,55102,7213,"[""Headphones"", ""Keyboard"", ""Phone""]",4594.61,"{"""": ""14%""}",149837,1,North America +2024-08-18,55103,8591,"[""Keyboard"", ""Monitor""]",4231.46,{},85569,1,North America +2024-09-04,55104,8066,"[""Tablet"", ""Laptop""]",3547.98,"{""seasonal"": ""15%""}",46334,0,Asia +2024-12-07,55105,4127,"[""Headphones""]",1528.26,"{""seasonal"": ""7%""}",8588,0,Africa +2023-09-17,55106,6529,"[""Headphones""]",3104.06,"{"""": ""17%""}",239651,0,Asia +2024-11-30,55107,8517,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2523.54,"{""loyalty"": ""17%""}",194936,1,North America +2023-10-18,55108,7066,"[""Tablet"", ""Monitor"", ""Phone""]",1476.31,{},68247,0,Africa +2024-04-18,55109,9077,"[""Charger""]",2194.03,"{""seasonal"": ""19%""}",208664,1,Asia +2024-09-27,55110,2006,"[""Charger"", ""Phone"", ""Laptop""]",2945.37,{},129496,1,Asia +2023-04-23,55111,6238,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4500.06,{},277544,1,South America +2023-10-29,55112,5878,"[""Tablet"", ""Wireless Mouse""]",1641.01,"{""loyalty"": ""5%""}",240757,1,Asia +2024-06-16,55113,129,"[""Monitor""]",4502.51,"{"""": ""27%""}",207562,0,Europe +2023-07-14,55114,1603,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4821.17,"{"""": ""20%""}",151268,0,South America +2024-12-26,55115,8286,"[""Monitor""]",393.61,{},121619,0,North America +2023-10-14,55116,97,"[""Keyboard"", ""Monitor"", ""Headphones""]",4190.9,"{"""": ""10%""}",79783,1,Asia +2023-01-09,55117,2512,"[""Tablet"", ""Charger""]",605.82,"{""promo"": ""6%""}",192702,1,Africa +2023-04-01,55118,5702,"[""Wireless Mouse"", ""Laptop""]",336.6,{},283019,0,Asia +2023-04-22,55119,613,"[""Phone"", ""Tablet"", ""Laptop""]",2363.56,"{""seasonal"": ""23%""}",52944,1,South America +2024-02-10,55120,7790,"[""Laptop"", ""Monitor"", ""Phone""]",4659.19,"{""promo"": ""18%""}",140503,0,North America +2024-09-06,55121,4246,"[""Phone""]",1534.61,{},21531,1,Europe +2024-12-29,55122,7859,"[""Wireless Mouse""]",1895.37,"{"""": ""16%""}",46640,0,Africa +2023-11-16,55123,5049,"[""Keyboard""]",4483.64,{},235319,1,North America +2024-05-18,55124,4638,"[""Keyboard"", ""Tablet"", ""Monitor""]",1541.99,{},252152,0,Europe +2023-03-15,55125,9517,"[""Headphones""]",1339.22,"{"""": ""28%""}",258762,0,Africa +2024-04-15,55126,5072,"[""Headphones"", ""Charger"", ""Monitor""]",4814.58,{},84724,1,Africa +2023-12-27,55127,5176,"[""Wireless Mouse"", ""Monitor""]",1076.98,"{""promo"": ""25%""}",60396,0,Africa +2023-09-24,55128,6650,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",196.37,{},163044,0,Europe +2023-01-21,55129,4036,"[""Keyboard"", ""Tablet""]",3063.44,"{""promo"": ""7%""}",272197,0,Europe +2023-05-28,55130,318,"[""Phone"", ""Laptop"", ""Headphones""]",454.88,{},88010,1,South America +2023-08-21,55131,6465,"[""Headphones"", ""Phone""]",4514.57,{},45842,1,North America +2023-02-28,55132,2515,"[""Phone"", ""Laptop"", ""Keyboard""]",687.52,"{""promo"": ""11%""}",93016,1,Europe +2023-10-30,55133,9834,"[""Laptop""]",1248.86,{},22042,1,Africa +2023-07-14,55134,5428,"[""Phone""]",4023.72,"{"""": ""16%""}",240770,1,Africa +2024-11-04,55135,1932,"[""Keyboard"", ""Headphones""]",3775.32,{},94401,1,Asia +2023-11-27,55136,365,"[""Phone"", ""Charger"", ""Tablet""]",836.62,"{""promo"": ""6%""}",182791,0,North America +2024-02-28,55137,268,"[""Charger"", ""Laptop""]",3398.73,"{""promo"": ""20%""}",207455,1,Asia +2024-12-03,55138,6377,"[""Keyboard"", ""Tablet""]",1920.64,{},138267,0,Europe +2023-01-31,55139,7999,"[""Monitor"", ""Keyboard""]",3698.62,{},85323,1,Asia +2024-05-20,55140,477,"[""Wireless Mouse""]",1476.29,"{""promo"": ""24%""}",98832,1,North America +2024-06-27,55141,8197,"[""Phone"", ""Monitor""]",3540.26,{},222606,0,Africa +2024-03-23,55142,6611,"[""Monitor"", ""Laptop""]",2524.22,{},65712,0,Asia +2024-08-31,55143,1964,"[""Tablet""]",3675.21,"{""loyalty"": ""28%""}",37639,0,South America +2023-12-10,55144,232,"[""Laptop""]",4475.78,{},7018,1,Asia +2024-11-18,55145,9316,"[""Charger""]",3624.99,{},255364,1,Europe +2023-11-22,55146,8923,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",834.22,"{""seasonal"": ""13%""}",32256,0,Europe +2023-08-16,55147,5147,"[""Tablet""]",4743.24,{},192067,0,Europe +2023-06-15,55148,3846,"[""Charger"", ""Monitor""]",4744.22,{},282740,0,North America +2024-05-22,55149,8421,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",436.82,{},171762,0,Africa +2023-05-09,55150,288,"[""Tablet""]",3359.68,{},66222,0,Africa +2023-04-26,55151,7247,"[""Charger""]",913.15,{},293668,0,Africa +2023-06-10,55152,4892,"[""Monitor""]",3785.0,"{""seasonal"": ""17%""}",188868,0,North America +2023-12-16,55153,4862,"[""Monitor""]",4185.76,"{"""": ""13%""}",241674,0,Africa +2024-07-09,55154,5858,"[""Tablet"", ""Laptop"", ""Monitor""]",1104.01,{},266678,1,Africa +2023-09-22,55155,9682,"[""Phone"", ""Wireless Mouse""]",2364.81,"{""loyalty"": ""8%""}",278320,0,Europe +2023-05-23,55156,7711,"[""Laptop"", ""Headphones"", ""Phone""]",4086.1,"{""loyalty"": ""13%""}",22334,1,Africa +2024-03-23,55157,1229,"[""Monitor"", ""Headphones"", ""Laptop""]",3149.42,{},123883,1,Asia +2024-04-25,55158,1679,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2204.68,"{"""": ""24%""}",111832,0,Europe +2024-04-12,55159,9498,"[""Headphones"", ""Keyboard""]",1974.32,"{""seasonal"": ""8%""}",117896,0,Europe +2023-03-19,55160,5989,"[""Keyboard"", ""Monitor"", ""Tablet""]",2565.45,{},197720,1,Europe +2023-05-30,55161,8209,"[""Tablet"", ""Monitor"", ""Phone""]",2992.42,"{"""": ""27%""}",117128,0,Africa +2023-04-22,55162,8669,"[""Phone"", ""Tablet"", ""Charger""]",2546.55,{},163160,0,South America +2023-10-13,55163,7328,"[""Laptop"", ""Charger""]",1305.46,"{""loyalty"": ""19%""}",13733,1,Africa +2024-01-19,55164,8999,"[""Laptop""]",3834.68,"{"""": ""19%""}",143165,0,North America +2023-11-24,55165,1390,"[""Monitor""]",4823.24,{},284301,0,South America +2023-01-26,55166,4953,"[""Monitor""]",721.39,{},213629,1,Africa +2024-11-30,55167,4993,"[""Phone"", ""Keyboard""]",825.75,"{"""": ""5%""}",71976,0,North America +2023-11-01,55168,7042,"[""Tablet"", ""Headphones""]",887.53,"{"""": ""21%""}",161430,0,Europe +2024-11-04,55169,5598,"[""Charger""]",2114.99,"{""promo"": ""5%""}",48914,0,South America +2023-07-07,55170,7962,"[""Keyboard""]",2628.15,"{""loyalty"": ""27%""}",266156,1,South America +2023-10-25,55171,9914,"[""Tablet""]",3727.39,"{""loyalty"": ""20%""}",285811,0,Europe +2023-09-17,55172,5671,"[""Laptop"", ""Monitor""]",3553.06,{},225625,0,Europe +2024-08-19,55173,3292,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",736.42,{},38437,1,Europe +2023-07-17,55174,6068,"[""Laptop"", ""Keyboard"", ""Phone""]",1514.99,"{""promo"": ""12%""}",260144,1,South America +2024-12-27,55175,7306,"[""Headphones"", ""Keyboard""]",4990.81,"{""loyalty"": ""8%""}",37885,1,Europe +2023-04-10,55176,6030,"[""Monitor"", ""Tablet"", ""Charger""]",2474.16,"{"""": ""16%""}",148692,1,Asia +2023-11-04,55177,3585,"[""Keyboard"", ""Tablet""]",2410.2,"{""loyalty"": ""16%""}",106901,1,South America +2023-06-26,55178,1526,"[""Tablet""]",798.66,"{""seasonal"": ""11%""}",14646,0,Europe +2023-01-22,55179,9872,"[""Headphones"", ""Phone""]",2414.17,{},244027,1,Europe +2024-01-26,55180,1196,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",52.28,"{""promo"": ""15%""}",142944,0,Europe +2023-04-09,55181,4796,"[""Monitor""]",1829.01,"{""seasonal"": ""21%""}",56123,0,Africa +2023-01-28,55182,8611,"[""Wireless Mouse"", ""Charger""]",389.53,{},210164,0,Asia +2023-11-15,55183,4922,"[""Monitor""]",3611.77,{},170726,0,South America +2023-08-15,55184,4990,"[""Charger"", ""Wireless Mouse""]",3319.6,"{"""": ""7%""}",132916,1,Asia +2024-12-10,55185,5641,"[""Monitor"", ""Tablet""]",1162.0,"{""promo"": ""8%""}",296263,0,North America +2023-04-15,55186,8007,"[""Tablet"", ""Headphones""]",3305.08,{},231382,1,Europe +2023-06-24,55187,8270,"[""Phone"", ""Laptop""]",1389.0,{},35330,1,Asia +2023-05-08,55188,587,"[""Phone""]",2294.06,"{""promo"": ""19%""}",81785,1,South America +2023-11-01,55189,9196,"[""Charger"", ""Phone""]",436.49,"{""seasonal"": ""25%""}",97593,0,Asia +2024-04-21,55190,3500,"[""Keyboard"", ""Wireless Mouse""]",2043.98,{},88892,0,Africa +2023-03-23,55191,6938,"[""Keyboard"", ""Tablet"", ""Monitor""]",926.06,{},80878,0,South America +2024-08-23,55192,7028,"[""Phone"", ""Laptop""]",2586.47,"{""seasonal"": ""24%""}",146698,0,Africa +2023-09-01,55193,8923,"[""Headphones""]",4127.51,"{""loyalty"": ""19%""}",277559,1,North America +2024-09-02,55194,2736,"[""Laptop"", ""Phone"", ""Monitor""]",2913.82,"{""seasonal"": ""9%""}",13968,1,Africa +2023-11-11,55195,3284,"[""Phone"", ""Laptop""]",1020.48,"{""loyalty"": ""11%""}",296041,1,Europe +2024-10-12,55196,735,"[""Keyboard""]",354.67,"{""seasonal"": ""11%""}",96497,1,Asia +2024-02-20,55197,1815,"[""Tablet"", ""Laptop""]",4651.66,{},38404,1,South America +2023-05-10,55198,8629,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1829.33,{},226634,1,Europe +2024-06-21,55199,604,"[""Wireless Mouse"", ""Headphones""]",4522.49,"{""loyalty"": ""11%""}",192664,1,North America +2023-12-22,55200,1836,"[""Phone"", ""Charger""]",3655.93,{},235971,0,South America +2024-07-25,55201,5020,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3313.23,{},11430,0,Africa +2024-07-27,55202,4290,"[""Headphones"", ""Charger"", ""Phone""]",3051.95,"{""promo"": ""22%""}",21574,1,North America +2024-12-14,55203,5628,"[""Tablet"", ""Keyboard"", ""Headphones""]",2461.44,{},128804,0,South America +2023-07-20,55204,7516,"[""Laptop"", ""Phone""]",1045.17,"{"""": ""19%""}",161225,0,Africa +2023-03-02,55205,25,"[""Charger""]",964.96,"{""seasonal"": ""16%""}",51665,0,South America +2023-01-10,55206,9491,"[""Wireless Mouse""]",3335.34,{},126741,0,North America +2023-02-08,55207,9630,"[""Laptop"", ""Headphones"", ""Tablet""]",427.1,"{""seasonal"": ""15%""}",95692,0,South America +2023-11-21,55208,2027,"[""Tablet"", ""Phone""]",2127.55,{},37868,1,Asia +2024-11-24,55209,5353,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1944.41,"{""promo"": ""15%""}",10699,0,North America +2023-09-27,55210,6400,"[""Phone"", ""Headphones"", ""Monitor""]",4054.1,{},203900,1,North America +2023-04-18,55211,584,"[""Charger""]",4011.83,{},269897,1,Europe +2024-10-29,55212,5876,"[""Keyboard"", ""Headphones"", ""Laptop""]",4350.04,"{""promo"": ""11%""}",209104,1,North America +2024-10-28,55213,5332,"[""Wireless Mouse"", ""Monitor""]",2443.28,{},27203,0,Africa +2024-08-29,55214,4130,"[""Phone"", ""Monitor""]",1728.07,"{"""": ""5%""}",214272,1,Africa +2023-05-18,55215,2460,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3451.64,{},236851,0,South America +2023-12-06,55216,4131,"[""Charger"", ""Headphones"", ""Laptop""]",3201.67,"{""loyalty"": ""24%""}",107220,1,South America +2024-06-02,55217,2400,"[""Charger"", ""Monitor""]",1742.08,{},199533,0,Europe +2024-07-21,55218,3532,"[""Monitor""]",2412.58,{},54931,1,Europe +2023-03-08,55219,8916,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",906.52,"{""promo"": ""11%""}",273432,1,Europe +2024-09-18,55220,9463,"[""Wireless Mouse""]",2459.02,"{""seasonal"": ""9%""}",34856,0,Asia +2023-08-12,55221,2279,"[""Phone""]",3444.51,"{""promo"": ""15%""}",206526,1,Africa +2024-07-24,55222,329,"[""Laptop"", ""Headphones"", ""Charger""]",2977.64,"{""promo"": ""25%""}",132145,0,South America +2023-02-09,55223,6775,"[""Phone""]",4130.73,{},6516,0,Africa +2023-03-09,55224,1495,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",369.21,{},5409,0,North America +2023-11-29,55225,9445,"[""Tablet"", ""Headphones""]",3575.98,"{""seasonal"": ""20%""}",295714,1,Europe +2023-11-29,55226,6772,"[""Headphones"", ""Monitor""]",2485.22,{},16471,1,Africa +2023-08-18,55227,7296,"[""Charger"", ""Laptop""]",2930.59,"{"""": ""23%""}",152664,1,Europe +2023-05-30,55228,3378,"[""Charger"", ""Laptop""]",2253.6,"{""promo"": ""16%""}",13372,1,Europe +2024-10-10,55229,8412,"[""Tablet"", ""Phone"", ""Charger""]",4827.96,{},145495,0,South America +2023-01-25,55230,4565,"[""Headphones""]",1979.78,"{""loyalty"": ""27%""}",261594,0,South America +2023-10-04,55231,8440,"[""Headphones"", ""Keyboard""]",4966.35,{},55510,0,Africa +2024-12-09,55232,8824,"[""Headphones"", ""Monitor"", ""Laptop""]",1910.34,{},88209,1,Europe +2024-05-11,55233,4607,"[""Laptop""]",1173.88,"{"""": ""9%""}",42327,1,Asia +2023-12-12,55234,2102,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2187.84,"{"""": ""20%""}",241972,1,Africa +2023-04-11,55235,9555,"[""Wireless Mouse"", ""Tablet""]",4596.99,{},40556,1,Asia +2024-04-04,55236,2172,"[""Phone"", ""Charger"", ""Tablet""]",3028.51,"{""loyalty"": ""24%""}",133842,0,Africa +2023-04-13,55237,8214,"[""Monitor""]",367.06,{},266266,1,Europe +2023-07-03,55238,8048,"[""Laptop"", ""Wireless Mouse""]",1392.67,"{""promo"": ""17%""}",124272,0,Asia +2024-03-03,55239,9492,"[""Wireless Mouse""]",2577.16,{},219369,1,South America +2024-04-05,55240,918,"[""Wireless Mouse""]",3611.43,{},251500,1,Europe +2023-04-12,55241,7197,"[""Monitor"", ""Headphones"", ""Tablet""]",4373.61,"{"""": ""19%""}",110259,1,Asia +2023-08-10,55242,3657,"[""Keyboard""]",2719.85,"{"""": ""5%""}",297948,1,North America +2023-11-20,55243,4968,"[""Wireless Mouse"", ""Phone""]",1142.82,{},194915,1,Africa +2023-01-27,55244,3691,"[""Laptop"", ""Tablet""]",1592.83,"{""promo"": ""28%""}",158168,0,Europe +2023-11-03,55245,5758,"[""Monitor"", ""Keyboard""]",3516.11,"{""seasonal"": ""15%""}",35677,0,North America +2023-07-12,55246,1488,"[""Wireless Mouse"", ""Phone""]",4839.89,{},196017,1,North America +2024-07-30,55247,6953,"[""Charger"", ""Wireless Mouse""]",118.63,{},171730,1,Europe +2023-11-01,55248,9154,"[""Phone"", ""Keyboard""]",1676.01,{},223635,1,South America +2023-11-02,55249,9998,"[""Keyboard""]",3704.7,{},93790,1,North America +2024-12-24,55250,1337,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2867.99,"{""promo"": ""26%""}",107873,1,North America +2023-11-03,55251,8705,"[""Wireless Mouse"", ""Charger""]",1418.04,"{""loyalty"": ""21%""}",21827,0,North America +2023-07-21,55252,8957,"[""Laptop"", ""Wireless Mouse""]",1521.81,{},287073,1,South America +2024-07-04,55253,2313,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",197.8,{},8898,0,Europe +2023-04-14,55254,9834,"[""Tablet"", ""Phone"", ""Headphones""]",59.56,{},201478,1,South America +2023-03-29,55255,8335,"[""Charger""]",3415.75,"{""promo"": ""30%""}",137325,1,Europe +2024-12-11,55256,6199,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4490.07,"{"""": ""14%""}",260391,0,South America +2023-11-29,55257,3186,"[""Tablet""]",2672.18,"{""seasonal"": ""20%""}",157926,1,Africa +2024-06-17,55258,4258,"[""Tablet"", ""Keyboard""]",2380.72,"{""seasonal"": ""8%""}",94186,0,Africa +2024-11-27,55259,3074,"[""Wireless Mouse"", ""Headphones""]",467.46,{},137379,0,Africa +2023-01-08,55260,4117,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4612.94,"{""seasonal"": ""16%""}",198818,1,North America +2024-10-30,55261,8457,"[""Monitor"", ""Headphones"", ""Keyboard""]",3537.08,{},224266,0,Africa +2024-02-01,55262,938,"[""Keyboard"", ""Charger""]",2968.26,{},246040,1,South America +2023-07-03,55263,3394,"[""Phone"", ""Monitor"", ""Headphones""]",1736.88,{},261890,1,North America +2023-05-27,55264,7351,"[""Phone"", ""Laptop""]",1953.33,"{"""": ""8%""}",47825,1,South America +2024-05-04,55265,6702,"[""Keyboard""]",2303.74,"{"""": ""15%""}",284677,1,Europe +2023-05-14,55266,5418,"[""Headphones"", ""Charger"", ""Phone""]",2641.77,"{"""": ""15%""}",90168,1,Asia +2023-05-05,55267,8764,"[""Charger"", ""Keyboard""]",2605.54,{},99331,0,South America +2023-11-05,55268,8089,"[""Charger"", ""Phone""]",380.61,{},148412,1,Europe +2023-07-22,55269,429,"[""Tablet"", ""Charger"", ""Laptop""]",929.04,{},243148,1,Europe +2024-03-11,55270,1044,"[""Tablet"", ""Laptop""]",866.4,{},132500,1,Europe +2023-01-16,55271,2517,"[""Phone"", ""Headphones""]",596.33,{},82363,1,Africa +2024-09-01,55272,4848,"[""Laptop"", ""Monitor""]",1101.79,{},205859,0,South America +2023-05-29,55273,4560,"[""Headphones"", ""Charger"", ""Laptop""]",612.43,"{""promo"": ""28%""}",238986,0,Africa +2023-09-27,55274,1863,"[""Keyboard"", ""Monitor"", ""Phone""]",1509.93,{},163230,1,Europe +2024-07-23,55275,4359,"[""Monitor""]",2867.69,{},64152,1,Europe +2023-03-27,55276,3641,"[""Laptop"", ""Charger""]",1695.64,"{""promo"": ""17%""}",2525,0,North America +2024-12-14,55277,5159,"[""Wireless Mouse"", ""Phone""]",54.57,{},140153,1,Africa +2024-05-22,55278,6858,"[""Keyboard"", ""Tablet""]",668.34,{},111507,0,South America +2023-01-15,55279,4804,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3781.83,"{""seasonal"": ""12%""}",72295,1,North America +2024-09-08,55280,6261,"[""Keyboard"", ""Phone"", ""Tablet""]",4044.82,{},203160,0,Africa +2024-10-24,55281,7881,"[""Laptop"", ""Phone""]",766.17,"{""promo"": ""28%""}",50825,0,Asia +2023-05-20,55282,6339,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1818.72,"{""seasonal"": ""6%""}",104583,1,Africa +2024-05-25,55283,7068,"[""Tablet"", ""Laptop"", ""Phone""]",2665.44,"{""loyalty"": ""26%""}",84590,1,Africa +2024-08-15,55284,8939,"[""Laptop"", ""Headphones"", ""Keyboard""]",4288.5,"{""seasonal"": ""8%""}",161593,0,Europe +2024-09-26,55285,1304,"[""Laptop"", ""Tablet""]",3823.03,{},33049,1,North America +2024-06-01,55286,7828,"[""Charger"", ""Phone"", ""Tablet""]",2964.49,"{"""": ""21%""}",266819,0,South America +2023-07-01,55287,9444,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",735.42,{},29986,0,South America +2023-03-04,55288,3422,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4510.74,"{""promo"": ""22%""}",181343,0,North America +2023-03-24,55289,3889,"[""Tablet"", ""Charger"", ""Keyboard""]",690.73,{},60109,0,North America +2024-07-11,55290,5749,"[""Monitor""]",1301.12,{},270024,0,Africa +2024-07-30,55291,6648,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1040.55,"{""seasonal"": ""11%""}",202360,0,Europe +2023-11-13,55292,6618,"[""Laptop"", ""Keyboard""]",1867.63,{},125030,1,South America +2024-01-26,55293,7860,"[""Tablet"", ""Headphones""]",3355.33,{},72588,0,South America +2024-03-29,55294,4204,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3956.04,"{""seasonal"": ""13%""}",90311,0,Africa +2023-05-25,55295,7582,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3596.15,{},106162,1,Africa +2023-07-21,55296,6267,"[""Charger"", ""Headphones"", ""Tablet""]",1581.16,"{"""": ""22%""}",238018,0,Asia +2023-12-24,55297,2462,"[""Keyboard""]",712.23,{},196030,0,Asia +2023-06-03,55298,4807,"[""Headphones"", ""Keyboard"", ""Phone""]",2305.64,"{"""": ""8%""}",40475,0,North America +2024-06-18,55299,1441,"[""Laptop"", ""Headphones""]",281.51,"{""loyalty"": ""29%""}",85271,0,Asia +2023-02-21,55300,892,"[""Monitor"", ""Phone""]",638.87,"{""promo"": ""9%""}",161660,1,Europe +2023-06-29,55301,1992,"[""Tablet"", ""Keyboard""]",1484.85,{},4340,0,Asia +2024-06-20,55302,9759,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3639.58,"{""loyalty"": ""6%""}",56207,0,Europe +2024-12-25,55303,6803,"[""Monitor""]",4949.67,{},93688,1,South America +2024-10-13,55304,1174,"[""Phone"", ""Wireless Mouse""]",2425.59,{},146750,0,Europe +2024-07-06,55305,1518,"[""Tablet"", ""Headphones"", ""Laptop""]",4119.0,"{""loyalty"": ""10%""}",119547,0,South America +2023-09-18,55306,438,"[""Phone""]",3198.18,"{"""": ""30%""}",265256,1,Europe +2023-04-11,55307,6823,"[""Keyboard"", ""Phone""]",2804.19,"{""loyalty"": ""5%""}",148362,1,Europe +2023-03-17,55308,8530,"[""Phone""]",4514.55,"{""seasonal"": ""9%""}",163672,0,Europe +2023-04-10,55309,7219,"[""Monitor""]",1041.51,{},141656,0,Europe +2024-10-16,55310,5939,"[""Charger"", ""Wireless Mouse""]",4581.46,{},218669,0,North America +2024-04-22,55311,3600,"[""Tablet""]",451.18,"{""promo"": ""25%""}",258127,0,North America +2023-09-16,55312,8930,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1063.0,"{""loyalty"": ""6%""}",267801,0,Europe +2023-06-13,55313,229,"[""Keyboard""]",4941.72,{},119418,1,South America +2023-03-02,55314,2048,"[""Charger"", ""Phone""]",1699.16,{},283758,1,Asia +2023-09-23,55315,4857,"[""Keyboard"", ""Charger""]",4132.45,"{""loyalty"": ""15%""}",196659,0,South America +2024-01-23,55316,2031,"[""Keyboard"", ""Headphones"", ""Phone""]",3759.92,{},89250,1,South America +2024-04-13,55317,4842,"[""Keyboard"", ""Monitor"", ""Tablet""]",1229.56,"{""seasonal"": ""19%""}",261931,0,Europe +2024-09-15,55318,9900,"[""Charger"", ""Keyboard"", ""Phone""]",3762.89,"{""promo"": ""9%""}",146181,0,Europe +2024-09-18,55319,6596,"[""Monitor"", ""Phone"", ""Keyboard""]",2008.49,{},114924,1,Africa +2024-07-31,55320,9205,"[""Charger""]",2025.62,"{""loyalty"": ""30%""}",205572,1,North America +2024-09-30,55321,8139,"[""Keyboard"", ""Charger"", ""Phone""]",3442.8,{},70518,0,Asia +2023-05-12,55322,5448,"[""Laptop"", ""Keyboard""]",3963.34,"{""seasonal"": ""10%""}",126052,0,North America +2023-08-03,55323,6188,"[""Tablet"", ""Keyboard"", ""Charger""]",2932.55,"{""loyalty"": ""16%""}",105439,1,Asia +2024-06-21,55324,415,"[""Laptop"", ""Phone"", ""Tablet""]",553.11,{},73164,1,North America +2023-06-11,55325,4974,"[""Headphones""]",4035.69,{},174117,0,Europe +2023-10-29,55326,6751,"[""Laptop"", ""Keyboard""]",3247.26,{},151681,0,South America +2023-01-18,55327,177,"[""Laptop""]",3939.1,"{""promo"": ""29%""}",269961,1,Europe +2024-02-04,55328,2978,"[""Headphones""]",4949.27,"{"""": ""7%""}",224724,1,Europe +2023-01-03,55329,7210,"[""Charger"", ""Keyboard""]",4395.45,{},41724,0,Europe +2024-11-29,55330,7289,"[""Charger"", ""Monitor""]",3840.0,{},35927,1,North America +2023-02-09,55331,4042,"[""Phone"", ""Charger""]",1645.63,"{""loyalty"": ""21%""}",157326,0,North America +2024-11-23,55332,8830,"[""Headphones""]",3226.67,{},227076,1,Europe +2024-07-12,55333,4589,"[""Laptop"", ""Monitor"", ""Headphones""]",237.53,{},244777,1,South America +2024-03-06,55334,9171,"[""Tablet"", ""Keyboard""]",2977.0,{},258667,0,North America +2023-01-11,55335,3968,"[""Monitor""]",4576.54,"{""loyalty"": ""13%""}",285180,0,Africa +2024-03-07,55336,8752,"[""Keyboard"", ""Monitor"", ""Phone""]",319.78,{},87527,1,Europe +2023-08-07,55337,7933,"[""Tablet"", ""Headphones"", ""Laptop""]",3969.2,"{"""": ""21%""}",294922,1,Asia +2024-06-29,55338,3369,"[""Keyboard"", ""Laptop""]",4200.71,"{""loyalty"": ""7%""}",129862,1,North America +2023-12-21,55339,2856,"[""Keyboard""]",3978.56,"{""promo"": ""26%""}",40701,0,Africa +2024-01-25,55340,7532,"[""Charger"", ""Wireless Mouse""]",3322.92,{},266506,0,Africa +2024-01-10,55341,9312,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3406.82,"{""promo"": ""13%""}",296476,0,Africa +2023-07-17,55342,4643,"[""Laptop""]",2187.15,{},213640,1,South America +2024-05-24,55343,1229,"[""Wireless Mouse""]",1159.66,"{""loyalty"": ""24%""}",161256,1,Asia +2023-09-18,55344,5307,"[""Charger"", ""Headphones"", ""Monitor""]",2136.83,"{""loyalty"": ""28%""}",79765,0,Europe +2023-05-12,55345,8365,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1190.65,"{"""": ""16%""}",167825,1,North America +2024-09-08,55346,7315,"[""Wireless Mouse""]",76.13,"{"""": ""13%""}",89099,0,Africa +2024-08-26,55347,5790,"[""Tablet"", ""Keyboard"", ""Laptop""]",3102.12,{},51036,1,Africa +2024-06-11,55348,8516,"[""Charger""]",645.61,{},53359,0,Asia +2024-04-20,55349,3875,"[""Headphones"", ""Monitor""]",237.94,{},209790,1,Asia +2023-12-20,55350,7305,"[""Laptop"", ""Keyboard""]",4204.13,"{"""": ""20%""}",29156,1,Asia +2023-12-10,55351,1732,"[""Keyboard""]",4033.75,"{""loyalty"": ""27%""}",269194,0,South America +2024-07-08,55352,8843,"[""Wireless Mouse""]",4090.66,{},25246,1,Asia +2024-02-04,55353,1615,"[""Wireless Mouse"", ""Charger""]",1560.74,"{"""": ""14%""}",94265,1,Africa +2024-03-16,55354,4338,"[""Monitor"", ""Laptop"", ""Charger""]",976.09,{},111871,0,South America +2024-03-11,55355,3592,"[""Monitor""]",3018.1,{},90014,1,Asia +2023-11-11,55356,5480,"[""Keyboard"", ""Monitor"", ""Phone""]",479.9,{},73438,1,Asia +2024-12-20,55357,9297,"[""Keyboard"", ""Headphones"", ""Phone""]",4591.15,"{"""": ""11%""}",7934,1,Africa +2023-05-22,55358,1429,"[""Tablet"", ""Charger"", ""Monitor""]",3474.53,{},36902,1,Africa +2024-06-06,55359,9576,"[""Headphones"", ""Phone""]",2422.6,"{"""": ""20%""}",227875,0,South America +2024-04-14,55360,4312,"[""Laptop""]",3477.58,{},210040,0,Asia +2023-05-25,55361,3998,"[""Phone"", ""Keyboard""]",1429.11,"{""promo"": ""28%""}",100800,1,South America +2024-12-20,55362,3087,"[""Laptop"", ""Wireless Mouse""]",4698.3,"{""loyalty"": ""17%""}",93105,0,Africa +2024-11-24,55363,2903,"[""Headphones"", ""Laptop"", ""Charger""]",1823.5,{},289073,1,North America +2024-07-01,55364,1042,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3702.82,{},50122,1,Asia +2024-05-21,55365,974,"[""Laptop"", ""Charger""]",927.26,{},122284,1,Africa +2023-01-11,55366,9734,"[""Monitor"", ""Wireless Mouse""]",4297.85,"{""loyalty"": ""20%""}",295853,0,Asia +2023-07-31,55367,8763,"[""Phone""]",2781.14,{},272216,1,Africa +2023-04-17,55368,5296,"[""Wireless Mouse""]",1763.01,{},226873,1,North America +2024-10-26,55369,4761,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3326.27,{},280848,0,Asia +2024-07-08,55370,8728,"[""Charger"", ""Phone""]",1031.87,{},101819,1,South America +2024-05-04,55371,893,"[""Keyboard"", ""Headphones""]",1757.07,{},288177,0,Europe +2023-06-02,55372,9700,"[""Monitor""]",3089.49,{},106550,1,Asia +2024-08-29,55373,6427,"[""Phone""]",4756.3,"{""seasonal"": ""19%""}",22530,0,South America +2023-01-12,55374,9696,"[""Monitor"", ""Headphones""]",3281.68,"{""seasonal"": ""16%""}",273515,1,Europe +2023-01-01,55375,2616,"[""Monitor"", ""Wireless Mouse""]",1553.96,"{""seasonal"": ""16%""}",110265,1,Asia +2024-08-04,55376,5733,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4152.22,{},136340,0,North America +2023-10-05,55377,8606,"[""Headphones"", ""Monitor"", ""Keyboard""]",3990.48,{},36407,0,Asia +2024-03-16,55378,7089,"[""Monitor"", ""Phone""]",3466.97,{},221797,1,Asia +2023-11-26,55379,7681,"[""Tablet"", ""Headphones""]",4470.2,"{"""": ""5%""}",250192,0,Africa +2023-04-04,55380,6322,"[""Keyboard""]",3634.46,{},248042,0,Africa +2024-11-05,55381,2042,"[""Tablet"", ""Keyboard""]",4367.1,"{""loyalty"": ""9%""}",222854,0,Asia +2023-04-04,55382,7256,"[""Laptop"", ""Headphones""]",1969.2,"{""loyalty"": ""16%""}",276739,0,North America +2024-10-25,55383,7900,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1222.17,"{""promo"": ""13%""}",230296,1,North America +2023-07-24,55384,194,"[""Phone""]",493.65,"{""promo"": ""5%""}",170978,1,North America +2024-05-30,55385,7537,"[""Charger""]",4842.29,"{""seasonal"": ""14%""}",292012,0,Europe +2023-10-04,55386,6124,"[""Wireless Mouse"", ""Charger""]",98.45,"{""loyalty"": ""24%""}",153804,0,Europe +2024-09-27,55387,7407,"[""Tablet"", ""Keyboard"", ""Charger""]",2488.13,"{""loyalty"": ""11%""}",74369,1,Asia +2023-08-18,55388,4449,"[""Phone"", ""Headphones""]",4123.29,{},97843,0,Asia +2024-07-12,55389,4539,"[""Laptop"", ""Keyboard""]",1622.67,{},90149,0,Asia +2023-05-08,55390,5957,"[""Wireless Mouse""]",2322.9,{},141996,1,Europe +2023-02-21,55391,8269,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2376.05,"{"""": ""28%""}",68947,1,South America +2023-06-24,55392,8964,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4846.63,"{""seasonal"": ""8%""}",80874,0,Africa +2024-08-25,55393,9878,"[""Tablet"", ""Laptop""]",4802.86,{},75127,1,South America +2024-08-30,55394,4015,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3838.32,{},240042,1,South America +2023-12-05,55395,5050,"[""Wireless Mouse""]",3512.69,"{""promo"": ""19%""}",199156,0,North America +2023-04-20,55396,45,"[""Phone""]",3532.3,"{""promo"": ""5%""}",115424,0,South America +2024-07-14,55397,4307,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",442.08,{},200173,0,South America +2023-09-04,55398,4906,"[""Charger""]",931.55,{},90896,0,Asia +2024-04-20,55399,6459,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3126.64,{},51563,0,Asia +2024-02-27,55400,6174,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",961.7,"{"""": ""26%""}",80558,1,Europe +2023-11-27,55401,4714,"[""Charger"", ""Tablet"", ""Phone""]",3363.14,{},291541,1,Africa +2023-06-19,55402,2589,"[""Wireless Mouse"", ""Keyboard""]",4589.36,"{""promo"": ""13%""}",65293,0,North America +2023-08-31,55403,2074,"[""Monitor""]",621.36,{},19272,1,Africa +2024-07-07,55404,4196,"[""Monitor"", ""Charger""]",3895.55,"{""seasonal"": ""9%""}",58966,1,South America +2024-12-18,55405,8142,"[""Monitor""]",3222.56,{},4322,0,South America +2024-01-08,55406,969,"[""Tablet"", ""Monitor""]",4486.38,{},109196,0,Africa +2023-01-03,55407,9185,"[""Laptop"", ""Monitor""]",2769.95,{},51714,1,Europe +2023-05-19,55408,7111,"[""Laptop"", ""Tablet"", ""Charger""]",2966.57,"{"""": ""25%""}",8128,1,Europe +2023-11-24,55409,9091,"[""Headphones""]",68.43,{},146734,0,Africa +2023-03-26,55410,2003,"[""Charger""]",1533.22,{},68257,0,Europe +2023-12-28,55411,5343,"[""Keyboard"", ""Headphones"", ""Laptop""]",818.97,"{""loyalty"": ""16%""}",99563,0,Asia +2024-08-10,55412,3429,"[""Headphones""]",4657.74,{},111360,1,North America +2024-10-18,55413,7176,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4080.59,"{""seasonal"": ""8%""}",53970,0,South America +2024-11-16,55414,8166,"[""Charger"", ""Laptop""]",2156.8,"{""seasonal"": ""23%""}",159582,0,Asia +2023-02-06,55415,3252,"[""Charger""]",4066.84,"{"""": ""12%""}",73096,0,Asia +2024-05-19,55416,8013,"[""Tablet"", ""Charger""]",4938.74,"{""loyalty"": ""12%""}",268051,1,North America +2023-03-11,55417,4924,"[""Monitor"", ""Wireless Mouse""]",2961.32,"{""loyalty"": ""23%""}",191935,0,South America +2024-02-05,55418,914,"[""Tablet"", ""Phone""]",4450.8,"{""promo"": ""29%""}",193724,1,North America +2023-01-08,55419,643,"[""Phone"", ""Tablet"", ""Monitor""]",3889.29,"{""seasonal"": ""8%""}",177655,0,North America +2023-01-28,55420,2343,"[""Wireless Mouse"", ""Tablet""]",2413.71,{},158116,1,Asia +2023-05-10,55421,3871,"[""Monitor"", ""Laptop""]",1655.02,"{""loyalty"": ""18%""}",175211,0,Asia +2023-04-25,55422,5919,"[""Tablet"", ""Laptop""]",4453.64,"{""seasonal"": ""13%""}",16364,0,Africa +2023-01-24,55423,140,"[""Headphones""]",297.61,{},152738,1,Africa +2023-02-21,55424,2587,"[""Charger""]",328.2,{},5389,1,Asia +2023-11-10,55425,6605,"[""Phone""]",158.31,"{"""": ""28%""}",147292,0,North America +2023-11-20,55426,4479,"[""Keyboard"", ""Monitor"", ""Charger""]",2807.36,"{""loyalty"": ""18%""}",101894,1,Asia +2024-11-29,55427,5674,"[""Charger"", ""Phone""]",634.45,"{""seasonal"": ""22%""}",102188,1,South America +2024-03-12,55428,3615,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1887.24,"{""promo"": ""28%""}",149466,0,Europe +2023-06-04,55429,8175,"[""Laptop""]",4719.14,"{""seasonal"": ""19%""}",213610,1,Asia +2023-03-27,55430,5890,"[""Charger"", ""Headphones""]",795.62,"{""promo"": ""30%""}",57084,1,Africa +2024-09-01,55431,4486,"[""Charger""]",3747.73,{},82383,1,Asia +2024-02-28,55432,5939,"[""Wireless Mouse""]",4028.19,"{"""": ""21%""}",25326,0,Africa +2024-11-17,55433,1752,"[""Laptop"", ""Headphones"", ""Monitor""]",3436.52,"{""loyalty"": ""10%""}",37244,1,Asia +2024-07-11,55434,3964,"[""Keyboard"", ""Wireless Mouse""]",2760.03,"{""promo"": ""17%""}",30506,0,Africa +2024-06-12,55435,9083,"[""Tablet"", ""Headphones"", ""Laptop""]",1331.34,{},208883,1,Asia +2023-08-11,55436,7261,"[""Wireless Mouse"", ""Headphones""]",1287.98,"{"""": ""7%""}",105494,0,Africa +2023-01-09,55437,8453,"[""Laptop"", ""Headphones"", ""Phone""]",4415.35,"{""loyalty"": ""19%""}",296415,0,South America +2023-09-27,55438,6575,"[""Charger"", ""Keyboard"", ""Monitor""]",2951.44,{},187006,0,Africa +2023-07-07,55439,757,"[""Laptop""]",2688.71,"{""promo"": ""30%""}",23795,1,South America +2023-12-03,55440,5475,"[""Laptop"", ""Headphones"", ""Monitor""]",4931.18,{},2029,1,South America +2024-10-07,55441,1775,"[""Charger"", ""Laptop""]",1112.97,{},109212,1,Europe +2024-10-10,55442,3053,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1825.03,{},30580,1,North America +2024-02-12,55443,3112,"[""Phone"", ""Keyboard""]",2206.71,{},210923,1,Asia +2023-11-09,55444,6138,"[""Keyboard"", ""Headphones"", ""Monitor""]",3868.95,"{""seasonal"": ""22%""}",278664,1,South America +2024-07-19,55445,9356,"[""Wireless Mouse"", ""Laptop""]",99.27,{},102057,1,Europe +2024-06-18,55446,6192,"[""Tablet"", ""Phone""]",3731.97,"{""loyalty"": ""9%""}",213595,0,Asia +2023-12-08,55447,8467,"[""Tablet"", ""Keyboard""]",338.48,"{""promo"": ""17%""}",87545,0,Africa +2024-03-20,55448,8105,"[""Wireless Mouse"", ""Headphones""]",3783.57,"{""seasonal"": ""13%""}",235224,1,Asia +2023-12-21,55449,8288,"[""Headphones"", ""Phone""]",2385.13,{},136838,0,Africa +2024-02-24,55450,2441,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2051.56,"{""promo"": ""15%""}",119766,1,North America +2023-01-12,55451,3967,"[""Monitor"", ""Headphones""]",1841.96,{},129571,1,North America +2024-02-15,55452,5440,"[""Monitor""]",1019.64,{},227914,0,Asia +2023-03-11,55453,4253,"[""Headphones"", ""Tablet""]",754.58,"{""seasonal"": ""11%""}",89887,1,North America +2024-12-09,55454,9611,"[""Laptop"", ""Phone""]",1344.79,{},126937,1,South America +2024-04-18,55455,9941,"[""Phone""]",1250.33,{},292038,1,Asia +2023-09-17,55456,7556,"[""Headphones""]",2824.91,{},198043,1,Europe +2023-05-02,55457,9584,"[""Keyboard"", ""Tablet""]",3878.21,"{""seasonal"": ""26%""}",121337,1,South America +2023-11-17,55458,4575,"[""Phone"", ""Headphones"", ""Laptop""]",3814.52,"{""loyalty"": ""13%""}",39428,0,North America +2024-06-12,55459,4970,"[""Phone"", ""Monitor"", ""Laptop""]",3021.11,{},34040,1,Asia +2023-02-12,55460,5408,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2719.93,{},23764,1,Asia +2023-07-06,55461,2447,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",385.52,{},71664,0,North America +2023-03-17,55462,9396,"[""Laptop""]",513.24,{},284712,1,Asia +2024-06-11,55463,235,"[""Monitor"", ""Phone""]",725.28,"{""loyalty"": ""17%""}",160462,0,South America +2024-10-16,55464,2385,"[""Tablet"", ""Charger""]",1096.59,"{""loyalty"": ""9%""}",133664,1,Europe +2023-07-22,55465,8736,"[""Phone""]",3872.84,"{""loyalty"": ""16%""}",33427,0,Asia +2023-01-05,55466,6612,"[""Laptop"", ""Headphones"", ""Monitor""]",1150.85,"{""seasonal"": ""25%""}",28919,0,South America +2024-11-23,55467,2597,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3468.99,"{""loyalty"": ""24%""}",200528,0,Africa +2024-05-21,55468,8003,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1177.75,{},90601,0,Europe +2024-01-18,55469,3520,"[""Keyboard""]",3645.76,"{"""": ""21%""}",68082,1,Europe +2024-07-06,55470,8325,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",398.85,"{""seasonal"": ""5%""}",92925,1,South America +2024-01-27,55471,4777,"[""Keyboard""]",4470.88,{},54893,0,Europe +2024-03-03,55472,5497,"[""Tablet"", ""Phone""]",837.95,"{""seasonal"": ""8%""}",107804,1,Europe +2023-10-20,55473,6272,"[""Phone""]",2525.69,"{"""": ""28%""}",208601,1,Europe +2024-08-28,55474,1263,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1733.79,"{""loyalty"": ""6%""}",270263,1,Europe +2023-02-24,55475,4728,"[""Tablet"", ""Phone"", ""Laptop""]",1918.82,"{""seasonal"": ""23%""}",59476,0,Asia +2023-12-23,55476,3268,"[""Charger""]",3201.67,{},249247,1,Africa +2023-05-15,55477,4713,"[""Headphones"", ""Phone""]",4109.84,{},14979,0,Africa +2023-07-31,55478,9209,"[""Keyboard"", ""Charger"", ""Tablet""]",3224.13,{},127353,0,North America +2024-02-23,55479,9263,"[""Tablet""]",1891.18,"{""promo"": ""27%""}",120337,0,South America +2023-02-18,55480,3847,"[""Headphones"", ""Tablet"", ""Monitor""]",4456.55,"{""seasonal"": ""24%""}",248804,1,North America +2024-02-24,55481,7431,"[""Charger"", ""Headphones"", ""Monitor""]",149.41,"{""seasonal"": ""10%""}",241219,0,Asia +2023-10-07,55482,9500,"[""Keyboard""]",4395.52,{},132370,0,Africa +2024-12-12,55483,1365,"[""Charger""]",4260.95,{},83550,0,North America +2023-07-17,55484,6012,"[""Charger""]",1870.06,"{""seasonal"": ""5%""}",170443,1,Europe +2024-03-09,55485,7757,"[""Laptop""]",269.54,"{""seasonal"": ""17%""}",137956,0,Asia +2023-06-08,55486,3843,"[""Headphones""]",4294.31,"{"""": ""7%""}",230194,0,North America +2024-09-10,55487,3960,"[""Monitor"", ""Tablet"", ""Keyboard""]",2176.64,{},53874,0,South America +2024-04-25,55488,945,"[""Tablet"", ""Charger"", ""Laptop""]",1905.43,{},123835,1,South America +2023-11-09,55489,3788,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4519.63,{},193629,1,South America +2024-07-21,55490,3362,"[""Laptop"", ""Keyboard"", ""Tablet""]",2236.33,"{""loyalty"": ""17%""}",167527,0,North America +2024-02-23,55491,177,"[""Phone"", ""Headphones"", ""Tablet""]",4929.82,"{""loyalty"": ""5%""}",106315,1,Europe +2023-03-28,55492,1040,"[""Wireless Mouse""]",3557.36,{},24290,0,South America +2023-07-16,55493,1570,"[""Monitor"", ""Charger""]",3561.26,{},35595,1,Asia +2023-02-21,55494,3562,"[""Wireless Mouse"", ""Charger""]",4028.16,"{""promo"": ""12%""}",153220,0,North America +2023-06-23,55495,2712,"[""Headphones"", ""Keyboard"", ""Monitor""]",587.09,{},73720,1,North America +2024-05-20,55496,626,"[""Charger"", ""Phone""]",1678.07,"{""promo"": ""13%""}",39859,1,Europe +2024-09-15,55497,698,"[""Keyboard"", ""Headphones""]",1028.67,{},198565,1,Asia +2024-03-12,55498,6935,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4794.03,"{""promo"": ""14%""}",30749,0,Asia +2023-04-25,55499,8298,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3941.75,"{""promo"": ""7%""}",66172,1,Europe +2024-08-21,55500,4692,"[""Headphones"", ""Keyboard"", ""Monitor""]",3318.5,{},250932,1,Europe +2024-01-15,55501,2595,"[""Laptop"", ""Tablet"", ""Monitor""]",4863.63,"{"""": ""24%""}",51098,1,Europe +2024-03-23,55502,2444,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1249.71,{},295725,1,Africa +2024-02-18,55503,5460,"[""Charger"", ""Keyboard""]",3099.65,"{""seasonal"": ""13%""}",255098,1,North America +2024-01-10,55504,2292,"[""Monitor"", ""Tablet"", ""Keyboard""]",1870.12,{},198078,0,Asia +2024-07-10,55505,212,"[""Keyboard"", ""Headphones""]",2113.69,{},110875,0,Europe +2023-07-08,55506,6277,"[""Tablet""]",2706.6,"{""promo"": ""10%""}",194020,0,Europe +2023-07-18,55507,8538,"[""Laptop"", ""Headphones""]",4173.14,{},225340,1,Europe +2023-09-12,55508,2475,"[""Monitor""]",2337.73,{},37746,0,North America +2024-01-30,55509,6689,"[""Keyboard""]",4870.39,"{""promo"": ""30%""}",154870,1,North America +2024-05-08,55510,4161,"[""Wireless Mouse""]",2292.85,{},149758,0,Asia +2024-03-21,55511,5975,"[""Monitor"", ""Laptop"", ""Phone""]",2646.47,"{""loyalty"": ""11%""}",245970,0,Africa +2024-07-12,55512,9736,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2089.31,"{"""": ""9%""}",98511,0,South America +2024-02-23,55513,9218,"[""Keyboard"", ""Charger""]",4611.78,"{""promo"": ""6%""}",151904,1,Asia +2023-04-19,55514,5838,"[""Headphones"", ""Laptop""]",730.43,"{""promo"": ""14%""}",200818,1,Africa +2023-11-16,55515,101,"[""Wireless Mouse""]",3056.78,{},268807,0,Asia +2023-01-04,55516,8137,"[""Tablet"", ""Keyboard""]",4089.99,"{""loyalty"": ""23%""}",174227,0,Asia +2024-11-28,55517,6308,"[""Phone"", ""Tablet""]",2493.66,{},53875,1,North America +2024-05-06,55518,3025,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4775.04,{},150099,1,South America +2024-05-16,55519,8696,"[""Charger"", ""Phone"", ""Monitor""]",3197.46,"{""loyalty"": ""18%""}",62465,0,Africa +2023-04-29,55520,7846,"[""Wireless Mouse"", ""Monitor""]",599.18,{},19397,0,North America +2023-08-21,55521,4654,"[""Keyboard"", ""Headphones""]",2960.21,{},39471,0,South America +2023-05-05,55522,9257,"[""Phone"", ""Tablet"", ""Laptop""]",328.04,{},139952,1,Asia +2023-01-22,55523,8304,"[""Charger""]",3269.01,"{""seasonal"": ""17%""}",278063,0,Asia +2024-12-09,55524,9269,"[""Laptop"", ""Headphones""]",697.44,{},79780,1,Africa +2023-08-12,55525,3224,"[""Headphones"", ""Charger"", ""Tablet""]",4703.81,{},46216,0,North America +2023-07-30,55526,4739,"[""Keyboard"", ""Laptop""]",1576.47,"{""loyalty"": ""23%""}",211641,0,North America +2024-03-10,55527,498,"[""Laptop"", ""Wireless Mouse""]",3844.06,"{"""": ""6%""}",120199,0,South America +2023-04-10,55528,122,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",617.37,"{""loyalty"": ""15%""}",257379,1,Asia +2024-06-05,55529,4862,"[""Wireless Mouse"", ""Monitor""]",1488.54,"{"""": ""15%""}",88281,1,Asia +2024-04-24,55530,3355,"[""Phone""]",3511.0,"{"""": ""29%""}",289226,1,South America +2023-12-23,55531,8129,"[""Wireless Mouse""]",275.72,"{""promo"": ""25%""}",54592,1,Africa +2023-03-28,55532,8722,"[""Keyboard"", ""Tablet""]",650.77,"{""promo"": ""16%""}",35754,0,Asia +2023-12-15,55533,9745,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1887.99,{},77202,1,Africa +2023-12-15,55534,603,"[""Tablet"", ""Charger"", ""Monitor""]",3444.3,"{""seasonal"": ""15%""}",271615,0,Europe +2024-01-27,55535,5469,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2781.84,{},171505,1,Africa +2024-08-06,55536,271,"[""Keyboard"", ""Tablet""]",719.44,{},13148,0,Africa +2024-05-23,55537,9234,"[""Charger""]",867.39,"{""seasonal"": ""6%""}",41937,1,North America +2023-06-18,55538,5924,"[""Tablet"", ""Monitor"", ""Keyboard""]",1757.1,"{""seasonal"": ""15%""}",220088,0,Africa +2024-08-21,55539,9843,"[""Keyboard""]",907.68,{},108479,0,Europe +2023-12-23,55540,3287,"[""Headphones""]",2048.48,{},90417,1,Europe +2024-11-07,55541,1781,"[""Tablet"", ""Headphones""]",1221.24,{},15904,0,South America +2024-06-13,55542,4765,"[""Laptop"", ""Charger"", ""Phone""]",2004.51,{},248727,0,North America +2023-06-12,55543,5059,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1522.26,"{""promo"": ""10%""}",274884,0,South America +2023-01-12,55544,2336,"[""Laptop"", ""Charger""]",4108.88,"{""loyalty"": ""21%""}",187438,1,Asia +2024-11-01,55545,3117,"[""Keyboard"", ""Charger""]",800.71,"{""promo"": ""10%""}",111045,0,North America +2023-12-26,55546,4386,"[""Phone""]",1419.62,"{""seasonal"": ""8%""}",33716,1,Europe +2023-02-01,55547,5307,"[""Charger"", ""Laptop"", ""Keyboard""]",730.23,{},178216,1,North America +2024-06-22,55548,1841,"[""Charger"", ""Monitor""]",3800.33,"{"""": ""24%""}",5365,1,Europe +2023-05-22,55549,6283,"[""Wireless Mouse""]",4326.69,"{""seasonal"": ""10%""}",148342,0,South America +2024-08-15,55550,7687,"[""Headphones"", ""Laptop""]",3379.76,"{"""": ""12%""}",293804,1,North America +2023-09-25,55551,6828,"[""Keyboard"", ""Headphones""]",2658.56,"{""seasonal"": ""24%""}",211828,1,South America +2023-12-25,55552,3400,"[""Tablet"", ""Keyboard"", ""Headphones""]",681.43,"{""loyalty"": ""6%""}",248531,1,Europe +2024-09-02,55553,5278,"[""Tablet""]",2386.38,"{""seasonal"": ""30%""}",157187,1,Europe +2023-05-04,55554,6537,"[""Laptop""]",4082.51,{},238390,1,Europe +2023-06-17,55555,3529,"[""Phone"", ""Keyboard"", ""Monitor""]",2208.51,{},157083,0,North America +2024-04-14,55556,3028,"[""Monitor"", ""Headphones""]",3349.11,"{""promo"": ""9%""}",263228,0,North America +2024-02-13,55557,1758,"[""Wireless Mouse""]",2888.55,{},182191,1,Europe +2023-02-11,55558,4400,"[""Keyboard"", ""Phone""]",158.14,"{""seasonal"": ""12%""}",15144,0,Europe +2024-08-03,55559,9198,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3958.39,"{""seasonal"": ""10%""}",46968,1,Europe +2024-10-13,55560,9591,"[""Keyboard""]",3448.84,{},121989,1,Asia +2023-03-09,55561,2290,"[""Headphones"", ""Charger""]",692.33,{},133808,1,Europe +2023-10-11,55562,5776,"[""Monitor"", ""Laptop""]",2411.2,{},213441,0,Africa +2024-01-09,55563,5734,"[""Tablet"", ""Headphones"", ""Laptop""]",1601.74,"{"""": ""12%""}",193220,0,Europe +2024-08-09,55564,985,"[""Monitor""]",3844.45,"{""seasonal"": ""11%""}",140124,0,North America +2024-10-17,55565,2406,"[""Charger""]",4193.18,"{""seasonal"": ""24%""}",208945,1,South America +2023-03-30,55566,8976,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4503.74,"{""seasonal"": ""21%""}",157729,1,Africa +2023-08-22,55567,8088,"[""Charger"", ""Tablet""]",1486.91,{},187661,1,South America +2023-05-27,55568,4618,"[""Headphones""]",4291.47,"{""loyalty"": ""12%""}",148592,1,Asia +2023-02-16,55569,1532,"[""Keyboard""]",4173.9,{},209957,0,Africa +2023-08-13,55570,4415,"[""Keyboard""]",2387.3,{},53528,1,Europe +2024-04-14,55571,8963,"[""Keyboard""]",2379.36,"{"""": ""26%""}",34894,1,South America +2024-09-30,55572,4514,"[""Charger""]",3192.1,"{""promo"": ""30%""}",190264,0,Africa +2024-01-31,55573,4746,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2659.11,{},280902,0,North America +2024-06-05,55574,8716,"[""Tablet"", ""Laptop"", ""Charger""]",1515.55,"{""promo"": ""20%""}",196336,1,Africa +2023-03-09,55575,1597,"[""Keyboard"", ""Charger""]",1838.49,{},10517,1,Asia +2023-06-10,55576,1993,"[""Wireless Mouse""]",2442.24,"{""promo"": ""23%""}",247475,1,Africa +2024-01-04,55577,9835,"[""Phone""]",1087.36,{},100515,0,North America +2024-08-20,55578,8668,"[""Monitor"", ""Headphones"", ""Tablet""]",3576.98,{},139946,0,South America +2024-08-04,55579,664,"[""Charger"", ""Keyboard""]",3971.28,"{"""": ""11%""}",58557,0,Europe +2023-07-08,55580,4330,"[""Monitor""]",1215.27,"{""loyalty"": ""29%""}",218314,0,South America +2024-11-03,55581,6756,"[""Headphones"", ""Phone""]",2566.24,"{"""": ""20%""}",158098,1,Europe +2024-08-23,55582,2378,"[""Keyboard""]",1599.28,"{"""": ""14%""}",295399,0,Europe +2024-07-18,55583,8230,"[""Monitor"", ""Tablet"", ""Phone""]",3477.16,{},6090,0,North America +2023-05-29,55584,3548,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4156.93,{},121178,1,South America +2024-03-28,55585,383,"[""Tablet"", ""Keyboard""]",2298.63,{},177918,1,South America +2024-02-21,55586,8471,"[""Tablet"", ""Charger""]",4518.27,{},298606,1,Asia +2024-12-25,55587,4886,"[""Monitor""]",4370.29,{},165876,0,Europe +2024-08-09,55588,3514,"[""Keyboard"", ""Charger""]",1787.66,"{"""": ""9%""}",95496,0,North America +2024-04-13,55589,6667,"[""Phone"", ""Headphones""]",1410.8,{},196301,1,Asia +2024-03-25,55590,3053,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4966.25,"{"""": ""20%""}",264795,1,Africa +2023-10-06,55591,6900,"[""Headphones"", ""Tablet"", ""Laptop""]",4254.99,"{""seasonal"": ""12%""}",61006,1,Asia +2023-04-13,55592,4920,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3556.64,"{""loyalty"": ""27%""}",8242,0,North America +2023-12-26,55593,9597,"[""Phone"", ""Charger"", ""Tablet""]",3390.3,{},192068,0,Asia +2023-08-16,55594,4450,"[""Keyboard"", ""Charger"", ""Monitor""]",1759.11,"{""loyalty"": ""18%""}",99781,1,Africa +2024-12-05,55595,3699,"[""Phone"", ""Charger"", ""Monitor""]",1884.96,{},60245,0,Europe +2024-06-16,55596,3357,"[""Wireless Mouse"", ""Tablet""]",1881.04,"{"""": ""25%""}",88693,1,Africa +2024-11-11,55597,5531,"[""Laptop""]",3594.65,{},99015,1,Africa +2024-01-09,55598,4859,"[""Headphones""]",74.29,"{""promo"": ""30%""}",15018,0,Africa +2024-12-05,55599,13,"[""Laptop"", ""Phone""]",1183.91,"{""promo"": ""14%""}",206884,1,North America +2024-02-25,55600,6122,"[""Charger"", ""Laptop"", ""Tablet""]",3036.87,"{""seasonal"": ""29%""}",48681,1,Europe +2024-11-21,55601,649,"[""Keyboard""]",465.55,"{""promo"": ""7%""}",75939,0,North America +2023-09-10,55602,8760,"[""Keyboard"", ""Phone""]",2196.68,{},273095,1,North America +2023-06-09,55603,3030,"[""Phone""]",2528.28,"{"""": ""25%""}",246183,1,South America +2023-03-06,55604,1007,"[""Headphones"", ""Tablet"", ""Charger""]",545.91,"{""seasonal"": ""6%""}",112817,0,Asia +2024-02-04,55605,4791,"[""Monitor""]",3931.46,{},49554,1,Asia +2023-06-05,55606,6694,"[""Monitor"", ""Headphones"", ""Laptop""]",1866.97,"{""seasonal"": ""24%""}",285375,0,Africa +2023-03-01,55607,8817,"[""Phone""]",4321.42,{},59106,1,Africa +2023-11-14,55608,7351,"[""Keyboard"", ""Charger"", ""Tablet""]",3417.43,{},212329,0,Europe +2024-03-26,55609,1904,"[""Keyboard""]",4654.72,"{""promo"": ""18%""}",149319,0,North America +2023-06-11,55610,7522,"[""Phone"", ""Headphones"", ""Tablet""]",1279.03,"{""loyalty"": ""21%""}",218656,0,Europe +2024-09-21,55611,6969,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3876.35,"{""loyalty"": ""10%""}",239528,0,Asia +2023-07-12,55612,5146,"[""Tablet"", ""Keyboard""]",4644.77,{},106577,0,North America +2024-02-02,55613,723,"[""Laptop""]",2316.21,"{"""": ""6%""}",100989,0,South America +2023-07-17,55614,8618,"[""Wireless Mouse""]",1522.95,{},9443,0,Asia +2023-08-11,55615,4638,"[""Laptop"", ""Monitor"", ""Phone""]",727.95,"{""seasonal"": ""18%""}",250414,1,Europe +2023-02-24,55616,4845,"[""Wireless Mouse"", ""Phone""]",3413.95,{},149023,1,South America +2024-03-11,55617,1623,"[""Phone"", ""Tablet""]",4437.31,"{""seasonal"": ""29%""}",114154,0,Europe +2024-05-02,55618,3611,"[""Laptop""]",1478.15,"{""loyalty"": ""30%""}",290208,1,Africa +2024-04-15,55619,126,"[""Phone"", ""Keyboard"", ""Headphones""]",3179.98,{},106045,1,Europe +2024-03-15,55620,229,"[""Keyboard"", ""Tablet"", ""Headphones""]",3607.67,"{"""": ""29%""}",144200,1,Europe +2024-03-22,55621,7472,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3412.0,"{""seasonal"": ""5%""}",8025,0,North America +2024-08-28,55622,2369,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3275.93,"{""promo"": ""21%""}",30881,0,Europe +2023-11-19,55623,9155,"[""Laptop""]",2680.59,"{""loyalty"": ""26%""}",251354,1,South America +2024-08-02,55624,7821,"[""Laptop"", ""Charger"", ""Tablet""]",4266.14,"{""promo"": ""27%""}",74796,0,Europe +2023-07-14,55625,4220,"[""Wireless Mouse"", ""Monitor""]",4383.33,{},145294,0,North America +2024-07-05,55626,1036,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3251.2,"{"""": ""9%""}",58115,1,North America +2024-02-03,55627,4954,"[""Headphones"", ""Keyboard"", ""Phone""]",1006.59,{},294377,1,South America +2024-02-24,55628,5560,"[""Monitor""]",685.15,{},152821,1,Africa +2024-08-04,55629,294,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3477.78,{},291073,1,North America +2023-02-01,55630,1730,"[""Wireless Mouse"", ""Laptop""]",742.07,{},204011,1,Asia +2023-01-30,55631,3430,"[""Laptop"", ""Charger""]",4898.57,{},109772,0,Europe +2023-09-06,55632,5231,"[""Headphones""]",1306.86,"{""promo"": ""5%""}",189678,1,Europe +2024-11-08,55633,524,"[""Laptop"", ""Monitor""]",3890.44,{},111250,0,Asia +2023-02-18,55634,8855,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4762.58,"{"""": ""21%""}",214759,1,Africa +2023-07-10,55635,7883,"[""Tablet""]",3177.51,"{""promo"": ""29%""}",143015,0,North America +2024-11-22,55636,3414,"[""Headphones""]",885.72,"{""loyalty"": ""11%""}",20964,1,North America +2023-10-16,55637,5850,"[""Phone"", ""Headphones""]",1257.19,{},55613,0,Europe +2024-09-17,55638,9589,"[""Wireless Mouse""]",411.02,"{""loyalty"": ""9%""}",182576,0,Asia +2024-06-26,55639,2706,"[""Keyboard""]",4339.31,"{""seasonal"": ""9%""}",70039,0,North America +2023-09-27,55640,8107,"[""Charger"", ""Phone""]",676.33,{},286634,0,North America +2024-04-16,55641,5123,"[""Wireless Mouse""]",4840.66,"{"""": ""27%""}",47486,0,Asia +2024-03-09,55642,3724,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1648.08,{},66325,0,North America +2024-01-04,55643,6084,"[""Laptop"", ""Headphones"", ""Charger""]",2258.26,"{""loyalty"": ""20%""}",181462,1,North America +2023-02-26,55644,5253,"[""Keyboard"", ""Charger"", ""Tablet""]",545.97,{},222609,0,Europe +2024-11-02,55645,7148,"[""Charger""]",1185.09,{},11700,0,Europe +2024-12-28,55646,6186,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4669.5,{},87654,1,South America +2024-06-09,55647,3006,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",709.12,{},133640,0,North America +2024-10-07,55648,2270,"[""Keyboard"", ""Wireless Mouse""]",969.86,"{""seasonal"": ""19%""}",264801,1,Africa +2023-09-12,55649,5162,"[""Keyboard""]",1390.96,"{"""": ""16%""}",299922,0,North America +2023-11-01,55650,6395,"[""Laptop""]",3948.0,"{""promo"": ""23%""}",128154,0,Europe +2024-08-04,55651,8871,"[""Headphones""]",95.69,"{""seasonal"": ""5%""}",125565,0,Africa +2023-11-16,55652,4663,"[""Phone"", ""Keyboard"", ""Tablet""]",3078.45,{},26041,0,North America +2024-01-05,55653,6599,"[""Wireless Mouse"", ""Laptop""]",2411.75,"{""seasonal"": ""6%""}",128737,0,North America +2023-08-17,55654,3772,"[""Tablet""]",2167.67,{},118783,1,South America +2023-09-20,55655,8644,"[""Tablet"", ""Wireless Mouse""]",3147.76,"{"""": ""22%""}",82559,1,North America +2023-10-03,55656,4687,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3607.27,{},92856,0,Africa +2024-09-18,55657,2570,"[""Headphones"", ""Phone"", ""Laptop""]",3520.15,{},122049,1,South America +2023-11-03,55658,2067,"[""Monitor""]",3668.35,"{""seasonal"": ""24%""}",81238,1,Africa +2023-03-04,55659,9772,"[""Tablet""]",4612.72,{},88761,1,Africa +2024-12-10,55660,5084,"[""Headphones"", ""Tablet""]",1256.42,"{""seasonal"": ""8%""}",275615,1,North America +2024-07-05,55661,5484,"[""Wireless Mouse""]",2438.23,{},132427,1,Asia +2024-08-16,55662,4385,"[""Keyboard"", ""Monitor"", ""Headphones""]",3078.95,"{""loyalty"": ""10%""}",23201,0,Europe +2024-01-10,55663,9158,"[""Keyboard"", ""Headphones""]",4602.59,"{""loyalty"": ""22%""}",31943,0,Asia +2024-06-02,55664,2214,"[""Headphones"", ""Charger"", ""Tablet""]",3094.2,{},159695,0,South America +2024-04-01,55665,3426,"[""Charger"", ""Laptop""]",3788.9,{},200771,0,Asia +2024-02-23,55666,1022,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2571.78,"{""promo"": ""21%""}",280823,1,North America +2023-01-12,55667,6379,"[""Monitor""]",2592.1,"{""loyalty"": ""6%""}",275130,0,Asia +2023-12-20,55668,6796,"[""Phone"", ""Headphones"", ""Tablet""]",2663.1,{},275127,1,Africa +2024-11-07,55669,3133,"[""Wireless Mouse""]",2693.94,"{""seasonal"": ""28%""}",249285,1,North America +2024-12-14,55670,770,"[""Tablet""]",1780.85,"{""seasonal"": ""23%""}",32105,1,North America +2023-06-02,55671,6015,"[""Keyboard""]",3810.88,"{"""": ""13%""}",148227,0,North America +2024-05-05,55672,1069,"[""Wireless Mouse"", ""Monitor""]",4719.46,"{""promo"": ""17%""}",15755,1,Asia +2023-01-05,55673,3725,"[""Keyboard"", ""Tablet""]",3172.8,"{""loyalty"": ""27%""}",226906,1,North America +2024-12-10,55674,9956,"[""Monitor"", ""Charger""]",3222.75,{},98501,0,Europe +2023-12-13,55675,3969,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2023.32,{},104332,0,South America +2024-01-03,55676,4635,"[""Wireless Mouse""]",4543.13,"{"""": ""14%""}",180441,0,Europe +2023-10-13,55677,107,"[""Tablet"", ""Charger""]",4010.1,{},194253,0,South America +2023-10-17,55678,3629,"[""Charger""]",4131.52,"{"""": ""7%""}",273705,0,Africa +2024-07-03,55679,3758,"[""Monitor""]",2631.81,"{""loyalty"": ""24%""}",130734,1,Europe +2023-11-05,55680,8615,"[""Phone""]",2084.32,{},131965,0,Africa +2023-12-22,55681,2845,"[""Laptop""]",1788.63,"{""loyalty"": ""25%""}",171073,0,Africa +2023-04-18,55682,7874,"[""Headphones"", ""Phone"", ""Monitor""]",3847.3,{},124455,0,Europe +2023-11-15,55683,8975,"[""Charger"", ""Phone"", ""Monitor""]",4180.18,{},259682,0,Africa +2023-05-30,55684,1184,"[""Laptop"", ""Keyboard""]",4685.77,{},74383,1,Africa +2023-12-24,55685,9120,"[""Phone"", ""Wireless Mouse""]",4423.53,"{""loyalty"": ""13%""}",210935,1,South America +2023-01-05,55686,3473,"[""Headphones"", ""Keyboard""]",1112.39,"{""promo"": ""20%""}",63092,1,South America +2024-09-13,55687,8957,"[""Tablet"", ""Keyboard"", ""Headphones""]",850.63,{},47932,0,North America +2024-11-05,55688,923,"[""Keyboard""]",119.95,"{"""": ""28%""}",295468,0,Europe +2023-06-24,55689,1619,"[""Keyboard"", ""Headphones"", ""Tablet""]",786.65,{},80956,1,North America +2024-03-05,55690,2544,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",391.88,{},91619,0,Africa +2023-04-05,55691,8034,"[""Laptop"", ""Headphones""]",4016.1,"{""loyalty"": ""20%""}",133680,0,Europe +2023-11-07,55692,3426,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4899.21,"{""loyalty"": ""25%""}",126236,0,North America +2023-10-31,55693,5411,"[""Keyboard"", ""Laptop""]",938.11,{},187710,0,Asia +2024-10-23,55694,7662,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3183.1,"{""promo"": ""25%""}",204959,1,North America +2023-11-24,55695,921,"[""Tablet""]",1286.4,"{""promo"": ""10%""}",293577,1,South America +2023-11-20,55696,6660,"[""Phone"", ""Charger"", ""Monitor""]",4621.82,"{""loyalty"": ""18%""}",137061,1,Asia +2024-02-18,55697,233,"[""Charger""]",3158.99,"{""loyalty"": ""21%""}",171113,1,Asia +2023-12-30,55698,863,"[""Wireless Mouse"", ""Charger""]",1887.07,{},93185,1,North America +2023-07-21,55699,5371,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3401.53,"{""promo"": ""30%""}",237552,0,South America +2023-06-18,55700,6298,"[""Phone"", ""Keyboard""]",3020.6,"{""promo"": ""16%""}",269004,0,South America +2023-03-20,55701,6602,"[""Phone"", ""Tablet"", ""Keyboard""]",611.5,"{"""": ""19%""}",214041,1,South America +2024-10-15,55702,5153,"[""Keyboard""]",1412.61,{},32481,1,South America +2024-10-30,55703,8464,"[""Phone"", ""Keyboard""]",2531.84,{},225634,0,North America +2023-05-26,55704,790,"[""Tablet"", ""Phone"", ""Laptop""]",3950.16,"{""seasonal"": ""10%""}",276865,0,North America +2024-05-30,55705,7509,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",316.35,{},227657,1,Asia +2023-01-12,55706,2131,"[""Phone"", ""Laptop"", ""Charger""]",1270.83,"{""promo"": ""11%""}",295456,0,North America +2023-06-02,55707,4123,"[""Headphones"", ""Charger"", ""Tablet""]",4473.69,{},265509,0,North America +2024-08-09,55708,9362,"[""Monitor"", ""Tablet"", ""Charger""]",2071.72,"{"""": ""28%""}",265972,0,Europe +2024-11-03,55709,7272,"[""Headphones"", ""Monitor""]",3091.98,{},101811,0,Africa +2023-05-27,55710,7912,"[""Charger""]",750.9,"{""loyalty"": ""23%""}",297346,0,Europe +2024-09-14,55711,568,"[""Keyboard"", ""Tablet""]",3608.35,{},224614,0,Africa +2023-08-25,55712,3624,"[""Monitor""]",1347.64,{},294700,0,Europe +2023-05-18,55713,3901,"[""Keyboard"", ""Wireless Mouse""]",4721.52,"{"""": ""16%""}",59708,1,South America +2024-08-31,55714,9719,"[""Charger""]",3566.46,"{""loyalty"": ""13%""}",249298,1,Europe +2024-01-17,55715,5891,"[""Tablet""]",2272.36,"{""seasonal"": ""25%""}",165249,1,Africa +2024-02-24,55716,6150,"[""Phone""]",4670.74,{},256465,1,North America +2023-08-17,55717,9925,"[""Monitor"", ""Phone""]",1504.3,"{""loyalty"": ""7%""}",161241,0,Asia +2023-07-31,55718,4967,"[""Wireless Mouse""]",3523.23,{},15660,1,Africa +2024-05-13,55719,3445,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3555.99,"{""seasonal"": ""24%""}",128996,1,Africa +2024-04-19,55720,6048,"[""Headphones"", ""Phone""]",2275.83,"{""seasonal"": ""28%""}",151567,1,North America +2023-05-01,55721,3538,"[""Charger"", ""Phone""]",1486.69,"{""seasonal"": ""15%""}",228079,0,South America +2024-04-06,55722,4684,"[""Keyboard"", ""Phone"", ""Charger""]",2801.41,"{""seasonal"": ""30%""}",184559,1,Africa +2023-10-02,55723,1757,"[""Phone"", ""Laptop""]",1420.08,"{""seasonal"": ""12%""}",167960,0,Asia +2024-05-01,55724,7792,"[""Monitor""]",1850.27,"{""promo"": ""5%""}",261942,0,North America +2023-01-21,55725,9503,"[""Keyboard""]",2775.33,{},224743,0,Asia +2024-12-18,55726,1013,"[""Headphones""]",2311.22,"{"""": ""14%""}",114308,1,South America +2023-10-14,55727,8668,"[""Laptop"", ""Headphones""]",3359.82,{},86125,1,North America +2024-11-02,55728,2084,"[""Laptop"", ""Monitor""]",1521.24,"{""loyalty"": ""9%""}",194592,0,Asia +2024-08-04,55729,2542,"[""Charger""]",257.91,{},92798,1,Africa +2023-06-13,55730,7826,"[""Charger""]",1769.24,"{""seasonal"": ""5%""}",255838,1,North America +2024-05-14,55731,4929,"[""Monitor"", ""Tablet"", ""Keyboard""]",4695.11,{},98896,0,South America +2024-01-31,55732,2905,"[""Charger"", ""Tablet""]",2929.94,{},12261,0,Europe +2023-05-14,55733,6334,"[""Wireless Mouse"", ""Headphones""]",3275.84,"{"""": ""29%""}",182424,1,Europe +2024-01-28,55734,4833,"[""Charger""]",1271.91,"{"""": ""28%""}",230007,1,South America +2024-11-11,55735,8982,"[""Charger"", ""Wireless Mouse""]",4653.17,{},48141,0,North America +2024-07-12,55736,1823,"[""Tablet""]",327.91,"{""seasonal"": ""24%""}",78333,1,Asia +2024-06-09,55737,1405,"[""Phone"", ""Monitor"", ""Keyboard""]",370.22,{},110298,0,South America +2024-10-15,55738,6354,"[""Headphones"", ""Laptop"", ""Monitor""]",1205.87,"{""promo"": ""29%""}",132235,1,South America +2023-02-13,55739,5554,"[""Charger"", ""Keyboard""]",1352.83,{},22704,0,Europe +2024-11-27,55740,2101,"[""Headphones"", ""Tablet"", ""Keyboard""]",4834.75,{},245371,1,South America +2024-01-18,55741,6255,"[""Monitor"", ""Headphones""]",2256.22,"{""promo"": ""11%""}",288668,1,North America +2024-02-29,55742,1623,"[""Charger""]",445.53,{},169993,0,North America +2023-12-28,55743,178,"[""Laptop""]",4639.41,"{""seasonal"": ""25%""}",287919,1,Europe +2023-09-11,55744,9005,"[""Charger""]",3010.52,{},81555,0,North America +2023-08-04,55745,2336,"[""Charger"", ""Tablet"", ""Keyboard""]",1173.75,{},265451,0,Africa +2023-11-01,55746,7268,"[""Laptop""]",2735.68,"{""seasonal"": ""7%""}",196129,1,South America +2024-12-09,55747,8240,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3146.43,"{""seasonal"": ""27%""}",191872,0,Africa +2024-10-07,55748,230,"[""Laptop"", ""Wireless Mouse""]",324.73,{},60675,0,South America +2024-03-05,55749,6961,"[""Laptop"", ""Headphones""]",3611.17,{},35818,1,Europe +2024-06-03,55750,2105,"[""Phone"", ""Wireless Mouse""]",1340.61,{},178275,1,Europe +2024-08-09,55751,4098,"[""Charger"", ""Laptop""]",2890.95,"{""promo"": ""12%""}",293087,0,Europe +2023-09-16,55752,6986,"[""Monitor"", ""Keyboard"", ""Phone""]",4111.75,"{""seasonal"": ""12%""}",284104,0,Asia +2024-03-16,55753,7666,"[""Monitor"", ""Keyboard"", ""Tablet""]",2357.77,"{""promo"": ""28%""}",52739,1,Africa +2024-02-15,55754,1408,"[""Keyboard"", ""Tablet""]",646.67,{},29095,1,North America +2024-10-01,55755,555,"[""Monitor""]",877.11,"{""promo"": ""29%""}",80073,1,Europe +2024-11-12,55756,4293,"[""Tablet"", ""Phone""]",1339.96,"{"""": ""29%""}",276104,0,Europe +2023-04-12,55757,5050,"[""Charger"", ""Monitor""]",3520.59,"{"""": ""28%""}",258864,0,Europe +2024-01-10,55758,5905,"[""Monitor"", ""Tablet""]",1542.84,"{""promo"": ""14%""}",247500,1,Europe +2024-02-05,55759,5218,"[""Tablet""]",4236.6,{},201134,0,Europe +2024-12-26,55760,2455,"[""Charger"", ""Headphones"", ""Keyboard""]",4831.2,"{""loyalty"": ""21%""}",259513,0,Africa +2024-06-16,55761,7618,"[""Tablet"", ""Laptop"", ""Charger""]",2244.22,"{"""": ""6%""}",173288,0,South America +2023-07-15,55762,3295,"[""Headphones"", ""Wireless Mouse""]",4961.03,{},74922,1,South America +2024-05-17,55763,5590,"[""Charger"", ""Monitor"", ""Laptop""]",4771.47,"{"""": ""19%""}",249871,1,Asia +2024-06-26,55764,955,"[""Monitor"", ""Tablet"", ""Headphones""]",3220.86,{},83173,0,Europe +2024-10-07,55765,6222,"[""Laptop""]",2245.48,"{""promo"": ""9%""}",257942,1,Asia +2024-08-08,55766,5245,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4425.99,"{""promo"": ""25%""}",275431,0,Africa +2024-10-05,55767,7716,"[""Tablet"", ""Charger""]",4193.83,{},212824,0,Europe +2023-10-12,55768,329,"[""Headphones"", ""Laptop""]",2783.45,{},143532,0,South America +2023-08-07,55769,2299,"[""Phone""]",2139.77,{},9603,1,Africa +2024-12-25,55770,1812,"[""Phone"", ""Monitor""]",2602.85,{},155069,0,South America +2023-06-15,55771,1708,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1611.51,"{""seasonal"": ""8%""}",83585,0,Africa +2024-06-02,55772,5154,"[""Wireless Mouse""]",1185.63,"{"""": ""24%""}",118022,0,Europe +2023-01-25,55773,2956,"[""Laptop""]",2927.15,{},7277,1,South America +2023-07-28,55774,8728,"[""Charger"", ""Tablet""]",4720.37,"{""seasonal"": ""26%""}",219155,1,Europe +2024-05-09,55775,7769,"[""Phone"", ""Monitor""]",1043.84,{},141951,0,North America +2023-12-08,55776,5131,"[""Charger""]",2250.18,{},99286,0,Asia +2024-04-23,55777,8594,"[""Charger"", ""Headphones""]",2530.11,{},71990,0,Africa +2024-06-27,55778,4404,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3608.01,"{""seasonal"": ""10%""}",123116,0,Africa +2023-02-15,55779,3707,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1681.21,"{""promo"": ""18%""}",135388,1,South America +2023-06-03,55780,6238,"[""Laptop"", ""Wireless Mouse""]",2706.43,{},55608,1,Asia +2024-01-30,55781,6040,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1004.46,{},200157,0,Asia +2023-06-01,55782,8503,"[""Wireless Mouse"", ""Monitor""]",475.73,{},146686,0,Africa +2024-06-14,55783,7612,"[""Charger"", ""Tablet"", ""Phone""]",4595.25,"{"""": ""16%""}",98522,1,South America +2024-10-03,55784,15,"[""Keyboard"", ""Laptop"", ""Headphones""]",527.34,{},275582,0,Europe +2023-06-15,55785,1215,"[""Headphones"", ""Laptop""]",1084.56,"{"""": ""27%""}",290662,0,North America +2023-11-17,55786,7667,"[""Wireless Mouse"", ""Tablet""]",2712.89,{},34372,1,Asia +2024-06-15,55787,3062,"[""Phone"", ""Tablet""]",2587.29,"{"""": ""30%""}",56741,0,Africa +2024-05-30,55788,3887,"[""Laptop"", ""Tablet""]",3361.79,"{""loyalty"": ""12%""}",166233,0,Europe +2023-06-06,55789,4397,"[""Monitor"", ""Laptop""]",1710.83,{},100541,1,Europe +2024-08-01,55790,1000,"[""Phone"", ""Tablet""]",3409.8,"{""loyalty"": ""14%""}",1331,1,South America +2024-12-26,55791,2574,"[""Laptop"", ""Tablet""]",2458.8,{},138008,0,Europe +2024-03-25,55792,7536,"[""Headphones"", ""Laptop"", ""Tablet""]",4498.23,{},58152,1,Africa +2024-07-11,55793,1548,"[""Phone""]",4827.84,{},218807,1,South America +2024-12-21,55794,5180,"[""Headphones"", ""Tablet""]",2167.1,"{"""": ""8%""}",168042,1,Europe +2024-06-14,55795,9223,"[""Monitor"", ""Phone""]",3083.17,{},260643,0,South America +2023-07-06,55796,527,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",995.35,"{""promo"": ""13%""}",291496,0,Africa +2023-12-21,55797,7389,"[""Charger"", ""Monitor""]",894.25,"{"""": ""22%""}",278516,1,Asia +2023-02-05,55798,8098,"[""Phone"", ""Keyboard""]",801.01,"{""loyalty"": ""16%""}",5650,0,Asia +2024-04-30,55799,1868,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1522.11,{},9173,0,Asia +2023-01-16,55800,2852,"[""Phone"", ""Charger""]",4462.52,"{""promo"": ""15%""}",224948,1,South America +2024-06-24,55801,4246,"[""Tablet"", ""Charger"", ""Keyboard""]",1144.71,"{"""": ""15%""}",111809,1,South America +2024-04-04,55802,3332,"[""Headphones"", ""Keyboard"", ""Phone""]",4278.06,{},50084,0,South America +2024-10-14,55803,5949,"[""Keyboard"", ""Wireless Mouse""]",4183.5,"{""seasonal"": ""6%""}",11567,0,North America +2024-11-01,55804,6582,"[""Phone"", ""Keyboard""]",3282.54,"{""loyalty"": ""17%""}",143911,0,South America +2023-04-18,55805,3588,"[""Charger"", ""Tablet"", ""Monitor""]",2669.41,"{"""": ""6%""}",185080,1,South America +2023-06-05,55806,8296,"[""Headphones"", ""Wireless Mouse""]",1249.59,"{"""": ""9%""}",241965,0,Asia +2023-12-26,55807,525,"[""Tablet"", ""Headphones""]",1330.9,{},132736,1,Africa +2023-03-06,55808,3261,"[""Headphones""]",4126.38,"{""promo"": ""11%""}",84102,1,Africa +2023-05-10,55809,6804,"[""Phone"", ""Keyboard"", ""Headphones""]",3296.59,{},96780,1,Europe +2023-06-29,55810,4995,"[""Tablet"", ""Monitor""]",3882.76,"{"""": ""12%""}",76503,1,Europe +2023-05-04,55811,8163,"[""Wireless Mouse""]",3622.59,{},22317,1,Europe +2024-10-12,55812,7766,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4546.63,{},290013,1,Europe +2023-04-25,55813,2485,"[""Phone"", ""Tablet""]",3967.25,"{"""": ""16%""}",39508,0,South America +2024-05-26,55814,4037,"[""Phone"", ""Wireless Mouse""]",2698.77,{},175317,0,North America +2023-01-28,55815,5822,"[""Charger"", ""Headphones"", ""Monitor""]",4305.15,{},18232,1,Europe +2024-08-21,55816,8790,"[""Headphones""]",2065.31,{},3422,0,Asia +2024-03-24,55817,8657,"[""Keyboard""]",3740.71,{},217688,0,Asia +2024-06-21,55818,6784,"[""Tablet"", ""Monitor""]",130.84,"{"""": ""20%""}",131481,0,Europe +2024-09-14,55819,8090,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1372.74,"{""loyalty"": ""8%""}",124755,0,Africa +2023-12-07,55820,1493,"[""Charger"", ""Keyboard""]",1573.1,{},166709,0,Europe +2024-05-14,55821,5282,"[""Monitor""]",383.57,"{""loyalty"": ""29%""}",75246,0,Africa +2023-10-13,55822,4687,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2201.75,"{""seasonal"": ""29%""}",67164,0,North America +2024-09-28,55823,9156,"[""Phone"", ""Wireless Mouse""]",2292.45,"{"""": ""6%""}",274691,1,South America +2023-01-30,55824,4787,"[""Monitor""]",1483.43,"{""loyalty"": ""23%""}",113413,0,North America +2024-12-22,55825,2280,"[""Monitor"", ""Tablet"", ""Phone""]",2430.17,{},184209,0,Europe +2024-07-20,55826,5612,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2321.49,{},289860,1,Asia +2023-11-24,55827,2523,"[""Charger""]",1013.34,{},286103,1,South America +2023-03-29,55828,6444,"[""Keyboard"", ""Monitor""]",1369.39,"{""loyalty"": ""24%""}",47314,1,South America +2024-02-11,55829,5452,"[""Wireless Mouse""]",3379.83,"{""seasonal"": ""28%""}",192906,1,South America +2023-01-01,55830,1372,"[""Headphones"", ""Tablet"", ""Laptop""]",1280.91,"{"""": ""5%""}",253196,1,Europe +2024-07-01,55831,2355,"[""Keyboard"", ""Laptop"", ""Phone""]",4483.74,{},202062,1,Asia +2024-12-16,55832,963,"[""Laptop""]",347.92,{},169962,1,Africa +2024-08-08,55833,3110,"[""Charger"", ""Laptop""]",1079.78,{},36094,0,Africa +2024-12-27,55834,1007,"[""Keyboard""]",2659.9,{},4211,0,North America +2023-06-29,55835,8259,"[""Tablet"", ""Headphones""]",822.19,"{""promo"": ""18%""}",195373,0,South America +2023-05-06,55836,7767,"[""Monitor""]",1943.02,"{"""": ""12%""}",153348,0,Asia +2023-09-19,55837,6989,"[""Monitor"", ""Charger""]",1971.8,"{"""": ""25%""}",87320,1,North America +2023-09-29,55838,2977,"[""Headphones""]",1294.95,"{"""": ""24%""}",286951,1,Africa +2023-01-06,55839,5840,"[""Keyboard"", ""Laptop"", ""Monitor""]",605.12,"{""loyalty"": ""20%""}",234315,0,Asia +2023-09-13,55840,9123,"[""Wireless Mouse""]",3559.95,{},54896,1,South America +2023-01-05,55841,9513,"[""Wireless Mouse"", ""Laptop""]",536.1,{},284379,1,Africa +2024-02-07,55842,231,"[""Monitor"", ""Phone""]",1037.62,{},44683,1,North America +2024-03-22,55843,4422,"[""Charger"", ""Tablet"", ""Monitor""]",4066.75,"{""loyalty"": ""30%""}",263418,1,North America +2024-11-21,55844,5639,"[""Wireless Mouse"", ""Headphones""]",825.33,{},184643,1,South America +2024-12-17,55845,8235,"[""Laptop"", ""Monitor"", ""Headphones""]",1798.26,"{""promo"": ""20%""}",181566,0,South America +2024-11-23,55846,1900,"[""Monitor"", ""Wireless Mouse""]",3409.74,{},29013,0,South America +2024-06-12,55847,4185,"[""Tablet"", ""Charger""]",118.71,{},222907,0,Europe +2024-06-04,55848,5027,"[""Headphones""]",2203.92,{},83955,1,South America +2023-05-14,55849,9283,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1572.04,"{""seasonal"": ""17%""}",184229,0,Africa +2024-09-17,55850,3053,"[""Phone"", ""Laptop""]",865.53,{},230293,0,South America +2024-06-16,55851,4705,"[""Phone"", ""Wireless Mouse""]",601.14,{},288806,0,South America +2023-01-19,55852,5790,"[""Laptop"", ""Tablet""]",2477.1,"{"""": ""29%""}",73473,0,Africa +2024-06-14,55853,9824,"[""Phone"", ""Headphones"", ""Monitor""]",3911.26,{},61606,0,North America +2023-08-04,55854,4780,"[""Laptop"", ""Keyboard""]",4915.5,{},117812,0,North America +2024-11-22,55855,2697,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4820.61,"{""promo"": ""20%""}",13258,0,Africa +2023-08-28,55856,649,"[""Keyboard"", ""Tablet""]",2370.53,"{"""": ""10%""}",134531,1,Asia +2024-08-10,55857,5190,"[""Monitor""]",1159.4,{},261191,0,Asia +2023-08-04,55858,356,"[""Charger"", ""Monitor"", ""Tablet""]",3916.65,{},14370,1,North America +2024-04-16,55859,2528,"[""Laptop"", ""Tablet""]",628.65,{},225760,0,North America +2024-06-07,55860,1974,"[""Keyboard"", ""Tablet""]",748.08,"{""loyalty"": ""9%""}",162593,1,Europe +2023-05-23,55861,1668,"[""Phone""]",4571.33,{},170850,1,Africa +2023-06-11,55862,2107,"[""Phone""]",2614.58,{},170240,1,Africa +2023-06-26,55863,2691,"[""Laptop"", ""Keyboard""]",4657.76,"{"""": ""16%""}",267762,0,Asia +2023-01-23,55864,8914,"[""Monitor""]",2759.06,"{""seasonal"": ""12%""}",48577,0,Europe +2024-11-28,55865,2684,"[""Phone""]",4287.86,"{""loyalty"": ""30%""}",18380,1,North America +2023-05-19,55866,9549,"[""Keyboard""]",722.21,"{"""": ""18%""}",54057,1,Africa +2024-06-12,55867,7832,"[""Keyboard"", ""Laptop"", ""Headphones""]",1039.85,"{""promo"": ""15%""}",285153,0,Europe +2023-12-19,55868,4650,"[""Keyboard"", ""Tablet""]",3124.5,"{""loyalty"": ""7%""}",203479,1,Asia +2023-01-07,55869,9561,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2086.93,"{""seasonal"": ""12%""}",66555,1,Asia +2024-01-21,55870,9673,"[""Monitor"", ""Laptop""]",4336.65,{},264360,1,Europe +2024-09-02,55871,6905,"[""Phone"", ""Charger""]",4314.15,{},87150,1,Asia +2024-11-01,55872,4421,"[""Keyboard"", ""Laptop"", ""Tablet""]",3590.76,"{""promo"": ""19%""}",270967,1,Europe +2024-08-24,55873,1486,"[""Tablet""]",3384.92,{},216260,1,Europe +2023-09-29,55874,2293,"[""Phone""]",4982.2,"{""loyalty"": ""22%""}",103017,1,Asia +2023-12-24,55875,1347,"[""Laptop"", ""Phone""]",4472.1,"{""loyalty"": ""20%""}",215966,1,South America +2024-02-27,55876,8623,"[""Headphones"", ""Monitor""]",3608.67,"{""promo"": ""30%""}",8466,1,Asia +2024-07-13,55877,2534,"[""Keyboard""]",793.09,{},1123,0,North America +2023-06-03,55878,421,"[""Laptop"", ""Keyboard""]",3119.09,{},242257,0,South America +2024-07-09,55879,9812,"[""Charger""]",4114.83,{},9119,0,North America +2023-07-27,55880,1669,"[""Keyboard"", ""Charger""]",3985.4,"{"""": ""8%""}",187180,0,South America +2023-01-23,55881,5167,"[""Laptop""]",3479.65,"{""seasonal"": ""24%""}",120272,0,Africa +2023-07-29,55882,7850,"[""Tablet""]",3792.83,"{""loyalty"": ""13%""}",229542,0,Asia +2024-07-22,55883,3781,"[""Headphones"", ""Monitor""]",665.93,{},50876,1,Europe +2023-06-01,55884,2131,"[""Charger"", ""Headphones""]",4899.69,{},181627,0,Europe +2023-07-30,55885,4439,"[""Phone""]",3437.29,{},142832,0,Africa +2023-06-01,55886,7204,"[""Monitor""]",2247.57,{},254939,0,Europe +2023-02-07,55887,8216,"[""Monitor""]",2121.28,{},162656,1,Africa +2023-06-26,55888,3320,"[""Keyboard"", ""Charger"", ""Headphones""]",4822.96,{},295763,1,Europe +2024-01-01,55889,6095,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1724.06,"{"""": ""22%""}",206611,0,Africa +2024-02-19,55890,7615,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",767.91,"{""seasonal"": ""5%""}",77852,0,Asia +2024-12-12,55891,6488,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4663.19,"{""seasonal"": ""6%""}",146129,0,Asia +2023-04-12,55892,8537,"[""Headphones"", ""Monitor""]",4343.82,"{"""": ""5%""}",174608,0,South America +2023-10-12,55893,5466,"[""Wireless Mouse""]",4947.07,"{""promo"": ""12%""}",169974,1,North America +2024-09-19,55894,4081,"[""Laptop"", ""Wireless Mouse""]",4508.29,{},40157,0,South America +2023-10-07,55895,9956,"[""Charger""]",441.9,"{"""": ""6%""}",150042,0,Africa +2023-12-04,55896,4096,"[""Keyboard"", ""Laptop""]",1849.75,"{""promo"": ""27%""}",59073,1,Africa +2023-08-18,55897,3727,"[""Wireless Mouse"", ""Charger""]",2261.07,{},213340,0,Europe +2024-01-22,55898,6478,"[""Laptop""]",2341.35,{},266724,1,North America +2024-08-11,55899,8511,"[""Laptop"", ""Tablet"", ""Headphones""]",2689.69,{},279436,1,Europe +2024-12-10,55900,1570,"[""Laptop"", ""Monitor""]",3672.4,{},135482,0,Asia +2024-07-02,55901,5468,"[""Wireless Mouse""]",4841.94,"{"""": ""26%""}",18707,0,South America +2024-07-25,55902,4143,"[""Laptop""]",1024.7,{},257306,0,Asia +2023-01-12,55903,6354,"[""Laptop"", ""Keyboard""]",4336.27,{},233034,0,Asia +2023-12-04,55904,7480,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2657.64,"{"""": ""26%""}",233889,1,Europe +2023-09-06,55905,8352,"[""Phone"", ""Wireless Mouse""]",3020.69,"{""loyalty"": ""25%""}",103241,1,Asia +2023-10-19,55906,3588,"[""Laptop""]",1750.41,"{""seasonal"": ""8%""}",190057,1,Europe +2024-01-24,55907,6195,"[""Keyboard""]",1448.14,{},78083,0,North America +2024-04-14,55908,4654,"[""Keyboard"", ""Headphones""]",2881.27,"{"""": ""23%""}",159616,0,Asia +2024-12-01,55909,7383,"[""Keyboard"", ""Monitor""]",3400.69,{},246619,1,South America +2023-10-12,55910,4797,"[""Keyboard""]",4973.1,{},167062,1,Europe +2023-04-05,55911,5919,"[""Keyboard"", ""Wireless Mouse""]",1239.68,{},45021,0,Africa +2023-02-02,55912,2415,"[""Phone""]",4565.6,"{""seasonal"": ""13%""}",231049,0,Asia +2023-12-02,55913,8280,"[""Laptop""]",1475.32,{},60877,0,Asia +2024-04-28,55914,6868,"[""Monitor"", ""Tablet"", ""Charger""]",3624.12,{},270519,1,Africa +2023-05-02,55915,8676,"[""Laptop"", ""Keyboard"", ""Headphones""]",2450.26,"{""seasonal"": ""20%""}",258634,0,North America +2024-11-28,55916,4456,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3799.24,"{"""": ""15%""}",49524,1,North America +2024-11-25,55917,8441,"[""Headphones"", ""Phone"", ""Tablet""]",3752.97,"{""promo"": ""30%""}",50958,1,North America +2024-05-09,55918,7041,"[""Keyboard""]",837.9,"{"""": ""28%""}",126230,1,Europe +2024-10-16,55919,9371,"[""Laptop"", ""Phone""]",4624.48,"{""promo"": ""14%""}",278971,0,Asia +2024-08-19,55920,1309,"[""Keyboard"", ""Laptop""]",3675.29,"{""promo"": ""12%""}",11872,1,Africa +2024-12-05,55921,6921,"[""Monitor"", ""Tablet""]",3215.72,{},161329,0,Asia +2024-09-24,55922,1319,"[""Monitor""]",1523.9,{},251032,0,South America +2023-12-04,55923,2273,"[""Headphones""]",3666.37,"{""loyalty"": ""20%""}",137527,1,North America +2023-11-20,55924,4072,"[""Phone"", ""Keyboard""]",4827.99,"{"""": ""23%""}",102583,1,Europe +2024-04-06,55925,8717,"[""Phone""]",1531.44,{},272092,1,North America +2024-09-10,55926,844,"[""Charger""]",691.12,{},179747,1,Europe +2024-09-20,55927,9734,"[""Tablet"", ""Laptop""]",3518.64,"{""seasonal"": ""10%""}",288663,0,Europe +2024-08-10,55928,7591,"[""Laptop""]",1594.26,{},6082,0,Africa +2023-04-12,55929,3664,"[""Laptop"", ""Phone"", ""Keyboard""]",2018.07,{},65290,1,Africa +2024-10-26,55930,4693,"[""Keyboard""]",4093.86,"{""seasonal"": ""20%""}",110588,1,Asia +2023-08-20,55931,9788,"[""Monitor"", ""Headphones"", ""Keyboard""]",2939.81,{},21549,0,Europe +2023-05-03,55932,3848,"[""Wireless Mouse""]",548.29,"{""promo"": ""22%""}",26213,0,Asia +2023-11-03,55933,37,"[""Tablet"", ""Laptop"", ""Phone""]",3436.49,{},27793,0,Europe +2023-09-03,55934,2225,"[""Keyboard"", ""Laptop""]",4974.69,{},29991,1,North America +2023-10-22,55935,7841,"[""Keyboard"", ""Tablet"", ""Phone""]",3745.92,{},89865,0,North America +2023-07-22,55936,366,"[""Charger""]",4181.26,{},182075,1,North America +2024-12-01,55937,7403,"[""Laptop"", ""Monitor"", ""Keyboard""]",1241.76,{},282913,0,South America +2024-05-09,55938,1578,"[""Laptop"", ""Headphones"", ""Monitor""]",2723.47,"{""promo"": ""13%""}",255828,0,North America +2024-06-10,55939,3360,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1320.7,{},18345,1,South America +2023-01-03,55940,119,"[""Headphones"", ""Monitor"", ""Charger""]",1709.51,{},146290,1,Europe +2023-10-27,55941,834,"[""Charger"", ""Wireless Mouse""]",2371.01,{},296753,0,Africa +2024-02-26,55942,7103,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1651.01,{},149035,1,Europe +2024-06-29,55943,2726,"[""Phone""]",439.97,"{""seasonal"": ""21%""}",158226,1,Africa +2024-12-13,55944,7117,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2782.34,"{"""": ""24%""}",153608,1,Europe +2023-08-10,55945,3367,"[""Keyboard""]",3621.66,{},10484,0,Europe +2024-03-07,55946,9837,"[""Monitor""]",4650.11,"{""seasonal"": ""18%""}",57390,0,North America +2024-04-01,55947,2174,"[""Phone"", ""Laptop""]",497.15,{},245759,0,Africa +2024-06-29,55948,7358,"[""Monitor"", ""Phone""]",4774.75,{},268660,1,Asia +2024-10-01,55949,3596,"[""Wireless Mouse"", ""Keyboard""]",3487.57,{},14329,1,North America +2023-03-25,55950,6418,"[""Charger"", ""Laptop""]",3650.46,"{"""": ""26%""}",51150,1,Europe +2023-09-29,55951,2503,"[""Phone"", ""Charger""]",4506.75,"{""seasonal"": ""9%""}",118617,0,South America +2024-03-05,55952,6578,"[""Phone"", ""Charger"", ""Headphones""]",4119.17,"{""promo"": ""12%""}",15560,0,Asia +2024-02-08,55953,7078,"[""Charger"", ""Wireless Mouse""]",3721.0,{},260549,0,South America +2023-06-23,55954,9971,"[""Tablet""]",3372.89,"{""seasonal"": ""12%""}",235504,0,Europe +2023-01-13,55955,6395,"[""Phone"", ""Monitor"", ""Keyboard""]",3547.9,"{"""": ""7%""}",76673,0,South America +2023-11-09,55956,2792,"[""Tablet"", ""Monitor"", ""Headphones""]",332.11,"{""promo"": ""30%""}",36722,1,Africa +2024-08-15,55957,5520,"[""Headphones"", ""Monitor""]",4895.34,{},119220,0,Europe +2023-04-13,55958,2642,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",875.26,{},61770,0,South America +2023-11-22,55959,3638,"[""Laptop"", ""Charger"", ""Monitor""]",1253.33,"{""seasonal"": ""28%""}",159270,0,Asia +2023-10-17,55960,8300,"[""Headphones"", ""Monitor"", ""Tablet""]",2172.7,{},195759,1,Asia +2024-03-09,55961,4869,"[""Phone""]",4877.87,"{""seasonal"": ""7%""}",213688,0,Asia +2023-05-04,55962,6104,"[""Keyboard"", ""Phone"", ""Headphones""]",2447.58,{},115385,1,Africa +2024-12-14,55963,1483,"[""Laptop"", ""Headphones""]",4947.13,"{""seasonal"": ""5%""}",235044,1,Africa +2024-03-11,55964,1751,"[""Phone"", ""Charger""]",688.33,{},80001,1,North America +2024-10-21,55965,2283,"[""Keyboard"", ""Charger"", ""Monitor""]",422.53,"{""loyalty"": ""24%""}",67056,1,Africa +2023-06-12,55966,1116,"[""Monitor"", ""Charger"", ""Laptop""]",4841.55,{},242966,1,Asia +2023-04-30,55967,4369,"[""Headphones""]",2581.85,"{""seasonal"": ""29%""}",290467,1,North America +2024-03-24,55968,35,"[""Tablet"", ""Charger""]",1406.22,{},149474,1,South America +2024-05-15,55969,1233,"[""Keyboard"", ""Phone"", ""Charger""]",1739.5,"{""loyalty"": ""8%""}",22112,0,North America +2023-03-10,55970,3662,"[""Phone"", ""Laptop""]",871.73,{},40061,1,Africa +2024-01-25,55971,3396,"[""Tablet"", ""Wireless Mouse""]",2600.61,{},46819,0,Asia +2024-12-20,55972,1081,"[""Charger"", ""Tablet""]",1409.26,{},114552,1,North America +2023-07-14,55973,8658,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",456.16,{},101301,1,Africa +2023-12-16,55974,3269,"[""Wireless Mouse""]",188.35,{},187248,1,Africa +2024-12-15,55975,5246,"[""Charger"", ""Wireless Mouse""]",3441.78,"{""loyalty"": ""26%""}",187380,1,North America +2024-10-12,55976,5360,"[""Laptop"", ""Keyboard""]",4846.3,{},130114,0,Asia +2023-08-16,55977,8299,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3942.59,{},123456,1,Africa +2023-06-28,55978,3560,"[""Laptop"", ""Monitor"", ""Headphones""]",4677.28,{},290936,0,Africa +2023-01-30,55979,7151,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",376.05,{},196936,1,Africa +2024-10-17,55980,2374,"[""Charger"", ""Keyboard""]",3150.86,"{"""": ""17%""}",8783,0,South America +2024-07-25,55981,7850,"[""Keyboard"", ""Laptop""]",439.7,"{""loyalty"": ""16%""}",26177,0,Africa +2023-05-28,55982,995,"[""Tablet"", ""Monitor""]",4928.34,{},277821,1,Africa +2024-07-08,55983,44,"[""Phone"", ""Laptop""]",4581.04,{},266041,1,Europe +2024-08-03,55984,7539,"[""Charger""]",1474.12,"{""loyalty"": ""13%""}",13978,0,North America +2024-05-31,55985,5225,"[""Monitor""]",3211.08,"{""promo"": ""7%""}",71360,1,North America +2023-11-14,55986,2731,"[""Tablet"", ""Laptop""]",3619.34,"{""seasonal"": ""20%""}",91850,1,South America +2023-06-18,55987,4335,"[""Phone"", ""Monitor""]",4302.94,{},121755,1,South America +2023-02-07,55988,3435,"[""Headphones""]",3680.69,"{"""": ""10%""}",104374,1,Asia +2024-06-24,55989,7129,"[""Phone"", ""Headphones"", ""Charger""]",1863.84,{},156621,1,Africa +2023-11-13,55990,5577,"[""Charger""]",3958.56,{},250282,0,South America +2023-06-05,55991,4436,"[""Headphones"", ""Charger""]",2616.0,{},225638,1,North America +2024-11-12,55992,924,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3358.89,"{""promo"": ""7%""}",80102,1,Asia +2024-07-12,55993,9311,"[""Headphones""]",1032.75,{},52015,0,Africa +2024-01-29,55994,9141,"[""Monitor"", ""Headphones""]",805.36,{},58346,1,South America +2024-11-22,55995,5242,"[""Phone""]",569.72,"{"""": ""26%""}",148222,0,North America +2023-03-30,55996,1106,"[""Charger"", ""Monitor""]",2547.79,{},129669,0,Asia +2023-06-20,55997,4757,"[""Monitor""]",3897.02,{},245278,1,South America +2024-07-16,55998,5981,"[""Keyboard"", ""Laptop"", ""Phone""]",2787.29,{},119628,0,North America +2023-03-19,55999,6989,"[""Phone""]",1042.59,{},52771,1,Africa +2023-02-10,56000,6382,"[""Phone""]",878.86,"{"""": ""6%""}",63332,1,Europe +2024-06-23,56001,3588,"[""Headphones"", ""Wireless Mouse""]",2272.2,"{""seasonal"": ""16%""}",222619,0,Asia +2024-01-30,56002,7244,"[""Tablet""]",192.16,{},281864,0,Europe +2023-07-06,56003,7153,"[""Wireless Mouse"", ""Phone""]",2297.44,"{""loyalty"": ""25%""}",111492,0,Asia +2024-06-09,56004,3371,"[""Phone""]",1252.68,"{""seasonal"": ""13%""}",218018,1,Africa +2024-10-18,56005,2470,"[""Phone""]",102.21,"{""promo"": ""29%""}",27868,0,Africa +2023-11-17,56006,877,"[""Wireless Mouse"", ""Charger""]",2332.38,"{""loyalty"": ""15%""}",67354,1,Europe +2024-01-07,56007,5549,"[""Tablet"", ""Keyboard"", ""Monitor""]",614.37,"{""loyalty"": ""27%""}",183632,0,South America +2024-10-08,56008,7227,"[""Laptop""]",4678.06,{},49935,0,South America +2024-04-16,56009,3431,"[""Keyboard""]",4112.73,"{""seasonal"": ""17%""}",233911,1,Asia +2023-08-25,56010,8612,"[""Charger"", ""Wireless Mouse""]",4864.77,"{""seasonal"": ""30%""}",209738,0,North America +2024-11-09,56011,8962,"[""Charger"", ""Tablet"", ""Headphones""]",932.24,"{""loyalty"": ""7%""}",120286,1,North America +2024-03-20,56012,270,"[""Tablet"", ""Headphones""]",852.81,"{""loyalty"": ""10%""}",243891,0,Asia +2024-07-22,56013,9194,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3132.54,{},179072,0,Asia +2023-10-30,56014,4625,"[""Phone""]",3889.3,"{"""": ""20%""}",112717,1,North America +2024-05-03,56015,8252,"[""Wireless Mouse"", ""Keyboard""]",837.83,"{""seasonal"": ""23%""}",2030,0,Europe +2023-03-06,56016,1145,"[""Phone"", ""Headphones""]",4379.25,{},179958,0,Asia +2024-03-15,56017,9080,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",604.86,"{""loyalty"": ""20%""}",25865,0,South America +2023-08-10,56018,7485,"[""Wireless Mouse"", ""Phone""]",3887.56,{},166810,1,Asia +2024-05-02,56019,5251,"[""Tablet""]",4867.73,{},31055,0,Africa +2023-11-14,56020,7188,"[""Headphones"", ""Monitor"", ""Keyboard""]",1123.08,{},257351,0,South America +2023-02-25,56021,2980,"[""Phone""]",2088.07,"{"""": ""18%""}",23172,1,South America +2023-03-07,56022,9992,"[""Tablet""]",2201.65,{},183520,1,North America +2024-12-01,56023,6578,"[""Wireless Mouse"", ""Charger""]",3332.71,"{"""": ""13%""}",227265,1,Asia +2024-09-03,56024,4894,"[""Wireless Mouse"", ""Phone""]",1172.69,{},264156,0,South America +2023-10-20,56025,4868,"[""Phone""]",4664.27,{},133692,1,North America +2023-06-20,56026,6819,"[""Monitor"", ""Charger""]",3018.26,"{""loyalty"": ""9%""}",250021,0,North America +2024-07-12,56027,6675,"[""Phone"", ""Wireless Mouse""]",4705.17,"{"""": ""23%""}",156385,0,South America +2024-12-07,56028,5758,"[""Phone""]",3400.44,{},170874,1,Africa +2024-02-10,56029,3328,"[""Tablet"", ""Headphones"", ""Laptop""]",492.3,{},14603,0,North America +2024-07-07,56030,1074,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1109.88,{},56494,0,Africa +2023-05-21,56031,9532,"[""Laptop"", ""Monitor""]",207.19,{},92432,0,South America +2024-09-10,56032,9517,"[""Charger"", ""Phone""]",3801.6,"{""promo"": ""14%""}",117164,1,Africa +2023-12-28,56033,1190,"[""Wireless Mouse"", ""Phone""]",2018.53,{},198270,0,South America +2024-08-04,56034,2321,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3238.36,{},195461,1,South America +2023-01-28,56035,6279,"[""Headphones""]",144.2,"{""seasonal"": ""27%""}",235551,0,North America +2023-11-15,56036,6207,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3428.58,"{""promo"": ""18%""}",202140,1,Asia +2024-09-14,56037,8087,"[""Keyboard"", ""Monitor"", ""Laptop""]",4134.14,"{""loyalty"": ""14%""}",88064,0,Africa +2023-05-30,56038,9938,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1881.95,{},71479,1,North America +2024-04-07,56039,2963,"[""Laptop""]",4417.25,"{"""": ""26%""}",279270,0,Europe +2024-08-28,56040,4660,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",860.95,{},255150,0,Europe +2023-05-17,56041,3336,"[""Charger"", ""Laptop""]",687.47,{},124901,1,Asia +2024-02-02,56042,8365,"[""Laptop"", ""Phone""]",2193.22,{},232292,0,Asia +2023-02-07,56043,418,"[""Charger""]",2583.77,{},172698,1,South America +2024-03-27,56044,913,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2435.61,"{""seasonal"": ""7%""}",254027,0,Africa +2023-12-30,56045,5098,"[""Laptop""]",2773.81,"{""seasonal"": ""17%""}",282813,1,North America +2023-12-12,56046,966,"[""Headphones""]",2866.81,"{""promo"": ""9%""}",282880,0,Asia +2024-11-13,56047,2394,"[""Keyboard""]",1495.1,"{""loyalty"": ""6%""}",19741,1,Africa +2023-04-27,56048,6065,"[""Charger""]",4324.72,"{""seasonal"": ""27%""}",4018,1,Europe +2024-11-21,56049,1177,"[""Tablet""]",2140.92,{},201638,0,Africa +2023-10-06,56050,5318,"[""Tablet"", ""Headphones""]",2312.75,{},269002,0,North America +2024-11-15,56051,6453,"[""Tablet"", ""Headphones"", ""Keyboard""]",3953.0,{},194920,0,North America +2024-02-21,56052,389,"[""Monitor"", ""Phone"", ""Keyboard""]",1157.1,"{"""": ""19%""}",207674,0,Africa +2023-06-09,56053,9637,"[""Tablet"", ""Phone""]",3080.75,"{""seasonal"": ""20%""}",104392,0,Africa +2023-01-04,56054,8656,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1445.24,"{"""": ""24%""}",293500,0,Europe +2024-08-04,56055,3174,"[""Monitor""]",3494.0,"{""seasonal"": ""29%""}",117685,1,Asia +2023-02-25,56056,8674,"[""Monitor"", ""Tablet"", ""Headphones""]",1767.52,{},119612,1,South America +2023-08-09,56057,5797,"[""Wireless Mouse"", ""Monitor""]",722.25,{},230790,0,North America +2023-06-07,56058,9509,"[""Monitor"", ""Tablet""]",657.08,"{""loyalty"": ""21%""}",16796,0,Europe +2023-10-30,56059,7555,"[""Monitor"", ""Headphones""]",3537.95,{},23145,0,Africa +2023-07-20,56060,6614,"[""Keyboard"", ""Phone"", ""Laptop""]",3508.93,"{""promo"": ""30%""}",258417,1,Africa +2024-09-24,56061,5559,"[""Phone""]",2008.16,"{""loyalty"": ""20%""}",235034,0,North America +2024-10-04,56062,5092,"[""Monitor"", ""Laptop"", ""Phone""]",2651.33,"{""promo"": ""28%""}",61234,0,Europe +2023-12-25,56063,887,"[""Headphones"", ""Phone""]",2607.87,"{""loyalty"": ""12%""}",255096,1,Africa +2023-09-19,56064,150,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1246.99,"{""promo"": ""28%""}",53653,0,South America +2024-03-16,56065,9292,"[""Tablet"", ""Phone"", ""Headphones""]",1456.01,{},79239,1,North America +2023-02-09,56066,7424,"[""Headphones"", ""Laptop"", ""Monitor""]",3697.95,"{""seasonal"": ""23%""}",12548,1,Europe +2023-12-03,56067,1433,"[""Charger"", ""Phone"", ""Tablet""]",4548.29,{},278456,0,Europe +2024-12-28,56068,3801,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4411.05,"{""loyalty"": ""19%""}",283622,0,North America +2023-06-30,56069,967,"[""Tablet""]",3473.48,"{""seasonal"": ""8%""}",160962,1,North America +2024-12-03,56070,8393,"[""Tablet"", ""Monitor"", ""Keyboard""]",1757.9,"{""promo"": ""12%""}",22854,1,South America +2023-04-08,56071,2129,"[""Headphones"", ""Charger"", ""Tablet""]",3880.27,{},114308,1,Europe +2024-03-06,56072,395,"[""Charger"", ""Headphones""]",1042.12,"{""seasonal"": ""6%""}",159967,0,Asia +2024-12-17,56073,5025,"[""Monitor"", ""Tablet""]",3000.31,"{""loyalty"": ""21%""}",67877,1,Africa +2024-05-09,56074,3229,"[""Monitor"", ""Laptop""]",2630.94,{},103690,0,Africa +2024-11-27,56075,9635,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3991.89,{},91437,0,North America +2023-06-27,56076,592,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4733.36,"{""promo"": ""23%""}",247350,1,South America +2023-06-27,56077,3414,"[""Wireless Mouse""]",4544.38,{},248013,0,South America +2023-02-25,56078,6628,"[""Tablet"", ""Monitor"", ""Laptop""]",1826.76,"{""promo"": ""30%""}",54143,0,North America +2023-04-29,56079,7062,"[""Wireless Mouse"", ""Laptop""]",2255.57,{},272869,1,Africa +2024-05-10,56080,8468,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1128.87,{},228488,0,South America +2023-06-22,56081,9723,"[""Laptop"", ""Keyboard"", ""Monitor""]",2343.42,{},260567,1,Asia +2024-08-08,56082,1867,"[""Charger"", ""Headphones"", ""Tablet""]",3106.31,"{""seasonal"": ""28%""}",293791,0,Europe +2023-02-07,56083,9309,"[""Monitor""]",76.0,{},258267,1,Asia +2023-02-13,56084,6949,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",73.79,"{""promo"": ""5%""}",245554,0,Africa +2023-07-07,56085,9680,"[""Monitor"", ""Charger"", ""Keyboard""]",2215.51,{},71508,1,Asia +2024-02-21,56086,8048,"[""Tablet"", ""Headphones""]",2688.32,{},292821,0,Asia +2024-12-11,56087,5502,"[""Monitor""]",2875.97,{},141510,1,South America +2023-07-23,56088,5483,"[""Monitor""]",1447.05,{},120338,0,Europe +2023-03-29,56089,7002,"[""Wireless Mouse"", ""Laptop""]",4539.51,"{""loyalty"": ""6%""}",37860,0,North America +2024-12-02,56090,3979,"[""Phone"", ""Laptop""]",4649.88,"{"""": ""29%""}",73950,0,South America +2023-08-16,56091,801,"[""Tablet""]",116.53,"{""loyalty"": ""5%""}",174447,0,North America +2024-10-27,56092,2864,"[""Wireless Mouse"", ""Headphones""]",2738.38,{},221282,0,Europe +2023-01-10,56093,5871,"[""Wireless Mouse"", ""Monitor""]",3373.5,"{""seasonal"": ""7%""}",147068,1,Africa +2024-10-17,56094,7873,"[""Laptop""]",4803.06,"{""seasonal"": ""12%""}",5200,0,Africa +2024-07-21,56095,7310,"[""Tablet""]",56.68,"{""seasonal"": ""14%""}",276239,0,South America +2024-08-16,56096,5747,"[""Keyboard"", ""Phone""]",4785.66,"{"""": ""27%""}",184137,1,Africa +2023-11-03,56097,514,"[""Wireless Mouse"", ""Monitor""]",3116.68,{},241559,0,Europe +2024-02-03,56098,6192,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1591.45,"{"""": ""9%""}",58595,0,Europe +2024-04-06,56099,1289,"[""Keyboard"", ""Charger""]",4916.38,"{""seasonal"": ""30%""}",115390,0,Asia +2024-06-23,56100,6843,"[""Charger"", ""Tablet""]",4715.06,"{""promo"": ""21%""}",56592,0,Asia +2024-08-23,56101,8361,"[""Charger""]",1473.81,{},20965,0,North America +2023-04-09,56102,5841,"[""Charger"", ""Monitor""]",1707.25,{},181287,1,South America +2024-04-04,56103,744,"[""Tablet"", ""Laptop"", ""Phone""]",1188.23,{},282400,0,Europe +2023-07-06,56104,3511,"[""Keyboard""]",3155.12,"{""seasonal"": ""15%""}",194275,0,Europe +2024-11-12,56105,3315,"[""Phone"", ""Monitor"", ""Tablet""]",1326.06,"{""promo"": ""13%""}",163453,0,North America +2024-11-22,56106,1962,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2281.61,{},103978,1,Asia +2024-12-10,56107,5403,"[""Laptop"", ""Headphones""]",3955.45,{},11493,0,South America +2024-04-22,56108,1367,"[""Monitor""]",1992.02,{},124800,1,North America +2024-07-01,56109,3850,"[""Charger""]",4441.96,{},207640,0,Asia +2024-02-03,56110,1531,"[""Headphones"", ""Wireless Mouse""]",2113.11,{},144942,0,Africa +2024-10-13,56111,375,"[""Laptop"", ""Tablet"", ""Charger""]",3748.25,"{""loyalty"": ""18%""}",57989,0,Africa +2023-04-12,56112,4645,"[""Charger""]",511.94,{},38688,0,Africa +2024-10-07,56113,4176,"[""Headphones"", ""Monitor""]",1199.0,{},21719,0,South America +2023-08-21,56114,4322,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4361.84,"{"""": ""9%""}",32784,0,Asia +2023-11-16,56115,7142,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3462.22,"{""promo"": ""29%""}",205619,1,North America +2024-12-30,56116,2473,"[""Monitor""]",573.06,{},35193,0,Asia +2024-01-29,56117,955,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",436.15,"{"""": ""25%""}",283731,1,Europe +2023-01-20,56118,8275,"[""Monitor"", ""Charger""]",3261.17,{},22200,0,Europe +2023-03-10,56119,2631,"[""Tablet""]",4274.15,"{""loyalty"": ""12%""}",246275,1,South America +2023-10-16,56120,9767,"[""Charger""]",1663.23,"{""seasonal"": ""18%""}",66043,1,Europe +2024-07-10,56121,6223,"[""Charger"", ""Tablet""]",2841.62,"{""seasonal"": ""30%""}",217824,1,Europe +2023-02-16,56122,2486,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",932.96,{},289966,0,Europe +2023-09-06,56123,8914,"[""Laptop""]",4513.63,{},17186,1,South America +2024-01-23,56124,912,"[""Wireless Mouse""]",3947.71,{},32011,1,Europe +2023-01-17,56125,6409,"[""Wireless Mouse"", ""Keyboard""]",1315.0,{},199239,0,Asia +2023-01-07,56126,4197,"[""Keyboard"", ""Headphones"", ""Monitor""]",4388.48,"{"""": ""7%""}",182123,0,South America +2024-01-19,56127,9118,"[""Phone"", ""Keyboard"", ""Charger""]",4897.02,{},38698,1,Europe +2023-08-19,56128,3500,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2742.38,"{""seasonal"": ""16%""}",172973,1,South America +2024-03-13,56129,3411,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1184.6,{},17749,1,Africa +2024-02-24,56130,9637,"[""Keyboard"", ""Tablet"", ""Laptop""]",66.64,{},193524,1,Asia +2023-07-09,56131,4118,"[""Phone"", ""Charger"", ""Tablet""]",1006.2,{},298707,1,Europe +2023-04-08,56132,5335,"[""Monitor"", ""Phone""]",2605.09,{},159022,1,Asia +2023-12-01,56133,347,"[""Charger"", ""Wireless Mouse""]",3837.55,"{""promo"": ""20%""}",60839,0,Asia +2023-09-27,56134,4968,"[""Wireless Mouse"", ""Phone""]",1693.17,"{""promo"": ""15%""}",28812,0,Asia +2023-08-20,56135,1004,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1667.03,{},291269,1,Africa +2023-10-08,56136,1129,"[""Wireless Mouse""]",363.35,"{"""": ""26%""}",48173,0,Asia +2023-04-26,56137,6664,"[""Keyboard""]",2768.67,"{"""": ""20%""}",69498,0,Africa +2024-10-02,56138,4227,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",187.54,{},245382,1,North America +2023-04-28,56139,6334,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1495.55,"{""seasonal"": ""8%""}",249165,1,South America +2023-09-21,56140,7100,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3219.63,"{""promo"": ""26%""}",256548,0,Asia +2024-05-19,56141,4390,"[""Monitor"", ""Headphones""]",2771.23,{},3408,0,Asia +2023-07-03,56142,8446,"[""Tablet"", ""Charger"", ""Headphones""]",1030.35,"{"""": ""11%""}",187302,0,Europe +2024-02-28,56143,3809,"[""Laptop"", ""Phone"", ""Headphones""]",4618.05,"{"""": ""17%""}",280341,0,Africa +2024-07-06,56144,5369,"[""Tablet"", ""Monitor"", ""Headphones""]",1118.05,"{""promo"": ""6%""}",256976,0,Africa +2024-01-04,56145,7875,"[""Laptop"", ""Charger"", ""Headphones""]",4881.38,"{"""": ""28%""}",208567,0,Asia +2023-09-29,56146,1841,"[""Monitor"", ""Charger""]",2068.68,{},140504,1,Africa +2023-06-02,56147,741,"[""Headphones""]",2059.23,"{""promo"": ""29%""}",61943,1,Asia +2023-08-17,56148,6144,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4937.33,"{"""": ""28%""}",81101,1,Asia +2023-09-03,56149,3469,"[""Tablet""]",4054.2,{},74501,1,Africa +2023-04-14,56150,7732,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3792.46,"{"""": ""24%""}",62600,0,Africa +2023-05-30,56151,5984,"[""Laptop"", ""Keyboard""]",448.02,{},6685,0,Europe +2024-09-08,56152,8912,"[""Laptop"", ""Keyboard""]",1830.42,{},10285,0,Asia +2023-05-06,56153,555,"[""Wireless Mouse"", ""Keyboard""]",1905.85,{},90034,1,North America +2024-02-29,56154,5167,"[""Laptop""]",4955.81,"{""promo"": ""10%""}",270080,1,Europe +2023-07-26,56155,5855,"[""Laptop"", ""Monitor"", ""Charger""]",906.28,"{""promo"": ""19%""}",236436,1,Asia +2024-01-18,56156,7527,"[""Wireless Mouse"", ""Charger""]",3424.43,"{"""": ""8%""}",70640,1,Africa +2023-09-23,56157,8943,"[""Phone"", ""Monitor"", ""Charger""]",4730.54,{},18511,0,North America +2023-06-14,56158,1467,"[""Laptop"", ""Monitor"", ""Keyboard""]",3207.94,"{""seasonal"": ""5%""}",210357,0,North America +2023-11-16,56159,1166,"[""Laptop""]",4735.69,"{"""": ""21%""}",299240,0,North America +2024-05-22,56160,8492,"[""Tablet""]",3984.98,"{""loyalty"": ""18%""}",251781,1,Asia +2024-01-20,56161,8764,"[""Phone""]",1617.85,{},225738,1,North America +2023-04-16,56162,9325,"[""Tablet"", ""Charger""]",3036.29,{},145400,0,North America +2023-04-01,56163,2262,"[""Laptop""]",4531.85,"{"""": ""12%""}",91991,1,Africa +2023-10-12,56164,5484,"[""Tablet"", ""Monitor""]",4584.28,"{"""": ""6%""}",139402,1,North America +2024-02-01,56165,3007,"[""Charger""]",2639.8,"{""promo"": ""26%""}",39290,1,South America +2023-01-15,56166,6265,"[""Wireless Mouse"", ""Laptop""]",2913.0,{},238558,1,Europe +2024-12-16,56167,217,"[""Headphones"", ""Charger""]",1352.82,"{"""": ""20%""}",209525,1,South America +2024-10-30,56168,6236,"[""Phone""]",2988.97,"{"""": ""25%""}",103803,0,South America +2023-06-14,56169,4330,"[""Headphones"", ""Monitor"", ""Laptop""]",1369.37,{},64415,0,North America +2024-08-16,56170,9321,"[""Headphones"", ""Monitor"", ""Phone""]",2247.81,{},294546,1,North America +2024-06-27,56171,1704,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4882.22,{},30928,1,South America +2024-03-13,56172,642,"[""Headphones"", ""Charger"", ""Keyboard""]",4783.68,{},21748,0,South America +2023-07-04,56173,7285,"[""Charger"", ""Monitor"", ""Keyboard""]",2430.01,{},121209,1,South America +2024-05-15,56174,9291,"[""Charger"", ""Phone"", ""Tablet""]",4932.49,"{""seasonal"": ""15%""}",131817,0,Europe +2023-03-19,56175,9000,"[""Tablet""]",3122.31,"{""seasonal"": ""18%""}",262029,1,Africa +2024-09-24,56176,1993,"[""Wireless Mouse""]",1302.09,{},226721,1,Asia +2023-07-18,56177,5641,"[""Headphones""]",3592.62,{},189556,0,Europe +2023-05-28,56178,4148,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3100.74,{},17885,1,Africa +2023-04-09,56179,5624,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1573.08,"{""promo"": ""16%""}",143136,0,Europe +2023-08-12,56180,2456,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4396.17,{},139786,0,North America +2023-10-16,56181,3287,"[""Phone"", ""Charger"", ""Wireless Mouse""]",973.42,{},158773,0,North America +2024-02-26,56182,1033,"[""Monitor"", ""Keyboard"", ""Charger""]",607.55,{},251891,1,North America +2024-03-25,56183,7953,"[""Tablet""]",2652.47,{},103050,1,South America +2024-10-02,56184,5466,"[""Phone"", ""Wireless Mouse""]",1516.93,{},93524,0,Africa +2024-01-15,56185,2605,"[""Monitor""]",2056.0,{},286335,1,Europe +2023-05-15,56186,7286,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4730.7,"{""seasonal"": ""13%""}",291067,0,Europe +2023-03-14,56187,5867,"[""Monitor""]",3270.81,"{""loyalty"": ""21%""}",269167,0,Europe +2024-02-12,56188,516,"[""Phone""]",4044.13,{},242642,0,Asia +2024-12-07,56189,5524,"[""Phone""]",802.45,"{""loyalty"": ""29%""}",189414,0,North America +2023-02-19,56190,2175,"[""Laptop"", ""Tablet"", ""Monitor""]",2981.59,"{""seasonal"": ""10%""}",210845,0,North America +2024-09-18,56191,8487,"[""Laptop""]",995.45,{},130651,0,South America +2023-11-20,56192,3062,"[""Phone""]",3662.84,{},137796,1,South America +2024-05-16,56193,8646,"[""Headphones"", ""Laptop""]",1471.89,{},289240,0,Asia +2024-03-20,56194,7613,"[""Laptop""]",76.93,"{""promo"": ""21%""}",188291,1,South America +2023-10-27,56195,6297,"[""Phone""]",2494.42,{},294174,1,North America +2023-06-19,56196,5055,"[""Headphones""]",3795.44,{},295232,0,South America +2024-08-28,56197,1834,"[""Phone"", ""Monitor""]",4405.52,{},110812,1,North America +2024-08-30,56198,24,"[""Keyboard"", ""Headphones""]",4372.73,{},71259,1,Africa +2023-12-16,56199,2864,"[""Laptop"", ""Phone"", ""Monitor""]",2367.93,"{""promo"": ""19%""}",121737,0,Europe +2023-06-21,56200,2082,"[""Phone"", ""Wireless Mouse""]",772.6,"{""loyalty"": ""10%""}",195209,1,North America +2023-06-19,56201,7089,"[""Headphones"", ""Phone"", ""Monitor""]",326.0,"{""seasonal"": ""13%""}",113847,0,South America +2024-02-14,56202,9945,"[""Phone"", ""Monitor"", ""Charger""]",834.27,{},32253,0,North America +2024-06-28,56203,97,"[""Laptop"", ""Phone""]",2821.27,"{""seasonal"": ""5%""}",120510,0,Africa +2023-06-30,56204,9784,"[""Headphones""]",4040.85,"{"""": ""24%""}",115219,1,North America +2023-04-17,56205,7912,"[""Keyboard"", ""Phone"", ""Tablet""]",924.81,{},54993,1,North America +2024-07-12,56206,548,"[""Headphones""]",3116.77,"{""seasonal"": ""18%""}",216976,0,North America +2024-05-13,56207,8090,"[""Phone"", ""Keyboard"", ""Headphones""]",2932.65,"{""seasonal"": ""9%""}",278949,0,North America +2024-07-09,56208,9181,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",373.26,{},298256,0,South America +2023-04-18,56209,5639,"[""Phone"", ""Tablet"", ""Laptop""]",1331.77,"{""seasonal"": ""5%""}",141282,0,Africa +2024-09-01,56210,4783,"[""Phone"", ""Keyboard""]",1556.68,"{""seasonal"": ""15%""}",14640,0,Africa +2023-06-19,56211,466,"[""Monitor"", ""Headphones""]",3219.09,"{""seasonal"": ""27%""}",7507,0,Africa +2024-12-28,56212,9444,"[""Monitor""]",2732.24,{},275750,1,South America +2024-06-04,56213,464,"[""Monitor"", ""Laptop""]",445.81,{},40547,1,Europe +2023-10-30,56214,8159,"[""Tablet"", ""Laptop"", ""Phone""]",4573.56,{},198651,1,North America +2023-03-06,56215,3738,"[""Headphones"", ""Keyboard""]",4735.28,"{"""": ""27%""}",220761,0,South America +2023-08-07,56216,1295,"[""Headphones""]",1920.86,{},124675,0,Europe +2023-02-11,56217,104,"[""Monitor"", ""Phone"", ""Charger""]",4991.15,"{""loyalty"": ""14%""}",159577,0,Europe +2023-12-21,56218,6155,"[""Wireless Mouse""]",1101.97,"{""promo"": ""20%""}",231270,1,Europe +2023-07-22,56219,4408,"[""Wireless Mouse""]",2862.15,{},81114,0,South America +2023-10-12,56220,7752,"[""Keyboard"", ""Phone""]",2499.59,"{""promo"": ""14%""}",72886,0,Asia +2024-02-09,56221,7647,"[""Keyboard""]",4862.42,{},155328,1,North America +2024-09-21,56222,7270,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2127.41,"{""loyalty"": ""5%""}",140940,0,Africa +2023-07-02,56223,6100,"[""Laptop"", ""Wireless Mouse""]",2074.92,"{""promo"": ""13%""}",40382,1,North America +2023-08-11,56224,5596,"[""Charger"", ""Wireless Mouse""]",1948.93,"{"""": ""14%""}",273125,0,Europe +2023-09-22,56225,1287,"[""Wireless Mouse""]",4594.58,{},61848,1,Asia +2024-05-25,56226,5953,"[""Headphones""]",3062.26,{},282914,1,Asia +2023-07-02,56227,6012,"[""Phone"", ""Headphones""]",77.12,{},123644,0,Africa +2023-11-03,56228,3004,"[""Charger"", ""Keyboard""]",3637.16,"{""loyalty"": ""23%""}",49693,1,Europe +2023-03-05,56229,108,"[""Wireless Mouse""]",4687.21,{},229327,0,Asia +2023-10-04,56230,4614,"[""Laptop"", ""Tablet""]",956.31,{},138481,1,South America +2024-10-25,56231,235,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4028.97,"{"""": ""7%""}",206664,0,South America +2024-12-03,56232,3362,"[""Phone"", ""Keyboard"", ""Charger""]",3106.53,"{""promo"": ""24%""}",202298,0,Asia +2023-05-30,56233,1332,"[""Laptop""]",1208.26,{},245779,1,Asia +2023-07-25,56234,6855,"[""Charger"", ""Monitor"", ""Tablet""]",1216.23,"{""promo"": ""17%""}",95216,0,North America +2024-11-12,56235,6769,"[""Monitor"", ""Laptop"", ""Charger""]",2887.19,"{""promo"": ""12%""}",6006,1,Asia +2023-08-25,56236,666,"[""Headphones""]",1595.03,"{""loyalty"": ""20%""}",169370,1,Asia +2024-09-18,56237,643,"[""Tablet"", ""Laptop""]",2254.09,"{""promo"": ""14%""}",273365,0,Europe +2024-10-17,56238,8803,"[""Phone"", ""Keyboard""]",4504.05,{},259511,0,North America +2024-03-09,56239,5767,"[""Laptop""]",4327.7,{},70936,1,Asia +2023-12-07,56240,3733,"[""Phone""]",3100.79,{},26599,0,South America +2023-05-25,56241,7288,"[""Phone""]",4771.05,{},119368,1,North America +2023-12-03,56242,9716,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2191.52,{},115083,0,Africa +2024-09-23,56243,7577,"[""Wireless Mouse"", ""Keyboard""]",2181.1,"{"""": ""17%""}",138662,1,Europe +2024-09-17,56244,8685,"[""Tablet"", ""Headphones""]",2287.93,"{"""": ""7%""}",73785,1,South America +2023-09-19,56245,3243,"[""Headphones"", ""Charger"", ""Monitor""]",150.4,"{""seasonal"": ""21%""}",231052,1,Asia +2023-11-15,56246,2119,"[""Laptop"", ""Headphones"", ""Tablet""]",180.87,{},188752,1,Asia +2023-08-02,56247,8220,"[""Phone""]",1419.54,{},271972,1,Africa +2023-04-17,56248,7582,"[""Phone""]",3204.53,"{"""": ""22%""}",298963,1,Europe +2024-06-14,56249,2951,"[""Charger"", ""Keyboard""]",3829.26,"{"""": ""11%""}",92801,1,Asia +2024-12-17,56250,7355,"[""Monitor"", ""Charger""]",2964.34,{},233487,0,Europe +2024-08-07,56251,5960,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1560.49,"{""loyalty"": ""14%""}",125788,0,Asia +2023-05-11,56252,1090,"[""Wireless Mouse"", ""Tablet""]",651.18,"{""promo"": ""25%""}",20991,0,North America +2023-04-08,56253,2413,"[""Keyboard"", ""Phone""]",4082.49,"{""promo"": ""7%""}",5135,1,Africa +2024-04-12,56254,3433,"[""Tablet""]",3264.12,"{""loyalty"": ""12%""}",94481,0,North America +2024-09-17,56255,2927,"[""Keyboard""]",3313.52,"{""seasonal"": ""26%""}",53545,1,Asia +2023-03-13,56256,5159,"[""Charger""]",2328.86,{},176712,1,Africa +2023-08-30,56257,555,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3579.75,{},287604,1,Europe +2023-11-25,56258,7673,"[""Charger"", ""Headphones""]",4348.69,"{""seasonal"": ""29%""}",293090,1,Africa +2024-05-04,56259,2665,"[""Charger"", ""Laptop""]",4788.49,{},115681,1,Africa +2023-06-29,56260,354,"[""Monitor"", ""Headphones""]",190.49,"{"""": ""23%""}",77520,0,Europe +2023-06-18,56261,4822,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1634.96,"{""seasonal"": ""18%""}",82943,0,Asia +2024-09-22,56262,3077,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3829.69,"{"""": ""6%""}",94395,1,Europe +2023-02-19,56263,1986,"[""Keyboard"", ""Phone"", ""Monitor""]",1780.17,{},245647,0,South America +2023-06-18,56264,8121,"[""Charger"", ""Keyboard""]",4293.9,"{""promo"": ""7%""}",236121,0,South America +2024-08-17,56265,8392,"[""Headphones""]",1471.12,{},123066,1,North America +2024-11-28,56266,2912,"[""Phone""]",2223.37,"{"""": ""18%""}",201670,1,Africa +2023-11-01,56267,1175,"[""Charger"", ""Headphones"", ""Tablet""]",1982.89,{},68330,1,Africa +2023-06-08,56268,8473,"[""Headphones"", ""Tablet"", ""Phone""]",2507.38,{},9638,1,South America +2024-03-09,56269,552,"[""Monitor"", ""Phone"", ""Charger""]",4998.02,{},220305,0,South America +2023-03-19,56270,1212,"[""Keyboard"", ""Tablet""]",2672.11,"{""seasonal"": ""19%""}",217643,1,Asia +2024-01-24,56271,3209,"[""Laptop"", ""Charger"", ""Monitor""]",1778.72,"{""loyalty"": ""5%""}",134958,1,Europe +2023-08-03,56272,1872,"[""Wireless Mouse""]",3045.23,"{""loyalty"": ""9%""}",154506,0,Europe +2024-03-12,56273,8890,"[""Headphones"", ""Phone""]",382.63,{},103851,1,Europe +2024-01-31,56274,4856,"[""Charger"", ""Wireless Mouse""]",1021.33,"{""seasonal"": ""9%""}",166688,0,Africa +2023-11-30,56275,8577,"[""Monitor"", ""Phone""]",3308.13,{},212773,1,Africa +2024-04-09,56276,1735,"[""Charger""]",4758.86,"{""seasonal"": ""25%""}",219349,0,South America +2024-12-27,56277,4166,"[""Laptop"", ""Keyboard""]",1947.5,{},71304,1,Europe +2023-06-25,56278,4161,"[""Charger"", ""Keyboard"", ""Headphones""]",2094.13,{},202136,1,Europe +2023-02-21,56279,9480,"[""Wireless Mouse""]",2620.53,"{"""": ""14%""}",223878,1,Europe +2024-10-17,56280,9748,"[""Laptop"", ""Phone""]",2742.83,{},13111,1,South America +2024-01-14,56281,6674,"[""Headphones"", ""Wireless Mouse""]",1670.7,"{""seasonal"": ""15%""}",72008,1,Europe +2023-06-09,56282,1752,"[""Phone"", ""Keyboard""]",4963.42,{},181640,1,South America +2023-05-30,56283,5599,"[""Headphones"", ""Wireless Mouse""]",2727.65,{},233374,1,Asia +2024-03-06,56284,620,"[""Headphones"", ""Tablet""]",4115.63,"{""loyalty"": ""22%""}",158473,1,North America +2023-02-04,56285,7959,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3919.41,"{""seasonal"": ""21%""}",286593,0,South America +2024-02-21,56286,5037,"[""Keyboard"", ""Monitor"", ""Headphones""]",1270.66,{},50865,0,North America +2023-02-07,56287,6907,"[""Charger""]",1095.59,{},61397,1,Asia +2023-06-02,56288,9567,"[""Tablet""]",3731.77,{},76791,0,South America +2023-05-25,56289,9609,"[""Headphones"", ""Laptop"", ""Charger""]",2255.8,{},163724,0,Europe +2023-03-17,56290,5670,"[""Wireless Mouse"", ""Headphones""]",2555.48,{},170127,0,Europe +2024-04-13,56291,7690,"[""Laptop""]",4714.29,{},144127,1,North America +2023-10-26,56292,6516,"[""Tablet"", ""Charger""]",4682.95,"{"""": ""11%""}",113313,0,Asia +2023-11-23,56293,5871,"[""Keyboard"", ""Headphones"", ""Laptop""]",1072.49,"{""seasonal"": ""30%""}",173039,1,North America +2024-04-23,56294,4316,"[""Phone"", ""Headphones"", ""Keyboard""]",2783.08,{},253570,0,Europe +2024-03-23,56295,1742,"[""Monitor"", ""Headphones""]",2746.34,"{""promo"": ""19%""}",137289,0,Asia +2023-05-14,56296,711,"[""Laptop"", ""Charger""]",1336.12,"{""promo"": ""9%""}",149706,0,Africa +2024-11-02,56297,8092,"[""Laptop"", ""Keyboard""]",2496.72,{},188974,1,Africa +2023-07-11,56298,7849,"[""Monitor"", ""Tablet"", ""Phone""]",2491.64,"{""promo"": ""6%""}",139593,0,North America +2024-12-24,56299,1051,"[""Monitor"", ""Laptop"", ""Phone""]",2745.81,{},116744,0,Asia +2024-05-21,56300,8719,"[""Wireless Mouse""]",2635.75,"{""loyalty"": ""30%""}",130676,1,Asia +2024-02-18,56301,3903,"[""Charger"", ""Tablet""]",837.63,"{""loyalty"": ""9%""}",185301,0,Asia +2024-04-06,56302,9400,"[""Monitor"", ""Keyboard"", ""Headphones""]",4935.74,"{""loyalty"": ""26%""}",187560,0,South America +2024-08-18,56303,6395,"[""Keyboard"", ""Charger""]",970.24,"{""loyalty"": ""11%""}",24198,1,South America +2023-09-06,56304,178,"[""Charger"", ""Monitor""]",3236.78,{},68295,1,Asia +2023-10-08,56305,4986,"[""Wireless Mouse""]",3673.68,"{""promo"": ""21%""}",155432,1,Asia +2023-08-04,56306,8890,"[""Tablet"", ""Laptop""]",1303.88,{},250058,0,North America +2023-12-18,56307,1247,"[""Charger"", ""Headphones""]",676.88,{},170001,0,Africa +2024-07-07,56308,3693,"[""Wireless Mouse""]",3337.22,"{""seasonal"": ""28%""}",75302,0,North America +2023-09-26,56309,2341,"[""Charger""]",3010.49,"{""promo"": ""30%""}",216762,1,Africa +2024-04-15,56310,2130,"[""Keyboard"", ""Phone"", ""Tablet""]",3734.49,"{""seasonal"": ""16%""}",274818,0,Asia +2023-06-08,56311,1713,"[""Tablet""]",3887.7,{},135587,0,Africa +2024-07-31,56312,1846,"[""Keyboard""]",2264.83,{},200747,0,South America +2024-04-11,56313,612,"[""Laptop""]",3200.1,"{""loyalty"": ""10%""}",130201,0,Asia +2024-11-02,56314,6602,"[""Wireless Mouse""]",3492.17,"{"""": ""26%""}",146252,1,North America +2024-07-16,56315,4738,"[""Charger""]",1428.87,{},212835,1,Asia +2024-10-10,56316,1434,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2754.13,{},83847,1,Europe +2023-09-21,56317,2301,"[""Keyboard"", ""Charger"", ""Laptop""]",1578.07,"{""loyalty"": ""6%""}",74369,0,Europe +2024-04-30,56318,5089,"[""Charger"", ""Laptop"", ""Headphones""]",2523.54,"{""promo"": ""5%""}",250561,0,South America +2024-09-08,56319,6352,"[""Wireless Mouse""]",4748.78,{},221326,1,North America +2023-10-27,56320,2099,"[""Monitor""]",603.75,{},233375,0,North America +2023-03-12,56321,1788,"[""Wireless Mouse"", ""Tablet""]",781.98,"{"""": ""23%""}",199069,0,Asia +2023-10-18,56322,349,"[""Tablet"", ""Laptop"", ""Charger""]",1550.45,"{""seasonal"": ""20%""}",24856,1,Europe +2024-11-12,56323,802,"[""Headphones""]",1849.81,"{"""": ""16%""}",14181,0,Asia +2023-04-29,56324,9269,"[""Headphones"", ""Phone""]",1778.31,{},221762,1,North America +2023-03-11,56325,4145,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4125.23,{},182437,0,South America +2024-01-05,56326,7117,"[""Phone"", ""Laptop""]",1173.84,{},183668,0,North America +2024-11-03,56327,1062,"[""Wireless Mouse"", ""Phone""]",1527.94,{},189855,1,Africa +2024-03-03,56328,579,"[""Charger""]",1886.97,{},273397,1,North America +2023-01-25,56329,3133,"[""Tablet"", ""Headphones""]",3188.01,{},11308,0,North America +2024-10-30,56330,5244,"[""Charger""]",3926.79,{},99464,0,Europe +2023-12-18,56331,8995,"[""Tablet"", ""Wireless Mouse""]",1938.33,"{""promo"": ""7%""}",21705,0,Africa +2023-11-30,56332,8680,"[""Tablet"", ""Headphones""]",3468.17,{},188819,0,North America +2024-01-26,56333,5804,"[""Monitor"", ""Phone""]",4667.31,{},216805,1,Africa +2023-06-27,56334,7379,"[""Wireless Mouse"", ""Phone""]",2780.28,{},86621,1,North America +2023-10-09,56335,9068,"[""Phone"", ""Monitor"", ""Keyboard""]",4479.55,{},146469,1,North America +2023-08-04,56336,4832,"[""Laptop"", ""Keyboard"", ""Headphones""]",4835.43,"{""seasonal"": ""30%""}",289558,1,Europe +2023-06-23,56337,9554,"[""Charger"", ""Keyboard"", ""Headphones""]",2290.36,"{""promo"": ""5%""}",299692,0,Europe +2024-01-07,56338,4608,"[""Wireless Mouse"", ""Headphones""]",4259.86,{},295416,0,Europe +2023-01-29,56339,7390,"[""Tablet"", ""Headphones"", ""Charger""]",1720.94,"{""promo"": ""22%""}",49677,0,Asia +2024-08-02,56340,5964,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",717.16,"{""loyalty"": ""9%""}",36534,0,Africa +2023-11-16,56341,5952,"[""Monitor"", ""Keyboard""]",4640.56,"{""seasonal"": ""9%""}",193289,1,Europe +2024-11-23,56342,83,"[""Laptop"", ""Headphones"", ""Charger""]",3048.26,{},292438,0,Europe +2023-09-29,56343,8504,"[""Monitor"", ""Tablet"", ""Charger""]",1254.04,{},152234,0,Europe +2024-12-20,56344,1658,"[""Tablet""]",835.06,{},131415,0,Europe +2024-03-16,56345,1798,"[""Monitor""]",3374.95,{},248845,1,North America +2023-01-28,56346,3818,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",923.2,{},56995,1,Africa +2023-10-10,56347,575,"[""Tablet"", ""Keyboard""]",460.33,{},288160,1,Africa +2023-06-17,56348,2666,"[""Monitor""]",1769.3,{},132934,0,Europe +2024-07-20,56349,3081,"[""Wireless Mouse"", ""Phone""]",2669.06,"{""promo"": ""10%""}",190693,0,Africa +2023-09-28,56350,3412,"[""Headphones"", ""Laptop"", ""Monitor""]",3977.35,"{""seasonal"": ""5%""}",249143,1,Asia +2024-02-02,56351,3294,"[""Laptop"", ""Tablet"", ""Keyboard""]",3365.64,{},205709,1,Asia +2023-02-25,56352,9150,"[""Phone"", ""Tablet""]",2331.16,"{""loyalty"": ""23%""}",252793,0,Europe +2024-06-11,56353,806,"[""Monitor""]",1100.99,"{""seasonal"": ""5%""}",180240,1,Europe +2024-01-11,56354,7209,"[""Wireless Mouse"", ""Headphones""]",3520.01,"{"""": ""29%""}",251126,1,Europe +2023-02-20,56355,5259,"[""Laptop"", ""Headphones""]",1285.42,{},208241,0,South America +2023-06-21,56356,2010,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2466.63,"{""seasonal"": ""27%""}",253513,1,Africa +2024-07-25,56357,6037,"[""Monitor"", ""Tablet""]",800.37,{},268313,1,Asia +2024-12-16,56358,6155,"[""Tablet""]",4253.23,"{""loyalty"": ""26%""}",72653,0,Africa +2023-09-17,56359,5305,"[""Headphones""]",1992.83,{},251929,1,Africa +2023-05-04,56360,1695,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4452.2,{},3988,1,Africa +2024-03-12,56361,2727,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",839.79,"{"""": ""24%""}",219096,1,South America +2024-10-09,56362,9143,"[""Headphones"", ""Monitor"", ""Keyboard""]",2249.13,"{""seasonal"": ""18%""}",289832,1,Europe +2024-06-18,56363,1963,"[""Phone"", ""Wireless Mouse""]",1122.77,{},95031,1,North America +2023-10-27,56364,3589,"[""Headphones"", ""Wireless Mouse""]",2490.28,{},151528,1,North America +2024-10-27,56365,2613,"[""Headphones"", ""Wireless Mouse""]",391.68,"{"""": ""26%""}",69528,1,North America +2024-11-09,56366,3575,"[""Keyboard"", ""Laptop""]",1030.2,{},181598,1,North America +2023-05-24,56367,8864,"[""Headphones"", ""Keyboard""]",3345.51,{},171817,1,Africa +2023-09-29,56368,9715,"[""Tablet""]",4614.95,"{"""": ""28%""}",109881,1,Africa +2024-03-16,56369,6190,"[""Monitor"", ""Headphones""]",2977.33,"{""loyalty"": ""26%""}",18723,0,Africa +2023-12-08,56370,4296,"[""Tablet""]",1814.91,{},197084,0,Asia +2023-01-02,56371,2460,"[""Charger"", ""Keyboard""]",2225.4,{},62870,0,Europe +2024-06-09,56372,5873,"[""Charger"", ""Keyboard""]",2016.33,"{""loyalty"": ""17%""}",93599,0,Europe +2023-04-14,56373,8152,"[""Keyboard""]",1770.91,"{"""": ""18%""}",10332,0,Europe +2024-05-03,56374,8543,"[""Wireless Mouse""]",4784.79,{},139275,0,South America +2023-06-23,56375,5906,"[""Keyboard""]",3265.52,"{""promo"": ""9%""}",254400,0,Europe +2024-04-14,56376,5205,"[""Keyboard"", ""Headphones""]",2910.85,{},192866,0,South America +2024-11-23,56377,7126,"[""Charger"", ""Phone""]",1919.75,{},278357,1,South America +2023-05-24,56378,782,"[""Phone"", ""Charger""]",3036.44,"{"""": ""20%""}",47718,1,Africa +2024-12-16,56379,4804,"[""Tablet"", ""Charger"", ""Headphones""]",1595.47,"{""promo"": ""5%""}",229470,0,South America +2023-04-15,56380,9023,"[""Tablet"", ""Keyboard""]",3271.12,"{""seasonal"": ""5%""}",278600,0,South America +2023-04-20,56381,358,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4631.51,"{""seasonal"": ""15%""}",114291,0,Asia +2024-04-27,56382,5653,"[""Laptop""]",1493.92,{},86281,0,Africa +2024-11-24,56383,8483,"[""Charger"", ""Tablet""]",271.11,{},194424,1,North America +2023-11-30,56384,1752,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",807.21,"{""seasonal"": ""12%""}",261464,0,Asia +2024-04-24,56385,6308,"[""Laptop""]",1912.45,{},112348,1,North America +2023-02-19,56386,1172,"[""Headphones""]",303.19,"{""loyalty"": ""30%""}",31777,1,Asia +2023-08-23,56387,2164,"[""Wireless Mouse""]",417.77,"{"""": ""11%""}",117844,0,South America +2023-02-10,56388,5440,"[""Wireless Mouse"", ""Tablet""]",1272.3,{},161352,0,Africa +2024-08-14,56389,8782,"[""Tablet"", ""Phone"", ""Monitor""]",3689.84,"{""seasonal"": ""16%""}",101385,1,Europe +2023-11-03,56390,1507,"[""Tablet"", ""Phone""]",481.84,"{""loyalty"": ""21%""}",270003,1,Africa +2024-06-26,56391,6576,"[""Headphones"", ""Phone"", ""Keyboard""]",1400.56,"{"""": ""11%""}",94456,1,South America +2024-08-06,56392,9028,"[""Headphones"", ""Keyboard"", ""Laptop""]",329.35,"{""promo"": ""5%""}",221353,0,Asia +2023-11-27,56393,7043,"[""Keyboard"", ""Headphones""]",4672.49,"{"""": ""10%""}",193101,1,Africa +2024-10-19,56394,6079,"[""Tablet""]",1055.37,{},253652,1,Asia +2024-12-07,56395,7914,"[""Laptop"", ""Keyboard"", ""Charger""]",3569.08,{},220548,0,North America +2024-08-23,56396,4991,"[""Headphones"", ""Laptop""]",979.29,{},89770,1,Africa +2024-01-30,56397,3508,"[""Monitor"", ""Phone""]",4785.0,{},103587,1,South America +2024-04-07,56398,154,"[""Tablet"", ""Phone""]",4036.55,{},127985,1,Africa +2023-11-07,56399,1707,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1057.24,"{""promo"": ""5%""}",81839,0,Europe +2023-05-13,56400,8685,"[""Monitor"", ""Phone"", ""Tablet""]",1370.96,"{"""": ""17%""}",135194,0,South America +2024-02-28,56401,365,"[""Wireless Mouse""]",3796.51,"{""loyalty"": ""30%""}",263712,0,South America +2024-07-17,56402,3443,"[""Keyboard"", ""Monitor"", ""Phone""]",4949.01,{},224008,0,Africa +2024-11-11,56403,8904,"[""Keyboard"", ""Tablet"", ""Phone""]",3151.75,"{"""": ""6%""}",273674,0,Asia +2024-07-10,56404,6249,"[""Phone"", ""Wireless Mouse""]",3127.22,{},128383,1,Asia +2023-10-05,56405,8500,"[""Phone"", ""Laptop""]",2801.39,"{""promo"": ""21%""}",148108,0,Asia +2024-07-17,56406,4260,"[""Laptop""]",2997.35,"{"""": ""5%""}",65507,0,South America +2023-04-04,56407,4592,"[""Phone""]",2356.51,"{"""": ""19%""}",120055,1,Asia +2023-02-12,56408,1122,"[""Keyboard"", ""Charger"", ""Tablet""]",4915.25,"{""seasonal"": ""19%""}",133680,1,Africa +2024-10-01,56409,1011,"[""Wireless Mouse""]",1556.37,{},40271,0,Africa +2024-08-20,56410,1899,"[""Tablet""]",1633.04,{},161083,1,North America +2024-09-30,56411,4427,"[""Monitor"", ""Wireless Mouse""]",3801.67,"{""seasonal"": ""6%""}",173456,1,Asia +2024-06-12,56412,279,"[""Keyboard"", ""Monitor"", ""Laptop""]",1885.92,"{""seasonal"": ""23%""}",253328,0,North America +2023-04-27,56413,8238,"[""Keyboard"", ""Headphones""]",3924.39,{},194493,1,South America +2023-05-15,56414,390,"[""Keyboard"", ""Laptop""]",3752.77,{},226129,0,Asia +2023-11-29,56415,836,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",219.45,"{""promo"": ""8%""}",216636,0,North America +2023-08-03,56416,2895,"[""Tablet"", ""Phone""]",2808.82,"{"""": ""12%""}",282162,0,Asia +2024-08-17,56417,3000,"[""Headphones""]",316.28,"{""seasonal"": ""9%""}",273763,0,North America +2023-04-08,56418,8477,"[""Phone"", ""Monitor"", ""Charger""]",3697.62,"{"""": ""7%""}",91343,1,Europe +2023-09-29,56419,5198,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",136.13,"{""loyalty"": ""16%""}",192658,0,Europe +2024-11-27,56420,7122,"[""Phone"", ""Charger""]",3810.4,"{"""": ""28%""}",17823,0,North America +2023-02-27,56421,8615,"[""Monitor"", ""Keyboard"", ""Laptop""]",550.18,{},74907,0,Europe +2024-08-06,56422,3787,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",536.37,"{""loyalty"": ""24%""}",157601,0,Asia +2023-12-05,56423,2785,"[""Monitor"", ""Wireless Mouse""]",3636.8,"{""loyalty"": ""25%""}",19881,0,North America +2023-06-24,56424,6068,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1615.24,{},77061,1,Asia +2024-01-21,56425,7501,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2527.26,"{""promo"": ""9%""}",53149,0,Europe +2023-05-28,56426,4090,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",916.22,"{""loyalty"": ""16%""}",33053,0,South America +2024-05-04,56427,588,"[""Wireless Mouse""]",107.8,"{"""": ""22%""}",88402,1,North America +2023-11-24,56428,1441,"[""Keyboard"", ""Headphones"", ""Laptop""]",2667.45,{},229617,0,Asia +2024-09-19,56429,1896,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3393.88,"{""promo"": ""16%""}",233635,0,North America +2023-01-07,56430,6987,"[""Keyboard"", ""Laptop"", ""Phone""]",2662.26,"{""promo"": ""18%""}",214426,0,Europe +2024-04-21,56431,2309,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3651.43,{},284724,0,Asia +2024-05-06,56432,5293,"[""Tablet""]",1742.4,"{""promo"": ""11%""}",12583,0,Africa +2023-07-12,56433,542,"[""Charger""]",821.55,{},53308,0,Asia +2023-02-08,56434,8843,"[""Laptop"", ""Tablet"", ""Keyboard""]",2888.85,"{""promo"": ""11%""}",57398,1,Asia +2024-02-24,56435,8216,"[""Monitor"", ""Wireless Mouse""]",2875.91,{},256365,0,North America +2023-08-03,56436,630,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",912.34,"{""seasonal"": ""21%""}",189004,0,South America +2024-10-16,56437,1783,"[""Phone"", ""Charger"", ""Headphones""]",1971.49,"{"""": ""28%""}",74764,1,Europe +2024-08-07,56438,2349,"[""Keyboard"", ""Laptop""]",2212.45,{},58168,1,North America +2024-03-19,56439,4397,"[""Wireless Mouse""]",3999.09,"{""promo"": ""20%""}",232362,1,South America +2024-11-09,56440,1254,"[""Laptop""]",2089.66,{},176748,0,North America +2024-05-12,56441,5176,"[""Tablet""]",2806.53,{},102621,0,South America +2024-12-23,56442,8601,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3635.67,{},159307,1,Europe +2024-05-05,56443,3794,"[""Charger""]",3687.58,"{"""": ""18%""}",110889,1,Africa +2024-07-02,56444,4904,"[""Monitor"", ""Charger"", ""Laptop""]",2609.74,"{""loyalty"": ""30%""}",43936,0,South America +2024-07-23,56445,7575,"[""Tablet"", ""Laptop""]",2101.88,"{""seasonal"": ""30%""}",296403,0,Africa +2023-10-26,56446,3656,"[""Phone"", ""Tablet""]",3760.07,"{"""": ""18%""}",47386,1,Asia +2023-10-15,56447,1144,"[""Keyboard"", ""Tablet"", ""Phone""]",3498.36,"{"""": ""20%""}",254608,1,Africa +2024-09-06,56448,7184,"[""Keyboard"", ""Phone"", ""Charger""]",2684.56,"{"""": ""30%""}",119723,0,North America +2023-07-14,56449,9833,"[""Phone"", ""Laptop"", ""Charger""]",4423.56,{},245202,0,Asia +2023-02-28,56450,203,"[""Headphones"", ""Phone""]",2949.36,"{""loyalty"": ""19%""}",27158,0,Africa +2023-10-08,56451,187,"[""Tablet"", ""Headphones""]",1609.61,"{"""": ""12%""}",150577,0,South America +2024-09-06,56452,5075,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1327.19,"{"""": ""6%""}",213915,1,Europe +2024-01-03,56453,1981,"[""Tablet"", ""Laptop"", ""Headphones""]",1924.2,{},1665,0,Africa +2023-05-10,56454,6521,"[""Tablet""]",4794.43,"{""seasonal"": ""16%""}",186705,1,Europe +2023-01-17,56455,3769,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3989.81,"{"""": ""6%""}",19344,0,Africa +2024-06-16,56456,9130,"[""Wireless Mouse""]",145.42,"{""loyalty"": ""11%""}",163945,1,Africa +2023-10-24,56457,8276,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4459.02,{},297668,1,Europe +2024-09-07,56458,7248,"[""Phone"", ""Headphones""]",2731.75,"{""loyalty"": ""15%""}",43164,1,Africa +2023-12-07,56459,526,"[""Laptop"", ""Charger"", ""Headphones""]",4573.55,"{""loyalty"": ""22%""}",194443,0,Europe +2024-09-06,56460,9989,"[""Phone"", ""Keyboard"", ""Laptop""]",1609.01,{},297344,0,South America +2023-08-05,56461,1004,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4663.23,{},278055,0,Europe +2024-07-10,56462,5823,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4309.51,{},4492,1,Africa +2024-06-27,56463,3090,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3687.15,{},199683,0,South America +2024-03-02,56464,7683,"[""Phone""]",806.59,{},46337,0,North America +2024-11-01,56465,453,"[""Wireless Mouse""]",2434.84,{},229702,0,Asia +2024-02-23,56466,4844,"[""Tablet""]",4421.04,{},30149,1,Africa +2024-10-09,56467,3212,"[""Monitor"", ""Tablet"", ""Laptop""]",3672.39,{},210303,0,South America +2023-03-09,56468,4445,"[""Laptop"", ""Headphones""]",685.39,{},79440,1,Africa +2023-05-18,56469,5030,"[""Phone""]",1942.58,"{"""": ""6%""}",240627,0,Africa +2024-01-16,56470,1180,"[""Tablet"", ""Wireless Mouse""]",2467.8,"{"""": ""29%""}",246288,0,South America +2023-07-24,56471,3358,"[""Monitor"", ""Charger"", ""Headphones""]",115.86,"{""loyalty"": ""21%""}",83411,0,Africa +2023-10-19,56472,6262,"[""Wireless Mouse""]",4962.26,"{""promo"": ""22%""}",108966,0,North America +2023-04-06,56473,5338,"[""Monitor"", ""Charger"", ""Laptop""]",546.19,"{""promo"": ""12%""}",62892,1,Asia +2024-01-22,56474,5414,"[""Laptop""]",1569.13,{},279405,0,Asia +2023-05-08,56475,9207,"[""Headphones"", ""Phone"", ""Tablet""]",4945.24,{},17908,1,Africa +2023-07-06,56476,3192,"[""Wireless Mouse"", ""Keyboard""]",4119.07,"{"""": ""24%""}",115128,0,Asia +2024-07-07,56477,6626,"[""Wireless Mouse""]",1584.06,"{""promo"": ""8%""}",20687,1,Africa +2024-07-22,56478,6457,"[""Laptop""]",1242.2,"{"""": ""29%""}",149960,0,South America +2024-06-05,56479,8296,"[""Tablet"", ""Headphones"", ""Charger""]",4147.12,"{""promo"": ""11%""}",137280,1,Africa +2024-01-11,56480,27,"[""Keyboard"", ""Phone""]",1635.43,{},256525,0,North America +2024-11-16,56481,9678,"[""Wireless Mouse""]",682.97,"{""seasonal"": ""19%""}",48100,0,South America +2023-11-04,56482,4927,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1305.86,"{""loyalty"": ""23%""}",225967,1,North America +2023-03-03,56483,9960,"[""Keyboard"", ""Laptop"", ""Tablet""]",4190.1,{},116519,1,Asia +2023-09-22,56484,8511,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4519.91,{},208787,1,South America +2023-07-09,56485,9253,"[""Charger"", ""Tablet""]",2138.73,{},26015,0,Africa +2024-10-19,56486,5941,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2966.92,"{"""": ""29%""}",189505,0,Europe +2024-06-25,56487,1825,"[""Keyboard""]",3528.48,"{"""": ""27%""}",267405,1,South America +2024-01-11,56488,8478,"[""Monitor"", ""Keyboard""]",2293.33,{},124174,1,Europe +2024-04-24,56489,6492,"[""Monitor"", ""Keyboard""]",1333.66,{},58416,0,North America +2023-01-19,56490,1609,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3708.58,"{""loyalty"": ""11%""}",178283,0,Europe +2024-09-10,56491,6312,"[""Laptop""]",2150.72,"{""loyalty"": ""5%""}",76057,0,Asia +2023-09-25,56492,8269,"[""Charger"", ""Monitor"", ""Tablet""]",4386.85,{},197457,0,South America +2024-06-22,56493,4990,"[""Monitor""]",1440.69,"{""loyalty"": ""5%""}",251562,0,Asia +2023-06-04,56494,1735,"[""Monitor""]",2004.42,"{"""": ""6%""}",20967,0,South America +2024-10-31,56495,7932,"[""Phone""]",3962.4,"{""loyalty"": ""13%""}",169703,0,Africa +2023-12-15,56496,7398,"[""Charger"", ""Laptop""]",4235.05,{},97872,0,Africa +2023-08-12,56497,5936,"[""Charger"", ""Phone"", ""Monitor""]",984.42,"{""seasonal"": ""28%""}",218174,1,Africa +2023-07-08,56498,4589,"[""Phone""]",818.57,"{""promo"": ""19%""}",250277,0,Africa +2024-06-21,56499,5908,"[""Headphones"", ""Charger""]",3513.78,"{""seasonal"": ""26%""}",284821,1,Asia +2023-07-15,56500,5821,"[""Monitor"", ""Phone""]",4502.67,"{""seasonal"": ""25%""}",251083,0,South America +2024-12-03,56501,2982,"[""Keyboard"", ""Monitor"", ""Tablet""]",2252.5,{},64576,1,Africa +2024-12-09,56502,9406,"[""Headphones"", ""Monitor"", ""Keyboard""]",1409.18,{},1002,1,Africa +2023-07-20,56503,974,"[""Monitor"", ""Laptop"", ""Headphones""]",4881.75,"{""seasonal"": ""14%""}",84332,1,North America +2023-07-31,56504,4253,"[""Keyboard"", ""Laptop""]",4916.88,{},245342,0,South America +2023-09-23,56505,9083,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3799.14,"{""seasonal"": ""14%""}",108450,0,North America +2024-06-11,56506,4318,"[""Keyboard""]",3202.48,"{"""": ""17%""}",257634,1,Africa +2023-05-30,56507,4243,"[""Tablet""]",2588.99,{},190452,0,Africa +2023-03-16,56508,5107,"[""Tablet"", ""Headphones""]",2527.01,{},47543,0,Asia +2023-09-17,56509,177,"[""Charger"", ""Laptop""]",824.51,"{""promo"": ""14%""}",36914,1,North America +2024-09-02,56510,4098,"[""Charger""]",841.44,{},29740,0,Asia +2024-05-17,56511,2046,"[""Tablet""]",2927.76,"{""promo"": ""12%""}",191180,1,Asia +2024-06-01,56512,8564,"[""Monitor""]",72.51,{},94652,0,Europe +2023-09-08,56513,4600,"[""Headphones"", ""Laptop"", ""Monitor""]",441.07,"{""seasonal"": ""10%""}",269199,0,North America +2024-03-19,56514,2137,"[""Tablet""]",342.53,"{""loyalty"": ""16%""}",121190,1,Europe +2023-02-14,56515,8329,"[""Laptop""]",1919.23,{},66487,0,North America +2023-02-25,56516,7237,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4728.3,{},115245,1,North America +2023-10-24,56517,3404,"[""Monitor"", ""Phone"", ""Tablet""]",3050.56,{},93329,0,Asia +2024-07-28,56518,4933,"[""Phone"", ""Tablet""]",4260.77,"{""promo"": ""24%""}",158271,1,Africa +2024-01-04,56519,411,"[""Tablet"", ""Laptop""]",3551.64,"{""promo"": ""5%""}",177227,1,North America +2023-09-04,56520,9102,"[""Charger"", ""Monitor"", ""Headphones""]",3379.29,{},198689,0,Europe +2023-04-24,56521,9095,"[""Tablet""]",2887.15,{},291748,1,South America +2023-09-04,56522,3874,"[""Headphones"", ""Charger"", ""Laptop""]",209.26,{},28621,0,Africa +2023-03-15,56523,7174,"[""Tablet""]",4876.2,"{""promo"": ""28%""}",277998,1,South America +2024-08-26,56524,9329,"[""Headphones""]",2111.01,{},85893,0,South America +2023-05-13,56525,6195,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2796.94,{},241852,1,South America +2023-01-15,56526,7950,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2870.1,"{""seasonal"": ""22%""}",268121,1,Africa +2023-10-06,56527,3058,"[""Keyboard"", ""Headphones""]",1394.78,"{""seasonal"": ""20%""}",269729,0,Africa +2023-05-14,56528,4971,"[""Keyboard""]",4382.8,{},199135,1,Europe +2023-04-12,56529,3663,"[""Charger"", ""Wireless Mouse""]",1241.64,{},222936,1,Asia +2023-11-14,56530,1966,"[""Keyboard"", ""Tablet""]",3578.53,"{"""": ""28%""}",234304,1,South America +2024-03-28,56531,454,"[""Phone"", ""Headphones""]",3101.55,{},95441,0,Africa +2024-11-26,56532,1091,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",561.63,"{""loyalty"": ""7%""}",22824,1,Africa +2023-02-24,56533,1115,"[""Wireless Mouse""]",295.32,"{""loyalty"": ""29%""}",196731,1,North America +2024-07-28,56534,2246,"[""Keyboard"", ""Wireless Mouse""]",3286.96,"{""seasonal"": ""22%""}",257464,0,Africa +2023-10-03,56535,1212,"[""Tablet"", ""Keyboard"", ""Laptop""]",3021.35,"{""seasonal"": ""12%""}",238646,1,Asia +2023-01-17,56536,8107,"[""Headphones"", ""Phone""]",332.68,{},241592,0,Africa +2023-02-21,56537,2595,"[""Laptop"", ""Keyboard""]",2656.27,"{"""": ""9%""}",191810,0,Europe +2023-06-28,56538,9682,"[""Laptop""]",4997.42,"{""seasonal"": ""9%""}",98721,0,Europe +2024-04-19,56539,8015,"[""Headphones""]",4914.98,"{""promo"": ""23%""}",158768,1,Europe +2023-01-08,56540,6914,"[""Tablet"", ""Wireless Mouse""]",1300.69,{},102097,0,Africa +2023-03-08,56541,7815,"[""Charger"", ""Monitor"", ""Keyboard""]",2743.37,{},95678,1,Africa +2023-06-17,56542,4442,"[""Laptop"", ""Keyboard""]",4935.52,"{""loyalty"": ""13%""}",235447,0,North America +2023-04-12,56543,7699,"[""Wireless Mouse""]",1424.52,{},90502,1,Europe +2024-01-20,56544,2224,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3948.76,{},193832,0,Europe +2024-11-07,56545,3595,"[""Phone""]",2095.04,"{""seasonal"": ""6%""}",127332,0,North America +2024-01-03,56546,557,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4883.3,"{""loyalty"": ""29%""}",94691,1,Europe +2023-01-18,56547,6953,"[""Keyboard"", ""Laptop"", ""Phone""]",3466.99,{},79499,0,Europe +2023-06-27,56548,2911,"[""Charger""]",3388.82,{},78763,0,South America +2024-04-17,56549,1340,"[""Keyboard"", ""Headphones""]",2135.2,{},132181,0,South America +2023-11-25,56550,614,"[""Charger""]",2710.9,{},74947,1,Africa +2024-04-18,56551,1383,"[""Keyboard""]",2919.61,"{""seasonal"": ""19%""}",53167,1,Europe +2024-04-13,56552,4142,"[""Headphones"", ""Monitor"", ""Laptop""]",697.26,"{""promo"": ""13%""}",187117,0,South America +2024-11-17,56553,5029,"[""Charger"", ""Phone"", ""Headphones""]",2566.87,{},96073,1,South America +2023-12-09,56554,4423,"[""Charger"", ""Wireless Mouse""]",3530.74,{},190001,0,Europe +2023-05-02,56555,1301,"[""Wireless Mouse"", ""Tablet""]",3617.64,"{"""": ""23%""}",269439,1,North America +2024-11-14,56556,3885,"[""Tablet"", ""Wireless Mouse""]",2596.03,{},205407,1,South America +2023-06-27,56557,8796,"[""Monitor"", ""Headphones""]",2610.59,{},293222,1,Europe +2024-06-04,56558,598,"[""Monitor""]",1818.14,"{"""": ""27%""}",268209,0,Africa +2024-06-28,56559,3223,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1681.89,{},64026,0,North America +2023-10-05,56560,2407,"[""Wireless Mouse""]",676.05,"{""seasonal"": ""22%""}",141005,1,North America +2023-08-26,56561,7954,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",488.05,{},215131,0,North America +2023-10-23,56562,4799,"[""Tablet"", ""Monitor""]",3185.17,"{""promo"": ""15%""}",237235,0,Europe +2024-04-14,56563,8265,"[""Wireless Mouse""]",1624.18,"{""seasonal"": ""23%""}",58778,1,North America +2024-08-18,56564,5805,"[""Wireless Mouse"", ""Tablet""]",1377.59,"{""promo"": ""11%""}",287100,1,North America +2023-09-17,56565,6269,"[""Tablet""]",3488.5,{},59866,0,South America +2023-02-17,56566,2522,"[""Tablet"", ""Laptop"", ""Keyboard""]",1523.82,{},81858,0,South America +2023-01-11,56567,9957,"[""Monitor"", ""Tablet""]",3768.9,{},205410,0,Asia +2023-10-18,56568,2253,"[""Charger"", ""Keyboard"", ""Monitor""]",1530.5,{},90614,1,North America +2023-09-28,56569,7325,"[""Charger"", ""Phone""]",3485.33,{},267605,0,Europe +2024-12-01,56570,6210,"[""Headphones"", ""Keyboard""]",2411.45,{},139228,0,Asia +2024-10-08,56571,1478,"[""Wireless Mouse""]",3496.82,{},113810,0,North America +2023-10-04,56572,6806,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2330.94,{},233297,1,Europe +2024-03-03,56573,1423,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",919.44,{},82135,0,Africa +2023-03-19,56574,4961,"[""Wireless Mouse"", ""Tablet""]",4752.79,{},177553,1,North America +2023-04-17,56575,8096,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2279.06,"{"""": ""27%""}",46866,0,North America +2024-03-29,56576,1639,"[""Keyboard""]",2743.72,{},137489,1,South America +2023-04-07,56577,3227,"[""Phone""]",2149.67,{},94423,0,South America +2024-02-26,56578,1059,"[""Laptop""]",2031.94,"{""promo"": ""25%""}",147262,0,South America +2024-03-20,56579,9252,"[""Keyboard""]",4652.16,{},62364,0,Asia +2023-06-25,56580,5772,"[""Monitor"", ""Tablet"", ""Laptop""]",2128.16,"{""loyalty"": ""30%""}",221335,1,Asia +2023-01-09,56581,3871,"[""Keyboard"", ""Phone""]",634.62,{},121749,0,South America +2024-02-02,56582,4349,"[""Headphones"", ""Laptop"", ""Tablet""]",3725.34,{},148229,1,Africa +2023-06-19,56583,872,"[""Charger"", ""Keyboard""]",1582.94,"{"""": ""30%""}",117918,0,North America +2023-02-12,56584,3937,"[""Laptop"", ""Charger""]",4605.42,"{""promo"": ""26%""}",93220,1,North America +2024-06-24,56585,1292,"[""Wireless Mouse"", ""Laptop""]",3283.54,"{""loyalty"": ""17%""}",21380,1,Africa +2024-11-29,56586,5364,"[""Keyboard""]",3290.42,"{"""": ""17%""}",30745,0,Asia +2023-06-20,56587,684,"[""Laptop""]",1014.8,"{""seasonal"": ""9%""}",184422,1,Asia +2023-08-12,56588,4077,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3778.22,"{""promo"": ""11%""}",237165,1,Europe +2024-04-10,56589,3855,"[""Tablet""]",3785.1,"{"""": ""22%""}",214502,0,Europe +2023-09-04,56590,5406,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",891.92,{},205057,0,Europe +2023-01-12,56591,2747,"[""Wireless Mouse"", ""Keyboard""]",344.41,"{"""": ""29%""}",131681,1,North America +2024-01-13,56592,9046,"[""Headphones"", ""Phone"", ""Monitor""]",3995.48,"{""seasonal"": ""19%""}",74139,0,South America +2024-07-09,56593,1869,"[""Charger"", ""Tablet"", ""Keyboard""]",2904.95,"{"""": ""16%""}",203465,1,Asia +2024-09-09,56594,1629,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4576.09,{},166012,1,North America +2024-07-30,56595,8253,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1856.33,"{""loyalty"": ""22%""}",15116,1,Africa +2024-03-13,56596,8782,"[""Headphones"", ""Phone""]",3304.82,{},1825,1,South America +2023-07-09,56597,4565,"[""Keyboard"", ""Headphones"", ""Monitor""]",3902.11,{},132911,1,South America +2024-05-31,56598,9050,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2159.23,"{"""": ""27%""}",160921,1,Africa +2023-07-19,56599,4027,"[""Laptop"", ""Headphones"", ""Charger""]",2110.29,"{""loyalty"": ""8%""}",22045,0,Asia +2023-08-17,56600,2606,"[""Wireless Mouse""]",394.96,"{""promo"": ""30%""}",56227,0,North America +2023-04-14,56601,6054,"[""Headphones""]",2373.79,{},236883,1,Asia +2023-09-14,56602,9329,"[""Phone""]",2781.71,"{""loyalty"": ""21%""}",186105,0,Asia +2023-11-15,56603,1185,"[""Phone""]",1906.54,{},133026,1,Asia +2024-12-29,56604,6372,"[""Monitor"", ""Headphones""]",1362.98,"{""loyalty"": ""27%""}",127762,1,South America +2024-09-01,56605,2780,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2104.37,{},227170,1,North America +2024-07-06,56606,7455,"[""Phone"", ""Charger""]",4687.57,"{"""": ""25%""}",107616,0,Europe +2024-01-11,56607,5768,"[""Laptop"", ""Headphones""]",3772.65,{},239280,0,Africa +2024-10-21,56608,6368,"[""Laptop""]",4676.94,{},87756,0,Europe +2024-07-04,56609,1900,"[""Monitor""]",4912.74,"{"""": ""20%""}",278392,1,Asia +2023-04-11,56610,1854,"[""Laptop""]",4555.37,{},223861,1,South America +2024-03-30,56611,4652,"[""Phone""]",4349.91,{},159231,1,Europe +2024-06-10,56612,5445,"[""Headphones""]",2980.18,{},72000,1,South America +2024-10-21,56613,8753,"[""Phone"", ""Tablet""]",3200.14,"{""loyalty"": ""28%""}",181647,0,Asia +2024-04-27,56614,7575,"[""Headphones""]",3332.67,{},58979,1,South America +2024-08-26,56615,6711,"[""Laptop""]",3800.91,"{"""": ""9%""}",32377,1,Asia +2023-12-05,56616,458,"[""Headphones"", ""Phone""]",3609.63,"{"""": ""23%""}",228553,1,Asia +2024-01-07,56617,2757,"[""Monitor""]",4225.41,"{""seasonal"": ""21%""}",60119,1,Asia +2023-07-08,56618,1361,"[""Tablet"", ""Charger"", ""Laptop""]",3534.14,"{""loyalty"": ""10%""}",46351,1,South America +2024-07-09,56619,4497,"[""Wireless Mouse""]",2206.06,"{""seasonal"": ""15%""}",70057,1,North America +2024-05-22,56620,9058,"[""Laptop""]",840.56,{},198152,0,North America +2024-06-17,56621,2987,"[""Wireless Mouse"", ""Tablet""]",715.2,"{"""": ""25%""}",162837,0,South America +2023-02-01,56622,5809,"[""Charger""]",4985.08,"{""promo"": ""19%""}",114585,1,North America +2023-11-09,56623,2779,"[""Laptop"", ""Tablet""]",2820.6,"{"""": ""12%""}",148049,1,Europe +2023-08-29,56624,978,"[""Charger""]",2430.98,{},54625,1,Europe +2024-03-21,56625,450,"[""Laptop""]",3139.71,{},238603,0,Africa +2023-10-05,56626,5007,"[""Keyboard"", ""Phone"", ""Monitor""]",3589.05,"{""promo"": ""14%""}",247299,0,North America +2024-07-14,56627,484,"[""Monitor"", ""Tablet""]",3489.46,"{"""": ""12%""}",76568,1,Africa +2024-11-06,56628,1297,"[""Keyboard""]",2132.86,"{""seasonal"": ""13%""}",298843,1,North America +2024-12-10,56629,4477,"[""Laptop"", ""Phone"", ""Headphones""]",2281.61,{},90696,1,Asia +2024-07-24,56630,3880,"[""Monitor"", ""Headphones""]",799.31,"{"""": ""30%""}",247266,0,South America +2023-04-13,56631,5011,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3161.93,{},268071,0,Europe +2024-02-07,56632,9479,"[""Headphones""]",1455.34,"{""seasonal"": ""22%""}",240595,1,South America +2024-02-23,56633,8293,"[""Tablet"", ""Headphones"", ""Monitor""]",1678.17,"{""seasonal"": ""8%""}",180962,0,Europe +2023-04-10,56634,7701,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3153.95,{},244249,0,South America +2023-07-25,56635,9048,"[""Laptop""]",1126.66,{},205723,0,North America +2023-04-20,56636,1270,"[""Keyboard""]",2351.16,{},123293,0,Africa +2024-10-22,56637,1756,"[""Keyboard"", ""Wireless Mouse""]",986.64,"{""promo"": ""20%""}",193647,1,Europe +2023-12-10,56638,8367,"[""Monitor"", ""Charger"", ""Laptop""]",3047.54,{},274232,1,Europe +2023-10-17,56639,3044,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4308.94,{},210535,1,Africa +2024-09-13,56640,8705,"[""Laptop"", ""Phone""]",489.01,{},57774,0,South America +2023-03-21,56641,1464,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1316.83,"{"""": ""12%""}",209462,0,Africa +2023-08-06,56642,8383,"[""Keyboard""]",668.73,"{""loyalty"": ""9%""}",65335,0,North America +2024-09-08,56643,1793,"[""Tablet""]",2020.53,"{""seasonal"": ""26%""}",111968,1,South America +2024-08-12,56644,8227,"[""Wireless Mouse"", ""Laptop""]",3030.06,"{""promo"": ""26%""}",97295,0,Africa +2023-09-18,56645,8017,"[""Tablet"", ""Charger""]",3535.53,"{""loyalty"": ""13%""}",43965,1,South America +2023-04-27,56646,9721,"[""Keyboard""]",4393.39,"{""loyalty"": ""7%""}",104414,0,North America +2024-03-31,56647,4663,"[""Headphones"", ""Tablet""]",851.27,{},266448,0,Asia +2023-09-29,56648,499,"[""Headphones""]",3134.39,{},206822,0,Asia +2023-11-14,56649,5661,"[""Keyboard"", ""Phone""]",4069.07,"{""seasonal"": ""24%""}",218732,0,South America +2024-07-09,56650,533,"[""Keyboard"", ""Phone""]",1280.95,{},284447,1,Africa +2024-01-06,56651,454,"[""Wireless Mouse"", ""Charger""]",2570.27,"{""loyalty"": ""9%""}",276312,0,North America +2023-08-22,56652,802,"[""Wireless Mouse"", ""Monitor""]",3030.55,"{""loyalty"": ""21%""}",289823,0,Europe +2024-10-26,56653,7307,"[""Wireless Mouse""]",87.91,"{"""": ""9%""}",205999,1,North America +2024-03-29,56654,883,"[""Tablet""]",768.51,"{"""": ""28%""}",16323,0,Asia +2023-07-28,56655,3680,"[""Charger"", ""Phone"", ""Headphones""]",2199.49,"{""seasonal"": ""14%""}",179336,0,Asia +2023-04-30,56656,6783,"[""Phone"", ""Tablet"", ""Keyboard""]",2208.15,"{"""": ""25%""}",285630,0,North America +2024-06-17,56657,9896,"[""Tablet"", ""Charger"", ""Keyboard""]",3036.15,{},161261,0,Africa +2023-09-30,56658,8825,"[""Laptop"", ""Keyboard""]",2227.62,{},295359,0,Asia +2024-05-11,56659,7074,"[""Monitor"", ""Phone"", ""Tablet""]",3981.82,{},162409,1,Africa +2023-01-01,56660,6595,"[""Headphones"", ""Laptop""]",4718.36,"{""seasonal"": ""18%""}",95205,1,Europe +2023-03-31,56661,5004,"[""Charger"", ""Tablet""]",3371.91,{},41751,0,South America +2023-05-14,56662,8555,"[""Laptop""]",2765.78,"{""loyalty"": ""20%""}",159990,0,North America +2024-07-07,56663,9435,"[""Keyboard"", ""Headphones"", ""Tablet""]",2341.5,{},43746,1,Africa +2023-12-09,56664,8375,"[""Keyboard""]",3026.13,"{""seasonal"": ""5%""}",105198,0,Asia +2024-09-11,56665,4967,"[""Keyboard"", ""Charger""]",2813.79,"{""seasonal"": ""30%""}",279330,1,South America +2023-01-10,56666,5737,"[""Keyboard"", ""Monitor""]",1208.57,"{"""": ""17%""}",79436,1,South America +2024-02-26,56667,3514,"[""Tablet"", ""Laptop""]",1239.47,{},158721,0,South America +2023-06-23,56668,8630,"[""Charger"", ""Tablet"", ""Laptop""]",1260.73,{},77002,0,South America +2024-07-02,56669,9493,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4964.38,{},29276,0,Europe +2024-02-04,56670,2067,"[""Tablet"", ""Headphones"", ""Laptop""]",3696.67,"{""seasonal"": ""9%""}",233980,1,Africa +2023-06-30,56671,6305,"[""Laptop"", ""Wireless Mouse""]",4019.17,"{"""": ""23%""}",12552,0,Europe +2024-01-28,56672,1378,"[""Monitor"", ""Headphones""]",3875.36,{},82570,1,South America +2024-07-18,56673,7688,"[""Phone"", ""Monitor"", ""Tablet""]",2214.94,"{""promo"": ""5%""}",112725,0,Europe +2024-12-16,56674,6033,"[""Tablet""]",1898.4,{},105608,0,Africa +2023-06-06,56675,7240,"[""Headphones"", ""Charger""]",2448.3,"{"""": ""15%""}",260170,1,South America +2023-11-04,56676,4613,"[""Keyboard"", ""Monitor"", ""Headphones""]",4750.92,{},200710,1,South America +2024-10-17,56677,7337,"[""Laptop"", ""Headphones""]",1697.31,"{""seasonal"": ""13%""}",16481,1,North America +2023-09-20,56678,2468,"[""Phone"", ""Monitor"", ""Headphones""]",1164.89,{},260679,0,Europe +2023-04-06,56679,6709,"[""Laptop"", ""Monitor"", ""Keyboard""]",4690.33,{},172698,1,North America +2024-10-27,56680,2067,"[""Wireless Mouse""]",1999.66,"{"""": ""6%""}",195564,0,Europe +2024-03-13,56681,5604,"[""Headphones""]",591.89,"{"""": ""9%""}",267947,0,North America +2024-02-11,56682,8602,"[""Keyboard""]",4489.12,{},256911,1,Asia +2024-01-04,56683,7067,"[""Charger"", ""Phone""]",1645.57,"{"""": ""15%""}",26900,1,South America +2023-07-17,56684,3638,"[""Tablet""]",1263.44,{},55636,1,Europe +2024-06-11,56685,6054,"[""Phone"", ""Keyboard""]",1245.85,"{""loyalty"": ""8%""}",186241,1,South America +2024-02-11,56686,6895,"[""Monitor""]",4444.34,"{""promo"": ""11%""}",169580,1,Europe +2024-12-13,56687,7703,"[""Phone"", ""Keyboard""]",2271.75,"{""promo"": ""11%""}",146857,1,Europe +2023-08-22,56688,3608,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4794.47,{},244298,1,South America +2024-09-06,56689,287,"[""Phone"", ""Keyboard"", ""Headphones""]",328.97,"{""promo"": ""7%""}",111202,1,South America +2023-09-19,56690,2742,"[""Tablet"", ""Wireless Mouse""]",3294.99,{},115901,1,Europe +2024-03-03,56691,4151,"[""Headphones"", ""Laptop"", ""Keyboard""]",1416.93,"{""seasonal"": ""5%""}",120888,0,Africa +2024-06-25,56692,8997,"[""Headphones"", ""Monitor""]",1374.2,{},131731,1,Asia +2023-07-18,56693,6271,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3960.75,{},79417,1,Africa +2023-04-01,56694,7453,"[""Tablet""]",1172.76,{},271112,1,Europe +2023-08-26,56695,3174,"[""Phone"", ""Monitor"", ""Headphones""]",3921.18,"{"""": ""27%""}",179035,1,Asia +2024-07-10,56696,7394,"[""Keyboard"", ""Phone"", ""Laptop""]",1981.95,"{"""": ""8%""}",232255,1,North America +2023-06-16,56697,3125,"[""Phone"", ""Headphones""]",1747.76,"{""promo"": ""19%""}",105242,1,Africa +2024-10-07,56698,3142,"[""Monitor"", ""Headphones""]",390.71,"{""loyalty"": ""20%""}",184827,0,North America +2023-11-07,56699,1173,"[""Keyboard"", ""Monitor"", ""Headphones""]",809.15,"{""seasonal"": ""11%""}",55944,1,North America +2024-06-14,56700,9064,"[""Headphones""]",1732.39,"{""promo"": ""12%""}",241163,1,Africa +2023-06-10,56701,663,"[""Phone"", ""Charger""]",154.73,"{""loyalty"": ""7%""}",51538,1,Africa +2024-11-18,56702,9164,"[""Headphones"", ""Charger"", ""Laptop""]",427.5,"{"""": ""29%""}",230381,1,Asia +2023-12-10,56703,9380,"[""Phone""]",665.54,{},90853,1,Asia +2024-11-06,56704,6014,"[""Laptop"", ""Charger""]",431.47,"{""loyalty"": ""20%""}",1211,0,North America +2023-09-08,56705,9105,"[""Phone"", ""Headphones"", ""Keyboard""]",4707.91,"{"""": ""28%""}",6765,1,Africa +2024-09-04,56706,6153,"[""Wireless Mouse"", ""Phone""]",445.93,"{"""": ""15%""}",298261,0,North America +2023-06-02,56707,897,"[""Laptop"", ""Monitor""]",1627.88,{},86856,1,South America +2024-05-31,56708,9078,"[""Monitor"", ""Tablet"", ""Charger""]",3117.51,"{""promo"": ""9%""}",90878,1,South America +2024-09-23,56709,3821,"[""Keyboard"", ""Charger""]",4975.3,"{"""": ""9%""}",50040,1,Europe +2023-05-05,56710,8523,"[""Wireless Mouse""]",3796.8,{},193242,0,Asia +2023-12-15,56711,7630,"[""Tablet"", ""Laptop"", ""Phone""]",3059.93,{},57817,0,Asia +2024-09-27,56712,5378,"[""Tablet""]",955.2,"{""loyalty"": ""6%""}",278476,1,Asia +2023-07-15,56713,9356,"[""Charger""]",3286.67,{},89650,0,Africa +2023-09-18,56714,831,"[""Headphones""]",1245.02,{},234644,1,Europe +2024-04-24,56715,3636,"[""Tablet"", ""Monitor""]",4386.97,{},181546,1,Europe +2023-10-31,56716,6676,"[""Tablet"", ""Laptop"", ""Phone""]",4587.02,{},122220,1,Africa +2023-08-19,56717,6536,"[""Phone"", ""Headphones""]",1582.41,"{""loyalty"": ""22%""}",221232,0,South America +2024-03-18,56718,3494,"[""Tablet""]",842.25,{},19824,0,South America +2023-10-07,56719,7241,"[""Charger"", ""Wireless Mouse""]",3551.43,"{""seasonal"": ""20%""}",90387,0,Asia +2023-07-17,56720,714,"[""Headphones""]",2627.79,"{""promo"": ""21%""}",61993,0,Asia +2023-08-28,56721,9980,"[""Monitor"", ""Charger"", ""Keyboard""]",3996.94,"{""promo"": ""30%""}",214496,0,Africa +2024-09-13,56722,3018,"[""Monitor""]",2246.45,"{""seasonal"": ""6%""}",246981,1,Europe +2023-11-12,56723,5030,"[""Keyboard""]",4590.55,"{"""": ""30%""}",19383,1,Africa +2023-03-11,56724,4887,"[""Phone""]",2786.4,"{"""": ""27%""}",93038,1,South America +2023-12-22,56725,4413,"[""Headphones"", ""Phone""]",2910.98,"{""seasonal"": ""13%""}",89674,0,South America +2023-08-14,56726,5978,"[""Phone""]",1322.49,"{""promo"": ""17%""}",176918,1,Europe +2023-01-24,56727,9639,"[""Laptop"", ""Charger"", ""Phone""]",4909.81,{},206614,1,North America +2024-05-22,56728,6134,"[""Laptop""]",2423.49,"{"""": ""30%""}",282724,0,North America +2024-12-02,56729,9943,"[""Keyboard"", ""Charger""]",2925.01,"{""promo"": ""8%""}",101108,1,Europe +2024-02-21,56730,3429,"[""Headphones"", ""Phone"", ""Tablet""]",4970.83,"{"""": ""24%""}",194938,1,North America +2024-10-22,56731,3616,"[""Charger"", ""Wireless Mouse""]",3547.07,"{""loyalty"": ""27%""}",159464,1,North America +2023-05-27,56732,9342,"[""Headphones""]",2253.5,"{""promo"": ""28%""}",205229,0,Asia +2023-03-22,56733,2333,"[""Keyboard"", ""Tablet"", ""Charger""]",1831.05,{},167828,0,Europe +2024-01-30,56734,4490,"[""Charger""]",4892.21,"{""promo"": ""29%""}",3940,0,Europe +2024-09-13,56735,4287,"[""Headphones"", ""Wireless Mouse""]",2371.54,"{""loyalty"": ""23%""}",93456,1,Africa +2023-03-17,56736,1259,"[""Laptop"", ""Phone""]",2454.91,{},183376,0,South America +2023-09-04,56737,4508,"[""Wireless Mouse""]",4146.66,"{""promo"": ""18%""}",76616,1,Africa +2023-05-03,56738,8999,"[""Laptop"", ""Keyboard""]",3900.68,{},298979,1,Africa +2023-09-03,56739,9393,"[""Wireless Mouse"", ""Tablet""]",3373.14,{},249488,0,North America +2023-08-10,56740,5935,"[""Laptop"", ""Headphones"", ""Keyboard""]",3193.81,"{"""": ""6%""}",40690,1,Africa +2024-09-29,56741,7968,"[""Phone""]",1811.28,{},288963,0,Africa +2023-02-02,56742,3854,"[""Tablet"", ""Monitor""]",4957.13,"{""promo"": ""25%""}",215270,0,Africa +2024-11-26,56743,2701,"[""Keyboard"", ""Tablet""]",2322.32,"{""seasonal"": ""18%""}",44369,1,Africa +2023-04-09,56744,47,"[""Tablet"", ""Charger"", ""Keyboard""]",4735.43,{},125842,0,South America +2023-02-07,56745,2984,"[""Headphones""]",1462.37,"{""seasonal"": ""12%""}",296057,1,South America +2023-04-01,56746,6425,"[""Charger""]",4060.79,"{""promo"": ""18%""}",48026,1,South America +2024-03-25,56747,1979,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1922.55,{},76327,1,Asia +2023-08-25,56748,6592,"[""Charger"", ""Laptop""]",2591.6,{},105576,1,Europe +2024-03-05,56749,8040,"[""Phone""]",3470.1,{},236776,0,South America +2023-04-08,56750,967,"[""Monitor""]",4926.1,{},6014,1,Europe +2024-06-10,56751,4914,"[""Headphones"", ""Wireless Mouse""]",4422.19,{},149484,0,Asia +2024-05-28,56752,4016,"[""Phone""]",301.4,{},285672,1,South America +2023-07-13,56753,8070,"[""Headphones"", ""Laptop"", ""Monitor""]",4744.55,{},250696,1,North America +2023-04-17,56754,800,"[""Charger""]",507.15,"{""loyalty"": ""24%""}",21169,1,South America +2024-05-13,56755,778,"[""Wireless Mouse""]",3909.12,{},54498,0,South America +2024-09-19,56756,737,"[""Tablet""]",4171.15,{},202740,0,North America +2024-10-20,56757,6588,"[""Charger""]",1804.29,{},92099,0,South America +2024-03-16,56758,9724,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2751.85,"{""seasonal"": ""7%""}",276727,1,South America +2023-12-03,56759,3550,"[""Tablet"", ""Phone"", ""Monitor""]",3979.84,{},268200,0,South America +2023-10-08,56760,2025,"[""Monitor""]",4351.57,{},242835,0,Africa +2024-05-29,56761,1418,"[""Keyboard"", ""Monitor""]",1186.69,"{""promo"": ""27%""}",36502,0,Europe +2023-07-23,56762,7527,"[""Charger"", ""Headphones""]",4931.18,{},14708,0,North America +2023-09-22,56763,8092,"[""Wireless Mouse"", ""Tablet""]",3596.11,"{""seasonal"": ""8%""}",192700,0,Africa +2024-12-15,56764,1520,"[""Headphones""]",4098.03,"{""promo"": ""23%""}",233147,1,Europe +2023-05-05,56765,179,"[""Laptop"", ""Phone"", ""Monitor""]",2449.31,{},152682,0,Europe +2024-12-17,56766,4227,"[""Tablet"", ""Wireless Mouse""]",1194.08,"{"""": ""17%""}",68016,0,South America +2024-02-10,56767,1154,"[""Phone"", ""Tablet""]",4595.52,{},295229,1,Asia +2024-05-09,56768,6883,"[""Laptop""]",586.97,{},140230,0,Asia +2024-05-19,56769,7797,"[""Charger""]",4401.73,"{""loyalty"": ""6%""}",163988,0,South America +2024-01-26,56770,2805,"[""Headphones"", ""Tablet""]",2786.54,{},251896,1,Asia +2023-05-04,56771,1502,"[""Keyboard"", ""Monitor""]",4115.25,{},57615,1,South America +2024-04-16,56772,740,"[""Laptop""]",2300.97,{},111944,1,Africa +2024-05-25,56773,5084,"[""Laptop""]",2126.79,"{"""": ""18%""}",82821,1,North America +2023-07-06,56774,4422,"[""Phone""]",1306.51,{},177654,0,Asia +2023-10-17,56775,9994,"[""Tablet"", ""Phone""]",4173.05,"{"""": ""8%""}",252769,1,South America +2023-06-04,56776,9680,"[""Monitor""]",4811.84,"{"""": ""29%""}",135139,1,North America +2024-04-18,56777,429,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",873.7,"{""loyalty"": ""25%""}",180139,0,Europe +2023-06-13,56778,1879,"[""Keyboard""]",1435.21,{},217592,0,South America +2023-09-28,56779,7393,"[""Monitor"", ""Keyboard"", ""Laptop""]",2860.75,{},89967,1,Europe +2024-03-28,56780,4542,"[""Headphones"", ""Monitor""]",1099.28,"{""promo"": ""26%""}",295517,0,Europe +2024-03-25,56781,370,"[""Phone"", ""Tablet""]",4094.55,{},44595,1,Europe +2023-02-23,56782,1334,"[""Charger"", ""Laptop""]",3418.88,{},94031,0,South America +2024-11-01,56783,3097,"[""Keyboard""]",2839.65,{},133528,1,South America +2024-05-06,56784,2745,"[""Phone"", ""Monitor"", ""Headphones""]",1202.68,"{""loyalty"": ""10%""}",76369,0,Africa +2023-06-21,56785,1687,"[""Charger""]",465.12,"{""promo"": ""14%""}",43760,1,South America +2024-03-17,56786,2558,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4341.45,{},69262,1,Africa +2023-11-23,56787,8285,"[""Wireless Mouse"", ""Monitor""]",4113.96,{},213442,1,Asia +2023-10-23,56788,6880,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2143.51,{},136084,0,Africa +2023-11-07,56789,7762,"[""Headphones"", ""Tablet""]",4710.91,{},135243,1,Asia +2024-05-24,56790,6700,"[""Charger""]",1852.15,{},48691,0,North America +2024-03-15,56791,4570,"[""Charger"", ""Monitor""]",843.64,"{""promo"": ""17%""}",276376,0,North America +2023-08-01,56792,2229,"[""Monitor""]",1706.0,{},108289,0,South America +2023-08-31,56793,20,"[""Laptop""]",2469.07,{},224030,0,Asia +2024-07-30,56794,3367,"[""Keyboard""]",4992.33,"{"""": ""30%""}",286668,1,Europe +2023-01-07,56795,8028,"[""Laptop"", ""Tablet""]",2894.69,"{""loyalty"": ""6%""}",213757,0,South America +2024-05-02,56796,6901,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1346.18,{},182334,0,Europe +2023-10-28,56797,3670,"[""Laptop"", ""Charger""]",4324.17,"{""promo"": ""8%""}",275191,0,Europe +2024-07-12,56798,3958,"[""Monitor"", ""Wireless Mouse""]",1597.85,{},182878,1,Africa +2023-03-18,56799,8420,"[""Charger""]",367.62,"{""seasonal"": ""21%""}",218367,0,North America +2024-02-21,56800,3362,"[""Keyboard"", ""Laptop"", ""Charger""]",4643.66,"{"""": ""24%""}",264223,0,Europe +2024-10-13,56801,4277,"[""Monitor""]",3641.93,{},85849,0,South America +2023-10-28,56802,6108,"[""Tablet"", ""Wireless Mouse""]",574.51,{},78285,1,Asia +2024-01-20,56803,1568,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2020.62,"{""loyalty"": ""28%""}",97252,0,Europe +2023-06-12,56804,8943,"[""Tablet"", ""Headphones"", ""Laptop""]",4023.44,{},232184,0,Africa +2024-07-08,56805,8125,"[""Wireless Mouse""]",1610.88,"{""loyalty"": ""25%""}",212209,0,Europe +2023-03-27,56806,3619,"[""Charger"", ""Wireless Mouse""]",3577.62,"{"""": ""7%""}",59457,1,Europe +2023-04-22,56807,4756,"[""Phone"", ""Laptop"", ""Keyboard""]",3016.44,{},37222,0,South America +2024-05-20,56808,7190,"[""Monitor"", ""Headphones""]",751.57,{},292869,0,Asia +2024-01-15,56809,2992,"[""Wireless Mouse"", ""Charger""]",4914.76,{},106395,0,Europe +2023-02-15,56810,1504,"[""Laptop"", ""Wireless Mouse""]",4982.32,"{""promo"": ""13%""}",172477,0,Africa +2023-06-21,56811,8401,"[""Wireless Mouse""]",1324.07,{},24261,1,Asia +2024-07-07,56812,6003,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1008.72,{},207794,1,North America +2023-10-27,56813,7329,"[""Headphones"", ""Phone"", ""Monitor""]",2939.88,"{""seasonal"": ""28%""}",88319,1,North America +2023-03-07,56814,4263,"[""Tablet"", ""Laptop""]",4615.72,{},177350,0,Africa +2024-08-23,56815,9013,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4450.41,{},3520,0,Africa +2024-12-13,56816,884,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",145.4,{},297607,0,Europe +2023-06-05,56817,8299,"[""Monitor""]",443.16,"{""seasonal"": ""14%""}",155691,1,South America +2024-12-20,56818,8351,"[""Laptop""]",1390.06,"{""loyalty"": ""14%""}",265492,1,Africa +2024-05-20,56819,5169,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1914.76,{},254890,0,Asia +2024-06-05,56820,5852,"[""Headphones""]",1642.48,"{""loyalty"": ""27%""}",155268,1,South America +2023-06-19,56821,2913,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4100.28,{},174380,0,Asia +2024-12-23,56822,3234,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3151.32,{},254234,1,North America +2024-10-13,56823,6958,"[""Monitor"", ""Headphones""]",2259.7,"{""loyalty"": ""5%""}",63847,0,North America +2024-06-27,56824,9032,"[""Phone"", ""Tablet"", ""Laptop""]",3290.82,{},98577,1,South America +2024-11-06,56825,1883,"[""Wireless Mouse""]",964.73,"{"""": ""30%""}",9520,1,Europe +2023-05-22,56826,491,"[""Phone"", ""Charger""]",755.39,"{"""": ""23%""}",151733,1,North America +2023-09-05,56827,1588,"[""Charger""]",1638.74,"{"""": ""12%""}",286587,1,Asia +2024-03-13,56828,8000,"[""Wireless Mouse""]",4011.04,{},201769,1,North America +2023-04-09,56829,9439,"[""Keyboard"", ""Headphones"", ""Monitor""]",2176.91,{},61546,0,Asia +2024-12-18,56830,6375,"[""Wireless Mouse""]",3103.04,"{""loyalty"": ""17%""}",197605,1,North America +2023-07-23,56831,4830,"[""Charger""]",463.1,{},20921,1,Asia +2024-11-21,56832,5865,"[""Headphones""]",3074.68,"{"""": ""26%""}",68791,0,Africa +2024-09-15,56833,4412,"[""Tablet"", ""Keyboard""]",794.93,{},115956,0,South America +2023-12-05,56834,6323,"[""Charger""]",1882.28,"{""promo"": ""7%""}",292299,1,Africa +2023-04-06,56835,760,"[""Keyboard"", ""Phone""]",2721.9,{},196934,1,North America +2024-05-25,56836,265,"[""Phone"", ""Keyboard""]",3314.14,"{""promo"": ""11%""}",106153,0,South America +2023-08-18,56837,812,"[""Headphones"", ""Monitor"", ""Phone""]",1671.96,"{""loyalty"": ""14%""}",298961,0,Europe +2023-09-09,56838,2882,"[""Phone"", ""Monitor"", ""Tablet""]",3190.0,{},53005,1,North America +2023-09-01,56839,7029,"[""Charger"", ""Wireless Mouse""]",4553.29,{},197436,1,North America +2023-06-28,56840,5053,"[""Phone"", ""Wireless Mouse""]",1436.9,"{""promo"": ""6%""}",129401,1,North America +2024-07-07,56841,4651,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2604.78,{},294152,1,North America +2024-05-28,56842,6747,"[""Charger"", ""Monitor"", ""Tablet""]",2192.72,{},27416,0,Asia +2023-09-23,56843,2400,"[""Headphones"", ""Charger"", ""Monitor""]",4525.64,{},188702,0,Asia +2024-02-03,56844,2245,"[""Headphones"", ""Tablet""]",997.44,{},186381,0,North America +2023-12-11,56845,7238,"[""Wireless Mouse""]",4544.89,"{""seasonal"": ""21%""}",167611,1,North America +2024-10-26,56846,5543,"[""Wireless Mouse"", ""Monitor""]",1715.94,{},207925,0,Asia +2023-12-18,56847,1515,"[""Headphones""]",2938.68,{},166753,0,Europe +2023-12-12,56848,4616,"[""Monitor""]",4778.8,"{""loyalty"": ""27%""}",132069,1,North America +2023-08-18,56849,6163,"[""Wireless Mouse"", ""Monitor""]",1682.52,{},119946,0,Europe +2024-12-01,56850,1817,"[""Keyboard"", ""Phone""]",3849.14,{},104951,1,Africa +2024-04-19,56851,4061,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2055.91,"{""seasonal"": ""21%""}",109788,1,South America +2024-11-01,56852,4964,"[""Keyboard"", ""Tablet"", ""Phone""]",2946.65,{},82550,1,Asia +2024-11-05,56853,706,"[""Charger"", ""Laptop"", ""Tablet""]",4470.33,{},264541,0,Europe +2024-08-23,56854,5641,"[""Monitor""]",3734.89,"{""seasonal"": ""17%""}",140431,1,Africa +2024-02-22,56855,4359,"[""Charger""]",2108.38,"{""seasonal"": ""15%""}",88309,0,Asia +2023-08-15,56856,6459,"[""Monitor""]",262.46,{},141241,1,Africa +2023-02-02,56857,8495,"[""Laptop"", ""Charger"", ""Tablet""]",203.58,"{"""": ""28%""}",269130,1,Asia +2023-11-20,56858,3412,"[""Keyboard"", ""Laptop""]",4139.65,{},289871,0,Asia +2024-06-10,56859,5957,"[""Tablet""]",2035.31,"{""loyalty"": ""16%""}",267882,0,South America +2024-12-30,56860,9481,"[""Wireless Mouse"", ""Phone""]",4221.75,{},51168,0,South America +2023-09-10,56861,3156,"[""Laptop"", ""Headphones"", ""Keyboard""]",2777.79,"{""loyalty"": ""22%""}",268928,1,Africa +2024-06-05,56862,5116,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3411.62,{},86964,1,Europe +2024-07-12,56863,2795,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2066.81,{},116765,0,Africa +2024-01-03,56864,1133,"[""Wireless Mouse""]",2294.24,"{""loyalty"": ""24%""}",254311,0,Asia +2024-03-24,56865,3683,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",456.93,"{""loyalty"": ""13%""}",274281,0,Asia +2023-02-04,56866,1230,"[""Monitor"", ""Headphones"", ""Charger""]",4067.63,"{""seasonal"": ""5%""}",258384,0,North America +2023-10-01,56867,9036,"[""Tablet""]",4601.22,{},281667,1,Asia +2023-12-04,56868,9909,"[""Phone""]",1625.42,"{"""": ""28%""}",123463,1,Europe +2023-12-04,56869,4042,"[""Headphones"", ""Phone""]",752.64,"{""seasonal"": ""30%""}",249026,1,North America +2024-07-26,56870,9495,"[""Tablet"", ""Headphones"", ""Keyboard""]",2909.3,"{""seasonal"": ""27%""}",42404,0,South America +2023-10-31,56871,9751,"[""Keyboard""]",1371.27,{},161417,1,Africa +2024-01-26,56872,7833,"[""Tablet"", ""Monitor""]",321.53,"{""loyalty"": ""5%""}",280087,1,South America +2024-12-13,56873,6358,"[""Tablet""]",2480.41,"{""seasonal"": ""28%""}",106870,0,Asia +2023-02-14,56874,3958,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",741.31,"{""seasonal"": ""20%""}",148874,1,Europe +2023-07-24,56875,1382,"[""Laptop"", ""Tablet""]",577.3,{},106926,1,North America +2024-04-06,56876,1251,"[""Tablet""]",4564.63,{},8175,0,Asia +2024-09-08,56877,4289,"[""Headphones""]",2914.9,{},122939,1,South America +2024-04-30,56878,8002,"[""Charger""]",1983.1,"{"""": ""21%""}",262012,0,Africa +2024-12-11,56879,2805,"[""Wireless Mouse"", ""Tablet""]",3411.86,{},144145,0,Africa +2023-01-31,56880,2129,"[""Charger"", ""Headphones"", ""Phone""]",1157.0,"{""seasonal"": ""14%""}",123205,0,South America +2023-12-12,56881,2043,"[""Laptop""]",433.28,"{""loyalty"": ""28%""}",296560,1,South America +2023-04-17,56882,9388,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",581.39,"{""promo"": ""13%""}",298229,1,Africa +2023-03-01,56883,7119,"[""Laptop"", ""Charger"", ""Monitor""]",2836.54,{},185259,1,Asia +2024-07-15,56884,3346,"[""Headphones"", ""Monitor""]",3601.27,{},215373,0,North America +2024-01-10,56885,8424,"[""Tablet""]",3048.12,"{""seasonal"": ""25%""}",282526,1,Europe +2023-08-05,56886,214,"[""Monitor"", ""Keyboard"", ""Laptop""]",2747.98,{},177080,1,South America +2024-12-04,56887,6223,"[""Charger""]",4698.33,{},227037,0,Asia +2023-12-31,56888,5338,"[""Tablet""]",4783.74,"{""loyalty"": ""15%""}",173803,0,South America +2023-11-07,56889,457,"[""Laptop"", ""Headphones"", ""Phone""]",1283.07,{},30499,0,Europe +2024-09-16,56890,6178,"[""Monitor""]",1048.63,"{"""": ""21%""}",288768,0,North America +2023-03-17,56891,8619,"[""Laptop"", ""Headphones"", ""Charger""]",1331.87,"{"""": ""19%""}",101013,1,North America +2023-12-06,56892,7366,"[""Monitor""]",1253.31,"{"""": ""8%""}",282563,0,Asia +2024-03-12,56893,6191,"[""Monitor"", ""Charger"", ""Laptop""]",778.2,{},169384,1,South America +2024-12-16,56894,5658,"[""Wireless Mouse"", ""Charger""]",2378.69,"{""loyalty"": ""11%""}",136136,0,Europe +2024-02-25,56895,8539,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4388.02,"{""seasonal"": ""14%""}",180597,1,South America +2023-07-11,56896,1667,"[""Monitor"", ""Keyboard""]",1677.21,{},241089,1,Africa +2024-09-13,56897,4645,"[""Monitor"", ""Tablet"", ""Laptop""]",2528.23,{},246590,1,Africa +2024-04-16,56898,6560,"[""Wireless Mouse"", ""Headphones""]",1753.69,"{""loyalty"": ""29%""}",256697,0,South America +2023-09-27,56899,6145,"[""Monitor""]",1018.92,{},224951,1,Asia +2023-07-20,56900,3501,"[""Keyboard"", ""Headphones""]",3787.19,{},279651,0,North America +2023-05-14,56901,6479,"[""Headphones"", ""Charger"", ""Monitor""]",1847.52,"{""loyalty"": ""12%""}",195393,0,Africa +2024-05-31,56902,713,"[""Phone"", ""Keyboard""]",2662.5,"{"""": ""13%""}",182458,0,Europe +2024-01-09,56903,8527,"[""Headphones""]",853.14,{},199867,0,Africa +2023-12-15,56904,9046,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3872.91,{},55944,0,Europe +2023-07-15,56905,6666,"[""Monitor"", ""Headphones""]",708.59,{},193957,1,Africa +2024-11-13,56906,3435,"[""Tablet""]",2571.7,"{""promo"": ""7%""}",213313,0,North America +2024-02-05,56907,8174,"[""Charger"", ""Monitor"", ""Headphones""]",3757.14,{},270314,0,Asia +2024-01-17,56908,9861,"[""Tablet"", ""Phone""]",4506.84,"{"""": ""29%""}",22259,0,Africa +2023-05-23,56909,1817,"[""Laptop"", ""Headphones"", ""Phone""]",1911.37,{},85422,1,South America +2023-04-07,56910,1098,"[""Phone"", ""Keyboard""]",1265.69,"{""seasonal"": ""18%""}",13410,0,Asia +2023-11-21,56911,4001,"[""Phone"", ""Wireless Mouse""]",3045.1,"{""promo"": ""11%""}",109404,1,South America +2023-07-27,56912,7890,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3984.23,{},266527,0,Asia +2024-05-24,56913,6383,"[""Phone""]",4817.05,"{"""": ""28%""}",21851,0,Africa +2024-12-08,56914,5506,"[""Wireless Mouse""]",4546.68,{},208661,1,Asia +2023-01-14,56915,6457,"[""Keyboard"", ""Charger""]",2128.47,{},298304,1,North America +2023-05-10,56916,1360,"[""Laptop""]",4124.8,{},192116,0,Asia +2023-08-05,56917,5652,"[""Monitor""]",3011.86,{},232465,1,Europe +2024-01-23,56918,9914,"[""Laptop"", ""Wireless Mouse""]",142.41,{},266144,1,Asia +2023-08-04,56919,3856,"[""Phone"", ""Laptop""]",3926.11,{},279603,0,Africa +2024-07-10,56920,7152,"[""Monitor""]",2271.47,{},34164,0,Europe +2023-08-17,56921,6450,"[""Wireless Mouse"", ""Headphones""]",3911.47,"{""loyalty"": ""25%""}",253820,0,South America +2023-11-26,56922,1874,"[""Tablet""]",4592.71,"{"""": ""15%""}",194014,1,Europe +2023-06-06,56923,5300,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",185.93,{},188070,0,South America +2023-06-22,56924,3636,"[""Monitor"", ""Laptop"", ""Tablet""]",4293.52,"{""promo"": ""28%""}",11289,0,Europe +2023-02-19,56925,9368,"[""Wireless Mouse"", ""Phone""]",1930.57,"{""loyalty"": ""10%""}",37138,0,Asia +2024-03-25,56926,5739,"[""Laptop""]",4892.85,{},78865,1,Asia +2023-05-18,56927,3068,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4205.67,"{""loyalty"": ""28%""}",84189,1,Asia +2024-11-04,56928,9945,"[""Charger""]",857.0,{},87449,0,Asia +2023-08-07,56929,7392,"[""Monitor"", ""Headphones""]",3144.32,{},189848,1,North America +2023-09-04,56930,6707,"[""Phone"", ""Wireless Mouse""]",2177.26,"{""promo"": ""12%""}",291382,1,Africa +2024-10-26,56931,7343,"[""Keyboard"", ""Monitor"", ""Phone""]",3412.77,{},203113,1,South America +2024-10-30,56932,6934,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2087.91,"{""promo"": ""7%""}",123872,1,North America +2024-07-17,56933,8298,"[""Tablet"", ""Laptop"", ""Headphones""]",842.45,{},280980,0,Africa +2023-05-15,56934,7286,"[""Tablet"", ""Wireless Mouse""]",1319.85,{},168958,1,North America +2024-01-03,56935,718,"[""Laptop"", ""Tablet"", ""Charger""]",1793.75,"{""promo"": ""19%""}",208231,1,Africa +2023-02-01,56936,5177,"[""Keyboard"", ""Wireless Mouse""]",184.8,"{""loyalty"": ""23%""}",229458,1,Africa +2024-02-29,56937,7967,"[""Charger"", ""Laptop"", ""Headphones""]",636.16,"{""loyalty"": ""27%""}",241788,0,South America +2023-08-06,56938,9816,"[""Phone""]",2826.15,{},221513,0,Africa +2023-12-14,56939,1572,"[""Headphones""]",3408.59,{},283392,1,Europe +2023-08-03,56940,7387,"[""Charger"", ""Phone"", ""Tablet""]",1652.21,"{""promo"": ""12%""}",9273,1,Africa +2023-06-01,56941,2581,"[""Wireless Mouse""]",2303.49,"{""promo"": ""21%""}",158821,1,South America +2023-05-22,56942,1716,"[""Tablet"", ""Laptop""]",4753.28,"{""seasonal"": ""24%""}",235594,1,South America +2024-04-02,56943,9885,"[""Monitor"", ""Headphones""]",1162.23,"{""promo"": ""10%""}",294442,1,Asia +2024-10-01,56944,7083,"[""Monitor"", ""Laptop"", ""Keyboard""]",1912.0,"{"""": ""14%""}",115259,1,Asia +2023-05-11,56945,1123,"[""Monitor""]",1103.67,"{""seasonal"": ""25%""}",103846,1,South America +2024-09-14,56946,5539,"[""Monitor""]",4259.94,"{"""": ""19%""}",38402,1,South America +2024-08-12,56947,5873,"[""Laptop"", ""Keyboard""]",1803.33,"{""loyalty"": ""29%""}",84593,1,Asia +2024-05-01,56948,2019,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3985.65,{},67597,0,Asia +2023-09-07,56949,6530,"[""Charger""]",4408.58,{},230594,1,North America +2023-02-28,56950,8603,"[""Monitor"", ""Charger""]",559.18,"{"""": ""13%""}",44583,0,Asia +2023-01-17,56951,9085,"[""Phone"", ""Tablet"", ""Laptop""]",808.44,"{"""": ""10%""}",117590,1,Africa +2023-12-04,56952,1000,"[""Headphones""]",3170.09,"{""seasonal"": ""9%""}",92060,0,North America +2024-06-03,56953,4314,"[""Phone""]",79.31,{},35703,1,Asia +2023-01-03,56954,1764,"[""Monitor""]",2737.44,{},265183,1,Africa +2023-05-26,56955,1167,"[""Monitor"", ""Keyboard"", ""Phone""]",4808.56,"{""promo"": ""28%""}",136963,0,Africa +2024-04-23,56956,7884,"[""Wireless Mouse"", ""Charger""]",80.77,"{"""": ""14%""}",110569,0,Asia +2024-07-05,56957,9265,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3337.16,"{""loyalty"": ""9%""}",298465,1,South America +2023-10-13,56958,5547,"[""Monitor"", ""Phone"", ""Headphones""]",1787.7,"{""promo"": ""5%""}",206436,0,North America +2024-08-28,56959,1568,"[""Wireless Mouse""]",4720.62,{},152820,0,North America +2023-09-04,56960,273,"[""Laptop"", ""Charger"", ""Monitor""]",3760.56,{},83832,0,Africa +2023-03-18,56961,4736,"[""Wireless Mouse""]",2958.81,{},223764,0,Asia +2024-12-31,56962,4129,"[""Tablet"", ""Charger"", ""Phone""]",2114.52,"{""seasonal"": ""5%""}",27974,0,South America +2023-01-30,56963,6705,"[""Charger"", ""Headphones""]",3119.22,{},101327,0,North America +2024-04-21,56964,8684,"[""Wireless Mouse"", ""Keyboard""]",94.93,{},15766,0,Africa +2023-03-01,56965,9460,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1619.44,{},209364,1,Europe +2024-08-30,56966,1822,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4385.65,"{""seasonal"": ""25%""}",248241,0,Europe +2023-06-09,56967,8040,"[""Laptop"", ""Charger""]",1342.92,"{"""": ""19%""}",59557,1,Africa +2023-12-24,56968,8113,"[""Monitor""]",3593.22,"{"""": ""13%""}",253631,0,Africa +2024-02-21,56969,7388,"[""Charger""]",1636.47,"{""promo"": ""28%""}",293057,0,Africa +2023-06-04,56970,4104,"[""Laptop""]",52.72,"{"""": ""22%""}",214650,0,Africa +2023-11-12,56971,9495,"[""Keyboard"", ""Tablet""]",3933.78,"{""promo"": ""24%""}",78138,0,North America +2023-07-22,56972,5492,"[""Laptop"", ""Phone"", ""Keyboard""]",1920.52,{},280455,0,Europe +2024-11-02,56973,4358,"[""Wireless Mouse"", ""Phone""]",1191.99,{},142218,0,North America +2023-09-01,56974,2359,"[""Keyboard"", ""Charger""]",457.0,"{""loyalty"": ""17%""}",221277,1,Europe +2023-07-20,56975,3352,"[""Laptop""]",2239.51,{},227915,1,Africa +2023-05-27,56976,3775,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2629.16,{},50308,0,Europe +2023-08-02,56977,2823,"[""Keyboard""]",52.19,"{""promo"": ""14%""}",132110,1,Europe +2023-06-17,56978,8020,"[""Phone"", ""Charger""]",4196.1,"{""seasonal"": ""20%""}",211094,0,Europe +2024-10-18,56979,7675,"[""Wireless Mouse"", ""Headphones""]",4928.37,{},279289,1,Asia +2024-07-30,56980,2653,"[""Wireless Mouse"", ""Keyboard""]",1143.55,"{""loyalty"": ""6%""}",211673,1,Europe +2023-06-12,56981,1875,"[""Monitor"", ""Wireless Mouse""]",3366.24,"{""seasonal"": ""28%""}",282067,0,South America +2024-08-08,56982,738,"[""Phone""]",458.84,"{""promo"": ""29%""}",215702,1,North America +2023-05-31,56983,4615,"[""Laptop"", ""Charger"", ""Phone""]",4867.61,"{""promo"": ""17%""}",62316,0,Asia +2024-10-28,56984,1210,"[""Keyboard""]",3132.37,{},181440,1,South America +2023-10-15,56985,7545,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4520.13,{},114168,1,Africa +2023-05-18,56986,2636,"[""Laptop"", ""Wireless Mouse""]",4676.89,{},236505,1,Asia +2024-12-27,56987,9083,"[""Phone""]",3000.67,{},172271,0,Asia +2023-08-05,56988,1531,"[""Keyboard""]",925.24,"{""loyalty"": ""22%""}",168534,1,Europe +2023-06-02,56989,8145,"[""Monitor"", ""Phone""]",1988.1,"{""seasonal"": ""20%""}",249250,0,North America +2023-06-22,56990,9725,"[""Headphones""]",3361.95,"{""seasonal"": ""9%""}",223767,1,Africa +2024-09-11,56991,6500,"[""Monitor"", ""Keyboard""]",2885.54,"{""seasonal"": ""12%""}",40435,1,Europe +2024-11-26,56992,8042,"[""Laptop"", ""Keyboard"", ""Headphones""]",483.75,{},158741,0,South America +2023-07-01,56993,8280,"[""Tablet"", ""Headphones""]",213.78,"{"""": ""14%""}",253607,1,South America +2023-01-23,56994,2060,"[""Headphones""]",2180.82,{},248171,1,Asia +2023-01-04,56995,7515,"[""Wireless Mouse""]",1215.72,{},81115,1,North America +2024-05-23,56996,4606,"[""Charger"", ""Laptop"", ""Headphones""]",1153.19,{},224428,0,Europe +2023-01-27,56997,7503,"[""Charger""]",1619.35,"{""seasonal"": ""15%""}",278953,1,Europe +2023-06-18,56998,9225,"[""Monitor""]",610.62,{},261394,0,Europe +2024-03-10,56999,7008,"[""Laptop""]",4700.37,"{""loyalty"": ""14%""}",296408,1,North America +2023-08-06,57000,3556,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3520.72,{},102842,1,Europe +2023-07-25,57001,9134,"[""Wireless Mouse"", ""Phone""]",2537.91,{},151903,1,North America +2024-07-29,57002,4389,"[""Tablet"", ""Charger""]",2424.96,{},143715,0,Africa +2024-06-20,57003,9985,"[""Phone"", ""Monitor""]",2622.7,"{""seasonal"": ""14%""}",240413,0,Asia +2024-07-27,57004,1375,"[""Keyboard"", ""Laptop"", ""Phone""]",1896.58,{},28027,1,Asia +2024-11-27,57005,2623,"[""Laptop"", ""Phone"", ""Charger""]",2268.07,"{""loyalty"": ""5%""}",250107,0,South America +2023-03-21,57006,9409,"[""Keyboard""]",1959.17,"{""promo"": ""17%""}",152992,1,North America +2023-12-13,57007,2555,"[""Laptop"", ""Charger""]",4203.96,{},200918,0,Asia +2023-07-17,57008,9323,"[""Wireless Mouse""]",94.78,{},183142,0,Asia +2024-09-17,57009,1539,"[""Laptop""]",1559.04,{},88198,1,Europe +2024-10-06,57010,4874,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1698.02,{},238683,0,South America +2024-06-02,57011,3059,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3741.85,"{"""": ""8%""}",262737,1,North America +2023-12-16,57012,2557,"[""Phone"", ""Laptop""]",2387.71,"{"""": ""15%""}",254129,0,Europe +2024-03-26,57013,5743,"[""Laptop"", ""Keyboard"", ""Phone""]",3341.57,"{""seasonal"": ""21%""}",105753,1,Africa +2024-10-30,57014,5244,"[""Keyboard""]",2188.54,"{"""": ""16%""}",155903,0,Asia +2024-06-02,57015,2553,"[""Wireless Mouse""]",2560.29,{},281050,0,Africa +2023-04-17,57016,6178,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2769.21,"{""seasonal"": ""22%""}",46826,1,Asia +2023-04-06,57017,5730,"[""Wireless Mouse"", ""Laptop""]",376.77,"{""loyalty"": ""23%""}",181899,1,Europe +2024-09-23,57018,1177,"[""Tablet"", ""Charger""]",4525.95,"{""seasonal"": ""29%""}",258487,1,North America +2024-07-08,57019,3365,"[""Monitor""]",1748.64,{},266730,0,Africa +2023-09-04,57020,576,"[""Phone""]",636.36,"{"""": ""7%""}",141587,0,Africa +2024-04-28,57021,9189,"[""Laptop"", ""Charger""]",3641.76,{},247454,0,Europe +2023-11-20,57022,9920,"[""Keyboard"", ""Laptop""]",2903.18,"{""seasonal"": ""13%""}",35149,0,Asia +2024-03-09,57023,4458,"[""Keyboard"", ""Phone""]",3950.23,"{""loyalty"": ""9%""}",121864,0,North America +2023-07-24,57024,8352,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2711.7,"{""seasonal"": ""5%""}",59612,1,North America +2023-08-17,57025,1721,"[""Headphones""]",1163.93,{},286968,0,Africa +2024-08-18,57026,7941,"[""Keyboard""]",4176.72,{},237081,0,Europe +2024-06-27,57027,7299,"[""Wireless Mouse""]",2683.71,"{""promo"": ""11%""}",85488,1,North America +2023-10-26,57028,3350,"[""Phone"", ""Monitor""]",4313.53,"{""seasonal"": ""19%""}",23696,1,Asia +2024-05-19,57029,9060,"[""Phone"", ""Charger""]",1406.63,{},114519,0,South America +2023-11-16,57030,1333,"[""Keyboard"", ""Tablet""]",2859.8,{},188148,1,North America +2023-05-03,57031,5618,"[""Laptop"", ""Monitor"", ""Keyboard""]",4380.53,{},34730,1,Europe +2023-12-10,57032,1148,"[""Tablet"", ""Wireless Mouse""]",3444.27,"{"""": ""25%""}",224713,1,South America +2024-01-18,57033,6222,"[""Phone""]",4595.0,"{""loyalty"": ""13%""}",207294,0,North America +2024-01-05,57034,8883,"[""Charger""]",2533.98,{},48106,0,Asia +2023-12-30,57035,266,"[""Keyboard"", ""Phone""]",1508.24,{},176253,0,Europe +2024-05-27,57036,5053,"[""Monitor""]",4409.17,{},126667,0,Africa +2024-11-22,57037,5154,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4659.71,{},21225,1,Asia +2023-02-17,57038,6723,"[""Monitor""]",3797.29,{},94676,1,Africa +2024-04-06,57039,2417,"[""Monitor"", ""Laptop""]",2458.42,{},30706,0,Africa +2024-05-27,57040,4178,"[""Keyboard"", ""Phone"", ""Laptop""]",3640.72,{},238394,1,Europe +2023-06-10,57041,1128,"[""Headphones""]",4740.42,"{"""": ""16%""}",108803,1,Asia +2024-07-06,57042,5581,"[""Charger"", ""Laptop""]",4546.74,{},119982,1,North America +2024-08-16,57043,9433,"[""Monitor"", ""Tablet"", ""Phone""]",4169.63,{},60186,1,North America +2024-05-17,57044,4754,"[""Headphones"", ""Phone""]",233.07,{},62265,1,Asia +2024-12-11,57045,5139,"[""Laptop"", ""Headphones"", ""Phone""]",3090.27,{},236459,0,Africa +2023-05-28,57046,4280,"[""Monitor"", ""Headphones"", ""Phone""]",1947.68,{},222300,1,Africa +2024-12-22,57047,203,"[""Phone"", ""Laptop"", ""Monitor""]",4625.19,"{""loyalty"": ""28%""}",105628,1,Europe +2023-01-30,57048,5170,"[""Wireless Mouse"", ""Laptop""]",1600.14,"{""promo"": ""14%""}",46082,1,South America +2023-09-06,57049,2990,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4931.89,{},144429,0,Asia +2024-12-07,57050,8976,"[""Laptop""]",2096.76,"{""promo"": ""24%""}",11328,0,North America +2023-05-30,57051,3269,"[""Keyboard"", ""Charger"", ""Headphones""]",3316.68,{},35613,1,South America +2024-11-02,57052,6438,"[""Tablet""]",4689.81,"{""promo"": ""29%""}",104724,1,Asia +2023-09-09,57053,8142,"[""Phone"", ""Laptop"", ""Tablet""]",4436.71,"{""seasonal"": ""8%""}",132067,0,Europe +2024-02-18,57054,876,"[""Laptop"", ""Wireless Mouse""]",1377.41,"{""seasonal"": ""27%""}",275032,0,North America +2024-09-12,57055,789,"[""Charger""]",3598.6,"{"""": ""9%""}",32078,0,Asia +2023-02-21,57056,9588,"[""Headphones"", ""Laptop""]",3911.31,"{"""": ""5%""}",265422,1,South America +2023-03-21,57057,9366,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1270.57,{},39417,1,North America +2024-04-21,57058,520,"[""Tablet"", ""Wireless Mouse""]",3930.41,"{"""": ""16%""}",10595,1,Africa +2024-01-22,57059,3962,"[""Phone"", ""Monitor""]",2769.84,{},181938,1,North America +2023-01-26,57060,6086,"[""Phone"", ""Headphones""]",1647.18,{},94981,0,Europe +2024-11-22,57061,8490,"[""Laptop"", ""Phone""]",1098.01,{},128803,0,Asia +2023-01-21,57062,6557,"[""Monitor""]",731.79,{},92185,1,North America +2023-08-23,57063,411,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3762.84,{},277369,1,Europe +2023-03-23,57064,4787,"[""Keyboard""]",1105.24,{},284733,1,Europe +2024-01-21,57065,3927,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2910.3,"{""loyalty"": ""28%""}",155422,0,Asia +2023-08-31,57066,1523,"[""Tablet""]",3596.19,{},224727,1,Europe +2023-03-22,57067,6436,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2376.12,{},269154,1,North America +2023-04-23,57068,6338,"[""Headphones""]",1807.45,{},274367,1,Africa +2023-06-23,57069,2662,"[""Tablet"", ""Phone""]",458.14,"{"""": ""6%""}",36405,0,North America +2023-08-11,57070,3258,"[""Headphones"", ""Tablet"", ""Charger""]",1331.86,"{"""": ""25%""}",23181,0,Africa +2024-12-27,57071,7039,"[""Keyboard"", ""Phone"", ""Monitor""]",4576.52,{},112491,1,South America +2023-07-14,57072,2775,"[""Charger"", ""Laptop"", ""Phone""]",4759.92,{},217275,0,North America +2023-10-31,57073,6627,"[""Monitor"", ""Charger"", ""Keyboard""]",1543.71,"{""seasonal"": ""8%""}",28104,1,Asia +2023-11-07,57074,7143,"[""Tablet""]",3290.77,{},45645,1,South America +2024-12-20,57075,5306,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",312.76,{},74792,0,North America +2024-06-11,57076,7120,"[""Headphones"", ""Monitor""]",3886.12,{},19214,1,Europe +2023-08-27,57077,4058,"[""Charger""]",438.56,"{""promo"": ""19%""}",248004,1,South America +2023-06-11,57078,8037,"[""Headphones"", ""Keyboard""]",3615.16,"{"""": ""6%""}",91329,1,South America +2024-06-14,57079,3666,"[""Phone"", ""Wireless Mouse""]",2847.25,"{"""": ""19%""}",184207,1,Europe +2024-01-24,57080,6383,"[""Laptop""]",2326.39,"{"""": ""15%""}",147760,1,Europe +2023-05-25,57081,2308,"[""Charger"", ""Tablet"", ""Monitor""]",1230.86,{},88466,0,South America +2024-01-05,57082,6012,"[""Laptop"", ""Phone""]",4544.59,{},247737,0,Europe +2023-10-20,57083,8485,"[""Wireless Mouse""]",4077.65,"{""loyalty"": ""17%""}",289069,0,North America +2023-02-16,57084,5348,"[""Phone"", ""Monitor""]",201.45,{},263594,0,Asia +2024-01-27,57085,2789,"[""Charger""]",3340.65,"{"""": ""18%""}",127369,1,Asia +2023-03-24,57086,680,"[""Charger"", ""Phone""]",50.93,"{""promo"": ""21%""}",206237,1,North America +2023-10-24,57087,8821,"[""Charger""]",3534.24,"{""promo"": ""10%""}",77451,1,South America +2024-02-13,57088,2282,"[""Laptop"", ""Charger"", ""Headphones""]",2814.44,"{"""": ""9%""}",27313,1,South America +2024-12-01,57089,7161,"[""Headphones"", ""Wireless Mouse""]",4064.58,"{""loyalty"": ""19%""}",84102,0,North America +2024-08-15,57090,2251,"[""Monitor""]",1201.55,"{""promo"": ""24%""}",168808,0,North America +2023-05-02,57091,2881,"[""Laptop""]",1018.2,{},84310,1,Asia +2023-05-06,57092,2140,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1626.16,{},248632,0,South America +2023-05-01,57093,2260,"[""Laptop""]",4393.8,{},57636,0,South America +2024-10-03,57094,5597,"[""Headphones""]",3593.61,{},186597,0,South America +2024-07-19,57095,2683,"[""Monitor""]",410.08,{},290534,1,Africa +2024-10-31,57096,8583,"[""Phone""]",1218.15,{},166958,1,South America +2023-10-02,57097,3328,"[""Monitor"", ""Headphones"", ""Tablet""]",918.52,"{""promo"": ""28%""}",182155,1,Asia +2024-06-05,57098,2708,"[""Monitor"", ""Wireless Mouse""]",1315.1,{},78542,1,North America +2023-12-29,57099,4328,"[""Headphones"", ""Monitor"", ""Charger""]",265.46,{},235508,0,Africa +2024-07-04,57100,2091,"[""Keyboard"", ""Monitor""]",1070.69,{},257958,1,Africa +2024-07-19,57101,7038,"[""Phone""]",4575.95,"{""promo"": ""30%""}",52481,0,South America +2023-06-26,57102,2639,"[""Wireless Mouse"", ""Laptop""]",1184.86,"{"""": ""12%""}",240303,0,North America +2024-05-26,57103,9811,"[""Monitor""]",4587.51,{},220531,1,Europe +2024-06-28,57104,433,"[""Headphones"", ""Tablet""]",824.36,{},249957,1,South America +2024-01-30,57105,8713,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4451.56,"{""promo"": ""7%""}",253917,1,Europe +2023-08-26,57106,9955,"[""Tablet"", ""Phone"", ""Charger""]",3338.01,{},38661,1,Africa +2023-09-29,57107,8357,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2650.44,{},43654,0,Africa +2023-11-12,57108,3372,"[""Headphones""]",1621.73,{},266720,1,Europe +2023-03-23,57109,4882,"[""Charger"", ""Monitor""]",4887.19,"{"""": ""16%""}",277740,1,Europe +2024-10-24,57110,5109,"[""Tablet"", ""Phone""]",2521.67,"{"""": ""13%""}",180992,0,North America +2024-07-13,57111,7408,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3442.37,{},30329,1,North America +2023-06-22,57112,8310,"[""Monitor"", ""Headphones"", ""Keyboard""]",1405.17,{},244619,1,North America +2024-01-27,57113,9748,"[""Phone"", ""Tablet"", ""Headphones""]",3181.73,"{"""": ""12%""}",23053,0,South America +2024-03-13,57114,9480,"[""Tablet""]",4205.69,{},3967,1,Asia +2023-11-30,57115,8610,"[""Keyboard"", ""Tablet"", ""Headphones""]",3432.76,{},122472,1,Europe +2024-04-06,57116,2294,"[""Keyboard"", ""Laptop"", ""Monitor""]",1466.93,"{""loyalty"": ""12%""}",221568,1,Europe +2024-07-03,57117,9272,"[""Keyboard""]",4738.96,"{""seasonal"": ""30%""}",247016,0,Asia +2024-11-29,57118,2365,"[""Charger""]",3930.09,"{""promo"": ""13%""}",37499,0,North America +2023-02-18,57119,2472,"[""Tablet""]",3781.49,{},137285,0,North America +2023-10-03,57120,3466,"[""Headphones"", ""Charger"", ""Monitor""]",3486.95,"{""promo"": ""29%""}",141136,1,Asia +2023-07-23,57121,949,"[""Charger""]",3953.17,"{""seasonal"": ""10%""}",147513,0,North America +2024-04-10,57122,4376,"[""Charger"", ""Phone"", ""Monitor""]",1213.49,{},88691,1,Asia +2024-10-10,57123,9121,"[""Tablet"", ""Headphones""]",4507.54,{},66966,0,North America +2024-09-05,57124,3203,"[""Phone""]",639.69,"{""loyalty"": ""21%""}",186240,1,Africa +2023-09-20,57125,2969,"[""Tablet"", ""Keyboard""]",2185.79,"{"""": ""22%""}",37389,0,South America +2023-05-29,57126,4140,"[""Charger""]",2207.95,"{""promo"": ""9%""}",165863,0,Africa +2023-03-25,57127,4781,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4327.11,{},238418,1,Africa +2023-04-16,57128,1798,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1333.79,"{""loyalty"": ""10%""}",233756,0,Africa +2023-08-30,57129,8647,"[""Wireless Mouse"", ""Headphones""]",4617.25,{},92739,1,South America +2023-04-23,57130,2597,"[""Headphones"", ""Charger""]",273.31,{},202175,0,Africa +2024-02-15,57131,8395,"[""Keyboard"", ""Headphones"", ""Monitor""]",1439.66,{},87300,1,Europe +2023-08-29,57132,1057,"[""Monitor"", ""Headphones"", ""Tablet""]",1210.11,{},183679,0,Africa +2023-10-15,57133,4958,"[""Wireless Mouse"", ""Charger""]",3065.52,"{""loyalty"": ""24%""}",199554,1,Africa +2024-10-22,57134,5347,"[""Wireless Mouse"", ""Laptop""]",2618.42,{},75090,1,Asia +2023-01-08,57135,740,"[""Charger"", ""Monitor"", ""Keyboard""]",2234.5,{},93879,1,Africa +2023-11-25,57136,2273,"[""Phone"", ""Tablet"", ""Headphones""]",4820.35,{},147899,1,South America +2024-07-08,57137,9498,"[""Wireless Mouse"", ""Laptop""]",2751.05,{},70571,1,Asia +2024-02-25,57138,3270,"[""Headphones"", ""Laptop"", ""Tablet""]",2362.43,{},108202,0,Africa +2024-07-29,57139,4934,"[""Tablet"", ""Headphones""]",4916.26,{},170430,1,South America +2023-03-21,57140,2513,"[""Phone"", ""Headphones""]",921.3,{},75410,1,Asia +2024-07-10,57141,5289,"[""Phone"", ""Laptop""]",1325.21,{},21096,0,North America +2023-12-11,57142,6296,"[""Phone"", ""Wireless Mouse""]",3056.12,{},66683,0,Asia +2023-07-12,57143,4399,"[""Tablet"", ""Laptop""]",3421.93,{},7840,1,South America +2023-10-18,57144,5331,"[""Laptop""]",2245.24,"{"""": ""17%""}",129995,0,Asia +2024-05-11,57145,3663,"[""Charger"", ""Laptop""]",673.74,"{""promo"": ""11%""}",159183,0,Africa +2023-07-18,57146,2786,"[""Monitor"", ""Charger""]",4660.48,{},192972,1,Africa +2023-04-26,57147,4676,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",805.61,"{""seasonal"": ""30%""}",44463,1,Europe +2023-01-11,57148,9091,"[""Keyboard"", ""Wireless Mouse""]",2273.33,{},8043,0,Europe +2024-06-20,57149,4829,"[""Keyboard""]",2589.96,{},64641,1,Africa +2024-06-12,57150,8639,"[""Tablet""]",3862.87,{},8243,1,Europe +2024-01-16,57151,9900,"[""Headphones"", ""Keyboard""]",3613.24,"{""seasonal"": ""5%""}",23359,1,Europe +2023-03-05,57152,9269,"[""Wireless Mouse""]",1604.84,"{""loyalty"": ""13%""}",231848,1,Europe +2024-10-23,57153,3731,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2069.49,"{""loyalty"": ""6%""}",99096,0,Europe +2024-03-06,57154,9891,"[""Tablet""]",2216.09,"{""seasonal"": ""21%""}",229960,0,North America +2024-03-29,57155,4818,"[""Monitor"", ""Keyboard"", ""Laptop""]",3231.97,{},78846,0,Asia +2024-05-09,57156,6273,"[""Wireless Mouse"", ""Headphones""]",2482.9,"{""loyalty"": ""7%""}",24870,0,Africa +2023-05-27,57157,1997,"[""Headphones"", ""Monitor""]",3932.82,{},296755,1,Africa +2024-06-07,57158,9993,"[""Charger"", ""Keyboard"", ""Tablet""]",4731.26,{},291659,0,South America +2024-02-08,57159,8727,"[""Keyboard""]",3728.48,"{""seasonal"": ""22%""}",71269,0,Africa +2023-08-08,57160,3082,"[""Wireless Mouse""]",1575.54,"{""loyalty"": ""14%""}",62214,1,Europe +2024-09-18,57161,3733,"[""Phone"", ""Keyboard""]",2675.04,{},149549,0,South America +2024-02-03,57162,3541,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3274.72,{},241415,1,North America +2023-01-18,57163,7160,"[""Monitor""]",1489.9,"{""promo"": ""10%""}",293821,0,Africa +2023-05-22,57164,1037,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",271.36,"{""seasonal"": ""16%""}",219798,1,Europe +2023-01-07,57165,8128,"[""Tablet""]",4223.9,{},191597,1,Africa +2023-03-27,57166,4852,"[""Wireless Mouse"", ""Keyboard""]",2065.75,"{"""": ""13%""}",201757,0,Asia +2024-06-21,57167,6741,"[""Phone""]",1039.6,"{""promo"": ""22%""}",26759,0,South America +2024-07-26,57168,6160,"[""Keyboard""]",242.81,{},220661,0,Europe +2023-09-19,57169,9161,"[""Wireless Mouse"", ""Monitor""]",998.23,"{""promo"": ""27%""}",117193,0,South America +2024-12-17,57170,7206,"[""Wireless Mouse""]",4238.47,"{"""": ""23%""}",116696,1,North America +2023-02-08,57171,4227,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",538.26,{},257104,1,Asia +2024-11-16,57172,9997,"[""Tablet""]",399.5,"{""loyalty"": ""17%""}",190362,0,Africa +2024-04-03,57173,4005,"[""Wireless Mouse"", ""Headphones""]",3961.16,"{""loyalty"": ""10%""}",130633,1,North America +2024-10-23,57174,4807,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1987.67,"{"""": ""16%""}",113901,1,Africa +2024-07-30,57175,3374,"[""Keyboard""]",4379.14,{},219809,0,North America +2024-03-29,57176,5390,"[""Charger""]",551.94,{},175895,0,Europe +2024-09-02,57177,9822,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2035.86,{},218399,1,South America +2023-03-29,57178,3261,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2129.59,{},211206,0,South America +2024-11-13,57179,5615,"[""Phone""]",73.89,{},138470,0,Asia +2023-01-24,57180,1263,"[""Headphones"", ""Wireless Mouse""]",2613.11,{},147993,1,Europe +2024-06-28,57181,4196,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3182.85,{},115611,1,Asia +2024-10-18,57182,8470,"[""Keyboard""]",3419.24,"{""promo"": ""24%""}",64484,0,South America +2023-09-18,57183,386,"[""Laptop"", ""Tablet"", ""Keyboard""]",4974.09,"{""loyalty"": ""30%""}",99607,0,North America +2023-10-13,57184,4349,"[""Tablet""]",1695.77,"{""seasonal"": ""30%""}",253378,1,Europe +2024-08-20,57185,9792,"[""Wireless Mouse"", ""Keyboard""]",2905.56,{},128149,0,Europe +2024-07-20,57186,6310,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2415.34,"{""loyalty"": ""25%""}",66508,0,Asia +2024-07-21,57187,2563,"[""Headphones""]",2289.57,{},105829,1,North America +2023-10-06,57188,8781,"[""Tablet""]",2032.89,{},244687,1,North America +2024-03-02,57189,3200,"[""Monitor"", ""Tablet""]",480.3,"{""seasonal"": ""29%""}",199205,0,Europe +2024-08-12,57190,9375,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4275.56,{},79061,1,Asia +2024-06-13,57191,8957,"[""Phone"", ""Tablet""]",4218.69,"{""seasonal"": ""6%""}",125158,1,Europe +2023-03-19,57192,4095,"[""Wireless Mouse"", ""Tablet""]",2119.42,"{""promo"": ""28%""}",22204,1,Africa +2024-02-01,57193,7699,"[""Tablet""]",1406.66,{},90555,1,South America +2024-11-21,57194,9010,"[""Wireless Mouse""]",2691.85,{},180297,1,North America +2024-01-31,57195,7959,"[""Phone""]",1126.08,"{""loyalty"": ""24%""}",76313,0,Asia +2024-07-06,57196,5737,"[""Charger"", ""Headphones""]",4202.05,{},51713,1,North America +2023-11-19,57197,5720,"[""Headphones"", ""Charger"", ""Laptop""]",3714.81,{},25730,1,Asia +2024-10-29,57198,3532,"[""Charger"", ""Headphones"", ""Phone""]",2022.32,{},213178,0,North America +2024-10-19,57199,7633,"[""Charger"", ""Keyboard"", ""Phone""]",1638.05,"{"""": ""20%""}",77646,0,Europe +2023-12-08,57200,3395,"[""Tablet"", ""Keyboard""]",4526.23,{},88368,1,South America +2023-10-23,57201,4628,"[""Headphones"", ""Tablet"", ""Phone""]",3648.85,{},55408,1,North America +2023-01-15,57202,5081,"[""Monitor"", ""Charger"", ""Tablet""]",1365.95,{},271957,0,Europe +2023-12-22,57203,4820,"[""Monitor""]",1948.55,{},9103,1,Europe +2024-08-08,57204,8584,"[""Charger""]",497.06,{},122711,1,Africa +2024-08-28,57205,3209,"[""Wireless Mouse""]",2462.68,{},199623,1,Europe +2023-05-14,57206,2792,"[""Laptop"", ""Tablet""]",2366.3,"{""promo"": ""20%""}",75623,0,North America +2024-09-20,57207,5648,"[""Phone""]",2254.2,"{""promo"": ""7%""}",96398,0,North America +2024-06-06,57208,1174,"[""Monitor""]",1915.79,{},158106,0,Europe +2024-12-01,57209,5040,"[""Tablet""]",250.99,"{""loyalty"": ""7%""}",289818,0,Europe +2023-09-28,57210,7999,"[""Wireless Mouse""]",2711.23,"{""loyalty"": ""18%""}",200433,0,North America +2023-08-23,57211,2030,"[""Keyboard""]",146.69,{},261732,0,Africa +2023-01-02,57212,903,"[""Wireless Mouse""]",4779.91,{},13131,1,Africa +2024-11-12,57213,2333,"[""Laptop""]",853.26,{},253099,1,South America +2023-08-10,57214,597,"[""Phone""]",1833.84,{},251499,1,Europe +2023-04-23,57215,7689,"[""Keyboard""]",3438.75,{},87258,0,South America +2023-05-12,57216,4753,"[""Keyboard"", ""Wireless Mouse""]",3420.56,"{"""": ""18%""}",123215,0,South America +2024-06-14,57217,9819,"[""Tablet"", ""Wireless Mouse""]",2638.56,{},241626,1,South America +2023-01-06,57218,9300,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",769.9,{},152406,0,North America +2024-05-09,57219,8471,"[""Tablet"", ""Keyboard"", ""Laptop""]",223.17,{},230812,0,North America +2024-04-04,57220,5553,"[""Phone"", ""Headphones"", ""Charger""]",3454.9,"{""seasonal"": ""19%""}",237095,0,South America +2024-04-05,57221,5205,"[""Wireless Mouse""]",3709.19,"{""loyalty"": ""16%""}",136219,0,North America +2024-01-08,57222,6553,"[""Monitor"", ""Wireless Mouse""]",3704.9,"{""loyalty"": ""16%""}",133325,0,South America +2024-07-20,57223,4232,"[""Tablet"", ""Phone""]",4268.99,{},186812,1,Africa +2024-07-16,57224,2218,"[""Keyboard""]",4881.0,{},49704,1,Africa +2023-05-03,57225,4942,"[""Keyboard""]",2789.08,{},198827,1,Asia +2024-01-02,57226,9400,"[""Keyboard"", ""Laptop""]",2921.22,"{""loyalty"": ""23%""}",153809,1,Asia +2024-08-24,57227,3863,"[""Wireless Mouse""]",727.85,"{""seasonal"": ""16%""}",102942,1,North America +2024-10-16,57228,7639,"[""Charger""]",4402.92,{},143133,1,Europe +2024-07-22,57229,7077,"[""Keyboard""]",3460.35,{},102282,0,North America +2023-02-03,57230,2094,"[""Laptop""]",574.77,{},211251,1,South America +2023-06-11,57231,876,"[""Laptop"", ""Monitor""]",2278.88,{},195365,0,Europe +2023-09-10,57232,4369,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",476.31,{},88801,0,Africa +2024-05-07,57233,6919,"[""Tablet"", ""Laptop"", ""Keyboard""]",4460.45,"{""loyalty"": ""5%""}",164376,0,Europe +2023-09-11,57234,8665,"[""Keyboard"", ""Phone""]",190.08,"{"""": ""5%""}",81248,1,North America +2024-01-01,57235,4276,"[""Charger""]",141.75,{},48638,1,Africa +2024-02-11,57236,34,"[""Phone"", ""Laptop""]",3595.61,"{""loyalty"": ""8%""}",214149,0,Asia +2023-09-18,57237,6559,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4993.07,"{""promo"": ""6%""}",40804,0,Africa +2023-12-03,57238,8113,"[""Phone"", ""Headphones"", ""Keyboard""]",936.63,{},288661,0,Europe +2024-04-01,57239,6961,"[""Laptop"", ""Tablet""]",4123.16,{},69370,1,South America +2023-05-21,57240,8256,"[""Monitor"", ""Headphones""]",1164.04,{},202890,1,Europe +2023-03-25,57241,5791,"[""Laptop"", ""Charger""]",2929.04,{},298314,1,Asia +2023-06-07,57242,7042,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3366.3,{},190854,0,Africa +2023-10-21,57243,1126,"[""Phone"", ""Headphones"", ""Keyboard""]",4494.36,"{"""": ""9%""}",241035,1,Africa +2023-06-24,57244,8841,"[""Headphones"", ""Laptop"", ""Charger""]",803.09,"{""loyalty"": ""28%""}",122135,1,Asia +2024-09-21,57245,810,"[""Phone""]",1294.53,"{""loyalty"": ""9%""}",211068,1,Asia +2023-03-01,57246,1452,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",967.82,"{""loyalty"": ""22%""}",135552,1,Africa +2024-02-16,57247,7734,"[""Wireless Mouse"", ""Keyboard""]",165.06,"{"""": ""18%""}",20665,1,Asia +2023-10-29,57248,1925,"[""Charger"", ""Keyboard"", ""Monitor""]",3777.86,{},213178,0,Asia +2024-10-20,57249,1909,"[""Tablet""]",628.44,{},5212,0,Asia +2023-10-09,57250,5283,"[""Charger""]",2628.73,{},251960,0,Asia +2024-05-19,57251,646,"[""Wireless Mouse""]",996.86,"{""seasonal"": ""15%""}",170357,0,Europe +2024-11-12,57252,857,"[""Headphones"", ""Phone""]",3129.42,{},61203,1,South America +2024-01-30,57253,3804,"[""Laptop"", ""Charger""]",3356.92,{},57152,1,North America +2024-08-15,57254,7178,"[""Monitor"", ""Laptop""]",1261.07,"{""promo"": ""21%""}",152726,1,Europe +2023-05-11,57255,8741,"[""Laptop"", ""Monitor"", ""Keyboard""]",4298.81,"{"""": ""26%""}",65325,0,South America +2024-01-09,57256,9419,"[""Laptop""]",2313.06,{},165128,0,Asia +2024-08-22,57257,613,"[""Laptop"", ""Headphones""]",1847.28,{},4985,0,Europe +2024-11-21,57258,7393,"[""Keyboard"", ""Monitor"", ""Tablet""]",805.04,{},165331,0,Europe +2023-03-02,57259,2390,"[""Monitor""]",2484.29,{},223337,1,South America +2023-09-06,57260,6158,"[""Keyboard"", ""Laptop""]",3969.87,"{""loyalty"": ""8%""}",81732,1,Europe +2023-09-23,57261,4739,"[""Headphones"", ""Charger"", ""Keyboard""]",448.07,{},191778,0,South America +2023-08-30,57262,5047,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",79.75,{},220247,0,Asia +2023-02-02,57263,2655,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",442.65,"{""seasonal"": ""27%""}",87304,1,Africa +2023-11-10,57264,3819,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4085.22,{},246495,0,Europe +2023-10-18,57265,4693,"[""Headphones"", ""Keyboard""]",2215.98,"{"""": ""19%""}",153330,1,North America +2024-04-11,57266,6512,"[""Keyboard"", ""Phone""]",1361.98,{},232229,0,Asia +2024-04-20,57267,6301,"[""Tablet"", ""Laptop""]",928.06,"{""loyalty"": ""28%""}",211492,1,South America +2023-04-04,57268,5289,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1563.07,"{""loyalty"": ""19%""}",65283,1,North America +2024-02-02,57269,4821,"[""Keyboard"", ""Phone""]",4175.08,{},277506,0,South America +2023-01-30,57270,1696,"[""Laptop"", ""Charger"", ""Monitor""]",4742.36,"{"""": ""22%""}",108799,1,Europe +2023-05-04,57271,9420,"[""Phone"", ""Tablet"", ""Headphones""]",4684.49,"{""seasonal"": ""21%""}",10218,0,South America +2023-03-04,57272,5314,"[""Tablet""]",3803.83,{},90166,1,Europe +2024-08-29,57273,9740,"[""Monitor""]",2571.79,{},157110,0,Africa +2023-03-16,57274,6244,"[""Monitor"", ""Headphones""]",4884.66,{},137478,0,Africa +2023-11-06,57275,3766,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3345.15,{},193203,0,Europe +2024-04-27,57276,968,"[""Tablet"", ""Phone""]",264.45,{},103725,0,Asia +2023-12-29,57277,1420,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2001.66,"{""loyalty"": ""12%""}",49543,1,Africa +2024-07-22,57278,3437,"[""Laptop"", ""Keyboard"", ""Monitor""]",1594.05,"{""seasonal"": ""11%""}",88544,1,Asia +2023-10-15,57279,7033,"[""Laptop"", ""Charger""]",1056.33,"{""promo"": ""21%""}",244110,0,South America +2023-02-19,57280,3422,"[""Keyboard""]",1378.45,"{""promo"": ""16%""}",285343,1,Africa +2023-07-15,57281,3595,"[""Charger"", ""Laptop""]",4089.84,{},251758,1,Asia +2024-05-24,57282,3860,"[""Tablet"", ""Monitor"", ""Keyboard""]",1095.78,"{"""": ""28%""}",34207,0,Africa +2023-05-29,57283,8438,"[""Laptop""]",4330.07,"{""loyalty"": ""10%""}",114145,1,Asia +2023-11-18,57284,673,"[""Tablet"", ""Monitor"", ""Laptop""]",3187.84,"{""promo"": ""9%""}",264874,0,Asia +2024-01-27,57285,4674,"[""Monitor"", ""Tablet"", ""Charger""]",513.01,{},293303,0,Africa +2024-07-01,57286,3963,"[""Phone"", ""Charger"", ""Headphones""]",3245.33,"{""seasonal"": ""28%""}",297552,1,Europe +2024-01-20,57287,8538,"[""Keyboard"", ""Phone"", ""Laptop""]",789.52,"{""loyalty"": ""21%""}",210039,1,South America +2023-08-11,57288,2088,"[""Headphones"", ""Phone"", ""Keyboard""]",2908.88,{},152539,1,Europe +2024-03-25,57289,819,"[""Charger"", ""Phone"", ""Headphones""]",1713.99,{},235407,0,Europe +2024-01-16,57290,8946,"[""Keyboard""]",4019.19,"{""seasonal"": ""20%""}",216757,1,Asia +2023-09-12,57291,7886,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4646.65,{},235393,0,South America +2023-07-16,57292,598,"[""Headphones""]",1098.92,"{"""": ""12%""}",135044,0,South America +2023-12-20,57293,553,"[""Phone"", ""Tablet"", ""Keyboard""]",4874.59,"{"""": ""8%""}",197612,0,Europe +2024-11-20,57294,3443,"[""Keyboard"", ""Headphones"", ""Charger""]",3313.59,"{""loyalty"": ""16%""}",79278,0,Africa +2024-09-07,57295,8755,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1803.92,"{""seasonal"": ""27%""}",34295,1,Europe +2024-12-25,57296,3437,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1052.36,{},143118,1,Asia +2024-08-27,57297,2979,"[""Monitor""]",2777.77,{},32218,0,Asia +2024-05-20,57298,1562,"[""Keyboard""]",3795.67,"{""loyalty"": ""6%""}",285778,1,Asia +2023-03-23,57299,9135,"[""Charger"", ""Keyboard""]",500.1,"{""seasonal"": ""23%""}",153103,1,Europe +2023-03-02,57300,1857,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1689.33,{},162203,0,South America +2024-06-18,57301,8855,"[""Headphones""]",633.89,"{""loyalty"": ""14%""}",122089,0,Europe +2023-07-22,57302,7755,"[""Keyboard"", ""Headphones""]",2263.7,{},15441,0,South America +2023-06-21,57303,138,"[""Charger"", ""Laptop""]",1928.82,"{""seasonal"": ""24%""}",289717,1,Africa +2023-03-14,57304,3899,"[""Laptop"", ""Phone""]",3361.32,{},40530,0,Asia +2024-04-09,57305,1365,"[""Keyboard""]",1565.1,{},198261,0,Asia +2024-12-03,57306,601,"[""Charger"", ""Tablet""]",3806.45,"{""seasonal"": ""26%""}",90583,1,South America +2023-08-24,57307,5950,"[""Phone""]",3363.05,"{""promo"": ""24%""}",29725,0,South America +2024-07-23,57308,7697,"[""Laptop"", ""Phone""]",408.83,"{""seasonal"": ""23%""}",73874,0,North America +2023-12-13,57309,763,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2274.74,{},285940,0,South America +2024-05-04,57310,9158,"[""Laptop"", ""Charger""]",4625.99,"{""promo"": ""9%""}",159945,1,Europe +2024-04-04,57311,895,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4155.81,{},254324,1,Africa +2023-09-02,57312,3877,"[""Laptop""]",751.91,{},296367,0,South America +2023-10-27,57313,891,"[""Headphones"", ""Tablet"", ""Keyboard""]",3640.75,"{""promo"": ""11%""}",165464,1,North America +2023-04-08,57314,2260,"[""Phone"", ""Monitor"", ""Charger""]",3998.22,"{""seasonal"": ""27%""}",72548,1,Africa +2024-01-16,57315,5913,"[""Monitor"", ""Tablet"", ""Charger""]",1042.29,"{""promo"": ""26%""}",137352,1,South America +2023-04-10,57316,2774,"[""Laptop""]",2308.96,"{""promo"": ""19%""}",119406,0,Africa +2024-08-19,57317,7745,"[""Wireless Mouse""]",4967.27,{},11885,0,South America +2024-12-12,57318,8902,"[""Headphones""]",193.94,"{""seasonal"": ""13%""}",207680,0,Europe +2024-08-15,57319,6000,"[""Headphones""]",3717.31,{},267407,0,South America +2023-07-18,57320,5200,"[""Charger""]",592.54,"{""loyalty"": ""9%""}",244298,1,Africa +2024-12-02,57321,1379,"[""Tablet"", ""Keyboard""]",1982.02,{},188264,0,North America +2024-02-05,57322,6580,"[""Headphones"", ""Laptop"", ""Keyboard""]",2232.51,{},66732,1,Europe +2024-05-23,57323,9404,"[""Charger"", ""Phone"", ""Monitor""]",2411.57,{},265353,1,Asia +2023-04-19,57324,2116,"[""Laptop"", ""Headphones""]",688.02,"{"""": ""19%""}",218065,1,South America +2023-04-27,57325,2156,"[""Wireless Mouse""]",2075.3,"{""seasonal"": ""21%""}",36667,0,South America +2023-03-16,57326,6660,"[""Headphones""]",883.48,{},167167,1,South America +2024-11-09,57327,5582,"[""Keyboard"", ""Headphones"", ""Phone""]",1625.61,"{""loyalty"": ""10%""}",102934,1,Asia +2024-10-21,57328,7733,"[""Wireless Mouse""]",4305.2,{},140257,1,Europe +2024-04-01,57329,8998,"[""Tablet"", ""Laptop""]",3231.93,"{"""": ""17%""}",16806,0,Africa +2023-05-11,57330,8296,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",299.64,"{""seasonal"": ""29%""}",25268,0,Africa +2023-10-16,57331,8078,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4610.8,{},292018,1,Asia +2023-12-26,57332,6730,"[""Headphones""]",4861.51,{},87349,1,Europe +2023-10-04,57333,7378,"[""Monitor""]",4702.9,"{""promo"": ""20%""}",122773,0,Africa +2023-09-16,57334,2937,"[""Tablet"", ""Monitor"", ""Charger""]",919.65,"{""seasonal"": ""14%""}",159715,1,North America +2024-03-27,57335,2568,"[""Phone"", ""Headphones""]",4121.91,{},81049,1,South America +2024-07-20,57336,6405,"[""Tablet""]",1872.21,{},36720,0,Asia +2024-12-11,57337,2689,"[""Tablet"", ""Keyboard""]",3231.63,"{""seasonal"": ""19%""}",113756,1,Asia +2023-08-29,57338,7563,"[""Laptop""]",1257.04,"{""loyalty"": ""17%""}",6076,1,North America +2023-06-05,57339,3498,"[""Tablet""]",1281.03,{},281004,1,Africa +2023-09-09,57340,7382,"[""Keyboard""]",844.6,"{""seasonal"": ""17%""}",118280,1,Europe +2024-06-22,57341,9661,"[""Keyboard"", ""Charger""]",1091.25,"{""promo"": ""28%""}",33189,1,South America +2024-11-16,57342,3510,"[""Tablet"", ""Laptop""]",1564.15,"{""promo"": ""17%""}",176391,0,North America +2024-08-09,57343,9281,"[""Laptop""]",3700.09,{},146021,0,Europe +2024-07-21,57344,9166,"[""Headphones"", ""Phone""]",2813.11,{},209265,1,South America +2024-08-24,57345,146,"[""Monitor""]",1121.16,"{""loyalty"": ""7%""}",106974,1,Europe +2023-03-03,57346,2592,"[""Headphones"", ""Monitor"", ""Tablet""]",2739.76,{},72900,0,Africa +2023-10-29,57347,1120,"[""Phone"", ""Tablet"", ""Keyboard""]",4831.35,"{""promo"": ""11%""}",252205,1,Europe +2024-01-17,57348,5559,"[""Headphones"", ""Charger"", ""Tablet""]",4966.54,"{""promo"": ""16%""}",196248,0,Asia +2023-07-04,57349,7989,"[""Keyboard""]",3648.93,"{""loyalty"": ""12%""}",155517,1,Europe +2024-07-25,57350,3240,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",345.67,"{""loyalty"": ""12%""}",266410,1,Africa +2023-07-24,57351,376,"[""Monitor"", ""Laptop"", ""Keyboard""]",3176.02,"{""seasonal"": ""24%""}",58919,1,North America +2024-06-29,57352,5418,"[""Tablet"", ""Headphones"", ""Charger""]",4309.81,{},3869,1,North America +2023-10-15,57353,2972,"[""Keyboard""]",66.47,"{"""": ""25%""}",151764,1,Asia +2024-12-17,57354,7527,"[""Tablet"", ""Laptop""]",4978.3,{},204820,1,Africa +2023-03-08,57355,7417,"[""Tablet""]",4060.31,"{""promo"": ""20%""}",22212,1,South America +2023-07-24,57356,7530,"[""Monitor"", ""Headphones""]",3682.19,"{""promo"": ""22%""}",31386,1,Europe +2023-05-01,57357,4137,"[""Laptop""]",3148.57,"{""seasonal"": ""27%""}",86551,1,North America +2024-09-13,57358,9456,"[""Keyboard"", ""Laptop""]",2123.96,"{"""": ""25%""}",151455,0,North America +2024-12-24,57359,7741,"[""Headphones"", ""Keyboard"", ""Tablet""]",2398.64,{},73024,1,Africa +2024-11-29,57360,6595,"[""Tablet"", ""Headphones"", ""Keyboard""]",734.26,"{"""": ""25%""}",249633,1,Asia +2024-03-24,57361,721,"[""Wireless Mouse""]",1653.44,"{""promo"": ""6%""}",269067,1,North America +2023-02-04,57362,6838,"[""Headphones""]",3198.51,"{""promo"": ""9%""}",216897,0,North America +2023-03-29,57363,1568,"[""Phone"", ""Headphones""]",4336.61,"{""loyalty"": ""27%""}",22353,0,Asia +2023-04-12,57364,788,"[""Wireless Mouse""]",3617.63,"{""loyalty"": ""16%""}",254936,1,North America +2024-08-19,57365,6240,"[""Headphones""]",3360.91,"{"""": ""14%""}",249848,1,Asia +2024-08-08,57366,3280,"[""Headphones""]",2660.55,"{""loyalty"": ""20%""}",99641,1,North America +2023-10-08,57367,6980,"[""Tablet"", ""Headphones""]",2425.48,{},164440,1,Asia +2024-04-15,57368,3655,"[""Headphones"", ""Laptop"", ""Charger""]",2072.79,{},157098,0,Asia +2023-06-13,57369,1668,"[""Headphones"", ""Keyboard"", ""Monitor""]",2022.93,{},119678,1,Asia +2024-12-14,57370,805,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",290.06,"{""loyalty"": ""14%""}",195801,1,Africa +2024-01-01,57371,7059,"[""Tablet"", ""Monitor"", ""Headphones""]",1216.72,{},115438,1,Africa +2023-12-05,57372,6073,"[""Tablet""]",216.46,"{""seasonal"": ""23%""}",93887,1,South America +2023-06-22,57373,3476,"[""Keyboard"", ""Laptop"", ""Charger""]",1770.14,"{""seasonal"": ""8%""}",266469,1,South America +2024-06-09,57374,1803,"[""Phone"", ""Charger""]",4664.49,"{""seasonal"": ""28%""}",66811,0,North America +2024-04-24,57375,1934,"[""Headphones"", ""Keyboard"", ""Tablet""]",1737.52,"{""promo"": ""27%""}",172822,1,Europe +2023-12-24,57376,6300,"[""Charger""]",4122.74,"{""seasonal"": ""15%""}",149790,0,South America +2023-01-17,57377,709,"[""Charger"", ""Headphones"", ""Monitor""]",1934.27,"{""promo"": ""15%""}",152532,1,Africa +2024-04-30,57378,1416,"[""Monitor"", ""Headphones""]",1562.87,"{""loyalty"": ""29%""}",255332,0,Europe +2024-12-05,57379,8326,"[""Keyboard""]",3149.99,"{""loyalty"": ""25%""}",103854,1,Africa +2024-11-13,57380,5989,"[""Keyboard"", ""Charger"", ""Monitor""]",2999.2,{},280056,0,Europe +2024-05-11,57381,4725,"[""Headphones"", ""Laptop""]",3770.12,"{""seasonal"": ""13%""}",228025,1,North America +2023-10-28,57382,6243,"[""Tablet"", ""Charger""]",4718.51,{},236286,1,North America +2023-07-15,57383,3902,"[""Wireless Mouse""]",255.82,"{""promo"": ""27%""}",50016,0,Europe +2024-01-15,57384,6879,"[""Laptop"", ""Keyboard""]",4244.75,"{"""": ""25%""}",61531,0,Asia +2023-03-20,57385,1708,"[""Monitor""]",3443.38,"{""loyalty"": ""6%""}",169488,0,Africa +2023-09-13,57386,3081,"[""Monitor"", ""Wireless Mouse""]",1297.64,"{""promo"": ""8%""}",28537,0,Africa +2023-02-25,57387,5623,"[""Laptop"", ""Monitor""]",3835.78,"{""seasonal"": ""17%""}",158384,0,Africa +2023-05-13,57388,8161,"[""Monitor"", ""Keyboard""]",3859.32,"{"""": ""10%""}",140308,1,Europe +2024-02-17,57389,8246,"[""Charger"", ""Keyboard"", ""Tablet""]",349.66,{},240411,1,North America +2024-09-01,57390,8335,"[""Laptop"", ""Headphones""]",1236.86,{},2189,0,Asia +2023-01-07,57391,561,"[""Headphones"", ""Wireless Mouse""]",1284.04,"{""loyalty"": ""24%""}",226273,1,Europe +2023-06-25,57392,1327,"[""Phone"", ""Tablet"", ""Keyboard""]",3496.09,"{""seasonal"": ""24%""}",80652,1,North America +2024-10-25,57393,4154,"[""Keyboard""]",2090.76,{},274836,1,Africa +2023-12-06,57394,1758,"[""Wireless Mouse""]",4190.71,"{"""": ""14%""}",217100,1,South America +2024-04-27,57395,4248,"[""Tablet""]",4920.78,{},148395,1,North America +2023-11-22,57396,6552,"[""Laptop"", ""Keyboard""]",4232.85,"{"""": ""22%""}",71958,0,North America +2024-12-25,57397,2985,"[""Laptop""]",2575.25,"{"""": ""21%""}",226684,0,Europe +2023-02-13,57398,5410,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4004.67,"{""seasonal"": ""15%""}",34752,1,Europe +2023-06-13,57399,7063,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",233.24,"{"""": ""21%""}",144944,1,Europe +2023-09-19,57400,2489,"[""Tablet"", ""Keyboard""]",2641.54,{},92461,1,Europe +2023-05-07,57401,6980,"[""Monitor"", ""Phone""]",680.48,"{"""": ""21%""}",299038,0,Asia +2023-06-19,57402,4701,"[""Wireless Mouse"", ""Keyboard""]",4499.46,"{""loyalty"": ""6%""}",238636,0,North America +2023-10-05,57403,3199,"[""Laptop"", ""Phone"", ""Charger""]",2155.41,"{"""": ""30%""}",242986,0,Africa +2023-02-27,57404,9131,"[""Charger"", ""Keyboard"", ""Tablet""]",1117.82,{},52135,0,North America +2024-01-29,57405,7883,"[""Keyboard"", ""Charger""]",512.38,{},114151,0,North America +2023-03-02,57406,9433,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1712.41,{},195976,0,South America +2024-08-25,57407,7593,"[""Monitor"", ""Charger""]",1314.58,{},105658,0,North America +2023-08-30,57408,7258,"[""Phone""]",3337.39,"{""seasonal"": ""24%""}",107348,1,Europe +2024-05-13,57409,6552,"[""Tablet"", ""Wireless Mouse""]",1529.93,{},65113,1,South America +2024-08-02,57410,21,"[""Charger"", ""Monitor"", ""Headphones""]",1994.58,"{""seasonal"": ""6%""}",280133,0,North America +2023-01-25,57411,450,"[""Phone"", ""Monitor"", ""Laptop""]",1535.74,"{""loyalty"": ""25%""}",77492,0,Asia +2024-09-07,57412,585,"[""Monitor"", ""Tablet"", ""Charger""]",4084.31,{},232827,0,Asia +2023-06-08,57413,4587,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3447.26,"{""promo"": ""23%""}",85261,1,Africa +2023-05-22,57414,7114,"[""Phone"", ""Tablet"", ""Keyboard""]",2727.9,"{""loyalty"": ""19%""}",158049,1,Europe +2023-06-28,57415,7863,"[""Charger"", ""Tablet""]",4126.95,{},170811,0,Africa +2023-06-20,57416,4907,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3168.77,"{""loyalty"": ""6%""}",254513,1,North America +2023-09-19,57417,902,"[""Phone"", ""Headphones""]",1074.18,{},86202,0,Africa +2024-10-23,57418,935,"[""Headphones"", ""Tablet""]",1568.54,{},193166,1,South America +2023-06-25,57419,2891,"[""Phone""]",2848.44,"{""loyalty"": ""28%""}",198510,1,South America +2024-02-11,57420,2374,"[""Tablet""]",4261.62,"{"""": ""11%""}",174262,0,Europe +2023-11-01,57421,4768,"[""Monitor"", ""Headphones"", ""Phone""]",4382.44,"{"""": ""26%""}",135321,0,Europe +2024-01-30,57422,7489,"[""Laptop""]",1706.88,{},298283,1,North America +2023-01-24,57423,1444,"[""Keyboard""]",748.7,"{""loyalty"": ""18%""}",46862,0,Europe +2023-12-22,57424,1296,"[""Phone""]",3395.92,"{""seasonal"": ""8%""}",195177,1,South America +2023-10-03,57425,2856,"[""Headphones"", ""Monitor""]",2902.8,"{""loyalty"": ""25%""}",249525,0,Asia +2024-11-30,57426,4860,"[""Wireless Mouse"", ""Phone"", ""Charger""]",515.68,"{""loyalty"": ""22%""}",71609,1,Asia +2023-05-15,57427,1725,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3411.46,{},156812,0,Asia +2024-08-25,57428,5101,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3567.98,{},166268,0,Asia +2023-02-17,57429,6790,"[""Tablet"", ""Charger""]",177.91,{},19165,1,Europe +2024-09-12,57430,3153,"[""Charger"", ""Keyboard""]",778.83,{},256766,0,Africa +2024-04-11,57431,1616,"[""Keyboard"", ""Monitor""]",2928.87,{},110832,1,South America +2024-05-30,57432,4086,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",217.11,{},82213,1,Europe +2024-04-16,57433,9974,"[""Headphones""]",4998.11,{},58305,0,Africa +2024-09-01,57434,704,"[""Monitor"", ""Wireless Mouse""]",3965.91,"{""promo"": ""12%""}",11081,1,Europe +2024-10-18,57435,3859,"[""Keyboard"", ""Headphones"", ""Monitor""]",4984.07,{},70239,0,Asia +2024-03-02,57436,2547,"[""Keyboard""]",500.14,{},64594,0,Asia +2024-04-24,57437,6247,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3031.64,{},163249,0,South America +2024-08-19,57438,250,"[""Tablet""]",2590.73,"{""promo"": ""23%""}",292059,0,Europe +2023-08-26,57439,2545,"[""Wireless Mouse""]",4078.98,{},52426,0,Europe +2024-08-11,57440,4985,"[""Charger""]",3244.24,"{"""": ""21%""}",91653,1,Asia +2023-05-30,57441,9621,"[""Wireless Mouse"", ""Monitor""]",282.92,"{""loyalty"": ""18%""}",132621,0,North America +2023-10-10,57442,4465,"[""Keyboard""]",1492.29,"{""promo"": ""24%""}",172519,1,Asia +2024-11-03,57443,335,"[""Monitor""]",2898.9,"{""loyalty"": ""8%""}",141680,0,South America +2023-06-25,57444,3269,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",213.53,{},266851,1,Europe +2023-07-29,57445,8718,"[""Phone""]",3588.83,{},213365,1,Asia +2024-08-29,57446,8769,"[""Monitor"", ""Tablet""]",715.31,"{""loyalty"": ""17%""}",164472,1,North America +2023-09-26,57447,8623,"[""Laptop""]",3467.43,"{""seasonal"": ""18%""}",49751,0,South America +2023-05-04,57448,7517,"[""Phone""]",1342.71,{},153729,1,Europe +2024-11-06,57449,3499,"[""Phone""]",4013.8,{},210526,1,North America +2024-09-05,57450,3299,"[""Monitor"", ""Laptop"", ""Keyboard""]",1274.93,{},259727,0,North America +2023-11-17,57451,6555,"[""Wireless Mouse""]",4533.26,"{""promo"": ""21%""}",107117,0,Asia +2024-12-06,57452,1027,"[""Wireless Mouse"", ""Headphones""]",2549.79,"{""loyalty"": ""29%""}",133964,0,North America +2023-03-08,57453,5299,"[""Laptop""]",91.43,"{""promo"": ""14%""}",228685,0,Europe +2023-07-18,57454,2566,"[""Laptop""]",209.22,{},105608,1,Europe +2023-08-30,57455,9070,"[""Headphones"", ""Charger""]",3241.13,"{""promo"": ""13%""}",243971,1,Asia +2023-04-10,57456,2873,"[""Phone""]",1472.73,"{"""": ""24%""}",229503,1,Africa +2024-08-29,57457,9644,"[""Laptop"", ""Keyboard""]",533.65,{},84945,0,Asia +2023-08-09,57458,9053,"[""Phone"", ""Tablet"", ""Charger""]",3377.92,{},141838,1,Asia +2023-12-28,57459,5300,"[""Monitor"", ""Charger"", ""Laptop""]",4480.48,{},64944,0,North America +2023-02-23,57460,9566,"[""Charger"", ""Monitor""]",4575.29,"{""seasonal"": ""22%""}",251109,1,South America +2024-07-24,57461,9289,"[""Monitor"", ""Laptop""]",3124.82,"{""loyalty"": ""30%""}",248521,1,Asia +2023-12-24,57462,6386,"[""Laptop"", ""Keyboard""]",4706.46,"{"""": ""11%""}",92879,0,Europe +2023-01-04,57463,524,"[""Laptop"", ""Headphones"", ""Phone""]",4228.35,"{""seasonal"": ""21%""}",15820,0,Europe +2024-06-03,57464,644,"[""Headphones"", ""Tablet"", ""Keyboard""]",4163.7,{},121571,1,Africa +2024-08-26,57465,3567,"[""Wireless Mouse""]",3925.12,"{""promo"": ""16%""}",210162,0,Europe +2024-04-04,57466,9390,"[""Monitor"", ""Keyboard"", ""Tablet""]",159.85,"{"""": ""7%""}",120128,0,Asia +2024-10-22,57467,2066,"[""Charger"", ""Headphones""]",2544.93,"{""loyalty"": ""13%""}",107817,1,Asia +2023-08-12,57468,1992,"[""Charger"", ""Phone"", ""Tablet""]",2718.83,{},265918,1,North America +2024-02-02,57469,2892,"[""Wireless Mouse"", ""Laptop""]",2993.45,{},8088,1,North America +2024-04-06,57470,431,"[""Headphones"", ""Charger""]",3791.9,"{""loyalty"": ""6%""}",242334,0,Asia +2023-11-10,57471,5128,"[""Tablet"", ""Keyboard""]",2511.74,{},138539,1,South America +2024-08-23,57472,5694,"[""Headphones"", ""Tablet"", ""Monitor""]",235.85,{},17267,1,South America +2023-12-09,57473,2117,"[""Laptop""]",985.09,"{""promo"": ""28%""}",219520,1,Africa +2023-04-14,57474,609,"[""Monitor"", ""Laptop""]",627.1,{},211398,0,Asia +2024-01-22,57475,3054,"[""Wireless Mouse""]",2898.06,"{""seasonal"": ""28%""}",223548,1,South America +2023-05-01,57476,7409,"[""Tablet""]",642.3,"{""seasonal"": ""11%""}",210249,1,North America +2023-06-04,57477,9939,"[""Tablet"", ""Keyboard""]",699.79,"{""loyalty"": ""16%""}",275805,1,Africa +2023-08-25,57478,477,"[""Phone"", ""Charger"", ""Tablet""]",4014.25,{},131236,1,Africa +2024-06-02,57479,348,"[""Tablet""]",1215.55,{},298182,1,North America +2024-01-16,57480,5116,"[""Charger"", ""Monitor""]",1191.57,{},146760,0,Europe +2024-07-19,57481,7532,"[""Tablet""]",1975.67,"{""seasonal"": ""7%""}",99858,1,Asia +2024-07-05,57482,6617,"[""Headphones"", ""Laptop""]",2556.2,{},103695,1,Asia +2023-04-07,57483,7680,"[""Charger"", ""Tablet"", ""Headphones""]",196.69,{},38017,1,Asia +2023-06-19,57484,3304,"[""Tablet"", ""Phone""]",4134.26,"{""promo"": ""21%""}",33087,1,Africa +2024-11-08,57485,9736,"[""Keyboard""]",4364.1,"{"""": ""22%""}",158571,1,Europe +2024-06-21,57486,4119,"[""Monitor"", ""Phone"", ""Keyboard""]",203.2,"{""seasonal"": ""10%""}",196548,0,Europe +2023-05-02,57487,733,"[""Keyboard"", ""Charger"", ""Headphones""]",499.9,{},236223,1,Africa +2023-05-07,57488,3143,"[""Phone"", ""Charger""]",4726.4,"{""loyalty"": ""9%""}",195366,0,Europe +2023-08-05,57489,2887,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4164.34,{},64792,1,Asia +2023-12-03,57490,1755,"[""Charger""]",3376.44,{},103435,0,Europe +2023-09-05,57491,1651,"[""Monitor"", ""Tablet"", ""Headphones""]",4880.7,{},62210,0,Africa +2023-04-24,57492,5550,"[""Keyboard"", ""Laptop""]",4836.46,"{""loyalty"": ""13%""}",10563,0,North America +2023-08-08,57493,2387,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2274.08,{},80394,0,Asia +2024-09-05,57494,7739,"[""Laptop"", ""Charger""]",2846.18,{},212830,1,Asia +2023-12-03,57495,6192,"[""Charger""]",2964.71,"{""promo"": ""24%""}",78548,1,North America +2023-02-03,57496,5548,"[""Wireless Mouse"", ""Tablet""]",463.18,"{"""": ""20%""}",168401,1,Africa +2023-03-18,57497,7066,"[""Tablet"", ""Headphones"", ""Monitor""]",3260.63,{},15535,1,Asia +2023-07-03,57498,2818,"[""Laptop""]",3122.96,"{""loyalty"": ""12%""}",78497,0,North America +2024-04-29,57499,2955,"[""Monitor""]",232.77,"{"""": ""9%""}",128524,0,South America +2024-04-17,57500,3362,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2208.39,"{"""": ""28%""}",176769,1,Asia +2023-02-28,57501,3766,"[""Tablet""]",975.76,{},195577,1,North America +2023-09-25,57502,139,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2670.23,{},29532,0,Africa +2023-10-21,57503,8870,"[""Wireless Mouse""]",2596.02,"{""loyalty"": ""25%""}",203842,0,Europe +2024-09-16,57504,755,"[""Phone"", ""Charger""]",460.63,{},77606,1,Africa +2024-06-22,57505,307,"[""Keyboard"", ""Headphones""]",3412.71,"{"""": ""6%""}",22314,0,South America +2024-04-16,57506,781,"[""Charger"", ""Monitor""]",3872.87,{},168481,1,Asia +2024-04-15,57507,2597,"[""Wireless Mouse""]",180.71,{},241879,1,North America +2024-06-08,57508,368,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2259.56,"{""promo"": ""20%""}",207533,0,North America +2024-04-03,57509,8530,"[""Wireless Mouse"", ""Phone"", ""Charger""]",581.99,"{"""": ""19%""}",295642,1,North America +2023-04-14,57510,6957,"[""Phone"", ""Wireless Mouse""]",4978.82,"{"""": ""17%""}",26792,1,Africa +2024-04-14,57511,9966,"[""Keyboard""]",586.33,"{""loyalty"": ""28%""}",261900,0,North America +2024-02-14,57512,4535,"[""Tablet""]",2831.04,"{""promo"": ""20%""}",165457,1,Asia +2023-03-11,57513,6027,"[""Monitor""]",582.1,"{""promo"": ""8%""}",63334,0,Europe +2023-08-28,57514,4892,"[""Charger"", ""Wireless Mouse""]",2907.87,{},218585,0,Africa +2023-12-07,57515,5553,"[""Charger"", ""Laptop""]",1321.85,{},41215,0,South America +2023-04-19,57516,5714,"[""Phone"", ""Wireless Mouse""]",1945.9,"{""promo"": ""28%""}",52880,0,Asia +2024-09-15,57517,5732,"[""Charger"", ""Headphones""]",2624.81,"{"""": ""14%""}",49196,1,Europe +2023-03-14,57518,1634,"[""Charger"", ""Phone""]",833.84,{},225816,0,South America +2023-09-18,57519,6927,"[""Monitor""]",1342.01,{},167149,0,South America +2023-09-14,57520,5937,"[""Charger"", ""Headphones""]",1070.49,{},92298,1,North America +2024-11-22,57521,1929,"[""Tablet""]",2287.6,{},142358,0,North America +2023-05-05,57522,1021,"[""Wireless Mouse"", ""Monitor""]",2414.36,{},52819,0,North America +2024-03-06,57523,8217,"[""Monitor"", ""Phone""]",1137.21,"{""seasonal"": ""21%""}",193691,1,South America +2023-04-09,57524,1135,"[""Headphones"", ""Phone"", ""Tablet""]",3681.34,"{""promo"": ""23%""}",22793,1,North America +2023-08-02,57525,1755,"[""Tablet""]",4635.28,"{""promo"": ""13%""}",215298,0,Europe +2023-09-28,57526,7271,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1696.14,{},63982,0,North America +2024-09-24,57527,4098,"[""Charger"", ""Wireless Mouse""]",629.37,"{""promo"": ""17%""}",14907,1,South America +2024-09-10,57528,5831,"[""Tablet""]",4872.37,{},24165,1,South America +2024-10-18,57529,4522,"[""Phone""]",2986.79,{},295404,1,Africa +2023-02-06,57530,6654,"[""Laptop""]",741.75,{},41210,0,Africa +2024-01-12,57531,1182,"[""Phone"", ""Laptop""]",2656.23,"{"""": ""25%""}",258417,0,North America +2024-01-29,57532,845,"[""Monitor"", ""Headphones""]",2351.35,{},52415,0,South America +2024-10-25,57533,2672,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2837.45,{},271455,1,Asia +2024-03-23,57534,1203,"[""Keyboard"", ""Headphones""]",3585.83,{},257782,1,Europe +2024-11-20,57535,6619,"[""Laptop"", ""Phone""]",1285.01,"{"""": ""8%""}",14283,0,South America +2024-11-22,57536,8301,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",736.82,{},243452,1,North America +2024-09-27,57537,1115,"[""Monitor"", ""Headphones"", ""Tablet""]",4398.65,"{"""": ""30%""}",38461,0,North America +2023-06-20,57538,503,"[""Tablet"", ""Phone""]",1681.87,{},139238,0,Africa +2024-08-19,57539,5605,"[""Keyboard"", ""Headphones"", ""Tablet""]",4360.31,"{""seasonal"": ""18%""}",192983,1,North America +2024-01-18,57540,5676,"[""Charger""]",519.93,{},142841,0,North America +2024-06-14,57541,6838,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1625.65,{},15005,0,Asia +2023-10-18,57542,3139,"[""Charger""]",3068.87,{},48718,1,South America +2024-10-02,57543,2845,"[""Monitor""]",3888.09,"{""seasonal"": ""21%""}",231583,1,Europe +2023-11-25,57544,2569,"[""Phone"", ""Keyboard""]",3073.84,"{""promo"": ""14%""}",299853,0,South America +2024-08-28,57545,8683,"[""Tablet"", ""Charger""]",3648.87,{},179735,1,Europe +2024-03-03,57546,6767,"[""Keyboard"", ""Charger""]",4587.81,"{"""": ""26%""}",73916,0,North America +2024-07-18,57547,1822,"[""Monitor"", ""Laptop""]",274.58,"{""loyalty"": ""30%""}",163986,1,South America +2024-08-18,57548,1095,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4893.33,{},229833,0,Europe +2024-06-03,57549,1308,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1403.13,"{""promo"": ""26%""}",127214,0,Europe +2023-12-27,57550,3834,"[""Headphones""]",2439.79,{},287647,0,Asia +2024-10-08,57551,673,"[""Wireless Mouse""]",4539.11,{},271729,0,Africa +2023-07-28,57552,8428,"[""Laptop"", ""Monitor""]",1606.77,{},290862,1,Africa +2024-02-09,57553,1566,"[""Tablet"", ""Headphones"", ""Charger""]",4118.2,{},169832,0,South America +2024-10-17,57554,7118,"[""Laptop""]",2280.65,{},39009,0,Europe +2024-10-26,57555,3048,"[""Headphones""]",3385.44,"{""seasonal"": ""6%""}",56541,1,Africa +2024-08-30,57556,9441,"[""Keyboard"", ""Monitor"", ""Tablet""]",2254.49,"{""promo"": ""23%""}",298376,0,Asia +2024-08-15,57557,6091,"[""Headphones"", ""Phone"", ""Charger""]",376.11,{},178335,1,Asia +2023-08-21,57558,3645,"[""Phone"", ""Charger""]",3997.67,{},250646,1,South America +2023-11-01,57559,4671,"[""Laptop"", ""Keyboard""]",979.53,{},47998,1,South America +2024-02-20,57560,6665,"[""Phone""]",951.59,"{""seasonal"": ""25%""}",269366,0,South America +2024-06-09,57561,7695,"[""Charger"", ""Phone"", ""Monitor""]",1090.53,"{"""": ""26%""}",186932,0,Africa +2024-09-07,57562,3690,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",634.6,{},76787,0,Africa +2023-01-03,57563,5002,"[""Charger"", ""Phone"", ""Laptop""]",4251.03,{},106040,0,Europe +2024-03-01,57564,2764,"[""Headphones""]",4351.63,"{""seasonal"": ""28%""}",248067,0,Africa +2024-05-29,57565,7695,"[""Headphones""]",2267.83,"{""loyalty"": ""30%""}",89709,0,South America +2023-08-30,57566,4057,"[""Phone""]",1548.4,"{""promo"": ""27%""}",123978,1,Africa +2024-06-28,57567,8375,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3022.04,"{""seasonal"": ""24%""}",4598,1,North America +2024-03-24,57568,5312,"[""Wireless Mouse"", ""Charger""]",1796.38,{},70444,1,Europe +2024-02-27,57569,6162,"[""Monitor"", ""Headphones"", ""Laptop""]",3398.52,{},109809,0,Asia +2024-04-18,57570,7685,"[""Headphones"", ""Monitor""]",3536.64,{},29148,1,Asia +2023-07-21,57571,270,"[""Monitor"", ""Tablet""]",3059.09,"{""promo"": ""10%""}",208318,1,Europe +2024-10-30,57572,1377,"[""Charger"", ""Laptop"", ""Tablet""]",757.9,"{""loyalty"": ""11%""}",151997,0,South America +2024-02-26,57573,9568,"[""Headphones""]",1830.64,"{""loyalty"": ""10%""}",108023,1,North America +2024-12-21,57574,5894,"[""Wireless Mouse""]",1668.48,"{""promo"": ""16%""}",252400,1,Asia +2024-01-08,57575,7924,"[""Headphones""]",201.02,{},4001,0,North America +2023-06-07,57576,3665,"[""Phone""]",1824.19,"{"""": ""25%""}",296865,0,Europe +2023-08-09,57577,87,"[""Keyboard"", ""Charger""]",2337.65,{},249748,1,South America +2024-04-12,57578,5747,"[""Keyboard""]",973.42,{},186009,0,North America +2024-01-14,57579,987,"[""Keyboard"", ""Headphones""]",1105.27,"{""seasonal"": ""19%""}",198245,1,North America +2023-03-20,57580,5226,"[""Keyboard""]",3877.76,{},7630,1,Asia +2024-06-09,57581,1280,"[""Laptop"", ""Tablet""]",3658.0,"{"""": ""11%""}",256976,0,Africa +2024-02-22,57582,3600,"[""Tablet"", ""Laptop""]",590.87,{},243769,1,South America +2024-09-26,57583,369,"[""Tablet"", ""Wireless Mouse""]",4690.28,{},133555,1,South America +2024-05-10,57584,5033,"[""Phone"", ""Tablet""]",3955.73,{},186339,0,Africa +2023-01-27,57585,5087,"[""Tablet"", ""Monitor"", ""Keyboard""]",4125.25,"{"""": ""17%""}",174782,0,South America +2023-06-16,57586,3138,"[""Keyboard"", ""Headphones"", ""Charger""]",1485.68,"{""seasonal"": ""12%""}",17841,0,Africa +2023-01-28,57587,2528,"[""Headphones"", ""Phone"", ""Charger""]",4182.93,{},179104,0,North America +2023-10-25,57588,5050,"[""Tablet"", ""Wireless Mouse""]",1467.01,"{""loyalty"": ""8%""}",128415,1,Europe +2023-01-15,57589,9850,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1503.95,"{""promo"": ""28%""}",124980,0,South America +2024-08-18,57590,3303,"[""Phone"", ""Charger"", ""Laptop""]",3416.59,{},49001,1,North America +2024-11-06,57591,4160,"[""Phone"", ""Laptop"", ""Monitor""]",601.52,{},263971,1,Europe +2023-04-06,57592,2448,"[""Tablet""]",853.78,"{""loyalty"": ""17%""}",198916,0,Europe +2024-10-01,57593,5584,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1375.02,"{"""": ""25%""}",298411,0,Africa +2023-06-17,57594,1013,"[""Keyboard""]",4595.73,"{""seasonal"": ""24%""}",178609,0,Europe +2023-07-06,57595,860,"[""Phone""]",2255.55,{},206953,0,Europe +2023-01-22,57596,7434,"[""Keyboard""]",609.06,{},130522,1,North America +2024-10-28,57597,6814,"[""Laptop""]",267.22,{},205143,0,North America +2023-12-17,57598,1810,"[""Headphones""]",862.8,"{""seasonal"": ""17%""}",10708,1,Africa +2024-03-05,57599,999,"[""Monitor"", ""Phone""]",3108.15,"{""promo"": ""16%""}",15178,1,Europe +2024-08-11,57600,5815,"[""Keyboard"", ""Tablet""]",4496.8,{},141957,0,North America +2024-05-11,57601,2590,"[""Keyboard"", ""Laptop"", ""Monitor""]",1537.54,{},129057,0,North America +2023-09-26,57602,3106,"[""Tablet""]",4964.23,{},52777,0,South America +2023-03-01,57603,1464,"[""Wireless Mouse""]",4865.9,"{""loyalty"": ""30%""}",69072,1,Africa +2024-05-20,57604,2454,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3185.62,"{"""": ""12%""}",33431,0,Asia +2023-09-19,57605,2194,"[""Wireless Mouse""]",4283.01,{},206144,1,South America +2024-03-14,57606,9813,"[""Laptop"", ""Monitor"", ""Phone""]",681.99,"{""seasonal"": ""13%""}",108432,0,South America +2024-10-28,57607,131,"[""Tablet"", ""Charger""]",4403.48,"{""seasonal"": ""5%""}",229620,0,Asia +2024-03-20,57608,801,"[""Headphones"", ""Phone""]",3755.54,"{""seasonal"": ""23%""}",288761,1,Africa +2023-03-30,57609,8424,"[""Tablet"", ""Charger""]",4208.19,{},244805,0,North America +2024-03-12,57610,2035,"[""Laptop"", ""Keyboard"", ""Monitor""]",3782.08,"{""seasonal"": ""18%""}",224581,0,Africa +2023-12-21,57611,1601,"[""Phone"", ""Keyboard"", ""Charger""]",3657.93,{},114863,0,North America +2023-10-25,57612,1708,"[""Charger"", ""Headphones"", ""Monitor""]",820.01,{},168567,0,Europe +2024-05-09,57613,4025,"[""Phone""]",4163.38,"{""loyalty"": ""25%""}",217749,0,South America +2024-03-10,57614,5663,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",788.27,{},126554,0,Asia +2024-09-20,57615,7342,"[""Monitor""]",204.73,"{""seasonal"": ""28%""}",231884,0,Europe +2024-04-21,57616,5903,"[""Monitor"", ""Headphones"", ""Laptop""]",4763.14,"{""seasonal"": ""7%""}",211841,0,Asia +2024-04-22,57617,4693,"[""Tablet"", ""Phone""]",1450.53,{},273860,1,Europe +2024-06-17,57618,2960,"[""Laptop""]",3581.88,{},282526,0,Africa +2024-08-12,57619,859,"[""Laptop""]",183.67,"{"""": ""22%""}",169244,0,Asia +2023-12-26,57620,1717,"[""Headphones"", ""Keyboard"", ""Tablet""]",2448.64,{},290853,1,South America +2023-07-10,57621,5490,"[""Phone"", ""Charger"", ""Tablet""]",3811.98,"{""seasonal"": ""29%""}",148589,1,Asia +2023-02-24,57622,7499,"[""Monitor"", ""Keyboard"", ""Laptop""]",1862.68,{},258111,0,Asia +2023-06-26,57623,5784,"[""Laptop"", ""Phone"", ""Tablet""]",4095.12,"{""loyalty"": ""22%""}",216477,1,South America +2023-09-06,57624,6623,"[""Headphones""]",2713.78,"{""loyalty"": ""18%""}",167174,1,North America +2024-01-23,57625,3806,"[""Laptop"", ""Keyboard"", ""Tablet""]",3750.22,"{"""": ""5%""}",292569,0,Asia +2024-05-19,57626,4922,"[""Keyboard"", ""Monitor"", ""Phone""]",3200.78,"{""seasonal"": ""7%""}",217435,1,Africa +2023-04-15,57627,5169,"[""Tablet"", ""Phone"", ""Laptop""]",3495.35,{},55946,0,South America +2024-11-22,57628,9091,"[""Monitor"", ""Phone""]",1970.78,{},233211,1,South America +2024-05-05,57629,5669,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2041.5,"{"""": ""12%""}",199868,0,North America +2023-02-04,57630,9165,"[""Phone""]",975.28,{},171245,0,North America +2023-02-01,57631,6878,"[""Wireless Mouse"", ""Monitor""]",476.97,{},118897,0,Africa +2024-03-05,57632,6925,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3671.09,"{""loyalty"": ""13%""}",214113,0,Africa +2024-11-22,57633,4917,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3620.64,{},291670,0,Africa +2023-11-26,57634,9123,"[""Phone"", ""Laptop""]",2730.41,{},18568,0,Europe +2024-06-01,57635,5230,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2213.66,"{""seasonal"": ""23%""}",58636,0,South America +2024-05-03,57636,5482,"[""Headphones"", ""Tablet""]",2505.9,{},117633,1,Africa +2024-09-06,57637,4451,"[""Wireless Mouse""]",4664.11,{},159946,1,Africa +2023-06-28,57638,9288,"[""Charger"", ""Monitor""]",3713.73,"{""seasonal"": ""26%""}",51478,1,North America +2024-06-19,57639,6766,"[""Headphones"", ""Laptop"", ""Keyboard""]",3016.58,{},84920,0,Asia +2024-02-29,57640,5932,"[""Monitor"", ""Wireless Mouse""]",4734.33,"{""loyalty"": ""24%""}",140287,0,South America +2024-10-14,57641,6404,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1582.24,"{""promo"": ""18%""}",76633,0,South America +2024-09-26,57642,1293,"[""Headphones"", ""Keyboard"", ""Tablet""]",814.69,"{"""": ""15%""}",99670,0,Europe +2023-09-29,57643,4199,"[""Tablet""]",4342.57,"{""promo"": ""22%""}",89604,1,Africa +2024-09-11,57644,4704,"[""Keyboard""]",3428.86,"{""seasonal"": ""9%""}",225130,0,North America +2024-05-29,57645,2873,"[""Wireless Mouse"", ""Laptop""]",1740.76,"{""seasonal"": ""10%""}",5043,0,South America +2024-05-05,57646,7860,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1845.63,"{""seasonal"": ""24%""}",224613,1,Africa +2024-10-10,57647,4784,"[""Monitor"", ""Tablet""]",1686.44,"{""loyalty"": ""20%""}",173294,1,Africa +2023-11-13,57648,6667,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3974.2,{},271681,1,Asia +2024-11-03,57649,7684,"[""Wireless Mouse"", ""Laptop""]",91.75,{},161993,1,Asia +2023-06-16,57650,3531,"[""Charger""]",57.26,{},160657,1,Africa +2023-03-27,57651,4971,"[""Charger""]",4702.78,{},20255,1,South America +2023-06-25,57652,3889,"[""Keyboard"", ""Headphones"", ""Phone""]",1144.32,{},286021,0,North America +2023-06-03,57653,4841,"[""Charger"", ""Laptop"", ""Monitor""]",554.79,{},103741,1,Africa +2023-12-14,57654,1219,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3588.76,{},28048,1,Africa +2024-03-18,57655,7853,"[""Monitor"", ""Phone""]",4193.55,"{"""": ""20%""}",176479,1,Africa +2024-03-02,57656,6205,"[""Charger"", ""Keyboard""]",2408.31,"{"""": ""19%""}",85667,0,South America +2024-07-01,57657,3362,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",912.28,{},73762,0,South America +2024-04-22,57658,4995,"[""Tablet"", ""Wireless Mouse""]",178.41,{},285164,1,North America +2023-05-23,57659,1578,"[""Phone"", ""Monitor"", ""Laptop""]",3519.85,{},195802,0,South America +2023-12-01,57660,7374,"[""Tablet"", ""Charger"", ""Headphones""]",2092.84,"{""loyalty"": ""6%""}",11407,0,South America +2023-07-03,57661,5884,"[""Monitor"", ""Keyboard""]",3240.63,"{""loyalty"": ""27%""}",145028,0,Asia +2024-01-21,57662,2668,"[""Wireless Mouse""]",3641.26,{},220662,0,South America +2023-08-27,57663,9077,"[""Keyboard""]",1469.14,{},54389,0,North America +2023-03-14,57664,3391,"[""Wireless Mouse"", ""Phone""]",4391.28,{},277417,1,South America +2023-01-11,57665,7602,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4077.69,"{""seasonal"": ""26%""}",25318,0,Asia +2023-03-17,57666,4138,"[""Keyboard"", ""Charger""]",4362.0,{},142577,1,South America +2023-10-22,57667,2949,"[""Laptop"", ""Headphones""]",2412.16,"{""promo"": ""14%""}",232171,1,Europe +2024-04-27,57668,8966,"[""Headphones""]",2079.62,"{""promo"": ""15%""}",73132,0,South America +2024-10-01,57669,7662,"[""Charger"", ""Monitor"", ""Keyboard""]",4517.12,{},228551,1,Europe +2024-08-04,57670,7661,"[""Monitor""]",951.41,"{""seasonal"": ""14%""}",247212,0,North America +2023-04-21,57671,83,"[""Headphones"", ""Phone""]",2193.96,{},126737,0,South America +2023-07-05,57672,591,"[""Wireless Mouse"", ""Charger""]",1114.81,"{""promo"": ""15%""}",65058,1,Asia +2023-12-30,57673,1208,"[""Tablet"", ""Keyboard"", ""Laptop""]",1671.43,{},142860,0,South America +2023-02-13,57674,946,"[""Tablet"", ""Laptop""]",1565.91,"{""promo"": ""21%""}",92532,1,Asia +2023-01-30,57675,1467,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2934.74,"{"""": ""14%""}",296108,1,South America +2024-07-18,57676,2968,"[""Phone"", ""Monitor"", ""Charger""]",4549.53,{},270928,0,North America +2024-07-21,57677,3111,"[""Tablet"", ""Laptop""]",4907.87,{},157998,0,Asia +2023-09-24,57678,8059,"[""Monitor"", ""Wireless Mouse""]",3938.57,"{"""": ""26%""}",206755,0,Asia +2023-12-18,57679,3569,"[""Charger"", ""Phone""]",3971.0,{},78386,0,Asia +2024-03-04,57680,6629,"[""Tablet""]",1481.65,"{""seasonal"": ""14%""}",102313,1,Asia +2024-12-03,57681,215,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2808.0,"{"""": ""28%""}",73615,1,North America +2024-07-20,57682,6331,"[""Laptop""]",3563.3,"{""promo"": ""10%""}",21343,1,Africa +2023-09-02,57683,9104,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3258.44,{},46276,0,North America +2023-07-26,57684,3410,"[""Laptop"", ""Keyboard"", ""Charger""]",169.9,"{""seasonal"": ""17%""}",95511,1,North America +2023-10-06,57685,9213,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4050.26,"{""seasonal"": ""13%""}",163452,1,North America +2024-06-28,57686,9854,"[""Wireless Mouse""]",1947.73,"{"""": ""12%""}",5837,1,Asia +2023-01-20,57687,6860,"[""Phone"", ""Charger""]",2695.49,"{""promo"": ""25%""}",100555,0,Asia +2023-08-22,57688,3501,"[""Keyboard"", ""Monitor""]",3650.94,"{"""": ""8%""}",203594,0,Africa +2023-07-07,57689,8137,"[""Keyboard"", ""Tablet"", ""Phone""]",2330.46,"{""seasonal"": ""29%""}",176631,1,Asia +2024-12-10,57690,4274,"[""Monitor"", ""Tablet"", ""Keyboard""]",3927.55,{},5624,1,North America +2024-11-30,57691,5817,"[""Tablet"", ""Monitor""]",1389.26,{},151798,1,Africa +2023-03-17,57692,5630,"[""Headphones"", ""Laptop"", ""Charger""]",3526.91,"{""seasonal"": ""18%""}",236950,1,Asia +2023-03-31,57693,303,"[""Wireless Mouse"", ""Charger""]",924.22,"{""promo"": ""21%""}",299460,0,Africa +2023-06-15,57694,827,"[""Laptop"", ""Headphones"", ""Phone""]",2584.45,{},25682,1,Asia +2024-04-20,57695,9404,"[""Keyboard"", ""Laptop"", ""Headphones""]",4186.04,{},159707,1,Asia +2024-04-20,57696,415,"[""Phone"", ""Keyboard"", ""Monitor""]",4047.3,"{"""": ""5%""}",277969,0,Africa +2024-03-20,57697,7260,"[""Tablet"", ""Keyboard"", ""Phone""]",4502.28,"{""seasonal"": ""28%""}",148168,1,Asia +2023-03-03,57698,9391,"[""Tablet"", ""Headphones""]",2412.04,{},3800,1,Africa +2023-07-16,57699,1402,"[""Laptop"", ""Tablet"", ""Phone""]",4043.29,{},129201,0,Africa +2023-02-21,57700,7064,"[""Laptop"", ""Headphones""]",4017.03,"{""loyalty"": ""10%""}",125870,0,Asia +2024-09-03,57701,1784,"[""Keyboard"", ""Monitor""]",4284.2,{},110230,0,Africa +2024-03-07,57702,3014,"[""Phone""]",92.34,"{"""": ""5%""}",278726,0,Europe +2024-02-03,57703,6217,"[""Wireless Mouse"", ""Tablet""]",3330.79,"{""loyalty"": ""30%""}",61582,1,South America +2024-08-14,57704,7,"[""Keyboard""]",3106.9,{},270109,1,Asia +2024-04-17,57705,5343,"[""Laptop"", ""Monitor"", ""Tablet""]",3061.59,"{"""": ""30%""}",139036,1,North America +2023-04-17,57706,337,"[""Tablet""]",4338.86,{},149943,0,North America +2023-08-31,57707,5195,"[""Headphones""]",940.93,"{"""": ""30%""}",223714,0,Asia +2024-12-11,57708,5040,"[""Tablet"", ""Laptop""]",3490.65,"{""promo"": ""26%""}",109522,0,North America +2023-07-22,57709,7934,"[""Headphones"", ""Wireless Mouse""]",4788.3,"{"""": ""23%""}",187209,0,South America +2024-08-30,57710,3725,"[""Phone""]",2150.37,"{""seasonal"": ""15%""}",114627,0,Africa +2023-02-13,57711,1349,"[""Keyboard"", ""Tablet""]",4636.75,"{""promo"": ""20%""}",92978,0,North America +2024-11-14,57712,4698,"[""Keyboard"", ""Tablet"", ""Headphones""]",1313.07,"{"""": ""12%""}",238209,0,North America +2023-11-16,57713,8082,"[""Monitor"", ""Tablet""]",1125.47,"{""promo"": ""26%""}",28720,1,Africa +2023-05-24,57714,7016,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1643.12,{},258897,1,North America +2024-04-21,57715,2377,"[""Keyboard"", ""Headphones"", ""Charger""]",4272.53,"{""loyalty"": ""14%""}",106988,1,North America +2023-12-30,57716,3514,"[""Headphones""]",4374.25,{},208188,0,Europe +2023-09-16,57717,8961,"[""Charger"", ""Keyboard""]",3263.09,"{""seasonal"": ""24%""}",229225,0,North America +2023-01-06,57718,2944,"[""Headphones""]",1458.57,"{""promo"": ""21%""}",140324,0,Africa +2024-02-17,57719,2499,"[""Tablet"", ""Laptop"", ""Headphones""]",3986.29,{},110600,0,North America +2023-08-08,57720,9003,"[""Keyboard"", ""Laptop""]",4736.4,{},51728,0,North America +2024-03-06,57721,4323,"[""Phone""]",1338.12,"{""seasonal"": ""12%""}",23347,0,Asia +2024-04-12,57722,9284,"[""Tablet"", ""Keyboard""]",4300.41,{},6431,0,Asia +2024-02-09,57723,6106,"[""Laptop""]",137.48,{},39918,1,Africa +2023-02-09,57724,2165,"[""Phone"", ""Monitor"", ""Keyboard""]",4642.89,"{""loyalty"": ""11%""}",33748,0,South America +2023-10-29,57725,4396,"[""Laptop""]",4713.01,"{""promo"": ""30%""}",182244,0,Asia +2024-12-29,57726,4828,"[""Charger"", ""Headphones"", ""Tablet""]",3068.59,{},139836,1,North America +2023-04-07,57727,9763,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1164.03,{},91232,0,Asia +2023-08-20,57728,8107,"[""Monitor"", ""Charger""]",992.23,"{"""": ""8%""}",235158,0,Europe +2024-07-17,57729,8220,"[""Monitor""]",453.78,{},235721,1,North America +2024-04-07,57730,3658,"[""Phone""]",1158.53,"{""promo"": ""16%""}",107945,1,Europe +2023-09-21,57731,8192,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1132.18,"{"""": ""21%""}",211603,1,North America +2024-10-28,57732,2728,"[""Charger""]",377.49,{},98992,0,South America +2023-07-01,57733,5236,"[""Wireless Mouse""]",3594.76,"{""promo"": ""15%""}",196370,0,Europe +2023-03-01,57734,9880,"[""Tablet"", ""Charger"", ""Phone""]",3028.42,{},162434,1,Europe +2023-04-02,57735,7633,"[""Phone"", ""Headphones""]",125.04,{},270962,1,North America +2023-12-15,57736,5508,"[""Tablet"", ""Phone""]",631.96,{},41197,0,Asia +2023-02-01,57737,6957,"[""Tablet"", ""Headphones""]",3890.7,"{"""": ""11%""}",151279,0,North America +2024-04-18,57738,1237,"[""Laptop"", ""Charger""]",2682.48,"{""loyalty"": ""7%""}",246084,1,Africa +2023-05-28,57739,8003,"[""Monitor"", ""Wireless Mouse""]",512.33,"{""seasonal"": ""16%""}",27331,1,Asia +2023-12-05,57740,5251,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3024.36,{},107135,1,Africa +2024-03-28,57741,763,"[""Monitor""]",4834.22,"{""promo"": ""27%""}",123600,0,Europe +2023-09-02,57742,7394,"[""Charger"", ""Phone""]",3416.67,{},176640,1,North America +2023-11-07,57743,5534,"[""Monitor"", ""Headphones""]",2832.89,"{""seasonal"": ""26%""}",207291,0,South America +2024-05-25,57744,3457,"[""Tablet"", ""Monitor"", ""Charger""]",4134.38,"{""promo"": ""24%""}",141452,1,South America +2023-07-17,57745,8427,"[""Laptop"", ""Headphones"", ""Monitor""]",4372.33,"{""seasonal"": ""21%""}",286714,0,Asia +2023-12-31,57746,432,"[""Headphones"", ""Wireless Mouse""]",2387.38,{},163478,0,Asia +2023-02-14,57747,9816,"[""Laptop"", ""Tablet""]",1060.98,"{""loyalty"": ""9%""}",26554,1,Europe +2023-09-04,57748,4598,"[""Laptop"", ""Charger""]",3645.21,"{""seasonal"": ""17%""}",8911,1,South America +2024-08-09,57749,7593,"[""Tablet"", ""Phone"", ""Headphones""]",478.45,{},18892,0,Africa +2024-06-07,57750,9953,"[""Tablet"", ""Laptop""]",1512.42,"{""promo"": ""26%""}",99873,0,Europe +2024-08-20,57751,791,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3886.57,{},55695,1,South America +2023-12-08,57752,4710,"[""Phone"", ""Keyboard"", ""Monitor""]",2034.09,{},266177,1,Europe +2024-10-17,57753,4182,"[""Tablet"", ""Keyboard""]",2159.35,{},275668,0,Africa +2024-07-03,57754,6254,"[""Monitor""]",710.63,{},149892,0,Asia +2024-11-25,57755,7419,"[""Charger"", ""Headphones""]",2568.03,{},280972,1,Europe +2023-07-09,57756,4302,"[""Tablet""]",526.94,"{""loyalty"": ""18%""}",29287,1,Europe +2024-01-01,57757,8566,"[""Tablet""]",4952.12,"{""seasonal"": ""27%""}",47139,0,South America +2023-01-07,57758,4542,"[""Keyboard"", ""Charger"", ""Phone""]",1914.16,{},279730,0,South America +2023-03-13,57759,9820,"[""Laptop"", ""Keyboard"", ""Tablet""]",1202.66,{},72942,0,Africa +2023-07-13,57760,5486,"[""Headphones"", ""Phone"", ""Monitor""]",349.33,"{""promo"": ""24%""}",28494,1,Europe +2023-03-04,57761,1175,"[""Phone""]",305.58,{},184561,1,North America +2024-11-26,57762,3421,"[""Laptop"", ""Wireless Mouse""]",4187.42,"{""loyalty"": ""11%""}",117524,0,Asia +2023-09-24,57763,5117,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2723.7,{},144605,0,Asia +2023-09-24,57764,5305,"[""Phone""]",1044.37,{},159564,0,Europe +2023-05-22,57765,6253,"[""Laptop""]",787.95,{},67142,1,Europe +2023-06-28,57766,9094,"[""Laptop"", ""Wireless Mouse""]",2721.66,{},13210,1,South America +2023-10-22,57767,7944,"[""Tablet"", ""Keyboard"", ""Laptop""]",1338.41,"{""seasonal"": ""19%""}",211240,1,Asia +2024-12-14,57768,508,"[""Wireless Mouse""]",2647.05,"{""seasonal"": ""15%""}",148864,0,South America +2024-10-17,57769,7957,"[""Laptop"", ""Monitor""]",2544.79,"{""seasonal"": ""27%""}",253140,1,Asia +2024-04-04,57770,8856,"[""Tablet""]",631.91,{},295586,1,Europe +2023-02-11,57771,2927,"[""Charger"", ""Phone"", ""Wireless Mouse""]",936.19,"{""promo"": ""24%""}",102540,0,Europe +2023-07-27,57772,361,"[""Charger"", ""Monitor"", ""Phone""]",3108.56,{},10874,1,South America +2023-09-07,57773,3767,"[""Wireless Mouse"", ""Phone""]",4161.55,"{""seasonal"": ""28%""}",105121,1,Africa +2023-06-27,57774,820,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1740.93,"{""seasonal"": ""19%""}",145307,0,Africa +2023-06-14,57775,3988,"[""Tablet""]",2170.28,{},79035,0,Asia +2023-02-08,57776,4482,"[""Tablet"", ""Headphones"", ""Charger""]",4829.15,{},160444,0,South America +2024-02-02,57777,9986,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1496.09,"{""loyalty"": ""14%""}",98644,1,South America +2024-05-11,57778,3665,"[""Wireless Mouse""]",110.58,"{""loyalty"": ""10%""}",143529,0,Asia +2023-01-01,57779,4141,"[""Wireless Mouse""]",1365.61,"{""promo"": ""5%""}",22812,1,South America +2024-08-04,57780,9592,"[""Monitor"", ""Headphones"", ""Charger""]",2785.77,"{"""": ""23%""}",80477,0,Asia +2023-03-08,57781,6179,"[""Laptop"", ""Monitor""]",2911.01,{},120566,0,South America +2023-09-14,57782,5241,"[""Charger""]",3034.06,{},54541,1,Europe +2023-10-15,57783,1785,"[""Tablet""]",2797.87,{},182248,0,Asia +2023-07-22,57784,5461,"[""Charger""]",4094.24,{},127075,0,North America +2023-10-22,57785,5032,"[""Headphones"", ""Monitor"", ""Phone""]",1647.3,"{""promo"": ""27%""}",91654,1,Africa +2024-09-07,57786,6599,"[""Charger"", ""Laptop"", ""Keyboard""]",1644.43,{},93814,1,Europe +2023-07-15,57787,4077,"[""Headphones"", ""Tablet""]",1740.51,"{""seasonal"": ""17%""}",267574,1,Europe +2024-03-15,57788,9586,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3704.65,{},79307,1,Europe +2023-08-31,57789,9403,"[""Charger"", ""Headphones"", ""Tablet""]",2065.65,{},224942,1,South America +2023-01-31,57790,2304,"[""Charger"", ""Monitor""]",3412.47,"{""promo"": ""17%""}",213657,1,Europe +2023-04-27,57791,139,"[""Keyboard"", ""Tablet"", ""Phone""]",3909.02,{},29762,0,South America +2023-08-15,57792,5968,"[""Keyboard"", ""Headphones"", ""Phone""]",2957.53,{},171127,1,South America +2023-05-13,57793,3994,"[""Monitor"", ""Tablet"", ""Headphones""]",1348.77,"{""promo"": ""21%""}",16536,1,Africa +2024-09-27,57794,2172,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3809.23,"{""seasonal"": ""13%""}",23628,1,South America +2023-02-04,57795,1248,"[""Headphones"", ""Keyboard""]",3581.82,{},182087,1,Asia +2023-07-16,57796,8471,"[""Charger"", ""Monitor"", ""Phone""]",3678.14,{},46133,0,Europe +2024-07-10,57797,1404,"[""Laptop""]",848.85,{},232767,0,North America +2024-07-18,57798,2132,"[""Monitor"", ""Laptop""]",917.5,"{""loyalty"": ""27%""}",183571,1,Asia +2023-01-04,57799,9098,"[""Laptop""]",3546.78,{},183491,1,Europe +2023-03-04,57800,5810,"[""Keyboard"", ""Wireless Mouse""]",3203.54,"{""seasonal"": ""6%""}",140185,1,Asia +2024-08-07,57801,1994,"[""Tablet""]",4288.61,"{""promo"": ""21%""}",50384,0,Asia +2024-09-18,57802,57,"[""Tablet"", ""Monitor"", ""Charger""]",1310.98,{},278506,1,Europe +2024-05-17,57803,3331,"[""Monitor""]",4724.71,{},90489,1,Africa +2023-10-25,57804,5228,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3710.08,{},132637,1,Asia +2023-05-15,57805,6358,"[""Monitor""]",841.36,"{""promo"": ""30%""}",89113,1,Asia +2024-01-21,57806,1674,"[""Keyboard"", ""Wireless Mouse""]",3214.19,"{""promo"": ""24%""}",4349,0,Europe +2024-12-16,57807,2015,"[""Phone"", ""Tablet""]",3311.59,"{""promo"": ""29%""}",203991,1,North America +2023-05-27,57808,176,"[""Headphones"", ""Monitor""]",1291.47,{},61772,0,Europe +2023-08-25,57809,1201,"[""Phone""]",1605.03,{},25453,1,North America +2023-03-28,57810,4762,"[""Headphones""]",4832.11,"{""loyalty"": ""10%""}",237059,0,Africa +2024-07-17,57811,7667,"[""Keyboard"", ""Laptop"", ""Monitor""]",4327.15,{},19172,1,Africa +2024-02-08,57812,5718,"[""Charger""]",4588.95,{},145967,1,North America +2023-01-04,57813,9731,"[""Headphones""]",3050.33,{},193799,0,Europe +2024-09-04,57814,7886,"[""Phone"", ""Tablet"", ""Keyboard""]",4246.0,"{""seasonal"": ""24%""}",7374,0,Africa +2024-09-23,57815,5901,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2253.21,{},47055,0,North America +2023-04-06,57816,7810,"[""Charger"", ""Keyboard""]",4540.74,"{""seasonal"": ""7%""}",226893,0,Asia +2023-04-09,57817,592,"[""Phone"", ""Keyboard""]",3654.53,{},136323,0,Africa +2023-03-13,57818,8112,"[""Laptop""]",147.24,"{"""": ""12%""}",38203,1,Asia +2024-07-19,57819,9465,"[""Phone"", ""Keyboard"", ""Charger""]",2397.43,"{""seasonal"": ""14%""}",189614,1,South America +2023-08-11,57820,958,"[""Headphones"", ""Laptop"", ""Phone""]",1305.87,{},21442,1,Asia +2024-09-08,57821,2132,"[""Headphones""]",3924.21,{},65255,1,South America +2023-05-27,57822,2361,"[""Phone"", ""Monitor""]",1293.97,{},45424,0,Asia +2023-05-28,57823,2301,"[""Headphones"", ""Phone""]",110.92,{},99197,1,North America +2023-05-23,57824,7247,"[""Tablet""]",3446.03,"{""loyalty"": ""20%""}",6393,1,Asia +2024-06-01,57825,5639,"[""Wireless Mouse"", ""Laptop""]",3597.37,"{""promo"": ""15%""}",82690,0,Europe +2024-05-01,57826,1051,"[""Laptop"", ""Headphones""]",3057.61,{},125562,1,Africa +2023-09-24,57827,2557,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1203.57,{},72014,0,North America +2023-07-20,57828,3500,"[""Keyboard"", ""Monitor"", ""Charger""]",1772.47,"{""loyalty"": ""25%""}",245006,1,Asia +2024-08-10,57829,8608,"[""Headphones"", ""Tablet"", ""Phone""]",1166.82,"{""promo"": ""10%""}",222673,0,Asia +2024-08-09,57830,4018,"[""Headphones"", ""Monitor"", ""Charger""]",193.29,"{""promo"": ""23%""}",82350,1,Africa +2023-05-16,57831,2301,"[""Tablet"", ""Phone""]",4920.64,"{""seasonal"": ""22%""}",158011,1,South America +2023-12-09,57832,6322,"[""Charger"", ""Wireless Mouse""]",2838.64,"{""loyalty"": ""24%""}",65053,0,Africa +2024-07-10,57833,5420,"[""Keyboard""]",362.64,"{""promo"": ""30%""}",110217,1,Europe +2023-12-09,57834,2107,"[""Laptop"", ""Phone""]",4170.77,"{""loyalty"": ""27%""}",163293,0,South America +2024-11-19,57835,7173,"[""Keyboard""]",2171.01,"{"""": ""26%""}",134139,1,Europe +2024-02-20,57836,7486,"[""Charger"", ""Keyboard"", ""Laptop""]",148.79,{},156397,1,Europe +2024-12-10,57837,5843,"[""Keyboard"", ""Charger""]",278.82,{},105013,0,North America +2024-06-29,57838,5164,"[""Phone""]",1784.64,{},291441,0,North America +2023-07-20,57839,5245,"[""Phone"", ""Charger""]",2351.55,"{""promo"": ""17%""}",200835,1,Asia +2023-04-01,57840,6523,"[""Keyboard"", ""Tablet""]",1381.27,"{""loyalty"": ""19%""}",36429,1,Africa +2024-11-27,57841,625,"[""Monitor"", ""Keyboard"", ""Charger""]",4826.89,"{"""": ""25%""}",44251,0,North America +2024-12-16,57842,170,"[""Wireless Mouse"", ""Charger""]",2976.37,"{""loyalty"": ""10%""}",199156,0,North America +2024-04-10,57843,1259,"[""Tablet"", ""Headphones"", ""Monitor""]",326.21,{},152908,0,South America +2024-05-28,57844,3527,"[""Wireless Mouse""]",1568.92,{},128406,1,Asia +2023-07-01,57845,8287,"[""Phone""]",1688.74,"{""loyalty"": ""12%""}",32576,1,North America +2024-09-09,57846,248,"[""Wireless Mouse""]",3557.2,"{""seasonal"": ""10%""}",100180,0,Europe +2024-09-05,57847,9035,"[""Wireless Mouse""]",162.56,{},58684,0,Europe +2024-04-05,57848,8897,"[""Monitor"", ""Phone"", ""Laptop""]",2659.56,{},237043,0,Europe +2023-07-02,57849,7992,"[""Headphones""]",2445.2,"{""promo"": ""13%""}",231708,1,North America +2024-03-09,57850,7921,"[""Keyboard"", ""Wireless Mouse""]",2077.85,{},144324,1,South America +2024-05-02,57851,9206,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3531.08,{},176233,1,Europe +2023-12-07,57852,4307,"[""Laptop"", ""Tablet""]",4529.29,{},264578,0,Africa +2023-10-14,57853,7049,"[""Phone"", ""Headphones""]",1032.27,{},35666,1,South America +2023-09-14,57854,8934,"[""Monitor""]",4359.47,"{""promo"": ""27%""}",278198,1,Europe +2024-08-14,57855,6639,"[""Keyboard"", ""Headphones"", ""Charger""]",4146.79,"{"""": ""9%""}",49567,0,Africa +2023-06-17,57856,9556,"[""Wireless Mouse""]",2810.62,{},197370,1,Europe +2024-08-28,57857,3877,"[""Tablet""]",1275.51,{},219309,1,Asia +2024-07-11,57858,3831,"[""Headphones""]",2845.99,"{""seasonal"": ""19%""}",221952,0,North America +2023-05-09,57859,8509,"[""Keyboard"", ""Laptop"", ""Tablet""]",2769.19,{},145218,1,Asia +2023-11-12,57860,8886,"[""Charger""]",376.89,"{""promo"": ""26%""}",33517,0,Africa +2024-07-28,57861,8048,"[""Headphones""]",767.15,{},220109,1,Europe +2023-11-03,57862,4013,"[""Keyboard"", ""Laptop""]",3127.23,"{""seasonal"": ""19%""}",190951,1,Asia +2023-07-04,57863,4916,"[""Wireless Mouse"", ""Tablet""]",3951.11,{},280050,1,Europe +2024-10-22,57864,6920,"[""Tablet""]",3899.98,"{"""": ""18%""}",242871,1,South America +2023-11-26,57865,7639,"[""Charger"", ""Tablet""]",1486.52,{},11121,0,Africa +2023-11-25,57866,4950,"[""Headphones"", ""Keyboard""]",310.27,{},168930,0,Africa +2024-03-05,57867,7516,"[""Monitor"", ""Laptop""]",104.3,{},213813,1,South America +2023-10-26,57868,9849,"[""Monitor""]",1526.9,"{""loyalty"": ""20%""}",66062,0,North America +2023-05-08,57869,2216,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2683.41,"{""promo"": ""27%""}",231964,0,Europe +2023-12-25,57870,7607,"[""Keyboard"", ""Phone""]",619.32,{},215022,1,Africa +2023-11-20,57871,8425,"[""Laptop"", ""Keyboard"", ""Phone""]",2013.18,"{"""": ""7%""}",230213,0,Africa +2023-06-17,57872,2696,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1852.56,{},4312,1,Asia +2024-04-05,57873,4389,"[""Monitor""]",443.59,"{"""": ""21%""}",59564,1,Africa +2023-10-04,57874,355,"[""Phone""]",729.66,"{""seasonal"": ""24%""}",55579,1,Europe +2023-03-28,57875,9211,"[""Tablet""]",3858.45,{},137982,1,Europe +2024-02-04,57876,2662,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",92.94,{},4952,0,Asia +2024-06-09,57877,7144,"[""Wireless Mouse"", ""Laptop""]",4831.56,"{""seasonal"": ""17%""}",287612,1,Asia +2023-04-09,57878,3207,"[""Phone""]",3775.33,{},273831,0,Africa +2024-11-20,57879,8908,"[""Phone"", ""Laptop"", ""Monitor""]",4152.24,{},58365,1,North America +2023-01-28,57880,886,"[""Monitor"", ""Laptop"", ""Tablet""]",3329.91,{},15017,1,South America +2024-12-25,57881,5606,"[""Phone""]",2651.07,{},29318,0,Africa +2024-12-09,57882,627,"[""Charger"", ""Phone""]",1770.03,{},222631,0,South America +2024-07-10,57883,3117,"[""Tablet"", ""Charger""]",3127.45,"{""promo"": ""5%""}",285453,0,Africa +2024-07-04,57884,249,"[""Headphones"", ""Charger"", ""Tablet""]",1359.04,"{""loyalty"": ""10%""}",95111,1,South America +2023-06-22,57885,9867,"[""Phone"", ""Headphones""]",4509.99,{},272862,1,North America +2024-02-11,57886,5236,"[""Keyboard"", ""Monitor""]",412.01,"{""promo"": ""16%""}",153442,1,Africa +2023-01-23,57887,4677,"[""Headphones"", ""Phone"", ""Keyboard""]",1490.45,"{""seasonal"": ""11%""}",174124,1,South America +2024-01-27,57888,7622,"[""Laptop"", ""Tablet"", ""Monitor""]",1027.06,"{""seasonal"": ""24%""}",143819,0,North America +2024-09-27,57889,7699,"[""Tablet"", ""Wireless Mouse""]",3508.76,{},35314,0,South America +2023-12-25,57890,3809,"[""Phone"", ""Charger"", ""Headphones""]",3031.45,"{""loyalty"": ""12%""}",121574,0,South America +2024-04-11,57891,516,"[""Charger"", ""Keyboard"", ""Monitor""]",4009.52,"{""loyalty"": ""30%""}",270523,1,Asia +2023-12-31,57892,9384,"[""Wireless Mouse""]",3327.45,{},258006,0,Africa +2024-06-28,57893,540,"[""Phone"", ""Keyboard""]",4221.67,"{"""": ""10%""}",183801,0,South America +2024-03-04,57894,2694,"[""Keyboard"", ""Phone""]",341.63,{},255030,1,Africa +2023-12-16,57895,5654,"[""Monitor""]",1072.3,"{"""": ""11%""}",53763,0,Asia +2023-08-06,57896,6313,"[""Laptop"", ""Monitor""]",1460.44,{},144930,1,Asia +2024-01-31,57897,3516,"[""Keyboard"", ""Headphones""]",4341.11,"{""seasonal"": ""21%""}",31034,0,South America +2024-11-16,57898,3835,"[""Wireless Mouse""]",1006.15,{},214506,0,Africa +2024-02-07,57899,2672,"[""Laptop"", ""Wireless Mouse""]",309.29,"{""loyalty"": ""26%""}",293555,1,North America +2024-09-06,57900,7107,"[""Tablet""]",3377.07,{},62704,1,Africa +2023-06-26,57901,9140,"[""Charger"", ""Headphones""]",4169.05,{},53061,0,Europe +2023-03-27,57902,5989,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2457.05,"{""seasonal"": ""5%""}",21372,1,North America +2023-08-15,57903,9556,"[""Keyboard"", ""Laptop"", ""Charger""]",1331.19,{},209028,1,South America +2023-02-09,57904,194,"[""Monitor""]",1027.84,{},148616,0,South America +2023-01-19,57905,7238,"[""Phone"", ""Tablet""]",2218.45,"{""seasonal"": ""21%""}",244815,1,Europe +2023-10-16,57906,9005,"[""Monitor""]",1051.01,{},11733,0,South America +2023-03-12,57907,9750,"[""Laptop"", ""Charger"", ""Phone""]",2587.1,"{""loyalty"": ""27%""}",135318,0,South America +2023-12-31,57908,5671,"[""Tablet"", ""Keyboard""]",2202.65,{},272327,0,Europe +2023-05-18,57909,4264,"[""Keyboard"", ""Charger"", ""Laptop""]",4493.7,"{""loyalty"": ""17%""}",136553,1,Europe +2023-08-22,57910,5285,"[""Headphones""]",3528.06,"{""promo"": ""23%""}",278834,0,North America +2023-08-23,57911,4225,"[""Monitor"", ""Phone""]",989.82,{},217275,1,Africa +2023-03-11,57912,3852,"[""Phone"", ""Charger""]",339.52,{},177890,1,Asia +2023-10-01,57913,190,"[""Laptop"", ""Charger""]",4853.81,"{""promo"": ""24%""}",203909,1,Africa +2023-10-01,57914,4588,"[""Charger"", ""Headphones"", ""Monitor""]",2078.28,"{"""": ""9%""}",299196,0,Asia +2023-02-08,57915,5992,"[""Keyboard"", ""Charger""]",4999.42,"{"""": ""13%""}",292864,1,Europe +2024-10-04,57916,6859,"[""Headphones""]",335.2,"{""promo"": ""8%""}",228322,0,North America +2024-06-06,57917,4487,"[""Headphones"", ""Phone"", ""Laptop""]",4645.91,"{""loyalty"": ""27%""}",79664,0,Asia +2024-01-24,57918,8469,"[""Laptop""]",4768.28,"{""seasonal"": ""14%""}",107299,1,South America +2023-08-24,57919,8172,"[""Charger""]",2162.07,"{""loyalty"": ""12%""}",166999,0,Asia +2024-10-02,57920,6985,"[""Charger"", ""Laptop""]",4430.32,"{""promo"": ""17%""}",85568,0,South America +2024-07-07,57921,9313,"[""Tablet"", ""Headphones"", ""Laptop""]",693.5,{},75569,0,North America +2024-08-01,57922,6941,"[""Phone""]",1407.81,{},264910,0,Europe +2024-05-17,57923,7399,"[""Charger"", ""Monitor""]",1872.06,{},265642,0,Europe +2023-05-01,57924,8095,"[""Monitor""]",230.6,"{"""": ""15%""}",154335,0,North America +2024-09-15,57925,2801,"[""Monitor""]",4676.73,"{"""": ""21%""}",173917,1,Europe +2023-10-04,57926,6481,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2517.11,"{""seasonal"": ""27%""}",116354,0,North America +2024-03-15,57927,1276,"[""Wireless Mouse"", ""Keyboard""]",2262.58,"{""promo"": ""18%""}",52994,1,Europe +2024-12-23,57928,9531,"[""Charger"", ""Phone""]",4816.17,"{""seasonal"": ""26%""}",237201,0,Europe +2023-01-07,57929,3034,"[""Charger"", ""Headphones"", ""Phone""]",2943.39,"{""seasonal"": ""11%""}",215363,1,Africa +2023-10-26,57930,9773,"[""Phone"", ""Tablet""]",4205.85,{},160092,0,South America +2023-01-27,57931,1067,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",647.15,{},251251,1,North America +2024-01-05,57932,599,"[""Tablet""]",1758.21,{},267586,0,Africa +2023-01-17,57933,6848,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2936.98,"{""promo"": ""29%""}",26408,1,North America +2023-03-05,57934,2004,"[""Charger"", ""Tablet""]",2112.63,{},259063,0,North America +2023-03-01,57935,8342,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4802.44,"{"""": ""18%""}",57194,1,Europe +2023-07-08,57936,4513,"[""Laptop""]",3309.2,"{"""": ""10%""}",80439,0,Africa +2024-04-08,57937,9498,"[""Charger"", ""Monitor"", ""Keyboard""]",2680.89,{},174704,0,Asia +2023-02-21,57938,7443,"[""Headphones""]",3434.62,"{"""": ""26%""}",262205,0,South America +2024-05-12,57939,3440,"[""Charger"", ""Laptop"", ""Tablet""]",2458.99,"{"""": ""9%""}",273358,1,Asia +2023-07-31,57940,1722,"[""Tablet"", ""Phone""]",1032.5,{},18850,0,Europe +2024-08-03,57941,4718,"[""Laptop"", ""Phone"", ""Monitor""]",2187.46,"{""promo"": ""12%""}",90984,1,North America +2023-04-21,57942,3247,"[""Phone"", ""Monitor"", ""Keyboard""]",4385.65,"{""promo"": ""17%""}",262826,0,South America +2023-04-03,57943,3596,"[""Wireless Mouse""]",466.17,"{""promo"": ""9%""}",238904,1,North America +2023-07-24,57944,5023,"[""Wireless Mouse""]",406.73,"{""promo"": ""30%""}",15390,0,Asia +2024-06-15,57945,620,"[""Tablet""]",4652.21,"{""loyalty"": ""22%""}",143760,1,Africa +2024-06-09,57946,904,"[""Monitor""]",2163.56,"{""seasonal"": ""18%""}",131773,1,South America +2023-04-17,57947,3075,"[""Keyboard"", ""Monitor""]",1134.77,{},162838,0,North America +2024-10-04,57948,2798,"[""Headphones"", ""Monitor""]",1369.21,{},121392,0,Europe +2024-06-03,57949,3777,"[""Tablet""]",2990.79,{},133583,0,South America +2024-09-16,57950,2896,"[""Laptop"", ""Tablet""]",1803.2,{},257674,1,North America +2023-12-24,57951,4723,"[""Phone""]",4704.02,"{""promo"": ""21%""}",251150,1,Asia +2024-04-08,57952,6620,"[""Wireless Mouse"", ""Headphones""]",3047.44,"{"""": ""10%""}",239512,1,Europe +2024-09-21,57953,6029,"[""Charger"", ""Headphones"", ""Phone""]",824.65,"{""seasonal"": ""9%""}",156567,1,Africa +2024-12-11,57954,1426,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1645.88,"{""seasonal"": ""17%""}",113907,1,Africa +2023-05-07,57955,4817,"[""Tablet""]",3053.34,"{""seasonal"": ""9%""}",103580,0,Asia +2024-03-29,57956,9685,"[""Phone"", ""Headphones""]",2635.83,{},260603,0,Europe +2024-08-28,57957,5104,"[""Monitor"", ""Laptop""]",2019.12,"{"""": ""28%""}",2381,1,Europe +2023-02-22,57958,9924,"[""Keyboard"", ""Wireless Mouse""]",3418.86,{},191682,1,Europe +2023-04-16,57959,7383,"[""Keyboard""]",4941.74,{},36928,1,Europe +2023-02-26,57960,3159,"[""Laptop""]",1212.83,{},282915,1,Africa +2023-10-03,57961,7403,"[""Phone"", ""Wireless Mouse""]",4726.38,{},264693,1,Europe +2023-01-26,57962,2851,"[""Headphones"", ""Laptop""]",1964.08,{},202354,1,Africa +2024-01-23,57963,6381,"[""Keyboard"", ""Monitor""]",3036.6,"{""seasonal"": ""10%""}",174017,1,Africa +2024-01-08,57964,9241,"[""Phone"", ""Tablet""]",4148.51,{},38957,0,Africa +2023-03-15,57965,8360,"[""Phone"", ""Laptop""]",2331.04,"{"""": ""18%""}",230631,1,Asia +2023-02-15,57966,9559,"[""Headphones""]",4597.22,"{""seasonal"": ""24%""}",7274,0,Europe +2023-12-09,57967,9721,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2141.97,{},183262,0,Europe +2024-10-07,57968,3734,"[""Phone"", ""Tablet"", ""Charger""]",3982.26,"{""promo"": ""22%""}",284052,1,Africa +2023-08-02,57969,772,"[""Headphones"", ""Laptop""]",2029.76,"{""seasonal"": ""26%""}",268088,0,North America +2023-10-31,57970,7358,"[""Headphones""]",3236.59,{},215115,1,Asia +2024-07-23,57971,819,"[""Keyboard"", ""Monitor""]",2225.83,"{""loyalty"": ""28%""}",233222,1,North America +2024-04-24,57972,4054,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",72.93,"{""loyalty"": ""24%""}",262658,0,South America +2024-01-10,57973,3392,"[""Monitor"", ""Laptop"", ""Charger""]",187.09,{},229484,1,Europe +2024-02-08,57974,9142,"[""Phone"", ""Wireless Mouse""]",4781.42,{},18039,0,North America +2024-07-16,57975,9611,"[""Phone"", ""Wireless Mouse""]",1370.61,{},11087,0,Europe +2024-12-30,57976,8011,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1155.19,"{"""": ""11%""}",135033,1,Europe +2024-07-19,57977,2947,"[""Charger"", ""Monitor"", ""Laptop""]",1880.23,"{""promo"": ""29%""}",89409,0,Europe +2023-08-07,57978,8438,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2090.4,"{""seasonal"": ""22%""}",127736,0,South America +2023-10-09,57979,8207,"[""Laptop"", ""Charger""]",3381.23,{},125349,0,Asia +2023-02-14,57980,8419,"[""Charger"", ""Monitor"", ""Tablet""]",1554.34,"{""loyalty"": ""23%""}",281688,0,South America +2023-10-21,57981,3103,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",714.44,{},19725,1,Asia +2023-05-10,57982,2370,"[""Wireless Mouse""]",958.6,"{""promo"": ""29%""}",162940,0,Europe +2024-10-26,57983,6794,"[""Charger""]",369.71,"{""promo"": ""12%""}",63994,0,South America +2024-07-05,57984,3986,"[""Monitor""]",4592.32,{},261506,0,Africa +2024-01-12,57985,1398,"[""Tablet"", ""Wireless Mouse""]",528.21,"{""seasonal"": ""15%""}",279936,1,Africa +2024-12-18,57986,2705,"[""Charger"", ""Laptop"", ""Headphones""]",4092.73,"{""seasonal"": ""26%""}",185094,1,North America +2024-01-28,57987,4930,"[""Headphones"", ""Laptop"", ""Phone""]",3218.01,"{""promo"": ""19%""}",279454,1,Asia +2024-04-29,57988,1598,"[""Tablet"", ""Phone"", ""Laptop""]",4617.16,{},282480,1,Africa +2024-12-19,57989,4720,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1959.36,"{""promo"": ""30%""}",292604,1,Africa +2023-03-06,57990,2286,"[""Wireless Mouse"", ""Laptop""]",1046.89,"{""seasonal"": ""19%""}",289656,1,North America +2024-09-13,57991,516,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2642.36,"{""seasonal"": ""21%""}",18970,0,Asia +2023-10-31,57992,6777,"[""Wireless Mouse"", ""Tablet""]",2202.61,{},239411,1,Europe +2023-01-05,57993,9244,"[""Keyboard""]",285.61,{},10391,0,Europe +2024-04-03,57994,9442,"[""Phone"", ""Headphones""]",1744.1,{},19456,0,Europe +2023-01-28,57995,8497,"[""Monitor""]",1697.97,"{""promo"": ""14%""}",243156,1,North America +2023-11-11,57996,9411,"[""Tablet"", ""Laptop"", ""Charger""]",2533.62,{},64817,0,Asia +2024-01-11,57997,606,"[""Laptop"", ""Phone"", ""Tablet""]",4290.36,"{""loyalty"": ""23%""}",34099,0,South America +2023-02-04,57998,4578,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3177.55,"{""loyalty"": ""30%""}",70013,0,Asia +2023-04-07,57999,781,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2211.24,"{""loyalty"": ""30%""}",169440,0,Asia +2023-07-10,58000,1501,"[""Laptop"", ""Charger"", ""Headphones""]",1337.36,{},42394,1,North America +2024-02-02,58001,6647,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1493.02,"{""loyalty"": ""18%""}",49934,0,North America +2023-03-05,58002,9122,"[""Phone"", ""Laptop""]",2871.44,"{"""": ""27%""}",113867,1,Europe +2024-06-15,58003,7309,"[""Wireless Mouse""]",3650.9,{},76583,1,South America +2023-10-30,58004,7369,"[""Monitor"", ""Tablet""]",4969.11,"{""seasonal"": ""21%""}",163864,1,South America +2024-01-10,58005,8917,"[""Laptop""]",4737.11,{},66724,0,Asia +2023-08-26,58006,2684,"[""Phone"", ""Laptop""]",3680.05,"{""seasonal"": ""19%""}",64252,1,Europe +2023-01-07,58007,7140,"[""Phone"", ""Charger""]",2938.86,{},101192,1,South America +2023-04-22,58008,2821,"[""Phone"", ""Wireless Mouse"", ""Charger""]",904.66,{},21012,1,South America +2024-01-15,58009,3019,"[""Monitor""]",1847.74,"{""promo"": ""27%""}",150869,1,North America +2024-08-15,58010,2215,"[""Wireless Mouse""]",923.59,{},138196,0,North America +2024-02-02,58011,6528,"[""Keyboard""]",2630.17,"{""loyalty"": ""21%""}",261354,0,South America +2024-12-05,58012,7825,"[""Monitor"", ""Charger"", ""Tablet""]",965.21,"{""promo"": ""9%""}",187024,0,Asia +2023-07-07,58013,6717,"[""Tablet""]",647.33,"{""seasonal"": ""22%""}",56975,1,North America +2024-11-09,58014,362,"[""Charger"", ""Laptop""]",1573.59,{},153897,1,Asia +2024-08-15,58015,4481,"[""Headphones"", ""Laptop""]",3894.33,{},223157,1,Europe +2023-09-04,58016,4226,"[""Laptop"", ""Monitor""]",2287.82,"{""seasonal"": ""9%""}",299503,1,Asia +2024-11-27,58017,5838,"[""Phone""]",1157.84,{},58343,1,South America +2023-10-15,58018,4295,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4483.53,"{""loyalty"": ""19%""}",186817,0,North America +2023-05-05,58019,7475,"[""Wireless Mouse"", ""Keyboard""]",3794.56,{},240888,0,Asia +2023-08-06,58020,1566,"[""Tablet"", ""Phone"", ""Charger""]",2748.19,{},271940,1,Africa +2023-08-24,58021,5698,"[""Laptop"", ""Keyboard"", ""Phone""]",1264.21,{},188759,0,Asia +2023-10-13,58022,9807,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2730.51,{},194680,1,South America +2023-01-20,58023,9990,"[""Monitor"", ""Phone""]",860.35,{},226592,1,Africa +2024-06-26,58024,6320,"[""Keyboard"", ""Phone""]",3178.23,{},284875,0,North America +2024-10-04,58025,6087,"[""Laptop"", ""Charger""]",3314.69,{},45046,0,Europe +2023-11-06,58026,1486,"[""Charger"", ""Laptop"", ""Phone""]",3655.43,{},192995,1,Europe +2024-10-05,58027,2118,"[""Headphones"", ""Tablet""]",251.11,"{""promo"": ""19%""}",226572,1,Africa +2023-01-13,58028,8951,"[""Charger"", ""Laptop"", ""Keyboard""]",2878.3,{},263733,0,Africa +2024-10-31,58029,4803,"[""Tablet"", ""Charger"", ""Laptop""]",3995.22,{},294114,0,North America +2023-03-28,58030,4897,"[""Monitor"", ""Keyboard"", ""Phone""]",3432.98,"{"""": ""8%""}",254326,0,South America +2024-05-27,58031,4250,"[""Laptop"", ""Keyboard""]",2207.32,"{"""": ""22%""}",12612,0,North America +2024-10-24,58032,6340,"[""Charger""]",3785.29,"{""loyalty"": ""17%""}",181602,0,Asia +2023-11-15,58033,2151,"[""Laptop"", ""Keyboard""]",2599.56,{},40646,0,Europe +2023-09-25,58034,9526,"[""Headphones""]",3405.89,"{"""": ""22%""}",254083,0,South America +2024-07-15,58035,3988,"[""Laptop"", ""Phone""]",1767.14,"{""seasonal"": ""11%""}",71205,0,Asia +2024-10-08,58036,8762,"[""Phone"", ""Monitor""]",2974.13,"{""promo"": ""28%""}",135166,0,Africa +2023-01-16,58037,4561,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1167.48,{},257930,1,Europe +2024-07-07,58038,5248,"[""Phone"", ""Laptop"", ""Keyboard""]",2319.35,{},154594,1,South America +2024-03-01,58039,3631,"[""Wireless Mouse"", ""Laptop""]",2705.08,{},255528,0,Europe +2024-04-17,58040,3303,"[""Tablet"", ""Laptop""]",1249.25,{},20883,0,North America +2023-11-04,58041,6754,"[""Charger"", ""Keyboard""]",1795.66,{},26326,1,South America +2024-05-05,58042,1722,"[""Keyboard"", ""Monitor""]",1849.85,"{""loyalty"": ""24%""}",184391,1,Europe +2024-04-21,58043,125,"[""Wireless Mouse""]",2199.47,{},279895,0,Europe +2024-04-08,58044,6401,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",413.6,"{""loyalty"": ""8%""}",145313,1,South America +2024-05-26,58045,967,"[""Keyboard"", ""Wireless Mouse""]",1440.55,"{""seasonal"": ""12%""}",126632,0,Asia +2024-07-08,58046,4026,"[""Wireless Mouse""]",3620.71,"{""loyalty"": ""29%""}",12245,1,Europe +2023-12-27,58047,7150,"[""Headphones"", ""Laptop""]",2858.04,{},73545,1,North America +2024-02-26,58048,6932,"[""Headphones"", ""Keyboard""]",2123.87,{},82449,1,South America +2023-06-05,58049,5655,"[""Monitor"", ""Charger""]",3577.1,{},2787,1,Europe +2023-06-23,58050,9375,"[""Laptop"", ""Wireless Mouse""]",4322.83,"{""loyalty"": ""29%""}",132457,0,Europe +2023-09-04,58051,1761,"[""Headphones"", ""Phone""]",3290.19,{},96448,1,North America +2024-07-19,58052,100,"[""Monitor""]",2729.53,{},247085,0,Africa +2024-01-21,58053,2965,"[""Wireless Mouse""]",1611.68,"{""loyalty"": ""28%""}",70208,1,Europe +2024-02-25,58054,9318,"[""Keyboard""]",2079.93,{},190868,1,South America +2024-09-26,58055,633,"[""Wireless Mouse""]",2764.66,"{""seasonal"": ""21%""}",236204,0,Asia +2024-09-02,58056,591,"[""Keyboard"", ""Charger"", ""Monitor""]",2866.5,"{"""": ""20%""}",25006,1,Africa +2023-04-29,58057,740,"[""Charger""]",494.21,{},160490,0,North America +2024-07-27,58058,1964,"[""Phone""]",653.27,"{"""": ""7%""}",123672,0,Europe +2024-08-25,58059,5720,"[""Phone"", ""Monitor"", ""Headphones""]",4080.17,"{""promo"": ""29%""}",24386,1,Asia +2023-01-17,58060,3765,"[""Wireless Mouse"", ""Keyboard""]",106.79,{},186038,1,Asia +2023-09-03,58061,4996,"[""Laptop""]",1470.77,"{"""": ""24%""}",116329,1,Asia +2024-12-16,58062,1867,"[""Laptop""]",3682.14,{},229950,1,Asia +2023-08-30,58063,8824,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1346.49,{},98866,1,North America +2023-05-21,58064,8131,"[""Monitor"", ""Wireless Mouse""]",1616.1,{},46638,1,Africa +2023-05-29,58065,3187,"[""Monitor"", ""Wireless Mouse""]",3196.43,"{""seasonal"": ""11%""}",18940,0,South America +2023-10-04,58066,2081,"[""Charger"", ""Monitor"", ""Headphones""]",4530.66,{},82877,0,Asia +2023-10-11,58067,8354,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4163.56,"{"""": ""15%""}",84351,0,South America +2024-12-28,58068,2678,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4250.75,{},151265,1,Europe +2024-11-12,58069,4143,"[""Monitor""]",1350.88,{},23608,0,Asia +2023-12-22,58070,2511,"[""Charger"", ""Headphones"", ""Phone""]",2038.59,"{"""": ""22%""}",125161,1,South America +2024-08-24,58071,3969,"[""Charger"", ""Headphones""]",882.7,"{""promo"": ""19%""}",94583,1,North America +2024-10-21,58072,4351,"[""Tablet""]",2804.87,{},164897,1,Europe +2023-05-14,58073,4546,"[""Laptop""]",2089.98,"{""seasonal"": ""29%""}",267839,0,South America +2024-03-08,58074,3235,"[""Headphones"", ""Phone"", ""Monitor""]",3621.48,"{""promo"": ""18%""}",236160,1,Asia +2024-06-24,58075,1440,"[""Tablet"", ""Monitor""]",2214.22,{},156465,1,Africa +2023-12-29,58076,7816,"[""Monitor"", ""Charger""]",4928.22,{},16800,0,Africa +2023-10-12,58077,1359,"[""Laptop"", ""Tablet"", ""Keyboard""]",3366.08,"{"""": ""20%""}",267097,1,Europe +2024-10-05,58078,509,"[""Keyboard""]",3860.99,"{""promo"": ""15%""}",98031,0,Africa +2024-10-11,58079,3048,"[""Keyboard""]",3199.91,{},154377,0,Europe +2023-12-20,58080,3825,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2209.84,{},40817,0,North America +2023-09-08,58081,6281,"[""Laptop""]",2870.37,{},5926,1,Asia +2023-12-04,58082,5430,"[""Headphones"", ""Monitor""]",1969.45,"{"""": ""23%""}",55551,1,North America +2024-09-24,58083,509,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4985.72,{},52586,0,Europe +2024-10-04,58084,7996,"[""Laptop"", ""Headphones"", ""Tablet""]",3002.34,"{""seasonal"": ""21%""}",227526,1,Africa +2024-08-20,58085,298,"[""Laptop"", ""Phone""]",1326.36,{},261444,1,Asia +2024-02-21,58086,6837,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1874.2,{},102107,1,North America +2024-01-12,58087,7618,"[""Keyboard""]",127.48,"{"""": ""16%""}",275873,0,Asia +2024-07-10,58088,8569,"[""Phone""]",1387.16,"{""loyalty"": ""26%""}",220380,1,Asia +2024-06-07,58089,9410,"[""Wireless Mouse""]",3679.25,"{""loyalty"": ""24%""}",97278,0,Asia +2023-11-05,58090,7304,"[""Laptop"", ""Tablet""]",3980.17,{},95968,0,North America +2024-06-20,58091,5520,"[""Tablet"", ""Headphones""]",4881.42,"{""promo"": ""6%""}",207898,1,Europe +2024-06-09,58092,5564,"[""Keyboard"", ""Tablet""]",2022.33,{},54662,1,Africa +2023-04-11,58093,7738,"[""Keyboard"", ""Phone""]",2467.01,{},127283,0,South America +2023-01-03,58094,4364,"[""Headphones"", ""Phone"", ""Tablet""]",3254.55,{},257386,1,Africa +2023-07-10,58095,3399,"[""Charger""]",4208.08,"{""promo"": ""13%""}",289806,1,South America +2023-11-19,58096,5118,"[""Keyboard""]",3033.59,{},176710,1,South America +2023-07-31,58097,1629,"[""Laptop"", ""Charger""]",1013.5,"{""seasonal"": ""11%""}",278354,1,South America +2023-12-14,58098,5209,"[""Keyboard"", ""Phone"", ""Charger""]",2398.79,{},118217,0,Africa +2023-05-13,58099,3900,"[""Laptop"", ""Phone""]",342.37,{},59754,1,Africa +2024-11-16,58100,4575,"[""Monitor"", ""Keyboard""]",364.72,{},144404,0,Asia +2024-09-17,58101,3114,"[""Monitor"", ""Headphones"", ""Phone""]",3342.34,{},113428,0,Asia +2024-11-04,58102,2571,"[""Charger"", ""Phone""]",2060.93,{},23364,0,Africa +2024-12-10,58103,5209,"[""Monitor"", ""Wireless Mouse""]",4767.09,{},286570,0,South America +2023-06-19,58104,1278,"[""Monitor"", ""Laptop"", ""Phone""]",2854.78,"{""loyalty"": ""5%""}",90014,0,Europe +2024-05-07,58105,4072,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3338.33,{},218729,1,Europe +2023-09-21,58106,2093,"[""Phone"", ""Charger"", ""Tablet""]",4088.62,{},213518,0,South America +2023-12-12,58107,4653,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",713.28,{},100051,1,North America +2024-03-25,58108,4581,"[""Charger""]",1844.13,{},251499,0,South America +2023-09-12,58109,884,"[""Monitor""]",652.65,{},200363,0,North America +2023-09-20,58110,7859,"[""Phone"", ""Charger""]",2192.12,"{"""": ""22%""}",247702,0,South America +2023-09-11,58111,9803,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4028.22,"{"""": ""24%""}",117288,0,South America +2023-01-14,58112,9796,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",904.37,"{""seasonal"": ""5%""}",209483,1,South America +2024-02-28,58113,7192,"[""Charger"", ""Monitor""]",2607.67,{},33066,0,South America +2024-03-03,58114,9253,"[""Keyboard"", ""Tablet"", ""Monitor""]",3518.35,"{""seasonal"": ""17%""}",94272,1,North America +2024-10-24,58115,7308,"[""Keyboard""]",1486.79,"{"""": ""6%""}",52323,0,Asia +2024-05-15,58116,5556,"[""Monitor""]",3963.07,{},83553,1,South America +2024-03-29,58117,7539,"[""Phone""]",366.25,"{"""": ""17%""}",6490,0,North America +2024-12-27,58118,3650,"[""Charger""]",3191.12,"{"""": ""13%""}",138326,1,Europe +2023-04-04,58119,575,"[""Laptop"", ""Keyboard""]",706.52,"{""seasonal"": ""6%""}",177111,0,Europe +2023-02-04,58120,3367,"[""Headphones"", ""Keyboard"", ""Monitor""]",1870.32,{},279642,1,Europe +2023-09-14,58121,3980,"[""Headphones"", ""Tablet""]",3667.29,{},232018,1,Africa +2024-02-06,58122,8717,"[""Laptop"", ""Tablet"", ""Monitor""]",1328.09,{},75310,0,Africa +2024-01-14,58123,1736,"[""Phone"", ""Keyboard"", ""Charger""]",3799.9,{},33200,0,Asia +2024-04-05,58124,2186,"[""Headphones"", ""Keyboard""]",649.03,"{""loyalty"": ""20%""}",222470,0,Asia +2023-09-16,58125,1881,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2584.15,"{""promo"": ""12%""}",119560,0,Asia +2023-06-14,58126,7849,"[""Charger"", ""Laptop""]",3680.53,"{""seasonal"": ""28%""}",183955,0,North America +2023-01-15,58127,8807,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4024.48,{},210585,0,Africa +2023-09-04,58128,9734,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2019.99,{},134605,1,North America +2024-07-23,58129,1659,"[""Wireless Mouse""]",4045.7,{},7931,1,Asia +2024-08-12,58130,8234,"[""Wireless Mouse""]",3811.56,"{""seasonal"": ""22%""}",279627,1,Africa +2024-09-14,58131,6511,"[""Keyboard"", ""Monitor"", ""Tablet""]",84.69,{},149453,0,Africa +2024-08-02,58132,1082,"[""Tablet"", ""Charger"", ""Keyboard""]",4442.67,{},175106,0,Europe +2023-11-12,58133,6434,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1438.19,"{""promo"": ""14%""}",166593,1,Asia +2024-05-06,58134,8993,"[""Phone"", ""Keyboard""]",3779.14,{},178969,1,South America +2024-04-18,58135,3590,"[""Keyboard""]",3140.02,{},46049,0,Asia +2023-01-16,58136,8692,"[""Charger"", ""Keyboard""]",4124.14,{},138264,1,North America +2024-01-15,58137,4201,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1320.1,"{""loyalty"": ""30%""}",141919,1,North America +2024-01-22,58138,2932,"[""Headphones""]",304.61,{},287600,0,Africa +2024-09-09,58139,3061,"[""Headphones"", ""Phone""]",4156.77,{},198684,1,Africa +2023-05-12,58140,2504,"[""Phone"", ""Charger""]",2765.05,"{""loyalty"": ""17%""}",242022,0,Africa +2023-06-30,58141,1694,"[""Headphones"", ""Charger""]",3430.34,{},41027,1,Africa +2023-12-08,58142,6157,"[""Keyboard"", ""Wireless Mouse""]",2084.2,"{""promo"": ""21%""}",107214,0,Europe +2023-03-09,58143,1679,"[""Phone"", ""Wireless Mouse""]",1093.79,"{""seasonal"": ""18%""}",36021,0,Europe +2023-07-22,58144,3645,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3781.14,"{""loyalty"": ""5%""}",173457,1,South America +2023-07-07,58145,5462,"[""Charger"", ""Laptop"", ""Phone""]",3765.77,"{""promo"": ""19%""}",298369,1,Africa +2024-02-08,58146,3152,"[""Tablet""]",4371.59,{},163504,1,Europe +2023-04-05,58147,5465,"[""Phone"", ""Keyboard""]",3479.95,"{""seasonal"": ""22%""}",32079,1,South America +2024-03-16,58148,7038,"[""Tablet""]",4134.2,{},189411,1,Europe +2023-11-03,58149,9217,"[""Monitor"", ""Laptop""]",3336.9,"{"""": ""30%""}",218615,0,Asia +2023-05-10,58150,9725,"[""Wireless Mouse""]",2136.0,"{""loyalty"": ""15%""}",42942,1,Africa +2024-04-01,58151,2183,"[""Charger"", ""Keyboard"", ""Headphones""]",4857.47,"{""loyalty"": ""30%""}",288268,1,Africa +2024-03-27,58152,8985,"[""Headphones"", ""Phone""]",457.41,{},287185,1,Asia +2023-04-22,58153,5348,"[""Wireless Mouse""]",2484.51,"{"""": ""16%""}",42479,0,Asia +2024-05-24,58154,5593,"[""Headphones"", ""Keyboard""]",1206.67,"{""loyalty"": ""8%""}",256585,1,Africa +2024-06-29,58155,2525,"[""Wireless Mouse"", ""Phone""]",2058.42,{},56472,1,North America +2023-02-03,58156,1050,"[""Phone"", ""Keyboard""]",2461.32,{},103767,1,Africa +2023-12-05,58157,4262,"[""Tablet"", ""Phone""]",387.05,"{""loyalty"": ""13%""}",206758,0,South America +2023-02-26,58158,3919,"[""Headphones"", ""Wireless Mouse""]",1801.28,"{""promo"": ""14%""}",179342,1,Europe +2024-04-19,58159,5478,"[""Phone"", ""Charger""]",1922.11,"{""loyalty"": ""17%""}",269127,0,Asia +2024-02-16,58160,9144,"[""Charger""]",267.45,"{"""": ""10%""}",216113,0,Europe +2023-06-27,58161,7935,"[""Headphones""]",1786.05,{},11294,0,Africa +2023-06-01,58162,2707,"[""Monitor"", ""Laptop"", ""Phone""]",1533.44,{},152523,0,South America +2024-09-02,58163,301,"[""Tablet"", ""Headphones"", ""Keyboard""]",4262.59,{},62265,1,South America +2023-10-01,58164,2976,"[""Phone"", ""Monitor"", ""Laptop""]",3701.84,"{"""": ""30%""}",135256,1,North America +2024-11-22,58165,563,"[""Monitor"", ""Phone""]",744.03,"{"""": ""14%""}",6433,0,Europe +2023-01-16,58166,4303,"[""Monitor"", ""Keyboard""]",1518.17,{},55195,0,Asia +2023-04-30,58167,5222,"[""Keyboard""]",198.63,"{""promo"": ""19%""}",284313,0,South America +2024-07-27,58168,2116,"[""Keyboard"", ""Laptop"", ""Monitor""]",1163.66,{},221109,0,Africa +2024-03-14,58169,1484,"[""Phone""]",4219.94,"{""loyalty"": ""12%""}",82701,0,North America +2023-01-27,58170,7251,"[""Laptop""]",2933.17,{},131120,1,Africa +2023-07-28,58171,3077,"[""Tablet""]",1746.8,"{""promo"": ""16%""}",154329,0,Europe +2024-10-04,58172,9795,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",313.17,"{""seasonal"": ""18%""}",217982,0,Africa +2024-04-06,58173,6210,"[""Tablet"", ""Charger"", ""Phone""]",1637.95,{},222732,0,South America +2024-02-06,58174,5295,"[""Monitor"", ""Laptop"", ""Phone""]",3940.17,"{"""": ""16%""}",39895,0,Europe +2023-01-11,58175,6723,"[""Charger""]",3519.83,"{""promo"": ""14%""}",210252,1,North America +2023-06-18,58176,7168,"[""Charger"", ""Monitor""]",2192.54,"{""seasonal"": ""22%""}",127540,0,Asia +2024-07-18,58177,2551,"[""Headphones"", ""Keyboard""]",488.96,"{""promo"": ""26%""}",111088,1,South America +2024-12-24,58178,1141,"[""Tablet"", ""Keyboard""]",1260.46,"{""loyalty"": ""15%""}",98174,1,North America +2024-07-23,58179,4517,"[""Headphones""]",1723.15,"{""loyalty"": ""11%""}",192068,1,South America +2024-03-23,58180,8024,"[""Wireless Mouse"", ""Charger""]",469.85,{},49674,0,North America +2023-07-16,58181,6245,"[""Keyboard""]",4869.78,"{""promo"": ""9%""}",118430,1,Europe +2024-12-08,58182,7721,"[""Wireless Mouse""]",4365.38,{},114126,0,Europe +2023-10-29,58183,9625,"[""Headphones"", ""Tablet"", ""Monitor""]",1717.18,{},139352,1,Africa +2023-11-03,58184,895,"[""Charger"", ""Phone"", ""Headphones""]",2866.8,{},17272,0,North America +2023-02-01,58185,8074,"[""Keyboard""]",462.38,"{"""": ""12%""}",52537,1,South America +2023-10-05,58186,1171,"[""Keyboard"", ""Monitor""]",605.14,"{""promo"": ""11%""}",175916,1,Europe +2024-11-25,58187,3767,"[""Tablet"", ""Laptop""]",4985.1,{},17200,0,Asia +2023-02-04,58188,4012,"[""Tablet""]",2223.28,{},189963,0,North America +2024-03-30,58189,9398,"[""Laptop"", ""Headphones""]",4688.61,"{""promo"": ""25%""}",287870,1,Europe +2024-04-05,58190,6170,"[""Tablet"", ""Laptop"", ""Phone""]",859.11,"{"""": ""19%""}",9496,0,South America +2023-10-27,58191,8802,"[""Laptop"", ""Tablet"", ""Keyboard""]",4416.33,{},84549,1,Africa +2024-01-19,58192,7736,"[""Monitor""]",1520.45,{},299432,1,South America +2024-12-15,58193,8750,"[""Charger"", ""Headphones"", ""Monitor""]",4915.92,{},27512,1,Africa +2024-01-21,58194,7268,"[""Laptop"", ""Keyboard""]",3736.33,"{""promo"": ""18%""}",151129,1,North America +2024-12-08,58195,5050,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3572.98,{},287589,0,Asia +2024-10-11,58196,1326,"[""Monitor"", ""Tablet""]",3557.83,{},196831,1,Asia +2023-01-24,58197,1938,"[""Wireless Mouse""]",1340.5,"{""loyalty"": ""15%""}",234561,0,South America +2024-01-15,58198,2959,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2101.98,{},7101,1,Asia +2023-11-27,58199,6297,"[""Tablet"", ""Charger""]",1127.36,{},292855,0,North America +2023-01-27,58200,46,"[""Laptop""]",155.36,"{""promo"": ""28%""}",231351,1,Europe +2023-05-22,58201,7704,"[""Tablet"", ""Phone"", ""Laptop""]",3102.76,{},221654,1,Asia +2024-08-02,58202,7586,"[""Laptop"", ""Wireless Mouse""]",2811.74,{},11369,1,Asia +2024-03-23,58203,5392,"[""Keyboard""]",1593.1,{},96261,1,Europe +2023-02-26,58204,4159,"[""Headphones""]",4907.45,{},213435,0,North America +2023-06-29,58205,2612,"[""Tablet""]",4183.73,{},144681,0,Asia +2024-04-23,58206,1803,"[""Tablet"", ""Headphones""]",1849.66,"{""seasonal"": ""22%""}",232692,0,Africa +2023-03-27,58207,7687,"[""Keyboard"", ""Tablet"", ""Phone""]",3236.47,"{""loyalty"": ""19%""}",30758,0,South America +2023-02-14,58208,8542,"[""Laptop"", ""Monitor"", ""Phone""]",809.44,"{""loyalty"": ""12%""}",207804,1,Europe +2023-06-08,58209,7393,"[""Charger"", ""Tablet"", ""Keyboard""]",1956.15,{},6452,1,Africa +2024-11-29,58210,1143,"[""Phone"", ""Wireless Mouse""]",833.57,{},206641,0,North America +2023-10-27,58211,9897,"[""Laptop"", ""Keyboard""]",1498.79,"{""promo"": ""11%""}",167748,1,Africa +2023-07-04,58212,8731,"[""Laptop"", ""Charger"", ""Headphones""]",4797.75,{},284705,1,North America +2024-08-16,58213,4250,"[""Monitor""]",1221.36,"{"""": ""30%""}",77775,0,North America +2024-12-31,58214,5482,"[""Phone""]",695.64,"{""promo"": ""17%""}",210317,1,North America +2023-05-05,58215,2600,"[""Charger"", ""Laptop""]",1516.72,"{""loyalty"": ""8%""}",99609,1,Asia +2023-08-03,58216,5813,"[""Headphones""]",2509.54,{},22371,1,Africa +2023-05-25,58217,9357,"[""Keyboard"", ""Phone""]",3012.87,"{""seasonal"": ""20%""}",244572,1,Africa +2024-06-25,58218,7042,"[""Headphones"", ""Monitor""]",3769.19,"{""seasonal"": ""15%""}",34088,1,South America +2024-09-02,58219,8087,"[""Monitor"", ""Tablet"", ""Laptop""]",2544.34,{},240148,1,Asia +2023-01-09,58220,6482,"[""Charger""]",2668.03,{},133516,1,Asia +2023-07-17,58221,8334,"[""Charger"", ""Monitor"", ""Phone""]",556.51,{},205222,0,Asia +2024-11-29,58222,2467,"[""Monitor"", ""Tablet""]",1053.57,{},75965,0,Europe +2024-01-26,58223,2101,"[""Phone"", ""Headphones"", ""Laptop""]",1379.8,"{""loyalty"": ""16%""}",273513,0,South America +2024-12-08,58224,8923,"[""Tablet"", ""Wireless Mouse""]",4913.61,"{""loyalty"": ""30%""}",19795,0,Asia +2023-04-17,58225,2316,"[""Wireless Mouse"", ""Monitor""]",1052.27,"{"""": ""16%""}",244312,1,Africa +2024-10-20,58226,2744,"[""Phone""]",3914.25,"{""seasonal"": ""11%""}",141748,1,Africa +2023-11-28,58227,6453,"[""Keyboard"", ""Headphones"", ""Laptop""]",3784.71,"{""loyalty"": ""17%""}",194036,0,Asia +2024-09-03,58228,5873,"[""Tablet""]",2655.72,"{""loyalty"": ""15%""}",268106,0,South America +2023-04-19,58229,5786,"[""Tablet"", ""Headphones"", ""Laptop""]",109.72,{},136408,0,Asia +2024-04-08,58230,8781,"[""Tablet"", ""Phone"", ""Charger""]",4213.12,{},167185,0,Asia +2023-07-06,58231,6480,"[""Phone"", ""Tablet""]",2622.56,"{""promo"": ""6%""}",35976,0,Asia +2024-01-17,58232,6141,"[""Monitor"", ""Charger"", ""Laptop""]",3246.21,"{""promo"": ""13%""}",25861,1,North America +2023-12-12,58233,1566,"[""Tablet""]",2907.33,"{""loyalty"": ""9%""}",280921,0,Europe +2023-06-12,58234,5808,"[""Phone"", ""Laptop""]",1191.61,{},67322,0,Europe +2023-08-26,58235,5638,"[""Tablet"", ""Wireless Mouse""]",3250.94,{},86902,1,South America +2023-12-22,58236,7191,"[""Keyboard"", ""Tablet""]",4460.57,{},230613,1,South America +2024-08-08,58237,6609,"[""Headphones"", ""Keyboard""]",3119.6,"{"""": ""16%""}",298980,0,Europe +2024-04-29,58238,913,"[""Phone"", ""Keyboard""]",4943.85,"{""promo"": ""5%""}",243284,1,Asia +2023-01-12,58239,735,"[""Monitor"", ""Tablet"", ""Phone""]",4105.3,{},117940,1,Asia +2023-12-15,58240,6516,"[""Laptop"", ""Tablet"", ""Charger""]",2250.7,"{""seasonal"": ""11%""}",257496,0,North America +2023-04-10,58241,4327,"[""Charger"", ""Headphones"", ""Monitor""]",289.35,"{""promo"": ""28%""}",294802,0,North America +2023-04-20,58242,8596,"[""Headphones"", ""Charger"", ""Keyboard""]",1063.69,"{"""": ""20%""}",222542,1,South America +2024-11-10,58243,3956,"[""Wireless Mouse""]",709.55,"{""loyalty"": ""12%""}",101345,1,Africa +2024-04-17,58244,9556,"[""Charger""]",4691.73,"{""seasonal"": ""5%""}",288371,1,Africa +2024-09-01,58245,6017,"[""Keyboard""]",2222.05,"{"""": ""30%""}",17514,1,Africa +2023-08-05,58246,9852,"[""Wireless Mouse"", ""Laptop""]",3080.69,"{""loyalty"": ""20%""}",212525,1,North America +2024-08-30,58247,5131,"[""Charger"", ""Laptop""]",3591.88,"{""loyalty"": ""6%""}",238745,0,Asia +2024-05-24,58248,2032,"[""Headphones""]",612.09,{},280720,0,Africa +2023-04-08,58249,563,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1437.76,{},269672,1,North America +2023-03-24,58250,157,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4691.26,{},89988,1,North America +2023-01-29,58251,8223,"[""Keyboard"", ""Tablet""]",3486.68,{},158956,0,Asia +2024-09-20,58252,9955,"[""Tablet"", ""Laptop""]",2484.98,"{""seasonal"": ""24%""}",159017,0,Asia +2023-09-28,58253,5072,"[""Charger""]",2892.17,{},211744,0,Africa +2024-12-22,58254,7342,"[""Headphones"", ""Keyboard""]",4233.19,"{"""": ""22%""}",48917,1,Africa +2023-07-26,58255,8236,"[""Keyboard"", ""Tablet"", ""Charger""]",3554.92,"{"""": ""19%""}",20172,0,Europe +2024-10-03,58256,4192,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2097.59,"{""promo"": ""12%""}",129362,1,South America +2023-01-21,58257,3873,"[""Laptop""]",2107.9,{},204660,1,North America +2023-04-11,58258,9258,"[""Monitor"", ""Keyboard"", ""Headphones""]",4296.8,"{""loyalty"": ""12%""}",271528,1,Europe +2024-11-28,58259,5075,"[""Monitor""]",2327.17,"{""seasonal"": ""17%""}",99504,0,Asia +2024-11-08,58260,4961,"[""Phone"", ""Laptop"", ""Monitor""]",2324.27,"{""seasonal"": ""23%""}",118474,1,South America +2024-01-06,58261,7918,"[""Tablet"", ""Keyboard""]",1034.82,{},154310,0,Africa +2023-02-02,58262,1854,"[""Phone""]",1066.13,{},24418,1,Europe +2023-10-29,58263,9734,"[""Charger"", ""Wireless Mouse""]",1229.52,"{"""": ""23%""}",97288,1,Asia +2023-03-21,58264,5978,"[""Headphones"", ""Charger"", ""Keyboard""]",1020.99,{},109838,0,Africa +2023-03-12,58265,7595,"[""Charger"", ""Headphones""]",1262.32,"{""seasonal"": ""23%""}",47445,0,North America +2023-03-17,58266,5275,"[""Phone"", ""Laptop""]",3012.53,{},260497,1,North America +2023-02-14,58267,3178,"[""Tablet""]",181.75,{},83602,0,Asia +2024-11-06,58268,8755,"[""Charger"", ""Monitor""]",4692.38,{},274701,1,North America +2024-07-16,58269,9983,"[""Charger"", ""Keyboard"", ""Laptop""]",4916.93,"{""loyalty"": ""8%""}",45519,0,North America +2024-12-03,58270,8800,"[""Keyboard""]",4755.13,{},205952,0,Europe +2023-09-05,58271,8036,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3736.78,{},37800,1,Europe +2023-01-22,58272,392,"[""Charger""]",2124.48,"{""loyalty"": ""28%""}",117134,0,Africa +2024-05-08,58273,6793,"[""Tablet"", ""Headphones""]",1781.42,"{""loyalty"": ""13%""}",263017,1,Asia +2023-02-11,58274,7486,"[""Headphones""]",296.24,"{""seasonal"": ""24%""}",223401,1,Asia +2023-02-19,58275,3363,"[""Wireless Mouse""]",2613.0,{},90031,1,Europe +2023-09-24,58276,991,"[""Wireless Mouse"", ""Charger""]",1787.91,{},16914,0,North America +2024-02-22,58277,5533,"[""Charger"", ""Keyboard"", ""Phone""]",1898.85,{},55839,0,Asia +2024-06-11,58278,5077,"[""Charger""]",950.63,"{""seasonal"": ""12%""}",266672,1,Europe +2023-08-19,58279,6268,"[""Phone"", ""Tablet""]",4365.89,"{"""": ""18%""}",51435,0,Asia +2023-07-02,58280,2933,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2216.4,"{""promo"": ""9%""}",72148,0,Asia +2024-10-07,58281,2647,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2939.12,"{""loyalty"": ""14%""}",14250,1,Africa +2023-03-11,58282,1179,"[""Keyboard"", ""Tablet"", ""Headphones""]",4502.82,"{""loyalty"": ""22%""}",6912,0,North America +2023-03-25,58283,8621,"[""Tablet""]",127.24,"{""promo"": ""23%""}",171272,1,Asia +2024-08-24,58284,1929,"[""Wireless Mouse""]",4259.27,"{""seasonal"": ""10%""}",296068,0,South America +2023-02-27,58285,1340,"[""Charger"", ""Laptop""]",56.64,"{""promo"": ""13%""}",211296,0,Europe +2024-08-22,58286,3990,"[""Headphones"", ""Tablet""]",3328.96,"{""loyalty"": ""5%""}",49019,0,Africa +2023-01-03,58287,3917,"[""Phone"", ""Monitor""]",4271.66,{},200150,0,South America +2023-09-20,58288,4684,"[""Wireless Mouse""]",4964.49,"{""seasonal"": ""23%""}",205555,0,South America +2023-09-17,58289,1975,"[""Wireless Mouse""]",2377.52,"{"""": ""25%""}",95671,0,Europe +2023-05-27,58290,4727,"[""Monitor""]",3928.99,{},214944,1,South America +2023-08-14,58291,5530,"[""Keyboard""]",213.69,{},229328,1,South America +2024-10-24,58292,7691,"[""Monitor"", ""Charger""]",1667.09,{},220431,1,Europe +2023-04-22,58293,5285,"[""Monitor"", ""Laptop"", ""Headphones""]",1294.01,"{""loyalty"": ""13%""}",18604,0,Asia +2023-03-29,58294,8477,"[""Phone""]",4455.1,{},34719,1,South America +2023-08-07,58295,482,"[""Wireless Mouse""]",1014.46,"{""loyalty"": ""27%""}",96001,0,Africa +2024-09-11,58296,7400,"[""Wireless Mouse"", ""Monitor""]",1543.47,"{""loyalty"": ""30%""}",202515,0,North America +2024-12-18,58297,715,"[""Laptop""]",3893.21,"{""loyalty"": ""11%""}",256896,1,North America +2023-05-31,58298,321,"[""Monitor""]",1392.84,"{""loyalty"": ""22%""}",96002,1,Africa +2023-12-29,58299,3764,"[""Monitor"", ""Laptop""]",3097.56,"{""promo"": ""29%""}",191291,1,Africa +2024-03-27,58300,2166,"[""Keyboard"", ""Tablet""]",3740.03,"{"""": ""15%""}",249056,0,North America +2023-10-04,58301,7633,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1298.65,"{"""": ""16%""}",5451,0,Africa +2023-07-14,58302,5839,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2060.09,{},271000,0,South America +2023-02-11,58303,7870,"[""Headphones""]",1293.8,"{""seasonal"": ""19%""}",251553,1,Asia +2024-08-02,58304,3730,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2595.91,{},21967,1,South America +2023-03-05,58305,6345,"[""Charger"", ""Monitor"", ""Phone""]",1779.33,{},299785,1,Europe +2024-10-04,58306,3518,"[""Phone"", ""Monitor"", ""Charger""]",4815.21,{},1116,1,Africa +2024-02-04,58307,4020,"[""Headphones""]",4388.15,{},257249,1,North America +2024-12-06,58308,6185,"[""Wireless Mouse""]",3211.78,"{""promo"": ""28%""}",135901,0,Europe +2024-07-03,58309,6220,"[""Tablet""]",3430.16,{},118463,0,South America +2023-12-30,58310,9141,"[""Wireless Mouse"", ""Charger""]",883.27,"{""seasonal"": ""10%""}",135923,1,Africa +2023-12-09,58311,9748,"[""Headphones"", ""Tablet"", ""Charger""]",3330.47,"{""loyalty"": ""23%""}",50210,1,Asia +2023-10-23,58312,8609,"[""Phone""]",502.63,{},245133,0,Asia +2024-12-27,58313,9329,"[""Monitor""]",3151.58,{},230968,1,Asia +2023-12-08,58314,9059,"[""Phone"", ""Keyboard""]",1824.38,"{""seasonal"": ""24%""}",261885,0,South America +2023-03-19,58315,327,"[""Phone""]",460.66,"{"""": ""30%""}",80515,1,South America +2024-08-20,58316,195,"[""Monitor"", ""Laptop"", ""Tablet""]",1234.98,{},275669,0,Africa +2024-04-23,58317,8579,"[""Monitor"", ""Phone""]",622.04,{},227175,1,Europe +2023-02-08,58318,4993,"[""Wireless Mouse""]",1416.46,"{""promo"": ""12%""}",51553,1,Europe +2024-01-04,58319,9323,"[""Tablet"", ""Laptop"", ""Charger""]",806.71,{},280098,1,South America +2024-02-03,58320,7413,"[""Charger"", ""Keyboard""]",3646.21,"{""seasonal"": ""13%""}",56713,1,North America +2023-04-15,58321,6274,"[""Phone""]",4547.68,"{""seasonal"": ""12%""}",259659,0,Europe +2023-08-09,58322,2851,"[""Laptop"", ""Keyboard""]",2904.4,"{""loyalty"": ""9%""}",95256,0,North America +2024-07-13,58323,3111,"[""Tablet"", ""Headphones""]",4162.48,"{""loyalty"": ""17%""}",149318,1,Africa +2023-07-14,58324,6697,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3911.49,"{""loyalty"": ""22%""}",143787,0,Asia +2024-06-17,58325,5119,"[""Tablet"", ""Monitor""]",4862.05,"{""seasonal"": ""21%""}",272226,1,South America +2023-08-04,58326,6838,"[""Laptop"", ""Headphones""]",1063.16,{},120796,1,Asia +2024-10-22,58327,2321,"[""Charger"", ""Monitor"", ""Tablet""]",4704.54,{},76059,1,Asia +2024-02-19,58328,2704,"[""Keyboard""]",4856.38,"{""promo"": ""16%""}",291256,0,Africa +2023-08-09,58329,3762,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4257.94,{},129429,0,South America +2023-09-15,58330,3991,"[""Phone"", ""Wireless Mouse""]",2722.95,{},216699,0,Africa +2023-12-05,58331,4594,"[""Headphones"", ""Wireless Mouse""]",153.86,"{""seasonal"": ""22%""}",26633,1,Asia +2024-03-29,58332,421,"[""Wireless Mouse"", ""Tablet""]",4660.89,"{""promo"": ""17%""}",171314,1,South America +2024-05-14,58333,9938,"[""Keyboard"", ""Wireless Mouse""]",1186.11,{},197432,1,South America +2024-06-01,58334,8353,"[""Tablet""]",1390.84,"{""seasonal"": ""12%""}",210707,0,North America +2024-11-21,58335,6727,"[""Laptop"", ""Phone""]",3395.58,"{""seasonal"": ""19%""}",179289,0,Asia +2024-02-18,58336,4072,"[""Tablet""]",4449.18,"{""promo"": ""28%""}",16780,1,North America +2023-03-19,58337,5524,"[""Keyboard""]",1818.36,"{""loyalty"": ""23%""}",265481,1,Asia +2024-10-18,58338,8134,"[""Phone"", ""Laptop""]",2481.08,{},292693,1,Africa +2023-10-02,58339,7203,"[""Tablet"", ""Headphones"", ""Phone""]",2990.25,"{""loyalty"": ""27%""}",207042,0,South America +2023-01-14,58340,7689,"[""Laptop"", ""Headphones""]",4079.28,{},277830,0,Europe +2023-12-05,58341,4234,"[""Wireless Mouse""]",338.16,{},183815,0,Africa +2024-06-22,58342,4920,"[""Tablet""]",3139.66,"{""promo"": ""28%""}",31284,1,Africa +2024-04-07,58343,5213,"[""Tablet"", ""Charger"", ""Headphones""]",1359.34,"{""promo"": ""30%""}",196138,0,Africa +2024-03-27,58344,1782,"[""Tablet""]",4175.5,"{""promo"": ""21%""}",129082,0,Asia +2024-04-11,58345,8710,"[""Headphones"", ""Charger"", ""Monitor""]",1662.76,{},111508,1,Asia +2023-01-12,58346,2642,"[""Laptop""]",1497.32,{},20546,0,Asia +2023-01-08,58347,8656,"[""Charger""]",3840.86,{},80569,1,South America +2023-03-10,58348,2878,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",885.05,{},175591,1,Africa +2024-04-10,58349,8973,"[""Laptop""]",2209.49,"{""promo"": ""7%""}",250403,0,North America +2024-04-04,58350,333,"[""Charger"", ""Laptop"", ""Headphones""]",4131.54,"{""promo"": ""6%""}",21832,0,North America +2023-05-29,58351,6908,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3436.28,"{"""": ""15%""}",140132,0,Asia +2023-03-23,58352,57,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",764.65,"{""promo"": ""6%""}",150666,0,Asia +2024-12-29,58353,3043,"[""Tablet""]",1783.3,{},266243,1,South America +2024-07-02,58354,5108,"[""Phone"", ""Headphones"", ""Tablet""]",4159.38,{},169045,0,North America +2023-10-24,58355,6816,"[""Phone"", ""Laptop""]",1990.16,{},60224,0,Africa +2023-09-10,58356,8655,"[""Monitor"", ""Phone""]",2859.74,"{"""": ""23%""}",126703,0,South America +2024-07-23,58357,6547,"[""Phone"", ""Monitor"", ""Laptop""]",4832.62,"{"""": ""9%""}",122377,0,Europe +2024-01-17,58358,590,"[""Phone"", ""Monitor"", ""Headphones""]",4411.17,"{"""": ""9%""}",228128,0,Europe +2024-03-14,58359,6009,"[""Phone"", ""Charger"", ""Monitor""]",2968.44,"{""loyalty"": ""24%""}",128414,0,North America +2023-06-18,58360,147,"[""Tablet""]",777.89,{},172037,0,North America +2023-03-01,58361,9441,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",167.25,"{""loyalty"": ""11%""}",130603,0,Europe +2023-09-10,58362,6254,"[""Phone"", ""Laptop"", ""Keyboard""]",850.15,"{""seasonal"": ""29%""}",274862,1,Europe +2024-09-27,58363,9285,"[""Headphones""]",3040.24,{},50357,0,South America +2023-10-01,58364,5290,"[""Laptop""]",1544.88,"{""loyalty"": ""19%""}",223607,0,Africa +2024-08-29,58365,8470,"[""Charger"", ""Monitor"", ""Tablet""]",2846.63,{},177386,1,Africa +2024-04-20,58366,9879,"[""Charger"", ""Phone"", ""Headphones""]",1316.16,{},46526,0,Europe +2023-05-08,58367,4485,"[""Phone"", ""Monitor""]",1992.2,"{"""": ""25%""}",259447,0,Europe +2023-11-11,58368,747,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2391.83,"{""seasonal"": ""17%""}",122791,1,Africa +2024-11-02,58369,3862,"[""Keyboard"", ""Charger""]",2252.05,{},168513,0,Asia +2023-10-19,58370,7754,"[""Tablet"", ""Monitor""]",4015.35,"{"""": ""10%""}",262716,0,North America +2023-06-12,58371,1590,"[""Headphones""]",2618.83,"{""seasonal"": ""8%""}",71343,1,South America +2023-02-24,58372,4038,"[""Keyboard"", ""Wireless Mouse""]",3730.88,"{"""": ""10%""}",91160,0,North America +2024-08-05,58373,4960,"[""Wireless Mouse""]",3847.25,{},42917,0,Europe +2023-07-09,58374,5361,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",427.7,"{""loyalty"": ""9%""}",128647,0,South America +2023-12-28,58375,3680,"[""Charger"", ""Tablet"", ""Phone""]",2091.58,{},44311,0,Asia +2024-05-09,58376,4477,"[""Keyboard""]",3113.45,"{""seasonal"": ""26%""}",23935,1,South America +2023-09-13,58377,8183,"[""Wireless Mouse"", ""Headphones""]",1726.25,{},233054,0,North America +2023-01-04,58378,2180,"[""Tablet"", ""Laptop""]",3929.29,{},160506,1,Africa +2024-02-03,58379,6092,"[""Wireless Mouse"", ""Laptop""]",149.94,"{""seasonal"": ""8%""}",258550,1,Asia +2023-10-27,58380,1934,"[""Phone"", ""Laptop""]",4861.93,"{""seasonal"": ""24%""}",1206,1,South America +2024-06-26,58381,5283,"[""Headphones""]",2307.96,"{""promo"": ""26%""}",20027,1,Africa +2024-08-12,58382,4733,"[""Phone""]",3677.27,"{"""": ""27%""}",229611,0,South America +2024-11-01,58383,7731,"[""Monitor""]",3912.14,"{"""": ""30%""}",74018,1,South America +2024-12-16,58384,183,"[""Wireless Mouse"", ""Monitor""]",1781.69,{},64431,1,North America +2024-07-04,58385,3992,"[""Charger""]",2720.63,"{""promo"": ""26%""}",241423,0,South America +2024-07-23,58386,3291,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3715.17,"{""seasonal"": ""12%""}",202909,1,North America +2024-11-18,58387,3473,"[""Charger"", ""Headphones"", ""Tablet""]",1563.45,"{""loyalty"": ""12%""}",235307,1,North America +2024-06-12,58388,9704,"[""Phone"", ""Headphones"", ""Monitor""]",1103.98,"{""promo"": ""25%""}",114560,0,Asia +2023-06-14,58389,7100,"[""Monitor""]",3793.64,{},203568,1,North America +2023-09-07,58390,3612,"[""Headphones"", ""Charger"", ""Tablet""]",3993.37,{},295372,0,Africa +2023-11-17,58391,4101,"[""Laptop""]",4902.81,{},225655,1,Africa +2023-03-17,58392,8573,"[""Charger"", ""Laptop""]",3752.63,{},49623,1,Asia +2024-12-13,58393,9848,"[""Tablet"", ""Laptop"", ""Phone""]",267.52,"{""seasonal"": ""14%""}",273856,1,Asia +2024-07-01,58394,9277,"[""Tablet"", ""Laptop""]",3520.24,{},8987,1,Africa +2023-12-16,58395,4576,"[""Laptop"", ""Charger""]",2962.86,{},94572,1,North America +2023-03-07,58396,197,"[""Monitor"", ""Laptop""]",2712.59,"{""promo"": ""6%""}",2539,0,North America +2024-11-18,58397,4136,"[""Phone""]",3022.38,"{""promo"": ""20%""}",130326,0,South America +2024-01-23,58398,599,"[""Keyboard"", ""Monitor""]",3938.78,"{""loyalty"": ""15%""}",207571,1,North America +2023-09-07,58399,5403,"[""Tablet"", ""Laptop"", ""Phone""]",236.11,"{""seasonal"": ""6%""}",39894,0,South America +2024-01-02,58400,1775,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1770.4,"{""loyalty"": ""18%""}",169005,1,Africa +2024-07-10,58401,9579,"[""Laptop""]",572.44,"{"""": ""17%""}",2400,0,North America +2023-05-08,58402,7011,"[""Monitor"", ""Laptop""]",596.56,{},7303,1,Africa +2023-08-05,58403,3183,"[""Phone"", ""Laptop""]",3872.96,{},218667,0,South America +2024-12-18,58404,9474,"[""Charger"", ""Wireless Mouse""]",2364.45,"{""loyalty"": ""21%""}",174732,0,North America +2024-04-04,58405,317,"[""Laptop"", ""Monitor""]",2957.42,{},275180,0,Africa +2024-12-01,58406,2520,"[""Keyboard"", ""Phone"", ""Monitor""]",1660.85,"{"""": ""9%""}",103892,1,South America +2024-12-17,58407,1728,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4543.04,"{""promo"": ""27%""}",76805,1,Europe +2024-09-09,58408,991,"[""Keyboard"", ""Charger""]",881.06,"{""seasonal"": ""20%""}",149239,0,North America +2024-12-18,58409,9095,"[""Phone"", ""Keyboard"", ""Tablet""]",4071.86,"{""loyalty"": ""16%""}",180885,1,Europe +2023-05-27,58410,827,"[""Charger"", ""Monitor"", ""Laptop""]",3239.57,"{"""": ""8%""}",144773,0,North America +2024-10-02,58411,7157,"[""Laptop"", ""Phone"", ""Monitor""]",2033.9,{},15710,1,Europe +2023-06-20,58412,3401,"[""Headphones""]",261.41,"{""loyalty"": ""6%""}",130286,0,Africa +2024-06-14,58413,6151,"[""Headphones"", ""Phone""]",2160.58,"{""loyalty"": ""24%""}",122317,0,Europe +2023-01-26,58414,4859,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4370.36,{},113563,1,South America +2024-10-11,58415,6032,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4606.42,{},269760,1,South America +2024-04-27,58416,716,"[""Monitor""]",4214.92,"{""loyalty"": ""6%""}",225864,1,North America +2023-01-12,58417,4243,"[""Tablet""]",571.71,"{""promo"": ""21%""}",277421,1,Europe +2024-12-26,58418,1864,"[""Charger""]",1012.65,"{""seasonal"": ""22%""}",239764,1,South America +2024-05-27,58419,5356,"[""Headphones""]",2196.87,"{""loyalty"": ""15%""}",150712,0,Africa +2023-05-01,58420,3846,"[""Phone"", ""Laptop""]",2750.79,{},140160,1,South America +2024-12-25,58421,8061,"[""Headphones"", ""Wireless Mouse""]",1664.7,"{"""": ""26%""}",90280,0,Asia +2024-04-27,58422,9352,"[""Wireless Mouse"", ""Monitor""]",1461.94,"{""promo"": ""17%""}",85056,0,South America +2024-04-17,58423,8689,"[""Charger""]",793.52,"{""promo"": ""25%""}",164843,1,Europe +2024-02-17,58424,4209,"[""Headphones"", ""Charger""]",1739.93,{},217703,1,North America +2023-02-24,58425,6554,"[""Charger""]",4627.15,"{""loyalty"": ""11%""}",152173,0,Africa +2023-12-30,58426,8,"[""Tablet"", ""Phone"", ""Headphones""]",3357.83,{},18412,1,Africa +2023-05-12,58427,7069,"[""Headphones""]",1591.61,"{""seasonal"": ""10%""}",163262,0,South America +2023-02-23,58428,8245,"[""Phone"", ""Tablet"", ""Headphones""]",589.84,"{""promo"": ""8%""}",97421,0,South America +2023-12-03,58429,2351,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",132.27,{},146732,0,Europe +2023-06-11,58430,1822,"[""Laptop"", ""Tablet"", ""Keyboard""]",1989.56,{},183939,0,South America +2023-10-21,58431,1923,"[""Tablet"", ""Phone""]",3902.99,{},119203,1,Europe +2023-09-22,58432,4440,"[""Phone"", ""Monitor""]",3356.45,"{"""": ""29%""}",295693,0,Africa +2024-04-07,58433,5090,"[""Tablet"", ""Laptop""]",269.95,"{""loyalty"": ""29%""}",190972,1,North America +2024-04-29,58434,771,"[""Tablet""]",3461.96,"{""loyalty"": ""20%""}",45823,1,North America +2024-05-14,58435,8041,"[""Laptop""]",3287.45,"{"""": ""27%""}",60518,0,Africa +2024-11-22,58436,8776,"[""Laptop"", ""Tablet""]",2267.24,"{""promo"": ""15%""}",112218,0,Europe +2024-11-17,58437,2005,"[""Tablet"", ""Monitor""]",2154.95,"{""loyalty"": ""8%""}",4920,0,Europe +2024-01-10,58438,3758,"[""Keyboard"", ""Phone"", ""Headphones""]",1930.97,{},135394,0,Europe +2024-07-01,58439,3711,"[""Laptop"", ""Charger""]",268.08,"{""loyalty"": ""14%""}",224027,1,North America +2024-08-17,58440,3507,"[""Monitor"", ""Tablet"", ""Laptop""]",654.61,{},293328,1,South America +2024-10-23,58441,1300,"[""Charger"", ""Laptop""]",3216.56,"{"""": ""17%""}",8608,0,Africa +2024-07-06,58442,3654,"[""Charger"", ""Headphones"", ""Laptop""]",317.88,{},281044,0,South America +2024-07-23,58443,8968,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1249.69,{},58598,1,Europe +2023-06-09,58444,5257,"[""Phone""]",1596.69,{},65039,1,Africa +2024-05-23,58445,6714,"[""Wireless Mouse"", ""Headphones""]",1857.79,"{""loyalty"": ""27%""}",99404,0,Asia +2023-07-15,58446,4542,"[""Tablet""]",4512.14,{},7900,1,South America +2024-03-01,58447,9807,"[""Charger"", ""Phone"", ""Tablet""]",3362.7,{},222885,1,North America +2024-01-30,58448,810,"[""Tablet"", ""Charger""]",4029.86,{},107572,1,South America +2024-01-22,58449,7101,"[""Laptop""]",2705.07,"{""seasonal"": ""22%""}",256474,1,North America +2024-06-21,58450,4786,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1946.67,{},201184,1,North America +2024-09-30,58451,7301,"[""Charger"", ""Monitor""]",89.44,{},17843,1,Asia +2023-12-05,58452,7170,"[""Laptop""]",2096.89,"{"""": ""11%""}",236172,0,Asia +2023-04-24,58453,8462,"[""Phone"", ""Tablet"", ""Laptop""]",3858.37,"{"""": ""26%""}",140389,0,North America +2024-09-09,58454,7034,"[""Phone"", ""Tablet""]",2623.83,"{"""": ""23%""}",195659,0,South America +2023-07-20,58455,8412,"[""Laptop""]",4764.08,"{"""": ""14%""}",70407,1,Europe +2023-05-23,58456,1519,"[""Laptop""]",4042.04,{},96851,1,Asia +2024-06-10,58457,2433,"[""Tablet"", ""Laptop""]",4454.84,{},232212,1,South America +2024-11-14,58458,7157,"[""Phone""]",2840.14,{},150176,1,Africa +2023-01-17,58459,1436,"[""Headphones"", ""Phone"", ""Charger""]",345.0,{},241653,1,South America +2023-09-27,58460,8514,"[""Charger""]",2787.68,{},208228,1,Africa +2023-06-02,58461,361,"[""Monitor""]",4097.82,"{"""": ""9%""}",58498,1,Europe +2024-11-12,58462,9498,"[""Charger"", ""Laptop""]",3935.51,"{""seasonal"": ""5%""}",137993,0,Asia +2023-09-25,58463,7164,"[""Monitor"", ""Charger""]",1607.5,"{""seasonal"": ""13%""}",150887,0,South America +2024-08-20,58464,4415,"[""Wireless Mouse""]",1556.28,{},156190,1,North America +2023-04-13,58465,6593,"[""Keyboard"", ""Phone""]",2612.13,"{""promo"": ""19%""}",215956,0,Europe +2023-06-27,58466,6402,"[""Charger""]",4412.89,{},246693,0,Africa +2023-07-06,58467,7875,"[""Wireless Mouse"", ""Tablet""]",815.96,"{""promo"": ""23%""}",9528,0,South America +2024-03-22,58468,4508,"[""Laptop""]",2753.58,"{""promo"": ""8%""}",22493,1,Europe +2024-05-28,58469,3967,"[""Headphones""]",3322.1,{},121470,1,South America +2024-06-13,58470,6082,"[""Laptop"", ""Charger""]",1901.56,{},195536,0,Asia +2023-05-22,58471,7868,"[""Headphones"", ""Phone""]",4386.05,"{""seasonal"": ""17%""}",63095,0,Asia +2024-01-06,58472,7697,"[""Wireless Mouse""]",3397.39,"{""loyalty"": ""22%""}",189218,1,Africa +2023-02-25,58473,2974,"[""Wireless Mouse"", ""Phone""]",1212.47,{},161518,0,Asia +2024-08-09,58474,3982,"[""Tablet""]",3233.91,"{""seasonal"": ""12%""}",68412,0,South America +2024-08-23,58475,1349,"[""Charger"", ""Wireless Mouse""]",429.08,"{""loyalty"": ""18%""}",28990,0,South America +2023-09-22,58476,1654,"[""Keyboard"", ""Monitor""]",3311.73,{},142496,1,Europe +2024-03-08,58477,6027,"[""Headphones"", ""Laptop"", ""Charger""]",3282.34,"{"""": ""9%""}",178797,0,Europe +2023-05-15,58478,843,"[""Headphones"", ""Phone""]",1875.57,"{""seasonal"": ""22%""}",33122,1,South America +2023-03-08,58479,2923,"[""Tablet"", ""Headphones""]",1267.61,{},35173,1,South America +2024-04-21,58480,9559,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1593.7,{},298190,1,Europe +2023-06-19,58481,5182,"[""Wireless Mouse"", ""Phone""]",4864.46,"{""seasonal"": ""23%""}",83674,1,North America +2023-03-26,58482,3467,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2960.06,{},231157,0,Europe +2023-12-13,58483,872,"[""Monitor""]",1157.84,{},181322,0,North America +2024-04-16,58484,52,"[""Keyboard"", ""Monitor""]",1525.63,{},200083,1,Asia +2024-06-23,58485,3357,"[""Tablet"", ""Charger""]",4462.74,"{""promo"": ""28%""}",30111,1,North America +2024-08-22,58486,4731,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4486.2,"{""loyalty"": ""18%""}",12055,1,Africa +2023-08-23,58487,3076,"[""Keyboard""]",451.23,"{""seasonal"": ""22%""}",36112,0,North America +2023-04-23,58488,5065,"[""Headphones"", ""Monitor""]",1065.69,"{""promo"": ""27%""}",82210,1,South America +2023-11-14,58489,6798,"[""Keyboard"", ""Headphones""]",4817.43,{},168314,1,Asia +2023-01-15,58490,2427,"[""Phone"", ""Headphones""]",1074.44,{},151885,1,Asia +2023-12-07,58491,2684,"[""Tablet"", ""Wireless Mouse""]",1192.62,{},198203,0,South America +2024-09-10,58492,8233,"[""Headphones"", ""Phone""]",2760.83,{},275950,1,Europe +2024-12-23,58493,4234,"[""Charger"", ""Laptop""]",3824.82,"{""seasonal"": ""23%""}",163820,1,South America +2023-09-03,58494,146,"[""Charger"", ""Phone""]",1798.35,{},156287,0,South America +2024-03-07,58495,3813,"[""Tablet""]",1863.94,{},73090,1,Asia +2024-11-25,58496,2422,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2971.08,"{"""": ""7%""}",113000,0,North America +2023-04-15,58497,7369,"[""Charger"", ""Headphones""]",660.5,{},129805,1,South America +2023-10-02,58498,1886,"[""Tablet""]",1032.89,{},182284,1,North America +2024-10-29,58499,4233,"[""Phone""]",2340.03,"{"""": ""17%""}",130524,1,North America +2023-11-20,58500,5123,"[""Charger"", ""Keyboard"", ""Monitor""]",341.33,"{""loyalty"": ""15%""}",236750,1,Europe +2024-03-06,58501,8745,"[""Laptop"", ""Charger""]",3781.94,{},271585,0,Asia +2023-02-01,58502,4078,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2452.2,{},220836,0,South America +2024-12-30,58503,4836,"[""Phone""]",1514.15,{},138034,0,Asia +2024-08-09,58504,3714,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",438.15,"{""seasonal"": ""25%""}",272890,0,Asia +2024-01-16,58505,7292,"[""Wireless Mouse"", ""Keyboard""]",2218.16,"{"""": ""19%""}",226479,1,South America +2024-04-16,58506,3520,"[""Tablet"", ""Headphones"", ""Charger""]",3790.08,"{""promo"": ""12%""}",166688,0,South America +2024-05-02,58507,8701,"[""Laptop"", ""Charger""]",2675.22,{},42328,0,Asia +2024-05-13,58508,4958,"[""Monitor""]",3032.31,"{""seasonal"": ""5%""}",164623,1,South America +2024-03-03,58509,2538,"[""Monitor""]",4278.0,{},233749,0,North America +2023-01-12,58510,2388,"[""Wireless Mouse"", ""Charger""]",3784.63,{},160506,0,South America +2023-07-24,58511,9359,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4782.33,{},267529,0,North America +2024-07-05,58512,7901,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1731.19,{},236393,1,Asia +2023-11-13,58513,234,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4421.45,{},158931,0,Africa +2024-06-11,58514,5033,"[""Monitor"", ""Keyboard""]",3212.85,{},10016,1,North America +2024-04-10,58515,9664,"[""Monitor""]",4536.36,"{""seasonal"": ""22%""}",211821,0,North America +2024-07-17,58516,5815,"[""Charger"", ""Monitor"", ""Headphones""]",1010.5,"{""loyalty"": ""20%""}",91777,0,Africa +2023-11-14,58517,2848,"[""Headphones"", ""Phone""]",2914.66,"{""seasonal"": ""7%""}",131706,1,South America +2024-04-01,58518,3039,"[""Phone""]",3281.77,"{"""": ""8%""}",128723,1,South America +2023-04-23,58519,4797,"[""Charger"", ""Laptop"", ""Tablet""]",66.6,{},245349,1,North America +2023-01-16,58520,3771,"[""Headphones"", ""Laptop""]",941.43,{},64756,0,South America +2024-10-31,58521,8037,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2768.67,{},138657,0,Africa +2024-10-22,58522,3205,"[""Laptop"", ""Keyboard"", ""Charger""]",1603.74,{},281950,1,North America +2024-06-08,58523,5643,"[""Monitor"", ""Wireless Mouse""]",3258.22,"{""seasonal"": ""10%""}",12291,0,Asia +2024-10-12,58524,3897,"[""Charger"", ""Phone"", ""Tablet""]",879.52,"{""loyalty"": ""16%""}",190285,0,South America +2024-03-10,58525,6144,"[""Monitor"", ""Headphones"", ""Phone""]",2335.17,"{""promo"": ""12%""}",282045,1,Africa +2023-06-13,58526,4490,"[""Laptop"", ""Keyboard""]",3541.29,"{""loyalty"": ""30%""}",44543,1,Asia +2024-02-18,58527,8190,"[""Keyboard"", ""Phone"", ""Tablet""]",3412.12,"{""promo"": ""8%""}",295588,1,South America +2024-03-31,58528,6963,"[""Wireless Mouse"", ""Laptop""]",2453.2,{},69252,0,Africa +2024-02-21,58529,2634,"[""Laptop"", ""Phone"", ""Keyboard""]",3632.66,"{""seasonal"": ""18%""}",38443,1,Europe +2023-09-04,58530,205,"[""Keyboard""]",323.26,"{"""": ""30%""}",65013,1,South America +2024-09-05,58531,8920,"[""Charger"", ""Tablet"", ""Phone""]",1367.23,"{""loyalty"": ""26%""}",72942,1,Africa +2023-12-18,58532,9369,"[""Tablet"", ""Keyboard"", ""Phone""]",2692.44,"{""promo"": ""7%""}",190387,0,South America +2024-06-19,58533,7813,"[""Laptop"", ""Monitor"", ""Keyboard""]",4544.24,{},194098,1,Europe +2024-03-26,58534,6751,"[""Wireless Mouse""]",3783.01,{},98548,0,Asia +2024-10-15,58535,7172,"[""Laptop""]",55.96,"{"""": ""11%""}",272467,1,Asia +2023-11-27,58536,2457,"[""Wireless Mouse"", ""Charger""]",944.31,{},42316,1,Asia +2023-09-21,58537,9253,"[""Phone""]",111.22,{},70276,0,North America +2023-07-24,58538,2466,"[""Laptop"", ""Tablet""]",3525.02,"{""seasonal"": ""27%""}",120274,1,Africa +2024-03-10,58539,1258,"[""Headphones"", ""Charger"", ""Laptop""]",2191.74,"{""seasonal"": ""28%""}",299717,1,Asia +2024-09-08,58540,4174,"[""Headphones"", ""Wireless Mouse""]",4512.98,"{""promo"": ""19%""}",199717,0,Europe +2023-05-17,58541,9553,"[""Keyboard""]",702.73,"{""loyalty"": ""30%""}",297698,1,South America +2023-09-30,58542,6603,"[""Charger""]",396.35,"{"""": ""10%""}",277834,0,Africa +2024-07-17,58543,1946,"[""Tablet""]",4992.23,{},7245,1,Europe +2024-11-09,58544,2320,"[""Monitor""]",1020.13,"{""promo"": ""21%""}",289643,0,South America +2023-10-24,58545,7940,"[""Headphones"", ""Monitor""]",3449.88,{},213581,1,Africa +2024-03-18,58546,7528,"[""Laptop""]",1863.27,"{"""": ""21%""}",154991,1,North America +2023-06-02,58547,5468,"[""Monitor"", ""Laptop"", ""Phone""]",4867.74,{},100117,1,Asia +2023-01-29,58548,3117,"[""Wireless Mouse"", ""Tablet""]",2901.12,"{""seasonal"": ""7%""}",137636,1,Europe +2023-02-22,58549,6833,"[""Charger""]",4235.93,"{""promo"": ""10%""}",204863,0,Asia +2023-07-17,58550,2141,"[""Monitor"", ""Keyboard"", ""Phone""]",4093.97,{},102507,0,Asia +2024-04-23,58551,6815,"[""Headphones"", ""Tablet"", ""Monitor""]",3825.12,{},270978,0,Europe +2024-02-05,58552,6742,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2871.39,{},78170,1,Africa +2023-10-25,58553,6806,"[""Tablet""]",2496.67,{},270544,0,Asia +2024-09-13,58554,2695,"[""Monitor"", ""Charger"", ""Headphones""]",350.14,{},127668,0,North America +2024-05-18,58555,8047,"[""Laptop"", ""Charger""]",2396.33,"{"""": ""19%""}",65090,1,South America +2024-10-05,58556,4617,"[""Laptop"", ""Phone""]",845.45,"{""seasonal"": ""23%""}",288432,0,Africa +2024-07-26,58557,5782,"[""Keyboard"", ""Headphones"", ""Laptop""]",200.23,"{"""": ""25%""}",174244,1,Asia +2024-12-21,58558,8411,"[""Keyboard"", ""Charger"", ""Headphones""]",367.19,{},198102,1,Asia +2024-10-25,58559,2259,"[""Wireless Mouse""]",761.57,{},188288,1,North America +2024-01-07,58560,9682,"[""Keyboard"", ""Laptop"", ""Phone""]",1934.76,"{""promo"": ""15%""}",246196,0,Europe +2023-07-24,58561,7212,"[""Phone"", ""Headphones""]",3433.86,"{"""": ""5%""}",18602,1,Africa +2024-04-19,58562,6935,"[""Phone""]",4630.65,"{""loyalty"": ""25%""}",270037,0,North America +2024-01-11,58563,3110,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2933.44,"{""loyalty"": ""11%""}",71286,0,Africa +2023-11-23,58564,984,"[""Wireless Mouse"", ""Laptop""]",1617.94,{},122840,1,Asia +2024-12-02,58565,4122,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",302.24,{},167687,0,North America +2024-02-24,58566,8872,"[""Charger"", ""Wireless Mouse""]",1560.39,{},69163,0,Africa +2023-11-22,58567,4500,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2479.65,"{""seasonal"": ""22%""}",69564,1,North America +2023-10-01,58568,9385,"[""Phone"", ""Monitor"", ""Headphones""]",1642.03,{},255015,1,Asia +2024-05-17,58569,2087,"[""Tablet"", ""Monitor""]",3273.35,"{""loyalty"": ""23%""}",28472,0,Africa +2024-04-28,58570,1235,"[""Tablet"", ""Charger""]",4772.81,"{""seasonal"": ""14%""}",298731,1,North America +2023-12-31,58571,908,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4978.73,{},209852,1,Europe +2024-08-13,58572,4578,"[""Tablet"", ""Charger""]",287.8,"{""loyalty"": ""13%""}",102915,1,Africa +2024-06-29,58573,4807,"[""Laptop"", ""Keyboard"", ""Charger""]",3322.18,{},222651,0,North America +2024-07-03,58574,7616,"[""Phone"", ""Charger""]",4724.16,{},159993,1,Asia +2024-01-16,58575,7446,"[""Keyboard"", ""Charger"", ""Phone""]",4546.23,"{""loyalty"": ""6%""}",45269,0,South America +2024-02-26,58576,6185,"[""Headphones"", ""Charger""]",3220.43,"{"""": ""24%""}",279309,1,North America +2024-09-11,58577,7237,"[""Tablet"", ""Keyboard"", ""Laptop""]",1674.48,"{""promo"": ""26%""}",199835,0,North America +2024-06-05,58578,5877,"[""Tablet"", ""Charger"", ""Laptop""]",325.36,{},153301,0,North America +2024-10-25,58579,9009,"[""Laptop"", ""Monitor"", ""Tablet""]",3738.48,{},150322,1,Asia +2024-11-16,58580,2518,"[""Headphones""]",4058.68,"{""promo"": ""19%""}",92325,1,Asia +2024-05-10,58581,1410,"[""Headphones"", ""Charger""]",3213.89,"{""seasonal"": ""9%""}",120929,0,Africa +2023-03-15,58582,9841,"[""Monitor"", ""Charger"", ""Phone""]",4752.56,"{""seasonal"": ""29%""}",120080,0,Africa +2023-09-29,58583,4342,"[""Wireless Mouse""]",372.84,"{""seasonal"": ""12%""}",295748,0,Asia +2024-09-11,58584,6444,"[""Wireless Mouse""]",1994.8,"{""promo"": ""26%""}",223114,0,North America +2023-07-18,58585,8747,"[""Tablet"", ""Phone""]",4499.21,"{""promo"": ""17%""}",256094,0,Asia +2023-11-02,58586,7392,"[""Laptop"", ""Monitor"", ""Tablet""]",1753.01,{},279163,0,South America +2023-12-25,58587,7340,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3083.84,{},63234,0,South America +2023-07-16,58588,8433,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3588.1,{},4425,0,Europe +2023-01-28,58589,5989,"[""Charger"", ""Monitor"", ""Tablet""]",4761.57,"{""promo"": ""13%""}",286918,0,Europe +2023-09-15,58590,8264,"[""Wireless Mouse""]",793.16,{},147831,0,South America +2023-05-17,58591,9717,"[""Keyboard"", ""Phone"", ""Monitor""]",4845.53,"{""seasonal"": ""7%""}",189648,1,South America +2024-07-07,58592,6580,"[""Laptop"", ""Tablet""]",1962.38,"{""promo"": ""6%""}",119599,0,Asia +2024-05-20,58593,746,"[""Keyboard"", ""Wireless Mouse""]",3746.73,{},101466,1,North America +2023-07-29,58594,8674,"[""Charger"", ""Laptop""]",3638.2,"{""seasonal"": ""16%""}",201518,0,Europe +2024-12-02,58595,7595,"[""Keyboard"", ""Tablet"", ""Monitor""]",121.0,{},275457,0,Asia +2023-09-17,58596,6274,"[""Laptop""]",4999.75,{},130174,0,North America +2024-04-28,58597,7874,"[""Laptop""]",190.64,"{"""": ""15%""}",276486,1,Europe +2023-05-08,58598,9507,"[""Headphones"", ""Wireless Mouse""]",1138.21,{},55241,1,North America +2023-10-23,58599,9439,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3898.56,"{""promo"": ""17%""}",37790,1,Asia +2024-08-14,58600,7280,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",392.56,"{""loyalty"": ""18%""}",80371,0,North America +2023-11-29,58601,8723,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4156.07,{},40893,0,South America +2024-08-15,58602,4932,"[""Keyboard"", ""Tablet"", ""Charger""]",4361.71,"{"""": ""24%""}",49941,1,Africa +2024-08-24,58603,4902,"[""Headphones""]",367.92,{},85628,0,Europe +2023-11-25,58604,5164,"[""Headphones""]",4382.55,{},119818,0,Asia +2023-04-02,58605,8865,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4977.59,"{""loyalty"": ""15%""}",85147,0,Africa +2024-02-28,58606,2482,"[""Keyboard"", ""Charger""]",3189.14,"{""loyalty"": ""28%""}",155581,0,North America +2023-08-29,58607,9786,"[""Laptop"", ""Headphones""]",3274.75,"{""promo"": ""25%""}",24009,0,Africa +2023-01-17,58608,7438,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3577.2,{},105817,0,Asia +2023-11-13,58609,6675,"[""Charger"", ""Monitor"", ""Keyboard""]",1851.1,"{""loyalty"": ""18%""}",257675,0,Africa +2023-06-02,58610,6671,"[""Monitor"", ""Keyboard""]",4472.23,{},95185,0,Europe +2024-02-23,58611,8705,"[""Tablet"", ""Headphones""]",813.6,{},179976,0,North America +2023-08-17,58612,5965,"[""Tablet"", ""Charger""]",2677.22,{},14088,0,Asia +2024-12-11,58613,638,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",75.19,"{"""": ""30%""}",50327,1,North America +2024-05-02,58614,5641,"[""Monitor"", ""Headphones"", ""Charger""]",204.77,"{""seasonal"": ""27%""}",133647,0,Europe +2024-02-23,58615,3030,"[""Tablet""]",3380.94,"{""seasonal"": ""15%""}",240146,1,North America +2024-05-25,58616,8559,"[""Wireless Mouse""]",3005.9,"{"""": ""16%""}",138516,0,Africa +2024-06-12,58617,4619,"[""Tablet""]",2254.63,{},236554,1,South America +2024-12-01,58618,9919,"[""Keyboard"", ""Wireless Mouse""]",4418.91,{},105938,0,South America +2023-09-26,58619,5932,"[""Phone"", ""Headphones""]",4145.19,{},88305,1,Europe +2023-09-14,58620,71,"[""Charger"", ""Tablet"", ""Laptop""]",530.63,"{""seasonal"": ""27%""}",66978,0,North America +2023-08-28,58621,192,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2953.89,"{""loyalty"": ""16%""}",254611,1,South America +2023-09-14,58622,9435,"[""Headphones""]",1132.26,{},16596,0,South America +2024-09-12,58623,4062,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2212.38,"{""promo"": ""23%""}",72638,1,South America +2024-12-05,58624,8441,"[""Headphones""]",348.57,{},153328,0,South America +2024-03-16,58625,9991,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",692.31,{},109617,1,Africa +2023-10-31,58626,3992,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1599.34,{},149058,0,Asia +2023-05-16,58627,9620,"[""Laptop"", ""Monitor""]",3344.38,"{"""": ""28%""}",72902,0,Asia +2024-05-03,58628,2609,"[""Wireless Mouse""]",4251.17,"{""promo"": ""17%""}",255308,0,Africa +2023-10-14,58629,8770,"[""Charger"", ""Phone"", ""Keyboard""]",3335.06,{},158814,1,North America +2023-03-07,58630,7116,"[""Wireless Mouse"", ""Keyboard""]",2176.34,{},8669,1,Europe +2024-10-07,58631,1065,"[""Keyboard"", ""Monitor"", ""Laptop""]",3057.67,"{"""": ""15%""}",170881,1,South America +2024-04-23,58632,547,"[""Headphones"", ""Laptop"", ""Charger""]",2957.96,"{""seasonal"": ""24%""}",201786,1,North America +2023-11-15,58633,275,"[""Charger"", ""Tablet""]",2461.99,{},287401,0,Asia +2024-08-24,58634,2146,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1599.54,"{""promo"": ""27%""}",73743,0,South America +2023-12-16,58635,1801,"[""Charger"", ""Headphones"", ""Tablet""]",4806.71,{},205212,1,Europe +2023-08-12,58636,5737,"[""Tablet""]",1213.8,{},267180,0,Africa +2023-06-06,58637,2099,"[""Tablet""]",2816.1,{},244336,0,Europe +2024-11-30,58638,8572,"[""Keyboard"", ""Laptop"", ""Phone""]",1024.39,{},217006,0,Europe +2023-06-01,58639,7698,"[""Charger"", ""Laptop"", ""Keyboard""]",4644.65,"{"""": ""24%""}",216566,0,Asia +2024-09-15,58640,2038,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1049.75,"{""promo"": ""6%""}",221714,0,Europe +2024-07-06,58641,4369,"[""Wireless Mouse"", ""Keyboard""]",4631.82,"{"""": ""6%""}",276001,0,Europe +2024-10-10,58642,3168,"[""Charger""]",3908.95,{},181593,1,Africa +2024-02-08,58643,3232,"[""Wireless Mouse"", ""Keyboard""]",1679.2,"{""loyalty"": ""9%""}",168708,0,Africa +2024-10-02,58644,5276,"[""Charger"", ""Keyboard""]",4840.16,{},196467,1,South America +2024-06-03,58645,6618,"[""Keyboard"", ""Headphones""]",4122.53,{},284085,1,Africa +2024-04-06,58646,7693,"[""Phone"", ""Monitor"", ""Keyboard""]",3451.23,"{""loyalty"": ""30%""}",288780,1,Asia +2024-08-27,58647,6130,"[""Wireless Mouse""]",388.12,"{""loyalty"": ""21%""}",39076,1,Europe +2024-12-25,58648,6884,"[""Tablet""]",3317.18,{},29387,1,South America +2024-01-30,58649,2308,"[""Laptop"", ""Monitor"", ""Phone""]",2551.29,"{"""": ""7%""}",143719,1,South America +2024-12-03,58650,9128,"[""Phone"", ""Monitor""]",3762.87,"{""seasonal"": ""23%""}",114206,0,Africa +2024-07-21,58651,7976,"[""Laptop"", ""Charger"", ""Headphones""]",752.75,{},268566,1,Asia +2024-09-25,58652,8571,"[""Tablet"", ""Laptop"", ""Keyboard""]",2925.46,{},72642,1,North America +2024-09-17,58653,4614,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",493.68,"{""loyalty"": ""29%""}",182690,0,Europe +2023-04-06,58654,2758,"[""Wireless Mouse"", ""Phone""]",4276.31,"{"""": ""25%""}",21284,1,North America +2023-05-14,58655,5670,"[""Laptop""]",1694.37,"{""promo"": ""16%""}",122700,0,South America +2023-10-16,58656,5834,"[""Keyboard"", ""Laptop""]",2488.04,{},146634,1,South America +2024-03-27,58657,9015,"[""Keyboard""]",3728.83,"{""seasonal"": ""5%""}",193887,0,South America +2023-01-20,58658,9435,"[""Monitor"", ""Headphones""]",1838.18,"{""promo"": ""6%""}",238473,0,Asia +2023-04-04,58659,5296,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1489.56,"{"""": ""29%""}",68668,0,Africa +2024-05-29,58660,8804,"[""Headphones""]",3232.1,{},148622,1,South America +2024-09-06,58661,2611,"[""Phone"", ""Keyboard""]",322.39,"{""promo"": ""14%""}",234336,0,North America +2023-07-01,58662,6212,"[""Charger""]",2130.98,"{"""": ""5%""}",94679,1,Asia +2024-01-23,58663,6922,"[""Wireless Mouse""]",1840.46,"{""loyalty"": ""7%""}",191341,0,Europe +2023-08-13,58664,3850,"[""Laptop"", ""Tablet"", ""Keyboard""]",1306.89,{},103116,1,South America +2023-03-18,58665,1490,"[""Keyboard""]",3987.8,"{"""": ""25%""}",41711,1,Europe +2024-01-07,58666,9205,"[""Wireless Mouse"", ""Headphones""]",616.65,{},255618,0,South America +2023-07-02,58667,1187,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3346.72,{},207519,0,Asia +2023-09-17,58668,3155,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1471.92,"{"""": ""9%""}",196258,0,Asia +2023-09-23,58669,4572,"[""Tablet"", ""Keyboard"", ""Headphones""]",4587.22,"{""seasonal"": ""7%""}",27583,1,Europe +2024-12-08,58670,2763,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",323.71,"{"""": ""17%""}",197275,1,South America +2024-07-15,58671,4919,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",645.56,"{"""": ""26%""}",281187,1,Africa +2024-08-17,58672,4285,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1237.12,{},111513,1,Africa +2024-01-28,58673,5752,"[""Laptop"", ""Keyboard"", ""Phone""]",1840.56,"{"""": ""30%""}",83886,0,Africa +2023-12-27,58674,970,"[""Charger"", ""Laptop"", ""Headphones""]",2801.73,{},34614,1,Europe +2024-10-22,58675,6401,"[""Charger"", ""Phone""]",1441.07,"{""promo"": ""7%""}",192604,0,North America +2024-03-22,58676,9021,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3100.35,"{""promo"": ""18%""}",247160,0,South America +2023-05-27,58677,9500,"[""Keyboard""]",3213.85,{},59882,1,Europe +2024-11-02,58678,929,"[""Monitor"", ""Tablet""]",4940.2,"{""loyalty"": ""10%""}",158549,1,Asia +2024-09-06,58679,7885,"[""Monitor""]",908.42,{},178136,0,South America +2024-10-31,58680,5969,"[""Monitor"", ""Tablet"", ""Phone""]",3043.47,"{""promo"": ""7%""}",153570,0,Asia +2023-02-16,58681,2246,"[""Charger""]",2902.57,"{""seasonal"": ""7%""}",294229,1,South America +2024-05-16,58682,7524,"[""Tablet""]",1626.25,{},235118,0,South America +2023-07-23,58683,7858,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4400.05,{},190267,0,Europe +2023-12-08,58684,1070,"[""Wireless Mouse""]",4069.97,"{""loyalty"": ""24%""}",233124,0,Europe +2024-04-30,58685,384,"[""Headphones"", ""Laptop""]",4728.97,"{""loyalty"": ""7%""}",215506,1,North America +2023-06-13,58686,4940,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",352.58,"{""promo"": ""22%""}",26310,0,South America +2024-10-12,58687,7060,"[""Wireless Mouse""]",4518.54,"{"""": ""21%""}",154343,1,South America +2024-06-01,58688,8594,"[""Laptop"", ""Wireless Mouse""]",1704.61,"{""loyalty"": ""26%""}",73161,0,Europe +2023-02-24,58689,2274,"[""Keyboard""]",3868.96,{},279702,0,Asia +2024-03-26,58690,3975,"[""Phone""]",831.21,"{""seasonal"": ""22%""}",228139,0,Asia +2023-01-15,58691,60,"[""Wireless Mouse""]",3561.71,{},199872,1,South America +2024-11-03,58692,8563,"[""Charger""]",2732.88,"{"""": ""27%""}",127099,0,Europe +2024-01-13,58693,6726,"[""Laptop""]",1629.09,{},143571,1,Asia +2023-12-27,58694,8362,"[""Wireless Mouse""]",454.29,{},263857,1,South America +2023-08-21,58695,9934,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4472.97,"{""loyalty"": ""27%""}",98873,0,Asia +2024-07-12,58696,8432,"[""Monitor""]",2961.6,{},213162,0,Europe +2024-02-20,58697,2057,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1080.41,"{""promo"": ""10%""}",238328,1,North America +2023-04-26,58698,3797,"[""Monitor"", ""Phone"", ""Headphones""]",2777.82,"{""seasonal"": ""11%""}",261500,1,Europe +2024-02-07,58699,3212,"[""Headphones""]",569.28,{},247577,0,Europe +2024-05-02,58700,3578,"[""Laptop"", ""Phone""]",3394.7,"{""seasonal"": ""27%""}",146926,1,Africa +2023-05-24,58701,1520,"[""Monitor""]",1483.99,{},134651,0,Europe +2024-12-01,58702,2349,"[""Tablet"", ""Charger"", ""Phone""]",3015.55,"{""loyalty"": ""17%""}",40718,1,Asia +2023-04-03,58703,8127,"[""Phone""]",1411.58,"{""promo"": ""28%""}",218058,0,Africa +2024-10-06,58704,5287,"[""Tablet""]",2649.97,"{"""": ""13%""}",156820,0,Africa +2024-11-27,58705,3338,"[""Tablet""]",873.42,{},176848,0,North America +2024-06-07,58706,2173,"[""Keyboard"", ""Phone""]",2401.01,{},35928,1,North America +2023-01-03,58707,3179,"[""Charger""]",3691.46,{},151832,1,South America +2023-10-25,58708,6643,"[""Keyboard"", ""Laptop"", ""Tablet""]",3738.68,{},6754,0,South America +2024-06-13,58709,6307,"[""Keyboard"", ""Laptop""]",1829.42,{},168350,1,North America +2024-05-11,58710,8461,"[""Keyboard"", ""Laptop"", ""Tablet""]",1125.5,"{""seasonal"": ""10%""}",184102,1,Africa +2024-05-05,58711,3651,"[""Charger"", ""Tablet"", ""Phone""]",3146.08,"{""loyalty"": ""5%""}",269321,1,Europe +2024-07-15,58712,9029,"[""Headphones"", ""Laptop""]",4061.7,{},92924,0,South America +2024-12-25,58713,9506,"[""Laptop"", ""Phone""]",4284.55,{},12066,0,Asia +2024-03-29,58714,4127,"[""Monitor"", ""Tablet"", ""Laptop""]",2413.2,"{""promo"": ""21%""}",219252,0,Asia +2023-12-02,58715,9442,"[""Tablet"", ""Laptop"", ""Charger""]",3238.8,"{""seasonal"": ""10%""}",205611,0,Africa +2023-01-12,58716,3291,"[""Laptop""]",4884.48,{},162347,1,North America +2024-03-17,58717,5497,"[""Laptop"", ""Tablet""]",1038.94,"{"""": ""24%""}",11786,1,South America +2024-07-01,58718,4740,"[""Tablet"", ""Keyboard""]",1008.09,"{""promo"": ""24%""}",146046,0,Asia +2023-02-25,58719,4561,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",974.94,{},169934,0,Africa +2024-04-18,58720,2412,"[""Wireless Mouse"", ""Phone"", ""Charger""]",172.78,{},15249,1,South America +2023-02-08,58721,963,"[""Keyboard""]",403.81,{},69758,0,Europe +2023-01-27,58722,2355,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2290.29,{},7496,1,Europe +2024-06-18,58723,5488,"[""Charger"", ""Laptop""]",1444.82,{},180944,0,North America +2024-07-31,58724,3660,"[""Keyboard""]",2906.95,{},99550,1,Asia +2023-03-06,58725,8222,"[""Charger"", ""Headphones"", ""Phone""]",3046.56,"{""loyalty"": ""22%""}",236111,0,Africa +2024-05-28,58726,4964,"[""Charger""]",4947.9,"{""loyalty"": ""21%""}",64287,0,South America +2023-07-03,58727,9667,"[""Headphones""]",3074.28,{},288386,0,Asia +2024-11-30,58728,2945,"[""Laptop"", ""Phone"", ""Charger""]",487.33,"{"""": ""10%""}",42999,0,Africa +2023-12-28,58729,1691,"[""Wireless Mouse""]",3286.25,{},284142,0,North America +2023-03-15,58730,7033,"[""Headphones""]",1024.78,"{"""": ""27%""}",150337,1,Asia +2024-06-21,58731,1896,"[""Keyboard"", ""Phone"", ""Headphones""]",3552.81,{},181918,1,Asia +2023-11-15,58732,6410,"[""Wireless Mouse""]",746.77,"{""promo"": ""9%""}",172269,0,Africa +2023-09-12,58733,3439,"[""Keyboard"", ""Monitor""]",4467.26,{},108386,0,Europe +2024-06-21,58734,379,"[""Charger"", ""Phone""]",4494.15,{},83982,1,Europe +2023-06-11,58735,886,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3024.98,"{""seasonal"": ""9%""}",26991,0,North America +2024-07-25,58736,3383,"[""Headphones"", ""Charger"", ""Tablet""]",2997.86,{},141502,1,North America +2023-09-08,58737,1917,"[""Monitor""]",1701.05,{},203453,1,Europe +2024-11-03,58738,4989,"[""Phone"", ""Laptop""]",1287.15,"{"""": ""20%""}",64193,0,Africa +2023-02-20,58739,4551,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2802.42,"{"""": ""8%""}",135756,1,Asia +2023-03-19,58740,946,"[""Headphones""]",1548.86,{},187839,0,North America +2024-01-22,58741,2008,"[""Phone"", ""Monitor"", ""Headphones""]",3945.76,"{"""": ""30%""}",5027,1,South America +2023-08-22,58742,3192,"[""Wireless Mouse""]",2191.25,"{""seasonal"": ""11%""}",174292,1,North America +2023-10-15,58743,1742,"[""Monitor"", ""Laptop""]",901.35,"{""seasonal"": ""27%""}",76876,1,North America +2024-10-25,58744,3791,"[""Wireless Mouse"", ""Keyboard""]",1752.69,{},29068,0,Europe +2024-01-18,58745,6782,"[""Phone""]",4256.42,"{""loyalty"": ""23%""}",1704,0,Europe +2023-05-14,58746,8063,"[""Charger"", ""Monitor"", ""Phone""]",1115.35,"{"""": ""17%""}",210580,1,Europe +2024-01-16,58747,3173,"[""Tablet""]",1286.61,{},153455,1,Africa +2023-09-10,58748,7473,"[""Phone"", ""Tablet""]",2135.26,{},113165,1,Asia +2024-03-26,58749,5192,"[""Phone"", ""Headphones""]",1880.32,{},22399,1,South America +2023-05-09,58750,9992,"[""Keyboard"", ""Phone"", ""Monitor""]",4945.25,{},296475,1,Europe +2023-09-12,58751,1128,"[""Headphones""]",353.37,"{""seasonal"": ""23%""}",82081,0,Europe +2024-06-07,58752,2785,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2720.47,{},239794,1,Africa +2023-09-23,58753,9643,"[""Keyboard"", ""Phone""]",4231.78,{},162949,1,Africa +2024-01-18,58754,2634,"[""Laptop""]",1051.91,{},153837,0,South America +2023-02-11,58755,9032,"[""Monitor""]",3020.79,{},101546,0,Africa +2023-04-22,58756,6660,"[""Laptop""]",4962.59,{},273709,0,Africa +2024-07-19,58757,1575,"[""Keyboard"", ""Headphones""]",3452.32,{},172775,0,North America +2023-03-04,58758,3207,"[""Headphones"", ""Monitor""]",3232.88,"{""loyalty"": ""19%""}",8333,1,Africa +2024-12-05,58759,555,"[""Keyboard""]",2396.14,{},216506,0,North America +2023-02-09,58760,4205,"[""Headphones"", ""Phone""]",1019.89,"{""loyalty"": ""30%""}",157356,0,Africa +2023-12-02,58761,82,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3551.89,"{"""": ""13%""}",143665,0,Africa +2023-05-24,58762,1401,"[""Laptop""]",920.39,{},263848,1,North America +2024-12-09,58763,6939,"[""Wireless Mouse"", ""Laptop""]",4722.12,"{""seasonal"": ""10%""}",272201,1,Europe +2024-07-03,58764,1427,"[""Monitor""]",2177.19,{},129610,0,Africa +2024-12-14,58765,4480,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3576.0,"{""seasonal"": ""7%""}",93247,0,Asia +2024-08-31,58766,8825,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4821.12,"{""seasonal"": ""26%""}",257600,0,Europe +2023-01-03,58767,2765,"[""Monitor""]",4330.83,"{""seasonal"": ""13%""}",214588,0,Europe +2023-10-27,58768,1404,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",291.13,"{""seasonal"": ""21%""}",279954,0,Europe +2023-12-30,58769,488,"[""Monitor"", ""Keyboard"", ""Headphones""]",2214.04,{},94751,1,Europe +2024-08-16,58770,4722,"[""Tablet"", ""Laptop""]",3225.31,"{"""": ""25%""}",249874,1,Europe +2024-07-12,58771,4212,"[""Tablet"", ""Keyboard""]",285.15,{},31745,1,Europe +2023-06-02,58772,776,"[""Laptop"", ""Phone""]",4220.62,{},78171,1,North America +2023-11-29,58773,992,"[""Phone"", ""Monitor"", ""Headphones""]",3231.73,{},62936,0,Asia +2024-11-17,58774,6278,"[""Laptop"", ""Phone""]",2537.57,{},73656,1,North America +2024-03-19,58775,5276,"[""Phone"", ""Keyboard"", ""Headphones""]",4413.7,{},38606,0,Europe +2023-09-02,58776,8791,"[""Charger""]",1926.25,{},105546,1,South America +2023-09-22,58777,7723,"[""Charger"", ""Monitor"", ""Headphones""]",283.12,{},104823,0,Asia +2023-11-29,58778,2478,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3132.58,"{""promo"": ""20%""}",252496,1,Asia +2024-12-26,58779,3726,"[""Charger""]",3790.91,{},202457,1,Asia +2023-05-19,58780,8512,"[""Laptop""]",3596.23,{},269953,1,South America +2023-03-17,58781,7581,"[""Keyboard"", ""Phone""]",3765.49,"{""promo"": ""5%""}",4425,1,Europe +2023-06-25,58782,5672,"[""Monitor"", ""Charger"", ""Keyboard""]",1809.24,"{""loyalty"": ""23%""}",128511,1,Africa +2023-05-10,58783,2941,"[""Wireless Mouse"", ""Monitor""]",806.06,{},145726,0,South America +2024-07-17,58784,9580,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3634.99,"{""loyalty"": ""26%""}",63431,0,Asia +2024-05-12,58785,4570,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1052.87,"{""seasonal"": ""7%""}",158311,1,North America +2024-08-17,58786,9653,"[""Tablet""]",4346.84,{},287960,1,North America +2024-01-13,58787,4399,"[""Wireless Mouse""]",204.79,"{""promo"": ""13%""}",284541,0,Asia +2023-08-08,58788,2313,"[""Monitor"", ""Tablet""]",4781.09,{},24170,1,South America +2024-10-17,58789,81,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1553.89,{},49698,0,North America +2023-06-09,58790,1902,"[""Tablet"", ""Wireless Mouse""]",1223.86,{},269135,0,South America +2024-05-12,58791,4613,"[""Laptop"", ""Monitor""]",4160.88,{},190762,0,North America +2024-11-10,58792,7855,"[""Laptop"", ""Tablet"", ""Phone""]",797.68,{},220727,1,Africa +2023-08-17,58793,2117,"[""Charger"", ""Laptop""]",4893.84,{},74776,0,Africa +2023-06-05,58794,8356,"[""Keyboard""]",3570.69,"{""promo"": ""24%""}",219007,0,North America +2024-08-11,58795,2106,"[""Monitor""]",883.48,"{"""": ""13%""}",124086,1,Africa +2023-04-08,58796,9159,"[""Keyboard"", ""Headphones""]",4876.89,{},88671,0,Europe +2023-07-12,58797,4671,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2375.29,"{""loyalty"": ""6%""}",104620,0,South America +2024-05-14,58798,8887,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2378.94,"{"""": ""20%""}",165212,0,South America +2023-06-08,58799,8798,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2713.55,"{""promo"": ""17%""}",31096,0,Asia +2024-10-23,58800,8278,"[""Headphones"", ""Tablet"", ""Phone""]",1161.01,"{""seasonal"": ""23%""}",230260,0,Africa +2023-11-05,58801,1760,"[""Monitor"", ""Phone"", ""Keyboard""]",1666.31,"{""loyalty"": ""15%""}",127305,1,Europe +2023-01-17,58802,3556,"[""Headphones"", ""Laptop""]",385.63,"{""seasonal"": ""5%""}",141284,1,Asia +2023-12-25,58803,9086,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3758.45,{},112068,0,South America +2024-09-20,58804,7738,"[""Tablet"", ""Phone"", ""Charger""]",4060.23,{},33935,0,Asia +2024-05-22,58805,330,"[""Laptop""]",4958.54,{},191231,0,Asia +2024-12-05,58806,5362,"[""Tablet""]",207.08,{},78389,1,South America +2024-07-15,58807,7341,"[""Wireless Mouse"", ""Headphones""]",1669.53,{},53630,1,Africa +2024-02-13,58808,4838,"[""Laptop"", ""Phone""]",1887.52,{},139525,0,Asia +2023-08-23,58809,5553,"[""Laptop""]",1690.51,{},253804,1,Africa +2023-12-15,58810,5123,"[""Tablet"", ""Headphones"", ""Laptop""]",1233.58,{},70249,0,Africa +2024-11-19,58811,8727,"[""Wireless Mouse"", ""Headphones""]",1226.77,"{""loyalty"": ""14%""}",21590,1,Asia +2024-02-23,58812,1028,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3823.2,{},262816,0,South America +2023-07-12,58813,3454,"[""Tablet"", ""Laptop"", ""Headphones""]",3000.33,{},198912,0,Asia +2024-03-30,58814,2957,"[""Phone"", ""Tablet"", ""Monitor""]",1533.05,"{""promo"": ""7%""}",264124,0,Africa +2024-01-17,58815,5044,"[""Phone"", ""Charger""]",2744.4,{},217269,0,Africa +2023-07-13,58816,4549,"[""Tablet""]",3038.39,"{"""": ""8%""}",227626,1,North America +2024-07-22,58817,613,"[""Wireless Mouse""]",2396.81,"{"""": ""6%""}",184658,0,South America +2023-12-23,58818,7052,"[""Laptop""]",780.99,"{""seasonal"": ""15%""}",202415,1,South America +2024-11-08,58819,329,"[""Keyboard"", ""Headphones"", ""Monitor""]",4903.71,"{""loyalty"": ""26%""}",117816,1,Africa +2024-10-26,58820,3062,"[""Keyboard"", ""Phone"", ""Laptop""]",1809.96,{},260888,1,Asia +2023-09-01,58821,6986,"[""Laptop"", ""Phone""]",1064.97,"{""seasonal"": ""20%""}",160237,1,North America +2024-10-14,58822,5088,"[""Tablet"", ""Charger""]",946.68,"{""promo"": ""30%""}",292591,1,Asia +2023-05-10,58823,5375,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",898.14,"{""promo"": ""23%""}",199755,0,Asia +2023-10-26,58824,5734,"[""Monitor"", ""Phone"", ""Charger""]",472.9,{},61652,0,Europe +2024-01-26,58825,2773,"[""Tablet"", ""Keyboard""]",2473.0,"{""seasonal"": ""18%""}",88610,0,Asia +2023-03-04,58826,3579,"[""Phone"", ""Monitor"", ""Tablet""]",4503.82,"{""loyalty"": ""24%""}",195003,0,Europe +2023-02-03,58827,7743,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",269.03,"{""seasonal"": ""19%""}",83173,1,North America +2024-09-22,58828,4925,"[""Wireless Mouse""]",856.68,"{"""": ""21%""}",243706,0,Europe +2024-08-02,58829,433,"[""Charger"", ""Monitor""]",1563.35,"{""seasonal"": ""13%""}",245010,1,Europe +2023-02-08,58830,20,"[""Keyboard""]",930.48,{},3680,1,South America +2023-05-23,58831,7571,"[""Laptop"", ""Keyboard""]",1748.83,"{""promo"": ""19%""}",140454,0,Africa +2023-07-26,58832,9361,"[""Headphones""]",1272.17,"{""loyalty"": ""25%""}",203803,1,South America +2023-08-14,58833,6283,"[""Tablet"", ""Headphones"", ""Charger""]",654.35,{},212753,0,South America +2024-10-07,58834,4673,"[""Monitor"", ""Headphones"", ""Laptop""]",4406.87,{},127580,0,Africa +2023-11-29,58835,6737,"[""Charger"", ""Monitor""]",4103.11,{},286287,0,South America +2024-02-18,58836,8662,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1648.96,"{""promo"": ""13%""}",67715,1,North America +2024-01-29,58837,4812,"[""Charger"", ""Monitor"", ""Tablet""]",1474.61,{},264597,1,Africa +2023-02-09,58838,3702,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1514.66,{},48342,0,North America +2024-12-06,58839,7589,"[""Wireless Mouse""]",571.45,{},273352,1,Africa +2023-02-03,58840,2207,"[""Phone"", ""Headphones"", ""Laptop""]",4330.1,"{""loyalty"": ""20%""}",194376,1,North America +2023-04-15,58841,6759,"[""Monitor""]",1938.09,{},290842,1,Europe +2024-02-05,58842,7658,"[""Monitor"", ""Wireless Mouse""]",2343.24,"{"""": ""14%""}",1849,0,Asia +2024-12-11,58843,5420,"[""Phone""]",1509.9,{},120040,0,South America +2024-04-30,58844,4832,"[""Keyboard"", ""Headphones""]",1927.44,"{""loyalty"": ""22%""}",38741,0,Africa +2024-07-09,58845,7476,"[""Monitor"", ""Charger"", ""Keyboard""]",4664.63,{},24045,0,Europe +2023-12-16,58846,2135,"[""Headphones""]",1183.47,{},299612,1,Africa +2024-03-07,58847,3670,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4142.21,{},232137,1,South America +2023-08-13,58848,7264,"[""Charger""]",2708.39,"{""promo"": ""24%""}",134969,0,Europe +2023-12-23,58849,9893,"[""Wireless Mouse"", ""Monitor""]",3557.74,"{"""": ""29%""}",91701,0,Africa +2024-10-24,58850,7097,"[""Keyboard""]",4560.57,{},148274,0,Asia +2024-06-03,58851,4673,"[""Tablet""]",1224.0,{},66063,1,Europe +2024-03-30,58852,6507,"[""Monitor""]",3519.57,{},235676,1,Asia +2024-04-16,58853,8260,"[""Wireless Mouse""]",2976.17,"{""loyalty"": ""12%""}",288902,0,Africa +2024-01-29,58854,1595,"[""Laptop""]",3135.26,"{"""": ""29%""}",188917,0,North America +2024-04-17,58855,6487,"[""Phone"", ""Headphones""]",3306.27,"{"""": ""21%""}",291479,0,Asia +2024-12-07,58856,2514,"[""Keyboard"", ""Tablet""]",2216.59,"{""loyalty"": ""9%""}",154834,1,Asia +2024-06-27,58857,3602,"[""Charger""]",4423.9,"{""seasonal"": ""28%""}",139550,0,Europe +2023-03-08,58858,7179,"[""Laptop""]",3797.26,{},62564,0,Africa +2024-12-20,58859,7267,"[""Charger""]",3756.37,"{""loyalty"": ""21%""}",94571,0,North America +2024-04-23,58860,5327,"[""Tablet"", ""Monitor""]",985.74,"{""loyalty"": ""14%""}",5038,0,Africa +2024-01-29,58861,5729,"[""Laptop"", ""Tablet"", ""Charger""]",3492.27,{},252413,0,Europe +2024-03-16,58862,9396,"[""Laptop"", ""Headphones"", ""Keyboard""]",3323.94,{},242830,1,South America +2024-11-28,58863,8247,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3676.69,{},133608,1,Europe +2023-09-28,58864,5647,"[""Headphones"", ""Tablet""]",2316.83,"{""seasonal"": ""8%""}",256243,0,South America +2024-10-13,58865,7470,"[""Charger"", ""Phone"", ""Laptop""]",3338.72,{},129352,0,North America +2023-02-06,58866,57,"[""Charger"", ""Tablet""]",4048.99,"{""loyalty"": ""27%""}",41253,0,Europe +2024-01-30,58867,3579,"[""Tablet"", ""Keyboard""]",882.37,"{"""": ""5%""}",268513,0,Europe +2024-11-03,58868,5022,"[""Headphones"", ""Tablet""]",1968.13,"{""promo"": ""11%""}",177130,1,Asia +2023-12-26,58869,580,"[""Monitor"", ""Tablet""]",2518.66,"{""seasonal"": ""22%""}",84856,0,Asia +2023-02-24,58870,2059,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",335.89,{},129153,1,Asia +2024-07-10,58871,571,"[""Charger"", ""Headphones"", ""Laptop""]",384.33,"{""promo"": ""12%""}",68353,1,Africa +2023-11-30,58872,1095,"[""Phone"", ""Headphones""]",1909.66,{},299554,1,South America +2024-10-03,58873,1726,"[""Headphones"", ""Wireless Mouse""]",3323.52,{},184610,1,North America +2024-03-21,58874,763,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",566.05,{},128342,0,Europe +2023-01-24,58875,6942,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3142.23,"{""seasonal"": ""16%""}",259554,0,South America +2023-11-15,58876,9769,"[""Headphones"", ""Wireless Mouse""]",3155.62,{},49161,0,Asia +2024-10-02,58877,6024,"[""Headphones""]",506.49,{},257104,1,Europe +2023-04-30,58878,9321,"[""Monitor"", ""Charger"", ""Laptop""]",894.43,{},296945,0,North America +2024-07-21,58879,3651,"[""Headphones"", ""Phone"", ""Monitor""]",600.55,"{""promo"": ""24%""}",135697,1,South America +2024-08-25,58880,6080,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2976.71,"{""seasonal"": ""26%""}",259220,0,South America +2023-09-15,58881,4957,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1244.9,"{""promo"": ""19%""}",65265,0,South America +2024-01-25,58882,2847,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2668.13,"{"""": ""13%""}",167734,1,South America +2023-08-06,58883,5902,"[""Monitor""]",2897.23,{},42133,1,South America +2023-06-23,58884,7063,"[""Keyboard"", ""Monitor""]",3120.14,{},140678,0,South America +2024-12-07,58885,4959,"[""Phone""]",2561.57,"{""loyalty"": ""14%""}",217453,1,Europe +2024-08-12,58886,1121,"[""Charger"", ""Laptop""]",478.71,{},188792,0,Europe +2024-05-15,58887,32,"[""Phone""]",1064.32,{},119068,1,Europe +2024-01-16,58888,3869,"[""Keyboard""]",694.7,{},43173,0,Africa +2023-09-13,58889,2111,"[""Phone"", ""Tablet""]",2392.21,"{"""": ""20%""}",215921,0,Asia +2023-10-03,58890,4664,"[""Wireless Mouse"", ""Phone""]",4690.48,"{""loyalty"": ""19%""}",157168,1,Asia +2023-08-30,58891,3896,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1153.65,"{""seasonal"": ""25%""}",10921,1,North America +2023-12-03,58892,6672,"[""Monitor""]",1680.18,"{"""": ""7%""}",230463,1,South America +2023-05-25,58893,6249,"[""Headphones""]",2614.46,{},199738,0,North America +2024-04-10,58894,6591,"[""Tablet"", ""Monitor"", ""Charger""]",3504.83,{},50921,0,South America +2024-12-29,58895,2663,"[""Charger"", ""Headphones""]",1553.2,"{""seasonal"": ""10%""}",137147,0,Africa +2024-01-02,58896,4252,"[""Monitor"", ""Laptop""]",370.03,"{""promo"": ""18%""}",196894,1,Asia +2023-02-21,58897,5380,"[""Keyboard"", ""Charger""]",3090.87,"{"""": ""18%""}",119258,1,North America +2024-11-07,58898,5177,"[""Monitor"", ""Keyboard""]",4831.26,{},210555,1,Europe +2024-01-16,58899,8227,"[""Tablet"", ""Headphones"", ""Keyboard""]",2259.42,{},292282,1,Africa +2023-04-15,58900,5988,"[""Keyboard"", ""Charger""]",3537.83,{},55992,1,South America +2023-05-30,58901,5797,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3307.25,"{""promo"": ""25%""}",233812,0,North America +2023-03-03,58902,5395,"[""Phone"", ""Monitor""]",1541.16,"{"""": ""13%""}",294425,0,Europe +2023-10-17,58903,20,"[""Laptop"", ""Charger"", ""Monitor""]",1148.5,{},63033,0,Asia +2024-09-29,58904,5258,"[""Keyboard"", ""Headphones"", ""Tablet""]",890.95,"{""loyalty"": ""11%""}",93702,1,Africa +2023-06-28,58905,3085,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",707.79,"{""seasonal"": ""9%""}",103811,0,North America +2023-02-02,58906,5736,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3509.97,"{""promo"": ""28%""}",107782,1,South America +2023-11-19,58907,4224,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2112.23,"{""loyalty"": ""28%""}",270031,0,Africa +2023-05-27,58908,537,"[""Tablet"", ""Monitor"", ""Keyboard""]",3588.07,"{""loyalty"": ""21%""}",196680,1,South America +2024-04-14,58909,527,"[""Keyboard""]",1167.8,{},298398,0,Europe +2023-11-30,58910,8673,"[""Phone"", ""Laptop"", ""Keyboard""]",3010.17,"{""seasonal"": ""9%""}",20923,0,Africa +2024-09-22,58911,1371,"[""Charger"", ""Laptop""]",3650.57,{},63463,1,South America +2024-06-09,58912,8557,"[""Monitor""]",2365.87,{},135181,0,North America +2024-05-03,58913,505,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4514.57,"{""seasonal"": ""10%""}",249043,0,Asia +2023-04-21,58914,2022,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3639.68,{},247708,0,North America +2024-12-18,58915,8368,"[""Charger""]",4062.31,"{""seasonal"": ""24%""}",60067,1,North America +2024-03-27,58916,9261,"[""Tablet""]",2363.24,{},292719,1,Asia +2023-12-03,58917,2415,"[""Phone"", ""Headphones""]",1543.46,"{"""": ""26%""}",114948,0,South America +2023-01-19,58918,6296,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",550.3,{},288222,0,North America +2023-04-09,58919,9729,"[""Tablet"", ""Headphones"", ""Phone""]",344.36,"{""promo"": ""12%""}",100516,1,North America +2023-11-28,58920,69,"[""Phone"", ""Laptop"", ""Headphones""]",3016.22,{},192693,0,South America +2023-11-28,58921,1746,"[""Charger""]",2818.02,{},166236,1,Asia +2024-12-15,58922,8067,"[""Headphones"", ""Keyboard""]",3496.98,{},174714,0,Asia +2023-05-13,58923,6837,"[""Charger""]",836.98,"{""loyalty"": ""14%""}",79803,0,Europe +2024-08-25,58924,7903,"[""Wireless Mouse"", ""Phone""]",1899.33,{},182680,0,Africa +2023-06-28,58925,430,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",358.7,"{"""": ""27%""}",228189,0,Africa +2023-10-12,58926,9869,"[""Headphones"", ""Monitor"", ""Phone""]",1771.21,{},64639,0,South America +2023-05-17,58927,1924,"[""Laptop"", ""Wireless Mouse""]",4560.31,"{"""": ""30%""}",279758,0,North America +2023-08-22,58928,2714,"[""Laptop"", ""Headphones""]",3638.71,{},230776,0,Asia +2023-10-15,58929,1605,"[""Wireless Mouse""]",3474.89,{},3571,1,Europe +2023-10-19,58930,1643,"[""Phone""]",2937.18,"{""promo"": ""5%""}",124226,0,Europe +2024-07-26,58931,9426,"[""Headphones""]",4884.8,"{""seasonal"": ""6%""}",147036,0,North America +2023-08-22,58932,382,"[""Laptop""]",4902.57,{},111675,1,Africa +2024-05-23,58933,6370,"[""Charger""]",3331.02,{},180271,1,Africa +2024-11-20,58934,6591,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2944.55,"{""loyalty"": ""26%""}",66963,1,Europe +2023-11-18,58935,8835,"[""Headphones""]",3982.84,{},267937,0,South America +2024-01-23,58936,1345,"[""Laptop""]",3316.12,"{""seasonal"": ""13%""}",289596,1,South America +2024-12-17,58937,9572,"[""Wireless Mouse""]",3907.77,{},237997,0,Africa +2023-02-28,58938,8084,"[""Keyboard"", ""Phone"", ""Headphones""]",2429.81,{},238911,0,Africa +2024-11-20,58939,2274,"[""Tablet""]",940.03,"{""promo"": ""27%""}",245058,1,North America +2024-06-21,58940,9698,"[""Tablet"", ""Phone"", ""Headphones""]",4110.37,{},265823,0,Europe +2024-01-29,58941,5193,"[""Wireless Mouse""]",546.47,{},86090,1,South America +2024-04-17,58942,6349,"[""Headphones"", ""Phone""]",4594.25,"{""loyalty"": ""20%""}",69584,1,Africa +2024-01-02,58943,3237,"[""Monitor""]",1961.22,{},180231,0,Africa +2023-09-13,58944,8640,"[""Tablet"", ""Monitor""]",3741.07,"{""loyalty"": ""7%""}",159884,1,South America +2023-10-09,58945,9960,"[""Keyboard""]",2982.65,{},44120,0,Asia +2024-07-25,58946,8965,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1517.2,"{""promo"": ""25%""}",173100,1,South America +2023-11-01,58947,3208,"[""Wireless Mouse""]",1932.88,"{""promo"": ""24%""}",19041,1,Europe +2023-10-12,58948,353,"[""Monitor"", ""Keyboard""]",3516.67,"{"""": ""22%""}",117578,0,South America +2023-09-09,58949,3484,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1019.05,{},279716,1,South America +2023-05-30,58950,8840,"[""Tablet""]",3645.5,"{"""": ""15%""}",5289,0,Africa +2023-03-10,58951,5184,"[""Tablet""]",2972.68,{},278689,1,North America +2024-05-29,58952,6947,"[""Charger"", ""Tablet"", ""Keyboard""]",2334.92,{},8587,1,Africa +2023-03-15,58953,4524,"[""Wireless Mouse"", ""Laptop""]",1112.58,"{""promo"": ""12%""}",66109,0,Africa +2023-02-24,58954,4544,"[""Tablet"", ""Laptop"", ""Phone""]",257.74,"{"""": ""29%""}",250394,1,Africa +2023-12-08,58955,693,"[""Charger""]",374.86,"{"""": ""18%""}",44028,0,Europe +2024-03-05,58956,5793,"[""Charger"", ""Keyboard""]",83.59,{},98676,0,Europe +2024-06-17,58957,1735,"[""Charger"", ""Monitor""]",2110.52,{},185087,0,Europe +2023-06-10,58958,908,"[""Keyboard"", ""Laptop""]",3763.0,"{""seasonal"": ""15%""}",165128,0,South America +2024-03-14,58959,4077,"[""Keyboard""]",2016.35,{},68497,1,Asia +2023-02-06,58960,4241,"[""Tablet""]",3361.79,"{""seasonal"": ""30%""}",153245,1,Asia +2023-01-13,58961,9933,"[""Tablet"", ""Headphones""]",2154.19,"{""promo"": ""24%""}",210780,1,Africa +2024-09-02,58962,3721,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",309.92,{},30734,1,Africa +2024-04-08,58963,3009,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2571.12,{},6783,0,Africa +2024-07-29,58964,2653,"[""Monitor"", ""Headphones""]",719.64,"{"""": ""27%""}",176388,0,North America +2023-03-21,58965,2989,"[""Charger""]",2337.37,{},184962,0,Africa +2023-01-05,58966,6210,"[""Monitor""]",4978.93,{},72195,0,Africa +2024-08-22,58967,9807,"[""Laptop"", ""Monitor"", ""Headphones""]",2007.15,{},242459,1,North America +2024-07-21,58968,1190,"[""Monitor"", ""Laptop""]",2310.53,"{"""": ""10%""}",264992,1,Africa +2024-11-10,58969,6407,"[""Phone"", ""Keyboard""]",3675.29,"{""promo"": ""26%""}",126487,1,South America +2024-07-19,58970,8096,"[""Laptop"", ""Tablet"", ""Charger""]",3793.46,"{"""": ""10%""}",71822,0,Africa +2023-10-03,58971,8216,"[""Laptop""]",3874.11,"{""promo"": ""19%""}",278739,1,Asia +2024-11-08,58972,847,"[""Tablet"", ""Laptop"", ""Headphones""]",2332.7,{},78860,1,Africa +2024-05-20,58973,4880,"[""Monitor""]",3326.82,"{""promo"": ""30%""}",155314,0,Europe +2023-09-17,58974,1335,"[""Headphones"", ""Charger"", ""Tablet""]",2890.32,{},98875,0,Africa +2023-01-08,58975,7776,"[""Tablet"", ""Wireless Mouse""]",1842.95,{},226810,0,Africa +2023-04-14,58976,3994,"[""Charger""]",2042.69,"{""promo"": ""22%""}",289402,1,Africa +2024-09-18,58977,8067,"[""Keyboard"", ""Charger"", ""Monitor""]",3740.34,"{""seasonal"": ""13%""}",261577,0,Africa +2024-01-04,58978,9466,"[""Laptop"", ""Monitor""]",2352.6,{},43852,0,South America +2024-11-20,58979,1076,"[""Laptop"", ""Charger"", ""Tablet""]",3769.74,{},225952,1,Europe +2023-03-14,58980,540,"[""Keyboard"", ""Laptop"", ""Charger""]",3066.13,{},215598,0,South America +2023-08-18,58981,1029,"[""Wireless Mouse"", ""Charger""]",2120.74,{},222569,1,Asia +2023-10-17,58982,9637,"[""Tablet""]",4191.88,"{"""": ""14%""}",248695,1,Europe +2023-03-10,58983,6194,"[""Headphones""]",4726.09,{},72882,1,Asia +2024-07-31,58984,1200,"[""Monitor""]",2837.43,{},76323,0,Asia +2023-02-03,58985,1572,"[""Laptop""]",4255.67,"{""promo"": ""20%""}",255532,0,South America +2023-01-11,58986,4863,"[""Keyboard""]",3134.37,"{""loyalty"": ""21%""}",160940,1,Europe +2023-03-19,58987,6732,"[""Phone"", ""Monitor"", ""Tablet""]",2693.46,{},62435,0,Asia +2023-03-07,58988,9482,"[""Headphones""]",4965.96,"{""promo"": ""14%""}",215028,0,Europe +2024-09-08,58989,4425,"[""Wireless Mouse""]",2705.46,{},226403,1,Asia +2023-06-21,58990,1581,"[""Keyboard"", ""Charger"", ""Laptop""]",404.81,{},263327,0,Asia +2024-06-15,58991,7520,"[""Laptop"", ""Headphones""]",3312.36,{},103930,0,Asia +2024-04-17,58992,9711,"[""Headphones"", ""Tablet"", ""Monitor""]",1108.85,{},189396,1,Asia +2023-10-18,58993,5563,"[""Monitor""]",1356.06,"{""seasonal"": ""17%""}",60794,1,North America +2024-01-13,58994,2351,"[""Keyboard""]",1384.64,{},61931,0,Asia +2024-04-30,58995,6801,"[""Laptop"", ""Keyboard""]",1278.21,"{""seasonal"": ""28%""}",152624,1,South America +2024-06-25,58996,1243,"[""Tablet"", ""Wireless Mouse""]",3869.65,"{"""": ""25%""}",149300,0,Asia +2024-01-13,58997,3518,"[""Keyboard"", ""Tablet"", ""Charger""]",4684.48,{},139589,1,South America +2023-08-27,58998,699,"[""Laptop"", ""Phone""]",3752.6,{},219513,0,South America +2024-09-23,58999,2403,"[""Keyboard""]",556.45,"{""seasonal"": ""24%""}",158386,0,Asia +2024-08-21,59000,7400,"[""Tablet""]",1356.47,{},23238,1,South America +2023-08-26,59001,3436,"[""Headphones"", ""Charger"", ""Tablet""]",624.66,{},208536,0,Africa +2023-07-22,59002,6040,"[""Headphones"", ""Laptop"", ""Monitor""]",2590.91,{},6256,1,Europe +2024-07-04,59003,5220,"[""Wireless Mouse""]",2642.41,"{""promo"": ""10%""}",280162,1,North America +2023-04-25,59004,3205,"[""Keyboard"", ""Laptop"", ""Charger""]",3539.31,"{""promo"": ""23%""}",126834,0,North America +2023-03-28,59005,3946,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",203.12,{},256441,1,Europe +2024-07-03,59006,519,"[""Monitor""]",1558.39,{},31619,1,North America +2024-07-27,59007,1981,"[""Wireless Mouse""]",2012.22,{},166132,1,South America +2023-11-02,59008,3671,"[""Phone""]",2937.06,{},222352,0,Africa +2023-03-25,59009,8928,"[""Headphones"", ""Keyboard"", ""Laptop""]",4730.58,{},131296,1,North America +2024-11-10,59010,3004,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1754.16,{},289388,0,Africa +2023-12-23,59011,2005,"[""Laptop"", ""Keyboard""]",2818.93,"{"""": ""6%""}",123822,0,North America +2024-10-14,59012,3836,"[""Tablet"", ""Monitor"", ""Laptop""]",765.68,"{"""": ""26%""}",200478,0,Europe +2023-12-10,59013,7979,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3948.32,{},83663,1,North America +2023-01-16,59014,9252,"[""Charger"", ""Headphones""]",4875.23,"{""seasonal"": ""5%""}",291607,1,North America +2023-12-12,59015,8808,"[""Phone""]",1776.84,"{""seasonal"": ""27%""}",89507,1,Africa +2023-03-11,59016,6909,"[""Tablet"", ""Monitor"", ""Charger""]",3744.81,{},279922,1,Africa +2023-05-13,59017,8797,"[""Phone""]",2476.49,"{"""": ""20%""}",55028,1,South America +2024-05-28,59018,1169,"[""Keyboard""]",1221.41,"{""promo"": ""7%""}",149478,1,South America +2024-11-20,59019,6366,"[""Monitor""]",4811.82,{},205132,1,Europe +2023-09-07,59020,5516,"[""Headphones""]",2849.24,{},238651,1,Asia +2023-01-29,59021,4501,"[""Wireless Mouse"", ""Monitor""]",1610.07,{},273805,1,Europe +2023-08-29,59022,3742,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",816.54,"{""seasonal"": ""28%""}",123272,0,Europe +2024-10-20,59023,5575,"[""Tablet""]",489.87,"{""seasonal"": ""9%""}",111415,0,Asia +2024-12-16,59024,965,"[""Keyboard"", ""Phone""]",2333.17,"{"""": ""26%""}",255424,0,Europe +2024-09-09,59025,8258,"[""Monitor"", ""Charger""]",2071.88,{},138514,0,Africa +2023-12-18,59026,7809,"[""Laptop""]",821.74,{},145558,0,North America +2024-05-12,59027,1884,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3943.2,{},44921,0,North America +2024-10-13,59028,4355,"[""Charger"", ""Tablet""]",4955.66,"{""loyalty"": ""28%""}",217335,1,South America +2023-10-05,59029,2441,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2635.05,"{""seasonal"": ""16%""}",113352,1,South America +2023-06-29,59030,4044,"[""Laptop"", ""Tablet"", ""Keyboard""]",138.4,{},81312,0,North America +2024-08-26,59031,8741,"[""Laptop""]",4256.28,{},190313,0,Asia +2024-04-09,59032,9962,"[""Keyboard""]",233.1,"{""seasonal"": ""11%""}",267266,0,South America +2023-05-19,59033,3396,"[""Headphones""]",1284.49,{},266042,0,Asia +2023-11-20,59034,8841,"[""Headphones"", ""Phone""]",1963.92,"{""promo"": ""26%""}",123434,1,North America +2024-11-19,59035,3499,"[""Tablet"", ""Wireless Mouse""]",4822.22,"{""loyalty"": ""11%""}",210892,1,Asia +2024-04-04,59036,4054,"[""Tablet""]",2903.74,"{""promo"": ""15%""}",52748,1,Asia +2023-09-23,59037,3000,"[""Phone"", ""Laptop""]",2213.55,{},189102,1,Asia +2024-04-05,59038,1403,"[""Headphones""]",3896.97,"{""seasonal"": ""30%""}",101608,1,South America +2024-04-24,59039,751,"[""Monitor""]",2633.7,{},177220,1,Asia +2023-06-30,59040,9318,"[""Wireless Mouse"", ""Laptop""]",2770.19,{},120291,0,South America +2023-12-21,59041,5980,"[""Tablet"", ""Phone""]",4187.45,"{"""": ""22%""}",9498,1,South America +2024-09-15,59042,7723,"[""Wireless Mouse"", ""Monitor""]",3979.01,"{""promo"": ""19%""}",49168,1,South America +2024-01-10,59043,1393,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1847.72,{},255474,1,Europe +2023-03-09,59044,202,"[""Phone""]",832.73,"{"""": ""14%""}",266110,1,Africa +2023-06-14,59045,3241,"[""Phone""]",1174.06,{},227706,0,Africa +2023-10-03,59046,2207,"[""Tablet"", ""Monitor"", ""Laptop""]",4202.21,{},225478,0,Asia +2023-02-04,59047,5564,"[""Headphones""]",615.11,{},204887,1,South America +2023-11-11,59048,9256,"[""Phone"", ""Charger"", ""Tablet""]",3582.65,"{""loyalty"": ""21%""}",201259,0,Africa +2024-09-21,59049,3308,"[""Charger""]",3918.31,{},212364,0,South America +2024-05-19,59050,6255,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2966.28,{},172173,0,North America +2023-06-22,59051,1575,"[""Phone"", ""Charger""]",1051.5,{},85326,1,Asia +2023-01-02,59052,9780,"[""Laptop""]",3876.21,{},214867,1,North America +2023-05-03,59053,4141,"[""Monitor""]",4635.54,{},130661,0,Europe +2024-08-06,59054,2953,"[""Phone"", ""Wireless Mouse""]",476.17,"{""promo"": ""26%""}",110958,1,Europe +2023-12-08,59055,2113,"[""Wireless Mouse""]",4818.82,{},24300,0,Europe +2024-07-20,59056,6606,"[""Keyboard"", ""Headphones"", ""Tablet""]",3045.77,{},168423,0,Africa +2023-12-06,59057,4378,"[""Charger""]",2215.77,"{""seasonal"": ""23%""}",251495,0,North America +2024-05-23,59058,240,"[""Headphones""]",4842.18,"{"""": ""23%""}",87989,1,Europe +2023-03-03,59059,6807,"[""Laptop"", ""Monitor""]",3281.72,{},2037,1,Europe +2024-06-15,59060,2134,"[""Monitor"", ""Laptop"", ""Phone""]",399.44,{},119786,0,South America +2024-09-29,59061,2660,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3815.63,{},248283,0,Asia +2024-04-11,59062,8732,"[""Keyboard"", ""Monitor""]",4767.96,{},163334,1,Africa +2023-11-01,59063,4158,"[""Keyboard"", ""Charger"", ""Headphones""]",1511.01,"{""seasonal"": ""24%""}",211249,1,South America +2024-11-29,59064,870,"[""Keyboard""]",3713.12,"{""promo"": ""12%""}",281791,0,South America +2024-04-18,59065,887,"[""Laptop"", ""Headphones""]",1804.28,"{""promo"": ""21%""}",133207,1,North America +2023-06-02,59066,1795,"[""Keyboard"", ""Headphones""]",358.16,"{"""": ""12%""}",157902,0,North America +2023-12-08,59067,5175,"[""Headphones""]",1031.15,"{""promo"": ""12%""}",193710,1,Africa +2023-04-03,59068,4409,"[""Laptop""]",985.1,"{"""": ""11%""}",65839,0,Asia +2024-11-22,59069,7443,"[""Phone""]",4223.54,"{""loyalty"": ""23%""}",45547,1,South America +2024-12-01,59070,9052,"[""Keyboard""]",4937.82,{},57654,0,South America +2024-04-22,59071,47,"[""Charger""]",1026.13,{},266637,0,South America +2023-08-06,59072,6320,"[""Monitor"", ""Headphones"", ""Charger""]",1309.38,{},219091,1,Europe +2023-09-10,59073,9416,"[""Phone"", ""Monitor""]",3893.49,{},130371,0,North America +2024-05-27,59074,3294,"[""Monitor"", ""Laptop"", ""Headphones""]",2739.83,"{""loyalty"": ""7%""}",83556,1,Africa +2023-09-19,59075,9326,"[""Monitor""]",2638.46,"{"""": ""18%""}",213091,0,South America +2024-12-10,59076,8185,"[""Monitor"", ""Charger""]",4527.81,"{""loyalty"": ""29%""}",131482,0,Europe +2023-03-24,59077,1681,"[""Laptop""]",962.27,{},297309,0,South America +2023-07-08,59078,9096,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3879.02,"{""seasonal"": ""11%""}",272777,0,North America +2024-09-13,59079,2370,"[""Laptop""]",2339.89,"{""promo"": ""18%""}",120551,1,North America +2023-12-25,59080,9925,"[""Wireless Mouse""]",2902.62,"{""promo"": ""24%""}",2775,0,Europe +2023-05-12,59081,1570,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",746.3,{},42030,1,South America +2024-11-28,59082,8527,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3995.14,{},61180,1,North America +2023-07-12,59083,8087,"[""Keyboard"", ""Laptop""]",604.67,{},258051,0,South America +2023-11-15,59084,8608,"[""Headphones"", ""Tablet"", ""Keyboard""]",4632.33,"{""loyalty"": ""23%""}",277197,0,South America +2024-05-10,59085,4675,"[""Keyboard"", ""Monitor""]",678.95,{},71055,1,North America +2024-12-02,59086,1844,"[""Wireless Mouse""]",1609.57,"{""loyalty"": ""12%""}",148732,1,Asia +2023-12-13,59087,1153,"[""Phone"", ""Monitor""]",3109.9,"{""seasonal"": ""8%""}",289465,1,Europe +2023-10-15,59088,3037,"[""Monitor"", ""Charger""]",4158.59,{},9393,0,Europe +2024-05-26,59089,3617,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2499.56,"{""seasonal"": ""24%""}",200700,0,Asia +2024-12-04,59090,7789,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3854.23,"{""promo"": ""29%""}",136086,0,North America +2023-02-17,59091,2048,"[""Laptop""]",4389.8,{},190498,0,Europe +2023-10-19,59092,1747,"[""Phone"", ""Tablet"", ""Monitor""]",2420.47,{},258975,0,Europe +2024-08-25,59093,7952,"[""Charger"", ""Laptop""]",4586.77,{},263769,0,North America +2024-01-29,59094,368,"[""Monitor"", ""Headphones"", ""Phone""]",3111.06,"{""loyalty"": ""22%""}",186951,0,South America +2023-09-02,59095,6707,"[""Wireless Mouse""]",3806.51,{},279740,1,Asia +2024-07-31,59096,5484,"[""Charger""]",1412.69,{},10633,0,Asia +2023-07-13,59097,6582,"[""Keyboard"", ""Monitor"", ""Charger""]",4653.3,"{""seasonal"": ""20%""}",117015,0,Africa +2023-09-11,59098,3755,"[""Wireless Mouse"", ""Keyboard""]",3142.16,"{""loyalty"": ""21%""}",239230,1,North America +2023-03-25,59099,4171,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1399.89,"{""loyalty"": ""29%""}",24106,0,Africa +2023-04-26,59100,9159,"[""Tablet"", ""Monitor"", ""Charger""]",465.57,{},83356,0,North America +2023-04-14,59101,4356,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3919.2,"{""promo"": ""16%""}",281079,1,Asia +2024-10-09,59102,7433,"[""Wireless Mouse"", ""Headphones""]",4421.54,"{"""": ""7%""}",270043,1,Asia +2023-09-05,59103,2648,"[""Headphones""]",985.85,"{""loyalty"": ""21%""}",106089,1,North America +2024-07-23,59104,812,"[""Keyboard"", ""Charger""]",1262.6,{},220960,0,Asia +2024-11-18,59105,1393,"[""Charger"", ""Laptop"", ""Monitor""]",2329.02,"{"""": ""26%""}",45663,1,South America +2023-05-21,59106,7182,"[""Headphones"", ""Tablet"", ""Laptop""]",1420.11,{},65852,0,North America +2024-05-22,59107,5853,"[""Laptop"", ""Keyboard""]",753.05,{},131548,1,Africa +2023-10-17,59108,7378,"[""Monitor"", ""Tablet""]",2650.87,{},277214,0,North America +2024-03-17,59109,8564,"[""Tablet"", ""Charger""]",1494.74,"{"""": ""19%""}",131156,0,Europe +2023-02-28,59110,9975,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",749.66,"{"""": ""6%""}",3478,1,South America +2024-07-17,59111,68,"[""Wireless Mouse"", ""Monitor""]",3775.72,{},175418,1,Africa +2023-03-17,59112,8595,"[""Monitor""]",1016.68,"{""seasonal"": ""17%""}",127396,1,North America +2024-04-02,59113,8823,"[""Tablet"", ""Laptop"", ""Headphones""]",2400.05,{},187338,0,South America +2024-01-07,59114,9823,"[""Tablet""]",1496.06,"{""promo"": ""6%""}",57902,0,Asia +2023-11-29,59115,7814,"[""Keyboard"", ""Wireless Mouse""]",1704.66,{},45353,0,Europe +2023-08-13,59116,5143,"[""Phone""]",894.54,{},170612,0,Africa +2023-12-03,59117,9121,"[""Wireless Mouse""]",2716.5,{},256894,1,Europe +2024-04-20,59118,9636,"[""Laptop"", ""Monitor""]",2956.16,"{"""": ""19%""}",254969,1,North America +2023-03-28,59119,1414,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4892.9,"{""seasonal"": ""6%""}",244516,0,Africa +2024-04-12,59120,5904,"[""Headphones"", ""Monitor"", ""Charger""]",3724.32,{},59483,1,North America +2023-04-03,59121,7305,"[""Phone""]",2740.81,{},124027,0,Asia +2023-07-21,59122,8834,"[""Phone"", ""Tablet""]",819.94,"{"""": ""10%""}",295567,1,Africa +2024-08-08,59123,8763,"[""Laptop"", ""Wireless Mouse""]",4427.77,{},260841,1,South America +2024-04-22,59124,7374,"[""Headphones"", ""Phone"", ""Tablet""]",931.04,"{""promo"": ""15%""}",204113,1,Asia +2024-06-06,59125,579,"[""Headphones""]",3109.28,"{"""": ""21%""}",92431,1,South America +2023-02-11,59126,8401,"[""Laptop"", ""Headphones"", ""Monitor""]",4403.22,{},127392,0,North America +2024-07-13,59127,6315,"[""Laptop"", ""Headphones"", ""Monitor""]",664.91,"{""promo"": ""11%""}",273882,0,South America +2023-05-24,59128,547,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1171.31,{},106333,0,Europe +2023-02-14,59129,3994,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4685.55,{},84957,0,Europe +2024-03-24,59130,2222,"[""Monitor"", ""Charger""]",4879.92,"{"""": ""20%""}",24325,0,North America +2024-02-23,59131,5560,"[""Tablet"", ""Charger"", ""Keyboard""]",1768.92,"{""loyalty"": ""25%""}",47287,0,South America +2023-08-10,59132,2628,"[""Monitor"", ""Keyboard""]",3292.09,{},95773,0,Europe +2023-01-02,59133,2362,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2292.04,{},113174,0,South America +2023-11-14,59134,8272,"[""Headphones"", ""Laptop"", ""Keyboard""]",1439.33,{},139014,0,North America +2023-01-23,59135,2169,"[""Charger"", ""Monitor""]",4552.08,"{"""": ""20%""}",8442,1,North America +2024-07-08,59136,756,"[""Charger""]",4590.94,{},61899,1,Europe +2024-02-03,59137,8782,"[""Phone"", ""Tablet""]",4958.33,{},204213,1,Europe +2024-05-16,59138,9752,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4327.3,"{""promo"": ""20%""}",53659,1,Asia +2024-02-28,59139,9525,"[""Monitor"", ""Headphones"", ""Charger""]",1611.62,{},13662,0,South America +2024-12-30,59140,499,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4186.78,"{"""": ""19%""}",52045,1,South America +2024-08-19,59141,4608,"[""Monitor"", ""Keyboard""]",3140.48,{},276801,1,Europe +2023-06-22,59142,7881,"[""Keyboard"", ""Charger""]",502.29,{},45523,0,Africa +2024-02-28,59143,8545,"[""Monitor"", ""Headphones""]",1743.15,{},278775,0,Africa +2023-06-27,59144,2577,"[""Headphones""]",1130.94,{},159844,0,Europe +2023-02-26,59145,1314,"[""Headphones""]",2098.98,{},145783,1,Africa +2023-05-08,59146,6547,"[""Charger"", ""Phone""]",4480.39,"{""promo"": ""22%""}",186361,0,Europe +2024-04-07,59147,5303,"[""Monitor"", ""Laptop"", ""Charger""]",218.21,{},68569,1,South America +2023-02-19,59148,9278,"[""Tablet""]",216.78,{},15347,1,Africa +2024-02-19,59149,7030,"[""Charger"", ""Keyboard"", ""Laptop""]",757.52,{},57557,1,Europe +2024-10-21,59150,121,"[""Monitor"", ""Headphones"", ""Tablet""]",745.47,{},226058,0,North America +2024-09-29,59151,4835,"[""Laptop""]",695.53,{},287692,0,North America +2023-08-18,59152,4731,"[""Headphones"", ""Charger"", ""Phone""]",4096.17,"{""loyalty"": ""8%""}",179351,1,Africa +2024-05-05,59153,4911,"[""Charger""]",3388.14,"{""seasonal"": ""25%""}",293549,1,South America +2023-11-30,59154,545,"[""Keyboard"", ""Laptop"", ""Phone""]",4342.99,"{"""": ""15%""}",260650,1,Asia +2024-10-24,59155,7231,"[""Monitor""]",4736.65,"{""loyalty"": ""23%""}",177854,1,Africa +2023-12-01,59156,6684,"[""Phone"", ""Charger"", ""Monitor""]",4810.21,"{""promo"": ""11%""}",156883,0,North America +2023-03-25,59157,9133,"[""Wireless Mouse"", ""Keyboard""]",4546.25,{},242282,1,Asia +2023-12-28,59158,2022,"[""Laptop""]",636.42,"{""loyalty"": ""28%""}",139392,1,South America +2023-01-06,59159,8141,"[""Keyboard"", ""Phone"", ""Laptop""]",1578.49,"{"""": ""8%""}",1914,0,Europe +2024-05-28,59160,9259,"[""Wireless Mouse""]",3058.74,"{""promo"": ""5%""}",128213,1,Asia +2023-03-07,59161,3048,"[""Laptop"", ""Phone"", ""Tablet""]",1853.85,"{"""": ""14%""}",63247,0,Asia +2024-08-29,59162,1808,"[""Monitor""]",981.33,{},281265,1,North America +2024-08-03,59163,1522,"[""Wireless Mouse"", ""Monitor""]",3705.26,"{""loyalty"": ""22%""}",204874,0,North America +2023-10-09,59164,4233,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2501.9,{},296155,0,Africa +2023-01-24,59165,2549,"[""Wireless Mouse""]",3899.89,"{""loyalty"": ""25%""}",18349,0,Africa +2024-10-28,59166,9854,"[""Phone"", ""Laptop"", ""Keyboard""]",3643.37,"{"""": ""8%""}",209621,1,Asia +2024-08-30,59167,7134,"[""Laptop"", ""Charger"", ""Headphones""]",2949.66,"{"""": ""26%""}",215324,1,North America +2023-12-15,59168,9247,"[""Phone""]",1020.89,"{""promo"": ""9%""}",291028,0,Europe +2024-05-08,59169,2174,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4342.35,{},192160,0,South America +2023-10-26,59170,2773,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3257.49,"{""seasonal"": ""28%""}",143335,0,North America +2024-12-30,59171,3405,"[""Keyboard""]",4212.75,{},138919,0,Africa +2024-12-27,59172,958,"[""Monitor"", ""Phone"", ""Keyboard""]",2903.58,{},172696,1,Asia +2024-12-03,59173,4300,"[""Laptop""]",4123.59,"{"""": ""13%""}",260503,0,Asia +2024-04-15,59174,7893,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",940.28,{},290431,1,South America +2023-01-20,59175,4858,"[""Phone""]",1009.09,{},254737,0,Europe +2023-08-15,59176,562,"[""Tablet""]",4372.77,{},144700,1,South America +2023-01-02,59177,9105,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3787.46,"{"""": ""8%""}",271969,1,Asia +2023-06-20,59178,9315,"[""Phone"", ""Laptop""]",4734.98,"{"""": ""10%""}",21413,1,North America +2024-03-25,59179,1454,"[""Laptop"", ""Tablet""]",2617.25,"{""seasonal"": ""17%""}",62288,0,North America +2023-05-22,59180,1169,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1891.08,{},104588,1,Asia +2023-08-09,59181,8387,"[""Wireless Mouse""]",2305.23,{},7033,0,South America +2024-12-06,59182,1418,"[""Headphones""]",3465.27,"{""seasonal"": ""22%""}",165506,1,Europe +2023-11-12,59183,2299,"[""Laptop""]",385.93,"{"""": ""28%""}",55435,1,Asia +2024-03-17,59184,4617,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3293.43,{},293142,0,North America +2024-06-22,59185,9052,"[""Tablet"", ""Charger""]",1988.98,{},257609,1,North America +2024-05-10,59186,4259,"[""Tablet"", ""Keyboard"", ""Charger""]",2324.27,"{"""": ""8%""}",184551,1,North America +2024-11-19,59187,5399,"[""Headphones"", ""Monitor""]",4460.28,{},34929,0,North America +2024-05-20,59188,777,"[""Keyboard""]",4840.97,"{""seasonal"": ""20%""}",128117,1,South America +2024-04-29,59189,4630,"[""Wireless Mouse"", ""Laptop""]",4078.47,{},101963,1,Europe +2024-09-19,59190,8667,"[""Monitor"", ""Keyboard"", ""Tablet""]",364.67,"{"""": ""20%""}",230268,1,Asia +2023-09-10,59191,8826,"[""Monitor"", ""Phone"", ""Headphones""]",272.78,{},17907,1,South America +2024-03-02,59192,5168,"[""Wireless Mouse"", ""Headphones""]",2037.93,{},97700,1,Europe +2024-06-18,59193,4124,"[""Charger"", ""Phone"", ""Monitor""]",2977.29,"{""loyalty"": ""13%""}",28145,1,Europe +2023-08-12,59194,4701,"[""Phone"", ""Monitor"", ""Headphones""]",602.51,"{"""": ""23%""}",78547,0,North America +2024-09-10,59195,4933,"[""Tablet""]",1605.75,"{""promo"": ""11%""}",264385,0,Europe +2023-07-01,59196,189,"[""Laptop"", ""Phone"", ""Tablet""]",2026.96,"{""seasonal"": ""20%""}",287775,1,South America +2023-12-24,59197,6674,"[""Charger"", ""Monitor"", ""Keyboard""]",4167.51,"{""seasonal"": ""25%""}",54366,1,South America +2024-04-23,59198,9056,"[""Phone"", ""Monitor""]",1596.51,{},179162,1,South America +2024-03-23,59199,4722,"[""Keyboard"", ""Monitor""]",2224.47,"{""promo"": ""25%""}",27223,1,Africa +2023-01-28,59200,6814,"[""Phone""]",2005.47,{},214135,0,South America +2023-08-27,59201,1045,"[""Tablet"", ""Charger""]",2597.89,"{""seasonal"": ""18%""}",286278,0,Asia +2023-10-09,59202,5473,"[""Wireless Mouse""]",3668.34,"{""promo"": ""23%""}",120579,1,Asia +2024-02-22,59203,6711,"[""Tablet""]",3322.13,"{""promo"": ""25%""}",281366,0,Asia +2024-07-11,59204,1437,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3663.29,"{""loyalty"": ""28%""}",13221,0,South America +2023-03-08,59205,1122,"[""Keyboard"", ""Charger""]",2993.51,"{"""": ""29%""}",122514,0,South America +2024-10-09,59206,7736,"[""Laptop"", ""Keyboard""]",3480.02,"{""promo"": ""10%""}",122474,1,Europe +2023-09-04,59207,1044,"[""Phone"", ""Keyboard"", ""Tablet""]",3797.66,"{"""": ""21%""}",252376,0,Europe +2024-01-30,59208,6614,"[""Tablet""]",1450.65,"{"""": ""24%""}",252422,1,Africa +2024-09-07,59209,1473,"[""Monitor""]",1171.95,"{""seasonal"": ""29%""}",207740,1,South America +2023-08-01,59210,4039,"[""Tablet""]",2115.99,{},108754,1,Africa +2023-07-21,59211,3799,"[""Keyboard"", ""Phone""]",2472.29,"{""loyalty"": ""8%""}",258576,0,North America +2023-03-03,59212,7947,"[""Keyboard"", ""Charger""]",2236.88,"{""promo"": ""12%""}",251368,1,Asia +2023-05-31,59213,6017,"[""Keyboard""]",2407.89,{},275675,1,Asia +2023-12-29,59214,532,"[""Tablet""]",1415.09,"{""promo"": ""27%""}",261455,0,Africa +2024-04-28,59215,9734,"[""Charger"", ""Laptop"", ""Tablet""]",1877.7,"{""seasonal"": ""11%""}",21004,1,Europe +2024-10-18,59216,9153,"[""Monitor"", ""Keyboard"", ""Headphones""]",2751.23,"{""seasonal"": ""27%""}",95450,0,Africa +2023-11-25,59217,4186,"[""Monitor"", ""Phone""]",3237.91,"{""promo"": ""12%""}",127345,1,Africa +2024-03-02,59218,446,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1838.83,{},112138,0,Europe +2023-12-31,59219,2168,"[""Laptop"", ""Charger"", ""Headphones""]",4439.85,{},98682,1,North America +2023-09-02,59220,6263,"[""Phone"", ""Keyboard"", ""Monitor""]",2345.83,{},70248,1,North America +2023-04-20,59221,5036,"[""Laptop"", ""Phone""]",2939.7,"{""seasonal"": ""19%""}",237979,1,South America +2023-05-11,59222,1348,"[""Keyboard"", ""Phone""]",226.15,"{""loyalty"": ""20%""}",299483,0,Europe +2024-12-18,59223,1911,"[""Monitor"", ""Laptop""]",740.44,{},44821,1,Europe +2024-03-26,59224,8269,"[""Headphones"", ""Laptop""]",1062.97,"{""loyalty"": ""25%""}",266554,1,Europe +2024-11-16,59225,7308,"[""Laptop""]",1932.26,{},224561,1,Africa +2023-11-03,59226,8214,"[""Wireless Mouse"", ""Laptop""]",4258.73,{},12789,0,Africa +2023-07-07,59227,452,"[""Charger""]",2297.55,{},144769,1,Europe +2024-06-21,59228,8363,"[""Wireless Mouse""]",3419.04,"{""seasonal"": ""16%""}",293939,1,South America +2024-12-09,59229,4292,"[""Monitor"", ""Headphones""]",564.3,"{"""": ""9%""}",226562,0,Africa +2023-12-12,59230,4319,"[""Headphones""]",1409.35,"{"""": ""25%""}",155298,0,Asia +2023-12-21,59231,6564,"[""Charger"", ""Headphones""]",1617.8,{},248336,0,Europe +2024-05-15,59232,2343,"[""Charger""]",1829.73,{},84525,0,South America +2024-07-16,59233,611,"[""Keyboard""]",3959.31,"{"""": ""29%""}",248123,0,Africa +2024-09-07,59234,3213,"[""Monitor""]",111.73,{},86251,0,Africa +2023-08-18,59235,7235,"[""Headphones""]",2088.09,{},224559,1,Asia +2023-11-17,59236,3559,"[""Phone"", ""Headphones""]",4683.92,"{""seasonal"": ""6%""}",217060,0,Asia +2023-12-19,59237,9096,"[""Headphones""]",3926.16,{},221785,0,Europe +2023-09-06,59238,8351,"[""Keyboard"", ""Tablet"", ""Laptop""]",2776.32,{},234989,1,Asia +2024-06-28,59239,9473,"[""Headphones""]",954.6,"{""loyalty"": ""8%""}",50458,1,Asia +2023-06-03,59240,2900,"[""Phone"", ""Laptop"", ""Tablet""]",686.78,"{"""": ""21%""}",183550,0,Africa +2023-10-31,59241,3558,"[""Tablet""]",466.52,"{"""": ""17%""}",202756,1,South America +2024-01-24,59242,5979,"[""Laptop""]",2092.96,"{""promo"": ""7%""}",67517,1,North America +2023-01-24,59243,9508,"[""Phone"", ""Tablet""]",1187.62,{},282017,1,Asia +2023-08-01,59244,9216,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3428.66,"{""promo"": ""21%""}",15358,1,Europe +2023-10-28,59245,6866,"[""Tablet"", ""Wireless Mouse""]",4280.32,"{""seasonal"": ""5%""}",290545,1,North America +2024-02-17,59246,8932,"[""Monitor"", ""Headphones""]",1856.35,{},221791,1,Africa +2023-03-05,59247,1254,"[""Headphones"", ""Keyboard"", ""Monitor""]",1280.12,"{""loyalty"": ""24%""}",127821,1,North America +2024-09-24,59248,5633,"[""Phone""]",3110.86,{},164543,0,Asia +2023-10-01,59249,1660,"[""Monitor""]",1199.44,"{""promo"": ""20%""}",63055,0,Africa +2024-08-20,59250,2721,"[""Wireless Mouse"", ""Monitor""]",2022.47,{},176280,1,Europe +2023-07-21,59251,9572,"[""Headphones"", ""Charger"", ""Tablet""]",2558.97,"{"""": ""5%""}",177527,1,Africa +2024-06-26,59252,4676,"[""Laptop""]",911.77,{},201686,0,Europe +2023-07-17,59253,4615,"[""Tablet""]",58.54,"{""seasonal"": ""5%""}",255224,1,Asia +2024-01-31,59254,1777,"[""Monitor"", ""Tablet""]",4032.74,"{""loyalty"": ""10%""}",56821,1,Asia +2024-05-04,59255,1240,"[""Keyboard"", ""Monitor""]",4961.97,"{""seasonal"": ""19%""}",199733,1,South America +2023-09-06,59256,5574,"[""Wireless Mouse"", ""Monitor""]",4428.18,{},266639,0,Europe +2024-08-29,59257,9340,"[""Headphones"", ""Tablet"", ""Charger""]",4858.23,{},184138,1,Europe +2023-02-28,59258,965,"[""Laptop"", ""Phone""]",3045.62,"{""promo"": ""25%""}",273572,0,Asia +2023-02-03,59259,3990,"[""Tablet"", ""Headphones""]",3799.87,{},299709,1,South America +2024-04-27,59260,7528,"[""Keyboard"", ""Headphones"", ""Laptop""]",1991.14,{},182027,0,South America +2023-08-18,59261,6927,"[""Keyboard""]",1770.6,"{"""": ""22%""}",50089,1,Africa +2023-07-20,59262,7114,"[""Headphones"", ""Monitor"", ""Charger""]",4586.0,"{""promo"": ""15%""}",146360,1,Africa +2023-10-22,59263,7633,"[""Wireless Mouse"", ""Monitor""]",4955.18,"{""promo"": ""20%""}",209130,0,Europe +2023-09-27,59264,7225,"[""Tablet"", ""Keyboard"", ""Charger""]",2480.86,"{""seasonal"": ""22%""}",106849,1,Africa +2023-10-22,59265,2423,"[""Tablet"", ""Monitor"", ""Headphones""]",3792.65,{},212009,1,South America +2024-05-26,59266,9351,"[""Tablet"", ""Keyboard"", ""Charger""]",2576.84,"{"""": ""8%""}",157138,0,North America +2023-03-07,59267,5283,"[""Monitor""]",4753.02,"{""seasonal"": ""20%""}",189424,0,South America +2024-03-07,59268,1824,"[""Charger"", ""Laptop"", ""Tablet""]",2148.04,"{"""": ""14%""}",41401,0,Europe +2024-06-18,59269,9414,"[""Tablet""]",3745.96,"{""promo"": ""13%""}",81228,0,South America +2023-09-10,59270,8880,"[""Tablet"", ""Laptop"", ""Keyboard""]",1158.12,"{""seasonal"": ""11%""}",150245,0,Africa +2023-11-20,59271,6470,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3423.72,{},295527,0,Africa +2024-03-07,59272,3684,"[""Headphones""]",742.3,"{"""": ""23%""}",28737,0,Asia +2023-07-23,59273,2991,"[""Headphones"", ""Phone""]",4355.33,"{"""": ""8%""}",213594,0,South America +2024-09-20,59274,257,"[""Wireless Mouse"", ""Headphones""]",642.57,{},158908,1,Europe +2024-04-27,59275,8025,"[""Charger""]",994.12,"{""loyalty"": ""6%""}",131386,1,North America +2023-08-29,59276,5195,"[""Tablet"", ""Keyboard""]",827.81,{},243087,1,South America +2024-12-16,59277,1000,"[""Headphones""]",3481.02,{},64485,1,Europe +2024-03-21,59278,2101,"[""Wireless Mouse"", ""Laptop""]",3608.37,{},170264,1,Africa +2023-06-22,59279,4461,"[""Charger"", ""Phone""]",3988.21,"{""seasonal"": ""25%""}",248317,1,North America +2024-05-03,59280,14,"[""Phone"", ""Headphones""]",3401.36,"{""seasonal"": ""6%""}",18504,0,North America +2023-03-19,59281,8582,"[""Monitor"", ""Tablet"", ""Keyboard""]",3723.85,"{"""": ""15%""}",226878,1,Africa +2024-02-14,59282,530,"[""Charger"", ""Tablet"", ""Monitor""]",161.34,{},8621,0,Africa +2023-11-02,59283,7160,"[""Laptop"", ""Charger""]",2461.42,{},296477,0,South America +2023-07-21,59284,6749,"[""Monitor""]",1728.82,"{""loyalty"": ""26%""}",212114,0,South America +2023-08-13,59285,2708,"[""Phone""]",2074.49,"{""loyalty"": ""15%""}",46463,0,Europe +2024-07-11,59286,5103,"[""Keyboard"", ""Monitor""]",4161.48,{},8043,1,South America +2023-08-29,59287,7504,"[""Tablet"", ""Headphones""]",2880.2,{},65447,1,Asia +2023-09-03,59288,729,"[""Charger""]",4354.4,"{""loyalty"": ""29%""}",33506,0,Asia +2023-11-30,59289,480,"[""Charger"", ""Phone""]",2675.74,{},92376,0,South America +2023-12-08,59290,6030,"[""Phone"", ""Tablet"", ""Charger""]",2374.43,{},200997,0,South America +2024-06-29,59291,864,"[""Headphones"", ""Monitor""]",3480.55,{},166241,0,Africa +2023-03-01,59292,6240,"[""Phone"", ""Headphones"", ""Monitor""]",3709.33,"{""seasonal"": ""12%""}",186510,1,Europe +2023-06-28,59293,6231,"[""Keyboard"", ""Laptop""]",4026.15,{},144295,0,Africa +2023-09-01,59294,7691,"[""Monitor"", ""Keyboard""]",4075.22,{},272916,0,Europe +2023-11-26,59295,5010,"[""Tablet"", ""Wireless Mouse""]",611.27,{},11366,1,North America +2024-06-11,59296,4493,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1550.01,"{"""": ""10%""}",148772,1,Africa +2023-10-23,59297,6766,"[""Monitor""]",138.89,"{""loyalty"": ""23%""}",193238,1,North America +2023-12-04,59298,7041,"[""Tablet"", ""Headphones""]",544.16,{},148709,1,Africa +2023-03-08,59299,9157,"[""Headphones"", ""Charger""]",4086.61,{},105283,0,Africa +2024-01-14,59300,1886,"[""Laptop""]",4621.83,"{"""": ""11%""}",74529,0,Africa +2024-06-03,59301,9092,"[""Tablet""]",2484.52,"{""loyalty"": ""15%""}",229464,1,Europe +2023-11-22,59302,2031,"[""Monitor""]",349.34,"{"""": ""22%""}",60151,0,Europe +2024-05-22,59303,3298,"[""Wireless Mouse"", ""Headphones""]",3497.4,"{"""": ""19%""}",65084,1,Europe +2023-01-12,59304,4226,"[""Phone"", ""Charger"", ""Keyboard""]",354.22,{},48420,1,South America +2024-07-21,59305,5934,"[""Tablet"", ""Headphones"", ""Monitor""]",2083.97,"{""seasonal"": ""27%""}",136263,1,Asia +2024-12-03,59306,7700,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4765.51,"{""loyalty"": ""22%""}",133996,0,Asia +2024-03-02,59307,2982,"[""Wireless Mouse""]",4935.72,"{""loyalty"": ""18%""}",127741,0,Africa +2023-04-20,59308,6970,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2453.56,"{""seasonal"": ""7%""}",38241,1,Africa +2023-01-03,59309,5751,"[""Headphones""]",1258.15,{},74979,1,Europe +2023-09-11,59310,9649,"[""Wireless Mouse""]",818.83,{},238604,0,Africa +2023-02-20,59311,118,"[""Keyboard"", ""Monitor"", ""Laptop""]",3279.49,{},168471,1,North America +2023-06-24,59312,3539,"[""Laptop"", ""Charger"", ""Tablet""]",695.66,"{""loyalty"": ""12%""}",206065,1,South America +2023-02-03,59313,8685,"[""Wireless Mouse"", ""Headphones""]",988.29,{},85218,0,Europe +2023-12-26,59314,9842,"[""Phone"", ""Laptop"", ""Headphones""]",4938.76,"{""loyalty"": ""19%""}",138030,0,South America +2023-03-18,59315,757,"[""Phone"", ""Wireless Mouse""]",2306.14,"{""seasonal"": ""19%""}",219287,1,South America +2023-09-04,59316,6283,"[""Monitor""]",3553.23,{},216527,1,Asia +2024-12-25,59317,641,"[""Headphones"", ""Tablet""]",1760.06,{},142745,1,North America +2023-11-25,59318,9868,"[""Laptop""]",2464.35,{},267189,1,Asia +2023-01-08,59319,4582,"[""Tablet"", ""Keyboard"", ""Headphones""]",4906.22,{},155771,1,Asia +2023-12-30,59320,5052,"[""Wireless Mouse""]",4835.21,"{""promo"": ""29%""}",220927,0,Africa +2023-01-10,59321,9890,"[""Keyboard"", ""Headphones"", ""Charger""]",3403.24,{},1746,1,Africa +2024-11-23,59322,9296,"[""Monitor"", ""Charger""]",4922.72,{},255594,0,Europe +2023-07-13,59323,8457,"[""Charger"", ""Laptop""]",2531.21,"{"""": ""27%""}",290946,0,Asia +2023-01-14,59324,6457,"[""Tablet"", ""Charger""]",3451.05,{},40897,0,Africa +2024-02-05,59325,7824,"[""Charger""]",2268.33,"{"""": ""18%""}",4297,1,South America +2023-05-05,59326,1135,"[""Phone"", ""Headphones""]",657.94,{},173479,0,South America +2023-06-22,59327,8378,"[""Tablet""]",1314.81,"{""seasonal"": ""11%""}",193460,1,Europe +2024-05-04,59328,7442,"[""Wireless Mouse""]",834.93,"{""seasonal"": ""9%""}",208417,0,Asia +2023-06-06,59329,9166,"[""Monitor"", ""Charger"", ""Phone""]",3224.74,"{""seasonal"": ""29%""}",224566,0,Europe +2023-02-06,59330,7659,"[""Headphones""]",645.25,{},177617,0,Europe +2023-07-18,59331,6873,"[""Laptop"", ""Phone""]",2163.78,{},116394,1,Africa +2024-11-25,59332,2925,"[""Headphones""]",4475.68,{},157382,1,Asia +2023-05-28,59333,7557,"[""Keyboard""]",3112.19,{},7104,0,Europe +2023-01-31,59334,7458,"[""Tablet"", ""Charger"", ""Laptop""]",4169.32,"{""promo"": ""24%""}",215124,1,Europe +2024-09-23,59335,2504,"[""Charger""]",1250.68,"{""loyalty"": ""7%""}",123535,0,North America +2024-08-22,59336,8813,"[""Charger""]",4677.19,"{""promo"": ""27%""}",257751,0,North America +2024-06-19,59337,2155,"[""Monitor"", ""Keyboard"", ""Charger""]",1982.75,"{""promo"": ""22%""}",230097,0,North America +2024-10-12,59338,5557,"[""Charger"", ""Headphones"", ""Phone""]",2661.05,{},58476,0,South America +2023-06-04,59339,5806,"[""Tablet"", ""Headphones""]",2636.82,{},22615,1,North America +2024-05-01,59340,6683,"[""Monitor"", ""Keyboard"", ""Charger""]",1284.33,"{""loyalty"": ""7%""}",218208,0,North America +2024-12-22,59341,9655,"[""Phone"", ""Charger"", ""Tablet""]",510.88,"{""loyalty"": ""15%""}",58421,1,Europe +2023-08-03,59342,9345,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1829.07,"{"""": ""12%""}",193826,0,Europe +2024-11-28,59343,4395,"[""Laptop"", ""Charger"", ""Phone""]",4221.42,"{""promo"": ""20%""}",84002,1,North America +2023-08-21,59344,9819,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2129.25,{},15607,0,South America +2023-07-13,59345,2435,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1931.48,{},225379,1,North America +2024-02-22,59346,5152,"[""Laptop""]",4039.17,"{"""": ""20%""}",262467,1,Asia +2023-06-24,59347,7481,"[""Phone"", ""Headphones""]",1965.42,{},278125,1,Africa +2024-10-28,59348,8702,"[""Monitor"", ""Charger""]",2867.0,{},62500,1,Asia +2023-11-06,59349,1893,"[""Monitor"", ""Headphones""]",3756.17,"{""seasonal"": ""7%""}",71192,1,Europe +2024-01-29,59350,6596,"[""Laptop"", ""Keyboard"", ""Monitor""]",3105.84,{},248140,1,Africa +2024-05-30,59351,985,"[""Headphones""]",4974.21,{},144831,0,Africa +2023-02-07,59352,6927,"[""Charger"", ""Phone"", ""Monitor""]",2931.44,"{""seasonal"": ""28%""}",282222,0,Asia +2023-07-05,59353,8279,"[""Tablet"", ""Monitor""]",1255.8,"{""promo"": ""11%""}",62915,0,North America +2023-01-27,59354,8755,"[""Tablet""]",4376.87,"{"""": ""6%""}",218658,0,North America +2024-01-05,59355,9442,"[""Laptop"", ""Charger""]",4075.01,"{""promo"": ""27%""}",147689,1,Africa +2023-05-28,59356,5717,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4640.16,{},176539,1,North America +2023-05-21,59357,4891,"[""Laptop"", ""Monitor"", ""Charger""]",981.71,{},162705,1,Africa +2024-05-23,59358,2476,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2500.32,{},267822,1,Asia +2023-11-15,59359,2187,"[""Tablet"", ""Keyboard""]",2523.64,{},292675,0,Africa +2024-01-23,59360,1647,"[""Laptop""]",4212.79,"{""seasonal"": ""7%""}",214649,1,North America +2023-03-10,59361,2490,"[""Tablet""]",1824.04,{},81936,0,Africa +2024-02-15,59362,6129,"[""Laptop""]",1198.05,"{"""": ""13%""}",159233,0,Asia +2024-07-09,59363,1518,"[""Headphones"", ""Charger""]",3221.84,{},92402,0,North America +2023-10-10,59364,3695,"[""Wireless Mouse"", ""Monitor""]",1682.34,{},198512,1,North America +2024-06-10,59365,1591,"[""Charger"", ""Keyboard""]",3924.67,"{"""": ""6%""}",242763,1,Europe +2024-11-06,59366,772,"[""Phone"", ""Keyboard""]",1591.56,{},65045,0,Asia +2023-03-30,59367,2758,"[""Keyboard"", ""Tablet""]",1851.7,{},186489,0,Europe +2023-04-02,59368,3005,"[""Headphones""]",2496.24,{},75851,0,Africa +2024-07-08,59369,452,"[""Keyboard""]",2589.44,{},67914,0,Africa +2023-04-25,59370,5321,"[""Tablet"", ""Charger"", ""Keyboard""]",4347.73,{},241130,0,Africa +2024-08-15,59371,7055,"[""Monitor"", ""Phone"", ""Charger""]",3991.88,"{""loyalty"": ""19%""}",45862,0,South America +2024-04-24,59372,140,"[""Keyboard""]",801.52,{},95331,1,Europe +2024-07-19,59373,2013,"[""Headphones"", ""Phone"", ""Tablet""]",4399.78,{},206478,1,North America +2024-08-09,59374,610,"[""Tablet""]",4039.75,{},219388,0,Europe +2024-11-01,59375,640,"[""Headphones"", ""Charger""]",3457.96,{},289024,1,North America +2023-03-30,59376,1327,"[""Headphones"", ""Laptop"", ""Monitor""]",2516.78,{},149915,0,Europe +2024-02-27,59377,916,"[""Phone""]",3830.01,{},46909,0,Asia +2024-04-10,59378,4151,"[""Headphones""]",1654.79,"{""promo"": ""10%""}",252751,0,Europe +2024-06-05,59379,5705,"[""Tablet"", ""Keyboard"", ""Headphones""]",844.06,{},204293,1,North America +2024-03-27,59380,610,"[""Monitor""]",2828.45,"{""promo"": ""13%""}",86601,1,South America +2023-01-08,59381,4905,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2087.1,"{""loyalty"": ""12%""}",253844,0,Asia +2024-03-22,59382,2814,"[""Laptop""]",1210.45,{},78943,0,Asia +2024-02-29,59383,3009,"[""Laptop""]",4787.23,"{""promo"": ""20%""}",205304,1,Africa +2023-06-13,59384,7956,"[""Laptop"", ""Keyboard""]",481.08,"{"""": ""17%""}",238371,1,Europe +2024-06-16,59385,3991,"[""Tablet""]",1630.49,"{""loyalty"": ""23%""}",94437,0,South America +2024-04-15,59386,4065,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",62.31,"{""loyalty"": ""21%""}",149239,1,North America +2024-08-04,59387,9997,"[""Laptop"", ""Wireless Mouse""]",3650.12,{},97570,0,North America +2023-09-23,59388,7779,"[""Keyboard"", ""Laptop""]",1221.2,"{""loyalty"": ""19%""}",236139,0,North America +2023-07-22,59389,6350,"[""Phone"", ""Laptop"", ""Monitor""]",3840.11,"{"""": ""8%""}",157629,1,Europe +2024-02-26,59390,9231,"[""Keyboard""]",485.51,{},229350,0,Asia +2023-07-08,59391,9712,"[""Tablet"", ""Headphones"", ""Charger""]",3564.07,{},34692,1,Europe +2023-10-22,59392,3037,"[""Laptop"", ""Tablet""]",1527.13,"{"""": ""22%""}",244252,1,Europe +2024-01-31,59393,2619,"[""Laptop"", ""Charger""]",944.77,"{"""": ""22%""}",62818,0,Africa +2024-07-22,59394,1972,"[""Monitor""]",2382.06,"{""loyalty"": ""20%""}",209931,1,Asia +2023-08-04,59395,5596,"[""Charger"", ""Keyboard"", ""Monitor""]",4374.55,{},207910,1,Asia +2023-12-17,59396,9375,"[""Charger""]",1119.44,{},153250,1,North America +2024-04-07,59397,276,"[""Charger"", ""Keyboard""]",2149.81,"{""loyalty"": ""14%""}",28488,1,Europe +2024-05-11,59398,5213,"[""Headphones"", ""Tablet""]",2364.38,{},161542,1,Asia +2023-10-07,59399,1077,"[""Charger"", ""Headphones"", ""Monitor""]",3714.51,"{"""": ""27%""}",17960,0,Asia +2024-12-09,59400,9374,"[""Charger"", ""Laptop""]",2875.19,"{""loyalty"": ""17%""}",38103,0,South America +2024-01-15,59401,3280,"[""Laptop"", ""Monitor"", ""Headphones""]",4493.16,{},270081,1,South America +2024-03-15,59402,8418,"[""Wireless Mouse""]",3882.68,"{"""": ""11%""}",226745,0,South America +2024-09-18,59403,3156,"[""Phone"", ""Tablet""]",933.67,{},120194,0,Europe +2024-09-01,59404,4751,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2529.21,"{"""": ""8%""}",129308,1,North America +2023-10-27,59405,603,"[""Headphones"", ""Phone""]",4345.81,{},164904,1,Europe +2024-08-21,59406,1068,"[""Tablet"", ""Wireless Mouse""]",3259.76,"{"""": ""18%""}",48442,1,Europe +2024-02-20,59407,4522,"[""Phone"", ""Wireless Mouse""]",4811.21,{},109041,1,South America +2023-03-29,59408,946,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4969.45,"{""promo"": ""14%""}",12092,0,Europe +2023-06-28,59409,7454,"[""Headphones"", ""Laptop"", ""Charger""]",4955.65,{},231429,1,Asia +2023-05-20,59410,1129,"[""Monitor"", ""Laptop""]",3980.22,{},183320,1,Asia +2024-08-19,59411,8981,"[""Wireless Mouse""]",3974.01,{},228372,1,Africa +2024-11-12,59412,3627,"[""Laptop"", ""Tablet"", ""Phone""]",4302.94,{},49262,0,Africa +2024-10-21,59413,7554,"[""Laptop"", ""Tablet"", ""Headphones""]",558.25,"{""seasonal"": ""26%""}",24206,0,Europe +2023-03-27,59414,5702,"[""Keyboard"", ""Laptop""]",466.0,{},198278,0,South America +2023-11-14,59415,775,"[""Headphones""]",3672.1,{},122776,1,North America +2023-05-19,59416,9462,"[""Charger"", ""Wireless Mouse"", ""Phone""]",700.13,"{""loyalty"": ""17%""}",218580,1,South America +2023-12-09,59417,9954,"[""Headphones"", ""Charger"", ""Laptop""]",3888.54,{},130698,1,Europe +2023-12-20,59418,8784,"[""Charger"", ""Monitor""]",3081.01,{},260565,1,North America +2023-04-28,59419,8462,"[""Laptop"", ""Keyboard""]",4084.98,{},96780,1,Asia +2024-04-12,59420,8182,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1640.6,"{""loyalty"": ""27%""}",11863,1,North America +2024-10-30,59421,8152,"[""Monitor"", ""Phone"", ""Laptop""]",2438.5,{},202245,0,Europe +2024-02-27,59422,1665,"[""Monitor"", ""Tablet""]",2832.07,"{""promo"": ""21%""}",262697,0,Africa +2024-08-15,59423,3082,"[""Monitor""]",1767.39,"{""promo"": ""21%""}",23374,1,South America +2023-08-03,59424,7041,"[""Tablet"", ""Wireless Mouse""]",2754.72,"{"""": ""14%""}",130191,1,South America +2024-10-13,59425,3747,"[""Keyboard"", ""Monitor"", ""Tablet""]",1648.36,{},201591,1,Africa +2024-11-27,59426,9244,"[""Headphones"", ""Laptop"", ""Monitor""]",243.48,"{"""": ""19%""}",22781,0,Asia +2024-05-17,59427,5281,"[""Laptop"", ""Tablet""]",4506.72,"{"""": ""21%""}",260186,0,Asia +2023-06-16,59428,9739,"[""Headphones"", ""Monitor""]",3820.42,"{""promo"": ""14%""}",12891,1,South America +2024-05-24,59429,7693,"[""Monitor"", ""Laptop"", ""Headphones""]",400.04,{},265062,0,South America +2023-09-23,59430,1449,"[""Headphones"", ""Tablet""]",3472.87,{},38601,0,North America +2023-05-01,59431,5479,"[""Wireless Mouse"", ""Laptop""]",2196.58,{},159298,1,Asia +2024-08-12,59432,3188,"[""Laptop"", ""Phone""]",2459.89,"{""promo"": ""26%""}",57174,1,Asia +2024-12-28,59433,2409,"[""Tablet"", ""Headphones""]",1735.37,"{"""": ""21%""}",23801,1,Europe +2023-04-15,59434,8657,"[""Monitor"", ""Tablet"", ""Laptop""]",2452.27,"{""promo"": ""29%""}",199212,0,Europe +2024-01-15,59435,1171,"[""Monitor""]",4291.64,"{""promo"": ""19%""}",188736,0,Asia +2024-09-12,59436,9921,"[""Monitor""]",886.94,{},272477,1,North America +2023-08-19,59437,3488,"[""Headphones"", ""Laptop""]",3003.62,"{""loyalty"": ""18%""}",137766,0,South America +2023-05-30,59438,7168,"[""Laptop""]",1703.27,"{""seasonal"": ""8%""}",205786,1,North America +2023-02-16,59439,1878,"[""Phone""]",4984.32,{},139624,1,Europe +2024-01-20,59440,8021,"[""Phone"", ""Charger"", ""Wireless Mouse""]",108.49,{},209344,0,Africa +2024-04-27,59441,6214,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",853.41,{},101495,1,Asia +2024-05-16,59442,1559,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3011.23,{},38939,0,Africa +2024-12-30,59443,7618,"[""Laptop"", ""Tablet""]",4744.88,{},139633,1,Asia +2024-03-07,59444,3151,"[""Laptop"", ""Charger""]",370.47,"{""seasonal"": ""5%""}",197003,0,Europe +2024-05-09,59445,3048,"[""Phone"", ""Headphones""]",4168.93,"{"""": ""27%""}",11893,1,North America +2024-10-01,59446,6214,"[""Tablet""]",1954.7,{},298091,0,Asia +2024-03-06,59447,9754,"[""Monitor"", ""Headphones""]",891.56,{},252971,0,Asia +2024-11-28,59448,2945,"[""Keyboard"", ""Tablet""]",251.91,"{"""": ""11%""}",66960,0,North America +2023-03-31,59449,4245,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4371.22,{},299338,0,Asia +2023-09-12,59450,367,"[""Headphones"", ""Keyboard""]",1847.08,"{""promo"": ""20%""}",139334,1,Asia +2023-11-07,59451,5092,"[""Tablet"", ""Wireless Mouse""]",1211.05,"{""seasonal"": ""16%""}",100361,1,Africa +2024-08-03,59452,9502,"[""Monitor""]",1133.28,"{""seasonal"": ""24%""}",149099,0,Africa +2024-03-09,59453,1855,"[""Laptop"", ""Tablet""]",844.05,"{""seasonal"": ""28%""}",134417,0,Europe +2023-09-30,59454,543,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",380.21,{},143446,1,Asia +2024-04-24,59455,1144,"[""Laptop"", ""Charger""]",3402.27,{},208337,0,Africa +2024-06-20,59456,2640,"[""Keyboard""]",3514.07,{},106796,0,Europe +2024-10-28,59457,8142,"[""Phone"", ""Tablet""]",220.89,{},54095,1,Asia +2024-07-21,59458,9157,"[""Keyboard""]",1562.45,{},37436,1,North America +2023-03-24,59459,8378,"[""Charger"", ""Keyboard"", ""Phone""]",1054.15,{},104195,0,Asia +2024-12-28,59460,6470,"[""Phone"", ""Tablet""]",4498.38,"{"""": ""28%""}",120581,1,Africa +2023-10-12,59461,8333,"[""Laptop"", ""Charger"", ""Headphones""]",3474.87,{},235383,0,South America +2023-01-02,59462,7502,"[""Headphones"", ""Tablet""]",1014.52,"{"""": ""18%""}",164900,1,North America +2023-10-24,59463,2304,"[""Charger""]",4039.91,{},201600,1,South America +2024-02-05,59464,2719,"[""Charger"", ""Tablet"", ""Headphones""]",2546.7,{},154734,0,Europe +2024-01-07,59465,5621,"[""Phone"", ""Keyboard""]",2173.53,{},266073,1,Asia +2024-05-20,59466,7669,"[""Headphones"", ""Tablet""]",645.48,{},174034,1,Asia +2024-01-24,59467,6071,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3930.57,"{"""": ""19%""}",197686,1,North America +2023-12-12,59468,5154,"[""Keyboard"", ""Wireless Mouse""]",3121.88,"{""promo"": ""5%""}",79073,0,North America +2024-12-03,59469,8724,"[""Tablet"", ""Headphones"", ""Keyboard""]",4684.35,{},135586,0,Asia +2024-09-12,59470,5598,"[""Monitor""]",2282.19,{},33361,0,Africa +2024-09-17,59471,7221,"[""Wireless Mouse""]",2878.75,{},22083,1,South America +2023-09-18,59472,4645,"[""Phone"", ""Tablet""]",585.28,"{""seasonal"": ""18%""}",208661,0,North America +2023-05-09,59473,2390,"[""Keyboard"", ""Wireless Mouse""]",579.74,{},19555,1,North America +2023-06-30,59474,1841,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",270.59,"{"""": ""27%""}",265653,0,Europe +2023-03-06,59475,2051,"[""Charger""]",3304.63,"{""loyalty"": ""26%""}",98494,1,North America +2023-06-21,59476,1454,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2159.23,"{""promo"": ""6%""}",98318,1,North America +2024-11-02,59477,3415,"[""Keyboard""]",4693.29,{},296132,0,Asia +2023-04-22,59478,4572,"[""Tablet"", ""Laptop"", ""Charger""]",4720.97,"{"""": ""6%""}",164020,0,South America +2023-09-06,59479,264,"[""Wireless Mouse"", ""Laptop""]",124.08,"{""promo"": ""5%""}",269922,0,Africa +2023-03-14,59480,682,"[""Wireless Mouse"", ""Charger""]",2815.35,{},61526,0,South America +2023-03-09,59481,4931,"[""Charger""]",3360.8,{},195916,1,Africa +2023-10-10,59482,1499,"[""Phone""]",857.91,{},7317,1,Asia +2023-05-30,59483,3695,"[""Charger"", ""Laptop"", ""Monitor""]",1879.93,"{"""": ""9%""}",153448,0,Africa +2024-04-05,59484,1179,"[""Keyboard""]",3308.13,"{"""": ""11%""}",60182,0,Europe +2024-04-12,59485,3534,"[""Charger""]",4999.84,{},84860,0,South America +2023-08-14,59486,1305,"[""Phone"", ""Headphones"", ""Monitor""]",3114.5,{},241900,0,South America +2024-02-18,59487,7075,"[""Tablet"", ""Monitor"", ""Charger""]",3490.45,"{""seasonal"": ""12%""}",103510,0,North America +2023-03-30,59488,4833,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3101.12,{},169414,0,Africa +2024-09-14,59489,2468,"[""Charger""]",4351.75,{},173217,1,Europe +2023-04-02,59490,7281,"[""Phone"", ""Keyboard"", ""Headphones""]",3043.95,{},224411,0,Europe +2023-12-24,59491,1876,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4142.36,{},153477,0,North America +2024-10-21,59492,2723,"[""Keyboard"", ""Laptop""]",3845.74,{},244680,0,North America +2023-01-31,59493,7629,"[""Tablet"", ""Phone""]",3164.3,{},188633,1,Africa +2024-07-25,59494,351,"[""Keyboard"", ""Wireless Mouse""]",967.7,{},23320,0,North America +2024-07-02,59495,6031,"[""Laptop""]",1505.19,"{"""": ""18%""}",109147,1,Africa +2024-05-29,59496,5190,"[""Monitor""]",448.6,"{""seasonal"": ""6%""}",104681,0,North America +2023-01-05,59497,1786,"[""Headphones""]",2619.55,{},234175,0,North America +2023-05-01,59498,9646,"[""Monitor""]",362.18,{},239095,1,Europe +2024-07-29,59499,9377,"[""Charger"", ""Wireless Mouse""]",2887.69,{},13336,0,North America +2023-08-19,59500,5964,"[""Headphones"", ""Charger""]",1245.67,{},63516,1,North America +2024-07-19,59501,8610,"[""Charger"", ""Wireless Mouse""]",927.3,"{""seasonal"": ""12%""}",181660,0,Europe +2023-05-13,59502,4903,"[""Monitor"", ""Keyboard"", ""Tablet""]",4549.65,{},237782,0,North America +2023-05-28,59503,7288,"[""Tablet"", ""Wireless Mouse""]",3608.38,{},101530,0,North America +2023-04-10,59504,3924,"[""Headphones""]",894.43,{},27179,0,Asia +2024-01-20,59505,2310,"[""Keyboard"", ""Laptop""]",4336.54,"{"""": ""6%""}",117800,0,Asia +2024-04-28,59506,978,"[""Headphones""]",1877.46,{},137084,0,South America +2024-12-30,59507,7671,"[""Laptop"", ""Tablet""]",1655.46,"{""loyalty"": ""9%""}",223592,1,Africa +2024-02-08,59508,7500,"[""Monitor"", ""Phone"", ""Headphones""]",3867.55,{},233675,1,Africa +2024-10-26,59509,4088,"[""Keyboard"", ""Tablet"", ""Headphones""]",4608.04,"{""seasonal"": ""10%""}",281017,0,Asia +2024-04-16,59510,9886,"[""Charger""]",4900.96,{},240221,1,South America +2024-03-21,59511,8581,"[""Monitor"", ""Keyboard""]",4242.12,"{""loyalty"": ""26%""}",271128,0,South America +2024-11-05,59512,2773,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",640.31,"{""promo"": ""18%""}",106674,1,South America +2024-06-25,59513,2787,"[""Laptop"", ""Headphones""]",1104.92,{},94136,0,Europe +2023-07-09,59514,2874,"[""Keyboard""]",2545.76,"{""seasonal"": ""23%""}",225641,0,Africa +2024-06-17,59515,6771,"[""Headphones""]",1000.8,"{""seasonal"": ""26%""}",237884,0,Europe +2024-07-21,59516,9438,"[""Monitor"", ""Laptop""]",4699.23,"{""promo"": ""12%""}",285194,0,North America +2024-07-22,59517,2005,"[""Charger"", ""Tablet"", ""Keyboard""]",3553.37,"{""seasonal"": ""25%""}",127216,1,Europe +2023-09-12,59518,465,"[""Keyboard"", ""Laptop"", ""Monitor""]",1236.82,"{"""": ""23%""}",276798,1,South America +2023-12-24,59519,2943,"[""Phone"", ""Charger""]",2983.99,"{""seasonal"": ""30%""}",2888,1,Asia +2023-03-18,59520,9426,"[""Headphones"", ""Monitor"", ""Tablet""]",1240.4,"{""loyalty"": ""25%""}",6580,0,Asia +2023-09-03,59521,8222,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",485.91,{},138153,1,Europe +2024-06-15,59522,297,"[""Charger""]",4690.15,"{""promo"": ""14%""}",7586,1,Africa +2023-12-08,59523,4155,"[""Monitor"", ""Laptop""]",4404.68,{},103809,1,Asia +2024-05-05,59524,469,"[""Phone"", ""Keyboard"", ""Monitor""]",834.24,"{""seasonal"": ""26%""}",204028,0,South America +2024-02-03,59525,3050,"[""Keyboard""]",3397.45,"{""seasonal"": ""29%""}",81403,0,South America +2023-11-16,59526,3211,"[""Headphones""]",2388.14,"{""promo"": ""10%""}",140809,1,Africa +2023-10-01,59527,7990,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4996.94,"{""promo"": ""26%""}",281402,0,Europe +2024-04-05,59528,9285,"[""Headphones"", ""Charger"", ""Keyboard""]",4440.39,"{""loyalty"": ""18%""}",261530,1,South America +2023-06-28,59529,3288,"[""Laptop""]",955.42,{},202520,1,South America +2023-12-21,59530,7399,"[""Monitor""]",2547.92,"{""promo"": ""27%""}",14990,1,Europe +2024-03-08,59531,2948,"[""Laptop"", ""Keyboard"", ""Phone""]",1301.53,"{""promo"": ""18%""}",160252,0,Africa +2024-06-19,59532,5674,"[""Laptop"", ""Phone""]",4135.71,"{""seasonal"": ""22%""}",198842,0,North America +2024-01-08,59533,9357,"[""Charger""]",4433.22,"{""promo"": ""30%""}",267595,0,North America +2024-08-08,59534,5469,"[""Charger""]",1007.24,"{""seasonal"": ""7%""}",172419,1,Asia +2023-12-02,59535,5531,"[""Laptop"", ""Charger"", ""Monitor""]",3717.82,"{""promo"": ""28%""}",244120,1,Africa +2023-04-18,59536,6641,"[""Monitor"", ""Keyboard""]",2435.06,"{""promo"": ""13%""}",57375,0,Africa +2023-09-23,59537,3640,"[""Monitor"", ""Tablet"", ""Phone""]",3149.58,{},288750,1,North America +2024-01-26,59538,7165,"[""Charger""]",1825.97,{},50251,1,Europe +2024-12-04,59539,4913,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2568.93,{},176947,1,Africa +2024-01-15,59540,8833,"[""Charger"", ""Keyboard""]",2306.48,"{""promo"": ""8%""}",234274,0,Asia +2024-11-06,59541,1339,"[""Wireless Mouse""]",1105.97,"{""loyalty"": ""29%""}",145662,1,Africa +2024-05-03,59542,2263,"[""Headphones"", ""Tablet""]",2179.2,{},60458,0,Europe +2024-07-16,59543,531,"[""Phone"", ""Monitor"", ""Charger""]",3218.3,"{""promo"": ""9%""}",209398,1,Asia +2023-12-03,59544,6251,"[""Laptop""]",2889.64,{},37501,0,Africa +2024-11-12,59545,7291,"[""Wireless Mouse""]",287.48,{},31930,1,Europe +2024-06-22,59546,648,"[""Monitor""]",2729.91,{},169645,1,Asia +2024-09-12,59547,6415,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3707.43,"{""promo"": ""18%""}",102830,1,Africa +2023-06-13,59548,6213,"[""Laptop""]",2452.18,"{""promo"": ""27%""}",60699,1,Europe +2023-12-30,59549,7917,"[""Keyboard""]",1957.83,{},132651,1,North America +2024-05-12,59550,5928,"[""Wireless Mouse"", ""Phone""]",224.91,{},87093,0,Europe +2024-08-28,59551,7898,"[""Headphones"", ""Tablet""]",1500.24,{},292246,1,Asia +2023-04-30,59552,699,"[""Phone""]",2336.18,{},146390,1,Africa +2023-04-15,59553,3144,"[""Headphones"", ""Charger""]",3872.3,{},257472,0,Asia +2024-05-30,59554,1690,"[""Monitor"", ""Headphones""]",4199.63,{},123736,1,Asia +2023-08-06,59555,6696,"[""Tablet"", ""Monitor""]",4574.98,"{""loyalty"": ""15%""}",290250,0,Europe +2023-08-20,59556,9193,"[""Headphones"", ""Tablet"", ""Keyboard""]",4366.78,{},50738,1,Europe +2023-03-02,59557,7901,"[""Monitor""]",237.63,"{""loyalty"": ""28%""}",291906,0,North America +2023-05-29,59558,7685,"[""Laptop""]",1507.92,{},195840,1,Europe +2023-11-26,59559,3194,"[""Wireless Mouse"", ""Charger""]",3927.21,"{""promo"": ""7%""}",30936,1,North America +2024-02-05,59560,6797,"[""Laptop"", ""Charger""]",2215.32,"{""seasonal"": ""26%""}",205218,0,Africa +2023-09-02,59561,7527,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4905.17,"{""promo"": ""24%""}",23804,1,Europe +2023-05-31,59562,7266,"[""Monitor""]",294.8,"{""seasonal"": ""12%""}",44974,0,Asia +2024-04-14,59563,109,"[""Charger"", ""Wireless Mouse""]",3122.03,{},106172,0,Europe +2023-06-05,59564,919,"[""Keyboard"", ""Laptop"", ""Headphones""]",4454.38,"{""promo"": ""18%""}",18488,0,Asia +2024-12-17,59565,6803,"[""Phone"", ""Laptop"", ""Tablet""]",1492.89,"{""loyalty"": ""16%""}",183515,1,Africa +2023-11-22,59566,2138,"[""Headphones"", ""Laptop""]",2657.06,"{"""": ""12%""}",77722,0,North America +2023-06-24,59567,5047,"[""Monitor"", ""Phone""]",3589.48,{},172817,0,South America +2023-02-11,59568,8402,"[""Charger""]",4941.83,{},191668,1,Europe +2023-03-05,59569,9444,"[""Headphones""]",4207.93,"{""promo"": ""20%""}",245604,1,North America +2024-05-18,59570,79,"[""Phone"", ""Tablet""]",3870.32,{},188778,0,South America +2024-01-08,59571,3813,"[""Monitor""]",1934.42,{},221734,0,Europe +2024-01-14,59572,4697,"[""Tablet"", ""Laptop""]",2154.62,"{"""": ""21%""}",102586,1,North America +2024-08-24,59573,8773,"[""Keyboard"", ""Wireless Mouse""]",1262.56,{},136746,0,South America +2023-11-03,59574,4519,"[""Wireless Mouse""]",2975.68,"{""loyalty"": ""15%""}",193572,0,North America +2024-03-29,59575,1591,"[""Headphones"", ""Monitor"", ""Laptop""]",3574.28,{},274616,1,North America +2024-09-28,59576,697,"[""Phone""]",4377.95,"{""promo"": ""18%""}",245765,0,Asia +2023-11-05,59577,8525,"[""Monitor"", ""Keyboard""]",230.24,{},205195,0,Asia +2023-01-25,59578,2526,"[""Phone"", ""Tablet"", ""Monitor""]",2122.19,{},46764,0,Europe +2023-06-17,59579,602,"[""Tablet"", ""Phone"", ""Headphones""]",3208.62,"{""promo"": ""17%""}",34611,0,South America +2024-11-17,59580,7085,"[""Monitor""]",1869.73,"{"""": ""7%""}",98488,1,South America +2023-03-24,59581,123,"[""Phone"", ""Laptop""]",4690.17,{},255534,1,North America +2024-09-06,59582,6871,"[""Tablet""]",3943.91,"{"""": ""20%""}",177497,1,South America +2023-03-06,59583,6372,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4394.63,"{""seasonal"": ""12%""}",241654,0,North America +2024-12-25,59584,5976,"[""Tablet""]",618.53,{},45105,1,Africa +2023-09-05,59585,2191,"[""Tablet""]",129.4,"{"""": ""22%""}",86433,0,Europe +2023-07-31,59586,4340,"[""Tablet"", ""Laptop""]",4837.66,"{""loyalty"": ""7%""}",177956,1,South America +2024-12-01,59587,2852,"[""Monitor""]",1579.52,{},234337,1,Africa +2024-07-16,59588,8831,"[""Laptop""]",1622.44,"{"""": ""20%""}",258223,0,Asia +2023-01-24,59589,3984,"[""Monitor"", ""Laptop""]",1974.83,{},298824,0,North America +2024-12-04,59590,7440,"[""Keyboard"", ""Headphones"", ""Charger""]",4061.47,{},201915,0,Africa +2023-05-05,59591,7136,"[""Charger"", ""Keyboard""]",603.8,"{""promo"": ""5%""}",89312,0,Africa +2023-02-27,59592,9171,"[""Headphones"", ""Phone""]",408.71,"{""loyalty"": ""20%""}",135818,0,South America +2024-09-11,59593,1529,"[""Charger"", ""Keyboard""]",902.37,{},295634,0,Africa +2023-05-12,59594,860,"[""Headphones""]",4413.84,"{"""": ""30%""}",142201,0,Africa +2024-04-05,59595,2893,"[""Laptop"", ""Phone"", ""Tablet""]",4609.38,"{""seasonal"": ""16%""}",74104,1,South America +2023-04-30,59596,3704,"[""Headphones""]",707.61,{},133492,1,Europe +2023-05-06,59597,8796,"[""Charger"", ""Monitor""]",1218.14,{},228297,0,Africa +2023-01-02,59598,6250,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1928.38,{},214933,1,Asia +2023-04-18,59599,8737,"[""Phone""]",4699.91,{},139535,1,South America +2024-11-19,59600,7556,"[""Charger"", ""Keyboard""]",3136.43,"{"""": ""9%""}",289154,1,North America +2023-07-19,59601,8068,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2571.28,{},290365,0,Asia +2024-08-06,59602,5293,"[""Charger""]",4997.28,{},85651,1,Africa +2024-11-30,59603,6246,"[""Tablet"", ""Charger"", ""Monitor""]",1771.25,"{"""": ""12%""}",289876,0,Africa +2023-08-04,59604,4008,"[""Laptop"", ""Charger"", ""Phone""]",1274.99,{},4361,1,Europe +2023-07-20,59605,9532,"[""Phone"", ""Keyboard"", ""Tablet""]",3365.85,{},282871,1,Europe +2023-08-05,59606,9828,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3997.21,{},88242,1,Europe +2024-04-08,59607,4024,"[""Phone""]",3977.58,"{""loyalty"": ""9%""}",110023,0,Africa +2023-06-29,59608,1966,"[""Laptop""]",958.61,{},246384,1,Africa +2024-01-23,59609,8971,"[""Tablet"", ""Headphones""]",2497.88,"{""promo"": ""8%""}",86228,0,Asia +2024-01-21,59610,1070,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1542.11,"{""seasonal"": ""12%""}",76576,1,North America +2023-04-16,59611,5624,"[""Headphones""]",2159.78,{},257812,0,Asia +2024-01-06,59612,5102,"[""Monitor"", ""Phone""]",4057.89,"{""loyalty"": ""17%""}",27894,0,South America +2023-02-08,59613,7298,"[""Monitor""]",1713.6,{},223253,1,North America +2023-04-07,59614,4237,"[""Charger"", ""Phone""]",2027.94,{},165135,1,Asia +2024-02-13,59615,4066,"[""Wireless Mouse""]",3465.98,"{"""": ""25%""}",88302,1,Africa +2024-01-18,59616,7465,"[""Wireless Mouse""]",453.06,{},82955,1,Africa +2023-01-25,59617,1339,"[""Tablet""]",1235.97,"{""seasonal"": ""25%""}",158169,0,Europe +2023-12-20,59618,1688,"[""Wireless Mouse"", ""Charger""]",913.39,{},160853,0,North America +2024-05-24,59619,6377,"[""Monitor"", ""Keyboard"", ""Headphones""]",2020.09,{},18275,0,Asia +2023-06-21,59620,9562,"[""Tablet"", ""Phone""]",4248.06,"{"""": ""26%""}",134202,0,Africa +2024-02-18,59621,7570,"[""Tablet"", ""Monitor""]",4264.39,{},44182,1,South America +2023-02-01,59622,6573,"[""Tablet"", ""Charger"", ""Monitor""]",2875.87,{},279475,0,North America +2024-04-04,59623,6685,"[""Monitor"", ""Laptop"", ""Keyboard""]",4623.47,{},273695,1,North America +2023-03-07,59624,5071,"[""Phone""]",589.54,{},170494,0,North America +2024-07-18,59625,4022,"[""Headphones"", ""Monitor"", ""Charger""]",1780.64,"{""loyalty"": ""12%""}",162594,0,Africa +2024-12-10,59626,1663,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3310.82,{},183020,0,Africa +2024-04-06,59627,5440,"[""Phone"", ""Keyboard""]",3264.85,"{""loyalty"": ""27%""}",176488,1,Africa +2024-05-21,59628,5646,"[""Charger"", ""Laptop"", ""Phone""]",482.06,"{""loyalty"": ""30%""}",37655,1,Africa +2024-08-14,59629,394,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",497.19,"{""loyalty"": ""25%""}",298861,1,South America +2024-06-26,59630,710,"[""Monitor"", ""Tablet""]",4645.81,{},137946,1,Europe +2024-02-28,59631,2337,"[""Keyboard""]",4102.74,{},84218,1,Europe +2023-07-27,59632,9773,"[""Monitor"", ""Tablet"", ""Phone""]",4419.16,{},140457,1,Europe +2023-08-19,59633,2350,"[""Monitor"", ""Headphones""]",2166.95,"{""promo"": ""27%""}",221650,0,North America +2023-02-21,59634,4375,"[""Monitor"", ""Headphones""]",1634.63,"{"""": ""9%""}",52338,1,South America +2024-08-04,59635,2734,"[""Headphones"", ""Phone""]",1533.3,"{""seasonal"": ""29%""}",94126,0,Africa +2024-11-05,59636,1994,"[""Tablet"", ""Monitor"", ""Laptop""]",1035.64,{},95328,1,North America +2024-08-06,59637,5110,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1601.75,{},274053,1,Europe +2023-11-03,59638,3931,"[""Headphones"", ""Keyboard""]",2831.79,"{""seasonal"": ""16%""}",85544,1,North America +2024-07-16,59639,3922,"[""Headphones""]",1192.17,{},250351,1,North America +2024-11-27,59640,9113,"[""Tablet"", ""Monitor""]",4341.52,"{""promo"": ""18%""}",23105,0,Europe +2024-09-29,59641,8301,"[""Keyboard""]",1900.13,{},243699,0,South America +2023-02-11,59642,6317,"[""Keyboard"", ""Headphones""]",4859.43,"{""promo"": ""21%""}",68911,0,South America +2023-01-31,59643,7119,"[""Wireless Mouse""]",2576.26,"{""promo"": ""15%""}",231010,1,Europe +2023-07-07,59644,1879,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2516.06,"{""promo"": ""17%""}",193975,1,South America +2023-07-04,59645,1347,"[""Monitor"", ""Keyboard""]",2062.84,{},111673,1,Asia +2024-03-08,59646,4226,"[""Keyboard""]",3569.84,{},283649,1,North America +2023-02-18,59647,386,"[""Phone""]",2955.3,"{""loyalty"": ""11%""}",64198,0,Africa +2024-12-15,59648,3485,"[""Phone""]",2097.37,"{"""": ""5%""}",174614,0,Asia +2023-10-26,59649,2223,"[""Tablet""]",1738.58,"{"""": ""19%""}",105882,1,Europe +2024-03-21,59650,7645,"[""Laptop"", ""Keyboard"", ""Tablet""]",4790.3,{},284481,1,Asia +2023-02-22,59651,11,"[""Tablet"", ""Charger""]",300.12,{},208968,0,Africa +2023-02-20,59652,5581,"[""Laptop"", ""Headphones"", ""Monitor""]",1266.68,{},220912,0,Africa +2024-03-29,59653,1920,"[""Headphones""]",4440.99,{},244078,0,South America +2024-03-17,59654,1026,"[""Keyboard"", ""Headphones"", ""Laptop""]",3057.6,"{""seasonal"": ""10%""}",178388,0,North America +2023-12-12,59655,2664,"[""Monitor""]",2219.64,{},91591,0,South America +2023-06-16,59656,5932,"[""Laptop"", ""Monitor""]",599.9,"{""seasonal"": ""15%""}",254555,0,Europe +2024-03-06,59657,8621,"[""Laptop""]",1726.95,{},214721,0,Asia +2024-05-12,59658,7047,"[""Headphones"", ""Keyboard""]",3512.36,{},94136,1,Europe +2023-08-25,59659,666,"[""Phone""]",3089.1,"{""promo"": ""11%""}",4057,0,North America +2024-10-27,59660,4423,"[""Phone""]",4375.63,{},131260,1,Europe +2024-09-26,59661,3714,"[""Wireless Mouse"", ""Headphones""]",149.29,"{""seasonal"": ""27%""}",281087,0,Africa +2024-05-15,59662,6320,"[""Wireless Mouse""]",2867.22,{},107786,1,Asia +2023-01-27,59663,6687,"[""Phone"", ""Headphones"", ""Keyboard""]",2712.64,"{"""": ""10%""}",64302,0,Africa +2023-08-08,59664,4889,"[""Headphones"", ""Keyboard""]",336.94,"{""seasonal"": ""24%""}",211719,1,North America +2023-02-17,59665,4558,"[""Tablet"", ""Charger"", ""Monitor""]",2546.75,"{""loyalty"": ""26%""}",111889,0,Africa +2023-04-25,59666,7586,"[""Wireless Mouse"", ""Monitor""]",2894.12,"{""seasonal"": ""13%""}",242499,0,Africa +2024-05-04,59667,4957,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1985.27,{},296872,1,Asia +2023-02-15,59668,2702,"[""Tablet"", ""Headphones""]",4640.48,{},19536,0,Asia +2024-02-08,59669,7627,"[""Charger"", ""Headphones""]",2294.58,{},282465,0,Europe +2023-01-13,59670,9346,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2443.05,"{""promo"": ""20%""}",235122,0,South America +2024-09-17,59671,3044,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4494.06,"{""seasonal"": ""21%""}",43927,1,Europe +2023-09-06,59672,4467,"[""Charger"", ""Monitor""]",3004.0,"{"""": ""29%""}",33769,1,Africa +2023-03-09,59673,9794,"[""Keyboard"", ""Headphones"", ""Tablet""]",2916.19,"{""promo"": ""20%""}",90002,1,North America +2024-03-27,59674,2436,"[""Laptop"", ""Headphones"", ""Keyboard""]",3777.44,{},219214,0,North America +2023-11-28,59675,9084,"[""Wireless Mouse""]",2454.38,"{"""": ""13%""}",159201,1,South America +2023-11-10,59676,1278,"[""Tablet""]",3382.39,"{""promo"": ""21%""}",155132,0,South America +2023-11-14,59677,2518,"[""Headphones""]",4778.16,{},43478,1,Asia +2024-08-19,59678,1345,"[""Headphones""]",2498.79,"{""seasonal"": ""17%""}",135105,1,South America +2024-07-07,59679,312,"[""Charger"", ""Tablet""]",2329.13,"{""promo"": ""25%""}",34802,0,North America +2024-10-26,59680,5754,"[""Phone"", ""Monitor""]",3694.46,"{"""": ""24%""}",231831,0,Africa +2024-08-23,59681,6295,"[""Tablet"", ""Keyboard"", ""Charger""]",4297.93,{},225526,1,Asia +2024-07-20,59682,7815,"[""Headphones"", ""Charger"", ""Laptop""]",4943.99,"{"""": ""13%""}",293080,1,Europe +2023-07-15,59683,3280,"[""Laptop"", ""Tablet"", ""Phone""]",2205.22,{},71544,0,Africa +2024-05-11,59684,7774,"[""Monitor""]",4236.96,{},53335,0,South America +2023-09-26,59685,8308,"[""Laptop""]",4649.73,{},257159,1,Africa +2024-05-01,59686,5007,"[""Tablet"", ""Phone""]",3198.07,{},101016,1,South America +2023-11-11,59687,6166,"[""Wireless Mouse"", ""Keyboard""]",1637.87,{},226893,0,South America +2024-04-05,59688,8163,"[""Tablet"", ""Monitor""]",3820.0,"{""promo"": ""25%""}",25444,0,Europe +2024-06-25,59689,8905,"[""Laptop"", ""Keyboard"", ""Charger""]",2063.04,"{"""": ""8%""}",275454,1,North America +2023-04-02,59690,7210,"[""Headphones""]",808.94,{},242841,0,Asia +2024-10-25,59691,4834,"[""Charger"", ""Tablet"", ""Monitor""]",2253.39,{},185364,0,South America +2024-08-15,59692,4763,"[""Headphones"", ""Laptop""]",2682.46,{},163298,0,North America +2023-06-14,59693,3735,"[""Phone""]",1049.83,"{""promo"": ""21%""}",50033,0,Asia +2024-08-22,59694,5999,"[""Charger""]",330.52,{},140172,1,North America +2024-05-05,59695,2671,"[""Tablet""]",3047.33,"{""promo"": ""19%""}",94999,1,Asia +2024-12-16,59696,1496,"[""Keyboard""]",1062.05,{},164063,0,Europe +2023-03-27,59697,4624,"[""Monitor""]",2229.33,{},62782,0,Africa +2024-04-19,59698,9297,"[""Charger"", ""Monitor"", ""Phone""]",2779.91,{},205250,1,Africa +2024-04-01,59699,8490,"[""Wireless Mouse""]",1652.12,"{"""": ""23%""}",119816,1,North America +2024-03-29,59700,3609,"[""Laptop"", ""Headphones""]",949.05,"{""promo"": ""29%""}",96975,1,South America +2023-04-17,59701,3032,"[""Charger""]",2463.87,"{""promo"": ""25%""}",247808,1,Africa +2023-09-19,59702,1103,"[""Phone"", ""Laptop"", ""Headphones""]",1316.26,{},65199,1,North America +2024-02-10,59703,2594,"[""Tablet""]",3070.66,"{""promo"": ""29%""}",274135,0,Asia +2023-12-19,59704,7357,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1226.77,{},266353,0,Africa +2024-05-13,59705,7562,"[""Phone"", ""Laptop""]",1821.98,{},72665,1,North America +2023-03-05,59706,9532,"[""Monitor"", ""Tablet""]",1263.57,"{""seasonal"": ""23%""}",84636,0,Africa +2024-02-05,59707,6488,"[""Keyboard"", ""Headphones""]",1417.2,"{""seasonal"": ""28%""}",40602,0,Asia +2024-11-24,59708,8088,"[""Tablet"", ""Monitor""]",2060.8,"{"""": ""26%""}",36697,0,Africa +2024-01-21,59709,3593,"[""Laptop"", ""Monitor""]",2570.0,"{"""": ""6%""}",215668,1,Africa +2024-03-21,59710,1166,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3324.64,"{"""": ""14%""}",56205,1,Europe +2023-10-05,59711,4952,"[""Tablet""]",857.38,"{"""": ""8%""}",267903,0,Asia +2024-10-28,59712,4886,"[""Laptop""]",82.75,{},24816,0,Africa +2023-02-15,59713,5468,"[""Tablet"", ""Laptop""]",1986.27,{},56522,1,Asia +2024-05-08,59714,4018,"[""Keyboard"", ""Laptop"", ""Charger""]",1034.27,"{""loyalty"": ""25%""}",71583,1,South America +2024-01-26,59715,9395,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4372.25,"{""seasonal"": ""14%""}",24947,1,Asia +2023-07-07,59716,9583,"[""Charger"", ""Headphones"", ""Keyboard""]",3350.81,{},42651,1,North America +2024-09-27,59717,4683,"[""Phone"", ""Keyboard"", ""Headphones""]",3273.6,{},86125,1,Africa +2024-03-08,59718,166,"[""Phone"", ""Laptop""]",2948.27,"{""promo"": ""22%""}",110371,0,Europe +2024-05-12,59719,8332,"[""Laptop""]",3990.33,"{"""": ""15%""}",53426,0,Asia +2024-06-29,59720,8667,"[""Wireless Mouse"", ""Phone""]",4403.19,"{""seasonal"": ""18%""}",131241,1,Africa +2023-10-29,59721,1114,"[""Wireless Mouse"", ""Keyboard""]",853.22,"{""promo"": ""17%""}",121801,1,Africa +2023-11-21,59722,828,"[""Tablet"", ""Headphones""]",554.66,{},226533,1,South America +2024-10-07,59723,9516,"[""Charger"", ""Keyboard""]",2794.44,"{"""": ""22%""}",61672,1,North America +2024-10-01,59724,5578,"[""Monitor"", ""Headphones""]",365.81,"{""seasonal"": ""9%""}",211037,0,Africa +2023-06-10,59725,6904,"[""Wireless Mouse""]",4319.88,"{"""": ""27%""}",135529,0,Asia +2023-08-30,59726,5104,"[""Monitor""]",1643.3,"{""promo"": ""17%""}",259947,0,Asia +2023-05-03,59727,1975,"[""Phone"", ""Headphones"", ""Tablet""]",3838.69,{},162941,0,Asia +2024-01-01,59728,3585,"[""Laptop""]",4986.42,{},254443,1,Europe +2023-07-10,59729,2884,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4924.25,"{""seasonal"": ""10%""}",14044,1,Asia +2023-06-11,59730,2752,"[""Laptop"", ""Phone""]",463.97,"{""seasonal"": ""26%""}",49863,0,Asia +2024-01-14,59731,3926,"[""Tablet""]",4784.4,{},16549,0,Europe +2023-11-25,59732,8295,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3875.68,"{""seasonal"": ""19%""}",257455,0,Europe +2024-06-12,59733,2049,"[""Tablet"", ""Headphones""]",944.75,{},232004,0,South America +2023-02-12,59734,5385,"[""Phone"", ""Tablet""]",863.88,{},201502,1,Africa +2023-03-02,59735,346,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2596.48,{},159863,1,Africa +2024-08-30,59736,5045,"[""Tablet"", ""Wireless Mouse""]",2337.69,"{"""": ""28%""}",143516,1,Africa +2024-11-11,59737,6601,"[""Phone"", ""Monitor""]",2781.7,"{"""": ""14%""}",41760,1,Asia +2023-09-22,59738,319,"[""Laptop"", ""Monitor"", ""Phone""]",3785.55,{},238710,1,Africa +2023-01-13,59739,4876,"[""Tablet"", ""Monitor""]",4724.21,"{""seasonal"": ""23%""}",150328,1,North America +2024-04-26,59740,1642,"[""Tablet"", ""Phone""]",3814.7,"{""seasonal"": ""5%""}",116281,1,South America +2023-12-31,59741,2570,"[""Tablet""]",3017.84,{},55326,1,Africa +2024-04-22,59742,928,"[""Laptop""]",3065.39,"{"""": ""22%""}",138213,0,Asia +2024-03-13,59743,3436,"[""Headphones"", ""Keyboard"", ""Monitor""]",960.56,"{""promo"": ""20%""}",68318,1,Europe +2023-10-08,59744,8716,"[""Phone"", ""Laptop"", ""Keyboard""]",1562.63,{},255207,0,North America +2024-09-07,59745,3362,"[""Wireless Mouse"", ""Charger""]",704.58,{},134607,1,Europe +2024-11-15,59746,2353,"[""Keyboard""]",4180.93,"{"""": ""6%""}",21793,0,Africa +2023-07-19,59747,2098,"[""Tablet"", ""Charger""]",2257.15,"{""loyalty"": ""21%""}",250799,1,South America +2024-09-14,59748,9874,"[""Headphones"", ""Tablet"", ""Charger""]",566.0,"{""loyalty"": ""8%""}",137852,0,Africa +2024-08-15,59749,4160,"[""Phone"", ""Charger""]",2520.44,{},70181,1,Africa +2023-05-04,59750,1233,"[""Tablet"", ""Phone""]",4875.82,"{"""": ""11%""}",293631,1,Europe +2024-04-01,59751,1389,"[""Laptop"", ""Phone"", ""Tablet""]",2989.46,{},276565,1,Asia +2023-10-30,59752,2247,"[""Tablet"", ""Charger"", ""Laptop""]",1756.29,"{""seasonal"": ""25%""}",265913,1,South America +2024-08-13,59753,1766,"[""Tablet"", ""Laptop"", ""Phone""]",189.54,{},272494,1,Asia +2024-09-12,59754,8368,"[""Keyboard"", ""Tablet""]",2160.65,{},202753,0,North America +2024-09-01,59755,7640,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",737.13,"{""loyalty"": ""21%""}",173347,1,North America +2024-04-08,59756,7302,"[""Monitor"", ""Phone""]",4483.04,{},5577,1,Africa +2023-06-30,59757,2982,"[""Phone"", ""Keyboard""]",2323.11,"{""seasonal"": ""7%""}",82934,1,Asia +2024-02-09,59758,6546,"[""Tablet"", ""Laptop"", ""Phone""]",3521.03,"{""seasonal"": ""24%""}",295358,1,Africa +2023-05-22,59759,3622,"[""Tablet"", ""Monitor"", ""Phone""]",3077.64,{},33675,1,Africa +2024-05-23,59760,6345,"[""Charger"", ""Keyboard"", ""Laptop""]",4378.96,"{"""": ""24%""}",211463,0,Europe +2024-01-23,59761,9544,"[""Laptop"", ""Tablet"", ""Keyboard""]",342.39,{},76305,1,South America +2023-10-03,59762,7022,"[""Wireless Mouse"", ""Charger""]",2504.28,"{""loyalty"": ""12%""}",276983,1,South America +2024-03-25,59763,2781,"[""Monitor"", ""Phone"", ""Headphones""]",3593.19,{},268961,0,Asia +2024-03-24,59764,6434,"[""Tablet""]",2115.55,{},216377,1,Africa +2023-08-08,59765,1892,"[""Tablet"", ""Laptop""]",4770.09,{},154445,1,North America +2023-05-05,59766,8917,"[""Phone"", ""Monitor""]",362.39,"{""loyalty"": ""22%""}",203430,1,South America +2024-12-04,59767,6170,"[""Phone"", ""Monitor""]",1466.13,"{""promo"": ""26%""}",186642,1,South America +2024-02-22,59768,4097,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1519.09,{},234358,1,North America +2023-06-15,59769,633,"[""Tablet"", ""Phone"", ""Headphones""]",136.56,"{""loyalty"": ""13%""}",60980,1,Asia +2023-04-04,59770,1907,"[""Monitor"", ""Wireless Mouse""]",4984.96,"{""seasonal"": ""20%""}",217615,1,Asia +2023-01-04,59771,2069,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3040.65,{},259897,1,North America +2023-01-03,59772,6079,"[""Tablet""]",3880.82,{},291098,1,North America +2023-10-14,59773,558,"[""Headphones"", ""Keyboard"", ""Phone""]",2975.81,{},295078,1,North America +2024-08-02,59774,2832,"[""Laptop"", ""Charger"", ""Headphones""]",4396.91,"{""promo"": ""29%""}",177320,0,North America +2023-05-30,59775,3111,"[""Headphones""]",1336.87,{},145124,0,South America +2023-05-28,59776,1081,"[""Monitor"", ""Headphones"", ""Keyboard""]",1936.42,{},160325,0,Africa +2024-09-03,59777,3907,"[""Charger""]",3772.46,{},63808,0,Asia +2023-02-20,59778,5171,"[""Monitor""]",4447.85,"{""loyalty"": ""11%""}",96919,0,Africa +2024-07-19,59779,2204,"[""Monitor"", ""Laptop"", ""Tablet""]",1337.22,{},16693,1,Africa +2024-01-14,59780,592,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2427.02,"{""seasonal"": ""6%""}",187433,1,North America +2024-06-06,59781,121,"[""Tablet"", ""Charger""]",4825.21,{},275627,1,Asia +2023-05-28,59782,2100,"[""Tablet"", ""Phone""]",3230.61,"{""seasonal"": ""7%""}",179919,1,Africa +2023-08-09,59783,9053,"[""Wireless Mouse""]",4011.33,{},236330,1,South America +2023-12-22,59784,8248,"[""Keyboard"", ""Charger"", ""Phone""]",762.63,{},223220,1,Africa +2023-08-15,59785,5825,"[""Tablet"", ""Phone""]",4065.78,"{""loyalty"": ""12%""}",191274,0,Europe +2023-07-29,59786,7065,"[""Charger"", ""Headphones"", ""Phone""]",3667.56,"{""seasonal"": ""30%""}",49296,1,North America +2023-11-07,59787,3460,"[""Phone""]",4297.58,"{""promo"": ""16%""}",97476,0,Africa +2024-11-20,59788,8011,"[""Charger"", ""Keyboard""]",3452.97,{},106610,1,North America +2023-04-04,59789,296,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",686.25,{},278100,1,South America +2024-03-11,59790,1232,"[""Charger"", ""Tablet""]",4821.87,"{""loyalty"": ""26%""}",16737,0,Asia +2023-09-01,59791,9696,"[""Wireless Mouse""]",2724.08,{},122884,0,Asia +2024-03-07,59792,5091,"[""Laptop"", ""Keyboard""]",3038.14,"{""promo"": ""24%""}",228137,0,North America +2024-10-15,59793,9490,"[""Tablet""]",2415.43,{},89442,0,Africa +2024-08-02,59794,5308,"[""Laptop""]",994.88,{},140348,0,Africa +2024-09-22,59795,599,"[""Wireless Mouse"", ""Phone""]",3570.59,"{"""": ""10%""}",107753,1,Asia +2023-10-18,59796,1940,"[""Headphones"", ""Monitor"", ""Phone""]",4243.24,{},169589,1,Africa +2023-11-05,59797,6047,"[""Monitor""]",2818.46,"{"""": ""21%""}",211613,1,Europe +2023-02-12,59798,3621,"[""Phone""]",3756.81,"{""seasonal"": ""9%""}",280183,0,Europe +2024-03-10,59799,8746,"[""Headphones"", ""Keyboard""]",2592.76,"{""promo"": ""9%""}",65001,0,South America +2024-10-04,59800,1277,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2572.57,"{""loyalty"": ""22%""}",68536,1,North America +2023-02-15,59801,9201,"[""Phone""]",96.45,{},278326,1,Africa +2024-03-07,59802,5230,"[""Phone""]",2358.96,"{""loyalty"": ""14%""}",288225,0,Africa +2023-09-05,59803,8619,"[""Charger"", ""Tablet""]",4020.49,"{""seasonal"": ""5%""}",200855,1,North America +2024-08-20,59804,8892,"[""Keyboard"", ""Headphones"", ""Laptop""]",564.09,"{""seasonal"": ""24%""}",168362,1,Asia +2024-05-19,59805,9087,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2418.53,{},174411,0,South America +2023-05-17,59806,3299,"[""Laptop"", ""Phone"", ""Monitor""]",4033.14,"{"""": ""19%""}",187816,0,Africa +2023-08-27,59807,1734,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4924.84,"{""seasonal"": ""26%""}",101222,1,Africa +2024-02-22,59808,1569,"[""Laptop"", ""Wireless Mouse""]",1498.79,{},293569,1,North America +2024-04-23,59809,4489,"[""Tablet""]",4149.17,{},80513,1,Europe +2024-03-20,59810,3371,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",532.6,"{""promo"": ""24%""}",228264,1,Asia +2024-05-08,59811,4616,"[""Headphones"", ""Charger""]",1082.86,"{""loyalty"": ""26%""}",254320,1,North America +2023-07-11,59812,8712,"[""Monitor""]",252.06,{},272068,1,Europe +2023-01-04,59813,8854,"[""Monitor"", ""Charger""]",3875.27,{},60911,0,South America +2024-07-30,59814,4195,"[""Charger"", ""Keyboard""]",3947.23,{},202924,1,North America +2023-07-09,59815,2785,"[""Headphones"", ""Tablet"", ""Keyboard""]",1400.85,"{""promo"": ""7%""}",269716,1,Africa +2023-11-12,59816,2506,"[""Wireless Mouse"", ""Headphones""]",4154.76,{},242310,0,Europe +2024-07-18,59817,4737,"[""Laptop""]",3852.5,"{""seasonal"": ""22%""}",72602,1,Africa +2023-12-21,59818,4407,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4389.8,{},264543,0,Asia +2024-09-14,59819,1300,"[""Headphones""]",2305.61,"{"""": ""7%""}",23864,1,Europe +2024-01-26,59820,4412,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1252.83,"{""promo"": ""27%""}",127273,0,North America +2024-10-22,59821,935,"[""Monitor"", ""Tablet""]",2318.62,"{""seasonal"": ""24%""}",76462,1,Asia +2023-09-08,59822,7546,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1507.95,"{"""": ""29%""}",77945,0,North America +2024-06-04,59823,6928,"[""Monitor""]",3567.88,{},196525,0,North America +2023-02-03,59824,3393,"[""Laptop"", ""Headphones"", ""Phone""]",2501.33,{},294544,0,Africa +2024-04-23,59825,8487,"[""Keyboard"", ""Headphones""]",968.54,{},255358,0,Europe +2024-09-15,59826,4840,"[""Tablet"", ""Charger"", ""Monitor""]",1267.99,"{""seasonal"": ""18%""}",26233,0,Africa +2023-04-06,59827,9789,"[""Monitor"", ""Laptop"", ""Tablet""]",2315.09,"{""promo"": ""23%""}",178763,1,Europe +2023-08-25,59828,7837,"[""Keyboard"", ""Wireless Mouse""]",1123.79,{},201804,0,North America +2024-12-09,59829,308,"[""Keyboard"", ""Phone"", ""Monitor""]",1268.68,{},42566,1,Europe +2023-04-09,59830,7144,"[""Wireless Mouse""]",1010.19,"{"""": ""9%""}",280371,0,South America +2024-10-05,59831,6419,"[""Monitor"", ""Phone""]",1274.56,"{""loyalty"": ""22%""}",297716,0,Europe +2023-09-18,59832,9245,"[""Laptop"", ""Charger""]",3508.73,{},62809,0,North America +2023-09-16,59833,6862,"[""Keyboard"", ""Laptop""]",4284.46,{},47082,0,North America +2023-08-08,59834,2992,"[""Charger""]",3469.01,{},123958,0,South America +2024-11-22,59835,5026,"[""Tablet""]",1434.0,{},67634,1,North America +2024-08-27,59836,6201,"[""Keyboard"", ""Tablet"", ""Headphones""]",246.45,"{""promo"": ""25%""}",172236,1,North America +2024-03-19,59837,7507,"[""Tablet"", ""Keyboard""]",1780.83,{},297948,1,South America +2024-03-08,59838,9596,"[""Phone""]",4106.71,{},15192,1,North America +2024-08-02,59839,3647,"[""Monitor"", ""Charger"", ""Tablet""]",4528.37,{},172227,0,North America +2024-09-18,59840,5243,"[""Headphones""]",889.48,"{""promo"": ""17%""}",76525,0,Europe +2023-10-16,59841,6612,"[""Charger"", ""Monitor"", ""Phone""]",937.8,{},281845,1,South America +2024-06-28,59842,8946,"[""Monitor"", ""Keyboard"", ""Charger""]",3840.35,{},89330,1,North America +2024-04-20,59843,4401,"[""Headphones""]",4189.16,"{""promo"": ""11%""}",97825,0,Asia +2023-08-26,59844,4037,"[""Charger""]",4904.2,{},131366,1,Europe +2024-06-02,59845,3422,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4622.19,"{""promo"": ""18%""}",257739,0,North America +2023-10-15,59846,1622,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3034.76,{},152176,0,Africa +2023-04-23,59847,1791,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1582.85,{},89758,1,Asia +2024-12-28,59848,4407,"[""Headphones"", ""Charger""]",632.76,{},190579,1,Europe +2023-02-13,59849,2620,"[""Laptop"", ""Phone"", ""Tablet""]",2140.92,{},265005,0,South America +2024-03-07,59850,3023,"[""Headphones"", ""Laptop"", ""Keyboard""]",917.97,"{"""": ""22%""}",172566,0,Europe +2024-05-20,59851,8773,"[""Wireless Mouse""]",1604.93,{},206249,1,Asia +2023-05-14,59852,3699,"[""Headphones""]",2605.84,{},189308,1,North America +2024-06-28,59853,1900,"[""Headphones""]",2220.95,{},274721,0,Europe +2023-01-11,59854,5291,"[""Phone"", ""Keyboard"", ""Laptop""]",4030.97,"{"""": ""29%""}",70658,1,Asia +2024-02-17,59855,278,"[""Charger"", ""Monitor"", ""Tablet""]",358.87,"{""seasonal"": ""7%""}",166148,1,Europe +2023-06-18,59856,7737,"[""Headphones""]",2953.04,{},120525,1,Asia +2024-02-12,59857,524,"[""Charger""]",78.99,"{""loyalty"": ""19%""}",208439,0,Europe +2024-04-18,59858,2296,"[""Charger""]",582.36,"{""promo"": ""13%""}",24464,1,Africa +2024-08-23,59859,9404,"[""Headphones"", ""Wireless Mouse""]",3572.04,"{""loyalty"": ""11%""}",232547,1,Africa +2023-06-03,59860,7114,"[""Tablet"", ""Phone""]",200.35,"{"""": ""19%""}",127117,0,Africa +2024-03-08,59861,8659,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2402.94,{},253639,1,South America +2023-07-12,59862,5687,"[""Charger""]",3658.83,"{"""": ""7%""}",202986,0,Europe +2023-07-14,59863,1470,"[""Headphones""]",400.53,"{""promo"": ""27%""}",55588,0,South America +2023-07-03,59864,1312,"[""Phone""]",1349.39,"{""promo"": ""10%""}",178418,0,Africa +2024-07-30,59865,8429,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4164.63,"{""loyalty"": ""30%""}",199373,1,South America +2024-06-03,59866,279,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2669.9,{},263737,1,South America +2023-02-26,59867,367,"[""Monitor""]",2606.33,{},257866,0,North America +2023-11-08,59868,8739,"[""Tablet""]",4778.39,"{"""": ""23%""}",77930,0,South America +2024-10-11,59869,7349,"[""Phone"", ""Wireless Mouse"", ""Charger""]",779.35,{},100960,1,Asia +2023-01-23,59870,6955,"[""Phone""]",4611.52,{},30721,0,North America +2023-01-02,59871,5718,"[""Charger"", ""Laptop"", ""Keyboard""]",3877.19,{},285277,0,South America +2023-09-26,59872,3191,"[""Monitor"", ""Laptop""]",3242.93,{},76929,0,Europe +2024-01-16,59873,7755,"[""Phone"", ""Wireless Mouse""]",4175.61,"{""loyalty"": ""28%""}",91959,1,Africa +2024-11-09,59874,6467,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",935.45,{},37003,0,Asia +2024-06-22,59875,8220,"[""Tablet"", ""Headphones""]",2971.87,{},43772,0,North America +2024-06-29,59876,3355,"[""Laptop"", ""Wireless Mouse""]",3617.36,{},202627,0,Europe +2023-08-30,59877,2541,"[""Charger"", ""Wireless Mouse""]",2150.02,{},51695,1,South America +2023-07-24,59878,6821,"[""Phone"", ""Keyboard""]",2432.35,"{""promo"": ""25%""}",200320,1,South America +2024-07-17,59879,4292,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1914.82,"{"""": ""12%""}",108135,0,Africa +2023-02-26,59880,8579,"[""Charger"", ""Phone"", ""Headphones""]",2552.06,"{""promo"": ""30%""}",134984,0,South America +2023-09-28,59881,38,"[""Charger"", ""Phone"", ""Monitor""]",234.43,"{""seasonal"": ""16%""}",95865,1,North America +2024-01-17,59882,3749,"[""Keyboard""]",2081.52,"{""seasonal"": ""28%""}",72943,0,Europe +2024-04-05,59883,2917,"[""Keyboard"", ""Wireless Mouse""]",1944.08,"{""seasonal"": ""18%""}",260103,0,North America +2023-06-15,59884,7770,"[""Monitor"", ""Phone"", ""Keyboard""]",1566.57,"{""seasonal"": ""18%""}",33282,1,Africa +2023-02-11,59885,8071,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",844.31,"{""promo"": ""19%""}",220878,0,Asia +2023-11-18,59886,3627,"[""Keyboard""]",383.78,"{""promo"": ""14%""}",98346,1,South America +2024-11-08,59887,1901,"[""Headphones"", ""Wireless Mouse""]",1897.48,{},76926,0,South America +2024-01-12,59888,5073,"[""Tablet""]",2198.18,{},146636,1,North America +2024-10-15,59889,9170,"[""Monitor""]",1648.65,"{""promo"": ""8%""}",268840,1,Europe +2023-02-03,59890,136,"[""Phone"", ""Tablet""]",3367.48,{},125024,1,Africa +2024-04-26,59891,7099,"[""Keyboard""]",3377.92,{},108047,1,Asia +2024-05-03,59892,9324,"[""Keyboard""]",2627.4,"{"""": ""25%""}",193736,0,North America +2024-06-20,59893,2585,"[""Phone"", ""Tablet""]",4388.05,"{"""": ""24%""}",230738,1,Europe +2024-12-17,59894,5529,"[""Charger""]",428.89,{},244130,1,Africa +2024-11-27,59895,1973,"[""Headphones""]",1642.95,{},190413,0,South America +2024-06-10,59896,6916,"[""Wireless Mouse""]",4128.69,"{""seasonal"": ""10%""}",224925,0,Europe +2024-08-01,59897,3654,"[""Monitor"", ""Tablet"", ""Headphones""]",3231.4,"{""promo"": ""19%""}",294990,1,North America +2023-05-14,59898,6760,"[""Laptop""]",3595.73,"{""promo"": ""28%""}",238292,0,South America +2023-09-12,59899,4778,"[""Charger"", ""Tablet""]",4297.05,{},201563,1,Asia +2023-10-29,59900,9356,"[""Headphones"", ""Phone""]",1326.98,"{""promo"": ""10%""}",1137,1,Europe +2024-06-07,59901,3206,"[""Phone"", ""Charger"", ""Laptop""]",85.23,{},151011,0,Africa +2023-12-04,59902,733,"[""Monitor""]",660.83,{},224607,0,Asia +2023-10-30,59903,7728,"[""Laptop"", ""Charger"", ""Headphones""]",4094.38,{},70490,0,South America +2023-10-20,59904,8037,"[""Keyboard"", ""Phone""]",2310.93,{},136096,0,Africa +2024-05-11,59905,4234,"[""Phone"", ""Tablet"", ""Laptop""]",1991.2,{},112507,1,South America +2023-12-05,59906,7388,"[""Headphones""]",1884.92,{},244903,1,Asia +2023-05-23,59907,8276,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1407.49,"{""seasonal"": ""17%""}",265433,0,North America +2023-05-13,59908,713,"[""Keyboard"", ""Wireless Mouse""]",4230.42,{},187741,1,Europe +2023-10-14,59909,2671,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1304.08,"{""seasonal"": ""21%""}",141979,0,North America +2024-11-15,59910,4771,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2571.68,"{""seasonal"": ""20%""}",202629,0,South America +2023-09-06,59911,4664,"[""Headphones"", ""Tablet""]",3485.33,"{""loyalty"": ""11%""}",99035,1,South America +2024-07-25,59912,7613,"[""Charger"", ""Laptop""]",2441.74,{},253487,1,South America +2023-09-26,59913,2363,"[""Headphones""]",1289.95,"{""promo"": ""21%""}",71447,1,Asia +2024-11-12,59914,3887,"[""Wireless Mouse"", ""Laptop""]",1282.64,"{""promo"": ""30%""}",213482,0,South America +2024-06-09,59915,6674,"[""Headphones""]",3784.58,{},188564,1,Africa +2024-08-02,59916,4381,"[""Monitor""]",1089.27,"{""promo"": ""27%""}",50694,1,Europe +2023-02-10,59917,9107,"[""Monitor""]",4823.43,"{""loyalty"": ""7%""}",122222,0,Asia +2024-03-15,59918,8050,"[""Monitor"", ""Phone""]",2902.63,"{""seasonal"": ""30%""}",90217,1,South America +2024-01-29,59919,9881,"[""Charger"", ""Phone""]",1524.5,{},55203,1,Europe +2024-08-15,59920,5579,"[""Wireless Mouse""]",4978.0,"{"""": ""6%""}",193199,0,Europe +2023-05-01,59921,2068,"[""Phone"", ""Monitor""]",2672.96,"{""loyalty"": ""21%""}",170964,0,Europe +2024-10-22,59922,1188,"[""Charger"", ""Keyboard"", ""Monitor""]",4456.27,{},200879,0,South America +2023-04-17,59923,8650,"[""Keyboard"", ""Tablet""]",3890.55,"{""loyalty"": ""29%""}",121990,0,Europe +2023-11-08,59924,5456,"[""Keyboard"", ""Headphones""]",4433.77,{},241634,0,North America +2023-06-10,59925,9145,"[""Monitor"", ""Charger""]",2764.06,"{""promo"": ""16%""}",58318,0,North America +2023-05-24,59926,3881,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4842.06,{},256636,1,North America +2024-09-14,59927,8066,"[""Tablet"", ""Phone""]",4251.75,"{""seasonal"": ""16%""}",36004,1,South America +2023-03-07,59928,3601,"[""Keyboard"", ""Tablet"", ""Monitor""]",3248.93,"{"""": ""19%""}",235139,1,South America +2023-11-03,59929,7930,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4957.62,"{""promo"": ""5%""}",19297,0,Africa +2023-07-18,59930,9192,"[""Phone"", ""Laptop"", ""Charger""]",1027.26,"{""promo"": ""26%""}",276519,0,Europe +2023-02-22,59931,905,"[""Wireless Mouse""]",4519.35,"{""promo"": ""25%""}",211889,0,Asia +2023-01-18,59932,8549,"[""Headphones"", ""Phone"", ""Monitor""]",530.46,{},37468,1,South America +2023-08-26,59933,8987,"[""Charger"", ""Keyboard""]",2970.39,{},202791,1,Africa +2024-09-18,59934,7126,"[""Monitor""]",2237.22,"{""promo"": ""13%""}",216983,0,Europe +2023-08-08,59935,931,"[""Phone"", ""Keyboard""]",1986.45,{},193792,1,South America +2023-09-03,59936,1972,"[""Wireless Mouse"", ""Monitor""]",3213.34,"{""seasonal"": ""24%""}",295672,1,Europe +2024-12-16,59937,6290,"[""Laptop"", ""Charger"", ""Phone""]",2532.31,{},236807,0,Africa +2023-11-02,59938,1305,"[""Tablet"", ""Charger"", ""Monitor""]",4036.36,"{""seasonal"": ""12%""}",28638,1,Africa +2023-08-08,59939,2235,"[""Tablet""]",864.84,{},127874,0,Africa +2023-05-29,59940,9851,"[""Keyboard"", ""Headphones""]",1872.01,"{""loyalty"": ""23%""}",129944,0,Africa +2023-10-19,59941,1979,"[""Tablet""]",1789.92,"{""promo"": ""19%""}",209315,0,Europe +2023-08-03,59942,337,"[""Headphones""]",2913.49,"{""seasonal"": ""16%""}",276355,1,North America +2024-01-25,59943,2155,"[""Laptop""]",248.98,{},282027,1,South America +2023-05-05,59944,8926,"[""Wireless Mouse"", ""Keyboard""]",1016.28,{},217014,1,Europe +2023-06-05,59945,8751,"[""Phone"", ""Tablet""]",4165.82,{},140795,1,Asia +2024-01-06,59946,9310,"[""Laptop"", ""Charger"", ""Monitor""]",3226.61,{},189312,1,Asia +2023-12-20,59947,6061,"[""Phone""]",3425.29,"{"""": ""19%""}",26927,0,Asia +2023-01-04,59948,426,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4210.24,{},180408,1,South America +2023-05-24,59949,5330,"[""Headphones""]",4157.59,"{""promo"": ""7%""}",267887,1,North America +2024-04-16,59950,8386,"[""Charger""]",4712.2,"{""loyalty"": ""12%""}",223075,1,South America +2023-07-02,59951,8311,"[""Keyboard""]",582.68,{},105606,1,North America +2023-01-31,59952,8189,"[""Wireless Mouse""]",3373.09,{},292538,1,Asia +2024-11-04,59953,844,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4670.32,{},88964,0,North America +2024-08-14,59954,4274,"[""Phone"", ""Wireless Mouse""]",1342.85,{},49831,1,Asia +2023-10-03,59955,6981,"[""Headphones""]",2838.08,"{""loyalty"": ""30%""}",43460,0,South America +2023-01-25,59956,9450,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",458.83,{},43783,1,North America +2024-09-04,59957,1657,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",578.71,{},104698,1,Asia +2023-02-22,59958,4407,"[""Charger"", ""Laptop"", ""Monitor""]",3687.31,"{"""": ""20%""}",122179,0,Asia +2024-01-08,59959,9889,"[""Laptop"", ""Monitor""]",3597.07,{},79259,1,Asia +2023-09-09,59960,9061,"[""Monitor"", ""Wireless Mouse""]",3524.09,"{""loyalty"": ""25%""}",89712,1,Europe +2024-06-26,59961,1749,"[""Wireless Mouse""]",1489.3,{},219846,1,Africa +2023-07-20,59962,3356,"[""Tablet"", ""Monitor"", ""Keyboard""]",1000.73,"{""loyalty"": ""25%""}",164976,0,South America +2023-12-04,59963,9510,"[""Wireless Mouse""]",2164.03,{},196063,0,Africa +2023-02-15,59964,1894,"[""Tablet"", ""Phone"", ""Laptop""]",4495.42,{},48510,1,South America +2024-03-25,59965,6480,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4008.43,"{""loyalty"": ""21%""}",81837,1,Africa +2024-09-30,59966,2755,"[""Tablet"", ""Wireless Mouse""]",4804.92,{},191863,0,South America +2024-12-29,59967,8060,"[""Charger"", ""Monitor""]",945.71,{},100982,0,North America +2023-10-04,59968,9562,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4263.88,{},39388,1,South America +2024-06-21,59969,1890,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",846.75,"{"""": ""15%""}",227090,0,Africa +2023-05-20,59970,6830,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2534.89,"{""promo"": ""8%""}",151946,1,Africa +2023-01-19,59971,6017,"[""Headphones"", ""Tablet""]",172.65,"{""seasonal"": ""6%""}",42246,0,Europe +2024-11-06,59972,5026,"[""Charger"", ""Keyboard""]",4275.18,"{"""": ""5%""}",16930,1,Asia +2023-12-21,59973,1106,"[""Monitor""]",581.92,"{""loyalty"": ""28%""}",139180,1,South America +2023-01-23,59974,2270,"[""Headphones"", ""Tablet"", ""Laptop""]",4854.48,"{"""": ""22%""}",35565,0,North America +2024-01-01,59975,6073,"[""Headphones"", ""Phone""]",408.07,"{""loyalty"": ""10%""}",288711,1,South America +2024-06-04,59976,8452,"[""Laptop"", ""Headphones""]",3020.59,"{""seasonal"": ""15%""}",199968,0,Europe +2024-04-23,59977,6967,"[""Headphones""]",2250.71,{},168193,1,Africa +2024-12-22,59978,4125,"[""Phone"", ""Monitor""]",4271.8,"{""loyalty"": ""24%""}",142938,1,Asia +2024-09-03,59979,3694,"[""Headphones"", ""Wireless Mouse""]",2585.03,{},111718,1,Africa +2024-01-01,59980,5154,"[""Tablet""]",2013.2,{},142020,0,Europe +2024-12-23,59981,4390,"[""Monitor"", ""Wireless Mouse""]",4372.14,{},196729,0,Africa +2024-12-03,59982,5325,"[""Monitor"", ""Charger"", ""Tablet""]",1483.11,{},173676,1,South America +2024-05-20,59983,8603,"[""Headphones"", ""Charger""]",4079.3,"{"""": ""29%""}",89053,0,North America +2024-10-21,59984,9889,"[""Tablet""]",965.88,"{""loyalty"": ""10%""}",173271,1,North America +2024-02-06,59985,2797,"[""Phone"", ""Headphones""]",1947.24,{},183183,0,North America +2024-03-26,59986,6155,"[""Monitor""]",3283.2,{},20233,1,Asia +2023-03-13,59987,5505,"[""Monitor"", ""Laptop"", ""Keyboard""]",2118.84,"{""seasonal"": ""8%""}",18606,1,Asia +2024-05-06,59988,5621,"[""Tablet""]",4136.11,{},132600,0,Europe +2024-08-16,59989,1129,"[""Wireless Mouse""]",4708.08,{},21008,1,Europe +2023-03-07,59990,5692,"[""Charger"", ""Tablet"", ""Monitor""]",3158.47,"{"""": ""28%""}",163072,0,South America +2023-01-09,59991,2644,"[""Monitor"", ""Charger""]",904.69,{},31011,0,South America +2023-03-12,59992,6106,"[""Monitor""]",4963.09,"{""promo"": ""29%""}",287636,1,Europe +2024-11-09,59993,6617,"[""Headphones""]",4061.55,"{""promo"": ""10%""}",149086,1,South America +2023-02-11,59994,7466,"[""Wireless Mouse"", ""Tablet""]",1030.41,{},88256,1,Europe +2024-05-09,59995,8118,"[""Tablet""]",4236.63,{},137409,0,North America +2023-02-07,59996,9674,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1924.12,{},295127,1,South America +2023-09-14,59997,7196,"[""Phone""]",1657.01,{},45052,1,South America +2024-06-24,59998,960,"[""Monitor"", ""Charger"", ""Keyboard""]",2519.25,"{""seasonal"": ""20%""}",118905,0,North America +2024-11-10,59999,2144,"[""Charger"", ""Headphones"", ""Phone""]",4794.54,{},226840,0,North America +2023-11-15,60000,1223,"[""Laptop"", ""Keyboard""]",845.85,"{"""": ""12%""}",276807,1,South America +2023-04-14,60001,8251,"[""Charger""]",2979.14,"{""loyalty"": ""22%""}",238796,0,South America +2024-07-10,60002,1962,"[""Keyboard"", ""Phone""]",358.16,{},189069,1,South America +2023-02-11,60003,9106,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",720.5,"{""loyalty"": ""6%""}",153590,0,Africa +2024-05-31,60004,3886,"[""Charger""]",4881.3,"{""loyalty"": ""19%""}",251609,0,North America +2024-03-03,60005,6601,"[""Headphones"", ""Phone""]",1104.35,"{""loyalty"": ""21%""}",3532,1,South America +2024-01-18,60006,7223,"[""Charger""]",4874.04,{},116360,0,Europe +2024-01-18,60007,1510,"[""Monitor"", ""Laptop""]",4562.29,{},246412,0,North America +2024-03-07,60008,7258,"[""Tablet"", ""Wireless Mouse""]",4793.02,"{""loyalty"": ""6%""}",227997,0,Africa +2023-06-20,60009,1488,"[""Keyboard"", ""Charger"", ""Headphones""]",315.74,{},200454,0,South America +2024-03-27,60010,5859,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",388.63,"{"""": ""24%""}",73322,1,Asia +2023-12-11,60011,8476,"[""Tablet""]",2011.91,{},183033,0,South America +2024-03-20,60012,7712,"[""Keyboard"", ""Tablet""]",2162.98,{},275354,0,Asia +2024-02-13,60013,4545,"[""Wireless Mouse"", ""Charger""]",4880.76,"{"""": ""17%""}",14217,0,Europe +2024-09-02,60014,8466,"[""Keyboard"", ""Tablet""]",1680.69,"{""seasonal"": ""24%""}",194667,0,South America +2023-01-10,60015,1754,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1225.9,{},184330,1,Africa +2024-03-19,60016,4901,"[""Keyboard""]",616.1,"{""loyalty"": ""20%""}",54482,1,South America +2023-11-01,60017,6948,"[""Charger"", ""Phone""]",318.98,"{"""": ""6%""}",226090,1,Europe +2024-02-16,60018,8365,"[""Laptop"", ""Wireless Mouse""]",2323.21,"{""promo"": ""21%""}",219671,1,Asia +2023-02-14,60019,8785,"[""Headphones"", ""Keyboard""]",4913.85,"{""seasonal"": ""25%""}",157185,1,North America +2023-03-15,60020,6881,"[""Tablet"", ""Wireless Mouse""]",2774.96,"{""loyalty"": ""30%""}",126251,1,Africa +2024-12-02,60021,5319,"[""Monitor"", ""Laptop"", ""Tablet""]",3536.69,"{""promo"": ""15%""}",275182,0,South America +2024-10-20,60022,5244,"[""Keyboard"", ""Laptop"", ""Tablet""]",4666.53,{},157867,0,Asia +2024-04-04,60023,2117,"[""Headphones"", ""Laptop"", ""Tablet""]",4445.09,"{""promo"": ""28%""}",211364,0,Europe +2023-01-22,60024,7375,"[""Wireless Mouse"", ""Keyboard""]",2180.97,{},286837,1,Asia +2024-01-29,60025,4873,"[""Keyboard""]",1847.74,"{"""": ""14%""}",76239,0,Europe +2023-07-21,60026,3376,"[""Monitor"", ""Charger"", ""Tablet""]",1818.35,"{""promo"": ""30%""}",201830,1,Africa +2023-03-08,60027,7607,"[""Keyboard"", ""Charger""]",1101.08,"{""loyalty"": ""28%""}",243259,1,South America +2024-05-31,60028,1312,"[""Laptop"", ""Phone""]",4312.59,{},169925,0,Asia +2024-09-02,60029,7781,"[""Keyboard"", ""Laptop""]",1830.52,"{""seasonal"": ""6%""}",108712,1,South America +2023-02-10,60030,8619,"[""Headphones""]",490.43,{},34358,0,South America +2023-05-24,60031,969,"[""Monitor"", ""Charger""]",4609.09,"{""loyalty"": ""19%""}",264902,0,South America +2023-05-01,60032,5045,"[""Monitor"", ""Phone"", ""Headphones""]",4187.44,{},34692,1,North America +2023-09-03,60033,2751,"[""Headphones"", ""Monitor""]",4547.95,{},48026,0,Asia +2023-11-10,60034,4066,"[""Laptop"", ""Charger"", ""Headphones""]",2789.54,{},291740,0,South America +2023-07-31,60035,8079,"[""Tablet"", ""Charger""]",304.2,{},208647,0,Asia +2023-08-14,60036,5263,"[""Headphones"", ""Charger"", ""Tablet""]",3726.29,"{"""": ""14%""}",24969,0,North America +2023-08-15,60037,8782,"[""Charger""]",162.94,{},149067,0,Africa +2024-08-09,60038,2514,"[""Laptop"", ""Charger""]",2067.79,{},113120,1,Africa +2024-02-17,60039,9853,"[""Charger"", ""Phone""]",1427.38,"{"""": ""24%""}",257023,1,Europe +2023-03-02,60040,6988,"[""Monitor""]",4378.63,{},152002,0,Europe +2024-03-23,60041,4405,"[""Headphones""]",3774.96,{},126751,1,South America +2024-01-20,60042,227,"[""Tablet"", ""Wireless Mouse""]",185.63,{},54023,1,Asia +2024-06-16,60043,1753,"[""Monitor"", ""Phone"", ""Headphones""]",550.22,{},243985,0,North America +2024-07-29,60044,9525,"[""Tablet"", ""Monitor""]",3865.94,"{""seasonal"": ""19%""}",145682,1,South America +2024-12-11,60045,8462,"[""Headphones"", ""Keyboard"", ""Monitor""]",584.14,"{""promo"": ""18%""}",37665,0,Asia +2024-06-27,60046,7803,"[""Wireless Mouse"", ""Tablet""]",1587.06,{},126368,1,North America +2023-07-03,60047,7504,"[""Monitor"", ""Laptop""]",4128.6,{},3450,0,South America +2024-03-19,60048,7376,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4483.43,"{""loyalty"": ""29%""}",145306,0,Europe +2024-02-28,60049,821,"[""Tablet"", ""Phone""]",3261.6,"{""loyalty"": ""21%""}",52378,1,Africa +2023-05-03,60050,5181,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1410.92,{},25000,0,North America +2023-01-30,60051,2469,"[""Charger""]",2111.92,{},29665,1,North America +2024-01-28,60052,4357,"[""Headphones"", ""Wireless Mouse""]",4099.09,"{""seasonal"": ""26%""}",277716,1,Europe +2024-10-23,60053,684,"[""Headphones"", ""Keyboard""]",2360.18,{},208185,0,North America +2024-09-13,60054,4240,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1232.59,{},63668,0,South America +2023-06-23,60055,8420,"[""Charger"", ""Phone""]",2539.93,{},261994,0,Europe +2024-01-11,60056,1084,"[""Monitor"", ""Keyboard"", ""Laptop""]",2370.82,{},170631,1,North America +2024-05-19,60057,1190,"[""Headphones"", ""Charger"", ""Tablet""]",2601.65,"{""seasonal"": ""29%""}",75641,1,South America +2023-08-24,60058,1886,"[""Monitor""]",1178.91,"{"""": ""9%""}",86051,0,Africa +2024-12-11,60059,2622,"[""Laptop"", ""Phone"", ""Keyboard""]",4187.28,{},85066,1,Asia +2024-01-29,60060,5368,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",935.94,"{""seasonal"": ""28%""}",102327,1,Europe +2023-10-02,60061,3175,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1766.31,"{""promo"": ""20%""}",149715,1,Africa +2024-03-29,60062,2313,"[""Headphones"", ""Phone""]",1461.82,"{""seasonal"": ""10%""}",286607,0,Europe +2024-01-26,60063,6646,"[""Headphones"", ""Charger"", ""Tablet""]",4129.33,"{""seasonal"": ""17%""}",104257,1,Europe +2024-10-05,60064,3185,"[""Laptop"", ""Charger"", ""Headphones""]",3143.65,{},211779,1,Africa +2023-05-27,60065,4100,"[""Wireless Mouse""]",1532.72,{},246845,1,Asia +2024-09-14,60066,356,"[""Monitor"", ""Laptop""]",1776.88,{},91922,1,South America +2024-07-08,60067,8037,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4185.12,{},79858,1,Europe +2024-05-22,60068,3082,"[""Laptop"", ""Phone""]",570.8,{},124652,1,Asia +2023-05-13,60069,2121,"[""Keyboard"", ""Phone""]",4927.69,"{""seasonal"": ""6%""}",5347,0,South America +2023-07-29,60070,6862,"[""Keyboard""]",3230.04,{},155946,0,North America +2024-07-15,60071,5522,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",421.48,"{"""": ""28%""}",250662,0,Asia +2023-04-02,60072,4889,"[""Laptop"", ""Monitor"", ""Charger""]",4652.75,{},284955,0,Africa +2024-07-07,60073,9585,"[""Headphones"", ""Laptop"", ""Phone""]",966.65,{},210336,0,Africa +2024-04-28,60074,8100,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4023.67,"{""loyalty"": ""30%""}",197622,1,North America +2024-12-15,60075,3713,"[""Keyboard""]",4652.11,{},102857,1,Asia +2024-09-10,60076,7449,"[""Wireless Mouse""]",3394.51,{},157400,1,South America +2023-05-17,60077,4735,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1414.1,"{"""": ""30%""}",118773,0,South America +2023-05-06,60078,1580,"[""Phone"", ""Laptop"", ""Monitor""]",2795.54,"{""seasonal"": ""7%""}",297145,0,Africa +2023-03-18,60079,276,"[""Laptop""]",1016.94,{},275144,1,North America +2023-08-18,60080,1096,"[""Keyboard"", ""Phone"", ""Laptop""]",1208.13,{},261485,1,Europe +2024-06-07,60081,1609,"[""Tablet"", ""Keyboard""]",1992.3,{},10573,1,Europe +2023-12-26,60082,836,"[""Phone"", ""Laptop"", ""Tablet""]",789.69,"{""loyalty"": ""27%""}",179414,1,Asia +2023-07-30,60083,3259,"[""Keyboard"", ""Phone"", ""Monitor""]",2937.84,{},210891,1,Europe +2023-06-25,60084,34,"[""Headphones"", ""Charger"", ""Phone""]",304.81,"{""loyalty"": ""20%""}",3979,1,Africa +2024-10-05,60085,945,"[""Keyboard"", ""Monitor""]",466.84,"{""promo"": ""13%""}",89816,0,Asia +2023-10-23,60086,6281,"[""Keyboard"", ""Headphones""]",2774.82,{},284394,1,South America +2024-03-30,60087,500,"[""Keyboard""]",4507.12,"{""promo"": ""11%""}",91463,0,South America +2023-01-21,60088,886,"[""Charger"", ""Keyboard""]",173.15,"{""promo"": ""8%""}",18724,0,North America +2023-06-09,60089,4242,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2027.27,{},189837,0,South America +2024-02-27,60090,8523,"[""Keyboard"", ""Phone"", ""Headphones""]",4523.26,"{""promo"": ""18%""}",291644,1,South America +2023-08-03,60091,6314,"[""Charger"", ""Tablet"", ""Phone""]",1759.72,{},259678,0,Europe +2024-04-21,60092,4476,"[""Charger"", ""Wireless Mouse""]",2001.66,"{""seasonal"": ""8%""}",176079,1,South America +2023-06-10,60093,2376,"[""Wireless Mouse"", ""Headphones""]",4950.71,"{""seasonal"": ""6%""}",123021,0,Africa +2024-07-28,60094,5139,"[""Charger"", ""Wireless Mouse""]",3913.38,{},211884,1,South America +2023-08-21,60095,2829,"[""Wireless Mouse""]",4272.32,"{""loyalty"": ""13%""}",77928,0,North America +2024-02-09,60096,6358,"[""Tablet""]",1773.88,{},277314,0,Africa +2024-08-20,60097,462,"[""Phone""]",3367.13,{},145218,1,Asia +2023-12-06,60098,3242,"[""Tablet"", ""Monitor""]",2743.97,{},174939,1,Europe +2023-04-04,60099,6098,"[""Phone""]",4539.81,"{""seasonal"": ""25%""}",11441,1,South America +2023-01-21,60100,7940,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1846.61,{},259471,0,South America +2024-08-17,60101,3936,"[""Keyboard"", ""Monitor""]",4447.85,{},12947,0,Europe +2023-09-24,60102,3682,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4620.34,{},60391,0,Africa +2024-11-05,60103,2943,"[""Monitor""]",462.98,"{"""": ""5%""}",194652,0,Asia +2023-07-13,60104,2500,"[""Tablet""]",1203.94,{},191514,1,Asia +2023-03-27,60105,8246,"[""Tablet"", ""Keyboard""]",160.46,{},58565,1,Europe +2024-03-13,60106,7015,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",766.64,{},28561,1,South America +2024-06-18,60107,6405,"[""Headphones""]",1379.23,{},248268,1,Asia +2023-10-01,60108,5819,"[""Monitor""]",3591.47,"{""loyalty"": ""9%""}",158207,1,Africa +2024-01-23,60109,1896,"[""Keyboard"", ""Headphones""]",1804.23,{},1634,0,Europe +2024-02-07,60110,8139,"[""Headphones"", ""Laptop"", ""Monitor""]",4702.55,"{"""": ""16%""}",55218,1,South America +2023-06-02,60111,7430,"[""Charger"", ""Laptop""]",4567.86,{},48565,1,Asia +2024-10-03,60112,4194,"[""Keyboard""]",3560.49,{},76579,1,Asia +2023-02-20,60113,561,"[""Charger"", ""Tablet""]",142.08,{},118107,1,South America +2024-03-20,60114,5385,"[""Phone""]",3977.02,{},131478,0,Africa +2023-10-30,60115,2494,"[""Keyboard"", ""Tablet"", ""Headphones""]",4693.66,"{""loyalty"": ""6%""}",129618,0,Asia +2024-06-06,60116,4251,"[""Charger""]",411.48,"{""loyalty"": ""30%""}",280218,1,South America +2023-05-25,60117,3905,"[""Charger""]",1639.33,"{"""": ""11%""}",52929,1,Africa +2024-09-22,60118,9947,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1894.25,"{""loyalty"": ""10%""}",17670,0,Africa +2024-12-25,60119,7002,"[""Phone"", ""Tablet""]",3290.8,{},298314,1,Asia +2023-09-16,60120,812,"[""Headphones""]",706.57,"{""seasonal"": ""9%""}",254454,0,Europe +2023-09-22,60121,1044,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2783.1,{},274072,1,North America +2024-04-05,60122,256,"[""Wireless Mouse""]",4025.65,"{""seasonal"": ""25%""}",298880,1,Europe +2023-02-18,60123,5028,"[""Phone""]",942.8,{},111975,0,Asia +2023-03-30,60124,4730,"[""Tablet"", ""Monitor"", ""Keyboard""]",4509.5,{},275614,0,North America +2023-09-25,60125,4537,"[""Tablet"", ""Headphones""]",3963.6,"{"""": ""24%""}",42808,1,Asia +2024-03-09,60126,9873,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3698.34,"{""loyalty"": ""28%""}",142761,0,Africa +2024-04-24,60127,5839,"[""Tablet"", ""Phone""]",3443.66,"{""seasonal"": ""28%""}",270924,0,Africa +2023-02-01,60128,3373,"[""Phone"", ""Monitor""]",2136.0,"{""seasonal"": ""14%""}",277676,0,South America +2023-09-18,60129,3718,"[""Headphones""]",4033.11,{},160929,1,South America +2024-12-27,60130,7296,"[""Keyboard"", ""Laptop"", ""Charger""]",2663.38,{},2831,1,Asia +2024-05-02,60131,1461,"[""Keyboard""]",4418.43,"{"""": ""24%""}",7699,0,North America +2024-12-09,60132,450,"[""Headphones""]",1478.16,"{""loyalty"": ""23%""}",13458,0,Africa +2023-10-27,60133,9940,"[""Tablet""]",1920.81,{},227918,0,South America +2024-11-01,60134,1873,"[""Keyboard"", ""Laptop""]",2968.13,{},29459,0,North America +2023-01-27,60135,6605,"[""Laptop""]",1691.0,{},257437,0,Asia +2023-05-10,60136,9855,"[""Keyboard"", ""Headphones""]",1633.47,{},157338,0,Africa +2024-06-24,60137,1930,"[""Charger"", ""Monitor"", ""Phone""]",2419.5,"{""loyalty"": ""8%""}",113383,0,Asia +2023-01-10,60138,4804,"[""Phone""]",760.7,{},45009,0,Europe +2024-12-13,60139,8621,"[""Headphones"", ""Charger""]",2997.99,"{""loyalty"": ""7%""}",124511,0,Asia +2024-03-11,60140,9553,"[""Laptop""]",4171.71,{},80220,0,Africa +2023-10-01,60141,9048,"[""Wireless Mouse"", ""Phone""]",4336.26,{},246651,1,Africa +2024-11-19,60142,3135,"[""Monitor"", ""Laptop""]",2496.66,"{"""": ""5%""}",263117,1,Europe +2023-09-06,60143,847,"[""Wireless Mouse""]",4960.38,"{""promo"": ""25%""}",31547,0,Asia +2023-02-03,60144,1983,"[""Laptop""]",795.29,{},260680,0,South America +2024-12-29,60145,3511,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3515.29,{},104780,0,Africa +2023-10-19,60146,2518,"[""Monitor"", ""Keyboard""]",4563.87,"{""seasonal"": ""5%""}",239820,1,Africa +2024-06-01,60147,3440,"[""Headphones"", ""Laptop"", ""Tablet""]",905.08,"{""seasonal"": ""20%""}",106317,1,South America +2024-12-08,60148,828,"[""Keyboard"", ""Charger""]",3895.56,{},95710,1,Africa +2023-07-31,60149,2546,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1967.66,"{""loyalty"": ""12%""}",243824,0,Africa +2023-02-25,60150,2655,"[""Charger"", ""Wireless Mouse""]",3716.91,"{""promo"": ""13%""}",174005,1,Europe +2023-11-29,60151,5145,"[""Tablet"", ""Wireless Mouse""]",3057.54,{},135034,1,Africa +2024-11-20,60152,2268,"[""Headphones"", ""Keyboard"", ""Tablet""]",3579.51,{},240128,0,South America +2023-01-27,60153,5000,"[""Headphones""]",4006.33,"{""seasonal"": ""16%""}",156297,0,Africa +2024-01-29,60154,336,"[""Wireless Mouse"", ""Laptop""]",1391.68,{},194973,1,Europe +2023-10-03,60155,97,"[""Keyboard"", ""Charger""]",1620.05,"{""loyalty"": ""26%""}",174376,0,North America +2023-07-23,60156,9547,"[""Laptop"", ""Headphones""]",3513.61,"{""loyalty"": ""14%""}",199377,0,South America +2024-01-12,60157,7067,"[""Phone"", ""Wireless Mouse""]",2561.51,{},73684,1,Europe +2024-11-10,60158,2421,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3565.88,"{""loyalty"": ""29%""}",133305,1,North America +2024-01-26,60159,2468,"[""Tablet""]",2416.59,"{""seasonal"": ""25%""}",194652,0,Africa +2023-12-19,60160,2172,"[""Tablet"", ""Headphones""]",2964.58,{},188812,0,Africa +2023-05-11,60161,8777,"[""Charger""]",1969.96,"{""promo"": ""7%""}",240296,1,North America +2023-05-16,60162,6215,"[""Keyboard"", ""Laptop""]",589.54,{},114537,1,Europe +2023-02-11,60163,449,"[""Tablet"", ""Keyboard"", ""Charger""]",2737.43,{},35083,1,Europe +2024-05-24,60164,3587,"[""Phone""]",105.69,"{""loyalty"": ""19%""}",205002,1,North America +2024-01-09,60165,9922,"[""Keyboard"", ""Charger""]",4833.03,{},242951,0,Asia +2024-03-25,60166,9551,"[""Keyboard"", ""Charger"", ""Phone""]",2077.49,{},148303,0,North America +2024-12-27,60167,2112,"[""Charger""]",3544.13,{},108953,1,Africa +2024-01-16,60168,1281,"[""Wireless Mouse""]",3324.49,"{"""": ""7%""}",43264,0,North America +2023-04-07,60169,6076,"[""Phone""]",2079.86,"{""seasonal"": ""12%""}",102520,0,South America +2023-08-26,60170,6824,"[""Tablet"", ""Headphones""]",3177.18,"{"""": ""10%""}",221854,0,Africa +2024-01-29,60171,7898,"[""Laptop"", ""Wireless Mouse""]",1951.61,"{""promo"": ""26%""}",93818,1,Asia +2023-05-10,60172,9690,"[""Charger"", ""Keyboard"", ""Headphones""]",2649.92,"{"""": ""29%""}",72864,1,South America +2024-07-11,60173,3091,"[""Monitor"", ""Keyboard"", ""Phone""]",61.89,{},155600,1,Europe +2023-11-01,60174,9689,"[""Headphones"", ""Charger""]",2673.32,{},213468,0,Europe +2023-01-29,60175,1940,"[""Tablet"", ""Headphones""]",3719.81,"{""loyalty"": ""11%""}",113898,1,Europe +2024-08-26,60176,3697,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4454.72,"{"""": ""15%""}",45174,0,Asia +2023-10-03,60177,6507,"[""Keyboard""]",1779.85,{},295786,1,Europe +2023-05-15,60178,8927,"[""Tablet""]",3365.05,{},39739,1,Asia +2023-08-27,60179,8491,"[""Monitor"", ""Charger""]",117.26,"{""seasonal"": ""11%""}",209596,1,Asia +2023-11-20,60180,5750,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4210.5,{},210308,1,Africa +2023-06-10,60181,5973,"[""Monitor"", ""Charger""]",2075.74,"{""seasonal"": ""5%""}",219000,1,Europe +2023-12-11,60182,7714,"[""Phone"", ""Tablet""]",1709.27,"{""loyalty"": ""18%""}",62565,1,South America +2024-11-19,60183,1013,"[""Monitor"", ""Tablet""]",3268.09,"{""seasonal"": ""24%""}",232300,1,South America +2024-07-29,60184,7389,"[""Laptop"", ""Keyboard"", ""Phone""]",1174.12,{},265076,0,Asia +2023-06-09,60185,744,"[""Headphones"", ""Monitor""]",60.21,{},198291,0,South America +2023-12-29,60186,2650,"[""Wireless Mouse""]",580.08,{},93980,0,Asia +2023-11-08,60187,1850,"[""Phone"", ""Headphones""]",1206.84,{},6024,0,South America +2023-12-26,60188,6180,"[""Headphones"", ""Monitor"", ""Phone""]",1608.97,{},274381,0,Europe +2024-06-30,60189,2711,"[""Phone""]",3459.44,"{""loyalty"": ""21%""}",90779,1,North America +2024-01-01,60190,1418,"[""Tablet"", ""Monitor"", ""Headphones""]",3254.84,{},157562,1,Africa +2024-08-10,60191,4825,"[""Keyboard""]",1892.62,"{"""": ""7%""}",62391,0,North America +2024-03-19,60192,1684,"[""Tablet"", ""Laptop"", ""Monitor""]",2792.45,"{""seasonal"": ""19%""}",168954,0,South America +2023-09-27,60193,1287,"[""Phone"", ""Laptop""]",2119.25,"{""promo"": ""16%""}",17049,1,North America +2023-05-15,60194,1604,"[""Charger"", ""Phone""]",3904.26,{},70737,0,South America +2023-03-16,60195,4641,"[""Charger"", ""Phone"", ""Monitor""]",4365.61,{},23952,0,Europe +2023-04-05,60196,4378,"[""Keyboard"", ""Laptop""]",3742.21,"{"""": ""16%""}",222965,0,Africa +2024-06-25,60197,760,"[""Charger"", ""Headphones""]",3153.22,{},184324,1,North America +2023-06-29,60198,853,"[""Laptop"", ""Keyboard"", ""Monitor""]",2765.97,{},17146,1,Europe +2023-10-25,60199,3295,"[""Monitor""]",3151.98,"{"""": ""22%""}",264904,0,Europe +2023-04-27,60200,5431,"[""Monitor""]",4394.86,"{""seasonal"": ""30%""}",178578,1,Europe +2024-12-02,60201,7582,"[""Phone"", ""Wireless Mouse""]",1123.39,"{""seasonal"": ""12%""}",219295,0,North America +2024-12-06,60202,3768,"[""Tablet"", ""Keyboard"", ""Monitor""]",2255.88,{},113154,1,South America +2024-08-14,60203,1740,"[""Laptop""]",2064.88,"{"""": ""30%""}",151485,1,Asia +2024-10-25,60204,2734,"[""Keyboard"", ""Wireless Mouse""]",1879.01,"{""promo"": ""5%""}",165808,1,Europe +2023-07-08,60205,2386,"[""Tablet""]",2959.04,{},193579,1,Europe +2024-06-16,60206,8510,"[""Phone"", ""Charger"", ""Wireless Mouse""]",298.54,"{""loyalty"": ""19%""}",8587,1,South America +2024-05-24,60207,9356,"[""Phone"", ""Monitor"", ""Laptop""]",242.24,{},107571,0,Africa +2024-04-03,60208,9051,"[""Laptop""]",3516.03,"{""loyalty"": ""14%""}",181488,0,North America +2023-10-02,60209,3896,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",368.94,{},139145,0,Africa +2024-09-13,60210,6693,"[""Wireless Mouse"", ""Phone""]",2044.64,{},203462,0,Africa +2023-07-07,60211,8619,"[""Charger"", ""Tablet""]",59.49,{},259474,0,Asia +2024-07-12,60212,5305,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4744.28,"{""seasonal"": ""29%""}",239830,0,Asia +2023-03-07,60213,3128,"[""Monitor""]",3192.58,"{""seasonal"": ""26%""}",174381,1,Africa +2024-09-07,60214,8436,"[""Tablet""]",3105.09,"{"""": ""13%""}",16855,0,South America +2023-07-31,60215,3106,"[""Tablet""]",2713.8,"{""seasonal"": ""22%""}",257039,0,Europe +2024-06-05,60216,7191,"[""Phone""]",70.91,{},256913,0,South America +2024-12-21,60217,5142,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",532.96,{},223083,0,Asia +2024-01-03,60218,987,"[""Tablet"", ""Laptop"", ""Keyboard""]",827.26,{},222783,1,Africa +2024-03-29,60219,2066,"[""Keyboard"", ""Laptop"", ""Phone""]",4679.16,"{"""": ""13%""}",247184,0,North America +2023-08-26,60220,2175,"[""Tablet"", ""Laptop""]",3505.43,"{""loyalty"": ""20%""}",205770,0,North America +2023-12-15,60221,8643,"[""Wireless Mouse"", ""Headphones""]",836.48,"{""promo"": ""28%""}",290839,1,South America +2023-12-13,60222,2580,"[""Charger"", ""Wireless Mouse""]",4389.9,{},156801,0,Asia +2023-11-05,60223,8954,"[""Phone"", ""Charger"", ""Keyboard""]",3484.23,"{""seasonal"": ""23%""}",196999,1,South America +2023-08-27,60224,3323,"[""Wireless Mouse"", ""Keyboard""]",4239.18,"{""seasonal"": ""19%""}",251773,1,South America +2023-12-21,60225,3550,"[""Tablet""]",2926.73,{},275346,0,Europe +2024-09-04,60226,1537,"[""Monitor"", ""Laptop""]",370.17,{},161319,0,South America +2024-06-18,60227,934,"[""Headphones""]",4445.95,{},223018,1,Asia +2024-01-14,60228,5923,"[""Keyboard"", ""Tablet""]",802.41,{},154277,1,Africa +2023-06-01,60229,6407,"[""Phone"", ""Tablet""]",3644.86,"{""seasonal"": ""22%""}",163901,1,Africa +2024-02-15,60230,7063,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4044.27,"{"""": ""21%""}",76793,0,Asia +2024-11-28,60231,3161,"[""Headphones"", ""Charger""]",2888.56,"{""loyalty"": ""28%""}",95812,1,Europe +2023-02-19,60232,3065,"[""Phone"", ""Charger""]",1099.67,"{""loyalty"": ""29%""}",6852,1,South America +2024-12-13,60233,8475,"[""Monitor""]",2156.53,{},213584,0,South America +2023-10-02,60234,2572,"[""Monitor"", ""Wireless Mouse""]",583.35,{},160581,1,South America +2024-12-06,60235,38,"[""Keyboard"", ""Laptop"", ""Headphones""]",1828.11,"{""seasonal"": ""8%""}",51674,0,South America +2023-02-06,60236,1838,"[""Wireless Mouse""]",4793.17,{},64564,0,Europe +2024-05-18,60237,5708,"[""Laptop"", ""Phone"", ""Charger""]",1816.46,{},171843,0,South America +2023-07-25,60238,6190,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",468.1,"{""seasonal"": ""28%""}",73924,1,North America +2024-03-07,60239,3704,"[""Wireless Mouse""]",3441.6,{},153788,1,Africa +2024-11-23,60240,2729,"[""Tablet"", ""Monitor""]",198.4,{},237441,0,Asia +2024-09-04,60241,9990,"[""Laptop""]",2318.16,{},14468,1,South America +2024-10-26,60242,6357,"[""Tablet"", ""Laptop"", ""Phone""]",4116.35,"{""seasonal"": ""29%""}",140622,0,South America +2023-03-06,60243,8416,"[""Laptop"", ""Headphones"", ""Charger""]",2990.94,"{""seasonal"": ""17%""}",94619,1,Europe +2024-12-18,60244,629,"[""Phone"", ""Keyboard""]",4289.11,{},111534,1,North America +2024-01-04,60245,7020,"[""Headphones""]",3722.83,{},243585,0,Asia +2023-12-13,60246,6799,"[""Phone"", ""Keyboard""]",1847.73,"{""promo"": ""6%""}",176917,1,South America +2023-10-14,60247,3670,"[""Phone"", ""Tablet"", ""Charger""]",4330.37,{},70830,1,Europe +2023-04-02,60248,4318,"[""Charger"", ""Headphones"", ""Phone""]",4962.43,{},77140,1,Asia +2024-07-20,60249,9534,"[""Phone""]",3694.39,"{""loyalty"": ""19%""}",89190,0,South America +2024-08-31,60250,4510,"[""Keyboard""]",216.0,"{""loyalty"": ""21%""}",114097,1,North America +2023-10-15,60251,4462,"[""Phone"", ""Charger""]",4318.15,"{"""": ""21%""}",274771,0,Africa +2023-08-25,60252,9078,"[""Charger""]",4759.8,"{"""": ""17%""}",33660,0,Europe +2023-11-04,60253,9874,"[""Charger"", ""Monitor"", ""Tablet""]",190.05,"{""seasonal"": ""10%""}",202388,0,South America +2024-11-12,60254,9575,"[""Laptop"", ""Headphones"", ""Keyboard""]",741.6,{},4420,0,Asia +2023-07-08,60255,9140,"[""Laptop"", ""Tablet""]",4353.33,"{""promo"": ""9%""}",263671,0,Asia +2024-03-14,60256,7948,"[""Keyboard"", ""Laptop"", ""Charger""]",2853.12,{},127058,0,Africa +2023-07-23,60257,2022,"[""Charger""]",672.68,"{""promo"": ""8%""}",64074,0,Asia +2023-12-19,60258,6207,"[""Laptop"", ""Tablet""]",4658.51,{},59489,0,Europe +2023-02-11,60259,4737,"[""Phone"", ""Charger"", ""Tablet""]",3209.01,"{"""": ""26%""}",104446,1,North America +2024-07-02,60260,7509,"[""Headphones"", ""Keyboard"", ""Charger""]",186.62,{},124259,1,Asia +2023-04-08,60261,7736,"[""Keyboard""]",1873.75,{},22933,0,South America +2023-11-29,60262,395,"[""Headphones""]",3633.78,{},140911,1,Asia +2023-09-30,60263,4737,"[""Phone""]",2578.56,"{""promo"": ""27%""}",297812,1,North America +2024-07-31,60264,4109,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",736.83,"{"""": ""15%""}",55346,1,North America +2024-11-24,60265,1505,"[""Keyboard"", ""Phone""]",3179.71,{},189061,0,Europe +2024-06-24,60266,182,"[""Keyboard""]",4337.15,{},51385,1,Africa +2024-10-29,60267,7468,"[""Wireless Mouse""]",1498.62,"{""seasonal"": ""14%""}",123728,0,North America +2024-12-26,60268,6479,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3571.65,"{"""": ""26%""}",218648,1,Africa +2024-04-10,60269,8411,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4462.21,"{""loyalty"": ""19%""}",65137,0,Europe +2024-07-14,60270,3526,"[""Phone"", ""Laptop"", ""Headphones""]",2916.31,"{""loyalty"": ""17%""}",73028,1,Africa +2024-02-02,60271,5655,"[""Keyboard"", ""Headphones"", ""Monitor""]",2654.68,"{""seasonal"": ""9%""}",274404,1,North America +2023-06-01,60272,8311,"[""Wireless Mouse""]",3455.79,"{"""": ""5%""}",251708,1,Asia +2024-09-09,60273,1248,"[""Keyboard"", ""Charger""]",3886.31,"{""seasonal"": ""22%""}",146055,1,South America +2023-03-15,60274,9268,"[""Headphones"", ""Laptop""]",1719.79,"{""seasonal"": ""30%""}",12307,0,Europe +2023-02-10,60275,2792,"[""Charger"", ""Tablet""]",1253.55,"{""promo"": ""21%""}",218942,0,Asia +2024-02-26,60276,9837,"[""Tablet"", ""Charger""]",2890.47,{},72336,1,North America +2024-04-11,60277,8348,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",85.9,"{"""": ""5%""}",63589,1,North America +2023-08-20,60278,7102,"[""Tablet""]",4962.32,{},115237,0,Asia +2023-03-24,60279,3615,"[""Laptop"", ""Headphones"", ""Charger""]",4391.45,{},54677,0,North America +2023-09-22,60280,3635,"[""Tablet""]",3630.68,"{""loyalty"": ""29%""}",225659,1,Asia +2023-08-06,60281,1970,"[""Monitor"", ""Tablet""]",1065.58,{},249100,0,Europe +2023-02-11,60282,6754,"[""Headphones"", ""Tablet""]",3780.65,{},97779,0,Asia +2024-10-10,60283,6181,"[""Laptop"", ""Monitor""]",302.63,{},141098,0,South America +2023-09-20,60284,2694,"[""Charger"", ""Tablet"", ""Keyboard""]",4210.78,{},31319,1,Africa +2024-10-01,60285,5930,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1506.46,"{""seasonal"": ""13%""}",12433,1,Europe +2024-05-22,60286,8082,"[""Headphones"", ""Charger"", ""Keyboard""]",975.62,{},73952,0,Europe +2024-08-27,60287,7873,"[""Charger"", ""Phone""]",3767.7,{},145905,0,South America +2024-07-24,60288,9686,"[""Keyboard""]",3277.21,{},199994,0,South America +2023-03-10,60289,1334,"[""Headphones""]",3978.07,{},48910,1,North America +2024-08-21,60290,7195,"[""Charger"", ""Phone"", ""Monitor""]",2245.96,"{""loyalty"": ""6%""}",6263,1,Europe +2023-11-20,60291,4965,"[""Monitor"", ""Charger""]",3177.46,"{""seasonal"": ""28%""}",127915,0,Europe +2024-09-21,60292,2151,"[""Headphones"", ""Wireless Mouse""]",2320.47,{},16154,0,North America +2023-04-24,60293,5246,"[""Headphones"", ""Monitor""]",2509.26,"{""loyalty"": ""14%""}",10254,1,Asia +2024-10-30,60294,1549,"[""Laptop"", ""Headphones"", ""Charger""]",3009.48,"{""seasonal"": ""24%""}",127631,0,North America +2023-11-15,60295,8104,"[""Laptop"", ""Tablet""]",2463.7,"{"""": ""13%""}",138415,0,Africa +2023-08-07,60296,9320,"[""Charger""]",1464.21,"{""seasonal"": ""16%""}",50485,0,Africa +2024-03-15,60297,2329,"[""Keyboard"", ""Monitor"", ""Laptop""]",4217.92,{},23867,0,Africa +2024-11-11,60298,7598,"[""Laptop""]",1360.38,{},208500,1,Europe +2023-07-26,60299,993,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1717.27,{},209853,0,South America +2024-11-08,60300,9060,"[""Wireless Mouse"", ""Laptop""]",3438.14,{},183543,0,South America +2024-06-16,60301,5535,"[""Laptop"", ""Wireless Mouse""]",1709.99,"{""loyalty"": ""14%""}",262434,1,South America +2024-02-04,60302,2959,"[""Charger"", ""Phone""]",3654.74,"{""promo"": ""11%""}",261464,0,Asia +2023-02-08,60303,616,"[""Tablet"", ""Monitor""]",2146.62,{},161535,1,Africa +2023-05-20,60304,8332,"[""Tablet"", ""Laptop""]",3889.24,"{""loyalty"": ""18%""}",245455,0,Europe +2023-05-28,60305,4175,"[""Phone""]",2441.45,"{""loyalty"": ""9%""}",277094,0,Europe +2024-02-17,60306,9370,"[""Tablet"", ""Keyboard""]",2389.96,{},6506,0,North America +2024-07-15,60307,8398,"[""Charger"", ""Tablet""]",3011.65,"{"""": ""9%""}",185072,1,North America +2024-06-24,60308,1310,"[""Headphones""]",204.46,{},253356,0,Europe +2024-10-31,60309,7926,"[""Keyboard"", ""Charger"", ""Tablet""]",3177.99,{},13517,0,South America +2024-05-29,60310,3624,"[""Monitor"", ""Phone"", ""Tablet""]",3820.71,"{""loyalty"": ""30%""}",69245,1,North America +2024-06-17,60311,7415,"[""Phone"", ""Headphones""]",3077.09,"{"""": ""8%""}",145938,0,North America +2024-08-30,60312,5247,"[""Tablet""]",1043.76,"{""seasonal"": ""22%""}",185346,0,Europe +2023-04-29,60313,8958,"[""Laptop"", ""Monitor"", ""Tablet""]",2595.2,"{""loyalty"": ""6%""}",233617,1,Asia +2024-07-08,60314,3611,"[""Charger"", ""Keyboard""]",644.08,{},5984,1,South America +2024-07-13,60315,4245,"[""Laptop"", ""Monitor"", ""Headphones""]",4705.31,{},255248,0,Africa +2023-06-07,60316,2737,"[""Tablet""]",3172.81,{},182504,1,North America +2024-10-10,60317,1607,"[""Monitor"", ""Tablet""]",1170.12,{},289387,0,Europe +2023-08-19,60318,3663,"[""Phone"", ""Laptop""]",4658.78,"{""seasonal"": ""15%""}",25164,1,Europe +2023-03-31,60319,1163,"[""Tablet""]",909.53,{},202175,1,Africa +2023-11-09,60320,2603,"[""Tablet""]",3598.6,"{""loyalty"": ""6%""}",145302,1,Africa +2023-01-31,60321,2483,"[""Phone""]",1135.9,"{""loyalty"": ""19%""}",242225,1,Asia +2023-03-23,60322,6867,"[""Keyboard"", ""Laptop""]",4395.53,"{""seasonal"": ""22%""}",18984,0,North America +2024-06-19,60323,9208,"[""Headphones"", ""Phone""]",4615.41,"{""promo"": ""5%""}",199083,1,Europe +2024-11-17,60324,8379,"[""Keyboard"", ""Phone""]",4620.69,{},99411,1,South America +2024-03-14,60325,8362,"[""Charger""]",4229.3,{},272485,1,North America +2023-04-05,60326,5443,"[""Charger"", ""Laptop"", ""Phone""]",2092.05,{},18082,0,North America +2023-04-29,60327,1110,"[""Tablet""]",1768.6,{},95530,0,Africa +2023-01-23,60328,7206,"[""Charger""]",604.86,"{"""": ""14%""}",188081,0,Africa +2023-10-31,60329,9713,"[""Laptop"", ""Keyboard""]",452.53,{},256289,0,Europe +2024-05-04,60330,3679,"[""Wireless Mouse""]",3136.03,"{""promo"": ""26%""}",245713,1,Asia +2023-06-28,60331,9975,"[""Laptop""]",4863.68,{},142873,1,Europe +2023-05-05,60332,1990,"[""Phone""]",714.1,{},158627,0,North America +2024-12-29,60333,2544,"[""Keyboard"", ""Laptop""]",2392.71,"{""seasonal"": ""28%""}",73022,1,Africa +2024-03-12,60334,6624,"[""Laptop"", ""Wireless Mouse""]",531.69,"{""seasonal"": ""19%""}",108683,0,North America +2023-03-07,60335,9873,"[""Phone"", ""Keyboard""]",3333.1,{},7209,0,South America +2023-02-28,60336,8738,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3418.79,{},14603,1,North America +2023-09-19,60337,7243,"[""Wireless Mouse"", ""Monitor""]",2099.05,"{""loyalty"": ""26%""}",133017,0,Africa +2023-04-09,60338,183,"[""Charger""]",2935.74,{},278885,1,North America +2023-06-21,60339,2423,"[""Tablet""]",4420.54,{},16240,0,Europe +2024-12-06,60340,8822,"[""Keyboard"", ""Phone"", ""Laptop""]",961.73,{},71837,1,Europe +2024-08-16,60341,8688,"[""Charger""]",1363.53,{},173233,0,North America +2023-12-02,60342,323,"[""Headphones"", ""Phone""]",1099.22,"{"""": ""25%""}",25234,1,Asia +2023-08-10,60343,6846,"[""Headphones"", ""Phone""]",89.58,"{""seasonal"": ""21%""}",173917,1,North America +2024-11-13,60344,4086,"[""Phone""]",937.04,{},259177,0,Asia +2024-08-15,60345,6899,"[""Charger"", ""Wireless Mouse""]",1876.57,"{""loyalty"": ""7%""}",287569,1,Africa +2024-11-14,60346,6347,"[""Tablet"", ""Monitor"", ""Phone""]",4109.33,"{"""": ""21%""}",171739,0,Europe +2023-05-24,60347,6616,"[""Headphones"", ""Keyboard""]",1278.55,{},247474,0,Asia +2024-12-24,60348,259,"[""Phone"", ""Charger""]",3326.69,"{""promo"": ""17%""}",85802,1,North America +2023-09-18,60349,1716,"[""Headphones"", ""Keyboard""]",4886.23,"{""seasonal"": ""15%""}",95345,1,South America +2023-12-22,60350,9370,"[""Phone"", ""Laptop""]",2212.05,{},2139,0,South America +2024-07-05,60351,5747,"[""Wireless Mouse"", ""Keyboard""]",3675.7,{},191927,0,Africa +2024-01-15,60352,7574,"[""Laptop""]",1663.6,{},223294,0,Europe +2024-04-06,60353,5494,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1638.43,{},198556,1,Europe +2023-03-26,60354,1624,"[""Wireless Mouse"", ""Monitor""]",1734.15,"{"""": ""10%""}",262389,0,Africa +2024-05-02,60355,7245,"[""Tablet""]",3568.2,{},52315,0,South America +2023-09-29,60356,9624,"[""Monitor""]",4865.26,"{""promo"": ""21%""}",204061,1,North America +2024-12-08,60357,6579,"[""Tablet"", ""Headphones"", ""Charger""]",850.03,"{""loyalty"": ""10%""}",20166,1,Africa +2024-10-19,60358,8498,"[""Laptop""]",2395.89,"{"""": ""5%""}",20868,0,Europe +2023-09-03,60359,6863,"[""Headphones"", ""Laptop""]",767.5,"{""loyalty"": ""28%""}",227884,1,North America +2023-03-28,60360,8354,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",547.28,"{""seasonal"": ""20%""}",242669,1,Asia +2023-07-30,60361,4411,"[""Headphones""]",4452.82,"{"""": ""26%""}",5485,1,South America +2023-08-07,60362,5020,"[""Wireless Mouse"", ""Monitor""]",2337.33,"{""seasonal"": ""11%""}",151018,0,South America +2024-09-06,60363,4741,"[""Monitor"", ""Tablet"", ""Headphones""]",1201.23,"{"""": ""25%""}",108861,0,Europe +2023-11-01,60364,7495,"[""Tablet"", ""Monitor"", ""Headphones""]",1744.16,"{""loyalty"": ""24%""}",267629,0,South America +2023-10-04,60365,973,"[""Headphones"", ""Keyboard"", ""Laptop""]",4691.26,{},23671,0,Africa +2023-10-25,60366,9208,"[""Headphones"", ""Tablet""]",248.92,"{""loyalty"": ""24%""}",234192,1,Europe +2023-02-23,60367,5114,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",588.82,"{""promo"": ""8%""}",276445,0,Europe +2023-02-07,60368,1570,"[""Headphones""]",3881.31,{},289168,1,North America +2024-06-17,60369,1503,"[""Laptop""]",4287.85,{},230888,0,South America +2024-04-12,60370,3465,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",778.98,"{""loyalty"": ""16%""}",247347,0,North America +2023-07-09,60371,3983,"[""Wireless Mouse"", ""Headphones""]",3148.63,{},206629,0,Africa +2024-02-17,60372,278,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1490.93,"{""seasonal"": ""24%""}",133218,0,North America +2023-08-12,60373,6821,"[""Keyboard"", ""Laptop"", ""Charger""]",2298.66,"{""promo"": ""14%""}",24110,1,Europe +2024-05-31,60374,6268,"[""Monitor""]",1214.93,"{""loyalty"": ""18%""}",177270,1,North America +2024-07-20,60375,5074,"[""Headphones"", ""Phone"", ""Laptop""]",3703.3,{},163868,0,North America +2023-03-20,60376,3508,"[""Tablet"", ""Laptop"", ""Headphones""]",2736.3,"{"""": ""24%""}",111329,0,Asia +2024-04-21,60377,7873,"[""Monitor"", ""Tablet"", ""Laptop""]",2208.17,{},269639,0,Europe +2024-04-12,60378,2957,"[""Phone"", ""Monitor""]",2763.7,"{""seasonal"": ""12%""}",188521,0,Africa +2024-09-25,60379,9905,"[""Keyboard""]",3308.68,"{""loyalty"": ""7%""}",71443,1,North America +2024-01-09,60380,3303,"[""Charger"", ""Tablet"", ""Phone""]",2578.25,{},128523,0,Africa +2024-07-10,60381,401,"[""Charger"", ""Headphones"", ""Tablet""]",3871.44,"{"""": ""28%""}",183804,1,Europe +2023-05-02,60382,5834,"[""Charger""]",2579.51,"{""loyalty"": ""18%""}",47370,1,Asia +2023-07-06,60383,3445,"[""Keyboard"", ""Laptop"", ""Monitor""]",1335.47,"{""promo"": ""6%""}",232635,1,North America +2024-01-14,60384,3324,"[""Laptop"", ""Charger"", ""Monitor""]",1784.53,{},163230,0,Asia +2023-05-12,60385,6761,"[""Laptop""]",2005.55,{},4329,1,South America +2024-12-26,60386,4266,"[""Monitor"", ""Wireless Mouse""]",2304.18,{},236212,1,Europe +2023-05-10,60387,7591,"[""Headphones""]",3683.46,"{""loyalty"": ""23%""}",29845,1,Africa +2023-01-20,60388,7156,"[""Charger"", ""Monitor"", ""Tablet""]",3512.07,"{""seasonal"": ""29%""}",263306,1,Africa +2024-03-12,60389,3985,"[""Headphones""]",2946.89,"{""promo"": ""10%""}",207025,1,Europe +2023-09-11,60390,8092,"[""Keyboard""]",2120.05,"{""seasonal"": ""8%""}",235619,1,South America +2024-06-11,60391,6057,"[""Keyboard"", ""Tablet""]",1456.05,"{"""": ""15%""}",291372,0,Asia +2024-03-05,60392,2772,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4546.31,{},23117,1,Africa +2024-07-06,60393,5637,"[""Wireless Mouse""]",3299.07,"{""seasonal"": ""21%""}",35998,0,North America +2023-03-17,60394,3320,"[""Headphones""]",700.62,"{""seasonal"": ""27%""}",183961,0,Europe +2024-03-07,60395,7422,"[""Phone""]",2318.1,{},81170,0,Europe +2023-11-02,60396,2586,"[""Laptop""]",3364.96,{},282411,1,Europe +2023-11-05,60397,6652,"[""Phone"", ""Tablet""]",2448.46,"{""promo"": ""24%""}",289891,0,Asia +2023-03-13,60398,2020,"[""Laptop"", ""Tablet""]",4697.72,{},24659,1,Africa +2024-10-27,60399,3285,"[""Tablet"", ""Laptop"", ""Monitor""]",1588.48,{},137645,1,Africa +2024-10-12,60400,313,"[""Laptop"", ""Monitor"", ""Charger""]",1501.08,{},269934,0,Asia +2023-12-16,60401,6495,"[""Monitor"", ""Phone"", ""Keyboard""]",3314.76,"{""promo"": ""26%""}",29106,1,Europe +2023-04-10,60402,4206,"[""Charger""]",385.93,{},223148,0,South America +2024-03-29,60403,7612,"[""Phone""]",193.13,{},73946,1,Asia +2023-10-12,60404,2545,"[""Phone""]",1856.12,{},87956,1,Asia +2023-10-29,60405,5033,"[""Tablet""]",1956.35,"{"""": ""27%""}",131150,0,Europe +2023-12-22,60406,4690,"[""Charger"", ""Headphones"", ""Keyboard""]",3217.33,{},251271,1,Europe +2023-08-23,60407,3601,"[""Phone""]",4119.31,{},147652,1,Africa +2024-11-06,60408,9731,"[""Monitor""]",2530.66,"{""loyalty"": ""9%""}",13603,0,Africa +2024-08-05,60409,5846,"[""Laptop""]",235.6,{},204547,1,Asia +2024-02-23,60410,455,"[""Headphones""]",2856.1,{},138812,0,Asia +2024-11-16,60411,870,"[""Charger""]",2352.3,"{"""": ""30%""}",262772,0,Asia +2024-01-10,60412,9591,"[""Tablet"", ""Headphones"", ""Monitor""]",2268.8,"{""promo"": ""9%""}",171035,1,Africa +2023-03-09,60413,4750,"[""Keyboard"", ""Phone""]",2139.86,"{""promo"": ""14%""}",271993,1,North America +2024-08-16,60414,3359,"[""Laptop""]",3628.34,{},2226,1,Africa +2024-09-06,60415,2750,"[""Keyboard"", ""Monitor"", ""Charger""]",769.63,"{"""": ""30%""}",166039,0,South America +2024-07-14,60416,6188,"[""Headphones"", ""Keyboard"", ""Laptop""]",4264.26,{},32143,1,South America +2023-02-18,60417,2939,"[""Wireless Mouse""]",624.59,{},143312,1,South America +2023-04-20,60418,2568,"[""Tablet"", ""Monitor"", ""Keyboard""]",3727.28,{},58598,1,Europe +2024-05-07,60419,4638,"[""Headphones""]",2045.83,"{""seasonal"": ""14%""}",296023,1,North America +2024-09-23,60420,6906,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3122.74,"{""loyalty"": ""18%""}",198749,0,Asia +2023-05-15,60421,4973,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2971.3,{},39212,1,Africa +2024-11-18,60422,9037,"[""Wireless Mouse"", ""Tablet""]",1308.28,{},295326,1,Asia +2023-12-19,60423,8895,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2011.28,{},284419,1,Africa +2024-06-19,60424,2675,"[""Laptop"", ""Keyboard"", ""Headphones""]",3859.9,"{""loyalty"": ""12%""}",234307,0,South America +2023-06-07,60425,3880,"[""Headphones""]",3855.41,"{""seasonal"": ""14%""}",52637,0,Africa +2023-05-26,60426,4040,"[""Headphones"", ""Monitor""]",3621.65,"{"""": ""24%""}",92063,1,Europe +2023-07-28,60427,9937,"[""Laptop"", ""Headphones"", ""Monitor""]",4777.53,{},293217,0,South America +2024-06-14,60428,2409,"[""Charger""]",118.88,"{""loyalty"": ""28%""}",89510,1,Asia +2024-11-04,60429,9962,"[""Keyboard""]",2793.18,{},158498,1,Asia +2024-01-23,60430,9606,"[""Charger""]",4244.08,"{""loyalty"": ""24%""}",270990,1,Europe +2023-10-21,60431,9236,"[""Headphones""]",719.32,{},193438,0,Asia +2024-01-07,60432,4376,"[""Monitor""]",4822.58,{},200060,1,South America +2023-07-13,60433,3125,"[""Monitor"", ""Laptop"", ""Phone""]",390.24,"{""loyalty"": ""26%""}",232367,0,Asia +2024-05-15,60434,2174,"[""Headphones""]",2189.05,{},225706,1,South America +2024-03-05,60435,2393,"[""Monitor"", ""Wireless Mouse""]",2668.05,{},146027,0,South America +2024-01-12,60436,7973,"[""Headphones"", ""Monitor""]",1166.01,{},159620,0,Africa +2024-08-13,60437,7703,"[""Charger""]",1343.75,"{""promo"": ""17%""}",213155,0,Europe +2023-06-15,60438,7498,"[""Wireless Mouse""]",4357.33,"{"""": ""20%""}",249234,0,Asia +2023-01-25,60439,6853,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1425.63,"{""loyalty"": ""13%""}",85277,1,North America +2024-01-19,60440,6067,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1102.93,{},31222,1,North America +2024-12-29,60441,6441,"[""Headphones""]",698.0,{},176586,1,Asia +2023-02-09,60442,9299,"[""Headphones"", ""Wireless Mouse""]",1377.55,"{""seasonal"": ""19%""}",205813,0,Europe +2023-04-08,60443,7449,"[""Laptop"", ""Wireless Mouse""]",2287.24,"{""promo"": ""17%""}",105366,1,South America +2024-11-24,60444,3501,"[""Monitor"", ""Laptop"", ""Charger""]",913.58,"{"""": ""29%""}",271122,0,South America +2023-01-29,60445,1621,"[""Tablet"", ""Laptop""]",3740.19,{},127647,0,North America +2023-11-19,60446,141,"[""Laptop""]",490.22,"{""promo"": ""15%""}",121620,1,Europe +2024-07-31,60447,5548,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1223.82,"{""loyalty"": ""22%""}",197700,0,North America +2024-12-23,60448,6441,"[""Monitor"", ""Keyboard"", ""Phone""]",2982.15,"{""seasonal"": ""7%""}",98930,1,Europe +2023-08-01,60449,1234,"[""Wireless Mouse""]",916.48,{},12562,0,North America +2023-07-07,60450,2146,"[""Monitor"", ""Charger""]",1888.91,{},174869,0,Europe +2024-07-30,60451,2708,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",852.11,{},88880,0,Africa +2023-07-02,60452,8291,"[""Wireless Mouse"", ""Keyboard""]",4383.12,{},273790,0,South America +2023-10-24,60453,2061,"[""Keyboard"", ""Laptop"", ""Monitor""]",484.4,{},85196,1,Asia +2024-05-24,60454,8938,"[""Keyboard"", ""Phone"", ""Tablet""]",4181.12,"{""seasonal"": ""6%""}",135771,0,South America +2023-11-05,60455,1684,"[""Tablet"", ""Charger"", ""Laptop""]",4778.7,"{"""": ""26%""}",49511,1,South America +2023-01-07,60456,7485,"[""Tablet"", ""Monitor"", ""Headphones""]",364.44,{},95393,1,South America +2023-12-27,60457,1295,"[""Keyboard""]",1940.28,"{""promo"": ""21%""}",84956,1,Europe +2024-12-28,60458,1607,"[""Keyboard"", ""Tablet""]",4140.4,"{"""": ""21%""}",251782,0,North America +2024-05-27,60459,7362,"[""Wireless Mouse"", ""Tablet""]",3827.14,"{""promo"": ""9%""}",290499,1,South America +2024-07-27,60460,7324,"[""Laptop"", ""Monitor"", ""Charger""]",4537.08,"{""promo"": ""24%""}",231232,1,Asia +2023-10-22,60461,9540,"[""Charger""]",2011.1,"{"""": ""18%""}",18755,1,Europe +2024-06-08,60462,9496,"[""Laptop"", ""Tablet"", ""Monitor""]",2636.94,"{""loyalty"": ""20%""}",280482,0,Europe +2023-08-23,60463,556,"[""Phone""]",4447.61,{},246842,0,Europe +2024-02-25,60464,5266,"[""Laptop""]",1273.33,"{""promo"": ""30%""}",82561,1,Asia +2023-06-06,60465,5526,"[""Headphones"", ""Tablet""]",3403.38,{},151946,1,Asia +2024-02-19,60466,967,"[""Charger""]",3225.24,"{""promo"": ""11%""}",62647,1,Africa +2023-05-15,60467,652,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1280.24,"{""seasonal"": ""18%""}",137010,1,Africa +2023-12-18,60468,8221,"[""Laptop""]",90.48,"{""loyalty"": ""24%""}",232503,1,North America +2023-07-19,60469,3308,"[""Wireless Mouse""]",681.52,{},212793,0,North America +2024-05-28,60470,1513,"[""Keyboard""]",1244.75,"{""promo"": ""23%""}",107476,1,Africa +2023-12-31,60471,3950,"[""Charger""]",1534.09,"{""loyalty"": ""7%""}",259014,0,Asia +2023-05-17,60472,7041,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1272.26,"{""loyalty"": ""6%""}",249662,1,Europe +2023-06-22,60473,3009,"[""Phone"", ""Monitor""]",3671.75,"{""loyalty"": ""17%""}",27110,0,North America +2023-04-04,60474,5179,"[""Monitor"", ""Phone""]",3790.34,{},136668,0,South America +2023-09-27,60475,9034,"[""Charger""]",1349.75,{},6140,0,South America +2024-03-27,60476,5985,"[""Wireless Mouse""]",3155.13,"{""loyalty"": ""30%""}",39672,1,North America +2023-02-18,60477,2682,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1193.76,"{"""": ""12%""}",40595,1,Europe +2024-09-04,60478,6672,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",498.87,{},295391,1,Africa +2024-03-30,60479,7976,"[""Headphones""]",2828.77,{},208381,1,Africa +2023-03-17,60480,9304,"[""Phone""]",4121.78,"{"""": ""28%""}",120123,0,Africa +2023-08-26,60481,8374,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4651.44,{},268026,0,North America +2023-09-23,60482,107,"[""Tablet""]",3060.38,{},35161,0,Asia +2024-03-09,60483,8451,"[""Charger"", ""Laptop""]",2802.56,{},190603,1,Asia +2023-04-15,60484,6814,"[""Headphones""]",4916.88,{},117139,0,Europe +2023-06-04,60485,1912,"[""Charger""]",2296.85,"{""promo"": ""23%""}",98064,0,Asia +2024-09-11,60486,5554,"[""Monitor"", ""Laptop""]",2900.62,{},286863,0,Europe +2024-11-02,60487,3809,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4274.67,"{""loyalty"": ""8%""}",233417,1,Africa +2023-08-19,60488,3360,"[""Tablet"", ""Monitor""]",1602.89,{},234313,0,Africa +2023-10-28,60489,2538,"[""Laptop"", ""Keyboard""]",2624.56,"{""promo"": ""29%""}",42712,0,Asia +2023-04-05,60490,3032,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3664.52,"{""loyalty"": ""18%""}",286106,0,South America +2023-02-24,60491,9780,"[""Phone""]",1962.6,{},296574,1,South America +2024-11-20,60492,2462,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",415.29,"{""seasonal"": ""21%""}",13827,0,Europe +2023-11-02,60493,3641,"[""Wireless Mouse"", ""Headphones""]",1957.43,"{""promo"": ""14%""}",3054,1,North America +2023-06-17,60494,1889,"[""Phone"", ""Wireless Mouse""]",4593.06,{},122456,1,Africa +2023-04-23,60495,6728,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3043.13,{},163052,0,South America +2023-05-06,60496,8278,"[""Wireless Mouse"", ""Monitor""]",2707.72,"{""loyalty"": ""26%""}",254513,1,Africa +2024-04-19,60497,2146,"[""Tablet"", ""Wireless Mouse""]",3219.61,"{""promo"": ""26%""}",259066,0,North America +2024-10-27,60498,2579,"[""Laptop""]",1203.36,{},123419,0,Europe +2024-01-19,60499,7269,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2029.5,{},11632,0,Europe +2023-04-08,60500,9595,"[""Wireless Mouse""]",3839.33,{},10855,1,Europe +2023-09-05,60501,566,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3343.4,"{"""": ""20%""}",134181,1,Europe +2024-08-20,60502,1393,"[""Tablet""]",3075.05,{},284159,1,Africa +2023-03-11,60503,6662,"[""Monitor"", ""Wireless Mouse""]",4285.15,"{""loyalty"": ""7%""}",19546,0,Asia +2023-03-23,60504,7451,"[""Headphones""]",673.19,{},203426,1,Asia +2023-02-03,60505,3075,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4901.4,{},251129,1,Africa +2023-11-01,60506,8443,"[""Phone""]",3580.75,"{""seasonal"": ""29%""}",70436,1,Africa +2023-08-07,60507,6140,"[""Tablet"", ""Laptop""]",258.36,"{""seasonal"": ""26%""}",285006,1,Africa +2023-07-01,60508,1043,"[""Charger"", ""Laptop"", ""Monitor""]",1254.44,{},261380,1,Europe +2023-03-25,60509,5079,"[""Charger"", ""Tablet""]",4874.69,"{""seasonal"": ""16%""}",133570,0,Asia +2024-05-16,60510,3200,"[""Phone"", ""Wireless Mouse""]",1656.64,{},181752,0,Europe +2024-07-16,60511,7289,"[""Wireless Mouse""]",1124.93,"{""promo"": ""29%""}",36382,0,Africa +2024-07-08,60512,990,"[""Wireless Mouse""]",565.01,"{""promo"": ""7%""}",257836,1,North America +2024-10-13,60513,3115,"[""Headphones""]",3782.17,{},187792,1,South America +2024-12-06,60514,8884,"[""Headphones"", ""Laptop"", ""Tablet""]",3776.72,{},42527,0,Africa +2024-01-30,60515,5643,"[""Wireless Mouse""]",4699.49,{},15302,0,Europe +2023-08-05,60516,1844,"[""Laptop"", ""Phone"", ""Keyboard""]",2521.65,{},259836,0,Europe +2024-01-11,60517,3353,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",260.1,{},54912,1,Europe +2024-10-01,60518,3156,"[""Headphones"", ""Keyboard""]",1433.27,{},140389,0,Africa +2023-09-05,60519,947,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3125.46,{},170409,1,South America +2024-05-24,60520,8274,"[""Headphones""]",3204.54,{},223595,0,Europe +2023-04-29,60521,7971,"[""Tablet"", ""Keyboard""]",3319.3,{},107030,0,Asia +2023-04-22,60522,7149,"[""Keyboard"", ""Wireless Mouse""]",1011.04,"{""seasonal"": ""16%""}",81203,1,Europe +2023-07-14,60523,1609,"[""Phone"", ""Headphones""]",1371.42,"{""seasonal"": ""14%""}",193581,0,South America +2024-10-10,60524,2010,"[""Phone"", ""Tablet"", ""Laptop""]",3366.73,"{""loyalty"": ""14%""}",120646,0,Asia +2023-01-11,60525,7247,"[""Monitor"", ""Wireless Mouse""]",1309.67,"{""promo"": ""9%""}",204661,0,North America +2024-06-24,60526,7363,"[""Wireless Mouse""]",903.09,"{""promo"": ""14%""}",190015,1,Asia +2024-11-28,60527,6794,"[""Laptop""]",2477.0,"{""seasonal"": ""18%""}",244711,0,South America +2023-04-21,60528,5915,"[""Keyboard"", ""Headphones""]",4207.81,"{""loyalty"": ""8%""}",187628,0,Europe +2024-11-12,60529,2114,"[""Wireless Mouse"", ""Phone""]",2537.45,{},239262,0,Asia +2023-06-09,60530,3267,"[""Monitor""]",1088.18,"{""loyalty"": ""30%""}",174867,1,South America +2024-12-05,60531,5262,"[""Charger""]",1520.71,{},40033,0,South America +2023-11-28,60532,5072,"[""Charger"", ""Laptop""]",1665.71,"{"""": ""24%""}",103030,0,Africa +2023-11-08,60533,4493,"[""Charger"", ""Headphones"", ""Tablet""]",1154.36,{},136294,0,South America +2023-11-18,60534,7586,"[""Keyboard"", ""Monitor"", ""Headphones""]",3538.59,"{""promo"": ""20%""}",107744,1,Africa +2024-12-30,60535,220,"[""Phone""]",366.22,"{""seasonal"": ""17%""}",247435,1,South America +2023-10-24,60536,3157,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",396.42,"{""promo"": ""18%""}",25565,0,Asia +2024-10-16,60537,5899,"[""Laptop"", ""Headphones"", ""Keyboard""]",1104.07,{},69894,1,Europe +2023-01-30,60538,6898,"[""Headphones"", ""Laptop"", ""Tablet""]",3289.66,"{""seasonal"": ""23%""}",249924,1,North America +2023-02-01,60539,6744,"[""Keyboard"", ""Headphones"", ""Laptop""]",1805.44,"{""promo"": ""21%""}",212506,0,Europe +2023-07-11,60540,6083,"[""Headphones"", ""Tablet""]",716.56,"{""promo"": ""20%""}",73580,1,Europe +2024-09-06,60541,8648,"[""Wireless Mouse""]",3728.13,"{""promo"": ""7%""}",216487,1,Asia +2024-04-07,60542,6409,"[""Wireless Mouse"", ""Keyboard""]",2861.21,{},273892,0,Asia +2023-06-16,60543,8677,"[""Headphones""]",602.72,{},69991,1,South America +2024-07-30,60544,5604,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",210.51,"{""loyalty"": ""14%""}",218221,0,North America +2024-08-26,60545,7980,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1702.96,{},19804,0,North America +2023-10-05,60546,5806,"[""Headphones"", ""Tablet""]",1257.04,{},254257,0,North America +2024-11-08,60547,310,"[""Wireless Mouse""]",2394.58,"{"""": ""5%""}",15521,1,Asia +2023-07-20,60548,4666,"[""Tablet""]",4802.85,{},290946,1,North America +2023-04-01,60549,3018,"[""Monitor"", ""Headphones"", ""Tablet""]",913.59,{},32070,0,Europe +2023-02-19,60550,1151,"[""Wireless Mouse"", ""Headphones""]",2831.86,{},129701,1,Europe +2023-10-24,60551,7472,"[""Tablet""]",275.27,"{""promo"": ""27%""}",273749,1,South America +2023-08-18,60552,3444,"[""Monitor"", ""Headphones""]",3285.39,"{""loyalty"": ""22%""}",244845,1,Africa +2023-12-10,60553,9983,"[""Monitor"", ""Tablet""]",1627.99,"{""promo"": ""6%""}",7070,0,Europe +2024-08-24,60554,9487,"[""Monitor"", ""Phone""]",2197.14,"{""seasonal"": ""16%""}",53664,1,North America +2024-01-05,60555,8892,"[""Keyboard""]",3675.07,{},156324,1,Asia +2023-09-22,60556,3336,"[""Headphones"", ""Phone""]",2596.92,"{""loyalty"": ""16%""}",244737,1,Asia +2023-10-12,60557,1223,"[""Phone""]",426.81,"{"""": ""8%""}",199432,0,North America +2023-01-19,60558,417,"[""Wireless Mouse""]",1592.98,{},279631,1,North America +2023-09-24,60559,6559,"[""Charger"", ""Keyboard"", ""Headphones""]",1730.98,{},93812,1,Africa +2023-10-02,60560,470,"[""Headphones"", ""Laptop"", ""Monitor""]",1791.39,"{""seasonal"": ""18%""}",15412,0,Asia +2024-12-29,60561,819,"[""Headphones"", ""Wireless Mouse""]",235.83,{},258981,1,North America +2023-11-03,60562,6977,"[""Phone"", ""Monitor""]",3948.65,"{""promo"": ""21%""}",152534,0,South America +2023-09-19,60563,7892,"[""Phone"", ""Charger""]",2890.78,"{""loyalty"": ""9%""}",20365,0,North America +2024-06-18,60564,641,"[""Headphones"", ""Keyboard""]",4551.91,{},73080,1,Europe +2023-03-05,60565,9743,"[""Tablet"", ""Headphones"", ""Monitor""]",3305.86,{},9297,1,Europe +2024-05-11,60566,4886,"[""Keyboard"", ""Tablet""]",4348.49,{},211459,1,Asia +2024-07-24,60567,627,"[""Headphones""]",4257.48,"{""loyalty"": ""25%""}",139957,1,Africa +2024-04-06,60568,4094,"[""Phone""]",3083.53,"{""seasonal"": ""21%""}",114317,0,Europe +2023-08-12,60569,8524,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3655.4,{},192747,1,South America +2023-04-28,60570,6328,"[""Headphones"", ""Charger""]",934.98,"{""promo"": ""10%""}",56004,1,Asia +2024-05-29,60571,3611,"[""Laptop"", ""Keyboard"", ""Charger""]",3496.33,{},203351,1,North America +2023-07-01,60572,6903,"[""Laptop"", ""Monitor""]",3187.89,"{"""": ""17%""}",38687,1,Europe +2024-10-25,60573,7724,"[""Wireless Mouse""]",1409.72,"{""loyalty"": ""17%""}",209727,1,Europe +2023-09-12,60574,2056,"[""Headphones""]",3819.31,"{"""": ""8%""}",281754,1,Europe +2024-02-20,60575,4082,"[""Laptop"", ""Tablet""]",2852.4,"{""promo"": ""7%""}",210566,1,Africa +2024-06-06,60576,3938,"[""Headphones""]",3970.25,"{""seasonal"": ""6%""}",103702,0,Asia +2024-08-19,60577,7459,"[""Phone""]",506.49,{},264287,1,South America +2024-07-24,60578,8783,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3710.49,{},15896,1,Europe +2023-07-11,60579,4514,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",326.44,"{"""": ""11%""}",35589,0,Europe +2024-11-15,60580,5859,"[""Phone""]",1534.73,"{""loyalty"": ""19%""}",152709,1,Europe +2023-09-13,60581,4916,"[""Monitor"", ""Headphones""]",1912.25,"{""loyalty"": ""15%""}",270748,1,Africa +2024-08-19,60582,5398,"[""Headphones"", ""Charger""]",4691.85,"{""seasonal"": ""6%""}",34551,0,South America +2023-05-04,60583,1213,"[""Monitor"", ""Laptop""]",979.66,{},54314,0,Europe +2023-08-26,60584,9788,"[""Headphones""]",1027.66,{},286923,0,Asia +2023-05-10,60585,2327,"[""Charger""]",1429.69,{},31845,0,Europe +2024-07-27,60586,6862,"[""Keyboard""]",1045.08,"{""promo"": ""21%""}",184927,1,Asia +2023-05-08,60587,7154,"[""Laptop"", ""Charger""]",3221.78,{},73207,1,North America +2023-05-29,60588,6704,"[""Tablet"", ""Laptop"", ""Keyboard""]",4336.34,"{"""": ""9%""}",261758,1,North America +2023-07-25,60589,428,"[""Keyboard"", ""Headphones""]",2278.51,"{"""": ""11%""}",272488,0,Africa +2024-04-07,60590,609,"[""Phone"", ""Keyboard"", ""Charger""]",1561.9,{},272436,0,Africa +2023-01-28,60591,6284,"[""Monitor"", ""Laptop""]",1906.23,"{""promo"": ""14%""}",253134,1,North America +2024-10-24,60592,4075,"[""Headphones"", ""Laptop""]",4183.86,"{""promo"": ""16%""}",209821,0,Asia +2024-02-09,60593,6007,"[""Monitor""]",3361.48,"{""seasonal"": ""25%""}",49704,0,North America +2023-01-22,60594,5404,"[""Charger"", ""Laptop"", ""Keyboard""]",2061.95,"{"""": ""7%""}",100272,0,Africa +2024-07-13,60595,2789,"[""Tablet""]",4049.25,"{"""": ""18%""}",38977,1,Asia +2023-06-13,60596,2119,"[""Phone"", ""Tablet"", ""Charger""]",1971.01,{},35441,1,Asia +2024-12-21,60597,1504,"[""Tablet"", ""Headphones"", ""Keyboard""]",2284.04,"{""promo"": ""7%""}",277373,0,Europe +2023-04-29,60598,7455,"[""Headphones"", ""Tablet""]",3624.43,{},268826,0,Africa +2024-04-16,60599,3302,"[""Laptop"", ""Headphones""]",2717.2,{},77016,1,North America +2024-11-13,60600,5571,"[""Keyboard""]",4639.95,{},145897,1,Asia +2024-12-25,60601,4720,"[""Tablet"", ""Phone"", ""Keyboard""]",4361.58,"{""seasonal"": ""8%""}",49998,0,Europe +2024-07-04,60602,3864,"[""Keyboard""]",1665.69,{},181771,0,Africa +2023-07-21,60603,7491,"[""Headphones"", ""Charger""]",4446.74,"{""seasonal"": ""5%""}",210665,1,Africa +2024-02-13,60604,5554,"[""Wireless Mouse""]",915.87,{},29705,0,Asia +2024-12-28,60605,8001,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2422.4,"{""seasonal"": ""20%""}",9198,1,Asia +2024-03-30,60606,7329,"[""Keyboard"", ""Charger"", ""Phone""]",3178.74,"{""loyalty"": ""21%""}",160403,0,Europe +2024-02-22,60607,9334,"[""Charger""]",460.42,"{""loyalty"": ""26%""}",269004,0,North America +2023-03-30,60608,2080,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1496.3,{},25335,0,North America +2023-03-02,60609,9175,"[""Tablet"", ""Headphones""]",2802.1,{},86366,1,Asia +2023-05-30,60610,3547,"[""Laptop""]",4471.45,{},210652,1,Europe +2023-07-08,60611,5286,"[""Monitor"", ""Wireless Mouse""]",2940.32,"{"""": ""5%""}",19826,0,Asia +2024-01-12,60612,8501,"[""Phone""]",621.8,{},288428,1,North America +2024-11-14,60613,8538,"[""Monitor"", ""Keyboard"", ""Tablet""]",2710.33,"{""promo"": ""19%""}",13079,1,South America +2024-03-04,60614,2553,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",171.02,"{""loyalty"": ""23%""}",109189,0,Africa +2024-03-14,60615,2750,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3674.5,"{""promo"": ""7%""}",185572,0,Europe +2023-03-13,60616,204,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4971.67,"{""seasonal"": ""11%""}",228529,1,Asia +2023-04-09,60617,5179,"[""Laptop""]",3514.63,{},210296,0,South America +2024-03-27,60618,7096,"[""Charger"", ""Tablet"", ""Monitor""]",4636.45,{},68837,1,Asia +2023-05-11,60619,9281,"[""Wireless Mouse"", ""Headphones""]",2093.27,{},219114,1,Europe +2023-08-31,60620,2745,"[""Phone"", ""Keyboard""]",4254.8,"{""loyalty"": ""17%""}",273033,0,Africa +2024-08-13,60621,372,"[""Headphones"", ""Monitor"", ""Laptop""]",1127.83,{},40546,1,Europe +2024-10-19,60622,811,"[""Phone"", ""Wireless Mouse""]",4118.55,{},239606,1,Europe +2024-12-09,60623,3536,"[""Charger""]",2925.84,{},150621,0,North America +2023-01-26,60624,618,"[""Keyboard"", ""Wireless Mouse""]",2321.13,"{""loyalty"": ""18%""}",293235,0,Africa +2024-01-29,60625,2450,"[""Laptop""]",2197.42,"{""promo"": ""15%""}",145686,1,Africa +2024-11-08,60626,278,"[""Keyboard""]",3740.11,{},169780,0,Europe +2023-04-08,60627,6385,"[""Phone"", ""Wireless Mouse""]",2299.18,"{"""": ""19%""}",128033,1,Asia +2024-01-28,60628,1776,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1363.52,"{""loyalty"": ""14%""}",87045,1,Asia +2023-08-19,60629,1252,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2429.71,"{""loyalty"": ""10%""}",12013,0,South America +2024-07-20,60630,7257,"[""Charger""]",1536.65,{},296611,0,Europe +2023-12-13,60631,1921,"[""Charger"", ""Laptop""]",667.42,"{"""": ""21%""}",299316,1,Africa +2023-07-28,60632,7359,"[""Headphones""]",4987.67,"{""loyalty"": ""11%""}",184921,1,North America +2023-03-07,60633,3248,"[""Keyboard""]",4667.77,{},19917,1,Asia +2024-01-31,60634,4049,"[""Monitor"", ""Headphones"", ""Phone""]",2327.33,"{""seasonal"": ""28%""}",4513,1,Europe +2024-02-07,60635,1137,"[""Phone""]",3724.37,"{""promo"": ""9%""}",252575,0,Europe +2024-11-04,60636,2231,"[""Tablet""]",1918.88,"{"""": ""18%""}",287699,0,Europe +2023-02-05,60637,9,"[""Tablet""]",3267.37,{},1384,0,South America +2023-12-05,60638,247,"[""Charger"", ""Keyboard"", ""Phone""]",540.8,"{""seasonal"": ""26%""}",234901,1,Asia +2023-10-11,60639,9505,"[""Monitor"", ""Charger""]",1896.02,"{""promo"": ""10%""}",118805,0,North America +2023-12-26,60640,3952,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",990.96,{},192367,1,Asia +2023-08-21,60641,7382,"[""Monitor"", ""Laptop"", ""Charger""]",1187.33,"{"""": ""24%""}",12968,1,Africa +2024-09-02,60642,1696,"[""Keyboard"", ""Headphones""]",3404.41,{},78213,0,North America +2024-10-04,60643,6653,"[""Laptop"", ""Charger"", ""Phone""]",2164.93,"{"""": ""29%""}",63269,0,Africa +2023-02-24,60644,5442,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",637.66,"{""loyalty"": ""18%""}",158416,1,North America +2024-12-15,60645,9780,"[""Phone""]",2790.71,{},165500,1,Asia +2024-02-22,60646,1697,"[""Headphones""]",3837.59,"{""loyalty"": ""17%""}",296139,1,Europe +2023-12-18,60647,8073,"[""Wireless Mouse"", ""Phone""]",4816.99,{},292245,0,Asia +2023-08-20,60648,3884,"[""Keyboard""]",1934.09,{},287689,0,South America +2023-05-19,60649,566,"[""Charger""]",2293.89,"{""seasonal"": ""29%""}",219722,0,North America +2023-12-01,60650,1631,"[""Tablet""]",3659.98,"{""seasonal"": ""13%""}",189631,0,South America +2023-04-26,60651,2600,"[""Tablet"", ""Charger""]",2377.25,"{""loyalty"": ""15%""}",207557,0,Asia +2023-06-20,60652,3566,"[""Tablet""]",617.2,{},78171,1,North America +2023-11-21,60653,1114,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",481.25,{},213710,1,Europe +2024-04-29,60654,4670,"[""Monitor""]",1952.22,{},45973,0,South America +2024-07-10,60655,9749,"[""Charger"", ""Keyboard"", ""Laptop""]",3767.61,"{""seasonal"": ""26%""}",149402,0,Europe +2024-12-15,60656,592,"[""Wireless Mouse"", ""Laptop""]",1335.11,"{""seasonal"": ""28%""}",76756,1,Europe +2024-09-08,60657,8839,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",794.53,{},48786,0,Europe +2024-09-15,60658,7801,"[""Keyboard""]",1208.46,{},113162,0,Asia +2024-09-28,60659,2365,"[""Monitor"", ""Phone"", ""Headphones""]",3432.03,"{""seasonal"": ""12%""}",271078,1,Africa +2024-12-15,60660,1294,"[""Charger"", ""Tablet""]",4933.51,{},165680,0,Europe +2024-04-16,60661,9053,"[""Keyboard"", ""Charger"", ""Laptop""]",3321.19,{},87430,0,Asia +2023-09-04,60662,3521,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3466.92,"{""promo"": ""16%""}",161444,0,Africa +2023-01-02,60663,1481,"[""Laptop"", ""Monitor""]",228.73,"{""loyalty"": ""19%""}",281409,0,Africa +2024-03-11,60664,9841,"[""Charger""]",960.63,{},148672,0,Africa +2023-03-21,60665,6869,"[""Wireless Mouse"", ""Tablet""]",1464.36,"{""promo"": ""29%""}",209142,0,Europe +2024-12-20,60666,4477,"[""Phone""]",4116.18,{},104260,1,Europe +2024-01-13,60667,6035,"[""Charger"", ""Keyboard"", ""Phone""]",2672.39,"{""promo"": ""18%""}",195510,1,South America +2024-02-12,60668,6098,"[""Keyboard"", ""Laptop""]",4472.7,{},257939,0,South America +2024-10-10,60669,2316,"[""Phone"", ""Monitor"", ""Keyboard""]",3441.02,{},82305,1,South America +2024-07-08,60670,7179,"[""Laptop"", ""Keyboard"", ""Charger""]",1771.15,{},13719,0,Asia +2023-09-04,60671,4532,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3901.89,"{"""": ""28%""}",100463,1,North America +2023-11-11,60672,3668,"[""Charger""]",592.2,"{""seasonal"": ""27%""}",229857,0,Asia +2023-01-06,60673,4389,"[""Monitor"", ""Phone""]",3324.52,"{"""": ""13%""}",182056,0,Europe +2024-05-29,60674,5999,"[""Monitor"", ""Charger"", ""Phone""]",3617.85,"{""seasonal"": ""22%""}",174785,0,South America +2023-05-24,60675,7291,"[""Headphones"", ""Laptop"", ""Tablet""]",693.0,{},245105,0,Africa +2024-03-30,60676,4629,"[""Charger"", ""Tablet"", ""Phone""]",2332.1,{},299218,0,Asia +2024-01-17,60677,9279,"[""Headphones""]",3169.7,{},284947,0,North America +2023-11-08,60678,7637,"[""Keyboard"", ""Monitor""]",2759.89,"{"""": ""5%""}",174470,0,North America +2023-02-02,60679,2817,"[""Headphones"", ""Tablet""]",2197.19,{},160882,0,Europe +2023-01-30,60680,429,"[""Keyboard""]",2828.83,{},227688,1,Europe +2024-07-29,60681,2641,"[""Phone""]",2870.76,"{"""": ""6%""}",222169,0,North America +2023-12-05,60682,8371,"[""Phone"", ""Monitor""]",372.23,"{""seasonal"": ""22%""}",217954,0,Africa +2024-03-01,60683,9984,"[""Tablet"", ""Wireless Mouse""]",3140.48,"{"""": ""19%""}",269244,1,Africa +2024-06-13,60684,4669,"[""Headphones""]",1088.78,"{""promo"": ""18%""}",27410,1,Europe +2023-10-02,60685,1382,"[""Laptop"", ""Keyboard""]",4908.66,"{""seasonal"": ""20%""}",236567,1,Europe +2024-09-05,60686,8669,"[""Headphones""]",1382.25,{},253256,1,Europe +2023-02-18,60687,1352,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1188.24,"{""loyalty"": ""16%""}",234675,1,North America +2023-07-04,60688,8512,"[""Phone"", ""Wireless Mouse""]",4852.38,"{"""": ""20%""}",27587,0,South America +2024-03-25,60689,4423,"[""Keyboard""]",1941.02,{},272819,1,Asia +2023-07-19,60690,4780,"[""Charger"", ""Tablet""]",4518.28,{},172044,1,Africa +2023-04-26,60691,3681,"[""Phone"", ""Charger"", ""Laptop""]",1296.8,{},140735,1,Europe +2023-01-22,60692,9010,"[""Charger""]",1272.21,"{""loyalty"": ""5%""}",256662,0,Europe +2024-02-12,60693,5879,"[""Tablet""]",4565.11,{},17405,1,Europe +2023-05-19,60694,7802,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2369.4,{},136017,1,Africa +2023-06-02,60695,1181,"[""Phone"", ""Monitor""]",3473.25,"{""seasonal"": ""9%""}",154365,1,Europe +2023-03-13,60696,3330,"[""Headphones"", ""Phone""]",3513.09,{},1349,0,North America +2023-06-07,60697,7133,"[""Headphones""]",4090.36,"{"""": ""10%""}",295453,1,Europe +2024-07-29,60698,5502,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2635.34,"{""seasonal"": ""15%""}",48642,0,Europe +2023-03-26,60699,2866,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2779.6,{},168640,1,Europe +2024-10-24,60700,1607,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2035.19,{},279430,0,North America +2024-02-15,60701,2763,"[""Laptop"", ""Tablet"", ""Headphones""]",3099.33,"{""promo"": ""7%""}",260990,1,Europe +2023-05-28,60702,7011,"[""Laptop"", ""Phone""]",4089.2,{},83293,0,Africa +2023-01-08,60703,5990,"[""Keyboard""]",3495.1,{},230536,1,Europe +2024-07-09,60704,9055,"[""Headphones"", ""Laptop"", ""Charger""]",1355.91,"{""seasonal"": ""30%""}",11600,0,North America +2023-01-20,60705,6228,"[""Keyboard"", ""Headphones""]",1446.12,{},9886,1,South America +2024-05-18,60706,1367,"[""Laptop"", ""Monitor""]",1069.75,"{""loyalty"": ""24%""}",276833,1,North America +2024-06-06,60707,3355,"[""Tablet"", ""Wireless Mouse""]",2882.48,{},163448,1,Asia +2023-06-28,60708,1498,"[""Keyboard"", ""Phone"", ""Monitor""]",1175.26,{},281833,0,Africa +2023-11-09,60709,5231,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4996.03,{},193604,1,Europe +2024-01-27,60710,7357,"[""Tablet"", ""Phone"", ""Charger""]",1359.62,"{""loyalty"": ""18%""}",164737,0,North America +2024-12-17,60711,5530,"[""Tablet""]",4261.81,{},263139,0,Asia +2023-04-07,60712,7014,"[""Monitor"", ""Charger""]",4669.15,{},265706,0,South America +2023-01-24,60713,8960,"[""Tablet""]",1673.17,"{"""": ""5%""}",252436,0,Asia +2024-04-26,60714,4943,"[""Laptop""]",1890.51,{},64937,1,Asia +2024-09-28,60715,101,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4782.54,"{"""": ""8%""}",289832,1,Asia +2023-05-05,60716,7364,"[""Headphones"", ""Keyboard""]",3542.01,{},65975,1,Africa +2023-05-22,60717,9096,"[""Headphones""]",627.71,{},161267,0,Asia +2023-05-09,60718,8585,"[""Laptop""]",3429.54,{},132113,0,Africa +2024-12-06,60719,4737,"[""Laptop"", ""Headphones""]",986.42,{},205230,1,Asia +2023-03-31,60720,7832,"[""Wireless Mouse""]",102.36,{},96175,1,North America +2023-09-11,60721,4028,"[""Phone"", ""Headphones""]",787.75,"{""promo"": ""28%""}",204485,1,Europe +2024-03-05,60722,1856,"[""Wireless Mouse""]",3921.45,"{""seasonal"": ""30%""}",154561,1,Africa +2023-03-26,60723,8629,"[""Wireless Mouse"", ""Keyboard""]",4478.72,"{"""": ""17%""}",191136,1,Africa +2024-02-21,60724,7302,"[""Tablet""]",4719.2,"{""promo"": ""14%""}",268610,0,Africa +2023-10-19,60725,2856,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1247.33,{},74215,1,Africa +2024-01-15,60726,8597,"[""Phone"", ""Charger"", ""Tablet""]",3396.64,{},285336,1,North America +2024-11-21,60727,7020,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1429.65,{},61971,1,North America +2024-04-04,60728,5002,"[""Headphones""]",2408.48,"{""seasonal"": ""13%""}",80525,1,North America +2023-06-01,60729,7205,"[""Laptop"", ""Monitor"", ""Tablet""]",975.37,{},192082,0,Europe +2023-06-05,60730,2370,"[""Wireless Mouse""]",2639.67,"{""loyalty"": ""8%""}",57811,0,Europe +2023-01-30,60731,822,"[""Phone"", ""Headphones"", ""Charger""]",4092.47,{},243867,0,Africa +2024-10-02,60732,6479,"[""Laptop""]",2762.66,{},297873,1,Asia +2023-07-04,60733,132,"[""Keyboard"", ""Laptop""]",4364.12,{},96369,1,North America +2024-07-28,60734,2085,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",521.45,{},177188,0,Africa +2024-07-21,60735,924,"[""Monitor""]",939.74,{},86781,0,Africa +2024-07-20,60736,8279,"[""Monitor""]",3122.54,{},153340,1,Europe +2023-12-25,60737,7945,"[""Laptop"", ""Keyboard"", ""Phone""]",473.81,{},189959,0,Asia +2023-04-19,60738,4456,"[""Phone"", ""Laptop"", ""Monitor""]",2963.21,{},64660,1,South America +2023-11-30,60739,458,"[""Charger"", ""Wireless Mouse""]",3175.5,"{""promo"": ""10%""}",29547,1,Asia +2023-03-27,60740,1415,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4383.93,"{""loyalty"": ""25%""}",79211,0,North America +2024-04-08,60741,7435,"[""Tablet"", ""Headphones""]",1002.84,{},26068,1,North America +2024-07-19,60742,5348,"[""Tablet"", ""Charger"", ""Laptop""]",4870.56,{},211658,1,South America +2023-04-23,60743,5756,"[""Wireless Mouse""]",2728.64,{},171098,0,North America +2024-03-19,60744,7364,"[""Wireless Mouse""]",3214.39,{},196685,1,South America +2024-11-20,60745,6830,"[""Tablet"", ""Keyboard""]",4261.08,{},123141,1,South America +2023-09-25,60746,5435,"[""Monitor"", ""Charger""]",3140.07,"{""loyalty"": ""15%""}",234889,0,South America +2024-01-18,60747,4503,"[""Headphones"", ""Tablet"", ""Charger""]",4411.81,{},204863,0,Africa +2024-06-17,60748,1505,"[""Phone""]",4872.38,{},73704,1,Asia +2024-09-08,60749,3013,"[""Phone"", ""Tablet"", ""Keyboard""]",586.43,{},296683,1,Europe +2024-10-15,60750,4039,"[""Phone"", ""Keyboard""]",1850.34,{},226933,1,Africa +2024-01-12,60751,1435,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2989.49,{},27724,0,Africa +2024-07-30,60752,98,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4771.05,{},285479,1,North America +2024-05-05,60753,8271,"[""Headphones"", ""Charger""]",3877.44,"{""promo"": ""26%""}",28522,0,Europe +2023-09-08,60754,5976,"[""Keyboard""]",557.5,{},238434,0,Asia +2023-02-06,60755,6562,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2205.23,"{""loyalty"": ""24%""}",245283,1,South America +2024-10-20,60756,7917,"[""Charger""]",1934.01,{},292542,1,North America +2023-06-24,60757,4712,"[""Monitor"", ""Tablet""]",3608.85,{},140199,1,Africa +2023-03-28,60758,1363,"[""Keyboard"", ""Laptop"", ""Charger""]",969.83,{},141602,1,South America +2023-07-30,60759,5550,"[""Keyboard"", ""Charger""]",2849.93,{},288192,0,North America +2024-12-11,60760,9993,"[""Laptop"", ""Charger"", ""Monitor""]",2812.67,{},227646,0,South America +2023-07-05,60761,3563,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4374.93,{},90558,0,Africa +2023-02-14,60762,1389,"[""Headphones"", ""Tablet""]",1639.61,{},175441,1,Europe +2024-02-15,60763,4932,"[""Laptop"", ""Monitor"", ""Charger""]",2884.6,{},108414,0,South America +2024-01-19,60764,4633,"[""Keyboard""]",4000.89,"{""seasonal"": ""8%""}",189735,1,Africa +2024-04-13,60765,6218,"[""Laptop"", ""Charger"", ""Monitor""]",766.79,"{""seasonal"": ""30%""}",279987,1,Asia +2024-12-14,60766,1511,"[""Charger"", ""Keyboard"", ""Laptop""]",2659.81,"{""promo"": ""21%""}",100242,0,South America +2024-09-04,60767,6627,"[""Tablet""]",4188.91,"{""loyalty"": ""29%""}",228439,1,Africa +2023-10-26,60768,4513,"[""Wireless Mouse""]",2988.22,{},9071,1,South America +2023-02-26,60769,6930,"[""Charger"", ""Tablet""]",3623.55,{},111878,1,South America +2024-04-07,60770,2571,"[""Laptop""]",1641.08,"{""loyalty"": ""25%""}",138421,0,North America +2024-11-24,60771,3686,"[""Wireless Mouse"", ""Phone""]",2276.47,{},211972,1,South America +2024-03-07,60772,4128,"[""Keyboard"", ""Phone"", ""Headphones""]",1672.51,{},217392,1,Europe +2023-01-01,60773,9958,"[""Charger""]",1699.14,{},22804,0,North America +2024-10-15,60774,2102,"[""Phone"", ""Tablet"", ""Keyboard""]",1479.58,"{""loyalty"": ""28%""}",48334,1,South America +2023-03-15,60775,6335,"[""Headphones""]",2973.21,{},10298,1,Asia +2023-08-23,60776,2138,"[""Tablet""]",2235.98,{},253285,1,North America +2024-01-25,60777,8939,"[""Keyboard"", ""Wireless Mouse""]",1325.91,"{""seasonal"": ""13%""}",264112,0,South America +2024-03-18,60778,8804,"[""Keyboard"", ""Monitor"", ""Laptop""]",321.57,{},223304,0,South America +2024-04-17,60779,5339,"[""Monitor"", ""Tablet""]",1239.25,"{""loyalty"": ""11%""}",158027,0,South America +2024-10-13,60780,4804,"[""Keyboard"", ""Charger""]",480.68,"{""promo"": ""7%""}",178796,1,Europe +2023-08-02,60781,3918,"[""Headphones""]",3959.99,{},164783,0,North America +2023-05-08,60782,798,"[""Phone"", ""Headphones""]",2713.59,"{""seasonal"": ""8%""}",103439,0,South America +2023-09-19,60783,332,"[""Charger"", ""Headphones""]",4505.42,"{""loyalty"": ""11%""}",202442,0,South America +2024-12-04,60784,5181,"[""Charger"", ""Monitor""]",4543.89,{},45949,1,Africa +2023-11-05,60785,6798,"[""Keyboard"", ""Monitor""]",990.55,"{""seasonal"": ""17%""}",118258,1,South America +2024-10-19,60786,8474,"[""Keyboard"", ""Laptop""]",3913.79,{},240380,1,Asia +2024-03-27,60787,773,"[""Monitor""]",1586.85,"{""promo"": ""10%""}",135198,0,Europe +2023-06-09,60788,7642,"[""Headphones"", ""Phone"", ""Keyboard""]",3988.84,{},37839,1,Europe +2023-04-04,60789,7886,"[""Phone""]",2072.53,"{""promo"": ""5%""}",10323,1,North America +2023-03-20,60790,9083,"[""Wireless Mouse""]",239.71,{},142588,0,Africa +2023-09-04,60791,2357,"[""Headphones"", ""Monitor"", ""Keyboard""]",4161.32,"{""promo"": ""22%""}",155666,1,Asia +2023-05-16,60792,3439,"[""Keyboard"", ""Monitor"", ""Headphones""]",908.36,"{""promo"": ""26%""}",244448,1,North America +2024-10-18,60793,1565,"[""Keyboard"", ""Monitor"", ""Laptop""]",3696.24,{},154982,0,Africa +2024-02-29,60794,7303,"[""Laptop"", ""Tablet"", ""Phone""]",4850.2,"{"""": ""12%""}",249043,1,Africa +2024-06-12,60795,8080,"[""Tablet"", ""Headphones""]",131.54,{},37826,1,North America +2024-07-21,60796,9136,"[""Tablet"", ""Headphones"", ""Laptop""]",741.19,"{"""": ""7%""}",22285,0,South America +2023-03-04,60797,324,"[""Tablet"", ""Monitor"", ""Charger""]",3738.51,{},108987,1,South America +2023-04-19,60798,8939,"[""Headphones""]",2984.28,"{""loyalty"": ""22%""}",10664,0,North America +2023-04-27,60799,6767,"[""Monitor"", ""Tablet""]",1861.0,{},17862,0,Europe +2023-11-27,60800,9055,"[""Tablet"", ""Wireless Mouse""]",3835.73,{},94019,0,Africa +2023-02-24,60801,9654,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2647.35,"{""seasonal"": ""29%""}",163721,1,Europe +2024-03-23,60802,3495,"[""Headphones""]",2662.02,"{""loyalty"": ""5%""}",238783,0,Africa +2023-12-31,60803,5787,"[""Laptop"", ""Headphones""]",434.59,{},126758,1,Asia +2024-02-02,60804,506,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3331.19,"{""loyalty"": ""25%""}",105811,1,Europe +2024-04-15,60805,857,"[""Phone"", ""Laptop""]",4354.37,"{"""": ""6%""}",27812,1,North America +2023-03-19,60806,5596,"[""Phone"", ""Monitor"", ""Charger""]",2491.74,"{""loyalty"": ""5%""}",284053,0,South America +2023-03-11,60807,7485,"[""Phone""]",3785.3,"{""loyalty"": ""13%""}",45609,0,Asia +2024-01-13,60808,5656,"[""Tablet"", ""Headphones"", ""Laptop""]",1925.96,"{""seasonal"": ""24%""}",12713,1,Europe +2023-05-14,60809,2039,"[""Phone""]",2355.08,"{""seasonal"": ""27%""}",204379,0,Europe +2024-05-30,60810,4274,"[""Headphones"", ""Tablet""]",3381.96,"{""loyalty"": ""11%""}",107048,0,North America +2024-01-26,60811,954,"[""Phone"", ""Laptop"", ""Keyboard""]",1387.62,{},208157,1,North America +2023-02-02,60812,9092,"[""Wireless Mouse""]",1190.21,{},72157,1,South America +2023-12-28,60813,5319,"[""Headphones""]",1525.55,{},267084,1,Europe +2024-08-08,60814,9603,"[""Tablet"", ""Laptop"", ""Headphones""]",4410.92,"{""promo"": ""11%""}",136436,0,Africa +2024-07-10,60815,5687,"[""Headphones"", ""Keyboard""]",3453.27,"{""loyalty"": ""26%""}",278003,0,North America +2024-03-12,60816,2818,"[""Headphones""]",4658.93,"{""promo"": ""22%""}",221352,1,South America +2024-05-19,60817,3250,"[""Monitor"", ""Charger""]",570.56,"{""loyalty"": ""23%""}",107246,1,Asia +2024-11-27,60818,7307,"[""Charger""]",3856.31,"{""loyalty"": ""28%""}",79244,0,South America +2024-04-19,60819,7085,"[""Charger"", ""Phone""]",2256.49,{},6998,1,Europe +2023-12-22,60820,3708,"[""Tablet"", ""Keyboard"", ""Headphones""]",329.51,{},290081,0,Europe +2024-04-22,60821,8422,"[""Charger"", ""Tablet"", ""Phone""]",2628.97,{},144482,0,Europe +2023-09-06,60822,7997,"[""Headphones"", ""Laptop""]",2092.34,{},9121,1,North America +2023-06-06,60823,3060,"[""Charger""]",1759.96,"{"""": ""10%""}",148788,1,North America +2023-02-16,60824,6361,"[""Phone"", ""Monitor"", ""Keyboard""]",3521.89,{},174605,0,Africa +2023-01-30,60825,2351,"[""Monitor""]",4038.71,"{""seasonal"": ""17%""}",224073,0,Africa +2023-10-16,60826,7988,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",631.5,"{"""": ""15%""}",237169,0,Africa +2023-09-22,60827,6767,"[""Keyboard"", ""Phone""]",4262.15,"{""loyalty"": ""20%""}",148119,0,Europe +2023-02-10,60828,9259,"[""Keyboard"", ""Phone"", ""Laptop""]",340.8,"{"""": ""19%""}",288819,1,South America +2023-09-15,60829,4224,"[""Phone"", ""Headphones"", ""Tablet""]",2432.12,"{"""": ""6%""}",114373,1,South America +2024-03-03,60830,2542,"[""Headphones"", ""Laptop""]",2300.63,"{""promo"": ""8%""}",93283,0,North America +2023-09-11,60831,4879,"[""Charger"", ""Keyboard""]",3567.5,{},29058,1,Europe +2024-11-24,60832,2755,"[""Headphones""]",4396.12,"{""loyalty"": ""7%""}",156668,0,Asia +2023-01-02,60833,2513,"[""Keyboard"", ""Phone"", ""Laptop""]",4785.69,"{""promo"": ""22%""}",208773,1,South America +2023-04-08,60834,3210,"[""Charger"", ""Wireless Mouse""]",2768.63,"{""seasonal"": ""20%""}",204131,0,Africa +2024-10-10,60835,6297,"[""Monitor"", ""Wireless Mouse""]",3127.58,{},292803,1,North America +2023-04-10,60836,4482,"[""Tablet""]",3233.52,{},289585,1,Asia +2024-07-30,60837,7583,"[""Headphones"", ""Phone""]",2510.18,{},194052,0,Africa +2023-06-24,60838,427,"[""Tablet"", ""Keyboard"", ""Headphones""]",1491.05,"{""promo"": ""26%""}",153822,1,Africa +2023-06-03,60839,6348,"[""Charger""]",2399.92,"{"""": ""27%""}",182217,0,Europe +2023-09-25,60840,5537,"[""Tablet"", ""Charger""]",867.13,{},89705,1,Asia +2023-09-14,60841,8827,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2538.3,"{"""": ""6%""}",257346,1,Africa +2024-06-06,60842,6985,"[""Charger"", ""Headphones"", ""Keyboard""]",2289.53,"{""loyalty"": ""10%""}",257932,1,Europe +2024-12-09,60843,5494,"[""Tablet"", ""Charger""]",4341.47,"{""promo"": ""8%""}",279158,1,Asia +2023-01-18,60844,404,"[""Keyboard""]",4418.1,{},201961,0,Asia +2024-11-26,60845,5472,"[""Charger""]",4764.98,"{""promo"": ""16%""}",36892,1,Europe +2023-12-27,60846,4881,"[""Headphones""]",2293.85,{},199818,1,Africa +2024-11-16,60847,3793,"[""Keyboard""]",2053.88,{},124688,1,Africa +2023-09-24,60848,4924,"[""Phone""]",3499.74,{},259125,0,Europe +2023-02-14,60849,7393,"[""Tablet"", ""Keyboard""]",3558.9,"{""promo"": ""30%""}",76707,0,Asia +2023-11-15,60850,4736,"[""Laptop""]",275.5,"{"""": ""14%""}",147948,1,South America +2024-01-04,60851,224,"[""Charger"", ""Phone""]",2001.39,{},256007,1,Africa +2023-02-10,60852,1061,"[""Headphones"", ""Phone""]",3863.24,"{""loyalty"": ""28%""}",147730,0,South America +2024-01-20,60853,2353,"[""Phone"", ""Headphones"", ""Monitor""]",270.86,{},105314,1,Asia +2023-03-14,60854,4912,"[""Laptop""]",3780.55,"{""promo"": ""5%""}",148009,1,Africa +2024-08-18,60855,9991,"[""Tablet"", ""Monitor""]",1269.99,{},75290,1,South America +2024-02-29,60856,6831,"[""Monitor""]",1352.76,{},220175,1,North America +2024-02-28,60857,5590,"[""Phone"", ""Wireless Mouse""]",515.59,{},180944,0,North America +2023-04-07,60858,4107,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2681.4,"{"""": ""30%""}",5566,0,Africa +2023-11-24,60859,1854,"[""Headphones"", ""Laptop""]",1487.82,"{""loyalty"": ""25%""}",140798,1,South America +2024-10-09,60860,4040,"[""Monitor"", ""Headphones"", ""Tablet""]",3307.52,"{"""": ""16%""}",1316,1,Africa +2023-10-23,60861,1327,"[""Keyboard""]",843.41,{},12452,1,Asia +2023-08-14,60862,5075,"[""Laptop""]",4421.49,{},257055,1,North America +2024-08-06,60863,8269,"[""Wireless Mouse""]",2865.39,"{""promo"": ""16%""}",272799,0,Africa +2023-07-13,60864,167,"[""Charger""]",4042.38,{},181152,1,Europe +2023-05-15,60865,9476,"[""Charger"", ""Tablet"", ""Keyboard""]",4788.98,"{""loyalty"": ""30%""}",138013,1,South America +2024-04-10,60866,3517,"[""Phone"", ""Headphones""]",1539.72,{},53162,1,Africa +2024-03-18,60867,7953,"[""Headphones"", ""Monitor""]",2917.33,{},161616,0,Africa +2024-01-21,60868,7097,"[""Charger"", ""Tablet""]",3064.4,"{""seasonal"": ""23%""}",43312,0,North America +2024-05-20,60869,2968,"[""Wireless Mouse"", ""Tablet""]",3994.33,"{""loyalty"": ""17%""}",33617,1,Europe +2024-10-12,60870,1079,"[""Monitor"", ""Tablet"", ""Laptop""]",4565.0,{},150489,0,Asia +2023-11-22,60871,9492,"[""Monitor""]",481.18,{},187540,1,North America +2024-07-31,60872,6652,"[""Phone"", ""Tablet""]",4908.25,{},247138,1,Europe +2023-05-21,60873,5425,"[""Wireless Mouse"", ""Keyboard""]",2403.28,{},98014,1,Europe +2024-12-01,60874,8898,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3401.37,"{""seasonal"": ""23%""}",280292,0,Europe +2023-11-01,60875,4618,"[""Tablet"", ""Keyboard""]",69.28,"{"""": ""20%""}",27249,1,South America +2023-04-23,60876,8476,"[""Monitor"", ""Keyboard""]",365.6,"{""loyalty"": ""7%""}",234312,0,Europe +2023-04-25,60877,4849,"[""Laptop"", ""Tablet""]",3440.75,"{""promo"": ""27%""}",87882,0,Europe +2023-10-08,60878,878,"[""Laptop""]",1982.39,"{"""": ""26%""}",166933,1,South America +2024-06-20,60879,8150,"[""Keyboard"", ""Headphones""]",1677.52,{},265612,0,Asia +2024-07-11,60880,8624,"[""Wireless Mouse""]",4815.57,"{"""": ""15%""}",207808,0,Africa +2023-11-25,60881,3343,"[""Tablet"", ""Headphones"", ""Monitor""]",4641.4,"{"""": ""29%""}",210088,1,Asia +2024-05-29,60882,6041,"[""Wireless Mouse""]",2255.25,{},75971,1,North America +2023-12-23,60883,6146,"[""Wireless Mouse"", ""Phone""]",1632.87,"{"""": ""28%""}",127631,1,Asia +2023-09-04,60884,1952,"[""Charger"", ""Monitor""]",2257.38,{},248273,0,North America +2023-07-15,60885,41,"[""Headphones"", ""Charger""]",415.09,{},216746,1,South America +2023-10-18,60886,467,"[""Tablet"", ""Charger""]",1271.02,"{""loyalty"": ""26%""}",108631,0,South America +2024-08-27,60887,5240,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2920.44,"{""loyalty"": ""7%""}",217046,0,North America +2024-07-17,60888,5982,"[""Phone""]",220.16,{},105752,1,Africa +2023-05-21,60889,3190,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3266.41,"{""loyalty"": ""26%""}",103085,1,Africa +2023-09-28,60890,8962,"[""Headphones"", ""Phone""]",4409.22,"{""promo"": ""11%""}",7571,0,South America +2024-02-28,60891,5084,"[""Keyboard"", ""Monitor"", ""Laptop""]",1361.82,"{"""": ""22%""}",165603,1,North America +2024-03-09,60892,8274,"[""Monitor"", ""Charger""]",3569.66,"{""seasonal"": ""25%""}",296683,1,Europe +2023-09-05,60893,2078,"[""Headphones""]",534.75,{},186951,0,Europe +2024-04-10,60894,9251,"[""Laptop"", ""Tablet""]",4261.43,"{""loyalty"": ""9%""}",43800,1,North America +2024-07-30,60895,4627,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",87.67,{},60383,1,Africa +2024-06-08,60896,7326,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4942.52,"{"""": ""6%""}",181133,0,Asia +2024-06-11,60897,3084,"[""Tablet""]",3070.42,{},222748,1,Asia +2024-09-28,60898,442,"[""Monitor"", ""Laptop""]",3510.44,{},37096,1,South America +2024-08-26,60899,8693,"[""Monitor"", ""Charger""]",3914.7,{},279076,0,South America +2023-09-28,60900,3716,"[""Phone"", ""Charger"", ""Keyboard""]",2212.59,{},94119,1,South America +2024-10-04,60901,464,"[""Monitor"", ""Keyboard""]",2630.47,{},182851,0,Africa +2024-09-29,60902,7149,"[""Wireless Mouse""]",3064.21,"{""promo"": ""15%""}",229314,0,North America +2024-08-21,60903,691,"[""Tablet""]",3345.62,{},79197,1,North America +2023-10-23,60904,2732,"[""Charger""]",4560.06,{},149004,0,South America +2024-11-16,60905,6382,"[""Monitor"", ""Laptop"", ""Keyboard""]",4670.13,{},231674,0,Africa +2023-12-14,60906,8801,"[""Wireless Mouse""]",1358.11,"{""loyalty"": ""15%""}",279325,1,Europe +2023-07-06,60907,2385,"[""Keyboard"", ""Headphones""]",801.05,"{"""": ""9%""}",93809,1,Asia +2024-03-15,60908,4569,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2351.2,{},188389,0,North America +2023-10-21,60909,5748,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2451.0,{},107184,0,South America +2024-11-19,60910,8082,"[""Keyboard"", ""Charger""]",765.59,"{""loyalty"": ""14%""}",262917,1,North America +2024-11-18,60911,8168,"[""Monitor"", ""Wireless Mouse""]",2071.96,"{""promo"": ""14%""}",148539,0,Africa +2024-11-20,60912,6915,"[""Laptop"", ""Monitor"", ""Keyboard""]",4481.83,"{""promo"": ""26%""}",262595,0,South America +2023-10-29,60913,9052,"[""Monitor"", ""Headphones""]",1421.8,{},270557,1,Europe +2023-12-29,60914,8980,"[""Keyboard"", ""Wireless Mouse""]",4684.9,{},50292,1,Africa +2023-07-14,60915,2634,"[""Headphones""]",1547.77,{},298400,1,Africa +2023-01-09,60916,4757,"[""Tablet""]",4075.18,"{"""": ""23%""}",269095,0,Europe +2023-09-28,60917,4216,"[""Laptop""]",2978.39,"{"""": ""20%""}",123357,0,South America +2024-01-01,60918,8241,"[""Headphones"", ""Phone""]",1771.26,{},107570,0,Europe +2023-02-09,60919,4803,"[""Tablet"", ""Keyboard"", ""Headphones""]",1633.95,{},68618,1,North America +2024-11-19,60920,53,"[""Laptop"", ""Charger""]",544.49,"{""loyalty"": ""28%""}",65953,0,Asia +2024-08-06,60921,2456,"[""Laptop""]",4425.48,"{"""": ""9%""}",100658,0,North America +2023-04-07,60922,2247,"[""Headphones"", ""Charger"", ""Phone""]",2851.48,"{""seasonal"": ""16%""}",66388,0,South America +2023-07-24,60923,6017,"[""Keyboard""]",3945.46,{},49799,1,South America +2024-04-20,60924,7232,"[""Keyboard"", ""Headphones"", ""Monitor""]",2103.88,{},196456,1,Asia +2023-12-09,60925,7614,"[""Monitor""]",3122.4,{},26131,0,North America +2024-08-29,60926,734,"[""Keyboard"", ""Phone""]",4761.31,"{""loyalty"": ""19%""}",222775,0,Africa +2023-06-04,60927,3181,"[""Charger"", ""Monitor""]",4328.15,"{""seasonal"": ""24%""}",291385,1,Africa +2024-06-16,60928,4526,"[""Headphones""]",3205.64,{},231140,1,Asia +2024-09-30,60929,4377,"[""Laptop"", ""Tablet""]",1613.36,"{""seasonal"": ""28%""}",237666,1,Asia +2023-07-15,60930,8168,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1465.87,{},70206,1,Asia +2024-03-19,60931,7969,"[""Phone"", ""Keyboard"", ""Tablet""]",2255.96,{},39187,0,Africa +2023-05-01,60932,9676,"[""Phone"", ""Wireless Mouse""]",4173.29,{},263413,1,Asia +2024-08-04,60933,6035,"[""Wireless Mouse""]",4147.04,"{"""": ""18%""}",259658,1,Africa +2023-01-14,60934,6935,"[""Wireless Mouse"", ""Charger""]",4356.65,"{""seasonal"": ""19%""}",109206,1,Africa +2023-12-31,60935,8044,"[""Charger""]",4531.31,"{""loyalty"": ""17%""}",88111,0,North America +2023-06-28,60936,7081,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2520.52,"{""loyalty"": ""30%""}",144681,0,North America +2024-12-06,60937,7929,"[""Laptop""]",3956.56,"{""seasonal"": ""8%""}",161548,0,South America +2024-09-07,60938,1758,"[""Headphones"", ""Phone""]",1943.01,{},297392,1,Asia +2024-02-26,60939,1109,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4888.5,"{""seasonal"": ""24%""}",24364,1,Asia +2023-11-17,60940,3881,"[""Tablet""]",2859.27,"{""promo"": ""29%""}",21421,1,Europe +2024-11-05,60941,9748,"[""Headphones"", ""Laptop""]",536.13,{},22723,0,South America +2023-05-23,60942,8012,"[""Phone"", ""Laptop""]",2995.62,{},29241,0,Europe +2023-02-10,60943,5243,"[""Phone""]",231.47,"{""loyalty"": ""10%""}",197048,1,South America +2024-10-15,60944,4439,"[""Phone"", ""Headphones"", ""Keyboard""]",4561.67,"{""loyalty"": ""15%""}",75856,0,North America +2024-03-27,60945,2924,"[""Phone""]",2843.16,"{"""": ""9%""}",47652,0,Africa +2024-04-27,60946,3277,"[""Laptop"", ""Tablet"", ""Monitor""]",4008.28,{},151253,1,South America +2023-12-08,60947,6196,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2610.64,{},94839,0,North America +2023-12-19,60948,9737,"[""Headphones"", ""Charger"", ""Laptop""]",3328.18,"{"""": ""29%""}",21166,0,South America +2024-08-09,60949,4815,"[""Laptop""]",1492.67,{},133067,0,North America +2023-04-07,60950,226,"[""Tablet""]",4088.4,{},211800,0,Europe +2024-06-13,60951,847,"[""Keyboard"", ""Tablet""]",1323.93,"{"""": ""17%""}",58407,1,South America +2023-08-25,60952,2919,"[""Keyboard""]",1804.0,"{"""": ""21%""}",239374,1,North America +2023-01-20,60953,1744,"[""Monitor"", ""Laptop""]",3755.04,{},221404,1,Europe +2024-07-28,60954,1535,"[""Tablet""]",2186.66,{},146987,1,Africa +2024-05-11,60955,3125,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4320.62,"{""loyalty"": ""20%""}",180843,0,Asia +2023-04-05,60956,5467,"[""Charger"", ""Monitor""]",1022.04,"{""loyalty"": ""24%""}",50457,0,Europe +2024-06-03,60957,3045,"[""Monitor"", ""Headphones""]",1256.41,"{"""": ""16%""}",163106,0,South America +2023-02-24,60958,4750,"[""Monitor"", ""Charger""]",846.25,{},271588,0,Asia +2024-11-28,60959,853,"[""Charger"", ""Tablet""]",2177.35,{},188168,0,Europe +2023-07-05,60960,765,"[""Laptop""]",2461.77,"{"""": ""13%""}",43708,1,South America +2023-01-11,60961,6584,"[""Phone""]",120.93,"{""promo"": ""6%""}",19901,1,Africa +2024-12-24,60962,7868,"[""Tablet"", ""Headphones"", ""Laptop""]",3607.79,{},118806,0,Europe +2024-03-05,60963,7560,"[""Laptop"", ""Headphones""]",2378.49,{},290464,0,South America +2024-11-24,60964,1100,"[""Charger""]",4630.18,{},92604,0,South America +2023-07-04,60965,1023,"[""Charger"", ""Phone"", ""Laptop""]",388.41,{},98785,0,Africa +2024-02-07,60966,8439,"[""Charger"", ""Headphones"", ""Monitor""]",1642.52,{},171193,0,South America +2024-01-26,60967,9503,"[""Phone""]",2657.48,"{""seasonal"": ""17%""}",41595,1,North America +2024-01-29,60968,74,"[""Phone""]",4406.38,{},56298,0,North America +2024-05-03,60969,287,"[""Headphones""]",4641.7,{},27298,1,Africa +2024-11-16,60970,5541,"[""Laptop"", ""Keyboard"", ""Tablet""]",3251.02,{},53425,0,North America +2024-01-15,60971,5986,"[""Phone""]",3537.01,"{""loyalty"": ""7%""}",45539,1,Europe +2023-08-11,60972,9116,"[""Wireless Mouse""]",4427.95,"{""loyalty"": ""5%""}",50113,0,Asia +2024-09-30,60973,4209,"[""Keyboard""]",3632.56,{},167998,1,North America +2024-04-10,60974,917,"[""Wireless Mouse""]",3710.94,{},252878,1,Asia +2023-08-02,60975,3436,"[""Phone""]",2057.02,{},5760,0,Europe +2024-11-18,60976,782,"[""Laptop"", ""Monitor""]",2295.42,"{""promo"": ""29%""}",80516,0,South America +2024-10-25,60977,7567,"[""Charger"", ""Headphones""]",1254.47,"{""seasonal"": ""11%""}",26913,1,North America +2024-11-02,60978,4126,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3257.31,{},52693,1,Africa +2024-12-10,60979,5054,"[""Wireless Mouse"", ""Charger""]",4685.88,{},249229,0,Africa +2023-08-23,60980,6010,"[""Headphones"", ""Tablet""]",4018.13,{},102950,0,Africa +2023-02-20,60981,1886,"[""Laptop"", ""Monitor"", ""Headphones""]",4844.35,{},200409,1,North America +2023-11-11,60982,1859,"[""Keyboard"", ""Phone"", ""Laptop""]",480.91,"{""seasonal"": ""7%""}",109015,0,Africa +2023-07-27,60983,4878,"[""Phone""]",1442.21,{},120926,0,Africa +2024-12-24,60984,3118,"[""Headphones"", ""Charger""]",1263.96,"{""loyalty"": ""5%""}",8600,1,Asia +2023-01-22,60985,3583,"[""Phone""]",3973.93,{},24637,0,South America +2023-11-19,60986,3128,"[""Headphones"", ""Monitor"", ""Phone""]",2331.99,"{""loyalty"": ""16%""}",169205,0,Europe +2024-04-07,60987,3953,"[""Charger"", ""Tablet"", ""Keyboard""]",1396.91,"{"""": ""17%""}",14092,0,Africa +2024-09-26,60988,5175,"[""Laptop"", ""Wireless Mouse""]",4487.22,"{"""": ""22%""}",120720,0,Europe +2024-07-13,60989,8910,"[""Monitor"", ""Keyboard""]",2164.48,"{""loyalty"": ""5%""}",63926,0,Europe +2024-01-27,60990,8681,"[""Laptop"", ""Charger""]",2064.33,{},171766,0,Europe +2024-09-27,60991,8355,"[""Phone""]",4621.84,"{"""": ""25%""}",212226,1,South America +2023-11-25,60992,5982,"[""Monitor"", ""Charger"", ""Laptop""]",3247.41,"{""seasonal"": ""22%""}",44623,0,North America +2023-07-28,60993,6724,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1718.7,{},294239,1,Europe +2024-12-24,60994,847,"[""Keyboard"", ""Wireless Mouse""]",1656.04,"{""seasonal"": ""11%""}",234167,0,Europe +2024-03-08,60995,5991,"[""Charger""]",1412.06,"{"""": ""26%""}",115737,1,Europe +2023-07-24,60996,4212,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1459.09,{},110023,0,Asia +2023-08-13,60997,2818,"[""Monitor""]",2369.44,"{""seasonal"": ""17%""}",274379,0,Europe +2024-02-01,60998,3396,"[""Laptop""]",3506.32,"{""promo"": ""24%""}",161315,1,South America +2024-06-04,60999,4690,"[""Headphones"", ""Monitor"", ""Phone""]",143.68,{},259489,0,Asia +2024-07-26,61000,7242,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2135.76,"{""promo"": ""10%""}",146117,1,Africa +2023-09-15,61001,5865,"[""Laptop""]",3187.2,"{"""": ""21%""}",65304,0,Asia +2024-05-28,61002,2557,"[""Tablet""]",1321.23,"{""loyalty"": ""9%""}",157797,1,North America +2024-01-31,61003,1822,"[""Charger""]",4720.95,"{""seasonal"": ""19%""}",60975,1,Europe +2024-05-03,61004,8455,"[""Keyboard"", ""Monitor"", ""Tablet""]",945.93,{},265504,0,Asia +2023-04-03,61005,8673,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",307.72,{},120756,0,South America +2023-08-18,61006,4158,"[""Monitor""]",1269.4,{},238307,1,South America +2023-02-15,61007,7686,"[""Keyboard"", ""Phone""]",273.27,"{""loyalty"": ""30%""}",221083,1,Europe +2024-06-20,61008,5495,"[""Charger"", ""Laptop"", ""Phone""]",3433.33,"{""promo"": ""27%""}",154789,1,Europe +2024-12-21,61009,9251,"[""Phone"", ""Laptop""]",1224.08,"{""loyalty"": ""25%""}",233788,0,North America +2024-11-04,61010,8388,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4614.13,"{""promo"": ""20%""}",265401,1,South America +2024-06-19,61011,5147,"[""Monitor""]",3168.55,"{""loyalty"": ""5%""}",275367,0,Europe +2024-02-18,61012,3136,"[""Wireless Mouse""]",1506.21,"{""seasonal"": ""8%""}",192777,1,Asia +2024-09-28,61013,2839,"[""Phone"", ""Charger""]",3798.08,{},4226,0,North America +2024-01-17,61014,1609,"[""Monitor""]",4637.06,{},159141,0,North America +2024-01-02,61015,3952,"[""Phone"", ""Charger""]",1396.05,{},283672,1,Europe +2024-07-05,61016,8941,"[""Laptop"", ""Headphones"", ""Monitor""]",3402.56,"{""promo"": ""28%""}",239346,0,Asia +2024-07-12,61017,769,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2212.25,"{"""": ""24%""}",175658,0,Asia +2024-06-19,61018,3134,"[""Charger"", ""Monitor"", ""Phone""]",150.45,{},177955,1,Europe +2024-01-22,61019,3746,"[""Laptop"", ""Charger""]",3499.68,"{""loyalty"": ""12%""}",11121,0,Europe +2023-03-03,61020,2273,"[""Tablet""]",711.93,"{""promo"": ""10%""}",135716,0,Africa +2024-06-26,61021,6386,"[""Keyboard"", ""Monitor"", ""Charger""]",502.98,{},111988,1,North America +2023-12-07,61022,6109,"[""Headphones"", ""Charger""]",3715.41,{},100329,0,Europe +2023-05-06,61023,2828,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",901.95,"{""promo"": ""24%""}",96436,0,North America +2024-08-20,61024,6258,"[""Keyboard"", ""Headphones"", ""Phone""]",4155.45,"{"""": ""7%""}",52366,0,Africa +2024-09-07,61025,4690,"[""Keyboard"", ""Phone"", ""Laptop""]",4598.82,"{""seasonal"": ""21%""}",238740,0,Asia +2023-03-19,61026,4502,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1611.32,"{""promo"": ""23%""}",93841,0,Asia +2023-11-23,61027,265,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1461.82,"{"""": ""12%""}",240030,1,North America +2023-03-06,61028,1164,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3097.82,{},153227,0,South America +2024-06-15,61029,8356,"[""Monitor""]",1087.4,{},244683,0,North America +2023-05-24,61030,8401,"[""Headphones"", ""Tablet""]",4271.43,"{""loyalty"": ""20%""}",137613,1,Asia +2024-08-08,61031,791,"[""Charger""]",3044.67,"{"""": ""23%""}",59508,0,North America +2023-11-22,61032,5015,"[""Keyboard"", ""Charger"", ""Headphones""]",1451.42,"{""loyalty"": ""22%""}",224775,0,Africa +2023-11-23,61033,7120,"[""Headphones""]",2837.69,{},99006,0,South America +2023-04-09,61034,4946,"[""Headphones""]",4906.32,"{""promo"": ""15%""}",13592,1,Europe +2024-09-13,61035,2457,"[""Laptop"", ""Monitor"", ""Headphones""]",2162.98,"{""seasonal"": ""30%""}",217979,1,Asia +2024-06-04,61036,192,"[""Tablet""]",4633.91,"{""promo"": ""18%""}",253677,0,South America +2023-01-17,61037,8583,"[""Monitor"", ""Charger"", ""Headphones""]",3328.81,"{""loyalty"": ""11%""}",72167,1,South America +2023-03-30,61038,9404,"[""Charger""]",4365.69,"{""seasonal"": ""20%""}",219163,0,Asia +2024-04-09,61039,8077,"[""Keyboard"", ""Laptop""]",1753.38,{},60046,1,North America +2023-10-23,61040,9869,"[""Keyboard"", ""Wireless Mouse""]",1828.19,{},47629,1,North America +2023-11-05,61041,5216,"[""Keyboard"", ""Phone""]",3251.43,{},94248,0,Asia +2024-07-14,61042,9288,"[""Keyboard"", ""Monitor"", ""Headphones""]",125.59,"{"""": ""14%""}",96722,1,North America +2023-08-16,61043,3390,"[""Laptop""]",4124.25,"{""loyalty"": ""29%""}",228372,1,South America +2024-12-03,61044,6538,"[""Charger"", ""Laptop""]",2216.19,"{""seasonal"": ""15%""}",19027,0,South America +2023-09-21,61045,8481,"[""Phone"", ""Wireless Mouse""]",4150.16,"{""seasonal"": ""8%""}",228026,1,Asia +2023-07-19,61046,7451,"[""Charger"", ""Laptop""]",4076.67,{},90803,1,North America +2023-10-12,61047,3428,"[""Charger"", ""Laptop""]",78.69,{},259049,0,Asia +2024-09-03,61048,6935,"[""Laptop"", ""Tablet"", ""Charger""]",1647.59,"{"""": ""16%""}",192339,1,Asia +2024-08-22,61049,5102,"[""Tablet"", ""Keyboard""]",1324.5,{},113825,0,South America +2023-06-18,61050,6921,"[""Wireless Mouse""]",722.56,"{""loyalty"": ""18%""}",264148,1,South America +2023-09-06,61051,7902,"[""Laptop""]",4826.84,"{""seasonal"": ""27%""}",239887,1,North America +2024-11-06,61052,2891,"[""Keyboard""]",2656.17,"{"""": ""13%""}",171223,0,Asia +2024-07-09,61053,5813,"[""Keyboard"", ""Charger"", ""Phone""]",3268.49,{},46564,1,South America +2023-07-16,61054,4521,"[""Wireless Mouse"", ""Laptop""]",3922.72,"{""promo"": ""19%""}",240693,1,Europe +2023-12-07,61055,6575,"[""Wireless Mouse"", ""Charger""]",4298.08,"{""seasonal"": ""16%""}",67837,1,North America +2023-07-03,61056,8920,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3841.23,"{""promo"": ""5%""}",124266,0,North America +2023-04-01,61057,1729,"[""Tablet""]",4478.04,{},140304,0,Asia +2024-10-05,61058,1862,"[""Phone"", ""Keyboard"", ""Monitor""]",111.46,"{"""": ""26%""}",298901,0,South America +2024-02-19,61059,7565,"[""Laptop"", ""Headphones"", ""Tablet""]",4200.33,{},51131,0,Africa +2023-08-13,61060,9267,"[""Phone"", ""Wireless Mouse""]",2366.02,"{"""": ""11%""}",28155,1,Europe +2023-09-26,61061,1261,"[""Laptop"", ""Headphones"", ""Phone""]",2749.84,{},228463,0,Asia +2024-12-25,61062,8677,"[""Monitor"", ""Charger"", ""Laptop""]",3495.2,{},279825,0,Europe +2024-02-02,61063,7808,"[""Wireless Mouse"", ""Headphones""]",589.81,{},44498,0,Europe +2024-02-14,61064,5444,"[""Phone""]",1542.9,"{"""": ""5%""}",178006,1,Europe +2024-06-26,61065,9829,"[""Monitor""]",2885.86,{},283138,0,Asia +2024-05-17,61066,9299,"[""Keyboard"", ""Headphones"", ""Charger""]",3478.63,{},123753,1,South America +2023-01-22,61067,9480,"[""Laptop"", ""Keyboard""]",85.11,"{""loyalty"": ""8%""}",9840,0,Africa +2023-08-03,61068,949,"[""Wireless Mouse"", ""Charger""]",4133.36,{},236632,1,Africa +2023-08-12,61069,2871,"[""Keyboard"", ""Monitor""]",3889.8,{},239597,1,Africa +2024-01-10,61070,9843,"[""Laptop"", ""Tablet""]",3109.22,"{""seasonal"": ""29%""}",25316,1,South America +2023-06-07,61071,1800,"[""Wireless Mouse""]",3331.1,"{""loyalty"": ""10%""}",272896,1,North America +2024-12-26,61072,7626,"[""Keyboard"", ""Tablet""]",2705.72,"{""loyalty"": ""6%""}",265604,0,Europe +2024-06-02,61073,6924,"[""Wireless Mouse"", ""Phone""]",2023.39,{},48455,1,Europe +2024-12-23,61074,792,"[""Headphones""]",828.9,"{"""": ""9%""}",256717,1,Asia +2024-10-31,61075,2543,"[""Monitor"", ""Keyboard"", ""Laptop""]",126.78,{},30825,1,North America +2024-02-23,61076,3314,"[""Laptop""]",1233.18,"{"""": ""6%""}",84757,0,Asia +2024-11-09,61077,6138,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",560.53,"{"""": ""9%""}",164733,1,Asia +2024-01-17,61078,4199,"[""Monitor"", ""Charger""]",1883.85,"{""promo"": ""25%""}",3943,0,Africa +2024-07-20,61079,593,"[""Phone"", ""Headphones"", ""Laptop""]",2760.97,{},220029,0,Asia +2023-02-23,61080,4965,"[""Monitor"", ""Tablet""]",3245.23,"{""promo"": ""22%""}",219022,1,South America +2024-12-28,61081,4090,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3438.65,"{""promo"": ""23%""}",183330,0,South America +2024-04-26,61082,9642,"[""Keyboard"", ""Charger"", ""Headphones""]",2133.2,"{""seasonal"": ""28%""}",294283,0,Africa +2023-11-16,61083,4216,"[""Charger"", ""Laptop""]",1495.18,"{""loyalty"": ""25%""}",221754,0,Africa +2024-08-29,61084,6559,"[""Phone"", ""Headphones""]",1203.8,{},259353,1,Africa +2023-07-11,61085,437,"[""Headphones""]",4022.24,"{"""": ""19%""}",78348,0,South America +2023-10-02,61086,6986,"[""Laptop"", ""Monitor""]",3256.86,{},76305,0,North America +2023-05-22,61087,8295,"[""Tablet""]",4240.43,{},60863,0,North America +2023-07-30,61088,3690,"[""Charger""]",3578.66,"{""seasonal"": ""13%""}",193673,0,North America +2023-06-15,61089,6937,"[""Monitor"", ""Tablet""]",4880.11,"{""seasonal"": ""26%""}",136165,1,Europe +2024-07-14,61090,1786,"[""Tablet"", ""Keyboard"", ""Phone""]",1956.97,"{""seasonal"": ""20%""}",30735,1,Europe +2023-09-21,61091,1074,"[""Wireless Mouse""]",4218.67,{},208743,0,South America +2024-04-20,61092,4422,"[""Phone"", ""Laptop"", ""Charger""]",637.23,{},182531,0,South America +2024-06-04,61093,3599,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3681.18,{},14618,0,Europe +2023-09-16,61094,9121,"[""Wireless Mouse"", ""Monitor""]",1598.4,"{"""": ""27%""}",282750,0,North America +2024-04-21,61095,6367,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1759.57,{},85545,1,North America +2023-11-27,61096,2657,"[""Charger""]",482.4,"{""seasonal"": ""29%""}",83149,0,Africa +2024-05-19,61097,2549,"[""Monitor""]",3636.49,{},223822,0,Asia +2024-10-17,61098,3045,"[""Laptop"", ""Keyboard""]",2575.67,{},139199,0,Africa +2023-07-01,61099,2354,"[""Tablet"", ""Laptop"", ""Keyboard""]",3344.4,{},45223,0,Asia +2024-07-09,61100,2446,"[""Phone"", ""Charger"", ""Keyboard""]",3979.26,{},224043,0,Africa +2023-10-29,61101,449,"[""Phone"", ""Charger"", ""Tablet""]",222.56,"{"""": ""6%""}",257810,0,South America +2024-01-07,61102,4509,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",114.78,{},198478,0,South America +2023-02-10,61103,9282,"[""Wireless Mouse""]",2154.56,"{""loyalty"": ""9%""}",25922,1,Asia +2023-09-13,61104,9202,"[""Tablet""]",1536.43,{},14696,1,South America +2024-08-31,61105,3709,"[""Phone"", ""Tablet""]",805.93,"{""seasonal"": ""11%""}",165323,0,North America +2024-03-17,61106,1959,"[""Tablet"", ""Keyboard"", ""Headphones""]",3670.8,{},133585,0,Asia +2024-10-24,61107,5616,"[""Laptop""]",4490.21,{},201372,1,Africa +2023-11-15,61108,6335,"[""Headphones""]",1255.76,"{""loyalty"": ""21%""}",120096,1,Africa +2023-02-02,61109,8304,"[""Monitor"", ""Laptop""]",2078.22,"{""promo"": ""5%""}",229251,1,North America +2023-06-29,61110,2926,"[""Wireless Mouse""]",2319.49,"{""promo"": ""26%""}",86121,0,North America +2024-11-10,61111,6620,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1493.5,"{""seasonal"": ""29%""}",66598,0,Asia +2023-07-12,61112,5664,"[""Keyboard"", ""Headphones"", ""Monitor""]",4381.25,"{""seasonal"": ""13%""}",120612,1,Africa +2023-04-09,61113,7613,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4795.85,{},22652,0,Africa +2024-10-15,61114,4654,"[""Laptop""]",247.64,{},47132,1,North America +2024-11-25,61115,5119,"[""Tablet""]",1843.7,{},271678,0,Asia +2023-11-18,61116,7632,"[""Headphones""]",3782.6,"{""loyalty"": ""15%""}",39050,1,Europe +2024-04-09,61117,4927,"[""Headphones"", ""Laptop""]",3637.97,{},65290,1,North America +2024-02-05,61118,7192,"[""Charger""]",464.0,{},214579,0,North America +2023-01-08,61119,1443,"[""Headphones"", ""Tablet""]",4532.62,"{""loyalty"": ""12%""}",16867,0,Asia +2023-04-08,61120,9525,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2678.15,"{""loyalty"": ""15%""}",43995,0,Asia +2023-11-21,61121,4408,"[""Wireless Mouse"", ""Headphones""]",1691.24,"{""loyalty"": ""15%""}",90717,0,Africa +2024-01-11,61122,9213,"[""Laptop"", ""Keyboard""]",3586.46,{},62094,1,Europe +2024-03-18,61123,200,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",352.23,"{""promo"": ""30%""}",110651,1,South America +2023-04-13,61124,4605,"[""Phone"", ""Charger""]",404.42,{},259621,1,North America +2024-07-04,61125,5856,"[""Laptop"", ""Charger"", ""Tablet""]",1118.86,"{"""": ""19%""}",274568,0,Asia +2024-11-22,61126,7195,"[""Phone""]",931.82,{},233967,0,North America +2023-06-17,61127,2421,"[""Tablet"", ""Phone"", ""Headphones""]",3198.26,{},195958,1,South America +2023-05-11,61128,4434,"[""Laptop""]",3666.49,{},7520,0,South America +2024-12-18,61129,1076,"[""Phone""]",2571.92,"{""promo"": ""13%""}",137226,1,South America +2024-06-18,61130,2931,"[""Keyboard"", ""Laptop""]",261.62,{},151316,0,Europe +2024-02-04,61131,4888,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",287.62,"{""seasonal"": ""23%""}",122769,0,Europe +2024-06-03,61132,1573,"[""Charger"", ""Laptop"", ""Tablet""]",3613.02,{},7623,0,South America +2024-07-10,61133,5894,"[""Monitor"", ""Laptop"", ""Charger""]",3828.05,"{"""": ""8%""}",271825,0,Europe +2024-04-18,61134,6033,"[""Phone""]",2508.66,"{""loyalty"": ""8%""}",119103,1,Africa +2024-07-04,61135,6783,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1764.02,{},242804,0,North America +2023-05-03,61136,8449,"[""Charger"", ""Phone"", ""Laptop""]",1674.8,{},46213,0,Africa +2024-07-28,61137,766,"[""Laptop"", ""Phone"", ""Charger""]",342.6,{},193608,0,North America +2023-10-24,61138,1332,"[""Charger"", ""Phone"", ""Laptop""]",4927.54,"{""promo"": ""7%""}",88053,1,Africa +2024-04-10,61139,7739,"[""Phone"", ""Laptop"", ""Tablet""]",3432.68,"{""promo"": ""16%""}",123921,0,North America +2024-10-17,61140,5193,"[""Headphones"", ""Laptop"", ""Phone""]",459.46,{},259381,1,Europe +2024-08-02,61141,2162,"[""Headphones"", ""Charger""]",3381.72,{},264494,1,Africa +2024-05-14,61142,5384,"[""Monitor"", ""Keyboard"", ""Laptop""]",2862.93,"{""promo"": ""30%""}",219786,1,Africa +2023-12-28,61143,3562,"[""Laptop"", ""Phone"", ""Tablet""]",3004.69,"{""seasonal"": ""16%""}",213113,1,South America +2024-07-22,61144,979,"[""Phone"", ""Charger""]",3676.45,{},72300,0,South America +2023-11-03,61145,282,"[""Laptop""]",2669.07,{},200595,1,South America +2023-07-08,61146,4544,"[""Wireless Mouse""]",1707.17,{},270446,0,North America +2024-03-29,61147,737,"[""Monitor"", ""Charger"", ""Tablet""]",2210.89,{},99445,0,Asia +2023-07-30,61148,860,"[""Keyboard""]",4919.21,{},158540,1,Europe +2024-10-02,61149,4859,"[""Tablet""]",2645.09,{},253739,0,Europe +2023-08-08,61150,6285,"[""Charger"", ""Phone""]",3724.31,{},107145,1,Europe +2023-11-08,61151,8329,"[""Keyboard"", ""Headphones""]",1782.2,{},247896,0,Europe +2023-04-10,61152,1950,"[""Charger"", ""Laptop""]",1438.17,{},74690,0,Europe +2023-04-20,61153,5727,"[""Phone"", ""Monitor"", ""Charger""]",167.57,"{"""": ""12%""}",29700,1,Africa +2024-03-03,61154,2805,"[""Headphones"", ""Monitor""]",4090.26,"{""loyalty"": ""9%""}",158908,0,Africa +2023-12-08,61155,2815,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1898.52,"{""seasonal"": ""11%""}",189002,0,North America +2023-02-06,61156,5621,"[""Tablet""]",4879.59,"{"""": ""12%""}",159989,1,Asia +2024-02-05,61157,9045,"[""Charger"", ""Keyboard"", ""Headphones""]",1073.82,{},205437,1,South America +2024-01-19,61158,332,"[""Charger"", ""Laptop"", ""Monitor""]",4545.16,{},148923,1,South America +2023-02-25,61159,718,"[""Phone""]",133.44,{},17638,0,South America +2023-10-30,61160,3229,"[""Keyboard"", ""Headphones"", ""Monitor""]",4629.98,{},90447,1,Europe +2023-11-28,61161,8936,"[""Tablet"", ""Phone"", ""Headphones""]",710.05,{},222677,1,Africa +2023-08-20,61162,9201,"[""Charger""]",239.27,{},60266,0,Europe +2023-03-26,61163,9558,"[""Charger"", ""Keyboard""]",4355.74,"{""seasonal"": ""22%""}",162976,1,North America +2023-07-17,61164,2035,"[""Keyboard""]",2165.19,{},114047,0,Asia +2023-10-05,61165,3024,"[""Keyboard"", ""Phone""]",271.02,"{""promo"": ""26%""}",45487,1,Europe +2023-05-29,61166,5263,"[""Keyboard""]",1458.53,{},214164,1,Asia +2023-12-30,61167,6641,"[""Tablet""]",4018.06,{},274327,0,Asia +2023-12-24,61168,5225,"[""Monitor"", ""Headphones"", ""Tablet""]",2430.57,"{""promo"": ""5%""}",225009,0,South America +2024-03-19,61169,3157,"[""Tablet""]",1628.85,{},214890,0,Europe +2024-06-21,61170,2630,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3784.44,"{""loyalty"": ""6%""}",151810,1,Africa +2023-07-10,61171,1252,"[""Charger"", ""Wireless Mouse""]",3348.35,{},164810,1,Europe +2023-02-14,61172,942,"[""Phone"", ""Laptop""]",3338.93,"{""promo"": ""15%""}",192312,1,South America +2023-07-29,61173,6740,"[""Keyboard"", ""Headphones"", ""Charger""]",1961.36,{},68061,0,South America +2023-07-22,61174,6007,"[""Keyboard"", ""Headphones""]",2330.88,"{""promo"": ""13%""}",25480,1,South America +2024-07-23,61175,4394,"[""Laptop"", ""Headphones"", ""Tablet""]",1296.79,{},82792,0,Asia +2023-12-26,61176,7250,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",205.94,"{""promo"": ""13%""}",25239,1,Africa +2024-12-18,61177,7906,"[""Monitor"", ""Headphones"", ""Charger""]",4478.98,"{""promo"": ""8%""}",81997,0,South America +2023-04-21,61178,7333,"[""Charger"", ""Wireless Mouse""]",2552.11,"{""seasonal"": ""7%""}",166784,1,Asia +2024-03-18,61179,2418,"[""Wireless Mouse"", ""Monitor""]",397.75,"{"""": ""30%""}",179280,0,Europe +2024-07-17,61180,1908,"[""Phone"", ""Keyboard""]",1269.64,{},129210,1,Asia +2024-05-31,61181,8289,"[""Phone"", ""Monitor""]",506.95,"{""seasonal"": ""22%""}",129849,0,North America +2024-12-30,61182,2462,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2175.94,{},42643,1,South America +2023-10-09,61183,7147,"[""Laptop"", ""Headphones"", ""Charger""]",2951.27,{},157036,1,Africa +2024-07-02,61184,685,"[""Tablet""]",2581.52,{},278638,0,Africa +2023-10-07,61185,6052,"[""Headphones"", ""Laptop""]",4249.86,{},92631,0,South America +2024-10-16,61186,6557,"[""Phone"", ""Headphones""]",1718.24,"{""seasonal"": ""15%""}",280085,0,Asia +2024-10-09,61187,5100,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",987.74,"{""promo"": ""23%""}",197988,1,South America +2023-07-29,61188,6537,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2434.25,"{""promo"": ""18%""}",208756,0,Africa +2024-07-01,61189,9210,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2888.91,{},232331,0,Africa +2024-09-04,61190,7410,"[""Monitor""]",2396.38,"{""loyalty"": ""23%""}",163706,0,Africa +2023-07-03,61191,5011,"[""Wireless Mouse"", ""Tablet""]",1019.03,"{""seasonal"": ""27%""}",19466,1,Europe +2024-10-19,61192,9281,"[""Wireless Mouse"", ""Keyboard""]",1437.38,{},219264,0,Africa +2024-05-30,61193,5812,"[""Tablet""]",2265.4,{},274714,0,Asia +2023-07-19,61194,8852,"[""Phone"", ""Laptop""]",4091.54,{},138430,0,North America +2024-03-22,61195,8614,"[""Wireless Mouse"", ""Monitor""]",3522.18,"{""promo"": ""18%""}",56328,1,Asia +2023-08-30,61196,1473,"[""Tablet""]",2559.34,{},288820,0,North America +2024-08-09,61197,523,"[""Phone"", ""Tablet""]",2803.85,{},144856,0,Europe +2023-03-18,61198,6043,"[""Headphones""]",4951.91,{},291555,0,Africa +2024-07-21,61199,5437,"[""Wireless Mouse""]",903.17,"{""promo"": ""9%""}",211985,0,Asia +2023-01-13,61200,2733,"[""Phone""]",4413.78,{},292171,0,Europe +2023-03-25,61201,360,"[""Headphones""]",122.48,{},107144,1,North America +2024-04-30,61202,5979,"[""Headphones"", ""Charger""]",1641.2,{},206189,0,South America +2024-10-29,61203,5390,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4519.1,"{""promo"": ""20%""}",240487,1,North America +2023-09-27,61204,4590,"[""Laptop"", ""Monitor""]",1605.39,{},164825,1,Europe +2024-10-09,61205,4082,"[""Charger"", ""Headphones""]",2774.84,{},25253,0,South America +2023-01-01,61206,3477,"[""Monitor"", ""Phone""]",4937.01,"{"""": ""12%""}",65397,1,Asia +2024-02-27,61207,5786,"[""Charger""]",3865.0,{},151417,1,Europe +2023-06-25,61208,9307,"[""Wireless Mouse""]",2551.28,"{""loyalty"": ""5%""}",58578,1,Europe +2023-03-30,61209,6086,"[""Keyboard"", ""Wireless Mouse""]",2112.35,{},59143,1,Europe +2023-09-17,61210,832,"[""Phone""]",3594.84,"{""loyalty"": ""8%""}",135955,0,Africa +2023-11-06,61211,4136,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2860.16,"{""loyalty"": ""20%""}",127772,0,Asia +2023-03-19,61212,4002,"[""Headphones"", ""Keyboard""]",4791.75,{},29881,0,Europe +2023-04-22,61213,1237,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1799.42,"{""seasonal"": ""26%""}",169190,1,South America +2024-09-24,61214,358,"[""Charger""]",2514.39,{},88052,0,Africa +2024-10-24,61215,658,"[""Charger""]",1740.86,"{""promo"": ""13%""}",110488,0,Africa +2023-03-26,61216,6295,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2417.87,"{"""": ""21%""}",41238,1,Europe +2024-12-15,61217,421,"[""Keyboard"", ""Charger""]",1728.9,{},192643,1,Europe +2024-12-25,61218,2642,"[""Keyboard""]",1221.41,{},202539,0,South America +2024-02-26,61219,4007,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",318.56,{},196962,1,Asia +2023-05-25,61220,1565,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2507.93,{},256512,0,Asia +2024-07-13,61221,6469,"[""Monitor""]",1683.76,{},63222,0,South America +2023-06-11,61222,1078,"[""Tablet"", ""Phone"", ""Monitor""]",3628.14,{},41113,1,Africa +2023-02-20,61223,4518,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4635.07,{},127251,0,Asia +2023-04-18,61224,2103,"[""Keyboard""]",3795.06,{},278460,0,Europe +2023-02-25,61225,5369,"[""Monitor"", ""Keyboard""]",3057.32,{},139863,1,North America +2024-02-14,61226,9560,"[""Charger"", ""Monitor"", ""Phone""]",1640.94,{},119964,1,North America +2024-05-10,61227,7506,"[""Charger"", ""Headphones""]",329.76,{},75059,0,Africa +2023-06-14,61228,2215,"[""Charger"", ""Monitor"", ""Keyboard""]",794.09,"{"""": ""25%""}",211032,0,South America +2024-10-25,61229,6898,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3729.88,"{""seasonal"": ""27%""}",31878,0,Europe +2024-08-13,61230,3752,"[""Monitor""]",667.88,{},238024,0,Africa +2024-02-28,61231,4018,"[""Tablet"", ""Keyboard"", ""Monitor""]",4678.75,{},85404,0,South America +2023-01-08,61232,8491,"[""Phone"", ""Charger""]",2332.14,{},160640,0,South America +2024-06-28,61233,9876,"[""Monitor"", ""Tablet""]",1457.39,{},153116,1,South America +2024-11-24,61234,1338,"[""Phone"", ""Tablet""]",2316.64,{},220691,0,Africa +2023-11-28,61235,9042,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1771.69,"{""loyalty"": ""26%""}",127680,1,Africa +2023-09-09,61236,4693,"[""Charger"", ""Wireless Mouse""]",102.32,"{""promo"": ""21%""}",38960,0,North America +2024-11-05,61237,2984,"[""Laptop"", ""Phone""]",2747.33,{},277339,1,Africa +2023-11-26,61238,8366,"[""Tablet"", ""Phone""]",209.71,"{""seasonal"": ""16%""}",261440,1,Africa +2023-12-14,61239,570,"[""Monitor""]",3734.86,{},75574,1,Europe +2024-04-02,61240,4178,"[""Phone"", ""Monitor"", ""Keyboard""]",3258.1,"{""loyalty"": ""8%""}",48906,0,Europe +2024-01-26,61241,49,"[""Phone"", ""Tablet""]",2776.91,{},89195,0,Asia +2023-08-31,61242,5438,"[""Tablet"", ""Headphones""]",1226.5,"{""loyalty"": ""26%""}",233847,1,Europe +2023-12-24,61243,1376,"[""Headphones""]",3567.31,{},98784,1,Asia +2023-09-04,61244,1965,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1342.11,"{"""": ""5%""}",91666,0,Europe +2023-01-25,61245,296,"[""Phone"", ""Monitor"", ""Tablet""]",2600.71,{},3528,0,Africa +2023-07-06,61246,9101,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2085.8,"{""promo"": ""26%""}",95401,1,Asia +2024-01-25,61247,3753,"[""Monitor"", ""Wireless Mouse""]",3902.75,{},5027,0,Europe +2023-06-13,61248,4509,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3784.36,"{"""": ""10%""}",65192,1,North America +2024-08-08,61249,979,"[""Charger"", ""Laptop""]",3500.3,"{""loyalty"": ""27%""}",283855,0,Asia +2024-03-07,61250,3164,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2584.57,{},108916,1,Africa +2023-12-08,61251,9857,"[""Laptop""]",1971.91,{},167375,1,South America +2023-12-21,61252,8364,"[""Wireless Mouse""]",2192.85,"{""loyalty"": ""24%""}",35228,1,Asia +2023-03-31,61253,174,"[""Tablet""]",597.52,"{""promo"": ""24%""}",102401,1,Asia +2024-10-28,61254,1261,"[""Tablet"", ""Phone"", ""Headphones""]",4849.68,"{"""": ""15%""}",114092,1,North America +2024-03-30,61255,4665,"[""Tablet""]",4018.82,{},46650,1,Europe +2024-09-04,61256,8890,"[""Monitor""]",3940.74,"{""seasonal"": ""20%""}",206426,0,North America +2024-05-22,61257,2000,"[""Headphones""]",1776.39,"{""seasonal"": ""9%""}",111982,0,North America +2023-09-16,61258,5177,"[""Monitor""]",740.39,{},286093,0,South America +2024-02-10,61259,2156,"[""Laptop"", ""Monitor"", ""Phone""]",1523.05,{},28030,1,Africa +2023-06-25,61260,6635,"[""Charger""]",3242.54,"{""seasonal"": ""21%""}",255210,0,Africa +2024-07-16,61261,7108,"[""Laptop"", ""Keyboard"", ""Tablet""]",353.45,"{""seasonal"": ""30%""}",192830,1,Asia +2024-11-07,61262,4517,"[""Monitor"", ""Charger"", ""Laptop""]",3075.47,{},122735,0,Africa +2024-07-06,61263,9384,"[""Monitor"", ""Charger""]",3660.4,"{""promo"": ""29%""}",165328,1,Europe +2023-05-19,61264,2324,"[""Tablet"", ""Keyboard""]",1812.75,{},19868,0,Asia +2024-10-03,61265,2521,"[""Keyboard""]",4175.7,{},27263,0,South America +2024-01-04,61266,82,"[""Tablet"", ""Phone""]",1995.52,{},151676,0,Europe +2023-04-05,61267,6710,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2224.98,{},219751,1,Europe +2024-01-30,61268,2911,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2203.91,"{""promo"": ""23%""}",219730,0,North America +2024-11-21,61269,3924,"[""Wireless Mouse"", ""Monitor""]",3993.97,{},295906,0,Asia +2024-06-28,61270,4714,"[""Phone"", ""Charger"", ""Keyboard""]",1260.57,"{""seasonal"": ""23%""}",182567,1,South America +2023-10-15,61271,1179,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1910.91,{},116617,0,Europe +2023-07-16,61272,2599,"[""Keyboard""]",3168.26,"{""loyalty"": ""9%""}",122651,1,Asia +2024-11-01,61273,4310,"[""Keyboard""]",1642.62,"{""seasonal"": ""7%""}",297253,1,North America +2024-07-12,61274,8662,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4349.73,{},72656,0,Africa +2024-04-23,61275,8490,"[""Monitor"", ""Tablet"", ""Headphones""]",2613.5,{},171717,1,South America +2023-04-29,61276,2295,"[""Wireless Mouse"", ""Headphones""]",3223.94,"{""loyalty"": ""19%""}",225798,0,Europe +2023-02-25,61277,2626,"[""Keyboard"", ""Phone"", ""Monitor""]",3787.71,"{""loyalty"": ""29%""}",205302,0,South America +2023-12-02,61278,7340,"[""Keyboard""]",189.75,{},274199,0,Europe +2023-03-01,61279,6282,"[""Headphones"", ""Charger""]",1968.41,"{""loyalty"": ""30%""}",194266,0,North America +2023-05-22,61280,6881,"[""Laptop"", ""Monitor"", ""Keyboard""]",1493.72,{},199733,1,Africa +2024-10-18,61281,3466,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2159.74,"{""seasonal"": ""14%""}",15979,0,Europe +2023-04-08,61282,7718,"[""Tablet""]",4168.49,{},37967,1,Asia +2024-03-15,61283,849,"[""Monitor""]",290.25,{},273180,0,Africa +2024-10-07,61284,4609,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2262.66,{},299970,1,Europe +2024-04-15,61285,1691,"[""Wireless Mouse"", ""Tablet""]",4702.14,"{""seasonal"": ""27%""}",52999,0,North America +2024-11-02,61286,4399,"[""Keyboard"", ""Tablet""]",2789.63,"{""promo"": ""22%""}",181473,1,North America +2024-05-05,61287,2542,"[""Laptop"", ""Monitor"", ""Headphones""]",2974.12,"{"""": ""24%""}",41131,0,South America +2024-11-14,61288,6122,"[""Charger"", ""Laptop""]",1031.26,"{"""": ""28%""}",241524,1,Africa +2023-05-05,61289,7881,"[""Monitor"", ""Headphones""]",4182.19,{},259610,0,North America +2024-04-16,61290,7808,"[""Charger""]",2559.5,"{"""": ""21%""}",59842,0,Europe +2024-06-26,61291,2258,"[""Charger"", ""Keyboard""]",1289.95,"{""seasonal"": ""23%""}",79130,0,Europe +2024-11-29,61292,8694,"[""Phone"", ""Laptop""]",420.97,{},73736,0,South America +2023-09-26,61293,4837,"[""Wireless Mouse"", ""Phone""]",265.79,"{""loyalty"": ""21%""}",227113,0,Europe +2024-12-14,61294,3897,"[""Phone""]",3074.15,"{""loyalty"": ""13%""}",87286,1,Europe +2023-09-20,61295,9111,"[""Monitor""]",4210.89,{},141847,1,Europe +2024-07-22,61296,1529,"[""Headphones""]",2494.8,{},96426,0,Europe +2023-04-24,61297,5931,"[""Headphones""]",3711.1,"{"""": ""9%""}",59996,0,South America +2024-01-07,61298,1604,"[""Headphones"", ""Laptop""]",3442.63,{},238793,0,Europe +2023-01-12,61299,2595,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1163.82,{},247156,0,Africa +2023-05-22,61300,7818,"[""Headphones"", ""Wireless Mouse""]",1908.33,{},40187,0,Africa +2024-07-25,61301,1992,"[""Laptop""]",1896.55,{},139879,1,Europe +2023-06-07,61302,6734,"[""Laptop""]",2708.78,"{""seasonal"": ""25%""}",105197,0,Europe +2024-10-19,61303,7737,"[""Phone""]",1817.77,"{""promo"": ""10%""}",259853,0,Asia +2023-05-29,61304,3610,"[""Keyboard"", ""Tablet""]",4894.73,"{""promo"": ""23%""}",98653,1,South America +2023-12-17,61305,1929,"[""Wireless Mouse""]",1529.53,{},27027,0,South America +2023-08-25,61306,4098,"[""Keyboard""]",4218.73,"{""promo"": ""28%""}",245077,1,Africa +2023-12-14,61307,9965,"[""Laptop""]",2244.34,{},24254,1,Europe +2024-01-30,61308,1185,"[""Headphones"", ""Laptop"", ""Keyboard""]",3774.23,"{""seasonal"": ""5%""}",267274,1,Europe +2023-07-31,61309,9352,"[""Keyboard"", ""Charger"", ""Monitor""]",4090.21,{},39208,1,North America +2023-10-04,61310,2581,"[""Tablet"", ""Phone""]",4950.21,"{""loyalty"": ""6%""}",231997,1,Europe +2023-08-21,61311,2,"[""Laptop"", ""Monitor""]",4517.19,"{"""": ""21%""}",133511,1,Africa +2023-01-06,61312,3641,"[""Keyboard""]",4576.52,{},123118,0,South America +2024-05-30,61313,8654,"[""Keyboard""]",4104.88,{},102496,0,Africa +2024-04-08,61314,8311,"[""Charger""]",4950.27,{},202411,0,Asia +2024-01-01,61315,9798,"[""Charger"", ""Headphones"", ""Laptop""]",4245.28,"{""seasonal"": ""12%""}",247909,0,Africa +2023-05-03,61316,3236,"[""Laptop"", ""Wireless Mouse""]",2298.33,{},89621,1,North America +2023-06-22,61317,8181,"[""Phone""]",517.28,"{""promo"": ""7%""}",111586,1,South America +2023-01-23,61318,374,"[""Tablet"", ""Laptop""]",3232.25,"{""seasonal"": ""13%""}",246991,1,North America +2024-10-11,61319,939,"[""Charger""]",3300.4,{},223984,0,Asia +2024-12-12,61320,5323,"[""Phone""]",1458.03,"{""loyalty"": ""15%""}",35567,0,North America +2024-12-10,61321,3956,"[""Tablet"", ""Headphones""]",4790.61,"{"""": ""12%""}",222071,1,Africa +2023-01-25,61322,8417,"[""Laptop"", ""Phone""]",1876.38,"{""promo"": ""8%""}",149503,1,North America +2023-05-29,61323,9241,"[""Charger""]",1787.66,{},148643,0,Africa +2023-08-07,61324,5261,"[""Laptop"", ""Headphones""]",3956.88,"{""loyalty"": ""13%""}",129161,1,North America +2023-05-28,61325,2739,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1892.98,"{""promo"": ""9%""}",61464,1,Africa +2023-12-18,61326,9282,"[""Charger""]",57.28,"{""loyalty"": ""28%""}",214467,1,South America +2023-11-29,61327,1911,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",163.78,"{""loyalty"": ""26%""}",129182,0,Asia +2023-02-06,61328,6128,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3872.98,"{""promo"": ""22%""}",233611,1,North America +2024-12-04,61329,3343,"[""Keyboard""]",2434.19,{},96779,1,South America +2023-06-21,61330,1045,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4293.91,"{"""": ""7%""}",86377,0,Asia +2023-08-19,61331,8382,"[""Charger""]",1180.49,{},190192,1,Europe +2023-04-26,61332,9168,"[""Monitor"", ""Charger""]",4225.4,{},131234,1,Africa +2023-11-24,61333,4126,"[""Tablet"", ""Keyboard""]",430.97,"{""loyalty"": ""15%""}",5532,1,Asia +2024-07-23,61334,1634,"[""Monitor""]",1940.77,{},166853,1,North America +2024-04-15,61335,9369,"[""Laptop""]",3537.73,{},145662,0,Europe +2024-11-25,61336,4620,"[""Headphones"", ""Tablet"", ""Keyboard""]",4526.95,{},268552,1,Europe +2024-06-17,61337,1636,"[""Monitor"", ""Keyboard"", ""Phone""]",1591.6,{},222969,0,North America +2024-10-04,61338,4582,"[""Headphones"", ""Phone""]",2006.71,{},192551,0,Europe +2024-08-15,61339,8053,"[""Keyboard"", ""Wireless Mouse""]",3977.14,{},37104,0,North America +2023-05-19,61340,1677,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3477.97,"{""seasonal"": ""19%""}",255108,1,Europe +2023-11-10,61341,8234,"[""Tablet"", ""Monitor""]",3709.3,{},149168,0,South America +2023-04-06,61342,4990,"[""Headphones"", ""Laptop"", ""Phone""]",2219.9,{},40254,1,North America +2023-11-02,61343,702,"[""Phone"", ""Tablet"", ""Charger""]",2502.41,"{""seasonal"": ""9%""}",163212,1,Europe +2023-06-19,61344,1203,"[""Charger""]",3065.63,"{""seasonal"": ""5%""}",180580,0,Africa +2024-11-23,61345,2338,"[""Phone""]",1083.72,"{""promo"": ""18%""}",206141,1,South America +2024-04-15,61346,5477,"[""Keyboard"", ""Tablet""]",3582.4,"{""seasonal"": ""21%""}",186637,0,Europe +2023-11-17,61347,9878,"[""Phone"", ""Headphones"", ""Keyboard""]",4823.76,"{""promo"": ""14%""}",124938,1,Africa +2023-07-04,61348,5530,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4089.78,{},79110,0,Africa +2023-05-22,61349,4847,"[""Laptop"", ""Wireless Mouse""]",776.5,{},10158,0,Europe +2024-11-22,61350,1828,"[""Monitor""]",1906.54,{},234470,0,Africa +2024-11-02,61351,2885,"[""Headphones"", ""Charger""]",2119.52,{},162080,1,Africa +2023-01-12,61352,1184,"[""Tablet"", ""Phone"", ""Headphones""]",1381.64,{},30100,1,North America +2023-06-19,61353,3706,"[""Charger""]",4657.45,"{"""": ""14%""}",170226,0,Asia +2024-05-18,61354,3428,"[""Keyboard"", ""Tablet"", ""Charger""]",1174.48,"{""promo"": ""6%""}",31830,0,Asia +2023-07-23,61355,4649,"[""Phone"", ""Monitor"", ""Keyboard""]",3153.0,{},78001,0,South America +2024-03-31,61356,4259,"[""Headphones"", ""Charger""]",1585.68,{},173112,1,South America +2024-05-27,61357,6333,"[""Tablet""]",4042.97,{},291264,1,Asia +2024-06-26,61358,7997,"[""Phone"", ""Laptop"", ""Keyboard""]",2716.28,"{""loyalty"": ""16%""}",159643,0,Europe +2023-09-29,61359,4523,"[""Keyboard""]",2378.38,"{"""": ""6%""}",147683,0,South America +2023-10-20,61360,7509,"[""Laptop"", ""Phone""]",2273.33,{},285327,0,South America +2024-04-24,61361,4315,"[""Laptop"", ""Monitor""]",2571.9,"{""seasonal"": ""19%""}",56186,1,North America +2023-10-07,61362,7050,"[""Phone"", ""Headphones"", ""Tablet""]",4561.09,"{""loyalty"": ""11%""}",164055,1,Europe +2024-07-08,61363,3958,"[""Phone"", ""Keyboard"", ""Laptop""]",1248.65,"{""seasonal"": ""27%""}",218548,1,South America +2024-09-27,61364,2425,"[""Keyboard"", ""Headphones"", ""Tablet""]",3515.72,{},288299,1,Asia +2023-04-29,61365,552,"[""Laptop"", ""Charger""]",3400.66,{},22823,1,Europe +2024-08-29,61366,7185,"[""Tablet"", ""Wireless Mouse""]",2323.89,{},232269,1,Asia +2023-01-12,61367,4342,"[""Monitor""]",3934.5,{},74953,1,Asia +2024-10-22,61368,6312,"[""Monitor""]",951.67,{},54872,0,North America +2023-11-15,61369,369,"[""Phone""]",2743.46,{},15044,0,Europe +2023-09-11,61370,2256,"[""Headphones"", ""Keyboard"", ""Monitor""]",4882.2,{},113684,1,Africa +2023-10-18,61371,443,"[""Keyboard""]",211.25,{},48949,0,Asia +2023-03-17,61372,3531,"[""Charger"", ""Wireless Mouse""]",1515.15,"{""seasonal"": ""16%""}",11075,1,Europe +2023-07-07,61373,5628,"[""Headphones""]",2159.42,{},259871,0,Europe +2024-02-27,61374,6133,"[""Headphones"", ""Monitor""]",3041.84,{},11624,1,Asia +2024-08-12,61375,1036,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4347.07,{},254329,0,North America +2024-12-17,61376,5925,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4980.75,"{""seasonal"": ""15%""}",189872,0,North America +2024-03-26,61377,182,"[""Phone""]",4811.19,{},221655,1,South America +2024-01-17,61378,799,"[""Laptop"", ""Monitor""]",3010.66,"{"""": ""30%""}",167562,0,Africa +2023-10-11,61379,8979,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1702.1,"{""seasonal"": ""9%""}",246631,1,Europe +2024-12-20,61380,5368,"[""Phone"", ""Charger"", ""Headphones""]",110.72,"{"""": ""12%""}",184482,0,Asia +2023-09-05,61381,8365,"[""Keyboard""]",469.87,"{""seasonal"": ""22%""}",146141,0,Asia +2023-03-28,61382,8833,"[""Monitor"", ""Headphones""]",1580.93,"{"""": ""26%""}",76084,0,North America +2024-12-03,61383,9085,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1774.15,"{""seasonal"": ""12%""}",261068,1,Asia +2024-03-10,61384,8715,"[""Charger""]",2587.81,"{""seasonal"": ""16%""}",200923,0,North America +2023-03-23,61385,2780,"[""Headphones"", ""Laptop""]",3675.62,"{""loyalty"": ""22%""}",167591,1,Asia +2023-07-22,61386,5604,"[""Phone"", ""Charger"", ""Laptop""]",1380.37,"{""promo"": ""21%""}",61651,1,Asia +2023-07-31,61387,8358,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3180.64,"{""loyalty"": ""14%""}",122703,1,Asia +2024-08-01,61388,1481,"[""Phone""]",979.92,"{""seasonal"": ""11%""}",53952,0,Europe +2023-04-08,61389,3920,"[""Laptop"", ""Wireless Mouse""]",3618.37,"{""seasonal"": ""10%""}",269219,1,Asia +2024-11-01,61390,1053,"[""Monitor"", ""Phone""]",4980.96,{},216971,0,Asia +2024-06-29,61391,8356,"[""Phone""]",1566.89,"{"""": ""16%""}",91189,1,North America +2024-05-29,61392,6162,"[""Keyboard"", ""Laptop"", ""Monitor""]",4949.82,{},202405,1,South America +2023-08-20,61393,4205,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2033.13,{},20112,1,Asia +2023-04-18,61394,9209,"[""Laptop"", ""Monitor"", ""Charger""]",3334.6,"{"""": ""5%""}",258323,1,South America +2023-04-11,61395,7853,"[""Phone""]",3046.56,{},97426,1,Europe +2023-10-06,61396,43,"[""Tablet"", ""Monitor"", ""Phone""]",1459.46,"{""loyalty"": ""28%""}",151559,0,Asia +2024-09-22,61397,389,"[""Charger"", ""Keyboard""]",2363.74,"{""promo"": ""26%""}",171465,1,Asia +2023-05-09,61398,7111,"[""Charger""]",3794.45,"{""seasonal"": ""6%""}",57098,1,Asia +2024-05-28,61399,6120,"[""Tablet"", ""Monitor"", ""Laptop""]",2533.86,"{"""": ""30%""}",246494,1,North America +2023-05-29,61400,3991,"[""Charger""]",2611.58,"{""seasonal"": ""28%""}",85109,0,South America +2024-05-24,61401,3079,"[""Keyboard"", ""Wireless Mouse""]",3545.48,{},228850,0,Asia +2024-06-28,61402,1018,"[""Wireless Mouse""]",204.14,"{""loyalty"": ""12%""}",166673,1,North America +2023-02-23,61403,7778,"[""Charger"", ""Headphones"", ""Keyboard""]",1761.61,{},90076,1,Africa +2024-01-07,61404,645,"[""Phone"", ""Monitor""]",3151.11,"{""loyalty"": ""10%""}",272219,1,Africa +2023-07-18,61405,1128,"[""Charger"", ""Phone""]",1643.36,"{""seasonal"": ""5%""}",72612,1,Europe +2024-03-21,61406,1180,"[""Keyboard"", ""Tablet""]",4428.83,{},267225,1,Asia +2023-12-15,61407,2593,"[""Charger""]",4065.64,{},123399,0,Asia +2024-05-26,61408,9925,"[""Tablet""]",2398.67,"{"""": ""18%""}",288463,0,Africa +2024-05-07,61409,4052,"[""Headphones"", ""Tablet""]",4042.32,{},194119,1,Africa +2023-04-28,61410,6662,"[""Keyboard""]",3295.19,"{""seasonal"": ""16%""}",76331,0,Africa +2023-10-16,61411,8755,"[""Headphones"", ""Tablet""]",2662.44,"{""seasonal"": ""18%""}",42139,0,North America +2024-04-04,61412,2749,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2027.19,{},258071,1,Asia +2023-01-02,61413,7967,"[""Phone"", ""Tablet""]",1816.41,"{""seasonal"": ""22%""}",213617,0,South America +2023-08-31,61414,2804,"[""Wireless Mouse""]",285.38,{},282051,0,Africa +2024-12-30,61415,2681,"[""Tablet"", ""Charger""]",1875.76,{},162555,0,South America +2024-10-16,61416,4073,"[""Keyboard"", ""Phone""]",4844.93,"{""seasonal"": ""30%""}",140984,0,South America +2023-06-15,61417,1371,"[""Wireless Mouse"", ""Phone""]",4420.51,{},25734,0,Asia +2023-03-21,61418,7516,"[""Phone"", ""Wireless Mouse""]",3505.39,"{""seasonal"": ""16%""}",144617,0,Europe +2024-03-14,61419,5616,"[""Charger"", ""Keyboard"", ""Laptop""]",4881.26,{},20666,1,North America +2024-03-04,61420,94,"[""Keyboard""]",2197.84,{},37231,0,Europe +2023-11-30,61421,1609,"[""Phone"", ""Charger""]",4282.03,{},183579,0,South America +2024-11-07,61422,5091,"[""Monitor"", ""Laptop""]",983.6,"{""loyalty"": ""7%""}",241455,1,Africa +2024-05-27,61423,4191,"[""Laptop"", ""Monitor"", ""Tablet""]",1831.9,{},206584,1,Europe +2023-10-17,61424,6945,"[""Laptop"", ""Keyboard"", ""Charger""]",4114.37,"{""promo"": ""17%""}",119159,1,South America +2023-11-11,61425,5054,"[""Charger""]",964.52,{},234925,0,North America +2024-09-02,61426,1558,"[""Monitor"", ""Keyboard"", ""Headphones""]",2810.69,"{""seasonal"": ""15%""}",149803,1,Africa +2023-06-26,61427,9872,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4959.95,"{"""": ""8%""}",88979,1,South America +2023-09-19,61428,2149,"[""Monitor"", ""Wireless Mouse""]",1408.22,"{"""": ""14%""}",138067,0,Asia +2024-03-02,61429,1342,"[""Wireless Mouse"", ""Charger""]",160.71,"{""promo"": ""6%""}",253069,0,South America +2024-06-30,61430,396,"[""Charger""]",4120.65,"{""seasonal"": ""29%""}",263841,1,Europe +2023-11-30,61431,7776,"[""Wireless Mouse"", ""Monitor""]",4033.37,{},162018,1,Asia +2024-07-23,61432,7416,"[""Headphones"", ""Monitor"", ""Laptop""]",998.06,{},270363,0,Africa +2024-07-11,61433,9693,"[""Headphones"", ""Keyboard""]",4090.51,{},28736,1,Africa +2024-05-16,61434,1819,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1179.12,{},44715,1,South America +2024-11-09,61435,8047,"[""Wireless Mouse""]",4788.61,{},115127,0,Africa +2023-05-17,61436,6772,"[""Tablet"", ""Monitor""]",1658.45,{},125850,1,South America +2024-09-01,61437,3782,"[""Phone""]",2924.82,{},174371,0,North America +2024-01-28,61438,2236,"[""Phone"", ""Charger""]",2667.22,{},79240,0,Europe +2024-10-30,61439,3075,"[""Keyboard"", ""Tablet"", ""Monitor""]",395.97,{},4340,0,Asia +2024-10-06,61440,7796,"[""Laptop"", ""Tablet""]",1411.34,{},3149,1,Africa +2023-07-18,61441,6328,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1759.27,{},106084,0,Europe +2024-12-08,61442,2239,"[""Charger"", ""Monitor""]",309.88,{},101523,1,South America +2023-05-12,61443,5843,"[""Keyboard""]",3921.42,"{"""": ""23%""}",144376,1,South America +2023-01-10,61444,1903,"[""Phone"", ""Charger"", ""Laptop""]",3151.6,{},2679,0,Europe +2023-08-22,61445,5939,"[""Charger""]",196.18,{},67510,1,Asia +2024-01-29,61446,3513,"[""Phone"", ""Monitor""]",322.24,"{"""": ""30%""}",170586,1,South America +2024-03-16,61447,3138,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4503.51,"{""promo"": ""28%""}",59607,1,South America +2023-10-06,61448,1100,"[""Laptop"", ""Keyboard"", ""Tablet""]",4022.84,{},66670,0,North America +2023-09-04,61449,1668,"[""Headphones""]",535.32,{},57964,1,Europe +2024-03-19,61450,4388,"[""Keyboard""]",4263.36,"{"""": ""15%""}",161747,1,North America +2024-11-09,61451,5199,"[""Keyboard""]",255.04,{},220705,0,North America +2023-03-26,61452,6522,"[""Monitor"", ""Tablet""]",4724.25,"{""loyalty"": ""12%""}",299901,0,South America +2024-06-23,61453,1521,"[""Tablet"", ""Wireless Mouse""]",3837.54,"{"""": ""12%""}",271731,0,Africa +2023-07-10,61454,2540,"[""Wireless Mouse""]",4885.17,"{""loyalty"": ""16%""}",232862,1,Asia +2023-01-27,61455,6880,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2623.14,"{""promo"": ""12%""}",245313,0,Africa +2024-04-07,61456,2979,"[""Tablet"", ""Keyboard"", ""Laptop""]",1975.32,{},76115,1,North America +2024-05-26,61457,5976,"[""Tablet"", ""Monitor"", ""Phone""]",2471.35,{},172319,0,Asia +2023-01-07,61458,4013,"[""Tablet""]",2703.4,"{""seasonal"": ""29%""}",244867,1,Africa +2023-12-13,61459,4967,"[""Headphones""]",196.14,{},253820,0,Africa +2024-01-28,61460,119,"[""Monitor""]",3558.34,"{""loyalty"": ""7%""}",16807,1,South America +2023-08-20,61461,8124,"[""Phone""]",3501.53,"{"""": ""10%""}",5805,1,Asia +2023-06-16,61462,5425,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2307.48,{},156925,0,North America +2024-02-03,61463,8662,"[""Phone"", ""Monitor"", ""Laptop""]",1723.43,"{""promo"": ""28%""}",69150,1,Asia +2023-12-22,61464,2071,"[""Keyboard""]",4009.81,"{"""": ""24%""}",257177,1,Asia +2024-05-10,61465,8185,"[""Monitor""]",576.32,{},199431,0,South America +2023-06-27,61466,3836,"[""Headphones"", ""Tablet""]",2157.08,"{""loyalty"": ""30%""}",268039,1,Asia +2023-12-26,61467,1251,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1048.46,"{""promo"": ""28%""}",165698,1,South America +2023-04-11,61468,2843,"[""Phone""]",1347.66,"{""promo"": ""23%""}",144117,0,South America +2023-07-28,61469,9642,"[""Monitor"", ""Phone"", ""Laptop""]",3362.28,{},22196,0,Europe +2024-05-04,61470,4085,"[""Monitor"", ""Keyboard""]",2550.39,{},72327,0,Europe +2024-01-08,61471,1479,"[""Charger""]",927.49,{},10325,0,Europe +2024-04-23,61472,7596,"[""Monitor"", ""Charger""]",2616.34,{},296337,0,Europe +2024-07-17,61473,8816,"[""Headphones"", ""Wireless Mouse""]",4260.53,{},123508,1,Europe +2024-02-18,61474,6168,"[""Laptop""]",1114.21,"{""promo"": ""24%""}",152177,0,North America +2023-11-27,61475,1151,"[""Charger""]",2987.49,"{""loyalty"": ""15%""}",42097,0,Africa +2024-05-03,61476,982,"[""Laptop""]",126.96,{},193648,1,Asia +2024-10-23,61477,6320,"[""Phone""]",4242.62,{},183139,0,North America +2023-10-17,61478,1483,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1060.34,"{""loyalty"": ""17%""}",248425,1,Asia +2024-05-14,61479,7002,"[""Tablet"", ""Laptop"", ""Headphones""]",1575.22,{},278453,0,Africa +2024-11-05,61480,387,"[""Headphones""]",1827.42,"{""promo"": ""23%""}",23292,1,Asia +2023-10-24,61481,9281,"[""Tablet""]",1619.06,"{""seasonal"": ""24%""}",133113,0,Africa +2023-04-22,61482,9845,"[""Phone""]",876.18,{},66896,0,Africa +2023-08-09,61483,2649,"[""Charger"", ""Monitor""]",2875.81,{},160854,0,Africa +2023-12-10,61484,9368,"[""Phone"", ""Tablet"", ""Headphones""]",2828.22,"{"""": ""19%""}",278865,0,Asia +2024-09-25,61485,5885,"[""Charger""]",2182.4,"{""loyalty"": ""5%""}",253488,1,Asia +2023-03-25,61486,5451,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",314.03,{},283185,1,Africa +2024-01-01,61487,8958,"[""Monitor"", ""Tablet""]",2825.26,{},115946,0,North America +2023-10-02,61488,6194,"[""Wireless Mouse"", ""Keyboard""]",3135.12,"{""promo"": ""15%""}",80197,1,Europe +2023-03-21,61489,9950,"[""Tablet""]",4919.38,{},28518,1,Asia +2024-04-20,61490,9070,"[""Keyboard""]",1899.07,{},197847,1,South America +2024-03-20,61491,36,"[""Keyboard"", ""Phone"", ""Tablet""]",4596.52,"{""promo"": ""6%""}",153450,1,Europe +2024-06-21,61492,6620,"[""Tablet""]",4159.61,{},264596,0,Europe +2024-01-27,61493,9932,"[""Headphones""]",4605.39,"{""promo"": ""21%""}",115771,1,North America +2023-03-23,61494,2369,"[""Laptop""]",3785.68,{},246058,0,Africa +2024-04-26,61495,3423,"[""Wireless Mouse"", ""Monitor""]",2649.2,"{""loyalty"": ""28%""}",25964,0,North America +2023-01-03,61496,1504,"[""Tablet""]",3515.21,"{""seasonal"": ""6%""}",189419,1,North America +2023-12-02,61497,8419,"[""Headphones"", ""Phone"", ""Tablet""]",481.47,{},35630,1,North America +2024-03-04,61498,3375,"[""Wireless Mouse""]",3089.49,"{""seasonal"": ""30%""}",38598,1,South America +2024-08-16,61499,7573,"[""Laptop"", ""Wireless Mouse""]",3308.53,"{""promo"": ""12%""}",221480,0,Asia +2023-02-13,61500,1241,"[""Laptop""]",1733.26,"{""seasonal"": ""25%""}",149683,0,Europe +2023-01-27,61501,4701,"[""Monitor""]",2456.25,{},168650,1,Africa +2024-04-04,61502,2686,"[""Headphones""]",972.14,{},38721,0,Africa +2024-12-12,61503,2197,"[""Laptop""]",624.35,{},243013,1,Africa +2023-08-29,61504,650,"[""Charger"", ""Monitor"", ""Keyboard""]",4889.15,"{""loyalty"": ""24%""}",74814,0,Africa +2023-04-12,61505,7811,"[""Headphones"", ""Monitor""]",2024.08,{},218492,1,South America +2023-05-27,61506,9129,"[""Phone""]",4856.96,"{""seasonal"": ""9%""}",105761,0,Asia +2023-08-31,61507,3536,"[""Wireless Mouse""]",3448.29,"{"""": ""9%""}",84681,0,Africa +2024-11-01,61508,2202,"[""Monitor"", ""Keyboard""]",2739.58,{},194367,0,Europe +2023-07-26,61509,4441,"[""Charger"", ""Monitor""]",2176.56,"{""promo"": ""6%""}",153361,1,North America +2024-01-25,61510,1980,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4283.8,{},164412,1,Asia +2024-01-31,61511,8589,"[""Keyboard"", ""Tablet""]",322.91,{},64412,1,Africa +2023-09-12,61512,7730,"[""Monitor"", ""Charger""]",1114.33,"{""seasonal"": ""11%""}",246234,1,Africa +2023-09-30,61513,5312,"[""Headphones"", ""Keyboard""]",2177.7,{},107830,1,North America +2024-06-10,61514,7365,"[""Laptop"", ""Phone"", ""Tablet""]",460.84,{},16049,0,South America +2023-07-24,61515,7924,"[""Tablet""]",72.17,{},212643,1,North America +2023-01-28,61516,8068,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4745.95,{},159423,1,Africa +2023-04-22,61517,4492,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2926.43,"{""seasonal"": ""16%""}",97497,1,North America +2023-10-25,61518,6549,"[""Laptop"", ""Headphones""]",297.64,{},232452,0,Africa +2024-05-06,61519,3823,"[""Keyboard"", ""Monitor"", ""Laptop""]",2452.51,{},165413,1,Africa +2023-03-18,61520,4845,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4856.77,{},16638,0,Europe +2023-02-21,61521,5750,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",359.29,"{""promo"": ""23%""}",27313,0,Europe +2023-04-14,61522,2518,"[""Headphones""]",1395.27,"{""promo"": ""21%""}",157846,0,Asia +2023-03-13,61523,6511,"[""Laptop""]",3266.54,"{""seasonal"": ""5%""}",250530,0,South America +2023-10-26,61524,201,"[""Headphones""]",4118.45,"{""loyalty"": ""5%""}",128818,1,Asia +2023-10-27,61525,6551,"[""Monitor"", ""Laptop"", ""Charger""]",1846.13,"{""seasonal"": ""18%""}",187920,1,North America +2023-07-26,61526,9032,"[""Keyboard"", ""Monitor"", ""Phone""]",2767.71,{},256601,1,North America +2024-08-20,61527,9331,"[""Charger"", ""Tablet""]",3639.23,{},177292,1,Europe +2024-05-25,61528,788,"[""Charger""]",2388.05,{},295568,0,Asia +2023-12-24,61529,575,"[""Charger"", ""Monitor""]",1712.94,"{""seasonal"": ""11%""}",207335,0,Asia +2024-08-05,61530,4847,"[""Phone""]",3697.74,"{""promo"": ""19%""}",158750,1,Africa +2023-09-15,61531,1774,"[""Phone""]",4992.86,"{""loyalty"": ""25%""}",287287,1,South America +2024-11-17,61532,3564,"[""Phone"", ""Tablet""]",3375.72,"{""seasonal"": ""16%""}",50937,1,Asia +2024-03-09,61533,2912,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1729.01,{},91189,1,North America +2024-01-10,61534,6956,"[""Wireless Mouse""]",451.08,"{"""": ""15%""}",89591,0,Europe +2024-08-25,61535,958,"[""Tablet"", ""Keyboard""]",4591.74,{},194820,1,North America +2024-08-01,61536,9728,"[""Laptop"", ""Keyboard"", ""Charger""]",1485.95,{},180042,0,Europe +2024-10-25,61537,1847,"[""Phone""]",1960.64,{},259409,0,Africa +2023-09-17,61538,2194,"[""Monitor""]",4465.03,{},54695,0,Africa +2024-12-30,61539,4210,"[""Monitor"", ""Wireless Mouse""]",541.01,{},156149,1,North America +2024-08-11,61540,4161,"[""Phone""]",4054.08,"{""promo"": ""12%""}",295487,0,Africa +2023-02-03,61541,8743,"[""Tablet"", ""Keyboard""]",1634.28,{},99002,1,South America +2024-05-13,61542,3430,"[""Laptop"", ""Wireless Mouse""]",480.48,{},148395,0,North America +2024-08-28,61543,4975,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",692.5,"{""loyalty"": ""15%""}",290484,1,Africa +2023-01-24,61544,3213,"[""Headphones""]",2389.19,"{""seasonal"": ""13%""}",66158,1,North America +2024-06-29,61545,5548,"[""Phone"", ""Laptop""]",238.7,"{""promo"": ""10%""}",266661,1,Europe +2024-01-15,61546,569,"[""Charger"", ""Tablet"", ""Phone""]",956.35,"{""seasonal"": ""20%""}",157571,0,Europe +2023-11-21,61547,7809,"[""Headphones"", ""Laptop""]",2552.88,"{""loyalty"": ""13%""}",278032,0,Asia +2023-07-14,61548,209,"[""Monitor"", ""Laptop"", ""Headphones""]",238.02,{},74006,0,Asia +2024-09-23,61549,9653,"[""Laptop"", ""Keyboard""]",254.02,"{""seasonal"": ""6%""}",76231,1,North America +2023-08-22,61550,4371,"[""Keyboard""]",1524.36,"{"""": ""17%""}",80461,1,North America +2023-10-29,61551,3861,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4837.52,"{""promo"": ""23%""}",133832,0,Africa +2024-03-25,61552,1825,"[""Phone""]",3931.47,{},206663,1,South America +2024-02-12,61553,5388,"[""Tablet"", ""Keyboard""]",2780.01,"{""loyalty"": ""8%""}",132177,0,Africa +2023-11-15,61554,1447,"[""Charger"", ""Phone"", ""Keyboard""]",617.17,"{"""": ""28%""}",7306,0,Africa +2024-03-31,61555,2511,"[""Wireless Mouse"", ""Phone""]",1870.77,{},116273,1,North America +2024-08-02,61556,7276,"[""Laptop""]",4158.16,"{""seasonal"": ""29%""}",201363,0,Asia +2023-09-02,61557,588,"[""Monitor""]",2684.79,"{""promo"": ""30%""}",224002,0,Asia +2024-10-30,61558,1686,"[""Keyboard"", ""Wireless Mouse""]",4051.44,{},252776,1,Asia +2024-01-24,61559,2104,"[""Monitor"", ""Keyboard""]",521.44,"{"""": ""18%""}",129551,0,South America +2024-01-21,61560,3101,"[""Charger"", ""Laptop""]",4298.73,"{""loyalty"": ""11%""}",37288,1,Asia +2023-04-22,61561,8496,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2811.33,{},156932,1,Africa +2024-07-22,61562,6355,"[""Phone""]",1332.36,{},114053,1,Africa +2024-05-16,61563,214,"[""Headphones"", ""Wireless Mouse""]",130.46,"{""promo"": ""8%""}",94162,0,North America +2023-01-03,61564,7301,"[""Keyboard"", ""Monitor""]",3387.6,{},53908,0,Europe +2023-04-15,61565,3577,"[""Headphones""]",816.34,"{""seasonal"": ""26%""}",101570,1,Africa +2024-08-27,61566,8315,"[""Phone""]",3719.74,"{""seasonal"": ""11%""}",115531,0,South America +2023-04-03,61567,4095,"[""Phone"", ""Monitor"", ""Headphones""]",3882.91,{},110887,0,North America +2023-11-17,61568,3830,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3437.42,{},3012,0,North America +2023-05-20,61569,1186,"[""Charger""]",4551.25,"{""promo"": ""30%""}",145415,0,South America +2024-02-12,61570,692,"[""Headphones"", ""Keyboard"", ""Phone""]",4785.57,{},212276,1,Asia +2024-03-06,61571,6037,"[""Phone""]",3264.5,"{""seasonal"": ""16%""}",4826,0,Europe +2023-01-27,61572,1670,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1506.37,"{"""": ""13%""}",217528,0,Asia +2023-03-15,61573,5589,"[""Laptop"", ""Tablet""]",414.19,{},12734,0,Asia +2023-06-28,61574,4467,"[""Phone"", ""Laptop""]",3878.74,{},182501,0,Africa +2024-07-03,61575,2283,"[""Phone"", ""Laptop"", ""Headphones""]",3141.43,{},31798,0,South America +2023-12-09,61576,3934,"[""Monitor""]",2539.49,"{""seasonal"": ""28%""}",241353,1,Asia +2023-08-31,61577,920,"[""Laptop"", ""Headphones""]",113.64,"{""promo"": ""25%""}",197361,0,North America +2024-02-15,61578,2413,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3124.71,{},73199,0,Africa +2024-04-24,61579,1808,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2750.49,"{"""": ""6%""}",290701,0,North America +2023-01-02,61580,1724,"[""Wireless Mouse""]",1600.1,"{""loyalty"": ""15%""}",131784,1,South America +2023-10-22,61581,3535,"[""Headphones"", ""Phone""]",1698.74,{},55367,1,South America +2024-05-06,61582,1143,"[""Monitor"", ""Keyboard""]",2044.72,{},204261,0,Africa +2023-05-21,61583,9512,"[""Laptop""]",379.48,"{""seasonal"": ""26%""}",46048,0,Africa +2024-02-07,61584,5190,"[""Tablet""]",3995.95,{},33266,1,North America +2023-05-25,61585,9476,"[""Headphones""]",4614.06,"{""promo"": ""11%""}",21991,1,Africa +2023-10-23,61586,5074,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2166.25,"{"""": ""15%""}",71758,1,South America +2024-02-07,61587,4994,"[""Laptop""]",2122.38,{},205720,1,South America +2023-11-11,61588,8090,"[""Tablet""]",758.86,{},19393,0,North America +2024-03-07,61589,5909,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1551.45,{},10182,1,Asia +2024-08-15,61590,5434,"[""Tablet"", ""Laptop"", ""Monitor""]",1255.35,{},103813,1,South America +2023-08-26,61591,8550,"[""Wireless Mouse""]",3575.33,"{""seasonal"": ""5%""}",16376,1,Africa +2023-11-13,61592,9192,"[""Monitor"", ""Charger"", ""Headphones""]",1924.18,{},76026,0,North America +2024-12-02,61593,8466,"[""Wireless Mouse""]",2957.86,"{"""": ""22%""}",24120,1,Asia +2023-03-24,61594,8007,"[""Monitor""]",3720.63,"{"""": ""24%""}",228807,0,Europe +2023-10-07,61595,7460,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2324.85,"{""loyalty"": ""16%""}",283667,0,South America +2023-05-08,61596,1201,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",134.26,"{"""": ""23%""}",66101,0,Asia +2024-10-15,61597,3696,"[""Headphones"", ""Tablet"", ""Laptop""]",3833.86,"{""promo"": ""9%""}",89791,0,Europe +2024-01-16,61598,8817,"[""Phone"", ""Headphones"", ""Charger""]",3559.05,"{""promo"": ""14%""}",238358,1,Europe +2024-10-25,61599,7139,"[""Monitor""]",747.45,{},138265,0,Africa +2023-10-14,61600,9316,"[""Monitor""]",4038.85,{},27991,0,North America +2024-07-02,61601,1625,"[""Charger""]",4955.32,{},110570,0,Africa +2023-07-29,61602,4082,"[""Tablet"", ""Headphones""]",2219.73,{},273477,1,South America +2023-07-19,61603,4364,"[""Monitor"", ""Tablet""]",2614.46,"{""promo"": ""18%""}",265308,0,Asia +2023-05-29,61604,7269,"[""Tablet"", ""Headphones"", ""Keyboard""]",3941.38,"{""loyalty"": ""18%""}",195119,1,Africa +2024-01-11,61605,9366,"[""Keyboard"", ""Charger""]",1968.17,"{""loyalty"": ""6%""}",225594,0,Africa +2023-03-13,61606,6003,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",290.17,{},235838,1,Europe +2024-01-24,61607,5245,"[""Wireless Mouse""]",1181.71,"{""seasonal"": ""20%""}",123338,1,Europe +2024-07-01,61608,673,"[""Monitor"", ""Charger"", ""Phone""]",3601.92,"{"""": ""29%""}",186968,0,Europe +2024-10-21,61609,7553,"[""Charger""]",3701.0,"{""promo"": ""22%""}",61080,1,North America +2024-03-09,61610,6827,"[""Keyboard""]",2431.02,{},265256,1,Asia +2024-09-08,61611,9530,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3583.55,{},99875,0,North America +2024-12-04,61612,7236,"[""Headphones"", ""Keyboard"", ""Phone""]",570.96,{},43748,0,North America +2024-12-06,61613,3487,"[""Headphones"", ""Monitor"", ""Tablet""]",1980.16,"{""loyalty"": ""21%""}",87995,0,Europe +2023-06-07,61614,7229,"[""Phone"", ""Laptop""]",133.35,"{"""": ""16%""}",202722,1,North America +2024-12-21,61615,7558,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4914.81,{},250773,0,Africa +2023-07-12,61616,1835,"[""Phone""]",4961.31,"{"""": ""10%""}",271290,0,Asia +2023-12-24,61617,1801,"[""Keyboard""]",2559.48,"{""seasonal"": ""19%""}",178304,0,Europe +2024-07-27,61618,2122,"[""Monitor"", ""Headphones""]",1522.63,"{""seasonal"": ""16%""}",171395,1,Europe +2024-08-16,61619,3327,"[""Laptop""]",4634.14,"{""seasonal"": ""21%""}",263133,1,Europe +2024-09-06,61620,6598,"[""Phone""]",1670.46,{},123339,0,Asia +2023-06-12,61621,5421,"[""Charger"", ""Monitor""]",114.33,{},120028,1,Asia +2024-09-15,61622,2226,"[""Charger"", ""Monitor""]",480.65,{},172599,1,Asia +2023-05-03,61623,7775,"[""Laptop"", ""Wireless Mouse""]",2009.82,"{"""": ""25%""}",221927,0,Asia +2024-10-29,61624,2166,"[""Charger""]",2939.01,{},147209,1,North America +2023-11-09,61625,3840,"[""Monitor""]",1273.71,{},208784,1,Asia +2024-12-16,61626,39,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3157.48,{},236165,1,Asia +2024-06-24,61627,2884,"[""Wireless Mouse"", ""Charger""]",1962.68,{},36211,0,South America +2023-02-20,61628,1924,"[""Charger""]",1642.76,"{""loyalty"": ""20%""}",118767,1,North America +2024-08-28,61629,9845,"[""Laptop"", ""Tablet""]",816.37,{},153534,1,Europe +2023-06-22,61630,9899,"[""Tablet""]",309.95,"{"""": ""5%""}",270805,0,Africa +2023-02-27,61631,5467,"[""Keyboard"", ""Headphones"", ""Charger""]",689.15,{},12491,1,South America +2024-09-30,61632,9882,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3788.81,{},94432,0,Europe +2024-12-05,61633,2281,"[""Keyboard"", ""Monitor"", ""Phone""]",1740.24,"{""promo"": ""21%""}",285662,1,North America +2024-07-09,61634,1927,"[""Wireless Mouse""]",4222.61,{},34815,0,North America +2024-10-01,61635,4631,"[""Wireless Mouse""]",1236.21,{},94148,0,Asia +2023-09-30,61636,5937,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4707.2,{},259638,0,Europe +2024-11-29,61637,156,"[""Phone"", ""Charger""]",4764.04,"{"""": ""7%""}",146243,1,North America +2023-07-01,61638,8764,"[""Laptop""]",1987.08,"{"""": ""21%""}",196147,1,South America +2024-01-31,61639,327,"[""Charger""]",1627.62,{},176251,0,North America +2023-09-16,61640,4668,"[""Headphones"", ""Tablet""]",3722.62,"{"""": ""8%""}",263950,1,South America +2023-10-22,61641,5764,"[""Monitor""]",892.05,"{""seasonal"": ""12%""}",272432,1,North America +2023-01-21,61642,5045,"[""Charger"", ""Monitor""]",4417.76,"{""loyalty"": ""16%""}",233387,1,Africa +2024-04-14,61643,8828,"[""Charger"", ""Monitor""]",4698.77,{},85431,0,South America +2023-10-02,61644,9852,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1747.53,{},1851,0,Asia +2024-09-09,61645,1967,"[""Tablet""]",3874.41,"{""promo"": ""28%""}",199553,0,Africa +2024-01-25,61646,1893,"[""Laptop""]",3842.09,"{"""": ""20%""}",22390,1,Asia +2024-01-29,61647,4445,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2942.33,"{""seasonal"": ""12%""}",290769,1,South America +2023-01-25,61648,8324,"[""Phone"", ""Tablet""]",1492.91,{},210720,0,Africa +2023-03-08,61649,2917,"[""Phone""]",2870.56,"{""loyalty"": ""22%""}",284620,0,South America +2024-09-15,61650,88,"[""Keyboard""]",1461.68,{},179603,0,Africa +2023-11-24,61651,8497,"[""Phone""]",2915.06,{},294684,0,Asia +2024-11-03,61652,5393,"[""Monitor"", ""Phone""]",3935.65,{},130981,1,Africa +2024-07-16,61653,7573,"[""Laptop"", ""Keyboard""]",3781.78,{},240481,0,Africa +2024-07-15,61654,9116,"[""Wireless Mouse""]",4296.57,{},84775,0,North America +2024-02-15,61655,9530,"[""Monitor""]",388.39,"{""loyalty"": ""11%""}",291115,1,Africa +2023-08-13,61656,7512,"[""Phone"", ""Keyboard"", ""Headphones""]",2523.45,"{""promo"": ""21%""}",80815,1,Europe +2024-03-31,61657,9311,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1675.18,{},42875,0,Europe +2024-05-08,61658,8140,"[""Charger""]",564.62,"{"""": ""23%""}",70653,1,Europe +2023-04-25,61659,4255,"[""Keyboard""]",3998.57,"{"""": ""20%""}",255388,0,Asia +2023-03-31,61660,8456,"[""Keyboard""]",887.58,{},224587,0,South America +2024-10-23,61661,113,"[""Headphones""]",188.78,{},54528,0,South America +2023-11-28,61662,1867,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3953.06,"{""loyalty"": ""6%""}",42077,1,Europe +2024-10-31,61663,3937,"[""Tablet""]",4417.96,{},78441,1,North America +2024-12-21,61664,5585,"[""Tablet"", ""Monitor""]",557.08,"{""loyalty"": ""21%""}",253960,0,Europe +2023-02-05,61665,1923,"[""Phone"", ""Monitor""]",4035.8,{},136045,1,Europe +2023-06-22,61666,711,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4424.63,"{""loyalty"": ""16%""}",119419,1,Africa +2024-05-18,61667,9033,"[""Charger"", ""Headphones""]",2453.22,{},156510,0,Asia +2024-11-15,61668,7476,"[""Keyboard"", ""Laptop"", ""Phone""]",505.18,{},30050,0,Asia +2023-03-10,61669,4065,"[""Headphones""]",1097.35,{},207497,0,Africa +2023-08-31,61670,2602,"[""Phone""]",459.7,"{""promo"": ""8%""}",154078,1,North America +2023-06-13,61671,7547,"[""Keyboard"", ""Headphones"", ""Laptop""]",3487.42,"{""seasonal"": ""10%""}",138030,1,North America +2023-02-20,61672,4664,"[""Headphones""]",4532.02,{},120073,0,Asia +2023-05-23,61673,3438,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2716.62,"{""seasonal"": ""10%""}",89639,1,North America +2024-01-12,61674,6637,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1358.43,"{""promo"": ""22%""}",136519,0,North America +2023-01-04,61675,3304,"[""Tablet"", ""Phone""]",1207.92,"{""loyalty"": ""21%""}",239700,1,Asia +2023-08-22,61676,1813,"[""Phone"", ""Monitor""]",1946.45,"{""promo"": ""18%""}",276528,0,Asia +2024-04-18,61677,9968,"[""Charger"", ""Tablet"", ""Headphones""]",4865.58,{},122476,0,Asia +2024-06-21,61678,616,"[""Headphones"", ""Keyboard"", ""Monitor""]",4874.56,"{""loyalty"": ""16%""}",95639,0,North America +2023-07-25,61679,7467,"[""Tablet""]",4747.32,{},135059,0,North America +2023-07-03,61680,9359,"[""Headphones""]",692.3,"{""seasonal"": ""26%""}",91956,0,Asia +2023-12-09,61681,2709,"[""Phone"", ""Keyboard"", ""Headphones""]",2316.43,"{"""": ""9%""}",186005,1,Europe +2024-05-25,61682,634,"[""Charger"", ""Phone""]",4528.6,{},272523,0,Europe +2024-07-02,61683,6044,"[""Laptop"", ""Charger"", ""Monitor""]",4958.66,"{""loyalty"": ""24%""}",247708,0,Africa +2023-12-18,61684,8205,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2056.67,"{""promo"": ""24%""}",101035,1,Africa +2024-09-30,61685,3149,"[""Wireless Mouse"", ""Headphones""]",4927.05,{},260658,1,North America +2024-06-27,61686,3358,"[""Tablet"", ""Laptop""]",2060.34,{},279788,0,North America +2023-10-20,61687,1033,"[""Headphones"", ""Charger""]",1708.55,{},115148,1,Europe +2023-12-07,61688,8189,"[""Tablet"", ""Keyboard"", ""Headphones""]",932.23,{},213359,1,Asia +2024-01-26,61689,8956,"[""Keyboard"", ""Headphones"", ""Tablet""]",2709.51,"{"""": ""10%""}",150850,1,North America +2024-01-05,61690,3604,"[""Tablet"", ""Headphones"", ""Phone""]",3892.49,"{""loyalty"": ""28%""}",185750,0,South America +2024-05-24,61691,7472,"[""Charger"", ""Headphones""]",1751.85,{},274197,1,South America +2023-09-07,61692,9884,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2739.95,"{"""": ""13%""}",140402,0,Africa +2024-09-14,61693,1765,"[""Monitor""]",2856.24,{},200690,0,Asia +2024-06-14,61694,4209,"[""Tablet"", ""Keyboard"", ""Charger""]",4592.17,{},190534,1,South America +2024-12-12,61695,8842,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",190.67,{},168698,1,Europe +2023-01-25,61696,7968,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3271.48,{},254811,0,Europe +2023-03-07,61697,6722,"[""Phone""]",1834.4,{},11155,1,Africa +2024-07-13,61698,3474,"[""Monitor""]",1356.5,{},6054,1,Asia +2023-04-24,61699,3373,"[""Monitor"", ""Phone""]",1502.35,"{""loyalty"": ""13%""}",276592,0,South America +2024-12-27,61700,1063,"[""Keyboard"", ""Tablet"", ""Headphones""]",4985.19,"{""promo"": ""24%""}",116508,0,Africa +2024-04-18,61701,4840,"[""Headphones"", ""Wireless Mouse""]",3270.33,{},84899,0,North America +2024-06-22,61702,7919,"[""Tablet"", ""Laptop"", ""Headphones""]",752.66,{},45666,0,Africa +2024-12-20,61703,4246,"[""Charger"", ""Headphones"", ""Keyboard""]",4477.53,"{""promo"": ""23%""}",296238,1,North America +2024-03-08,61704,5858,"[""Headphones"", ""Phone""]",2086.45,"{""promo"": ""30%""}",258366,1,Africa +2023-06-19,61705,4002,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4618.69,"{""seasonal"": ""18%""}",15350,0,South America +2024-12-30,61706,617,"[""Charger""]",2275.93,"{""loyalty"": ""27%""}",33517,0,Africa +2023-02-02,61707,8046,"[""Keyboard"", ""Laptop""]",1514.11,{},123433,1,Africa +2023-05-13,61708,8939,"[""Monitor""]",2605.85,"{""seasonal"": ""15%""}",73364,1,South America +2023-02-05,61709,25,"[""Phone"", ""Keyboard""]",2139.92,"{""seasonal"": ""17%""}",182471,1,North America +2023-02-28,61710,3073,"[""Tablet"", ""Headphones""]",3496.05,{},48013,1,Africa +2023-04-25,61711,8038,"[""Monitor""]",246.49,{},183176,0,Europe +2024-01-05,61712,6586,"[""Keyboard""]",2200.85,"{""promo"": ""28%""}",37876,0,South America +2023-03-05,61713,6704,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2409.77,{},239646,1,Asia +2024-10-22,61714,5136,"[""Charger""]",1621.92,{},129470,1,Asia +2024-11-11,61715,489,"[""Keyboard""]",2413.32,{},157397,1,Asia +2024-09-14,61716,9452,"[""Tablet"", ""Laptop"", ""Charger""]",1915.71,"{""seasonal"": ""19%""}",238512,1,Asia +2024-12-12,61717,1342,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4533.14,"{""promo"": ""26%""}",151636,1,Asia +2023-06-02,61718,1675,"[""Keyboard"", ""Monitor"", ""Headphones""]",4314.44,"{""seasonal"": ""13%""}",25527,0,Europe +2024-05-12,61719,7861,"[""Monitor"", ""Headphones"", ""Keyboard""]",4434.11,{},92062,1,Europe +2024-11-12,61720,2603,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",762.4,"{"""": ""28%""}",120808,0,North America +2023-07-06,61721,7294,"[""Keyboard"", ""Tablet""]",1246.06,{},117605,1,North America +2024-09-22,61722,4253,"[""Tablet"", ""Keyboard"", ""Monitor""]",3172.1,{},99003,0,North America +2023-11-26,61723,4285,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2139.44,{},207191,1,Europe +2023-07-24,61724,2244,"[""Headphones"", ""Keyboard""]",1953.09,"{""loyalty"": ""17%""}",78067,0,South America +2023-09-10,61725,7192,"[""Laptop"", ""Phone"", ""Monitor""]",2247.07,"{""seasonal"": ""21%""}",225397,1,Africa +2024-01-04,61726,1287,"[""Headphones"", ""Phone""]",3964.99,{},134317,1,Europe +2023-03-04,61727,9251,"[""Keyboard"", ""Headphones""]",3047.44,"{"""": ""8%""}",194282,0,Europe +2024-12-02,61728,5611,"[""Charger"", ""Headphones""]",1094.86,{},40740,0,North America +2023-04-28,61729,4838,"[""Tablet"", ""Headphones""]",2378.09,"{"""": ""17%""}",43574,1,North America +2024-02-19,61730,9264,"[""Laptop""]",4799.94,{},56714,1,Asia +2024-09-21,61731,5158,"[""Laptop""]",889.95,{},184408,0,North America +2023-10-31,61732,2695,"[""Phone"", ""Charger""]",2940.83,{},276771,0,Asia +2023-01-11,61733,3767,"[""Phone"", ""Laptop"", ""Headphones""]",55.2,{},222635,1,Asia +2024-12-27,61734,2831,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3127.01,"{""seasonal"": ""16%""}",104911,1,Europe +2023-12-20,61735,2876,"[""Phone"", ""Tablet""]",3844.08,"{""promo"": ""13%""}",200498,1,Africa +2024-04-23,61736,9168,"[""Headphones"", ""Wireless Mouse""]",2141.61,"{""promo"": ""7%""}",63640,0,Asia +2024-02-12,61737,1133,"[""Charger"", ""Monitor""]",3529.95,"{""loyalty"": ""18%""}",71972,1,South America +2024-09-07,61738,1317,"[""Charger""]",2797.26,"{""promo"": ""29%""}",142352,0,Asia +2023-04-19,61739,9265,"[""Laptop""]",3303.21,"{"""": ""19%""}",241384,1,Europe +2024-04-09,61740,3414,"[""Phone""]",2831.14,"{""promo"": ""20%""}",74729,0,Asia +2024-06-01,61741,8061,"[""Monitor"", ""Keyboard""]",4492.89,{},249061,0,North America +2024-01-29,61742,1773,"[""Monitor""]",2912.23,{},287654,0,Africa +2023-09-26,61743,567,"[""Headphones"", ""Phone""]",4171.73,"{""loyalty"": ""12%""}",82068,0,Europe +2023-02-22,61744,2388,"[""Monitor"", ""Keyboard""]",2936.21,"{""loyalty"": ""20%""}",28795,0,South America +2024-12-31,61745,8139,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2688.92,"{""seasonal"": ""17%""}",9766,1,Europe +2024-04-08,61746,8149,"[""Tablet"", ""Headphones""]",4288.48,"{""seasonal"": ""5%""}",83051,1,Africa +2023-10-31,61747,8582,"[""Laptop"", ""Headphones""]",988.97,"{""promo"": ""9%""}",293000,1,North America +2024-12-24,61748,8650,"[""Headphones""]",3820.79,"{""loyalty"": ""6%""}",159839,0,Asia +2023-04-08,61749,3841,"[""Tablet"", ""Phone""]",3031.0,{},205873,0,South America +2023-04-07,61750,5980,"[""Headphones""]",4065.52,{},250345,1,South America +2023-12-04,61751,1132,"[""Laptop"", ""Monitor"", ""Charger""]",559.41,"{""promo"": ""23%""}",25323,0,Europe +2023-03-02,61752,3707,"[""Keyboard"", ""Headphones""]",1822.93,"{"""": ""22%""}",51352,0,Europe +2024-07-28,61753,8477,"[""Headphones"", ""Charger""]",2945.26,"{""loyalty"": ""20%""}",117414,1,Africa +2024-01-31,61754,5797,"[""Keyboard""]",1303.56,{},17502,1,Asia +2024-05-15,61755,188,"[""Phone"", ""Tablet""]",3721.02,{},137129,1,South America +2023-11-28,61756,941,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3520.85,"{""promo"": ""5%""}",91637,0,Europe +2023-12-20,61757,908,"[""Monitor"", ""Charger""]",1221.3,"{""loyalty"": ""30%""}",133899,1,Africa +2024-03-08,61758,7316,"[""Laptop""]",707.67,{},13608,1,North America +2024-01-16,61759,2037,"[""Charger"", ""Phone""]",1490.3,{},192061,1,Africa +2023-04-11,61760,7042,"[""Charger"", ""Monitor""]",4219.43,"{""promo"": ""25%""}",154588,0,South America +2024-11-06,61761,8991,"[""Phone""]",830.85,{},40395,0,Africa +2024-11-19,61762,6310,"[""Headphones"", ""Charger""]",1858.31,{},197591,0,North America +2023-12-21,61763,5677,"[""Charger""]",2300.27,"{""seasonal"": ""27%""}",114249,0,Europe +2023-07-06,61764,8690,"[""Laptop"", ""Monitor"", ""Charger""]",4044.51,{},212090,1,Africa +2024-05-02,61765,4770,"[""Charger""]",2341.38,"{"""": ""25%""}",142520,0,South America +2024-07-11,61766,1351,"[""Tablet"", ""Keyboard""]",4192.08,{},36498,1,Asia +2024-04-17,61767,5908,"[""Phone"", ""Laptop""]",1886.82,"{"""": ""16%""}",251329,1,Africa +2023-11-25,61768,9210,"[""Tablet""]",1038.85,"{""loyalty"": ""18%""}",268820,0,South America +2024-04-27,61769,3459,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1514.85,{},224011,0,Europe +2024-03-20,61770,375,"[""Wireless Mouse"", ""Phone""]",2296.4,{},275793,0,Africa +2024-07-19,61771,4886,"[""Phone""]",2235.03,{},147357,0,Asia +2024-01-03,61772,4431,"[""Keyboard"", ""Charger""]",4031.2,{},212152,1,Africa +2023-12-28,61773,6904,"[""Phone""]",283.47,{},91059,0,Africa +2024-01-27,61774,4051,"[""Wireless Mouse"", ""Headphones""]",2721.59,"{""promo"": ""24%""}",36633,1,Asia +2023-03-11,61775,8768,"[""Tablet"", ""Phone""]",3155.09,"{""seasonal"": ""15%""}",80393,0,Asia +2024-12-03,61776,7135,"[""Headphones""]",3515.31,{},223489,1,North America +2023-10-23,61777,1316,"[""Phone"", ""Laptop""]",4750.32,{},216741,1,Africa +2023-05-30,61778,3256,"[""Phone""]",447.57,"{"""": ""26%""}",16233,1,Africa +2024-05-21,61779,2560,"[""Tablet""]",4036.52,"{""seasonal"": ""18%""}",165209,1,North America +2024-10-22,61780,2566,"[""Charger"", ""Keyboard""]",3384.36,"{""promo"": ""10%""}",39924,1,Asia +2024-11-29,61781,1734,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2637.04,"{""loyalty"": ""5%""}",40945,0,South America +2024-10-11,61782,4316,"[""Headphones"", ""Monitor"", ""Laptop""]",1360.23,{},39161,0,South America +2024-11-25,61783,681,"[""Phone"", ""Monitor"", ""Laptop""]",4162.74,"{"""": ""17%""}",180401,1,South America +2024-01-02,61784,1784,"[""Headphones"", ""Charger""]",343.95,{},92895,1,Asia +2024-05-14,61785,4035,"[""Charger"", ""Laptop"", ""Tablet""]",1557.38,"{""loyalty"": ""22%""}",22668,0,North America +2023-10-09,61786,8456,"[""Laptop"", ""Monitor""]",1045.22,"{""seasonal"": ""8%""}",293910,0,Africa +2023-05-02,61787,8673,"[""Charger""]",2751.74,{},88575,1,Asia +2024-07-15,61788,6735,"[""Wireless Mouse""]",3699.56,"{""seasonal"": ""25%""}",99889,0,North America +2024-09-24,61789,5408,"[""Headphones"", ""Phone""]",1799.98,"{""loyalty"": ""14%""}",68778,1,South America +2024-10-05,61790,5369,"[""Keyboard"", ""Phone""]",318.54,{},3741,0,North America +2023-10-12,61791,4697,"[""Laptop""]",3105.03,"{""promo"": ""30%""}",128957,1,North America +2023-04-17,61792,110,"[""Charger"", ""Headphones""]",1136.76,"{""seasonal"": ""26%""}",60243,1,Africa +2024-09-16,61793,6371,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1791.65,{},189362,1,Africa +2024-10-06,61794,8973,"[""Monitor"", ""Laptop"", ""Headphones""]",3046.73,{},181739,1,Europe +2024-07-06,61795,5951,"[""Charger""]",2203.17,{},267705,0,Africa +2023-10-07,61796,9867,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",358.55,"{""seasonal"": ""27%""}",29910,1,Asia +2024-12-06,61797,1840,"[""Headphones"", ""Laptop"", ""Monitor""]",1549.7,"{"""": ""24%""}",109680,0,Europe +2024-10-30,61798,1423,"[""Monitor"", ""Keyboard"", ""Headphones""]",1024.19,"{""loyalty"": ""17%""}",214863,1,Europe +2024-01-29,61799,532,"[""Phone"", ""Keyboard""]",1482.76,"{"""": ""25%""}",170570,0,Asia +2024-01-26,61800,6380,"[""Charger"", ""Laptop""]",4359.13,"{"""": ""15%""}",203807,1,Africa +2023-03-02,61801,10000,"[""Keyboard"", ""Monitor""]",3854.32,{},239721,0,North America +2023-09-24,61802,5903,"[""Tablet"", ""Charger""]",4547.29,"{""seasonal"": ""8%""}",136003,0,Asia +2024-07-12,61803,995,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2136.38,"{"""": ""8%""}",84038,1,South America +2024-03-01,61804,9759,"[""Laptop""]",3094.75,{},166228,0,North America +2024-10-24,61805,8500,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2783.25,"{""seasonal"": ""11%""}",244699,1,Asia +2024-04-13,61806,9898,"[""Phone"", ""Charger"", ""Keyboard""]",2984.9,"{""seasonal"": ""10%""}",248943,1,North America +2023-12-06,61807,7725,"[""Laptop""]",3311.78,{},125906,0,South America +2024-04-21,61808,1699,"[""Keyboard"", ""Phone"", ""Monitor""]",3945.72,{},85926,0,North America +2023-06-29,61809,1042,"[""Keyboard"", ""Tablet"", ""Headphones""]",999.39,{},234336,0,Africa +2024-04-07,61810,2681,"[""Wireless Mouse""]",1594.85,"{""loyalty"": ""14%""}",31728,0,Africa +2023-05-08,61811,3458,"[""Tablet""]",763.2,"{""promo"": ""16%""}",224652,0,North America +2024-09-09,61812,4051,"[""Tablet"", ""Headphones""]",1362.23,"{""promo"": ""8%""}",297791,1,South America +2023-05-13,61813,3168,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1198.52,{},75861,0,North America +2024-05-19,61814,1531,"[""Monitor"", ""Headphones"", ""Charger""]",558.09,{},238506,1,South America +2024-11-17,61815,5929,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4851.77,{},166184,1,South America +2024-12-14,61816,6122,"[""Headphones""]",4635.91,{},132491,1,North America +2023-06-30,61817,7971,"[""Phone"", ""Laptop""]",1154.52,{},105447,1,Africa +2024-02-04,61818,7575,"[""Phone""]",1564.29,{},152192,0,South America +2024-04-10,61819,2676,"[""Charger"", ""Headphones"", ""Monitor""]",795.26,{},230146,0,South America +2023-04-16,61820,5577,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3082.25,"{""loyalty"": ""20%""}",86294,1,Africa +2024-07-06,61821,2060,"[""Headphones"", ""Charger""]",4485.22,{},296583,0,Europe +2023-02-03,61822,7330,"[""Wireless Mouse""]",2117.95,{},211908,1,Asia +2023-07-22,61823,9378,"[""Charger"", ""Laptop"", ""Headphones""]",430.98,{},251789,1,Europe +2023-01-22,61824,3471,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2140.98,{},101098,0,Africa +2023-12-21,61825,8660,"[""Wireless Mouse""]",2893.08,{},192174,0,South America +2023-06-07,61826,5518,"[""Monitor"", ""Charger""]",1266.76,"{""seasonal"": ""22%""}",240234,0,Africa +2023-12-28,61827,5158,"[""Charger"", ""Tablet"", ""Monitor""]",4555.74,{},44914,1,South America +2024-01-03,61828,3883,"[""Keyboard""]",3399.14,"{"""": ""27%""}",185987,1,North America +2023-11-20,61829,247,"[""Headphones""]",4077.04,{},47053,0,South America +2024-05-18,61830,2929,"[""Wireless Mouse"", ""Tablet""]",1092.37,"{""loyalty"": ""14%""}",194809,1,South America +2024-05-21,61831,1212,"[""Monitor""]",1385.02,{},90856,1,Africa +2024-04-06,61832,5215,"[""Monitor""]",2286.63,"{""promo"": ""12%""}",26310,0,Africa +2024-06-07,61833,649,"[""Laptop"", ""Phone"", ""Charger""]",1599.76,"{"""": ""26%""}",12947,1,Europe +2023-10-21,61834,4100,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4656.35,"{"""": ""22%""}",291442,0,Asia +2023-12-18,61835,2145,"[""Phone"", ""Wireless Mouse""]",576.15,"{"""": ""30%""}",242612,0,Africa +2024-08-25,61836,5624,"[""Laptop"", ""Monitor"", ""Tablet""]",344.84,{},105122,0,South America +2023-05-03,61837,2042,"[""Keyboard"", ""Monitor""]",435.14,{},225005,0,Africa +2024-06-20,61838,7924,"[""Phone"", ""Headphones""]",2927.33,{},269138,1,North America +2024-11-21,61839,5008,"[""Tablet"", ""Charger""]",1649.0,"{""loyalty"": ""10%""}",26802,0,Africa +2024-04-10,61840,8546,"[""Headphones""]",921.99,"{"""": ""5%""}",206700,0,Asia +2023-09-15,61841,2009,"[""Phone"", ""Laptop""]",4600.64,{},293402,1,Asia +2023-06-23,61842,7059,"[""Monitor"", ""Headphones""]",4953.57,{},132247,1,Europe +2024-05-30,61843,8369,"[""Keyboard""]",456.43,"{""promo"": ""12%""}",250961,0,Europe +2024-01-01,61844,4015,"[""Wireless Mouse"", ""Phone""]",2042.61,"{""loyalty"": ""29%""}",2973,0,North America +2023-11-21,61845,7314,"[""Wireless Mouse"", ""Charger""]",4399.01,{},139009,1,Africa +2024-11-17,61846,551,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3502.8,{},51300,0,South America +2023-11-08,61847,5395,"[""Phone"", ""Tablet""]",3517.77,{},138597,1,Europe +2023-08-20,61848,138,"[""Tablet"", ""Keyboard"", ""Monitor""]",4940.85,{},284715,1,Asia +2023-03-28,61849,3827,"[""Laptop"", ""Wireless Mouse""]",3774.59,{},81133,0,Asia +2023-07-02,61850,6344,"[""Charger"", ""Tablet"", ""Headphones""]",2535.62,{},49396,1,South America +2023-10-20,61851,3780,"[""Phone"", ""Keyboard""]",4223.99,{},94837,0,North America +2023-06-15,61852,200,"[""Tablet"", ""Headphones""]",1127.82,{},238598,0,North America +2024-11-19,61853,8177,"[""Monitor"", ""Headphones"", ""Keyboard""]",3768.04,{},215544,0,South America +2023-12-14,61854,9869,"[""Phone""]",204.85,{},38440,1,North America +2023-11-04,61855,466,"[""Charger"", ""Monitor""]",3836.76,{},113739,1,North America +2023-09-14,61856,170,"[""Phone"", ""Monitor""]",4466.81,{},125335,1,South America +2023-07-20,61857,9766,"[""Headphones"", ""Phone""]",1843.17,{},281865,1,South America +2024-10-13,61858,6100,"[""Headphones"", ""Laptop""]",889.18,{},257812,1,Europe +2024-07-18,61859,9460,"[""Phone"", ""Keyboard"", ""Charger""]",4145.39,"{""loyalty"": ""28%""}",268902,0,Asia +2023-12-30,61860,9004,"[""Keyboard""]",4210.23,"{"""": ""17%""}",239337,1,Asia +2023-10-29,61861,330,"[""Tablet"", ""Monitor""]",3450.93,"{"""": ""13%""}",75277,1,North America +2023-10-30,61862,609,"[""Headphones"", ""Phone"", ""Keyboard""]",2183.58,{},107396,0,South America +2023-09-07,61863,6294,"[""Laptop""]",856.5,"{""loyalty"": ""22%""}",178548,0,South America +2024-12-05,61864,9869,"[""Keyboard"", ""Phone""]",4971.1,{},269960,0,Africa +2024-11-12,61865,9923,"[""Phone""]",932.91,{},173180,0,South America +2023-08-17,61866,9220,"[""Tablet""]",1654.52,"{""loyalty"": ""27%""}",200532,0,Asia +2024-11-29,61867,1721,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3520.19,{},294831,0,Africa +2023-11-30,61868,4196,"[""Headphones""]",1846.27,"{""seasonal"": ""7%""}",146254,0,North America +2023-10-22,61869,2218,"[""Monitor"", ""Charger""]",135.44,{},133480,0,North America +2023-05-03,61870,5616,"[""Monitor""]",3882.11,"{""seasonal"": ""10%""}",255261,1,Asia +2024-08-01,61871,4841,"[""Tablet"", ""Monitor""]",2663.45,{},31851,1,North America +2023-10-02,61872,5740,"[""Laptop"", ""Charger""]",1562.44,"{""promo"": ""17%""}",166059,0,North America +2023-06-10,61873,9435,"[""Keyboard""]",2274.95,"{"""": ""11%""}",170514,0,North America +2024-12-16,61874,3930,"[""Tablet""]",2746.41,{},7295,0,North America +2024-12-02,61875,1717,"[""Keyboard"", ""Headphones""]",3901.15,{},102904,0,North America +2024-07-25,61876,8136,"[""Wireless Mouse""]",672.79,{},18300,1,Europe +2024-10-16,61877,9755,"[""Keyboard"", ""Charger""]",3893.17,"{""loyalty"": ""11%""}",96431,1,Europe +2023-12-27,61878,3458,"[""Laptop"", ""Monitor""]",3479.29,"{""loyalty"": ""11%""}",98035,0,North America +2024-10-11,61879,5224,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1664.99,"{""loyalty"": ""24%""}",98799,1,Asia +2023-02-15,61880,8751,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",580.08,"{""promo"": ""17%""}",249569,0,Asia +2023-09-13,61881,9012,"[""Headphones"", ""Tablet""]",2426.82,"{""loyalty"": ""7%""}",70377,0,Asia +2023-03-25,61882,738,"[""Tablet"", ""Wireless Mouse""]",4936.73,"{"""": ""23%""}",213514,0,North America +2023-02-13,61883,1524,"[""Monitor"", ""Headphones""]",3552.91,{},121529,0,Africa +2024-07-02,61884,3708,"[""Laptop""]",3607.09,{},270982,0,Asia +2023-07-06,61885,9939,"[""Monitor"", ""Wireless Mouse""]",868.22,{},272129,1,Asia +2023-11-03,61886,1181,"[""Wireless Mouse"", ""Tablet""]",1965.08,"{""seasonal"": ""5%""}",183247,1,Asia +2024-03-03,61887,2775,"[""Wireless Mouse""]",1569.63,"{""promo"": ""5%""}",14135,0,Asia +2024-05-27,61888,4780,"[""Wireless Mouse"", ""Laptop""]",3599.14,{},18916,1,South America +2023-06-25,61889,1049,"[""Headphones""]",909.18,{},166782,0,Asia +2024-07-07,61890,5244,"[""Monitor"", ""Tablet""]",3059.89,{},236825,0,North America +2023-11-29,61891,2897,"[""Tablet"", ""Phone""]",284.77,"{""promo"": ""12%""}",259277,1,South America +2024-10-30,61892,6251,"[""Headphones"", ""Phone"", ""Tablet""]",1368.99,{},19017,1,Europe +2024-03-20,61893,9863,"[""Wireless Mouse""]",4991.9,"{"""": ""11%""}",17353,1,Africa +2023-03-06,61894,1561,"[""Laptop"", ""Keyboard""]",4813.02,{},246915,0,Africa +2023-05-16,61895,4349,"[""Tablet""]",2040.31,"{"""": ""7%""}",181341,0,South America +2024-08-09,61896,8710,"[""Wireless Mouse"", ""Headphones""]",2593.99,{},231110,1,North America +2024-05-10,61897,2949,"[""Laptop"", ""Charger""]",2141.95,"{""seasonal"": ""22%""}",253508,1,Africa +2023-01-04,61898,9675,"[""Charger"", ""Headphones"", ""Keyboard""]",1494.48,"{""seasonal"": ""12%""}",288357,0,South America +2023-11-27,61899,3183,"[""Laptop"", ""Tablet""]",1333.68,{},154806,0,South America +2023-09-09,61900,4134,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4660.41,"{""seasonal"": ""25%""}",123797,0,North America +2024-02-19,61901,7659,"[""Charger"", ""Laptop""]",3503.76,{},282816,1,Africa +2023-09-17,61902,6944,"[""Laptop"", ""Charger""]",243.61,{},211219,1,Asia +2023-02-25,61903,5060,"[""Keyboard"", ""Laptop"", ""Tablet""]",555.61,"{"""": ""26%""}",109205,1,Europe +2023-11-23,61904,6483,"[""Monitor"", ""Wireless Mouse""]",4749.48,"{""loyalty"": ""30%""}",60617,1,Africa +2023-10-21,61905,9237,"[""Charger""]",3764.77,"{""promo"": ""8%""}",121339,1,Asia +2023-06-04,61906,5644,"[""Charger"", ""Monitor""]",1787.65,"{"""": ""27%""}",226865,1,North America +2024-09-06,61907,8976,"[""Charger"", ""Headphones"", ""Keyboard""]",4592.4,"{"""": ""14%""}",81746,1,Europe +2024-04-12,61908,1312,"[""Laptop"", ""Wireless Mouse""]",1816.06,{},288897,0,Africa +2024-10-06,61909,1168,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4705.15,{},236005,1,Asia +2024-02-10,61910,2761,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3920.53,{},87087,0,Africa +2023-07-24,61911,7626,"[""Headphones"", ""Phone"", ""Laptop""]",2677.69,"{""loyalty"": ""25%""}",119082,1,Africa +2023-08-23,61912,2526,"[""Monitor"", ""Charger""]",4705.08,{},88014,0,North America +2023-04-21,61913,646,"[""Monitor""]",4008.68,{},37540,1,South America +2023-12-02,61914,5301,"[""Laptop""]",3010.34,{},225719,0,Asia +2024-10-05,61915,5486,"[""Laptop"", ""Wireless Mouse""]",4540.66,{},2112,0,South America +2023-01-22,61916,2868,"[""Monitor"", ""Phone""]",1636.81,"{"""": ""10%""}",54485,1,South America +2023-05-07,61917,9301,"[""Charger"", ""Monitor"", ""Tablet""]",2783.44,"{""promo"": ""12%""}",74484,0,North America +2024-01-14,61918,1987,"[""Laptop"", ""Phone""]",4090.56,{},248465,0,South America +2023-02-03,61919,3444,"[""Phone"", ""Monitor""]",1161.55,{},188110,1,North America +2024-09-03,61920,665,"[""Keyboard"", ""Laptop""]",1257.5,{},65892,1,Asia +2024-06-05,61921,5065,"[""Laptop"", ""Charger"", ""Phone""]",4888.62,"{""seasonal"": ""8%""}",28466,0,Africa +2023-03-10,61922,2290,"[""Phone"", ""Headphones"", ""Tablet""]",4820.0,{},242889,1,Europe +2023-02-06,61923,7836,"[""Keyboard""]",4836.7,"{""seasonal"": ""15%""}",206401,0,South America +2023-08-19,61924,4350,"[""Wireless Mouse""]",3126.23,{},149720,0,South America +2024-05-08,61925,9820,"[""Wireless Mouse"", ""Headphones""]",2569.4,{},180046,0,Asia +2024-12-18,61926,2046,"[""Charger""]",1943.44,"{""promo"": ""21%""}",95004,1,Asia +2024-11-19,61927,6463,"[""Monitor"", ""Charger"", ""Phone""]",1326.51,{},170251,0,Europe +2024-12-01,61928,6347,"[""Wireless Mouse"", ""Keyboard""]",4782.04,"{""loyalty"": ""18%""}",126938,0,Africa +2023-03-04,61929,9450,"[""Charger"", ""Keyboard""]",2709.14,"{""seasonal"": ""14%""}",88844,1,South America +2024-10-24,61930,4937,"[""Laptop"", ""Tablet""]",4412.38,{},199658,1,Asia +2023-05-20,61931,8184,"[""Monitor""]",1940.26,{},195057,1,South America +2023-08-16,61932,1013,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2396.46,"{"""": ""12%""}",125757,0,Asia +2023-08-01,61933,6455,"[""Phone"", ""Wireless Mouse""]",3279.72,{},271396,1,Africa +2024-05-31,61934,5401,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3782.62,"{""promo"": ""18%""}",297688,1,Asia +2024-08-04,61935,4526,"[""Headphones"", ""Keyboard""]",2277.14,{},58282,1,Europe +2024-04-18,61936,1356,"[""Charger""]",2508.72,{},40833,1,North America +2023-04-17,61937,5527,"[""Laptop"", ""Charger"", ""Phone""]",1747.95,{},239234,1,Asia +2024-06-01,61938,5333,"[""Headphones"", ""Laptop""]",3455.01,"{"""": ""16%""}",168748,0,South America +2024-04-14,61939,9703,"[""Phone"", ""Headphones"", ""Tablet""]",4673.2,"{""seasonal"": ""12%""}",256191,0,Asia +2023-01-12,61940,7625,"[""Charger""]",4699.3,{},67900,0,North America +2023-04-20,61941,4413,"[""Tablet""]",1942.74,{},174253,0,North America +2024-07-27,61942,2294,"[""Tablet"", ""Laptop"", ""Headphones""]",1997.67,{},145727,0,Africa +2023-12-09,61943,2142,"[""Headphones""]",3193.75,"{"""": ""27%""}",67582,1,Asia +2023-01-15,61944,1156,"[""Keyboard"", ""Phone""]",4718.29,{},225873,0,Asia +2023-02-28,61945,4926,"[""Wireless Mouse""]",4038.31,"{""loyalty"": ""6%""}",214980,0,Africa +2024-06-01,61946,8177,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1271.57,"{""seasonal"": ""17%""}",299433,0,South America +2024-10-11,61947,8073,"[""Tablet"", ""Charger""]",758.34,"{"""": ""18%""}",144368,1,South America +2023-02-11,61948,6331,"[""Tablet"", ""Monitor"", ""Keyboard""]",1404.2,"{""promo"": ""27%""}",245454,1,Europe +2024-09-03,61949,4807,"[""Keyboard"", ""Wireless Mouse""]",2756.42,{},149444,0,Africa +2023-10-24,61950,1449,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3889.05,{},223552,0,Asia +2023-04-03,61951,6355,"[""Tablet"", ""Wireless Mouse""]",4926.85,"{""loyalty"": ""5%""}",173543,1,North America +2024-02-02,61952,9347,"[""Tablet""]",2097.46,{},194587,1,North America +2023-12-27,61953,3924,"[""Tablet""]",3568.36,{},179654,1,Europe +2024-08-30,61954,9012,"[""Laptop""]",1933.73,{},270378,0,Asia +2023-03-18,61955,5163,"[""Headphones"", ""Phone"", ""Charger""]",2825.72,{},7582,1,Asia +2024-10-15,61956,7939,"[""Headphones""]",2856.3,"{""loyalty"": ""6%""}",260415,1,Africa +2024-11-10,61957,2248,"[""Keyboard"", ""Phone"", ""Charger""]",4169.01,"{"""": ""26%""}",86493,0,Asia +2024-10-04,61958,3581,"[""Laptop""]",4198.41,"{""promo"": ""11%""}",50679,1,Africa +2024-01-19,61959,1537,"[""Laptop""]",4820.58,"{""seasonal"": ""24%""}",273182,0,Asia +2023-08-24,61960,9531,"[""Headphones"", ""Keyboard""]",448.95,"{"""": ""21%""}",42180,1,North America +2024-06-03,61961,4718,"[""Tablet"", ""Keyboard"", ""Phone""]",4692.58,{},77565,1,South America +2023-04-23,61962,9913,"[""Monitor""]",4286.31,{},200619,0,North America +2023-07-08,61963,3791,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1733.49,"{""promo"": ""7%""}",4647,1,Africa +2023-01-02,61964,6517,"[""Headphones"", ""Phone""]",4076.54,"{""loyalty"": ""21%""}",110154,0,Asia +2023-05-13,61965,6666,"[""Wireless Mouse""]",4895.24,{},255833,1,Africa +2023-04-09,61966,6107,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4339.14,{},122706,0,North America +2023-03-11,61967,5395,"[""Phone""]",1032.37,{},162300,0,Africa +2023-01-07,61968,3026,"[""Headphones"", ""Laptop""]",4115.49,{},79460,0,South America +2023-09-10,61969,4636,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4568.79,{},34920,1,Europe +2024-10-22,61970,5775,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",737.76,"{"""": ""11%""}",40583,0,Asia +2024-12-25,61971,2463,"[""Keyboard"", ""Laptop""]",3118.44,"{"""": ""8%""}",93478,1,Asia +2023-07-14,61972,4590,"[""Phone"", ""Charger""]",782.59,"{""seasonal"": ""18%""}",53696,0,Europe +2024-02-13,61973,8083,"[""Monitor""]",3174.95,{},130635,0,South America +2023-09-05,61974,3427,"[""Monitor"", ""Headphones"", ""Charger""]",1076.75,{},273957,1,North America +2024-11-30,61975,7431,"[""Charger"", ""Laptop"", ""Headphones""]",4281.36,"{""loyalty"": ""23%""}",67513,0,North America +2024-01-20,61976,7691,"[""Laptop""]",1550.74,{},103022,0,Europe +2023-07-04,61977,6470,"[""Tablet""]",1661.6,"{""seasonal"": ""12%""}",61171,1,Asia +2023-12-30,61978,5815,"[""Headphones""]",3118.86,"{""seasonal"": ""16%""}",241471,1,North America +2024-03-07,61979,1208,"[""Phone"", ""Charger"", ""Wireless Mouse""]",463.76,"{""seasonal"": ""11%""}",277221,0,Africa +2023-06-23,61980,7399,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2795.19,{},129519,0,North America +2023-11-20,61981,3884,"[""Laptop""]",4511.61,{},225069,0,Asia +2024-06-20,61982,1249,"[""Monitor"", ""Laptop"", ""Phone""]",443.74,{},135967,1,Asia +2024-09-16,61983,3416,"[""Tablet""]",2952.25,"{""seasonal"": ""25%""}",20949,1,Europe +2023-04-25,61984,7148,"[""Phone"", ""Charger""]",164.63,{},135286,1,Africa +2024-04-30,61985,4280,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2522.6,{},261041,1,Asia +2023-12-11,61986,2792,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3576.22,"{"""": ""27%""}",257422,1,Africa +2024-08-12,61987,6801,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2433.81,"{"""": ""8%""}",16228,1,South America +2024-12-18,61988,1580,"[""Monitor"", ""Charger"", ""Laptop""]",3577.71,{},138673,0,North America +2023-07-05,61989,3126,"[""Headphones"", ""Laptop"", ""Phone""]",3345.17,{},88334,0,Asia +2024-10-12,61990,8346,"[""Tablet"", ""Monitor""]",2714.27,{},149342,1,North America +2024-11-14,61991,5529,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1916.51,"{""loyalty"": ""22%""}",90687,1,North America +2023-05-05,61992,5700,"[""Keyboard"", ""Phone"", ""Headphones""]",4149.9,{},206291,0,Asia +2023-05-26,61993,6104,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4381.99,"{"""": ""30%""}",147414,1,Africa +2024-07-11,61994,7759,"[""Wireless Mouse"", ""Phone""]",4367.9,"{""loyalty"": ""13%""}",199294,0,Europe +2023-01-27,61995,5846,"[""Tablet""]",132.14,{},69729,1,Asia +2023-09-18,61996,8571,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3880.95,"{""seasonal"": ""27%""}",30902,0,Asia +2024-04-28,61997,586,"[""Laptop"", ""Charger""]",1958.87,"{""loyalty"": ""12%""}",176355,1,Africa +2023-05-26,61998,4798,"[""Phone"", ""Tablet""]",1006.27,"{""promo"": ""18%""}",281294,1,North America +2023-06-12,61999,565,"[""Monitor"", ""Phone"", ""Tablet""]",3028.65,{},55552,1,Africa +2024-10-31,62000,2961,"[""Headphones""]",606.26,"{""promo"": ""9%""}",110822,1,South America +2024-08-12,62001,6798,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3675.75,{},271363,0,Asia +2024-09-29,62002,3187,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1655.99,{},270208,1,South America +2024-10-13,62003,3194,"[""Headphones"", ""Phone""]",4221.89,{},244547,0,Europe +2023-10-20,62004,6900,"[""Headphones"", ""Keyboard""]",1804.5,{},259841,0,Africa +2023-11-08,62005,4017,"[""Wireless Mouse""]",215.83,{},174968,1,South America +2024-11-17,62006,1011,"[""Charger"", ""Monitor"", ""Phone""]",1618.33,{},234514,0,South America +2023-06-19,62007,3770,"[""Headphones"", ""Charger"", ""Laptop""]",4098.64,{},190109,0,Asia +2023-07-24,62008,2599,"[""Headphones"", ""Charger"", ""Keyboard""]",330.92,"{"""": ""8%""}",96535,1,Europe +2024-11-07,62009,819,"[""Tablet"", ""Headphones""]",1898.8,{},262431,1,Europe +2023-06-29,62010,929,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4262.22,{},95853,0,Asia +2023-01-09,62011,1827,"[""Laptop""]",2120.3,"{""seasonal"": ""26%""}",292372,1,Africa +2024-04-07,62012,3025,"[""Keyboard"", ""Headphones"", ""Tablet""]",2882.86,"{""promo"": ""5%""}",89482,1,South America +2024-07-19,62013,483,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1061.79,"{""loyalty"": ""11%""}",263307,1,North America +2023-08-23,62014,5599,"[""Headphones"", ""Tablet"", ""Laptop""]",1573.23,{},14522,1,Africa +2024-09-11,62015,9444,"[""Laptop""]",829.66,"{"""": ""18%""}",235124,0,Africa +2023-06-01,62016,3395,"[""Wireless Mouse"", ""Tablet""]",4364.37,"{""loyalty"": ""30%""}",282242,1,Africa +2023-11-27,62017,8261,"[""Wireless Mouse""]",2980.9,"{""promo"": ""26%""}",261111,0,Asia +2024-07-16,62018,5340,"[""Laptop"", ""Phone"", ""Keyboard""]",3859.58,"{"""": ""20%""}",105345,1,South America +2024-10-30,62019,2413,"[""Headphones""]",1343.5,{},115254,1,North America +2023-10-31,62020,4098,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4167.7,{},216821,1,Asia +2023-09-23,62021,6126,"[""Laptop"", ""Phone"", ""Monitor""]",3452.38,"{""seasonal"": ""27%""}",144610,0,South America +2024-09-25,62022,102,"[""Phone""]",1292.91,{},277498,0,Asia +2023-08-07,62023,7268,"[""Headphones""]",4756.48,{},246751,0,North America +2023-07-01,62024,2356,"[""Keyboard""]",3335.01,{},1033,0,Europe +2023-01-20,62025,7021,"[""Tablet"", ""Keyboard"", ""Charger""]",2500.44,"{""loyalty"": ""23%""}",88479,1,Africa +2023-08-27,62026,8983,"[""Laptop""]",1155.55,{},147817,1,Africa +2024-10-22,62027,8294,"[""Wireless Mouse""]",152.97,"{""loyalty"": ""20%""}",234321,0,Europe +2024-08-23,62028,9351,"[""Tablet"", ""Laptop"", ""Keyboard""]",2461.61,"{"""": ""16%""}",230815,1,Africa +2024-04-24,62029,3299,"[""Keyboard""]",846.56,{},139796,1,Asia +2023-10-31,62030,4712,"[""Charger"", ""Phone"", ""Monitor""]",4784.43,"{""loyalty"": ""29%""}",222299,1,South America +2024-09-18,62031,187,"[""Keyboard""]",4422.0,{},271739,1,Africa +2023-12-01,62032,1333,"[""Monitor"", ""Phone"", ""Tablet""]",4106.17,"{"""": ""10%""}",290187,1,Africa +2023-02-07,62033,9444,"[""Headphones"", ""Monitor""]",4931.07,"{""seasonal"": ""17%""}",27695,1,Europe +2023-11-24,62034,9138,"[""Monitor"", ""Headphones"", ""Tablet""]",115.61,"{""loyalty"": ""11%""}",288617,1,Europe +2023-11-16,62035,2077,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3305.42,"{""loyalty"": ""25%""}",105545,1,South America +2024-05-06,62036,9167,"[""Charger"", ""Headphones""]",2344.41,"{""seasonal"": ""24%""}",284093,0,Europe +2023-02-18,62037,6584,"[""Laptop"", ""Keyboard"", ""Charger""]",3660.75,"{"""": ""11%""}",147024,0,North America +2024-02-01,62038,7151,"[""Monitor""]",1782.31,{},28910,0,North America +2024-07-10,62039,3761,"[""Headphones"", ""Keyboard""]",3873.08,"{""promo"": ""5%""}",257833,1,Europe +2023-05-31,62040,2018,"[""Keyboard""]",1403.73,"{""seasonal"": ""8%""}",243734,0,North America +2024-11-27,62041,6219,"[""Monitor"", ""Keyboard"", ""Tablet""]",3172.51,"{""loyalty"": ""8%""}",112525,1,Europe +2024-04-12,62042,7304,"[""Tablet"", ""Monitor""]",2501.61,"{"""": ""29%""}",123878,1,Asia +2024-09-13,62043,7471,"[""Monitor"", ""Keyboard"", ""Charger""]",1908.76,{},88025,1,South America +2024-09-03,62044,4325,"[""Wireless Mouse"", ""Laptop""]",3203.77,{},46632,1,South America +2023-08-26,62045,5521,"[""Charger"", ""Wireless Mouse""]",4751.69,"{""seasonal"": ""24%""}",270527,1,Africa +2023-11-10,62046,849,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3361.39,{},97077,1,North America +2024-12-30,62047,4621,"[""Phone"", ""Keyboard""]",3340.84,{},220802,0,Africa +2024-07-23,62048,6535,"[""Headphones""]",4270.04,"{""loyalty"": ""16%""}",86982,0,South America +2023-02-26,62049,4303,"[""Laptop"", ""Headphones""]",4118.83,"{""seasonal"": ""22%""}",117615,0,Africa +2024-01-31,62050,2222,"[""Monitor"", ""Tablet""]",766.8,"{"""": ""20%""}",191998,1,South America +2023-05-15,62051,3091,"[""Headphones"", ""Charger""]",2090.04,"{"""": ""13%""}",5747,1,Asia +2024-06-15,62052,4608,"[""Monitor""]",3093.77,"{""loyalty"": ""25%""}",101521,0,Asia +2023-07-26,62053,4672,"[""Phone""]",4949.4,"{""loyalty"": ""14%""}",28920,1,Europe +2023-07-21,62054,8560,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4898.98,{},1655,1,Europe +2024-02-09,62055,738,"[""Tablet""]",3338.9,"{""seasonal"": ""24%""}",220589,0,South America +2023-08-16,62056,5043,"[""Charger""]",3328.25,{},64363,0,Asia +2024-06-02,62057,5752,"[""Headphones"", ""Tablet"", ""Phone""]",454.63,{},195140,1,North America +2024-02-19,62058,6609,"[""Wireless Mouse"", ""Laptop""]",875.04,{},17410,1,Asia +2024-08-21,62059,8046,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",403.35,"{""promo"": ""13%""}",224986,0,Africa +2024-03-13,62060,6163,"[""Wireless Mouse"", ""Phone""]",3244.65,{},140411,0,South America +2023-06-02,62061,5362,"[""Tablet"", ""Monitor"", ""Headphones""]",3268.42,{},67517,1,Africa +2023-07-26,62062,5151,"[""Tablet""]",1887.07,{},12496,0,Africa +2023-07-24,62063,5835,"[""Charger"", ""Laptop""]",880.63,{},256163,1,South America +2023-04-14,62064,544,"[""Laptop"", ""Monitor"", ""Keyboard""]",2033.88,"{""loyalty"": ""24%""}",142907,0,North America +2023-11-05,62065,2724,"[""Keyboard""]",3721.29,"{"""": ""28%""}",275991,1,Africa +2023-06-18,62066,3014,"[""Phone"", ""Monitor""]",4086.63,{},24322,0,Asia +2023-05-26,62067,4055,"[""Keyboard"", ""Phone""]",3465.93,{},249593,0,Africa +2023-02-25,62068,3770,"[""Keyboard""]",4790.28,"{""seasonal"": ""23%""}",135171,1,Asia +2023-02-27,62069,3921,"[""Phone"", ""Keyboard"", ""Laptop""]",4256.97,{},170069,0,Asia +2023-12-08,62070,9498,"[""Wireless Mouse"", ""Phone""]",3321.22,{},158523,1,Europe +2024-07-28,62071,7733,"[""Monitor""]",3438.03,"{""loyalty"": ""29%""}",238857,1,North America +2023-06-15,62072,1616,"[""Headphones"", ""Keyboard""]",4147.03,{},75541,0,Asia +2024-02-24,62073,8187,"[""Wireless Mouse"", ""Tablet""]",4278.23,"{""seasonal"": ""18%""}",27152,1,Asia +2023-08-13,62074,8231,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",241.65,{},179443,1,North America +2023-01-06,62075,6499,"[""Phone""]",2457.56,{},87264,1,Asia +2023-12-10,62076,1473,"[""Monitor"", ""Charger""]",4123.62,{},95158,1,Africa +2023-02-06,62077,9646,"[""Monitor""]",4910.89,"{""promo"": ""23%""}",61757,1,Asia +2023-01-04,62078,7476,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4371.64,{},132972,0,North America +2024-05-03,62079,6131,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2021.22,{},101129,1,Europe +2024-09-23,62080,3451,"[""Tablet""]",2518.76,{},7508,1,North America +2024-07-23,62081,9531,"[""Tablet"", ""Laptop""]",2930.74,{},92295,0,Asia +2024-08-20,62082,3312,"[""Phone"", ""Tablet""]",1452.85,"{""seasonal"": ""12%""}",144788,1,North America +2023-04-25,62083,4565,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2847.93,"{""promo"": ""7%""}",232392,1,Asia +2024-12-25,62084,6332,"[""Phone"", ""Headphones""]",1203.39,{},164015,0,South America +2023-07-21,62085,7955,"[""Charger"", ""Wireless Mouse""]",4864.57,"{"""": ""28%""}",207076,0,Europe +2024-07-26,62086,5704,"[""Phone""]",1192.54,{},67847,1,North America +2023-07-11,62087,150,"[""Laptop""]",2328.83,{},3685,0,Europe +2023-06-07,62088,7695,"[""Laptop"", ""Headphones""]",1784.16,"{""loyalty"": ""29%""}",14128,0,Asia +2023-02-06,62089,2348,"[""Wireless Mouse"", ""Tablet""]",1206.45,"{""loyalty"": ""7%""}",254629,0,Europe +2023-05-13,62090,7958,"[""Keyboard"", ""Phone"", ""Monitor""]",2897.67,"{""seasonal"": ""14%""}",195999,0,Europe +2024-07-14,62091,6179,"[""Laptop"", ""Phone""]",2364.06,{},210105,0,South America +2024-04-04,62092,2590,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1492.53,"{""seasonal"": ""7%""}",53694,0,Europe +2023-12-08,62093,9059,"[""Laptop""]",306.42,"{""loyalty"": ""15%""}",196534,1,Europe +2023-01-26,62094,5635,"[""Headphones""]",952.11,{},298616,1,Africa +2024-11-14,62095,6629,"[""Tablet"", ""Headphones""]",4777.91,{},186805,1,Asia +2023-09-14,62096,7301,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",659.89,{},274962,1,Asia +2023-12-06,62097,3350,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4118.94,{},26178,0,North America +2024-06-24,62098,7850,"[""Laptop"", ""Headphones""]",766.12,"{""seasonal"": ""16%""}",216150,0,Asia +2023-07-05,62099,75,"[""Keyboard""]",3054.21,{},289507,0,North America +2023-10-20,62100,7882,"[""Charger""]",2989.19,{},140608,1,Asia +2024-03-10,62101,5267,"[""Monitor"", ""Wireless Mouse""]",3754.09,"{"""": ""10%""}",143551,0,Asia +2024-03-26,62102,6154,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3496.18,"{"""": ""24%""}",257870,0,North America +2023-11-30,62103,7974,"[""Tablet"", ""Charger"", ""Laptop""]",3498.19,"{""seasonal"": ""11%""}",142272,0,Europe +2024-07-25,62104,7064,"[""Keyboard"", ""Headphones""]",1369.28,{},297808,0,North America +2023-03-11,62105,4105,"[""Laptop""]",784.85,{},174791,0,Europe +2023-11-03,62106,4259,"[""Monitor"", ""Charger"", ""Tablet""]",3366.94,"{"""": ""8%""}",130029,0,Asia +2024-02-22,62107,3030,"[""Laptop""]",4212.6,"{""loyalty"": ""26%""}",113676,1,South America +2023-02-21,62108,404,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1331.39,"{"""": ""30%""}",176632,1,Asia +2024-01-09,62109,8877,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1241.75,{},184008,1,North America +2023-08-07,62110,625,"[""Headphones""]",1629.79,"{""seasonal"": ""27%""}",172207,1,Asia +2023-09-25,62111,2689,"[""Headphones""]",2182.36,{},181121,1,Europe +2024-03-01,62112,4622,"[""Tablet""]",4770.16,{},53071,0,North America +2024-10-16,62113,3449,"[""Laptop"", ""Monitor""]",1983.39,{},62706,0,Africa +2023-05-11,62114,1932,"[""Keyboard""]",4694.73,"{"""": ""19%""}",136556,1,Africa +2023-08-23,62115,2137,"[""Keyboard""]",498.93,{},81972,0,Europe +2024-10-25,62116,9805,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3091.18,"{""loyalty"": ""24%""}",3693,1,Asia +2024-09-06,62117,4051,"[""Tablet"", ""Monitor"", ""Phone""]",3436.63,"{"""": ""21%""}",273062,1,North America +2023-04-16,62118,2354,"[""Keyboard"", ""Tablet"", ""Monitor""]",893.28,"{"""": ""16%""}",183247,1,Europe +2024-11-11,62119,5512,"[""Phone"", ""Keyboard""]",876.2,{},232601,1,South America +2024-07-18,62120,554,"[""Laptop"", ""Phone""]",1632.99,{},108967,0,Asia +2023-11-04,62121,4359,"[""Monitor"", ""Wireless Mouse""]",3047.11,{},56857,0,Asia +2024-11-23,62122,7210,"[""Phone""]",2821.52,{},79233,0,North America +2024-09-13,62123,1356,"[""Laptop"", ""Charger"", ""Monitor""]",509.08,{},240976,0,North America +2023-09-11,62124,6972,"[""Keyboard"", ""Charger""]",2774.46,{},260327,0,Africa +2024-06-28,62125,7903,"[""Phone"", ""Headphones""]",1510.65,{},110456,1,Europe +2023-09-21,62126,2211,"[""Keyboard"", ""Headphones"", ""Monitor""]",4040.25,{},140948,1,Europe +2024-03-25,62127,7373,"[""Phone""]",4589.38,{},296087,0,Europe +2023-09-26,62128,2648,"[""Tablet""]",1245.75,{},60241,1,Asia +2023-08-07,62129,3939,"[""Headphones"", ""Wireless Mouse""]",1941.52,{},90553,0,Africa +2023-09-05,62130,5867,"[""Laptop"", ""Monitor"", ""Tablet""]",4850.57,{},239723,1,Europe +2024-05-25,62131,2659,"[""Laptop"", ""Headphones""]",3693.61,"{"""": ""13%""}",257440,0,North America +2023-12-13,62132,9581,"[""Laptop""]",3011.25,{},271571,1,Africa +2024-04-25,62133,9648,"[""Charger""]",3718.95,{},140610,0,Africa +2023-07-25,62134,8875,"[""Wireless Mouse""]",3317.82,{},161076,1,South America +2024-02-11,62135,3610,"[""Wireless Mouse""]",341.43,{},102198,0,Africa +2024-03-01,62136,517,"[""Keyboard"", ""Tablet""]",4090.68,"{"""": ""5%""}",17694,1,Asia +2023-04-25,62137,2933,"[""Headphones""]",3931.3,{},219477,1,Africa +2024-08-26,62138,1528,"[""Laptop"", ""Phone""]",2600.21,"{"""": ""18%""}",175815,1,South America +2024-06-27,62139,6539,"[""Laptop""]",2480.52,"{""promo"": ""26%""}",267423,1,Africa +2023-12-09,62140,2110,"[""Phone"", ""Charger"", ""Tablet""]",2072.82,{},210162,1,Europe +2024-12-06,62141,3957,"[""Monitor""]",2843.65,"{""loyalty"": ""5%""}",189337,1,Africa +2023-10-06,62142,6601,"[""Headphones""]",1745.86,"{"""": ""14%""}",297205,1,North America +2024-06-23,62143,3486,"[""Headphones""]",3398.39,"{"""": ""23%""}",141738,0,Asia +2024-11-20,62144,9594,"[""Keyboard""]",1997.56,{},142128,1,North America +2023-09-25,62145,418,"[""Tablet""]",1979.1,"{""promo"": ""13%""}",68978,0,Asia +2023-02-03,62146,3295,"[""Keyboard"", ""Laptop""]",3526.22,{},160168,0,North America +2024-07-12,62147,3983,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2122.82,"{""promo"": ""22%""}",295796,1,North America +2023-11-30,62148,6244,"[""Monitor"", ""Phone"", ""Laptop""]",4980.6,{},221756,1,Europe +2023-02-24,62149,1087,"[""Tablet"", ""Charger""]",3997.6,"{""seasonal"": ""20%""}",185927,0,South America +2023-08-06,62150,7264,"[""Monitor"", ""Tablet""]",2808.79,"{""seasonal"": ""19%""}",194242,0,Europe +2023-12-10,62151,1611,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3982.47,{},275664,0,Europe +2024-12-25,62152,714,"[""Headphones"", ""Keyboard"", ""Monitor""]",2102.37,{},48493,1,North America +2024-05-09,62153,7503,"[""Phone""]",4459.23,{},190276,0,Europe +2024-12-11,62154,4696,"[""Tablet""]",4052.12,"{""promo"": ""19%""}",183178,1,Europe +2023-07-18,62155,8089,"[""Tablet""]",750.33,{},231738,1,Africa +2024-01-07,62156,7403,"[""Headphones""]",2110.69,"{""loyalty"": ""15%""}",182756,1,Africa +2023-08-16,62157,383,"[""Phone"", ""Laptop""]",3718.48,{},285387,0,Europe +2023-11-04,62158,2679,"[""Keyboard""]",3618.29,"{""seasonal"": ""23%""}",233110,1,Asia +2024-03-02,62159,1674,"[""Laptop"", ""Tablet"", ""Phone""]",4351.9,{},150434,0,Asia +2024-03-31,62160,1731,"[""Monitor"", ""Keyboard""]",2221.06,{},246257,0,South America +2023-09-19,62161,862,"[""Charger"", ""Phone"", ""Tablet""]",1855.19,{},5040,1,Africa +2024-06-15,62162,5104,"[""Laptop"", ""Phone"", ""Keyboard""]",1725.79,"{"""": ""20%""}",259076,0,Asia +2024-03-25,62163,1080,"[""Tablet"", ""Headphones"", ""Keyboard""]",3489.62,"{"""": ""25%""}",129999,0,Asia +2024-02-25,62164,5005,"[""Headphones""]",4286.66,"{""seasonal"": ""17%""}",235391,0,Asia +2024-04-11,62165,8566,"[""Headphones"", ""Tablet""]",649.32,"{""loyalty"": ""17%""}",294327,1,Europe +2023-12-21,62166,8222,"[""Headphones"", ""Wireless Mouse""]",3879.13,"{""loyalty"": ""18%""}",224404,1,Africa +2024-08-14,62167,5089,"[""Tablet"", ""Headphones"", ""Keyboard""]",2585.44,"{""loyalty"": ""19%""}",155906,1,Europe +2024-09-06,62168,8889,"[""Tablet"", ""Keyboard""]",4024.18,"{"""": ""16%""}",238210,0,Europe +2023-11-16,62169,603,"[""Keyboard""]",1806.08,{},60731,0,Africa +2023-10-12,62170,3712,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",921.13,{},214754,0,Africa +2023-12-06,62171,429,"[""Laptop""]",3838.76,{},86801,1,South America +2023-12-02,62172,7479,"[""Phone"", ""Laptop""]",2700.58,{},176057,0,Europe +2023-12-07,62173,2903,"[""Headphones"", ""Keyboard""]",3551.68,{},5701,0,Asia +2024-03-21,62174,2801,"[""Charger"", ""Monitor"", ""Laptop""]",3907.34,{},106999,0,Africa +2023-12-17,62175,8777,"[""Keyboard""]",975.91,"{""loyalty"": ""13%""}",30384,0,Asia +2024-09-14,62176,8802,"[""Monitor"", ""Keyboard"", ""Headphones""]",3990.85,"{"""": ""12%""}",292819,1,South America +2024-12-21,62177,807,"[""Keyboard"", ""Wireless Mouse""]",305.24,"{"""": ""20%""}",126905,0,South America +2024-08-04,62178,3611,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2643.28,{},233524,0,Africa +2024-08-02,62179,338,"[""Keyboard""]",644.88,"{""promo"": ""9%""}",28891,1,Africa +2023-04-08,62180,7425,"[""Laptop""]",2850.16,"{""seasonal"": ""9%""}",57944,1,Africa +2024-07-06,62181,3377,"[""Wireless Mouse"", ""Monitor""]",1370.68,"{""loyalty"": ""19%""}",278680,1,North America +2023-01-19,62182,3162,"[""Headphones"", ""Monitor""]",2577.38,{},191855,1,Asia +2023-02-05,62183,8889,"[""Charger"", ""Keyboard"", ""Headphones""]",4771.29,"{""seasonal"": ""20%""}",223788,0,North America +2024-06-15,62184,354,"[""Charger""]",107.39,{},200416,0,South America +2023-03-16,62185,3696,"[""Monitor"", ""Keyboard""]",4643.95,"{""seasonal"": ""5%""}",74891,1,Asia +2024-12-16,62186,626,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2493.57,"{""loyalty"": ""24%""}",222423,0,Europe +2023-12-30,62187,6327,"[""Tablet""]",1000.79,{},107182,1,Asia +2024-01-19,62188,1946,"[""Laptop""]",4969.84,"{""loyalty"": ""24%""}",286158,0,Africa +2023-02-25,62189,8470,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3962.3,"{""seasonal"": ""26%""}",17688,1,Europe +2024-11-21,62190,6027,"[""Wireless Mouse""]",1760.38,{},266725,1,Africa +2024-02-25,62191,5040,"[""Phone""]",74.74,"{""seasonal"": ""7%""}",154280,0,South America +2023-10-14,62192,4281,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1623.1,"{""seasonal"": ""28%""}",285207,0,Asia +2024-08-05,62193,848,"[""Laptop""]",1183.25,"{""promo"": ""9%""}",113333,1,Europe +2023-07-04,62194,4968,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4478.66,"{"""": ""21%""}",224077,0,South America +2023-06-02,62195,1379,"[""Phone"", ""Laptop""]",4656.99,"{"""": ""18%""}",298944,0,Asia +2024-04-01,62196,6962,"[""Wireless Mouse"", ""Keyboard""]",919.88,"{""promo"": ""11%""}",130087,1,Asia +2024-12-31,62197,6040,"[""Tablet""]",2595.83,{},199254,1,South America +2023-09-02,62198,4141,"[""Laptop"", ""Charger"", ""Tablet""]",313.08,{},215289,0,North America +2023-07-25,62199,4805,"[""Keyboard"", ""Tablet""]",2736.48,"{"""": ""10%""}",140133,1,Europe +2023-01-19,62200,7272,"[""Tablet""]",4047.52,"{""promo"": ""25%""}",286444,1,North America +2024-09-27,62201,9762,"[""Monitor""]",2013.8,"{""seasonal"": ""18%""}",56907,1,Africa +2023-07-24,62202,9700,"[""Keyboard""]",812.11,{},84702,0,Africa +2023-11-04,62203,1344,"[""Laptop""]",2795.95,"{""loyalty"": ""30%""}",294616,0,Africa +2023-01-14,62204,184,"[""Keyboard""]",4670.27,"{""loyalty"": ""11%""}",295122,1,Asia +2024-12-24,62205,4215,"[""Headphones"", ""Phone"", ""Charger""]",1249.27,"{""promo"": ""25%""}",167158,0,Europe +2023-12-03,62206,704,"[""Wireless Mouse""]",105.36,{},233983,1,Asia +2024-08-05,62207,597,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4666.31,{},175434,0,North America +2024-06-04,62208,4701,"[""Charger"", ""Monitor"", ""Phone""]",4366.21,"{""seasonal"": ""10%""}",173656,1,Africa +2024-11-16,62209,164,"[""Monitor""]",4168.06,{},30385,0,South America +2024-03-09,62210,6902,"[""Keyboard"", ""Charger"", ""Tablet""]",4770.14,{},41372,1,North America +2023-06-20,62211,5558,"[""Wireless Mouse"", ""Phone""]",1376.98,{},265592,1,South America +2024-05-31,62212,8828,"[""Headphones"", ""Wireless Mouse""]",1187.07,{},182765,0,North America +2024-05-06,62213,9460,"[""Keyboard"", ""Phone""]",2628.61,{},195912,0,North America +2023-03-18,62214,4550,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2445.18,"{""promo"": ""23%""}",225982,0,Europe +2023-05-09,62215,6433,"[""Phone"", ""Charger"", ""Laptop""]",4838.87,"{"""": ""5%""}",158054,0,North America +2024-09-10,62216,4752,"[""Monitor"", ""Headphones""]",504.48,{},201317,1,North America +2024-06-17,62217,1782,"[""Keyboard"", ""Headphones""]",3445.81,"{"""": ""24%""}",16267,0,North America +2024-11-20,62218,6214,"[""Charger"", ""Tablet"", ""Laptop""]",3645.24,{},254619,0,South America +2023-01-19,62219,8750,"[""Keyboard""]",303.77,"{"""": ""22%""}",149311,1,Europe +2023-05-04,62220,6669,"[""Tablet"", ""Monitor"", ""Keyboard""]",375.83,"{""loyalty"": ""15%""}",51550,1,North America +2024-03-10,62221,541,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2353.54,{},133381,1,South America +2023-12-19,62222,68,"[""Keyboard"", ""Phone"", ""Monitor""]",2324.06,{},113589,0,Africa +2024-09-21,62223,9318,"[""Headphones"", ""Laptop""]",4647.36,"{""seasonal"": ""5%""}",45728,0,Asia +2024-06-12,62224,4360,"[""Tablet"", ""Monitor"", ""Headphones""]",4059.18,{},11836,1,Asia +2023-03-23,62225,2452,"[""Charger""]",2453.45,"{""promo"": ""5%""}",167137,0,North America +2023-03-28,62226,8078,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2455.28,{},133198,0,North America +2024-10-20,62227,8015,"[""Wireless Mouse"", ""Monitor""]",3176.16,"{""loyalty"": ""17%""}",192809,1,North America +2023-01-16,62228,1737,"[""Headphones""]",4681.11,{},197629,1,North America +2024-09-19,62229,2379,"[""Laptop""]",4421.39,{},14156,0,Africa +2024-07-31,62230,7354,"[""Wireless Mouse""]",1527.05,{},281936,1,Europe +2023-02-09,62231,6154,"[""Keyboard""]",3087.64,{},41040,1,Asia +2023-11-22,62232,7306,"[""Tablet"", ""Keyboard""]",776.35,{},258457,1,North America +2024-07-14,62233,8311,"[""Headphones""]",4502.84,{},48291,0,South America +2024-03-27,62234,3186,"[""Charger"", ""Laptop""]",3634.43,"{"""": ""29%""}",48896,0,Africa +2024-11-25,62235,1374,"[""Tablet""]",3333.11,"{""loyalty"": ""11%""}",280527,1,Asia +2023-05-09,62236,5445,"[""Headphones"", ""Laptop""]",3165.01,"{""seasonal"": ""14%""}",68536,1,South America +2023-08-27,62237,7970,"[""Charger"", ""Laptop"", ""Phone""]",3481.15,{},83088,1,Asia +2024-10-29,62238,8226,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",296.83,{},260390,1,South America +2024-01-14,62239,8595,"[""Headphones""]",2603.66,{},250614,1,Europe +2024-10-24,62240,314,"[""Laptop"", ""Wireless Mouse""]",3571.02,{},243008,1,North America +2023-09-15,62241,1799,"[""Keyboard"", ""Tablet"", ""Monitor""]",3416.06,{},97188,0,Africa +2024-07-11,62242,1491,"[""Phone""]",378.37,{},252210,0,South America +2023-08-01,62243,7483,"[""Monitor""]",1792.5,"{""promo"": ""15%""}",92968,1,North America +2024-02-04,62244,403,"[""Wireless Mouse""]",1385.57,"{""promo"": ""21%""}",64256,1,South America +2024-05-31,62245,1953,"[""Wireless Mouse""]",1296.38,{},122697,0,Africa +2024-07-29,62246,2236,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2825.33,"{""promo"": ""5%""}",77940,0,Asia +2024-08-05,62247,7155,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",175.8,{},171029,0,North America +2023-03-27,62248,8645,"[""Phone""]",1954.74,"{""seasonal"": ""26%""}",136084,1,Europe +2024-05-08,62249,5718,"[""Wireless Mouse"", ""Charger""]",415.02,"{""loyalty"": ""10%""}",99865,0,North America +2023-09-12,62250,8939,"[""Keyboard"", ""Wireless Mouse""]",1383.95,{},80623,1,Europe +2023-07-01,62251,9541,"[""Headphones"", ""Keyboard"", ""Charger""]",4201.39,"{"""": ""22%""}",102331,0,North America +2024-08-30,62252,814,"[""Keyboard""]",2821.62,{},104686,1,Asia +2024-04-04,62253,6916,"[""Tablet"", ""Headphones"", ""Laptop""]",1385.26,"{""loyalty"": ""13%""}",238819,1,South America +2024-02-12,62254,3963,"[""Tablet"", ""Phone""]",2578.61,"{""loyalty"": ""15%""}",229288,1,North America +2024-01-14,62255,5237,"[""Monitor"", ""Phone""]",93.78,{},105278,1,Africa +2023-03-09,62256,1101,"[""Tablet""]",1348.9,"{""promo"": ""16%""}",53463,0,Asia +2024-06-05,62257,7927,"[""Wireless Mouse"", ""Laptop""]",4819.44,{},67024,1,South America +2024-02-21,62258,4368,"[""Headphones"", ""Tablet"", ""Laptop""]",1340.02,{},51287,0,South America +2023-01-13,62259,85,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3792.51,"{""seasonal"": ""24%""}",132627,1,Asia +2024-02-20,62260,8891,"[""Headphones"", ""Phone""]",1991.56,{},156848,0,North America +2023-05-02,62261,832,"[""Keyboard"", ""Phone""]",234.69,"{""seasonal"": ""25%""}",171386,1,South America +2024-04-11,62262,1729,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",337.3,{},101452,1,Africa +2023-12-28,62263,6179,"[""Phone""]",2269.87,{},173349,0,Africa +2024-11-20,62264,3964,"[""Keyboard""]",1885.92,"{""seasonal"": ""30%""}",198642,0,Europe +2023-03-16,62265,1744,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",920.84,"{""loyalty"": ""13%""}",274710,0,Europe +2023-03-23,62266,3199,"[""Keyboard"", ""Charger""]",1118.05,{},246224,1,Africa +2024-11-07,62267,602,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3460.78,"{"""": ""28%""}",10094,1,Asia +2024-10-23,62268,9037,"[""Monitor""]",2352.67,"{""seasonal"": ""18%""}",101134,0,Africa +2024-03-11,62269,3846,"[""Headphones"", ""Phone""]",428.96,{},242073,0,South America +2024-06-01,62270,5230,"[""Monitor""]",1651.57,"{""promo"": ""20%""}",227294,1,South America +2024-01-16,62271,2438,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2710.32,"{""seasonal"": ""23%""}",7013,1,Asia +2023-11-13,62272,7362,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2762.85,"{""loyalty"": ""13%""}",57942,0,North America +2023-07-02,62273,7916,"[""Headphones""]",2128.66,{},175588,1,Europe +2024-10-26,62274,6256,"[""Laptop"", ""Charger"", ""Tablet""]",474.18,"{""promo"": ""30%""}",56262,0,Africa +2024-01-27,62275,332,"[""Tablet"", ""Keyboard"", ""Headphones""]",4142.08,{},119897,0,Africa +2023-03-07,62276,293,"[""Headphones""]",4903.31,"{""promo"": ""9%""}",189171,1,Asia +2023-03-14,62277,5289,"[""Monitor""]",3340.22,"{""seasonal"": ""26%""}",216497,0,Europe +2024-08-19,62278,3597,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2152.77,"{""seasonal"": ""25%""}",29309,1,Europe +2023-04-08,62279,7813,"[""Keyboard""]",2981.17,{},257901,0,North America +2024-09-04,62280,8567,"[""Keyboard"", ""Wireless Mouse""]",623.27,"{""loyalty"": ""5%""}",15891,0,Europe +2024-07-25,62281,5124,"[""Keyboard""]",475.18,{},200928,0,Asia +2023-04-01,62282,5881,"[""Charger""]",3428.98,"{"""": ""15%""}",127776,1,Europe +2024-03-31,62283,5724,"[""Laptop"", ""Headphones"", ""Phone""]",958.09,{},125250,1,Asia +2024-09-05,62284,6644,"[""Tablet"", ""Charger""]",805.25,"{""seasonal"": ""19%""}",284177,1,Africa +2023-08-04,62285,3310,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",355.59,"{"""": ""14%""}",3454,0,Europe +2023-05-13,62286,2661,"[""Keyboard"", ""Wireless Mouse""]",3106.17,{},88462,1,North America +2023-10-20,62287,8581,"[""Phone"", ""Laptop"", ""Tablet""]",2432.83,{},168363,1,South America +2023-08-03,62288,2819,"[""Keyboard"", ""Laptop""]",3148.48,{},12270,1,North America +2023-12-30,62289,8659,"[""Keyboard"", ""Wireless Mouse""]",2346.44,"{""loyalty"": ""13%""}",59237,1,Europe +2024-08-17,62290,9652,"[""Tablet""]",4057.4,"{""promo"": ""19%""}",180539,1,Africa +2023-04-02,62291,9406,"[""Phone"", ""Headphones"", ""Keyboard""]",170.94,"{""loyalty"": ""12%""}",252626,1,South America +2024-03-15,62292,9475,"[""Keyboard"", ""Laptop""]",2696.2,"{""seasonal"": ""24%""}",144581,0,Asia +2023-08-09,62293,1717,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2260.79,{},175187,0,Asia +2024-02-04,62294,5631,"[""Headphones""]",609.31,"{""loyalty"": ""6%""}",21078,0,North America +2023-08-06,62295,7219,"[""Phone""]",629.61,"{""loyalty"": ""24%""}",273593,1,South America +2023-04-20,62296,8802,"[""Headphones"", ""Charger""]",1293.23,{},251148,1,Africa +2023-08-23,62297,4138,"[""Laptop"", ""Charger"", ""Monitor""]",2712.76,"{""seasonal"": ""26%""}",109681,0,North America +2024-02-18,62298,9166,"[""Wireless Mouse""]",506.67,"{""promo"": ""18%""}",32739,0,Europe +2023-07-10,62299,2684,"[""Phone""]",4247.1,{},201470,0,North America +2023-04-19,62300,8381,"[""Phone"", ""Keyboard"", ""Laptop""]",3548.83,"{""loyalty"": ""18%""}",155402,0,South America +2024-01-31,62301,6715,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4797.74,{},135994,1,Asia +2023-08-23,62302,9629,"[""Laptop"", ""Tablet""]",2817.78,{},49751,1,South America +2023-08-19,62303,3837,"[""Tablet"", ""Headphones"", ""Monitor""]",2103.66,{},108396,1,North America +2023-02-19,62304,2154,"[""Phone"", ""Monitor""]",3515.29,{},40211,0,Africa +2023-07-25,62305,4487,"[""Keyboard""]",4918.68,"{""loyalty"": ""6%""}",95742,0,South America +2023-09-26,62306,6910,"[""Monitor""]",2993.37,{},243367,0,Asia +2024-04-17,62307,1403,"[""Tablet""]",745.62,"{""loyalty"": ""28%""}",101176,0,Europe +2024-11-15,62308,6484,"[""Charger"", ""Laptop""]",3152.23,"{""promo"": ""16%""}",242090,1,North America +2024-01-30,62309,6106,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2863.74,"{""loyalty"": ""23%""}",35349,1,North America +2024-04-18,62310,6357,"[""Laptop"", ""Monitor""]",4787.22,"{""loyalty"": ""26%""}",163084,0,Europe +2023-02-24,62311,2490,"[""Tablet"", ""Laptop"", ""Keyboard""]",677.84,{},9666,1,North America +2024-09-26,62312,187,"[""Laptop""]",1721.83,{},251349,1,Europe +2024-06-11,62313,6819,"[""Headphones"", ""Charger""]",3789.65,{},98085,1,Africa +2024-07-13,62314,4559,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",418.53,"{""seasonal"": ""17%""}",6748,1,Africa +2024-01-10,62315,9708,"[""Charger"", ""Tablet"", ""Keyboard""]",4567.74,"{""promo"": ""25%""}",190848,0,North America +2024-08-12,62316,6124,"[""Keyboard""]",2917.67,"{""seasonal"": ""5%""}",15558,0,South America +2024-01-22,62317,9557,"[""Wireless Mouse"", ""Keyboard""]",1138.99,{},238481,0,Europe +2023-08-21,62318,8906,"[""Wireless Mouse"", ""Tablet""]",2414.47,"{""promo"": ""19%""}",206841,1,Africa +2024-07-13,62319,1658,"[""Monitor""]",1823.74,"{""promo"": ""30%""}",165659,1,South America +2024-08-11,62320,6443,"[""Monitor"", ""Keyboard"", ""Tablet""]",3783.25,{},176516,1,North America +2023-04-15,62321,5945,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4389.95,{},222654,0,Europe +2023-09-07,62322,7577,"[""Headphones"", ""Wireless Mouse""]",4814.03,{},61888,0,Asia +2023-02-15,62323,7256,"[""Laptop"", ""Phone""]",373.91,{},217147,0,Africa +2023-09-24,62324,2073,"[""Headphones"", ""Phone""]",1216.31,"{""loyalty"": ""24%""}",276035,1,Europe +2024-08-12,62325,6360,"[""Headphones"", ""Laptop"", ""Charger""]",3612.83,{},104662,1,Asia +2023-08-14,62326,9172,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",686.2,{},31397,1,Europe +2024-06-02,62327,4925,"[""Charger"", ""Wireless Mouse""]",4340.49,{},57718,1,Africa +2024-05-06,62328,9424,"[""Keyboard"", ""Wireless Mouse""]",1888.69,{},48675,0,Europe +2024-01-02,62329,5704,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3099.98,{},76949,0,Africa +2023-03-08,62330,1818,"[""Laptop""]",2608.84,"{"""": ""10%""}",298579,0,Asia +2023-09-10,62331,5187,"[""Keyboard"", ""Monitor"", ""Charger""]",4642.2,"{"""": ""29%""}",1932,0,Africa +2023-11-30,62332,4126,"[""Monitor"", ""Laptop"", ""Tablet""]",954.46,{},71232,0,North America +2024-11-26,62333,4212,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2853.7,"{""promo"": ""18%""}",63342,0,Europe +2024-04-18,62334,2532,"[""Headphones""]",1592.92,{},222725,0,North America +2023-10-16,62335,3973,"[""Wireless Mouse"", ""Monitor""]",1098.08,"{""loyalty"": ""30%""}",88597,1,Africa +2024-07-25,62336,8040,"[""Charger""]",285.27,{},282699,0,Asia +2023-03-16,62337,3239,"[""Charger"", ""Headphones""]",3994.9,"{""promo"": ""19%""}",66152,0,Africa +2024-10-12,62338,5909,"[""Wireless Mouse"", ""Tablet""]",2759.31,"{""loyalty"": ""28%""}",177203,1,North America +2024-06-17,62339,6784,"[""Headphones"", ""Phone""]",439.3,"{""loyalty"": ""22%""}",68209,1,North America +2024-05-11,62340,15,"[""Wireless Mouse"", ""Keyboard""]",2230.09,{},42374,0,North America +2024-11-15,62341,1533,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4291.83,{},255586,0,North America +2024-11-27,62342,2305,"[""Charger"", ""Laptop"", ""Headphones""]",3745.24,{},268763,1,Africa +2023-12-17,62343,7848,"[""Charger""]",801.39,{},248809,0,Asia +2024-03-14,62344,1126,"[""Keyboard"", ""Monitor"", ""Phone""]",3247.5,{},150428,0,Europe +2023-01-23,62345,3448,"[""Tablet""]",1613.73,{},10260,1,South America +2023-07-09,62346,574,"[""Laptop""]",3508.64,{},283152,1,Europe +2023-12-07,62347,1859,"[""Monitor"", ""Wireless Mouse""]",4335.48,"{"""": ""16%""}",82282,0,Africa +2024-07-12,62348,6045,"[""Laptop""]",3526.18,"{"""": ""18%""}",143625,0,Europe +2024-02-28,62349,8686,"[""Charger"", ""Tablet""]",957.88,{},33231,1,Europe +2023-02-04,62350,7419,"[""Laptop""]",2893.43,"{"""": ""28%""}",74841,0,Africa +2024-12-02,62351,2916,"[""Wireless Mouse""]",1810.65,{},200619,0,Asia +2023-08-17,62352,2332,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",233.0,"{"""": ""26%""}",123619,0,Europe +2023-05-01,62353,395,"[""Phone"", ""Headphones"", ""Tablet""]",851.09,"{"""": ""23%""}",223413,0,North America +2023-05-22,62354,6852,"[""Monitor""]",4660.62,"{""promo"": ""24%""}",154925,1,Africa +2023-06-11,62355,3252,"[""Wireless Mouse""]",154.25,"{""promo"": ""11%""}",175698,0,North America +2024-01-05,62356,3927,"[""Tablet""]",4571.2,{},292742,0,Europe +2023-10-19,62357,1556,"[""Charger""]",2009.82,"{""loyalty"": ""23%""}",12965,0,South America +2023-01-14,62358,7982,"[""Tablet"", ""Headphones"", ""Monitor""]",4478.95,"{""seasonal"": ""24%""}",78520,0,North America +2024-10-30,62359,643,"[""Headphones"", ""Laptop"", ""Phone""]",2757.1,{},51993,1,Africa +2023-03-30,62360,4002,"[""Monitor""]",4875.32,"{""loyalty"": ""6%""}",128521,0,Europe +2024-08-09,62361,5077,"[""Headphones"", ""Keyboard""]",3471.06,{},117444,0,North America +2023-01-25,62362,1398,"[""Headphones"", ""Monitor""]",2492.34,"{""seasonal"": ""8%""}",149471,0,South America +2024-09-20,62363,1268,"[""Charger"", ""Wireless Mouse""]",3699.98,"{""loyalty"": ""29%""}",94902,0,South America +2023-10-25,62364,1811,"[""Charger""]",1794.25,"{""loyalty"": ""10%""}",176924,1,North America +2023-01-29,62365,7830,"[""Monitor"", ""Wireless Mouse""]",3992.07,"{""loyalty"": ""21%""}",34212,1,Africa +2024-12-24,62366,2481,"[""Phone"", ""Headphones"", ""Laptop""]",4863.26,"{"""": ""5%""}",253979,1,Europe +2023-12-30,62367,479,"[""Wireless Mouse""]",3340.96,"{"""": ""16%""}",126425,0,South America +2024-04-02,62368,3202,"[""Tablet""]",1928.69,"{""promo"": ""23%""}",21555,1,Africa +2024-12-27,62369,4960,"[""Phone"", ""Laptop""]",4157.92,"{""promo"": ""16%""}",8732,1,South America +2024-05-07,62370,7622,"[""Tablet""]",4164.07,{},40541,1,Europe +2024-01-12,62371,663,"[""Laptop""]",2114.81,{},26207,0,Asia +2023-08-11,62372,1809,"[""Headphones"", ""Charger"", ""Phone""]",120.48,"{""seasonal"": ""15%""}",211127,0,Europe +2023-06-22,62373,8108,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4689.91,{},26540,0,North America +2023-04-26,62374,8066,"[""Wireless Mouse"", ""Headphones""]",3371.66,{},126611,1,North America +2024-05-27,62375,8409,"[""Laptop""]",4763.59,{},4449,0,Europe +2023-10-31,62376,7429,"[""Charger"", ""Phone""]",1368.18,{},49246,1,Europe +2023-07-24,62377,1349,"[""Wireless Mouse"", ""Keyboard""]",59.17,{},148411,1,Europe +2024-04-17,62378,4393,"[""Keyboard"", ""Laptop""]",958.21,{},241664,1,Europe +2024-06-07,62379,9580,"[""Monitor"", ""Keyboard"", ""Laptop""]",2673.52,"{"""": ""15%""}",134701,0,South America +2023-07-06,62380,4130,"[""Keyboard"", ""Laptop"", ""Monitor""]",4837.37,"{"""": ""8%""}",181884,1,South America +2024-07-03,62381,9645,"[""Keyboard"", ""Phone""]",201.74,{},93991,1,Asia +2023-03-17,62382,5599,"[""Wireless Mouse"", ""Monitor""]",2848.12,"{""seasonal"": ""12%""}",165244,0,Africa +2023-02-28,62383,7910,"[""Keyboard""]",2719.89,"{""promo"": ""21%""}",252295,0,Europe +2023-06-20,62384,1472,"[""Wireless Mouse""]",1714.38,"{""seasonal"": ""5%""}",139117,0,North America +2024-06-28,62385,9104,"[""Laptop""]",4318.33,{},116239,1,Africa +2023-03-10,62386,4756,"[""Charger""]",1495.21,{},34267,1,Africa +2023-06-27,62387,5234,"[""Headphones"", ""Tablet""]",3163.82,"{""seasonal"": ""25%""}",272808,1,South America +2024-08-21,62388,5451,"[""Laptop"", ""Keyboard"", ""Phone""]",2596.25,"{""seasonal"": ""8%""}",47229,1,Africa +2024-07-05,62389,6252,"[""Monitor"", ""Tablet"", ""Charger""]",967.68,{},46677,1,Asia +2023-07-18,62390,7547,"[""Tablet""]",4920.41,{},165012,0,South America +2024-09-24,62391,6610,"[""Keyboard""]",3262.61,"{""promo"": ""22%""}",29140,0,North America +2024-10-28,62392,6715,"[""Headphones"", ""Phone"", ""Charger""]",3047.09,"{""seasonal"": ""11%""}",94751,0,Asia +2024-06-15,62393,9378,"[""Tablet"", ""Charger""]",392.11,{},205549,0,Asia +2024-01-22,62394,431,"[""Tablet"", ""Laptop""]",4061.47,"{""loyalty"": ""18%""}",18308,1,Africa +2023-09-09,62395,8137,"[""Keyboard"", ""Tablet""]",3735.48,{},72000,1,North America +2024-03-24,62396,1568,"[""Phone"", ""Wireless Mouse""]",3154.17,"{""promo"": ""24%""}",15856,1,Europe +2024-03-05,62397,2004,"[""Wireless Mouse"", ""Tablet""]",963.32,"{""promo"": ""26%""}",58911,0,Africa +2024-12-09,62398,4326,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",483.85,"{""promo"": ""21%""}",190206,1,Africa +2023-05-09,62399,7152,"[""Keyboard""]",818.09,"{""loyalty"": ""23%""}",223234,1,Africa +2024-03-07,62400,8859,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2631.39,"{""loyalty"": ""19%""}",254360,0,South America +2024-02-19,62401,8228,"[""Headphones""]",4858.73,"{""loyalty"": ""6%""}",104957,0,Africa +2024-01-07,62402,21,"[""Headphones"", ""Keyboard""]",4683.08,"{""promo"": ""13%""}",284887,0,North America +2024-02-25,62403,5411,"[""Laptop"", ""Charger""]",4333.42,"{"""": ""8%""}",195366,1,Asia +2023-11-21,62404,6907,"[""Wireless Mouse"", ""Phone""]",2001.08,{},152158,0,Europe +2024-02-01,62405,2159,"[""Headphones"", ""Tablet""]",2352.64,{},294320,1,Africa +2024-06-18,62406,5283,"[""Charger"", ""Keyboard""]",1693.9,"{""seasonal"": ""9%""}",177736,0,Europe +2023-11-09,62407,2389,"[""Monitor""]",4849.33,"{"""": ""7%""}",261586,0,Europe +2023-02-20,62408,4100,"[""Charger"", ""Headphones""]",934.99,"{""promo"": ""30%""}",211690,1,Europe +2024-01-05,62409,7013,"[""Keyboard""]",2224.0,"{""seasonal"": ""24%""}",163212,0,North America +2024-04-27,62410,6530,"[""Tablet"", ""Laptop""]",1268.82,{},105585,0,Africa +2023-04-10,62411,2514,"[""Monitor""]",1453.4,{},104258,0,Africa +2023-02-01,62412,1892,"[""Wireless Mouse"", ""Laptop""]",525.48,{},283217,1,Africa +2023-04-16,62413,4192,"[""Wireless Mouse""]",4546.39,"{"""": ""24%""}",247537,0,Africa +2023-09-07,62414,4389,"[""Keyboard""]",4252.14,{},209442,0,Asia +2024-05-04,62415,1458,"[""Headphones"", ""Monitor""]",1769.87,"{"""": ""10%""}",37127,1,South America +2023-09-17,62416,2467,"[""Tablet""]",4210.36,"{""promo"": ""14%""}",135815,0,Europe +2024-08-05,62417,8856,"[""Monitor"", ""Phone""]",2516.55,{},41709,0,North America +2023-11-16,62418,6325,"[""Phone""]",1821.06,{},182138,1,South America +2024-12-16,62419,2854,"[""Charger""]",4042.49,{},272163,0,Europe +2023-01-26,62420,5087,"[""Laptop""]",1753.37,{},167086,1,Asia +2023-07-26,62421,1466,"[""Tablet""]",1523.2,{},108046,0,South America +2024-07-21,62422,1446,"[""Tablet"", ""Phone""]",225.83,"{""seasonal"": ""25%""}",268008,1,Asia +2023-05-31,62423,1518,"[""Tablet"", ""Headphones""]",2332.33,{},289300,1,South America +2024-07-15,62424,6574,"[""Charger"", ""Headphones""]",4243.14,{},289995,1,North America +2024-02-14,62425,6860,"[""Wireless Mouse""]",3996.99,"{""promo"": ""24%""}",269380,1,Europe +2023-10-17,62426,9141,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",409.72,"{"""": ""14%""}",270915,0,Asia +2024-12-29,62427,5016,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",375.94,{},267604,0,Africa +2023-05-26,62428,4223,"[""Charger"", ""Monitor"", ""Phone""]",1894.67,{},265746,0,South America +2023-01-18,62429,2793,"[""Headphones"", ""Charger""]",1677.52,{},148762,1,North America +2024-01-28,62430,2064,"[""Laptop""]",3265.86,{},127148,0,North America +2024-10-05,62431,9942,"[""Keyboard""]",4482.67,{},131660,1,Asia +2023-06-01,62432,4267,"[""Tablet""]",2067.68,"{""seasonal"": ""16%""}",265341,0,Asia +2024-08-20,62433,1816,"[""Keyboard""]",3080.3,{},195486,1,Asia +2023-01-28,62434,5513,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4330.32,{},6399,1,Europe +2024-08-24,62435,7460,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4509.78,"{""loyalty"": ""6%""}",213145,0,South America +2024-08-28,62436,7355,"[""Monitor"", ""Charger"", ""Keyboard""]",824.65,{},126639,1,North America +2024-02-29,62437,5890,"[""Headphones"", ""Tablet"", ""Monitor""]",323.53,{},104812,0,Europe +2024-06-07,62438,6137,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4284.52,{},297529,0,Asia +2024-12-11,62439,5104,"[""Phone""]",4399.49,{},273160,1,Africa +2023-12-26,62440,5495,"[""Charger""]",4925.46,{},75570,0,Europe +2023-10-04,62441,4983,"[""Headphones"", ""Tablet""]",3107.06,{},235440,0,North America +2024-08-20,62442,1953,"[""Charger"", ""Monitor"", ""Keyboard""]",4880.87,"{""seasonal"": ""23%""}",86397,0,Asia +2024-09-23,62443,3084,"[""Headphones""]",3981.69,{},131772,0,Asia +2023-07-10,62444,2895,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",149.71,"{""promo"": ""9%""}",266123,0,South America +2023-07-07,62445,3061,"[""Monitor"", ""Phone"", ""Charger""]",79.39,"{"""": ""17%""}",218999,1,Africa +2024-10-24,62446,6460,"[""Laptop"", ""Monitor"", ""Phone""]",1166.97,"{""promo"": ""16%""}",106617,0,Europe +2023-11-19,62447,5520,"[""Monitor""]",4616.03,{},270147,1,South America +2023-09-21,62448,5449,"[""Monitor"", ""Laptop"", ""Headphones""]",2203.33,"{"""": ""9%""}",166699,0,Asia +2023-07-06,62449,2200,"[""Tablet""]",4331.17,"{""loyalty"": ""18%""}",153188,1,Asia +2023-01-12,62450,1805,"[""Phone"", ""Monitor"", ""Charger""]",4195.32,{},125363,1,Asia +2023-01-02,62451,4197,"[""Wireless Mouse""]",4697.56,{},268056,0,North America +2024-12-14,62452,990,"[""Monitor"", ""Laptop""]",2145.11,{},251545,1,North America +2024-04-24,62453,2721,"[""Headphones"", ""Monitor""]",1331.73,"{""loyalty"": ""9%""}",121107,0,Africa +2024-05-05,62454,7905,"[""Keyboard"", ""Monitor""]",3131.9,{},120255,1,Asia +2024-12-10,62455,1127,"[""Tablet"", ""Headphones""]",4790.55,{},74849,0,North America +2024-08-01,62456,3758,"[""Charger"", ""Phone"", ""Laptop""]",2653.25,"{""promo"": ""15%""}",293139,0,Europe +2024-08-17,62457,8151,"[""Phone""]",270.8,{},86254,1,Africa +2023-06-06,62458,3774,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",656.14,{},21466,1,Asia +2023-05-24,62459,1247,"[""Charger"", ""Tablet"", ""Keyboard""]",1723.82,"{"""": ""30%""}",107224,1,North America +2024-05-18,62460,2943,"[""Phone"", ""Charger""]",4799.12,{},215701,1,South America +2024-01-26,62461,710,"[""Tablet""]",3960.96,{},294969,0,Asia +2023-12-31,62462,1375,"[""Phone""]",2896.2,"{""promo"": ""5%""}",131219,1,North America +2024-01-28,62463,7442,"[""Monitor"", ""Phone""]",3427.53,"{""promo"": ""27%""}",188713,1,Europe +2024-01-25,62464,6966,"[""Wireless Mouse""]",4107.48,{},17859,1,Africa +2024-11-24,62465,7347,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3269.06,"{""loyalty"": ""28%""}",129406,0,Africa +2024-12-26,62466,130,"[""Laptop"", ""Keyboard""]",579.62,"{""seasonal"": ""23%""}",92813,1,Asia +2024-05-24,62467,930,"[""Headphones"", ""Phone""]",2588.91,{},101029,1,Africa +2024-04-14,62468,5373,"[""Monitor""]",2704.87,"{""seasonal"": ""16%""}",283191,1,Asia +2024-04-13,62469,7450,"[""Keyboard"", ""Phone"", ""Laptop""]",3813.48,"{""loyalty"": ""23%""}",96871,1,North America +2023-10-18,62470,545,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1496.27,{},52993,1,South America +2024-01-11,62471,5591,"[""Tablet"", ""Wireless Mouse""]",1730.63,"{""loyalty"": ""9%""}",146009,1,Africa +2024-08-10,62472,1681,"[""Phone"", ""Monitor"", ""Keyboard""]",964.53,"{""loyalty"": ""12%""}",91952,0,North America +2023-11-13,62473,4623,"[""Keyboard""]",4808.25,"{""seasonal"": ""13%""}",72534,0,South America +2023-04-11,62474,634,"[""Phone""]",4814.68,"{""promo"": ""21%""}",138468,1,South America +2024-11-14,62475,9725,"[""Keyboard"", ""Headphones""]",1762.19,"{""loyalty"": ""16%""}",129154,1,Asia +2024-10-27,62476,9260,"[""Keyboard""]",504.83,"{""loyalty"": ""14%""}",275384,0,Africa +2023-06-02,62477,3848,"[""Phone"", ""Headphones""]",3705.33,{},61744,1,Asia +2023-10-25,62478,4318,"[""Monitor""]",389.78,"{""promo"": ""11%""}",59116,1,Europe +2023-11-13,62479,3739,"[""Keyboard"", ""Headphones"", ""Phone""]",649.45,{},269950,1,North America +2024-12-10,62480,6493,"[""Laptop"", ""Keyboard"", ""Phone""]",3272.85,{},213611,1,South America +2023-08-07,62481,2739,"[""Phone""]",186.65,"{"""": ""19%""}",104524,0,Europe +2023-06-21,62482,3751,"[""Laptop"", ""Monitor"", ""Keyboard""]",3016.4,"{""seasonal"": ""20%""}",236929,1,North America +2024-10-05,62483,4696,"[""Monitor"", ""Wireless Mouse""]",3919.87,"{""loyalty"": ""24%""}",150339,0,Europe +2023-10-21,62484,492,"[""Wireless Mouse"", ""Phone""]",4122.3,"{""loyalty"": ""30%""}",147371,1,Africa +2023-03-13,62485,5090,"[""Laptop""]",196.82,{},132335,1,Europe +2023-04-13,62486,7841,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",420.19,"{""promo"": ""6%""}",76871,0,Europe +2024-06-05,62487,9193,"[""Keyboard""]",3065.02,"{""seasonal"": ""30%""}",191722,1,South America +2023-04-13,62488,2516,"[""Monitor"", ""Phone""]",3608.51,"{"""": ""11%""}",193528,1,Europe +2023-03-13,62489,4441,"[""Phone"", ""Tablet"", ""Charger""]",3544.29,"{"""": ""7%""}",209033,0,South America +2024-08-22,62490,8266,"[""Keyboard"", ""Wireless Mouse""]",4751.97,"{""loyalty"": ""16%""}",94041,1,Europe +2023-12-05,62491,3928,"[""Headphones"", ""Charger"", ""Monitor""]",2215.8,{},50746,0,Asia +2024-01-22,62492,3390,"[""Keyboard""]",4128.93,{},99917,0,Europe +2024-12-07,62493,7009,"[""Laptop"", ""Monitor""]",1778.09,"{""loyalty"": ""5%""}",275107,1,Asia +2024-06-17,62494,8413,"[""Phone""]",3407.4,"{""seasonal"": ""16%""}",268730,0,Asia +2023-05-24,62495,2934,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1519.52,"{""seasonal"": ""12%""}",201617,1,Asia +2023-01-09,62496,7704,"[""Charger"", ""Phone"", ""Tablet""]",917.18,{},197359,1,Asia +2024-06-13,62497,6283,"[""Wireless Mouse"", ""Laptop""]",4708.1,"{"""": ""15%""}",86025,0,North America +2023-04-16,62498,9879,"[""Headphones""]",1198.7,"{""promo"": ""26%""}",162717,0,Asia +2024-09-13,62499,9093,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1655.06,"{""loyalty"": ""28%""}",111434,0,North America +2023-01-29,62500,174,"[""Tablet"", ""Monitor""]",2649.56,{},196631,0,Asia +2024-09-27,62501,1324,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3319.4,"{""seasonal"": ""22%""}",269848,1,Asia +2024-07-30,62502,9620,"[""Keyboard"", ""Phone"", ""Tablet""]",229.01,"{"""": ""29%""}",234763,1,Africa +2023-11-05,62503,4607,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4497.55,"{""loyalty"": ""26%""}",138095,0,Europe +2023-07-26,62504,6873,"[""Headphones""]",3925.23,"{""promo"": ""13%""}",236954,1,Africa +2023-03-13,62505,4863,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4279.95,{},34766,1,South America +2024-11-24,62506,4482,"[""Headphones"", ""Charger""]",411.39,"{""loyalty"": ""21%""}",1500,0,Asia +2023-10-17,62507,828,"[""Tablet""]",4262.04,"{""loyalty"": ""30%""}",99328,1,Asia +2023-08-07,62508,7206,"[""Charger""]",3699.69,{},91098,0,Asia +2024-08-01,62509,3731,"[""Charger"", ""Headphones"", ""Monitor""]",520.14,"{""seasonal"": ""29%""}",19370,1,North America +2023-12-02,62510,9773,"[""Monitor""]",4189.21,{},236587,0,Europe +2024-04-08,62511,6508,"[""Headphones""]",350.72,{},96936,1,Europe +2023-08-23,62512,8928,"[""Headphones"", ""Charger""]",1277.36,{},292451,0,Asia +2024-11-19,62513,2003,"[""Keyboard""]",1830.9,"{"""": ""9%""}",196981,1,Africa +2023-08-22,62514,6736,"[""Phone""]",958.28,"{"""": ""28%""}",102865,0,Asia +2023-04-26,62515,2214,"[""Laptop"", ""Monitor""]",2871.46,{},34405,1,Africa +2024-10-04,62516,3518,"[""Tablet"", ""Keyboard""]",4434.28,"{""seasonal"": ""18%""}",81581,1,Europe +2023-05-08,62517,5627,"[""Monitor"", ""Headphones""]",3555.85,"{""loyalty"": ""17%""}",27081,0,North America +2023-03-13,62518,182,"[""Laptop""]",2761.31,{},178222,0,Asia +2023-09-21,62519,2663,"[""Headphones"", ""Monitor""]",3075.14,"{""loyalty"": ""10%""}",103818,1,North America +2023-03-24,62520,6882,"[""Wireless Mouse""]",513.82,{},121564,0,Africa +2024-02-17,62521,8526,"[""Phone"", ""Tablet""]",1198.91,{},164467,1,Asia +2024-02-20,62522,1493,"[""Monitor""]",913.43,"{""seasonal"": ""19%""}",61390,0,Africa +2023-02-01,62523,4891,"[""Tablet"", ""Laptop"", ""Charger""]",151.27,{},58151,0,Asia +2024-04-06,62524,4358,"[""Keyboard"", ""Phone""]",108.3,{},99193,0,Asia +2023-04-27,62525,2004,"[""Headphones"", ""Monitor""]",3243.27,{},275319,0,Europe +2024-06-07,62526,2295,"[""Monitor"", ""Wireless Mouse""]",563.98,{},61292,0,Africa +2023-11-29,62527,7881,"[""Tablet"", ""Charger""]",1311.92,"{"""": ""17%""}",79543,0,Africa +2023-08-12,62528,7713,"[""Keyboard""]",2581.58,{},146669,1,Asia +2023-12-07,62529,6719,"[""Headphones""]",1279.14,{},28123,0,Asia +2024-11-19,62530,5422,"[""Keyboard"", ""Laptop"", ""Phone""]",3445.38,{},73866,1,Asia +2023-02-15,62531,1233,"[""Phone"", ""Laptop"", ""Headphones""]",2377.5,{},260748,1,South America +2024-01-14,62532,7808,"[""Charger"", ""Phone"", ""Headphones""]",2576.0,{},150995,1,Africa +2023-10-23,62533,7825,"[""Keyboard""]",3400.89,{},87905,0,North America +2023-04-29,62534,5194,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2506.9,{},249536,1,Europe +2024-02-13,62535,9472,"[""Headphones"", ""Laptop""]",809.04,{},126313,1,Africa +2023-01-14,62536,3001,"[""Laptop"", ""Keyboard""]",4100.62,{},260927,1,Asia +2024-06-15,62537,9803,"[""Charger"", ""Tablet""]",4098.32,{},26991,0,Asia +2023-05-06,62538,4107,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1662.59,{},110172,1,North America +2023-02-06,62539,5020,"[""Phone"", ""Keyboard""]",465.79,{},118495,0,South America +2024-11-22,62540,5121,"[""Tablet""]",1457.12,{},8271,0,North America +2023-10-19,62541,4675,"[""Laptop"", ""Monitor""]",1929.4,{},242756,1,Europe +2024-03-26,62542,6287,"[""Phone"", ""Laptop"", ""Headphones""]",995.1,{},213102,1,Africa +2024-05-15,62543,9349,"[""Keyboard""]",2790.72,{},114448,0,Africa +2024-02-03,62544,3538,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2621.39,{},239864,0,Africa +2024-08-14,62545,3001,"[""Laptop""]",1865.15,"{"""": ""18%""}",135922,0,Asia +2024-03-02,62546,4305,"[""Keyboard"", ""Phone""]",2042.64,{},296391,1,Africa +2024-11-02,62547,2371,"[""Charger"", ""Tablet"", ""Keyboard""]",513.81,"{"""": ""29%""}",146256,1,South America +2024-12-11,62548,2528,"[""Charger""]",1150.98,{},112548,0,North America +2024-11-17,62549,4583,"[""Tablet"", ""Wireless Mouse""]",3100.55,{},48737,0,North America +2024-03-28,62550,1351,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4926.8,{},101836,1,Europe +2023-08-12,62551,7727,"[""Charger"", ""Laptop"", ""Monitor""]",1921.23,"{"""": ""13%""}",141355,0,Europe +2023-07-26,62552,3119,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3363.38,"{"""": ""22%""}",35416,1,Asia +2023-03-28,62553,1095,"[""Tablet"", ""Headphones"", ""Keyboard""]",1602.32,"{""promo"": ""13%""}",170207,0,South America +2024-01-07,62554,9895,"[""Wireless Mouse""]",1625.01,{},100192,0,Europe +2023-03-03,62555,6987,"[""Phone"", ""Wireless Mouse""]",3400.47,"{""promo"": ""30%""}",19933,1,Europe +2023-06-15,62556,5872,"[""Laptop""]",1257.13,"{""seasonal"": ""15%""}",254685,1,Asia +2024-05-24,62557,5399,"[""Tablet"", ""Charger""]",3150.38,{},120383,0,Asia +2024-12-06,62558,3059,"[""Phone"", ""Laptop""]",1760.39,{},201430,0,Africa +2024-04-18,62559,9616,"[""Monitor"", ""Charger"", ""Laptop""]",4016.71,{},93855,0,North America +2024-06-09,62560,5776,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4379.7,"{""promo"": ""30%""}",44763,0,South America +2024-08-28,62561,3956,"[""Wireless Mouse"", ""Phone""]",2808.23,{},109806,0,Africa +2023-07-15,62562,8325,"[""Tablet""]",498.19,"{""loyalty"": ""30%""}",99940,1,Asia +2024-10-24,62563,9124,"[""Laptop""]",3509.64,{},120095,0,Africa +2024-04-02,62564,270,"[""Tablet""]",2064.02,{},126045,1,Africa +2023-11-27,62565,1289,"[""Monitor"", ""Tablet"", ""Keyboard""]",67.74,"{""promo"": ""19%""}",138169,1,South America +2024-01-11,62566,3942,"[""Monitor""]",4681.33,"{""loyalty"": ""7%""}",252508,0,Europe +2023-12-29,62567,5212,"[""Tablet""]",2248.16,{},40401,0,South America +2023-09-20,62568,6147,"[""Tablet""]",196.0,"{""promo"": ""11%""}",145409,1,Africa +2023-01-26,62569,3565,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2006.81,{},173069,0,Africa +2023-01-27,62570,8391,"[""Monitor""]",4927.34,"{""loyalty"": ""9%""}",24513,0,Asia +2024-03-17,62571,560,"[""Charger""]",428.25,{},126368,1,Africa +2023-11-16,62572,1548,"[""Monitor""]",778.08,"{"""": ""7%""}",158199,0,Europe +2023-12-04,62573,883,"[""Headphones"", ""Tablet"", ""Monitor""]",4703.57,"{""promo"": ""13%""}",77983,1,Africa +2024-01-08,62574,4023,"[""Keyboard"", ""Tablet"", ""Monitor""]",2540.71,"{"""": ""7%""}",12724,1,South America +2024-08-28,62575,7275,"[""Phone"", ""Keyboard"", ""Charger""]",3527.79,"{"""": ""23%""}",173439,0,Europe +2023-01-12,62576,6615,"[""Phone"", ""Monitor"", ""Tablet""]",243.7,{},62602,0,North America +2023-02-12,62577,7977,"[""Keyboard""]",161.5,{},196732,1,South America +2023-11-19,62578,5989,"[""Tablet"", ""Charger""]",3291.7,{},233746,0,North America +2024-12-25,62579,8643,"[""Wireless Mouse"", ""Keyboard""]",122.55,"{""loyalty"": ""22%""}",75975,0,Africa +2024-11-04,62580,5628,"[""Keyboard"", ""Charger""]",2039.36,"{"""": ""6%""}",222769,1,Europe +2023-05-10,62581,8554,"[""Wireless Mouse""]",4171.58,{},299633,1,South America +2024-01-31,62582,6560,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1923.94,"{"""": ""14%""}",76953,1,Asia +2023-11-19,62583,9527,"[""Charger"", ""Keyboard""]",3807.87,{},52972,1,Asia +2023-09-16,62584,4949,"[""Keyboard"", ""Laptop""]",4529.08,{},39215,1,Europe +2024-12-09,62585,8860,"[""Monitor"", ""Keyboard"", ""Charger""]",1959.56,{},276500,1,South America +2024-08-20,62586,5349,"[""Phone"", ""Tablet""]",4053.92,{},128013,1,South America +2024-11-10,62587,4098,"[""Keyboard""]",4614.43,"{"""": ""12%""}",105541,0,North America +2024-08-08,62588,1440,"[""Charger"", ""Laptop"", ""Headphones""]",2251.26,{},182509,0,Europe +2023-02-12,62589,2458,"[""Laptop"", ""Phone""]",4236.03,{},123770,1,Europe +2023-10-06,62590,1712,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3347.54,"{""loyalty"": ""14%""}",5659,1,South America +2023-11-26,62591,8906,"[""Keyboard"", ""Phone""]",2856.42,{},130755,1,Africa +2024-04-29,62592,5402,"[""Laptop""]",3392.86,"{""loyalty"": ""30%""}",6852,1,Africa +2023-09-25,62593,8818,"[""Laptop""]",139.47,"{""promo"": ""20%""}",116208,1,South America +2024-08-26,62594,4769,"[""Wireless Mouse"", ""Charger""]",1419.72,"{"""": ""24%""}",130612,0,North America +2023-07-10,62595,4567,"[""Laptop"", ""Monitor"", ""Phone""]",3927.29,"{""seasonal"": ""17%""}",16250,0,Asia +2023-09-06,62596,5209,"[""Charger""]",4244.11,"{""seasonal"": ""19%""}",240789,1,South America +2023-11-09,62597,8733,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1814.33,{},116560,1,Africa +2023-05-17,62598,8649,"[""Headphones"", ""Laptop"", ""Keyboard""]",4552.62,{},104353,0,North America +2023-03-30,62599,2015,"[""Tablet"", ""Monitor"", ""Charger""]",4530.23,{},57795,1,North America +2024-07-01,62600,7753,"[""Tablet""]",1283.53,"{"""": ""28%""}",274150,0,North America +2023-02-09,62601,2545,"[""Headphones"", ""Laptop"", ""Tablet""]",1293.94,{},272336,0,South America +2023-08-21,62602,2495,"[""Monitor"", ""Tablet""]",650.51,{},288857,1,South America +2023-12-17,62603,3331,"[""Tablet"", ""Phone""]",1365.29,{},59230,0,Asia +2023-12-01,62604,5842,"[""Phone""]",655.48,"{""seasonal"": ""12%""}",128157,1,Europe +2023-06-11,62605,8030,"[""Tablet"", ""Keyboard""]",1755.78,{},132879,0,North America +2024-01-08,62606,6792,"[""Charger""]",3802.45,{},72162,1,North America +2024-11-20,62607,3513,"[""Monitor"", ""Laptop""]",2330.46,"{"""": ""29%""}",118390,0,Africa +2023-12-09,62608,8806,"[""Phone"", ""Laptop"", ""Tablet""]",3742.32,{},298705,1,North America +2024-03-29,62609,9953,"[""Charger""]",2398.35,"{"""": ""6%""}",6507,0,Africa +2024-03-03,62610,9078,"[""Phone"", ""Monitor""]",3087.63,{},214410,0,Africa +2024-03-25,62611,2132,"[""Tablet"", ""Headphones"", ""Phone""]",1723.98,{},68726,1,North America +2024-04-27,62612,1827,"[""Phone"", ""Charger"", ""Laptop""]",2122.0,{},22787,0,Africa +2024-04-29,62613,7484,"[""Phone"", ""Headphones"", ""Charger""]",3114.77,"{""promo"": ""20%""}",180116,1,Asia +2024-08-28,62614,2744,"[""Tablet""]",599.48,{},14076,0,North America +2023-09-12,62615,497,"[""Charger""]",2992.0,"{""seasonal"": ""10%""}",85933,1,Asia +2024-05-01,62616,7794,"[""Monitor"", ""Phone"", ""Keyboard""]",3748.35,"{""promo"": ""23%""}",105559,0,Africa +2023-04-22,62617,4273,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1500.44,{},135930,0,Africa +2024-05-10,62618,3462,"[""Wireless Mouse"", ""Laptop""]",3922.01,"{"""": ""11%""}",103589,1,Asia +2024-12-24,62619,3735,"[""Phone""]",528.34,{},237805,0,Africa +2023-02-18,62620,1366,"[""Charger"", ""Laptop"", ""Tablet""]",1280.85,{},30352,1,North America +2024-09-15,62621,9713,"[""Phone"", ""Laptop""]",884.97,{},62926,0,Europe +2023-06-06,62622,8175,"[""Keyboard"", ""Monitor""]",693.51,{},197741,1,Europe +2024-01-30,62623,2437,"[""Monitor"", ""Phone"", ""Keyboard""]",4040.32,{},67684,0,Asia +2023-10-16,62624,5657,"[""Phone"", ""Charger"", ""Keyboard""]",4118.08,"{"""": ""14%""}",292216,1,Europe +2024-04-06,62625,8610,"[""Charger"", ""Wireless Mouse""]",1513.3,"{""seasonal"": ""21%""}",71117,1,North America +2023-06-14,62626,2223,"[""Keyboard"", ""Monitor"", ""Phone""]",322.89,"{""seasonal"": ""22%""}",204352,1,Africa +2023-03-20,62627,8279,"[""Monitor"", ""Laptop""]",901.04,{},194165,1,North America +2023-09-19,62628,4846,"[""Monitor"", ""Tablet"", ""Phone""]",4117.15,"{""seasonal"": ""17%""}",203455,0,South America +2023-12-12,62629,4090,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1721.2,{},16014,0,South America +2024-06-13,62630,6744,"[""Headphones""]",1626.43,{},237743,0,Europe +2023-04-27,62631,466,"[""Keyboard"", ""Laptop""]",4670.11,"{""loyalty"": ""14%""}",232489,0,South America +2024-08-07,62632,6371,"[""Keyboard""]",4695.37,"{""seasonal"": ""26%""}",105590,0,South America +2023-09-29,62633,5565,"[""Laptop"", ""Charger""]",1424.56,{},43586,1,Asia +2023-03-19,62634,7974,"[""Monitor"", ""Charger"", ""Tablet""]",2528.48,"{"""": ""5%""}",220606,0,Africa +2024-09-17,62635,3216,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4908.9,{},115444,1,North America +2024-02-29,62636,5212,"[""Monitor"", ""Charger"", ""Phone""]",4345.17,"{"""": ""16%""}",213828,1,North America +2023-12-23,62637,5939,"[""Laptop"", ""Keyboard""]",4946.56,"{""loyalty"": ""21%""}",168553,1,South America +2024-12-05,62638,2493,"[""Tablet""]",2444.07,{},242614,0,South America +2024-11-18,62639,1883,"[""Keyboard"", ""Wireless Mouse""]",1488.03,"{""loyalty"": ""24%""}",284552,1,North America +2023-05-28,62640,9950,"[""Phone""]",3727.82,"{"""": ""5%""}",21055,0,Europe +2023-05-18,62641,2411,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3356.66,"{""seasonal"": ""9%""}",110579,1,Asia +2023-09-15,62642,9247,"[""Headphones"", ""Charger""]",2127.89,{},7964,0,North America +2024-08-25,62643,2568,"[""Wireless Mouse""]",2708.3,"{""seasonal"": ""15%""}",90994,0,South America +2024-02-22,62644,7598,"[""Tablet""]",3471.73,"{""loyalty"": ""24%""}",38958,0,North America +2023-12-28,62645,360,"[""Phone"", ""Tablet""]",4038.74,{},65265,0,Europe +2024-10-26,62646,584,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1763.24,{},268591,1,Europe +2023-02-20,62647,5856,"[""Tablet"", ""Charger"", ""Headphones""]",3838.72,"{""seasonal"": ""18%""}",153606,0,North America +2023-08-22,62648,2011,"[""Laptop"", ""Phone"", ""Keyboard""]",4378.01,"{""promo"": ""5%""}",266677,1,North America +2023-05-30,62649,9389,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2679.43,{},109057,1,North America +2023-04-17,62650,263,"[""Phone"", ""Monitor""]",1254.29,"{""seasonal"": ""21%""}",78756,0,South America +2023-01-27,62651,74,"[""Laptop"", ""Phone"", ""Keyboard""]",1654.84,{},45713,1,North America +2023-12-31,62652,4466,"[""Charger""]",4999.57,"{""seasonal"": ""28%""}",116680,1,Africa +2024-10-18,62653,3113,"[""Wireless Mouse"", ""Tablet""]",312.84,"{""loyalty"": ""25%""}",222512,1,Asia +2024-09-21,62654,7559,"[""Wireless Mouse"", ""Phone""]",333.17,{},48159,1,Asia +2023-07-23,62655,6346,"[""Laptop"", ""Phone"", ""Charger""]",2607.13,{},35594,1,Africa +2024-03-02,62656,708,"[""Keyboard""]",4214.57,"{""seasonal"": ""29%""}",296388,0,Asia +2024-11-01,62657,7505,"[""Headphones"", ""Charger""]",1689.65,"{"""": ""5%""}",295827,0,Africa +2023-04-17,62658,5245,"[""Phone""]",3275.64,"{"""": ""28%""}",132228,0,South America +2024-12-23,62659,2563,"[""Headphones"", ""Phone""]",3969.16,{},228550,1,Asia +2024-04-23,62660,9137,"[""Laptop"", ""Keyboard""]",4718.29,"{""promo"": ""9%""}",40315,0,Europe +2023-10-07,62661,5172,"[""Keyboard""]",1182.66,{},48492,0,Europe +2023-11-11,62662,9260,"[""Laptop""]",3546.64,{},131710,0,South America +2024-02-14,62663,5679,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4537.03,{},255195,0,North America +2024-10-30,62664,7926,"[""Headphones"", ""Wireless Mouse""]",4676.78,"{""promo"": ""27%""}",286740,0,Asia +2024-01-18,62665,1366,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",481.44,{},150444,0,Europe +2024-08-17,62666,1812,"[""Laptop""]",4733.23,"{""promo"": ""9%""}",107510,1,North America +2023-06-10,62667,3728,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2673.29,{},173639,0,North America +2023-03-10,62668,2683,"[""Charger"", ""Tablet"", ""Monitor""]",2465.6,{},268148,0,North America +2024-01-08,62669,3097,"[""Tablet"", ""Laptop"", ""Monitor""]",186.71,{},279715,1,Europe +2023-03-22,62670,8727,"[""Charger"", ""Keyboard"", ""Phone""]",2683.19,"{""seasonal"": ""13%""}",113756,1,North America +2024-09-15,62671,8433,"[""Laptop"", ""Headphones""]",1318.57,{},86606,1,Africa +2023-09-17,62672,4139,"[""Laptop"", ""Tablet""]",4036.82,"{"""": ""12%""}",179506,1,Europe +2024-09-13,62673,1182,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",71.04,{},94835,0,North America +2024-06-22,62674,6619,"[""Laptop"", ""Monitor"", ""Headphones""]",2322.82,"{""loyalty"": ""25%""}",176589,1,South America +2023-11-14,62675,5042,"[""Headphones""]",1350.49,{},63300,1,Europe +2023-02-07,62676,161,"[""Phone"", ""Laptop"", ""Monitor""]",3264.92,{},196631,0,Europe +2024-12-22,62677,3585,"[""Laptop"", ""Headphones"", ""Monitor""]",1971.96,"{""seasonal"": ""22%""}",114529,0,North America +2023-06-07,62678,3084,"[""Tablet"", ""Monitor""]",2095.52,{},231363,0,Europe +2024-12-25,62679,1136,"[""Laptop""]",4870.07,"{""seasonal"": ""27%""}",193831,0,South America +2024-12-31,62680,5117,"[""Monitor"", ""Laptop""]",4415.48,"{"""": ""27%""}",271718,1,South America +2024-12-26,62681,501,"[""Laptop"", ""Charger"", ""Phone""]",3092.18,"{""seasonal"": ""21%""}",42081,0,Europe +2023-10-14,62682,1184,"[""Wireless Mouse"", ""Tablet""]",4929.87,"{""promo"": ""15%""}",184389,1,South America +2024-09-23,62683,9035,"[""Phone"", ""Charger""]",2387.92,"{""seasonal"": ""28%""}",118295,1,South America +2024-01-19,62684,3063,"[""Tablet"", ""Monitor""]",793.04,"{""loyalty"": ""6%""}",67510,0,Europe +2023-11-16,62685,6981,"[""Monitor"", ""Wireless Mouse""]",4830.38,"{"""": ""9%""}",164455,0,Europe +2023-04-07,62686,3272,"[""Phone"", ""Keyboard"", ""Charger""]",1262.94,"{""loyalty"": ""12%""}",204887,0,Africa +2024-05-16,62687,956,"[""Laptop"", ""Phone"", ""Keyboard""]",574.36,{},236360,0,North America +2024-03-05,62688,5512,"[""Laptop"", ""Monitor""]",728.42,{},159031,1,Asia +2024-06-16,62689,9504,"[""Wireless Mouse""]",4239.53,{},200109,0,Europe +2023-03-28,62690,3713,"[""Keyboard"", ""Tablet""]",2333.82,{},220779,1,North America +2023-06-03,62691,54,"[""Laptop""]",4076.21,"{""promo"": ""29%""}",162276,1,Europe +2023-05-23,62692,2388,"[""Headphones""]",654.98,{},148407,1,Africa +2023-02-27,62693,7196,"[""Keyboard"", ""Charger""]",1459.12,"{"""": ""12%""}",262008,0,South America +2024-10-03,62694,7339,"[""Charger"", ""Tablet"", ""Phone""]",3811.97,"{""seasonal"": ""12%""}",240752,1,Asia +2024-05-16,62695,5583,"[""Wireless Mouse""]",2531.0,"{""seasonal"": ""14%""}",224330,0,North America +2023-11-01,62696,1662,"[""Laptop"", ""Monitor""]",3884.45,"{"""": ""6%""}",209549,1,Africa +2024-11-20,62697,7598,"[""Headphones"", ""Keyboard""]",1377.09,"{""promo"": ""7%""}",210211,1,Asia +2023-08-08,62698,1509,"[""Phone"", ""Tablet""]",3447.86,{},196577,0,North America +2023-06-19,62699,2077,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1531.93,"{""seasonal"": ""25%""}",188716,1,North America +2023-12-05,62700,2942,"[""Laptop"", ""Phone""]",4324.04,{},129728,1,Asia +2023-04-14,62701,8997,"[""Phone""]",164.79,"{""promo"": ""27%""}",196080,0,South America +2024-07-07,62702,9274,"[""Tablet"", ""Charger""]",1182.6,"{""promo"": ""22%""}",182364,0,South America +2024-04-14,62703,3076,"[""Wireless Mouse""]",3057.1,"{""promo"": ""23%""}",188550,1,South America +2023-04-14,62704,4111,"[""Wireless Mouse""]",3727.67,"{""promo"": ""20%""}",2201,0,Asia +2024-02-11,62705,2138,"[""Charger"", ""Wireless Mouse""]",1701.12,"{""promo"": ""18%""}",92496,0,Asia +2024-11-28,62706,8817,"[""Laptop"", ""Phone""]",4635.15,{},242567,1,South America +2024-06-26,62707,6742,"[""Monitor""]",2964.89,"{""promo"": ""13%""}",17435,1,Africa +2024-05-23,62708,8046,"[""Laptop"", ""Headphones""]",1305.1,{},224937,0,North America +2023-07-06,62709,6186,"[""Phone""]",2531.28,"{""promo"": ""26%""}",121181,0,North America +2023-01-08,62710,448,"[""Phone"", ""Charger"", ""Keyboard""]",4564.02,{},91875,0,North America +2024-01-09,62711,2122,"[""Keyboard"", ""Laptop""]",1604.52,{},49003,0,Europe +2024-04-27,62712,229,"[""Tablet""]",3261.85,"{""loyalty"": ""7%""}",234162,0,North America +2024-10-31,62713,4943,"[""Monitor"", ""Charger""]",4619.1,"{""seasonal"": ""27%""}",160552,0,North America +2023-03-13,62714,9174,"[""Monitor"", ""Laptop""]",1806.95,"{"""": ""9%""}",251445,1,Asia +2024-03-13,62715,1605,"[""Charger"", ""Phone""]",3691.42,"{"""": ""24%""}",49909,1,North America +2023-02-20,62716,4349,"[""Laptop"", ""Keyboard""]",4463.04,{},149902,0,North America +2023-01-11,62717,5893,"[""Headphones"", ""Tablet""]",3189.54,"{""loyalty"": ""13%""}",158728,0,North America +2024-05-20,62718,3981,"[""Phone"", ""Keyboard""]",2703.8,"{""seasonal"": ""18%""}",33558,0,Asia +2023-05-05,62719,950,"[""Monitor""]",725.39,{},77843,0,South America +2023-06-04,62720,7566,"[""Tablet"", ""Wireless Mouse""]",3975.74,"{""promo"": ""14%""}",210111,1,Europe +2023-11-21,62721,1064,"[""Monitor"", ""Phone"", ""Laptop""]",3370.6,"{""loyalty"": ""30%""}",147558,1,Africa +2024-08-16,62722,6550,"[""Monitor""]",4222.48,{},287645,0,Asia +2024-11-02,62723,1993,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3294.13,"{""promo"": ""28%""}",46347,0,North America +2024-08-31,62724,7874,"[""Headphones""]",4881.88,{},43460,0,North America +2024-03-17,62725,1114,"[""Tablet"", ""Phone""]",4307.36,"{"""": ""17%""}",281709,1,Africa +2024-04-10,62726,9818,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2019.9,{},231345,1,South America +2023-04-10,62727,4389,"[""Headphones"", ""Monitor""]",856.51,"{"""": ""16%""}",59340,0,North America +2023-04-28,62728,5557,"[""Headphones"", ""Keyboard"", ""Tablet""]",4404.67,{},269856,0,Asia +2023-12-07,62729,3302,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4715.39,"{""promo"": ""10%""}",79896,0,South America +2023-07-14,62730,6064,"[""Monitor"", ""Laptop""]",521.2,{},215738,0,Asia +2023-12-07,62731,4980,"[""Tablet""]",1333.58,{},136838,1,Asia +2024-03-25,62732,1467,"[""Wireless Mouse""]",3504.12,{},242671,1,North America +2023-08-01,62733,5716,"[""Charger""]",1003.75,"{""loyalty"": ""5%""}",152414,0,Asia +2024-08-10,62734,2254,"[""Monitor"", ""Keyboard"", ""Headphones""]",230.69,"{""seasonal"": ""20%""}",22733,1,Africa +2024-02-08,62735,4001,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1045.71,{},1170,0,Africa +2024-01-15,62736,2541,"[""Laptop""]",1379.05,{},87717,1,Asia +2024-04-23,62737,6165,"[""Charger""]",1652.49,{},163482,0,Europe +2024-06-11,62738,1568,"[""Wireless Mouse""]",4580.8,"{""seasonal"": ""30%""}",292724,0,South America +2024-11-28,62739,6105,"[""Monitor"", ""Headphones"", ""Keyboard""]",1230.41,"{""promo"": ""26%""}",13304,0,South America +2023-09-29,62740,4321,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3089.58,{},7938,1,North America +2024-01-25,62741,7913,"[""Tablet""]",2946.4,"{""seasonal"": ""26%""}",235700,1,South America +2023-08-15,62742,3886,"[""Monitor"", ""Charger"", ""Phone""]",2570.37,{},44382,1,North America +2024-02-11,62743,9550,"[""Laptop""]",1906.44,{},4673,0,Asia +2024-10-02,62744,6065,"[""Laptop"", ""Keyboard""]",1922.48,"{""loyalty"": ""30%""}",69674,0,Europe +2023-10-27,62745,179,"[""Keyboard"", ""Phone""]",270.42,"{""seasonal"": ""13%""}",1078,1,Africa +2024-03-30,62746,629,"[""Wireless Mouse""]",4429.73,"{"""": ""15%""}",282032,0,Asia +2023-05-04,62747,3537,"[""Laptop"", ""Tablet""]",1281.46,"{""promo"": ""19%""}",132486,0,Asia +2023-12-13,62748,6224,"[""Keyboard""]",3994.64,{},204989,0,North America +2023-03-21,62749,5817,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",728.63,"{""promo"": ""25%""}",129227,0,Africa +2024-01-22,62750,6734,"[""Laptop""]",385.3,"{""promo"": ""25%""}",4687,0,Asia +2024-09-02,62751,5681,"[""Charger"", ""Monitor""]",984.99,{},33425,1,South America +2023-07-27,62752,9097,"[""Laptop""]",4216.69,"{""promo"": ""12%""}",214943,1,Asia +2024-07-05,62753,9112,"[""Keyboard"", ""Phone""]",3866.19,"{"""": ""8%""}",8607,1,Asia +2023-02-11,62754,5111,"[""Headphones"", ""Tablet""]",722.57,{},103748,0,North America +2023-08-01,62755,8200,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3334.24,{},219985,1,Africa +2024-02-13,62756,7332,"[""Laptop"", ""Tablet"", ""Phone""]",3152.52,"{""promo"": ""19%""}",38426,0,Europe +2023-10-04,62757,3317,"[""Headphones"", ""Charger"", ""Tablet""]",1306.88,"{""loyalty"": ""29%""}",116697,0,North America +2023-10-18,62758,9950,"[""Charger""]",3629.64,{},235195,0,Europe +2023-07-10,62759,6212,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4824.59,{},151071,0,Europe +2024-01-15,62760,7054,"[""Headphones"", ""Phone""]",1052.33,{},119542,1,South America +2024-06-12,62761,6005,"[""Laptop"", ""Phone""]",324.32,"{""promo"": ""5%""}",216425,1,South America +2024-10-30,62762,9335,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3602.18,{},128807,1,North America +2024-11-20,62763,3016,"[""Phone""]",1870.58,"{""seasonal"": ""16%""}",30017,1,Asia +2023-07-27,62764,3745,"[""Laptop""]",3352.59,{},226062,1,Europe +2023-10-12,62765,2840,"[""Monitor"", ""Headphones""]",2423.84,{},25060,1,Europe +2024-07-05,62766,4211,"[""Wireless Mouse""]",3182.78,{},189005,0,North America +2024-01-08,62767,9490,"[""Charger""]",3246.51,"{""loyalty"": ""12%""}",168476,0,Africa +2024-07-15,62768,7540,"[""Laptop"", ""Tablet"", ""Phone""]",2299.05,"{""seasonal"": ""17%""}",89137,1,South America +2023-05-03,62769,1323,"[""Laptop"", ""Monitor"", ""Keyboard""]",2312.73,"{""promo"": ""7%""}",287106,1,Africa +2024-12-02,62770,5176,"[""Keyboard""]",2530.11,"{""promo"": ""11%""}",98464,1,South America +2024-04-25,62771,5621,"[""Keyboard""]",3013.54,"{"""": ""27%""}",215523,0,Africa +2023-07-23,62772,1062,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3371.35,{},146331,0,North America +2023-07-20,62773,4694,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4411.54,"{""seasonal"": ""12%""}",297730,0,Europe +2023-08-26,62774,7676,"[""Headphones"", ""Keyboard""]",1858.71,"{""seasonal"": ""17%""}",179811,0,Europe +2023-10-30,62775,2761,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2874.96,{},33976,1,Asia +2024-11-24,62776,4876,"[""Tablet"", ""Phone"", ""Laptop""]",3971.17,"{""loyalty"": ""7%""}",43795,0,North America +2024-10-03,62777,2058,"[""Charger"", ""Monitor""]",2041.39,"{""promo"": ""22%""}",62961,0,Africa +2024-01-25,62778,5950,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",234.99,"{""seasonal"": ""11%""}",162808,1,North America +2023-12-20,62779,462,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",78.96,{},122961,0,South America +2024-02-07,62780,9699,"[""Laptop""]",1283.56,{},271300,1,South America +2024-12-31,62781,5596,"[""Monitor"", ""Headphones"", ""Tablet""]",2598.22,"{"""": ""30%""}",3486,0,North America +2024-04-01,62782,5568,"[""Wireless Mouse"", ""Keyboard""]",2711.87,{},293968,0,North America +2023-10-15,62783,3830,"[""Charger""]",1528.71,{},199081,1,Africa +2023-10-13,62784,7237,"[""Keyboard""]",4686.01,{},59191,0,Asia +2024-10-24,62785,416,"[""Tablet"", ""Keyboard"", ""Monitor""]",1741.46,{},283161,0,Europe +2024-04-22,62786,3439,"[""Tablet""]",4386.26,"{""loyalty"": ""29%""}",200957,1,Asia +2023-03-09,62787,7114,"[""Headphones"", ""Keyboard"", ""Phone""]",647.81,"{""loyalty"": ""5%""}",34947,1,South America +2023-08-01,62788,9641,"[""Laptop""]",4022.44,{},68278,0,Africa +2023-01-09,62789,7261,"[""Laptop""]",1425.13,"{""promo"": ""29%""}",263448,0,Europe +2023-10-09,62790,600,"[""Laptop""]",1031.92,{},51134,0,South America +2023-07-11,62791,3,"[""Monitor"", ""Headphones"", ""Laptop""]",1817.19,{},191559,0,Africa +2023-01-14,62792,2030,"[""Tablet""]",565.81,"{""loyalty"": ""27%""}",151239,0,Africa +2024-09-26,62793,812,"[""Tablet""]",854.15,{},81114,0,Africa +2024-11-10,62794,9829,"[""Tablet"", ""Charger"", ""Keyboard""]",2613.72,{},25634,0,Asia +2023-10-20,62795,4610,"[""Headphones"", ""Charger""]",3970.9,{},32955,1,South America +2023-09-30,62796,9036,"[""Monitor"", ""Headphones""]",2640.29,{},77704,0,Europe +2023-03-28,62797,8175,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3134.18,"{""seasonal"": ""30%""}",149914,0,South America +2024-10-31,62798,9825,"[""Keyboard"", ""Tablet""]",1509.97,{},80062,0,South America +2023-08-02,62799,1034,"[""Monitor"", ""Keyboard"", ""Tablet""]",1871.45,"{""seasonal"": ""7%""}",297839,0,Asia +2023-01-04,62800,9644,"[""Monitor"", ""Keyboard""]",4368.81,{},99228,1,Europe +2023-10-28,62801,6620,"[""Tablet"", ""Laptop"", ""Charger""]",1223.01,{},262578,0,Africa +2024-11-12,62802,4525,"[""Phone"", ""Headphones""]",2821.11,"{""seasonal"": ""23%""}",173372,0,South America +2024-06-08,62803,8124,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",179.74,"{""promo"": ""7%""}",23377,1,South America +2023-10-11,62804,924,"[""Charger"", ""Wireless Mouse""]",4179.15,"{""promo"": ""9%""}",44880,0,Asia +2023-04-02,62805,9895,"[""Tablet"", ""Laptop""]",124.89,{},237883,1,North America +2024-07-11,62806,6587,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2726.59,{},182162,0,Africa +2023-07-13,62807,1064,"[""Phone"", ""Charger"", ""Keyboard""]",2870.24,"{"""": ""11%""}",107893,0,North America +2024-01-04,62808,100,"[""Phone""]",205.64,"{""seasonal"": ""26%""}",168084,0,North America +2024-12-16,62809,944,"[""Tablet"", ""Keyboard"", ""Monitor""]",1471.62,{},220725,1,Africa +2023-08-03,62810,7683,"[""Charger"", ""Laptop"", ""Headphones""]",2921.92,{},255084,0,Asia +2024-11-08,62811,5069,"[""Phone""]",4735.04,{},222553,0,Asia +2023-08-21,62812,5037,"[""Laptop"", ""Keyboard"", ""Tablet""]",2989.23,{},87752,0,Europe +2023-05-17,62813,199,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1726.26,{},98996,1,Asia +2024-05-22,62814,6942,"[""Wireless Mouse"", ""Tablet""]",2923.9,"{""seasonal"": ""25%""}",212071,0,North America +2023-11-11,62815,4013,"[""Laptop"", ""Headphones"", ""Keyboard""]",3145.0,"{"""": ""26%""}",17356,1,Europe +2024-09-01,62816,359,"[""Charger""]",3513.46,{},190669,0,Europe +2024-08-13,62817,4742,"[""Keyboard""]",3595.28,{},115216,1,South America +2024-02-06,62818,214,"[""Laptop"", ""Keyboard""]",4495.35,{},139512,0,Asia +2024-02-05,62819,2778,"[""Keyboard"", ""Wireless Mouse""]",3615.98,{},28666,1,Asia +2023-11-16,62820,3215,"[""Monitor"", ""Charger"", ""Headphones""]",638.38,"{""seasonal"": ""11%""}",127166,0,North America +2024-11-29,62821,8328,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3247.27,{},232189,0,North America +2024-07-25,62822,1464,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1626.8,{},97975,0,North America +2023-06-02,62823,5345,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",701.14,{},298098,1,Europe +2024-07-11,62824,6366,"[""Monitor""]",3608.5,{},83310,1,South America +2023-01-09,62825,426,"[""Keyboard"", ""Tablet"", ""Phone""]",4225.55,"{""seasonal"": ""26%""}",259713,1,South America +2023-07-27,62826,8978,"[""Wireless Mouse""]",3727.14,{},18541,1,Africa +2024-11-05,62827,7638,"[""Tablet""]",235.19,"{""promo"": ""8%""}",72309,1,Asia +2023-01-19,62828,4257,"[""Phone"", ""Headphones""]",2999.9,"{"""": ""20%""}",263358,1,South America +2023-06-28,62829,2048,"[""Charger"", ""Monitor"", ""Laptop""]",3999.14,"{""seasonal"": ""20%""}",27350,0,Asia +2023-05-22,62830,2251,"[""Tablet""]",70.95,{},104716,1,Asia +2023-06-09,62831,4233,"[""Keyboard"", ""Monitor"", ""Tablet""]",4509.85,"{"""": ""21%""}",189332,0,South America +2024-02-11,62832,4163,"[""Keyboard"", ""Tablet""]",1645.34,{},237419,1,Asia +2024-01-13,62833,4967,"[""Charger"", ""Monitor"", ""Keyboard""]",1541.22,"{""promo"": ""30%""}",4377,1,North America +2024-12-05,62834,5118,"[""Laptop"", ""Headphones"", ""Phone""]",1443.15,{},218586,0,Africa +2023-06-04,62835,637,"[""Charger""]",593.16,{},43135,0,Europe +2024-05-29,62836,9912,"[""Headphones"", ""Laptop""]",454.6,"{""seasonal"": ""7%""}",74168,0,Europe +2024-06-15,62837,7045,"[""Keyboard"", ""Headphones"", ""Laptop""]",4493.59,{},264679,1,North America +2024-01-19,62838,1957,"[""Phone"", ""Keyboard""]",1147.09,{},195446,1,Europe +2024-05-05,62839,6991,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3839.47,{},291292,1,Asia +2023-10-19,62840,1765,"[""Headphones"", ""Keyboard""]",1367.06,{},244780,1,Europe +2024-04-29,62841,5861,"[""Wireless Mouse""]",2419.96,"{"""": ""28%""}",61209,1,South America +2024-06-24,62842,3252,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1428.67,"{"""": ""25%""}",299990,1,South America +2023-03-22,62843,9169,"[""Headphones""]",1751.28,{},126102,1,Europe +2023-08-19,62844,8661,"[""Tablet""]",2218.99,"{""loyalty"": ""6%""}",106569,0,South America +2023-04-28,62845,9275,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2844.71,"{""loyalty"": ""21%""}",259504,1,Asia +2023-03-18,62846,4446,"[""Charger"", ""Laptop""]",3459.99,{},209770,0,North America +2023-10-28,62847,8546,"[""Phone"", ""Keyboard""]",2373.19,{},296784,1,Asia +2024-01-20,62848,5705,"[""Wireless Mouse"", ""Phone""]",1909.37,"{"""": ""13%""}",111491,1,South America +2024-01-16,62849,2561,"[""Charger"", ""Laptop""]",3580.57,"{"""": ""6%""}",133040,0,North America +2023-02-01,62850,3889,"[""Phone"", ""Wireless Mouse""]",3376.11,{},266436,0,Europe +2024-03-02,62851,5476,"[""Tablet"", ""Phone""]",594.59,"{""loyalty"": ""21%""}",98177,0,Asia +2023-03-14,62852,3180,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",913.76,{},234605,1,Asia +2024-11-17,62853,9002,"[""Keyboard"", ""Monitor"", ""Headphones""]",3158.46,"{""promo"": ""28%""}",99367,0,Africa +2024-12-09,62854,8843,"[""Wireless Mouse"", ""Headphones""]",3730.19,"{""loyalty"": ""21%""}",95303,1,Asia +2024-08-31,62855,3197,"[""Charger"", ""Monitor""]",1024.17,"{"""": ""16%""}",61915,1,North America +2023-04-03,62856,3455,"[""Charger"", ""Laptop""]",2084.59,"{""loyalty"": ""9%""}",248604,1,Africa +2023-07-02,62857,474,"[""Tablet""]",1378.58,{},251107,1,Europe +2024-02-19,62858,2943,"[""Keyboard""]",55.21,"{"""": ""20%""}",20652,0,North America +2024-08-28,62859,379,"[""Phone"", ""Tablet""]",923.69,{},74635,1,Asia +2024-06-19,62860,5599,"[""Monitor""]",267.85,{},103494,0,Africa +2024-02-18,62861,4026,"[""Wireless Mouse"", ""Laptop""]",1521.04,"{"""": ""7%""}",7169,1,Africa +2024-04-19,62862,5843,"[""Monitor"", ""Charger"", ""Keyboard""]",162.42,{},17584,1,Africa +2024-07-24,62863,2650,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",708.3,"{""loyalty"": ""18%""}",148278,1,Europe +2023-07-15,62864,139,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2421.24,{},199848,1,Europe +2023-02-17,62865,4163,"[""Charger"", ""Keyboard"", ""Laptop""]",3762.1,{},275387,0,Europe +2023-09-22,62866,1536,"[""Wireless Mouse"", ""Headphones""]",4115.8,"{"""": ""6%""}",261372,0,Asia +2024-12-26,62867,8914,"[""Keyboard""]",3460.7,{},57282,0,Africa +2024-03-27,62868,9259,"[""Tablet"", ""Monitor""]",4935.56,"{"""": ""23%""}",268268,0,South America +2023-09-15,62869,2566,"[""Keyboard"", ""Charger"", ""Monitor""]",3696.03,"{""promo"": ""12%""}",29153,1,Europe +2024-03-02,62870,6426,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3424.86,"{""loyalty"": ""12%""}",288752,0,Asia +2023-03-11,62871,6506,"[""Tablet"", ""Phone""]",691.29,"{""seasonal"": ""27%""}",243872,1,Europe +2024-07-24,62872,1111,"[""Headphones"", ""Tablet""]",1327.77,{},186275,1,Africa +2024-12-29,62873,3347,"[""Keyboard""]",1546.76,{},166970,1,Africa +2023-08-12,62874,9563,"[""Phone"", ""Laptop""]",2129.4,{},275150,1,Africa +2024-03-28,62875,5742,"[""Phone"", ""Laptop""]",1713.07,{},129145,1,South America +2023-11-09,62876,3414,"[""Headphones"", ""Tablet"", ""Charger""]",3570.07,"{""seasonal"": ""28%""}",177262,0,Europe +2024-08-15,62877,6952,"[""Keyboard"", ""Headphones""]",1537.42,{},190979,1,Europe +2024-10-16,62878,284,"[""Charger"", ""Keyboard"", ""Headphones""]",97.79,"{""loyalty"": ""29%""}",33466,0,Africa +2023-11-20,62879,1022,"[""Wireless Mouse"", ""Laptop""]",4876.46,"{"""": ""13%""}",36596,1,North America +2023-04-19,62880,7367,"[""Keyboard"", ""Phone""]",3024.32,"{""seasonal"": ""15%""}",251859,1,North America +2024-06-19,62881,6762,"[""Tablet"", ""Charger""]",909.32,{},285724,1,North America +2024-05-26,62882,4632,"[""Keyboard"", ""Monitor"", ""Charger""]",2455.62,"{""loyalty"": ""24%""}",294433,1,South America +2024-07-21,62883,7530,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",635.06,{},113359,1,North America +2023-03-10,62884,5122,"[""Phone"", ""Tablet"", ""Monitor""]",3012.8,"{""loyalty"": ""15%""}",50217,0,Asia +2023-09-29,62885,9078,"[""Laptop"", ""Keyboard"", ""Monitor""]",1024.58,{},164476,0,North America +2024-01-01,62886,9798,"[""Phone"", ""Tablet""]",4376.37,"{""loyalty"": ""29%""}",115347,0,Europe +2023-06-22,62887,3413,"[""Keyboard"", ""Charger""]",2661.92,{},290970,0,North America +2023-08-12,62888,5488,"[""Wireless Mouse""]",4271.47,"{""loyalty"": ""25%""}",238197,1,Europe +2024-03-29,62889,3214,"[""Laptop"", ""Headphones""]",1134.92,{},297629,1,Europe +2023-03-02,62890,1100,"[""Monitor"", ""Tablet""]",1422.77,"{""promo"": ""13%""}",227975,0,Africa +2023-08-14,62891,9057,"[""Keyboard"", ""Tablet"", ""Charger""]",4194.38,{},249140,0,Europe +2023-08-24,62892,8616,"[""Monitor""]",1982.61,"{"""": ""21%""}",289537,0,Africa +2024-03-31,62893,8124,"[""Charger""]",3878.67,"{""seasonal"": ""8%""}",26064,0,Africa +2024-07-24,62894,3494,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1710.04,"{""seasonal"": ""14%""}",131846,0,Asia +2023-09-04,62895,3659,"[""Laptop"", ""Headphones""]",4898.13,{},27278,1,South America +2023-08-10,62896,1580,"[""Laptop""]",4516.27,"{""loyalty"": ""5%""}",280109,1,Asia +2023-06-11,62897,77,"[""Tablet"", ""Phone"", ""Laptop""]",1514.24,"{"""": ""10%""}",67789,1,Europe +2024-02-19,62898,1730,"[""Headphones"", ""Monitor"", ""Charger""]",1925.51,{},60972,1,Africa +2023-06-01,62899,4223,"[""Charger"", ""Phone""]",1504.91,"{"""": ""29%""}",291306,1,Europe +2023-05-09,62900,5600,"[""Wireless Mouse"", ""Monitor""]",370.22,{},177471,0,Africa +2024-02-02,62901,9528,"[""Keyboard""]",3048.35,"{""seasonal"": ""23%""}",32721,1,North America +2024-04-25,62902,8155,"[""Keyboard""]",1453.12,"{""loyalty"": ""6%""}",218667,1,Asia +2023-10-03,62903,6087,"[""Phone"", ""Keyboard"", ""Monitor""]",1124.47,{},239734,0,North America +2023-10-07,62904,7967,"[""Wireless Mouse"", ""Headphones""]",2154.99,{},200962,1,North America +2024-11-24,62905,3825,"[""Wireless Mouse""]",4746.25,"{""promo"": ""24%""}",109496,0,Europe +2024-05-14,62906,482,"[""Charger"", ""Monitor""]",4490.05,{},219187,0,South America +2023-09-24,62907,4130,"[""Charger"", ""Tablet""]",2841.64,{},81687,1,North America +2024-02-22,62908,4002,"[""Tablet"", ""Charger"", ""Phone""]",3806.06,"{""seasonal"": ""12%""}",128228,1,Asia +2023-10-10,62909,414,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",130.5,{},118898,1,Africa +2024-07-09,62910,1757,"[""Wireless Mouse"", ""Headphones""]",457.47,"{""promo"": ""21%""}",64538,0,South America +2023-08-27,62911,6902,"[""Monitor""]",2860.48,"{""seasonal"": ""16%""}",39610,1,Asia +2023-10-22,62912,1132,"[""Phone""]",523.11,{},65885,0,Europe +2023-04-16,62913,1772,"[""Phone"", ""Charger""]",4890.56,"{""seasonal"": ""30%""}",236630,1,South America +2024-09-07,62914,2672,"[""Phone"", ""Monitor"", ""Charger""]",3859.27,"{""promo"": ""28%""}",248830,0,Asia +2024-09-04,62915,6052,"[""Tablet"", ""Laptop"", ""Charger""]",388.84,{},243672,0,South America +2024-10-11,62916,8460,"[""Charger"", ""Headphones""]",2633.3,"{""loyalty"": ""16%""}",242547,1,Europe +2023-09-02,62917,803,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",535.14,"{""promo"": ""15%""}",106177,1,North America +2024-05-25,62918,6492,"[""Keyboard""]",3698.36,{},222458,0,South America +2024-01-06,62919,5857,"[""Keyboard""]",2422.16,{},7771,0,North America +2024-10-05,62920,4672,"[""Monitor""]",3182.22,"{""seasonal"": ""19%""}",23026,1,Asia +2024-07-01,62921,6798,"[""Phone""]",1424.41,{},200563,1,Africa +2023-03-25,62922,6605,"[""Headphones""]",244.78,"{""loyalty"": ""13%""}",208317,0,Asia +2023-12-29,62923,8261,"[""Tablet"", ""Headphones""]",4820.98,"{""loyalty"": ""13%""}",172917,0,Africa +2023-07-07,62924,2230,"[""Headphones""]",1233.4,"{""loyalty"": ""20%""}",41699,1,North America +2024-11-11,62925,1114,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",791.3,"{""seasonal"": ""19%""}",108490,1,Europe +2024-10-31,62926,1562,"[""Monitor"", ""Keyboard""]",3308.04,{},124881,1,Europe +2024-12-09,62927,790,"[""Wireless Mouse""]",4696.78,{},268924,1,Africa +2024-11-02,62928,7193,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2112.55,"{"""": ""5%""}",281483,0,Africa +2023-03-09,62929,2159,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4400.71,"{""loyalty"": ""10%""}",103155,0,South America +2023-04-21,62930,4317,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2768.26,{},262469,1,Africa +2024-11-14,62931,7045,"[""Charger""]",3844.19,"{""seasonal"": ""19%""}",144242,1,Europe +2024-07-21,62932,8035,"[""Headphones""]",4006.96,{},266565,0,Europe +2023-08-16,62933,9682,"[""Wireless Mouse"", ""Tablet""]",819.31,{},92962,1,South America +2023-09-23,62934,5382,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",135.07,{},167525,1,South America +2023-07-14,62935,9714,"[""Keyboard""]",152.45,"{"""": ""19%""}",2441,1,Asia +2023-08-12,62936,2487,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1213.67,"{""loyalty"": ""21%""}",276730,1,Europe +2023-04-20,62937,9942,"[""Phone"", ""Tablet"", ""Monitor""]",2154.19,"{"""": ""25%""}",151190,1,North America +2023-07-03,62938,382,"[""Wireless Mouse"", ""Charger""]",4292.91,{},195772,1,Europe +2023-10-31,62939,9740,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",489.84,{},233615,1,Asia +2023-11-24,62940,8939,"[""Charger""]",109.33,"{""loyalty"": ""8%""}",195218,1,Africa +2024-04-09,62941,5127,"[""Phone"", ""Headphones""]",2174.68,"{"""": ""11%""}",134158,1,South America +2024-07-06,62942,5218,"[""Charger""]",1115.3,{},107757,1,South America +2024-10-11,62943,1189,"[""Headphones"", ""Phone"", ""Laptop""]",4498.38,"{""promo"": ""25%""}",248637,0,South America +2023-01-25,62944,1398,"[""Laptop"", ""Keyboard"", ""Tablet""]",2656.81,"{""promo"": ""14%""}",113998,1,South America +2024-10-08,62945,5862,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1642.09,{},167528,1,North America +2023-10-25,62946,2247,"[""Phone""]",804.66,{},193618,1,Asia +2023-02-25,62947,2640,"[""Keyboard""]",1124.22,"{""loyalty"": ""29%""}",51354,0,North America +2024-07-21,62948,8111,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4442.17,{},14892,0,North America +2023-10-20,62949,1960,"[""Headphones""]",1411.03,{},115117,0,North America +2023-08-18,62950,2363,"[""Monitor"", ""Phone""]",4132.07,{},144417,0,Asia +2023-11-14,62951,2027,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4412.28,"{""seasonal"": ""11%""}",198866,0,South America +2024-07-04,62952,4033,"[""Tablet"", ""Keyboard"", ""Headphones""]",2969.35,{},259358,1,Europe +2024-05-21,62953,8985,"[""Monitor"", ""Keyboard"", ""Charger""]",1724.42,{},72536,0,Asia +2024-09-23,62954,5540,"[""Laptop"", ""Phone""]",485.16,"{""loyalty"": ""29%""}",146491,1,Africa +2023-09-19,62955,9298,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3869.62,"{""loyalty"": ""30%""}",255396,0,South America +2024-02-13,62956,4754,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3453.4,"{""seasonal"": ""23%""}",152872,0,Europe +2023-06-05,62957,9183,"[""Tablet"", ""Monitor""]",3530.34,{},126532,0,North America +2024-07-29,62958,3310,"[""Headphones"", ""Charger""]",1470.74,{},110131,0,Asia +2023-01-19,62959,755,"[""Monitor"", ""Keyboard""]",3209.16,"{"""": ""20%""}",264088,0,Africa +2024-12-19,62960,976,"[""Headphones""]",3142.66,"{""loyalty"": ""28%""}",189376,1,Asia +2024-02-27,62961,8869,"[""Phone""]",3758.05,{},155219,0,North America +2024-11-12,62962,6497,"[""Headphones"", ""Charger"", ""Keyboard""]",124.09,"{"""": ""12%""}",117813,1,Africa +2023-06-07,62963,2994,"[""Headphones"", ""Keyboard""]",797.43,{},119875,1,South America +2024-12-06,62964,6230,"[""Monitor""]",3812.26,{},67459,1,Europe +2023-02-26,62965,8783,"[""Keyboard"", ""Tablet"", ""Phone""]",445.26,{},230341,0,South America +2023-04-30,62966,3046,"[""Keyboard""]",267.92,{},244704,0,Africa +2024-05-09,62967,9553,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3902.35,{},160463,1,Europe +2024-09-11,62968,7211,"[""Keyboard"", ""Charger"", ""Monitor""]",3223.42,"{""promo"": ""16%""}",169070,1,Europe +2023-06-19,62969,397,"[""Phone""]",4940.5,"{""seasonal"": ""28%""}",26764,1,Africa +2023-06-13,62970,7181,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1517.89,"{""promo"": ""19%""}",199055,0,Africa +2023-06-19,62971,5534,"[""Tablet"", ""Keyboard""]",4249.0,{},150887,0,Europe +2024-02-04,62972,4081,"[""Monitor""]",1143.59,{},8085,1,Europe +2023-09-10,62973,240,"[""Charger""]",403.27,{},52877,0,Asia +2023-08-29,62974,9581,"[""Laptop"", ""Phone"", ""Keyboard""]",3644.27,"{""loyalty"": ""16%""}",100203,1,South America +2024-09-17,62975,2382,"[""Headphones"", ""Phone""]",4416.1,"{""promo"": ""10%""}",15677,0,South America +2024-04-10,62976,295,"[""Keyboard"", ""Laptop""]",919.93,"{""promo"": ""20%""}",235200,0,Europe +2023-01-01,62977,319,"[""Laptop""]",2894.69,"{"""": ""22%""}",113413,1,South America +2023-04-02,62978,3681,"[""Tablet"", ""Charger"", ""Monitor""]",1672.26,"{""seasonal"": ""30%""}",87505,0,South America +2024-02-02,62979,2159,"[""Keyboard""]",3242.2,{},127660,1,North America +2023-03-26,62980,6475,"[""Phone"", ""Tablet"", ""Monitor""]",3908.81,{},262430,1,Asia +2024-11-07,62981,449,"[""Wireless Mouse""]",4126.98,{},215570,0,Africa +2023-09-26,62982,4963,"[""Phone"", ""Tablet""]",3343.52,{},10103,1,Africa +2024-03-10,62983,4999,"[""Laptop""]",4429.33,{},269001,1,Asia +2024-01-13,62984,9068,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",465.57,{},240533,1,Asia +2023-01-12,62985,2534,"[""Keyboard""]",3123.29,"{"""": ""25%""}",43523,1,Africa +2023-02-28,62986,9013,"[""Phone""]",273.52,"{""promo"": ""14%""}",293528,1,Africa +2024-08-14,62987,8535,"[""Phone"", ""Laptop"", ""Tablet""]",2763.96,{},42751,1,North America +2024-10-07,62988,5510,"[""Monitor"", ""Tablet"", ""Phone""]",1627.99,{},143270,0,Africa +2024-10-02,62989,201,"[""Tablet"", ""Keyboard""]",1956.57,"{""loyalty"": ""23%""}",281774,0,North America +2024-08-12,62990,1113,"[""Keyboard""]",1409.58,"{""seasonal"": ""9%""}",255610,1,Africa +2023-06-25,62991,2686,"[""Laptop""]",75.99,{},21449,0,Asia +2023-10-21,62992,572,"[""Laptop"", ""Tablet""]",1058.52,"{""loyalty"": ""18%""}",144030,0,Asia +2024-11-09,62993,2510,"[""Monitor"", ""Laptop""]",169.22,{},3938,0,South America +2024-10-10,62994,9065,"[""Headphones""]",3904.08,"{""promo"": ""9%""}",151932,1,South America +2024-03-10,62995,1514,"[""Keyboard"", ""Laptop"", ""Phone""]",4638.1,"{""seasonal"": ""28%""}",231805,1,North America +2023-10-02,62996,8127,"[""Headphones""]",959.83,"{"""": ""25%""}",69216,1,South America +2023-06-24,62997,1797,"[""Phone"", ""Laptop""]",494.75,{},154229,0,North America +2024-03-06,62998,8540,"[""Charger"", ""Laptop""]",4263.41,"{""seasonal"": ""11%""}",247739,0,Africa +2023-09-23,62999,9097,"[""Keyboard"", ""Wireless Mouse""]",2870.76,"{""promo"": ""25%""}",296008,0,South America +2024-01-08,63000,8753,"[""Charger""]",1688.74,{},137743,0,South America +2023-03-15,63001,3407,"[""Monitor""]",3258.76,{},233081,1,Europe +2023-05-24,63002,6382,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",576.4,{},150281,0,Africa +2024-08-14,63003,1849,"[""Tablet""]",4542.03,"{""loyalty"": ""13%""}",104475,0,Asia +2023-10-13,63004,8758,"[""Keyboard"", ""Phone"", ""Charger""]",2573.07,{},73920,0,Europe +2024-03-30,63005,4111,"[""Headphones"", ""Wireless Mouse""]",3080.73,{},128323,1,Europe +2024-11-21,63006,9781,"[""Monitor""]",2646.4,{},177037,0,Asia +2024-03-23,63007,5690,"[""Laptop""]",4580.94,{},118713,0,Europe +2024-05-03,63008,99,"[""Laptop"", ""Phone""]",1096.03,{},5359,1,North America +2024-03-16,63009,4314,"[""Charger""]",4942.49,{},20816,1,North America +2023-05-04,63010,6997,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1528.53,{},297462,0,South America +2024-12-21,63011,4483,"[""Tablet"", ""Charger""]",530.66,{},196703,0,North America +2023-07-25,63012,3857,"[""Headphones"", ""Monitor""]",4345.1,"{"""": ""6%""}",75864,1,Africa +2024-03-11,63013,8937,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3130.62,{},161202,0,Europe +2023-08-15,63014,5297,"[""Monitor"", ""Keyboard""]",269.99,"{""loyalty"": ""16%""}",63687,1,Europe +2023-09-18,63015,1953,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1147.55,"{"""": ""22%""}",33392,1,Africa +2024-02-26,63016,7830,"[""Phone"", ""Keyboard"", ""Charger""]",4099.91,{},190942,0,North America +2023-05-29,63017,166,"[""Laptop""]",3285.23,{},197490,0,Asia +2023-05-27,63018,3860,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",915.66,{},81932,0,North America +2023-01-23,63019,1093,"[""Wireless Mouse""]",3220.46,{},146949,1,Asia +2024-07-06,63020,817,"[""Headphones""]",2067.78,"{""seasonal"": ""16%""}",81716,0,Asia +2023-10-01,63021,3429,"[""Laptop"", ""Headphones"", ""Charger""]",869.06,{},270193,1,South America +2023-12-15,63022,1395,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4555.55,"{""loyalty"": ""27%""}",105866,0,North America +2023-08-26,63023,6132,"[""Headphones""]",3972.57,{},168630,0,Asia +2024-01-23,63024,3779,"[""Headphones"", ""Keyboard"", ""Monitor""]",2329.09,{},168171,1,South America +2024-05-04,63025,4306,"[""Headphones"", ""Phone"", ""Keyboard""]",3033.92,"{""loyalty"": ""8%""}",240273,1,Europe +2024-06-19,63026,1368,"[""Monitor""]",4457.78,{},255134,0,South America +2024-07-14,63027,8354,"[""Headphones"", ""Wireless Mouse""]",3463.62,"{""seasonal"": ""13%""}",163554,1,South America +2024-07-08,63028,9019,"[""Wireless Mouse"", ""Headphones""]",3090.67,{},235387,0,Europe +2023-05-24,63029,9168,"[""Phone""]",141.7,"{""promo"": ""21%""}",139725,1,South America +2023-02-02,63030,7200,"[""Headphones"", ""Keyboard"", ""Monitor""]",4085.24,"{"""": ""23%""}",173747,0,South America +2024-03-02,63031,9525,"[""Tablet""]",2197.12,{},198479,0,Europe +2023-08-19,63032,835,"[""Tablet""]",351.19,"{""loyalty"": ""25%""}",90263,0,North America +2024-10-09,63033,1198,"[""Wireless Mouse""]",4371.31,"{""loyalty"": ""24%""}",13319,0,Asia +2024-10-06,63034,1,"[""Tablet""]",2681.96,{},41321,1,North America +2023-09-16,63035,6138,"[""Charger"", ""Tablet""]",3783.29,{},195105,0,South America +2023-08-26,63036,3402,"[""Charger""]",2734.1,{},99045,0,Asia +2023-11-22,63037,7592,"[""Charger""]",2841.91,{},211220,1,Africa +2023-02-20,63038,4217,"[""Phone"", ""Charger"", ""Monitor""]",2521.74,"{""seasonal"": ""24%""}",269333,1,North America +2023-04-22,63039,1744,"[""Headphones""]",4437.91,{},261002,1,Africa +2024-10-12,63040,7806,"[""Monitor""]",2207.4,"{""loyalty"": ""10%""}",109811,0,Europe +2024-01-23,63041,1212,"[""Tablet"", ""Headphones"", ""Keyboard""]",191.58,{},184170,0,South America +2024-12-30,63042,2896,"[""Keyboard""]",4004.81,"{""loyalty"": ""11%""}",141482,1,Asia +2023-02-27,63043,2436,"[""Laptop"", ""Keyboard"", ""Charger""]",1755.87,"{""promo"": ""21%""}",64176,0,Asia +2023-05-30,63044,6237,"[""Charger"", ""Tablet"", ""Phone""]",3707.52,{},194109,1,Europe +2024-11-13,63045,3005,"[""Monitor"", ""Laptop""]",2070.75,{},288933,1,North America +2024-05-08,63046,8272,"[""Charger""]",2869.8,{},95092,0,Africa +2023-06-26,63047,5574,"[""Charger"", ""Keyboard"", ""Phone""]",212.85,{},79289,1,North America +2023-10-19,63048,9512,"[""Wireless Mouse""]",1966.69,"{""loyalty"": ""6%""}",92705,1,North America +2024-02-03,63049,7050,"[""Charger"", ""Headphones""]",4838.01,{},225386,0,Asia +2023-04-12,63050,2446,"[""Phone"", ""Keyboard""]",1505.55,"{""promo"": ""22%""}",134596,0,South America +2023-07-27,63051,6157,"[""Charger""]",3566.05,{},170130,0,Africa +2024-10-25,63052,1741,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3636.68,"{""promo"": ""18%""}",52472,0,South America +2024-10-20,63053,296,"[""Phone""]",4984.7,"{""promo"": ""8%""}",130643,0,Europe +2024-06-12,63054,8938,"[""Monitor"", ""Keyboard""]",2162.76,"{""promo"": ""26%""}",247770,1,Asia +2024-08-26,63055,7766,"[""Laptop""]",2023.09,{},161882,0,Africa +2023-01-05,63056,7602,"[""Headphones""]",1051.24,{},271197,0,Asia +2023-11-03,63057,1092,"[""Laptop"", ""Keyboard"", ""Monitor""]",3121.46,{},174432,1,North America +2023-11-06,63058,2325,"[""Charger"", ""Monitor""]",2491.78,{},136741,1,Asia +2024-08-26,63059,8031,"[""Headphones""]",2204.12,"{""loyalty"": ""12%""}",180367,1,Europe +2024-08-29,63060,1734,"[""Tablet"", ""Laptop""]",880.89,"{""loyalty"": ""11%""}",30486,0,South America +2024-03-10,63061,793,"[""Phone""]",1169.58,"{""loyalty"": ""18%""}",187631,1,North America +2024-12-06,63062,3956,"[""Phone"", ""Charger""]",4992.13,"{""promo"": ""6%""}",292603,0,Europe +2023-06-28,63063,4731,"[""Charger"", ""Keyboard""]",2493.18,{},244097,0,Asia +2024-09-04,63064,3331,"[""Charger"", ""Phone""]",2622.88,{},231217,0,Europe +2023-06-20,63065,7697,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4653.1,{},272696,1,Europe +2023-06-16,63066,9222,"[""Keyboard"", ""Monitor"", ""Laptop""]",3463.45,{},283922,0,South America +2023-03-18,63067,5069,"[""Phone"", ""Tablet""]",1906.75,"{""seasonal"": ""24%""}",261530,1,South America +2024-04-13,63068,3830,"[""Tablet"", ""Charger"", ""Headphones""]",1984.78,"{""loyalty"": ""26%""}",32625,1,South America +2024-11-09,63069,3609,"[""Keyboard"", ""Headphones"", ""Monitor""]",448.15,"{""seasonal"": ""20%""}",215622,1,Europe +2024-06-02,63070,3894,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",360.01,{},245377,1,North America +2023-01-03,63071,9711,"[""Phone"", ""Charger""]",3586.77,{},96305,1,Africa +2023-11-05,63072,5217,"[""Headphones"", ""Laptop""]",3525.17,"{"""": ""8%""}",270758,0,Europe +2024-11-09,63073,9609,"[""Charger"", ""Keyboard"", ""Phone""]",4119.14,{},148538,0,South America +2023-03-22,63074,9137,"[""Charger""]",1804.01,{},2912,0,Asia +2023-05-25,63075,946,"[""Headphones"", ""Tablet"", ""Phone""]",1731.13,"{"""": ""10%""}",132583,1,South America +2023-06-21,63076,9274,"[""Charger"", ""Headphones""]",1051.42,"{""seasonal"": ""21%""}",241139,0,Asia +2024-03-21,63077,9310,"[""Monitor"", ""Laptop"", ""Phone""]",4428.42,"{""loyalty"": ""10%""}",108156,1,South America +2023-08-08,63078,4520,"[""Phone""]",4983.19,{},135218,1,Europe +2023-12-17,63079,8969,"[""Wireless Mouse""]",2130.33,"{""seasonal"": ""27%""}",242527,0,North America +2023-06-17,63080,3441,"[""Phone""]",881.63,{},209706,0,Asia +2024-02-29,63081,529,"[""Charger""]",1969.55,{},206057,0,Asia +2024-12-15,63082,6212,"[""Monitor"", ""Laptop"", ""Keyboard""]",1845.92,{},206192,1,Europe +2024-10-05,63083,2283,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1974.85,{},125085,0,Africa +2024-05-29,63084,3369,"[""Monitor""]",4006.08,{},233093,0,Europe +2024-05-23,63085,4906,"[""Tablet""]",4401.86,"{""seasonal"": ""25%""}",71180,0,Africa +2023-07-19,63086,3524,"[""Headphones"", ""Laptop""]",2843.84,"{""seasonal"": ""24%""}",252652,1,Asia +2023-08-11,63087,2490,"[""Keyboard""]",2125.05,{},149643,0,South America +2024-09-21,63088,5255,"[""Wireless Mouse"", ""Monitor""]",3883.51,{},36279,1,Europe +2024-01-29,63089,4585,"[""Phone"", ""Headphones""]",2039.55,{},21805,0,Asia +2023-10-16,63090,8985,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4729.69,"{""loyalty"": ""13%""}",193146,0,Africa +2024-06-28,63091,7643,"[""Monitor"", ""Keyboard"", ""Phone""]",225.65,"{""seasonal"": ""24%""}",299579,1,South America +2023-11-26,63092,9897,"[""Monitor""]",3603.42,{},150440,1,South America +2023-03-28,63093,1053,"[""Keyboard"", ""Headphones""]",2685.92,"{"""": ""7%""}",251389,1,Asia +2023-07-23,63094,5904,"[""Monitor"", ""Keyboard""]",679.37,{},100763,0,South America +2023-09-30,63095,8711,"[""Laptop""]",1620.3,{},71061,0,Asia +2023-08-19,63096,7890,"[""Phone"", ""Charger"", ""Monitor""]",4758.65,{},287986,1,North America +2024-05-01,63097,9204,"[""Keyboard"", ""Tablet""]",452.74,"{""loyalty"": ""16%""}",280156,0,North America +2024-02-07,63098,170,"[""Laptop"", ""Tablet"", ""Headphones""]",1182.3,{},225867,1,Europe +2023-10-07,63099,7159,"[""Headphones"", ""Laptop"", ""Charger""]",4561.68,{},114064,1,Asia +2024-10-05,63100,5624,"[""Phone"", ""Headphones"", ""Laptop""]",1689.61,"{"""": ""18%""}",173271,1,North America +2024-01-06,63101,5760,"[""Monitor"", ""Tablet"", ""Keyboard""]",1670.39,{},170224,0,Africa +2024-12-04,63102,2640,"[""Tablet""]",3607.42,{},108180,0,Asia +2024-08-30,63103,8763,"[""Tablet"", ""Phone""]",1347.3,"{""promo"": ""19%""}",288603,0,North America +2024-03-14,63104,1931,"[""Monitor"", ""Tablet""]",209.12,{},251233,1,South America +2024-08-25,63105,5573,"[""Headphones""]",3762.05,"{""loyalty"": ""16%""}",9100,1,North America +2023-02-11,63106,5572,"[""Wireless Mouse""]",4575.66,{},27754,1,Europe +2023-04-30,63107,9840,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2797.15,{},286830,1,Europe +2024-12-21,63108,4363,"[""Charger"", ""Phone""]",4215.2,"{""seasonal"": ""6%""}",64297,0,Europe +2023-07-27,63109,7228,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3439.25,"{""promo"": ""30%""}",95366,1,South America +2023-10-13,63110,5557,"[""Wireless Mouse""]",1502.69,"{"""": ""30%""}",204739,1,Europe +2023-07-10,63111,5287,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2765.83,{},56291,1,Asia +2024-06-09,63112,3060,"[""Monitor""]",4087.02,"{""promo"": ""6%""}",202190,1,Asia +2024-11-17,63113,7697,"[""Headphones"", ""Laptop"", ""Tablet""]",1058.73,"{""seasonal"": ""25%""}",42392,0,Asia +2023-10-21,63114,1886,"[""Headphones""]",1666.04,"{""seasonal"": ""19%""}",183840,1,Asia +2023-06-06,63115,2942,"[""Tablet""]",2824.58,{},107910,0,Europe +2024-08-19,63116,1830,"[""Tablet"", ""Charger""]",4644.1,{},11272,1,Europe +2024-07-28,63117,8404,"[""Laptop""]",3580.66,"{""promo"": ""8%""}",264965,0,Europe +2024-06-08,63118,9999,"[""Laptop""]",1696.64,{},136686,1,North America +2023-11-05,63119,4389,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1167.45,{},136167,1,Asia +2024-03-12,63120,2020,"[""Tablet""]",598.38,"{"""": ""8%""}",195599,1,North America +2024-05-15,63121,7006,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4017.31,"{""loyalty"": ""5%""}",245327,1,Africa +2024-07-21,63122,8818,"[""Keyboard"", ""Laptop""]",1547.32,{},98307,1,Europe +2024-08-11,63123,9558,"[""Phone""]",474.44,{},96431,1,Africa +2023-06-26,63124,6084,"[""Headphones"", ""Charger""]",1412.66,"{""seasonal"": ""8%""}",46100,1,Europe +2023-05-02,63125,5184,"[""Charger""]",361.68,"{"""": ""22%""}",110257,1,South America +2024-01-25,63126,6479,"[""Monitor"", ""Phone""]",4430.56,{},33577,1,North America +2023-07-19,63127,1740,"[""Keyboard""]",4682.04,"{"""": ""24%""}",277096,1,South America +2024-08-29,63128,2913,"[""Monitor""]",656.9,"{""loyalty"": ""10%""}",27742,1,Africa +2023-08-09,63129,7345,"[""Keyboard"", ""Headphones"", ""Tablet""]",2295.87,{},53174,0,Africa +2024-02-21,63130,7176,"[""Charger"", ""Wireless Mouse""]",4097.79,{},206228,0,South America +2024-06-18,63131,789,"[""Headphones""]",1107.02,"{""seasonal"": ""16%""}",115754,1,North America +2023-07-13,63132,3089,"[""Charger"", ""Keyboard""]",3629.26,{},96416,0,Europe +2024-06-30,63133,7746,"[""Monitor"", ""Tablet""]",1839.09,{},232688,1,North America +2024-01-14,63134,6563,"[""Headphones""]",1871.31,{},170213,0,Asia +2024-07-06,63135,3307,"[""Tablet"", ""Charger""]",3478.42,"{"""": ""16%""}",224763,0,South America +2023-08-13,63136,8287,"[""Charger"", ""Phone""]",2799.44,"{""loyalty"": ""24%""}",258361,1,North America +2023-05-30,63137,1676,"[""Charger"", ""Laptop""]",441.78,{},298679,0,Africa +2024-03-07,63138,3990,"[""Laptop"", ""Keyboard""]",2043.83,{},202156,0,North America +2024-05-09,63139,8748,"[""Laptop""]",1355.25,{},221412,1,Europe +2023-03-26,63140,6652,"[""Phone""]",2825.79,"{""loyalty"": ""26%""}",294031,1,South America +2023-07-11,63141,8147,"[""Laptop"", ""Phone"", ""Tablet""]",3885.33,{},126121,0,South America +2024-03-17,63142,5640,"[""Charger""]",2713.98,"{"""": ""11%""}",73065,1,Europe +2024-04-27,63143,7041,"[""Monitor"", ""Headphones"", ""Tablet""]",2455.69,{},135244,0,Africa +2024-09-20,63144,2552,"[""Laptop"", ""Charger""]",1806.69,{},169010,1,Asia +2024-11-21,63145,1918,"[""Phone""]",2592.48,"{""seasonal"": ""9%""}",2392,0,Asia +2023-01-09,63146,5335,"[""Monitor"", ""Laptop""]",345.94,{},33999,0,North America +2024-07-30,63147,5619,"[""Wireless Mouse""]",1379.49,"{""promo"": ""14%""}",69480,0,North America +2024-07-17,63148,7791,"[""Monitor"", ""Tablet""]",4862.65,"{""seasonal"": ""28%""}",283015,0,North America +2024-11-26,63149,2655,"[""Charger"", ""Headphones""]",4108.08,{},182292,0,Europe +2024-05-12,63150,5632,"[""Wireless Mouse""]",3010.65,"{""promo"": ""18%""}",118788,1,Africa +2024-07-11,63151,6718,"[""Phone"", ""Keyboard""]",1298.44,{},154914,1,Africa +2024-09-11,63152,65,"[""Laptop"", ""Headphones"", ""Monitor""]",2825.4,"{""promo"": ""17%""}",245084,0,South America +2023-07-17,63153,2613,"[""Headphones"", ""Tablet""]",339.56,{},277308,1,North America +2023-01-31,63154,2846,"[""Keyboard"", ""Phone""]",4699.91,{},94787,0,North America +2023-08-08,63155,5890,"[""Keyboard""]",1239.13,{},144228,0,Africa +2024-04-10,63156,2810,"[""Wireless Mouse"", ""Phone""]",1308.26,{},75831,1,Asia +2024-12-31,63157,2023,"[""Phone""]",1739.47,{},38012,1,Europe +2024-02-22,63158,2095,"[""Tablet"", ""Headphones""]",2533.51,{},10517,1,Asia +2023-10-29,63159,4006,"[""Monitor"", ""Phone""]",4059.17,{},247594,1,North America +2023-09-21,63160,6493,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4781.19,"{"""": ""26%""}",266758,0,North America +2024-07-09,63161,3403,"[""Headphones"", ""Monitor""]",1991.05,{},199712,1,North America +2024-01-11,63162,8205,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4175.69,{},180870,0,Africa +2024-11-09,63163,1478,"[""Wireless Mouse""]",1464.35,"{"""": ""10%""}",247314,1,Africa +2023-05-31,63164,9372,"[""Charger"", ""Tablet""]",2738.72,"{""loyalty"": ""20%""}",22090,1,Africa +2024-04-06,63165,2861,"[""Charger""]",4996.55,{},135892,1,Asia +2023-09-21,63166,9696,"[""Headphones""]",4214.09,"{"""": ""7%""}",269212,0,Asia +2023-02-27,63167,4007,"[""Laptop""]",4668.96,{},241792,0,Asia +2023-08-31,63168,1782,"[""Laptop"", ""Headphones"", ""Tablet""]",4198.36,"{""promo"": ""9%""}",217896,0,Europe +2024-01-09,63169,8455,"[""Charger"", ""Laptop"", ""Keyboard""]",1789.41,"{""promo"": ""24%""}",158092,0,Europe +2024-04-22,63170,2915,"[""Phone"", ""Tablet""]",3456.64,{},103472,1,Europe +2024-09-21,63171,5697,"[""Phone"", ""Tablet""]",4589.79,"{"""": ""18%""}",259972,1,Asia +2024-09-11,63172,6456,"[""Phone""]",507.83,{},51066,0,North America +2024-06-21,63173,5725,"[""Headphones"", ""Phone"", ""Charger""]",2444.77,{},90659,0,Asia +2024-02-14,63174,4422,"[""Keyboard"", ""Headphones"", ""Laptop""]",1338.9,{},63545,1,Asia +2023-12-03,63175,4174,"[""Headphones"", ""Keyboard""]",4583.82,"{""promo"": ""11%""}",237133,0,Europe +2024-06-19,63176,6806,"[""Phone"", ""Headphones""]",921.41,"{""seasonal"": ""6%""}",182601,1,South America +2024-02-29,63177,3672,"[""Keyboard"", ""Laptop"", ""Charger""]",206.21,{},99820,1,Asia +2023-07-16,63178,8153,"[""Wireless Mouse""]",3224.27,{},194381,1,Europe +2023-05-22,63179,7012,"[""Tablet"", ""Phone""]",3676.84,"{""loyalty"": ""8%""}",261912,0,South America +2023-08-24,63180,7401,"[""Charger"", ""Laptop"", ""Headphones""]",3984.41,"{""promo"": ""6%""}",123294,1,North America +2023-12-21,63181,3010,"[""Keyboard"", ""Headphones""]",661.02,{},289336,1,Asia +2023-02-01,63182,9663,"[""Headphones"", ""Phone""]",226.72,"{""seasonal"": ""25%""}",11811,0,Africa +2024-01-18,63183,854,"[""Headphones"", ""Monitor""]",1674.99,"{""loyalty"": ""13%""}",121397,1,North America +2024-01-03,63184,1953,"[""Phone"", ""Laptop"", ""Monitor""]",3757.71,"{""promo"": ""23%""}",50651,0,Europe +2024-06-27,63185,9356,"[""Monitor"", ""Keyboard"", ""Laptop""]",2554.79,{},271060,1,Europe +2024-12-21,63186,6388,"[""Wireless Mouse"", ""Laptop""]",2012.84,{},224990,1,Asia +2024-01-01,63187,1800,"[""Keyboard""]",650.28,{},255109,0,Asia +2024-06-30,63188,9327,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2740.46,{},44574,0,Africa +2024-01-11,63189,2891,"[""Laptop""]",434.46,{},229932,0,Africa +2024-12-10,63190,9069,"[""Laptop"", ""Monitor""]",3832.98,{},292383,0,South America +2024-07-25,63191,4221,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2881.75,{},141118,0,Europe +2023-05-03,63192,9653,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4929.96,{},298293,0,North America +2024-02-23,63193,9291,"[""Charger"", ""Wireless Mouse""]",4737.14,{},255991,0,North America +2023-10-19,63194,8261,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2657.75,{},167759,1,North America +2023-05-02,63195,754,"[""Wireless Mouse""]",595.13,"{""loyalty"": ""25%""}",150332,0,North America +2024-08-21,63196,3339,"[""Monitor"", ""Tablet"", ""Keyboard""]",4220.82,"{""loyalty"": ""10%""}",182266,1,Europe +2023-07-25,63197,7862,"[""Monitor""]",1450.11,"{""promo"": ""14%""}",225864,1,Asia +2024-04-20,63198,9363,"[""Keyboard"", ""Tablet""]",982.87,"{""promo"": ""9%""}",281924,1,South America +2024-06-09,63199,8711,"[""Tablet"", ""Laptop""]",3721.41,{},219365,0,North America +2023-11-27,63200,4533,"[""Laptop"", ""Tablet"", ""Headphones""]",2677.12,"{""loyalty"": ""16%""}",275474,1,South America +2024-02-18,63201,3126,"[""Phone"", ""Tablet"", ""Charger""]",4538.81,"{"""": ""25%""}",271888,0,Africa +2023-09-26,63202,9462,"[""Phone"", ""Monitor"", ""Keyboard""]",3364.6,"{""seasonal"": ""6%""}",276961,0,Asia +2023-05-08,63203,3477,"[""Phone"", ""Wireless Mouse""]",4766.64,{},38448,1,Asia +2024-06-26,63204,3802,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2026.18,"{""loyalty"": ""6%""}",291874,0,Africa +2023-01-25,63205,5641,"[""Headphones"", ""Keyboard"", ""Charger""]",2901.12,{},98142,0,Africa +2024-01-05,63206,7454,"[""Laptop"", ""Keyboard"", ""Phone""]",1050.45,"{""promo"": ""5%""}",118417,0,South America +2024-12-02,63207,9604,"[""Headphones"", ""Monitor""]",1525.93,{},71698,0,North America +2023-03-19,63208,8002,"[""Wireless Mouse""]",3400.51,{},144511,1,North America +2023-08-15,63209,7510,"[""Keyboard"", ""Tablet""]",656.66,"{""seasonal"": ""8%""}",226857,0,South America +2023-05-08,63210,8541,"[""Monitor""]",826.76,"{""seasonal"": ""20%""}",272630,1,Asia +2023-08-25,63211,2696,"[""Charger"", ""Monitor"", ""Headphones""]",3223.32,{},84376,1,South America +2024-05-18,63212,2263,"[""Charger""]",709.1,{},155707,1,Africa +2023-07-01,63213,2154,"[""Monitor""]",3039.59,{},99712,1,South America +2024-02-23,63214,4926,"[""Headphones"", ""Tablet"", ""Phone""]",3492.71,{},169442,1,North America +2023-03-24,63215,6169,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3940.42,"{""seasonal"": ""25%""}",176729,0,Europe +2024-12-23,63216,9507,"[""Laptop""]",3887.51,"{""promo"": ""26%""}",195814,1,North America +2023-02-23,63217,5190,"[""Wireless Mouse""]",731.82,"{""loyalty"": ""15%""}",241028,1,North America +2024-07-29,63218,96,"[""Tablet""]",4576.16,"{""seasonal"": ""27%""}",15945,1,Africa +2023-07-19,63219,6226,"[""Charger"", ""Tablet"", ""Headphones""]",4639.9,{},233603,0,South America +2024-11-01,63220,534,"[""Laptop""]",3457.07,{},45062,1,North America +2023-03-17,63221,8667,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",223.46,{},274857,0,Africa +2023-07-28,63222,3909,"[""Monitor""]",4261.52,{},7149,0,Europe +2024-04-22,63223,111,"[""Laptop""]",4041.77,"{""promo"": ""22%""}",239272,1,North America +2023-03-27,63224,4146,"[""Keyboard"", ""Phone""]",3461.65,{},26851,0,Africa +2023-11-13,63225,9252,"[""Monitor"", ""Phone""]",2616.99,"{""promo"": ""24%""}",25425,1,Asia +2023-01-18,63226,5963,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2008.28,{},212893,1,Asia +2023-06-28,63227,611,"[""Wireless Mouse""]",2858.98,"{""promo"": ""11%""}",265307,0,Europe +2024-05-25,63228,6364,"[""Tablet"", ""Laptop"", ""Phone""]",760.18,{},124559,0,Europe +2024-07-24,63229,981,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2068.58,{},249681,1,South America +2024-07-24,63230,2265,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2491.89,"{""loyalty"": ""28%""}",220566,0,Asia +2024-07-05,63231,137,"[""Wireless Mouse""]",4023.12,{},213084,1,North America +2024-10-31,63232,7088,"[""Wireless Mouse""]",1801.9,{},213818,1,Europe +2023-03-05,63233,8804,"[""Phone"", ""Laptop""]",4033.29,"{"""": ""14%""}",75145,0,Africa +2023-11-12,63234,2900,"[""Phone"", ""Charger"", ""Monitor""]",4060.19,"{""loyalty"": ""28%""}",246484,0,South America +2024-07-27,63235,4317,"[""Headphones""]",3892.54,"{""promo"": ""9%""}",227579,1,South America +2023-08-14,63236,5985,"[""Headphones"", ""Charger""]",3803.13,"{""loyalty"": ""6%""}",118225,0,South America +2023-04-14,63237,2274,"[""Keyboard"", ""Charger"", ""Laptop""]",1346.17,{},243427,0,Europe +2023-02-19,63238,9219,"[""Wireless Mouse""]",1003.33,"{""seasonal"": ""29%""}",195700,0,Asia +2023-09-03,63239,9541,"[""Headphones""]",1062.98,"{"""": ""5%""}",129752,1,Asia +2024-08-05,63240,4672,"[""Phone""]",2912.31,"{"""": ""18%""}",42116,0,Asia +2024-06-28,63241,7815,"[""Charger""]",541.29,{},196523,1,Africa +2024-12-17,63242,899,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4350.81,{},158108,0,South America +2023-06-09,63243,4752,"[""Phone"", ""Headphones""]",1848.4,{},279277,1,South America +2024-12-26,63244,1081,"[""Wireless Mouse""]",435.63,{},69271,0,Europe +2023-04-22,63245,9249,"[""Laptop""]",864.11,"{""seasonal"": ""25%""}",275882,0,North America +2024-02-29,63246,9168,"[""Laptop""]",300.92,"{""loyalty"": ""15%""}",217958,0,North America +2023-09-05,63247,5922,"[""Wireless Mouse""]",2118.6,"{""promo"": ""19%""}",144160,0,Africa +2023-09-06,63248,9927,"[""Laptop""]",2007.6,"{""promo"": ""10%""}",268774,1,South America +2023-06-25,63249,1618,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1806.27,{},262290,0,Asia +2023-02-15,63250,4779,"[""Keyboard""]",547.24,{},51425,1,North America +2024-10-10,63251,758,"[""Laptop"", ""Phone"", ""Charger""]",2804.48,"{""loyalty"": ""26%""}",35798,1,Asia +2023-07-23,63252,3666,"[""Charger""]",3374.73,{},230006,1,Europe +2024-03-02,63253,1777,"[""Laptop"", ""Monitor""]",3865.22,"{""seasonal"": ""22%""}",181992,1,South America +2023-12-28,63254,4475,"[""Monitor"", ""Keyboard""]",1283.27,"{""seasonal"": ""6%""}",255883,0,North America +2023-01-19,63255,9581,"[""Wireless Mouse""]",4372.04,"{""loyalty"": ""6%""}",53534,0,North America +2024-12-25,63256,7615,"[""Keyboard"", ""Laptop"", ""Monitor""]",4369.88,"{""promo"": ""10%""}",201618,0,Africa +2023-01-31,63257,7133,"[""Laptop""]",1503.61,"{""seasonal"": ""12%""}",25594,1,Asia +2024-02-04,63258,2013,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",97.19,{},141324,0,Africa +2023-12-08,63259,5262,"[""Tablet"", ""Charger"", ""Headphones""]",3194.06,{},271111,1,Europe +2023-05-14,63260,4312,"[""Tablet""]",3246.95,"{""loyalty"": ""18%""}",217515,0,Africa +2024-11-15,63261,9383,"[""Wireless Mouse"", ""Laptop""]",1224.04,"{"""": ""30%""}",135379,0,Asia +2024-05-22,63262,5259,"[""Headphones"", ""Laptop""]",3691.47,{},143101,0,Asia +2023-12-16,63263,2873,"[""Laptop"", ""Monitor"", ""Phone""]",4109.63,{},297514,0,South America +2023-05-03,63264,9230,"[""Keyboard"", ""Laptop"", ""Tablet""]",3360.47,"{""seasonal"": ""28%""}",103129,1,North America +2024-01-19,63265,3853,"[""Wireless Mouse"", ""Phone""]",3685.96,{},265782,0,Africa +2024-02-18,63266,2189,"[""Charger""]",4205.83,"{"""": ""27%""}",267902,1,South America +2023-08-16,63267,5822,"[""Phone""]",3942.29,"{""seasonal"": ""20%""}",21506,0,Asia +2024-02-09,63268,4101,"[""Tablet"", ""Wireless Mouse""]",1788.81,{},127873,0,South America +2024-07-04,63269,2101,"[""Charger"", ""Headphones"", ""Keyboard""]",4487.8,"{""loyalty"": ""10%""}",74324,1,North America +2023-02-03,63270,3365,"[""Headphones"", ""Phone"", ""Monitor""]",2371.47,"{""promo"": ""6%""}",231796,1,North America +2024-12-12,63271,7541,"[""Headphones""]",4362.45,"{"""": ""23%""}",3958,1,Asia +2023-12-24,63272,1631,"[""Keyboard""]",1952.8,"{""loyalty"": ""5%""}",14091,1,Africa +2024-11-23,63273,3780,"[""Wireless Mouse"", ""Tablet""]",2993.43,"{""promo"": ""12%""}",209242,1,Africa +2024-12-28,63274,2291,"[""Charger"", ""Headphones""]",1110.11,{},121808,0,North America +2024-08-07,63275,9443,"[""Monitor""]",3479.3,{},299471,1,Asia +2024-05-31,63276,5310,"[""Headphones""]",803.67,"{""loyalty"": ""16%""}",46589,0,Europe +2023-01-09,63277,5479,"[""Headphones""]",2300.61,{},32741,0,Europe +2024-02-09,63278,2029,"[""Keyboard"", ""Laptop"", ""Tablet""]",1413.45,"{""seasonal"": ""16%""}",157717,0,North America +2024-01-23,63279,5947,"[""Laptop"", ""Keyboard"", ""Tablet""]",4619.06,"{""seasonal"": ""18%""}",54498,0,North America +2023-06-17,63280,5138,"[""Charger""]",2952.99,{},93659,0,Asia +2024-05-29,63281,4464,"[""Tablet""]",1378.8,"{""seasonal"": ""20%""}",84661,1,Europe +2023-11-18,63282,4725,"[""Wireless Mouse"", ""Tablet""]",3106.5,{},291135,1,Asia +2024-10-28,63283,2436,"[""Tablet"", ""Laptop"", ""Phone""]",2769.22,{},266228,1,Europe +2024-09-01,63284,1157,"[""Phone"", ""Laptop"", ""Monitor""]",445.64,"{""promo"": ""5%""}",24773,1,Africa +2023-10-10,63285,3956,"[""Laptop""]",4534.75,"{"""": ""8%""}",289752,0,South America +2024-04-23,63286,3049,"[""Wireless Mouse"", ""Tablet""]",3313.4,{},124327,0,Asia +2024-01-22,63287,5351,"[""Charger"", ""Laptop"", ""Tablet""]",2065.37,{},129239,1,North America +2023-02-17,63288,3678,"[""Laptop"", ""Monitor""]",1752.38,{},249747,0,South America +2024-01-08,63289,8643,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",933.77,"{""promo"": ""26%""}",298025,1,North America +2023-06-09,63290,6137,"[""Laptop""]",3140.06,"{""seasonal"": ""11%""}",221640,0,North America +2024-10-23,63291,7665,"[""Wireless Mouse"", ""Phone""]",2489.86,"{"""": ""26%""}",171199,0,North America +2023-06-12,63292,778,"[""Monitor"", ""Keyboard"", ""Tablet""]",196.42,"{""promo"": ""13%""}",155315,1,North America +2023-05-29,63293,6541,"[""Charger"", ""Keyboard""]",3547.66,{},157937,1,Africa +2024-08-30,63294,9133,"[""Headphones"", ""Phone""]",1381.33,"{""loyalty"": ""15%""}",5982,0,North America +2024-05-22,63295,4603,"[""Headphones""]",4001.68,"{"""": ""26%""}",72579,1,Africa +2023-02-04,63296,5810,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",324.0,"{""seasonal"": ""18%""}",76767,0,North America +2024-09-26,63297,9218,"[""Monitor""]",3365.34,"{""loyalty"": ""19%""}",126064,1,North America +2024-07-13,63298,3909,"[""Headphones""]",4298.41,{},239074,1,North America +2024-04-25,63299,335,"[""Monitor"", ""Laptop""]",1461.71,{},53495,1,Africa +2023-11-28,63300,1740,"[""Headphones"", ""Laptop""]",1720.26,{},31447,0,North America +2024-03-09,63301,9740,"[""Monitor"", ""Headphones""]",3201.0,{},94094,0,Europe +2024-01-09,63302,6463,"[""Keyboard"", ""Headphones""]",4547.53,{},45198,0,North America +2024-04-15,63303,5839,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3914.53,{},274790,0,South America +2024-10-13,63304,8610,"[""Monitor""]",3660.77,"{"""": ""17%""}",32597,0,Africa +2024-04-16,63305,893,"[""Monitor""]",2064.91,"{""promo"": ""18%""}",206028,1,South America +2023-08-26,63306,3941,"[""Charger"", ""Laptop""]",4125.78,"{"""": ""11%""}",192282,0,Asia +2024-02-24,63307,1481,"[""Headphones"", ""Tablet"", ""Phone""]",4150.14,"{""promo"": ""22%""}",5515,1,North America +2023-02-18,63308,4989,"[""Wireless Mouse"", ""Headphones""]",4820.94,"{""seasonal"": ""11%""}",178217,1,Africa +2024-12-27,63309,7322,"[""Headphones"", ""Laptop"", ""Tablet""]",1970.21,"{"""": ""24%""}",210883,0,Europe +2023-07-19,63310,65,"[""Headphones""]",62.41,{},180507,0,Africa +2023-12-05,63311,7900,"[""Laptop"", ""Monitor"", ""Keyboard""]",4763.72,"{""promo"": ""5%""}",88746,1,South America +2024-04-03,63312,3320,"[""Tablet"", ""Keyboard"", ""Laptop""]",4071.07,"{""loyalty"": ""25%""}",75207,0,Africa +2023-11-04,63313,7464,"[""Charger""]",1135.14,{},11445,1,North America +2023-07-27,63314,7314,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3165.61,{},124644,1,North America +2024-03-16,63315,3998,"[""Wireless Mouse"", ""Charger""]",343.34,{},82019,0,Europe +2024-06-26,63316,9232,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",682.46,"{""seasonal"": ""30%""}",266957,1,Africa +2023-11-19,63317,5318,"[""Laptop""]",1608.05,"{""loyalty"": ""20%""}",151422,1,Asia +2024-02-11,63318,5244,"[""Laptop""]",4009.72,"{""promo"": ""21%""}",288714,0,Asia +2023-01-24,63319,3134,"[""Keyboard"", ""Phone""]",3342.36,"{""seasonal"": ""27%""}",1498,0,Asia +2023-06-11,63320,9809,"[""Laptop"", ""Keyboard""]",3328.51,"{""seasonal"": ""22%""}",144389,0,South America +2024-05-15,63321,3553,"[""Keyboard"", ""Monitor""]",2158.33,{},260537,0,Europe +2024-06-27,63322,3369,"[""Headphones""]",4503.4,"{"""": ""25%""}",236752,0,North America +2024-05-30,63323,4340,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1154.58,"{"""": ""14%""}",148576,0,South America +2024-12-01,63324,2963,"[""Charger""]",3034.96,"{"""": ""6%""}",299895,0,Africa +2024-02-15,63325,6642,"[""Monitor""]",1139.24,"{""loyalty"": ""29%""}",270513,0,South America +2023-11-21,63326,4017,"[""Charger""]",915.83,"{"""": ""23%""}",80189,1,Africa +2023-01-07,63327,7394,"[""Monitor""]",4877.6,{},50053,1,Africa +2023-02-14,63328,9027,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2173.47,{},101841,0,Asia +2023-04-26,63329,4962,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4769.1,"{""loyalty"": ""15%""}",151609,1,Europe +2024-09-13,63330,1464,"[""Monitor""]",887.44,{},164731,0,Asia +2024-08-30,63331,567,"[""Headphones"", ""Laptop""]",1754.66,{},59176,1,Europe +2024-03-15,63332,8411,"[""Phone"", ""Keyboard"", ""Headphones""]",1426.2,"{"""": ""18%""}",177122,1,South America +2023-05-20,63333,449,"[""Headphones"", ""Phone"", ""Monitor""]",1656.82,"{""seasonal"": ""22%""}",244758,1,North America +2024-10-16,63334,8787,"[""Laptop"", ""Charger"", ""Tablet""]",117.54,{},31069,1,Africa +2024-07-27,63335,4859,"[""Charger"", ""Keyboard""]",3946.88,{},208680,1,Asia +2024-03-13,63336,4192,"[""Monitor"", ""Tablet""]",3054.31,"{""loyalty"": ""23%""}",90271,1,North America +2023-11-04,63337,8344,"[""Charger""]",901.55,{},100241,0,North America +2024-06-08,63338,1818,"[""Monitor""]",2136.8,{},237400,1,Africa +2023-01-12,63339,2863,"[""Keyboard""]",1268.06,{},220124,0,North America +2024-11-20,63340,3838,"[""Headphones"", ""Laptop"", ""Keyboard""]",2901.64,"{""promo"": ""8%""}",65421,1,Asia +2023-02-16,63341,3380,"[""Charger"", ""Tablet""]",2910.31,{},294773,0,Asia +2023-12-25,63342,630,"[""Tablet"", ""Headphones"", ""Keyboard""]",692.24,"{""seasonal"": ""15%""}",99703,1,South America +2024-07-04,63343,8380,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4956.98,"{""loyalty"": ""5%""}",282892,1,Asia +2024-06-23,63344,2804,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2444.0,{},297057,1,Europe +2024-06-19,63345,7291,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2425.95,"{"""": ""18%""}",236572,1,Africa +2024-03-12,63346,2197,"[""Phone"", ""Wireless Mouse""]",486.29,"{""seasonal"": ""16%""}",127862,1,North America +2023-07-08,63347,624,"[""Keyboard""]",110.15,"{""promo"": ""5%""}",147156,1,Europe +2024-06-19,63348,8325,"[""Phone"", ""Tablet""]",3990.7,"{""promo"": ""17%""}",171956,0,North America +2023-10-05,63349,4110,"[""Laptop"", ""Charger"", ""Keyboard""]",1399.03,{},68397,1,Europe +2023-01-11,63350,2818,"[""Charger"", ""Tablet"", ""Monitor""]",1125.78,{},132368,1,Europe +2023-12-18,63351,1526,"[""Monitor"", ""Laptop""]",1661.67,{},125708,1,Africa +2024-10-18,63352,1251,"[""Monitor"", ""Charger"", ""Laptop""]",4815.17,{},170329,1,South America +2024-07-21,63353,4803,"[""Monitor"", ""Headphones"", ""Laptop""]",3426.18,{},251938,0,Africa +2023-02-17,63354,2727,"[""Monitor""]",3478.22,{},258400,0,Africa +2024-08-09,63355,528,"[""Wireless Mouse"", ""Keyboard""]",1101.71,{},150621,1,Africa +2023-05-01,63356,336,"[""Phone"", ""Headphones""]",3767.15,{},29959,0,Europe +2024-03-27,63357,2984,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1397.85,{},253110,1,Africa +2024-04-03,63358,3610,"[""Tablet""]",3698.2,"{"""": ""30%""}",268530,0,South America +2024-06-30,63359,151,"[""Tablet"", ""Laptop"", ""Phone""]",2775.11,{},216678,0,Europe +2024-03-06,63360,274,"[""Headphones"", ""Laptop""]",3129.94,"{""promo"": ""23%""}",28637,0,Europe +2024-06-29,63361,9345,"[""Headphones"", ""Tablet""]",3708.14,"{"""": ""21%""}",135512,1,South America +2024-07-18,63362,3605,"[""Laptop""]",2640.18,"{""promo"": ""24%""}",146221,0,South America +2023-05-26,63363,5893,"[""Phone""]",913.87,{},233412,0,Africa +2023-10-01,63364,9668,"[""Monitor"", ""Wireless Mouse""]",2807.0,{},74388,1,Asia +2024-01-14,63365,4742,"[""Monitor"", ""Keyboard""]",1643.71,"{"""": ""14%""}",281837,1,South America +2024-09-16,63366,1368,"[""Phone""]",1513.66,"{""promo"": ""8%""}",58634,0,Africa +2024-08-21,63367,3742,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2786.33,"{""loyalty"": ""26%""}",145899,1,Asia +2024-07-02,63368,5364,"[""Monitor"", ""Keyboard"", ""Tablet""]",1673.46,"{""promo"": ""11%""}",30686,0,Africa +2024-03-13,63369,3842,"[""Phone"", ""Laptop"", ""Tablet""]",2052.19,"{""promo"": ""20%""}",19400,0,North America +2024-07-21,63370,3169,"[""Monitor""]",2894.01,{},196027,1,Asia +2023-06-06,63371,5677,"[""Wireless Mouse""]",4659.13,"{""promo"": ""12%""}",286428,0,Asia +2023-11-23,63372,7765,"[""Headphones""]",1586.06,"{""promo"": ""27%""}",282683,1,Europe +2023-04-10,63373,7685,"[""Phone"", ""Headphones"", ""Monitor""]",1511.14,{},111052,1,Africa +2023-12-20,63374,9819,"[""Tablet"", ""Monitor""]",4306.52,"{""seasonal"": ""24%""}",119079,1,North America +2023-08-28,63375,9149,"[""Tablet""]",1177.68,"{""seasonal"": ""30%""}",168709,1,South America +2024-12-08,63376,2436,"[""Monitor""]",1625.89,{},274909,1,Europe +2024-02-04,63377,6247,"[""Keyboard"", ""Tablet"", ""Monitor""]",564.98,{},96866,1,Africa +2023-01-22,63378,3098,"[""Laptop"", ""Charger"", ""Monitor""]",1740.45,{},252745,0,Asia +2023-04-11,63379,5505,"[""Monitor"", ""Phone""]",2036.13,{},232917,1,Asia +2023-04-15,63380,6739,"[""Charger""]",2568.08,"{""seasonal"": ""7%""}",210532,0,South America +2023-10-06,63381,9418,"[""Monitor""]",3102.15,{},158460,0,North America +2024-10-12,63382,1038,"[""Tablet"", ""Phone""]",1212.39,"{""seasonal"": ""18%""}",193145,1,Asia +2024-04-21,63383,8320,"[""Keyboard"", ""Headphones"", ""Tablet""]",700.57,{},37743,0,Asia +2023-08-21,63384,9291,"[""Keyboard"", ""Phone""]",3232.88,"{""seasonal"": ""21%""}",26320,1,North America +2024-01-18,63385,6294,"[""Charger"", ""Laptop"", ""Monitor""]",3518.35,{},26302,1,Europe +2023-02-17,63386,1941,"[""Phone"", ""Keyboard""]",780.62,"{""loyalty"": ""7%""}",69918,0,South America +2023-11-12,63387,8219,"[""Wireless Mouse"", ""Keyboard""]",3809.76,{},51024,0,Africa +2023-09-21,63388,4938,"[""Tablet"", ""Phone""]",2648.08,"{"""": ""5%""}",67409,1,North America +2024-09-03,63389,4624,"[""Headphones"", ""Keyboard""]",2161.72,"{"""": ""17%""}",87293,0,Asia +2023-03-13,63390,7117,"[""Headphones"", ""Laptop""]",3792.27,{},136989,1,Europe +2024-07-10,63391,6155,"[""Tablet"", ""Monitor""]",3234.47,"{""loyalty"": ""18%""}",48464,0,Africa +2023-03-15,63392,4362,"[""Phone""]",3867.97,{},267177,0,North America +2023-02-04,63393,5449,"[""Charger""]",1926.83,{},269494,0,Europe +2023-09-24,63394,4881,"[""Charger"", ""Headphones""]",3063.55,{},193535,0,North America +2024-05-26,63395,7456,"[""Phone""]",959.31,{},29162,0,North America +2023-05-01,63396,6578,"[""Monitor""]",824.51,{},61188,1,Africa +2024-07-27,63397,8764,"[""Phone"", ""Keyboard"", ""Tablet""]",2339.71,"{""promo"": ""9%""}",81000,1,Asia +2024-01-21,63398,2621,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1010.78,{},251991,0,South America +2023-05-05,63399,9811,"[""Headphones"", ""Phone""]",1894.06,{},21845,1,North America +2024-11-24,63400,6510,"[""Monitor""]",3483.45,"{""promo"": ""28%""}",27740,1,South America +2024-01-28,63401,3332,"[""Charger""]",1293.66,{},31321,0,South America +2023-06-05,63402,4338,"[""Headphones""]",3344.68,{},163575,1,South America +2023-09-18,63403,7133,"[""Charger"", ""Laptop"", ""Phone""]",1329.11,"{""loyalty"": ""26%""}",3152,0,Asia +2023-12-15,63404,9067,"[""Charger"", ""Phone""]",4547.86,{},177284,1,South America +2023-04-10,63405,8197,"[""Keyboard"", ""Phone""]",2088.11,"{""promo"": ""30%""}",21423,0,Asia +2024-05-26,63406,2434,"[""Charger"", ""Laptop""]",3939.93,{},110767,1,Africa +2023-08-03,63407,8996,"[""Laptop"", ""Headphones"", ""Monitor""]",2305.99,"{""promo"": ""6%""}",99856,1,Africa +2023-05-05,63408,7197,"[""Tablet"", ""Laptop"", ""Monitor""]",1218.67,{},236328,1,Europe +2024-05-13,63409,7668,"[""Wireless Mouse""]",280.16,{},10147,1,Asia +2023-11-17,63410,6036,"[""Laptop"", ""Wireless Mouse""]",4178.26,"{""seasonal"": ""5%""}",277168,1,Europe +2023-02-08,63411,4207,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1435.98,{},170818,0,Africa +2023-01-28,63412,8881,"[""Wireless Mouse""]",3560.74,{},194524,1,South America +2024-07-24,63413,2966,"[""Phone""]",3650.07,"{""loyalty"": ""27%""}",217553,1,Asia +2024-10-06,63414,5694,"[""Headphones"", ""Phone"", ""Charger""]",1762.81,"{"""": ""14%""}",208174,0,Africa +2024-08-15,63415,1952,"[""Laptop""]",3019.29,{},258281,1,North America +2024-08-22,63416,5141,"[""Laptop"", ""Wireless Mouse""]",706.02,{},131824,1,Europe +2024-07-22,63417,6328,"[""Phone"", ""Keyboard""]",862.34,"{"""": ""5%""}",100813,1,South America +2024-11-29,63418,3054,"[""Monitor""]",4309.33,{},160858,1,Asia +2023-02-28,63419,2856,"[""Monitor"", ""Keyboard""]",4515.74,{},62714,0,North America +2023-06-01,63420,628,"[""Tablet"", ""Laptop"", ""Phone""]",3229.05,{},144793,0,South America +2024-05-12,63421,5719,"[""Wireless Mouse"", ""Phone""]",1012.06,{},296759,0,North America +2023-09-30,63422,1744,"[""Phone""]",2626.6,{},267758,0,North America +2023-10-06,63423,5787,"[""Charger"", ""Headphones""]",3970.05,"{""seasonal"": ""28%""}",231305,1,Europe +2023-09-05,63424,3265,"[""Phone"", ""Monitor""]",842.03,{},296821,1,Africa +2023-10-15,63425,5523,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1692.81,"{""loyalty"": ""28%""}",167227,0,South America +2024-10-13,63426,443,"[""Laptop""]",588.36,{},168726,1,Africa +2023-06-03,63427,2591,"[""Wireless Mouse""]",3669.82,"{"""": ""12%""}",195824,1,Africa +2024-08-03,63428,3801,"[""Tablet"", ""Charger"", ""Phone""]",1729.42,"{""seasonal"": ""27%""}",27257,1,Africa +2024-04-17,63429,4183,"[""Headphones""]",3375.71,"{""promo"": ""8%""}",126861,1,North America +2024-10-16,63430,2570,"[""Tablet"", ""Monitor""]",213.43,"{""promo"": ""27%""}",89183,1,Africa +2024-10-05,63431,2643,"[""Keyboard"", ""Monitor"", ""Charger""]",4364.67,{},283419,1,Asia +2023-05-27,63432,7146,"[""Charger"", ""Monitor""]",3845.15,{},134785,0,Europe +2023-06-21,63433,3862,"[""Wireless Mouse""]",2649.95,"{""promo"": ""25%""}",213147,0,Asia +2024-01-07,63434,8789,"[""Headphones"", ""Monitor""]",4214.03,{},265598,1,Africa +2024-09-23,63435,4784,"[""Headphones"", ""Tablet""]",2400.92,{},117267,1,South America +2024-01-11,63436,4954,"[""Monitor""]",3250.51,{},93382,0,Asia +2023-08-31,63437,8797,"[""Wireless Mouse""]",2864.55,{},178297,1,Asia +2023-06-23,63438,9047,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4930.23,"{""loyalty"": ""11%""}",185424,0,Africa +2023-07-29,63439,9036,"[""Phone""]",1102.2,"{"""": ""20%""}",192903,0,Europe +2024-04-12,63440,6743,"[""Keyboard"", ""Phone""]",1215.94,"{""seasonal"": ""23%""}",26048,1,South America +2024-04-27,63441,7422,"[""Charger"", ""Headphones"", ""Laptop""]",3715.92,{},118924,1,Africa +2024-01-03,63442,6561,"[""Headphones""]",2886.68,"{""promo"": ""21%""}",117938,1,Europe +2023-02-07,63443,7552,"[""Monitor""]",1349.44,"{""promo"": ""29%""}",221910,0,Africa +2023-12-12,63444,8221,"[""Monitor"", ""Headphones""]",3486.9,{},151749,1,South America +2024-04-10,63445,6468,"[""Phone""]",1714.95,{},89228,1,Europe +2023-08-14,63446,5709,"[""Laptop"", ""Tablet""]",4878.94,"{""promo"": ""25%""}",223528,0,South America +2023-10-27,63447,1631,"[""Charger"", ""Tablet"", ""Monitor""]",453.69,{},49752,1,Europe +2024-10-21,63448,7235,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1356.88,{},263166,1,Europe +2024-05-22,63449,9343,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1440.47,{},62965,0,North America +2024-06-28,63450,2207,"[""Laptop"", ""Wireless Mouse""]",2309.45,{},39908,0,North America +2024-03-21,63451,594,"[""Tablet"", ""Wireless Mouse""]",758.33,{},272257,0,Africa +2024-09-24,63452,7236,"[""Headphones"", ""Keyboard"", ""Laptop""]",2628.21,"{""seasonal"": ""21%""}",20128,1,Europe +2023-11-28,63453,2025,"[""Charger"", ""Tablet""]",3597.72,{},154844,1,South America +2024-08-05,63454,2560,"[""Headphones"", ""Phone""]",3614.54,"{"""": ""30%""}",196015,0,South America +2024-03-11,63455,397,"[""Headphones"", ""Tablet"", ""Monitor""]",353.59,{},202395,1,North America +2023-06-25,63456,2561,"[""Charger"", ""Keyboard"", ""Headphones""]",112.44,"{""loyalty"": ""22%""}",221459,0,South America +2023-02-05,63457,7383,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4049.4,"{""seasonal"": ""14%""}",65345,1,Europe +2024-08-14,63458,9723,"[""Tablet"", ""Keyboard""]",2127.54,{},164859,0,Europe +2024-06-07,63459,2786,"[""Headphones"", ""Wireless Mouse""]",4806.71,"{"""": ""30%""}",233049,1,North America +2023-10-22,63460,8389,"[""Tablet""]",2045.15,{},231066,1,Africa +2024-12-13,63461,1096,"[""Charger"", ""Laptop""]",1525.08,"{""loyalty"": ""10%""}",58265,1,Asia +2023-06-24,63462,6793,"[""Keyboard"", ""Charger"", ""Laptop""]",3214.67,{},70604,1,South America +2023-09-14,63463,6315,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",517.0,{},52636,1,Asia +2023-04-12,63464,7362,"[""Charger"", ""Laptop""]",4560.63,"{""loyalty"": ""5%""}",255260,0,Asia +2023-11-09,63465,2229,"[""Headphones"", ""Laptop"", ""Charger""]",4629.72,"{""seasonal"": ""23%""}",164880,1,North America +2023-08-22,63466,2700,"[""Keyboard"", ""Laptop""]",1408.27,"{""promo"": ""18%""}",117634,0,Africa +2024-11-29,63467,9419,"[""Charger""]",1486.03,{},43717,1,South America +2023-05-28,63468,4648,"[""Charger"", ""Laptop""]",4439.89,{},35059,1,Asia +2024-01-05,63469,9228,"[""Charger"", ""Wireless Mouse""]",3594.92,"{"""": ""7%""}",293669,0,Europe +2024-01-08,63470,63,"[""Charger""]",3439.56,{},239505,0,North America +2024-10-27,63471,9069,"[""Phone""]",577.57,"{""loyalty"": ""12%""}",53073,0,Europe +2023-04-30,63472,1788,"[""Wireless Mouse"", ""Headphones""]",4566.44,"{"""": ""25%""}",173749,0,Asia +2023-08-24,63473,7256,"[""Tablet""]",1818.01,{},246543,0,South America +2024-02-04,63474,9593,"[""Phone""]",595.09,{},159882,1,North America +2024-09-13,63475,2589,"[""Laptop"", ""Phone""]",666.79,"{"""": ""11%""}",295674,1,North America +2024-12-13,63476,8141,"[""Keyboard"", ""Wireless Mouse""]",1421.06,{},77192,0,North America +2023-04-27,63477,8534,"[""Tablet""]",1404.88,"{"""": ""17%""}",81538,1,Europe +2024-02-16,63478,1009,"[""Monitor"", ""Tablet"", ""Keyboard""]",4453.75,"{""seasonal"": ""7%""}",31371,1,Asia +2024-12-23,63479,8491,"[""Tablet""]",3273.95,"{""promo"": ""11%""}",268398,1,Europe +2024-02-19,63480,6498,"[""Laptop"", ""Phone"", ""Tablet""]",697.36,{},56720,1,North America +2023-07-18,63481,3185,"[""Monitor""]",268.84,{},75680,0,North America +2024-09-25,63482,3066,"[""Phone"", ""Tablet""]",1745.86,{},263309,1,South America +2024-12-08,63483,8982,"[""Keyboard"", ""Tablet""]",4721.16,"{""loyalty"": ""22%""}",230030,1,North America +2024-02-06,63484,9294,"[""Tablet""]",346.62,{},114647,0,North America +2023-12-25,63485,722,"[""Wireless Mouse""]",1646.97,"{""loyalty"": ""23%""}",133570,1,Africa +2023-01-24,63486,3276,"[""Tablet""]",2679.04,{},109667,0,Asia +2023-08-16,63487,2764,"[""Charger""]",4051.59,"{""seasonal"": ""30%""}",114024,1,Europe +2023-12-16,63488,5868,"[""Laptop"", ""Phone""]",870.26,"{"""": ""24%""}",244205,1,Africa +2024-06-12,63489,151,"[""Charger"", ""Monitor""]",1492.97,"{"""": ""22%""}",283390,1,North America +2023-03-13,63490,4129,"[""Keyboard"", ""Tablet""]",4032.75,"{""seasonal"": ""27%""}",208862,1,Asia +2024-01-06,63491,4594,"[""Keyboard""]",3477.33,{},87013,0,South America +2024-04-03,63492,2650,"[""Laptop"", ""Monitor"", ""Keyboard""]",276.38,"{"""": ""26%""}",113198,1,Asia +2023-10-26,63493,1460,"[""Keyboard"", ""Charger""]",1967.78,{},168968,0,Europe +2023-05-14,63494,5794,"[""Monitor"", ""Charger"", ""Laptop""]",2671.02,"{""seasonal"": ""8%""}",208063,0,Europe +2023-06-25,63495,9433,"[""Charger"", ""Phone"", ""Laptop""]",745.74,"{""loyalty"": ""20%""}",237943,0,South America +2023-08-18,63496,4479,"[""Charger""]",3389.73,{},146048,1,Asia +2023-08-11,63497,7048,"[""Keyboard""]",3527.2,"{"""": ""24%""}",260660,0,South America +2023-02-28,63498,1707,"[""Wireless Mouse""]",183.27,"{"""": ""19%""}",75552,1,Africa +2023-12-27,63499,5782,"[""Laptop""]",377.84,"{""promo"": ""20%""}",189903,0,Asia +2024-06-18,63500,9286,"[""Phone"", ""Monitor"", ""Headphones""]",3287.31,{},25041,1,Africa +2023-09-28,63501,9458,"[""Tablet"", ""Headphones"", ""Laptop""]",4855.49,{},74119,0,South America +2024-10-10,63502,327,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1602.64,"{"""": ""14%""}",220713,1,Europe +2023-05-12,63503,9339,"[""Keyboard"", ""Tablet""]",4490.09,"{""seasonal"": ""16%""}",199049,0,North America +2024-05-05,63504,3069,"[""Phone"", ""Headphones"", ""Charger""]",2917.94,{},289394,0,Asia +2023-03-22,63505,8213,"[""Headphones"", ""Charger""]",281.46,{},104608,1,Africa +2024-05-17,63506,1963,"[""Monitor"", ""Phone"", ""Laptop""]",2490.87,{},153828,1,Europe +2023-12-06,63507,3918,"[""Keyboard"", ""Phone""]",1112.52,"{"""": ""14%""}",26922,0,Asia +2024-04-24,63508,6297,"[""Charger"", ""Wireless Mouse""]",839.32,{},9276,1,North America +2024-04-29,63509,1242,"[""Wireless Mouse"", ""Laptop""]",667.62,"{""seasonal"": ""13%""}",271728,0,South America +2024-01-30,63510,6594,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1335.01,{},207372,0,Asia +2023-01-21,63511,1238,"[""Charger"", ""Laptop""]",3679.25,"{""loyalty"": ""5%""}",4946,1,South America +2024-02-06,63512,1196,"[""Charger"", ""Headphones"", ""Tablet""]",3643.56,"{""loyalty"": ""28%""}",232896,1,Europe +2023-07-10,63513,4868,"[""Tablet"", ""Monitor""]",2274.7,"{""seasonal"": ""13%""}",81160,0,Europe +2023-09-24,63514,2251,"[""Wireless Mouse""]",2665.23,"{""loyalty"": ""12%""}",6197,1,North America +2023-10-18,63515,828,"[""Laptop"", ""Charger"", ""Phone""]",203.11,"{"""": ""22%""}",178820,1,South America +2024-08-28,63516,2675,"[""Laptop"", ""Wireless Mouse""]",1738.48,"{"""": ""26%""}",2241,0,Asia +2024-05-20,63517,2839,"[""Monitor"", ""Keyboard"", ""Charger""]",4352.67,{},170966,1,Asia +2024-07-04,63518,8114,"[""Monitor"", ""Phone"", ""Headphones""]",2107.43,{},38596,1,Europe +2023-12-30,63519,1696,"[""Laptop""]",4063.62,{},161276,1,Europe +2024-06-28,63520,1611,"[""Headphones"", ""Keyboard""]",3139.88,{},222245,1,Europe +2024-08-13,63521,9106,"[""Charger""]",1766.83,"{""promo"": ""19%""}",230531,1,South America +2024-01-26,63522,1557,"[""Wireless Mouse""]",4464.86,{},41057,1,Asia +2023-03-12,63523,9798,"[""Keyboard"", ""Tablet""]",343.4,{},8558,0,Europe +2024-02-23,63524,7325,"[""Keyboard""]",4721.52,{},50609,1,South America +2023-04-25,63525,4902,"[""Phone"", ""Monitor""]",2420.48,{},70850,1,Africa +2024-02-24,63526,1050,"[""Monitor"", ""Keyboard""]",4621.63,{},254361,1,North America +2023-08-16,63527,8024,"[""Charger""]",734.72,{},60586,0,Africa +2024-06-21,63528,8730,"[""Wireless Mouse""]",4173.75,"{""seasonal"": ""25%""}",49337,1,Africa +2023-10-17,63529,8054,"[""Keyboard"", ""Tablet""]",2327.29,{},239716,0,South America +2024-10-01,63530,3510,"[""Phone"", ""Wireless Mouse""]",1475.09,"{""loyalty"": ""11%""}",25431,1,North America +2024-12-24,63531,7976,"[""Keyboard"", ""Wireless Mouse""]",2449.44,"{""promo"": ""8%""}",38305,1,Europe +2023-04-21,63532,3109,"[""Laptop"", ""Phone""]",215.64,{},267115,1,North America +2024-08-24,63533,6890,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2030.26,"{""promo"": ""27%""}",49945,0,Africa +2023-12-18,63534,6859,"[""Phone""]",1555.67,"{""promo"": ""8%""}",49251,1,South America +2023-08-26,63535,4849,"[""Monitor""]",2997.7,"{""loyalty"": ""24%""}",115131,1,North America +2024-03-21,63536,1933,"[""Phone"", ""Tablet""]",4117.14,{},63803,0,Europe +2024-04-05,63537,6975,"[""Laptop"", ""Tablet""]",3876.36,{},67814,1,Asia +2024-01-20,63538,8778,"[""Tablet"", ""Laptop""]",4941.48,"{"""": ""11%""}",271964,1,Europe +2024-03-19,63539,7619,"[""Monitor""]",2819.63,{},17452,0,South America +2023-06-25,63540,6155,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2623.89,"{"""": ""13%""}",184409,1,South America +2024-12-19,63541,7270,"[""Tablet"", ""Monitor""]",2895.64,{},233262,0,South America +2024-11-17,63542,913,"[""Monitor""]",633.71,{},67961,0,North America +2024-01-09,63543,1248,"[""Tablet"", ""Charger""]",1431.31,"{""loyalty"": ""15%""}",272842,1,Africa +2024-11-01,63544,8780,"[""Charger"", ""Laptop""]",127.33,{},52490,0,North America +2024-10-09,63545,8514,"[""Laptop"", ""Phone""]",2614.59,{},190573,0,Europe +2024-05-15,63546,2890,"[""Monitor""]",3429.31,"{""seasonal"": ""30%""}",33807,0,Europe +2024-12-28,63547,3260,"[""Charger"", ""Monitor""]",101.19,{},191133,1,South America +2024-07-20,63548,2994,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",446.07,"{""seasonal"": ""26%""}",245421,1,Asia +2024-05-31,63549,3127,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2373.78,"{""promo"": ""16%""}",287509,0,Europe +2023-03-20,63550,8347,"[""Tablet""]",3949.02,"{"""": ""7%""}",268485,0,Africa +2024-04-05,63551,8130,"[""Monitor"", ""Wireless Mouse""]",1000.88,"{""promo"": ""17%""}",261090,0,North America +2024-03-15,63552,8624,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1035.4,{},264510,1,Asia +2024-05-08,63553,5352,"[""Tablet"", ""Phone""]",374.93,{},120067,1,Europe +2023-08-01,63554,3535,"[""Wireless Mouse"", ""Headphones""]",3757.34,"{""seasonal"": ""21%""}",152406,1,South America +2024-02-03,63555,776,"[""Charger"", ""Wireless Mouse""]",259.87,"{""loyalty"": ""12%""}",65098,0,South America +2024-01-14,63556,2468,"[""Wireless Mouse""]",4568.18,{},251075,1,Europe +2024-11-28,63557,7025,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4342.52,"{""loyalty"": ""5%""}",105723,0,South America +2023-09-22,63558,8114,"[""Phone"", ""Headphones""]",169.36,{},107242,1,North America +2023-05-13,63559,6992,"[""Charger"", ""Monitor"", ""Laptop""]",2327.02,{},11006,1,South America +2023-02-07,63560,7181,"[""Keyboard""]",2143.18,"{"""": ""21%""}",128632,1,Europe +2023-07-30,63561,9694,"[""Tablet"", ""Monitor"", ""Keyboard""]",3407.26,{},196952,0,Asia +2024-10-10,63562,2449,"[""Laptop"", ""Charger""]",1507.62,{},22522,0,Asia +2024-09-19,63563,1800,"[""Tablet""]",2393.57,{},42289,0,South America +2024-02-22,63564,8909,"[""Monitor"", ""Keyboard""]",1855.06,"{""loyalty"": ""20%""}",225431,1,South America +2024-06-25,63565,4834,"[""Phone"", ""Monitor""]",4497.2,"{""promo"": ""11%""}",79664,1,Europe +2024-11-13,63566,6271,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3393.48,{},262500,1,Europe +2023-06-08,63567,8984,"[""Monitor"", ""Headphones""]",3186.87,"{"""": ""8%""}",221091,0,North America +2023-11-18,63568,1729,"[""Tablet""]",1249.52,{},85647,1,North America +2023-08-06,63569,3794,"[""Charger"", ""Tablet""]",4342.25,{},177772,1,North America +2024-01-20,63570,8469,"[""Keyboard"", ""Wireless Mouse""]",3481.93,{},102946,0,South America +2023-10-20,63571,2626,"[""Charger""]",4973.34,"{""loyalty"": ""30%""}",266885,0,North America +2023-09-18,63572,2480,"[""Charger""]",3568.54,"{""seasonal"": ""21%""}",58525,0,North America +2024-01-21,63573,5525,"[""Tablet""]",3292.05,{},98691,1,North America +2023-09-17,63574,5483,"[""Tablet""]",4279.71,"{""promo"": ""6%""}",211873,1,South America +2023-09-26,63575,1344,"[""Charger"", ""Phone""]",3462.04,{},54578,1,Africa +2024-02-27,63576,283,"[""Headphones"", ""Charger"", ""Phone""]",2480.97,"{""loyalty"": ""19%""}",99653,0,South America +2023-03-09,63577,5840,"[""Keyboard""]",3034.16,{},276189,1,Africa +2024-08-20,63578,1004,"[""Tablet"", ""Phone""]",3350.23,{},101574,1,North America +2023-06-06,63579,9533,"[""Wireless Mouse""]",2720.09,"{"""": ""24%""}",193283,0,Africa +2024-07-11,63580,2845,"[""Tablet""]",3069.04,{},12040,0,South America +2024-02-11,63581,7926,"[""Keyboard""]",906.0,{},54449,0,Asia +2023-06-04,63582,8087,"[""Monitor"", ""Tablet"", ""Keyboard""]",3448.41,{},262357,0,Asia +2023-12-17,63583,1443,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1571.68,{},176746,1,Africa +2024-12-28,63584,6049,"[""Phone"", ""Laptop""]",1545.97,"{""loyalty"": ""16%""}",275622,1,North America +2024-05-13,63585,9584,"[""Wireless Mouse""]",1509.74,"{"""": ""8%""}",108465,0,Europe +2024-10-13,63586,2755,"[""Charger"", ""Headphones""]",4827.76,{},71154,1,Europe +2024-12-14,63587,3566,"[""Laptop"", ""Monitor"", ""Keyboard""]",3788.44,{},50054,0,Asia +2024-10-29,63588,9193,"[""Keyboard"", ""Tablet"", ""Charger""]",832.15,"{""seasonal"": ""26%""}",62313,0,South America +2024-03-08,63589,6214,"[""Headphones"", ""Phone""]",4372.65,"{""loyalty"": ""27%""}",2879,1,Africa +2023-07-30,63590,4754,"[""Keyboard"", ""Monitor"", ""Laptop""]",2729.06,{},121238,1,Africa +2024-03-12,63591,8374,"[""Wireless Mouse""]",936.04,"{""seasonal"": ""11%""}",144844,0,Africa +2023-09-18,63592,7142,"[""Tablet"", ""Charger"", ""Monitor""]",3501.73,{},212358,0,Europe +2023-07-06,63593,9541,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4645.42,{},122476,1,South America +2024-07-10,63594,5930,"[""Charger""]",3088.1,{},250600,0,South America +2024-07-19,63595,4578,"[""Charger""]",4248.89,"{"""": ""22%""}",210042,0,North America +2023-05-15,63596,509,"[""Wireless Mouse""]",2349.18,"{""promo"": ""19%""}",18848,0,North America +2023-12-21,63597,6846,"[""Keyboard""]",4361.71,"{"""": ""16%""}",149771,1,Asia +2023-03-19,63598,1293,"[""Tablet"", ""Laptop"", ""Monitor""]",1225.51,"{""promo"": ""9%""}",239750,1,Asia +2023-08-10,63599,5908,"[""Headphones""]",4997.95,{},93001,1,Africa +2023-03-07,63600,8171,"[""Headphones""]",987.59,"{""seasonal"": ""26%""}",203715,1,South America +2023-04-04,63601,8513,"[""Laptop"", ""Tablet""]",430.58,"{"""": ""5%""}",145693,0,Europe +2024-03-09,63602,5070,"[""Headphones"", ""Phone""]",3396.41,"{""seasonal"": ""8%""}",137717,1,North America +2023-10-28,63603,6260,"[""Laptop""]",64.7,"{""seasonal"": ""14%""}",134358,0,South America +2023-04-14,63604,4990,"[""Phone"", ""Laptop"", ""Tablet""]",4442.96,"{""seasonal"": ""19%""}",12810,0,Europe +2023-05-08,63605,1991,"[""Tablet""]",91.61,"{"""": ""13%""}",219396,0,Europe +2024-08-01,63606,8307,"[""Laptop"", ""Tablet"", ""Charger""]",1116.62,{},106280,0,Asia +2024-04-05,63607,1957,"[""Keyboard""]",4608.53,{},252955,0,Africa +2024-12-06,63608,2400,"[""Wireless Mouse""]",4907.58,{},265825,1,North America +2023-02-27,63609,9714,"[""Keyboard"", ""Laptop"", ""Phone""]",993.2,"{"""": ""18%""}",45850,1,Africa +2024-07-26,63610,4109,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3148.57,"{""promo"": ""22%""}",210289,1,Africa +2024-02-11,63611,6754,"[""Headphones"", ""Phone""]",3711.23,"{""seasonal"": ""19%""}",233964,0,Asia +2024-04-27,63612,4439,"[""Phone""]",1230.14,"{""seasonal"": ""7%""}",158377,1,Asia +2023-07-08,63613,2024,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4200.74,{},210843,1,Asia +2024-05-31,63614,1859,"[""Headphones""]",1241.8,"{""promo"": ""15%""}",20655,1,Asia +2024-12-09,63615,8830,"[""Keyboard""]",1109.76,"{""loyalty"": ""21%""}",150718,0,North America +2024-08-05,63616,8870,"[""Monitor"", ""Laptop""]",4799.34,"{""promo"": ""19%""}",77081,0,Europe +2023-02-04,63617,960,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4247.41,{},290713,0,North America +2023-05-01,63618,1954,"[""Wireless Mouse"", ""Phone""]",1541.19,{},211283,0,Europe +2024-04-01,63619,894,"[""Tablet""]",2267.87,{},260108,0,Europe +2023-03-17,63620,7578,"[""Phone""]",2781.46,"{""promo"": ""15%""}",188309,0,Africa +2024-07-15,63621,9601,"[""Monitor"", ""Phone""]",3912.56,"{""loyalty"": ""30%""}",24257,1,Europe +2023-01-20,63622,867,"[""Charger"", ""Headphones"", ""Phone""]",544.32,"{""loyalty"": ""14%""}",141440,0,Europe +2024-06-18,63623,9755,"[""Charger""]",3224.55,"{"""": ""14%""}",291832,1,Europe +2023-10-26,63624,7222,"[""Tablet"", ""Keyboard""]",206.03,"{""promo"": ""14%""}",192151,1,North America +2024-07-26,63625,779,"[""Wireless Mouse""]",1723.32,{},124157,1,Asia +2023-06-05,63626,2867,"[""Headphones""]",4133.88,{},156552,1,Africa +2023-02-16,63627,2308,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2430.3,"{""seasonal"": ""30%""}",127821,0,South America +2024-01-25,63628,6313,"[""Tablet"", ""Monitor""]",2520.58,"{""seasonal"": ""12%""}",89308,1,Africa +2024-08-26,63629,8285,"[""Tablet"", ""Keyboard""]",304.98,"{""promo"": ""23%""}",118234,0,Europe +2024-08-02,63630,6254,"[""Laptop""]",1978.19,"{""loyalty"": ""10%""}",206515,1,Africa +2023-08-11,63631,306,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4027.69,{},188038,0,South America +2023-12-13,63632,3243,"[""Phone"", ""Tablet""]",4276.75,"{"""": ""21%""}",44589,0,Africa +2024-11-30,63633,4644,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3126.5,"{""loyalty"": ""14%""}",282531,0,Africa +2023-08-23,63634,8345,"[""Charger""]",2595.58,{},26328,1,Africa +2024-01-22,63635,1613,"[""Tablet"", ""Charger"", ""Keyboard""]",2442.89,{},80198,0,South America +2023-07-04,63636,7178,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",149.53,{},284758,1,Africa +2024-03-29,63637,5635,"[""Charger"", ""Phone""]",2995.84,"{"""": ""17%""}",115024,1,Europe +2024-03-14,63638,442,"[""Tablet"", ""Laptop""]",190.93,"{""seasonal"": ""7%""}",34568,0,Europe +2024-09-05,63639,1087,"[""Headphones""]",776.52,{},166425,1,North America +2023-01-13,63640,3345,"[""Wireless Mouse""]",870.53,"{"""": ""13%""}",36078,1,North America +2023-12-04,63641,1109,"[""Headphones"", ""Monitor""]",2162.42,"{""loyalty"": ""11%""}",62650,0,South America +2024-11-02,63642,8928,"[""Headphones""]",723.76,{},150418,0,North America +2023-03-03,63643,1037,"[""Wireless Mouse"", ""Headphones""]",3427.92,"{""loyalty"": ""16%""}",3143,0,North America +2023-03-28,63644,8752,"[""Charger"", ""Phone""]",2182.89,{},208940,0,South America +2024-05-05,63645,715,"[""Monitor""]",4845.92,{},126553,0,Asia +2023-12-28,63646,5520,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2466.51,"{""loyalty"": ""25%""}",235503,1,Europe +2023-07-13,63647,3446,"[""Headphones""]",4760.62,"{""promo"": ""29%""}",87335,0,Africa +2023-10-22,63648,4794,"[""Laptop""]",4237.32,"{"""": ""13%""}",119826,1,South America +2023-01-21,63649,2823,"[""Headphones""]",4816.82,{},128437,0,Europe +2024-12-28,63650,2804,"[""Laptop"", ""Monitor""]",1487.47,{},108050,0,South America +2023-05-20,63651,2929,"[""Headphones"", ""Laptop""]",1805.06,"{""seasonal"": ""11%""}",247088,1,Asia +2023-09-08,63652,9349,"[""Charger"", ""Headphones"", ""Laptop""]",1111.62,{},151132,1,Europe +2024-12-15,63653,4084,"[""Laptop""]",4404.04,{},128429,0,South America +2023-06-14,63654,6699,"[""Phone"", ""Wireless Mouse""]",1914.39,{},99349,0,Africa +2024-04-30,63655,693,"[""Headphones""]",4018.29,"{"""": ""21%""}",77805,1,Europe +2023-03-22,63656,2495,"[""Tablet"", ""Keyboard"", ""Headphones""]",2060.49,"{""seasonal"": ""27%""}",234189,1,South America +2023-01-11,63657,9219,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4919.86,"{""seasonal"": ""10%""}",278986,0,Asia +2023-03-31,63658,1782,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2406.76,"{""seasonal"": ""17%""}",26965,0,Asia +2024-02-27,63659,1087,"[""Wireless Mouse""]",4751.46,{},224796,0,Africa +2023-03-14,63660,2632,"[""Laptop"", ""Tablet"", ""Monitor""]",1207.71,"{"""": ""8%""}",228038,0,Asia +2024-10-07,63661,3205,"[""Headphones"", ""Phone"", ""Charger""]",1819.36,{},115934,1,Africa +2024-03-10,63662,6248,"[""Headphones"", ""Laptop""]",3576.19,"{""promo"": ""25%""}",293464,1,Africa +2024-10-28,63663,3669,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4364.49,"{""promo"": ""20%""}",132090,1,Asia +2024-08-03,63664,264,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1376.91,{},81598,1,Europe +2023-05-25,63665,1133,"[""Charger""]",892.41,"{""seasonal"": ""5%""}",52477,0,North America +2024-08-11,63666,3618,"[""Keyboard""]",4702.98,{},37154,0,Africa +2023-06-25,63667,4275,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2339.98,{},73326,0,Asia +2024-03-28,63668,1666,"[""Laptop""]",4452.2,{},32157,0,Africa +2024-02-13,63669,7398,"[""Charger""]",4581.76,{},216991,1,Africa +2023-04-19,63670,5484,"[""Wireless Mouse"", ""Phone""]",3488.5,{},117256,0,South America +2023-03-10,63671,4626,"[""Charger""]",3582.33,"{""promo"": ""6%""}",15708,1,South America +2024-02-21,63672,2553,"[""Monitor"", ""Tablet"", ""Headphones""]",2935.43,{},102243,0,North America +2024-11-15,63673,1913,"[""Headphones""]",2907.87,"{"""": ""24%""}",73411,1,Europe +2024-07-08,63674,8456,"[""Phone"", ""Charger""]",2532.52,"{"""": ""16%""}",282802,0,Europe +2023-07-30,63675,2836,"[""Wireless Mouse""]",448.79,{},202670,0,Asia +2024-03-01,63676,3451,"[""Phone"", ""Monitor""]",4479.36,"{""promo"": ""19%""}",125008,0,Asia +2023-12-04,63677,3350,"[""Laptop"", ""Phone""]",1556.06,"{""promo"": ""19%""}",157284,1,Africa +2023-02-24,63678,6501,"[""Headphones""]",1772.14,{},245977,0,South America +2024-04-18,63679,471,"[""Laptop"", ""Headphones""]",4569.29,{},13422,1,Africa +2024-01-18,63680,4194,"[""Tablet"", ""Phone"", ""Laptop""]",4886.28,{},261130,1,South America +2024-07-25,63681,8873,"[""Monitor"", ""Keyboard""]",4855.81,{},197584,0,North America +2024-12-15,63682,590,"[""Phone"", ""Headphones""]",3824.26,{},129649,0,Europe +2023-02-17,63683,8117,"[""Keyboard""]",4950.77,"{"""": ""12%""}",9057,0,Europe +2023-06-09,63684,835,"[""Tablet"", ""Charger""]",2375.77,"{""promo"": ""8%""}",220342,1,Africa +2023-01-09,63685,2823,"[""Phone""]",136.0,"{"""": ""21%""}",166925,0,North America +2024-08-08,63686,5374,"[""Monitor""]",3413.07,"{"""": ""21%""}",295562,0,Europe +2023-10-02,63687,250,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1253.01,{},157344,0,Africa +2024-05-07,63688,6216,"[""Phone"", ""Keyboard""]",601.78,"{""promo"": ""25%""}",67582,1,South America +2024-03-24,63689,216,"[""Charger""]",4240.03,"{""loyalty"": ""30%""}",257479,0,Asia +2023-09-05,63690,454,"[""Keyboard""]",3865.37,"{""seasonal"": ""13%""}",130701,1,North America +2024-05-14,63691,5735,"[""Keyboard"", ""Tablet""]",271.52,"{"""": ""22%""}",85083,1,Africa +2024-05-09,63692,4970,"[""Headphones"", ""Laptop""]",3184.24,{},97983,1,Asia +2024-09-20,63693,9076,"[""Tablet"", ""Charger""]",1013.52,"{"""": ""10%""}",292043,1,Europe +2024-09-11,63694,6250,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1927.96,{},99090,0,Asia +2024-10-21,63695,9191,"[""Tablet"", ""Wireless Mouse""]",4711.19,"{""loyalty"": ""24%""}",93982,1,Europe +2023-07-24,63696,3431,"[""Keyboard"", ""Tablet""]",2033.02,"{""promo"": ""30%""}",18438,0,Europe +2023-09-20,63697,5415,"[""Monitor"", ""Headphones""]",3160.29,{},74491,1,Asia +2023-05-17,63698,8340,"[""Charger"", ""Tablet""]",4402.47,{},136512,0,Africa +2024-09-23,63699,471,"[""Phone"", ""Tablet"", ""Monitor""]",2131.67,{},60325,0,Europe +2023-06-20,63700,3090,"[""Monitor"", ""Headphones"", ""Keyboard""]",1590.95,"{""promo"": ""13%""}",181141,1,North America +2024-10-25,63701,2788,"[""Monitor""]",3257.03,{},277938,0,Asia +2024-04-18,63702,1990,"[""Charger"", ""Headphones"", ""Phone""]",3064.95,"{""loyalty"": ""19%""}",86081,1,North America +2024-02-12,63703,6584,"[""Phone""]",3885.06,"{""promo"": ""23%""}",85282,1,South America +2024-02-24,63704,5774,"[""Charger"", ""Phone"", ""Headphones""]",2024.46,{},132041,0,Africa +2024-12-19,63705,7975,"[""Phone"", ""Wireless Mouse""]",3349.03,{},114858,1,South America +2023-08-01,63706,9561,"[""Keyboard""]",3462.12,{},87196,1,South America +2024-04-05,63707,2401,"[""Phone""]",2384.68,{},281768,1,Asia +2024-08-08,63708,1584,"[""Charger"", ""Phone""]",2736.15,"{""seasonal"": ""5%""}",204604,1,South America +2024-07-19,63709,1821,"[""Headphones""]",3148.53,"{""promo"": ""5%""}",201267,0,North America +2023-02-26,63710,5678,"[""Headphones"", ""Keyboard"", ""Phone""]",3584.89,"{""promo"": ""10%""}",268279,1,Europe +2024-12-26,63711,5529,"[""Wireless Mouse"", ""Tablet""]",3507.09,{},169958,1,South America +2024-01-26,63712,7956,"[""Wireless Mouse"", ""Headphones""]",3282.5,{},135979,1,Europe +2023-11-08,63713,5605,"[""Phone"", ""Laptop""]",2722.61,{},255858,0,Europe +2023-01-13,63714,3959,"[""Monitor"", ""Charger"", ""Laptop""]",3726.04,{},178064,0,Europe +2024-01-03,63715,6344,"[""Charger""]",1983.23,"{""loyalty"": ""7%""}",233933,1,Europe +2023-01-05,63716,6031,"[""Headphones"", ""Tablet""]",3707.41,{},66751,1,Africa +2024-08-31,63717,8560,"[""Wireless Mouse""]",3109.11,"{""loyalty"": ""24%""}",141320,0,Asia +2023-01-13,63718,9659,"[""Monitor"", ""Phone""]",1285.3,{},178605,0,North America +2023-07-23,63719,2944,"[""Keyboard""]",2157.83,"{""loyalty"": ""21%""}",138995,0,Asia +2023-06-12,63720,9225,"[""Charger""]",3248.96,"{""seasonal"": ""17%""}",196653,0,North America +2023-10-19,63721,3509,"[""Laptop""]",4309.87,"{""promo"": ""6%""}",9993,1,North America +2023-12-21,63722,1363,"[""Charger"", ""Tablet"", ""Laptop""]",1347.41,{},134971,1,South America +2023-04-07,63723,1248,"[""Monitor"", ""Charger"", ""Tablet""]",3426.67,{},11252,1,Africa +2023-10-27,63724,8782,"[""Headphones"", ""Keyboard""]",2611.26,{},129163,0,North America +2024-09-15,63725,9643,"[""Monitor""]",2696.01,{},56660,0,Europe +2024-07-17,63726,1797,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",766.74,{},188446,1,Africa +2023-08-26,63727,9214,"[""Laptop"", ""Phone"", ""Keyboard""]",4530.57,{},198045,1,North America +2024-06-08,63728,7080,"[""Laptop""]",342.68,"{""promo"": ""9%""}",214388,0,Asia +2024-10-25,63729,9699,"[""Keyboard"", ""Tablet""]",3876.28,{},212328,0,Asia +2024-11-27,63730,1385,"[""Charger"", ""Laptop""]",3748.32,"{"""": ""17%""}",122336,0,Europe +2023-08-30,63731,149,"[""Keyboard""]",4828.69,{},195718,1,Africa +2023-03-11,63732,3699,"[""Keyboard"", ""Headphones"", ""Tablet""]",2276.86,{},154195,0,Asia +2023-03-31,63733,1651,"[""Wireless Mouse""]",1013.39,"{""seasonal"": ""21%""}",287015,0,Africa +2023-01-20,63734,8464,"[""Headphones"", ""Tablet"", ""Laptop""]",476.12,{},186498,1,South America +2024-09-06,63735,404,"[""Monitor"", ""Tablet""]",1377.76,"{"""": ""23%""}",81508,1,South America +2024-03-08,63736,1149,"[""Monitor"", ""Phone""]",2142.01,{},186361,0,Europe +2023-12-06,63737,2702,"[""Keyboard""]",556.47,{},4233,1,North America +2024-04-15,63738,7664,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2111.3,"{"""": ""12%""}",225498,1,North America +2024-09-20,63739,2163,"[""Laptop"", ""Phone""]",1753.93,{},211491,1,Africa +2023-10-22,63740,9528,"[""Keyboard""]",4329.52,{},203281,0,North America +2023-07-24,63741,5161,"[""Laptop"", ""Wireless Mouse""]",2590.49,"{"""": ""20%""}",170466,1,Africa +2024-04-29,63742,8076,"[""Tablet""]",3685.79,{},21304,1,Europe +2024-01-27,63743,7214,"[""Keyboard"", ""Charger"", ""Laptop""]",1164.24,{},36786,1,Africa +2023-03-02,63744,8940,"[""Phone"", ""Keyboard""]",3682.13,{},9839,1,Europe +2024-09-21,63745,9391,"[""Charger""]",1226.59,{},140632,0,South America +2023-04-10,63746,1421,"[""Tablet"", ""Phone""]",4573.26,"{""seasonal"": ""7%""}",53101,0,Africa +2024-04-26,63747,6420,"[""Keyboard"", ""Phone""]",4652.08,"{""seasonal"": ""12%""}",19282,0,Asia +2023-01-01,63748,6168,"[""Monitor""]",1303.34,"{"""": ""29%""}",289306,0,Africa +2024-04-05,63749,9793,"[""Charger"", ""Monitor"", ""Laptop""]",891.59,"{""loyalty"": ""19%""}",185819,0,Europe +2023-02-16,63750,4084,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2603.68,{},49098,1,Europe +2023-05-23,63751,8870,"[""Phone""]",2748.7,{},247329,0,Europe +2023-03-29,63752,386,"[""Phone"", ""Tablet"", ""Charger""]",2087.35,"{"""": ""19%""}",225053,0,Asia +2023-08-24,63753,2030,"[""Tablet""]",4335.84,{},35414,1,Europe +2024-05-12,63754,3921,"[""Monitor"", ""Keyboard"", ""Laptop""]",1355.12,{},184887,1,South America +2023-07-28,63755,6632,"[""Monitor"", ""Headphones"", ""Charger""]",4534.51,"{""promo"": ""9%""}",175793,1,Asia +2024-06-04,63756,4721,"[""Laptop"", ""Monitor""]",4366.05,{},140079,0,Asia +2024-05-15,63757,5356,"[""Headphones""]",2219.21,"{""promo"": ""24%""}",236675,0,Asia +2023-12-06,63758,1306,"[""Charger"", ""Tablet""]",581.09,"{""promo"": ""20%""}",157371,1,North America +2023-08-15,63759,5536,"[""Phone""]",1804.89,{},86738,1,Asia +2023-06-14,63760,7507,"[""Tablet"", ""Monitor"", ""Laptop""]",308.9,"{""promo"": ""11%""}",3079,0,Africa +2024-10-13,63761,8640,"[""Tablet"", ""Keyboard"", ""Laptop""]",3815.65,{},132945,1,Africa +2024-10-09,63762,5743,"[""Phone""]",4215.89,{},295960,1,Africa +2023-11-23,63763,5215,"[""Keyboard""]",3726.79,"{""loyalty"": ""12%""}",242705,1,South America +2024-05-02,63764,1662,"[""Monitor""]",359.65,{},142127,0,North America +2023-10-31,63765,7816,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3045.76,{},101837,1,Africa +2023-12-16,63766,4633,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2468.13,"{""loyalty"": ""17%""}",240668,0,Asia +2023-07-01,63767,9699,"[""Phone"", ""Monitor"", ""Charger""]",1310.28,"{""loyalty"": ""24%""}",12473,0,Africa +2023-11-14,63768,6003,"[""Laptop""]",374.41,"{""seasonal"": ""11%""}",15694,0,Asia +2023-08-08,63769,2554,"[""Monitor""]",390.86,{},19927,0,Africa +2023-06-19,63770,1436,"[""Monitor"", ""Laptop""]",1434.83,{},93093,0,Asia +2024-10-05,63771,3976,"[""Monitor"", ""Keyboard""]",921.5,"{""promo"": ""10%""}",67464,0,Asia +2024-08-03,63772,2340,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2058.33,"{""seasonal"": ""14%""}",37656,1,Europe +2023-01-28,63773,8683,"[""Monitor""]",3699.07,"{""promo"": ""14%""}",254868,0,Asia +2024-06-09,63774,6330,"[""Phone""]",3066.26,"{""promo"": ""16%""}",140928,1,Asia +2023-07-19,63775,2005,"[""Tablet"", ""Keyboard""]",4979.03,{},206571,0,Asia +2024-05-12,63776,3866,"[""Wireless Mouse"", ""Monitor""]",459.25,{},8173,1,South America +2023-02-17,63777,7456,"[""Wireless Mouse"", ""Phone""]",4959.86,{},122135,0,Europe +2023-01-06,63778,1738,"[""Tablet""]",4815.33,"{"""": ""29%""}",116742,1,Europe +2024-04-05,63779,9594,"[""Laptop""]",4958.52,{},181504,0,Asia +2024-12-31,63780,5545,"[""Tablet""]",3359.0,"{""promo"": ""17%""}",286669,1,Asia +2023-08-27,63781,3074,"[""Keyboard""]",1757.52,{},108178,0,Asia +2023-04-24,63782,7567,"[""Phone""]",3409.26,{},204211,0,Africa +2023-10-05,63783,8409,"[""Laptop"", ""Headphones""]",1396.51,"{""promo"": ""11%""}",150357,1,Africa +2023-02-15,63784,1717,"[""Headphones"", ""Monitor""]",1382.83,"{""promo"": ""18%""}",128738,0,North America +2023-10-13,63785,7313,"[""Monitor"", ""Phone""]",3621.76,"{""promo"": ""22%""}",200869,1,South America +2023-08-27,63786,1797,"[""Monitor"", ""Phone""]",2487.83,"{""loyalty"": ""28%""}",192463,0,North America +2023-12-08,63787,9906,"[""Tablet"", ""Phone"", ""Headphones""]",4055.76,{},285751,1,Africa +2024-04-24,63788,4171,"[""Keyboard"", ""Monitor""]",597.29,{},33477,1,South America +2023-04-10,63789,9783,"[""Keyboard""]",4699.77,"{"""": ""28%""}",27764,0,South America +2023-10-15,63790,5628,"[""Keyboard""]",784.66,"{"""": ""27%""}",266241,0,Europe +2023-05-08,63791,7717,"[""Monitor"", ""Laptop"", ""Headphones""]",3440.43,{},131575,0,Asia +2024-02-03,63792,592,"[""Phone"", ""Laptop""]",468.32,{},85413,0,Europe +2023-05-17,63793,9459,"[""Tablet"", ""Wireless Mouse""]",107.3,"{""loyalty"": ""24%""}",121836,1,Africa +2024-03-15,63794,900,"[""Tablet"", ""Monitor""]",803.56,{},139927,1,South America +2024-11-09,63795,7851,"[""Tablet"", ""Laptop""]",610.32,{},4227,1,Europe +2023-10-16,63796,8851,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2955.41,"{""promo"": ""23%""}",217045,1,Africa +2024-10-14,63797,6198,"[""Laptop""]",1187.88,"{"""": ""6%""}",123558,1,Africa +2024-01-07,63798,9295,"[""Headphones""]",1065.36,"{""seasonal"": ""14%""}",92358,0,Asia +2024-05-19,63799,8835,"[""Charger"", ""Monitor""]",3626.74,{},27448,0,North America +2024-03-30,63800,5487,"[""Headphones"", ""Monitor""]",3228.61,{},231945,0,Asia +2023-09-17,63801,7805,"[""Wireless Mouse""]",1292.67,"{""loyalty"": ""24%""}",20711,1,South America +2023-08-14,63802,4273,"[""Charger"", ""Wireless Mouse""]",4865.0,{},136677,0,Asia +2023-11-19,63803,1820,"[""Charger"", ""Keyboard""]",133.21,"{""loyalty"": ""13%""}",258666,0,Asia +2024-04-03,63804,1692,"[""Monitor""]",1042.96,{},272415,0,Asia +2024-07-06,63805,2816,"[""Charger""]",2597.46,{},237418,1,Europe +2023-09-18,63806,1133,"[""Monitor""]",1488.11,"{""loyalty"": ""9%""}",146278,0,North America +2024-12-25,63807,2925,"[""Keyboard""]",3195.79,"{"""": ""9%""}",181674,0,Asia +2024-07-11,63808,711,"[""Tablet"", ""Charger""]",3008.07,"{"""": ""14%""}",220267,1,North America +2024-08-17,63809,7407,"[""Monitor"", ""Keyboard""]",3227.25,{},34094,0,South America +2023-08-21,63810,7037,"[""Monitor"", ""Laptop""]",3234.8,{},193492,1,Europe +2024-11-03,63811,3037,"[""Phone"", ""Wireless Mouse""]",4304.09,{},280188,0,Europe +2023-11-03,63812,8336,"[""Charger"", ""Monitor""]",4948.51,{},74848,1,Africa +2024-06-15,63813,6357,"[""Headphones""]",4773.9,"{"""": ""21%""}",279304,1,Africa +2024-01-13,63814,2812,"[""Keyboard"", ""Charger""]",2300.52,{},252122,1,Europe +2023-02-10,63815,1866,"[""Monitor"", ""Keyboard""]",2263.18,{},174237,0,South America +2023-11-05,63816,1511,"[""Laptop"", ""Charger""]",3371.32,{},296815,0,North America +2023-12-17,63817,1024,"[""Keyboard""]",1795.53,{},250932,0,Europe +2024-06-04,63818,9644,"[""Keyboard""]",3927.69,{},140467,0,Asia +2023-10-08,63819,7311,"[""Phone""]",2234.1,"{""seasonal"": ""8%""}",33401,0,North America +2024-06-11,63820,8261,"[""Charger""]",2493.09,{},151107,0,Africa +2024-08-14,63821,6817,"[""Tablet""]",2456.89,"{"""": ""25%""}",151926,1,North America +2023-11-07,63822,361,"[""Keyboard"", ""Charger"", ""Headphones""]",2637.33,{},46391,0,Africa +2024-03-07,63823,7678,"[""Keyboard""]",2952.43,{},35850,0,Asia +2024-03-02,63824,3615,"[""Phone"", ""Laptop""]",1536.63,"{"""": ""19%""}",214865,1,Africa +2023-08-01,63825,1867,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1073.95,{},190545,0,Africa +2023-03-11,63826,7796,"[""Phone""]",3688.62,{},143160,0,Africa +2024-05-21,63827,5043,"[""Monitor"", ""Tablet""]",1897.53,"{""loyalty"": ""26%""}",199150,1,Europe +2024-10-02,63828,5893,"[""Headphones"", ""Phone""]",1156.26,{},144327,1,Asia +2023-10-19,63829,7142,"[""Laptop""]",2136.36,"{""loyalty"": ""10%""}",165181,0,Asia +2023-04-17,63830,8687,"[""Keyboard"", ""Wireless Mouse""]",3658.45,{},110525,0,Europe +2023-11-05,63831,7823,"[""Phone""]",3006.2,"{""loyalty"": ""13%""}",220868,0,North America +2024-02-18,63832,1831,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3484.7,"{""promo"": ""12%""}",264831,0,North America +2024-05-03,63833,6332,"[""Phone"", ""Headphones"", ""Charger""]",4030.26,"{""promo"": ""26%""}",97886,0,Africa +2024-12-29,63834,151,"[""Laptop"", ""Keyboard"", ""Phone""]",1590.56,"{""seasonal"": ""8%""}",247685,1,Asia +2023-10-08,63835,3675,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4369.29,{},147276,1,South America +2024-08-03,63836,4385,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4073.04,{},192413,1,South America +2024-08-19,63837,5300,"[""Headphones""]",1437.84,{},63919,0,Europe +2023-04-22,63838,8998,"[""Monitor"", ""Headphones"", ""Charger""]",1398.11,"{"""": ""22%""}",123099,0,Africa +2023-07-11,63839,4499,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4999.11,{},100091,1,Europe +2023-06-12,63840,3720,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3849.09,{},187487,1,Africa +2023-09-18,63841,2340,"[""Wireless Mouse""]",87.87,"{""seasonal"": ""25%""}",38466,1,Africa +2023-05-01,63842,3765,"[""Tablet""]",1042.24,{},293626,1,North America +2023-07-03,63843,4145,"[""Laptop"", ""Headphones"", ""Monitor""]",3503.53,"{""loyalty"": ""20%""}",118654,0,Africa +2024-06-22,63844,90,"[""Tablet"", ""Wireless Mouse""]",4806.99,{},51837,0,North America +2024-07-27,63845,6449,"[""Tablet"", ""Monitor"", ""Phone""]",1823.76,{},285835,0,Europe +2023-01-12,63846,3082,"[""Monitor""]",3140.03,{},147854,0,Asia +2024-06-15,63847,3210,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",279.22,"{""promo"": ""14%""}",227245,1,Asia +2023-12-16,63848,8244,"[""Laptop""]",3015.42,{},45676,0,Asia +2023-10-13,63849,532,"[""Phone""]",2665.84,"{""seasonal"": ""10%""}",221947,1,Europe +2023-10-21,63850,9243,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1008.4,"{""seasonal"": ""10%""}",23783,0,Europe +2023-06-18,63851,4269,"[""Monitor""]",2702.09,"{"""": ""29%""}",88224,0,North America +2023-06-20,63852,9068,"[""Wireless Mouse"", ""Charger""]",4815.44,"{""seasonal"": ""10%""}",155474,1,North America +2023-04-28,63853,2780,"[""Headphones"", ""Charger""]",3263.68,"{""promo"": ""21%""}",218262,0,North America +2023-10-17,63854,7250,"[""Laptop""]",3765.37,"{""seasonal"": ""8%""}",60589,0,Europe +2023-02-03,63855,115,"[""Tablet"", ""Headphones"", ""Charger""]",1816.35,"{""seasonal"": ""11%""}",75381,1,Asia +2024-01-07,63856,3011,"[""Laptop"", ""Tablet"", ""Phone""]",1436.6,{},196567,0,Asia +2024-12-05,63857,3021,"[""Laptop"", ""Keyboard"", ""Charger""]",3845.05,"{""seasonal"": ""13%""}",109500,0,Africa +2023-07-14,63858,7719,"[""Laptop"", ""Headphones"", ""Charger""]",952.85,{},268188,0,Africa +2024-01-28,63859,5904,"[""Tablet"", ""Headphones""]",151.77,{},220915,0,North America +2023-04-01,63860,5526,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2516.72,"{""loyalty"": ""30%""}",126370,1,Europe +2024-02-22,63861,9898,"[""Phone""]",4765.59,{},71078,0,Asia +2023-04-06,63862,2321,"[""Phone""]",363.16,{},185710,1,Asia +2024-06-24,63863,3092,"[""Headphones"", ""Laptop""]",2627.9,"{""loyalty"": ""8%""}",8785,1,North America +2024-09-26,63864,4202,"[""Headphones"", ""Phone""]",3819.69,"{""promo"": ""6%""}",129653,1,Asia +2024-06-15,63865,1731,"[""Charger""]",1177.08,{},223604,0,South America +2023-08-04,63866,456,"[""Headphones""]",4688.54,"{""promo"": ""7%""}",123196,1,South America +2023-01-04,63867,7657,"[""Phone"", ""Laptop"", ""Keyboard""]",4970.96,"{""loyalty"": ""12%""}",75322,1,North America +2023-10-08,63868,4742,"[""Monitor"", ""Charger""]",649.09,"{"""": ""5%""}",134153,0,South America +2023-11-13,63869,4460,"[""Tablet"", ""Wireless Mouse""]",4513.61,{},265843,1,Asia +2024-01-14,63870,4053,"[""Charger""]",2458.07,"{""loyalty"": ""7%""}",69939,1,Asia +2023-04-05,63871,7459,"[""Laptop""]",2321.16,{},29360,0,Asia +2023-02-21,63872,8913,"[""Laptop""]",4831.09,"{""promo"": ""24%""}",69953,0,Asia +2023-07-03,63873,9621,"[""Charger"", ""Wireless Mouse""]",1182.7,{},28169,1,Asia +2024-03-27,63874,9235,"[""Laptop"", ""Keyboard"", ""Charger""]",386.87,"{""promo"": ""28%""}",165953,1,North America +2023-12-29,63875,6747,"[""Tablet"", ""Phone""]",3355.49,{},232290,1,Europe +2024-02-26,63876,1880,"[""Laptop"", ""Headphones""]",388.02,"{"""": ""22%""}",106765,0,North America +2023-10-24,63877,3567,"[""Laptop"", ""Wireless Mouse""]",902.66,"{""loyalty"": ""11%""}",198391,0,Asia +2023-07-28,63878,5531,"[""Headphones"", ""Laptop""]",1570.81,{},82410,1,Europe +2023-04-28,63879,1727,"[""Tablet"", ""Headphones"", ""Laptop""]",1915.66,"{"""": ""29%""}",31213,1,Europe +2024-09-23,63880,1466,"[""Charger"", ""Tablet""]",4579.43,{},269984,0,North America +2024-03-09,63881,5081,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3285.34,{},297214,0,Asia +2023-03-28,63882,8973,"[""Phone"", ""Keyboard"", ""Monitor""]",4878.21,{},205984,0,Europe +2024-10-11,63883,439,"[""Monitor"", ""Tablet""]",599.29,{},226358,1,South America +2024-08-02,63884,8020,"[""Laptop"", ""Headphones"", ""Phone""]",4694.35,{},270309,0,Africa +2024-05-22,63885,3310,"[""Tablet""]",1199.7,{},201624,1,Europe +2024-03-28,63886,5377,"[""Laptop"", ""Tablet""]",3812.42,"{"""": ""5%""}",290914,0,North America +2023-05-07,63887,2231,"[""Keyboard"", ""Monitor""]",127.07,{},289877,1,Europe +2023-08-19,63888,6167,"[""Keyboard""]",77.06,"{""seasonal"": ""25%""}",122991,0,South America +2023-03-03,63889,2390,"[""Tablet""]",3882.54,"{""promo"": ""20%""}",83388,1,Africa +2024-12-25,63890,4893,"[""Charger""]",3735.2,"{""seasonal"": ""30%""}",288661,1,South America +2023-02-26,63891,2447,"[""Laptop"", ""Phone""]",1170.62,{},19221,0,South America +2024-05-28,63892,796,"[""Phone""]",165.77,"{""seasonal"": ""15%""}",122279,0,Asia +2024-05-18,63893,6570,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4653.02,{},260143,1,Africa +2023-09-24,63894,6103,"[""Monitor""]",4101.63,"{""promo"": ""7%""}",260120,1,North America +2023-09-29,63895,2599,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3681.96,"{""promo"": ""19%""}",211731,0,Asia +2024-07-10,63896,1983,"[""Charger""]",480.4,{},282061,0,Europe +2023-03-15,63897,6459,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3830.71,"{"""": ""28%""}",201857,1,Europe +2023-01-14,63898,7078,"[""Phone""]",2313.54,"{""promo"": ""28%""}",83129,1,Asia +2023-08-05,63899,6118,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4982.78,"{""promo"": ""15%""}",185627,0,North America +2024-01-25,63900,1291,"[""Wireless Mouse"", ""Monitor""]",1511.92,"{""loyalty"": ""19%""}",256312,1,Europe +2023-02-22,63901,2723,"[""Laptop""]",3640.13,{},179335,0,Europe +2023-11-20,63902,9507,"[""Charger"", ""Laptop""]",3976.46,{},281101,0,Africa +2024-12-07,63903,4640,"[""Phone""]",1158.99,{},218343,0,South America +2023-12-09,63904,6496,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3311.13,"{""promo"": ""22%""}",61116,0,South America +2023-09-04,63905,64,"[""Laptop"", ""Tablet"", ""Monitor""]",1954.67,{},50485,1,Europe +2023-11-04,63906,9773,"[""Charger""]",4707.23,"{"""": ""23%""}",19052,0,South America +2023-09-09,63907,1387,"[""Phone"", ""Laptop"", ""Charger""]",4122.88,{},3406,1,Europe +2023-12-27,63908,3346,"[""Laptop""]",4927.85,{},297601,0,Asia +2023-11-04,63909,6890,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3416.03,"{""loyalty"": ""18%""}",190356,1,North America +2023-07-28,63910,4040,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2988.25,{},183960,1,Asia +2023-11-21,63911,6452,"[""Phone"", ""Charger""]",2048.4,{},115943,1,Europe +2024-11-22,63912,4182,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",654.43,"{""loyalty"": ""20%""}",27014,1,Asia +2023-06-12,63913,7817,"[""Laptop"", ""Charger"", ""Monitor""]",132.72,"{"""": ""30%""}",86543,0,North America +2024-08-24,63914,9485,"[""Tablet"", ""Monitor"", ""Headphones""]",4082.97,"{""promo"": ""21%""}",279425,1,Europe +2024-07-28,63915,9629,"[""Monitor""]",3746.09,"{""loyalty"": ""27%""}",23867,1,Africa +2023-07-23,63916,8231,"[""Laptop"", ""Wireless Mouse""]",3061.43,{},16928,1,Asia +2023-07-05,63917,3052,"[""Tablet""]",4783.76,{},164265,1,Africa +2023-12-18,63918,7278,"[""Wireless Mouse""]",1238.16,"{""promo"": ""5%""}",103658,0,Europe +2023-01-30,63919,1274,"[""Phone"", ""Monitor"", ""Charger""]",854.23,{},299371,1,Africa +2023-02-01,63920,1372,"[""Headphones""]",3765.08,"{""promo"": ""16%""}",195651,1,North America +2023-09-06,63921,5629,"[""Charger""]",2461.19,"{"""": ""7%""}",110563,0,North America +2023-04-17,63922,9802,"[""Wireless Mouse""]",980.36,{},37417,1,Africa +2024-12-16,63923,334,"[""Wireless Mouse""]",4860.82,{},283773,0,Africa +2023-10-30,63924,3964,"[""Keyboard"", ""Laptop""]",3698.32,"{""promo"": ""26%""}",134034,0,North America +2023-07-17,63925,3847,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",553.21,{},290902,0,South America +2024-06-01,63926,4478,"[""Monitor""]",1089.21,{},205057,0,South America +2023-11-24,63927,410,"[""Charger""]",587.67,"{""seasonal"": ""24%""}",147282,0,Europe +2023-11-01,63928,8894,"[""Tablet"", ""Headphones""]",2991.23,"{""loyalty"": ""13%""}",100251,0,North America +2024-01-05,63929,5121,"[""Monitor"", ""Keyboard"", ""Charger""]",64.65,"{""promo"": ""26%""}",182036,1,Europe +2023-03-21,63930,4579,"[""Tablet"", ""Charger"", ""Monitor""]",4153.68,"{""promo"": ""17%""}",165242,1,North America +2024-06-17,63931,3221,"[""Monitor""]",650.71,"{""seasonal"": ""5%""}",154714,1,North America +2024-09-24,63932,3020,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1261.43,"{"""": ""15%""}",158253,0,North America +2024-02-03,63933,7432,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",407.69,"{""loyalty"": ""7%""}",106350,1,Africa +2024-04-16,63934,3565,"[""Headphones""]",2488.04,"{""promo"": ""28%""}",282322,1,Europe +2024-08-08,63935,4168,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1364.1,"{""promo"": ""27%""}",172849,0,South America +2024-07-31,63936,5274,"[""Charger""]",436.47,"{""seasonal"": ""17%""}",238552,0,Africa +2023-01-23,63937,2543,"[""Wireless Mouse""]",2436.22,{},196614,0,North America +2023-10-25,63938,7398,"[""Headphones"", ""Keyboard"", ""Phone""]",1152.88,{},250746,0,Asia +2024-08-12,63939,8497,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",615.69,{},4781,1,South America +2024-02-21,63940,7697,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1179.47,{},85882,1,South America +2023-02-04,63941,1605,"[""Charger"", ""Monitor""]",2207.46,"{""seasonal"": ""22%""}",89487,1,Europe +2023-06-04,63942,3477,"[""Headphones""]",4231.07,{},84580,1,South America +2023-03-14,63943,5794,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",358.49,"{""promo"": ""6%""}",286272,1,Asia +2024-01-23,63944,5628,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2409.88,"{"""": ""25%""}",75694,0,North America +2023-04-15,63945,8061,"[""Charger"", ""Keyboard""]",4329.38,{},262069,0,Asia +2024-10-11,63946,9600,"[""Monitor"", ""Laptop""]",3482.34,"{""promo"": ""30%""}",233082,0,Europe +2023-02-03,63947,4279,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2901.0,"{"""": ""22%""}",73293,1,North America +2024-10-23,63948,9631,"[""Keyboard""]",3212.21,{},119176,1,Africa +2023-10-06,63949,9007,"[""Headphones""]",1266.44,"{""loyalty"": ""9%""}",32118,1,Europe +2024-01-13,63950,322,"[""Phone""]",2831.91,{},213016,1,North America +2023-06-29,63951,7661,"[""Monitor"", ""Tablet""]",4759.17,{},243174,0,North America +2024-02-24,63952,1215,"[""Monitor"", ""Keyboard""]",2515.54,"{"""": ""8%""}",157804,1,Europe +2023-09-09,63953,9796,"[""Wireless Mouse"", ""Tablet""]",2552.67,"{""seasonal"": ""24%""}",259461,1,Asia +2023-09-01,63954,1568,"[""Headphones""]",1103.81,"{"""": ""26%""}",153141,1,Africa +2024-06-02,63955,4939,"[""Monitor"", ""Keyboard""]",2269.54,{},2468,0,Africa +2024-12-13,63956,21,"[""Headphones""]",3297.43,"{"""": ""29%""}",96054,0,Europe +2023-07-14,63957,2126,"[""Monitor""]",2115.38,"{"""": ""23%""}",178357,0,Asia +2024-07-05,63958,4999,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1768.99,"{"""": ""28%""}",290865,0,Europe +2023-06-18,63959,2163,"[""Headphones""]",4722.14,{},280189,0,Europe +2023-12-04,63960,1380,"[""Headphones""]",2831.09,{},191492,0,Africa +2024-07-10,63961,3924,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3216.37,"{""promo"": ""13%""}",38999,1,North America +2023-05-07,63962,1774,"[""Laptop""]",2523.19,{},254487,0,Europe +2023-07-01,63963,2628,"[""Headphones"", ""Laptop"", ""Tablet""]",1919.69,{},216025,0,South America +2024-02-22,63964,9690,"[""Laptop"", ""Charger""]",744.69,{},243052,1,North America +2024-07-17,63965,5703,"[""Wireless Mouse"", ""Monitor""]",301.07,"{"""": ""28%""}",42126,0,Europe +2023-01-24,63966,4123,"[""Wireless Mouse"", ""Charger""]",4516.58,{},105059,1,Africa +2024-07-20,63967,7958,"[""Wireless Mouse"", ""Charger""]",1987.97,"{""seasonal"": ""17%""}",272862,1,South America +2024-03-24,63968,2397,"[""Laptop""]",3470.23,"{""loyalty"": ""29%""}",167823,0,Europe +2023-10-22,63969,2445,"[""Monitor"", ""Laptop""]",1001.99,"{""seasonal"": ""19%""}",210212,0,North America +2023-06-03,63970,5454,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4572.89,"{""loyalty"": ""15%""}",222173,0,Asia +2023-04-14,63971,3405,"[""Charger"", ""Keyboard"", ""Headphones""]",1610.31,{},223276,0,Europe +2024-07-17,63972,4811,"[""Charger""]",2779.27,{},223647,0,Europe +2024-05-01,63973,8927,"[""Charger"", ""Headphones""]",2313.86,{},94198,0,South America +2023-01-10,63974,8765,"[""Phone"", ""Charger"", ""Laptop""]",1827.62,{},60271,1,South America +2023-05-22,63975,3494,"[""Tablet"", ""Keyboard""]",238.46,"{"""": ""9%""}",94097,1,Africa +2023-09-04,63976,2593,"[""Laptop""]",4228.96,{},167818,0,North America +2024-01-10,63977,1701,"[""Keyboard"", ""Wireless Mouse""]",4312.81,"{""seasonal"": ""8%""}",130492,0,South America +2023-06-21,63978,6955,"[""Keyboard"", ""Laptop"", ""Tablet""]",3449.56,{},245912,1,Africa +2023-07-30,63979,3286,"[""Tablet""]",382.31,"{"""": ""9%""}",201639,0,North America +2023-03-28,63980,4937,"[""Phone"", ""Headphones"", ""Laptop""]",288.95,{},205341,1,Europe +2024-11-08,63981,9459,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3606.89,{},137771,1,Europe +2023-07-26,63982,1938,"[""Charger""]",483.16,"{""seasonal"": ""12%""}",80731,1,South America +2023-08-12,63983,8144,"[""Tablet"", ""Keyboard""]",4061.38,"{"""": ""24%""}",150045,1,Asia +2023-09-25,63984,4036,"[""Laptop"", ""Phone""]",1879.76,"{""loyalty"": ""27%""}",58494,0,South America +2024-01-04,63985,2741,"[""Headphones"", ""Tablet""]",1439.44,{},201127,0,South America +2024-11-24,63986,9074,"[""Headphones"", ""Keyboard"", ""Charger""]",2389.61,{},121559,1,Asia +2023-08-30,63987,7229,"[""Monitor""]",2716.6,{},270059,1,North America +2024-11-02,63988,3167,"[""Laptop""]",1006.21,"{""loyalty"": ""7%""}",268052,0,Europe +2024-04-17,63989,3138,"[""Tablet"", ""Monitor"", ""Keyboard""]",2062.03,{},224314,1,Africa +2024-12-01,63990,4236,"[""Tablet"", ""Headphones"", ""Charger""]",520.47,"{"""": ""6%""}",234966,0,South America +2023-03-11,63991,3868,"[""Tablet"", ""Laptop"", ""Headphones""]",253.89,{},150841,1,South America +2023-01-28,63992,7787,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",634.26,{},160709,1,South America +2023-07-17,63993,1347,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2415.53,"{""promo"": ""10%""}",217110,1,Europe +2023-10-11,63994,1486,"[""Laptop"", ""Charger"", ""Headphones""]",3636.12,{},136629,1,Asia +2023-10-25,63995,9504,"[""Charger"", ""Tablet"", ""Monitor""]",1359.71,{},264113,1,Asia +2024-02-15,63996,170,"[""Keyboard"", ""Wireless Mouse""]",475.27,{},275830,1,Europe +2024-06-20,63997,8096,"[""Wireless Mouse""]",4023.88,{},236897,0,Europe +2023-07-29,63998,7942,"[""Phone"", ""Keyboard"", ""Monitor""]",3453.34,"{""promo"": ""21%""}",254467,0,Africa +2023-05-02,63999,3374,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1826.44,{},153039,0,South America +2024-01-08,64000,4920,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2239.64,"{""loyalty"": ""25%""}",71616,1,South America +2024-02-17,64001,7176,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",590.28,{},279951,1,North America +2024-12-11,64002,1165,"[""Keyboard""]",1380.48,"{""seasonal"": ""28%""}",87633,0,Asia +2024-06-14,64003,1928,"[""Charger"", ""Headphones""]",2384.9,"{""seasonal"": ""21%""}",68314,1,Europe +2023-07-06,64004,524,"[""Tablet""]",4648.67,{},258694,0,Africa +2024-10-31,64005,8641,"[""Wireless Mouse"", ""Phone""]",512.96,{},235709,0,Africa +2023-04-18,64006,5019,"[""Headphones"", ""Monitor""]",3105.54,{},197072,0,Europe +2023-09-18,64007,3116,"[""Charger"", ""Monitor""]",2981.92,{},56657,1,Europe +2023-09-20,64008,1376,"[""Headphones""]",1943.43,"{"""": ""23%""}",163333,1,Africa +2023-05-28,64009,2244,"[""Keyboard"", ""Headphones"", ""Tablet""]",574.54,"{""seasonal"": ""8%""}",129943,0,South America +2023-06-06,64010,4705,"[""Headphones"", ""Keyboard"", ""Monitor""]",4296.29,"{""loyalty"": ""13%""}",211056,1,South America +2024-01-26,64011,8085,"[""Headphones"", ""Keyboard""]",382.45,{},165993,1,North America +2023-09-12,64012,5117,"[""Tablet""]",738.87,"{""loyalty"": ""24%""}",286972,1,Asia +2023-01-03,64013,6247,"[""Keyboard""]",3237.15,"{""promo"": ""9%""}",60836,0,North America +2024-10-04,64014,4288,"[""Phone"", ""Charger""]",449.59,{},16880,0,Europe +2023-01-16,64015,4381,"[""Charger"", ""Keyboard"", ""Phone""]",2417.57,"{""seasonal"": ""27%""}",134431,0,Europe +2023-04-23,64016,8553,"[""Laptop""]",691.33,{},230906,1,Africa +2023-09-12,64017,3391,"[""Wireless Mouse""]",3577.74,{},106871,0,Europe +2024-10-08,64018,241,"[""Charger"", ""Headphones""]",3271.75,{},56748,0,North America +2023-10-04,64019,819,"[""Tablet"", ""Wireless Mouse""]",1553.96,"{"""": ""6%""}",21829,0,Europe +2024-02-20,64020,2681,"[""Wireless Mouse"", ""Tablet""]",2994.67,"{"""": ""9%""}",27772,1,Africa +2024-09-04,64021,6738,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1366.79,{},93907,0,Africa +2024-02-25,64022,156,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4255.13,"{""promo"": ""18%""}",119257,1,South America +2023-03-03,64023,4575,"[""Monitor"", ""Wireless Mouse""]",73.74,"{""seasonal"": ""16%""}",85772,1,Europe +2024-06-19,64024,9442,"[""Headphones"", ""Phone""]",3120.94,{},191018,0,Africa +2024-09-09,64025,2428,"[""Monitor"", ""Laptop""]",1273.62,{},107956,0,Europe +2024-08-06,64026,4117,"[""Monitor"", ""Wireless Mouse""]",2352.15,"{""seasonal"": ""6%""}",142257,1,Europe +2024-03-22,64027,8877,"[""Laptop""]",621.74,"{"""": ""18%""}",164756,0,North America +2023-03-04,64028,2198,"[""Wireless Mouse"", ""Charger"", ""Phone""]",833.97,{},130968,0,Asia +2024-11-24,64029,8303,"[""Charger"", ""Tablet"", ""Keyboard""]",3313.08,{},215847,0,North America +2024-03-03,64030,7209,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",375.17,{},135494,1,Asia +2023-12-05,64031,2627,"[""Monitor"", ""Tablet""]",2270.4,"{""seasonal"": ""11%""}",168477,0,North America +2023-02-18,64032,6621,"[""Charger""]",2979.58,"{""loyalty"": ""10%""}",62834,0,North America +2023-07-06,64033,2282,"[""Phone"", ""Keyboard"", ""Monitor""]",4760.66,"{""seasonal"": ""16%""}",73487,1,Africa +2023-01-16,64034,7018,"[""Headphones""]",4623.34,"{""promo"": ""29%""}",30372,1,Asia +2023-03-27,64035,5876,"[""Laptop"", ""Tablet""]",264.01,"{""seasonal"": ""20%""}",38555,1,South America +2024-09-16,64036,6317,"[""Phone"", ""Keyboard""]",4202.53,"{""seasonal"": ""5%""}",181407,1,South America +2023-04-04,64037,5486,"[""Phone""]",2898.02,"{""seasonal"": ""27%""}",33263,1,South America +2024-05-05,64038,4721,"[""Phone""]",4725.91,{},119153,0,Africa +2023-05-28,64039,8566,"[""Phone"", ""Laptop""]",1435.19,{},70931,0,Asia +2023-10-14,64040,4482,"[""Charger"", ""Laptop""]",2956.28,"{""promo"": ""26%""}",68142,1,Asia +2024-11-13,64041,3710,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3559.16,"{""loyalty"": ""14%""}",47854,0,North America +2023-09-11,64042,4140,"[""Wireless Mouse"", ""Headphones""]",4945.21,"{"""": ""25%""}",72237,0,Africa +2024-12-09,64043,1767,"[""Wireless Mouse""]",1105.63,"{"""": ""7%""}",207185,0,North America +2024-06-01,64044,6506,"[""Wireless Mouse""]",284.97,{},174723,0,Asia +2023-11-01,64045,6791,"[""Tablet"", ""Keyboard"", ""Laptop""]",853.39,{},165797,1,Africa +2024-09-28,64046,7407,"[""Wireless Mouse"", ""Tablet""]",371.49,{},89046,1,Asia +2023-02-11,64047,8125,"[""Keyboard"", ""Phone"", ""Charger""]",4564.02,{},165894,1,South America +2024-11-02,64048,3642,"[""Charger"", ""Monitor""]",4608.95,"{""promo"": ""20%""}",177594,0,South America +2023-12-20,64049,2249,"[""Phone"", ""Tablet"", ""Monitor""]",1242.51,"{"""": ""16%""}",246003,0,Europe +2023-03-01,64050,1464,"[""Keyboard"", ""Charger""]",3838.84,{},194042,1,Africa +2023-06-03,64051,5617,"[""Wireless Mouse""]",2118.7,"{"""": ""14%""}",210358,0,Europe +2023-11-10,64052,5273,"[""Monitor"", ""Laptop"", ""Tablet""]",3230.11,"{"""": ""19%""}",82311,1,Africa +2024-12-05,64053,6831,"[""Phone"", ""Tablet""]",2998.61,{},195181,1,Africa +2023-03-13,64054,9189,"[""Monitor"", ""Headphones""]",2973.43,{},240218,0,North America +2024-10-30,64055,3437,"[""Laptop""]",4482.66,{},175151,0,Asia +2024-09-01,64056,4389,"[""Phone""]",172.23,{},140345,0,North America +2024-01-01,64057,9278,"[""Laptop""]",3173.02,{},285409,0,Europe +2024-09-09,64058,3299,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4822.6,"{""promo"": ""19%""}",91833,1,Africa +2024-04-30,64059,8800,"[""Wireless Mouse""]",3953.45,"{""loyalty"": ""17%""}",137861,1,South America +2023-11-24,64060,9010,"[""Headphones""]",4375.99,"{""loyalty"": ""15%""}",98860,1,Asia +2023-10-19,64061,1852,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2077.94,{},255001,1,South America +2023-11-10,64062,5595,"[""Keyboard""]",4525.63,{},21815,0,Asia +2024-07-16,64063,6148,"[""Tablet""]",3408.4,{},239081,1,Africa +2024-12-04,64064,3911,"[""Laptop"", ""Charger"", ""Phone""]",3874.78,{},139266,1,Europe +2023-09-20,64065,4919,"[""Tablet"", ""Headphones""]",3732.86,"{""seasonal"": ""21%""}",159712,1,Europe +2024-02-21,64066,8317,"[""Monitor"", ""Tablet""]",204.97,"{""seasonal"": ""25%""}",214778,0,North America +2024-12-12,64067,5717,"[""Keyboard""]",2425.52,"{""seasonal"": ""21%""}",139810,1,North America +2023-05-16,64068,5420,"[""Phone"", ""Wireless Mouse""]",4663.59,{},127246,0,North America +2024-06-29,64069,1771,"[""Tablet"", ""Monitor"", ""Keyboard""]",4388.79,"{""promo"": ""6%""}",60374,0,North America +2023-10-17,64070,1787,"[""Tablet""]",2765.93,{},154492,0,North America +2023-10-05,64071,378,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",430.47,"{""seasonal"": ""19%""}",106921,0,South America +2023-05-19,64072,5131,"[""Laptop"", ""Phone""]",3780.75,"{"""": ""7%""}",176067,0,Europe +2024-12-17,64073,6394,"[""Laptop""]",1969.29,"{""loyalty"": ""10%""}",168791,0,South America +2023-10-01,64074,5048,"[""Monitor"", ""Laptop"", ""Phone""]",2868.06,{},153432,0,North America +2024-12-04,64075,5959,"[""Laptop""]",3212.27,"{"""": ""10%""}",216238,0,North America +2024-02-15,64076,8263,"[""Wireless Mouse"", ""Laptop""]",3447.37,"{""promo"": ""6%""}",218282,0,Asia +2024-06-24,64077,7828,"[""Monitor"", ""Wireless Mouse""]",3003.38,"{""loyalty"": ""18%""}",196550,0,Asia +2023-11-04,64078,2746,"[""Keyboard"", ""Laptop"", ""Monitor""]",3859.49,{},294377,1,South America +2024-12-19,64079,9906,"[""Keyboard""]",1555.49,{},147382,0,South America +2024-03-13,64080,2198,"[""Headphones"", ""Charger"", ""Keyboard""]",390.46,"{"""": ""17%""}",104413,1,Europe +2024-11-23,64081,5615,"[""Wireless Mouse"", ""Laptop""]",2607.74,"{"""": ""24%""}",86657,0,South America +2024-07-18,64082,4184,"[""Monitor"", ""Tablet""]",4714.82,"{""promo"": ""21%""}",183440,0,Asia +2023-08-06,64083,5610,"[""Monitor""]",4733.92,{},189413,0,South America +2023-03-11,64084,6102,"[""Charger""]",1687.9,{},80549,1,Africa +2024-02-01,64085,8918,"[""Headphones""]",2534.49,{},202988,0,Asia +2024-10-04,64086,5411,"[""Phone""]",4949.22,{},27353,1,Europe +2023-07-18,64087,7955,"[""Headphones"", ""Laptop""]",329.1,"{""seasonal"": ""11%""}",151887,1,Europe +2024-07-05,64088,3817,"[""Laptop"", ""Keyboard"", ""Headphones""]",3679.16,"{"""": ""10%""}",139693,1,North America +2024-11-10,64089,6591,"[""Monitor""]",3199.61,"{""promo"": ""5%""}",239708,0,Europe +2023-06-20,64090,4335,"[""Keyboard"", ""Monitor""]",3167.95,{},38915,1,Asia +2024-05-28,64091,7937,"[""Phone"", ""Charger""]",58.63,{},7751,0,South America +2024-07-14,64092,1932,"[""Monitor"", ""Wireless Mouse""]",598.23,"{""loyalty"": ""21%""}",259970,1,Asia +2024-01-06,64093,6202,"[""Laptop""]",1651.1,"{""promo"": ""18%""}",124917,0,Africa +2023-09-27,64094,5852,"[""Wireless Mouse"", ""Charger""]",4642.56,{},150917,1,Asia +2024-11-03,64095,46,"[""Monitor"", ""Headphones""]",1268.2,{},129908,0,Asia +2023-12-30,64096,7531,"[""Keyboard"", ""Headphones""]",306.06,{},99726,0,Africa +2023-09-09,64097,7091,"[""Keyboard"", ""Charger""]",3026.64,{},299724,0,Asia +2023-12-13,64098,677,"[""Laptop"", ""Keyboard""]",2873.41,{},22854,1,Europe +2023-11-15,64099,2422,"[""Phone"", ""Monitor"", ""Laptop""]",406.69,"{"""": ""8%""}",81655,0,Asia +2024-03-06,64100,6735,"[""Headphones"", ""Charger""]",822.76,{},97794,1,North America +2023-06-28,64101,1428,"[""Wireless Mouse""]",1471.74,"{"""": ""28%""}",172264,0,Europe +2023-10-11,64102,755,"[""Headphones"", ""Phone""]",4618.22,"{""loyalty"": ""16%""}",18236,1,South America +2023-03-29,64103,6305,"[""Monitor"", ""Phone"", ""Tablet""]",3088.71,{},245343,1,North America +2024-10-16,64104,9377,"[""Keyboard"", ""Tablet"", ""Headphones""]",2366.15,{},291234,1,South America +2024-11-04,64105,9047,"[""Laptop""]",4506.23,{},34856,0,South America +2024-03-19,64106,4716,"[""Phone"", ""Headphones""]",217.83,"{""loyalty"": ""26%""}",208225,0,Africa +2023-07-24,64107,9233,"[""Monitor"", ""Headphones"", ""Phone""]",3069.55,{},68334,1,Africa +2024-10-03,64108,7386,"[""Phone"", ""Headphones"", ""Keyboard""]",3991.33,"{""promo"": ""17%""}",76683,0,North America +2024-02-15,64109,3732,"[""Laptop"", ""Headphones"", ""Keyboard""]",4361.5,"{""promo"": ""9%""}",243190,0,North America +2023-03-27,64110,5790,"[""Phone"", ""Monitor""]",4053.95,"{""promo"": ""5%""}",214609,0,Asia +2023-01-23,64111,8556,"[""Keyboard"", ""Tablet"", ""Monitor""]",3582.99,{},289570,1,North America +2023-09-01,64112,3941,"[""Headphones""]",2169.21,{},205452,0,South America +2023-10-15,64113,9100,"[""Charger"", ""Headphones""]",3319.49,"{""loyalty"": ""16%""}",158145,0,Europe +2024-01-05,64114,4832,"[""Monitor""]",796.47,"{""loyalty"": ""24%""}",289918,1,South America +2023-02-13,64115,4492,"[""Phone""]",1156.46,"{"""": ""30%""}",295568,0,Europe +2023-12-02,64116,1788,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",322.26,"{""promo"": ""6%""}",51848,0,North America +2024-09-03,64117,5944,"[""Phone"", ""Charger"", ""Monitor""]",4366.28,{},156804,1,North America +2023-04-25,64118,8707,"[""Wireless Mouse""]",2646.53,"{""loyalty"": ""25%""}",30826,1,North America +2023-01-21,64119,4569,"[""Charger"", ""Keyboard""]",3073.83,"{""loyalty"": ""24%""}",25934,1,Europe +2024-02-19,64120,4640,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3009.52,{},133241,0,South America +2023-08-21,64121,9129,"[""Charger"", ""Phone""]",1956.83,"{"""": ""22%""}",23189,1,Europe +2023-03-01,64122,2566,"[""Headphones"", ""Wireless Mouse""]",2186.49,"{""promo"": ""22%""}",33531,0,North America +2024-11-24,64123,5169,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",68.57,{},274818,0,Europe +2023-03-11,64124,5100,"[""Phone""]",1739.02,"{""seasonal"": ""5%""}",102021,1,North America +2024-04-19,64125,1306,"[""Monitor"", ""Keyboard""]",1681.9,"{"""": ""21%""}",161924,1,Africa +2023-05-26,64126,9833,"[""Keyboard"", ""Monitor""]",4277.27,{},6271,0,Europe +2024-04-05,64127,6897,"[""Monitor"", ""Tablet"", ""Headphones""]",266.77,{},20015,0,Asia +2023-03-23,64128,9687,"[""Headphones"", ""Phone"", ""Laptop""]",2154.91,"{""loyalty"": ""16%""}",183883,0,South America +2023-03-16,64129,7470,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",523.23,{},282364,0,Africa +2024-02-01,64130,2943,"[""Laptop""]",4543.92,{},58956,0,Europe +2023-07-16,64131,7441,"[""Monitor""]",935.61,{},78214,0,Africa +2023-05-26,64132,5537,"[""Tablet""]",2790.02,{},154465,0,North America +2024-09-29,64133,3646,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2097.73,{},193938,1,Asia +2023-08-06,64134,5791,"[""Monitor"", ""Phone""]",1554.73,{},148032,1,Europe +2024-03-19,64135,9122,"[""Laptop"", ""Keyboard"", ""Headphones""]",3892.23,{},3708,1,Europe +2024-05-31,64136,844,"[""Tablet"", ""Phone""]",1356.66,"{"""": ""18%""}",76248,1,Asia +2024-09-19,64137,7170,"[""Headphones""]",2825.2,"{"""": ""20%""}",1515,1,North America +2023-09-19,64138,3613,"[""Wireless Mouse""]",4095.74,{},11948,0,Asia +2023-05-16,64139,5338,"[""Wireless Mouse"", ""Headphones""]",4968.11,{},17276,1,North America +2024-04-05,64140,3922,"[""Monitor""]",2083.96,"{""promo"": ""20%""}",104910,0,Africa +2024-02-29,64141,8911,"[""Tablet"", ""Keyboard""]",1836.97,"{""seasonal"": ""8%""}",213998,1,South America +2023-06-29,64142,2588,"[""Charger"", ""Headphones"", ""Phone""]",3166.65,"{""promo"": ""27%""}",206144,0,Africa +2023-11-19,64143,1255,"[""Tablet"", ""Phone""]",2631.8,"{""promo"": ""6%""}",118336,1,Africa +2024-04-10,64144,3949,"[""Monitor"", ""Tablet""]",947.29,"{""promo"": ""18%""}",194886,0,Europe +2024-11-02,64145,5292,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1861.07,"{""promo"": ""30%""}",203358,0,North America +2024-09-02,64146,5226,"[""Wireless Mouse""]",4816.91,{},206543,0,Africa +2024-04-30,64147,1388,"[""Charger"", ""Wireless Mouse""]",920.97,{},264342,1,Africa +2024-10-11,64148,2773,"[""Headphones"", ""Monitor""]",2659.55,"{"""": ""23%""}",230185,1,South America +2023-01-02,64149,4168,"[""Keyboard"", ""Wireless Mouse""]",567.35,{},287269,0,Europe +2023-10-11,64150,2179,"[""Tablet"", ""Keyboard"", ""Charger""]",4867.24,"{"""": ""14%""}",206704,1,Asia +2023-05-23,64151,1271,"[""Headphones"", ""Laptop"", ""Charger""]",2636.98,"{""seasonal"": ""21%""}",21800,1,Europe +2024-06-02,64152,9058,"[""Laptop"", ""Keyboard""]",144.45,{},20830,1,Africa +2023-05-20,64153,1722,"[""Wireless Mouse"", ""Laptop""]",861.68,"{"""": ""19%""}",218293,0,Asia +2023-06-06,64154,3796,"[""Laptop""]",3015.76,"{""seasonal"": ""8%""}",267678,1,Europe +2023-09-27,64155,1804,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3527.41,"{""loyalty"": ""28%""}",164615,0,North America +2024-07-24,64156,4729,"[""Keyboard"", ""Phone"", ""Monitor""]",3839.38,{},92207,1,Asia +2023-04-03,64157,6502,"[""Headphones"", ""Charger""]",4879.02,"{""promo"": ""12%""}",217093,1,South America +2024-11-03,64158,4410,"[""Headphones"", ""Wireless Mouse""]",63.43,"{""seasonal"": ""25%""}",109494,0,Asia +2024-07-07,64159,2554,"[""Charger"", ""Monitor"", ""Keyboard""]",4878.58,{},185232,0,Africa +2023-01-16,64160,670,"[""Phone""]",1509.76,"{""loyalty"": ""13%""}",228235,0,Africa +2023-08-28,64161,5062,"[""Wireless Mouse""]",4535.18,{},121702,0,North America +2024-05-23,64162,2538,"[""Phone"", ""Charger"", ""Monitor""]",2645.86,"{""promo"": ""14%""}",74866,1,Africa +2023-12-27,64163,2285,"[""Wireless Mouse"", ""Phone""]",665.07,{},114565,0,Asia +2023-12-24,64164,8271,"[""Charger"", ""Tablet""]",3213.77,"{""promo"": ""15%""}",260093,1,Europe +2023-10-25,64165,2508,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2471.57,{},105393,1,Africa +2023-07-22,64166,5466,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3779.85,{},42395,0,South America +2024-08-25,64167,332,"[""Wireless Mouse"", ""Monitor""]",153.88,{},74307,1,South America +2024-01-10,64168,4501,"[""Headphones"", ""Monitor""]",2611.71,{},251920,0,Africa +2024-04-05,64169,5564,"[""Keyboard"", ""Monitor"", ""Charger""]",117.42,{},280978,0,Europe +2023-11-21,64170,3200,"[""Headphones""]",4823.09,"{"""": ""17%""}",253185,0,Asia +2024-08-08,64171,3333,"[""Tablet""]",4028.79,{},183288,1,Europe +2023-04-25,64172,2159,"[""Phone"", ""Headphones""]",1269.63,{},119708,1,North America +2023-12-16,64173,4210,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1984.99,"{""seasonal"": ""17%""}",216263,0,North America +2023-06-23,64174,5602,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3600.98,{},269524,0,Europe +2023-04-26,64175,7904,"[""Wireless Mouse"", ""Phone""]",1680.13,{},190529,0,Africa +2023-06-25,64176,7699,"[""Monitor""]",4288.7,"{""loyalty"": ""23%""}",147580,1,Asia +2023-05-28,64177,5566,"[""Keyboard"", ""Monitor""]",1029.05,{},53303,1,Asia +2023-05-29,64178,383,"[""Keyboard"", ""Monitor""]",4792.67,"{""promo"": ""23%""}",244830,0,South America +2023-03-08,64179,9946,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2890.59,"{""seasonal"": ""12%""}",173912,1,Europe +2023-03-19,64180,3163,"[""Monitor"", ""Charger""]",2174.35,"{"""": ""11%""}",43052,1,Europe +2023-03-19,64181,2736,"[""Wireless Mouse"", ""Headphones""]",339.84,{},87521,0,Europe +2023-04-13,64182,3990,"[""Tablet""]",2066.37,{},237088,1,Africa +2023-08-28,64183,4179,"[""Laptop"", ""Phone""]",1595.22,{},264271,0,Europe +2023-12-15,64184,1716,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2538.54,{},83931,1,South America +2023-05-17,64185,2969,"[""Tablet"", ""Keyboard""]",1869.2,{},290793,1,Europe +2024-05-09,64186,4552,"[""Phone"", ""Tablet""]",3535.21,"{""loyalty"": ""5%""}",50884,1,Africa +2023-02-03,64187,1534,"[""Headphones"", ""Tablet""]",3419.21,{},36665,0,Asia +2023-06-09,64188,5246,"[""Phone"", ""Charger""]",1995.34,"{""loyalty"": ""12%""}",144325,0,North America +2023-12-05,64189,3758,"[""Charger""]",3973.3,"{"""": ""24%""}",84014,0,Asia +2024-08-20,64190,5383,"[""Monitor"", ""Tablet"", ""Keyboard""]",2393.05,{},151017,1,South America +2023-05-20,64191,8656,"[""Laptop""]",4056.9,{},101046,1,North America +2024-03-01,64192,7514,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2554.56,"{"""": ""10%""}",92872,1,South America +2023-11-22,64193,5012,"[""Tablet"", ""Laptop""]",4955.79,"{""loyalty"": ""12%""}",265001,0,Europe +2023-09-13,64194,9694,"[""Tablet"", ""Phone"", ""Monitor""]",2774.66,"{"""": ""5%""}",97245,1,North America +2023-08-08,64195,2067,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4735.47,"{""promo"": ""13%""}",74883,0,Europe +2024-04-05,64196,5782,"[""Monitor"", ""Phone""]",397.94,{},267657,0,Asia +2023-01-13,64197,6606,"[""Headphones"", ""Laptop""]",3969.89,{},209314,0,South America +2024-02-02,64198,4328,"[""Phone"", ""Laptop""]",2180.66,"{"""": ""22%""}",161305,1,North America +2024-07-07,64199,1026,"[""Headphones"", ""Phone""]",643.06,{},80580,1,South America +2024-03-11,64200,794,"[""Phone""]",1455.04,{},147884,1,Africa +2024-08-27,64201,2045,"[""Tablet"", ""Charger""]",728.78,{},29968,1,Africa +2024-07-28,64202,1315,"[""Laptop""]",1000.45,"{"""": ""12%""}",17785,1,Asia +2024-06-11,64203,368,"[""Monitor"", ""Charger"", ""Headphones""]",2178.2,{},34782,1,South America +2024-12-14,64204,8808,"[""Wireless Mouse""]",398.63,"{"""": ""26%""}",11004,1,Asia +2023-03-13,64205,7676,"[""Tablet"", ""Monitor""]",3505.26,{},77531,1,Asia +2023-12-08,64206,2722,"[""Headphones"", ""Monitor""]",3258.82,"{"""": ""6%""}",5128,1,Africa +2023-05-20,64207,5391,"[""Headphones""]",2557.93,{},277316,0,North America +2023-12-18,64208,2726,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3027.43,"{"""": ""7%""}",189529,0,North America +2023-06-21,64209,3759,"[""Tablet"", ""Phone""]",3158.53,"{""loyalty"": ""11%""}",287422,0,Europe +2023-01-19,64210,6361,"[""Keyboard""]",3581.73,"{""seasonal"": ""22%""}",253877,0,South America +2023-05-07,64211,4548,"[""Keyboard"", ""Monitor"", ""Charger""]",2135.17,{},10978,1,Asia +2023-05-24,64212,8891,"[""Headphones"", ""Monitor""]",2041.62,{},298926,1,Asia +2024-10-22,64213,444,"[""Monitor""]",2732.53,{},157831,1,Europe +2023-02-28,64214,4231,"[""Keyboard"", ""Tablet""]",2823.5,{},194757,0,South America +2023-06-13,64215,7543,"[""Tablet"", ""Laptop""]",2927.19,{},109464,0,Asia +2023-10-03,64216,4798,"[""Tablet"", ""Headphones"", ""Phone""]",4769.12,{},162157,1,Europe +2024-02-18,64217,430,"[""Monitor""]",4520.52,{},194257,0,Africa +2024-09-04,64218,5496,"[""Wireless Mouse""]",4459.13,{},108004,0,Europe +2023-09-15,64219,8135,"[""Keyboard""]",326.2,{},225089,0,Europe +2023-03-30,64220,8568,"[""Phone""]",3496.08,{},271071,1,South America +2023-11-30,64221,2888,"[""Headphones"", ""Phone"", ""Monitor""]",1248.09,"{"""": ""15%""}",132528,0,North America +2024-10-02,64222,4611,"[""Tablet"", ""Wireless Mouse""]",1166.21,{},211634,1,North America +2024-08-29,64223,3089,"[""Headphones""]",4768.37,"{"""": ""6%""}",294409,0,Africa +2023-01-29,64224,4312,"[""Charger"", ""Tablet"", ""Headphones""]",2906.25,"{""seasonal"": ""20%""}",88440,1,Asia +2023-10-28,64225,5818,"[""Tablet"", ""Monitor""]",924.71,{},208475,1,Europe +2024-03-17,64226,3275,"[""Headphones"", ""Tablet""]",955.63,"{""promo"": ""9%""}",189419,1,North America +2024-08-18,64227,6086,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3952.56,"{""loyalty"": ""24%""}",224302,1,Africa +2024-08-05,64228,7220,"[""Tablet""]",1287.99,"{""seasonal"": ""27%""}",184705,0,North America +2023-11-28,64229,9658,"[""Monitor"", ""Phone""]",1559.0,"{""loyalty"": ""30%""}",222418,1,Asia +2024-04-16,64230,2178,"[""Headphones"", ""Keyboard"", ""Monitor""]",4427.21,"{""loyalty"": ""12%""}",127889,1,South America +2023-01-10,64231,8572,"[""Monitor""]",1632.84,"{"""": ""16%""}",234751,1,Asia +2023-09-20,64232,9945,"[""Laptop"", ""Tablet""]",212.25,{},102369,1,South America +2024-06-18,64233,8255,"[""Headphones"", ""Laptop""]",2570.07,{},122755,0,North America +2023-12-04,64234,5880,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3918.05,{},160399,0,South America +2023-07-28,64235,8527,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1934.44,{},118874,0,South America +2023-09-12,64236,5642,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2972.78,{},74218,0,South America +2024-12-29,64237,6813,"[""Phone"", ""Keyboard"", ""Charger""]",230.25,"{""seasonal"": ""9%""}",94766,1,Europe +2024-03-22,64238,5263,"[""Keyboard"", ""Charger"", ""Monitor""]",278.47,{},204315,1,South America +2024-05-21,64239,9322,"[""Laptop"", ""Monitor"", ""Keyboard""]",4727.08,"{""seasonal"": ""15%""}",198472,1,Europe +2024-08-22,64240,765,"[""Headphones"", ""Wireless Mouse""]",423.39,"{""loyalty"": ""17%""}",40405,0,South America +2024-01-04,64241,7945,"[""Charger"", ""Tablet"", ""Monitor""]",2499.7,"{""promo"": ""21%""}",293047,0,Europe +2024-06-20,64242,6231,"[""Laptop"", ""Monitor""]",2709.65,{},80917,1,Europe +2023-08-26,64243,4092,"[""Laptop"", ""Headphones""]",3402.86,"{""loyalty"": ""9%""}",214519,0,Asia +2024-09-14,64244,3248,"[""Charger"", ""Laptop""]",1028.39,"{""seasonal"": ""22%""}",3067,1,North America +2023-10-28,64245,6358,"[""Keyboard"", ""Phone"", ""Laptop""]",2265.18,{},106207,0,Asia +2024-06-02,64246,7901,"[""Wireless Mouse"", ""Monitor""]",1183.24,{},294656,0,Africa +2024-08-10,64247,3973,"[""Keyboard"", ""Laptop"", ""Phone""]",4758.48,{},194507,0,South America +2023-07-05,64248,2867,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2871.67,{},130009,1,Asia +2024-09-16,64249,4085,"[""Headphones"", ""Tablet""]",512.77,{},54399,0,North America +2023-07-14,64250,4537,"[""Monitor"", ""Tablet""]",309.54,"{"""": ""18%""}",238129,1,Asia +2024-11-02,64251,5612,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3174.14,"{""promo"": ""29%""}",44667,0,North America +2024-01-18,64252,7086,"[""Monitor"", ""Laptop""]",1563.7,{},122333,0,Asia +2024-07-02,64253,2532,"[""Laptop""]",3222.0,{},11633,0,Asia +2023-06-02,64254,9624,"[""Headphones""]",308.21,{},139636,0,Europe +2023-01-14,64255,2040,"[""Monitor"", ""Phone"", ""Charger""]",3044.83,{},207728,0,Africa +2024-07-23,64256,7860,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3347.4,"{""seasonal"": ""22%""}",4975,1,Europe +2024-06-22,64257,8567,"[""Phone"", ""Wireless Mouse""]",3619.3,"{""loyalty"": ""10%""}",263727,0,Africa +2024-03-26,64258,5806,"[""Keyboard"", ""Headphones""]",1697.63,{},56295,1,Europe +2023-07-05,64259,3909,"[""Charger"", ""Tablet"", ""Laptop""]",4450.49,{},80819,0,South America +2024-01-15,64260,9499,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4256.06,"{"""": ""28%""}",243222,0,South America +2024-01-03,64261,3116,"[""Monitor"", ""Wireless Mouse""]",4312.14,"{"""": ""7%""}",264404,1,Asia +2023-05-26,64262,2643,"[""Charger""]",3439.17,{},61654,0,Europe +2024-03-28,64263,8457,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",406.4,{},33301,0,Asia +2024-04-10,64264,266,"[""Keyboard"", ""Charger""]",1126.81,"{""loyalty"": ""28%""}",11890,1,Asia +2024-03-19,64265,5216,"[""Tablet"", ""Monitor""]",4972.97,"{""seasonal"": ""17%""}",230293,0,Asia +2023-09-05,64266,6885,"[""Monitor"", ""Phone""]",3399.81,{},41237,1,Europe +2023-09-18,64267,8719,"[""Phone""]",1066.0,{},231968,0,South America +2024-09-11,64268,7613,"[""Charger""]",1276.76,"{""loyalty"": ""5%""}",19929,1,Europe +2023-01-12,64269,4569,"[""Charger"", ""Tablet"", ""Laptop""]",3818.68,{},94399,1,Africa +2024-08-04,64270,5673,"[""Laptop""]",3656.15,"{""promo"": ""21%""}",227478,0,South America +2024-08-06,64271,1754,"[""Tablet"", ""Phone"", ""Monitor""]",3637.93,{},213294,1,South America +2023-07-02,64272,5668,"[""Wireless Mouse"", ""Keyboard""]",584.18,{},152578,1,North America +2024-05-29,64273,7175,"[""Laptop"", ""Monitor"", ""Tablet""]",1569.75,{},197345,0,Africa +2023-07-10,64274,4744,"[""Monitor"", ""Keyboard"", ""Laptop""]",4673.55,"{""loyalty"": ""19%""}",265840,1,South America +2023-06-18,64275,3135,"[""Monitor""]",697.45,{},134075,0,North America +2024-04-05,64276,5641,"[""Laptop"", ""Wireless Mouse""]",2379.19,"{""seasonal"": ""16%""}",30073,1,South America +2024-06-26,64277,7401,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3938.92,{},21704,1,South America +2023-04-17,64278,8690,"[""Charger"", ""Tablet"", ""Laptop""]",2719.5,"{""promo"": ""5%""}",158797,1,Europe +2024-09-17,64279,6419,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2446.4,{},31631,1,Africa +2024-04-29,64280,2638,"[""Laptop"", ""Wireless Mouse""]",2841.81,"{""seasonal"": ""15%""}",92113,0,Asia +2024-07-24,64281,8806,"[""Tablet""]",1173.14,{},225214,1,Africa +2023-09-17,64282,9225,"[""Phone"", ""Monitor"", ""Tablet""]",2059.21,"{"""": ""15%""}",159336,1,South America +2024-11-11,64283,4686,"[""Tablet"", ""Laptop"", ""Phone""]",3200.69,{},63015,0,Africa +2023-08-24,64284,8066,"[""Monitor""]",223.05,"{""loyalty"": ""24%""}",13568,1,Africa +2023-07-09,64285,6553,"[""Keyboard""]",3032.03,{},28353,1,Africa +2023-07-04,64286,6673,"[""Monitor""]",3096.41,"{""promo"": ""24%""}",186227,1,Europe +2023-01-24,64287,9773,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1369.15,"{"""": ""25%""}",249877,0,Europe +2023-03-02,64288,5478,"[""Headphones"", ""Tablet""]",346.27,"{""seasonal"": ""27%""}",18702,0,Europe +2024-12-25,64289,9021,"[""Keyboard"", ""Headphones"", ""Phone""]",4871.93,{},201729,1,Asia +2023-10-31,64290,5482,"[""Headphones"", ""Phone""]",2532.27,{},177755,0,North America +2023-06-20,64291,971,"[""Laptop""]",3796.65,{},43267,1,Europe +2023-10-31,64292,4575,"[""Phone"", ""Monitor""]",1353.37,"{""promo"": ""16%""}",157195,1,Asia +2024-01-13,64293,4314,"[""Monitor""]",1331.47,"{""seasonal"": ""27%""}",259246,0,Asia +2023-07-27,64294,1868,"[""Headphones"", ""Wireless Mouse""]",2535.54,"{""loyalty"": ""25%""}",23470,1,Asia +2024-05-20,64295,9170,"[""Keyboard"", ""Tablet""]",4937.34,"{"""": ""25%""}",147655,0,Africa +2024-08-05,64296,5378,"[""Monitor""]",4638.53,"{""promo"": ""8%""}",42853,1,Asia +2023-12-30,64297,3814,"[""Tablet"", ""Headphones""]",2643.52,{},264642,0,North America +2023-03-12,64298,8183,"[""Tablet"", ""Laptop"", ""Keyboard""]",1814.86,{},244804,1,North America +2024-03-13,64299,1675,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3779.72,"{"""": ""15%""}",244933,0,North America +2024-03-25,64300,3578,"[""Tablet""]",4181.01,"{""seasonal"": ""13%""}",85146,0,Asia +2023-02-21,64301,7385,"[""Tablet"", ""Headphones""]",1241.76,"{""seasonal"": ""25%""}",64938,1,South America +2023-03-27,64302,7455,"[""Keyboard"", ""Monitor""]",1931.02,"{""seasonal"": ""29%""}",244919,1,South America +2023-05-24,64303,3606,"[""Tablet"", ""Phone""]",1862.04,{},68045,0,Europe +2023-12-14,64304,3920,"[""Laptop"", ""Tablet""]",3871.58,{},215688,1,Asia +2023-12-10,64305,9548,"[""Headphones""]",3251.44,{},214179,1,Africa +2023-04-24,64306,3525,"[""Phone"", ""Monitor"", ""Charger""]",4230.31,{},201894,1,North America +2024-11-19,64307,8326,"[""Headphones""]",3045.25,{},234781,1,Africa +2023-06-15,64308,9769,"[""Laptop"", ""Monitor""]",3561.61,"{""promo"": ""26%""}",42597,0,North America +2024-03-08,64309,2142,"[""Headphones"", ""Charger""]",2659.38,"{""promo"": ""17%""}",110378,0,Africa +2024-03-29,64310,9340,"[""Keyboard""]",3468.97,{},199488,0,South America +2024-07-02,64311,6291,"[""Keyboard"", ""Laptop""]",1445.37,{},26192,1,North America +2023-02-28,64312,8981,"[""Laptop"", ""Keyboard"", ""Tablet""]",276.76,"{""loyalty"": ""26%""}",186658,1,South America +2024-06-16,64313,1563,"[""Phone""]",896.06,"{""seasonal"": ""27%""}",47317,1,Asia +2023-02-27,64314,5561,"[""Tablet"", ""Charger"", ""Monitor""]",2693.1,{},274411,1,Africa +2023-10-31,64315,6709,"[""Phone"", ""Laptop"", ""Charger""]",3555.62,"{""promo"": ""27%""}",119753,0,Europe +2024-12-22,64316,9493,"[""Phone"", ""Charger"", ""Headphones""]",2569.14,{},267019,1,Asia +2024-04-15,64317,7438,"[""Keyboard"", ""Monitor""]",4296.75,"{""seasonal"": ""23%""}",203912,1,Europe +2023-01-24,64318,6166,"[""Wireless Mouse"", ""Phone""]",3062.09,"{""loyalty"": ""12%""}",288949,0,North America +2024-01-09,64319,9092,"[""Laptop""]",1984.64,"{"""": ""25%""}",144852,0,South America +2023-07-26,64320,3771,"[""Headphones"", ""Laptop""]",3735.12,"{""promo"": ""9%""}",227113,1,North America +2024-06-04,64321,7583,"[""Tablet""]",4656.79,"{"""": ""20%""}",96716,1,Asia +2024-12-31,64322,4437,"[""Wireless Mouse"", ""Tablet""]",3714.51,{},222334,1,Africa +2024-04-16,64323,705,"[""Headphones"", ""Laptop""]",3741.98,"{"""": ""18%""}",41686,0,Africa +2023-09-27,64324,7764,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3807.57,{},269090,1,Africa +2024-03-28,64325,7241,"[""Headphones"", ""Monitor"", ""Keyboard""]",167.91,"{""promo"": ""9%""}",194288,1,South America +2023-11-28,64326,2758,"[""Keyboard"", ""Phone""]",4555.05,{},291337,0,North America +2023-10-29,64327,2579,"[""Tablet""]",4014.03,"{"""": ""23%""}",138655,0,North America +2024-03-22,64328,1638,"[""Charger"", ""Headphones"", ""Phone""]",4959.66,{},254529,0,Europe +2024-04-13,64329,5187,"[""Tablet""]",3320.07,"{"""": ""19%""}",201874,1,South America +2023-12-12,64330,4591,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",298.42,{},212530,1,North America +2024-09-30,64331,5315,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2731.97,"{""promo"": ""25%""}",61453,0,Europe +2023-03-26,64332,251,"[""Headphones"", ""Tablet""]",2859.62,"{""promo"": ""25%""}",5867,0,North America +2024-12-07,64333,9602,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2802.24,{},140264,0,Asia +2023-02-12,64334,9901,"[""Keyboard""]",2698.47,"{""loyalty"": ""25%""}",192742,1,Asia +2023-04-30,64335,4313,"[""Charger"", ""Monitor""]",2006.87,{},41046,0,Europe +2023-06-16,64336,2620,"[""Phone""]",2422.34,{},192804,1,North America +2023-05-23,64337,4935,"[""Laptop""]",1877.61,{},176566,1,North America +2023-12-21,64338,8220,"[""Charger"", ""Keyboard"", ""Laptop""]",2521.97,{},68083,0,North America +2024-10-16,64339,4674,"[""Monitor"", ""Wireless Mouse""]",1959.95,{},291565,1,South America +2023-03-26,64340,7829,"[""Keyboard""]",3019.12,"{""seasonal"": ""25%""}",220040,1,Europe +2023-10-08,64341,4287,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",970.83,"{"""": ""25%""}",178322,0,Europe +2023-01-20,64342,4511,"[""Phone"", ""Laptop"", ""Charger""]",1050.07,{},281579,0,South America +2023-05-29,64343,5950,"[""Headphones""]",4008.83,"{""loyalty"": ""24%""}",143635,1,Asia +2024-08-28,64344,232,"[""Tablet"", ""Charger"", ""Headphones""]",4772.56,{},193500,1,Asia +2023-12-08,64345,4570,"[""Headphones"", ""Phone""]",3846.52,{},155436,1,North America +2024-06-22,64346,9181,"[""Headphones"", ""Monitor""]",2945.29,"{""loyalty"": ""28%""}",16671,0,Asia +2024-10-28,64347,5627,"[""Keyboard""]",1923.03,"{""seasonal"": ""9%""}",273532,0,Europe +2023-03-07,64348,8506,"[""Headphones"", ""Wireless Mouse""]",2234.94,{},23454,1,Europe +2024-03-31,64349,9706,"[""Monitor""]",1294.32,{},275660,0,North America +2024-12-25,64350,1517,"[""Laptop""]",4504.04,"{""loyalty"": ""5%""}",267872,1,Asia +2023-01-31,64351,8663,"[""Keyboard"", ""Charger"", ""Tablet""]",1239.58,{},181122,1,Africa +2023-01-01,64352,7936,"[""Keyboard"", ""Headphones"", ""Tablet""]",299.65,"{""loyalty"": ""12%""}",113235,1,Asia +2023-08-01,64353,5740,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3521.18,{},187018,0,Europe +2024-05-18,64354,3762,"[""Monitor"", ""Tablet""]",2364.94,"{""promo"": ""12%""}",129658,0,Africa +2024-05-22,64355,6657,"[""Laptop"", ""Headphones""]",2225.06,{},187278,0,Europe +2023-08-21,64356,2005,"[""Tablet"", ""Monitor""]",3173.98,"{""loyalty"": ""20%""}",5291,1,Europe +2023-04-05,64357,7683,"[""Monitor"", ""Phone""]",2152.18,"{""loyalty"": ""27%""}",33587,1,Asia +2023-01-22,64358,5479,"[""Monitor""]",1716.58,"{""promo"": ""22%""}",94512,1,Africa +2023-01-07,64359,3816,"[""Wireless Mouse""]",3538.52,"{""loyalty"": ""12%""}",133608,1,South America +2023-06-07,64360,5214,"[""Laptop"", ""Tablet"", ""Phone""]",4038.3,"{""promo"": ""17%""}",236606,0,South America +2024-10-15,64361,857,"[""Headphones"", ""Phone""]",1914.13,"{""loyalty"": ""12%""}",21366,1,South America +2024-08-16,64362,3321,"[""Laptop""]",4063.34,"{""loyalty"": ""10%""}",294521,0,Africa +2023-03-03,64363,3007,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4659.49,{},130840,0,Asia +2023-04-01,64364,2133,"[""Monitor"", ""Headphones"", ""Phone""]",773.17,"{""loyalty"": ""17%""}",25487,0,Europe +2024-09-01,64365,4775,"[""Headphones""]",2772.38,"{""seasonal"": ""30%""}",257788,1,Europe +2023-11-23,64366,7211,"[""Tablet"", ""Monitor""]",542.85,"{""promo"": ""16%""}",31889,0,South America +2023-05-06,64367,4393,"[""Charger"", ""Monitor""]",660.25,{},122928,0,Europe +2024-08-02,64368,5626,"[""Charger"", ""Monitor"", ""Tablet""]",4925.76,"{"""": ""14%""}",64781,0,Europe +2023-12-26,64369,5039,"[""Keyboard""]",779.04,{},70402,1,Africa +2023-02-16,64370,9737,"[""Phone"", ""Charger""]",1328.35,{},124619,1,South America +2024-09-05,64371,9710,"[""Monitor"", ""Tablet"", ""Phone""]",91.29,{},128123,0,South America +2024-09-16,64372,5989,"[""Headphones"", ""Tablet"", ""Charger""]",2864.64,{},67861,0,North America +2024-12-14,64373,4353,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1811.96,"{"""": ""14%""}",261620,0,Asia +2024-01-04,64374,4817,"[""Charger"", ""Keyboard""]",4320.38,{},62278,0,Europe +2024-05-07,64375,5826,"[""Wireless Mouse""]",550.46,"{""promo"": ""13%""}",213209,1,Asia +2023-05-09,64376,4993,"[""Charger""]",3687.31,"{"""": ""13%""}",274511,1,Asia +2023-11-23,64377,8499,"[""Wireless Mouse""]",1089.62,"{""seasonal"": ""8%""}",138844,0,North America +2024-01-13,64378,1178,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",685.36,{},241981,1,Europe +2023-12-13,64379,7692,"[""Laptop"", ""Headphones"", ""Tablet""]",4728.18,"{""loyalty"": ""15%""}",195783,1,Africa +2023-03-22,64380,9940,"[""Wireless Mouse""]",4241.61,{},272526,1,South America +2023-03-24,64381,9250,"[""Laptop""]",703.3,"{"""": ""5%""}",208290,1,South America +2024-11-08,64382,139,"[""Wireless Mouse""]",3863.95,"{""promo"": ""25%""}",159486,1,Asia +2024-04-18,64383,2847,"[""Tablet"", ""Headphones"", ""Monitor""]",1223.09,"{"""": ""12%""}",61271,1,South America +2023-03-24,64384,8598,"[""Wireless Mouse"", ""Charger""]",4641.19,"{""promo"": ""16%""}",91679,0,Europe +2023-05-31,64385,7612,"[""Wireless Mouse""]",2814.57,{},97011,0,North America +2024-05-31,64386,2057,"[""Keyboard"", ""Tablet""]",503.81,"{""seasonal"": ""17%""}",77035,1,Asia +2024-08-27,64387,8377,"[""Headphones"", ""Monitor"", ""Phone""]",4825.32,"{"""": ""18%""}",161388,1,Asia +2024-12-14,64388,6750,"[""Laptop""]",3528.99,"{""promo"": ""14%""}",149482,0,Europe +2024-11-15,64389,8964,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3354.45,"{""loyalty"": ""8%""}",234937,0,South America +2024-06-13,64390,8913,"[""Keyboard"", ""Tablet"", ""Charger""]",133.17,"{"""": ""5%""}",184110,1,South America +2023-01-24,64391,2575,"[""Wireless Mouse""]",508.5,{},297107,0,Europe +2024-12-02,64392,4691,"[""Tablet"", ""Monitor"", ""Laptop""]",3522.86,"{""promo"": ""6%""}",168530,1,Asia +2023-03-16,64393,1391,"[""Monitor""]",656.93,{},234786,1,Africa +2024-09-23,64394,2308,"[""Keyboard"", ""Wireless Mouse""]",1524.34,"{"""": ""30%""}",170284,1,Asia +2023-11-13,64395,9567,"[""Laptop"", ""Headphones"", ""Tablet""]",630.43,{},62046,1,South America +2023-05-15,64396,3696,"[""Monitor""]",4989.19,{},239320,0,Africa +2023-06-28,64397,3743,"[""Tablet"", ""Wireless Mouse""]",3298.42,{},55655,0,Asia +2023-03-14,64398,4805,"[""Laptop"", ""Charger""]",4947.73,{},44456,0,Europe +2023-04-23,64399,7292,"[""Keyboard"", ""Charger""]",2352.65,{},67459,0,Africa +2024-07-22,64400,577,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4515.81,{},25796,1,Africa +2023-06-02,64401,8534,"[""Keyboard""]",934.66,"{""promo"": ""24%""}",150496,1,Europe +2024-12-30,64402,4909,"[""Wireless Mouse""]",1659.36,{},158054,1,North America +2023-03-30,64403,7490,"[""Monitor""]",2154.62,{},30280,0,Africa +2023-03-22,64404,6042,"[""Charger""]",3390.24,{},239623,0,Africa +2023-08-23,64405,3226,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4014.94,{},96673,1,Europe +2023-01-08,64406,3111,"[""Phone"", ""Keyboard""]",65.79,{},145590,1,Asia +2023-11-13,64407,5837,"[""Monitor"", ""Tablet""]",304.09,{},261506,0,Asia +2024-10-21,64408,9005,"[""Charger"", ""Phone""]",2418.3,"{""seasonal"": ""27%""}",41871,0,Asia +2024-07-19,64409,6756,"[""Keyboard"", ""Monitor""]",1759.81,"{""loyalty"": ""27%""}",141119,0,Africa +2024-10-20,64410,2247,"[""Laptop"", ""Phone""]",2141.05,"{"""": ""5%""}",36243,0,South America +2024-01-23,64411,6447,"[""Tablet""]",204.98,{},285381,1,Europe +2023-01-27,64412,6540,"[""Tablet""]",4934.48,"{""loyalty"": ""26%""}",116159,1,Asia +2024-07-12,64413,338,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2480.82,"{"""": ""16%""}",40443,0,South America +2023-06-07,64414,5892,"[""Monitor"", ""Phone""]",4471.34,{},146721,0,Europe +2024-10-13,64415,9945,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1629.51,"{""seasonal"": ""21%""}",210097,1,Europe +2024-07-23,64416,4594,"[""Laptop""]",1872.59,"{""loyalty"": ""21%""}",58741,0,Europe +2024-05-23,64417,109,"[""Tablet"", ""Laptop""]",4597.63,"{""seasonal"": ""13%""}",140229,1,North America +2024-12-07,64418,1855,"[""Laptop"", ""Monitor"", ""Tablet""]",4587.42,{},230263,0,South America +2024-11-25,64419,6134,"[""Monitor"", ""Tablet""]",1248.38,"{""seasonal"": ""19%""}",163102,1,Asia +2024-02-18,64420,6908,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4746.4,"{""loyalty"": ""15%""}",50679,1,Europe +2024-04-10,64421,7447,"[""Headphones"", ""Tablet"", ""Phone""]",1777.17,"{""promo"": ""20%""}",295263,0,South America +2023-05-20,64422,8781,"[""Headphones""]",1687.31,{},160871,0,South America +2024-11-01,64423,8653,"[""Wireless Mouse""]",2234.31,{},185409,1,Europe +2024-08-27,64424,5601,"[""Keyboard"", ""Tablet"", ""Monitor""]",4977.78,"{"""": ""27%""}",261289,0,Africa +2023-03-04,64425,837,"[""Headphones"", ""Keyboard"", ""Monitor""]",440.08,{},130805,1,Asia +2024-07-10,64426,3700,"[""Laptop"", ""Monitor""]",1720.72,{},27142,0,Europe +2024-09-05,64427,2193,"[""Keyboard"", ""Monitor""]",2353.44,"{""seasonal"": ""15%""}",26293,1,South America +2024-12-09,64428,597,"[""Wireless Mouse"", ""Laptop""]",900.97,{},183958,1,North America +2023-05-02,64429,6377,"[""Tablet"", ""Laptop""]",4113.01,{},26770,1,Europe +2024-06-30,64430,1028,"[""Headphones""]",210.35,{},32043,1,Asia +2023-02-26,64431,7584,"[""Laptop"", ""Tablet""]",4695.16,"{""seasonal"": ""15%""}",175383,0,Africa +2023-01-29,64432,1451,"[""Phone"", ""Tablet""]",3176.58,{},44976,1,Europe +2024-01-02,64433,5754,"[""Laptop""]",261.87,"{""promo"": ""27%""}",79860,1,South America +2023-04-18,64434,9945,"[""Phone"", ""Charger""]",1940.44,{},131217,0,Europe +2023-05-06,64435,5221,"[""Phone"", ""Monitor""]",3707.76,{},200360,0,North America +2023-12-30,64436,2878,"[""Headphones"", ""Charger""]",3670.76,{},52898,0,Asia +2023-09-21,64437,9190,"[""Headphones""]",3563.49,{},183030,0,South America +2024-03-12,64438,3198,"[""Wireless Mouse"", ""Charger""]",2649.94,"{""seasonal"": ""14%""}",29023,0,Africa +2023-05-22,64439,5315,"[""Keyboard"", ""Laptop""]",560.86,{},9387,1,North America +2023-06-06,64440,4790,"[""Keyboard"", ""Wireless Mouse""]",4530.61,{},79665,1,South America +2024-04-18,64441,8850,"[""Tablet"", ""Charger"", ""Keyboard""]",518.85,{},189508,1,Africa +2023-11-26,64442,303,"[""Keyboard"", ""Laptop""]",3434.75,"{"""": ""11%""}",21416,1,North America +2023-12-05,64443,3079,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3185.44,{},243055,0,North America +2023-11-06,64444,5129,"[""Charger"", ""Tablet"", ""Laptop""]",2087.87,{},74248,0,Asia +2024-05-12,64445,1149,"[""Laptop"", ""Wireless Mouse""]",2175.13,{},78532,0,North America +2024-04-25,64446,8320,"[""Monitor""]",971.02,"{""loyalty"": ""8%""}",140621,1,Africa +2024-03-17,64447,8482,"[""Monitor"", ""Charger""]",1369.66,{},107903,0,Africa +2023-01-31,64448,8550,"[""Wireless Mouse""]",149.92,"{"""": ""26%""}",85012,1,South America +2024-04-18,64449,7145,"[""Tablet""]",1105.98,{},268545,0,Asia +2024-04-13,64450,2065,"[""Laptop""]",209.09,"{"""": ""14%""}",77291,0,Africa +2023-12-22,64451,613,"[""Headphones""]",2757.79,"{""seasonal"": ""16%""}",88222,1,South America +2023-04-03,64452,9451,"[""Charger""]",478.69,{},16381,1,South America +2023-02-28,64453,1505,"[""Charger"", ""Phone""]",2734.36,{},20377,0,South America +2024-02-15,64454,8368,"[""Tablet"", ""Laptop""]",2209.16,"{"""": ""27%""}",193647,1,South America +2024-03-25,64455,6813,"[""Monitor"", ""Wireless Mouse""]",3661.63,"{""loyalty"": ""16%""}",269701,0,Asia +2023-04-10,64456,3391,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1788.68,{},50121,0,Asia +2024-03-06,64457,7499,"[""Keyboard""]",1787.3,"{"""": ""21%""}",127314,1,North America +2024-01-31,64458,1714,"[""Laptop""]",803.42,"{""seasonal"": ""19%""}",83343,0,Africa +2024-03-18,64459,4562,"[""Phone"", ""Monitor""]",2182.78,{},166401,1,North America +2024-08-13,64460,7155,"[""Wireless Mouse""]",3335.02,"{""loyalty"": ""28%""}",61725,1,South America +2023-06-14,64461,6630,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4113.89,"{""promo"": ""12%""}",134249,1,North America +2023-08-31,64462,4535,"[""Charger"", ""Keyboard"", ""Headphones""]",932.71,{},18415,1,Africa +2023-02-24,64463,6811,"[""Tablet"", ""Wireless Mouse""]",1926.31,{},160346,0,Europe +2023-11-19,64464,7515,"[""Wireless Mouse""]",3949.88,{},177925,1,North America +2024-05-21,64465,7571,"[""Tablet"", ""Monitor""]",695.16,"{"""": ""21%""}",194052,0,North America +2024-05-03,64466,8955,"[""Wireless Mouse""]",2860.36,"{""seasonal"": ""12%""}",239460,0,Africa +2023-04-25,64467,2109,"[""Wireless Mouse"", ""Headphones""]",4803.66,"{""promo"": ""8%""}",89428,1,Europe +2024-03-25,64468,2156,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",57.71,{},39190,0,Europe +2024-12-20,64469,6682,"[""Tablet""]",236.28,"{""loyalty"": ""17%""}",61159,0,Africa +2024-08-14,64470,6263,"[""Wireless Mouse"", ""Headphones""]",3346.3,"{""seasonal"": ""7%""}",147054,0,Asia +2024-08-18,64471,3808,"[""Keyboard"", ""Headphones"", ""Tablet""]",4059.1,"{"""": ""25%""}",259503,0,Africa +2024-06-27,64472,6020,"[""Monitor""]",2494.51,"{""seasonal"": ""20%""}",9373,0,North America +2024-05-20,64473,1910,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1545.55,"{""promo"": ""20%""}",73016,1,Europe +2023-02-12,64474,1333,"[""Wireless Mouse"", ""Tablet""]",3316.94,{},285040,0,Europe +2023-10-05,64475,2731,"[""Monitor""]",1518.13,"{""seasonal"": ""17%""}",151303,1,North America +2023-02-28,64476,9836,"[""Headphones"", ""Charger"", ""Tablet""]",2374.94,"{""loyalty"": ""18%""}",251320,0,Europe +2023-04-30,64477,7267,"[""Headphones"", ""Tablet""]",113.95,"{""promo"": ""18%""}",155202,1,Asia +2024-08-27,64478,54,"[""Charger"", ""Phone"", ""Monitor""]",1957.38,{},57079,1,Europe +2023-09-07,64479,7045,"[""Monitor""]",3456.67,"{"""": ""10%""}",60067,1,North America +2023-02-10,64480,7844,"[""Headphones""]",3396.84,{},51877,0,Asia +2023-01-30,64481,5314,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3058.86,"{""loyalty"": ""23%""}",291230,0,South America +2023-11-26,64482,267,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",616.39,"{""seasonal"": ""10%""}",54794,0,Africa +2024-11-12,64483,6297,"[""Laptop""]",3488.8,{},151025,0,North America +2023-08-09,64484,5110,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2571.87,"{""seasonal"": ""19%""}",209545,0,North America +2023-04-14,64485,438,"[""Monitor"", ""Wireless Mouse""]",4065.1,{},165505,0,North America +2023-08-11,64486,1963,"[""Tablet"", ""Phone""]",1111.17,"{""seasonal"": ""21%""}",259825,0,Europe +2024-07-09,64487,5205,"[""Keyboard"", ""Laptop"", ""Charger""]",3580.67,"{""promo"": ""6%""}",109311,1,Africa +2023-08-01,64488,3146,"[""Keyboard""]",3838.67,{},138567,1,Europe +2023-03-17,64489,1552,"[""Tablet""]",3689.19,{},148979,1,Africa +2023-10-26,64490,2545,"[""Tablet"", ""Monitor"", ""Laptop""]",4583.12,"{""seasonal"": ""28%""}",196109,1,Asia +2024-04-27,64491,3881,"[""Charger"", ""Headphones""]",538.76,{},168848,1,Europe +2023-07-16,64492,7031,"[""Headphones""]",2771.13,{},51743,0,Europe +2024-05-05,64493,8489,"[""Phone""]",3842.3,{},139727,1,Asia +2024-03-25,64494,4227,"[""Headphones"", ""Tablet"", ""Phone""]",1932.7,{},23484,0,Asia +2023-03-22,64495,7592,"[""Monitor"", ""Laptop"", ""Keyboard""]",2896.61,{},30275,1,North America +2024-11-29,64496,6459,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3591.6,{},97735,1,Asia +2023-01-28,64497,5131,"[""Tablet""]",4968.05,"{"""": ""22%""}",216304,1,North America +2024-01-08,64498,8322,"[""Headphones""]",1975.0,{},234284,1,North America +2023-05-21,64499,3861,"[""Monitor"", ""Keyboard""]",4936.22,"{""seasonal"": ""16%""}",7544,1,Africa +2023-06-19,64500,5750,"[""Tablet""]",262.9,{},61900,0,Africa +2024-09-20,64501,1488,"[""Tablet"", ""Laptop"", ""Monitor""]",3074.34,"{""seasonal"": ""25%""}",240228,1,South America +2023-08-05,64502,1377,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3382.11,"{""loyalty"": ""24%""}",155678,0,Europe +2023-02-28,64503,5493,"[""Headphones"", ""Laptop"", ""Monitor""]",2358.34,{},273712,1,South America +2023-10-23,64504,1596,"[""Wireless Mouse""]",670.03,{},213053,1,Asia +2024-10-14,64505,3508,"[""Laptop""]",4416.5,"{""seasonal"": ""30%""}",107684,1,South America +2024-11-18,64506,2561,"[""Monitor"", ""Wireless Mouse""]",1925.15,"{""promo"": ""12%""}",218810,1,South America +2023-06-30,64507,8866,"[""Headphones"", ""Laptop"", ""Charger""]",828.52,"{""promo"": ""21%""}",122357,1,Europe +2023-07-19,64508,5661,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",619.24,{},180172,1,Europe +2023-04-22,64509,2318,"[""Keyboard""]",4458.69,"{""promo"": ""12%""}",83359,0,Europe +2023-01-23,64510,1274,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2640.48,"{"""": ""8%""}",109222,1,Asia +2024-05-26,64511,3365,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1550.42,"{""loyalty"": ""11%""}",21350,1,South America +2023-01-10,64512,6294,"[""Headphones"", ""Tablet"", ""Phone""]",3787.11,"{""seasonal"": ""26%""}",254804,1,North America +2023-12-26,64513,978,"[""Laptop"", ""Headphones"", ""Keyboard""]",3259.68,"{""loyalty"": ""30%""}",215348,0,Africa +2023-05-25,64514,7161,"[""Tablet"", ""Phone"", ""Charger""]",1853.76,"{""seasonal"": ""12%""}",195006,0,Europe +2024-09-07,64515,3369,"[""Headphones"", ""Laptop"", ""Charger""]",2237.66,{},19883,0,North America +2023-08-24,64516,3772,"[""Keyboard""]",1646.1,"{""loyalty"": ""5%""}",133440,0,North America +2024-11-05,64517,7282,"[""Tablet""]",2441.71,"{""promo"": ""28%""}",140354,1,Europe +2023-03-13,64518,1050,"[""Monitor"", ""Laptop""]",1426.11,"{""seasonal"": ""30%""}",8231,1,Africa +2023-05-09,64519,5836,"[""Monitor"", ""Tablet""]",3696.46,{},169053,0,North America +2023-04-28,64520,8443,"[""Laptop"", ""Phone"", ""Headphones""]",2620.43,{},200964,0,Africa +2023-11-15,64521,2325,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4669.07,"{""promo"": ""6%""}",138767,1,South America +2023-12-24,64522,2709,"[""Laptop""]",1079.07,{},111148,0,Asia +2024-04-23,64523,532,"[""Monitor"", ""Keyboard"", ""Laptop""]",4279.69,"{""loyalty"": ""15%""}",207183,1,South America +2023-08-24,64524,4865,"[""Phone"", ""Keyboard""]",1608.73,"{""loyalty"": ""17%""}",32742,0,Asia +2023-09-07,64525,4282,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3606.97,"{""promo"": ""14%""}",14179,1,North America +2024-07-12,64526,609,"[""Charger""]",2465.46,{},186946,0,South America +2023-11-22,64527,2254,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3564.02,"{""loyalty"": ""16%""}",239548,1,South America +2023-01-08,64528,1091,"[""Keyboard"", ""Laptop"", ""Monitor""]",4271.24,"{"""": ""13%""}",116149,1,North America +2024-06-08,64529,7096,"[""Charger"", ""Keyboard""]",2751.73,{},238415,0,South America +2024-09-10,64530,1218,"[""Phone"", ""Charger"", ""Laptop""]",1489.81,{},40476,1,Asia +2023-08-01,64531,8287,"[""Keyboard""]",2485.78,{},193682,0,North America +2023-09-12,64532,7560,"[""Tablet""]",1064.95,"{""loyalty"": ""14%""}",76419,0,Europe +2024-02-02,64533,9199,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1853.54,"{""promo"": ""14%""}",72216,0,Europe +2023-09-04,64534,4502,"[""Laptop"", ""Keyboard"", ""Phone""]",4104.0,{},198885,1,North America +2024-10-26,64535,1438,"[""Keyboard"", ""Monitor"", ""Laptop""]",4682.96,{},218790,0,South America +2023-03-10,64536,4978,"[""Phone""]",3117.17,{},19463,1,North America +2023-04-18,64537,3448,"[""Headphones"", ""Phone""]",1404.8,{},193173,0,Africa +2023-06-29,64538,428,"[""Charger"", ""Tablet"", ""Monitor""]",2142.54,{},23933,1,Europe +2024-12-11,64539,2935,"[""Wireless Mouse"", ""Keyboard""]",3181.7,"{"""": ""16%""}",68104,1,North America +2023-12-30,64540,704,"[""Monitor"", ""Laptop""]",455.68,{},267986,0,South America +2024-08-13,64541,5468,"[""Wireless Mouse""]",706.34,"{""seasonal"": ""12%""}",105451,1,Europe +2023-07-04,64542,273,"[""Headphones""]",2991.63,"{""loyalty"": ""20%""}",226755,1,North America +2024-12-26,64543,7847,"[""Phone"", ""Tablet""]",3773.78,"{"""": ""14%""}",205696,0,Asia +2023-11-27,64544,4742,"[""Keyboard"", ""Tablet""]",3883.82,"{""promo"": ""6%""}",23773,1,Africa +2024-12-21,64545,9004,"[""Laptop"", ""Headphones""]",4186.3,"{""promo"": ""8%""}",296949,0,North America +2024-11-12,64546,1930,"[""Monitor"", ""Headphones""]",763.39,"{""promo"": ""14%""}",175634,0,Africa +2024-04-08,64547,5718,"[""Keyboard""]",4631.03,{},280408,1,Europe +2024-06-17,64548,7197,"[""Laptop"", ""Charger""]",1671.72,{},180595,1,Africa +2023-07-17,64549,2922,"[""Keyboard""]",1401.77,"{"""": ""17%""}",96799,1,Asia +2024-06-03,64550,284,"[""Keyboard"", ""Tablet""]",1609.13,{},147597,1,South America +2024-03-09,64551,6757,"[""Headphones"", ""Phone"", ""Charger""]",400.7,{},27918,0,Europe +2023-03-29,64552,8064,"[""Keyboard"", ""Laptop"", ""Headphones""]",357.8,{},36358,0,Africa +2023-01-10,64553,8813,"[""Keyboard""]",2240.2,"{"""": ""27%""}",231377,0,North America +2023-03-16,64554,2239,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1602.32,"{""seasonal"": ""7%""}",259992,1,Asia +2023-04-03,64555,5455,"[""Phone"", ""Headphones""]",2588.54,"{""promo"": ""26%""}",155854,1,Africa +2024-08-30,64556,6016,"[""Keyboard""]",2531.52,{},288655,0,Europe +2024-01-18,64557,6486,"[""Tablet"", ""Charger""]",3825.53,"{""loyalty"": ""27%""}",281347,1,South America +2023-10-26,64558,304,"[""Headphones"", ""Keyboard"", ""Tablet""]",538.79,{},291622,1,Asia +2023-08-18,64559,4247,"[""Charger"", ""Tablet""]",2833.09,"{""loyalty"": ""12%""}",58021,0,Africa +2023-06-15,64560,6160,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2019.27,{},217307,0,Europe +2023-05-11,64561,4274,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",932.39,{},242572,1,Europe +2023-12-15,64562,2796,"[""Wireless Mouse"", ""Keyboard""]",438.26,"{""loyalty"": ""14%""}",277812,1,Europe +2024-06-13,64563,3767,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4902.13,"{""loyalty"": ""28%""}",221395,1,Europe +2024-03-25,64564,4532,"[""Charger"", ""Laptop"", ""Phone""]",3029.25,"{""seasonal"": ""10%""}",161061,1,Asia +2023-12-04,64565,5425,"[""Headphones""]",2231.96,"{"""": ""8%""}",92674,0,Asia +2024-06-21,64566,1998,"[""Phone""]",1206.07,{},143894,0,North America +2023-03-31,64567,1786,"[""Keyboard"", ""Phone""]",1707.97,{},72545,0,North America +2023-02-22,64568,1441,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3135.33,"{""loyalty"": ""27%""}",273305,0,North America +2023-09-30,64569,9671,"[""Laptop"", ""Monitor"", ""Keyboard""]",515.9,{},93472,1,South America +2023-09-11,64570,8263,"[""Tablet"", ""Charger"", ""Keyboard""]",478.65,"{"""": ""30%""}",250752,1,Europe +2024-05-18,64571,6878,"[""Laptop"", ""Headphones""]",4859.92,{},99150,1,South America +2024-11-22,64572,9927,"[""Monitor"", ""Keyboard"", ""Laptop""]",2220.8,{},216211,1,South America +2024-01-22,64573,3243,"[""Charger""]",3719.69,"{""promo"": ""27%""}",257295,0,North America +2024-11-09,64574,4867,"[""Laptop"", ""Monitor""]",4741.91,{},188257,1,North America +2024-02-12,64575,2937,"[""Wireless Mouse""]",2905.21,"{"""": ""22%""}",30433,0,Asia +2023-01-12,64576,2028,"[""Tablet""]",4501.52,{},169705,1,Europe +2024-04-23,64577,1503,"[""Tablet""]",4221.4,"{""loyalty"": ""16%""}",142341,0,South America +2023-01-28,64578,1085,"[""Monitor"", ""Wireless Mouse""]",3228.41,{},113909,1,Africa +2024-09-30,64579,2171,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",670.42,{},187738,1,Europe +2023-12-31,64580,467,"[""Tablet""]",2563.39,"{""seasonal"": ""28%""}",283414,1,South America +2023-09-24,64581,4423,"[""Charger""]",2373.38,"{""promo"": ""8%""}",274145,0,Europe +2023-11-11,64582,5914,"[""Monitor"", ""Laptop""]",1059.03,{},88861,1,North America +2023-12-12,64583,3889,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3820.1,{},245882,0,North America +2023-11-10,64584,6156,"[""Charger"", ""Phone"", ""Headphones""]",3108.96,{},122910,0,Africa +2023-11-18,64585,7052,"[""Charger"", ""Keyboard""]",3797.03,{},281541,0,Asia +2023-03-26,64586,8069,"[""Tablet""]",2379.01,{},181903,1,North America +2023-01-15,64587,1,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1623.94,{},45779,1,Africa +2024-06-30,64588,1890,"[""Headphones"", ""Monitor""]",3072.21,{},101037,0,Europe +2023-09-13,64589,7476,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",393.14,{},3576,0,Asia +2023-11-13,64590,4347,"[""Laptop"", ""Monitor""]",1687.04,"{""seasonal"": ""16%""}",142716,1,North America +2023-10-04,64591,6194,"[""Charger""]",4552.5,{},256082,1,Europe +2023-11-30,64592,4738,"[""Monitor"", ""Laptop""]",2866.91,"{""loyalty"": ""22%""}",288206,0,Asia +2023-03-27,64593,6172,"[""Headphones""]",3561.4,"{""loyalty"": ""14%""}",241735,1,North America +2024-03-23,64594,9119,"[""Phone"", ""Charger""]",2788.53,{},208673,1,North America +2023-03-17,64595,4901,"[""Monitor""]",1448.71,"{""seasonal"": ""27%""}",147297,1,Africa +2024-07-31,64596,8790,"[""Monitor"", ""Charger"", ""Laptop""]",2193.8,{},25104,1,South America +2023-09-21,64597,162,"[""Tablet"", ""Wireless Mouse""]",864.98,"{""loyalty"": ""6%""}",161640,0,Asia +2024-05-18,64598,4056,"[""Phone"", ""Laptop"", ""Monitor""]",412.35,{},128164,0,Europe +2024-09-29,64599,7517,"[""Tablet"", ""Keyboard"", ""Headphones""]",1885.08,"{""loyalty"": ""13%""}",102233,1,Europe +2024-02-02,64600,5773,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2083.68,"{""promo"": ""26%""}",110819,1,Europe +2023-02-28,64601,1663,"[""Charger"", ""Tablet"", ""Keyboard""]",3978.16,{},105232,1,Africa +2024-03-25,64602,2060,"[""Phone"", ""Monitor""]",3470.61,{},19366,0,South America +2023-06-02,64603,9159,"[""Wireless Mouse"", ""Phone""]",4494.63,"{""promo"": ""20%""}",295430,1,South America +2023-06-18,64604,1025,"[""Wireless Mouse""]",1218.57,{},153834,1,Africa +2024-07-29,64605,2962,"[""Phone""]",328.82,{},73962,1,South America +2024-06-16,64606,402,"[""Tablet"", ""Laptop""]",2042.34,{},169412,1,Europe +2023-12-26,64607,397,"[""Tablet""]",1970.9,"{"""": ""15%""}",11655,0,Africa +2023-12-21,64608,9143,"[""Monitor"", ""Wireless Mouse""]",3528.78,"{"""": ""13%""}",38411,1,South America +2024-01-19,64609,9328,"[""Keyboard"", ""Wireless Mouse""]",3409.38,{},27497,1,Europe +2023-10-17,64610,3942,"[""Charger"", ""Keyboard"", ""Monitor""]",383.71,{},39131,0,Africa +2023-09-04,64611,1367,"[""Laptop"", ""Charger"", ""Keyboard""]",123.37,{},96317,0,Asia +2023-05-16,64612,8437,"[""Laptop""]",363.71,"{"""": ""7%""}",134725,0,Europe +2024-07-30,64613,2045,"[""Wireless Mouse""]",4574.72,"{""promo"": ""24%""}",44784,0,Europe +2023-01-19,64614,4688,"[""Keyboard"", ""Laptop"", ""Tablet""]",1285.02,"{""seasonal"": ""17%""}",96517,0,South America +2024-07-13,64615,7982,"[""Monitor""]",979.62,"{""promo"": ""19%""}",257331,0,Asia +2024-08-03,64616,7156,"[""Headphones"", ""Phone""]",2429.55,"{""loyalty"": ""18%""}",114929,0,Europe +2024-11-18,64617,8218,"[""Headphones"", ""Monitor""]",335.97,{},230086,0,Europe +2023-11-10,64618,5673,"[""Laptop"", ""Keyboard"", ""Phone""]",2544.96,"{""seasonal"": ""25%""}",174512,1,Europe +2023-11-07,64619,6758,"[""Headphones"", ""Tablet""]",711.79,"{""promo"": ""26%""}",124942,1,Europe +2023-06-10,64620,111,"[""Keyboard"", ""Monitor""]",2721.41,{},223332,1,Asia +2023-10-19,64621,1302,"[""Laptop"", ""Monitor""]",4272.77,"{""promo"": ""26%""}",32536,1,Europe +2023-01-11,64622,2316,"[""Monitor"", ""Keyboard""]",2271.36,"{""seasonal"": ""25%""}",251160,1,North America +2023-06-20,64623,1090,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4220.27,{},271658,0,North America +2023-05-07,64624,95,"[""Charger""]",3962.19,"{""loyalty"": ""27%""}",176466,1,South America +2024-05-24,64625,2816,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1919.25,"{""seasonal"": ""16%""}",98084,1,Africa +2024-01-01,64626,5770,"[""Charger"", ""Keyboard"", ""Monitor""]",3586.0,{},119282,0,Africa +2024-07-16,64627,709,"[""Headphones"", ""Laptop"", ""Phone""]",366.73,"{""promo"": ""23%""}",59505,1,Africa +2023-11-02,64628,9745,"[""Keyboard"", ""Monitor"", ""Charger""]",4889.67,"{"""": ""24%""}",188011,0,Asia +2024-02-10,64629,1570,"[""Monitor"", ""Headphones""]",3197.84,"{""promo"": ""27%""}",73909,1,Europe +2023-11-19,64630,666,"[""Keyboard"", ""Charger""]",67.92,{},266348,0,South America +2023-05-24,64631,925,"[""Tablet"", ""Laptop""]",951.74,{},150398,0,Asia +2024-05-27,64632,4130,"[""Keyboard""]",1735.5,{},155984,1,Europe +2023-12-04,64633,4387,"[""Charger"", ""Tablet"", ""Headphones""]",3879.17,"{"""": ""10%""}",261568,0,Europe +2023-05-16,64634,5799,"[""Headphones""]",232.33,{},261344,1,Europe +2024-01-29,64635,825,"[""Tablet"", ""Laptop"", ""Charger""]",3174.64,"{""loyalty"": ""27%""}",58607,1,Asia +2023-01-03,64636,1632,"[""Laptop""]",422.45,"{""seasonal"": ""26%""}",32785,0,Asia +2024-07-04,64637,1341,"[""Charger"", ""Phone""]",2196.89,"{"""": ""14%""}",103843,1,Africa +2024-07-06,64638,5291,"[""Headphones"", ""Keyboard""]",223.46,{},298142,0,South America +2023-11-29,64639,7770,"[""Charger""]",1481.16,"{""promo"": ""26%""}",229557,1,Europe +2024-10-07,64640,5290,"[""Keyboard"", ""Charger"", ""Monitor""]",3150.41,"{""seasonal"": ""25%""}",297040,1,Africa +2023-12-26,64641,7121,"[""Keyboard""]",1818.21,"{""promo"": ""15%""}",296867,1,Europe +2024-01-23,64642,7157,"[""Laptop"", ""Monitor"", ""Charger""]",4575.33,"{""seasonal"": ""9%""}",275709,1,Asia +2024-06-15,64643,661,"[""Phone"", ""Keyboard""]",2262.12,{},148914,0,Africa +2023-04-07,64644,62,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",77.53,{},33730,1,South America +2023-08-13,64645,6963,"[""Keyboard"", ""Headphones""]",3209.47,{},106420,1,Europe +2023-01-19,64646,7347,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1524.19,"{""loyalty"": ""29%""}",211173,0,Europe +2024-04-22,64647,4918,"[""Headphones"", ""Monitor""]",4859.72,"{""loyalty"": ""29%""}",160885,0,Europe +2024-11-05,64648,7035,"[""Phone"", ""Keyboard""]",3031.26,"{""promo"": ""12%""}",80455,1,North America +2023-03-02,64649,5410,"[""Keyboard"", ""Charger"", ""Phone""]",1937.04,"{""seasonal"": ""14%""}",73548,1,Africa +2023-08-13,64650,494,"[""Headphones""]",1283.13,{},116154,0,Africa +2024-11-22,64651,5894,"[""Phone"", ""Laptop"", ""Keyboard""]",2438.19,{},112898,1,South America +2024-10-14,64652,9115,"[""Monitor""]",1954.02,"{""loyalty"": ""6%""}",115588,1,South America +2024-10-05,64653,7164,"[""Monitor"", ""Phone"", ""Headphones""]",3218.96,"{""promo"": ""24%""}",273282,1,North America +2024-01-12,64654,2459,"[""Keyboard""]",1569.2,"{"""": ""13%""}",285962,1,South America +2024-05-03,64655,1176,"[""Monitor"", ""Charger"", ""Tablet""]",523.35,"{""seasonal"": ""8%""}",241944,1,South America +2024-06-01,64656,1676,"[""Phone"", ""Headphones""]",2973.32,"{"""": ""23%""}",58078,0,North America +2023-10-09,64657,5212,"[""Laptop"", ""Monitor""]",4907.17,"{"""": ""23%""}",117624,1,North America +2024-01-22,64658,96,"[""Laptop"", ""Keyboard"", ""Phone""]",278.38,"{"""": ""24%""}",257808,1,South America +2024-07-13,64659,8820,"[""Tablet"", ""Monitor"", ""Phone""]",4793.8,"{""loyalty"": ""30%""}",191396,0,Europe +2024-06-22,64660,4208,"[""Charger"", ""Monitor""]",2031.38,"{"""": ""12%""}",90312,1,Europe +2023-04-10,64661,2166,"[""Headphones"", ""Monitor"", ""Tablet""]",4933.44,"{"""": ""13%""}",4532,0,South America +2024-11-15,64662,7719,"[""Wireless Mouse"", ""Laptop""]",970.59,{},290017,1,Asia +2024-02-01,64663,8735,"[""Charger"", ""Wireless Mouse""]",2132.58,"{""loyalty"": ""13%""}",112208,0,Europe +2024-08-30,64664,9627,"[""Charger"", ""Keyboard""]",3445.3,{},219265,1,Europe +2024-11-18,64665,6551,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3244.81,"{"""": ""19%""}",296683,1,Africa +2024-01-21,64666,6053,"[""Tablet"", ""Monitor"", ""Headphones""]",2215.24,{},55348,1,South America +2023-12-07,64667,4577,"[""Phone""]",85.77,"{""promo"": ""16%""}",192980,1,North America +2023-08-21,64668,8402,"[""Laptop""]",851.85,{},259679,1,Europe +2023-10-08,64669,1528,"[""Headphones"", ""Wireless Mouse""]",895.18,"{""loyalty"": ""28%""}",278986,0,South America +2024-10-26,64670,9462,"[""Headphones""]",1369.14,{},296817,1,Africa +2024-02-05,64671,9479,"[""Laptop""]",2577.01,"{""loyalty"": ""13%""}",89054,0,Europe +2024-07-06,64672,1966,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1272.98,{},252278,1,Africa +2024-02-19,64673,9877,"[""Phone""]",1491.18,"{""loyalty"": ""17%""}",225172,0,Africa +2023-11-28,64674,3274,"[""Monitor"", ""Phone"", ""Charger""]",1926.58,"{""loyalty"": ""6%""}",121727,1,Africa +2024-03-27,64675,2196,"[""Charger"", ""Laptop"", ""Headphones""]",2725.07,{},68052,0,South America +2024-02-11,64676,4038,"[""Charger""]",3907.1,{},118708,0,North America +2023-12-06,64677,9009,"[""Headphones"", ""Phone"", ""Monitor""]",172.87,{},260081,1,Europe +2023-03-05,64678,1502,"[""Headphones"", ""Laptop"", ""Charger""]",4380.06,"{""promo"": ""27%""}",110739,1,Asia +2024-10-02,64679,1129,"[""Wireless Mouse""]",4167.92,{},207423,1,South America +2024-01-23,64680,8396,"[""Monitor"", ""Wireless Mouse""]",614.64,{},297582,1,Africa +2023-02-20,64681,3168,"[""Headphones""]",3940.72,"{""seasonal"": ""10%""}",176145,0,Africa +2024-07-14,64682,1030,"[""Monitor"", ""Laptop"", ""Tablet""]",2976.24,{},82558,0,Asia +2023-04-05,64683,1583,"[""Keyboard""]",3530.31,{},170477,0,North America +2024-07-12,64684,5874,"[""Tablet"", ""Keyboard""]",869.32,"{""promo"": ""16%""}",68354,1,Asia +2024-12-26,64685,3337,"[""Keyboard"", ""Laptop"", ""Phone""]",3152.73,{},103561,1,South America +2024-02-05,64686,1012,"[""Laptop"", ""Monitor""]",899.31,{},241545,1,South America +2023-12-15,64687,2284,"[""Tablet""]",2600.71,{},196189,1,Africa +2023-11-15,64688,6358,"[""Keyboard"", ""Tablet"", ""Charger""]",4835.1,{},172466,0,Africa +2023-11-05,64689,2129,"[""Wireless Mouse"", ""Keyboard""]",4399.52,"{""seasonal"": ""17%""}",31018,1,South America +2024-12-07,64690,3051,"[""Monitor"", ""Wireless Mouse""]",4141.39,"{""loyalty"": ""30%""}",47202,1,Africa +2023-01-11,64691,4828,"[""Laptop""]",1079.46,{},164470,0,South America +2023-10-26,64692,4416,"[""Charger""]",1741.48,"{"""": ""12%""}",130248,1,South America +2023-03-04,64693,7454,"[""Laptop"", ""Headphones"", ""Monitor""]",468.17,"{""seasonal"": ""18%""}",124259,0,Africa +2024-03-27,64694,8988,"[""Monitor"", ""Tablet"", ""Keyboard""]",1485.64,"{""promo"": ""21%""}",158900,0,South America +2023-04-07,64695,4835,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2715.19,{},168684,0,Africa +2024-01-31,64696,176,"[""Wireless Mouse"", ""Phone""]",4319.75,{},112540,0,Africa +2023-02-24,64697,7161,"[""Wireless Mouse"", ""Keyboard""]",4641.97,"{"""": ""7%""}",254751,1,Asia +2024-11-08,64698,5074,"[""Charger""]",1955.72,{},139827,1,Africa +2024-07-16,64699,5323,"[""Phone""]",3902.31,"{""promo"": ""30%""}",139554,0,North America +2023-09-15,64700,6156,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4463.51,{},127963,1,Europe +2023-08-04,64701,2653,"[""Phone"", ""Headphones""]",2146.73,"{"""": ""28%""}",127365,0,South America +2023-04-21,64702,4151,"[""Tablet"", ""Phone""]",2985.64,{},98634,0,South America +2023-12-04,64703,5871,"[""Phone"", ""Monitor"", ""Tablet""]",66.8,"{""seasonal"": ""28%""}",75245,0,North America +2023-04-12,64704,7308,"[""Phone"", ""Headphones""]",1984.31,"{""seasonal"": ""9%""}",121147,0,Europe +2023-07-21,64705,8054,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",919.47,{},216063,0,Africa +2023-12-27,64706,9008,"[""Phone""]",2228.27,"{"""": ""23%""}",229109,0,Africa +2024-08-15,64707,2444,"[""Headphones""]",698.25,{},247594,0,Asia +2024-06-18,64708,3482,"[""Tablet"", ""Phone""]",4550.77,{},122934,0,Africa +2024-12-09,64709,1512,"[""Wireless Mouse"", ""Monitor""]",435.16,{},63484,1,Europe +2023-09-10,64710,3440,"[""Headphones""]",488.0,"{""seasonal"": ""17%""}",3283,1,Africa +2023-10-24,64711,6986,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",359.5,{},271034,1,North America +2023-11-05,64712,3434,"[""Monitor"", ""Charger""]",2266.67,"{""promo"": ""25%""}",59937,1,Africa +2024-03-08,64713,1296,"[""Phone"", ""Wireless Mouse""]",1582.67,{},154449,0,North America +2024-07-05,64714,8645,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1735.14,{},139684,1,Europe +2024-05-31,64715,2590,"[""Keyboard"", ""Phone"", ""Monitor""]",4215.4,"{""seasonal"": ""11%""}",111783,0,North America +2024-03-06,64716,7745,"[""Phone"", ""Tablet"", ""Monitor""]",1430.39,"{""seasonal"": ""11%""}",93733,0,Europe +2023-06-10,64717,3630,"[""Tablet"", ""Wireless Mouse""]",2583.43,"{""seasonal"": ""6%""}",108651,1,South America +2023-08-12,64718,6671,"[""Tablet"", ""Charger"", ""Phone""]",637.73,{},217247,1,North America +2024-08-17,64719,3377,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",895.26,"{""seasonal"": ""8%""}",184945,1,North America +2024-03-25,64720,72,"[""Phone"", ""Monitor""]",1809.94,"{""seasonal"": ""15%""}",30632,0,Asia +2023-10-12,64721,8667,"[""Laptop""]",2424.98,{},70268,1,South America +2023-03-18,64722,6010,"[""Charger"", ""Phone"", ""Laptop""]",1134.92,"{""seasonal"": ""27%""}",122071,0,North America +2023-06-20,64723,3238,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1391.6,"{""promo"": ""13%""}",106653,0,North America +2024-07-16,64724,5908,"[""Monitor""]",4228.25,{},283032,1,Europe +2023-02-22,64725,9448,"[""Keyboard"", ""Phone"", ""Tablet""]",2683.78,{},297159,1,Asia +2024-03-23,64726,5664,"[""Phone""]",3628.7,"{"""": ""30%""}",245678,1,Europe +2024-04-19,64727,3447,"[""Monitor""]",2750.45,"{"""": ""19%""}",176351,0,North America +2024-03-21,64728,7777,"[""Keyboard"", ""Laptop"", ""Tablet""]",753.16,{},91689,0,South America +2024-03-16,64729,4920,"[""Keyboard"", ""Laptop"", ""Charger""]",2857.18,{},129743,0,South America +2023-10-21,64730,5719,"[""Laptop"", ""Keyboard"", ""Headphones""]",3164.24,"{"""": ""7%""}",278879,0,Asia +2024-06-23,64731,9768,"[""Charger"", ""Tablet""]",4932.62,{},102067,0,Asia +2023-09-08,64732,7831,"[""Charger"", ""Keyboard"", ""Tablet""]",3389.93,"{""loyalty"": ""23%""}",71132,1,North America +2024-06-19,64733,4867,"[""Charger"", ""Laptop""]",3500.84,{},29907,1,North America +2024-02-24,64734,6118,"[""Monitor"", ""Laptop"", ""Keyboard""]",4976.63,"{"""": ""29%""}",1670,0,Europe +2023-11-17,64735,5892,"[""Keyboard""]",1886.15,{},280899,1,Africa +2023-07-30,64736,8792,"[""Wireless Mouse"", ""Keyboard""]",1246.26,{},123465,0,Europe +2024-01-12,64737,1140,"[""Wireless Mouse""]",3346.33,"{""promo"": ""21%""}",102141,0,Africa +2024-05-14,64738,732,"[""Headphones"", ""Keyboard"", ""Monitor""]",1892.64,"{""seasonal"": ""9%""}",207886,1,North America +2024-01-25,64739,7806,"[""Phone"", ""Charger""]",4950.74,{},127221,0,North America +2023-01-08,64740,6796,"[""Charger"", ""Tablet"", ""Monitor""]",232.53,"{""loyalty"": ""25%""}",84347,1,Africa +2024-02-01,64741,368,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3275.36,"{"""": ""25%""}",279484,1,Africa +2024-04-04,64742,3046,"[""Monitor"", ""Laptop""]",2397.27,{},149695,1,Africa +2024-08-10,64743,1058,"[""Wireless Mouse""]",2346.33,{},227644,1,Africa +2023-01-12,64744,5162,"[""Keyboard"", ""Phone"", ""Monitor""]",621.28,"{""promo"": ""6%""}",83038,0,North America +2024-05-10,64745,9642,"[""Keyboard""]",1512.1,{},114405,1,Asia +2023-03-04,64746,7845,"[""Phone"", ""Keyboard"", ""Monitor""]",577.76,"{"""": ""21%""}",298947,1,Africa +2024-02-10,64747,6291,"[""Wireless Mouse""]",3462.34,"{""loyalty"": ""19%""}",23801,0,Asia +2023-07-18,64748,6208,"[""Monitor""]",2076.47,{},177352,0,North America +2024-07-01,64749,2331,"[""Phone""]",1822.71,{},172346,1,South America +2023-09-23,64750,2680,"[""Laptop"", ""Headphones""]",1409.53,"{""seasonal"": ""21%""}",1968,0,Europe +2024-05-28,64751,9942,"[""Tablet"", ""Keyboard""]",4861.25,{},126686,1,South America +2024-06-23,64752,875,"[""Wireless Mouse"", ""Headphones""]",1887.63,{},253362,1,Africa +2023-10-24,64753,6629,"[""Keyboard"", ""Laptop"", ""Charger""]",1744.67,"{""seasonal"": ""28%""}",251897,1,South America +2024-05-28,64754,4248,"[""Charger"", ""Monitor"", ""Headphones""]",407.33,"{""seasonal"": ""30%""}",154536,1,Europe +2023-01-20,64755,9635,"[""Keyboard"", ""Tablet""]",1208.19,{},190983,1,North America +2023-10-20,64756,7231,"[""Tablet"", ""Phone""]",2058.42,{},275812,1,Europe +2024-08-16,64757,1081,"[""Tablet""]",4879.42,"{"""": ""19%""}",176436,0,Asia +2023-12-20,64758,6510,"[""Laptop"", ""Charger"", ""Monitor""]",78.79,{},63313,0,Asia +2024-09-28,64759,8512,"[""Phone"", ""Laptop"", ""Keyboard""]",4314.63,{},215812,1,Africa +2023-05-26,64760,9584,"[""Headphones""]",4645.2,"{""loyalty"": ""5%""}",146599,1,Europe +2024-11-19,64761,5334,"[""Headphones"", ""Wireless Mouse""]",3128.19,"{""seasonal"": ""6%""}",82485,0,Europe +2023-04-20,64762,6455,"[""Monitor"", ""Charger"", ""Headphones""]",111.68,{},201836,1,North America +2023-06-25,64763,1094,"[""Laptop"", ""Wireless Mouse""]",1626.89,"{"""": ""29%""}",212090,0,South America +2023-09-12,64764,311,"[""Monitor""]",3615.19,{},184398,1,Europe +2023-10-09,64765,7460,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1365.62,"{""promo"": ""28%""}",270735,1,Europe +2024-06-13,64766,1168,"[""Headphones""]",812.39,"{""seasonal"": ""5%""}",298575,0,South America +2024-08-06,64767,8680,"[""Monitor""]",3632.14,{},74526,0,Africa +2024-04-30,64768,6443,"[""Phone"", ""Monitor""]",124.59,{},263418,0,Africa +2023-06-20,64769,2188,"[""Headphones"", ""Laptop"", ""Charger""]",1214.31,{},181784,1,North America +2024-01-05,64770,2689,"[""Keyboard""]",3728.32,"{""promo"": ""28%""}",228805,1,Africa +2024-12-20,64771,81,"[""Keyboard"", ""Tablet"", ""Headphones""]",3774.6,"{""promo"": ""25%""}",161690,0,South America +2024-08-23,64772,7057,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",304.67,{},278332,0,South America +2023-01-01,64773,6258,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3108.33,"{"""": ""8%""}",27776,1,Asia +2024-07-23,64774,7164,"[""Tablet"", ""Headphones"", ""Keyboard""]",4053.75,{},290628,0,North America +2023-12-26,64775,61,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4120.14,{},239449,0,Asia +2023-03-13,64776,1499,"[""Phone"", ""Tablet""]",1966.36,"{""promo"": ""5%""}",107807,0,Asia +2024-06-10,64777,2692,"[""Wireless Mouse""]",761.28,{},85629,0,Asia +2023-09-22,64778,1442,"[""Keyboard"", ""Phone"", ""Laptop""]",96.8,"{""seasonal"": ""28%""}",62705,0,Asia +2023-11-13,64779,3205,"[""Charger"", ""Laptop""]",1582.05,{},241035,1,Africa +2024-02-15,64780,5931,"[""Phone"", ""Keyboard"", ""Laptop""]",1942.35,{},203952,1,Asia +2023-06-04,64781,6352,"[""Keyboard"", ""Phone""]",2639.44,{},151104,0,Europe +2024-02-28,64782,3403,"[""Keyboard""]",4974.12,{},294627,0,South America +2023-05-24,64783,8616,"[""Phone"", ""Tablet""]",1578.96,"{""loyalty"": ""24%""}",281560,0,North America +2024-05-27,64784,6480,"[""Wireless Mouse"", ""Keyboard""]",1881.93,{},151286,0,Africa +2023-06-13,64785,7798,"[""Headphones"", ""Monitor"", ""Charger""]",747.89,{},141096,1,South America +2023-07-22,64786,8846,"[""Phone"", ""Headphones""]",3165.24,{},85527,0,Africa +2024-12-14,64787,5959,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2591.93,"{"""": ""8%""}",290167,1,Europe +2023-01-02,64788,859,"[""Keyboard"", ""Wireless Mouse""]",637.33,"{""promo"": ""27%""}",230872,1,Africa +2024-03-07,64789,6603,"[""Wireless Mouse""]",2781.1,"{""promo"": ""28%""}",167010,0,South America +2024-08-01,64790,7618,"[""Keyboard""]",3495.59,"{"""": ""11%""}",11274,1,Asia +2023-01-04,64791,9361,"[""Laptop"", ""Headphones"", ""Phone""]",4899.03,"{""promo"": ""11%""}",59974,0,South America +2023-12-28,64792,3712,"[""Monitor"", ""Wireless Mouse""]",3141.85,{},22017,0,Asia +2024-03-26,64793,2338,"[""Headphones""]",1030.61,{},114665,0,South America +2023-06-19,64794,5086,"[""Phone""]",1106.73,{},117513,1,North America +2024-11-08,64795,2647,"[""Tablet""]",2210.51,"{""seasonal"": ""24%""}",34073,0,Europe +2023-12-01,64796,4868,"[""Phone""]",2627.58,{},87563,0,Europe +2023-08-29,64797,5528,"[""Wireless Mouse"", ""Tablet""]",4612.41,{},37509,1,North America +2024-02-28,64798,8491,"[""Wireless Mouse""]",1324.01,"{""loyalty"": ""15%""}",187995,1,North America +2023-10-24,64799,6100,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4225.17,"{""loyalty"": ""30%""}",176994,0,Asia +2023-05-13,64800,9910,"[""Tablet""]",1280.72,"{"""": ""20%""}",235933,0,North America +2023-07-02,64801,8626,"[""Laptop"", ""Headphones"", ""Keyboard""]",1507.8,"{""loyalty"": ""22%""}",128700,0,Asia +2023-08-25,64802,911,"[""Tablet"", ""Headphones"", ""Keyboard""]",4988.7,"{""loyalty"": ""6%""}",253489,1,Asia +2023-05-27,64803,1376,"[""Wireless Mouse"", ""Keyboard""]",2189.75,{},180439,0,Europe +2023-08-15,64804,8426,"[""Headphones"", ""Phone""]",3880.27,{},7766,0,Europe +2024-12-13,64805,9402,"[""Wireless Mouse"", ""Phone""]",4284.29,{},182958,0,North America +2023-09-01,64806,7343,"[""Charger""]",2001.36,{},124307,0,Asia +2024-10-11,64807,8007,"[""Wireless Mouse""]",2470.05,{},89077,0,Africa +2024-08-15,64808,6353,"[""Charger""]",2012.13,{},56019,1,Africa +2023-08-11,64809,1493,"[""Monitor""]",2982.21,{},168791,1,Europe +2024-03-23,64810,3551,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2380.17,"{""seasonal"": ""13%""}",295364,0,North America +2023-09-29,64811,5458,"[""Charger"", ""Monitor"", ""Tablet""]",3071.2,"{""promo"": ""21%""}",211867,1,Africa +2023-11-23,64812,9643,"[""Laptop"", ""Keyboard"", ""Headphones""]",212.58,{},119897,1,South America +2024-07-03,64813,4957,"[""Wireless Mouse"", ""Laptop""]",3587.15,"{""loyalty"": ""9%""}",106449,1,Africa +2023-12-23,64814,3656,"[""Headphones"", ""Tablet"", ""Keyboard""]",1372.51,{},45813,1,Asia +2023-04-03,64815,4922,"[""Tablet""]",3173.06,{},88695,0,Europe +2024-09-27,64816,1193,"[""Headphones""]",3919.97,{},253311,1,South America +2023-03-17,64817,216,"[""Charger""]",4627.79,"{""loyalty"": ""18%""}",75161,1,Europe +2023-12-08,64818,7707,"[""Wireless Mouse"", ""Monitor""]",4841.54,"{""loyalty"": ""12%""}",261564,1,Europe +2024-04-07,64819,3479,"[""Headphones"", ""Monitor""]",3273.84,{},298368,0,South America +2023-08-27,64820,4965,"[""Laptop"", ""Phone""]",4418.83,"{""seasonal"": ""24%""}",157565,0,Asia +2024-01-15,64821,9197,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3438.36,"{""seasonal"": ""6%""}",159308,1,Asia +2024-07-29,64822,7480,"[""Tablet"", ""Charger""]",96.26,{},232849,0,Asia +2023-06-14,64823,2201,"[""Tablet"", ""Phone"", ""Headphones""]",1696.9,{},49008,0,Africa +2024-06-17,64824,7405,"[""Charger"", ""Tablet"", ""Monitor""]",195.82,{},164249,0,South America +2023-10-02,64825,2620,"[""Tablet"", ""Phone"", ""Keyboard""]",562.79,{},39528,0,North America +2023-11-06,64826,1723,"[""Monitor""]",2630.68,{},244586,0,North America +2023-06-07,64827,6830,"[""Monitor"", ""Keyboard""]",4319.37,{},240781,0,South America +2023-07-03,64828,5712,"[""Wireless Mouse""]",4875.43,{},244612,0,Asia +2024-11-13,64829,6862,"[""Headphones""]",491.08,"{""loyalty"": ""9%""}",58132,0,Europe +2024-02-17,64830,516,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",138.98,{},81386,1,South America +2024-10-15,64831,5316,"[""Charger"", ""Tablet""]",3826.53,"{""loyalty"": ""10%""}",157340,1,North America +2024-05-25,64832,5468,"[""Phone"", ""Monitor""]",3203.4,{},128824,1,Asia +2023-08-12,64833,2976,"[""Keyboard""]",2653.22,"{""promo"": ""21%""}",82514,1,North America +2023-03-29,64834,9680,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2804.09,{},108945,0,South America +2024-07-30,64835,4491,"[""Phone"", ""Laptop"", ""Headphones""]",3713.72,"{"""": ""11%""}",157186,0,North America +2023-09-19,64836,7491,"[""Monitor""]",2583.57,{},205555,0,Africa +2024-03-11,64837,2701,"[""Wireless Mouse"", ""Tablet""]",1773.57,{},30377,0,Europe +2024-03-09,64838,1255,"[""Charger"", ""Laptop"", ""Monitor""]",3702.76,"{""seasonal"": ""13%""}",233201,0,Asia +2024-05-23,64839,6852,"[""Phone"", ""Headphones"", ""Keyboard""]",4875.93,{},267190,1,Africa +2024-06-27,64840,4807,"[""Keyboard"", ""Charger""]",844.44,{},282050,0,South America +2023-11-27,64841,5951,"[""Wireless Mouse""]",4334.83,"{""promo"": ""17%""}",75837,0,Asia +2024-05-09,64842,6711,"[""Tablet"", ""Headphones"", ""Monitor""]",2479.2,"{"""": ""5%""}",122254,1,South America +2023-09-29,64843,3675,"[""Phone"", ""Wireless Mouse""]",3955.35,{},285003,0,Asia +2024-06-16,64844,4069,"[""Wireless Mouse""]",2416.7,{},38429,0,South America +2024-03-10,64845,3230,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1974.41,{},101274,1,North America +2024-01-20,64846,1577,"[""Laptop""]",3994.16,{},245968,1,Africa +2023-08-19,64847,6031,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2528.32,"{""promo"": ""11%""}",156122,0,Asia +2024-12-14,64848,4444,"[""Wireless Mouse""]",289.47,{},78573,0,Europe +2023-02-11,64849,6562,"[""Wireless Mouse""]",509.15,"{""seasonal"": ""15%""}",217734,0,Africa +2023-01-03,64850,9208,"[""Wireless Mouse"", ""Tablet""]",4136.13,{},106915,1,Asia +2024-02-21,64851,8579,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2125.96,"{"""": ""25%""}",114747,1,Africa +2023-04-13,64852,2353,"[""Phone""]",4853.03,"{""seasonal"": ""13%""}",145767,0,Europe +2024-08-06,64853,5399,"[""Laptop"", ""Charger""]",1911.09,{},159924,1,Asia +2023-01-21,64854,2791,"[""Tablet"", ""Wireless Mouse""]",2211.39,"{""loyalty"": ""26%""}",174316,1,Africa +2023-05-25,64855,9465,"[""Charger""]",3346.29,{},80138,1,North America +2024-02-19,64856,9828,"[""Charger""]",722.36,{},169448,0,Africa +2023-09-01,64857,2443,"[""Tablet"", ""Laptop""]",3534.92,"{""seasonal"": ""24%""}",44258,0,Africa +2023-12-13,64858,8332,"[""Laptop""]",4508.88,{},163301,1,South America +2023-04-01,64859,5770,"[""Keyboard"", ""Monitor""]",2813.21,{},140102,0,Asia +2023-02-23,64860,7195,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4212.44,{},157036,1,Europe +2024-11-23,64861,7403,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1566.14,{},103843,0,Africa +2024-01-30,64862,8181,"[""Wireless Mouse""]",4864.7,"{"""": ""19%""}",59717,0,Africa +2024-01-11,64863,4001,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1304.7,"{"""": ""14%""}",240677,1,Africa +2023-07-11,64864,7988,"[""Charger"", ""Phone""]",215.79,{},71454,1,North America +2024-07-09,64865,8746,"[""Laptop"", ""Phone""]",4926.64,"{""loyalty"": ""16%""}",156625,1,Asia +2023-12-09,64866,3559,"[""Charger"", ""Wireless Mouse""]",3768.62,{},283933,1,Asia +2023-04-05,64867,3791,"[""Wireless Mouse"", ""Laptop""]",3044.39,{},184357,1,Europe +2024-11-08,64868,2062,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4025.75,"{""promo"": ""26%""}",143864,1,North America +2024-02-20,64869,6555,"[""Monitor"", ""Laptop""]",3327.14,{},60502,1,South America +2023-10-30,64870,1381,"[""Wireless Mouse"", ""Laptop""]",2747.7,"{"""": ""5%""}",49039,0,Europe +2024-05-11,64871,9739,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4460.64,{},259592,1,North America +2024-12-04,64872,1374,"[""Laptop"", ""Wireless Mouse""]",2648.89,"{""seasonal"": ""18%""}",142150,0,South America +2023-04-09,64873,2590,"[""Phone"", ""Tablet"", ""Charger""]",2188.1,{},240209,1,Europe +2023-04-26,64874,9982,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3619.61,{},216617,0,North America +2023-10-27,64875,4851,"[""Tablet"", ""Monitor"", ""Headphones""]",364.97,{},4087,0,Europe +2023-06-11,64876,6857,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2236.06,"{""promo"": ""5%""}",118991,1,Africa +2023-01-30,64877,9538,"[""Wireless Mouse""]",96.13,"{"""": ""8%""}",282215,1,North America +2023-04-05,64878,8226,"[""Tablet""]",1490.64,{},191551,0,North America +2024-09-09,64879,9298,"[""Tablet"", ""Phone"", ""Laptop""]",4044.28,"{""promo"": ""6%""}",241566,0,North America +2023-10-01,64880,1494,"[""Headphones""]",2253.71,"{""promo"": ""24%""}",137556,0,South America +2023-04-14,64881,4984,"[""Monitor""]",3580.74,"{""seasonal"": ""22%""}",49087,0,South America +2023-02-16,64882,9654,"[""Phone"", ""Headphones"", ""Keyboard""]",2581.61,{},98283,0,North America +2024-08-08,64883,9582,"[""Phone"", ""Headphones"", ""Monitor""]",1998.95,"{""seasonal"": ""25%""}",292523,0,Africa +2023-02-28,64884,3152,"[""Laptop"", ""Headphones""]",2697.84,"{""promo"": ""28%""}",92524,1,South America +2024-08-16,64885,9262,"[""Laptop"", ""Charger""]",3839.39,"{"""": ""14%""}",129437,0,Europe +2024-12-04,64886,9984,"[""Laptop""]",4079.86,"{""promo"": ""29%""}",193538,0,Europe +2023-09-03,64887,2221,"[""Keyboard"", ""Tablet""]",4053.44,{},28067,1,Africa +2023-10-15,64888,5125,"[""Tablet"", ""Keyboard""]",3239.74,{},199059,0,Africa +2024-01-02,64889,110,"[""Phone"", ""Laptop"", ""Monitor""]",2504.38,{},241281,1,Asia +2024-04-05,64890,5132,"[""Charger"", ""Monitor"", ""Tablet""]",2627.66,"{""promo"": ""24%""}",229715,1,Europe +2024-10-24,64891,2563,"[""Wireless Mouse"", ""Keyboard""]",3033.7,{},137633,0,South America +2023-02-25,64892,979,"[""Charger"", ""Tablet""]",1183.26,"{""promo"": ""11%""}",32467,1,North America +2023-09-17,64893,9284,"[""Wireless Mouse""]",1398.35,"{"""": ""28%""}",60151,0,Africa +2024-07-11,64894,8292,"[""Laptop"", ""Charger"", ""Tablet""]",3790.44,"{""loyalty"": ""25%""}",98535,0,South America +2024-09-06,64895,5697,"[""Tablet"", ""Keyboard""]",3079.49,{},42483,1,Asia +2023-04-04,64896,3147,"[""Wireless Mouse"", ""Monitor""]",3899.01,"{""seasonal"": ""19%""}",74665,1,Africa +2024-10-23,64897,4781,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4729.06,"{""seasonal"": ""5%""}",256603,1,Asia +2023-07-11,64898,8881,"[""Laptop"", ""Phone""]",3791.8,"{""promo"": ""13%""}",144501,1,Africa +2024-08-10,64899,1550,"[""Wireless Mouse"", ""Tablet""]",1080.48,"{"""": ""18%""}",86597,1,Europe +2024-04-21,64900,1377,"[""Tablet""]",4861.78,"{""loyalty"": ""10%""}",237032,1,Africa +2024-02-02,64901,9054,"[""Phone""]",1762.31,{},155398,0,Europe +2023-01-25,64902,7064,"[""Keyboard"", ""Charger""]",4037.91,"{""seasonal"": ""16%""}",285061,1,Europe +2024-04-15,64903,6566,"[""Charger""]",3264.93,{},30641,0,North America +2024-09-08,64904,2054,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4373.24,{},167221,0,South America +2024-06-16,64905,6809,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",486.78,"{"""": ""26%""}",8605,0,Asia +2023-02-16,64906,1576,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1446.45,{},77244,0,North America +2023-12-30,64907,2767,"[""Headphones""]",2176.0,{},177075,0,Europe +2024-09-30,64908,6990,"[""Monitor"", ""Headphones"", ""Tablet""]",1129.94,{},236412,0,Asia +2023-06-25,64909,1151,"[""Tablet"", ""Charger""]",4286.58,{},197221,1,South America +2023-09-30,64910,9072,"[""Charger""]",3241.27,{},236947,0,South America +2023-03-27,64911,9102,"[""Charger"", ""Laptop""]",3942.91,{},287997,0,North America +2023-12-23,64912,3827,"[""Keyboard"", ""Charger""]",223.87,"{""loyalty"": ""7%""}",7250,0,Europe +2024-09-21,64913,3801,"[""Wireless Mouse""]",1915.77,"{""promo"": ""23%""}",168651,0,Africa +2023-02-11,64914,3244,"[""Keyboard"", ""Charger""]",3355.12,{},221173,0,Africa +2024-04-24,64915,650,"[""Headphones"", ""Laptop""]",1376.39,{},129672,1,North America +2023-02-28,64916,3045,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4172.72,"{"""": ""15%""}",247015,1,South America +2024-05-29,64917,6632,"[""Wireless Mouse""]",1081.12,"{"""": ""6%""}",172556,0,South America +2024-05-12,64918,6737,"[""Laptop"", ""Phone""]",4405.91,{},25495,0,Africa +2024-05-29,64919,6600,"[""Laptop""]",4675.91,{},237435,0,North America +2023-04-18,64920,4219,"[""Keyboard""]",180.15,"{"""": ""17%""}",224448,0,North America +2024-08-01,64921,5824,"[""Headphones""]",3278.26,"{""promo"": ""18%""}",218764,0,Asia +2024-07-17,64922,156,"[""Phone""]",1159.0,{},33425,1,South America +2024-09-13,64923,5379,"[""Phone""]",2800.7,{},297538,1,Asia +2023-05-01,64924,9807,"[""Laptop""]",2687.17,{},39079,1,Asia +2024-02-22,64925,3227,"[""Keyboard"", ""Monitor"", ""Laptop""]",380.42,{},97868,0,Africa +2024-01-08,64926,6010,"[""Phone"", ""Charger""]",1192.02,{},270786,0,North America +2024-04-13,64927,9399,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2325.09,{},21456,0,North America +2024-07-29,64928,3631,"[""Charger""]",3225.99,{},41379,0,Europe +2023-05-05,64929,18,"[""Headphones"", ""Keyboard"", ""Charger""]",1046.57,{},183104,1,South America +2023-08-16,64930,1510,"[""Tablet"", ""Monitor""]",2225.19,{},281223,0,Africa +2024-05-23,64931,7993,"[""Charger"", ""Laptop""]",3498.07,{},275915,1,South America +2024-05-10,64932,5829,"[""Laptop"", ""Headphones"", ""Charger""]",1575.28,{},176249,1,South America +2024-06-14,64933,6850,"[""Monitor""]",1047.82,"{""promo"": ""6%""}",129200,0,Asia +2023-11-26,64934,9877,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",854.31,"{"""": ""15%""}",272305,1,Africa +2024-04-29,64935,4252,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4177.36,{},53590,1,Africa +2024-01-19,64936,7796,"[""Monitor"", ""Headphones""]",4151.03,"{""loyalty"": ""5%""}",118699,1,Africa +2023-11-08,64937,2576,"[""Laptop"", ""Charger""]",201.17,{},178960,0,North America +2023-11-19,64938,7430,"[""Wireless Mouse""]",3557.41,"{""seasonal"": ""25%""}",35509,0,Europe +2023-03-20,64939,695,"[""Phone""]",3424.39,"{""loyalty"": ""19%""}",18395,0,South America +2024-04-04,64940,2615,"[""Laptop"", ""Tablet"", ""Headphones""]",2391.47,{},225124,0,South America +2023-05-14,64941,9054,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1564.77,"{""promo"": ""19%""}",280224,1,Asia +2024-02-05,64942,4125,"[""Phone"", ""Headphones"", ""Charger""]",3329.41,"{""loyalty"": ""10%""}",216581,1,Asia +2023-06-22,64943,8709,"[""Keyboard"", ""Charger""]",2415.36,"{"""": ""20%""}",17353,0,Africa +2024-10-14,64944,8003,"[""Charger""]",3087.57,"{""loyalty"": ""26%""}",200029,1,South America +2024-04-14,64945,6128,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",710.0,{},129827,1,Asia +2023-03-12,64946,3429,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2550.15,"{"""": ""8%""}",253113,0,Africa +2023-11-03,64947,9284,"[""Wireless Mouse"", ""Monitor""]",3652.0,"{""seasonal"": ""28%""}",142316,1,Africa +2024-10-19,64948,2757,"[""Wireless Mouse""]",2155.36,{},253672,0,South America +2024-11-13,64949,1279,"[""Tablet"", ""Phone"", ""Keyboard""]",487.04,{},280894,0,Africa +2024-01-08,64950,2080,"[""Headphones"", ""Phone"", ""Monitor""]",479.13,{},53037,0,Asia +2024-06-28,64951,5306,"[""Laptop""]",4535.49,{},130236,0,Africa +2024-10-04,64952,12,"[""Charger"", ""Laptop"", ""Phone""]",2933.27,"{""loyalty"": ""13%""}",170296,0,South America +2023-01-19,64953,830,"[""Charger"", ""Keyboard""]",321.29,{},263516,0,Africa +2024-08-28,64954,9477,"[""Headphones""]",4348.45,{},253310,1,North America +2024-04-14,64955,8813,"[""Laptop""]",2299.27,"{"""": ""20%""}",171418,0,Europe +2023-02-27,64956,6211,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1186.66,"{""loyalty"": ""19%""}",36769,0,Africa +2023-06-18,64957,851,"[""Keyboard""]",1018.71,{},136012,1,South America +2024-11-19,64958,2645,"[""Charger"", ""Tablet"", ""Keyboard""]",1200.13,"{""seasonal"": ""28%""}",239192,0,North America +2023-11-19,64959,528,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2706.93,"{"""": ""18%""}",117782,1,Asia +2023-07-29,64960,1557,"[""Wireless Mouse"", ""Charger""]",435.6,"{"""": ""26%""}",170532,0,Asia +2024-05-24,64961,8788,"[""Laptop""]",4761.79,{},77068,1,South America +2023-08-04,64962,7221,"[""Laptop"", ""Monitor""]",1033.61,"{""loyalty"": ""15%""}",220256,0,South America +2024-01-12,64963,769,"[""Headphones"", ""Laptop""]",213.52,"{""loyalty"": ""7%""}",9092,0,Europe +2024-01-26,64964,4846,"[""Tablet"", ""Monitor""]",2062.65,"{""promo"": ""26%""}",10672,0,Europe +2024-06-19,64965,2744,"[""Phone"", ""Laptop""]",4565.49,"{""promo"": ""30%""}",1428,0,South America +2023-01-03,64966,11,"[""Laptop""]",3390.26,"{"""": ""27%""}",274774,0,North America +2024-01-23,64967,6323,"[""Monitor"", ""Keyboard""]",1554.23,"{""loyalty"": ""21%""}",225980,1,Africa +2024-03-31,64968,2683,"[""Wireless Mouse""]",4182.2,{},220154,1,Europe +2024-02-23,64969,4534,"[""Phone""]",1258.17,{},186771,1,Asia +2024-01-02,64970,7840,"[""Monitor""]",1131.63,"{""seasonal"": ""17%""}",181624,0,Europe +2024-07-23,64971,6978,"[""Charger"", ""Wireless Mouse""]",3423.49,{},169350,1,Asia +2023-10-29,64972,4629,"[""Charger"", ""Headphones""]",3212.67,{},187064,1,North America +2024-07-06,64973,8967,"[""Wireless Mouse""]",519.79,{},29520,0,Asia +2023-11-27,64974,6941,"[""Charger"", ""Monitor""]",3416.34,{},134887,1,South America +2024-10-31,64975,6909,"[""Headphones"", ""Laptop""]",3799.41,{},100190,0,Africa +2024-08-12,64976,6286,"[""Laptop""]",2050.16,{},83337,1,North America +2023-11-11,64977,2441,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4857.38,"{""seasonal"": ""30%""}",260384,1,Asia +2023-02-03,64978,5438,"[""Monitor"", ""Tablet""]",3984.35,"{"""": ""28%""}",125667,1,Asia +2024-12-25,64979,9853,"[""Tablet""]",3310.18,"{""seasonal"": ""24%""}",264015,1,South America +2023-07-05,64980,7465,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2923.1,"{"""": ""25%""}",269435,1,Europe +2023-03-05,64981,9985,"[""Phone"", ""Charger""]",2716.22,{},182158,0,South America +2024-02-24,64982,208,"[""Monitor""]",1714.56,{},294445,0,Africa +2023-02-28,64983,4992,"[""Phone"", ""Monitor""]",1318.34,"{"""": ""19%""}",24036,0,Asia +2023-04-27,64984,1064,"[""Headphones"", ""Charger"", ""Monitor""]",2894.84,"{""promo"": ""12%""}",93448,1,Africa +2024-10-28,64985,56,"[""Tablet"", ""Charger""]",3867.33,{},30417,1,Europe +2024-09-15,64986,3190,"[""Charger"", ""Tablet"", ""Headphones""]",1623.47,"{""seasonal"": ""20%""}",7391,0,Europe +2024-12-16,64987,9022,"[""Keyboard"", ""Headphones"", ""Tablet""]",2862.77,{},67084,0,Africa +2024-10-26,64988,8845,"[""Headphones""]",467.4,"{"""": ""29%""}",87567,1,South America +2024-04-29,64989,8755,"[""Wireless Mouse""]",1575.73,{},222507,0,Asia +2023-02-14,64990,7677,"[""Headphones"", ""Tablet""]",1881.14,"{""loyalty"": ""28%""}",281793,1,Europe +2024-10-06,64991,1375,"[""Laptop"", ""Tablet"", ""Phone""]",4649.31,"{""promo"": ""27%""}",255710,0,Europe +2024-02-03,64992,4304,"[""Tablet"", ""Charger""]",4771.46,{},261881,0,Asia +2023-09-20,64993,59,"[""Monitor""]",1472.32,"{""loyalty"": ""24%""}",251081,1,South America +2024-07-16,64994,9346,"[""Headphones""]",2630.34,"{"""": ""21%""}",67476,0,Europe +2023-11-27,64995,4137,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3556.26,{},112297,0,Africa +2023-09-08,64996,149,"[""Headphones""]",1473.75,{},181095,0,South America +2024-05-14,64997,5131,"[""Wireless Mouse""]",1199.94,"{""loyalty"": ""30%""}",80062,0,South America +2024-05-02,64998,89,"[""Tablet"", ""Phone""]",627.8,{},199802,1,Europe +2024-04-20,64999,8343,"[""Keyboard"", ""Charger""]",3320.56,{},93671,1,Asia +2023-01-20,65000,9325,"[""Monitor"", ""Keyboard""]",963.08,"{""promo"": ""27%""}",296271,1,South America +2024-04-13,65001,1309,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3407.0,"{""loyalty"": ""10%""}",70378,1,Europe +2023-11-04,65002,7771,"[""Wireless Mouse"", ""Laptop""]",4088.34,{},233315,1,Asia +2024-02-11,65003,2981,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1874.53,"{""seasonal"": ""21%""}",62034,1,North America +2024-12-19,65004,3503,"[""Keyboard"", ""Charger""]",4132.09,{},152339,1,Africa +2023-08-12,65005,370,"[""Keyboard"", ""Headphones""]",3629.18,{},33645,0,North America +2024-02-21,65006,8412,"[""Wireless Mouse""]",1123.48,"{""loyalty"": ""21%""}",183070,1,Asia +2024-06-04,65007,3471,"[""Phone"", ""Tablet""]",1081.09,"{""loyalty"": ""15%""}",1832,0,Asia +2023-10-19,65008,8655,"[""Charger"", ""Laptop""]",3125.29,{},273842,0,Africa +2024-10-28,65009,2574,"[""Charger"", ""Phone"", ""Keyboard""]",4939.38,{},32422,0,South America +2024-11-25,65010,8870,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2079.6,"{""loyalty"": ""13%""}",86946,0,Europe +2023-08-20,65011,2326,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3256.01,{},69815,0,Africa +2023-12-16,65012,4413,"[""Tablet"", ""Phone"", ""Keyboard""]",1121.26,{},242225,0,North America +2024-10-19,65013,9426,"[""Charger"", ""Tablet""]",779.88,"{""seasonal"": ""28%""}",172280,0,Europe +2023-09-01,65014,5406,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",432.6,"{""seasonal"": ""21%""}",263775,0,Africa +2023-11-11,65015,2066,"[""Phone"", ""Charger"", ""Laptop""]",1144.43,"{""seasonal"": ""16%""}",249477,0,Africa +2023-07-13,65016,5816,"[""Phone"", ""Monitor"", ""Charger""]",3344.9,"{""seasonal"": ""5%""}",287834,1,South America +2024-06-08,65017,3999,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",439.1,"{""loyalty"": ""16%""}",243114,0,Africa +2024-07-15,65018,6023,"[""Wireless Mouse""]",3485.64,"{"""": ""9%""}",217863,1,Europe +2023-06-27,65019,7065,"[""Laptop""]",1969.54,{},131798,0,Asia +2023-02-17,65020,7108,"[""Wireless Mouse""]",3684.52,"{""loyalty"": ""15%""}",139417,1,Europe +2023-02-04,65021,5561,"[""Wireless Mouse""]",561.36,"{""promo"": ""8%""}",223170,0,Africa +2023-03-26,65022,5175,"[""Laptop"", ""Monitor"", ""Headphones""]",1997.12,{},249923,1,North America +2024-09-09,65023,1302,"[""Headphones"", ""Tablet""]",3296.89,{},151454,0,Africa +2024-07-30,65024,6222,"[""Headphones"", ""Laptop"", ""Phone""]",3931.49,{},286668,0,North America +2024-06-12,65025,9752,"[""Headphones""]",2117.1,{},226810,1,South America +2023-09-22,65026,8019,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3205.0,{},113343,0,Asia +2023-02-03,65027,2810,"[""Laptop"", ""Keyboard""]",236.63,{},98951,0,Europe +2023-06-15,65028,9532,"[""Keyboard""]",2092.18,{},135855,0,Africa +2024-04-26,65029,1799,"[""Phone""]",4190.62,{},269186,1,North America +2024-06-28,65030,5345,"[""Charger""]",665.14,"{""seasonal"": ""25%""}",32150,1,North America +2023-12-23,65031,6574,"[""Monitor""]",3736.57,"{""seasonal"": ""6%""}",222023,0,Asia +2024-11-07,65032,8295,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3046.76,{},167422,1,North America +2024-09-07,65033,2679,"[""Laptop"", ""Keyboard""]",4186.16,"{""promo"": ""27%""}",36414,1,South America +2023-06-28,65034,5707,"[""Wireless Mouse""]",2905.06,{},264346,0,Europe +2023-09-14,65035,8251,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2991.9,"{""loyalty"": ""24%""}",224892,0,South America +2024-03-10,65036,7769,"[""Laptop""]",3327.05,"{""promo"": ""16%""}",238989,1,Africa +2023-07-26,65037,7176,"[""Wireless Mouse""]",4111.59,"{""promo"": ""12%""}",243130,1,North America +2024-07-10,65038,4986,"[""Charger"", ""Headphones""]",1379.75,"{"""": ""30%""}",147597,1,Europe +2024-09-03,65039,9451,"[""Monitor"", ""Charger""]",725.09,{},106046,0,Africa +2023-11-07,65040,8489,"[""Tablet""]",3059.87,{},62274,0,North America +2024-01-22,65041,4703,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2969.55,{},269363,0,South America +2024-05-07,65042,6518,"[""Phone"", ""Headphones""]",3345.63,"{""seasonal"": ""26%""}",65346,0,North America +2024-12-13,65043,7294,"[""Headphones""]",4245.23,{},114474,1,South America +2023-08-18,65044,9363,"[""Wireless Mouse"", ""Keyboard""]",1005.39,{},117733,0,North America +2024-05-10,65045,252,"[""Keyboard""]",2282.29,{},59752,1,Asia +2024-12-06,65046,5257,"[""Phone"", ""Monitor""]",1922.04,{},92430,1,Africa +2023-06-25,65047,7986,"[""Tablet"", ""Headphones""]",1181.84,{},90265,1,Europe +2024-08-02,65048,6630,"[""Keyboard""]",4775.78,"{"""": ""9%""}",161923,0,Europe +2023-04-30,65049,9817,"[""Keyboard"", ""Headphones"", ""Laptop""]",2644.49,{},207154,1,Europe +2023-09-20,65050,3555,"[""Laptop""]",3009.62,"{"""": ""24%""}",285911,1,Africa +2023-11-06,65051,1601,"[""Keyboard"", ""Charger""]",2026.79,"{"""": ""22%""}",248312,0,South America +2024-11-27,65052,7377,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",225.82,{},96764,1,North America +2024-01-11,65053,2998,"[""Tablet"", ""Laptop"", ""Keyboard""]",1769.22,"{""loyalty"": ""6%""}",28698,0,North America +2023-05-02,65054,1216,"[""Keyboard"", ""Tablet"", ""Laptop""]",1551.75,{},74186,1,Asia +2023-01-08,65055,6110,"[""Wireless Mouse"", ""Laptop""]",4479.59,{},145506,1,South America +2023-11-16,65056,6352,"[""Headphones"", ""Phone"", ""Charger""]",3443.27,"{""loyalty"": ""25%""}",238767,1,Asia +2023-01-18,65057,2823,"[""Tablet""]",4806.98,"{"""": ""26%""}",125187,0,Europe +2023-03-29,65058,7976,"[""Phone"", ""Keyboard"", ""Headphones""]",1865.58,{},234236,0,North America +2023-06-01,65059,2852,"[""Headphones""]",1046.1,{},139345,1,Africa +2024-12-23,65060,1671,"[""Tablet"", ""Headphones"", ""Phone""]",2398.15,"{""loyalty"": ""21%""}",299410,1,Africa +2023-02-25,65061,2551,"[""Monitor"", ""Tablet""]",2978.53,{},283509,1,Asia +2024-08-04,65062,2905,"[""Phone"", ""Keyboard"", ""Charger""]",876.16,{},110179,1,South America +2023-07-19,65063,6017,"[""Monitor""]",4585.44,{},15941,1,South America +2023-07-02,65064,5397,"[""Tablet"", ""Charger""]",3354.72,"{""seasonal"": ""15%""}",291078,1,Africa +2023-06-05,65065,8713,"[""Keyboard"", ""Monitor"", ""Phone""]",1391.18,"{"""": ""14%""}",220958,1,South America +2023-12-02,65066,2566,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4760.14,{},109487,1,Africa +2023-05-26,65067,600,"[""Monitor"", ""Tablet""]",420.74,"{""seasonal"": ""14%""}",20303,0,North America +2024-10-06,65068,3000,"[""Wireless Mouse"", ""Keyboard""]",964.96,{},121092,0,North America +2024-11-04,65069,3611,"[""Laptop"", ""Charger"", ""Headphones""]",3026.35,{},99370,0,Europe +2023-04-01,65070,461,"[""Monitor"", ""Tablet"", ""Charger""]",3849.12,{},286408,1,South America +2023-05-22,65071,4312,"[""Tablet"", ""Keyboard"", ""Charger""]",1282.9,"{""promo"": ""10%""}",263588,1,North America +2024-02-11,65072,7112,"[""Laptop""]",1705.29,{},250533,0,South America +2023-12-29,65073,8828,"[""Tablet"", ""Monitor"", ""Laptop""]",3647.54,{},201481,1,Europe +2023-02-08,65074,8284,"[""Phone""]",2529.33,"{""loyalty"": ""12%""}",139806,1,Europe +2024-07-21,65075,2706,"[""Headphones"", ""Monitor"", ""Laptop""]",1213.52,"{""seasonal"": ""13%""}",110271,0,Asia +2023-11-25,65076,5076,"[""Monitor"", ""Tablet""]",2378.05,{},228773,1,Europe +2023-05-29,65077,6390,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4494.0,"{""seasonal"": ""21%""}",204804,0,Africa +2024-05-20,65078,1168,"[""Phone""]",448.69,"{""seasonal"": ""27%""}",171834,1,South America +2024-08-06,65079,14,"[""Charger"", ""Monitor"", ""Keyboard""]",511.51,"{""seasonal"": ""21%""}",162784,1,Europe +2023-03-26,65080,1980,"[""Phone""]",3538.07,{},109647,1,Europe +2024-09-11,65081,122,"[""Monitor"", ""Keyboard"", ""Phone""]",2208.0,"{"""": ""26%""}",257300,0,Europe +2023-11-02,65082,2822,"[""Charger""]",582.64,"{""loyalty"": ""18%""}",27388,1,Asia +2023-01-28,65083,1018,"[""Wireless Mouse"", ""Monitor""]",1441.96,{},246436,1,Asia +2024-07-11,65084,6981,"[""Laptop""]",1661.43,{},71337,1,Asia +2023-04-07,65085,289,"[""Tablet""]",1675.69,"{""promo"": ""5%""}",176234,0,Africa +2024-05-06,65086,9248,"[""Keyboard""]",562.1,{},29248,0,Asia +2024-05-05,65087,1122,"[""Charger""]",4075.83,{},199773,0,Europe +2023-07-29,65088,6946,"[""Charger""]",783.65,{},11038,0,Europe +2024-06-05,65089,6560,"[""Monitor"", ""Keyboard""]",3048.96,"{""promo"": ""20%""}",63600,1,South America +2024-03-07,65090,6592,"[""Keyboard""]",3082.58,{},220051,1,Africa +2023-08-06,65091,7875,"[""Phone"", ""Monitor"", ""Headphones""]",4527.21,{},141217,1,South America +2024-07-06,65092,7832,"[""Keyboard""]",1833.87,"{""loyalty"": ""8%""}",178516,1,Europe +2023-02-15,65093,3655,"[""Charger""]",1984.73,{},273457,0,Asia +2024-11-10,65094,6228,"[""Phone"", ""Headphones""]",3437.17,{},83642,1,North America +2023-07-28,65095,339,"[""Phone"", ""Keyboard""]",2241.2,"{""seasonal"": ""23%""}",253134,1,South America +2024-05-22,65096,4041,"[""Keyboard"", ""Tablet"", ""Monitor""]",3485.18,{},101522,1,South America +2024-02-07,65097,4697,"[""Tablet""]",2009.88,"{"""": ""5%""}",157674,0,Africa +2023-02-27,65098,1155,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4029.07,{},97520,0,Asia +2023-12-31,65099,6535,"[""Laptop"", ""Phone""]",3650.8,"{""loyalty"": ""18%""}",56948,1,Europe +2024-07-30,65100,377,"[""Keyboard"", ""Tablet""]",4314.93,"{"""": ""9%""}",54899,1,Asia +2024-01-30,65101,8159,"[""Tablet""]",4281.95,{},78993,0,South America +2023-01-08,65102,3553,"[""Laptop"", ""Headphones"", ""Monitor""]",1197.36,{},13121,1,South America +2023-03-07,65103,7863,"[""Headphones""]",4946.22,"{""loyalty"": ""13%""}",143345,1,Europe +2023-12-30,65104,8969,"[""Monitor""]",2049.97,"{"""": ""13%""}",73868,0,North America +2023-06-01,65105,9160,"[""Wireless Mouse"", ""Tablet""]",4024.19,{},156929,1,South America +2024-09-08,65106,5366,"[""Tablet""]",4199.33,"{""seasonal"": ""17%""}",28941,0,Europe +2023-12-19,65107,9174,"[""Charger"", ""Laptop""]",1825.12,{},133065,0,North America +2023-05-16,65108,9338,"[""Headphones""]",4285.88,"{""loyalty"": ""11%""}",172514,1,South America +2023-09-06,65109,5470,"[""Tablet""]",4303.94,"{""promo"": ""11%""}",58364,0,Europe +2023-12-31,65110,1737,"[""Headphones"", ""Monitor"", ""Charger""]",1049.18,{},202127,0,South America +2023-12-02,65111,1635,"[""Headphones"", ""Charger"", ""Tablet""]",1158.24,"{""loyalty"": ""14%""}",6033,0,Africa +2024-07-14,65112,5703,"[""Keyboard""]",4595.35,{},294826,1,Asia +2023-07-09,65113,3732,"[""Monitor"", ""Keyboard"", ""Tablet""]",2125.74,{},139624,0,Asia +2023-10-21,65114,9968,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1085.95,{},178173,0,North America +2024-04-06,65115,4325,"[""Monitor"", ""Tablet"", ""Laptop""]",2783.98,{},257687,0,Asia +2024-12-21,65116,2070,"[""Wireless Mouse"", ""Charger""]",4263.0,{},39395,1,Africa +2024-01-09,65117,555,"[""Monitor"", ""Headphones""]",2471.75,"{""promo"": ""10%""}",3402,0,Africa +2023-06-28,65118,461,"[""Tablet"", ""Phone"", ""Laptop""]",501.48,"{""promo"": ""10%""}",174329,0,Africa +2023-09-20,65119,3393,"[""Charger""]",4781.49,{},135429,1,North America +2024-12-03,65120,4312,"[""Monitor"", ""Phone""]",1846.97,{},121042,0,Europe +2024-09-21,65121,3199,"[""Laptop"", ""Headphones""]",4085.62,"{"""": ""22%""}",248650,0,Europe +2023-01-24,65122,5607,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1727.03,{},87190,1,Africa +2024-01-11,65123,3875,"[""Monitor""]",2138.15,"{""loyalty"": ""9%""}",184628,0,North America +2023-09-20,65124,8056,"[""Headphones"", ""Phone"", ""Laptop""]",2938.77,{},290816,1,Europe +2024-01-18,65125,1507,"[""Keyboard"", ""Laptop""]",2344.38,{},89034,0,Asia +2023-12-10,65126,5360,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4867.85,{},170189,1,Africa +2023-07-10,65127,6559,"[""Keyboard"", ""Phone"", ""Headphones""]",986.88,{},33400,0,South America +2023-05-28,65128,2246,"[""Monitor"", ""Headphones""]",770.63,"{""loyalty"": ""6%""}",144836,1,North America +2023-06-06,65129,5889,"[""Monitor"", ""Phone""]",1541.19,{},55860,0,Asia +2023-07-11,65130,2864,"[""Laptop"", ""Monitor"", ""Charger""]",1588.91,"{""loyalty"": ""20%""}",196143,1,Europe +2024-08-01,65131,4175,"[""Phone"", ""Headphones"", ""Laptop""]",3752.3,{},291506,1,Asia +2024-01-19,65132,4236,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1192.36,"{""seasonal"": ""22%""}",179505,0,Asia +2023-05-09,65133,2122,"[""Headphones"", ""Phone""]",3860.2,"{""promo"": ""30%""}",267927,0,Africa +2024-09-12,65134,2381,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1162.41,"{""loyalty"": ""27%""}",118878,0,Asia +2023-06-19,65135,9781,"[""Headphones"", ""Keyboard""]",953.79,"{""seasonal"": ""27%""}",266985,0,North America +2024-06-29,65136,1661,"[""Headphones""]",3595.99,{},186460,1,Europe +2023-06-09,65137,9171,"[""Phone""]",4452.04,{},37503,0,Asia +2024-05-15,65138,8841,"[""Charger"", ""Keyboard""]",3587.05,"{""loyalty"": ""28%""}",232309,1,Europe +2024-02-17,65139,1640,"[""Laptop"", ""Charger""]",163.36,"{"""": ""6%""}",140383,0,Asia +2023-04-25,65140,93,"[""Headphones"", ""Tablet""]",3470.39,"{"""": ""26%""}",171587,0,South America +2024-12-22,65141,8711,"[""Keyboard""]",1261.7,{},86322,1,Europe +2024-08-08,65142,1635,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3231.48,"{"""": ""25%""}",291773,1,Asia +2023-12-16,65143,337,"[""Monitor"", ""Laptop""]",487.59,"{""promo"": ""29%""}",213616,1,Africa +2023-05-06,65144,6467,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4724.9,{},67045,1,Africa +2024-10-14,65145,4158,"[""Monitor""]",3287.32,{},14673,0,North America +2023-03-17,65146,1658,"[""Tablet"", ""Wireless Mouse""]",376.62,"{""promo"": ""25%""}",27734,0,Europe +2024-06-06,65147,7221,"[""Tablet"", ""Headphones"", ""Charger""]",318.32,"{""loyalty"": ""30%""}",64159,0,Asia +2024-05-24,65148,4361,"[""Charger""]",2375.65,"{"""": ""6%""}",204676,0,Asia +2023-05-31,65149,3315,"[""Phone""]",1686.42,{},12301,1,Africa +2023-05-22,65150,1646,"[""Phone""]",2303.89,"{""seasonal"": ""29%""}",245362,0,Asia +2023-08-22,65151,5217,"[""Keyboard""]",2325.79,{},144966,0,Asia +2023-12-10,65152,6120,"[""Headphones"", ""Laptop""]",2761.62,"{""promo"": ""22%""}",123816,1,South America +2023-04-11,65153,2229,"[""Keyboard""]",850.18,"{""promo"": ""30%""}",122315,1,South America +2023-04-04,65154,7630,"[""Headphones""]",3090.31,{},202385,1,Africa +2024-05-14,65155,3086,"[""Laptop"", ""Headphones"", ""Phone""]",2940.65,"{""promo"": ""18%""}",12466,0,North America +2023-11-29,65156,9927,"[""Laptop""]",972.53,{},159064,1,Europe +2024-05-19,65157,4328,"[""Monitor"", ""Keyboard""]",2871.24,"{""seasonal"": ""23%""}",106862,1,Europe +2024-05-24,65158,6083,"[""Wireless Mouse"", ""Tablet""]",4863.37,"{"""": ""10%""}",277094,1,Africa +2023-05-17,65159,6038,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4336.15,"{""seasonal"": ""8%""}",99864,1,Asia +2023-02-06,65160,8873,"[""Keyboard"", ""Monitor"", ""Headphones""]",3531.47,{},70159,0,Asia +2023-05-20,65161,6234,"[""Monitor""]",1066.04,"{"""": ""10%""}",87931,0,Europe +2023-08-18,65162,993,"[""Charger"", ""Monitor"", ""Headphones""]",692.81,"{""loyalty"": ""25%""}",28523,1,Asia +2023-04-17,65163,3122,"[""Keyboard"", ""Charger""]",3173.3,"{""loyalty"": ""27%""}",100472,0,South America +2024-07-24,65164,1961,"[""Monitor"", ""Phone""]",987.28,{},89109,0,Africa +2024-02-08,65165,8833,"[""Keyboard"", ""Laptop""]",3482.61,"{"""": ""6%""}",108846,0,Asia +2024-06-25,65166,5369,"[""Charger"", ""Laptop"", ""Headphones""]",3459.52,"{""seasonal"": ""21%""}",104685,0,Europe +2023-10-09,65167,3502,"[""Keyboard""]",4766.63,"{""promo"": ""30%""}",145442,1,South America +2024-09-25,65168,5525,"[""Laptop""]",1872.32,{},58060,0,Europe +2023-05-14,65169,8930,"[""Charger"", ""Tablet"", ""Monitor""]",4911.34,"{""loyalty"": ""11%""}",155382,0,Africa +2024-03-13,65170,5254,"[""Charger"", ""Headphones"", ""Keyboard""]",4149.85,{},211288,1,South America +2024-02-23,65171,5062,"[""Tablet""]",3854.75,"{""seasonal"": ""28%""}",154256,1,Asia +2023-09-03,65172,7706,"[""Phone""]",976.95,{},274994,0,Asia +2024-01-22,65173,3307,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",52.1,{},6416,1,Asia +2024-05-02,65174,5472,"[""Wireless Mouse"", ""Charger"", ""Phone""]",795.41,"{""promo"": ""12%""}",161368,1,Africa +2024-07-07,65175,2586,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2178.02,{},259342,1,North America +2024-02-08,65176,6163,"[""Wireless Mouse""]",1511.59,{},152796,1,Europe +2024-04-30,65177,7009,"[""Phone"", ""Laptop"", ""Charger""]",4138.15,{},82639,0,South America +2023-06-05,65178,5204,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",991.63,"{""loyalty"": ""26%""}",81119,0,Asia +2024-12-17,65179,9711,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3166.91,{},122322,0,Africa +2024-02-17,65180,5633,"[""Wireless Mouse""]",281.08,{},181937,0,Asia +2024-01-25,65181,7839,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3366.64,"{"""": ""30%""}",76512,1,Asia +2023-07-03,65182,8506,"[""Headphones"", ""Monitor"", ""Tablet""]",2729.31,{},276629,0,South America +2023-11-14,65183,484,"[""Headphones"", ""Tablet"", ""Phone""]",3858.03,"{""promo"": ""15%""}",68225,0,North America +2023-11-19,65184,6603,"[""Keyboard"", ""Charger"", ""Phone""]",2627.89,"{""promo"": ""9%""}",122911,0,Africa +2023-02-24,65185,3626,"[""Wireless Mouse""]",3329.77,"{""seasonal"": ""6%""}",26401,0,Asia +2024-06-05,65186,3234,"[""Monitor"", ""Laptop""]",1198.14,"{""seasonal"": ""23%""}",197726,1,South America +2023-09-23,65187,5190,"[""Charger"", ""Wireless Mouse""]",1486.64,"{""seasonal"": ""26%""}",205848,0,Asia +2024-09-10,65188,3453,"[""Keyboard"", ""Tablet"", ""Laptop""]",1175.95,"{"""": ""26%""}",104359,0,Africa +2023-12-10,65189,400,"[""Keyboard""]",4849.1,{},182349,0,Africa +2024-07-29,65190,6081,"[""Laptop"", ""Monitor""]",2178.94,"{""promo"": ""5%""}",103794,1,Europe +2023-08-30,65191,2438,"[""Phone""]",3132.97,{},196413,0,Africa +2023-02-08,65192,4540,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4852.87,{},124174,1,Europe +2023-02-14,65193,8519,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4268.61,{},84899,0,Asia +2023-09-06,65194,9815,"[""Phone"", ""Monitor"", ""Headphones""]",3528.72,{},75294,1,Africa +2024-12-30,65195,8665,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3095.15,"{"""": ""27%""}",94862,1,Africa +2024-09-28,65196,7301,"[""Phone"", ""Headphones""]",994.71,{},294503,1,North America +2024-04-23,65197,3557,"[""Laptop""]",2055.69,"{""loyalty"": ""21%""}",88177,1,Europe +2023-11-04,65198,5496,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3620.67,{},75826,0,Africa +2024-08-07,65199,918,"[""Laptop""]",1011.45,"{""promo"": ""9%""}",38346,1,Africa +2023-12-07,65200,5991,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1996.54,"{""promo"": ""5%""}",13683,0,North America +2023-12-29,65201,2494,"[""Laptop""]",3988.01,{},15358,0,North America +2024-05-07,65202,1179,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",327.56,"{""promo"": ""26%""}",209021,1,North America +2024-06-22,65203,8192,"[""Charger"", ""Monitor"", ""Keyboard""]",1604.64,{},56749,1,Europe +2023-01-07,65204,1757,"[""Laptop"", ""Monitor"", ""Phone""]",1693.09,{},157961,0,Europe +2024-09-08,65205,8500,"[""Phone"", ""Tablet""]",864.59,{},144853,0,Africa +2024-02-20,65206,4470,"[""Charger"", ""Tablet"", ""Monitor""]",1374.94,"{""loyalty"": ""21%""}",222491,1,Africa +2024-11-07,65207,8921,"[""Tablet""]",1489.78,{},295520,1,Asia +2023-01-24,65208,5895,"[""Phone""]",3047.45,{},164030,1,Europe +2023-01-25,65209,4665,"[""Wireless Mouse"", ""Charger"", ""Phone""]",137.55,"{""seasonal"": ""23%""}",108610,0,Europe +2023-01-22,65210,3186,"[""Tablet"", ""Laptop"", ""Monitor""]",4146.25,"{""seasonal"": ""17%""}",248379,1,Europe +2024-09-05,65211,1113,"[""Phone""]",2535.66,"{"""": ""18%""}",14317,0,Africa +2024-01-29,65212,5378,"[""Tablet"", ""Wireless Mouse""]",3391.88,{},21295,0,North America +2024-07-08,65213,3618,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2544.72,"{""loyalty"": ""28%""}",294460,1,North America +2024-09-10,65214,7405,"[""Laptop"", ""Keyboard""]",949.28,{},132203,1,South America +2023-08-09,65215,6219,"[""Charger"", ""Keyboard"", ""Monitor""]",2964.83,"{""seasonal"": ""14%""}",70564,0,Africa +2024-05-06,65216,4243,"[""Charger"", ""Phone""]",2919.33,"{"""": ""29%""}",239023,0,North America +2024-03-14,65217,4133,"[""Charger"", ""Tablet""]",1659.67,"{""loyalty"": ""21%""}",11828,1,South America +2023-07-01,65218,4539,"[""Wireless Mouse""]",2054.26,{},119680,0,North America +2024-06-01,65219,1235,"[""Phone""]",1791.06,"{""promo"": ""5%""}",165995,1,Asia +2024-03-20,65220,3330,"[""Charger"", ""Laptop""]",3640.03,"{"""": ""16%""}",102622,0,North America +2024-12-06,65221,8210,"[""Keyboard"", ""Phone""]",102.77,"{""promo"": ""5%""}",254990,0,South America +2023-07-30,65222,5167,"[""Monitor"", ""Charger"", ""Headphones""]",2348.03,{},211294,0,Africa +2023-01-17,65223,4871,"[""Laptop"", ""Charger"", ""Keyboard""]",2347.72,"{""seasonal"": ""23%""}",10406,1,Asia +2023-07-21,65224,1549,"[""Keyboard"", ""Laptop""]",3282.87,"{""loyalty"": ""7%""}",288624,0,Europe +2024-06-23,65225,3492,"[""Tablet""]",4599.14,{},262656,0,Europe +2024-03-21,65226,183,"[""Keyboard"", ""Tablet""]",2892.03,{},39179,1,Africa +2024-05-26,65227,1116,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1304.79,"{"""": ""21%""}",297004,0,South America +2024-09-15,65228,5657,"[""Laptop"", ""Wireless Mouse""]",390.57,{},136209,1,Europe +2024-05-18,65229,3141,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1204.86,"{""seasonal"": ""12%""}",258227,1,Europe +2023-11-23,65230,118,"[""Charger""]",490.79,{},150918,0,Asia +2024-11-19,65231,6412,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1067.7,{},25559,1,North America +2024-10-27,65232,5137,"[""Monitor"", ""Laptop""]",3904.96,"{""promo"": ""13%""}",270952,0,Africa +2024-01-25,65233,6045,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4311.33,"{""loyalty"": ""22%""}",204013,0,North America +2023-08-12,65234,5676,"[""Laptop""]",4996.45,{},21477,1,North America +2024-04-15,65235,191,"[""Headphones""]",3546.82,"{""seasonal"": ""18%""}",291566,1,Asia +2024-05-26,65236,5822,"[""Keyboard"", ""Headphones""]",2116.43,{},18839,0,Asia +2024-05-21,65237,4393,"[""Phone"", ""Charger""]",1363.81,"{""seasonal"": ""15%""}",10243,0,Africa +2024-09-18,65238,1072,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4925.72,"{""seasonal"": ""28%""}",200100,1,Africa +2024-03-25,65239,1418,"[""Laptop""]",2805.47,{},16232,1,South America +2024-05-28,65240,8305,"[""Monitor"", ""Charger""]",180.78,{},1881,0,North America +2024-08-06,65241,4461,"[""Laptop""]",1640.27,"{"""": ""8%""}",57297,1,Africa +2024-09-16,65242,9577,"[""Monitor"", ""Laptop""]",1875.68,"{""seasonal"": ""20%""}",125771,0,Africa +2023-07-04,65243,9009,"[""Tablet""]",355.55,{},286398,0,Asia +2023-10-26,65244,3498,"[""Laptop"", ""Keyboard""]",708.26,"{"""": ""10%""}",255709,0,Europe +2023-06-10,65245,7176,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2854.86,{},245025,0,Africa +2024-11-30,65246,1639,"[""Laptop""]",2663.42,{},122899,0,South America +2023-10-28,65247,5145,"[""Monitor""]",1420.13,"{""loyalty"": ""25%""}",110056,1,South America +2023-09-18,65248,9532,"[""Monitor"", ""Phone""]",850.14,"{""promo"": ""27%""}",188930,1,South America +2024-05-16,65249,5803,"[""Monitor"", ""Charger"", ""Headphones""]",4964.23,{},85903,1,Asia +2024-04-15,65250,1848,"[""Tablet""]",2633.23,{},232243,1,Asia +2023-02-09,65251,7362,"[""Monitor""]",2786.91,"{""promo"": ""10%""}",92506,1,Asia +2023-01-06,65252,9596,"[""Tablet"", ""Wireless Mouse""]",1447.88,"{""seasonal"": ""15%""}",139162,1,Europe +2024-05-07,65253,7780,"[""Keyboard""]",1808.07,{},75254,0,South America +2024-11-28,65254,9812,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2534.37,"{""loyalty"": ""19%""}",110990,1,South America +2023-01-01,65255,4571,"[""Tablet""]",365.31,{},214043,1,Asia +2024-06-30,65256,3644,"[""Charger"", ""Phone"", ""Monitor""]",613.18,{},15826,1,South America +2023-06-01,65257,1615,"[""Monitor""]",1203.61,"{""promo"": ""6%""}",83915,1,Europe +2024-09-12,65258,450,"[""Headphones""]",748.63,{},147732,1,South America +2023-09-03,65259,8322,"[""Laptop"", ""Keyboard"", ""Headphones""]",2795.06,{},113126,0,Europe +2024-05-31,65260,9296,"[""Keyboard""]",4811.11,{},255583,0,Africa +2024-09-04,65261,659,"[""Tablet"", ""Charger""]",2858.09,{},143637,0,South America +2024-04-09,65262,4123,"[""Phone"", ""Wireless Mouse""]",1233.65,{},29871,0,Europe +2024-09-28,65263,1610,"[""Keyboard"", ""Wireless Mouse""]",1431.11,"{""seasonal"": ""24%""}",70325,1,North America +2023-07-20,65264,4828,"[""Phone""]",1732.18,{},99774,1,Europe +2023-10-18,65265,5181,"[""Wireless Mouse"", ""Monitor""]",4248.79,{},101150,1,Africa +2023-07-01,65266,2836,"[""Charger""]",2422.2,"{""promo"": ""20%""}",251146,0,South America +2024-06-20,65267,1540,"[""Tablet"", ""Phone""]",1703.79,"{""loyalty"": ""20%""}",219963,1,Africa +2024-01-08,65268,6549,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",742.23,{},180609,0,Asia +2024-04-16,65269,6624,"[""Charger"", ""Tablet""]",4484.38,{},41143,0,Africa +2024-02-10,65270,3988,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2548.17,"{""seasonal"": ""25%""}",281851,0,Europe +2023-05-30,65271,7019,"[""Charger"", ""Keyboard""]",3361.55,"{""seasonal"": ""27%""}",70508,0,Europe +2023-01-23,65272,4131,"[""Monitor"", ""Laptop""]",2507.45,"{"""": ""23%""}",149042,0,North America +2024-05-20,65273,4876,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2107.39,"{"""": ""21%""}",180113,0,Europe +2024-01-16,65274,3739,"[""Charger""]",1322.55,"{""loyalty"": ""28%""}",206993,1,Africa +2023-05-03,65275,3926,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2613.13,{},268078,0,Europe +2024-02-18,65276,4532,"[""Laptop"", ""Phone"", ""Tablet""]",1250.12,"{""loyalty"": ""14%""}",74866,0,South America +2023-12-25,65277,1068,"[""Charger"", ""Wireless Mouse""]",2972.7,"{""promo"": ""26%""}",8860,0,Asia +2023-05-11,65278,4008,"[""Charger"", ""Keyboard"", ""Phone""]",4204.59,{},111556,0,Africa +2024-03-30,65279,8452,"[""Phone""]",1334.65,"{"""": ""20%""}",144378,1,South America +2024-09-16,65280,662,"[""Monitor"", ""Wireless Mouse""]",2810.35,"{""promo"": ""8%""}",224736,0,Asia +2023-04-22,65281,1571,"[""Tablet"", ""Monitor"", ""Charger""]",4399.52,{},62482,0,Europe +2024-04-30,65282,9728,"[""Phone""]",2576.4,"{""promo"": ""22%""}",22630,0,North America +2024-10-24,65283,4279,"[""Laptop"", ""Tablet""]",1669.51,"{""seasonal"": ""6%""}",133575,0,Africa +2024-11-17,65284,236,"[""Keyboard"", ""Charger""]",3731.66,"{""promo"": ""17%""}",39993,1,Africa +2023-01-04,65285,8054,"[""Tablet""]",2149.6,{},253712,1,Europe +2023-11-17,65286,9317,"[""Charger"", ""Laptop"", ""Monitor""]",3916.92,"{""seasonal"": ""19%""}",95903,1,Europe +2023-05-26,65287,8311,"[""Headphones"", ""Phone""]",652.15,"{""promo"": ""22%""}",261406,0,North America +2023-04-07,65288,9333,"[""Monitor"", ""Charger"", ""Headphones""]",4235.92,{},260732,0,North America +2023-12-26,65289,2684,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2728.23,{},74621,0,South America +2024-02-10,65290,7834,"[""Phone"", ""Monitor"", ""Charger""]",481.96,{},185342,0,Africa +2024-10-19,65291,4611,"[""Keyboard"", ""Headphones""]",847.85,{},158276,0,Africa +2024-10-19,65292,6301,"[""Tablet"", ""Wireless Mouse""]",4034.65,{},259135,0,Africa +2023-12-22,65293,5218,"[""Charger"", ""Headphones""]",147.77,"{"""": ""26%""}",100250,0,Africa +2024-12-26,65294,1475,"[""Keyboard"", ""Tablet"", ""Laptop""]",2182.13,"{""loyalty"": ""15%""}",131732,0,North America +2023-02-13,65295,3046,"[""Phone"", ""Headphones""]",1230.96,{},26120,0,South America +2023-12-28,65296,8443,"[""Charger"", ""Keyboard""]",912.56,{},254991,0,South America +2023-10-23,65297,4108,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4827.72,{},203323,0,Europe +2024-10-13,65298,1564,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1477.18,"{"""": ""19%""}",44034,1,South America +2023-04-04,65299,4047,"[""Phone"", ""Wireless Mouse""]",2495.96,"{""loyalty"": ""28%""}",89947,0,Asia +2023-10-25,65300,6824,"[""Monitor"", ""Tablet""]",912.24,{},85260,0,South America +2024-02-17,65301,5074,"[""Keyboard""]",932.01,"{""seasonal"": ""5%""}",32562,1,Asia +2024-10-10,65302,2572,"[""Keyboard"", ""Phone"", ""Charger""]",3680.21,{},210199,0,Asia +2024-10-09,65303,2412,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",897.17,"{""loyalty"": ""6%""}",90067,1,Asia +2023-12-06,65304,4871,"[""Charger"", ""Tablet""]",1090.42,"{""promo"": ""23%""}",173717,0,Africa +2024-08-22,65305,6744,"[""Keyboard"", ""Laptop""]",2620.7,"{""seasonal"": ""21%""}",190258,1,Africa +2023-04-17,65306,5923,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2761.15,"{""promo"": ""26%""}",140762,1,North America +2024-03-04,65307,778,"[""Monitor"", ""Keyboard""]",2766.44,{},195528,1,North America +2023-08-09,65308,556,"[""Keyboard"", ""Monitor""]",984.49,"{"""": ""21%""}",160026,1,North America +2023-11-21,65309,5170,"[""Charger"", ""Laptop"", ""Keyboard""]",4176.61,"{"""": ""8%""}",52310,1,Asia +2024-01-17,65310,8197,"[""Wireless Mouse"", ""Laptop""]",1750.46,"{""loyalty"": ""26%""}",139544,1,North America +2024-10-29,65311,2451,"[""Keyboard"", ""Laptop""]",1510.39,"{""loyalty"": ""8%""}",238616,1,Asia +2024-04-17,65312,3186,"[""Wireless Mouse""]",943.25,"{""loyalty"": ""18%""}",208239,1,Asia +2023-06-28,65313,7767,"[""Charger""]",1342.77,{},281308,0,North America +2023-01-28,65314,1020,"[""Keyboard""]",2382.63,{},111095,1,Africa +2023-05-01,65315,9423,"[""Monitor""]",3148.0,"{""loyalty"": ""26%""}",256625,0,North America +2023-08-31,65316,7097,"[""Charger"", ""Wireless Mouse""]",1404.85,{},2909,0,South America +2024-12-27,65317,3672,"[""Keyboard""]",623.26,{},232939,0,Africa +2024-03-21,65318,5668,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",594.33,"{"""": ""26%""}",81732,0,Africa +2024-04-23,65319,9588,"[""Monitor""]",4966.31,{},280609,0,Europe +2024-06-24,65320,4799,"[""Laptop""]",2610.81,{},175847,1,Europe +2023-10-09,65321,8994,"[""Keyboard""]",832.97,"{""loyalty"": ""24%""}",51624,0,Europe +2024-07-06,65322,5866,"[""Wireless Mouse"", ""Laptop""]",3620.05,{},289378,1,Asia +2024-01-01,65323,5165,"[""Tablet"", ""Wireless Mouse""]",2270.53,{},43732,1,Europe +2024-09-03,65324,8117,"[""Laptop"", ""Monitor""]",2574.66,"{""loyalty"": ""23%""}",97088,1,Asia +2023-10-06,65325,7127,"[""Tablet""]",533.07,"{""loyalty"": ""20%""}",122353,0,South America +2024-04-15,65326,5600,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2601.91,{},15874,1,Europe +2023-05-13,65327,5440,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1799.66,"{""loyalty"": ""25%""}",32388,0,Africa +2024-04-26,65328,6411,"[""Keyboard"", ""Wireless Mouse""]",1707.76,{},213141,0,South America +2023-01-24,65329,8918,"[""Headphones"", ""Monitor""]",2872.4,{},137321,0,Africa +2024-09-16,65330,1073,"[""Laptop"", ""Headphones""]",192.08,"{"""": ""30%""}",252840,0,Africa +2024-08-04,65331,5083,"[""Phone""]",4362.92,{},65867,0,South America +2024-12-05,65332,6112,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",76.96,"{""promo"": ""25%""}",26442,0,North America +2023-08-10,65333,3440,"[""Monitor"", ""Tablet""]",2693.42,"{""seasonal"": ""6%""}",47886,1,Africa +2023-07-21,65334,97,"[""Headphones"", ""Tablet"", ""Charger""]",4746.81,"{""seasonal"": ""24%""}",246295,1,Europe +2023-03-26,65335,5831,"[""Keyboard"", ""Phone"", ""Monitor""]",4405.78,"{""promo"": ""23%""}",87892,0,South America +2024-02-28,65336,6310,"[""Keyboard"", ""Wireless Mouse""]",863.2,{},196747,0,Asia +2024-11-20,65337,4410,"[""Headphones"", ""Monitor""]",1035.96,"{""seasonal"": ""11%""}",263857,1,South America +2024-07-20,65338,2798,"[""Keyboard"", ""Laptop""]",3398.72,"{"""": ""10%""}",174703,1,Africa +2024-12-11,65339,237,"[""Laptop"", ""Charger""]",1524.32,"{""seasonal"": ""29%""}",231942,0,Africa +2023-09-04,65340,4025,"[""Monitor"", ""Headphones"", ""Phone""]",684.96,{},277886,1,North America +2023-08-03,65341,4392,"[""Monitor""]",3657.01,"{"""": ""5%""}",184819,0,Asia +2023-12-18,65342,969,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",811.92,{},54018,0,Europe +2023-02-28,65343,6701,"[""Headphones"", ""Tablet"", ""Laptop""]",4126.71,"{""seasonal"": ""5%""}",226341,0,South America +2024-01-22,65344,3498,"[""Tablet"", ""Laptop"", ""Monitor""]",4602.91,{},133713,1,Europe +2023-01-04,65345,3016,"[""Charger""]",2174.55,{},293661,0,South America +2024-02-15,65346,5750,"[""Laptop""]",1755.52,{},238852,1,Europe +2024-04-05,65347,7793,"[""Keyboard"", ""Tablet"", ""Headphones""]",2224.12,{},184022,0,North America +2023-02-15,65348,7920,"[""Headphones""]",1946.87,{},168912,1,South America +2023-11-16,65349,1561,"[""Keyboard"", ""Tablet"", ""Headphones""]",1302.85,"{""promo"": ""15%""}",148615,0,North America +2023-10-25,65350,4470,"[""Charger"", ""Wireless Mouse""]",4142.56,"{""loyalty"": ""28%""}",171575,0,Africa +2024-04-22,65351,7541,"[""Monitor"", ""Charger""]",733.75,{},111485,0,Asia +2023-09-20,65352,2484,"[""Tablet"", ""Keyboard""]",2268.82,{},139603,1,South America +2023-01-01,65353,8159,"[""Monitor"", ""Phone""]",4521.28,"{""loyalty"": ""25%""}",113750,1,Africa +2024-01-26,65354,8808,"[""Charger""]",1815.06,{},48330,1,Africa +2023-09-09,65355,9265,"[""Laptop"", ""Tablet"", ""Headphones""]",2872.06,"{""loyalty"": ""27%""}",64894,1,Africa +2023-05-09,65356,7081,"[""Laptop"", ""Headphones""]",4747.03,{},177285,1,Africa +2023-04-16,65357,3141,"[""Charger"", ""Tablet""]",3224.1,{},15046,1,Europe +2024-06-22,65358,6505,"[""Phone""]",3790.82,{},18439,1,Europe +2024-08-22,65359,9389,"[""Monitor"", ""Headphones"", ""Charger""]",2056.6,"{""promo"": ""11%""}",65365,1,Asia +2023-12-10,65360,3975,"[""Monitor""]",3978.83,"{""seasonal"": ""10%""}",91418,1,Africa +2023-05-04,65361,3002,"[""Headphones""]",428.95,{},15757,1,Europe +2024-05-07,65362,3467,"[""Laptop""]",4969.35,{},6622,0,South America +2024-09-20,65363,778,"[""Laptop"", ""Charger""]",2136.94,"{"""": ""23%""}",287329,0,Asia +2023-09-11,65364,9046,"[""Headphones"", ""Phone""]",4680.05,{},88228,1,Europe +2023-10-10,65365,4921,"[""Keyboard"", ""Tablet""]",4252.95,{},214307,0,North America +2023-11-22,65366,9226,"[""Charger""]",3308.23,{},176364,0,Africa +2024-02-19,65367,7326,"[""Charger"", ""Tablet""]",2233.28,{},214798,0,Africa +2024-09-27,65368,1621,"[""Charger""]",1932.64,{},56400,0,North America +2023-10-14,65369,8433,"[""Headphones"", ""Charger"", ""Keyboard""]",3063.84,"{"""": ""11%""}",216455,1,Europe +2023-06-17,65370,9113,"[""Phone"", ""Wireless Mouse""]",753.07,{},269485,0,North America +2023-07-23,65371,4675,"[""Tablet""]",946.91,"{"""": ""12%""}",154496,1,South America +2024-03-19,65372,6859,"[""Phone"", ""Charger""]",1887.01,"{"""": ""19%""}",217203,1,Africa +2023-09-25,65373,8076,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",924.0,{},211525,1,South America +2024-03-25,65374,7251,"[""Tablet""]",438.44,"{"""": ""12%""}",164859,1,Europe +2023-08-31,65375,2236,"[""Phone"", ""Monitor""]",236.87,"{""seasonal"": ""12%""}",280482,1,South America +2024-03-08,65376,5000,"[""Phone""]",1233.01,{},91411,0,North America +2023-03-14,65377,1916,"[""Phone"", ""Keyboard"", ""Charger""]",1302.12,"{"""": ""24%""}",87380,0,Europe +2023-03-27,65378,7417,"[""Headphones""]",4032.92,{},145098,1,Europe +2023-10-05,65379,4634,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1168.0,{},34966,1,Asia +2023-12-11,65380,8337,"[""Tablet""]",2972.44,{},156122,1,South America +2024-07-07,65381,6521,"[""Tablet""]",1875.18,{},216199,1,South America +2024-08-19,65382,9482,"[""Charger""]",293.31,"{""promo"": ""9%""}",4830,0,Europe +2023-01-23,65383,1619,"[""Headphones"", ""Monitor"", ""Keyboard""]",1804.37,"{""promo"": ""26%""}",239907,1,Europe +2024-11-18,65384,694,"[""Headphones"", ""Phone""]",4014.95,"{""seasonal"": ""30%""}",249602,1,North America +2023-05-25,65385,3097,"[""Wireless Mouse""]",2590.58,{},87080,0,North America +2023-09-05,65386,9758,"[""Headphones""]",2065.14,{},33543,0,Asia +2024-05-04,65387,1016,"[""Charger"", ""Keyboard"", ""Headphones""]",3831.01,{},73551,1,Asia +2024-03-02,65388,6414,"[""Tablet"", ""Headphones""]",737.85,{},257669,0,Africa +2023-08-15,65389,3383,"[""Monitor"", ""Headphones"", ""Tablet""]",2208.67,"{""loyalty"": ""15%""}",160342,0,South America +2023-10-25,65390,7692,"[""Headphones""]",3749.94,{},117973,1,North America +2023-04-04,65391,8646,"[""Tablet"", ""Charger""]",272.9,{},241982,1,North America +2023-03-23,65392,351,"[""Keyboard""]",1260.27,"{""seasonal"": ""15%""}",78937,1,Africa +2024-08-26,65393,380,"[""Headphones""]",2156.29,"{""seasonal"": ""11%""}",99896,1,Europe +2023-01-04,65394,8198,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4541.66,{},237230,1,Europe +2024-03-15,65395,904,"[""Charger"", ""Tablet"", ""Headphones""]",3759.39,"{""seasonal"": ""27%""}",2531,0,Europe +2023-01-01,65396,1779,"[""Monitor"", ""Headphones""]",1446.3,"{""seasonal"": ""30%""}",160816,0,South America +2024-12-07,65397,3651,"[""Laptop"", ""Tablet"", ""Headphones""]",1976.77,"{""promo"": ""18%""}",58407,1,South America +2024-05-04,65398,4388,"[""Tablet"", ""Headphones""]",4584.71,"{"""": ""26%""}",215884,1,Africa +2023-06-27,65399,756,"[""Tablet""]",4573.26,"{""promo"": ""13%""}",218168,1,Europe +2023-04-26,65400,3945,"[""Keyboard""]",3603.24,{},153406,0,Asia +2024-08-05,65401,253,"[""Monitor"", ""Phone""]",3777.32,"{"""": ""5%""}",176083,0,Europe +2023-02-18,65402,4011,"[""Headphones"", ""Monitor"", ""Tablet""]",3896.14,"{""promo"": ""22%""}",216880,1,Europe +2024-07-03,65403,3762,"[""Laptop""]",1204.6,"{""promo"": ""10%""}",28090,0,North America +2023-05-12,65404,3127,"[""Phone"", ""Headphones"", ""Keyboard""]",1704.77,{},155640,0,North America +2023-01-01,65405,2651,"[""Tablet"", ""Keyboard""]",1030.47,"{""promo"": ""12%""}",149646,0,Africa +2023-12-18,65406,7149,"[""Charger"", ""Headphones"", ""Monitor""]",3890.6,"{""loyalty"": ""8%""}",282729,1,North America +2023-02-07,65407,939,"[""Charger""]",3391.81,{},153191,1,Asia +2024-08-28,65408,3046,"[""Keyboard"", ""Phone"", ""Monitor""]",3019.09,{},176318,1,Asia +2024-06-20,65409,8205,"[""Charger"", ""Keyboard"", ""Tablet""]",2236.35,"{"""": ""5%""}",216927,1,South America +2023-06-27,65410,6487,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4109.21,{},128681,0,South America +2024-05-16,65411,2716,"[""Tablet""]",3510.17,"{"""": ""20%""}",204211,1,Europe +2024-12-18,65412,5038,"[""Monitor"", ""Phone""]",3679.71,"{"""": ""7%""}",66113,1,South America +2023-03-24,65413,805,"[""Wireless Mouse""]",218.46,{},137363,1,North America +2023-07-29,65414,1578,"[""Laptop"", ""Monitor""]",3890.01,{},209824,1,South America +2024-09-26,65415,6890,"[""Tablet"", ""Phone""]",2019.98,"{"""": ""16%""}",184798,1,Europe +2024-11-12,65416,5606,"[""Laptop"", ""Charger""]",1401.87,{},118543,0,South America +2023-10-02,65417,81,"[""Keyboard""]",3483.74,{},60376,1,South America +2023-12-09,65418,719,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",163.46,"{""loyalty"": ""24%""}",244176,0,Europe +2023-03-17,65419,665,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2963.34,{},28260,1,Africa +2024-11-23,65420,3952,"[""Phone""]",4023.39,{},79264,1,Europe +2024-02-24,65421,2729,"[""Tablet"", ""Monitor""]",3741.98,{},196726,1,Africa +2024-02-16,65422,612,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3119.87,{},67557,1,Asia +2023-09-21,65423,5345,"[""Wireless Mouse"", ""Headphones""]",4921.58,"{""promo"": ""19%""}",64023,1,Africa +2024-12-30,65424,6015,"[""Tablet"", ""Monitor"", ""Keyboard""]",2201.22,{},234725,0,Asia +2023-04-14,65425,1547,"[""Headphones"", ""Charger""]",3193.83,{},20477,0,Africa +2023-12-27,65426,6435,"[""Tablet"", ""Wireless Mouse""]",3746.58,"{"""": ""30%""}",262195,0,Asia +2024-11-18,65427,9042,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1231.82,"{""seasonal"": ""13%""}",22408,0,South America +2023-06-14,65428,5995,"[""Headphones""]",4953.05,"{""loyalty"": ""14%""}",290594,0,North America +2024-08-01,65429,2365,"[""Tablet"", ""Laptop""]",1808.06,{},175477,1,Africa +2024-05-11,65430,5005,"[""Wireless Mouse"", ""Monitor""]",1567.28,"{"""": ""16%""}",268265,1,Europe +2023-07-07,65431,4381,"[""Keyboard"", ""Charger""]",2670.0,{},86562,0,Asia +2023-09-10,65432,319,"[""Keyboard""]",4050.05,"{""loyalty"": ""20%""}",137822,0,South America +2024-10-29,65433,5000,"[""Headphones"", ""Monitor""]",1968.14,{},31423,0,South America +2024-04-02,65434,6363,"[""Laptop"", ""Charger"", ""Keyboard""]",3118.0,{},218256,0,South America +2024-06-03,65435,5784,"[""Tablet"", ""Laptop"", ""Keyboard""]",2451.36,{},295761,1,North America +2024-09-01,65436,3254,"[""Keyboard"", ""Monitor""]",4109.05,"{""loyalty"": ""20%""}",271859,0,Africa +2024-01-08,65437,7765,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",425.4,{},253476,1,Africa +2024-03-14,65438,3443,"[""Keyboard"", ""Laptop""]",4358.72,"{""promo"": ""27%""}",79943,0,North America +2024-09-22,65439,3997,"[""Monitor""]",4124.11,{},64471,0,North America +2023-12-06,65440,3748,"[""Tablet"", ""Headphones"", ""Monitor""]",3589.33,{},189866,1,Africa +2023-04-26,65441,4728,"[""Keyboard""]",960.95,{},179517,1,Africa +2023-01-16,65442,3261,"[""Charger""]",2356.85,"{""loyalty"": ""18%""}",212038,0,Africa +2024-02-12,65443,8404,"[""Phone""]",2309.07,{},287247,1,Africa +2023-06-08,65444,2280,"[""Wireless Mouse"", ""Keyboard""]",866.24,{},78042,1,North America +2024-04-15,65445,9366,"[""Tablet"", ""Monitor""]",1114.66,{},74188,0,Europe +2024-02-09,65446,1645,"[""Headphones""]",4672.84,{},156685,0,Europe +2023-07-22,65447,6681,"[""Monitor""]",3882.1,{},119464,1,South America +2023-03-18,65448,112,"[""Tablet"", ""Monitor"", ""Phone""]",652.72,"{""promo"": ""28%""}",46954,0,Asia +2024-10-16,65449,5978,"[""Wireless Mouse""]",1138.09,"{""loyalty"": ""27%""}",237949,0,South America +2024-12-21,65450,1704,"[""Monitor""]",3217.19,{},249343,1,Asia +2024-07-09,65451,6944,"[""Monitor""]",3765.32,{},268776,0,North America +2024-11-06,65452,2167,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2129.26,"{""loyalty"": ""28%""}",270120,1,Africa +2023-06-06,65453,2624,"[""Monitor"", ""Tablet"", ""Headphones""]",779.99,{},100286,1,Europe +2023-04-04,65454,4288,"[""Monitor"", ""Headphones""]",4080.82,"{""loyalty"": ""21%""}",123207,0,North America +2023-11-19,65455,7808,"[""Tablet"", ""Headphones""]",997.11,"{""loyalty"": ""18%""}",129313,0,Africa +2024-10-16,65456,6992,"[""Keyboard"", ""Wireless Mouse""]",1707.22,{},183705,1,North America +2023-01-05,65457,4577,"[""Phone"", ""Headphones""]",934.45,"{""loyalty"": ""9%""}",141405,0,North America +2024-11-03,65458,6762,"[""Keyboard""]",2453.77,"{""loyalty"": ""6%""}",242984,0,Africa +2023-04-01,65459,4995,"[""Monitor""]",4053.61,"{""promo"": ""24%""}",117171,0,South America +2024-01-02,65460,5456,"[""Monitor"", ""Headphones""]",4362.0,{},169520,0,Africa +2024-07-07,65461,748,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2854.19,"{"""": ""10%""}",37837,0,North America +2023-11-25,65462,3942,"[""Wireless Mouse"", ""Monitor""]",3650.39,"{""loyalty"": ""15%""}",290092,0,Europe +2023-05-30,65463,4270,"[""Headphones""]",1913.25,{},128182,1,Asia +2023-05-18,65464,261,"[""Keyboard""]",1557.47,{},199411,0,Europe +2023-10-02,65465,9584,"[""Phone"", ""Charger"", ""Keyboard""]",3980.85,"{""promo"": ""18%""}",137633,1,Africa +2023-04-12,65466,8122,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1053.34,"{""seasonal"": ""25%""}",238583,0,South America +2023-09-02,65467,4009,"[""Wireless Mouse"", ""Laptop""]",948.0,{},17416,1,Asia +2024-08-24,65468,5713,"[""Keyboard"", ""Phone""]",4814.89,"{""promo"": ""30%""}",164952,0,Asia +2023-06-06,65469,9279,"[""Charger"", ""Laptop"", ""Tablet""]",1470.63,"{""loyalty"": ""27%""}",99491,1,North America +2024-10-09,65470,9806,"[""Headphones"", ""Keyboard"", ""Phone""]",631.78,"{""loyalty"": ""21%""}",249213,1,Asia +2023-07-12,65471,1280,"[""Laptop"", ""Headphones"", ""Keyboard""]",3364.17,{},121930,0,South America +2024-12-22,65472,33,"[""Monitor"", ""Charger"", ""Headphones""]",179.48,{},127247,0,South America +2023-12-09,65473,1484,"[""Headphones"", ""Keyboard"", ""Laptop""]",938.71,"{""loyalty"": ""11%""}",52836,0,South America +2024-12-31,65474,5683,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4406.43,{},31594,1,North America +2023-05-08,65475,9231,"[""Charger""]",2674.62,"{""seasonal"": ""7%""}",139186,0,Africa +2024-07-05,65476,9141,"[""Keyboard""]",280.37,"{"""": ""30%""}",124735,0,Europe +2024-07-16,65477,2256,"[""Headphones"", ""Tablet""]",3752.95,{},131283,0,South America +2024-10-23,65478,2568,"[""Keyboard""]",2985.66,"{""seasonal"": ""7%""}",77425,1,North America +2023-01-04,65479,9679,"[""Monitor""]",250.03,{},54118,1,South America +2023-10-11,65480,6241,"[""Phone"", ""Tablet"", ""Charger""]",2408.11,{},28370,0,Africa +2023-10-19,65481,8814,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1987.95,{},272868,0,Asia +2023-03-31,65482,6024,"[""Phone"", ""Laptop"", ""Charger""]",2594.35,"{""loyalty"": ""22%""}",149124,0,Asia +2024-08-15,65483,4471,"[""Phone"", ""Laptop""]",3329.0,{},37900,0,Asia +2023-07-25,65484,367,"[""Tablet"", ""Keyboard"", ""Charger""]",4623.53,"{""seasonal"": ""7%""}",169877,0,North America +2023-08-01,65485,5601,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2607.11,{},126151,1,Africa +2024-01-22,65486,3544,"[""Laptop""]",736.59,{},3570,1,North America +2024-01-17,65487,3213,"[""Monitor"", ""Phone"", ""Tablet""]",3683.25,{},135542,1,Europe +2024-09-26,65488,1668,"[""Charger"", ""Headphones"", ""Keyboard""]",629.2,{},249840,0,Africa +2023-07-21,65489,9576,"[""Headphones""]",4331.03,"{""loyalty"": ""25%""}",52271,0,North America +2024-12-06,65490,5935,"[""Tablet"", ""Phone"", ""Laptop""]",211.26,{},68488,1,Europe +2023-01-21,65491,8415,"[""Phone""]",247.54,"{""loyalty"": ""21%""}",94405,1,South America +2024-06-19,65492,2994,"[""Keyboard""]",2080.56,{},274737,0,Europe +2024-05-04,65493,5441,"[""Laptop"", ""Keyboard"", ""Monitor""]",4913.4,"{""promo"": ""26%""}",145357,1,South America +2024-06-30,65494,300,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1910.73,{},276595,0,Europe +2024-04-06,65495,6644,"[""Charger"", ""Wireless Mouse""]",1712.35,{},193050,0,Asia +2023-08-31,65496,4741,"[""Laptop""]",3351.74,"{""promo"": ""29%""}",12105,0,Asia +2024-04-05,65497,4094,"[""Laptop"", ""Charger""]",1750.27,{},64507,0,Africa +2023-08-13,65498,9246,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",260.35,"{""loyalty"": ""27%""}",242369,0,Europe +2023-09-10,65499,1063,"[""Laptop""]",722.86,"{""seasonal"": ""30%""}",228160,1,South America +2024-04-17,65500,2660,"[""Monitor""]",4118.51,{},284228,1,North America +2023-11-28,65501,2626,"[""Laptop"", ""Charger"", ""Monitor""]",4216.65,"{"""": ""6%""}",228449,1,Asia +2024-02-06,65502,2794,"[""Phone""]",1340.34,{},294112,1,Africa +2023-06-18,65503,2754,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4520.58,"{""seasonal"": ""22%""}",184206,0,Asia +2024-05-22,65504,7832,"[""Tablet""]",2973.0,{},30911,1,Asia +2023-01-06,65505,2308,"[""Monitor""]",4718.49,"{"""": ""15%""}",242657,1,Europe +2024-10-07,65506,2164,"[""Tablet"", ""Monitor""]",1936.48,"{""loyalty"": ""27%""}",32174,1,Europe +2023-07-03,65507,6992,"[""Laptop"", ""Monitor""]",1741.11,{},51369,0,South America +2023-11-11,65508,2453,"[""Charger"", ""Phone""]",4036.79,{},129474,1,Europe +2024-07-06,65509,8591,"[""Headphones"", ""Wireless Mouse""]",4848.93,"{""promo"": ""26%""}",276120,1,Asia +2024-02-10,65510,2662,"[""Laptop"", ""Headphones""]",3788.17,"{""promo"": ""12%""}",173991,0,North America +2024-08-13,65511,3671,"[""Monitor"", ""Tablet"", ""Headphones""]",4674.08,"{""loyalty"": ""5%""}",205503,1,Europe +2024-10-01,65512,7222,"[""Monitor"", ""Charger""]",4001.73,"{""seasonal"": ""11%""}",255449,0,South America +2023-04-23,65513,3153,"[""Charger""]",142.28,"{""loyalty"": ""19%""}",99143,0,Africa +2024-05-23,65514,2054,"[""Phone""]",2082.55,{},24364,0,North America +2023-09-29,65515,3920,"[""Wireless Mouse""]",220.93,{},235212,0,North America +2023-06-16,65516,5063,"[""Keyboard"", ""Charger""]",1120.53,{},200667,1,Africa +2024-12-14,65517,4370,"[""Wireless Mouse"", ""Phone""]",2651.87,"{""loyalty"": ""17%""}",28844,1,Europe +2023-07-26,65518,1273,"[""Phone"", ""Headphones""]",782.65,"{"""": ""21%""}",272762,1,North America +2023-06-05,65519,8493,"[""Keyboard""]",1463.95,{},189075,0,South America +2024-01-27,65520,2433,"[""Tablet"", ""Phone""]",4128.19,{},33028,1,Africa +2024-05-29,65521,6762,"[""Phone""]",2896.5,{},288056,0,Europe +2024-02-17,65522,6823,"[""Tablet"", ""Phone"", ""Charger""]",1186.57,"{"""": ""14%""}",87453,1,Europe +2023-05-30,65523,4286,"[""Phone""]",3642.82,"{"""": ""15%""}",245302,1,Africa +2024-08-23,65524,8471,"[""Headphones"", ""Tablet""]",3894.22,"{""promo"": ""21%""}",109907,0,Asia +2023-12-25,65525,1800,"[""Monitor"", ""Keyboard"", ""Headphones""]",2109.42,{},24267,0,North America +2024-10-15,65526,2250,"[""Monitor""]",2752.37,"{""promo"": ""8%""}",49419,0,North America +2023-02-22,65527,4302,"[""Tablet""]",3308.62,"{""seasonal"": ""17%""}",8990,1,South America +2024-11-26,65528,3613,"[""Headphones""]",1142.72,"{""promo"": ""28%""}",149733,0,Europe +2023-08-20,65529,264,"[""Headphones"", ""Phone""]",2394.62,{},22583,0,Europe +2024-05-13,65530,4644,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3252.01,"{""seasonal"": ""23%""}",207120,0,South America +2024-11-24,65531,2192,"[""Tablet"", ""Headphones""]",2112.3,{},243460,1,North America +2023-05-08,65532,3002,"[""Keyboard""]",1677.41,"{"""": ""28%""}",286458,1,South America +2024-03-04,65533,2367,"[""Phone"", ""Charger""]",2556.4,"{""promo"": ""16%""}",144333,1,South America +2024-09-27,65534,8878,"[""Phone"", ""Laptop"", ""Monitor""]",4563.24,"{""seasonal"": ""20%""}",230007,1,Europe +2023-10-11,65535,2963,"[""Headphones""]",1875.06,"{"""": ""30%""}",178621,1,Europe +2024-02-29,65536,5883,"[""Headphones"", ""Tablet""]",1242.44,"{"""": ""23%""}",100421,0,North America +2023-10-29,65537,179,"[""Phone"", ""Wireless Mouse""]",2571.35,"{""promo"": ""9%""}",173609,1,South America +2024-07-03,65538,3119,"[""Tablet"", ""Monitor"", ""Phone""]",417.74,"{""loyalty"": ""18%""}",62275,1,North America +2024-06-11,65539,5452,"[""Laptop""]",885.82,{},253419,0,Europe +2023-03-12,65540,2602,"[""Tablet"", ""Phone""]",3425.65,{},212325,0,Europe +2023-01-05,65541,185,"[""Headphones"", ""Keyboard"", ""Monitor""]",2972.55,"{""seasonal"": ""7%""}",53716,0,North America +2023-06-05,65542,1675,"[""Headphones""]",4550.5,{},209520,1,Europe +2023-06-27,65543,5967,"[""Phone""]",2202.56,{},111254,0,South America +2023-08-14,65544,9410,"[""Phone""]",520.2,"{""loyalty"": ""15%""}",166703,0,Asia +2024-04-27,65545,3060,"[""Headphones"", ""Phone"", ""Laptop""]",747.24,"{""seasonal"": ""10%""}",285765,1,South America +2023-08-04,65546,9305,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3452.2,{},191589,0,North America +2024-03-17,65547,376,"[""Headphones"", ""Monitor"", ""Laptop""]",2046.84,{},3329,0,South America +2024-07-02,65548,5056,"[""Monitor"", ""Keyboard""]",3100.13,{},171328,0,South America +2023-03-09,65549,9109,"[""Headphones"", ""Laptop""]",4477.29,"{""seasonal"": ""14%""}",233124,0,Asia +2024-05-01,65550,6990,"[""Tablet""]",3576.12,"{"""": ""24%""}",201708,1,Europe +2024-09-01,65551,1885,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2835.81,"{""seasonal"": ""17%""}",232022,0,South America +2024-11-24,65552,7487,"[""Laptop""]",1270.34,"{""seasonal"": ""16%""}",25743,1,South America +2024-02-08,65553,3936,"[""Headphones"", ""Charger""]",2173.46,"{""loyalty"": ""17%""}",204928,0,Africa +2024-05-05,65554,9630,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1811.15,{},107472,0,Africa +2023-04-23,65555,5482,"[""Phone"", ""Charger"", ""Laptop""]",3421.46,"{""promo"": ""16%""}",133358,1,Africa +2024-12-20,65556,8293,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1280.45,"{""loyalty"": ""29%""}",13402,0,Asia +2024-03-16,65557,2808,"[""Monitor"", ""Headphones"", ""Charger""]",276.75,{},10179,1,Africa +2024-12-26,65558,9012,"[""Headphones""]",3423.22,{},265607,0,Asia +2024-01-04,65559,1141,"[""Laptop"", ""Headphones"", ""Phone""]",766.19,"{""seasonal"": ""20%""}",10124,0,South America +2024-07-18,65560,7897,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3188.29,{},210648,1,South America +2024-09-16,65561,778,"[""Charger"", ""Phone""]",3315.34,"{"""": ""11%""}",48674,0,Europe +2023-11-26,65562,4495,"[""Keyboard""]",3312.79,{},13789,1,Asia +2023-10-13,65563,7048,"[""Tablet"", ""Laptop""]",4258.79,"{""seasonal"": ""15%""}",104684,1,Asia +2023-10-03,65564,2218,"[""Phone""]",171.76,"{""seasonal"": ""23%""}",86125,0,Africa +2024-12-31,65565,9821,"[""Headphones"", ""Laptop"", ""Monitor""]",3548.17,"{""loyalty"": ""12%""}",10730,1,Asia +2023-05-03,65566,1084,"[""Tablet"", ""Charger"", ""Phone""]",4557.43,"{""promo"": ""23%""}",191236,0,North America +2024-03-14,65567,2628,"[""Headphones"", ""Charger"", ""Keyboard""]",4883.36,"{""loyalty"": ""7%""}",294139,0,South America +2023-03-15,65568,8056,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1908.62,{},207970,1,North America +2023-06-28,65569,9828,"[""Monitor"", ""Laptop""]",1549.82,"{"""": ""13%""}",34050,1,Africa +2023-04-19,65570,4472,"[""Phone""]",83.39,"{""loyalty"": ""7%""}",88692,1,Asia +2023-10-17,65571,6033,"[""Monitor"", ""Headphones"", ""Tablet""]",4807.93,{},94807,1,North America +2023-12-08,65572,499,"[""Monitor"", ""Tablet"", ""Keyboard""]",3881.5,{},57265,1,Europe +2023-01-24,65573,92,"[""Monitor"", ""Headphones""]",3072.64,{},136225,1,Asia +2023-01-10,65574,4422,"[""Wireless Mouse""]",164.6,"{""promo"": ""13%""}",56000,0,North America +2024-08-11,65575,2253,"[""Tablet"", ""Monitor""]",3987.26,{},142014,1,Africa +2023-02-14,65576,9495,"[""Keyboard"", ""Laptop"", ""Headphones""]",2722.32,"{""loyalty"": ""19%""}",212704,0,Asia +2023-02-28,65577,1963,"[""Keyboard"", ""Phone""]",1413.49,"{"""": ""27%""}",26733,0,Africa +2023-12-02,65578,1732,"[""Headphones""]",712.94,{},223911,1,Africa +2023-01-19,65579,1086,"[""Laptop"", ""Monitor"", ""Tablet""]",4575.38,"{""promo"": ""24%""}",120124,1,North America +2024-02-18,65580,5400,"[""Tablet"", ""Phone""]",3182.36,{},38535,0,North America +2024-06-05,65581,4637,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3297.2,"{""loyalty"": ""18%""}",117899,1,Asia +2023-08-15,65582,3111,"[""Headphones""]",4103.28,{},24441,1,Europe +2024-09-09,65583,9712,"[""Wireless Mouse""]",1133.9,"{""loyalty"": ""26%""}",235689,0,Asia +2023-02-25,65584,7022,"[""Phone"", ""Laptop"", ""Monitor""]",2596.08,{},61692,0,South America +2024-12-26,65585,8039,"[""Keyboard"", ""Laptop""]",4167.81,"{""promo"": ""7%""}",250436,0,Africa +2023-04-07,65586,652,"[""Keyboard"", ""Wireless Mouse""]",349.59,{},231201,1,South America +2024-10-19,65587,5740,"[""Tablet""]",4699.1,{},37185,0,North America +2023-11-25,65588,1167,"[""Tablet"", ""Monitor""]",3218.46,"{""promo"": ""19%""}",116485,1,Asia +2024-03-16,65589,9034,"[""Headphones"", ""Laptop""]",256.81,"{""promo"": ""27%""}",218969,1,Europe +2023-02-10,65590,3180,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2528.31,{},230807,1,Europe +2023-09-09,65591,9087,"[""Monitor"", ""Keyboard""]",2073.59,{},275522,0,Asia +2023-08-05,65592,4803,"[""Wireless Mouse"", ""Keyboard""]",1772.57,"{""loyalty"": ""27%""}",82261,0,Asia +2023-11-26,65593,9150,"[""Charger"", ""Keyboard"", ""Monitor""]",3332.67,"{"""": ""26%""}",280370,0,South America +2024-01-14,65594,9643,"[""Headphones""]",3075.65,{},65312,1,Africa +2024-10-23,65595,8483,"[""Headphones""]",1155.11,"{""loyalty"": ""7%""}",273941,1,Asia +2024-12-28,65596,6155,"[""Charger""]",2476.54,"{""seasonal"": ""27%""}",223529,0,South America +2024-02-12,65597,8078,"[""Keyboard""]",3707.46,{},120118,1,Europe +2023-08-06,65598,8894,"[""Headphones"", ""Keyboard"", ""Phone""]",3925.72,"{""seasonal"": ""26%""}",206180,1,North America +2024-07-14,65599,3795,"[""Monitor"", ""Phone""]",2112.09,{},191819,0,Europe +2024-06-09,65600,2064,"[""Phone"", ""Headphones"", ""Charger""]",4524.84,"{""seasonal"": ""30%""}",192650,0,Asia +2024-02-01,65601,4843,"[""Keyboard"", ""Phone"", ""Headphones""]",3539.52,"{""seasonal"": ""25%""}",221082,0,North America +2024-12-28,65602,6544,"[""Tablet"", ""Phone"", ""Laptop""]",1466.54,{},106476,1,Africa +2024-05-03,65603,8098,"[""Phone"", ""Charger"", ""Headphones""]",1710.47,{},284218,1,Africa +2024-10-09,65604,9350,"[""Phone"", ""Tablet"", ""Laptop""]",2734.09,{},190900,1,Europe +2023-12-25,65605,3005,"[""Phone"", ""Headphones"", ""Monitor""]",50.49,"{""loyalty"": ""29%""}",178353,1,Europe +2023-05-03,65606,7970,"[""Tablet""]",264.58,"{""seasonal"": ""14%""}",255752,1,Asia +2023-09-25,65607,640,"[""Charger"", ""Laptop""]",2004.69,{},93440,0,Africa +2023-10-25,65608,479,"[""Monitor""]",1102.63,{},280817,1,South America +2023-06-02,65609,1126,"[""Monitor""]",2902.23,{},36700,1,Asia +2024-09-15,65610,4060,"[""Keyboard"", ""Phone""]",755.79,"{"""": ""29%""}",30426,1,Europe +2023-08-24,65611,8315,"[""Wireless Mouse""]",3272.15,"{"""": ""6%""}",293746,1,Asia +2023-04-03,65612,410,"[""Keyboard"", ""Laptop"", ""Tablet""]",1290.81,"{""loyalty"": ""14%""}",279015,1,Africa +2023-02-19,65613,8641,"[""Monitor""]",2594.81,"{""promo"": ""28%""}",169135,0,Europe +2024-10-16,65614,6553,"[""Phone"", ""Monitor""]",1803.09,"{""loyalty"": ""8%""}",76957,0,Asia +2023-11-03,65615,8792,"[""Keyboard"", ""Charger"", ""Laptop""]",4796.37,{},192934,1,Asia +2023-05-19,65616,5829,"[""Headphones""]",716.44,{},141996,1,South America +2024-09-17,65617,555,"[""Laptop""]",2107.86,{},231089,1,Europe +2024-04-02,65618,258,"[""Keyboard"", ""Headphones"", ""Laptop""]",512.65,{},214969,0,North America +2023-01-28,65619,1994,"[""Wireless Mouse""]",130.83,"{""promo"": ""14%""}",235503,1,Asia +2024-11-21,65620,672,"[""Tablet"", ""Charger""]",2160.34,"{""loyalty"": ""23%""}",114196,1,Asia +2024-03-16,65621,4084,"[""Phone"", ""Keyboard""]",3562.97,"{""seasonal"": ""21%""}",251578,1,Europe +2023-03-24,65622,517,"[""Monitor"", ""Headphones""]",4819.78,"{"""": ""30%""}",289508,0,Africa +2024-10-16,65623,2102,"[""Charger"", ""Wireless Mouse""]",2291.61,"{"""": ""25%""}",162911,1,Africa +2023-11-17,65624,2903,"[""Tablet""]",4259.81,"{""promo"": ""8%""}",52879,1,Asia +2023-10-05,65625,3732,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4724.67,{},224257,0,Asia +2024-02-27,65626,2330,"[""Laptop""]",1147.5,"{"""": ""23%""}",213181,1,Africa +2024-08-29,65627,5682,"[""Headphones"", ""Monitor"", ""Charger""]",4340.64,"{""promo"": ""6%""}",106030,1,South America +2023-01-25,65628,876,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3558.56,"{""loyalty"": ""20%""}",50420,0,Asia +2024-10-28,65629,7215,"[""Laptop"", ""Keyboard"", ""Monitor""]",1654.13,"{""seasonal"": ""24%""}",197107,1,Africa +2023-12-30,65630,8764,"[""Phone"", ""Laptop""]",2305.96,{},12110,1,Asia +2023-03-06,65631,6665,"[""Wireless Mouse""]",2759.03,{},149872,1,Africa +2023-07-11,65632,1796,"[""Charger""]",1610.92,{},35611,0,South America +2023-07-10,65633,7423,"[""Phone""]",452.32,"{""promo"": ""25%""}",64349,0,Africa +2024-02-15,65634,4783,"[""Charger""]",3863.74,{},44389,0,North America +2023-12-02,65635,8918,"[""Tablet"", ""Monitor"", ""Headphones""]",3879.32,"{""seasonal"": ""6%""}",80275,0,North America +2024-05-12,65636,4161,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",932.94,"{""seasonal"": ""5%""}",24559,0,South America +2024-01-10,65637,1557,"[""Headphones""]",4363.82,"{"""": ""7%""}",30670,0,Europe +2024-09-22,65638,7180,"[""Charger""]",2076.45,"{"""": ""14%""}",165520,0,Asia +2024-06-06,65639,6011,"[""Wireless Mouse"", ""Laptop""]",1615.1,{},209459,0,Europe +2023-07-10,65640,8160,"[""Tablet"", ""Phone""]",2045.86,{},173518,0,Asia +2023-02-02,65641,8205,"[""Monitor"", ""Laptop""]",1317.04,{},43682,0,Africa +2024-01-09,65642,780,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4613.92,"{""seasonal"": ""18%""}",229075,0,Europe +2024-09-28,65643,9787,"[""Keyboard"", ""Monitor""]",3752.54,{},154918,1,Europe +2023-10-12,65644,1815,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4597.53,"{""seasonal"": ""12%""}",43816,0,Europe +2024-01-01,65645,7290,"[""Charger"", ""Keyboard""]",3330.66,{},49283,0,Asia +2024-12-04,65646,1902,"[""Charger""]",1991.57,{},288816,1,Asia +2023-07-08,65647,2664,"[""Phone""]",2039.18,"{""loyalty"": ""23%""}",256648,0,Asia +2024-11-15,65648,6619,"[""Phone""]",925.02,{},110758,0,South America +2024-08-03,65649,7968,"[""Wireless Mouse"", ""Monitor""]",4551.4,"{""promo"": ""12%""}",116679,0,Europe +2024-03-23,65650,7275,"[""Monitor""]",4564.57,"{""promo"": ""28%""}",261033,0,North America +2023-10-19,65651,8767,"[""Charger"", ""Laptop"", ""Tablet""]",3134.93,{},45782,1,Africa +2023-11-24,65652,2166,"[""Monitor""]",843.12,"{""promo"": ""17%""}",10085,1,Asia +2024-07-20,65653,6614,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2273.81,{},11677,0,Asia +2023-12-10,65654,901,"[""Charger"", ""Monitor""]",4541.84,"{""loyalty"": ""10%""}",154171,0,South America +2023-07-21,65655,8214,"[""Tablet""]",4037.02,"{""seasonal"": ""24%""}",167610,0,Asia +2023-01-19,65656,5439,"[""Tablet"", ""Headphones"", ""Monitor""]",1482.68,"{""promo"": ""28%""}",212787,1,Africa +2023-09-18,65657,8884,"[""Keyboard"", ""Headphones"", ""Monitor""]",4655.31,{},104801,1,Asia +2024-12-26,65658,4530,"[""Monitor"", ""Wireless Mouse""]",3106.97,{},128110,0,Europe +2023-12-25,65659,6712,"[""Tablet"", ""Charger""]",2766.72,"{"""": ""16%""}",98032,1,Asia +2024-05-01,65660,7086,"[""Wireless Mouse"", ""Phone""]",1008.39,{},76355,0,Europe +2023-01-11,65661,1861,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4110.42,"{""loyalty"": ""8%""}",282617,1,Asia +2024-01-12,65662,464,"[""Tablet""]",1466.99,"{""seasonal"": ""29%""}",36117,1,Asia +2024-02-01,65663,478,"[""Tablet""]",1021.69,"{"""": ""10%""}",280785,1,North America +2023-08-08,65664,7005,"[""Headphones"", ""Laptop"", ""Phone""]",2930.44,{},153419,1,Asia +2024-04-10,65665,1844,"[""Monitor""]",3094.43,{},166536,1,Africa +2024-12-08,65666,3489,"[""Laptop"", ""Phone""]",676.13,"{""seasonal"": ""28%""}",256061,0,Europe +2024-04-28,65667,7696,"[""Keyboard""]",1295.85,{},292632,0,Europe +2024-04-22,65668,3455,"[""Wireless Mouse"", ""Keyboard""]",735.38,"{""seasonal"": ""17%""}",229931,0,Asia +2024-12-28,65669,2516,"[""Laptop"", ""Keyboard"", ""Phone""]",3790.17,{},102560,0,Europe +2024-03-17,65670,8916,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",563.26,"{""promo"": ""9%""}",21615,1,South America +2023-09-16,65671,8294,"[""Tablet""]",1862.51,"{""seasonal"": ""16%""}",8915,0,Asia +2024-11-07,65672,3249,"[""Keyboard"", ""Wireless Mouse""]",4482.75,{},231988,0,North America +2024-10-10,65673,6297,"[""Laptop"", ""Charger"", ""Tablet""]",578.55,"{""loyalty"": ""17%""}",216498,1,Africa +2024-09-16,65674,7020,"[""Headphones"", ""Phone"", ""Tablet""]",1805.34,{},80268,1,Africa +2023-05-20,65675,5695,"[""Laptop"", ""Headphones"", ""Tablet""]",4653.52,"{""seasonal"": ""8%""}",55826,1,South America +2024-02-06,65676,2640,"[""Keyboard"", ""Phone"", ""Charger""]",2212.45,{},178257,0,North America +2024-03-29,65677,1004,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",638.0,{},286795,0,Africa +2023-03-02,65678,4838,"[""Phone""]",2963.61,"{""seasonal"": ""18%""}",132150,1,Africa +2023-08-27,65679,1779,"[""Charger""]",2444.73,{},93778,1,Europe +2024-05-20,65680,3499,"[""Phone"", ""Keyboard"", ""Headphones""]",3100.78,{},187194,0,Asia +2023-05-07,65681,2007,"[""Phone"", ""Charger""]",4470.85,"{""promo"": ""10%""}",219493,1,Asia +2023-06-06,65682,9045,"[""Keyboard"", ""Headphones""]",1929.11,"{""promo"": ""7%""}",191299,0,Africa +2023-04-10,65683,9803,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4092.55,"{""seasonal"": ""20%""}",127221,1,South America +2024-09-02,65684,1910,"[""Laptop"", ""Tablet""]",1420.35,"{""loyalty"": ""7%""}",102002,1,North America +2023-07-19,65685,7999,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3003.08,{},293708,1,Africa +2024-04-28,65686,5110,"[""Headphones"", ""Laptop""]",3304.04,"{""seasonal"": ""9%""}",237060,1,Asia +2023-03-16,65687,6109,"[""Keyboard"", ""Laptop"", ""Tablet""]",3047.05,"{"""": ""20%""}",15157,1,South America +2023-03-15,65688,3310,"[""Monitor"", ""Laptop""]",3519.07,"{""seasonal"": ""27%""}",29828,1,North America +2024-07-07,65689,4990,"[""Phone"", ""Keyboard""]",1349.71,{},142634,0,North America +2023-05-15,65690,740,"[""Monitor""]",3877.23,{},290748,0,South America +2024-02-23,65691,7153,"[""Laptop""]",301.8,{},224074,0,North America +2023-05-20,65692,7075,"[""Wireless Mouse"", ""Keyboard""]",2788.66,"{"""": ""8%""}",31309,1,Europe +2023-07-19,65693,5490,"[""Phone""]",2220.92,{},277135,1,Asia +2023-02-21,65694,2222,"[""Monitor""]",4895.24,{},73632,1,Europe +2024-10-29,65695,6661,"[""Laptop"", ""Headphones"", ""Keyboard""]",2766.2,{},279177,0,Europe +2024-06-05,65696,5992,"[""Tablet""]",4110.73,"{""loyalty"": ""8%""}",90417,1,Africa +2024-06-21,65697,1547,"[""Laptop""]",353.06,{},175343,1,Asia +2024-06-02,65698,2223,"[""Monitor"", ""Headphones""]",1422.94,"{""loyalty"": ""21%""}",163572,1,North America +2023-05-25,65699,5498,"[""Phone""]",4032.22,{},288308,0,North America +2024-08-18,65700,3857,"[""Phone""]",765.82,{},157324,0,Asia +2024-06-27,65701,8708,"[""Phone""]",631.77,{},209761,1,Europe +2024-05-29,65702,7646,"[""Keyboard""]",95.54,{},170415,1,Asia +2023-06-15,65703,3738,"[""Phone""]",1527.67,{},41114,0,Europe +2024-01-17,65704,6998,"[""Monitor"", ""Keyboard"", ""Laptop""]",4451.14,{},102892,0,North America +2024-03-22,65705,4724,"[""Headphones""]",4702.07,{},102835,1,Africa +2023-11-01,65706,6704,"[""Tablet"", ""Wireless Mouse""]",2425.28,"{""seasonal"": ""13%""}",242501,1,Africa +2024-08-02,65707,1258,"[""Charger"", ""Laptop"", ""Headphones""]",3682.24,"{""seasonal"": ""22%""}",152039,0,South America +2024-04-24,65708,150,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",392.13,"{""loyalty"": ""5%""}",25672,0,Africa +2024-09-09,65709,5458,"[""Charger""]",4867.86,"{""promo"": ""30%""}",227880,1,Asia +2023-07-15,65710,1469,"[""Headphones""]",2916.95,"{""seasonal"": ""27%""}",96407,0,South America +2024-05-21,65711,7229,"[""Laptop"", ""Tablet"", ""Phone""]",4883.6,"{""promo"": ""10%""}",78895,1,Europe +2023-06-19,65712,3262,"[""Tablet""]",548.41,{},35278,0,Asia +2023-04-09,65713,8869,"[""Monitor""]",4153.2,"{""seasonal"": ""22%""}",73085,0,Africa +2023-03-15,65714,5890,"[""Headphones""]",495.72,{},260600,1,South America +2023-10-22,65715,6832,"[""Wireless Mouse"", ""Tablet""]",2231.96,{},10123,1,North America +2024-11-26,65716,3796,"[""Keyboard"", ""Laptop""]",2677.76,{},277921,1,South America +2024-02-05,65717,3491,"[""Phone""]",1833.06,"{"""": ""16%""}",2892,0,Asia +2023-02-04,65718,8141,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1629.72,"{""promo"": ""21%""}",6616,0,Europe +2023-01-22,65719,625,"[""Charger""]",2166.26,"{"""": ""30%""}",175370,1,Europe +2024-08-10,65720,1105,"[""Monitor"", ""Phone""]",1982.13,{},5262,1,Europe +2023-06-23,65721,2279,"[""Laptop""]",1890.19,{},286772,1,Europe +2023-08-06,65722,7684,"[""Tablet"", ""Monitor""]",597.14,"{""promo"": ""17%""}",239294,0,Africa +2024-09-18,65723,2771,"[""Tablet"", ""Monitor""]",1235.9,{},163040,1,South America +2024-05-31,65724,2637,"[""Laptop"", ""Charger""]",3588.96,{},187789,0,Asia +2023-07-12,65725,225,"[""Headphones"", ""Tablet""]",183.03,"{""loyalty"": ""29%""}",66324,1,Europe +2023-01-05,65726,6048,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3965.37,"{"""": ""20%""}",128728,1,North America +2023-09-05,65727,3127,"[""Laptop""]",4122.97,{},212456,1,Europe +2023-10-31,65728,8976,"[""Phone"", ""Monitor"", ""Charger""]",3378.55,{},126250,1,South America +2023-06-14,65729,853,"[""Phone""]",1020.0,"{""loyalty"": ""29%""}",291830,1,Asia +2023-07-14,65730,6671,"[""Monitor""]",540.21,"{""seasonal"": ""22%""}",118648,1,Europe +2023-02-07,65731,8207,"[""Laptop"", ""Phone""]",4866.36,"{""promo"": ""27%""}",272190,0,South America +2024-11-15,65732,7618,"[""Laptop""]",1066.13,"{""loyalty"": ""30%""}",60774,0,Africa +2023-06-13,65733,5115,"[""Phone"", ""Keyboard""]",2421.14,{},77968,1,North America +2024-02-20,65734,293,"[""Phone"", ""Laptop"", ""Charger""]",601.14,"{"""": ""18%""}",231890,0,Africa +2024-01-22,65735,4526,"[""Phone""]",255.89,{},109627,0,Asia +2023-04-13,65736,4819,"[""Monitor""]",3176.26,"{"""": ""18%""}",222122,0,Africa +2024-08-30,65737,5872,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3643.58,{},62494,1,South America +2024-09-17,65738,9210,"[""Keyboard""]",3957.19,{},259223,0,North America +2023-12-23,65739,6768,"[""Keyboard""]",1428.7,{},280198,0,North America +2023-02-07,65740,9676,"[""Tablet"", ""Headphones"", ""Laptop""]",2544.63,{},181027,1,South America +2024-12-31,65741,4611,"[""Headphones""]",716.91,{},277800,0,South America +2024-05-05,65742,8520,"[""Laptop"", ""Charger""]",3126.88,{},96717,1,North America +2024-12-16,65743,1401,"[""Wireless Mouse""]",3203.07,{},234341,0,Africa +2024-02-05,65744,4688,"[""Tablet"", ""Keyboard"", ""Laptop""]",4783.84,"{"""": ""29%""}",87210,1,Europe +2023-07-02,65745,3237,"[""Monitor""]",4976.36,{},270892,1,North America +2024-06-14,65746,3907,"[""Monitor"", ""Headphones""]",3643.03,{},232698,0,Africa +2023-10-09,65747,8888,"[""Laptop"", ""Headphones"", ""Phone""]",1793.79,"{""promo"": ""6%""}",111462,0,Asia +2023-08-04,65748,2828,"[""Headphones""]",2967.75,"{""seasonal"": ""7%""}",31185,1,North America +2024-05-10,65749,693,"[""Charger"", ""Keyboard""]",2460.77,{},113083,1,North America +2023-06-17,65750,6077,"[""Phone""]",3379.31,{},166741,1,South America +2024-08-06,65751,1124,"[""Headphones"", ""Tablet""]",4372.9,"{""promo"": ""8%""}",4664,1,Asia +2024-11-29,65752,2179,"[""Headphones"", ""Tablet""]",3228.66,{},215685,0,Africa +2024-06-27,65753,626,"[""Phone""]",2047.04,"{""loyalty"": ""13%""}",64279,1,North America +2024-08-19,65754,5455,"[""Headphones"", ""Tablet""]",4281.5,"{"""": ""21%""}",20694,1,South America +2024-10-30,65755,6401,"[""Wireless Mouse""]",607.16,"{""promo"": ""22%""}",288569,0,Europe +2023-02-13,65756,3124,"[""Charger"", ""Headphones"", ""Monitor""]",4446.29,{},90822,0,South America +2024-03-21,65757,57,"[""Phone"", ""Charger"", ""Laptop""]",2389.74,{},7822,0,Europe +2023-08-11,65758,5194,"[""Laptop"", ""Charger""]",2839.89,"{""promo"": ""14%""}",97399,0,Asia +2024-05-03,65759,2998,"[""Headphones"", ""Monitor""]",2490.88,{},96329,0,Africa +2024-06-09,65760,3916,"[""Keyboard"", ""Laptop""]",407.75,{},97508,1,Europe +2023-09-17,65761,5591,"[""Laptop"", ""Headphones"", ""Keyboard""]",3151.84,"{"""": ""9%""}",126439,1,Africa +2024-02-22,65762,4978,"[""Tablet"", ""Keyboard"", ""Monitor""]",288.56,"{""loyalty"": ""8%""}",164801,0,Asia +2023-08-29,65763,4621,"[""Monitor"", ""Headphones"", ""Phone""]",3443.34,{},42868,1,Asia +2024-06-01,65764,7623,"[""Tablet"", ""Laptop""]",1035.97,"{""seasonal"": ""8%""}",128931,1,Europe +2023-10-06,65765,1473,"[""Charger""]",3793.96,"{""promo"": ""18%""}",236576,0,South America +2023-10-10,65766,6033,"[""Laptop"", ""Charger"", ""Headphones""]",4097.54,"{""loyalty"": ""29%""}",29043,1,South America +2024-11-22,65767,8680,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4420.61,{},239457,1,Asia +2023-09-28,65768,5303,"[""Laptop""]",4418.4,{},17055,1,Asia +2023-07-17,65769,2036,"[""Tablet"", ""Phone"", ""Keyboard""]",3490.56,{},293646,0,Asia +2024-09-09,65770,8221,"[""Headphones"", ""Phone"", ""Charger""]",1250.98,{},123857,1,Europe +2023-04-11,65771,7658,"[""Laptop"", ""Tablet"", ""Phone""]",359.55,{},67291,0,Asia +2023-04-20,65772,7858,"[""Tablet"", ""Laptop"", ""Charger""]",474.19,{},267868,1,Asia +2024-01-10,65773,6860,"[""Laptop""]",1034.38,{},222920,0,North America +2024-08-10,65774,7236,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3767.51,{},48541,0,Asia +2024-03-27,65775,8025,"[""Tablet"", ""Phone""]",3891.45,{},96999,0,North America +2024-12-23,65776,6439,"[""Wireless Mouse""]",2798.89,"{""promo"": ""30%""}",63721,1,Asia +2023-09-24,65777,3279,"[""Tablet"", ""Headphones"", ""Keyboard""]",1223.42,"{""seasonal"": ""11%""}",59762,1,North America +2023-01-18,65778,7486,"[""Laptop"", ""Tablet""]",2760.59,"{""loyalty"": ""8%""}",88072,0,North America +2024-04-26,65779,1048,"[""Tablet""]",2534.15,"{""seasonal"": ""20%""}",208994,1,Europe +2024-11-12,65780,968,"[""Phone"", ""Monitor"", ""Headphones""]",993.77,{},50435,0,Asia +2023-06-09,65781,464,"[""Headphones""]",4714.28,{},149503,1,North America +2023-01-12,65782,1869,"[""Wireless Mouse""]",4112.8,"{""seasonal"": ""13%""}",42737,0,North America +2024-09-23,65783,9835,"[""Headphones""]",3087.97,{},170145,0,South America +2023-01-04,65784,3650,"[""Charger"", ""Headphones"", ""Laptop""]",4564.84,"{""seasonal"": ""5%""}",57608,0,Europe +2024-01-29,65785,2221,"[""Charger"", ""Phone""]",2533.39,{},34313,1,North America +2023-12-18,65786,7824,"[""Tablet"", ""Charger""]",4625.13,{},4397,1,North America +2023-03-21,65787,7325,"[""Laptop"", ""Keyboard"", ""Headphones""]",3107.33,{},287080,0,Africa +2023-08-06,65788,7582,"[""Keyboard"", ""Charger""]",3123.59,{},114896,1,Europe +2024-01-16,65789,8822,"[""Laptop"", ""Tablet"", ""Charger""]",3570.34,{},251126,0,Europe +2023-10-24,65790,4372,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2116.38,"{"""": ""8%""}",194204,0,Europe +2023-08-18,65791,3470,"[""Wireless Mouse""]",508.98,"{""seasonal"": ""30%""}",294423,0,Asia +2023-11-02,65792,8490,"[""Charger"", ""Monitor"", ""Tablet""]",3840.54,"{""loyalty"": ""23%""}",277466,0,South America +2024-06-18,65793,8993,"[""Laptop"", ""Headphones""]",1800.1,{},81848,0,South America +2024-04-10,65794,8838,"[""Keyboard"", ""Laptop""]",1280.62,"{"""": ""29%""}",117217,0,North America +2024-10-20,65795,268,"[""Headphones"", ""Laptop""]",3389.58,{},15116,0,Africa +2023-01-23,65796,7469,"[""Wireless Mouse""]",3371.08,"{""loyalty"": ""26%""}",144208,0,South America +2023-06-03,65797,8784,"[""Laptop""]",4111.28,{},60374,0,Asia +2023-07-26,65798,2743,"[""Wireless Mouse"", ""Tablet""]",4411.34,{},120527,1,Asia +2024-10-31,65799,9680,"[""Laptop"", ""Wireless Mouse""]",392.24,"{""promo"": ""16%""}",123778,1,Africa +2024-01-04,65800,7296,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2370.16,{},215480,0,Europe +2023-01-25,65801,5065,"[""Tablet"", ""Laptop""]",2473.56,{},268080,0,Asia +2023-03-21,65802,2320,"[""Keyboard"", ""Monitor"", ""Headphones""]",2745.15,"{"""": ""6%""}",141691,0,North America +2024-07-25,65803,4508,"[""Phone""]",3672.72,"{""loyalty"": ""22%""}",20959,0,Africa +2024-05-17,65804,8699,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2191.99,{},34399,1,South America +2024-01-09,65805,6984,"[""Tablet"", ""Monitor""]",3182.18,{},129235,1,South America +2024-02-04,65806,4339,"[""Keyboard""]",1173.56,{},180650,0,Africa +2023-05-28,65807,993,"[""Headphones"", ""Charger"", ""Tablet""]",2965.36,"{"""": ""11%""}",251606,0,North America +2023-05-13,65808,6612,"[""Phone"", ""Keyboard""]",3095.29,"{"""": ""25%""}",14047,0,Asia +2024-02-18,65809,9923,"[""Wireless Mouse""]",685.85,{},236038,0,South America +2023-08-31,65810,4765,"[""Monitor""]",3466.73,"{""loyalty"": ""20%""}",51474,1,Asia +2023-08-15,65811,4702,"[""Charger""]",2801.43,"{"""": ""21%""}",29079,1,Europe +2024-05-04,65812,1204,"[""Tablet"", ""Phone"", ""Monitor""]",1581.9,{},45894,0,Asia +2024-12-02,65813,4901,"[""Headphones"", ""Keyboard"", ""Phone""]",4927.41,{},195198,1,Europe +2024-11-26,65814,623,"[""Tablet"", ""Phone""]",4997.84,{},228283,0,Europe +2023-03-27,65815,3992,"[""Phone"", ""Tablet""]",3645.22,{},136649,0,Asia +2023-12-16,65816,6009,"[""Charger"", ""Laptop""]",4280.1,{},296859,0,South America +2023-06-02,65817,542,"[""Laptop""]",1584.4,{},271451,0,Asia +2023-08-31,65818,5147,"[""Wireless Mouse""]",3294.61,"{""loyalty"": ""18%""}",82329,1,Europe +2024-08-17,65819,8445,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1170.88,{},216234,1,North America +2023-08-31,65820,8463,"[""Laptop"", ""Charger""]",2218.84,{},13870,0,Africa +2024-05-17,65821,2341,"[""Monitor"", ""Headphones""]",2255.3,{},255139,1,South America +2024-06-12,65822,8704,"[""Laptop"", ""Keyboard""]",107.32,{},160297,1,North America +2024-07-23,65823,2598,"[""Wireless Mouse"", ""Headphones""]",2764.56,{},236332,0,Africa +2024-08-05,65824,5100,"[""Laptop"", ""Tablet""]",3892.1,"{""seasonal"": ""15%""}",163511,0,Africa +2024-06-20,65825,9898,"[""Laptop"", ""Headphones""]",1814.89,"{""loyalty"": ""11%""}",218330,0,South America +2023-04-09,65826,760,"[""Phone""]",153.23,{},73027,1,South America +2024-06-02,65827,6072,"[""Keyboard"", ""Laptop""]",863.11,{},126432,1,Africa +2024-08-18,65828,9429,"[""Phone"", ""Monitor""]",1735.48,{},107327,0,North America +2023-10-04,65829,4591,"[""Headphones""]",3841.33,"{""seasonal"": ""26%""}",185371,1,Africa +2024-06-12,65830,6456,"[""Laptop""]",2825.37,"{""seasonal"": ""8%""}",277640,0,North America +2024-10-11,65831,1452,"[""Keyboard""]",3472.83,{},68020,0,South America +2024-11-14,65832,7660,"[""Laptop""]",1259.08,{},169068,1,North America +2023-07-30,65833,4385,"[""Wireless Mouse"", ""Charger""]",4618.6,"{"""": ""17%""}",193597,1,North America +2024-09-28,65834,7249,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",749.36,"{""seasonal"": ""26%""}",226077,0,North America +2024-07-21,65835,9069,"[""Laptop"", ""Charger""]",4746.0,"{""promo"": ""13%""}",263434,0,Asia +2024-01-12,65836,8161,"[""Tablet"", ""Monitor"", ""Phone""]",3624.79,{},144091,1,South America +2024-01-02,65837,8173,"[""Laptop"", ""Phone""]",3179.34,"{"""": ""28%""}",70549,0,Asia +2023-09-30,65838,4897,"[""Phone"", ""Laptop""]",4243.9,{},225748,0,North America +2024-01-09,65839,4007,"[""Tablet"", ""Laptop"", ""Monitor""]",1298.05,"{""promo"": ""17%""}",210871,0,Africa +2024-01-09,65840,8159,"[""Charger"", ""Laptop"", ""Tablet""]",1441.67,{},103014,0,Asia +2024-10-13,65841,4900,"[""Charger"", ""Tablet"", ""Laptop""]",2119.99,"{"""": ""9%""}",142135,0,North America +2024-03-06,65842,4531,"[""Laptop"", ""Charger""]",4808.53,{},175997,0,North America +2024-08-13,65843,3090,"[""Tablet"", ""Keyboard"", ""Headphones""]",3662.76,{},150208,1,Europe +2024-01-02,65844,6636,"[""Phone"", ""Monitor"", ""Keyboard""]",2316.33,"{""promo"": ""11%""}",253026,0,North America +2023-05-20,65845,2400,"[""Headphones"", ""Keyboard""]",1638.05,"{""promo"": ""24%""}",265425,0,Europe +2024-10-28,65846,4515,"[""Wireless Mouse""]",4912.09,{},246737,0,Africa +2024-02-15,65847,7573,"[""Wireless Mouse""]",242.19,"{"""": ""19%""}",130283,0,Africa +2023-12-06,65848,533,"[""Headphones"", ""Keyboard"", ""Phone""]",1423.36,"{""seasonal"": ""18%""}",78937,1,Africa +2023-04-07,65849,5759,"[""Charger"", ""Monitor"", ""Tablet""]",1601.65,"{""seasonal"": ""30%""}",35340,1,Asia +2024-12-08,65850,7883,"[""Wireless Mouse"", ""Tablet""]",67.97,"{""promo"": ""12%""}",184016,1,Europe +2023-08-17,65851,9104,"[""Monitor""]",3850.7,{},178753,0,Africa +2024-02-12,65852,5854,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1993.05,"{"""": ""26%""}",18079,1,North America +2023-03-11,65853,3141,"[""Charger"", ""Keyboard"", ""Laptop""]",3666.21,{},15423,0,South America +2023-11-29,65854,4021,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3372.73,"{""loyalty"": ""13%""}",275890,1,Asia +2023-09-19,65855,8666,"[""Keyboard"", ""Monitor""]",2024.93,"{""seasonal"": ""21%""}",69253,1,South America +2023-11-12,65856,9828,"[""Charger"", ""Phone"", ""Keyboard""]",2565.97,{},68169,0,North America +2023-09-02,65857,8070,"[""Charger"", ""Monitor""]",4099.88,{},231278,1,Europe +2024-04-07,65858,761,"[""Tablet""]",1538.45,"{""seasonal"": ""28%""}",216336,1,Europe +2023-04-03,65859,5904,"[""Laptop"", ""Monitor"", ""Phone""]",4747.24,{},54850,1,North America +2024-06-03,65860,1465,"[""Headphones""]",708.72,{},165185,0,Europe +2024-02-11,65861,8974,"[""Headphones"", ""Laptop""]",3253.3,{},86869,1,Asia +2024-06-23,65862,7372,"[""Phone""]",4547.51,"{"""": ""11%""}",92716,1,Asia +2023-01-11,65863,7032,"[""Charger"", ""Keyboard"", ""Tablet""]",1495.84,"{""seasonal"": ""11%""}",239974,0,South America +2024-12-06,65864,1509,"[""Tablet""]",2253.94,"{"""": ""16%""}",186180,1,South America +2024-01-03,65865,9820,"[""Wireless Mouse"", ""Tablet""]",2996.5,"{"""": ""13%""}",79012,0,South America +2023-09-22,65866,1904,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3911.01,"{""promo"": ""18%""}",118277,1,North America +2024-04-25,65867,8112,"[""Monitor"", ""Tablet"", ""Laptop""]",4211.36,{},144164,0,Africa +2024-07-26,65868,5716,"[""Headphones"", ""Phone""]",3034.2,{},173218,0,Africa +2024-01-29,65869,2681,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1486.32,{},75511,1,South America +2024-08-31,65870,1035,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4155.76,{},194884,1,North America +2023-04-04,65871,8389,"[""Headphones"", ""Monitor"", ""Laptop""]",4960.63,"{""seasonal"": ""21%""}",297166,0,Europe +2024-04-04,65872,6841,"[""Phone"", ""Keyboard"", ""Tablet""]",1921.55,"{""promo"": ""20%""}",111032,0,Africa +2023-07-03,65873,2337,"[""Tablet"", ""Phone""]",3287.64,{},245885,0,Africa +2023-12-06,65874,3854,"[""Tablet""]",500.02,"{""promo"": ""11%""}",235038,0,South America +2024-07-27,65875,684,"[""Monitor""]",4150.77,{},198025,0,Asia +2023-06-14,65876,850,"[""Keyboard"", ""Laptop""]",3307.24,{},96300,1,North America +2023-06-02,65877,4449,"[""Phone"", ""Keyboard"", ""Laptop""]",1232.67,"{""loyalty"": ""5%""}",127801,0,Asia +2023-11-13,65878,6157,"[""Keyboard""]",1736.63,"{"""": ""12%""}",79308,1,Asia +2023-09-29,65879,6147,"[""Tablet"", ""Monitor""]",2864.14,"{""loyalty"": ""18%""}",67516,1,North America +2023-04-05,65880,1681,"[""Monitor"", ""Tablet"", ""Laptop""]",2168.72,"{""seasonal"": ""20%""}",119147,0,South America +2024-04-15,65881,2774,"[""Tablet"", ""Laptop"", ""Headphones""]",942.99,"{""seasonal"": ""10%""}",218484,1,Asia +2024-12-21,65882,4584,"[""Headphones""]",1191.9,"{""promo"": ""18%""}",85500,0,Europe +2024-07-21,65883,6327,"[""Phone"", ""Keyboard"", ""Charger""]",3658.29,"{""loyalty"": ""16%""}",247771,0,Europe +2023-08-20,65884,3931,"[""Tablet"", ""Wireless Mouse""]",1935.68,{},217744,1,North America +2023-04-26,65885,9731,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2961.72,"{"""": ""13%""}",2619,1,Europe +2024-11-01,65886,9388,"[""Monitor""]",3500.91,{},291756,1,South America +2023-01-08,65887,8239,"[""Keyboard""]",4426.32,"{""promo"": ""15%""}",26337,0,Asia +2023-04-19,65888,7185,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",725.69,"{""promo"": ""13%""}",112754,1,North America +2023-08-28,65889,6809,"[""Wireless Mouse""]",2059.47,"{"""": ""11%""}",204610,0,Europe +2023-03-07,65890,3099,"[""Keyboard""]",1284.34,{},242678,0,South America +2023-04-18,65891,1697,"[""Charger""]",3391.26,{},91307,0,Europe +2024-07-17,65892,3897,"[""Charger""]",2258.39,"{""seasonal"": ""22%""}",137772,1,South America +2024-08-18,65893,9643,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3068.98,{},295876,1,Asia +2023-09-11,65894,3859,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3678.0,"{""promo"": ""13%""}",167386,0,North America +2023-11-30,65895,2725,"[""Headphones"", ""Monitor"", ""Tablet""]",3143.5,{},269906,0,North America +2023-10-02,65896,5549,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2420.95,"{""loyalty"": ""19%""}",66998,1,Asia +2024-04-03,65897,535,"[""Phone""]",4776.29,"{""seasonal"": ""5%""}",86936,0,Europe +2023-06-12,65898,6367,"[""Headphones""]",289.38,"{""seasonal"": ""13%""}",46096,0,Asia +2024-08-30,65899,1742,"[""Laptop"", ""Keyboard""]",4677.88,{},281067,0,Asia +2023-10-12,65900,9755,"[""Keyboard"", ""Charger""]",4847.44,"{""seasonal"": ""16%""}",22026,1,Asia +2024-12-17,65901,7244,"[""Keyboard"", ""Monitor""]",4332.45,{},112141,1,North America +2024-05-12,65902,5351,"[""Phone"", ""Wireless Mouse""]",1274.42,{},193433,1,Asia +2023-09-21,65903,2047,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1815.43,{},213481,1,South America +2024-12-07,65904,4536,"[""Headphones""]",3448.28,"{"""": ""18%""}",161437,0,Africa +2024-02-29,65905,47,"[""Keyboard""]",2969.73,"{""seasonal"": ""20%""}",11348,0,South America +2024-03-27,65906,5881,"[""Phone"", ""Monitor"", ""Keyboard""]",3195.89,"{""seasonal"": ""16%""}",218225,0,Africa +2023-11-18,65907,5584,"[""Tablet""]",4958.99,{},92030,1,South America +2023-12-08,65908,524,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4519.5,"{""seasonal"": ""13%""}",179495,1,South America +2024-10-18,65909,2458,"[""Laptop"", ""Tablet""]",2509.63,"{""seasonal"": ""25%""}",142836,0,Europe +2024-01-28,65910,9221,"[""Phone""]",1791.76,{},193042,1,Europe +2023-08-24,65911,4315,"[""Monitor"", ""Tablet""]",2066.27,{},244142,0,South America +2023-02-26,65912,1678,"[""Phone"", ""Laptop""]",697.57,{},283162,0,Asia +2024-01-20,65913,1588,"[""Wireless Mouse""]",2451.04,{},142206,0,Africa +2023-05-31,65914,6472,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2498.9,"{""loyalty"": ""21%""}",44936,1,Asia +2023-01-02,65915,2262,"[""Wireless Mouse""]",2290.23,{},23664,1,Europe +2023-12-28,65916,708,"[""Monitor"", ""Phone""]",1500.14,{},175065,1,Asia +2024-01-13,65917,2560,"[""Headphones"", ""Keyboard"", ""Laptop""]",1957.61,"{""loyalty"": ""23%""}",37497,0,North America +2024-08-20,65918,5143,"[""Headphones"", ""Tablet""]",2276.53,"{"""": ""18%""}",51721,0,Asia +2023-03-31,65919,6128,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3670.98,{},184524,0,Europe +2023-05-24,65920,4582,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",719.98,{},148882,0,North America +2024-01-14,65921,9938,"[""Tablet""]",2987.28,"{""promo"": ""7%""}",215213,0,Africa +2024-09-21,65922,897,"[""Charger"", ""Tablet""]",835.31,{},144364,0,North America +2023-12-15,65923,6517,"[""Monitor"", ""Keyboard"", ""Laptop""]",4134.48,{},241142,1,North America +2024-04-04,65924,9518,"[""Monitor"", ""Phone"", ""Keyboard""]",1359.81,{},247337,1,Europe +2023-05-10,65925,9233,"[""Keyboard""]",1561.43,{},41239,0,Europe +2023-05-06,65926,411,"[""Phone""]",2253.06,{},257003,0,Africa +2023-04-28,65927,1389,"[""Phone""]",624.95,"{""seasonal"": ""17%""}",136433,1,South America +2023-01-06,65928,3437,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4021.51,"{""seasonal"": ""20%""}",77222,1,North America +2023-11-04,65929,7785,"[""Monitor"", ""Tablet"", ""Charger""]",3309.04,{},201421,0,Asia +2023-03-06,65930,2628,"[""Charger"", ""Phone"", ""Wireless Mouse""]",486.53,{},42793,0,South America +2023-08-03,65931,3305,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",92.82,{},95504,1,Africa +2023-12-11,65932,6730,"[""Phone""]",903.89,{},272765,1,Asia +2024-11-25,65933,9204,"[""Phone""]",1953.01,"{""seasonal"": ""9%""}",224583,0,Asia +2023-08-28,65934,7281,"[""Laptop""]",1280.49,"{"""": ""23%""}",244321,0,North America +2024-06-11,65935,5967,"[""Keyboard"", ""Monitor"", ""Charger""]",4369.89,"{""seasonal"": ""8%""}",71329,0,South America +2023-11-22,65936,9141,"[""Monitor"", ""Wireless Mouse""]",2892.57,{},228860,0,North America +2024-10-08,65937,7699,"[""Laptop"", ""Keyboard""]",3483.86,{},276991,0,Asia +2024-03-17,65938,4176,"[""Monitor"", ""Charger""]",3190.14,"{""loyalty"": ""19%""}",67515,1,Europe +2023-02-05,65939,7193,"[""Charger"", ""Keyboard""]",1595.49,"{"""": ""5%""}",128248,0,South America +2024-04-12,65940,444,"[""Headphones"", ""Tablet"", ""Keyboard""]",3419.92,"{""promo"": ""16%""}",199670,1,Asia +2024-12-25,65941,5533,"[""Charger""]",3683.83,"{"""": ""26%""}",87947,1,North America +2023-07-11,65942,6298,"[""Tablet"", ""Keyboard""]",2560.87,{},104819,0,Europe +2023-01-27,65943,2805,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2333.81,"{"""": ""19%""}",167239,1,Europe +2023-10-07,65944,4604,"[""Laptop""]",4541.67,{},33904,1,North America +2023-07-19,65945,6807,"[""Wireless Mouse""]",3682.86,{},231026,1,Asia +2023-04-07,65946,1637,"[""Headphones""]",4612.82,{},113067,1,North America +2023-02-18,65947,1970,"[""Headphones"", ""Charger"", ""Tablet""]",4865.11,{},187425,1,North America +2023-12-19,65948,606,"[""Charger"", ""Monitor"", ""Laptop""]",1266.83,{},292411,1,Asia +2023-05-10,65949,4108,"[""Monitor"", ""Laptop""]",1145.14,{},176254,1,North America +2023-09-04,65950,9638,"[""Monitor"", ""Laptop"", ""Tablet""]",2506.77,{},4677,1,South America +2023-05-16,65951,3814,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1439.66,"{"""": ""6%""}",90829,0,Asia +2023-01-09,65952,7175,"[""Tablet"", ""Charger"", ""Headphones""]",4087.37,"{""seasonal"": ""18%""}",143103,0,Africa +2023-07-09,65953,5046,"[""Monitor"", ""Headphones""]",4181.46,{},170805,0,North America +2023-12-29,65954,1333,"[""Headphones"", ""Phone"", ""Monitor""]",2003.54,{},68624,0,North America +2024-01-05,65955,4712,"[""Headphones"", ""Laptop""]",2124.63,"{""seasonal"": ""19%""}",166626,1,North America +2023-08-10,65956,7896,"[""Laptop"", ""Charger""]",1805.81,"{"""": ""10%""}",19526,0,Africa +2023-03-09,65957,5278,"[""Keyboard"", ""Charger"", ""Laptop""]",4339.0,{},118441,0,Asia +2024-06-27,65958,2728,"[""Phone"", ""Headphones""]",2122.52,"{""promo"": ""23%""}",51260,0,Asia +2024-11-21,65959,1547,"[""Charger"", ""Tablet""]",1309.06,{},280336,0,Asia +2024-09-29,65960,495,"[""Monitor"", ""Keyboard"", ""Charger""]",3767.77,"{""seasonal"": ""5%""}",237671,1,South America +2024-11-06,65961,2273,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1447.24,{},268045,0,Europe +2024-04-14,65962,8791,"[""Keyboard""]",3041.55,"{""promo"": ""27%""}",128134,1,North America +2023-04-09,65963,9159,"[""Charger"", ""Headphones"", ""Laptop""]",1924.33,{},201071,0,North America +2024-01-08,65964,5017,"[""Phone"", ""Wireless Mouse""]",4902.52,"{""seasonal"": ""13%""}",221702,1,South America +2024-12-04,65965,3142,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4641.93,{},97351,1,North America +2024-05-11,65966,5710,"[""Keyboard""]",2848.95,{},292662,1,South America +2023-04-04,65967,5690,"[""Laptop""]",893.53,"{""loyalty"": ""9%""}",160022,1,Asia +2023-02-13,65968,3885,"[""Monitor"", ""Phone""]",878.77,{},191305,0,South America +2023-03-04,65969,2623,"[""Charger"", ""Laptop"", ""Headphones""]",2718.89,"{""promo"": ""24%""}",235743,0,Europe +2023-11-19,65970,1343,"[""Wireless Mouse"", ""Tablet""]",3566.79,"{"""": ""11%""}",39396,0,South America +2023-07-19,65971,2998,"[""Tablet"", ""Laptop""]",3700.29,"{""loyalty"": ""27%""}",78885,0,Africa +2024-08-16,65972,8802,"[""Laptop"", ""Charger""]",1641.59,"{""promo"": ""14%""}",109033,1,North America +2024-10-22,65973,1070,"[""Wireless Mouse"", ""Laptop""]",1655.88,"{"""": ""30%""}",180524,0,Europe +2024-11-16,65974,5208,"[""Keyboard"", ""Wireless Mouse""]",809.17,{},59875,1,North America +2024-03-28,65975,8989,"[""Tablet"", ""Laptop"", ""Keyboard""]",3374.76,"{""loyalty"": ""10%""}",251266,1,Africa +2023-02-23,65976,447,"[""Keyboard"", ""Monitor"", ""Headphones""]",2783.11,{},47989,1,Asia +2024-06-26,65977,5087,"[""Phone""]",3791.37,{},75158,1,Asia +2023-01-01,65978,7523,"[""Phone""]",974.04,"{""seasonal"": ""13%""}",40450,0,South America +2024-06-28,65979,6053,"[""Charger""]",659.93,"{"""": ""13%""}",73618,0,Africa +2024-09-15,65980,6404,"[""Phone"", ""Headphones""]",1190.44,"{""loyalty"": ""29%""}",121813,0,Europe +2024-08-28,65981,5030,"[""Laptop""]",1415.09,"{"""": ""23%""}",86431,0,Africa +2024-01-29,65982,5101,"[""Phone"", ""Keyboard"", ""Monitor""]",3491.38,{},143421,0,Europe +2024-07-03,65983,7278,"[""Headphones"", ""Laptop"", ""Charger""]",3688.41,"{""loyalty"": ""12%""}",166362,1,Asia +2024-06-26,65984,746,"[""Phone""]",2577.82,"{""seasonal"": ""12%""}",177502,1,South America +2023-08-07,65985,2745,"[""Monitor"", ""Charger""]",3249.7,{},69124,0,South America +2023-02-25,65986,2095,"[""Tablet"", ""Laptop""]",3763.45,{},240962,1,South America +2024-09-30,65987,5582,"[""Phone"", ""Charger""]",1061.92,{},45830,1,South America +2024-12-30,65988,4381,"[""Charger"", ""Headphones"", ""Monitor""]",1249.31,"{""seasonal"": ""17%""}",7189,1,Africa +2023-11-21,65989,5973,"[""Charger"", ""Monitor"", ""Tablet""]",637.55,"{""loyalty"": ""24%""}",56530,0,North America +2023-09-23,65990,4460,"[""Tablet"", ""Wireless Mouse""]",3675.29,"{""seasonal"": ""28%""}",299495,1,Africa +2023-02-06,65991,8693,"[""Phone"", ""Keyboard"", ""Tablet""]",2236.99,{},13147,1,North America +2023-11-17,65992,9646,"[""Monitor"", ""Tablet"", ""Phone""]",1025.76,"{"""": ""10%""}",179524,1,Asia +2024-04-10,65993,2569,"[""Tablet""]",4223.18,"{""promo"": ""20%""}",182783,0,Europe +2024-01-27,65994,6397,"[""Phone"", ""Monitor""]",1598.14,{},111313,0,Africa +2023-07-08,65995,6307,"[""Phone"", ""Tablet"", ""Charger""]",1906.89,{},13752,1,Asia +2023-11-07,65996,3836,"[""Laptop""]",4311.61,{},160711,0,Africa +2023-11-22,65997,1376,"[""Wireless Mouse"", ""Headphones""]",921.51,"{""loyalty"": ""16%""}",174739,0,North America +2024-11-06,65998,7622,"[""Charger""]",2812.47,{},71011,0,Asia +2024-11-26,65999,8322,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4040.26,{},246159,0,Europe +2024-12-01,66000,4137,"[""Tablet""]",4523.84,"{""promo"": ""29%""}",103662,0,North America +2024-04-24,66001,9619,"[""Phone"", ""Monitor""]",1772.03,"{""promo"": ""30%""}",142101,1,South America +2024-06-12,66002,454,"[""Monitor"", ""Keyboard"", ""Headphones""]",904.83,"{""loyalty"": ""8%""}",168994,1,Africa +2024-11-26,66003,6735,"[""Headphones"", ""Tablet""]",711.65,"{"""": ""22%""}",195018,1,Asia +2024-09-24,66004,1798,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",859.5,{},223319,1,Europe +2024-09-30,66005,1482,"[""Tablet"", ""Wireless Mouse""]",4045.36,{},121008,0,Africa +2023-09-12,66006,2814,"[""Charger"", ""Keyboard""]",2108.65,{},289465,0,Europe +2024-01-04,66007,2809,"[""Headphones""]",4600.11,{},296184,0,Asia +2024-01-03,66008,7069,"[""Headphones"", ""Tablet"", ""Monitor""]",527.64,{},119039,0,North America +2024-03-04,66009,9982,"[""Phone"", ""Laptop""]",1325.01,{},188047,0,South America +2023-02-09,66010,6087,"[""Keyboard""]",1617.68,{},262607,1,South America +2023-05-20,66011,8529,"[""Headphones"", ""Charger""]",873.56,"{""seasonal"": ""11%""}",169205,0,South America +2023-11-09,66012,9850,"[""Keyboard""]",1994.62,"{""seasonal"": ""17%""}",247251,0,Europe +2024-02-24,66013,6199,"[""Keyboard"", ""Headphones""]",1165.18,{},117372,0,North America +2024-07-18,66014,4790,"[""Keyboard""]",1351.63,"{""loyalty"": ""30%""}",139480,0,Europe +2024-05-25,66015,684,"[""Monitor"", ""Phone"", ""Tablet""]",3992.87,{},121490,1,Asia +2024-03-06,66016,9555,"[""Keyboard""]",1394.01,{},172393,0,Europe +2023-12-18,66017,2429,"[""Charger""]",2895.63,{},206442,1,Asia +2024-02-05,66018,2355,"[""Tablet""]",1279.0,{},120210,1,Europe +2023-04-05,66019,2629,"[""Headphones"", ""Keyboard"", ""Phone""]",4733.49,{},231046,1,Africa +2024-05-06,66020,2130,"[""Headphones""]",4093.46,{},136968,1,Europe +2024-07-13,66021,3423,"[""Wireless Mouse""]",3853.97,"{""promo"": ""9%""}",73149,1,North America +2023-09-25,66022,9062,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",117.25,{},110407,0,South America +2023-02-04,66023,2387,"[""Monitor"", ""Laptop"", ""Tablet""]",2383.43,{},15419,0,Asia +2024-05-23,66024,7684,"[""Headphones"", ""Monitor""]",1626.58,"{""loyalty"": ""10%""}",12383,0,North America +2023-10-07,66025,4307,"[""Monitor"", ""Tablet""]",2139.25,"{""promo"": ""23%""}",91524,0,North America +2023-01-14,66026,1585,"[""Tablet"", ""Monitor""]",3320.23,"{""seasonal"": ""27%""}",232075,1,Asia +2024-11-14,66027,2658,"[""Charger""]",3040.99,{},290140,0,Asia +2023-09-23,66028,5838,"[""Phone"", ""Headphones"", ""Tablet""]",2224.56,{},279116,0,South America +2023-08-02,66029,8768,"[""Wireless Mouse""]",1897.26,"{"""": ""29%""}",100404,0,North America +2024-04-27,66030,8198,"[""Charger"", ""Wireless Mouse""]",1313.28,{},280257,1,North America +2024-01-01,66031,4417,"[""Laptop""]",4189.25,"{""seasonal"": ""21%""}",93618,0,Asia +2023-06-24,66032,3596,"[""Phone"", ""Charger""]",4735.64,"{""loyalty"": ""5%""}",35227,1,Asia +2023-01-16,66033,6113,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3500.46,"{""loyalty"": ""21%""}",296371,1,South America +2024-03-11,66034,6618,"[""Phone"", ""Wireless Mouse""]",4722.56,{},185463,1,Asia +2023-07-07,66035,5712,"[""Tablet"", ""Keyboard"", ""Phone""]",651.77,"{"""": ""30%""}",150474,1,South America +2023-01-07,66036,6242,"[""Tablet""]",2766.41,{},30101,1,North America +2023-05-27,66037,433,"[""Wireless Mouse""]",2362.18,{},77382,1,Asia +2024-12-02,66038,5364,"[""Charger"", ""Wireless Mouse""]",3943.35,{},76677,0,North America +2023-01-10,66039,6348,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4391.72,{},72581,0,North America +2023-04-28,66040,2094,"[""Monitor""]",131.87,"{""seasonal"": ""25%""}",152055,1,Africa +2024-08-08,66041,6877,"[""Charger"", ""Laptop""]",2683.14,{},247611,0,Europe +2023-04-21,66042,2258,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1347.63,{},128088,0,North America +2023-01-30,66043,6254,"[""Keyboard"", ""Charger""]",1251.6,{},101864,0,North America +2023-01-03,66044,49,"[""Laptop""]",592.35,"{""loyalty"": ""6%""}",256702,1,Asia +2023-01-24,66045,2831,"[""Laptop""]",4090.36,{},237842,0,North America +2023-03-27,66046,9277,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3567.95,{},216388,1,North America +2023-06-08,66047,4555,"[""Keyboard"", ""Laptop""]",4613.99,"{""loyalty"": ""7%""}",114807,1,North America +2023-12-07,66048,5843,"[""Headphones"", ""Phone"", ""Monitor""]",3952.43,{},44841,1,South America +2023-09-22,66049,4484,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",592.75,{},114294,0,North America +2024-07-23,66050,9122,"[""Tablet"", ""Laptop"", ""Phone""]",2054.48,{},198996,0,Asia +2023-06-16,66051,3563,"[""Laptop"", ""Monitor""]",741.32,"{"""": ""14%""}",31647,1,Asia +2023-12-23,66052,5144,"[""Phone""]",4504.1,"{""promo"": ""13%""}",263117,1,Asia +2024-01-12,66053,8316,"[""Keyboard""]",3976.73,"{""seasonal"": ""11%""}",250657,0,Asia +2023-11-24,66054,5042,"[""Charger""]",3012.69,{},98521,0,Europe +2024-02-27,66055,5074,"[""Tablet"", ""Headphones""]",1997.12,{},138549,0,Asia +2023-04-24,66056,8560,"[""Keyboard""]",3469.75,"{"""": ""11%""}",22227,0,Asia +2023-11-23,66057,1086,"[""Charger"", ""Laptop""]",532.91,{},232491,0,Europe +2023-02-25,66058,975,"[""Tablet"", ""Keyboard""]",2898.5,"{"""": ""29%""}",299185,0,Asia +2023-04-12,66059,3163,"[""Charger"", ""Monitor""]",3770.01,"{""promo"": ""28%""}",220599,0,Africa +2023-03-04,66060,6389,"[""Keyboard""]",3106.48,{},271507,0,Asia +2023-09-03,66061,3772,"[""Laptop"", ""Headphones"", ""Charger""]",1514.66,{},28103,0,Europe +2023-01-29,66062,5681,"[""Phone"", ""Tablet"", ""Keyboard""]",2854.26,{},191335,1,Africa +2024-08-05,66063,5450,"[""Charger"", ""Keyboard"", ""Monitor""]",4632.29,{},108968,1,Africa +2023-01-28,66064,6837,"[""Charger""]",2893.0,"{""seasonal"": ""28%""}",97075,0,Europe +2024-11-04,66065,5365,"[""Tablet""]",840.57,"{""seasonal"": ""5%""}",97233,0,Africa +2023-02-24,66066,937,"[""Phone"", ""Tablet"", ""Laptop""]",3691.22,{},120630,0,Europe +2024-10-12,66067,4883,"[""Tablet""]",4806.54,{},215674,1,North America +2024-07-22,66068,158,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1884.36,{},294406,1,Africa +2023-10-22,66069,9599,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2981.0,{},146491,0,Europe +2024-02-23,66070,8018,"[""Monitor""]",745.57,{},68098,1,Asia +2023-09-06,66071,9783,"[""Charger""]",4724.52,{},98159,1,South America +2023-06-23,66072,3085,"[""Keyboard""]",3253.43,"{""seasonal"": ""22%""}",247712,0,South America +2023-08-19,66073,2716,"[""Headphones""]",785.35,"{""loyalty"": ""10%""}",44809,1,North America +2023-12-24,66074,1350,"[""Monitor"", ""Tablet""]",2782.47,"{""seasonal"": ""19%""}",204890,1,North America +2023-04-02,66075,4836,"[""Charger"", ""Keyboard""]",340.46,{},1451,1,Europe +2024-12-27,66076,9667,"[""Headphones"", ""Monitor""]",3259.31,{},256869,0,Africa +2024-01-23,66077,8741,"[""Monitor"", ""Wireless Mouse""]",2388.39,"{""promo"": ""17%""}",58473,1,South America +2023-03-21,66078,3244,"[""Keyboard"", ""Tablet""]",1731.52,{},109650,1,Europe +2023-10-23,66079,5048,"[""Headphones"", ""Wireless Mouse""]",1294.56,"{""loyalty"": ""25%""}",147975,1,Asia +2023-07-21,66080,6063,"[""Laptop"", ""Charger""]",2485.27,{},109320,0,Asia +2023-12-20,66081,4303,"[""Headphones"", ""Keyboard""]",1254.25,{},176661,1,Asia +2024-01-23,66082,2322,"[""Headphones""]",4660.94,"{""seasonal"": ""29%""}",152406,1,Africa +2024-08-11,66083,3141,"[""Charger"", ""Laptop"", ""Headphones""]",2877.25,"{""seasonal"": ""15%""}",243688,0,North America +2024-07-20,66084,4508,"[""Laptop"", ""Tablet"", ""Headphones""]",1029.84,{},294010,0,Europe +2024-04-02,66085,5611,"[""Tablet"", ""Headphones"", ""Laptop""]",2084.07,"{"""": ""10%""}",89452,1,Asia +2024-07-20,66086,3794,"[""Laptop""]",2352.29,{},292332,0,Africa +2023-08-09,66087,5511,"[""Tablet"", ""Charger""]",4877.17,{},168237,0,South America +2023-05-04,66088,452,"[""Laptop"", ""Wireless Mouse""]",2545.22,"{""promo"": ""25%""}",28954,1,Asia +2023-12-25,66089,6914,"[""Headphones""]",1840.33,{},45946,0,North America +2024-08-04,66090,2471,"[""Laptop""]",1130.45,"{""promo"": ""21%""}",284030,0,Asia +2024-12-14,66091,7132,"[""Monitor"", ""Tablet""]",2022.72,"{""promo"": ""19%""}",94481,0,South America +2024-02-06,66092,45,"[""Headphones""]",921.01,"{"""": ""6%""}",27751,1,North America +2024-07-11,66093,2814,"[""Headphones""]",4829.02,{},190349,1,Asia +2024-07-01,66094,7958,"[""Headphones"", ""Tablet"", ""Keyboard""]",2210.5,{},200294,0,Asia +2023-05-15,66095,8945,"[""Headphones"", ""Tablet""]",4164.94,{},95381,0,Asia +2023-12-19,66096,2623,"[""Monitor"", ""Keyboard""]",507.85,"{""seasonal"": ""16%""}",251957,0,Europe +2023-12-23,66097,4825,"[""Keyboard""]",2410.28,{},193890,0,North America +2024-12-22,66098,8321,"[""Monitor""]",725.07,{},14818,0,South America +2024-11-08,66099,6170,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4643.61,"{""seasonal"": ""17%""}",46477,1,Asia +2023-11-30,66100,9081,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4118.48,"{""seasonal"": ""20%""}",58372,0,Africa +2024-12-25,66101,1925,"[""Charger"", ""Headphones""]",1964.28,{},151572,1,South America +2023-06-10,66102,9681,"[""Keyboard"", ""Wireless Mouse""]",3519.47,"{""seasonal"": ""12%""}",273378,0,Asia +2023-10-02,66103,3778,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4799.36,{},184624,0,Europe +2024-06-13,66104,9172,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4940.11,"{""loyalty"": ""22%""}",190775,1,Africa +2023-10-24,66105,5581,"[""Tablet"", ""Keyboard""]",4242.5,"{""seasonal"": ""27%""}",114505,0,South America +2024-05-17,66106,6925,"[""Tablet""]",1852.98,"{""loyalty"": ""8%""}",108498,0,North America +2023-07-13,66107,8480,"[""Laptop"", ""Tablet""]",2991.34,{},183917,0,North America +2024-04-23,66108,3180,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1580.93,"{""promo"": ""19%""}",73705,0,North America +2024-06-09,66109,8291,"[""Headphones"", ""Tablet""]",951.8,"{""seasonal"": ""29%""}",65599,1,South America +2024-02-26,66110,7633,"[""Charger"", ""Phone""]",1097.57,{},50811,1,Africa +2024-12-21,66111,4217,"[""Charger""]",939.39,"{""loyalty"": ""14%""}",88174,1,North America +2024-07-03,66112,3320,"[""Phone"", ""Laptop"", ""Headphones""]",2983.29,"{""promo"": ""20%""}",148412,1,Asia +2023-02-21,66113,3608,"[""Wireless Mouse"", ""Phone""]",4634.14,"{""seasonal"": ""14%""}",116285,1,Asia +2024-08-30,66114,6615,"[""Tablet"", ""Charger""]",3366.35,"{""promo"": ""8%""}",140762,1,South America +2024-11-29,66115,5449,"[""Monitor"", ""Headphones"", ""Keyboard""]",3879.16,{},188193,1,North America +2024-12-18,66116,304,"[""Monitor"", ""Headphones"", ""Laptop""]",381.78,{},229276,0,Asia +2023-12-30,66117,5846,"[""Charger""]",830.37,"{""seasonal"": ""24%""}",276586,0,Asia +2024-08-19,66118,2946,"[""Keyboard"", ""Phone"", ""Monitor""]",4958.05,"{""promo"": ""29%""}",43990,0,South America +2023-07-08,66119,8693,"[""Headphones"", ""Laptop"", ""Keyboard""]",1951.14,"{""loyalty"": ""26%""}",129054,1,Europe +2023-01-27,66120,4610,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4520.25,{},294467,1,Asia +2024-06-28,66121,2270,"[""Charger"", ""Tablet"", ""Headphones""]",3231.09,"{"""": ""5%""}",261506,0,Asia +2023-11-17,66122,7509,"[""Headphones"", ""Laptop""]",4508.75,"{""promo"": ""21%""}",125954,1,Africa +2024-05-11,66123,3120,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3217.17,"{"""": ""7%""}",59966,0,South America +2024-10-08,66124,7594,"[""Keyboard"", ""Monitor"", ""Tablet""]",223.86,"{""seasonal"": ""29%""}",102360,0,Asia +2024-04-01,66125,2574,"[""Headphones"", ""Monitor"", ""Keyboard""]",1552.56,"{""promo"": ""25%""}",74319,0,North America +2023-10-17,66126,8118,"[""Headphones"", ""Tablet""]",3303.78,"{"""": ""10%""}",119390,0,North America +2024-05-27,66127,3881,"[""Monitor""]",274.16,"{"""": ""18%""}",66856,1,Africa +2024-03-22,66128,8478,"[""Tablet""]",4898.24,"{""loyalty"": ""27%""}",217693,1,South America +2024-05-11,66129,2138,"[""Headphones""]",4565.03,{},260198,0,Asia +2024-07-18,66130,5243,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1669.15,"{""loyalty"": ""22%""}",132813,1,South America +2023-08-09,66131,5383,"[""Phone"", ""Monitor"", ""Keyboard""]",2731.37,{},92811,1,North America +2023-10-30,66132,4938,"[""Phone"", ""Keyboard"", ""Monitor""]",167.21,{},163699,0,South America +2024-10-09,66133,7213,"[""Phone""]",3453.31,{},194767,0,Europe +2024-10-18,66134,3696,"[""Keyboard"", ""Wireless Mouse""]",4462.57,"{""loyalty"": ""6%""}",37847,0,Asia +2024-08-17,66135,7750,"[""Phone"", ""Tablet""]",3923.97,"{"""": ""20%""}",200832,0,North America +2024-11-03,66136,130,"[""Monitor"", ""Charger"", ""Headphones""]",124.25,{},165911,1,South America +2023-03-06,66137,3813,"[""Phone""]",1874.14,"{""seasonal"": ""13%""}",123808,0,South America +2023-10-24,66138,3883,"[""Charger"", ""Monitor""]",4594.16,"{""promo"": ""25%""}",32455,1,Europe +2023-05-30,66139,5985,"[""Phone""]",3105.5,"{""loyalty"": ""17%""}",256622,1,Europe +2024-05-23,66140,6883,"[""Keyboard""]",1623.94,{},38051,1,Europe +2023-03-03,66141,4887,"[""Laptop"", ""Headphones"", ""Keyboard""]",1388.82,"{""promo"": ""30%""}",294244,1,Africa +2024-02-22,66142,264,"[""Wireless Mouse"", ""Headphones""]",2104.31,"{"""": ""19%""}",268901,1,Asia +2024-07-13,66143,988,"[""Keyboard"", ""Headphones"", ""Tablet""]",1350.77,{},279545,0,Asia +2023-07-06,66144,7087,"[""Phone""]",4674.95,{},201674,1,Europe +2023-12-25,66145,1921,"[""Headphones"", ""Tablet""]",4086.78,"{""promo"": ""15%""}",217623,1,Asia +2023-11-12,66146,76,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3327.58,{},83933,0,Asia +2023-03-06,66147,9278,"[""Charger"", ""Monitor""]",2048.91,{},160565,0,North America +2024-07-27,66148,252,"[""Tablet"", ""Wireless Mouse""]",3518.09,{},238701,1,North America +2023-01-08,66149,5610,"[""Tablet""]",1983.51,"{"""": ""13%""}",246919,0,South America +2024-04-25,66150,5588,"[""Phone""]",802.38,"{""promo"": ""9%""}",113972,0,Africa +2023-05-24,66151,6367,"[""Keyboard"", ""Tablet""]",2927.82,{},149383,0,North America +2023-07-05,66152,7729,"[""Keyboard"", ""Wireless Mouse""]",1415.03,"{""seasonal"": ""17%""}",73456,0,Asia +2024-07-06,66153,2508,"[""Headphones""]",2372.3,"{""promo"": ""6%""}",20652,0,Europe +2024-02-08,66154,3876,"[""Phone"", ""Keyboard"", ""Tablet""]",3763.34,{},14775,0,Asia +2023-10-05,66155,4244,"[""Wireless Mouse""]",3207.82,{},157505,0,Europe +2024-05-23,66156,1804,"[""Phone"", ""Laptop""]",3587.44,{},257719,0,North America +2024-10-15,66157,8919,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2489.5,{},29781,0,North America +2024-12-24,66158,9159,"[""Headphones"", ""Monitor""]",577.32,"{""seasonal"": ""9%""}",236695,0,Asia +2023-05-15,66159,4070,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2668.45,{},202125,1,Europe +2023-02-01,66160,7082,"[""Wireless Mouse"", ""Headphones""]",772.37,{},46898,1,Europe +2024-03-15,66161,2712,"[""Keyboard"", ""Monitor"", ""Laptop""]",4651.41,{},146751,0,Asia +2024-08-16,66162,8425,"[""Phone"", ""Keyboard"", ""Headphones""]",4830.74,{},14949,0,Europe +2024-06-03,66163,9529,"[""Tablet"", ""Monitor""]",2297.05,"{""loyalty"": ""19%""}",297287,0,South America +2024-12-28,66164,2572,"[""Phone""]",2499.69,{},203247,0,South America +2023-11-11,66165,9085,"[""Wireless Mouse""]",1558.07,"{""promo"": ""5%""}",142861,0,North America +2023-08-20,66166,9767,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1477.92,"{"""": ""6%""}",191892,0,South America +2023-02-24,66167,3986,"[""Tablet"", ""Phone""]",739.64,{},231231,1,North America +2023-06-14,66168,5297,"[""Charger"", ""Headphones""]",3073.53,{},105492,0,North America +2023-06-07,66169,5481,"[""Tablet""]",4613.59,{},109283,1,South America +2023-10-26,66170,1372,"[""Charger"", ""Laptop"", ""Keyboard""]",693.09,"{""loyalty"": ""22%""}",190847,1,South America +2023-07-28,66171,6748,"[""Phone""]",2223.34,{},161116,0,Asia +2023-03-10,66172,2858,"[""Headphones"", ""Tablet""]",3007.52,{},114522,0,Europe +2023-05-29,66173,3940,"[""Headphones"", ""Laptop"", ""Monitor""]",4246.49,{},4585,0,Africa +2024-08-31,66174,2140,"[""Keyboard""]",721.46,"{""seasonal"": ""21%""}",134405,0,Europe +2024-10-11,66175,7998,"[""Charger"", ""Headphones""]",4458.89,{},170493,1,South America +2024-08-25,66176,7028,"[""Keyboard"", ""Tablet""]",2005.63,{},194073,1,Africa +2023-06-08,66177,1174,"[""Wireless Mouse"", ""Headphones""]",272.73,"{""seasonal"": ""24%""}",131326,1,Africa +2024-06-14,66178,2250,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1018.42,{},13425,1,Europe +2024-10-22,66179,5956,"[""Laptop"", ""Headphones""]",4870.25,{},140605,0,Africa +2024-07-12,66180,1790,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",222.15,"{""promo"": ""8%""}",257972,1,South America +2023-08-04,66181,7594,"[""Headphones"", ""Phone"", ""Keyboard""]",1612.1,{},147985,1,South America +2023-01-15,66182,8603,"[""Keyboard""]",60.53,"{"""": ""15%""}",66073,0,Africa +2024-12-30,66183,3140,"[""Laptop"", ""Wireless Mouse""]",1296.75,{},59577,1,Europe +2024-10-05,66184,8524,"[""Laptop"", ""Phone"", ""Headphones""]",2717.33,"{"""": ""17%""}",126823,0,Europe +2023-09-11,66185,3791,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1120.91,{},273935,0,Africa +2024-05-09,66186,4395,"[""Monitor"", ""Phone""]",2377.41,"{"""": ""8%""}",248165,1,South America +2023-04-07,66187,1084,"[""Keyboard"", ""Charger"", ""Phone""]",1926.85,{},208111,0,Africa +2024-06-12,66188,6825,"[""Phone""]",2947.97,"{""seasonal"": ""14%""}",12900,1,Europe +2024-03-21,66189,2168,"[""Headphones"", ""Tablet"", ""Laptop""]",3338.15,{},94634,1,North America +2023-03-02,66190,4888,"[""Laptop""]",3531.93,{},115626,0,Asia +2024-04-07,66191,3317,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1234.66,"{""loyalty"": ""10%""}",230512,0,Africa +2024-11-25,66192,4807,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4464.75,"{"""": ""9%""}",266625,1,Africa +2024-11-15,66193,12,"[""Headphones""]",748.13,"{""loyalty"": ""16%""}",252017,0,Asia +2023-02-18,66194,7096,"[""Headphones"", ""Keyboard"", ""Monitor""]",3010.93,{},137568,1,Europe +2024-03-05,66195,4446,"[""Monitor"", ""Phone""]",1048.47,"{"""": ""12%""}",89849,1,Asia +2023-05-02,66196,3724,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2349.48,"{""loyalty"": ""20%""}",69698,0,Europe +2024-05-05,66197,9984,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2163.19,"{""seasonal"": ""14%""}",276439,0,South America +2024-03-13,66198,5760,"[""Wireless Mouse""]",674.87,{},138932,0,Europe +2024-10-19,66199,5394,"[""Wireless Mouse"", ""Charger""]",3491.3,{},160128,1,Europe +2024-08-01,66200,1316,"[""Keyboard""]",3229.7,{},47469,0,South America +2024-02-09,66201,5743,"[""Laptop"", ""Headphones""]",2006.74,{},258769,0,Europe +2024-08-08,66202,5921,"[""Monitor"", ""Charger""]",4693.58,"{"""": ""20%""}",252487,1,South America +2024-11-06,66203,5050,"[""Wireless Mouse"", ""Headphones""]",1610.33,{},59568,1,South America +2023-07-04,66204,2795,"[""Charger"", ""Tablet""]",4806.75,{},72999,1,Europe +2023-05-29,66205,8513,"[""Headphones"", ""Phone"", ""Monitor""]",1880.73,{},198861,1,Europe +2024-06-07,66206,4535,"[""Phone"", ""Monitor""]",71.52,{},141245,1,Africa +2024-02-06,66207,755,"[""Tablet"", ""Charger""]",461.41,{},98904,1,Asia +2024-11-22,66208,4782,"[""Keyboard"", ""Charger"", ""Headphones""]",795.69,"{""loyalty"": ""5%""}",147660,0,Africa +2024-02-11,66209,9390,"[""Monitor"", ""Laptop"", ""Keyboard""]",4263.47,"{""promo"": ""21%""}",93049,0,Europe +2024-01-22,66210,1212,"[""Laptop"", ""Tablet"", ""Monitor""]",458.58,"{"""": ""6%""}",156888,0,South America +2024-08-02,66211,3666,"[""Headphones""]",2717.78,"{""seasonal"": ""19%""}",80698,0,North America +2024-12-23,66212,7081,"[""Tablet""]",3624.05,{},189390,0,Africa +2023-08-19,66213,874,"[""Laptop"", ""Headphones""]",1717.54,{},165710,1,South America +2024-12-13,66214,2766,"[""Phone"", ""Charger"", ""Laptop""]",1215.09,"{""seasonal"": ""7%""}",296795,1,Africa +2023-05-24,66215,5825,"[""Headphones"", ""Monitor""]",3374.89,"{""loyalty"": ""13%""}",151677,0,Europe +2024-08-06,66216,3946,"[""Tablet"", ""Monitor""]",866.17,{},106247,0,Africa +2024-06-14,66217,8811,"[""Phone""]",411.77,"{""loyalty"": ""23%""}",115740,1,Africa +2024-11-21,66218,9997,"[""Laptop"", ""Charger""]",4035.14,{},94178,0,South America +2023-12-11,66219,5441,"[""Headphones"", ""Tablet""]",2005.25,{},40249,0,South America +2024-12-10,66220,466,"[""Monitor""]",2802.76,"{""seasonal"": ""16%""}",62915,0,Europe +2023-07-14,66221,4460,"[""Charger"", ""Wireless Mouse""]",324.25,"{""seasonal"": ""22%""}",86831,1,Asia +2023-05-17,66222,601,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1505.13,"{"""": ""5%""}",27218,1,Asia +2024-03-18,66223,9625,"[""Keyboard"", ""Charger"", ""Headphones""]",639.24,{},191537,0,Africa +2023-03-26,66224,7023,"[""Keyboard""]",1891.14,"{"""": ""23%""}",209217,0,North America +2023-10-06,66225,1661,"[""Phone""]",374.8,"{"""": ""22%""}",19822,0,Europe +2024-06-29,66226,6751,"[""Laptop"", ""Tablet"", ""Phone""]",4020.82,{},171872,1,Asia +2024-08-09,66227,8211,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2140.73,"{"""": ""17%""}",62967,0,Africa +2024-04-25,66228,6346,"[""Tablet"", ""Phone""]",2535.31,{},135663,0,Asia +2024-08-03,66229,6158,"[""Phone"", ""Charger"", ""Keyboard""]",4123.37,"{""seasonal"": ""24%""}",57119,0,Africa +2024-01-02,66230,3169,"[""Monitor"", ""Laptop"", ""Charger""]",2689.56,"{"""": ""27%""}",106399,1,North America +2023-09-11,66231,7531,"[""Keyboard""]",2836.9,{},81312,0,Europe +2024-09-27,66232,8716,"[""Headphones""]",4967.44,"{"""": ""24%""}",63858,0,Africa +2024-09-12,66233,5480,"[""Keyboard"", ""Headphones"", ""Laptop""]",283.53,"{""loyalty"": ""16%""}",233208,1,Africa +2023-02-16,66234,2051,"[""Laptop"", ""Charger"", ""Keyboard""]",458.96,"{"""": ""13%""}",269576,1,North America +2024-11-13,66235,4897,"[""Laptop"", ""Headphones""]",4929.66,"{""loyalty"": ""18%""}",133112,0,North America +2023-09-14,66236,8978,"[""Headphones"", ""Keyboard""]",1483.1,{},154421,0,Asia +2023-09-15,66237,1097,"[""Keyboard"", ""Charger"", ""Laptop""]",4254.23,{},165052,1,Europe +2024-10-03,66238,2456,"[""Charger""]",2551.74,{},55352,0,Africa +2024-11-24,66239,1852,"[""Wireless Mouse""]",4548.26,{},94141,0,Europe +2023-03-05,66240,8158,"[""Keyboard"", ""Phone"", ""Monitor""]",2380.09,"{"""": ""9%""}",254463,1,North America +2024-02-05,66241,3829,"[""Tablet"", ""Keyboard""]",349.12,{},24966,1,North America +2023-12-24,66242,4317,"[""Monitor"", ""Charger""]",4764.12,"{""loyalty"": ""10%""}",206986,1,Africa +2023-10-04,66243,8108,"[""Monitor""]",594.93,"{""seasonal"": ""9%""}",100696,1,South America +2024-08-18,66244,1211,"[""Tablet"", ""Monitor""]",977.29,"{""promo"": ""17%""}",237393,0,South America +2024-05-24,66245,874,"[""Wireless Mouse""]",1856.7,{},260463,0,North America +2024-02-20,66246,9823,"[""Wireless Mouse"", ""Phone""]",669.54,"{"""": ""30%""}",199765,0,Africa +2024-12-03,66247,9255,"[""Headphones""]",4815.47,"{"""": ""27%""}",69625,1,North America +2024-08-10,66248,3641,"[""Wireless Mouse"", ""Phone""]",2921.5,{},295300,0,Africa +2024-11-06,66249,8157,"[""Monitor""]",958.45,"{"""": ""24%""}",114493,0,Europe +2024-02-10,66250,796,"[""Charger"", ""Keyboard"", ""Laptop""]",604.48,{},74192,1,Africa +2024-05-25,66251,8485,"[""Tablet"", ""Monitor""]",1651.73,"{""promo"": ""27%""}",87655,1,Africa +2023-08-06,66252,4503,"[""Laptop"", ""Monitor"", ""Tablet""]",997.96,{},284275,0,Africa +2023-07-31,66253,842,"[""Tablet""]",2387.06,{},2755,0,Africa +2023-05-06,66254,821,"[""Keyboard"", ""Laptop""]",244.48,"{"""": ""12%""}",58228,1,Europe +2024-05-10,66255,802,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1289.09,"{""promo"": ""13%""}",66716,0,Europe +2024-03-30,66256,8257,"[""Keyboard"", ""Headphones""]",2262.07,{},267454,0,South America +2024-09-10,66257,462,"[""Wireless Mouse""]",955.16,{},67040,0,Asia +2023-11-05,66258,5558,"[""Headphones"", ""Monitor""]",2102.11,{},178003,1,Europe +2024-11-16,66259,3268,"[""Wireless Mouse"", ""Phone""]",2535.85,{},38304,1,Africa +2023-06-05,66260,2375,"[""Headphones"", ""Laptop""]",2296.34,"{""promo"": ""16%""}",139270,1,South America +2023-05-24,66261,4963,"[""Keyboard"", ""Tablet"", ""Laptop""]",1412.43,{},39295,0,North America +2023-07-02,66262,2775,"[""Charger"", ""Phone""]",347.54,{},39722,0,North America +2023-09-02,66263,8624,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1859.46,"{""seasonal"": ""30%""}",240307,1,Europe +2024-07-22,66264,9202,"[""Tablet""]",4092.46,{},139773,0,Asia +2024-05-04,66265,9394,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4287.38,{},183845,0,Africa +2023-01-25,66266,2346,"[""Laptop"", ""Charger"", ""Phone""]",622.98,"{"""": ""19%""}",269217,0,Asia +2024-03-27,66267,4063,"[""Wireless Mouse"", ""Tablet""]",4035.68,"{"""": ""17%""}",45105,0,North America +2023-12-13,66268,9398,"[""Charger""]",591.12,{},246142,0,Africa +2023-02-15,66269,8814,"[""Keyboard""]",2351.65,"{"""": ""5%""}",69232,0,North America +2023-12-27,66270,4235,"[""Headphones"", ""Laptop""]",3124.18,{},164762,1,Africa +2023-06-21,66271,9675,"[""Keyboard"", ""Laptop""]",4776.61,"{""promo"": ""27%""}",276923,0,Europe +2023-05-13,66272,7598,"[""Laptop""]",3149.28,"{"""": ""15%""}",249539,1,Asia +2023-06-25,66273,8279,"[""Keyboard"", ""Headphones""]",3678.14,"{""seasonal"": ""26%""}",204323,0,Europe +2023-12-11,66274,7265,"[""Keyboard"", ""Laptop"", ""Phone""]",3181.84,"{""seasonal"": ""10%""}",109547,0,Asia +2023-12-23,66275,1938,"[""Wireless Mouse""]",186.25,{},151832,1,South America +2024-08-25,66276,9125,"[""Laptop"", ""Phone"", ""Monitor""]",3858.81,{},206145,1,Asia +2023-08-24,66277,6142,"[""Monitor"", ""Keyboard""]",1162.27,{},262219,0,Europe +2023-10-29,66278,9844,"[""Charger"", ""Wireless Mouse""]",1999.56,{},18518,0,Africa +2023-12-12,66279,6008,"[""Wireless Mouse""]",1994.39,{},161284,0,South America +2023-04-27,66280,46,"[""Keyboard"", ""Phone"", ""Laptop""]",742.27,"{""seasonal"": ""15%""}",153593,1,Africa +2024-09-19,66281,9455,"[""Charger"", ""Monitor"", ""Keyboard""]",1311.4,"{""seasonal"": ""30%""}",241068,1,Europe +2023-03-31,66282,9381,"[""Tablet""]",3529.01,"{"""": ""25%""}",298028,0,South America +2024-01-09,66283,5036,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2295.9,"{""promo"": ""20%""}",197240,0,Africa +2023-12-06,66284,2450,"[""Wireless Mouse""]",4881.23,{},241238,0,Asia +2023-12-01,66285,6070,"[""Headphones""]",1240.42,{},208304,0,South America +2024-01-12,66286,4227,"[""Monitor"", ""Headphones"", ""Phone""]",3998.12,"{""seasonal"": ""12%""}",69906,0,South America +2024-01-26,66287,3264,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1245.18,"{""loyalty"": ""14%""}",66089,1,Africa +2023-12-21,66288,357,"[""Charger""]",2057.74,{},191370,1,North America +2023-12-22,66289,3296,"[""Wireless Mouse""]",125.38,"{"""": ""24%""}",179631,1,Europe +2023-05-04,66290,814,"[""Wireless Mouse"", ""Phone""]",2662.93,{},217773,0,South America +2023-08-26,66291,7882,"[""Tablet"", ""Wireless Mouse""]",556.97,{},46771,0,South America +2023-09-25,66292,7653,"[""Keyboard""]",3749.16,{},212208,1,South America +2023-10-06,66293,3506,"[""Laptop"", ""Keyboard"", ""Tablet""]",3202.93,{},156218,1,South America +2023-05-28,66294,5998,"[""Charger""]",4886.77,"{""loyalty"": ""14%""}",86748,0,Africa +2024-03-31,66295,7691,"[""Charger"", ""Tablet""]",3696.58,"{""seasonal"": ""13%""}",180329,0,Asia +2023-07-20,66296,4671,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4443.42,{},215938,1,North America +2023-09-02,66297,9196,"[""Headphones""]",2188.98,"{""seasonal"": ""18%""}",136154,0,South America +2023-02-07,66298,7069,"[""Phone""]",1652.77,{},240040,0,North America +2023-03-06,66299,2204,"[""Headphones""]",4075.62,{},117123,0,North America +2023-10-17,66300,6942,"[""Charger"", ""Headphones""]",3268.65,{},216918,0,Europe +2024-06-07,66301,4077,"[""Keyboard""]",4218.77,"{""loyalty"": ""24%""}",166211,0,Europe +2024-11-12,66302,3883,"[""Monitor""]",1638.28,"{""seasonal"": ""11%""}",164151,1,North America +2023-01-26,66303,905,"[""Charger"", ""Headphones""]",1454.0,"{""loyalty"": ""29%""}",7255,1,North America +2023-11-18,66304,1972,"[""Charger"", ""Tablet""]",3176.13,{},53103,0,South America +2023-07-09,66305,284,"[""Charger""]",1120.32,{},267441,1,North America +2024-02-04,66306,6650,"[""Monitor""]",913.3,"{""promo"": ""15%""}",280462,0,South America +2024-04-23,66307,3951,"[""Charger""]",1537.19,{},45684,0,Europe +2023-09-14,66308,884,"[""Headphones"", ""Monitor"", ""Phone""]",306.85,"{""seasonal"": ""30%""}",105603,0,North America +2024-06-14,66309,4853,"[""Headphones"", ""Tablet""]",78.26,{},255777,1,Africa +2024-11-21,66310,2756,"[""Phone""]",1759.48,"{""seasonal"": ""15%""}",247879,1,Asia +2024-02-28,66311,9124,"[""Headphones"", ""Keyboard""]",4235.66,"{""loyalty"": ""26%""}",79723,0,Asia +2023-07-30,66312,1840,"[""Monitor""]",4505.42,{},132196,0,South America +2024-06-21,66313,7366,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1080.99,{},106466,0,North America +2024-11-02,66314,8185,"[""Laptop"", ""Phone"", ""Charger""]",3254.82,"{""promo"": ""17%""}",236972,0,Europe +2024-12-27,66315,779,"[""Charger""]",2125.02,{},51655,0,Europe +2023-05-22,66316,3896,"[""Charger"", ""Headphones""]",1088.62,{},31652,0,South America +2024-09-05,66317,1897,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2752.78,{},33385,0,South America +2023-04-27,66318,5686,"[""Phone"", ""Keyboard""]",4893.38,"{""seasonal"": ""21%""}",268840,0,Asia +2024-05-18,66319,5661,"[""Tablet"", ""Headphones"", ""Phone""]",4655.22,"{"""": ""9%""}",71924,0,South America +2024-04-06,66320,7930,"[""Headphones"", ""Monitor""]",3509.75,{},265727,1,Africa +2023-05-14,66321,4353,"[""Charger"", ""Headphones""]",2868.34,"{"""": ""18%""}",110574,1,South America +2024-10-27,66322,9324,"[""Keyboard"", ""Monitor""]",3672.58,{},31184,0,Europe +2024-08-05,66323,3361,"[""Charger"", ""Monitor""]",3955.47,{},285340,1,North America +2023-06-29,66324,8397,"[""Keyboard"", ""Laptop""]",3296.66,{},36934,1,Asia +2023-07-30,66325,2449,"[""Charger""]",3592.57,"{""seasonal"": ""19%""}",151056,0,Europe +2023-03-17,66326,5403,"[""Laptop"", ""Headphones""]",839.76,{},252364,1,Europe +2024-01-14,66327,6691,"[""Charger"", ""Phone"", ""Tablet""]",2864.79,"{""seasonal"": ""30%""}",192798,1,Asia +2024-11-11,66328,7924,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1493.83,"{""promo"": ""6%""}",248704,1,North America +2024-08-30,66329,9433,"[""Laptop""]",2447.66,{},15905,1,Africa +2023-03-30,66330,4512,"[""Keyboard""]",4379.44,{},15489,0,Africa +2023-04-05,66331,4549,"[""Monitor"", ""Phone""]",2571.11,{},203158,0,Europe +2023-07-03,66332,8106,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1876.83,"{""seasonal"": ""28%""}",185679,0,North America +2023-09-10,66333,3437,"[""Phone""]",3345.44,{},115965,1,Africa +2023-03-14,66334,8510,"[""Phone"", ""Keyboard"", ""Tablet""]",4353.13,{},152576,0,Europe +2023-04-15,66335,149,"[""Headphones"", ""Keyboard"", ""Laptop""]",1993.04,{},170152,1,South America +2024-12-14,66336,112,"[""Charger""]",2137.62,{},255873,1,Africa +2024-04-05,66337,2194,"[""Monitor""]",1009.1,"{""loyalty"": ""12%""}",224817,0,Africa +2024-01-13,66338,6566,"[""Laptop"", ""Phone""]",455.69,{},144784,1,Africa +2023-08-27,66339,7018,"[""Monitor"", ""Tablet"", ""Laptop""]",3414.01,"{"""": ""8%""}",216459,0,Asia +2023-03-03,66340,7643,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3710.36,{},74095,0,North America +2023-03-21,66341,3801,"[""Laptop"", ""Wireless Mouse""]",1736.08,{},81098,0,Asia +2023-01-01,66342,8300,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4356.62,"{""loyalty"": ""17%""}",27798,1,South America +2023-09-12,66343,8261,"[""Charger""]",2374.27,{},105136,0,Europe +2023-11-28,66344,8388,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",959.58,"{""seasonal"": ""12%""}",47858,1,South America +2024-04-21,66345,6724,"[""Wireless Mouse""]",671.43,{},233845,0,Africa +2023-02-03,66346,2639,"[""Tablet"", ""Monitor""]",3763.26,"{""seasonal"": ""13%""}",56006,0,North America +2023-10-22,66347,8463,"[""Tablet""]",2784.18,"{""seasonal"": ""11%""}",294356,1,Europe +2023-09-14,66348,1552,"[""Phone"", ""Monitor""]",2577.1,{},143474,1,North America +2023-01-12,66349,3529,"[""Headphones""]",808.55,{},294490,1,South America +2023-12-08,66350,9958,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2428.46,{},83482,0,South America +2023-10-01,66351,5829,"[""Charger"", ""Phone""]",3918.63,{},169793,1,Africa +2024-08-13,66352,165,"[""Monitor""]",2606.01,{},66939,1,Asia +2023-06-01,66353,492,"[""Charger""]",2231.79,"{"""": ""18%""}",244557,1,South America +2024-04-24,66354,5916,"[""Keyboard"", ""Wireless Mouse""]",761.78,"{""loyalty"": ""5%""}",282216,1,South America +2024-10-20,66355,3184,"[""Charger""]",4326.39,{},80925,1,Africa +2024-08-05,66356,4204,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3474.73,"{""promo"": ""15%""}",241045,0,Europe +2024-01-08,66357,4599,"[""Headphones""]",2289.34,"{"""": ""20%""}",266827,1,Europe +2023-06-25,66358,1718,"[""Laptop"", ""Headphones"", ""Charger""]",3039.36,{},229348,1,Europe +2024-12-30,66359,1700,"[""Headphones"", ""Laptop""]",2974.33,"{""seasonal"": ""20%""}",89039,0,North America +2023-06-22,66360,8113,"[""Keyboard"", ""Monitor""]",4999.1,{},282877,0,Europe +2024-01-01,66361,9616,"[""Wireless Mouse""]",2154.74,{},64251,1,Europe +2024-12-23,66362,7321,"[""Keyboard""]",1483.54,{},220199,1,North America +2024-08-09,66363,9485,"[""Charger"", ""Laptop""]",3925.09,{},153304,0,Africa +2023-12-08,66364,9293,"[""Charger""]",1649.57,{},244738,1,Asia +2024-10-06,66365,6459,"[""Headphones"", ""Charger"", ""Laptop""]",1305.5,"{""loyalty"": ""27%""}",172329,0,South America +2024-02-02,66366,6692,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4657.47,"{"""": ""17%""}",35073,1,Europe +2024-05-03,66367,3722,"[""Laptop"", ""Tablet"", ""Charger""]",4731.81,{},250805,1,Asia +2024-03-12,66368,4713,"[""Laptop""]",509.86,"{""loyalty"": ""29%""}",235875,1,Africa +2023-11-25,66369,1310,"[""Keyboard""]",231.87,{},66385,1,Africa +2024-06-21,66370,6936,"[""Monitor"", ""Laptop""]",3122.57,"{""loyalty"": ""25%""}",11418,1,North America +2024-09-27,66371,758,"[""Headphones""]",2346.93,"{""loyalty"": ""23%""}",132594,0,North America +2024-07-23,66372,3064,"[""Phone"", ""Laptop""]",1495.02,{},273084,1,South America +2023-03-26,66373,6107,"[""Monitor"", ""Keyboard"", ""Tablet""]",3674.24,{},27168,0,Europe +2023-02-26,66374,9513,"[""Charger"", ""Wireless Mouse""]",2551.94,{},44855,1,Africa +2024-04-03,66375,5250,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3036.91,"{""loyalty"": ""29%""}",154706,1,South America +2024-09-30,66376,2077,"[""Phone"", ""Wireless Mouse""]",4535.41,{},176857,0,South America +2023-05-09,66377,2142,"[""Tablet"", ""Phone"", ""Charger""]",2642.43,{},209919,1,North America +2024-12-11,66378,6741,"[""Laptop""]",1015.79,{},8467,0,Asia +2023-10-17,66379,4442,"[""Wireless Mouse"", ""Phone""]",2251.2,{},137099,1,Asia +2024-05-05,66380,5290,"[""Keyboard""]",1726.88,"{""loyalty"": ""11%""}",19258,0,North America +2024-06-01,66381,8115,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3083.47,"{"""": ""16%""}",220319,0,North America +2024-07-16,66382,1072,"[""Wireless Mouse""]",1165.65,"{""seasonal"": ""10%""}",144612,1,Africa +2023-01-22,66383,5090,"[""Laptop""]",2677.18,{},192538,1,Europe +2023-02-15,66384,9670,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4371.5,{},18288,0,South America +2023-11-05,66385,6022,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2280.85,{},230920,1,Europe +2023-08-31,66386,436,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1519.94,"{"""": ""29%""}",132931,0,Asia +2023-08-16,66387,4251,"[""Charger"", ""Keyboard"", ""Phone""]",1645.2,"{""loyalty"": ""20%""}",154971,1,South America +2024-03-16,66388,5004,"[""Phone"", ""Laptop""]",2792.45,"{""seasonal"": ""14%""}",44830,0,Asia +2024-11-13,66389,7593,"[""Keyboard"", ""Tablet""]",2372.54,"{"""": ""10%""}",269609,1,Africa +2023-03-09,66390,1283,"[""Wireless Mouse""]",514.53,"{""loyalty"": ""22%""}",208851,0,Asia +2024-10-16,66391,1382,"[""Monitor"", ""Laptop""]",2153.47,{},159786,0,South America +2024-04-24,66392,1860,"[""Keyboard"", ""Phone""]",4355.04,"{""loyalty"": ""5%""}",194409,0,Asia +2024-10-02,66393,4342,"[""Keyboard"", ""Headphones""]",2288.29,{},267420,1,Africa +2023-12-01,66394,5107,"[""Charger""]",1113.11,{},270743,0,Asia +2024-03-23,66395,2029,"[""Wireless Mouse"", ""Headphones""]",106.06,"{""loyalty"": ""16%""}",183881,0,Africa +2024-01-04,66396,1734,"[""Phone""]",4090.33,"{""promo"": ""15%""}",16805,1,Asia +2024-05-18,66397,4980,"[""Monitor"", ""Tablet""]",3413.37,{},37214,1,North America +2024-08-12,66398,3915,"[""Laptop"", ""Headphones"", ""Tablet""]",328.85,{},253765,1,Africa +2023-03-21,66399,8161,"[""Tablet"", ""Wireless Mouse""]",647.99,"{""seasonal"": ""21%""}",69933,0,Europe +2023-10-04,66400,2975,"[""Keyboard"", ""Headphones"", ""Laptop""]",106.85,{},54306,0,Europe +2023-11-01,66401,7481,"[""Headphones""]",3414.61,"{""seasonal"": ""27%""}",207528,0,South America +2024-04-29,66402,6509,"[""Phone""]",3689.52,"{"""": ""23%""}",112546,1,South America +2024-02-16,66403,391,"[""Phone"", ""Monitor""]",3182.47,{},140102,0,Africa +2023-02-14,66404,5910,"[""Monitor""]",425.86,{},195125,0,Asia +2024-04-23,66405,559,"[""Charger""]",1636.82,{},276448,1,Europe +2023-10-07,66406,4459,"[""Wireless Mouse""]",2703.8,"{"""": ""20%""}",224182,0,North America +2024-03-18,66407,922,"[""Phone"", ""Laptop"", ""Charger""]",3078.0,"{""seasonal"": ""15%""}",106970,1,Asia +2023-09-01,66408,9797,"[""Laptop""]",3108.1,{},106417,0,South America +2024-05-20,66409,8001,"[""Phone"", ""Keyboard""]",4882.61,"{"""": ""6%""}",122594,1,Europe +2024-04-04,66410,5744,"[""Laptop""]",1680.29,{},206714,0,Europe +2023-10-26,66411,3175,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3044.0,{},54033,1,North America +2023-05-28,66412,2921,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3473.57,"{""loyalty"": ""21%""}",20991,1,North America +2023-03-20,66413,5006,"[""Charger"", ""Wireless Mouse""]",179.04,"{""promo"": ""12%""}",123705,1,North America +2023-11-07,66414,6761,"[""Monitor"", ""Wireless Mouse""]",2704.11,"{""seasonal"": ""12%""}",251399,1,South America +2024-06-06,66415,2809,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1890.51,{},13686,0,Asia +2023-12-17,66416,3287,"[""Tablet"", ""Phone""]",968.72,"{"""": ""8%""}",146709,0,Africa +2024-01-06,66417,9190,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3442.93,"{""seasonal"": ""28%""}",299804,0,North America +2024-06-03,66418,6320,"[""Laptop"", ""Monitor"", ""Charger""]",4915.6,"{""loyalty"": ""7%""}",114097,1,South America +2023-08-06,66419,7729,"[""Laptop""]",2879.29,"{""seasonal"": ""12%""}",146512,0,North America +2024-12-01,66420,4487,"[""Phone""]",1441.57,"{""loyalty"": ""26%""}",277440,0,Africa +2023-02-21,66421,2545,"[""Charger""]",4720.64,{},282293,1,Asia +2023-11-09,66422,4870,"[""Monitor""]",4179.87,"{"""": ""29%""}",8446,1,Asia +2023-02-05,66423,3136,"[""Headphones""]",1589.78,"{""seasonal"": ""29%""}",133845,0,South America +2023-08-24,66424,904,"[""Charger"", ""Tablet"", ""Phone""]",3310.1,"{""promo"": ""22%""}",156599,0,South America +2024-03-09,66425,5712,"[""Monitor"", ""Laptop""]",4197.5,{},31210,1,North America +2024-06-22,66426,544,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3164.14,{},133274,0,North America +2023-09-18,66427,5378,"[""Phone"", ""Keyboard""]",577.47,{},168125,1,Europe +2024-09-15,66428,2761,"[""Wireless Mouse"", ""Monitor""]",4923.76,"{""promo"": ""5%""}",294828,1,North America +2024-03-26,66429,9257,"[""Phone""]",1270.48,{},89628,1,North America +2023-04-25,66430,1414,"[""Tablet""]",481.26,{},23009,1,North America +2024-03-09,66431,73,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",794.91,"{""seasonal"": ""13%""}",269864,1,Asia +2023-05-30,66432,4380,"[""Phone"", ""Charger""]",1955.86,"{""loyalty"": ""19%""}",249812,0,Asia +2024-12-21,66433,2529,"[""Monitor"", ""Laptop""]",3639.7,{},57867,0,Africa +2023-11-19,66434,4887,"[""Phone""]",1350.46,{},156395,0,Africa +2024-02-28,66435,966,"[""Laptop""]",192.58,"{"""": ""19%""}",180498,0,South America +2023-11-07,66436,3488,"[""Tablet"", ""Monitor"", ""Charger""]",2584.38,"{""seasonal"": ""10%""}",184768,0,Africa +2023-11-19,66437,5627,"[""Wireless Mouse""]",2058.46,"{""loyalty"": ""6%""}",92893,0,Europe +2023-03-03,66438,8393,"[""Phone"", ""Charger""]",2400.69,{},10754,1,Asia +2023-10-14,66439,8782,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4953.01,{},231191,1,North America +2024-05-18,66440,7205,"[""Tablet""]",929.61,"{""seasonal"": ""13%""}",168124,0,Europe +2023-10-02,66441,3630,"[""Charger"", ""Tablet"", ""Monitor""]",3804.91,{},244519,1,Europe +2024-04-28,66442,1277,"[""Keyboard"", ""Laptop"", ""Headphones""]",2824.57,"{""loyalty"": ""9%""}",60145,0,South America +2023-03-04,66443,594,"[""Keyboard"", ""Charger"", ""Tablet""]",2047.42,{},246332,1,North America +2023-12-24,66444,9522,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",564.22,"{""seasonal"": ""20%""}",118733,1,Europe +2023-07-01,66445,3714,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2646.47,{},116613,1,Asia +2023-01-06,66446,9035,"[""Charger"", ""Phone"", ""Keyboard""]",2831.02,{},43532,0,Asia +2024-01-11,66447,897,"[""Wireless Mouse""]",181.68,"{""promo"": ""16%""}",76678,1,Africa +2023-10-16,66448,9880,"[""Phone""]",1302.2,{},108986,1,Asia +2023-07-04,66449,8420,"[""Charger"", ""Monitor""]",2734.46,"{""promo"": ""7%""}",241793,1,North America +2024-06-22,66450,6517,"[""Wireless Mouse""]",687.24,"{"""": ""17%""}",281243,0,Africa +2024-07-21,66451,4750,"[""Monitor"", ""Phone"", ""Keyboard""]",264.05,{},196815,0,North America +2023-09-01,66452,8284,"[""Tablet""]",3939.28,"{""promo"": ""9%""}",133477,0,North America +2024-10-28,66453,663,"[""Headphones"", ""Tablet""]",3923.9,"{"""": ""13%""}",141757,1,Africa +2024-02-24,66454,7836,"[""Keyboard""]",1404.57,"{"""": ""28%""}",104432,1,Europe +2024-02-06,66455,2930,"[""Laptop"", ""Tablet""]",4495.55,"{"""": ""6%""}",216545,0,Europe +2024-02-25,66456,3212,"[""Headphones""]",2766.14,"{""promo"": ""13%""}",73122,0,Asia +2023-01-29,66457,6809,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3893.89,"{""promo"": ""15%""}",65853,0,South America +2024-10-05,66458,5730,"[""Charger"", ""Headphones"", ""Tablet""]",553.48,{},10296,0,Asia +2023-09-26,66459,8606,"[""Laptop"", ""Headphones""]",4836.13,{},248859,1,Europe +2024-04-21,66460,1070,"[""Keyboard""]",2340.39,{},254628,1,Africa +2024-03-18,66461,9521,"[""Phone""]",3810.2,{},289815,0,South America +2023-05-24,66462,4721,"[""Phone"", ""Tablet"", ""Monitor""]",3545.08,"{""loyalty"": ""8%""}",262703,1,Asia +2023-09-14,66463,8001,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",70.71,{},169047,1,Africa +2023-09-03,66464,8057,"[""Tablet""]",4373.85,"{"""": ""16%""}",22467,1,Europe +2023-01-02,66465,4144,"[""Tablet"", ""Charger"", ""Headphones""]",4721.33,"{""promo"": ""24%""}",64108,0,Africa +2023-09-20,66466,8125,"[""Keyboard"", ""Monitor"", ""Headphones""]",4213.54,"{""seasonal"": ""25%""}",154376,1,South America +2024-06-27,66467,3295,"[""Phone"", ""Headphones""]",1347.85,{},127073,1,Asia +2023-04-15,66468,9913,"[""Charger"", ""Laptop""]",1363.19,"{""promo"": ""29%""}",1408,1,South America +2023-04-11,66469,1059,"[""Wireless Mouse""]",2857.12,"{""promo"": ""16%""}",162379,1,North America +2024-11-24,66470,2570,"[""Wireless Mouse"", ""Keyboard""]",3396.71,"{""loyalty"": ""30%""}",42914,1,South America +2024-11-09,66471,2523,"[""Tablet"", ""Charger"", ""Monitor""]",4223.69,"{"""": ""6%""}",196070,1,Asia +2024-02-07,66472,2932,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1980.71,"{""promo"": ""17%""}",207473,0,South America +2024-12-05,66473,3963,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1792.64,"{""seasonal"": ""17%""}",257842,0,South America +2023-04-15,66474,6137,"[""Charger"", ""Phone""]",254.11,{},104433,1,Europe +2024-10-11,66475,7953,"[""Laptop"", ""Monitor""]",3999.55,"{""seasonal"": ""9%""}",191476,0,North America +2023-06-20,66476,9045,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1178.52,"{""promo"": ""24%""}",73117,1,North America +2023-03-03,66477,4391,"[""Wireless Mouse"", ""Phone""]",3569.16,"{"""": ""16%""}",207822,0,South America +2024-02-12,66478,5286,"[""Charger""]",2002.31,"{"""": ""25%""}",270426,0,Africa +2024-08-01,66479,561,"[""Charger"", ""Tablet""]",1433.1,{},162342,1,Europe +2023-06-17,66480,9861,"[""Phone"", ""Headphones""]",2392.78,{},51457,1,North America +2024-03-30,66481,3489,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1991.86,"{""seasonal"": ""17%""}",276525,0,South America +2024-08-12,66482,3063,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3874.01,{},291446,0,Asia +2023-11-26,66483,5024,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1953.96,{},298941,1,Europe +2024-01-30,66484,5555,"[""Laptop"", ""Headphones""]",349.96,{},174040,0,South America +2023-03-14,66485,4493,"[""Charger"", ""Headphones"", ""Laptop""]",4090.5,"{""seasonal"": ""5%""}",8480,0,Europe +2023-12-17,66486,2548,"[""Phone""]",4954.11,{},240569,1,Asia +2024-01-29,66487,4806,"[""Charger"", ""Tablet"", ""Phone""]",4721.58,"{""seasonal"": ""5%""}",92150,1,Africa +2024-10-29,66488,3869,"[""Tablet"", ""Phone"", ""Monitor""]",3870.7,{},124800,1,South America +2023-02-28,66489,1807,"[""Tablet"", ""Headphones"", ""Charger""]",2540.62,{},32355,1,Africa +2024-05-27,66490,1101,"[""Charger"", ""Tablet"", ""Laptop""]",3128.87,"{""promo"": ""23%""}",293496,1,Africa +2024-01-31,66491,5585,"[""Tablet"", ""Keyboard"", ""Headphones""]",597.44,"{"""": ""14%""}",180302,1,South America +2024-06-17,66492,1819,"[""Tablet"", ""Monitor"", ""Keyboard""]",1789.91,"{""promo"": ""16%""}",285588,0,Africa +2024-06-25,66493,7041,"[""Tablet"", ""Headphones"", ""Monitor""]",3077.62,"{""promo"": ""20%""}",172466,1,Asia +2023-09-08,66494,9379,"[""Wireless Mouse""]",119.61,"{""loyalty"": ""6%""}",271333,1,Asia +2024-06-03,66495,5647,"[""Headphones"", ""Keyboard"", ""Tablet""]",2677.83,{},188577,1,South America +2024-10-08,66496,5587,"[""Keyboard"", ""Phone""]",1217.55,{},11908,1,North America +2024-11-29,66497,5942,"[""Headphones"", ""Laptop"", ""Charger""]",1160.71,"{""loyalty"": ""8%""}",80937,1,Africa +2023-04-25,66498,3635,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3717.63,{},168474,1,Africa +2024-04-20,66499,7950,"[""Charger"", ""Phone"", ""Tablet""]",3746.72,{},251030,1,South America +2023-12-10,66500,7410,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3673.26,{},281394,1,Africa +2023-06-29,66501,6899,"[""Headphones"", ""Laptop"", ""Phone""]",2664.38,"{""loyalty"": ""14%""}",104242,1,Asia +2024-12-17,66502,2898,"[""Charger"", ""Tablet""]",3455.35,{},251779,1,Europe +2023-08-27,66503,1928,"[""Headphones"", ""Monitor""]",1352.97,"{""promo"": ""27%""}",51675,1,Europe +2023-05-07,66504,901,"[""Phone"", ""Headphones""]",4597.22,"{"""": ""16%""}",121432,0,South America +2023-04-19,66505,2034,"[""Monitor""]",2308.99,"{""seasonal"": ""17%""}",89907,0,South America +2024-03-29,66506,876,"[""Monitor""]",3221.33,{},186534,1,Africa +2024-09-28,66507,962,"[""Laptop"", ""Keyboard"", ""Phone""]",2124.39,{},79294,0,North America +2023-02-20,66508,9806,"[""Keyboard"", ""Wireless Mouse""]",2953.97,"{""promo"": ""25%""}",40427,1,Europe +2023-04-18,66509,7922,"[""Monitor""]",4459.84,"{""seasonal"": ""12%""}",197448,0,Europe +2024-09-21,66510,315,"[""Monitor"", ""Laptop"", ""Headphones""]",3763.33,"{""seasonal"": ""28%""}",273289,1,Asia +2023-08-12,66511,6775,"[""Tablet"", ""Laptop""]",1732.92,{},264927,1,South America +2024-10-07,66512,3499,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4474.68,"{"""": ""10%""}",164522,0,North America +2024-02-28,66513,3909,"[""Phone""]",3201.87,"{""promo"": ""26%""}",235393,1,Europe +2024-01-28,66514,5961,"[""Headphones""]",2847.2,"{"""": ""8%""}",233252,0,Europe +2023-04-05,66515,4967,"[""Charger""]",1450.41,{},215208,0,Europe +2023-10-04,66516,2927,"[""Phone""]",4037.93,"{""loyalty"": ""17%""}",177202,1,Asia +2024-05-22,66517,5621,"[""Monitor""]",430.3,{},166339,1,Africa +2024-12-13,66518,4122,"[""Monitor"", ""Keyboard""]",2041.45,"{""promo"": ""21%""}",135617,1,Asia +2024-07-03,66519,2344,"[""Charger"", ""Headphones"", ""Tablet""]",3640.41,{},195113,1,Europe +2023-12-15,66520,7986,"[""Headphones"", ""Monitor""]",4354.62,{},61914,0,Europe +2023-05-09,66521,9702,"[""Headphones"", ""Wireless Mouse""]",480.25,{},156560,0,Africa +2023-01-12,66522,6168,"[""Keyboard"", ""Phone""]",410.78,{},219950,1,North America +2023-08-11,66523,3257,"[""Tablet"", ""Charger""]",1982.52,{},205026,1,South America +2024-05-09,66524,4382,"[""Phone"", ""Keyboard""]",1158.36,{},48024,1,Asia +2023-10-20,66525,8892,"[""Tablet"", ""Phone""]",3411.2,{},228122,1,South America +2024-02-04,66526,520,"[""Monitor""]",3000.78,{},152497,0,Asia +2023-06-17,66527,2196,"[""Keyboard"", ""Laptop"", ""Tablet""]",2019.48,{},159890,0,Asia +2024-05-26,66528,4744,"[""Charger""]",3877.87,"{""promo"": ""13%""}",32475,1,South America +2023-12-15,66529,2323,"[""Keyboard"", ""Headphones""]",176.84,"{"""": ""7%""}",39552,1,North America +2023-12-25,66530,1914,"[""Keyboard""]",3406.24,"{""promo"": ""24%""}",214306,1,South America +2024-06-28,66531,1011,"[""Keyboard"", ""Monitor""]",1507.2,{},3884,1,Asia +2023-01-15,66532,7354,"[""Tablet""]",1957.99,{},289958,1,Africa +2024-07-27,66533,6959,"[""Headphones"", ""Wireless Mouse""]",1218.51,{},8275,1,Europe +2023-10-20,66534,4944,"[""Wireless Mouse""]",4837.16,"{""promo"": ""20%""}",9019,0,Asia +2024-03-29,66535,7188,"[""Monitor"", ""Laptop""]",4714.36,{},111734,1,South America +2023-12-16,66536,823,"[""Phone"", ""Wireless Mouse"", ""Charger""]",317.52,"{""promo"": ""13%""}",42507,1,Europe +2023-01-09,66537,2428,"[""Laptop""]",2599.65,"{""loyalty"": ""13%""}",3816,1,North America +2023-08-02,66538,6814,"[""Headphones""]",339.32,{},92978,1,South America +2023-12-20,66539,9428,"[""Keyboard""]",2604.96,"{""seasonal"": ""6%""}",114789,1,North America +2024-10-09,66540,7164,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1582.61,{},284376,0,Europe +2024-04-13,66541,7220,"[""Tablet""]",4723.92,{},245237,1,Africa +2024-03-03,66542,9767,"[""Keyboard"", ""Headphones""]",3553.95,"{"""": ""11%""}",107082,1,South America +2023-08-22,66543,2148,"[""Laptop"", ""Wireless Mouse""]",3798.4,"{""seasonal"": ""12%""}",112244,1,North America +2024-07-18,66544,9383,"[""Keyboard""]",3286.12,"{""promo"": ""17%""}",136724,0,Africa +2023-05-14,66545,7532,"[""Headphones""]",4845.86,"{""seasonal"": ""9%""}",31931,0,Asia +2024-04-11,66546,8166,"[""Headphones"", ""Charger""]",2205.72,"{""seasonal"": ""8%""}",121716,0,Africa +2023-12-26,66547,1423,"[""Laptop"", ""Monitor"", ""Headphones""]",456.22,"{""loyalty"": ""5%""}",250462,1,North America +2024-08-11,66548,8620,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4009.69,"{""seasonal"": ""23%""}",209622,1,Asia +2023-07-11,66549,9992,"[""Headphones"", ""Charger""]",3032.55,{},248022,1,Asia +2023-02-18,66550,3035,"[""Wireless Mouse""]",3296.6,{},176722,1,Asia +2024-01-29,66551,1893,"[""Laptop"", ""Monitor""]",1378.26,"{""loyalty"": ""20%""}",266378,0,Africa +2023-11-10,66552,7446,"[""Charger"", ""Tablet""]",3842.18,"{""seasonal"": ""7%""}",217490,1,North America +2024-09-19,66553,3515,"[""Laptop""]",2962.3,{},74473,1,Africa +2024-07-06,66554,317,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1680.55,{},241301,0,North America +2023-03-16,66555,3348,"[""Monitor""]",2907.17,"{""loyalty"": ""18%""}",23660,0,Europe +2024-03-13,66556,6226,"[""Monitor""]",3936.3,{},103105,1,North America +2024-12-17,66557,5922,"[""Monitor"", ""Headphones"", ""Laptop""]",2006.62,{},252908,0,South America +2024-05-31,66558,4787,"[""Phone""]",2508.85,"{""loyalty"": ""7%""}",137545,0,North America +2024-07-13,66559,3408,"[""Monitor""]",3759.83,{},200275,1,South America +2023-01-12,66560,8833,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4319.46,"{""loyalty"": ""26%""}",71336,1,Asia +2023-10-01,66561,8556,"[""Wireless Mouse"", ""Phone""]",4589.84,{},283017,1,North America +2024-01-24,66562,815,"[""Phone""]",1181.5,"{""loyalty"": ""22%""}",180724,1,Asia +2023-11-21,66563,4033,"[""Keyboard""]",4775.39,{},107857,1,Europe +2023-05-24,66564,8268,"[""Monitor"", ""Keyboard""]",50.47,{},6443,0,Europe +2023-10-09,66565,746,"[""Keyboard"", ""Phone""]",100.51,"{""loyalty"": ""26%""}",288664,1,Europe +2024-05-18,66566,8998,"[""Monitor""]",2759.64,"{"""": ""27%""}",49612,0,Asia +2023-04-17,66567,8305,"[""Laptop"", ""Tablet""]",2685.05,"{""promo"": ""24%""}",1083,1,South America +2024-12-10,66568,6692,"[""Monitor""]",2409.94,"{""seasonal"": ""7%""}",19421,0,Africa +2023-08-11,66569,352,"[""Wireless Mouse""]",247.74,{},142239,0,South America +2024-03-20,66570,507,"[""Laptop"", ""Monitor""]",4118.29,"{"""": ""10%""}",136262,0,Asia +2023-12-28,66571,4775,"[""Laptop"", ""Monitor"", ""Tablet""]",1040.16,{},38410,0,South America +2023-06-06,66572,7811,"[""Laptop"", ""Keyboard"", ""Tablet""]",4043.77,"{""promo"": ""8%""}",223454,1,Asia +2023-11-05,66573,3808,"[""Laptop"", ""Monitor"", ""Tablet""]",829.02,"{""loyalty"": ""22%""}",21626,0,Asia +2023-11-22,66574,4980,"[""Wireless Mouse""]",3543.51,{},7754,1,North America +2023-09-29,66575,9120,"[""Laptop""]",3536.23,"{""loyalty"": ""21%""}",79069,0,Africa +2023-08-30,66576,7966,"[""Headphones"", ""Laptop""]",2893.99,{},173621,0,North America +2023-07-26,66577,2441,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2113.15,"{""promo"": ""20%""}",238116,1,Europe +2023-06-30,66578,6948,"[""Charger""]",2606.96,"{""seasonal"": ""6%""}",137820,0,South America +2023-07-03,66579,2249,"[""Wireless Mouse"", ""Keyboard""]",2075.58,"{""loyalty"": ""28%""}",206812,1,South America +2024-09-21,66580,9131,"[""Keyboard""]",3378.77,"{""promo"": ""13%""}",218927,0,Asia +2024-08-29,66581,2665,"[""Wireless Mouse"", ""Headphones""]",4397.72,{},101586,0,North America +2024-04-17,66582,2510,"[""Laptop"", ""Monitor""]",4031.91,{},201874,0,Africa +2023-09-28,66583,379,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2199.95,{},41362,0,Africa +2024-12-10,66584,745,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2206.37,{},31611,1,Africa +2024-07-31,66585,5543,"[""Phone"", ""Charger""]",2853.73,"{""loyalty"": ""14%""}",157015,0,Africa +2023-04-09,66586,5223,"[""Tablet"", ""Phone""]",1686.38,{},290369,1,Africa +2024-01-20,66587,3841,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3911.57,"{"""": ""23%""}",91460,0,Asia +2023-11-26,66588,9993,"[""Tablet"", ""Keyboard"", ""Phone""]",2972.2,"{""promo"": ""12%""}",59059,0,North America +2024-02-08,66589,82,"[""Charger"", ""Keyboard"", ""Monitor""]",4660.26,"{""promo"": ""9%""}",11476,0,Europe +2023-03-13,66590,7189,"[""Phone"", ""Keyboard"", ""Laptop""]",295.54,"{""loyalty"": ""6%""}",32444,1,North America +2023-09-01,66591,2853,"[""Phone"", ""Tablet"", ""Keyboard""]",4341.02,"{""seasonal"": ""23%""}",164957,1,Asia +2023-02-24,66592,2616,"[""Keyboard""]",726.7,{},102257,0,Africa +2023-10-11,66593,7980,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2749.19,{},208540,1,South America +2024-05-14,66594,2523,"[""Headphones"", ""Laptop""]",696.45,"{""seasonal"": ""25%""}",26008,0,South America +2023-03-17,66595,3474,"[""Wireless Mouse"", ""Laptop""]",1500.22,"{"""": ""7%""}",43393,0,South America +2024-01-09,66596,6538,"[""Tablet"", ""Monitor"", ""Phone""]",1624.24,{},16113,0,South America +2024-08-28,66597,3543,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3957.67,"{"""": ""30%""}",167279,1,Europe +2024-09-27,66598,5295,"[""Keyboard""]",4148.47,{},28701,1,South America +2023-02-03,66599,5418,"[""Charger""]",2844.55,{},23208,0,North America +2023-08-13,66600,7067,"[""Monitor""]",142.79,{},200040,1,Africa +2024-02-07,66601,3408,"[""Laptop"", ""Phone"", ""Monitor""]",3961.06,{},198393,1,South America +2024-09-03,66602,248,"[""Phone""]",4099.59,"{""promo"": ""30%""}",254052,0,Europe +2023-10-03,66603,701,"[""Headphones"", ""Charger"", ""Phone""]",432.59,{},12192,1,Africa +2023-07-21,66604,3451,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4342.51,"{""loyalty"": ""30%""}",257271,1,South America +2023-01-16,66605,5639,"[""Charger"", ""Monitor"", ""Headphones""]",2789.81,{},75496,1,Asia +2024-03-15,66606,4339,"[""Keyboard"", ""Tablet""]",4627.61,{},172253,1,North America +2024-03-11,66607,4836,"[""Laptop"", ""Headphones""]",2452.16,"{""seasonal"": ""8%""}",15794,0,North America +2024-10-03,66608,590,"[""Charger"", ""Headphones""]",565.7,{},78158,1,Asia +2023-12-06,66609,729,"[""Phone""]",4947.98,"{""loyalty"": ""7%""}",124944,0,Europe +2024-08-02,66610,4349,"[""Tablet"", ""Laptop"", ""Phone""]",1808.17,"{"""": ""22%""}",32993,0,Europe +2023-10-13,66611,8727,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3074.15,"{""promo"": ""18%""}",273130,0,North America +2023-12-06,66612,5070,"[""Phone"", ""Tablet""]",4948.42,{},113099,1,South America +2024-06-01,66613,7968,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3119.35,"{""promo"": ""13%""}",158486,0,Asia +2024-06-19,66614,7506,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1320.83,"{""promo"": ""8%""}",1156,1,North America +2023-02-11,66615,6072,"[""Laptop"", ""Wireless Mouse""]",368.38,"{""promo"": ""16%""}",118764,1,Asia +2023-03-06,66616,6412,"[""Wireless Mouse""]",4663.68,"{""loyalty"": ""9%""}",26194,0,North America +2023-08-11,66617,4328,"[""Charger"", ""Keyboard"", ""Monitor""]",4695.09,"{""seasonal"": ""14%""}",172370,0,South America +2023-10-18,66618,511,"[""Monitor"", ""Headphones""]",1572.61,{},267773,0,Asia +2023-01-17,66619,2537,"[""Headphones""]",3245.99,{},83597,0,South America +2023-12-10,66620,2687,"[""Wireless Mouse""]",3793.28,"{""loyalty"": ""6%""}",174293,0,Asia +2024-02-20,66621,3874,"[""Charger"", ""Headphones""]",4671.01,"{""seasonal"": ""16%""}",155151,1,North America +2023-05-22,66622,1645,"[""Monitor""]",4583.18,"{""seasonal"": ""22%""}",275797,0,Europe +2023-04-26,66623,1640,"[""Tablet""]",128.7,"{"""": ""14%""}",174188,1,North America +2023-02-13,66624,5978,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",192.8,{},256434,1,North America +2024-11-24,66625,2952,"[""Charger""]",4099.14,"{""loyalty"": ""23%""}",217671,0,Europe +2024-11-10,66626,3004,"[""Laptop"", ""Keyboard"", ""Charger""]",278.24,{},242942,0,Africa +2024-12-10,66627,2772,"[""Keyboard""]",1991.66,"{""promo"": ""5%""}",286082,1,Africa +2023-12-19,66628,6062,"[""Wireless Mouse"", ""Keyboard""]",1540.84,{},273565,1,South America +2023-06-20,66629,3332,"[""Phone"", ""Laptop""]",371.64,{},48456,0,North America +2023-08-19,66630,4773,"[""Wireless Mouse""]",2378.19,{},225048,0,Africa +2023-02-24,66631,8449,"[""Keyboard"", ""Wireless Mouse""]",3689.06,"{"""": ""12%""}",238375,1,Asia +2023-12-17,66632,180,"[""Monitor"", ""Keyboard""]",1944.9,{},283949,0,South America +2024-08-18,66633,3250,"[""Monitor"", ""Tablet"", ""Headphones""]",3221.13,{},96582,1,North America +2023-04-15,66634,8627,"[""Laptop"", ""Headphones""]",3500.97,{},9531,1,South America +2023-10-24,66635,3793,"[""Tablet""]",2821.16,"{""promo"": ""19%""}",10400,0,South America +2024-04-12,66636,8814,"[""Headphones"", ""Tablet"", ""Charger""]",1411.18,{},187167,1,North America +2023-11-13,66637,1388,"[""Laptop"", ""Phone"", ""Monitor""]",2181.31,{},29195,1,Asia +2023-06-27,66638,1412,"[""Keyboard"", ""Headphones""]",3255.24,"{""loyalty"": ""6%""}",242323,0,Asia +2023-09-16,66639,983,"[""Charger"", ""Tablet"", ""Keyboard""]",935.72,"{"""": ""14%""}",297337,0,Africa +2024-07-07,66640,1451,"[""Wireless Mouse"", ""Phone""]",4769.6,{},285344,1,Asia +2023-07-10,66641,4022,"[""Monitor""]",411.2,"{""seasonal"": ""26%""}",276805,0,Africa +2024-07-31,66642,7539,"[""Monitor""]",1449.73,{},202204,0,Asia +2024-11-26,66643,1758,"[""Charger"", ""Headphones""]",4327.03,"{""loyalty"": ""11%""}",74096,0,South America +2024-10-20,66644,8587,"[""Headphones"", ""Tablet""]",1855.44,{},218070,0,North America +2024-09-07,66645,127,"[""Headphones""]",4264.62,{},249366,0,North America +2023-02-16,66646,4871,"[""Charger"", ""Laptop""]",3233.6,"{""promo"": ""18%""}",230550,1,Asia +2023-07-29,66647,4020,"[""Laptop"", ""Tablet""]",4115.86,"{""loyalty"": ""9%""}",262093,1,North America +2024-03-14,66648,610,"[""Laptop""]",4372.48,{},47952,0,Europe +2023-03-06,66649,6301,"[""Phone""]",799.89,{},217088,1,North America +2024-12-03,66650,1516,"[""Tablet"", ""Headphones""]",572.2,{},252463,0,Africa +2023-12-22,66651,2733,"[""Tablet"", ""Monitor""]",1429.32,"{""promo"": ""10%""}",209280,1,Europe +2023-07-30,66652,7813,"[""Charger""]",1174.92,"{""promo"": ""10%""}",233666,0,Africa +2024-11-19,66653,8398,"[""Charger"", ""Monitor"", ""Laptop""]",673.53,"{"""": ""15%""}",234217,1,Europe +2023-10-02,66654,8100,"[""Tablet""]",1592.6,"{""loyalty"": ""21%""}",286293,0,South America +2024-05-16,66655,3618,"[""Tablet""]",2984.57,"{""seasonal"": ""18%""}",224235,0,Africa +2024-05-30,66656,636,"[""Phone"", ""Charger""]",3577.43,"{""loyalty"": ""18%""}",262259,0,North America +2024-04-27,66657,5449,"[""Keyboard"", ""Headphones""]",1518.34,{},149662,1,Asia +2024-04-21,66658,7859,"[""Laptop"", ""Keyboard""]",2621.49,{},34401,0,Africa +2023-03-14,66659,3919,"[""Phone"", ""Charger"", ""Keyboard""]",2798.44,{},96723,1,North America +2023-03-05,66660,1810,"[""Phone"", ""Laptop"", ""Headphones""]",3965.89,"{""promo"": ""17%""}",271355,0,Africa +2024-03-18,66661,2425,"[""Tablet"", ""Charger""]",1335.81,{},253367,0,North America +2023-05-19,66662,4517,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2050.26,"{""seasonal"": ""29%""}",110130,0,North America +2024-10-03,66663,8597,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3536.56,{},273369,0,Asia +2023-11-13,66664,6368,"[""Phone""]",4027.76,{},148077,1,Africa +2023-09-18,66665,3242,"[""Laptop"", ""Tablet""]",2597.46,"{""loyalty"": ""27%""}",236220,1,Africa +2024-05-28,66666,4763,"[""Tablet""]",4941.74,"{""loyalty"": ""8%""}",15192,1,North America +2023-12-29,66667,8395,"[""Tablet"", ""Monitor"", ""Laptop""]",1249.17,{},260243,1,Africa +2023-12-16,66668,9617,"[""Keyboard"", ""Laptop"", ""Phone""]",2799.54,{},296908,1,Asia +2024-08-29,66669,6212,"[""Wireless Mouse"", ""Monitor""]",4242.53,{},109376,0,Europe +2024-06-28,66670,1509,"[""Phone""]",1966.63,{},93040,1,Europe +2024-04-02,66671,3085,"[""Tablet""]",4942.07,{},131009,0,Africa +2023-09-23,66672,3751,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1783.99,"{""loyalty"": ""24%""}",26166,0,North America +2023-03-22,66673,2213,"[""Tablet"", ""Monitor""]",2167.61,"{""seasonal"": ""25%""}",210995,1,North America +2023-01-24,66674,5988,"[""Laptop"", ""Headphones"", ""Charger""]",3093.15,"{""seasonal"": ""27%""}",275470,0,South America +2024-03-07,66675,8104,"[""Phone""]",3265.55,{},167655,0,Asia +2024-04-01,66676,7034,"[""Laptop""]",4262.33,{},166547,0,Asia +2024-06-03,66677,9702,"[""Wireless Mouse""]",1691.83,"{""loyalty"": ""17%""}",227883,1,Europe +2024-08-08,66678,4389,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3399.79,"{"""": ""5%""}",86875,1,Europe +2024-05-08,66679,5660,"[""Charger"", ""Keyboard""]",3219.8,{},280713,0,Europe +2023-08-02,66680,642,"[""Charger"", ""Laptop"", ""Tablet""]",691.64,"{""loyalty"": ""26%""}",184520,0,Asia +2023-11-25,66681,9761,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2150.25,{},145579,1,Europe +2024-07-24,66682,9761,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4519.52,"{"""": ""20%""}",227547,0,South America +2023-06-25,66683,7015,"[""Charger"", ""Keyboard""]",4890.85,"{""loyalty"": ""18%""}",167080,1,North America +2024-11-03,66684,7192,"[""Monitor"", ""Tablet"", ""Keyboard""]",2795.98,"{""promo"": ""9%""}",180685,1,Africa +2024-03-01,66685,7768,"[""Keyboard"", ""Headphones""]",2049.52,"{""loyalty"": ""22%""}",128612,1,South America +2024-06-26,66686,5172,"[""Monitor"", ""Phone"", ""Keyboard""]",2633.53,"{""seasonal"": ""30%""}",247060,0,North America +2024-05-24,66687,407,"[""Monitor""]",4606.84,"{""promo"": ""13%""}",297379,1,North America +2024-08-10,66688,9230,"[""Phone"", ""Monitor"", ""Keyboard""]",1795.61,"{""loyalty"": ""22%""}",138965,1,South America +2024-04-07,66689,1895,"[""Tablet""]",3408.22,{},14964,0,Asia +2024-11-10,66690,1329,"[""Tablet"", ""Charger"", ""Phone""]",379.51,"{""seasonal"": ""23%""}",129142,0,Asia +2024-01-14,66691,4507,"[""Laptop"", ""Charger""]",4216.0,{},2488,0,Asia +2024-08-09,66692,4365,"[""Wireless Mouse"", ""Keyboard""]",491.25,"{""loyalty"": ""23%""}",160331,1,Europe +2023-09-21,66693,3569,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1639.93,{},271116,1,North America +2023-01-10,66694,317,"[""Phone""]",4838.68,"{"""": ""24%""}",267341,1,South America +2024-05-02,66695,2381,"[""Monitor""]",1207.78,"{"""": ""13%""}",159792,0,Asia +2024-01-04,66696,4043,"[""Tablet""]",1063.11,"{""loyalty"": ""20%""}",154737,1,Asia +2023-01-07,66697,9603,"[""Phone""]",3993.13,{},80672,1,Europe +2023-05-05,66698,2769,"[""Headphones"", ""Charger""]",2154.99,{},9105,1,Africa +2023-09-03,66699,271,"[""Monitor""]",3488.18,"{""seasonal"": ""23%""}",133804,1,Africa +2024-05-06,66700,7012,"[""Headphones"", ""Phone"", ""Monitor""]",572.89,"{""loyalty"": ""27%""}",83313,0,Africa +2024-07-17,66701,4404,"[""Wireless Mouse""]",1765.05,{},126138,0,North America +2023-06-30,66702,852,"[""Laptop""]",281.17,{},53930,0,Africa +2024-04-10,66703,4281,"[""Wireless Mouse""]",1356.33,{},293473,0,North America +2023-04-07,66704,6173,"[""Headphones"", ""Laptop"", ""Phone""]",4080.46,{},298629,1,Asia +2024-04-23,66705,8121,"[""Keyboard"", ""Charger"", ""Monitor""]",2749.23,"{""promo"": ""19%""}",282683,1,Asia +2023-09-01,66706,9686,"[""Wireless Mouse"", ""Monitor""]",1885.94,"{""seasonal"": ""16%""}",182435,1,Africa +2024-06-07,66707,1302,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3595.41,"{""seasonal"": ""22%""}",262116,0,South America +2023-11-28,66708,4103,"[""Tablet"", ""Monitor""]",2263.95,{},247568,0,Africa +2024-01-22,66709,1933,"[""Phone"", ""Headphones""]",985.94,"{"""": ""24%""}",248625,0,Asia +2024-06-02,66710,8342,"[""Monitor""]",4647.25,{},296338,1,South America +2023-07-13,66711,5233,"[""Headphones"", ""Phone"", ""Tablet""]",922.09,"{"""": ""25%""}",195567,1,Africa +2023-06-29,66712,3534,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1079.67,{},204394,0,Africa +2023-12-29,66713,5167,"[""Phone"", ""Laptop"", ""Headphones""]",3124.92,{},196034,1,Europe +2023-06-11,66714,8638,"[""Tablet""]",3113.75,"{"""": ""16%""}",37918,1,Europe +2023-06-20,66715,9367,"[""Wireless Mouse""]",3563.05,"{""seasonal"": ""5%""}",33605,1,Europe +2024-08-18,66716,8248,"[""Headphones"", ""Monitor""]",3384.44,"{""seasonal"": ""17%""}",292248,0,Asia +2023-02-09,66717,408,"[""Laptop"", ""Phone"", ""Headphones""]",4717.18,"{""promo"": ""5%""}",186194,1,South America +2024-02-14,66718,2395,"[""Charger"", ""Phone""]",1181.69,{},19615,0,Africa +2023-04-23,66719,3416,"[""Keyboard""]",521.64,{},231502,0,Europe +2024-03-29,66720,214,"[""Monitor"", ""Tablet""]",4560.64,"{""promo"": ""22%""}",289400,0,North America +2024-04-14,66721,8499,"[""Laptop""]",4245.98,"{""promo"": ""13%""}",165342,0,Asia +2023-11-22,66722,5774,"[""Keyboard"", ""Laptop""]",1781.64,"{""seasonal"": ""13%""}",30552,0,Europe +2024-07-11,66723,7912,"[""Wireless Mouse""]",870.55,{},30489,1,Asia +2023-10-30,66724,3294,"[""Laptop"", ""Keyboard"", ""Phone""]",2164.68,{},181237,1,Africa +2023-05-09,66725,3284,"[""Headphones"", ""Phone""]",517.71,"{""seasonal"": ""29%""}",234913,1,Europe +2023-10-18,66726,1550,"[""Headphones"", ""Charger""]",1907.25,{},65861,0,South America +2023-08-24,66727,227,"[""Phone"", ""Laptop""]",2803.51,"{"""": ""26%""}",175045,0,Asia +2023-07-30,66728,5910,"[""Tablet"", ""Charger""]",1986.77,"{"""": ""15%""}",133721,0,Asia +2023-06-08,66729,205,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4977.14,{},146342,0,North America +2024-04-30,66730,1232,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4297.83,"{""loyalty"": ""26%""}",284247,1,North America +2023-09-16,66731,6608,"[""Charger""]",798.68,{},147804,0,Europe +2023-03-06,66732,4091,"[""Laptop"", ""Phone""]",1586.73,"{""loyalty"": ""26%""}",198006,1,South America +2023-10-13,66733,4856,"[""Monitor""]",3986.51,{},69190,0,Europe +2023-08-08,66734,423,"[""Keyboard"", ""Charger"", ""Laptop""]",2852.27,"{""loyalty"": ""15%""}",150394,1,Asia +2024-03-17,66735,8768,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1341.86,{},146368,1,Europe +2024-08-10,66736,6983,"[""Headphones"", ""Keyboard"", ""Phone""]",77.23,"{""promo"": ""15%""}",246750,0,South America +2023-08-06,66737,4037,"[""Monitor"", ""Charger""]",4666.18,"{""promo"": ""15%""}",204103,1,North America +2023-06-30,66738,1372,"[""Keyboard""]",4039.3,"{"""": ""24%""}",256374,1,Africa +2023-12-27,66739,6298,"[""Wireless Mouse""]",1628.12,{},90856,1,Africa +2023-08-14,66740,4116,"[""Tablet""]",4163.12,{},269201,0,Europe +2024-09-26,66741,3726,"[""Monitor"", ""Tablet""]",1468.9,{},26844,0,Africa +2023-09-14,66742,8097,"[""Monitor"", ""Keyboard"", ""Headphones""]",113.91,"{"""": ""22%""}",97133,0,North America +2023-06-23,66743,2897,"[""Keyboard""]",2067.54,{},290929,0,Africa +2024-11-08,66744,6705,"[""Keyboard"", ""Wireless Mouse""]",603.89,{},65877,0,South America +2024-05-27,66745,1096,"[""Charger""]",2827.53,{},64266,0,Asia +2024-08-10,66746,1903,"[""Tablet""]",4476.74,"{"""": ""25%""}",41310,1,South America +2024-08-12,66747,2596,"[""Monitor""]",218.05,{},131328,1,North America +2023-05-15,66748,9562,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2315.7,{},202231,1,South America +2024-08-24,66749,4575,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4345.95,{},14430,0,South America +2023-09-22,66750,5639,"[""Keyboard"", ""Monitor""]",4466.92,{},53288,1,Asia +2024-08-30,66751,159,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3648.21,"{""promo"": ""29%""}",69143,1,South America +2023-12-17,66752,9093,"[""Tablet"", ""Monitor""]",1320.61,"{""seasonal"": ""21%""}",159236,0,South America +2023-08-17,66753,6251,"[""Charger"", ""Keyboard"", ""Monitor""]",3549.15,{},173418,0,North America +2024-10-16,66754,6592,"[""Tablet"", ""Phone""]",1085.35,{},61054,1,Asia +2023-08-13,66755,8131,"[""Charger"", ""Phone"", ""Headphones""]",271.47,{},255544,1,North America +2023-09-30,66756,7328,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",306.22,"{""promo"": ""25%""}",118902,0,South America +2023-12-11,66757,5412,"[""Tablet""]",4427.63,{},95831,1,North America +2024-08-15,66758,9398,"[""Charger"", ""Tablet""]",2690.59,{},88384,1,Asia +2024-12-09,66759,5846,"[""Charger"", ""Wireless Mouse"", ""Phone""]",531.44,"{""seasonal"": ""22%""}",220456,0,South America +2023-09-23,66760,4690,"[""Keyboard"", ""Charger"", ""Tablet""]",4726.8,"{""loyalty"": ""29%""}",118073,0,North America +2023-02-04,66761,3200,"[""Laptop"", ""Keyboard"", ""Headphones""]",4251.53,"{"""": ""5%""}",144162,0,South America +2023-04-17,66762,6603,"[""Phone"", ""Tablet""]",1715.25,{},32344,1,Europe +2024-11-26,66763,3340,"[""Charger"", ""Keyboard"", ""Headphones""]",3929.77,{},192409,0,Europe +2024-04-18,66764,3403,"[""Wireless Mouse"", ""Keyboard""]",194.0,{},280059,0,North America +2024-10-01,66765,4418,"[""Keyboard""]",2587.85,"{""loyalty"": ""19%""}",214154,0,Africa +2023-09-06,66766,3432,"[""Headphones"", ""Laptop""]",2988.79,"{""promo"": ""22%""}",279891,1,South America +2023-05-24,66767,4440,"[""Tablet""]",2169.29,"{"""": ""7%""}",184642,0,Asia +2024-11-29,66768,2875,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",713.97,{},38906,1,Asia +2023-11-15,66769,4083,"[""Keyboard"", ""Laptop"", ""Phone""]",729.33,"{""loyalty"": ""26%""}",193274,1,Europe +2023-09-01,66770,1417,"[""Monitor""]",3678.09,{},68835,1,Europe +2023-01-06,66771,4158,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2712.84,"{"""": ""13%""}",261407,0,South America +2024-05-12,66772,7540,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",819.15,"{""seasonal"": ""9%""}",91319,0,South America +2023-05-14,66773,35,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",436.06,{},98698,0,Asia +2023-05-03,66774,6818,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3029.71,{},14216,0,South America +2024-03-19,66775,7682,"[""Phone""]",3627.16,"{""promo"": ""17%""}",21602,1,Europe +2024-02-14,66776,4037,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3992.84,{},6162,1,North America +2023-07-06,66777,987,"[""Monitor""]",3992.35,{},241614,1,Asia +2023-12-11,66778,9519,"[""Tablet""]",784.9,"{""promo"": ""14%""}",136991,1,South America +2023-09-15,66779,5253,"[""Tablet""]",2359.49,"{""seasonal"": ""11%""}",252785,0,Africa +2024-06-14,66780,304,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2538.97,"{"""": ""19%""}",186225,1,Europe +2023-06-30,66781,3733,"[""Laptop"", ""Wireless Mouse""]",512.4,{},166373,0,North America +2024-10-24,66782,1307,"[""Charger"", ""Phone"", ""Tablet""]",1625.8,{},138484,0,Africa +2024-11-26,66783,9971,"[""Headphones"", ""Monitor""]",692.52,"{"""": ""7%""}",47758,1,Europe +2024-02-20,66784,8651,"[""Keyboard""]",1508.44,{},214850,0,Africa +2024-09-16,66785,7138,"[""Charger"", ""Phone"", ""Keyboard""]",2584.68,"{""promo"": ""10%""}",209992,1,North America +2024-03-22,66786,7997,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",289.61,{},208940,0,South America +2023-04-01,66787,6672,"[""Keyboard"", ""Phone""]",709.19,"{""seasonal"": ""5%""}",49615,0,Europe +2023-11-21,66788,5705,"[""Keyboard""]",1151.42,"{""loyalty"": ""23%""}",15033,0,Asia +2023-12-09,66789,277,"[""Phone""]",50.48,"{""seasonal"": ""7%""}",177144,1,Europe +2023-05-31,66790,3376,"[""Keyboard"", ""Laptop""]",458.6,"{""seasonal"": ""25%""}",258085,0,Africa +2023-11-28,66791,3852,"[""Headphones""]",2676.21,"{""loyalty"": ""26%""}",96795,1,South America +2024-06-21,66792,1887,"[""Charger"", ""Phone"", ""Tablet""]",2678.99,{},252692,1,Asia +2024-02-05,66793,7831,"[""Tablet"", ""Headphones"", ""Phone""]",2583.83,{},168530,0,Asia +2023-03-13,66794,8031,"[""Keyboard"", ""Monitor""]",549.83,{},183105,1,Europe +2023-12-05,66795,2290,"[""Headphones""]",2355.04,"{""loyalty"": ""15%""}",50756,0,South America +2023-05-01,66796,7868,"[""Laptop"", ""Monitor""]",4989.85,"{""loyalty"": ""8%""}",273326,1,South America +2023-08-24,66797,2804,"[""Wireless Mouse""]",1986.45,{},228096,0,South America +2024-05-31,66798,6660,"[""Monitor""]",4405.13,"{""seasonal"": ""28%""}",135663,0,South America +2024-04-02,66799,7751,"[""Phone""]",1476.48,"{""seasonal"": ""12%""}",235161,0,Asia +2023-04-25,66800,971,"[""Keyboard"", ""Charger"", ""Headphones""]",3197.81,{},42406,1,Africa +2023-06-29,66801,2447,"[""Tablet"", ""Phone"", ""Charger""]",4440.24,"{"""": ""24%""}",47814,0,Africa +2024-07-06,66802,6015,"[""Wireless Mouse""]",436.01,"{""seasonal"": ""13%""}",33265,1,Europe +2024-09-17,66803,1963,"[""Headphones""]",4512.95,{},149074,0,Africa +2023-02-05,66804,1360,"[""Keyboard""]",2464.98,"{""promo"": ""14%""}",191020,1,Asia +2023-05-14,66805,1270,"[""Phone"", ""Tablet""]",4894.82,{},213464,0,Africa +2024-03-11,66806,7033,"[""Wireless Mouse"", ""Laptop""]",4572.51,{},215142,1,North America +2023-10-05,66807,5837,"[""Laptop"", ""Tablet""]",198.31,"{""promo"": ""10%""}",273980,1,South America +2023-03-25,66808,1055,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2573.69,"{"""": ""24%""}",239760,1,Asia +2023-05-05,66809,5634,"[""Monitor"", ""Keyboard""]",1554.89,{},229224,1,North America +2023-05-15,66810,7680,"[""Monitor"", ""Wireless Mouse""]",962.67,{},36216,1,South America +2024-07-16,66811,483,"[""Keyboard""]",2890.42,"{""loyalty"": ""19%""}",130306,1,Asia +2023-07-19,66812,5381,"[""Tablet"", ""Keyboard"", ""Laptop""]",4706.97,{},119188,0,Europe +2024-12-26,66813,7518,"[""Charger"", ""Laptop"", ""Headphones""]",1708.41,{},275925,1,Africa +2023-09-24,66814,4483,"[""Tablet""]",2334.3,{},296671,1,Europe +2024-02-29,66815,3463,"[""Tablet"", ""Keyboard""]",716.1,{},256622,1,South America +2024-02-10,66816,3557,"[""Keyboard""]",159.62,{},67369,1,Africa +2023-05-05,66817,3003,"[""Keyboard"", ""Laptop"", ""Phone""]",1814.27,{},74171,0,South America +2024-11-30,66818,3864,"[""Headphones"", ""Keyboard"", ""Monitor""]",500.78,"{""loyalty"": ""15%""}",295321,0,Africa +2023-10-13,66819,4501,"[""Headphones"", ""Charger""]",1531.99,"{"""": ""20%""}",201514,0,Africa +2023-11-19,66820,2655,"[""Headphones"", ""Charger"", ""Monitor""]",2958.51,"{""promo"": ""29%""}",237429,1,South America +2024-08-15,66821,8862,"[""Laptop"", ""Charger"", ""Tablet""]",938.49,{},10720,1,South America +2023-03-13,66822,9043,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4026.54,"{""loyalty"": ""7%""}",198075,0,South America +2023-09-07,66823,173,"[""Headphones"", ""Tablet"", ""Laptop""]",4762.85,{},49747,1,Europe +2024-09-01,66824,8997,"[""Tablet""]",1234.61,"{""loyalty"": ""30%""}",239563,0,Asia +2023-05-18,66825,6126,"[""Tablet"", ""Charger""]",178.6,{},178909,1,Africa +2023-12-01,66826,653,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2335.97,{},186100,0,Africa +2023-06-11,66827,3665,"[""Monitor""]",2353.94,{},266162,1,Asia +2023-11-28,66828,2406,"[""Monitor"", ""Phone"", ""Tablet""]",718.59,"{""promo"": ""8%""}",268773,0,North America +2023-12-24,66829,1571,"[""Headphones""]",4963.73,{},18865,1,South America +2024-12-20,66830,2711,"[""Monitor""]",2060.1,{},260891,0,Africa +2023-03-20,66831,1462,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4008.61,{},217722,0,North America +2023-06-25,66832,5139,"[""Charger"", ""Laptop"", ""Keyboard""]",2706.84,{},206293,0,Asia +2023-11-28,66833,9940,"[""Headphones""]",2476.18,{},202401,0,North America +2024-04-01,66834,1458,"[""Headphones""]",3224.89,{},254630,0,Asia +2023-05-24,66835,5890,"[""Tablet"", ""Laptop"", ""Phone""]",2415.99,{},133226,1,South America +2024-08-14,66836,6087,"[""Headphones"", ""Tablet"", ""Phone""]",2813.66,{},169471,1,South America +2023-04-15,66837,1243,"[""Wireless Mouse"", ""Charger""]",620.65,"{"""": ""15%""}",251111,1,North America +2023-09-14,66838,3160,"[""Phone"", ""Keyboard""]",508.29,"{""loyalty"": ""21%""}",82529,0,South America +2023-12-25,66839,9517,"[""Monitor"", ""Phone"", ""Laptop""]",4732.16,"{""loyalty"": ""7%""}",128123,0,Europe +2024-05-08,66840,6287,"[""Laptop"", ""Tablet"", ""Monitor""]",2081.71,"{""loyalty"": ""7%""}",281156,0,Europe +2024-07-13,66841,9522,"[""Charger""]",4020.02,"{""promo"": ""5%""}",53364,1,South America +2024-09-23,66842,8485,"[""Phone""]",4991.05,"{""promo"": ""19%""}",32686,0,Europe +2024-04-23,66843,3460,"[""Monitor""]",3480.73,{},185748,0,South America +2023-03-14,66844,4073,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2300.72,"{""promo"": ""6%""}",286383,0,Africa +2023-03-05,66845,7529,"[""Phone"", ""Laptop"", ""Monitor""]",4356.82,"{"""": ""16%""}",40824,1,North America +2024-03-10,66846,8792,"[""Headphones"", ""Laptop"", ""Phone""]",331.75,"{"""": ""24%""}",152885,1,Asia +2024-03-08,66847,5030,"[""Monitor"", ""Wireless Mouse""]",1198.15,"{""promo"": ""26%""}",257395,0,Europe +2023-09-15,66848,2315,"[""Tablet"", ""Monitor""]",1431.26,{},23863,1,South America +2023-11-14,66849,7595,"[""Wireless Mouse""]",1266.85,"{""loyalty"": ""29%""}",133151,0,South America +2024-10-30,66850,3754,"[""Laptop"", ""Headphones"", ""Charger""]",3753.68,{},108838,0,Asia +2023-05-19,66851,1706,"[""Keyboard"", ""Charger""]",294.09,"{"""": ""20%""}",284345,0,Africa +2023-07-27,66852,3337,"[""Keyboard"", ""Charger""]",4665.92,"{"""": ""24%""}",212251,1,Africa +2023-08-23,66853,9151,"[""Wireless Mouse""]",4935.19,{},175735,0,Europe +2023-01-04,66854,3514,"[""Phone"", ""Monitor""]",2249.27,"{""loyalty"": ""5%""}",13219,0,South America +2024-12-11,66855,7208,"[""Charger"", ""Headphones""]",4904.01,{},276962,1,Asia +2023-10-23,66856,52,"[""Monitor""]",4043.04,"{""seasonal"": ""22%""}",72196,1,North America +2024-04-05,66857,9940,"[""Laptop"", ""Tablet"", ""Phone""]",2373.75,"{""loyalty"": ""20%""}",270183,1,North America +2023-12-14,66858,3535,"[""Keyboard""]",573.32,{},224920,1,North America +2024-05-27,66859,4803,"[""Laptop"", ""Monitor"", ""Charger""]",1942.91,"{"""": ""10%""}",195264,0,South America +2023-12-11,66860,7278,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",868.46,"{"""": ""14%""}",146581,0,Asia +2023-06-17,66861,4788,"[""Phone""]",895.23,{},26407,1,Asia +2024-09-06,66862,6085,"[""Charger"", ""Headphones"", ""Tablet""]",2411.48,{},50913,0,South America +2024-04-19,66863,8371,"[""Charger"", ""Monitor""]",1044.04,{},255862,0,Africa +2023-03-11,66864,5120,"[""Laptop""]",456.04,{},71928,1,South America +2023-05-05,66865,3667,"[""Tablet""]",4101.92,"{""promo"": ""15%""}",226692,0,Africa +2024-06-19,66866,3233,"[""Keyboard"", ""Laptop""]",4474.69,"{""seasonal"": ""21%""}",2527,0,Africa +2024-10-23,66867,6568,"[""Laptop"", ""Monitor""]",2974.62,{},183624,1,Africa +2023-07-07,66868,6529,"[""Tablet"", ""Keyboard"", ""Phone""]",728.78,{},125718,0,Europe +2024-09-16,66869,45,"[""Keyboard"", ""Phone""]",2882.55,{},270060,1,Africa +2024-01-15,66870,7639,"[""Monitor"", ""Charger""]",4317.59,{},126341,1,Asia +2023-03-08,66871,9513,"[""Keyboard"", ""Headphones"", ""Monitor""]",3011.84,"{""promo"": ""29%""}",214509,0,South America +2023-06-10,66872,2193,"[""Headphones"", ""Keyboard"", ""Monitor""]",1171.15,{},250050,0,Asia +2024-01-19,66873,4426,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",123.17,{},210397,0,Asia +2024-04-04,66874,3368,"[""Phone""]",920.91,"{""loyalty"": ""24%""}",268985,0,North America +2023-03-15,66875,4755,"[""Tablet"", ""Monitor""]",468.13,{},2713,0,Africa +2024-05-05,66876,4489,"[""Phone"", ""Keyboard""]",2880.26,{},28348,0,Africa +2023-05-27,66877,3293,"[""Tablet"", ""Monitor""]",2188.36,"{""promo"": ""14%""}",104218,1,North America +2024-08-05,66878,6358,"[""Keyboard""]",3991.36,"{"""": ""9%""}",230992,0,North America +2024-03-26,66879,9214,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",66.11,"{""loyalty"": ""18%""}",137976,1,South America +2023-01-18,66880,8282,"[""Headphones""]",4878.33,"{"""": ""11%""}",78575,1,Asia +2024-03-12,66881,1244,"[""Keyboard"", ""Wireless Mouse""]",991.83,{},133496,0,Asia +2024-03-10,66882,9284,"[""Wireless Mouse""]",2686.13,"{""loyalty"": ""7%""}",59268,1,Europe +2023-04-02,66883,8392,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",89.13,"{""seasonal"": ""25%""}",25461,0,Asia +2023-07-01,66884,4623,"[""Wireless Mouse""]",1695.7,"{"""": ""9%""}",67317,1,Asia +2024-04-19,66885,278,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2529.56,{},291469,0,South America +2024-11-23,66886,4665,"[""Charger"", ""Wireless Mouse""]",4501.51,{},201401,1,North America +2024-10-22,66887,1845,"[""Phone""]",4295.45,"{""loyalty"": ""16%""}",285763,1,Africa +2024-05-15,66888,5727,"[""Laptop"", ""Charger""]",513.88,{},267430,1,Europe +2023-05-01,66889,7499,"[""Laptop"", ""Headphones"", ""Charger""]",884.74,{},57383,1,North America +2024-04-18,66890,2394,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3968.37,"{""loyalty"": ""12%""}",228285,0,North America +2024-03-05,66891,6464,"[""Keyboard"", ""Tablet""]",2721.3,{},156433,0,Africa +2024-09-26,66892,8393,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2057.71,"{""seasonal"": ""12%""}",173297,0,South America +2023-09-03,66893,5973,"[""Charger""]",1420.17,{},34134,1,North America +2023-11-15,66894,2085,"[""Laptop"", ""Charger"", ""Keyboard""]",800.54,"{""promo"": ""9%""}",267113,0,Europe +2024-12-28,66895,5277,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3737.6,"{""loyalty"": ""21%""}",235632,1,Asia +2023-05-21,66896,6906,"[""Keyboard"", ""Monitor"", ""Charger""]",3354.78,"{""seasonal"": ""29%""}",255265,1,Europe +2024-06-06,66897,8229,"[""Charger""]",113.67,"{""loyalty"": ""15%""}",292394,0,Asia +2023-06-30,66898,7234,"[""Headphones"", ""Tablet""]",4183.29,{},38870,0,South America +2023-04-23,66899,4309,"[""Headphones"", ""Monitor"", ""Laptop""]",4847.87,"{"""": ""5%""}",298435,0,South America +2024-07-12,66900,2652,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1334.63,"{""seasonal"": ""28%""}",212606,0,South America +2024-06-13,66901,2768,"[""Phone""]",3850.18,{},159784,0,North America +2024-10-24,66902,4376,"[""Headphones""]",4671.12,{},284588,0,Europe +2023-12-08,66903,1494,"[""Monitor"", ""Keyboard""]",1458.79,{},168721,1,Asia +2023-06-26,66904,8825,"[""Headphones""]",539.8,"{""promo"": ""14%""}",225038,1,Asia +2023-02-21,66905,2105,"[""Monitor"", ""Laptop""]",222.86,"{""promo"": ""29%""}",51140,0,Africa +2023-01-25,66906,1158,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",745.5,{},139573,0,Africa +2024-03-01,66907,1311,"[""Wireless Mouse""]",621.54,"{""promo"": ""11%""}",109031,0,Asia +2023-08-09,66908,2863,"[""Keyboard"", ""Charger""]",4336.71,"{""promo"": ""14%""}",134496,0,Europe +2023-09-11,66909,7206,"[""Phone""]",2952.48,"{""loyalty"": ""13%""}",7944,0,Asia +2023-11-26,66910,952,"[""Monitor"", ""Headphones""]",2255.27,{},16293,1,Europe +2023-01-24,66911,1457,"[""Tablet""]",4505.44,"{""loyalty"": ""28%""}",131276,1,Africa +2023-08-25,66912,6096,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2185.47,{},148291,0,Europe +2023-10-30,66913,6283,"[""Monitor"", ""Charger""]",699.18,"{""promo"": ""8%""}",163091,0,South America +2023-07-20,66914,4767,"[""Keyboard"", ""Charger"", ""Phone""]",3383.12,"{""seasonal"": ""20%""}",31038,0,Europe +2023-11-02,66915,7206,"[""Headphones"", ""Wireless Mouse""]",1390.31,{},133137,1,Europe +2024-04-27,66916,6861,"[""Keyboard""]",2614.54,"{""loyalty"": ""16%""}",22279,0,South America +2024-04-23,66917,2341,"[""Tablet""]",3662.62,{},41628,0,Europe +2023-02-07,66918,4192,"[""Keyboard"", ""Monitor""]",2105.2,{},4752,1,Africa +2023-12-12,66919,2241,"[""Wireless Mouse""]",3820.03,"{""seasonal"": ""21%""}",257215,0,North America +2023-03-14,66920,9098,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3981.78,{},146108,0,North America +2024-11-19,66921,2128,"[""Laptop"", ""Tablet""]",2673.74,{},156686,1,South America +2023-08-09,66922,862,"[""Keyboard"", ""Wireless Mouse""]",2479.06,"{""seasonal"": ""20%""}",299692,1,North America +2023-01-09,66923,7970,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3512.94,"{""seasonal"": ""19%""}",186258,1,North America +2024-09-11,66924,3955,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",3667.77,"{""seasonal"": ""20%""}",113482,0,North America +2023-07-01,66925,7608,"[""Laptop""]",3958.78,{},184942,0,South America +2024-02-03,66926,3779,"[""Charger"", ""Headphones""]",2503.84,"{""promo"": ""7%""}",290843,0,Africa +2024-07-28,66927,6267,"[""Headphones"", ""Keyboard"", ""Monitor""]",3487.98,{},223636,1,Asia +2024-12-03,66928,3543,"[""Headphones""]",2904.56,"{""promo"": ""11%""}",181149,1,Africa +2024-12-03,66929,5338,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1148.93,"{"""": ""27%""}",246588,0,Asia +2023-10-17,66930,4462,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",254.13,{},130705,0,North America +2023-09-28,66931,2796,"[""Monitor""]",2836.94,{},121174,0,North America +2024-04-16,66932,4965,"[""Wireless Mouse"", ""Laptop""]",1395.23,{},6116,0,Asia +2024-05-07,66933,2683,"[""Keyboard"", ""Monitor""]",797.43,"{"""": ""22%""}",40792,1,Africa +2024-04-12,66934,2817,"[""Wireless Mouse"", ""Phone""]",415.52,"{"""": ""24%""}",98888,1,North America +2024-06-08,66935,8437,"[""Monitor"", ""Charger""]",2651.01,"{"""": ""25%""}",217015,1,North America +2023-05-29,66936,8464,"[""Phone""]",3177.27,{},168519,0,Europe +2023-01-15,66937,2595,"[""Wireless Mouse"", ""Keyboard""]",1242.3,"{""promo"": ""7%""}",86658,1,South America +2023-03-18,66938,296,"[""Keyboard""]",997.93,"{""seasonal"": ""13%""}",292016,1,Asia +2024-04-02,66939,1861,"[""Charger""]",3196.26,{},195250,0,South America +2024-02-15,66940,1280,"[""Wireless Mouse"", ""Headphones""]",1084.4,{},299891,1,South America +2024-01-05,66941,9516,"[""Laptop"", ""Headphones"", ""Phone""]",4021.94,"{""promo"": ""14%""}",29778,1,Africa +2024-09-26,66942,117,"[""Headphones"", ""Phone""]",2476.74,"{"""": ""16%""}",99803,1,South America +2023-05-03,66943,7604,"[""Phone"", ""Charger"", ""Headphones""]",1216.29,"{""promo"": ""30%""}",298219,1,North America +2024-12-27,66944,2060,"[""Laptop"", ""Phone"", ""Headphones""]",1150.52,"{"""": ""7%""}",77905,1,South America +2023-11-27,66945,6053,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1973.19,{},266878,0,South America +2024-06-10,66946,835,"[""Keyboard""]",3103.73,"{""loyalty"": ""19%""}",19911,0,Europe +2024-07-15,66947,7834,"[""Headphones"", ""Laptop"", ""Tablet""]",654.48,{},71516,1,South America +2023-09-27,66948,6677,"[""Keyboard""]",3998.5,{},25881,1,Asia +2023-03-28,66949,2954,"[""Wireless Mouse"", ""Monitor""]",2533.99,"{""promo"": ""11%""}",232768,0,Europe +2023-06-20,66950,4921,"[""Keyboard"", ""Monitor"", ""Laptop""]",4690.65,"{""seasonal"": ""15%""}",76122,1,Africa +2023-09-07,66951,3933,"[""Wireless Mouse""]",2190.01,"{""loyalty"": ""22%""}",10874,0,Africa +2024-03-27,66952,617,"[""Charger"", ""Laptop"", ""Keyboard""]",4449.06,{},67442,0,North America +2024-07-17,66953,5319,"[""Headphones"", ""Laptop""]",555.88,"{""promo"": ""28%""}",42799,0,Asia +2024-05-04,66954,9718,"[""Laptop"", ""Headphones""]",1855.21,"{""loyalty"": ""29%""}",183615,0,Africa +2023-07-31,66955,2683,"[""Monitor"", ""Tablet""]",1805.79,{},133886,1,Africa +2024-12-24,66956,382,"[""Headphones"", ""Tablet""]",2506.12,{},8308,1,Europe +2024-03-29,66957,7302,"[""Keyboard"", ""Monitor""]",4952.05,"{"""": ""11%""}",71551,1,Africa +2024-02-25,66958,9330,"[""Wireless Mouse""]",75.33,{},278193,0,Europe +2023-04-13,66959,6235,"[""Charger"", ""Keyboard""]",1714.35,"{""loyalty"": ""17%""}",114049,0,Africa +2024-06-09,66960,1197,"[""Monitor"", ""Headphones"", ""Phone""]",2649.16,"{"""": ""18%""}",127093,0,Asia +2023-02-27,66961,6847,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2706.84,{},243831,0,Africa +2024-10-03,66962,5556,"[""Phone""]",3573.2,"{""loyalty"": ""25%""}",297179,1,Asia +2023-10-30,66963,7360,"[""Tablet"", ""Laptop""]",1969.68,{},226082,1,Europe +2023-09-14,66964,9295,"[""Charger"", ""Phone"", ""Headphones""]",4535.03,{},175042,1,Europe +2023-10-09,66965,844,"[""Wireless Mouse""]",548.4,"{"""": ""21%""}",189394,0,South America +2024-11-27,66966,604,"[""Charger"", ""Wireless Mouse""]",2765.23,{},133041,0,South America +2024-05-31,66967,1427,"[""Keyboard"", ""Headphones""]",4350.37,{},85188,1,Africa +2023-01-23,66968,7714,"[""Charger"", ""Monitor""]",3818.76,"{""promo"": ""12%""}",35842,1,Africa +2023-10-02,66969,3784,"[""Charger"", ""Phone""]",3701.58,{},138078,0,Europe +2023-06-08,66970,6941,"[""Keyboard"", ""Headphones"", ""Monitor""]",3841.32,"{""loyalty"": ""24%""}",161575,1,Africa +2024-05-29,66971,715,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",314.99,{},158275,1,North America +2023-12-13,66972,3866,"[""Keyboard""]",3543.33,{},203133,0,Asia +2024-04-12,66973,1486,"[""Laptop"", ""Phone""]",4726.57,{},92620,1,Asia +2024-09-12,66974,9172,"[""Charger""]",319.54,{},113004,0,North America +2023-04-11,66975,1059,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4393.67,{},215441,0,North America +2023-12-08,66976,5653,"[""Phone"", ""Monitor"", ""Headphones""]",2095.03,"{""promo"": ""28%""}",250286,1,North America +2023-09-18,66977,1059,"[""Headphones"", ""Laptop""]",593.5,"{""seasonal"": ""9%""}",7013,1,Europe +2024-10-20,66978,9093,"[""Tablet"", ""Headphones""]",804.58,{},25354,0,Asia +2023-09-14,66979,7021,"[""Charger"", ""Headphones""]",2249.77,"{""loyalty"": ""7%""}",90094,1,North America +2024-11-15,66980,9108,"[""Headphones"", ""Keyboard"", ""Charger""]",220.08,{},204577,0,Europe +2023-02-14,66981,6627,"[""Wireless Mouse""]",1969.12,{},198674,0,North America +2024-03-29,66982,1287,"[""Headphones""]",2018.52,{},250060,1,North America +2023-03-07,66983,7755,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2292.14,{},66255,0,Asia +2024-08-12,66984,8104,"[""Monitor"", ""Tablet""]",2799.66,"{""loyalty"": ""20%""}",158326,1,Africa +2023-08-05,66985,7920,"[""Laptop""]",3781.07,"{""promo"": ""16%""}",119659,0,North America +2024-10-15,66986,4778,"[""Phone"", ""Headphones""]",2931.32,{},30333,1,North America +2024-05-20,66987,4630,"[""Keyboard""]",1527.49,"{""seasonal"": ""26%""}",253926,1,Africa +2024-05-20,66988,4903,"[""Keyboard"", ""Phone"", ""Laptop""]",1170.55,{},94518,1,South America +2024-10-18,66989,4021,"[""Laptop""]",4558.4,{},252615,1,Africa +2023-10-21,66990,1699,"[""Phone"", ""Keyboard"", ""Headphones""]",1231.68,{},26636,1,Asia +2024-11-11,66991,3017,"[""Keyboard"", ""Laptop"", ""Headphones""]",4136.49,{},261287,0,South America +2024-02-22,66992,2358,"[""Tablet""]",152.27,{},58164,0,Europe +2024-03-20,66993,7798,"[""Phone"", ""Wireless Mouse""]",3483.96,"{"""": ""29%""}",283587,1,North America +2023-11-04,66994,6831,"[""Laptop"", ""Keyboard""]",1275.32,{},21966,1,North America +2024-11-10,66995,6653,"[""Headphones""]",322.79,"{""loyalty"": ""20%""}",222763,0,Africa +2023-08-02,66996,7459,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3531.7,{},275655,1,Asia +2024-10-26,66997,4334,"[""Tablet"", ""Keyboard""]",1322.48,"{"""": ""15%""}",94750,1,North America +2023-06-19,66998,2443,"[""Keyboard"", ""Phone""]",518.25,{},164924,0,Europe +2023-07-18,66999,1332,"[""Phone"", ""Tablet"", ""Keyboard""]",3794.61,"{"""": ""13%""}",79081,1,North America +2023-07-01,67000,7388,"[""Tablet""]",1408.69,"{""promo"": ""10%""}",244807,0,Asia +2023-10-30,67001,4452,"[""Laptop"", ""Charger""]",393.66,"{""seasonal"": ""29%""}",43316,0,Asia +2024-09-05,67002,7728,"[""Monitor""]",2868.08,"{""seasonal"": ""16%""}",3918,0,North America +2023-06-07,67003,8545,"[""Headphones"", ""Tablet""]",3206.87,"{""promo"": ""30%""}",85592,1,South America +2023-09-08,67004,3775,"[""Monitor""]",3373.26,"{""loyalty"": ""23%""}",218356,0,North America +2023-05-05,67005,5118,"[""Charger""]",3422.02,{},40793,1,Africa +2023-10-17,67006,9386,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2328.73,{},230700,1,Europe +2024-10-04,67007,6233,"[""Headphones"", ""Charger"", ""Tablet""]",3483.28,"{""loyalty"": ""5%""}",173194,0,Africa +2024-12-30,67008,4427,"[""Phone"", ""Laptop"", ""Monitor""]",1187.06,"{""promo"": ""10%""}",30419,1,Asia +2023-01-25,67009,6173,"[""Monitor"", ""Phone""]",2981.76,"{""seasonal"": ""15%""}",124705,1,Asia +2024-07-17,67010,8160,"[""Wireless Mouse""]",3047.87,"{""seasonal"": ""29%""}",281816,0,North America +2024-08-04,67011,6753,"[""Tablet"", ""Keyboard"", ""Monitor""]",1996.0,{},98763,0,South America +2024-01-12,67012,821,"[""Headphones""]",3298.38,{},153408,1,Asia +2023-10-14,67013,6222,"[""Tablet"", ""Keyboard""]",3378.98,{},289169,1,North America +2024-02-18,67014,659,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1600.51,"{""promo"": ""13%""}",143533,0,Asia +2024-09-28,67015,5802,"[""Charger"", ""Headphones""]",491.96,"{""promo"": ""20%""}",155557,1,South America +2024-03-09,67016,6669,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4419.64,"{""promo"": ""16%""}",232031,0,Asia +2024-10-09,67017,180,"[""Phone"", ""Charger""]",2942.99,{},106391,0,North America +2024-03-26,67018,2060,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2510.12,{},76805,0,Asia +2023-05-03,67019,9706,"[""Keyboard""]",493.06,"{"""": ""14%""}",92298,0,North America +2023-04-20,67020,4801,"[""Tablet"", ""Phone""]",4000.26,{},61578,1,Asia +2023-09-29,67021,7688,"[""Headphones"", ""Monitor""]",2935.69,{},35665,0,South America +2024-02-26,67022,6239,"[""Phone"", ""Monitor""]",2367.94,{},119161,1,Asia +2024-12-15,67023,4186,"[""Laptop"", ""Wireless Mouse""]",195.03,"{"""": ""11%""}",129502,1,South America +2024-09-17,67024,9579,"[""Keyboard"", ""Phone""]",296.67,{},105749,1,North America +2024-07-04,67025,9358,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2195.39,"{""loyalty"": ""29%""}",112281,0,Africa +2024-04-10,67026,3837,"[""Phone"", ""Tablet""]",4939.48,{},82104,0,North America +2023-08-09,67027,8940,"[""Keyboard"", ""Monitor"", ""Tablet""]",4932.17,"{""promo"": ""11%""}",66494,1,Africa +2024-12-17,67028,1829,"[""Monitor"", ""Laptop"", ""Phone""]",1872.95,"{"""": ""25%""}",5613,0,Europe +2024-02-17,67029,6167,"[""Monitor""]",3357.16,"{""loyalty"": ""24%""}",284236,1,Europe +2024-12-13,67030,9530,"[""Tablet"", ""Headphones""]",4806.3,{},241707,1,North America +2024-06-17,67031,5624,"[""Keyboard""]",1569.32,"{""promo"": ""29%""}",47737,1,South America +2023-04-16,67032,1866,"[""Headphones"", ""Phone"", ""Tablet""]",131.77,"{"""": ""24%""}",237322,1,Europe +2023-02-26,67033,5817,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3294.89,{},185351,0,Africa +2024-08-09,67034,1526,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",648.05,"{""seasonal"": ""29%""}",197453,0,South America +2024-05-01,67035,3175,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1654.98,{},176834,0,Asia +2023-04-26,67036,7435,"[""Monitor"", ""Charger""]",4140.4,{},98464,0,North America +2023-09-09,67037,2333,"[""Charger"", ""Tablet"", ""Headphones""]",1276.94,"{""loyalty"": ""29%""}",263395,0,Europe +2024-08-26,67038,7667,"[""Charger""]",3568.33,{},8493,0,Europe +2024-08-09,67039,4778,"[""Monitor"", ""Charger"", ""Tablet""]",2610.34,"{"""": ""21%""}",92168,0,Asia +2024-05-26,67040,7245,"[""Charger"", ""Tablet"", ""Keyboard""]",4296.56,{},18357,1,Africa +2023-06-02,67041,751,"[""Phone"", ""Charger"", ""Monitor""]",4086.1,{},203439,1,Asia +2024-05-19,67042,5549,"[""Headphones""]",2204.63,{},121308,0,Africa +2023-08-03,67043,5992,"[""Headphones"", ""Tablet""]",831.16,"{""loyalty"": ""20%""}",121237,0,North America +2024-05-14,67044,6701,"[""Laptop"", ""Tablet""]",3690.62,{},103533,1,North America +2024-04-08,67045,8022,"[""Monitor""]",4073.04,{},179439,1,Africa +2024-06-30,67046,9013,"[""Laptop"", ""Keyboard"", ""Monitor""]",608.46,{},87584,0,North America +2024-09-01,67047,1267,"[""Phone""]",619.37,{},91245,0,Asia +2024-03-10,67048,9443,"[""Headphones""]",4482.26,"{""promo"": ""27%""}",140013,1,Africa +2024-04-25,67049,501,"[""Tablet"", ""Laptop"", ""Keyboard""]",2746.48,{},147268,0,Asia +2024-09-07,67050,4647,"[""Headphones""]",4084.12,"{"""": ""9%""}",279582,1,Europe +2023-10-13,67051,3010,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2639.13,"{""seasonal"": ""9%""}",258236,1,North America +2023-05-20,67052,4180,"[""Phone""]",216.94,{},211316,1,South America +2024-05-11,67053,1901,"[""Charger""]",4183.98,{},284893,1,North America +2023-07-10,67054,7005,"[""Phone"", ""Headphones""]",2038.42,{},249226,1,Europe +2023-05-31,67055,9109,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1885.11,"{"""": ""22%""}",126590,1,North America +2024-12-08,67056,6353,"[""Phone""]",1049.74,"{""promo"": ""21%""}",85614,0,Europe +2024-05-27,67057,2460,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4869.35,"{""seasonal"": ""9%""}",65538,0,Asia +2023-07-26,67058,3811,"[""Keyboard""]",1280.38,{},150807,1,South America +2023-02-01,67059,2042,"[""Keyboard"", ""Wireless Mouse""]",4270.03,{},93075,1,South America +2024-07-11,67060,1121,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2381.81,{},16610,1,South America +2023-11-05,67061,9955,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2573.91,{},296404,1,Asia +2023-03-06,67062,7952,"[""Charger""]",4684.4,"{"""": ""15%""}",63016,0,Europe +2023-06-01,67063,3380,"[""Laptop"", ""Wireless Mouse""]",3764.26,{},291310,0,Asia +2023-04-30,67064,3469,"[""Charger"", ""Headphones""]",4114.56,"{""loyalty"": ""9%""}",269852,1,Africa +2024-08-29,67065,5381,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1220.85,{},267502,0,North America +2023-07-04,67066,4532,"[""Keyboard""]",1934.58,{},200826,0,South America +2023-07-16,67067,2618,"[""Charger"", ""Phone""]",2150.54,"{""promo"": ""21%""}",265992,0,Europe +2024-09-14,67068,6270,"[""Wireless Mouse""]",955.0,{},184910,0,Europe +2023-11-04,67069,332,"[""Laptop"", ""Wireless Mouse""]",4243.69,"{"""": ""11%""}",268249,1,Africa +2024-12-07,67070,1365,"[""Phone"", ""Tablet"", ""Monitor""]",1452.34,{},149959,0,North America +2024-07-08,67071,8025,"[""Tablet""]",3322.18,{},111711,0,South America +2024-02-19,67072,8396,"[""Keyboard""]",2675.3,{},6465,0,North America +2023-04-03,67073,7174,"[""Monitor"", ""Tablet""]",3715.63,{},251842,0,South America +2024-12-27,67074,8156,"[""Keyboard""]",1758.45,{},229240,1,Asia +2024-11-02,67075,413,"[""Phone"", ""Charger""]",1352.75,"{"""": ""27%""}",231321,1,Asia +2023-04-17,67076,7634,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2312.15,{},242210,0,Europe +2023-04-18,67077,8682,"[""Wireless Mouse"", ""Headphones""]",556.52,"{""loyalty"": ""25%""}",236315,0,Europe +2024-03-13,67078,17,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",420.48,{},174852,0,North America +2024-08-04,67079,2853,"[""Monitor"", ""Tablet""]",2331.3,"{""loyalty"": ""18%""}",298602,0,Europe +2023-10-29,67080,5051,"[""Headphones""]",3436.66,{},8372,1,North America +2024-04-24,67081,9265,"[""Monitor"", ""Laptop"", ""Headphones""]",311.22,{},177298,0,Europe +2023-11-14,67082,6396,"[""Keyboard""]",4038.68,"{""seasonal"": ""19%""}",207021,0,Asia +2024-07-11,67083,3386,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1897.63,{},272651,0,North America +2023-02-16,67084,4284,"[""Laptop"", ""Wireless Mouse""]",3910.41,{},162828,1,South America +2023-01-20,67085,7208,"[""Headphones"", ""Charger"", ""Keyboard""]",3363.32,"{""loyalty"": ""15%""}",152750,1,Europe +2024-11-23,67086,9724,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3496.52,{},60485,0,Europe +2023-02-15,67087,6218,"[""Phone"", ""Monitor""]",1537.37,{},59608,1,Africa +2024-09-09,67088,2945,"[""Monitor"", ""Charger""]",2228.1,"{""seasonal"": ""27%""}",253829,1,Europe +2024-06-15,67089,402,"[""Charger"", ""Phone""]",2908.68,"{""promo"": ""29%""}",16811,1,North America +2023-11-02,67090,5569,"[""Tablet""]",4829.29,"{""promo"": ""26%""}",145319,1,Africa +2024-01-25,67091,7075,"[""Wireless Mouse"", ""Keyboard""]",3100.85,{},206957,1,South America +2023-10-22,67092,4775,"[""Keyboard"", ""Tablet"", ""Phone""]",1886.79,{},60528,1,Africa +2023-09-29,67093,5407,"[""Headphones"", ""Monitor""]",3747.37,{},29259,1,Europe +2023-04-08,67094,6519,"[""Charger"", ""Phone""]",836.95,"{""loyalty"": ""22%""}",58066,1,Europe +2024-03-29,67095,3485,"[""Phone"", ""Headphones""]",1411.44,{},284150,1,South America +2024-06-08,67096,5976,"[""Headphones"", ""Tablet""]",4248.01,{},127563,1,Europe +2023-06-05,67097,5229,"[""Wireless Mouse""]",3846.74,"{""loyalty"": ""6%""}",219621,0,South America +2024-07-05,67098,8468,"[""Headphones"", ""Keyboard"", ""Monitor""]",3490.16,"{""seasonal"": ""12%""}",197282,0,South America +2024-12-06,67099,1834,"[""Keyboard""]",3064.08,"{"""": ""30%""}",198616,1,South America +2024-07-01,67100,6865,"[""Keyboard"", ""Headphones"", ""Tablet""]",3105.29,"{""loyalty"": ""26%""}",22952,1,North America +2024-02-11,67101,5211,"[""Tablet""]",4151.88,{},193634,1,Asia +2024-11-28,67102,1041,"[""Tablet""]",3912.44,"{"""": ""10%""}",203037,1,Africa +2024-09-26,67103,9214,"[""Charger"", ""Headphones""]",356.77,{},61397,0,Europe +2024-08-16,67104,4223,"[""Charger"", ""Tablet""]",1095.02,{},193386,0,North America +2024-02-17,67105,8866,"[""Laptop""]",3130.63,"{"""": ""16%""}",109113,1,Europe +2024-11-01,67106,6705,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1356.66,"{""promo"": ""26%""}",215601,0,North America +2024-02-28,67107,7361,"[""Tablet"", ""Monitor""]",3387.91,"{""seasonal"": ""25%""}",220286,1,Africa +2023-08-06,67108,5004,"[""Keyboard"", ""Headphones""]",3766.85,{},31636,1,Africa +2023-03-26,67109,2412,"[""Charger"", ""Tablet"", ""Keyboard""]",3542.69,{},201718,0,Africa +2023-03-01,67110,9078,"[""Wireless Mouse""]",3962.34,"{""loyalty"": ""13%""}",79704,0,Europe +2024-02-15,67111,4054,"[""Monitor"", ""Phone""]",2082.69,{},288225,1,North America +2023-03-27,67112,5339,"[""Keyboard"", ""Headphones"", ""Charger""]",1559.87,{},210037,1,North America +2024-09-02,67113,2551,"[""Laptop""]",2838.03,{},16329,0,Africa +2023-06-04,67114,7724,"[""Monitor"", ""Laptop"", ""Tablet""]",4527.28,"{""promo"": ""11%""}",191280,1,Africa +2024-11-30,67115,1776,"[""Tablet"", ""Phone""]",3143.63,{},131646,1,Asia +2023-02-11,67116,7612,"[""Monitor"", ""Tablet""]",344.66,{},293840,1,Africa +2023-11-18,67117,9820,"[""Tablet""]",460.62,"{""seasonal"": ""12%""}",228677,0,Asia +2023-08-26,67118,3400,"[""Headphones""]",1379.8,"{""seasonal"": ""18%""}",156892,0,Europe +2024-12-25,67119,7055,"[""Phone"", ""Monitor""]",2170.61,{},92236,0,South America +2024-05-29,67120,14,"[""Charger""]",3607.3,"{""seasonal"": ""21%""}",277433,0,Asia +2024-11-17,67121,4445,"[""Tablet"", ""Laptop"", ""Headphones""]",3271.99,"{""seasonal"": ""9%""}",214156,0,Europe +2024-10-09,67122,577,"[""Monitor"", ""Charger""]",1296.71,"{""promo"": ""23%""}",274033,0,Africa +2024-04-19,67123,7457,"[""Charger""]",1622.54,{},174618,0,North America +2024-03-09,67124,1593,"[""Charger""]",413.35,{},68124,0,North America +2024-05-01,67125,4421,"[""Wireless Mouse"", ""Keyboard""]",4485.23,"{""loyalty"": ""25%""}",220898,0,Africa +2023-07-24,67126,4287,"[""Laptop"", ""Monitor"", ""Tablet""]",2878.7,{},65364,1,South America +2024-03-27,67127,1210,"[""Tablet"", ""Phone""]",1267.87,{},192922,1,Africa +2023-11-17,67128,8273,"[""Charger"", ""Monitor""]",768.73,"{""loyalty"": ""23%""}",51335,1,South America +2023-01-17,67129,293,"[""Tablet""]",2550.02,"{"""": ""18%""}",82870,0,Europe +2023-03-13,67130,7870,"[""Headphones""]",1418.48,{},23313,1,Africa +2023-09-15,67131,5622,"[""Monitor"", ""Phone""]",273.37,"{""promo"": ""18%""}",107063,1,North America +2024-10-31,67132,2940,"[""Monitor"", ""Laptop"", ""Phone""]",3378.02,{},164906,1,North America +2024-10-31,67133,8662,"[""Keyboard""]",4601.6,"{"""": ""27%""}",100153,0,South America +2024-08-26,67134,4764,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4131.37,"{""seasonal"": ""30%""}",176676,1,Africa +2024-01-04,67135,9127,"[""Charger"", ""Keyboard"", ""Laptop""]",813.8,"{""loyalty"": ""28%""}",43327,1,Africa +2023-08-07,67136,5968,"[""Laptop"", ""Phone""]",2835.24,"{""loyalty"": ""7%""}",286422,1,Europe +2024-05-15,67137,4499,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3464.79,{},119161,0,North America +2024-09-16,67138,7695,"[""Charger"", ""Keyboard""]",1505.53,"{""loyalty"": ""17%""}",22771,0,North America +2023-06-19,67139,3662,"[""Charger"", ""Tablet"", ""Keyboard""]",984.83,{},185698,1,Asia +2023-10-09,67140,5719,"[""Phone""]",4597.01,"{""seasonal"": ""20%""}",146695,0,North America +2023-05-27,67141,3282,"[""Wireless Mouse"", ""Phone""]",137.69,{},262245,0,Asia +2024-03-10,67142,2684,"[""Phone"", ""Charger"", ""Keyboard""]",4040.69,{},4909,1,Africa +2023-05-20,67143,4454,"[""Wireless Mouse""]",4157.29,{},102467,1,Asia +2024-09-22,67144,771,"[""Wireless Mouse""]",3309.96,"{"""": ""13%""}",260008,0,Asia +2024-07-03,67145,177,"[""Charger""]",1828.33,"{""loyalty"": ""8%""}",46919,0,Africa +2023-09-03,67146,1294,"[""Laptop"", ""Phone"", ""Charger""]",907.72,"{""promo"": ""20%""}",235707,1,South America +2023-03-03,67147,2235,"[""Phone"", ""Keyboard""]",4372.66,"{"""": ""19%""}",230326,1,North America +2023-02-22,67148,7531,"[""Monitor"", ""Charger""]",1593.55,{},111693,1,Africa +2023-01-09,67149,183,"[""Charger"", ""Headphones"", ""Monitor""]",3113.51,{},191409,0,North America +2024-01-03,67150,5839,"[""Charger""]",3688.18,{},164290,1,Africa +2023-10-21,67151,7455,"[""Monitor""]",1556.25,"{""loyalty"": ""11%""}",258031,1,North America +2024-10-14,67152,8480,"[""Tablet""]",3036.19,{},92013,1,Asia +2024-06-22,67153,6794,"[""Wireless Mouse""]",1366.69,{},77658,1,Europe +2023-12-14,67154,7173,"[""Charger"", ""Headphones""]",3494.14,{},193963,0,Africa +2024-11-22,67155,563,"[""Monitor""]",344.22,{},73933,0,North America +2023-07-28,67156,204,"[""Tablet"", ""Phone"", ""Keyboard""]",2259.27,{},98297,0,South America +2024-02-03,67157,7113,"[""Charger"", ""Tablet"", ""Headphones""]",853.86,{},176464,1,Europe +2023-08-22,67158,3857,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3592.88,"{""seasonal"": ""16%""}",36177,0,North America +2023-11-11,67159,1198,"[""Wireless Mouse""]",2384.6,"{""seasonal"": ""21%""}",144737,1,North America +2024-05-17,67160,6095,"[""Headphones"", ""Laptop""]",4369.44,{},46442,1,North America +2024-05-21,67161,1962,"[""Laptop"", ""Tablet""]",1611.71,"{""seasonal"": ""5%""}",262732,1,South America +2023-04-13,67162,7280,"[""Charger""]",4185.56,"{""loyalty"": ""19%""}",46511,1,South America +2023-02-18,67163,4853,"[""Headphones""]",2749.61,"{""loyalty"": ""21%""}",76296,1,South America +2023-12-08,67164,4327,"[""Charger""]",4882.9,{},249613,0,South America +2023-08-29,67165,8583,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",982.61,{},51487,0,Europe +2024-07-11,67166,7889,"[""Keyboard""]",2418.47,{},264074,1,South America +2024-05-07,67167,6568,"[""Tablet""]",3389.99,{},231658,0,Europe +2023-06-20,67168,2380,"[""Keyboard"", ""Monitor""]",2879.09,{},211635,1,North America +2024-04-13,67169,9975,"[""Charger"", ""Monitor"", ""Laptop""]",2097.7,"{""seasonal"": ""18%""}",17689,1,Asia +2024-09-03,67170,2938,"[""Charger"", ""Monitor""]",4248.35,"{""promo"": ""13%""}",211624,1,South America +2023-10-26,67171,3121,"[""Keyboard"", ""Charger"", ""Phone""]",1241.31,{},278038,1,Africa +2023-02-05,67172,3096,"[""Tablet""]",4930.84,"{""loyalty"": ""27%""}",202463,0,Africa +2024-12-06,67173,9021,"[""Charger"", ""Wireless Mouse""]",2749.89,"{""promo"": ""20%""}",26090,1,South America +2023-04-15,67174,9900,"[""Wireless Mouse"", ""Laptop""]",1612.7,"{""seasonal"": ""20%""}",210202,1,Europe +2023-09-15,67175,7227,"[""Phone"", ""Laptop""]",3207.52,"{""seasonal"": ""13%""}",60990,1,Asia +2023-01-04,67176,9328,"[""Headphones"", ""Keyboard""]",2354.25,"{""seasonal"": ""8%""}",48300,1,North America +2024-12-16,67177,5497,"[""Tablet"", ""Keyboard""]",2382.94,"{"""": ""28%""}",123320,1,Asia +2024-11-18,67178,9691,"[""Charger"", ""Monitor"", ""Keyboard""]",2100.04,"{"""": ""5%""}",137779,0,Africa +2023-03-07,67179,5444,"[""Laptop"", ""Phone""]",1584.93,"{""promo"": ""26%""}",33872,0,Asia +2023-02-22,67180,5777,"[""Tablet"", ""Phone""]",2325.95,{},76073,1,Africa +2024-05-01,67181,5330,"[""Wireless Mouse""]",3934.79,"{""loyalty"": ""19%""}",183956,0,Asia +2024-08-04,67182,4376,"[""Wireless Mouse"", ""Charger""]",4505.64,{},51470,1,Africa +2023-07-23,67183,3020,"[""Headphones"", ""Phone"", ""Monitor""]",743.25,{},117517,1,South America +2024-01-31,67184,1827,"[""Tablet"", ""Laptop"", ""Charger""]",2067.69,"{""promo"": ""11%""}",166196,1,Europe +2023-01-22,67185,777,"[""Laptop""]",4536.89,"{""seasonal"": ""23%""}",55452,0,Europe +2023-10-27,67186,2755,"[""Monitor"", ""Charger"", ""Keyboard""]",3965.32,{},240937,0,South America +2024-08-11,67187,8310,"[""Laptop"", ""Charger""]",4392.82,{},217587,1,Africa +2024-06-19,67188,3188,"[""Phone"", ""Tablet"", ""Headphones""]",4521.53,"{""promo"": ""9%""}",107497,1,Africa +2023-09-28,67189,6986,"[""Headphones"", ""Charger"", ""Tablet""]",189.54,"{""loyalty"": ""10%""}",220581,0,Africa +2023-02-25,67190,1142,"[""Charger""]",3095.61,{},45765,1,South America +2023-11-09,67191,9634,"[""Wireless Mouse""]",4861.96,{},57378,0,Asia +2024-03-23,67192,5240,"[""Charger"", ""Tablet""]",1145.24,{},156651,0,Europe +2023-12-06,67193,7354,"[""Headphones"", ""Monitor"", ""Charger""]",753.3,"{"""": ""12%""}",45665,0,North America +2024-07-01,67194,1465,"[""Tablet"", ""Headphones""]",3944.01,"{""seasonal"": ""24%""}",40237,0,Europe +2024-01-29,67195,9822,"[""Tablet""]",313.12,{},155372,0,Africa +2023-12-13,67196,9791,"[""Wireless Mouse"", ""Monitor""]",766.5,"{""loyalty"": ""10%""}",219037,1,South America +2023-12-06,67197,4757,"[""Wireless Mouse""]",1245.24,"{"""": ""11%""}",179876,0,Europe +2023-02-08,67198,1803,"[""Phone"", ""Monitor""]",3820.86,"{"""": ""16%""}",142045,0,South America +2024-02-15,67199,1330,"[""Phone"", ""Keyboard"", ""Headphones""]",2851.7,"{""promo"": ""21%""}",2791,0,South America +2024-02-01,67200,1119,"[""Wireless Mouse""]",3700.41,"{""promo"": ""6%""}",73132,0,North America +2023-04-04,67201,1537,"[""Laptop"", ""Phone"", ""Charger""]",3600.95,{},198307,1,Africa +2024-01-03,67202,6425,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4427.58,"{"""": ""13%""}",156649,1,North America +2024-12-01,67203,6560,"[""Charger""]",238.56,"{""loyalty"": ""21%""}",124218,0,Africa +2023-02-04,67204,524,"[""Laptop""]",4499.34,{},42097,0,Asia +2024-05-23,67205,7332,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4708.33,"{""promo"": ""16%""}",95644,0,North America +2024-12-03,67206,3272,"[""Keyboard"", ""Monitor"", ""Laptop""]",3957.24,{},73872,1,North America +2023-06-26,67207,2511,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3519.34,"{""seasonal"": ""26%""}",275870,0,South America +2024-03-23,67208,9142,"[""Wireless Mouse"", ""Charger""]",1355.71,"{"""": ""30%""}",159795,0,South America +2024-02-29,67209,6347,"[""Keyboard"", ""Monitor""]",1946.01,"{"""": ""24%""}",185372,1,North America +2024-04-08,67210,9858,"[""Headphones""]",3963.23,"{""loyalty"": ""14%""}",144769,0,Asia +2023-03-02,67211,7469,"[""Phone""]",4189.72,"{"""": ""30%""}",17812,0,South America +2024-11-30,67212,2272,"[""Charger"", ""Tablet"", ""Laptop""]",3768.77,"{"""": ""14%""}",113803,1,Africa +2024-08-19,67213,3505,"[""Phone"", ""Keyboard""]",4193.13,{},198138,1,Africa +2024-03-02,67214,1627,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1713.2,"{""loyalty"": ""29%""}",256766,1,Asia +2023-08-21,67215,8283,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1956.47,{},68615,1,South America +2023-08-08,67216,1418,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4963.8,{},74955,0,Asia +2023-10-05,67217,8570,"[""Phone"", ""Keyboard""]",565.61,"{""loyalty"": ""22%""}",213373,0,North America +2023-06-05,67218,2022,"[""Monitor"", ""Laptop""]",3048.46,"{""loyalty"": ""21%""}",111788,1,Europe +2023-12-01,67219,5098,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1769.21,"{""seasonal"": ""17%""}",5189,0,Asia +2023-03-12,67220,6532,"[""Wireless Mouse"", ""Tablet""]",710.75,"{"""": ""30%""}",279896,1,South America +2023-01-29,67221,2453,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2361.48,{},21323,0,South America +2023-09-08,67222,22,"[""Tablet"", ""Laptop"", ""Monitor""]",361.55,"{""loyalty"": ""9%""}",195104,0,North America +2024-06-25,67223,8225,"[""Monitor"", ""Wireless Mouse""]",2520.89,{},21741,0,Asia +2024-11-26,67224,7279,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3682.27,{},126918,1,Europe +2023-04-23,67225,9644,"[""Laptop"", ""Headphones""]",812.02,"{""promo"": ""9%""}",230462,1,Asia +2024-02-14,67226,8393,"[""Laptop"", ""Tablet""]",651.99,"{""seasonal"": ""5%""}",296444,1,Europe +2023-03-25,67227,6483,"[""Wireless Mouse"", ""Laptop""]",1629.94,"{""promo"": ""24%""}",225220,0,South America +2023-12-22,67228,1256,"[""Wireless Mouse""]",4545.13,{},192639,0,North America +2023-11-28,67229,5554,"[""Headphones""]",2280.47,{},123029,0,Asia +2023-06-27,67230,9425,"[""Charger"", ""Keyboard"", ""Headphones""]",4810.13,{},73314,1,Africa +2024-02-19,67231,6722,"[""Laptop"", ""Charger"", ""Phone""]",448.28,"{""promo"": ""11%""}",233175,1,North America +2024-03-27,67232,6378,"[""Keyboard"", ""Wireless Mouse""]",3709.54,{},190619,1,South America +2024-03-07,67233,1248,"[""Phone"", ""Monitor""]",4734.83,{},204784,1,Europe +2024-10-28,67234,2495,"[""Phone""]",3951.13,"{""loyalty"": ""9%""}",172025,1,Asia +2024-12-30,67235,3862,"[""Headphones"", ""Wireless Mouse""]",1613.48,{},8497,0,Asia +2023-05-24,67236,3853,"[""Wireless Mouse""]",3879.38,"{""seasonal"": ""7%""}",192732,0,Asia +2024-10-26,67237,1234,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",547.77,"{""seasonal"": ""19%""}",173029,1,Europe +2023-10-15,67238,2920,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2441.54,"{"""": ""13%""}",39062,1,Europe +2023-05-16,67239,1821,"[""Phone""]",2678.08,"{""seasonal"": ""19%""}",212354,0,North America +2023-05-26,67240,2139,"[""Wireless Mouse"", ""Tablet""]",4780.55,{},208314,1,Europe +2023-05-29,67241,6418,"[""Headphones""]",3291.82,{},91984,1,North America +2023-05-15,67242,1412,"[""Charger"", ""Tablet"", ""Keyboard""]",2732.26,"{""seasonal"": ""25%""}",279569,0,Africa +2024-09-13,67243,1869,"[""Charger""]",3543.4,{},228522,1,Africa +2024-02-05,67244,9348,"[""Keyboard""]",1109.29,"{""loyalty"": ""30%""}",152011,1,Africa +2023-04-19,67245,7904,"[""Phone""]",929.08,{},204574,1,Asia +2023-09-16,67246,7586,"[""Wireless Mouse""]",3336.65,"{"""": ""18%""}",286835,1,Europe +2024-09-25,67247,758,"[""Headphones"", ""Tablet""]",4495.88,{},204406,1,Africa +2024-05-12,67248,5383,"[""Phone"", ""Laptop""]",237.19,{},186862,1,South America +2023-07-07,67249,1894,"[""Monitor"", ""Keyboard""]",2518.92,{},242058,1,North America +2024-10-14,67250,8872,"[""Laptop"", ""Tablet"", ""Monitor""]",471.03,"{""loyalty"": ""26%""}",21007,1,Europe +2024-02-09,67251,3147,"[""Charger"", ""Headphones"", ""Tablet""]",2565.73,"{""loyalty"": ""14%""}",15744,0,Africa +2024-01-10,67252,2840,"[""Keyboard"", ""Charger""]",4315.36,{},125370,0,North America +2024-08-19,67253,7446,"[""Headphones"", ""Monitor""]",3977.56,"{""seasonal"": ""15%""}",171162,0,South America +2023-01-07,67254,9504,"[""Phone"", ""Laptop"", ""Monitor""]",3379.45,"{""promo"": ""23%""}",95551,0,Europe +2023-07-17,67255,3360,"[""Wireless Mouse"", ""Keyboard""]",3804.94,{},233432,1,North America +2023-08-11,67256,5988,"[""Monitor""]",4575.54,{},63065,0,South America +2023-10-07,67257,3583,"[""Monitor"", ""Keyboard""]",2583.47,"{"""": ""8%""}",286183,1,South America +2024-01-02,67258,1137,"[""Charger""]",2914.73,"{""seasonal"": ""28%""}",45142,0,Asia +2024-09-06,67259,3501,"[""Charger"", ""Phone"", ""Headphones""]",1052.14,{},145810,0,Asia +2023-05-01,67260,3811,"[""Laptop""]",732.35,"{""loyalty"": ""14%""}",144601,1,South America +2023-11-12,67261,4190,"[""Charger""]",2791.94,"{"""": ""21%""}",124091,0,Africa +2023-10-05,67262,2555,"[""Phone"", ""Monitor"", ""Laptop""]",2761.71,{},105410,1,Asia +2024-05-25,67263,8023,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1300.55,{},69447,0,Africa +2024-03-22,67264,3788,"[""Headphones""]",3950.03,{},28994,0,South America +2023-02-12,67265,9470,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4680.23,{},55772,1,North America +2024-04-26,67266,4858,"[""Wireless Mouse""]",2703.51,"{"""": ""23%""}",37952,0,South America +2024-08-07,67267,3472,"[""Monitor"", ""Phone""]",368.59,{},196235,1,Europe +2024-02-20,67268,4458,"[""Headphones"", ""Laptop""]",1915.55,"{"""": ""14%""}",105395,1,South America +2024-04-07,67269,7886,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1258.26,"{""seasonal"": ""19%""}",58304,1,Asia +2024-09-14,67270,6518,"[""Keyboard""]",3566.51,"{""seasonal"": ""9%""}",130365,0,South America +2023-01-08,67271,5889,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1438.05,"{""promo"": ""20%""}",145068,1,North America +2023-09-11,67272,3172,"[""Tablet"", ""Charger"", ""Phone""]",1662.93,{},34908,1,Europe +2024-10-05,67273,5097,"[""Phone"", ""Keyboard""]",3788.12,"{""promo"": ""7%""}",268029,1,Europe +2023-06-05,67274,100,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4953.18,"{""promo"": ""20%""}",37811,0,Africa +2024-01-04,67275,457,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1445.77,"{""promo"": ""13%""}",170721,0,Asia +2024-07-19,67276,3535,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1003.35,"{""promo"": ""24%""}",204260,0,Europe +2023-03-08,67277,845,"[""Tablet""]",1767.17,"{""loyalty"": ""5%""}",295241,0,Europe +2023-10-24,67278,9377,"[""Monitor""]",1323.54,{},291712,1,Asia +2024-04-28,67279,756,"[""Tablet"", ""Monitor""]",2433.05,"{""loyalty"": ""9%""}",130633,1,South America +2023-05-23,67280,5795,"[""Tablet"", ""Headphones""]",2220.82,"{""seasonal"": ""15%""}",107709,1,Europe +2023-12-08,67281,8506,"[""Laptop"", ""Phone""]",691.57,{},122040,0,Asia +2024-10-19,67282,8876,"[""Wireless Mouse"", ""Charger""]",4898.77,"{"""": ""14%""}",294950,0,North America +2024-01-01,67283,8402,"[""Keyboard"", ""Headphones"", ""Monitor""]",4046.83,{},192583,0,Asia +2024-02-20,67284,1457,"[""Charger""]",1574.01,{},10976,1,Europe +2023-06-11,67285,5013,"[""Headphones""]",4872.75,{},231419,1,Europe +2024-09-13,67286,5791,"[""Keyboard""]",685.36,"{""loyalty"": ""7%""}",153242,0,North America +2024-07-12,67287,1777,"[""Tablet""]",2924.58,"{""promo"": ""24%""}",82547,0,North America +2024-09-15,67288,8699,"[""Keyboard"", ""Monitor""]",3650.71,"{"""": ""17%""}",178613,0,Europe +2024-02-20,67289,8091,"[""Monitor"", ""Laptop"", ""Headphones""]",2928.86,{},215854,1,Europe +2023-03-29,67290,1931,"[""Keyboard""]",1068.14,{},8136,1,Asia +2024-05-23,67291,38,"[""Keyboard""]",3446.05,{},126448,0,Europe +2023-08-10,67292,9249,"[""Monitor"", ""Keyboard""]",1455.06,"{""loyalty"": ""22%""}",243408,1,South America +2023-01-19,67293,1176,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",591.45,"{""seasonal"": ""12%""}",104880,1,South America +2023-03-06,67294,6764,"[""Laptop"", ""Charger"", ""Keyboard""]",4618.41,{},118440,1,Africa +2024-07-24,67295,2297,"[""Charger"", ""Phone"", ""Keyboard""]",436.25,"{""loyalty"": ""26%""}",88833,1,Europe +2024-10-04,67296,4722,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1361.73,{},275075,1,Europe +2023-07-08,67297,7281,"[""Wireless Mouse""]",2990.37,"{""promo"": ""6%""}",92194,1,Africa +2023-12-05,67298,331,"[""Headphones"", ""Laptop"", ""Phone""]",1759.84,{},1692,0,Europe +2024-12-07,67299,2100,"[""Charger""]",2871.41,"{""promo"": ""28%""}",188032,0,South America +2024-04-13,67300,1195,"[""Headphones"", ""Tablet"", ""Laptop""]",123.96,{},248351,1,Asia +2023-06-10,67301,3126,"[""Charger"", ""Laptop"", ""Phone""]",2109.58,{},9959,1,North America +2024-07-02,67302,3491,"[""Phone"", ""Keyboard"", ""Charger""]",4202.28,"{""promo"": ""10%""}",220106,1,Europe +2024-04-20,67303,3003,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",649.83,{},221561,0,Europe +2023-03-18,67304,1389,"[""Headphones"", ""Laptop"", ""Tablet""]",2981.78,{},146961,1,North America +2023-06-18,67305,5593,"[""Wireless Mouse""]",1357.64,{},1060,1,North America +2023-06-25,67306,5796,"[""Laptop""]",2640.22,{},110070,0,South America +2023-04-28,67307,4747,"[""Charger"", ""Keyboard"", ""Monitor""]",2634.52,{},5826,0,South America +2024-06-28,67308,9171,"[""Keyboard""]",2415.87,{},44268,1,Africa +2024-09-26,67309,6282,"[""Tablet"", ""Charger"", ""Keyboard""]",849.88,{},37636,0,South America +2023-04-12,67310,6456,"[""Phone""]",1949.43,{},186947,0,Asia +2023-06-15,67311,8812,"[""Charger"", ""Keyboard"", ""Headphones""]",2959.47,"{""promo"": ""11%""}",233916,0,Africa +2024-05-17,67312,6379,"[""Laptop""]",1418.14,"{""seasonal"": ""11%""}",227783,0,Africa +2023-06-27,67313,202,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2881.03,{},184787,1,Asia +2023-01-27,67314,3469,"[""Monitor"", ""Tablet"", ""Charger""]",146.7,"{""promo"": ""17%""}",177190,1,North America +2024-12-04,67315,6189,"[""Charger"", ""Monitor"", ""Laptop""]",3674.53,{},234386,0,North America +2024-02-26,67316,1632,"[""Wireless Mouse""]",4746.44,{},118312,0,North America +2024-11-09,67317,2321,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3224.71,{},30683,0,Asia +2024-03-13,67318,2158,"[""Monitor""]",947.51,{},66721,1,Europe +2024-11-03,67319,6512,"[""Keyboard"", ""Tablet"", ""Headphones""]",4541.42,{},64921,1,South America +2024-04-19,67320,4349,"[""Charger"", ""Phone"", ""Headphones""]",214.58,{},76354,1,Europe +2023-10-06,67321,7511,"[""Laptop""]",4577.04,"{""loyalty"": ""13%""}",125669,1,Asia +2023-07-27,67322,9251,"[""Headphones"", ""Keyboard"", ""Monitor""]",1861.99,"{""seasonal"": ""5%""}",61074,0,Europe +2023-08-02,67323,7634,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1205.1,{},13785,0,Europe +2023-06-02,67324,9304,"[""Phone"", ""Tablet""]",4050.65,"{"""": ""14%""}",94967,0,Africa +2023-12-28,67325,5101,"[""Laptop"", ""Headphones""]",2649.08,{},30434,1,North America +2024-05-08,67326,2649,"[""Keyboard""]",1815.57,"{""promo"": ""26%""}",224518,0,Africa +2023-10-06,67327,9741,"[""Laptop"", ""Headphones""]",698.96,{},158717,1,Asia +2024-08-21,67328,6738,"[""Keyboard""]",975.45,{},268992,0,Asia +2024-06-23,67329,6183,"[""Tablet"", ""Phone""]",3972.52,{},249805,0,Asia +2024-02-07,67330,838,"[""Charger"", ""Headphones"", ""Tablet""]",3565.73,{},193104,0,South America +2023-08-26,67331,503,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4058.82,"{""promo"": ""21%""}",1011,1,Africa +2023-01-03,67332,4734,"[""Laptop"", ""Tablet"", ""Monitor""]",885.92,"{""loyalty"": ""29%""}",245726,0,North America +2023-11-03,67333,2782,"[""Headphones"", ""Tablet""]",2887.36,"{""loyalty"": ""18%""}",292351,0,Europe +2024-02-28,67334,6955,"[""Headphones""]",2543.17,{},237562,0,Africa +2024-06-26,67335,3395,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4535.3,{},220425,0,North America +2023-11-01,67336,7581,"[""Keyboard""]",4543.92,"{"""": ""9%""}",96169,1,North America +2023-12-23,67337,917,"[""Monitor"", ""Laptop"", ""Headphones""]",271.1,{},118151,1,South America +2024-05-28,67338,6488,"[""Charger""]",363.72,"{""seasonal"": ""18%""}",129477,1,Africa +2024-02-21,67339,3953,"[""Headphones"", ""Laptop""]",73.68,{},10961,1,South America +2024-09-10,67340,9255,"[""Keyboard"", ""Wireless Mouse""]",4647.09,{},275355,0,Europe +2024-03-09,67341,7677,"[""Monitor"", ""Keyboard"", ""Charger""]",2176.47,"{""loyalty"": ""24%""}",75041,0,Asia +2024-08-15,67342,2303,"[""Headphones""]",2995.98,"{"""": ""29%""}",226391,0,Asia +2023-07-07,67343,73,"[""Tablet""]",4948.03,{},152953,0,Asia +2024-03-20,67344,9261,"[""Phone""]",237.01,"{"""": ""24%""}",141771,0,North America +2024-09-20,67345,8489,"[""Wireless Mouse""]",2726.64,{},36106,1,Africa +2024-03-17,67346,917,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2702.1,{},148959,1,North America +2024-02-12,67347,8257,"[""Tablet"", ""Phone""]",1553.02,{},1997,0,North America +2024-11-15,67348,9437,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",941.46,{},80028,0,Europe +2024-03-19,67349,1112,"[""Headphones""]",1386.93,{},20145,0,South America +2024-11-01,67350,3450,"[""Keyboard"", ""Monitor"", ""Headphones""]",3762.14,"{""loyalty"": ""21%""}",172245,1,North America +2024-08-05,67351,1077,"[""Charger""]",3516.03,"{"""": ""21%""}",81188,0,South America +2024-11-09,67352,2096,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3758.78,{},20999,0,Africa +2023-01-22,67353,4236,"[""Monitor"", ""Tablet"", ""Headphones""]",217.25,{},170417,1,South America +2023-08-10,67354,1523,"[""Monitor"", ""Headphones""]",533.83,"{""seasonal"": ""15%""}",206014,1,South America +2023-12-12,67355,732,"[""Keyboard"", ""Phone""]",2566.06,"{""seasonal"": ""17%""}",158786,1,Asia +2024-04-01,67356,770,"[""Tablet"", ""Headphones"", ""Phone""]",1335.11,"{""promo"": ""5%""}",128438,1,Asia +2023-12-06,67357,7422,"[""Monitor"", ""Tablet"", ""Charger""]",1923.23,"{""promo"": ""13%""}",49335,0,South America +2024-02-19,67358,5832,"[""Keyboard""]",4895.94,"{""seasonal"": ""10%""}",253374,1,South America +2023-12-24,67359,7846,"[""Phone"", ""Laptop""]",4542.63,{},135987,1,South America +2023-08-21,67360,5782,"[""Phone""]",3313.1,{},261959,0,North America +2023-11-07,67361,6555,"[""Phone"", ""Headphones""]",3587.5,"{""promo"": ""15%""}",83545,1,Africa +2023-01-21,67362,2323,"[""Headphones"", ""Charger"", ""Tablet""]",2732.28,"{""seasonal"": ""16%""}",246224,0,Africa +2024-04-28,67363,5146,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1205.94,"{"""": ""8%""}",94243,0,Europe +2024-04-15,67364,3317,"[""Keyboard"", ""Headphones"", ""Laptop""]",2784.91,"{""loyalty"": ""6%""}",242583,0,Europe +2023-08-17,67365,1004,"[""Phone""]",2579.38,"{""promo"": ""28%""}",91116,1,Europe +2023-03-19,67366,84,"[""Headphones""]",1662.75,"{"""": ""22%""}",179741,0,North America +2023-08-07,67367,2421,"[""Charger"", ""Monitor""]",3926.98,{},193011,0,Europe +2023-05-27,67368,5224,"[""Keyboard"", ""Charger"", ""Tablet""]",2504.78,"{""loyalty"": ""28%""}",225413,0,South America +2024-09-15,67369,3741,"[""Keyboard""]",1610.78,"{""seasonal"": ""19%""}",132971,0,North America +2024-11-11,67370,8927,"[""Laptop"", ""Phone""]",4307.3,{},290073,1,Europe +2023-07-22,67371,5947,"[""Laptop"", ""Headphones""]",4097.08,{},5964,0,Africa +2023-05-15,67372,5382,"[""Charger""]",2187.08,{},119913,0,South America +2024-06-11,67373,759,"[""Wireless Mouse"", ""Charger""]",1230.51,"{""promo"": ""13%""}",13420,0,Europe +2023-01-29,67374,5114,"[""Laptop"", ""Wireless Mouse""]",3871.48,"{"""": ""15%""}",151621,1,Africa +2024-09-09,67375,6792,"[""Phone"", ""Keyboard"", ""Tablet""]",375.65,"{""seasonal"": ""24%""}",137366,1,South America +2024-05-22,67376,2988,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3893.85,"{""loyalty"": ""26%""}",177983,0,South America +2024-05-11,67377,2019,"[""Headphones"", ""Monitor""]",2282.53,{},255107,0,Africa +2024-06-25,67378,2708,"[""Monitor"", ""Keyboard""]",1006.79,{},264604,1,North America +2023-11-15,67379,9944,"[""Phone""]",2279.45,{},244463,0,North America +2023-05-09,67380,235,"[""Headphones"", ""Tablet""]",3520.54,{},199260,0,Asia +2024-11-03,67381,5336,"[""Monitor""]",1361.56,{},286956,0,South America +2024-12-31,67382,2033,"[""Monitor""]",3337.05,{},120730,0,Europe +2024-10-06,67383,4910,"[""Keyboard"", ""Tablet"", ""Laptop""]",1280.5,{},220039,0,Europe +2024-10-20,67384,8563,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4649.23,{},157954,0,Asia +2023-10-28,67385,6231,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3372.36,{},272975,1,North America +2023-01-06,67386,9157,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1057.11,"{"""": ""26%""}",85141,0,North America +2024-06-03,67387,784,"[""Laptop""]",4915.32,{},111398,1,South America +2024-03-26,67388,8261,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3199.39,{},52147,1,Asia +2023-08-12,67389,6881,"[""Headphones"", ""Laptop"", ""Tablet""]",2724.9,{},27341,0,Asia +2024-10-13,67390,5070,"[""Tablet""]",601.51,"{""loyalty"": ""14%""}",292661,1,South America +2024-05-12,67391,2080,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2765.79,"{""promo"": ""12%""}",18187,0,Africa +2023-05-29,67392,8070,"[""Wireless Mouse""]",4559.88,"{""loyalty"": ""14%""}",8928,1,Africa +2024-09-04,67393,6781,"[""Tablet""]",169.44,"{""promo"": ""22%""}",269415,0,South America +2023-09-19,67394,732,"[""Wireless Mouse""]",1803.72,{},106772,0,North America +2023-12-13,67395,170,"[""Tablet""]",3817.6,"{""promo"": ""25%""}",76951,1,Asia +2024-01-20,67396,9975,"[""Tablet"", ""Laptop""]",1452.53,{},171408,0,South America +2023-03-24,67397,5315,"[""Phone""]",761.66,"{""promo"": ""25%""}",60029,1,North America +2024-04-04,67398,2495,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2896.6,{},279797,0,Africa +2024-01-16,67399,453,"[""Charger""]",4791.35,{},218019,0,Asia +2024-08-09,67400,6902,"[""Laptop""]",336.17,"{"""": ""27%""}",268544,0,South America +2023-02-28,67401,9030,"[""Laptop"", ""Wireless Mouse""]",4117.9,"{""promo"": ""13%""}",17532,0,North America +2024-01-02,67402,5789,"[""Tablet"", ""Laptop"", ""Keyboard""]",2307.27,"{""seasonal"": ""15%""}",245664,0,Europe +2024-12-03,67403,4636,"[""Tablet"", ""Headphones""]",883.78,"{""seasonal"": ""8%""}",215481,0,Asia +2023-03-24,67404,884,"[""Monitor"", ""Tablet""]",4152.46,{},8018,1,South America +2023-02-05,67405,2248,"[""Laptop"", ""Headphones""]",4675.79,"{""promo"": ""15%""}",115005,0,North America +2024-07-21,67406,7330,"[""Laptop"", ""Monitor""]",329.72,"{""promo"": ""6%""}",293413,1,South America +2023-11-26,67407,1063,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1455.14,{},57211,0,South America +2023-09-06,67408,3053,"[""Charger"", ""Keyboard"", ""Phone""]",1741.59,"{""loyalty"": ""20%""}",55249,0,North America +2023-11-03,67409,9174,"[""Keyboard"", ""Tablet""]",2414.44,"{""promo"": ""6%""}",127228,0,Africa +2024-09-22,67410,3281,"[""Tablet"", ""Headphones""]",3758.43,{},243149,1,South America +2024-12-04,67411,7435,"[""Laptop"", ""Charger""]",1938.28,{},46989,1,South America +2024-07-20,67412,5734,"[""Monitor""]",2731.23,{},171367,0,North America +2023-05-14,67413,227,"[""Laptop""]",2471.26,{},286589,0,North America +2024-04-10,67414,7246,"[""Wireless Mouse""]",4010.95,{},81262,0,Africa +2023-11-13,67415,1439,"[""Laptop""]",4250.5,{},19736,0,North America +2024-11-04,67416,5762,"[""Keyboard"", ""Charger""]",794.02,"{""promo"": ""15%""}",299415,1,Europe +2023-03-18,67417,5011,"[""Headphones"", ""Phone""]",4820.68,{},183332,0,Asia +2024-12-12,67418,664,"[""Charger"", ""Monitor"", ""Keyboard""]",3740.8,{},23551,1,South America +2024-07-05,67419,6186,"[""Keyboard"", ""Laptop"", ""Headphones""]",3444.62,"{""loyalty"": ""13%""}",172293,1,Asia +2023-04-04,67420,5572,"[""Tablet"", ""Monitor""]",3286.03,"{""promo"": ""22%""}",112876,1,Europe +2023-06-19,67421,9979,"[""Charger""]",254.93,{},62729,0,Europe +2024-02-05,67422,703,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3388.74,"{""seasonal"": ""30%""}",174239,0,Africa +2024-07-11,67423,5956,"[""Tablet""]",1031.29,{},206684,0,North America +2023-06-23,67424,2822,"[""Phone""]",625.36,"{""promo"": ""13%""}",97364,1,Africa +2023-01-23,67425,8809,"[""Phone"", ""Headphones"", ""Monitor""]",4200.07,{},36259,0,Europe +2024-05-10,67426,8801,"[""Phone"", ""Monitor""]",3438.35,{},122191,0,Africa +2023-07-03,67427,5597,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4061.18,{},67655,0,South America +2023-07-07,67428,2652,"[""Keyboard""]",3133.17,{},88541,0,Asia +2024-02-23,67429,6086,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3439.72,"{""loyalty"": ""21%""}",116401,1,Africa +2023-02-09,67430,801,"[""Phone"", ""Headphones"", ""Keyboard""]",533.81,{},25640,0,Europe +2023-04-28,67431,1637,"[""Charger""]",197.52,"{""loyalty"": ""23%""}",250287,0,Asia +2023-08-28,67432,6331,"[""Tablet""]",4892.48,{},76281,1,Africa +2024-01-04,67433,7416,"[""Headphones"", ""Monitor""]",739.0,{},39347,1,Africa +2023-05-10,67434,7475,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",478.24,"{""seasonal"": ""14%""}",70926,1,Europe +2023-09-01,67435,4561,"[""Monitor""]",4669.69,"{""promo"": ""10%""}",28561,1,Asia +2024-08-12,67436,9052,"[""Headphones""]",2253.48,{},250231,0,Europe +2024-11-14,67437,8701,"[""Laptop"", ""Wireless Mouse""]",642.18,{},153838,1,Europe +2024-01-10,67438,5830,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4513.68,"{""loyalty"": ""18%""}",175929,0,South America +2024-03-30,67439,1198,"[""Laptop""]",1863.67,{},278406,1,North America +2023-02-08,67440,5652,"[""Keyboard"", ""Headphones"", ""Monitor""]",4587.18,{},281967,1,South America +2024-08-14,67441,6820,"[""Charger"", ""Wireless Mouse""]",2756.88,"{""loyalty"": ""15%""}",80271,1,South America +2023-05-22,67442,7372,"[""Charger"", ""Laptop"", ""Phone""]",1477.5,"{""seasonal"": ""17%""}",187491,1,South America +2023-07-07,67443,4261,"[""Laptop"", ""Charger""]",1197.21,"{""promo"": ""21%""}",160269,1,Africa +2024-07-17,67444,6178,"[""Keyboard""]",1156.07,{},268956,0,Europe +2024-11-20,67445,6254,"[""Charger"", ""Tablet"", ""Headphones""]",917.55,{},240947,0,Asia +2023-03-01,67446,900,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3473.83,{},249780,1,South America +2023-11-30,67447,7993,"[""Wireless Mouse""]",4785.31,{},279055,1,North America +2023-10-16,67448,6313,"[""Laptop""]",4303.89,"{""loyalty"": ""28%""}",241523,0,Asia +2023-01-14,67449,8376,"[""Keyboard"", ""Headphones"", ""Phone""]",1256.05,"{""loyalty"": ""23%""}",11916,1,Europe +2024-05-21,67450,65,"[""Charger"", ""Tablet""]",3926.2,{},164600,0,Europe +2023-04-02,67451,9981,"[""Laptop"", ""Headphones"", ""Tablet""]",3444.15,"{""seasonal"": ""6%""}",168691,0,South America +2023-03-18,67452,4512,"[""Headphones""]",1354.61,"{"""": ""22%""}",6743,1,North America +2024-02-25,67453,6070,"[""Charger"", ""Monitor""]",3560.25,{},299952,0,Africa +2024-07-02,67454,1521,"[""Monitor"", ""Charger"", ""Phone""]",2336.39,{},291828,1,Asia +2024-10-31,67455,1158,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3943.05,"{""seasonal"": ""20%""}",240386,0,North America +2023-04-16,67456,9459,"[""Phone""]",3260.56,{},250291,0,Africa +2023-11-30,67457,9555,"[""Laptop""]",3322.2,"{""seasonal"": ""28%""}",14978,0,South America +2024-04-18,67458,1887,"[""Headphones""]",4227.43,{},143643,1,North America +2024-06-23,67459,1799,"[""Headphones"", ""Charger""]",298.38,"{""seasonal"": ""7%""}",260079,0,Asia +2024-06-25,67460,1550,"[""Keyboard"", ""Charger""]",58.69,{},65730,1,Africa +2024-11-20,67461,8888,"[""Phone""]",2578.37,"{""seasonal"": ""22%""}",278165,0,Asia +2024-10-04,67462,3907,"[""Tablet"", ""Charger"", ""Headphones""]",3570.37,{},52017,1,Africa +2023-06-11,67463,3500,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1689.82,"{""loyalty"": ""17%""}",65929,1,Africa +2023-09-06,67464,9758,"[""Phone""]",4631.48,{},1049,1,South America +2023-06-18,67465,864,"[""Monitor""]",1524.44,{},235588,1,Europe +2024-07-20,67466,7986,"[""Headphones""]",2518.44,"{""promo"": ""24%""}",203278,0,North America +2023-03-14,67467,207,"[""Laptop"", ""Headphones""]",4825.03,{},65830,1,Asia +2023-04-12,67468,437,"[""Wireless Mouse""]",2639.66,"{""promo"": ""20%""}",63357,0,North America +2023-12-11,67469,5698,"[""Headphones""]",782.62,"{""seasonal"": ""18%""}",39147,0,Europe +2024-07-16,67470,8385,"[""Tablet"", ""Phone""]",1520.4,{},276445,0,South America +2024-02-07,67471,5076,"[""Wireless Mouse"", ""Monitor""]",1600.79,"{""promo"": ""20%""}",145230,1,North America +2023-08-30,67472,8868,"[""Charger"", ""Keyboard"", ""Phone""]",4567.65,"{"""": ""22%""}",79796,1,North America +2023-07-11,67473,334,"[""Tablet"", ""Laptop""]",2184.24,{},63311,1,Africa +2023-09-02,67474,346,"[""Laptop"", ""Headphones"", ""Charger""]",2850.3,"{""seasonal"": ""18%""}",11950,1,South America +2024-11-20,67475,1391,"[""Headphones"", ""Wireless Mouse""]",4768.3,"{""loyalty"": ""26%""}",155593,1,Europe +2024-10-05,67476,5425,"[""Charger""]",3262.2,"{""seasonal"": ""12%""}",178381,0,South America +2023-12-02,67477,4898,"[""Phone""]",3551.03,"{"""": ""19%""}",97976,0,North America +2024-07-24,67478,5096,"[""Keyboard"", ""Phone"", ""Charger""]",3097.31,"{"""": ""15%""}",287776,0,North America +2024-04-07,67479,9114,"[""Tablet""]",2895.43,{},92666,0,South America +2024-11-24,67480,2582,"[""Laptop"", ""Tablet""]",3978.7,{},221401,0,Asia +2023-08-15,67481,8003,"[""Laptop"", ""Charger""]",167.02,"{""loyalty"": ""6%""}",124936,0,Asia +2023-11-25,67482,46,"[""Wireless Mouse"", ""Phone""]",1638.39,"{"""": ""18%""}",135661,0,Africa +2024-02-10,67483,5522,"[""Headphones""]",2958.68,"{""loyalty"": ""10%""}",244536,0,Asia +2023-02-05,67484,6162,"[""Tablet""]",4004.22,"{""loyalty"": ""13%""}",7796,1,South America +2023-10-21,67485,9017,"[""Tablet""]",3853.37,{},154101,0,Asia +2024-05-15,67486,2904,"[""Wireless Mouse"", ""Keyboard""]",691.8,"{""promo"": ""12%""}",72114,1,Europe +2023-10-01,67487,5345,"[""Keyboard"", ""Phone"", ""Laptop""]",2479.92,{},271474,1,North America +2024-05-26,67488,6935,"[""Wireless Mouse""]",3357.52,"{""seasonal"": ""24%""}",229654,0,Africa +2023-01-12,67489,5613,"[""Tablet""]",2572.37,{},165403,0,South America +2024-04-18,67490,1205,"[""Tablet"", ""Monitor""]",4077.07,{},237054,1,Africa +2024-12-13,67491,3576,"[""Monitor"", ""Keyboard""]",1280.93,"{"""": ""25%""}",34729,0,North America +2024-03-17,67492,1737,"[""Keyboard""]",77.39,{},190282,1,Europe +2024-09-05,67493,6365,"[""Headphones""]",4432.29,"{""seasonal"": ""21%""}",127097,0,South America +2024-11-11,67494,1553,"[""Tablet"", ""Headphones"", ""Monitor""]",2429.39,{},97878,0,North America +2023-11-01,67495,6592,"[""Charger""]",4511.08,{},237761,1,North America +2023-11-06,67496,7542,"[""Phone"", ""Charger""]",2231.05,"{""promo"": ""12%""}",146725,1,Asia +2024-06-30,67497,7072,"[""Laptop"", ""Monitor"", ""Keyboard""]",2175.19,"{""promo"": ""14%""}",105438,1,Asia +2024-12-10,67498,459,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",649.64,{},215216,1,Europe +2024-06-01,67499,2564,"[""Keyboard"", ""Tablet"", ""Phone""]",1681.91,{},15543,0,North America +2024-01-27,67500,8463,"[""Laptop"", ""Charger""]",2851.25,{},54945,1,South America +2023-08-02,67501,298,"[""Headphones"", ""Charger"", ""Laptop""]",555.66,{},51309,0,Africa +2024-04-11,67502,3671,"[""Keyboard"", ""Phone""]",3377.82,"{""promo"": ""18%""}",241406,1,Africa +2023-11-28,67503,2080,"[""Tablet""]",3111.04,{},298249,1,North America +2023-09-13,67504,5699,"[""Headphones"", ""Tablet""]",143.67,{},188918,0,Asia +2024-07-09,67505,2549,"[""Laptop"", ""Tablet""]",3791.81,"{""loyalty"": ""30%""}",126874,0,North America +2024-03-10,67506,7683,"[""Wireless Mouse""]",3304.93,{},238712,0,South America +2023-10-07,67507,1095,"[""Laptop""]",3000.23,{},258723,1,South America +2024-10-16,67508,4189,"[""Charger"", ""Keyboard""]",3602.39,"{"""": ""15%""}",127894,1,Asia +2024-12-10,67509,67,"[""Monitor""]",2636.58,"{"""": ""6%""}",282764,1,Europe +2024-02-04,67510,280,"[""Tablet"", ""Laptop""]",4152.63,"{"""": ""30%""}",219111,0,Europe +2024-04-02,67511,6932,"[""Headphones"", ""Laptop""]",539.8,{},14812,1,Africa +2023-06-12,67512,6,"[""Keyboard"", ""Phone""]",4786.49,{},293493,1,Africa +2024-05-22,67513,105,"[""Keyboard"", ""Monitor""]",105.46,"{""loyalty"": ""30%""}",89212,1,North America +2024-02-14,67514,1038,"[""Laptop""]",2879.82,"{""seasonal"": ""10%""}",207669,0,Europe +2024-10-22,67515,282,"[""Keyboard"", ""Monitor"", ""Tablet""]",2667.57,{},267819,0,Africa +2024-12-19,67516,4369,"[""Monitor"", ""Wireless Mouse""]",4617.9,{},259304,0,Africa +2023-06-12,67517,2581,"[""Wireless Mouse"", ""Monitor""]",1435.61,{},42328,1,South America +2024-08-07,67518,8327,"[""Phone"", ""Monitor""]",3111.77,{},275280,1,North America +2023-09-04,67519,2133,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3513.48,"{""promo"": ""12%""}",124373,1,Europe +2023-11-20,67520,7300,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2133.56,{},84163,0,Europe +2023-08-10,67521,7553,"[""Keyboard""]",4856.43,{},294283,0,Africa +2024-07-20,67522,4429,"[""Laptop""]",4377.76,{},189518,1,Africa +2023-07-28,67523,7153,"[""Phone"", ""Charger"", ""Keyboard""]",4754.55,"{""promo"": ""16%""}",126260,0,Europe +2024-09-03,67524,4141,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4102.82,{},237620,1,Africa +2023-03-12,67525,7353,"[""Keyboard""]",4952.71,"{"""": ""14%""}",91698,1,North America +2024-07-31,67526,7831,"[""Headphones"", ""Charger"", ""Phone""]",1146.64,"{""seasonal"": ""20%""}",40560,1,Europe +2024-06-06,67527,3786,"[""Tablet"", ""Phone""]",3142.71,{},77556,1,North America +2024-06-25,67528,2347,"[""Charger"", ""Laptop""]",4831.02,{},99400,1,South America +2024-01-26,67529,1439,"[""Keyboard""]",354.77,{},115834,0,South America +2023-12-15,67530,9149,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4358.69,{},173772,0,South America +2023-07-13,67531,8067,"[""Phone"", ""Laptop""]",1449.66,"{"""": ""10%""}",109086,0,North America +2023-01-02,67532,2156,"[""Phone"", ""Charger"", ""Monitor""]",4694.63,{},82162,1,North America +2024-04-02,67533,7985,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",343.6,"{""seasonal"": ""21%""}",106531,0,Asia +2024-10-07,67534,3357,"[""Wireless Mouse""]",1627.03,{},130157,1,North America +2024-05-26,67535,7966,"[""Phone"", ""Charger""]",654.73,"{""seasonal"": ""29%""}",108350,0,Europe +2024-11-26,67536,4591,"[""Charger"", ""Headphones""]",1648.2,"{"""": ""28%""}",113885,1,Africa +2023-03-29,67537,8339,"[""Monitor""]",850.81,{},279474,1,Asia +2023-02-13,67538,9908,"[""Tablet"", ""Monitor""]",4737.22,{},160706,0,Africa +2023-08-01,67539,278,"[""Laptop"", ""Keyboard"", ""Tablet""]",356.85,{},202761,1,North America +2023-02-13,67540,8200,"[""Wireless Mouse""]",1122.03,{},177332,0,South America +2023-12-14,67541,3366,"[""Charger""]",1558.84,"{""promo"": ""8%""}",193111,0,Europe +2023-09-08,67542,6353,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2698.84,{},102872,0,Africa +2023-04-19,67543,5782,"[""Headphones"", ""Monitor""]",3562.17,{},143113,0,South America +2023-07-27,67544,3190,"[""Wireless Mouse""]",1593.62,"{""loyalty"": ""9%""}",87625,0,South America +2024-11-30,67545,6973,"[""Charger"", ""Laptop""]",3200.79,"{"""": ""6%""}",53794,0,North America +2024-02-25,67546,9003,"[""Monitor"", ""Phone"", ""Tablet""]",594.02,{},7980,1,South America +2023-02-24,67547,7241,"[""Keyboard"", ""Tablet"", ""Laptop""]",3501.11,"{""promo"": ""8%""}",262504,1,Asia +2023-01-03,67548,6421,"[""Monitor"", ""Laptop""]",3034.95,{},79704,1,Africa +2024-01-14,67549,411,"[""Keyboard""]",2882.75,{},297908,1,Africa +2023-07-23,67550,1637,"[""Monitor"", ""Phone"", ""Keyboard""]",655.41,"{""loyalty"": ""24%""}",217334,1,Europe +2024-05-08,67551,9139,"[""Keyboard""]",1441.94,{},131407,0,South America +2023-03-17,67552,909,"[""Charger"", ""Monitor""]",4801.98,"{""seasonal"": ""17%""}",171415,1,South America +2023-04-12,67553,3844,"[""Keyboard"", ""Headphones""]",448.85,"{""loyalty"": ""10%""}",280324,0,Europe +2023-04-06,67554,7348,"[""Laptop""]",2468.91,{},125759,1,Africa +2023-08-01,67555,4708,"[""Headphones"", ""Keyboard""]",2358.43,"{""seasonal"": ""30%""}",169775,0,Europe +2024-12-14,67556,8532,"[""Phone"", ""Tablet""]",4947.05,{},9064,1,North America +2024-06-10,67557,180,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1162.74,"{"""": ""10%""}",30619,0,Europe +2023-10-19,67558,3108,"[""Phone"", ""Keyboard"", ""Monitor""]",4852.97,{},68535,0,Europe +2023-07-13,67559,5706,"[""Phone"", ""Tablet"", ""Monitor""]",4988.06,{},251818,0,North America +2024-12-13,67560,4223,"[""Monitor""]",2715.8,{},251285,1,Africa +2024-08-18,67561,679,"[""Keyboard"", ""Monitor""]",1575.13,{},274809,0,South America +2024-10-06,67562,2237,"[""Keyboard"", ""Wireless Mouse""]",468.4,"{""loyalty"": ""12%""}",48476,1,North America +2023-12-15,67563,5114,"[""Wireless Mouse"", ""Headphones""]",2280.65,{},203790,0,North America +2023-10-11,67564,3456,"[""Laptop"", ""Headphones"", ""Tablet""]",3721.96,"{""loyalty"": ""17%""}",242632,0,North America +2024-10-01,67565,2582,"[""Phone"", ""Monitor""]",2668.25,"{"""": ""24%""}",95264,0,Asia +2023-04-20,67566,9249,"[""Headphones""]",1418.12,{},247825,1,North America +2024-10-22,67567,5859,"[""Phone"", ""Tablet""]",3476.36,{},230654,1,Europe +2023-08-05,67568,9633,"[""Wireless Mouse"", ""Phone""]",1538.97,"{"""": ""30%""}",89092,0,Asia +2024-12-18,67569,8250,"[""Keyboard""]",3349.28,{},132150,0,Africa +2023-04-10,67570,3350,"[""Phone""]",4738.44,{},267029,0,Asia +2023-05-01,67571,8162,"[""Wireless Mouse"", ""Laptop""]",4949.39,{},295557,0,Africa +2023-08-10,67572,943,"[""Keyboard""]",484.95,{},129936,1,South America +2024-06-25,67573,2798,"[""Phone""]",4585.05,"{"""": ""14%""}",256825,0,Europe +2024-01-11,67574,2674,"[""Monitor""]",3474.33,"{"""": ""11%""}",35675,1,Africa +2023-10-01,67575,408,"[""Laptop""]",4712.98,"{""loyalty"": ""25%""}",281024,0,Africa +2023-07-31,67576,6060,"[""Phone""]",4298.76,{},295515,0,Africa +2023-06-29,67577,1674,"[""Laptop"", ""Tablet"", ""Monitor""]",1442.52,{},45486,0,South America +2024-12-17,67578,5969,"[""Headphones"", ""Phone""]",170.65,{},267365,1,Asia +2023-02-12,67579,4868,"[""Phone"", ""Wireless Mouse"", ""Charger""]",845.93,"{"""": ""21%""}",115902,1,North America +2024-12-11,67580,2747,"[""Laptop"", ""Monitor"", ""Headphones""]",1792.46,{},116177,0,Asia +2024-09-09,67581,4276,"[""Monitor""]",4458.92,{},42592,0,Africa +2023-09-04,67582,8850,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",987.87,{},103572,1,Asia +2023-01-27,67583,4126,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3321.13,"{""seasonal"": ""21%""}",5866,0,North America +2024-07-07,67584,716,"[""Headphones"", ""Charger""]",2807.23,"{""seasonal"": ""17%""}",98530,0,Africa +2024-06-27,67585,35,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",451.15,{},250675,0,Europe +2024-12-07,67586,7541,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2585.9,"{""loyalty"": ""10%""}",37660,0,North America +2024-07-05,67587,640,"[""Tablet""]",2711.37,{},247909,1,South America +2023-11-05,67588,1596,"[""Monitor"", ""Charger"", ""Headphones""]",267.9,"{""seasonal"": ""5%""}",33253,1,Asia +2024-01-19,67589,5802,"[""Laptop"", ""Tablet""]",2144.59,{},244075,0,Asia +2023-06-21,67590,9343,"[""Headphones"", ""Charger"", ""Monitor""]",138.54,{},131015,1,Asia +2024-02-14,67591,8,"[""Headphones"", ""Phone""]",4746.55,{},40436,1,South America +2024-07-05,67592,6203,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2635.89,{},246485,1,South America +2024-09-14,67593,1313,"[""Laptop"", ""Tablet"", ""Headphones""]",2553.5,"{""loyalty"": ""13%""}",280903,0,South America +2024-05-28,67594,9750,"[""Monitor""]",2905.38,"{""seasonal"": ""29%""}",230964,1,Europe +2023-03-15,67595,5563,"[""Wireless Mouse"", ""Phone""]",1938.83,{},13375,1,Europe +2024-08-15,67596,7522,"[""Keyboard"", ""Laptop""]",3339.07,"{""loyalty"": ""19%""}",223849,0,Europe +2023-08-05,67597,9728,"[""Laptop"", ""Tablet""]",3032.75,{},16316,0,Africa +2023-04-27,67598,5049,"[""Charger"", ""Headphones"", ""Keyboard""]",3806.69,{},292036,1,Asia +2023-08-08,67599,9434,"[""Wireless Mouse"", ""Keyboard""]",2450.93,"{""seasonal"": ""5%""}",200198,0,North America +2024-07-02,67600,3663,"[""Headphones"", ""Laptop""]",3246.5,{},123060,0,Africa +2024-12-29,67601,7669,"[""Monitor""]",4846.11,"{""loyalty"": ""27%""}",77544,1,Asia +2023-08-07,67602,1629,"[""Charger""]",1100.24,{},195632,0,South America +2023-03-11,67603,9153,"[""Phone"", ""Laptop""]",1260.81,"{""loyalty"": ""23%""}",36070,0,South America +2024-08-03,67604,3465,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4556.96,"{""loyalty"": ""11%""}",108226,1,Europe +2024-08-24,67605,6064,"[""Tablet"", ""Phone"", ""Monitor""]",517.72,"{""loyalty"": ""6%""}",85302,1,North America +2023-12-23,67606,6719,"[""Phone"", ""Charger""]",254.94,"{""loyalty"": ""30%""}",205259,0,South America +2023-10-03,67607,7526,"[""Wireless Mouse""]",4345.86,{},35825,0,North America +2023-05-13,67608,7321,"[""Phone"", ""Keyboard"", ""Charger""]",3764.85,"{""seasonal"": ""23%""}",122095,0,South America +2023-01-10,67609,7424,"[""Monitor"", ""Laptop"", ""Phone""]",2621.31,"{"""": ""28%""}",86613,0,South America +2023-01-29,67610,5557,"[""Keyboard"", ""Laptop"", ""Phone""]",397.4,{},119679,1,Europe +2024-04-20,67611,5389,"[""Phone"", ""Keyboard""]",4730.38,"{""loyalty"": ""26%""}",236820,1,Africa +2024-04-29,67612,261,"[""Charger""]",977.26,{},5391,1,South America +2024-10-01,67613,26,"[""Wireless Mouse"", ""Tablet""]",4520.5,{},43202,0,South America +2024-01-18,67614,7727,"[""Charger"", ""Tablet""]",1230.51,"{""loyalty"": ""8%""}",108355,1,Asia +2024-11-07,67615,4800,"[""Headphones""]",915.55,{},157505,1,Africa +2023-10-12,67616,3483,"[""Headphones""]",4628.43,{},131156,1,Africa +2024-05-13,67617,2989,"[""Phone""]",1434.94,"{""seasonal"": ""8%""}",99782,0,Africa +2023-10-06,67618,1814,"[""Phone""]",4010.87,{},27119,1,Europe +2023-08-24,67619,4264,"[""Phone"", ""Headphones""]",3072.5,"{""promo"": ""14%""}",219294,1,Europe +2023-05-05,67620,7909,"[""Wireless Mouse"", ""Headphones""]",3256.79,"{""seasonal"": ""14%""}",102291,1,South America +2023-06-10,67621,2371,"[""Phone"", ""Laptop""]",587.53,"{""seasonal"": ""30%""}",77303,0,South America +2023-12-01,67622,4333,"[""Tablet"", ""Laptop""]",3884.16,{},178496,0,South America +2024-10-16,67623,8682,"[""Headphones"", ""Charger"", ""Phone""]",2648.34,"{""seasonal"": ""8%""}",51499,1,South America +2023-05-29,67624,6973,"[""Keyboard"", ""Phone"", ""Headphones""]",3400.9,{},56296,0,North America +2023-11-19,67625,2954,"[""Wireless Mouse""]",761.39,"{""seasonal"": ""28%""}",100444,0,Europe +2023-12-20,67626,6501,"[""Keyboard"", ""Tablet"", ""Laptop""]",3006.51,{},239510,1,Asia +2024-05-28,67627,7772,"[""Monitor"", ""Charger""]",4770.83,"{"""": ""6%""}",295686,0,Africa +2023-02-12,67628,8213,"[""Laptop""]",4273.19,{},151363,0,North America +2024-12-19,67629,9342,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1651.65,{},146367,1,South America +2023-05-12,67630,6922,"[""Tablet""]",301.72,"{""loyalty"": ""18%""}",251916,1,South America +2023-07-22,67631,8630,"[""Keyboard"", ""Charger""]",572.34,{},40661,0,Africa +2023-05-20,67632,7203,"[""Tablet"", ""Phone"", ""Keyboard""]",4935.96,"{""promo"": ""15%""}",15914,0,Asia +2024-01-17,67633,5719,"[""Tablet"", ""Charger""]",2202.77,"{"""": ""14%""}",272334,0,Europe +2023-10-19,67634,6755,"[""Charger"", ""Laptop"", ""Tablet""]",3448.33,{},120077,0,Europe +2023-02-06,67635,507,"[""Charger""]",2459.73,{},103205,0,Asia +2023-04-28,67636,5892,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1366.32,"{""loyalty"": ""20%""}",274397,0,Europe +2024-10-08,67637,4183,"[""Charger"", ""Keyboard""]",4314.82,"{""loyalty"": ""28%""}",222497,1,Europe +2023-05-10,67638,4938,"[""Keyboard""]",4421.16,{},132803,0,South America +2023-03-14,67639,1645,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",421.15,{},54470,1,Asia +2023-02-02,67640,5016,"[""Charger"", ""Tablet""]",3858.49,{},212433,1,Asia +2023-10-14,67641,9007,"[""Charger"", ""Headphones""]",1812.75,"{"""": ""12%""}",84870,0,North America +2024-05-13,67642,738,"[""Laptop"", ""Tablet""]",1067.93,"{""seasonal"": ""28%""}",69388,1,North America +2023-06-16,67643,3303,"[""Charger""]",1796.42,"{""seasonal"": ""18%""}",250415,1,Asia +2023-11-10,67644,5740,"[""Tablet"", ""Monitor"", ""Keyboard""]",4046.03,{},134898,1,Africa +2023-12-03,67645,1038,"[""Keyboard""]",2697.37,{},40244,1,North America +2024-09-17,67646,6775,"[""Tablet"", ""Laptop"", ""Phone""]",4913.82,{},296690,1,North America +2024-02-04,67647,2688,"[""Wireless Mouse"", ""Headphones""]",4521.77,"{""loyalty"": ""15%""}",115208,0,Asia +2023-04-28,67648,3232,"[""Charger"", ""Tablet""]",2759.53,"{""seasonal"": ""11%""}",143750,1,Europe +2023-12-12,67649,940,"[""Tablet"", ""Phone""]",1442.4,"{""loyalty"": ""28%""}",235125,0,North America +2024-10-12,67650,3561,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3951.16,{},79209,1,Africa +2023-12-18,67651,5346,"[""Charger""]",672.31,"{""seasonal"": ""20%""}",261591,1,South America +2024-04-17,67652,6212,"[""Wireless Mouse""]",2229.48,"{""loyalty"": ""23%""}",151170,1,Europe +2023-09-24,67653,5302,"[""Monitor""]",1267.44,"{""loyalty"": ""28%""}",223640,0,Europe +2023-05-10,67654,958,"[""Keyboard""]",656.56,"{""loyalty"": ""17%""}",83169,1,Asia +2023-01-30,67655,5646,"[""Tablet""]",1907.51,"{""promo"": ""18%""}",5392,1,North America +2024-08-16,67656,2022,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4863.25,"{""loyalty"": ""16%""}",11971,1,South America +2024-09-10,67657,7645,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3699.05,{},195698,0,Europe +2024-07-07,67658,9553,"[""Keyboard"", ""Tablet"", ""Charger""]",2814.81,{},56147,1,Africa +2023-12-02,67659,7043,"[""Tablet"", ""Laptop"", ""Headphones""]",4330.36,"{"""": ""28%""}",159028,1,Asia +2024-12-10,67660,5395,"[""Tablet""]",1663.65,{},297292,0,South America +2023-11-04,67661,9047,"[""Charger""]",1180.97,"{""loyalty"": ""27%""}",122298,1,Africa +2024-08-04,67662,151,"[""Phone"", ""Charger""]",2549.05,{},196930,1,Asia +2023-06-12,67663,1333,"[""Wireless Mouse"", ""Phone""]",343.34,"{""seasonal"": ""8%""}",40122,0,Europe +2023-09-22,67664,951,"[""Headphones"", ""Keyboard""]",1381.37,{},125843,1,Africa +2024-02-02,67665,7416,"[""Headphones"", ""Phone""]",4872.38,{},294361,1,Africa +2024-11-11,67666,2635,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",596.94,"{""promo"": ""19%""}",93336,0,North America +2023-03-24,67667,3345,"[""Monitor""]",1675.88,"{""seasonal"": ""27%""}",154119,0,South America +2024-06-21,67668,317,"[""Phone""]",1160.76,{},73243,0,Africa +2024-07-16,67669,3542,"[""Wireless Mouse""]",470.05,"{"""": ""7%""}",226524,0,North America +2023-04-09,67670,3009,"[""Monitor"", ""Charger""]",383.35,{},62473,0,Asia +2023-10-01,67671,7214,"[""Keyboard""]",3380.11,"{""seasonal"": ""11%""}",14491,1,South America +2023-11-15,67672,7677,"[""Laptop"", ""Keyboard""]",2130.65,"{"""": ""13%""}",138826,0,Asia +2024-03-09,67673,5477,"[""Keyboard""]",707.36,{},169407,0,Asia +2023-07-04,67674,324,"[""Monitor""]",2397.58,{},262792,1,North America +2024-04-25,67675,3438,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3946.0,{},105328,1,North America +2023-11-22,67676,8363,"[""Keyboard""]",2919.52,"{"""": ""29%""}",215819,1,Europe +2024-11-23,67677,2277,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",327.23,"{"""": ""20%""}",113278,1,North America +2023-08-02,67678,787,"[""Monitor""]",4956.48,{},99048,0,Africa +2023-09-30,67679,1796,"[""Monitor""]",3504.1,{},161353,0,Africa +2023-09-29,67680,1613,"[""Tablet"", ""Charger""]",2933.94,{},108327,0,South America +2024-06-29,67681,552,"[""Phone"", ""Tablet""]",2497.85,"{""promo"": ""19%""}",206326,1,Europe +2024-08-07,67682,6565,"[""Phone""]",1726.6,"{"""": ""30%""}",182848,1,North America +2023-11-04,67683,3398,"[""Charger"", ""Monitor"", ""Tablet""]",2932.5,{},162725,0,South America +2023-07-02,67684,5793,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4749.14,"{""seasonal"": ""23%""}",69385,0,North America +2024-12-10,67685,5457,"[""Monitor"", ""Laptop""]",1636.23,{},141417,1,North America +2023-12-06,67686,2131,"[""Laptop"", ""Headphones"", ""Keyboard""]",496.03,"{""loyalty"": ""6%""}",187827,0,South America +2024-11-18,67687,2126,"[""Keyboard""]",374.68,"{""promo"": ""11%""}",123556,0,Asia +2024-06-14,67688,6685,"[""Monitor"", ""Keyboard""]",4513.92,{},274588,0,Africa +2024-08-15,67689,103,"[""Monitor"", ""Tablet"", ""Laptop""]",912.76,"{"""": ""30%""}",52702,0,South America +2024-02-23,67690,1831,"[""Monitor"", ""Charger"", ""Headphones""]",1481.95,"{""seasonal"": ""22%""}",268765,1,Asia +2024-11-10,67691,9383,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4428.43,{},82716,1,South America +2023-10-14,67692,6127,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",488.42,{},75550,0,South America +2024-08-07,67693,3430,"[""Headphones""]",2501.87,"{"""": ""5%""}",199530,0,North America +2023-07-15,67694,102,"[""Phone"", ""Tablet"", ""Laptop""]",1987.05,"{""seasonal"": ""16%""}",175374,1,South America +2023-03-15,67695,8918,"[""Phone"", ""Charger""]",3395.15,{},267017,0,South America +2024-05-22,67696,7700,"[""Monitor"", ""Phone""]",4824.85,"{""loyalty"": ""28%""}",246280,1,Africa +2023-11-18,67697,6963,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3524.03,{},149120,1,North America +2024-09-03,67698,3753,"[""Keyboard"", ""Laptop"", ""Phone""]",2659.38,"{"""": ""13%""}",109113,0,North America +2023-08-20,67699,1862,"[""Phone"", ""Monitor""]",1145.14,{},92334,1,Africa +2024-12-03,67700,8329,"[""Monitor"", ""Keyboard""]",2715.98,{},240010,0,Asia +2023-06-17,67701,6442,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2704.86,{},17428,0,Africa +2023-06-11,67702,5464,"[""Keyboard"", ""Tablet"", ""Laptop""]",537.39,"{""seasonal"": ""28%""}",88969,1,Europe +2023-01-23,67703,1658,"[""Headphones""]",4996.82,"{""loyalty"": ""25%""}",125222,0,Africa +2023-02-17,67704,5299,"[""Wireless Mouse"", ""Laptop""]",3453.08,"{""loyalty"": ""14%""}",286992,0,South America +2023-10-19,67705,8919,"[""Tablet""]",3309.47,{},113146,0,Europe +2023-10-10,67706,7996,"[""Laptop"", ""Phone"", ""Monitor""]",434.54,"{""seasonal"": ""10%""}",32384,1,Asia +2023-07-05,67707,3668,"[""Keyboard"", ""Charger""]",2756.3,{},57692,1,Asia +2024-03-26,67708,6735,"[""Charger""]",3982.78,"{""seasonal"": ""11%""}",58973,1,South America +2023-11-24,67709,9963,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4057.32,{},12371,1,South America +2024-09-25,67710,4421,"[""Monitor""]",660.54,"{""promo"": ""7%""}",289935,0,Africa +2024-06-13,67711,2908,"[""Tablet"", ""Phone""]",3448.55,{},29555,1,Africa +2024-02-06,67712,2873,"[""Tablet"", ""Charger"", ""Laptop""]",4741.55,{},18058,1,Africa +2023-06-15,67713,9899,"[""Charger""]",613.91,"{""seasonal"": ""19%""}",127269,1,North America +2024-03-02,67714,8382,"[""Headphones""]",3141.23,"{""loyalty"": ""12%""}",76189,1,North America +2023-12-16,67715,5953,"[""Charger"", ""Monitor""]",2249.37,{},236359,0,Europe +2024-02-11,67716,6638,"[""Monitor""]",638.66,{},206046,1,Europe +2024-05-04,67717,4468,"[""Headphones""]",4793.86,"{""loyalty"": ""5%""}",202199,0,Europe +2024-02-16,67718,3779,"[""Charger""]",289.61,"{""seasonal"": ""20%""}",220592,0,Europe +2024-06-06,67719,2236,"[""Headphones"", ""Keyboard""]",444.9,{},222533,1,Europe +2024-07-26,67720,7841,"[""Headphones"", ""Keyboard""]",3676.82,{},39250,1,Africa +2024-07-27,67721,9656,"[""Phone""]",3964.64,"{"""": ""15%""}",282655,0,Europe +2023-09-09,67722,549,"[""Wireless Mouse""]",3665.01,"{""promo"": ""18%""}",228494,0,South America +2023-03-25,67723,1864,"[""Wireless Mouse"", ""Tablet""]",4809.16,{},181359,1,Africa +2024-07-27,67724,7950,"[""Phone"", ""Tablet"", ""Laptop""]",4072.34,"{""seasonal"": ""11%""}",124824,1,North America +2023-01-10,67725,437,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4131.22,"{""seasonal"": ""24%""}",230716,1,Africa +2023-03-25,67726,3629,"[""Monitor""]",1736.03,{},229710,1,North America +2024-01-29,67727,2412,"[""Tablet"", ""Laptop""]",1274.02,{},270150,1,Asia +2024-01-25,67728,1729,"[""Phone""]",763.2,{},214932,1,North America +2023-01-13,67729,1503,"[""Monitor"", ""Laptop"", ""Tablet""]",1084.67,{},90701,1,North America +2024-01-31,67730,1712,"[""Tablet""]",2660.8,"{"""": ""10%""}",206117,1,Africa +2024-11-12,67731,6313,"[""Keyboard"", ""Charger"", ""Headphones""]",2406.22,"{""promo"": ""30%""}",155364,1,Africa +2023-06-13,67732,6733,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2710.64,"{"""": ""26%""}",19339,1,Africa +2023-03-21,67733,3078,"[""Tablet"", ""Headphones""]",507.88,{},286312,0,Asia +2023-10-21,67734,926,"[""Charger"", ""Laptop""]",2471.9,"{""seasonal"": ""11%""}",221844,1,Asia +2024-06-12,67735,8932,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4245.96,{},157316,1,Africa +2024-05-16,67736,5786,"[""Tablet"", ""Laptop"", ""Phone""]",370.55,"{""seasonal"": ""10%""}",157785,0,North America +2023-09-16,67737,1946,"[""Headphones"", ""Monitor"", ""Laptop""]",4094.31,"{""promo"": ""16%""}",204750,0,North America +2023-07-06,67738,2140,"[""Monitor"", ""Phone""]",730.72,{},96184,0,Africa +2023-02-28,67739,2751,"[""Phone"", ""Headphones""]",2450.53,"{""promo"": ""12%""}",3332,0,North America +2023-09-23,67740,7052,"[""Charger""]",4499.82,"{""seasonal"": ""11%""}",118104,1,Africa +2023-07-02,67741,3092,"[""Keyboard""]",4912.29,{},228569,0,Asia +2023-07-05,67742,5616,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1007.03,{},292921,1,Europe +2024-03-03,67743,8971,"[""Laptop"", ""Keyboard"", ""Charger""]",4470.9,{},122090,1,Africa +2024-06-28,67744,6803,"[""Phone""]",2263.74,"{""loyalty"": ""27%""}",227090,1,Asia +2023-08-19,67745,1816,"[""Monitor"", ""Tablet"", ""Phone""]",4908.13,{},299630,1,Asia +2024-05-18,67746,8364,"[""Monitor""]",1530.28,{},44451,1,Asia +2023-07-03,67747,7864,"[""Headphones""]",1517.96,"{""seasonal"": ""15%""}",73905,1,North America +2024-07-16,67748,4370,"[""Phone"", ""Wireless Mouse""]",242.56,{},10832,0,North America +2023-04-25,67749,5347,"[""Laptop""]",2785.41,{},246418,0,South America +2023-09-15,67750,5125,"[""Wireless Mouse"", ""Keyboard""]",4878.12,"{""seasonal"": ""26%""}",11927,1,South America +2024-08-27,67751,2925,"[""Phone"", ""Wireless Mouse""]",2903.06,"{""promo"": ""13%""}",135477,0,Africa +2024-02-18,67752,3341,"[""Charger"", ""Keyboard""]",386.98,{},217485,1,Africa +2023-08-04,67753,780,"[""Monitor""]",1897.86,{},266682,1,Asia +2024-01-17,67754,6304,"[""Monitor""]",397.82,{},2628,1,Asia +2024-07-03,67755,2098,"[""Headphones""]",2394.98,{},148141,1,Europe +2024-02-21,67756,9157,"[""Monitor""]",3185.54,{},116170,0,South America +2024-02-16,67757,7459,"[""Monitor"", ""Phone"", ""Tablet""]",3820.34,{},104697,0,Europe +2023-02-05,67758,2378,"[""Laptop""]",873.19,"{"""": ""26%""}",279328,1,North America +2023-07-13,67759,2429,"[""Headphones""]",540.49,"{""promo"": ""26%""}",43342,1,South America +2024-06-24,67760,8940,"[""Headphones"", ""Monitor""]",2623.93,"{""seasonal"": ""30%""}",211196,1,North America +2023-01-15,67761,1741,"[""Keyboard"", ""Tablet""]",4600.1,{},107691,1,Asia +2024-07-10,67762,3409,"[""Phone"", ""Laptop"", ""Keyboard""]",1216.46,"{""loyalty"": ""22%""}",174525,0,South America +2023-06-12,67763,8787,"[""Monitor"", ""Headphones"", ""Keyboard""]",1473.42,"{""seasonal"": ""10%""}",216736,0,Africa +2023-08-21,67764,8000,"[""Tablet"", ""Phone"", ""Charger""]",4143.84,{},32619,0,North America +2023-02-19,67765,8667,"[""Tablet"", ""Laptop""]",3983.19,{},79453,1,Africa +2024-04-14,67766,302,"[""Phone""]",1483.88,"{""seasonal"": ""10%""}",263859,1,Asia +2024-09-28,67767,5507,"[""Laptop"", ""Phone"", ""Charger""]",2173.64,"{""seasonal"": ""8%""}",38059,0,Europe +2024-04-28,67768,7689,"[""Charger"", ""Phone"", ""Keyboard""]",3459.26,"{"""": ""28%""}",106499,1,Asia +2024-07-13,67769,7787,"[""Headphones"", ""Monitor""]",3629.81,{},216661,1,Asia +2023-03-24,67770,7008,"[""Monitor"", ""Charger""]",4068.41,{},267143,1,Asia +2024-09-17,67771,1468,"[""Phone"", ""Headphones""]",2239.15,"{"""": ""18%""}",288888,1,Europe +2024-11-12,67772,9147,"[""Monitor"", ""Wireless Mouse""]",4632.17,{},77533,0,South America +2023-09-04,67773,9740,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4545.73,{},99132,0,Africa +2024-08-28,67774,8945,"[""Charger""]",3166.76,{},253145,1,Africa +2023-12-19,67775,6179,"[""Monitor""]",2118.92,"{"""": ""16%""}",110954,0,Asia +2024-01-23,67776,7439,"[""Charger"", ""Keyboard""]",237.65,"{""loyalty"": ""30%""}",107895,1,North America +2023-07-23,67777,7175,"[""Keyboard""]",2442.04,{},205554,1,South America +2023-06-01,67778,1122,"[""Phone"", ""Headphones"", ""Laptop""]",879.6,"{"""": ""20%""}",108222,1,Europe +2023-03-16,67779,8291,"[""Keyboard"", ""Charger"", ""Headphones""]",2526.73,{},267561,0,North America +2024-02-19,67780,9161,"[""Laptop"", ""Keyboard"", ""Phone""]",2744.8,"{""seasonal"": ""25%""}",254783,1,Africa +2023-01-28,67781,5146,"[""Phone""]",3739.97,{},274731,0,South America +2023-05-02,67782,7237,"[""Phone"", ""Charger""]",1913.27,"{""loyalty"": ""7%""}",161088,0,Europe +2023-05-03,67783,1615,"[""Laptop"", ""Phone""]",2553.07,"{""seasonal"": ""8%""}",184543,0,Asia +2023-12-24,67784,8312,"[""Laptop""]",2254.38,{},89947,0,South America +2024-06-21,67785,9583,"[""Wireless Mouse"", ""Charger""]",2068.39,"{""seasonal"": ""30%""}",167673,0,Europe +2024-09-25,67786,95,"[""Headphones"", ""Phone"", ""Tablet""]",3494.52,{},88332,1,Africa +2024-12-07,67787,6333,"[""Monitor"", ""Headphones"", ""Keyboard""]",3249.26,"{""seasonal"": ""22%""}",45964,0,Africa +2023-09-26,67788,2531,"[""Charger""]",802.42,"{""promo"": ""15%""}",137589,0,North America +2023-07-22,67789,9348,"[""Headphones""]",2316.31,{},280556,0,Asia +2024-12-20,67790,6027,"[""Laptop"", ""Wireless Mouse""]",2538.2,{},246273,0,Europe +2024-10-11,67791,6120,"[""Charger"", ""Phone"", ""Monitor""]",2717.41,{},134174,1,Africa +2024-08-19,67792,1114,"[""Phone"", ""Tablet""]",2237.57,{},292443,1,Asia +2023-09-27,67793,8844,"[""Monitor"", ""Wireless Mouse""]",2756.66,{},209703,0,North America +2023-04-18,67794,8580,"[""Tablet"", ""Phone""]",1429.33,{},163768,0,Africa +2023-04-02,67795,8192,"[""Monitor""]",3051.18,"{"""": ""26%""}",55703,0,Africa +2023-04-16,67796,9706,"[""Charger""]",2359.68,{},194885,1,Europe +2024-09-17,67797,729,"[""Monitor"", ""Tablet"", ""Headphones""]",4592.33,{},36988,0,Europe +2023-07-03,67798,8804,"[""Wireless Mouse"", ""Keyboard""]",4728.11,{},140645,0,Asia +2023-05-05,67799,4701,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3959.52,"{"""": ""8%""}",44714,1,South America +2023-04-12,67800,8995,"[""Wireless Mouse"", ""Phone""]",1023.71,{},114460,0,Asia +2023-07-17,67801,8288,"[""Wireless Mouse"", ""Laptop""]",2327.08,{},277297,0,Asia +2024-04-01,67802,440,"[""Tablet"", ""Charger"", ""Headphones""]",3386.99,"{""loyalty"": ""5%""}",28489,1,Asia +2023-08-01,67803,3872,"[""Phone"", ""Monitor""]",4855.4,"{""loyalty"": ""18%""}",183387,1,Europe +2024-01-18,67804,3764,"[""Tablet"", ""Phone"", ""Laptop""]",4754.98,"{""loyalty"": ""15%""}",102979,1,North America +2024-10-03,67805,3794,"[""Wireless Mouse"", ""Tablet""]",2539.64,{},26949,0,Europe +2023-11-03,67806,2706,"[""Charger""]",1196.82,{},65101,0,Asia +2023-02-25,67807,7915,"[""Phone"", ""Monitor""]",492.85,"{""loyalty"": ""5%""}",83884,1,Europe +2023-05-21,67808,5481,"[""Laptop"", ""Wireless Mouse""]",3029.96,"{""seasonal"": ""15%""}",173289,0,Europe +2023-11-14,67809,9024,"[""Laptop""]",472.5,{},133970,0,Asia +2023-11-17,67810,2964,"[""Wireless Mouse"", ""Tablet""]",192.1,"{""loyalty"": ""28%""}",127260,0,Europe +2023-02-26,67811,2985,"[""Laptop"", ""Tablet""]",1115.18,"{"""": ""17%""}",88544,0,Africa +2024-07-11,67812,8311,"[""Tablet"", ""Laptop""]",4794.47,"{"""": ""17%""}",205436,0,Africa +2023-01-30,67813,7623,"[""Phone""]",1604.13,{},185579,0,Africa +2024-10-13,67814,8076,"[""Laptop"", ""Phone"", ""Keyboard""]",3392.63,"{""seasonal"": ""7%""}",128034,0,Asia +2024-02-02,67815,7363,"[""Headphones""]",3928.87,{},256211,1,Asia +2023-06-12,67816,2516,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",651.2,"{"""": ""15%""}",222471,1,Europe +2024-04-24,67817,7859,"[""Headphones""]",4979.09,{},278797,1,South America +2024-07-16,67818,8908,"[""Monitor"", ""Phone""]",4054.4,{},261272,1,Europe +2023-11-01,67819,2684,"[""Tablet""]",1454.99,{},86052,0,Africa +2023-01-08,67820,8205,"[""Wireless Mouse""]",962.09,{},160781,0,Europe +2024-04-24,67821,1401,"[""Keyboard"", ""Charger"", ""Phone""]",2249.45,{},20363,1,North America +2024-03-22,67822,5506,"[""Monitor"", ""Headphones""]",4872.0,{},259524,0,South America +2024-06-02,67823,872,"[""Monitor""]",3052.52,{},81607,1,North America +2023-11-18,67824,2420,"[""Laptop"", ""Charger""]",289.64,{},278460,1,Africa +2024-03-11,67825,5238,"[""Headphones""]",1653.97,"{""promo"": ""14%""}",3495,0,Europe +2024-11-14,67826,3575,"[""Tablet"", ""Laptop"", ""Headphones""]",865.84,"{""loyalty"": ""13%""}",45021,1,Asia +2023-05-16,67827,5588,"[""Charger"", ""Monitor""]",4865.36,"{""promo"": ""8%""}",94431,0,Asia +2024-09-05,67828,6503,"[""Tablet"", ""Keyboard""]",4072.7,"{""loyalty"": ""23%""}",46591,1,Europe +2023-01-19,67829,362,"[""Keyboard"", ""Wireless Mouse""]",2435.37,"{""promo"": ""12%""}",52448,1,South America +2024-01-28,67830,4974,"[""Keyboard"", ""Charger""]",3236.53,{},289255,1,South America +2023-04-15,67831,9983,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3261.65,{},184365,0,North America +2024-08-06,67832,5330,"[""Monitor""]",2428.47,{},45146,0,South America +2023-02-11,67833,8479,"[""Keyboard""]",3288.71,{},162924,1,Europe +2024-02-10,67834,7778,"[""Monitor"", ""Wireless Mouse""]",2869.44,"{"""": ""12%""}",24888,0,Asia +2024-11-15,67835,1810,"[""Phone"", ""Laptop"", ""Monitor""]",664.68,{},225113,0,Europe +2024-12-12,67836,2243,"[""Wireless Mouse""]",4900.38,{},12537,1,North America +2024-02-04,67837,8423,"[""Keyboard"", ""Headphones""]",2557.24,"{""loyalty"": ""30%""}",102600,1,Europe +2023-09-19,67838,6119,"[""Laptop"", ""Monitor"", ""Keyboard""]",4525.87,"{""seasonal"": ""29%""}",235627,1,Asia +2023-12-18,67839,5811,"[""Monitor""]",4716.69,"{""loyalty"": ""22%""}",258799,0,Africa +2024-11-29,67840,8248,"[""Keyboard"", ""Charger""]",3657.9,{},256672,1,Africa +2024-07-16,67841,3118,"[""Headphones"", ""Monitor""]",2765.48,{},5226,1,South America +2024-10-01,67842,9306,"[""Charger"", ""Laptop""]",1446.34,{},109460,1,North America +2024-03-14,67843,6977,"[""Monitor"", ""Laptop""]",1473.33,"{""loyalty"": ""8%""}",122970,1,North America +2023-06-01,67844,3518,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",327.27,{},259026,1,Asia +2023-05-02,67845,7181,"[""Headphones"", ""Monitor""]",548.84,{},146929,0,North America +2023-07-16,67846,5964,"[""Charger"", ""Phone""]",2410.76,"{""loyalty"": ""10%""}",146041,1,Africa +2023-08-28,67847,949,"[""Laptop""]",4681.59,{},10338,1,South America +2023-08-27,67848,9187,"[""Charger""]",4337.99,{},111872,1,Africa +2024-02-11,67849,4601,"[""Laptop"", ""Charger"", ""Keyboard""]",2426.94,{},55714,1,Africa +2024-10-03,67850,747,"[""Keyboard""]",248.73,{},110121,0,Europe +2024-08-19,67851,1586,"[""Charger""]",2575.39,"{""promo"": ""18%""}",108225,0,Africa +2023-11-27,67852,7627,"[""Laptop""]",2863.66,{},254065,1,Europe +2024-08-22,67853,3060,"[""Phone""]",1301.55,{},24221,0,Asia +2023-05-17,67854,717,"[""Headphones"", ""Phone"", ""Laptop""]",3581.23,"{""loyalty"": ""5%""}",33142,0,Asia +2024-05-09,67855,584,"[""Tablet"", ""Wireless Mouse""]",4844.67,{},154582,0,Africa +2024-01-18,67856,9725,"[""Phone""]",1775.31,"{""loyalty"": ""10%""}",271530,1,South America +2023-05-03,67857,2386,"[""Headphones"", ""Charger""]",1231.97,"{""loyalty"": ""11%""}",239014,1,North America +2024-01-18,67858,610,"[""Phone""]",200.27,"{"""": ""18%""}",107706,0,Africa +2023-01-17,67859,5151,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4031.83,{},206739,1,Europe +2024-09-27,67860,7966,"[""Phone"", ""Wireless Mouse""]",1635.76,"{""seasonal"": ""11%""}",159618,0,Europe +2024-09-25,67861,627,"[""Charger""]",1300.17,"{""seasonal"": ""11%""}",210350,0,Europe +2023-01-14,67862,9768,"[""Phone"", ""Wireless Mouse""]",3502.63,"{"""": ""13%""}",156373,0,Asia +2023-11-06,67863,2645,"[""Laptop"", ""Charger""]",4973.79,{},170162,0,Asia +2023-11-01,67864,2520,"[""Charger"", ""Monitor"", ""Headphones""]",793.57,{},77156,0,South America +2024-01-13,67865,2323,"[""Headphones""]",2846.6,"{""loyalty"": ""18%""}",207984,1,Asia +2024-04-22,67866,7390,"[""Monitor"", ""Charger""]",1736.57,{},292816,1,Asia +2024-02-23,67867,7237,"[""Charger""]",1585.71,{},233162,1,Asia +2023-01-23,67868,9825,"[""Phone""]",933.84,"{""seasonal"": ""14%""}",89544,0,Europe +2024-10-07,67869,921,"[""Headphones""]",2156.29,{},7566,0,North America +2024-06-05,67870,1876,"[""Wireless Mouse""]",4359.44,"{"""": ""29%""}",253511,1,Africa +2024-09-06,67871,5160,"[""Tablet"", ""Headphones"", ""Keyboard""]",4144.36,"{""loyalty"": ""8%""}",225755,0,South America +2023-10-04,67872,1810,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",835.47,"{"""": ""30%""}",10984,0,South America +2024-10-26,67873,2216,"[""Monitor"", ""Headphones"", ""Keyboard""]",4877.94,"{""loyalty"": ""23%""}",118862,1,Europe +2024-10-13,67874,3073,"[""Keyboard"", ""Wireless Mouse""]",2025.43,"{""seasonal"": ""27%""}",107694,0,South America +2024-12-11,67875,7818,"[""Charger"", ""Headphones"", ""Keyboard""]",878.53,"{""promo"": ""26%""}",4542,1,Africa +2023-10-28,67876,362,"[""Wireless Mouse""]",1407.85,"{""promo"": ""8%""}",119290,0,Europe +2024-01-17,67877,1731,"[""Phone"", ""Keyboard"", ""Headphones""]",3022.68,"{"""": ""24%""}",70088,1,North America +2023-03-19,67878,238,"[""Charger""]",264.47,"{""seasonal"": ""24%""}",251008,1,Asia +2023-09-19,67879,1653,"[""Headphones"", ""Tablet"", ""Charger""]",2715.94,"{""loyalty"": ""29%""}",287674,1,Europe +2024-09-17,67880,3776,"[""Phone"", ""Laptop""]",2309.03,"{""promo"": ""6%""}",267300,0,North America +2024-12-08,67881,3704,"[""Headphones"", ""Charger"", ""Phone""]",4519.45,{},197043,0,North America +2023-10-01,67882,7418,"[""Phone""]",4117.1,"{""loyalty"": ""29%""}",65963,1,Asia +2024-09-19,67883,9938,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4381.88,"{""loyalty"": ""9%""}",22980,0,Asia +2024-06-11,67884,4971,"[""Headphones""]",2882.32,{},261842,0,North America +2023-04-07,67885,6150,"[""Laptop"", ""Tablet""]",1037.71,"{""seasonal"": ""19%""}",137011,1,Europe +2024-11-30,67886,3385,"[""Headphones"", ""Monitor""]",3525.18,{},169862,0,Africa +2024-03-28,67887,5615,"[""Tablet""]",1152.45,"{""seasonal"": ""10%""}",43601,1,Europe +2024-03-03,67888,75,"[""Wireless Mouse"", ""Keyboard""]",1404.28,{},57445,1,Europe +2024-09-28,67889,4812,"[""Laptop"", ""Headphones""]",3494.56,"{""seasonal"": ""6%""}",99171,0,Asia +2024-07-06,67890,2751,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",770.54,"{""seasonal"": ""23%""}",246651,1,Africa +2023-01-18,67891,2907,"[""Monitor"", ""Charger""]",1317.39,{},114083,0,Asia +2023-03-25,67892,1953,"[""Monitor""]",1569.29,{},37052,0,South America +2023-11-19,67893,5203,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3348.18,{},261286,0,North America +2024-05-02,67894,4009,"[""Charger""]",3141.3,{},35218,0,South America +2024-09-26,67895,3729,"[""Laptop""]",4993.02,{},290887,0,Africa +2023-12-19,67896,7627,"[""Wireless Mouse"", ""Laptop""]",1695.89,{},251295,1,Europe +2024-05-02,67897,7448,"[""Keyboard"", ""Phone""]",912.06,"{""seasonal"": ""20%""}",26714,0,Europe +2024-08-14,67898,8027,"[""Laptop"", ""Monitor""]",1650.76,{},83093,1,South America +2024-07-17,67899,1338,"[""Headphones"", ""Keyboard"", ""Charger""]",1027.92,"{""seasonal"": ""29%""}",65828,1,South America +2024-04-30,67900,9462,"[""Keyboard"", ""Tablet"", ""Monitor""]",4369.34,{},199857,0,North America +2023-08-14,67901,2402,"[""Wireless Mouse"", ""Laptop""]",256.1,"{""loyalty"": ""9%""}",206467,0,Europe +2023-05-21,67902,7691,"[""Keyboard"", ""Charger""]",1649.84,{},113910,0,Africa +2024-01-14,67903,884,"[""Monitor"", ""Charger"", ""Laptop""]",3081.17,{},221032,1,North America +2023-12-06,67904,5883,"[""Wireless Mouse""]",1221.33,{},166460,1,Europe +2024-06-05,67905,2228,"[""Headphones""]",3400.51,"{""promo"": ""21%""}",72183,0,Asia +2023-02-17,67906,2963,"[""Wireless Mouse"", ""Keyboard""]",237.48,"{""promo"": ""9%""}",121137,1,South America +2024-03-30,67907,4571,"[""Laptop"", ""Charger""]",4739.09,{},77711,0,Africa +2024-07-29,67908,2447,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2698.92,{},212896,0,Europe +2024-09-30,67909,7304,"[""Keyboard"", ""Phone"", ""Tablet""]",4724.72,"{""seasonal"": ""5%""}",200681,0,Europe +2023-05-31,67910,7962,"[""Keyboard""]",4889.06,"{""promo"": ""12%""}",166383,0,Africa +2023-04-27,67911,1180,"[""Phone"", ""Headphones""]",1455.83,"{""seasonal"": ""14%""}",218616,0,North America +2024-12-07,67912,990,"[""Wireless Mouse"", ""Tablet""]",4419.57,{},140262,1,North America +2023-09-25,67913,8108,"[""Monitor"", ""Headphones""]",3250.08,"{""loyalty"": ""10%""}",106854,0,South America +2024-10-18,67914,7534,"[""Phone"", ""Charger""]",2354.65,{},131980,1,Africa +2024-01-31,67915,9326,"[""Laptop"", ""Keyboard"", ""Tablet""]",1149.93,{},253595,1,Europe +2024-02-17,67916,7106,"[""Monitor"", ""Phone"", ""Laptop""]",3889.77,"{""promo"": ""15%""}",299271,1,Asia +2023-01-23,67917,6766,"[""Keyboard"", ""Headphones""]",806.72,"{""promo"": ""25%""}",199444,0,Asia +2023-07-31,67918,6345,"[""Headphones""]",2566.62,{},51837,0,Africa +2023-09-30,67919,5255,"[""Laptop""]",1857.54,{},57475,0,Africa +2023-03-14,67920,9248,"[""Tablet"", ""Keyboard""]",3504.13,"{"""": ""30%""}",31757,1,South America +2023-03-22,67921,7980,"[""Laptop""]",3784.8,{},265564,1,Europe +2023-01-25,67922,6816,"[""Keyboard"", ""Tablet"", ""Charger""]",1772.72,{},88828,0,Asia +2023-07-16,67923,9052,"[""Monitor"", ""Tablet""]",427.21,{},229520,1,South America +2024-01-14,67924,8684,"[""Monitor"", ""Charger"", ""Laptop""]",1219.32,{},81698,1,North America +2023-01-30,67925,7466,"[""Wireless Mouse"", ""Phone""]",4414.37,{},239748,0,Europe +2023-12-19,67926,1013,"[""Laptop""]",3823.28,"{""seasonal"": ""6%""}",163280,0,Africa +2023-04-19,67927,2287,"[""Keyboard"", ""Laptop""]",99.03,"{"""": ""26%""}",46213,1,Africa +2023-05-15,67928,8919,"[""Headphones""]",462.6,{},23963,0,North America +2024-05-20,67929,2957,"[""Laptop"", ""Phone""]",4231.76,"{""seasonal"": ""15%""}",143374,1,South America +2024-05-13,67930,813,"[""Charger""]",254.43,"{""seasonal"": ""16%""}",117131,1,North America +2023-02-08,67931,3244,"[""Keyboard"", ""Laptop""]",3678.96,"{""loyalty"": ""27%""}",25618,1,Asia +2024-10-27,67932,7460,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1310.06,{},206142,0,South America +2024-12-22,67933,2772,"[""Keyboard"", ""Laptop"", ""Monitor""]",1123.26,"{""loyalty"": ""19%""}",29440,0,Europe +2024-10-28,67934,4979,"[""Monitor"", ""Keyboard""]",3101.33,{},46586,1,South America +2024-01-14,67935,1636,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",719.02,{},298232,1,Africa +2024-08-13,67936,5262,"[""Charger""]",4768.32,"{""loyalty"": ""24%""}",144665,0,South America +2023-08-21,67937,5826,"[""Monitor"", ""Laptop"", ""Charger""]",3328.39,{},172446,1,Asia +2024-09-07,67938,602,"[""Charger""]",3182.12,"{""promo"": ""5%""}",249860,0,Europe +2023-12-04,67939,5960,"[""Wireless Mouse"", ""Keyboard""]",4407.38,"{""loyalty"": ""13%""}",220341,1,Europe +2024-05-16,67940,8617,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",131.43,"{"""": ""8%""}",87067,0,Europe +2023-08-24,67941,92,"[""Charger"", ""Laptop"", ""Keyboard""]",4925.62,{},16393,1,Asia +2023-03-21,67942,6681,"[""Tablet""]",2101.69,{},80362,1,Africa +2023-09-06,67943,3890,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3504.74,"{""loyalty"": ""8%""}",146623,1,Europe +2024-10-21,67944,298,"[""Headphones"", ""Laptop""]",4073.74,"{""promo"": ""23%""}",73067,1,Europe +2023-08-17,67945,8611,"[""Charger"", ""Monitor""]",600.73,{},27472,0,South America +2023-09-27,67946,3348,"[""Monitor""]",582.25,{},44475,0,Africa +2023-03-21,67947,5047,"[""Charger""]",1341.03,"{""promo"": ""16%""}",213930,0,Asia +2024-09-19,67948,9706,"[""Tablet""]",1736.3,{},79472,1,South America +2024-01-30,67949,9708,"[""Headphones""]",2210.99,"{""loyalty"": ""18%""}",263668,0,North America +2023-02-05,67950,5549,"[""Headphones""]",1888.63,"{""seasonal"": ""23%""}",105101,0,Africa +2023-10-04,67951,3726,"[""Laptop"", ""Keyboard""]",570.51,"{""loyalty"": ""17%""}",269730,0,Asia +2024-07-19,67952,7491,"[""Laptop""]",1618.92,"{""promo"": ""11%""}",104026,1,Asia +2023-09-28,67953,768,"[""Keyboard""]",2592.79,"{""seasonal"": ""13%""}",98569,1,South America +2023-09-13,67954,3124,"[""Laptop""]",3378.98,{},245737,0,Asia +2023-02-02,67955,7190,"[""Laptop"", ""Headphones""]",2234.02,"{""seasonal"": ""24%""}",23616,1,Africa +2024-10-01,67956,6355,"[""Keyboard""]",4253.86,{},52713,0,North America +2023-01-02,67957,4055,"[""Wireless Mouse""]",1924.41,"{""loyalty"": ""5%""}",220218,0,Africa +2023-07-10,67958,5139,"[""Charger""]",4836.16,{},107520,0,Africa +2023-08-18,67959,772,"[""Keyboard""]",3603.3,{},17964,1,Asia +2024-03-20,67960,1077,"[""Monitor""]",3277.3,{},14013,0,North America +2023-11-26,67961,799,"[""Keyboard"", ""Phone""]",951.5,"{""loyalty"": ""5%""}",208403,1,North America +2023-12-04,67962,5400,"[""Wireless Mouse""]",4598.29,{},101967,1,South America +2023-12-24,67963,3323,"[""Laptop"", ""Phone"", ""Monitor""]",1952.26,{},154863,0,North America +2024-09-24,67964,4899,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1163.76,{},280042,0,Asia +2024-02-22,67965,5942,"[""Wireless Mouse""]",978.69,{},54612,0,Europe +2023-08-19,67966,8012,"[""Keyboard"", ""Tablet""]",2826.76,"{""loyalty"": ""8%""}",192343,0,Europe +2024-12-07,67967,4667,"[""Headphones""]",1914.58,{},152071,0,Europe +2023-11-07,67968,9907,"[""Headphones"", ""Keyboard""]",158.2,{},271343,1,Europe +2024-10-29,67969,7943,"[""Laptop"", ""Wireless Mouse""]",2190.46,{},105132,1,Europe +2024-12-09,67970,988,"[""Laptop""]",1010.0,"{"""": ""30%""}",171455,0,South America +2024-01-11,67971,6198,"[""Headphones"", ""Charger""]",2023.98,{},241596,0,Europe +2023-10-08,67972,306,"[""Laptop"", ""Wireless Mouse""]",3716.87,{},179022,0,Africa +2024-10-13,67973,882,"[""Keyboard""]",1052.28,"{""loyalty"": ""27%""}",261209,0,Asia +2024-06-08,67974,85,"[""Wireless Mouse"", ""Phone""]",4907.38,{},9367,0,Asia +2023-09-27,67975,4867,"[""Wireless Mouse"", ""Phone""]",3730.58,{},12252,0,Africa +2024-05-24,67976,2097,"[""Laptop""]",3167.34,"{""seasonal"": ""13%""}",292650,1,Asia +2023-03-14,67977,6698,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",462.86,"{""loyalty"": ""13%""}",238684,0,South America +2023-05-13,67978,911,"[""Keyboard"", ""Headphones"", ""Monitor""]",3812.92,{},273147,0,Africa +2023-02-02,67979,530,"[""Phone""]",4736.51,{},265348,1,Asia +2024-05-30,67980,8470,"[""Phone"", ""Tablet"", ""Charger""]",4327.45,{},279644,1,North America +2023-09-30,67981,8772,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1849.51,{},250423,0,Asia +2024-07-02,67982,4142,"[""Headphones"", ""Phone""]",1725.59,"{""promo"": ""24%""}",11370,0,Africa +2023-09-15,67983,1589,"[""Charger"", ""Headphones"", ""Laptop""]",2715.01,"{""promo"": ""24%""}",281857,1,North America +2023-09-10,67984,9361,"[""Monitor""]",4236.59,"{""seasonal"": ""13%""}",295854,1,Asia +2023-07-14,67985,144,"[""Wireless Mouse"", ""Charger""]",4443.5,"{"""": ""9%""}",299065,0,Asia +2023-02-22,67986,3204,"[""Phone"", ""Tablet""]",3265.95,{},225437,0,Asia +2023-08-19,67987,9247,"[""Phone""]",3348.23,"{""seasonal"": ""22%""}",85751,1,North America +2023-12-18,67988,6811,"[""Headphones"", ""Keyboard""]",1420.77,"{"""": ""28%""}",152414,0,North America +2023-01-07,67989,5624,"[""Phone"", ""Laptop"", ""Tablet""]",4163.15,"{"""": ""6%""}",15125,0,Asia +2023-08-09,67990,4712,"[""Headphones""]",3579.25,{},81885,0,Asia +2023-11-23,67991,8526,"[""Monitor""]",4521.71,"{""seasonal"": ""21%""}",143875,1,South America +2024-03-23,67992,506,"[""Keyboard""]",2805.17,"{""loyalty"": ""14%""}",144955,1,South America +2023-03-13,67993,789,"[""Charger""]",4791.04,"{""promo"": ""11%""}",19308,0,North America +2023-01-10,67994,9091,"[""Wireless Mouse""]",967.64,"{""seasonal"": ""10%""}",144297,0,Europe +2024-06-05,67995,475,"[""Monitor"", ""Charger""]",4541.88,{},138954,0,North America +2023-02-24,67996,2231,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4463.61,"{""loyalty"": ""18%""}",215645,1,North America +2023-08-28,67997,8860,"[""Wireless Mouse"", ""Charger""]",2434.25,"{""loyalty"": ""8%""}",277365,0,Asia +2024-05-04,67998,4876,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4579.76,{},288169,1,Africa +2024-05-29,67999,5425,"[""Phone"", ""Wireless Mouse""]",4895.62,{},35688,1,Asia +2024-01-03,68000,7593,"[""Monitor"", ""Wireless Mouse""]",3470.68,{},149671,1,Asia +2024-09-12,68001,3031,"[""Laptop"", ""Phone""]",869.4,{},59615,1,South America +2024-12-05,68002,4775,"[""Tablet""]",3815.58,"{"""": ""28%""}",180555,1,Africa +2023-08-16,68003,2544,"[""Phone"", ""Wireless Mouse""]",2716.98,{},169045,0,North America +2023-09-14,68004,3528,"[""Keyboard"", ""Monitor""]",3512.44,{},81775,1,Africa +2023-08-04,68005,6609,"[""Wireless Mouse"", ""Monitor""]",4202.42,{},226855,1,Africa +2023-04-11,68006,8970,"[""Keyboard""]",2922.32,{},204314,0,Africa +2023-03-29,68007,4708,"[""Phone"", ""Charger""]",318.3,"{""promo"": ""7%""}",215710,0,South America +2023-04-18,68008,4006,"[""Charger"", ""Headphones""]",848.62,{},57324,1,Asia +2024-05-30,68009,8039,"[""Monitor""]",4241.87,"{""seasonal"": ""23%""}",269080,1,Africa +2024-02-05,68010,8290,"[""Laptop"", ""Tablet""]",4110.31,"{""seasonal"": ""14%""}",292179,1,Europe +2024-02-17,68011,1051,"[""Keyboard"", ""Headphones""]",2204.02,"{""seasonal"": ""12%""}",183073,0,Europe +2023-01-09,68012,4767,"[""Phone"", ""Tablet""]",195.06,"{"""": ""28%""}",85263,1,Africa +2023-12-14,68013,603,"[""Wireless Mouse""]",3405.08,{},32957,1,Africa +2024-02-08,68014,6172,"[""Charger"", ""Wireless Mouse""]",2383.22,{},106881,1,Africa +2024-08-20,68015,1762,"[""Monitor"", ""Phone""]",761.06,"{""seasonal"": ""19%""}",153654,1,North America +2023-11-08,68016,2054,"[""Headphones""]",3821.51,"{""promo"": ""25%""}",221179,0,North America +2024-06-02,68017,33,"[""Charger"", ""Headphones"", ""Tablet""]",2584.9,{},22575,1,Africa +2023-05-06,68018,8522,"[""Charger"", ""Keyboard"", ""Headphones""]",2369.42,{},128618,1,Asia +2024-08-14,68019,4626,"[""Phone"", ""Laptop""]",4904.47,"{"""": ""11%""}",56664,0,Europe +2023-05-12,68020,408,"[""Monitor"", ""Wireless Mouse""]",769.92,"{""promo"": ""18%""}",267355,1,South America +2024-12-31,68021,9208,"[""Tablet""]",2247.0,"{"""": ""26%""}",169266,0,Asia +2024-07-21,68022,7860,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",748.53,{},256270,1,Europe +2023-01-03,68023,5457,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3025.6,{},104531,1,North America +2024-08-24,68024,4318,"[""Monitor"", ""Phone""]",3881.09,{},216332,1,Africa +2024-07-04,68025,8064,"[""Laptop"", ""Headphones""]",679.08,{},280938,0,North America +2024-04-18,68026,2742,"[""Laptop""]",3503.61,"{""seasonal"": ""16%""}",188822,1,North America +2023-06-21,68027,1960,"[""Phone"", ""Monitor""]",381.08,{},42325,1,North America +2024-08-06,68028,8672,"[""Laptop"", ""Keyboard""]",314.3,{},5774,1,Africa +2023-11-04,68029,1166,"[""Charger""]",752.29,{},77114,0,Asia +2023-07-17,68030,7837,"[""Headphones""]",2623.66,{},234708,1,South America +2024-02-21,68031,4173,"[""Laptop"", ""Tablet""]",612.95,"{""seasonal"": ""28%""}",172700,1,Africa +2024-04-07,68032,4949,"[""Tablet"", ""Wireless Mouse""]",2694.82,"{"""": ""7%""}",212360,1,Europe +2024-02-07,68033,9039,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3682.75,"{""seasonal"": ""30%""}",236029,0,Europe +2024-09-18,68034,8599,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1982.15,"{"""": ""24%""}",2960,0,Africa +2024-02-21,68035,3183,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2472.98,"{""promo"": ""23%""}",85568,1,Europe +2023-05-28,68036,4023,"[""Tablet""]",941.53,"{""seasonal"": ""30%""}",24699,0,South America +2023-08-05,68037,5853,"[""Charger""]",2783.6,"{""promo"": ""10%""}",256574,0,Asia +2023-03-12,68038,8042,"[""Charger"", ""Monitor"", ""Keyboard""]",1685.14,"{""seasonal"": ""29%""}",152179,1,Europe +2024-12-18,68039,4387,"[""Tablet"", ""Keyboard"", ""Charger""]",316.72,{},43624,0,South America +2024-06-14,68040,7109,"[""Headphones""]",4455.63,{},32056,1,Africa +2024-02-19,68041,4028,"[""Charger""]",776.9,"{"""": ""9%""}",101075,1,South America +2024-07-14,68042,901,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3566.46,"{""loyalty"": ""17%""}",287466,0,Asia +2024-09-11,68043,9303,"[""Phone"", ""Charger""]",4412.33,"{"""": ""14%""}",88916,1,South America +2023-02-07,68044,8411,"[""Charger""]",3532.84,{},152572,1,South America +2024-03-27,68045,5359,"[""Monitor""]",3619.82,{},177759,1,North America +2024-11-08,68046,5895,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2088.44,"{"""": ""6%""}",108301,1,North America +2024-02-26,68047,4345,"[""Tablet"", ""Keyboard"", ""Monitor""]",3248.41,{},65530,1,North America +2023-05-13,68048,3018,"[""Phone"", ""Wireless Mouse""]",1187.81,"{"""": ""12%""}",292100,1,South America +2024-03-16,68049,198,"[""Charger"", ""Phone""]",768.58,"{""seasonal"": ""11%""}",119092,1,Africa +2024-05-20,68050,1382,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4843.36,"{""promo"": ""9%""}",250517,0,North America +2024-05-16,68051,5037,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4674.37,"{""seasonal"": ""29%""}",194918,0,North America +2023-01-09,68052,28,"[""Tablet""]",2321.92,"{"""": ""14%""}",72607,0,Africa +2024-06-23,68053,7757,"[""Laptop"", ""Monitor"", ""Keyboard""]",4165.88,{},254998,0,South America +2024-11-08,68054,3827,"[""Headphones"", ""Keyboard"", ""Phone""]",2239.68,"{""seasonal"": ""19%""}",69717,0,South America +2023-05-30,68055,159,"[""Monitor""]",4637.73,"{"""": ""7%""}",111375,1,Europe +2023-03-26,68056,8751,"[""Phone"", ""Charger""]",1158.5,{},97442,1,South America +2023-05-05,68057,7843,"[""Tablet"", ""Keyboard""]",1361.73,"{""seasonal"": ""19%""}",58665,1,Asia +2023-04-13,68058,291,"[""Keyboard"", ""Monitor"", ""Headphones""]",4903.96,{},17774,1,Africa +2023-01-18,68059,7523,"[""Headphones"", ""Monitor"", ""Keyboard""]",1352.29,{},61316,1,Africa +2024-08-19,68060,4193,"[""Tablet""]",3207.22,"{""loyalty"": ""15%""}",147355,0,North America +2024-04-21,68061,8835,"[""Wireless Mouse""]",178.69,"{""seasonal"": ""13%""}",56114,1,North America +2023-01-28,68062,8695,"[""Charger""]",2327.6,{},220308,1,Europe +2024-11-10,68063,5746,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",240.19,"{"""": ""13%""}",107248,0,Asia +2024-05-21,68064,9505,"[""Laptop"", ""Charger"", ""Phone""]",3824.16,"{""promo"": ""15%""}",60561,0,Europe +2023-01-06,68065,4060,"[""Monitor"", ""Phone""]",2012.4,"{""seasonal"": ""13%""}",41260,1,South America +2023-04-11,68066,9489,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4103.53,"{""seasonal"": ""27%""}",247584,1,South America +2024-09-04,68067,347,"[""Charger""]",2725.19,{},18079,1,South America +2023-04-17,68068,1039,"[""Monitor"", ""Charger"", ""Laptop""]",4377.76,{},169687,1,South America +2024-10-29,68069,2921,"[""Wireless Mouse""]",2915.79,"{""promo"": ""16%""}",291643,0,Asia +2024-06-27,68070,8402,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2704.37,{},10892,0,Europe +2024-11-26,68071,2980,"[""Charger"", ""Monitor""]",1037.67,"{""seasonal"": ""7%""}",227513,0,Asia +2023-08-12,68072,8918,"[""Phone"", ""Laptop""]",4575.04,"{""seasonal"": ""30%""}",240853,1,Europe +2023-01-08,68073,7837,"[""Phone""]",3347.24,"{""loyalty"": ""16%""}",90356,0,Africa +2023-04-15,68074,845,"[""Phone"", ""Charger"", ""Keyboard""]",3904.44,{},299849,1,Africa +2024-01-09,68075,9266,"[""Monitor"", ""Keyboard"", ""Tablet""]",1104.8,{},149748,1,South America +2024-01-25,68076,2763,"[""Phone""]",1793.6,"{""promo"": ""23%""}",206724,0,North America +2023-09-22,68077,6017,"[""Phone"", ""Headphones""]",4970.17,"{""promo"": ""15%""}",233175,1,North America +2023-12-21,68078,8347,"[""Monitor""]",121.23,{},236550,1,South America +2023-10-09,68079,5919,"[""Charger"", ""Tablet""]",354.06,"{""loyalty"": ""10%""}",81335,1,Asia +2024-11-26,68080,6929,"[""Wireless Mouse"", ""Monitor""]",1008.69,"{""loyalty"": ""7%""}",87898,0,South America +2023-11-12,68081,2446,"[""Tablet"", ""Phone"", ""Laptop""]",4302.84,"{""seasonal"": ""29%""}",174286,0,Africa +2023-02-01,68082,9801,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",858.33,{},83565,1,Africa +2023-09-27,68083,5379,"[""Monitor""]",4642.33,"{"""": ""12%""}",40231,1,Asia +2023-10-23,68084,1521,"[""Wireless Mouse"", ""Headphones""]",748.32,{},18829,0,Europe +2024-06-12,68085,6494,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2173.76,"{""promo"": ""9%""}",222277,1,Africa +2024-12-16,68086,2917,"[""Tablet"", ""Monitor"", ""Laptop""]",4928.3,{},260350,1,Europe +2023-10-27,68087,972,"[""Phone""]",2847.78,"{""promo"": ""27%""}",50176,0,Asia +2023-04-15,68088,5078,"[""Charger"", ""Tablet""]",1817.62,"{"""": ""23%""}",146539,0,South America +2024-07-12,68089,7240,"[""Keyboard""]",3192.23,{},77296,0,South America +2023-01-25,68090,6791,"[""Laptop""]",3795.3,"{"""": ""20%""}",249976,0,North America +2023-07-14,68091,7935,"[""Monitor"", ""Phone""]",1122.57,"{""promo"": ""10%""}",58005,0,South America +2023-07-15,68092,9557,"[""Keyboard""]",3596.23,{},193099,0,Africa +2024-11-25,68093,2576,"[""Monitor""]",2202.01,{},249742,1,North America +2024-07-07,68094,4818,"[""Laptop"", ""Wireless Mouse""]",3421.36,"{""promo"": ""20%""}",91230,1,Europe +2024-11-27,68095,5181,"[""Keyboard"", ""Phone"", ""Laptop""]",2454.75,"{"""": ""10%""}",188591,1,North America +2023-08-09,68096,4077,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1300.19,{},277980,0,Africa +2024-06-08,68097,7237,"[""Keyboard""]",2672.77,"{""seasonal"": ""21%""}",239846,0,Asia +2024-02-08,68098,6927,"[""Phone"", ""Charger"", ""Keyboard""]",2087.48,{},204876,0,North America +2023-04-09,68099,6792,"[""Phone""]",2256.96,"{"""": ""9%""}",200206,1,South America +2023-06-11,68100,2693,"[""Monitor"", ""Keyboard""]",3129.59,{},70048,0,Europe +2023-05-14,68101,6053,"[""Phone""]",4526.71,{},29429,1,South America +2023-12-15,68102,6063,"[""Wireless Mouse""]",3052.85,"{"""": ""11%""}",16185,0,Africa +2023-01-14,68103,8590,"[""Tablet"", ""Phone""]",2126.37,{},218387,1,Asia +2023-08-27,68104,6475,"[""Laptop"", ""Charger"", ""Tablet""]",1558.18,{},215042,0,Africa +2023-08-09,68105,3000,"[""Headphones"", ""Monitor"", ""Tablet""]",1249.51,"{""promo"": ""20%""}",155297,0,South America +2023-12-05,68106,7682,"[""Phone"", ""Charger""]",410.97,"{""seasonal"": ""12%""}",3639,1,North America +2023-03-19,68107,1212,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4878.29,{},109351,1,Europe +2024-10-12,68108,1350,"[""Headphones""]",4439.01,{},257285,1,Africa +2024-03-21,68109,8205,"[""Headphones"", ""Charger"", ""Tablet""]",1111.75,{},49823,0,South America +2024-03-19,68110,7245,"[""Headphones"", ""Monitor""]",3210.25,"{"""": ""13%""}",86035,1,Africa +2024-01-12,68111,3514,"[""Laptop"", ""Phone""]",4116.82,{},210920,1,Europe +2024-01-28,68112,730,"[""Laptop"", ""Phone""]",1014.83,"{""seasonal"": ""14%""}",171213,0,Asia +2023-12-13,68113,4301,"[""Monitor"", ""Keyboard""]",3013.91,{},95436,0,Europe +2024-10-16,68114,5812,"[""Monitor""]",4688.06,"{"""": ""10%""}",164821,0,South America +2024-10-18,68115,9353,"[""Headphones""]",3321.52,{},204878,0,Africa +2023-04-09,68116,4083,"[""Wireless Mouse""]",4317.68,"{""seasonal"": ""14%""}",189006,1,North America +2024-12-31,68117,9991,"[""Laptop"", ""Keyboard"", ""Phone""]",4714.95,"{"""": ""22%""}",173537,1,Africa +2023-04-16,68118,312,"[""Monitor"", ""Charger""]",4149.28,"{""promo"": ""13%""}",193537,1,Europe +2024-01-13,68119,9912,"[""Tablet""]",337.88,"{""seasonal"": ""9%""}",59791,1,South America +2024-04-27,68120,6326,"[""Monitor""]",3485.65,"{"""": ""8%""}",252176,1,South America +2023-09-17,68121,8168,"[""Monitor""]",4285.08,{},145957,1,Europe +2024-05-30,68122,9126,"[""Wireless Mouse""]",4600.9,{},179538,0,South America +2023-04-21,68123,7888,"[""Tablet"", ""Monitor""]",2410.52,"{"""": ""17%""}",75973,0,Europe +2023-06-06,68124,9240,"[""Keyboard""]",4451.86,{},287296,1,Europe +2024-08-31,68125,9701,"[""Charger"", ""Headphones""]",4816.58,{},28089,0,Africa +2024-04-17,68126,7486,"[""Wireless Mouse""]",554.07,"{""promo"": ""28%""}",283348,1,North America +2024-05-03,68127,6886,"[""Laptop"", ""Phone"", ""Charger""]",855.66,"{"""": ""25%""}",64255,0,Asia +2023-01-26,68128,6772,"[""Monitor""]",3704.39,{},166666,1,Europe +2023-09-21,68129,4501,"[""Tablet"", ""Phone""]",1625.26,"{""loyalty"": ""7%""}",39835,0,North America +2023-11-17,68130,719,"[""Wireless Mouse""]",3907.76,"{""seasonal"": ""8%""}",61733,1,Asia +2023-08-20,68131,4563,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2865.73,{},57053,1,Africa +2023-04-24,68132,8415,"[""Charger""]",4474.39,"{"""": ""21%""}",294461,1,North America +2023-12-21,68133,7049,"[""Headphones""]",3805.22,"{"""": ""22%""}",151654,0,North America +2023-08-28,68134,6887,"[""Wireless Mouse"", ""Charger""]",401.26,{},187586,1,South America +2024-06-01,68135,3093,"[""Headphones""]",1162.44,"{""promo"": ""21%""}",14965,0,South America +2024-10-08,68136,5843,"[""Keyboard""]",4322.82,"{""loyalty"": ""9%""}",21672,1,Africa +2023-04-29,68137,5904,"[""Phone"", ""Monitor""]",589.27,"{""seasonal"": ""28%""}",249588,1,Europe +2023-08-04,68138,1709,"[""Phone""]",4905.64,{},105834,0,Africa +2023-07-28,68139,2549,"[""Monitor"", ""Charger"", ""Laptop""]",923.61,{},62054,1,Europe +2024-06-30,68140,9703,"[""Tablet"", ""Wireless Mouse""]",2092.21,{},164002,1,South America +2024-08-05,68141,9737,"[""Tablet"", ""Charger"", ""Laptop""]",2162.58,{},136356,1,North America +2024-05-10,68142,2652,"[""Charger"", ""Keyboard""]",2129.76,{},285566,1,Asia +2024-05-05,68143,4676,"[""Laptop""]",3879.76,"{""promo"": ""12%""}",76700,1,North America +2024-12-31,68144,9226,"[""Headphones"", ""Keyboard"", ""Phone""]",3053.84,{},100049,0,North America +2023-01-03,68145,7640,"[""Headphones""]",2360.13,"{""seasonal"": ""13%""}",75286,0,North America +2024-03-10,68146,6018,"[""Keyboard""]",3191.19,"{""seasonal"": ""22%""}",213044,1,Asia +2024-03-16,68147,7772,"[""Phone"", ""Charger"", ""Laptop""]",4447.84,"{""seasonal"": ""9%""}",261912,1,South America +2024-10-07,68148,3122,"[""Phone""]",2111.1,{},251508,0,Europe +2023-03-24,68149,1559,"[""Keyboard"", ""Charger"", ""Laptop""]",504.49,{},262273,1,North America +2023-08-21,68150,5068,"[""Laptop"", ""Monitor"", ""Phone""]",1209.11,"{""seasonal"": ""30%""}",285914,0,Asia +2023-12-20,68151,4650,"[""Keyboard"", ""Wireless Mouse""]",2507.5,"{"""": ""5%""}",205381,1,North America +2023-07-20,68152,7881,"[""Charger"", ""Phone"", ""Headphones""]",1091.17,"{""seasonal"": ""9%""}",288188,0,North America +2023-01-22,68153,1453,"[""Phone"", ""Laptop""]",777.68,"{""loyalty"": ""16%""}",189842,0,North America +2024-06-07,68154,6913,"[""Phone"", ""Charger"", ""Headphones""]",2735.14,{},34339,1,Europe +2023-08-04,68155,5957,"[""Laptop"", ""Keyboard"", ""Headphones""]",735.35,"{""promo"": ""17%""}",83554,1,Europe +2024-06-09,68156,2280,"[""Keyboard"", ""Charger"", ""Tablet""]",1158.03,"{""seasonal"": ""8%""}",99079,1,North America +2023-12-13,68157,9259,"[""Tablet"", ""Keyboard""]",3340.04,"{"""": ""27%""}",95167,0,South America +2023-10-15,68158,3977,"[""Tablet"", ""Laptop"", ""Headphones""]",1889.71,"{""loyalty"": ""9%""}",103359,0,Europe +2023-06-11,68159,3856,"[""Charger"", ""Monitor"", ""Headphones""]",3453.44,{},287835,0,North America +2024-05-25,68160,2985,"[""Charger"", ""Laptop"", ""Headphones""]",628.55,"{""promo"": ""30%""}",289649,0,Africa +2023-02-15,68161,8529,"[""Keyboard"", ""Monitor""]",509.85,{},127168,0,South America +2023-09-24,68162,359,"[""Charger"", ""Headphones""]",833.41,{},85937,1,Asia +2024-03-18,68163,820,"[""Wireless Mouse"", ""Phone""]",1107.41,{},13431,0,Europe +2024-03-10,68164,1814,"[""Tablet""]",2862.53,"{""loyalty"": ""11%""}",119864,1,South America +2023-11-22,68165,8817,"[""Phone"", ""Charger""]",3587.77,"{"""": ""10%""}",35006,1,North America +2023-08-21,68166,7083,"[""Monitor""]",1724.89,"{""loyalty"": ""8%""}",165451,0,Asia +2024-02-29,68167,9089,"[""Wireless Mouse"", ""Charger""]",3817.32,{},243464,0,Europe +2023-07-02,68168,1036,"[""Phone""]",1652.75,{},12629,0,South America +2023-08-26,68169,1002,"[""Charger""]",4884.11,"{""promo"": ""30%""}",138952,0,Asia +2024-03-08,68170,8207,"[""Wireless Mouse""]",3003.6,"{""seasonal"": ""30%""}",195985,0,Europe +2023-02-25,68171,2102,"[""Charger"", ""Phone""]",3865.28,{},290082,0,Asia +2023-11-18,68172,7883,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2785.85,"{"""": ""20%""}",251385,1,Africa +2023-08-14,68173,1632,"[""Laptop""]",4290.33,"{""seasonal"": ""28%""}",44887,0,Asia +2024-01-09,68174,1979,"[""Phone"", ""Wireless Mouse""]",232.95,"{""promo"": ""30%""}",123598,0,Africa +2023-03-01,68175,6415,"[""Charger"", ""Phone"", ""Laptop""]",2242.43,"{""loyalty"": ""12%""}",209687,0,Asia +2023-03-17,68176,6988,"[""Headphones""]",3053.22,"{""seasonal"": ""9%""}",147007,0,Europe +2024-03-08,68177,8629,"[""Charger""]",374.34,{},262468,0,Asia +2024-09-09,68178,7776,"[""Phone"", ""Headphones""]",1618.35,"{""loyalty"": ""26%""}",91724,0,Asia +2024-09-30,68179,769,"[""Laptop"", ""Keyboard""]",1135.67,"{""promo"": ""9%""}",183159,1,Asia +2024-04-27,68180,4040,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1142.17,{},38980,0,South America +2023-01-11,68181,9677,"[""Laptop"", ""Tablet""]",2800.9,"{""seasonal"": ""25%""}",42477,1,Europe +2024-02-12,68182,3890,"[""Keyboard"", ""Phone""]",2611.25,{},11099,0,North America +2024-12-25,68183,1524,"[""Monitor"", ""Headphones""]",4644.89,{},97395,1,South America +2023-02-22,68184,7269,"[""Monitor"", ""Headphones""]",4390.4,"{"""": ""29%""}",270140,0,Asia +2024-07-14,68185,2714,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2373.16,{},229794,1,South America +2024-04-29,68186,4892,"[""Tablet"", ""Headphones"", ""Phone""]",4478.99,"{""promo"": ""11%""}",209009,0,South America +2023-05-22,68187,3969,"[""Monitor"", ""Laptop""]",1680.01,{},213199,0,Africa +2023-09-20,68188,2197,"[""Wireless Mouse""]",346.5,"{""loyalty"": ""5%""}",36949,1,Europe +2023-01-12,68189,8096,"[""Laptop""]",1543.36,"{"""": ""22%""}",288002,1,Asia +2023-08-15,68190,2716,"[""Phone"", ""Wireless Mouse""]",4787.95,{},164181,1,North America +2023-11-02,68191,7436,"[""Tablet"", ""Charger""]",3135.52,"{""promo"": ""23%""}",220080,1,North America +2024-05-19,68192,533,"[""Tablet"", ""Phone"", ""Headphones""]",194.85,{},170838,0,Asia +2024-06-24,68193,7725,"[""Phone"", ""Wireless Mouse""]",3358.02,{},93454,0,Europe +2024-05-05,68194,7963,"[""Charger"", ""Tablet""]",4317.14,"{""promo"": ""16%""}",146351,0,Africa +2023-08-07,68195,5976,"[""Laptop"", ""Keyboard""]",3162.2,{},79195,1,Asia +2024-07-07,68196,4760,"[""Phone"", ""Charger"", ""Headphones""]",845.79,"{""loyalty"": ""27%""}",224155,0,Africa +2023-09-01,68197,9065,"[""Charger"", ""Laptop"", ""Headphones""]",3463.93,{},132608,1,Europe +2024-05-20,68198,716,"[""Headphones""]",3379.43,"{""promo"": ""26%""}",149975,0,Asia +2023-03-14,68199,3987,"[""Charger"", ""Monitor"", ""Laptop""]",4496.74,"{""loyalty"": ""30%""}",47077,1,Europe +2023-12-24,68200,8980,"[""Phone"", ""Tablet"", ""Charger""]",2233.96,{},57662,1,Africa +2023-07-22,68201,4068,"[""Phone"", ""Laptop"", ""Monitor""]",2191.87,"{""promo"": ""13%""}",7939,0,South America +2024-04-23,68202,499,"[""Headphones"", ""Monitor"", ""Tablet""]",1923.71,{},256547,1,North America +2023-11-06,68203,367,"[""Phone""]",3499.22,"{"""": ""12%""}",164284,1,South America +2023-12-19,68204,8559,"[""Charger""]",4095.96,"{""seasonal"": ""28%""}",182885,0,Europe +2023-07-15,68205,316,"[""Wireless Mouse"", ""Monitor""]",548.43,{},273303,1,South America +2024-12-13,68206,3524,"[""Keyboard"", ""Tablet"", ""Monitor""]",4557.99,"{""seasonal"": ""30%""}",189062,0,North America +2023-08-13,68207,5094,"[""Charger"", ""Wireless Mouse""]",4368.35,{},265256,1,Asia +2024-03-29,68208,7467,"[""Monitor"", ""Laptop"", ""Phone""]",764.11,"{"""": ""24%""}",96276,1,North America +2024-07-05,68209,3671,"[""Charger""]",1014.59,"{""promo"": ""25%""}",202433,1,South America +2023-10-26,68210,4494,"[""Phone"", ""Wireless Mouse""]",1346.21,"{""loyalty"": ""25%""}",281043,1,Africa +2023-11-07,68211,2912,"[""Wireless Mouse""]",4318.7,{},55933,0,Africa +2023-05-29,68212,7040,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4251.66,"{"""": ""5%""}",92164,0,Asia +2024-09-19,68213,1749,"[""Keyboard"", ""Laptop"", ""Headphones""]",363.56,"{""loyalty"": ""13%""}",72529,0,Asia +2023-03-25,68214,1881,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2362.4,"{""loyalty"": ""23%""}",34304,0,South America +2024-09-18,68215,6509,"[""Wireless Mouse""]",1578.55,{},136456,0,Asia +2023-03-13,68216,393,"[""Charger""]",4726.91,{},193883,0,South America +2023-07-13,68217,3784,"[""Charger"", ""Keyboard""]",3253.12,{},141158,1,Africa +2024-12-11,68218,5480,"[""Phone"", ""Charger"", ""Headphones""]",145.33,"{""seasonal"": ""17%""}",48592,1,North America +2024-06-14,68219,4840,"[""Tablet"", ""Charger"", ""Laptop""]",4305.82,{},138590,1,Asia +2023-10-19,68220,3166,"[""Charger"", ""Headphones"", ""Monitor""]",1533.94,{},58408,0,North America +2024-12-21,68221,3321,"[""Phone"", ""Laptop""]",3062.48,{},227824,1,Europe +2024-09-24,68222,7759,"[""Charger"", ""Monitor"", ""Keyboard""]",4217.45,"{""promo"": ""13%""}",141769,0,Asia +2024-05-06,68223,4901,"[""Wireless Mouse"", ""Laptop""]",1898.66,"{""seasonal"": ""11%""}",161618,0,North America +2024-12-24,68224,5101,"[""Monitor"", ""Headphones""]",2261.73,{},195957,0,Europe +2024-03-29,68225,5820,"[""Monitor"", ""Phone"", ""Laptop""]",1699.48,{},28984,1,Africa +2023-06-01,68226,6434,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",798.57,{},43028,1,Europe +2023-05-20,68227,4808,"[""Phone"", ""Keyboard"", ""Laptop""]",3909.45,{},260617,0,South America +2024-11-18,68228,8008,"[""Monitor""]",448.17,"{""promo"": ""11%""}",118160,0,Asia +2023-07-28,68229,2222,"[""Tablet"", ""Laptop""]",4683.5,"{"""": ""18%""}",224864,1,South America +2023-11-25,68230,8837,"[""Tablet"", ""Headphones""]",3496.61,{},162189,0,South America +2024-05-10,68231,8998,"[""Keyboard""]",4785.45,{},187688,0,Africa +2024-07-11,68232,8153,"[""Monitor"", ""Tablet""]",4856.78,{},90002,1,Asia +2023-06-14,68233,2015,"[""Keyboard"", ""Charger"", ""Tablet""]",3772.04,"{""loyalty"": ""23%""}",182697,1,Asia +2023-06-08,68234,6,"[""Laptop""]",2231.24,"{""loyalty"": ""9%""}",287144,0,Asia +2024-07-24,68235,7170,"[""Headphones""]",4371.08,"{""promo"": ""27%""}",48887,1,North America +2024-09-22,68236,7481,"[""Charger"", ""Laptop"", ""Tablet""]",3203.03,"{""loyalty"": ""10%""}",65251,0,Europe +2023-03-20,68237,6438,"[""Phone"", ""Tablet"", ""Laptop""]",4265.53,"{""seasonal"": ""14%""}",31428,0,North America +2023-02-14,68238,8577,"[""Phone"", ""Charger"", ""Headphones""]",1255.56,{},265894,0,South America +2023-01-31,68239,7485,"[""Tablet"", ""Charger""]",1789.87,"{""seasonal"": ""29%""}",94334,1,Asia +2024-06-04,68240,9554,"[""Keyboard"", ""Monitor""]",2420.25,"{""loyalty"": ""10%""}",253976,0,Africa +2023-11-01,68241,3678,"[""Keyboard"", ""Headphones"", ""Phone""]",1811.26,"{""loyalty"": ""6%""}",92878,1,Africa +2024-01-01,68242,9062,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1019.43,"{""seasonal"": ""13%""}",141280,1,North America +2023-10-11,68243,711,"[""Headphones"", ""Charger"", ""Keyboard""]",2779.58,{},275767,0,Africa +2023-09-12,68244,1495,"[""Keyboard""]",186.7,"{""promo"": ""14%""}",93937,0,South America +2024-05-05,68245,3634,"[""Tablet"", ""Charger""]",3497.19,{},25019,0,South America +2023-02-13,68246,2763,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2556.76,"{"""": ""18%""}",269761,1,Asia +2023-02-24,68247,9522,"[""Tablet""]",3573.78,"{""loyalty"": ""8%""}",267705,1,Africa +2024-04-25,68248,2068,"[""Tablet""]",645.87,"{""promo"": ""25%""}",157178,0,South America +2023-01-16,68249,2154,"[""Headphones"", ""Keyboard""]",4706.71,{},144544,0,North America +2023-08-22,68250,502,"[""Wireless Mouse"", ""Charger""]",3318.1,"{""seasonal"": ""25%""}",204611,1,South America +2023-12-18,68251,8104,"[""Headphones"", ""Laptop""]",999.78,{},255544,0,South America +2023-04-16,68252,7294,"[""Phone"", ""Charger"", ""Keyboard""]",4480.38,"{""seasonal"": ""17%""}",135238,0,Africa +2023-02-13,68253,9202,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4064.47,"{""promo"": ""21%""}",72485,0,Europe +2023-03-06,68254,8362,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2361.82,{},22501,1,Africa +2024-11-13,68255,4795,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2924.82,{},99531,1,South America +2024-11-26,68256,4527,"[""Headphones""]",4488.17,{},64007,0,Asia +2023-07-11,68257,875,"[""Wireless Mouse""]",4903.29,"{""loyalty"": ""15%""}",289142,1,Africa +2024-07-12,68258,2843,"[""Tablet"", ""Phone"", ""Headphones""]",424.29,{},34166,1,Europe +2023-08-08,68259,5497,"[""Monitor"", ""Phone""]",3323.46,{},223248,0,North America +2023-06-04,68260,5341,"[""Laptop""]",1101.6,{},276280,0,North America +2023-03-24,68261,2772,"[""Charger"", ""Monitor""]",155.54,"{""seasonal"": ""15%""}",14701,0,Asia +2024-08-16,68262,2502,"[""Headphones"", ""Monitor"", ""Charger""]",189.43,{},52159,0,Africa +2024-11-20,68263,2676,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1464.04,"{"""": ""24%""}",78639,1,North America +2024-06-27,68264,3647,"[""Tablet"", ""Charger""]",4976.51,"{""loyalty"": ""22%""}",3550,1,Europe +2024-07-21,68265,5,"[""Tablet""]",2473.12,{},247456,1,Africa +2024-03-02,68266,5220,"[""Tablet"", ""Wireless Mouse""]",3118.21,{},260194,0,Europe +2024-10-18,68267,7098,"[""Wireless Mouse""]",364.68,"{""promo"": ""22%""}",198827,0,North America +2023-09-14,68268,3094,"[""Monitor"", ""Keyboard"", ""Charger""]",573.07,"{""promo"": ""25%""}",6772,0,North America +2023-11-02,68269,8589,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3499.04,{},131015,1,South America +2024-06-10,68270,5189,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1975.46,"{""seasonal"": ""23%""}",157579,0,Africa +2023-09-15,68271,6316,"[""Monitor""]",801.59,"{""loyalty"": ""15%""}",148183,1,Europe +2023-02-03,68272,3863,"[""Keyboard"", ""Tablet"", ""Phone""]",1840.95,{},198837,1,Africa +2024-01-17,68273,4082,"[""Monitor""]",2367.32,{},298253,1,Asia +2024-05-10,68274,5798,"[""Laptop"", ""Headphones""]",1726.31,"{"""": ""24%""}",93942,1,Europe +2024-07-20,68275,561,"[""Monitor""]",3399.34,{},143066,0,Europe +2023-09-09,68276,9618,"[""Headphones""]",889.21,{},45816,1,Asia +2023-10-15,68277,9086,"[""Keyboard"", ""Charger""]",2274.28,{},268182,0,Africa +2023-09-04,68278,761,"[""Charger""]",3646.4,"{""seasonal"": ""12%""}",181801,0,Africa +2023-08-28,68279,7414,"[""Charger""]",1883.04,"{""seasonal"": ""5%""}",76241,0,Africa +2024-10-22,68280,279,"[""Keyboard"", ""Laptop""]",4078.65,{},157851,0,Asia +2023-10-15,68281,2549,"[""Phone"", ""Wireless Mouse""]",952.03,{},146329,1,North America +2024-08-21,68282,9733,"[""Keyboard"", ""Monitor""]",4035.92,{},58473,1,Europe +2023-08-12,68283,4023,"[""Keyboard"", ""Laptop"", ""Tablet""]",3283.81,"{"""": ""8%""}",263224,0,Africa +2023-09-18,68284,7592,"[""Monitor"", ""Phone"", ""Charger""]",448.88,"{""loyalty"": ""11%""}",177979,0,South America +2024-07-27,68285,3721,"[""Tablet""]",78.16,"{""loyalty"": ""19%""}",296935,0,Africa +2024-02-08,68286,9480,"[""Phone"", ""Charger""]",1239.34,"{""promo"": ""6%""}",113991,0,Europe +2023-02-01,68287,5338,"[""Charger""]",614.34,"{""promo"": ""16%""}",198306,1,North America +2023-01-26,68288,903,"[""Monitor"", ""Headphones""]",4586.05,"{"""": ""10%""}",99604,1,South America +2024-02-20,68289,72,"[""Monitor""]",550.26,{},180412,0,North America +2024-10-07,68290,4480,"[""Tablet""]",4103.83,"{""loyalty"": ""9%""}",206998,1,North America +2023-06-03,68291,1818,"[""Phone"", ""Tablet"", ""Headphones""]",829.69,"{""seasonal"": ""10%""}",233514,1,South America +2024-06-28,68292,8053,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3047.01,{},146447,1,North America +2024-12-10,68293,6222,"[""Headphones""]",3131.5,{},146807,1,South America +2024-11-24,68294,3700,"[""Tablet"", ""Keyboard""]",2502.62,"{""loyalty"": ""24%""}",49144,0,Asia +2024-10-08,68295,8324,"[""Charger"", ""Headphones""]",665.78,{},246050,0,Europe +2024-04-08,68296,770,"[""Tablet"", ""Phone"", ""Keyboard""]",3666.97,{},84700,1,Asia +2023-02-28,68297,9009,"[""Wireless Mouse"", ""Charger"", ""Phone""]",424.54,{},276753,0,Europe +2024-11-24,68298,780,"[""Laptop"", ""Phone""]",2550.48,"{""seasonal"": ""8%""}",74220,1,Africa +2024-05-30,68299,3584,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",815.27,"{""seasonal"": ""14%""}",27768,0,South America +2024-12-25,68300,4997,"[""Charger""]",1379.76,{},18063,0,North America +2023-11-12,68301,4811,"[""Charger"", ""Tablet""]",4074.97,"{""seasonal"": ""11%""}",49698,1,Africa +2023-07-22,68302,9418,"[""Monitor"", ""Tablet""]",2934.56,"{"""": ""17%""}",228418,1,Asia +2024-11-20,68303,9807,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3274.11,"{""promo"": ""20%""}",249993,1,Europe +2024-03-06,68304,7660,"[""Phone"", ""Laptop"", ""Charger""]",4708.44,{},83822,1,Asia +2024-10-01,68305,4255,"[""Headphones"", ""Laptop"", ""Phone""]",143.9,{},129346,0,Africa +2024-04-03,68306,6060,"[""Keyboard"", ""Monitor"", ""Tablet""]",375.38,{},29691,0,North America +2023-11-08,68307,7994,"[""Phone""]",1614.63,"{"""": ""29%""}",231367,0,Asia +2024-10-03,68308,5090,"[""Charger"", ""Laptop""]",4252.33,{},4845,0,Asia +2024-04-11,68309,7502,"[""Tablet"", ""Laptop"", ""Keyboard""]",1699.99,"{""loyalty"": ""24%""}",265930,0,North America +2024-07-20,68310,5255,"[""Laptop"", ""Charger"", ""Headphones""]",1369.51,"{"""": ""8%""}",193780,0,Africa +2024-01-27,68311,2528,"[""Phone""]",3305.09,"{""promo"": ""7%""}",96690,0,Asia +2023-07-18,68312,5801,"[""Tablet""]",3159.45,"{"""": ""9%""}",282496,0,Europe +2024-10-16,68313,3412,"[""Keyboard"", ""Charger"", ""Phone""]",3500.14,"{""promo"": ""6%""}",81904,0,North America +2024-08-29,68314,8993,"[""Monitor""]",3854.27,{},96314,1,North America +2023-02-21,68315,4618,"[""Keyboard"", ""Tablet""]",192.3,{},243106,0,Europe +2024-09-15,68316,813,"[""Wireless Mouse"", ""Keyboard""]",4198.82,{},113833,1,North America +2024-10-20,68317,7894,"[""Headphones""]",1965.37,{},293760,1,Africa +2023-01-18,68318,1413,"[""Monitor"", ""Phone"", ""Laptop""]",157.67,{},238291,1,Asia +2024-04-19,68319,7029,"[""Monitor""]",2483.11,"{"""": ""8%""}",45818,0,Africa +2024-04-04,68320,8927,"[""Charger""]",816.94,"{""loyalty"": ""13%""}",49295,0,South America +2024-10-04,68321,945,"[""Headphones""]",581.4,{},232166,1,South America +2023-06-05,68322,4691,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3536.23,"{""promo"": ""13%""}",245027,1,Asia +2023-04-30,68323,5083,"[""Tablet""]",650.61,{},23798,1,Asia +2023-11-30,68324,8020,"[""Headphones"", ""Tablet""]",934.71,{},269593,1,Africa +2024-12-27,68325,2110,"[""Tablet""]",2198.56,"{"""": ""20%""}",164339,1,North America +2024-12-11,68326,4196,"[""Phone""]",2216.14,{},195496,1,Asia +2024-08-16,68327,7317,"[""Charger"", ""Keyboard""]",1435.62,"{"""": ""15%""}",46472,0,South America +2024-05-22,68328,4571,"[""Keyboard"", ""Monitor"", ""Tablet""]",3226.17,{},218228,1,Africa +2023-07-20,68329,1882,"[""Laptop""]",2313.21,{},161358,1,South America +2023-06-04,68330,4726,"[""Wireless Mouse""]",2795.85,{},219632,1,Africa +2024-10-02,68331,165,"[""Charger""]",2951.61,"{""seasonal"": ""25%""}",221146,0,South America +2024-03-16,68332,6881,"[""Laptop"", ""Charger"", ""Tablet""]",4279.28,"{""loyalty"": ""17%""}",79893,0,South America +2023-08-28,68333,8436,"[""Phone"", ""Headphones""]",2801.28,"{""loyalty"": ""7%""}",172193,0,North America +2024-03-22,68334,9198,"[""Charger"", ""Monitor"", ""Phone""]",2403.72,"{""seasonal"": ""14%""}",209078,0,Asia +2023-05-29,68335,7628,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3908.03,{},182471,0,North America +2024-07-31,68336,5039,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4606.99,"{"""": ""25%""}",236331,0,North America +2023-06-07,68337,4886,"[""Tablet""]",3034.23,{},61250,0,Europe +2023-10-02,68338,7003,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1383.23,{},118350,1,South America +2023-12-09,68339,2629,"[""Phone"", ""Charger"", ""Laptop""]",1898.16,"{""loyalty"": ""23%""}",284989,1,Africa +2023-11-06,68340,5615,"[""Monitor"", ""Keyboard""]",2208.02,{},75050,0,North America +2023-03-03,68341,1176,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3797.74,{},47897,0,Europe +2023-10-02,68342,4379,"[""Laptop"", ""Phone"", ""Monitor""]",2513.5,"{""promo"": ""21%""}",96622,1,Asia +2023-03-18,68343,5194,"[""Laptop"", ""Tablet"", ""Charger""]",386.64,"{"""": ""28%""}",81951,0,Europe +2024-11-24,68344,5170,"[""Laptop"", ""Headphones""]",4461.25,{},245836,0,Africa +2023-07-05,68345,790,"[""Headphones"", ""Phone""]",3354.89,"{""loyalty"": ""18%""}",118254,0,Africa +2023-11-16,68346,5912,"[""Headphones"", ""Charger""]",4471.26,{},263173,1,North America +2023-05-27,68347,2652,"[""Keyboard"", ""Charger""]",4893.33,"{""seasonal"": ""14%""}",232933,0,North America +2023-05-23,68348,2220,"[""Tablet""]",4593.04,{},295333,0,South America +2024-08-18,68349,4866,"[""Tablet""]",3380.58,{},146648,1,Europe +2023-12-10,68350,950,"[""Monitor"", ""Phone"", ""Tablet""]",1397.82,{},63534,0,South America +2023-05-12,68351,4958,"[""Laptop"", ""Monitor""]",3589.41,{},278787,1,North America +2024-03-13,68352,1642,"[""Wireless Mouse""]",4117.67,"{""promo"": ""25%""}",259512,0,Europe +2024-10-13,68353,8753,"[""Keyboard"", ""Phone""]",545.93,"{""loyalty"": ""30%""}",182610,1,Africa +2023-07-04,68354,807,"[""Phone"", ""Monitor""]",4529.62,"{""seasonal"": ""20%""}",198699,1,North America +2023-09-12,68355,4452,"[""Charger"", ""Monitor""]",1571.12,"{""loyalty"": ""17%""}",244955,0,Europe +2023-10-27,68356,4091,"[""Headphones"", ""Phone"", ""Tablet""]",1474.56,"{"""": ""18%""}",220229,0,Africa +2024-09-11,68357,6944,"[""Tablet""]",3637.25,{},187677,0,Asia +2023-09-29,68358,8421,"[""Phone"", ""Keyboard""]",1102.49,"{"""": ""11%""}",44322,0,Africa +2024-09-14,68359,503,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2906.73,"{""promo"": ""24%""}",209184,1,North America +2024-11-03,68360,8704,"[""Monitor"", ""Laptop"", ""Headphones""]",3240.75,"{""promo"": ""12%""}",139955,0,South America +2023-01-11,68361,114,"[""Tablet"", ""Wireless Mouse""]",1983.06,{},12911,1,Asia +2024-07-03,68362,5065,"[""Monitor"", ""Charger"", ""Headphones""]",4639.58,"{""loyalty"": ""21%""}",237147,0,North America +2024-02-02,68363,7265,"[""Monitor""]",2038.96,"{"""": ""23%""}",162232,0,Europe +2023-03-13,68364,432,"[""Phone"", ""Headphones""]",607.1,{},59869,1,Europe +2024-02-26,68365,9713,"[""Laptop""]",1907.49,{},281339,1,South America +2024-08-04,68366,8014,"[""Keyboard""]",906.85,{},30421,1,North America +2024-10-20,68367,4614,"[""Phone"", ""Wireless Mouse""]",3966.08,"{""promo"": ""8%""}",128717,0,North America +2024-02-06,68368,9435,"[""Keyboard""]",1226.45,{},85550,1,North America +2024-04-29,68369,8107,"[""Phone"", ""Headphones"", ""Charger""]",3792.68,{},110947,1,Europe +2024-10-15,68370,4583,"[""Tablet"", ""Phone""]",2816.13,"{""loyalty"": ""16%""}",56175,1,Asia +2024-05-09,68371,23,"[""Charger"", ""Laptop""]",582.69,{},148393,1,Europe +2023-10-19,68372,1483,"[""Headphones"", ""Wireless Mouse""]",3129.28,{},187229,0,Africa +2023-11-30,68373,8854,"[""Headphones""]",4363.16,"{""promo"": ""23%""}",21783,1,Asia +2023-11-26,68374,8385,"[""Headphones"", ""Laptop"", ""Phone""]",964.07,"{""loyalty"": ""8%""}",226515,1,Asia +2023-03-08,68375,6335,"[""Keyboard"", ""Phone""]",1835.96,"{""loyalty"": ""7%""}",138644,1,South America +2023-09-04,68376,2061,"[""Phone""]",2540.02,{},33891,0,North America +2023-11-22,68377,5397,"[""Wireless Mouse"", ""Keyboard""]",4580.64,{},48419,1,North America +2024-12-23,68378,9811,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2511.6,"{""loyalty"": ""12%""}",100557,0,Europe +2023-11-07,68379,8102,"[""Headphones"", ""Keyboard""]",4276.73,{},253042,0,Africa +2023-11-23,68380,1733,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4651.21,"{""promo"": ""8%""}",258609,0,Asia +2023-10-21,68381,2003,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4003.77,"{""seasonal"": ""8%""}",35753,0,Europe +2023-06-02,68382,2691,"[""Phone"", ""Wireless Mouse""]",2805.01,{},255875,1,Europe +2023-03-10,68383,4171,"[""Phone""]",1966.21,"{""seasonal"": ""6%""}",149669,0,Africa +2023-05-24,68384,8815,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3165.52,{},218657,0,Europe +2024-11-15,68385,1808,"[""Headphones"", ""Phone""]",2117.45,"{"""": ""5%""}",285464,0,Africa +2023-04-20,68386,7634,"[""Headphones"", ""Laptop"", ""Charger""]",3070.59,{},298780,1,Africa +2024-12-14,68387,9940,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1756.1,{},241282,1,Asia +2024-11-13,68388,7022,"[""Headphones"", ""Laptop"", ""Phone""]",3650.25,{},87942,0,South America +2024-08-23,68389,3887,"[""Monitor"", ""Headphones"", ""Keyboard""]",1900.4,{},196532,0,Europe +2023-02-24,68390,5126,"[""Headphones""]",4717.81,{},215127,0,Europe +2023-04-17,68391,4239,"[""Wireless Mouse""]",1703.5,"{"""": ""26%""}",66161,0,Europe +2024-12-25,68392,437,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",265.94,"{""promo"": ""27%""}",146572,0,Europe +2023-12-21,68393,5207,"[""Monitor"", ""Tablet""]",566.76,{},106271,0,North America +2023-07-15,68394,1140,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3617.81,"{"""": ""22%""}",217671,0,Asia +2024-12-11,68395,6737,"[""Phone""]",2127.99,{},148122,0,Asia +2023-03-20,68396,8087,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1688.57,"{""promo"": ""19%""}",131726,1,Africa +2023-11-12,68397,2081,"[""Wireless Mouse"", ""Keyboard""]",2645.37,{},192385,0,North America +2023-09-06,68398,9040,"[""Tablet"", ""Headphones"", ""Charger""]",1468.42,{},71191,1,Africa +2024-01-01,68399,9030,"[""Charger""]",2936.27,{},10885,0,Asia +2023-03-01,68400,9472,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3193.19,{},226344,0,South America +2024-10-02,68401,9789,"[""Wireless Mouse""]",1946.21,{},227105,0,South America +2023-04-11,68402,8724,"[""Keyboard""]",1813.34,"{""loyalty"": ""6%""}",241288,0,South America +2024-08-09,68403,9410,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1941.4,{},203523,1,Africa +2023-06-29,68404,8355,"[""Laptop"", ""Tablet"", ""Headphones""]",3128.05,{},294297,1,South America +2023-02-15,68405,6643,"[""Tablet"", ""Monitor"", ""Charger""]",358.12,"{""loyalty"": ""22%""}",113750,0,South America +2023-04-15,68406,9591,"[""Phone"", ""Charger"", ""Keyboard""]",2513.56,"{""loyalty"": ""20%""}",96466,0,Asia +2023-01-08,68407,8160,"[""Phone"", ""Headphones""]",4310.76,{},33254,1,North America +2023-05-26,68408,693,"[""Tablet"", ""Keyboard""]",4047.39,{},273177,0,Africa +2023-01-06,68409,7257,"[""Monitor"", ""Keyboard""]",2480.05,"{""promo"": ""20%""}",63534,0,Europe +2024-05-07,68410,3230,"[""Laptop"", ""Monitor"", ""Phone""]",4341.04,"{""loyalty"": ""19%""}",14058,1,Africa +2024-07-17,68411,5385,"[""Charger"", ""Wireless Mouse""]",3563.58,"{""promo"": ""10%""}",190410,1,South America +2023-04-05,68412,4575,"[""Tablet"", ""Charger""]",2605.11,{},136974,1,South America +2023-08-03,68413,5469,"[""Phone"", ""Tablet""]",4217.05,"{""loyalty"": ""14%""}",151267,1,Africa +2023-02-19,68414,6093,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3278.41,"{"""": ""8%""}",8960,1,Europe +2023-06-24,68415,6086,"[""Laptop"", ""Wireless Mouse""]",4816.02,"{"""": ""15%""}",205213,0,North America +2024-09-26,68416,1686,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1709.37,"{""promo"": ""6%""}",178910,0,Africa +2024-09-28,68417,4388,"[""Tablet"", ""Laptop"", ""Monitor""]",2106.79,{},295418,0,Asia +2023-09-08,68418,6993,"[""Headphones"", ""Phone""]",4535.51,"{""promo"": ""15%""}",151116,0,South America +2024-08-10,68419,4800,"[""Keyboard"", ""Charger""]",3463.68,"{"""": ""16%""}",290043,0,Africa +2024-06-18,68420,6666,"[""Laptop"", ""Charger"", ""Tablet""]",4728.24,"{"""": ""7%""}",214562,1,North America +2024-10-06,68421,4917,"[""Keyboard"", ""Charger""]",202.84,{},255802,1,Europe +2024-03-25,68422,2498,"[""Headphones"", ""Monitor"", ""Keyboard""]",117.63,"{""loyalty"": ""10%""}",145453,1,South America +2024-09-12,68423,2428,"[""Phone""]",4086.47,"{""promo"": ""15%""}",244520,0,Africa +2023-05-20,68424,6278,"[""Tablet"", ""Wireless Mouse""]",4189.82,"{"""": ""16%""}",258101,0,Africa +2024-07-23,68425,3701,"[""Headphones"", ""Laptop""]",677.98,{},76490,1,Asia +2023-10-30,68426,6572,"[""Keyboard"", ""Tablet"", ""Monitor""]",3169.13,"{""promo"": ""17%""}",176559,0,North America +2023-11-28,68427,764,"[""Laptop"", ""Tablet"", ""Monitor""]",999.25,"{""loyalty"": ""8%""}",68500,1,North America +2024-01-10,68428,2817,"[""Tablet"", ""Laptop"", ""Monitor""]",3565.73,"{""promo"": ""16%""}",134483,1,Europe +2023-10-27,68429,4728,"[""Wireless Mouse""]",2042.66,"{"""": ""9%""}",277124,0,Europe +2024-06-10,68430,2368,"[""Headphones""]",2603.93,"{"""": ""27%""}",107909,0,Africa +2023-09-22,68431,5697,"[""Laptop"", ""Wireless Mouse""]",4902.25,{},199478,0,Asia +2024-08-04,68432,1035,"[""Charger""]",2089.37,"{""seasonal"": ""17%""}",99828,0,Europe +2023-03-22,68433,6109,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1608.76,{},94252,0,Asia +2023-07-17,68434,4667,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4898.6,"{""promo"": ""11%""}",282911,0,Europe +2024-09-22,68435,3678,"[""Headphones"", ""Charger""]",4847.27,{},96586,1,Europe +2023-08-10,68436,4367,"[""Laptop""]",4332.16,"{""seasonal"": ""17%""}",298783,0,North America +2023-05-29,68437,5403,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3638.38,"{"""": ""6%""}",255377,1,Asia +2024-09-21,68438,6956,"[""Keyboard""]",3318.11,{},112127,1,North America +2024-04-08,68439,6121,"[""Headphones"", ""Keyboard"", ""Tablet""]",2413.08,"{""promo"": ""20%""}",194154,0,South America +2023-02-07,68440,3161,"[""Laptop""]",4120.14,"{"""": ""25%""}",46082,0,Africa +2024-06-02,68441,4534,"[""Laptop"", ""Charger"", ""Keyboard""]",2195.14,{},191707,1,Africa +2023-08-07,68442,6719,"[""Charger"", ""Wireless Mouse""]",4326.67,{},151964,1,South America +2024-07-19,68443,6879,"[""Headphones"", ""Laptop""]",251.07,"{""seasonal"": ""9%""}",261420,0,North America +2024-06-22,68444,438,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1549.92,"{""seasonal"": ""11%""}",92120,1,Africa +2024-03-01,68445,2460,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1750.56,"{""loyalty"": ""28%""}",153436,0,South America +2023-03-08,68446,3743,"[""Headphones"", ""Charger"", ""Keyboard""]",4748.98,"{""promo"": ""13%""}",265720,1,North America +2024-08-05,68447,9444,"[""Keyboard"", ""Tablet""]",3810.74,"{""loyalty"": ""22%""}",13017,1,Asia +2023-10-30,68448,7180,"[""Tablet"", ""Charger""]",349.22,"{""promo"": ""14%""}",121785,0,Africa +2024-08-01,68449,4308,"[""Laptop""]",4946.38,{},76770,1,Africa +2023-01-28,68450,8108,"[""Laptop"", ""Monitor""]",3720.74,{},142266,1,Asia +2024-06-20,68451,203,"[""Keyboard""]",2017.55,"{"""": ""8%""}",116654,1,Africa +2024-10-03,68452,9009,"[""Charger"", ""Tablet"", ""Monitor""]",4342.51,"{""seasonal"": ""25%""}",89182,1,Europe +2024-07-10,68453,6511,"[""Wireless Mouse""]",1456.57,{},198751,0,Europe +2024-10-15,68454,7611,"[""Headphones""]",208.76,"{""promo"": ""26%""}",58940,1,Asia +2023-04-15,68455,9728,"[""Charger"", ""Tablet""]",4770.99,{},76662,1,Asia +2024-11-10,68456,6390,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",751.35,"{""promo"": ""15%""}",90039,1,Europe +2024-09-13,68457,6211,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2405.97,{},196922,1,Asia +2024-03-06,68458,5247,"[""Laptop"", ""Monitor""]",2383.07,{},96458,1,North America +2023-02-16,68459,4863,"[""Laptop""]",3847.11,{},293716,1,South America +2024-03-05,68460,5076,"[""Keyboard""]",176.97,{},110933,0,North America +2024-10-04,68461,4437,"[""Monitor""]",1281.85,{},153783,1,North America +2024-03-28,68462,3624,"[""Laptop"", ""Phone""]",3070.03,{},20692,0,Europe +2024-01-05,68463,8086,"[""Tablet""]",183.83,"{""loyalty"": ""29%""}",218990,0,Europe +2023-09-19,68464,2512,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2188.6,"{"""": ""20%""}",191800,0,Africa +2024-12-17,68465,1465,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",304.29,{},227248,1,Asia +2023-02-24,68466,9717,"[""Headphones"", ""Tablet"", ""Charger""]",1540.41,"{""loyalty"": ""24%""}",156627,1,North America +2023-11-26,68467,6740,"[""Charger""]",722.73,"{"""": ""12%""}",127237,0,Asia +2023-02-19,68468,4308,"[""Headphones""]",465.35,{},76081,1,Asia +2023-08-27,68469,1794,"[""Monitor"", ""Phone""]",4237.93,{},151160,1,South America +2023-10-18,68470,5608,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4549.16,"{"""": ""21%""}",4152,0,Africa +2024-02-17,68471,1300,"[""Charger""]",658.52,{},38418,0,North America +2024-01-02,68472,6851,"[""Phone"", ""Monitor""]",4480.82,"{""promo"": ""17%""}",153262,1,Asia +2023-05-11,68473,9086,"[""Phone"", ""Wireless Mouse""]",3999.11,"{""promo"": ""5%""}",185944,1,Asia +2024-09-11,68474,7236,"[""Charger"", ""Tablet"", ""Laptop""]",1817.3,{},218476,1,Asia +2023-10-30,68475,7218,"[""Tablet"", ""Monitor""]",2615.25,"{""loyalty"": ""6%""}",225567,0,Africa +2023-03-18,68476,2530,"[""Headphones"", ""Wireless Mouse""]",3037.19,"{"""": ""8%""}",55389,1,Europe +2024-07-14,68477,6246,"[""Monitor""]",3937.5,"{""seasonal"": ""7%""}",189532,0,Asia +2024-06-20,68478,4018,"[""Monitor"", ""Tablet""]",3688.08,"{""loyalty"": ""21%""}",286091,1,Africa +2023-09-22,68479,806,"[""Laptop""]",779.16,"{""promo"": ""13%""}",77533,0,North America +2024-01-05,68480,2218,"[""Keyboard""]",1973.6,"{""seasonal"": ""27%""}",74056,0,Europe +2024-05-12,68481,4006,"[""Monitor"", ""Keyboard"", ""Tablet""]",3989.85,{},26136,1,North America +2023-05-31,68482,4479,"[""Phone"", ""Tablet""]",266.16,{},139599,1,Africa +2023-12-22,68483,3189,"[""Tablet"", ""Laptop""]",749.74,"{""loyalty"": ""19%""}",7243,1,North America +2023-09-12,68484,4929,"[""Charger"", ""Keyboard"", ""Headphones""]",411.83,"{""promo"": ""27%""}",56820,0,Africa +2023-07-29,68485,7713,"[""Headphones"", ""Phone""]",2614.79,"{""loyalty"": ""23%""}",98553,1,Europe +2023-06-17,68486,8166,"[""Laptop""]",524.12,"{"""": ""16%""}",200207,1,Africa +2024-11-24,68487,472,"[""Tablet"", ""Monitor"", ""Charger""]",3986.33,"{"""": ""20%""}",212080,0,North America +2024-12-27,68488,4481,"[""Keyboard""]",737.48,"{"""": ""11%""}",194570,1,North America +2024-02-07,68489,9522,"[""Monitor"", ""Charger""]",3306.95,"{"""": ""23%""}",261659,1,Europe +2023-04-07,68490,753,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4240.77,{},260309,0,Africa +2024-07-19,68491,7587,"[""Laptop""]",3848.71,{},228130,1,Africa +2024-09-04,68492,3266,"[""Monitor"", ""Headphones"", ""Phone""]",4296.25,"{""loyalty"": ""30%""}",117324,0,Europe +2023-03-28,68493,7067,"[""Keyboard"", ""Headphones""]",416.27,{},207485,0,Africa +2023-10-23,68494,1910,"[""Wireless Mouse"", ""Laptop""]",4872.75,"{""loyalty"": ""17%""}",157724,0,North America +2023-09-02,68495,3862,"[""Phone"", ""Keyboard""]",4204.17,"{""seasonal"": ""22%""}",223220,1,Europe +2023-11-08,68496,9154,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3447.34,{},38686,0,North America +2023-01-17,68497,9177,"[""Charger"", ""Keyboard""]",3920.1,{},17333,1,North America +2023-09-19,68498,8053,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",455.94,{},35904,1,Asia +2024-10-22,68499,1525,"[""Wireless Mouse""]",2774.33,{},94979,0,South America +2024-07-03,68500,357,"[""Laptop""]",2548.09,"{""promo"": ""13%""}",158411,1,North America +2024-01-22,68501,1035,"[""Monitor"", ""Wireless Mouse""]",1589.4,"{""promo"": ""14%""}",144715,0,Europe +2023-04-26,68502,3838,"[""Laptop"", ""Phone""]",3483.97,{},18042,0,Africa +2024-08-08,68503,3648,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",188.42,{},183827,1,Europe +2024-06-28,68504,3143,"[""Laptop"", ""Phone"", ""Charger""]",2988.89,{},133762,0,Africa +2023-12-05,68505,7948,"[""Laptop""]",991.83,{},221127,0,Europe +2023-11-07,68506,2730,"[""Tablet""]",3887.0,{},180008,0,South America +2024-12-04,68507,9223,"[""Headphones"", ""Tablet"", ""Monitor""]",359.08,"{""loyalty"": ""19%""}",235324,1,Africa +2024-12-08,68508,8740,"[""Tablet"", ""Laptop"", ""Phone""]",1877.38,{},142246,0,Africa +2023-10-19,68509,6200,"[""Charger"", ""Laptop""]",4660.82,"{"""": ""6%""}",16103,1,Asia +2024-11-07,68510,9382,"[""Headphones"", ""Phone"", ""Charger""]",3430.09,{},139680,1,Africa +2024-06-20,68511,4854,"[""Laptop"", ""Keyboard"", ""Monitor""]",788.67,{},288541,0,North America +2023-04-27,68512,3793,"[""Laptop"", ""Phone""]",2612.78,"{""promo"": ""15%""}",102565,1,Africa +2023-11-23,68513,5513,"[""Keyboard"", ""Monitor"", ""Charger""]",3085.0,{},107729,0,Europe +2023-10-24,68514,6104,"[""Charger"", ""Phone""]",4062.66,"{""promo"": ""23%""}",164168,1,Africa +2024-07-12,68515,1816,"[""Charger"", ""Keyboard"", ""Laptop""]",1404.68,{},116093,1,North America +2023-08-26,68516,7239,"[""Charger"", ""Laptop""]",203.13,{},49378,0,South America +2024-04-25,68517,2495,"[""Wireless Mouse"", ""Monitor""]",3701.49,{},277140,0,Africa +2023-07-27,68518,741,"[""Headphones"", ""Monitor"", ""Charger""]",3418.5,{},58069,1,North America +2024-02-23,68519,8763,"[""Keyboard""]",311.42,"{""promo"": ""22%""}",197853,0,Africa +2024-02-27,68520,1645,"[""Keyboard"", ""Laptop"", ""Monitor""]",2032.5,"{""promo"": ""24%""}",217084,1,Europe +2023-01-25,68521,7638,"[""Charger""]",4021.36,{},168669,1,Africa +2023-09-04,68522,6205,"[""Laptop""]",3298.98,"{""promo"": ""12%""}",242526,1,Africa +2023-01-01,68523,9280,"[""Keyboard""]",3769.79,{},260604,1,Europe +2024-12-16,68524,3531,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",349.66,{},283182,0,South America +2023-04-17,68525,963,"[""Monitor""]",2708.09,"{""promo"": ""14%""}",37395,1,Asia +2024-06-22,68526,5698,"[""Phone""]",1465.29,"{""seasonal"": ""17%""}",17228,0,North America +2023-09-28,68527,982,"[""Tablet""]",506.52,"{""loyalty"": ""12%""}",90538,0,North America +2024-02-03,68528,5529,"[""Keyboard""]",3911.35,"{""promo"": ""6%""}",14209,1,Europe +2024-05-20,68529,5265,"[""Keyboard"", ""Charger""]",3232.79,{},5196,0,South America +2024-04-21,68530,6272,"[""Headphones"", ""Laptop""]",2141.51,{},114317,0,Asia +2023-09-09,68531,1161,"[""Wireless Mouse""]",4173.04,{},30214,1,Africa +2023-04-26,68532,3851,"[""Wireless Mouse"", ""Charger""]",145.12,"{""seasonal"": ""25%""}",144339,0,Africa +2023-08-02,68533,6615,"[""Phone"", ""Wireless Mouse""]",2970.46,{},5195,0,South America +2023-06-10,68534,146,"[""Wireless Mouse""]",2590.92,{},213155,0,Africa +2023-05-04,68535,5094,"[""Tablet""]",1071.12,{},170190,1,Africa +2024-12-08,68536,2822,"[""Headphones"", ""Tablet"", ""Keyboard""]",104.47,"{"""": ""15%""}",244129,1,Europe +2023-08-18,68537,9423,"[""Phone"", ""Tablet""]",177.16,{},14602,1,South America +2024-07-31,68538,4964,"[""Laptop"", ""Charger"", ""Monitor""]",4074.35,{},223670,0,Europe +2024-09-28,68539,1199,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4240.43,"{"""": ""20%""}",82368,0,Africa +2024-07-20,68540,9678,"[""Keyboard"", ""Tablet""]",64.93,{},85201,0,North America +2023-10-25,68541,670,"[""Headphones"", ""Phone"", ""Laptop""]",2967.25,{},116960,0,Europe +2023-10-22,68542,6031,"[""Phone"", ""Laptop""]",4076.52,{},165400,1,South America +2023-10-10,68543,9579,"[""Charger""]",1062.66,"{""promo"": ""15%""}",224399,0,Asia +2024-04-18,68544,7946,"[""Charger"", ""Phone"", ""Tablet""]",952.6,"{""seasonal"": ""22%""}",296076,1,Asia +2024-04-29,68545,7816,"[""Phone""]",778.2,"{"""": ""22%""}",8474,0,Africa +2023-09-23,68546,1308,"[""Monitor""]",3747.25,{},56612,1,Asia +2024-09-03,68547,654,"[""Laptop""]",2565.88,{},185108,1,North America +2023-05-19,68548,786,"[""Tablet"", ""Monitor""]",3545.69,"{""promo"": ""28%""}",260747,1,Asia +2024-07-18,68549,4803,"[""Phone""]",3033.89,"{"""": ""21%""}",58856,0,Asia +2024-07-08,68550,4337,"[""Laptop"", ""Keyboard""]",2695.33,"{""promo"": ""27%""}",234625,1,Asia +2023-04-12,68551,2623,"[""Charger""]",3789.43,"{""promo"": ""22%""}",147215,0,Asia +2024-08-25,68552,5050,"[""Laptop"", ""Monitor"", ""Keyboard""]",4916.78,{},171468,1,North America +2023-01-10,68553,3638,"[""Headphones"", ""Charger""]",2099.71,"{""promo"": ""15%""}",17505,1,North America +2024-03-08,68554,5322,"[""Phone""]",2831.75,{},187520,1,Asia +2023-01-21,68555,9266,"[""Wireless Mouse"", ""Keyboard""]",3471.38,{},154552,0,South America +2023-03-17,68556,4336,"[""Charger"", ""Laptop""]",3011.27,"{""promo"": ""10%""}",226529,1,North America +2023-01-18,68557,997,"[""Phone"", ""Wireless Mouse""]",3770.69,"{""loyalty"": ""27%""}",129344,0,South America +2023-09-01,68558,3053,"[""Charger""]",2621.87,"{""seasonal"": ""26%""}",215307,1,Asia +2023-01-11,68559,7320,"[""Charger"", ""Keyboard"", ""Headphones""]",701.11,"{""seasonal"": ""20%""}",214422,0,North America +2024-07-04,68560,966,"[""Wireless Mouse""]",2287.61,{},100582,1,Asia +2024-06-29,68561,8868,"[""Tablet""]",4910.58,"{""loyalty"": ""9%""}",121302,0,Asia +2023-05-04,68562,6888,"[""Charger"", ""Phone""]",1045.72,"{""promo"": ""10%""}",226932,1,South America +2024-12-11,68563,8671,"[""Monitor""]",233.69,"{""promo"": ""30%""}",94466,1,North America +2024-12-26,68564,7243,"[""Keyboard"", ""Monitor""]",4821.44,{},244373,1,Europe +2023-04-30,68565,6438,"[""Tablet""]",4383.6,{},193715,1,South America +2024-08-29,68566,2583,"[""Tablet""]",1006.97,"{"""": ""9%""}",97321,1,Europe +2024-05-12,68567,7558,"[""Keyboard"", ""Tablet"", ""Laptop""]",4431.0,{},242712,1,Asia +2023-04-12,68568,8332,"[""Laptop""]",1995.86,"{""seasonal"": ""11%""}",298964,0,Asia +2023-04-29,68569,2025,"[""Headphones""]",2732.28,{},26678,0,North America +2024-06-25,68570,299,"[""Charger"", ""Keyboard"", ""Tablet""]",3230.98,"{""loyalty"": ""11%""}",203420,0,South America +2023-10-29,68571,7354,"[""Laptop""]",1252.39,"{""promo"": ""13%""}",6393,1,Europe +2023-09-04,68572,3328,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2610.42,"{""loyalty"": ""15%""}",268231,0,South America +2023-01-27,68573,4880,"[""Keyboard"", ""Wireless Mouse""]",3786.38,"{"""": ""7%""}",82097,0,Asia +2024-05-15,68574,4611,"[""Tablet"", ""Charger""]",375.58,"{""loyalty"": ""16%""}",60988,0,Asia +2023-10-31,68575,1558,"[""Laptop"", ""Charger""]",3021.62,{},213813,1,North America +2023-10-25,68576,7964,"[""Charger"", ""Laptop"", ""Monitor""]",4763.0,{},297072,0,Asia +2023-04-05,68577,841,"[""Keyboard""]",3834.83,"{""loyalty"": ""23%""}",294165,0,Asia +2024-06-24,68578,915,"[""Monitor""]",3342.76,"{"""": ""27%""}",187028,0,Europe +2024-11-05,68579,7078,"[""Wireless Mouse"", ""Laptop""]",4048.5,"{""seasonal"": ""20%""}",48317,0,South America +2024-11-08,68580,2169,"[""Monitor"", ""Charger""]",2606.55,{},38302,0,Asia +2024-03-27,68581,1325,"[""Monitor""]",1004.87,"{""promo"": ""14%""}",65237,1,Europe +2023-09-26,68582,8600,"[""Keyboard"", ""Phone""]",1451.98,{},231057,1,Africa +2023-03-08,68583,4480,"[""Headphones""]",1525.67,"{"""": ""7%""}",49338,1,South America +2023-10-06,68584,3960,"[""Headphones""]",2808.82,"{"""": ""27%""}",232192,0,Africa +2023-04-11,68585,8564,"[""Laptop""]",2033.9,"{"""": ""30%""}",127714,1,Africa +2023-09-01,68586,6654,"[""Wireless Mouse""]",144.6,{},129831,0,North America +2024-10-16,68587,9759,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4262.36,{},112432,0,South America +2023-03-11,68588,9963,"[""Tablet"", ""Headphones""]",3553.93,"{""promo"": ""13%""}",18102,1,North America +2024-01-02,68589,2507,"[""Charger"", ""Monitor"", ""Headphones""]",2269.23,{},150248,0,South America +2023-01-15,68590,7949,"[""Charger"", ""Laptop"", ""Headphones""]",4791.24,{},142661,1,Asia +2023-12-24,68591,7404,"[""Tablet""]",3265.42,"{"""": ""9%""}",160432,1,North America +2024-11-15,68592,2218,"[""Wireless Mouse"", ""Monitor""]",540.98,"{""loyalty"": ""9%""}",75809,0,Asia +2023-01-01,68593,8798,"[""Keyboard"", ""Charger""]",1420.1,{},288868,0,Europe +2024-02-22,68594,7391,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1152.15,{},212964,1,South America +2023-07-19,68595,8530,"[""Phone"", ""Laptop""]",1573.01,"{""promo"": ""16%""}",72792,1,Africa +2023-10-14,68596,2059,"[""Keyboard""]",3682.66,{},1164,1,Asia +2024-07-12,68597,3962,"[""Monitor""]",354.13,"{""promo"": ""19%""}",206560,1,Asia +2024-09-24,68598,495,"[""Monitor"", ""Keyboard""]",1383.22,{},189822,1,Africa +2023-01-05,68599,2511,"[""Charger"", ""Laptop"", ""Tablet""]",516.93,{},269322,0,Europe +2023-09-13,68600,3562,"[""Keyboard""]",2643.66,"{""loyalty"": ""6%""}",265375,1,Asia +2023-03-12,68601,2968,"[""Charger"", ""Keyboard"", ""Phone""]",1589.86,{},27952,0,Asia +2024-11-30,68602,4070,"[""Keyboard""]",2627.99,{},246367,0,South America +2024-04-15,68603,6878,"[""Laptop"", ""Keyboard"", ""Headphones""]",4563.72,{},184227,0,Europe +2024-07-05,68604,5073,"[""Charger"", ""Laptop""]",1427.76,{},298077,0,Europe +2023-11-20,68605,7777,"[""Keyboard""]",3046.6,{},61841,1,South America +2023-07-30,68606,8793,"[""Laptop"", ""Monitor""]",1968.41,"{""promo"": ""8%""}",287027,1,South America +2024-06-01,68607,417,"[""Charger""]",378.45,{},179594,0,Asia +2023-08-02,68608,4865,"[""Phone"", ""Monitor""]",1925.38,"{"""": ""19%""}",265072,1,Europe +2023-01-20,68609,5067,"[""Tablet"", ""Headphones"", ""Keyboard""]",3616.14,"{""promo"": ""23%""}",231249,0,Asia +2023-08-21,68610,9053,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2945.23,{},256261,1,Europe +2024-02-08,68611,1507,"[""Laptop"", ""Phone""]",3042.61,{},250030,1,South America +2024-11-13,68612,6145,"[""Tablet""]",1360.53,"{""promo"": ""5%""}",255552,1,Africa +2023-01-09,68613,8864,"[""Headphones"", ""Charger""]",4607.33,"{"""": ""15%""}",236926,0,South America +2024-02-14,68614,8664,"[""Keyboard"", ""Phone""]",3718.76,{},29663,0,South America +2024-06-19,68615,3913,"[""Headphones"", ""Monitor""]",4288.11,{},221858,1,South America +2023-07-10,68616,8601,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1648.17,{},95061,1,Europe +2023-11-19,68617,8727,"[""Laptop""]",3319.18,{},254378,0,Europe +2023-01-22,68618,3850,"[""Headphones"", ""Laptop"", ""Tablet""]",2268.05,"{"""": ""14%""}",161248,0,South America +2023-11-17,68619,6264,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3800.54,{},225087,1,South America +2024-09-11,68620,3122,"[""Monitor"", ""Laptop"", ""Headphones""]",3788.31,"{"""": ""29%""}",148928,0,South America +2024-05-16,68621,561,"[""Charger""]",554.39,"{""seasonal"": ""16%""}",292678,0,Africa +2023-02-28,68622,9553,"[""Charger"", ""Keyboard""]",1603.29,{},34537,0,Europe +2023-08-25,68623,8023,"[""Tablet"", ""Phone""]",3557.39,"{""loyalty"": ""27%""}",49887,0,North America +2024-09-05,68624,1440,"[""Laptop"", ""Tablet""]",4169.84,"{""seasonal"": ""24%""}",52557,1,Europe +2024-07-19,68625,2273,"[""Monitor"", ""Wireless Mouse""]",2514.09,"{""seasonal"": ""30%""}",63387,0,South America +2023-08-06,68626,8177,"[""Laptop"", ""Tablet""]",1403.49,{},24471,1,Asia +2023-08-19,68627,1380,"[""Phone"", ""Charger""]",2947.46,{},77430,0,North America +2023-01-04,68628,3046,"[""Phone""]",2917.03,"{"""": ""6%""}",263992,0,North America +2023-07-04,68629,7143,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4121.01,{},86847,0,North America +2023-10-15,68630,5829,"[""Monitor""]",2898.3,"{""seasonal"": ""21%""}",100917,1,Africa +2023-04-15,68631,9719,"[""Keyboard""]",4293.29,{},299858,1,North America +2024-02-28,68632,3753,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2002.73,"{""seasonal"": ""30%""}",210624,0,South America +2023-11-27,68633,2793,"[""Charger"", ""Keyboard""]",229.49,"{""promo"": ""22%""}",150947,1,South America +2023-11-25,68634,1963,"[""Headphones""]",1482.92,{},242631,1,Asia +2024-10-28,68635,2472,"[""Monitor""]",246.96,{},80682,1,South America +2024-08-16,68636,4265,"[""Phone""]",4758.94,"{""promo"": ""26%""}",161386,1,South America +2023-11-06,68637,7737,"[""Phone""]",1548.11,{},259266,0,South America +2023-10-22,68638,6741,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",964.07,"{""loyalty"": ""24%""}",145455,1,Africa +2024-04-03,68639,9371,"[""Wireless Mouse""]",1142.26,"{""loyalty"": ""11%""}",215822,0,South America +2023-05-14,68640,6814,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2519.34,{},139648,0,Europe +2023-02-02,68641,5004,"[""Monitor""]",3029.93,{},254544,1,Europe +2024-04-18,68642,7018,"[""Headphones""]",506.32,"{"""": ""24%""}",285916,0,Asia +2023-11-07,68643,8649,"[""Monitor""]",2443.32,{},103363,0,South America +2024-04-24,68644,3332,"[""Headphones"", ""Phone"", ""Charger""]",3239.73,"{""seasonal"": ""17%""}",115143,0,Europe +2024-07-22,68645,1113,"[""Keyboard"", ""Tablet"", ""Monitor""]",2227.97,"{"""": ""10%""}",94774,0,Europe +2023-06-19,68646,234,"[""Phone""]",1207.16,{},13151,1,Europe +2024-05-13,68647,4539,"[""Keyboard""]",3075.96,"{""seasonal"": ""9%""}",186585,0,Africa +2023-02-05,68648,7883,"[""Tablet"", ""Monitor"", ""Laptop""]",627.63,{},117797,1,Africa +2024-05-07,68649,8596,"[""Phone""]",2069.51,"{"""": ""9%""}",64087,1,North America +2023-11-01,68650,5897,"[""Charger"", ""Phone"", ""Headphones""]",3266.66,{},82640,1,Africa +2023-05-08,68651,6374,"[""Tablet"", ""Monitor""]",744.05,"{"""": ""14%""}",186393,0,Europe +2024-12-17,68652,6265,"[""Keyboard"", ""Tablet""]",4062.88,"{""seasonal"": ""13%""}",20252,0,Europe +2024-01-06,68653,6507,"[""Monitor"", ""Phone""]",3341.19,{},16976,0,North America +2023-12-07,68654,6252,"[""Monitor"", ""Phone""]",1888.12,{},90672,0,Africa +2024-12-17,68655,7148,"[""Phone"", ""Charger"", ""Keyboard""]",217.77,"{""seasonal"": ""21%""}",149138,1,Africa +2024-08-14,68656,6132,"[""Tablet"", ""Charger""]",2519.27,{},160767,0,North America +2023-09-28,68657,1964,"[""Tablet""]",3266.35,{},260328,1,North America +2023-09-09,68658,8823,"[""Wireless Mouse"", ""Phone""]",1936.92,{},252889,1,Europe +2024-12-28,68659,5674,"[""Wireless Mouse""]",386.86,{},206540,0,Europe +2024-08-18,68660,8193,"[""Phone""]",3864.22,{},282107,0,North America +2023-04-02,68661,3273,"[""Keyboard"", ""Laptop""]",3437.91,"{""seasonal"": ""11%""}",243998,1,South America +2024-08-17,68662,2073,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3775.75,"{""loyalty"": ""17%""}",75313,0,North America +2024-04-12,68663,3213,"[""Keyboard"", ""Tablet""]",1748.24,{},51906,0,North America +2023-10-11,68664,1569,"[""Laptop"", ""Wireless Mouse""]",1060.61,{},84082,1,Asia +2024-12-20,68665,6400,"[""Keyboard"", ""Monitor"", ""Headphones""]",3022.79,"{""promo"": ""14%""}",173288,0,South America +2023-07-09,68666,4467,"[""Headphones"", ""Phone"", ""Monitor""]",2691.09,"{""loyalty"": ""12%""}",66427,0,South America +2023-04-15,68667,2434,"[""Tablet"", ""Monitor""]",2659.43,"{""loyalty"": ""7%""}",152267,0,South America +2024-04-28,68668,2261,"[""Monitor"", ""Headphones""]",1046.64,"{"""": ""13%""}",86196,1,South America +2023-11-14,68669,3213,"[""Laptop""]",4334.88,{},213451,0,South America +2024-09-26,68670,1736,"[""Phone"", ""Keyboard"", ""Tablet""]",3589.42,{},101185,0,Asia +2023-11-27,68671,9071,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1808.45,{},71577,1,South America +2024-11-09,68672,7156,"[""Headphones"", ""Phone"", ""Laptop""]",1562.61,{},228379,0,Europe +2023-09-06,68673,9384,"[""Wireless Mouse"", ""Tablet""]",1574.87,"{""promo"": ""8%""}",269735,0,Africa +2024-07-28,68674,7090,"[""Charger"", ""Keyboard"", ""Headphones""]",3257.22,{},105641,0,Africa +2024-08-29,68675,5769,"[""Monitor"", ""Laptop""]",1916.15,{},68795,0,Europe +2024-05-24,68676,3856,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2200.62,{},82469,0,Africa +2024-09-30,68677,924,"[""Charger"", ""Wireless Mouse""]",4266.62,{},265085,0,Europe +2023-02-22,68678,6810,"[""Headphones"", ""Keyboard"", ""Phone""]",3612.63,{},232020,0,South America +2023-11-22,68679,3639,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4113.47,{},52474,0,Europe +2023-12-08,68680,6773,"[""Wireless Mouse"", ""Headphones""]",4635.08,"{""loyalty"": ""16%""}",71232,1,Asia +2023-04-13,68681,4719,"[""Headphones"", ""Monitor""]",256.37,"{""loyalty"": ""17%""}",104799,1,North America +2023-03-29,68682,2705,"[""Keyboard"", ""Headphones""]",3278.45,{},102974,0,Europe +2023-09-13,68683,4613,"[""Keyboard"", ""Tablet""]",4637.1,"{""seasonal"": ""18%""}",162474,1,North America +2024-10-12,68684,5800,"[""Monitor"", ""Charger""]",1225.67,"{""loyalty"": ""8%""}",231864,0,Africa +2024-12-08,68685,4388,"[""Charger""]",1250.62,"{"""": ""28%""}",74018,0,Africa +2024-11-04,68686,2658,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1616.01,{},273426,1,South America +2023-05-17,68687,3156,"[""Phone""]",2542.1,{},6052,0,Europe +2023-10-21,68688,2004,"[""Monitor"", ""Charger""]",1378.2,"{""promo"": ""19%""}",25014,1,South America +2023-03-21,68689,2330,"[""Keyboard"", ""Phone"", ""Charger""]",1976.23,"{""seasonal"": ""17%""}",2173,1,South America +2024-11-19,68690,5823,"[""Tablet""]",582.15,"{""seasonal"": ""30%""}",170220,1,South America +2023-05-07,68691,8620,"[""Tablet"", ""Keyboard""]",2262.01,{},291423,1,Europe +2024-03-08,68692,114,"[""Phone""]",1573.88,{},67986,0,North America +2024-08-24,68693,8689,"[""Tablet"", ""Headphones"", ""Phone""]",4783.11,{},225227,0,Africa +2023-04-27,68694,3150,"[""Keyboard""]",1604.64,"{""loyalty"": ""26%""}",193792,1,Asia +2024-11-04,68695,9324,"[""Keyboard"", ""Monitor"", ""Charger""]",1824.77,{},178943,0,South America +2023-10-27,68696,9065,"[""Laptop"", ""Wireless Mouse""]",1936.0,{},11114,1,North America +2023-06-30,68697,1140,"[""Monitor"", ""Wireless Mouse""]",2669.07,"{""loyalty"": ""10%""}",211180,1,North America +2024-01-30,68698,2112,"[""Monitor"", ""Headphones"", ""Charger""]",1830.49,{},18645,1,North America +2023-12-26,68699,5066,"[""Headphones"", ""Phone""]",2416.5,{},59244,0,Asia +2023-08-24,68700,9009,"[""Keyboard""]",1966.56,{},47880,0,Asia +2023-01-09,68701,8896,"[""Charger"", ""Phone"", ""Tablet""]",3061.41,"{"""": ""5%""}",219427,1,Asia +2023-10-29,68702,2668,"[""Tablet""]",2982.0,"{""seasonal"": ""23%""}",169171,0,Asia +2024-05-11,68703,7180,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",84.64,{},24761,0,South America +2023-08-29,68704,1524,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3907.36,{},96467,0,Asia +2023-05-06,68705,466,"[""Headphones""]",4715.17,"{""seasonal"": ""21%""}",224091,1,Europe +2023-09-07,68706,5401,"[""Keyboard"", ""Tablet""]",3042.13,"{""promo"": ""29%""}",262660,1,South America +2024-01-10,68707,1829,"[""Tablet"", ""Charger""]",4138.16,"{""promo"": ""26%""}",16572,1,Africa +2023-12-24,68708,6086,"[""Laptop"", ""Tablet"", ""Charger""]",3670.8,{},19883,0,Europe +2024-03-01,68709,5831,"[""Keyboard""]",1788.85,"{""promo"": ""27%""}",30775,0,North America +2024-03-09,68710,2187,"[""Charger"", ""Keyboard""]",4303.29,{},177539,1,Asia +2023-06-09,68711,4790,"[""Laptop"", ""Tablet"", ""Keyboard""]",4119.5,{},104255,0,North America +2023-11-05,68712,442,"[""Phone"", ""Keyboard""]",175.25,"{""promo"": ""25%""}",1531,1,Africa +2023-11-26,68713,9641,"[""Tablet""]",358.75,{},2283,0,Africa +2023-02-09,68714,7193,"[""Charger""]",686.92,{},146714,1,Europe +2024-01-31,68715,7029,"[""Laptop"", ""Phone"", ""Keyboard""]",428.35,{},188731,0,Europe +2023-08-07,68716,9466,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1847.92,{},122414,0,South America +2023-08-14,68717,49,"[""Keyboard"", ""Tablet""]",1508.37,{},176046,1,Africa +2023-10-22,68718,6792,"[""Keyboard""]",4978.85,"{"""": ""10%""}",30817,0,Europe +2023-11-29,68719,9239,"[""Laptop""]",1842.24,"{""loyalty"": ""20%""}",49716,1,Africa +2024-08-07,68720,9017,"[""Laptop"", ""Wireless Mouse""]",4760.93,{},189234,1,Europe +2024-11-15,68721,86,"[""Phone"", ""Charger""]",2877.49,{},51180,0,Africa +2023-05-10,68722,8059,"[""Phone"", ""Keyboard"", ""Monitor""]",2231.83,{},251212,0,South America +2023-04-14,68723,3626,"[""Headphones"", ""Keyboard""]",2609.56,{},230594,0,Europe +2024-01-14,68724,6290,"[""Keyboard"", ""Wireless Mouse""]",4599.63,{},260904,1,Asia +2024-10-26,68725,8135,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1893.79,{},185267,0,Asia +2023-09-02,68726,6469,"[""Keyboard"", ""Monitor""]",4679.45,"{""seasonal"": ""30%""}",199808,1,Africa +2023-09-07,68727,2548,"[""Monitor"", ""Charger""]",1763.65,"{""seasonal"": ""23%""}",273777,0,North America +2023-01-03,68728,5757,"[""Keyboard"", ""Tablet""]",3824.96,"{""loyalty"": ""17%""}",117465,1,North America +2024-07-02,68729,5163,"[""Tablet"", ""Charger"", ""Laptop""]",4681.15,"{""promo"": ""6%""}",288071,0,Asia +2024-05-18,68730,3822,"[""Wireless Mouse"", ""Charger""]",2028.94,{},267193,1,Asia +2023-07-20,68731,8089,"[""Charger""]",1303.79,"{""promo"": ""5%""}",46747,1,Asia +2023-07-27,68732,3013,"[""Headphones""]",703.66,{},23679,0,Asia +2024-09-05,68733,2205,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1043.14,{},184357,0,Europe +2024-08-29,68734,2697,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3025.24,"{"""": ""25%""}",155925,1,South America +2023-10-29,68735,6755,"[""Headphones""]",2690.95,"{"""": ""7%""}",229261,1,Europe +2024-03-06,68736,4874,"[""Laptop"", ""Tablet""]",924.8,{},78154,0,Asia +2023-08-04,68737,1653,"[""Keyboard"", ""Headphones"", ""Monitor""]",4445.66,"{""seasonal"": ""12%""}",24639,0,Asia +2024-08-08,68738,6607,"[""Keyboard""]",4036.28,{},95236,0,South America +2023-10-25,68739,1354,"[""Tablet"", ""Phone""]",922.32,"{""seasonal"": ""14%""}",240076,0,South America +2023-11-20,68740,4653,"[""Wireless Mouse"", ""Monitor""]",4895.8,"{""promo"": ""10%""}",98013,0,Asia +2023-03-10,68741,2890,"[""Tablet"", ""Phone""]",1460.38,"{""promo"": ""6%""}",86830,1,South America +2023-03-17,68742,6464,"[""Wireless Mouse""]",3930.05,{},296139,0,South America +2023-10-03,68743,5734,"[""Laptop""]",2068.85,"{""seasonal"": ""18%""}",174291,0,Africa +2023-03-09,68744,3008,"[""Phone"", ""Tablet"", ""Monitor""]",2714.77,{},136050,1,Asia +2023-04-03,68745,6292,"[""Charger"", ""Monitor""]",1628.74,{},29116,1,Europe +2023-12-15,68746,2563,"[""Tablet"", ""Headphones"", ""Laptop""]",497.78,{},52367,1,Europe +2024-04-25,68747,1450,"[""Monitor"", ""Wireless Mouse""]",101.29,{},120955,1,South America +2024-04-13,68748,6432,"[""Headphones"", ""Charger"", ""Tablet""]",2851.46,"{""loyalty"": ""12%""}",164680,0,Africa +2024-03-14,68749,6070,"[""Headphones""]",4731.01,{},294229,0,North America +2024-09-07,68750,2391,"[""Laptop"", ""Tablet"", ""Keyboard""]",902.26,{},153099,0,Africa +2023-10-10,68751,3858,"[""Charger"", ""Phone""]",3123.32,"{""seasonal"": ""26%""}",145446,0,South America +2023-07-14,68752,322,"[""Keyboard"", ""Tablet""]",2255.09,{},85209,0,North America +2024-05-22,68753,8979,"[""Phone""]",4393.32,{},90307,0,North America +2024-08-23,68754,747,"[""Keyboard""]",3682.49,"{""promo"": ""24%""}",141535,0,South America +2024-09-02,68755,1966,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3009.43,"{""seasonal"": ""8%""}",128824,1,South America +2023-02-16,68756,4707,"[""Laptop"", ""Wireless Mouse""]",1039.49,"{""promo"": ""28%""}",271424,0,North America +2023-04-16,68757,324,"[""Monitor""]",1171.3,{},53678,1,Europe +2023-08-25,68758,5083,"[""Phone""]",3003.92,{},289565,0,Asia +2024-09-04,68759,4928,"[""Phone"", ""Laptop""]",4856.01,{},59467,0,North America +2023-05-23,68760,1922,"[""Monitor"", ""Laptop"", ""Headphones""]",1156.9,"{""seasonal"": ""5%""}",21072,1,South America +2023-01-03,68761,4898,"[""Charger"", ""Phone""]",430.08,"{""promo"": ""10%""}",251776,0,Europe +2023-04-11,68762,2653,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3889.12,"{""loyalty"": ""26%""}",64429,0,Africa +2024-08-27,68763,9624,"[""Tablet"", ""Keyboard""]",4844.43,"{""seasonal"": ""9%""}",92638,0,North America +2023-09-13,68764,2659,"[""Laptop"", ""Phone"", ""Monitor""]",741.28,"{""seasonal"": ""11%""}",2402,0,Europe +2023-09-13,68765,4137,"[""Keyboard""]",4489.43,{},84299,1,Asia +2023-04-04,68766,6447,"[""Keyboard""]",2544.27,"{""loyalty"": ""25%""}",287123,0,North America +2023-03-12,68767,4780,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4195.93,"{""promo"": ""10%""}",71789,1,Asia +2023-04-04,68768,9375,"[""Tablet""]",2348.08,"{"""": ""23%""}",147497,0,Asia +2023-03-28,68769,5167,"[""Headphones""]",2289.28,"{""loyalty"": ""25%""}",217108,1,South America +2023-03-24,68770,4747,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2899.32,{},86154,0,North America +2023-06-07,68771,3151,"[""Monitor"", ""Tablet"", ""Headphones""]",471.23,{},39346,0,Asia +2023-06-10,68772,9431,"[""Tablet"", ""Keyboard""]",2621.23,"{"""": ""9%""}",129863,0,Asia +2024-12-17,68773,7270,"[""Laptop"", ""Headphones"", ""Phone""]",1257.02,{},75912,0,North America +2024-02-11,68774,6911,"[""Phone"", ""Tablet"", ""Monitor""]",4229.89,"{"""": ""14%""}",58290,0,South America +2024-07-18,68775,4503,"[""Charger""]",1766.84,"{""seasonal"": ""8%""}",41535,1,Africa +2023-02-26,68776,4891,"[""Monitor""]",1429.0,{},3655,0,Europe +2023-06-28,68777,1386,"[""Charger"", ""Tablet""]",2736.68,{},166708,1,Africa +2024-04-09,68778,1403,"[""Monitor"", ""Phone""]",4512.74,"{""promo"": ""10%""}",147216,0,Asia +2023-10-01,68779,6084,"[""Charger"", ""Tablet""]",4040.32,{},102562,1,Africa +2024-05-16,68780,3900,"[""Charger""]",2142.34,{},258273,1,Europe +2023-10-18,68781,7509,"[""Monitor""]",1363.53,{},51740,1,Europe +2023-06-08,68782,8537,"[""Charger"", ""Keyboard"", ""Tablet""]",4002.63,"{""seasonal"": ""24%""}",205569,1,Europe +2024-01-28,68783,3290,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",78.79,{},273843,1,North America +2023-01-12,68784,2311,"[""Laptop""]",4583.33,"{"""": ""20%""}",50884,1,Europe +2023-03-10,68785,6029,"[""Tablet"", ""Charger""]",2478.26,"{""seasonal"": ""25%""}",200772,0,South America +2024-01-05,68786,5476,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2221.47,"{""promo"": ""8%""}",66198,1,Europe +2023-04-16,68787,4979,"[""Headphones"", ""Tablet""]",4874.21,"{"""": ""17%""}",97278,1,Europe +2024-05-03,68788,8588,"[""Keyboard""]",4437.54,{},172788,1,Africa +2024-04-01,68789,3972,"[""Monitor"", ""Keyboard""]",3267.05,{},213929,0,Europe +2024-06-12,68790,6817,"[""Laptop"", ""Wireless Mouse""]",1830.26,{},97932,0,Europe +2023-05-11,68791,5026,"[""Laptop"", ""Headphones""]",2308.45,{},284644,0,Africa +2023-04-16,68792,7936,"[""Monitor"", ""Headphones""]",140.03,{},258669,0,South America +2023-07-30,68793,2955,"[""Headphones""]",2563.42,"{"""": ""8%""}",41955,1,North America +2024-09-30,68794,8517,"[""Phone""]",4687.0,{},128884,0,Asia +2024-08-07,68795,3655,"[""Keyboard"", ""Tablet""]",4591.12,"{""promo"": ""13%""}",221379,1,Africa +2024-01-01,68796,2770,"[""Tablet""]",2092.66,"{""loyalty"": ""29%""}",21296,1,Africa +2023-03-13,68797,5403,"[""Tablet"", ""Wireless Mouse""]",1571.73,"{""seasonal"": ""21%""}",20842,1,Asia +2023-10-07,68798,8620,"[""Wireless Mouse""]",2748.92,"{""loyalty"": ""22%""}",112670,0,North America +2023-03-16,68799,8847,"[""Monitor"", ""Laptop""]",1942.99,{},64905,0,Europe +2023-09-08,68800,9551,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2774.9,"{""loyalty"": ""15%""}",122402,1,North America +2024-01-13,68801,2377,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",900.52,{},152829,0,North America +2023-01-31,68802,1015,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3044.51,"{""loyalty"": ""25%""}",235307,0,Europe +2024-09-11,68803,3036,"[""Wireless Mouse"", ""Charger""]",4782.57,{},186902,1,South America +2023-06-13,68804,4978,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2219.51,{},275263,1,Asia +2023-11-24,68805,8532,"[""Monitor"", ""Phone""]",2531.95,"{""seasonal"": ""18%""}",295155,1,Asia +2023-10-18,68806,8216,"[""Phone""]",406.52,{},182174,1,Asia +2024-10-29,68807,9557,"[""Laptop""]",4074.14,{},63106,0,Europe +2024-04-29,68808,141,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4900.15,{},32855,1,Africa +2023-04-09,68809,5291,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1996.29,"{""seasonal"": ""11%""}",67762,1,Asia +2023-05-08,68810,234,"[""Laptop""]",2330.38,"{""loyalty"": ""13%""}",237230,1,South America +2024-07-08,68811,1254,"[""Headphones"", ""Phone"", ""Keyboard""]",3772.52,"{""loyalty"": ""9%""}",177549,1,North America +2024-02-13,68812,1057,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",593.36,{},11558,1,Europe +2023-09-29,68813,2548,"[""Charger"", ""Monitor"", ""Tablet""]",4071.16,{},132352,1,Europe +2023-09-01,68814,6141,"[""Phone"", ""Monitor"", ""Laptop""]",2961.08,"{""loyalty"": ""13%""}",112764,1,North America +2024-10-06,68815,6314,"[""Tablet"", ""Keyboard""]",2590.66,"{""seasonal"": ""9%""}",23623,1,Europe +2024-02-21,68816,1785,"[""Headphones"", ""Keyboard""]",3606.09,{},180491,0,Africa +2024-02-07,68817,6278,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4138.06,"{""loyalty"": ""12%""}",141573,1,Africa +2024-06-16,68818,1062,"[""Wireless Mouse"", ""Keyboard""]",3304.36,{},180511,1,Europe +2023-04-30,68819,203,"[""Monitor""]",4447.14,"{"""": ""20%""}",227015,1,Africa +2023-09-07,68820,2231,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2599.09,"{""seasonal"": ""26%""}",284428,1,South America +2024-08-21,68821,193,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2240.64,"{""loyalty"": ""29%""}",38776,1,South America +2024-05-28,68822,6769,"[""Phone"", ""Keyboard""]",3234.26,{},266333,0,Africa +2024-08-13,68823,5668,"[""Phone"", ""Charger""]",4978.52,"{""seasonal"": ""19%""}",76729,0,North America +2023-06-22,68824,6068,"[""Laptop""]",1021.22,"{""seasonal"": ""15%""}",62510,1,Europe +2024-05-15,68825,2949,"[""Charger"", ""Wireless Mouse""]",135.87,{},249454,1,Asia +2023-10-20,68826,7857,"[""Keyboard""]",4653.25,"{""promo"": ""5%""}",256632,0,Asia +2023-01-04,68827,158,"[""Laptop"", ""Monitor""]",3005.78,{},266544,0,Europe +2023-01-11,68828,6107,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3328.46,"{""promo"": ""21%""}",231394,0,Asia +2023-08-06,68829,8649,"[""Keyboard""]",72.08,"{""loyalty"": ""13%""}",175763,0,Africa +2024-10-09,68830,5971,"[""Phone"", ""Headphones""]",1391.76,{},170214,1,South America +2023-03-22,68831,7774,"[""Phone"", ""Laptop""]",4424.22,"{""promo"": ""27%""}",166354,1,Africa +2023-01-03,68832,5426,"[""Laptop""]",3527.13,{},136488,0,Europe +2023-02-14,68833,6373,"[""Keyboard"", ""Charger""]",2443.61,"{""loyalty"": ""15%""}",103163,1,Africa +2024-11-10,68834,6850,"[""Headphones"", ""Phone""]",4663.73,"{""promo"": ""18%""}",156736,1,Africa +2024-07-16,68835,7129,"[""Keyboard""]",4601.03,{},89373,1,North America +2024-07-03,68836,2579,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3455.77,{},54119,1,South America +2023-03-03,68837,2742,"[""Phone""]",3798.85,"{""seasonal"": ""9%""}",146811,1,Asia +2023-05-14,68838,2055,"[""Phone"", ""Headphones""]",2946.95,"{""seasonal"": ""20%""}",278156,0,Europe +2023-04-20,68839,9407,"[""Tablet"", ""Charger"", ""Headphones""]",2827.35,"{""seasonal"": ""13%""}",162629,1,Africa +2023-04-23,68840,5440,"[""Charger"", ""Laptop"", ""Phone""]",4359.84,"{""loyalty"": ""24%""}",297169,1,South America +2023-01-03,68841,7772,"[""Tablet"", ""Keyboard""]",291.06,"{""loyalty"": ""11%""}",275262,1,North America +2024-10-30,68842,460,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2576.15,{},189122,0,Asia +2023-10-19,68843,4792,"[""Keyboard"", ""Phone""]",3046.73,"{""loyalty"": ""24%""}",15411,0,Asia +2024-01-07,68844,3912,"[""Tablet"", ""Laptop""]",505.13,{},37061,0,Asia +2023-02-28,68845,9709,"[""Laptop""]",729.38,"{"""": ""8%""}",252078,1,Europe +2023-08-15,68846,4120,"[""Tablet"", ""Charger""]",3094.95,{},114608,0,Asia +2024-07-07,68847,9426,"[""Charger"", ""Laptop"", ""Headphones""]",4798.28,"{""seasonal"": ""17%""}",92069,1,North America +2024-09-04,68848,7976,"[""Headphones"", ""Tablet"", ""Laptop""]",4371.37,{},289116,0,Europe +2024-07-07,68849,8975,"[""Monitor"", ""Headphones"", ""Tablet""]",760.68,"{""loyalty"": ""15%""}",119648,0,North America +2024-03-18,68850,8005,"[""Phone""]",350.92,"{""promo"": ""24%""}",128432,1,North America +2024-12-29,68851,2660,"[""Headphones"", ""Laptop""]",501.51,"{""promo"": ""18%""}",117984,1,South America +2024-07-18,68852,9328,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2803.96,{},37680,1,Asia +2023-06-13,68853,3571,"[""Monitor"", ""Phone"", ""Tablet""]",565.6,"{"""": ""25%""}",286928,0,Asia +2023-08-19,68854,2858,"[""Laptop""]",564.84,{},125184,1,North America +2023-04-25,68855,1094,"[""Charger"", ""Headphones""]",4015.44,{},241551,0,Africa +2024-05-07,68856,3848,"[""Charger"", ""Wireless Mouse""]",3045.24,{},144655,0,North America +2024-04-01,68857,4056,"[""Headphones"", ""Tablet"", ""Phone""]",250.83,"{""loyalty"": ""16%""}",272293,0,Asia +2023-09-10,68858,2686,"[""Monitor"", ""Phone"", ""Keyboard""]",3337.02,"{"""": ""15%""}",54509,1,South America +2024-02-29,68859,9904,"[""Keyboard"", ""Laptop""]",130.88,{},288044,0,South America +2023-01-21,68860,9302,"[""Laptop"", ""Charger"", ""Monitor""]",548.64,{},258338,1,South America +2024-09-11,68861,7151,"[""Tablet""]",4312.42,{},289330,1,North America +2023-06-17,68862,1255,"[""Charger""]",3006.55,"{""promo"": ""10%""}",129713,0,South America +2024-02-06,68863,8705,"[""Headphones""]",3413.23,{},255495,0,Asia +2024-12-06,68864,2965,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3298.03,"{""loyalty"": ""30%""}",279547,0,North America +2023-09-21,68865,8204,"[""Laptop"", ""Phone"", ""Tablet""]",4204.76,"{""seasonal"": ""23%""}",27462,1,North America +2024-05-23,68866,6310,"[""Wireless Mouse"", ""Tablet""]",3859.47,{},233399,0,South America +2023-12-20,68867,8006,"[""Keyboard"", ""Laptop"", ""Headphones""]",2251.96,{},296457,0,Asia +2023-12-04,68868,4189,"[""Charger"", ""Keyboard""]",2003.03,"{"""": ""12%""}",191074,0,Europe +2023-02-09,68869,748,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4529.93,"{"""": ""10%""}",283830,0,Asia +2024-10-28,68870,8614,"[""Wireless Mouse"", ""Monitor""]",3050.54,{},107438,1,North America +2023-05-25,68871,4962,"[""Phone"", ""Laptop""]",3790.8,{},215872,0,Africa +2024-11-11,68872,1861,"[""Keyboard"", ""Laptop"", ""Monitor""]",1298.81,{},254889,0,Asia +2024-03-18,68873,5213,"[""Keyboard"", ""Phone""]",3629.93,"{"""": ""23%""}",195640,0,Asia +2024-05-19,68874,3950,"[""Laptop"", ""Headphones"", ""Phone""]",3249.43,{},269535,0,North America +2023-02-08,68875,1295,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1665.35,{},196811,0,Europe +2023-06-07,68876,7726,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4072.27,"{""seasonal"": ""5%""}",49102,1,South America +2024-09-27,68877,5817,"[""Tablet""]",4683.98,{},290207,0,Africa +2023-04-21,68878,109,"[""Headphones"", ""Charger""]",3903.83,{},198395,0,Africa +2023-05-02,68879,8129,"[""Monitor""]",2080.18,"{"""": ""15%""}",157231,1,Asia +2024-07-23,68880,506,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3617.06,{},222212,0,Africa +2023-11-27,68881,5538,"[""Tablet""]",4012.95,{},223373,1,Europe +2024-01-05,68882,8070,"[""Wireless Mouse"", ""Tablet""]",735.58,{},290328,1,Europe +2023-11-08,68883,2767,"[""Keyboard"", ""Tablet"", ""Laptop""]",2547.16,{},167554,0,North America +2023-06-02,68884,8888,"[""Monitor"", ""Keyboard""]",3480.05,{},15275,1,South America +2024-10-04,68885,3526,"[""Wireless Mouse""]",1252.15,"{""seasonal"": ""14%""}",123571,0,North America +2023-06-05,68886,3669,"[""Charger"", ""Monitor""]",4013.55,{},118309,1,Asia +2023-07-18,68887,2870,"[""Keyboard""]",3737.8,"{"""": ""14%""}",181899,1,Africa +2024-12-11,68888,692,"[""Tablet"", ""Monitor""]",2017.5,{},137407,0,Asia +2023-12-30,68889,523,"[""Monitor"", ""Wireless Mouse""]",1281.09,{},107581,0,Africa +2024-01-10,68890,7165,"[""Charger""]",2155.42,{},104750,1,North America +2024-07-24,68891,8032,"[""Laptop"", ""Keyboard"", ""Headphones""]",1823.18,{},145152,0,Asia +2024-04-30,68892,8458,"[""Monitor"", ""Laptop"", ""Charger""]",1462.41,"{""promo"": ""21%""}",49955,0,Africa +2024-11-17,68893,8168,"[""Monitor"", ""Phone""]",4744.75,{},167734,0,South America +2024-04-21,68894,8065,"[""Charger""]",4991.21,{},86981,0,South America +2024-01-25,68895,6139,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2213.79,{},108880,1,South America +2023-12-04,68896,1975,"[""Headphones"", ""Phone"", ""Laptop""]",2441.19,{},171823,0,North America +2023-03-11,68897,3944,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4235.3,"{""seasonal"": ""29%""}",253250,1,Europe +2024-08-02,68898,2399,"[""Wireless Mouse"", ""Laptop""]",3435.39,{},210129,1,Asia +2023-06-07,68899,438,"[""Monitor"", ""Tablet"", ""Keyboard""]",1845.81,{},133136,0,South America +2023-04-08,68900,939,"[""Wireless Mouse"", ""Charger""]",3157.44,{},186413,0,Asia +2024-10-09,68901,6395,"[""Tablet""]",3793.83,"{""loyalty"": ""7%""}",3739,0,Africa +2024-03-24,68902,5796,"[""Charger"", ""Tablet""]",3184.77,{},143921,1,Europe +2024-12-17,68903,9343,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4280.94,"{""loyalty"": ""20%""}",171443,1,Africa +2024-01-06,68904,444,"[""Tablet"", ""Monitor"", ""Headphones""]",4625.01,{},30859,1,South America +2023-04-16,68905,1707,"[""Headphones""]",4999.78,"{""seasonal"": ""21%""}",71053,0,Europe +2024-02-18,68906,8387,"[""Wireless Mouse"", ""Monitor""]",478.33,{},124323,1,Asia +2024-12-14,68907,3291,"[""Wireless Mouse""]",245.6,"{""seasonal"": ""17%""}",190813,0,South America +2023-12-08,68908,4454,"[""Phone"", ""Laptop""]",1231.82,{},107947,1,Asia +2023-10-10,68909,1891,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1981.04,{},44093,0,South America +2023-02-14,68910,931,"[""Monitor"", ""Headphones""]",3902.99,"{""seasonal"": ""5%""}",55716,0,Europe +2024-01-06,68911,7819,"[""Wireless Mouse"", ""Keyboard""]",4159.53,"{""promo"": ""24%""}",97957,0,Africa +2023-10-15,68912,4685,"[""Phone"", ""Tablet"", ""Charger""]",3426.25,{},109782,0,South America +2023-01-12,68913,8401,"[""Laptop"", ""Charger""]",2406.64,"{""seasonal"": ""25%""}",18569,0,Asia +2024-08-08,68914,3541,"[""Monitor"", ""Laptop""]",190.24,{},235132,0,Africa +2024-07-12,68915,7239,"[""Tablet""]",2584.33,"{""loyalty"": ""16%""}",215660,0,South America +2023-07-11,68916,8141,"[""Wireless Mouse"", ""Keyboard""]",489.46,{},84653,1,Asia +2023-12-06,68917,7580,"[""Wireless Mouse""]",3867.58,"{"""": ""9%""}",220085,0,Asia +2023-09-05,68918,203,"[""Headphones""]",1307.25,{},23691,1,South America +2024-07-24,68919,2676,"[""Charger""]",2571.3,{},38661,0,Europe +2024-04-28,68920,50,"[""Phone"", ""Monitor"", ""Headphones""]",2634.62,{},3842,1,North America +2024-03-12,68921,9431,"[""Phone"", ""Headphones"", ""Keyboard""]",308.24,{},268538,1,South America +2024-05-10,68922,7450,"[""Monitor"", ""Charger""]",3044.94,"{""loyalty"": ""25%""}",169132,0,North America +2024-10-10,68923,1743,"[""Tablet"", ""Keyboard""]",3631.87,{},136796,0,Asia +2024-10-18,68924,6698,"[""Monitor"", ""Laptop""]",1247.42,"{""loyalty"": ""8%""}",146724,1,Asia +2024-10-15,68925,1925,"[""Monitor""]",2611.58,"{""loyalty"": ""20%""}",8930,0,Africa +2023-12-13,68926,6717,"[""Laptop"", ""Wireless Mouse""]",2581.93,{},150506,1,South America +2023-12-29,68927,1958,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4711.2,"{"""": ""21%""}",63549,1,South America +2023-05-30,68928,750,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4519.11,{},203383,1,North America +2024-05-18,68929,6619,"[""Headphones""]",1247.14,"{""seasonal"": ""9%""}",196029,1,North America +2023-04-23,68930,104,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3445.99,{},236372,0,Africa +2023-11-04,68931,4867,"[""Phone"", ""Headphones"", ""Laptop""]",966.18,"{""promo"": ""7%""}",219369,1,South America +2023-10-08,68932,8002,"[""Laptop"", ""Monitor""]",1058.46,{},37904,1,Europe +2024-08-22,68933,3881,"[""Keyboard"", ""Phone""]",2626.08,{},205503,1,Asia +2023-02-17,68934,1221,"[""Wireless Mouse""]",1780.77,"{""loyalty"": ""9%""}",72760,0,North America +2024-09-02,68935,7183,"[""Charger""]",1974.97,{},184711,0,Europe +2023-05-08,68936,5593,"[""Headphones""]",3207.49,{},127970,1,South America +2024-10-09,68937,4727,"[""Wireless Mouse""]",2851.29,"{""promo"": ""9%""}",42194,0,Asia +2023-05-03,68938,6845,"[""Laptop""]",2154.96,"{""seasonal"": ""23%""}",282819,0,Asia +2023-02-26,68939,3773,"[""Phone"", ""Charger""]",3464.49,{},207469,1,Europe +2023-06-04,68940,7130,"[""Monitor"", ""Headphones"", ""Charger""]",776.53,"{"""": ""5%""}",10691,0,South America +2024-04-30,68941,5370,"[""Wireless Mouse"", ""Laptop""]",4643.24,"{""seasonal"": ""25%""}",297669,0,North America +2023-06-28,68942,7065,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3075.8,"{"""": ""29%""}",125142,1,South America +2024-09-30,68943,3531,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",202.97,{},289572,1,North America +2024-05-31,68944,7436,"[""Monitor""]",1050.96,{},260282,1,North America +2023-04-24,68945,8586,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1927.37,"{"""": ""17%""}",82810,1,Africa +2023-09-13,68946,1112,"[""Headphones""]",1235.06,{},130142,0,Europe +2024-05-18,68947,8859,"[""Phone""]",1202.1,"{"""": ""30%""}",213119,1,North America +2024-04-29,68948,4767,"[""Phone"", ""Tablet""]",3730.23,{},144421,0,South America +2023-03-17,68949,5955,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4655.93,{},213436,0,South America +2023-11-28,68950,6497,"[""Headphones"", ""Phone"", ""Monitor""]",59.97,"{""loyalty"": ""6%""}",82615,0,Asia +2023-05-13,68951,2201,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",534.68,{},31828,1,South America +2023-09-06,68952,8498,"[""Monitor"", ""Charger""]",331.4,"{""promo"": ""9%""}",178257,0,South America +2024-09-10,68953,8783,"[""Monitor""]",2137.05,{},43045,1,Europe +2024-11-20,68954,6109,"[""Wireless Mouse""]",4158.62,"{"""": ""16%""}",39621,0,Africa +2024-09-29,68955,5950,"[""Monitor"", ""Charger""]",2087.15,{},2746,0,Africa +2023-12-07,68956,2522,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1232.07,"{""loyalty"": ""24%""}",277409,1,Asia +2024-10-05,68957,7019,"[""Phone"", ""Charger""]",3073.09,{},114961,1,Asia +2023-03-23,68958,7047,"[""Monitor""]",1400.91,{},49481,0,Africa +2023-07-08,68959,9052,"[""Phone"", ""Laptop""]",2640.07,"{"""": ""7%""}",218941,1,Europe +2024-08-13,68960,7872,"[""Monitor"", ""Headphones"", ""Charger""]",4806.53,{},10885,0,Asia +2023-10-01,68961,6867,"[""Phone"", ""Keyboard"", ""Monitor""]",2630.53,{},139178,0,South America +2023-06-24,68962,1822,"[""Headphones""]",266.04,"{"""": ""22%""}",8313,1,Europe +2023-04-30,68963,194,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2600.32,{},214559,0,Europe +2023-10-07,68964,7200,"[""Tablet"", ""Phone""]",4694.44,{},226978,0,Europe +2023-12-01,68965,5847,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1099.67,{},170310,1,Africa +2024-05-22,68966,6248,"[""Charger""]",1462.22,{},65228,1,Africa +2023-07-05,68967,9607,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2824.36,{},155091,1,Europe +2023-08-03,68968,9621,"[""Headphones"", ""Monitor""]",558.08,{},27321,0,South America +2024-06-14,68969,5699,"[""Tablet"", ""Charger"", ""Monitor""]",2573.22,"{"""": ""22%""}",226713,1,Africa +2024-01-08,68970,6001,"[""Keyboard"", ""Monitor""]",2098.13,{},252402,1,Africa +2023-11-13,68971,3770,"[""Laptop"", ""Keyboard"", ""Headphones""]",3375.57,"{""promo"": ""9%""}",224910,0,Europe +2023-07-12,68972,8331,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2275.31,{},19132,1,South America +2023-01-15,68973,1010,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4460.7,"{""seasonal"": ""10%""}",64786,1,Europe +2023-05-10,68974,7776,"[""Monitor""]",1596.71,{},115518,1,North America +2024-06-24,68975,2522,"[""Phone"", ""Headphones"", ""Keyboard""]",722.45,"{""seasonal"": ""26%""}",111971,1,Africa +2023-05-01,68976,3743,"[""Wireless Mouse""]",3769.36,{},114439,0,North America +2023-12-17,68977,962,"[""Headphones""]",2724.07,"{""loyalty"": ""8%""}",223900,1,Europe +2024-06-30,68978,8272,"[""Tablet"", ""Laptop""]",1576.93,{},190702,0,Asia +2023-09-15,68979,9359,"[""Keyboard""]",2154.32,"{""promo"": ""23%""}",17619,0,Asia +2023-01-30,68980,8042,"[""Wireless Mouse"", ""Charger""]",3662.37,"{""seasonal"": ""30%""}",105938,0,Asia +2024-11-23,68981,7202,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",562.45,{},235401,0,North America +2023-01-26,68982,8223,"[""Phone"", ""Headphones""]",4070.98,{},262697,0,Europe +2024-07-05,68983,2520,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",375.75,{},146356,0,Asia +2024-03-09,68984,7647,"[""Wireless Mouse""]",154.96,"{"""": ""22%""}",220141,0,South America +2023-07-12,68985,9798,"[""Laptop"", ""Tablet""]",2635.21,"{""promo"": ""21%""}",282623,0,Europe +2024-04-03,68986,835,"[""Headphones"", ""Keyboard"", ""Laptop""]",3811.27,{},202567,1,South America +2024-01-04,68987,7454,"[""Phone"", ""Laptop""]",1948.87,"{""seasonal"": ""13%""}",10286,0,Asia +2023-02-16,68988,2876,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2396.55,"{""promo"": ""7%""}",240602,1,Africa +2023-06-14,68989,7183,"[""Tablet""]",3103.93,{},253501,0,Africa +2023-09-28,68990,1407,"[""Laptop"", ""Charger""]",4072.17,"{""loyalty"": ""5%""}",114118,0,North America +2023-12-22,68991,4998,"[""Charger"", ""Wireless Mouse""]",4302.39,{},49414,1,South America +2023-08-30,68992,8507,"[""Phone"", ""Keyboard""]",1253.99,{},257463,0,Asia +2023-12-15,68993,646,"[""Tablet"", ""Phone""]",2767.07,"{""seasonal"": ""12%""}",162050,0,North America +2023-09-23,68994,489,"[""Wireless Mouse"", ""Phone""]",4475.58,{},194346,1,Europe +2024-10-02,68995,6702,"[""Charger""]",4273.06,{},159827,0,Asia +2024-05-15,68996,9870,"[""Charger"", ""Headphones"", ""Laptop""]",625.29,{},4700,1,North America +2023-05-31,68997,4610,"[""Keyboard"", ""Charger"", ""Laptop""]",2638.63,{},232287,0,Africa +2023-04-21,68998,8191,"[""Tablet""]",1578.33,{},287536,0,Europe +2023-09-27,68999,3122,"[""Laptop"", ""Monitor""]",1417.57,{},236031,1,Africa +2023-02-26,69000,1400,"[""Monitor"", ""Laptop"", ""Phone""]",1043.83,{},75232,1,Europe +2024-12-20,69001,5071,"[""Tablet"", ""Phone""]",1100.65,"{""promo"": ""27%""}",268290,1,Asia +2023-04-22,69002,4668,"[""Laptop"", ""Tablet""]",3544.56,{},225585,0,North America +2024-03-29,69003,5295,"[""Keyboard"", ""Charger""]",307.31,"{""promo"": ""24%""}",73257,0,North America +2023-07-27,69004,9739,"[""Headphones"", ""Tablet""]",737.8,"{""loyalty"": ""19%""}",108478,0,Africa +2024-08-31,69005,1147,"[""Monitor"", ""Wireless Mouse""]",1418.43,"{""loyalty"": ""8%""}",158482,1,South America +2024-09-20,69006,2172,"[""Monitor""]",2597.5,"{""loyalty"": ""28%""}",209157,1,Africa +2024-11-05,69007,6600,"[""Headphones""]",3461.6,{},107833,0,Africa +2023-06-28,69008,4312,"[""Monitor"", ""Tablet"", ""Headphones""]",3791.58,{},293157,1,South America +2023-10-22,69009,5688,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2485.05,{},218113,0,South America +2024-03-12,69010,2951,"[""Tablet"", ""Phone""]",4498.46,{},102162,1,North America +2023-07-03,69011,488,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2548.78,{},237253,0,South America +2023-12-10,69012,6187,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",156.42,{},133433,0,South America +2023-07-12,69013,8303,"[""Wireless Mouse""]",68.84,"{""promo"": ""18%""}",228238,0,Africa +2024-06-15,69014,479,"[""Tablet""]",1203.63,"{""seasonal"": ""25%""}",13587,1,Asia +2023-04-30,69015,8680,"[""Tablet""]",2850.44,"{""seasonal"": ""7%""}",21538,1,Africa +2024-07-31,69016,2125,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4025.73,{},163917,1,South America +2023-04-26,69017,819,"[""Keyboard"", ""Laptop"", ""Tablet""]",4995.9,"{"""": ""29%""}",57199,0,Africa +2023-12-28,69018,9015,"[""Wireless Mouse"", ""Monitor""]",3547.47,{},241814,1,Africa +2024-07-25,69019,6846,"[""Headphones""]",2037.06,"{""promo"": ""23%""}",20817,1,Africa +2023-08-28,69020,7390,"[""Laptop"", ""Tablet"", ""Headphones""]",3290.69,"{"""": ""21%""}",32876,0,Europe +2023-06-29,69021,8602,"[""Phone"", ""Keyboard""]",4927.15,{},191304,1,Africa +2023-07-13,69022,1557,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1417.67,"{"""": ""11%""}",293577,1,South America +2024-08-31,69023,9542,"[""Keyboard"", ""Headphones""]",2756.47,{},126796,0,South America +2024-09-28,69024,7783,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2711.73,{},230748,0,Africa +2024-09-02,69025,6234,"[""Monitor""]",424.23,{},297872,0,North America +2024-02-07,69026,6263,"[""Headphones"", ""Monitor""]",868.86,"{"""": ""26%""}",14057,0,Africa +2024-11-22,69027,6047,"[""Phone"", ""Headphones""]",450.22,"{"""": ""6%""}",4526,1,Asia +2024-08-13,69028,1824,"[""Headphones"", ""Laptop""]",1046.5,{},130709,1,Europe +2024-11-26,69029,6851,"[""Monitor""]",4723.65,"{""promo"": ""9%""}",207328,0,Europe +2023-10-22,69030,3753,"[""Keyboard"", ""Headphones""]",1890.82,{},285279,0,South America +2023-04-18,69031,4551,"[""Headphones"", ""Keyboard""]",1246.96,"{""seasonal"": ""24%""}",157979,0,Europe +2023-02-26,69032,9298,"[""Charger"", ""Monitor""]",2460.7,{},49048,0,Europe +2024-02-18,69033,8192,"[""Keyboard"", ""Charger""]",3389.48,"{""loyalty"": ""30%""}",40357,0,Europe +2023-03-29,69034,9290,"[""Charger"", ""Headphones"", ""Laptop""]",2443.05,{},118939,1,Europe +2024-01-31,69035,3082,"[""Keyboard"", ""Tablet""]",4626.38,"{"""": ""11%""}",5000,0,South America +2023-04-08,69036,4670,"[""Keyboard""]",4270.78,"{""promo"": ""24%""}",122680,1,Asia +2024-09-28,69037,331,"[""Headphones"", ""Tablet"", ""Charger""]",2760.9,{},163953,1,South America +2023-11-02,69038,8014,"[""Headphones"", ""Phone"", ""Charger""]",3411.24,{},4147,1,Asia +2023-09-05,69039,394,"[""Laptop"", ""Keyboard"", ""Phone""]",4735.0,"{""seasonal"": ""22%""}",181802,0,Africa +2023-10-01,69040,3916,"[""Tablet"", ""Phone"", ""Laptop""]",4549.67,{},229441,0,South America +2024-03-10,69041,3362,"[""Phone""]",2261.79,{},205292,1,Africa +2023-03-10,69042,1579,"[""Monitor""]",4727.73,"{""promo"": ""30%""}",100581,0,Asia +2024-02-20,69043,9491,"[""Laptop"", ""Charger"", ""Monitor""]",2320.28,"{""promo"": ""16%""}",91241,0,South America +2024-12-06,69044,6993,"[""Wireless Mouse""]",3205.78,"{""seasonal"": ""11%""}",38086,1,Africa +2024-08-06,69045,7699,"[""Keyboard"", ""Tablet""]",491.53,"{""seasonal"": ""19%""}",155051,1,Africa +2023-04-15,69046,3758,"[""Phone"", ""Laptop""]",540.22,"{""loyalty"": ""7%""}",245579,0,North America +2023-11-09,69047,5571,"[""Headphones""]",157.81,{},221064,0,Asia +2023-03-25,69048,2374,"[""Laptop""]",4639.33,{},246350,0,South America +2023-07-19,69049,9658,"[""Charger"", ""Wireless Mouse""]",1170.29,"{""seasonal"": ""8%""}",2589,0,Africa +2024-04-13,69050,6515,"[""Wireless Mouse"", ""Laptop""]",3308.55,{},53292,0,Africa +2023-02-21,69051,3222,"[""Headphones""]",121.94,"{""promo"": ""22%""}",52742,1,South America +2023-06-21,69052,3637,"[""Charger"", ""Tablet"", ""Phone""]",2164.2,{},198160,1,Europe +2024-09-19,69053,1682,"[""Tablet""]",4589.5,"{""promo"": ""15%""}",169186,0,Africa +2023-07-09,69054,5242,"[""Laptop"", ""Charger""]",2327.95,"{""loyalty"": ""17%""}",232199,0,Europe +2023-06-24,69055,6933,"[""Phone"", ""Laptop""]",1880.11,"{""seasonal"": ""19%""}",177999,1,Asia +2023-10-10,69056,5701,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3813.73,"{""promo"": ""27%""}",7847,1,North America +2023-12-29,69057,3044,"[""Keyboard""]",2223.26,"{"""": ""24%""}",205186,0,South America +2023-02-11,69058,4254,"[""Wireless Mouse"", ""Keyboard""]",4036.33,{},29950,0,Africa +2023-10-09,69059,1012,"[""Keyboard"", ""Headphones""]",2586.66,{},170779,0,Europe +2024-04-08,69060,5809,"[""Headphones"", ""Laptop""]",87.19,{},101152,0,North America +2023-12-18,69061,2381,"[""Wireless Mouse"", ""Keyboard""]",4042.3,{},126006,1,Asia +2024-05-08,69062,7793,"[""Keyboard"", ""Monitor"", ""Headphones""]",3642.16,{},58477,1,Europe +2024-10-16,69063,7468,"[""Tablet""]",4166.49,{},2050,1,Africa +2024-02-29,69064,3809,"[""Wireless Mouse"", ""Laptop""]",1033.91,"{""seasonal"": ""17%""}",242235,1,Africa +2023-09-21,69065,5370,"[""Phone""]",4898.1,"{"""": ""25%""}",187891,0,Africa +2023-09-24,69066,8150,"[""Charger""]",1117.54,"{""seasonal"": ""12%""}",155386,0,South America +2024-08-20,69067,4513,"[""Phone"", ""Headphones""]",4980.38,{},67677,0,Africa +2024-04-21,69068,9712,"[""Phone"", ""Charger""]",1958.56,{},265001,0,South America +2023-10-25,69069,6300,"[""Monitor""]",2661.83,{},199280,1,North America +2024-05-04,69070,6484,"[""Tablet"", ""Keyboard""]",2996.04,{},130266,1,South America +2024-05-27,69071,263,"[""Headphones"", ""Phone"", ""Charger""]",867.51,"{""promo"": ""14%""}",207917,0,Europe +2024-09-28,69072,6085,"[""Tablet"", ""Headphones"", ""Monitor""]",435.89,"{""loyalty"": ""11%""}",225081,0,South America +2024-01-05,69073,2103,"[""Keyboard""]",3007.58,"{""loyalty"": ""26%""}",259598,0,North America +2023-01-07,69074,889,"[""Laptop""]",4070.03,"{""promo"": ""22%""}",292922,0,South America +2024-09-22,69075,5704,"[""Charger"", ""Headphones""]",2068.52,{},92442,0,Africa +2023-07-08,69076,8691,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1087.77,{},34889,1,Africa +2024-07-15,69077,1631,"[""Headphones"", ""Charger""]",2201.17,{},106500,0,North America +2023-06-03,69078,4688,"[""Wireless Mouse""]",725.13,"{""loyalty"": ""22%""}",239893,1,Africa +2024-06-29,69079,3084,"[""Tablet"", ""Phone""]",658.07,{},143685,1,Africa +2024-09-09,69080,8054,"[""Keyboard""]",1573.34,"{"""": ""17%""}",102601,0,South America +2023-11-19,69081,8673,"[""Keyboard"", ""Laptop""]",3557.42,"{""loyalty"": ""22%""}",224493,0,Europe +2024-08-13,69082,453,"[""Headphones""]",2746.94,{},218342,1,Europe +2023-04-04,69083,1971,"[""Charger""]",1459.53,{},197249,1,Asia +2024-06-04,69084,3867,"[""Tablet"", ""Wireless Mouse""]",588.03,{},130014,0,South America +2023-09-01,69085,4898,"[""Wireless Mouse"", ""Phone""]",2007.0,{},94455,1,North America +2024-08-21,69086,4391,"[""Keyboard"", ""Charger"", ""Monitor""]",4214.8,"{""loyalty"": ""26%""}",146692,1,Europe +2023-03-11,69087,7689,"[""Phone"", ""Laptop"", ""Tablet""]",1335.96,"{"""": ""29%""}",62350,0,North America +2023-01-20,69088,9721,"[""Phone"", ""Wireless Mouse""]",198.61,{},175684,1,Europe +2024-11-23,69089,835,"[""Monitor"", ""Tablet""]",2405.74,"{""loyalty"": ""12%""}",179783,1,Africa +2023-01-03,69090,491,"[""Monitor"", ""Keyboard""]",2508.3,"{"""": ""21%""}",262803,1,Europe +2023-12-28,69091,4110,"[""Wireless Mouse"", ""Keyboard""]",2300.61,"{""loyalty"": ""12%""}",71005,1,Europe +2024-02-28,69092,102,"[""Wireless Mouse""]",1558.09,{},193784,1,South America +2023-02-03,69093,5251,"[""Wireless Mouse"", ""Monitor""]",2636.05,"{""seasonal"": ""9%""}",241265,1,Europe +2023-08-16,69094,9005,"[""Headphones"", ""Monitor"", ""Phone""]",3032.69,"{""seasonal"": ""11%""}",52978,1,South America +2023-06-06,69095,2209,"[""Wireless Mouse""]",4306.0,"{""promo"": ""21%""}",246236,0,North America +2024-01-14,69096,9670,"[""Charger""]",3687.19,{},254957,0,Asia +2023-04-24,69097,7894,"[""Phone"", ""Keyboard""]",3988.87,{},167064,0,Europe +2023-04-10,69098,4750,"[""Monitor""]",3297.35,{},122788,0,North America +2024-06-01,69099,5966,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1909.55,"{""promo"": ""20%""}",255374,1,Asia +2024-03-21,69100,4349,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1141.74,{},232375,0,Asia +2024-01-08,69101,7482,"[""Laptop"", ""Tablet"", ""Headphones""]",3750.38,{},9448,1,North America +2023-10-04,69102,8153,"[""Tablet"", ""Monitor""]",3293.47,"{"""": ""5%""}",118242,0,Africa +2024-05-31,69103,4082,"[""Laptop""]",4253.33,{},169526,0,South America +2024-04-15,69104,4488,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1613.62,"{""seasonal"": ""29%""}",256070,1,Europe +2023-06-02,69105,7257,"[""Phone"", ""Monitor""]",3417.56,{},190015,0,Asia +2023-02-17,69106,4927,"[""Monitor"", ""Laptop""]",1366.72,"{"""": ""7%""}",258011,0,Asia +2024-06-24,69107,7704,"[""Charger"", ""Headphones"", ""Keyboard""]",3226.4,"{""loyalty"": ""28%""}",214961,0,North America +2024-10-06,69108,8165,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3413.08,"{""loyalty"": ""9%""}",63770,1,Asia +2024-07-08,69109,8472,"[""Monitor"", ""Keyboard""]",275.45,"{""seasonal"": ""19%""}",160965,0,South America +2024-07-04,69110,486,"[""Keyboard"", ""Tablet""]",3030.73,"{"""": ""22%""}",216454,1,Asia +2023-03-29,69111,7706,"[""Keyboard"", ""Tablet"", ""Charger""]",3676.5,"{"""": ""9%""}",163602,1,Europe +2024-08-24,69112,2064,"[""Monitor"", ""Charger"", ""Laptop""]",2446.7,"{""loyalty"": ""7%""}",172400,1,Africa +2024-07-19,69113,7818,"[""Monitor"", ""Tablet"", ""Laptop""]",4889.78,{},238323,0,Europe +2023-03-23,69114,6988,"[""Headphones"", ""Monitor""]",1629.78,"{"""": ""29%""}",212481,1,North America +2023-08-06,69115,2151,"[""Monitor"", ""Charger"", ""Tablet""]",72.81,{},107528,1,Asia +2023-08-16,69116,1363,"[""Laptop"", ""Tablet"", ""Keyboard""]",4739.57,{},58210,0,Africa +2024-08-28,69117,3265,"[""Phone"", ""Laptop""]",2898.78,{},40162,1,Europe +2024-01-20,69118,5952,"[""Charger"", ""Wireless Mouse""]",4673.16,{},268173,0,North America +2023-01-14,69119,6176,"[""Phone"", ""Headphones""]",288.0,"{"""": ""6%""}",13899,1,South America +2023-05-21,69120,5963,"[""Laptop""]",940.53,"{""loyalty"": ""26%""}",15768,1,Africa +2023-03-29,69121,4580,"[""Laptop"", ""Headphones""]",4565.55,{},165184,1,Asia +2023-11-20,69122,8572,"[""Phone"", ""Charger"", ""Tablet""]",3291.97,{},156265,0,Africa +2023-11-20,69123,6507,"[""Tablet"", ""Laptop""]",981.18,{},91946,0,Europe +2024-09-20,69124,6224,"[""Phone""]",3968.02,"{""seasonal"": ""24%""}",47913,1,Europe +2024-12-11,69125,1144,"[""Laptop""]",460.85,{},245952,0,Europe +2023-05-05,69126,26,"[""Keyboard""]",2585.9,"{"""": ""29%""}",126696,1,Asia +2024-11-08,69127,5428,"[""Headphones"", ""Wireless Mouse""]",2101.66,{},100481,0,Europe +2024-05-09,69128,6667,"[""Wireless Mouse""]",4386.91,{},125588,1,Europe +2024-04-02,69129,5711,"[""Keyboard"", ""Headphones"", ""Laptop""]",236.56,"{""promo"": ""11%""}",230982,1,South America +2023-08-09,69130,2330,"[""Keyboard"", ""Tablet""]",2934.28,{},30195,0,Africa +2024-03-14,69131,8127,"[""Monitor"", ""Laptop""]",3607.75,{},141328,1,Africa +2023-01-04,69132,3121,"[""Monitor""]",3350.54,{},258978,1,South America +2024-09-09,69133,4573,"[""Wireless Mouse"", ""Phone""]",2708.31,{},9151,0,Europe +2023-06-05,69134,2671,"[""Laptop"", ""Keyboard""]",1888.25,{},209403,1,Africa +2023-04-10,69135,6688,"[""Headphones"", ""Laptop""]",4544.39,{},193139,1,Europe +2023-10-27,69136,1216,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1787.21,{},277946,0,South America +2024-06-09,69137,1232,"[""Phone""]",4192.75,{},59595,1,Europe +2023-03-26,69138,8766,"[""Laptop"", ""Phone""]",805.1,{},38484,1,Europe +2024-05-09,69139,8217,"[""Headphones"", ""Phone""]",505.73,"{""promo"": ""16%""}",184993,0,Europe +2024-11-18,69140,5960,"[""Monitor"", ""Laptop""]",2237.99,"{""promo"": ""29%""}",281232,1,Asia +2023-11-11,69141,7523,"[""Tablet"", ""Phone"", ""Laptop""]",3216.55,"{""promo"": ""27%""}",299726,1,Africa +2023-09-17,69142,1155,"[""Headphones"", ""Monitor""]",156.42,"{""seasonal"": ""13%""}",192871,0,Africa +2023-12-06,69143,8790,"[""Phone""]",1438.88,"{""loyalty"": ""23%""}",122311,1,South America +2024-05-03,69144,4561,"[""Phone"", ""Charger"", ""Laptop""]",4364.97,{},67351,0,Europe +2023-05-05,69145,5315,"[""Monitor"", ""Charger""]",1268.58,"{""promo"": ""22%""}",279446,1,South America +2023-02-10,69146,7587,"[""Headphones""]",1422.91,"{""loyalty"": ""19%""}",147822,1,Europe +2024-07-02,69147,3539,"[""Tablet"", ""Keyboard""]",1680.85,"{""seasonal"": ""25%""}",86028,0,Europe +2024-07-17,69148,9420,"[""Charger"", ""Headphones""]",2933.93,"{""seasonal"": ""5%""}",132383,1,Europe +2024-12-24,69149,6281,"[""Headphones""]",1023.43,"{""promo"": ""26%""}",9242,0,South America +2024-04-27,69150,2634,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4517.46,{},52367,0,North America +2023-02-24,69151,2613,"[""Tablet"", ""Phone"", ""Monitor""]",1827.07,"{"""": ""25%""}",57098,1,Asia +2024-02-02,69152,3567,"[""Wireless Mouse""]",235.55,"{""promo"": ""27%""}",214591,0,South America +2023-08-16,69153,3947,"[""Laptop"", ""Tablet"", ""Charger""]",877.46,{},126200,0,Asia +2023-12-12,69154,9943,"[""Charger"", ""Monitor""]",1904.89,{},226301,1,North America +2023-06-02,69155,6035,"[""Monitor""]",4732.77,{},58163,0,Europe +2024-01-31,69156,582,"[""Wireless Mouse""]",3185.47,{},44797,1,Africa +2024-09-30,69157,4366,"[""Monitor""]",1386.15,{},64009,1,Asia +2024-12-19,69158,8619,"[""Monitor"", ""Phone"", ""Charger""]",761.4,"{""promo"": ""17%""}",108534,1,South America +2023-02-02,69159,3505,"[""Phone""]",1025.07,{},57664,0,South America +2023-03-10,69160,2354,"[""Tablet"", ""Laptop"", ""Monitor""]",391.1,"{""promo"": ""21%""}",31296,1,North America +2024-06-01,69161,8890,"[""Laptop"", ""Monitor""]",1833.6,"{""promo"": ""20%""}",177641,0,South America +2023-09-05,69162,4212,"[""Keyboard""]",4751.66,{},180921,0,North America +2023-06-22,69163,4709,"[""Headphones"", ""Monitor""]",1445.75,{},42084,0,Africa +2024-07-31,69164,8823,"[""Charger"", ""Monitor""]",3836.94,"{""promo"": ""21%""}",60589,1,South America +2023-04-22,69165,2398,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2966.5,"{""seasonal"": ""16%""}",108828,0,Asia +2024-10-12,69166,9732,"[""Charger"", ""Keyboard""]",3348.8,{},138893,0,Asia +2023-02-04,69167,3786,"[""Keyboard"", ""Phone"", ""Headphones""]",83.86,"{""loyalty"": ""20%""}",16881,1,North America +2024-05-24,69168,6877,"[""Keyboard"", ""Laptop""]",273.52,{},32295,1,Africa +2024-08-15,69169,2540,"[""Tablet"", ""Headphones""]",659.12,"{"""": ""17%""}",83362,1,South America +2024-09-24,69170,8835,"[""Headphones"", ""Laptop""]",1662.42,"{"""": ""6%""}",26780,0,Africa +2023-05-13,69171,817,"[""Keyboard""]",3497.75,{},298928,1,Europe +2024-09-21,69172,8748,"[""Headphones"", ""Keyboard"", ""Laptop""]",4560.98,"{"""": ""21%""}",53571,1,Africa +2023-11-19,69173,5183,"[""Tablet""]",4395.69,{},237797,0,Europe +2024-12-09,69174,1981,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3527.72,{},122817,1,Africa +2023-02-19,69175,5067,"[""Laptop"", ""Monitor""]",908.45,"{""seasonal"": ""26%""}",59844,0,North America +2023-08-03,69176,4876,"[""Phone""]",1362.99,"{"""": ""20%""}",183708,0,Asia +2024-03-07,69177,1416,"[""Tablet"", ""Charger"", ""Monitor""]",2477.27,"{""loyalty"": ""18%""}",190083,1,South America +2023-10-29,69178,8712,"[""Charger"", ""Monitor""]",536.39,"{""loyalty"": ""5%""}",275956,1,North America +2024-03-19,69179,161,"[""Keyboard"", ""Charger""]",1858.34,"{"""": ""8%""}",259932,1,Asia +2024-03-15,69180,3175,"[""Tablet"", ""Charger""]",1668.67,"{""loyalty"": ""5%""}",273787,1,South America +2023-11-13,69181,5728,"[""Laptop""]",2050.95,{},256033,0,Africa +2023-09-09,69182,3070,"[""Phone"", ""Laptop""]",4533.99,"{""promo"": ""29%""}",38029,1,South America +2023-02-27,69183,1222,"[""Tablet""]",476.5,{},287503,0,Europe +2023-03-01,69184,3106,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2813.74,{},168248,1,North America +2024-12-07,69185,5166,"[""Wireless Mouse""]",2161.72,{},36722,1,South America +2024-01-19,69186,797,"[""Keyboard""]",3173.37,{},51245,1,Asia +2023-07-12,69187,8613,"[""Phone"", ""Charger""]",4890.76,"{""seasonal"": ""16%""}",10370,1,South America +2023-01-12,69188,7699,"[""Headphones""]",3191.54,{},176784,1,North America +2023-05-26,69189,1466,"[""Monitor"", ""Tablet""]",4023.57,{},290597,1,Asia +2023-11-26,69190,2539,"[""Laptop"", ""Headphones"", ""Phone""]",3577.4,{},226606,0,South America +2023-09-27,69191,7984,"[""Wireless Mouse""]",2653.14,{},89463,0,Europe +2024-05-29,69192,6775,"[""Monitor"", ""Headphones"", ""Charger""]",1830.29,{},179204,0,South America +2023-06-30,69193,753,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1990.55,"{"""": ""11%""}",14982,1,South America +2023-03-18,69194,6222,"[""Charger""]",4242.77,"{"""": ""6%""}",59952,1,North America +2024-07-10,69195,7454,"[""Tablet""]",4621.85,"{""loyalty"": ""17%""}",17983,1,North America +2023-02-27,69196,5224,"[""Headphones""]",4295.05,"{""seasonal"": ""11%""}",204481,1,North America +2024-07-29,69197,8556,"[""Phone"", ""Charger""]",4671.32,"{"""": ""28%""}",239761,1,Europe +2023-03-09,69198,7597,"[""Laptop""]",3468.04,{},93981,1,South America +2024-01-22,69199,7418,"[""Laptop"", ""Keyboard""]",2081.52,"{""loyalty"": ""11%""}",284586,1,Asia +2023-08-07,69200,2249,"[""Monitor"", ""Charger""]",866.1,{},264410,1,Europe +2023-07-08,69201,2650,"[""Laptop"", ""Charger""]",350.77,{},112685,0,North America +2023-07-30,69202,8951,"[""Tablet"", ""Headphones""]",3909.58,"{""seasonal"": ""17%""}",130980,0,Europe +2023-03-06,69203,8130,"[""Wireless Mouse"", ""Monitor""]",3927.08,{},155721,1,North America +2023-05-24,69204,7979,"[""Headphones""]",3879.28,{},143777,1,Europe +2024-05-24,69205,6395,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",362.9,{},153664,1,South America +2023-07-07,69206,2989,"[""Phone""]",640.77,{},24294,1,South America +2023-05-19,69207,4720,"[""Monitor"", ""Phone""]",4694.79,{},183156,1,Asia +2024-03-11,69208,1344,"[""Headphones""]",3052.36,{},268681,0,Asia +2023-11-14,69209,7863,"[""Tablet"", ""Charger""]",3169.54,{},121490,0,South America +2024-11-16,69210,2813,"[""Keyboard""]",298.3,"{""seasonal"": ""6%""}",294888,0,Asia +2023-02-16,69211,6816,"[""Tablet"", ""Monitor""]",1788.56,"{""seasonal"": ""19%""}",165513,0,Asia +2024-01-01,69212,8186,"[""Keyboard"", ""Charger"", ""Tablet""]",2471.74,{},137097,1,Europe +2023-11-08,69213,8446,"[""Keyboard""]",3605.74,"{""promo"": ""15%""}",44094,1,Europe +2023-01-24,69214,477,"[""Headphones""]",3552.45,"{""seasonal"": ""17%""}",201426,0,Asia +2023-04-07,69215,8086,"[""Phone"", ""Tablet"", ""Keyboard""]",1030.49,"{""seasonal"": ""16%""}",63090,1,Africa +2023-10-11,69216,948,"[""Phone"", ""Charger"", ""Laptop""]",4792.14,{},131821,1,Asia +2024-05-29,69217,4623,"[""Keyboard"", ""Monitor"", ""Tablet""]",2670.44,{},174455,0,Africa +2023-06-21,69218,5804,"[""Laptop"", ""Tablet"", ""Headphones""]",2173.8,"{""promo"": ""11%""}",66207,0,North America +2024-04-03,69219,1208,"[""Wireless Mouse"", ""Laptop""]",896.24,"{""seasonal"": ""7%""}",282864,1,South America +2024-10-11,69220,1709,"[""Keyboard""]",2660.08,{},284685,0,Europe +2023-07-19,69221,9212,"[""Keyboard"", ""Headphones"", ""Tablet""]",762.78,{},131291,0,South America +2024-02-03,69222,2482,"[""Tablet"", ""Monitor""]",3768.2,{},163388,1,Europe +2024-09-30,69223,1414,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",368.0,{},292872,0,Africa +2023-09-03,69224,6115,"[""Tablet"", ""Monitor"", ""Laptop""]",948.51,"{"""": ""7%""}",183045,1,North America +2024-02-26,69225,6582,"[""Phone""]",4559.13,"{""promo"": ""24%""}",274373,0,Europe +2023-09-18,69226,5809,"[""Monitor""]",2262.66,"{""loyalty"": ""16%""}",242155,1,North America +2024-02-27,69227,3548,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4213.89,"{""promo"": ""12%""}",84618,0,North America +2023-01-05,69228,296,"[""Charger"", ""Phone""]",3088.48,"{"""": ""7%""}",241684,0,Europe +2024-05-06,69229,6237,"[""Keyboard"", ""Phone""]",1027.67,{},81532,1,Asia +2024-10-09,69230,5933,"[""Monitor"", ""Tablet""]",3774.27,{},188481,1,Europe +2024-10-12,69231,3930,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1015.0,"{""promo"": ""17%""}",92125,0,Asia +2023-09-18,69232,6011,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3688.77,{},165446,0,South America +2024-04-30,69233,1278,"[""Charger""]",321.33,{},218800,0,North America +2023-11-16,69234,5151,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1171.32,"{"""": ""12%""}",105792,0,Europe +2024-08-27,69235,5689,"[""Wireless Mouse"", ""Phone""]",4063.72,"{""loyalty"": ""14%""}",238619,1,Asia +2024-11-19,69236,6337,"[""Keyboard""]",3542.92,"{""loyalty"": ""21%""}",223753,0,Africa +2023-08-05,69237,8070,"[""Laptop"", ""Wireless Mouse""]",2880.56,"{""seasonal"": ""7%""}",50006,1,Asia +2023-05-09,69238,9870,"[""Headphones""]",3169.71,{},115565,0,North America +2024-01-30,69239,1924,"[""Laptop""]",3687.27,"{""seasonal"": ""28%""}",23148,0,Asia +2024-08-08,69240,2633,"[""Laptop""]",3455.93,{},96786,0,Europe +2024-09-29,69241,5021,"[""Charger"", ""Tablet""]",2514.16,"{""promo"": ""13%""}",142343,1,Africa +2024-06-14,69242,9080,"[""Headphones""]",441.03,"{""loyalty"": ""12%""}",290380,0,Asia +2023-08-28,69243,6290,"[""Headphones""]",4638.62,{},126113,0,Africa +2023-01-19,69244,8198,"[""Charger"", ""Headphones""]",808.53,{},69115,1,Europe +2024-03-26,69245,9507,"[""Phone""]",215.42,{},68413,0,Asia +2024-01-28,69246,9067,"[""Laptop"", ""Phone""]",672.39,{},168972,0,Europe +2024-10-09,69247,5177,"[""Charger""]",4697.92,"{""seasonal"": ""19%""}",140554,0,Asia +2024-11-16,69248,2136,"[""Tablet"", ""Keyboard"", ""Laptop""]",1640.27,"{""loyalty"": ""22%""}",250022,1,Europe +2023-04-03,69249,3968,"[""Headphones""]",469.97,{},130944,0,Africa +2024-12-06,69250,3262,"[""Headphones"", ""Wireless Mouse""]",1702.99,"{""loyalty"": ""17%""}",202798,1,South America +2023-01-09,69251,8595,"[""Monitor"", ""Headphones""]",53.35,{},206167,0,Europe +2023-12-09,69252,9141,"[""Monitor"", ""Charger""]",3053.24,{},119011,1,Africa +2024-02-18,69253,5930,"[""Charger""]",2019.99,"{""seasonal"": ""16%""}",292064,0,North America +2024-10-07,69254,8557,"[""Monitor""]",4261.94,"{"""": ""6%""}",213571,0,Europe +2023-06-29,69255,9977,"[""Keyboard"", ""Headphones"", ""Monitor""]",4943.59,{},254946,0,South America +2024-09-23,69256,5912,"[""Keyboard"", ""Wireless Mouse""]",1661.35,{},37877,1,North America +2024-02-29,69257,6977,"[""Tablet""]",1490.78,{},29093,0,Asia +2024-10-03,69258,5811,"[""Wireless Mouse"", ""Headphones""]",4754.08,"{""seasonal"": ""17%""}",211551,0,Africa +2023-09-27,69259,1921,"[""Headphones""]",3191.56,"{""seasonal"": ""23%""}",130858,1,North America +2024-10-04,69260,9994,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1735.4,"{""promo"": ""17%""}",126384,1,Africa +2024-08-28,69261,7145,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1228.72,"{"""": ""23%""}",62442,1,Europe +2023-02-23,69262,6969,"[""Wireless Mouse""]",719.07,{},9624,0,Africa +2023-05-18,69263,1474,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3879.91,"{"""": ""20%""}",291424,1,Europe +2023-06-29,69264,5491,"[""Headphones""]",3389.23,"{"""": ""24%""}",291585,0,Africa +2023-04-06,69265,1899,"[""Laptop"", ""Charger"", ""Tablet""]",2716.97,"{"""": ""11%""}",261064,1,Europe +2024-09-06,69266,1777,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1229.18,"{""loyalty"": ""11%""}",296158,0,South America +2024-08-29,69267,1077,"[""Wireless Mouse"", ""Keyboard""]",2150.81,{},221258,0,Africa +2023-11-24,69268,5999,"[""Tablet""]",82.57,"{""loyalty"": ""14%""}",113694,1,North America +2023-08-25,69269,7242,"[""Laptop"", ""Tablet""]",271.52,"{""loyalty"": ""29%""}",247850,1,South America +2024-09-21,69270,9196,"[""Headphones"", ""Tablet""]",4451.83,{},38652,0,Asia +2024-07-01,69271,6651,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2409.07,{},48587,1,North America +2023-01-02,69272,902,"[""Charger"", ""Headphones""]",2041.99,"{""seasonal"": ""19%""}",125708,0,Asia +2024-06-02,69273,2459,"[""Wireless Mouse"", ""Phone""]",107.35,{},255928,1,Asia +2024-11-27,69274,1923,"[""Charger"", ""Phone""]",1100.35,"{""seasonal"": ""16%""}",106797,1,Europe +2023-08-26,69275,5542,"[""Phone"", ""Tablet""]",598.05,{},136386,0,Africa +2023-05-31,69276,6727,"[""Laptop""]",3151.03,"{""loyalty"": ""10%""}",160989,0,South America +2023-05-02,69277,4097,"[""Headphones""]",4955.6,"{"""": ""27%""}",121061,0,Africa +2023-11-02,69278,946,"[""Laptop"", ""Tablet""]",2692.52,{},102688,0,North America +2024-04-01,69279,6772,"[""Charger"", ""Tablet""]",2648.06,"{""loyalty"": ""12%""}",266892,1,Africa +2024-06-13,69280,5094,"[""Wireless Mouse"", ""Phone""]",2550.87,"{""promo"": ""16%""}",295219,1,South America +2023-02-07,69281,4208,"[""Monitor"", ""Headphones""]",442.01,"{""promo"": ""5%""}",25359,1,Africa +2023-10-30,69282,5600,"[""Tablet""]",919.23,{},87821,0,North America +2024-07-11,69283,333,"[""Charger"", ""Keyboard""]",4854.8,{},226043,0,Asia +2024-09-04,69284,9672,"[""Headphones""]",370.5,{},23366,0,Asia +2023-06-27,69285,4104,"[""Wireless Mouse""]",2597.23,{},264350,0,Africa +2023-10-26,69286,3540,"[""Headphones"", ""Laptop"", ""Phone""]",2443.71,{},78987,1,Europe +2024-01-01,69287,587,"[""Wireless Mouse"", ""Tablet""]",2858.65,{},222809,1,Europe +2024-02-28,69288,2615,"[""Monitor""]",1129.2,"{""loyalty"": ""14%""}",207754,1,North America +2024-10-12,69289,5325,"[""Monitor"", ""Phone"", ""Keyboard""]",4658.21,"{""promo"": ""17%""}",224085,0,Europe +2024-06-23,69290,8506,"[""Monitor"", ""Phone"", ""Keyboard""]",4210.14,"{""loyalty"": ""6%""}",235554,0,North America +2024-06-07,69291,5850,"[""Phone""]",2255.37,{},151157,1,Africa +2024-09-05,69292,463,"[""Headphones""]",4383.36,"{""promo"": ""20%""}",91501,0,North America +2024-01-25,69293,8576,"[""Laptop"", ""Phone"", ""Charger""]",3180.28,"{""seasonal"": ""17%""}",29863,0,North America +2024-09-30,69294,2669,"[""Wireless Mouse""]",4964.87,"{"""": ""29%""}",206927,0,Africa +2023-02-14,69295,5285,"[""Wireless Mouse"", ""Phone""]",1412.0,{},123440,0,Asia +2023-02-15,69296,2666,"[""Tablet"", ""Charger""]",4063.71,{},118910,1,Asia +2023-08-22,69297,9229,"[""Laptop""]",3918.87,{},149558,1,Europe +2023-04-17,69298,2014,"[""Charger"", ""Tablet"", ""Keyboard""]",4091.56,{},176493,0,Asia +2023-12-13,69299,1360,"[""Monitor"", ""Wireless Mouse""]",1199.78,{},248530,0,North America +2023-10-05,69300,3522,"[""Keyboard""]",2383.84,"{""promo"": ""20%""}",229032,1,North America +2023-08-07,69301,5824,"[""Charger"", ""Laptop""]",4389.61,{},90752,1,Europe +2023-01-10,69302,322,"[""Tablet""]",84.22,{},211112,0,North America +2024-09-17,69303,2156,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3494.47,{},232029,1,North America +2023-02-27,69304,6222,"[""Laptop"", ""Wireless Mouse""]",2282.85,"{""promo"": ""27%""}",119308,0,North America +2024-08-31,69305,3804,"[""Headphones"", ""Laptop""]",2492.36,{},220968,1,North America +2024-08-27,69306,9255,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3359.1,"{""loyalty"": ""17%""}",232582,0,South America +2023-02-07,69307,8159,"[""Monitor"", ""Charger""]",3511.25,"{""seasonal"": ""10%""}",136541,1,Asia +2023-09-24,69308,4022,"[""Phone"", ""Monitor"", ""Charger""]",1968.13,{},246932,1,North America +2024-09-19,69309,2662,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",1282.76,{},185582,0,Europe +2024-10-11,69310,3366,"[""Wireless Mouse""]",2216.65,{},196396,0,Asia +2023-05-20,69311,8778,"[""Monitor"", ""Phone""]",2146.05,"{"""": ""27%""}",214997,1,Africa +2024-01-16,69312,644,"[""Monitor""]",4790.82,{},75324,0,Africa +2024-08-22,69313,6224,"[""Phone""]",2672.9,{},212250,0,Africa +2023-02-19,69314,3860,"[""Wireless Mouse""]",1645.61,"{""loyalty"": ""19%""}",199580,1,Asia +2024-08-17,69315,2020,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",985.29,{},222898,0,North America +2023-02-11,69316,539,"[""Laptop"", ""Phone""]",2693.13,"{""promo"": ""9%""}",4672,1,North America +2023-12-13,69317,1602,"[""Keyboard""]",4632.98,"{""loyalty"": ""22%""}",97938,0,North America +2023-02-13,69318,156,"[""Charger"", ""Laptop""]",951.85,{},225256,0,Europe +2024-09-04,69319,6102,"[""Keyboard"", ""Charger""]",4229.84,{},176869,1,Asia +2023-07-25,69320,2641,"[""Laptop"", ""Wireless Mouse""]",3957.6,{},282136,0,Europe +2024-09-21,69321,7983,"[""Phone""]",4692.44,{},158674,1,South America +2024-11-16,69322,9138,"[""Headphones"", ""Laptop"", ""Charger""]",462.28,{},58510,0,Africa +2023-10-11,69323,4395,"[""Monitor"", ""Laptop"", ""Tablet""]",4264.9,{},51654,0,South America +2024-01-28,69324,6750,"[""Phone"", ""Headphones""]",909.99,{},166963,1,Africa +2023-09-30,69325,4124,"[""Laptop""]",2350.41,{},241214,1,Asia +2024-03-07,69326,6988,"[""Charger""]",4917.41,{},158994,0,Africa +2024-12-03,69327,7051,"[""Charger""]",836.06,{},149563,0,Asia +2024-11-20,69328,3736,"[""Tablet"", ""Monitor""]",4583.9,{},33469,1,Africa +2023-12-17,69329,3966,"[""Headphones"", ""Keyboard""]",1043.15,{},11276,1,South America +2024-01-13,69330,8380,"[""Wireless Mouse"", ""Headphones""]",4859.57,"{""seasonal"": ""25%""}",4031,1,Asia +2023-06-22,69331,4935,"[""Phone"", ""Laptop""]",1093.22,{},282391,0,Africa +2023-03-30,69332,7410,"[""Charger""]",1820.37,"{""seasonal"": ""22%""}",258549,1,Asia +2023-10-15,69333,2855,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3775.55,"{""loyalty"": ""18%""}",261342,1,North America +2024-11-20,69334,4429,"[""Monitor"", ""Laptop""]",1312.58,"{""seasonal"": ""8%""}",294055,1,Asia +2024-05-11,69335,9508,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4120.17,{},13066,0,Asia +2024-11-27,69336,4998,"[""Keyboard"", ""Phone""]",4098.14,{},122996,0,Europe +2024-08-25,69337,4920,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2530.74,{},9613,1,Africa +2024-08-09,69338,7300,"[""Tablet""]",2998.77,{},195053,0,Europe +2024-06-11,69339,1384,"[""Laptop""]",818.3,{},229157,0,Asia +2024-07-17,69340,3411,"[""Monitor"", ""Wireless Mouse""]",1362.32,"{""loyalty"": ""18%""}",201245,0,North America +2023-01-31,69341,1763,"[""Phone""]",1484.68,"{""promo"": ""8%""}",119961,0,Europe +2024-10-27,69342,7215,"[""Wireless Mouse"", ""Laptop""]",2910.49,"{""seasonal"": ""19%""}",134179,0,North America +2024-08-14,69343,883,"[""Headphones"", ""Laptop"", ""Tablet""]",4892.88,"{""promo"": ""21%""}",113448,1,Asia +2024-02-10,69344,8718,"[""Keyboard""]",2886.15,{},254241,0,North America +2024-06-25,69345,9674,"[""Headphones""]",1228.63,"{"""": ""27%""}",252842,1,Asia +2023-09-13,69346,4515,"[""Monitor"", ""Charger""]",572.77,"{"""": ""11%""}",10720,1,Europe +2023-12-07,69347,6369,"[""Headphones"", ""Keyboard"", ""Tablet""]",4675.07,{},82346,0,Europe +2024-11-30,69348,6157,"[""Keyboard""]",1519.09,"{"""": ""30%""}",85174,0,North America +2024-05-14,69349,2772,"[""Headphones"", ""Keyboard""]",4117.19,{},283338,1,South America +2023-03-13,69350,7204,"[""Charger"", ""Phone"", ""Monitor""]",2608.17,{},236118,1,South America +2024-01-08,69351,5576,"[""Phone""]",900.95,{},96590,1,Africa +2024-06-22,69352,379,"[""Tablet"", ""Monitor"", ""Keyboard""]",1152.35,"{"""": ""19%""}",64698,0,Europe +2024-04-17,69353,7605,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3823.96,"{"""": ""25%""}",137620,1,Asia +2024-03-29,69354,3598,"[""Charger"", ""Monitor"", ""Tablet""]",3049.87,"{""loyalty"": ""16%""}",138739,0,Asia +2023-04-26,69355,6904,"[""Laptop""]",2432.47,{},64966,1,Europe +2023-08-05,69356,3975,"[""Laptop"", ""Charger"", ""Keyboard""]",2673.54,{},182430,1,Africa +2023-05-18,69357,3650,"[""Monitor"", ""Keyboard""]",1022.16,{},95783,0,Africa +2024-04-04,69358,5896,"[""Charger"", ""Headphones"", ""Monitor""]",4908.96,"{""seasonal"": ""23%""}",208619,0,Africa +2023-06-01,69359,8864,"[""Laptop"", ""Charger"", ""Keyboard""]",4227.28,{},36422,0,North America +2023-01-14,69360,2805,"[""Headphones"", ""Laptop""]",2118.76,"{""loyalty"": ""20%""}",153429,0,North America +2024-08-07,69361,3833,"[""Keyboard"", ""Headphones""]",2912.48,{},19103,1,North America +2024-10-08,69362,9489,"[""Phone""]",866.07,"{""promo"": ""22%""}",171525,1,Asia +2023-08-06,69363,1514,"[""Phone""]",4099.83,{},50833,0,Asia +2023-07-22,69364,1664,"[""Headphones"", ""Tablet""]",4923.99,{},287164,0,Africa +2023-11-06,69365,2975,"[""Headphones"", ""Charger""]",1355.79,{},15923,0,North America +2024-04-30,69366,7930,"[""Tablet""]",441.81,{},89663,1,Asia +2023-08-03,69367,9221,"[""Laptop"", ""Wireless Mouse""]",1323.11,{},139714,1,Asia +2023-12-04,69368,5548,"[""Headphones""]",4550.56,{},23511,1,South America +2024-03-17,69369,6254,"[""Monitor"", ""Charger"", ""Phone""]",4356.33,{},278107,1,South America +2023-12-21,69370,5375,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2989.95,"{"""": ""18%""}",5819,1,Asia +2024-09-16,69371,9885,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3248.95,"{"""": ""16%""}",114036,0,South America +2024-02-28,69372,9317,"[""Phone""]",2000.89,{},6166,1,South America +2024-10-25,69373,7236,"[""Headphones""]",3839.96,{},107912,1,Europe +2024-08-06,69374,1555,"[""Laptop"", ""Tablet"", ""Monitor""]",1500.31,{},178792,1,South America +2023-09-10,69375,9293,"[""Laptop"", ""Headphones"", ""Monitor""]",3308.64,{},287287,1,South America +2023-08-23,69376,7048,"[""Tablet"", ""Keyboard"", ""Phone""]",2769.31,"{""promo"": ""7%""}",56888,0,Asia +2024-10-04,69377,8756,"[""Charger""]",3261.29,"{""promo"": ""25%""}",256410,0,North America +2024-02-25,69378,5323,"[""Headphones""]",224.81,"{""loyalty"": ""20%""}",256013,1,North America +2024-06-24,69379,7872,"[""Phone"", ""Keyboard""]",4374.72,{},161690,1,Africa +2023-04-30,69380,2255,"[""Tablet""]",62.32,"{""loyalty"": ""10%""}",143211,0,North America +2024-04-17,69381,2601,"[""Phone""]",3934.51,{},106343,1,South America +2023-10-06,69382,513,"[""Laptop"", ""Monitor"", ""Phone""]",691.84,"{""promo"": ""6%""}",236400,0,North America +2024-01-30,69383,7911,"[""Monitor"", ""Wireless Mouse""]",906.06,"{"""": ""27%""}",79375,1,South America +2024-11-09,69384,3713,"[""Tablet"", ""Keyboard""]",4554.71,"{"""": ""9%""}",84109,1,Asia +2024-08-03,69385,4207,"[""Laptop"", ""Headphones""]",1482.79,{},161297,1,South America +2024-09-07,69386,516,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4789.2,{},49724,1,North America +2023-10-03,69387,411,"[""Wireless Mouse"", ""Keyboard""]",1148.83,"{"""": ""23%""}",138357,1,South America +2023-08-01,69388,3026,"[""Tablet"", ""Headphones""]",2913.41,{},231596,0,Africa +2023-08-30,69389,5315,"[""Keyboard"", ""Charger""]",4725.28,{},113977,0,South America +2023-03-21,69390,4152,"[""Monitor"", ""Wireless Mouse""]",3550.74,{},139618,0,Europe +2023-12-19,69391,7466,"[""Monitor"", ""Headphones""]",250.87,{},289064,0,South America +2024-03-17,69392,6554,"[""Wireless Mouse""]",3918.93,{},118040,0,Asia +2023-08-03,69393,4247,"[""Charger"", ""Tablet""]",1133.11,"{""seasonal"": ""8%""}",232297,1,South America +2024-10-22,69394,6576,"[""Laptop""]",3060.47,"{""seasonal"": ""21%""}",47760,1,Asia +2024-12-17,69395,8596,"[""Monitor""]",4426.41,"{""promo"": ""28%""}",39233,1,North America +2023-11-20,69396,6128,"[""Headphones""]",1775.1,{},168127,0,South America +2024-11-21,69397,2442,"[""Phone""]",4618.81,{},208587,1,South America +2023-05-14,69398,1460,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2525.97,{},274795,1,Asia +2024-09-10,69399,4628,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4990.26,{},278032,0,Africa +2024-09-28,69400,6720,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1809.84,{},35456,0,Africa +2023-02-25,69401,7583,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1088.01,"{""seasonal"": ""20%""}",95586,1,Europe +2023-03-11,69402,8616,"[""Monitor""]",345.83,"{""loyalty"": ""30%""}",180573,1,Asia +2024-05-15,69403,7797,"[""Tablet"", ""Monitor"", ""Keyboard""]",1430.07,"{""seasonal"": ""6%""}",77951,0,North America +2024-11-11,69404,4142,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",146.85,"{""loyalty"": ""9%""}",190879,1,North America +2024-07-13,69405,81,"[""Laptop"", ""Headphones""]",451.89,{},245157,0,South America +2024-03-27,69406,5976,"[""Keyboard"", ""Charger""]",3858.24,"{"""": ""26%""}",83852,1,Africa +2023-02-21,69407,2082,"[""Monitor""]",4932.11,{},297085,0,North America +2024-12-08,69408,5771,"[""Laptop"", ""Phone""]",4853.24,{},237828,1,North America +2023-11-04,69409,8662,"[""Charger""]",3469.46,"{"""": ""27%""}",207338,0,North America +2023-04-28,69410,820,"[""Monitor"", ""Tablet"", ""Headphones""]",4773.31,{},62737,0,Africa +2023-11-25,69411,5628,"[""Laptop"", ""Wireless Mouse""]",3308.69,"{""loyalty"": ""23%""}",97344,0,Africa +2024-02-19,69412,1491,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4422.74,{},121994,1,Europe +2023-01-27,69413,1399,"[""Headphones"", ""Phone""]",1639.43,{},287164,1,North America +2023-02-16,69414,3198,"[""Tablet""]",861.07,"{""promo"": ""24%""}",35604,1,North America +2023-04-20,69415,9715,"[""Keyboard"", ""Monitor""]",672.55,"{""loyalty"": ""28%""}",252788,1,Asia +2024-01-14,69416,9277,"[""Tablet""]",4853.99,{},149637,0,Asia +2023-05-22,69417,7153,"[""Keyboard""]",2712.19,"{""loyalty"": ""8%""}",203520,1,North America +2024-12-14,69418,5899,"[""Monitor"", ""Tablet"", ""Charger""]",2214.69,"{""seasonal"": ""29%""}",115295,1,Africa +2024-05-05,69419,5493,"[""Wireless Mouse""]",1913.54,{},257312,0,North America +2024-01-06,69420,8191,"[""Wireless Mouse""]",2942.77,"{""loyalty"": ""7%""}",120983,1,Africa +2023-09-29,69421,8017,"[""Headphones"", ""Phone"", ""Laptop""]",3705.58,"{""promo"": ""6%""}",52928,1,Asia +2023-08-05,69422,2355,"[""Keyboard"", ""Wireless Mouse""]",694.23,"{""loyalty"": ""26%""}",238099,1,North America +2024-06-12,69423,1839,"[""Phone"", ""Headphones"", ""Keyboard""]",1758.12,"{"""": ""28%""}",16815,1,Africa +2024-07-22,69424,4421,"[""Monitor""]",3608.59,{},296885,1,Africa +2024-05-16,69425,448,"[""Phone""]",359.53,"{""seasonal"": ""28%""}",82125,0,Africa +2023-07-21,69426,9614,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",781.88,{},7205,0,South America +2024-06-26,69427,7495,"[""Monitor"", ""Tablet"", ""Keyboard""]",1316.2,{},171927,1,North America +2023-08-28,69428,1043,"[""Charger"", ""Headphones""]",4590.84,"{""loyalty"": ""18%""}",119283,1,Asia +2023-11-23,69429,9812,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1489.26,{},288735,0,South America +2023-12-29,69430,5016,"[""Phone""]",1694.46,{},265057,0,North America +2024-07-15,69431,1269,"[""Headphones""]",2737.36,"{""promo"": ""11%""}",145466,1,Asia +2024-01-05,69432,4265,"[""Laptop""]",3733.85,{},267192,0,Africa +2024-01-27,69433,8009,"[""Charger""]",3015.24,"{"""": ""25%""}",139254,0,Asia +2024-11-18,69434,5568,"[""Wireless Mouse""]",438.93,{},123610,0,Asia +2024-07-11,69435,3818,"[""Monitor"", ""Tablet""]",3681.83,"{""loyalty"": ""24%""}",238696,1,Africa +2024-07-12,69436,9424,"[""Headphones""]",720.87,"{"""": ""12%""}",238202,1,Africa +2023-05-04,69437,8939,"[""Phone""]",2435.54,{},118704,1,Europe +2024-09-07,69438,4278,"[""Phone"", ""Laptop""]",3519.53,{},101938,0,South America +2023-06-15,69439,8871,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4332.45,{},144075,0,North America +2023-10-03,69440,6363,"[""Monitor"", ""Charger"", ""Keyboard""]",3573.84,"{""loyalty"": ""8%""}",279347,1,Africa +2024-01-01,69441,3271,"[""Wireless Mouse"", ""Phone""]",4700.63,"{""promo"": ""21%""}",155555,1,Europe +2024-06-16,69442,3345,"[""Headphones""]",2610.24,"{""loyalty"": ""8%""}",128977,0,Asia +2023-09-09,69443,1684,"[""Laptop"", ""Phone""]",160.9,{},199609,1,South America +2024-01-22,69444,5808,"[""Phone"", ""Monitor"", ""Charger""]",2715.49,{},74519,0,Africa +2024-07-20,69445,5378,"[""Laptop"", ""Charger""]",1445.95,"{""promo"": ""19%""}",159853,1,Asia +2024-12-18,69446,3304,"[""Laptop""]",4863.88,{},243938,0,South America +2024-12-23,69447,5053,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1594.91,{},164112,0,South America +2023-02-07,69448,665,"[""Wireless Mouse""]",1455.54,"{""seasonal"": ""27%""}",281518,1,Asia +2024-06-21,69449,4912,"[""Phone"", ""Headphones""]",966.14,"{""promo"": ""17%""}",13781,0,Africa +2024-01-17,69450,8982,"[""Phone"", ""Headphones""]",2687.43,{},27782,1,North America +2024-03-05,69451,796,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1345.21,"{""loyalty"": ""25%""}",156976,1,North America +2023-03-15,69452,603,"[""Phone"", ""Tablet""]",3301.19,"{""promo"": ""20%""}",205013,0,South America +2024-07-05,69453,9502,"[""Laptop""]",1561.22,"{""loyalty"": ""5%""}",194658,0,Africa +2023-05-19,69454,8425,"[""Charger""]",1185.7,"{""loyalty"": ""6%""}",251547,1,Asia +2024-09-29,69455,2333,"[""Tablet"", ""Wireless Mouse""]",708.1,{},248489,1,South America +2024-10-21,69456,9599,"[""Monitor""]",3507.22,{},276891,0,Asia +2024-04-20,69457,238,"[""Phone"", ""Charger""]",2554.82,{},144255,0,Asia +2024-04-06,69458,7049,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1055.01,{},54749,0,Europe +2023-06-15,69459,9872,"[""Phone"", ""Headphones"", ""Laptop""]",4591.31,"{""loyalty"": ""6%""}",215215,1,Europe +2024-06-03,69460,9168,"[""Wireless Mouse""]",2092.43,{},99850,1,Asia +2023-02-08,69461,2781,"[""Monitor"", ""Headphones""]",2851.99,{},298671,0,Asia +2023-03-13,69462,6505,"[""Headphones"", ""Charger""]",549.39,{},200985,0,North America +2024-08-21,69463,7768,"[""Laptop"", ""Headphones""]",2833.85,{},138067,0,South America +2024-09-14,69464,2265,"[""Charger"", ""Phone""]",1461.57,{},22729,0,Africa +2023-11-15,69465,2102,"[""Monitor"", ""Charger"", ""Phone""]",2962.49,{},207406,0,Asia +2024-09-13,69466,4378,"[""Keyboard"", ""Laptop"", ""Monitor""]",431.6,"{""promo"": ""15%""}",78914,0,Africa +2024-05-25,69467,7187,"[""Charger""]",2190.76,"{""promo"": ""8%""}",39785,1,Asia +2024-05-23,69468,4986,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2382.63,"{""loyalty"": ""24%""}",77922,1,Asia +2024-09-07,69469,5708,"[""Monitor""]",1139.28,"{""seasonal"": ""18%""}",250133,1,South America +2024-06-24,69470,1398,"[""Keyboard"", ""Charger""]",1788.71,{},16834,1,Europe +2023-06-15,69471,4470,"[""Keyboard"", ""Charger""]",4379.0,"{""promo"": ""27%""}",271235,0,Asia +2024-11-26,69472,3932,"[""Keyboard"", ""Phone""]",3297.83,"{""seasonal"": ""22%""}",230791,1,South America +2023-10-05,69473,8096,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2225.89,{},261428,0,Europe +2024-07-20,69474,7911,"[""Laptop""]",2964.26,{},184130,0,South America +2023-11-19,69475,9617,"[""Laptop"", ""Monitor""]",4258.83,{},203082,0,North America +2024-09-28,69476,196,"[""Tablet"", ""Wireless Mouse""]",179.07,{},221008,1,Asia +2023-12-23,69477,2116,"[""Charger"", ""Tablet""]",1073.54,{},19440,1,North America +2023-07-26,69478,1717,"[""Charger""]",3495.7,{},155425,1,Africa +2023-09-09,69479,8880,"[""Monitor""]",2734.19,"{""seasonal"": ""29%""}",187013,0,Africa +2024-03-21,69480,3782,"[""Laptop""]",4515.8,"{""loyalty"": ""7%""}",102811,1,Asia +2023-09-19,69481,6379,"[""Keyboard""]",3164.84,{},235921,0,North America +2023-05-27,69482,1490,"[""Phone""]",2241.39,"{""seasonal"": ""17%""}",135393,1,Europe +2024-07-21,69483,8030,"[""Phone""]",2705.53,"{""promo"": ""17%""}",242093,1,North America +2024-09-27,69484,7670,"[""Laptop""]",2337.4,"{""promo"": ""6%""}",268086,0,North America +2023-08-14,69485,8589,"[""Headphones""]",408.91,"{"""": ""22%""}",236890,0,South America +2023-06-06,69486,8928,"[""Headphones""]",1200.93,"{"""": ""16%""}",203662,1,Europe +2024-03-29,69487,8170,"[""Headphones""]",2600.55,{},229571,1,South America +2023-06-03,69488,8302,"[""Keyboard"", ""Monitor""]",4203.86,{},86438,0,Africa +2024-02-22,69489,1418,"[""Keyboard"", ""Wireless Mouse""]",4854.83,"{""promo"": ""23%""}",91890,1,Asia +2023-09-01,69490,7711,"[""Monitor"", ""Headphones"", ""Tablet""]",2717.59,{},195954,1,Africa +2024-11-30,69491,6622,"[""Headphones"", ""Phone""]",3518.23,"{"""": ""28%""}",67139,0,Africa +2024-12-11,69492,2662,"[""Charger"", ""Tablet"", ""Keyboard""]",3564.66,{},26493,0,North America +2023-09-29,69493,5254,"[""Monitor"", ""Headphones"", ""Laptop""]",2168.97,{},225774,1,South America +2024-07-23,69494,6961,"[""Charger""]",649.29,{},207208,1,Asia +2024-08-30,69495,6945,"[""Charger""]",4207.72,{},73299,1,South America +2024-03-05,69496,4936,"[""Phone""]",657.09,{},191066,1,Europe +2024-04-03,69497,8849,"[""Monitor"", ""Tablet""]",4745.99,{},173762,0,Europe +2023-06-27,69498,5648,"[""Monitor""]",1280.53,"{""loyalty"": ""16%""}",299541,0,Europe +2023-06-24,69499,8926,"[""Phone"", ""Headphones""]",2516.97,{},158911,0,Europe +2023-12-28,69500,2863,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3679.75,"{""seasonal"": ""11%""}",75533,0,South America +2024-02-03,69501,4930,"[""Keyboard""]",4270.2,"{""promo"": ""7%""}",51267,1,Africa +2024-09-22,69502,7436,"[""Charger"", ""Tablet""]",3799.19,"{"""": ""7%""}",194230,1,Europe +2024-11-09,69503,2092,"[""Laptop""]",487.38,{},150968,1,Africa +2023-08-03,69504,5691,"[""Keyboard""]",394.78,{},176834,1,Asia +2023-06-13,69505,3296,"[""Phone"", ""Laptop"", ""Keyboard""]",4429.5,"{""loyalty"": ""30%""}",122660,1,Europe +2023-03-06,69506,5381,"[""Laptop""]",1770.6,"{""seasonal"": ""15%""}",6250,1,South America +2024-09-29,69507,2198,"[""Charger"", ""Phone""]",2741.11,"{""promo"": ""8%""}",205120,1,Africa +2023-05-11,69508,6414,"[""Laptop"", ""Tablet""]",3711.26,{},82583,1,North America +2023-09-11,69509,2145,"[""Laptop""]",2475.89,"{"""": ""6%""}",3856,0,Africa +2024-09-25,69510,3451,"[""Wireless Mouse"", ""Laptop""]",1546.57,{},7293,0,Europe +2023-11-16,69511,1500,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1927.65,"{""loyalty"": ""14%""}",109582,1,Asia +2023-08-18,69512,1447,"[""Laptop"", ""Tablet""]",893.71,{},86739,1,Europe +2024-09-19,69513,2159,"[""Keyboard"", ""Charger""]",2003.72,"{""promo"": ""19%""}",265969,1,Europe +2023-05-21,69514,7737,"[""Laptop"", ""Charger""]",3940.62,{},8046,1,South America +2023-08-17,69515,4670,"[""Headphones""]",3850.24,"{""promo"": ""30%""}",134634,1,South America +2023-10-23,69516,1366,"[""Charger"", ""Phone""]",1884.29,{},286337,1,Asia +2024-01-12,69517,8198,"[""Headphones"", ""Tablet""]",4924.37,{},82498,0,Africa +2024-09-20,69518,8424,"[""Wireless Mouse"", ""Laptop""]",1269.88,"{"""": ""11%""}",200164,1,North America +2023-03-30,69519,884,"[""Keyboard"", ""Tablet"", ""Headphones""]",2807.35,{},194383,1,North America +2024-10-13,69520,3347,"[""Phone""]",491.14,{},115086,0,Europe +2024-09-29,69521,8962,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1538.71,"{""seasonal"": ""26%""}",209170,0,Europe +2024-05-12,69522,4027,"[""Monitor"", ""Headphones"", ""Charger""]",2934.59,"{""loyalty"": ""11%""}",153042,1,Europe +2023-11-20,69523,8336,"[""Monitor"", ""Wireless Mouse""]",2151.22,{},54327,1,Africa +2024-06-13,69524,2946,"[""Laptop"", ""Charger"", ""Keyboard""]",102.79,{},147163,0,North America +2024-01-11,69525,332,"[""Monitor"", ""Wireless Mouse""]",3187.32,{},156690,0,South America +2023-09-16,69526,1900,"[""Monitor"", ""Keyboard"", ""Tablet""]",3716.21,{},216245,0,Asia +2024-05-08,69527,5443,"[""Charger"", ""Monitor"", ""Phone""]",4586.58,{},7227,1,Africa +2023-05-12,69528,7048,"[""Keyboard"", ""Wireless Mouse""]",941.96,{},37427,0,Africa +2023-06-12,69529,2073,"[""Laptop"", ""Headphones""]",996.71,{},90640,1,Asia +2023-02-07,69530,5417,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3021.77,"{"""": ""9%""}",29877,0,Asia +2023-09-17,69531,2292,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3369.36,"{""promo"": ""8%""}",25643,0,North America +2024-11-15,69532,5229,"[""Headphones""]",3910.75,"{""promo"": ""28%""}",64456,0,South America +2024-12-04,69533,4489,"[""Phone""]",1327.52,{},244023,0,Africa +2023-04-04,69534,1700,"[""Wireless Mouse""]",2869.78,{},3561,0,South America +2023-10-06,69535,4964,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4239.35,"{"""": ""27%""}",278710,0,Asia +2023-08-26,69536,9055,"[""Laptop"", ""Headphones""]",176.18,"{""seasonal"": ""21%""}",206964,0,Europe +2024-05-11,69537,33,"[""Laptop"", ""Tablet"", ""Keyboard""]",1899.96,{},108186,1,Asia +2023-07-15,69538,2307,"[""Charger"", ""Monitor""]",2167.25,"{""loyalty"": ""25%""}",245387,0,South America +2023-07-25,69539,6896,"[""Keyboard""]",2143.94,"{""loyalty"": ""11%""}",117121,1,South America +2023-08-16,69540,7663,"[""Keyboard"", ""Monitor""]",2992.04,{},146671,1,North America +2024-10-01,69541,6560,"[""Monitor""]",145.17,"{"""": ""21%""}",143008,1,Asia +2023-02-17,69542,8126,"[""Monitor""]",3361.26,{},15171,1,Africa +2023-02-01,69543,3141,"[""Laptop"", ""Monitor""]",1362.92,"{"""": ""5%""}",149371,1,North America +2023-09-04,69544,3953,"[""Phone""]",3046.32,{},66391,0,South America +2024-07-08,69545,3633,"[""Phone"", ""Charger""]",581.08,{},26066,1,Europe +2024-05-15,69546,53,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",52.8,{},7034,1,South America +2023-12-27,69547,7108,"[""Phone""]",4377.46,"{""promo"": ""21%""}",263699,1,Africa +2024-09-09,69548,4728,"[""Keyboard"", ""Tablet""]",1505.58,{},118795,0,Europe +2024-04-06,69549,1046,"[""Charger""]",4798.37,{},38842,1,Africa +2024-11-06,69550,1986,"[""Monitor""]",2459.63,{},268994,0,South America +2024-02-08,69551,2720,"[""Keyboard"", ""Monitor"", ""Laptop""]",4781.81,{},293823,0,South America +2024-10-15,69552,4431,"[""Tablet"", ""Laptop"", ""Phone""]",934.33,{},162082,1,North America +2024-02-28,69553,100,"[""Keyboard"", ""Wireless Mouse""]",943.54,{},121878,0,South America +2024-06-07,69554,3326,"[""Wireless Mouse"", ""Headphones""]",371.02,"{""loyalty"": ""6%""}",113501,0,Africa +2023-11-11,69555,7373,"[""Keyboard"", ""Phone"", ""Laptop""]",4934.34,"{""promo"": ""7%""}",216689,1,Europe +2023-05-12,69556,7127,"[""Tablet""]",3461.17,"{""loyalty"": ""22%""}",262828,1,Africa +2024-10-15,69557,1093,"[""Monitor"", ""Charger""]",2597.74,{},117937,1,North America +2023-06-18,69558,154,"[""Laptop""]",584.35,{},275089,0,South America +2023-12-06,69559,2314,"[""Keyboard"", ""Phone"", ""Laptop""]",2642.94,{},288788,0,Europe +2024-10-10,69560,2101,"[""Phone"", ""Tablet""]",367.63,{},268080,0,Africa +2023-03-04,69561,672,"[""Wireless Mouse"", ""Headphones""]",2640.24,{},279988,0,North America +2024-02-13,69562,6788,"[""Monitor"", ""Keyboard""]",4134.74,"{"""": ""26%""}",175386,0,Africa +2024-05-04,69563,207,"[""Charger"", ""Keyboard"", ""Monitor""]",2735.94,{},232788,0,Africa +2024-08-02,69564,9350,"[""Phone""]",2996.84,{},177212,0,Africa +2024-06-23,69565,88,"[""Charger"", ""Tablet"", ""Laptop""]",4243.25,{},186921,1,Europe +2023-09-02,69566,302,"[""Monitor"", ""Charger""]",799.44,{},216344,1,North America +2023-04-28,69567,1252,"[""Tablet"", ""Phone""]",3758.01,{},293740,1,Asia +2024-09-24,69568,3858,"[""Headphones"", ""Phone"", ""Laptop""]",4874.17,"{""promo"": ""9%""}",117286,0,North America +2024-09-06,69569,1529,"[""Monitor"", ""Charger"", ""Phone""]",3572.88,"{""loyalty"": ""11%""}",15247,1,Europe +2024-02-13,69570,9477,"[""Keyboard""]",556.87,{},249729,1,North America +2024-10-16,69571,1870,"[""Headphones"", ""Charger""]",4499.67,"{"""": ""16%""}",17030,1,Africa +2023-10-29,69572,601,"[""Monitor"", ""Phone"", ""Headphones""]",4599.13,{},297091,1,Europe +2024-12-01,69573,8253,"[""Phone"", ""Charger""]",4733.77,"{""loyalty"": ""15%""}",229220,0,North America +2023-07-20,69574,243,"[""Headphones"", ""Keyboard"", ""Tablet""]",3201.89,"{"""": ""14%""}",129696,0,North America +2024-08-04,69575,6048,"[""Wireless Mouse"", ""Headphones""]",2591.08,{},63070,0,Asia +2024-12-24,69576,893,"[""Laptop"", ""Charger"", ""Phone""]",4455.48,{},189653,1,North America +2024-03-01,69577,2309,"[""Charger""]",3375.79,"{""loyalty"": ""14%""}",90331,0,Europe +2023-01-05,69578,6337,"[""Monitor""]",1939.14,"{""promo"": ""17%""}",251204,1,Europe +2023-06-27,69579,6410,"[""Headphones""]",3984.54,{},152929,0,Africa +2024-12-08,69580,7079,"[""Tablet"", ""Laptop""]",260.6,"{""seasonal"": ""12%""}",68359,1,Africa +2023-10-19,69581,3351,"[""Charger"", ""Phone"", ""Headphones""]",1393.49,{},237179,0,Europe +2024-05-07,69582,1522,"[""Headphones"", ""Tablet""]",4555.28,"{"""": ""8%""}",221812,1,South America +2024-05-19,69583,5994,"[""Laptop"", ""Wireless Mouse""]",4575.41,"{""loyalty"": ""23%""}",148490,1,North America +2023-06-30,69584,8575,"[""Wireless Mouse"", ""Monitor""]",4647.84,{},287156,1,North America +2024-09-22,69585,9283,"[""Headphones"", ""Wireless Mouse""]",2533.49,{},225983,0,Europe +2024-04-13,69586,9832,"[""Keyboard""]",3969.37,"{""promo"": ""27%""}",33200,0,Africa +2024-10-01,69587,488,"[""Charger"", ""Keyboard"", ""Headphones""]",3465.77,{},26027,1,South America +2024-05-19,69588,8672,"[""Laptop""]",188.09,{},64287,0,Europe +2024-10-20,69589,9980,"[""Phone"", ""Laptop"", ""Monitor""]",730.91,"{""loyalty"": ""8%""}",184240,0,North America +2023-05-18,69590,2322,"[""Laptop""]",369.98,{},224590,1,Africa +2024-10-24,69591,3560,"[""Headphones"", ""Tablet"", ""Monitor""]",1759.77,"{""seasonal"": ""8%""}",79759,0,South America +2024-01-05,69592,105,"[""Tablet"", ""Phone""]",327.4,"{"""": ""11%""}",241043,1,South America +2023-12-03,69593,516,"[""Headphones"", ""Keyboard"", ""Tablet""]",3826.93,{},227637,0,Europe +2023-06-05,69594,948,"[""Phone""]",2238.6,"{"""": ""8%""}",145662,1,South America +2023-10-14,69595,4346,"[""Laptop"", ""Charger"", ""Phone""]",3326.41,{},266627,1,North America +2024-06-04,69596,1132,"[""Headphones""]",955.61,{},172278,0,Europe +2024-11-08,69597,9715,"[""Keyboard"", ""Charger""]",2903.21,"{""promo"": ""14%""}",261264,0,South America +2024-08-23,69598,3365,"[""Phone""]",1821.76,"{""promo"": ""26%""}",132244,1,South America +2024-01-12,69599,2278,"[""Monitor"", ""Tablet"", ""Charger""]",1410.49,{},289233,0,North America +2024-03-09,69600,6222,"[""Phone"", ""Monitor""]",250.64,"{""promo"": ""18%""}",125644,0,North America +2024-09-12,69601,4903,"[""Wireless Mouse""]",3870.57,"{"""": ""27%""}",134788,1,South America +2023-08-10,69602,8243,"[""Monitor""]",2126.4,{},4772,1,Asia +2023-02-05,69603,9505,"[""Charger"", ""Keyboard"", ""Tablet""]",2378.5,"{"""": ""28%""}",211992,1,Asia +2023-05-24,69604,7543,"[""Tablet""]",3764.06,{},226524,1,Africa +2024-07-06,69605,4419,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2965.79,"{""promo"": ""21%""}",200229,1,Asia +2023-01-05,69606,1554,"[""Laptop"", ""Tablet""]",3648.42,{},51502,0,Africa +2023-09-22,69607,4903,"[""Keyboard""]",1006.57,{},140380,0,Africa +2023-02-16,69608,5131,"[""Headphones"", ""Keyboard"", ""Charger""]",749.94,{},291028,1,North America +2023-11-24,69609,4510,"[""Wireless Mouse"", ""Phone""]",1511.97,{},78106,0,Asia +2023-06-25,69610,3518,"[""Charger"", ""Wireless Mouse""]",1854.1,{},90073,0,Africa +2023-06-05,69611,5491,"[""Charger""]",3921.63,"{""promo"": ""18%""}",81195,0,Africa +2024-11-29,69612,3464,"[""Wireless Mouse""]",4608.28,"{"""": ""20%""}",240645,1,South America +2024-05-26,69613,2750,"[""Headphones"", ""Tablet""]",4920.04,"{"""": ""5%""}",177664,1,North America +2023-07-27,69614,6755,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",506.66,"{"""": ""7%""}",177330,1,Africa +2023-12-26,69615,3841,"[""Keyboard""]",726.28,"{""promo"": ""5%""}",75978,1,Africa +2024-01-26,69616,7120,"[""Keyboard"", ""Monitor""]",1649.02,"{"""": ""25%""}",260528,1,North America +2023-08-03,69617,475,"[""Charger"", ""Phone""]",3711.37,"{""promo"": ""22%""}",92530,0,South America +2024-03-11,69618,2104,"[""Laptop""]",4607.36,"{""loyalty"": ""30%""}",23395,0,South America +2024-01-22,69619,6282,"[""Charger"", ""Headphones""]",1959.33,{},46440,0,Asia +2024-01-21,69620,7505,"[""Monitor"", ""Headphones""]",4015.46,{},33837,0,South America +2024-06-06,69621,3237,"[""Keyboard"", ""Monitor""]",1279.9,"{""promo"": ""24%""}",6560,1,Europe +2024-03-09,69622,1277,"[""Headphones"", ""Tablet""]",3796.79,"{""loyalty"": ""19%""}",11703,0,Asia +2024-07-25,69623,3604,"[""Monitor"", ""Keyboard"", ""Laptop""]",3022.18,"{""promo"": ""21%""}",290728,1,Africa +2024-03-26,69624,2353,"[""Monitor""]",1459.75,{},97714,1,South America +2024-09-13,69625,3493,"[""Keyboard"", ""Monitor"", ""Tablet""]",4534.05,{},109749,1,Africa +2024-07-19,69626,6617,"[""Monitor"", ""Wireless Mouse""]",3333.75,"{""loyalty"": ""14%""}",215477,0,Europe +2023-02-09,69627,2651,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2375.08,"{""promo"": ""25%""}",40550,0,Europe +2024-08-10,69628,3670,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3309.94,"{""promo"": ""7%""}",294908,0,Europe +2023-04-28,69629,7524,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",75.67,"{""seasonal"": ""28%""}",45140,0,Europe +2023-03-03,69630,7164,"[""Monitor"", ""Headphones""]",1419.19,{},237923,0,South America +2023-07-26,69631,6433,"[""Tablet""]",1555.17,{},120460,0,Asia +2024-08-16,69632,6037,"[""Charger""]",3109.76,"{"""": ""8%""}",21419,1,North America +2024-03-24,69633,3536,"[""Phone"", ""Keyboard""]",3052.2,"{""seasonal"": ""6%""}",172713,1,Africa +2024-02-01,69634,605,"[""Phone"", ""Laptop""]",1220.91,{},276865,1,Asia +2024-11-19,69635,194,"[""Wireless Mouse""]",2255.32,"{"""": ""16%""}",83139,0,North America +2024-08-27,69636,5743,"[""Headphones""]",2873.0,{},66420,1,South America +2024-05-01,69637,7423,"[""Phone""]",1038.65,{},123024,0,Africa +2023-05-14,69638,7378,"[""Tablet"", ""Headphones""]",1682.98,{},155739,0,North America +2023-08-24,69639,1898,"[""Monitor"", ""Laptop""]",99.6,{},48786,1,South America +2024-01-01,69640,6922,"[""Tablet""]",1558.35,{},157549,0,North America +2024-12-18,69641,6505,"[""Tablet"", ""Headphones"", ""Laptop""]",2361.24,{},174906,0,North America +2023-08-25,69642,9232,"[""Wireless Mouse"", ""Laptop""]",3487.65,{},299609,0,Africa +2023-11-25,69643,8919,"[""Tablet"", ""Keyboard""]",472.31,"{""promo"": ""11%""}",216293,0,Africa +2023-09-10,69644,7462,"[""Wireless Mouse""]",2026.4,{},277423,0,South America +2024-12-08,69645,4756,"[""Laptop""]",1049.07,"{""promo"": ""15%""}",45397,0,Asia +2024-05-19,69646,7528,"[""Monitor"", ""Keyboard""]",640.33,{},6399,1,Africa +2023-03-15,69647,1678,"[""Headphones"", ""Phone"", ""Laptop""]",3442.18,{},234237,1,Asia +2023-08-02,69648,3718,"[""Keyboard"", ""Charger""]",3436.45,{},151219,1,Africa +2024-12-07,69649,4013,"[""Keyboard"", ""Tablet"", ""Phone""]",2684.15,"{""promo"": ""8%""}",248208,1,North America +2024-04-15,69650,8708,"[""Monitor""]",4469.02,{},8725,1,South America +2024-09-12,69651,8080,"[""Phone"", ""Wireless Mouse""]",4418.91,"{"""": ""9%""}",245426,1,South America +2024-01-04,69652,359,"[""Laptop"", ""Charger"", ""Tablet""]",4956.18,{},99768,0,Africa +2023-05-26,69653,3767,"[""Keyboard"", ""Headphones"", ""Monitor""]",3529.59,"{""promo"": ""29%""}",15623,0,Asia +2023-12-25,69654,2383,"[""Phone"", ""Keyboard"", ""Monitor""]",1961.04,{},95767,1,North America +2024-09-10,69655,7630,"[""Keyboard"", ""Tablet""]",2222.93,{},110746,0,Africa +2024-08-12,69656,7355,"[""Laptop"", ""Monitor""]",2402.15,{},92786,1,South America +2024-12-09,69657,7454,"[""Keyboard""]",3487.54,"{""promo"": ""30%""}",59637,0,Asia +2024-03-12,69658,871,"[""Headphones""]",2226.66,{},44617,0,Europe +2023-08-14,69659,2371,"[""Charger"", ""Tablet""]",2445.3,{},6871,0,North America +2023-05-12,69660,9235,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4008.44,"{"""": ""30%""}",33228,0,Africa +2024-02-10,69661,1823,"[""Keyboard"", ""Phone""]",2837.61,{},228094,1,Asia +2023-02-02,69662,7247,"[""Monitor""]",1906.38,"{"""": ""20%""}",136511,1,North America +2024-07-06,69663,771,"[""Laptop"", ""Headphones""]",571.06,{},62814,1,North America +2023-03-23,69664,634,"[""Tablet""]",260.21,"{""promo"": ""12%""}",154127,1,Europe +2023-06-16,69665,2915,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",798.61,{},289366,1,Europe +2024-02-12,69666,2892,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2289.23,{},148567,1,Asia +2024-08-02,69667,9043,"[""Tablet""]",2938.44,"{""seasonal"": ""22%""}",10184,0,Asia +2023-06-03,69668,5223,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1286.23,"{""promo"": ""19%""}",120833,1,North America +2024-01-29,69669,791,"[""Headphones"", ""Keyboard"", ""Phone""]",2053.38,{},286474,0,Europe +2023-01-17,69670,1049,"[""Wireless Mouse"", ""Headphones""]",3219.83,{},287052,1,Asia +2023-09-03,69671,9992,"[""Tablet""]",4236.48,{},281584,0,South America +2023-01-17,69672,986,"[""Headphones"", ""Wireless Mouse""]",1491.84,{},39200,0,Europe +2024-07-08,69673,541,"[""Tablet"", ""Charger"", ""Headphones""]",3752.97,{},186124,0,South America +2023-08-01,69674,6768,"[""Keyboard"", ""Charger"", ""Phone""]",4944.8,{},46483,1,Asia +2023-03-29,69675,6960,"[""Headphones"", ""Phone"", ""Charger""]",884.17,{},15397,1,Asia +2023-12-02,69676,347,"[""Charger"", ""Keyboard""]",4702.25,{},158409,0,North America +2023-09-20,69677,279,"[""Laptop"", ""Wireless Mouse""]",2955.61,{},102033,1,Africa +2024-07-22,69678,765,"[""Wireless Mouse"", ""Monitor""]",4144.05,"{""loyalty"": ""29%""}",106227,1,Africa +2023-10-13,69679,3724,"[""Headphones"", ""Laptop""]",414.93,{},87776,0,Asia +2023-12-20,69680,9892,"[""Charger"", ""Phone""]",4203.47,{},168607,1,Africa +2023-10-15,69681,5406,"[""Charger"", ""Tablet""]",2205.39,"{"""": ""8%""}",9329,0,Asia +2023-03-05,69682,7074,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1639.82,{},175409,0,North America +2023-03-28,69683,7769,"[""Wireless Mouse""]",4859.64,"{""loyalty"": ""19%""}",93053,1,Asia +2023-03-02,69684,2267,"[""Monitor"", ""Charger""]",2794.31,{},225268,1,South America +2023-04-04,69685,5077,"[""Charger""]",2611.07,"{""seasonal"": ""24%""}",96732,1,South America +2023-10-04,69686,7348,"[""Headphones""]",1553.56,{},243837,0,South America +2023-06-10,69687,2379,"[""Wireless Mouse"", ""Keyboard""]",4528.18,"{"""": ""9%""}",166391,1,North America +2023-10-10,69688,3475,"[""Keyboard"", ""Monitor""]",3106.74,{},194172,1,Europe +2024-02-19,69689,7660,"[""Monitor""]",4818.96,"{"""": ""13%""}",30811,1,Europe +2023-04-23,69690,3564,"[""Laptop"", ""Phone""]",2274.16,"{""promo"": ""21%""}",258171,1,South America +2023-06-25,69691,8353,"[""Wireless Mouse"", ""Tablet""]",2918.25,"{""loyalty"": ""27%""}",74358,1,South America +2024-10-18,69692,2775,"[""Phone""]",2122.29,{},43683,1,Asia +2023-11-21,69693,4601,"[""Keyboard"", ""Phone"", ""Charger""]",1638.94,"{""promo"": ""25%""}",59571,0,Asia +2023-06-24,69694,4162,"[""Tablet"", ""Wireless Mouse""]",1428.05,"{""loyalty"": ""7%""}",187155,1,Africa +2024-02-26,69695,2637,"[""Charger""]",2230.29,{},176894,0,Europe +2024-04-21,69696,3719,"[""Keyboard""]",1409.68,{},62515,0,North America +2023-07-18,69697,1570,"[""Tablet"", ""Wireless Mouse""]",4527.97,{},34028,0,Asia +2023-04-12,69698,4770,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2972.35,{},269461,1,Europe +2024-07-05,69699,9861,"[""Phone"", ""Charger"", ""Wireless Mouse""]",621.85,{},86846,1,Africa +2023-04-17,69700,4312,"[""Tablet"", ""Charger""]",3807.13,"{""loyalty"": ""24%""}",296545,1,Asia +2023-02-25,69701,5684,"[""Keyboard""]",388.0,{},223528,1,Asia +2023-07-19,69702,6134,"[""Phone"", ""Charger"", ""Tablet""]",960.84,"{""loyalty"": ""28%""}",140411,1,Europe +2023-06-16,69703,7088,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4779.23,"{""seasonal"": ""13%""}",89838,0,Africa +2023-02-28,69704,5683,"[""Monitor""]",3724.23,{},242992,1,Africa +2024-06-24,69705,2816,"[""Keyboard"", ""Phone""]",2167.28,{},105502,1,Europe +2024-07-21,69706,3737,"[""Laptop""]",456.38,"{""promo"": ""17%""}",108198,1,Africa +2024-04-09,69707,1104,"[""Headphones"", ""Charger""]",3768.22,{},103052,1,South America +2024-11-01,69708,2946,"[""Monitor"", ""Headphones""]",619.16,{},170500,0,Africa +2023-01-31,69709,6522,"[""Charger"", ""Tablet"", ""Headphones""]",1062.44,{},241713,0,North America +2023-02-10,69710,6868,"[""Tablet"", ""Charger"", ""Keyboard""]",318.89,"{"""": ""17%""}",228029,0,North America +2024-02-23,69711,4297,"[""Charger""]",1817.55,{},91338,1,North America +2023-07-16,69712,389,"[""Headphones"", ""Monitor""]",4584.67,{},34652,0,Africa +2024-06-02,69713,1313,"[""Charger""]",3361.07,"{""loyalty"": ""21%""}",90456,0,South America +2023-11-01,69714,4194,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4539.42,"{""loyalty"": ""21%""}",181228,1,Europe +2024-12-03,69715,6062,"[""Phone""]",184.65,"{""loyalty"": ""10%""}",120329,0,Europe +2023-07-15,69716,2447,"[""Laptop""]",936.61,"{""loyalty"": ""22%""}",115429,0,Europe +2024-05-01,69717,449,"[""Phone"", ""Tablet""]",4007.22,"{"""": ""13%""}",246846,1,North America +2023-10-22,69718,3108,"[""Keyboard""]",4089.4,{},35099,0,Europe +2023-04-26,69719,400,"[""Wireless Mouse"", ""Tablet""]",1736.67,"{""loyalty"": ""6%""}",4818,1,Europe +2023-07-25,69720,9906,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3799.71,"{"""": ""24%""}",231372,1,North America +2023-05-27,69721,2893,"[""Phone"", ""Monitor""]",1913.48,{},102122,0,Africa +2023-05-23,69722,3380,"[""Phone"", ""Wireless Mouse""]",3306.37,{},222911,0,Africa +2023-10-05,69723,7180,"[""Wireless Mouse"", ""Laptop""]",491.36,{},103795,1,Asia +2023-03-05,69724,614,"[""Keyboard"", ""Charger"", ""Monitor""]",3307.74,"{""seasonal"": ""14%""}",151116,0,Asia +2023-10-14,69725,1658,"[""Keyboard""]",2408.76,"{""seasonal"": ""24%""}",64768,0,Africa +2023-06-21,69726,4021,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",738.05,"{"""": ""26%""}",179200,0,Asia +2023-08-29,69727,3884,"[""Laptop"", ""Keyboard"", ""Tablet""]",2030.77,"{"""": ""9%""}",153031,1,Europe +2024-07-10,69728,2941,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4949.28,{},133584,0,North America +2023-09-02,69729,4391,"[""Phone""]",4538.28,"{""loyalty"": ""25%""}",166016,1,Africa +2024-05-09,69730,9703,"[""Laptop"", ""Tablet"", ""Charger""]",4342.05,{},261803,1,Europe +2024-12-31,69731,4552,"[""Headphones""]",4475.18,"{"""": ""6%""}",156212,1,South America +2024-10-28,69732,7506,"[""Monitor"", ""Laptop""]",1429.7,{},94658,1,Africa +2023-01-02,69733,7309,"[""Monitor"", ""Charger"", ""Phone""]",3638.68,"{""promo"": ""12%""}",46018,1,Africa +2024-04-24,69734,5588,"[""Laptop"", ""Headphones"", ""Tablet""]",97.82,"{""loyalty"": ""7%""}",126551,0,Europe +2023-07-08,69735,5054,"[""Laptop""]",4465.11,"{""seasonal"": ""28%""}",89481,1,Africa +2024-02-25,69736,1060,"[""Laptop""]",4674.97,"{"""": ""10%""}",195256,0,Africa +2023-08-27,69737,5121,"[""Charger"", ""Headphones"", ""Phone""]",1071.9,"{""seasonal"": ""14%""}",255899,1,Europe +2023-08-20,69738,3708,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2852.37,{},12454,1,Europe +2024-05-14,69739,3735,"[""Keyboard""]",4341.09,{},296030,1,Europe +2024-02-28,69740,993,"[""Headphones"", ""Charger""]",668.9,"{""promo"": ""10%""}",61654,0,Asia +2023-08-30,69741,627,"[""Monitor""]",3262.4,{},4387,1,South America +2024-01-05,69742,7988,"[""Phone""]",4781.65,"{""loyalty"": ""29%""}",79094,0,North America +2024-12-24,69743,931,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",386.3,{},11003,0,Africa +2023-03-27,69744,255,"[""Keyboard"", ""Phone"", ""Monitor""]",88.67,{},150903,0,Africa +2024-04-09,69745,9099,"[""Laptop"", ""Headphones"", ""Tablet""]",197.12,"{""seasonal"": ""10%""}",70070,0,Africa +2024-08-09,69746,2060,"[""Laptop"", ""Keyboard""]",3956.28,"{""promo"": ""13%""}",299299,1,South America +2023-04-10,69747,205,"[""Wireless Mouse"", ""Laptop""]",1502.93,{},147110,0,North America +2024-11-14,69748,603,"[""Charger""]",1525.46,{},60047,1,Africa +2023-04-21,69749,6325,"[""Monitor""]",4812.9,{},94821,0,Asia +2024-08-12,69750,5043,"[""Tablet""]",2589.13,"{""loyalty"": ""9%""}",267018,0,South America +2024-07-05,69751,9293,"[""Monitor""]",949.91,"{""promo"": ""24%""}",281599,1,Asia +2024-11-07,69752,2695,"[""Headphones""]",58.81,{},139869,0,South America +2024-12-16,69753,5790,"[""Wireless Mouse""]",3745.41,"{""seasonal"": ""30%""}",43718,1,Africa +2023-09-27,69754,7477,"[""Phone"", ""Laptop"", ""Charger""]",760.67,"{""seasonal"": ""8%""}",24495,1,Africa +2023-05-01,69755,9717,"[""Phone"", ""Laptop""]",4640.96,"{""seasonal"": ""23%""}",109315,1,Asia +2023-07-06,69756,2369,"[""Keyboard""]",754.42,{},256632,1,South America +2023-06-11,69757,2025,"[""Phone"", ""Monitor""]",1775.34,"{"""": ""21%""}",251302,1,Africa +2024-05-02,69758,8564,"[""Charger"", ""Keyboard"", ""Laptop""]",4027.62,"{""promo"": ""23%""}",299831,1,Europe +2023-02-28,69759,2855,"[""Tablet"", ""Monitor"", ""Phone""]",3918.15,"{""seasonal"": ""23%""}",297023,0,Africa +2023-09-12,69760,8207,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",867.91,{},244792,0,Africa +2023-07-21,69761,5363,"[""Tablet""]",2487.81,{},11615,0,Africa +2023-01-22,69762,6860,"[""Keyboard"", ""Phone"", ""Tablet""]",2124.54,"{"""": ""19%""}",102455,1,North America +2024-09-27,69763,7419,"[""Phone"", ""Charger"", ""Laptop""]",3415.41,"{""loyalty"": ""12%""}",294500,1,South America +2024-02-07,69764,9386,"[""Headphones""]",3578.59,{},59751,1,Asia +2023-01-26,69765,6914,"[""Laptop"", ""Charger""]",1112.07,"{""promo"": ""6%""}",249397,0,North America +2024-11-26,69766,4100,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",768.58,"{""seasonal"": ""8%""}",202610,1,Europe +2023-06-29,69767,758,"[""Wireless Mouse""]",1076.77,{},223925,0,Africa +2024-11-19,69768,1774,"[""Tablet"", ""Phone"", ""Monitor""]",2593.23,{},234424,1,South America +2024-06-22,69769,6223,"[""Phone""]",3113.75,"{"""": ""5%""}",156498,1,South America +2024-07-22,69770,3064,"[""Tablet"", ""Charger"", ""Laptop""]",3060.8,"{""seasonal"": ""28%""}",201596,1,Europe +2024-12-23,69771,6962,"[""Charger"", ""Wireless Mouse""]",4764.84,"{""seasonal"": ""26%""}",56461,0,Europe +2024-07-27,69772,9722,"[""Phone"", ""Headphones""]",2045.41,"{""loyalty"": ""22%""}",31588,0,Asia +2024-11-15,69773,7535,"[""Laptop""]",3666.2,"{""promo"": ""21%""}",96612,1,Asia +2024-05-13,69774,8000,"[""Charger""]",1202.56,"{""loyalty"": ""11%""}",140958,0,Asia +2023-02-15,69775,692,"[""Wireless Mouse""]",3740.01,{},237884,1,North America +2024-12-04,69776,6647,"[""Laptop""]",514.03,"{""seasonal"": ""13%""}",67067,1,Asia +2024-06-10,69777,6264,"[""Keyboard"", ""Tablet"", ""Phone""]",3320.51,{},196616,0,Asia +2024-06-25,69778,8482,"[""Laptop"", ""Charger""]",4000.8,{},31276,1,North America +2023-07-07,69779,7613,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4669.44,{},38609,1,South America +2024-05-10,69780,5688,"[""Charger"", ""Monitor"", ""Keyboard""]",876.82,{},234956,1,Africa +2023-06-26,69781,7333,"[""Phone"", ""Laptop""]",3253.81,{},52592,0,Asia +2023-06-16,69782,4007,"[""Monitor""]",317.13,"{""promo"": ""6%""}",173393,0,South America +2024-10-04,69783,7732,"[""Charger""]",4797.01,"{""loyalty"": ""8%""}",241598,0,North America +2023-08-02,69784,496,"[""Headphones"", ""Charger""]",3134.35,"{""seasonal"": ""7%""}",288124,1,Asia +2024-09-03,69785,7592,"[""Monitor""]",3574.87,{},163260,1,North America +2024-07-18,69786,6838,"[""Headphones""]",4969.01,{},247969,1,North America +2023-11-16,69787,3677,"[""Monitor"", ""Headphones""]",2750.7,"{"""": ""23%""}",37344,1,Europe +2024-03-18,69788,6954,"[""Charger"", ""Keyboard""]",946.36,"{""loyalty"": ""13%""}",241079,0,Asia +2024-06-01,69789,7441,"[""Charger""]",4687.48,"{""seasonal"": ""11%""}",215857,1,South America +2024-08-13,69790,9395,"[""Charger""]",2332.47,"{""seasonal"": ""5%""}",193887,1,Asia +2023-02-20,69791,3621,"[""Keyboard"", ""Laptop""]",1138.95,{},48521,0,Europe +2024-04-05,69792,7226,"[""Wireless Mouse"", ""Headphones""]",3184.89,"{""loyalty"": ""29%""}",67082,1,South America +2024-05-16,69793,7902,"[""Charger"", ""Keyboard"", ""Tablet""]",3304.88,{},175564,0,Asia +2023-06-04,69794,6855,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3900.55,{},254927,0,Europe +2023-01-27,69795,2449,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2070.81,{},188770,0,Africa +2024-03-16,69796,2950,"[""Headphones"", ""Monitor"", ""Keyboard""]",1543.85,{},261257,1,Africa +2024-08-29,69797,7823,"[""Tablet"", ""Headphones"", ""Keyboard""]",3232.95,"{""loyalty"": ""21%""}",256560,0,South America +2023-07-16,69798,5528,"[""Charger"", ""Laptop""]",279.9,{},18876,0,Asia +2024-03-09,69799,3691,"[""Headphones"", ""Phone"", ""Monitor""]",89.83,"{""promo"": ""14%""}",247125,0,North America +2023-10-16,69800,2571,"[""Tablet""]",679.81,"{""promo"": ""20%""}",293955,1,South America +2023-12-26,69801,9463,"[""Charger"", ""Laptop"", ""Monitor""]",1152.17,{},132937,1,Asia +2023-12-23,69802,8085,"[""Laptop"", ""Phone"", ""Tablet""]",3420.6,{},264024,1,Africa +2023-12-22,69803,5225,"[""Headphones""]",913.65,"{""seasonal"": ""20%""}",98572,1,Africa +2024-06-03,69804,9619,"[""Tablet""]",3064.42,"{""seasonal"": ""28%""}",231552,1,South America +2024-05-17,69805,1305,"[""Phone"", ""Laptop""]",3960.42,"{""loyalty"": ""8%""}",108719,1,Europe +2024-04-06,69806,5380,"[""Tablet"", ""Charger""]",1093.46,"{"""": ""14%""}",75907,0,Africa +2024-07-24,69807,1328,"[""Tablet"", ""Monitor""]",1734.58,"{"""": ""10%""}",71619,0,Europe +2024-07-09,69808,3865,"[""Tablet"", ""Keyboard""]",1346.14,{},38964,1,Africa +2023-03-13,69809,8836,"[""Monitor"", ""Tablet"", ""Phone""]",765.23,{},8088,1,Asia +2023-03-20,69810,7660,"[""Tablet"", ""Laptop""]",2366.33,{},74151,1,South America +2024-03-06,69811,9798,"[""Tablet""]",1695.94,{},273649,1,Africa +2023-01-17,69812,6329,"[""Headphones"", ""Wireless Mouse""]",3637.88,"{""promo"": ""19%""}",33512,1,North America +2023-04-21,69813,3327,"[""Tablet"", ""Laptop""]",3047.25,{},275761,1,Europe +2024-03-19,69814,5251,"[""Headphones"", ""Phone"", ""Tablet""]",2768.39,{},97482,1,Africa +2024-09-14,69815,7375,"[""Laptop""]",4370.76,{},62660,1,Africa +2023-01-24,69816,4310,"[""Monitor""]",1129.59,{},152952,0,Europe +2023-03-08,69817,1457,"[""Laptop"", ""Wireless Mouse""]",316.36,{},238990,1,Asia +2024-10-04,69818,3285,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2376.24,"{"""": ""20%""}",177022,1,Europe +2023-06-13,69819,600,"[""Monitor""]",3341.61,"{""promo"": ""11%""}",233027,0,Asia +2023-08-10,69820,3914,"[""Charger""]",290.43,"{""seasonal"": ""18%""}",17925,1,Asia +2023-04-10,69821,3057,"[""Charger"", ""Headphones""]",1174.18,{},4298,0,North America +2024-06-23,69822,1396,"[""Laptop"", ""Phone"", ""Headphones""]",181.61,"{""promo"": ""22%""}",148518,0,Europe +2023-08-30,69823,9826,"[""Phone""]",4768.89,"{""promo"": ""17%""}",252132,1,South America +2024-07-01,69824,7800,"[""Charger"", ""Headphones""]",4547.12,{},67742,0,Asia +2024-04-30,69825,3750,"[""Keyboard"", ""Tablet"", ""Laptop""]",4862.83,"{""loyalty"": ""21%""}",176884,0,Africa +2024-09-01,69826,3857,"[""Tablet"", ""Phone""]",2960.27,{},255557,1,South America +2023-04-23,69827,2024,"[""Wireless Mouse""]",1956.21,{},231929,1,South America +2023-07-13,69828,3369,"[""Monitor"", ""Laptop""]",798.37,{},113028,1,Africa +2024-11-18,69829,5699,"[""Tablet""]",2710.26,"{"""": ""18%""}",86095,0,North America +2023-08-29,69830,9070,"[""Keyboard"", ""Monitor"", ""Charger""]",2551.9,{},125682,0,Asia +2024-04-09,69831,261,"[""Phone"", ""Charger"", ""Tablet""]",3063.87,{},58505,0,Africa +2024-01-07,69832,4038,"[""Keyboard"", ""Headphones""]",582.86,"{"""": ""16%""}",158191,0,Europe +2024-05-03,69833,1161,"[""Headphones"", ""Laptop"", ""Keyboard""]",2451.27,{},3690,1,North America +2024-04-25,69834,8395,"[""Tablet"", ""Charger"", ""Keyboard""]",1853.61,"{""loyalty"": ""18%""}",11347,0,North America +2024-04-15,69835,42,"[""Tablet"", ""Laptop""]",3797.96,{},100532,1,Asia +2024-11-13,69836,6247,"[""Headphones""]",4103.3,{},124910,0,South America +2024-04-05,69837,9992,"[""Laptop"", ""Charger""]",3733.78,{},167160,0,Europe +2024-01-28,69838,9462,"[""Headphones"", ""Phone""]",1967.14,{},259937,1,South America +2024-01-22,69839,7024,"[""Phone"", ""Monitor"", ""Charger""]",2918.97,"{"""": ""29%""}",9656,0,South America +2024-09-12,69840,8420,"[""Tablet"", ""Keyboard""]",915.73,"{"""": ""13%""}",93764,1,Europe +2023-03-24,69841,7545,"[""Headphones"", ""Phone""]",1345.85,"{""promo"": ""24%""}",288960,0,Africa +2024-03-01,69842,2830,"[""Monitor""]",4904.08,{},193246,0,Africa +2024-04-11,69843,3965,"[""Wireless Mouse""]",3408.75,"{""loyalty"": ""16%""}",206039,0,Asia +2024-03-25,69844,9321,"[""Phone"", ""Monitor""]",337.07,"{""promo"": ""21%""}",175222,0,Asia +2023-08-22,69845,7241,"[""Charger"", ""Tablet"", ""Headphones""]",693.13,{},4796,1,Europe +2024-11-01,69846,6889,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1130.09,{},296618,1,Asia +2024-03-25,69847,6178,"[""Charger""]",1374.37,{},208624,1,Europe +2024-04-21,69848,2105,"[""Wireless Mouse"", ""Tablet""]",2181.95,"{""seasonal"": ""5%""}",103816,0,Europe +2023-06-14,69849,5133,"[""Headphones"", ""Laptop""]",3475.04,{},9338,0,North America +2023-01-19,69850,988,"[""Phone""]",1326.97,"{""seasonal"": ""24%""}",23239,0,Asia +2024-02-19,69851,6867,"[""Headphones"", ""Phone""]",3147.98,"{""seasonal"": ""23%""}",165344,0,Africa +2024-09-14,69852,648,"[""Monitor""]",1562.05,"{""promo"": ""8%""}",299811,0,Europe +2023-06-08,69853,6973,"[""Wireless Mouse""]",1922.46,{},36300,1,North America +2023-05-11,69854,2791,"[""Charger""]",203.0,"{""promo"": ""29%""}",62627,1,Asia +2023-11-27,69855,2625,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3511.37,{},148575,1,North America +2024-08-07,69856,3764,"[""Keyboard""]",1676.6,{},274835,1,Asia +2023-06-30,69857,4771,"[""Monitor"", ""Tablet""]",3951.13,"{"""": ""25%""}",276555,1,North America +2023-06-29,69858,4595,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2731.35,{},108566,0,South America +2024-01-07,69859,3095,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4083.79,{},162205,0,North America +2023-07-10,69860,8885,"[""Charger""]",1433.94,{},68276,0,North America +2023-06-27,69861,9299,"[""Laptop"", ""Wireless Mouse""]",2694.94,"{""promo"": ""20%""}",202956,1,Europe +2023-09-08,69862,2055,"[""Laptop"", ""Headphones"", ""Keyboard""]",3768.58,{},11003,0,Asia +2023-12-13,69863,5203,"[""Monitor"", ""Phone"", ""Headphones""]",3308.25,"{""promo"": ""24%""}",120420,0,South America +2023-11-16,69864,3032,"[""Phone"", ""Laptop"", ""Tablet""]",420.24,{},181906,0,North America +2023-08-09,69865,4719,"[""Keyboard"", ""Monitor""]",1776.2,{},152058,1,Asia +2023-02-22,69866,5662,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3482.62,"{"""": ""12%""}",160271,0,Africa +2023-02-18,69867,5664,"[""Charger""]",2241.36,"{""promo"": ""5%""}",58049,0,Africa +2023-04-06,69868,1129,"[""Keyboard""]",967.16,{},235388,0,North America +2023-01-25,69869,233,"[""Tablet""]",3265.31,"{""seasonal"": ""5%""}",159896,0,Asia +2024-02-05,69870,1893,"[""Headphones"", ""Keyboard"", ""Tablet""]",522.58,{},266599,0,Africa +2024-09-15,69871,6219,"[""Monitor"", ""Phone""]",4953.19,"{""promo"": ""8%""}",116220,1,Asia +2023-04-14,69872,2910,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2809.36,{},37324,0,South America +2023-10-11,69873,1195,"[""Wireless Mouse""]",4047.23,"{""promo"": ""30%""}",99928,0,Africa +2024-07-28,69874,6838,"[""Headphones"", ""Wireless Mouse""]",4179.21,"{"""": ""18%""}",11584,0,North America +2023-06-27,69875,1720,"[""Charger"", ""Keyboard""]",1251.03,{},277574,0,South America +2023-08-05,69876,6955,"[""Monitor"", ""Tablet""]",1947.88,{},270049,1,Asia +2024-02-10,69877,3446,"[""Headphones"", ""Phone""]",4876.86,{},293462,1,South America +2023-05-11,69878,2700,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4396.46,{},151242,1,South America +2024-12-22,69879,6067,"[""Keyboard""]",1434.08,"{""promo"": ""12%""}",36629,1,Africa +2023-03-31,69880,3780,"[""Charger"", ""Headphones"", ""Phone""]",3295.08,"{"""": ""12%""}",298330,1,North America +2024-04-29,69881,1345,"[""Phone"", ""Wireless Mouse""]",2730.02,{},34552,1,South America +2023-05-25,69882,9060,"[""Charger""]",1786.85,{},74229,0,South America +2024-04-17,69883,1963,"[""Tablet"", ""Laptop"", ""Monitor""]",2922.86,"{""loyalty"": ""30%""}",126878,1,North America +2023-08-08,69884,8379,"[""Laptop"", ""Wireless Mouse""]",53.49,"{""seasonal"": ""15%""}",69043,0,Asia +2023-03-15,69885,6056,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1535.02,"{""seasonal"": ""24%""}",86081,1,Europe +2024-02-25,69886,3206,"[""Monitor""]",449.67,{},253893,1,Africa +2023-04-17,69887,9023,"[""Headphones""]",1875.24,"{""loyalty"": ""15%""}",211762,1,Africa +2024-08-31,69888,4626,"[""Charger"", ""Monitor""]",1104.51,"{""loyalty"": ""29%""}",6867,1,Asia +2024-08-27,69889,1082,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1525.4,{},249296,1,Africa +2024-10-04,69890,5842,"[""Charger""]",2308.09,{},45902,1,Asia +2024-04-18,69891,9702,"[""Headphones"", ""Charger"", ""Phone""]",399.93,"{""loyalty"": ""21%""}",223266,0,Asia +2023-06-04,69892,6263,"[""Monitor""]",923.9,"{""loyalty"": ""14%""}",61996,1,Africa +2024-02-03,69893,7014,"[""Laptop"", ""Keyboard"", ""Phone""]",2052.1,{},210757,0,Africa +2023-01-23,69894,1305,"[""Laptop""]",602.33,"{""seasonal"": ""30%""}",33976,0,Asia +2023-02-22,69895,7019,"[""Wireless Mouse"", ""Headphones""]",4002.32,{},19381,0,Africa +2024-03-17,69896,2240,"[""Keyboard""]",3800.59,"{"""": ""14%""}",65488,0,Africa +2024-05-04,69897,8953,"[""Headphones"", ""Tablet"", ""Charger""]",1688.57,{},235544,1,Asia +2024-06-18,69898,8067,"[""Phone"", ""Tablet"", ""Monitor""]",1054.31,{},79780,0,Asia +2024-11-13,69899,7042,"[""Charger""]",54.88,{},123972,1,South America +2023-02-05,69900,8574,"[""Monitor"", ""Charger"", ""Headphones""]",3704.01,{},138345,1,Africa +2023-06-19,69901,9934,"[""Headphones"", ""Laptop"", ""Charger""]",1370.26,{},118473,1,Asia +2024-06-07,69902,5702,"[""Tablet"", ""Monitor""]",2660.85,{},271316,1,Africa +2023-05-07,69903,9906,"[""Keyboard"", ""Monitor"", ""Charger""]",257.01,{},161018,0,Africa +2024-02-18,69904,6809,"[""Headphones"", ""Charger""]",307.7,{},167261,1,Africa +2023-12-30,69905,3868,"[""Headphones""]",3985.13,{},284596,0,North America +2024-01-11,69906,636,"[""Laptop""]",3753.37,"{""loyalty"": ""16%""}",188292,1,North America +2023-12-13,69907,3111,"[""Charger""]",1239.96,"{""loyalty"": ""14%""}",224976,0,South America +2024-09-16,69908,497,"[""Monitor""]",1869.57,"{"""": ""30%""}",108109,0,South America +2023-08-03,69909,5760,"[""Charger""]",3085.6,"{""promo"": ""28%""}",182631,1,South America +2023-10-19,69910,1113,"[""Keyboard""]",2174.26,"{""promo"": ""28%""}",66906,0,Asia +2023-12-17,69911,9708,"[""Monitor""]",3463.51,{},268756,0,South America +2023-06-11,69912,6279,"[""Tablet""]",1226.25,"{"""": ""15%""}",199336,1,South America +2024-05-11,69913,3968,"[""Wireless Mouse"", ""Keyboard""]",1525.3,"{""seasonal"": ""16%""}",251389,1,Europe +2023-07-09,69914,7438,"[""Phone"", ""Laptop""]",799.52,{},247307,1,Europe +2023-02-03,69915,1767,"[""Tablet"", ""Wireless Mouse""]",1767.32,{},155918,0,Europe +2023-12-05,69916,4733,"[""Laptop"", ""Tablet"", ""Phone""]",1295.15,{},185317,0,Africa +2024-08-06,69917,8057,"[""Wireless Mouse""]",2473.87,"{""promo"": ""23%""}",182401,0,South America +2024-11-26,69918,194,"[""Wireless Mouse"", ""Tablet""]",4315.64,{},61518,0,Africa +2024-12-20,69919,2420,"[""Tablet""]",2648.21,"{""loyalty"": ""13%""}",271887,0,Europe +2023-07-15,69920,5210,"[""Monitor"", ""Tablet""]",962.9,{},285494,1,Europe +2023-11-21,69921,6831,"[""Tablet"", ""Wireless Mouse""]",1259.28,"{""loyalty"": ""30%""}",150220,0,Africa +2024-04-26,69922,9978,"[""Wireless Mouse"", ""Keyboard""]",3549.97,"{""loyalty"": ""21%""}",230746,0,Africa +2024-07-23,69923,6109,"[""Monitor"", ""Charger""]",2722.26,{},99293,0,Africa +2023-09-02,69924,4870,"[""Keyboard"", ""Phone"", ""Headphones""]",3158.13,"{""loyalty"": ""28%""}",122498,1,North America +2023-01-22,69925,9,"[""Wireless Mouse"", ""Headphones""]",1053.47,"{"""": ""10%""}",48385,1,Asia +2024-08-09,69926,2433,"[""Tablet"", ""Phone""]",2324.12,"{"""": ""15%""}",159692,1,South America +2023-06-01,69927,9704,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3296.64,{},268545,0,Asia +2023-02-11,69928,6216,"[""Phone""]",4140.61,{},53862,1,North America +2024-09-03,69929,7030,"[""Headphones"", ""Tablet""]",3171.47,"{""seasonal"": ""26%""}",141404,1,Asia +2024-07-20,69930,996,"[""Charger"", ""Tablet""]",1315.82,{},190912,0,Africa +2023-07-23,69931,7898,"[""Keyboard""]",3754.69,{},169574,0,North America +2024-10-20,69932,9262,"[""Keyboard"", ""Monitor""]",2414.96,{},110157,1,Africa +2023-01-03,69933,7576,"[""Wireless Mouse"", ""Monitor""]",473.56,"{""seasonal"": ""26%""}",155784,0,Asia +2023-11-20,69934,3679,"[""Tablet"", ""Headphones""]",2644.6,"{"""": ""7%""}",250779,1,South America +2023-05-20,69935,5653,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4851.3,{},99860,1,Asia +2024-03-19,69936,3605,"[""Monitor""]",4228.21,{},73940,0,Africa +2024-06-27,69937,8728,"[""Monitor""]",1878.04,{},187198,1,Europe +2023-03-05,69938,906,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4299.1,{},257166,0,Africa +2023-10-11,69939,4102,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4933.72,"{""loyalty"": ""25%""}",153183,1,Asia +2024-03-10,69940,344,"[""Headphones"", ""Phone"", ""Tablet""]",1076.67,"{"""": ""14%""}",235116,0,South America +2024-04-23,69941,3938,"[""Charger"", ""Monitor"", ""Laptop""]",4964.57,{},293221,0,Asia +2023-05-12,69942,9462,"[""Headphones""]",4925.45,{},153912,0,Africa +2024-05-13,69943,4225,"[""Wireless Mouse"", ""Monitor""]",3401.31,{},91972,0,North America +2023-04-17,69944,5245,"[""Tablet"", ""Keyboard""]",3008.13,{},162072,0,Europe +2024-03-11,69945,2511,"[""Laptop"", ""Monitor"", ""Phone""]",758.67,{},8042,1,Asia +2024-05-03,69946,8000,"[""Wireless Mouse"", ""Monitor""]",1996.94,{},36152,1,South America +2024-02-19,69947,688,"[""Keyboard"", ""Headphones"", ""Tablet""]",631.13,"{"""": ""21%""}",13427,1,South America +2023-04-11,69948,9396,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2762.67,"{""seasonal"": ""16%""}",243052,0,Europe +2024-02-14,69949,4667,"[""Monitor"", ""Laptop"", ""Keyboard""]",1006.67,{},215669,0,Africa +2024-03-10,69950,9081,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2440.88,{},234976,0,South America +2024-12-11,69951,379,"[""Monitor""]",3447.05,{},25371,1,North America +2023-07-30,69952,8192,"[""Phone""]",2675.54,{},221369,0,Africa +2024-08-06,69953,4983,"[""Laptop"", ""Tablet""]",3801.35,"{""loyalty"": ""28%""}",206774,1,North America +2023-09-05,69954,3184,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2573.64,"{""promo"": ""6%""}",38826,0,Asia +2023-12-19,69955,7947,"[""Laptop""]",4473.85,"{""promo"": ""16%""}",213337,0,Europe +2024-05-26,69956,8937,"[""Keyboard""]",1785.42,{},139790,0,Asia +2023-10-22,69957,8173,"[""Tablet""]",965.46,{},268191,0,Asia +2023-12-13,69958,8433,"[""Phone"", ""Headphones""]",3336.84,"{""promo"": ""7%""}",126520,0,Europe +2024-01-09,69959,9573,"[""Keyboard""]",2133.21,{},67207,1,North America +2023-05-08,69960,6316,"[""Tablet"", ""Laptop""]",522.95,"{""loyalty"": ""12%""}",212769,0,Asia +2023-12-13,69961,336,"[""Tablet""]",4990.54,{},239890,1,Africa +2023-11-29,69962,2414,"[""Wireless Mouse""]",156.98,"{"""": ""18%""}",101504,1,Asia +2023-12-24,69963,6170,"[""Keyboard"", ""Monitor"", ""Headphones""]",1776.0,"{""seasonal"": ""8%""}",65737,0,Asia +2024-07-28,69964,4852,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",592.2,"{"""": ""27%""}",185748,0,Africa +2023-08-04,69965,6928,"[""Charger"", ""Monitor""]",2775.19,"{""seasonal"": ""30%""}",269831,1,South America +2024-10-17,69966,7656,"[""Tablet"", ""Monitor"", ""Laptop""]",956.81,{},92319,0,Africa +2024-05-25,69967,5838,"[""Phone"", ""Tablet"", ""Headphones""]",3340.62,"{""seasonal"": ""12%""}",234815,1,Africa +2023-06-05,69968,6223,"[""Laptop""]",3705.28,"{"""": ""7%""}",172710,1,Africa +2023-09-19,69969,2137,"[""Tablet""]",3049.47,{},142586,0,Africa +2024-11-20,69970,1953,"[""Wireless Mouse"", ""Monitor""]",3474.73,{},136425,1,Asia +2023-10-30,69971,6078,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2829.77,{},299857,1,Europe +2024-02-10,69972,1738,"[""Monitor""]",253.29,"{""loyalty"": ""22%""}",113579,1,Europe +2023-11-13,69973,9741,"[""Wireless Mouse"", ""Monitor""]",2708.83,{},242133,1,North America +2024-10-30,69974,3709,"[""Laptop"", ""Phone""]",2992.1,"{""seasonal"": ""6%""}",279236,1,Asia +2023-01-01,69975,3053,"[""Keyboard""]",3721.94,{},76644,0,Asia +2024-07-03,69976,5998,"[""Laptop""]",4602.48,"{""loyalty"": ""21%""}",206254,0,South America +2023-06-08,69977,7173,"[""Monitor""]",3873.28,"{""loyalty"": ""5%""}",46408,0,South America +2023-11-10,69978,2758,"[""Charger"", ""Keyboard"", ""Laptop""]",2509.75,{},95987,0,Europe +2024-01-11,69979,6086,"[""Tablet""]",1797.29,{},22757,1,North America +2024-09-13,69980,1044,"[""Laptop""]",1537.47,"{"""": ""15%""}",59098,0,North America +2024-02-22,69981,3759,"[""Monitor""]",585.16,{},291783,1,North America +2024-12-16,69982,5522,"[""Monitor""]",2973.36,"{""seasonal"": ""19%""}",251435,0,Asia +2024-06-16,69983,5669,"[""Tablet"", ""Monitor"", ""Headphones""]",795.04,{},29808,1,North America +2024-07-09,69984,6902,"[""Laptop"", ""Wireless Mouse""]",3391.19,"{"""": ""10%""}",104661,1,Europe +2024-07-06,69985,2995,"[""Tablet""]",2151.82,{},187749,1,Asia +2024-09-17,69986,4949,"[""Tablet""]",4386.17,{},7101,0,Asia +2024-09-25,69987,1590,"[""Headphones"", ""Keyboard"", ""Tablet""]",3465.53,{},94519,1,South America +2024-05-10,69988,9008,"[""Phone""]",3786.57,{},25775,1,Europe +2024-08-29,69989,7459,"[""Laptop""]",2634.53,{},158266,1,South America +2024-06-02,69990,6293,"[""Laptop"", ""Phone""]",4980.28,{},37284,0,North America +2024-11-02,69991,8566,"[""Wireless Mouse""]",2602.78,"{""promo"": ""15%""}",78148,0,Africa +2023-11-24,69992,3532,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1310.89,{},164053,1,South America +2023-12-11,69993,1610,"[""Laptop"", ""Monitor""]",1006.84,{},8788,1,North America +2023-10-09,69994,8268,"[""Wireless Mouse""]",551.35,{},87799,1,Europe +2023-07-16,69995,7911,"[""Headphones"", ""Tablet"", ""Charger""]",1227.86,{},224208,1,Europe +2024-06-27,69996,8932,"[""Charger""]",345.14,{},231113,0,Africa +2024-06-12,69997,7416,"[""Laptop"", ""Keyboard""]",3834.57,"{"""": ""29%""}",106993,0,South America +2024-09-24,69998,3226,"[""Laptop""]",2644.87,"{""seasonal"": ""30%""}",145263,1,South America +2023-11-23,69999,8970,"[""Laptop""]",606.89,{},102109,0,Europe +2023-04-12,70000,5703,"[""Phone"", ""Headphones""]",3817.64,{},121868,1,South America +2024-07-16,70001,8872,"[""Charger"", ""Monitor"", ""Phone""]",2215.88,{},289585,0,Europe +2024-09-05,70002,2159,"[""Headphones"", ""Charger"", ""Laptop""]",2243.17,{},206613,1,Asia +2024-04-03,70003,4504,"[""Phone"", ""Charger"", ""Keyboard""]",4995.44,"{""promo"": ""22%""}",196279,0,Europe +2024-02-26,70004,2943,"[""Monitor""]",804.52,{},134930,0,South America +2024-07-18,70005,6807,"[""Keyboard"", ""Headphones""]",3645.67,{},154906,0,North America +2023-06-19,70006,4996,"[""Laptop"", ""Headphones"", ""Keyboard""]",3933.98,{},86660,0,South America +2024-03-30,70007,2241,"[""Laptop"", ""Keyboard""]",1877.34,{},136157,1,South America +2023-03-15,70008,9623,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1415.78,{},244867,0,Africa +2023-07-20,70009,1616,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1585.43,{},150578,0,Asia +2023-10-27,70010,2995,"[""Keyboard""]",205.4,{},5802,0,Asia +2023-10-13,70011,2478,"[""Phone"", ""Charger""]",2527.14,"{""seasonal"": ""26%""}",128571,0,Europe +2023-08-08,70012,2818,"[""Headphones"", ""Tablet""]",4023.21,{},174661,1,Africa +2023-04-30,70013,2688,"[""Wireless Mouse"", ""Phone""]",57.7,"{"""": ""12%""}",103769,0,Africa +2024-02-10,70014,2535,"[""Phone"", ""Tablet""]",4197.12,"{""seasonal"": ""6%""}",268580,0,South America +2024-08-29,70015,1173,"[""Monitor"", ""Laptop"", ""Phone""]",3157.93,{},254248,0,Europe +2023-01-23,70016,1925,"[""Tablet""]",3712.23,"{"""": ""8%""}",140269,0,Africa +2023-12-24,70017,6764,"[""Charger""]",2102.79,"{"""": ""15%""}",95502,0,North America +2024-04-12,70018,7412,"[""Laptop""]",4076.23,"{""seasonal"": ""21%""}",142887,0,North America +2024-07-11,70019,1911,"[""Tablet"", ""Monitor""]",576.46,"{"""": ""26%""}",135649,0,North America +2023-04-19,70020,159,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3877.94,"{""loyalty"": ""10%""}",216309,0,North America +2024-02-24,70021,7426,"[""Wireless Mouse""]",504.02,"{""promo"": ""16%""}",207243,0,Europe +2023-03-21,70022,7741,"[""Laptop"", ""Tablet"", ""Monitor""]",1318.38,"{""seasonal"": ""9%""}",56073,0,North America +2024-09-16,70023,8869,"[""Monitor""]",3344.76,"{""promo"": ""23%""}",130621,0,Africa +2023-11-08,70024,4410,"[""Wireless Mouse"", ""Laptop""]",977.34,"{""seasonal"": ""17%""}",259685,0,North America +2024-04-20,70025,6187,"[""Headphones"", ""Charger""]",1765.18,{},125412,1,North America +2024-11-06,70026,7179,"[""Phone"", ""Headphones""]",892.95,{},78131,1,Europe +2023-12-17,70027,1414,"[""Wireless Mouse"", ""Tablet""]",2714.28,"{"""": ""20%""}",175397,1,South America +2023-06-24,70028,4890,"[""Laptop"", ""Tablet"", ""Keyboard""]",1806.84,{},249774,1,Asia +2024-09-19,70029,1058,"[""Laptop"", ""Headphones""]",177.97,{},132465,1,Asia +2024-06-05,70030,3950,"[""Tablet""]",602.19,{},258648,0,South America +2023-05-28,70031,1787,"[""Phone""]",4617.45,"{""seasonal"": ""26%""}",237493,1,Africa +2023-06-20,70032,1361,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3963.92,"{"""": ""19%""}",24633,0,Europe +2024-11-22,70033,8088,"[""Phone""]",1658.68,{},220643,1,Europe +2024-06-03,70034,7844,"[""Laptop""]",104.23,"{""promo"": ""14%""}",228044,1,Africa +2023-10-12,70035,7459,"[""Charger"", ""Tablet""]",3723.23,{},250466,0,Europe +2024-10-18,70036,7791,"[""Wireless Mouse""]",107.61,"{""promo"": ""10%""}",94986,0,South America +2023-08-10,70037,1844,"[""Tablet"", ""Wireless Mouse""]",3710.78,{},26380,0,Africa +2023-10-06,70038,7249,"[""Monitor""]",3410.11,{},114334,0,South America +2024-12-07,70039,5376,"[""Headphones""]",112.28,"{""loyalty"": ""13%""}",65814,0,Europe +2024-10-04,70040,577,"[""Phone"", ""Keyboard""]",3627.6,"{""loyalty"": ""20%""}",154480,1,South America +2024-11-02,70041,3171,"[""Phone""]",2159.73,"{"""": ""15%""}",130982,0,South America +2024-05-01,70042,3063,"[""Tablet""]",983.27,{},256656,0,Europe +2023-10-31,70043,4625,"[""Keyboard"", ""Charger""]",3777.75,{},158220,0,Europe +2023-11-12,70044,9737,"[""Laptop"", ""Tablet""]",2524.64,"{""seasonal"": ""23%""}",112112,0,Africa +2023-08-07,70045,5159,"[""Monitor""]",1072.71,{},277764,1,Asia +2023-05-19,70046,8442,"[""Phone""]",1169.94,"{""promo"": ""6%""}",183166,1,South America +2024-07-16,70047,3206,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2488.07,"{""promo"": ""9%""}",170200,1,Asia +2024-06-09,70048,1364,"[""Wireless Mouse""]",1763.86,{},297431,0,Africa +2024-08-25,70049,3247,"[""Keyboard"", ""Tablet"", ""Monitor""]",1935.95,{},239513,1,North America +2023-01-04,70050,2363,"[""Tablet"", ""Laptop""]",4650.95,"{""seasonal"": ""7%""}",73340,1,South America +2023-11-14,70051,3067,"[""Headphones""]",163.19,"{""loyalty"": ""12%""}",119302,0,Asia +2024-01-17,70052,6658,"[""Charger"", ""Wireless Mouse""]",85.23,{},277371,1,North America +2024-08-15,70053,1131,"[""Keyboard"", ""Phone""]",4546.15,{},81821,0,Europe +2023-12-26,70054,3709,"[""Tablet"", ""Laptop"", ""Charger""]",2205.9,{},272371,1,North America +2023-09-02,70055,4223,"[""Keyboard""]",4305.97,{},3723,1,Asia +2023-08-15,70056,2973,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",97.67,"{"""": ""23%""}",106733,1,South America +2024-01-07,70057,5529,"[""Keyboard""]",3669.5,{},78727,1,Africa +2023-02-20,70058,3818,"[""Wireless Mouse""]",4657.05,"{""seasonal"": ""14%""}",78378,1,North America +2023-08-18,70059,869,"[""Headphones""]",169.15,"{""loyalty"": ""7%""}",11865,0,South America +2023-04-27,70060,9148,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2787.02,{},152249,0,Asia +2023-01-26,70061,6828,"[""Phone"", ""Wireless Mouse""]",3336.13,{},247225,0,Africa +2023-01-03,70062,8750,"[""Keyboard"", ""Phone""]",3912.9,{},228073,0,South America +2023-08-15,70063,9389,"[""Laptop"", ""Wireless Mouse""]",1532.72,{},198393,1,North America +2023-11-09,70064,8947,"[""Phone""]",1413.64,"{""seasonal"": ""23%""}",187064,0,South America +2024-06-02,70065,4703,"[""Tablet"", ""Monitor""]",4109.48,{},9100,1,South America +2024-04-04,70066,9064,"[""Laptop"", ""Monitor"", ""Keyboard""]",1190.05,{},282154,0,South America +2023-11-07,70067,5550,"[""Tablet"", ""Phone""]",611.88,"{""seasonal"": ""17%""}",182194,1,Africa +2023-05-07,70068,9675,"[""Keyboard""]",743.4,"{""loyalty"": ""17%""}",92031,1,North America +2023-11-15,70069,6317,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2556.46,{},138916,1,North America +2024-12-18,70070,2727,"[""Phone"", ""Tablet""]",4813.78,"{""loyalty"": ""5%""}",208872,0,South America +2024-07-12,70071,9158,"[""Keyboard"", ""Monitor"", ""Charger""]",1176.34,"{"""": ""10%""}",236052,1,South America +2024-05-02,70072,5235,"[""Tablet"", ""Charger"", ""Monitor""]",3140.26,{},62694,1,South America +2024-07-09,70073,5755,"[""Monitor""]",2187.73,"{""promo"": ""22%""}",149516,0,Africa +2023-08-15,70074,27,"[""Charger"", ""Headphones"", ""Laptop""]",3716.95,"{""loyalty"": ""21%""}",277284,1,North America +2023-02-17,70075,9934,"[""Headphones""]",2858.57,"{""promo"": ""8%""}",200956,1,Asia +2023-01-01,70076,1377,"[""Wireless Mouse"", ""Phone""]",3967.7,"{""seasonal"": ""17%""}",108077,0,North America +2023-11-30,70077,6205,"[""Charger"", ""Phone"", ""Headphones""]",1732.55,{},124668,1,Europe +2023-12-28,70078,3845,"[""Wireless Mouse"", ""Monitor""]",3129.66,{},248293,0,Africa +2023-11-09,70079,3131,"[""Wireless Mouse"", ""Headphones""]",3496.27,{},191153,1,Africa +2023-05-01,70080,3575,"[""Headphones"", ""Laptop"", ""Charger""]",3768.19,"{"""": ""16%""}",112023,1,Asia +2023-12-24,70081,7025,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4830.78,"{""promo"": ""27%""}",234293,0,Europe +2024-07-07,70082,6633,"[""Laptop"", ""Tablet""]",1597.11,"{"""": ""20%""}",211474,0,Europe +2023-06-16,70083,2489,"[""Keyboard"", ""Tablet"", ""Laptop""]",2759.53,"{"""": ""8%""}",206433,0,Europe +2024-08-07,70084,8373,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1154.61,{},277421,0,North America +2024-06-27,70085,802,"[""Phone"", ""Keyboard"", ""Laptop""]",3213.61,"{"""": ""10%""}",53228,1,Africa +2024-05-31,70086,4234,"[""Phone"", ""Laptop"", ""Charger""]",4269.87,{},187783,1,Asia +2024-10-17,70087,7886,"[""Headphones"", ""Charger""]",2752.7,{},275924,0,Africa +2023-06-28,70088,2299,"[""Tablet"", ""Headphones"", ""Laptop""]",1444.15,{},175205,0,Asia +2024-12-26,70089,953,"[""Keyboard"", ""Laptop""]",254.49,"{""promo"": ""29%""}",118064,1,Asia +2023-06-16,70090,3082,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2314.95,"{""loyalty"": ""14%""}",196064,1,Asia +2024-01-31,70091,2073,"[""Charger"", ""Keyboard""]",458.87,"{""promo"": ""5%""}",162291,0,South America +2024-04-29,70092,9305,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4764.29,{},31018,1,North America +2024-08-17,70093,2256,"[""Wireless Mouse""]",2801.42,"{""loyalty"": ""25%""}",287051,0,South America +2024-10-29,70094,1692,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4744.45,{},207194,1,North America +2024-04-19,70095,4200,"[""Wireless Mouse""]",4431.71,"{"""": ""15%""}",110765,1,Europe +2024-04-11,70096,8613,"[""Phone""]",2543.96,{},47829,1,Asia +2023-02-23,70097,5063,"[""Headphones""]",1782.01,"{""promo"": ""10%""}",242467,0,North America +2024-04-26,70098,175,"[""Tablet"", ""Phone"", ""Headphones""]",1674.27,{},194643,0,Europe +2024-07-01,70099,347,"[""Keyboard""]",1784.18,"{""seasonal"": ""10%""}",27744,0,Asia +2024-12-08,70100,5904,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",250.89,"{"""": ""20%""}",257331,0,Asia +2023-10-07,70101,9305,"[""Headphones"", ""Tablet"", ""Laptop""]",3103.17,{},271615,1,Asia +2023-01-26,70102,6289,"[""Monitor"", ""Laptop"", ""Headphones""]",2038.33,"{""seasonal"": ""18%""}",139504,1,Asia +2024-09-16,70103,2585,"[""Laptop""]",2630.81,{},51658,1,Europe +2023-07-05,70104,1829,"[""Charger"", ""Headphones"", ""Tablet""]",1407.83,{},259661,0,South America +2023-05-21,70105,4668,"[""Tablet"", ""Wireless Mouse""]",4384.44,"{""promo"": ""7%""}",296966,0,Europe +2023-05-01,70106,1326,"[""Laptop""]",89.49,{},290474,1,Asia +2023-04-19,70107,246,"[""Headphones""]",2831.71,"{""seasonal"": ""20%""}",117423,1,North America +2024-11-12,70108,8371,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4177.96,{},100350,0,South America +2023-12-17,70109,357,"[""Tablet"", ""Monitor"", ""Charger""]",4761.3,"{""loyalty"": ""14%""}",190942,0,South America +2023-06-10,70110,8485,"[""Monitor"", ""Laptop""]",2707.09,"{"""": ""18%""}",189549,0,Asia +2023-12-28,70111,1740,"[""Charger""]",2549.31,"{""promo"": ""22%""}",9074,0,South America +2023-01-11,70112,9847,"[""Phone"", ""Charger"", ""Laptop""]",647.62,"{"""": ""15%""}",166958,0,North America +2023-11-22,70113,644,"[""Headphones"", ""Monitor"", ""Charger""]",856.02,{},18343,0,Asia +2024-12-17,70114,5840,"[""Wireless Mouse"", ""Tablet""]",2714.65,{},140743,1,South America +2024-12-23,70115,5177,"[""Phone"", ""Monitor"", ""Keyboard""]",352.29,"{""seasonal"": ""17%""}",218330,0,Europe +2024-05-02,70116,5454,"[""Wireless Mouse"", ""Phone""]",974.35,"{""seasonal"": ""26%""}",161480,0,Africa +2024-09-26,70117,6561,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4686.39,"{""seasonal"": ""19%""}",237503,0,South America +2024-02-11,70118,3304,"[""Tablet"", ""Laptop"", ""Charger""]",531.31,{},214783,1,Africa +2024-03-11,70119,6240,"[""Headphones""]",4583.2,{},177756,1,North America +2023-01-20,70120,357,"[""Wireless Mouse"", ""Laptop""]",2441.94,{},60278,1,Africa +2024-04-26,70121,6895,"[""Laptop""]",3579.91,"{"""": ""22%""}",196520,1,Africa +2024-08-20,70122,1,"[""Tablet""]",565.71,{},256474,0,North America +2023-11-08,70123,8809,"[""Monitor"", ""Wireless Mouse""]",949.01,{},252662,0,Africa +2024-01-14,70124,221,"[""Monitor""]",2730.22,{},220333,1,Asia +2024-08-25,70125,6579,"[""Charger"", ""Monitor"", ""Tablet""]",2768.06,"{"""": ""27%""}",227249,1,Africa +2024-06-23,70126,7288,"[""Keyboard"", ""Charger""]",4872.07,"{""promo"": ""7%""}",221964,0,Europe +2023-11-28,70127,6693,"[""Tablet"", ""Keyboard"", ""Phone""]",1824.27,"{""seasonal"": ""29%""}",176731,1,Europe +2023-10-11,70128,2722,"[""Keyboard"", ""Monitor"", ""Charger""]",2140.04,{},177720,0,Europe +2023-03-12,70129,7805,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3105.2,"{""loyalty"": ""18%""}",102201,1,Asia +2024-10-19,70130,2810,"[""Charger""]",3347.1,{},105530,1,Europe +2023-07-23,70131,5124,"[""Keyboard"", ""Charger""]",1813.75,"{""promo"": ""25%""}",71090,1,South America +2024-08-02,70132,4712,"[""Monitor"", ""Laptop"", ""Keyboard""]",1074.37,"{""seasonal"": ""20%""}",45876,0,Asia +2024-02-25,70133,8121,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4230.36,{},84469,1,Europe +2023-02-08,70134,7670,"[""Wireless Mouse"", ""Headphones""]",3774.79,{},253402,1,Africa +2024-06-11,70135,5779,"[""Headphones"", ""Tablet""]",4852.33,"{""seasonal"": ""23%""}",89877,1,Asia +2023-03-05,70136,3149,"[""Phone""]",613.32,{},168176,0,Asia +2024-10-29,70137,2163,"[""Monitor"", ""Headphones"", ""Tablet""]",3813.82,{},185911,0,South America +2023-01-25,70138,9215,"[""Tablet"", ""Monitor""]",1700.5,"{"""": ""17%""}",258816,1,Europe +2023-04-12,70139,8853,"[""Tablet"", ""Laptop"", ""Headphones""]",3475.16,"{""seasonal"": ""28%""}",205042,1,Europe +2024-04-15,70140,8236,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2942.68,"{""loyalty"": ""16%""}",41914,0,Asia +2024-02-03,70141,6170,"[""Keyboard"", ""Charger""]",329.46,{},145804,1,Europe +2024-10-24,70142,4707,"[""Headphones"", ""Phone""]",4951.66,"{""loyalty"": ""30%""}",239009,1,Africa +2023-01-21,70143,9204,"[""Keyboard"", ""Charger"", ""Phone""]",3238.55,"{""promo"": ""6%""}",185551,0,South America +2024-01-22,70144,9853,"[""Wireless Mouse""]",2947.61,{},27267,0,Europe +2023-06-06,70145,6491,"[""Wireless Mouse""]",250.85,"{""loyalty"": ""28%""}",146176,0,North America +2023-11-24,70146,2033,"[""Phone"", ""Tablet""]",3107.56,"{"""": ""6%""}",195226,1,Africa +2024-04-09,70147,1334,"[""Tablet"", ""Wireless Mouse""]",3169.88,{},195216,0,Europe +2023-03-05,70148,9746,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2388.0,{},11736,0,South America +2023-10-25,70149,2737,"[""Tablet""]",4377.9,"{"""": ""7%""}",68065,0,North America +2023-05-17,70150,6383,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",738.95,"{"""": ""22%""}",265019,0,Asia +2024-08-13,70151,7025,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",112.57,{},46283,1,Asia +2024-04-10,70152,1366,"[""Phone"", ""Keyboard""]",345.88,"{""seasonal"": ""5%""}",109497,1,North America +2023-05-01,70153,2262,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1604.41,"{""seasonal"": ""26%""}",173836,1,North America +2023-04-08,70154,3361,"[""Laptop"", ""Headphones"", ""Charger""]",1737.82,"{""seasonal"": ""25%""}",284484,0,Asia +2024-08-14,70155,1294,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4518.67,{},196188,0,Europe +2024-12-27,70156,8262,"[""Charger""]",4430.33,"{""loyalty"": ""21%""}",298757,1,Asia +2023-09-19,70157,1730,"[""Monitor""]",2943.01,{},20726,1,South America +2024-07-17,70158,8651,"[""Charger""]",1858.97,"{"""": ""27%""}",3300,0,Asia +2023-02-02,70159,1063,"[""Phone"", ""Headphones"", ""Monitor""]",972.62,{},221675,0,Africa +2024-12-30,70160,6573,"[""Wireless Mouse""]",4906.38,{},198149,0,Asia +2023-03-24,70161,2206,"[""Charger"", ""Monitor"", ""Keyboard""]",4722.86,{},123226,0,Europe +2023-09-27,70162,3984,"[""Keyboard"", ""Tablet"", ""Headphones""]",166.94,"{""promo"": ""27%""}",151722,1,North America +2024-05-17,70163,4837,"[""Wireless Mouse""]",4218.99,"{""seasonal"": ""23%""}",234987,1,Europe +2024-07-23,70164,4799,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1292.85,"{"""": ""19%""}",74551,0,South America +2023-10-22,70165,5118,"[""Laptop"", ""Charger""]",3998.09,"{""promo"": ""12%""}",205950,1,Africa +2023-03-19,70166,2573,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1275.1,"{"""": ""9%""}",293804,0,Europe +2024-02-25,70167,8912,"[""Laptop""]",4848.37,{},178543,1,North America +2023-09-22,70168,7193,"[""Keyboard"", ""Tablet"", ""Monitor""]",2996.95,"{""seasonal"": ""15%""}",154544,0,Africa +2024-08-29,70169,2557,"[""Phone""]",672.17,"{"""": ""19%""}",265436,1,Africa +2023-10-03,70170,5511,"[""Charger"", ""Monitor""]",1450.59,"{""loyalty"": ""7%""}",143394,0,Africa +2024-11-21,70171,6206,"[""Laptop""]",1584.87,"{""loyalty"": ""24%""}",176372,0,Europe +2023-05-09,70172,7163,"[""Phone"", ""Headphones""]",622.2,{},171676,1,Asia +2024-12-02,70173,9993,"[""Phone""]",3282.89,{},294308,1,Europe +2024-11-04,70174,8581,"[""Tablet""]",4794.35,"{""loyalty"": ""10%""}",205111,0,Asia +2024-04-28,70175,9281,"[""Laptop""]",2120.92,{},66253,0,Asia +2024-04-13,70176,9191,"[""Headphones"", ""Laptop""]",2518.42,"{""seasonal"": ""12%""}",265564,1,Asia +2024-06-19,70177,3227,"[""Keyboard"", ""Phone"", ""Laptop""]",3777.88,"{""promo"": ""23%""}",29821,0,Africa +2023-03-06,70178,9869,"[""Tablet"", ""Keyboard""]",886.88,"{""promo"": ""20%""}",247453,1,North America +2023-08-25,70179,764,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3923.87,"{""promo"": ""8%""}",41783,1,Asia +2023-06-29,70180,1521,"[""Monitor""]",4102.84,{},167523,1,Asia +2023-05-17,70181,7448,"[""Laptop"", ""Wireless Mouse""]",1691.75,"{""seasonal"": ""27%""}",23292,0,South America +2023-08-14,70182,5643,"[""Wireless Mouse"", ""Laptop""]",4479.54,"{"""": ""13%""}",288470,1,Africa +2024-03-17,70183,4792,"[""Tablet""]",3617.57,{},49632,1,Europe +2024-09-29,70184,7910,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1307.21,{},198343,1,Asia +2024-11-18,70185,8890,"[""Monitor""]",3713.08,"{""loyalty"": ""8%""}",11134,0,South America +2023-10-17,70186,6031,"[""Headphones""]",4346.57,{},256315,1,North America +2023-10-26,70187,3527,"[""Keyboard""]",4789.79,"{""loyalty"": ""27%""}",143834,0,Europe +2023-09-26,70188,4819,"[""Headphones"", ""Laptop"", ""Keyboard""]",4075.04,{},181415,1,Africa +2023-03-03,70189,6061,"[""Laptop"", ""Tablet"", ""Headphones""]",3442.61,"{""loyalty"": ""16%""}",190449,0,Africa +2023-02-14,70190,5303,"[""Tablet"", ""Phone""]",3107.87,"{"""": ""5%""}",55971,0,Asia +2024-05-14,70191,9967,"[""Phone"", ""Monitor"", ""Tablet""]",1901.96,{},17293,1,Africa +2024-07-28,70192,9366,"[""Keyboard""]",1161.0,{},299956,0,Asia +2023-04-18,70193,9066,"[""Headphones"", ""Wireless Mouse""]",1544.75,{},221694,0,Europe +2023-01-12,70194,4142,"[""Headphones""]",4729.41,{},227233,1,Africa +2024-12-30,70195,5298,"[""Tablet"", ""Headphones""]",822.95,{},40883,1,North America +2024-01-02,70196,6119,"[""Wireless Mouse"", ""Phone""]",4421.18,"{""seasonal"": ""15%""}",6312,0,North America +2023-03-31,70197,6712,"[""Phone"", ""Keyboard""]",2780.35,{},30201,1,Africa +2023-10-21,70198,9546,"[""Charger"", ""Phone""]",2210.31,"{""loyalty"": ""18%""}",82264,1,Africa +2024-04-04,70199,8259,"[""Headphones"", ""Keyboard"", ""Monitor""]",1505.26,{},27708,0,Asia +2023-08-20,70200,6618,"[""Tablet"", ""Wireless Mouse""]",3526.36,{},233317,1,Asia +2024-08-17,70201,6304,"[""Tablet"", ""Charger""]",3894.89,"{""seasonal"": ""30%""}",38217,0,Asia +2023-07-30,70202,5650,"[""Monitor""]",1650.34,{},147204,0,North America +2024-08-04,70203,5257,"[""Monitor"", ""Laptop"", ""Keyboard""]",2672.63,{},3403,1,Asia +2024-10-22,70204,9336,"[""Charger""]",4640.69,"{"""": ""16%""}",4627,1,Asia +2024-12-12,70205,8327,"[""Tablet"", ""Phone""]",1882.26,{},237682,1,North America +2023-09-21,70206,5237,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2448.82,"{"""": ""29%""}",146494,1,Asia +2023-06-28,70207,9951,"[""Tablet""]",4321.33,"{"""": ""16%""}",95016,1,South America +2023-10-21,70208,7622,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3756.72,{},181602,0,South America +2023-07-24,70209,7115,"[""Keyboard"", ""Tablet"", ""Laptop""]",3464.0,"{""promo"": ""12%""}",75280,1,North America +2023-07-15,70210,7690,"[""Keyboard""]",2098.02,{},2207,1,Europe +2023-03-13,70211,9719,"[""Tablet"", ""Charger"", ""Monitor""]",3828.42,"{""seasonal"": ""25%""}",171857,1,Asia +2023-06-09,70212,8675,"[""Wireless Mouse"", ""Headphones""]",2330.18,{},278536,1,Europe +2023-02-26,70213,2249,"[""Tablet""]",237.14,"{"""": ""5%""}",34694,0,South America +2023-04-27,70214,5725,"[""Headphones"", ""Laptop""]",542.25,{},266578,0,Europe +2024-06-23,70215,2948,"[""Laptop""]",2614.73,"{""loyalty"": ""12%""}",277313,1,North America +2023-01-16,70216,9387,"[""Tablet"", ""Keyboard""]",2065.43,"{""promo"": ""6%""}",14912,0,Africa +2024-03-24,70217,2822,"[""Keyboard""]",4113.97,"{"""": ""23%""}",183037,1,South America +2023-04-22,70218,3888,"[""Laptop"", ""Phone""]",2397.53,"{""promo"": ""19%""}",292616,0,Asia +2023-08-03,70219,5238,"[""Laptop""]",1068.46,{},131963,1,Europe +2024-04-11,70220,3907,"[""Phone"", ""Tablet""]",4234.74,{},134183,1,North America +2024-07-07,70221,3159,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",466.83,{},97942,1,North America +2024-07-26,70222,1633,"[""Keyboard""]",2595.44,{},199524,1,South America +2024-04-02,70223,9919,"[""Tablet""]",4708.49,"{""promo"": ""9%""}",198601,0,Africa +2023-11-08,70224,8766,"[""Monitor""]",659.08,"{""loyalty"": ""22%""}",193276,1,Europe +2023-07-05,70225,1634,"[""Phone""]",215.26,{},210656,1,North America +2024-07-29,70226,6294,"[""Charger"", ""Phone"", ""Headphones""]",1263.64,"{"""": ""14%""}",42572,0,Europe +2023-06-03,70227,543,"[""Keyboard"", ""Wireless Mouse""]",575.4,"{"""": ""21%""}",127298,1,Asia +2023-10-26,70228,7385,"[""Laptop"", ""Keyboard""]",3439.86,"{""seasonal"": ""8%""}",222409,1,Europe +2023-02-16,70229,3225,"[""Wireless Mouse"", ""Headphones""]",2605.12,"{""promo"": ""14%""}",32936,1,Africa +2024-01-14,70230,3811,"[""Phone"", ""Wireless Mouse""]",679.98,"{"""": ""10%""}",283622,1,Asia +2023-03-13,70231,6524,"[""Headphones"", ""Keyboard""]",713.61,{},219775,1,Europe +2024-01-12,70232,345,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1041.49,"{""promo"": ""8%""}",144679,0,Africa +2024-04-25,70233,6971,"[""Keyboard""]",3554.21,{},119963,0,Europe +2024-09-02,70234,3390,"[""Headphones""]",4122.01,"{""promo"": ""21%""}",219342,1,North America +2023-10-29,70235,9338,"[""Wireless Mouse""]",2604.75,{},115453,1,Asia +2024-03-19,70236,7029,"[""Charger""]",4524.21,{},235293,0,North America +2023-07-20,70237,2491,"[""Laptop""]",4489.1,{},234997,1,Europe +2023-02-25,70238,8397,"[""Keyboard"", ""Monitor"", ""Tablet""]",3645.42,"{""promo"": ""14%""}",61544,1,Africa +2024-11-30,70239,732,"[""Laptop""]",4070.14,{},73731,0,Africa +2024-02-23,70240,6192,"[""Keyboard""]",3064.04,"{""loyalty"": ""27%""}",231586,1,North America +2024-05-08,70241,7319,"[""Phone""]",1105.66,{},69512,0,South America +2023-01-17,70242,7685,"[""Laptop""]",3317.2,{},208616,0,Asia +2024-09-01,70243,7762,"[""Keyboard"", ""Charger"", ""Phone""]",2761.99,"{""seasonal"": ""6%""}",71793,1,South America +2023-08-22,70244,2167,"[""Monitor""]",3467.21,{},241343,1,Europe +2023-08-18,70245,7093,"[""Phone""]",4467.54,"{"""": ""21%""}",272043,1,Europe +2024-01-27,70246,404,"[""Keyboard""]",4659.0,"{""loyalty"": ""8%""}",58225,0,Asia +2024-11-08,70247,3984,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3362.84,"{""loyalty"": ""23%""}",41965,0,South America +2024-09-07,70248,8077,"[""Tablet""]",3358.54,{},130490,1,Europe +2024-08-14,70249,7436,"[""Laptop"", ""Phone"", ""Keyboard""]",2440.41,{},181802,0,Asia +2024-03-16,70250,5820,"[""Wireless Mouse""]",3672.51,"{""loyalty"": ""17%""}",118664,0,Africa +2023-02-06,70251,3524,"[""Charger""]",602.1,{},167090,1,North America +2024-12-01,70252,9632,"[""Wireless Mouse"", ""Laptop""]",3259.82,{},258307,0,Europe +2023-09-19,70253,7112,"[""Headphones""]",3292.57,"{""promo"": ""9%""}",130191,1,Asia +2023-05-17,70254,2638,"[""Keyboard""]",4247.25,{},225642,0,North America +2023-07-18,70255,2710,"[""Phone"", ""Keyboard""]",4773.24,"{""seasonal"": ""27%""}",216584,1,South America +2024-09-07,70256,8609,"[""Wireless Mouse"", ""Headphones""]",2646.52,{},171743,0,Europe +2023-01-20,70257,440,"[""Charger"", ""Monitor""]",4555.86,{},2733,1,Europe +2024-09-23,70258,351,"[""Headphones""]",2731.47,"{""seasonal"": ""30%""}",247976,1,Asia +2023-12-19,70259,8638,"[""Keyboard""]",1833.65,"{""seasonal"": ""16%""}",247817,1,Asia +2024-02-07,70260,1458,"[""Phone"", ""Charger"", ""Monitor""]",2583.9,{},32542,0,Africa +2024-11-24,70261,1246,"[""Keyboard"", ""Laptop""]",2396.28,{},209104,1,Africa +2024-07-04,70262,234,"[""Phone""]",1969.04,"{""seasonal"": ""13%""}",56849,0,South America +2024-05-14,70263,6331,"[""Monitor"", ""Headphones"", ""Laptop""]",1772.04,{},172860,0,South America +2024-01-15,70264,4086,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2645.0,{},122437,1,North America +2023-10-16,70265,5991,"[""Phone""]",2807.62,{},137139,0,Asia +2023-07-31,70266,8888,"[""Wireless Mouse"", ""Laptop""]",3897.37,{},36484,1,Africa +2024-06-26,70267,5761,"[""Charger"", ""Phone""]",637.64,"{"""": ""7%""}",183620,0,Asia +2023-12-23,70268,5217,"[""Keyboard"", ""Wireless Mouse""]",926.57,{},142966,0,Africa +2024-03-07,70269,2026,"[""Wireless Mouse"", ""Tablet""]",3033.3,{},35634,0,Africa +2023-10-13,70270,3698,"[""Headphones"", ""Laptop"", ""Keyboard""]",2472.88,"{""promo"": ""19%""}",150735,1,Africa +2024-05-17,70271,547,"[""Wireless Mouse"", ""Phone""]",1232.18,"{""promo"": ""8%""}",96400,0,Africa +2023-04-04,70272,5148,"[""Keyboard""]",397.47,{},230990,1,Asia +2024-06-11,70273,3216,"[""Laptop""]",243.6,{},36007,1,Asia +2023-05-02,70274,5776,"[""Phone""]",1179.71,{},291541,1,Africa +2024-12-04,70275,7948,"[""Headphones"", ""Laptop""]",3360.15,"{"""": ""20%""}",165512,1,South America +2023-09-19,70276,1549,"[""Tablet"", ""Charger""]",776.63,"{""seasonal"": ""15%""}",73161,0,Europe +2024-10-17,70277,6186,"[""Tablet"", ""Laptop"", ""Charger""]",2545.8,{},148024,1,Europe +2023-05-12,70278,6053,"[""Tablet""]",450.31,{},287814,0,Asia +2024-05-21,70279,7331,"[""Tablet"", ""Keyboard"", ""Monitor""]",2529.75,"{""promo"": ""5%""}",46141,1,Europe +2023-01-31,70280,5886,"[""Tablet"", ""Headphones"", ""Keyboard""]",2516.4,"{""seasonal"": ""25%""}",254274,1,Asia +2024-06-29,70281,1003,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4469.02,"{""loyalty"": ""13%""}",149521,1,Europe +2024-11-01,70282,7543,"[""Tablet"", ""Wireless Mouse""]",1743.49,{},296937,1,North America +2024-01-14,70283,1490,"[""Laptop"", ""Keyboard"", ""Headphones""]",2988.17,{},233333,0,North America +2023-01-16,70284,2223,"[""Charger"", ""Phone""]",3493.56,"{""seasonal"": ""17%""}",66199,1,Asia +2024-10-02,70285,8532,"[""Laptop""]",4955.65,"{""seasonal"": ""6%""}",265069,0,Europe +2024-05-25,70286,5146,"[""Laptop"", ""Keyboard""]",106.84,"{""loyalty"": ""7%""}",61919,1,Europe +2023-08-05,70287,9962,"[""Headphones"", ""Keyboard"", ""Charger""]",3381.6,"{"""": ""25%""}",249180,0,Asia +2023-10-12,70288,9665,"[""Keyboard"", ""Tablet""]",3262.03,{},128830,1,South America +2024-04-06,70289,5983,"[""Tablet""]",1943.39,"{""promo"": ""27%""}",132626,0,Asia +2023-06-23,70290,7085,"[""Wireless Mouse"", ""Headphones""]",1961.05,"{"""": ""25%""}",165345,0,South America +2024-10-30,70291,8188,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",934.64,"{""seasonal"": ""20%""}",163684,1,North America +2023-02-08,70292,3270,"[""Headphones"", ""Tablet"", ""Charger""]",1675.53,{},285202,0,Africa +2024-11-22,70293,2420,"[""Keyboard"", ""Headphones""]",2586.97,{},43854,1,North America +2024-08-04,70294,7375,"[""Headphones"", ""Monitor""]",3454.15,"{""seasonal"": ""24%""}",250815,0,North America +2024-04-03,70295,4613,"[""Charger""]",3895.62,{},15454,1,Europe +2023-09-25,70296,8940,"[""Keyboard"", ""Charger"", ""Phone""]",645.55,{},1868,0,Africa +2024-06-15,70297,763,"[""Monitor"", ""Tablet""]",2598.26,"{""loyalty"": ""10%""}",84205,1,Asia +2024-12-19,70298,2837,"[""Keyboard"", ""Laptop"", ""Charger""]",4625.62,"{"""": ""5%""}",141238,1,Europe +2023-02-08,70299,7873,"[""Tablet"", ""Charger"", ""Laptop""]",2340.09,"{""loyalty"": ""17%""}",137756,1,Asia +2024-07-24,70300,2159,"[""Headphones"", ""Monitor"", ""Keyboard""]",4272.31,"{"""": ""11%""}",170666,1,South America +2024-12-03,70301,1508,"[""Wireless Mouse"", ""Laptop""]",4368.62,"{"""": ""12%""}",184734,0,North America +2024-01-09,70302,6147,"[""Monitor"", ""Headphones"", ""Phone""]",1153.08,{},127193,1,Africa +2024-09-04,70303,6283,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",665.97,"{"""": ""30%""}",129225,1,Africa +2024-01-25,70304,1675,"[""Monitor""]",1290.14,"{""loyalty"": ""26%""}",119954,1,North America +2024-10-20,70305,7539,"[""Headphones""]",1519.6,"{"""": ""19%""}",69028,1,Africa +2023-05-13,70306,4100,"[""Keyboard""]",3139.84,{},267167,0,Asia +2024-09-24,70307,297,"[""Laptop"", ""Phone"", ""Headphones""]",1120.16,{},170171,1,South America +2023-04-07,70308,2812,"[""Keyboard""]",1220.68,"{""promo"": ""16%""}",180707,1,Asia +2023-06-10,70309,8832,"[""Laptop"", ""Monitor"", ""Keyboard""]",1215.9,"{""promo"": ""26%""}",17781,0,Africa +2024-08-18,70310,2763,"[""Charger"", ""Headphones""]",889.83,{},286801,0,South America +2024-05-11,70311,1241,"[""Tablet"", ""Keyboard""]",2321.56,"{""loyalty"": ""22%""}",148767,0,Africa +2024-04-16,70312,7574,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",967.59,"{""seasonal"": ""20%""}",129593,0,South America +2023-11-02,70313,2337,"[""Tablet"", ""Laptop"", ""Phone""]",2180.27,"{""seasonal"": ""26%""}",144945,0,Asia +2023-07-26,70314,6748,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2876.04,{},283872,1,Africa +2024-07-08,70315,1674,"[""Headphones"", ""Wireless Mouse""]",1506.79,"{""loyalty"": ""29%""}",287275,0,Africa +2023-05-26,70316,1069,"[""Charger"", ""Laptop""]",874.08,"{"""": ""25%""}",56974,1,Europe +2024-10-19,70317,3815,"[""Laptop"", ""Phone""]",2694.98,"{""loyalty"": ""26%""}",196427,0,North America +2024-11-21,70318,4568,"[""Headphones"", ""Laptop""]",4331.84,{},176485,0,Asia +2024-04-26,70319,6570,"[""Keyboard""]",456.38,{},134109,0,North America +2023-01-17,70320,3351,"[""Headphones"", ""Laptop"", ""Monitor""]",4711.35,"{""promo"": ""24%""}",260770,1,Europe +2023-10-28,70321,3060,"[""Charger""]",3299.29,{},86260,0,Asia +2023-05-31,70322,1419,"[""Laptop"", ""Wireless Mouse""]",4528.55,{},67026,1,North America +2023-03-24,70323,445,"[""Monitor"", ""Phone""]",4471.56,"{"""": ""20%""}",188485,1,North America +2023-06-04,70324,9357,"[""Keyboard"", ""Tablet"", ""Laptop""]",3374.28,"{"""": ""11%""}",156498,1,Asia +2024-07-17,70325,7495,"[""Phone"", ""Laptop""]",1013.13,{},154369,0,South America +2023-11-23,70326,1598,"[""Headphones""]",2365.7,{},265032,0,North America +2024-10-31,70327,4743,"[""Laptop""]",2228.36,"{""promo"": ""26%""}",253283,1,South America +2024-02-18,70328,5273,"[""Laptop""]",476.34,"{"""": ""9%""}",194158,0,Asia +2024-12-21,70329,8812,"[""Laptop"", ""Phone""]",4950.49,"{""seasonal"": ""15%""}",108122,1,Africa +2024-08-05,70330,2801,"[""Tablet""]",2523.67,"{"""": ""8%""}",80128,1,North America +2023-02-27,70331,4359,"[""Headphones""]",3679.17,{},24121,0,Europe +2023-12-24,70332,3774,"[""Phone""]",1288.63,"{""seasonal"": ""17%""}",171415,1,North America +2024-02-04,70333,9970,"[""Tablet""]",1522.52,"{""loyalty"": ""12%""}",299685,1,Asia +2024-03-24,70334,8781,"[""Headphones"", ""Charger"", ""Phone""]",4009.14,{},21737,0,Europe +2024-10-22,70335,5543,"[""Tablet"", ""Phone"", ""Keyboard""]",816.75,"{""seasonal"": ""10%""}",208575,0,South America +2024-05-31,70336,8495,"[""Charger"", ""Laptop"", ""Keyboard""]",2707.06,"{""promo"": ""13%""}",156824,1,Europe +2024-11-27,70337,5300,"[""Charger"", ""Laptop"", ""Phone""]",1817.06,"{""loyalty"": ""26%""}",134819,1,North America +2024-01-20,70338,8140,"[""Tablet""]",1302.74,{},224350,1,North America +2024-08-27,70339,3926,"[""Charger""]",3277.57,{},129226,1,South America +2024-06-30,70340,7546,"[""Headphones"", ""Keyboard""]",3825.67,{},202329,0,Africa +2024-01-05,70341,3820,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4412.21,{},149904,0,Africa +2024-01-07,70342,3143,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4455.69,{},263214,1,North America +2024-03-15,70343,2281,"[""Headphones"", ""Keyboard""]",164.72,{},80829,0,Africa +2023-09-03,70344,1051,"[""Wireless Mouse"", ""Monitor""]",4563.12,{},241260,0,Europe +2024-01-11,70345,2262,"[""Charger"", ""Monitor""]",4426.27,{},277632,1,Europe +2023-03-19,70346,2136,"[""Laptop"", ""Phone""]",3357.28,{},138903,1,Asia +2024-05-19,70347,7326,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",567.99,"{""seasonal"": ""16%""}",299966,1,Africa +2024-07-31,70348,8073,"[""Monitor"", ""Tablet"", ""Headphones""]",1435.63,"{"""": ""9%""}",73108,1,Europe +2024-08-08,70349,3760,"[""Headphones"", ""Monitor""]",1686.32,{},19607,1,North America +2023-04-03,70350,5089,"[""Tablet"", ""Monitor""]",4624.44,{},6191,1,Africa +2024-11-19,70351,4409,"[""Keyboard""]",1471.94,{},72953,0,Africa +2024-04-12,70352,9630,"[""Monitor"", ""Tablet""]",3491.72,"{"""": ""13%""}",299520,1,South America +2024-08-28,70353,7955,"[""Tablet"", ""Charger""]",4212.31,{},57803,1,Africa +2024-04-09,70354,5214,"[""Charger"", ""Laptop"", ""Keyboard""]",841.03,"{""loyalty"": ""14%""}",130880,1,Europe +2024-09-22,70355,4739,"[""Wireless Mouse""]",2057.78,"{"""": ""7%""}",194011,1,Asia +2024-01-30,70356,4835,"[""Tablet""]",1856.88,"{"""": ""24%""}",28361,0,Europe +2023-05-04,70357,2694,"[""Charger""]",3854.76,"{"""": ""20%""}",256464,1,Asia +2023-12-03,70358,9496,"[""Wireless Mouse""]",381.44,"{""promo"": ""8%""}",273662,0,Asia +2024-10-27,70359,2973,"[""Phone"", ""Headphones""]",4034.66,"{""seasonal"": ""20%""}",157375,1,Asia +2024-12-09,70360,9804,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",660.82,{},97721,1,North America +2023-10-07,70361,9063,"[""Monitor""]",4814.77,{},118040,1,South America +2023-05-05,70362,4795,"[""Keyboard""]",4863.13,{},92471,0,North America +2024-08-04,70363,3029,"[""Tablet""]",3964.93,"{""seasonal"": ""28%""}",128775,1,Asia +2024-05-21,70364,2163,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",563.51,{},107530,0,Asia +2024-11-14,70365,1219,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2338.69,"{"""": ""12%""}",108548,0,South America +2023-10-12,70366,2540,"[""Tablet"", ""Monitor""]",3465.03,{},240815,1,North America +2023-10-02,70367,4603,"[""Wireless Mouse""]",2862.19,{},143567,0,North America +2023-05-30,70368,861,"[""Charger""]",1649.63,{},248610,0,Asia +2023-08-06,70369,7063,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2031.71,{},153592,1,Africa +2023-12-22,70370,4167,"[""Tablet""]",305.94,"{""loyalty"": ""28%""}",241712,0,Europe +2023-01-11,70371,2433,"[""Laptop""]",1770.97,"{"""": ""12%""}",233495,1,South America +2024-09-13,70372,5137,"[""Charger""]",4075.68,"{"""": ""18%""}",95514,0,Europe +2024-09-14,70373,4121,"[""Charger"", ""Phone""]",739.73,{},85489,1,Africa +2023-06-06,70374,4182,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",375.09,{},122534,1,North America +2024-03-07,70375,3239,"[""Tablet"", ""Monitor""]",1157.03,{},286389,0,Asia +2024-10-12,70376,9003,"[""Charger""]",4713.29,{},127924,1,North America +2023-08-28,70377,3987,"[""Charger"", ""Monitor""]",2159.64,"{"""": ""22%""}",221367,0,Europe +2024-04-22,70378,860,"[""Keyboard"", ""Wireless Mouse""]",2134.38,{},94877,0,South America +2023-06-09,70379,2020,"[""Laptop"", ""Headphones"", ""Phone""]",736.84,{},135580,1,North America +2023-05-11,70380,3879,"[""Laptop"", ""Phone"", ""Tablet""]",481.69,"{""promo"": ""19%""}",81202,0,North America +2024-12-10,70381,3811,"[""Tablet""]",3330.01,{},229892,0,Africa +2024-08-24,70382,1959,"[""Tablet""]",1623.1,"{"""": ""26%""}",5759,0,Africa +2023-03-22,70383,2995,"[""Wireless Mouse""]",1699.27,{},216416,0,Asia +2023-11-02,70384,4962,"[""Laptop"", ""Wireless Mouse""]",1518.41,{},155758,1,North America +2023-03-07,70385,4428,"[""Headphones"", ""Laptop""]",3600.18,{},240088,0,Europe +2024-05-09,70386,5237,"[""Phone"", ""Keyboard""]",3703.93,"{""seasonal"": ""10%""}",33303,1,North America +2024-06-27,70387,9523,"[""Charger""]",4262.17,"{""seasonal"": ""6%""}",160207,0,South America +2024-10-14,70388,7135,"[""Headphones"", ""Laptop""]",2662.09,"{"""": ""13%""}",222716,0,Europe +2024-03-16,70389,2556,"[""Headphones""]",1153.46,{},259842,0,South America +2024-05-25,70390,164,"[""Tablet""]",2707.45,{},96118,0,Europe +2023-07-15,70391,8224,"[""Tablet""]",1819.18,{},136250,0,Africa +2024-02-11,70392,3623,"[""Keyboard"", ""Phone""]",4518.17,{},253635,1,Europe +2023-02-12,70393,1675,"[""Charger"", ""Monitor""]",1822.05,"{"""": ""30%""}",141695,1,Asia +2023-06-23,70394,9297,"[""Monitor""]",3814.85,"{""promo"": ""15%""}",9249,0,Europe +2024-12-23,70395,2605,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1558.01,{},12242,1,Europe +2024-04-29,70396,4385,"[""Headphones""]",4616.74,"{""promo"": ""21%""}",93775,1,South America +2023-06-08,70397,2265,"[""Laptop"", ""Headphones"", ""Monitor""]",2185.56,"{"""": ""9%""}",25623,0,North America +2024-08-17,70398,3091,"[""Headphones"", ""Phone""]",595.42,{},79774,0,North America +2023-05-21,70399,7050,"[""Tablet"", ""Wireless Mouse""]",4768.59,{},271232,1,South America +2023-02-18,70400,2172,"[""Keyboard"", ""Monitor"", ""Headphones""]",1172.48,"{""promo"": ""13%""}",8745,1,Europe +2023-12-15,70401,7032,"[""Headphones""]",3594.91,{},139569,1,Europe +2024-06-27,70402,5719,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2166.55,{},211476,1,Asia +2023-11-07,70403,4892,"[""Charger"", ""Tablet""]",2173.87,{},251512,1,North America +2024-07-14,70404,234,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1966.99,{},122177,0,North America +2023-09-02,70405,3296,"[""Phone"", ""Charger""]",2979.88,{},180143,1,North America +2024-12-01,70406,2875,"[""Laptop""]",3124.66,{},278025,1,North America +2024-05-12,70407,4416,"[""Monitor"", ""Keyboard"", ""Phone""]",1971.1,{},114148,1,North America +2024-09-13,70408,3826,"[""Phone""]",4977.29,{},31831,1,North America +2023-02-04,70409,8738,"[""Monitor"", ""Headphones""]",2111.05,"{""loyalty"": ""26%""}",274268,1,Asia +2023-11-18,70410,6725,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3933.62,{},28825,1,South America +2023-09-10,70411,7455,"[""Monitor"", ""Charger"", ""Keyboard""]",2240.53,{},222721,0,South America +2023-04-29,70412,3662,"[""Headphones"", ""Wireless Mouse""]",381.54,{},279718,1,Africa +2023-10-27,70413,9114,"[""Tablet"", ""Keyboard"", ""Headphones""]",1333.74,"{""promo"": ""5%""}",108685,1,North America +2024-06-29,70414,9443,"[""Charger""]",1703.41,{},81208,0,Africa +2023-10-01,70415,5941,"[""Charger"", ""Laptop""]",2414.99,"{""seasonal"": ""22%""}",108878,0,South America +2024-11-04,70416,987,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4191.09,{},237595,0,South America +2023-08-17,70417,5097,"[""Keyboard""]",1983.77,{},145677,0,Asia +2024-06-12,70418,6429,"[""Keyboard""]",1115.52,"{""loyalty"": ""7%""}",178656,1,Africa +2023-07-24,70419,762,"[""Keyboard"", ""Tablet""]",3907.93,{},219003,1,Africa +2024-10-08,70420,7752,"[""Laptop"", ""Charger"", ""Keyboard""]",3207.95,{},88899,1,South America +2023-04-16,70421,243,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3923.55,{},236406,1,North America +2023-12-18,70422,7500,"[""Headphones""]",2323.25,"{""loyalty"": ""23%""}",57509,0,North America +2024-04-23,70423,2156,"[""Laptop"", ""Monitor""]",4771.55,"{"""": ""26%""}",184966,0,Asia +2023-03-16,70424,346,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1539.74,"{""promo"": ""23%""}",278813,1,Africa +2023-04-04,70425,6982,"[""Monitor"", ""Tablet"", ""Laptop""]",3143.96,"{""loyalty"": ""5%""}",61958,1,Asia +2024-07-16,70426,1740,"[""Headphones"", ""Phone"", ""Laptop""]",3275.04,"{""loyalty"": ""11%""}",122522,0,Europe +2023-01-10,70427,7974,"[""Charger"", ""Tablet""]",2287.25,{},276538,1,Asia +2023-01-26,70428,9181,"[""Wireless Mouse""]",638.36,"{"""": ""10%""}",17046,1,Europe +2023-09-12,70429,9716,"[""Laptop"", ""Tablet"", ""Headphones""]",254.56,"{"""": ""20%""}",126917,1,North America +2023-06-28,70430,1574,"[""Tablet""]",3118.11,{},290690,1,Africa +2024-09-13,70431,8454,"[""Keyboard""]",4435.19,"{""loyalty"": ""20%""}",112682,1,South America +2023-05-23,70432,8301,"[""Keyboard"", ""Charger""]",2573.98,"{""promo"": ""19%""}",216006,1,Europe +2024-01-12,70433,5869,"[""Keyboard""]",339.09,{},248348,1,Asia +2024-05-11,70434,9383,"[""Keyboard"", ""Laptop""]",4567.51,"{"""": ""26%""}",78140,0,South America +2024-02-08,70435,5333,"[""Wireless Mouse"", ""Tablet""]",1960.72,{},135939,0,Asia +2024-10-15,70436,5587,"[""Wireless Mouse""]",1267.42,{},113225,1,Africa +2023-07-02,70437,7051,"[""Laptop""]",579.65,"{""promo"": ""16%""}",186958,0,Africa +2024-03-29,70438,5051,"[""Monitor"", ""Wireless Mouse""]",3656.61,{},115144,0,North America +2023-07-21,70439,2799,"[""Laptop""]",333.16,"{""loyalty"": ""19%""}",7996,0,North America +2023-04-09,70440,2923,"[""Charger""]",2699.71,{},63365,1,South America +2024-12-10,70441,5553,"[""Keyboard"", ""Phone""]",1790.63,"{""promo"": ""27%""}",208065,0,South America +2023-07-23,70442,1813,"[""Monitor"", ""Wireless Mouse""]",3201.14,"{""seasonal"": ""17%""}",32894,1,Europe +2023-09-10,70443,3668,"[""Keyboard"", ""Monitor"", ""Laptop""]",1548.14,{},247881,1,Africa +2024-01-06,70444,2571,"[""Phone"", ""Laptop""]",2603.8,"{"""": ""30%""}",277264,1,Asia +2023-07-30,70445,3055,"[""Monitor""]",2600.2,{},198939,0,Africa +2024-08-01,70446,5915,"[""Laptop"", ""Charger"", ""Headphones""]",4116.53,{},36824,1,Asia +2024-04-24,70447,6053,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2270.85,{},12636,1,Asia +2023-06-11,70448,2549,"[""Wireless Mouse"", ""Phone"", ""Charger""]",266.76,{},14124,0,Africa +2024-09-04,70449,9308,"[""Headphones""]",4412.52,"{""seasonal"": ""13%""}",113580,1,Asia +2023-06-06,70450,9362,"[""Tablet"", ""Laptop""]",1753.37,"{""promo"": ""11%""}",209776,0,Europe +2024-06-04,70451,8502,"[""Keyboard"", ""Phone"", ""Headphones""]",956.1,"{"""": ""16%""}",137932,1,North America +2023-03-04,70452,1514,"[""Wireless Mouse""]",3746.73,{},85222,0,Europe +2024-04-03,70453,372,"[""Monitor"", ""Wireless Mouse""]",2189.58,{},217341,1,North America +2024-06-05,70454,3014,"[""Keyboard""]",1527.65,{},266711,0,North America +2023-02-23,70455,4658,"[""Laptop""]",346.72,"{""promo"": ""27%""}",276884,0,North America +2024-05-14,70456,9032,"[""Charger"", ""Phone"", ""Headphones""]",3724.0,{},28267,1,North America +2023-10-23,70457,4858,"[""Laptop""]",4092.76,{},88961,1,Asia +2023-08-31,70458,6119,"[""Phone"", ""Laptop""]",1325.45,{},151129,0,South America +2024-04-09,70459,7733,"[""Phone""]",1593.66,{},104580,0,Asia +2023-02-24,70460,4342,"[""Tablet"", ""Phone""]",4652.23,{},83170,1,Africa +2024-07-26,70461,2330,"[""Monitor"", ""Phone""]",4350.06,"{"""": ""10%""}",74879,1,Europe +2024-11-04,70462,4745,"[""Wireless Mouse"", ""Headphones""]",2025.72,"{""seasonal"": ""28%""}",53394,0,Europe +2024-11-07,70463,4163,"[""Charger"", ""Laptop""]",1001.78,{},38536,1,Asia +2024-03-28,70464,5692,"[""Tablet"", ""Laptop""]",1929.48,"{"""": ""28%""}",56887,1,Asia +2024-03-08,70465,7036,"[""Headphones"", ""Charger"", ""Monitor""]",509.87,"{""loyalty"": ""14%""}",108058,1,North America +2024-10-23,70466,1716,"[""Tablet"", ""Wireless Mouse""]",3974.34,{},25232,0,South America +2023-06-13,70467,7866,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1763.67,"{""promo"": ""7%""}",213372,0,Africa +2024-09-25,70468,8060,"[""Laptop""]",1578.24,{},89426,0,Asia +2023-12-05,70469,7648,"[""Phone"", ""Headphones""]",4998.34,"{""loyalty"": ""9%""}",244482,0,Europe +2023-01-03,70470,7222,"[""Headphones""]",1381.2,"{""promo"": ""14%""}",219221,0,South America +2024-02-27,70471,1592,"[""Headphones"", ""Laptop""]",125.39,"{""loyalty"": ""17%""}",138005,1,North America +2023-06-12,70472,7118,"[""Tablet"", ""Headphones""]",1295.31,"{""promo"": ""30%""}",124880,0,Asia +2024-08-02,70473,1229,"[""Phone"", ""Headphones""]",1092.71,{},182239,0,South America +2023-07-22,70474,5472,"[""Wireless Mouse"", ""Headphones""]",3324.37,{},49361,1,North America +2024-01-01,70475,1408,"[""Laptop""]",4782.35,{},188983,0,Africa +2023-01-11,70476,1674,"[""Phone"", ""Charger""]",4412.33,"{""loyalty"": ""5%""}",224269,1,Asia +2023-11-24,70477,2999,"[""Tablet""]",3489.98,{},72948,0,Europe +2023-01-05,70478,9171,"[""Wireless Mouse"", ""Phone""]",3283.91,"{""loyalty"": ""26%""}",228230,0,Europe +2023-08-24,70479,2540,"[""Headphones"", ""Wireless Mouse""]",116.69,"{"""": ""15%""}",111141,1,Europe +2024-03-29,70480,911,"[""Charger"", ""Monitor""]",604.63,{},115262,0,North America +2023-03-31,70481,1280,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1571.02,{},185706,1,South America +2023-11-29,70482,8111,"[""Keyboard"", ""Laptop"", ""Charger""]",3969.99,{},1913,0,South America +2023-06-10,70483,1463,"[""Keyboard""]",3585.18,"{"""": ""9%""}",3646,0,South America +2023-06-23,70484,6562,"[""Phone""]",743.81,"{""seasonal"": ""12%""}",193326,1,Asia +2023-09-27,70485,9204,"[""Phone""]",1923.49,{},293793,0,North America +2023-12-02,70486,9332,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1271.71,"{""loyalty"": ""13%""}",136424,0,South America +2023-04-19,70487,5865,"[""Charger"", ""Laptop""]",3902.62,{},75468,0,Africa +2023-09-17,70488,9248,"[""Keyboard""]",4565.96,"{"""": ""15%""}",159015,1,South America +2024-10-20,70489,4047,"[""Charger"", ""Wireless Mouse""]",2408.86,"{""seasonal"": ""6%""}",28943,1,Africa +2023-02-17,70490,2016,"[""Laptop"", ""Headphones""]",988.29,"{""promo"": ""29%""}",131155,1,North America +2024-11-29,70491,8586,"[""Monitor"", ""Laptop"", ""Charger""]",491.07,{},247844,0,Europe +2023-10-25,70492,448,"[""Laptop"", ""Keyboard""]",1552.48,"{""loyalty"": ""19%""}",118723,0,Europe +2024-11-07,70493,9531,"[""Tablet""]",1124.72,{},181148,1,Africa +2023-05-09,70494,1115,"[""Phone"", ""Laptop""]",1781.0,{},174564,0,Asia +2024-07-17,70495,4656,"[""Phone"", ""Laptop""]",3575.0,"{""seasonal"": ""27%""}",235770,0,South America +2023-04-08,70496,1360,"[""Phone"", ""Charger"", ""Monitor""]",2065.3,"{""promo"": ""10%""}",148713,1,Africa +2024-12-10,70497,7803,"[""Headphones"", ""Charger""]",3077.32,{},286056,1,North America +2023-02-21,70498,1448,"[""Phone""]",4009.54,"{"""": ""14%""}",200640,0,North America +2024-12-17,70499,432,"[""Tablet"", ""Keyboard""]",3334.62,{},108314,0,Africa +2023-12-10,70500,8005,"[""Phone"", ""Monitor""]",1701.42,{},257521,0,Africa +2023-02-05,70501,5538,"[""Monitor""]",4671.36,"{""seasonal"": ""20%""}",173176,1,Europe +2024-07-23,70502,6403,"[""Laptop"", ""Phone"", ""Monitor""]",437.5,"{""seasonal"": ""12%""}",169660,0,Africa +2024-12-09,70503,6159,"[""Keyboard""]",1570.63,"{""loyalty"": ""5%""}",62251,0,Europe +2023-04-23,70504,4045,"[""Monitor"", ""Phone"", ""Tablet""]",372.96,"{"""": ""28%""}",222996,0,Africa +2024-10-02,70505,3301,"[""Tablet""]",1691.0,"{""seasonal"": ""13%""}",82398,0,Africa +2023-03-19,70506,5289,"[""Tablet"", ""Keyboard""]",1446.47,{},130758,0,Asia +2023-05-06,70507,7351,"[""Tablet"", ""Wireless Mouse""]",1332.87,"{""seasonal"": ""29%""}",297948,0,North America +2023-04-19,70508,4896,"[""Phone"", ""Keyboard""]",4645.93,{},215850,1,Africa +2024-07-06,70509,5252,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4276.53,"{""loyalty"": ""6%""}",74322,0,Europe +2023-09-25,70510,7355,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3633.5,{},274341,0,South America +2023-04-11,70511,4250,"[""Wireless Mouse"", ""Headphones""]",373.15,{},76866,1,Asia +2024-11-16,70512,8861,"[""Monitor""]",2547.7,"{""seasonal"": ""9%""}",40021,0,Africa +2024-02-29,70513,7144,"[""Headphones"", ""Tablet""]",3359.02,{},298193,0,North America +2023-12-09,70514,6169,"[""Phone""]",1885.33,"{"""": ""24%""}",285998,1,Europe +2024-01-18,70515,6988,"[""Keyboard"", ""Phone"", ""Monitor""]",3943.85,"{""loyalty"": ""11%""}",160875,0,South America +2024-11-23,70516,6634,"[""Monitor"", ""Headphones""]",3166.6,{},130167,1,Africa +2024-04-21,70517,1779,"[""Keyboard""]",3033.33,{},194385,1,North America +2023-10-28,70518,6638,"[""Charger"", ""Keyboard"", ""Headphones""]",3566.93,"{""seasonal"": ""7%""}",276926,0,South America +2024-05-11,70519,3710,"[""Phone"", ""Wireless Mouse""]",61.28,"{""promo"": ""30%""}",127246,1,North America +2023-01-29,70520,4106,"[""Wireless Mouse"", ""Monitor""]",1003.08,"{""loyalty"": ""23%""}",220108,1,Europe +2023-11-21,70521,4294,"[""Phone"", ""Wireless Mouse""]",4753.17,"{""loyalty"": ""17%""}",297885,0,South America +2024-03-17,70522,285,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4175.03,{},243407,0,South America +2024-02-29,70523,1004,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1988.42,{},257438,0,North America +2023-07-17,70524,3751,"[""Laptop"", ""Charger""]",4812.61,{},262238,0,Europe +2024-01-10,70525,4533,"[""Charger""]",3733.29,"{""seasonal"": ""7%""}",68409,1,Europe +2024-07-01,70526,1733,"[""Monitor""]",2773.02,"{""seasonal"": ""20%""}",289626,1,South America +2024-02-20,70527,1783,"[""Keyboard"", ""Laptop"", ""Headphones""]",1916.02,"{""seasonal"": ""20%""}",166582,1,Africa +2023-08-07,70528,9543,"[""Headphones""]",949.86,"{"""": ""15%""}",248980,1,North America +2024-09-19,70529,7711,"[""Tablet""]",1235.5,"{""promo"": ""12%""}",266216,0,South America +2024-05-04,70530,4887,"[""Tablet""]",761.38,"{"""": ""13%""}",85811,0,South America +2023-12-07,70531,3147,"[""Charger"", ""Laptop""]",2141.33,{},128248,1,Asia +2024-07-13,70532,9969,"[""Tablet""]",52.22,"{"""": ""6%""}",213249,1,Asia +2023-04-03,70533,308,"[""Wireless Mouse"", ""Phone""]",2362.69,"{"""": ""8%""}",34421,1,South America +2023-06-19,70534,4944,"[""Phone""]",4258.97,"{""promo"": ""13%""}",213111,0,North America +2024-03-10,70535,4517,"[""Wireless Mouse"", ""Headphones""]",4650.4,{},83749,0,Africa +2023-02-26,70536,2308,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4802.93,{},23309,1,Asia +2023-01-06,70537,757,"[""Monitor"", ""Phone""]",177.43,"{""promo"": ""22%""}",15129,0,Europe +2023-02-15,70538,3781,"[""Phone"", ""Monitor""]",2280.57,"{""promo"": ""9%""}",277749,1,Africa +2023-09-08,70539,2275,"[""Phone"", ""Wireless Mouse""]",2439.77,"{""loyalty"": ""24%""}",71878,1,Europe +2023-03-30,70540,2310,"[""Phone""]",1357.84,{},120996,1,South America +2023-04-29,70541,4461,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1010.1,{},165814,1,Africa +2023-06-12,70542,6751,"[""Tablet"", ""Charger""]",3247.96,"{""promo"": ""28%""}",10814,0,South America +2023-01-27,70543,6788,"[""Phone"", ""Headphones"", ""Laptop""]",1081.91,"{""seasonal"": ""11%""}",195737,0,Europe +2023-06-20,70544,2974,"[""Phone"", ""Tablet""]",1580.5,"{"""": ""25%""}",292636,1,South America +2024-02-27,70545,8095,"[""Charger"", ""Laptop""]",3834.4,{},283855,1,South America +2024-08-15,70546,8435,"[""Laptop"", ""Headphones"", ""Tablet""]",4674.65,"{""promo"": ""9%""}",265253,0,Asia +2023-12-30,70547,4619,"[""Tablet"", ""Charger""]",2903.6,{},95922,1,North America +2023-03-30,70548,9781,"[""Phone""]",1535.81,{},46226,1,South America +2024-07-23,70549,5497,"[""Headphones"", ""Keyboard""]",3731.84,{},130519,1,North America +2023-02-22,70550,1842,"[""Keyboard"", ""Laptop"", ""Phone""]",248.27,"{""seasonal"": ""23%""}",158996,1,Asia +2023-01-16,70551,2634,"[""Phone""]",2305.61,{},205858,1,Africa +2023-10-12,70552,4745,"[""Tablet""]",524.47,"{""promo"": ""20%""}",201660,0,Asia +2024-12-30,70553,1028,"[""Wireless Mouse""]",116.05,"{""seasonal"": ""10%""}",142446,0,South America +2023-08-18,70554,5326,"[""Phone"", ""Charger""]",4304.24,{},40449,1,Africa +2023-08-19,70555,8504,"[""Tablet""]",950.28,{},12829,1,South America +2024-01-05,70556,9067,"[""Monitor"", ""Keyboard""]",1550.76,"{""promo"": ""11%""}",177471,0,South America +2023-08-05,70557,6021,"[""Wireless Mouse""]",2535.44,"{"""": ""23%""}",116398,1,South America +2024-10-22,70558,6188,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",993.39,"{""loyalty"": ""28%""}",8815,1,Asia +2024-10-16,70559,5971,"[""Monitor""]",2476.26,{},25146,1,Asia +2024-08-17,70560,1098,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1382.92,"{""seasonal"": ""11%""}",46088,1,Asia +2024-09-17,70561,8618,"[""Charger"", ""Headphones""]",3476.09,"{"""": ""16%""}",12634,0,North America +2024-06-18,70562,5437,"[""Keyboard"", ""Monitor""]",3303.9,"{"""": ""9%""}",27011,0,Africa +2024-03-20,70563,4559,"[""Phone"", ""Monitor"", ""Laptop""]",3139.32,"{""seasonal"": ""17%""}",255382,1,North America +2024-09-30,70564,9658,"[""Laptop"", ""Headphones""]",1815.49,{},96560,0,North America +2024-03-28,70565,5247,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2508.55,{},252908,0,South America +2023-05-28,70566,531,"[""Charger"", ""Keyboard"", ""Monitor""]",4132.76,"{"""": ""22%""}",179940,1,Europe +2024-06-12,70567,667,"[""Headphones""]",1261.57,{},201206,0,South America +2023-10-24,70568,2155,"[""Tablet"", ""Keyboard""]",455.96,{},276189,0,South America +2024-10-31,70569,5413,"[""Headphones""]",3069.16,{},205542,0,North America +2023-02-26,70570,8567,"[""Laptop"", ""Wireless Mouse""]",1111.11,{},241833,0,Europe +2023-09-06,70571,3076,"[""Phone""]",2516.81,{},190158,0,Asia +2023-02-04,70572,4076,"[""Keyboard""]",4676.03,{},52911,1,Africa +2023-09-27,70573,8265,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3365.56,"{""loyalty"": ""24%""}",42294,1,Africa +2023-10-21,70574,7008,"[""Tablet"", ""Monitor""]",3894.22,"{""loyalty"": ""30%""}",31804,1,Asia +2024-06-24,70575,9418,"[""Keyboard""]",4158.29,{},217806,0,South America +2024-06-19,70576,2813,"[""Headphones"", ""Wireless Mouse""]",371.07,{},183936,1,South America +2023-02-06,70577,3338,"[""Tablet"", ""Headphones"", ""Monitor""]",1910.37,"{""loyalty"": ""20%""}",172206,1,Africa +2024-12-14,70578,4425,"[""Monitor"", ""Keyboard"", ""Tablet""]",2452.61,{},152294,1,Asia +2024-07-28,70579,6944,"[""Charger""]",980.87,{},298364,0,Africa +2024-02-14,70580,5534,"[""Charger"", ""Laptop"", ""Headphones""]",4140.31,"{""promo"": ""22%""}",237509,1,North America +2024-01-18,70581,7950,"[""Wireless Mouse"", ""Laptop""]",2112.97,"{""promo"": ""19%""}",282441,0,North America +2023-11-16,70582,2006,"[""Tablet"", ""Laptop""]",671.48,"{""loyalty"": ""9%""}",177315,1,South America +2023-07-27,70583,7723,"[""Tablet"", ""Headphones""]",3035.66,"{""loyalty"": ""24%""}",58392,0,Asia +2023-03-15,70584,1496,"[""Laptop"", ""Charger""]",4979.15,{},159710,0,North America +2024-04-15,70585,5478,"[""Charger""]",3883.3,{},49707,1,Asia +2024-03-14,70586,3520,"[""Tablet"", ""Phone""]",4276.98,{},179744,1,Africa +2024-04-17,70587,7744,"[""Laptop"", ""Wireless Mouse""]",583.31,{},295712,1,South America +2023-11-08,70588,3457,"[""Wireless Mouse"", ""Tablet""]",2166.31,{},145742,1,Europe +2024-11-05,70589,4906,"[""Phone"", ""Tablet"", ""Monitor""]",4058.55,"{""promo"": ""19%""}",52857,1,North America +2024-06-20,70590,684,"[""Charger""]",2539.21,{},192439,0,Europe +2024-03-16,70591,1200,"[""Headphones"", ""Laptop"", ""Phone""]",3618.08,{},232191,0,Europe +2023-12-08,70592,8561,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1375.41,{},161157,1,Africa +2024-12-03,70593,8566,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4519.96,{},36329,1,South America +2024-11-22,70594,9034,"[""Charger"", ""Wireless Mouse""]",4458.0,{},15649,0,Asia +2023-03-24,70595,7173,"[""Headphones"", ""Wireless Mouse""]",4336.83,{},269563,0,North America +2024-08-11,70596,8147,"[""Phone""]",2359.41,{},152421,1,Africa +2024-07-20,70597,5017,"[""Keyboard""]",1253.18,{},7630,0,South America +2024-08-14,70598,5799,"[""Tablet"", ""Laptop"", ""Phone""]",2019.35,{},46666,1,North America +2023-09-13,70599,6721,"[""Monitor""]",1712.19,"{""promo"": ""6%""}",109654,1,Africa +2024-03-11,70600,1845,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2211.69,{},228580,1,North America +2023-11-14,70601,1616,"[""Charger"", ""Monitor"", ""Headphones""]",120.19,"{""promo"": ""22%""}",23673,1,South America +2023-05-25,70602,4793,"[""Headphones""]",1896.49,"{"""": ""16%""}",213810,1,Europe +2023-04-16,70603,414,"[""Tablet"", ""Laptop""]",2331.71,{},67183,0,North America +2023-12-06,70604,1757,"[""Keyboard"", ""Monitor"", ""Laptop""]",4551.65,"{""seasonal"": ""11%""}",170539,0,Europe +2024-10-24,70605,7635,"[""Headphones"", ""Laptop"", ""Charger""]",2859.72,{},207279,0,Asia +2023-01-19,70606,3091,"[""Wireless Mouse"", ""Headphones""]",4660.08,{},6338,0,Africa +2024-08-25,70607,1300,"[""Laptop"", ""Charger"", ""Headphones""]",4216.31,"{""loyalty"": ""22%""}",57934,1,Africa +2023-12-07,70608,4980,"[""Monitor""]",4348.44,"{""loyalty"": ""14%""}",148804,1,Europe +2024-02-01,70609,3124,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1947.37,"{""promo"": ""26%""}",113602,1,North America +2024-09-28,70610,3624,"[""Charger""]",3177.4,{},127860,1,Europe +2023-09-08,70611,2976,"[""Tablet"", ""Laptop"", ""Monitor""]",1297.81,"{""loyalty"": ""11%""}",177684,1,Africa +2024-04-27,70612,3495,"[""Charger"", ""Monitor""]",645.81,{},112829,0,Asia +2023-06-27,70613,2936,"[""Tablet""]",2090.06,{},170314,1,Africa +2024-06-11,70614,3458,"[""Keyboard"", ""Phone"", ""Charger""]",4114.1,{},93604,1,Asia +2024-08-27,70615,5315,"[""Headphones"", ""Charger"", ""Tablet""]",4537.81,"{"""": ""15%""}",274772,0,Asia +2024-08-25,70616,5972,"[""Phone"", ""Monitor"", ""Headphones""]",2920.31,{},206726,0,North America +2023-04-14,70617,9964,"[""Charger"", ""Keyboard"", ""Phone""]",1252.88,"{"""": ""17%""}",46526,1,Asia +2024-01-30,70618,9725,"[""Laptop""]",4458.79,{},29399,0,Europe +2024-06-08,70619,9332,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2824.94,"{"""": ""24%""}",134456,1,South America +2024-05-05,70620,2891,"[""Monitor""]",1441.94,"{"""": ""24%""}",221667,1,South America +2024-09-10,70621,5242,"[""Phone""]",3624.79,"{"""": ""27%""}",157437,0,South America +2023-02-04,70622,6694,"[""Keyboard"", ""Headphones""]",4795.82,"{""loyalty"": ""5%""}",139972,1,North America +2023-11-08,70623,1883,"[""Laptop""]",1543.49,"{"""": ""9%""}",38518,1,South America +2024-02-23,70624,6460,"[""Keyboard"", ""Monitor""]",2753.66,{},247067,1,Asia +2024-05-23,70625,1177,"[""Laptop"", ""Phone""]",318.41,"{"""": ""30%""}",181163,0,South America +2024-02-22,70626,7664,"[""Laptop""]",3835.49,"{""seasonal"": ""29%""}",41770,0,Asia +2024-02-14,70627,9913,"[""Monitor"", ""Keyboard"", ""Headphones""]",1824.91,{},21544,0,North America +2023-05-30,70628,9204,"[""Monitor""]",2632.69,"{""promo"": ""9%""}",296503,1,Europe +2023-07-01,70629,66,"[""Wireless Mouse""]",4621.83,"{"""": ""10%""}",12371,0,Europe +2023-07-09,70630,5459,"[""Monitor"", ""Phone"", ""Headphones""]",59.2,{},46592,1,Asia +2023-03-11,70631,2033,"[""Headphones"", ""Phone""]",177.0,"{"""": ""24%""}",120471,1,South America +2023-09-21,70632,4665,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2401.99,{},254519,1,South America +2023-01-08,70633,7593,"[""Charger""]",3559.09,"{"""": ""18%""}",108565,1,Africa +2024-09-12,70634,3467,"[""Tablet"", ""Keyboard""]",327.23,{},235764,1,South America +2023-07-09,70635,8421,"[""Tablet"", ""Headphones""]",3331.44,{},153840,1,Africa +2024-06-28,70636,5745,"[""Laptop"", ""Phone"", ""Tablet""]",187.39,"{""seasonal"": ""27%""}",84344,1,Asia +2024-12-31,70637,8788,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",457.58,{},81133,0,Africa +2024-09-07,70638,6692,"[""Monitor"", ""Headphones""]",2618.9,"{""loyalty"": ""11%""}",260940,1,Africa +2024-08-16,70639,1955,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4145.06,"{""promo"": ""8%""}",45687,1,Asia +2024-07-11,70640,6559,"[""Monitor"", ""Headphones""]",3360.15,{},62436,0,Africa +2023-11-04,70641,4331,"[""Tablet""]",3007.56,{},1060,1,North America +2024-03-23,70642,9241,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4664.89,"{""seasonal"": ""18%""}",196016,0,Asia +2023-06-12,70643,3208,"[""Monitor"", ""Headphones"", ""Tablet""]",2588.42,"{""loyalty"": ""22%""}",131355,1,North America +2023-12-01,70644,9502,"[""Charger"", ""Headphones"", ""Laptop""]",519.23,{},196408,0,South America +2023-06-20,70645,2316,"[""Tablet"", ""Wireless Mouse""]",3372.04,"{""promo"": ""6%""}",233279,0,South America +2024-09-24,70646,4561,"[""Monitor"", ""Charger"", ""Keyboard""]",1497.54,{},230800,0,Europe +2024-07-11,70647,7805,"[""Keyboard""]",2833.01,{},206635,0,North America +2024-12-18,70648,7235,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4243.19,{},128153,0,Africa +2023-10-16,70649,2232,"[""Wireless Mouse"", ""Keyboard""]",3196.49,{},199897,1,South America +2024-09-06,70650,7910,"[""Phone"", ""Laptop"", ""Headphones""]",1893.75,{},154363,0,North America +2024-10-03,70651,6861,"[""Laptop"", ""Tablet"", ""Phone""]",2929.14,"{""loyalty"": ""18%""}",145542,1,Asia +2024-08-31,70652,1744,"[""Charger"", ""Keyboard""]",1358.75,{},152335,0,Asia +2024-12-18,70653,2824,"[""Tablet""]",1279.96,{},145962,0,Asia +2023-11-22,70654,6282,"[""Laptop"", ""Wireless Mouse""]",1711.9,"{""promo"": ""28%""}",192200,0,North America +2024-05-14,70655,5448,"[""Charger"", ""Monitor""]",499.27,{},105748,1,Asia +2023-08-27,70656,8332,"[""Charger"", ""Phone"", ""Headphones""]",4538.34,"{"""": ""6%""}",247813,0,South America +2024-11-06,70657,9928,"[""Phone"", ""Monitor""]",1054.18,"{""seasonal"": ""24%""}",193493,0,Africa +2023-08-29,70658,2486,"[""Tablet""]",3598.0,{},268815,0,South America +2023-03-18,70659,4400,"[""Monitor""]",3011.91,{},85629,0,South America +2023-05-06,70660,8397,"[""Headphones"", ""Keyboard""]",1125.49,"{""loyalty"": ""19%""}",129758,0,Africa +2023-12-12,70661,9592,"[""Wireless Mouse"", ""Keyboard""]",761.96,{},122169,0,Asia +2024-07-25,70662,4053,"[""Tablet"", ""Monitor"", ""Phone""]",4327.25,{},20448,1,Africa +2024-10-18,70663,4498,"[""Laptop"", ""Phone""]",4972.27,{},62983,0,Europe +2023-06-29,70664,4768,"[""Charger""]",2883.9,"{""loyalty"": ""18%""}",49871,1,South America +2024-12-01,70665,8731,"[""Tablet"", ""Charger""]",4128.36,"{""loyalty"": ""15%""}",230433,1,North America +2023-06-16,70666,3669,"[""Charger""]",4238.7,{},125357,0,North America +2024-08-17,70667,8380,"[""Headphones"", ""Tablet""]",1328.98,{},8084,0,Africa +2023-02-15,70668,9667,"[""Tablet""]",1406.15,{},42604,1,Africa +2023-07-10,70669,5405,"[""Charger"", ""Headphones""]",2627.23,"{"""": ""9%""}",200444,1,Asia +2024-06-15,70670,4532,"[""Laptop"", ""Tablet"", ""Monitor""]",1693.18,"{""loyalty"": ""23%""}",299536,0,Asia +2023-07-08,70671,8353,"[""Wireless Mouse"", ""Phone""]",1419.74,{},220741,1,Asia +2023-11-05,70672,8642,"[""Keyboard""]",2006.1,"{""promo"": ""16%""}",280155,0,Europe +2024-11-21,70673,3134,"[""Wireless Mouse""]",4247.9,"{""seasonal"": ""14%""}",124120,0,South America +2023-10-24,70674,3709,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1496.46,{},281165,0,Europe +2023-01-28,70675,5564,"[""Charger"", ""Tablet""]",1100.42,"{""seasonal"": ""6%""}",100267,1,Asia +2023-10-14,70676,5789,"[""Phone""]",4795.17,{},12807,0,South America +2024-12-27,70677,8949,"[""Keyboard"", ""Charger""]",2339.05,{},162374,1,Africa +2023-07-26,70678,7787,"[""Headphones"", ""Phone"", ""Monitor""]",4604.68,"{""promo"": ""8%""}",103044,1,South America +2023-01-19,70679,5265,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2517.12,{},188708,1,North America +2023-09-23,70680,4692,"[""Phone"", ""Keyboard"", ""Headphones""]",3585.34,"{"""": ""15%""}",14266,0,Europe +2024-08-20,70681,641,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",116.98,{},182330,1,Africa +2024-01-09,70682,3656,"[""Laptop"", ""Keyboard"", ""Monitor""]",423.78,{},233945,0,South America +2024-04-08,70683,4551,"[""Keyboard"", ""Monitor""]",3502.24,"{""seasonal"": ""27%""}",198634,1,South America +2024-07-17,70684,2993,"[""Monitor"", ""Phone""]",1925.23,{},49428,0,North America +2023-06-18,70685,1024,"[""Keyboard"", ""Headphones""]",551.98,"{""loyalty"": ""6%""}",149185,1,Europe +2023-01-21,70686,934,"[""Keyboard"", ""Laptop""]",2789.45,"{"""": ""13%""}",146162,1,Africa +2023-03-06,70687,7343,"[""Monitor"", ""Keyboard""]",1542.99,{},7674,0,Africa +2023-08-02,70688,9196,"[""Headphones"", ""Phone""]",3569.6,"{""promo"": ""11%""}",231619,1,Asia +2024-04-16,70689,2104,"[""Monitor"", ""Laptop""]",1775.89,"{"""": ""24%""}",221037,1,Asia +2024-03-14,70690,272,"[""Headphones"", ""Laptop""]",4398.17,"{""seasonal"": ""13%""}",202724,0,North America +2023-07-11,70691,2840,"[""Phone"", ""Headphones"", ""Tablet""]",1839.15,{},135618,1,South America +2023-09-08,70692,9107,"[""Tablet"", ""Charger"", ""Laptop""]",55.01,"{""promo"": ""19%""}",7213,0,Europe +2024-01-21,70693,7485,"[""Tablet"", ""Charger""]",1555.73,"{""seasonal"": ""17%""}",246703,0,South America +2024-10-30,70694,585,"[""Keyboard""]",3114.85,{},53411,1,North America +2024-07-13,70695,2463,"[""Phone"", ""Headphones"", ""Laptop""]",1621.27,"{""loyalty"": ""20%""}",159873,0,Europe +2023-10-23,70696,9865,"[""Wireless Mouse""]",3565.21,"{"""": ""23%""}",162954,1,South America +2023-01-12,70697,2015,"[""Wireless Mouse""]",1560.74,"{""seasonal"": ""10%""}",85071,1,North America +2024-11-01,70698,7998,"[""Laptop""]",469.61,{},19357,0,Europe +2024-06-09,70699,3698,"[""Charger"", ""Headphones""]",557.76,{},266724,0,Africa +2023-12-22,70700,9259,"[""Keyboard""]",1268.54,"{""seasonal"": ""24%""}",108647,1,South America +2023-02-25,70701,1341,"[""Wireless Mouse"", ""Monitor""]",1000.54,{},183031,1,Africa +2023-02-26,70702,6338,"[""Headphones""]",1753.08,{},102332,0,South America +2024-09-23,70703,3648,"[""Keyboard"", ""Headphones""]",4374.2,{},272675,1,North America +2024-01-15,70704,2151,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2990.03,"{""seasonal"": ""24%""}",21816,0,Asia +2023-07-29,70705,5143,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3020.05,"{""seasonal"": ""6%""}",211024,1,South America +2024-05-18,70706,1965,"[""Wireless Mouse"", ""Keyboard""]",1400.08,{},255710,1,South America +2023-05-19,70707,6769,"[""Monitor"", ""Charger"", ""Tablet""]",3897.68,{},245736,0,Asia +2023-10-24,70708,3641,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3072.4,"{"""": ""19%""}",22451,1,South America +2023-09-25,70709,2304,"[""Keyboard"", ""Monitor"", ""Tablet""]",1980.85,{},33063,0,North America +2024-01-22,70710,1941,"[""Charger"", ""Phone"", ""Tablet""]",55.12,{},160963,0,North America +2024-05-22,70711,3558,"[""Tablet"", ""Headphones""]",975.61,{},91849,1,Africa +2023-08-04,70712,2754,"[""Monitor"", ""Keyboard"", ""Tablet""]",4887.37,"{""promo"": ""24%""}",234255,0,Asia +2024-05-25,70713,2233,"[""Phone"", ""Charger"", ""Laptop""]",1565.99,"{""loyalty"": ""14%""}",258784,1,Africa +2024-03-03,70714,7073,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3946.68,{},141721,1,Asia +2023-02-25,70715,9458,"[""Monitor"", ""Phone"", ""Charger""]",2040.53,{},8097,1,South America +2024-06-12,70716,5850,"[""Tablet"", ""Laptop""]",3231.42,"{""promo"": ""29%""}",35669,1,South America +2023-07-31,70717,7306,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",80.42,{},74502,0,North America +2024-03-01,70718,8080,"[""Headphones"", ""Monitor"", ""Charger""]",4567.04,{},291440,0,South America +2024-01-27,70719,3004,"[""Keyboard"", ""Charger"", ""Laptop""]",1490.81,"{""loyalty"": ""11%""}",172079,1,Europe +2023-11-25,70720,9909,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2716.67,{},137965,0,Asia +2023-06-21,70721,997,"[""Charger""]",4875.63,{},266682,0,Africa +2023-10-19,70722,7967,"[""Headphones""]",1707.49,{},152672,1,Europe +2024-07-17,70723,794,"[""Charger""]",3223.69,"{"""": ""15%""}",126610,1,Africa +2024-11-15,70724,2738,"[""Laptop"", ""Headphones""]",3817.73,"{""loyalty"": ""18%""}",156463,1,South America +2023-10-20,70725,6279,"[""Wireless Mouse"", ""Headphones""]",4878.25,"{""promo"": ""15%""}",158709,0,Africa +2024-12-01,70726,7968,"[""Keyboard""]",2479.69,"{""seasonal"": ""6%""}",145600,0,Africa +2023-06-09,70727,1798,"[""Laptop"", ""Phone"", ""Keyboard""]",1734.04,{},134617,0,South America +2024-09-08,70728,445,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3821.7,{},57855,1,Africa +2023-07-14,70729,5702,"[""Monitor"", ""Headphones""]",4513.95,"{"""": ""25%""}",214785,1,Africa +2023-06-20,70730,2279,"[""Monitor"", ""Phone"", ""Tablet""]",3859.97,"{"""": ""16%""}",277806,1,Africa +2023-08-16,70731,7754,"[""Headphones"", ""Monitor"", ""Tablet""]",2648.64,"{""loyalty"": ""6%""}",107612,1,North America +2023-06-27,70732,5532,"[""Keyboard"", ""Charger"", ""Phone""]",1730.13,{},232504,0,South America +2023-06-23,70733,5683,"[""Laptop""]",690.42,{},11672,0,South America +2023-08-11,70734,4067,"[""Tablet"", ""Monitor""]",3443.14,{},161773,1,Asia +2023-12-31,70735,422,"[""Monitor"", ""Charger"", ""Headphones""]",845.47,"{"""": ""5%""}",240668,1,Asia +2024-12-27,70736,662,"[""Monitor""]",4162.68,{},17286,1,Africa +2024-08-31,70737,6214,"[""Laptop"", ""Headphones"", ""Charger""]",4334.77,"{"""": ""14%""}",105741,0,South America +2024-07-30,70738,7150,"[""Headphones"", ""Keyboard"", ""Tablet""]",3210.63,{},226367,0,Africa +2023-06-04,70739,398,"[""Headphones"", ""Laptop""]",860.01,{},81615,1,South America +2024-07-21,70740,9329,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2662.93,{},246531,0,North America +2024-01-16,70741,4501,"[""Tablet"", ""Headphones""]",2615.96,{},238332,1,Asia +2024-08-03,70742,5423,"[""Laptop"", ""Tablet""]",3143.67,{},254065,1,North America +2023-05-12,70743,3698,"[""Monitor""]",701.88,"{""loyalty"": ""26%""}",244578,0,Asia +2024-01-01,70744,8111,"[""Monitor""]",1464.53,"{""seasonal"": ""7%""}",15445,0,North America +2024-01-01,70745,8664,"[""Wireless Mouse"", ""Keyboard""]",2537.26,{},217353,0,South America +2023-10-21,70746,3083,"[""Monitor"", ""Laptop""]",4268.7,{},101892,0,Africa +2023-08-11,70747,5387,"[""Wireless Mouse""]",833.13,"{""promo"": ""22%""}",10556,0,Europe +2024-05-25,70748,5916,"[""Monitor"", ""Tablet""]",3956.21,"{""seasonal"": ""28%""}",166016,1,Europe +2024-10-10,70749,3597,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",73.43,"{""seasonal"": ""13%""}",65617,0,Africa +2023-08-06,70750,404,"[""Headphones"", ""Laptop"", ""Charger""]",1471.35,{},31954,0,Africa +2023-05-23,70751,4239,"[""Charger"", ""Laptop""]",855.08,{},200768,0,South America +2023-04-28,70752,1876,"[""Keyboard"", ""Charger"", ""Laptop""]",1149.51,{},155953,0,North America +2024-04-22,70753,6984,"[""Charger"", ""Tablet"", ""Monitor""]",311.74,{},217337,1,South America +2024-01-27,70754,3319,"[""Wireless Mouse"", ""Phone""]",520.23,"{"""": ""15%""}",234359,1,Asia +2024-10-09,70755,6298,"[""Laptop""]",3636.09,{},291180,1,Europe +2023-08-27,70756,1450,"[""Keyboard"", ""Charger""]",3441.11,{},155249,1,North America +2024-11-16,70757,9872,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",240.77,"{""seasonal"": ""24%""}",280084,1,Africa +2024-08-09,70758,7064,"[""Wireless Mouse""]",3829.57,"{"""": ""6%""}",122739,0,North America +2023-08-06,70759,1052,"[""Monitor"", ""Laptop"", ""Keyboard""]",1066.27,"{"""": ""8%""}",122949,1,South America +2024-07-06,70760,4106,"[""Tablet"", ""Wireless Mouse""]",3449.94,"{""seasonal"": ""27%""}",269652,1,Europe +2024-11-12,70761,2569,"[""Phone"", ""Charger"", ""Keyboard""]",1778.1,"{""seasonal"": ""16%""}",116010,1,North America +2024-02-21,70762,7664,"[""Monitor""]",4043.16,{},217995,1,South America +2023-04-21,70763,932,"[""Wireless Mouse"", ""Laptop""]",1040.82,{},270055,1,Europe +2023-11-30,70764,6142,"[""Monitor"", ""Keyboard"", ""Phone""]",938.92,"{""promo"": ""30%""}",190158,0,Europe +2023-05-09,70765,3976,"[""Keyboard""]",3248.5,"{"""": ""22%""}",127088,0,Europe +2024-11-24,70766,9112,"[""Charger"", ""Wireless Mouse""]",1376.93,{},210550,0,Europe +2024-01-01,70767,8959,"[""Keyboard""]",4157.31,{},74012,0,North America +2024-05-11,70768,2754,"[""Keyboard""]",1337.24,{},73091,1,Africa +2024-12-14,70769,1455,"[""Tablet"", ""Wireless Mouse""]",942.04,"{""loyalty"": ""22%""}",7068,0,Europe +2024-01-05,70770,1929,"[""Tablet"", ""Keyboard"", ""Phone""]",1982.03,{},50973,1,Asia +2024-08-13,70771,6276,"[""Phone"", ""Laptop""]",1428.43,"{""seasonal"": ""29%""}",135820,0,South America +2023-02-17,70772,5635,"[""Laptop"", ""Headphones"", ""Monitor""]",4251.15,{},170549,1,Asia +2024-05-05,70773,5682,"[""Monitor""]",3522.17,{},151949,0,Europe +2023-04-01,70774,4955,"[""Wireless Mouse"", ""Monitor""]",1921.92,"{"""": ""7%""}",125573,1,South America +2024-08-16,70775,8472,"[""Phone""]",4021.36,{},237286,0,Africa +2023-08-18,70776,7730,"[""Tablet"", ""Headphones"", ""Keyboard""]",4619.58,{},222545,1,Europe +2024-08-20,70777,3017,"[""Wireless Mouse""]",1197.39,{},66883,0,South America +2024-07-02,70778,105,"[""Headphones"", ""Monitor""]",3200.64,{},185655,0,North America +2024-06-12,70779,9707,"[""Keyboard""]",1739.8,{},12002,0,Europe +2024-06-20,70780,9816,"[""Monitor"", ""Charger"", ""Tablet""]",3719.09,{},299948,1,Europe +2024-06-21,70781,6282,"[""Charger""]",1361.54,"{"""": ""18%""}",251738,0,North America +2023-07-13,70782,5429,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4359.66,"{""promo"": ""25%""}",90415,0,South America +2024-04-21,70783,2827,"[""Headphones""]",4083.39,"{""loyalty"": ""10%""}",206603,0,South America +2023-03-15,70784,1510,"[""Keyboard"", ""Charger"", ""Monitor""]",1376.62,"{""loyalty"": ""10%""}",82666,0,Europe +2023-06-02,70785,7500,"[""Monitor"", ""Laptop"", ""Keyboard""]",4450.41,"{""promo"": ""24%""}",137433,1,South America +2024-12-10,70786,5126,"[""Tablet""]",1972.94,{},4057,0,North America +2023-09-15,70787,3124,"[""Wireless Mouse"", ""Headphones""]",3009.24,{},46694,0,Africa +2023-05-30,70788,6781,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2780.04,{},88096,1,Europe +2023-10-22,70789,5165,"[""Keyboard""]",551.45,{},96575,0,Asia +2023-03-29,70790,7770,"[""Tablet"", ""Wireless Mouse""]",806.28,"{""loyalty"": ""5%""}",91384,0,South America +2023-12-17,70791,912,"[""Wireless Mouse""]",4381.47,{},66511,0,South America +2024-02-11,70792,7469,"[""Keyboard"", ""Monitor""]",3835.5,"{""promo"": ""27%""}",155004,1,Europe +2024-03-31,70793,8009,"[""Tablet"", ""Monitor"", ""Headphones""]",1428.12,"{""loyalty"": ""10%""}",221714,0,South America +2024-09-14,70794,3249,"[""Tablet"", ""Charger"", ""Laptop""]",4333.31,"{""seasonal"": ""18%""}",153066,1,Asia +2024-06-01,70795,3459,"[""Keyboard"", ""Headphones"", ""Laptop""]",637.14,"{"""": ""25%""}",47514,1,Africa +2023-04-02,70796,1625,"[""Phone"", ""Tablet""]",4338.29,"{""seasonal"": ""19%""}",123673,0,North America +2023-01-12,70797,6435,"[""Monitor"", ""Tablet""]",4064.68,{},296223,0,South America +2023-08-22,70798,1710,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3637.24,{},148048,1,North America +2024-10-21,70799,5710,"[""Charger""]",4378.29,{},257387,0,Africa +2024-10-26,70800,987,"[""Keyboard"", ""Tablet"", ""Laptop""]",3511.73,"{"""": ""9%""}",149850,1,South America +2024-02-21,70801,7428,"[""Laptop"", ""Tablet""]",893.59,"{""seasonal"": ""7%""}",291902,0,Europe +2023-10-17,70802,311,"[""Phone""]",1061.53,"{""loyalty"": ""19%""}",211760,1,Europe +2023-07-27,70803,7882,"[""Phone"", ""Wireless Mouse""]",1165.66,"{""loyalty"": ""5%""}",248178,0,Europe +2023-02-26,70804,7797,"[""Laptop"", ""Tablet"", ""Monitor""]",1713.56,"{"""": ""14%""}",228555,0,North America +2024-04-16,70805,7778,"[""Monitor"", ""Charger"", ""Phone""]",3994.88,{},30266,0,Europe +2023-12-03,70806,678,"[""Wireless Mouse"", ""Laptop""]",3496.99,"{""promo"": ""15%""}",52310,0,North America +2023-10-14,70807,6729,"[""Headphones"", ""Phone""]",1733.98,{},210624,0,South America +2023-03-16,70808,1762,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2298.54,{},293989,0,North America +2023-05-16,70809,1020,"[""Wireless Mouse"", ""Laptop""]",364.95,"{"""": ""18%""}",21130,0,North America +2024-11-03,70810,3023,"[""Charger"", ""Laptop"", ""Headphones""]",3062.34,{},105466,1,Africa +2023-07-18,70811,1244,"[""Monitor"", ""Keyboard"", ""Phone""]",3635.69,{},226202,1,Asia +2024-06-25,70812,3964,"[""Wireless Mouse""]",4084.34,{},209662,0,Africa +2024-05-06,70813,778,"[""Headphones"", ""Laptop""]",2589.58,{},131546,0,North America +2023-05-26,70814,9399,"[""Tablet"", ""Phone"", ""Laptop""]",2442.82,{},31472,1,Europe +2023-10-10,70815,7646,"[""Headphones"", ""Laptop"", ""Monitor""]",1687.61,"{""promo"": ""15%""}",92736,1,Europe +2023-10-25,70816,6631,"[""Laptop""]",1261.53,"{""seasonal"": ""14%""}",260598,0,North America +2023-07-15,70817,7565,"[""Tablet"", ""Headphones"", ""Keyboard""]",2046.89,"{""seasonal"": ""18%""}",116213,0,Africa +2023-09-14,70818,261,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3981.78,"{"""": ""7%""}",87900,0,Asia +2024-11-20,70819,2653,"[""Phone"", ""Keyboard"", ""Charger""]",1777.52,"{""loyalty"": ""14%""}",91818,0,Africa +2024-04-18,70820,3146,"[""Keyboard"", ""Laptop"", ""Monitor""]",1208.26,"{""seasonal"": ""12%""}",25482,0,Europe +2023-06-12,70821,4444,"[""Monitor"", ""Keyboard""]",4809.5,{},255499,0,Europe +2024-09-03,70822,8069,"[""Laptop""]",2723.48,{},94874,0,North America +2023-10-20,70823,3557,"[""Phone""]",3701.42,"{""loyalty"": ""9%""}",27995,1,Asia +2024-03-21,70824,9182,"[""Headphones"", ""Monitor""]",82.61,"{""loyalty"": ""12%""}",22003,0,Asia +2023-07-16,70825,1149,"[""Laptop""]",1166.71,{},179465,1,Europe +2023-08-29,70826,8569,"[""Laptop""]",2225.09,"{""loyalty"": ""27%""}",123408,0,Asia +2024-01-31,70827,7977,"[""Monitor"", ""Headphones"", ""Charger""]",3529.24,{},238087,1,South America +2024-10-24,70828,4750,"[""Laptop""]",2871.38,"{""loyalty"": ""30%""}",53558,1,Europe +2024-08-17,70829,9258,"[""Monitor""]",4660.35,{},277712,0,South America +2024-04-07,70830,8657,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2665.88,"{""seasonal"": ""30%""}",43314,1,South America +2023-10-19,70831,9434,"[""Phone""]",2995.53,"{"""": ""7%""}",54343,1,North America +2023-02-17,70832,9251,"[""Charger""]",253.76,{},285875,1,South America +2024-10-27,70833,4357,"[""Tablet"", ""Charger""]",1952.56,{},148975,0,Europe +2023-08-13,70834,5804,"[""Tablet"", ""Phone"", ""Laptop""]",4748.0,"{""seasonal"": ""13%""}",276853,0,Europe +2023-05-06,70835,5013,"[""Laptop"", ""Keyboard""]",1552.81,{},148954,0,Africa +2024-11-11,70836,4526,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3225.07,{},193958,0,Africa +2024-08-13,70837,7588,"[""Wireless Mouse""]",1787.28,{},167713,0,South America +2023-10-11,70838,2194,"[""Laptop"", ""Phone""]",1390.0,{},252407,0,South America +2024-02-03,70839,2618,"[""Charger"", ""Phone""]",98.12,{},223246,0,Africa +2023-09-24,70840,4967,"[""Laptop"", ""Wireless Mouse""]",4316.81,"{""seasonal"": ""21%""}",20958,1,Africa +2023-12-22,70841,9363,"[""Tablet""]",706.16,"{""seasonal"": ""24%""}",21793,1,Europe +2024-02-17,70842,6535,"[""Keyboard"", ""Tablet"", ""Phone""]",4525.14,{},275152,0,South America +2024-04-03,70843,1077,"[""Monitor"", ""Headphones"", ""Tablet""]",4344.82,{},76104,0,Africa +2023-04-21,70844,609,"[""Phone"", ""Keyboard"", ""Monitor""]",591.91,{},106908,0,Europe +2024-08-18,70845,8595,"[""Tablet"", ""Monitor""]",2509.86,{},73747,0,Asia +2024-11-26,70846,9148,"[""Charger"", ""Keyboard"", ""Tablet""]",3088.72,"{""loyalty"": ""16%""}",272878,1,Africa +2023-07-31,70847,9839,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3386.22,{},167132,1,Asia +2024-11-16,70848,1321,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4622.56,"{""loyalty"": ""30%""}",94659,0,South America +2023-09-27,70849,6064,"[""Laptop"", ""Keyboard"", ""Headphones""]",2096.49,{},49732,1,Asia +2024-11-15,70850,2146,"[""Phone""]",3989.28,"{""seasonal"": ""19%""}",43423,0,Europe +2023-03-24,70851,5632,"[""Charger"", ""Monitor"", ""Laptop""]",985.97,"{""seasonal"": ""8%""}",272030,0,Africa +2024-10-29,70852,5454,"[""Phone"", ""Laptop""]",4994.19,"{"""": ""24%""}",13327,1,South America +2023-12-07,70853,9547,"[""Headphones""]",3069.79,"{""seasonal"": ""25%""}",229913,0,Asia +2024-04-29,70854,8397,"[""Phone"", ""Laptop"", ""Charger""]",3320.23,{},111474,1,Europe +2023-01-20,70855,6527,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1666.5,{},245784,1,Europe +2024-05-02,70856,5871,"[""Phone""]",3240.77,"{""seasonal"": ""16%""}",116749,0,Asia +2024-01-19,70857,9339,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4539.05,"{""loyalty"": ""22%""}",225622,1,South America +2023-09-15,70858,8191,"[""Keyboard"", ""Headphones""]",4811.71,"{"""": ""30%""}",11299,1,Europe +2023-03-02,70859,9473,"[""Headphones"", ""Keyboard"", ""Laptop""]",2373.22,"{""promo"": ""18%""}",51318,0,Europe +2024-03-28,70860,9151,"[""Wireless Mouse"", ""Monitor""]",86.69,"{""loyalty"": ""12%""}",229219,0,North America +2023-03-11,70861,4897,"[""Tablet"", ""Monitor""]",4696.52,{},97882,1,North America +2024-07-04,70862,9401,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2946.73,{},20219,0,Europe +2023-02-04,70863,2899,"[""Phone""]",4952.76,{},45839,1,Africa +2023-08-25,70864,6821,"[""Headphones""]",3001.36,"{""promo"": ""7%""}",33430,1,South America +2024-04-16,70865,7061,"[""Phone"", ""Tablet""]",2221.12,"{""seasonal"": ""26%""}",121596,1,Europe +2023-02-14,70866,8832,"[""Wireless Mouse""]",4290.26,"{""loyalty"": ""10%""}",204606,0,Europe +2023-05-26,70867,5588,"[""Keyboard"", ""Charger""]",3816.82,"{""seasonal"": ""20%""}",164566,1,North America +2024-02-12,70868,3147,"[""Monitor""]",904.94,{},217253,1,Europe +2023-01-13,70869,1304,"[""Charger"", ""Phone""]",245.03,"{""loyalty"": ""9%""}",224539,1,Asia +2024-05-08,70870,503,"[""Keyboard"", ""Charger""]",351.81,{},76878,1,Europe +2023-02-05,70871,8545,"[""Charger"", ""Keyboard"", ""Tablet""]",3646.91,{},144064,1,South America +2023-06-24,70872,5871,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",89.74,"{""promo"": ""14%""}",210012,0,Europe +2023-06-19,70873,7863,"[""Monitor""]",1112.41,"{""promo"": ""15%""}",41692,0,South America +2024-08-12,70874,530,"[""Keyboard"", ""Charger""]",1983.13,{},147786,0,North America +2024-02-06,70875,990,"[""Monitor"", ""Keyboard""]",2342.64,{},59335,1,Africa +2023-01-21,70876,7245,"[""Headphones""]",1752.97,{},120238,1,South America +2023-04-03,70877,2365,"[""Headphones""]",3748.41,"{""seasonal"": ""25%""}",296819,1,North America +2023-01-26,70878,160,"[""Phone"", ""Tablet"", ""Monitor""]",316.36,"{""loyalty"": ""28%""}",64292,0,Asia +2023-05-28,70879,1403,"[""Tablet"", ""Wireless Mouse""]",4256.38,{},233856,1,Europe +2023-02-15,70880,6798,"[""Charger"", ""Headphones"", ""Laptop""]",348.99,"{""loyalty"": ""11%""}",232336,1,Asia +2024-08-28,70881,98,"[""Monitor""]",3782.12,{},203714,1,Asia +2023-11-04,70882,4984,"[""Wireless Mouse""]",287.77,"{""loyalty"": ""6%""}",136057,0,Asia +2023-09-30,70883,4395,"[""Phone""]",2436.17,"{"""": ""27%""}",16738,1,North America +2024-07-07,70884,3523,"[""Keyboard""]",1322.63,"{""seasonal"": ""24%""}",161063,0,Asia +2023-02-26,70885,2132,"[""Headphones"", ""Laptop"", ""Tablet""]",193.41,"{""seasonal"": ""21%""}",148148,0,Africa +2024-01-06,70886,8905,"[""Phone"", ""Laptop""]",2099.98,"{"""": ""6%""}",20503,0,Africa +2023-10-28,70887,3533,"[""Wireless Mouse"", ""Tablet""]",4665.11,"{""promo"": ""21%""}",160425,0,South America +2023-07-24,70888,1786,"[""Keyboard"", ""Tablet"", ""Charger""]",2929.57,{},204845,0,South America +2024-04-13,70889,4785,"[""Monitor"", ""Tablet""]",1870.87,{},161323,0,Asia +2023-11-20,70890,5800,"[""Wireless Mouse""]",1700.3,{},19463,0,North America +2023-01-03,70891,6117,"[""Tablet""]",4429.7,{},258738,1,Africa +2024-09-01,70892,2702,"[""Headphones"", ""Monitor""]",2189.87,{},22724,0,North America +2023-02-23,70893,5533,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2460.88,{},5207,1,Africa +2023-10-31,70894,9416,"[""Laptop"", ""Phone"", ""Tablet""]",4360.0,{},52743,0,South America +2023-08-30,70895,1885,"[""Phone""]",3794.62,"{"""": ""29%""}",240208,1,Europe +2023-09-12,70896,7091,"[""Charger""]",3621.02,{},158136,0,Europe +2024-08-15,70897,6878,"[""Wireless Mouse"", ""Phone""]",2274.92,"{""loyalty"": ""13%""}",171634,1,Europe +2024-06-13,70898,7627,"[""Keyboard"", ""Wireless Mouse""]",866.56,{},172256,1,Africa +2024-08-09,70899,5642,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2563.2,"{"""": ""27%""}",33133,0,Europe +2023-02-16,70900,9519,"[""Phone"", ""Keyboard"", ""Laptop""]",4827.99,"{""promo"": ""26%""}",102415,1,Africa +2023-12-18,70901,6333,"[""Headphones"", ""Keyboard"", ""Laptop""]",4015.4,{},183916,1,Asia +2024-03-06,70902,2604,"[""Keyboard"", ""Tablet"", ""Phone""]",211.05,{},286834,1,Europe +2024-04-01,70903,3554,"[""Charger""]",2385.16,{},256393,1,Europe +2023-08-18,70904,7681,"[""Charger""]",1048.87,{},48805,0,Europe +2023-12-02,70905,9584,"[""Laptop"", ""Charger"", ""Monitor""]",3678.45,"{""seasonal"": ""9%""}",25911,0,Africa +2023-08-23,70906,3754,"[""Tablet"", ""Headphones"", ""Keyboard""]",2406.4,{},272287,1,South America +2024-12-24,70907,524,"[""Phone"", ""Headphones""]",2413.47,{},41254,1,Africa +2024-01-10,70908,5349,"[""Laptop"", ""Charger""]",1228.77,"{"""": ""7%""}",210017,0,Europe +2024-10-03,70909,9978,"[""Wireless Mouse"", ""Headphones""]",384.32,"{""seasonal"": ""6%""}",129505,0,South America +2023-02-06,70910,7254,"[""Tablet""]",1243.48,{},295797,1,Africa +2024-03-10,70911,1191,"[""Monitor"", ""Laptop"", ""Keyboard""]",4680.0,"{""promo"": ""10%""}",110039,1,North America +2024-06-16,70912,5517,"[""Tablet""]",3447.43,{},186755,1,Africa +2024-03-21,70913,1230,"[""Wireless Mouse""]",611.1,{},259985,1,Africa +2024-01-05,70914,423,"[""Charger"", ""Keyboard""]",1248.3,"{""promo"": ""25%""}",160510,1,South America +2024-01-02,70915,4406,"[""Keyboard""]",2146.52,{},181547,1,South America +2024-05-30,70916,7913,"[""Phone""]",4357.45,"{""promo"": ""18%""}",260448,0,Africa +2023-11-13,70917,1660,"[""Headphones"", ""Keyboard""]",2814.55,{},149570,0,Asia +2023-03-21,70918,9616,"[""Charger"", ""Tablet""]",143.38,"{""promo"": ""28%""}",1717,0,North America +2024-09-23,70919,4280,"[""Keyboard"", ""Phone"", ""Headphones""]",513.78,"{""promo"": ""9%""}",33121,1,Europe +2023-06-01,70920,3274,"[""Phone"", ""Headphones"", ""Charger""]",1124.75,"{""seasonal"": ""13%""}",198624,1,North America +2024-09-08,70921,7660,"[""Headphones"", ""Charger""]",2020.08,{},154387,1,Asia +2023-06-26,70922,6105,"[""Keyboard"", ""Charger""]",270.3,"{""seasonal"": ""10%""}",88732,1,Asia +2024-02-16,70923,5333,"[""Phone"", ""Tablet""]",1339.78,"{"""": ""24%""}",146919,1,North America +2023-11-29,70924,6316,"[""Monitor"", ""Laptop""]",3170.63,"{""promo"": ""7%""}",122970,1,North America +2024-12-15,70925,1344,"[""Keyboard"", ""Laptop""]",2287.78,"{""loyalty"": ""27%""}",245523,0,South America +2023-09-25,70926,3812,"[""Charger"", ""Laptop""]",3489.16,{},193700,1,North America +2023-01-12,70927,8455,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1913.48,{},33133,1,Asia +2024-02-03,70928,285,"[""Tablet""]",407.2,"{""promo"": ""8%""}",62752,0,Europe +2024-02-12,70929,5539,"[""Monitor"", ""Keyboard"", ""Phone""]",2791.55,"{""loyalty"": ""22%""}",155015,1,Africa +2023-07-09,70930,2832,"[""Charger"", ""Keyboard""]",798.01,{},218114,1,Asia +2023-09-29,70931,7964,"[""Phone"", ""Laptop""]",3332.46,"{"""": ""30%""}",32988,1,South America +2024-01-29,70932,3424,"[""Tablet""]",3777.83,{},24196,0,Asia +2023-08-22,70933,535,"[""Wireless Mouse""]",3746.92,{},200045,1,North America +2024-03-23,70934,6498,"[""Wireless Mouse"", ""Headphones""]",1038.79,"{""loyalty"": ""14%""}",17910,0,South America +2024-12-17,70935,4637,"[""Charger"", ""Phone"", ""Laptop""]",4552.6,"{"""": ""9%""}",25434,0,Africa +2023-10-08,70936,4554,"[""Tablet""]",4577.6,{},13198,1,Asia +2024-01-28,70937,5845,"[""Headphones""]",2199.57,{},294758,1,Africa +2023-01-19,70938,5743,"[""Keyboard"", ""Wireless Mouse""]",2822.24,{},212202,0,North America +2023-10-30,70939,3301,"[""Wireless Mouse"", ""Headphones""]",564.15,{},70503,0,Africa +2023-05-10,70940,7230,"[""Tablet"", ""Keyboard""]",3446.85,"{""promo"": ""19%""}",94180,1,Europe +2023-09-01,70941,809,"[""Tablet""]",1409.02,"{"""": ""16%""}",240816,1,Asia +2024-06-26,70942,844,"[""Monitor"", ""Phone"", ""Headphones""]",4434.09,{},43688,1,Africa +2023-12-29,70943,9926,"[""Phone"", ""Tablet"", ""Charger""]",1320.55,{},107184,0,South America +2024-11-12,70944,5509,"[""Laptop""]",1064.85,{},239073,0,South America +2024-08-07,70945,6710,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3139.02,{},222615,1,Europe +2024-02-07,70946,7599,"[""Wireless Mouse""]",2094.51,{},156382,1,North America +2024-09-30,70947,8319,"[""Monitor"", ""Laptop""]",1570.88,"{""promo"": ""13%""}",65889,0,North America +2023-04-29,70948,7035,"[""Phone"", ""Charger""]",1943.47,{},212038,1,Africa +2024-11-23,70949,5146,"[""Laptop"", ""Charger""]",803.08,"{""loyalty"": ""17%""}",157109,0,South America +2024-05-15,70950,7755,"[""Phone"", ""Monitor"", ""Tablet""]",3394.58,"{""loyalty"": ""20%""}",128197,0,Asia +2024-12-03,70951,9076,"[""Phone""]",2067.7,{},222348,0,North America +2023-05-24,70952,3984,"[""Headphones"", ""Tablet""]",307.13,{},131446,0,Africa +2023-12-28,70953,5171,"[""Laptop"", ""Charger""]",192.96,{},130124,0,Africa +2023-06-07,70954,1184,"[""Tablet"", ""Keyboard"", ""Charger""]",474.17,{},27574,0,Europe +2023-11-12,70955,6514,"[""Wireless Mouse"", ""Laptop""]",1270.97,"{"""": ""8%""}",144557,0,Asia +2024-12-20,70956,1547,"[""Tablet""]",920.61,"{"""": ""24%""}",53121,1,Africa +2024-03-30,70957,1947,"[""Phone"", ""Monitor"", ""Keyboard""]",695.71,"{""promo"": ""5%""}",93025,0,Asia +2023-08-17,70958,1589,"[""Tablet"", ""Headphones""]",446.03,{},37301,1,Asia +2024-05-13,70959,4864,"[""Headphones"", ""Keyboard"", ""Charger""]",4232.39,"{"""": ""30%""}",193578,0,North America +2024-02-29,70960,4052,"[""Tablet""]",3810.0,{},168650,1,Europe +2023-02-06,70961,7687,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3169.3,{},69028,0,North America +2024-01-27,70962,8977,"[""Charger""]",4529.78,{},216734,0,North America +2024-08-14,70963,484,"[""Keyboard"", ""Laptop"", ""Headphones""]",1604.18,{},5018,1,Asia +2024-06-09,70964,6478,"[""Keyboard""]",3206.04,"{""seasonal"": ""19%""}",261336,0,Africa +2023-10-19,70965,1755,"[""Phone"", ""Charger""]",3426.49,{},147348,0,South America +2023-12-20,70966,5376,"[""Wireless Mouse"", ""Laptop""]",1515.39,"{""seasonal"": ""21%""}",293816,0,Europe +2023-10-28,70967,5990,"[""Phone"", ""Keyboard"", ""Tablet""]",699.73,{},258734,0,Asia +2023-03-21,70968,7638,"[""Laptop"", ""Keyboard"", ""Phone""]",557.06,"{""loyalty"": ""11%""}",118372,1,South America +2023-03-02,70969,2137,"[""Headphones""]",3210.84,{},22195,1,Africa +2024-12-28,70970,1531,"[""Laptop"", ""Keyboard""]",460.56,"{"""": ""19%""}",101533,0,Europe +2024-12-12,70971,2955,"[""Phone""]",666.77,{},119123,1,South America +2023-04-24,70972,5727,"[""Keyboard"", ""Laptop"", ""Phone""]",4907.07,"{"""": ""23%""}",164046,1,Asia +2024-09-16,70973,4354,"[""Tablet"", ""Monitor"", ""Laptop""]",4485.62,{},51204,1,Asia +2024-10-05,70974,424,"[""Wireless Mouse""]",2983.57,{},255548,1,North America +2024-09-06,70975,5898,"[""Tablet""]",975.76,"{"""": ""24%""}",260612,1,North America +2023-03-05,70976,9217,"[""Headphones""]",4298.14,{},152774,0,Asia +2023-06-25,70977,3253,"[""Wireless Mouse"", ""Phone"", ""Charger""]",377.56,"{""loyalty"": ""15%""}",130039,1,Europe +2024-01-09,70978,9577,"[""Headphones""]",4413.87,"{""promo"": ""14%""}",71761,1,North America +2024-01-14,70979,1235,"[""Monitor""]",4038.12,{},143711,1,North America +2024-09-14,70980,7256,"[""Keyboard""]",1115.08,{},126765,1,Europe +2024-09-27,70981,7864,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4524.3,"{""seasonal"": ""12%""}",237376,1,Asia +2023-07-21,70982,2720,"[""Tablet"", ""Phone"", ""Monitor""]",862.45,"{""loyalty"": ""22%""}",166108,1,Asia +2023-06-13,70983,2710,"[""Wireless Mouse"", ""Phone""]",3641.71,{},250336,0,Asia +2023-10-06,70984,1510,"[""Phone""]",255.07,{},40922,0,Africa +2023-08-29,70985,5999,"[""Monitor""]",816.61,{},225851,1,North America +2024-07-13,70986,5487,"[""Tablet"", ""Charger"", ""Headphones""]",2823.53,"{""promo"": ""18%""}",274175,0,South America +2023-07-02,70987,6788,"[""Tablet"", ""Phone"", ""Laptop""]",2314.03,{},173393,1,Africa +2024-02-24,70988,1696,"[""Wireless Mouse""]",1801.83,{},283161,1,Europe +2023-04-27,70989,2528,"[""Tablet"", ""Laptop""]",1435.97,"{"""": ""29%""}",117380,0,Africa +2023-08-24,70990,9257,"[""Monitor"", ""Laptop"", ""Keyboard""]",3764.13,{},231666,1,South America +2023-06-09,70991,7679,"[""Wireless Mouse""]",4413.57,{},237727,0,South America +2023-07-05,70992,3879,"[""Phone"", ""Tablet"", ""Keyboard""]",3790.17,{},134118,1,South America +2023-08-28,70993,2029,"[""Laptop"", ""Tablet"", ""Monitor""]",4429.69,"{""loyalty"": ""30%""}",84453,1,South America +2023-12-08,70994,7397,"[""Charger"", ""Keyboard"", ""Monitor""]",4216.31,{},282085,0,Africa +2023-12-16,70995,5034,"[""Headphones""]",4648.62,"{""loyalty"": ""8%""}",242173,0,South America +2024-03-25,70996,761,"[""Phone""]",4598.82,"{""promo"": ""16%""}",57817,1,Africa +2023-01-09,70997,163,"[""Monitor"", ""Headphones""]",1701.88,{},272204,0,Europe +2024-10-11,70998,4434,"[""Laptop"", ""Phone"", ""Keyboard""]",4988.87,{},275950,1,Europe +2024-06-02,70999,2996,"[""Headphones"", ""Tablet""]",2988.5,"{"""": ""26%""}",67984,1,Africa +2024-02-18,71000,8697,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2675.78,"{""loyalty"": ""24%""}",225703,0,South America +2023-10-21,71001,6728,"[""Wireless Mouse""]",1467.38,"{"""": ""13%""}",137748,0,South America +2024-02-02,71002,9686,"[""Laptop""]",4142.42,"{"""": ""27%""}",93988,1,Europe +2024-05-13,71003,7674,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",156.18,"{""loyalty"": ""26%""}",107174,0,North America +2023-07-24,71004,3380,"[""Monitor"", ""Headphones"", ""Laptop""]",4031.6,"{""promo"": ""5%""}",138083,1,North America +2024-08-12,71005,7999,"[""Charger"", ""Wireless Mouse""]",1941.43,"{""seasonal"": ""24%""}",296115,1,Europe +2024-08-11,71006,9607,"[""Laptop""]",4180.74,{},174075,0,Asia +2023-08-03,71007,597,"[""Headphones"", ""Monitor"", ""Phone""]",780.48,{},124643,1,South America +2024-12-13,71008,1631,"[""Tablet"", ""Charger"", ""Phone""]",1645.14,{},240435,1,Europe +2024-11-11,71009,8207,"[""Monitor"", ""Phone""]",843.03,{},287304,0,North America +2024-04-15,71010,9681,"[""Laptop""]",1532.86,{},223716,0,South America +2024-10-23,71011,2078,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2198.43,"{"""": ""13%""}",46177,1,Asia +2024-07-29,71012,585,"[""Laptop""]",1871.75,"{""loyalty"": ""27%""}",108663,0,South America +2024-05-17,71013,4666,"[""Phone"", ""Laptop""]",4747.24,{},165032,0,Asia +2024-08-12,71014,6700,"[""Laptop""]",1939.22,"{""seasonal"": ""23%""}",88039,0,South America +2023-06-02,71015,6046,"[""Wireless Mouse""]",3064.14,{},271818,0,North America +2023-06-01,71016,5526,"[""Headphones""]",455.23,"{""loyalty"": ""12%""}",34983,0,South America +2023-07-25,71017,3397,"[""Keyboard""]",1810.53,{},113238,1,Asia +2024-10-13,71018,6065,"[""Tablet""]",667.44,"{""loyalty"": ""22%""}",1551,0,South America +2024-05-30,71019,1528,"[""Tablet"", ""Charger""]",1531.0,{},117529,1,North America +2023-06-12,71020,5258,"[""Keyboard""]",1760.84,"{""promo"": ""16%""}",264818,0,North America +2024-05-05,71021,909,"[""Monitor"", ""Charger"", ""Phone""]",4276.79,{},244004,0,Africa +2023-12-03,71022,9948,"[""Wireless Mouse"", ""Laptop""]",4645.66,{},26041,0,Africa +2023-10-14,71023,2292,"[""Tablet"", ""Keyboard"", ""Headphones""]",2819.78,"{""loyalty"": ""19%""}",148517,1,Asia +2024-01-15,71024,7951,"[""Wireless Mouse""]",1177.56,{},34380,0,Africa +2023-09-11,71025,4205,"[""Tablet""]",684.28,{},156192,1,Asia +2024-08-22,71026,3697,"[""Laptop"", ""Phone"", ""Charger""]",3281.51,{},106636,1,North America +2024-06-21,71027,694,"[""Headphones""]",3893.08,{},117642,1,North America +2023-11-24,71028,4315,"[""Tablet"", ""Phone"", ""Keyboard""]",4678.76,"{""promo"": ""9%""}",22554,0,Europe +2023-04-11,71029,57,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1885.11,{},265623,0,Europe +2024-01-20,71030,1396,"[""Monitor""]",1891.8,{},50327,0,Africa +2023-01-20,71031,1888,"[""Keyboard""]",3445.6,{},50228,0,Asia +2024-12-29,71032,4362,"[""Phone""]",1242.9,"{""loyalty"": ""18%""}",210053,1,Europe +2023-07-27,71033,4769,"[""Wireless Mouse""]",4504.02,{},62988,0,Europe +2023-03-03,71034,5282,"[""Phone"", ""Laptop"", ""Charger""]",1702.42,{},13512,0,North America +2023-10-26,71035,7916,"[""Monitor""]",4570.18,{},255148,0,Asia +2023-08-14,71036,9502,"[""Keyboard"", ""Phone""]",4077.12,"{""seasonal"": ""23%""}",297577,0,Africa +2024-04-11,71037,9700,"[""Phone"", ""Monitor"", ""Keyboard""]",4110.86,"{""promo"": ""12%""}",1832,0,Europe +2024-05-17,71038,2338,"[""Wireless Mouse""]",2145.53,{},287087,1,Asia +2024-06-05,71039,4303,"[""Phone"", ""Charger""]",4400.87,{},65213,0,Africa +2024-05-17,71040,9360,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3995.7,{},39382,0,Asia +2023-11-28,71041,7620,"[""Charger"", ""Monitor""]",3394.41,{},252536,1,North America +2023-04-22,71042,7776,"[""Monitor"", ""Keyboard""]",772.54,"{""loyalty"": ""26%""}",124687,0,South America +2024-10-13,71043,2458,"[""Monitor"", ""Phone"", ""Laptop""]",412.26,"{""loyalty"": ""27%""}",206528,1,North America +2023-07-12,71044,7750,"[""Monitor""]",2730.08,{},127483,0,Asia +2024-09-08,71045,710,"[""Headphones"", ""Laptop""]",1411.03,"{""seasonal"": ""26%""}",270687,0,Asia +2024-02-12,71046,283,"[""Tablet"", ""Keyboard"", ""Laptop""]",4473.26,"{""seasonal"": ""21%""}",77748,1,North America +2023-02-15,71047,7935,"[""Tablet"", ""Wireless Mouse""]",1362.6,"{"""": ""25%""}",51573,0,Europe +2023-02-13,71048,8988,"[""Tablet"", ""Charger""]",1202.86,{},242582,0,South America +2024-01-15,71049,5700,"[""Charger""]",2142.2,"{""promo"": ""11%""}",40142,1,Africa +2024-08-23,71050,1550,"[""Phone"", ""Laptop"", ""Monitor""]",3848.64,{},173882,0,South America +2024-09-06,71051,928,"[""Phone"", ""Laptop"", ""Keyboard""]",3573.75,"{""loyalty"": ""12%""}",192655,1,Asia +2024-02-07,71052,3354,"[""Headphones"", ""Monitor""]",3233.87,{},120079,0,Europe +2024-05-18,71053,6030,"[""Wireless Mouse"", ""Phone""]",497.0,{},203253,0,Europe +2023-11-02,71054,5320,"[""Phone"", ""Monitor""]",1644.63,{},4269,0,Europe +2023-05-12,71055,2800,"[""Phone""]",2980.74,{},147509,0,Africa +2024-12-27,71056,3871,"[""Wireless Mouse"", ""Monitor""]",1391.65,"{""loyalty"": ""19%""}",238610,1,North America +2024-04-28,71057,681,"[""Tablet""]",1619.28,{},255795,0,Africa +2023-02-04,71058,3437,"[""Headphones"", ""Charger""]",4051.52,"{""seasonal"": ""8%""}",272906,0,South America +2023-10-16,71059,4398,"[""Keyboard""]",4905.99,{},299044,0,Africa +2023-03-17,71060,6617,"[""Keyboard""]",116.9,"{"""": ""25%""}",233572,1,South America +2024-06-27,71061,7018,"[""Keyboard"", ""Wireless Mouse""]",4815.24,{},35780,0,North America +2023-03-22,71062,16,"[""Charger""]",902.37,"{""loyalty"": ""10%""}",18463,1,Europe +2023-10-06,71063,5674,"[""Wireless Mouse"", ""Tablet""]",1012.53,{},69603,0,Africa +2023-06-22,71064,3218,"[""Charger"", ""Headphones"", ""Tablet""]",4774.05,"{""loyalty"": ""27%""}",231304,1,Africa +2024-04-01,71065,7137,"[""Tablet"", ""Phone"", ""Laptop""]",526.71,"{""promo"": ""28%""}",67588,1,Asia +2024-08-31,71066,2012,"[""Wireless Mouse"", ""Monitor""]",1852.86,"{""seasonal"": ""9%""}",187701,1,Europe +2023-02-14,71067,7021,"[""Monitor"", ""Charger"", ""Headphones""]",498.85,{},64947,1,Africa +2024-02-17,71068,4481,"[""Wireless Mouse""]",391.56,"{""loyalty"": ""26%""}",128399,1,Africa +2024-04-07,71069,9629,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2142.12,"{""loyalty"": ""14%""}",249438,0,Asia +2024-03-11,71070,9568,"[""Tablet""]",4988.15,{},75762,0,South America +2023-02-24,71071,5376,"[""Charger"", ""Laptop""]",674.37,"{""loyalty"": ""18%""}",295196,0,South America +2023-04-17,71072,7130,"[""Monitor"", ""Wireless Mouse""]",2500.5,"{""seasonal"": ""11%""}",79932,1,South America +2024-05-04,71073,354,"[""Monitor""]",660.41,{},24031,0,South America +2024-05-13,71074,8667,"[""Headphones"", ""Tablet"", ""Charger""]",1469.85,"{""seasonal"": ""13%""}",173701,0,Europe +2023-02-24,71075,8519,"[""Laptop"", ""Keyboard"", ""Headphones""]",849.66,{},249950,0,North America +2024-07-29,71076,6481,"[""Phone"", ""Keyboard""]",2416.47,{},89480,0,Europe +2024-03-06,71077,4596,"[""Wireless Mouse"", ""Laptop""]",945.64,{},24673,1,North America +2023-05-17,71078,9721,"[""Laptop"", ""Headphones"", ""Tablet""]",4569.3,{},229806,0,Asia +2023-11-24,71079,3302,"[""Tablet"", ""Monitor""]",3082.76,"{""promo"": ""11%""}",259461,0,Europe +2024-12-29,71080,335,"[""Keyboard"", ""Charger"", ""Laptop""]",3483.71,{},52622,1,North America +2023-07-16,71081,339,"[""Keyboard"", ""Tablet"", ""Headphones""]",3345.06,"{""loyalty"": ""24%""}",114054,0,Asia +2023-03-05,71082,5088,"[""Wireless Mouse""]",2816.89,"{"""": ""22%""}",266488,0,Asia +2023-03-12,71083,3783,"[""Charger"", ""Phone""]",2026.75,"{""seasonal"": ""7%""}",285828,1,Europe +2024-12-23,71084,9722,"[""Headphones""]",3188.66,{},144382,0,Europe +2024-06-22,71085,3192,"[""Monitor"", ""Charger"", ""Phone""]",4685.3,{},105110,1,Asia +2024-12-17,71086,8388,"[""Wireless Mouse"", ""Charger""]",4464.06,{},102517,1,North America +2023-11-27,71087,4252,"[""Charger"", ""Keyboard"", ""Monitor""]",2917.2,"{""seasonal"": ""14%""}",127986,0,North America +2023-04-12,71088,8976,"[""Phone"", ""Tablet""]",3808.44,{},210802,0,North America +2023-04-14,71089,6626,"[""Phone"", ""Tablet""]",1108.63,"{"""": ""12%""}",2266,1,South America +2023-11-03,71090,9959,"[""Laptop"", ""Tablet""]",794.05,{},222445,0,South America +2023-03-30,71091,8704,"[""Phone"", ""Tablet"", ""Laptop""]",484.76,"{"""": ""6%""}",198603,1,Europe +2023-05-14,71092,4700,"[""Laptop""]",2857.08,"{""seasonal"": ""18%""}",212759,0,Asia +2023-09-29,71093,8115,"[""Tablet"", ""Keyboard""]",4151.3,"{""loyalty"": ""10%""}",6447,1,North America +2024-05-04,71094,7871,"[""Charger"", ""Wireless Mouse""]",4426.27,{},122386,1,South America +2024-02-29,71095,1825,"[""Keyboard"", ""Headphones"", ""Tablet""]",4999.18,{},240404,0,Europe +2024-09-19,71096,4048,"[""Wireless Mouse""]",4470.63,"{""seasonal"": ""9%""}",158691,0,Africa +2023-11-10,71097,6008,"[""Charger"", ""Phone"", ""Laptop""]",575.59,"{""loyalty"": ""8%""}",298198,0,South America +2024-09-21,71098,3612,"[""Wireless Mouse""]",4940.53,{},207224,0,Europe +2023-05-17,71099,8735,"[""Laptop""]",2039.47,{},251008,0,North America +2023-09-19,71100,5557,"[""Wireless Mouse"", ""Charger""]",4395.98,{},134115,1,South America +2024-07-02,71101,2245,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4624.04,{},192380,1,North America +2024-11-18,71102,4255,"[""Tablet""]",3389.83,"{""seasonal"": ""20%""}",76733,0,Africa +2023-05-21,71103,6522,"[""Tablet"", ""Wireless Mouse""]",2525.22,"{"""": ""19%""}",104101,0,Asia +2023-04-04,71104,3894,"[""Wireless Mouse"", ""Laptop""]",4304.84,"{"""": ""18%""}",19664,0,Europe +2024-06-22,71105,7999,"[""Phone""]",3896.0,{},131817,0,Africa +2024-08-03,71106,6809,"[""Monitor""]",4356.79,{},248611,0,Africa +2023-10-30,71107,7049,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1826.11,"{""seasonal"": ""7%""}",281972,1,South America +2024-07-29,71108,5021,"[""Phone""]",4012.7,{},28590,0,North America +2023-10-28,71109,7554,"[""Wireless Mouse""]",3340.31,"{""seasonal"": ""20%""}",8156,0,Asia +2023-07-15,71110,3261,"[""Phone"", ""Monitor"", ""Headphones""]",70.85,"{""loyalty"": ""13%""}",173321,0,Africa +2024-11-19,71111,8718,"[""Tablet""]",1681.53,"{"""": ""23%""}",145702,1,Europe +2024-08-06,71112,6835,"[""Headphones"", ""Laptop"", ""Keyboard""]",701.97,{},72349,0,Europe +2024-06-06,71113,5028,"[""Laptop"", ""Keyboard"", ""Phone""]",3316.83,{},72577,1,North America +2023-11-02,71114,5448,"[""Phone"", ""Headphones"", ""Tablet""]",2760.69,"{""seasonal"": ""19%""}",256755,1,South America +2024-02-03,71115,6303,"[""Headphones"", ""Charger""]",3257.53,{},205602,0,Africa +2023-07-17,71116,478,"[""Keyboard"", ""Monitor""]",446.1,"{"""": ""14%""}",96066,1,Asia +2024-02-24,71117,3753,"[""Keyboard""]",3398.2,{},251048,0,Asia +2023-01-16,71118,1339,"[""Wireless Mouse"", ""Laptop""]",3461.29,"{""loyalty"": ""21%""}",152847,1,Asia +2024-11-09,71119,4470,"[""Headphones""]",4746.54,"{"""": ""12%""}",168006,0,Europe +2023-10-10,71120,5827,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3397.8,"{""promo"": ""21%""}",79082,1,South America +2023-07-22,71121,8298,"[""Charger"", ""Monitor"", ""Laptop""]",3499.39,{},192714,1,South America +2024-08-29,71122,5672,"[""Tablet""]",4227.37,"{""promo"": ""16%""}",293859,1,Asia +2023-10-27,71123,8689,"[""Tablet"", ""Keyboard""]",4489.45,{},277221,0,Europe +2023-10-29,71124,6067,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1342.05,"{""seasonal"": ""29%""}",275365,1,North America +2023-01-13,71125,1876,"[""Laptop"", ""Charger""]",2216.65,{},108996,1,Asia +2024-09-23,71126,3192,"[""Keyboard"", ""Phone""]",3435.18,{},216097,1,South America +2024-12-29,71127,3861,"[""Keyboard"", ""Monitor"", ""Phone""]",4774.44,{},287615,0,Africa +2023-06-27,71128,2436,"[""Keyboard"", ""Monitor"", ""Charger""]",915.47,"{""loyalty"": ""9%""}",208977,0,Africa +2024-05-29,71129,1721,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",249.89,{},12645,0,Europe +2024-07-24,71130,3655,"[""Charger"", ""Phone"", ""Wireless Mouse""]",869.01,{},54735,0,Asia +2023-03-24,71131,1054,"[""Headphones""]",3435.7,{},166168,1,Asia +2023-11-27,71132,9200,"[""Headphones"", ""Wireless Mouse""]",4216.17,{},48047,1,Africa +2023-12-25,71133,7286,"[""Monitor"", ""Wireless Mouse""]",834.16,{},287817,0,Africa +2024-09-14,71134,6340,"[""Wireless Mouse""]",4039.75,{},256826,1,South America +2024-05-01,71135,9940,"[""Tablet"", ""Charger""]",3588.45,{},89121,0,Europe +2024-02-20,71136,7834,"[""Monitor""]",4477.05,"{"""": ""18%""}",36766,1,Asia +2024-06-30,71137,4077,"[""Monitor"", ""Tablet""]",2830.0,"{""loyalty"": ""29%""}",55557,1,South America +2023-02-12,71138,9961,"[""Tablet"", ""Monitor""]",2038.69,{},292255,1,Europe +2024-03-22,71139,7334,"[""Phone""]",1691.17,{},102753,1,South America +2024-10-19,71140,8851,"[""Tablet"", ""Wireless Mouse""]",3863.23,{},121587,1,South America +2024-06-10,71141,1849,"[""Headphones"", ""Laptop"", ""Charger""]",2920.94,{},232527,0,Europe +2023-12-09,71142,7164,"[""Monitor""]",3035.11,"{""promo"": ""15%""}",2550,0,Africa +2023-01-11,71143,3433,"[""Headphones"", ""Phone""]",3619.56,{},183029,0,Europe +2023-08-18,71144,4123,"[""Wireless Mouse""]",1975.1,"{"""": ""26%""}",239275,1,North America +2024-04-07,71145,4352,"[""Charger"", ""Phone""]",847.88,{},255894,0,Asia +2024-03-25,71146,5672,"[""Keyboard"", ""Laptop""]",3770.32,"{"""": ""10%""}",176696,1,North America +2024-06-04,71147,7012,"[""Monitor"", ""Wireless Mouse""]",4475.66,{},92451,1,Africa +2023-08-26,71148,8461,"[""Wireless Mouse""]",4881.36,"{"""": ""22%""}",256963,1,South America +2024-12-23,71149,7216,"[""Headphones"", ""Keyboard"", ""Monitor""]",3212.06,{},64469,1,North America +2023-02-20,71150,4951,"[""Charger"", ""Tablet"", ""Phone""]",3177.1,{},95013,1,Europe +2024-04-02,71151,8684,"[""Wireless Mouse""]",837.88,"{""seasonal"": ""13%""}",202584,1,Africa +2024-09-10,71152,6988,"[""Monitor""]",1369.43,"{""loyalty"": ""14%""}",170963,1,North America +2023-02-01,71153,1997,"[""Keyboard""]",2603.17,"{""promo"": ""13%""}",221660,1,North America +2023-06-26,71154,2748,"[""Wireless Mouse""]",396.55,"{""seasonal"": ""16%""}",190632,0,South America +2024-08-03,71155,8335,"[""Laptop"", ""Keyboard""]",1510.56,{},159043,1,South America +2024-06-26,71156,1095,"[""Phone""]",73.51,{},128833,0,Africa +2024-10-11,71157,2540,"[""Monitor"", ""Phone"", ""Keyboard""]",650.34,{},266478,0,South America +2023-07-12,71158,3581,"[""Tablet"", ""Keyboard""]",1020.25,{},73737,0,Africa +2024-03-10,71159,9465,"[""Tablet"", ""Laptop"", ""Charger""]",2223.07,{},209870,0,North America +2023-04-17,71160,423,"[""Wireless Mouse""]",4757.93,{},257776,0,North America +2023-05-15,71161,6294,"[""Phone""]",4459.62,{},275210,1,Europe +2023-09-07,71162,5243,"[""Headphones""]",4816.06,"{""loyalty"": ""17%""}",287720,1,Africa +2024-11-24,71163,6379,"[""Monitor"", ""Phone""]",3467.16,{},19422,0,Asia +2024-12-16,71164,2152,"[""Laptop""]",578.44,{},206269,0,North America +2023-10-22,71165,1213,"[""Phone"", ""Headphones"", ""Keyboard""]",3773.05,"{""promo"": ""9%""}",245069,0,North America +2024-01-05,71166,6113,"[""Headphones""]",1858.74,{},214480,0,Africa +2023-05-02,71167,1956,"[""Keyboard""]",3480.88,{},94118,1,Europe +2024-07-21,71168,6814,"[""Charger"", ""Wireless Mouse""]",1023.13,"{""promo"": ""6%""}",169078,0,North America +2023-10-11,71169,6173,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4584.44,{},79138,0,Africa +2023-04-09,71170,5954,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3056.7,"{""promo"": ""30%""}",257505,0,Asia +2023-09-21,71171,4200,"[""Tablet"", ""Phone"", ""Laptop""]",4580.91,"{""seasonal"": ""29%""}",276142,1,Africa +2023-12-22,71172,1333,"[""Laptop"", ""Wireless Mouse""]",4552.36,{},13901,1,Asia +2024-11-29,71173,4159,"[""Headphones""]",2358.53,{},98211,0,Africa +2024-12-15,71174,796,"[""Monitor""]",889.48,{},205101,1,Africa +2024-05-10,71175,3313,"[""Headphones"", ""Laptop""]",4741.16,{},6362,1,Asia +2024-06-03,71176,3555,"[""Keyboard"", ""Charger""]",2540.6,"{"""": ""28%""}",87433,1,Europe +2024-07-13,71177,5232,"[""Monitor"", ""Phone""]",2110.16,{},16667,1,North America +2023-10-13,71178,2111,"[""Laptop"", ""Wireless Mouse""]",3245.26,"{"""": ""29%""}",72077,0,Africa +2023-06-19,71179,4183,"[""Headphones""]",4447.9,"{""promo"": ""29%""}",275041,0,Asia +2023-03-31,71180,8798,"[""Keyboard"", ""Charger""]",1287.37,{},26730,0,North America +2024-09-02,71181,3155,"[""Keyboard"", ""Wireless Mouse""]",107.58,"{""promo"": ""19%""}",285338,1,South America +2023-01-12,71182,1551,"[""Keyboard"", ""Laptop"", ""Phone""]",1662.69,"{"""": ""8%""}",221004,1,Asia +2024-06-22,71183,1885,"[""Wireless Mouse"", ""Headphones""]",1069.86,{},159877,1,Africa +2024-11-09,71184,5462,"[""Charger"", ""Monitor""]",2205.44,"{""loyalty"": ""24%""}",192176,0,Africa +2024-12-01,71185,7297,"[""Wireless Mouse""]",1871.68,"{""promo"": ""7%""}",59868,0,North America +2023-09-27,71186,5028,"[""Headphones"", ""Tablet""]",3494.65,{},191618,1,Europe +2024-01-07,71187,5398,"[""Wireless Mouse""]",2766.25,"{"""": ""22%""}",112937,0,Africa +2023-06-28,71188,484,"[""Tablet""]",4180.52,{},160020,1,Africa +2023-06-15,71189,5264,"[""Tablet"", ""Monitor"", ""Phone""]",3649.36,{},171572,0,North America +2024-09-11,71190,623,"[""Laptop""]",2346.82,"{""loyalty"": ""21%""}",140060,1,Europe +2024-04-14,71191,4825,"[""Laptop"", ""Phone"", ""Headphones""]",308.43,{},59130,1,Asia +2023-11-29,71192,5886,"[""Monitor"", ""Tablet"", ""Headphones""]",279.11,{},33530,0,Africa +2024-02-09,71193,8824,"[""Keyboard""]",3789.25,"{""loyalty"": ""20%""}",204686,0,South America +2023-04-05,71194,7773,"[""Charger"", ""Monitor"", ""Laptop""]",4966.27,{},89712,0,Africa +2024-02-13,71195,1438,"[""Laptop"", ""Wireless Mouse""]",3754.85,{},180552,1,Africa +2024-10-08,71196,8042,"[""Monitor"", ""Wireless Mouse""]",4782.53,{},90308,0,Africa +2023-06-18,71197,9926,"[""Laptop"", ""Phone"", ""Headphones""]",4520.76,"{""loyalty"": ""24%""}",176759,0,Asia +2023-01-06,71198,4601,"[""Headphones"", ""Monitor""]",1185.65,{},226953,1,Asia +2023-06-24,71199,4729,"[""Charger"", ""Laptop""]",223.99,{},112551,0,North America +2024-05-16,71200,233,"[""Tablet"", ""Phone""]",1764.9,"{""seasonal"": ""5%""}",24909,0,Africa +2023-09-28,71201,7476,"[""Headphones""]",4743.79,"{"""": ""14%""}",206247,1,Africa +2023-07-10,71202,91,"[""Laptop"", ""Charger"", ""Phone""]",1647.63,"{"""": ""8%""}",259349,1,North America +2024-10-08,71203,8214,"[""Laptop""]",3934.61,"{""loyalty"": ""28%""}",34002,1,Asia +2024-03-16,71204,4976,"[""Phone"", ""Tablet""]",3460.07,{},215046,1,Europe +2024-05-07,71205,80,"[""Monitor"", ""Tablet"", ""Headphones""]",659.58,{},34614,0,Asia +2023-07-25,71206,6000,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4230.2,{},106315,1,South America +2024-10-28,71207,2329,"[""Monitor"", ""Laptop"", ""Headphones""]",1024.95,"{""loyalty"": ""30%""}",174408,1,Europe +2024-10-31,71208,1076,"[""Laptop"", ""Charger""]",2207.6,"{""seasonal"": ""8%""}",60740,1,North America +2023-05-04,71209,2617,"[""Tablet"", ""Charger"", ""Laptop""]",1480.33,{},89240,1,North America +2023-03-09,71210,4556,"[""Laptop"", ""Monitor""]",609.54,{},129572,0,South America +2024-12-24,71211,5046,"[""Charger"", ""Phone""]",4984.3,"{"""": ""29%""}",240309,1,South America +2024-05-17,71212,6143,"[""Phone"", ""Laptop""]",4235.29,"{""seasonal"": ""7%""}",213574,0,North America +2023-06-10,71213,2667,"[""Keyboard"", ""Laptop""]",2356.2,{},13946,1,Europe +2024-10-28,71214,6896,"[""Charger"", ""Tablet""]",2222.28,{},28976,0,Asia +2024-05-25,71215,2127,"[""Monitor""]",751.9,{},129536,1,Asia +2023-06-07,71216,4621,"[""Keyboard"", ""Charger""]",174.24,{},187716,0,Europe +2023-04-21,71217,1556,"[""Tablet"", ""Charger"", ""Keyboard""]",1912.38,"{"""": ""22%""}",73326,0,South America +2024-08-26,71218,9121,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2157.81,{},105969,1,South America +2023-04-08,71219,926,"[""Laptop"", ""Headphones"", ""Phone""]",1457.72,{},68074,1,Asia +2024-04-04,71220,2857,"[""Charger""]",4928.71,{},277378,1,Europe +2024-04-16,71221,2873,"[""Keyboard"", ""Phone""]",1146.43,"{""seasonal"": ""28%""}",53637,1,Africa +2023-12-11,71222,2267,"[""Keyboard"", ""Charger""]",3496.34,"{"""": ""25%""}",81176,0,Europe +2023-07-05,71223,5084,"[""Monitor"", ""Charger""]",2522.92,"{""promo"": ""28%""}",68709,0,Africa +2023-07-19,71224,6412,"[""Phone"", ""Headphones""]",2395.17,"{""loyalty"": ""30%""}",4176,1,Africa +2024-07-21,71225,6256,"[""Charger"", ""Phone"", ""Laptop""]",1254.53,"{""seasonal"": ""29%""}",132066,1,Europe +2023-01-22,71226,5535,"[""Monitor"", ""Tablet"", ""Phone""]",1640.48,{},153717,1,North America +2023-03-04,71227,1537,"[""Keyboard""]",482.64,"{""seasonal"": ""26%""}",157947,0,North America +2024-04-06,71228,106,"[""Headphones""]",525.97,"{""seasonal"": ""27%""}",137679,0,Europe +2024-07-23,71229,909,"[""Monitor"", ""Tablet"", ""Headphones""]",4058.14,"{""seasonal"": ""13%""}",44729,0,Europe +2023-02-13,71230,5395,"[""Tablet"", ""Monitor"", ""Keyboard""]",3772.92,"{""seasonal"": ""29%""}",69173,0,North America +2024-03-06,71231,9939,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3060.26,"{""seasonal"": ""18%""}",249227,1,Africa +2024-04-06,71232,8666,"[""Tablet""]",3699.36,"{"""": ""16%""}",265435,1,South America +2024-01-20,71233,6004,"[""Monitor"", ""Phone""]",1353.23,"{""loyalty"": ""11%""}",298210,0,South America +2023-03-18,71234,2734,"[""Charger""]",4890.48,"{""seasonal"": ""7%""}",176000,1,North America +2023-07-16,71235,8116,"[""Monitor"", ""Tablet"", ""Headphones""]",2210.17,{},210287,0,Europe +2023-06-15,71236,4646,"[""Laptop"", ""Tablet""]",3869.24,{},79031,0,Europe +2023-02-23,71237,4629,"[""Charger"", ""Tablet"", ""Phone""]",4472.58,{},55614,1,Europe +2023-04-30,71238,5614,"[""Keyboard"", ""Phone""]",748.07,"{"""": ""30%""}",31542,1,North America +2023-07-02,71239,5568,"[""Laptop""]",1581.77,{},162904,0,Africa +2023-05-21,71240,4914,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1852.26,{},161923,1,Asia +2024-04-12,71241,5717,"[""Keyboard"", ""Tablet""]",3931.13,{},254904,1,Africa +2023-03-28,71242,8432,"[""Charger"", ""Headphones"", ""Monitor""]",4311.06,"{""seasonal"": ""10%""}",194728,0,Europe +2024-04-07,71243,4923,"[""Charger""]",1356.55,"{""loyalty"": ""12%""}",119402,0,South America +2023-02-11,71244,8777,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4143.91,"{""loyalty"": ""24%""}",99159,0,North America +2024-11-07,71245,2740,"[""Phone"", ""Tablet"", ""Laptop""]",804.41,{},188630,0,North America +2023-10-08,71246,30,"[""Tablet"", ""Laptop"", ""Keyboard""]",3854.44,"{""seasonal"": ""18%""}",144485,0,North America +2024-10-10,71247,5635,"[""Monitor""]",2755.18,{},216416,0,North America +2024-07-23,71248,1507,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1266.81,{},212376,1,Europe +2023-08-20,71249,685,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4405.77,"{""promo"": ""27%""}",41547,0,North America +2024-03-14,71250,7485,"[""Charger""]",1746.33,"{""seasonal"": ""17%""}",81962,1,South America +2023-02-24,71251,8427,"[""Laptop""]",3558.6,"{""loyalty"": ""30%""}",298016,1,South America +2023-08-24,71252,2559,"[""Phone"", ""Tablet"", ""Keyboard""]",2477.37,"{""promo"": ""23%""}",181164,1,South America +2024-02-08,71253,4582,"[""Laptop"", ""Monitor"", ""Charger""]",3411.54,{},63823,0,Africa +2023-12-06,71254,310,"[""Wireless Mouse""]",1197.82,"{""promo"": ""13%""}",277615,0,North America +2023-10-06,71255,1328,"[""Headphones""]",3260.93,{},218717,1,Europe +2023-09-20,71256,4375,"[""Charger""]",452.38,"{"""": ""9%""}",264204,1,North America +2023-02-09,71257,1518,"[""Monitor""]",244.24,"{""loyalty"": ""28%""}",232545,1,South America +2024-07-12,71258,4654,"[""Tablet"", ""Wireless Mouse""]",185.18,{},262306,1,North America +2023-02-13,71259,7420,"[""Headphones"", ""Wireless Mouse""]",168.8,"{""loyalty"": ""23%""}",60521,1,South America +2023-03-17,71260,9511,"[""Wireless Mouse""]",1888.78,"{""loyalty"": ""16%""}",164489,1,Africa +2023-02-18,71261,7600,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",546.98,"{""seasonal"": ""28%""}",289423,0,Asia +2023-01-13,71262,8214,"[""Headphones""]",3601.56,"{"""": ""17%""}",240231,0,Europe +2023-02-08,71263,594,"[""Keyboard""]",2796.95,"{""loyalty"": ""6%""}",102805,1,Africa +2024-11-01,71264,1250,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3920.03,{},156574,1,North America +2024-05-30,71265,5782,"[""Keyboard"", ""Tablet"", ""Monitor""]",841.91,"{""promo"": ""7%""}",291484,0,Europe +2024-01-14,71266,4492,"[""Charger""]",2186.25,"{""promo"": ""11%""}",72728,1,Europe +2024-08-22,71267,5435,"[""Charger"", ""Phone"", ""Monitor""]",3807.65,{},200317,0,Asia +2023-01-13,71268,6562,"[""Wireless Mouse""]",4891.1,{},241365,0,South America +2024-10-08,71269,6860,"[""Monitor"", ""Keyboard"", ""Charger""]",251.59,{},13888,1,Europe +2023-12-29,71270,5746,"[""Tablet""]",1386.74,{},165483,1,Europe +2024-10-05,71271,7856,"[""Tablet"", ""Keyboard""]",1673.13,"{""promo"": ""21%""}",99248,1,Europe +2024-01-14,71272,7933,"[""Keyboard""]",1735.6,{},166473,0,South America +2023-10-15,71273,9901,"[""Monitor"", ""Keyboard""]",3664.38,{},57308,1,Asia +2023-06-12,71274,356,"[""Phone""]",1165.55,{},235694,0,Europe +2024-09-29,71275,1884,"[""Wireless Mouse""]",3233.62,{},284797,0,South America +2023-01-02,71276,8073,"[""Laptop"", ""Tablet""]",3961.73,{},108928,1,Africa +2024-10-12,71277,5811,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2899.03,"{""promo"": ""22%""}",266298,1,Europe +2023-12-21,71278,4621,"[""Charger""]",1750.68,"{"""": ""27%""}",61122,0,South America +2023-11-11,71279,8578,"[""Headphones""]",3204.28,{},259294,0,Europe +2024-08-18,71280,9439,"[""Tablet"", ""Charger"", ""Monitor""]",495.37,"{"""": ""17%""}",123225,0,North America +2024-03-27,71281,3493,"[""Tablet"", ""Charger""]",3773.26,{},127057,1,Europe +2023-12-28,71282,2503,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",677.25,{},50541,1,South America +2023-06-16,71283,4342,"[""Headphones""]",1609.67,"{""seasonal"": ""15%""}",193151,0,North America +2023-05-22,71284,6660,"[""Tablet"", ""Headphones"", ""Monitor""]",3577.39,"{""seasonal"": ""18%""}",205075,1,Asia +2024-05-29,71285,2475,"[""Laptop"", ""Charger"", ""Monitor""]",4373.19,"{""loyalty"": ""12%""}",175607,1,Africa +2023-02-07,71286,8330,"[""Phone"", ""Monitor""]",1781.99,{},174028,0,Europe +2024-06-05,71287,5426,"[""Phone"", ""Charger""]",2063.01,"{""loyalty"": ""15%""}",8337,1,Europe +2024-08-13,71288,25,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1731.15,{},193122,0,Africa +2024-11-24,71289,5777,"[""Tablet"", ""Laptop"", ""Phone""]",297.68,{},154422,1,South America +2023-04-29,71290,6956,"[""Phone""]",4686.02,"{""promo"": ""28%""}",158525,0,Asia +2023-01-23,71291,6202,"[""Keyboard""]",1868.01,{},242619,0,South America +2024-11-23,71292,9198,"[""Charger"", ""Headphones""]",453.62,"{""seasonal"": ""19%""}",157410,1,Africa +2023-03-28,71293,7717,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2045.99,"{""loyalty"": ""12%""}",133944,1,North America +2023-09-27,71294,7260,"[""Keyboard"", ""Monitor""]",4721.77,"{"""": ""12%""}",81083,0,Europe +2024-09-17,71295,4559,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2186.74,"{""loyalty"": ""8%""}",249802,1,Africa +2024-01-12,71296,5626,"[""Monitor"", ""Laptop""]",783.72,{},295065,1,North America +2023-06-08,71297,7802,"[""Monitor""]",2298.57,{},282123,0,South America +2023-07-10,71298,5015,"[""Tablet"", ""Monitor"", ""Headphones""]",1024.59,"{""loyalty"": ""8%""}",263080,1,South America +2024-06-11,71299,9541,"[""Tablet"", ""Phone"", ""Laptop""]",4605.95,"{"""": ""29%""}",222503,0,Africa +2024-07-15,71300,5047,"[""Charger"", ""Monitor""]",2736.59,{},188432,1,Africa +2023-03-25,71301,3075,"[""Keyboard"", ""Tablet""]",1608.79,"{""promo"": ""7%""}",97443,0,North America +2024-02-02,71302,1206,"[""Laptop"", ""Keyboard""]",2485.6,{},93208,0,Africa +2023-09-28,71303,6048,"[""Headphones"", ""Keyboard""]",4591.9,{},136275,0,Asia +2024-04-18,71304,8443,"[""Charger""]",2184.04,"{""seasonal"": ""28%""}",192859,1,Africa +2024-01-02,71305,3571,"[""Wireless Mouse""]",1536.05,"{""seasonal"": ""26%""}",227139,0,Asia +2023-03-18,71306,9178,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2826.91,"{""loyalty"": ""25%""}",119891,0,Africa +2024-04-26,71307,6701,"[""Monitor""]",1238.87,"{""seasonal"": ""20%""}",234691,0,South America +2024-09-14,71308,1438,"[""Charger""]",3703.13,"{"""": ""9%""}",264203,1,Asia +2023-04-01,71309,4853,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4602.94,"{""loyalty"": ""19%""}",161636,1,South America +2023-07-10,71310,8270,"[""Monitor"", ""Headphones""]",3793.59,{},258732,0,South America +2023-06-25,71311,3119,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",233.37,"{""loyalty"": ""25%""}",95196,0,Asia +2023-02-13,71312,5916,"[""Wireless Mouse"", ""Keyboard""]",3295.15,{},2006,1,North America +2024-11-29,71313,9686,"[""Wireless Mouse""]",4950.65,{},141702,1,Europe +2024-03-02,71314,3489,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",167.35,"{""seasonal"": ""11%""}",84423,1,Asia +2024-10-07,71315,7244,"[""Laptop"", ""Keyboard""]",1603.24,{},30782,0,South America +2024-05-11,71316,2837,"[""Keyboard""]",4488.19,{},160483,0,North America +2023-06-15,71317,8277,"[""Phone""]",4243.22,{},217847,0,Africa +2024-03-01,71318,1840,"[""Tablet"", ""Keyboard""]",4615.76,"{""promo"": ""17%""}",195093,0,South America +2023-03-20,71319,7690,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1247.27,"{"""": ""15%""}",87326,0,Asia +2024-07-08,71320,1992,"[""Monitor"", ""Charger""]",139.59,"{"""": ""15%""}",38577,1,Africa +2023-06-24,71321,1672,"[""Phone""]",597.07,{},83491,0,Africa +2023-10-07,71322,4581,"[""Charger"", ""Laptop""]",4238.92,"{""loyalty"": ""21%""}",94707,0,Europe +2024-11-30,71323,3058,"[""Wireless Mouse""]",3193.56,"{""promo"": ""27%""}",170854,0,South America +2024-01-23,71324,8524,"[""Keyboard""]",3073.22,"{""loyalty"": ""23%""}",107501,1,North America +2023-12-31,71325,3516,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1381.57,{},195925,0,Europe +2024-05-03,71326,4456,"[""Keyboard""]",950.84,"{""promo"": ""6%""}",216619,0,Africa +2024-08-16,71327,7798,"[""Tablet"", ""Monitor"", ""Keyboard""]",523.37,"{""promo"": ""6%""}",101564,1,North America +2024-12-26,71328,8538,"[""Tablet""]",967.84,"{""seasonal"": ""29%""}",83082,1,Europe +2023-12-04,71329,4530,"[""Laptop""]",1893.02,{},208436,0,South America +2024-06-07,71330,9128,"[""Headphones"", ""Phone"", ""Keyboard""]",2171.01,{},228785,0,Africa +2023-07-09,71331,2440,"[""Charger"", ""Headphones"", ""Phone""]",1342.18,"{"""": ""21%""}",126703,1,Asia +2023-06-28,71332,9927,"[""Phone"", ""Tablet"", ""Headphones""]",1313.83,"{""promo"": ""13%""}",46159,0,South America +2024-11-06,71333,6819,"[""Charger""]",1778.72,"{""seasonal"": ""22%""}",222093,1,Africa +2023-09-23,71334,8776,"[""Keyboard""]",1650.69,{},216005,0,South America +2024-03-31,71335,8184,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1607.75,"{""loyalty"": ""26%""}",84266,0,Europe +2023-12-16,71336,1555,"[""Wireless Mouse""]",2243.33,{},230972,1,Africa +2023-03-28,71337,8678,"[""Phone"", ""Wireless Mouse""]",552.73,"{""loyalty"": ""19%""}",282264,1,South America +2023-02-09,71338,340,"[""Phone""]",3328.39,{},64515,1,South America +2023-11-17,71339,6119,"[""Keyboard"", ""Charger"", ""Monitor""]",2810.31,"{"""": ""5%""}",16114,0,Africa +2023-01-16,71340,7961,"[""Keyboard"", ""Wireless Mouse""]",224.76,{},215667,0,Europe +2024-03-09,71341,7472,"[""Headphones"", ""Phone""]",4872.98,"{""seasonal"": ""28%""}",56236,1,Europe +2024-03-12,71342,9558,"[""Phone""]",694.21,"{""seasonal"": ""18%""}",54235,1,Africa +2024-10-04,71343,7965,"[""Phone"", ""Charger""]",3400.44,"{"""": ""8%""}",299858,0,South America +2024-05-06,71344,4500,"[""Tablet"", ""Charger""]",182.97,"{""loyalty"": ""11%""}",282604,0,South America +2023-03-07,71345,4434,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",95.93,"{"""": ""10%""}",208746,1,Europe +2023-10-18,71346,5542,"[""Headphones""]",2993.59,{},33209,0,Asia +2023-08-23,71347,8525,"[""Headphones"", ""Phone""]",1919.06,"{""loyalty"": ""13%""}",223537,1,Africa +2023-05-14,71348,1528,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1529.94,"{""loyalty"": ""21%""}",65604,1,Europe +2023-04-12,71349,9015,"[""Tablet""]",1913.35,{},218498,1,South America +2023-12-24,71350,9832,"[""Tablet""]",2116.94,"{""seasonal"": ""21%""}",225531,0,Asia +2024-11-17,71351,8244,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1311.52,"{"""": ""27%""}",106703,1,Asia +2023-06-18,71352,5321,"[""Phone""]",1776.09,"{""seasonal"": ""26%""}",194426,1,Asia +2023-12-14,71353,2774,"[""Wireless Mouse"", ""Monitor""]",1520.27,"{"""": ""18%""}",250817,1,North America +2024-10-08,71354,1225,"[""Phone""]",2584.54,"{"""": ""7%""}",256020,0,North America +2024-06-29,71355,6787,"[""Charger"", ""Wireless Mouse""]",2251.19,"{"""": ""25%""}",174267,1,North America +2023-09-14,71356,9878,"[""Monitor"", ""Phone""]",4039.06,{},30116,1,Asia +2024-11-15,71357,8458,"[""Keyboard"", ""Monitor"", ""Tablet""]",724.42,{},290072,1,Africa +2023-03-24,71358,3041,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",663.62,{},44910,0,North America +2023-08-08,71359,7541,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2274.8,{},291053,1,Europe +2023-05-31,71360,3604,"[""Wireless Mouse""]",3483.76,"{""seasonal"": ""24%""}",40347,0,Europe +2023-07-24,71361,5327,"[""Laptop"", ""Keyboard"", ""Monitor""]",128.89,"{""promo"": ""5%""}",29053,0,North America +2023-11-27,71362,7503,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3262.12,{},179393,1,Africa +2023-01-01,71363,5536,"[""Phone"", ""Monitor""]",2168.27,"{"""": ""30%""}",90048,1,North America +2023-12-22,71364,5407,"[""Tablet"", ""Headphones""]",2955.34,"{"""": ""21%""}",104895,1,North America +2024-02-03,71365,1207,"[""Monitor"", ""Phone"", ""Tablet""]",513.63,{},297374,0,South America +2024-08-22,71366,9537,"[""Tablet"", ""Headphones"", ""Keyboard""]",3059.39,"{""promo"": ""21%""}",157860,0,Africa +2023-01-25,71367,5612,"[""Charger"", ""Tablet""]",3288.57,{},48180,0,South America +2024-09-04,71368,1843,"[""Headphones""]",1721.51,"{""promo"": ""21%""}",117977,0,South America +2024-02-23,71369,7451,"[""Tablet""]",3964.73,"{"""": ""5%""}",272579,1,North America +2023-02-28,71370,2041,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",442.45,{},63196,1,South America +2024-02-14,71371,8729,"[""Tablet"", ""Charger""]",4879.17,{},206909,0,Asia +2024-04-05,71372,5249,"[""Charger"", ""Tablet""]",286.86,{},214569,0,North America +2024-09-13,71373,1589,"[""Wireless Mouse"", ""Tablet""]",507.1,"{""loyalty"": ""27%""}",85674,0,Africa +2024-06-08,71374,1203,"[""Charger""]",1368.33,{},155091,1,North America +2024-11-22,71375,6513,"[""Headphones""]",2929.33,"{""promo"": ""15%""}",167016,1,Asia +2024-07-03,71376,9997,"[""Tablet"", ""Charger""]",3067.56,{},177977,1,Africa +2024-11-26,71377,3655,"[""Headphones"", ""Keyboard""]",107.32,{},105915,0,South America +2024-07-10,71378,4480,"[""Keyboard""]",1777.98,"{""loyalty"": ""26%""}",10251,1,North America +2024-11-24,71379,2850,"[""Laptop"", ""Wireless Mouse""]",2045.31,{},24010,1,Africa +2024-07-10,71380,6060,"[""Keyboard""]",3107.91,{},45732,1,Asia +2024-12-24,71381,7148,"[""Charger"", ""Tablet""]",2503.84,"{""loyalty"": ""6%""}",172838,0,South America +2024-11-12,71382,6685,"[""Tablet""]",3650.37,"{""loyalty"": ""13%""}",61862,1,South America +2023-03-16,71383,9509,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3150.24,"{""seasonal"": ""23%""}",209647,0,Africa +2023-12-28,71384,4532,"[""Monitor""]",2759.09,{},270938,0,South America +2024-06-23,71385,9189,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4072.99,"{""promo"": ""17%""}",240650,0,South America +2023-07-29,71386,8327,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1799.56,{},46125,1,Europe +2023-01-18,71387,9307,"[""Tablet""]",3831.54,{},157603,1,Africa +2023-06-06,71388,6953,"[""Laptop""]",847.73,{},86062,1,Europe +2024-02-04,71389,3122,"[""Wireless Mouse""]",578.28,"{""loyalty"": ""14%""}",143900,1,South America +2023-03-31,71390,6192,"[""Monitor"", ""Headphones""]",810.51,"{""promo"": ""10%""}",243577,0,Europe +2024-07-10,71391,3309,"[""Phone"", ""Headphones"", ""Tablet""]",690.82,{},76326,0,North America +2023-06-08,71392,8248,"[""Headphones"", ""Laptop""]",1922.21,{},276891,0,Asia +2023-04-06,71393,5154,"[""Headphones"", ""Laptop""]",1050.63,{},75619,0,Africa +2024-02-29,71394,8045,"[""Phone"", ""Laptop""]",4261.76,"{""promo"": ""15%""}",99819,1,Africa +2024-08-22,71395,24,"[""Monitor""]",1012.82,{},274943,1,South America +2024-03-25,71396,4076,"[""Phone"", ""Tablet"", ""Laptop""]",2713.9,"{""seasonal"": ""19%""}",134221,1,Asia +2023-11-30,71397,6122,"[""Headphones"", ""Monitor""]",947.92,"{""loyalty"": ""27%""}",11486,0,South America +2023-01-21,71398,9387,"[""Keyboard"", ""Tablet""]",1257.2,"{""promo"": ""6%""}",143990,1,Europe +2023-08-13,71399,9698,"[""Charger"", ""Monitor""]",4286.92,{},173498,0,Europe +2023-11-04,71400,7836,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4848.01,"{""promo"": ""16%""}",281640,0,South America +2024-02-06,71401,9476,"[""Wireless Mouse"", ""Monitor""]",2396.59,"{""seasonal"": ""23%""}",293122,0,Asia +2024-05-04,71402,2924,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3330.4,{},144454,0,North America +2024-05-10,71403,3486,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",806.13,{},269132,0,Asia +2024-01-07,71404,8398,"[""Headphones""]",2567.05,"{""loyalty"": ""17%""}",236246,0,Asia +2023-07-22,71405,7542,"[""Laptop"", ""Tablet""]",3487.95,"{""loyalty"": ""18%""}",204289,1,Asia +2024-04-27,71406,576,"[""Keyboard""]",1374.86,"{""seasonal"": ""27%""}",95430,1,Asia +2024-03-24,71407,9456,"[""Monitor"", ""Phone""]",1171.41,"{"""": ""13%""}",11630,0,South America +2023-04-13,71408,5326,"[""Monitor"", ""Charger""]",3389.57,{},67478,0,North America +2024-10-19,71409,5297,"[""Headphones"", ""Keyboard""]",4072.27,"{""promo"": ""30%""}",87173,1,North America +2024-01-19,71410,1517,"[""Phone"", ""Wireless Mouse""]",2077.03,{},82363,1,South America +2023-07-12,71411,5718,"[""Laptop"", ""Wireless Mouse""]",1358.42,"{""promo"": ""28%""}",283878,1,Europe +2024-04-27,71412,8461,"[""Tablet"", ""Charger""]",55.14,{},28166,0,South America +2024-05-30,71413,5321,"[""Phone"", ""Wireless Mouse""]",3485.96,{},25675,1,Europe +2024-05-24,71414,8459,"[""Wireless Mouse""]",4009.92,"{""loyalty"": ""10%""}",27434,1,North America +2024-06-13,71415,9961,"[""Laptop""]",1258.77,{},67001,0,North America +2023-01-17,71416,9566,"[""Wireless Mouse"", ""Charger""]",602.23,{},35842,1,North America +2023-02-04,71417,8998,"[""Monitor"", ""Headphones""]",408.36,{},51532,0,Asia +2024-07-06,71418,3066,"[""Headphones""]",1087.75,"{""seasonal"": ""15%""}",66991,0,Africa +2023-02-04,71419,3342,"[""Keyboard""]",3923.8,{},160831,1,Africa +2023-04-28,71420,5560,"[""Monitor"", ""Phone""]",3732.39,{},176134,0,Africa +2023-01-01,71421,1644,"[""Tablet"", ""Phone""]",1581.41,"{"""": ""22%""}",192392,1,North America +2023-05-29,71422,5682,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1009.26,"{""promo"": ""19%""}",146217,1,Africa +2024-12-16,71423,1213,"[""Tablet""]",118.63,"{""promo"": ""27%""}",102979,0,South America +2024-10-25,71424,2482,"[""Keyboard""]",4551.55,{},209330,1,Africa +2024-10-06,71425,2144,"[""Charger""]",4369.83,{},284524,0,North America +2024-03-21,71426,9269,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1084.59,"{""loyalty"": ""9%""}",207243,0,Africa +2024-05-01,71427,8543,"[""Keyboard""]",4842.98,"{""promo"": ""20%""}",218148,1,North America +2024-09-24,71428,8543,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3503.24,"{""seasonal"": ""8%""}",31162,0,Asia +2024-01-30,71429,4884,"[""Tablet""]",1302.59,{},242452,0,North America +2023-04-10,71430,8999,"[""Wireless Mouse""]",4435.64,"{""promo"": ""11%""}",62050,0,Europe +2024-11-30,71431,2288,"[""Wireless Mouse""]",3125.13,{},283509,0,Asia +2023-07-30,71432,6915,"[""Monitor"", ""Keyboard""]",3730.74,"{"""": ""23%""}",53662,1,Europe +2024-03-12,71433,5481,"[""Charger"", ""Wireless Mouse""]",3372.6,{},127209,0,Europe +2024-11-03,71434,9420,"[""Monitor"", ""Laptop"", ""Phone""]",1385.1,{},287666,0,Europe +2024-05-03,71435,8829,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2169.64,"{"""": ""17%""}",256654,0,North America +2023-06-19,71436,8697,"[""Charger""]",3309.69,"{""loyalty"": ""21%""}",27596,1,Europe +2023-06-15,71437,2016,"[""Tablet"", ""Headphones""]",2781.4,{},64960,1,Africa +2023-12-19,71438,6715,"[""Laptop""]",3412.7,"{""promo"": ""30%""}",188729,1,Africa +2023-07-10,71439,5084,"[""Laptop"", ""Tablet""]",2235.45,{},56152,1,South America +2024-06-26,71440,8502,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",364.69,"{""promo"": ""16%""}",270293,1,Africa +2023-04-19,71441,9699,"[""Phone"", ""Charger""]",1360.85,{},96257,0,Europe +2023-01-15,71442,8167,"[""Tablet""]",634.53,{},102849,1,North America +2024-04-19,71443,6026,"[""Monitor""]",260.73,{},199608,0,Africa +2024-03-15,71444,4685,"[""Laptop""]",3062.79,"{""seasonal"": ""16%""}",45056,1,Europe +2023-12-19,71445,1235,"[""Phone""]",1553.85,"{""promo"": ""17%""}",251557,0,Africa +2023-08-25,71446,9717,"[""Keyboard"", ""Wireless Mouse""]",4700.47,{},37450,1,Asia +2024-09-21,71447,9978,"[""Tablet""]",2774.4,{},138805,0,Africa +2023-06-20,71448,314,"[""Tablet"", ""Charger""]",225.28,"{"""": ""8%""}",169611,1,South America +2023-11-11,71449,4705,"[""Laptop"", ""Charger"", ""Headphones""]",1616.9,"{""loyalty"": ""28%""}",164896,0,North America +2024-02-26,71450,2347,"[""Headphones""]",4288.84,{},243187,1,Asia +2024-03-11,71451,992,"[""Keyboard"", ""Phone""]",1807.6,{},60466,1,South America +2024-08-23,71452,4273,"[""Charger"", ""Wireless Mouse""]",990.79,{},61899,0,Africa +2023-05-29,71453,3250,"[""Keyboard""]",502.64,"{"""": ""10%""}",88489,1,South America +2023-10-17,71454,2971,"[""Tablet""]",4394.79,"{"""": ""6%""}",112505,0,Asia +2024-02-15,71455,3362,"[""Headphones""]",3840.13,{},188354,0,Europe +2023-01-01,71456,2904,"[""Monitor"", ""Tablet"", ""Headphones""]",775.04,{},224706,0,Africa +2023-08-01,71457,151,"[""Tablet"", ""Headphones""]",3154.45,{},196382,0,North America +2024-07-02,71458,167,"[""Charger""]",749.85,"{""loyalty"": ""5%""}",205380,0,Europe +2024-01-26,71459,3855,"[""Headphones"", ""Phone""]",1569.43,{},75244,1,South America +2023-08-31,71460,5901,"[""Charger"", ""Phone""]",1557.73,"{"""": ""8%""}",293165,0,Europe +2023-04-16,71461,1595,"[""Keyboard"", ""Wireless Mouse""]",2366.42,"{""seasonal"": ""6%""}",36386,0,South America +2023-05-13,71462,8101,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1414.42,{},242428,0,North America +2024-03-25,71463,7597,"[""Monitor""]",2287.88,"{""promo"": ""28%""}",66961,1,Europe +2024-06-18,71464,4168,"[""Monitor""]",1459.52,"{""loyalty"": ""11%""}",152064,1,Asia +2023-09-02,71465,7089,"[""Monitor""]",3228.1,"{""seasonal"": ""23%""}",271581,1,Europe +2024-03-14,71466,5329,"[""Laptop"", ""Monitor""]",3092.08,{},216735,1,South America +2024-11-03,71467,9468,"[""Tablet"", ""Wireless Mouse""]",3265.32,{},129373,1,North America +2023-07-15,71468,8084,"[""Wireless Mouse""]",1999.83,"{""seasonal"": ""15%""}",234772,1,South America +2024-07-26,71469,5489,"[""Keyboard"", ""Monitor""]",3826.06,{},11806,1,Asia +2024-01-26,71470,3494,"[""Phone"", ""Laptop""]",4788.52,{},87081,0,North America +2024-10-20,71471,7747,"[""Tablet""]",4428.2,"{""promo"": ""5%""}",89855,1,South America +2024-05-22,71472,3100,"[""Wireless Mouse"", ""Phone""]",398.38,{},94768,0,Europe +2023-07-14,71473,3232,"[""Phone"", ""Laptop"", ""Headphones""]",3711.4,"{"""": ""6%""}",56514,0,Asia +2024-01-10,71474,9279,"[""Phone""]",659.12,"{"""": ""29%""}",49908,0,Asia +2023-03-31,71475,8893,"[""Tablet"", ""Phone"", ""Headphones""]",1709.2,{},278654,1,Europe +2023-10-22,71476,4999,"[""Monitor"", ""Charger"", ""Keyboard""]",3811.29,"{""promo"": ""23%""}",43534,1,Africa +2024-07-14,71477,4356,"[""Charger"", ""Tablet"", ""Headphones""]",219.7,{},126638,0,Africa +2024-08-11,71478,3489,"[""Charger""]",4914.86,"{""promo"": ""28%""}",13691,1,Europe +2023-08-06,71479,6086,"[""Monitor"", ""Headphones"", ""Phone""]",3760.95,{},254827,0,Asia +2024-10-07,71480,736,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3288.79,"{""promo"": ""9%""}",11664,0,Asia +2024-07-08,71481,9122,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4347.65,"{""seasonal"": ""9%""}",9861,1,South America +2024-11-23,71482,4798,"[""Monitor""]",4797.39,"{""seasonal"": ""7%""}",62787,0,Africa +2023-11-15,71483,6376,"[""Charger"", ""Laptop""]",154.29,{},77255,1,South America +2023-08-04,71484,5092,"[""Laptop"", ""Wireless Mouse""]",1356.18,{},145006,1,South America +2023-05-01,71485,7556,"[""Phone""]",4710.83,{},53376,0,Asia +2024-07-04,71486,748,"[""Headphones"", ""Monitor"", ""Tablet""]",613.4,{},44523,1,South America +2024-06-13,71487,334,"[""Laptop"", ""Wireless Mouse""]",4497.01,"{"""": ""6%""}",228609,0,South America +2024-03-22,71488,9685,"[""Headphones""]",2310.92,"{""promo"": ""6%""}",289209,1,Asia +2023-03-20,71489,9481,"[""Phone"", ""Laptop"", ""Headphones""]",2223.13,{},167192,1,Asia +2023-05-05,71490,4135,"[""Wireless Mouse""]",2330.49,"{"""": ""28%""}",256320,1,Europe +2023-02-10,71491,3806,"[""Keyboard"", ""Charger"", ""Phone""]",1057.1,{},27345,0,Europe +2023-02-05,71492,9076,"[""Charger"", ""Monitor""]",2362.15,"{""loyalty"": ""20%""}",174619,1,South America +2024-03-07,71493,4342,"[""Wireless Mouse""]",3082.65,"{""seasonal"": ""11%""}",77996,1,North America +2023-03-13,71494,2397,"[""Phone"", ""Charger""]",101.66,{},137133,1,South America +2024-11-08,71495,9522,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1501.14,{},14948,1,Europe +2023-06-08,71496,464,"[""Headphones"", ""Tablet"", ""Laptop""]",3994.69,{},215822,0,Europe +2023-10-03,71497,7181,"[""Tablet"", ""Charger"", ""Laptop""]",2588.4,"{""loyalty"": ""18%""}",249289,1,South America +2024-07-16,71498,6720,"[""Monitor"", ""Headphones""]",1919.69,{},165372,1,South America +2023-06-14,71499,6071,"[""Laptop""]",2623.4,{},130148,1,Africa +2024-03-25,71500,4426,"[""Phone""]",4816.86,{},42925,1,South America +2024-06-20,71501,5230,"[""Headphones"", ""Keyboard""]",1238.79,"{""seasonal"": ""7%""}",248379,0,Africa +2023-06-21,71502,1287,"[""Charger"", ""Phone""]",1459.3,"{"""": ""26%""}",133204,0,North America +2024-07-29,71503,5659,"[""Charger"", ""Wireless Mouse""]",2544.0,"{"""": ""9%""}",109559,0,South America +2023-01-26,71504,5665,"[""Laptop""]",3489.06,"{""seasonal"": ""29%""}",233317,1,Africa +2024-04-14,71505,795,"[""Monitor"", ""Charger"", ""Keyboard""]",4904.82,{},232127,0,Europe +2024-03-13,71506,7689,"[""Laptop"", ""Keyboard""]",1586.96,"{""seasonal"": ""5%""}",249559,1,Europe +2023-03-10,71507,134,"[""Laptop""]",3529.3,"{""loyalty"": ""21%""}",241293,1,Africa +2023-08-27,71508,2964,"[""Charger"", ""Laptop""]",3064.94,{},213967,0,Asia +2024-09-29,71509,3631,"[""Monitor""]",3622.23,{},104628,0,South America +2023-06-10,71510,194,"[""Tablet"", ""Wireless Mouse""]",1554.56,{},268280,1,Africa +2024-02-10,71511,2066,"[""Keyboard"", ""Laptop"", ""Phone""]",3828.57,{},160309,0,Asia +2024-04-15,71512,9063,"[""Monitor""]",1124.0,{},102929,1,North America +2024-06-01,71513,3748,"[""Charger""]",931.57,{},168149,1,Europe +2023-03-26,71514,6277,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3355.61,{},17602,1,Asia +2024-02-28,71515,6895,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2782.24,{},251777,0,Africa +2023-02-14,71516,3396,"[""Monitor"", ""Laptop"", ""Tablet""]",4583.65,{},232102,0,Africa +2023-06-03,71517,8100,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3131.05,{},105676,0,South America +2023-03-24,71518,9542,"[""Tablet"", ""Charger""]",1465.7,"{""seasonal"": ""11%""}",60663,1,South America +2023-03-23,71519,2085,"[""Laptop""]",4887.46,"{"""": ""29%""}",75369,1,South America +2023-09-18,71520,8033,"[""Headphones""]",4929.62,"{"""": ""13%""}",131809,1,Africa +2024-07-03,71521,2304,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1226.36,"{""seasonal"": ""10%""}",280114,1,Europe +2024-12-06,71522,1948,"[""Headphones"", ""Charger"", ""Phone""]",3731.35,{},116368,1,South America +2023-12-01,71523,7659,"[""Phone"", ""Laptop""]",906.0,{},169100,1,South America +2023-06-10,71524,5473,"[""Tablet""]",3899.12,"{""seasonal"": ""5%""}",2487,0,Asia +2023-09-17,71525,400,"[""Charger"", ""Tablet""]",3441.39,{},180359,1,North America +2023-08-09,71526,1229,"[""Keyboard""]",1857.37,{},50536,1,Asia +2024-08-21,71527,8951,"[""Phone"", ""Headphones""]",3652.08,"{""loyalty"": ""26%""}",186434,1,Africa +2023-01-02,71528,3531,"[""Charger"", ""Phone""]",3038.2,{},6734,1,Europe +2024-01-27,71529,4807,"[""Keyboard"", ""Headphones""]",1820.99,{},265013,0,Europe +2024-09-07,71530,3077,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4209.57,{},60197,0,South America +2023-09-07,71531,5772,"[""Laptop""]",4555.15,{},122588,1,Asia +2023-10-27,71532,4219,"[""Laptop"", ""Keyboard""]",1259.41,{},85390,1,South America +2023-09-23,71533,4237,"[""Charger""]",972.83,"{""seasonal"": ""21%""}",297512,0,Asia +2024-07-09,71534,4806,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3865.47,{},108177,0,North America +2023-02-24,71535,8628,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3457.05,{},197592,0,Africa +2023-02-26,71536,57,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2040.92,"{"""": ""11%""}",152640,1,Asia +2023-04-07,71537,8307,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1800.75,{},135755,1,Europe +2024-06-01,71538,905,"[""Laptop""]",4561.65,"{""seasonal"": ""14%""}",231235,1,Africa +2023-11-24,71539,2026,"[""Laptop""]",4943.23,{},176678,0,South America +2023-01-19,71540,6187,"[""Keyboard"", ""Monitor""]",4170.05,{},172709,1,Asia +2024-05-19,71541,7143,"[""Keyboard"", ""Phone""]",313.47,{},174769,0,North America +2024-01-21,71542,372,"[""Monitor""]",4566.74,{},71462,1,North America +2023-11-13,71543,5404,"[""Tablet""]",1805.86,"{"""": ""15%""}",109051,0,Africa +2023-04-15,71544,9444,"[""Charger"", ""Laptop"", ""Monitor""]",2043.36,"{""promo"": ""14%""}",171520,1,South America +2023-09-27,71545,1617,"[""Phone""]",174.46,"{""loyalty"": ""9%""}",37440,1,Asia +2023-10-11,71546,4325,"[""Wireless Mouse""]",2875.2,{},237670,1,South America +2024-04-25,71547,9163,"[""Wireless Mouse""]",4846.37,{},16362,0,North America +2024-11-07,71548,8197,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1348.21,"{""seasonal"": ""22%""}",196068,0,Europe +2023-02-03,71549,4087,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1021.12,{},38296,0,South America +2023-08-18,71550,1133,"[""Tablet"", ""Headphones""]",1668.6,{},278880,1,Africa +2024-01-26,71551,2424,"[""Tablet""]",3255.16,"{""seasonal"": ""23%""}",3485,1,Africa +2024-10-31,71552,9022,"[""Headphones"", ""Laptop""]",4898.32,{},266775,0,Asia +2023-03-02,71553,2747,"[""Monitor"", ""Headphones""]",1473.79,"{""loyalty"": ""28%""}",27109,1,Asia +2023-10-22,71554,768,"[""Keyboard"", ""Headphones""]",3445.54,"{""seasonal"": ""11%""}",2172,1,South America +2023-03-05,71555,8580,"[""Tablet"", ""Keyboard""]",3666.18,{},187527,1,Africa +2023-04-26,71556,9308,"[""Tablet"", ""Monitor"", ""Charger""]",2906.27,"{""seasonal"": ""30%""}",236894,0,South America +2024-06-13,71557,5329,"[""Phone"", ""Tablet"", ""Headphones""]",373.54,{},186103,0,Africa +2023-09-05,71558,6008,"[""Phone"", ""Wireless Mouse""]",3079.23,{},166911,1,Asia +2024-11-22,71559,9772,"[""Monitor"", ""Headphones"", ""Keyboard""]",3726.45,{},297814,0,South America +2024-08-11,71560,420,"[""Monitor"", ""Tablet"", ""Phone""]",327.34,"{"""": ""19%""}",211627,1,Asia +2024-12-18,71561,8305,"[""Wireless Mouse""]",1455.58,{},166531,1,Asia +2023-06-07,71562,1086,"[""Tablet"", ""Charger"", ""Laptop""]",1548.0,{},97451,0,South America +2023-04-24,71563,7665,"[""Keyboard"", ""Phone""]",1304.89,"{""promo"": ""12%""}",124601,1,Africa +2023-05-15,71564,9981,"[""Headphones"", ""Wireless Mouse""]",4497.53,"{""promo"": ""21%""}",59668,1,South America +2023-03-20,71565,8254,"[""Keyboard""]",3202.97,{},243961,1,Africa +2024-09-26,71566,9423,"[""Tablet"", ""Keyboard"", ""Phone""]",557.78,"{""loyalty"": ""14%""}",31565,0,Africa +2023-12-08,71567,8005,"[""Tablet""]",3253.9,{},118772,1,North America +2024-11-18,71568,8830,"[""Keyboard""]",3774.67,"{"""": ""11%""}",95731,0,Asia +2023-03-07,71569,8143,"[""Charger""]",1511.2,"{""promo"": ""17%""}",260704,1,Africa +2023-09-11,71570,8253,"[""Headphones""]",449.05,{},276893,1,Europe +2023-07-07,71571,9160,"[""Headphones"", ""Keyboard""]",4233.14,{},151600,0,Europe +2023-03-01,71572,2310,"[""Laptop"", ""Phone"", ""Keyboard""]",751.61,"{""loyalty"": ""17%""}",2664,0,Africa +2023-10-20,71573,7231,"[""Monitor"", ""Tablet"", ""Phone""]",2631.88,"{""seasonal"": ""30%""}",51610,1,Africa +2024-04-28,71574,1813,"[""Wireless Mouse""]",1149.08,"{"""": ""10%""}",144901,0,Europe +2024-10-04,71575,3973,"[""Monitor""]",2816.16,{},89714,0,Europe +2024-03-26,71576,5031,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1349.22,{},194433,1,South America +2024-04-10,71577,8443,"[""Headphones""]",965.15,"{""loyalty"": ""15%""}",92014,1,Europe +2024-10-31,71578,5943,"[""Tablet""]",4357.11,{},78860,1,Africa +2024-12-04,71579,4904,"[""Headphones"", ""Monitor""]",1745.5,"{""promo"": ""29%""}",83563,1,Europe +2024-02-10,71580,9147,"[""Laptop"", ""Phone""]",3130.54,"{""seasonal"": ""26%""}",179027,0,Asia +2023-05-08,71581,4524,"[""Charger"", ""Tablet""]",3239.33,"{""loyalty"": ""5%""}",143798,0,South America +2023-05-03,71582,8826,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4653.69,{},71040,1,Africa +2024-01-14,71583,3216,"[""Phone"", ""Keyboard"", ""Headphones""]",1669.02,"{""loyalty"": ""25%""}",92915,1,Africa +2023-05-28,71584,5670,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3633.9,"{""promo"": ""14%""}",55341,0,South America +2024-08-01,71585,9819,"[""Keyboard"", ""Monitor""]",1215.84,{},35939,0,Asia +2023-10-11,71586,6505,"[""Headphones"", ""Charger""]",2006.55,"{"""": ""19%""}",271408,0,North America +2023-04-27,71587,5410,"[""Phone"", ""Wireless Mouse""]",1464.32,"{""loyalty"": ""7%""}",93760,0,North America +2024-08-19,71588,3073,"[""Tablet"", ""Wireless Mouse""]",4361.79,{},247131,1,Asia +2024-11-02,71589,6642,"[""Phone""]",1175.81,"{""seasonal"": ""20%""}",296684,1,South America +2024-12-08,71590,195,"[""Keyboard""]",1283.75,{},249975,0,Europe +2023-04-29,71591,52,"[""Monitor""]",2644.71,{},152462,0,Asia +2023-07-07,71592,8722,"[""Monitor"", ""Charger""]",2068.37,"{""seasonal"": ""22%""}",114638,1,Asia +2024-09-26,71593,7324,"[""Phone"", ""Headphones"", ""Tablet""]",1904.51,"{""promo"": ""14%""}",109965,0,North America +2024-11-10,71594,1024,"[""Charger"", ""Laptop"", ""Tablet""]",4694.96,"{""promo"": ""22%""}",88975,1,Asia +2024-02-18,71595,6276,"[""Charger"", ""Keyboard""]",4378.3,"{""loyalty"": ""24%""}",278358,0,South America +2024-01-10,71596,726,"[""Keyboard"", ""Headphones"", ""Tablet""]",2240.41,"{""seasonal"": ""28%""}",164363,1,Asia +2024-03-05,71597,4382,"[""Monitor""]",1437.01,"{""seasonal"": ""26%""}",29950,0,South America +2024-04-26,71598,5637,"[""Phone""]",3240.08,"{""promo"": ""20%""}",107143,1,North America +2023-11-17,71599,8302,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4472.19,{},263145,1,Africa +2024-10-12,71600,2188,"[""Charger"", ""Monitor""]",4046.07,"{""promo"": ""27%""}",235705,1,South America +2023-06-20,71601,4170,"[""Phone""]",3161.25,{},292566,0,North America +2024-06-08,71602,9313,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4042.18,{},94797,1,Africa +2024-09-08,71603,3454,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2921.2,{},231852,0,North America +2024-07-16,71604,3456,"[""Headphones""]",4731.14,{},207183,0,South America +2024-04-30,71605,6984,"[""Headphones"", ""Tablet""]",4290.93,"{"""": ""12%""}",117312,1,Asia +2024-06-07,71606,4781,"[""Charger"", ""Wireless Mouse""]",3012.8,{},159281,1,North America +2024-01-21,71607,4222,"[""Headphones""]",346.06,{},132259,0,Europe +2024-09-04,71608,3143,"[""Headphones"", ""Phone"", ""Monitor""]",3834.76,"{""loyalty"": ""29%""}",82954,1,Europe +2023-01-28,71609,2142,"[""Headphones""]",2896.74,{},216257,0,Europe +2023-11-04,71610,4782,"[""Laptop"", ""Phone""]",1555.59,"{""promo"": ""17%""}",235263,0,Africa +2023-07-21,71611,2677,"[""Laptop""]",2057.39,{},198812,1,Europe +2023-11-24,71612,9269,"[""Wireless Mouse""]",3086.68,{},245559,0,Europe +2023-05-22,71613,352,"[""Keyboard"", ""Wireless Mouse""]",780.09,{},216546,0,North America +2024-10-28,71614,4692,"[""Wireless Mouse"", ""Laptop""]",556.07,{},204020,1,North America +2024-08-14,71615,7063,"[""Laptop"", ""Monitor""]",4645.74,{},136711,0,South America +2023-01-14,71616,2219,"[""Monitor"", ""Headphones"", ""Laptop""]",72.69,"{""promo"": ""5%""}",230034,0,North America +2023-01-04,71617,6958,"[""Keyboard"", ""Charger""]",3985.16,"{""promo"": ""16%""}",133203,0,Asia +2024-03-30,71618,3520,"[""Keyboard""]",2285.54,"{"""": ""28%""}",127102,1,Asia +2023-09-26,71619,7626,"[""Headphones"", ""Phone""]",4650.19,"{""loyalty"": ""10%""}",12927,1,North America +2023-09-01,71620,9328,"[""Phone""]",2782.52,"{"""": ""15%""}",290093,0,South America +2023-10-16,71621,9342,"[""Monitor""]",2673.19,"{""seasonal"": ""19%""}",237159,1,Africa +2023-03-30,71622,169,"[""Keyboard"", ""Charger"", ""Monitor""]",3020.73,{},239677,1,Asia +2023-08-02,71623,476,"[""Laptop""]",3551.83,{},164306,1,South America +2023-06-28,71624,1838,"[""Keyboard""]",3022.3,"{""loyalty"": ""6%""}",6041,0,South America +2024-03-07,71625,8849,"[""Phone""]",1137.26,{},160220,1,South America +2024-01-19,71626,9148,"[""Wireless Mouse""]",553.35,{},20981,1,North America +2024-10-27,71627,1940,"[""Keyboard""]",2707.81,"{""loyalty"": ""22%""}",58120,1,North America +2024-09-06,71628,1906,"[""Headphones"", ""Phone""]",1493.26,{},157243,1,South America +2024-02-12,71629,4659,"[""Headphones"", ""Monitor""]",436.22,{},191135,0,Asia +2024-06-30,71630,5600,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1167.08,{},186384,0,Africa +2023-03-17,71631,6448,"[""Headphones"", ""Laptop"", ""Keyboard""]",3550.1,"{"""": ""12%""}",121787,0,Europe +2023-08-22,71632,2754,"[""Tablet""]",1068.49,"{""promo"": ""25%""}",109205,0,Africa +2024-03-26,71633,5861,"[""Headphones""]",2324.29,"{""seasonal"": ""10%""}",255477,0,North America +2024-03-01,71634,3922,"[""Laptop"", ""Monitor""]",4391.38,"{"""": ""8%""}",190072,0,Europe +2023-05-11,71635,2771,"[""Keyboard""]",3221.02,{},73078,1,South America +2024-09-07,71636,4747,"[""Keyboard""]",1955.66,{},239347,1,Africa +2023-01-14,71637,1489,"[""Headphones""]",4136.79,{},194348,0,Europe +2024-08-18,71638,7575,"[""Laptop"", ""Headphones""]",4422.66,"{""loyalty"": ""25%""}",207866,1,Africa +2024-12-19,71639,8364,"[""Wireless Mouse""]",1465.94,{},225272,0,South America +2023-10-17,71640,5253,"[""Headphones"", ""Phone"", ""Keyboard""]",3296.08,"{""promo"": ""22%""}",208426,0,North America +2024-10-09,71641,6927,"[""Phone"", ""Charger"", ""Headphones""]",256.22,{},55578,1,South America +2024-10-23,71642,1688,"[""Headphones"", ""Monitor"", ""Phone""]",2883.01,"{""seasonal"": ""14%""}",42238,1,North America +2024-04-07,71643,8602,"[""Keyboard"", ""Headphones""]",4248.71,"{"""": ""23%""}",149130,0,South America +2023-11-19,71644,9813,"[""Wireless Mouse"", ""Phone""]",2121.65,{},188019,1,Europe +2024-09-10,71645,5088,"[""Laptop"", ""Tablet""]",262.23,{},263281,0,Asia +2023-06-28,71646,7621,"[""Monitor"", ""Keyboard""]",818.96,"{""loyalty"": ""16%""}",123215,1,Africa +2024-12-04,71647,5540,"[""Charger"", ""Laptop"", ""Phone""]",767.51,{},60315,1,South America +2024-09-07,71648,6077,"[""Phone"", ""Monitor"", ""Tablet""]",1129.04,"{""seasonal"": ""26%""}",95670,1,Africa +2024-06-22,71649,3173,"[""Phone""]",4753.2,{},299081,0,North America +2024-05-03,71650,9599,"[""Wireless Mouse"", ""Phone""]",2768.95,"{""loyalty"": ""28%""}",120979,1,Europe +2023-08-06,71651,6880,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3054.02,{},219680,1,North America +2024-07-08,71652,7001,"[""Keyboard"", ""Headphones""]",3952.94,"{""loyalty"": ""6%""}",258630,0,South America +2024-10-02,71653,612,"[""Wireless Mouse""]",4401.53,{},296990,0,Africa +2024-07-02,71654,3885,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2720.26,"{""loyalty"": ""19%""}",141333,1,Europe +2023-09-30,71655,6664,"[""Monitor"", ""Keyboard"", ""Headphones""]",73.7,{},7954,0,South America +2023-04-08,71656,722,"[""Tablet"", ""Monitor""]",4386.8,"{""seasonal"": ""29%""}",63211,1,North America +2024-01-18,71657,7653,"[""Wireless Mouse"", ""Monitor""]",4278.3,{},123942,1,Africa +2024-03-25,71658,5296,"[""Headphones"", ""Laptop"", ""Keyboard""]",1164.77,{},177561,1,Africa +2024-12-13,71659,9567,"[""Tablet""]",3198.62,"{""seasonal"": ""23%""}",169331,1,South America +2024-02-17,71660,9208,"[""Tablet""]",2511.58,{},254020,1,Europe +2024-03-08,71661,6680,"[""Tablet"", ""Keyboard"", ""Charger""]",3668.31,"{""seasonal"": ""13%""}",244560,0,Europe +2024-12-11,71662,7995,"[""Tablet"", ""Charger""]",565.6,"{""seasonal"": ""22%""}",22732,1,Asia +2024-01-30,71663,2561,"[""Keyboard"", ""Headphones"", ""Charger""]",2475.03,"{""promo"": ""29%""}",236760,1,Asia +2024-06-12,71664,8982,"[""Charger"", ""Headphones"", ""Phone""]",1567.39,"{""loyalty"": ""20%""}",186056,0,Africa +2024-07-11,71665,4044,"[""Monitor""]",4965.46,"{"""": ""12%""}",296051,0,Europe +2024-05-30,71666,4719,"[""Headphones"", ""Keyboard""]",2745.05,{},15930,1,Asia +2023-07-09,71667,1434,"[""Phone"", ""Headphones"", ""Keyboard""]",1862.32,{},267528,1,North America +2024-07-14,71668,8984,"[""Keyboard"", ""Monitor""]",1142.59,"{""loyalty"": ""14%""}",264485,0,Africa +2023-11-01,71669,6525,"[""Monitor""]",2124.87,"{""seasonal"": ""28%""}",156029,0,Africa +2024-09-26,71670,7680,"[""Laptop"", ""Keyboard"", ""Monitor""]",1848.91,{},64541,0,North America +2023-10-05,71671,625,"[""Headphones""]",3383.59,{},30567,1,South America +2024-03-26,71672,167,"[""Phone"", ""Wireless Mouse""]",2171.0,{},20195,0,Asia +2024-12-26,71673,547,"[""Wireless Mouse"", ""Tablet""]",3301.61,{},240519,1,Africa +2023-09-04,71674,1299,"[""Keyboard"", ""Tablet"", ""Phone""]",3980.94,"{"""": ""22%""}",31533,0,Europe +2023-02-08,71675,6408,"[""Monitor"", ""Phone""]",2708.07,"{"""": ""20%""}",226726,0,Asia +2024-12-30,71676,7405,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1410.65,"{"""": ""24%""}",47695,0,Europe +2024-05-18,71677,9332,"[""Charger""]",182.68,"{""promo"": ""9%""}",182855,0,South America +2023-12-10,71678,5546,"[""Laptop"", ""Phone"", ""Headphones""]",4539.34,{},191299,1,Africa +2024-12-19,71679,1268,"[""Monitor"", ""Laptop"", ""Charger""]",4341.91,"{""seasonal"": ""21%""}",39894,0,Asia +2023-01-20,71680,5824,"[""Charger"", ""Keyboard""]",455.6,"{""promo"": ""26%""}",73090,0,North America +2023-08-05,71681,4951,"[""Wireless Mouse"", ""Keyboard""]",4327.23,"{""promo"": ""16%""}",82641,0,North America +2023-08-03,71682,7917,"[""Keyboard"", ""Monitor""]",434.24,"{"""": ""20%""}",268260,1,Europe +2024-08-05,71683,9337,"[""Wireless Mouse""]",1153.85,"{""loyalty"": ""30%""}",94629,0,South America +2023-05-01,71684,7920,"[""Charger"", ""Wireless Mouse""]",3818.84,"{"""": ""8%""}",186479,1,North America +2024-06-09,71685,5141,"[""Monitor"", ""Phone"", ""Laptop""]",4310.03,"{"""": ""5%""}",209724,1,Africa +2023-03-28,71686,9769,"[""Charger"", ""Laptop""]",4149.56,"{""loyalty"": ""29%""}",264368,0,North America +2023-07-27,71687,810,"[""Laptop"", ""Monitor""]",385.36,{},282005,0,Africa +2024-02-23,71688,2552,"[""Keyboard""]",3753.71,"{""promo"": ""23%""}",192187,1,Africa +2024-05-20,71689,2481,"[""Tablet"", ""Laptop""]",4004.82,{},12240,0,Europe +2024-11-11,71690,4671,"[""Wireless Mouse"", ""Tablet""]",3209.26,"{"""": ""8%""}",292275,1,Europe +2023-11-09,71691,6412,"[""Charger"", ""Monitor""]",2862.26,{},246317,0,South America +2024-03-07,71692,3410,"[""Monitor""]",4977.54,{},138400,0,North America +2023-05-17,71693,6830,"[""Keyboard"", ""Laptop""]",1170.61,{},24299,1,South America +2024-06-05,71694,4721,"[""Keyboard"", ""Laptop"", ""Charger""]",254.34,{},73651,0,South America +2024-05-21,71695,9569,"[""Charger"", ""Monitor""]",3114.37,"{""promo"": ""17%""}",123176,1,Europe +2024-12-03,71696,3079,"[""Wireless Mouse"", ""Charger""]",2924.5,{},180939,0,Africa +2024-12-22,71697,6301,"[""Headphones""]",2252.56,{},87073,1,North America +2023-12-31,71698,7374,"[""Monitor""]",1770.36,{},151700,1,Africa +2023-12-18,71699,317,"[""Wireless Mouse"", ""Monitor""]",325.83,{},255572,1,South America +2023-12-16,71700,5607,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3354.56,"{""promo"": ""14%""}",58156,0,North America +2023-12-09,71701,5229,"[""Charger"", ""Tablet""]",3563.6,"{"""": ""29%""}",3188,1,Africa +2023-12-21,71702,2965,"[""Tablet"", ""Monitor"", ""Keyboard""]",991.97,"{""seasonal"": ""24%""}",64386,1,South America +2024-06-12,71703,4579,"[""Keyboard"", ""Tablet""]",2604.77,"{""promo"": ""12%""}",232487,0,North America +2023-03-28,71704,5440,"[""Charger""]",1395.53,{},101705,0,Europe +2024-09-21,71705,1478,"[""Charger"", ""Phone"", ""Laptop""]",4746.03,{},197311,1,North America +2024-02-17,71706,3782,"[""Monitor"", ""Phone""]",3560.07,"{"""": ""18%""}",112067,0,Africa +2024-11-14,71707,4208,"[""Charger"", ""Tablet""]",2664.02,"{""loyalty"": ""16%""}",245324,1,Asia +2023-04-27,71708,2060,"[""Monitor""]",3485.09,"{""seasonal"": ""20%""}",16604,1,Europe +2024-12-14,71709,8504,"[""Monitor"", ""Tablet""]",1820.01,"{""seasonal"": ""20%""}",5788,0,Asia +2023-12-01,71710,9533,"[""Tablet"", ""Monitor""]",1076.37,"{""promo"": ""28%""}",226108,1,South America +2024-09-06,71711,6142,"[""Monitor"", ""Keyboard""]",462.97,{},172121,1,South America +2023-03-13,71712,8026,"[""Tablet""]",246.77,{},265074,1,Asia +2024-12-22,71713,805,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4230.43,{},248938,0,Europe +2024-11-02,71714,8132,"[""Monitor"", ""Tablet"", ""Phone""]",2659.07,"{""promo"": ""8%""}",162121,1,Europe +2023-03-11,71715,2418,"[""Monitor"", ""Phone"", ""Headphones""]",549.56,"{""seasonal"": ""25%""}",219478,1,Africa +2023-08-26,71716,3015,"[""Tablet"", ""Phone"", ""Keyboard""]",4282.63,{},282618,0,Asia +2024-07-30,71717,7326,"[""Charger"", ""Monitor"", ""Keyboard""]",4040.68,{},121657,0,Asia +2024-10-25,71718,4299,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3055.71,{},172346,0,North America +2024-09-04,71719,6999,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2465.35,{},131888,0,Africa +2023-12-16,71720,3071,"[""Headphones"", ""Laptop""]",3460.15,"{"""": ""18%""}",41727,1,North America +2024-12-27,71721,5357,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4203.81,{},73339,1,Europe +2023-07-28,71722,9882,"[""Laptop"", ""Headphones""]",4085.63,{},174562,1,Asia +2024-06-12,71723,3714,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3702.76,{},42799,1,South America +2023-06-19,71724,2259,"[""Keyboard"", ""Laptop""]",3697.57,"{""loyalty"": ""29%""}",156105,0,North America +2024-08-21,71725,9451,"[""Wireless Mouse"", ""Headphones""]",3881.6,{},71535,1,Europe +2024-03-26,71726,6258,"[""Phone"", ""Laptop"", ""Headphones""]",142.89,"{""promo"": ""8%""}",232183,1,Africa +2024-02-27,71727,9504,"[""Headphones""]",683.85,"{""seasonal"": ""24%""}",259385,1,Europe +2023-02-05,71728,9214,"[""Phone"", ""Charger""]",2531.9,"{""seasonal"": ""15%""}",191623,1,North America +2023-02-28,71729,1839,"[""Phone"", ""Keyboard""]",872.56,{},240303,1,Africa +2024-09-26,71730,3042,"[""Tablet"", ""Phone""]",484.52,{},138489,0,Africa +2023-08-18,71731,8609,"[""Keyboard""]",3727.8,"{""seasonal"": ""18%""}",19242,0,South America +2024-11-28,71732,5737,"[""Phone"", ""Keyboard"", ""Monitor""]",3016.97,{},212152,1,South America +2023-12-05,71733,550,"[""Phone""]",4400.99,{},68196,1,South America +2023-01-10,71734,2316,"[""Keyboard""]",1654.47,{},86041,1,Africa +2024-11-15,71735,1344,"[""Phone"", ""Charger""]",3853.86,"{"""": ""13%""}",297750,1,South America +2023-03-04,71736,3815,"[""Tablet"", ""Wireless Mouse""]",4144.08,{},133410,1,Asia +2024-12-13,71737,2032,"[""Headphones""]",2030.67,{},178708,1,Asia +2023-11-18,71738,8988,"[""Laptop"", ""Charger"", ""Keyboard""]",1503.22,{},65476,0,Asia +2023-02-27,71739,2731,"[""Laptop"", ""Wireless Mouse""]",2299.38,"{""promo"": ""30%""}",11757,1,North America +2024-07-17,71740,9815,"[""Tablet"", ""Monitor""]",2758.78,"{""seasonal"": ""18%""}",162572,0,South America +2024-07-31,71741,2218,"[""Keyboard"", ""Laptop""]",2987.4,"{""promo"": ""30%""}",16378,1,Europe +2024-04-21,71742,5207,"[""Monitor"", ""Headphones"", ""Tablet""]",495.04,"{""seasonal"": ""26%""}",56750,0,Asia +2024-08-27,71743,2705,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4236.02,{},98807,0,North America +2023-07-17,71744,6534,"[""Monitor"", ""Phone""]",1695.12,"{""seasonal"": ""26%""}",262657,1,Europe +2023-12-31,71745,6722,"[""Headphones"", ""Monitor""]",2109.44,"{""seasonal"": ""22%""}",283283,1,South America +2024-05-24,71746,6116,"[""Tablet"", ""Wireless Mouse""]",1823.57,{},284648,0,North America +2023-09-02,71747,7369,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4200.28,{},29858,0,Europe +2024-07-09,71748,4173,"[""Laptop"", ""Charger"", ""Monitor""]",2395.34,"{"""": ""27%""}",49587,1,Europe +2024-10-21,71749,808,"[""Headphones"", ""Phone""]",1075.14,"{""loyalty"": ""23%""}",84068,0,Europe +2024-04-04,71750,490,"[""Charger"", ""Tablet"", ""Laptop""]",1739.92,"{""loyalty"": ""7%""}",273195,0,Africa +2024-03-09,71751,7499,"[""Tablet"", ""Monitor""]",765.51,{},269941,1,Europe +2024-05-26,71752,7025,"[""Keyboard"", ""Headphones"", ""Charger""]",1682.7,"{""seasonal"": ""8%""}",32028,0,Asia +2023-07-20,71753,6496,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2912.54,{},3275,0,South America +2023-06-19,71754,7672,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4398.09,{},286824,1,Africa +2023-08-03,71755,4340,"[""Phone"", ""Charger""]",4239.56,{},120453,1,Africa +2024-05-14,71756,9230,"[""Wireless Mouse"", ""Tablet""]",323.64,"{""loyalty"": ""22%""}",119990,1,Europe +2024-03-13,71757,9294,"[""Keyboard"", ""Phone""]",3949.3,"{"""": ""9%""}",270401,1,Europe +2024-08-28,71758,1261,"[""Phone"", ""Headphones"", ""Laptop""]",1889.74,{},99361,1,North America +2023-10-29,71759,8267,"[""Headphones""]",860.34,{},270066,0,Asia +2024-06-01,71760,8299,"[""Monitor"", ""Keyboard"", ""Phone""]",4795.29,{},218958,1,North America +2023-12-19,71761,9325,"[""Headphones"", ""Laptop""]",2343.2,{},93608,1,North America +2024-03-08,71762,5548,"[""Headphones"", ""Phone""]",3048.27,{},98397,1,North America +2023-06-14,71763,7351,"[""Headphones""]",4296.66,{},52919,1,Europe +2024-01-08,71764,8123,"[""Wireless Mouse"", ""Headphones""]",1917.88,{},21546,1,Africa +2023-11-09,71765,3257,"[""Headphones""]",3614.84,"{""seasonal"": ""13%""}",209391,0,Africa +2024-01-16,71766,1013,"[""Laptop"", ""Charger""]",2620.4,"{""loyalty"": ""16%""}",54760,0,Asia +2024-07-09,71767,1743,"[""Laptop"", ""Charger""]",4943.82,"{""loyalty"": ""5%""}",227352,1,South America +2023-01-25,71768,3290,"[""Headphones"", ""Laptop""]",1904.12,"{""loyalty"": ""25%""}",46565,0,South America +2023-03-31,71769,7828,"[""Headphones""]",2614.92,{},110236,1,Europe +2024-08-01,71770,5480,"[""Phone""]",2026.33,"{""promo"": ""10%""}",298526,1,North America +2024-10-30,71771,8953,"[""Keyboard"", ""Charger""]",4564.09,{},21431,1,South America +2024-04-17,71772,7183,"[""Headphones""]",3609.7,{},2684,0,Europe +2023-07-13,71773,8807,"[""Wireless Mouse"", ""Monitor""]",1160.99,{},201768,0,South America +2023-07-30,71774,7020,"[""Laptop"", ""Monitor"", ""Keyboard""]",4096.03,"{""promo"": ""10%""}",1333,1,North America +2024-01-12,71775,8183,"[""Laptop"", ""Headphones"", ""Keyboard""]",4645.49,{},249727,1,North America +2023-05-19,71776,1012,"[""Tablet"", ""Laptop"", ""Phone""]",100.4,"{""promo"": ""30%""}",174528,0,Asia +2024-07-21,71777,3304,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2551.72,{},31066,1,Africa +2023-06-18,71778,9455,"[""Charger""]",3500.51,"{"""": ""10%""}",104882,1,South America +2023-09-18,71779,8593,"[""Keyboard"", ""Phone""]",257.18,{},3866,0,North America +2023-08-18,71780,7836,"[""Tablet"", ""Monitor"", ""Headphones""]",4091.96,{},18011,0,South America +2023-05-29,71781,2948,"[""Wireless Mouse"", ""Laptop""]",1307.48,{},47921,0,Africa +2024-12-23,71782,5976,"[""Tablet"", ""Wireless Mouse""]",1409.16,{},7439,0,Africa +2023-06-01,71783,3491,"[""Charger""]",4044.53,{},40639,1,North America +2024-06-30,71784,9683,"[""Monitor""]",247.73,"{"""": ""5%""}",286608,0,South America +2024-10-07,71785,6436,"[""Keyboard""]",1236.92,"{""promo"": ""24%""}",72641,0,South America +2023-02-22,71786,9084,"[""Monitor"", ""Charger"", ""Laptop""]",1601.15,"{""promo"": ""25%""}",102537,0,South America +2024-11-10,71787,2127,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2431.22,"{""seasonal"": ""27%""}",142031,1,North America +2024-09-20,71788,84,"[""Monitor""]",4429.63,{},277142,0,North America +2024-05-01,71789,3481,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2683.1,"{""promo"": ""27%""}",231908,0,Asia +2023-02-24,71790,4526,"[""Phone""]",1015.07,"{""loyalty"": ""23%""}",97817,1,Europe +2023-02-06,71791,3146,"[""Tablet""]",2106.81,{},152593,0,Asia +2023-06-22,71792,8217,"[""Keyboard"", ""Phone"", ""Headphones""]",4502.15,{},49871,1,North America +2023-12-31,71793,2056,"[""Keyboard""]",487.62,{},199125,0,Asia +2024-02-28,71794,9885,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3347.16,"{"""": ""28%""}",245744,0,Africa +2024-06-04,71795,6434,"[""Monitor""]",2479.64,{},203394,0,South America +2024-01-03,71796,939,"[""Keyboard""]",3537.69,{},101046,1,Europe +2024-05-01,71797,2729,"[""Charger""]",4362.9,{},226898,0,North America +2024-08-19,71798,2673,"[""Charger""]",1978.74,"{""seasonal"": ""16%""}",74029,1,Europe +2024-01-22,71799,5353,"[""Monitor""]",54.61,{},25895,0,Asia +2023-01-31,71800,2664,"[""Charger"", ""Phone"", ""Laptop""]",1118.84,{},37787,1,Europe +2024-01-27,71801,3278,"[""Wireless Mouse"", ""Laptop""]",3539.81,{},232570,1,South America +2024-03-13,71802,5765,"[""Headphones"", ""Tablet"", ""Laptop""]",3698.49,{},237414,0,Europe +2023-01-08,71803,7638,"[""Charger"", ""Monitor"", ""Tablet""]",3886.47,{},82577,0,North America +2024-10-10,71804,7349,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4169.11,"{""promo"": ""8%""}",290952,0,Asia +2023-12-08,71805,1779,"[""Keyboard"", ""Phone""]",4797.37,{},261312,1,Asia +2023-12-26,71806,5317,"[""Laptop""]",3060.91,{},70292,0,South America +2024-01-11,71807,9883,"[""Keyboard"", ""Phone""]",1246.14,"{""loyalty"": ""13%""}",276430,0,North America +2024-10-26,71808,745,"[""Laptop"", ""Keyboard"", ""Monitor""]",1800.57,"{""loyalty"": ""21%""}",78878,0,Africa +2024-02-04,71809,9936,"[""Laptop"", ""Tablet""]",2791.2,{},154584,0,Europe +2023-06-17,71810,7568,"[""Phone"", ""Wireless Mouse""]",1907.32,{},166003,1,Africa +2023-03-26,71811,366,"[""Laptop""]",3855.37,"{""promo"": ""8%""}",60683,0,Africa +2024-07-08,71812,3057,"[""Keyboard""]",875.24,"{""loyalty"": ""29%""}",208929,1,South America +2023-06-13,71813,867,"[""Phone""]",1135.35,{},231990,0,South America +2024-07-07,71814,3874,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",582.49,"{""loyalty"": ""16%""}",24746,0,Africa +2024-06-16,71815,7395,"[""Phone"", ""Monitor"", ""Keyboard""]",1360.0,{},258369,1,Europe +2024-04-15,71816,2564,"[""Tablet""]",522.56,{},90752,0,Asia +2023-04-06,71817,2793,"[""Headphones"", ""Laptop""]",2734.83,"{"""": ""9%""}",67260,1,Europe +2024-08-28,71818,4553,"[""Phone"", ""Monitor"", ""Headphones""]",292.15,"{""seasonal"": ""17%""}",188208,1,Africa +2024-07-12,71819,543,"[""Monitor"", ""Headphones""]",1404.41,{},288498,1,Africa +2023-09-17,71820,8836,"[""Tablet"", ""Keyboard""]",1078.5,"{"""": ""16%""}",157214,0,Asia +2024-01-18,71821,6444,"[""Headphones"", ""Keyboard"", ""Charger""]",4447.36,{},246365,0,Asia +2024-11-01,71822,3569,"[""Phone"", ""Wireless Mouse""]",2156.31,"{""loyalty"": ""22%""}",234741,1,North America +2024-05-30,71823,6606,"[""Headphones""]",3316.11,"{""loyalty"": ""24%""}",179783,1,South America +2023-06-18,71824,3357,"[""Tablet""]",2423.1,{},247858,1,South America +2023-04-10,71825,4739,"[""Charger""]",1243.37,"{""promo"": ""30%""}",247673,0,Africa +2024-01-23,71826,5706,"[""Headphones""]",3206.4,{},147786,0,South America +2024-12-08,71827,613,"[""Charger""]",815.07,{},24136,0,Africa +2024-04-22,71828,9315,"[""Tablet""]",900.21,{},231382,1,South America +2023-08-30,71829,714,"[""Laptop"", ""Monitor"", ""Tablet""]",3607.42,"{""seasonal"": ""18%""}",133842,0,Africa +2023-04-14,71830,2941,"[""Wireless Mouse""]",4524.7,{},154103,0,Asia +2023-06-29,71831,8703,"[""Wireless Mouse"", ""Headphones""]",4242.23,{},244783,0,Asia +2024-07-05,71832,4223,"[""Charger""]",1459.87,"{""loyalty"": ""25%""}",170681,0,North America +2023-02-02,71833,7520,"[""Keyboard""]",987.86,{},95019,1,South America +2024-10-19,71834,1985,"[""Headphones""]",1253.56,"{"""": ""28%""}",47578,1,South America +2023-10-10,71835,2480,"[""Tablet"", ""Charger""]",2063.19,{},10308,0,Africa +2023-08-27,71836,5113,"[""Phone"", ""Tablet"", ""Keyboard""]",969.58,"{"""": ""9%""}",227484,1,North America +2023-10-31,71837,3079,"[""Charger""]",2765.51,"{""seasonal"": ""27%""}",5078,0,North America +2023-12-07,71838,942,"[""Tablet"", ""Charger"", ""Headphones""]",370.53,"{""loyalty"": ""24%""}",28310,1,South America +2024-08-19,71839,4604,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3939.55,{},258932,1,North America +2023-05-31,71840,8269,"[""Phone"", ""Laptop"", ""Keyboard""]",4068.71,{},25352,0,South America +2023-10-31,71841,108,"[""Laptop"", ""Headphones"", ""Keyboard""]",2216.7,{},153055,1,Europe +2023-04-09,71842,2842,"[""Charger"", ""Tablet"", ""Phone""]",859.16,{},231202,1,Asia +2024-08-22,71843,1944,"[""Phone"", ""Monitor""]",2313.68,{},238846,1,Europe +2024-07-20,71844,5509,"[""Wireless Mouse"", ""Laptop""]",4152.47,"{""loyalty"": ""20%""}",148985,0,South America +2024-01-20,71845,3487,"[""Monitor"", ""Laptop"", ""Charger""]",714.96,"{""seasonal"": ""25%""}",38956,0,Europe +2023-05-08,71846,1329,"[""Tablet"", ""Phone"", ""Charger""]",2178.24,{},105236,0,Africa +2024-04-11,71847,9716,"[""Charger"", ""Keyboard"", ""Phone""]",3345.39,{},148250,0,Africa +2023-08-31,71848,1760,"[""Monitor""]",2423.1,"{"""": ""10%""}",10636,0,North America +2023-04-27,71849,8773,"[""Laptop"", ""Charger""]",1758.19,"{"""": ""11%""}",119016,1,Europe +2023-08-05,71850,8150,"[""Laptop""]",1000.32,"{""loyalty"": ""11%""}",233683,0,Europe +2023-01-26,71851,8932,"[""Laptop""]",1825.93,{},205394,0,South America +2023-11-07,71852,5835,"[""Charger""]",4759.42,{},264508,1,Europe +2024-08-25,71853,4130,"[""Tablet"", ""Wireless Mouse""]",871.32,{},263736,1,Africa +2023-12-30,71854,671,"[""Wireless Mouse""]",3957.82,{},202577,0,Asia +2023-06-10,71855,9934,"[""Monitor"", ""Laptop""]",1441.23,"{"""": ""9%""}",6580,1,North America +2023-07-11,71856,474,"[""Tablet""]",2754.94,{},1022,0,Africa +2024-08-31,71857,7440,"[""Monitor"", ""Tablet"", ""Phone""]",2639.95,"{""seasonal"": ""22%""}",150016,0,Africa +2024-04-21,71858,6628,"[""Keyboard""]",1538.88,{},224045,0,South America +2024-11-16,71859,9786,"[""Keyboard""]",3818.42,"{""loyalty"": ""29%""}",177487,1,Europe +2023-07-07,71860,4459,"[""Charger"", ""Headphones""]",2909.63,"{""promo"": ""13%""}",114736,0,Africa +2023-02-14,71861,5729,"[""Keyboard""]",1269.68,{},69096,1,North America +2023-01-26,71862,2035,"[""Monitor"", ""Wireless Mouse""]",2084.89,{},74000,0,Asia +2023-02-23,71863,675,"[""Headphones"", ""Phone"", ""Charger""]",1652.47,"{"""": ""7%""}",229738,0,Europe +2023-06-05,71864,8360,"[""Monitor"", ""Headphones"", ""Laptop""]",2760.97,{},44769,0,Europe +2023-05-11,71865,8001,"[""Wireless Mouse""]",1144.93,"{""loyalty"": ""7%""}",126834,1,South America +2023-01-30,71866,8935,"[""Headphones""]",3608.94,"{""seasonal"": ""22%""}",159910,0,Europe +2024-03-20,71867,4577,"[""Wireless Mouse"", ""Keyboard""]",123.99,"{""seasonal"": ""19%""}",49106,0,Asia +2023-10-15,71868,837,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4170.36,{},227479,1,Africa +2023-02-28,71869,3046,"[""Headphones"", ""Phone"", ""Keyboard""]",72.43,"{"""": ""14%""}",205520,1,Europe +2024-06-13,71870,36,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",371.55,"{"""": ""11%""}",17961,0,Europe +2024-07-28,71871,4268,"[""Wireless Mouse""]",4940.82,"{""loyalty"": ""19%""}",277428,1,Africa +2023-04-23,71872,4428,"[""Headphones"", ""Phone"", ""Tablet""]",4833.64,{},124411,1,Europe +2024-07-09,71873,1924,"[""Wireless Mouse"", ""Headphones""]",1116.9,{},39515,0,Europe +2024-01-04,71874,9757,"[""Laptop""]",885.18,"{"""": ""22%""}",93927,1,Asia +2024-05-04,71875,2384,"[""Laptop"", ""Headphones"", ""Charger""]",2586.41,{},170093,0,Africa +2024-06-01,71876,70,"[""Headphones"", ""Charger""]",3427.67,{},19873,1,Asia +2023-12-21,71877,6490,"[""Wireless Mouse"", ""Monitor""]",4862.62,"{"""": ""13%""}",157819,1,Europe +2024-06-28,71878,4228,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3193.99,{},149645,1,North America +2024-08-26,71879,2643,"[""Tablet"", ""Monitor""]",148.07,"{""promo"": ""29%""}",235990,0,Africa +2023-06-29,71880,2355,"[""Wireless Mouse""]",2545.14,{},101030,0,North America +2023-12-02,71881,2518,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",260.82,"{""seasonal"": ""26%""}",175229,0,Asia +2024-07-17,71882,6446,"[""Tablet"", ""Phone""]",434.35,{},253744,0,North America +2024-05-27,71883,9606,"[""Wireless Mouse""]",363.04,"{""promo"": ""28%""}",200116,0,Africa +2024-06-05,71884,481,"[""Phone""]",518.85,"{""loyalty"": ""14%""}",22782,1,Africa +2024-03-22,71885,3092,"[""Laptop""]",631.81,"{""promo"": ""10%""}",152593,1,Asia +2023-01-19,71886,8038,"[""Monitor"", ""Phone""]",3985.42,"{""promo"": ""19%""}",193282,1,Europe +2023-04-23,71887,8428,"[""Headphones"", ""Monitor"", ""Keyboard""]",1542.73,"{"""": ""19%""}",126574,1,Africa +2024-10-31,71888,1814,"[""Charger""]",4350.21,{},223310,0,North America +2024-11-08,71889,8987,"[""Charger"", ""Monitor"", ""Headphones""]",149.95,"{""promo"": ""19%""}",19882,0,South America +2024-06-30,71890,9211,"[""Monitor""]",4872.82,"{"""": ""5%""}",176619,1,North America +2024-03-10,71891,5285,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3049.32,{},115374,1,South America +2024-06-03,71892,5565,"[""Monitor""]",3768.56,{},282934,0,North America +2023-03-25,71893,6325,"[""Phone""]",368.61,{},64369,1,Asia +2024-12-16,71894,3248,"[""Laptop"", ""Phone""]",1233.69,"{""loyalty"": ""9%""}",211425,1,Europe +2023-05-15,71895,6198,"[""Tablet"", ""Charger"", ""Monitor""]",3411.67,{},180572,1,North America +2023-02-05,71896,3670,"[""Phone""]",882.02,"{""loyalty"": ""20%""}",290433,0,Asia +2023-06-16,71897,7853,"[""Keyboard"", ""Headphones"", ""Charger""]",1435.84,"{""seasonal"": ""29%""}",114246,1,Asia +2024-03-10,71898,8902,"[""Monitor""]",2889.02,"{""loyalty"": ""7%""}",111681,0,Africa +2024-01-29,71899,5045,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3382.29,"{""promo"": ""8%""}",98919,0,South America +2024-04-28,71900,7298,"[""Laptop""]",3355.51,"{""promo"": ""5%""}",259072,1,South America +2023-06-23,71901,5329,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",550.5,"{""promo"": ""30%""}",164319,1,Europe +2023-05-06,71902,8254,"[""Charger"", ""Monitor"", ""Headphones""]",3078.94,"{""promo"": ""11%""}",220492,0,South America +2023-01-31,71903,7582,"[""Charger""]",2937.49,{},114017,1,Asia +2024-01-26,71904,7742,"[""Tablet""]",1812.51,"{""loyalty"": ""6%""}",73762,1,Asia +2023-04-02,71905,7950,"[""Tablet"", ""Monitor""]",4040.05,"{""seasonal"": ""6%""}",154814,0,South America +2024-12-24,71906,5278,"[""Monitor"", ""Laptop"", ""Charger""]",4989.3,"{""promo"": ""11%""}",21317,1,Africa +2024-11-15,71907,72,"[""Tablet""]",184.24,"{""seasonal"": ""14%""}",114444,1,Asia +2023-11-19,71908,3048,"[""Monitor""]",2066.5,"{""loyalty"": ""17%""}",83309,1,Asia +2024-08-29,71909,3349,"[""Headphones"", ""Laptop"", ""Tablet""]",2567.99,{},64998,0,North America +2024-08-09,71910,8081,"[""Headphones""]",903.6,{},129701,0,Europe +2023-08-02,71911,9148,"[""Charger""]",3676.72,{},151929,1,Europe +2024-11-29,71912,3827,"[""Wireless Mouse""]",3751.95,"{""promo"": ""6%""}",94528,1,North America +2023-07-02,71913,9453,"[""Monitor""]",1438.52,"{""seasonal"": ""17%""}",217606,1,Europe +2024-09-25,71914,3909,"[""Tablet""]",3696.2,{},106736,1,South America +2024-11-24,71915,2677,"[""Headphones""]",156.24,{},234498,1,Europe +2024-06-19,71916,9912,"[""Headphones"", ""Keyboard""]",1365.06,{},30597,1,Asia +2024-04-17,71917,3012,"[""Phone"", ""Keyboard""]",1812.33,{},74955,1,North America +2024-07-24,71918,5275,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2162.94,"{""seasonal"": ""17%""}",128795,0,Africa +2023-05-12,71919,5443,"[""Wireless Mouse""]",4639.39,"{""seasonal"": ""23%""}",85819,0,Europe +2023-06-29,71920,4655,"[""Phone"", ""Wireless Mouse""]",182.84,"{"""": ""16%""}",217834,1,Europe +2023-02-03,71921,5966,"[""Laptop"", ""Keyboard"", ""Charger""]",2080.23,"{""promo"": ""12%""}",151403,0,Africa +2023-09-15,71922,2206,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2528.87,"{""loyalty"": ""20%""}",27253,1,Asia +2023-07-14,71923,7132,"[""Phone"", ""Keyboard"", ""Monitor""]",870.68,"{""loyalty"": ""25%""}",250445,1,Africa +2023-03-07,71924,9000,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1849.35,"{""promo"": ""7%""}",100730,1,South America +2024-09-29,71925,3992,"[""Phone"", ""Charger""]",1313.8,{},18919,1,North America +2024-12-10,71926,5822,"[""Phone""]",2152.39,{},283255,1,South America +2024-05-30,71927,2681,"[""Monitor"", ""Headphones"", ""Laptop""]",4950.11,{},55738,1,Asia +2023-04-29,71928,7389,"[""Charger"", ""Laptop""]",4414.33,"{"""": ""11%""}",275830,1,South America +2023-09-03,71929,2014,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2153.02,"{""seasonal"": ""26%""}",281698,0,South America +2024-03-13,71930,7360,"[""Phone"", ""Headphones"", ""Laptop""]",4380.7,{},177092,1,South America +2023-06-28,71931,7411,"[""Phone"", ""Wireless Mouse""]",3503.95,"{""promo"": ""28%""}",219887,1,South America +2023-02-27,71932,1961,"[""Laptop""]",982.33,"{""promo"": ""11%""}",265904,1,Asia +2024-08-04,71933,6785,"[""Headphones"", ""Tablet"", ""Monitor""]",2876.28,{},234956,0,Asia +2024-11-16,71934,51,"[""Headphones"", ""Laptop""]",4036.03,{},116795,0,North America +2024-08-19,71935,5010,"[""Headphones"", ""Wireless Mouse""]",4177.37,"{""promo"": ""20%""}",158219,0,South America +2023-02-22,71936,4566,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3661.94,"{"""": ""8%""}",83176,0,Asia +2024-06-02,71937,3530,"[""Phone"", ""Monitor"", ""Laptop""]",2828.46,"{""promo"": ""19%""}",122482,1,Africa +2024-08-06,71938,3529,"[""Monitor""]",2827.81,"{""loyalty"": ""30%""}",281818,1,Europe +2024-08-01,71939,7861,"[""Charger"", ""Tablet"", ""Monitor""]",4108.78,{},21796,0,South America +2023-07-05,71940,4403,"[""Tablet""]",3744.07,{},143931,0,North America +2023-12-02,71941,8551,"[""Phone""]",246.72,{},104854,1,South America +2024-04-07,71942,1960,"[""Headphones""]",3151.9,"{""loyalty"": ""12%""}",147187,1,Africa +2023-10-06,71943,8179,"[""Keyboard"", ""Laptop"", ""Tablet""]",1932.0,{},291552,0,North America +2024-11-01,71944,8058,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",146.71,"{""promo"": ""11%""}",107005,1,Europe +2024-05-07,71945,3246,"[""Tablet""]",1214.79,"{"""": ""7%""}",266805,1,Europe +2024-03-16,71946,3817,"[""Tablet"", ""Charger"", ""Headphones""]",1562.73,"{"""": ""12%""}",158057,1,Asia +2023-05-27,71947,30,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",538.77,"{""promo"": ""10%""}",62520,1,Africa +2023-07-09,71948,9540,"[""Monitor"", ""Wireless Mouse""]",4574.51,"{""loyalty"": ""30%""}",214829,1,Africa +2024-06-14,71949,813,"[""Headphones""]",3398.25,{},224543,0,South America +2024-04-13,71950,8470,"[""Monitor"", ""Tablet""]",704.6,{},115372,1,Africa +2024-01-25,71951,1935,"[""Tablet"", ""Monitor""]",4382.69,"{"""": ""21%""}",65394,0,Africa +2024-10-17,71952,8403,"[""Tablet""]",3472.04,{},148886,1,Europe +2023-08-26,71953,2538,"[""Phone"", ""Laptop""]",2788.11,"{""seasonal"": ""27%""}",268985,1,South America +2024-01-07,71954,6463,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1602.57,{},69367,1,South America +2023-10-05,71955,6077,"[""Laptop"", ""Tablet""]",2221.83,{},148373,1,North America +2024-02-03,71956,3319,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",217.57,"{""seasonal"": ""8%""}",287728,0,Europe +2023-04-07,71957,8272,"[""Laptop"", ""Phone""]",4765.51,{},19003,0,South America +2023-05-07,71958,5620,"[""Headphones""]",1620.66,{},139294,1,North America +2024-10-17,71959,9773,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",680.68,{},225671,1,South America +2024-05-18,71960,239,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3644.35,{},104777,0,Europe +2023-03-17,71961,6548,"[""Charger"", ""Keyboard""]",3004.09,"{""seasonal"": ""23%""}",243611,0,Asia +2023-09-09,71962,2443,"[""Monitor""]",4083.11,{},99700,0,South America +2023-10-17,71963,2277,"[""Keyboard"", ""Laptop"", ""Tablet""]",1373.35,{},252095,1,Africa +2024-02-06,71964,6721,"[""Headphones"", ""Keyboard"", ""Charger""]",2339.94,"{""promo"": ""26%""}",177811,1,Asia +2023-11-07,71965,4899,"[""Keyboard""]",2052.21,"{"""": ""12%""}",286691,1,Asia +2024-08-29,71966,8507,"[""Wireless Mouse"", ""Keyboard""]",2362.84,{},267268,1,North America +2024-02-05,71967,4339,"[""Tablet""]",2600.09,"{""loyalty"": ""20%""}",53281,1,Africa +2024-02-01,71968,6127,"[""Charger"", ""Tablet""]",184.18,"{""loyalty"": ""30%""}",298530,0,Africa +2023-10-13,71969,9817,"[""Keyboard"", ""Phone"", ""Laptop""]",2524.42,"{""promo"": ""5%""}",48466,1,South America +2023-11-21,71970,4459,"[""Keyboard""]",369.44,"{""promo"": ""15%""}",205396,0,North America +2024-06-20,71971,2859,"[""Headphones""]",3528.73,"{""seasonal"": ""24%""}",229746,0,Africa +2024-06-21,71972,8324,"[""Wireless Mouse""]",3217.68,{},129626,0,North America +2023-11-11,71973,4715,"[""Headphones""]",1154.54,"{""seasonal"": ""22%""}",291152,1,South America +2024-11-04,71974,8650,"[""Laptop"", ""Wireless Mouse""]",430.11,{},58006,0,Asia +2023-06-17,71975,5015,"[""Headphones"", ""Phone""]",1488.23,"{"""": ""6%""}",260617,1,Africa +2023-04-20,71976,5161,"[""Charger"", ""Phone"", ""Keyboard""]",2066.06,{},103466,0,Europe +2023-02-25,71977,7662,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1058.3,{},80852,0,Africa +2024-01-20,71978,6049,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4658.56,{},161087,0,Europe +2024-06-29,71979,1241,"[""Keyboard"", ""Monitor"", ""Headphones""]",4081.45,{},44857,0,Asia +2024-12-25,71980,4668,"[""Charger"", ""Laptop"", ""Monitor""]",3420.72,{},167494,0,Europe +2024-06-14,71981,6571,"[""Wireless Mouse"", ""Monitor""]",3307.27,"{""promo"": ""19%""}",122745,0,Europe +2024-07-14,71982,9257,"[""Keyboard"", ""Phone""]",4577.47,"{""loyalty"": ""30%""}",43798,1,Africa +2023-07-09,71983,6160,"[""Keyboard""]",351.8,{},70423,0,Europe +2024-06-04,71984,7768,"[""Headphones"", ""Laptop"", ""Charger""]",4649.99,{},117727,0,Africa +2023-03-26,71985,6145,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2087.71,"{""promo"": ""26%""}",251919,0,North America +2023-05-10,71986,5518,"[""Wireless Mouse""]",376.2,"{"""": ""23%""}",163993,1,Europe +2023-06-04,71987,2564,"[""Laptop""]",1533.06,"{""promo"": ""6%""}",296817,1,Asia +2023-08-01,71988,5872,"[""Headphones"", ""Charger"", ""Monitor""]",3455.04,"{""promo"": ""22%""}",286599,1,Europe +2024-04-14,71989,4103,"[""Tablet"", ""Laptop"", ""Headphones""]",944.81,{},61999,0,Europe +2023-11-29,71990,6449,"[""Headphones""]",3213.43,"{""loyalty"": ""26%""}",57469,0,Asia +2024-08-12,71991,8972,"[""Tablet"", ""Laptop""]",3866.81,{},245043,0,Asia +2023-01-24,71992,6239,"[""Tablet""]",4795.31,{},214972,0,Africa +2023-01-08,71993,1742,"[""Laptop"", ""Wireless Mouse""]",2578.14,"{""promo"": ""24%""}",121126,1,Europe +2023-12-26,71994,1429,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",594.18,{},26674,0,North America +2024-10-30,71995,7861,"[""Charger"", ""Monitor"", ""Tablet""]",552.61,{},78794,1,Europe +2023-12-06,71996,723,"[""Tablet"", ""Charger""]",2973.63,{},133715,0,Africa +2024-01-16,71997,7591,"[""Wireless Mouse""]",3001.28,{},90497,1,Africa +2023-12-29,71998,4943,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1952.11,{},16912,1,Europe +2023-06-02,71999,9717,"[""Tablet"", ""Phone""]",342.77,"{""loyalty"": ""29%""}",239685,0,Europe +2024-10-20,72000,8554,"[""Monitor""]",3173.25,"{""loyalty"": ""14%""}",129820,1,Europe +2023-02-09,72001,1460,"[""Monitor"", ""Phone"", ""Tablet""]",2426.78,"{""loyalty"": ""22%""}",109061,1,South America +2023-10-11,72002,245,"[""Wireless Mouse"", ""Charger""]",4298.14,"{""promo"": ""8%""}",107318,1,Europe +2023-03-01,72003,3931,"[""Keyboard"", ""Laptop"", ""Headphones""]",4651.96,"{""loyalty"": ""6%""}",58186,0,South America +2024-10-05,72004,7941,"[""Tablet"", ""Phone""]",4637.72,{},192552,1,South America +2023-03-17,72005,3322,"[""Tablet"", ""Monitor""]",1004.76,"{""promo"": ""7%""}",233704,0,North America +2023-09-08,72006,6856,"[""Charger""]",3145.28,"{""seasonal"": ""20%""}",144364,0,North America +2023-05-20,72007,8696,"[""Tablet""]",3829.26,{},233959,0,Europe +2024-06-28,72008,9795,"[""Charger""]",1457.04,{},217609,1,North America +2023-09-14,72009,8379,"[""Phone"", ""Tablet""]",3673.14,"{""loyalty"": ""14%""}",16890,1,Africa +2023-03-08,72010,8330,"[""Wireless Mouse""]",228.88,{},287514,1,South America +2024-03-13,72011,3348,"[""Phone"", ""Tablet""]",4497.45,"{"""": ""20%""}",158247,1,North America +2024-03-12,72012,3017,"[""Charger"", ""Keyboard""]",1083.78,{},256379,0,South America +2024-03-17,72013,2987,"[""Wireless Mouse""]",1754.35,{},214005,1,Africa +2024-08-12,72014,8136,"[""Monitor"", ""Tablet""]",3656.14,"{"""": ""18%""}",298022,1,South America +2023-04-04,72015,5806,"[""Keyboard"", ""Charger""]",3250.75,"{""promo"": ""27%""}",83201,1,Asia +2024-05-03,72016,1548,"[""Tablet""]",2595.91,{},46617,1,Africa +2024-01-10,72017,2178,"[""Tablet""]",2725.71,{},175735,0,North America +2024-02-08,72018,2518,"[""Monitor"", ""Keyboard"", ""Phone""]",1855.73,"{""promo"": ""23%""}",179106,0,South America +2024-04-29,72019,1126,"[""Headphones"", ""Keyboard"", ""Tablet""]",4721.8,{},71580,1,South America +2024-01-06,72020,7520,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2916.09,{},118998,1,Europe +2024-09-25,72021,7105,"[""Tablet"", ""Phone"", ""Monitor""]",3881.74,"{""loyalty"": ""5%""}",19767,1,South America +2023-09-09,72022,4167,"[""Tablet"", ""Wireless Mouse""]",3409.99,"{"""": ""17%""}",127505,1,Asia +2024-08-12,72023,9894,"[""Wireless Mouse"", ""Monitor""]",4301.9,{},253574,0,Africa +2023-03-14,72024,9548,"[""Charger""]",1383.5,"{""promo"": ""20%""}",105344,0,Europe +2023-07-04,72025,6277,"[""Headphones"", ""Tablet"", ""Laptop""]",3845.71,"{""loyalty"": ""27%""}",188275,1,Africa +2023-05-01,72026,520,"[""Charger""]",75.48,"{""promo"": ""5%""}",246269,1,Asia +2024-01-01,72027,1775,"[""Monitor""]",3849.61,{},134795,1,Africa +2024-09-26,72028,2361,"[""Tablet"", ""Laptop"", ""Charger""]",881.51,{},2760,1,Asia +2023-12-29,72029,1287,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2366.04,{},295485,0,Asia +2024-01-20,72030,3716,"[""Tablet"", ""Keyboard"", ""Phone""]",2491.22,{},145252,0,Asia +2023-02-16,72031,9449,"[""Monitor"", ""Tablet""]",2775.47,"{""promo"": ""10%""}",239994,0,Europe +2023-11-27,72032,9891,"[""Headphones""]",2188.81,"{""loyalty"": ""6%""}",236077,0,Asia +2024-08-12,72033,1524,"[""Charger"", ""Phone"", ""Monitor""]",4727.85,{},17269,0,South America +2023-06-19,72034,6469,"[""Laptop""]",2533.04,"{""promo"": ""24%""}",268682,0,North America +2023-12-13,72035,214,"[""Tablet""]",333.92,{},198501,0,Asia +2023-12-01,72036,1716,"[""Charger""]",3228.82,{},19135,1,Africa +2023-06-20,72037,7482,"[""Headphones""]",931.11,"{""loyalty"": ""7%""}",23123,0,Asia +2023-01-29,72038,2024,"[""Wireless Mouse"", ""Charger""]",3285.12,{},227333,1,Asia +2023-01-23,72039,3477,"[""Headphones""]",133.39,"{""loyalty"": ""11%""}",178946,0,Europe +2023-03-13,72040,5303,"[""Laptop"", ""Keyboard""]",4503.25,{},100286,0,Europe +2023-09-19,72041,4441,"[""Tablet"", ""Laptop"", ""Monitor""]",3112.66,"{"""": ""24%""}",149972,0,North America +2023-02-05,72042,2315,"[""Keyboard"", ""Monitor""]",1129.0,"{""loyalty"": ""27%""}",257715,1,Africa +2024-01-26,72043,4346,"[""Charger""]",1793.2,{},192155,1,North America +2024-12-20,72044,9933,"[""Tablet"", ""Phone"", ""Headphones""]",1577.97,{},89757,0,Europe +2023-11-27,72045,5338,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4794.46,"{""loyalty"": ""16%""}",208590,0,Africa +2023-03-31,72046,3166,"[""Wireless Mouse""]",4939.33,"{""promo"": ""22%""}",254104,0,Asia +2024-08-13,72047,5497,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",715.16,"{""seasonal"": ""12%""}",18968,1,Asia +2024-03-17,72048,2692,"[""Laptop"", ""Charger""]",775.79,"{""promo"": ""22%""}",73130,1,Africa +2024-08-14,72049,337,"[""Laptop""]",4780.83,"{""promo"": ""6%""}",248919,1,North America +2024-07-29,72050,2882,"[""Keyboard"", ""Monitor"", ""Charger""]",3931.77,"{""loyalty"": ""11%""}",237837,1,North America +2024-12-07,72051,5708,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4859.63,"{""loyalty"": ""25%""}",151033,1,Africa +2024-02-25,72052,9907,"[""Charger""]",4603.06,"{"""": ""25%""}",281044,0,Asia +2024-03-20,72053,7134,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4094.99,"{"""": ""30%""}",180379,1,South America +2024-02-13,72054,7127,"[""Phone"", ""Charger"", ""Keyboard""]",4011.19,{},202271,0,Europe +2024-12-20,72055,7626,"[""Laptop""]",4527.03,"{""seasonal"": ""10%""}",144610,0,Asia +2024-07-07,72056,7920,"[""Keyboard""]",913.06,"{""promo"": ""8%""}",97678,1,Africa +2023-11-02,72057,9174,"[""Charger"", ""Monitor"", ""Keyboard""]",4389.54,{},259338,1,South America +2024-11-10,72058,4440,"[""Laptop""]",1271.73,{},171616,1,Africa +2024-11-18,72059,9971,"[""Monitor""]",2492.87,{},225202,0,Asia +2023-09-06,72060,745,"[""Keyboard"", ""Tablet"", ""Monitor""]",1424.15,"{""seasonal"": ""19%""}",201136,0,Asia +2023-07-07,72061,2931,"[""Keyboard""]",3107.43,"{""loyalty"": ""5%""}",230225,0,Asia +2024-12-04,72062,7531,"[""Headphones"", ""Charger"", ""Keyboard""]",4182.69,"{""loyalty"": ""14%""}",85780,0,Africa +2024-07-09,72063,5380,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4549.69,"{"""": ""30%""}",55033,0,Europe +2024-07-31,72064,4390,"[""Keyboard"", ""Phone""]",542.4,"{""loyalty"": ""20%""}",220215,1,Asia +2024-01-21,72065,5318,"[""Tablet"", ""Keyboard"", ""Laptop""]",2672.99,{},216035,0,Asia +2024-06-04,72066,9049,"[""Keyboard""]",3111.79,"{"""": ""21%""}",69919,0,South America +2023-11-23,72067,7269,"[""Wireless Mouse""]",3798.04,"{""seasonal"": ""27%""}",115630,1,Asia +2023-09-28,72068,8319,"[""Wireless Mouse"", ""Charger""]",4859.68,{},8572,1,Asia +2023-03-17,72069,487,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4745.81,{},281301,1,Asia +2024-05-30,72070,7100,"[""Charger"", ""Phone""]",4990.79,"{""loyalty"": ""11%""}",74442,1,North America +2023-07-15,72071,9041,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3137.96,{},42234,1,South America +2024-06-17,72072,1286,"[""Laptop"", ""Tablet""]",2190.91,{},179298,1,North America +2024-10-27,72073,8712,"[""Tablet""]",3466.71,{},184922,0,South America +2024-08-07,72074,1261,"[""Charger"", ""Keyboard""]",3907.01,"{""promo"": ""21%""}",279005,0,Africa +2024-06-30,72075,8195,"[""Laptop"", ""Tablet""]",3472.64,"{"""": ""26%""}",27763,0,North America +2024-11-17,72076,4270,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1707.31,"{""loyalty"": ""23%""}",290124,1,Europe +2023-02-01,72077,4023,"[""Monitor"", ""Laptop""]",3601.09,"{"""": ""29%""}",50426,0,Africa +2024-12-08,72078,2620,"[""Monitor""]",2305.05,"{""seasonal"": ""28%""}",155432,1,North America +2024-09-24,72079,2875,"[""Monitor"", ""Phone""]",1792.8,{},40179,1,Asia +2024-06-01,72080,6814,"[""Keyboard"", ""Tablet""]",939.24,{},185979,1,South America +2023-07-18,72081,1928,"[""Phone"", ""Wireless Mouse""]",1845.04,"{""seasonal"": ""10%""}",104686,1,South America +2024-05-22,72082,2903,"[""Laptop"", ""Phone"", ""Tablet""]",123.58,{},287222,0,North America +2024-11-24,72083,3584,"[""Phone"", ""Headphones""]",4836.06,"{""seasonal"": ""9%""}",204135,1,Asia +2024-06-14,72084,2657,"[""Laptop"", ""Wireless Mouse""]",2139.21,"{""loyalty"": ""9%""}",104388,1,Asia +2024-07-18,72085,3423,"[""Wireless Mouse""]",4102.36,{},26096,0,South America +2024-08-29,72086,6471,"[""Wireless Mouse""]",2050.39,{},288767,0,Europe +2023-01-17,72087,4086,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1067.0,{},198601,0,Africa +2024-08-11,72088,6811,"[""Monitor""]",426.54,{},82440,0,Africa +2023-03-31,72089,3316,"[""Laptop""]",2157.15,{},21486,1,Africa +2024-07-02,72090,4064,"[""Wireless Mouse"", ""Keyboard""]",1037.91,"{""loyalty"": ""20%""}",210458,0,Asia +2024-06-19,72091,6271,"[""Charger"", ""Phone""]",4744.45,"{""seasonal"": ""10%""}",208035,0,Africa +2024-09-08,72092,9414,"[""Charger"", ""Tablet"", ""Keyboard""]",3225.01,"{""loyalty"": ""18%""}",7040,0,North America +2023-03-20,72093,1227,"[""Tablet""]",4024.48,"{"""": ""27%""}",142425,1,Europe +2024-06-26,72094,4869,"[""Laptop""]",4946.33,"{"""": ""25%""}",58802,0,Asia +2024-08-30,72095,7195,"[""Laptop"", ""Charger"", ""Tablet""]",62.52,{},249226,0,Asia +2024-12-01,72096,2092,"[""Monitor""]",981.89,{},67952,0,Europe +2023-04-30,72097,6900,"[""Keyboard""]",3379.67,"{""loyalty"": ""26%""}",242383,0,Europe +2023-11-05,72098,7085,"[""Laptop"", ""Headphones""]",3554.76,"{""promo"": ""22%""}",190181,1,Europe +2024-11-25,72099,1599,"[""Headphones"", ""Monitor"", ""Charger""]",3284.39,"{""seasonal"": ""29%""}",75901,1,Europe +2023-08-16,72100,137,"[""Wireless Mouse""]",2599.03,{},291164,1,South America +2024-07-30,72101,5669,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",599.91,{},14428,0,Africa +2024-08-25,72102,6872,"[""Tablet"", ""Charger"", ""Keyboard""]",4522.16,{},36060,1,North America +2023-01-24,72103,3867,"[""Charger"", ""Monitor""]",3441.91,"{"""": ""18%""}",154514,0,Europe +2024-07-22,72104,6768,"[""Keyboard"", ""Laptop"", ""Charger""]",993.15,{},43273,0,Europe +2023-07-05,72105,2308,"[""Charger""]",4778.89,"{""seasonal"": ""24%""}",99065,0,Europe +2024-07-09,72106,5546,"[""Charger""]",3304.43,{},115991,1,Asia +2024-10-15,72107,2121,"[""Headphones"", ""Laptop"", ""Tablet""]",4954.88,{},33757,0,North America +2023-08-30,72108,3937,"[""Monitor"", ""Charger""]",4572.94,"{""promo"": ""23%""}",220218,1,Africa +2024-09-11,72109,2920,"[""Phone""]",933.96,{},59305,0,North America +2024-08-19,72110,5290,"[""Headphones""]",2704.57,"{""loyalty"": ""23%""}",41276,1,Africa +2024-02-27,72111,9466,"[""Tablet"", ""Keyboard""]",523.93,"{"""": ""30%""}",228647,0,Asia +2023-07-18,72112,2941,"[""Tablet"", ""Wireless Mouse""]",1608.13,"{""seasonal"": ""21%""}",216193,1,South America +2023-12-28,72113,7138,"[""Monitor"", ""Charger""]",4161.04,{},37372,0,Asia +2024-06-21,72114,8681,"[""Tablet"", ""Charger"", ""Headphones""]",2905.71,{},223715,1,North America +2023-11-07,72115,104,"[""Phone"", ""Keyboard""]",3167.05,{},185852,0,Africa +2024-02-04,72116,802,"[""Phone""]",3695.26,"{""promo"": ""30%""}",159778,1,Africa +2023-11-14,72117,7048,"[""Headphones"", ""Keyboard""]",2653.37,"{""seasonal"": ""20%""}",44421,1,Europe +2023-03-06,72118,6247,"[""Keyboard"", ""Monitor""]",4503.87,"{""seasonal"": ""9%""}",185986,0,North America +2023-12-16,72119,5632,"[""Headphones"", ""Monitor""]",2963.04,{},125365,0,Africa +2023-04-26,72120,9459,"[""Headphones"", ""Laptop"", ""Monitor""]",3661.16,"{""promo"": ""12%""}",45846,1,Asia +2023-01-09,72121,4515,"[""Phone""]",3683.29,"{""seasonal"": ""20%""}",128283,1,Europe +2024-10-07,72122,4890,"[""Tablet"", ""Charger""]",4482.88,"{""loyalty"": ""10%""}",122353,0,Asia +2023-12-25,72123,421,"[""Monitor"", ""Headphones"", ""Tablet""]",3447.32,"{"""": ""19%""}",297246,0,North America +2023-08-22,72124,7175,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",939.99,"{""seasonal"": ""19%""}",263867,1,Europe +2023-07-07,72125,5151,"[""Tablet""]",790.27,"{""promo"": ""27%""}",16799,0,South America +2023-05-05,72126,8412,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4830.98,{},111184,0,South America +2023-09-15,72127,7698,"[""Monitor"", ""Laptop"", ""Tablet""]",1215.84,"{"""": ""19%""}",190070,1,North America +2023-01-31,72128,5138,"[""Headphones"", ""Tablet""]",4168.25,{},158820,1,Asia +2023-01-02,72129,7435,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",875.67,{},29214,0,Africa +2024-04-14,72130,5755,"[""Keyboard"", ""Phone""]",1100.36,{},21913,0,Africa +2024-03-17,72131,9044,"[""Wireless Mouse""]",3728.45,{},78392,0,Asia +2024-05-08,72132,5660,"[""Tablet""]",2671.11,"{""loyalty"": ""27%""}",115790,1,Africa +2023-06-25,72133,7611,"[""Monitor"", ""Charger""]",3713.09,{},6261,1,Africa +2023-05-20,72134,5538,"[""Monitor"", ""Tablet""]",4423.2,"{""loyalty"": ""26%""}",38081,1,Africa +2023-11-26,72135,4629,"[""Laptop""]",2997.76,"{""seasonal"": ""24%""}",213256,0,Asia +2023-07-29,72136,5049,"[""Charger"", ""Phone"", ""Tablet""]",1927.68,{},269455,1,South America +2024-06-20,72137,4754,"[""Monitor""]",4173.27,"{""loyalty"": ""6%""}",83665,1,Asia +2024-07-19,72138,8609,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",152.65,"{"""": ""25%""}",289046,1,Africa +2023-09-19,72139,6474,"[""Charger"", ""Laptop""]",4113.18,"{""promo"": ""28%""}",172041,1,Asia +2023-10-20,72140,8796,"[""Tablet""]",3825.98,"{""seasonal"": ""15%""}",146472,0,North America +2024-02-15,72141,4238,"[""Keyboard"", ""Charger"", ""Tablet""]",141.62,{},119487,0,Asia +2023-02-17,72142,4233,"[""Charger"", ""Tablet"", ""Laptop""]",4655.26,{},195560,0,Europe +2024-05-12,72143,5913,"[""Phone"", ""Tablet""]",2732.18,"{""seasonal"": ""25%""}",140786,1,South America +2024-10-13,72144,6963,"[""Monitor""]",1940.61,"{""promo"": ""16%""}",72781,0,Africa +2023-04-20,72145,5066,"[""Monitor"", ""Laptop"", ""Headphones""]",2765.67,{},239444,1,South America +2024-05-10,72146,2969,"[""Tablet"", ""Headphones""]",4825.26,"{""promo"": ""28%""}",44078,1,North America +2023-10-08,72147,9060,"[""Keyboard""]",3903.51,{},274496,0,North America +2024-12-29,72148,5109,"[""Tablet""]",2099.46,{},98671,0,Europe +2023-11-19,72149,8187,"[""Headphones"", ""Monitor"", ""Tablet""]",3418.63,{},155483,1,South America +2023-07-20,72150,167,"[""Phone"", ""Monitor""]",2459.79,"{""seasonal"": ""14%""}",244366,1,South America +2024-04-01,72151,4525,"[""Tablet"", ""Charger"", ""Laptop""]",4855.28,{},254263,1,South America +2023-09-14,72152,3174,"[""Wireless Mouse"", ""Monitor""]",530.96,{},110712,1,South America +2024-12-14,72153,4849,"[""Charger"", ""Wireless Mouse""]",3497.66,{},230790,0,South America +2024-05-24,72154,8564,"[""Phone"", ""Charger""]",1249.5,{},137651,1,South America +2024-09-08,72155,280,"[""Laptop""]",758.16,{},29529,1,Asia +2023-02-22,72156,134,"[""Keyboard""]",2039.9,"{"""": ""20%""}",295550,0,North America +2024-11-23,72157,2800,"[""Phone""]",3677.42,{},263558,1,Asia +2023-02-10,72158,8030,"[""Tablet"", ""Monitor""]",1237.55,{},8084,0,Asia +2024-05-24,72159,716,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1164.54,"{""loyalty"": ""5%""}",61677,1,South America +2024-01-08,72160,1431,"[""Keyboard"", ""Charger"", ""Headphones""]",1373.32,{},35020,0,South America +2023-05-26,72161,226,"[""Phone""]",3533.28,{},189705,1,Europe +2024-05-27,72162,7864,"[""Phone"", ""Headphones""]",3895.86,"{""seasonal"": ""18%""}",5719,1,Asia +2024-07-04,72163,7357,"[""Charger""]",2999.32,{},259134,0,Europe +2024-05-29,72164,7531,"[""Keyboard"", ""Tablet""]",2070.75,{},46687,0,Africa +2023-10-17,72165,1072,"[""Monitor"", ""Headphones"", ""Phone""]",1304.5,"{"""": ""19%""}",230280,1,North America +2023-01-25,72166,6980,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2721.29,{},148046,1,South America +2023-04-13,72167,9909,"[""Charger"", ""Laptop""]",785.35,{},240629,1,Africa +2023-12-13,72168,4997,"[""Headphones"", ""Laptop"", ""Charger""]",264.5,"{""loyalty"": ""17%""}",115565,0,North America +2023-12-16,72169,905,"[""Charger""]",161.07,{},78104,1,Africa +2023-09-26,72170,9765,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",723.67,{},281696,1,Asia +2024-05-16,72171,9274,"[""Phone"", ""Charger""]",815.01,"{""loyalty"": ""23%""}",169419,1,North America +2023-07-02,72172,7387,"[""Laptop""]",3286.43,{},62613,0,North America +2024-02-27,72173,806,"[""Wireless Mouse""]",2212.19,{},202282,0,Africa +2024-01-03,72174,7888,"[""Wireless Mouse"", ""Laptop""]",4892.4,"{""promo"": ""30%""}",170651,0,South America +2023-06-21,72175,537,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2812.5,"{"""": ""5%""}",21712,0,North America +2024-04-30,72176,6271,"[""Keyboard"", ""Phone""]",3391.47,"{"""": ""30%""}",256428,0,Asia +2024-06-05,72177,2677,"[""Headphones""]",3601.07,"{"""": ""18%""}",152026,0,South America +2024-11-06,72178,8446,"[""Headphones"", ""Tablet"", ""Keyboard""]",4315.18,"{""seasonal"": ""9%""}",44890,1,North America +2024-06-15,72179,5780,"[""Phone"", ""Laptop""]",4179.74,{},268486,0,North America +2023-10-28,72180,7265,"[""Wireless Mouse"", ""Headphones""]",1380.14,{},1889,0,Asia +2024-10-19,72181,8294,"[""Monitor"", ""Wireless Mouse""]",4734.73,{},36907,1,Europe +2024-01-09,72182,8098,"[""Wireless Mouse""]",3583.35,"{""seasonal"": ""8%""}",157473,0,Asia +2023-03-28,72183,5314,"[""Tablet"", ""Charger"", ""Monitor""]",485.14,{},6543,1,Africa +2024-07-15,72184,7857,"[""Monitor""]",2449.03,"{""seasonal"": ""19%""}",220837,0,South America +2023-05-07,72185,8691,"[""Wireless Mouse""]",2063.31,{},277516,1,Europe +2024-07-10,72186,6797,"[""Phone"", ""Monitor""]",2843.6,"{""loyalty"": ""22%""}",209012,1,South America +2023-04-23,72187,5415,"[""Keyboard"", ""Tablet""]",2716.95,{},223063,0,South America +2023-10-20,72188,5176,"[""Laptop"", ""Keyboard""]",3617.46,"{""loyalty"": ""9%""}",213151,0,Europe +2023-04-13,72189,8148,"[""Laptop"", ""Headphones""]",3880.67,"{"""": ""6%""}",77531,1,Africa +2024-07-22,72190,7734,"[""Phone"", ""Keyboard""]",4080.24,"{"""": ""11%""}",140551,1,South America +2023-05-16,72191,9965,"[""Laptop"", ""Monitor"", ""Charger""]",723.23,"{"""": ""27%""}",167137,1,South America +2024-11-02,72192,8610,"[""Keyboard"", ""Headphones"", ""Phone""]",764.05,{},113891,0,Asia +2023-06-17,72193,5196,"[""Phone"", ""Tablet"", ""Charger""]",1767.82,{},122702,0,North America +2024-10-04,72194,5397,"[""Keyboard"", ""Monitor"", ""Phone""]",1665.6,"{""seasonal"": ""24%""}",28761,0,Africa +2024-02-15,72195,5771,"[""Phone""]",3669.84,{},46724,0,Europe +2023-12-14,72196,4087,"[""Phone""]",2640.21,"{"""": ""15%""}",232588,0,Europe +2024-08-07,72197,641,"[""Laptop""]",1528.34,{},48794,1,Europe +2023-02-01,72198,5059,"[""Keyboard""]",1447.71,{},131568,0,South America +2023-12-28,72199,2911,"[""Keyboard"", ""Phone""]",2433.43,{},133442,1,North America +2023-08-29,72200,6118,"[""Headphones"", ""Laptop""]",279.72,{},154188,0,Europe +2023-05-26,72201,5608,"[""Charger""]",1019.89,{},175262,1,North America +2023-12-23,72202,7412,"[""Tablet""]",1665.53,"{""seasonal"": ""13%""}",94458,0,South America +2024-04-14,72203,4815,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",525.82,{},232636,1,North America +2024-09-01,72204,1998,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4087.17,{},258900,0,Asia +2023-08-13,72205,2313,"[""Tablet""]",4725.04,"{"""": ""11%""}",181418,1,South America +2023-03-02,72206,3814,"[""Keyboard"", ""Tablet""]",3701.52,"{""promo"": ""17%""}",217119,0,Europe +2023-03-03,72207,9945,"[""Headphones"", ""Phone"", ""Charger""]",2877.92,{},205818,0,North America +2023-07-25,72208,9915,"[""Monitor"", ""Headphones""]",351.72,{},28534,0,Asia +2023-02-18,72209,8706,"[""Charger""]",4412.64,{},137339,1,Asia +2024-06-24,72210,7881,"[""Keyboard"", ""Monitor""]",534.79,{},237544,0,Asia +2023-04-25,72211,6576,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",847.87,{},198949,0,North America +2024-04-04,72212,2639,"[""Laptop"", ""Tablet"", ""Keyboard""]",4571.69,{},174832,0,North America +2024-09-18,72213,3239,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",439.92,"{""seasonal"": ""21%""}",109337,0,North America +2024-12-29,72214,5007,"[""Monitor"", ""Headphones"", ""Laptop""]",2564.41,{},196494,0,North America +2023-04-27,72215,6475,"[""Headphones""]",109.16,{},207636,1,Europe +2023-01-24,72216,3529,"[""Charger"", ""Monitor""]",788.21,{},261105,1,Europe +2024-03-29,72217,2554,"[""Monitor"", ""Keyboard"", ""Laptop""]",999.41,"{""loyalty"": ""19%""}",102628,1,Asia +2024-05-21,72218,8409,"[""Monitor""]",3218.08,{},111792,0,Europe +2023-12-27,72219,5921,"[""Headphones"", ""Laptop"", ""Charger""]",1543.9,{},60078,0,Africa +2023-10-02,72220,7196,"[""Keyboard""]",3613.28,"{"""": ""26%""}",10153,0,Asia +2023-06-15,72221,8752,"[""Phone"", ""Wireless Mouse""]",677.52,"{""loyalty"": ""8%""}",171737,0,Asia +2023-06-29,72222,8918,"[""Phone"", ""Monitor""]",1876.6,{},104143,1,Africa +2024-10-13,72223,1757,"[""Keyboard"", ""Charger""]",4613.75,{},71785,1,Asia +2024-08-10,72224,4760,"[""Keyboard"", ""Phone""]",999.87,"{""seasonal"": ""10%""}",200965,0,South America +2023-12-20,72225,4682,"[""Headphones"", ""Wireless Mouse""]",2214.99,{},31204,1,Africa +2024-12-02,72226,768,"[""Laptop"", ""Tablet""]",114.74,{},225398,0,North America +2024-03-20,72227,256,"[""Phone"", ""Monitor""]",2357.06,"{""seasonal"": ""17%""}",70364,0,Europe +2023-10-27,72228,588,"[""Charger""]",4311.98,{},122228,1,Asia +2024-09-01,72229,5672,"[""Keyboard"", ""Phone""]",2058.12,"{""seasonal"": ""30%""}",45074,1,Africa +2023-11-03,72230,1587,"[""Headphones""]",3234.74,{},251298,0,Asia +2023-10-23,72231,3644,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4722.11,{},55270,1,North America +2024-07-22,72232,9806,"[""Tablet"", ""Keyboard"", ""Headphones""]",2531.43,{},33807,1,North America +2024-05-25,72233,6987,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3672.14,{},193763,0,North America +2023-03-13,72234,7801,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4935.62,"{""loyalty"": ""14%""}",200020,0,Africa +2023-09-26,72235,9116,"[""Tablet""]",983.8,"{""seasonal"": ""16%""}",16834,0,Asia +2023-10-19,72236,9767,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2981.38,"{""promo"": ""5%""}",22637,1,Africa +2023-01-24,72237,9820,"[""Keyboard"", ""Charger""]",4571.65,"{""promo"": ""16%""}",266079,1,Asia +2024-11-11,72238,3285,"[""Headphones""]",3944.2,{},20020,0,Asia +2023-07-29,72239,7953,"[""Tablet""]",1249.05,"{"""": ""16%""}",290085,0,North America +2024-09-26,72240,4833,"[""Tablet"", ""Monitor""]",3188.52,"{""seasonal"": ""9%""}",188356,0,Europe +2023-06-30,72241,8843,"[""Phone"", ""Monitor"", ""Tablet""]",396.16,{},222475,0,North America +2024-02-03,72242,3353,"[""Phone"", ""Charger""]",1022.85,"{""promo"": ""14%""}",8608,1,North America +2023-12-23,72243,2659,"[""Tablet"", ""Charger"", ""Phone""]",1088.02,{},31198,0,Asia +2023-04-17,72244,5111,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1420.76,"{""seasonal"": ""24%""}",110242,0,South America +2024-12-20,72245,2989,"[""Headphones"", ""Keyboard""]",1807.07,{},96366,1,North America +2023-02-14,72246,17,"[""Keyboard""]",2882.73,"{""promo"": ""13%""}",127619,1,South America +2023-09-04,72247,6363,"[""Charger""]",2545.54,"{""promo"": ""18%""}",73882,1,Europe +2024-04-23,72248,9571,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4793.18,{},87575,0,Europe +2023-02-14,72249,4751,"[""Charger"", ""Laptop""]",2702.84,{},248549,1,Africa +2023-07-12,72250,8390,"[""Tablet"", ""Monitor"", ""Laptop""]",4107.53,{},183472,1,Africa +2023-08-28,72251,7256,"[""Laptop""]",3657.67,{},110910,1,Africa +2024-09-25,72252,332,"[""Charger"", ""Headphones""]",1242.84,{},281127,1,North America +2023-08-25,72253,1537,"[""Tablet""]",1814.86,"{""promo"": ""30%""}",205057,0,North America +2024-12-29,72254,6459,"[""Tablet""]",647.71,{},2322,1,North America +2023-02-08,72255,6176,"[""Monitor""]",698.04,"{"""": ""6%""}",233795,0,Asia +2023-01-11,72256,6552,"[""Laptop"", ""Charger""]",1239.33,"{""loyalty"": ""16%""}",3235,0,Europe +2023-12-12,72257,4023,"[""Phone"", ""Headphones"", ""Charger""]",2686.09,"{""promo"": ""29%""}",124693,0,Europe +2023-02-11,72258,1049,"[""Headphones""]",3927.58,"{"""": ""5%""}",208736,1,South America +2023-11-10,72259,7320,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1605.8,"{""promo"": ""25%""}",247582,1,North America +2023-08-30,72260,4037,"[""Charger"", ""Keyboard"", ""Monitor""]",1829.58,"{""seasonal"": ""16%""}",132552,1,Africa +2023-07-24,72261,9882,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4382.39,"{""promo"": ""8%""}",207176,1,Asia +2024-03-08,72262,3912,"[""Charger"", ""Laptop""]",4530.75,{},125011,1,North America +2024-10-04,72263,3581,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1194.76,{},230314,0,South America +2023-12-06,72264,5714,"[""Wireless Mouse"", ""Keyboard""]",4709.39,"{"""": ""21%""}",127370,0,Europe +2023-01-01,72265,3758,"[""Tablet""]",1876.6,{},113363,0,North America +2024-01-03,72266,6914,"[""Monitor"", ""Headphones""]",306.33,"{""loyalty"": ""12%""}",45577,0,Europe +2023-10-22,72267,3693,"[""Charger"", ""Phone""]",4181.62,{},3977,1,Asia +2023-08-25,72268,4401,"[""Phone""]",221.99,"{""seasonal"": ""7%""}",95678,1,Europe +2023-04-01,72269,4389,"[""Keyboard"", ""Wireless Mouse""]",3708.27,{},5550,1,Europe +2024-09-16,72270,6577,"[""Charger"", ""Laptop""]",3286.62,"{""promo"": ""22%""}",40737,1,North America +2024-02-17,72271,8271,"[""Keyboard"", ""Laptop"", ""Charger""]",4196.02,{},138180,1,Africa +2024-08-13,72272,9587,"[""Laptop"", ""Keyboard"", ""Phone""]",2571.53,"{""loyalty"": ""11%""}",21039,0,Asia +2023-12-30,72273,20,"[""Wireless Mouse""]",2842.34,"{""loyalty"": ""7%""}",72598,0,Europe +2023-10-15,72274,6617,"[""Wireless Mouse"", ""Monitor""]",4937.17,{},292538,0,Europe +2024-05-26,72275,4870,"[""Headphones"", ""Charger""]",1244.54,"{""loyalty"": ""28%""}",247559,0,South America +2024-11-01,72276,9039,"[""Headphones"", ""Keyboard"", ""Phone""]",3099.98,"{""seasonal"": ""6%""}",21302,0,North America +2023-08-19,72277,3343,"[""Laptop"", ""Phone""]",3455.84,"{""seasonal"": ""8%""}",263305,1,North America +2024-07-15,72278,2319,"[""Charger"", ""Laptop"", ""Tablet""]",1855.93,"{"""": ""10%""}",59631,1,Asia +2023-02-23,72279,9904,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4525.5,"{""promo"": ""25%""}",249780,0,Africa +2024-02-25,72280,7618,"[""Charger""]",3538.06,"{"""": ""24%""}",11618,1,Asia +2024-03-07,72281,6793,"[""Charger"", ""Monitor""]",1685.49,"{"""": ""23%""}",166119,0,North America +2024-05-30,72282,8499,"[""Phone""]",1271.86,{},95014,1,North America +2024-04-28,72283,848,"[""Keyboard"", ""Laptop""]",1812.19,"{"""": ""20%""}",179162,0,Africa +2023-10-23,72284,8502,"[""Headphones"", ""Monitor""]",4849.59,"{""seasonal"": ""12%""}",272823,0,Europe +2023-11-12,72285,1004,"[""Laptop""]",3989.94,{},149124,1,Asia +2024-06-01,72286,6008,"[""Charger"", ""Headphones"", ""Keyboard""]",253.54,{},62855,1,Asia +2024-10-11,72287,7536,"[""Charger"", ""Wireless Mouse""]",2391.31,"{""promo"": ""7%""}",196696,0,Europe +2024-02-06,72288,7202,"[""Tablet"", ""Laptop""]",3786.32,{},103457,1,North America +2024-10-28,72289,2827,"[""Keyboard"", ""Wireless Mouse""]",1474.94,{},177165,0,Africa +2023-10-21,72290,4963,"[""Keyboard"", ""Wireless Mouse""]",408.39,{},242142,0,Europe +2023-10-06,72291,7234,"[""Charger"", ""Laptop""]",3893.2,"{""promo"": ""29%""}",216926,0,Africa +2023-08-20,72292,1678,"[""Monitor"", ""Headphones"", ""Laptop""]",1104.16,"{""seasonal"": ""6%""}",106032,0,Asia +2024-07-05,72293,749,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3258.35,{},27450,0,Europe +2024-09-05,72294,6822,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2038.99,"{""seasonal"": ""12%""}",47235,0,Africa +2024-03-19,72295,9000,"[""Tablet""]",2771.74,{},157558,1,Asia +2023-11-04,72296,4108,"[""Tablet"", ""Laptop""]",1340.43,{},71098,1,Asia +2023-12-19,72297,1248,"[""Tablet"", ""Phone"", ""Laptop""]",2293.44,{},11024,1,Europe +2024-03-08,72298,1763,"[""Keyboard"", ""Tablet""]",619.83,"{"""": ""21%""}",150910,1,North America +2024-03-15,72299,8850,"[""Phone"", ""Charger"", ""Laptop""]",2292.04,{},219750,0,Europe +2023-12-30,72300,6656,"[""Phone"", ""Keyboard"", ""Laptop""]",86.61,"{""promo"": ""21%""}",164726,1,South America +2024-09-18,72301,8822,"[""Headphones""]",2065.64,{},172859,0,South America +2023-10-02,72302,4775,"[""Monitor"", ""Wireless Mouse""]",3326.11,{},193191,0,Asia +2023-02-28,72303,994,"[""Phone"", ""Tablet"", ""Headphones""]",3621.35,"{""loyalty"": ""7%""}",232566,1,Asia +2023-11-28,72304,6522,"[""Tablet"", ""Keyboard"", ""Phone""]",174.0,{},142908,1,North America +2023-12-13,72305,4431,"[""Phone""]",410.45,"{""loyalty"": ""30%""}",10158,1,Europe +2023-03-05,72306,605,"[""Laptop"", ""Phone""]",2782.51,"{""loyalty"": ""15%""}",206127,1,North America +2024-12-29,72307,7422,"[""Monitor"", ""Tablet""]",1090.72,"{""seasonal"": ""26%""}",228459,1,Europe +2023-10-11,72308,2634,"[""Phone"", ""Tablet""]",602.86,"{""loyalty"": ""18%""}",60501,0,Africa +2023-06-21,72309,5245,"[""Phone"", ""Laptop"", ""Keyboard""]",4480.87,{},114969,1,Africa +2023-09-30,72310,796,"[""Charger"", ""Tablet"", ""Headphones""]",2711.11,{},160443,0,Africa +2023-09-25,72311,2832,"[""Charger"", ""Keyboard"", ""Phone""]",359.2,{},90729,0,Asia +2023-09-28,72312,9867,"[""Monitor"", ""Charger""]",856.77,{},249362,1,South America +2023-12-29,72313,2473,"[""Tablet"", ""Monitor"", ""Phone""]",4061.0,"{""promo"": ""14%""}",164759,0,North America +2024-03-05,72314,1949,"[""Monitor""]",3455.38,"{"""": ""28%""}",245235,1,Asia +2024-06-01,72315,9602,"[""Keyboard""]",3587.36,"{"""": ""28%""}",112678,0,North America +2024-04-03,72316,2454,"[""Keyboard"", ""Monitor""]",4915.03,{},147962,0,Africa +2024-07-12,72317,5487,"[""Monitor"", ""Headphones"", ""Phone""]",1547.12,"{""promo"": ""25%""}",47347,1,Asia +2023-11-24,72318,5502,"[""Laptop"", ""Phone"", ""Keyboard""]",4043.54,{},58589,1,Africa +2023-01-13,72319,7070,"[""Monitor""]",1814.91,{},288597,1,North America +2024-02-14,72320,7021,"[""Headphones"", ""Monitor"", ""Keyboard""]",929.1,{},214894,1,North America +2023-11-24,72321,5993,"[""Monitor"", ""Wireless Mouse""]",3509.87,"{""seasonal"": ""5%""}",8459,0,North America +2024-09-09,72322,2964,"[""Charger""]",2438.88,"{""seasonal"": ""19%""}",249209,1,North America +2023-06-30,72323,4126,"[""Keyboard"", ""Monitor""]",4101.47,{},272095,0,South America +2024-06-02,72324,3702,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",124.53,{},143638,0,Asia +2023-07-18,72325,4511,"[""Charger"", ""Monitor""]",1450.46,{},12906,0,Africa +2023-04-09,72326,726,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3579.74,{},148932,0,Africa +2023-03-27,72327,4627,"[""Keyboard""]",706.28,{},208603,0,Asia +2024-07-30,72328,9717,"[""Charger"", ""Laptop""]",791.86,"{""loyalty"": ""7%""}",170411,1,South America +2023-01-22,72329,8318,"[""Keyboard"", ""Charger""]",969.76,{},267897,1,Africa +2024-08-01,72330,4872,"[""Phone"", ""Keyboard"", ""Charger""]",2253.22,"{"""": ""22%""}",171951,1,Europe +2023-11-03,72331,8739,"[""Tablet"", ""Headphones"", ""Charger""]",2788.94,"{""promo"": ""13%""}",235350,1,South America +2024-12-12,72332,7415,"[""Keyboard"", ""Phone"", ""Charger""]",3447.34,{},270967,1,Africa +2024-04-02,72333,6718,"[""Laptop"", ""Headphones"", ""Monitor""]",2815.96,{},57279,1,Europe +2023-01-09,72334,7750,"[""Monitor""]",275.21,{},199799,1,Asia +2024-02-24,72335,7261,"[""Charger""]",920.06,"{"""": ""13%""}",38886,1,North America +2023-01-08,72336,5346,"[""Wireless Mouse""]",2556.23,"{""loyalty"": ""16%""}",29384,0,South America +2023-07-31,72337,9675,"[""Phone"", ""Laptop""]",3886.34,{},233317,0,Africa +2024-01-12,72338,4067,"[""Phone""]",97.92,"{""promo"": ""16%""}",10402,0,Africa +2024-05-02,72339,178,"[""Tablet""]",3631.06,"{"""": ""5%""}",239813,0,Europe +2023-06-28,72340,8495,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1845.79,{},263774,1,South America +2024-10-29,72341,3600,"[""Keyboard""]",3085.47,"{""loyalty"": ""16%""}",251712,0,North America +2023-01-05,72342,6108,"[""Headphones""]",1011.5,{},270461,1,North America +2024-08-04,72343,4282,"[""Wireless Mouse""]",4793.53,"{""loyalty"": ""7%""}",22963,1,South America +2024-10-03,72344,3835,"[""Monitor""]",3361.85,"{""promo"": ""8%""}",46351,1,South America +2023-01-18,72345,1531,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4964.25,{},32683,0,South America +2023-02-23,72346,1483,"[""Monitor""]",906.56,"{""seasonal"": ""16%""}",290092,0,North America +2024-06-02,72347,5715,"[""Charger"", ""Tablet"", ""Monitor""]",1193.11,{},110938,1,North America +2023-08-09,72348,9198,"[""Laptop"", ""Charger"", ""Headphones""]",4528.35,{},41130,1,Asia +2023-04-26,72349,4369,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2973.49,"{""loyalty"": ""11%""}",57685,1,Africa +2024-04-30,72350,8574,"[""Wireless Mouse"", ""Phone""]",3747.82,{},172571,1,North America +2024-09-26,72351,3617,"[""Phone"", ""Monitor""]",1343.9,"{"""": ""24%""}",217429,1,North America +2023-05-18,72352,840,"[""Laptop""]",3700.82,"{"""": ""15%""}",27683,1,Asia +2023-07-13,72353,4731,"[""Wireless Mouse""]",4665.81,"{""promo"": ""30%""}",78974,1,South America +2023-09-07,72354,6153,"[""Phone"", ""Wireless Mouse""]",3703.32,{},176447,1,North America +2023-07-06,72355,420,"[""Headphones""]",4285.1,{},148567,0,Europe +2024-08-09,72356,5411,"[""Tablet""]",1030.44,{},156966,0,North America +2024-03-24,72357,2803,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",662.17,"{""loyalty"": ""29%""}",96493,0,Africa +2024-11-08,72358,1200,"[""Headphones""]",2584.75,"{""seasonal"": ""5%""}",216776,0,North America +2024-01-26,72359,9922,"[""Laptop""]",2043.49,"{"""": ""22%""}",9365,0,Africa +2024-07-12,72360,4736,"[""Monitor""]",74.99,"{""loyalty"": ""8%""}",175885,0,Asia +2023-09-23,72361,9076,"[""Headphones""]",1029.53,"{""seasonal"": ""27%""}",126600,1,South America +2024-02-12,72362,7542,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1268.4,{},90838,1,North America +2024-03-04,72363,5406,"[""Laptop"", ""Tablet"", ""Charger""]",3810.25,"{""promo"": ""15%""}",263925,0,South America +2023-09-20,72364,3770,"[""Monitor""]",4023.77,{},200375,0,Africa +2024-03-12,72365,9801,"[""Charger""]",99.98,"{""seasonal"": ""11%""}",261197,1,Europe +2024-08-09,72366,2089,"[""Headphones"", ""Monitor"", ""Keyboard""]",3604.53,{},105300,0,Africa +2024-08-26,72367,7516,"[""Keyboard"", ""Phone"", ""Monitor""]",1707.03,"{"""": ""9%""}",273821,1,North America +2024-12-08,72368,9969,"[""Monitor"", ""Tablet""]",395.68,"{""seasonal"": ""6%""}",149722,0,Asia +2023-08-01,72369,6318,"[""Tablet"", ""Headphones""]",3807.18,{},189586,1,Europe +2024-03-14,72370,3841,"[""Tablet""]",3242.26,{},212599,0,Europe +2023-03-03,72371,7513,"[""Keyboard"", ""Wireless Mouse""]",2592.17,"{"""": ""6%""}",106830,1,Europe +2024-12-01,72372,7945,"[""Keyboard"", ""Phone""]",1229.62,{},255646,0,Europe +2023-11-18,72373,5200,"[""Phone"", ""Charger""]",3380.26,{},256465,1,South America +2024-04-19,72374,4033,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1440.51,{},87986,0,Asia +2023-04-29,72375,7717,"[""Tablet"", ""Phone""]",2110.26,{},196671,1,Europe +2023-10-15,72376,5220,"[""Headphones""]",418.39,{},97141,1,South America +2023-11-06,72377,3948,"[""Keyboard"", ""Laptop""]",2646.41,{},80492,0,North America +2024-05-07,72378,2526,"[""Monitor""]",3737.22,"{""seasonal"": ""17%""}",275845,1,North America +2024-12-06,72379,6438,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3680.15,"{""loyalty"": ""5%""}",277160,0,Asia +2024-01-05,72380,3644,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4269.18,{},107177,0,Europe +2023-05-03,72381,3844,"[""Laptop"", ""Phone""]",3824.9,{},233566,1,North America +2024-07-09,72382,8040,"[""Headphones"", ""Wireless Mouse""]",4899.4,{},192818,0,Africa +2023-02-06,72383,5286,"[""Keyboard"", ""Monitor""]",350.03,{},5177,1,South America +2024-12-04,72384,4557,"[""Wireless Mouse"", ""Tablet""]",4547.06,{},9036,1,South America +2023-07-26,72385,4334,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2929.41,"{""promo"": ""22%""}",23381,1,Europe +2024-03-17,72386,6268,"[""Tablet"", ""Keyboard"", ""Charger""]",608.4,{},13641,1,North America +2024-01-25,72387,5879,"[""Phone""]",530.61,"{""loyalty"": ""30%""}",291290,0,Europe +2023-09-27,72388,8714,"[""Charger"", ""Keyboard"", ""Tablet""]",2538.26,"{""loyalty"": ""24%""}",89135,0,North America +2023-08-25,72389,3995,"[""Laptop""]",3728.97,{},121112,0,North America +2024-06-21,72390,5001,"[""Charger"", ""Phone"", ""Keyboard""]",421.22,{},213371,0,North America +2023-02-16,72391,5151,"[""Laptop"", ""Monitor"", ""Headphones""]",966.12,"{"""": ""23%""}",8042,0,South America +2023-04-28,72392,256,"[""Tablet"", ""Keyboard""]",2984.1,"{""promo"": ""22%""}",216425,1,South America +2024-01-18,72393,1775,"[""Tablet"", ""Keyboard"", ""Headphones""]",369.31,{},249164,0,North America +2024-08-25,72394,9651,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",369.44,{},124215,0,North America +2024-03-13,72395,2163,"[""Tablet"", ""Monitor"", ""Keyboard""]",1683.95,{},219779,1,North America +2023-07-18,72396,1380,"[""Monitor"", ""Tablet"", ""Charger""]",1571.39,"{"""": ""25%""}",142641,1,North America +2024-06-12,72397,9277,"[""Charger"", ""Headphones"", ""Phone""]",4232.38,"{""seasonal"": ""18%""}",53976,0,South America +2024-07-28,72398,3301,"[""Keyboard"", ""Wireless Mouse""]",4601.0,{},104460,1,South America +2024-05-22,72399,7053,"[""Headphones"", ""Phone""]",221.67,{},120732,1,Africa +2023-04-16,72400,4388,"[""Charger""]",2284.19,{},185884,1,Europe +2024-12-10,72401,4228,"[""Laptop"", ""Keyboard""]",3082.63,{},57185,1,Africa +2024-03-30,72402,5568,"[""Charger""]",3043.95,"{""seasonal"": ""11%""}",186549,0,Africa +2023-11-27,72403,7502,"[""Tablet"", ""Wireless Mouse""]",458.33,{},107624,0,North America +2023-03-11,72404,4376,"[""Wireless Mouse"", ""Phone""]",215.37,{},35048,0,Asia +2023-12-11,72405,358,"[""Laptop"", ""Keyboard""]",2991.18,{},191634,1,North America +2024-11-02,72406,8296,"[""Laptop"", ""Charger"", ""Keyboard""]",2729.09,"{""promo"": ""11%""}",237847,1,Asia +2023-03-17,72407,6797,"[""Monitor"", ""Phone""]",1090.44,"{"""": ""5%""}",169666,1,North America +2024-08-20,72408,1558,"[""Keyboard"", ""Headphones""]",2010.5,{},289979,0,South America +2023-07-21,72409,9510,"[""Charger""]",2093.1,{},139042,1,Europe +2023-03-16,72410,7156,"[""Phone"", ""Headphones""]",4431.37,"{""loyalty"": ""9%""}",188237,0,Asia +2024-06-30,72411,8450,"[""Tablet"", ""Monitor""]",1804.2,"{"""": ""29%""}",34340,1,North America +2023-05-08,72412,7627,"[""Tablet""]",4097.82,"{""loyalty"": ""10%""}",273599,0,Africa +2024-11-30,72413,4673,"[""Phone"", ""Wireless Mouse"", ""Charger""]",918.48,{},188870,1,Asia +2024-10-28,72414,9246,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1234.15,{},245698,1,North America +2023-06-05,72415,2640,"[""Monitor"", ""Phone"", ""Tablet""]",929.06,{},268376,1,Africa +2024-05-16,72416,1550,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4565.3,"{""promo"": ""29%""}",294884,1,Africa +2023-01-04,72417,3728,"[""Laptop"", ""Tablet"", ""Monitor""]",1889.23,{},275220,1,Europe +2024-07-01,72418,3227,"[""Keyboard"", ""Laptop"", ""Charger""]",2743.7,{},194124,1,South America +2023-12-05,72419,4116,"[""Headphones""]",3638.5,{},10783,0,Europe +2024-02-02,72420,7343,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2029.48,{},90311,1,South America +2024-09-15,72421,8694,"[""Wireless Mouse""]",2251.67,"{"""": ""10%""}",89868,1,North America +2023-11-15,72422,6471,"[""Monitor"", ""Charger""]",692.56,"{""seasonal"": ""29%""}",246099,1,South America +2023-07-20,72423,6379,"[""Wireless Mouse""]",1669.07,"{"""": ""25%""}",114790,0,South America +2024-10-13,72424,7684,"[""Monitor""]",4657.81,"{""loyalty"": ""10%""}",92186,0,Europe +2023-03-03,72425,3277,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3230.3,{},7128,0,North America +2023-12-02,72426,5936,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2598.24,"{""loyalty"": ""8%""}",50017,0,Africa +2024-09-01,72427,4238,"[""Tablet"", ""Keyboard""]",2829.35,{},236775,0,North America +2023-12-21,72428,1634,"[""Monitor"", ""Phone""]",4273.98,"{""loyalty"": ""10%""}",97150,1,Africa +2024-01-09,72429,5307,"[""Monitor"", ""Phone"", ""Laptop""]",749.9,{},116579,0,South America +2023-01-03,72430,7782,"[""Keyboard"", ""Charger""]",1222.86,"{""loyalty"": ""27%""}",209301,0,Africa +2024-06-02,72431,3971,"[""Tablet"", ""Laptop"", ""Charger""]",3099.76,"{""seasonal"": ""20%""}",39605,1,South America +2024-11-21,72432,7763,"[""Monitor"", ""Laptop""]",1929.17,"{""promo"": ""18%""}",103564,0,Asia +2023-01-24,72433,4262,"[""Charger"", ""Tablet""]",4341.71,{},141051,1,Asia +2023-10-28,72434,9488,"[""Phone"", ""Charger"", ""Monitor""]",1955.42,"{""promo"": ""7%""}",185748,1,Asia +2023-06-13,72435,6489,"[""Keyboard"", ""Monitor""]",3460.39,{},60773,0,Africa +2024-08-08,72436,8805,"[""Keyboard""]",4467.25,{},80115,1,Asia +2023-04-11,72437,1696,"[""Tablet""]",2940.81,"{""seasonal"": ""23%""}",209646,1,Africa +2024-09-25,72438,7114,"[""Laptop""]",3989.8,{},107579,0,South America +2024-06-01,72439,6316,"[""Wireless Mouse"", ""Keyboard""]",4023.03,{},111347,0,Europe +2023-11-08,72440,2763,"[""Laptop"", ""Charger""]",2524.39,"{""loyalty"": ""24%""}",288308,1,Africa +2024-04-30,72441,9707,"[""Keyboard""]",2159.52,"{""promo"": ""19%""}",21800,1,Asia +2024-09-17,72442,1322,"[""Monitor"", ""Phone"", ""Tablet""]",2165.33,"{""seasonal"": ""12%""}",29288,0,Asia +2024-10-10,72443,9127,"[""Monitor""]",4522.3,"{""seasonal"": ""26%""}",94857,1,North America +2024-07-20,72444,6083,"[""Phone"", ""Charger""]",3888.61,"{"""": ""7%""}",170899,1,Asia +2023-08-13,72445,9671,"[""Headphones""]",4566.57,{},50242,1,North America +2023-12-14,72446,2227,"[""Tablet""]",3702.32,{},99938,0,South America +2024-03-19,72447,5142,"[""Charger""]",3845.06,{},117352,0,North America +2024-10-08,72448,7991,"[""Phone""]",215.36,"{""loyalty"": ""15%""}",131548,1,Europe +2024-03-28,72449,600,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",1844.61,{},215347,0,North America +2024-04-30,72450,8296,"[""Charger"", ""Phone"", ""Headphones""]",2728.97,"{"""": ""9%""}",52977,0,South America +2024-07-13,72451,8243,"[""Keyboard"", ""Charger""]",862.47,"{""seasonal"": ""8%""}",186254,1,South America +2023-07-26,72452,5913,"[""Tablet""]",4594.34,"{""promo"": ""22%""}",9020,0,North America +2023-10-16,72453,8308,"[""Laptop"", ""Charger""]",4164.94,{},77318,1,Europe +2023-04-28,72454,3234,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",956.66,"{""promo"": ""14%""}",12016,1,North America +2023-11-23,72455,4867,"[""Keyboard"", ""Phone"", ""Monitor""]",1235.35,{},197238,0,Europe +2024-01-24,72456,4318,"[""Charger""]",3466.92,"{""promo"": ""23%""}",78490,0,Asia +2024-09-29,72457,1543,"[""Wireless Mouse""]",4977.58,{},248975,1,Europe +2024-10-04,72458,3140,"[""Tablet"", ""Wireless Mouse""]",1546.65,{},159500,1,Europe +2024-02-11,72459,3126,"[""Keyboard"", ""Tablet""]",1570.87,"{""loyalty"": ""27%""}",247663,0,North America +2024-12-25,72460,2507,"[""Tablet""]",3608.26,{},57706,1,North America +2023-07-09,72461,1281,"[""Keyboard""]",195.86,"{"""": ""18%""}",269148,1,Europe +2023-02-12,72462,9190,"[""Charger"", ""Laptop"", ""Phone""]",1876.28,{},55255,1,Europe +2023-12-23,72463,771,"[""Laptop"", ""Tablet""]",3040.44,"{""promo"": ""14%""}",279229,0,Africa +2024-05-23,72464,5737,"[""Headphones""]",4534.93,{},59051,0,Asia +2023-01-03,72465,894,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3991.91,{},51886,0,South America +2023-12-06,72466,1454,"[""Tablet"", ""Laptop""]",2996.8,{},250747,1,Asia +2024-12-02,72467,1413,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2717.81,{},91616,0,Asia +2024-01-12,72468,8570,"[""Phone"", ""Laptop""]",4327.19,"{""seasonal"": ""8%""}",1494,1,Africa +2023-09-12,72469,6489,"[""Laptop"", ""Keyboard""]",3887.3,"{""promo"": ""5%""}",255302,0,South America +2023-07-10,72470,8344,"[""Phone"", ""Monitor""]",2917.28,{},178915,0,North America +2024-09-08,72471,741,"[""Tablet"", ""Laptop"", ""Monitor""]",4507.64,"{""seasonal"": ""29%""}",157123,1,Europe +2024-01-29,72472,3853,"[""Keyboard""]",1448.82,"{""promo"": ""21%""}",215147,1,North America +2024-03-30,72473,2738,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3499.64,{},55471,0,Europe +2023-08-24,72474,400,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",573.98,"{""loyalty"": ""15%""}",96867,1,South America +2024-05-24,72475,8401,"[""Tablet"", ""Monitor""]",72.49,"{""promo"": ""12%""}",123858,1,North America +2023-03-23,72476,3916,"[""Keyboard"", ""Phone"", ""Charger""]",2744.24,{},233728,0,Asia +2023-07-25,72477,7428,"[""Tablet"", ""Laptop""]",4051.3,{},105224,1,North America +2023-04-05,72478,6147,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3067.39,{},189474,0,Asia +2023-11-22,72479,9302,"[""Laptop""]",4678.07,{},142642,1,North America +2024-07-30,72480,8872,"[""Tablet"", ""Headphones"", ""Laptop""]",4629.29,"{""loyalty"": ""14%""}",205846,1,Asia +2023-12-24,72481,4837,"[""Charger"", ""Laptop""]",4947.21,{},256918,0,South America +2023-01-25,72482,7834,"[""Wireless Mouse"", ""Laptop""]",3912.57,"{""loyalty"": ""14%""}",203546,0,Europe +2023-09-26,72483,4960,"[""Monitor"", ""Keyboard"", ""Phone""]",1814.69,"{""loyalty"": ""15%""}",229120,1,South America +2023-12-28,72484,7573,"[""Laptop"", ""Tablet""]",4159.24,{},49589,1,Africa +2023-02-07,72485,982,"[""Phone"", ""Charger"", ""Monitor""]",2862.12,"{"""": ""20%""}",74414,0,Asia +2024-03-04,72486,4727,"[""Charger"", ""Headphones"", ""Keyboard""]",2146.76,{},277672,1,Asia +2023-04-29,72487,6477,"[""Monitor"", ""Phone"", ""Headphones""]",1086.94,{},12354,1,North America +2024-11-13,72488,9367,"[""Charger""]",3187.56,{},6876,0,Europe +2024-07-31,72489,9228,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4308.73,"{""loyalty"": ""18%""}",180562,1,Europe +2023-04-23,72490,3562,"[""Keyboard""]",4021.04,"{""loyalty"": ""29%""}",46247,1,North America +2024-05-04,72491,2280,"[""Phone"", ""Tablet"", ""Monitor""]",3584.58,{},208676,0,North America +2024-01-25,72492,7721,"[""Laptop""]",522.6,"{""promo"": ""10%""}",148693,1,Asia +2024-03-14,72493,6900,"[""Laptop"", ""Monitor""]",2093.91,{},60790,1,Europe +2023-03-09,72494,7146,"[""Wireless Mouse"", ""Headphones""]",4152.48,"{"""": ""24%""}",160521,0,North America +2024-03-05,72495,7462,"[""Monitor"", ""Wireless Mouse""]",2573.97,{},92411,0,North America +2024-10-19,72496,5773,"[""Monitor""]",2861.34,"{""loyalty"": ""18%""}",90409,0,North America +2023-11-01,72497,2994,"[""Phone"", ""Keyboard""]",952.92,"{""promo"": ""17%""}",155163,1,North America +2023-06-29,72498,1510,"[""Charger""]",4396.52,"{""promo"": ""16%""}",267823,0,Asia +2023-08-15,72499,3121,"[""Tablet""]",2211.12,{},275108,0,Africa +2024-08-21,72500,6347,"[""Tablet"", ""Charger""]",2558.77,"{""loyalty"": ""7%""}",117840,1,Asia +2023-03-14,72501,7562,"[""Keyboard""]",1403.62,{},63044,1,Europe +2023-07-16,72502,6612,"[""Charger""]",1629.89,"{""seasonal"": ""24%""}",50699,0,Asia +2023-10-08,72503,5124,"[""Tablet"", ""Keyboard""]",755.07,"{""loyalty"": ""7%""}",43997,0,South America +2023-01-03,72504,8829,"[""Charger"", ""Keyboard"", ""Phone""]",2325.78,{},296168,0,Africa +2024-08-13,72505,3430,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1688.7,{},177764,1,Europe +2023-02-10,72506,8759,"[""Monitor""]",3672.7,{},35693,1,Asia +2023-09-23,72507,1198,"[""Charger"", ""Keyboard"", ""Tablet""]",2087.27,"{""seasonal"": ""24%""}",157524,1,Africa +2023-05-23,72508,8665,"[""Monitor""]",251.96,"{""promo"": ""24%""}",105675,1,Asia +2024-07-09,72509,200,"[""Tablet"", ""Phone"", ""Charger""]",1548.56,"{""loyalty"": ""15%""}",240423,1,Europe +2023-05-23,72510,3885,"[""Laptop""]",1677.92,"{""promo"": ""20%""}",87622,1,North America +2024-06-03,72511,7964,"[""Wireless Mouse""]",2226.58,"{""promo"": ""7%""}",120404,1,Europe +2023-08-22,72512,1561,"[""Tablet"", ""Keyboard"", ""Monitor""]",3800.08,{},191236,0,South America +2024-05-13,72513,6373,"[""Monitor"", ""Charger""]",4629.68,"{""loyalty"": ""20%""}",290332,1,Africa +2024-12-11,72514,1584,"[""Tablet""]",374.32,"{""promo"": ""11%""}",242785,1,North America +2024-07-08,72515,3215,"[""Charger""]",4022.55,"{""seasonal"": ""18%""}",8230,0,Asia +2023-06-18,72516,4024,"[""Monitor"", ""Headphones""]",894.13,"{""loyalty"": ""18%""}",251739,1,North America +2024-09-25,72517,9340,"[""Headphones"", ""Laptop"", ""Keyboard""]",2739.13,"{""promo"": ""15%""}",266353,0,North America +2023-05-18,72518,7381,"[""Laptop""]",1059.07,"{""promo"": ""8%""}",260179,1,South America +2024-07-27,72519,1808,"[""Laptop"", ""Charger"", ""Monitor""]",3577.72,"{""promo"": ""5%""}",38338,1,Asia +2024-03-15,72520,8375,"[""Headphones"", ""Tablet"", ""Phone""]",1115.71,"{"""": ""10%""}",62881,1,Asia +2023-09-21,72521,5414,"[""Monitor"", ""Phone"", ""Tablet""]",4078.14,"{""loyalty"": ""10%""}",32534,1,Asia +2023-05-18,72522,8479,"[""Monitor""]",898.98,"{"""": ""8%""}",109720,0,Africa +2024-10-15,72523,9573,"[""Keyboard"", ""Charger"", ""Phone""]",1275.39,{},216497,1,Africa +2024-07-16,72524,3798,"[""Tablet"", ""Phone"", ""Charger""]",163.78,"{"""": ""21%""}",263657,1,North America +2023-03-15,72525,6567,"[""Keyboard"", ""Tablet""]",759.13,"{""seasonal"": ""19%""}",102520,1,North America +2023-08-15,72526,9686,"[""Keyboard"", ""Monitor""]",1928.16,"{""promo"": ""20%""}",12442,0,Asia +2024-03-31,72527,7367,"[""Headphones""]",359.99,{},102576,1,Asia +2023-02-23,72528,3928,"[""Phone"", ""Charger""]",4941.09,{},184058,0,North America +2024-03-06,72529,128,"[""Headphones"", ""Charger"", ""Phone""]",1014.11,{},18767,0,Europe +2024-08-26,72530,2719,"[""Keyboard"", ""Wireless Mouse""]",3052.99,{},60172,1,South America +2024-06-12,72531,7910,"[""Laptop"", ""Keyboard""]",2984.81,{},167509,0,Europe +2023-12-08,72532,2492,"[""Wireless Mouse"", ""Phone""]",1277.2,"{""promo"": ""18%""}",61655,0,Europe +2024-05-14,72533,4765,"[""Headphones"", ""Phone""]",3088.41,"{""loyalty"": ""16%""}",288942,0,Asia +2024-01-26,72534,2741,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",715.41,{},162459,0,Europe +2024-12-06,72535,3200,"[""Laptop"", ""Phone""]",4086.93,{},190726,0,Africa +2023-06-24,72536,8567,"[""Laptop"", ""Tablet"", ""Monitor""]",1949.83,"{""promo"": ""30%""}",153125,0,North America +2024-01-26,72537,6490,"[""Laptop""]",2974.2,{},118196,1,North America +2024-05-19,72538,9539,"[""Phone""]",3551.11,"{""seasonal"": ""27%""}",262322,1,North America +2023-11-12,72539,3373,"[""Laptop"", ""Monitor"", ""Phone""]",267.95,{},236469,1,South America +2023-11-16,72540,8610,"[""Monitor"", ""Laptop"", ""Charger""]",2790.04,{},64489,1,South America +2024-03-06,72541,8535,"[""Wireless Mouse"", ""Headphones""]",2466.82,"{""seasonal"": ""12%""}",132935,0,South America +2024-05-21,72542,7923,"[""Phone""]",4859.13,"{"""": ""18%""}",20205,1,Africa +2024-12-27,72543,3360,"[""Phone""]",3783.32,{},162540,1,South America +2023-05-10,72544,5313,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2347.31,"{"""": ""22%""}",18010,1,North America +2024-04-23,72545,1128,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1355.28,{},234351,0,North America +2024-04-02,72546,1488,"[""Monitor"", ""Charger"", ""Keyboard""]",2326.82,{},165786,1,North America +2023-04-24,72547,9790,"[""Headphones""]",1516.37,"{""promo"": ""17%""}",220209,0,Africa +2023-12-20,72548,440,"[""Tablet""]",3754.38,"{""loyalty"": ""18%""}",10923,0,South America +2024-03-17,72549,5901,"[""Monitor"", ""Wireless Mouse""]",1072.92,{},182711,1,Europe +2023-10-10,72550,2755,"[""Keyboard""]",2779.62,"{"""": ""24%""}",199614,1,North America +2023-03-21,72551,2378,"[""Phone"", ""Wireless Mouse""]",2296.87,{},247909,1,North America +2023-10-29,72552,3361,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2719.48,{},232914,1,Africa +2023-02-12,72553,2506,"[""Wireless Mouse"", ""Charger""]",4928.98,{},155574,1,Asia +2023-10-06,72554,3424,"[""Tablet""]",372.72,"{""seasonal"": ""18%""}",42102,1,Europe +2023-06-26,72555,4718,"[""Monitor""]",3484.31,"{""loyalty"": ""26%""}",31394,0,North America +2024-01-03,72556,9085,"[""Phone""]",1103.66,{},124667,1,Europe +2024-04-09,72557,6150,"[""Wireless Mouse"", ""Tablet""]",4593.43,"{""promo"": ""13%""}",182942,0,Europe +2023-10-27,72558,6800,"[""Tablet"", ""Keyboard""]",1058.21,{},183653,1,North America +2023-03-18,72559,7912,"[""Phone""]",2627.89,{},7985,1,Europe +2023-06-15,72560,2753,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1716.65,{},55261,1,Asia +2024-10-21,72561,2433,"[""Monitor"", ""Laptop"", ""Headphones""]",4026.39,"{""promo"": ""30%""}",7424,1,Asia +2024-07-03,72562,2946,"[""Headphones"", ""Tablet""]",2180.37,{},106021,1,South America +2024-04-12,72563,2779,"[""Monitor"", ""Headphones"", ""Keyboard""]",3324.88,{},69500,1,Africa +2024-12-13,72564,2800,"[""Charger"", ""Laptop""]",3114.3,{},109179,1,South America +2024-03-05,72565,6006,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",885.61,{},44616,1,Africa +2024-06-27,72566,9649,"[""Tablet"", ""Monitor"", ""Laptop""]",3349.9,{},95876,1,South America +2024-02-10,72567,3479,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1528.68,"{"""": ""17%""}",178766,1,South America +2023-05-04,72568,8421,"[""Keyboard"", ""Headphones"", ""Phone""]",842.19,{},278575,1,Europe +2023-02-05,72569,2033,"[""Monitor"", ""Charger""]",1484.71,"{""loyalty"": ""12%""}",24559,0,North America +2023-11-27,72570,8733,"[""Tablet"", ""Wireless Mouse""]",390.49,{},278027,0,North America +2024-12-12,72571,3628,"[""Tablet"", ""Monitor"", ""Phone""]",3361.62,{},265118,1,North America +2024-02-13,72572,7795,"[""Monitor"", ""Phone"", ""Tablet""]",3449.32,"{""seasonal"": ""28%""}",127546,1,Africa +2023-04-30,72573,6885,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1319.2,"{"""": ""5%""}",226928,0,South America +2024-02-02,72574,4891,"[""Keyboard"", ""Laptop""]",4853.45,{},122165,0,Africa +2024-03-17,72575,8344,"[""Headphones""]",1926.39,{},289151,0,South America +2024-01-11,72576,5437,"[""Laptop"", ""Headphones""]",796.47,{},113942,1,South America +2023-12-05,72577,207,"[""Charger""]",2486.58,"{""loyalty"": ""28%""}",114402,0,Africa +2024-09-27,72578,9497,"[""Monitor"", ""Tablet""]",2764.43,"{""promo"": ""13%""}",210238,0,Europe +2024-06-28,72579,9570,"[""Phone"", ""Keyboard"", ""Charger""]",1096.87,{},248951,1,South America +2024-07-26,72580,1704,"[""Keyboard""]",2502.9,{},228631,0,South America +2023-09-06,72581,9978,"[""Headphones""]",684.41,{},106226,0,Europe +2024-06-21,72582,7598,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3458.56,"{"""": ""27%""}",218859,1,North America +2024-02-20,72583,5870,"[""Keyboard""]",3693.32,{},267004,1,Europe +2024-07-16,72584,7457,"[""Laptop"", ""Keyboard""]",2589.62,"{""seasonal"": ""9%""}",122133,1,North America +2024-03-07,72585,3215,"[""Monitor"", ""Wireless Mouse""]",3485.58,{},231922,0,South America +2024-11-27,72586,8268,"[""Headphones"", ""Laptop"", ""Phone""]",3811.09,"{""seasonal"": ""14%""}",33120,0,Europe +2023-11-22,72587,7247,"[""Wireless Mouse""]",3079.38,{},219812,0,South America +2023-03-01,72588,9983,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2844.74,{},284858,1,North America +2024-03-23,72589,1161,"[""Wireless Mouse"", ""Monitor""]",1266.76,"{""loyalty"": ""15%""}",147727,0,North America +2023-06-19,72590,6005,"[""Phone""]",3280.75,{},159345,0,South America +2024-05-07,72591,5447,"[""Charger""]",4544.09,"{""promo"": ""14%""}",230601,1,Asia +2024-04-11,72592,9953,"[""Wireless Mouse""]",1320.39,"{""loyalty"": ""13%""}",40744,1,South America +2024-11-29,72593,4893,"[""Laptop"", ""Phone""]",2224.17,"{""seasonal"": ""6%""}",38846,1,Asia +2024-05-23,72594,1728,"[""Keyboard"", ""Laptop"", ""Charger""]",2769.0,"{""seasonal"": ""26%""}",74448,0,South America +2023-05-09,72595,2913,"[""Phone"", ""Charger"", ""Headphones""]",2448.88,{},108309,1,Asia +2023-12-17,72596,4200,"[""Phone"", ""Tablet""]",4738.54,"{""promo"": ""24%""}",269823,1,Africa +2023-02-14,72597,6410,"[""Tablet""]",114.76,{},256707,1,Asia +2023-05-06,72598,9380,"[""Tablet"", ""Monitor"", ""Phone""]",1544.68,{},87561,1,Europe +2024-07-28,72599,9135,"[""Phone"", ""Charger""]",126.25,"{""seasonal"": ""16%""}",158300,1,Africa +2023-04-03,72600,2132,"[""Tablet"", ""Keyboard"", ""Phone""]",2555.76,"{"""": ""8%""}",149554,0,South America +2023-10-12,72601,3308,"[""Keyboard"", ""Headphones""]",886.03,"{""promo"": ""30%""}",138025,1,South America +2024-11-29,72602,4852,"[""Laptop"", ""Phone""]",1958.55,"{""seasonal"": ""18%""}",206710,1,North America +2023-03-20,72603,8767,"[""Tablet""]",1727.69,"{""loyalty"": ""21%""}",6048,0,Europe +2023-10-08,72604,7976,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1783.12,{},40695,0,Asia +2024-05-14,72605,8065,"[""Monitor""]",4728.01,{},293097,0,South America +2023-01-01,72606,8017,"[""Laptop""]",4406.29,"{"""": ""8%""}",139310,0,North America +2024-12-08,72607,5253,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",216.53,{},162953,1,North America +2024-11-03,72608,8764,"[""Charger"", ""Laptop"", ""Tablet""]",3300.97,"{"""": ""16%""}",186759,0,Africa +2024-08-07,72609,3016,"[""Headphones"", ""Laptop""]",835.98,{},148471,0,Europe +2024-09-18,72610,299,"[""Charger"", ""Keyboard""]",3064.32,"{""loyalty"": ""11%""}",13733,1,North America +2023-07-20,72611,9618,"[""Charger"", ""Laptop""]",364.85,{},105516,0,South America +2023-11-20,72612,4525,"[""Laptop""]",2550.35,"{""promo"": ""21%""}",291743,0,Asia +2023-02-28,72613,3446,"[""Charger""]",3458.24,"{""seasonal"": ""27%""}",229424,0,Africa +2023-03-01,72614,329,"[""Phone""]",679.89,"{""seasonal"": ""16%""}",283695,0,Africa +2024-10-23,72615,9218,"[""Keyboard"", ""Headphones"", ""Charger""]",3051.89,{},97722,0,Asia +2024-03-09,72616,3286,"[""Wireless Mouse"", ""Tablet""]",4429.04,{},267577,0,South America +2023-06-29,72617,4575,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",267.16,{},154271,1,Europe +2023-05-19,72618,7892,"[""Wireless Mouse""]",1284.23,{},89401,0,South America +2024-01-31,72619,208,"[""Laptop"", ""Headphones"", ""Charger""]",254.43,"{""loyalty"": ""26%""}",289977,0,Asia +2024-08-30,72620,7768,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4606.27,{},101409,0,Europe +2024-08-10,72621,193,"[""Wireless Mouse""]",1221.31,{},202669,1,Europe +2023-02-25,72622,4732,"[""Wireless Mouse""]",3718.92,{},282005,0,Asia +2024-12-13,72623,3076,"[""Keyboard"", ""Laptop""]",4283.99,"{""seasonal"": ""12%""}",60193,0,North America +2023-07-15,72624,7950,"[""Charger"", ""Headphones""]",3986.89,"{"""": ""6%""}",146422,1,South America +2024-06-22,72625,1743,"[""Phone""]",2319.44,{},66912,1,Asia +2024-03-24,72626,6386,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4121.94,{},115855,1,South America +2024-01-17,72627,1536,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4442.76,{},8679,0,South America +2024-04-16,72628,1764,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1488.47,"{""seasonal"": ""17%""}",211221,0,South America +2023-10-01,72629,9993,"[""Phone"", ""Tablet"", ""Laptop""]",1662.03,"{""seasonal"": ""12%""}",71563,1,North America +2024-05-30,72630,3680,"[""Phone"", ""Keyboard"", ""Charger""]",4500.2,"{""seasonal"": ""23%""}",11862,1,Asia +2024-01-04,72631,9042,"[""Headphones"", ""Laptop""]",4530.96,{},243949,0,North America +2024-11-01,72632,7178,"[""Monitor""]",4060.82,"{""seasonal"": ""12%""}",256310,1,Europe +2024-04-19,72633,112,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1618.0,{},134527,1,North America +2024-11-09,72634,6009,"[""Laptop"", ""Keyboard""]",3987.58,{},154932,1,South America +2024-03-13,72635,4278,"[""Phone""]",468.96,{},133606,1,North America +2024-04-05,72636,8629,"[""Headphones"", ""Phone""]",1361.99,"{""seasonal"": ""8%""}",116261,1,North America +2024-05-13,72637,2765,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",147.41,"{""seasonal"": ""6%""}",240516,1,Europe +2024-11-06,72638,4487,"[""Wireless Mouse"", ""Charger""]",4079.69,{},104873,1,South America +2024-09-28,72639,8348,"[""Charger"", ""Tablet""]",2374.66,{},263057,1,South America +2023-04-15,72640,6844,"[""Headphones""]",785.92,{},130189,0,Asia +2024-11-07,72641,1810,"[""Charger"", ""Laptop""]",700.82,{},5336,0,Africa +2023-04-15,72642,6060,"[""Tablet""]",599.87,"{""loyalty"": ""28%""}",247148,1,Asia +2023-01-03,72643,9349,"[""Charger""]",2173.05,"{""loyalty"": ""12%""}",43459,1,North America +2023-01-20,72644,8576,"[""Wireless Mouse"", ""Tablet""]",408.3,"{""seasonal"": ""28%""}",81524,0,North America +2023-12-22,72645,9735,"[""Charger"", ""Tablet""]",3666.44,{},68131,0,South America +2024-02-28,72646,1305,"[""Charger""]",4986.45,{},48802,1,Asia +2024-10-24,72647,2009,"[""Keyboard"", ""Charger"", ""Phone""]",2983.13,"{""promo"": ""29%""}",68606,0,Africa +2024-09-26,72648,9508,"[""Monitor""]",3489.59,{},97176,0,Africa +2024-03-07,72649,4899,"[""Wireless Mouse"", ""Phone""]",4187.3,{},237039,0,South America +2023-09-29,72650,2439,"[""Charger""]",3243.62,{},221169,1,North America +2024-09-04,72651,5792,"[""Wireless Mouse"", ""Phone""]",1548.25,{},210391,1,Europe +2023-11-20,72652,4582,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1749.59,{},22532,0,Africa +2023-01-08,72653,3083,"[""Tablet"", ""Headphones"", ""Phone""]",1079.31,"{""seasonal"": ""25%""}",247189,1,Europe +2023-10-03,72654,1933,"[""Phone"", ""Laptop"", ""Headphones""]",358.39,{},279343,1,Africa +2023-06-19,72655,9972,"[""Phone"", ""Laptop"", ""Keyboard""]",788.39,{},197116,1,South America +2023-02-06,72656,2025,"[""Phone"", ""Wireless Mouse""]",4297.75,{},32967,1,South America +2023-12-25,72657,8880,"[""Laptop"", ""Phone""]",2009.31,{},119360,1,Asia +2024-11-23,72658,7901,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1213.84,"{""loyalty"": ""16%""}",254142,0,Europe +2024-12-18,72659,3195,"[""Phone"", ""Tablet"", ""Headphones""]",3425.53,"{""loyalty"": ""26%""}",180135,0,Asia +2023-11-03,72660,1050,"[""Tablet""]",4636.52,{},175934,1,Asia +2023-09-03,72661,4504,"[""Keyboard""]",4104.29,"{"""": ""25%""}",145288,0,Africa +2024-06-16,72662,427,"[""Headphones"", ""Wireless Mouse""]",1418.27,{},19991,1,North America +2024-07-07,72663,6988,"[""Charger"", ""Headphones""]",1628.85,"{"""": ""12%""}",99430,0,Africa +2023-02-18,72664,9507,"[""Charger"", ""Wireless Mouse"", ""Phone""]",3413.56,"{""loyalty"": ""30%""}",146376,0,Europe +2023-10-02,72665,3704,"[""Headphones"", ""Monitor""]",1511.89,"{""promo"": ""25%""}",140769,1,Africa +2023-09-13,72666,22,"[""Wireless Mouse"", ""Headphones""]",1740.28,{},232481,0,Europe +2023-07-23,72667,2458,"[""Keyboard"", ""Monitor""]",1540.05,{},42507,0,Europe +2023-12-12,72668,4083,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4900.22,{},13199,0,Europe +2024-06-04,72669,3487,"[""Tablet""]",1742.47,"{""promo"": ""7%""}",42902,1,Asia +2023-08-16,72670,242,"[""Tablet""]",736.52,{},268127,0,South America +2024-05-13,72671,7421,"[""Phone"", ""Monitor""]",3675.26,{},5389,0,Europe +2023-02-08,72672,3431,"[""Tablet""]",2920.0,{},46677,0,Europe +2023-09-27,72673,9996,"[""Keyboard""]",4227.45,{},156720,0,South America +2024-12-16,72674,558,"[""Monitor""]",2066.2,"{"""": ""9%""}",120627,1,Africa +2023-05-13,72675,6028,"[""Keyboard""]",2483.04,"{""promo"": ""27%""}",179778,0,North America +2023-12-21,72676,5364,"[""Charger"", ""Laptop"", ""Tablet""]",3014.93,"{""seasonal"": ""27%""}",262457,0,North America +2023-08-13,72677,5224,"[""Keyboard"", ""Monitor""]",3420.52,"{""seasonal"": ""20%""}",213736,1,South America +2023-12-02,72678,2938,"[""Wireless Mouse"", ""Phone""]",610.1,{},94166,0,Africa +2023-09-07,72679,9208,"[""Tablet"", ""Phone"", ""Headphones""]",3122.93,{},112432,1,Africa +2024-11-14,72680,4218,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",162.55,{},285630,1,Europe +2024-08-09,72681,9742,"[""Wireless Mouse""]",668.14,{},16050,1,Europe +2023-05-03,72682,5640,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4992.6,{},192665,1,Asia +2024-09-07,72683,3143,"[""Phone"", ""Headphones""]",1508.89,{},123330,1,Africa +2023-02-26,72684,554,"[""Monitor"", ""Keyboard"", ""Laptop""]",2950.53,{},125959,1,South America +2024-08-04,72685,7274,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4417.85,{},120514,0,North America +2024-12-12,72686,1142,"[""Charger"", ""Monitor"", ""Keyboard""]",2087.07,{},60451,0,Africa +2023-04-15,72687,862,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4980.41,"{""loyalty"": ""15%""}",24957,1,North America +2023-03-24,72688,6331,"[""Tablet""]",4015.1,"{"""": ""8%""}",293747,0,North America +2023-04-14,72689,1832,"[""Tablet""]",3221.17,"{""loyalty"": ""15%""}",83519,1,North America +2023-04-27,72690,429,"[""Headphones"", ""Laptop"", ""Charger""]",3675.34,{},211374,1,South America +2023-12-14,72691,174,"[""Tablet"", ""Phone"", ""Headphones""]",3562.1,"{""promo"": ""26%""}",158602,1,South America +2023-05-30,72692,7231,"[""Keyboard""]",725.77,"{""promo"": ""26%""}",49564,0,North America +2024-03-24,72693,5032,"[""Charger""]",4544.94,{},83530,0,Asia +2024-10-23,72694,3891,"[""Wireless Mouse"", ""Tablet""]",1046.97,{},190624,0,Africa +2024-07-09,72695,5477,"[""Keyboard"", ""Charger"", ""Phone""]",4667.25,{},177124,1,North America +2023-11-23,72696,8743,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1258.22,"{""promo"": ""15%""}",111707,1,Europe +2024-12-08,72697,3310,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2138.36,"{"""": ""26%""}",10653,0,Africa +2023-11-19,72698,3351,"[""Tablet""]",3881.84,"{""promo"": ""22%""}",220540,0,Asia +2024-06-08,72699,3701,"[""Headphones"", ""Laptop"", ""Tablet""]",1044.52,"{"""": ""5%""}",228414,0,South America +2024-11-19,72700,8725,"[""Charger"", ""Tablet""]",1237.07,{},213407,0,Africa +2024-09-19,72701,4651,"[""Monitor"", ""Keyboard""]",258.42,{},24940,0,Africa +2023-12-01,72702,3828,"[""Wireless Mouse""]",2243.26,"{"""": ""30%""}",249335,1,Europe +2024-02-16,72703,595,"[""Charger""]",4881.18,{},286256,0,Europe +2023-11-21,72704,1151,"[""Charger""]",4377.01,"{"""": ""11%""}",202445,0,Africa +2023-06-21,72705,8545,"[""Charger""]",2376.03,"{""seasonal"": ""9%""}",15604,1,Europe +2024-06-28,72706,9476,"[""Charger""]",3559.5,"{""promo"": ""15%""}",47178,0,South America +2024-11-08,72707,8257,"[""Tablet"", ""Laptop"", ""Headphones""]",4422.7,{},271321,0,Europe +2023-04-18,72708,5963,"[""Charger""]",4151.75,"{""promo"": ""9%""}",145652,0,North America +2023-08-01,72709,466,"[""Monitor"", ""Laptop""]",4806.18,"{""loyalty"": ""20%""}",167063,0,Africa +2024-01-10,72710,6104,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",819.62,{},44206,0,Africa +2023-01-02,72711,1352,"[""Tablet""]",3175.85,"{""promo"": ""6%""}",190431,0,South America +2024-05-28,72712,4293,"[""Laptop"", ""Headphones""]",207.35,{},92251,1,Africa +2023-05-01,72713,3465,"[""Tablet"", ""Monitor""]",2666.89,{},93738,1,Africa +2024-05-30,72714,1193,"[""Monitor"", ""Tablet""]",4845.81,"{""promo"": ""30%""}",67288,1,South America +2023-08-01,72715,5777,"[""Headphones""]",2330.23,{},141319,0,South America +2024-05-15,72716,542,"[""Laptop""]",3040.65,{},239680,1,Europe +2023-09-16,72717,6181,"[""Charger"", ""Wireless Mouse""]",692.5,{},282442,0,Asia +2024-02-07,72718,412,"[""Laptop"", ""Tablet"", ""Keyboard""]",892.45,"{""promo"": ""30%""}",136662,1,Asia +2023-02-12,72719,2449,"[""Charger""]",3664.3,{},51196,0,Europe +2024-09-03,72720,5900,"[""Laptop"", ""Tablet""]",1321.07,{},234539,0,North America +2023-05-25,72721,9050,"[""Wireless Mouse"", ""Charger""]",2843.41,{},139550,1,Europe +2024-04-10,72722,1326,"[""Phone""]",1217.68,{},260996,1,Africa +2024-01-07,72723,2051,"[""Keyboard"", ""Wireless Mouse""]",2890.44,{},55320,1,Europe +2024-05-12,72724,9798,"[""Headphones"", ""Monitor""]",753.04,"{""promo"": ""19%""}",101986,0,Asia +2024-08-24,72725,9223,"[""Laptop"", ""Charger""]",4210.63,{},157354,1,South America +2023-05-21,72726,3344,"[""Phone""]",2312.11,{},172810,1,Africa +2023-05-16,72727,5520,"[""Phone"", ""Charger""]",639.1,{},14495,1,Asia +2024-06-14,72728,5924,"[""Charger"", ""Keyboard"", ""Tablet""]",1093.55,"{"""": ""25%""}",161527,1,South America +2024-10-10,72729,1793,"[""Charger""]",3194.1,{},248418,1,South America +2023-05-19,72730,7777,"[""Keyboard"", ""Headphones""]",2738.91,"{""seasonal"": ""21%""}",12645,1,North America +2024-06-16,72731,8921,"[""Charger"", ""Wireless Mouse""]",3947.74,"{""promo"": ""14%""}",53978,0,Asia +2023-04-10,72732,4345,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3503.05,"{""seasonal"": ""25%""}",131432,1,North America +2023-02-27,72733,6747,"[""Charger"", ""Phone""]",4838.79,{},69617,1,Europe +2023-04-02,72734,5951,"[""Charger""]",860.61,{},58272,1,Asia +2024-05-12,72735,3941,"[""Headphones""]",3523.03,{},169400,1,Asia +2024-08-23,72736,2163,"[""Monitor"", ""Laptop""]",4297.69,"{""promo"": ""27%""}",285429,0,Africa +2024-04-01,72737,9453,"[""Phone"", ""Keyboard"", ""Headphones""]",2454.99,"{"""": ""28%""}",71569,0,Europe +2023-02-11,72738,6489,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3519.81,{},188201,1,Asia +2024-12-16,72739,1759,"[""Laptop"", ""Wireless Mouse""]",3034.36,"{""promo"": ""30%""}",272407,1,Asia +2024-05-11,72740,6686,"[""Monitor""]",3915.94,"{""seasonal"": ""20%""}",275737,1,South America +2023-08-27,72741,6478,"[""Laptop"", ""Monitor""]",1764.35,{},109286,0,Africa +2023-10-16,72742,1569,"[""Monitor"", ""Tablet"", ""Charger""]",2368.71,"{""seasonal"": ""12%""}",83039,1,Europe +2023-08-14,72743,7095,"[""Headphones"", ""Keyboard"", ""Phone""]",779.51,{},283130,1,Africa +2023-10-03,72744,8971,"[""Tablet"", ""Monitor""]",467.46,{},25027,0,North America +2024-12-07,72745,9006,"[""Keyboard"", ""Phone""]",4935.95,"{""seasonal"": ""5%""}",295578,0,Africa +2024-09-19,72746,4639,"[""Monitor"", ""Headphones"", ""Keyboard""]",2370.06,{},197365,0,South America +2024-12-29,72747,8889,"[""Keyboard""]",320.03,"{"""": ""7%""}",166746,0,North America +2024-04-30,72748,5552,"[""Phone"", ""Monitor"", ""Charger""]",2993.22,"{"""": ""11%""}",108711,1,Asia +2024-12-18,72749,83,"[""Keyboard""]",1300.19,{},6662,0,South America +2023-01-30,72750,3366,"[""Phone"", ""Laptop""]",1118.88,"{""loyalty"": ""11%""}",24046,1,Africa +2024-06-19,72751,9106,"[""Keyboard"", ""Headphones"", ""Laptop""]",52.71,{},293074,1,Asia +2023-05-14,72752,9249,"[""Tablet"", ""Laptop""]",3819.36,"{""loyalty"": ""14%""}",201598,1,Asia +2023-03-06,72753,241,"[""Laptop"", ""Tablet""]",1027.93,{},38067,1,North America +2024-01-24,72754,6226,"[""Tablet""]",3733.39,"{"""": ""7%""}",186483,0,South America +2024-10-11,72755,102,"[""Charger"", ""Monitor"", ""Headphones""]",50.74,{},55429,1,South America +2023-02-06,72756,7248,"[""Tablet""]",1270.06,"{""loyalty"": ""29%""}",17385,0,Europe +2023-08-30,72757,6733,"[""Tablet""]",852.93,"{""promo"": ""9%""}",254334,1,Africa +2023-06-26,72758,5496,"[""Headphones"", ""Wireless Mouse""]",4126.92,{},180765,1,Europe +2024-07-24,72759,7994,"[""Laptop""]",3099.72,"{"""": ""11%""}",211214,1,North America +2024-01-05,72760,2553,"[""Charger""]",646.59,"{""loyalty"": ""25%""}",279569,0,Europe +2024-06-20,72761,3691,"[""Monitor"", ""Keyboard"", ""Charger""]",714.86,{},95516,0,South America +2023-06-08,72762,3409,"[""Tablet"", ""Wireless Mouse""]",3656.54,"{"""": ""8%""}",58551,1,North America +2024-06-07,72763,4596,"[""Wireless Mouse"", ""Charger""]",2692.1,{},159009,1,Europe +2023-02-05,72764,6079,"[""Monitor"", ""Phone"", ""Laptop""]",2305.5,{},69995,0,Europe +2024-04-29,72765,8980,"[""Tablet"", ""Wireless Mouse""]",3354.86,"{""seasonal"": ""22%""}",175136,1,Europe +2024-11-06,72766,7346,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4691.45,"{"""": ""10%""}",199996,1,North America +2024-03-15,72767,2727,"[""Charger""]",743.94,{},140784,1,South America +2023-10-03,72768,2944,"[""Wireless Mouse"", ""Charger""]",3482.38,{},178649,0,Asia +2024-02-12,72769,2575,"[""Tablet""]",1548.39,{},10289,0,Asia +2024-03-16,72770,6848,"[""Charger"", ""Laptop""]",4164.95,{},283424,0,North America +2024-08-18,72771,6217,"[""Phone""]",3821.76,"{""loyalty"": ""17%""}",182403,0,Europe +2023-06-20,72772,4843,"[""Tablet""]",4581.89,"{"""": ""21%""}",240973,0,Europe +2023-07-30,72773,6882,"[""Keyboard"", ""Phone"", ""Charger""]",2855.75,{},271330,0,South America +2023-05-24,72774,1301,"[""Monitor"", ""Phone"", ""Keyboard""]",2854.44,"{"""": ""6%""}",193960,1,South America +2023-11-08,72775,5659,"[""Wireless Mouse"", ""Charger""]",4872.74,"{"""": ""16%""}",125505,1,Asia +2024-08-17,72776,6040,"[""Monitor"", ""Charger""]",4050.51,{},209682,1,Europe +2023-02-24,72777,5185,"[""Phone"", ""Monitor""]",2923.46,"{""promo"": ""10%""}",190790,1,South America +2023-02-20,72778,3178,"[""Tablet""]",3644.0,"{""loyalty"": ""11%""}",174805,0,North America +2023-12-23,72779,8077,"[""Monitor"", ""Tablet"", ""Phone""]",3751.42,{},34462,0,Africa +2023-04-07,72780,1557,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",592.75,"{"""": ""22%""}",127364,1,Asia +2024-05-22,72781,1126,"[""Tablet"", ""Monitor"", ""Phone""]",2900.71,"{"""": ""10%""}",211567,1,South America +2023-03-14,72782,7826,"[""Tablet""]",3884.15,"{""seasonal"": ""25%""}",148668,1,North America +2024-02-01,72783,1205,"[""Monitor""]",739.26,{},272552,0,South America +2024-12-16,72784,8051,"[""Wireless Mouse"", ""Keyboard""]",4659.59,"{"""": ""17%""}",47109,0,Asia +2023-07-28,72785,9675,"[""Tablet"", ""Phone"", ""Laptop""]",2255.23,"{"""": ""26%""}",41095,1,Europe +2024-11-19,72786,5613,"[""Phone"", ""Tablet""]",4462.52,"{""loyalty"": ""10%""}",287444,1,Europe +2024-07-24,72787,5881,"[""Phone"", ""Tablet"", ""Monitor""]",4358.25,{},208380,1,Africa +2023-01-31,72788,141,"[""Charger"", ""Tablet""]",2457.38,"{""seasonal"": ""21%""}",52872,1,Africa +2023-09-27,72789,6741,"[""Monitor""]",1993.08,{},5725,0,Europe +2024-07-05,72790,7868,"[""Charger"", ""Laptop""]",4674.07,{},215760,1,South America +2023-02-03,72791,4822,"[""Tablet"", ""Charger""]",745.7,"{""promo"": ""13%""}",134651,1,Africa +2024-09-18,72792,5717,"[""Tablet""]",1606.38,"{""seasonal"": ""23%""}",104720,1,Asia +2023-04-21,72793,2958,"[""Tablet"", ""Monitor"", ""Phone""]",3970.35,"{"""": ""5%""}",89727,1,Europe +2023-10-12,72794,4088,"[""Laptop"", ""Keyboard"", ""Charger""]",1578.23,"{"""": ""15%""}",235162,0,Africa +2024-09-22,72795,7366,"[""Tablet"", ""Laptop""]",2021.85,{},28841,0,Europe +2023-02-26,72796,1293,"[""Headphones"", ""Phone"", ""Monitor""]",3306.74,"{""seasonal"": ""26%""}",212282,0,Asia +2024-10-11,72797,5724,"[""Laptop"", ""Headphones"", ""Phone""]",1103.0,{},126473,0,Africa +2023-12-14,72798,28,"[""Charger"", ""Headphones""]",4264.65,{},249134,0,North America +2024-03-21,72799,1365,"[""Phone"", ""Headphones""]",2596.53,"{"""": ""28%""}",275850,1,Europe +2023-05-19,72800,1688,"[""Headphones""]",2576.84,"{""seasonal"": ""23%""}",183439,0,Asia +2023-07-13,72801,1708,"[""Phone""]",1891.63,{},63659,0,South America +2024-11-22,72802,7456,"[""Laptop""]",2758.73,{},173503,1,Africa +2024-03-27,72803,7732,"[""Wireless Mouse"", ""Headphones""]",804.82,{},276934,0,North America +2024-10-09,72804,1567,"[""Phone""]",268.4,{},192537,1,Asia +2024-07-19,72805,7570,"[""Phone""]",4701.9,{},76706,0,Europe +2023-07-13,72806,4611,"[""Wireless Mouse"", ""Phone""]",4766.97,{},77911,1,Africa +2024-04-19,72807,7000,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4465.92,"{""seasonal"": ""29%""}",207084,1,South America +2024-01-01,72808,4240,"[""Keyboard"", ""Charger""]",4863.55,"{""loyalty"": ""5%""}",153436,1,Africa +2024-06-27,72809,2111,"[""Tablet""]",3362.84,{},217913,1,Asia +2024-07-13,72810,841,"[""Headphones"", ""Laptop"", ""Keyboard""]",2430.98,{},32589,1,Africa +2023-10-14,72811,7636,"[""Charger"", ""Wireless Mouse""]",2910.28,"{""loyalty"": ""22%""}",146182,1,Africa +2023-05-08,72812,498,"[""Laptop"", ""Tablet"", ""Headphones""]",1723.76,"{""seasonal"": ""13%""}",214817,1,Africa +2023-04-29,72813,8518,"[""Monitor""]",4592.07,{},299288,0,North America +2023-01-24,72814,3228,"[""Headphones"", ""Tablet"", ""Monitor""]",586.54,{},86934,0,Europe +2023-05-30,72815,981,"[""Laptop""]",2941.28,{},201528,0,Africa +2023-08-29,72816,7513,"[""Keyboard""]",2304.98,{},81404,0,Africa +2023-12-26,72817,1271,"[""Laptop""]",1919.85,{},117105,1,Africa +2024-04-23,72818,1905,"[""Monitor"", ""Headphones"", ""Laptop""]",3989.94,{},207572,1,Europe +2023-02-08,72819,9038,"[""Wireless Mouse""]",4674.55,"{""seasonal"": ""12%""}",108145,1,Europe +2024-06-14,72820,6749,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4817.53,{},98846,1,Asia +2023-11-27,72821,72,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4423.89,{},279960,0,South America +2023-04-08,72822,6442,"[""Monitor"", ""Keyboard""]",1036.59,"{"""": ""29%""}",179465,0,North America +2024-12-26,72823,1818,"[""Keyboard"", ""Laptop"", ""Phone""]",4419.04,{},180562,1,North America +2023-07-23,72824,8313,"[""Tablet"", ""Phone"", ""Laptop""]",4499.02,"{""seasonal"": ""12%""}",67676,0,Asia +2023-08-05,72825,9193,"[""Monitor""]",860.59,"{""promo"": ""7%""}",281332,0,Africa +2023-04-16,72826,7193,"[""Keyboard""]",1391.39,{},172497,0,Africa +2024-08-28,72827,564,"[""Charger""]",1247.38,{},90854,1,Europe +2023-03-02,72828,3357,"[""Monitor"", ""Headphones"", ""Charger""]",3411.1,"{""seasonal"": ""26%""}",48432,0,Africa +2024-11-10,72829,2782,"[""Charger"", ""Phone""]",2464.11,"{"""": ""8%""}",226342,0,Africa +2023-01-31,72830,6228,"[""Phone"", ""Keyboard""]",4545.07,"{""promo"": ""18%""}",299738,1,South America +2024-07-24,72831,3334,"[""Charger""]",440.48,"{""loyalty"": ""17%""}",154944,1,South America +2024-08-19,72832,2463,"[""Headphones"", ""Phone"", ""Monitor""]",100.86,{},45756,0,Africa +2023-04-28,72833,9267,"[""Headphones"", ""Tablet""]",4043.03,"{""promo"": ""19%""}",183064,0,Asia +2023-12-15,72834,8865,"[""Monitor""]",3017.06,{},262227,0,North America +2023-11-29,72835,8723,"[""Monitor"", ""Keyboard"", ""Charger""]",4178.65,"{""promo"": ""26%""}",163138,1,South America +2023-01-21,72836,3391,"[""Charger"", ""Phone""]",4571.05,"{""seasonal"": ""29%""}",84680,0,South America +2024-09-17,72837,9515,"[""Tablet""]",2783.89,"{"""": ""10%""}",64160,0,North America +2024-10-07,72838,8847,"[""Laptop""]",1555.91,"{""seasonal"": ""13%""}",275877,1,Asia +2023-04-12,72839,8412,"[""Keyboard""]",3420.26,"{"""": ""6%""}",294610,0,Europe +2024-05-10,72840,8893,"[""Headphones""]",2097.8,"{""seasonal"": ""18%""}",278785,0,South America +2024-01-21,72841,4690,"[""Tablet""]",3670.81,{},254159,0,Asia +2023-07-26,72842,658,"[""Phone""]",2854.11,{},268723,0,South America +2023-08-06,72843,9,"[""Phone""]",1855.04,"{""loyalty"": ""11%""}",288821,1,Europe +2023-04-01,72844,9926,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4212.8,"{""seasonal"": ""23%""}",53872,1,South America +2023-10-04,72845,5480,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4224.22,"{""loyalty"": ""10%""}",122484,1,North America +2024-01-27,72846,198,"[""Monitor"", ""Tablet""]",4465.4,{},54649,0,Africa +2024-10-21,72847,2453,"[""Charger""]",870.0,{},207132,1,North America +2023-09-23,72848,1957,"[""Charger""]",4740.06,{},152440,1,North America +2023-02-09,72849,3475,"[""Monitor""]",142.59,{},114608,1,Asia +2024-07-22,72850,7330,"[""Wireless Mouse""]",2751.54,{},178801,0,Europe +2023-05-27,72851,6982,"[""Tablet""]",1202.38,{},149343,0,North America +2023-05-26,72852,9743,"[""Headphones""]",2418.53,{},264705,0,Asia +2024-07-29,72853,8909,"[""Headphones"", ""Monitor""]",2413.98,"{""loyalty"": ""27%""}",90223,1,North America +2023-08-06,72854,2931,"[""Charger"", ""Headphones""]",2388.94,"{""promo"": ""6%""}",98097,0,North America +2024-07-15,72855,2405,"[""Tablet"", ""Phone""]",1134.3,{},136692,1,Asia +2024-11-19,72856,330,"[""Charger""]",1838.15,{},162106,0,North America +2023-11-19,72857,5433,"[""Tablet"", ""Laptop"", ""Monitor""]",2733.59,"{""promo"": ""6%""}",139305,1,Africa +2023-01-27,72858,6243,"[""Keyboard"", ""Monitor""]",2752.05,"{""loyalty"": ""10%""}",159844,0,South America +2023-08-10,72859,2417,"[""Charger"", ""Monitor"", ""Phone""]",4821.38,"{"""": ""13%""}",122004,0,South America +2023-12-21,72860,46,"[""Wireless Mouse"", ""Phone"", ""Charger""]",849.24,"{""loyalty"": ""7%""}",231882,0,South America +2024-07-31,72861,8224,"[""Keyboard"", ""Phone""]",523.95,{},77002,1,Africa +2024-08-02,72862,8819,"[""Headphones"", ""Tablet""]",2089.71,{},294438,1,Asia +2023-11-16,72863,717,"[""Laptop"", ""Headphones""]",4512.23,{},12728,0,Asia +2023-01-26,72864,1504,"[""Tablet"", ""Monitor"", ""Charger""]",4798.23,"{""seasonal"": ""28%""}",280298,1,Africa +2024-01-24,72865,3967,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1784.86,{},196077,1,Africa +2023-01-06,72866,8574,"[""Monitor""]",4747.7,{},57979,0,Europe +2023-07-13,72867,9792,"[""Tablet""]",2793.79,{},134074,1,North America +2024-09-22,72868,7704,"[""Phone""]",1247.29,"{""loyalty"": ""7%""}",5083,0,Europe +2024-08-15,72869,3206,"[""Charger"", ""Tablet""]",3985.96,{},205956,1,Africa +2024-12-30,72870,5795,"[""Phone"", ""Wireless Mouse""]",2590.61,"{""promo"": ""5%""}",32541,0,North America +2023-10-07,72871,272,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",924.69,"{""loyalty"": ""29%""}",71689,1,North America +2024-06-03,72872,4433,"[""Monitor"", ""Keyboard""]",2118.32,"{""loyalty"": ""25%""}",275213,0,Asia +2023-01-04,72873,8637,"[""Laptop"", ""Wireless Mouse""]",1226.35,{},191171,1,Africa +2023-10-21,72874,975,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1047.27,"{""promo"": ""6%""}",240767,0,Asia +2024-07-11,72875,658,"[""Phone""]",2864.73,{},106057,1,Asia +2023-05-26,72876,5606,"[""Charger""]",4038.19,{},254615,0,South America +2024-02-05,72877,1208,"[""Laptop"", ""Tablet"", ""Keyboard""]",1973.23,"{""promo"": ""14%""}",261142,1,South America +2024-08-26,72878,2760,"[""Laptop""]",92.25,{},52440,0,North America +2024-01-08,72879,1159,"[""Tablet""]",3526.48,{},5000,1,Africa +2024-10-05,72880,8666,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1482.0,"{""seasonal"": ""30%""}",286950,1,Africa +2024-05-12,72881,1472,"[""Phone"", ""Headphones"", ""Keyboard""]",3520.47,"{"""": ""24%""}",2132,1,Europe +2024-07-06,72882,3405,"[""Headphones"", ""Phone""]",1548.63,{},119326,0,Asia +2023-03-07,72883,9009,"[""Keyboard""]",4540.34,"{"""": ""25%""}",92379,1,South America +2023-12-21,72884,2720,"[""Phone"", ""Charger"", ""Tablet""]",245.17,{},204920,0,Africa +2023-06-04,72885,3145,"[""Charger"", ""Keyboard""]",4873.6,"{"""": ""10%""}",34675,0,Africa +2024-11-23,72886,7618,"[""Tablet""]",363.45,{},218017,0,Africa +2023-01-02,72887,9220,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",437.38,{},52920,0,South America +2023-09-05,72888,1445,"[""Laptop"", ""Phone""]",3449.03,"{""loyalty"": ""20%""}",72049,0,North America +2023-02-12,72889,9926,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2432.66,"{""seasonal"": ""7%""}",142102,1,South America +2023-10-24,72890,9763,"[""Charger""]",1417.3,{},163191,1,Asia +2024-01-21,72891,1128,"[""Laptop""]",145.08,{},109611,0,Europe +2023-11-27,72892,2426,"[""Monitor""]",390.6,{},164697,0,North America +2024-07-23,72893,495,"[""Keyboard"", ""Phone""]",4317.23,"{""promo"": ""26%""}",48657,0,Africa +2023-05-30,72894,4374,"[""Monitor"", ""Charger"", ""Headphones""]",3325.09,"{""seasonal"": ""28%""}",164741,0,South America +2023-11-02,72895,6998,"[""Charger""]",3279.16,"{""promo"": ""22%""}",136039,1,Africa +2024-05-22,72896,760,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1334.54,{},34822,0,North America +2023-04-23,72897,3937,"[""Monitor"", ""Charger""]",3628.28,{},279176,0,South America +2023-09-30,72898,6573,"[""Keyboard"", ""Tablet"", ""Phone""]",3554.95,"{""seasonal"": ""29%""}",155672,0,Africa +2024-03-14,72899,6317,"[""Wireless Mouse""]",1393.5,{},211590,0,Europe +2023-10-24,72900,4482,"[""Monitor"", ""Charger"", ""Tablet""]",4534.08,{},17256,1,Europe +2024-04-14,72901,575,"[""Keyboard""]",3999.3,{},154150,0,North America +2023-08-21,72902,1985,"[""Tablet""]",1317.01,{},273377,1,South America +2024-04-14,72903,6012,"[""Keyboard""]",4803.67,{},86267,1,Europe +2024-02-25,72904,1400,"[""Phone"", ""Charger"", ""Headphones""]",2797.48,{},26726,0,North America +2023-03-16,72905,7361,"[""Headphones"", ""Charger""]",4545.11,{},244849,0,North America +2023-06-18,72906,300,"[""Keyboard"", ""Monitor""]",1871.76,"{""seasonal"": ""24%""}",104958,0,North America +2024-02-02,72907,6375,"[""Laptop""]",139.18,{},123828,1,South America +2024-07-03,72908,2096,"[""Tablet"", ""Monitor""]",2873.68,"{""seasonal"": ""15%""}",280441,0,North America +2023-11-14,72909,7898,"[""Phone""]",4755.16,"{""promo"": ""9%""}",252948,0,Africa +2024-02-21,72910,5836,"[""Monitor""]",4103.99,{},226659,1,Africa +2023-01-15,72911,3826,"[""Wireless Mouse""]",1538.81,"{""loyalty"": ""18%""}",228520,0,Europe +2024-06-16,72912,3700,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1070.36,"{""promo"": ""26%""}",100041,0,North America +2024-06-11,72913,8052,"[""Monitor""]",3575.61,"{""loyalty"": ""7%""}",169657,0,Europe +2024-11-25,72914,2167,"[""Keyboard"", ""Phone"", ""Laptop""]",1897.85,"{""seasonal"": ""27%""}",165222,1,Asia +2024-12-16,72915,6161,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2341.1,"{""promo"": ""13%""}",163625,0,Europe +2023-02-24,72916,6866,"[""Laptop"", ""Charger""]",1757.72,{},152745,0,South America +2024-11-21,72917,492,"[""Wireless Mouse""]",1614.56,{},139408,0,Europe +2024-01-22,72918,1002,"[""Monitor"", ""Laptop""]",178.66,"{""seasonal"": ""17%""}",247181,1,Asia +2024-11-27,72919,3882,"[""Tablet"", ""Laptop""]",1666.31,"{""seasonal"": ""29%""}",117017,0,North America +2023-12-09,72920,5817,"[""Wireless Mouse"", ""Keyboard""]",3130.67,"{"""": ""23%""}",265825,1,Europe +2024-04-09,72921,4857,"[""Monitor""]",1979.79,{},195878,0,South America +2023-06-25,72922,2898,"[""Headphones""]",4034.25,{},212186,0,North America +2023-04-28,72923,8950,"[""Laptop"", ""Tablet""]",130.74,"{""promo"": ""15%""}",155734,0,Africa +2023-06-14,72924,8082,"[""Keyboard"", ""Laptop""]",3264.49,{},209560,0,South America +2023-10-11,72925,6644,"[""Laptop"", ""Keyboard"", ""Headphones""]",4980.71,{},130971,1,South America +2023-09-04,72926,3492,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",360.28,{},53156,1,Asia +2024-10-17,72927,2186,"[""Tablet""]",4569.52,"{"""": ""7%""}",222937,0,South America +2023-02-02,72928,9463,"[""Phone""]",2213.57,"{""promo"": ""9%""}",280152,0,North America +2023-02-06,72929,3616,"[""Phone"", ""Keyboard"", ""Headphones""]",1822.71,"{"""": ""11%""}",64249,0,North America +2023-04-28,72930,1937,"[""Charger""]",2662.02,{},85175,0,Asia +2023-06-15,72931,6566,"[""Laptop""]",1081.64,"{""promo"": ""21%""}",92100,1,South America +2023-04-16,72932,4994,"[""Phone"", ""Laptop"", ""Keyboard""]",1740.15,"{""seasonal"": ""10%""}",189919,1,South America +2024-03-01,72933,6360,"[""Keyboard""]",3047.81,{},277757,1,Europe +2024-09-29,72934,8301,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3512.42,"{""seasonal"": ""5%""}",221914,1,Europe +2023-10-05,72935,4032,"[""Monitor""]",1161.15,{},75934,0,Africa +2024-01-07,72936,4868,"[""Wireless Mouse""]",2007.94,{},222006,1,North America +2024-12-10,72937,6785,"[""Charger"", ""Monitor""]",1856.88,"{"""": ""19%""}",229735,0,South America +2024-07-10,72938,1728,"[""Laptop"", ""Tablet""]",4938.13,{},214957,1,North America +2023-11-04,72939,3934,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1956.19,"{""loyalty"": ""28%""}",86974,1,North America +2023-05-31,72940,6127,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2964.7,{},107978,1,North America +2023-11-05,72941,9585,"[""Tablet""]",4254.77,"{""loyalty"": ""14%""}",146991,0,South America +2024-07-19,72942,8753,"[""Headphones""]",3391.16,{},252569,1,North America +2023-04-17,72943,9633,"[""Tablet"", ""Wireless Mouse""]",2453.91,"{""seasonal"": ""28%""}",65352,1,South America +2024-08-20,72944,1331,"[""Monitor""]",2474.06,{},32179,1,North America +2023-12-20,72945,9214,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2825.16,"{""promo"": ""16%""}",152104,1,Europe +2024-01-30,72946,2903,"[""Laptop"", ""Headphones""]",552.44,{},252810,0,South America +2024-02-29,72947,6062,"[""Monitor"", ""Keyboard"", ""Phone""]",1517.54,{},53840,1,Europe +2023-01-03,72948,8591,"[""Headphones"", ""Phone""]",4927.98,{},195515,0,North America +2023-05-14,72949,4523,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2412.66,{},280378,0,Europe +2023-11-23,72950,2101,"[""Laptop""]",639.19,"{""loyalty"": ""12%""}",53599,1,Asia +2023-03-17,72951,5600,"[""Phone""]",2725.5,{},164790,1,Asia +2024-12-25,72952,6352,"[""Tablet"", ""Laptop"", ""Monitor""]",2606.05,"{""seasonal"": ""30%""}",62117,1,Asia +2024-02-21,72953,8474,"[""Wireless Mouse""]",3429.83,{},222969,0,Europe +2023-02-21,72954,461,"[""Tablet"", ""Phone""]",4791.98,"{""loyalty"": ""25%""}",218354,0,Asia +2024-08-18,72955,9119,"[""Phone"", ""Headphones"", ""Monitor""]",3124.87,{},31094,1,Africa +2023-01-06,72956,2579,"[""Laptop"", ""Monitor""]",2048.57,"{""loyalty"": ""29%""}",193565,1,Europe +2023-06-30,72957,9578,"[""Tablet"", ""Headphones"", ""Laptop""]",1533.32,"{""promo"": ""30%""}",159430,1,Africa +2023-04-18,72958,3614,"[""Keyboard""]",4818.39,"{""loyalty"": ""9%""}",107610,0,South America +2024-10-18,72959,2898,"[""Laptop"", ""Keyboard"", ""Headphones""]",293.79,{},160400,1,Europe +2023-05-17,72960,5555,"[""Tablet""]",660.82,{},255442,1,South America +2023-10-25,72961,3511,"[""Keyboard""]",4494.63,{},168376,0,North America +2024-05-30,72962,285,"[""Laptop""]",4715.44,{},288127,1,North America +2024-04-21,72963,9136,"[""Keyboard""]",1929.1,"{"""": ""24%""}",173600,0,Africa +2024-03-04,72964,1332,"[""Tablet"", ""Phone"", ""Keyboard""]",342.19,{},72450,1,North America +2024-05-29,72965,8975,"[""Charger""]",1004.01,"{""promo"": ""23%""}",45937,1,Asia +2023-06-16,72966,1105,"[""Laptop"", ""Monitor"", ""Keyboard""]",1986.65,{},200492,1,Africa +2023-10-06,72967,1310,"[""Charger"", ""Headphones"", ""Keyboard""]",2315.26,"{"""": ""7%""}",177813,1,Asia +2024-07-29,72968,1474,"[""Monitor""]",4894.21,{},166766,0,Asia +2023-09-06,72969,9505,"[""Monitor"", ""Laptop""]",3111.45,"{""seasonal"": ""8%""}",130206,0,South America +2024-11-13,72970,2282,"[""Keyboard"", ""Monitor"", ""Tablet""]",3847.33,"{""seasonal"": ""9%""}",236821,0,North America +2024-01-30,72971,4584,"[""Wireless Mouse""]",2312.03,"{""loyalty"": ""27%""}",216460,0,North America +2024-06-27,72972,1836,"[""Tablet"", ""Charger""]",1581.42,{},47168,0,South America +2024-02-16,72973,8887,"[""Keyboard""]",2282.53,"{""loyalty"": ""17%""}",266331,0,North America +2024-01-07,72974,3889,"[""Keyboard"", ""Monitor""]",1031.35,{},219574,0,North America +2023-07-25,72975,4220,"[""Laptop"", ""Keyboard"", ""Headphones""]",311.25,"{""loyalty"": ""24%""}",116600,0,Europe +2024-03-01,72976,922,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2573.62,"{""loyalty"": ""17%""}",89142,0,North America +2023-03-04,72977,1951,"[""Wireless Mouse"", ""Charger""]",875.12,"{""promo"": ""21%""}",201498,1,North America +2024-09-27,72978,7567,"[""Headphones""]",1006.25,{},241878,1,Africa +2024-04-19,72979,603,"[""Charger""]",4998.83,{},108489,0,North America +2023-09-10,72980,7753,"[""Tablet""]",3667.66,{},34254,1,Asia +2024-02-11,72981,3692,"[""Wireless Mouse""]",1394.41,{},256036,0,Europe +2023-02-10,72982,2952,"[""Laptop""]",3023.45,"{""seasonal"": ""9%""}",87423,0,South America +2024-08-05,72983,4156,"[""Laptop"", ""Headphones"", ""Tablet""]",3508.94,{},92147,1,Europe +2024-01-26,72984,36,"[""Laptop""]",2494.42,{},188385,0,Africa +2023-04-21,72985,68,"[""Headphones"", ""Keyboard""]",1636.41,"{"""": ""29%""}",222602,1,Africa +2023-01-13,72986,8503,"[""Phone"", ""Headphones""]",4939.45,{},4492,0,Africa +2023-02-13,72987,6725,"[""Tablet"", ""Headphones"", ""Laptop""]",1108.38,"{"""": ""18%""}",182513,0,Asia +2024-12-06,72988,9443,"[""Laptop"", ""Monitor"", ""Tablet""]",4221.91,"{""promo"": ""21%""}",4526,0,Europe +2023-07-29,72989,4562,"[""Monitor"", ""Wireless Mouse""]",1912.42,{},181630,0,Europe +2024-03-07,72990,5891,"[""Tablet"", ""Headphones""]",3837.91,"{""loyalty"": ""30%""}",266789,0,South America +2024-11-26,72991,2300,"[""Keyboard"", ""Monitor""]",3929.43,"{""promo"": ""13%""}",20066,0,Europe +2023-08-26,72992,818,"[""Laptop""]",778.07,"{""seasonal"": ""12%""}",114386,1,Europe +2024-05-23,72993,751,"[""Phone""]",1164.87,"{""seasonal"": ""19%""}",93953,0,Europe +2023-10-07,72994,7613,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1617.74,{},130353,0,North America +2024-08-07,72995,9761,"[""Tablet"", ""Keyboard"", ""Laptop""]",1579.5,"{""loyalty"": ""21%""}",46786,0,North America +2024-11-05,72996,6555,"[""Charger""]",3249.07,{},35990,1,Europe +2023-11-30,72997,35,"[""Keyboard""]",1591.96,{},139692,1,Europe +2024-07-23,72998,8473,"[""Monitor"", ""Wireless Mouse""]",3236.87,{},93068,0,Europe +2024-11-27,72999,4636,"[""Monitor"", ""Charger"", ""Keyboard""]",4992.3,{},10248,0,Asia +2024-08-14,73000,2762,"[""Monitor"", ""Headphones"", ""Charger""]",2235.47,"{""loyalty"": ""7%""}",73694,1,Europe +2024-01-19,73001,3579,"[""Monitor""]",858.97,{},148343,1,Africa +2024-08-03,73002,7463,"[""Charger"", ""Headphones"", ""Phone""]",2358.08,{},185517,1,North America +2023-08-26,73003,9219,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1870.31,"{""promo"": ""5%""}",80387,0,North America +2024-03-20,73004,3197,"[""Monitor"", ""Keyboard"", ""Laptop""]",2358.95,"{""loyalty"": ""7%""}",210072,1,Europe +2024-09-24,73005,1386,"[""Wireless Mouse"", ""Laptop""]",4656.07,"{""loyalty"": ""5%""}",137961,0,North America +2024-05-01,73006,9166,"[""Wireless Mouse""]",1771.58,{},104025,0,South America +2024-12-07,73007,8541,"[""Keyboard""]",594.39,{},9600,0,Africa +2023-12-28,73008,4300,"[""Tablet""]",3426.98,"{""promo"": ""14%""}",26416,0,North America +2024-10-05,73009,5000,"[""Tablet"", ""Phone""]",1401.0,"{""seasonal"": ""13%""}",254553,0,Asia +2023-01-31,73010,9616,"[""Tablet""]",2757.3,{},154073,0,North America +2023-06-29,73011,4621,"[""Keyboard""]",1311.14,{},46788,1,North America +2024-10-05,73012,1019,"[""Headphones"", ""Tablet""]",4386.47,{},136395,1,Europe +2023-07-21,73013,9496,"[""Keyboard"", ""Monitor""]",4940.73,"{""promo"": ""22%""}",125513,1,Europe +2023-10-27,73014,380,"[""Tablet""]",4985.75,"{""promo"": ""9%""}",171966,0,Asia +2023-07-30,73015,7424,"[""Monitor""]",621.15,"{""promo"": ""28%""}",222272,0,Europe +2023-05-07,73016,5841,"[""Tablet"", ""Headphones"", ""Keyboard""]",3157.68,"{""promo"": ""20%""}",289210,0,Asia +2024-05-28,73017,7951,"[""Phone""]",3083.92,{},168850,0,Europe +2023-11-01,73018,3456,"[""Tablet""]",3467.45,"{""loyalty"": ""25%""}",187639,0,Africa +2023-04-15,73019,6018,"[""Keyboard"", ""Tablet"", ""Headphones""]",870.1,"{"""": ""25%""}",170022,1,Africa +2024-12-10,73020,6426,"[""Monitor"", ""Tablet""]",3369.91,{},205762,0,Europe +2024-09-13,73021,7092,"[""Charger"", ""Tablet"", ""Monitor""]",1630.92,"{""loyalty"": ""21%""}",128972,1,Asia +2023-02-26,73022,8053,"[""Laptop"", ""Monitor""]",740.93,"{""loyalty"": ""14%""}",52132,1,South America +2023-10-18,73023,523,"[""Tablet""]",2804.39,"{"""": ""11%""}",134313,0,Africa +2024-10-08,73024,3335,"[""Tablet"", ""Keyboard""]",3872.54,{},123466,0,South America +2024-10-18,73025,8342,"[""Charger""]",1151.55,"{""seasonal"": ""17%""}",246974,0,North America +2024-03-31,73026,2142,"[""Phone"", ""Monitor""]",1293.45,"{""seasonal"": ""12%""}",294814,1,North America +2024-12-27,73027,4947,"[""Charger"", ""Headphones""]",719.91,{},267866,1,Asia +2024-07-09,73028,9669,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3466.12,{},200837,1,South America +2024-11-16,73029,6696,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",287.8,{},297051,1,Africa +2024-08-31,73030,8155,"[""Charger""]",4197.59,"{""loyalty"": ""6%""}",25269,0,North America +2024-01-09,73031,6713,"[""Charger""]",1267.54,"{""promo"": ""15%""}",279381,0,Europe +2023-03-30,73032,1140,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1764.0,"{""promo"": ""12%""}",111892,0,Africa +2024-10-21,73033,8638,"[""Keyboard""]",238.86,{},47758,0,Africa +2024-07-19,73034,3408,"[""Tablet"", ""Monitor"", ""Phone""]",2655.41,"{""seasonal"": ""24%""}",168064,0,Africa +2023-08-24,73035,5481,"[""Headphones"", ""Phone""]",2499.83,"{""promo"": ""30%""}",80695,1,South America +2023-05-15,73036,1161,"[""Laptop""]",2509.43,"{"""": ""30%""}",77488,0,North America +2024-07-13,73037,5675,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1488.38,{},149841,0,Asia +2024-08-09,73038,3868,"[""Laptop"", ""Tablet""]",2705.1,"{""seasonal"": ""10%""}",182330,1,Asia +2023-05-23,73039,4676,"[""Tablet"", ""Headphones"", ""Charger""]",1716.64,"{""seasonal"": ""5%""}",207578,1,South America +2024-02-04,73040,3815,"[""Headphones"", ""Tablet"", ""Laptop""]",1340.99,"{""seasonal"": ""5%""}",105185,1,North America +2024-03-27,73041,6034,"[""Wireless Mouse""]",2920.86,"{""promo"": ""11%""}",186770,0,North America +2024-06-19,73042,9502,"[""Phone"", ""Tablet""]",370.18,"{""promo"": ""24%""}",42799,1,North America +2023-06-11,73043,1308,"[""Charger"", ""Phone"", ""Monitor""]",3830.97,"{""promo"": ""10%""}",162555,1,Europe +2024-03-15,73044,44,"[""Wireless Mouse"", ""Laptop""]",1862.45,"{"""": ""12%""}",109231,1,Europe +2024-02-16,73045,9270,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",248.6,"{""loyalty"": ""28%""}",49937,0,North America +2023-11-12,73046,4469,"[""Headphones""]",1910.54,{},224173,1,Europe +2024-10-24,73047,8240,"[""Phone""]",4545.52,{},2668,0,Africa +2024-07-24,73048,4002,"[""Charger""]",4644.32,"{""promo"": ""24%""}",2130,1,Asia +2023-01-29,73049,99,"[""Wireless Mouse""]",1744.4,{},206841,0,Europe +2024-04-19,73050,4088,"[""Charger"", ""Monitor"", ""Headphones""]",2980.06,"{""promo"": ""5%""}",15314,1,Africa +2023-03-10,73051,6487,"[""Charger"", ""Monitor""]",428.28,{},8436,1,Asia +2023-08-26,73052,8606,"[""Wireless Mouse""]",4395.9,{},70659,0,North America +2023-03-29,73053,7427,"[""Wireless Mouse"", ""Monitor""]",4284.43,{},24629,0,South America +2024-12-30,73054,6768,"[""Laptop"", ""Wireless Mouse""]",2346.58,"{""seasonal"": ""12%""}",278273,1,Africa +2024-03-10,73055,4467,"[""Tablet"", ""Headphones""]",1480.72,"{""promo"": ""17%""}",264784,0,Europe +2024-06-17,73056,1991,"[""Keyboard"", ""Laptop""]",161.85,{},196350,1,South America +2024-09-11,73057,8343,"[""Monitor"", ""Keyboard""]",4622.97,{},245460,1,South America +2024-12-11,73058,4135,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4221.01,"{"""": ""28%""}",190172,1,Africa +2023-07-21,73059,4924,"[""Phone"", ""Laptop""]",1728.56,"{"""": ""13%""}",85217,1,South America +2024-03-13,73060,9129,"[""Wireless Mouse"", ""Phone""]",1714.13,"{""seasonal"": ""23%""}",248007,0,Africa +2023-10-09,73061,6693,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",987.93,"{""promo"": ""23%""}",205834,0,North America +2024-05-08,73062,9434,"[""Tablet"", ""Laptop""]",4298.94,{},65757,1,Europe +2023-05-05,73063,5644,"[""Keyboard""]",2786.25,{},272698,1,North America +2024-07-23,73064,7869,"[""Monitor""]",2208.59,{},98728,0,North America +2024-01-04,73065,4573,"[""Laptop"", ""Phone""]",102.2,{},41889,0,North America +2024-11-06,73066,6634,"[""Monitor""]",718.82,{},170766,1,South America +2023-02-15,73067,2788,"[""Monitor"", ""Wireless Mouse""]",310.0,"{""promo"": ""19%""}",107817,1,North America +2024-06-26,73068,2838,"[""Charger""]",1323.87,{},99858,1,North America +2023-11-11,73069,4886,"[""Laptop""]",999.83,"{""loyalty"": ""11%""}",146808,0,North America +2024-12-16,73070,6745,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",605.65,"{""promo"": ""25%""}",182557,1,South America +2024-10-18,73071,7295,"[""Phone""]",3836.1,"{""seasonal"": ""29%""}",239611,0,Europe +2023-05-11,73072,2415,"[""Charger"", ""Laptop""]",764.25,{},132985,1,North America +2024-05-07,73073,5697,"[""Monitor""]",3932.75,"{""promo"": ""26%""}",119375,1,Africa +2024-09-28,73074,2151,"[""Headphones""]",876.87,"{""promo"": ""20%""}",111974,0,Europe +2024-08-24,73075,7882,"[""Monitor"", ""Laptop""]",768.69,{},138464,1,Asia +2024-02-11,73076,1160,"[""Keyboard"", ""Tablet""]",1967.88,"{""loyalty"": ""7%""}",280721,1,South America +2023-08-12,73077,7412,"[""Keyboard""]",4713.96,{},65081,1,South America +2023-05-08,73078,1893,"[""Headphones"", ""Phone""]",4520.26,"{"""": ""27%""}",152539,1,South America +2023-06-11,73079,8074,"[""Keyboard"", ""Laptop"", ""Phone""]",2903.94,{},170019,1,Europe +2024-03-15,73080,6773,"[""Wireless Mouse""]",133.8,"{"""": ""15%""}",113300,0,Europe +2024-03-04,73081,4696,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",995.72,"{"""": ""24%""}",103665,0,Asia +2024-05-16,73082,2213,"[""Tablet"", ""Laptop""]",3933.53,{},56703,0,South America +2024-11-06,73083,5896,"[""Charger"", ""Headphones"", ""Keyboard""]",2357.43,"{""promo"": ""15%""}",3545,0,Asia +2024-07-05,73084,4703,"[""Laptop"", ""Monitor""]",328.42,"{""loyalty"": ""8%""}",221921,1,North America +2023-01-18,73085,4653,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2081.85,"{""seasonal"": ""15%""}",54537,0,North America +2024-10-16,73086,6942,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1431.44,{},11753,1,North America +2023-09-23,73087,9404,"[""Laptop"", ""Tablet""]",3505.59,{},273851,0,Europe +2024-06-20,73088,5711,"[""Tablet""]",1603.32,{},276684,1,North America +2024-09-21,73089,9679,"[""Phone"", ""Headphones""]",1832.73,{},12562,0,Europe +2023-04-14,73090,632,"[""Phone"", ""Monitor"", ""Charger""]",1259.49,{},251005,1,Europe +2023-08-27,73091,4159,"[""Charger""]",3008.75,{},160224,1,South America +2024-04-19,73092,2380,"[""Charger""]",1342.83,"{""promo"": ""19%""}",258738,0,Africa +2024-07-25,73093,3123,"[""Phone""]",4427.31,{},66218,0,Africa +2024-06-23,73094,5008,"[""Monitor""]",3761.56,"{""loyalty"": ""23%""}",50336,1,Asia +2023-10-25,73095,1716,"[""Headphones""]",3324.83,"{""seasonal"": ""19%""}",166433,1,North America +2023-08-08,73096,4498,"[""Phone""]",2130.16,"{""promo"": ""28%""}",20627,0,North America +2024-06-10,73097,7025,"[""Laptop""]",488.27,"{""promo"": ""13%""}",201557,1,North America +2023-07-18,73098,7278,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2042.99,{},269213,0,Europe +2023-04-01,73099,9176,"[""Laptop"", ""Keyboard""]",3899.23,"{""seasonal"": ""19%""}",193151,0,Europe +2023-06-08,73100,8306,"[""Tablet""]",286.37,"{"""": ""9%""}",287208,1,Africa +2024-02-05,73101,504,"[""Charger""]",102.93,{},198333,1,Europe +2023-09-18,73102,206,"[""Headphones"", ""Laptop"", ""Charger""]",3314.46,{},228759,0,South America +2023-10-03,73103,9825,"[""Laptop""]",3144.92,"{""promo"": ""20%""}",237598,0,Europe +2023-03-05,73104,9537,"[""Tablet"", ""Laptop"", ""Charger""]",2274.75,"{""promo"": ""6%""}",23258,1,North America +2024-01-23,73105,8004,"[""Laptop""]",2935.38,{},111390,1,Asia +2023-06-04,73106,8801,"[""Headphones"", ""Monitor"", ""Keyboard""]",2357.09,"{"""": ""26%""}",282797,1,Africa +2024-01-14,73107,9112,"[""Monitor"", ""Phone"", ""Charger""]",1246.36,"{"""": ""27%""}",116194,0,South America +2024-08-05,73108,3844,"[""Keyboard"", ""Phone""]",4225.07,"{""loyalty"": ""30%""}",234534,1,Europe +2023-02-17,73109,2742,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1329.09,"{""loyalty"": ""9%""}",146353,1,North America +2024-02-18,73110,8939,"[""Laptop"", ""Phone""]",3610.44,{},246132,1,Asia +2024-03-21,73111,1261,"[""Wireless Mouse"", ""Keyboard""]",4613.61,"{"""": ""22%""}",227554,1,Asia +2023-08-27,73112,7792,"[""Keyboard""]",3700.51,"{""promo"": ""15%""}",86184,1,Africa +2023-07-29,73113,7783,"[""Wireless Mouse""]",3493.11,"{""seasonal"": ""18%""}",132333,0,Europe +2023-04-14,73114,8344,"[""Charger""]",1934.54,{},211853,0,North America +2024-01-12,73115,8593,"[""Wireless Mouse""]",256.74,"{"""": ""9%""}",20403,1,Europe +2023-12-29,73116,79,"[""Tablet""]",3933.44,"{""loyalty"": ""8%""}",213572,0,South America +2023-04-04,73117,444,"[""Monitor"", ""Headphones"", ""Tablet""]",3099.16,{},64126,1,Africa +2024-10-21,73118,3862,"[""Monitor"", ""Charger""]",2765.07,"{""promo"": ""8%""}",237864,1,North America +2023-03-04,73119,468,"[""Headphones""]",3475.56,"{""loyalty"": ""24%""}",142071,0,North America +2024-12-19,73120,7198,"[""Keyboard"", ""Charger""]",1134.51,{},95827,1,Europe +2023-10-25,73121,3918,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1544.63,{},27949,1,South America +2023-12-20,73122,8097,"[""Headphones""]",219.02,{},3187,1,North America +2023-11-19,73123,8579,"[""Tablet"", ""Laptop"", ""Keyboard""]",3902.85,{},248251,0,North America +2024-01-06,73124,4810,"[""Headphones""]",210.75,{},39526,1,North America +2024-05-31,73125,138,"[""Monitor"", ""Headphones"", ""Laptop""]",3824.34,{},171116,0,North America +2024-07-26,73126,8771,"[""Keyboard""]",192.29,{},81642,1,Asia +2023-04-08,73127,8300,"[""Monitor"", ""Keyboard""]",1227.55,{},184786,0,Europe +2024-06-08,73128,7770,"[""Phone"", ""Wireless Mouse""]",4193.22,{},26810,1,Africa +2023-07-03,73129,8539,"[""Keyboard"", ""Laptop""]",4627.42,{},209719,1,North America +2023-12-17,73130,5708,"[""Tablet""]",1918.35,{},126613,0,Africa +2023-11-29,73131,4057,"[""Phone""]",4582.54,"{""promo"": ""8%""}",134389,1,North America +2024-08-12,73132,7950,"[""Phone""]",4848.54,"{""promo"": ""26%""}",241009,0,South America +2024-03-31,73133,3572,"[""Laptop"", ""Charger"", ""Headphones""]",3402.59,"{""seasonal"": ""6%""}",42761,1,Africa +2024-09-19,73134,7078,"[""Headphones"", ""Laptop""]",1475.58,"{""seasonal"": ""29%""}",122655,0,Europe +2024-08-19,73135,6574,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4957.96,"{""seasonal"": ""17%""}",3031,0,South America +2023-06-29,73136,3215,"[""Keyboard""]",551.07,{},228467,0,Europe +2023-04-29,73137,650,"[""Monitor""]",578.64,"{""seasonal"": ""18%""}",272986,1,Asia +2023-02-19,73138,3044,"[""Keyboard""]",954.17,"{""promo"": ""19%""}",29569,0,Europe +2023-05-27,73139,2138,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2973.59,{},67635,0,North America +2023-03-06,73140,6550,"[""Monitor""]",2763.95,"{""promo"": ""14%""}",65613,0,Asia +2023-08-01,73141,4401,"[""Phone"", ""Charger"", ""Monitor""]",4829.88,"{""loyalty"": ""23%""}",238950,0,Europe +2024-05-23,73142,8395,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1256.07,{},80846,0,Africa +2023-07-19,73143,1899,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4757.91,"{""promo"": ""23%""}",79889,1,Africa +2023-03-09,73144,6274,"[""Headphones""]",2856.02,{},203541,0,North America +2024-07-01,73145,1813,"[""Keyboard"", ""Wireless Mouse""]",3408.54,{},218891,1,Africa +2024-02-15,73146,1868,"[""Tablet"", ""Laptop""]",729.07,"{"""": ""7%""}",183046,1,Asia +2023-07-01,73147,8095,"[""Laptop"", ""Charger""]",2711.14,{},128030,0,Asia +2024-04-16,73148,7840,"[""Laptop""]",3817.96,"{""loyalty"": ""23%""}",223397,1,Europe +2024-11-02,73149,1955,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4868.04,{},192132,1,Africa +2024-05-12,73150,7975,"[""Monitor"", ""Headphones"", ""Tablet""]",1892.8,{},267268,0,Africa +2023-04-16,73151,4821,"[""Headphones"", ""Monitor""]",319.23,"{""promo"": ""23%""}",15786,0,North America +2023-04-11,73152,6049,"[""Monitor"", ""Keyboard"", ""Charger""]",3377.69,{},255863,0,Asia +2023-06-04,73153,2605,"[""Keyboard"", ""Monitor""]",1722.99,{},11556,0,North America +2024-03-25,73154,7003,"[""Laptop"", ""Phone"", ""Headphones""]",4145.99,{},81653,1,Europe +2023-03-25,73155,3569,"[""Tablet"", ""Keyboard""]",763.72,{},134426,0,North America +2023-06-08,73156,6164,"[""Monitor"", ""Charger""]",555.46,"{""seasonal"": ""14%""}",206599,0,South America +2024-05-12,73157,355,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3484.08,"{""loyalty"": ""6%""}",101243,0,North America +2024-02-17,73158,9102,"[""Tablet"", ""Charger"", ""Laptop""]",166.62,{},193460,1,Europe +2023-02-25,73159,5873,"[""Phone""]",985.0,"{""seasonal"": ""12%""}",40099,0,South America +2023-06-18,73160,7640,"[""Phone"", ""Tablet""]",1574.73,{},126773,0,North America +2023-09-24,73161,3666,"[""Tablet"", ""Phone""]",3560.52,"{""promo"": ""16%""}",60269,0,South America +2024-01-07,73162,2306,"[""Keyboard""]",4874.95,"{""seasonal"": ""29%""}",121092,1,North America +2023-04-16,73163,1250,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",823.8,"{""seasonal"": ""13%""}",155023,1,North America +2024-04-09,73164,7490,"[""Monitor"", ""Headphones""]",4810.72,{},89731,0,Europe +2024-04-20,73165,4163,"[""Charger"", ""Tablet""]",616.94,{},281836,1,Asia +2023-10-03,73166,8570,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",406.68,{},224561,1,Africa +2023-11-20,73167,1302,"[""Tablet"", ""Laptop"", ""Keyboard""]",4956.27,"{""seasonal"": ""30%""}",226211,1,Asia +2023-08-25,73168,4637,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",851.28,"{""seasonal"": ""26%""}",199966,0,North America +2024-06-30,73169,4276,"[""Wireless Mouse""]",3927.16,"{""promo"": ""8%""}",196616,0,South America +2024-09-16,73170,606,"[""Laptop""]",405.92,{},76213,0,Asia +2023-07-26,73171,6801,"[""Monitor""]",4967.32,{},164636,1,South America +2023-03-20,73172,7252,"[""Charger"", ""Laptop"", ""Tablet""]",3043.44,"{""loyalty"": ""24%""}",234233,0,Africa +2024-06-05,73173,6462,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3683.91,{},42762,1,Europe +2024-01-18,73174,3602,"[""Monitor""]",1886.55,"{""loyalty"": ""30%""}",141378,1,North America +2024-05-16,73175,1812,"[""Keyboard"", ""Laptop"", ""Tablet""]",2100.44,"{""seasonal"": ""22%""}",60850,0,South America +2023-07-04,73176,968,"[""Tablet"", ""Keyboard""]",3061.6,"{""promo"": ""6%""}",248405,0,Africa +2024-06-09,73177,3991,"[""Headphones"", ""Monitor""]",2165.16,"{""promo"": ""18%""}",208273,1,South America +2023-01-27,73178,9267,"[""Headphones""]",3333.59,{},237508,1,North America +2023-03-28,73179,3882,"[""Tablet"", ""Keyboard"", ""Charger""]",1970.24,"{""loyalty"": ""10%""}",31603,0,Asia +2024-11-13,73180,7644,"[""Headphones"", ""Laptop""]",1967.97,"{""seasonal"": ""15%""}",288016,1,North America +2024-01-12,73181,432,"[""Charger"", ""Phone"", ""Wireless Mouse""]",122.44,"{""loyalty"": ""13%""}",73965,1,Africa +2023-07-21,73182,8036,"[""Charger"", ""Monitor"", ""Laptop""]",3328.39,"{""promo"": ""20%""}",212464,1,Europe +2024-12-29,73183,1487,"[""Wireless Mouse"", ""Charger""]",287.5,"{"""": ""16%""}",292108,1,Africa +2024-11-10,73184,1905,"[""Tablet"", ""Charger"", ""Laptop""]",3527.14,{},26841,0,Europe +2023-06-11,73185,7012,"[""Keyboard""]",2460.41,{},103721,0,Asia +2024-08-18,73186,3681,"[""Headphones"", ""Laptop""]",2976.56,{},59796,1,Africa +2024-02-13,73187,2187,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3830.75,{},65181,0,North America +2024-08-09,73188,530,"[""Charger"", ""Headphones""]",651.53,"{"""": ""8%""}",227414,1,Europe +2024-03-13,73189,7319,"[""Headphones"", ""Laptop"", ""Charger""]",4176.38,{},283078,0,South America +2023-09-01,73190,8004,"[""Charger"", ""Wireless Mouse""]",2136.62,{},107528,0,Africa +2023-05-02,73191,6966,"[""Tablet""]",4994.14,{},208181,0,North America +2024-09-28,73192,622,"[""Monitor""]",3050.07,"{""promo"": ""26%""}",164986,1,Asia +2023-11-24,73193,4525,"[""Keyboard""]",1476.82,{},150485,0,Europe +2023-06-19,73194,756,"[""Charger""]",363.35,"{""loyalty"": ""25%""}",129299,1,Asia +2024-03-30,73195,8566,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4141.01,"{"""": ""12%""}",296137,1,South America +2023-05-10,73196,3277,"[""Keyboard""]",1688.04,{},299686,0,North America +2024-06-02,73197,6221,"[""Charger""]",3207.07,{},252969,0,South America +2024-12-30,73198,5738,"[""Wireless Mouse"", ""Keyboard""]",692.58,"{""loyalty"": ""13%""}",144324,0,Europe +2024-04-23,73199,13,"[""Headphones"", ""Laptop""]",3181.19,"{""loyalty"": ""19%""}",148852,1,North America +2023-12-04,73200,3911,"[""Laptop""]",4894.0,"{""loyalty"": ""7%""}",184694,0,Europe +2024-02-19,73201,6029,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",167.35,{},39767,1,Asia +2024-10-09,73202,4892,"[""Headphones"", ""Monitor""]",4469.32,"{""loyalty"": ""29%""}",66035,0,North America +2024-05-12,73203,9607,"[""Phone"", ""Tablet""]",4685.28,"{""seasonal"": ""8%""}",265989,1,North America +2023-07-10,73204,1430,"[""Monitor"", ""Headphones"", ""Phone""]",2577.84,"{"""": ""18%""}",28280,0,Africa +2024-06-13,73205,4782,"[""Keyboard"", ""Headphones""]",1952.35,{},277429,1,Europe +2023-07-29,73206,9373,"[""Phone"", ""Headphones""]",4926.88,{},166318,0,North America +2024-05-17,73207,3390,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3076.39,{},186742,1,South America +2024-09-28,73208,6331,"[""Headphones"", ""Wireless Mouse""]",676.16,{},182391,0,Africa +2024-01-26,73209,640,"[""Tablet"", ""Headphones""]",582.25,"{""seasonal"": ""6%""}",112476,1,Europe +2023-01-26,73210,4467,"[""Monitor"", ""Phone"", ""Tablet""]",1474.17,{},185822,0,North America +2024-10-31,73211,1891,"[""Keyboard"", ""Monitor"", ""Phone""]",3965.52,"{""promo"": ""30%""}",222574,0,North America +2024-08-29,73212,1864,"[""Phone"", ""Laptop""]",619.6,{},34867,1,South America +2024-08-28,73213,6169,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1482.92,{},54929,0,North America +2023-11-03,73214,6062,"[""Keyboard"", ""Phone"", ""Laptop""]",4787.51,{},255945,1,South America +2023-07-21,73215,3668,"[""Charger"", ""Monitor""]",490.87,{},133924,1,North America +2024-10-16,73216,9314,"[""Laptop"", ""Keyboard"", ""Phone""]",739.33,"{""loyalty"": ""9%""}",92517,1,Africa +2023-01-12,73217,3889,"[""Keyboard""]",628.01,"{""loyalty"": ""21%""}",41809,1,South America +2024-03-20,73218,9039,"[""Tablet"", ""Phone"", ""Charger""]",2955.22,{},280733,1,North America +2023-04-12,73219,4526,"[""Charger""]",3854.74,"{""seasonal"": ""25%""}",166136,0,Europe +2023-03-29,73220,25,"[""Charger""]",3912.37,"{""seasonal"": ""21%""}",20927,1,Asia +2023-09-26,73221,9563,"[""Monitor"", ""Tablet"", ""Headphones""]",1123.36,{},23891,1,South America +2023-06-20,73222,3419,"[""Tablet"", ""Monitor""]",325.12,"{""seasonal"": ""14%""}",108829,1,North America +2024-11-24,73223,4364,"[""Phone"", ""Keyboard""]",2266.81,"{""loyalty"": ""26%""}",285391,0,Africa +2023-04-16,73224,6009,"[""Wireless Mouse""]",143.94,{},91379,1,North America +2024-09-23,73225,6782,"[""Headphones""]",2408.26,"{""seasonal"": ""15%""}",294627,0,Africa +2024-11-24,73226,2653,"[""Charger"", ""Phone""]",2730.9,{},140974,0,Africa +2023-06-26,73227,2026,"[""Headphones"", ""Monitor"", ""Keyboard""]",3613.37,{},225713,1,South America +2023-07-29,73228,3058,"[""Keyboard"", ""Headphones"", ""Tablet""]",3197.75,{},193451,0,Europe +2024-12-02,73229,9589,"[""Wireless Mouse"", ""Monitor""]",3121.45,"{""promo"": ""27%""}",293753,0,North America +2023-09-22,73230,3306,"[""Headphones"", ""Monitor"", ""Charger""]",1434.26,{},281405,1,Africa +2023-09-16,73231,4558,"[""Monitor"", ""Laptop""]",2910.79,{},287865,1,South America +2023-04-15,73232,3651,"[""Keyboard""]",3948.02,"{"""": ""24%""}",244100,1,North America +2023-07-21,73233,3717,"[""Headphones""]",4786.17,"{""seasonal"": ""17%""}",95511,1,South America +2024-08-22,73234,3475,"[""Laptop"", ""Monitor"", ""Headphones""]",4853.15,"{""promo"": ""20%""}",31114,0,Africa +2023-08-02,73235,9951,"[""Tablet"", ""Monitor"", ""Keyboard""]",1472.63,"{""promo"": ""30%""}",171235,0,South America +2023-09-22,73236,57,"[""Wireless Mouse""]",2550.19,{},23700,1,North America +2024-10-15,73237,6047,"[""Monitor""]",3619.32,"{""seasonal"": ""27%""}",191290,0,North America +2023-03-03,73238,4296,"[""Headphones""]",4147.65,{},60016,1,North America +2024-02-08,73239,9041,"[""Wireless Mouse""]",1924.86,{},255073,0,North America +2024-06-23,73240,7276,"[""Headphones"", ""Laptop""]",4296.04,"{""loyalty"": ""21%""}",298271,0,South America +2024-05-28,73241,5770,"[""Keyboard"", ""Laptop"", ""Tablet""]",4110.92,{},222196,0,Africa +2023-12-18,73242,4080,"[""Monitor""]",3179.63,{},153940,1,Asia +2023-11-10,73243,3248,"[""Laptop"", ""Headphones""]",3656.53,{},222416,0,North America +2023-08-02,73244,3283,"[""Tablet""]",586.68,"{""loyalty"": ""29%""}",39020,1,South America +2023-01-28,73245,3223,"[""Monitor"", ""Keyboard"", ""Tablet""]",133.51,{},287674,1,Africa +2023-02-28,73246,1021,"[""Monitor"", ""Tablet""]",4568.94,{},263961,1,South America +2024-04-29,73247,4825,"[""Wireless Mouse""]",667.47,{},16241,1,Europe +2024-10-10,73248,3762,"[""Tablet""]",1755.66,"{""seasonal"": ""25%""}",141732,0,South America +2024-02-05,73249,7154,"[""Tablet"", ""Laptop""]",2239.3,"{""loyalty"": ""27%""}",28961,0,South America +2024-06-07,73250,7666,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",58.27,{},21977,1,Africa +2023-08-04,73251,6557,"[""Keyboard"", ""Laptop"", ""Phone""]",1489.58,{},124091,0,Africa +2024-02-11,73252,5712,"[""Phone"", ""Keyboard""]",1664.18,"{""seasonal"": ""8%""}",33155,0,Europe +2024-12-22,73253,7616,"[""Headphones""]",1473.33,{},252565,0,Asia +2023-12-11,73254,5200,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1797.3,{},137072,1,Asia +2024-03-17,73255,3305,"[""Monitor"", ""Wireless Mouse""]",3140.85,{},276420,0,Europe +2024-11-06,73256,5632,"[""Laptop"", ""Wireless Mouse""]",1677.04,"{"""": ""9%""}",238615,1,North America +2024-10-18,73257,1470,"[""Keyboard"", ""Charger""]",4389.64,"{"""": ""29%""}",4369,1,North America +2024-02-03,73258,4337,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1983.55,{},19318,0,South America +2024-05-18,73259,5579,"[""Tablet"", ""Headphones""]",2117.21,{},296875,1,North America +2024-03-30,73260,260,"[""Headphones"", ""Keyboard"", ""Laptop""]",3142.66,{},106554,1,Europe +2024-02-22,73261,1230,"[""Phone""]",1684.03,"{""seasonal"": ""8%""}",237432,0,South America +2024-03-18,73262,5138,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4892.63,"{""seasonal"": ""29%""}",167893,0,Asia +2023-04-26,73263,2660,"[""Phone"", ""Keyboard""]",4971.89,{},290894,1,Africa +2024-08-13,73264,414,"[""Headphones""]",715.66,"{"""": ""17%""}",247612,1,North America +2024-09-15,73265,9402,"[""Laptop""]",3450.17,"{""loyalty"": ""19%""}",31987,1,Africa +2024-05-09,73266,6965,"[""Tablet""]",586.65,"{""promo"": ""9%""}",113707,1,North America +2024-09-09,73267,1672,"[""Keyboard"", ""Charger"", ""Phone""]",4790.38,{},174164,0,South America +2024-12-20,73268,7930,"[""Charger"", ""Headphones"", ""Tablet""]",4612.3,{},177895,0,Europe +2023-03-26,73269,7021,"[""Keyboard""]",137.88,"{"""": ""23%""}",166262,0,South America +2024-11-24,73270,4689,"[""Laptop""]",823.55,{},115775,1,North America +2024-10-13,73271,6054,"[""Keyboard"", ""Phone""]",1450.66,"{""promo"": ""15%""}",59931,0,Asia +2024-11-25,73272,8187,"[""Keyboard""]",1577.5,{},153228,0,Asia +2023-08-11,73273,5335,"[""Wireless Mouse""]",4598.23,"{""seasonal"": ""16%""}",24264,0,North America +2023-08-15,73274,3334,"[""Tablet"", ""Wireless Mouse""]",3876.63,"{""loyalty"": ""5%""}",186256,0,Africa +2024-09-02,73275,3132,"[""Keyboard"", ""Phone"", ""Tablet""]",2573.31,{},296933,0,Africa +2024-07-31,73276,6964,"[""Phone""]",2028.49,"{""promo"": ""7%""}",228148,0,Africa +2023-02-24,73277,7840,"[""Charger""]",1487.45,{},296171,1,Europe +2024-12-19,73278,7229,"[""Tablet"", ""Laptop""]",1235.6,"{""promo"": ""17%""}",105688,0,Africa +2024-07-29,73279,8306,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3011.7,{},264579,1,Africa +2024-02-27,73280,3917,"[""Keyboard"", ""Monitor"", ""Charger""]",4145.89,"{"""": ""5%""}",252273,0,North America +2024-07-04,73281,1658,"[""Laptop""]",3984.61,"{""seasonal"": ""15%""}",20752,0,South America +2023-12-19,73282,5599,"[""Laptop"", ""Keyboard""]",996.93,"{""seasonal"": ""29%""}",291268,0,Asia +2024-01-06,73283,2814,"[""Headphones"", ""Phone"", ""Laptop""]",2912.88,"{""seasonal"": ""21%""}",280931,1,Asia +2023-11-20,73284,6723,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1782.85,{},215455,0,Asia +2023-02-16,73285,3638,"[""Phone""]",2052.78,"{""loyalty"": ""21%""}",47086,0,North America +2023-06-28,73286,8790,"[""Wireless Mouse"", ""Laptop""]",52.09,{},40556,0,Europe +2024-09-24,73287,6760,"[""Phone"", ""Headphones""]",1580.11,"{""promo"": ""13%""}",250196,1,North America +2023-10-29,73288,999,"[""Headphones"", ""Laptop"", ""Monitor""]",3378.72,"{"""": ""9%""}",67908,1,Europe +2024-11-05,73289,9124,"[""Headphones"", ""Keyboard"", ""Monitor""]",1440.53,{},114283,0,South America +2023-08-01,73290,7633,"[""Monitor"", ""Laptop""]",1699.22,"{""loyalty"": ""15%""}",203070,0,North America +2023-11-06,73291,7231,"[""Wireless Mouse""]",535.56,"{""promo"": ""9%""}",92940,0,Africa +2024-09-06,73292,675,"[""Monitor"", ""Charger"", ""Headphones""]",1017.06,"{""loyalty"": ""14%""}",146609,0,North America +2024-12-22,73293,2392,"[""Headphones""]",4257.91,{},57376,0,Asia +2024-08-24,73294,5073,"[""Headphones"", ""Phone""]",3100.32,"{""loyalty"": ""15%""}",145142,1,Europe +2023-12-01,73295,6314,"[""Phone""]",1329.44,{},130667,1,Asia +2024-06-04,73296,824,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4222.99,{},58203,1,Asia +2023-02-24,73297,4178,"[""Tablet"", ""Phone""]",3838.93,"{""seasonal"": ""19%""}",137594,0,Europe +2024-06-07,73298,4624,"[""Headphones"", ""Tablet""]",3007.77,"{""seasonal"": ""11%""}",23822,0,Europe +2024-09-23,73299,6499,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1938.95,{},168838,0,Africa +2024-06-19,73300,4135,"[""Charger"", ""Keyboard"", ""Phone""]",2334.41,{},297196,1,South America +2024-05-04,73301,38,"[""Wireless Mouse"", ""Keyboard""]",1261.15,"{""promo"": ""13%""}",152601,1,Asia +2023-10-02,73302,1037,"[""Tablet"", ""Keyboard""]",2193.5,{},196226,0,Africa +2024-02-18,73303,450,"[""Keyboard"", ""Tablet""]",3030.06,{},288258,0,South America +2024-06-18,73304,2617,"[""Keyboard"", ""Phone""]",2293.76,"{""seasonal"": ""14%""}",111142,1,Africa +2023-04-01,73305,1649,"[""Charger"", ""Phone"", ""Headphones""]",1834.69,"{""loyalty"": ""20%""}",238497,0,North America +2024-10-15,73306,8032,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1458.35,{},252242,0,South America +2024-05-16,73307,3850,"[""Monitor""]",267.95,{},237455,0,Asia +2024-08-22,73308,7962,"[""Monitor"", ""Charger""]",3437.72,{},8606,0,South America +2024-07-07,73309,822,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2416.5,{},34658,1,South America +2023-06-06,73310,6507,"[""Headphones"", ""Phone""]",1335.35,{},268638,0,Asia +2024-07-13,73311,1107,"[""Monitor""]",2671.02,"{""loyalty"": ""12%""}",139245,0,Africa +2023-02-27,73312,918,"[""Charger"", ""Phone"", ""Tablet""]",3692.11,{},65172,0,Europe +2024-04-28,73313,794,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1328.9,"{""loyalty"": ""19%""}",76891,0,Africa +2023-06-29,73314,4044,"[""Keyboard"", ""Phone""]",2739.28,{},28229,0,Africa +2023-02-05,73315,8821,"[""Wireless Mouse""]",1739.63,{},8762,0,Africa +2024-01-09,73316,7469,"[""Laptop"", ""Monitor"", ""Tablet""]",2676.67,"{""promo"": ""5%""}",264428,0,Asia +2023-01-03,73317,6089,"[""Laptop"", ""Phone""]",641.55,{},280657,1,North America +2023-08-23,73318,5781,"[""Headphones"", ""Tablet"", ""Phone""]",1686.73,{},108147,1,North America +2024-04-28,73319,786,"[""Headphones""]",2070.58,{},227225,1,Europe +2024-12-22,73320,5277,"[""Monitor"", ""Charger""]",4338.02,{},48720,0,Europe +2023-03-19,73321,4201,"[""Phone"", ""Laptop""]",359.77,{},77319,0,Africa +2024-10-10,73322,2479,"[""Keyboard"", ""Charger"", ""Tablet""]",2890.06,"{"""": ""6%""}",142985,0,Europe +2024-03-21,73323,766,"[""Keyboard"", ""Charger""]",2533.38,{},72843,1,South America +2023-11-28,73324,3912,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3074.65,"{""loyalty"": ""25%""}",207920,1,Europe +2024-10-14,73325,2279,"[""Laptop""]",3693.94,{},241360,1,Africa +2024-07-30,73326,5661,"[""Keyboard"", ""Phone""]",4472.05,"{"""": ""8%""}",16144,1,Europe +2023-01-26,73327,5517,"[""Headphones"", ""Charger""]",3637.77,"{""loyalty"": ""16%""}",9088,0,Asia +2024-01-26,73328,6573,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4631.28,"{""promo"": ""16%""}",40584,0,Africa +2024-10-24,73329,936,"[""Laptop""]",1698.45,{},230517,1,Europe +2023-12-10,73330,3891,"[""Laptop"", ""Charger"", ""Keyboard""]",4854.65,"{"""": ""24%""}",161429,0,North America +2024-07-11,73331,6754,"[""Tablet"", ""Keyboard""]",4754.12,{},287681,0,Africa +2024-09-25,73332,8557,"[""Monitor"", ""Headphones""]",2390.96,{},199315,0,Asia +2023-06-17,73333,4307,"[""Charger"", ""Headphones"", ""Phone""]",2024.96,"{""loyalty"": ""19%""}",84946,1,Europe +2023-03-17,73334,5600,"[""Keyboard"", ""Phone""]",4579.03,"{""loyalty"": ""13%""}",169944,1,Europe +2024-08-30,73335,9731,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4641.1,{},241407,1,Asia +2023-03-27,73336,6327,"[""Keyboard""]",4289.15,"{"""": ""17%""}",21845,1,South America +2023-08-20,73337,8204,"[""Charger"", ""Keyboard"", ""Laptop""]",4428.65,"{""seasonal"": ""28%""}",68827,1,South America +2023-04-04,73338,8565,"[""Monitor"", ""Phone"", ""Laptop""]",2590.73,"{""loyalty"": ""28%""}",151252,1,Asia +2024-07-07,73339,5601,"[""Charger"", ""Headphones"", ""Laptop""]",3986.75,{},64987,0,Europe +2023-03-07,73340,2015,"[""Phone"", ""Tablet"", ""Keyboard""]",3954.42,"{""promo"": ""20%""}",220141,0,South America +2024-03-24,73341,4554,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",847.55,{},60794,1,South America +2024-11-20,73342,8681,"[""Charger"", ""Phone""]",2741.36,"{""seasonal"": ""23%""}",18947,0,Africa +2024-07-18,73343,5889,"[""Laptop"", ""Charger""]",4946.14,{},21701,1,North America +2023-01-02,73344,8774,"[""Keyboard""]",2906.93,{},22561,1,Europe +2024-08-28,73345,7510,"[""Wireless Mouse""]",2470.96,{},238922,1,Asia +2024-08-14,73346,3688,"[""Monitor"", ""Keyboard""]",1183.34,{},219039,0,South America +2023-12-07,73347,156,"[""Phone"", ""Laptop"", ""Headphones""]",2183.4,"{""seasonal"": ""14%""}",18233,0,Asia +2023-09-10,73348,7474,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2576.85,{},112852,1,Africa +2023-01-24,73349,7254,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2870.71,"{""loyalty"": ""8%""}",180547,1,Asia +2023-09-06,73350,5264,"[""Headphones"", ""Monitor""]",953.14,{},243084,0,Asia +2024-11-05,73351,5190,"[""Phone"", ""Tablet""]",1577.16,"{"""": ""29%""}",11562,0,Africa +2024-02-17,73352,5871,"[""Charger"", ""Wireless Mouse""]",883.42,{},55995,0,North America +2023-03-23,73353,2803,"[""Wireless Mouse"", ""Laptop""]",3311.29,{},269391,0,Africa +2024-07-08,73354,3056,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4476.4,"{""loyalty"": ""9%""}",148402,0,North America +2023-11-12,73355,2243,"[""Charger"", ""Headphones""]",2971.58,{},281931,0,Africa +2023-10-21,73356,3689,"[""Laptop""]",4536.7,{},5281,0,Africa +2024-01-01,73357,5153,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2057.62,"{"""": ""15%""}",9078,0,North America +2024-01-15,73358,4016,"[""Laptop""]",2129.42,{},291126,0,Asia +2023-04-24,73359,2650,"[""Charger"", ""Monitor""]",2398.91,{},227804,0,Africa +2023-10-23,73360,1442,"[""Charger"", ""Monitor"", ""Keyboard""]",4639.35,"{""loyalty"": ""19%""}",201294,0,Europe +2023-05-18,73361,7479,"[""Phone"", ""Charger""]",3590.98,{},72310,0,Africa +2023-08-14,73362,9647,"[""Keyboard"", ""Tablet""]",397.34,{},286291,0,South America +2024-11-22,73363,6815,"[""Laptop"", ""Monitor"", ""Charger""]",269.99,{},31438,1,North America +2024-07-06,73364,8659,"[""Phone"", ""Charger"", ""Keyboard""]",3851.79,{},61500,1,Africa +2024-01-12,73365,4715,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2471.9,"{""loyalty"": ""6%""}",209681,1,Africa +2024-12-04,73366,5142,"[""Keyboard"", ""Laptop"", ""Tablet""]",3809.95,{},70838,0,Asia +2023-12-10,73367,2496,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3067.72,"{"""": ""16%""}",87590,1,Asia +2024-07-02,73368,5484,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4645.97,"{""loyalty"": ""27%""}",251271,1,Asia +2023-07-17,73369,6950,"[""Charger""]",59.28,"{""loyalty"": ""24%""}",182575,0,Europe +2024-09-15,73370,7876,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1160.24,"{""loyalty"": ""7%""}",190324,1,North America +2023-05-12,73371,9455,"[""Laptop""]",2699.77,{},200851,0,South America +2023-09-02,73372,6251,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",898.9,"{"""": ""22%""}",196053,0,Europe +2024-04-04,73373,5823,"[""Keyboard"", ""Laptop"", ""Phone""]",3199.74,{},11590,1,North America +2024-01-01,73374,7217,"[""Laptop""]",2561.18,{},26057,1,Europe +2023-06-02,73375,7599,"[""Phone"", ""Headphones"", ""Charger""]",3039.6,"{""loyalty"": ""8%""}",275615,1,Africa +2023-08-10,73376,229,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2350.67,{},120978,0,South America +2023-11-24,73377,2705,"[""Monitor"", ""Tablet"", ""Headphones""]",302.93,"{"""": ""23%""}",172460,1,Europe +2024-07-02,73378,3676,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3955.42,"{""seasonal"": ""24%""}",131602,0,Africa +2024-08-24,73379,1243,"[""Headphones"", ""Charger"", ""Tablet""]",1661.98,{},95884,1,North America +2023-03-13,73380,392,"[""Monitor"", ""Charger""]",4277.32,"{""promo"": ""5%""}",140088,0,South America +2023-10-06,73381,2378,"[""Monitor""]",3345.37,"{""loyalty"": ""5%""}",298203,0,Africa +2023-08-22,73382,2765,"[""Keyboard""]",215.09,{},218648,1,North America +2024-01-30,73383,4844,"[""Keyboard"", ""Tablet"", ""Headphones""]",3790.05,{},5264,0,South America +2024-01-17,73384,7051,"[""Tablet"", ""Monitor""]",301.68,"{"""": ""26%""}",81370,1,Africa +2024-01-04,73385,2284,"[""Keyboard"", ""Phone""]",2778.13,{},199642,1,Africa +2024-10-03,73386,3363,"[""Keyboard"", ""Phone"", ""Laptop""]",2023.09,{},240519,0,Africa +2024-01-10,73387,2927,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",707.15,{},272139,1,North America +2023-01-11,73388,1929,"[""Laptop""]",4955.12,{},163626,0,Africa +2023-12-13,73389,1985,"[""Laptop""]",3814.8,"{""seasonal"": ""10%""}",5664,1,North America +2023-07-15,73390,8880,"[""Phone"", ""Charger""]",2005.23,{},175733,1,Asia +2024-01-19,73391,905,"[""Laptop"", ""Tablet""]",344.02,"{"""": ""19%""}",147305,0,North America +2024-08-08,73392,4813,"[""Keyboard""]",78.74,{},201208,1,Africa +2023-06-21,73393,3456,"[""Monitor""]",3342.21,{},288112,1,Asia +2023-09-29,73394,8992,"[""Phone"", ""Wireless Mouse""]",958.72,{},52400,0,North America +2023-03-13,73395,4175,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3309.82,{},165176,0,Asia +2023-11-23,73396,7103,"[""Keyboard""]",2421.4,"{"""": ""9%""}",62441,1,North America +2024-07-02,73397,1504,"[""Laptop"", ""Monitor"", ""Keyboard""]",2617.36,{},99091,0,North America +2023-05-22,73398,238,"[""Monitor"", ""Keyboard"", ""Charger""]",3178.43,{},233207,0,South America +2023-09-30,73399,126,"[""Charger"", ""Phone"", ""Headphones""]",4628.26,{},273213,0,North America +2024-01-22,73400,9199,"[""Charger""]",1299.83,{},22379,0,Africa +2024-01-19,73401,5496,"[""Monitor""]",1870.43,{},216290,0,Asia +2024-01-12,73402,2613,"[""Monitor"", ""Tablet"", ""Laptop""]",663.51,{},114035,0,South America +2023-03-16,73403,4578,"[""Monitor""]",4937.96,{},125570,0,Africa +2024-06-17,73404,5347,"[""Monitor""]",297.03,{},21945,1,South America +2023-12-02,73405,8277,"[""Monitor"", ""Tablet""]",1594.43,"{"""": ""24%""}",117279,0,Europe +2024-02-14,73406,9547,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3215.85,{},185359,0,North America +2023-12-29,73407,4624,"[""Monitor""]",232.37,{},96664,0,Asia +2024-02-13,73408,5327,"[""Laptop"", ""Monitor""]",812.99,{},175479,0,Africa +2024-06-22,73409,7170,"[""Monitor"", ""Wireless Mouse""]",682.47,"{""promo"": ""22%""}",15630,0,Asia +2023-12-17,73410,1227,"[""Headphones""]",698.61,"{""seasonal"": ""9%""}",177018,0,Africa +2023-10-27,73411,9834,"[""Headphones"", ""Phone""]",4695.89,"{""promo"": ""23%""}",79737,1,Asia +2024-11-06,73412,7037,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4961.91,"{"""": ""22%""}",296621,0,Europe +2024-06-20,73413,1080,"[""Keyboard"", ""Charger""]",4139.25,{},134318,1,Asia +2023-09-18,73414,5756,"[""Charger"", ""Laptop"", ""Keyboard""]",2285.33,"{"""": ""29%""}",229626,0,Asia +2023-12-10,73415,1521,"[""Phone""]",1520.92,{},217497,0,Europe +2023-04-10,73416,8055,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1985.03,{},58322,1,Europe +2023-12-10,73417,338,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3613.04,{},267867,0,South America +2024-12-07,73418,8306,"[""Monitor""]",1353.73,"{""seasonal"": ""10%""}",234582,1,South America +2023-10-12,73419,246,"[""Tablet""]",1423.8,{},83846,0,North America +2024-02-20,73420,7188,"[""Tablet""]",1357.4,"{"""": ""9%""}",139514,1,North America +2023-10-16,73421,3133,"[""Charger"", ""Tablet"", ""Phone""]",1454.08,"{""promo"": ""8%""}",270015,0,Europe +2024-09-11,73422,8130,"[""Tablet"", ""Charger""]",3449.01,"{""loyalty"": ""17%""}",263992,1,Africa +2023-01-08,73423,3086,"[""Wireless Mouse"", ""Laptop""]",1081.65,{},249650,0,Africa +2023-05-20,73424,4197,"[""Monitor""]",1439.84,{},76438,0,North America +2023-09-10,73425,3068,"[""Keyboard"", ""Tablet"", ""Phone""]",2590.92,{},211445,1,Africa +2023-10-11,73426,4109,"[""Monitor"", ""Wireless Mouse""]",765.8,{},90399,1,Africa +2023-01-01,73427,4624,"[""Monitor"", ""Laptop""]",1367.72,"{""promo"": ""7%""}",198846,1,South America +2023-04-04,73428,717,"[""Keyboard""]",654.25,"{""promo"": ""20%""}",136697,0,Asia +2024-02-03,73429,5950,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",597.39,{},163481,1,North America +2024-06-03,73430,1438,"[""Wireless Mouse"", ""Tablet""]",3102.61,"{""seasonal"": ""7%""}",192002,0,Africa +2023-08-04,73431,2287,"[""Charger"", ""Monitor"", ""Headphones""]",4596.32,"{""promo"": ""21%""}",7815,1,North America +2023-02-16,73432,2421,"[""Wireless Mouse""]",2002.83,"{"""": ""26%""}",90303,1,North America +2024-10-04,73433,390,"[""Keyboard"", ""Charger""]",2525.62,"{"""": ""17%""}",167875,1,South America +2024-12-17,73434,5458,"[""Tablet""]",3685.55,{},175623,0,North America +2023-07-12,73435,1671,"[""Phone"", ""Headphones""]",1480.14,{},4062,0,North America +2024-04-21,73436,7691,"[""Headphones""]",3670.33,"{"""": ""30%""}",235365,0,South America +2023-03-31,73437,6927,"[""Headphones"", ""Laptop""]",763.43,{},14411,0,Europe +2023-03-24,73438,2524,"[""Laptop""]",2066.3,{},32135,0,South America +2024-02-13,73439,2534,"[""Tablet"", ""Monitor"", ""Charger""]",1207.38,{},82463,1,Africa +2023-08-08,73440,3510,"[""Tablet"", ""Monitor""]",1165.19,{},277130,0,South America +2024-05-15,73441,3674,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",965.6,"{"""": ""23%""}",253463,1,Asia +2023-08-30,73442,9284,"[""Headphones""]",311.24,"{""seasonal"": ""17%""}",111863,1,North America +2024-02-25,73443,6137,"[""Wireless Mouse""]",1007.87,{},242912,1,South America +2024-02-17,73444,1983,"[""Headphones"", ""Charger""]",3286.65,{},144054,1,North America +2023-10-26,73445,5799,"[""Phone""]",4789.63,"{""promo"": ""14%""}",258470,1,South America +2023-03-26,73446,4519,"[""Headphones"", ""Monitor""]",3021.41,"{""loyalty"": ""16%""}",69725,1,South America +2024-02-25,73447,4638,"[""Laptop"", ""Monitor""]",2263.72,"{""seasonal"": ""18%""}",169370,1,Africa +2023-12-27,73448,9567,"[""Laptop"", ""Charger"", ""Monitor""]",3959.54,{},13260,1,North America +2024-12-30,73449,9311,"[""Wireless Mouse"", ""Phone""]",4313.79,{},37778,1,Asia +2023-10-01,73450,9800,"[""Laptop""]",267.91,{},118155,0,North America +2023-01-07,73451,2849,"[""Laptop"", ""Monitor""]",4076.31,"{"""": ""15%""}",4479,0,North America +2024-12-26,73452,7182,"[""Phone""]",2878.5,{},7858,0,Europe +2024-10-15,73453,5826,"[""Headphones"", ""Laptop""]",3174.02,{},121747,1,Asia +2023-06-21,73454,4665,"[""Charger"", ""Phone"", ""Headphones""]",4861.31,{},255683,0,Europe +2023-12-22,73455,3375,"[""Laptop"", ""Keyboard"", ""Headphones""]",4387.0,{},215936,0,North America +2023-02-22,73456,6897,"[""Keyboard"", ""Wireless Mouse""]",3454.11,"{""promo"": ""12%""}",231469,1,North America +2023-12-12,73457,1712,"[""Charger""]",358.97,"{""seasonal"": ""24%""}",5677,0,South America +2023-03-02,73458,7181,"[""Phone"", ""Keyboard""]",4685.84,"{""seasonal"": ""29%""}",167087,0,Asia +2024-11-11,73459,5541,"[""Laptop"", ""Wireless Mouse""]",4814.28,{},10378,0,North America +2024-11-03,73460,7899,"[""Phone"", ""Headphones""]",293.65,{},28001,1,Europe +2023-03-19,73461,5764,"[""Monitor"", ""Keyboard""]",2260.27,{},64079,0,Europe +2023-04-01,73462,9593,"[""Keyboard"", ""Tablet""]",2381.12,"{""seasonal"": ""16%""}",98874,1,Asia +2023-09-07,73463,2609,"[""Phone"", ""Keyboard""]",3059.58,"{"""": ""9%""}",62941,0,Europe +2024-10-02,73464,3533,"[""Tablet""]",1555.33,{},260075,0,Africa +2023-07-14,73465,4298,"[""Keyboard"", ""Monitor""]",381.82,{},51165,0,South America +2023-09-11,73466,8995,"[""Charger"", ""Keyboard""]",4643.79,{},2703,1,Asia +2023-08-20,73467,9480,"[""Monitor"", ""Charger"", ""Keyboard""]",620.42,{},166460,0,North America +2023-09-14,73468,597,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1862.11,{},217217,0,Europe +2023-08-28,73469,9369,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3442.41,"{""loyalty"": ""19%""}",267166,0,South America +2023-04-03,73470,8493,"[""Laptop""]",2578.78,{},173399,1,Europe +2023-02-05,73471,7542,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4348.11,"{""loyalty"": ""18%""}",62894,0,South America +2023-10-24,73472,9608,"[""Phone""]",2657.16,{},252834,1,Africa +2023-03-14,73473,1774,"[""Laptop""]",2695.12,"{""seasonal"": ""23%""}",70897,0,Africa +2023-06-27,73474,1785,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4976.9,"{""promo"": ""19%""}",101178,0,Asia +2024-11-21,73475,3113,"[""Laptop""]",1460.16,"{""promo"": ""21%""}",76580,0,South America +2024-10-14,73476,8896,"[""Charger""]",3330.25,{},63617,1,North America +2024-02-24,73477,4430,"[""Charger"", ""Tablet""]",1671.93,{},65059,1,Africa +2024-08-21,73478,2449,"[""Headphones"", ""Charger""]",3699.11,"{""loyalty"": ""9%""}",240421,0,South America +2024-10-08,73479,5246,"[""Charger"", ""Keyboard"", ""Phone""]",332.38,{},171518,1,Europe +2024-06-27,73480,9019,"[""Phone""]",362.77,{},80185,1,South America +2024-02-04,73481,639,"[""Wireless Mouse"", ""Laptop""]",2734.64,"{""loyalty"": ""23%""}",92753,1,North America +2024-06-06,73482,1121,"[""Tablet"", ""Monitor"", ""Charger""]",2238.93,{},82654,1,North America +2024-06-15,73483,1524,"[""Phone"", ""Tablet""]",4525.53,"{""loyalty"": ""14%""}",157387,1,Africa +2023-10-19,73484,7754,"[""Tablet""]",4674.76,"{""promo"": ""26%""}",295372,1,Asia +2024-10-23,73485,5360,"[""Headphones""]",1078.6,{},132908,0,North America +2023-09-12,73486,6987,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1110.94,"{""seasonal"": ""26%""}",182635,0,Asia +2023-09-25,73487,1443,"[""Keyboard"", ""Headphones""]",345.16,{},213853,0,Europe +2023-08-07,73488,3284,"[""Phone"", ""Keyboard""]",2820.78,"{"""": ""22%""}",90999,1,South America +2023-10-23,73489,7319,"[""Headphones"", ""Keyboard"", ""Monitor""]",1308.63,"{""seasonal"": ""14%""}",275079,0,Europe +2023-02-08,73490,8811,"[""Laptop"", ""Headphones"", ""Monitor""]",4817.63,"{""promo"": ""25%""}",74328,0,North America +2023-01-02,73491,6848,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1907.94,"{"""": ""11%""}",66909,1,Asia +2024-07-10,73492,4065,"[""Wireless Mouse""]",4605.62,"{""loyalty"": ""24%""}",62677,1,Asia +2023-01-18,73493,9132,"[""Charger"", ""Monitor"", ""Headphones""]",3971.67,"{""seasonal"": ""21%""}",186174,0,Africa +2024-01-06,73494,9579,"[""Laptop"", ""Headphones""]",3746.95,"{"""": ""19%""}",230520,0,Africa +2024-06-16,73495,519,"[""Phone""]",2141.1,"{""seasonal"": ""27%""}",226202,1,North America +2023-03-09,73496,8923,"[""Keyboard"", ""Charger""]",1421.92,"{""seasonal"": ""17%""}",167728,0,Europe +2023-09-11,73497,5154,"[""Monitor"", ""Phone""]",3686.68,"{""seasonal"": ""6%""}",24245,0,South America +2023-04-02,73498,2781,"[""Wireless Mouse""]",1213.91,{},91802,1,Europe +2023-01-04,73499,9723,"[""Keyboard""]",4453.5,"{"""": ""16%""}",161705,1,South America +2023-10-09,73500,817,"[""Headphones""]",2361.07,"{"""": ""27%""}",84934,1,Asia +2023-02-02,73501,9357,"[""Monitor""]",1469.66,{},281861,0,Europe +2023-10-24,73502,6545,"[""Headphones"", ""Monitor"", ""Charger""]",4464.37,"{""seasonal"": ""7%""}",180678,0,Europe +2023-05-08,73503,7913,"[""Monitor"", ""Phone"", ""Keyboard""]",2048.18,{},68457,1,North America +2023-03-07,73504,1704,"[""Monitor""]",3946.21,"{""loyalty"": ""17%""}",186473,1,Africa +2024-04-13,73505,2805,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2315.48,"{""loyalty"": ""16%""}",215586,0,Africa +2024-05-19,73506,2320,"[""Laptop""]",2744.29,{},63608,1,Africa +2024-07-10,73507,7072,"[""Phone""]",2677.42,{},166550,0,Africa +2024-01-01,73508,4585,"[""Monitor""]",745.25,"{""seasonal"": ""29%""}",260167,1,Africa +2024-02-08,73509,3177,"[""Keyboard""]",643.33,"{""seasonal"": ""13%""}",112509,1,South America +2023-05-03,73510,5643,"[""Phone"", ""Tablet"", ""Laptop""]",76.78,{},125062,1,Africa +2023-03-13,73511,4540,"[""Keyboard""]",4562.49,{},274156,0,North America +2023-05-20,73512,6712,"[""Phone""]",4748.5,"{""seasonal"": ""29%""}",75028,0,Asia +2024-08-05,73513,1201,"[""Keyboard""]",199.65,{},280132,0,North America +2024-03-23,73514,7871,"[""Monitor"", ""Wireless Mouse""]",3151.78,"{""loyalty"": ""8%""}",298671,0,North America +2024-02-04,73515,1123,"[""Wireless Mouse""]",3295.87,{},68534,0,Europe +2024-11-09,73516,7195,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1659.6,"{""loyalty"": ""19%""}",185787,1,Africa +2023-06-07,73517,633,"[""Laptop"", ""Headphones""]",1655.38,"{""promo"": ""14%""}",62634,0,Africa +2024-11-02,73518,9878,"[""Laptop"", ""Wireless Mouse""]",82.16,{},165224,0,North America +2024-02-06,73519,6653,"[""Keyboard""]",4353.37,{},180812,1,South America +2023-06-14,73520,929,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2939.43,{},190683,0,North America +2023-11-13,73521,8461,"[""Monitor"", ""Headphones""]",587.0,"{"""": ""16%""}",130022,1,Asia +2023-06-06,73522,8898,"[""Phone"", ""Headphones""]",4878.98,"{""seasonal"": ""9%""}",168138,1,Asia +2024-10-11,73523,8772,"[""Keyboard"", ""Charger"", ""Headphones""]",1238.36,{},157551,0,Africa +2023-03-04,73524,6715,"[""Tablet"", ""Phone""]",3480.25,{},51691,0,North America +2023-10-08,73525,295,"[""Headphones"", ""Keyboard"", ""Phone""]",762.69,{},257198,0,North America +2024-04-03,73526,8805,"[""Wireless Mouse"", ""Monitor""]",4878.05,{},48874,1,South America +2024-10-18,73527,7341,"[""Charger"", ""Laptop""]",2494.45,{},32505,1,Africa +2023-03-15,73528,5691,"[""Headphones"", ""Keyboard"", ""Tablet""]",2179.79,"{""promo"": ""25%""}",44838,1,South America +2024-05-27,73529,2903,"[""Monitor"", ""Headphones""]",2430.57,{},285324,0,South America +2023-04-09,73530,6457,"[""Phone""]",2343.67,{},279692,1,South America +2024-01-06,73531,5966,"[""Headphones""]",3360.13,{},144555,0,Europe +2023-01-20,73532,7024,"[""Phone"", ""Keyboard""]",2265.22,"{""seasonal"": ""6%""}",102853,0,Africa +2023-05-13,73533,9449,"[""Headphones"", ""Phone"", ""Charger""]",4881.48,"{"""": ""8%""}",43180,0,Europe +2024-11-22,73534,6030,"[""Charger"", ""Laptop""]",110.47,"{""seasonal"": ""22%""}",13293,0,North America +2024-08-01,73535,3553,"[""Tablet"", ""Monitor""]",652.55,"{""loyalty"": ""13%""}",278911,0,Europe +2023-06-04,73536,7329,"[""Headphones"", ""Keyboard"", ""Tablet""]",1424.31,"{""seasonal"": ""5%""}",299739,1,Europe +2023-12-21,73537,4635,"[""Charger""]",2359.69,"{""seasonal"": ""12%""}",6664,1,Asia +2023-01-29,73538,4400,"[""Wireless Mouse""]",2271.98,{},139567,1,Africa +2023-10-10,73539,6201,"[""Headphones"", ""Phone""]",4897.5,"{"""": ""21%""}",55519,1,Asia +2024-04-13,73540,4430,"[""Phone"", ""Wireless Mouse""]",1864.76,{},268422,0,Asia +2024-11-29,73541,2893,"[""Charger"", ""Keyboard""]",697.32,{},194023,1,North America +2023-12-31,73542,1821,"[""Laptop"", ""Tablet"", ""Headphones""]",374.71,{},145055,0,Europe +2023-09-25,73543,3586,"[""Charger"", ""Phone"", ""Monitor""]",3598.47,{},239587,1,Africa +2023-03-07,73544,5802,"[""Monitor""]",2316.09,{},251607,0,Europe +2023-10-06,73545,491,"[""Tablet"", ""Monitor""]",3653.27,"{""loyalty"": ""29%""}",67707,0,Asia +2023-01-16,73546,9211,"[""Monitor"", ""Wireless Mouse""]",3935.41,"{""loyalty"": ""14%""}",35516,0,Africa +2023-04-08,73547,7010,"[""Laptop"", ""Wireless Mouse""]",3013.7,"{"""": ""24%""}",44947,1,South America +2024-05-14,73548,8157,"[""Wireless Mouse"", ""Phone""]",2259.16,{},56909,1,North America +2024-10-08,73549,3418,"[""Wireless Mouse""]",924.04,"{"""": ""23%""}",125397,1,Europe +2023-11-14,73550,3040,"[""Laptop""]",1086.04,{},105901,0,Europe +2023-03-18,73551,7723,"[""Keyboard"", ""Phone""]",4614.25,"{"""": ""13%""}",162504,0,Europe +2023-05-16,73552,9981,"[""Wireless Mouse"", ""Monitor""]",1376.52,"{""loyalty"": ""13%""}",85668,1,Europe +2023-07-14,73553,8231,"[""Monitor""]",1974.29,{},138758,1,South America +2024-03-25,73554,8420,"[""Laptop""]",1051.79,{},143181,0,Africa +2024-03-05,73555,3650,"[""Monitor""]",1814.42,"{"""": ""19%""}",15135,0,Africa +2023-12-31,73556,5066,"[""Tablet"", ""Monitor""]",338.06,{},236335,0,Europe +2023-04-09,73557,755,"[""Charger"", ""Tablet"", ""Monitor""]",2688.0,{},74414,1,Africa +2024-08-30,73558,7019,"[""Charger"", ""Tablet""]",4643.03,{},157879,1,North America +2024-01-29,73559,7268,"[""Charger""]",479.65,{},265418,0,North America +2023-05-20,73560,4214,"[""Tablet""]",3980.32,{},125651,1,Europe +2023-11-06,73561,8624,"[""Keyboard"", ""Charger""]",3754.37,"{""loyalty"": ""6%""}",224086,1,Asia +2023-02-18,73562,2083,"[""Charger""]",2487.89,"{""seasonal"": ""20%""}",54056,1,Africa +2023-02-12,73563,1268,"[""Laptop""]",2035.35,"{""loyalty"": ""23%""}",139917,1,Africa +2024-08-15,73564,1096,"[""Keyboard"", ""Headphones""]",4707.12,"{""seasonal"": ""7%""}",110962,1,Asia +2023-01-16,73565,8247,"[""Phone"", ""Monitor"", ""Keyboard""]",659.96,{},20761,0,North America +2024-03-16,73566,7377,"[""Headphones"", ""Keyboard"", ""Laptop""]",2598.38,"{""promo"": ""5%""}",124242,1,Asia +2024-01-11,73567,3101,"[""Keyboard""]",2209.02,{},129356,0,Africa +2024-09-15,73568,6211,"[""Wireless Mouse""]",298.02,"{""loyalty"": ""6%""}",209503,1,South America +2023-04-21,73569,8199,"[""Keyboard"", ""Monitor""]",1770.06,"{""loyalty"": ""30%""}",48855,0,North America +2023-08-18,73570,6570,"[""Wireless Mouse""]",4791.76,{},68871,0,South America +2023-08-26,73571,4767,"[""Laptop""]",3071.61,{},102611,0,Europe +2023-01-19,73572,802,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2744.92,"{""promo"": ""5%""}",127288,0,Europe +2024-01-02,73573,2027,"[""Wireless Mouse""]",1974.83,"{""promo"": ""27%""}",210794,0,Europe +2023-03-11,73574,2125,"[""Phone"", ""Keyboard"", ""Monitor""]",1309.08,"{""loyalty"": ""24%""}",39127,1,Africa +2023-03-22,73575,7505,"[""Charger"", ""Phone""]",1003.65,{},286743,1,Asia +2023-05-05,73576,8995,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",432.64,"{""seasonal"": ""23%""}",139353,0,South America +2024-06-06,73577,7941,"[""Phone"", ""Monitor"", ""Headphones""]",3867.73,{},130646,1,North America +2023-02-01,73578,5512,"[""Wireless Mouse""]",1934.24,"{""seasonal"": ""22%""}",53406,0,North America +2023-09-12,73579,1865,"[""Phone""]",473.94,{},247269,0,Asia +2024-03-05,73580,9369,"[""Charger"", ""Monitor""]",2946.49,{},175225,1,Africa +2024-09-04,73581,4124,"[""Wireless Mouse""]",4435.99,{},55858,1,North America +2024-12-11,73582,9529,"[""Laptop""]",155.04,{},137732,0,North America +2024-09-25,73583,2633,"[""Headphones""]",3275.52,"{""promo"": ""5%""}",151269,0,Africa +2023-06-20,73584,3181,"[""Keyboard""]",4579.5,"{""promo"": ""15%""}",177289,1,North America +2024-06-19,73585,8835,"[""Charger""]",842.84,{},83855,1,North America +2023-10-19,73586,5983,"[""Wireless Mouse""]",1880.44,"{""seasonal"": ""15%""}",77010,1,Africa +2023-11-23,73587,8743,"[""Charger"", ""Tablet""]",2600.54,{},138302,1,Asia +2023-10-20,73588,5306,"[""Charger""]",3069.92,"{""loyalty"": ""7%""}",130185,0,Europe +2024-05-13,73589,541,"[""Wireless Mouse""]",4963.58,{},28632,1,North America +2023-12-10,73590,6483,"[""Laptop"", ""Keyboard""]",3064.14,"{"""": ""15%""}",202733,0,South America +2023-04-24,73591,7853,"[""Monitor"", ""Phone""]",258.56,{},102302,1,Africa +2023-01-09,73592,3102,"[""Monitor"", ""Tablet"", ""Charger""]",4885.9,{},145873,0,South America +2023-01-23,73593,3529,"[""Phone"", ""Tablet""]",1152.04,{},146103,1,Africa +2024-05-12,73594,585,"[""Keyboard"", ""Tablet""]",1426.86,"{""promo"": ""16%""}",144442,0,South America +2024-02-25,73595,2457,"[""Monitor""]",876.97,"{""loyalty"": ""14%""}",72453,1,Europe +2023-03-19,73596,2629,"[""Keyboard"", ""Headphones""]",3883.07,{},20748,1,Asia +2024-01-03,73597,9523,"[""Wireless Mouse""]",2035.86,{},296437,1,South America +2023-03-16,73598,5926,"[""Wireless Mouse""]",1068.69,"{""promo"": ""11%""}",211880,0,Europe +2023-11-22,73599,8445,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",297.33,"{""seasonal"": ""18%""}",132173,0,Africa +2024-11-07,73600,4678,"[""Phone"", ""Keyboard""]",1904.88,"{""seasonal"": ""10%""}",168448,1,South America +2024-02-14,73601,8628,"[""Keyboard""]",1969.59,{},165649,1,North America +2023-01-10,73602,5774,"[""Monitor"", ""Keyboard"", ""Headphones""]",4677.14,{},239108,0,North America +2023-05-20,73603,1489,"[""Charger""]",1647.88,"{"""": ""6%""}",109436,0,Africa +2023-09-29,73604,9213,"[""Headphones"", ""Tablet"", ""Monitor""]",2325.92,"{""loyalty"": ""10%""}",298302,0,Africa +2024-05-21,73605,3658,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2546.83,"{"""": ""18%""}",69355,0,North America +2023-10-16,73606,5833,"[""Monitor"", ""Laptop""]",976.79,"{""loyalty"": ""23%""}",24962,0,Africa +2023-07-20,73607,8385,"[""Keyboard""]",4386.78,{},32306,1,Europe +2023-12-17,73608,3128,"[""Tablet"", ""Keyboard""]",972.39,"{"""": ""20%""}",22951,1,South America +2024-05-16,73609,2384,"[""Monitor""]",2415.58,{},98455,1,North America +2024-07-28,73610,2405,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1933.78,"{""loyalty"": ""17%""}",293349,1,Europe +2024-11-06,73611,601,"[""Laptop""]",4896.26,{},37323,0,Asia +2024-01-29,73612,90,"[""Headphones"", ""Phone""]",1348.05,{},205964,1,North America +2024-12-30,73613,587,"[""Keyboard"", ""Monitor"", ""Phone""]",3481.55,"{""loyalty"": ""26%""}",3445,0,South America +2023-12-04,73614,8407,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2652.35,{},174642,1,Europe +2023-09-28,73615,269,"[""Tablet"", ""Laptop""]",2906.72,{},203695,0,South America +2023-09-23,73616,1343,"[""Tablet"", ""Monitor"", ""Phone""]",1847.38,"{"""": ""6%""}",258110,1,Europe +2024-11-15,73617,8880,"[""Tablet""]",732.02,{},220581,1,Africa +2024-04-02,73618,6713,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1917.64,"{""seasonal"": ""5%""}",151942,0,Africa +2023-11-11,73619,4905,"[""Phone""]",2168.27,{},41511,1,Europe +2023-08-29,73620,484,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2391.44,"{""promo"": ""12%""}",22330,0,Africa +2024-10-04,73621,3219,"[""Phone""]",1975.77,{},126479,1,Africa +2023-01-07,73622,8009,"[""Phone"", ""Monitor""]",2238.01,"{""promo"": ""17%""}",200714,1,South America +2024-08-07,73623,848,"[""Laptop"", ""Charger""]",3397.38,"{""promo"": ""12%""}",77025,0,Asia +2024-06-19,73624,3562,"[""Charger"", ""Wireless Mouse""]",3702.28,{},267827,0,Asia +2023-05-28,73625,2990,"[""Wireless Mouse"", ""Charger""]",3800.43,{},81814,1,Africa +2023-06-22,73626,5703,"[""Charger"", ""Monitor""]",2823.1,{},239641,0,Africa +2023-05-29,73627,8526,"[""Wireless Mouse"", ""Monitor""]",2781.45,"{"""": ""23%""}",84259,1,Asia +2024-12-12,73628,542,"[""Phone"", ""Keyboard""]",3840.76,{},239585,1,Africa +2023-09-05,73629,5683,"[""Laptop"", ""Charger"", ""Keyboard""]",2662.6,"{""promo"": ""25%""}",76734,0,Africa +2024-03-07,73630,6137,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",300.41,"{""seasonal"": ""16%""}",87653,0,North America +2023-05-31,73631,6967,"[""Monitor""]",2922.31,"{""seasonal"": ""22%""}",62237,1,North America +2024-04-09,73632,4732,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3427.22,"{"""": ""23%""}",251128,1,North America +2024-08-24,73633,4955,"[""Headphones""]",326.83,{},128199,0,Africa +2024-12-31,73634,4220,"[""Laptop""]",1745.14,"{""loyalty"": ""25%""}",115239,1,Europe +2023-02-06,73635,7568,"[""Laptop"", ""Charger"", ""Keyboard""]",4467.25,{},81944,1,Asia +2023-06-28,73636,2423,"[""Phone"", ""Monitor""]",3193.87,{},273211,0,Africa +2024-06-02,73637,2558,"[""Keyboard"", ""Monitor""]",3837.51,{},169406,0,Europe +2024-10-21,73638,7838,"[""Monitor""]",2619.58,"{""loyalty"": ""14%""}",100362,1,Africa +2023-03-21,73639,8988,"[""Laptop"", ""Charger"", ""Phone""]",4540.13,"{""promo"": ""21%""}",88740,0,Asia +2023-05-11,73640,8099,"[""Phone"", ""Wireless Mouse""]",4492.41,"{""seasonal"": ""17%""}",1093,1,North America +2023-05-11,73641,529,"[""Laptop""]",694.51,"{""promo"": ""9%""}",69392,1,Asia +2024-06-28,73642,8347,"[""Keyboard""]",3414.07,"{""seasonal"": ""26%""}",161731,1,Europe +2024-08-10,73643,4896,"[""Phone"", ""Charger"", ""Headphones""]",903.25,"{""promo"": ""17%""}",63431,1,North America +2023-07-16,73644,4734,"[""Monitor"", ""Tablet""]",2084.71,"{""seasonal"": ""12%""}",249029,0,South America +2024-02-06,73645,1000,"[""Wireless Mouse""]",3857.68,{},137430,1,Asia +2023-11-27,73646,6337,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1595.7,{},139855,1,South America +2023-11-17,73647,3277,"[""Charger"", ""Tablet"", ""Phone""]",4099.94,{},1325,0,Africa +2024-09-24,73648,5106,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4831.5,"{""promo"": ""11%""}",206137,1,Asia +2023-02-27,73649,9097,"[""Keyboard""]",334.91,{},108052,0,Asia +2023-05-16,73650,8122,"[""Monitor"", ""Keyboard""]",961.82,"{""seasonal"": ""14%""}",140629,0,Europe +2024-02-26,73651,8948,"[""Wireless Mouse"", ""Laptop""]",4486.42,"{"""": ""8%""}",71520,0,South America +2023-12-30,73652,3550,"[""Headphones"", ""Monitor"", ""Phone""]",4423.75,{},190746,0,Europe +2024-09-17,73653,1370,"[""Monitor"", ""Laptop""]",4879.98,{},63840,1,South America +2024-08-29,73654,2435,"[""Charger""]",3250.51,{},176626,0,North America +2024-03-09,73655,7104,"[""Tablet"", ""Phone"", ""Laptop""]",1438.68,"{""promo"": ""22%""}",217496,0,North America +2024-05-08,73656,2587,"[""Monitor""]",425.42,"{""loyalty"": ""30%""}",281906,1,North America +2024-03-09,73657,28,"[""Keyboard"", ""Charger""]",726.36,{},72448,1,North America +2023-12-07,73658,9781,"[""Monitor"", ""Phone"", ""Charger""]",4819.57,"{""seasonal"": ""17%""}",288204,1,Asia +2023-12-09,73659,4966,"[""Charger""]",551.87,"{""seasonal"": ""30%""}",96228,0,Africa +2024-02-05,73660,2548,"[""Monitor""]",3751.65,{},17261,1,Africa +2024-09-04,73661,8860,"[""Phone"", ""Laptop""]",4258.16,"{""loyalty"": ""26%""}",206883,0,South America +2023-01-02,73662,5369,"[""Laptop"", ""Keyboard""]",2000.33,"{"""": ""16%""}",136985,1,South America +2024-12-11,73663,4887,"[""Charger"", ""Phone""]",1627.84,"{"""": ""27%""}",254264,1,Asia +2024-04-10,73664,9067,"[""Monitor"", ""Phone""]",4134.28,"{""seasonal"": ""26%""}",162887,0,Europe +2024-10-26,73665,7668,"[""Monitor"", ""Charger"", ""Headphones""]",4207.02,"{""seasonal"": ""26%""}",219436,0,South America +2024-05-11,73666,7416,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3318.12,"{""seasonal"": ""28%""}",128902,1,North America +2024-05-17,73667,4946,"[""Phone"", ""Laptop""]",4576.1,{},8841,0,South America +2024-05-10,73668,173,"[""Monitor""]",4067.07,"{""promo"": ""23%""}",250771,0,Asia +2023-06-10,73669,8852,"[""Monitor""]",1934.34,{},64025,0,Africa +2023-08-15,73670,8529,"[""Charger"", ""Phone"", ""Laptop""]",844.77,"{""promo"": ""11%""}",139302,0,South America +2024-03-29,73671,3822,"[""Keyboard""]",2587.86,{},111865,0,North America +2023-07-09,73672,4924,"[""Phone""]",4430.98,{},192620,0,Asia +2024-07-14,73673,4010,"[""Monitor""]",1219.37,"{""promo"": ""10%""}",144519,1,Asia +2024-02-03,73674,657,"[""Charger"", ""Monitor"", ""Headphones""]",1887.61,{},47082,1,North America +2023-10-15,73675,388,"[""Wireless Mouse""]",4160.02,{},191602,0,Asia +2023-11-22,73676,1323,"[""Monitor"", ""Phone""]",502.6,"{""promo"": ""13%""}",170819,1,North America +2024-10-01,73677,4690,"[""Wireless Mouse""]",3113.36,{},6186,0,Europe +2024-08-24,73678,5704,"[""Tablet"", ""Headphones"", ""Keyboard""]",475.75,{},219787,1,North America +2023-11-06,73679,9385,"[""Keyboard"", ""Charger"", ""Tablet""]",4339.75,"{"""": ""27%""}",147704,0,Africa +2023-05-18,73680,3327,"[""Phone"", ""Headphones""]",1525.67,{},179945,0,Europe +2023-03-28,73681,9334,"[""Phone""]",2752.57,{},143337,0,Africa +2023-09-18,73682,3842,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",59.39,{},222790,1,Africa +2023-01-19,73683,7474,"[""Monitor""]",1708.23,"{"""": ""19%""}",241960,1,Asia +2024-09-10,73684,9333,"[""Laptop""]",392.23,"{""promo"": ""24%""}",293472,1,Asia +2024-03-02,73685,6395,"[""Phone"", ""Headphones""]",3901.99,{},129504,1,Asia +2023-06-22,73686,2262,"[""Monitor"", ""Headphones""]",1612.52,"{""promo"": ""16%""}",45869,1,Africa +2023-01-03,73687,2545,"[""Tablet""]",1250.49,{},71929,0,Asia +2023-11-10,73688,4338,"[""Headphones""]",3667.91,{},38697,1,Africa +2023-03-05,73689,5748,"[""Headphones""]",4671.47,"{""loyalty"": ""5%""}",275408,1,North America +2023-12-31,73690,7405,"[""Headphones"", ""Keyboard""]",1268.5,"{""promo"": ""21%""}",287856,1,Europe +2023-09-16,73691,2966,"[""Headphones""]",1258.38,"{""loyalty"": ""14%""}",218237,1,Europe +2024-05-26,73692,5351,"[""Laptop"", ""Phone"", ""Monitor""]",362.66,"{""seasonal"": ""21%""}",217074,0,Asia +2024-11-13,73693,114,"[""Keyboard"", ""Laptop"", ""Headphones""]",1457.14,{},211375,0,South America +2023-11-28,73694,8081,"[""Laptop"", ""Monitor"", ""Charger""]",4183.79,{},88661,0,South America +2023-03-10,73695,5930,"[""Monitor"", ""Charger""]",4875.81,"{""seasonal"": ""21%""}",228122,0,Africa +2023-03-17,73696,8887,"[""Tablet"", ""Laptop"", ""Headphones""]",2658.06,"{"""": ""11%""}",157407,0,Africa +2024-09-10,73697,3659,"[""Monitor""]",2905.48,{},139450,1,South America +2023-01-14,73698,279,"[""Laptop"", ""Keyboard""]",4132.83,"{"""": ""24%""}",278671,0,Europe +2024-10-21,73699,6158,"[""Charger""]",3776.76,"{""seasonal"": ""5%""}",287766,0,Asia +2023-04-01,73700,4326,"[""Monitor""]",2988.29,{},147704,1,Europe +2024-08-19,73701,6244,"[""Laptop"", ""Charger"", ""Monitor""]",2966.21,"{"""": ""21%""}",86131,1,Asia +2024-07-17,73702,7723,"[""Charger"", ""Wireless Mouse""]",1884.55,"{""promo"": ""21%""}",299662,0,Europe +2024-12-21,73703,3577,"[""Keyboard"", ""Laptop""]",2918.51,"{""loyalty"": ""14%""}",224469,0,Africa +2023-01-04,73704,9787,"[""Monitor""]",495.98,"{""promo"": ""8%""}",212565,1,North America +2023-02-16,73705,8863,"[""Headphones"", ""Tablet""]",1819.33,{},160002,1,Europe +2023-01-11,73706,6303,"[""Phone"", ""Wireless Mouse""]",2571.09,{},200898,1,Asia +2024-03-25,73707,3511,"[""Phone""]",293.79,"{""promo"": ""7%""}",214096,1,Africa +2023-11-30,73708,4276,"[""Tablet"", ""Charger""]",491.26,{},122689,0,Africa +2023-09-01,73709,8227,"[""Tablet"", ""Monitor""]",2894.61,"{"""": ""27%""}",162866,0,South America +2023-11-15,73710,5430,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",415.15,"{"""": ""29%""}",6488,0,Europe +2023-12-19,73711,1449,"[""Keyboard""]",3900.99,{},150907,0,South America +2024-04-08,73712,4915,"[""Phone"", ""Monitor"", ""Tablet""]",3024.38,{},15257,0,Asia +2023-11-12,73713,6293,"[""Phone""]",1165.91,"{""loyalty"": ""23%""}",256104,1,Europe +2023-10-24,73714,7930,"[""Tablet"", ""Laptop""]",64.06,{},173150,1,South America +2023-07-02,73715,3757,"[""Monitor"", ""Charger"", ""Keyboard""]",3979.9,{},33399,0,Africa +2024-01-07,73716,9060,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2410.35,{},43333,1,Europe +2023-10-22,73717,770,"[""Headphones"", ""Laptop""]",2666.32,"{"""": ""10%""}",30324,1,South America +2024-04-23,73718,2714,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1935.04,"{""seasonal"": ""14%""}",59895,1,North America +2023-10-15,73719,3101,"[""Laptop"", ""Keyboard"", ""Phone""]",412.0,"{""seasonal"": ""9%""}",103941,0,Africa +2024-06-24,73720,6573,"[""Charger"", ""Laptop""]",2874.07,"{""loyalty"": ""23%""}",299930,0,South America +2023-08-13,73721,9970,"[""Keyboard""]",196.29,{},219469,1,Africa +2024-07-21,73722,8270,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1284.92,"{""loyalty"": ""11%""}",41468,1,North America +2024-11-03,73723,9701,"[""Headphones"", ""Monitor"", ""Phone""]",300.8,{},245563,0,Africa +2024-07-22,73724,8069,"[""Headphones""]",4432.72,"{""loyalty"": ""20%""}",259698,1,South America +2023-06-22,73725,3008,"[""Charger"", ""Keyboard"", ""Laptop""]",926.07,{},200610,1,Europe +2024-10-17,73726,7415,"[""Keyboard"", ""Monitor""]",3181.13,"{""promo"": ""16%""}",71751,1,South America +2024-06-17,73727,2964,"[""Charger""]",4753.86,{},238385,0,Asia +2023-08-05,73728,4628,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4822.8,"{"""": ""8%""}",29302,0,Asia +2024-02-06,73729,7497,"[""Monitor"", ""Phone"", ""Headphones""]",1068.59,"{""seasonal"": ""16%""}",65885,0,Asia +2024-08-02,73730,5465,"[""Phone""]",2714.56,"{""seasonal"": ""28%""}",49458,0,Africa +2024-01-27,73731,2633,"[""Tablet""]",4395.73,{},150629,1,Europe +2023-05-04,73732,2733,"[""Keyboard"", ""Charger""]",2885.98,"{"""": ""27%""}",213548,0,Asia +2023-06-07,73733,2669,"[""Headphones"", ""Phone"", ""Keyboard""]",3995.51,{},184701,0,Africa +2024-11-14,73734,7886,"[""Tablet"", ""Phone"", ""Monitor""]",648.42,{},278093,0,South America +2024-09-13,73735,5802,"[""Laptop""]",2090.99,{},283437,1,Asia +2023-07-27,73736,6074,"[""Keyboard"", ""Wireless Mouse""]",4842.38,"{""promo"": ""15%""}",90674,1,Europe +2024-03-07,73737,8396,"[""Monitor"", ""Phone""]",4233.35,{},251619,1,Africa +2024-04-28,73738,9707,"[""Charger"", ""Headphones""]",630.58,{},265336,0,Europe +2023-07-02,73739,166,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2672.9,"{""promo"": ""21%""}",101050,1,North America +2024-07-19,73740,7210,"[""Headphones"", ""Phone""]",209.5,"{""promo"": ""30%""}",15562,1,Africa +2023-11-02,73741,9003,"[""Charger"", ""Phone""]",4132.65,{},254046,1,Asia +2023-05-28,73742,1047,"[""Wireless Mouse""]",2317.37,{},1540,1,South America +2024-09-15,73743,4693,"[""Monitor"", ""Laptop"", ""Charger""]",3998.13,"{""promo"": ""25%""}",16373,1,Asia +2023-10-26,73744,4204,"[""Wireless Mouse""]",1596.22,"{"""": ""14%""}",92171,1,Asia +2023-03-03,73745,1728,"[""Tablet"", ""Keyboard"", ""Monitor""]",2216.61,"{""seasonal"": ""8%""}",205506,0,Asia +2024-03-12,73746,3414,"[""Laptop"", ""Charger""]",2240.43,{},113268,0,Asia +2023-05-14,73747,569,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4272.44,{},67602,0,South America +2023-04-25,73748,4558,"[""Headphones"", ""Tablet""]",3738.44,{},268464,1,Asia +2023-09-14,73749,9204,"[""Monitor"", ""Headphones"", ""Laptop""]",75.1,"{""promo"": ""14%""}",235916,0,North America +2024-05-11,73750,3751,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4399.34,{},180117,0,Africa +2023-07-24,73751,6512,"[""Phone""]",3228.01,{},181646,0,Africa +2024-05-16,73752,2987,"[""Laptop""]",1939.89,"{""promo"": ""24%""}",28088,1,Asia +2023-05-19,73753,4311,"[""Monitor""]",848.39,{},244077,0,Europe +2024-01-10,73754,3186,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",287.7,{},181563,0,North America +2024-01-08,73755,5919,"[""Headphones"", ""Keyboard""]",3807.23,{},40636,0,Africa +2024-08-23,73756,9385,"[""Keyboard""]",2944.74,{},53953,0,South America +2023-12-03,73757,1501,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4615.43,"{"""": ""17%""}",116213,0,Africa +2023-12-31,73758,6594,"[""Laptop"", ""Headphones""]",2695.36,{},185434,0,North America +2024-05-27,73759,8928,"[""Keyboard"", ""Headphones"", ""Monitor""]",781.94,"{""loyalty"": ""28%""}",299718,0,North America +2023-01-27,73760,4852,"[""Phone""]",4893.69,{},218557,0,Europe +2023-04-27,73761,124,"[""Phone""]",806.45,{},167761,0,Africa +2023-02-19,73762,6690,"[""Phone"", ""Monitor""]",2184.1,{},175373,0,Europe +2023-05-06,73763,9981,"[""Phone"", ""Tablet"", ""Keyboard""]",1002.03,"{""promo"": ""25%""}",252607,0,North America +2024-04-12,73764,1843,"[""Wireless Mouse""]",2962.6,{},151842,0,North America +2023-03-04,73765,7874,"[""Laptop"", ""Monitor"", ""Phone""]",2946.98,{},41586,0,Africa +2024-11-01,73766,902,"[""Phone"", ""Keyboard""]",1512.0,{},117530,0,South America +2023-04-05,73767,4566,"[""Charger"", ""Tablet""]",3958.2,"{"""": ""23%""}",218964,1,Africa +2023-10-17,73768,2237,"[""Phone"", ""Wireless Mouse""]",705.37,"{""seasonal"": ""12%""}",209776,1,Africa +2024-06-25,73769,6025,"[""Laptop""]",4579.09,"{""seasonal"": ""17%""}",126757,0,South America +2024-02-15,73770,9904,"[""Headphones"", ""Tablet"", ""Laptop""]",2266.38,{},129670,0,Asia +2024-07-24,73771,4116,"[""Monitor""]",3296.31,"{""loyalty"": ""8%""}",39358,0,Europe +2023-01-14,73772,5137,"[""Headphones""]",1484.37,"{""promo"": ""6%""}",216124,1,North America +2024-11-22,73773,307,"[""Phone"", ""Monitor"", ""Charger""]",3135.73,{},126219,1,Europe +2024-02-25,73774,8410,"[""Wireless Mouse"", ""Charger""]",559.24,"{""promo"": ""27%""}",14544,1,South America +2023-12-05,73775,8172,"[""Tablet""]",936.14,{},14839,1,South America +2023-11-28,73776,8184,"[""Headphones""]",4626.05,{},179074,1,Asia +2024-09-24,73777,4874,"[""Charger"", ""Keyboard""]",3572.1,{},233430,0,Africa +2024-09-19,73778,2540,"[""Monitor"", ""Charger"", ""Laptop""]",3322.41,"{""promo"": ""10%""}",64956,1,South America +2023-08-23,73779,7307,"[""Monitor"", ""Keyboard""]",3396.73,{},25976,0,North America +2024-12-05,73780,3213,"[""Keyboard"", ""Phone""]",3416.9,{},259086,1,Asia +2023-01-10,73781,9026,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3286.52,"{""promo"": ""7%""}",113161,0,South America +2024-11-12,73782,9090,"[""Charger"", ""Tablet"", ""Headphones""]",2154.88,"{"""": ""25%""}",32132,1,Asia +2023-06-22,73783,53,"[""Laptop"", ""Monitor"", ""Charger""]",3096.23,{},151727,1,South America +2023-06-08,73784,6861,"[""Headphones"", ""Monitor"", ""Keyboard""]",4715.29,{},107475,1,North America +2024-12-28,73785,2814,"[""Keyboard"", ""Monitor""]",2660.25,"{""seasonal"": ""15%""}",260199,0,Africa +2024-05-27,73786,6330,"[""Charger"", ""Phone""]",644.52,"{""seasonal"": ""19%""}",285855,1,Africa +2023-12-11,73787,5918,"[""Laptop"", ""Wireless Mouse""]",3409.25,"{""seasonal"": ""29%""}",162160,0,South America +2023-08-07,73788,9465,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2108.28,"{""promo"": ""10%""}",263528,1,Africa +2024-06-24,73789,774,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3981.95,"{""loyalty"": ""29%""}",69065,1,Asia +2024-08-28,73790,1383,"[""Keyboard"", ""Monitor""]",1407.8,{},127162,0,Europe +2024-12-04,73791,2238,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3236.55,"{""seasonal"": ""6%""}",280436,1,Asia +2024-04-26,73792,3246,"[""Headphones"", ""Charger""]",2675.33,{},166609,1,North America +2024-05-01,73793,3773,"[""Wireless Mouse"", ""Keyboard""]",166.34,"{"""": ""10%""}",37727,1,South America +2023-05-05,73794,8209,"[""Charger""]",4844.12,"{""loyalty"": ""13%""}",232989,0,Africa +2023-10-28,73795,1891,"[""Keyboard""]",261.69,{},168751,0,South America +2024-07-19,73796,9133,"[""Headphones""]",3988.24,"{""promo"": ""12%""}",85352,0,North America +2023-01-16,73797,5797,"[""Keyboard"", ""Tablet""]",983.9,"{"""": ""25%""}",26117,1,Asia +2023-08-14,73798,5573,"[""Tablet"", ""Laptop""]",2268.52,{},122450,1,Europe +2023-07-27,73799,6351,"[""Monitor""]",3665.43,"{""promo"": ""21%""}",191024,0,North America +2024-09-17,73800,9069,"[""Tablet""]",351.37,{},102226,1,North America +2024-01-03,73801,9470,"[""Laptop"", ""Monitor""]",1891.62,{},285698,1,Europe +2024-12-16,73802,4658,"[""Keyboard"", ""Headphones""]",1464.27,"{"""": ""25%""}",33399,0,Europe +2023-08-28,73803,5596,"[""Wireless Mouse"", ""Charger""]",117.33,"{""promo"": ""12%""}",9635,1,Africa +2023-11-11,73804,3338,"[""Laptop"", ""Charger""]",1118.19,"{""seasonal"": ""19%""}",166857,1,North America +2024-03-31,73805,9818,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3564.7,"{""loyalty"": ""27%""}",60922,0,Asia +2023-09-19,73806,6159,"[""Charger"", ""Laptop"", ""Keyboard""]",2016.67,"{"""": ""12%""}",138515,1,Africa +2024-10-13,73807,204,"[""Wireless Mouse"", ""Phone""]",2684.62,"{"""": ""22%""}",35522,0,North America +2023-09-18,73808,9012,"[""Laptop""]",1219.89,"{""promo"": ""15%""}",67294,0,South America +2023-08-25,73809,2685,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2015.28,"{""promo"": ""12%""}",168716,1,Africa +2023-07-17,73810,5709,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2720.34,"{""promo"": ""23%""}",71096,0,North America +2024-02-21,73811,650,"[""Headphones"", ""Tablet"", ""Laptop""]",971.76,{},214967,1,North America +2023-02-27,73812,586,"[""Headphones"", ""Tablet"", ""Keyboard""]",1822.49,"{"""": ""23%""}",221966,1,Europe +2023-03-27,73813,2226,"[""Monitor""]",2809.71,{},8844,0,Africa +2023-05-10,73814,6392,"[""Laptop""]",3669.1,"{"""": ""14%""}",13845,1,Africa +2023-07-26,73815,8630,"[""Keyboard"", ""Charger"", ""Laptop""]",1191.06,"{""seasonal"": ""21%""}",259623,0,North America +2024-09-17,73816,4013,"[""Headphones""]",866.87,"{""promo"": ""14%""}",18500,1,Europe +2023-08-01,73817,2369,"[""Phone"", ""Charger""]",3744.33,{},174667,0,South America +2023-12-16,73818,9348,"[""Phone""]",3034.49,"{""loyalty"": ""11%""}",71367,0,Europe +2024-10-06,73819,2339,"[""Phone"", ""Headphones"", ""Keyboard""]",1619.11,{},182477,1,South America +2023-06-28,73820,3681,"[""Tablet"", ""Charger"", ""Monitor""]",1813.56,{},176036,1,South America +2023-01-16,73821,5222,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",596.53,"{"""": ""24%""}",269777,0,Europe +2024-12-10,73822,990,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3816.95,"{""promo"": ""12%""}",56636,1,Europe +2024-06-17,73823,1673,"[""Headphones"", ""Laptop"", ""Keyboard""]",4348.36,"{""seasonal"": ""30%""}",281084,0,Asia +2023-06-19,73824,8829,"[""Charger""]",704.5,"{""promo"": ""23%""}",227852,1,Africa +2023-07-25,73825,3952,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1462.28,"{"""": ""9%""}",135318,1,South America +2023-06-10,73826,5776,"[""Wireless Mouse""]",2167.64,"{"""": ""6%""}",117504,0,Asia +2023-01-24,73827,8746,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",501.32,{},197043,0,Africa +2023-05-23,73828,379,"[""Tablet"", ""Phone"", ""Monitor""]",2849.53,"{""loyalty"": ""17%""}",298021,0,South America +2024-02-24,73829,1165,"[""Headphones""]",2670.13,"{""loyalty"": ""16%""}",275131,0,Africa +2024-02-17,73830,2308,"[""Tablet"", ""Phone"", ""Keyboard""]",1958.71,{},176133,0,Africa +2024-12-03,73831,8646,"[""Charger""]",4140.54,"{"""": ""20%""}",25264,1,Africa +2024-03-11,73832,1882,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4749.68,{},181735,1,North America +2024-03-09,73833,1480,"[""Wireless Mouse""]",3501.25,{},235163,1,Asia +2024-08-16,73834,7285,"[""Tablet"", ""Headphones""]",2107.98,"{""promo"": ""7%""}",176180,1,North America +2023-04-17,73835,7712,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3732.95,{},204810,0,Asia +2024-07-28,73836,9912,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1906.38,"{""promo"": ""18%""}",235492,1,South America +2024-03-04,73837,6605,"[""Laptop"", ""Keyboard"", ""Charger""]",746.59,"{"""": ""25%""}",158769,1,Europe +2023-06-28,73838,1679,"[""Headphones"", ""Monitor""]",3097.2,"{"""": ""10%""}",223835,1,South America +2023-06-13,73839,2685,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3207.12,"{"""": ""27%""}",223622,1,Africa +2024-03-08,73840,6247,"[""Monitor""]",3854.81,{},125846,0,Asia +2023-08-03,73841,7813,"[""Keyboard"", ""Charger"", ""Headphones""]",983.01,"{""seasonal"": ""23%""}",210774,0,Europe +2024-09-18,73842,9048,"[""Charger""]",3961.28,{},185994,0,North America +2024-06-10,73843,9534,"[""Phone"", ""Headphones""]",4107.99,{},106461,1,South America +2023-08-04,73844,537,"[""Tablet"", ""Phone""]",2685.44,"{"""": ""23%""}",165995,1,North America +2023-02-26,73845,5073,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4874.61,{},179621,1,South America +2023-10-30,73846,6160,"[""Tablet""]",3945.57,"{""promo"": ""8%""}",3622,1,Africa +2023-04-02,73847,3813,"[""Headphones"", ""Tablet""]",4410.91,"{""seasonal"": ""9%""}",182194,0,North America +2023-05-24,73848,8202,"[""Keyboard""]",4275.32,"{""seasonal"": ""18%""}",44016,1,South America +2024-07-07,73849,6940,"[""Monitor""]",4528.15,{},257787,1,South America +2024-06-28,73850,6429,"[""Charger""]",1146.11,"{"""": ""23%""}",134569,0,Asia +2023-09-05,73851,8194,"[""Monitor""]",2830.29,"{""seasonal"": ""18%""}",215038,1,South America +2024-11-06,73852,1311,"[""Headphones""]",1798.45,{},147111,0,North America +2023-09-06,73853,3053,"[""Wireless Mouse""]",3613.7,{},145338,1,Africa +2023-08-28,73854,2903,"[""Monitor""]",409.74,"{""seasonal"": ""20%""}",225601,0,South America +2024-09-03,73855,589,"[""Phone"", ""Keyboard""]",2343.94,{},160468,0,Europe +2023-01-13,73856,3594,"[""Wireless Mouse"", ""Monitor""]",2189.86,"{"""": ""11%""}",47584,0,South America +2023-05-10,73857,3687,"[""Laptop"", ""Charger""]",70.7,"{"""": ""10%""}",256614,1,South America +2023-01-13,73858,6827,"[""Monitor"", ""Phone"", ""Laptop""]",3096.3,"{""loyalty"": ""16%""}",70249,1,Europe +2024-05-31,73859,3582,"[""Keyboard"", ""Monitor"", ""Phone""]",4206.83,{},98650,1,Europe +2023-09-27,73860,1698,"[""Wireless Mouse"", ""Laptop""]",3450.48,{},273287,0,North America +2023-01-02,73861,1165,"[""Keyboard""]",2173.92,"{"""": ""8%""}",262374,0,South America +2023-08-28,73862,3082,"[""Monitor"", ""Charger"", ""Keyboard""]",3655.7,{},243275,0,Europe +2024-08-26,73863,9924,"[""Charger"", ""Monitor""]",1545.58,{},93000,0,Africa +2024-12-22,73864,1840,"[""Phone"", ""Wireless Mouse""]",3213.19,"{""seasonal"": ""10%""}",154405,1,Europe +2024-12-03,73865,8958,"[""Phone"", ""Charger"", ""Laptop""]",1269.71,{},140391,1,North America +2024-08-20,73866,8380,"[""Keyboard"", ""Phone""]",1578.39,"{""seasonal"": ""6%""}",189155,0,Africa +2024-01-30,73867,9256,"[""Phone"", ""Charger""]",545.86,{},112631,1,Asia +2023-01-21,73868,6693,"[""Laptop"", ""Phone""]",3865.32,{},105025,1,Africa +2023-09-30,73869,1845,"[""Monitor"", ""Headphones""]",2112.95,"{""seasonal"": ""10%""}",209786,0,South America +2024-02-09,73870,6213,"[""Phone"", ""Keyboard"", ""Monitor""]",4567.53,{},129774,1,North America +2024-01-14,73871,1562,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1147.13,"{""promo"": ""28%""}",138907,0,Europe +2023-11-05,73872,9967,"[""Keyboard""]",300.08,{},112433,0,South America +2023-09-01,73873,2184,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3351.98,"{""promo"": ""29%""}",113066,0,North America +2023-10-09,73874,2354,"[""Headphones"", ""Keyboard"", ""Tablet""]",2978.33,"{""seasonal"": ""26%""}",131502,1,North America +2023-10-20,73875,6780,"[""Charger""]",4823.97,"{""seasonal"": ""29%""}",267855,1,South America +2024-11-06,73876,4310,"[""Headphones""]",4682.48,{},91338,1,Europe +2024-06-24,73877,7293,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2007.51,"{""loyalty"": ""24%""}",96259,0,Africa +2023-05-27,73878,2131,"[""Keyboard""]",2338.57,"{"""": ""5%""}",104369,1,Europe +2023-07-03,73879,5257,"[""Wireless Mouse""]",887.65,{},274196,0,Africa +2024-01-28,73880,5815,"[""Headphones"", ""Tablet""]",1626.86,"{""loyalty"": ""16%""}",290773,1,Asia +2023-01-03,73881,4973,"[""Phone"", ""Headphones""]",3489.48,{},46999,1,North America +2024-12-05,73882,2440,"[""Charger""]",552.94,"{""promo"": ""25%""}",51755,1,South America +2024-05-22,73883,6140,"[""Charger"", ""Laptop""]",4434.32,{},152671,1,Europe +2024-04-20,73884,822,"[""Wireless Mouse"", ""Headphones""]",178.54,"{"""": ""15%""}",19185,0,Asia +2024-07-06,73885,2005,"[""Charger""]",1958.72,{},16924,1,Africa +2023-03-16,73886,8819,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2319.13,"{""seasonal"": ""14%""}",95081,0,Europe +2024-04-19,73887,3898,"[""Headphones"", ""Tablet"", ""Charger""]",4135.5,{},188816,1,Europe +2024-05-22,73888,6007,"[""Tablet"", ""Monitor""]",1781.99,{},173153,0,South America +2024-11-15,73889,6199,"[""Laptop"", ""Headphones"", ""Charger""]",4242.88,{},197101,0,Asia +2024-11-09,73890,7220,"[""Phone""]",1902.37,"{""seasonal"": ""20%""}",53083,1,North America +2024-05-27,73891,9966,"[""Keyboard"", ""Charger""]",1149.4,{},248355,0,Europe +2024-09-08,73892,3934,"[""Monitor""]",857.36,"{""promo"": ""11%""}",230125,0,Europe +2023-01-21,73893,6380,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3281.66,{},224392,1,South America +2024-02-10,73894,19,"[""Laptop""]",134.79,"{""seasonal"": ""5%""}",125762,1,Asia +2023-07-05,73895,8775,"[""Headphones""]",2746.43,{},259802,1,Africa +2024-09-20,73896,7971,"[""Keyboard""]",1451.04,{},266215,1,South America +2023-08-26,73897,8336,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3836.31,"{""seasonal"": ""14%""}",205398,1,North America +2024-07-13,73898,4742,"[""Phone""]",4624.1,"{""promo"": ""12%""}",271651,1,Africa +2024-11-15,73899,9390,"[""Phone""]",3232.24,"{""loyalty"": ""30%""}",92691,1,Africa +2023-09-18,73900,9462,"[""Monitor""]",3048.46,"{""promo"": ""23%""}",59507,0,Europe +2024-05-20,73901,5379,"[""Charger""]",4671.0,{},267972,1,Europe +2024-08-24,73902,2705,"[""Monitor"", ""Charger"", ""Laptop""]",4575.23,{},261885,1,Europe +2023-06-12,73903,4911,"[""Wireless Mouse"", ""Laptop""]",1821.92,"{""loyalty"": ""7%""}",83054,0,South America +2024-06-01,73904,1846,"[""Monitor"", ""Keyboard"", ""Charger""]",578.53,{},242175,0,Asia +2023-08-16,73905,6361,"[""Phone"", ""Laptop"", ""Headphones""]",3049.77,"{""seasonal"": ""7%""}",22848,1,Europe +2023-12-15,73906,2247,"[""Phone"", ""Tablet""]",3479.31,{},270439,1,Europe +2024-10-03,73907,2253,"[""Keyboard"", ""Wireless Mouse""]",1251.36,{},278935,1,North America +2024-06-08,73908,1205,"[""Wireless Mouse""]",2866.94,"{"""": ""30%""}",61829,1,North America +2023-08-03,73909,4445,"[""Monitor"", ""Charger"", ""Keyboard""]",4585.13,"{"""": ""29%""}",239467,1,Asia +2024-09-17,73910,1666,"[""Headphones"", ""Charger"", ""Phone""]",4327.57,"{"""": ""5%""}",59033,0,South America +2023-07-02,73911,3799,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4485.56,"{""loyalty"": ""17%""}",134573,1,South America +2024-10-06,73912,359,"[""Laptop""]",100.35,"{""seasonal"": ""27%""}",102518,0,South America +2024-02-18,73913,4258,"[""Phone""]",3424.77,"{""promo"": ""5%""}",19106,0,Europe +2023-05-03,73914,8023,"[""Charger"", ""Phone""]",252.78,{},205405,0,North America +2023-05-31,73915,4178,"[""Monitor""]",2082.87,{},147609,0,Asia +2023-07-29,73916,6547,"[""Headphones"", ""Tablet"", ""Phone""]",4646.24,"{"""": ""8%""}",23716,1,Europe +2023-12-18,73917,9759,"[""Wireless Mouse""]",2673.01,"{""loyalty"": ""17%""}",102004,1,Africa +2024-05-21,73918,1010,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2413.77,{},253525,0,Europe +2023-10-22,73919,8280,"[""Keyboard"", ""Phone"", ""Charger""]",1099.09,{},249372,0,Africa +2024-03-02,73920,8549,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",137.19,{},187464,1,Africa +2023-09-21,73921,3788,"[""Keyboard"", ""Headphones"", ""Laptop""]",2228.44,"{""seasonal"": ""28%""}",65597,0,Europe +2024-02-08,73922,6881,"[""Wireless Mouse"", ""Tablet""]",1566.43,{},98328,1,North America +2023-07-04,73923,1154,"[""Phone"", ""Tablet""]",1631.12,{},105509,0,South America +2024-02-11,73924,9861,"[""Phone"", ""Charger""]",3175.81,{},200250,1,South America +2024-10-15,73925,6475,"[""Headphones"", ""Phone""]",2496.72,"{""seasonal"": ""20%""}",174644,1,Asia +2023-06-06,73926,411,"[""Phone"", ""Headphones""]",228.42,"{""seasonal"": ""5%""}",12786,0,South America +2023-11-18,73927,3188,"[""Keyboard"", ""Headphones""]",1725.65,{},132909,0,North America +2024-05-16,73928,2107,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",227.36,"{""loyalty"": ""22%""}",50812,1,North America +2023-02-14,73929,2109,"[""Headphones"", ""Laptop"", ""Keyboard""]",4595.95,"{""loyalty"": ""23%""}",177707,1,North America +2023-08-07,73930,7464,"[""Keyboard"", ""Tablet""]",2380.98,{},251102,1,Africa +2024-09-04,73931,9157,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4374.24,{},195037,1,Africa +2024-02-07,73932,4265,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2197.28,"{"""": ""19%""}",104313,1,South America +2024-06-05,73933,1833,"[""Phone"", ""Monitor"", ""Headphones""]",2630.41,{},70908,0,North America +2023-11-18,73934,969,"[""Keyboard"", ""Monitor""]",4635.42,{},229133,0,North America +2023-11-04,73935,7425,"[""Laptop""]",3988.21,{},48957,1,North America +2023-08-28,73936,2841,"[""Charger"", ""Wireless Mouse""]",905.14,{},86484,1,Asia +2024-11-30,73937,7090,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",63.28,"{""promo"": ""9%""}",8955,0,Asia +2023-08-08,73938,7805,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",651.32,{},244219,1,North America +2023-03-19,73939,4187,"[""Charger"", ""Laptop""]",2920.24,{},48032,0,South America +2024-06-04,73940,3452,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4518.56,"{"""": ""16%""}",118795,0,Asia +2023-12-26,73941,8206,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2214.21,"{"""": ""8%""}",138937,0,Africa +2023-12-05,73942,3617,"[""Headphones"", ""Charger"", ""Keyboard""]",4143.8,{},128910,0,Africa +2024-09-19,73943,7333,"[""Keyboard"", ""Headphones""]",1943.93,{},142529,1,Europe +2023-04-26,73944,493,"[""Keyboard"", ""Headphones""]",732.04,{},216538,0,Europe +2024-11-12,73945,5828,"[""Tablet"", ""Phone"", ""Laptop""]",3081.98,"{""loyalty"": ""12%""}",51580,1,Asia +2024-04-30,73946,6465,"[""Phone"", ""Charger"", ""Keyboard""]",3522.31,"{"""": ""16%""}",91894,1,South America +2024-07-26,73947,8366,"[""Keyboard""]",4906.54,"{"""": ""9%""}",213319,0,South America +2023-12-19,73948,2700,"[""Phone"", ""Keyboard""]",474.67,"{""loyalty"": ""28%""}",204678,1,Asia +2024-07-05,73949,4485,"[""Laptop"", ""Monitor"", ""Charger""]",4045.61,{},10892,1,South America +2024-08-13,73950,7782,"[""Laptop"", ""Charger""]",3834.32,"{""loyalty"": ""21%""}",21184,0,South America +2024-07-28,73951,1299,"[""Headphones"", ""Keyboard"", ""Monitor""]",1475.58,{},273634,0,South America +2024-09-18,73952,5283,"[""Keyboard"", ""Laptop""]",3718.32,"{""seasonal"": ""23%""}",134643,0,South America +2023-02-17,73953,3838,"[""Headphones""]",3358.83,"{"""": ""13%""}",109766,0,North America +2023-11-15,73954,8364,"[""Keyboard"", ""Phone"", ""Monitor""]",311.26,"{"""": ""19%""}",150244,1,Europe +2023-07-28,73955,541,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",745.46,{},283022,1,North America +2024-10-19,73956,7075,"[""Headphones"", ""Monitor"", ""Laptop""]",2310.03,"{""loyalty"": ""6%""}",260926,1,Europe +2023-05-25,73957,9124,"[""Phone"", ""Headphones"", ""Charger""]",1557.95,"{""promo"": ""29%""}",159657,1,Europe +2023-07-17,73958,7099,"[""Wireless Mouse"", ""Headphones""]",1045.76,{},271825,0,North America +2024-06-13,73959,383,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4874.75,"{"""": ""5%""}",231376,0,North America +2023-05-01,73960,2675,"[""Keyboard"", ""Headphones""]",3723.72,"{""promo"": ""23%""}",36322,1,South America +2023-08-14,73961,4105,"[""Phone"", ""Tablet""]",3056.24,{},10706,1,Asia +2023-12-30,73962,2093,"[""Monitor""]",4708.2,"{""seasonal"": ""6%""}",220534,0,Europe +2023-06-20,73963,2563,"[""Keyboard""]",4986.19,{},192713,0,Asia +2023-12-25,73964,3336,"[""Keyboard""]",168.65,{},129907,0,Asia +2024-06-11,73965,5411,"[""Keyboard"", ""Monitor""]",4298.8,{},206295,1,Africa +2024-03-18,73966,2462,"[""Phone"", ""Monitor""]",3640.77,"{""seasonal"": ""9%""}",139477,1,South America +2024-02-12,73967,6989,"[""Headphones"", ""Charger"", ""Phone""]",1193.64,{},1917,0,Asia +2024-10-20,73968,9649,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2604.9,{},291288,1,South America +2024-11-04,73969,6486,"[""Headphones"", ""Phone""]",813.88,"{"""": ""15%""}",21548,1,Africa +2023-10-30,73970,8076,"[""Laptop"", ""Keyboard"", ""Tablet""]",3095.47,"{""loyalty"": ""24%""}",256086,1,Europe +2024-08-05,73971,9038,"[""Headphones"", ""Tablet""]",4454.45,{},60168,1,Africa +2024-10-19,73972,6702,"[""Keyboard""]",703.11,"{""seasonal"": ""19%""}",101804,1,North America +2023-10-31,73973,5705,"[""Headphones"", ""Phone"", ""Charger""]",191.61,{},262348,0,North America +2023-10-16,73974,6029,"[""Headphones"", ""Laptop""]",4591.73,{},143201,1,Europe +2024-06-10,73975,3878,"[""Laptop""]",4295.48,{},205005,0,Africa +2024-07-11,73976,9359,"[""Wireless Mouse""]",231.93,{},225038,0,Europe +2024-04-15,73977,5726,"[""Monitor"", ""Laptop"", ""Keyboard""]",4040.42,{},260534,0,Asia +2023-12-17,73978,7044,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4448.31,{},293862,1,Africa +2023-01-10,73979,4837,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2290.79,"{""promo"": ""12%""}",65254,1,South America +2023-10-31,73980,8266,"[""Phone"", ""Headphones""]",3435.57,{},38204,0,Africa +2024-09-05,73981,7680,"[""Charger"", ""Tablet"", ""Monitor""]",3821.01,{},65671,1,South America +2024-05-07,73982,2208,"[""Wireless Mouse"", ""Phone""]",709.04,"{"""": ""30%""}",182493,0,Asia +2023-07-04,73983,9120,"[""Monitor"", ""Tablet""]",2360.42,{},20732,1,North America +2024-11-22,73984,4650,"[""Charger"", ""Keyboard""]",807.72,"{""promo"": ""11%""}",78982,0,Asia +2023-05-25,73985,8286,"[""Wireless Mouse""]",3053.06,"{"""": ""11%""}",198302,0,Asia +2024-06-09,73986,5453,"[""Phone"", ""Keyboard""]",2828.28,{},128099,1,Europe +2024-02-09,73987,3709,"[""Monitor"", ""Phone""]",218.34,{},243759,0,South America +2024-11-11,73988,6579,"[""Charger"", ""Tablet"", ""Phone""]",1272.34,"{""seasonal"": ""14%""}",25724,0,Europe +2023-09-13,73989,4585,"[""Tablet"", ""Monitor"", ""Charger""]",1739.92,{},92351,1,Africa +2023-07-28,73990,3617,"[""Tablet"", ""Headphones"", ""Charger""]",4864.12,"{""seasonal"": ""21%""}",107096,1,South America +2023-09-19,73991,5497,"[""Tablet"", ""Wireless Mouse""]",1029.81,{},200041,1,North America +2023-05-06,73992,269,"[""Headphones""]",1072.41,"{""promo"": ""22%""}",270499,1,Asia +2024-08-23,73993,1409,"[""Laptop"", ""Keyboard""]",1939.13,{},50029,1,South America +2024-06-27,73994,5031,"[""Keyboard""]",742.57,"{""seasonal"": ""5%""}",249904,1,Europe +2024-08-09,73995,9572,"[""Charger"", ""Monitor""]",4621.08,"{""loyalty"": ""10%""}",199863,0,South America +2023-08-05,73996,8676,"[""Keyboard""]",4884.79,{},148586,0,Asia +2023-11-13,73997,2233,"[""Wireless Mouse"", ""Headphones""]",3179.38,"{""loyalty"": ""30%""}",281649,1,Africa +2024-01-12,73998,7490,"[""Headphones""]",4019.03,"{"""": ""14%""}",99063,0,Africa +2023-03-16,73999,8783,"[""Wireless Mouse""]",2670.92,{},242077,0,Asia +2024-04-01,74000,2398,"[""Charger"", ""Wireless Mouse""]",4442.89,"{""loyalty"": ""5%""}",122373,0,North America +2024-11-11,74001,7707,"[""Charger"", ""Tablet"", ""Headphones""]",3185.12,{},286420,1,Africa +2023-11-11,74002,5854,"[""Phone""]",3422.65,{},10657,1,North America +2023-07-30,74003,2257,"[""Laptop""]",3203.57,"{"""": ""24%""}",44653,0,North America +2024-11-16,74004,8274,"[""Phone"", ""Laptop""]",659.74,{},136683,1,Africa +2024-08-11,74005,456,"[""Tablet"", ""Charger"", ""Monitor""]",450.76,"{"""": ""12%""}",79330,0,Africa +2023-04-19,74006,3013,"[""Phone"", ""Tablet""]",3496.82,{},248932,0,Africa +2024-04-26,74007,1740,"[""Laptop"", ""Headphones""]",4615.82,{},13559,1,Africa +2023-05-22,74008,9308,"[""Tablet""]",4028.48,{},240206,0,Asia +2023-06-20,74009,5566,"[""Laptop""]",3451.33,{},213935,0,Asia +2024-02-02,74010,2424,"[""Wireless Mouse""]",1889.37,{},35485,0,Asia +2023-02-03,74011,3939,"[""Tablet"", ""Keyboard""]",2634.7,{},237938,0,South America +2024-12-30,74012,6908,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3870.64,"{"""": ""7%""}",198065,0,Asia +2023-09-24,74013,7908,"[""Charger"", ""Keyboard""]",3450.9,{},13676,1,Africa +2024-11-30,74014,6954,"[""Keyboard""]",4490.64,{},74122,1,South America +2024-05-21,74015,2438,"[""Keyboard"", ""Charger""]",4222.46,{},74875,1,Europe +2024-01-08,74016,2273,"[""Tablet""]",4152.53,{},91293,1,Africa +2023-06-10,74017,675,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2308.56,{},280546,1,Asia +2024-09-02,74018,5454,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",176.55,"{""seasonal"": ""23%""}",137211,0,Europe +2024-12-31,74019,2849,"[""Monitor"", ""Headphones""]",3868.45,{},192892,0,North America +2024-03-22,74020,7428,"[""Headphones"", ""Wireless Mouse""]",4189.89,{},201827,0,Asia +2024-07-24,74021,9611,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2007.21,{},81580,1,North America +2024-05-06,74022,3014,"[""Monitor"", ""Keyboard""]",4904.23,"{""promo"": ""5%""}",7888,1,Africa +2024-08-08,74023,4461,"[""Headphones""]",3011.4,{},4164,0,Asia +2023-12-06,74024,2554,"[""Headphones"", ""Monitor"", ""Tablet""]",1125.35,"{""promo"": ""7%""}",27139,0,Europe +2024-10-31,74025,4757,"[""Charger"", ""Wireless Mouse""]",4268.08,{},238239,1,South America +2023-12-15,74026,8453,"[""Laptop"", ""Wireless Mouse""]",4669.33,{},42823,1,North America +2023-10-30,74027,5119,"[""Charger"", ""Tablet""]",4366.68,{},237065,1,North America +2024-06-07,74028,8808,"[""Tablet""]",3007.49,{},28203,0,Europe +2024-05-10,74029,8334,"[""Tablet""]",4450.36,{},121475,0,Africa +2023-10-14,74030,9545,"[""Wireless Mouse"", ""Phone""]",3963.37,{},173604,1,South America +2024-11-11,74031,668,"[""Phone"", ""Monitor""]",2113.91,{},26946,1,Asia +2024-02-07,74032,383,"[""Phone""]",2012.17,"{""seasonal"": ""17%""}",29145,1,Africa +2023-05-21,74033,1800,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4611.29,"{""seasonal"": ""28%""}",80769,1,Europe +2024-03-23,74034,8358,"[""Monitor"", ""Laptop""]",4760.77,"{"""": ""18%""}",80502,1,South America +2023-04-20,74035,4968,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1334.67,"{""loyalty"": ""19%""}",41372,0,Africa +2024-11-23,74036,8861,"[""Phone"", ""Wireless Mouse""]",3627.42,{},250941,1,North America +2023-02-15,74037,8002,"[""Laptop""]",3739.01,{},257237,0,South America +2024-10-28,74038,5390,"[""Headphones""]",122.57,{},235422,1,South America +2024-01-01,74039,6176,"[""Tablet"", ""Headphones"", ""Monitor""]",3871.05,"{""promo"": ""24%""}",237726,1,Asia +2024-10-27,74040,6676,"[""Keyboard"", ""Headphones"", ""Laptop""]",1673.06,{},157430,1,Asia +2024-01-06,74041,1386,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3545.2,"{""loyalty"": ""8%""}",277352,0,Asia +2023-12-31,74042,8040,"[""Charger"", ""Tablet""]",788.09,{},183716,1,South America +2024-05-09,74043,9556,"[""Wireless Mouse"", ""Tablet""]",1638.95,{},246576,0,Africa +2024-01-02,74044,6144,"[""Tablet"", ""Phone""]",2387.75,{},258673,0,South America +2023-02-27,74045,6341,"[""Wireless Mouse"", ""Laptop""]",1351.05,"{"""": ""16%""}",287065,0,North America +2024-07-13,74046,1716,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3534.13,"{""promo"": ""25%""}",17229,0,Africa +2024-08-28,74047,229,"[""Tablet"", ""Charger""]",3012.51,"{""seasonal"": ""29%""}",55029,1,Europe +2023-02-01,74048,1914,"[""Wireless Mouse"", ""Laptop""]",3177.0,{},144465,0,Europe +2023-03-27,74049,6125,"[""Tablet"", ""Headphones"", ""Keyboard""]",3163.41,"{"""": ""30%""}",170196,0,Africa +2024-02-24,74050,8766,"[""Phone"", ""Laptop"", ""Tablet""]",3601.75,"{""promo"": ""21%""}",100245,0,Asia +2024-08-18,74051,4789,"[""Laptop""]",1785.7,{},101008,1,North America +2023-03-12,74052,9593,"[""Wireless Mouse"", ""Tablet""]",4892.51,{},151138,1,South America +2023-09-22,74053,8525,"[""Charger"", ""Phone""]",3706.45,{},149481,0,Africa +2024-06-03,74054,3882,"[""Tablet"", ""Phone""]",2406.93,"{""seasonal"": ""16%""}",26974,1,Africa +2023-04-27,74055,3516,"[""Headphones"", ""Tablet"", ""Monitor""]",3288.81,"{""loyalty"": ""13%""}",21518,0,Asia +2023-02-17,74056,5945,"[""Keyboard"", ""Headphones"", ""Monitor""]",3434.21,"{""seasonal"": ""11%""}",180521,0,Asia +2023-04-09,74057,5409,"[""Laptop"", ""Charger""]",2096.33,"{"""": ""23%""}",106094,1,Africa +2023-05-07,74058,3455,"[""Monitor"", ""Charger""]",4308.35,{},216746,0,Europe +2023-05-04,74059,1650,"[""Monitor"", ""Charger""]",3136.47,"{""loyalty"": ""27%""}",24739,1,Asia +2023-02-28,74060,354,"[""Keyboard"", ""Tablet""]",1693.27,{},272324,0,Africa +2024-07-30,74061,2064,"[""Phone"", ""Charger"", ""Laptop""]",3459.43,{},282383,0,Asia +2024-03-04,74062,5913,"[""Monitor""]",477.9,{},111636,0,Africa +2023-01-03,74063,5274,"[""Wireless Mouse""]",906.31,{},121466,0,North America +2024-01-01,74064,3968,"[""Headphones""]",1016.42,{},268258,1,Europe +2023-08-13,74065,1149,"[""Keyboard"", ""Laptop""]",647.61,{},104339,1,North America +2023-01-08,74066,9781,"[""Phone"", ""Monitor"", ""Keyboard""]",1839.16,"{""loyalty"": ""8%""}",66337,1,Asia +2023-08-02,74067,4274,"[""Keyboard""]",162.95,"{""seasonal"": ""24%""}",249602,0,Asia +2023-08-07,74068,4244,"[""Monitor"", ""Laptop""]",3230.01,"{""loyalty"": ""5%""}",150504,0,South America +2024-08-15,74069,8470,"[""Headphones"", ""Charger"", ""Monitor""]",4865.42,{},273092,0,Africa +2023-12-19,74070,5268,"[""Laptop"", ""Tablet"", ""Phone""]",4199.03,"{"""": ""15%""}",287112,1,North America +2023-02-04,74071,634,"[""Tablet"", ""Wireless Mouse""]",530.85,"{""seasonal"": ""10%""}",4461,1,North America +2024-04-16,74072,1803,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",241.58,{},127400,0,South America +2023-03-18,74073,2922,"[""Keyboard"", ""Charger""]",2277.24,{},35713,1,North America +2023-02-06,74074,4130,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2196.73,"{"""": ""8%""}",51299,1,South America +2024-06-06,74075,189,"[""Charger"", ""Tablet"", ""Headphones""]",3555.16,"{""loyalty"": ""27%""}",84075,1,Europe +2023-12-02,74076,9974,"[""Phone"", ""Charger"", ""Monitor""]",3850.21,"{""loyalty"": ""17%""}",173997,1,Asia +2024-04-25,74077,6070,"[""Tablet"", ""Phone"", ""Monitor""]",3421.89,{},95798,0,Asia +2023-03-26,74078,3026,"[""Headphones"", ""Wireless Mouse""]",4738.7,"{"""": ""14%""}",164292,0,Africa +2023-03-18,74079,3669,"[""Monitor"", ""Keyboard"", ""Tablet""]",4898.84,"{""loyalty"": ""24%""}",36980,1,Europe +2023-11-04,74080,171,"[""Charger""]",536.07,{},79246,1,South America +2023-08-07,74081,2449,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4699.99,{},161787,0,Asia +2023-07-26,74082,1493,"[""Headphones"", ""Wireless Mouse""]",259.62,"{""promo"": ""13%""}",94512,0,Europe +2023-08-18,74083,488,"[""Headphones"", ""Keyboard"", ""Laptop""]",1288.36,"{""seasonal"": ""28%""}",123608,1,Asia +2024-12-20,74084,3878,"[""Wireless Mouse"", ""Laptop""]",656.25,"{""loyalty"": ""11%""}",220839,0,Europe +2023-11-17,74085,6326,"[""Charger"", ""Keyboard""]",774.17,"{""loyalty"": ""27%""}",162032,0,Europe +2023-11-09,74086,9535,"[""Phone""]",2603.88,{},124730,0,Europe +2023-04-16,74087,9316,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2455.12,{},32026,1,North America +2023-08-23,74088,5577,"[""Laptop""]",2934.91,{},279714,0,North America +2023-08-14,74089,177,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",144.03,"{""seasonal"": ""17%""}",119445,0,North America +2023-02-12,74090,8955,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4421.32,{},22267,1,Asia +2023-10-15,74091,6156,"[""Keyboard"", ""Monitor""]",1301.07,"{""loyalty"": ""7%""}",151269,1,Europe +2024-04-23,74092,1301,"[""Phone""]",3032.54,"{"""": ""10%""}",190186,1,South America +2024-04-30,74093,1393,"[""Headphones"", ""Monitor"", ""Phone""]",969.05,{},207933,0,North America +2024-07-16,74094,5916,"[""Monitor""]",4400.91,{},170151,0,South America +2023-09-11,74095,8305,"[""Phone"", ""Laptop""]",1006.72,{},187142,0,Africa +2023-08-22,74096,7148,"[""Monitor""]",4753.11,{},12464,1,Asia +2023-11-05,74097,1797,"[""Tablet"", ""Charger""]",422.38,{},161916,1,Europe +2023-02-07,74098,5170,"[""Wireless Mouse""]",1982.12,{},90337,1,Europe +2024-03-12,74099,1232,"[""Tablet""]",3693.86,{},50548,0,Africa +2024-09-26,74100,5187,"[""Wireless Mouse"", ""Laptop""]",3324.55,{},111041,0,North America +2023-11-30,74101,2368,"[""Laptop""]",4072.99,{},235419,0,South America +2023-07-28,74102,2264,"[""Laptop"", ""Monitor""]",161.65,{},192877,1,North America +2023-12-16,74103,5977,"[""Headphones"", ""Monitor"", ""Charger""]",4471.99,{},186617,0,Europe +2024-12-05,74104,207,"[""Keyboard""]",2122.03,"{""promo"": ""10%""}",145689,1,Asia +2024-12-31,74105,6877,"[""Charger"", ""Monitor"", ""Keyboard""]",111.84,{},195343,1,Asia +2024-11-17,74106,7704,"[""Keyboard""]",1560.67,"{""seasonal"": ""24%""}",101032,1,North America +2023-12-24,74107,1868,"[""Keyboard"", ""Tablet""]",3292.36,{},225393,1,Asia +2024-01-07,74108,9567,"[""Charger"", ""Laptop""]",1238.48,{},264626,1,North America +2023-12-31,74109,7988,"[""Phone""]",3959.28,{},248526,0,Africa +2023-04-15,74110,8325,"[""Monitor""]",2701.98,{},125455,1,South America +2023-01-05,74111,2420,"[""Keyboard"", ""Headphones"", ""Phone""]",3979.98,"{""promo"": ""20%""}",275771,0,Asia +2023-12-09,74112,26,"[""Monitor"", ""Laptop"", ""Charger""]",3491.72,{},135942,0,South America +2024-07-26,74113,2242,"[""Tablet"", ""Charger""]",1219.4,"{""seasonal"": ""19%""}",288826,1,Africa +2023-11-08,74114,2349,"[""Charger""]",4962.01,"{""promo"": ""27%""}",60165,0,South America +2024-03-22,74115,7021,"[""Wireless Mouse""]",1841.06,{},87983,1,Europe +2024-09-22,74116,9074,"[""Phone"", ""Headphones""]",2019.46,{},22650,0,South America +2024-04-17,74117,8975,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4402.99,"{"""": ""14%""}",256036,1,Europe +2024-01-20,74118,7264,"[""Laptop"", ""Wireless Mouse""]",417.19,"{"""": ""21%""}",40311,0,South America +2023-09-14,74119,3427,"[""Phone"", ""Wireless Mouse""]",4727.21,{},196666,0,South America +2024-06-02,74120,584,"[""Headphones"", ""Keyboard""]",4008.31,{},43341,0,North America +2023-05-01,74121,1746,"[""Headphones""]",2102.1,{},189797,1,Africa +2023-01-15,74122,2443,"[""Monitor""]",4357.72,"{""seasonal"": ""5%""}",243715,1,South America +2024-11-02,74123,991,"[""Headphones""]",1814.16,{},139158,1,Asia +2024-03-09,74124,3271,"[""Charger""]",272.99,{},102485,0,North America +2024-11-06,74125,1856,"[""Headphones""]",4372.18,"{""seasonal"": ""22%""}",271187,1,Europe +2024-09-04,74126,2406,"[""Laptop"", ""Charger"", ""Keyboard""]",4439.89,"{""loyalty"": ""14%""}",30078,1,South America +2024-02-25,74127,9334,"[""Headphones"", ""Wireless Mouse""]",2841.29,"{"""": ""30%""}",86932,1,South America +2024-01-10,74128,1545,"[""Laptop"", ""Phone"", ""Headphones""]",3851.79,"{""seasonal"": ""28%""}",252538,1,North America +2024-04-10,74129,5032,"[""Keyboard""]",62.9,"{""promo"": ""23%""}",108508,0,North America +2023-12-25,74130,6744,"[""Phone""]",3129.53,"{""seasonal"": ""13%""}",129174,1,Asia +2024-04-04,74131,152,"[""Monitor"", ""Tablet"", ""Laptop""]",242.24,{},249258,0,Asia +2024-02-19,74132,9317,"[""Tablet""]",2502.56,"{""promo"": ""6%""}",99536,0,Europe +2023-06-25,74133,2042,"[""Charger"", ""Keyboard""]",1618.93,"{"""": ""13%""}",299378,1,Africa +2024-09-25,74134,7111,"[""Laptop""]",3997.26,{},62089,1,Africa +2024-09-14,74135,5816,"[""Headphones"", ""Charger"", ""Keyboard""]",4253.7,"{""seasonal"": ""19%""}",296913,1,South America +2024-07-09,74136,8104,"[""Laptop""]",4678.84,{},270508,0,North America +2024-08-26,74137,6435,"[""Tablet"", ""Headphones"", ""Monitor""]",4940.05,{},78808,1,Europe +2024-01-22,74138,2406,"[""Monitor"", ""Charger"", ""Tablet""]",1855.34,"{""promo"": ""6%""}",267123,1,South America +2024-07-16,74139,4942,"[""Laptop"", ""Headphones""]",4634.74,"{"""": ""5%""}",78999,1,North America +2023-05-21,74140,95,"[""Laptop"", ""Keyboard"", ""Charger""]",294.07,"{"""": ""20%""}",216671,1,Asia +2023-03-06,74141,4503,"[""Headphones"", ""Keyboard"", ""Tablet""]",94.85,{},240272,0,Europe +2023-10-28,74142,3959,"[""Tablet""]",3343.59,"{""seasonal"": ""21%""}",232143,1,Africa +2023-02-03,74143,8825,"[""Tablet""]",3954.94,"{""seasonal"": ""13%""}",233247,1,Africa +2023-05-13,74144,7718,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4328.67,{},118912,1,North America +2024-09-21,74145,7885,"[""Tablet"", ""Headphones""]",1314.34,"{""loyalty"": ""15%""}",18703,1,Asia +2023-08-29,74146,2721,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",171.72,"{""promo"": ""28%""}",279826,1,South America +2024-08-20,74147,8910,"[""Wireless Mouse""]",4135.3,"{""promo"": ""9%""}",32445,0,North America +2023-11-19,74148,2363,"[""Headphones""]",995.69,{},231947,0,Asia +2024-09-14,74149,9993,"[""Tablet"", ""Phone""]",2193.78,"{""promo"": ""10%""}",46616,0,Europe +2024-06-28,74150,6303,"[""Charger""]",1907.93,{},164698,1,South America +2023-10-01,74151,1139,"[""Wireless Mouse""]",2510.04,"{""promo"": ""14%""}",272684,0,Asia +2023-10-13,74152,886,"[""Charger"", ""Keyboard""]",4168.66,{},228945,0,North America +2024-07-19,74153,5857,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",465.41,"{""loyalty"": ""22%""}",295770,1,Europe +2024-09-13,74154,6067,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",490.7,"{""promo"": ""27%""}",155083,1,Asia +2024-07-26,74155,1481,"[""Phone"", ""Keyboard""]",3758.34,{},172864,0,Africa +2024-08-08,74156,8284,"[""Headphones""]",972.89,"{"""": ""12%""}",284464,1,Europe +2024-06-25,74157,1935,"[""Wireless Mouse""]",3275.28,{},32334,0,North America +2024-05-14,74158,4227,"[""Headphones""]",1998.76,{},230775,0,South America +2024-10-17,74159,299,"[""Phone"", ""Keyboard"", ""Headphones""]",4200.72,{},207039,1,Asia +2023-09-06,74160,7956,"[""Keyboard"", ""Monitor""]",1120.42,{},60858,1,Africa +2024-02-11,74161,3088,"[""Keyboard""]",3554.04,"{""promo"": ""13%""}",173736,1,South America +2023-02-23,74162,6175,"[""Keyboard"", ""Wireless Mouse""]",1985.28,{},110834,0,Asia +2023-04-12,74163,5716,"[""Keyboard"", ""Headphones"", ""Monitor""]",2265.41,"{""promo"": ""20%""}",277692,1,Africa +2024-06-01,74164,403,"[""Tablet""]",3970.69,"{"""": ""28%""}",44230,0,Europe +2024-08-07,74165,3030,"[""Laptop""]",4420.35,"{""promo"": ""20%""}",105759,1,Africa +2023-05-15,74166,8830,"[""Wireless Mouse"", ""Headphones""]",4998.65,{},20261,0,Asia +2024-07-23,74167,4167,"[""Phone"", ""Tablet"", ""Keyboard""]",1248.67,"{"""": ""18%""}",38679,0,Africa +2023-10-04,74168,7077,"[""Keyboard"", ""Charger""]",3513.68,{},125133,1,Africa +2024-04-18,74169,4074,"[""Headphones"", ""Laptop""]",1848.22,{},138445,1,North America +2024-05-05,74170,8144,"[""Monitor""]",1721.17,"{""seasonal"": ""10%""}",268254,0,North America +2023-09-18,74171,6326,"[""Tablet""]",4434.25,"{""promo"": ""14%""}",141528,1,North America +2023-09-07,74172,5546,"[""Headphones""]",61.48,{},239741,0,Europe +2024-08-03,74173,9919,"[""Wireless Mouse""]",1502.43,{},156171,0,Asia +2024-02-29,74174,6369,"[""Monitor"", ""Charger""]",3718.43,{},25070,0,Europe +2023-12-22,74175,511,"[""Keyboard"", ""Charger"", ""Monitor""]",450.94,{},226811,1,North America +2024-06-01,74176,2642,"[""Tablet"", ""Phone"", ""Charger""]",3096.68,{},224558,1,Africa +2023-02-19,74177,4341,"[""Charger"", ""Monitor"", ""Tablet""]",996.26,{},211360,0,South America +2023-06-11,74178,814,"[""Tablet"", ""Phone"", ""Laptop""]",4415.36,{},293004,1,Africa +2024-03-05,74179,8718,"[""Headphones"", ""Keyboard""]",3355.74,"{"""": ""26%""}",169030,0,Africa +2024-12-03,74180,7444,"[""Charger""]",4130.19,{},190104,1,Africa +2023-10-26,74181,1233,"[""Headphones"", ""Phone""]",2282.84,"{""promo"": ""14%""}",154546,1,Africa +2024-11-13,74182,4854,"[""Charger"", ""Headphones"", ""Tablet""]",227.96,"{""promo"": ""10%""}",133292,0,Europe +2023-10-28,74183,8002,"[""Headphones""]",1614.18,"{""seasonal"": ""19%""}",77998,1,Africa +2024-05-20,74184,6996,"[""Keyboard"", ""Charger""]",1996.21,"{""promo"": ""17%""}",171843,0,Europe +2024-09-29,74185,2608,"[""Charger"", ""Phone"", ""Tablet""]",1065.26,"{""seasonal"": ""21%""}",57588,1,Asia +2023-10-19,74186,3501,"[""Tablet"", ""Phone""]",3376.23,"{""seasonal"": ""13%""}",25354,0,South America +2024-11-23,74187,8999,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1248.74,"{""seasonal"": ""30%""}",69615,1,South America +2024-04-05,74188,768,"[""Tablet"", ""Laptop"", ""Keyboard""]",705.82,"{""promo"": ""18%""}",192871,0,Europe +2023-04-14,74189,7161,"[""Keyboard"", ""Headphones""]",4268.3,"{""promo"": ""13%""}",149385,1,Asia +2024-02-03,74190,2219,"[""Charger""]",3347.68,"{"""": ""29%""}",41145,1,North America +2024-12-02,74191,358,"[""Keyboard"", ""Headphones""]",4816.7,"{""seasonal"": ""27%""}",105413,0,Asia +2023-07-15,74192,6508,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2374.89,{},96619,0,North America +2024-05-08,74193,1921,"[""Keyboard""]",1396.14,{},111222,1,Asia +2023-10-28,74194,5188,"[""Monitor"", ""Laptop""]",1204.96,{},208889,1,Africa +2024-08-03,74195,9256,"[""Tablet""]",3769.37,"{""promo"": ""14%""}",109671,1,North America +2024-11-05,74196,4142,"[""Monitor"", ""Tablet"", ""Phone""]",4882.64,{},112067,0,Africa +2023-01-15,74197,9754,"[""Charger"", ""Phone""]",2896.23,"{"""": ""27%""}",149559,0,Asia +2023-08-17,74198,4623,"[""Charger""]",1774.21,{},206472,0,North America +2024-12-09,74199,1292,"[""Tablet""]",2224.13,{},29949,0,South America +2023-03-28,74200,4558,"[""Keyboard"", ""Phone""]",309.01,{},65128,1,Africa +2023-11-19,74201,4699,"[""Charger""]",2449.11,"{""promo"": ""17%""}",31984,1,Asia +2024-05-23,74202,65,"[""Wireless Mouse"", ""Monitor""]",2601.42,"{""promo"": ""8%""}",227066,1,South America +2023-03-07,74203,690,"[""Phone"", ""Tablet""]",4479.27,"{""loyalty"": ""29%""}",101957,1,North America +2024-08-04,74204,4174,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3065.37,"{""seasonal"": ""12%""}",212241,0,North America +2023-12-28,74205,9033,"[""Tablet"", ""Monitor"", ""Laptop""]",4711.58,"{""seasonal"": ""16%""}",88976,1,Africa +2024-09-13,74206,5856,"[""Charger"", ""Wireless Mouse""]",985.74,{},92034,0,Europe +2023-04-21,74207,5929,"[""Headphones""]",2588.15,{},226263,1,Asia +2024-08-02,74208,5391,"[""Headphones""]",1328.53,"{""seasonal"": ""24%""}",140396,0,North America +2024-03-07,74209,6002,"[""Laptop""]",2191.74,"{"""": ""5%""}",292526,1,Asia +2024-05-31,74210,3322,"[""Keyboard""]",4607.81,"{""seasonal"": ""24%""}",166890,0,South America +2024-07-31,74211,7929,"[""Phone"", ""Laptop"", ""Monitor""]",3398.15,"{""promo"": ""21%""}",131089,0,South America +2023-09-13,74212,9583,"[""Tablet"", ""Monitor"", ""Headphones""]",2633.0,{},226856,1,Asia +2023-11-17,74213,6442,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2849.74,"{""seasonal"": ""24%""}",184691,0,Asia +2023-06-10,74214,5767,"[""Tablet"", ""Keyboard"", ""Phone""]",4850.77,"{""promo"": ""21%""}",203625,0,Africa +2023-06-20,74215,591,"[""Laptop"", ""Monitor""]",2752.9,{},234836,0,South America +2024-11-07,74216,6574,"[""Monitor"", ""Tablet"", ""Headphones""]",4090.44,"{"""": ""13%""}",235841,0,Africa +2023-02-25,74217,4685,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3355.72,{},297355,0,Europe +2024-11-18,74218,5092,"[""Tablet"", ""Phone"", ""Charger""]",1248.25,"{""loyalty"": ""14%""}",115227,0,South America +2024-08-15,74219,2695,"[""Charger""]",3528.78,"{"""": ""23%""}",105379,0,Africa +2023-02-02,74220,5715,"[""Keyboard"", ""Headphones""]",751.81,"{""seasonal"": ""24%""}",141499,0,South America +2024-12-26,74221,1102,"[""Monitor"", ""Tablet"", ""Phone""]",4515.56,"{""promo"": ""17%""}",192913,1,Africa +2023-01-30,74222,7849,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4663.69,{},248790,0,Africa +2023-08-09,74223,3286,"[""Charger"", ""Keyboard""]",1146.52,"{""promo"": ""26%""}",149462,1,Asia +2024-06-18,74224,2157,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1415.37,{},227072,0,South America +2024-06-30,74225,9456,"[""Tablet"", ""Monitor"", ""Charger""]",1754.39,{},205822,0,North America +2024-06-20,74226,3278,"[""Tablet""]",581.7,{},287981,1,Africa +2024-01-17,74227,2988,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1455.84,"{""promo"": ""10%""}",112795,0,South America +2024-07-15,74228,9543,"[""Keyboard"", ""Headphones"", ""Charger""]",4635.86,"{"""": ""23%""}",74930,1,South America +2023-04-12,74229,238,"[""Monitor""]",4303.97,{},40861,0,Europe +2023-09-19,74230,1434,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3566.92,"{""promo"": ""20%""}",105346,1,Africa +2023-02-21,74231,9937,"[""Phone"", ""Charger""]",4897.44,{},226667,0,North America +2023-11-05,74232,7150,"[""Laptop"", ""Phone"", ""Charger""]",2561.83,{},292558,1,Africa +2023-02-09,74233,1751,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1190.71,"{""loyalty"": ""5%""}",279501,0,North America +2023-12-25,74234,4494,"[""Laptop""]",3331.93,{},114507,0,South America +2024-10-23,74235,6796,"[""Monitor"", ""Laptop""]",1224.89,"{""loyalty"": ""24%""}",219036,1,Asia +2023-07-21,74236,3755,"[""Phone""]",2450.22,{},176306,0,North America +2024-12-26,74237,7276,"[""Wireless Mouse""]",4689.17,{},207482,1,Asia +2024-07-09,74238,2697,"[""Tablet""]",727.1,{},113363,1,North America +2023-04-03,74239,2526,"[""Wireless Mouse"", ""Keyboard""]",594.94,{},17929,1,South America +2023-10-15,74240,4709,"[""Monitor"", ""Laptop""]",2220.01,"{""seasonal"": ""13%""}",243820,0,Europe +2023-06-05,74241,937,"[""Laptop"", ""Headphones"", ""Phone""]",3782.76,{},246060,1,Africa +2024-09-10,74242,2182,"[""Charger"", ""Headphones""]",2216.77,{},215501,0,Europe +2024-08-28,74243,2139,"[""Headphones"", ""Laptop"", ""Monitor""]",2913.93,"{""promo"": ""15%""}",177765,0,Europe +2023-01-16,74244,4719,"[""Monitor"", ""Tablet""]",2752.1,{},15627,0,Europe +2023-08-17,74245,6988,"[""Keyboard"", ""Charger""]",3716.81,"{"""": ""27%""}",166280,0,South America +2024-02-21,74246,2540,"[""Phone""]",4606.96,"{""loyalty"": ""11%""}",256894,1,South America +2023-04-15,74247,9945,"[""Tablet""]",3316.4,{},241321,1,North America +2023-12-03,74248,7695,"[""Monitor"", ""Phone""]",3323.75,{},138705,1,Africa +2023-05-20,74249,5289,"[""Charger"", ""Monitor"", ""Keyboard""]",376.42,{},96614,0,Africa +2023-05-06,74250,6316,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1015.63,"{""promo"": ""9%""}",206121,1,Africa +2024-09-16,74251,9344,"[""Wireless Mouse""]",2154.41,{},115977,0,South America +2024-07-28,74252,4616,"[""Tablet"", ""Wireless Mouse""]",4171.61,{},149944,1,Asia +2024-05-08,74253,5770,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3211.83,"{"""": ""25%""}",293294,0,South America +2023-08-10,74254,7185,"[""Monitor"", ""Tablet""]",3951.27,{},223482,1,Europe +2023-02-06,74255,2434,"[""Headphones""]",1236.15,"{""loyalty"": ""18%""}",142173,0,Europe +2024-10-09,74256,4124,"[""Laptop"", ""Keyboard"", ""Tablet""]",1371.03,{},227020,1,North America +2023-02-23,74257,203,"[""Wireless Mouse""]",4549.28,{},121379,0,North America +2024-12-10,74258,1974,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4914.28,"{""promo"": ""13%""}",198418,1,North America +2023-08-16,74259,1388,"[""Headphones""]",4666.52,"{"""": ""27%""}",50938,1,North America +2024-11-19,74260,7946,"[""Headphones"", ""Phone""]",3994.85,{},134990,0,Asia +2024-12-08,74261,9637,"[""Tablet""]",4065.98,{},289666,0,Europe +2023-11-19,74262,6805,"[""Tablet""]",2518.52,{},103157,1,Europe +2024-06-22,74263,6837,"[""Wireless Mouse"", ""Charger""]",4969.53,{},14163,1,Asia +2024-02-24,74264,8706,"[""Headphones"", ""Charger"", ""Tablet""]",2190.84,{},92534,0,North America +2024-04-23,74265,1967,"[""Wireless Mouse""]",3742.53,{},145052,0,North America +2023-04-17,74266,4249,"[""Keyboard"", ""Phone""]",1146.98,"{""promo"": ""19%""}",206722,0,North America +2023-09-07,74267,1092,"[""Phone""]",2878.45,"{""promo"": ""22%""}",47592,1,North America +2024-08-30,74268,249,"[""Laptop""]",1816.94,{},227758,1,Europe +2024-12-06,74269,2524,"[""Keyboard"", ""Monitor""]",365.09,"{""promo"": ""14%""}",27996,0,Africa +2024-06-15,74270,5474,"[""Laptop"", ""Headphones""]",2052.31,{},33773,1,North America +2023-12-01,74271,7036,"[""Charger""]",2814.28,{},291597,1,Europe +2023-07-25,74272,7523,"[""Laptop""]",4639.28,"{"""": ""9%""}",93369,0,Europe +2024-02-06,74273,3027,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4856.84,{},167720,1,Africa +2023-12-01,74274,4388,"[""Tablet"", ""Wireless Mouse""]",2100.06,{},11822,0,Europe +2023-01-05,74275,3337,"[""Phone"", ""Tablet""]",2867.74,"{""promo"": ""6%""}",289421,0,South America +2024-11-01,74276,6227,"[""Monitor"", ""Phone"", ""Headphones""]",991.52,{},232227,0,Africa +2024-11-10,74277,4575,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",711.45,{},145844,0,Africa +2024-03-06,74278,4273,"[""Wireless Mouse"", ""Laptop""]",1946.03,{},25971,0,Europe +2023-05-09,74279,4562,"[""Headphones""]",4338.8,{},121135,1,South America +2023-09-19,74280,6895,"[""Wireless Mouse""]",52.35,"{""seasonal"": ""22%""}",79180,0,North America +2023-03-31,74281,2536,"[""Charger""]",1897.16,{},80866,1,Asia +2024-05-19,74282,8871,"[""Charger""]",4332.92,"{""promo"": ""29%""}",266804,1,North America +2023-05-18,74283,115,"[""Monitor"", ""Keyboard""]",4571.06,{},166195,0,Africa +2024-04-01,74284,76,"[""Tablet"", ""Phone"", ""Charger""]",4028.87,{},253614,1,Africa +2024-01-14,74285,1365,"[""Keyboard""]",4053.78,{},207418,0,Asia +2024-03-29,74286,1932,"[""Charger"", ""Monitor""]",672.92,{},233062,1,Europe +2023-09-07,74287,4991,"[""Charger"", ""Wireless Mouse""]",2250.35,{},183828,0,North America +2023-09-23,74288,2127,"[""Monitor""]",1967.86,"{""promo"": ""26%""}",229155,1,Asia +2023-04-15,74289,3627,"[""Wireless Mouse""]",1299.42,"{"""": ""26%""}",30786,0,South America +2023-06-01,74290,2466,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1885.32,"{""promo"": ""28%""}",176321,1,Asia +2023-03-13,74291,2061,"[""Tablet"", ""Charger""]",3530.65,"{""seasonal"": ""21%""}",24258,1,North America +2024-05-24,74292,4583,"[""Keyboard"", ""Phone"", ""Tablet""]",1249.97,"{""loyalty"": ""7%""}",121967,1,Africa +2023-12-31,74293,5469,"[""Keyboard""]",4812.84,{},244667,1,Asia +2023-02-07,74294,8780,"[""Wireless Mouse""]",917.69,{},243367,1,North America +2024-02-13,74295,7468,"[""Headphones"", ""Phone"", ""Charger""]",2170.27,{},248470,0,Europe +2023-08-26,74296,4999,"[""Laptop"", ""Headphones""]",3882.73,{},79356,0,South America +2024-12-03,74297,1856,"[""Headphones"", ""Wireless Mouse""]",1367.28,"{""promo"": ""25%""}",151955,0,South America +2024-12-26,74298,8252,"[""Laptop"", ""Phone""]",2511.39,"{""seasonal"": ""11%""}",119140,1,South America +2024-10-06,74299,1369,"[""Phone"", ""Charger"", ""Monitor""]",825.66,{},56714,0,Europe +2024-10-11,74300,1317,"[""Laptop"", ""Monitor""]",608.53,"{""promo"": ""23%""}",146937,1,North America +2024-01-24,74301,5037,"[""Keyboard""]",748.43,"{""loyalty"": ""8%""}",178228,0,Asia +2024-01-11,74302,6141,"[""Laptop"", ""Keyboard""]",1234.01,{},281902,0,Africa +2023-06-01,74303,8315,"[""Charger"", ""Wireless Mouse""]",1369.27,{},169781,0,Europe +2024-11-27,74304,5500,"[""Headphones"", ""Tablet"", ""Keyboard""]",2674.09,{},221979,0,Europe +2024-12-05,74305,450,"[""Tablet"", ""Phone"", ""Laptop""]",2112.36,{},77927,1,Asia +2024-07-09,74306,1382,"[""Headphones""]",1696.23,{},103528,1,North America +2023-10-25,74307,3005,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1368.42,{},166697,0,Europe +2024-09-07,74308,1970,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1086.14,"{"""": ""18%""}",129234,0,South America +2023-11-10,74309,2992,"[""Tablet""]",2177.55,{},175219,1,North America +2023-08-19,74310,1281,"[""Monitor""]",4440.06,"{""loyalty"": ""7%""}",292826,0,South America +2023-09-26,74311,1361,"[""Laptop"", ""Keyboard"", ""Charger""]",1495.12,"{""seasonal"": ""19%""}",194239,0,Africa +2024-10-12,74312,8742,"[""Laptop"", ""Phone""]",4992.3,"{""loyalty"": ""24%""}",283120,0,North America +2024-01-31,74313,3614,"[""Keyboard"", ""Headphones"", ""Phone""]",329.31,"{""seasonal"": ""14%""}",57604,1,Africa +2024-06-17,74314,983,"[""Wireless Mouse""]",4282.06,{},70446,1,South America +2024-02-22,74315,853,"[""Wireless Mouse"", ""Monitor""]",954.13,{},152423,1,South America +2024-10-09,74316,5087,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",382.32,"{"""": ""22%""}",275411,0,North America +2023-04-02,74317,1407,"[""Phone"", ""Tablet""]",1538.28,"{""loyalty"": ""27%""}",95164,0,Asia +2024-11-27,74318,444,"[""Laptop"", ""Keyboard"", ""Tablet""]",4357.27,{},2875,0,Africa +2023-11-02,74319,9875,"[""Tablet"", ""Charger""]",4744.36,{},267283,1,Asia +2024-02-12,74320,2901,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4325.98,"{""loyalty"": ""29%""}",279576,0,Africa +2024-07-01,74321,7127,"[""Laptop"", ""Headphones""]",1412.42,{},138316,1,Europe +2023-04-18,74322,2181,"[""Tablet"", ""Keyboard""]",421.49,"{""seasonal"": ""12%""}",119351,1,South America +2023-01-06,74323,4958,"[""Laptop""]",1802.54,{},135628,0,Europe +2023-01-14,74324,7630,"[""Keyboard""]",505.59,{},270789,0,Europe +2024-05-16,74325,8626,"[""Headphones"", ""Wireless Mouse""]",1025.58,"{"""": ""9%""}",158753,0,North America +2024-01-30,74326,7579,"[""Phone"", ""Keyboard""]",4248.14,{},13721,1,North America +2024-02-26,74327,5795,"[""Laptop""]",2088.89,{},56986,1,Europe +2023-11-16,74328,1038,"[""Phone"", ""Keyboard"", ""Laptop""]",4079.65,{},108155,1,South America +2024-04-30,74329,1661,"[""Laptop""]",1088.74,"{"""": ""20%""}",4923,1,South America +2024-10-30,74330,659,"[""Tablet"", ""Headphones""]",4839.85,"{""loyalty"": ""28%""}",50517,0,South America +2024-10-15,74331,3582,"[""Monitor""]",3071.04,"{""seasonal"": ""22%""}",135119,1,Europe +2023-06-26,74332,561,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3233.54,{},85072,0,North America +2023-04-05,74333,1797,"[""Wireless Mouse""]",807.07,{},133499,0,Asia +2024-03-04,74334,4950,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2312.13,"{""seasonal"": ""10%""}",187257,1,Africa +2024-12-12,74335,5678,"[""Charger"", ""Wireless Mouse""]",4469.44,{},261316,1,North America +2024-10-15,74336,4140,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1194.05,{},174809,0,Europe +2023-11-17,74337,7553,"[""Headphones"", ""Laptop"", ""Tablet""]",739.71,"{"""": ""19%""}",238709,1,South America +2024-01-10,74338,9817,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4610.82,"{""seasonal"": ""12%""}",105331,0,Europe +2023-11-27,74339,3833,"[""Monitor"", ""Laptop""]",1821.55,"{""seasonal"": ""8%""}",185659,1,Asia +2024-01-11,74340,7805,"[""Tablet"", ""Headphones""]",598.61,"{""promo"": ""22%""}",296662,1,Africa +2023-03-09,74341,7302,"[""Keyboard"", ""Charger"", ""Laptop""]",116.0,{},138026,0,South America +2023-09-20,74342,1641,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3605.1,"{""promo"": ""7%""}",285412,0,Africa +2024-07-24,74343,4133,"[""Headphones""]",1820.58,"{""seasonal"": ""15%""}",277028,0,North America +2024-02-04,74344,3527,"[""Phone"", ""Charger""]",1284.69,"{"""": ""18%""}",68964,0,Asia +2023-05-05,74345,1154,"[""Wireless Mouse""]",3945.82,{},72180,0,North America +2023-07-13,74346,2361,"[""Headphones""]",1477.56,{},248334,0,North America +2024-05-25,74347,2650,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3043.76,{},30093,0,North America +2024-01-13,74348,5836,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",116.02,"{"""": ""26%""}",118759,0,North America +2023-03-18,74349,6493,"[""Wireless Mouse""]",2090.79,"{"""": ""11%""}",14486,1,North America +2024-05-04,74350,4874,"[""Charger"", ""Phone""]",2046.26,"{""promo"": ""6%""}",198931,1,North America +2024-06-07,74351,3303,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",189.93,{},172940,1,Africa +2023-07-22,74352,9535,"[""Phone"", ""Keyboard""]",4012.34,"{""seasonal"": ""10%""}",290475,1,South America +2024-11-30,74353,7487,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3579.12,{},191385,1,Asia +2023-09-29,74354,4742,"[""Phone"", ""Headphones"", ""Laptop""]",4543.37,"{"""": ""20%""}",221216,1,Asia +2024-01-11,74355,2739,"[""Headphones""]",239.14,"{"""": ""24%""}",29528,0,North America +2024-04-05,74356,7099,"[""Headphones"", ""Tablet""]",4860.08,{},139257,0,Africa +2023-08-18,74357,6499,"[""Charger"", ""Tablet""]",734.09,"{"""": ""27%""}",296740,0,North America +2023-04-14,74358,3143,"[""Headphones""]",3616.46,{},202346,1,Asia +2024-12-11,74359,7368,"[""Charger""]",616.42,{},282546,1,South America +2024-03-11,74360,7289,"[""Keyboard"", ""Tablet""]",2355.08,{},220828,1,Africa +2023-06-18,74361,569,"[""Headphones""]",3465.29,{},186118,1,Europe +2023-06-12,74362,3659,"[""Keyboard"", ""Headphones"", ""Phone""]",2543.77,"{"""": ""13%""}",289268,0,Africa +2024-09-05,74363,5249,"[""Keyboard"", ""Laptop""]",418.64,{},156897,1,Asia +2024-10-18,74364,4180,"[""Keyboard"", ""Laptop""]",4158.73,"{""loyalty"": ""16%""}",26350,1,Africa +2023-04-13,74365,8540,"[""Keyboard"", ""Charger"", ""Headphones""]",1686.41,{},22128,1,Europe +2024-08-26,74366,9562,"[""Monitor"", ""Tablet"", ""Headphones""]",3913.83,"{""seasonal"": ""20%""}",90903,1,Africa +2023-07-17,74367,3971,"[""Wireless Mouse""]",1493.1,{},49560,0,North America +2024-02-07,74368,4184,"[""Wireless Mouse"", ""Tablet""]",2222.1,"{""promo"": ""9%""}",124625,1,North America +2024-08-26,74369,8658,"[""Keyboard"", ""Monitor""]",1817.22,{},174480,0,Europe +2024-06-11,74370,1696,"[""Phone"", ""Tablet""]",1210.31,{},50504,1,Africa +2023-10-16,74371,4011,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1466.6,"{""promo"": ""5%""}",224784,0,North America +2023-02-06,74372,4395,"[""Laptop"", ""Charger""]",4232.79,"{""loyalty"": ""17%""}",97715,0,North America +2024-04-29,74373,5472,"[""Tablet"", ""Laptop"", ""Charger""]",733.2,{},173347,0,Europe +2024-10-23,74374,1965,"[""Wireless Mouse""]",4095.27,{},265750,1,South America +2024-09-09,74375,404,"[""Wireless Mouse""]",3006.2,{},189976,1,Europe +2024-09-04,74376,317,"[""Headphones"", ""Keyboard""]",536.65,"{""seasonal"": ""17%""}",226214,1,Asia +2024-10-21,74377,5613,"[""Keyboard"", ""Charger""]",1847.42,"{""promo"": ""27%""}",172117,1,Asia +2023-07-31,74378,6391,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3682.41,"{"""": ""19%""}",153770,0,South America +2023-08-31,74379,8806,"[""Keyboard"", ""Charger""]",4211.97,"{""seasonal"": ""21%""}",186727,0,North America +2023-09-18,74380,7243,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4843.6,{},20110,0,North America +2023-02-04,74381,11,"[""Tablet"", ""Wireless Mouse""]",1180.91,"{"""": ""20%""}",150880,0,Europe +2023-12-17,74382,4288,"[""Monitor""]",3770.36,{},113123,0,Africa +2024-07-30,74383,5416,"[""Headphones"", ""Monitor""]",890.18,{},132923,0,Africa +2023-12-21,74384,455,"[""Tablet"", ""Headphones""]",72.86,{},225038,1,Africa +2024-11-16,74385,773,"[""Monitor"", ""Headphones"", ""Phone""]",832.97,"{""seasonal"": ""17%""}",50840,1,Asia +2024-11-05,74386,3819,"[""Headphones""]",3634.53,{},124615,0,North America +2023-12-30,74387,7041,"[""Phone""]",3955.76,"{""promo"": ""21%""}",1207,0,Africa +2024-03-27,74388,8447,"[""Keyboard"", ""Headphones"", ""Charger""]",1063.25,"{""seasonal"": ""27%""}",177726,0,Europe +2024-04-08,74389,1101,"[""Phone"", ""Laptop"", ""Charger""]",822.05,{},25297,0,Africa +2024-07-27,74390,3764,"[""Keyboard"", ""Phone""]",3892.26,"{""seasonal"": ""11%""}",299788,1,Asia +2023-12-21,74391,7933,"[""Tablet""]",910.99,"{""seasonal"": ""30%""}",151933,0,Africa +2023-04-11,74392,124,"[""Laptop"", ""Tablet""]",2177.94,"{""loyalty"": ""12%""}",145605,0,North America +2024-11-23,74393,9723,"[""Keyboard"", ""Tablet"", ""Monitor""]",4101.63,{},108943,0,North America +2024-03-23,74394,8208,"[""Laptop""]",4928.87,{},249998,1,South America +2024-09-01,74395,198,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1006.25,"{""promo"": ""20%""}",244438,1,North America +2024-03-05,74396,7394,"[""Charger"", ""Laptop""]",4655.27,{},170262,1,Africa +2024-10-01,74397,7831,"[""Keyboard"", ""Laptop""]",2423.56,{},155508,1,North America +2023-03-10,74398,9797,"[""Laptop"", ""Monitor"", ""Charger""]",741.55,"{""loyalty"": ""11%""}",25209,1,Africa +2024-02-14,74399,2771,"[""Phone"", ""Tablet""]",1228.27,{},49095,1,Africa +2023-07-18,74400,7635,"[""Wireless Mouse"", ""Monitor""]",1781.53,"{""promo"": ""5%""}",137815,1,Africa +2024-03-13,74401,2127,"[""Laptop"", ""Wireless Mouse""]",4333.04,{},105938,1,North America +2024-03-06,74402,8033,"[""Monitor""]",4350.86,"{""loyalty"": ""8%""}",69077,1,South America +2024-10-15,74403,8645,"[""Headphones""]",2296.69,{},224684,1,North America +2023-12-18,74404,6735,"[""Charger""]",1229.54,"{""promo"": ""20%""}",199976,1,Africa +2024-09-04,74405,5432,"[""Charger"", ""Tablet"", ""Laptop""]",1520.81,{},208497,0,Africa +2024-06-01,74406,6184,"[""Headphones"", ""Phone""]",1648.78,{},9289,1,Africa +2024-10-02,74407,9027,"[""Laptop""]",4430.44,{},238460,1,Asia +2024-10-03,74408,5659,"[""Phone"", ""Headphones""]",604.41,{},123867,0,South America +2023-12-08,74409,18,"[""Charger"", ""Keyboard"", ""Monitor""]",2134.57,{},247040,1,South America +2023-10-20,74410,6483,"[""Keyboard""]",2912.06,"{""seasonal"": ""6%""}",43375,1,Asia +2024-07-12,74411,2640,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1523.69,"{""promo"": ""17%""}",265823,0,North America +2023-03-14,74412,3219,"[""Laptop""]",4496.86,{},61706,0,Africa +2023-07-09,74413,5797,"[""Laptop""]",823.62,"{""promo"": ""8%""}",225190,1,North America +2024-01-19,74414,9808,"[""Keyboard"", ""Phone""]",1838.97,"{""promo"": ""16%""}",237128,0,Asia +2024-01-08,74415,8182,"[""Headphones"", ""Laptop"", ""Charger""]",3387.47,{},163017,1,Europe +2023-07-03,74416,7930,"[""Monitor"", ""Wireless Mouse""]",1249.01,{},158122,0,Europe +2024-02-09,74417,328,"[""Keyboard"", ""Headphones""]",2223.17,{},201151,1,Africa +2024-03-28,74418,3512,"[""Phone""]",3765.97,{},122633,0,North America +2024-07-29,74419,9929,"[""Headphones"", ""Tablet""]",2322.24,{},115600,0,North America +2024-04-09,74420,6115,"[""Wireless Mouse""]",2639.59,{},172478,0,Asia +2024-05-16,74421,4703,"[""Tablet"", ""Monitor""]",2897.93,"{""seasonal"": ""20%""}",233417,0,North America +2023-12-03,74422,1532,"[""Phone"", ""Tablet"", ""Monitor""]",1811.72,"{""seasonal"": ""8%""}",218747,1,South America +2024-03-24,74423,8175,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1338.47,{},33918,0,Asia +2024-08-27,74424,7426,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",2934.14,"{""seasonal"": ""7%""}",85645,1,Europe +2024-05-11,74425,4479,"[""Laptop"", ""Tablet"", ""Charger""]",4575.96,"{""seasonal"": ""11%""}",154649,0,Europe +2024-05-19,74426,2093,"[""Laptop"", ""Headphones""]",1684.74,"{"""": ""6%""}",194060,1,Europe +2023-10-23,74427,758,"[""Laptop"", ""Headphones""]",4218.73,"{""promo"": ""15%""}",146500,1,North America +2023-04-07,74428,1806,"[""Monitor""]",479.53,{},22645,0,North America +2023-07-08,74429,426,"[""Monitor"", ""Keyboard"", ""Charger""]",1066.73,{},166000,0,Asia +2023-12-28,74430,5034,"[""Phone""]",2399.46,"{""seasonal"": ""12%""}",81737,1,Africa +2023-08-23,74431,8855,"[""Laptop""]",2455.92,"{"""": ""29%""}",238786,0,Africa +2024-08-02,74432,7615,"[""Laptop"", ""Keyboard"", ""Headphones""]",2609.31,"{"""": ""21%""}",79269,1,Europe +2024-02-08,74433,3697,"[""Keyboard"", ""Headphones""]",2989.48,{},261147,1,Europe +2023-08-07,74434,9688,"[""Headphones"", ""Keyboard""]",3550.33,{},144249,0,North America +2024-11-24,74435,914,"[""Laptop""]",908.91,"{""loyalty"": ""6%""}",229086,0,Africa +2024-10-01,74436,7909,"[""Wireless Mouse"", ""Headphones""]",1060.27,{},112459,1,South America +2024-09-29,74437,1569,"[""Headphones"", ""Tablet"", ""Charger""]",2238.77,"{"""": ""11%""}",264042,1,South America +2023-07-09,74438,1198,"[""Wireless Mouse"", ""Headphones""]",4218.42,"{"""": ""9%""}",299368,0,Africa +2023-02-22,74439,9520,"[""Tablet"", ""Headphones"", ""Monitor""]",3788.54,{},161819,1,North America +2024-08-08,74440,7353,"[""Phone""]",3459.05,"{"""": ""20%""}",41767,0,South America +2024-02-23,74441,8509,"[""Wireless Mouse""]",4960.51,"{""promo"": ""14%""}",144271,0,South America +2023-09-21,74442,7448,"[""Headphones"", ""Keyboard""]",3005.93,{},187200,0,North America +2024-01-14,74443,8770,"[""Headphones"", ""Wireless Mouse""]",1154.53,{},260899,1,Africa +2024-05-30,74444,3454,"[""Keyboard"", ""Headphones""]",3430.44,"{""seasonal"": ""9%""}",243574,1,South America +2023-06-05,74445,1981,"[""Keyboard"", ""Laptop"", ""Phone""]",1520.57,{},178060,0,Asia +2023-07-05,74446,9879,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",797.32,"{""loyalty"": ""17%""}",111545,0,Asia +2023-08-02,74447,6686,"[""Laptop"", ""Headphones"", ""Phone""]",921.71,"{""promo"": ""17%""}",223692,1,Africa +2023-07-01,74448,2768,"[""Phone"", ""Keyboard"", ""Monitor""]",3718.05,{},257962,0,Asia +2023-12-16,74449,1399,"[""Headphones""]",3519.65,{},181716,0,South America +2024-12-29,74450,9275,"[""Wireless Mouse"", ""Phone""]",4210.2,"{""promo"": ""29%""}",295363,1,Europe +2023-01-31,74451,4724,"[""Tablet"", ""Keyboard""]",4559.85,"{""promo"": ""8%""}",291447,1,Asia +2023-08-15,74452,1115,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1594.7,{},11806,0,Africa +2024-11-04,74453,3150,"[""Tablet""]",3096.46,{},257878,1,North America +2023-01-27,74454,6758,"[""Keyboard"", ""Charger""]",4839.58,{},164896,1,North America +2023-04-05,74455,3338,"[""Laptop""]",3682.11,{},240286,0,Africa +2023-07-17,74456,8657,"[""Monitor"", ""Phone"", ""Keyboard""]",1053.1,"{""promo"": ""24%""}",268808,0,Europe +2024-08-27,74457,2621,"[""Tablet"", ""Keyboard"", ""Phone""]",918.28,"{""loyalty"": ""29%""}",184329,1,South America +2024-10-15,74458,4959,"[""Tablet"", ""Phone"", ""Headphones""]",684.44,"{""promo"": ""8%""}",269582,0,South America +2023-08-22,74459,5652,"[""Charger"", ""Phone""]",523.13,{},53886,0,Asia +2023-09-14,74460,3842,"[""Laptop"", ""Charger"", ""Monitor""]",4541.04,"{""seasonal"": ""15%""}",270437,1,Africa +2023-12-15,74461,2019,"[""Keyboard"", ""Phone""]",1443.23,"{""promo"": ""23%""}",202037,0,Africa +2023-04-02,74462,2699,"[""Headphones"", ""Phone"", ""Tablet""]",3055.75,{},266528,1,North America +2023-11-20,74463,2385,"[""Headphones"", ""Monitor""]",3901.7,"{""promo"": ""11%""}",181180,0,South America +2023-08-06,74464,8765,"[""Monitor"", ""Headphones"", ""Laptop""]",4575.25,"{""seasonal"": ""11%""}",95965,1,Asia +2024-09-13,74465,3809,"[""Charger"", ""Headphones"", ""Laptop""]",2242.75,"{""promo"": ""5%""}",260091,1,Asia +2023-08-09,74466,2134,"[""Tablet"", ""Headphones"", ""Phone""]",788.98,{},243996,1,Europe +2024-10-28,74467,3680,"[""Keyboard"", ""Charger"", ""Headphones""]",548.11,"{""promo"": ""19%""}",249019,1,Asia +2023-08-12,74468,2585,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2216.1,"{""loyalty"": ""20%""}",242762,1,South America +2023-03-13,74469,216,"[""Phone"", ""Headphones""]",3612.86,"{"""": ""29%""}",210371,1,South America +2024-09-13,74470,498,"[""Monitor"", ""Headphones""]",1832.58,"{""promo"": ""27%""}",250260,0,North America +2023-05-10,74471,3534,"[""Keyboard"", ""Phone""]",2405.94,"{"""": ""6%""}",235614,1,Europe +2023-06-02,74472,9641,"[""Tablet""]",3069.24,"{""loyalty"": ""23%""}",30747,0,Asia +2023-02-16,74473,2293,"[""Phone"", ""Laptop"", ""Headphones""]",3045.29,"{"""": ""26%""}",263346,1,Europe +2023-09-21,74474,3745,"[""Monitor"", ""Laptop""]",3759.72,"{""promo"": ""25%""}",151771,1,North America +2023-05-14,74475,4985,"[""Laptop""]",3603.51,{},30722,0,South America +2023-07-18,74476,2769,"[""Tablet"", ""Phone""]",864.1,{},200008,1,North America +2023-02-24,74477,9422,"[""Keyboard"", ""Charger""]",3292.83,"{""promo"": ""26%""}",151488,1,Europe +2024-12-22,74478,7877,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",654.58,{},108968,1,South America +2024-07-23,74479,4056,"[""Keyboard""]",3577.89,{},214118,1,North America +2023-01-27,74480,1034,"[""Laptop"", ""Monitor"", ""Headphones""]",1381.65,{},149189,1,Asia +2023-08-24,74481,7243,"[""Wireless Mouse"", ""Headphones""]",2376.19,"{"""": ""13%""}",95965,0,Africa +2023-12-10,74482,9441,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",515.6,{},211442,1,Europe +2023-02-05,74483,9333,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4566.93,{},13595,0,Africa +2024-03-16,74484,5820,"[""Wireless Mouse""]",4444.48,"{""loyalty"": ""15%""}",109979,1,North America +2024-06-04,74485,1168,"[""Headphones""]",4579.98,"{"""": ""30%""}",138142,1,Asia +2024-11-07,74486,9615,"[""Laptop"", ""Keyboard"", ""Tablet""]",4868.11,{},81393,1,Europe +2024-05-12,74487,1616,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1474.84,"{"""": ""6%""}",141653,0,Asia +2024-11-06,74488,4513,"[""Wireless Mouse""]",2743.96,"{""promo"": ""28%""}",204069,0,South America +2024-11-02,74489,348,"[""Charger""]",1060.97,{},46236,0,Africa +2023-04-07,74490,6110,"[""Tablet"", ""Laptop"", ""Charger""]",2754.59,"{""loyalty"": ""13%""}",168625,1,South America +2024-09-01,74491,6911,"[""Tablet"", ""Phone"", ""Charger""]",3834.63,"{""seasonal"": ""28%""}",209924,1,Africa +2024-05-19,74492,5465,"[""Tablet"", ""Keyboard""]",4526.84,{},206376,1,North America +2023-04-24,74493,1675,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2170.85,"{""seasonal"": ""15%""}",81593,1,Africa +2023-06-07,74494,6219,"[""Keyboard"", ""Monitor""]",1974.18,"{"""": ""13%""}",118468,1,Africa +2023-03-29,74495,5450,"[""Laptop"", ""Tablet"", ""Phone""]",2017.55,"{""promo"": ""17%""}",213455,1,North America +2024-02-11,74496,5452,"[""Monitor"", ""Keyboard"", ""Phone""]",1931.22,"{""loyalty"": ""7%""}",9271,1,South America +2024-02-18,74497,5822,"[""Headphones"", ""Tablet"", ""Monitor""]",712.03,"{""promo"": ""19%""}",50103,1,Africa +2024-06-29,74498,8429,"[""Tablet"", ""Headphones""]",3299.21,"{""loyalty"": ""27%""}",68305,0,Europe +2023-10-12,74499,4064,"[""Monitor""]",3065.27,"{""seasonal"": ""29%""}",134149,1,Europe +2023-04-08,74500,8658,"[""Tablet"", ""Keyboard""]",922.08,"{"""": ""11%""}",93272,0,North America +2023-12-25,74501,1741,"[""Headphones"", ""Keyboard"", ""Laptop""]",361.91,"{"""": ""12%""}",52624,1,Asia +2023-11-16,74502,8383,"[""Phone"", ""Monitor"", ""Keyboard""]",4551.62,{},265174,0,North America +2023-04-21,74503,3206,"[""Charger"", ""Headphones""]",786.83,"{""seasonal"": ""7%""}",290532,0,Asia +2023-09-05,74504,6710,"[""Laptop""]",747.71,"{"""": ""17%""}",260355,0,Asia +2024-11-03,74505,5341,"[""Headphones"", ""Keyboard""]",1702.01,{},90436,1,South America +2024-08-28,74506,5610,"[""Wireless Mouse"", ""Charger""]",4114.86,"{"""": ""27%""}",165424,0,South America +2024-02-17,74507,4009,"[""Phone"", ""Wireless Mouse""]",3096.79,"{""promo"": ""17%""}",229299,1,Europe +2023-02-14,74508,5666,"[""Keyboard"", ""Wireless Mouse""]",4484.51,"{"""": ""6%""}",151361,0,Asia +2024-02-21,74509,4311,"[""Laptop""]",4520.83,{},173653,0,North America +2023-05-17,74510,112,"[""Charger"", ""Monitor""]",4932.77,"{""loyalty"": ""19%""}",29611,1,South America +2023-09-29,74511,8192,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1347.21,{},9153,1,Africa +2023-09-03,74512,3535,"[""Phone"", ""Wireless Mouse""]",2707.51,{},98778,1,South America +2024-12-27,74513,3971,"[""Tablet""]",3345.15,{},93196,0,Africa +2024-12-18,74514,384,"[""Headphones""]",4955.8,"{""seasonal"": ""21%""}",226269,0,North America +2023-05-05,74515,2731,"[""Laptop"", ""Monitor""]",1715.43,{},106719,1,North America +2024-04-13,74516,9804,"[""Phone"", ""Headphones""]",2459.77,{},249745,0,Europe +2023-11-24,74517,7954,"[""Charger"", ""Phone"", ""Keyboard""]",3363.25,{},118454,1,North America +2023-08-08,74518,1373,"[""Laptop"", ""Keyboard""]",1919.79,"{""promo"": ""10%""}",139816,1,Europe +2023-11-19,74519,7752,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",652.19,{},71869,1,North America +2023-06-22,74520,9796,"[""Phone"", ""Keyboard"", ""Headphones""]",2487.97,"{""loyalty"": ""19%""}",29656,1,Africa +2023-11-27,74521,5295,"[""Charger"", ""Wireless Mouse""]",686.6,"{""promo"": ""18%""}",121282,0,South America +2023-06-09,74522,3721,"[""Headphones"", ""Wireless Mouse""]",4009.9,"{"""": ""29%""}",234025,1,South America +2023-06-12,74523,3064,"[""Keyboard"", ""Headphones""]",1003.59,"{""loyalty"": ""16%""}",235940,1,Asia +2023-02-11,74524,8511,"[""Headphones"", ""Keyboard"", ""Charger""]",784.78,{},226225,0,Europe +2024-07-02,74525,3984,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2024.31,"{"""": ""10%""}",11823,1,South America +2024-03-16,74526,2286,"[""Keyboard"", ""Tablet""]",744.79,"{""loyalty"": ""13%""}",205754,0,Asia +2024-06-26,74527,288,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",465.1,"{""promo"": ""29%""}",252054,1,Europe +2023-09-24,74528,901,"[""Charger"", ""Phone""]",1690.94,"{""seasonal"": ""15%""}",80972,1,Africa +2023-07-17,74529,5631,"[""Headphones"", ""Tablet"", ""Keyboard""]",1689.58,"{""loyalty"": ""8%""}",29932,0,North America +2024-10-27,74530,5538,"[""Laptop""]",1419.99,{},46158,1,North America +2023-03-25,74531,6977,"[""Tablet"", ""Headphones"", ""Keyboard""]",1268.81,"{""loyalty"": ""6%""}",159998,1,Africa +2023-04-30,74532,319,"[""Laptop"", ""Headphones""]",4279.07,"{"""": ""7%""}",39864,1,Europe +2023-01-01,74533,1204,"[""Headphones""]",932.47,{},37141,0,South America +2023-05-23,74534,8554,"[""Keyboard"", ""Phone""]",328.63,"{"""": ""6%""}",8615,0,Asia +2024-06-24,74535,5832,"[""Phone"", ""Headphones""]",4645.23,"{""seasonal"": ""29%""}",236562,1,Europe +2023-10-02,74536,3154,"[""Laptop""]",72.23,{},172876,1,Europe +2024-09-07,74537,628,"[""Tablet"", ""Headphones"", ""Keyboard""]",1201.22,{},103371,1,Asia +2024-03-05,74538,5043,"[""Keyboard"", ""Tablet"", ""Phone""]",657.64,"{""promo"": ""22%""}",69320,1,Asia +2023-04-12,74539,6913,"[""Monitor"", ""Laptop"", ""Charger""]",278.77,"{""promo"": ""29%""}",291681,1,South America +2023-09-08,74540,1252,"[""Wireless Mouse""]",1145.61,{},265424,0,Europe +2023-09-14,74541,7584,"[""Keyboard"", ""Tablet"", ""Laptop""]",3959.62,"{""promo"": ""13%""}",65237,0,Africa +2023-01-04,74542,2108,"[""Phone"", ""Laptop"", ""Charger""]",1886.86,"{""seasonal"": ""17%""}",239115,0,Asia +2023-06-17,74543,5140,"[""Headphones""]",67.52,{},210107,0,Asia +2023-06-18,74544,7880,"[""Phone"", ""Keyboard""]",3047.31,{},78716,0,Europe +2023-07-01,74545,9462,"[""Laptop"", ""Phone""]",771.56,{},137057,0,Africa +2023-04-05,74546,3087,"[""Laptop"", ""Phone""]",3839.87,"{""seasonal"": ""28%""}",164627,1,Africa +2024-11-23,74547,2133,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3688.83,"{"""": ""24%""}",230574,0,Asia +2023-03-15,74548,6469,"[""Laptop"", ""Keyboard"", ""Monitor""]",4623.04,{},97556,1,North America +2024-07-08,74549,6826,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1782.27,{},137411,0,North America +2023-05-19,74550,1703,"[""Tablet""]",2408.31,{},286669,1,North America +2023-06-30,74551,136,"[""Monitor""]",4459.06,"{"""": ""8%""}",37206,1,Africa +2023-05-17,74552,5542,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2698.78,"{""seasonal"": ""18%""}",27971,0,Asia +2024-03-17,74553,3616,"[""Charger""]",2378.12,"{"""": ""27%""}",152027,1,North America +2023-05-31,74554,8931,"[""Phone""]",2551.69,{},180412,1,Europe +2023-05-29,74555,9718,"[""Headphones"", ""Keyboard"", ""Charger""]",3434.47,"{"""": ""20%""}",9203,0,Asia +2024-12-17,74556,2397,"[""Phone"", ""Headphones"", ""Tablet""]",428.63,"{""promo"": ""21%""}",296034,1,North America +2023-01-16,74557,2629,"[""Keyboard""]",830.98,{},161195,1,South America +2024-03-31,74558,2186,"[""Laptop""]",115.92,{},297483,1,North America +2024-11-26,74559,7668,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1216.22,"{""promo"": ""13%""}",33890,0,Europe +2024-10-12,74560,6642,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1254.76,{},151676,1,Africa +2024-11-13,74561,629,"[""Wireless Mouse""]",3339.63,{},69305,1,Asia +2024-02-23,74562,1829,"[""Keyboard""]",3267.07,{},195190,0,North America +2023-08-26,74563,6681,"[""Phone"", ""Tablet""]",4306.31,"{""loyalty"": ""20%""}",65396,0,Africa +2023-11-20,74564,9770,"[""Charger"", ""Headphones""]",281.64,{},180173,1,Africa +2023-04-26,74565,9946,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",315.28,{},30047,0,Africa +2023-01-08,74566,6219,"[""Phone"", ""Charger"", ""Headphones""]",3323.91,"{""promo"": ""18%""}",239170,0,North America +2024-09-04,74567,9145,"[""Phone""]",1910.59,"{""promo"": ""7%""}",212477,0,Asia +2023-08-24,74568,5705,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3837.07,{},273342,1,Africa +2023-10-04,74569,9286,"[""Charger"", ""Tablet"", ""Keyboard""]",979.23,{},257123,1,Europe +2023-05-13,74570,5710,"[""Wireless Mouse"", ""Tablet""]",3100.63,{},192579,0,Africa +2024-08-17,74571,8787,"[""Laptop""]",1352.23,"{""seasonal"": ""21%""}",107071,1,South America +2024-07-28,74572,6471,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2783.01,{},95648,0,Europe +2024-05-19,74573,7676,"[""Monitor"", ""Tablet""]",274.36,{},236385,1,Africa +2023-08-22,74574,2378,"[""Wireless Mouse""]",2433.16,"{""loyalty"": ""14%""}",261920,0,Europe +2023-06-04,74575,8743,"[""Phone"", ""Tablet"", ""Keyboard""]",1330.31,"{"""": ""29%""}",270027,0,South America +2023-06-05,74576,1655,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",574.97,"{""loyalty"": ""23%""}",216724,1,Europe +2023-04-03,74577,14,"[""Charger""]",2713.12,{},299645,0,Europe +2024-04-27,74578,7516,"[""Laptop"", ""Tablet"", ""Phone""]",3496.32,{},202813,0,Asia +2024-11-13,74579,3529,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2997.25,"{"""": ""29%""}",265897,1,Europe +2024-04-20,74580,4688,"[""Phone""]",2337.74,"{"""": ""30%""}",27302,0,Europe +2024-11-30,74581,3449,"[""Wireless Mouse""]",3972.23,"{""promo"": ""19%""}",285464,0,North America +2023-07-07,74582,3772,"[""Tablet"", ""Monitor""]",1633.32,"{"""": ""16%""}",78605,0,North America +2024-06-03,74583,9251,"[""Keyboard"", ""Phone""]",1297.54,"{""promo"": ""20%""}",38382,1,North America +2023-02-15,74584,3256,"[""Wireless Mouse"", ""Keyboard""]",305.1,"{""seasonal"": ""11%""}",154069,0,Africa +2024-08-27,74585,2243,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1080.58,"{""promo"": ""15%""}",192856,1,Europe +2023-10-04,74586,5621,"[""Keyboard""]",4176.39,{},159237,1,Asia +2024-12-10,74587,7826,"[""Keyboard"", ""Phone"", ""Laptop""]",4041.8,"{""seasonal"": ""13%""}",268377,0,Africa +2023-09-03,74588,6021,"[""Monitor""]",3372.99,"{""loyalty"": ""16%""}",97557,1,Europe +2023-08-03,74589,9749,"[""Wireless Mouse""]",1701.56,{},13588,0,Asia +2024-01-29,74590,2372,"[""Wireless Mouse"", ""Keyboard""]",2372.72,{},4669,1,Africa +2024-04-25,74591,3522,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4735.5,{},120086,1,Asia +2023-02-19,74592,9221,"[""Tablet"", ""Headphones""]",3833.9,{},238583,1,Asia +2023-04-16,74593,9446,"[""Wireless Mouse""]",2252.81,"{""seasonal"": ""8%""}",125623,0,North America +2023-07-04,74594,91,"[""Charger"", ""Phone""]",1873.85,"{""promo"": ""11%""}",250821,1,Africa +2024-01-13,74595,1603,"[""Tablet""]",2381.89,{},269778,1,North America +2024-04-01,74596,3334,"[""Wireless Mouse""]",4254.93,{},156280,0,Africa +2024-03-21,74597,8445,"[""Phone"", ""Monitor"", ""Keyboard""]",4661.12,{},238851,1,Asia +2024-03-27,74598,4668,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3515.4,"{""seasonal"": ""8%""}",82830,0,South America +2023-01-19,74599,7383,"[""Laptop""]",4029.25,{},32950,1,North America +2024-07-28,74600,1754,"[""Phone"", ""Charger"", ""Monitor""]",4406.31,"{""seasonal"": ""27%""}",124183,0,North America +2023-11-14,74601,384,"[""Keyboard""]",1829.89,"{"""": ""21%""}",129492,0,North America +2024-01-08,74602,8096,"[""Charger"", ""Laptop""]",580.33,{},45629,1,North America +2023-05-13,74603,40,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3199.06,{},184045,0,Europe +2023-09-04,74604,7986,"[""Laptop"", ""Phone""]",4301.39,{},156577,1,South America +2024-12-20,74605,68,"[""Charger"", ""Phone"", ""Tablet""]",3167.49,{},220404,0,Asia +2023-03-17,74606,8514,"[""Phone""]",2853.54,{},255360,0,South America +2023-02-18,74607,1749,"[""Monitor"", ""Tablet""]",855.27,{},137990,0,South America +2023-06-01,74608,5547,"[""Wireless Mouse""]",1316.78,"{""promo"": ""22%""}",255560,0,Africa +2023-07-03,74609,3002,"[""Monitor""]",1321.71,"{"""": ""5%""}",236664,0,North America +2024-02-07,74610,1547,"[""Phone"", ""Tablet"", ""Charger""]",4776.88,"{"""": ""14%""}",274811,1,Africa +2024-06-25,74611,9483,"[""Tablet"", ""Laptop"", ""Keyboard""]",3960.57,{},18901,1,Asia +2023-03-15,74612,3796,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3508.52,"{""loyalty"": ""10%""}",28487,0,South America +2024-04-11,74613,3126,"[""Laptop"", ""Monitor""]",1234.26,{},204070,0,Europe +2023-12-05,74614,7069,"[""Laptop"", ""Wireless Mouse""]",2518.84,"{"""": ""11%""}",290063,1,Asia +2023-03-27,74615,4215,"[""Phone"", ""Monitor""]",311.54,{},196176,1,Asia +2024-07-21,74616,1900,"[""Laptop""]",4855.6,{},68356,0,Africa +2024-03-26,74617,9636,"[""Tablet""]",976.5,"{""loyalty"": ""13%""}",169237,0,Asia +2024-02-15,74618,1119,"[""Tablet"", ""Wireless Mouse""]",2925.21,{},275687,1,South America +2024-06-23,74619,5484,"[""Wireless Mouse"", ""Charger"", ""Phone""]",416.15,{},96185,1,Asia +2024-08-14,74620,7436,"[""Keyboard"", ""Laptop""]",579.07,{},184443,1,North America +2023-05-06,74621,8449,"[""Laptop"", ""Headphones"", ""Tablet""]",4463.68,{},194769,0,Africa +2024-05-25,74622,4014,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4895.15,{},217112,1,Europe +2024-02-08,74623,3384,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3432.34,"{""seasonal"": ""30%""}",268043,1,North America +2024-07-31,74624,1454,"[""Phone""]",4797.61,{},123543,0,Africa +2023-11-24,74625,2975,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3183.94,{},175233,0,Asia +2024-06-16,74626,626,"[""Phone"", ""Keyboard""]",3655.91,{},4501,1,Europe +2024-06-14,74627,8209,"[""Charger""]",3174.76,{},209590,1,Asia +2024-04-12,74628,4936,"[""Monitor""]",1042.73,"{""promo"": ""23%""}",5400,1,South America +2023-02-06,74629,257,"[""Wireless Mouse"", ""Headphones""]",3212.99,{},249942,0,Asia +2024-10-28,74630,1110,"[""Headphones""]",3941.66,{},192314,1,North America +2023-06-23,74631,2445,"[""Headphones"", ""Monitor""]",97.56,"{"""": ""11%""}",184158,1,North America +2024-06-22,74632,1608,"[""Charger""]",2913.32,{},124562,0,South America +2024-06-12,74633,4940,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4098.92,{},149238,0,South America +2024-05-11,74634,1279,"[""Laptop"", ""Monitor"", ""Charger""]",2441.27,{},140460,1,Africa +2024-08-02,74635,6168,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1358.63,{},32632,0,North America +2024-09-28,74636,7162,"[""Monitor"", ""Phone""]",2177.56,{},93612,0,Africa +2023-02-14,74637,8293,"[""Headphones""]",3660.06,"{""promo"": ""21%""}",188968,1,Asia +2023-10-17,74638,7583,"[""Monitor""]",4049.18,"{""promo"": ""29%""}",64186,0,North America +2023-11-20,74639,6231,"[""Tablet""]",304.09,{},293163,0,Asia +2023-10-25,74640,3848,"[""Charger"", ""Laptop"", ""Tablet""]",1709.57,"{""seasonal"": ""25%""}",185073,0,Europe +2023-04-17,74641,857,"[""Phone"", ""Keyboard"", ""Charger""]",672.13,{},52880,1,Europe +2024-12-24,74642,3166,"[""Headphones"", ""Wireless Mouse""]",2716.78,"{""seasonal"": ""19%""}",284499,1,Africa +2023-09-11,74643,8578,"[""Tablet""]",2965.99,"{""seasonal"": ""30%""}",58309,1,Europe +2023-01-07,74644,7505,"[""Wireless Mouse"", ""Laptop""]",4469.15,"{""promo"": ""11%""}",24053,0,South America +2023-10-06,74645,5483,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2341.91,"{""seasonal"": ""23%""}",262106,1,Asia +2023-12-23,74646,3915,"[""Keyboard""]",3923.59,{},263389,0,North America +2024-01-08,74647,1527,"[""Monitor""]",1863.42,"{""promo"": ""18%""}",290264,1,North America +2024-04-29,74648,5080,"[""Headphones""]",4254.97,{},192438,1,Asia +2024-09-09,74649,3552,"[""Headphones"", ""Keyboard""]",4307.32,{},187036,0,Asia +2023-07-05,74650,2192,"[""Headphones"", ""Monitor""]",2151.08,{},33918,0,Asia +2023-04-06,74651,2598,"[""Laptop"", ""Keyboard"", ""Tablet""]",3060.77,"{""loyalty"": ""18%""}",233438,0,North America +2023-04-14,74652,2698,"[""Laptop"", ""Keyboard""]",4250.77,"{"""": ""30%""}",144569,1,North America +2023-01-10,74653,273,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",454.43,"{""promo"": ""27%""}",207150,1,South America +2023-07-28,74654,6712,"[""Charger""]",2358.21,"{""seasonal"": ""18%""}",93690,1,Europe +2023-05-18,74655,1717,"[""Monitor""]",4277.2,"{"""": ""9%""}",17817,0,North America +2024-03-03,74656,5109,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3690.25,{},273699,0,South America +2023-02-03,74657,7230,"[""Keyboard"", ""Phone"", ""Monitor""]",1202.65,{},259037,1,Europe +2023-07-24,74658,2143,"[""Keyboard"", ""Headphones""]",1610.31,"{""seasonal"": ""22%""}",259147,0,Asia +2024-01-14,74659,4043,"[""Phone"", ""Keyboard"", ""Charger""]",4938.76,"{"""": ""9%""}",35419,0,Asia +2023-08-07,74660,715,"[""Keyboard""]",1137.21,"{""seasonal"": ""22%""}",231744,1,Asia +2024-09-07,74661,77,"[""Wireless Mouse"", ""Charger""]",4160.83,"{""promo"": ""19%""}",103197,1,South America +2023-02-28,74662,2308,"[""Wireless Mouse""]",2095.7,{},170745,0,Asia +2023-10-08,74663,4407,"[""Headphones"", ""Charger"", ""Monitor""]",845.59,{},51344,0,South America +2023-01-26,74664,6312,"[""Charger"", ""Tablet""]",4790.63,{},55573,1,Europe +2023-04-27,74665,5157,"[""Phone""]",4082.6,"{""loyalty"": ""24%""}",218888,0,South America +2023-12-24,74666,63,"[""Tablet"", ""Laptop""]",3760.95,{},296160,0,Asia +2023-06-09,74667,6580,"[""Monitor"", ""Keyboard"", ""Tablet""]",4613.31,"{""loyalty"": ""29%""}",298059,0,South America +2024-09-19,74668,1682,"[""Charger"", ""Tablet""]",3309.89,{},30169,1,Asia +2023-09-16,74669,1486,"[""Wireless Mouse"", ""Monitor""]",1037.52,"{""seasonal"": ""22%""}",167224,0,Europe +2023-06-14,74670,8113,"[""Phone"", ""Laptop""]",1779.36,"{""loyalty"": ""30%""}",46775,1,Africa +2023-07-31,74671,7010,"[""Laptop""]",3894.31,"{""seasonal"": ""28%""}",70223,1,North America +2023-12-16,74672,3759,"[""Laptop""]",1348.66,"{"""": ""29%""}",156167,1,Europe +2024-02-14,74673,2540,"[""Headphones"", ""Laptop""]",389.98,{},259076,1,Asia +2024-01-17,74674,6023,"[""Wireless Mouse""]",3095.17,"{""loyalty"": ""18%""}",81816,1,Africa +2023-01-15,74675,4391,"[""Laptop""]",3811.9,"{""seasonal"": ""17%""}",149730,1,Asia +2024-07-30,74676,1736,"[""Charger"", ""Laptop""]",3397.43,"{""seasonal"": ""11%""}",31896,1,Asia +2023-03-20,74677,4160,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3576.2,"{""loyalty"": ""27%""}",167264,0,Asia +2023-08-19,74678,130,"[""Charger"", ""Phone""]",2877.89,{},289148,0,Asia +2024-11-19,74679,123,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3070.01,{},185115,0,Europe +2024-01-19,74680,7781,"[""Phone"", ""Charger"", ""Laptop""]",343.2,{},24883,1,Africa +2023-03-02,74681,6169,"[""Tablet"", ""Phone""]",4252.09,"{""promo"": ""14%""}",42149,1,South America +2023-05-18,74682,7748,"[""Tablet"", ""Headphones"", ""Phone""]",4010.03,{},203783,1,South America +2023-11-29,74683,5748,"[""Headphones""]",4615.15,"{"""": ""12%""}",57418,0,North America +2023-05-27,74684,5347,"[""Phone""]",346.25,"{""promo"": ""11%""}",291456,0,Africa +2023-12-29,74685,703,"[""Keyboard""]",4307.13,"{""seasonal"": ""9%""}",233229,1,South America +2023-01-28,74686,2655,"[""Keyboard"", ""Monitor"", ""Phone""]",4413.8,{},158951,1,Asia +2023-01-30,74687,7395,"[""Monitor"", ""Tablet"", ""Laptop""]",3088.26,{},50655,1,North America +2024-02-06,74688,7411,"[""Charger"", ""Tablet""]",1856.97,{},280260,1,Asia +2023-12-09,74689,9949,"[""Monitor"", ""Phone"", ""Tablet""]",4274.32,"{""seasonal"": ""17%""}",177955,0,North America +2024-09-12,74690,8105,"[""Headphones"", ""Phone"", ""Keyboard""]",122.24,"{""loyalty"": ""22%""}",38288,0,Europe +2024-10-14,74691,6642,"[""Wireless Mouse"", ""Phone""]",617.6,"{""promo"": ""8%""}",95376,1,Asia +2024-08-20,74692,2248,"[""Monitor"", ""Headphones"", ""Tablet""]",4540.78,{},31551,1,South America +2024-12-20,74693,3130,"[""Charger""]",4464.78,"{""seasonal"": ""22%""}",137581,0,South America +2024-01-06,74694,6178,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",328.86,"{"""": ""10%""}",278938,0,South America +2023-07-07,74695,9174,"[""Keyboard""]",907.64,{},80071,1,North America +2024-11-01,74696,799,"[""Keyboard"", ""Phone"", ""Monitor""]",1823.3,{},18650,0,Europe +2024-11-22,74697,2741,"[""Charger"", ""Wireless Mouse""]",4053.64,"{""loyalty"": ""20%""}",273049,0,Europe +2023-10-14,74698,8933,"[""Headphones"", ""Monitor"", ""Laptop""]",2299.17,{},275566,0,Europe +2023-08-14,74699,2407,"[""Tablet"", ""Charger"", ""Headphones""]",87.84,"{"""": ""22%""}",178084,1,North America +2023-07-20,74700,2108,"[""Charger""]",1110.95,{},190521,1,Europe +2024-08-02,74701,6248,"[""Headphones"", ""Monitor"", ""Keyboard""]",1841.53,{},291808,1,Africa +2023-05-18,74702,5595,"[""Tablet"", ""Charger""]",1620.47,"{""loyalty"": ""15%""}",16238,0,Asia +2024-09-17,74703,9689,"[""Laptop""]",463.37,{},22741,0,South America +2024-12-14,74704,6682,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3310.68,"{""seasonal"": ""30%""}",183496,0,North America +2024-12-05,74705,9351,"[""Charger"", ""Wireless Mouse""]",4408.34,"{"""": ""7%""}",292126,0,Asia +2023-02-03,74706,4948,"[""Keyboard""]",1111.85,{},285869,0,Asia +2024-08-06,74707,1798,"[""Monitor"", ""Phone"", ""Tablet""]",82.55,{},128784,1,Asia +2024-07-24,74708,1550,"[""Headphones"", ""Tablet"", ""Phone""]",4211.17,{},170020,1,South America +2023-11-01,74709,3518,"[""Tablet""]",420.67,{},169563,0,South America +2024-04-29,74710,9238,"[""Monitor"", ""Charger""]",2408.93,{},211323,0,North America +2023-09-15,74711,6383,"[""Keyboard"", ""Monitor""]",3081.02,{},242837,1,Africa +2024-05-16,74712,9041,"[""Keyboard""]",463.84,"{"""": ""7%""}",259004,1,North America +2024-10-07,74713,2514,"[""Charger"", ""Monitor"", ""Tablet""]",3836.66,{},227789,0,North America +2023-12-24,74714,2030,"[""Phone""]",2737.77,"{""promo"": ""27%""}",288174,1,Asia +2023-05-04,74715,4530,"[""Laptop"", ""Monitor"", ""Charger""]",437.68,{},161693,1,Asia +2023-04-15,74716,4511,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3511.69,{},43880,1,Europe +2023-03-02,74717,3127,"[""Laptop""]",388.35,"{"""": ""18%""}",81904,0,South America +2024-03-31,74718,8428,"[""Monitor"", ""Wireless Mouse""]",91.39,"{""loyalty"": ""8%""}",129446,0,Africa +2024-11-27,74719,5336,"[""Keyboard""]",367.99,{},66330,1,Africa +2024-12-05,74720,4324,"[""Laptop"", ""Keyboard""]",4295.17,"{""loyalty"": ""28%""}",267676,1,Europe +2024-05-15,74721,8349,"[""Wireless Mouse"", ""Tablet""]",3693.69,"{""promo"": ""22%""}",2142,1,Africa +2024-07-18,74722,5229,"[""Headphones"", ""Tablet"", ""Charger""]",4196.85,{},57437,0,South America +2024-10-14,74723,8638,"[""Monitor"", ""Keyboard"", ""Phone""]",4280.75,{},231644,0,North America +2023-01-28,74724,9969,"[""Headphones"", ""Monitor"", ""Laptop""]",2995.04,{},16431,1,Africa +2024-02-24,74725,7280,"[""Headphones""]",4135.92,{},294145,0,North America +2024-05-10,74726,465,"[""Wireless Mouse""]",673.62,{},262011,1,North America +2023-01-21,74727,5610,"[""Keyboard""]",4624.83,{},44772,1,Asia +2024-04-30,74728,9001,"[""Wireless Mouse"", ""Monitor""]",1454.05,{},52573,0,South America +2023-02-01,74729,9574,"[""Keyboard"", ""Headphones"", ""Phone""]",4529.54,{},245318,0,South America +2024-04-13,74730,4869,"[""Phone"", ""Keyboard""]",789.67,"{""promo"": ""16%""}",63584,0,Europe +2023-02-22,74731,889,"[""Charger"", ""Phone"", ""Monitor""]",4652.17,"{""promo"": ""25%""}",287503,0,North America +2024-07-28,74732,6490,"[""Monitor"", ""Charger""]",3375.45,{},179922,1,Europe +2023-07-04,74733,1366,"[""Wireless Mouse""]",2633.37,{},140014,0,Asia +2024-09-22,74734,3718,"[""Keyboard"", ""Charger"", ""Phone""]",1465.11,{},203595,1,Asia +2023-08-01,74735,2428,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",806.69,{},145692,1,Europe +2024-09-26,74736,7098,"[""Tablet"", ""Headphones""]",2970.5,"{""promo"": ""25%""}",291276,1,Europe +2023-03-19,74737,6938,"[""Tablet""]",4412.14,{},130224,0,North America +2023-10-24,74738,2137,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3749.94,{},270912,0,Africa +2024-04-16,74739,9406,"[""Headphones"", ""Tablet""]",2260.44,{},196589,1,Europe +2023-10-15,74740,1143,"[""Charger"", ""Monitor"", ""Tablet""]",4772.2,{},274929,1,Africa +2024-10-20,74741,7031,"[""Keyboard"", ""Phone"", ""Laptop""]",2020.95,{},19171,1,Asia +2023-08-23,74742,5255,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3952.51,{},177322,0,Europe +2023-12-26,74743,4701,"[""Headphones"", ""Tablet""]",4915.17,"{"""": ""20%""}",61284,1,Europe +2023-08-12,74744,470,"[""Laptop"", ""Monitor""]",3401.45,{},127232,1,South America +2024-06-01,74745,7798,"[""Tablet"", ""Charger"", ""Phone""]",4711.43,"{""promo"": ""11%""}",78644,0,Asia +2024-08-05,74746,8706,"[""Charger"", ""Phone""]",3516.9,"{"""": ""18%""}",247052,0,South America +2024-09-21,74747,5786,"[""Laptop""]",4971.46,"{""loyalty"": ""19%""}",144495,0,North America +2023-05-01,74748,8920,"[""Tablet""]",531.04,{},297077,1,Asia +2024-01-24,74749,9137,"[""Monitor"", ""Wireless Mouse""]",3878.44,{},165216,0,Europe +2023-06-17,74750,8737,"[""Tablet"", ""Keyboard"", ""Headphones""]",134.35,"{""loyalty"": ""16%""}",175800,0,Europe +2024-02-18,74751,2652,"[""Charger"", ""Headphones""]",1863.88,{},33293,1,North America +2024-01-31,74752,1996,"[""Charger"", ""Wireless Mouse""]",416.73,{},25553,1,North America +2023-04-20,74753,7195,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1720.1,{},57458,0,Europe +2023-03-03,74754,6635,"[""Laptop"", ""Headphones""]",4563.33,"{""seasonal"": ""25%""}",76613,1,Asia +2023-03-01,74755,5829,"[""Phone"", ""Keyboard""]",1692.37,"{""loyalty"": ""29%""}",48073,1,North America +2023-03-23,74756,2683,"[""Wireless Mouse""]",4901.19,{},105261,1,Europe +2023-05-02,74757,9330,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3045.53,{},194133,1,Africa +2024-03-23,74758,6640,"[""Keyboard""]",3438.54,{},79180,0,South America +2024-02-01,74759,3560,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4708.84,"{""loyalty"": ""23%""}",152486,1,Africa +2024-10-03,74760,7322,"[""Tablet"", ""Monitor""]",3404.56,"{""promo"": ""23%""}",45606,1,Asia +2023-04-08,74761,755,"[""Laptop"", ""Phone""]",3838.0,"{"""": ""8%""}",22565,1,Asia +2023-07-28,74762,2521,"[""Keyboard"", ""Wireless Mouse""]",2714.17,{},235510,0,North America +2024-04-26,74763,6133,"[""Keyboard"", ""Laptop""]",1607.0,{},3202,1,Europe +2024-10-21,74764,9599,"[""Keyboard""]",90.57,"{""loyalty"": ""23%""}",156981,1,South America +2023-04-25,74765,4176,"[""Headphones""]",3053.54,{},232475,1,Africa +2024-07-25,74766,1761,"[""Monitor"", ""Tablet""]",1257.11,"{"""": ""12%""}",98784,0,Europe +2023-12-25,74767,1930,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2099.98,{},31868,1,Europe +2023-10-13,74768,1139,"[""Monitor"", ""Laptop""]",3628.75,{},227147,0,Asia +2023-12-07,74769,6619,"[""Phone"", ""Wireless Mouse""]",2255.29,"{""promo"": ""28%""}",62486,0,North America +2024-05-21,74770,4839,"[""Tablet"", ""Wireless Mouse""]",2470.37,"{"""": ""11%""}",101054,1,South America +2024-06-28,74771,5301,"[""Tablet""]",1303.33,{},57841,1,Asia +2024-06-11,74772,5889,"[""Monitor"", ""Keyboard""]",404.21,"{""seasonal"": ""8%""}",247116,1,North America +2023-04-30,74773,4733,"[""Tablet""]",1679.76,{},39841,0,North America +2023-09-15,74774,8052,"[""Laptop""]",1475.77,{},227311,0,Africa +2023-04-27,74775,6873,"[""Phone"", ""Tablet""]",212.27,{},48667,1,South America +2023-05-07,74776,7,"[""Tablet""]",3820.83,{},85297,1,South America +2023-06-03,74777,7962,"[""Wireless Mouse""]",2896.56,"{""loyalty"": ""6%""}",142152,1,North America +2023-12-10,74778,764,"[""Tablet""]",181.23,{},54535,1,South America +2023-05-21,74779,7570,"[""Tablet"", ""Monitor""]",4398.1,"{"""": ""12%""}",193177,1,South America +2023-08-31,74780,7068,"[""Tablet""]",1750.97,"{""promo"": ""29%""}",183136,0,North America +2024-02-09,74781,4326,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3187.44,"{"""": ""8%""}",2527,0,Asia +2024-02-04,74782,3449,"[""Charger"", ""Headphones""]",2029.24,"{""seasonal"": ""10%""}",184271,0,Europe +2024-01-14,74783,2457,"[""Charger""]",1519.56,{},35395,0,South America +2024-03-16,74784,7057,"[""Laptop"", ""Headphones"", ""Phone""]",2866.4,"{"""": ""14%""}",209716,0,Asia +2024-06-18,74785,8079,"[""Charger""]",180.96,"{""seasonal"": ""20%""}",129211,1,Asia +2024-10-29,74786,2346,"[""Phone""]",1433.77,{},122334,0,North America +2024-10-28,74787,8708,"[""Wireless Mouse""]",1504.05,"{""seasonal"": ""27%""}",11076,0,Asia +2024-06-12,74788,7669,"[""Headphones"", ""Charger"", ""Keyboard""]",4778.14,"{""seasonal"": ""6%""}",159170,1,Europe +2023-06-14,74789,1415,"[""Keyboard"", ""Charger"", ""Monitor""]",389.66,"{""loyalty"": ""9%""}",169747,1,South America +2023-09-09,74790,1345,"[""Keyboard"", ""Tablet""]",4190.27,"{"""": ""13%""}",195413,1,South America +2023-04-05,74791,1172,"[""Headphones""]",4162.01,{},217264,1,Africa +2024-01-26,74792,1524,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3172.53,"{"""": ""10%""}",60019,1,Asia +2024-01-29,74793,963,"[""Monitor""]",1737.01,"{""seasonal"": ""28%""}",5916,1,North America +2024-08-24,74794,836,"[""Laptop"", ""Headphones"", ""Phone""]",1210.1,{},50525,1,Asia +2024-11-16,74795,8288,"[""Charger""]",3161.02,"{""seasonal"": ""21%""}",20488,1,Africa +2024-04-28,74796,9262,"[""Keyboard"", ""Charger"", ""Headphones""]",4280.71,"{""seasonal"": ""23%""}",74901,1,South America +2023-08-12,74797,9154,"[""Headphones""]",2799.49,{},287577,0,Africa +2024-09-24,74798,1536,"[""Keyboard"", ""Wireless Mouse""]",4413.15,"{""promo"": ""7%""}",9171,1,South America +2024-08-16,74799,8489,"[""Headphones""]",2371.46,{},289579,0,Asia +2023-10-23,74800,7044,"[""Headphones""]",3217.53,"{"""": ""5%""}",209529,1,North America +2023-03-14,74801,3268,"[""Laptop"", ""Charger""]",4323.69,{},100634,1,Africa +2023-10-31,74802,6830,"[""Headphones"", ""Charger"", ""Keyboard""]",1390.8,{},91698,1,Europe +2024-04-19,74803,1965,"[""Keyboard""]",4569.46,"{""loyalty"": ""9%""}",95483,0,Asia +2024-06-24,74804,9322,"[""Charger"", ""Tablet""]",151.8,"{""seasonal"": ""10%""}",11425,1,Asia +2024-09-18,74805,3427,"[""Headphones"", ""Wireless Mouse""]",1518.41,{},255712,1,South America +2024-08-21,74806,7936,"[""Keyboard"", ""Charger"", ""Monitor""]",432.64,"{""seasonal"": ""26%""}",107307,1,Europe +2023-10-12,74807,1912,"[""Charger""]",4110.86,{},228584,1,Asia +2024-02-04,74808,8443,"[""Headphones"", ""Phone"", ""Charger""]",4379.06,"{""promo"": ""17%""}",145074,0,North America +2023-07-05,74809,8097,"[""Tablet"", ""Charger""]",1319.74,"{"""": ""5%""}",39115,0,North America +2024-06-24,74810,5954,"[""Phone""]",2196.08,"{""promo"": ""23%""}",146249,1,Asia +2024-10-05,74811,7974,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1080.88,{},276616,0,Europe +2024-07-13,74812,2260,"[""Headphones""]",1174.74,{},9139,0,South America +2023-07-18,74813,5508,"[""Phone"", ""Laptop""]",1724.45,"{""loyalty"": ""6%""}",36576,1,South America +2024-03-30,74814,1688,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4422.25,"{"""": ""13%""}",58924,1,Asia +2024-12-21,74815,9746,"[""Wireless Mouse"", ""Laptop""]",1398.64,"{"""": ""23%""}",297883,0,Europe +2023-04-29,74816,6222,"[""Headphones"", ""Laptop""]",3073.65,{},113539,1,South America +2024-02-14,74817,5071,"[""Monitor""]",2216.49,"{""promo"": ""15%""}",192164,1,Asia +2023-07-08,74818,4044,"[""Tablet"", ""Charger"", ""Headphones""]",937.51,{},96863,1,Europe +2023-03-22,74819,9124,"[""Keyboard"", ""Charger""]",283.74,{},112369,1,Africa +2023-10-19,74820,5623,"[""Tablet""]",3033.78,"{""loyalty"": ""20%""}",66017,1,Europe +2023-10-20,74821,9176,"[""Wireless Mouse""]",924.55,{},219554,1,North America +2024-05-03,74822,5337,"[""Wireless Mouse"", ""Laptop""]",4065.66,"{"""": ""18%""}",69601,1,Europe +2024-02-08,74823,9557,"[""Charger""]",4322.9,{},279318,1,Asia +2024-11-14,74824,1041,"[""Monitor"", ""Tablet""]",3739.66,"{""loyalty"": ""28%""}",115942,0,Africa +2023-01-19,74825,4963,"[""Tablet"", ""Headphones""]",1534.82,"{"""": ""26%""}",42932,0,North America +2023-01-06,74826,8947,"[""Laptop""]",965.81,{},174934,0,Africa +2023-02-10,74827,47,"[""Charger"", ""Monitor""]",638.92,{},219894,0,South America +2024-01-08,74828,515,"[""Headphones"", ""Charger"", ""Tablet""]",4477.5,{},9999,1,South America +2023-09-19,74829,8085,"[""Keyboard""]",2717.16,"{""seasonal"": ""19%""}",93392,0,Asia +2023-05-05,74830,3126,"[""Charger"", ""Headphones"", ""Monitor""]",1905.38,"{""seasonal"": ""21%""}",182487,1,South America +2024-01-23,74831,4380,"[""Laptop""]",3935.44,"{""promo"": ""12%""}",240196,0,Africa +2024-03-03,74832,9971,"[""Headphones""]",4092.9,{},139976,1,Europe +2024-01-26,74833,7672,"[""Headphones"", ""Keyboard""]",3233.72,{},176670,0,North America +2024-12-07,74834,2809,"[""Keyboard"", ""Tablet""]",3287.05,{},77411,0,Africa +2024-05-29,74835,3739,"[""Charger""]",1229.63,"{"""": ""28%""}",269515,0,Europe +2023-07-25,74836,9121,"[""Charger"", ""Tablet"", ""Monitor""]",4633.72,"{""loyalty"": ""22%""}",250480,1,North America +2024-06-08,74837,7817,"[""Tablet"", ""Keyboard"", ""Headphones""]",3891.38,"{"""": ""5%""}",159582,1,Asia +2023-10-24,74838,6261,"[""Monitor""]",3272.45,{},81500,1,North America +2024-10-16,74839,645,"[""Charger"", ""Tablet""]",1337.43,{},85137,0,Africa +2024-05-19,74840,7006,"[""Charger"", ""Phone""]",1373.3,{},93093,0,North America +2023-11-14,74841,1361,"[""Headphones"", ""Wireless Mouse""]",3741.24,{},264360,0,South America +2023-04-17,74842,9666,"[""Keyboard""]",3649.54,{},285823,1,North America +2024-01-21,74843,6631,"[""Headphones""]",1082.95,{},148786,0,Europe +2024-03-09,74844,529,"[""Keyboard""]",538.47,{},87637,1,North America +2024-10-15,74845,3523,"[""Tablet""]",4602.13,{},226547,1,Africa +2024-05-13,74846,1468,"[""Headphones"", ""Monitor"", ""Keyboard""]",1455.25,"{""seasonal"": ""17%""}",70989,1,Europe +2023-08-01,74847,8004,"[""Keyboard""]",1309.97,"{"""": ""21%""}",254994,1,Europe +2024-10-23,74848,1737,"[""Wireless Mouse"", ""Monitor""]",4992.22,{},136880,0,Europe +2023-06-24,74849,3131,"[""Wireless Mouse"", ""Monitor""]",1924.17,"{"""": ""9%""}",167435,1,South America +2023-10-04,74850,5887,"[""Headphones""]",1036.99,{},33544,0,Africa +2023-04-08,74851,5667,"[""Headphones"", ""Laptop""]",3108.84,"{""seasonal"": ""23%""}",267075,0,South America +2024-09-27,74852,6243,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",949.53,"{""seasonal"": ""12%""}",139688,1,South America +2023-03-08,74853,4937,"[""Charger"", ""Phone""]",1530.73,"{""seasonal"": ""28%""}",270205,0,North America +2024-10-09,74854,567,"[""Charger""]",3204.24,"{""seasonal"": ""21%""}",143732,1,Africa +2023-11-14,74855,260,"[""Headphones""]",1140.16,{},207024,1,Europe +2023-01-01,74856,8247,"[""Tablet"", ""Phone""]",1287.21,{},184927,0,Europe +2024-11-16,74857,1125,"[""Headphones"", ""Monitor""]",4126.72,{},194563,0,Europe +2024-10-03,74858,3153,"[""Phone""]",4429.3,"{""promo"": ""16%""}",186614,0,North America +2024-02-06,74859,5910,"[""Charger"", ""Keyboard""]",4876.52,"{""loyalty"": ""23%""}",132767,1,Europe +2024-10-30,74860,9223,"[""Headphones"", ""Monitor"", ""Laptop""]",4291.1,{},289612,1,Europe +2023-04-13,74861,3236,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2477.54,{},256042,1,North America +2023-02-11,74862,6649,"[""Keyboard"", ""Laptop""]",353.9,"{"""": ""21%""}",271581,0,North America +2023-02-25,74863,6413,"[""Monitor"", ""Tablet"", ""Phone""]",3185.38,{},28889,0,Europe +2023-02-19,74864,7655,"[""Laptop""]",2251.61,"{"""": ""17%""}",57520,1,North America +2024-07-31,74865,3412,"[""Wireless Mouse"", ""Tablet""]",4338.84,{},89381,0,Europe +2023-10-05,74866,2944,"[""Keyboard"", ""Charger""]",4583.55,{},198072,1,Europe +2023-08-13,74867,4238,"[""Charger"", ""Headphones""]",1066.16,{},108910,0,North America +2024-06-11,74868,4642,"[""Keyboard"", ""Charger""]",4166.0,{},164398,1,North America +2024-10-19,74869,7482,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2392.59,{},171119,1,Europe +2024-08-30,74870,7503,"[""Tablet"", ""Monitor""]",93.58,{},62702,1,Africa +2024-07-19,74871,3748,"[""Tablet""]",3378.17,"{"""": ""25%""}",98482,0,Asia +2024-06-19,74872,8783,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",730.5,"{"""": ""27%""}",94316,0,Asia +2023-11-28,74873,1695,"[""Monitor"", ""Laptop"", ""Tablet""]",2096.66,{},93385,0,Asia +2024-01-21,74874,7614,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1050.22,"{""seasonal"": ""6%""}",30204,0,North America +2024-02-05,74875,8373,"[""Phone"", ""Tablet""]",1338.91,"{""promo"": ""12%""}",60271,1,North America +2024-11-23,74876,5807,"[""Phone"", ""Monitor""]",1546.66,{},106709,0,North America +2023-08-05,74877,247,"[""Monitor"", ""Keyboard""]",2199.82,{},119373,0,Asia +2024-10-21,74878,8534,"[""Headphones"", ""Wireless Mouse""]",4866.3,{},32948,1,Africa +2024-12-09,74879,1572,"[""Charger"", ""Keyboard""]",3346.9,{},105575,1,Europe +2024-09-10,74880,6054,"[""Laptop""]",1641.0,"{""loyalty"": ""25%""}",277061,1,South America +2024-06-22,74881,5089,"[""Monitor""]",580.15,"{""loyalty"": ""28%""}",257323,1,Africa +2023-01-17,74882,8393,"[""Wireless Mouse"", ""Headphones""]",1493.62,"{"""": ""11%""}",86066,0,Europe +2024-10-04,74883,8640,"[""Tablet"", ""Laptop""]",150.39,"{"""": ""16%""}",65481,1,Asia +2024-04-17,74884,4747,"[""Laptop""]",4019.43,{},5131,1,South America +2023-10-18,74885,5448,"[""Monitor""]",1302.0,{},174619,0,Africa +2024-09-11,74886,4369,"[""Charger""]",520.56,{},191052,1,Europe +2023-07-05,74887,4206,"[""Charger""]",2824.64,"{"""": ""7%""}",246814,0,Europe +2024-11-18,74888,8439,"[""Keyboard""]",3125.6,{},27113,0,Europe +2023-05-22,74889,843,"[""Wireless Mouse"", ""Laptop""]",4927.54,"{""loyalty"": ""24%""}",145802,1,Asia +2023-01-18,74890,6368,"[""Charger""]",3204.42,"{""loyalty"": ""5%""}",262261,1,South America +2024-08-05,74891,8758,"[""Laptop"", ""Tablet"", ""Phone""]",518.8,{},126340,0,Asia +2024-03-11,74892,1839,"[""Headphones"", ""Monitor""]",4240.41,"{""promo"": ""24%""}",239782,0,North America +2023-02-04,74893,3201,"[""Headphones"", ""Tablet""]",564.04,"{"""": ""8%""}",50875,1,South America +2024-01-07,74894,4527,"[""Laptop"", ""Charger""]",614.82,{},20021,0,South America +2023-01-24,74895,7698,"[""Monitor""]",4637.07,{},12368,0,Europe +2023-01-13,74896,1336,"[""Monitor"", ""Headphones""]",613.87,"{""loyalty"": ""18%""}",253796,1,South America +2023-01-15,74897,3087,"[""Tablet""]",128.66,{},180641,0,North America +2023-07-08,74898,4968,"[""Tablet"", ""Wireless Mouse""]",1368.28,{},236928,1,North America +2024-08-15,74899,6177,"[""Wireless Mouse""]",4890.31,"{""promo"": ""27%""}",168932,1,Europe +2023-10-29,74900,930,"[""Phone"", ""Tablet"", ""Headphones""]",3679.94,"{""promo"": ""30%""}",166174,0,South America +2023-12-05,74901,221,"[""Charger""]",1441.17,"{""seasonal"": ""14%""}",65809,1,North America +2023-09-14,74902,9092,"[""Wireless Mouse""]",2721.48,"{""promo"": ""22%""}",42246,0,Africa +2024-05-28,74903,1698,"[""Phone""]",1197.55,"{"""": ""30%""}",148060,0,Europe +2023-03-05,74904,1854,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",278.99,"{""loyalty"": ""19%""}",82950,1,North America +2024-02-03,74905,5920,"[""Monitor""]",357.49,{},82275,0,Europe +2024-03-11,74906,8498,"[""Keyboard""]",3437.19,"{""promo"": ""27%""}",31379,1,Europe +2024-03-11,74907,7205,"[""Keyboard""]",3816.59,"{""loyalty"": ""18%""}",232110,0,Africa +2024-04-23,74908,2501,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1574.89,{},165626,1,South America +2024-04-15,74909,2043,"[""Wireless Mouse""]",2053.3,"{"""": ""28%""}",20884,0,Asia +2023-01-18,74910,9985,"[""Headphones"", ""Charger"", ""Monitor""]",930.68,"{"""": ""23%""}",268940,0,Africa +2023-11-04,74911,7062,"[""Tablet"", ""Wireless Mouse""]",4519.14,"{"""": ""15%""}",230009,1,Asia +2023-08-01,74912,310,"[""Charger""]",457.21,{},77624,0,Asia +2023-04-07,74913,6685,"[""Laptop""]",3913.29,{},288875,1,South America +2024-02-05,74914,5210,"[""Phone""]",4085.41,{},20584,0,Asia +2024-11-21,74915,1499,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1431.82,"{"""": ""25%""}",175170,0,North America +2023-10-29,74916,2218,"[""Headphones"", ""Keyboard""]",1104.27,"{"""": ""30%""}",72579,1,South America +2024-05-28,74917,8718,"[""Monitor"", ""Headphones"", ""Charger""]",1233.46,{},11775,0,North America +2024-08-25,74918,264,"[""Tablet"", ""Laptop"", ""Headphones""]",4505.7,{},206032,1,North America +2024-12-06,74919,2922,"[""Tablet"", ""Laptop""]",3724.17,"{"""": ""15%""}",117494,1,Africa +2023-03-14,74920,7091,"[""Keyboard"", ""Tablet""]",1565.24,{},96100,1,Asia +2024-04-20,74921,5783,"[""Headphones""]",3807.62,{},99572,0,Africa +2024-11-18,74922,2911,"[""Phone"", ""Wireless Mouse""]",4510.86,"{"""": ""29%""}",232376,0,Asia +2023-10-15,74923,1193,"[""Phone"", ""Keyboard"", ""Headphones""]",2503.24,{},231629,0,South America +2024-09-08,74924,3143,"[""Wireless Mouse"", ""Monitor""]",2940.69,"{""promo"": ""6%""}",56410,0,Asia +2024-09-20,74925,5476,"[""Wireless Mouse""]",4606.15,"{""seasonal"": ""21%""}",82206,1,North America +2024-11-17,74926,7904,"[""Phone""]",1501.51,"{"""": ""22%""}",194241,0,Europe +2023-10-28,74927,6465,"[""Laptop""]",4887.79,{},83024,0,South America +2023-08-12,74928,3546,"[""Tablet""]",2477.64,"{""seasonal"": ""24%""}",179934,0,Africa +2024-06-08,74929,3806,"[""Headphones""]",1508.74,"{""promo"": ""22%""}",11742,1,Africa +2023-05-11,74930,3627,"[""Laptop""]",3243.55,{},206744,1,Africa +2024-03-29,74931,5856,"[""Headphones"", ""Laptop""]",4545.47,{},168500,0,Asia +2024-02-01,74932,4989,"[""Keyboard"", ""Laptop"", ""Phone""]",2095.16,"{""promo"": ""9%""}",74671,1,Europe +2023-03-07,74933,7301,"[""Charger""]",4531.01,{},56624,0,Asia +2024-04-09,74934,3689,"[""Wireless Mouse"", ""Laptop""]",3613.01,{},24186,0,Asia +2024-02-10,74935,7368,"[""Monitor""]",573.53,"{""promo"": ""14%""}",10194,0,South America +2023-07-05,74936,7641,"[""Charger"", ""Laptop""]",3011.76,"{""promo"": ""6%""}",162064,1,South America +2023-04-12,74937,9140,"[""Headphones"", ""Charger"", ""Keyboard""]",3822.66,{},149462,1,Africa +2024-07-25,74938,8191,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1688.23,{},173663,0,Asia +2024-08-09,74939,9129,"[""Charger""]",1523.44,"{""promo"": ""21%""}",22057,1,Europe +2024-09-14,74940,5909,"[""Keyboard"", ""Tablet""]",4981.07,{},83494,0,Europe +2024-03-09,74941,695,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1880.72,{},230219,1,Europe +2023-05-27,74942,7366,"[""Charger"", ""Laptop"", ""Headphones""]",3169.14,{},3194,0,North America +2023-05-16,74943,2110,"[""Charger"", ""Wireless Mouse""]",538.97,"{"""": ""9%""}",49453,0,Asia +2024-10-30,74944,2831,"[""Tablet""]",4962.91,{},249813,0,Africa +2023-12-13,74945,9169,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2071.28,{},74219,0,Asia +2024-12-16,74946,6248,"[""Keyboard""]",2341.71,"{""seasonal"": ""9%""}",138512,0,Asia +2023-08-01,74947,1100,"[""Keyboard""]",4476.19,{},292941,1,South America +2024-09-20,74948,3186,"[""Headphones"", ""Charger""]",1028.57,{},280736,1,Africa +2024-05-19,74949,7387,"[""Tablet""]",2676.58,"{"""": ""29%""}",224588,1,Asia +2024-12-04,74950,7144,"[""Wireless Mouse""]",3187.75,{},10498,1,Europe +2024-03-31,74951,9641,"[""Phone""]",4990.82,{},216346,1,Europe +2024-04-13,74952,5311,"[""Wireless Mouse"", ""Phone""]",1386.81,{},68723,0,Europe +2024-06-16,74953,9420,"[""Phone"", ""Tablet""]",4718.52,"{""loyalty"": ""30%""}",144625,1,Africa +2024-04-15,74954,1309,"[""Tablet"", ""Charger""]",918.62,"{""seasonal"": ""16%""}",223452,1,North America +2024-06-30,74955,6797,"[""Monitor"", ""Phone"", ""Headphones""]",2917.61,{},277814,0,South America +2024-04-29,74956,3507,"[""Keyboard"", ""Tablet"", ""Charger""]",873.4,{},30994,1,Africa +2023-01-10,74957,981,"[""Charger"", ""Tablet""]",1246.49,{},10258,1,South America +2024-10-16,74958,7885,"[""Phone""]",1245.76,"{"""": ""20%""}",48716,1,Europe +2024-11-18,74959,7957,"[""Tablet"", ""Keyboard""]",2328.18,{},275271,1,North America +2023-03-21,74960,6670,"[""Phone""]",2087.82,{},292162,1,South America +2023-11-07,74961,7970,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4666.38,{},45188,0,Asia +2023-07-10,74962,7318,"[""Laptop""]",387.76,{},205683,0,Africa +2023-01-30,74963,9948,"[""Laptop""]",4493.46,{},115835,1,Africa +2023-09-28,74964,3085,"[""Phone"", ""Laptop"", ""Headphones""]",2056.27,"{""loyalty"": ""6%""}",8766,1,North America +2023-03-29,74965,9597,"[""Tablet"", ""Laptop"", ""Headphones""]",2532.2,{},109949,0,Africa +2023-10-31,74966,2158,"[""Tablet""]",3407.25,{},112351,0,Europe +2023-04-02,74967,503,"[""Laptop"", ""Tablet""]",2908.98,{},58965,0,South America +2023-01-17,74968,7780,"[""Headphones"", ""Tablet"", ""Phone""]",2205.1,{},122711,0,Asia +2024-03-13,74969,1541,"[""Monitor"", ""Laptop""]",2406.54,"{""loyalty"": ""7%""}",111633,1,Europe +2024-10-31,74970,1850,"[""Tablet"", ""Laptop""]",4578.73,{},218127,1,Africa +2023-07-06,74971,417,"[""Wireless Mouse"", ""Keyboard""]",498.86,{},178218,1,Africa +2023-04-13,74972,1169,"[""Charger""]",1399.05,{},126840,0,South America +2024-11-23,74973,1900,"[""Laptop"", ""Monitor""]",1799.35,{},29248,0,Asia +2023-05-09,74974,7914,"[""Keyboard""]",645.24,{},26083,1,Africa +2024-01-27,74975,750,"[""Charger"", ""Monitor""]",462.18,{},23958,0,South America +2024-07-12,74976,401,"[""Tablet""]",4244.77,"{"""": ""9%""}",26400,1,Africa +2024-12-26,74977,196,"[""Headphones"", ""Monitor""]",492.8,"{"""": ""18%""}",48372,1,North America +2023-04-18,74978,7203,"[""Keyboard""]",2206.35,{},225755,0,South America +2024-06-11,74979,5407,"[""Phone"", ""Keyboard"", ""Tablet""]",521.04,{},214227,0,South America +2024-01-06,74980,1671,"[""Keyboard"", ""Headphones""]",3466.55,"{""loyalty"": ""6%""}",26230,1,Africa +2023-11-14,74981,112,"[""Wireless Mouse"", ""Charger""]",2387.77,"{"""": ""21%""}",146260,1,Europe +2024-04-05,74982,6293,"[""Headphones""]",185.39,"{""loyalty"": ""29%""}",33888,0,Asia +2024-11-29,74983,438,"[""Laptop""]",1330.3,"{""seasonal"": ""29%""}",171654,0,North America +2024-08-23,74984,1627,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1316.61,"{""loyalty"": ""13%""}",210612,0,Africa +2024-07-03,74985,6228,"[""Monitor"", ""Laptop""]",4571.52,{},203995,0,North America +2024-11-21,74986,4371,"[""Phone"", ""Headphones""]",4702.57,{},134979,1,Asia +2023-02-03,74987,4413,"[""Monitor"", ""Headphones"", ""Phone""]",3822.28,"{""promo"": ""5%""}",82831,0,Asia +2024-07-19,74988,3720,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1976.11,"{"""": ""9%""}",70896,0,North America +2023-02-05,74989,4800,"[""Phone"", ""Laptop""]",3404.79,"{""loyalty"": ""17%""}",145673,1,North America +2024-02-17,74990,1223,"[""Keyboard""]",326.86,{},234028,0,South America +2023-03-13,74991,1630,"[""Charger"", ""Tablet""]",1808.76,{},181400,0,Europe +2024-03-27,74992,6713,"[""Laptop""]",2445.09,{},295623,1,Africa +2024-10-23,74993,1238,"[""Phone"", ""Keyboard""]",220.01,"{"""": ""24%""}",283387,1,Europe +2024-01-12,74994,2321,"[""Headphones"", ""Charger""]",3600.35,"{"""": ""11%""}",217299,0,North America +2024-02-13,74995,1929,"[""Keyboard""]",2721.97,"{""promo"": ""16%""}",232058,1,Asia +2023-07-14,74996,7176,"[""Monitor"", ""Keyboard""]",3875.4,{},272626,0,South America +2023-03-21,74997,4464,"[""Monitor"", ""Charger"", ""Headphones""]",2736.43,"{"""": ""26%""}",134912,0,Africa +2024-08-19,74998,3175,"[""Wireless Mouse""]",2343.23,"{""loyalty"": ""10%""}",196091,1,South America +2024-09-15,74999,771,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2289.17,"{"""": ""23%""}",169374,0,Europe +2023-10-28,75000,5770,"[""Wireless Mouse"", ""Laptop""]",3320.76,{},94841,1,North America +2023-10-01,75001,1667,"[""Charger"", ""Headphones"", ""Monitor""]",3257.91,{},59459,0,Asia +2024-12-15,75002,3268,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4209.1,"{""promo"": ""13%""}",82556,0,South America +2024-12-22,75003,8219,"[""Laptop"", ""Monitor"", ""Charger""]",769.93,{},184556,0,Asia +2024-12-04,75004,5786,"[""Charger""]",4057.31,"{"""": ""7%""}",122798,1,Asia +2023-01-23,75005,5770,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",367.49,"{"""": ""14%""}",25958,1,North America +2023-07-28,75006,8696,"[""Wireless Mouse"", ""Laptop""]",3203.1,"{"""": ""19%""}",184364,1,South America +2023-07-18,75007,6999,"[""Laptop""]",4723.16,{},55866,0,Africa +2024-10-28,75008,1657,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1836.5,"{""promo"": ""11%""}",201737,0,Asia +2024-07-10,75009,4660,"[""Headphones""]",2977.94,{},246131,1,North America +2024-07-10,75010,1702,"[""Keyboard""]",1290.45,"{""seasonal"": ""16%""}",108569,1,Europe +2024-09-19,75011,7931,"[""Tablet"", ""Phone""]",4889.87,{},224946,1,South America +2024-08-27,75012,1011,"[""Phone""]",427.4,"{""seasonal"": ""28%""}",38835,0,Africa +2023-05-10,75013,2223,"[""Tablet"", ""Monitor""]",1128.92,{},250539,1,Asia +2024-11-07,75014,8769,"[""Charger""]",2410.44,"{""promo"": ""29%""}",285965,0,North America +2023-01-20,75015,3909,"[""Phone"", ""Keyboard"", ""Charger""]",982.41,{},39509,1,North America +2023-05-14,75016,5935,"[""Wireless Mouse"", ""Monitor""]",3275.62,"{"""": ""8%""}",126152,1,Asia +2023-11-13,75017,8802,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",251.83,{},61600,1,North America +2024-08-14,75018,9341,"[""Phone"", ""Tablet"", ""Keyboard""]",1383.84,"{""promo"": ""19%""}",229065,0,Asia +2023-08-22,75019,8236,"[""Keyboard""]",3897.71,{},109551,1,South America +2024-10-17,75020,5471,"[""Keyboard"", ""Monitor""]",1544.46,{},34182,0,Africa +2024-01-04,75021,2956,"[""Wireless Mouse""]",3851.69,{},52210,0,North America +2024-03-08,75022,8251,"[""Charger""]",4828.3,{},148072,0,Asia +2024-04-27,75023,365,"[""Tablet"", ""Keyboard"", ""Headphones""]",4848.06,"{""promo"": ""10%""}",52914,1,North America +2024-07-26,75024,6613,"[""Phone"", ""Headphones""]",1890.28,"{""seasonal"": ""28%""}",118152,1,Europe +2023-06-26,75025,9364,"[""Monitor"", ""Tablet""]",4566.63,"{""seasonal"": ""11%""}",65361,0,North America +2024-08-31,75026,7767,"[""Headphones"", ""Laptop""]",2142.8,{},273281,0,Asia +2023-10-13,75027,3482,"[""Monitor""]",1514.54,{},181411,0,South America +2024-01-09,75028,9552,"[""Wireless Mouse""]",1330.23,"{""seasonal"": ""22%""}",177356,0,Asia +2024-04-24,75029,2515,"[""Tablet"", ""Laptop"", ""Keyboard""]",342.97,{},21356,0,North America +2024-03-24,75030,2520,"[""Charger"", ""Laptop""]",1355.37,{},106611,0,North America +2023-11-24,75031,1368,"[""Tablet"", ""Headphones"", ""Charger""]",2205.87,{},119827,1,North America +2023-12-25,75032,3349,"[""Monitor"", ""Charger"", ""Phone""]",4948.18,"{""seasonal"": ""21%""}",124015,1,Europe +2023-05-27,75033,9648,"[""Tablet"", ""Phone""]",2309.09,"{""promo"": ""26%""}",150533,0,Europe +2024-06-12,75034,5733,"[""Tablet"", ""Laptop"", ""Phone""]",3041.98,"{""loyalty"": ""18%""}",105529,1,South America +2023-01-01,75035,8150,"[""Monitor"", ""Charger"", ""Phone""]",1801.77,"{""seasonal"": ""13%""}",35873,0,Asia +2024-12-11,75036,6351,"[""Wireless Mouse""]",1243.67,{},104752,0,Asia +2024-03-14,75037,436,"[""Headphones"", ""Keyboard""]",2177.6,"{""seasonal"": ""17%""}",291096,1,North America +2024-10-11,75038,6675,"[""Tablet""]",4963.95,"{""promo"": ""9%""}",200623,0,North America +2024-04-05,75039,7892,"[""Monitor""]",680.54,"{""loyalty"": ""16%""}",20161,1,South America +2024-06-21,75040,1902,"[""Charger""]",4050.19,"{""seasonal"": ""12%""}",156021,0,Africa +2023-12-18,75041,439,"[""Monitor""]",2744.13,{},159966,0,South America +2024-07-27,75042,5538,"[""Laptop"", ""Phone""]",739.02,{},47773,0,Africa +2024-11-01,75043,9181,"[""Keyboard""]",210.22,{},57240,1,South America +2024-04-27,75044,553,"[""Phone""]",1089.27,{},157911,1,Asia +2024-11-15,75045,1526,"[""Monitor"", ""Headphones""]",110.39,{},6891,0,Africa +2023-03-29,75046,3195,"[""Monitor"", ""Laptop"", ""Headphones""]",1695.7,"{""loyalty"": ""30%""}",299035,0,South America +2024-03-06,75047,4130,"[""Wireless Mouse""]",3057.83,"{"""": ""20%""}",18813,0,Africa +2023-08-14,75048,501,"[""Monitor""]",1239.38,"{""promo"": ""25%""}",196520,1,Europe +2024-12-01,75049,8561,"[""Laptop""]",383.44,"{""seasonal"": ""18%""}",36134,0,North America +2024-04-21,75050,2056,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4389.81,{},261731,0,North America +2024-11-30,75051,479,"[""Monitor""]",442.53,{},10279,0,South America +2024-12-27,75052,2812,"[""Phone"", ""Charger"", ""Headphones""]",2330.25,"{""promo"": ""23%""}",245309,1,South America +2023-01-09,75053,3019,"[""Charger"", ""Monitor""]",2493.48,"{"""": ""13%""}",237214,0,South America +2024-06-09,75054,5669,"[""Phone"", ""Monitor""]",2879.08,"{""seasonal"": ""27%""}",17675,0,North America +2023-06-03,75055,2031,"[""Headphones"", ""Wireless Mouse""]",765.83,"{""promo"": ""21%""}",243302,0,Asia +2023-07-14,75056,5047,"[""Monitor"", ""Headphones""]",2054.92,{},218450,0,Europe +2023-06-24,75057,520,"[""Keyboard"", ""Phone"", ""Charger""]",2752.43,{},206773,1,Asia +2024-06-25,75058,6691,"[""Tablet""]",1352.95,{},266808,1,South America +2023-11-08,75059,5547,"[""Laptop"", ""Keyboard""]",1716.09,"{""seasonal"": ""12%""}",204276,0,North America +2023-09-24,75060,6974,"[""Keyboard"", ""Charger"", ""Laptop""]",2349.54,{},68850,0,Europe +2023-12-23,75061,824,"[""Headphones""]",2130.94,{},90295,1,Africa +2024-11-08,75062,2065,"[""Charger"", ""Tablet"", ""Keyboard""]",190.05,"{""seasonal"": ""30%""}",231446,0,North America +2024-08-08,75063,3752,"[""Laptop""]",4904.06,{},3384,0,Europe +2023-09-20,75064,6759,"[""Headphones"", ""Laptop""]",2068.42,"{""seasonal"": ""5%""}",150868,1,North America +2024-03-30,75065,608,"[""Monitor"", ""Wireless Mouse""]",525.4,{},145190,0,Europe +2024-12-08,75066,435,"[""Charger""]",85.52,"{""seasonal"": ""14%""}",283705,0,Asia +2023-11-23,75067,4801,"[""Keyboard"", ""Monitor""]",4375.68,{},70778,1,South America +2023-09-19,75068,3313,"[""Charger""]",4034.06,"{"""": ""14%""}",288350,1,South America +2024-02-18,75069,3102,"[""Phone"", ""Laptop""]",1284.47,{},134341,0,Asia +2023-09-06,75070,9891,"[""Laptop"", ""Keyboard"", ""Charger""]",471.88,"{"""": ""9%""}",96382,1,South America +2024-01-27,75071,8712,"[""Charger"", ""Wireless Mouse""]",1152.4,"{""seasonal"": ""17%""}",78279,0,Africa +2023-09-15,75072,6388,"[""Headphones"", ""Keyboard"", ""Monitor""]",3471.64,"{""promo"": ""8%""}",146304,1,Europe +2023-12-26,75073,9387,"[""Wireless Mouse""]",482.89,"{""seasonal"": ""30%""}",199403,1,Europe +2023-06-25,75074,3732,"[""Tablet"", ""Wireless Mouse""]",3741.74,"{""promo"": ""5%""}",25268,0,Europe +2024-03-11,75075,1344,"[""Laptop"", ""Headphones""]",2304.63,{},4837,0,Africa +2024-11-11,75076,1565,"[""Laptop"", ""Charger""]",3231.95,"{""seasonal"": ""11%""}",194124,0,Europe +2023-03-04,75077,7294,"[""Tablet""]",260.85,{},35443,1,North America +2023-10-18,75078,4633,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1504.79,"{""loyalty"": ""19%""}",49722,1,South America +2023-06-02,75079,3014,"[""Phone""]",1201.69,"{""seasonal"": ""30%""}",268789,1,North America +2024-12-26,75080,9443,"[""Laptop"", ""Phone""]",3767.72,"{""loyalty"": ""17%""}",9342,1,North America +2024-12-14,75081,1340,"[""Wireless Mouse""]",716.43,"{""seasonal"": ""6%""}",227738,1,Africa +2024-02-11,75082,9366,"[""Tablet"", ""Laptop"", ""Phone""]",1645.85,{},152328,0,Asia +2024-12-10,75083,6958,"[""Laptop"", ""Keyboard""]",2367.45,{},53480,1,North America +2024-09-27,75084,8455,"[""Laptop""]",4136.7,{},195820,0,Africa +2024-01-31,75085,8393,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",561.66,"{""loyalty"": ""17%""}",71825,1,Europe +2024-11-14,75086,156,"[""Tablet""]",2075.25,{},142102,1,South America +2023-02-02,75087,7852,"[""Phone"", ""Keyboard""]",2546.65,{},188156,1,Africa +2023-09-28,75088,9590,"[""Tablet""]",405.97,"{""promo"": ""28%""}",179310,1,Africa +2023-03-17,75089,5977,"[""Charger""]",3629.23,{},167359,0,Europe +2023-12-26,75090,6983,"[""Tablet"", ""Headphones"", ""Charger""]",3412.1,{},159564,1,Africa +2024-02-07,75091,5433,"[""Laptop""]",2741.6,"{""loyalty"": ""9%""}",78611,0,South America +2023-11-10,75092,2233,"[""Wireless Mouse"", ""Monitor""]",4985.87,{},225741,1,Africa +2024-04-01,75093,1139,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",491.18,{},84685,0,North America +2023-04-07,75094,3558,"[""Phone"", ""Laptop"", ""Headphones""]",1621.23,{},277687,1,North America +2023-07-15,75095,7262,"[""Laptop"", ""Headphones""]",625.99,{},149773,1,Africa +2024-08-09,75096,4471,"[""Tablet"", ""Headphones""]",1580.5,{},134241,0,Asia +2023-03-13,75097,7486,"[""Tablet""]",4636.91,{},271295,1,Africa +2024-08-04,75098,1886,"[""Phone""]",2964.13,"{""promo"": ""18%""}",243393,0,South America +2023-12-17,75099,3716,"[""Keyboard""]",2563.22,"{""loyalty"": ""18%""}",176878,1,Asia +2024-07-11,75100,5054,"[""Keyboard""]",4812.81,{},41624,0,North America +2024-05-03,75101,3627,"[""Headphones"", ""Phone"", ""Charger""]",2268.56,{},234208,1,North America +2024-03-08,75102,1629,"[""Keyboard""]",3305.18,"{""loyalty"": ""19%""}",245575,1,South America +2024-09-28,75103,7150,"[""Tablet"", ""Phone""]",4259.64,"{""seasonal"": ""7%""}",111728,1,South America +2023-03-23,75104,7578,"[""Monitor""]",4666.21,"{""promo"": ""25%""}",279119,0,North America +2023-12-20,75105,1973,"[""Headphones""]",4138.02,{},165594,0,North America +2023-05-13,75106,6674,"[""Monitor"", ""Wireless Mouse""]",4571.3,{},279820,1,South America +2023-09-03,75107,5831,"[""Wireless Mouse""]",2694.59,"{""promo"": ""12%""}",140813,1,Africa +2023-11-13,75108,3873,"[""Laptop"", ""Charger""]",3826.44,"{""seasonal"": ""21%""}",35533,1,South America +2024-09-02,75109,7885,"[""Tablet"", ""Keyboard""]",1601.12,"{""promo"": ""25%""}",174466,1,Europe +2023-09-02,75110,8809,"[""Wireless Mouse""]",2363.42,{},124991,1,Africa +2023-07-29,75111,5836,"[""Laptop"", ""Keyboard""]",3832.72,{},37998,0,North America +2024-02-17,75112,5553,"[""Tablet"", ""Phone"", ""Keyboard""]",3779.72,{},85847,1,Europe +2023-12-06,75113,626,"[""Headphones"", ""Keyboard"", ""Tablet""]",3583.46,{},92242,0,North America +2023-11-28,75114,3680,"[""Monitor""]",2615.99,"{""seasonal"": ""11%""}",11000,0,Asia +2023-05-28,75115,5834,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4174.3,"{""loyalty"": ""9%""}",7883,0,North America +2024-09-04,75116,742,"[""Keyboard""]",3128.4,"{"""": ""8%""}",183704,1,North America +2023-03-22,75117,8408,"[""Laptop"", ""Charger""]",1110.66,{},40515,1,Asia +2024-10-04,75118,3530,"[""Monitor"", ""Laptop""]",4139.38,"{""promo"": ""19%""}",69746,0,North America +2024-09-12,75119,4312,"[""Phone"", ""Keyboard"", ""Charger""]",3012.08,{},63679,1,Europe +2024-06-12,75120,2630,"[""Tablet"", ""Charger"", ""Keyboard""]",2609.03,{},59582,1,South America +2024-11-09,75121,1706,"[""Laptop""]",1328.9,"{""loyalty"": ""8%""}",69610,1,Africa +2024-01-31,75122,8,"[""Laptop""]",3336.51,{},222577,1,Asia +2024-11-28,75123,5563,"[""Keyboard"", ""Phone"", ""Laptop""]",3447.22,"{"""": ""10%""}",232404,0,Europe +2023-11-07,75124,2457,"[""Wireless Mouse""]",4229.63,{},153992,0,Africa +2024-03-14,75125,8875,"[""Phone"", ""Keyboard""]",3486.02,{},92625,0,Africa +2024-04-07,75126,5583,"[""Tablet"", ""Laptop""]",3854.83,"{""promo"": ""14%""}",268802,0,South America +2023-08-24,75127,5538,"[""Wireless Mouse""]",3932.95,{},229578,1,North America +2024-01-06,75128,5893,"[""Wireless Mouse"", ""Tablet""]",3654.98,"{""loyalty"": ""5%""}",177137,1,Europe +2023-04-09,75129,9117,"[""Phone""]",2055.84,{},11169,0,North America +2024-12-13,75130,3685,"[""Monitor""]",940.57,{},278566,0,Europe +2023-04-01,75131,3668,"[""Tablet"", ""Phone""]",3025.94,{},5361,1,South America +2024-04-23,75132,2055,"[""Monitor"", ""Laptop""]",3179.19,{},34278,1,North America +2023-09-28,75133,4386,"[""Headphones"", ""Monitor"", ""Keyboard""]",317.08,"{""promo"": ""23%""}",67316,1,Europe +2024-10-12,75134,819,"[""Tablet"", ""Laptop""]",1521.96,{},206679,0,South America +2023-11-22,75135,2430,"[""Wireless Mouse"", ""Charger""]",1720.23,"{"""": ""23%""}",208535,0,Asia +2024-08-08,75136,1526,"[""Phone""]",3577.02,{},291277,0,North America +2024-09-06,75137,2369,"[""Laptop"", ""Monitor"", ""Charger""]",2262.34,"{"""": ""18%""}",245695,0,Asia +2024-07-01,75138,9530,"[""Charger"", ""Keyboard"", ""Phone""]",3378.31,{},164659,0,North America +2024-01-31,75139,5514,"[""Headphones""]",207.63,"{"""": ""20%""}",14991,1,Asia +2023-11-23,75140,221,"[""Wireless Mouse"", ""Tablet""]",4277.11,"{""seasonal"": ""7%""}",208771,0,Africa +2023-09-12,75141,3861,"[""Phone""]",3387.34,"{""promo"": ""28%""}",112502,1,Europe +2024-07-13,75142,6579,"[""Charger"", ""Monitor"", ""Phone""]",3916.13,{},70954,0,North America +2024-08-24,75143,2370,"[""Headphones""]",3515.07,{},68870,0,Africa +2023-12-20,75144,6649,"[""Keyboard"", ""Charger"", ""Tablet""]",2830.4,"{""seasonal"": ""20%""}",293403,1,Asia +2023-02-13,75145,3611,"[""Phone"", ""Keyboard"", ""Charger""]",1216.15,"{""promo"": ""9%""}",185313,1,Africa +2024-02-28,75146,1054,"[""Tablet""]",1405.08,"{""promo"": ""27%""}",149476,1,Asia +2024-01-24,75147,3601,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",60.6,"{""seasonal"": ""26%""}",11297,0,Africa +2023-04-06,75148,1464,"[""Keyboard""]",538.88,{},94187,1,Europe +2023-09-03,75149,3487,"[""Monitor"", ""Keyboard"", ""Laptop""]",902.32,{},138418,1,Europe +2023-06-08,75150,933,"[""Keyboard"", ""Monitor"", ""Headphones""]",2465.63,{},54166,0,Asia +2024-02-09,75151,4485,"[""Charger"", ""Wireless Mouse""]",2838.57,"{""seasonal"": ""12%""}",14689,0,Europe +2023-09-06,75152,4803,"[""Laptop"", ""Monitor""]",1991.84,{},3000,1,Europe +2023-03-14,75153,3054,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4883.18,{},242489,1,Africa +2023-10-09,75154,868,"[""Laptop"", ""Tablet"", ""Phone""]",4950.22,"{""seasonal"": ""20%""}",165599,0,Africa +2023-05-17,75155,826,"[""Keyboard"", ""Phone"", ""Tablet""]",465.19,{},18013,0,North America +2023-11-29,75156,676,"[""Keyboard"", ""Laptop""]",1211.07,{},229989,1,South America +2024-10-27,75157,9851,"[""Laptop""]",2052.01,"{""seasonal"": ""28%""}",251136,0,North America +2023-10-21,75158,5635,"[""Headphones"", ""Monitor"", ""Tablet""]",3904.79,"{"""": ""25%""}",247879,1,South America +2024-06-08,75159,8431,"[""Laptop""]",2430.84,{},172010,0,South America +2024-03-08,75160,2025,"[""Wireless Mouse"", ""Phone""]",3389.36,{},84987,0,Europe +2023-07-26,75161,4120,"[""Charger""]",3257.07,"{""seasonal"": ""19%""}",117918,1,Asia +2023-09-08,75162,6193,"[""Headphones"", ""Monitor"", ""Tablet""]",839.69,{},183565,1,North America +2023-01-22,75163,4773,"[""Keyboard"", ""Phone""]",3868.97,"{"""": ""11%""}",76339,1,Asia +2023-07-23,75164,4285,"[""Phone""]",1154.77,"{""promo"": ""25%""}",166680,1,South America +2023-04-25,75165,2902,"[""Charger""]",4682.68,"{""seasonal"": ""12%""}",165384,1,Asia +2024-06-29,75166,4919,"[""Charger""]",2508.48,{},59799,0,Africa +2024-09-07,75167,3412,"[""Keyboard"", ""Tablet""]",2000.34,{},84018,0,North America +2024-11-04,75168,7045,"[""Keyboard""]",2001.21,"{""seasonal"": ""20%""}",272121,0,Europe +2023-10-29,75169,4022,"[""Headphones"", ""Phone"", ""Monitor""]",1602.72,"{""promo"": ""12%""}",61192,1,Asia +2023-06-30,75170,846,"[""Phone"", ""Wireless Mouse""]",2652.44,{},259636,0,North America +2023-02-19,75171,2769,"[""Tablet"", ""Headphones""]",980.49,"{"""": ""8%""}",107064,1,South America +2024-03-29,75172,385,"[""Phone""]",1448.42,"{"""": ""20%""}",110430,1,Europe +2023-12-11,75173,2537,"[""Wireless Mouse""]",4528.01,{},258048,1,Europe +2023-05-27,75174,2778,"[""Monitor"", ""Tablet""]",3681.82,{},262249,1,Asia +2024-03-25,75175,191,"[""Headphones""]",2151.92,"{"""": ""30%""}",14985,1,North America +2023-04-28,75176,2683,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1283.58,"{"""": ""20%""}",9474,0,Asia +2023-04-12,75177,3711,"[""Phone"", ""Monitor"", ""Tablet""]",3437.92,{},87969,0,North America +2024-01-29,75178,2891,"[""Headphones"", ""Tablet""]",4092.64,"{""promo"": ""16%""}",158326,0,Asia +2023-07-25,75179,6916,"[""Laptop"", ""Monitor"", ""Phone""]",4672.08,{},236552,0,Africa +2023-09-27,75180,8644,"[""Keyboard"", ""Charger""]",179.88,{},32240,0,Africa +2023-03-20,75181,7374,"[""Monitor"", ""Tablet""]",301.13,{},141298,0,North America +2023-07-30,75182,2964,"[""Wireless Mouse""]",862.78,"{""seasonal"": ""27%""}",128284,0,North America +2023-11-08,75183,1970,"[""Laptop""]",2073.56,"{"""": ""8%""}",86687,1,South America +2024-04-25,75184,4614,"[""Laptop"", ""Charger"", ""Tablet""]",4654.05,{},223245,0,South America +2024-11-04,75185,3812,"[""Phone"", ""Keyboard""]",1147.6,"{""loyalty"": ""23%""}",153773,0,Africa +2024-09-12,75186,3256,"[""Phone"", ""Charger""]",4875.28,{},226241,0,South America +2023-09-22,75187,1873,"[""Phone"", ""Wireless Mouse""]",4823.0,{},160967,1,South America +2024-12-05,75188,1913,"[""Phone"", ""Laptop""]",3611.88,"{""promo"": ""14%""}",262299,1,South America +2023-06-28,75189,147,"[""Wireless Mouse"", ""Laptop""]",464.8,"{""seasonal"": ""15%""}",28645,0,South America +2024-05-08,75190,2221,"[""Keyboard""]",123.17,"{""loyalty"": ""13%""}",8341,1,Africa +2024-10-21,75191,4696,"[""Charger"", ""Laptop""]",3926.22,{},109255,0,North America +2024-10-24,75192,4877,"[""Wireless Mouse""]",3579.1,{},127054,0,South America +2024-10-25,75193,969,"[""Headphones"", ""Charger""]",3287.82,"{""promo"": ""19%""}",171626,0,Asia +2024-08-01,75194,1822,"[""Wireless Mouse""]",2202.35,{},53708,1,Africa +2024-12-24,75195,7275,"[""Headphones"", ""Laptop""]",4196.96,{},260013,0,Europe +2024-06-10,75196,3190,"[""Phone"", ""Monitor""]",2352.8,"{"""": ""21%""}",127289,1,Europe +2024-08-30,75197,9751,"[""Headphones"", ""Wireless Mouse""]",2778.61,"{""seasonal"": ""12%""}",2153,0,North America +2024-07-22,75198,507,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2751.12,{},178355,1,Asia +2023-09-17,75199,3020,"[""Phone"", ""Charger"", ""Laptop""]",2104.82,"{""promo"": ""11%""}",94043,0,North America +2023-10-23,75200,7676,"[""Charger"", ""Phone""]",2417.24,{},15257,0,Europe +2023-02-06,75201,355,"[""Wireless Mouse"", ""Monitor""]",3181.28,"{""seasonal"": ""22%""}",59422,0,Asia +2023-11-01,75202,2881,"[""Monitor""]",4471.03,"{""loyalty"": ""28%""}",121501,1,Africa +2023-01-01,75203,2194,"[""Monitor"", ""Laptop""]",4819.63,"{""loyalty"": ""24%""}",203197,0,Europe +2024-10-29,75204,5758,"[""Laptop"", ""Tablet"", ""Keyboard""]",2207.82,{},46932,0,South America +2024-12-13,75205,4558,"[""Phone"", ""Headphones"", ""Monitor""]",2756.12,{},26923,1,Europe +2024-11-07,75206,3642,"[""Headphones""]",2470.69,{},15473,0,South America +2024-05-09,75207,8938,"[""Keyboard"", ""Phone"", ""Charger""]",2078.66,"{""seasonal"": ""18%""}",112081,1,South America +2023-06-22,75208,3383,"[""Laptop"", ""Keyboard""]",4642.88,{},181758,0,Africa +2023-12-21,75209,1765,"[""Laptop"", ""Monitor"", ""Phone""]",2329.45,"{""seasonal"": ""10%""}",31710,0,Africa +2024-09-13,75210,8833,"[""Wireless Mouse""]",2855.05,"{"""": ""10%""}",55616,1,North America +2023-05-15,75211,4426,"[""Keyboard""]",2894.61,"{""loyalty"": ""20%""}",286115,1,Europe +2023-11-07,75212,4372,"[""Tablet""]",1402.58,{},192496,1,Africa +2024-05-28,75213,7932,"[""Monitor""]",505.9,{},66898,1,Europe +2024-12-27,75214,8977,"[""Keyboard"", ""Monitor""]",2557.46,"{""promo"": ""20%""}",229494,0,Europe +2023-08-18,75215,3608,"[""Monitor"", ""Tablet"", ""Keyboard""]",1989.66,{},125785,1,Asia +2023-01-04,75216,2568,"[""Keyboard""]",2288.33,{},137119,1,Europe +2024-04-27,75217,1007,"[""Charger"", ""Phone""]",726.82,{},28267,1,South America +2024-03-26,75218,3964,"[""Headphones"", ""Charger""]",2221.61,"{""promo"": ""6%""}",90062,0,Africa +2024-01-12,75219,853,"[""Tablet"", ""Monitor"", ""Headphones""]",4602.79,{},50582,1,Asia +2024-12-27,75220,7423,"[""Phone"", ""Monitor""]",2762.56,"{"""": ""7%""}",265012,0,Asia +2023-01-28,75221,1452,"[""Laptop"", ""Monitor""]",241.92,"{""loyalty"": ""13%""}",212175,0,Africa +2024-11-24,75222,7064,"[""Charger""]",3885.35,"{""seasonal"": ""13%""}",122175,0,Africa +2023-10-21,75223,4387,"[""Keyboard"", ""Wireless Mouse""]",680.87,{},129577,1,Asia +2024-05-24,75224,3617,"[""Keyboard"", ""Headphones""]",224.44,{},229295,0,South America +2023-04-15,75225,8514,"[""Headphones"", ""Tablet"", ""Laptop""]",1294.96,"{"""": ""23%""}",74301,0,North America +2024-08-28,75226,7939,"[""Charger"", ""Phone""]",3142.62,"{""promo"": ""12%""}",210921,1,North America +2023-07-02,75227,3475,"[""Laptop""]",4685.72,{},298991,1,North America +2023-09-27,75228,7645,"[""Keyboard""]",2478.62,{},208020,0,South America +2024-12-14,75229,7911,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3875.91,{},218757,0,South America +2023-03-12,75230,4413,"[""Monitor""]",2509.48,{},106000,0,South America +2023-03-20,75231,6440,"[""Headphones"", ""Keyboard"", ""Charger""]",4789.21,"{"""": ""25%""}",103897,1,Africa +2023-01-04,75232,5254,"[""Laptop"", ""Headphones"", ""Keyboard""]",4592.62,{},143322,0,South America +2024-12-28,75233,3533,"[""Tablet"", ""Keyboard""]",2556.96,"{""promo"": ""5%""}",224989,0,South America +2024-05-04,75234,2477,"[""Laptop""]",513.76,"{""promo"": ""7%""}",89193,0,Europe +2024-07-02,75235,8853,"[""Charger""]",4847.11,{},155179,0,North America +2023-01-17,75236,3061,"[""Laptop""]",3602.8,{},186815,1,Asia +2024-08-08,75237,8618,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4398.22,"{""promo"": ""13%""}",47821,0,Africa +2023-03-29,75238,225,"[""Headphones"", ""Keyboard"", ""Tablet""]",4806.39,"{""loyalty"": ""24%""}",124551,0,Europe +2024-01-19,75239,4166,"[""Charger"", ""Laptop""]",3988.68,"{""promo"": ""5%""}",177751,1,Asia +2024-08-26,75240,7454,"[""Phone"", ""Keyboard"", ""Laptop""]",2125.89,"{"""": ""30%""}",107750,0,Asia +2024-02-06,75241,7273,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",343.59,{},15031,0,Europe +2024-10-01,75242,1960,"[""Charger""]",100.15,{},76835,0,North America +2024-06-04,75243,7430,"[""Monitor""]",2579.99,"{"""": ""6%""}",122764,1,Africa +2023-03-01,75244,4510,"[""Charger""]",2518.5,"{"""": ""9%""}",287703,0,Europe +2024-04-05,75245,7603,"[""Tablet""]",3305.76,"{""loyalty"": ""13%""}",259738,0,Africa +2023-11-29,75246,1471,"[""Monitor"", ""Keyboard"", ""Phone""]",3610.51,"{""promo"": ""17%""}",197128,0,Asia +2024-10-24,75247,4919,"[""Wireless Mouse"", ""Laptop""]",474.1,"{""loyalty"": ""13%""}",157672,1,South America +2023-09-12,75248,5871,"[""Headphones"", ""Laptop"", ""Phone""]",4824.58,"{""loyalty"": ""16%""}",92971,0,North America +2024-12-12,75249,2925,"[""Keyboard""]",2995.13,{},19915,0,North America +2023-08-07,75250,3539,"[""Laptop""]",3469.67,"{"""": ""26%""}",177896,0,Asia +2023-07-11,75251,8468,"[""Phone""]",4255.52,"{""loyalty"": ""28%""}",43039,1,Africa +2024-11-22,75252,9277,"[""Tablet""]",4022.49,"{"""": ""11%""}",98786,1,North America +2024-04-12,75253,4846,"[""Wireless Mouse""]",3266.06,{},272191,1,Asia +2023-03-06,75254,9059,"[""Monitor"", ""Charger""]",953.76,{},248292,0,South America +2024-11-15,75255,1618,"[""Keyboard"", ""Phone"", ""Tablet""]",1592.8,{},117585,0,South America +2023-10-15,75256,1170,"[""Phone""]",1028.33,"{"""": ""25%""}",60178,1,Asia +2023-11-16,75257,1795,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4444.59,"{""loyalty"": ""20%""}",129451,1,Europe +2024-06-22,75258,5549,"[""Charger""]",2927.94,"{"""": ""25%""}",96733,0,Asia +2023-09-30,75259,3718,"[""Tablet""]",1526.43,{},34790,0,Asia +2024-08-20,75260,8052,"[""Keyboard""]",956.5,{},69479,0,Europe +2023-04-02,75261,6197,"[""Laptop"", ""Phone""]",2387.14,"{""seasonal"": ""20%""}",17751,0,South America +2024-06-27,75262,7474,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1437.62,{},23955,1,Asia +2023-12-06,75263,4739,"[""Tablet"", ""Monitor"", ""Laptop""]",1519.2,"{""seasonal"": ""18%""}",298588,0,Asia +2024-06-10,75264,8470,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3236.01,"{""loyalty"": ""8%""}",218449,0,North America +2024-06-22,75265,8430,"[""Charger"", ""Phone"", ""Keyboard""]",3113.97,"{""loyalty"": ""19%""}",256679,1,Asia +2023-06-13,75266,1571,"[""Charger"", ""Tablet""]",1891.0,{},74699,1,South America +2023-02-21,75267,4233,"[""Monitor"", ""Tablet""]",4384.49,"{""seasonal"": ""23%""}",208151,0,Asia +2024-12-01,75268,5113,"[""Laptop"", ""Phone""]",3809.46,"{"""": ""19%""}",250536,0,South America +2023-08-12,75269,7862,"[""Monitor""]",1091.43,{},62204,1,Asia +2023-05-16,75270,6341,"[""Headphones"", ""Tablet""]",887.72,"{""promo"": ""23%""}",188254,0,Europe +2023-04-25,75271,3646,"[""Laptop""]",2511.41,"{""seasonal"": ""30%""}",182013,0,North America +2024-09-19,75272,9798,"[""Phone"", ""Tablet""]",4560.52,"{""loyalty"": ""9%""}",268923,1,Asia +2023-09-24,75273,920,"[""Headphones"", ""Keyboard""]",960.23,{},286033,1,Asia +2024-11-02,75274,8685,"[""Phone""]",1476.23,"{""seasonal"": ""28%""}",97792,0,Asia +2024-04-18,75275,6554,"[""Headphones"", ""Laptop""]",1555.86,{},189780,1,South America +2023-03-17,75276,3191,"[""Charger""]",960.43,{},8041,1,Europe +2024-03-10,75277,3703,"[""Phone"", ""Headphones"", ""Charger""]",1689.66,"{""promo"": ""8%""}",94828,0,South America +2024-08-23,75278,8615,"[""Wireless Mouse"", ""Tablet""]",1522.66,"{""loyalty"": ""16%""}",27948,1,Asia +2023-12-07,75279,6048,"[""Tablet"", ""Monitor""]",3474.7,{},187672,0,Africa +2024-11-25,75280,7988,"[""Phone"", ""Headphones"", ""Monitor""]",566.9,"{""promo"": ""16%""}",228074,1,Africa +2024-06-27,75281,4430,"[""Headphones""]",4106.35,{},278460,1,South America +2023-06-10,75282,6493,"[""Phone"", ""Headphones"", ""Tablet""]",2916.44,"{""seasonal"": ""21%""}",155864,1,Africa +2024-05-17,75283,3387,"[""Laptop""]",3716.81,{},213270,1,Africa +2023-03-09,75284,2628,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2783.06,"{"""": ""16%""}",234440,1,North America +2023-08-14,75285,3577,"[""Phone""]",361.76,{},36477,0,North America +2023-01-23,75286,3852,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",559.17,{},185909,0,Africa +2023-11-11,75287,3590,"[""Monitor"", ""Wireless Mouse""]",1123.39,"{""seasonal"": ""15%""}",50917,0,Europe +2023-03-21,75288,6882,"[""Wireless Mouse""]",863.9,{},211571,1,Europe +2023-10-23,75289,4860,"[""Tablet"", ""Laptop""]",2982.17,"{""promo"": ""26%""}",154120,1,Europe +2024-11-15,75290,9943,"[""Charger"", ""Laptop""]",1902.1,"{"""": ""30%""}",214772,1,Europe +2023-11-10,75291,5256,"[""Phone""]",2424.73,"{""seasonal"": ""25%""}",265731,0,South America +2023-03-08,75292,8560,"[""Headphones""]",3346.16,"{""seasonal"": ""17%""}",171072,1,Europe +2023-04-18,75293,3604,"[""Charger"", ""Laptop""]",2518.2,{},183420,0,Asia +2023-02-22,75294,5524,"[""Keyboard""]",3246.29,"{"""": ""27%""}",154001,1,Africa +2023-01-05,75295,9279,"[""Laptop"", ""Charger"", ""Phone""]",2155.93,{},146421,1,North America +2024-04-01,75296,3377,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4590.58,"{"""": ""29%""}",222949,1,North America +2024-07-10,75297,1323,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2545.37,"{""seasonal"": ""24%""}",158865,0,Europe +2023-12-10,75298,6639,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2048.11,{},151804,1,South America +2024-09-26,75299,6636,"[""Monitor"", ""Charger"", ""Laptop""]",4568.63,{},73691,1,Europe +2023-08-26,75300,7697,"[""Keyboard"", ""Monitor""]",4238.2,"{""promo"": ""7%""}",74646,1,Africa +2024-03-20,75301,1728,"[""Tablet""]",756.76,"{""seasonal"": ""27%""}",70102,1,Asia +2024-02-20,75302,1928,"[""Wireless Mouse""]",4097.12,{},107618,0,North America +2023-02-24,75303,7447,"[""Tablet"", ""Headphones""]",3324.64,"{"""": ""27%""}",93095,1,South America +2024-03-04,75304,594,"[""Phone""]",1156.51,{},162010,0,North America +2024-12-21,75305,386,"[""Charger"", ""Headphones""]",527.4,"{""promo"": ""22%""}",178575,0,Europe +2023-07-19,75306,2829,"[""Charger"", ""Tablet"", ""Laptop""]",628.89,{},91786,1,Africa +2024-05-07,75307,8575,"[""Monitor""]",1337.68,"{""promo"": ""21%""}",18025,1,North America +2024-03-15,75308,6059,"[""Charger"", ""Tablet""]",4923.8,{},11741,0,South America +2024-11-18,75309,5022,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4612.63,{},210833,1,South America +2023-09-25,75310,5805,"[""Tablet"", ""Laptop""]",1462.89,"{""loyalty"": ""17%""}",159062,0,Asia +2024-09-05,75311,1778,"[""Keyboard"", ""Phone""]",1431.63,"{""seasonal"": ""26%""}",1211,1,South America +2024-10-29,75312,586,"[""Phone""]",4535.12,"{""seasonal"": ""11%""}",163349,0,South America +2024-05-28,75313,3759,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4127.81,{},243989,1,Asia +2023-09-05,75314,5042,"[""Laptop""]",841.5,"{""seasonal"": ""16%""}",189248,0,South America +2024-12-19,75315,4992,"[""Keyboard"", ""Charger"", ""Laptop""]",1307.86,"{""promo"": ""13%""}",240532,1,North America +2023-11-16,75316,679,"[""Monitor""]",2453.12,{},52406,1,North America +2023-03-18,75317,441,"[""Wireless Mouse""]",811.52,{},171159,0,North America +2024-05-07,75318,900,"[""Laptop"", ""Charger"", ""Phone""]",4268.95,{},164966,1,South America +2023-03-12,75319,9537,"[""Keyboard"", ""Wireless Mouse""]",1867.64,"{""loyalty"": ""18%""}",161421,1,Europe +2024-05-02,75320,971,"[""Tablet"", ""Monitor"", ""Phone""]",2531.89,"{""promo"": ""14%""}",205576,0,Asia +2024-08-30,75321,7630,"[""Laptop""]",297.81,"{""promo"": ""16%""}",114157,0,North America +2023-01-04,75322,1900,"[""Tablet""]",637.27,"{"""": ""9%""}",4815,0,Asia +2023-02-21,75323,7636,"[""Monitor""]",229.48,{},181540,1,South America +2024-08-20,75324,3131,"[""Wireless Mouse""]",696.14,{},113914,1,North America +2023-09-28,75325,4793,"[""Monitor"", ""Headphones"", ""Charger""]",2445.93,"{"""": ""23%""}",173851,1,Europe +2023-11-23,75326,164,"[""Tablet"", ""Wireless Mouse""]",2719.08,{},104522,1,Asia +2023-01-07,75327,3562,"[""Charger""]",4615.74,{},86120,1,North America +2023-04-07,75328,3076,"[""Keyboard"", ""Tablet"", ""Headphones""]",4992.25,"{""promo"": ""5%""}",127479,0,South America +2024-02-20,75329,587,"[""Keyboard"", ""Tablet"", ""Laptop""]",979.43,{},92603,1,South America +2023-04-11,75330,7459,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2139.99,"{""seasonal"": ""6%""}",128265,1,North America +2023-03-28,75331,7936,"[""Laptop""]",2853.91,"{""loyalty"": ""8%""}",190047,0,Europe +2023-08-06,75332,3630,"[""Wireless Mouse""]",459.59,"{""loyalty"": ""27%""}",40832,0,Europe +2023-01-09,75333,5713,"[""Tablet"", ""Wireless Mouse""]",4853.65,{},10130,0,Asia +2024-05-13,75334,6432,"[""Monitor""]",1463.55,"{""loyalty"": ""27%""}",40100,1,Asia +2023-12-11,75335,9780,"[""Laptop"", ""Wireless Mouse""]",813.3,"{""loyalty"": ""22%""}",43925,0,Asia +2024-06-04,75336,6788,"[""Headphones""]",168.93,"{""seasonal"": ""23%""}",184993,1,Africa +2023-02-12,75337,3864,"[""Wireless Mouse""]",4011.62,"{""seasonal"": ""13%""}",101278,0,Asia +2023-03-05,75338,2853,"[""Charger"", ""Keyboard""]",1693.26,{},273603,0,Europe +2024-10-09,75339,9700,"[""Laptop"", ""Monitor""]",2897.02,"{"""": ""18%""}",99680,1,Asia +2024-07-17,75340,6192,"[""Laptop"", ""Headphones"", ""Phone""]",867.07,{},77564,0,North America +2023-01-02,75341,8464,"[""Wireless Mouse"", ""Headphones""]",223.24,"{""loyalty"": ""22%""}",112426,1,South America +2023-11-11,75342,9242,"[""Monitor"", ""Wireless Mouse""]",2392.48,"{"""": ""30%""}",207288,0,Europe +2023-05-02,75343,1824,"[""Wireless Mouse""]",992.78,{},115845,0,Africa +2024-12-06,75344,7613,"[""Wireless Mouse"", ""Monitor""]",361.78,"{""promo"": ""11%""}",294241,0,North America +2024-06-28,75345,1824,"[""Tablet"", ""Wireless Mouse""]",139.39,{},276705,0,South America +2023-10-24,75346,392,"[""Tablet""]",4283.15,"{""promo"": ""30%""}",144167,1,North America +2024-07-01,75347,1972,"[""Wireless Mouse""]",3009.72,{},28728,0,Africa +2024-08-21,75348,2709,"[""Phone"", ""Laptop""]",1839.24,"{""seasonal"": ""5%""}",103355,1,Africa +2023-01-16,75349,8214,"[""Charger"", ""Phone"", ""Keyboard""]",373.63,"{""seasonal"": ""27%""}",86140,0,Asia +2023-11-02,75350,9232,"[""Tablet"", ""Monitor"", ""Laptop""]",3475.11,{},169002,0,Europe +2023-10-10,75351,9590,"[""Charger"", ""Headphones"", ""Laptop""]",4033.85,{},136620,0,Africa +2023-08-07,75352,2357,"[""Laptop""]",1829.97,"{"""": ""11%""}",24836,0,Europe +2023-03-14,75353,9560,"[""Monitor"", ""Laptop"", ""Charger""]",3812.02,"{""promo"": ""6%""}",255964,1,South America +2024-04-14,75354,7888,"[""Phone""]",245.8,"{""loyalty"": ""21%""}",276132,1,South America +2024-05-28,75355,181,"[""Laptop""]",1700.02,"{""promo"": ""24%""}",66251,1,Africa +2024-10-02,75356,5234,"[""Phone""]",2745.25,"{""seasonal"": ""17%""}",294300,0,Africa +2023-07-02,75357,7393,"[""Headphones"", ""Monitor"", ""Keyboard""]",1075.37,{},298090,0,Asia +2023-03-28,75358,3094,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3844.92,"{"""": ""5%""}",124907,1,South America +2024-05-05,75359,8927,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",903.73,"{"""": ""28%""}",16784,0,Africa +2024-04-05,75360,5659,"[""Phone"", ""Tablet"", ""Monitor""]",3294.34,"{""loyalty"": ""16%""}",12024,0,Europe +2024-10-19,75361,4063,"[""Tablet"", ""Monitor""]",4652.03,{},55056,0,Africa +2023-01-20,75362,4337,"[""Tablet"", ""Monitor"", ""Headphones""]",1676.67,{},57183,1,Europe +2023-06-11,75363,5194,"[""Tablet"", ""Phone""]",1120.24,{},100057,1,Africa +2023-09-13,75364,9745,"[""Monitor""]",1090.08,"{"""": ""25%""}",278039,0,South America +2024-10-30,75365,561,"[""Phone""]",251.5,"{""promo"": ""19%""}",173638,0,South America +2024-04-21,75366,2547,"[""Tablet"", ""Laptop""]",629.79,{},11286,0,Asia +2024-06-30,75367,500,"[""Charger"", ""Headphones""]",4253.23,"{""promo"": ""13%""}",21788,1,South America +2023-04-21,75368,6218,"[""Keyboard""]",4132.73,"{"""": ""9%""}",209411,1,Asia +2023-10-23,75369,6851,"[""Tablet"", ""Headphones"", ""Laptop""]",3608.28,{},243646,0,North America +2024-07-23,75370,705,"[""Charger"", ""Keyboard""]",4555.87,"{"""": ""20%""}",121546,1,Asia +2023-12-14,75371,7064,"[""Headphones"", ""Keyboard""]",1090.01,{},196607,1,Asia +2024-10-15,75372,1207,"[""Phone"", ""Headphones""]",1108.95,"{""promo"": ""24%""}",164332,0,North America +2024-05-12,75373,9556,"[""Tablet""]",1811.22,{},74679,0,South America +2023-10-31,75374,3865,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3711.05,"{""seasonal"": ""23%""}",55745,1,South America +2024-09-05,75375,2761,"[""Wireless Mouse""]",3121.13,"{""loyalty"": ""8%""}",89453,1,South America +2023-11-19,75376,3647,"[""Monitor"", ""Headphones""]",4267.19,"{""promo"": ""19%""}",13735,1,South America +2024-02-19,75377,3285,"[""Phone"", ""Laptop"", ""Tablet""]",1973.27,{},219514,1,North America +2023-02-18,75378,4030,"[""Monitor"", ""Charger"", ""Phone""]",4401.87,{},148722,0,Asia +2023-04-02,75379,584,"[""Headphones"", ""Tablet""]",2134.69,{},190429,0,Europe +2024-01-18,75380,4306,"[""Wireless Mouse"", ""Phone""]",4851.95,"{""loyalty"": ""17%""}",234267,1,South America +2023-08-31,75381,6241,"[""Laptop"", ""Charger""]",1348.77,"{""loyalty"": ""20%""}",134609,1,Europe +2023-12-14,75382,5041,"[""Monitor""]",2961.4,{},175580,0,Asia +2023-06-03,75383,7181,"[""Phone"", ""Tablet"", ""Monitor""]",3688.46,"{""promo"": ""26%""}",92529,1,North America +2024-04-06,75384,3310,"[""Headphones"", ""Tablet"", ""Monitor""]",698.59,"{"""": ""5%""}",74315,0,North America +2024-05-24,75385,9944,"[""Wireless Mouse"", ""Charger""]",269.54,{},102566,0,Africa +2023-12-21,75386,1554,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1073.3,"{"""": ""7%""}",149847,0,Africa +2024-01-17,75387,1942,"[""Keyboard""]",1706.86,"{""seasonal"": ""21%""}",238552,1,Africa +2023-11-28,75388,3280,"[""Wireless Mouse""]",2558.64,"{""loyalty"": ""17%""}",243346,1,North America +2023-01-22,75389,8983,"[""Monitor"", ""Phone"", ""Tablet""]",1602.52,"{""promo"": ""20%""}",281473,1,Africa +2023-02-01,75390,585,"[""Keyboard"", ""Monitor""]",975.1,"{""loyalty"": ""11%""}",273873,0,Asia +2024-10-03,75391,8298,"[""Charger"", ""Tablet"", ""Phone""]",1341.26,{},239815,0,Europe +2023-08-08,75392,7999,"[""Charger"", ""Keyboard"", ""Phone""]",4450.64,{},267202,1,South America +2023-06-09,75393,2257,"[""Phone""]",4585.13,"{"""": ""26%""}",265552,0,Europe +2023-07-26,75394,3327,"[""Monitor""]",1368.42,"{""seasonal"": ""16%""}",177795,1,Europe +2024-04-22,75395,4700,"[""Laptop"", ""Monitor"", ""Headphones""]",1920.76,"{"""": ""7%""}",283756,1,Asia +2024-07-25,75396,8883,"[""Charger""]",3154.89,{},215665,0,Europe +2024-08-31,75397,2375,"[""Charger"", ""Keyboard"", ""Headphones""]",2713.92,"{"""": ""5%""}",114035,1,South America +2024-09-22,75398,7751,"[""Wireless Mouse"", ""Monitor""]",1154.98,{},53171,0,Africa +2023-05-28,75399,5478,"[""Headphones"", ""Phone""]",1047.21,"{""promo"": ""15%""}",54424,1,Asia +2023-12-12,75400,9995,"[""Phone"", ""Headphones""]",3684.5,{},209188,0,Asia +2023-06-23,75401,5649,"[""Laptop""]",1768.5,{},205497,0,North America +2023-11-14,75402,9895,"[""Laptop"", ""Monitor""]",2999.69,{},200190,0,South America +2024-09-03,75403,8639,"[""Laptop"", ""Wireless Mouse""]",864.13,"{""promo"": ""17%""}",206745,1,South America +2023-02-04,75404,2084,"[""Keyboard""]",4751.93,"{""loyalty"": ""28%""}",165806,0,South America +2023-04-18,75405,9395,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1813.51,"{""promo"": ""14%""}",283746,0,Africa +2023-07-19,75406,978,"[""Headphones""]",3820.0,"{""seasonal"": ""25%""}",247336,1,Asia +2023-07-24,75407,2181,"[""Charger""]",459.0,"{""promo"": ""19%""}",131636,0,South America +2024-12-20,75408,2747,"[""Laptop"", ""Headphones"", ""Charger""]",2613.78,"{""promo"": ""18%""}",9695,0,Asia +2023-07-30,75409,7424,"[""Phone"", ""Keyboard""]",2788.11,{},72156,0,South America +2024-03-24,75410,7128,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3019.72,"{""loyalty"": ""23%""}",220628,1,South America +2023-11-11,75411,9923,"[""Tablet"", ""Monitor"", ""Charger""]",1474.97,{},95299,1,North America +2024-06-29,75412,8636,"[""Wireless Mouse""]",4883.24,{},291838,1,North America +2024-04-03,75413,7537,"[""Charger"", ""Laptop""]",945.36,"{"""": ""20%""}",245809,1,Asia +2024-12-08,75414,8397,"[""Wireless Mouse""]",1572.62,{},290891,0,North America +2024-04-30,75415,4299,"[""Charger""]",549.05,"{""loyalty"": ""30%""}",59912,0,North America +2024-09-28,75416,7506,"[""Headphones""]",2548.04,"{""seasonal"": ""9%""}",20739,1,Africa +2024-10-24,75417,2008,"[""Keyboard"", ""Tablet"", ""Phone""]",1288.79,{},70637,0,Europe +2024-08-26,75418,9922,"[""Tablet""]",3662.5,{},18346,1,Asia +2023-05-01,75419,9013,"[""Laptop""]",1620.2,{},35467,0,South America +2023-07-18,75420,4781,"[""Wireless Mouse""]",499.22,{},242658,1,Africa +2023-06-27,75421,8180,"[""Tablet""]",1966.91,{},121310,1,North America +2023-05-20,75422,5832,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4606.99,{},281685,0,South America +2024-08-23,75423,3764,"[""Wireless Mouse""]",2582.35,"{""loyalty"": ""19%""}",150561,1,South America +2023-07-15,75424,6838,"[""Charger""]",3985.67,{},227334,1,Europe +2024-05-06,75425,1830,"[""Charger"", ""Phone"", ""Monitor""]",2016.9,{},205557,1,Europe +2024-08-06,75426,4189,"[""Tablet"", ""Wireless Mouse""]",3927.28,{},264735,0,Europe +2024-02-09,75427,1874,"[""Headphones"", ""Wireless Mouse""]",642.24,"{"""": ""14%""}",35808,1,Asia +2023-10-03,75428,9334,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3741.25,"{""promo"": ""9%""}",13150,1,Asia +2024-04-24,75429,5250,"[""Monitor"", ""Tablet""]",2794.85,{},31986,0,Asia +2023-06-23,75430,6229,"[""Phone""]",430.28,"{""seasonal"": ""19%""}",142736,0,North America +2024-09-10,75431,2804,"[""Tablet"", ""Headphones"", ""Phone""]",752.63,{},167440,0,South America +2024-02-15,75432,5308,"[""Phone""]",3459.32,"{""promo"": ""24%""}",53225,1,Asia +2023-07-27,75433,9442,"[""Charger"", ""Keyboard"", ""Laptop""]",377.21,{},257858,0,Asia +2024-08-13,75434,4219,"[""Monitor""]",1400.31,{},176492,1,Africa +2023-05-21,75435,198,"[""Monitor"", ""Headphones""]",2819.84,"{""loyalty"": ""17%""}",108846,0,North America +2024-07-09,75436,4119,"[""Headphones"", ""Phone""]",4397.6,{},67953,1,North America +2023-11-06,75437,9999,"[""Phone"", ""Laptop"", ""Monitor""]",2224.91,"{""promo"": ""13%""}",84531,1,Europe +2024-09-28,75438,6099,"[""Laptop"", ""Phone"", ""Charger""]",2502.99,"{""promo"": ""7%""}",278393,1,Asia +2023-10-01,75439,429,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",793.17,{},56040,0,South America +2023-06-20,75440,6664,"[""Charger"", ""Phone"", ""Laptop""]",366.7,{},57694,1,South America +2024-07-27,75441,9118,"[""Laptop""]",1605.88,"{"""": ""13%""}",24188,0,Asia +2024-04-09,75442,1185,"[""Phone""]",1894.14,{},272371,0,North America +2024-01-01,75443,8656,"[""Keyboard""]",360.8,{},21404,0,Africa +2024-05-20,75444,2853,"[""Headphones""]",2175.4,{},19008,1,Europe +2024-02-11,75445,361,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2264.48,{},3446,1,Africa +2024-04-18,75446,30,"[""Phone"", ""Headphones""]",2711.98,{},224100,0,North America +2023-07-08,75447,8503,"[""Phone"", ""Monitor"", ""Tablet""]",4377.07,"{""promo"": ""25%""}",278774,0,Europe +2024-11-15,75448,9326,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3694.99,"{""promo"": ""20%""}",112833,0,Europe +2023-07-06,75449,9857,"[""Laptop""]",1437.89,"{""loyalty"": ""30%""}",47900,0,South America +2024-08-12,75450,8952,"[""Charger"", ""Tablet"", ""Laptop""]",3851.25,{},11681,1,Africa +2023-12-07,75451,8922,"[""Keyboard""]",3589.37,{},119170,0,North America +2023-05-27,75452,8677,"[""Phone"", ""Monitor""]",2378.26,"{""promo"": ""20%""}",46596,1,Asia +2024-10-18,75453,7058,"[""Phone""]",929.59,{},209142,0,Europe +2024-08-23,75454,7741,"[""Phone"", ""Headphones""]",2691.26,{},200436,0,North America +2023-12-27,75455,7877,"[""Wireless Mouse"", ""Tablet""]",1118.8,"{""seasonal"": ""12%""}",137652,1,North America +2023-10-24,75456,8201,"[""Tablet""]",4033.46,{},52806,0,Asia +2024-11-06,75457,5600,"[""Laptop""]",4909.32,{},274750,1,North America +2023-03-12,75458,3521,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2878.26,"{""loyalty"": ""14%""}",194678,0,South America +2023-09-27,75459,4308,"[""Phone"", ""Keyboard""]",2675.63,"{""seasonal"": ""14%""}",214785,0,Africa +2024-03-28,75460,3227,"[""Headphones"", ""Phone""]",3131.18,"{""seasonal"": ""26%""}",99304,0,Africa +2023-03-13,75461,4583,"[""Headphones""]",2046.84,"{""promo"": ""6%""}",157926,0,Africa +2023-09-04,75462,9243,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2540.87,{},290540,0,North America +2023-03-27,75463,9678,"[""Laptop""]",3323.06,{},254005,1,South America +2024-05-09,75464,3778,"[""Monitor"", ""Charger""]",3908.3,{},97721,0,Asia +2023-01-28,75465,9952,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4742.53,{},92144,0,South America +2024-10-05,75466,9585,"[""Laptop"", ""Wireless Mouse""]",4495.1,{},131700,0,Africa +2024-12-20,75467,3291,"[""Tablet"", ""Laptop""]",2732.26,{},144715,1,North America +2024-01-11,75468,8359,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3173.41,{},102919,0,Africa +2024-04-07,75469,1725,"[""Tablet""]",1585.37,{},289839,0,South America +2023-12-12,75470,9348,"[""Headphones"", ""Charger""]",550.73,{},258679,0,Europe +2024-02-27,75471,3819,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3499.71,{},299349,0,South America +2023-07-16,75472,3584,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3160.04,{},176537,0,Europe +2023-10-22,75473,1329,"[""Tablet""]",2247.38,"{""seasonal"": ""16%""}",27758,1,North America +2024-06-19,75474,2261,"[""Charger"", ""Headphones""]",4863.53,{},168226,1,Asia +2023-04-16,75475,704,"[""Tablet"", ""Charger"", ""Phone""]",2947.14,"{""loyalty"": ""18%""}",4393,1,Europe +2024-02-08,75476,9250,"[""Wireless Mouse"", ""Keyboard""]",2868.45,{},9255,1,Asia +2024-01-26,75477,8052,"[""Phone"", ""Tablet"", ""Monitor""]",3122.14,"{""promo"": ""17%""}",229920,0,Europe +2023-03-06,75478,830,"[""Tablet""]",4961.26,{},123276,0,Europe +2024-02-05,75479,3467,"[""Tablet"", ""Keyboard"", ""Laptop""]",1419.74,"{"""": ""19%""}",85392,1,Africa +2023-08-21,75480,6491,"[""Phone"", ""Laptop"", ""Monitor""]",4435.51,"{""promo"": ""9%""}",279861,1,Europe +2023-04-24,75481,3958,"[""Charger"", ""Laptop"", ""Phone""]",682.22,"{""promo"": ""21%""}",160978,1,Africa +2023-03-02,75482,915,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4339.68,"{""seasonal"": ""12%""}",276244,1,Asia +2024-03-26,75483,5104,"[""Charger"", ""Laptop""]",2441.6,{},50505,1,North America +2023-07-06,75484,3539,"[""Charger"", ""Monitor"", ""Headphones""]",4731.46,{},42744,0,Asia +2023-01-03,75485,2402,"[""Charger"", ""Tablet"", ""Monitor""]",2741.93,"{""seasonal"": ""27%""}",76053,1,Europe +2024-11-20,75486,4544,"[""Headphones"", ""Monitor"", ""Charger""]",1488.7,"{""seasonal"": ""21%""}",287204,1,Asia +2023-04-26,75487,344,"[""Wireless Mouse""]",2881.81,"{""loyalty"": ""20%""}",96401,1,Asia +2023-11-16,75488,9473,"[""Headphones"", ""Charger""]",2834.13,"{"""": ""11%""}",249892,0,Europe +2024-04-08,75489,9947,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1754.94,{},84926,0,North America +2024-04-06,75490,9417,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1607.37,"{"""": ""9%""}",261145,1,South America +2024-10-10,75491,1388,"[""Keyboard"", ""Monitor""]",3776.29,{},161071,0,Africa +2024-05-23,75492,2972,"[""Phone"", ""Keyboard"", ""Laptop""]",1990.13,"{""seasonal"": ""27%""}",11380,0,South America +2023-10-28,75493,6018,"[""Phone"", ""Headphones"", ""Keyboard""]",4610.07,{},162551,0,South America +2023-02-16,75494,6237,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4622.42,"{"""": ""13%""}",203677,0,Europe +2023-11-13,75495,2874,"[""Phone"", ""Wireless Mouse""]",3899.94,{},276785,0,Asia +2024-05-04,75496,6352,"[""Keyboard"", ""Charger""]",898.65,"{""promo"": ""24%""}",176722,1,Africa +2023-09-18,75497,2734,"[""Monitor"", ""Keyboard"", ""Charger""]",3142.34,"{""seasonal"": ""17%""}",240878,0,South America +2023-05-02,75498,403,"[""Headphones""]",4260.36,"{"""": ""15%""}",42485,1,Europe +2024-10-12,75499,6658,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1859.24,{},30828,1,South America +2024-01-28,75500,7496,"[""Phone"", ""Monitor""]",4090.35,"{""loyalty"": ""17%""}",69906,1,South America +2023-09-20,75501,3799,"[""Monitor""]",4652.53,{},69433,0,North America +2023-01-02,75502,3554,"[""Keyboard""]",4371.57,"{""promo"": ""7%""}",180640,0,South America +2024-05-15,75503,8428,"[""Keyboard""]",2713.52,{},193039,0,Europe +2023-07-14,75504,6751,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",960.57,{},211287,1,South America +2023-11-23,75505,327,"[""Phone""]",2818.7,"{""seasonal"": ""15%""}",36424,0,North America +2023-10-26,75506,1507,"[""Keyboard"", ""Wireless Mouse""]",773.59,"{""seasonal"": ""12%""}",248604,1,Europe +2023-08-10,75507,5703,"[""Charger"", ""Monitor"", ""Tablet""]",3750.79,"{""seasonal"": ""15%""}",94910,0,Asia +2024-05-05,75508,9226,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3006.47,{},208982,0,Africa +2023-03-12,75509,4042,"[""Headphones"", ""Phone""]",3961.78,"{""seasonal"": ""19%""}",6135,1,Asia +2023-04-29,75510,6441,"[""Wireless Mouse""]",4333.72,"{""promo"": ""10%""}",283480,0,Asia +2024-12-14,75511,7240,"[""Keyboard"", ""Monitor""]",418.67,{},66977,1,North America +2023-05-15,75512,9880,"[""Headphones"", ""Tablet"", ""Keyboard""]",3796.55,"{""seasonal"": ""9%""}",197317,0,South America +2023-07-26,75513,5963,"[""Keyboard"", ""Headphones""]",144.37,{},92890,0,Europe +2023-02-14,75514,824,"[""Wireless Mouse""]",427.39,"{""promo"": ""26%""}",126006,1,North America +2023-05-19,75515,3732,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",663.41,"{"""": ""26%""}",178669,1,Asia +2024-07-19,75516,3889,"[""Phone""]",2516.52,"{""seasonal"": ""20%""}",93943,0,Africa +2024-03-26,75517,7621,"[""Headphones"", ""Monitor"", ""Charger""]",4025.74,"{""promo"": ""25%""}",290446,0,South America +2024-02-21,75518,607,"[""Tablet"", ""Headphones"", ""Charger""]",1736.21,"{""loyalty"": ""13%""}",185479,0,Asia +2024-08-16,75519,1419,"[""Headphones"", ""Charger"", ""Keyboard""]",4071.36,"{""promo"": ""6%""}",26867,1,Asia +2023-11-21,75520,1644,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1288.15,"{"""": ""26%""}",120885,1,North America +2023-07-26,75521,3621,"[""Headphones"", ""Wireless Mouse""]",2782.55,"{""loyalty"": ""7%""}",286336,0,Asia +2023-01-25,75522,7125,"[""Tablet"", ""Headphones"", ""Monitor""]",3083.59,"{""loyalty"": ""29%""}",137049,1,Asia +2023-06-02,75523,1228,"[""Tablet""]",3428.69,"{""loyalty"": ""6%""}",114448,1,Asia +2024-04-08,75524,6052,"[""Charger"", ""Monitor"", ""Headphones""]",404.92,{},112817,1,North America +2023-10-01,75525,2803,"[""Headphones"", ""Wireless Mouse""]",3948.75,{},181779,1,Europe +2023-12-20,75526,3357,"[""Tablet""]",4753.98,{},122128,0,Africa +2024-06-16,75527,4394,"[""Charger"", ""Laptop""]",2999.66,"{""loyalty"": ""30%""}",74588,0,South America +2024-10-11,75528,4237,"[""Phone"", ""Laptop""]",3604.36,"{""promo"": ""29%""}",54102,1,South America +2024-03-21,75529,1784,"[""Tablet""]",932.64,{},39373,1,North America +2023-03-23,75530,1353,"[""Wireless Mouse"", ""Laptop""]",1443.21,"{""promo"": ""27%""}",56795,1,North America +2023-09-02,75531,2501,"[""Wireless Mouse"", ""Keyboard""]",3855.3,{},268938,0,North America +2024-05-30,75532,7809,"[""Wireless Mouse""]",3578.26,"{"""": ""6%""}",12730,0,Africa +2024-07-01,75533,573,"[""Charger"", ""Keyboard"", ""Laptop""]",605.38,{},101850,1,North America +2023-06-20,75534,2523,"[""Charger"", ""Monitor""]",2847.91,{},298817,0,Africa +2024-05-26,75535,9151,"[""Laptop""]",1670.83,"{"""": ""12%""}",254796,0,Africa +2024-06-26,75536,8631,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2926.4,"{""loyalty"": ""30%""}",131935,0,Europe +2024-02-12,75537,9693,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1115.68,"{""seasonal"": ""24%""}",6260,0,Africa +2024-05-05,75538,9490,"[""Wireless Mouse"", ""Tablet""]",1801.23,{},286754,0,South America +2023-04-28,75539,9149,"[""Tablet""]",3065.47,{},52040,0,Asia +2024-04-30,75540,9428,"[""Charger""]",4772.76,{},232524,0,South America +2024-07-27,75541,3704,"[""Headphones"", ""Tablet""]",4409.57,"{""promo"": ""25%""}",66408,0,South America +2024-01-30,75542,776,"[""Wireless Mouse""]",1822.15,{},200963,1,Asia +2023-08-01,75543,5275,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1401.07,{},120575,1,Europe +2024-10-27,75544,3341,"[""Keyboard"", ""Tablet""]",1004.32,{},225146,0,South America +2023-02-25,75545,6242,"[""Tablet"", ""Laptop"", ""Keyboard""]",1796.46,"{""loyalty"": ""23%""}",74971,0,North America +2023-09-10,75546,4459,"[""Laptop""]",3426.95,"{""promo"": ""14%""}",161811,0,Asia +2023-04-02,75547,3389,"[""Keyboard"", ""Laptop""]",4943.92,"{""seasonal"": ""18%""}",280514,1,Asia +2024-04-07,75548,4227,"[""Keyboard"", ""Headphones""]",1625.45,"{""promo"": ""27%""}",263484,1,Europe +2024-09-19,75549,3846,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3175.0,"{""promo"": ""27%""}",159313,0,Africa +2024-06-30,75550,7378,"[""Monitor""]",4365.73,"{""promo"": ""9%""}",92054,0,North America +2023-09-07,75551,4635,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4138.77,"{"""": ""8%""}",59773,0,South America +2024-04-26,75552,8488,"[""Phone"", ""Keyboard""]",2642.22,"{"""": ""23%""}",86271,1,Europe +2024-07-23,75553,2252,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3999.83,"{""seasonal"": ""12%""}",90262,1,Europe +2023-01-10,75554,7747,"[""Monitor"", ""Charger"", ""Headphones""]",1600.05,{},167451,1,Europe +2023-03-05,75555,3211,"[""Headphones"", ""Charger""]",4582.93,{},122270,1,Asia +2023-09-07,75556,2991,"[""Laptop""]",3427.5,"{"""": ""14%""}",283032,1,North America +2024-06-19,75557,5750,"[""Monitor"", ""Headphones""]",71.88,"{""promo"": ""11%""}",162357,1,South America +2024-07-24,75558,5311,"[""Headphones""]",4778.45,{},151667,0,Africa +2023-03-10,75559,4016,"[""Tablet""]",4001.14,{},129283,0,South America +2024-03-16,75560,1287,"[""Monitor""]",2007.0,{},268619,0,Europe +2024-07-25,75561,2243,"[""Wireless Mouse"", ""Tablet""]",2479.85,{},185782,1,Africa +2024-10-06,75562,1956,"[""Keyboard"", ""Phone"", ""Monitor""]",146.43,{},187964,1,South America +2024-07-10,75563,8436,"[""Keyboard""]",3606.39,"{""seasonal"": ""20%""}",179506,0,Europe +2024-01-18,75564,5367,"[""Headphones"", ""Monitor""]",722.14,{},181120,0,North America +2023-10-05,75565,8301,"[""Tablet"", ""Phone"", ""Laptop""]",1691.84,{},164359,0,South America +2023-10-26,75566,7961,"[""Keyboard"", ""Charger"", ""Tablet""]",1997.15,"{""loyalty"": ""27%""}",78330,0,Asia +2024-05-04,75567,5077,"[""Laptop"", ""Charger""]",2823.14,"{""seasonal"": ""12%""}",294975,1,Asia +2024-10-16,75568,647,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3028.13,{},189855,1,Africa +2024-07-10,75569,9801,"[""Monitor""]",4249.35,"{"""": ""23%""}",269198,0,Europe +2023-10-26,75570,4647,"[""Tablet"", ""Charger"", ""Phone""]",916.91,{},160607,0,Europe +2023-07-19,75571,7603,"[""Monitor""]",4680.09,{},103705,1,Africa +2024-05-18,75572,8523,"[""Laptop"", ""Phone"", ""Keyboard""]",2838.15,"{""loyalty"": ""26%""}",176264,1,Africa +2023-04-05,75573,1092,"[""Charger"", ""Wireless Mouse""]",144.46,{},252199,0,Europe +2023-08-21,75574,843,"[""Wireless Mouse"", ""Headphones""]",3916.01,"{""loyalty"": ""27%""}",91958,0,Africa +2024-11-01,75575,512,"[""Headphones"", ""Monitor""]",2268.55,"{"""": ""29%""}",210745,0,Africa +2023-12-30,75576,9449,"[""Laptop"", ""Monitor""]",2892.52,{},113703,1,North America +2024-05-15,75577,7554,"[""Monitor""]",4564.85,{},135595,1,South America +2024-04-04,75578,5549,"[""Wireless Mouse""]",4070.9,"{"""": ""30%""}",95786,0,Asia +2023-07-14,75579,2421,"[""Laptop"", ""Tablet""]",513.18,{},35930,0,Africa +2024-05-06,75580,9307,"[""Tablet"", ""Phone"", ""Keyboard""]",1048.31,{},141679,0,North America +2023-09-13,75581,6826,"[""Charger"", ""Phone"", ""Wireless Mouse""]",661.43,{},101883,1,South America +2023-12-19,75582,9001,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4529.02,{},61720,1,North America +2024-05-31,75583,3588,"[""Headphones"", ""Keyboard""]",428.1,"{""promo"": ""14%""}",80003,1,Europe +2023-05-17,75584,7236,"[""Keyboard"", ""Headphones"", ""Tablet""]",904.78,{},256637,1,Africa +2023-10-25,75585,6219,"[""Tablet"", ""Laptop""]",2249.73,"{""seasonal"": ""30%""}",177240,0,South America +2023-10-11,75586,2490,"[""Phone""]",1653.16,{},217054,0,Africa +2023-05-02,75587,7682,"[""Headphones"", ""Tablet"", ""Phone""]",1980.44,{},35636,1,Africa +2023-08-25,75588,2437,"[""Headphones""]",792.64,{},294011,0,Asia +2024-01-30,75589,3035,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2547.43,"{"""": ""5%""}",90563,1,Europe +2024-12-23,75590,2946,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2181.11,"{"""": ""18%""}",292018,1,North America +2023-07-23,75591,9218,"[""Laptop""]",4496.55,{},179976,0,Africa +2024-09-27,75592,9032,"[""Keyboard"", ""Laptop""]",678.91,{},154628,1,North America +2024-11-10,75593,3139,"[""Monitor"", ""Headphones"", ""Charger""]",420.06,{},53788,0,Asia +2023-09-28,75594,7855,"[""Keyboard"", ""Charger""]",3865.35,"{""loyalty"": ""29%""}",4742,1,Africa +2023-02-21,75595,3204,"[""Keyboard"", ""Tablet""]",4617.95,{},48474,0,South America +2023-05-15,75596,170,"[""Phone"", ""Keyboard""]",2498.72,"{"""": ""7%""}",90901,0,Asia +2023-10-24,75597,557,"[""Laptop""]",1914.99,"{""loyalty"": ""27%""}",286700,0,South America +2024-06-04,75598,8812,"[""Keyboard""]",2832.68,"{""loyalty"": ""14%""}",248691,0,South America +2023-02-22,75599,4485,"[""Keyboard"", ""Phone""]",3624.18,{},209911,0,Africa +2024-06-04,75600,8442,"[""Tablet""]",4298.31,"{"""": ""30%""}",256632,0,Asia +2024-03-26,75601,2801,"[""Laptop""]",4592.87,"{""promo"": ""30%""}",123919,0,Europe +2023-05-25,75602,9606,"[""Keyboard"", ""Tablet"", ""Laptop""]",4844.84,{},155800,0,Europe +2023-12-20,75603,4458,"[""Tablet""]",833.77,{},254597,0,North America +2024-12-18,75604,9162,"[""Laptop"", ""Monitor"", ""Phone""]",3772.23,"{"""": ""25%""}",297328,0,Asia +2024-11-17,75605,8801,"[""Headphones"", ""Phone"", ""Monitor""]",3001.66,{},105034,0,Africa +2023-10-11,75606,8003,"[""Wireless Mouse"", ""Monitor""]",2010.19,{},117630,0,Asia +2024-10-31,75607,6605,"[""Wireless Mouse"", ""Headphones""]",292.87,{},101261,1,North America +2023-06-25,75608,3131,"[""Phone""]",1568.36,"{""seasonal"": ""29%""}",271460,1,Asia +2023-02-18,75609,6353,"[""Headphones"", ""Tablet""]",1488.49,"{""loyalty"": ""11%""}",46972,0,Asia +2024-06-11,75610,7108,"[""Charger""]",3704.07,"{""loyalty"": ""18%""}",191027,0,Asia +2023-04-30,75611,6520,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4956.86,"{""promo"": ""28%""}",177888,1,North America +2023-09-04,75612,9650,"[""Laptop"", ""Wireless Mouse""]",3909.36,"{""seasonal"": ""5%""}",129641,1,Europe +2023-06-21,75613,5161,"[""Keyboard"", ""Monitor""]",2915.75,"{""promo"": ""21%""}",214936,0,Africa +2024-12-09,75614,9791,"[""Phone""]",2765.11,{},76931,0,Asia +2024-11-18,75615,6785,"[""Phone""]",959.52,{},100239,0,North America +2023-09-21,75616,6127,"[""Wireless Mouse"", ""Laptop""]",1187.65,"{"""": ""21%""}",43625,1,Asia +2024-09-10,75617,5021,"[""Headphones""]",3340.76,{},186176,1,North America +2023-12-20,75618,708,"[""Laptop""]",3498.76,"{""loyalty"": ""30%""}",269841,0,Asia +2023-06-04,75619,749,"[""Laptop""]",436.27,{},279072,1,South America +2023-06-28,75620,2321,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",450.62,{},125244,1,Europe +2023-09-17,75621,8252,"[""Headphones"", ""Charger"", ""Laptop""]",3136.5,"{"""": ""17%""}",224378,0,North America +2023-12-23,75622,7212,"[""Phone""]",3886.58,"{""loyalty"": ""30%""}",130062,1,Europe +2023-03-04,75623,5785,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",349.01,{},48852,1,Africa +2024-11-27,75624,880,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4485.7,{},124023,1,Africa +2023-04-27,75625,8007,"[""Keyboard"", ""Tablet"", ""Headphones""]",1876.56,{},270516,0,Asia +2024-09-02,75626,795,"[""Tablet"", ""Keyboard""]",800.37,"{""seasonal"": ""29%""}",253023,1,Asia +2024-12-26,75627,6371,"[""Tablet""]",1887.36,{},112457,1,Europe +2024-07-24,75628,8178,"[""Headphones"", ""Keyboard""]",4925.38,{},121593,0,Asia +2023-11-01,75629,4896,"[""Tablet"", ""Phone""]",1519.88,"{""promo"": ""30%""}",145708,1,South America +2024-10-09,75630,8279,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2757.17,"{"""": ""24%""}",7347,1,South America +2023-03-11,75631,2642,"[""Keyboard"", ""Tablet"", ""Charger""]",1565.96,{},259156,1,Asia +2023-11-15,75632,6610,"[""Phone"", ""Monitor""]",3311.27,"{"""": ""29%""}",192399,0,Africa +2023-11-11,75633,6784,"[""Laptop"", ""Charger""]",1242.06,"{""promo"": ""16%""}",102825,0,Africa +2024-12-03,75634,3004,"[""Tablet""]",2294.05,"{""loyalty"": ""6%""}",138032,1,South America +2024-10-31,75635,7711,"[""Charger"", ""Keyboard""]",313.87,{},290628,0,Asia +2023-05-26,75636,5359,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",106.81,"{""promo"": ""14%""}",260153,0,North America +2023-10-02,75637,5062,"[""Tablet""]",3381.82,"{""seasonal"": ""26%""}",17854,1,Asia +2023-07-11,75638,9337,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3553.72,{},218051,1,South America +2023-01-23,75639,8692,"[""Phone"", ""Monitor"", ""Tablet""]",3757.9,{},185122,0,Africa +2023-04-12,75640,2234,"[""Keyboard"", ""Headphones"", ""Charger""]",3284.47,"{"""": ""7%""}",8308,0,Africa +2024-03-17,75641,8693,"[""Charger"", ""Phone""]",3695.73,{},128832,1,North America +2024-01-16,75642,6170,"[""Headphones"", ""Wireless Mouse""]",3213.44,"{""seasonal"": ""27%""}",240839,1,North America +2024-11-02,75643,9614,"[""Charger""]",4703.43,{},52937,1,South America +2024-04-19,75644,4249,"[""Headphones"", ""Tablet"", ""Phone""]",1305.11,{},294182,0,Africa +2023-11-15,75645,8648,"[""Laptop""]",1359.88,{},82323,1,Europe +2024-03-14,75646,2765,"[""Laptop"", ""Tablet"", ""Charger""]",2847.04,"{""loyalty"": ""16%""}",205428,0,Asia +2024-03-29,75647,2290,"[""Tablet"", ""Keyboard"", ""Laptop""]",3419.04,"{""loyalty"": ""6%""}",123052,0,Africa +2024-08-10,75648,376,"[""Monitor""]",3492.61,{},100782,1,Africa +2023-12-06,75649,601,"[""Laptop"", ""Charger""]",4135.27,"{""promo"": ""20%""}",227193,0,North America +2023-05-24,75650,2473,"[""Monitor"", ""Headphones"", ""Tablet""]",696.04,{},266913,1,Europe +2024-09-17,75651,7743,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4340.34,"{""loyalty"": ""11%""}",172852,0,Asia +2024-06-30,75652,1872,"[""Wireless Mouse""]",1306.66,{},30882,0,Asia +2023-02-26,75653,3786,"[""Wireless Mouse"", ""Phone""]",2168.83,"{"""": ""28%""}",123253,1,Asia +2024-07-02,75654,2452,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4482.2,"{""promo"": ""29%""}",10840,0,Africa +2023-07-01,75655,2719,"[""Monitor""]",1224.01,{},181353,0,Asia +2024-09-01,75656,1366,"[""Phone"", ""Laptop"", ""Charger""]",764.09,{},225064,1,Europe +2023-01-13,75657,7961,"[""Tablet"", ""Keyboard""]",1564.84,"{""loyalty"": ""18%""}",296650,1,Europe +2023-03-26,75658,1788,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2149.43,{},297195,1,Europe +2023-11-05,75659,1716,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1427.08,"{""seasonal"": ""17%""}",278589,1,South America +2024-12-28,75660,6741,"[""Tablet"", ""Wireless Mouse""]",1232.95,"{""loyalty"": ""25%""}",279493,0,North America +2023-08-22,75661,3972,"[""Laptop"", ""Phone"", ""Tablet""]",2112.07,{},50450,0,South America +2023-02-23,75662,2719,"[""Wireless Mouse""]",1061.37,{},181506,1,North America +2023-04-01,75663,8565,"[""Headphones""]",3567.47,"{"""": ""26%""}",192916,0,Africa +2024-12-20,75664,9382,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2592.4,"{""loyalty"": ""12%""}",251449,1,Asia +2023-01-26,75665,6591,"[""Phone"", ""Tablet""]",378.09,"{""seasonal"": ""12%""}",106918,0,North America +2023-09-25,75666,7938,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1322.2,"{""loyalty"": ""6%""}",89767,0,South America +2023-06-23,75667,1752,"[""Monitor"", ""Headphones"", ""Charger""]",1052.47,{},8287,1,Asia +2023-09-23,75668,6201,"[""Wireless Mouse""]",4411.73,{},151814,1,Europe +2023-02-23,75669,7031,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1893.38,{},125649,0,Africa +2023-04-10,75670,2092,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3211.52,{},279953,0,North America +2023-06-16,75671,8366,"[""Monitor"", ""Headphones""]",4272.1,"{"""": ""8%""}",85793,1,Europe +2024-06-28,75672,5245,"[""Laptop"", ""Charger"", ""Keyboard""]",2753.59,"{""promo"": ""14%""}",185675,0,Africa +2023-11-12,75673,1955,"[""Phone"", ""Headphones""]",3999.35,"{""promo"": ""8%""}",133886,0,North America +2024-11-09,75674,7328,"[""Headphones""]",2189.27,"{""promo"": ""10%""}",142974,1,Africa +2024-08-27,75675,9768,"[""Headphones"", ""Laptop""]",4475.3,"{""seasonal"": ""20%""}",83412,0,Africa +2023-07-16,75676,7311,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4372.13,{},113030,1,Africa +2023-06-26,75677,9340,"[""Headphones"", ""Charger""]",3279.02,"{""loyalty"": ""30%""}",199074,0,Asia +2024-12-22,75678,4006,"[""Laptop""]",3757.69,"{""promo"": ""11%""}",48135,1,Europe +2024-11-09,75679,9081,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1571.12,"{""loyalty"": ""26%""}",277412,1,Europe +2023-04-11,75680,608,"[""Phone"", ""Charger""]",2143.21,"{""loyalty"": ""20%""}",260685,0,Asia +2023-03-15,75681,7222,"[""Headphones"", ""Phone"", ""Tablet""]",3515.01,{},99454,1,Europe +2024-05-06,75682,6583,"[""Wireless Mouse""]",1862.81,{},81590,0,North America +2024-07-08,75683,1413,"[""Laptop"", ""Headphones""]",4196.48,{},152027,1,Africa +2024-11-16,75684,3025,"[""Keyboard"", ""Monitor""]",4349.07,{},48339,1,South America +2024-02-17,75685,9537,"[""Phone"", ""Charger""]",2773.86,{},21674,1,Asia +2024-04-05,75686,6890,"[""Laptop""]",3006.06,"{""promo"": ""7%""}",128884,1,Africa +2024-09-28,75687,8027,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4694.13,{},121590,0,Europe +2024-05-02,75688,1513,"[""Keyboard"", ""Charger""]",1943.07,{},166334,0,Asia +2023-10-03,75689,5762,"[""Keyboard""]",1569.04,{},224976,1,North America +2023-01-24,75690,890,"[""Headphones"", ""Phone""]",1953.71,{},156664,0,Africa +2024-02-22,75691,9393,"[""Tablet"", ""Charger"", ""Laptop""]",3514.02,"{""loyalty"": ""13%""}",257504,1,South America +2024-08-27,75692,3904,"[""Monitor""]",3547.29,{},46542,0,Africa +2024-07-11,75693,4124,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3334.75,"{"""": ""27%""}",160920,1,Asia +2024-10-24,75694,5709,"[""Charger""]",89.52,"{""loyalty"": ""6%""}",187421,0,Africa +2023-11-13,75695,9846,"[""Phone""]",1691.34,"{"""": ""21%""}",149891,0,South America +2023-03-29,75696,7143,"[""Laptop"", ""Tablet"", ""Phone""]",1373.14,{},32100,1,Europe +2023-10-16,75697,614,"[""Tablet"", ""Monitor""]",4444.57,{},8205,1,Europe +2024-11-26,75698,3833,"[""Tablet"", ""Phone""]",423.21,"{""seasonal"": ""7%""}",119262,0,South America +2023-05-01,75699,7110,"[""Headphones""]",3059.43,{},196241,1,Africa +2024-07-04,75700,2857,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3342.26,"{"""": ""15%""}",280925,0,Africa +2023-12-19,75701,9758,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1303.48,"{""promo"": ""30%""}",57211,1,North America +2024-02-26,75702,8673,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2407.21,"{""loyalty"": ""5%""}",219308,0,Africa +2023-11-29,75703,4824,"[""Wireless Mouse""]",4528.07,"{""promo"": ""9%""}",3547,1,Europe +2023-10-26,75704,7409,"[""Charger""]",493.14,{},166794,1,Asia +2023-07-07,75705,6685,"[""Phone""]",1530.46,"{""seasonal"": ""8%""}",102435,0,Europe +2023-12-22,75706,4635,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2454.64,"{"""": ""22%""}",213750,1,Europe +2024-10-06,75707,510,"[""Monitor""]",3504.63,{},131278,1,South America +2023-02-08,75708,1839,"[""Keyboard"", ""Tablet"", ""Laptop""]",1611.05,{},255982,0,Africa +2024-09-22,75709,1199,"[""Phone"", ""Keyboard""]",3253.6,"{"""": ""5%""}",286259,1,Europe +2024-01-31,75710,4464,"[""Charger"", ""Tablet""]",3976.56,"{""seasonal"": ""30%""}",191938,0,North America +2024-07-19,75711,8642,"[""Phone"", ""Wireless Mouse""]",2133.95,{},135349,0,South America +2024-12-01,75712,6911,"[""Charger""]",3510.93,{},107532,1,Asia +2023-03-10,75713,2813,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2422.98,{},270441,1,Europe +2024-02-28,75714,1724,"[""Phone"", ""Headphones"", ""Keyboard""]",3874.48,{},67297,0,Europe +2023-10-03,75715,5437,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3460.15,{},180455,0,Europe +2024-08-03,75716,1754,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1877.06,{},224102,0,Africa +2024-10-13,75717,6287,"[""Keyboard"", ""Laptop""]",3562.38,"{""loyalty"": ""23%""}",196348,1,Europe +2023-10-22,75718,6693,"[""Charger"", ""Keyboard""]",1421.06,{},163252,0,Europe +2024-01-01,75719,3565,"[""Laptop""]",3657.65,{},199251,1,North America +2023-12-01,75720,5882,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",127.07,{},272581,0,Asia +2024-06-29,75721,1425,"[""Monitor"", ""Keyboard""]",3537.49,{},163578,0,Asia +2023-07-06,75722,650,"[""Wireless Mouse"", ""Tablet""]",3071.52,{},229798,1,Africa +2024-08-01,75723,2937,"[""Laptop"", ""Headphones""]",3004.69,{},92978,0,Africa +2023-07-17,75724,5372,"[""Keyboard"", ""Wireless Mouse""]",3235.02,"{""loyalty"": ""9%""}",174254,0,Europe +2023-10-23,75725,1722,"[""Headphones""]",3897.04,{},71915,0,Asia +2024-12-28,75726,520,"[""Phone"", ""Charger"", ""Headphones""]",270.55,{},20964,0,North America +2023-04-29,75727,410,"[""Charger"", ""Headphones"", ""Phone""]",4224.84,{},152862,0,Asia +2023-10-08,75728,9875,"[""Tablet"", ""Charger""]",2352.27,{},84767,1,Europe +2024-11-08,75729,4118,"[""Phone""]",2446.86,"{""loyalty"": ""9%""}",33287,1,Africa +2024-09-25,75730,5519,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3005.31,{},251293,1,North America +2024-12-17,75731,9444,"[""Headphones"", ""Laptop"", ""Tablet""]",1703.06,"{"""": ""14%""}",77508,1,Africa +2023-04-14,75732,5515,"[""Monitor""]",4795.44,{},139216,0,Africa +2024-02-21,75733,4698,"[""Tablet"", ""Keyboard""]",3009.71,"{""promo"": ""15%""}",164607,1,Africa +2023-12-05,75734,816,"[""Tablet"", ""Monitor""]",4948.25,"{"""": ""10%""}",216556,0,South America +2024-07-22,75735,3818,"[""Monitor""]",1177.44,"{""promo"": ""5%""}",210267,1,Asia +2024-12-08,75736,5763,"[""Keyboard"", ""Headphones""]",2079.65,"{""seasonal"": ""13%""}",44720,0,Africa +2023-12-27,75737,6004,"[""Monitor""]",3198.5,"{""loyalty"": ""13%""}",134903,1,Europe +2024-06-21,75738,943,"[""Tablet"", ""Headphones""]",1986.68,{},83134,1,South America +2023-04-15,75739,4477,"[""Headphones"", ""Tablet""]",2245.25,"{""seasonal"": ""12%""}",107881,0,South America +2024-10-20,75740,6974,"[""Tablet"", ""Phone"", ""Headphones""]",2904.8,{},77662,1,South America +2024-04-25,75741,3566,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3183.05,{},161200,0,Europe +2023-11-21,75742,7987,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2956.27,{},227505,0,Europe +2024-02-18,75743,3331,"[""Keyboard"", ""Tablet"", ""Headphones""]",2248.27,{},193152,1,Asia +2023-05-01,75744,2265,"[""Phone"", ""Monitor""]",3230.41,"{""promo"": ""7%""}",196533,1,Africa +2023-02-11,75745,6542,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",461.76,"{"""": ""18%""}",249511,1,North America +2023-10-15,75746,3334,"[""Headphones""]",1779.65,"{""promo"": ""12%""}",74880,0,Africa +2023-03-12,75747,8063,"[""Tablet"", ""Keyboard""]",928.16,{},289486,1,Africa +2024-02-21,75748,6558,"[""Tablet"", ""Keyboard""]",921.76,"{""loyalty"": ""7%""}",215680,1,Asia +2023-12-29,75749,995,"[""Headphones""]",1228.1,"{"""": ""27%""}",77616,0,Europe +2024-06-28,75750,1722,"[""Laptop"", ""Keyboard""]",2756.99,{},32439,0,Asia +2023-01-29,75751,973,"[""Phone""]",3307.81,{},204808,1,Africa +2023-06-17,75752,1760,"[""Monitor"", ""Charger""]",1989.06,{},248151,0,North America +2024-12-23,75753,9714,"[""Wireless Mouse"", ""Monitor""]",3059.63,"{""seasonal"": ""16%""}",2057,1,Europe +2024-03-12,75754,4894,"[""Phone"", ""Charger""]",2075.77,"{""seasonal"": ""21%""}",264453,1,South America +2024-03-01,75755,5498,"[""Phone"", ""Laptop""]",3862.68,"{""promo"": ""6%""}",141659,0,Africa +2023-06-25,75756,1572,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",785.8,"{"""": ""20%""}",298730,0,Africa +2024-02-03,75757,7037,"[""Wireless Mouse""]",3903.7,{},235540,0,North America +2024-05-09,75758,1200,"[""Wireless Mouse"", ""Monitor""]",794.08,"{""loyalty"": ""28%""}",63256,0,Asia +2024-06-24,75759,1602,"[""Tablet""]",2058.24,{},77701,0,Europe +2024-08-14,75760,3442,"[""Phone"", ""Headphones""]",189.29,"{""promo"": ""20%""}",295701,1,North America +2024-03-23,75761,729,"[""Charger"", ""Tablet""]",220.1,{},174011,0,Africa +2024-01-01,75762,2033,"[""Headphones""]",4380.69,"{"""": ""6%""}",17607,1,Asia +2024-11-02,75763,4578,"[""Wireless Mouse""]",4525.2,"{""seasonal"": ""15%""}",218064,1,Asia +2024-02-21,75764,6041,"[""Charger"", ""Wireless Mouse""]",4408.19,"{""seasonal"": ""23%""}",117258,1,North America +2023-06-19,75765,5347,"[""Wireless Mouse"", ""Phone""]",1195.76,"{""loyalty"": ""29%""}",244872,1,North America +2024-03-22,75766,9137,"[""Keyboard"", ""Tablet"", ""Headphones""]",2590.95,{},112878,1,South America +2023-02-13,75767,6790,"[""Charger""]",3413.03,"{""loyalty"": ""14%""}",34161,1,Europe +2024-01-11,75768,6526,"[""Wireless Mouse""]",2698.97,"{""seasonal"": ""24%""}",87740,1,North America +2023-09-23,75769,6318,"[""Tablet""]",854.49,{},220855,0,Europe +2024-02-25,75770,1229,"[""Keyboard"", ""Laptop""]",272.03,"{""loyalty"": ""11%""}",149438,1,South America +2024-02-27,75771,6532,"[""Charger"", ""Phone""]",507.59,{},9033,1,Asia +2023-03-16,75772,5674,"[""Charger""]",3727.49,{},261239,1,Europe +2024-06-10,75773,6463,"[""Charger"", ""Headphones"", ""Monitor""]",4188.68,"{""loyalty"": ""18%""}",150335,1,Asia +2024-12-08,75774,2833,"[""Tablet""]",3091.27,"{""seasonal"": ""19%""}",188877,0,Europe +2024-06-05,75775,4262,"[""Wireless Mouse"", ""Headphones""]",2597.62,"{""loyalty"": ""14%""}",214316,1,South America +2023-04-11,75776,17,"[""Laptop"", ""Headphones""]",2324.57,{},81362,0,Europe +2024-07-06,75777,652,"[""Charger""]",733.5,"{""loyalty"": ""21%""}",237070,0,Asia +2024-05-15,75778,1515,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3665.18,"{""loyalty"": ""15%""}",273690,0,Africa +2024-07-13,75779,5286,"[""Phone"", ""Monitor"", ""Laptop""]",3125.51,{},278704,1,Asia +2023-08-09,75780,656,"[""Keyboard""]",746.02,{},28904,1,Asia +2024-05-30,75781,874,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1420.54,"{""seasonal"": ""8%""}",156103,0,Europe +2023-03-16,75782,7843,"[""Laptop""]",3580.48,{},186773,0,South America +2024-07-11,75783,1328,"[""Wireless Mouse"", ""Headphones""]",550.68,{},175873,1,Africa +2023-12-28,75784,3997,"[""Phone"", ""Laptop"", ""Headphones""]",230.56,{},151585,0,Africa +2023-02-18,75785,6731,"[""Tablet"", ""Laptop""]",2105.18,"{""loyalty"": ""5%""}",87379,0,Europe +2024-08-20,75786,221,"[""Keyboard"", ""Wireless Mouse""]",4140.08,"{"""": ""26%""}",292419,1,South America +2024-07-24,75787,3621,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4847.22,"{""promo"": ""26%""}",183028,1,Europe +2024-10-02,75788,9128,"[""Keyboard""]",312.98,"{""seasonal"": ""18%""}",11986,0,Asia +2024-03-05,75789,9181,"[""Charger"", ""Tablet"", ""Laptop""]",969.11,"{"""": ""27%""}",184879,1,Africa +2024-12-07,75790,3211,"[""Keyboard"", ""Laptop"", ""Headphones""]",2627.44,"{""promo"": ""14%""}",60417,0,Asia +2023-07-11,75791,9047,"[""Keyboard"", ""Tablet"", ""Monitor""]",1559.31,"{""seasonal"": ""11%""}",106330,1,Europe +2024-12-18,75792,6243,"[""Phone"", ""Tablet""]",4791.42,{},28015,1,Asia +2023-02-12,75793,7794,"[""Charger"", ""Headphones""]",4934.25,{},51843,0,Europe +2024-11-26,75794,86,"[""Headphones""]",448.02,"{""seasonal"": ""12%""}",2869,1,North America +2024-07-18,75795,4,"[""Charger""]",1541.69,"{""promo"": ""16%""}",227513,1,North America +2023-11-08,75796,5029,"[""Keyboard""]",4281.7,"{""loyalty"": ""23%""}",63073,0,Africa +2023-05-11,75797,5136,"[""Tablet"", ""Headphones"", ""Phone""]",227.2,{},14738,1,Africa +2024-12-24,75798,6326,"[""Monitor"", ""Tablet""]",519.33,{},170960,1,Africa +2023-08-21,75799,1591,"[""Laptop""]",2767.76,{},119128,1,North America +2024-07-31,75800,5187,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2438.79,{},28108,0,Europe +2024-01-01,75801,1511,"[""Charger"", ""Keyboard"", ""Monitor""]",2645.51,"{""promo"": ""7%""}",246387,1,North America +2023-04-26,75802,4896,"[""Keyboard"", ""Charger"", ""Headphones""]",2767.24,"{"""": ""25%""}",52314,1,Europe +2024-02-01,75803,6070,"[""Laptop"", ""Keyboard"", ""Monitor""]",1871.88,"{"""": ""17%""}",21459,1,Africa +2024-03-18,75804,9349,"[""Phone"", ""Tablet"", ""Laptop""]",3965.25,"{""promo"": ""20%""}",186410,1,Asia +2024-02-18,75805,7350,"[""Keyboard"", ""Wireless Mouse""]",1578.52,"{""seasonal"": ""18%""}",109021,1,Europe +2023-07-31,75806,5662,"[""Keyboard""]",3311.26,{},37724,0,Africa +2023-12-09,75807,8565,"[""Charger"", ""Keyboard""]",3699.36,"{"""": ""18%""}",25672,0,Africa +2023-10-21,75808,6650,"[""Monitor""]",2782.91,"{""promo"": ""21%""}",109201,0,North America +2024-03-15,75809,9625,"[""Keyboard""]",4301.12,{},20624,0,Africa +2024-01-22,75810,9911,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3559.38,"{""promo"": ""27%""}",175983,0,North America +2023-10-08,75811,2272,"[""Charger""]",671.22,"{""promo"": ""14%""}",18588,0,South America +2024-04-22,75812,9081,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1367.9,{},122831,1,Europe +2024-10-05,75813,8936,"[""Tablet"", ""Monitor""]",808.3,"{""loyalty"": ""25%""}",271883,1,Europe +2024-11-02,75814,3979,"[""Wireless Mouse""]",3208.46,{},197241,0,Europe +2023-06-12,75815,7608,"[""Tablet"", ""Keyboard"", ""Headphones""]",3569.05,"{""promo"": ""11%""}",31249,1,Europe +2023-04-16,75816,699,"[""Charger"", ""Monitor"", ""Keyboard""]",1673.03,{},286485,0,Europe +2023-07-08,75817,361,"[""Phone""]",4592.7,"{""loyalty"": ""20%""}",269537,1,Africa +2024-05-28,75818,904,"[""Charger""]",3639.24,{},43319,0,South America +2024-11-02,75819,2243,"[""Laptop""]",1984.72,{},175091,0,Europe +2024-10-22,75820,2808,"[""Monitor"", ""Tablet""]",2177.33,{},201021,0,North America +2024-04-25,75821,725,"[""Charger"", ""Wireless Mouse""]",2920.33,{},224774,1,Asia +2023-10-05,75822,5085,"[""Headphones""]",878.45,{},275474,1,Africa +2023-06-30,75823,9593,"[""Monitor"", ""Wireless Mouse""]",818.29,"{""promo"": ""22%""}",146564,1,Europe +2023-08-03,75824,7358,"[""Charger""]",1982.21,{},163311,0,Europe +2024-11-05,75825,1817,"[""Charger"", ""Phone"", ""Headphones""]",183.37,{},175588,1,North America +2024-02-03,75826,1916,"[""Wireless Mouse""]",2054.92,"{"""": ""15%""}",266395,0,Asia +2023-10-11,75827,8765,"[""Headphones"", ""Tablet"", ""Monitor""]",2564.52,"{"""": ""25%""}",169251,0,Africa +2023-01-26,75828,736,"[""Phone""]",3827.85,{},129466,1,Africa +2023-06-29,75829,9857,"[""Tablet""]",475.92,"{"""": ""26%""}",133901,0,Africa +2024-09-16,75830,168,"[""Phone"", ""Headphones""]",4033.75,{},239128,1,Africa +2023-02-15,75831,2114,"[""Keyboard""]",3604.84,"{""loyalty"": ""8%""}",221126,0,North America +2023-12-31,75832,9151,"[""Tablet"", ""Keyboard""]",1876.96,{},119524,0,South America +2023-11-11,75833,7360,"[""Headphones"", ""Laptop"", ""Charger""]",51.27,{},209566,0,South America +2024-10-24,75834,3623,"[""Monitor"", ""Tablet"", ""Headphones""]",4600.72,{},199395,0,Asia +2023-02-03,75835,2101,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2690.75,"{"""": ""5%""}",3083,1,North America +2024-12-29,75836,6523,"[""Keyboard"", ""Phone""]",1693.11,"{""seasonal"": ""22%""}",98460,0,Europe +2024-07-05,75837,8213,"[""Laptop"", ""Tablet""]",2276.96,"{""loyalty"": ""30%""}",166079,0,Africa +2024-09-24,75838,1760,"[""Phone"", ""Charger""]",727.42,"{""seasonal"": ""7%""}",195538,0,Africa +2023-09-20,75839,993,"[""Monitor""]",4137.25,{},285797,1,Europe +2024-01-12,75840,7079,"[""Headphones"", ""Keyboard"", ""Laptop""]",2041.86,{},18868,0,Europe +2024-09-18,75841,5418,"[""Wireless Mouse""]",1863.59,"{""seasonal"": ""30%""}",82146,1,Africa +2023-10-14,75842,9563,"[""Laptop"", ""Phone"", ""Keyboard""]",1897.75,{},88534,0,North America +2024-09-04,75843,6595,"[""Charger"", ""Laptop""]",1279.28,{},196262,0,Europe +2023-03-24,75844,3609,"[""Charger""]",2410.06,{},143916,1,Africa +2023-09-03,75845,7493,"[""Tablet"", ""Headphones"", ""Laptop""]",3837.63,"{""promo"": ""13%""}",36332,0,Europe +2023-03-24,75846,743,"[""Laptop"", ""Phone"", ""Monitor""]",3022.41,"{""promo"": ""18%""}",125136,1,Europe +2024-02-27,75847,7414,"[""Headphones"", ""Keyboard""]",105.92,{},144577,0,South America +2023-10-14,75848,1434,"[""Wireless Mouse"", ""Tablet""]",3669.6,{},295897,0,Europe +2023-03-11,75849,508,"[""Headphones""]",4212.55,{},91387,0,North America +2024-02-12,75850,1642,"[""Charger""]",2785.88,{},229039,1,North America +2023-07-13,75851,1911,"[""Monitor"", ""Keyboard"", ""Charger""]",618.89,{},165324,1,Europe +2024-06-30,75852,9606,"[""Laptop"", ""Headphones""]",4196.28,"{""promo"": ""6%""}",207684,1,Africa +2023-06-04,75853,1834,"[""Charger"", ""Laptop"", ""Monitor""]",409.0,"{""seasonal"": ""9%""}",136215,0,Asia +2023-09-22,75854,3238,"[""Keyboard"", ""Phone"", ""Laptop""]",508.68,"{""seasonal"": ""9%""}",25570,0,Africa +2023-12-16,75855,7315,"[""Tablet"", ""Phone"", ""Keyboard""]",1086.99,{},196675,1,North America +2024-05-04,75856,1436,"[""Laptop"", ""Monitor""]",2643.88,"{""seasonal"": ""17%""}",86511,1,Asia +2023-11-25,75857,3174,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1503.33,{},111636,1,Europe +2024-10-02,75858,9572,"[""Charger"", ""Laptop""]",3732.4,{},252253,0,Africa +2024-03-28,75859,4756,"[""Charger"", ""Laptop"", ""Monitor""]",2249.76,"{"""": ""12%""}",165379,0,Asia +2023-12-13,75860,578,"[""Charger""]",3804.62,{},53986,1,North America +2023-06-21,75861,8826,"[""Keyboard""]",2529.64,{},14557,0,South America +2023-10-23,75862,8757,"[""Keyboard"", ""Laptop""]",1752.22,"{"""": ""26%""}",241273,0,Europe +2023-09-19,75863,537,"[""Monitor""]",973.11,"{""seasonal"": ""29%""}",141398,1,Asia +2023-06-05,75864,3011,"[""Monitor"", ""Phone""]",3621.6,"{""promo"": ""12%""}",221733,1,Asia +2023-11-19,75865,9181,"[""Keyboard"", ""Monitor"", ""Headphones""]",3863.52,"{""loyalty"": ""29%""}",158589,0,South America +2024-03-31,75866,5487,"[""Headphones"", ""Laptop"", ""Monitor""]",2788.58,"{"""": ""26%""}",140505,0,North America +2024-07-29,75867,5358,"[""Monitor""]",3707.0,{},291502,1,South America +2024-10-23,75868,5945,"[""Keyboard"", ""Monitor""]",4420.15,{},77588,1,Asia +2024-08-30,75869,1618,"[""Charger"", ""Monitor""]",4011.28,{},12072,0,Europe +2024-04-17,75870,4789,"[""Charger"", ""Keyboard""]",1604.06,"{"""": ""21%""}",23332,0,South America +2023-05-14,75871,3331,"[""Phone""]",3178.67,{},21461,1,Europe +2024-03-26,75872,5798,"[""Charger""]",3785.91,"{""promo"": ""23%""}",49078,0,North America +2023-02-28,75873,9905,"[""Tablet""]",3064.45,"{"""": ""15%""}",269169,1,Africa +2023-06-02,75874,1194,"[""Phone""]",2477.62,{},172666,1,South America +2023-10-22,75875,241,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4851.27,{},199377,1,North America +2024-10-08,75876,769,"[""Phone""]",4381.91,"{""loyalty"": ""26%""}",241519,0,Asia +2023-07-01,75877,6947,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2985.29,{},50664,1,Europe +2024-09-29,75878,9985,"[""Wireless Mouse""]",1958.31,{},279441,0,Africa +2023-03-28,75879,8857,"[""Keyboard"", ""Tablet"", ""Headphones""]",3841.07,{},67693,1,North America +2024-10-07,75880,2702,"[""Headphones"", ""Charger"", ""Tablet""]",380.08,{},188281,0,Europe +2023-07-20,75881,7803,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1754.97,"{""loyalty"": ""19%""}",278671,1,Asia +2024-03-27,75882,2160,"[""Keyboard""]",3568.08,{},277307,1,North America +2024-02-05,75883,6751,"[""Charger"", ""Keyboard""]",2908.96,{},89497,0,South America +2024-10-12,75884,9395,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2231.44,"{""seasonal"": ""14%""}",90629,0,Africa +2023-12-15,75885,3525,"[""Charger"", ""Phone""]",3968.25,"{""loyalty"": ""15%""}",167998,0,North America +2023-06-06,75886,6250,"[""Headphones"", ""Keyboard""]",4438.1,"{""loyalty"": ""27%""}",216879,0,South America +2023-07-27,75887,4974,"[""Keyboard"", ""Phone"", ""Charger""]",2749.86,{},285071,1,North America +2023-08-11,75888,8148,"[""Keyboard""]",4900.72,"{""loyalty"": ""20%""}",121855,0,Europe +2024-08-20,75889,4830,"[""Headphones"", ""Keyboard""]",2198.83,{},289243,0,North America +2023-02-13,75890,3713,"[""Laptop"", ""Tablet""]",2683.71,"{"""": ""24%""}",36823,0,Asia +2024-08-12,75891,9590,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",305.12,"{""seasonal"": ""15%""}",289612,1,Africa +2024-01-26,75892,1153,"[""Monitor"", ""Phone""]",316.46,"{"""": ""23%""}",178666,1,Asia +2023-08-15,75893,2249,"[""Keyboard"", ""Wireless Mouse""]",1444.0,"{""promo"": ""10%""}",232228,1,North America +2023-02-11,75894,7385,"[""Keyboard""]",4123.37,{},77124,0,Europe +2024-02-27,75895,2083,"[""Phone"", ""Wireless Mouse""]",1156.51,{},220828,0,South America +2023-06-12,75896,9978,"[""Monitor""]",3230.74,{},171389,0,Asia +2024-02-06,75897,7150,"[""Tablet"", ""Headphones""]",2525.13,{},240099,0,South America +2023-04-11,75898,2115,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",139.06,"{""seasonal"": ""28%""}",133060,0,Europe +2024-02-15,75899,9818,"[""Laptop"", ""Charger""]",1939.94,{},125583,0,North America +2024-02-17,75900,6747,"[""Tablet"", ""Charger""]",4679.8,"{""seasonal"": ""25%""}",18616,0,South America +2023-11-06,75901,4807,"[""Charger"", ""Headphones""]",3795.61,"{""seasonal"": ""27%""}",155903,1,Europe +2023-08-19,75902,6218,"[""Wireless Mouse""]",1275.42,"{""loyalty"": ""10%""}",75673,0,North America +2024-10-01,75903,1325,"[""Keyboard"", ""Wireless Mouse""]",4696.44,{},192122,0,South America +2023-04-29,75904,6541,"[""Keyboard"", ""Wireless Mouse""]",3690.89,"{""seasonal"": ""23%""}",180671,1,Asia +2023-11-10,75905,5104,"[""Monitor""]",190.06,"{""seasonal"": ""26%""}",121842,0,North America +2024-06-26,75906,6332,"[""Keyboard"", ""Tablet""]",1297.2,{},124989,0,Asia +2023-01-25,75907,5051,"[""Tablet""]",1476.74,{},91649,0,Asia +2023-10-17,75908,4913,"[""Phone""]",537.7,"{""loyalty"": ""19%""}",273283,1,South America +2023-04-03,75909,3901,"[""Headphones""]",2456.11,{},10218,1,Asia +2023-07-04,75910,1503,"[""Monitor"", ""Headphones""]",2589.84,"{""promo"": ""6%""}",161937,0,Asia +2024-10-27,75911,962,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1059.26,"{""promo"": ""15%""}",134092,0,South America +2024-07-14,75912,8509,"[""Tablet"", ""Headphones""]",3311.92,"{""promo"": ""30%""}",114589,1,Europe +2024-06-27,75913,3646,"[""Phone""]",1869.79,{},109125,1,Asia +2024-06-29,75914,8672,"[""Keyboard"", ""Headphones""]",2343.31,"{"""": ""21%""}",46726,1,Asia +2023-03-29,75915,1208,"[""Laptop""]",3571.13,{},219314,0,North America +2024-02-19,75916,5141,"[""Laptop""]",4646.26,{},59863,0,Asia +2024-02-02,75917,9851,"[""Monitor"", ""Laptop"", ""Keyboard""]",4876.35,{},235875,1,South America +2024-07-30,75918,3531,"[""Tablet""]",3805.26,{},169643,0,South America +2024-08-04,75919,4586,"[""Laptop"", ""Tablet""]",1569.24,"{""seasonal"": ""11%""}",111429,0,Asia +2024-04-24,75920,5238,"[""Keyboard""]",876.6,"{"""": ""9%""}",231979,1,South America +2023-12-13,75921,6619,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3881.94,"{""loyalty"": ""5%""}",15143,1,South America +2024-10-19,75922,6084,"[""Phone"", ""Tablet""]",1003.56,"{""seasonal"": ""21%""}",160280,0,Asia +2024-09-25,75923,6403,"[""Headphones"", ""Tablet""]",4303.96,"{""loyalty"": ""11%""}",63004,1,North America +2023-11-03,75924,4255,"[""Monitor"", ""Laptop"", ""Phone""]",1804.89,"{"""": ""19%""}",283700,1,Africa +2024-10-29,75925,9339,"[""Wireless Mouse""]",2182.54,{},220656,0,Africa +2024-09-09,75926,5031,"[""Headphones"", ""Tablet""]",4819.29,{},292961,1,Asia +2023-05-17,75927,9015,"[""Phone"", ""Monitor""]",3580.16,"{""seasonal"": ""22%""}",17771,0,North America +2023-05-08,75928,5082,"[""Laptop""]",3004.1,"{""promo"": ""21%""}",294238,0,Africa +2023-02-26,75929,9077,"[""Tablet""]",1289.2,{},227992,0,Europe +2023-07-19,75930,1517,"[""Keyboard"", ""Phone""]",4481.47,{},144001,0,Asia +2024-07-30,75931,4472,"[""Headphones""]",3553.99,{},24309,1,Asia +2023-10-18,75932,5147,"[""Monitor"", ""Keyboard""]",3667.15,{},18082,0,South America +2023-06-18,75933,9860,"[""Charger"", ""Tablet""]",3278.44,"{""loyalty"": ""6%""}",193175,1,South America +2023-12-06,75934,2656,"[""Tablet"", ""Charger"", ""Phone""]",3107.48,"{""seasonal"": ""9%""}",23761,0,South America +2023-02-22,75935,3428,"[""Keyboard""]",634.73,{},12632,0,South America +2023-03-14,75936,9517,"[""Wireless Mouse"", ""Phone""]",2565.59,{},96814,1,South America +2024-02-26,75937,1358,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",77.08,"{""loyalty"": ""8%""}",162681,1,Europe +2024-06-02,75938,6205,"[""Headphones"", ""Charger"", ""Tablet""]",4956.83,{},15157,1,North America +2024-03-15,75939,149,"[""Headphones""]",1439.93,{},201874,0,Asia +2024-06-03,75940,7567,"[""Monitor""]",3079.11,{},152922,1,South America +2023-07-09,75941,3234,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",934.46,"{""promo"": ""18%""}",103166,0,North America +2024-02-22,75942,1915,"[""Tablet"", ""Phone""]",849.65,{},5643,1,Europe +2024-07-27,75943,211,"[""Wireless Mouse""]",3626.08,"{""loyalty"": ""28%""}",255495,0,Europe +2024-06-19,75944,7277,"[""Headphones"", ""Keyboard""]",4091.83,{},12909,1,Europe +2023-06-24,75945,4170,"[""Phone""]",1589.2,{},57938,1,Europe +2023-11-22,75946,7718,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3409.93,"{""loyalty"": ""5%""}",261532,0,Europe +2024-06-01,75947,2564,"[""Phone"", ""Wireless Mouse""]",3722.9,{},155904,0,North America +2023-06-30,75948,5713,"[""Laptop"", ""Phone""]",3855.86,{},159247,0,Africa +2024-03-20,75949,191,"[""Laptop"", ""Monitor"", ""Tablet""]",137.34,{},5085,0,North America +2023-04-30,75950,9912,"[""Tablet""]",2575.54,{},36630,1,South America +2024-09-18,75951,238,"[""Tablet""]",298.3,"{""seasonal"": ""23%""}",11315,0,South America +2023-09-10,75952,8840,"[""Headphones""]",2039.69,"{"""": ""25%""}",155855,1,North America +2024-11-18,75953,3159,"[""Tablet""]",4454.43,"{""loyalty"": ""13%""}",213515,0,Europe +2024-03-09,75954,3952,"[""Monitor"", ""Wireless Mouse""]",250.24,{},82366,0,Europe +2023-05-13,75955,9644,"[""Wireless Mouse"", ""Monitor""]",915.38,{},90080,1,North America +2023-12-29,75956,3858,"[""Phone"", ""Wireless Mouse"", ""Charger""]",822.34,"{""seasonal"": ""28%""}",209618,0,Asia +2024-04-14,75957,6001,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4153.26,{},264491,0,North America +2023-05-01,75958,3755,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",572.5,{},220106,1,Asia +2023-01-03,75959,5044,"[""Charger"", ""Headphones"", ""Phone""]",1829.99,{},71509,1,Africa +2024-06-28,75960,9959,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2878.45,{},155150,1,South America +2023-07-17,75961,9577,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3685.4,{},299293,1,Europe +2024-03-03,75962,4636,"[""Charger"", ""Wireless Mouse""]",4509.52,{},175169,0,Asia +2023-10-03,75963,4153,"[""Laptop""]",2122.98,{},207317,0,North America +2023-07-16,75964,4813,"[""Tablet""]",356.52,"{""promo"": ""19%""}",11436,0,South America +2023-11-15,75965,1364,"[""Laptop""]",3406.22,{},285812,0,South America +2024-03-31,75966,7085,"[""Monitor"", ""Charger"", ""Phone""]",4358.09,{},142610,0,North America +2023-10-14,75967,2126,"[""Wireless Mouse"", ""Phone""]",1991.12,{},204090,0,Europe +2023-04-13,75968,5084,"[""Keyboard""]",2627.37,"{""seasonal"": ""5%""}",261529,0,Europe +2024-09-08,75969,5336,"[""Laptop"", ""Monitor""]",3525.86,"{""seasonal"": ""13%""}",207724,0,North America +2023-01-03,75970,173,"[""Monitor""]",3666.43,"{""promo"": ""21%""}",198915,0,Africa +2024-08-28,75971,7972,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4076.13,"{""promo"": ""12%""}",149351,0,Asia +2024-08-31,75972,6124,"[""Tablet"", ""Keyboard""]",3086.74,"{""promo"": ""12%""}",14071,1,Africa +2023-09-15,75973,2631,"[""Headphones"", ""Tablet"", ""Monitor""]",1535.38,{},248018,0,Asia +2024-05-13,75974,7783,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2601.39,"{""promo"": ""16%""}",189857,0,Africa +2023-02-07,75975,8731,"[""Wireless Mouse"", ""Charger""]",975.6,"{""loyalty"": ""11%""}",56657,0,South America +2024-06-25,75976,2548,"[""Phone"", ""Laptop""]",3874.97,{},90918,0,Africa +2023-04-28,75977,2376,"[""Keyboard""]",2569.12,"{""seasonal"": ""23%""}",119999,0,Europe +2023-09-05,75978,311,"[""Tablet"", ""Keyboard"", ""Monitor""]",2317.0,{},91449,1,North America +2024-06-17,75979,339,"[""Charger""]",4145.01,"{"""": ""14%""}",26477,0,Asia +2023-09-25,75980,1282,"[""Headphones"", ""Charger"", ""Laptop""]",1888.58,{},205427,0,North America +2023-07-01,75981,7463,"[""Wireless Mouse""]",2079.4,{},122835,1,Asia +2024-01-08,75982,1148,"[""Laptop""]",1616.32,"{""promo"": ""10%""}",178167,0,Europe +2023-11-04,75983,7562,"[""Laptop""]",4234.65,{},140657,1,Africa +2024-01-22,75984,9817,"[""Tablet""]",3088.88,{},256592,0,South America +2024-11-25,75985,8876,"[""Wireless Mouse""]",4591.82,{},225531,0,North America +2023-07-21,75986,8821,"[""Charger"", ""Keyboard"", ""Monitor""]",1141.74,{},45538,0,Africa +2024-07-13,75987,2498,"[""Keyboard""]",2256.99,{},102384,0,South America +2023-05-25,75988,2563,"[""Wireless Mouse""]",3608.63,{},73895,0,South America +2023-07-14,75989,7546,"[""Keyboard"", ""Monitor""]",3202.55,"{""seasonal"": ""10%""}",106488,1,Europe +2023-12-26,75990,9676,"[""Phone"", ""Tablet"", ""Charger""]",4422.34,"{""loyalty"": ""6%""}",298787,1,Africa +2024-07-18,75991,7236,"[""Monitor"", ""Keyboard""]",756.23,"{""loyalty"": ""7%""}",4906,0,South America +2023-01-14,75992,9671,"[""Keyboard"", ""Charger""]",4706.15,{},207583,1,South America +2023-02-02,75993,2192,"[""Tablet""]",2229.57,{},17322,1,North America +2023-03-01,75994,4406,"[""Phone""]",4956.04,"{""promo"": ""28%""}",267031,1,Europe +2024-12-21,75995,6870,"[""Laptop"", ""Phone""]",2764.33,"{""promo"": ""17%""}",8990,1,Europe +2023-07-21,75996,5282,"[""Keyboard"", ""Laptop""]",990.65,"{""loyalty"": ""16%""}",101636,0,South America +2024-05-10,75997,3620,"[""Monitor"", ""Tablet""]",2125.64,"{""promo"": ""13%""}",52496,0,Asia +2023-02-13,75998,2916,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4790.15,"{"""": ""15%""}",56452,0,Africa +2023-05-01,75999,9857,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3730.37,"{""loyalty"": ""8%""}",212747,0,South America +2024-03-09,76000,3767,"[""Monitor"", ""Laptop""]",1823.33,{},221778,1,Europe +2024-04-21,76001,3842,"[""Laptop""]",4324.55,{},127850,0,Africa +2024-11-09,76002,3758,"[""Laptop"", ""Headphones""]",2986.29,{},129249,0,Europe +2024-09-29,76003,775,"[""Laptop""]",4099.63,{},67678,1,Europe +2024-08-14,76004,8903,"[""Keyboard"", ""Tablet""]",1926.28,"{""loyalty"": ""22%""}",279055,1,Africa +2023-03-29,76005,2314,"[""Headphones"", ""Phone"", ""Keyboard""]",4264.5,{},233138,1,Europe +2024-03-23,76006,4801,"[""Monitor""]",794.3,{},165162,0,South America +2023-01-20,76007,838,"[""Monitor"", ""Tablet"", ""Charger""]",2278.51,"{"""": ""24%""}",103717,1,Asia +2023-10-20,76008,2215,"[""Headphones""]",467.36,{},107732,1,Africa +2024-02-27,76009,7601,"[""Wireless Mouse""]",3318.93,{},156984,0,North America +2024-01-27,76010,2775,"[""Wireless Mouse"", ""Laptop""]",3628.55,"{""seasonal"": ""27%""}",218362,0,North America +2023-08-08,76011,606,"[""Phone""]",4530.92,"{""promo"": ""30%""}",191594,1,Africa +2024-02-21,76012,3261,"[""Headphones"", ""Phone""]",345.8,{},269160,0,Europe +2023-05-11,76013,7824,"[""Keyboard""]",3767.84,{},18699,1,South America +2023-12-12,76014,6446,"[""Wireless Mouse"", ""Laptop""]",3148.2,{},189267,0,Africa +2024-05-10,76015,4368,"[""Charger"", ""Tablet"", ""Headphones""]",3949.33,{},212625,1,Europe +2023-09-02,76016,6212,"[""Phone""]",2558.94,{},178232,0,North America +2023-10-22,76017,1662,"[""Laptop""]",3157.79,{},113785,0,Europe +2024-06-27,76018,7794,"[""Tablet""]",2134.52,"{""seasonal"": ""6%""}",48927,1,South America +2023-06-16,76019,9169,"[""Laptop"", ""Wireless Mouse""]",4469.52,"{""promo"": ""9%""}",7608,1,Asia +2023-02-18,76020,8125,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",266.25,"{"""": ""7%""}",185525,0,Europe +2023-09-05,76021,7357,"[""Monitor"", ""Laptop"", ""Tablet""]",2252.72,{},108530,1,Europe +2024-02-20,76022,6134,"[""Phone"", ""Tablet""]",4822.39,"{"""": ""9%""}",217247,0,Asia +2023-07-28,76023,3856,"[""Headphones"", ""Tablet"", ""Phone""]",1559.62,{},124406,0,South America +2024-11-09,76024,8642,"[""Wireless Mouse""]",1922.75,"{""promo"": ""25%""}",219478,1,Europe +2023-11-15,76025,2351,"[""Headphones"", ""Laptop"", ""Keyboard""]",4422.63,"{""promo"": ""20%""}",225799,0,Africa +2024-07-26,76026,6101,"[""Monitor"", ""Phone""]",2828.87,"{""seasonal"": ""6%""}",7379,1,Asia +2023-11-04,76027,7244,"[""Tablet"", ""Keyboard""]",2167.36,"{""loyalty"": ""26%""}",169206,1,South America +2023-10-19,76028,4981,"[""Phone"", ""Headphones"", ""Tablet""]",2812.39,{},241113,1,Asia +2023-07-09,76029,3493,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",621.46,{},73675,1,Europe +2024-02-14,76030,3935,"[""Headphones""]",727.75,{},135197,0,South America +2024-03-08,76031,9656,"[""Monitor"", ""Charger"", ""Tablet""]",1581.68,"{""loyalty"": ""17%""}",135326,1,Europe +2024-12-11,76032,298,"[""Monitor"", ""Keyboard"", ""Headphones""]",4427.07,{},38839,0,North America +2024-03-15,76033,9829,"[""Tablet"", ""Charger"", ""Laptop""]",4433.56,{},114478,1,South America +2024-09-20,76034,9356,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3690.42,{},277481,0,Europe +2023-05-26,76035,5371,"[""Charger""]",3159.39,{},34379,0,Europe +2023-02-15,76036,9845,"[""Keyboard""]",4443.18,"{""loyalty"": ""8%""}",41984,0,South America +2024-11-13,76037,5653,"[""Headphones"", ""Laptop"", ""Phone""]",256.14,{},175655,0,Africa +2024-06-30,76038,994,"[""Tablet"", ""Charger"", ""Phone""]",1130.81,"{""loyalty"": ""13%""}",231323,0,Europe +2023-01-10,76039,5787,"[""Phone"", ""Laptop"", ""Charger""]",2886.82,{},136094,0,Europe +2024-07-17,76040,5556,"[""Tablet"", ""Wireless Mouse""]",2673.84,{},118474,1,South America +2024-04-18,76041,2950,"[""Monitor""]",4938.38,{},182017,1,Africa +2024-07-30,76042,2825,"[""Tablet"", ""Phone"", ""Charger""]",382.0,{},235481,1,Asia +2024-07-18,76043,2599,"[""Tablet""]",4599.97,"{"""": ""25%""}",85350,1,Asia +2023-04-18,76044,8793,"[""Charger"", ""Tablet"", ""Laptop""]",2158.78,{},92931,0,Africa +2023-03-23,76045,9621,"[""Keyboard"", ""Phone""]",1454.48,"{""seasonal"": ""30%""}",91849,0,Africa +2024-03-11,76046,5523,"[""Charger""]",1496.42,{},116031,1,Africa +2023-09-21,76047,7414,"[""Phone"", ""Headphones""]",2289.55,"{""promo"": ""16%""}",193689,1,South America +2023-10-18,76048,9881,"[""Tablet"", ""Keyboard"", ""Headphones""]",3858.2,{},184895,1,Africa +2023-05-17,76049,3992,"[""Wireless Mouse""]",3451.13,{},188775,0,South America +2024-09-10,76050,1888,"[""Laptop"", ""Phone"", ""Tablet""]",4920.11,"{"""": ""22%""}",74243,0,North America +2023-11-07,76051,1982,"[""Tablet""]",2057.67,{},31850,0,North America +2024-09-20,76052,4984,"[""Wireless Mouse"", ""Monitor""]",4672.36,"{""seasonal"": ""11%""}",236627,1,South America +2024-07-12,76053,6538,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4120.48,{},176105,0,Europe +2023-05-14,76054,8914,"[""Phone""]",2401.95,{},59324,1,Africa +2024-06-27,76055,7387,"[""Tablet"", ""Headphones""]",4695.83,{},244147,0,Asia +2024-06-01,76056,4858,"[""Phone"", ""Charger""]",3473.65,{},235653,1,Africa +2024-09-30,76057,900,"[""Phone"", ""Headphones""]",2581.37,{},198147,0,South America +2023-04-25,76058,7251,"[""Monitor""]",1990.43,{},295694,0,Asia +2024-02-14,76059,302,"[""Laptop"", ""Headphones""]",1515.96,{},17187,0,Africa +2023-08-29,76060,9136,"[""Wireless Mouse""]",4797.53,"{"""": ""25%""}",87732,0,North America +2023-08-07,76061,4075,"[""Laptop""]",916.9,"{""promo"": ""11%""}",44639,0,Europe +2023-08-06,76062,5818,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2406.0,"{""loyalty"": ""16%""}",208485,0,Asia +2024-10-28,76063,8584,"[""Charger"", ""Headphones"", ""Keyboard""]",3745.85,{},220709,1,Africa +2024-07-19,76064,909,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3732.74,{},223566,0,North America +2024-11-14,76065,3713,"[""Phone"", ""Monitor"", ""Charger""]",1311.15,{},251248,1,Asia +2023-09-11,76066,1429,"[""Headphones"", ""Wireless Mouse""]",1041.47,{},236623,0,South America +2023-07-13,76067,2398,"[""Keyboard"", ""Tablet""]",919.87,{},69727,0,Europe +2024-10-20,76068,2637,"[""Tablet"", ""Phone"", ""Charger""]",4532.17,"{"""": ""28%""}",136355,0,Africa +2023-07-26,76069,7704,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1339.37,{},198114,0,North America +2024-09-19,76070,1971,"[""Tablet""]",224.14,"{"""": ""26%""}",168784,0,Asia +2024-12-04,76071,1968,"[""Tablet"", ""Phone"", ""Monitor""]",1193.64,"{""loyalty"": ""26%""}",53069,1,North America +2024-05-26,76072,5550,"[""Headphones""]",2767.95,{},217452,1,South America +2023-12-19,76073,5556,"[""Charger"", ""Laptop"", ""Headphones""]",2070.83,"{""loyalty"": ""20%""}",32846,1,Africa +2023-03-20,76074,9572,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3660.47,"{""promo"": ""17%""}",156228,1,Asia +2023-12-21,76075,7638,"[""Headphones""]",3947.78,{},104455,1,North America +2024-11-09,76076,1200,"[""Phone"", ""Laptop""]",4624.54,"{""loyalty"": ""8%""}",190121,0,Asia +2023-12-31,76077,6037,"[""Keyboard"", ""Wireless Mouse""]",3846.96,"{""loyalty"": ""27%""}",290386,0,Europe +2023-08-19,76078,5936,"[""Wireless Mouse""]",2660.19,{},138611,0,Europe +2024-06-27,76079,3084,"[""Phone"", ""Headphones"", ""Tablet""]",914.46,"{""loyalty"": ""18%""}",53635,0,Europe +2024-11-09,76080,4606,"[""Phone""]",4513.57,{},200837,1,Europe +2024-09-07,76081,8601,"[""Wireless Mouse"", ""Keyboard""]",4693.19,{},28532,0,Europe +2023-07-09,76082,4933,"[""Keyboard""]",635.99,"{"""": ""19%""}",285020,1,Asia +2024-06-15,76083,624,"[""Charger"", ""Headphones"", ""Phone""]",3785.49,"{""seasonal"": ""13%""}",197406,1,Europe +2023-05-05,76084,6455,"[""Keyboard""]",2062.36,{},148085,1,Europe +2023-03-16,76085,8494,"[""Keyboard""]",3111.19,"{""seasonal"": ""25%""}",199757,1,North America +2023-11-27,76086,6140,"[""Headphones""]",2777.82,{},245524,1,South America +2024-10-19,76087,898,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2884.78,"{"""": ""22%""}",190257,1,Asia +2023-12-08,76088,428,"[""Headphones"", ""Laptop""]",3151.56,{},69708,1,South America +2024-03-08,76089,328,"[""Laptop"", ""Phone""]",3595.61,"{""seasonal"": ""19%""}",108041,1,Europe +2024-07-13,76090,2401,"[""Keyboard""]",1608.35,{},288266,1,Asia +2023-07-10,76091,3177,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2653.42,"{""promo"": ""13%""}",243883,0,South America +2023-10-11,76092,3369,"[""Phone"", ""Tablet"", ""Monitor""]",1563.94,"{""loyalty"": ""12%""}",186248,1,Africa +2024-12-22,76093,3592,"[""Tablet"", ""Charger"", ""Keyboard""]",3077.82,"{""loyalty"": ""9%""}",285221,0,Africa +2023-03-02,76094,3484,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2156.8,{},32388,1,Asia +2024-07-01,76095,9631,"[""Monitor"", ""Laptop""]",1965.18,{},229815,1,Europe +2023-05-08,76096,6123,"[""Headphones""]",1474.68,"{""promo"": ""10%""}",212315,1,Africa +2023-04-28,76097,82,"[""Tablet""]",399.88,{},84820,1,Europe +2024-12-27,76098,2668,"[""Tablet"", ""Monitor""]",4676.92,"{""seasonal"": ""9%""}",190564,1,Asia +2024-01-22,76099,7352,"[""Charger"", ""Wireless Mouse""]",561.73,"{""loyalty"": ""6%""}",299678,0,Africa +2024-05-08,76100,7885,"[""Laptop""]",3511.7,"{""seasonal"": ""22%""}",167001,0,Asia +2024-06-15,76101,8037,"[""Headphones"", ""Monitor"", ""Charger""]",4749.56,{},225922,0,North America +2024-04-18,76102,2220,"[""Monitor""]",1558.26,"{""promo"": ""24%""}",119408,0,South America +2024-09-27,76103,1110,"[""Tablet""]",4035.92,"{""loyalty"": ""26%""}",98101,1,North America +2024-05-08,76104,3867,"[""Headphones"", ""Tablet"", ""Charger""]",2512.26,"{""seasonal"": ""18%""}",15834,0,Asia +2023-11-08,76105,5234,"[""Monitor""]",1212.19,{},260167,0,Africa +2023-05-21,76106,9900,"[""Headphones"", ""Phone"", ""Tablet""]",1976.31,"{""loyalty"": ""16%""}",194452,1,Asia +2023-11-15,76107,5787,"[""Tablet""]",4249.09,"{""loyalty"": ""28%""}",244516,0,Asia +2024-04-24,76108,5627,"[""Wireless Mouse"", ""Laptop""]",1485.78,"{""loyalty"": ""12%""}",292381,0,Africa +2023-09-17,76109,601,"[""Tablet"", ""Phone""]",654.91,"{""loyalty"": ""8%""}",277824,1,South America +2023-12-01,76110,4281,"[""Keyboard"", ""Phone""]",467.3,{},51258,1,North America +2023-01-26,76111,729,"[""Headphones"", ""Laptop"", ""Monitor""]",512.99,{},287800,1,North America +2024-09-02,76112,5463,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",3699.21,{},224646,0,North America +2024-09-02,76113,3909,"[""Headphones"", ""Phone""]",4611.64,"{""seasonal"": ""25%""}",64374,0,Africa +2023-08-14,76114,458,"[""Charger"", ""Headphones""]",384.72,"{"""": ""22%""}",273418,0,North America +2023-05-19,76115,5828,"[""Headphones"", ""Laptop"", ""Tablet""]",4977.77,"{""seasonal"": ""5%""}",125898,0,Asia +2024-10-22,76116,2652,"[""Headphones"", ""Charger"", ""Laptop""]",4284.47,"{""promo"": ""13%""}",30630,0,North America +2024-12-21,76117,7070,"[""Phone"", ""Headphones"", ""Charger""]",2248.97,"{""seasonal"": ""27%""}",293585,1,Africa +2023-11-12,76118,5457,"[""Monitor"", ""Laptop"", ""Charger""]",652.71,{},33758,1,Europe +2023-12-07,76119,9523,"[""Charger""]",1282.6,"{"""": ""25%""}",113893,0,Africa +2023-04-01,76120,3601,"[""Headphones""]",956.6,"{""seasonal"": ""9%""}",9549,0,Asia +2024-02-24,76121,9806,"[""Phone"", ""Charger""]",3583.27,"{""seasonal"": ""27%""}",275079,1,Africa +2023-08-28,76122,6506,"[""Tablet"", ""Monitor""]",2979.58,"{""promo"": ""23%""}",64495,0,Europe +2024-12-24,76123,8198,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4292.36,"{""promo"": ""22%""}",232215,1,North America +2023-04-21,76124,4648,"[""Headphones"", ""Charger"", ""Phone""]",2894.26,{},284430,1,South America +2023-09-19,76125,379,"[""Charger"", ""Headphones"", ""Laptop""]",4490.26,"{"""": ""21%""}",191691,0,North America +2024-08-29,76126,5724,"[""Monitor"", ""Laptop"", ""Phone""]",1401.63,{},196635,0,Africa +2024-10-11,76127,206,"[""Charger"", ""Laptop"", ""Tablet""]",4711.09,"{""seasonal"": ""5%""}",10022,0,North America +2023-12-02,76128,2456,"[""Tablet""]",278.62,"{""loyalty"": ""11%""}",67261,0,Asia +2023-09-12,76129,8060,"[""Charger"", ""Laptop"", ""Keyboard""]",832.79,{},233110,0,South America +2024-10-22,76130,4612,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3143.95,"{""promo"": ""11%""}",234434,1,South America +2023-10-23,76131,1921,"[""Wireless Mouse""]",413.62,"{""seasonal"": ""28%""}",269091,1,South America +2024-08-16,76132,4736,"[""Tablet""]",2650.38,"{""loyalty"": ""13%""}",125991,0,Europe +2024-11-14,76133,179,"[""Laptop"", ""Phone""]",4505.06,"{""promo"": ""6%""}",98477,1,Europe +2023-05-06,76134,866,"[""Headphones""]",4451.64,"{""promo"": ""19%""}",281925,0,Europe +2023-03-18,76135,3335,"[""Charger""]",4976.92,{},169265,1,South America +2024-07-26,76136,6417,"[""Wireless Mouse""]",4010.2,{},191338,0,Asia +2023-02-07,76137,6793,"[""Wireless Mouse"", ""Phone""]",4839.61,"{"""": ""23%""}",239559,1,Africa +2024-12-31,76138,5345,"[""Monitor""]",3931.88,{},12514,0,Asia +2024-06-30,76139,8207,"[""Charger""]",1643.71,"{""promo"": ""30%""}",165991,1,Asia +2023-04-22,76140,2930,"[""Charger""]",1131.01,"{""seasonal"": ""13%""}",233693,1,South America +2023-06-13,76141,5506,"[""Headphones"", ""Wireless Mouse""]",3978.75,"{""loyalty"": ""17%""}",237827,0,North America +2023-12-10,76142,6460,"[""Monitor"", ""Phone"", ""Tablet""]",1745.34,{},289392,0,Europe +2023-01-01,76143,2720,"[""Keyboard"", ""Charger""]",4542.49,"{""promo"": ""18%""}",135587,1,Asia +2023-04-13,76144,1146,"[""Headphones""]",3594.12,{},74323,0,South America +2023-11-13,76145,3573,"[""Monitor"", ""Charger""]",490.64,{},246294,0,North America +2023-06-25,76146,8563,"[""Monitor""]",517.36,"{""loyalty"": ""18%""}",157009,1,South America +2023-10-13,76147,5432,"[""Keyboard""]",285.33,{},191589,0,North America +2023-10-10,76148,7546,"[""Wireless Mouse"", ""Keyboard""]",1202.38,"{""loyalty"": ""26%""}",216887,0,Africa +2023-06-28,76149,6337,"[""Laptop"", ""Phone""]",1498.87,{},139805,0,North America +2024-02-08,76150,7754,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2332.04,{},272441,0,North America +2023-12-02,76151,51,"[""Laptop"", ""Keyboard""]",3723.93,"{""promo"": ""17%""}",5241,0,South America +2024-08-29,76152,7153,"[""Monitor"", ""Charger""]",1706.34,"{""seasonal"": ""30%""}",263239,1,North America +2024-09-30,76153,1098,"[""Wireless Mouse"", ""Laptop""]",1926.05,{},288091,0,Europe +2023-09-07,76154,2740,"[""Monitor"", ""Phone"", ""Headphones""]",4352.72,"{""promo"": ""21%""}",177755,0,South America +2024-12-17,76155,6056,"[""Wireless Mouse""]",2393.01,"{""loyalty"": ""21%""}",103416,0,Asia +2024-12-31,76156,6698,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3053.14,"{""promo"": ""10%""}",250758,0,Asia +2023-03-22,76157,8065,"[""Keyboard"", ""Charger"", ""Monitor""]",3279.23,"{""seasonal"": ""5%""}",257283,1,North America +2023-07-10,76158,4808,"[""Phone"", ""Keyboard"", ""Charger""]",1709.8,"{""loyalty"": ""23%""}",125101,0,Asia +2024-08-28,76159,6793,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4628.64,{},282782,0,Africa +2023-06-23,76160,5232,"[""Phone"", ""Tablet"", ""Monitor""]",3701.03,{},106475,0,South America +2023-11-05,76161,990,"[""Headphones"", ""Monitor"", ""Laptop""]",1879.29,"{""loyalty"": ""15%""}",173969,1,South America +2024-05-16,76162,4176,"[""Monitor"", ""Keyboard""]",3472.22,{},87484,0,Asia +2023-02-19,76163,3181,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2361.96,"{""seasonal"": ""15%""}",66445,1,North America +2023-11-04,76164,1393,"[""Laptop""]",4950.11,{},91855,0,North America +2024-08-26,76165,4863,"[""Wireless Mouse"", ""Tablet""]",2289.37,{},129226,1,North America +2023-02-15,76166,6330,"[""Headphones"", ""Wireless Mouse""]",4435.63,{},280009,1,North America +2024-10-20,76167,7232,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2282.79,{},81026,1,Asia +2023-07-21,76168,5179,"[""Keyboard"", ""Tablet""]",1481.3,"{""loyalty"": ""17%""}",250233,1,North America +2023-10-06,76169,2317,"[""Laptop"", ""Phone"", ""Tablet""]",4610.31,"{"""": ""20%""}",112421,0,Africa +2023-07-05,76170,7878,"[""Tablet"", ""Charger"", ""Headphones""]",1415.79,{},49014,0,Europe +2023-07-16,76171,575,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",180.43,{},153404,1,North America +2023-09-15,76172,6932,"[""Wireless Mouse"", ""Charger""]",3203.65,"{""seasonal"": ""28%""}",269363,0,Asia +2023-10-16,76173,7823,"[""Laptop"", ""Charger""]",3758.97,"{""promo"": ""8%""}",163207,1,South America +2024-01-09,76174,7839,"[""Keyboard"", ""Monitor"", ""Charger""]",1079.99,{},139208,0,Europe +2023-02-19,76175,473,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",412.36,{},92251,1,Africa +2023-12-06,76176,6495,"[""Monitor"", ""Keyboard"", ""Laptop""]",1789.47,{},172311,0,North America +2023-04-07,76177,8894,"[""Monitor""]",886.13,"{"""": ""13%""}",89189,1,North America +2024-12-18,76178,2342,"[""Laptop"", ""Tablet"", ""Charger""]",1155.53,{},174743,0,North America +2024-04-11,76179,3019,"[""Laptop"", ""Headphones"", ""Tablet""]",1906.96,"{""promo"": ""27%""}",65037,1,North America +2024-08-16,76180,2538,"[""Wireless Mouse""]",4847.53,{},128327,1,North America +2023-09-06,76181,5113,"[""Headphones"", ""Charger""]",4471.52,"{""promo"": ""5%""}",287178,0,Europe +2024-03-27,76182,8647,"[""Charger""]",3792.05,{},62445,1,South America +2024-05-20,76183,1933,"[""Charger""]",1240.53,"{""seasonal"": ""12%""}",156314,0,Europe +2024-04-20,76184,5814,"[""Headphones"", ""Monitor"", ""Keyboard""]",1204.5,"{"""": ""27%""}",260013,0,South America +2023-11-29,76185,3234,"[""Headphones"", ""Charger"", ""Keyboard""]",420.61,{},19284,0,South America +2023-05-16,76186,6293,"[""Laptop"", ""Keyboard"", ""Charger""]",65.82,{},67305,1,North America +2023-08-10,76187,4636,"[""Monitor"", ""Keyboard""]",3379.33,"{""promo"": ""16%""}",18582,1,North America +2023-02-03,76188,5710,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2320.26,{},50562,1,Africa +2023-07-23,76189,1675,"[""Charger"", ""Phone""]",4556.9,{},217896,1,Africa +2024-02-16,76190,8594,"[""Wireless Mouse"", ""Tablet""]",2071.92,"{""loyalty"": ""21%""}",224176,1,Asia +2023-10-12,76191,4773,"[""Headphones"", ""Keyboard"", ""Tablet""]",4574.49,{},42009,0,Asia +2023-02-15,76192,5177,"[""Phone""]",1576.38,"{""seasonal"": ""13%""}",160115,1,North America +2023-02-23,76193,5143,"[""Charger"", ""Laptop""]",1329.99,{},207810,0,Africa +2024-02-12,76194,2017,"[""Monitor""]",2043.45,"{""promo"": ""21%""}",251476,0,South America +2024-04-20,76195,921,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",557.63,{},6640,0,Europe +2023-08-08,76196,7533,"[""Laptop"", ""Tablet"", ""Charger""]",611.91,{},187848,1,Asia +2023-04-13,76197,2127,"[""Monitor"", ""Tablet""]",3030.69,{},52779,0,Asia +2024-04-14,76198,4154,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2403.63,{},206211,1,Asia +2023-10-17,76199,841,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",663.87,"{""promo"": ""8%""}",56091,0,North America +2024-10-27,76200,8230,"[""Laptop"", ""Phone"", ""Headphones""]",3872.93,"{"""": ""20%""}",82246,0,South America +2024-03-11,76201,7966,"[""Tablet""]",4382.4,{},154622,0,Europe +2024-06-16,76202,3731,"[""Keyboard"", ""Charger"", ""Tablet""]",2035.63,{},233343,1,South America +2024-12-17,76203,8136,"[""Tablet""]",2381.29,"{""loyalty"": ""10%""}",144568,1,North America +2023-12-29,76204,1332,"[""Phone""]",3379.27,"{""promo"": ""26%""}",155405,1,Asia +2023-08-22,76205,2483,"[""Headphones"", ""Keyboard"", ""Laptop""]",3610.98,"{""promo"": ""12%""}",33427,1,Asia +2024-07-06,76206,2809,"[""Wireless Mouse"", ""Phone""]",1483.55,{},90384,1,Europe +2023-11-20,76207,7205,"[""Monitor"", ""Tablet"", ""Charger""]",4614.0,{},146119,1,North America +2024-01-20,76208,4019,"[""Headphones""]",1337.19,{},24902,1,Europe +2023-07-02,76209,4352,"[""Monitor""]",2106.95,"{""seasonal"": ""24%""}",253484,1,Africa +2024-04-14,76210,4199,"[""Phone"", ""Laptop""]",4890.41,"{""loyalty"": ""9%""}",107281,1,Africa +2024-05-10,76211,4955,"[""Tablet"", ""Wireless Mouse""]",483.86,"{""loyalty"": ""5%""}",73560,1,Europe +2024-01-05,76212,1635,"[""Monitor"", ""Phone"", ""Headphones""]",650.45,"{""seasonal"": ""13%""}",15693,0,North America +2023-06-23,76213,49,"[""Wireless Mouse""]",2451.16,"{""seasonal"": ""9%""}",64140,0,Africa +2023-01-08,76214,6236,"[""Monitor"", ""Wireless Mouse""]",1324.54,"{""promo"": ""23%""}",7642,1,South America +2024-02-12,76215,5671,"[""Laptop"", ""Tablet"", ""Headphones""]",1227.15,"{""loyalty"": ""6%""}",242968,0,Africa +2024-04-18,76216,8641,"[""Tablet"", ""Monitor"", ""Phone""]",4163.07,"{"""": ""11%""}",274075,1,Africa +2023-05-06,76217,7211,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4786.52,"{""promo"": ""25%""}",18557,0,Africa +2023-03-15,76218,6132,"[""Monitor""]",4872.52,{},220561,0,Asia +2024-03-21,76219,7184,"[""Charger"", ""Wireless Mouse""]",1327.02,"{""promo"": ""18%""}",134015,1,Europe +2024-05-12,76220,4346,"[""Keyboard"", ""Monitor"", ""Tablet""]",4567.17,{},221239,1,Asia +2023-06-01,76221,6190,"[""Wireless Mouse""]",3802.03,"{"""": ""21%""}",228643,1,Africa +2023-09-02,76222,7101,"[""Tablet"", ""Charger""]",2925.14,"{""loyalty"": ""11%""}",228411,0,North America +2024-09-20,76223,7887,"[""Headphones"", ""Keyboard"", ""Monitor""]",4163.83,{},9977,0,South America +2023-06-13,76224,5955,"[""Phone"", ""Laptop""]",4575.81,{},226226,0,South America +2024-04-22,76225,9689,"[""Charger""]",2097.88,{},23021,1,South America +2024-06-07,76226,8203,"[""Wireless Mouse""]",3619.66,"{""loyalty"": ""7%""}",173347,0,North America +2024-07-27,76227,9180,"[""Keyboard""]",3437.92,"{"""": ""27%""}",277887,1,Asia +2023-02-20,76228,1757,"[""Phone"", ""Keyboard""]",1667.5,"{"""": ""12%""}",200703,0,Africa +2023-01-19,76229,7203,"[""Wireless Mouse""]",3443.6,"{""promo"": ""27%""}",173936,1,Asia +2023-10-15,76230,2033,"[""Keyboard"", ""Phone""]",2641.38,"{""seasonal"": ""9%""}",43386,1,Africa +2023-02-23,76231,450,"[""Wireless Mouse"", ""Headphones""]",1773.33,{},125626,1,North America +2023-03-08,76232,2200,"[""Monitor"", ""Keyboard"", ""Laptop""]",3772.63,{},95766,1,Europe +2023-12-05,76233,8487,"[""Wireless Mouse""]",535.1,"{""promo"": ""29%""}",271788,0,Europe +2023-01-24,76234,3380,"[""Headphones""]",1755.56,{},72985,0,Africa +2023-10-14,76235,3819,"[""Phone"", ""Tablet"", ""Monitor""]",3942.67,{},272406,1,Europe +2023-09-18,76236,4473,"[""Wireless Mouse"", ""Monitor""]",2537.35,"{""promo"": ""11%""}",21653,1,North America +2024-09-15,76237,1385,"[""Keyboard"", ""Tablet"", ""Phone""]",1449.13,{},40751,1,Asia +2024-10-30,76238,9849,"[""Monitor"", ""Headphones""]",4577.5,"{""loyalty"": ""24%""}",232805,0,Asia +2023-06-09,76239,5720,"[""Charger"", ""Laptop""]",1233.2,{},66805,1,North America +2023-09-04,76240,9719,"[""Keyboard""]",418.94,{},20510,1,North America +2023-04-28,76241,5457,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4121.98,{},68569,1,Africa +2023-05-05,76242,2287,"[""Charger"", ""Keyboard"", ""Tablet""]",3694.14,{},104445,1,Asia +2023-05-20,76243,2664,"[""Charger"", ""Wireless Mouse""]",2724.44,{},221336,1,Europe +2024-04-01,76244,4200,"[""Laptop"", ""Keyboard""]",4787.87,{},27825,1,Africa +2024-03-28,76245,4832,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4191.94,"{""seasonal"": ""12%""}",43717,0,Asia +2023-02-17,76246,8779,"[""Tablet"", ""Laptop"", ""Phone""]",2300.6,{},152640,1,Africa +2023-12-07,76247,4535,"[""Headphones"", ""Keyboard""]",3580.9,"{""promo"": ""19%""}",74363,0,Africa +2024-04-26,76248,1986,"[""Wireless Mouse"", ""Monitor""]",1365.25,{},277268,1,Africa +2024-09-05,76249,6843,"[""Keyboard"", ""Tablet"", ""Phone""]",4311.04,{},33791,0,Asia +2024-07-20,76250,6194,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2591.81,"{""seasonal"": ""11%""}",1825,0,Africa +2024-04-22,76251,4008,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",774.19,{},292250,1,North America +2023-12-05,76252,9468,"[""Phone"", ""Tablet"", ""Laptop""]",1155.63,{},164994,1,North America +2023-03-07,76253,4403,"[""Tablet"", ""Headphones"", ""Monitor""]",4797.56,{},268667,0,Europe +2024-09-04,76254,3180,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2145.49,{},194743,0,Africa +2024-09-09,76255,960,"[""Monitor"", ""Keyboard"", ""Tablet""]",1802.15,"{""loyalty"": ""10%""}",51917,1,Asia +2024-12-21,76256,2007,"[""Keyboard"", ""Headphones"", ""Monitor""]",3468.47,"{"""": ""13%""}",227812,1,Europe +2023-12-03,76257,8976,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",320.27,"{""seasonal"": ""19%""}",118089,1,Europe +2024-01-20,76258,2598,"[""Phone""]",3754.73,"{""promo"": ""15%""}",8344,0,Europe +2023-02-01,76259,9502,"[""Phone""]",4240.39,{},202565,0,Asia +2023-06-21,76260,9905,"[""Monitor"", ""Laptop"", ""Keyboard""]",4742.23,{},292977,1,North America +2023-09-28,76261,6886,"[""Monitor"", ""Keyboard""]",1396.52,{},11885,0,South America +2024-06-12,76262,3536,"[""Phone""]",2036.69,{},165712,1,Asia +2023-03-08,76263,7340,"[""Phone"", ""Laptop""]",818.71,{},281295,1,Africa +2023-12-02,76264,1206,"[""Charger""]",2279.52,{},50646,1,Europe +2023-02-06,76265,1286,"[""Charger"", ""Phone"", ""Laptop""]",150.0,{},79516,1,North America +2023-12-31,76266,6859,"[""Keyboard"", ""Charger"", ""Headphones""]",3316.75,{},272398,0,South America +2024-11-29,76267,4146,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2657.75,{},231347,1,Europe +2024-07-11,76268,9739,"[""Keyboard"", ""Laptop"", ""Tablet""]",4200.14,"{"""": ""25%""}",123113,0,North America +2023-11-20,76269,9171,"[""Wireless Mouse""]",294.86,{},297057,1,Africa +2023-10-24,76270,5948,"[""Tablet""]",681.78,{},113585,1,North America +2024-10-06,76271,4281,"[""Keyboard""]",797.26,{},299329,0,Africa +2023-05-19,76272,5223,"[""Tablet""]",3765.32,{},11774,1,Europe +2023-10-18,76273,5592,"[""Charger"", ""Phone""]",142.16,{},280275,0,Asia +2023-08-25,76274,7783,"[""Keyboard"", ""Monitor""]",2181.44,"{""loyalty"": ""8%""}",116885,0,Europe +2024-06-19,76275,7064,"[""Charger"", ""Keyboard""]",1999.18,{},112845,0,Asia +2024-01-24,76276,1406,"[""Wireless Mouse""]",1999.09,"{""loyalty"": ""26%""}",284425,1,Europe +2023-02-24,76277,7837,"[""Monitor"", ""Laptop""]",958.43,"{"""": ""25%""}",199888,0,South America +2023-08-02,76278,4222,"[""Charger"", ""Monitor"", ""Keyboard""]",4190.89,{},265243,1,Europe +2023-09-14,76279,6863,"[""Laptop"", ""Headphones""]",2464.45,{},39346,1,Africa +2023-05-20,76280,6549,"[""Monitor""]",3242.56,"{""seasonal"": ""30%""}",50326,0,South America +2024-10-29,76281,2571,"[""Laptop"", ""Monitor"", ""Charger""]",3811.86,"{""loyalty"": ""30%""}",127677,1,Europe +2024-04-15,76282,4313,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",788.9,{},152022,0,Asia +2023-02-13,76283,722,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3187.06,"{""promo"": ""15%""}",172462,1,North America +2023-04-11,76284,477,"[""Headphones""]",4623.89,{},175468,1,Asia +2024-11-17,76285,4292,"[""Headphones"", ""Wireless Mouse""]",1130.32,{},163176,1,South America +2023-12-16,76286,6083,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4791.53,"{""seasonal"": ""15%""}",178343,0,South America +2024-08-31,76287,3722,"[""Phone"", ""Monitor"", ""Keyboard""]",838.91,{},189995,1,South America +2023-07-05,76288,2038,"[""Wireless Mouse""]",649.38,"{""promo"": ""26%""}",263949,1,Asia +2024-09-10,76289,7427,"[""Headphones""]",2880.42,{},112319,0,South America +2024-02-29,76290,7001,"[""Charger""]",3765.38,"{""promo"": ""24%""}",114146,1,Africa +2024-04-18,76291,9014,"[""Charger""]",1035.8,"{"""": ""25%""}",67144,1,Asia +2023-05-29,76292,8968,"[""Charger"", ""Keyboard"", ""Laptop""]",4421.64,{},94404,0,North America +2024-01-29,76293,5619,"[""Charger""]",4181.82,"{""seasonal"": ""12%""}",83641,1,South America +2023-07-17,76294,4338,"[""Monitor""]",4522.82,"{"""": ""7%""}",22955,1,Africa +2024-02-19,76295,6082,"[""Headphones"", ""Tablet""]",4401.25,{},186331,0,Africa +2023-01-27,76296,569,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",719.49,{},106516,0,South America +2023-01-08,76297,1485,"[""Monitor"", ""Laptop""]",64.81,"{"""": ""23%""}",234162,1,Asia +2023-02-08,76298,8052,"[""Laptop"", ""Monitor""]",4387.78,"{"""": ""8%""}",197156,0,North America +2024-01-05,76299,8448,"[""Phone"", ""Tablet""]",3368.02,"{""seasonal"": ""29%""}",267721,0,Africa +2024-06-12,76300,7927,"[""Charger"", ""Keyboard"", ""Monitor""]",202.8,{},246131,0,Africa +2023-10-03,76301,7984,"[""Phone"", ""Charger"", ""Headphones""]",4632.14,"{""seasonal"": ""29%""}",4434,1,Africa +2023-11-24,76302,7278,"[""Tablet"", ""Headphones""]",2994.31,{},246989,0,South America +2023-05-05,76303,954,"[""Tablet"", ""Keyboard""]",4581.52,"{""seasonal"": ""19%""}",199005,0,South America +2023-06-29,76304,7751,"[""Charger""]",2803.51,"{""promo"": ""23%""}",157409,0,Africa +2024-03-18,76305,2466,"[""Headphones"", ""Phone"", ""Laptop""]",2229.71,{},298384,0,Europe +2023-11-11,76306,141,"[""Phone""]",1688.42,"{""seasonal"": ""14%""}",124474,1,South America +2024-10-12,76307,8198,"[""Headphones"", ""Monitor""]",1389.84,{},69417,1,Europe +2023-09-29,76308,315,"[""Charger"", ""Laptop""]",2945.93,{},272806,0,Asia +2024-03-26,76309,4851,"[""Monitor""]",202.78,"{""seasonal"": ""20%""}",104721,1,Asia +2024-07-15,76310,9343,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1046.93,{},242942,1,Europe +2023-10-03,76311,1283,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1717.09,{},10506,1,Asia +2024-08-29,76312,6621,"[""Tablet"", ""Headphones"", ""Phone""]",4200.05,{},293458,0,North America +2023-12-22,76313,5494,"[""Monitor""]",669.88,"{""loyalty"": ""7%""}",105162,0,North America +2024-05-21,76314,1980,"[""Headphones"", ""Tablet""]",2027.8,"{""promo"": ""21%""}",295303,1,Asia +2024-08-13,76315,3838,"[""Headphones""]",1777.17,"{"""": ""22%""}",94051,1,Europe +2023-07-14,76316,489,"[""Headphones""]",1881.18,{},267534,1,South America +2023-07-02,76317,5852,"[""Tablet"", ""Monitor""]",1128.76,{},76618,0,South America +2024-04-29,76318,1307,"[""Keyboard""]",429.44,{},283917,0,South America +2024-10-19,76319,8184,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3732.63,{},136423,0,Asia +2023-12-10,76320,1914,"[""Headphones"", ""Tablet"", ""Monitor""]",2749.7,"{"""": ""25%""}",210062,0,Europe +2024-03-14,76321,1274,"[""Monitor"", ""Phone"", ""Headphones""]",4626.82,"{""seasonal"": ""14%""}",32588,0,Europe +2023-10-26,76322,7599,"[""Laptop""]",1231.47,"{""seasonal"": ""21%""}",203084,1,Asia +2023-03-14,76323,3130,"[""Monitor"", ""Wireless Mouse""]",741.53,{},80032,0,Africa +2023-02-14,76324,9135,"[""Tablet""]",1049.18,{},291865,1,Europe +2023-04-13,76325,1639,"[""Charger"", ""Wireless Mouse""]",1361.78,"{"""": ""21%""}",126459,0,Asia +2023-08-15,76326,1249,"[""Keyboard"", ""Laptop"", ""Headphones""]",137.14,"{"""": ""17%""}",136831,1,Africa +2023-08-15,76327,8386,"[""Keyboard""]",1153.92,{},265477,0,Europe +2023-08-03,76328,7499,"[""Phone"", ""Keyboard""]",1026.11,{},257414,1,North America +2023-09-04,76329,9407,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4686.08,"{"""": ""22%""}",233281,1,South America +2023-03-21,76330,8260,"[""Laptop""]",2970.95,"{""loyalty"": ""5%""}",116068,1,Africa +2023-07-03,76331,6109,"[""Monitor""]",2973.85,{},90302,1,North America +2024-06-22,76332,320,"[""Headphones"", ""Wireless Mouse""]",3477.41,"{""promo"": ""9%""}",160947,1,Europe +2024-01-15,76333,1525,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2481.09,{},231080,1,Europe +2023-10-26,76334,1635,"[""Headphones"", ""Tablet""]",2400.47,"{""loyalty"": ""15%""}",55951,1,South America +2024-04-07,76335,7653,"[""Monitor"", ""Wireless Mouse""]",4560.72,{},120474,1,Asia +2023-07-03,76336,1828,"[""Wireless Mouse""]",3743.17,{},48858,1,Europe +2024-05-18,76337,8010,"[""Wireless Mouse"", ""Keyboard""]",973.58,"{""loyalty"": ""17%""}",215939,1,Europe +2024-04-23,76338,2020,"[""Keyboard"", ""Headphones""]",1101.25,"{"""": ""22%""}",277547,0,Africa +2023-11-26,76339,8645,"[""Charger"", ""Wireless Mouse""]",1958.19,{},218512,1,Africa +2024-07-07,76340,9100,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4515.59,"{""loyalty"": ""12%""}",284034,1,South America +2023-10-11,76341,475,"[""Phone"", ""Laptop""]",2162.0,{},240464,1,North America +2023-12-04,76342,5492,"[""Monitor""]",1274.11,{},266123,0,South America +2023-12-06,76343,2301,"[""Phone""]",3306.4,"{""promo"": ""26%""}",190645,1,Europe +2024-12-22,76344,2801,"[""Wireless Mouse""]",3425.35,"{"""": ""22%""}",232295,1,Africa +2023-02-23,76345,5300,"[""Keyboard"", ""Headphones"", ""Phone""]",884.29,"{""promo"": ""13%""}",275594,1,South America +2024-10-28,76346,9121,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1370.44,"{""loyalty"": ""20%""}",276910,0,Europe +2024-01-31,76347,2927,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",317.16,"{""promo"": ""13%""}",22485,0,North America +2023-12-01,76348,6710,"[""Tablet"", ""Keyboard""]",4785.73,{},191794,1,Asia +2024-11-03,76349,544,"[""Monitor"", ""Tablet"", ""Laptop""]",447.96,"{""seasonal"": ""28%""}",76163,0,Africa +2023-02-20,76350,6586,"[""Monitor"", ""Phone"", ""Keyboard""]",1363.76,"{"""": ""19%""}",41071,0,Europe +2023-04-08,76351,6518,"[""Charger""]",4524.5,"{""loyalty"": ""28%""}",228530,0,Africa +2024-06-29,76352,6199,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2518.38,"{""promo"": ""27%""}",91759,1,South America +2023-08-15,76353,3836,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3324.01,"{""promo"": ""28%""}",150436,1,North America +2024-11-23,76354,5517,"[""Tablet"", ""Keyboard"", ""Monitor""]",3396.98,"{""seasonal"": ""10%""}",50333,0,South America +2024-10-11,76355,8591,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4218.26,"{""seasonal"": ""27%""}",114085,1,South America +2023-08-12,76356,8815,"[""Monitor""]",1709.07,"{""seasonal"": ""5%""}",149662,0,North America +2024-10-01,76357,4463,"[""Monitor"", ""Charger"", ""Headphones""]",4410.72,"{""seasonal"": ""24%""}",8551,0,Asia +2023-04-20,76358,6482,"[""Charger""]",2915.74,{},190034,1,North America +2023-03-27,76359,9766,"[""Keyboard""]",3367.03,{},127392,0,Africa +2023-08-21,76360,4606,"[""Monitor"", ""Keyboard""]",751.04,"{""loyalty"": ""6%""}",275337,0,Asia +2023-11-13,76361,9288,"[""Tablet"", ""Headphones""]",3506.37,{},295210,0,North America +2023-01-14,76362,1946,"[""Keyboard"", ""Phone"", ""Headphones""]",1076.1,"{""seasonal"": ""20%""}",165579,0,North America +2024-12-27,76363,178,"[""Wireless Mouse"", ""Monitor""]",3321.33,"{""seasonal"": ""13%""}",262084,1,Africa +2023-01-04,76364,6099,"[""Laptop""]",4033.73,{},100192,1,North America +2024-09-22,76365,933,"[""Tablet"", ""Monitor""]",771.41,{},190727,0,South America +2024-07-09,76366,5999,"[""Charger""]",4116.6,"{""loyalty"": ""21%""}",52056,0,Africa +2023-10-24,76367,7967,"[""Laptop"", ""Headphones"", ""Keyboard""]",4870.52,{},55421,1,North America +2023-12-21,76368,7530,"[""Charger"", ""Keyboard""]",3859.31,{},64783,0,Asia +2024-07-07,76369,649,"[""Monitor"", ""Keyboard""]",1560.96,{},55639,1,Asia +2023-05-31,76370,4094,"[""Headphones"", ""Laptop""]",313.86,{},271486,0,Africa +2023-09-05,76371,1567,"[""Monitor""]",58.48,{},204124,0,Asia +2023-08-31,76372,7324,"[""Monitor""]",3280.75,{},14409,0,South America +2024-11-11,76373,1396,"[""Keyboard""]",1963.33,{},201743,0,South America +2024-09-09,76374,8000,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1240.0,"{""loyalty"": ""28%""}",87691,0,South America +2023-03-25,76375,7039,"[""Headphones"", ""Phone"", ""Monitor""]",3258.67,{},272408,1,Europe +2023-07-20,76376,2296,"[""Monitor"", ""Phone""]",4758.19,"{""loyalty"": ""30%""}",278983,1,South America +2024-02-25,76377,3157,"[""Laptop"", ""Headphones""]",4011.61,{},286728,1,Asia +2024-04-02,76378,2456,"[""Phone"", ""Laptop""]",982.32,{},241973,0,Africa +2023-12-30,76379,9908,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",865.59,"{""loyalty"": ""30%""}",160294,0,Europe +2024-03-06,76380,6816,"[""Keyboard"", ""Headphones"", ""Monitor""]",3321.61,{},95339,1,Europe +2024-10-08,76381,6334,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1584.3,{},183288,0,Asia +2023-03-03,76382,9661,"[""Wireless Mouse"", ""Tablet""]",1679.53,"{""loyalty"": ""29%""}",220657,0,Asia +2023-05-10,76383,347,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3647.69,{},186437,0,Asia +2023-07-25,76384,6466,"[""Charger""]",4898.44,"{""promo"": ""11%""}",275455,0,Europe +2023-07-21,76385,2113,"[""Wireless Mouse""]",461.47,"{"""": ""12%""}",22669,0,Africa +2023-03-09,76386,8691,"[""Charger""]",4474.64,"{""seasonal"": ""7%""}",298236,1,Africa +2023-03-27,76387,9100,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",229.15,{},297534,1,Africa +2024-07-12,76388,1954,"[""Tablet"", ""Headphones"", ""Monitor""]",1685.72,"{""loyalty"": ""9%""}",255656,1,North America +2024-12-29,76389,2853,"[""Tablet"", ""Headphones""]",1926.0,"{""loyalty"": ""30%""}",251184,1,North America +2023-09-13,76390,158,"[""Keyboard"", ""Wireless Mouse""]",4060.4,"{"""": ""13%""}",178262,1,Asia +2023-01-21,76391,6874,"[""Wireless Mouse""]",1755.84,"{""loyalty"": ""16%""}",255945,0,South America +2024-08-04,76392,1301,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1192.21,{},100301,1,Asia +2023-11-09,76393,5845,"[""Headphones"", ""Charger""]",4754.36,{},233482,1,Europe +2023-08-23,76394,3989,"[""Laptop"", ""Monitor""]",1547.73,{},175488,0,Europe +2024-06-18,76395,145,"[""Keyboard"", ""Tablet"", ""Monitor""]",4500.9,"{""seasonal"": ""17%""}",163880,0,Asia +2023-04-10,76396,6921,"[""Keyboard""]",1897.0,"{""loyalty"": ""14%""}",86446,1,Asia +2023-01-23,76397,5161,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4107.86,{},31064,0,Europe +2024-10-31,76398,4385,"[""Monitor""]",1161.47,"{"""": ""5%""}",156012,0,North America +2023-08-31,76399,2990,"[""Monitor"", ""Phone"", ""Tablet""]",1090.18,{},38951,1,Africa +2023-03-30,76400,6766,"[""Monitor"", ""Phone""]",1799.25,"{""promo"": ""21%""}",178432,1,Asia +2023-12-25,76401,9988,"[""Keyboard"", ""Headphones""]",4238.16,{},157845,0,Africa +2023-08-26,76402,6866,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2928.14,{},196855,1,South America +2024-02-09,76403,843,"[""Keyboard""]",3269.5,{},42605,1,Asia +2024-10-22,76404,565,"[""Keyboard"", ""Tablet"", ""Phone""]",1538.64,{},290975,0,Europe +2023-02-06,76405,1970,"[""Wireless Mouse""]",2808.82,"{""loyalty"": ""13%""}",9699,1,Europe +2024-05-24,76406,6441,"[""Wireless Mouse""]",384.06,{},31257,1,South America +2024-12-28,76407,5816,"[""Keyboard"", ""Headphones""]",3794.03,{},198542,0,Asia +2023-05-25,76408,5281,"[""Tablet"", ""Monitor"", ""Laptop""]",3690.56,{},229610,1,Africa +2023-11-09,76409,514,"[""Charger"", ""Wireless Mouse""]",206.78,"{"""": ""29%""}",82956,1,Asia +2023-01-01,76410,7964,"[""Laptop"", ""Phone"", ""Headphones""]",3010.43,{},108146,0,Asia +2023-09-28,76411,3949,"[""Charger"", ""Wireless Mouse""]",4054.27,{},185760,1,North America +2023-11-05,76412,395,"[""Phone""]",348.54,"{""loyalty"": ""22%""}",231443,1,Africa +2023-08-20,76413,7878,"[""Charger""]",2525.22,"{""loyalty"": ""10%""}",246709,0,Africa +2024-02-23,76414,2686,"[""Charger"", ""Phone"", ""Monitor""]",2401.11,"{""promo"": ""18%""}",187470,1,Europe +2024-11-08,76415,8749,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3993.39,{},6553,0,Asia +2024-06-30,76416,938,"[""Keyboard""]",1103.82,"{""loyalty"": ""15%""}",87301,1,North America +2023-05-12,76417,1081,"[""Charger"", ""Headphones""]",2248.32,"{""loyalty"": ""16%""}",280515,0,North America +2024-06-08,76418,5923,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2077.36,"{""seasonal"": ""17%""}",66423,0,Asia +2023-01-13,76419,5933,"[""Phone"", ""Tablet""]",712.01,"{""promo"": ""27%""}",139243,0,Asia +2024-11-21,76420,7114,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2755.56,{},292340,1,Europe +2024-01-23,76421,5792,"[""Wireless Mouse"", ""Keyboard""]",2043.88,"{"""": ""22%""}",251752,0,North America +2023-01-09,76422,8378,"[""Charger""]",4722.01,{},115861,1,Africa +2024-08-22,76423,5679,"[""Headphones"", ""Phone"", ""Monitor""]",1531.12,{},290814,0,South America +2023-06-11,76424,8905,"[""Monitor""]",570.08,"{""seasonal"": ""13%""}",83528,0,Asia +2024-08-16,76425,5333,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",974.64,"{""promo"": ""18%""}",51496,1,Africa +2024-07-09,76426,6873,"[""Wireless Mouse"", ""Tablet""]",2146.67,{},110810,1,South America +2024-01-14,76427,7330,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",172.74,{},173092,1,South America +2024-07-08,76428,2283,"[""Phone"", ""Tablet"", ""Charger""]",1834.69,{},200756,0,Africa +2024-11-21,76429,7739,"[""Phone"", ""Wireless Mouse""]",3652.81,"{""loyalty"": ""23%""}",72611,1,North America +2024-07-29,76430,5164,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3184.92,{},242340,0,South America +2024-02-20,76431,903,"[""Tablet"", ""Charger"", ""Keyboard""]",1789.86,{},82657,1,Europe +2024-04-07,76432,9957,"[""Phone"", ""Keyboard"", ""Charger""]",1132.88,"{""loyalty"": ""16%""}",49266,0,Africa +2024-05-22,76433,6438,"[""Phone"", ""Keyboard"", ""Headphones""]",2146.64,{},251424,0,South America +2024-07-12,76434,9326,"[""Phone""]",1839.25,"{""loyalty"": ""29%""}",123851,1,Asia +2023-06-23,76435,3219,"[""Phone"", ""Headphones""]",2890.41,"{""seasonal"": ""16%""}",100753,1,North America +2023-06-02,76436,2090,"[""Phone""]",4859.58,"{""seasonal"": ""11%""}",115307,0,North America +2024-06-22,76437,2722,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3584.34,{},261298,1,Africa +2024-12-22,76438,7464,"[""Charger"", ""Wireless Mouse""]",4545.84,{},250612,0,South America +2024-08-08,76439,9883,"[""Wireless Mouse""]",941.42,{},168488,0,Asia +2024-02-08,76440,3799,"[""Keyboard"", ""Monitor"", ""Phone""]",4290.26,"{""promo"": ""5%""}",90771,1,Asia +2024-02-16,76441,9063,"[""Keyboard"", ""Monitor""]",1297.55,"{""loyalty"": ""17%""}",233886,0,North America +2023-05-24,76442,235,"[""Keyboard"", ""Monitor""]",3720.65,{},81420,0,Europe +2024-03-06,76443,1445,"[""Laptop"", ""Wireless Mouse""]",4184.03,{},34703,0,Africa +2023-05-23,76444,5965,"[""Monitor"", ""Charger"", ""Laptop""]",3680.15,{},54392,0,North America +2023-05-26,76445,776,"[""Headphones"", ""Tablet"", ""Monitor""]",3915.82,"{""seasonal"": ""13%""}",142493,0,Europe +2023-09-13,76446,8848,"[""Keyboard"", ""Laptop""]",2283.6,"{""promo"": ""21%""}",279449,1,Europe +2023-12-26,76447,8823,"[""Tablet"", ""Charger""]",952.18,{},174989,0,Europe +2024-01-02,76448,3806,"[""Keyboard"", ""Charger"", ""Tablet""]",4137.03,"{""seasonal"": ""19%""}",289471,0,North America +2024-11-16,76449,3803,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3352.56,{},126809,0,North America +2023-03-20,76450,9756,"[""Phone"", ""Laptop""]",2530.04,{},89370,1,Africa +2024-11-08,76451,9066,"[""Charger""]",1463.06,{},182149,1,South America +2024-09-03,76452,6891,"[""Headphones"", ""Keyboard""]",4575.89,{},273383,1,Asia +2023-12-29,76453,9834,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3779.58,"{""promo"": ""21%""}",249830,1,South America +2023-09-20,76454,1528,"[""Laptop""]",3201.98,"{""promo"": ""13%""}",16416,1,North America +2024-12-02,76455,7462,"[""Tablet"", ""Phone""]",4047.24,"{""loyalty"": ""16%""}",278344,1,Europe +2024-01-24,76456,7556,"[""Tablet""]",152.05,{},218015,1,Europe +2024-01-26,76457,8573,"[""Tablet"", ""Charger""]",1062.22,"{""loyalty"": ""21%""}",296338,0,South America +2023-12-29,76458,3406,"[""Monitor"", ""Headphones""]",889.6,{},188599,0,Asia +2024-05-04,76459,9090,"[""Wireless Mouse"", ""Monitor""]",2001.06,{},106775,1,South America +2024-12-14,76460,5311,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2325.24,{},117907,0,Asia +2024-09-16,76461,361,"[""Keyboard""]",523.03,{},265517,0,Europe +2024-10-21,76462,8937,"[""Charger""]",4050.61,"{""seasonal"": ""28%""}",235075,0,Africa +2024-09-13,76463,6773,"[""Laptop"", ""Headphones"", ""Monitor""]",1796.47,{},92373,1,South America +2023-10-08,76464,7341,"[""Wireless Mouse""]",1632.0,{},73691,0,Asia +2024-05-31,76465,7823,"[""Keyboard"", ""Laptop"", ""Headphones""]",455.89,{},150644,0,Europe +2023-05-27,76466,6086,"[""Tablet"", ""Charger"", ""Headphones""]",1483.43,"{""seasonal"": ""17%""}",208858,0,South America +2023-05-25,76467,3428,"[""Keyboard"", ""Monitor"", ""Laptop""]",4862.65,{},257716,0,South America +2024-08-17,76468,7586,"[""Wireless Mouse"", ""Laptop""]",1575.3,{},27301,1,Africa +2023-08-22,76469,7117,"[""Keyboard""]",4441.69,"{""seasonal"": ""25%""}",216459,0,South America +2024-09-28,76470,7545,"[""Phone"", ""Tablet"", ""Headphones""]",4706.87,"{"""": ""30%""}",209231,0,North America +2024-08-14,76471,5568,"[""Tablet"", ""Headphones"", ""Charger""]",719.95,{},288603,0,Africa +2024-06-20,76472,9667,"[""Laptop"", ""Headphones""]",2143.17,{},274250,1,North America +2023-12-22,76473,5343,"[""Charger"", ""Phone"", ""Monitor""]",4163.6,{},297023,0,Africa +2023-07-12,76474,7172,"[""Wireless Mouse""]",3600.14,"{""loyalty"": ""8%""}",157552,0,Africa +2024-05-03,76475,1381,"[""Wireless Mouse"", ""Charger""]",1440.21,{},298024,1,South America +2023-11-12,76476,9289,"[""Monitor"", ""Laptop"", ""Headphones""]",3447.32,{},7757,0,North America +2024-02-01,76477,8785,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2805.65,"{"""": ""7%""}",195037,1,Europe +2024-11-09,76478,7964,"[""Laptop"", ""Tablet""]",91.61,{},296828,0,Africa +2024-11-24,76479,2036,"[""Wireless Mouse""]",2103.55,{},102329,0,Asia +2023-04-03,76480,3213,"[""Tablet""]",240.43,"{""promo"": ""8%""}",266261,0,Africa +2024-12-04,76481,4156,"[""Headphones"", ""Charger""]",957.36,"{""seasonal"": ""17%""}",25849,0,South America +2024-05-20,76482,838,"[""Tablet"", ""Phone"", ""Headphones""]",1595.19,{},9415,0,Asia +2023-09-17,76483,5945,"[""Keyboard"", ""Phone""]",4331.99,{},32733,0,Europe +2024-11-25,76484,8163,"[""Headphones"", ""Keyboard""]",2294.39,"{""loyalty"": ""9%""}",19222,0,North America +2024-06-09,76485,1681,"[""Headphones"", ""Wireless Mouse""]",2890.06,"{""loyalty"": ""26%""}",99343,0,Africa +2023-05-18,76486,1642,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",290.95,"{""promo"": ""6%""}",287276,0,Africa +2023-02-08,76487,7713,"[""Monitor""]",91.82,"{""seasonal"": ""22%""}",193941,1,North America +2024-01-06,76488,2367,"[""Monitor""]",1328.67,"{""seasonal"": ""28%""}",57310,1,North America +2023-02-04,76489,455,"[""Phone"", ""Monitor"", ""Keyboard""]",957.15,{},130132,1,Asia +2023-08-13,76490,8496,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4095.58,{},70994,1,Europe +2023-12-05,76491,8092,"[""Phone"", ""Headphones"", ""Laptop""]",531.55,{},8228,0,North America +2023-01-14,76492,2374,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4457.88,"{"""": ""13%""}",101326,1,Africa +2023-05-30,76493,5908,"[""Laptop""]",2113.72,"{""promo"": ""29%""}",140978,0,North America +2024-04-28,76494,864,"[""Monitor""]",182.35,{},181538,1,South America +2023-06-25,76495,2032,"[""Keyboard""]",1092.97,{},297713,1,Africa +2023-11-16,76496,9646,"[""Charger""]",168.95,"{""loyalty"": ""13%""}",30834,0,Africa +2024-06-30,76497,4335,"[""Monitor""]",1411.12,"{""loyalty"": ""7%""}",115090,0,South America +2023-10-20,76498,5088,"[""Headphones"", ""Charger""]",931.52,{},158702,0,Africa +2024-11-03,76499,3774,"[""Keyboard"", ""Wireless Mouse""]",1198.18,"{""promo"": ""6%""}",63853,0,Asia +2023-01-23,76500,7735,"[""Laptop"", ""Tablet""]",3544.12,"{""seasonal"": ""29%""}",180708,0,Asia +2024-02-07,76501,5069,"[""Monitor"", ""Wireless Mouse""]",1400.74,"{"""": ""19%""}",183844,1,Asia +2024-04-30,76502,9901,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3417.5,"{""loyalty"": ""27%""}",97563,0,Asia +2023-07-23,76503,8784,"[""Headphones"", ""Phone"", ""Charger""]",1682.33,"{""loyalty"": ""16%""}",260684,0,Europe +2024-03-29,76504,8995,"[""Laptop""]",4150.12,{},192585,1,Africa +2024-09-29,76505,5453,"[""Keyboard"", ""Phone""]",773.41,{},184490,0,Europe +2024-05-23,76506,4291,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",690.64,{},180698,0,South America +2024-08-07,76507,9960,"[""Headphones"", ""Laptop"", ""Keyboard""]",1516.54,{},218959,1,Europe +2024-08-30,76508,7460,"[""Keyboard""]",1212.88,"{""loyalty"": ""29%""}",48344,0,Europe +2023-12-22,76509,1551,"[""Keyboard""]",2436.32,"{""seasonal"": ""11%""}",227918,1,North America +2024-05-01,76510,635,"[""Headphones"", ""Monitor"", ""Laptop""]",1830.65,{},133461,0,South America +2023-04-14,76511,2836,"[""Laptop""]",3592.8,"{"""": ""21%""}",18605,0,Africa +2023-06-16,76512,9655,"[""Laptop"", ""Headphones""]",1425.02,"{""promo"": ""5%""}",13835,0,North America +2024-06-26,76513,8666,"[""Monitor"", ""Phone""]",1421.92,{},17164,1,South America +2024-12-18,76514,3150,"[""Wireless Mouse""]",2344.59,{},133822,0,Africa +2024-11-17,76515,6455,"[""Wireless Mouse"", ""Laptop""]",2274.33,{},242142,0,Asia +2024-05-30,76516,8104,"[""Phone"", ""Wireless Mouse""]",4504.63,"{""promo"": ""27%""}",19122,1,Africa +2023-09-04,76517,6806,"[""Keyboard""]",4538.38,"{"""": ""26%""}",210676,0,Asia +2024-11-23,76518,9032,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3820.23,"{""loyalty"": ""11%""}",95054,1,Asia +2024-04-22,76519,6313,"[""Phone"", ""Tablet""]",2247.0,{},43928,0,North America +2023-11-27,76520,5619,"[""Laptop""]",2729.76,{},214764,0,North America +2024-08-18,76521,9696,"[""Monitor"", ""Keyboard"", ""Phone""]",2200.84,{},213274,0,Europe +2024-12-29,76522,4065,"[""Monitor"", ""Headphones"", ""Charger""]",853.75,"{"""": ""21%""}",284179,0,Asia +2024-04-18,76523,2865,"[""Headphones"", ""Keyboard"", ""Tablet""]",4240.22,"{""promo"": ""10%""}",95940,0,North America +2023-09-17,76524,8519,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3588.48,"{""seasonal"": ""24%""}",1188,0,Asia +2024-10-18,76525,2193,"[""Laptop"", ""Headphones""]",2253.39,"{"""": ""7%""}",71204,0,Asia +2024-01-12,76526,579,"[""Wireless Mouse"", ""Tablet""]",806.25,"{""promo"": ""10%""}",232774,0,Europe +2024-09-22,76527,214,"[""Tablet"", ""Phone"", ""Headphones""]",3303.78,"{"""": ""11%""}",245132,0,North America +2023-09-01,76528,1887,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4865.27,"{""loyalty"": ""20%""}",151797,0,North America +2024-02-25,76529,8530,"[""Charger"", ""Keyboard""]",1193.45,"{""promo"": ""12%""}",172232,1,North America +2023-03-20,76530,3917,"[""Charger""]",2314.88,"{""loyalty"": ""20%""}",180036,1,Asia +2023-04-26,76531,5101,"[""Headphones""]",2352.1,{},24635,0,South America +2023-02-02,76532,8948,"[""Monitor"", ""Laptop"", ""Headphones""]",4474.91,"{""promo"": ""16%""}",296565,0,Europe +2023-07-17,76533,3064,"[""Wireless Mouse"", ""Headphones""]",4995.97,{},159121,1,North America +2024-07-10,76534,6342,"[""Phone"", ""Headphones"", ""Charger""]",2888.74,{},72843,0,South America +2023-06-02,76535,196,"[""Headphones""]",3648.14,"{""promo"": ""21%""}",235137,0,Europe +2024-10-16,76536,8126,"[""Charger"", ""Monitor"", ""Laptop""]",4360.01,"{""promo"": ""17%""}",42411,0,Africa +2024-07-26,76537,4866,"[""Wireless Mouse"", ""Monitor""]",3326.44,{},137162,0,South America +2024-04-09,76538,6238,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2761.49,"{"""": ""30%""}",296579,1,Europe +2024-07-03,76539,8930,"[""Tablet"", ""Charger""]",1857.26,{},23150,1,South America +2023-12-11,76540,1019,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4004.36,{},11238,1,Europe +2024-01-11,76541,3792,"[""Monitor"", ""Charger"", ""Headphones""]",3313.42,"{"""": ""29%""}",230030,0,Asia +2024-05-20,76542,7713,"[""Charger""]",1205.95,"{"""": ""5%""}",253348,1,Africa +2023-11-20,76543,2003,"[""Headphones"", ""Phone"", ""Charger""]",3200.36,"{""loyalty"": ""6%""}",123187,0,Europe +2024-05-11,76544,4088,"[""Monitor""]",254.33,"{""promo"": ""22%""}",54473,0,South America +2024-05-22,76545,6853,"[""Tablet""]",1299.62,{},205740,0,North America +2024-02-22,76546,3071,"[""Headphones""]",3989.99,"{""loyalty"": ""23%""}",254716,1,Europe +2024-08-21,76547,6703,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2784.73,"{"""": ""19%""}",57382,1,Asia +2024-06-24,76548,4648,"[""Monitor""]",893.22,{},259173,1,Europe +2024-04-16,76549,7614,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4947.72,"{"""": ""20%""}",218143,0,South America +2024-10-08,76550,336,"[""Charger"", ""Headphones""]",4481.3,{},21367,1,North America +2023-04-23,76551,1142,"[""Headphones"", ""Phone""]",2833.81,{},123008,0,Europe +2024-06-21,76552,7687,"[""Monitor"", ""Keyboard""]",1911.17,"{""seasonal"": ""12%""}",238719,1,North America +2023-08-17,76553,6821,"[""Charger""]",3961.9,"{""loyalty"": ""14%""}",72142,0,Asia +2024-12-18,76554,5435,"[""Charger"", ""Phone""]",4899.0,{},288984,1,Asia +2024-11-13,76555,5867,"[""Charger""]",2182.67,{},150575,1,Asia +2023-07-22,76556,3264,"[""Phone""]",1736.06,{},67831,0,Africa +2024-10-17,76557,678,"[""Laptop"", ""Phone""]",4277.91,{},21248,0,Asia +2024-10-08,76558,8292,"[""Laptop"", ""Headphones""]",4131.25,{},265530,0,Europe +2023-07-03,76559,8757,"[""Headphones""]",263.16,"{"""": ""15%""}",35218,1,North America +2023-10-17,76560,4536,"[""Wireless Mouse""]",3511.37,"{""promo"": ""7%""}",295962,1,Asia +2024-10-18,76561,4863,"[""Wireless Mouse""]",424.48,"{"""": ""22%""}",242009,1,Europe +2023-04-07,76562,3838,"[""Tablet"", ""Laptop""]",2882.9,"{"""": ""15%""}",122486,1,Africa +2023-12-12,76563,3932,"[""Tablet""]",2111.89,"{""promo"": ""11%""}",267601,1,South America +2023-10-25,76564,5679,"[""Phone""]",3964.81,"{""promo"": ""29%""}",296725,1,Asia +2023-08-12,76565,9910,"[""Wireless Mouse""]",2101.45,{},92598,1,South America +2024-08-24,76566,8638,"[""Phone""]",741.29,"{"""": ""13%""}",173360,1,South America +2024-12-29,76567,2220,"[""Phone"", ""Wireless Mouse""]",4693.95,{},251664,0,South America +2024-10-25,76568,8898,"[""Tablet"", ""Headphones""]",843.1,{},130006,1,South America +2024-08-12,76569,4983,"[""Monitor""]",4486.79,{},6024,0,North America +2023-09-02,76570,2789,"[""Wireless Mouse"", ""Charger""]",3466.87,{},174671,0,Europe +2023-05-13,76571,7609,"[""Charger"", ""Laptop"", ""Headphones""]",2384.95,"{""loyalty"": ""15%""}",113152,0,Asia +2023-09-11,76572,2868,"[""Keyboard""]",315.53,"{"""": ""15%""}",262352,0,North America +2023-04-22,76573,3100,"[""Monitor"", ""Phone""]",1593.41,{},35028,1,Europe +2024-06-01,76574,4184,"[""Charger""]",477.43,"{""promo"": ""24%""}",111523,0,Europe +2024-10-21,76575,904,"[""Charger"", ""Tablet""]",4231.79,"{""seasonal"": ""20%""}",150073,0,South America +2024-08-15,76576,7028,"[""Laptop""]",922.43,"{""seasonal"": ""6%""}",21615,0,South America +2024-02-28,76577,276,"[""Monitor"", ""Charger"", ""Headphones""]",743.5,{},160786,1,North America +2024-03-26,76578,7907,"[""Headphones"", ""Tablet"", ""Monitor""]",3725.1,{},292114,0,Africa +2023-01-23,76579,2983,"[""Tablet"", ""Headphones"", ""Laptop""]",2906.75,"{""seasonal"": ""20%""}",65341,0,Europe +2023-05-06,76580,4778,"[""Phone"", ""Monitor""]",297.17,{},140678,0,Africa +2024-07-11,76581,6320,"[""Headphones"", ""Charger""]",3745.71,"{"""": ""18%""}",120220,1,Europe +2023-06-22,76582,2243,"[""Charger""]",3058.81,{},161047,1,North America +2024-12-05,76583,2020,"[""Laptop""]",1882.28,{},200375,1,Asia +2023-10-28,76584,4218,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3316.28,{},179214,0,Europe +2024-07-15,76585,9445,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2560.85,{},13805,1,Africa +2024-04-19,76586,2175,"[""Charger"", ""Keyboard"", ""Monitor""]",2481.16,{},238347,1,Asia +2024-08-01,76587,3767,"[""Laptop"", ""Phone""]",3514.37,"{""promo"": ""11%""}",157468,1,Europe +2023-10-06,76588,5297,"[""Charger"", ""Phone"", ""Laptop""]",3048.39,"{"""": ""16%""}",92661,0,North America +2024-03-21,76589,5257,"[""Phone""]",970.9,{},142451,0,Europe +2023-05-04,76590,2777,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",973.9,"{""seasonal"": ""28%""}",133802,0,South America +2023-11-05,76591,3943,"[""Headphones"", ""Phone""]",4127.11,"{""loyalty"": ""28%""}",238025,0,Europe +2024-12-24,76592,3561,"[""Monitor""]",2841.13,"{""seasonal"": ""13%""}",98909,0,Africa +2023-03-26,76593,4416,"[""Laptop""]",1448.42,{},186014,1,Africa +2023-07-17,76594,4150,"[""Phone""]",2677.47,{},251402,0,North America +2024-08-25,76595,580,"[""Tablet"", ""Phone"", ""Keyboard""]",4616.96,"{""loyalty"": ""18%""}",75467,0,Africa +2024-06-17,76596,928,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1542.11,{},68252,1,Asia +2023-06-17,76597,9118,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4977.97,{},147596,0,North America +2023-10-03,76598,7475,"[""Keyboard"", ""Wireless Mouse""]",2821.61,"{""loyalty"": ""14%""}",249193,1,Asia +2024-01-28,76599,7936,"[""Headphones""]",4750.32,{},282400,0,North America +2024-09-15,76600,3512,"[""Keyboard""]",1370.86,"{"""": ""19%""}",179926,1,Africa +2023-06-08,76601,2980,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",384.59,{},104873,1,South America +2024-06-09,76602,8831,"[""Monitor"", ""Keyboard""]",2840.61,"{""loyalty"": ""7%""}",269329,0,Africa +2023-04-13,76603,4819,"[""Charger"", ""Laptop"", ""Headphones""]",4338.08,{},21920,0,North America +2024-10-30,76604,5956,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1744.15,"{"""": ""27%""}",19526,0,Asia +2023-06-15,76605,1316,"[""Laptop"", ""Keyboard""]",2450.98,"{"""": ""17%""}",190904,1,Africa +2023-12-04,76606,237,"[""Tablet"", ""Keyboard"", ""Phone""]",4840.6,"{""loyalty"": ""29%""}",77548,0,Asia +2024-03-13,76607,8655,"[""Headphones"", ""Laptop"", ""Monitor""]",2026.39,"{"""": ""8%""}",180138,0,South America +2024-01-17,76608,1697,"[""Wireless Mouse"", ""Monitor""]",4840.56,"{""loyalty"": ""16%""}",246120,0,North America +2024-12-17,76609,5100,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1171.36,{},186653,1,Africa +2023-05-15,76610,5765,"[""Tablet"", ""Phone"", ""Headphones""]",3621.59,{},72192,1,Asia +2024-02-09,76611,8254,"[""Wireless Mouse""]",569.52,{},180771,1,North America +2024-01-31,76612,8903,"[""Monitor""]",4982.08,"{""seasonal"": ""6%""}",74544,1,South America +2024-04-29,76613,8975,"[""Charger""]",958.25,{},18064,1,South America +2023-03-03,76614,2968,"[""Phone"", ""Monitor""]",2361.62,"{""loyalty"": ""21%""}",279330,0,Africa +2023-06-14,76615,8233,"[""Keyboard""]",2961.06,{},81969,1,Asia +2024-03-29,76616,4852,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4795.23,{},223789,0,North America +2023-04-26,76617,6786,"[""Laptop""]",1585.05,{},103873,0,Europe +2023-12-03,76618,7469,"[""Headphones"", ""Laptop"", ""Charger""]",1768.41,"{""promo"": ""28%""}",176764,0,Africa +2023-10-21,76619,139,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3892.08,{},175643,1,Europe +2023-07-25,76620,2412,"[""Tablet""]",3164.1,"{""seasonal"": ""22%""}",220895,0,Asia +2024-05-06,76621,3380,"[""Phone"", ""Keyboard"", ""Tablet""]",211.45,{},140075,0,Europe +2024-05-16,76622,4535,"[""Phone"", ""Headphones""]",1593.88,{},178045,1,Europe +2024-08-01,76623,9218,"[""Laptop"", ""Tablet"", ""Keyboard""]",3833.24,"{""promo"": ""12%""}",32545,0,South America +2023-10-31,76624,988,"[""Charger"", ""Phone"", ""Headphones""]",2572.19,{},224908,0,Europe +2024-11-15,76625,8691,"[""Monitor"", ""Tablet"", ""Charger""]",3713.78,"{""promo"": ""5%""}",142101,1,Africa +2024-06-23,76626,6210,"[""Phone"", ""Keyboard""]",2841.98,{},20169,0,Europe +2023-02-28,76627,8685,"[""Headphones"", ""Charger""]",4671.87,{},195501,0,Europe +2024-09-28,76628,9847,"[""Tablet"", ""Laptop""]",4433.55,{},10564,1,Asia +2023-10-25,76629,5154,"[""Phone""]",4452.12,{},16469,0,South America +2023-09-07,76630,1532,"[""Phone"", ""Tablet""]",3557.76,{},90001,0,South America +2023-04-03,76631,6567,"[""Phone"", ""Headphones""]",1273.79,"{""loyalty"": ""30%""}",214418,0,Africa +2023-08-04,76632,8551,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1454.36,{},186167,1,Asia +2023-02-11,76633,9951,"[""Headphones"", ""Keyboard""]",2908.27,{},95408,1,South America +2023-01-08,76634,5081,"[""Wireless Mouse"", ""Charger""]",52.21,{},229455,0,Africa +2023-04-07,76635,5848,"[""Tablet""]",738.66,{},78017,0,Asia +2024-12-06,76636,4770,"[""Headphones"", ""Charger""]",3006.08,{},211922,0,Europe +2024-07-01,76637,8997,"[""Laptop""]",1186.14,{},277425,1,Africa +2024-12-22,76638,4144,"[""Tablet""]",4427.88,"{""loyalty"": ""16%""}",52719,0,Europe +2024-05-09,76639,9000,"[""Charger""]",4530.73,{},220819,1,Europe +2024-08-11,76640,1489,"[""Charger"", ""Monitor""]",472.2,{},116931,1,South America +2024-03-05,76641,1739,"[""Headphones"", ""Monitor""]",4138.84,{},85403,0,North America +2024-05-04,76642,2217,"[""Phone""]",3657.53,{},25038,1,North America +2023-09-22,76643,7471,"[""Keyboard"", ""Tablet""]",2764.35,"{""loyalty"": ""29%""}",49899,1,South America +2023-04-07,76644,6341,"[""Phone"", ""Wireless Mouse""]",1281.98,"{""loyalty"": ""24%""}",102937,1,Africa +2024-01-15,76645,2974,"[""Keyboard"", ""Wireless Mouse""]",4827.74,{},209637,1,North America +2024-01-03,76646,3680,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3994.99,{},128021,0,Africa +2024-08-02,76647,3385,"[""Phone""]",4045.37,{},180169,1,Asia +2023-11-28,76648,3795,"[""Charger"", ""Laptop""]",4106.61,"{"""": ""9%""}",298477,0,Asia +2024-09-12,76649,4207,"[""Tablet"", ""Headphones""]",666.8,{},100181,1,Africa +2024-11-25,76650,3882,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",503.58,{},152116,1,South America +2023-10-06,76651,9069,"[""Wireless Mouse"", ""Laptop""]",632.33,{},74290,0,Europe +2024-08-24,76652,9686,"[""Keyboard"", ""Laptop""]",524.2,"{""loyalty"": ""17%""}",33735,0,Africa +2024-05-11,76653,3301,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3455.1,{},128550,0,South America +2024-02-13,76654,3235,"[""Monitor"", ""Phone"", ""Charger""]",1421.08,{},135105,1,South America +2024-12-05,76655,9148,"[""Tablet""]",359.23,{},42625,1,North America +2023-10-02,76656,8970,"[""Phone"", ""Monitor""]",2487.01,"{""seasonal"": ""19%""}",102646,0,North America +2023-08-17,76657,1332,"[""Tablet"", ""Monitor"", ""Headphones""]",1687.39,{},235662,1,North America +2023-11-28,76658,2747,"[""Laptop"", ""Headphones""]",2407.42,"{""promo"": ""9%""}",247522,1,North America +2024-12-16,76659,6544,"[""Tablet"", ""Monitor""]",4933.93,"{"""": ""27%""}",17259,0,South America +2024-01-07,76660,4622,"[""Phone"", ""Tablet"", ""Headphones""]",170.85,{},221171,1,Asia +2023-08-02,76661,7801,"[""Wireless Mouse"", ""Laptop""]",1209.2,{},274319,1,Europe +2023-01-11,76662,5538,"[""Headphones""]",2688.03,{},251540,0,Africa +2024-04-17,76663,7958,"[""Wireless Mouse"", ""Charger""]",1735.42,"{""loyalty"": ""28%""}",109001,0,South America +2024-03-05,76664,8891,"[""Laptop"", ""Phone""]",1906.21,{},94697,1,Africa +2024-04-21,76665,4749,"[""Tablet"", ""Phone""]",1115.03,"{""loyalty"": ""5%""}",237588,0,Europe +2024-05-21,76666,1667,"[""Charger"", ""Phone""]",2093.06,"{""seasonal"": ""27%""}",52583,0,Asia +2023-09-26,76667,9248,"[""Laptop""]",729.15,"{"""": ""27%""}",244766,0,Europe +2024-09-30,76668,5133,"[""Keyboard"", ""Headphones"", ""Monitor""]",2473.16,"{""loyalty"": ""14%""}",136692,0,Africa +2023-06-22,76669,1835,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2238.61,"{"""": ""27%""}",227056,1,North America +2024-01-23,76670,8957,"[""Charger""]",4621.34,"{"""": ""11%""}",211224,0,South America +2023-01-01,76671,7515,"[""Keyboard""]",2263.91,{},291740,0,Africa +2024-01-16,76672,3428,"[""Monitor"", ""Laptop""]",2130.53,{},88015,1,Europe +2023-04-16,76673,4803,"[""Phone""]",429.26,{},143344,1,Europe +2024-05-06,76674,297,"[""Monitor"", ""Tablet""]",3088.11,{},89797,1,North America +2024-12-14,76675,4421,"[""Wireless Mouse""]",4247.78,"{""promo"": ""17%""}",99310,1,Europe +2024-04-15,76676,3324,"[""Phone"", ""Charger"", ""Laptop""]",4643.42,"{""seasonal"": ""30%""}",67234,1,Europe +2024-02-21,76677,7692,"[""Monitor"", ""Tablet""]",443.52,"{""loyalty"": ""9%""}",178296,1,Africa +2024-09-03,76678,9196,"[""Tablet"", ""Laptop"", ""Monitor""]",2249.18,{},224976,1,Europe +2023-03-07,76679,2188,"[""Phone"", ""Keyboard"", ""Headphones""]",3204.46,{},53294,0,Africa +2023-02-01,76680,3358,"[""Tablet"", ""Laptop"", ""Headphones""]",2153.52,"{"""": ""21%""}",144735,1,Europe +2024-08-28,76681,1802,"[""Laptop"", ""Phone"", ""Keyboard""]",340.14,{},60520,1,Africa +2023-04-07,76682,3783,"[""Phone""]",4014.42,{},98268,0,South America +2024-02-05,76683,3186,"[""Charger"", ""Headphones"", ""Keyboard""]",2211.01,{},27564,1,South America +2024-01-23,76684,8967,"[""Monitor"", ""Laptop"", ""Headphones""]",991.52,{},70627,0,Africa +2024-12-04,76685,6454,"[""Monitor""]",770.99,"{""promo"": ""29%""}",270843,0,Asia +2024-07-08,76686,769,"[""Tablet"", ""Monitor"", ""Headphones""]",4338.79,{},201049,0,Europe +2023-04-09,76687,4553,"[""Charger"", ""Phone"", ""Headphones""]",431.52,"{""promo"": ""17%""}",29505,1,Europe +2023-06-19,76688,4044,"[""Tablet""]",3630.43,"{""loyalty"": ""28%""}",257179,1,North America +2024-11-04,76689,7957,"[""Keyboard""]",1057.9,{},218501,1,Europe +2024-09-18,76690,3976,"[""Keyboard"", ""Wireless Mouse""]",2147.88,{},73422,1,North America +2024-04-06,76691,3241,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3415.27,"{"""": ""23%""}",199795,0,South America +2023-03-17,76692,631,"[""Headphones"", ""Monitor""]",3034.91,{},218430,1,South America +2024-12-05,76693,3713,"[""Laptop""]",4925.89,{},223003,0,Africa +2023-07-03,76694,2151,"[""Phone"", ""Charger"", ""Keyboard""]",595.23,{},78813,0,Europe +2023-10-06,76695,8726,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4012.37,{},287145,1,South America +2024-06-03,76696,5963,"[""Monitor""]",2332.7,"{""loyalty"": ""30%""}",69072,0,North America +2023-11-23,76697,6311,"[""Wireless Mouse"", ""Charger""]",4878.98,{},186436,0,South America +2024-04-30,76698,646,"[""Wireless Mouse"", ""Keyboard""]",1417.29,{},194232,0,North America +2024-10-10,76699,6859,"[""Headphones""]",3487.05,"{""seasonal"": ""25%""}",294829,1,Europe +2023-07-13,76700,6725,"[""Tablet"", ""Keyboard""]",4111.97,"{""seasonal"": ""9%""}",169862,1,Europe +2023-06-19,76701,5219,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3318.37,"{""promo"": ""8%""}",280030,0,Africa +2024-04-16,76702,4112,"[""Tablet"", ""Charger"", ""Phone""]",2951.01,"{""loyalty"": ""8%""}",188278,1,Africa +2024-10-26,76703,6004,"[""Keyboard"", ""Charger""]",2773.97,"{""loyalty"": ""9%""}",100933,0,South America +2023-02-12,76704,7259,"[""Monitor"", ""Keyboard"", ""Charger""]",338.72,"{"""": ""24%""}",272389,0,Africa +2024-01-05,76705,1848,"[""Wireless Mouse"", ""Keyboard""]",4809.68,{},98764,1,North America +2023-03-04,76706,7608,"[""Wireless Mouse""]",2572.16,{},178626,0,Europe +2024-04-23,76707,2817,"[""Laptop""]",1776.11,{},184856,0,Europe +2023-02-11,76708,5322,"[""Laptop"", ""Phone"", ""Monitor""]",620.9,{},244655,0,Africa +2024-01-07,76709,771,"[""Headphones"", ""Charger"", ""Monitor""]",3499.76,"{""loyalty"": ""5%""}",291022,1,Asia +2023-03-03,76710,7159,"[""Charger""]",3058.73,"{""seasonal"": ""26%""}",15650,0,North America +2023-09-01,76711,4668,"[""Headphones"", ""Monitor""]",2766.13,{},220413,1,South America +2023-03-26,76712,2146,"[""Keyboard"", ""Laptop"", ""Phone""]",1769.91,{},193505,0,Asia +2023-12-28,76713,3293,"[""Headphones"", ""Charger""]",3124.17,{},26200,0,Europe +2024-05-22,76714,4518,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2325.02,"{"""": ""19%""}",262724,1,Asia +2023-08-04,76715,3565,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4370.92,{},107294,1,South America +2024-02-25,76716,2252,"[""Wireless Mouse"", ""Keyboard""]",3059.51,"{""seasonal"": ""27%""}",223780,0,North America +2024-08-16,76717,84,"[""Charger""]",1444.24,{},106307,1,Asia +2023-09-13,76718,1163,"[""Phone"", ""Laptop"", ""Charger""]",3420.91,"{""loyalty"": ""13%""}",208279,1,Europe +2023-02-23,76719,161,"[""Headphones""]",1409.89,"{""promo"": ""13%""}",204513,1,Africa +2023-10-02,76720,2022,"[""Laptop"", ""Headphones""]",890.46,"{""promo"": ""22%""}",212497,0,North America +2024-12-14,76721,157,"[""Monitor"", ""Tablet""]",2732.19,"{"""": ""19%""}",60011,1,North America +2024-09-04,76722,8164,"[""Headphones"", ""Phone"", ""Keyboard""]",4200.48,{},96676,0,Europe +2024-02-07,76723,5036,"[""Tablet"", ""Laptop""]",4839.99,{},272168,1,South America +2024-08-30,76724,8579,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",945.8,"{""seasonal"": ""18%""}",77452,1,Europe +2023-02-13,76725,803,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3777.54,{},191259,0,Asia +2024-06-30,76726,1144,"[""Monitor""]",4931.37,{},171237,0,South America +2023-06-27,76727,7702,"[""Charger"", ""Keyboard"", ""Laptop""]",3079.14,"{""promo"": ""5%""}",228644,0,Europe +2024-07-02,76728,483,"[""Tablet"", ""Monitor""]",570.9,{},150954,0,Asia +2024-07-09,76729,1796,"[""Laptop""]",4049.66,{},165970,1,Europe +2023-04-14,76730,5616,"[""Phone""]",657.11,{},289529,1,Asia +2023-10-29,76731,4385,"[""Monitor""]",377.13,{},295305,1,Asia +2023-03-02,76732,1291,"[""Wireless Mouse"", ""Charger""]",2528.31,"{""seasonal"": ""26%""}",217764,1,Africa +2023-06-21,76733,8277,"[""Monitor"", ""Phone""]",1953.38,"{""promo"": ""26%""}",282562,0,Africa +2024-12-08,76734,2664,"[""Charger""]",3448.94,{},71984,0,South America +2024-12-06,76735,6104,"[""Charger""]",729.92,"{""loyalty"": ""25%""}",187364,1,Asia +2023-04-01,76736,2874,"[""Laptop""]",1436.02,"{""loyalty"": ""28%""}",32274,1,North America +2023-04-07,76737,3043,"[""Monitor""]",3411.98,{},77270,0,North America +2024-10-23,76738,9226,"[""Keyboard"", ""Monitor""]",4703.71,{},185046,0,Africa +2023-03-31,76739,8536,"[""Tablet"", ""Laptop"", ""Monitor""]",1612.16,"{""promo"": ""19%""}",104657,0,South America +2024-10-25,76740,3668,"[""Phone"", ""Charger"", ""Laptop""]",1499.41,"{"""": ""15%""}",118513,1,Africa +2023-10-11,76741,1716,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1484.73,"{""loyalty"": ""16%""}",230367,1,Europe +2024-03-08,76742,2277,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2628.96,"{""promo"": ""7%""}",283638,0,Europe +2024-04-26,76743,5618,"[""Tablet"", ""Charger"", ""Phone""]",300.94,{},164830,1,Europe +2024-10-28,76744,7136,"[""Tablet""]",1181.73,{},224286,1,Africa +2024-09-03,76745,4342,"[""Phone""]",1013.89,{},77517,0,Europe +2023-05-12,76746,923,"[""Headphones""]",3485.64,"{"""": ""30%""}",147649,0,Africa +2024-12-23,76747,2502,"[""Wireless Mouse""]",2526.05,"{"""": ""29%""}",179080,1,Europe +2023-09-10,76748,2272,"[""Keyboard"", ""Tablet"", ""Headphones""]",2955.05,"{""promo"": ""18%""}",169139,1,South America +2023-07-05,76749,9730,"[""Laptop""]",3792.85,{},55038,1,South America +2023-11-18,76750,4855,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1644.09,"{""seasonal"": ""22%""}",250518,1,South America +2023-03-15,76751,6310,"[""Keyboard""]",2267.13,"{""seasonal"": ""28%""}",81883,0,Africa +2024-06-02,76752,3305,"[""Wireless Mouse"", ""Keyboard""]",3647.78,{},95852,1,North America +2024-01-16,76753,4235,"[""Tablet""]",4852.93,{},69049,1,Asia +2023-02-27,76754,7906,"[""Wireless Mouse""]",2952.67,{},68695,0,North America +2024-02-19,76755,7134,"[""Phone"", ""Charger"", ""Tablet""]",3913.6,{},147470,0,South America +2024-05-07,76756,2571,"[""Phone"", ""Wireless Mouse""]",521.7,{},232141,1,North America +2023-07-17,76757,5514,"[""Phone""]",1803.07,{},72101,1,North America +2024-08-12,76758,342,"[""Phone"", ""Monitor""]",308.3,"{""loyalty"": ""8%""}",153176,1,Africa +2023-07-11,76759,1245,"[""Charger""]",2752.38,{},26056,1,South America +2024-11-10,76760,5825,"[""Keyboard""]",1417.69,{},280034,0,South America +2024-12-01,76761,7863,"[""Headphones"", ""Charger""]",4145.01,"{""seasonal"": ""24%""}",230943,0,Asia +2024-07-06,76762,848,"[""Tablet"", ""Wireless Mouse""]",1834.32,{},274699,0,North America +2024-10-10,76763,8939,"[""Laptop"", ""Tablet"", ""Monitor""]",4382.31,{},290290,0,South America +2023-02-06,76764,2486,"[""Laptop"", ""Wireless Mouse""]",3786.73,"{""loyalty"": ""5%""}",220692,0,Asia +2023-06-23,76765,7471,"[""Laptop"", ""Headphones""]",844.9,{},209951,1,South America +2024-02-29,76766,5758,"[""Keyboard"", ""Laptop""]",2257.76,"{""seasonal"": ""28%""}",210515,0,Europe +2024-10-10,76767,4769,"[""Charger"", ""Keyboard""]",4508.59,"{""loyalty"": ""20%""}",169635,1,Europe +2023-08-25,76768,6270,"[""Headphones"", ""Laptop""]",1333.33,{},42441,0,Asia +2023-02-26,76769,3600,"[""Laptop""]",3364.81,"{"""": ""29%""}",75822,0,Asia +2023-02-10,76770,6777,"[""Keyboard"", ""Tablet"", ""Monitor""]",3265.56,"{""seasonal"": ""27%""}",239837,1,South America +2024-07-21,76771,4082,"[""Wireless Mouse"", ""Charger""]",283.77,{},211647,0,Europe +2024-02-18,76772,6555,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2912.46,"{""promo"": ""26%""}",92965,1,North America +2024-06-02,76773,1447,"[""Headphones"", ""Wireless Mouse""]",1513.51,{},32945,1,South America +2024-11-19,76774,2155,"[""Monitor"", ""Phone""]",4627.7,"{""promo"": ""14%""}",97560,0,North America +2024-09-29,76775,3059,"[""Headphones"", ""Charger"", ""Tablet""]",3734.72,"{"""": ""20%""}",155389,0,Africa +2023-05-12,76776,6206,"[""Headphones"", ""Phone""]",2677.35,"{"""": ""8%""}",99200,0,North America +2023-09-12,76777,9869,"[""Keyboard"", ""Charger"", ""Laptop""]",2895.73,{},107162,1,Asia +2023-04-16,76778,9066,"[""Phone""]",1384.27,"{"""": ""25%""}",13209,1,South America +2024-05-26,76779,7030,"[""Keyboard""]",2555.02,"{""seasonal"": ""11%""}",233614,1,Europe +2023-11-07,76780,6857,"[""Monitor""]",4304.14,{},110585,1,South America +2024-05-25,76781,5065,"[""Charger"", ""Laptop"", ""Headphones""]",3326.05,{},258527,1,South America +2024-12-09,76782,2045,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",883.04,{},241213,0,North America +2024-04-10,76783,8736,"[""Tablet"", ""Headphones""]",4336.62,"{""loyalty"": ""9%""}",178175,1,Europe +2023-11-19,76784,7697,"[""Laptop""]",838.95,{},85501,0,North America +2023-12-19,76785,3578,"[""Keyboard"", ""Laptop""]",552.06,"{""loyalty"": ""11%""}",291594,0,Europe +2024-01-10,76786,4953,"[""Headphones"", ""Monitor"", ""Keyboard""]",2104.83,"{""promo"": ""8%""}",235097,0,North America +2023-02-24,76787,3705,"[""Headphones""]",1789.88,{},127042,0,South America +2024-08-15,76788,9845,"[""Phone""]",3376.7,"{""seasonal"": ""8%""}",200160,0,South America +2023-02-06,76789,6702,"[""Monitor"", ""Wireless Mouse""]",1860.57,{},4031,0,Africa +2024-06-20,76790,115,"[""Phone"", ""Charger"", ""Headphones""]",2341.07,{},152095,1,Africa +2023-04-17,76791,6809,"[""Charger"", ""Headphones""]",3282.37,{},206816,0,North America +2024-12-06,76792,7098,"[""Laptop"", ""Tablet"", ""Keyboard""]",2568.8,"{"""": ""9%""}",169737,0,Europe +2024-11-30,76793,3471,"[""Tablet"", ""Headphones"", ""Charger""]",2244.01,"{"""": ""18%""}",152523,0,North America +2024-06-30,76794,5842,"[""Charger""]",718.23,"{""seasonal"": ""5%""}",77971,0,North America +2023-11-15,76795,4346,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",889.32,"{"""": ""7%""}",203268,1,North America +2024-07-10,76796,8915,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2381.7,{},62892,0,Asia +2023-09-29,76797,2551,"[""Charger"", ""Keyboard""]",3700.38,{},263355,0,Asia +2024-08-08,76798,4821,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1745.91,{},242117,1,South America +2024-01-17,76799,6211,"[""Monitor"", ""Laptop""]",644.53,"{""promo"": ""12%""}",252585,1,South America +2023-12-31,76800,2700,"[""Charger"", ""Headphones""]",175.76,{},180502,0,Europe +2023-07-11,76801,8766,"[""Laptop""]",4585.22,{},203700,1,North America +2024-06-16,76802,133,"[""Wireless Mouse"", ""Laptop""]",138.46,"{""seasonal"": ""28%""}",70764,0,Asia +2024-09-08,76803,487,"[""Headphones""]",4629.65,{},278353,1,North America +2024-08-23,76804,8266,"[""Tablet"", ""Headphones"", ""Laptop""]",4517.64,{},18131,1,North America +2023-12-04,76805,562,"[""Laptop"", ""Headphones"", ""Monitor""]",367.65,"{""loyalty"": ""8%""}",224927,0,North America +2024-10-17,76806,5366,"[""Wireless Mouse""]",3662.81,{},294201,0,Europe +2024-07-28,76807,9185,"[""Keyboard"", ""Phone""]",155.09,{},38719,1,South America +2023-06-29,76808,6245,"[""Laptop""]",4825.41,"{""loyalty"": ""17%""}",37880,0,Asia +2024-02-21,76809,2915,"[""Charger"", ""Wireless Mouse""]",458.23,{},212132,0,Africa +2023-10-29,76810,5696,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4306.78,"{""promo"": ""24%""}",276101,0,Asia +2024-10-06,76811,7236,"[""Tablet"", ""Keyboard"", ""Laptop""]",461.26,"{""loyalty"": ""17%""}",205414,0,North America +2023-08-03,76812,122,"[""Keyboard""]",1944.51,{},6913,0,South America +2023-07-16,76813,9824,"[""Laptop""]",2277.73,"{""seasonal"": ""19%""}",57735,1,Africa +2023-12-20,76814,1694,"[""Laptop""]",4428.1,"{""seasonal"": ""24%""}",192897,0,South America +2023-02-03,76815,3180,"[""Laptop""]",4473.5,{},192256,0,South America +2023-03-17,76816,2738,"[""Keyboard"", ""Charger""]",2910.27,{},251117,1,South America +2024-05-02,76817,9674,"[""Phone"", ""Keyboard""]",2195.73,{},72782,0,Asia +2023-09-13,76818,3965,"[""Laptop"", ""Wireless Mouse""]",4203.17,"{""seasonal"": ""29%""}",86492,0,South America +2024-10-20,76819,1628,"[""Phone""]",4489.85,{},116184,0,South America +2024-08-11,76820,1700,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4477.68,"{""promo"": ""20%""}",246844,0,Africa +2023-02-21,76821,8049,"[""Phone"", ""Charger""]",814.66,{},89875,1,South America +2023-11-24,76822,3124,"[""Wireless Mouse"", ""Tablet""]",4689.61,"{"""": ""16%""}",184762,1,South America +2024-12-23,76823,150,"[""Laptop"", ""Charger""]",4938.92,"{""loyalty"": ""7%""}",38650,1,Asia +2023-10-03,76824,4821,"[""Phone"", ""Wireless Mouse""]",2798.25,"{""seasonal"": ""20%""}",119665,0,North America +2023-09-24,76825,7471,"[""Phone"", ""Tablet""]",4265.64,{},142548,1,Africa +2024-03-27,76826,2305,"[""Phone"", ""Charger"", ""Laptop""]",3816.01,"{""promo"": ""16%""}",278593,1,Africa +2024-10-16,76827,6859,"[""Headphones"", ""Phone"", ""Keyboard""]",2920.16,{},264845,0,Africa +2023-06-12,76828,8341,"[""Keyboard"", ""Wireless Mouse""]",3115.42,"{""promo"": ""10%""}",149959,1,North America +2024-05-09,76829,3251,"[""Keyboard"", ""Tablet""]",2776.02,"{""loyalty"": ""17%""}",31268,1,Africa +2023-02-19,76830,2585,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2456.03,"{""loyalty"": ""6%""}",3403,1,South America +2023-08-18,76831,5714,"[""Phone"", ""Tablet""]",4557.3,"{""seasonal"": ""17%""}",91149,0,Africa +2023-06-24,76832,5092,"[""Keyboard"", ""Laptop""]",3403.68,"{"""": ""17%""}",220366,1,Asia +2023-12-30,76833,7147,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3712.26,"{""promo"": ""17%""}",217065,0,Asia +2024-04-13,76834,6603,"[""Charger"", ""Monitor""]",4699.32,"{""promo"": ""14%""}",273415,1,Europe +2023-02-16,76835,3739,"[""Charger""]",4807.61,"{"""": ""29%""}",277146,1,Africa +2023-07-06,76836,6138,"[""Wireless Mouse""]",2378.75,{},163157,1,Europe +2023-10-24,76837,5111,"[""Wireless Mouse""]",907.68,{},177907,1,North America +2023-10-02,76838,5828,"[""Laptop"", ""Tablet""]",974.5,{},278415,1,North America +2024-06-18,76839,3794,"[""Keyboard"", ""Phone"", ""Headphones""]",4186.79,{},222827,0,North America +2024-03-26,76840,6677,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2713.26,"{""loyalty"": ""17%""}",110378,1,South America +2024-03-09,76841,290,"[""Monitor"", ""Wireless Mouse""]",4623.37,{},208423,0,North America +2023-12-27,76842,937,"[""Headphones"", ""Monitor"", ""Tablet""]",1420.33,"{"""": ""18%""}",297085,1,North America +2024-06-18,76843,2562,"[""Laptop"", ""Phone""]",517.72,"{""seasonal"": ""24%""}",293186,1,Africa +2024-11-30,76844,8813,"[""Keyboard""]",1595.07,{},46792,0,Africa +2023-07-14,76845,9037,"[""Headphones"", ""Laptop"", ""Tablet""]",129.33,{},2585,0,North America +2023-09-12,76846,6398,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3487.63,{},210926,0,Africa +2023-11-29,76847,2292,"[""Monitor"", ""Phone""]",4160.27,"{""loyalty"": ""24%""}",77672,0,Africa +2023-06-11,76848,6448,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2796.75,"{""promo"": ""16%""}",294833,0,North America +2023-08-09,76849,8382,"[""Wireless Mouse""]",4457.49,"{""loyalty"": ""20%""}",23452,0,Asia +2024-03-12,76850,6909,"[""Laptop""]",3752.12,{},166802,1,North America +2023-01-16,76851,5647,"[""Keyboard"", ""Headphones"", ""Phone""]",2270.29,{},166500,0,North America +2023-05-26,76852,183,"[""Charger"", ""Wireless Mouse""]",2268.22,"{""loyalty"": ""9%""}",134945,0,Asia +2024-08-03,76853,1873,"[""Phone""]",4590.74,{},19224,0,Africa +2024-04-17,76854,6974,"[""Keyboard"", ""Charger""]",2129.59,{},232538,1,Africa +2024-10-29,76855,5059,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3586.59,"{""promo"": ""16%""}",276381,1,Europe +2023-03-06,76856,7648,"[""Keyboard""]",2068.38,{},11025,0,Africa +2023-09-06,76857,4246,"[""Wireless Mouse""]",1142.51,"{""loyalty"": ""11%""}",275165,0,South America +2024-10-22,76858,9267,"[""Monitor""]",874.31,{},110552,0,South America +2024-03-25,76859,1907,"[""Monitor"", ""Headphones"", ""Tablet""]",3108.37,"{""loyalty"": ""18%""}",147487,1,Africa +2023-10-12,76860,2393,"[""Wireless Mouse""]",4002.82,"{""loyalty"": ""15%""}",159841,0,Africa +2024-03-04,76861,3845,"[""Headphones""]",3127.44,"{""loyalty"": ""26%""}",129003,0,North America +2024-12-13,76862,7243,"[""Keyboard""]",3101.65,{},276277,0,Africa +2023-10-28,76863,3108,"[""Keyboard""]",3375.04,{},142158,1,North America +2023-11-04,76864,8388,"[""Monitor""]",3304.17,"{""loyalty"": ""29%""}",251636,0,Europe +2023-01-30,76865,5117,"[""Monitor"", ""Charger"", ""Headphones""]",249.84,"{""loyalty"": ""14%""}",245748,0,Africa +2024-12-27,76866,8907,"[""Wireless Mouse""]",86.08,"{"""": ""14%""}",182949,0,Africa +2024-12-08,76867,9413,"[""Tablet"", ""Headphones"", ""Laptop""]",2449.56,"{""loyalty"": ""24%""}",86319,0,South America +2023-05-31,76868,6962,"[""Monitor""]",2817.67,"{""promo"": ""8%""}",12191,0,Africa +2024-03-05,76869,8420,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1951.26,"{""loyalty"": ""14%""}",223066,0,Africa +2024-12-03,76870,7735,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",104.28,{},2122,0,Africa +2023-06-13,76871,7489,"[""Charger"", ""Headphones""]",2463.64,"{"""": ""30%""}",166944,1,Europe +2023-04-20,76872,2992,"[""Monitor""]",4699.78,"{""seasonal"": ""7%""}",44566,0,Europe +2024-09-11,76873,1287,"[""Laptop"", ""Keyboard""]",821.4,{},247137,0,South America +2024-07-20,76874,3391,"[""Keyboard""]",4337.39,"{""promo"": ""17%""}",113572,1,North America +2023-07-22,76875,2319,"[""Charger"", ""Tablet""]",2273.39,{},270766,1,South America +2023-12-03,76876,9246,"[""Monitor"", ""Keyboard"", ""Charger""]",1596.1,"{""loyalty"": ""24%""}",183577,0,South America +2023-02-27,76877,3814,"[""Laptop""]",3244.92,{},11854,1,Africa +2024-06-09,76878,4430,"[""Monitor""]",2708.92,"{""loyalty"": ""13%""}",13958,0,Africa +2023-11-18,76879,128,"[""Monitor"", ""Laptop""]",132.7,{},53763,1,South America +2024-02-16,76880,7111,"[""Keyboard"", ""Tablet"", ""Charger""]",2022.6,"{""promo"": ""27%""}",12980,1,Asia +2024-11-30,76881,4060,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4271.38,{},101963,0,Africa +2023-03-26,76882,3996,"[""Charger""]",537.92,"{""seasonal"": ""29%""}",252791,0,South America +2023-09-10,76883,4345,"[""Monitor"", ""Keyboard"", ""Laptop""]",611.95,{},40268,1,Asia +2024-04-21,76884,9247,"[""Charger"", ""Laptop""]",2227.26,"{""loyalty"": ""26%""}",182282,0,South America +2024-04-08,76885,1939,"[""Laptop"", ""Tablet"", ""Keyboard""]",718.8,{},57865,0,Africa +2024-01-28,76886,3104,"[""Keyboard"", ""Phone""]",4085.9,{},230550,0,Africa +2023-01-12,76887,5198,"[""Wireless Mouse"", ""Phone""]",3927.86,"{"""": ""7%""}",183819,0,North America +2023-04-20,76888,1396,"[""Keyboard""]",4904.46,"{""seasonal"": ""28%""}",26351,0,South America +2023-12-05,76889,1603,"[""Charger""]",1472.85,{},209574,0,Europe +2023-03-23,76890,9472,"[""Charger"", ""Tablet"", ""Phone""]",1169.71,{},83294,0,Europe +2023-06-25,76891,4456,"[""Keyboard"", ""Phone""]",3222.86,{},117316,0,Africa +2023-09-29,76892,3166,"[""Monitor"", ""Charger"", ""Laptop""]",2673.31,{},52411,0,Asia +2023-12-13,76893,3055,"[""Keyboard"", ""Headphones""]",2877.63,{},134964,1,Europe +2024-10-26,76894,275,"[""Laptop"", ""Charger""]",3701.13,{},55533,1,Africa +2024-06-12,76895,4349,"[""Keyboard""]",946.21,"{"""": ""24%""}",132185,1,Europe +2023-06-26,76896,1931,"[""Phone""]",2784.48,"{""seasonal"": ""15%""}",95780,0,Asia +2024-07-16,76897,3977,"[""Headphones""]",4448.67,"{"""": ""18%""}",33479,1,Europe +2024-03-08,76898,5421,"[""Phone"", ""Wireless Mouse""]",221.95,"{""promo"": ""7%""}",63455,1,South America +2024-12-12,76899,7982,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2416.99,{},4302,0,Africa +2023-06-09,76900,8745,"[""Monitor""]",1600.63,"{""loyalty"": ""22%""}",14105,0,Asia +2024-11-04,76901,8710,"[""Monitor""]",2401.8,{},93742,1,Asia +2024-04-29,76902,8988,"[""Keyboard"", ""Tablet""]",4940.43,"{""promo"": ""22%""}",62256,1,North America +2023-09-20,76903,9968,"[""Laptop"", ""Keyboard""]",920.43,{},84708,1,Asia +2023-04-30,76904,946,"[""Tablet"", ""Phone""]",4954.08,"{""seasonal"": ""6%""}",30644,1,South America +2024-12-29,76905,7877,"[""Laptop""]",4506.51,{},210857,0,Africa +2023-09-17,76906,4021,"[""Headphones""]",324.98,{},227255,0,Asia +2024-01-14,76907,7918,"[""Keyboard""]",1238.33,{},53663,1,Asia +2024-04-26,76908,8856,"[""Laptop"", ""Phone""]",1066.27,"{""promo"": ""18%""}",150784,1,South America +2024-04-14,76909,3547,"[""Tablet"", ""Laptop"", ""Monitor""]",4065.36,{},24047,0,Africa +2023-06-04,76910,1637,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4027.13,"{""loyalty"": ""14%""}",88021,0,Europe +2023-08-31,76911,8814,"[""Monitor""]",4060.24,"{"""": ""18%""}",172960,0,Africa +2023-06-03,76912,5851,"[""Laptop"", ""Charger"", ""Tablet""]",1404.79,{},263815,1,Africa +2024-03-25,76913,1341,"[""Tablet"", ""Keyboard""]",559.16,"{"""": ""18%""}",4336,0,Africa +2024-06-02,76914,1754,"[""Charger""]",1088.36,"{""loyalty"": ""21%""}",52246,1,Asia +2024-05-10,76915,9740,"[""Wireless Mouse""]",917.2,{},137021,0,North America +2023-07-09,76916,1759,"[""Headphones"", ""Phone""]",337.21,"{"""": ""21%""}",43915,0,Europe +2024-05-15,76917,3952,"[""Laptop"", ""Wireless Mouse""]",3230.42,"{"""": ""21%""}",14056,1,Asia +2023-08-22,76918,8550,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1609.5,{},148242,1,Europe +2024-03-15,76919,7772,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2420.58,{},148701,0,South America +2023-03-06,76920,1237,"[""Headphones"", ""Tablet""]",2769.92,"{""seasonal"": ""14%""}",182945,0,Africa +2024-05-30,76921,644,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1017.77,{},219033,0,South America +2023-11-23,76922,4835,"[""Keyboard""]",1727.41,"{""promo"": ""18%""}",264198,0,South America +2023-10-16,76923,7669,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",866.09,"{"""": ""28%""}",220255,1,Africa +2023-01-22,76924,823,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4045.39,{},34012,1,South America +2024-11-23,76925,9033,"[""Tablet""]",482.3,{},93806,0,South America +2024-06-23,76926,2280,"[""Charger""]",3956.93,"{""loyalty"": ""28%""}",255862,0,South America +2024-07-05,76927,3766,"[""Monitor"", ""Headphones""]",469.17,"{""seasonal"": ""25%""}",45878,1,Europe +2023-10-21,76928,9265,"[""Tablet""]",2526.15,"{""promo"": ""21%""}",165973,1,North America +2024-09-06,76929,3196,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3725.04,"{""loyalty"": ""23%""}",61592,1,Asia +2023-10-27,76930,3277,"[""Monitor"", ""Wireless Mouse""]",1912.27,"{""promo"": ""29%""}",35899,1,North America +2023-06-03,76931,5656,"[""Tablet"", ""Charger""]",4567.27,{},251201,1,Africa +2023-10-09,76932,7006,"[""Phone""]",4795.88,{},93844,1,North America +2024-08-19,76933,4862,"[""Phone""]",4762.22,{},135208,0,Africa +2024-09-20,76934,6711,"[""Keyboard""]",3600.42,"{""seasonal"": ""19%""}",213239,1,South America +2024-07-15,76935,4832,"[""Keyboard"", ""Laptop"", ""Tablet""]",2236.37,"{"""": ""9%""}",26555,1,Europe +2023-12-22,76936,9513,"[""Wireless Mouse""]",3101.37,{},197803,0,Asia +2024-05-28,76937,1924,"[""Laptop"", ""Monitor""]",4548.29,{},67475,0,Africa +2023-10-12,76938,2429,"[""Phone""]",4275.87,"{""seasonal"": ""22%""}",127011,1,Africa +2023-06-05,76939,6607,"[""Phone"", ""Monitor""]",1031.88,{},95303,1,North America +2023-11-18,76940,3700,"[""Phone"", ""Tablet"", ""Headphones""]",1271.37,"{""promo"": ""12%""}",217598,1,North America +2023-01-09,76941,6027,"[""Wireless Mouse""]",1423.54,{},53722,0,Africa +2024-03-04,76942,9186,"[""Tablet"", ""Laptop"", ""Keyboard""]",60.96,"{""loyalty"": ""30%""}",88601,1,Europe +2023-08-12,76943,774,"[""Keyboard"", ""Headphones"", ""Monitor""]",1721.21,"{""promo"": ""24%""}",159923,0,Africa +2023-11-25,76944,2600,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4268.37,"{""seasonal"": ""9%""}",2935,0,South America +2023-09-23,76945,5184,"[""Tablet""]",3888.28,"{""promo"": ""23%""}",176216,1,Africa +2023-05-30,76946,792,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",973.65,"{""promo"": ""30%""}",22769,0,Asia +2024-01-01,76947,3175,"[""Phone""]",190.26,"{""promo"": ""13%""}",56886,0,South America +2024-03-23,76948,2982,"[""Wireless Mouse"", ""Charger""]",3364.48,{},44975,1,South America +2023-02-23,76949,712,"[""Monitor"", ""Phone"", ""Laptop""]",2958.95,"{"""": ""28%""}",133458,1,Europe +2024-05-10,76950,9448,"[""Charger""]",3325.37,{},295522,0,South America +2023-01-11,76951,7334,"[""Keyboard"", ""Phone""]",4126.36,{},157844,0,Europe +2023-09-12,76952,4882,"[""Wireless Mouse"", ""Phone""]",1833.36,"{""promo"": ""24%""}",92992,1,North America +2024-05-12,76953,380,"[""Laptop"", ""Monitor"", ""Charger""]",4890.51,{},156253,1,Asia +2024-11-17,76954,8098,"[""Charger"", ""Phone""]",4670.83,{},31326,0,North America +2023-11-16,76955,2039,"[""Laptop"", ""Charger"", ""Keyboard""]",666.62,"{""loyalty"": ""14%""}",6732,1,Europe +2023-09-28,76956,7756,"[""Phone""]",2458.05,"{""loyalty"": ""26%""}",141749,0,Europe +2024-06-19,76957,4934,"[""Monitor""]",214.41,{},149220,1,Asia +2024-10-07,76958,564,"[""Laptop""]",2120.53,"{""seasonal"": ""24%""}",276146,0,North America +2023-06-17,76959,6476,"[""Phone""]",250.71,"{""seasonal"": ""19%""}",286386,0,Europe +2024-03-19,76960,6984,"[""Keyboard"", ""Monitor"", ""Phone""]",2232.25,"{""loyalty"": ""30%""}",54511,1,South America +2024-06-16,76961,4788,"[""Charger""]",2177.12,{},23433,1,South America +2023-12-03,76962,6075,"[""Headphones"", ""Laptop""]",3223.91,"{"""": ""16%""}",174718,1,North America +2023-11-19,76963,7507,"[""Wireless Mouse""]",1420.13,"{""promo"": ""17%""}",117536,1,Europe +2024-10-02,76964,2095,"[""Tablet"", ""Wireless Mouse""]",2858.67,{},10401,1,Africa +2024-11-10,76965,3279,"[""Headphones""]",4512.12,{},78589,1,North America +2023-08-27,76966,6567,"[""Headphones""]",3514.62,{},195421,0,Asia +2024-01-06,76967,7549,"[""Wireless Mouse""]",3699.63,{},16901,1,South America +2024-06-19,76968,3176,"[""Laptop""]",2841.58,{},245564,0,South America +2024-07-30,76969,793,"[""Wireless Mouse"", ""Monitor""]",3278.49,"{""seasonal"": ""24%""}",277370,0,Europe +2023-04-28,76970,6864,"[""Charger"", ""Wireless Mouse""]",1885.83,{},105136,1,Africa +2024-03-01,76971,8647,"[""Laptop"", ""Keyboard"", ""Charger""]",2356.5,"{""loyalty"": ""25%""}",57536,0,North America +2023-02-28,76972,6151,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4247.15,{},39379,0,Asia +2024-04-15,76973,7979,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3002.9,{},48528,0,Asia +2023-11-06,76974,9581,"[""Charger""]",358.17,{},117681,0,South America +2023-12-20,76975,7613,"[""Charger"", ""Phone""]",2464.85,"{""promo"": ""17%""}",88411,0,Europe +2024-05-20,76976,4109,"[""Phone"", ""Headphones""]",4820.76,"{""loyalty"": ""6%""}",146519,1,Europe +2023-02-01,76977,5425,"[""Wireless Mouse"", ""Tablet""]",751.27,"{""seasonal"": ""29%""}",87939,1,North America +2024-07-23,76978,5237,"[""Laptop"", ""Wireless Mouse""]",3737.55,"{""promo"": ""23%""}",196684,0,South America +2024-10-19,76979,5458,"[""Keyboard"", ""Headphones""]",2539.24,{},28314,1,Asia +2024-07-06,76980,9742,"[""Phone""]",1871.7,{},229303,0,Africa +2023-12-12,76981,4664,"[""Headphones"", ""Charger"", ""Monitor""]",2085.49,{},154230,0,South America +2023-01-06,76982,9881,"[""Headphones""]",852.69,{},271423,0,Asia +2024-02-08,76983,4078,"[""Laptop"", ""Headphones"", ""Charger""]",712.02,{},279561,1,Europe +2023-03-16,76984,9997,"[""Monitor""]",3769.12,{},250952,0,South America +2024-01-01,76985,7222,"[""Headphones""]",3664.35,{},14413,1,Europe +2023-10-28,76986,2375,"[""Tablet""]",4278.45,"{""seasonal"": ""9%""}",101764,1,South America +2024-07-15,76987,9868,"[""Tablet""]",1667.21,{},22268,0,Asia +2023-06-08,76988,9771,"[""Wireless Mouse"", ""Headphones""]",1289.56,"{""promo"": ""26%""}",203520,0,North America +2024-12-16,76989,8932,"[""Laptop""]",3339.58,{},293757,0,South America +2024-07-20,76990,1262,"[""Headphones"", ""Monitor"", ""Tablet""]",1339.22,{},221549,1,South America +2024-02-08,76991,4295,"[""Phone"", ""Tablet""]",4434.19,{},61833,1,Africa +2024-04-09,76992,1050,"[""Keyboard"", ""Tablet""]",907.11,"{""seasonal"": ""30%""}",222850,0,Europe +2023-12-07,76993,8898,"[""Headphones"", ""Charger""]",3247.35,{},117398,1,Africa +2024-02-21,76994,987,"[""Tablet"", ""Charger"", ""Phone""]",948.75,{},238937,1,Europe +2023-05-30,76995,2928,"[""Charger"", ""Phone"", ""Keyboard""]",3371.02,"{"""": ""8%""}",22510,0,Asia +2024-08-30,76996,3654,"[""Headphones""]",2136.17,{},73755,0,South America +2023-08-15,76997,574,"[""Phone""]",4415.48,"{""loyalty"": ""11%""}",257851,1,South America +2024-10-12,76998,5811,"[""Charger"", ""Tablet""]",1807.21,"{""promo"": ""16%""}",123801,0,South America +2023-01-16,76999,4075,"[""Tablet""]",3473.26,{},284492,1,Africa +2023-04-23,77000,7128,"[""Charger"", ""Monitor""]",3165.3,"{""promo"": ""30%""}",223797,0,Europe +2024-03-20,77001,9693,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1964.5,{},95328,0,South America +2024-10-31,77002,8750,"[""Charger""]",3449.01,"{""promo"": ""29%""}",105200,0,North America +2024-04-24,77003,5408,"[""Headphones""]",1202.71,{},61305,1,North America +2024-04-28,77004,5312,"[""Laptop""]",466.78,{},110544,1,North America +2023-03-01,77005,1877,"[""Charger""]",2524.26,"{""seasonal"": ""24%""}",170696,0,North America +2024-03-30,77006,8891,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3763.15,{},214888,0,Europe +2024-12-02,77007,8366,"[""Headphones""]",1393.23,{},196804,0,Africa +2024-01-09,77008,3020,"[""Monitor""]",3225.29,"{""seasonal"": ""26%""}",117662,1,Asia +2023-12-26,77009,3852,"[""Monitor""]",2600.35,"{"""": ""10%""}",22428,0,South America +2023-04-02,77010,3249,"[""Headphones"", ""Charger""]",3888.65,{},264443,1,Africa +2024-07-03,77011,7077,"[""Headphones"", ""Monitor"", ""Laptop""]",1059.66,"{""loyalty"": ""9%""}",163639,0,North America +2023-03-14,77012,5857,"[""Laptop""]",3757.69,"{""seasonal"": ""6%""}",87521,1,Asia +2023-03-13,77013,8675,"[""Headphones""]",3132.93,{},230456,0,North America +2024-04-06,77014,9172,"[""Phone"", ""Monitor""]",115.32,{},96470,1,North America +2023-08-06,77015,5345,"[""Headphones"", ""Phone"", ""Keyboard""]",3589.75,{},83425,0,Asia +2023-02-19,77016,7493,"[""Laptop"", ""Tablet"", ""Phone""]",1937.48,"{""loyalty"": ""28%""}",207883,1,Europe +2023-01-29,77017,4939,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4303.0,"{""seasonal"": ""21%""}",166755,0,North America +2023-09-10,77018,4340,"[""Monitor"", ""Keyboard"", ""Headphones""]",4922.42,"{""seasonal"": ""16%""}",98387,0,Europe +2024-12-17,77019,5967,"[""Tablet""]",2147.65,{},151216,0,Europe +2024-03-15,77020,584,"[""Laptop"", ""Keyboard""]",354.16,"{"""": ""21%""}",181266,0,Africa +2023-10-14,77021,3278,"[""Charger"", ""Headphones""]",4370.39,{},171476,0,Europe +2024-10-05,77022,3493,"[""Keyboard"", ""Tablet"", ""Laptop""]",1051.36,{},84235,0,Africa +2024-10-31,77023,9531,"[""Phone"", ""Laptop""]",4675.14,"{""seasonal"": ""15%""}",28995,1,Africa +2023-09-12,77024,2431,"[""Tablet""]",3300.09,{},66396,0,South America +2024-03-16,77025,8888,"[""Wireless Mouse"", ""Laptop""]",1612.46,"{"""": ""10%""}",129273,1,Africa +2024-08-21,77026,9676,"[""Wireless Mouse"", ""Laptop""]",178.2,"{""seasonal"": ""10%""}",146175,1,South America +2024-02-29,77027,8931,"[""Monitor"", ""Headphones""]",1722.17,{},3196,1,Asia +2023-07-07,77028,3828,"[""Wireless Mouse""]",4348.67,"{""loyalty"": ""21%""}",212119,1,Asia +2024-01-24,77029,5232,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",169.76,{},19639,1,Asia +2024-01-26,77030,2441,"[""Headphones"", ""Keyboard""]",831.84,"{""seasonal"": ""14%""}",161953,1,Asia +2023-10-20,77031,3797,"[""Headphones""]",3768.16,{},214744,1,South America +2023-06-11,77032,749,"[""Phone"", ""Keyboard"", ""Charger""]",280.14,"{""loyalty"": ""20%""}",229228,0,Africa +2023-10-18,77033,1612,"[""Phone"", ""Tablet"", ""Laptop""]",2069.53,"{"""": ""23%""}",121628,0,North America +2023-09-17,77034,4466,"[""Tablet""]",4319.72,"{""seasonal"": ""5%""}",218277,0,Europe +2024-08-06,77035,3297,"[""Wireless Mouse"", ""Laptop""]",652.6,{},9488,1,South America +2023-08-24,77036,8609,"[""Monitor""]",3492.84,{},130825,1,Asia +2023-05-19,77037,4989,"[""Monitor"", ""Phone""]",2408.42,{},155205,1,Europe +2023-08-10,77038,1184,"[""Headphones"", ""Keyboard"", ""Monitor""]",3336.45,"{"""": ""12%""}",125044,1,North America +2023-09-27,77039,6180,"[""Charger""]",2784.92,{},237664,0,Asia +2024-10-21,77040,547,"[""Monitor"", ""Charger""]",4555.74,{},118258,1,Europe +2023-07-24,77041,3912,"[""Charger""]",4056.53,"{""seasonal"": ""10%""}",80142,1,South America +2024-09-25,77042,7151,"[""Headphones""]",4560.57,{},81717,1,South America +2023-03-22,77043,3105,"[""Charger""]",1005.29,"{"""": ""28%""}",75211,0,Asia +2023-09-03,77044,7691,"[""Headphones"", ""Keyboard"", ""Laptop""]",2411.59,"{"""": ""22%""}",24276,0,North America +2023-06-26,77045,2355,"[""Tablet""]",1769.74,"{""loyalty"": ""13%""}",266184,1,South America +2024-11-16,77046,2562,"[""Keyboard"", ""Monitor"", ""Headphones""]",2244.27,{},139862,0,North America +2024-09-07,77047,5287,"[""Headphones"", ""Charger"", ""Tablet""]",3335.3,{},191081,0,Europe +2024-12-09,77048,5999,"[""Wireless Mouse""]",3369.19,"{""seasonal"": ""17%""}",73179,0,Asia +2024-01-17,77049,9307,"[""Phone"", ""Wireless Mouse""]",3795.94,{},219820,1,South America +2024-09-27,77050,102,"[""Laptop"", ""Wireless Mouse""]",4516.28,"{""promo"": ""5%""}",32571,1,Africa +2024-10-13,77051,33,"[""Laptop"", ""Charger"", ""Keyboard""]",223.09,{},28274,1,North America +2023-11-02,77052,5783,"[""Tablet""]",1147.68,{},163394,0,Asia +2024-05-02,77053,2209,"[""Charger"", ""Laptop""]",93.13,"{""loyalty"": ""18%""}",208193,1,South America +2024-03-04,77054,6761,"[""Monitor"", ""Tablet"", ""Headphones""]",3102.68,"{""loyalty"": ""24%""}",73462,1,North America +2024-05-30,77055,6860,"[""Phone""]",684.35,"{""promo"": ""25%""}",83844,1,North America +2024-03-10,77056,4567,"[""Charger""]",3692.83,{},57621,0,South America +2023-01-20,77057,5917,"[""Phone""]",2989.68,"{""loyalty"": ""20%""}",129784,1,Africa +2024-09-17,77058,5367,"[""Laptop"", ""Tablet"", ""Headphones""]",4933.56,"{""promo"": ""28%""}",212274,0,Europe +2024-06-20,77059,1802,"[""Laptop"", ""Monitor"", ""Headphones""]",1887.38,"{""seasonal"": ""19%""}",61731,0,Africa +2023-06-25,77060,2255,"[""Phone"", ""Laptop""]",1072.48,"{""loyalty"": ""30%""}",170670,0,Africa +2023-08-23,77061,5447,"[""Wireless Mouse"", ""Monitor""]",339.31,{},160984,1,North America +2024-09-15,77062,994,"[""Wireless Mouse"", ""Tablet""]",706.9,{},194366,0,South America +2024-11-10,77063,8811,"[""Monitor"", ""Charger""]",1585.21,"{""promo"": ""25%""}",121575,1,Europe +2023-11-23,77064,7930,"[""Charger""]",231.7,{},1723,1,North America +2023-01-23,77065,2187,"[""Phone"", ""Monitor""]",3780.42,{},53505,0,Europe +2023-10-28,77066,6876,"[""Tablet"", ""Wireless Mouse""]",3396.41,"{""seasonal"": ""25%""}",188844,0,Africa +2023-07-19,77067,2152,"[""Keyboard"", ""Headphones""]",1134.03,{},271820,0,South America +2023-07-13,77068,7999,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1572.49,"{""loyalty"": ""22%""}",97866,1,Africa +2024-06-27,77069,2373,"[""Wireless Mouse""]",1536.06,"{""loyalty"": ""17%""}",129238,1,Europe +2023-10-26,77070,4183,"[""Wireless Mouse"", ""Keyboard""]",4995.11,{},68096,0,North America +2024-04-11,77071,6221,"[""Charger"", ""Headphones""]",4801.77,{},45292,0,South America +2024-04-03,77072,9288,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2302.49,{},214388,0,Europe +2023-10-14,77073,5316,"[""Keyboard"", ""Wireless Mouse""]",4831.69,{},35538,1,Europe +2024-05-26,77074,4225,"[""Monitor""]",1525.8,{},157164,1,North America +2023-01-29,77075,5145,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2309.92,{},102743,0,South America +2024-05-26,77076,4019,"[""Headphones"", ""Tablet"", ""Phone""]",547.39,"{""loyalty"": ""24%""}",140498,1,Europe +2024-08-05,77077,1268,"[""Phone"", ""Monitor""]",909.67,{},177550,1,Asia +2024-07-02,77078,5991,"[""Wireless Mouse""]",2774.6,{},44935,1,North America +2024-06-27,77079,618,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",74.55,"{""seasonal"": ""24%""}",7163,1,Africa +2023-09-15,77080,2099,"[""Keyboard"", ""Charger"", ""Headphones""]",2231.3,{},48943,1,Europe +2023-11-16,77081,9662,"[""Headphones""]",4370.89,"{""seasonal"": ""12%""}",95491,1,South America +2024-02-02,77082,2640,"[""Tablet"", ""Phone""]",2403.19,{},220176,0,Asia +2024-05-05,77083,3361,"[""Charger"", ""Phone""]",1159.36,{},52084,0,Africa +2024-04-07,77084,4241,"[""Monitor""]",979.95,"{""promo"": ""30%""}",68029,0,Europe +2024-02-12,77085,9578,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4128.6,"{"""": ""9%""}",18538,1,Africa +2023-10-24,77086,242,"[""Wireless Mouse"", ""Keyboard""]",807.42,{},15453,1,Europe +2024-09-28,77087,961,"[""Tablet"", ""Monitor""]",198.31,"{""loyalty"": ""7%""}",191111,0,South America +2024-10-30,77088,3170,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4198.08,{},140121,0,Europe +2023-08-27,77089,2841,"[""Monitor""]",1251.74,"{"""": ""29%""}",179468,1,South America +2024-10-10,77090,881,"[""Phone"", ""Tablet"", ""Headphones""]",1043.11,"{""seasonal"": ""10%""}",37658,0,Europe +2023-01-28,77091,3787,"[""Tablet"", ""Keyboard""]",4144.99,"{""seasonal"": ""27%""}",230208,1,Europe +2023-10-15,77092,8011,"[""Phone"", ""Keyboard""]",4162.54,{},154701,1,Africa +2023-11-04,77093,1819,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4649.98,{},233045,0,North America +2024-01-09,77094,7100,"[""Charger"", ""Headphones"", ""Keyboard""]",2423.59,{},204905,1,Europe +2024-06-21,77095,719,"[""Charger"", ""Keyboard""]",1850.63,"{"""": ""10%""}",212744,0,Europe +2023-02-23,77096,4882,"[""Charger"", ""Keyboard""]",2494.58,"{""seasonal"": ""8%""}",290468,0,Europe +2023-05-23,77097,8092,"[""Headphones"", ""Tablet""]",2033.84,{},228048,1,Europe +2024-04-01,77098,2515,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2231.13,{},143996,0,Africa +2024-09-19,77099,7684,"[""Wireless Mouse"", ""Phone""]",98.03,{},86070,1,North America +2023-05-27,77100,7594,"[""Monitor"", ""Keyboard""]",679.08,"{""seasonal"": ""13%""}",36272,0,Africa +2023-06-02,77101,5744,"[""Wireless Mouse"", ""Charger""]",1693.69,"{"""": ""23%""}",231136,0,North America +2023-06-28,77102,4267,"[""Charger"", ""Keyboard""]",1102.11,{},267722,1,South America +2024-08-29,77103,815,"[""Charger""]",1875.31,{},148211,0,South America +2024-04-09,77104,9301,"[""Charger"", ""Phone""]",4789.17,{},195761,1,Europe +2024-08-18,77105,2575,"[""Tablet""]",1874.46,{},245615,0,Asia +2023-09-09,77106,6090,"[""Laptop"", ""Keyboard""]",3193.45,{},245308,1,Asia +2024-07-09,77107,6915,"[""Laptop"", ""Tablet""]",3822.6,"{""promo"": ""17%""}",126909,0,North America +2024-10-12,77108,4922,"[""Charger"", ""Tablet""]",356.05,"{""promo"": ""7%""}",18535,0,South America +2024-05-18,77109,3215,"[""Phone"", ""Tablet""]",2984.16,"{""seasonal"": ""10%""}",134350,1,South America +2023-09-08,77110,2063,"[""Charger"", ""Laptop"", ""Tablet""]",4536.86,"{""promo"": ""11%""}",141232,0,South America +2023-08-09,77111,7988,"[""Monitor""]",245.57,"{""seasonal"": ""24%""}",14453,1,South America +2024-11-25,77112,4776,"[""Tablet"", ""Wireless Mouse""]",1275.58,{},121174,1,Asia +2023-01-30,77113,8198,"[""Keyboard""]",4272.89,"{"""": ""19%""}",251092,0,Europe +2023-03-16,77114,9865,"[""Charger""]",4417.12,"{""loyalty"": ""30%""}",202657,1,South America +2024-10-02,77115,9001,"[""Keyboard""]",1269.02,"{""loyalty"": ""26%""}",39485,0,North America +2023-10-22,77116,1608,"[""Monitor"", ""Laptop"", ""Tablet""]",4786.86,"{"""": ""19%""}",68843,1,Africa +2024-03-01,77117,8059,"[""Keyboard"", ""Laptop"", ""Headphones""]",2832.26,{},12700,0,Asia +2024-10-01,77118,8297,"[""Headphones"", ""Charger""]",869.46,{},18772,1,Europe +2024-01-03,77119,8376,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",649.35,{},199486,1,Europe +2024-10-12,77120,8335,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1158.06,"{""loyalty"": ""6%""}",73319,1,Africa +2024-09-07,77121,5876,"[""Monitor""]",4912.59,{},12276,1,Europe +2024-01-05,77122,6803,"[""Tablet""]",4745.53,{},112639,1,North America +2024-09-17,77123,1131,"[""Laptop"", ""Phone"", ""Monitor""]",2648.55,"{""promo"": ""12%""}",119642,1,South America +2023-04-23,77124,7757,"[""Headphones"", ""Monitor""]",1677.93,{},131802,1,Europe +2023-04-30,77125,5504,"[""Monitor""]",553.1,"{""promo"": ""15%""}",93741,0,Europe +2024-08-17,77126,3818,"[""Laptop""]",555.33,{},215116,0,North America +2023-01-25,77127,9669,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1971.91,{},188389,0,Europe +2024-03-30,77128,3979,"[""Keyboard"", ""Monitor""]",977.66,{},239824,1,Asia +2024-04-27,77129,6752,"[""Tablet"", ""Charger""]",879.92,"{"""": ""23%""}",262330,1,Europe +2024-02-05,77130,38,"[""Keyboard"", ""Wireless Mouse""]",4010.02,{},139120,0,Africa +2023-07-10,77131,7971,"[""Headphones""]",2904.77,{},228050,1,Africa +2024-03-27,77132,1909,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3861.57,"{"""": ""22%""}",223871,1,North America +2024-12-05,77133,1822,"[""Wireless Mouse""]",399.64,"{"""": ""11%""}",23996,0,Africa +2024-12-01,77134,8030,"[""Keyboard"", ""Headphones"", ""Charger""]",3820.4,"{""loyalty"": ""26%""}",88449,0,Europe +2023-04-17,77135,8021,"[""Monitor"", ""Keyboard""]",3985.17,{},286556,0,North America +2024-12-08,77136,6317,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3675.78,"{"""": ""9%""}",54159,0,South America +2024-03-07,77137,9826,"[""Headphones""]",1005.64,"{""loyalty"": ""17%""}",218462,1,Africa +2023-04-19,77138,591,"[""Phone"", ""Tablet"", ""Monitor""]",2345.86,{},28615,1,Asia +2023-03-06,77139,965,"[""Tablet"", ""Phone""]",2716.52,"{"""": ""30%""}",234620,0,Europe +2023-05-08,77140,1405,"[""Phone"", ""Charger"", ""Keyboard""]",1518.04,"{""seasonal"": ""12%""}",130047,1,Africa +2023-08-25,77141,4915,"[""Phone""]",3967.65,{},43025,1,Africa +2024-11-30,77142,8062,"[""Laptop"", ""Phone""]",3531.22,{},75516,1,Asia +2023-07-14,77143,2936,"[""Monitor"", ""Keyboard""]",1153.09,"{""loyalty"": ""28%""}",188041,0,Asia +2023-04-10,77144,110,"[""Laptop"", ""Phone"", ""Keyboard""]",1029.1,{},36886,1,Europe +2024-11-17,77145,8159,"[""Charger"", ""Phone""]",3605.23,{},35447,1,Europe +2023-03-09,77146,8820,"[""Wireless Mouse""]",2934.37,"{""loyalty"": ""25%""}",208526,1,Africa +2024-03-31,77147,9519,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3153.79,"{""promo"": ""26%""}",199957,0,North America +2023-01-20,77148,9963,"[""Keyboard""]",4562.49,"{""promo"": ""12%""}",250791,0,Europe +2023-10-09,77149,1603,"[""Charger"", ""Monitor""]",1432.84,"{""loyalty"": ""26%""}",174289,0,Asia +2024-05-12,77150,6621,"[""Laptop""]",1160.07,"{""promo"": ""8%""}",68781,0,Europe +2023-04-14,77151,9376,"[""Laptop""]",413.93,{},247206,1,North America +2024-03-17,77152,8457,"[""Headphones"", ""Tablet""]",1343.68,{},96443,1,Asia +2023-08-23,77153,5344,"[""Wireless Mouse"", ""Tablet""]",4292.62,"{""loyalty"": ""14%""}",91610,1,Africa +2024-06-03,77154,5503,"[""Tablet"", ""Laptop"", ""Charger""]",4688.79,"{"""": ""23%""}",160813,1,Asia +2024-04-20,77155,3054,"[""Tablet"", ""Laptop""]",472.89,{},17897,0,Africa +2023-09-08,77156,2417,"[""Headphones""]",3127.21,{},249505,0,North America +2024-08-18,77157,7382,"[""Wireless Mouse""]",507.32,"{""promo"": ""28%""}",56873,1,Europe +2024-03-27,77158,9241,"[""Keyboard"", ""Laptop"", ""Phone""]",4638.53,{},166631,0,South America +2023-02-09,77159,151,"[""Keyboard"", ""Headphones""]",3237.52,"{""seasonal"": ""13%""}",70366,1,Africa +2023-09-08,77160,1886,"[""Tablet""]",3515.6,{},218545,1,North America +2024-02-21,77161,4752,"[""Wireless Mouse""]",1370.9,"{""loyalty"": ""29%""}",282795,1,South America +2023-11-19,77162,3127,"[""Phone"", ""Laptop""]",3246.8,"{""seasonal"": ""16%""}",137373,0,Africa +2023-01-29,77163,2791,"[""Charger""]",2291.63,"{""loyalty"": ""7%""}",289727,0,South America +2023-04-22,77164,7430,"[""Phone"", ""Keyboard""]",1052.39,{},259966,1,Asia +2023-07-16,77165,2701,"[""Tablet"", ""Phone"", ""Headphones""]",4015.12,{},243891,1,Europe +2024-07-01,77166,791,"[""Phone""]",3406.73,"{""loyalty"": ""25%""}",201740,1,Europe +2023-07-21,77167,9189,"[""Monitor""]",2233.78,{},230031,1,Asia +2023-02-11,77168,2747,"[""Headphones"", ""Keyboard""]",4170.49,{},298501,0,Asia +2024-05-05,77169,3859,"[""Charger""]",3161.62,"{""seasonal"": ""19%""}",268740,1,Europe +2024-09-29,77170,6807,"[""Charger"", ""Headphones"", ""Tablet""]",2057.83,{},295902,0,Asia +2023-04-13,77171,2764,"[""Wireless Mouse"", ""Headphones""]",2020.59,{},235261,1,Africa +2023-06-07,77172,3223,"[""Laptop"", ""Keyboard"", ""Monitor""]",87.46,"{""seasonal"": ""7%""}",255011,1,Africa +2023-10-16,77173,2001,"[""Tablet""]",1359.48,"{""loyalty"": ""7%""}",199416,1,North America +2023-10-11,77174,3510,"[""Monitor"", ""Laptop"", ""Tablet""]",1887.07,{},14213,1,Europe +2024-02-02,77175,5921,"[""Monitor"", ""Keyboard""]",3555.24,"{""promo"": ""20%""}",265454,1,Europe +2023-02-26,77176,9234,"[""Phone"", ""Charger""]",2324.72,{},193758,1,South America +2024-04-11,77177,5634,"[""Monitor"", ""Headphones"", ""Tablet""]",4565.54,"{"""": ""17%""}",40613,1,Africa +2023-03-24,77178,5251,"[""Phone"", ""Wireless Mouse""]",4517.32,{},165829,0,Asia +2024-11-10,77179,4815,"[""Tablet""]",1828.25,{},159177,1,North America +2024-07-16,77180,5631,"[""Charger""]",1923.78,"{""promo"": ""10%""}",78940,1,Europe +2024-03-04,77181,2335,"[""Laptop"", ""Charger"", ""Keyboard""]",2864.78,"{"""": ""15%""}",228891,1,Asia +2024-06-08,77182,5334,"[""Headphones""]",1391.39,{},205948,0,South America +2024-06-16,77183,7205,"[""Laptop"", ""Monitor""]",4273.91,"{""loyalty"": ""21%""}",56132,1,Asia +2023-08-07,77184,2757,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",253.63,"{"""": ""24%""}",181736,1,Asia +2023-04-28,77185,5298,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",531.28,{},241019,1,South America +2023-06-12,77186,4509,"[""Headphones"", ""Charger""]",609.41,"{""promo"": ""5%""}",125843,0,Africa +2023-05-04,77187,6816,"[""Phone"", ""Laptop""]",2286.56,{},23622,1,North America +2024-11-11,77188,6316,"[""Monitor""]",3190.25,{},115689,1,North America +2023-03-04,77189,6652,"[""Monitor"", ""Keyboard"", ""Tablet""]",3645.89,{},171726,0,Asia +2024-08-07,77190,8424,"[""Wireless Mouse""]",4642.15,"{""loyalty"": ""14%""}",240794,0,Africa +2024-02-20,77191,2306,"[""Monitor"", ""Charger""]",4378.54,{},256899,1,South America +2024-12-21,77192,1478,"[""Charger"", ""Keyboard"", ""Headphones""]",4911.96,{},265567,0,South America +2023-03-18,77193,5053,"[""Monitor"", ""Keyboard"", ""Phone""]",288.37,{},189094,0,North America +2024-03-04,77194,2362,"[""Charger"", ""Keyboard"", ""Laptop""]",4630.79,{},283837,1,Asia +2023-02-28,77195,4362,"[""Laptop""]",2447.04,{},133360,0,Asia +2023-04-02,77196,3956,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",864.42,{},287554,1,North America +2023-10-28,77197,7178,"[""Laptop"", ""Phone"", ""Keyboard""]",1037.38,"{""promo"": ""16%""}",117162,1,Asia +2024-10-13,77198,9045,"[""Laptop"", ""Keyboard""]",3017.8,"{""promo"": ""19%""}",132456,1,Asia +2024-06-05,77199,2808,"[""Charger"", ""Headphones""]",2991.98,"{"""": ""7%""}",297368,0,Asia +2023-11-16,77200,2994,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",119.62,"{"""": ""5%""}",209793,0,Africa +2023-09-22,77201,2576,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2338.58,"{"""": ""27%""}",229892,0,North America +2023-01-13,77202,1575,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4382.85,"{"""": ""18%""}",212793,1,North America +2024-07-25,77203,5967,"[""Monitor""]",1288.85,{},44517,0,Asia +2024-10-01,77204,1135,"[""Monitor"", ""Keyboard""]",3096.0,"{""seasonal"": ""18%""}",237244,0,Asia +2024-01-23,77205,6775,"[""Monitor"", ""Phone"", ""Laptop""]",4751.47,"{"""": ""10%""}",67687,1,Europe +2023-08-18,77206,5350,"[""Phone""]",3321.45,{},238078,0,South America +2024-07-17,77207,9427,"[""Headphones"", ""Tablet""]",4811.13,"{""seasonal"": ""21%""}",200316,1,South America +2023-09-16,77208,1520,"[""Monitor"", ""Tablet"", ""Laptop""]",1614.93,{},141734,1,Africa +2023-11-16,77209,1112,"[""Keyboard"", ""Tablet""]",2243.94,"{"""": ""5%""}",33919,0,Europe +2024-12-11,77210,872,"[""Keyboard"", ""Tablet""]",1835.97,"{""seasonal"": ""20%""}",130959,0,North America +2023-08-11,77211,8186,"[""Laptop""]",1254.12,"{""promo"": ""18%""}",63897,1,South America +2024-02-23,77212,6250,"[""Headphones"", ""Charger"", ""Monitor""]",964.88,"{"""": ""9%""}",177992,1,Africa +2024-01-24,77213,6087,"[""Tablet"", ""Charger""]",1620.27,"{""loyalty"": ""14%""}",173329,1,Asia +2023-06-22,77214,9691,"[""Headphones"", ""Monitor"", ""Laptop""]",2072.37,"{""loyalty"": ""22%""}",203823,1,Africa +2023-12-28,77215,1817,"[""Tablet"", ""Monitor""]",2975.35,"{""loyalty"": ""15%""}",59984,1,North America +2024-02-05,77216,9444,"[""Keyboard""]",3653.03,{},163690,0,Africa +2023-01-21,77217,4077,"[""Keyboard""]",4867.63,{},50554,0,Africa +2024-10-20,77218,2556,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1159.64,"{""loyalty"": ""7%""}",173830,0,South America +2024-05-17,77219,6829,"[""Laptop"", ""Wireless Mouse""]",3104.01,{},2213,0,South America +2024-07-08,77220,2150,"[""Monitor""]",1996.98,{},130482,0,South America +2024-04-24,77221,8089,"[""Monitor"", ""Charger""]",4947.51,{},282695,1,North America +2023-04-05,77222,9276,"[""Monitor""]",3205.02,"{""promo"": ""11%""}",227585,0,Africa +2024-03-09,77223,4499,"[""Keyboard"", ""Tablet"", ""Headphones""]",155.36,{},187182,0,Europe +2024-11-03,77224,2043,"[""Laptop""]",2635.26,{},223569,1,Europe +2023-04-30,77225,262,"[""Tablet""]",3201.12,{},108193,1,Europe +2024-07-29,77226,3122,"[""Keyboard""]",580.06,"{""loyalty"": ""25%""}",116397,0,North America +2024-10-28,77227,369,"[""Charger"", ""Monitor""]",3040.43,{},192504,0,Europe +2024-10-06,77228,6727,"[""Charger""]",144.73,{},269457,0,Africa +2023-11-06,77229,3874,"[""Monitor"", ""Phone"", ""Tablet""]",3714.12,"{""seasonal"": ""24%""}",186579,0,South America +2023-01-24,77230,2632,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3878.83,"{"""": ""16%""}",41752,0,Europe +2023-12-16,77231,6486,"[""Wireless Mouse""]",2336.53,{},147623,0,Africa +2023-02-27,77232,2096,"[""Phone""]",842.26,{},20293,0,Asia +2024-11-12,77233,3292,"[""Laptop"", ""Tablet"", ""Phone""]",2459.07,{},213804,0,North America +2024-04-25,77234,8932,"[""Phone"", ""Tablet""]",4162.13,{},17239,0,Africa +2024-07-25,77235,6989,"[""Keyboard"", ""Headphones"", ""Tablet""]",2306.26,{},288971,1,Africa +2024-07-11,77236,4940,"[""Tablet"", ""Phone""]",187.56,"{""promo"": ""14%""}",261891,0,South America +2024-03-11,77237,7395,"[""Charger"", ""Monitor"", ""Tablet""]",3606.81,{},93433,0,North America +2023-02-20,77238,9835,"[""Phone"", ""Charger"", ""Laptop""]",2596.02,{},285949,0,Africa +2023-03-05,77239,5479,"[""Laptop""]",350.4,{},140333,1,Africa +2023-09-24,77240,8287,"[""Wireless Mouse""]",285.21,"{""loyalty"": ""6%""}",268218,1,Africa +2023-03-31,77241,2544,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1859.53,{},163416,1,Africa +2024-09-28,77242,5217,"[""Monitor"", ""Wireless Mouse""]",4550.49,"{""seasonal"": ""7%""}",274479,0,Africa +2023-03-28,77243,347,"[""Tablet""]",2217.67,{},172804,0,South America +2023-05-14,77244,1784,"[""Laptop""]",1243.33,"{""loyalty"": ""21%""}",121828,1,Europe +2024-11-21,77245,563,"[""Keyboard"", ""Tablet""]",2119.49,{},129446,0,Africa +2023-12-14,77246,6382,"[""Charger"", ""Wireless Mouse""]",4740.96,"{"""": ""12%""}",7309,1,South America +2023-02-28,77247,8869,"[""Charger"", ""Wireless Mouse""]",746.62,"{""loyalty"": ""30%""}",259424,0,Africa +2024-11-06,77248,5859,"[""Keyboard""]",3949.32,"{""seasonal"": ""5%""}",174491,1,Asia +2023-11-26,77249,2493,"[""Wireless Mouse"", ""Phone""]",3865.47,{},60624,0,Europe +2024-10-04,77250,7490,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",817.47,"{"""": ""28%""}",265838,0,Europe +2024-04-20,77251,5836,"[""Phone"", ""Wireless Mouse""]",2703.39,{},277194,1,North America +2024-04-24,77252,4310,"[""Headphones""]",937.38,{},196680,0,North America +2023-01-07,77253,8831,"[""Monitor"", ""Headphones"", ""Phone""]",3004.78,"{""loyalty"": ""19%""}",132706,0,Europe +2023-02-26,77254,2552,"[""Laptop"", ""Phone"", ""Monitor""]",2369.72,{},123166,0,Africa +2024-05-18,77255,9456,"[""Headphones""]",1646.18,{},207480,1,North America +2023-08-11,77256,4915,"[""Wireless Mouse""]",650.16,{},40900,0,South America +2024-03-22,77257,4832,"[""Keyboard"", ""Charger"", ""Tablet""]",269.96,{},56392,0,North America +2023-06-09,77258,7109,"[""Phone"", ""Headphones"", ""Keyboard""]",3376.58,{},83477,0,Asia +2023-03-02,77259,6368,"[""Monitor"", ""Tablet""]",810.01,{},295192,0,Europe +2024-11-30,77260,8589,"[""Keyboard"", ""Wireless Mouse""]",2288.26,{},191966,0,Africa +2024-09-08,77261,5652,"[""Tablet""]",641.68,"{""loyalty"": ""30%""}",178936,0,South America +2024-12-08,77262,2575,"[""Wireless Mouse"", ""Keyboard""]",4659.46,{},93949,0,North America +2024-03-31,77263,839,"[""Monitor"", ""Headphones"", ""Laptop""]",562.88,"{""seasonal"": ""8%""}",90659,0,Africa +2024-11-10,77264,4550,"[""Headphones"", ""Charger""]",1529.87,{},147577,0,North America +2024-03-06,77265,6755,"[""Phone"", ""Wireless Mouse""]",431.0,{},261232,0,North America +2024-01-05,77266,8489,"[""Laptop"", ""Charger""]",3635.37,{},102213,1,South America +2023-12-29,77267,5497,"[""Wireless Mouse"", ""Tablet""]",1112.74,{},239484,0,Europe +2024-02-16,77268,6948,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4587.99,{},85744,1,Europe +2024-09-02,77269,9160,"[""Laptop"", ""Monitor""]",3104.25,{},217633,0,South America +2023-03-19,77270,4625,"[""Laptop"", ""Tablet"", ""Charger""]",1500.82,{},225011,1,South America +2024-01-09,77271,8044,"[""Charger"", ""Tablet"", ""Headphones""]",2251.82,{},95630,0,Asia +2024-09-23,77272,7165,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1603.12,"{""promo"": ""16%""}",20494,0,North America +2024-08-12,77273,9419,"[""Keyboard""]",2312.64,"{""promo"": ""25%""}",62923,1,North America +2024-06-12,77274,6216,"[""Monitor"", ""Headphones"", ""Phone""]",763.31,{},14800,0,North America +2023-11-14,77275,4507,"[""Phone"", ""Headphones""]",422.66,{},261772,0,Asia +2023-05-31,77276,1792,"[""Wireless Mouse"", ""Keyboard""]",2223.09,"{""loyalty"": ""19%""}",252042,0,Europe +2023-11-08,77277,8412,"[""Charger"", ""Keyboard""]",2800.31,{},196873,0,Africa +2024-01-19,77278,2792,"[""Laptop"", ""Keyboard"", ""Tablet""]",1438.3,{},94515,1,North America +2024-08-18,77279,4543,"[""Monitor"", ""Wireless Mouse""]",4996.09,{},30350,1,Asia +2024-09-26,77280,6106,"[""Phone"", ""Laptop""]",876.37,{},140698,1,South America +2023-02-07,77281,3173,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",293.61,{},223571,0,North America +2024-10-20,77282,2924,"[""Phone""]",1776.41,"{""loyalty"": ""28%""}",152419,1,Asia +2024-09-27,77283,5395,"[""Laptop""]",1568.5,{},43558,0,North America +2024-12-05,77284,5888,"[""Monitor""]",300.07,"{""loyalty"": ""12%""}",178649,0,South America +2023-04-02,77285,6301,"[""Keyboard""]",3483.82,"{""promo"": ""14%""}",190103,0,Africa +2024-07-02,77286,9198,"[""Monitor"", ""Wireless Mouse""]",1178.07,{},17637,0,Africa +2023-07-30,77287,5229,"[""Phone"", ""Tablet""]",1950.0,{},128433,0,South America +2024-09-03,77288,4712,"[""Charger"", ""Tablet"", ""Phone""]",1598.52,{},230637,0,Asia +2023-04-10,77289,9490,"[""Laptop"", ""Monitor"", ""Tablet""]",157.27,"{""promo"": ""29%""}",287677,1,Africa +2023-09-18,77290,8073,"[""Wireless Mouse""]",459.7,"{""promo"": ""14%""}",67354,0,South America +2023-09-22,77291,4510,"[""Tablet"", ""Laptop"", ""Keyboard""]",679.63,"{""promo"": ""6%""}",227418,0,North America +2024-01-28,77292,8885,"[""Charger"", ""Keyboard""]",71.07,{},46144,1,North America +2023-01-28,77293,5887,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4778.33,"{""seasonal"": ""14%""}",61913,0,Africa +2023-08-28,77294,6257,"[""Laptop"", ""Charger"", ""Phone""]",3804.12,"{""loyalty"": ""17%""}",269718,1,North America +2023-01-10,77295,4889,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3374.52,{},78376,0,Africa +2023-06-23,77296,6648,"[""Keyboard"", ""Charger""]",1860.17,{},36043,0,South America +2023-09-10,77297,2676,"[""Headphones"", ""Tablet""]",3237.9,"{""seasonal"": ""11%""}",106085,0,Europe +2023-11-02,77298,3756,"[""Keyboard""]",4103.05,"{"""": ""19%""}",171112,1,Europe +2023-03-29,77299,3908,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3884.21,"{""loyalty"": ""24%""}",24775,0,Asia +2023-09-17,77300,9047,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4350.23,{},52425,1,Asia +2023-02-18,77301,2859,"[""Laptop""]",4412.05,{},75748,1,Europe +2024-06-13,77302,1418,"[""Laptop"", ""Phone""]",3673.36,"{""promo"": ""8%""}",227212,1,Africa +2023-06-07,77303,9715,"[""Keyboard"", ""Tablet""]",2294.09,{},35238,0,North America +2023-05-20,77304,4645,"[""Keyboard""]",1488.64,{},74539,1,South America +2023-01-26,77305,2373,"[""Monitor"", ""Laptop""]",4950.26,"{"""": ""25%""}",296370,1,Asia +2024-07-25,77306,6038,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4360.64,{},266021,1,South America +2024-04-09,77307,9247,"[""Tablet"", ""Monitor"", ""Charger""]",3941.92,"{"""": ""24%""}",186871,1,North America +2024-07-29,77308,9065,"[""Phone"", ""Laptop""]",734.58,"{""promo"": ""5%""}",282137,0,South America +2024-05-02,77309,9450,"[""Monitor""]",4342.99,"{"""": ""18%""}",64917,1,Asia +2024-05-22,77310,5918,"[""Laptop""]",1883.5,{},162128,0,North America +2024-07-11,77311,1543,"[""Tablet"", ""Charger"", ""Phone""]",1375.76,{},277157,0,Europe +2024-07-05,77312,7899,"[""Phone"", ""Charger""]",4995.19,"{""promo"": ""19%""}",221840,1,South America +2023-02-22,77313,4333,"[""Headphones""]",4340.63,"{""loyalty"": ""26%""}",228183,0,Africa +2024-08-30,77314,9157,"[""Tablet""]",307.83,"{""promo"": ""10%""}",183407,0,Europe +2023-01-05,77315,8379,"[""Laptop"", ""Monitor"", ""Headphones""]",1991.99,{},112515,1,Africa +2024-07-15,77316,2040,"[""Laptop"", ""Tablet""]",2438.28,"{""loyalty"": ""14%""}",73616,0,Africa +2024-05-18,77317,9205,"[""Wireless Mouse""]",2414.97,{},204717,1,South America +2024-05-10,77318,5648,"[""Keyboard""]",1481.92,{},135078,1,South America +2024-12-24,77319,7177,"[""Tablet"", ""Charger""]",376.38,{},194085,1,Europe +2023-09-17,77320,9636,"[""Charger""]",1341.49,{},30080,0,Asia +2024-11-12,77321,5684,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2830.48,{},146052,0,South America +2023-01-03,77322,6918,"[""Headphones"", ""Charger""]",1297.56,"{""loyalty"": ""29%""}",82305,0,North America +2024-04-09,77323,8649,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3426.53,"{""loyalty"": ""28%""}",152190,1,South America +2023-06-13,77324,3208,"[""Tablet"", ""Keyboard"", ""Monitor""]",743.95,{},21939,0,Asia +2024-07-23,77325,9462,"[""Keyboard""]",1668.8,"{""loyalty"": ""6%""}",98679,1,Asia +2024-02-12,77326,6274,"[""Wireless Mouse"", ""Phone""]",3031.46,"{""promo"": ""21%""}",259110,0,Africa +2024-08-14,77327,4967,"[""Monitor"", ""Keyboard""]",2706.66,"{""seasonal"": ""25%""}",253163,0,South America +2024-02-29,77328,772,"[""Tablet"", ""Monitor""]",995.38,"{""promo"": ""8%""}",264311,0,Africa +2024-04-16,77329,6209,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3439.81,{},134037,1,South America +2024-11-02,77330,7939,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1564.42,"{""promo"": ""21%""}",209577,0,North America +2023-04-21,77331,2260,"[""Monitor""]",1624.36,"{"""": ""16%""}",52019,0,Asia +2024-05-28,77332,1423,"[""Monitor"", ""Headphones""]",1580.5,"{"""": ""19%""}",34954,1,South America +2024-05-04,77333,564,"[""Charger""]",4627.78,"{""promo"": ""6%""}",15138,1,Africa +2023-04-01,77334,268,"[""Monitor"", ""Tablet"", ""Laptop""]",1135.75,{},5991,0,Europe +2023-04-30,77335,712,"[""Laptop""]",3355.15,{},143585,0,Europe +2024-09-14,77336,5990,"[""Laptop"", ""Charger"", ""Tablet""]",1517.27,"{""seasonal"": ""10%""}",88149,1,North America +2023-12-31,77337,8073,"[""Laptop"", ""Monitor""]",1716.43,{},75194,1,North America +2023-02-09,77338,6617,"[""Phone"", ""Monitor""]",989.78,{},66957,0,North America +2023-02-27,77339,4862,"[""Charger""]",1342.3,"{""loyalty"": ""19%""}",153044,1,Europe +2023-02-19,77340,224,"[""Laptop""]",271.13,"{""loyalty"": ""27%""}",177801,0,South America +2023-07-20,77341,4141,"[""Laptop"", ""Keyboard""]",3026.69,{},71170,1,Asia +2024-10-12,77342,4546,"[""Headphones"", ""Monitor""]",1608.07,{},178333,0,North America +2024-03-24,77343,494,"[""Monitor"", ""Keyboard""]",4848.56,{},49698,1,Africa +2024-05-18,77344,460,"[""Tablet"", ""Phone"", ""Headphones""]",141.6,{},1065,0,North America +2023-07-06,77345,9954,"[""Keyboard"", ""Laptop"", ""Phone""]",3416.0,{},231584,0,Asia +2023-10-29,77346,7158,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4773.82,"{""loyalty"": ""25%""}",137016,0,Europe +2023-10-07,77347,6362,"[""Tablet"", ""Laptop"", ""Headphones""]",2646.67,{},266019,1,Europe +2024-11-27,77348,6476,"[""Laptop""]",977.07,{},224778,0,Africa +2023-03-08,77349,7478,"[""Headphones"", ""Monitor"", ""Keyboard""]",1817.71,"{""promo"": ""5%""}",135314,1,Europe +2024-02-14,77350,474,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1047.27,"{""promo"": ""24%""}",24984,0,South America +2024-11-06,77351,5670,"[""Keyboard"", ""Phone"", ""Laptop""]",3962.85,{},150425,0,North America +2024-05-21,77352,206,"[""Laptop"", ""Tablet""]",4380.85,"{"""": ""21%""}",156057,0,Europe +2024-02-28,77353,8467,"[""Wireless Mouse""]",4408.01,{},110432,1,Africa +2024-11-06,77354,1073,"[""Tablet""]",2933.18,"{""promo"": ""7%""}",78255,1,Africa +2023-07-09,77355,862,"[""Keyboard"", ""Wireless Mouse""]",1656.21,{},88126,1,Asia +2023-07-22,77356,2519,"[""Laptop""]",2444.03,"{""seasonal"": ""7%""}",284515,1,Asia +2024-07-30,77357,4023,"[""Wireless Mouse""]",2951.18,{},197047,0,Africa +2023-12-22,77358,109,"[""Keyboard""]",1231.66,"{"""": ""16%""}",205633,1,Europe +2023-02-04,77359,1447,"[""Phone""]",4047.15,{},45605,0,North America +2023-12-29,77360,6452,"[""Monitor""]",3856.26,{},27963,1,North America +2024-09-10,77361,5665,"[""Tablet"", ""Charger"", ""Phone""]",1521.01,"{""promo"": ""27%""}",254607,1,North America +2023-04-16,77362,6054,"[""Phone"", ""Keyboard"", ""Laptop""]",2904.47,{},215266,1,North America +2024-05-24,77363,4342,"[""Wireless Mouse"", ""Tablet""]",2177.34,{},277873,0,North America +2023-10-18,77364,2471,"[""Tablet"", ""Headphones"", ""Keyboard""]",4794.36,{},200901,1,Europe +2023-10-26,77365,8090,"[""Keyboard""]",4431.0,{},106834,1,South America +2024-04-27,77366,4647,"[""Tablet""]",2110.3,{},139729,1,Africa +2023-05-12,77367,929,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3948.74,{},276301,0,Asia +2024-02-02,77368,2233,"[""Phone""]",2025.78,"{""loyalty"": ""14%""}",273865,1,Europe +2023-12-29,77369,3475,"[""Laptop"", ""Keyboard"", ""Monitor""]",3781.11,"{""loyalty"": ""26%""}",242199,1,Europe +2024-09-20,77370,4344,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2454.26,"{""seasonal"": ""25%""}",267204,0,North America +2024-03-02,77371,7608,"[""Charger""]",3475.95,"{""seasonal"": ""10%""}",151862,0,Asia +2023-12-04,77372,4977,"[""Laptop"", ""Charger"", ""Phone""]",1843.63,{},283698,1,Asia +2023-12-16,77373,6940,"[""Keyboard""]",1168.97,{},11382,1,Africa +2023-12-08,77374,6181,"[""Tablet"", ""Laptop"", ""Keyboard""]",3747.87,"{""loyalty"": ""29%""}",215296,1,North America +2023-04-08,77375,7658,"[""Wireless Mouse"", ""Laptop""]",1044.49,"{""loyalty"": ""26%""}",214332,0,Africa +2023-07-08,77376,1535,"[""Keyboard"", ""Charger"", ""Phone""]",3155.47,"{""promo"": ""11%""}",197873,0,South America +2023-03-16,77377,3082,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3835.12,{},284182,0,Africa +2024-02-23,77378,9197,"[""Charger""]",4137.31,{},188334,0,South America +2023-08-22,77379,3771,"[""Keyboard"", ""Laptop""]",3089.0,{},123769,1,North America +2023-01-06,77380,1631,"[""Monitor""]",1221.76,"{""loyalty"": ""26%""}",185876,0,North America +2024-03-23,77381,1823,"[""Tablet"", ""Keyboard""]",188.9,"{"""": ""17%""}",260895,1,South America +2023-07-14,77382,7482,"[""Laptop""]",4859.77,"{"""": ""26%""}",101839,0,North America +2024-10-09,77383,3716,"[""Phone""]",240.93,"{""promo"": ""20%""}",4330,0,South America +2024-12-25,77384,1651,"[""Headphones""]",3903.69,"{""promo"": ""21%""}",108382,0,South America +2024-02-01,77385,6307,"[""Phone"", ""Tablet""]",1514.04,{},166224,0,Africa +2023-10-15,77386,6757,"[""Laptop"", ""Keyboard"", ""Tablet""]",3442.6,"{""loyalty"": ""24%""}",201105,1,Asia +2024-05-15,77387,7011,"[""Keyboard""]",4894.91,{},149115,0,Africa +2024-08-05,77388,384,"[""Wireless Mouse"", ""Charger""]",4653.93,"{""seasonal"": ""26%""}",15024,0,Europe +2024-11-08,77389,8849,"[""Wireless Mouse"", ""Monitor""]",2250.78,{},135043,1,Europe +2024-07-13,77390,254,"[""Laptop""]",646.55,"{""promo"": ""5%""}",138308,0,Africa +2023-04-11,77391,7093,"[""Wireless Mouse""]",4497.7,"{""seasonal"": ""6%""}",297639,1,South America +2023-12-27,77392,8786,"[""Phone""]",3630.38,{},140875,1,South America +2023-01-17,77393,7434,"[""Wireless Mouse"", ""Keyboard""]",4129.2,"{""seasonal"": ""28%""}",65471,1,North America +2023-02-06,77394,9208,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1940.72,"{""loyalty"": ""7%""}",61492,0,South America +2024-01-23,77395,6066,"[""Charger"", ""Tablet"", ""Headphones""]",4969.92,{},243536,1,Africa +2023-08-10,77396,8991,"[""Tablet"", ""Monitor""]",67.01,"{""promo"": ""21%""}",134590,1,South America +2024-08-09,77397,6116,"[""Keyboard"", ""Laptop"", ""Phone""]",168.24,"{""loyalty"": ""6%""}",12489,0,Europe +2023-12-27,77398,3468,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4677.67,{},293040,0,North America +2024-10-19,77399,5277,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",612.66,"{"""": ""18%""}",272164,0,Asia +2024-03-31,77400,5608,"[""Laptop"", ""Keyboard"", ""Tablet""]",1610.68,{},48148,0,Africa +2023-07-10,77401,5089,"[""Monitor""]",3470.39,{},272869,0,South America +2023-04-13,77402,8450,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4434.05,"{"""": ""27%""}",99001,0,Asia +2024-02-24,77403,4180,"[""Keyboard"", ""Laptop"", ""Charger""]",3723.02,{},160425,0,Asia +2024-11-28,77404,7800,"[""Monitor"", ""Laptop""]",3700.65,"{""seasonal"": ""26%""}",170391,0,South America +2024-07-16,77405,3805,"[""Laptop""]",847.66,{},242302,0,Europe +2023-05-19,77406,2259,"[""Laptop"", ""Keyboard""]",84.0,"{""seasonal"": ""13%""}",286673,0,Africa +2023-09-16,77407,1773,"[""Tablet""]",4772.89,"{"""": ""10%""}",279721,1,North America +2024-04-20,77408,1309,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",826.04,{},276266,1,Asia +2023-06-02,77409,1210,"[""Tablet"", ""Monitor""]",347.71,"{""seasonal"": ""5%""}",108870,0,Asia +2023-11-30,77410,1450,"[""Wireless Mouse"", ""Keyboard""]",411.19,"{"""": ""13%""}",19908,0,Asia +2023-08-29,77411,6920,"[""Phone"", ""Monitor"", ""Headphones""]",2420.71,"{""seasonal"": ""20%""}",196550,0,Europe +2023-12-25,77412,6919,"[""Laptop""]",3105.2,{},216636,0,Africa +2023-11-13,77413,8267,"[""Wireless Mouse""]",1454.24,{},234442,1,South America +2023-11-02,77414,8958,"[""Laptop""]",4883.79,{},119504,0,Europe +2024-10-25,77415,4609,"[""Phone""]",4074.9,"{"""": ""18%""}",25362,0,North America +2023-01-08,77416,8184,"[""Headphones""]",1557.07,{},65455,1,South America +2023-02-19,77417,3606,"[""Phone""]",2322.9,"{""promo"": ""6%""}",182786,0,South America +2024-04-30,77418,7493,"[""Phone"", ""Headphones""]",2190.35,{},280729,1,North America +2024-04-04,77419,9486,"[""Charger"", ""Monitor""]",3843.39,"{""promo"": ""24%""}",283472,1,Europe +2023-11-03,77420,3428,"[""Laptop"", ""Monitor"", ""Tablet""]",953.28,"{""promo"": ""8%""}",47638,0,Africa +2023-04-02,77421,3416,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2313.91,{},17234,0,Europe +2023-10-03,77422,8979,"[""Charger"", ""Monitor"", ""Tablet""]",527.39,"{"""": ""26%""}",172478,1,South America +2024-07-19,77423,4787,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4369.16,"{""loyalty"": ""24%""}",255718,0,North America +2023-07-19,77424,2096,"[""Charger""]",2327.73,{},150021,0,Europe +2024-08-25,77425,6259,"[""Phone""]",1498.38,"{"""": ""24%""}",197650,0,Asia +2023-07-02,77426,5159,"[""Headphones"", ""Phone"", ""Tablet""]",3527.06,{},87533,1,Africa +2024-07-11,77427,4216,"[""Wireless Mouse""]",4837.94,"{""seasonal"": ""8%""}",20235,0,Africa +2023-06-15,77428,1481,"[""Tablet"", ""Wireless Mouse""]",1141.16,{},175693,0,Africa +2024-12-20,77429,4585,"[""Charger"", ""Keyboard""]",1681.22,{},201285,1,Europe +2023-10-11,77430,7954,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",261.42,{},75175,1,Africa +2023-11-19,77431,9633,"[""Wireless Mouse""]",3986.0,"{"""": ""29%""}",1220,0,Africa +2024-10-12,77432,3425,"[""Phone"", ""Monitor"", ""Keyboard""]",2066.25,"{"""": ""11%""}",242382,0,Europe +2024-03-05,77433,1798,"[""Wireless Mouse"", ""Phone""]",50.66,"{""promo"": ""12%""}",233591,1,Europe +2024-03-30,77434,922,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4852.38,{},130937,1,Asia +2024-11-23,77435,2975,"[""Phone"", ""Keyboard"", ""Tablet""]",4741.11,"{"""": ""25%""}",18167,1,Africa +2024-02-27,77436,9387,"[""Laptop""]",1055.52,{},206370,0,Asia +2023-07-18,77437,9767,"[""Charger""]",3657.07,"{"""": ""30%""}",148975,0,Africa +2024-09-15,77438,7072,"[""Laptop""]",1688.22,"{""seasonal"": ""22%""}",225014,1,Africa +2023-10-05,77439,9490,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1397.99,"{"""": ""8%""}",57019,0,Asia +2024-04-23,77440,6956,"[""Wireless Mouse"", ""Tablet""]",2588.4,"{""promo"": ""6%""}",282417,1,Europe +2024-10-14,77441,6509,"[""Charger""]",2641.25,{},77514,0,Europe +2024-11-27,77442,8954,"[""Wireless Mouse""]",4183.09,"{"""": ""30%""}",132787,1,North America +2023-09-25,77443,4165,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3457.35,"{""seasonal"": ""8%""}",296294,0,Africa +2024-01-02,77444,3036,"[""Tablet"", ""Phone"", ""Monitor""]",2013.56,"{""promo"": ""5%""}",201236,0,Asia +2023-06-24,77445,9765,"[""Keyboard"", ""Monitor"", ""Tablet""]",1472.91,"{""loyalty"": ""10%""}",152149,0,South America +2024-05-01,77446,3936,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4422.94,{},200473,1,Africa +2023-02-23,77447,8309,"[""Wireless Mouse""]",4531.35,{},188607,1,North America +2024-05-17,77448,5595,"[""Monitor""]",3876.74,"{"""": ""5%""}",210719,1,South America +2023-03-17,77449,3669,"[""Charger"", ""Headphones"", ""Tablet""]",914.27,{},78294,1,Europe +2023-07-09,77450,4503,"[""Phone"", ""Keyboard""]",3872.43,"{""promo"": ""20%""}",71539,1,Europe +2024-07-29,77451,7000,"[""Monitor"", ""Phone""]",4490.47,"{"""": ""9%""}",127712,0,South America +2023-12-14,77452,120,"[""Charger"", ""Tablet"", ""Monitor""]",1149.39,{},174444,1,North America +2024-10-11,77453,3165,"[""Phone""]",1015.49,{},190298,1,North America +2024-02-18,77454,4576,"[""Laptop"", ""Phone"", ""Headphones""]",3504.68,{},159683,0,Africa +2023-08-18,77455,3711,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3336.01,{},133396,0,Asia +2023-12-01,77456,3504,"[""Keyboard"", ""Laptop"", ""Phone""]",2177.89,"{"""": ""5%""}",137482,1,North America +2023-10-19,77457,7192,"[""Phone"", ""Headphones"", ""Laptop""]",2889.1,"{""promo"": ""24%""}",71394,1,North America +2024-11-12,77458,6604,"[""Phone""]",3199.76,"{""loyalty"": ""27%""}",13510,1,Asia +2023-09-26,77459,3895,"[""Headphones""]",806.72,{},181070,0,North America +2023-12-28,77460,2293,"[""Monitor""]",1362.65,{},238733,1,South America +2024-09-21,77461,9704,"[""Monitor""]",2325.65,"{""promo"": ""22%""}",262692,1,South America +2023-09-21,77462,5279,"[""Monitor""]",2740.98,{},81870,1,Africa +2023-08-10,77463,9335,"[""Monitor""]",4105.65,{},291892,0,Africa +2024-02-20,77464,3695,"[""Laptop""]",949.18,{},218750,1,South America +2024-07-02,77465,7340,"[""Phone"", ""Laptop"", ""Keyboard""]",679.33,"{""promo"": ""30%""}",150031,1,Asia +2023-07-06,77466,6034,"[""Monitor"", ""Laptop"", ""Phone""]",964.4,"{""promo"": ""20%""}",224318,1,Africa +2023-07-29,77467,6098,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4662.82,"{""promo"": ""15%""}",114850,1,South America +2024-04-20,77468,1426,"[""Wireless Mouse""]",106.86,{},76784,1,Africa +2023-02-22,77469,3519,"[""Keyboard""]",2100.41,"{""promo"": ""10%""}",287632,1,Asia +2023-05-22,77470,7005,"[""Laptop"", ""Keyboard""]",4239.55,"{""loyalty"": ""5%""}",228873,1,Asia +2024-06-08,77471,2568,"[""Wireless Mouse"", ""Phone""]",3446.18,{},93043,1,Africa +2024-01-05,77472,2228,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2403.22,"{""seasonal"": ""30%""}",125117,0,Africa +2024-12-07,77473,3290,"[""Monitor"", ""Tablet""]",4652.33,"{"""": ""11%""}",157241,1,Europe +2023-05-17,77474,8572,"[""Charger"", ""Phone"", ""Headphones""]",4654.43,"{"""": ""18%""}",132383,0,Asia +2023-10-20,77475,2196,"[""Tablet""]",4772.69,{},149692,1,Asia +2023-10-04,77476,3263,"[""Charger""]",1856.04,"{"""": ""19%""}",1858,1,North America +2023-11-13,77477,1582,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2653.6,"{""promo"": ""15%""}",232093,0,South America +2023-10-14,77478,414,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",739.81,"{"""": ""11%""}",106722,1,Africa +2023-11-06,77479,4935,"[""Wireless Mouse"", ""Keyboard""]",3718.83,{},243887,0,South America +2023-10-03,77480,1859,"[""Charger"", ""Tablet"", ""Monitor""]",1187.76,"{""loyalty"": ""16%""}",280702,1,Asia +2024-05-20,77481,3466,"[""Monitor""]",1168.24,"{""seasonal"": ""7%""}",150385,0,North America +2023-10-21,77482,483,"[""Wireless Mouse"", ""Laptop""]",2759.77,{},22617,0,Africa +2024-04-15,77483,3540,"[""Charger"", ""Keyboard""]",1308.97,"{""seasonal"": ""29%""}",163182,1,Asia +2024-06-28,77484,5319,"[""Laptop""]",712.57,{},163140,0,Africa +2023-11-25,77485,8514,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2002.33,{},56218,0,North America +2024-01-30,77486,1303,"[""Headphones""]",4439.98,"{""loyalty"": ""28%""}",224306,0,Asia +2024-12-27,77487,4908,"[""Wireless Mouse"", ""Charger""]",1136.7,{},28782,1,Africa +2023-11-10,77488,7180,"[""Wireless Mouse"", ""Monitor""]",2653.76,"{""seasonal"": ""17%""}",65965,1,North America +2023-08-26,77489,1665,"[""Charger"", ""Headphones"", ""Monitor""]",1254.03,{},116675,1,Asia +2023-04-07,77490,9014,"[""Phone""]",917.08,{},269194,0,North America +2023-08-13,77491,8747,"[""Phone"", ""Wireless Mouse""]",2281.01,{},236071,0,North America +2023-03-28,77492,4069,"[""Laptop"", ""Phone""]",3808.71,{},226325,0,Africa +2024-08-04,77493,8611,"[""Laptop"", ""Monitor"", ""Tablet""]",3280.82,{},277727,1,North America +2024-07-24,77494,6923,"[""Phone"", ""Wireless Mouse""]",1984.58,"{"""": ""5%""}",73782,1,Asia +2024-05-28,77495,7594,"[""Phone"", ""Monitor""]",3964.21,{},211341,0,Europe +2024-04-26,77496,1798,"[""Headphones""]",2387.09,"{""loyalty"": ""15%""}",178891,0,South America +2024-02-06,77497,125,"[""Phone"", ""Charger"", ""Monitor""]",4001.69,{},208487,1,South America +2023-02-24,77498,1425,"[""Tablet"", ""Phone"", ""Headphones""]",2895.83,"{""loyalty"": ""21%""}",282305,1,Europe +2023-10-26,77499,5326,"[""Keyboard""]",1188.68,"{""promo"": ""12%""}",230237,1,Europe +2024-08-19,77500,7506,"[""Tablet""]",4410.77,{},254161,0,North America +2023-10-09,77501,9213,"[""Charger"", ""Monitor"", ""Phone""]",145.93,"{"""": ""25%""}",218772,1,Europe +2023-12-08,77502,1707,"[""Headphones"", ""Keyboard"", ""Charger""]",1729.15,"{""promo"": ""15%""}",70963,1,North America +2024-07-09,77503,5849,"[""Charger""]",3665.35,"{""loyalty"": ""23%""}",133981,1,Africa +2023-08-26,77504,4388,"[""Headphones""]",111.17,{},19663,0,Africa +2023-11-19,77505,2076,"[""Laptop"", ""Keyboard""]",645.73,{},174899,0,North America +2024-03-02,77506,3125,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1835.98,"{""seasonal"": ""7%""}",2551,1,Europe +2024-08-27,77507,2753,"[""Headphones""]",2819.46,{},46011,0,Africa +2023-11-12,77508,8744,"[""Tablet"", ""Phone"", ""Laptop""]",267.81,"{""promo"": ""12%""}",115984,0,Asia +2024-10-09,77509,6160,"[""Charger"", ""Phone"", ""Headphones""]",1335.46,{},253221,0,North America +2023-09-16,77510,5846,"[""Charger"", ""Keyboard""]",2437.09,"{""promo"": ""26%""}",255668,0,South America +2024-01-09,77511,7798,"[""Laptop"", ""Monitor""]",4434.93,{},169360,0,Africa +2023-04-23,77512,8317,"[""Phone""]",2525.14,{},221396,1,North America +2024-08-30,77513,7372,"[""Charger""]",2446.15,"{""seasonal"": ""12%""}",121962,0,North America +2023-07-18,77514,1290,"[""Phone"", ""Laptop""]",1625.99,{},11866,1,Asia +2024-05-21,77515,6909,"[""Headphones"", ""Monitor""]",462.6,"{""promo"": ""21%""}",6677,0,Africa +2024-06-26,77516,4530,"[""Tablet""]",4184.61,"{""promo"": ""14%""}",211290,1,South America +2024-05-04,77517,9791,"[""Phone""]",1211.19,{},45145,1,North America +2023-03-28,77518,1597,"[""Headphones""]",2238.83,"{""promo"": ""16%""}",135951,1,Asia +2023-01-01,77519,5039,"[""Phone""]",2730.09,{},262508,1,North America +2023-06-29,77520,597,"[""Laptop""]",1695.93,{},206105,1,North America +2024-03-21,77521,1645,"[""Keyboard"", ""Wireless Mouse""]",1154.28,{},218567,1,Asia +2024-02-27,77522,7205,"[""Monitor"", ""Charger""]",886.79,"{""seasonal"": ""29%""}",105136,0,North America +2024-08-11,77523,8280,"[""Wireless Mouse""]",3251.11,"{"""": ""27%""}",146267,1,North America +2023-07-26,77524,2812,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2156.27,{},19374,0,Asia +2023-01-31,77525,2145,"[""Laptop""]",2991.09,{},154663,0,South America +2024-05-06,77526,8343,"[""Charger"", ""Laptop""]",1070.63,"{""loyalty"": ""30%""}",13118,1,Europe +2023-08-06,77527,8388,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3508.47,{},234710,0,Asia +2023-08-28,77528,5532,"[""Keyboard"", ""Monitor"", ""Tablet""]",1695.96,{},173069,1,Europe +2023-02-21,77529,7817,"[""Monitor"", ""Phone"", ""Keyboard""]",233.1,{},65401,1,Asia +2024-09-05,77530,9009,"[""Wireless Mouse""]",3015.02,"{""loyalty"": ""19%""}",20683,0,North America +2024-01-08,77531,1768,"[""Wireless Mouse""]",3583.36,{},140340,1,South America +2023-06-08,77532,2512,"[""Headphones""]",3143.08,"{""promo"": ""23%""}",123700,0,North America +2024-03-15,77533,8673,"[""Monitor"", ""Keyboard"", ""Headphones""]",1781.49,{},232482,0,Asia +2024-08-19,77534,9908,"[""Tablet""]",4628.96,"{"""": ""6%""}",128423,1,South America +2024-12-01,77535,764,"[""Tablet"", ""Keyboard"", ""Headphones""]",4197.97,"{""loyalty"": ""14%""}",61631,1,North America +2024-02-29,77536,7674,"[""Monitor"", ""Wireless Mouse""]",281.88,"{""loyalty"": ""25%""}",107886,0,North America +2023-04-06,77537,1044,"[""Monitor""]",4158.17,"{""loyalty"": ""23%""}",122048,0,Africa +2023-05-13,77538,5943,"[""Charger""]",2957.14,{},201846,0,Europe +2024-06-06,77539,2892,"[""Keyboard"", ""Phone""]",2977.7,"{"""": ""20%""}",249997,0,Africa +2023-09-15,77540,147,"[""Monitor""]",3870.41,"{"""": ""11%""}",181534,1,North America +2024-10-08,77541,174,"[""Monitor"", ""Wireless Mouse""]",3375.5,{},74229,0,South America +2023-11-03,77542,1632,"[""Laptop"", ""Wireless Mouse""]",3955.36,"{""loyalty"": ""28%""}",70267,0,North America +2024-01-03,77543,2015,"[""Tablet"", ""Headphones""]",4510.74,{},183083,1,Europe +2024-02-19,77544,4980,"[""Keyboard""]",4665.78,"{""seasonal"": ""5%""}",19529,0,Africa +2023-01-10,77545,1167,"[""Keyboard""]",969.83,{},258013,0,Asia +2023-07-29,77546,3812,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",146.1,{},64137,0,Europe +2023-02-12,77547,8499,"[""Laptop"", ""Phone""]",3921.5,"{"""": ""17%""}",173557,1,Asia +2023-10-30,77548,680,"[""Headphones""]",2195.99,"{""promo"": ""26%""}",67912,0,South America +2024-08-27,77549,3616,"[""Laptop"", ""Charger"", ""Monitor""]",4985.51,"{"""": ""30%""}",115621,1,Europe +2023-03-18,77550,7653,"[""Tablet"", ""Monitor""]",1722.15,"{""loyalty"": ""13%""}",193287,1,Europe +2023-04-01,77551,4306,"[""Phone"", ""Laptop""]",4578.96,{},153056,0,Europe +2023-12-19,77552,8798,"[""Laptop"", ""Monitor""]",1334.87,{},60014,0,Europe +2024-04-06,77553,1635,"[""Charger""]",815.96,"{""seasonal"": ""7%""}",28153,1,Europe +2023-12-17,77554,5127,"[""Tablet"", ""Monitor"", ""Headphones""]",1017.32,"{""seasonal"": ""14%""}",170668,1,Europe +2024-10-29,77555,1866,"[""Charger"", ""Headphones"", ""Keyboard""]",4420.83,{},134773,1,North America +2023-12-20,77556,1280,"[""Headphones""]",2464.53,"{""loyalty"": ""22%""}",49413,0,North America +2023-07-31,77557,6723,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4666.15,{},63711,0,South America +2023-08-11,77558,166,"[""Charger"", ""Phone""]",1241.17,"{""loyalty"": ""25%""}",64919,1,Europe +2023-06-18,77559,6156,"[""Wireless Mouse""]",4550.02,"{""loyalty"": ""21%""}",210520,1,North America +2023-01-03,77560,2914,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2923.69,{},75338,0,Europe +2023-03-02,77561,4940,"[""Charger"", ""Headphones"", ""Tablet""]",3748.39,{},86825,0,North America +2024-09-17,77562,1964,"[""Charger""]",753.35,"{""promo"": ""12%""}",209935,1,South America +2023-11-09,77563,1649,"[""Laptop"", ""Keyboard"", ""Monitor""]",1082.93,{},233790,0,South America +2023-08-06,77564,8274,"[""Phone"", ""Headphones""]",4647.06,{},53333,1,North America +2024-12-14,77565,2806,"[""Charger"", ""Wireless Mouse""]",3966.44,"{""seasonal"": ""24%""}",172090,0,Africa +2024-06-23,77566,7260,"[""Headphones""]",1678.72,"{""seasonal"": ""12%""}",132184,1,South America +2023-09-27,77567,357,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3168.73,{},106840,1,Europe +2024-05-16,77568,4269,"[""Tablet""]",3837.12,"{""promo"": ""7%""}",247143,0,Europe +2023-03-14,77569,1109,"[""Keyboard""]",3667.2,"{""promo"": ""8%""}",154621,0,Asia +2024-10-16,77570,587,"[""Wireless Mouse""]",1094.01,{},95563,0,Africa +2024-04-16,77571,6676,"[""Headphones"", ""Phone""]",2749.77,{},16993,1,Asia +2023-06-23,77572,3362,"[""Wireless Mouse"", ""Charger""]",4806.7,"{"""": ""11%""}",227819,1,Africa +2023-06-07,77573,1033,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3402.07,"{"""": ""6%""}",20309,0,Asia +2023-05-29,77574,7676,"[""Laptop"", ""Charger"", ""Keyboard""]",3409.7,"{""seasonal"": ""15%""}",245235,0,Europe +2023-06-11,77575,7870,"[""Keyboard"", ""Monitor""]",539.26,"{""seasonal"": ""11%""}",125273,1,North America +2023-11-07,77576,1261,"[""Monitor"", ""Laptop"", ""Phone""]",2794.22,{},214346,0,Asia +2023-06-09,77577,2872,"[""Keyboard"", ""Charger"", ""Monitor""]",4903.04,{},189136,0,Europe +2023-10-27,77578,9028,"[""Monitor""]",341.25,"{"""": ""22%""}",62287,1,North America +2023-04-15,77579,5977,"[""Keyboard""]",3732.46,"{""seasonal"": ""13%""}",218146,0,South America +2023-09-10,77580,9027,"[""Tablet"", ""Monitor""]",4405.72,"{""seasonal"": ""26%""}",35910,1,Asia +2023-02-24,77581,1937,"[""Phone"", ""Charger"", ""Laptop""]",1573.85,"{""promo"": ""26%""}",73426,1,Europe +2024-12-31,77582,8363,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4838.17,{},139362,1,Africa +2023-08-25,77583,8026,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1283.39,"{""seasonal"": ""9%""}",294349,1,North America +2024-10-15,77584,9879,"[""Charger"", ""Keyboard"", ""Monitor""]",3174.66,{},256148,1,Asia +2023-06-24,77585,2343,"[""Laptop""]",3967.54,{},143195,0,South America +2024-05-02,77586,673,"[""Phone"", ""Tablet""]",497.84,{},31007,1,Africa +2024-05-20,77587,5991,"[""Laptop"", ""Wireless Mouse""]",2632.47,{},38130,1,Africa +2024-10-26,77588,9336,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3454.23,{},25392,0,North America +2023-03-23,77589,160,"[""Charger"", ""Laptop""]",4028.87,{},259453,1,Asia +2023-05-05,77590,2836,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2077.07,{},189011,1,South America +2024-12-09,77591,3899,"[""Tablet""]",2316.09,"{""promo"": ""26%""}",271498,0,Europe +2024-10-29,77592,2800,"[""Tablet""]",1989.9,{},45542,1,Asia +2023-03-10,77593,4129,"[""Charger"", ""Keyboard"", ""Tablet""]",3087.88,"{""seasonal"": ""19%""}",255335,0,South America +2023-06-12,77594,8927,"[""Wireless Mouse""]",2024.47,"{"""": ""17%""}",169377,0,Africa +2023-04-25,77595,914,"[""Phone""]",3807.32,"{"""": ""9%""}",77063,0,Africa +2023-07-23,77596,4175,"[""Monitor""]",3197.56,{},21022,1,Asia +2023-05-15,77597,1319,"[""Monitor""]",2647.16,"{"""": ""21%""}",250588,1,South America +2024-04-17,77598,9303,"[""Monitor"", ""Charger""]",2983.51,"{"""": ""17%""}",297135,1,North America +2024-02-10,77599,7105,"[""Wireless Mouse"", ""Tablet""]",661.42,{},167937,0,Europe +2023-02-26,77600,7289,"[""Keyboard"", ""Charger""]",1884.47,{},160990,1,Europe +2024-12-14,77601,5357,"[""Charger""]",1806.79,{},253185,1,Africa +2023-09-13,77602,934,"[""Laptop"", ""Tablet"", ""Keyboard""]",2801.03,{},293350,1,North America +2023-07-14,77603,4628,"[""Monitor"", ""Laptop"", ""Keyboard""]",1564.12,{},97121,1,Asia +2023-07-20,77604,5353,"[""Charger"", ""Wireless Mouse""]",3980.66,"{""seasonal"": ""29%""}",96682,1,Asia +2024-03-16,77605,8103,"[""Laptop"", ""Wireless Mouse""]",4343.42,{},7243,0,South America +2023-10-31,77606,1918,"[""Phone"", ""Charger""]",674.79,{},39353,0,Africa +2024-06-26,77607,3472,"[""Charger""]",2853.94,{},46788,1,South America +2024-09-23,77608,2715,"[""Laptop"", ""Headphones""]",2758.0,{},62880,1,Asia +2023-02-14,77609,3691,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3020.15,"{""seasonal"": ""21%""}",45151,0,Asia +2024-01-04,77610,283,"[""Laptop""]",2385.13,"{"""": ""15%""}",238058,0,South America +2023-08-24,77611,3789,"[""Monitor"", ""Phone""]",4075.18,{},186264,1,Africa +2024-05-24,77612,2013,"[""Wireless Mouse""]",3606.89,{},4448,1,Africa +2024-03-25,77613,4201,"[""Wireless Mouse""]",3107.15,"{""promo"": ""17%""}",155853,0,Asia +2024-05-06,77614,5813,"[""Charger"", ""Laptop""]",1876.12,{},67478,0,North America +2024-07-11,77615,4029,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",551.01,"{""seasonal"": ""10%""}",158220,0,North America +2023-10-05,77616,6621,"[""Monitor"", ""Tablet"", ""Laptop""]",115.05,{},153111,1,Africa +2024-08-28,77617,1151,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",730.94,{},214710,0,Asia +2023-05-07,77618,3400,"[""Laptop"", ""Monitor""]",3646.86,"{""loyalty"": ""14%""}",244989,1,North America +2023-12-09,77619,3556,"[""Phone""]",1405.88,"{""seasonal"": ""6%""}",291482,1,Africa +2024-09-17,77620,5542,"[""Tablet""]",4361.35,{},175214,1,South America +2024-02-12,77621,6400,"[""Phone"", ""Headphones""]",1869.86,{},275652,0,Asia +2024-03-21,77622,6635,"[""Tablet"", ""Wireless Mouse""]",2870.88,{},216136,0,North America +2024-01-24,77623,6924,"[""Keyboard""]",2174.77,{},19659,0,Asia +2023-04-22,77624,2001,"[""Charger"", ""Keyboard"", ""Headphones""]",1056.27,{},58466,1,Asia +2023-12-10,77625,2373,"[""Charger"", ""Headphones""]",121.38,{},138288,1,North America +2024-07-03,77626,2767,"[""Tablet""]",4536.5,{},187183,1,Africa +2023-05-04,77627,3262,"[""Phone"", ""Headphones"", ""Charger""]",332.78,"{""seasonal"": ""9%""}",113632,0,North America +2023-09-11,77628,9027,"[""Keyboard""]",3782.36,"{""promo"": ""27%""}",247152,0,North America +2024-10-05,77629,7941,"[""Phone"", ""Laptop"", ""Headphones""]",383.23,"{""loyalty"": ""17%""}",129024,0,South America +2024-04-19,77630,5002,"[""Laptop"", ""Tablet""]",2430.61,"{""loyalty"": ""5%""}",74731,1,Asia +2024-07-23,77631,8176,"[""Headphones""]",1511.46,"{""promo"": ""16%""}",31412,1,Europe +2024-10-03,77632,8424,"[""Phone"", ""Charger"", ""Headphones""]",1443.71,"{""loyalty"": ""19%""}",19920,0,Asia +2023-03-16,77633,7689,"[""Phone""]",3642.61,"{""seasonal"": ""28%""}",67746,0,Africa +2023-03-14,77634,1346,"[""Laptop"", ""Monitor"", ""Tablet""]",433.76,"{""seasonal"": ""20%""}",47042,0,Europe +2024-05-11,77635,7429,"[""Keyboard"", ""Monitor"", ""Tablet""]",2065.51,"{""seasonal"": ""11%""}",158788,1,South America +2023-09-20,77636,9645,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2012.99,{},16198,0,South America +2024-09-06,77637,7594,"[""Wireless Mouse"", ""Keyboard""]",4030.39,"{""seasonal"": ""5%""}",162183,0,South America +2024-06-17,77638,9586,"[""Phone"", ""Headphones""]",4784.08,{},44146,1,Asia +2023-01-02,77639,1831,"[""Tablet"", ""Laptop""]",3439.96,{},3734,0,Europe +2023-08-24,77640,9154,"[""Monitor""]",4579.77,"{""promo"": ""15%""}",34070,0,Europe +2023-06-19,77641,6975,"[""Tablet""]",3676.67,{},125073,0,South America +2024-08-01,77642,9249,"[""Tablet"", ""Monitor""]",4665.74,{},45549,1,Africa +2024-04-25,77643,7362,"[""Phone""]",2819.13,"{""loyalty"": ""14%""}",116513,1,Africa +2024-05-02,77644,2321,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4867.55,{},48572,1,North America +2023-10-08,77645,5762,"[""Monitor""]",4863.62,"{""loyalty"": ""30%""}",62875,0,Africa +2023-12-07,77646,796,"[""Tablet"", ""Monitor""]",963.36,{},129878,1,Africa +2024-09-10,77647,9090,"[""Tablet"", ""Headphones"", ""Keyboard""]",3840.06,{},121502,1,Africa +2023-12-06,77648,8320,"[""Charger"", ""Keyboard""]",3848.31,{},129463,1,Africa +2024-10-18,77649,4362,"[""Wireless Mouse""]",599.9,"{""promo"": ""21%""}",191424,1,Africa +2023-07-08,77650,4087,"[""Charger""]",947.74,{},174998,1,Europe +2023-10-14,77651,2890,"[""Phone"", ""Wireless Mouse""]",911.0,"{"""": ""26%""}",260991,0,Europe +2024-05-29,77652,8743,"[""Phone"", ""Laptop"", ""Monitor""]",410.85,"{""seasonal"": ""16%""}",107661,1,Asia +2023-03-13,77653,9606,"[""Monitor"", ""Laptop""]",2490.27,{},293216,1,Europe +2024-09-01,77654,3783,"[""Laptop"", ""Keyboard""]",4155.58,{},97073,0,Europe +2024-12-21,77655,3396,"[""Keyboard"", ""Wireless Mouse""]",426.69,"{""loyalty"": ""17%""}",269882,0,North America +2023-03-19,77656,2450,"[""Wireless Mouse"", ""Charger""]",4016.12,"{""loyalty"": ""14%""}",248141,1,Africa +2023-04-15,77657,344,"[""Headphones""]",3492.17,{},1121,1,Africa +2024-11-20,77658,2973,"[""Laptop"", ""Keyboard"", ""Tablet""]",667.45,{},178147,1,North America +2024-09-26,77659,6598,"[""Keyboard"", ""Headphones"", ""Laptop""]",3357.84,{},247478,1,North America +2023-08-31,77660,143,"[""Phone"", ""Tablet""]",2742.76,{},74996,1,Africa +2024-09-23,77661,8997,"[""Wireless Mouse"", ""Headphones""]",297.3,{},286053,0,Asia +2024-02-04,77662,630,"[""Tablet"", ""Laptop""]",3727.96,"{""seasonal"": ""30%""}",218451,0,Africa +2023-09-19,77663,8936,"[""Laptop"", ""Monitor""]",733.12,{},128956,0,South America +2024-07-17,77664,1392,"[""Laptop"", ""Headphones""]",1136.72,{},45812,1,North America +2023-12-27,77665,9501,"[""Phone""]",1465.08,{},41654,0,South America +2023-02-03,77666,2332,"[""Tablet""]",3566.46,{},22126,1,Europe +2023-09-08,77667,6417,"[""Keyboard"", ""Phone"", ""Laptop""]",1446.51,{},182278,1,South America +2023-09-21,77668,6724,"[""Keyboard"", ""Charger""]",794.59,{},151380,0,Asia +2024-02-09,77669,2455,"[""Charger"", ""Wireless Mouse""]",2378.95,"{"""": ""11%""}",35440,1,South America +2024-05-22,77670,8387,"[""Headphones"", ""Phone"", ""Laptop""]",3000.99,{},69565,1,Asia +2024-10-19,77671,3818,"[""Phone""]",3114.8,{},65190,0,North America +2024-01-09,77672,9236,"[""Laptop""]",1844.44,{},228656,1,South America +2023-05-28,77673,6825,"[""Keyboard"", ""Headphones"", ""Phone""]",234.75,{},201566,0,North America +2023-02-20,77674,9733,"[""Wireless Mouse"", ""Charger""]",4840.8,"{""promo"": ""30%""}",148897,1,Europe +2023-01-21,77675,8197,"[""Laptop"", ""Tablet"", ""Monitor""]",2935.75,{},282892,0,North America +2023-09-08,77676,578,"[""Tablet"", ""Laptop""]",2619.53,"{""promo"": ""20%""}",288460,1,Asia +2023-04-02,77677,561,"[""Laptop""]",3794.26,{},205188,1,North America +2023-05-28,77678,5411,"[""Charger""]",3581.19,"{""promo"": ""21%""}",42931,0,Europe +2023-04-18,77679,4721,"[""Keyboard""]",895.86,{},223398,0,Africa +2023-11-30,77680,1281,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4699.49,"{""seasonal"": ""19%""}",74528,1,South America +2024-08-07,77681,6229,"[""Tablet"", ""Laptop""]",4066.79,"{""loyalty"": ""12%""}",220575,0,Asia +2023-03-15,77682,8183,"[""Keyboard"", ""Phone"", ""Tablet""]",2738.53,{},19531,1,Europe +2023-04-03,77683,4070,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1964.97,"{""loyalty"": ""12%""}",240689,0,North America +2023-07-13,77684,8964,"[""Keyboard"", ""Monitor"", ""Charger""]",951.02,{},180927,1,South America +2023-10-08,77685,6258,"[""Headphones""]",4211.62,"{"""": ""10%""}",205495,0,South America +2024-06-03,77686,6576,"[""Monitor"", ""Laptop""]",3963.65,{},200344,0,Europe +2023-05-31,77687,4587,"[""Wireless Mouse""]",772.45,"{"""": ""30%""}",15877,0,Asia +2023-12-15,77688,2632,"[""Wireless Mouse""]",3761.01,"{"""": ""26%""}",92043,0,North America +2024-11-21,77689,3829,"[""Wireless Mouse""]",4363.16,{},71010,0,Asia +2024-04-04,77690,3186,"[""Phone"", ""Monitor"", ""Keyboard""]",537.18,{},89220,0,North America +2023-09-18,77691,9852,"[""Phone"", ""Charger""]",4274.03,{},281553,1,North America +2024-07-25,77692,6811,"[""Laptop"", ""Monitor""]",2070.51,{},63628,0,Asia +2023-09-17,77693,1908,"[""Wireless Mouse"", ""Tablet""]",2814.06,"{""promo"": ""5%""}",168093,1,North America +2024-11-17,77694,9958,"[""Tablet""]",2111.91,"{"""": ""15%""}",114643,0,South America +2023-12-10,77695,6717,"[""Monitor"", ""Keyboard"", ""Charger""]",255.48,"{""loyalty"": ""20%""}",228325,0,Asia +2024-03-26,77696,787,"[""Monitor"", ""Keyboard"", ""Laptop""]",3590.94,"{""seasonal"": ""30%""}",129279,0,South America +2024-04-27,77697,9492,"[""Phone"", ""Monitor"", ""Charger""]",4303.36,{},34570,1,Africa +2024-11-04,77698,6714,"[""Charger"", ""Laptop""]",3425.74,{},106358,1,Europe +2023-12-04,77699,7847,"[""Phone"", ""Tablet"", ""Laptop""]",2222.86,{},244635,1,Asia +2024-05-24,77700,1625,"[""Tablet""]",2339.6,"{""loyalty"": ""5%""}",116927,1,Europe +2024-09-19,77701,2112,"[""Charger""]",3006.44,{},167087,0,Africa +2024-12-08,77702,1315,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",686.93,"{"""": ""9%""}",220959,0,South America +2024-12-19,77703,8022,"[""Charger"", ""Monitor""]",4643.02,{},160936,0,Africa +2024-11-18,77704,10,"[""Laptop"", ""Keyboard"", ""Tablet""]",4259.19,{},21657,1,Africa +2024-04-27,77705,56,"[""Laptop"", ""Tablet"", ""Headphones""]",2720.49,{},4712,0,Europe +2023-06-07,77706,9609,"[""Monitor""]",798.97,{},117729,1,Asia +2023-04-21,77707,8510,"[""Charger"", ""Phone"", ""Tablet""]",4072.22,"{""promo"": ""9%""}",137438,0,Africa +2023-03-05,77708,1326,"[""Phone"", ""Laptop"", ""Monitor""]",681.54,"{""promo"": ""26%""}",279970,0,Europe +2024-11-03,77709,1818,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3725.74,"{""loyalty"": ""25%""}",251389,0,Africa +2023-02-11,77710,2662,"[""Keyboard"", ""Laptop""]",532.16,"{""seasonal"": ""26%""}",88412,0,Asia +2024-08-18,77711,5833,"[""Wireless Mouse"", ""Headphones""]",4936.14,"{""loyalty"": ""26%""}",229646,1,Europe +2023-12-11,77712,686,"[""Charger"", ""Tablet""]",4125.99,{},264572,0,Asia +2024-06-03,77713,1663,"[""Phone""]",3267.64,{},58929,1,North America +2024-08-27,77714,3608,"[""Laptop"", ""Keyboard"", ""Tablet""]",4921.5,"{""seasonal"": ""6%""}",246117,0,Africa +2023-04-18,77715,136,"[""Keyboard"", ""Monitor""]",4218.48,{},23164,1,North America +2024-01-04,77716,9302,"[""Headphones"", ""Tablet""]",2618.13,{},222690,1,North America +2023-08-13,77717,4882,"[""Headphones""]",3223.49,{},111047,1,South America +2024-04-13,77718,2182,"[""Charger""]",2895.35,"{""loyalty"": ""22%""}",101565,1,Africa +2023-02-04,77719,8415,"[""Charger"", ""Monitor"", ""Laptop""]",1319.02,"{""loyalty"": ""9%""}",222999,1,Asia +2024-06-10,77720,1786,"[""Wireless Mouse""]",207.52,"{"""": ""5%""}",189153,0,South America +2024-09-24,77721,9853,"[""Laptop""]",2345.68,"{""promo"": ""30%""}",168064,0,North America +2023-04-16,77722,9813,"[""Charger""]",3468.26,{},293476,1,Europe +2023-06-19,77723,262,"[""Tablet"", ""Monitor""]",1054.72,{},262680,0,South America +2023-03-21,77724,4575,"[""Phone""]",3109.67,"{""promo"": ""11%""}",212181,0,Africa +2024-01-17,77725,4264,"[""Tablet"", ""Laptop""]",3390.04,"{""seasonal"": ""27%""}",1829,0,Europe +2024-08-29,77726,4552,"[""Charger"", ""Laptop"", ""Headphones""]",3835.75,{},143833,0,Africa +2024-05-05,77727,2539,"[""Phone""]",3415.86,{},5904,1,Africa +2023-01-18,77728,1536,"[""Phone"", ""Tablet"", ""Keyboard""]",4330.08,{},72903,1,Africa +2023-03-12,77729,6978,"[""Wireless Mouse"", ""Tablet""]",1701.85,"{""loyalty"": ""26%""}",182155,0,Europe +2023-08-23,77730,4363,"[""Tablet"", ""Phone""]",420.74,{},159361,1,Asia +2024-08-13,77731,374,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",199.56,{},290017,0,South America +2023-08-28,77732,9625,"[""Phone""]",3949.13,{},2106,1,Africa +2024-04-06,77733,8414,"[""Keyboard"", ""Phone""]",4274.66,{},204208,0,Africa +2023-08-04,77734,7780,"[""Phone""]",241.51,{},257545,1,South America +2023-03-17,77735,9784,"[""Headphones"", ""Monitor""]",2689.74,"{"""": ""19%""}",61860,1,North America +2024-03-15,77736,5308,"[""Tablet"", ""Phone""]",4594.58,"{"""": ""6%""}",33406,1,Africa +2023-03-28,77737,5489,"[""Headphones"", ""Phone"", ""Monitor""]",1996.66,{},194008,1,South America +2024-11-22,77738,6784,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1776.28,{},143133,1,Europe +2023-08-02,77739,2747,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4950.8,"{""promo"": ""5%""}",239631,0,Africa +2024-07-29,77740,3460,"[""Tablet"", ""Headphones""]",2567.2,"{"""": ""26%""}",35077,0,Europe +2023-02-20,77741,7255,"[""Wireless Mouse"", ""Tablet""]",4587.67,"{"""": ""13%""}",134946,1,Africa +2024-10-31,77742,4162,"[""Monitor""]",4223.71,"{""seasonal"": ""26%""}",62271,0,Asia +2024-01-08,77743,6419,"[""Monitor"", ""Keyboard"", ""Charger""]",2344.15,"{"""": ""14%""}",193031,1,Europe +2023-10-22,77744,3852,"[""Headphones""]",2327.53,{},26624,1,Asia +2024-08-13,77745,4609,"[""Phone"", ""Laptop""]",3841.19,{},254972,0,South America +2023-10-26,77746,6150,"[""Tablet""]",3807.61,"{""seasonal"": ""9%""}",11128,0,Europe +2023-04-04,77747,2305,"[""Tablet""]",458.54,{},220929,0,South America +2024-01-27,77748,6685,"[""Laptop""]",2589.11,{},224804,1,South America +2024-04-02,77749,5496,"[""Phone"", ""Headphones""]",2338.31,"{""promo"": ""30%""}",177141,0,Europe +2023-02-19,77750,2449,"[""Monitor"", ""Wireless Mouse""]",3681.14,"{""seasonal"": ""5%""}",265033,1,Africa +2024-06-08,77751,9150,"[""Keyboard"", ""Headphones""]",4062.26,{},44571,1,Asia +2024-06-10,77752,8789,"[""Charger"", ""Phone""]",1766.82,{},147443,1,North America +2023-10-09,77753,6949,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3952.4,{},103615,0,South America +2023-04-23,77754,7284,"[""Phone"", ""Monitor"", ""Tablet""]",4435.68,"{""loyalty"": ""13%""}",89913,0,Africa +2023-09-29,77755,1181,"[""Charger""]",3964.51,{},63309,0,Europe +2023-05-07,77756,4841,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2125.37,{},214189,0,Asia +2023-03-02,77757,7277,"[""Phone"", ""Monitor""]",4805.53,{},233032,1,Europe +2024-08-11,77758,8658,"[""Phone""]",1190.07,"{"""": ""7%""}",147384,1,South America +2023-03-22,77759,4947,"[""Phone"", ""Tablet"", ""Keyboard""]",800.57,{},28090,1,North America +2024-10-26,77760,7648,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3804.58,"{""seasonal"": ""19%""}",172245,0,Africa +2024-11-26,77761,6808,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",317.1,"{"""": ""16%""}",21464,1,North America +2023-10-11,77762,840,"[""Wireless Mouse""]",3218.07,{},64764,0,Asia +2024-08-09,77763,3999,"[""Charger"", ""Keyboard"", ""Phone""]",3739.34,{},30111,1,Asia +2023-07-11,77764,6606,"[""Phone"", ""Laptop""]",649.99,{},281515,1,South America +2023-04-04,77765,771,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1315.61,{},273308,0,Asia +2024-02-02,77766,7324,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3823.9,"{""promo"": ""17%""}",257198,1,Europe +2024-10-05,77767,9595,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1232.98,"{"""": ""22%""}",8952,0,Africa +2023-02-09,77768,8789,"[""Headphones"", ""Tablet""]",3222.98,{},203943,1,North America +2023-02-10,77769,8101,"[""Monitor"", ""Keyboard""]",2972.11,{},165415,0,North America +2023-04-27,77770,4238,"[""Monitor"", ""Headphones""]",1671.83,"{"""": ""26%""}",89359,1,South America +2024-12-15,77771,5784,"[""Charger"", ""Wireless Mouse""]",2155.95,"{""seasonal"": ""18%""}",63339,1,Europe +2024-08-08,77772,6379,"[""Wireless Mouse""]",1626.03,"{""seasonal"": ""25%""}",51744,0,North America +2023-09-28,77773,2932,"[""Laptop"", ""Phone"", ""Monitor""]",1024.02,{},71962,0,Asia +2024-05-08,77774,67,"[""Monitor"", ""Headphones"", ""Charger""]",3694.31,"{"""": ""30%""}",67736,1,Europe +2024-02-08,77775,1775,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2516.74,"{""promo"": ""6%""}",115212,0,Asia +2024-10-26,77776,4717,"[""Headphones"", ""Monitor"", ""Keyboard""]",3990.7,"{"""": ""11%""}",161573,0,Africa +2023-06-02,77777,757,"[""Tablet""]",3685.35,{},145689,0,South America +2023-12-22,77778,1384,"[""Wireless Mouse"", ""Tablet""]",1417.06,{},273092,0,South America +2023-04-09,77779,8503,"[""Tablet"", ""Wireless Mouse""]",1199.5,"{""seasonal"": ""12%""}",193594,1,Africa +2024-02-24,77780,4296,"[""Charger"", ""Monitor""]",2932.7,"{"""": ""8%""}",124196,1,Europe +2023-07-16,77781,520,"[""Monitor"", ""Keyboard""]",4612.44,{},100025,1,North America +2023-06-08,77782,5469,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3199.29,"{""promo"": ""14%""}",174080,0,South America +2023-12-21,77783,6796,"[""Keyboard"", ""Charger""]",4100.93,"{""seasonal"": ""23%""}",193730,0,Asia +2023-04-17,77784,8950,"[""Monitor"", ""Tablet"", ""Charger""]",664.13,{},146998,1,North America +2024-08-28,77785,566,"[""Laptop"", ""Monitor""]",4776.45,"{""loyalty"": ""23%""}",27710,1,Asia +2023-02-22,77786,4528,"[""Phone"", ""Charger""]",77.4,{},173018,0,Africa +2023-04-08,77787,2244,"[""Keyboard""]",2779.18,{},51713,1,Asia +2023-04-04,77788,3832,"[""Laptop"", ""Phone""]",4840.86,{},54327,1,Africa +2023-05-19,77789,2964,"[""Keyboard"", ""Monitor""]",496.0,{},131912,1,South America +2023-11-21,77790,5351,"[""Monitor""]",1682.53,"{""promo"": ""30%""}",234986,1,Asia +2024-02-02,77791,5453,"[""Phone""]",2240.61,"{""seasonal"": ""19%""}",11952,0,Africa +2024-12-26,77792,5870,"[""Tablet"", ""Wireless Mouse""]",524.66,{},299265,0,Asia +2023-08-21,77793,2516,"[""Phone""]",526.72,"{"""": ""8%""}",283697,0,North America +2023-12-01,77794,5862,"[""Laptop"", ""Charger"", ""Tablet""]",1270.84,{},148916,0,Europe +2024-06-10,77795,3717,"[""Headphones""]",1858.41,"{""promo"": ""6%""}",188217,0,Asia +2023-04-15,77796,7742,"[""Wireless Mouse"", ""Laptop""]",4033.53,{},114559,1,Asia +2023-01-14,77797,7346,"[""Phone"", ""Charger"", ""Tablet""]",1472.65,"{""seasonal"": ""24%""}",284059,0,Asia +2023-08-25,77798,2101,"[""Charger""]",2167.86,"{""seasonal"": ""15%""}",227285,1,Europe +2023-11-16,77799,2060,"[""Wireless Mouse""]",3488.4,{},134192,0,Africa +2023-07-23,77800,7940,"[""Headphones""]",1620.59,"{""loyalty"": ""23%""}",137575,1,Africa +2023-10-14,77801,8115,"[""Headphones"", ""Wireless Mouse""]",1388.0,"{""promo"": ""23%""}",99441,0,Europe +2024-07-04,77802,8354,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4170.72,"{""seasonal"": ""10%""}",229910,0,South America +2024-08-02,77803,699,"[""Headphones"", ""Charger""]",3858.02,"{""seasonal"": ""16%""}",157978,0,South America +2024-12-25,77804,3220,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3181.98,"{""promo"": ""22%""}",182083,1,Africa +2023-01-10,77805,2354,"[""Headphones"", ""Laptop""]",4667.19,{},167144,0,Africa +2024-08-16,77806,2465,"[""Wireless Mouse"", ""Charger""]",2103.11,{},70720,0,South America +2024-01-25,77807,263,"[""Phone"", ""Monitor"", ""Laptop""]",2236.95,"{""seasonal"": ""9%""}",129475,0,South America +2024-04-29,77808,2266,"[""Headphones"", ""Charger""]",2312.17,{},75199,1,Asia +2024-02-18,77809,9894,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2672.68,{},221641,0,North America +2023-08-24,77810,4991,"[""Wireless Mouse""]",3908.83,"{""promo"": ""23%""}",21670,1,South America +2023-02-12,77811,6052,"[""Charger"", ""Monitor"", ""Tablet""]",513.24,{},134429,1,Africa +2023-06-03,77812,2065,"[""Tablet"", ""Phone""]",1922.72,"{""loyalty"": ""27%""}",175787,1,Africa +2024-01-02,77813,9072,"[""Charger"", ""Wireless Mouse""]",4155.62,"{""loyalty"": ""28%""}",212534,0,Asia +2024-05-11,77814,5720,"[""Headphones"", ""Laptop"", ""Keyboard""]",4274.18,"{""loyalty"": ""7%""}",262967,0,Asia +2024-10-24,77815,4587,"[""Charger""]",4159.79,{},197562,1,Europe +2023-06-20,77816,9788,"[""Charger"", ""Monitor"", ""Tablet""]",3668.28,{},292872,1,North America +2023-03-27,77817,8900,"[""Laptop""]",3278.76,{},17000,1,Asia +2023-01-06,77818,4993,"[""Keyboard"", ""Laptop""]",2094.34,{},273843,1,Asia +2024-08-21,77819,4487,"[""Headphones""]",4279.26,{},108183,1,Europe +2023-07-02,77820,8121,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4509.61,{},193368,1,Europe +2024-01-18,77821,1738,"[""Headphones""]",2008.57,{},225627,0,South America +2023-12-27,77822,7862,"[""Phone"", ""Charger""]",3184.72,"{"""": ""5%""}",245571,1,Europe +2024-11-18,77823,8092,"[""Tablet""]",3832.89,"{""promo"": ""19%""}",45217,0,Asia +2023-01-23,77824,6908,"[""Wireless Mouse""]",624.17,"{""promo"": ""5%""}",186276,0,South America +2024-06-13,77825,9506,"[""Headphones""]",1139.2,{},294137,1,North America +2023-11-28,77826,6650,"[""Tablet"", ""Headphones"", ""Charger""]",1509.34,"{"""": ""12%""}",145870,1,North America +2024-10-18,77827,9178,"[""Tablet"", ""Wireless Mouse""]",120.84,{},222327,0,Asia +2024-03-11,77828,2021,"[""Keyboard""]",1996.55,"{""loyalty"": ""8%""}",210121,0,Europe +2024-08-03,77829,4059,"[""Charger""]",1605.88,"{"""": ""14%""}",259606,0,Asia +2023-12-29,77830,9057,"[""Headphones"", ""Phone""]",3263.51,{},63729,0,North America +2023-08-13,77831,4749,"[""Laptop""]",4674.18,"{""seasonal"": ""17%""}",138817,0,South America +2024-06-06,77832,9449,"[""Wireless Mouse""]",537.67,{},91243,1,Europe +2023-09-21,77833,9006,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1271.41,"{""seasonal"": ""10%""}",77456,0,South America +2024-04-23,77834,6820,"[""Wireless Mouse"", ""Keyboard""]",4799.83,{},222812,0,South America +2023-08-20,77835,4275,"[""Monitor"", ""Laptop"", ""Phone""]",2314.14,"{""promo"": ""20%""}",230212,0,North America +2023-01-16,77836,3319,"[""Headphones"", ""Tablet""]",3494.07,{},69959,0,Europe +2023-12-18,77837,6847,"[""Monitor"", ""Wireless Mouse""]",2967.68,"{""loyalty"": ""29%""}",240613,0,Africa +2024-12-13,77838,2211,"[""Monitor"", ""Laptop""]",3572.45,"{""seasonal"": ""27%""}",76237,0,Asia +2024-12-25,77839,898,"[""Wireless Mouse""]",4461.95,{},37913,0,South America +2024-05-06,77840,7799,"[""Monitor"", ""Phone"", ""Charger""]",1034.73,"{""promo"": ""24%""}",36744,0,South America +2023-12-10,77841,893,"[""Monitor""]",227.31,{},204150,1,North America +2024-02-19,77842,8151,"[""Tablet"", ""Phone""]",1289.34,"{""seasonal"": ""30%""}",37762,1,South America +2024-03-08,77843,6757,"[""Laptop"", ""Phone""]",3118.16,"{""promo"": ""22%""}",215557,1,South America +2023-12-02,77844,1055,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1404.03,"{"""": ""7%""}",273839,0,Europe +2024-02-15,77845,702,"[""Laptop"", ""Charger"", ""Keyboard""]",1601.36,"{""loyalty"": ""11%""}",273656,1,Africa +2023-01-03,77846,8074,"[""Keyboard""]",4793.57,"{""loyalty"": ""20%""}",235195,1,Europe +2023-07-09,77847,5103,"[""Keyboard"", ""Tablet"", ""Phone""]",3099.26,"{""seasonal"": ""24%""}",91187,1,Africa +2024-05-12,77848,5767,"[""Tablet"", ""Phone""]",3038.81,{},119558,0,Europe +2024-08-09,77849,7069,"[""Phone"", ""Monitor"", ""Headphones""]",484.93,{},14165,1,South America +2024-03-13,77850,2545,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4128.52,"{""seasonal"": ""8%""}",8061,1,South America +2023-09-15,77851,8163,"[""Charger"", ""Wireless Mouse""]",3002.09,"{""promo"": ""7%""}",193623,1,North America +2024-08-10,77852,2752,"[""Phone""]",3524.75,"{""seasonal"": ""9%""}",39958,1,Asia +2023-08-29,77853,6957,"[""Charger"", ""Phone""]",1311.67,"{""promo"": ""17%""}",23712,1,Europe +2023-04-19,77854,496,"[""Charger""]",516.0,"{""seasonal"": ""23%""}",82707,1,North America +2024-10-30,77855,8237,"[""Tablet"", ""Headphones"", ""Monitor""]",4272.12,"{""promo"": ""27%""}",53432,1,Europe +2024-03-23,77856,4843,"[""Charger"", ""Laptop""]",909.58,{},282866,0,Europe +2024-11-28,77857,3820,"[""Keyboard""]",2701.98,"{""seasonal"": ""11%""}",241507,1,Europe +2023-07-19,77858,4158,"[""Laptop""]",1314.16,"{""seasonal"": ""19%""}",13831,0,South America +2024-07-06,77859,6876,"[""Tablet""]",4020.54,"{""promo"": ""13%""}",265277,0,Africa +2024-11-12,77860,3124,"[""Phone"", ""Tablet""]",812.35,{},55354,1,South America +2023-07-24,77861,6631,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2684.19,{},83909,0,South America +2023-06-09,77862,5165,"[""Wireless Mouse""]",4162.96,"{""promo"": ""24%""}",135458,1,North America +2023-11-22,77863,7166,"[""Charger"", ""Monitor""]",4806.96,{},34627,0,Europe +2024-01-15,77864,7031,"[""Wireless Mouse""]",2356.87,"{""promo"": ""28%""}",249870,1,Europe +2024-12-07,77865,1795,"[""Laptop""]",2642.31,"{""seasonal"": ""23%""}",198669,0,Asia +2023-05-05,77866,1352,"[""Keyboard""]",2993.36,{},169209,1,Europe +2023-03-24,77867,218,"[""Laptop"", ""Headphones""]",4117.42,"{"""": ""11%""}",142916,0,South America +2023-09-05,77868,4119,"[""Wireless Mouse""]",3762.35,"{""loyalty"": ""21%""}",45386,1,Europe +2024-04-08,77869,7919,"[""Keyboard""]",1764.93,"{""promo"": ""19%""}",64446,1,Africa +2024-09-16,77870,9456,"[""Headphones""]",1194.83,{},126555,0,Asia +2024-04-13,77871,6598,"[""Tablet""]",3283.03,"{""promo"": ""30%""}",15113,1,Africa +2024-01-24,77872,2220,"[""Charger""]",1395.07,{},9579,1,Europe +2023-09-02,77873,8809,"[""Headphones"", ""Charger"", ""Phone""]",1519.05,"{""loyalty"": ""15%""}",17967,0,Europe +2023-02-26,77874,8906,"[""Tablet"", ""Laptop""]",622.71,{},179298,0,South America +2024-04-13,77875,3640,"[""Monitor""]",4538.63,{},247614,1,Africa +2023-07-22,77876,3335,"[""Headphones""]",1703.11,{},161330,0,Europe +2024-03-30,77877,9739,"[""Phone"", ""Keyboard""]",1183.26,"{""promo"": ""13%""}",217022,0,Europe +2023-04-08,77878,5939,"[""Charger""]",4142.03,{},2008,1,North America +2024-09-22,77879,9174,"[""Laptop"", ""Tablet""]",3440.85,{},83987,1,Europe +2024-12-08,77880,9168,"[""Phone"", ""Laptop""]",2912.4,{},29642,0,Asia +2023-10-13,77881,8793,"[""Headphones"", ""Keyboard""]",4263.45,{},264380,1,Europe +2023-06-21,77882,2795,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1018.83,{},36097,1,South America +2023-11-19,77883,8500,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3083.98,"{""loyalty"": ""18%""}",279955,1,Asia +2024-09-27,77884,107,"[""Headphones"", ""Charger""]",1115.59,{},166017,1,North America +2023-03-15,77885,1546,"[""Wireless Mouse"", ""Laptop""]",4138.37,{},253167,1,North America +2023-03-17,77886,4504,"[""Keyboard""]",3586.72,{},146939,0,South America +2023-05-27,77887,9249,"[""Phone"", ""Tablet"", ""Monitor""]",4849.65,"{"""": ""30%""}",289220,0,Asia +2023-04-03,77888,6030,"[""Laptop"", ""Keyboard""]",769.17,"{""loyalty"": ""13%""}",51106,0,Europe +2023-04-18,77889,947,"[""Wireless Mouse"", ""Tablet""]",4072.46,{},173296,0,North America +2024-09-20,77890,9226,"[""Laptop""]",634.48,{},196844,1,Africa +2024-12-04,77891,5047,"[""Wireless Mouse"", ""Laptop""]",2883.48,{},266138,1,Asia +2024-05-11,77892,3759,"[""Keyboard"", ""Monitor""]",4534.57,{},249224,1,Africa +2023-02-20,77893,5060,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1533.13,"{""promo"": ""19%""}",193894,0,North America +2024-10-28,77894,6306,"[""Headphones"", ""Tablet""]",1718.61,{},261610,1,South America +2023-11-27,77895,1272,"[""Wireless Mouse""]",3136.54,{},7383,1,North America +2024-05-25,77896,6131,"[""Monitor"", ""Laptop""]",919.42,"{"""": ""17%""}",174076,1,South America +2023-11-01,77897,2261,"[""Wireless Mouse"", ""Headphones""]",703.52,"{""promo"": ""25%""}",26503,0,Europe +2024-03-01,77898,9452,"[""Tablet"", ""Phone""]",942.16,{},108232,0,Asia +2023-12-13,77899,3145,"[""Wireless Mouse""]",980.03,"{"""": ""13%""}",165097,1,South America +2024-10-21,77900,5472,"[""Tablet""]",2688.25,{},166216,0,Europe +2023-09-10,77901,4082,"[""Laptop"", ""Tablet""]",3926.72,"{"""": ""9%""}",40599,0,North America +2023-04-02,77902,7665,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2672.68,"{""seasonal"": ""24%""}",217223,0,Asia +2024-10-14,77903,5086,"[""Headphones""]",4813.93,"{"""": ""30%""}",158691,0,Asia +2023-09-26,77904,7224,"[""Headphones""]",4725.17,"{""loyalty"": ""14%""}",289418,1,Asia +2024-06-08,77905,8544,"[""Wireless Mouse""]",99.09,"{""seasonal"": ""7%""}",175381,0,North America +2024-04-01,77906,516,"[""Headphones""]",3034.15,"{"""": ""24%""}",281505,0,North America +2023-02-21,77907,2444,"[""Monitor"", ""Charger""]",1724.11,"{""loyalty"": ""26%""}",48814,1,Asia +2024-07-31,77908,7580,"[""Headphones""]",109.01,{},198564,0,Africa +2024-10-06,77909,45,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3235.22,{},43396,0,South America +2023-08-10,77910,4931,"[""Charger"", ""Tablet"", ""Keyboard""]",4770.3,{},51161,1,Asia +2024-12-23,77911,2224,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1011.49,"{""promo"": ""14%""}",36262,1,South America +2023-10-11,77912,7787,"[""Wireless Mouse""]",2704.69,"{""seasonal"": ""17%""}",271887,1,South America +2024-01-20,77913,5159,"[""Tablet"", ""Wireless Mouse""]",4941.63,"{""loyalty"": ""29%""}",73329,0,Europe +2024-03-14,77914,3145,"[""Tablet""]",2929.99,{},168798,1,Africa +2023-07-05,77915,6544,"[""Monitor"", ""Headphones""]",2104.95,"{""promo"": ""26%""}",296014,0,Africa +2024-08-15,77916,940,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2332.94,"{""seasonal"": ""19%""}",8838,0,Africa +2024-02-05,77917,5587,"[""Headphones""]",4946.9,"{"""": ""9%""}",146509,0,North America +2024-11-19,77918,9059,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4393.07,"{""loyalty"": ""26%""}",165690,1,North America +2024-02-09,77919,9403,"[""Headphones"", ""Tablet""]",3084.81,{},19708,1,Africa +2024-10-13,77920,3009,"[""Monitor"", ""Headphones"", ""Phone""]",4945.29,"{""seasonal"": ""21%""}",119794,1,South America +2023-04-01,77921,643,"[""Charger"", ""Keyboard""]",4520.2,"{""promo"": ""30%""}",5307,0,Asia +2023-08-06,77922,3763,"[""Monitor""]",3940.59,{},61476,0,Europe +2023-01-18,77923,1879,"[""Keyboard""]",1389.48,"{"""": ""14%""}",136740,0,Asia +2024-04-25,77924,6356,"[""Keyboard"", ""Headphones""]",1418.26,{},267906,0,South America +2024-09-03,77925,7541,"[""Keyboard""]",3063.58,"{""loyalty"": ""27%""}",32153,1,Europe +2023-03-02,77926,91,"[""Tablet""]",2977.31,"{""loyalty"": ""5%""}",132752,1,North America +2024-07-09,77927,447,"[""Laptop""]",3572.34,{},185967,0,North America +2023-07-01,77928,1425,"[""Tablet""]",1049.77,{},201967,1,North America +2023-12-14,77929,3364,"[""Keyboard"", ""Monitor"", ""Tablet""]",2213.1,"{""loyalty"": ""24%""}",176592,0,Africa +2024-04-06,77930,3577,"[""Keyboard"", ""Tablet""]",1970.61,"{""promo"": ""12%""}",140169,0,Europe +2024-05-22,77931,4894,"[""Phone""]",306.96,{},226372,0,Europe +2023-02-16,77932,8047,"[""Phone"", ""Laptop"", ""Tablet""]",526.45,"{""promo"": ""11%""}",175324,1,South America +2023-11-24,77933,4457,"[""Charger"", ""Tablet""]",3081.44,{},123360,0,Africa +2023-02-14,77934,793,"[""Wireless Mouse"", ""Tablet""]",1991.4,"{""loyalty"": ""28%""}",28456,1,North America +2023-11-13,77935,6460,"[""Tablet"", ""Headphones""]",133.76,{},38212,1,Europe +2024-11-13,77936,4410,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3203.31,{},222092,1,North America +2024-06-13,77937,1041,"[""Charger"", ""Headphones"", ""Monitor""]",4515.22,"{""seasonal"": ""30%""}",71595,1,South America +2024-07-02,77938,4832,"[""Keyboard"", ""Headphones""]",2716.2,"{""loyalty"": ""20%""}",23331,0,Asia +2023-08-14,77939,4499,"[""Monitor""]",4275.67,{},109919,0,Europe +2024-04-15,77940,8603,"[""Wireless Mouse"", ""Headphones""]",4335.87,"{"""": ""29%""}",296402,0,South America +2024-12-27,77941,8415,"[""Tablet""]",2718.52,{},172104,0,Asia +2024-05-26,77942,2909,"[""Keyboard"", ""Laptop""]",4701.75,"{""loyalty"": ""23%""}",115502,1,Asia +2024-01-05,77943,7094,"[""Headphones"", ""Monitor"", ""Phone""]",4544.3,"{"""": ""11%""}",162698,0,Asia +2024-12-16,77944,2460,"[""Charger"", ""Laptop""]",364.59,{},192421,1,Europe +2024-07-02,77945,4228,"[""Laptop""]",1201.56,"{""seasonal"": ""9%""}",146284,0,Europe +2023-05-26,77946,9202,"[""Laptop""]",1616.44,{},46060,1,Asia +2024-09-30,77947,1225,"[""Phone""]",3720.15,"{""seasonal"": ""15%""}",141276,0,Europe +2024-05-23,77948,5837,"[""Wireless Mouse"", ""Headphones""]",1533.61,{},126451,1,Africa +2024-07-28,77949,6203,"[""Monitor"", ""Laptop"", ""Charger""]",1187.86,"{""seasonal"": ""23%""}",258008,0,Asia +2024-07-21,77950,121,"[""Headphones"", ""Charger"", ""Phone""]",1246.93,{},186739,0,North America +2023-11-15,77951,7866,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1369.77,{},244953,0,Africa +2023-06-28,77952,742,"[""Laptop"", ""Keyboard"", ""Phone""]",334.11,{},18982,1,Asia +2023-04-25,77953,1311,"[""Headphones"", ""Keyboard""]",2495.79,{},120849,1,Africa +2024-02-27,77954,8348,"[""Charger"", ""Keyboard""]",4857.89,{},278787,0,North America +2024-11-20,77955,2978,"[""Keyboard""]",354.38,"{""promo"": ""12%""}",279955,1,South America +2024-01-28,77956,7995,"[""Wireless Mouse"", ""Headphones""]",4330.0,"{""loyalty"": ""24%""}",101176,1,Europe +2024-03-22,77957,8294,"[""Headphones""]",3603.86,"{"""": ""27%""}",217560,1,Asia +2023-01-07,77958,9543,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2658.4,"{""loyalty"": ""22%""}",121837,0,Asia +2023-03-07,77959,3083,"[""Monitor""]",1334.04,"{""seasonal"": ""14%""}",57527,1,Africa +2024-04-18,77960,7060,"[""Tablet"", ""Keyboard""]",3875.82,{},228316,1,North America +2023-12-05,77961,5509,"[""Charger""]",835.79,{},272613,0,North America +2024-02-20,77962,2214,"[""Headphones"", ""Phone""]",256.99,{},208011,1,South America +2023-05-01,77963,5392,"[""Wireless Mouse"", ""Charger""]",1816.98,{},66301,0,South America +2023-10-05,77964,4821,"[""Charger""]",4705.85,"{""seasonal"": ""10%""}",203723,1,South America +2023-08-29,77965,4342,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",630.45,{},14717,1,North America +2023-12-23,77966,7247,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3765.52,{},196178,1,North America +2023-01-07,77967,8293,"[""Tablet""]",3262.36,"{"""": ""20%""}",105091,0,South America +2023-05-13,77968,4978,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",604.88,{},285609,0,South America +2024-03-05,77969,6025,"[""Charger"", ""Phone"", ""Tablet""]",4153.95,"{""loyalty"": ""9%""}",78332,0,Africa +2023-12-09,77970,3509,"[""Charger"", ""Laptop""]",3905.01,{},288182,0,South America +2024-02-06,77971,9273,"[""Headphones"", ""Charger""]",3648.34,{},269810,0,Europe +2023-12-21,77972,7125,"[""Headphones""]",4357.71,{},103100,0,Africa +2024-05-21,77973,3023,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",686.73,"{"""": ""16%""}",264014,1,Africa +2024-06-12,77974,1950,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3498.24,"{"""": ""21%""}",9683,1,Europe +2024-09-02,77975,638,"[""Monitor"", ""Wireless Mouse""]",4099.04,"{""promo"": ""14%""}",187689,0,Africa +2024-07-25,77976,1710,"[""Phone"", ""Keyboard""]",1616.7,{},233558,0,Europe +2023-08-23,77977,9741,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",749.24,"{"""": ""18%""}",143783,0,South America +2023-02-27,77978,7517,"[""Keyboard"", ""Tablet""]",651.39,{},211026,1,Asia +2024-12-16,77979,9265,"[""Keyboard""]",1560.77,"{""seasonal"": ""15%""}",123759,1,Asia +2023-04-17,77980,2607,"[""Charger"", ""Phone""]",2498.41,{},3148,0,North America +2024-02-18,77981,1651,"[""Phone"", ""Wireless Mouse""]",3498.72,{},20924,0,North America +2024-11-29,77982,6811,"[""Phone"", ""Monitor""]",1068.33,"{""loyalty"": ""18%""}",256927,1,Africa +2023-10-15,77983,6608,"[""Laptop""]",3024.68,"{""loyalty"": ""8%""}",236711,0,North America +2024-04-24,77984,750,"[""Headphones"", ""Monitor""]",4276.49,{},53923,0,North America +2024-04-12,77985,1206,"[""Monitor"", ""Phone"", ""Tablet""]",1515.65,{},103194,0,Africa +2024-11-27,77986,3536,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",715.69,{},156409,0,Europe +2023-03-05,77987,2467,"[""Monitor""]",4536.49,"{""seasonal"": ""8%""}",86877,0,Europe +2024-09-05,77988,4451,"[""Phone"", ""Charger"", ""Monitor""]",1639.88,"{""loyalty"": ""21%""}",67133,0,North America +2023-04-13,77989,7465,"[""Headphones"", ""Keyboard"", ""Monitor""]",1675.85,"{""seasonal"": ""23%""}",46745,0,Europe +2023-03-23,77990,1144,"[""Tablet""]",2150.97,"{""loyalty"": ""20%""}",58687,0,Africa +2023-01-05,77991,3429,"[""Tablet"", ""Laptop"", ""Charger""]",3004.17,"{""loyalty"": ""25%""}",212386,1,Africa +2024-04-30,77992,7294,"[""Monitor""]",4617.96,"{""promo"": ""19%""}",299925,1,North America +2023-05-14,77993,5121,"[""Headphones"", ""Tablet"", ""Laptop""]",2915.14,"{""seasonal"": ""13%""}",6008,1,Asia +2024-12-05,77994,2949,"[""Keyboard""]",399.66,"{""seasonal"": ""6%""}",193525,0,Europe +2023-03-28,77995,3177,"[""Charger"", ""Phone""]",95.16,{},216281,0,North America +2023-11-12,77996,2943,"[""Monitor"", ""Headphones"", ""Charger""]",212.75,"{"""": ""22%""}",276386,1,Europe +2023-04-30,77997,3377,"[""Headphones"", ""Phone"", ""Tablet""]",1362.13,{},243454,1,South America +2024-08-05,77998,5229,"[""Charger"", ""Laptop"", ""Tablet""]",2275.33,"{""seasonal"": ""16%""}",268400,1,North America +2023-07-04,77999,311,"[""Laptop"", ""Phone"", ""Keyboard""]",3984.22,"{"""": ""14%""}",128808,1,Africa +2024-09-16,78000,5397,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4241.98,"{""seasonal"": ""14%""}",155659,0,South America +2024-02-14,78001,4992,"[""Keyboard""]",4809.75,{},113109,1,North America +2023-05-21,78002,5972,"[""Monitor"", ""Tablet""]",1482.05,"{"""": ""23%""}",192278,0,North America +2023-04-07,78003,4388,"[""Charger"", ""Keyboard""]",4717.81,{},26656,1,Asia +2024-07-18,78004,8943,"[""Tablet"", ""Charger""]",2264.63,"{"""": ""20%""}",4049,1,South America +2024-05-30,78005,4343,"[""Tablet"", ""Keyboard""]",1534.43,{},41552,1,Europe +2023-11-10,78006,5562,"[""Tablet"", ""Laptop""]",3989.56,"{""loyalty"": ""25%""}",206439,1,North America +2024-03-12,78007,9972,"[""Headphones"", ""Phone""]",1667.58,{},2505,1,Europe +2024-05-24,78008,388,"[""Monitor""]",2054.31,{},217927,0,Europe +2023-02-07,78009,3754,"[""Charger""]",1448.89,{},241271,1,Asia +2023-12-01,78010,789,"[""Keyboard""]",905.28,{},101923,1,South America +2024-07-29,78011,4388,"[""Tablet""]",4088.92,{},267953,1,Africa +2024-11-18,78012,1534,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",695.57,"{""promo"": ""10%""}",180236,0,Africa +2024-01-03,78013,574,"[""Headphones""]",335.03,{},205081,0,South America +2023-08-21,78014,2093,"[""Tablet"", ""Keyboard""]",2916.77,{},121998,1,Europe +2024-02-19,78015,8054,"[""Monitor"", ""Laptop"", ""Keyboard""]",4358.91,{},24033,0,Asia +2024-09-28,78016,4492,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2735.09,{},236411,1,Asia +2023-05-11,78017,8088,"[""Tablet"", ""Phone"", ""Charger""]",4907.31,"{""promo"": ""21%""}",49700,1,South America +2024-02-15,78018,7711,"[""Headphones"", ""Phone""]",3577.72,{},80863,0,Africa +2023-07-09,78019,4844,"[""Wireless Mouse"", ""Keyboard""]",431.82,{},270678,1,South America +2023-06-15,78020,7581,"[""Keyboard""]",3599.99,"{""loyalty"": ""27%""}",190741,1,Africa +2024-09-20,78021,8696,"[""Wireless Mouse""]",1858.42,"{""loyalty"": ""7%""}",269632,0,Africa +2024-05-03,78022,9024,"[""Monitor"", ""Headphones"", ""Charger""]",267.19,"{"""": ""7%""}",54919,0,North America +2023-10-02,78023,3631,"[""Tablet"", ""Headphones"", ""Keyboard""]",4807.34,"{""loyalty"": ""28%""}",34068,1,South America +2023-11-08,78024,2634,"[""Phone""]",1614.57,"{""loyalty"": ""22%""}",179224,1,Europe +2023-09-01,78025,9344,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4329.62,"{""seasonal"": ""30%""}",153594,0,South America +2024-10-01,78026,1472,"[""Headphones"", ""Laptop"", ""Keyboard""]",2002.58,"{""seasonal"": ""8%""}",95539,0,Africa +2023-08-12,78027,5039,"[""Phone""]",1342.03,{},90857,1,Africa +2024-09-20,78028,2397,"[""Monitor""]",3102.76,"{""loyalty"": ""15%""}",6361,0,South America +2023-07-02,78029,6493,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2831.79,"{""seasonal"": ""30%""}",235124,1,Europe +2024-08-07,78030,935,"[""Tablet""]",2479.02,"{"""": ""7%""}",78263,0,Asia +2024-09-16,78031,1832,"[""Wireless Mouse"", ""Charger""]",3370.17,{},137317,0,Africa +2024-05-29,78032,8675,"[""Tablet"", ""Keyboard"", ""Phone""]",2515.08,{},227902,0,South America +2023-06-07,78033,5777,"[""Keyboard"", ""Tablet""]",2642.16,{},78458,0,Europe +2024-11-14,78034,6604,"[""Charger"", ""Laptop""]",347.48,{},49644,1,Asia +2024-09-16,78035,774,"[""Phone""]",4334.58,{},4003,1,North America +2024-10-08,78036,5417,"[""Monitor"", ""Phone"", ""Headphones""]",135.87,"{""loyalty"": ""6%""}",52630,0,South America +2024-07-26,78037,2416,"[""Keyboard"", ""Headphones""]",2911.78,"{""promo"": ""29%""}",81300,1,South America +2024-05-15,78038,6253,"[""Charger""]",3685.72,{},223668,0,South America +2023-08-18,78039,1984,"[""Keyboard"", ""Charger"", ""Laptop""]",4922.68,"{""seasonal"": ""10%""}",272526,0,North America +2024-01-06,78040,3489,"[""Charger""]",1272.79,"{""promo"": ""14%""}",146300,1,South America +2024-10-22,78041,9455,"[""Tablet""]",2927.22,{},7433,1,Europe +2024-09-15,78042,3248,"[""Charger""]",1162.67,{},183898,1,Europe +2023-03-20,78043,1781,"[""Laptop"", ""Monitor""]",2356.73,"{""loyalty"": ""10%""}",244508,0,North America +2024-07-09,78044,3571,"[""Phone"", ""Headphones""]",2252.44,{},87221,0,Europe +2024-08-06,78045,508,"[""Laptop""]",62.79,{},163641,1,North America +2024-03-01,78046,9094,"[""Keyboard"", ""Phone""]",4936.13,{},285788,0,Asia +2023-05-30,78047,8515,"[""Headphones""]",4552.6,"{"""": ""23%""}",207558,0,North America +2023-12-16,78048,1087,"[""Tablet""]",2556.45,"{""loyalty"": ""14%""}",250382,1,South America +2023-01-20,78049,8073,"[""Laptop"", ""Phone""]",1239.23,"{""loyalty"": ""27%""}",144932,1,Europe +2023-09-04,78050,7217,"[""Monitor""]",472.67,{},28032,0,Africa +2023-10-28,78051,5208,"[""Laptop"", ""Keyboard""]",2735.13,{},60916,1,Asia +2024-12-24,78052,8191,"[""Phone""]",3487.28,"{""promo"": ""9%""}",265335,1,South America +2023-12-15,78053,3315,"[""Keyboard""]",2329.36,"{""seasonal"": ""17%""}",263403,0,Africa +2023-12-13,78054,4844,"[""Wireless Mouse""]",1777.07,"{"""": ""18%""}",233321,0,South America +2023-08-09,78055,5593,"[""Laptop"", ""Headphones""]",1827.27,{},16625,1,Asia +2023-01-11,78056,2231,"[""Keyboard"", ""Charger""]",4752.11,"{""seasonal"": ""26%""}",186791,1,Europe +2024-10-22,78057,1,"[""Charger""]",4610.59,{},97941,0,North America +2023-06-11,78058,2227,"[""Keyboard"", ""Charger"", ""Tablet""]",2349.66,{},82935,0,Africa +2024-06-19,78059,3408,"[""Keyboard""]",839.8,"{""seasonal"": ""11%""}",173821,0,Africa +2024-10-10,78060,7834,"[""Headphones"", ""Phone"", ""Keyboard""]",623.61,{},106563,1,Africa +2024-08-16,78061,2850,"[""Wireless Mouse"", ""Charger""]",1929.35,{},145850,1,North America +2023-11-16,78062,9062,"[""Headphones""]",4014.07,"{"""": ""8%""}",75899,0,Europe +2024-10-01,78063,3482,"[""Headphones"", ""Keyboard"", ""Tablet""]",105.56,{},140816,1,North America +2023-10-29,78064,1619,"[""Laptop"", ""Phone""]",2896.69,"{""loyalty"": ""9%""}",224602,0,Africa +2024-12-01,78065,1515,"[""Tablet"", ""Wireless Mouse""]",4870.32,"{"""": ""12%""}",242256,1,South America +2024-10-17,78066,2622,"[""Charger"", ""Laptop""]",482.17,{},197605,0,Asia +2023-09-04,78067,1355,"[""Monitor"", ""Headphones"", ""Phone""]",1492.42,{},3477,1,Europe +2023-05-15,78068,3712,"[""Charger"", ""Tablet""]",1288.12,{},93047,1,South America +2023-07-31,78069,6899,"[""Tablet""]",971.72,{},168114,0,Africa +2024-05-23,78070,7137,"[""Tablet"", ""Wireless Mouse""]",4391.43,{},146471,1,North America +2023-12-23,78071,1050,"[""Wireless Mouse""]",2613.08,"{""seasonal"": ""20%""}",171915,1,Africa +2023-12-09,78072,7333,"[""Keyboard""]",2224.8,{},217737,1,Africa +2023-03-12,78073,9211,"[""Headphones"", ""Monitor""]",1567.74,"{""seasonal"": ""21%""}",131182,0,Asia +2024-09-13,78074,9637,"[""Keyboard"", ""Headphones"", ""Monitor""]",598.2,"{""seasonal"": ""14%""}",187483,0,Asia +2023-12-23,78075,3428,"[""Charger""]",2246.51,{},276165,1,Africa +2024-05-19,78076,3267,"[""Laptop""]",4898.22,"{""promo"": ""22%""}",161422,1,Europe +2024-02-22,78077,9317,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2978.33,{},247973,1,North America +2023-06-12,78078,3242,"[""Wireless Mouse"", ""Headphones""]",3429.24,{},276360,0,North America +2024-03-01,78079,651,"[""Wireless Mouse""]",1106.34,"{"""": ""15%""}",182822,0,Asia +2023-09-19,78080,7151,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1092.09,"{"""": ""19%""}",74788,1,Europe +2024-05-14,78081,7912,"[""Phone""]",2730.55,{},112392,0,Africa +2024-04-29,78082,9989,"[""Laptop""]",4820.39,{},280569,1,Europe +2024-01-03,78083,7937,"[""Phone"", ""Charger"", ""Headphones""]",3533.16,{},155522,0,Africa +2023-08-09,78084,2460,"[""Laptop"", ""Charger"", ""Keyboard""]",2742.67,{},298014,0,Asia +2023-05-14,78085,7828,"[""Phone"", ""Headphones""]",2372.18,"{""seasonal"": ""8%""}",26989,1,Europe +2024-04-20,78086,520,"[""Monitor""]",4289.7,"{"""": ""20%""}",262342,1,South America +2024-07-21,78087,33,"[""Laptop"", ""Monitor""]",1513.29,"{""loyalty"": ""20%""}",138232,0,Asia +2023-04-13,78088,9820,"[""Wireless Mouse"", ""Monitor""]",2315.36,"{""seasonal"": ""29%""}",41135,0,Europe +2023-04-24,78089,6929,"[""Monitor""]",2520.42,{},12097,1,South America +2024-04-22,78090,5865,"[""Phone"", ""Tablet"", ""Charger""]",2550.28,"{"""": ""20%""}",144381,1,North America +2024-06-29,78091,9962,"[""Laptop"", ""Charger""]",4335.85,{},240521,1,South America +2023-06-30,78092,3595,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",570.56,{},51286,1,South America +2023-01-11,78093,9481,"[""Tablet"", ""Monitor""]",1225.69,"{""seasonal"": ""17%""}",267869,1,South America +2023-12-28,78094,8169,"[""Tablet"", ""Monitor""]",2834.62,"{""promo"": ""14%""}",108660,1,North America +2023-08-23,78095,3787,"[""Charger""]",590.37,{},10196,1,North America +2023-10-03,78096,3045,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1275.78,{},7053,1,Africa +2023-04-29,78097,7732,"[""Keyboard"", ""Charger""]",4343.46,{},55100,0,North America +2023-11-18,78098,9403,"[""Tablet"", ""Phone"", ""Laptop""]",543.59,"{""promo"": ""19%""}",25541,1,South America +2023-12-30,78099,1848,"[""Monitor"", ""Keyboard"", ""Headphones""]",2988.29,"{""seasonal"": ""30%""}",8301,1,Europe +2024-02-15,78100,798,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2825.02,"{""loyalty"": ""10%""}",205385,0,South America +2024-10-10,78101,446,"[""Charger""]",3329.69,{},68677,0,North America +2024-06-08,78102,1548,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",760.67,{},7830,0,North America +2023-12-21,78103,7356,"[""Phone""]",1687.33,{},155579,1,Europe +2023-03-30,78104,7923,"[""Laptop"", ""Phone""]",3550.31,{},110701,0,Africa +2024-01-04,78105,4735,"[""Monitor"", ""Phone""]",1802.33,"{""seasonal"": ""30%""}",268968,1,North America +2024-04-05,78106,3187,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4828.29,{},171891,0,Asia +2024-12-02,78107,6039,"[""Wireless Mouse""]",4704.56,{},161055,1,Asia +2024-05-23,78108,14,"[""Laptop"", ""Wireless Mouse""]",4910.93,"{""promo"": ""27%""}",131831,0,Africa +2024-05-14,78109,1567,"[""Charger"", ""Wireless Mouse""]",425.74,{},269764,1,North America +2023-11-11,78110,8973,"[""Tablet""]",53.21,"{"""": ""13%""}",60413,1,North America +2023-06-05,78111,3888,"[""Monitor"", ""Charger""]",3022.88,{},160914,1,Africa +2023-07-11,78112,1974,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2355.02,{},251117,1,Asia +2023-10-09,78113,6357,"[""Tablet"", ""Charger"", ""Phone""]",4658.08,{},293024,1,North America +2024-04-03,78114,795,"[""Tablet""]",3006.06,"{""loyalty"": ""21%""}",155244,1,South America +2024-07-08,78115,8309,"[""Keyboard"", ""Headphones"", ""Phone""]",3078.43,{},21720,0,South America +2023-04-25,78116,69,"[""Phone"", ""Headphones""]",3189.34,"{"""": ""9%""}",167614,0,Europe +2024-03-24,78117,2844,"[""Laptop""]",1581.59,{},270745,1,Africa +2024-02-14,78118,7566,"[""Monitor""]",2971.49,{},275815,1,Africa +2024-12-20,78119,1672,"[""Tablet""]",4284.78,{},298446,0,Asia +2023-06-02,78120,7682,"[""Headphones"", ""Monitor""]",392.24,"{""seasonal"": ""17%""}",15418,0,Asia +2023-05-03,78121,3603,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3167.98,"{""promo"": ""16%""}",70701,1,Africa +2024-01-14,78122,6694,"[""Keyboard""]",1222.56,"{"""": ""30%""}",4659,0,Asia +2023-09-25,78123,3995,"[""Monitor"", ""Phone""]",397.56,{},295262,0,Africa +2023-09-10,78124,2808,"[""Charger""]",4929.47,"{""loyalty"": ""23%""}",69747,1,South America +2023-12-30,78125,7439,"[""Headphones"", ""Tablet""]",4128.52,"{""seasonal"": ""17%""}",86256,0,Asia +2023-06-18,78126,6492,"[""Wireless Mouse""]",1487.23,{},171828,0,South America +2024-12-30,78127,9496,"[""Laptop"", ""Charger"", ""Tablet""]",263.47,"{"""": ""25%""}",131544,1,Asia +2023-07-28,78128,2283,"[""Charger""]",1973.39,"{""promo"": ""9%""}",169435,0,Europe +2023-04-18,78129,7500,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2444.29,{},287363,0,Europe +2023-10-11,78130,2623,"[""Charger""]",1481.33,{},224533,1,Africa +2024-10-17,78131,2328,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1214.19,{},229032,1,South America +2023-08-15,78132,6741,"[""Headphones"", ""Monitor"", ""Tablet""]",2925.24,{},133712,0,Europe +2023-08-18,78133,735,"[""Charger"", ""Tablet""]",4937.4,{},121145,0,North America +2024-03-23,78134,3427,"[""Keyboard"", ""Monitor"", ""Laptop""]",1266.73,"{"""": ""25%""}",207619,0,South America +2024-07-16,78135,8299,"[""Charger"", ""Headphones""]",3192.33,{},103080,0,South America +2023-06-13,78136,6147,"[""Tablet"", ""Laptop"", ""Headphones""]",1567.71,"{""promo"": ""6%""}",161160,0,North America +2024-06-12,78137,2634,"[""Tablet"", ""Monitor"", ""Phone""]",1464.12,{},66942,1,North America +2023-07-17,78138,9245,"[""Phone"", ""Charger"", ""Headphones""]",2927.49,{},192493,0,Asia +2023-06-16,78139,5066,"[""Monitor""]",2596.46,{},215289,1,Asia +2023-03-04,78140,3847,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3765.31,"{""seasonal"": ""23%""}",122744,0,South America +2023-08-02,78141,9940,"[""Headphones"", ""Phone"", ""Tablet""]",4555.61,"{""promo"": ""11%""}",68601,1,Europe +2024-07-16,78142,160,"[""Headphones"", ""Phone"", ""Charger""]",61.13,{},143958,1,North America +2024-02-04,78143,4396,"[""Monitor"", ""Keyboard""]",248.65,"{""loyalty"": ""9%""}",236622,1,Europe +2023-09-22,78144,1099,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1122.21,"{""loyalty"": ""9%""}",89481,0,Europe +2023-06-19,78145,5864,"[""Tablet""]",2681.29,"{""promo"": ""24%""}",231027,1,North America +2023-01-01,78146,4386,"[""Monitor"", ""Phone"", ""Tablet""]",2596.34,"{""promo"": ""15%""}",231303,1,South America +2024-10-28,78147,1897,"[""Keyboard""]",2721.91,"{""promo"": ""22%""}",246079,0,North America +2024-03-09,78148,7020,"[""Phone""]",2799.33,"{"""": ""18%""}",123585,0,Africa +2024-03-19,78149,6789,"[""Phone"", ""Laptop""]",1771.14,"{""seasonal"": ""15%""}",28831,1,North America +2023-02-19,78150,532,"[""Keyboard"", ""Monitor"", ""Tablet""]",2517.79,{},205471,1,North America +2023-05-17,78151,6203,"[""Monitor""]",2613.5,{},261324,0,Asia +2023-11-23,78152,524,"[""Tablet""]",3798.15,"{"""": ""11%""}",117577,0,Asia +2024-06-08,78153,6349,"[""Charger""]",2882.39,"{""loyalty"": ""22%""}",227843,1,Africa +2023-03-20,78154,6432,"[""Charger"", ""Tablet"", ""Headphones""]",496.98,{},89512,0,South America +2024-04-09,78155,2606,"[""Monitor""]",2756.19,{},203250,1,Africa +2023-01-11,78156,2982,"[""Phone"", ""Monitor""]",2001.29,"{""promo"": ""18%""}",15975,0,Europe +2023-05-27,78157,7743,"[""Wireless Mouse"", ""Tablet""]",1960.4,"{""promo"": ""23%""}",227179,0,North America +2024-07-11,78158,2079,"[""Keyboard"", ""Tablet""]",1570.36,{},43272,0,Europe +2024-12-22,78159,4248,"[""Wireless Mouse"", ""Tablet""]",4384.17,"{""seasonal"": ""7%""}",82717,0,Africa +2023-09-04,78160,9922,"[""Wireless Mouse""]",3405.51,{},168148,0,North America +2023-03-04,78161,3476,"[""Wireless Mouse""]",2509.35,{},212103,1,Europe +2023-07-24,78162,5983,"[""Monitor"", ""Keyboard"", ""Charger""]",2876.26,{},269358,0,Asia +2023-10-23,78163,5209,"[""Laptop""]",3062.31,{},297048,1,North America +2024-10-15,78164,230,"[""Tablet"", ""Wireless Mouse""]",2623.32,{},105509,0,South America +2023-03-03,78165,3566,"[""Keyboard""]",4744.58,"{""seasonal"": ""9%""}",161355,1,South America +2024-01-13,78166,6213,"[""Keyboard""]",566.14,"{""seasonal"": ""12%""}",81628,1,Europe +2023-05-29,78167,1013,"[""Keyboard"", ""Headphones"", ""Laptop""]",925.83,"{"""": ""17%""}",200368,1,Africa +2023-06-22,78168,518,"[""Charger"", ""Laptop""]",1263.05,"{""promo"": ""22%""}",298056,1,Africa +2023-04-22,78169,9124,"[""Laptop"", ""Monitor"", ""Phone""]",3229.34,"{"""": ""8%""}",30228,1,Europe +2023-11-22,78170,485,"[""Wireless Mouse"", ""Charger""]",3874.31,{},132482,0,South America +2023-05-07,78171,5068,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",365.19,{},102531,1,North America +2024-05-05,78172,624,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",640.74,{},42802,1,Africa +2024-11-12,78173,8291,"[""Wireless Mouse""]",2518.0,{},163321,0,South America +2023-02-20,78174,6627,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4044.02,{},287140,1,North America +2023-12-15,78175,6143,"[""Wireless Mouse"", ""Laptop""]",1984.08,"{""loyalty"": ""23%""}",76583,0,South America +2024-11-27,78176,2333,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1803.25,"{"""": ""5%""}",71776,1,Africa +2024-04-05,78177,5325,"[""Charger"", ""Headphones""]",887.64,"{"""": ""20%""}",288054,1,North America +2024-07-13,78178,2091,"[""Keyboard"", ""Monitor"", ""Phone""]",173.45,"{""seasonal"": ""17%""}",204457,1,South America +2023-01-30,78179,5023,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4143.12,{},14443,0,Europe +2023-01-13,78180,5064,"[""Phone""]",1404.67,"{""promo"": ""12%""}",149858,0,Africa +2023-01-02,78181,8952,"[""Phone"", ""Monitor""]",2285.05,{},238669,0,South America +2024-11-09,78182,444,"[""Charger""]",2016.17,{},58508,0,North America +2024-12-22,78183,9888,"[""Keyboard"", ""Laptop"", ""Phone""]",681.76,{},285857,0,Asia +2023-09-06,78184,5033,"[""Monitor"", ""Phone""]",2464.52,"{""seasonal"": ""5%""}",266441,1,Africa +2023-05-29,78185,3491,"[""Laptop"", ""Headphones"", ""Charger""]",2431.56,"{""seasonal"": ""9%""}",85856,1,North America +2023-06-07,78186,2455,"[""Monitor"", ""Phone""]",2333.68,"{"""": ""7%""}",213034,1,Africa +2023-01-15,78187,3375,"[""Monitor""]",2234.75,{},285580,0,Africa +2024-04-13,78188,9395,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3949.49,{},175782,1,Africa +2024-08-17,78189,9272,"[""Keyboard""]",706.4,"{"""": ""21%""}",261673,1,Asia +2024-10-27,78190,1982,"[""Tablet"", ""Phone""]",1689.56,"{""seasonal"": ""16%""}",190927,0,South America +2023-12-14,78191,2284,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1879.42,"{""loyalty"": ""12%""}",55499,1,Asia +2023-02-04,78192,1594,"[""Wireless Mouse""]",4953.33,"{""promo"": ""6%""}",176455,1,South America +2024-03-04,78193,6961,"[""Tablet""]",2308.16,{},99851,1,Europe +2024-12-27,78194,6469,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2832.11,{},85819,0,Europe +2023-01-07,78195,759,"[""Monitor"", ""Phone"", ""Laptop""]",2785.87,"{""promo"": ""23%""}",139238,0,Asia +2023-07-12,78196,2920,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3275.42,{},130306,0,Europe +2023-10-14,78197,2917,"[""Phone"", ""Laptop""]",4707.12,"{""seasonal"": ""19%""}",186243,1,Africa +2024-08-06,78198,5297,"[""Wireless Mouse""]",4473.34,"{""promo"": ""13%""}",9592,1,South America +2024-11-24,78199,2053,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4392.45,"{"""": ""25%""}",235553,0,South America +2024-10-02,78200,2035,"[""Headphones""]",1952.17,"{""promo"": ""30%""}",274393,1,Europe +2024-12-03,78201,1003,"[""Monitor"", ""Wireless Mouse""]",1994.61,"{"""": ""25%""}",95652,0,North America +2024-11-02,78202,1637,"[""Tablet"", ""Wireless Mouse""]",962.94,"{""loyalty"": ""21%""}",249181,1,Africa +2023-05-29,78203,7027,"[""Monitor""]",1871.4,"{""loyalty"": ""16%""}",275936,0,Africa +2024-11-17,78204,3738,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4938.7,{},277980,1,Asia +2023-08-19,78205,9250,"[""Headphones"", ""Wireless Mouse""]",198.29,"{""loyalty"": ""13%""}",30392,1,South America +2023-01-10,78206,2324,"[""Monitor"", ""Laptop"", ""Headphones""]",374.26,"{""loyalty"": ""30%""}",238642,1,North America +2024-03-20,78207,1114,"[""Laptop""]",3224.34,{},255850,1,Asia +2024-06-07,78208,8760,"[""Tablet"", ""Monitor""]",4758.36,{},93872,0,Africa +2023-07-09,78209,5241,"[""Phone"", ""Keyboard"", ""Charger""]",2530.1,"{"""": ""7%""}",13963,1,North America +2024-03-25,78210,1749,"[""Monitor""]",822.47,"{""loyalty"": ""29%""}",102536,1,North America +2024-08-05,78211,638,"[""Laptop"", ""Keyboard"", ""Monitor""]",2645.32,"{""loyalty"": ""28%""}",202307,1,Asia +2024-12-04,78212,7455,"[""Phone"", ""Charger""]",540.44,{},140170,1,Asia +2024-08-09,78213,6658,"[""Phone"", ""Keyboard"", ""Tablet""]",4555.46,"{""promo"": ""24%""}",22154,1,Europe +2024-06-20,78214,254,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2314.91,{},112054,0,Europe +2023-11-17,78215,6880,"[""Laptop""]",4739.38,{},180576,1,South America +2023-01-07,78216,6863,"[""Phone"", ""Keyboard"", ""Tablet""]",4254.37,{},249892,0,Asia +2024-08-24,78217,4581,"[""Headphones""]",4369.83,{},73524,0,North America +2024-10-27,78218,1827,"[""Headphones"", ""Phone"", ""Keyboard""]",4409.43,"{""loyalty"": ""7%""}",244414,1,Asia +2024-02-25,78219,1676,"[""Monitor""]",1453.55,{},121814,1,North America +2023-10-23,78220,1660,"[""Keyboard"", ""Headphones""]",2379.85,{},1514,1,North America +2023-11-26,78221,4369,"[""Tablet"", ""Monitor"", ""Laptop""]",1773.28,"{""loyalty"": ""5%""}",225580,1,Africa +2024-04-09,78222,2452,"[""Headphones"", ""Tablet""]",4915.57,{},204779,0,South America +2024-08-05,78223,4624,"[""Headphones"", ""Tablet""]",1412.16,"{""loyalty"": ""18%""}",179586,1,South America +2024-04-21,78224,581,"[""Wireless Mouse""]",4345.43,{},33320,1,South America +2024-04-30,78225,145,"[""Charger"", ""Phone"", ""Headphones""]",1365.27,{},133984,0,North America +2024-01-16,78226,4301,"[""Headphones"", ""Charger"", ""Keyboard""]",4235.45,{},34079,1,Africa +2023-03-17,78227,6898,"[""Charger"", ""Tablet""]",1185.12,"{""seasonal"": ""9%""}",241689,0,Africa +2023-06-13,78228,2077,"[""Keyboard"", ""Headphones""]",789.41,"{"""": ""30%""}",28256,0,Asia +2024-04-15,78229,1839,"[""Laptop"", ""Phone""]",4713.5,"{"""": ""13%""}",188357,0,Africa +2024-06-09,78230,4608,"[""Charger"", ""Laptop""]",2149.97,"{""promo"": ""11%""}",183133,1,North America +2023-03-30,78231,1979,"[""Laptop"", ""Keyboard""]",2442.27,{},172942,0,South America +2024-02-12,78232,4073,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1161.26,{},130807,1,Africa +2024-05-12,78233,8713,"[""Phone""]",1984.39,"{""promo"": ""7%""}",135812,1,Africa +2023-01-03,78234,4973,"[""Tablet"", ""Phone"", ""Charger""]",3934.51,"{""seasonal"": ""24%""}",259272,0,Africa +2023-08-10,78235,5417,"[""Monitor"", ""Laptop""]",1619.11,{},217127,0,Asia +2024-05-14,78236,94,"[""Phone"", ""Monitor""]",4659.04,"{""loyalty"": ""8%""}",8191,1,Africa +2024-03-31,78237,1560,"[""Tablet""]",1089.98,"{""promo"": ""28%""}",241391,0,South America +2024-09-02,78238,5549,"[""Keyboard"", ""Monitor""]",4856.37,{},279295,0,Asia +2023-04-07,78239,8050,"[""Monitor"", ""Charger"", ""Laptop""]",2213.89,"{""loyalty"": ""28%""}",252462,0,North America +2023-01-08,78240,186,"[""Headphones"", ""Charger""]",3051.29,{},124250,1,Africa +2023-12-17,78241,981,"[""Keyboard"", ""Tablet""]",2413.66,"{""seasonal"": ""26%""}",220229,0,South America +2023-01-01,78242,3326,"[""Tablet""]",2838.49,"{""loyalty"": ""25%""}",275060,1,Europe +2023-09-04,78243,5866,"[""Keyboard"", ""Tablet"", ""Phone""]",4403.88,"{"""": ""16%""}",293443,0,South America +2023-04-16,78244,485,"[""Monitor"", ""Tablet"", ""Phone""]",4030.55,{},259583,0,North America +2024-02-13,78245,9030,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2653.83,{},14044,1,North America +2024-06-30,78246,8819,"[""Headphones"", ""Phone"", ""Keyboard""]",865.91,{},268575,1,North America +2023-06-27,78247,5892,"[""Headphones"", ""Keyboard""]",2015.22,"{"""": ""26%""}",262498,1,South America +2023-03-11,78248,403,"[""Laptop"", ""Monitor""]",104.84,{},298616,0,North America +2023-11-17,78249,6119,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2224.38,{},186423,0,Europe +2023-10-24,78250,4767,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1000.15,"{"""": ""20%""}",275909,0,North America +2023-08-06,78251,3226,"[""Monitor"", ""Keyboard""]",106.04,{},243469,1,North America +2023-01-25,78252,4429,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2108.7,"{"""": ""19%""}",165447,1,South America +2023-11-04,78253,3593,"[""Keyboard"", ""Phone""]",1800.42,"{""promo"": ""21%""}",90813,0,Africa +2024-02-29,78254,2050,"[""Headphones"", ""Phone""]",1349.28,{},92346,0,Africa +2024-04-14,78255,6002,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",584.62,"{"""": ""30%""}",86026,0,Europe +2023-05-21,78256,5918,"[""Headphones"", ""Keyboard"", ""Monitor""]",2592.54,"{""loyalty"": ""15%""}",5545,0,Europe +2024-07-07,78257,7963,"[""Monitor""]",4362.11,{},123087,0,Europe +2023-03-18,78258,9899,"[""Headphones""]",3703.19,"{"""": ""15%""}",108582,1,Asia +2023-09-08,78259,7322,"[""Tablet"", ""Keyboard""]",4307.48,{},70217,0,South America +2024-09-13,78260,5454,"[""Monitor"", ""Charger""]",4021.96,{},70764,0,Asia +2023-02-04,78261,8835,"[""Phone"", ""Laptop"", ""Monitor""]",215.25,"{"""": ""16%""}",82651,0,Asia +2023-02-18,78262,6121,"[""Monitor""]",1129.62,{},264865,0,South America +2023-02-17,78263,8454,"[""Monitor"", ""Phone""]",130.32,"{"""": ""10%""}",127113,0,Asia +2023-09-11,78264,1865,"[""Keyboard"", ""Tablet"", ""Laptop""]",4902.57,"{""promo"": ""5%""}",81183,0,Africa +2023-06-26,78265,8500,"[""Laptop""]",1275.44,{},139717,0,Europe +2023-12-07,78266,7773,"[""Monitor"", ""Tablet""]",515.78,{},195760,1,Africa +2023-01-28,78267,1982,"[""Phone"", ""Laptop""]",963.31,{},141079,0,Asia +2023-11-13,78268,786,"[""Charger"", ""Tablet""]",1259.93,"{""loyalty"": ""7%""}",25435,0,South America +2023-05-10,78269,4256,"[""Tablet"", ""Phone""]",4447.99,{},220544,0,North America +2023-03-05,78270,1487,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4182.45,{},206172,0,Africa +2024-04-15,78271,9152,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1374.63,{},59727,0,South America +2024-07-21,78272,313,"[""Charger"", ""Monitor"", ""Phone""]",318.92,"{""loyalty"": ""29%""}",51007,1,Europe +2023-04-06,78273,6811,"[""Tablet""]",3577.45,{},59016,0,North America +2023-08-04,78274,8637,"[""Laptop"", ""Keyboard""]",4875.05,"{""promo"": ""14%""}",163801,1,Europe +2023-08-04,78275,739,"[""Tablet"", ""Headphones"", ""Monitor""]",1167.67,{},269545,1,Africa +2024-04-03,78276,9680,"[""Headphones"", ""Laptop""]",820.77,{},218934,0,Asia +2023-01-31,78277,6814,"[""Tablet""]",3297.52,"{"""": ""29%""}",257857,1,Africa +2024-05-30,78278,4804,"[""Laptop"", ""Wireless Mouse""]",2033.97,"{"""": ""24%""}",122849,0,South America +2023-04-17,78279,3844,"[""Laptop""]",2661.65,{},269596,0,Africa +2023-03-05,78280,6732,"[""Laptop"", ""Tablet"", ""Monitor""]",4638.61,"{"""": ""29%""}",7692,1,North America +2024-09-20,78281,5609,"[""Headphones"", ""Tablet""]",977.33,"{""promo"": ""9%""}",65808,0,Africa +2024-10-15,78282,6254,"[""Phone"", ""Keyboard"", ""Laptop""]",3779.57,{},119753,1,North America +2024-06-04,78283,8622,"[""Headphones"", ""Charger"", ""Laptop""]",983.57,"{""loyalty"": ""8%""}",100606,1,North America +2023-02-22,78284,9100,"[""Laptop""]",2186.88,{},269446,1,South America +2024-12-30,78285,2882,"[""Phone"", ""Tablet""]",4269.5,"{""loyalty"": ""30%""}",186579,1,Africa +2024-08-19,78286,8766,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2229.66,"{""seasonal"": ""24%""}",208351,1,South America +2023-07-24,78287,4486,"[""Charger""]",850.19,"{"""": ""11%""}",35609,1,South America +2023-02-12,78288,204,"[""Tablet"", ""Headphones"", ""Monitor""]",3134.11,{},103880,1,South America +2023-05-03,78289,4326,"[""Charger"", ""Keyboard""]",677.36,{},159521,1,South America +2024-11-08,78290,5764,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1705.84,{},68319,1,Asia +2023-02-24,78291,6551,"[""Headphones""]",2179.36,{},279844,1,Africa +2023-03-20,78292,6613,"[""Headphones"", ""Tablet"", ""Keyboard""]",2912.62,"{""seasonal"": ""16%""}",112097,0,Asia +2023-09-29,78293,2025,"[""Wireless Mouse"", ""Headphones""]",3446.64,{},15544,1,Africa +2023-11-29,78294,7040,"[""Phone""]",3149.76,{},185876,0,North America +2024-08-26,78295,4374,"[""Tablet""]",2716.12,{},281060,1,Asia +2024-07-22,78296,1949,"[""Wireless Mouse""]",695.59,{},21549,1,Africa +2023-06-26,78297,3368,"[""Tablet""]",2260.92,{},113844,1,Asia +2023-08-03,78298,471,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1932.29,{},85795,1,Asia +2023-12-18,78299,6741,"[""Tablet"", ""Charger""]",3172.66,"{""seasonal"": ""18%""}",97963,1,Europe +2023-12-28,78300,1424,"[""Keyboard""]",3992.05,{},1488,1,South America +2024-09-05,78301,519,"[""Phone""]",2608.43,"{""seasonal"": ""13%""}",148074,0,Europe +2024-10-27,78302,8355,"[""Phone"", ""Tablet"", ""Monitor""]",1165.54,{},112589,1,South America +2023-12-18,78303,4868,"[""Charger"", ""Monitor"", ""Headphones""]",4557.35,{},162498,1,South America +2023-08-09,78304,9362,"[""Laptop""]",877.94,"{""loyalty"": ""29%""}",215037,0,Africa +2023-11-18,78305,1316,"[""Charger"", ""Phone"", ""Headphones""]",3328.54,"{"""": ""5%""}",32722,1,South America +2024-05-19,78306,3239,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3414.13,"{""promo"": ""5%""}",216890,0,North America +2023-02-22,78307,6965,"[""Tablet"", ""Headphones""]",1117.7,{},56108,0,South America +2023-10-30,78308,6049,"[""Monitor"", ""Phone""]",3542.05,"{""seasonal"": ""27%""}",32299,1,Asia +2023-05-06,78309,6448,"[""Phone"", ""Keyboard"", ""Laptop""]",375.13,"{"""": ""18%""}",87077,0,Africa +2024-12-03,78310,5656,"[""Charger""]",4923.66,"{""seasonal"": ""12%""}",68743,1,Asia +2024-03-01,78311,6801,"[""Keyboard"", ""Phone""]",1402.95,"{""loyalty"": ""18%""}",214493,0,Europe +2024-08-30,78312,5113,"[""Wireless Mouse""]",714.96,{},223026,1,Africa +2024-12-20,78313,7918,"[""Wireless Mouse""]",502.45,"{""loyalty"": ""13%""}",75336,1,South America +2024-05-10,78314,7774,"[""Monitor""]",2088.01,"{""seasonal"": ""20%""}",256299,1,Africa +2023-12-29,78315,1287,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2916.73,{},197116,0,Europe +2023-11-26,78316,3928,"[""Phone"", ""Laptop"", ""Monitor""]",2309.69,"{""seasonal"": ""19%""}",129626,0,Asia +2024-02-20,78317,5868,"[""Keyboard"", ""Wireless Mouse""]",4779.98,{},176409,1,Africa +2024-07-27,78318,3433,"[""Phone"", ""Headphones""]",1891.59,"{""loyalty"": ""27%""}",249689,0,Africa +2024-03-03,78319,4090,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2310.89,{},33190,0,Africa +2024-05-10,78320,1285,"[""Keyboard""]",4671.88,"{""seasonal"": ""22%""}",272274,1,South America +2023-05-01,78321,2675,"[""Laptop"", ""Wireless Mouse""]",4907.65,{},38553,1,Europe +2023-04-09,78322,9780,"[""Keyboard"", ""Phone"", ""Laptop""]",452.63,"{""promo"": ""18%""}",177110,0,Asia +2024-07-07,78323,3925,"[""Headphones""]",2408.93,{},246786,0,Europe +2023-09-03,78324,5419,"[""Charger"", ""Tablet""]",2508.56,{},3099,1,South America +2023-05-15,78325,7479,"[""Tablet"", ""Charger""]",227.98,{},158440,0,South America +2023-10-24,78326,3760,"[""Monitor"", ""Laptop"", ""Phone""]",4598.63,"{""seasonal"": ""10%""}",120922,1,South America +2023-07-27,78327,8275,"[""Keyboard"", ""Charger"", ""Headphones""]",4645.43,"{""seasonal"": ""22%""}",122606,1,North America +2023-06-23,78328,897,"[""Monitor""]",4237.19,"{""seasonal"": ""11%""}",133082,0,Africa +2024-10-16,78329,7417,"[""Laptop""]",131.43,"{"""": ""12%""}",14042,0,Africa +2024-08-07,78330,5869,"[""Keyboard""]",538.81,"{""seasonal"": ""15%""}",104903,1,South America +2023-06-24,78331,1098,"[""Tablet"", ""Charger""]",2001.76,"{"""": ""26%""}",55472,1,Europe +2024-07-24,78332,9932,"[""Laptop"", ""Charger""]",2176.78,"{""seasonal"": ""18%""}",290070,1,South America +2023-05-31,78333,7601,"[""Headphones""]",1606.35,"{""loyalty"": ""13%""}",291978,0,Europe +2024-09-14,78334,3101,"[""Wireless Mouse""]",1966.71,{},286592,1,Europe +2024-03-09,78335,2312,"[""Wireless Mouse""]",2165.71,"{"""": ""11%""}",72049,0,South America +2023-02-17,78336,5026,"[""Monitor"", ""Keyboard""]",751.76,"{""loyalty"": ""13%""}",136710,1,North America +2023-09-12,78337,9808,"[""Keyboard"", ""Phone""]",4351.27,{},48667,0,South America +2023-07-10,78338,9602,"[""Keyboard""]",644.12,{},281059,1,Europe +2024-05-24,78339,6435,"[""Headphones"", ""Monitor"", ""Charger""]",2284.99,{},234701,1,North America +2024-05-14,78340,683,"[""Monitor"", ""Wireless Mouse""]",191.96,"{""promo"": ""15%""}",92785,1,North America +2023-09-21,78341,7117,"[""Phone""]",4209.11,"{"""": ""9%""}",143059,1,North America +2023-02-20,78342,5292,"[""Monitor"", ""Keyboard""]",938.15,"{"""": ""24%""}",10036,0,Africa +2023-10-20,78343,8162,"[""Tablet""]",4836.43,{},269336,1,Europe +2024-01-12,78344,3193,"[""Charger"", ""Phone"", ""Headphones""]",3979.54,{},97457,1,South America +2024-10-30,78345,9676,"[""Charger"", ""Keyboard""]",3695.27,"{"""": ""9%""}",257860,0,Europe +2024-12-21,78346,7339,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",258.48,{},223904,0,South America +2024-04-13,78347,4623,"[""Keyboard""]",2008.78,"{"""": ""6%""}",299150,1,North America +2023-02-15,78348,979,"[""Charger"", ""Keyboard"", ""Monitor""]",4812.29,{},189628,0,North America +2024-10-25,78349,7319,"[""Tablet"", ""Laptop"", ""Keyboard""]",1141.41,{},203800,1,Asia +2023-11-30,78350,7725,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4507.12,"{""loyalty"": ""13%""}",289443,1,Europe +2024-07-07,78351,2026,"[""Wireless Mouse"", ""Keyboard""]",825.27,{},4016,1,Asia +2024-07-11,78352,2217,"[""Wireless Mouse""]",2413.73,"{""promo"": ""15%""}",65674,1,Europe +2023-12-02,78353,6721,"[""Charger"", ""Monitor""]",2766.04,"{""seasonal"": ""12%""}",283326,1,Africa +2023-05-10,78354,3762,"[""Charger"", ""Headphones""]",813.05,"{"""": ""18%""}",106621,0,South America +2023-02-12,78355,5272,"[""Phone"", ""Keyboard"", ""Laptop""]",515.22,"{"""": ""12%""}",273218,1,Asia +2024-08-24,78356,1705,"[""Headphones"", ""Keyboard"", ""Phone""]",2484.49,"{"""": ""12%""}",45747,0,Asia +2023-11-23,78357,637,"[""Keyboard""]",252.85,{},107140,1,Asia +2024-02-29,78358,4393,"[""Wireless Mouse""]",679.07,"{""promo"": ""26%""}",115928,1,South America +2023-12-27,78359,8363,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1896.9,{},206764,1,South America +2024-09-24,78360,8062,"[""Wireless Mouse""]",2416.41,"{""loyalty"": ""8%""}",190186,0,Africa +2024-10-08,78361,6279,"[""Headphones"", ""Wireless Mouse""]",1460.61,{},183702,0,Europe +2024-04-18,78362,8550,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",336.81,"{"""": ""24%""}",98327,0,Asia +2024-04-07,78363,6681,"[""Laptop"", ""Charger"", ""Keyboard""]",253.23,{},10616,1,Asia +2024-07-28,78364,95,"[""Charger"", ""Keyboard""]",2383.44,{},245902,1,North America +2024-05-30,78365,3479,"[""Phone"", ""Keyboard"", ""Laptop""]",1340.13,"{""promo"": ""27%""}",129170,1,North America +2024-01-28,78366,8206,"[""Keyboard"", ""Wireless Mouse""]",1652.64,{},128850,1,Europe +2024-10-21,78367,2256,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",789.34,{},289709,1,Africa +2024-09-28,78368,7831,"[""Keyboard"", ""Laptop""]",4432.55,"{""seasonal"": ""7%""}",144439,0,Africa +2023-11-09,78369,7335,"[""Monitor"", ""Laptop""]",3675.33,"{""seasonal"": ""10%""}",172190,1,Asia +2023-12-07,78370,5027,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2235.19,"{""promo"": ""11%""}",31302,0,Asia +2023-10-18,78371,9416,"[""Laptop""]",780.3,{},156944,0,Europe +2024-07-31,78372,3830,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3463.42,"{"""": ""17%""}",96663,1,North America +2024-11-01,78373,8602,"[""Tablet""]",510.8,"{""loyalty"": ""29%""}",105379,1,South America +2024-05-28,78374,8691,"[""Tablet"", ""Monitor""]",4762.14,"{"""": ""28%""}",291743,1,Africa +2023-08-21,78375,7,"[""Charger"", ""Monitor""]",1086.17,"{""seasonal"": ""17%""}",139039,1,Africa +2023-12-23,78376,920,"[""Laptop"", ""Keyboard"", ""Charger""]",205.31,{},12780,1,Europe +2023-03-31,78377,8940,"[""Charger""]",4946.89,"{""loyalty"": ""6%""}",113589,0,South America +2024-07-13,78378,3815,"[""Phone""]",1669.54,"{""seasonal"": ""27%""}",132808,0,North America +2024-08-16,78379,3642,"[""Monitor"", ""Headphones"", ""Tablet""]",266.43,{},293751,0,Europe +2023-11-17,78380,3906,"[""Wireless Mouse"", ""Phone"", ""Charger""]",173.85,"{""promo"": ""22%""}",182388,0,North America +2024-07-05,78381,1123,"[""Laptop""]",2138.77,{},254335,0,Europe +2023-11-08,78382,6765,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4262.36,{},60910,0,South America +2024-08-31,78383,175,"[""Tablet"", ""Monitor""]",2072.56,"{"""": ""13%""}",298748,0,Europe +2023-02-01,78384,1573,"[""Phone""]",3603.22,"{""promo"": ""24%""}",70390,1,Asia +2024-09-04,78385,5499,"[""Phone"", ""Tablet""]",2508.16,"{""seasonal"": ""11%""}",208085,0,South America +2024-07-27,78386,287,"[""Monitor"", ""Keyboard""]",3652.07,"{"""": ""9%""}",79016,1,Africa +2023-10-07,78387,447,"[""Keyboard"", ""Phone"", ""Tablet""]",3767.45,{},184986,1,Europe +2024-08-09,78388,7142,"[""Headphones"", ""Monitor""]",2087.04,{},59380,1,South America +2023-12-19,78389,827,"[""Wireless Mouse"", ""Headphones""]",3435.72,{},10615,1,South America +2024-01-20,78390,3489,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",879.73,"{""seasonal"": ""19%""}",8653,0,Africa +2023-09-03,78391,2334,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2085.99,"{""loyalty"": ""19%""}",146634,0,South America +2023-12-17,78392,2110,"[""Headphones"", ""Phone""]",3213.68,"{"""": ""14%""}",66668,0,North America +2024-03-25,78393,1297,"[""Charger""]",3982.85,"{"""": ""22%""}",240895,0,Asia +2024-01-28,78394,1639,"[""Headphones"", ""Charger""]",2021.12,{},27371,0,South America +2024-02-11,78395,2834,"[""Monitor"", ""Headphones"", ""Phone""]",3315.54,"{""loyalty"": ""8%""}",39323,1,Europe +2023-03-13,78396,5476,"[""Laptop"", ""Phone""]",2249.45,"{""loyalty"": ""13%""}",212626,0,Asia +2023-04-07,78397,136,"[""Wireless Mouse""]",4440.6,{},8167,1,North America +2024-05-05,78398,9049,"[""Headphones"", ""Tablet"", ""Charger""]",243.57,{},54672,0,North America +2023-02-02,78399,5316,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2037.1,"{""promo"": ""17%""}",284759,0,Asia +2023-04-10,78400,910,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3791.62,{},271942,1,South America +2023-10-15,78401,3753,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2617.82,"{"""": ""17%""}",171942,1,Europe +2024-08-01,78402,9805,"[""Phone""]",2111.85,"{""loyalty"": ""7%""}",145201,1,South America +2024-08-07,78403,9713,"[""Keyboard"", ""Headphones"", ""Monitor""]",2018.7,"{""loyalty"": ""6%""}",122979,1,Europe +2023-12-26,78404,5797,"[""Phone""]",878.6,{},119603,1,Europe +2024-04-18,78405,8520,"[""Wireless Mouse""]",3945.32,{},179512,1,Asia +2023-03-29,78406,7670,"[""Monitor"", ""Laptop""]",462.5,"{""loyalty"": ""18%""}",283805,1,Africa +2024-02-13,78407,7512,"[""Phone""]",1469.01,{},198299,0,Europe +2024-06-07,78408,6498,"[""Monitor"", ""Wireless Mouse""]",2345.01,"{""loyalty"": ""27%""}",283760,1,Asia +2024-09-17,78409,9861,"[""Monitor"", ""Headphones""]",942.32,"{"""": ""27%""}",236802,0,North America +2023-01-15,78410,2864,"[""Monitor"", ""Tablet""]",2988.76,"{"""": ""19%""}",214212,1,North America +2024-01-09,78411,9975,"[""Phone"", ""Wireless Mouse""]",2058.64,"{"""": ""8%""}",150509,1,North America +2024-05-18,78412,4195,"[""Phone"", ""Charger""]",310.31,{},129317,0,North America +2023-04-28,78413,5452,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3096.19,{},226984,1,Europe +2024-03-16,78414,2602,"[""Keyboard"", ""Headphones"", ""Monitor""]",1328.24,{},248119,1,Europe +2024-10-03,78415,2616,"[""Tablet"", ""Headphones""]",1117.31,{},121856,1,Europe +2024-05-30,78416,6356,"[""Charger""]",3079.17,"{""loyalty"": ""11%""}",144594,1,Africa +2024-01-05,78417,5772,"[""Wireless Mouse""]",1914.37,"{""seasonal"": ""25%""}",175689,1,Africa +2023-11-20,78418,3288,"[""Laptop""]",1475.71,"{""seasonal"": ""20%""}",127205,1,North America +2024-06-03,78419,7193,"[""Keyboard"", ""Tablet"", ""Phone""]",187.14,{},41790,1,North America +2024-05-09,78420,5958,"[""Keyboard"", ""Wireless Mouse""]",3228.92,"{""promo"": ""21%""}",240295,0,South America +2023-05-06,78421,1559,"[""Charger"", ""Monitor""]",3904.74,{},145405,1,South America +2023-12-15,78422,2705,"[""Tablet"", ""Keyboard"", ""Laptop""]",2805.52,"{""seasonal"": ""9%""}",164352,1,Asia +2023-05-08,78423,5178,"[""Keyboard"", ""Headphones""]",1227.32,"{""loyalty"": ""20%""}",216644,1,Africa +2023-08-27,78424,5180,"[""Charger""]",714.8,{},102901,0,North America +2024-07-18,78425,722,"[""Keyboard"", ""Charger""]",1107.91,"{""promo"": ""20%""}",262122,0,Africa +2023-02-18,78426,5064,"[""Keyboard"", ""Headphones"", ""Monitor""]",1476.18,{},228037,0,Asia +2024-12-19,78427,153,"[""Tablet"", ""Laptop""]",3257.78,{},278690,1,North America +2023-09-06,78428,6080,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3268.29,{},85141,1,North America +2023-03-07,78429,3484,"[""Laptop"", ""Wireless Mouse""]",1039.99,"{""seasonal"": ""17%""}",102662,0,Europe +2023-12-01,78430,402,"[""Laptop""]",2793.56,{},9940,1,South America +2023-06-06,78431,204,"[""Laptop""]",3057.33,{},23783,0,Europe +2024-09-26,78432,315,"[""Wireless Mouse""]",2952.16,"{""promo"": ""5%""}",166661,1,South America +2023-07-02,78433,3484,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4290.68,{},271508,0,North America +2023-09-16,78434,7725,"[""Wireless Mouse"", ""Charger""]",1494.79,"{""seasonal"": ""10%""}",120039,1,Europe +2023-06-07,78435,3574,"[""Wireless Mouse"", ""Phone""]",953.34,"{""promo"": ""6%""}",247258,0,North America +2024-08-04,78436,5211,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4638.58,{},158772,0,North America +2024-02-07,78437,3157,"[""Tablet""]",1587.63,{},120763,1,North America +2023-09-08,78438,7680,"[""Wireless Mouse"", ""Tablet""]",2398.93,{},61924,1,South America +2023-03-20,78439,2468,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",147.68,"{""promo"": ""13%""}",20220,1,North America +2023-10-06,78440,7266,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1731.24,"{""loyalty"": ""24%""}",195857,0,North America +2024-03-02,78441,5019,"[""Laptop"", ""Keyboard""]",4064.6,{},251256,0,North America +2023-05-12,78442,4782,"[""Headphones"", ""Charger""]",3005.24,{},156809,1,North America +2023-05-22,78443,2175,"[""Laptop""]",2940.55,{},93991,1,Asia +2024-12-13,78444,7411,"[""Tablet""]",202.43,"{""seasonal"": ""27%""}",50575,0,North America +2023-04-18,78445,1660,"[""Tablet""]",186.53,{},19345,1,Europe +2023-04-26,78446,6996,"[""Wireless Mouse"", ""Phone""]",2561.42,{},201712,0,North America +2023-06-16,78447,4809,"[""Keyboard""]",1522.17,{},101218,1,Asia +2023-10-25,78448,7030,"[""Headphones"", ""Keyboard""]",4701.6,{},124018,1,South America +2023-10-06,78449,2753,"[""Laptop"", ""Headphones""]",3141.69,{},74610,1,Asia +2024-04-14,78450,520,"[""Headphones"", ""Tablet""]",3189.97,{},157977,0,Asia +2023-06-01,78451,9943,"[""Phone""]",3596.3,{},248992,0,Africa +2023-05-15,78452,6930,"[""Monitor""]",2041.24,{},100003,1,South America +2024-11-18,78453,6435,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2864.3,{},192300,1,Africa +2024-06-04,78454,5889,"[""Laptop"", ""Tablet"", ""Phone""]",1254.08,{},127857,0,Asia +2024-08-29,78455,5810,"[""Monitor""]",834.68,{},17563,1,South America +2024-01-14,78456,8897,"[""Headphones"", ""Monitor""]",2476.97,{},255185,1,Europe +2023-12-15,78457,5201,"[""Wireless Mouse""]",1229.84,"{"""": ""20%""}",72633,1,Asia +2024-04-10,78458,5989,"[""Wireless Mouse""]",1093.03,{},142575,1,South America +2023-01-10,78459,4974,"[""Phone"", ""Headphones""]",2438.19,{},19144,1,Asia +2024-10-18,78460,2605,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",68.69,"{""loyalty"": ""15%""}",208776,1,Africa +2024-08-20,78461,5567,"[""Phone"", ""Laptop"", ""Keyboard""]",1060.6,"{""promo"": ""23%""}",41767,1,South America +2024-05-17,78462,3052,"[""Wireless Mouse"", ""Phone"", ""Charger""]",807.05,{},96188,0,South America +2023-01-27,78463,8222,"[""Laptop"", ""Tablet"", ""Phone""]",1510.22,"{"""": ""18%""}",133836,0,North America +2023-02-24,78464,7918,"[""Headphones""]",1103.32,"{""loyalty"": ""18%""}",148645,1,Asia +2024-02-07,78465,7464,"[""Monitor""]",484.98,{},22121,1,South America +2024-06-19,78466,7417,"[""Phone"", ""Wireless Mouse""]",2436.12,{},198749,0,Africa +2024-09-17,78467,7236,"[""Monitor"", ""Tablet"", ""Headphones""]",3404.44,{},217724,0,Africa +2023-08-12,78468,8908,"[""Keyboard"", ""Tablet"", ""Laptop""]",2280.7,{},229345,1,Asia +2024-06-20,78469,1199,"[""Headphones""]",3667.94,"{""seasonal"": ""27%""}",290439,0,North America +2024-12-13,78470,4347,"[""Keyboard""]",1864.08,"{""promo"": ""23%""}",244945,0,North America +2023-11-25,78471,1322,"[""Keyboard"", ""Phone"", ""Monitor""]",2748.66,"{""loyalty"": ""17%""}",141584,0,North America +2023-06-23,78472,8771,"[""Laptop"", ""Phone"", ""Keyboard""]",2750.73,{},252923,1,Europe +2024-01-16,78473,8363,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2953.38,"{""loyalty"": ""5%""}",290195,1,North America +2024-10-08,78474,8027,"[""Tablet""]",4502.71,"{""promo"": ""28%""}",288553,1,Africa +2023-04-01,78475,2059,"[""Monitor""]",1871.48,"{""seasonal"": ""26%""}",16513,1,North America +2023-02-15,78476,4467,"[""Tablet"", ""Laptop"", ""Phone""]",4263.63,{},142272,1,South America +2024-05-21,78477,8540,"[""Wireless Mouse"", ""Keyboard""]",1146.17,"{"""": ""30%""}",131688,1,North America +2024-04-04,78478,4063,"[""Monitor"", ""Laptop"", ""Charger""]",1997.87,"{""promo"": ""11%""}",165183,0,Europe +2023-09-04,78479,5910,"[""Monitor""]",2924.48,{},124201,0,Africa +2024-06-10,78480,4187,"[""Keyboard""]",2399.77,"{""seasonal"": ""9%""}",88905,1,Europe +2023-08-11,78481,3678,"[""Laptop"", ""Keyboard"", ""Phone""]",4593.22,{},185512,0,Europe +2024-05-13,78482,5441,"[""Keyboard"", ""Charger"", ""Phone""]",2009.22,"{"""": ""11%""}",157903,0,Asia +2023-10-04,78483,2059,"[""Wireless Mouse"", ""Tablet""]",3691.66,{},2449,0,Asia +2023-09-01,78484,8746,"[""Laptop"", ""Headphones""]",4618.4,{},122719,0,Europe +2024-04-27,78485,9616,"[""Laptop""]",2473.62,{},53499,0,Europe +2024-02-19,78486,8290,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4566.07,"{""loyalty"": ""16%""}",76281,1,Africa +2023-06-16,78487,4659,"[""Charger""]",1214.31,"{"""": ""6%""}",138553,0,Africa +2023-01-21,78488,4981,"[""Wireless Mouse""]",3487.6,{},159351,1,Asia +2024-04-09,78489,6027,"[""Charger""]",1368.1,{},28529,0,South America +2024-07-31,78490,6330,"[""Headphones"", ""Phone""]",1870.51,"{""seasonal"": ""28%""}",18140,0,Africa +2024-06-02,78491,7743,"[""Phone"", ""Monitor""]",1031.47,"{""promo"": ""21%""}",5348,1,Europe +2023-02-26,78492,5177,"[""Phone"", ""Keyboard"", ""Headphones""]",424.17,"{""seasonal"": ""18%""}",57800,1,Africa +2024-05-29,78493,2862,"[""Tablet"", ""Keyboard"", ""Laptop""]",1854.37,{},285300,1,Europe +2023-05-17,78494,2025,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1906.24,{},253701,0,Europe +2024-09-26,78495,5814,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1655.86,{},56091,1,Europe +2024-07-04,78496,4159,"[""Tablet""]",4669.29,{},237873,0,Europe +2024-11-29,78497,6951,"[""Monitor""]",1582.82,"{"""": ""11%""}",108698,0,Africa +2023-10-31,78498,1218,"[""Charger"", ""Wireless Mouse""]",3347.54,{},24725,0,Asia +2023-12-14,78499,7057,"[""Headphones"", ""Charger"", ""Monitor""]",3242.9,"{""loyalty"": ""16%""}",160656,1,North America +2024-11-16,78500,5489,"[""Laptop"", ""Wireless Mouse""]",4271.52,{},151981,0,South America +2023-04-05,78501,8658,"[""Monitor""]",933.26,"{""seasonal"": ""25%""}",167861,0,North America +2024-07-05,78502,5528,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",194.41,{},262444,0,Europe +2023-01-21,78503,235,"[""Tablet"", ""Charger"", ""Laptop""]",2201.32,{},165705,0,North America +2024-12-07,78504,9913,"[""Monitor""]",3503.03,"{""loyalty"": ""18%""}",80331,1,Africa +2024-06-22,78505,5921,"[""Monitor"", ""Headphones"", ""Laptop""]",945.07,{},98433,1,South America +2023-11-21,78506,2551,"[""Laptop""]",4089.16,{},172634,1,South America +2023-02-24,78507,2768,"[""Headphones""]",3885.06,{},34034,0,South America +2024-11-27,78508,2896,"[""Headphones"", ""Tablet""]",1691.17,{},132612,0,South America +2023-08-28,78509,7733,"[""Charger"", ""Phone"", ""Headphones""]",219.74,"{""promo"": ""30%""}",163908,1,North America +2024-02-13,78510,7036,"[""Monitor""]",899.99,{},71267,1,South America +2023-12-18,78511,2742,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4686.61,"{""promo"": ""25%""}",179447,0,Europe +2024-07-11,78512,5717,"[""Phone"", ""Laptop"", ""Monitor""]",3551.44,"{"""": ""7%""}",44556,0,South America +2024-09-26,78513,4130,"[""Phone"", ""Charger"", ""Monitor""]",925.84,"{""loyalty"": ""19%""}",235078,0,Europe +2024-02-06,78514,6075,"[""Phone""]",1484.53,{},66679,0,North America +2023-04-21,78515,5349,"[""Headphones"", ""Keyboard"", ""Charger""]",2046.56,"{""seasonal"": ""8%""}",132301,1,Asia +2024-03-16,78516,4447,"[""Tablet""]",3265.8,"{""loyalty"": ""16%""}",83945,0,Africa +2024-02-03,78517,6262,"[""Monitor"", ""Laptop""]",4595.12,"{""promo"": ""23%""}",47994,0,Europe +2024-09-22,78518,3542,"[""Wireless Mouse"", ""Keyboard""]",3908.76,"{""seasonal"": ""18%""}",38836,1,Europe +2024-11-02,78519,4251,"[""Monitor"", ""Keyboard""]",4496.91,"{""loyalty"": ""15%""}",75108,1,Africa +2024-05-23,78520,2228,"[""Laptop"", ""Tablet"", ""Monitor""]",4002.64,"{""loyalty"": ""19%""}",165908,0,Asia +2024-11-09,78521,7460,"[""Tablet"", ""Phone""]",360.85,"{""seasonal"": ""28%""}",244503,0,Europe +2023-05-11,78522,4450,"[""Phone"", ""Headphones""]",3778.34,{},188883,1,Europe +2023-12-07,78523,2941,"[""Charger"", ""Tablet""]",3778.31,{},47871,1,North America +2023-05-20,78524,3669,"[""Monitor""]",2674.02,{},29365,0,South America +2024-10-22,78525,5366,"[""Monitor"", ""Laptop"", ""Keyboard""]",1278.8,"{"""": ""23%""}",251685,1,Europe +2023-04-29,78526,4600,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2090.54,{},207881,0,Africa +2023-04-24,78527,1110,"[""Wireless Mouse""]",3701.68,"{""loyalty"": ""5%""}",182260,0,North America +2023-11-03,78528,9426,"[""Wireless Mouse"", ""Laptop""]",1685.56,{},10539,0,Africa +2024-06-10,78529,7880,"[""Wireless Mouse""]",591.94,"{""promo"": ""14%""}",187392,0,North America +2023-12-20,78530,8259,"[""Headphones"", ""Monitor"", ""Keyboard""]",2106.92,{},15215,0,South America +2023-06-22,78531,1429,"[""Laptop""]",358.16,{},240192,1,Europe +2024-06-13,78532,7656,"[""Wireless Mouse"", ""Monitor""]",1707.53,"{"""": ""24%""}",219295,1,North America +2024-12-12,78533,5993,"[""Headphones"", ""Tablet"", ""Monitor""]",4180.65,"{""loyalty"": ""14%""}",237798,1,Asia +2024-09-21,78534,4323,"[""Laptop"", ""Phone"", ""Keyboard""]",1214.39,{},22747,0,North America +2023-05-29,78535,3724,"[""Laptop"", ""Headphones"", ""Tablet""]",4615.66,"{""seasonal"": ""11%""}",76959,1,South America +2024-03-05,78536,8376,"[""Charger"", ""Headphones""]",2919.73,{},89460,1,Africa +2023-04-05,78537,5410,"[""Headphones"", ""Keyboard""]",1950.45,{},263224,1,Africa +2023-08-23,78538,5579,"[""Wireless Mouse"", ""Phone""]",3155.59,{},163938,0,Europe +2024-02-09,78539,2787,"[""Wireless Mouse"", ""Tablet""]",2790.95,"{""promo"": ""7%""}",187729,0,Africa +2024-10-14,78540,717,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2260.83,"{""promo"": ""16%""}",211183,1,Asia +2023-05-01,78541,1857,"[""Charger"", ""Headphones""]",2915.84,{},264922,0,South America +2024-01-12,78542,4982,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1089.68,{},157321,1,Africa +2023-05-03,78543,1818,"[""Wireless Mouse"", ""Charger""]",2105.25,{},264741,0,Africa +2024-08-14,78544,8565,"[""Keyboard"", ""Headphones""]",3550.83,{},63131,1,Europe +2023-07-26,78545,4198,"[""Tablet"", ""Keyboard"", ""Headphones""]",4218.49,{},163817,0,South America +2024-05-13,78546,2409,"[""Headphones"", ""Keyboard""]",1227.82,{},92313,0,Africa +2023-12-25,78547,2008,"[""Charger""]",3170.9,"{""seasonal"": ""30%""}",146040,1,Africa +2024-05-15,78548,4384,"[""Wireless Mouse""]",3597.5,"{""promo"": ""30%""}",135701,0,North America +2024-12-27,78549,7824,"[""Headphones"", ""Tablet"", ""Charger""]",2372.17,"{"""": ""19%""}",37566,0,North America +2024-03-31,78550,9362,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",519.17,"{""seasonal"": ""5%""}",22666,1,South America +2023-12-09,78551,5105,"[""Laptop"", ""Phone"", ""Charger""]",1310.22,{},71794,1,North America +2023-04-28,78552,4500,"[""Tablet"", ""Charger"", ""Laptop""]",1388.03,"{""promo"": ""21%""}",193484,0,North America +2024-08-02,78553,7637,"[""Monitor"", ""Charger"", ""Keyboard""]",806.52,"{""promo"": ""27%""}",125897,1,Asia +2023-12-17,78554,5547,"[""Charger"", ""Headphones"", ""Keyboard""]",2439.7,{},214450,0,North America +2023-05-11,78555,8790,"[""Keyboard""]",767.33,{},109388,1,Europe +2023-11-20,78556,3503,"[""Headphones""]",3144.84,{},116056,1,South America +2023-05-12,78557,9116,"[""Wireless Mouse""]",1306.6,{},223239,0,Africa +2024-12-13,78558,9304,"[""Tablet"", ""Laptop""]",4963.57,"{""seasonal"": ""18%""}",121273,1,North America +2024-06-15,78559,4605,"[""Wireless Mouse"", ""Monitor""]",4720.66,{},83719,0,Asia +2023-05-02,78560,3578,"[""Laptop"", ""Wireless Mouse""]",4993.79,"{""seasonal"": ""9%""}",278671,1,North America +2023-12-13,78561,6630,"[""Phone""]",1721.74,{},118904,1,South America +2024-02-04,78562,3086,"[""Headphones"", ""Charger""]",293.46,"{"""": ""25%""}",196615,0,Asia +2023-12-13,78563,119,"[""Monitor"", ""Headphones""]",3677.89,{},253953,1,North America +2024-07-29,78564,5514,"[""Charger"", ""Monitor""]",3886.58,"{""loyalty"": ""30%""}",32384,0,South America +2023-12-28,78565,6965,"[""Laptop"", ""Keyboard"", ""Phone""]",2251.96,"{""loyalty"": ""20%""}",247092,1,North America +2023-12-01,78566,3498,"[""Tablet"", ""Laptop"", ""Charger""]",3614.41,{},58696,1,Europe +2023-03-09,78567,7564,"[""Keyboard"", ""Monitor"", ""Laptop""]",1439.96,{},71384,1,North America +2024-02-11,78568,5264,"[""Headphones"", ""Monitor"", ""Keyboard""]",1774.7,{},167969,1,Asia +2024-08-26,78569,4764,"[""Laptop""]",4292.59,{},43759,0,North America +2024-05-13,78570,9106,"[""Phone""]",4027.68,"{""promo"": ""21%""}",145663,1,Europe +2023-06-18,78571,8290,"[""Phone"", ""Monitor""]",3435.46,"{""promo"": ""14%""}",163511,0,Europe +2023-05-19,78572,1294,"[""Tablet"", ""Monitor""]",4456.16,{},211527,0,Asia +2024-07-02,78573,2062,"[""Phone""]",2771.42,{},29445,0,North America +2024-07-28,78574,310,"[""Monitor""]",4231.57,{},104424,1,Africa +2023-10-11,78575,6532,"[""Wireless Mouse"", ""Laptop""]",178.08,"{""loyalty"": ""28%""}",223047,1,Africa +2024-12-13,78576,3146,"[""Laptop"", ""Phone"", ""Keyboard""]",1930.83,"{""seasonal"": ""22%""}",185373,0,Europe +2023-05-29,78577,3981,"[""Phone"", ""Laptop""]",3843.09,{},170592,0,North America +2023-09-27,78578,7819,"[""Tablet""]",651.05,"{"""": ""29%""}",202156,1,North America +2024-04-17,78579,786,"[""Phone"", ""Monitor""]",2901.67,{},57786,0,North America +2024-12-21,78580,145,"[""Headphones"", ""Laptop""]",4706.4,"{""loyalty"": ""8%""}",195767,1,South America +2024-10-13,78581,8481,"[""Charger""]",3974.07,{},74337,0,Africa +2023-03-22,78582,5359,"[""Wireless Mouse"", ""Charger""]",3183.88,"{""promo"": ""19%""}",250474,0,Europe +2024-06-19,78583,5821,"[""Keyboard"", ""Headphones"", ""Laptop""]",2300.54,{},67138,0,North America +2023-03-14,78584,77,"[""Keyboard"", ""Charger"", ""Laptop""]",629.71,{},5126,0,North America +2023-12-30,78585,8414,"[""Laptop"", ""Phone"", ""Keyboard""]",2929.05,"{"""": ""28%""}",215202,0,South America +2023-10-29,78586,9862,"[""Keyboard""]",487.05,"{""loyalty"": ""6%""}",47994,0,Europe +2024-01-19,78587,2398,"[""Charger""]",824.77,{},94118,1,Asia +2024-12-02,78588,6691,"[""Tablet"", ""Monitor"", ""Headphones""]",1025.98,"{""seasonal"": ""30%""}",88579,1,North America +2024-11-30,78589,7295,"[""Laptop"", ""Monitor""]",812.15,"{"""": ""22%""}",210413,1,South America +2023-09-21,78590,4635,"[""Tablet""]",2213.77,"{""promo"": ""22%""}",22316,1,Asia +2024-10-31,78591,4883,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",680.4,"{""loyalty"": ""10%""}",176335,1,Africa +2023-08-07,78592,2681,"[""Headphones""]",4693.65,{},131114,0,Africa +2023-02-21,78593,3511,"[""Monitor"", ""Laptop""]",4823.52,"{"""": ""19%""}",250537,0,South America +2023-12-06,78594,5496,"[""Monitor"", ""Laptop""]",2345.48,{},93997,1,Asia +2024-07-03,78595,9479,"[""Phone"", ""Headphones"", ""Tablet""]",4921.02,"{""loyalty"": ""19%""}",62366,1,South America +2023-10-06,78596,5436,"[""Keyboard"", ""Wireless Mouse""]",3847.07,{},200797,1,South America +2024-12-28,78597,9520,"[""Keyboard"", ""Phone"", ""Monitor""]",2736.36,"{""loyalty"": ""8%""}",190912,0,Africa +2024-10-06,78598,2208,"[""Charger"", ""Laptop"", ""Headphones""]",4917.43,{},233316,1,North America +2024-10-29,78599,9890,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2812.35,{},3525,0,Africa +2024-01-06,78600,6720,"[""Laptop"", ""Keyboard""]",3597.38,{},73936,0,South America +2024-07-24,78601,660,"[""Phone"", ""Tablet""]",1478.36,{},173564,1,Africa +2023-01-03,78602,9994,"[""Monitor""]",158.1,{},292602,0,Africa +2024-06-01,78603,6180,"[""Wireless Mouse"", ""Keyboard""]",4560.93,"{""promo"": ""22%""}",197864,0,South America +2023-11-04,78604,3977,"[""Tablet"", ""Charger"", ""Headphones""]",1181.04,{},254902,1,Africa +2024-10-04,78605,4613,"[""Charger""]",925.11,"{""loyalty"": ""21%""}",228941,0,Asia +2023-01-17,78606,8943,"[""Charger"", ""Headphones"", ""Keyboard""]",932.71,{},251880,1,North America +2023-12-21,78607,6172,"[""Keyboard"", ""Headphones"", ""Laptop""]",4478.16,"{"""": ""30%""}",129968,0,Africa +2024-06-26,78608,3763,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2188.27,"{""loyalty"": ""25%""}",139676,1,North America +2023-07-10,78609,6365,"[""Wireless Mouse""]",1015.26,"{""loyalty"": ""5%""}",176356,0,Europe +2023-05-13,78610,7655,"[""Monitor""]",1412.29,{},50327,0,Africa +2024-04-24,78611,9355,"[""Phone"", ""Keyboard""]",1392.42,"{"""": ""15%""}",11983,0,Asia +2023-06-30,78612,945,"[""Laptop""]",4378.3,{},254616,1,North America +2024-07-16,78613,5742,"[""Headphones"", ""Charger"", ""Phone""]",3050.1,"{""seasonal"": ""5%""}",194463,1,South America +2023-06-14,78614,3931,"[""Monitor""]",2905.79,"{"""": ""21%""}",256905,1,South America +2023-09-14,78615,6406,"[""Keyboard"", ""Tablet""]",1015.33,{},46330,0,South America +2023-06-29,78616,3920,"[""Wireless Mouse""]",4188.29,{},151759,0,North America +2024-04-19,78617,2798,"[""Monitor"", ""Tablet""]",4120.2,{},137025,0,Africa +2023-07-17,78618,6378,"[""Tablet"", ""Phone""]",3053.72,{},233899,0,Asia +2023-11-22,78619,7783,"[""Tablet"", ""Laptop"", ""Phone""]",4421.67,{},22123,0,South America +2024-02-04,78620,6089,"[""Charger"", ""Monitor""]",260.58,{},264927,0,Europe +2024-01-03,78621,2528,"[""Laptop""]",3652.92,"{"""": ""25%""}",163690,0,Africa +2024-03-28,78622,211,"[""Charger"", ""Tablet"", ""Headphones""]",2252.2,{},111004,1,South America +2023-03-03,78623,3025,"[""Keyboard"", ""Charger""]",895.5,"{""seasonal"": ""7%""}",124071,0,Asia +2024-04-29,78624,8748,"[""Wireless Mouse"", ""Phone""]",4052.13,"{""promo"": ""11%""}",197553,0,Europe +2023-10-30,78625,8189,"[""Charger""]",2279.87,"{""promo"": ""6%""}",258762,1,Africa +2023-10-16,78626,9675,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2184.36,{},50086,0,Asia +2024-12-16,78627,2678,"[""Phone"", ""Charger""]",3769.38,{},71629,0,Europe +2024-08-04,78628,35,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1302.29,{},6102,1,South America +2024-08-21,78629,5365,"[""Tablet"", ""Wireless Mouse""]",3663.54,"{""loyalty"": ""21%""}",45915,1,Africa +2023-11-13,78630,1920,"[""Laptop"", ""Charger""]",4272.99,{},161177,0,South America +2024-07-15,78631,8270,"[""Tablet"", ""Phone"", ""Headphones""]",2499.93,{},271596,1,North America +2023-06-28,78632,4168,"[""Tablet"", ""Laptop"", ""Monitor""]",4822.65,"{""promo"": ""18%""}",149481,0,Asia +2023-05-22,78633,4984,"[""Phone""]",1811.02,{},287128,1,Asia +2023-09-10,78634,5985,"[""Phone"", ""Headphones""]",4443.23,"{"""": ""8%""}",275304,0,North America +2023-12-16,78635,9506,"[""Charger""]",560.45,{},294749,1,Africa +2024-08-23,78636,3925,"[""Keyboard""]",4401.66,{},17127,0,South America +2023-05-08,78637,8719,"[""Keyboard"", ""Headphones""]",3137.07,{},7685,1,Africa +2024-02-01,78638,6850,"[""Tablet""]",4641.64,{},164170,1,Asia +2023-07-27,78639,3635,"[""Monitor""]",2010.87,{},11769,1,Asia +2024-02-03,78640,7307,"[""Monitor""]",4408.2,"{""loyalty"": ""16%""}",279509,1,North America +2023-12-31,78641,7039,"[""Tablet"", ""Headphones""]",914.71,"{""promo"": ""10%""}",87025,1,Europe +2024-05-19,78642,2096,"[""Tablet""]",3624.73,"{""loyalty"": ""28%""}",23361,1,South America +2023-05-16,78643,4445,"[""Tablet"", ""Monitor""]",461.01,"{"""": ""8%""}",240037,1,Africa +2023-08-17,78644,498,"[""Headphones"", ""Tablet""]",1085.78,{},91683,1,North America +2023-03-15,78645,9380,"[""Wireless Mouse""]",145.05,"{""loyalty"": ""8%""}",216147,0,North America +2023-09-18,78646,6202,"[""Charger"", ""Tablet""]",237.5,"{"""": ""21%""}",214533,0,Asia +2024-01-16,78647,7254,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3847.92,"{"""": ""14%""}",251006,1,Europe +2024-10-26,78648,139,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",252.96,"{""loyalty"": ""17%""}",30861,0,North America +2024-10-29,78649,1126,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1968.64,"{""loyalty"": ""11%""}",205436,1,Europe +2023-01-21,78650,9293,"[""Keyboard""]",495.66,"{""seasonal"": ""27%""}",59239,0,Africa +2023-06-27,78651,9442,"[""Charger"", ""Headphones""]",3871.6,"{""promo"": ""25%""}",236638,0,Asia +2023-04-28,78652,6764,"[""Tablet""]",4995.2,{},266334,1,South America +2024-07-08,78653,6322,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",668.37,{},114252,1,North America +2024-02-15,78654,5038,"[""Wireless Mouse""]",2758.9,{},15529,0,South America +2024-04-28,78655,901,"[""Charger"", ""Monitor"", ""Phone""]",3157.55,"{""loyalty"": ""26%""}",105734,0,South America +2024-09-04,78656,8017,"[""Monitor""]",3015.2,{},299138,0,Africa +2023-04-22,78657,6005,"[""Keyboard""]",3602.63,{},109896,0,Asia +2024-06-10,78658,145,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1801.03,{},104610,0,North America +2024-09-23,78659,9718,"[""Charger"", ""Laptop""]",1537.96,"{"""": ""29%""}",32975,1,South America +2024-07-21,78660,920,"[""Tablet"", ""Headphones"", ""Keyboard""]",2649.17,{},237466,1,South America +2023-05-05,78661,5735,"[""Keyboard"", ""Tablet""]",1263.77,{},263418,0,Asia +2023-06-19,78662,8459,"[""Wireless Mouse""]",2997.01,"{""promo"": ""10%""}",89011,0,Europe +2024-10-08,78663,2121,"[""Laptop"", ""Headphones"", ""Monitor""]",3008.91,{},222262,0,Europe +2024-08-30,78664,5623,"[""Laptop""]",4935.2,{},73928,0,North America +2023-05-22,78665,4146,"[""Laptop"", ""Phone"", ""Headphones""]",1561.72,{},72563,1,Europe +2023-02-21,78666,1669,"[""Keyboard"", ""Headphones"", ""Tablet""]",3512.66,"{""promo"": ""6%""}",218164,0,Asia +2023-08-01,78667,8680,"[""Monitor""]",2183.55,{},112055,0,Europe +2024-01-03,78668,3447,"[""Charger"", ""Tablet""]",2458.52,{},161526,0,Europe +2023-01-30,78669,8206,"[""Headphones"", ""Monitor"", ""Tablet""]",1954.47,"{"""": ""26%""}",56863,0,South America +2023-05-03,78670,2266,"[""Charger"", ""Laptop""]",1826.95,{},284854,1,Asia +2024-10-13,78671,872,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2483.33,{},147715,1,Africa +2023-05-21,78672,272,"[""Laptop""]",1536.8,"{"""": ""27%""}",198894,0,North America +2024-12-11,78673,9957,"[""Phone""]",2842.3,"{""seasonal"": ""28%""}",104599,1,North America +2023-09-30,78674,4108,"[""Keyboard"", ""Laptop"", ""Tablet""]",3560.06,{},246783,1,South America +2023-04-09,78675,7383,"[""Wireless Mouse""]",4463.81,{},155879,0,Europe +2024-08-13,78676,4607,"[""Tablet"", ""Keyboard"", ""Headphones""]",425.96,{},276629,0,North America +2024-06-08,78677,9471,"[""Headphones""]",2794.0,"{"""": ""8%""}",290471,0,Africa +2024-10-14,78678,1559,"[""Keyboard""]",3996.6,"{"""": ""8%""}",39698,0,Asia +2023-12-26,78679,516,"[""Keyboard""]",3968.45,"{""seasonal"": ""24%""}",53229,1,Europe +2023-01-06,78680,3796,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2089.19,"{""promo"": ""12%""}",247365,1,Asia +2024-07-25,78681,7881,"[""Headphones""]",1313.91,{},159215,0,Africa +2023-08-25,78682,4909,"[""Headphones""]",2055.12,{},72655,1,South America +2023-12-25,78683,5226,"[""Keyboard""]",4867.08,{},216727,0,Africa +2023-10-31,78684,5525,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",307.6,"{""promo"": ""14%""}",133009,1,Asia +2024-09-10,78685,3699,"[""Headphones"", ""Wireless Mouse""]",4046.44,{},89730,0,Asia +2024-07-21,78686,6956,"[""Phone"", ""Monitor"", ""Keyboard""]",1621.3,"{""seasonal"": ""28%""}",134862,0,South America +2023-01-09,78687,1685,"[""Keyboard"", ""Tablet"", ""Charger""]",1755.2,{},78960,1,North America +2023-05-26,78688,7897,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2589.29,"{""promo"": ""23%""}",52893,1,Africa +2024-01-09,78689,8216,"[""Wireless Mouse"", ""Monitor""]",3323.76,"{""loyalty"": ""24%""}",259648,1,South America +2024-06-12,78690,9660,"[""Laptop""]",2075.61,"{""loyalty"": ""6%""}",202571,1,South America +2023-01-01,78691,2592,"[""Monitor""]",811.27,{},294176,1,Europe +2023-12-09,78692,5370,"[""Wireless Mouse"", ""Charger""]",4820.29,"{""seasonal"": ""8%""}",256939,1,Asia +2023-03-19,78693,7968,"[""Headphones"", ""Monitor"", ""Keyboard""]",290.18,{},68641,1,Africa +2024-09-01,78694,1734,"[""Phone"", ""Charger""]",4735.29,{},114396,0,South America +2023-02-19,78695,8409,"[""Wireless Mouse""]",3145.11,{},107029,0,Europe +2023-08-10,78696,4948,"[""Phone"", ""Headphones"", ""Laptop""]",1523.77,{},298135,0,South America +2023-12-01,78697,7060,"[""Headphones""]",3186.81,"{""loyalty"": ""21%""}",131419,0,Africa +2024-10-07,78698,7043,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1554.7,{},265767,0,Asia +2023-05-12,78699,2364,"[""Monitor"", ""Keyboard"", ""Phone""]",4284.68,"{""loyalty"": ""29%""}",45315,1,North America +2024-08-28,78700,2296,"[""Keyboard""]",920.58,"{""loyalty"": ""20%""}",129252,0,Europe +2024-04-27,78701,1715,"[""Phone"", ""Laptop"", ""Monitor""]",3331.39,"{""loyalty"": ""6%""}",188535,1,South America +2023-02-27,78702,779,"[""Phone""]",4564.32,"{""seasonal"": ""29%""}",107324,0,South America +2023-06-30,78703,4503,"[""Laptop""]",1508.39,{},253254,0,North America +2024-04-23,78704,2683,"[""Laptop""]",2198.74,"{"""": ""20%""}",150293,1,Africa +2023-08-24,78705,1053,"[""Keyboard"", ""Wireless Mouse""]",1143.46,"{""seasonal"": ""9%""}",244624,0,North America +2024-09-15,78706,1107,"[""Tablet"", ""Phone"", ""Keyboard""]",2254.5,"{""seasonal"": ""28%""}",71829,1,South America +2024-05-08,78707,4613,"[""Monitor"", ""Laptop"", ""Charger""]",2870.24,{},210629,1,North America +2023-03-08,78708,9273,"[""Laptop"", ""Headphones"", ""Phone""]",4297.37,{},128668,0,North America +2023-09-25,78709,4971,"[""Wireless Mouse""]",3185.88,"{""seasonal"": ""18%""}",210356,1,North America +2024-03-28,78710,4477,"[""Keyboard"", ""Headphones""]",4686.05,{},72461,0,South America +2023-02-08,78711,6633,"[""Laptop"", ""Keyboard""]",4903.88,{},264194,1,Africa +2023-02-28,78712,6302,"[""Laptop"", ""Keyboard"", ""Charger""]",1030.58,{},23287,0,North America +2023-07-19,78713,458,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",808.18,"{""promo"": ""8%""}",94399,0,Asia +2024-11-17,78714,6533,"[""Tablet"", ""Laptop""]",305.23,{},279610,0,Africa +2024-01-27,78715,6085,"[""Phone"", ""Tablet""]",666.49,"{""loyalty"": ""20%""}",198635,0,North America +2023-05-01,78716,4423,"[""Charger"", ""Keyboard""]",3015.84,"{""loyalty"": ""7%""}",282815,1,Asia +2024-03-31,78717,1367,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2729.36,{},272925,0,North America +2024-04-23,78718,5481,"[""Headphones""]",428.97,{},281980,1,Africa +2024-01-05,78719,910,"[""Phone""]",4107.65,"{""seasonal"": ""8%""}",271607,1,South America +2023-04-15,78720,5816,"[""Headphones"", ""Charger"", ""Tablet""]",1572.04,{},93532,1,Asia +2023-05-14,78721,4988,"[""Phone"", ""Tablet""]",1478.4,{},141864,0,North America +2023-09-20,78722,5159,"[""Phone""]",536.64,{},126398,1,Europe +2024-04-16,78723,7067,"[""Wireless Mouse""]",1606.83,{},210005,0,South America +2024-02-27,78724,8758,"[""Keyboard"", ""Phone"", ""Headphones""]",1508.53,{},85633,0,Africa +2024-08-05,78725,5764,"[""Laptop"", ""Headphones"", ""Phone""]",3826.04,{},294040,1,South America +2023-03-15,78726,590,"[""Wireless Mouse"", ""Laptop""]",2816.74,"{""seasonal"": ""14%""}",159414,0,Africa +2023-12-09,78727,1729,"[""Tablet"", ""Monitor""]",3900.06,"{"""": ""24%""}",202201,0,North America +2024-09-27,78728,9869,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4038.14,"{""seasonal"": ""29%""}",270723,1,Europe +2023-12-20,78729,6400,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4819.57,"{"""": ""26%""}",94597,1,Asia +2023-04-27,78730,7514,"[""Tablet"", ""Wireless Mouse""]",942.97,"{""seasonal"": ""5%""}",286159,0,Africa +2023-08-06,78731,2216,"[""Phone""]",1284.68,"{""seasonal"": ""25%""}",45468,1,Africa +2024-04-03,78732,2237,"[""Monitor"", ""Charger""]",2320.58,{},112330,0,Africa +2024-09-17,78733,9416,"[""Headphones"", ""Charger"", ""Tablet""]",4458.41,"{"""": ""9%""}",193769,0,Africa +2023-11-13,78734,1430,"[""Headphones"", ""Laptop""]",1744.04,"{""loyalty"": ""13%""}",19684,1,Asia +2023-12-10,78735,7973,"[""Monitor"", ""Headphones""]",1248.95,{},275201,0,Europe +2023-12-06,78736,8973,"[""Charger""]",1356.4,{},268946,1,North America +2024-03-23,78737,4697,"[""Monitor""]",4149.81,"{""seasonal"": ""12%""}",292283,0,Africa +2024-06-11,78738,8722,"[""Laptop""]",105.41,"{""promo"": ""21%""}",286017,0,South America +2024-02-05,78739,8261,"[""Charger"", ""Monitor"", ""Keyboard""]",3206.45,"{""seasonal"": ""16%""}",98079,0,North America +2023-11-27,78740,9973,"[""Keyboard"", ""Monitor""]",391.31,"{""loyalty"": ""18%""}",182088,1,Asia +2023-04-01,78741,2792,"[""Keyboard"", ""Charger"", ""Headphones""]",2316.57,"{""seasonal"": ""19%""}",92254,1,Europe +2024-05-20,78742,671,"[""Wireless Mouse""]",4879.06,"{""seasonal"": ""7%""}",179547,0,Europe +2024-08-21,78743,3637,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4553.9,"{""seasonal"": ""22%""}",49252,1,South America +2023-10-15,78744,3023,"[""Tablet"", ""Headphones"", ""Monitor""]",140.02,"{"""": ""10%""}",156542,1,North America +2023-09-26,78745,527,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1493.84,{},21532,0,North America +2023-03-11,78746,9616,"[""Monitor"", ""Wireless Mouse""]",1262.04,{},114488,0,Africa +2023-12-02,78747,6075,"[""Charger"", ""Laptop""]",1872.52,{},136532,1,Europe +2023-04-16,78748,780,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2534.51,{},202507,1,North America +2023-02-09,78749,264,"[""Laptop"", ""Phone"", ""Headphones""]",526.68,"{""seasonal"": ""6%""}",85625,0,North America +2024-04-15,78750,8647,"[""Monitor"", ""Keyboard""]",3311.77,{},184748,1,Asia +2024-04-20,78751,2897,"[""Keyboard"", ""Laptop""]",3443.03,"{""seasonal"": ""17%""}",157493,1,North America +2024-04-08,78752,6247,"[""Keyboard"", ""Laptop""]",3666.82,{},201103,0,Asia +2024-11-13,78753,5031,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2592.24,"{"""": ""11%""}",279486,0,Europe +2024-08-15,78754,1254,"[""Keyboard"", ""Headphones"", ""Monitor""]",2524.85,{},167761,1,Africa +2024-05-14,78755,5188,"[""Headphones""]",4044.34,"{""seasonal"": ""10%""}",21152,1,Asia +2024-02-18,78756,8324,"[""Charger"", ""Keyboard"", ""Phone""]",232.79,{},106969,1,Africa +2024-03-15,78757,7920,"[""Laptop"", ""Tablet"", ""Headphones""]",3946.7,{},262346,1,Asia +2023-03-21,78758,9291,"[""Laptop"", ""Wireless Mouse""]",257.25,{},274412,0,South America +2023-04-30,78759,9183,"[""Phone"", ""Tablet"", ""Laptop""]",4678.03,"{""seasonal"": ""12%""}",255376,1,Africa +2024-11-16,78760,3269,"[""Tablet""]",3299.16,{},61667,0,Asia +2024-06-14,78761,6599,"[""Phone""]",3059.55,"{""promo"": ""16%""}",191314,0,Europe +2023-10-03,78762,4682,"[""Keyboard"", ""Phone""]",2603.51,"{""promo"": ""29%""}",20128,1,South America +2024-04-14,78763,3410,"[""Wireless Mouse""]",208.2,{},135973,1,Europe +2023-10-02,78764,8088,"[""Wireless Mouse"", ""Headphones""]",2969.45,"{""promo"": ""20%""}",247410,0,North America +2024-09-28,78765,6855,"[""Keyboard"", ""Tablet""]",2279.21,{},194533,1,North America +2024-01-27,78766,1525,"[""Charger""]",3875.18,{},143862,0,North America +2024-01-05,78767,1610,"[""Laptop"", ""Tablet"", ""Phone""]",1824.26,"{""loyalty"": ""23%""}",276977,1,Africa +2024-10-15,78768,4177,"[""Laptop"", ""Tablet""]",372.26,"{""loyalty"": ""12%""}",54086,1,Europe +2023-08-04,78769,8715,"[""Tablet"", ""Monitor""]",2028.02,{},177090,1,Asia +2024-05-16,78770,2735,"[""Laptop"", ""Monitor"", ""Charger""]",1902.46,{},119481,0,Asia +2023-09-14,78771,1391,"[""Tablet"", ""Wireless Mouse""]",2932.06,"{""promo"": ""6%""}",63111,1,South America +2023-06-18,78772,5630,"[""Tablet"", ""Phone""]",3297.98,{},198274,0,South America +2024-10-28,78773,3572,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4758.83,{},12545,1,Asia +2023-07-15,78774,16,"[""Keyboard"", ""Monitor""]",1297.1,{},153768,0,North America +2023-06-09,78775,8729,"[""Phone"", ""Keyboard"", ""Tablet""]",1647.45,"{""promo"": ""20%""}",59625,1,Africa +2023-11-09,78776,2107,"[""Wireless Mouse"", ""Laptop""]",1130.55,"{""loyalty"": ""10%""}",181407,1,North America +2023-10-08,78777,2975,"[""Laptop"", ""Tablet""]",1475.9,{},104923,1,Asia +2023-01-06,78778,6175,"[""Keyboard""]",2828.14,"{""promo"": ""10%""}",186950,1,North America +2023-06-28,78779,5158,"[""Tablet""]",714.96,"{""loyalty"": ""15%""}",89094,1,Asia +2024-03-20,78780,3831,"[""Keyboard"", ""Phone"", ""Charger""]",3943.25,"{""seasonal"": ""14%""}",261108,0,Africa +2024-02-17,78781,4725,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1554.04,{},33867,1,South America +2024-12-29,78782,7651,"[""Monitor"", ""Charger"", ""Laptop""]",3466.18,"{""promo"": ""22%""}",283762,0,North America +2024-01-06,78783,6560,"[""Laptop""]",1258.48,{},243437,0,North America +2024-10-31,78784,7106,"[""Headphones"", ""Laptop""]",729.8,{},27048,1,North America +2023-02-24,78785,5320,"[""Headphones"", ""Charger""]",3760.5,{},52849,0,Asia +2024-08-18,78786,1083,"[""Charger"", ""Keyboard""]",2453.83,{},80333,1,South America +2023-03-31,78787,8565,"[""Monitor"", ""Laptop"", ""Charger""]",4100.4,"{"""": ""27%""}",162429,0,North America +2023-10-01,78788,8606,"[""Keyboard"", ""Headphones"", ""Charger""]",1628.93,{},83582,0,South America +2023-02-28,78789,2028,"[""Monitor"", ""Headphones""]",3831.29,{},174761,1,North America +2024-09-16,78790,3310,"[""Laptop""]",1627.73,"{""seasonal"": ""6%""}",115346,1,Africa +2023-11-09,78791,8239,"[""Charger"", ""Phone""]",2152.58,"{""seasonal"": ""9%""}",187381,1,Asia +2024-03-08,78792,8284,"[""Laptop""]",2269.19,{},217292,1,South America +2024-10-09,78793,1761,"[""Headphones"", ""Keyboard"", ""Tablet""]",3026.31,{},245583,0,Asia +2024-03-16,78794,2712,"[""Phone""]",3330.25,"{""promo"": ""18%""}",221213,1,North America +2023-08-15,78795,8270,"[""Charger""]",4617.99,{},100486,1,South America +2024-12-26,78796,9139,"[""Phone"", ""Charger"", ""Laptop""]",1516.83,"{"""": ""20%""}",151885,0,Europe +2023-11-14,78797,7340,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3058.5,{},69740,0,North America +2024-12-23,78798,5188,"[""Headphones"", ""Keyboard""]",2354.81,"{"""": ""20%""}",25000,1,North America +2023-11-29,78799,1623,"[""Headphones"", ""Laptop"", ""Keyboard""]",3737.03,"{"""": ""10%""}",298378,0,Africa +2023-06-07,78800,4126,"[""Monitor""]",4663.05,"{"""": ""30%""}",98184,0,Europe +2023-04-16,78801,4328,"[""Keyboard""]",3629.38,"{"""": ""6%""}",259002,1,Asia +2023-08-22,78802,9063,"[""Keyboard"", ""Laptop"", ""Tablet""]",1647.56,"{"""": ""11%""}",169827,1,South America +2023-01-24,78803,4171,"[""Laptop"", ""Wireless Mouse""]",367.35,{},56281,0,Africa +2023-03-24,78804,8348,"[""Phone"", ""Keyboard""]",1875.33,{},154330,0,South America +2024-03-24,78805,5708,"[""Laptop""]",2317.97,"{"""": ""18%""}",215192,0,South America +2024-06-27,78806,8231,"[""Monitor""]",2944.53,"{"""": ""15%""}",94629,1,Africa +2024-01-19,78807,6421,"[""Monitor""]",1028.55,"{"""": ""28%""}",100631,1,South America +2024-08-06,78808,8758,"[""Headphones"", ""Monitor"", ""Tablet""]",4666.0,{},129879,1,North America +2024-06-26,78809,3317,"[""Charger""]",191.82,"{""loyalty"": ""13%""}",65243,0,Europe +2024-08-22,78810,3242,"[""Wireless Mouse"", ""Headphones""]",2948.89,{},73253,1,Europe +2023-11-15,78811,9357,"[""Keyboard""]",1908.17,{},121846,1,North America +2024-01-18,78812,8513,"[""Monitor""]",4263.69,"{""promo"": ""8%""}",77892,0,Asia +2024-10-27,78813,4152,"[""Tablet""]",4739.18,{},249931,1,Africa +2024-04-16,78814,6867,"[""Headphones"", ""Monitor""]",3858.83,{},36426,0,South America +2024-05-25,78815,5885,"[""Laptop"", ""Monitor"", ""Tablet""]",635.84,"{"""": ""25%""}",77187,0,North America +2023-08-18,78816,9086,"[""Phone"", ""Headphones"", ""Laptop""]",1757.66,"{""loyalty"": ""8%""}",274025,1,South America +2024-06-24,78817,7231,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3134.3,"{""promo"": ""7%""}",94590,0,North America +2023-08-16,78818,4450,"[""Laptop"", ""Headphones""]",2252.57,"{""loyalty"": ""7%""}",254869,0,Europe +2023-11-12,78819,824,"[""Monitor""]",3500.26,"{""seasonal"": ""24%""}",76689,1,North America +2023-11-29,78820,3621,"[""Laptop"", ""Tablet""]",1585.6,"{""promo"": ""13%""}",262416,1,Africa +2024-07-29,78821,1351,"[""Laptop""]",4680.94,"{""loyalty"": ""20%""}",135082,1,South America +2024-03-27,78822,219,"[""Monitor""]",3154.89,{},138034,0,Africa +2024-07-18,78823,5534,"[""Monitor"", ""Charger""]",997.17,{},248411,1,Asia +2024-04-28,78824,9754,"[""Headphones"", ""Charger"", ""Laptop""]",4146.75,"{""seasonal"": ""30%""}",142895,1,Europe +2023-05-29,78825,4409,"[""Monitor"", ""Laptop""]",4141.31,"{""seasonal"": ""18%""}",88253,1,Asia +2024-05-16,78826,6482,"[""Tablet"", ""Keyboard""]",4142.8,"{"""": ""15%""}",168269,0,South America +2024-07-14,78827,7271,"[""Charger""]",4125.53,{},206194,0,Europe +2023-05-06,78828,8481,"[""Monitor"", ""Keyboard""]",4180.77,{},287771,0,Europe +2024-11-10,78829,9694,"[""Charger"", ""Monitor""]",220.55,{},53612,1,North America +2024-07-11,78830,2621,"[""Headphones""]",3442.33,{},122488,1,South America +2023-10-29,78831,8048,"[""Laptop"", ""Monitor"", ""Headphones""]",3334.82,{},113132,1,Europe +2023-11-28,78832,5054,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4413.81,{},275485,1,Africa +2023-01-04,78833,1088,"[""Tablet"", ""Charger"", ""Phone""]",1080.67,{},265560,1,Europe +2023-08-20,78834,3813,"[""Monitor"", ""Charger""]",1585.23,"{""loyalty"": ""26%""}",160926,1,South America +2023-02-15,78835,5765,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4689.54,"{""seasonal"": ""21%""}",163206,0,Asia +2024-04-22,78836,6003,"[""Wireless Mouse""]",3370.3,{},108901,1,North America +2023-02-07,78837,8838,"[""Tablet"", ""Headphones""]",245.16,"{""seasonal"": ""12%""}",257122,0,Asia +2023-05-02,78838,5913,"[""Wireless Mouse""]",4053.75,{},43303,0,Europe +2024-12-14,78839,5186,"[""Headphones"", ""Keyboard"", ""Phone""]",2636.6,"{""promo"": ""13%""}",66739,1,Europe +2024-12-08,78840,4673,"[""Keyboard""]",4874.69,{},192259,1,Europe +2023-06-06,78841,5592,"[""Headphones""]",3007.93,{},189010,0,North America +2023-12-15,78842,9106,"[""Monitor"", ""Laptop""]",3268.96,"{"""": ""5%""}",126274,0,North America +2023-10-31,78843,8010,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4615.09,{},126584,0,Asia +2023-05-25,78844,9522,"[""Wireless Mouse""]",4758.98,{},106281,0,Africa +2024-10-15,78845,2637,"[""Wireless Mouse"", ""Keyboard""]",782.27,"{""seasonal"": ""12%""}",243735,1,North America +2024-08-21,78846,1653,"[""Wireless Mouse""]",4888.56,"{""seasonal"": ""25%""}",64720,1,Asia +2023-02-21,78847,6911,"[""Headphones""]",3183.05,{},298569,1,North America +2023-06-08,78848,6904,"[""Phone"", ""Monitor"", ""Keyboard""]",3608.16,{},296418,1,Asia +2023-03-09,78849,4391,"[""Wireless Mouse"", ""Phone""]",1829.57,{},11773,1,Europe +2023-02-13,78850,4088,"[""Keyboard"", ""Laptop""]",895.96,{},107032,0,Asia +2024-01-11,78851,3189,"[""Laptop""]",4763.34,{},106757,0,Europe +2024-09-11,78852,4836,"[""Wireless Mouse"", ""Monitor""]",2305.61,"{""loyalty"": ""12%""}",282294,0,North America +2023-06-27,78853,6733,"[""Monitor"", ""Charger""]",3039.83,{},133948,0,South America +2024-02-10,78854,6736,"[""Charger"", ""Phone""]",3739.95,{},233053,1,North America +2023-07-27,78855,444,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2235.88,"{""loyalty"": ""28%""}",116637,0,Europe +2024-11-09,78856,8750,"[""Headphones"", ""Keyboard"", ""Laptop""]",3027.97,{},214676,0,Europe +2024-12-07,78857,8775,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2531.16,{},103622,1,South America +2023-04-22,78858,5691,"[""Wireless Mouse"", ""Phone""]",1032.8,"{""promo"": ""23%""}",201457,1,North America +2024-12-27,78859,7014,"[""Charger""]",4068.93,"{""seasonal"": ""20%""}",92490,0,Europe +2023-09-20,78860,1091,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2084.1,"{""promo"": ""15%""}",91632,1,North America +2024-10-06,78861,9018,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3553.35,{},230714,1,South America +2024-04-13,78862,3943,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2258.4,{},268966,0,North America +2024-10-07,78863,696,"[""Tablet""]",875.71,{},63942,1,North America +2024-01-31,78864,7180,"[""Charger"", ""Laptop""]",2364.66,"{"""": ""9%""}",165935,1,South America +2024-08-09,78865,6921,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2158.58,"{"""": ""18%""}",265609,0,Europe +2024-07-03,78866,3076,"[""Wireless Mouse""]",143.7,{},270907,0,Asia +2023-08-12,78867,2083,"[""Charger""]",3742.24,"{""seasonal"": ""16%""}",57477,0,Europe +2024-11-24,78868,2157,"[""Wireless Mouse"", ""Phone""]",235.43,"{""seasonal"": ""9%""}",59043,1,South America +2023-02-10,78869,1419,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2511.96,"{"""": ""20%""}",233725,0,South America +2023-02-13,78870,7742,"[""Monitor""]",1358.96,{},80942,0,North America +2023-02-10,78871,423,"[""Phone"", ""Monitor""]",176.52,{},67583,1,Europe +2024-09-27,78872,6434,"[""Wireless Mouse""]",4819.69,"{""promo"": ""22%""}",201263,1,Asia +2023-01-06,78873,7478,"[""Laptop"", ""Monitor""]",4937.52,"{""promo"": ""8%""}",50311,0,South America +2024-05-26,78874,5109,"[""Monitor"", ""Phone""]",953.41,"{""loyalty"": ""29%""}",145080,1,North America +2024-06-30,78875,5846,"[""Keyboard""]",257.81,{},81003,0,Asia +2023-05-23,78876,6430,"[""Monitor""]",4656.02,"{""promo"": ""19%""}",38164,1,South America +2023-04-19,78877,9053,"[""Keyboard"", ""Laptop"", ""Headphones""]",107.34,{},118654,1,Europe +2024-09-24,78878,2882,"[""Monitor"", ""Tablet""]",4649.21,{},232331,0,North America +2024-01-17,78879,5353,"[""Laptop""]",2168.69,{},57871,0,Europe +2023-05-17,78880,4823,"[""Monitor"", ""Wireless Mouse""]",3282.83,"{""promo"": ""25%""}",292365,1,Africa +2024-05-14,78881,7931,"[""Charger""]",2058.72,{},55993,1,North America +2024-10-04,78882,2487,"[""Phone"", ""Headphones""]",4371.69,{},227403,1,Africa +2024-07-02,78883,4137,"[""Charger"", ""Phone""]",3750.59,"{""seasonal"": ""12%""}",159808,0,Asia +2024-06-17,78884,943,"[""Monitor""]",3788.7,"{""seasonal"": ""24%""}",276794,0,North America +2024-10-09,78885,2568,"[""Keyboard"", ""Charger"", ""Monitor""]",725.31,"{""seasonal"": ""7%""}",149718,1,North America +2023-02-16,78886,3085,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1517.29,"{"""": ""11%""}",4266,0,South America +2024-08-27,78887,3525,"[""Monitor"", ""Keyboard""]",708.83,{},73744,0,South America +2024-10-07,78888,5548,"[""Phone""]",2206.73,"{""promo"": ""10%""}",96420,0,Asia +2024-02-11,78889,1117,"[""Phone"", ""Tablet""]",3607.99,"{""promo"": ""5%""}",171057,1,North America +2024-08-02,78890,5783,"[""Monitor"", ""Tablet""]",897.83,{},246100,0,Asia +2023-05-09,78891,8459,"[""Tablet"", ""Phone"", ""Charger""]",4443.32,"{""loyalty"": ""19%""}",36457,1,Africa +2023-09-02,78892,1056,"[""Phone"", ""Tablet"", ""Monitor""]",4113.08,{},282901,0,North America +2024-08-11,78893,9003,"[""Monitor""]",4968.41,{},281392,1,North America +2024-10-01,78894,8116,"[""Charger""]",1846.53,{},12460,1,South America +2023-03-26,78895,2409,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",474.61,{},258173,1,South America +2024-03-01,78896,470,"[""Wireless Mouse"", ""Monitor""]",482.49,"{""promo"": ""26%""}",197963,1,Africa +2024-09-15,78897,5384,"[""Phone""]",1997.24,"{""loyalty"": ""19%""}",265094,1,Europe +2023-09-16,78898,5606,"[""Tablet"", ""Laptop""]",4636.53,"{"""": ""12%""}",225713,0,Africa +2024-06-15,78899,8328,"[""Headphones""]",4804.49,{},157028,1,North America +2024-05-13,78900,4122,"[""Keyboard""]",4364.66,"{"""": ""30%""}",249671,0,Europe +2023-08-20,78901,5944,"[""Charger""]",2301.74,{},166102,0,Africa +2023-06-28,78902,4031,"[""Phone"", ""Tablet""]",3147.35,"{""promo"": ""21%""}",18094,0,Europe +2023-06-12,78903,1196,"[""Headphones"", ""Tablet"", ""Charger""]",479.26,"{""loyalty"": ""27%""}",65375,1,Asia +2024-11-27,78904,2078,"[""Keyboard"", ""Phone""]",1816.18,{},109059,1,Africa +2023-10-02,78905,7016,"[""Keyboard"", ""Laptop"", ""Charger""]",4818.81,"{"""": ""22%""}",107325,0,Africa +2024-07-06,78906,4752,"[""Tablet""]",1413.68,"{""seasonal"": ""28%""}",179106,0,Africa +2024-10-15,78907,1091,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",1679.94,"{"""": ""16%""}",98061,1,Asia +2024-05-18,78908,857,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",478.14,"{""promo"": ""14%""}",76348,1,South America +2024-02-08,78909,9963,"[""Phone"", ""Keyboard"", ""Tablet""]",130.06,"{""promo"": ""10%""}",188778,1,South America +2024-09-15,78910,9739,"[""Phone""]",4774.82,"{""promo"": ""13%""}",191565,1,Europe +2024-11-20,78911,5890,"[""Keyboard""]",1578.73,{},22047,1,Asia +2024-06-11,78912,1442,"[""Wireless Mouse"", ""Laptop""]",498.91,"{""seasonal"": ""20%""}",143098,1,South America +2024-06-07,78913,8672,"[""Monitor"", ""Keyboard"", ""Phone""]",4608.68,"{""promo"": ""26%""}",12148,0,Asia +2023-05-22,78914,3554,"[""Keyboard"", ""Charger""]",2593.67,"{"""": ""12%""}",63545,1,Europe +2024-01-02,78915,971,"[""Laptop""]",4210.54,"{"""": ""23%""}",12489,1,Africa +2024-08-04,78916,284,"[""Monitor"", ""Phone"", ""Keyboard""]",4441.83,"{""loyalty"": ""8%""}",262751,0,Europe +2024-05-25,78917,6026,"[""Keyboard"", ""Monitor""]",3277.62,{},34225,0,Africa +2023-07-04,78918,824,"[""Phone""]",609.17,"{""loyalty"": ""18%""}",43446,1,Africa +2023-10-02,78919,9367,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4046.01,"{""seasonal"": ""17%""}",164156,1,North America +2023-07-14,78920,7366,"[""Monitor""]",4492.72,{},115861,1,Europe +2023-06-30,78921,1340,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3476.66,"{"""": ""25%""}",39564,1,Asia +2023-02-20,78922,244,"[""Phone""]",753.55,"{""promo"": ""7%""}",286032,1,North America +2023-10-16,78923,2632,"[""Monitor""]",2797.77,{},177649,1,North America +2023-03-07,78924,9969,"[""Wireless Mouse""]",4685.03,"{"""": ""25%""}",123739,1,South America +2023-01-14,78925,3125,"[""Headphones"", ""Charger"", ""Keyboard""]",2299.38,"{""promo"": ""16%""}",129105,1,North America +2023-11-26,78926,2194,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3130.35,"{"""": ""8%""}",40359,1,Europe +2024-11-20,78927,4187,"[""Charger""]",1322.69,"{""loyalty"": ""24%""}",175749,1,Africa +2023-12-15,78928,2003,"[""Keyboard"", ""Charger""]",1952.02,{},192679,0,Asia +2024-11-16,78929,66,"[""Laptop"", ""Keyboard"", ""Monitor""]",2734.12,{},1648,0,South America +2023-10-28,78930,1224,"[""Monitor"", ""Keyboard""]",796.08,"{"""": ""24%""}",69714,1,Africa +2023-12-24,78931,9738,"[""Phone""]",1171.88,{},276714,1,Asia +2023-12-21,78932,4848,"[""Monitor""]",392.23,"{""seasonal"": ""26%""}",288204,1,South America +2024-05-21,78933,4392,"[""Charger""]",2013.39,{},252050,1,North America +2023-06-11,78934,959,"[""Keyboard"", ""Laptop"", ""Headphones""]",1998.71,"{"""": ""6%""}",264873,0,Europe +2024-07-29,78935,6819,"[""Keyboard"", ""Charger"", ""Tablet""]",1749.18,"{"""": ""18%""}",215794,0,Asia +2024-09-19,78936,1279,"[""Laptop"", ""Tablet""]",2800.88,{},155139,0,North America +2024-07-05,78937,1374,"[""Monitor""]",1698.37,"{"""": ""12%""}",116239,0,Asia +2023-02-15,78938,2109,"[""Headphones""]",4234.57,"{""loyalty"": ""18%""}",132198,1,South America +2023-09-01,78939,9654,"[""Headphones"", ""Keyboard""]",3657.79,"{""seasonal"": ""5%""}",247227,1,Europe +2024-09-14,78940,1373,"[""Monitor"", ""Laptop"", ""Phone""]",655.93,{},214157,0,South America +2023-04-11,78941,5868,"[""Headphones"", ""Charger""]",700.72,{},99691,0,Africa +2024-10-03,78942,2005,"[""Monitor"", ""Wireless Mouse""]",558.96,"{""seasonal"": ""6%""}",169434,1,North America +2024-11-21,78943,9615,"[""Headphones"", ""Phone"", ""Charger""]",4696.24,{},290965,1,North America +2024-07-30,78944,7145,"[""Headphones"", ""Laptop""]",2052.08,"{""promo"": ""15%""}",283139,0,Africa +2024-01-19,78945,6424,"[""Charger""]",4821.62,{},152742,0,South America +2023-02-27,78946,9657,"[""Tablet""]",648.11,"{""seasonal"": ""14%""}",142267,1,North America +2023-05-13,78947,7551,"[""Monitor""]",981.94,{},91597,1,South America +2023-10-30,78948,4358,"[""Tablet"", ""Phone""]",4008.35,{},263866,0,Europe +2023-08-04,78949,3600,"[""Charger""]",3127.82,{},80113,0,Europe +2024-05-02,78950,300,"[""Laptop"", ""Monitor""]",2199.18,{},282314,1,Europe +2023-11-05,78951,9060,"[""Monitor"", ""Headphones"", ""Charger""]",4661.29,{},151533,0,Asia +2024-10-19,78952,8358,"[""Keyboard"", ""Charger""]",2924.9,{},230002,0,Africa +2024-06-23,78953,926,"[""Monitor"", ""Wireless Mouse""]",4627.19,"{""promo"": ""17%""}",82662,0,Asia +2024-02-10,78954,7882,"[""Tablet"", ""Keyboard""]",4909.21,{},215931,0,Europe +2023-09-20,78955,338,"[""Charger"", ""Monitor"", ""Phone""]",3489.36,"{""promo"": ""22%""}",109579,0,Africa +2023-07-05,78956,4062,"[""Headphones"", ""Charger""]",2648.93,{},110411,0,South America +2024-04-26,78957,8020,"[""Tablet""]",168.06,{},21087,0,Europe +2024-07-30,78958,7346,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",165.75,"{""seasonal"": ""18%""}",149716,0,North America +2024-12-12,78959,2792,"[""Tablet"", ""Monitor"", ""Keyboard""]",4057.42,{},68992,0,Europe +2024-11-05,78960,6933,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2484.79,"{"""": ""15%""}",123720,1,Europe +2023-10-17,78961,6205,"[""Monitor"", ""Tablet"", ""Laptop""]",2476.67,{},263159,1,North America +2024-01-18,78962,4632,"[""Tablet"", ""Headphones""]",3939.74,"{""loyalty"": ""13%""}",52168,1,Africa +2023-08-27,78963,2789,"[""Charger""]",3452.23,"{""seasonal"": ""21%""}",217900,0,Europe +2023-03-04,78964,382,"[""Charger""]",2876.95,"{""loyalty"": ""25%""}",5242,1,North America +2023-07-27,78965,3301,"[""Wireless Mouse"", ""Headphones""]",2832.73,"{""promo"": ""14%""}",158542,1,North America +2023-11-05,78966,2708,"[""Phone"", ""Charger""]",3833.71,{},297918,0,South America +2023-10-19,78967,1621,"[""Tablet"", ""Phone""]",1214.06,{},88652,0,Africa +2024-12-13,78968,3651,"[""Monitor""]",3788.25,{},151860,1,Europe +2024-05-17,78969,9391,"[""Wireless Mouse"", ""Tablet""]",4443.27,"{"""": ""19%""}",240790,1,Asia +2023-07-10,78970,8671,"[""Laptop"", ""Headphones""]",3653.08,"{"""": ""14%""}",213510,1,South America +2024-06-26,78971,6045,"[""Headphones""]",3882.47,{},191759,1,Africa +2023-07-20,78972,6302,"[""Charger""]",2222.92,"{""seasonal"": ""5%""}",97472,1,Europe +2024-07-30,78973,6321,"[""Wireless Mouse""]",232.08,{},200694,0,South America +2024-04-18,78974,4051,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1231.81,{},97703,0,Africa +2024-07-03,78975,7181,"[""Headphones""]",3632.39,"{"""": ""13%""}",93636,1,Asia +2024-06-25,78976,1328,"[""Monitor"", ""Headphones""]",2865.51,{},44884,0,North America +2024-08-02,78977,5425,"[""Keyboard""]",4373.48,{},135232,0,Europe +2024-07-27,78978,5354,"[""Laptop""]",3816.52,"{"""": ""23%""}",183471,0,Europe +2023-06-06,78979,487,"[""Wireless Mouse""]",997.82,{},182551,1,North America +2024-06-05,78980,5894,"[""Keyboard"", ""Charger""]",3882.28,"{""loyalty"": ""13%""}",217628,0,North America +2023-03-14,78981,9545,"[""Headphones""]",2156.25,{},114669,0,South America +2023-07-03,78982,9400,"[""Charger""]",4290.01,{},128998,1,South America +2024-01-02,78983,1064,"[""Laptop"", ""Keyboard""]",3266.15,{},288027,1,North America +2024-12-23,78984,9725,"[""Headphones""]",2693.6,{},298007,0,North America +2024-02-25,78985,7396,"[""Keyboard""]",4751.32,{},113317,1,South America +2023-02-01,78986,6037,"[""Keyboard"", ""Charger""]",3676.12,"{""loyalty"": ""9%""}",255997,1,Asia +2023-12-04,78987,6449,"[""Laptop"", ""Headphones""]",3482.99,"{"""": ""14%""}",266382,1,North America +2023-11-01,78988,1896,"[""Keyboard"", ""Headphones""]",2372.19,{},70421,1,North America +2024-02-07,78989,4659,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",367.61,{},138335,1,Asia +2023-10-27,78990,5311,"[""Tablet"", ""Monitor""]",1578.28,"{""loyalty"": ""16%""}",33476,1,Europe +2023-12-23,78991,5032,"[""Phone"", ""Keyboard""]",2627.22,"{"""": ""6%""}",210560,0,North America +2023-03-09,78992,8847,"[""Keyboard"", ""Tablet""]",492.33,"{""seasonal"": ""23%""}",20825,0,Africa +2023-04-07,78993,9275,"[""Phone""]",4457.54,{},255749,1,Asia +2023-10-11,78994,9563,"[""Monitor"", ""Headphones""]",3590.54,"{""seasonal"": ""18%""}",115326,1,North America +2023-08-15,78995,7798,"[""Laptop""]",4029.32,{},260618,1,Europe +2024-02-27,78996,8496,"[""Wireless Mouse""]",1480.15,"{""loyalty"": ""26%""}",292042,1,North America +2023-05-15,78997,5446,"[""Keyboard""]",4072.27,"{""promo"": ""9%""}",195176,0,Asia +2024-02-21,78998,2340,"[""Headphones""]",3614.7,{},163804,0,North America +2024-10-17,78999,8104,"[""Tablet""]",1577.1,"{""promo"": ""29%""}",229469,1,North America +2024-12-17,79000,6810,"[""Tablet"", ""Headphones"", ""Phone""]",2568.87,{},131417,1,North America +2024-01-25,79001,7654,"[""Tablet""]",503.73,"{"""": ""16%""}",192134,1,Europe +2024-09-08,79002,945,"[""Tablet"", ""Wireless Mouse""]",2383.18,"{""loyalty"": ""8%""}",55039,1,Europe +2024-12-11,79003,6328,"[""Tablet"", ""Charger""]",1909.44,"{""seasonal"": ""23%""}",12544,1,Africa +2023-03-27,79004,7333,"[""Phone""]",4450.89,"{"""": ""13%""}",33514,1,North America +2024-01-27,79005,6999,"[""Phone""]",4009.86,{},244659,0,North America +2023-01-07,79006,7876,"[""Monitor""]",3746.08,"{""promo"": ""11%""}",126494,0,Africa +2023-10-31,79007,116,"[""Tablet"", ""Monitor""]",461.94,"{"""": ""19%""}",78734,1,Africa +2024-01-13,79008,6427,"[""Laptop""]",1612.06,{},32486,1,Africa +2023-01-21,79009,3467,"[""Laptop""]",2892.92,"{""promo"": ""19%""}",285198,1,Asia +2023-06-25,79010,7284,"[""Charger"", ""Tablet""]",959.22,{},126059,1,Africa +2023-01-17,79011,7079,"[""Headphones"", ""Phone"", ""Charger""]",1227.85,{},138450,1,Europe +2023-10-17,79012,3798,"[""Laptop""]",3356.99,{},59819,0,South America +2023-04-25,79013,1119,"[""Tablet""]",1459.53,"{""promo"": ""13%""}",210093,0,Europe +2023-04-20,79014,789,"[""Monitor""]",3422.67,"{""loyalty"": ""28%""}",34458,1,Asia +2024-11-06,79015,3936,"[""Wireless Mouse""]",717.86,{},128292,1,South America +2024-12-04,79016,604,"[""Charger"", ""Monitor""]",4572.08,"{""seasonal"": ""13%""}",17414,0,Asia +2023-07-17,79017,958,"[""Charger""]",3307.2,"{""promo"": ""24%""}",282837,1,North America +2023-05-11,79018,2557,"[""Charger"", ""Keyboard"", ""Phone""]",4370.81,"{"""": ""30%""}",24750,0,Asia +2024-12-14,79019,6276,"[""Keyboard"", ""Laptop"", ""Headphones""]",2197.36,"{"""": ""21%""}",99218,0,South America +2023-06-04,79020,6996,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3062.54,"{""promo"": ""23%""}",237743,1,Asia +2023-09-22,79021,4575,"[""Headphones"", ""Laptop"", ""Charger""]",501.38,"{"""": ""16%""}",70804,1,Asia +2024-05-19,79022,9096,"[""Tablet"", ""Headphones""]",2848.85,"{"""": ""11%""}",153585,0,Asia +2023-01-10,79023,5801,"[""Tablet""]",416.9,"{""loyalty"": ""7%""}",289321,0,Africa +2024-06-22,79024,2969,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2537.09,"{""promo"": ""19%""}",270211,0,Africa +2024-03-27,79025,5632,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",326.88,{},97048,1,Europe +2024-09-29,79026,1668,"[""Charger"", ""Headphones"", ""Monitor""]",2946.26,{},163200,1,Europe +2023-07-25,79027,3680,"[""Charger""]",4669.89,{},189019,1,South America +2024-05-12,79028,1650,"[""Laptop""]",3250.64,{},276891,0,South America +2024-07-08,79029,8446,"[""Keyboard"", ""Tablet""]",4533.69,{},119350,1,South America +2024-02-22,79030,3813,"[""Phone"", ""Monitor"", ""Headphones""]",4970.2,{},119031,1,Europe +2024-10-25,79031,108,"[""Phone"", ""Charger""]",1119.87,{},55326,1,North America +2024-11-15,79032,3427,"[""Tablet"", ""Headphones""]",2361.07,"{""seasonal"": ""16%""}",147353,1,Asia +2024-03-23,79033,1334,"[""Tablet""]",517.95,{},60837,0,North America +2023-04-10,79034,2675,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3754.01,"{""seasonal"": ""15%""}",203795,1,South America +2023-02-01,79035,3784,"[""Charger"", ""Laptop""]",4679.96,{},47340,0,Africa +2023-07-16,79036,7426,"[""Tablet""]",3765.76,{},85710,1,Asia +2023-05-05,79037,8610,"[""Tablet""]",411.85,{},68712,0,South America +2023-04-23,79038,5519,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",560.73,"{""seasonal"": ""16%""}",47545,0,South America +2024-05-17,79039,8370,"[""Tablet"", ""Wireless Mouse""]",3538.58,{},206863,1,Africa +2024-08-25,79040,3577,"[""Keyboard"", ""Tablet""]",2397.84,"{""seasonal"": ""11%""}",38671,0,North America +2023-05-10,79041,4634,"[""Laptop"", ""Keyboard"", ""Monitor""]",223.9,{},203768,1,Asia +2023-04-05,79042,7216,"[""Laptop"", ""Headphones"", ""Charger""]",4454.62,{},81295,0,North America +2024-04-06,79043,1767,"[""Tablet""]",995.31,"{""promo"": ""12%""}",285473,1,South America +2023-02-14,79044,6021,"[""Tablet""]",2449.46,{},141040,0,Europe +2023-12-17,79045,534,"[""Monitor"", ""Charger""]",3871.35,{},109253,1,Africa +2023-09-17,79046,4350,"[""Charger"", ""Phone""]",2782.68,"{"""": ""24%""}",248975,0,Africa +2023-11-04,79047,6596,"[""Phone""]",1979.64,"{""seasonal"": ""23%""}",164639,0,Africa +2024-11-01,79048,1345,"[""Monitor"", ""Charger"", ""Tablet""]",3162.16,"{"""": ""22%""}",194389,0,South America +2024-07-16,79049,7058,"[""Laptop"", ""Phone"", ""Headphones""]",1953.28,"{""promo"": ""24%""}",291373,1,Asia +2024-01-21,79050,7803,"[""Monitor"", ""Charger""]",3241.43,{},191861,0,South America +2024-05-20,79051,1423,"[""Charger""]",1558.68,{},193505,0,Europe +2024-07-09,79052,9114,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3937.17,"{""seasonal"": ""26%""}",289199,0,Asia +2024-03-02,79053,2877,"[""Tablet""]",2595.12,"{"""": ""16%""}",297437,1,South America +2024-09-29,79054,9929,"[""Keyboard"", ""Tablet"", ""Phone""]",4309.35,{},143051,1,South America +2024-12-22,79055,8911,"[""Laptop"", ""Monitor"", ""Keyboard""]",3034.31,{},247543,0,Africa +2023-01-27,79056,9260,"[""Phone"", ""Laptop""]",3885.9,"{""promo"": ""7%""}",38995,0,Europe +2024-05-09,79057,8805,"[""Laptop"", ""Monitor"", ""Headphones""]",2613.17,"{""seasonal"": ""30%""}",203055,0,Africa +2024-12-27,79058,5134,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3306.43,"{""loyalty"": ""14%""}",129028,1,North America +2023-05-16,79059,355,"[""Laptop"", ""Charger""]",3326.88,{},185753,1,Africa +2023-07-02,79060,9144,"[""Wireless Mouse""]",2649.99,"{""seasonal"": ""28%""}",288369,0,Africa +2023-03-26,79061,8120,"[""Monitor""]",1302.96,"{""loyalty"": ""10%""}",197951,1,Africa +2024-08-11,79062,6192,"[""Tablet""]",486.52,{},264135,0,Africa +2024-05-23,79063,5518,"[""Charger""]",3473.55,{},216533,1,North America +2024-06-08,79064,2143,"[""Headphones""]",351.86,"{""seasonal"": ""21%""}",211340,1,Africa +2024-05-13,79065,6552,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1073.94,{},274219,1,South America +2023-07-28,79066,8630,"[""Charger""]",4368.19,{},226880,0,South America +2023-09-07,79067,5439,"[""Wireless Mouse"", ""Tablet""]",759.18,{},2050,0,North America +2023-04-23,79068,6618,"[""Tablet""]",1940.55,"{""loyalty"": ""6%""}",72837,0,North America +2024-01-25,79069,3271,"[""Phone"", ""Charger"", ""Keyboard""]",3032.96,"{""seasonal"": ""30%""}",273979,0,North America +2023-10-30,79070,2174,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",928.6,"{"""": ""25%""}",75250,0,North America +2024-06-14,79071,4147,"[""Keyboard"", ""Headphones"", ""Tablet""]",4649.6,{},33567,0,North America +2023-06-09,79072,3273,"[""Monitor"", ""Charger"", ""Laptop""]",3292.01,"{"""": ""18%""}",232684,0,Africa +2023-04-19,79073,7947,"[""Tablet"", ""Headphones""]",513.56,{},23367,1,North America +2024-05-13,79074,6276,"[""Charger"", ""Headphones"", ""Tablet""]",3646.66,"{"""": ""26%""}",174970,0,South America +2023-06-12,79075,3985,"[""Headphones""]",2287.18,"{"""": ""19%""}",19069,1,North America +2024-12-08,79076,2428,"[""Keyboard"", ""Laptop"", ""Monitor""]",3985.14,"{""loyalty"": ""14%""}",291532,1,Asia +2024-11-15,79077,5106,"[""Headphones"", ""Keyboard"", ""Phone""]",934.44,"{""promo"": ""12%""}",204767,1,North America +2023-04-18,79078,1329,"[""Tablet"", ""Monitor""]",4335.1,"{""promo"": ""26%""}",85855,1,Asia +2024-12-03,79079,7567,"[""Headphones"", ""Phone""]",3550.36,{},28776,0,Africa +2023-09-04,79080,7255,"[""Tablet"", ""Wireless Mouse""]",1789.96,{},270734,0,South America +2023-08-12,79081,1869,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3466.01,{},69030,0,Europe +2024-09-10,79082,2446,"[""Monitor"", ""Tablet"", ""Charger""]",900.11,{},259354,0,Asia +2023-02-06,79083,7649,"[""Charger""]",966.37,{},142422,1,North America +2024-12-18,79084,3009,"[""Phone""]",1601.54,"{""loyalty"": ""20%""}",115877,0,Asia +2024-01-06,79085,3586,"[""Headphones"", ""Charger"", ""Tablet""]",2476.72,"{"""": ""21%""}",114510,1,Africa +2024-10-04,79086,8138,"[""Phone"", ""Laptop""]",1409.63,{},161756,1,Asia +2023-03-25,79087,6715,"[""Headphones""]",2472.29,{},275988,0,Asia +2024-07-04,79088,8290,"[""Keyboard""]",898.29,{},240924,1,Africa +2023-09-29,79089,1153,"[""Tablet"", ""Monitor"", ""Headphones""]",4132.55,"{""seasonal"": ""13%""}",117778,0,Europe +2023-03-15,79090,3375,"[""Headphones""]",2162.43,{},235527,1,North America +2023-02-11,79091,6167,"[""Tablet""]",4103.93,"{""loyalty"": ""27%""}",72301,1,South America +2024-11-26,79092,3221,"[""Tablet"", ""Keyboard"", ""Headphones""]",3893.09,"{""loyalty"": ""27%""}",153888,1,South America +2024-06-09,79093,2743,"[""Laptop""]",4178.04,"{""seasonal"": ""29%""}",172040,0,South America +2023-10-25,79094,3037,"[""Headphones"", ""Monitor""]",3960.32,"{""loyalty"": ""29%""}",92992,1,Asia +2024-07-11,79095,7327,"[""Phone"", ""Charger""]",4234.99,{},177872,0,Asia +2023-10-15,79096,4367,"[""Wireless Mouse""]",1649.05,"{""seasonal"": ""24%""}",89424,1,Asia +2024-09-16,79097,2495,"[""Wireless Mouse"", ""Keyboard""]",1116.68,"{""seasonal"": ""13%""}",10986,0,Africa +2023-07-24,79098,9145,"[""Monitor""]",929.26,{},9423,0,Europe +2023-07-30,79099,6712,"[""Laptop"", ""Keyboard"", ""Tablet""]",4911.95,{},14080,1,South America +2024-01-16,79100,2297,"[""Laptop"", ""Monitor""]",576.07,{},189077,0,Europe +2024-12-29,79101,7343,"[""Monitor"", ""Keyboard"", ""Phone""]",2171.21,{},134830,1,Europe +2024-08-28,79102,4354,"[""Tablet""]",4503.49,"{"""": ""10%""}",258371,1,Africa +2023-06-05,79103,4368,"[""Monitor""]",1254.87,"{""seasonal"": ""19%""}",280241,1,North America +2024-02-01,79104,3721,"[""Laptop"", ""Headphones"", ""Phone""]",2915.18,{},11305,1,North America +2024-10-28,79105,8251,"[""Tablet"", ""Keyboard""]",4025.98,{},8524,0,Africa +2023-06-12,79106,8925,"[""Tablet""]",2191.68,{},284430,1,Europe +2023-12-30,79107,1069,"[""Keyboard""]",3499.95,"{"""": ""5%""}",12365,0,Europe +2024-04-27,79108,1279,"[""Keyboard""]",2052.26,{},142309,1,Asia +2024-07-04,79109,447,"[""Headphones""]",4372.74,{},210695,0,North America +2023-09-06,79110,5435,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2881.43,{},196178,0,North America +2024-12-20,79111,7203,"[""Monitor"", ""Tablet"", ""Keyboard""]",2827.45,{},242052,1,Asia +2024-06-10,79112,2349,"[""Keyboard""]",3752.45,"{""promo"": ""8%""}",157248,0,South America +2023-04-22,79113,5303,"[""Charger"", ""Keyboard""]",579.81,"{""promo"": ""5%""}",83257,1,Europe +2024-02-12,79114,822,"[""Tablet"", ""Keyboard""]",2615.61,"{"""": ""10%""}",38407,1,North America +2023-03-21,79115,8655,"[""Keyboard"", ""Headphones""]",4923.11,"{"""": ""15%""}",42621,1,Europe +2023-01-05,79116,7835,"[""Keyboard"", ""Laptop""]",615.99,"{""seasonal"": ""8%""}",121872,0,Africa +2024-07-02,79117,2922,"[""Phone"", ""Keyboard"", ""Laptop""]",1616.89,{},167360,1,North America +2023-08-05,79118,7137,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2379.61,"{""seasonal"": ""24%""}",32215,0,Europe +2023-11-30,79119,4826,"[""Phone""]",886.79,{},51025,0,Asia +2023-10-13,79120,1480,"[""Charger""]",3246.24,"{""seasonal"": ""22%""}",96999,1,Europe +2023-06-28,79121,5090,"[""Phone""]",3645.66,{},50502,0,Africa +2024-10-11,79122,3626,"[""Tablet""]",330.2,{},106795,1,Asia +2024-03-10,79123,1316,"[""Keyboard"", ""Monitor"", ""Charger""]",3027.74,{},15681,0,South America +2024-06-04,79124,2419,"[""Wireless Mouse"", ""Monitor""]",3219.05,"{""loyalty"": ""23%""}",39679,0,North America +2023-01-29,79125,9570,"[""Laptop"", ""Wireless Mouse""]",1197.44,"{"""": ""7%""}",125504,1,North America +2023-11-10,79126,7311,"[""Phone""]",3812.48,{},13792,0,Europe +2023-12-30,79127,2164,"[""Monitor"", ""Tablet"", ""Headphones""]",4040.91,{},88922,0,Asia +2023-04-03,79128,7046,"[""Laptop""]",3011.95,{},145578,1,South America +2023-11-14,79129,661,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3715.35,{},104030,1,South America +2024-02-24,79130,6237,"[""Keyboard"", ""Wireless Mouse""]",1524.63,"{""loyalty"": ""26%""}",290730,1,Asia +2024-07-27,79131,5669,"[""Charger"", ""Laptop"", ""Phone""]",3073.65,"{""seasonal"": ""26%""}",239927,1,Africa +2024-10-22,79132,68,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4229.48,{},228500,0,South America +2023-02-25,79133,5998,"[""Monitor"", ""Tablet""]",2505.43,"{""promo"": ""17%""}",299806,1,Europe +2023-01-26,79134,3511,"[""Phone"", ""Headphones""]",3239.12,{},182073,1,South America +2024-11-10,79135,6125,"[""Monitor""]",4395.08,{},54791,0,South America +2024-02-21,79136,8883,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3999.67,"{""loyalty"": ""14%""}",238426,0,North America +2024-04-24,79137,1971,"[""Phone"", ""Headphones"", ""Charger""]",4393.27,{},280139,0,Asia +2024-02-07,79138,4923,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2252.06,{},185171,1,North America +2023-02-10,79139,1301,"[""Keyboard"", ""Charger""]",367.19,{},209202,1,Africa +2024-09-14,79140,6729,"[""Monitor"", ""Charger""]",3648.15,{},87236,1,Asia +2024-04-06,79141,5716,"[""Laptop""]",3245.2,"{""loyalty"": ""13%""}",165777,1,South America +2023-05-03,79142,2401,"[""Laptop"", ""Phone""]",1547.92,"{""promo"": ""13%""}",239721,1,South America +2023-05-30,79143,4485,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1625.55,"{""promo"": ""27%""}",160136,1,North America +2024-06-21,79144,7282,"[""Charger""]",2788.06,{},44098,0,Europe +2023-06-04,79145,9750,"[""Headphones""]",2805.26,"{""loyalty"": ""25%""}",291415,0,Asia +2024-10-23,79146,1949,"[""Charger"", ""Phone""]",266.34,"{""seasonal"": ""7%""}",63376,0,Europe +2023-09-10,79147,7057,"[""Headphones""]",3202.18,{},7975,0,South America +2023-11-24,79148,6997,"[""Tablet""]",1539.92,{},292538,0,Africa +2024-08-26,79149,620,"[""Monitor"", ""Phone""]",4547.97,{},295051,1,South America +2023-01-01,79150,1088,"[""Keyboard"", ""Tablet""]",2437.36,"{""promo"": ""22%""}",48176,0,South America +2024-12-17,79151,7786,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1319.97,"{""promo"": ""8%""}",235189,0,South America +2023-05-31,79152,1027,"[""Monitor""]",3310.07,"{"""": ""24%""}",27203,1,Europe +2024-01-23,79153,8936,"[""Monitor"", ""Phone""]",3536.63,"{""seasonal"": ""10%""}",171648,1,Africa +2023-07-25,79154,3703,"[""Headphones""]",360.87,"{""seasonal"": ""10%""}",278665,0,South America +2023-01-19,79155,6906,"[""Laptop"", ""Phone""]",144.2,{},228223,0,Europe +2023-08-31,79156,2241,"[""Laptop""]",749.57,"{""loyalty"": ""29%""}",195960,1,North America +2023-02-18,79157,467,"[""Keyboard""]",121.77,{},257043,0,North America +2024-03-01,79158,3963,"[""Charger"", ""Laptop"", ""Tablet""]",1751.32,"{""loyalty"": ""16%""}",116934,0,Asia +2023-09-27,79159,6216,"[""Headphones""]",614.62,"{"""": ""20%""}",84215,1,North America +2023-12-19,79160,9186,"[""Laptop""]",2967.9,"{"""": ""16%""}",136904,1,Asia +2024-11-05,79161,9949,"[""Charger""]",773.5,{},166181,1,South America +2024-07-11,79162,7507,"[""Charger"", ""Monitor""]",1096.44,{},113908,0,Europe +2024-12-31,79163,1216,"[""Charger"", ""Keyboard"", ""Headphones""]",4451.21,"{""seasonal"": ""22%""}",56337,0,Africa +2023-01-09,79164,9237,"[""Monitor"", ""Tablet"", ""Keyboard""]",3764.29,{},161121,0,North America +2023-05-20,79165,8104,"[""Headphones"", ""Keyboard"", ""Phone""]",1009.27,{},291537,1,South America +2024-11-14,79166,5500,"[""Charger""]",1112.32,"{""loyalty"": ""23%""}",49289,1,North America +2024-01-10,79167,2450,"[""Monitor""]",373.11,{},190292,0,Africa +2024-02-05,79168,7612,"[""Wireless Mouse""]",4616.03,"{""promo"": ""28%""}",209881,1,Europe +2024-11-25,79169,9760,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3768.48,"{"""": ""13%""}",293511,0,North America +2024-04-25,79170,2806,"[""Keyboard"", ""Headphones""]",3657.32,"{""promo"": ""18%""}",100823,1,Africa +2023-01-24,79171,6378,"[""Charger"", ""Tablet"", ""Monitor""]",698.85,"{""promo"": ""9%""}",277437,1,South America +2024-06-17,79172,9282,"[""Phone""]",1042.3,{},201316,1,Europe +2023-08-09,79173,4398,"[""Laptop""]",1850.47,"{""loyalty"": ""19%""}",11916,0,South America +2023-09-24,79174,7390,"[""Keyboard"", ""Monitor""]",1508.14,"{"""": ""21%""}",228568,1,Asia +2023-03-24,79175,6711,"[""Tablet""]",876.62,"{""loyalty"": ""8%""}",33790,0,South America +2023-04-28,79176,5234,"[""Phone""]",554.68,{},20154,1,Europe +2023-05-30,79177,6287,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4829.88,{},74065,1,North America +2023-05-23,79178,4229,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1980.01,"{""seasonal"": ""17%""}",11602,0,South America +2024-02-12,79179,516,"[""Headphones"", ""Laptop""]",2851.99,{},246786,1,North America +2023-04-07,79180,1531,"[""Laptop""]",1099.31,{},88099,0,Africa +2024-10-10,79181,8744,"[""Monitor"", ""Charger"", ""Keyboard""]",2647.42,{},104150,0,Asia +2024-02-09,79182,3501,"[""Laptop""]",2093.79,"{""seasonal"": ""13%""}",232043,1,North America +2024-08-26,79183,8561,"[""Laptop"", ""Keyboard"", ""Tablet""]",2268.62,"{""promo"": ""22%""}",207256,1,Europe +2023-06-22,79184,8506,"[""Monitor"", ""Wireless Mouse""]",3570.2,"{""loyalty"": ""11%""}",23084,1,Asia +2024-01-21,79185,7704,"[""Keyboard"", ""Charger"", ""Monitor""]",1906.76,"{""loyalty"": ""13%""}",106295,0,Africa +2024-09-07,79186,2247,"[""Headphones""]",4296.27,"{""seasonal"": ""14%""}",115820,1,North America +2023-06-05,79187,3865,"[""Monitor""]",4518.4,"{""promo"": ""21%""}",116509,1,North America +2023-10-30,79188,6633,"[""Keyboard""]",3800.74,{},133581,0,North America +2024-12-06,79189,8191,"[""Monitor"", ""Phone""]",3857.56,{},166350,1,North America +2024-10-26,79190,9799,"[""Charger"", ""Laptop""]",356.41,{},99231,0,North America +2024-12-25,79191,8995,"[""Wireless Mouse"", ""Tablet""]",2281.12,"{"""": ""21%""}",173687,1,North America +2023-01-29,79192,268,"[""Phone"", ""Keyboard""]",2911.88,{},238684,1,South America +2024-02-22,79193,1731,"[""Laptop""]",3080.49,"{""promo"": ""26%""}",172358,0,Africa +2023-04-17,79194,9970,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",681.2,"{"""": ""7%""}",176579,1,Europe +2024-03-07,79195,3438,"[""Keyboard"", ""Headphones"", ""Laptop""]",2630.48,{},39504,1,Asia +2024-05-08,79196,375,"[""Monitor""]",3957.21,{},272033,0,Asia +2024-04-13,79197,9707,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4241.16,{},173159,0,Africa +2023-01-28,79198,6695,"[""Monitor"", ""Tablet"", ""Keyboard""]",3861.31,"{""promo"": ""23%""}",141121,0,South America +2024-11-22,79199,3029,"[""Tablet"", ""Laptop"", ""Monitor""]",1252.02,{},186628,0,Africa +2023-01-11,79200,4221,"[""Charger"", ""Laptop""]",4434.1,{},109837,1,South America +2023-11-15,79201,2446,"[""Tablet"", ""Wireless Mouse""]",1153.21,"{""promo"": ""11%""}",158220,1,Africa +2024-10-11,79202,5615,"[""Monitor"", ""Wireless Mouse""]",1951.1,{},235903,0,North America +2023-10-22,79203,2381,"[""Monitor"", ""Phone""]",3043.84,{},91750,0,Europe +2023-05-04,79204,24,"[""Keyboard"", ""Tablet""]",1623.93,"{""seasonal"": ""7%""}",68700,1,North America +2023-10-16,79205,6003,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",598.89,{},33989,0,Europe +2024-06-27,79206,858,"[""Phone""]",1452.54,"{""loyalty"": ""22%""}",33444,0,North America +2023-10-22,79207,1866,"[""Wireless Mouse"", ""Phone""]",293.45,{},147711,0,North America +2024-08-25,79208,1464,"[""Charger"", ""Phone""]",939.05,{},154963,0,North America +2024-01-10,79209,3606,"[""Headphones"", ""Phone"", ""Keyboard""]",4142.75,{},81073,1,South America +2024-05-21,79210,3528,"[""Monitor"", ""Phone"", ""Keyboard""]",126.13,{},241769,0,South America +2023-03-13,79211,7631,"[""Tablet"", ""Phone"", ""Laptop""]",2649.26,{},12703,0,Europe +2023-05-25,79212,2053,"[""Laptop"", ""Headphones""]",4285.2,{},290777,0,Africa +2023-12-16,79213,1563,"[""Charger""]",1160.05,"{""promo"": ""13%""}",90723,0,Europe +2023-08-18,79214,261,"[""Keyboard"", ""Wireless Mouse""]",484.39,"{""promo"": ""13%""}",214987,0,South America +2023-08-08,79215,7166,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2651.38,{},140057,0,South America +2023-12-12,79216,3394,"[""Headphones""]",3792.28,"{"""": ""20%""}",202645,0,Asia +2024-03-23,79217,7303,"[""Headphones"", ""Laptop"", ""Monitor""]",867.73,"{""loyalty"": ""14%""}",223392,1,North America +2024-02-23,79218,9538,"[""Wireless Mouse""]",1210.43,"{""seasonal"": ""24%""}",294198,1,Europe +2024-04-03,79219,2597,"[""Laptop""]",405.06,"{""seasonal"": ""14%""}",275349,1,North America +2024-04-13,79220,6512,"[""Charger""]",4273.06,{},261422,1,South America +2024-12-04,79221,1492,"[""Monitor""]",601.39,{},93166,0,North America +2023-07-09,79222,7471,"[""Tablet""]",3630.55,{},165358,1,Asia +2024-02-08,79223,4389,"[""Monitor""]",3465.97,"{"""": ""6%""}",184711,0,North America +2024-05-25,79224,3705,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3779.86,"{""loyalty"": ""6%""}",64487,1,North America +2023-04-19,79225,4947,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",832.32,{},271030,0,North America +2023-01-11,79226,1225,"[""Phone"", ""Tablet"", ""Keyboard""]",558.87,"{""seasonal"": ""9%""}",163187,0,North America +2024-08-16,79227,8085,"[""Tablet""]",2755.47,{},116275,1,Europe +2024-01-29,79228,5908,"[""Headphones""]",4393.94,"{""loyalty"": ""6%""}",234491,1,Asia +2023-08-25,79229,6658,"[""Phone"", ""Headphones""]",950.25,{},206575,1,Africa +2023-11-27,79230,7386,"[""Wireless Mouse""]",2264.98,{},278517,0,Africa +2024-05-17,79231,6341,"[""Keyboard""]",3718.78,"{""seasonal"": ""10%""}",283794,1,Asia +2023-11-15,79232,1949,"[""Phone""]",3460.57,{},157432,0,Asia +2023-12-05,79233,8246,"[""Charger"", ""Monitor"", ""Tablet""]",2568.56,"{""promo"": ""24%""}",270522,0,North America +2024-03-16,79234,8590,"[""Charger"", ""Tablet""]",1957.29,{},126482,0,Asia +2024-03-09,79235,4900,"[""Charger""]",3656.6,{},154839,0,Asia +2023-04-11,79236,9056,"[""Tablet"", ""Monitor""]",1602.41,"{""promo"": ""24%""}",4757,1,Europe +2023-06-03,79237,4525,"[""Tablet"", ""Wireless Mouse""]",1060.25,"{""promo"": ""10%""}",76567,1,South America +2024-08-15,79238,1042,"[""Wireless Mouse""]",1397.25,"{""loyalty"": ""29%""}",71856,1,South America +2023-08-25,79239,3578,"[""Monitor"", ""Tablet"", ""Keyboard""]",1691.5,{},43363,1,Europe +2024-11-06,79240,1498,"[""Monitor""]",2682.72,{},84272,1,Europe +2023-12-23,79241,4437,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4506.14,{},70134,1,North America +2024-12-15,79242,726,"[""Monitor""]",1127.27,"{""loyalty"": ""9%""}",98762,0,Asia +2023-06-01,79243,7385,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",941.06,"{"""": ""25%""}",216474,1,South America +2024-06-22,79244,5203,"[""Monitor""]",4126.05,"{"""": ""25%""}",274889,0,South America +2023-06-06,79245,8276,"[""Headphones"", ""Laptop"", ""Monitor""]",2368.52,{},140387,1,Europe +2023-06-25,79246,409,"[""Tablet"", ""Charger"", ""Monitor""]",2386.91,{},228750,1,North America +2024-06-19,79247,5130,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4002.07,"{"""": ""8%""}",125208,0,Asia +2023-12-25,79248,7106,"[""Laptop""]",4140.54,"{""seasonal"": ""28%""}",17342,0,North America +2023-03-08,79249,6037,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4524.13,{},83138,1,Europe +2024-08-16,79250,6223,"[""Laptop""]",1708.76,{},201349,0,Asia +2024-07-02,79251,7055,"[""Charger""]",3024.58,{},117178,0,South America +2024-02-13,79252,1743,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",343.34,"{""seasonal"": ""6%""}",46421,1,South America +2024-09-24,79253,6202,"[""Phone"", ""Wireless Mouse""]",1917.55,"{""promo"": ""11%""}",195359,0,North America +2023-08-11,79254,1767,"[""Wireless Mouse"", ""Tablet""]",4322.85,"{""promo"": ""21%""}",293975,0,Africa +2023-03-03,79255,8806,"[""Charger"", ""Keyboard""]",769.71,"{""promo"": ""14%""}",39808,1,South America +2024-10-09,79256,4551,"[""Tablet"", ""Laptop""]",331.73,{},162938,1,Africa +2024-08-05,79257,9108,"[""Wireless Mouse"", ""Headphones""]",1896.93,{},125804,0,Asia +2023-04-21,79258,5889,"[""Tablet"", ""Phone"", ""Laptop""]",734.99,"{""seasonal"": ""13%""}",91229,0,North America +2023-02-22,79259,2475,"[""Monitor"", ""Wireless Mouse""]",1491.63,{},28351,1,Europe +2024-12-14,79260,2844,"[""Wireless Mouse""]",4990.39,{},280478,0,South America +2024-12-21,79261,9586,"[""Monitor"", ""Phone""]",2696.87,{},282724,0,Europe +2024-03-02,79262,3564,"[""Headphones""]",143.78,"{""loyalty"": ""22%""}",221196,0,Europe +2024-12-10,79263,2622,"[""Charger""]",2764.99,{},268391,1,North America +2023-08-08,79264,463,"[""Monitor"", ""Wireless Mouse""]",2648.72,"{""seasonal"": ""24%""}",50419,1,Asia +2024-12-18,79265,4980,"[""Wireless Mouse"", ""Monitor""]",699.22,{},135611,0,South America +2024-10-30,79266,6063,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1035.55,"{""promo"": ""10%""}",116528,1,Europe +2023-03-29,79267,7150,"[""Phone""]",4961.0,"{""promo"": ""10%""}",195578,1,North America +2023-01-23,79268,825,"[""Phone"", ""Monitor"", ""Laptop""]",3283.47,{},44251,0,North America +2024-12-03,79269,96,"[""Monitor"", ""Laptop""]",1865.41,"{""seasonal"": ""6%""}",47603,1,North America +2024-11-28,79270,1514,"[""Charger"", ""Monitor""]",4240.08,{},109788,0,Asia +2024-04-06,79271,3406,"[""Monitor""]",680.02,"{""loyalty"": ""19%""}",275056,0,Asia +2023-02-21,79272,6740,"[""Wireless Mouse"", ""Charger""]",4201.46,{},111776,1,Europe +2024-05-09,79273,6945,"[""Laptop""]",362.89,{},188830,0,Africa +2024-06-22,79274,7906,"[""Charger""]",560.29,{},52843,1,Asia +2023-03-07,79275,1534,"[""Wireless Mouse"", ""Laptop""]",4709.9,"{""seasonal"": ""12%""}",260749,0,Africa +2024-11-15,79276,8918,"[""Monitor"", ""Charger""]",659.43,"{""loyalty"": ""15%""}",139481,1,Africa +2023-07-25,79277,7819,"[""Headphones"", ""Phone""]",3556.06,"{""seasonal"": ""18%""}",171236,0,South America +2024-07-15,79278,7174,"[""Headphones"", ""Laptop"", ""Charger""]",3356.22,"{""seasonal"": ""20%""}",106785,0,North America +2024-11-27,79279,6154,"[""Keyboard"", ""Monitor""]",1027.05,{},265813,1,Europe +2023-01-27,79280,6031,"[""Monitor"", ""Keyboard"", ""Tablet""]",3550.98,"{""loyalty"": ""5%""}",75394,0,Asia +2023-12-14,79281,6275,"[""Headphones"", ""Laptop""]",1962.14,{},299656,0,Asia +2023-12-15,79282,4346,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4059.64,{},284291,0,South America +2024-08-26,79283,6363,"[""Tablet""]",3701.04,{},45121,1,South America +2023-05-01,79284,6800,"[""Phone"", ""Monitor"", ""Charger""]",4560.99,"{""loyalty"": ""22%""}",218446,0,Asia +2023-01-15,79285,7662,"[""Monitor"", ""Laptop""]",4293.24,{},223764,0,North America +2024-04-17,79286,2780,"[""Wireless Mouse"", ""Laptop""]",3930.56,"{""seasonal"": ""11%""}",209263,0,Europe +2023-06-11,79287,8257,"[""Monitor""]",3453.0,{},112793,1,Europe +2024-02-16,79288,4716,"[""Laptop"", ""Tablet""]",2933.18,"{""seasonal"": ""11%""}",84951,0,South America +2024-01-12,79289,3318,"[""Monitor"", ""Keyboard"", ""Headphones""]",2999.86,"{""seasonal"": ""13%""}",168424,1,Asia +2023-05-09,79290,5102,"[""Laptop"", ""Tablet""]",993.25,"{""loyalty"": ""7%""}",86817,0,Africa +2024-02-15,79291,7982,"[""Wireless Mouse""]",4440.32,{},253089,0,Europe +2023-12-16,79292,4751,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3344.83,"{""promo"": ""13%""}",157242,1,North America +2023-09-10,79293,7867,"[""Wireless Mouse""]",54.2,{},139103,1,Asia +2023-08-30,79294,1323,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1062.85,"{""loyalty"": ""24%""}",92855,0,Asia +2023-02-04,79295,5749,"[""Wireless Mouse"", ""Charger""]",3267.61,"{""promo"": ""29%""}",92091,1,North America +2023-05-24,79296,1789,"[""Headphones""]",1932.49,"{""seasonal"": ""7%""}",221136,0,South America +2023-10-09,79297,8427,"[""Monitor"", ""Phone"", ""Charger""]",1008.28,"{"""": ""24%""}",296796,1,North America +2024-06-24,79298,4895,"[""Phone""]",635.47,"{"""": ""27%""}",138295,0,Europe +2024-06-28,79299,4846,"[""Tablet"", ""Wireless Mouse""]",590.09,{},135916,1,Europe +2023-07-07,79300,6274,"[""Wireless Mouse"", ""Laptop""]",1540.67,{},164252,1,South America +2023-01-06,79301,362,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",350.73,"{""promo"": ""9%""}",3937,1,North America +2023-05-03,79302,1333,"[""Wireless Mouse""]",4351.69,"{"""": ""23%""}",76650,0,Africa +2024-12-13,79303,4292,"[""Tablet"", ""Laptop""]",4881.05,{},207486,1,North America +2024-03-24,79304,362,"[""Tablet"", ""Keyboard""]",60.81,"{"""": ""8%""}",191747,0,Asia +2024-12-27,79305,9072,"[""Keyboard""]",1561.43,"{""seasonal"": ""14%""}",123706,0,South America +2023-08-11,79306,4810,"[""Headphones"", ""Tablet"", ""Laptop""]",3339.79,"{""promo"": ""27%""}",179183,0,North America +2023-09-09,79307,4264,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2245.81,"{""promo"": ""6%""}",294489,0,Africa +2024-02-21,79308,9491,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3872.59,"{"""": ""27%""}",254890,0,Europe +2023-08-08,79309,302,"[""Phone"", ""Monitor""]",3894.94,{},150207,0,Europe +2023-09-19,79310,3148,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4709.1,{},115928,0,South America +2024-12-18,79311,7425,"[""Tablet""]",1774.13,{},32236,0,Asia +2024-04-17,79312,5127,"[""Laptop"", ""Keyboard"", ""Tablet""]",3224.53,{},259124,1,Asia +2024-08-19,79313,1441,"[""Charger"", ""Tablet""]",3677.12,{},228285,0,Africa +2024-05-23,79314,8538,"[""Headphones"", ""Laptop""]",4684.85,{},91902,0,North America +2024-07-10,79315,6200,"[""Monitor""]",1113.95,"{"""": ""6%""}",78266,1,Africa +2023-03-12,79316,3022,"[""Charger"", ""Keyboard""]",2120.75,{},286648,1,Africa +2023-08-02,79317,1156,"[""Monitor"", ""Tablet"", ""Laptop""]",1049.35,{},120805,0,Asia +2024-06-05,79318,7453,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2312.58,"{""promo"": ""28%""}",141433,1,South America +2023-02-21,79319,3053,"[""Tablet""]",3891.21,{},289053,1,South America +2024-01-18,79320,9732,"[""Charger""]",441.96,{},176529,1,Europe +2024-03-24,79321,2909,"[""Keyboard"", ""Headphones""]",628.5,{},24467,1,Europe +2023-12-19,79322,8261,"[""Tablet"", ""Monitor""]",187.24,{},94070,0,South America +2024-03-25,79323,5668,"[""Headphones"", ""Monitor"", ""Phone""]",1272.75,"{""loyalty"": ""19%""}",190856,1,Europe +2023-12-08,79324,6576,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3586.54,{},52711,1,Africa +2023-08-18,79325,1383,"[""Monitor""]",2636.97,{},173918,0,North America +2023-12-25,79326,116,"[""Tablet"", ""Headphones"", ""Charger""]",3575.47,{},294121,0,Asia +2023-08-20,79327,1841,"[""Wireless Mouse"", ""Tablet""]",2313.19,{},186980,0,North America +2024-09-15,79328,764,"[""Keyboard""]",4953.31,"{""seasonal"": ""17%""}",176029,0,Africa +2024-06-14,79329,1744,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1961.37,{},151052,0,South America +2024-10-25,79330,1716,"[""Headphones"", ""Keyboard"", ""Monitor""]",983.16,"{""seasonal"": ""18%""}",96657,0,North America +2024-07-16,79331,2511,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3491.7,{},68482,0,Asia +2023-12-10,79332,2459,"[""Laptop""]",4589.2,{},157027,1,South America +2023-04-12,79333,8704,"[""Headphones""]",1327.39,{},60338,0,Africa +2023-07-21,79334,1998,"[""Tablet"", ""Phone"", ""Laptop""]",4656.4,{},206056,0,North America +2023-11-16,79335,9778,"[""Tablet""]",2035.68,"{""seasonal"": ""27%""}",155831,0,North America +2023-03-03,79336,7138,"[""Headphones"", ""Phone""]",674.31,"{""promo"": ""26%""}",16443,0,Asia +2024-01-09,79337,7632,"[""Laptop""]",4604.41,"{""promo"": ""23%""}",130663,0,South America +2023-03-17,79338,3402,"[""Headphones""]",4446.05,{},184074,0,Africa +2024-11-20,79339,3486,"[""Headphones""]",3695.71,{},252841,1,Asia +2024-02-15,79340,2626,"[""Charger""]",168.55,{},23407,1,Africa +2023-11-20,79341,875,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",218.78,"{""promo"": ""6%""}",167272,0,North America +2023-11-13,79342,4133,"[""Phone""]",4070.03,"{"""": ""6%""}",150713,0,Africa +2023-05-29,79343,9272,"[""Phone"", ""Wireless Mouse"", ""Charger""]",727.98,"{""promo"": ""8%""}",180082,1,Asia +2024-09-17,79344,5052,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4401.34,"{""seasonal"": ""19%""}",107087,0,Africa +2024-11-30,79345,9985,"[""Tablet"", ""Keyboard""]",230.71,"{""seasonal"": ""12%""}",266005,1,Asia +2024-03-30,79346,7438,"[""Phone"", ""Charger""]",756.6,"{""promo"": ""15%""}",131390,1,North America +2023-10-30,79347,128,"[""Charger"", ""Monitor""]",1011.03,"{""promo"": ""25%""}",150914,1,Africa +2024-04-12,79348,4910,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4038.83,"{""seasonal"": ""26%""}",252206,0,Europe +2023-11-11,79349,3947,"[""Charger""]",2912.81,"{""loyalty"": ""25%""}",95135,1,Asia +2023-05-01,79350,4250,"[""Monitor""]",2547.46,"{""loyalty"": ""12%""}",123278,1,North America +2024-08-03,79351,3212,"[""Tablet""]",2195.65,"{"""": ""13%""}",167590,0,South America +2024-03-16,79352,3182,"[""Tablet""]",620.97,"{""promo"": ""14%""}",197647,1,South America +2024-05-25,79353,3529,"[""Keyboard"", ""Phone""]",3975.47,{},20041,1,Europe +2024-10-23,79354,8296,"[""Laptop"", ""Wireless Mouse""]",1418.7,{},80840,1,Asia +2024-12-14,79355,1599,"[""Tablet"", ""Wireless Mouse""]",763.38,"{""promo"": ""29%""}",101385,1,Asia +2023-11-24,79356,4424,"[""Phone"", ""Keyboard"", ""Charger""]",378.34,{},298735,0,Europe +2023-12-19,79357,7285,"[""Charger""]",1789.22,"{"""": ""13%""}",284153,0,North America +2023-08-24,79358,4848,"[""Wireless Mouse""]",3572.79,{},242793,1,North America +2023-02-26,79359,2825,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1882.17,"{"""": ""13%""}",133109,0,Asia +2024-01-23,79360,8549,"[""Headphones"", ""Keyboard""]",2949.94,"{"""": ""9%""}",131892,0,North America +2024-06-30,79361,9557,"[""Phone"", ""Tablet""]",401.05,"{"""": ""16%""}",176423,1,Europe +2023-02-18,79362,5920,"[""Wireless Mouse"", ""Phone""]",4645.81,{},154662,0,Africa +2024-05-26,79363,1721,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3280.18,"{""promo"": ""24%""}",294553,1,Europe +2024-01-28,79364,7303,"[""Phone"", ""Keyboard""]",2305.92,{},62769,1,North America +2023-11-17,79365,6594,"[""Laptop"", ""Charger""]",3809.74,"{""loyalty"": ""11%""}",152643,0,Africa +2024-03-18,79366,8402,"[""Tablet"", ""Phone""]",1868.33,{},246385,1,Asia +2023-10-10,79367,5402,"[""Headphones"", ""Laptop"", ""Charger""]",3702.44,{},116901,0,Europe +2024-09-27,79368,3890,"[""Phone"", ""Laptop""]",1546.77,{},131818,0,North America +2023-10-15,79369,8448,"[""Keyboard""]",2449.24,{},192435,1,North America +2024-06-02,79370,78,"[""Laptop"", ""Wireless Mouse""]",3643.91,"{"""": ""19%""}",20357,0,Europe +2023-01-17,79371,7732,"[""Keyboard""]",3512.8,"{"""": ""8%""}",170135,0,South America +2024-11-25,79372,6588,"[""Tablet""]",84.69,{},21082,0,Asia +2024-07-26,79373,6294,"[""Tablet"", ""Wireless Mouse""]",1848.09,{},26235,1,Asia +2024-02-02,79374,3272,"[""Phone""]",4447.02,"{""seasonal"": ""27%""}",188696,1,North America +2023-01-06,79375,1248,"[""Charger"", ""Keyboard""]",4791.67,"{"""": ""30%""}",183711,1,North America +2023-09-18,79376,8826,"[""Charger""]",1430.55,"{"""": ""12%""}",190494,0,South America +2023-11-15,79377,4788,"[""Phone""]",4730.14,{},21294,1,South America +2024-08-31,79378,9452,"[""Monitor""]",3913.25,"{"""": ""26%""}",148276,0,Africa +2024-06-29,79379,6170,"[""Monitor"", ""Keyboard""]",3798.7,"{""promo"": ""28%""}",35097,1,North America +2023-12-26,79380,7611,"[""Charger"", ""Phone""]",4251.98,{},95958,0,Africa +2023-10-23,79381,8270,"[""Charger"", ""Tablet"", ""Keyboard""]",3469.82,{},46744,1,North America +2024-06-22,79382,2092,"[""Laptop"", ""Keyboard""]",408.69,{},68433,0,Asia +2024-07-26,79383,9450,"[""Tablet""]",675.79,{},263506,1,North America +2024-07-05,79384,4194,"[""Wireless Mouse"", ""Laptop""]",2437.71,"{""seasonal"": ""20%""}",228878,1,Asia +2023-06-08,79385,8698,"[""Keyboard""]",2933.16,{},283273,1,South America +2023-06-22,79386,8315,"[""Monitor"", ""Tablet"", ""Phone""]",2181.47,{},165568,0,North America +2024-09-10,79387,3035,"[""Charger"", ""Headphones"", ""Tablet""]",244.22,{},178990,1,North America +2023-03-25,79388,8773,"[""Charger"", ""Tablet"", ""Phone""]",223.73,"{""promo"": ""28%""}",136682,0,Europe +2023-06-19,79389,5393,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4971.07,"{""loyalty"": ""17%""}",8756,0,Asia +2024-06-18,79390,4378,"[""Laptop""]",2592.83,{},63974,0,Europe +2024-01-27,79391,7223,"[""Tablet"", ""Wireless Mouse""]",4796.33,{},52682,1,Asia +2023-07-17,79392,2908,"[""Keyboard""]",2843.58,{},17884,0,North America +2024-09-05,79393,9962,"[""Headphones"", ""Keyboard""]",2267.99,"{""promo"": ""8%""}",254620,1,North America +2024-05-27,79394,4026,"[""Headphones"", ""Phone"", ""Monitor""]",4740.19,{},123549,0,Africa +2024-01-11,79395,1890,"[""Charger"", ""Keyboard"", ""Phone""]",675.67,"{""loyalty"": ""12%""}",169430,1,South America +2023-09-19,79396,8321,"[""Wireless Mouse"", ""Keyboard""]",2241.05,"{""loyalty"": ""10%""}",176700,0,Europe +2023-04-11,79397,8038,"[""Monitor"", ""Tablet""]",521.83,"{""seasonal"": ""11%""}",186295,0,Asia +2023-06-20,79398,9358,"[""Phone"", ""Charger""]",4047.78,{},70472,1,South America +2023-12-14,79399,5138,"[""Headphones""]",4022.32,{},11005,0,Asia +2024-08-20,79400,7900,"[""Charger""]",1499.24,{},236424,1,Africa +2023-05-01,79401,8398,"[""Tablet"", ""Keyboard"", ""Phone""]",3627.28,{},19565,1,Africa +2023-02-25,79402,4913,"[""Headphones""]",3845.46,{},73390,0,Europe +2023-11-28,79403,2339,"[""Charger"", ""Headphones""]",109.64,"{""seasonal"": ""8%""}",20950,1,Europe +2024-09-25,79404,6806,"[""Wireless Mouse""]",3075.56,{},251408,0,Asia +2024-01-01,79405,5558,"[""Wireless Mouse"", ""Phone""]",179.49,"{""seasonal"": ""29%""}",181204,1,South America +2024-06-22,79406,1941,"[""Tablet"", ""Laptop""]",2551.45,{},80953,0,Africa +2023-01-12,79407,7429,"[""Charger""]",1701.08,"{""loyalty"": ""6%""}",230686,1,South America +2023-02-24,79408,1065,"[""Tablet""]",1225.21,"{""loyalty"": ""14%""}",195524,0,South America +2023-05-13,79409,1157,"[""Monitor""]",67.85,{},59745,1,Asia +2024-11-29,79410,9934,"[""Headphones"", ""Keyboard"", ""Laptop""]",3181.42,"{""promo"": ""9%""}",184014,1,Asia +2024-06-12,79411,3621,"[""Laptop""]",3591.26,{},9837,1,Europe +2023-03-25,79412,6443,"[""Wireless Mouse"", ""Phone""]",466.49,"{""loyalty"": ""5%""}",278082,1,North America +2024-08-01,79413,8116,"[""Tablet"", ""Monitor"", ""Keyboard""]",3333.21,{},96319,1,Asia +2023-10-15,79414,7742,"[""Tablet""]",3282.81,"{""loyalty"": ""30%""}",271132,1,Asia +2023-03-05,79415,3509,"[""Monitor"", ""Keyboard""]",1454.76,"{""loyalty"": ""5%""}",232898,1,Europe +2024-06-22,79416,1926,"[""Monitor""]",3699.63,{},155651,0,Asia +2024-05-02,79417,6598,"[""Headphones""]",2069.79,{},127775,0,North America +2024-01-08,79418,1636,"[""Headphones"", ""Charger""]",3372.44,"{""promo"": ""12%""}",227673,0,South America +2024-10-03,79419,4217,"[""Keyboard""]",1637.01,{},22337,0,Asia +2024-11-06,79420,4150,"[""Phone"", ""Tablet"", ""Charger""]",2589.69,"{"""": ""24%""}",93816,0,South America +2023-12-10,79421,5167,"[""Keyboard"", ""Tablet""]",88.21,"{"""": ""18%""}",25521,0,North America +2023-08-23,79422,8371,"[""Laptop"", ""Monitor"", ""Keyboard""]",3109.39,{},252667,0,South America +2023-01-18,79423,9512,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1120.19,{},149936,1,North America +2024-09-20,79424,7135,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3114.6,{},135805,0,North America +2024-12-10,79425,4185,"[""Keyboard"", ""Charger""]",968.67,{},234376,0,Africa +2024-07-15,79426,4708,"[""Phone""]",3312.08,"{""seasonal"": ""20%""}",235922,1,Asia +2023-08-07,79427,1348,"[""Laptop""]",4950.01,"{"""": ""10%""}",216992,1,North America +2023-05-10,79428,1752,"[""Phone"", ""Laptop"", ""Keyboard""]",3836.99,{},7272,0,Africa +2024-01-24,79429,7682,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2493.47,{},93249,1,Asia +2023-07-15,79430,748,"[""Monitor""]",2973.95,{},206406,0,Asia +2023-10-30,79431,2793,"[""Tablet"", ""Monitor"", ""Headphones""]",3274.28,{},108281,1,Europe +2024-05-16,79432,4114,"[""Wireless Mouse""]",2409.39,{},296499,0,Asia +2024-11-28,79433,1148,"[""Phone"", ""Laptop""]",1789.28,{},257109,0,Africa +2023-03-08,79434,1857,"[""Laptop"", ""Charger""]",4971.5,"{""promo"": ""21%""}",44526,0,North America +2023-09-13,79435,9226,"[""Phone"", ""Charger"", ""Laptop""]",3719.38,{},285239,0,Asia +2023-08-03,79436,8555,"[""Monitor""]",601.81,{},241329,1,North America +2023-10-04,79437,6381,"[""Tablet"", ""Wireless Mouse""]",3231.66,{},88141,1,Asia +2024-01-02,79438,1159,"[""Phone"", ""Headphones"", ""Laptop""]",4072.08,{},159947,1,North America +2023-12-23,79439,3511,"[""Keyboard"", ""Tablet""]",115.87,"{"""": ""24%""}",47599,1,Africa +2024-03-25,79440,7369,"[""Headphones"", ""Keyboard""]",3541.82,{},47644,0,Africa +2024-09-10,79441,8928,"[""Wireless Mouse""]",2973.1,{},89797,1,Africa +2024-10-11,79442,6320,"[""Charger""]",1723.37,{},142396,1,South America +2023-06-13,79443,8871,"[""Wireless Mouse""]",4312.41,{},249414,1,South America +2024-08-22,79444,7825,"[""Wireless Mouse"", ""Monitor""]",3189.66,"{""promo"": ""19%""}",271516,0,Africa +2024-07-15,79445,6663,"[""Tablet""]",4257.83,{},97013,0,Africa +2023-09-16,79446,7793,"[""Tablet"", ""Monitor"", ""Phone""]",4986.62,{},57022,0,Asia +2023-05-01,79447,2723,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",885.76,{},288224,0,Europe +2023-01-27,79448,39,"[""Wireless Mouse""]",3735.85,{},144703,0,Europe +2024-04-06,79449,4869,"[""Headphones""]",3871.35,{},99112,0,Africa +2023-05-21,79450,3565,"[""Keyboard""]",2159.59,{},40258,1,Asia +2023-01-19,79451,5724,"[""Headphones"", ""Keyboard""]",3654.1,{},79800,1,Asia +2023-12-07,79452,4613,"[""Keyboard"", ""Wireless Mouse""]",3218.93,"{""loyalty"": ""11%""}",52381,1,North America +2024-03-09,79453,9206,"[""Laptop""]",757.65,"{""promo"": ""10%""}",107199,1,Africa +2023-01-20,79454,8414,"[""Monitor""]",3157.38,{},129605,1,Europe +2023-10-01,79455,110,"[""Tablet"", ""Charger"", ""Laptop""]",3587.83,"{""promo"": ""13%""}",173190,0,North America +2024-02-14,79456,3067,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",324.71,{},295063,1,Europe +2023-03-30,79457,8014,"[""Monitor""]",814.4,"{"""": ""27%""}",285494,1,Asia +2024-04-26,79458,4192,"[""Charger"", ""Laptop""]",4935.31,{},291527,0,Asia +2023-06-08,79459,1538,"[""Keyboard"", ""Monitor"", ""Charger""]",2870.16,"{""loyalty"": ""11%""}",81429,1,Africa +2023-05-11,79460,9197,"[""Monitor""]",4601.06,{},196491,0,South America +2023-04-18,79461,824,"[""Monitor"", ""Charger"", ""Phone""]",2874.8,"{""promo"": ""8%""}",76187,0,Europe +2024-10-04,79462,811,"[""Keyboard""]",2952.63,{},126114,0,Europe +2024-02-15,79463,5365,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2191.94,{},164304,1,Africa +2023-07-07,79464,9709,"[""Charger"", ""Laptop"", ""Keyboard""]",1604.49,{},66952,0,North America +2024-09-07,79465,6171,"[""Laptop"", ""Charger""]",2301.22,"{""promo"": ""10%""}",161435,0,Asia +2024-11-22,79466,1146,"[""Charger""]",1211.29,"{"""": ""13%""}",90313,1,South America +2023-12-20,79467,3936,"[""Monitor""]",3728.91,"{""promo"": ""23%""}",52398,1,Asia +2023-05-25,79468,5559,"[""Phone"", ""Laptop""]",3503.42,{},280613,1,South America +2023-03-08,79469,5813,"[""Phone"", ""Tablet""]",419.15,"{"""": ""24%""}",26905,1,North America +2024-10-26,79470,7755,"[""Monitor""]",4837.36,"{""loyalty"": ""12%""}",119590,1,Europe +2024-09-28,79471,1801,"[""Tablet"", ""Laptop"", ""Phone""]",3739.23,{},285772,0,Europe +2024-11-29,79472,7879,"[""Phone""]",785.37,{},121130,1,South America +2024-02-06,79473,6039,"[""Monitor""]",2071.63,{},102098,0,Europe +2023-11-28,79474,1321,"[""Monitor"", ""Headphones"", ""Charger""]",1331.41,"{"""": ""5%""}",275793,0,Africa +2024-10-12,79475,4548,"[""Tablet"", ""Charger""]",945.31,{},115709,0,Africa +2024-01-10,79476,4554,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3346.2,{},270931,1,Europe +2023-10-18,79477,3762,"[""Headphones"", ""Monitor""]",4647.56,{},99265,0,South America +2024-03-07,79478,332,"[""Tablet""]",4868.4,"{""seasonal"": ""28%""}",290029,0,North America +2024-04-07,79479,3140,"[""Headphones"", ""Laptop""]",4650.9,"{""seasonal"": ""14%""}",157452,1,Africa +2023-07-16,79480,1998,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1849.7,{},238175,1,Africa +2023-07-04,79481,1572,"[""Keyboard"", ""Monitor""]",3490.74,"{""promo"": ""10%""}",64090,0,South America +2024-02-20,79482,9906,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1527.36,"{""loyalty"": ""16%""}",245543,1,North America +2024-07-24,79483,7259,"[""Phone"", ""Charger""]",4648.98,"{""promo"": ""20%""}",177124,0,Asia +2024-05-23,79484,5223,"[""Charger""]",416.35,"{""loyalty"": ""16%""}",26100,1,Europe +2024-03-27,79485,4308,"[""Monitor"", ""Tablet""]",2246.81,"{"""": ""16%""}",254184,1,Asia +2023-03-05,79486,1599,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2573.9,"{""seasonal"": ""25%""}",112818,0,Asia +2024-09-19,79487,176,"[""Phone""]",3010.54,{},183412,0,Africa +2023-07-01,79488,2910,"[""Headphones""]",2513.5,{},279558,1,North America +2023-04-22,79489,4662,"[""Charger""]",2435.9,"{""seasonal"": ""18%""}",175594,0,Asia +2023-11-07,79490,5153,"[""Tablet"", ""Monitor""]",3571.96,"{"""": ""18%""}",251457,0,South America +2024-11-25,79491,7229,"[""Laptop"", ""Phone"", ""Tablet""]",4250.45,"{""promo"": ""23%""}",97767,0,Africa +2024-07-16,79492,5880,"[""Laptop"", ""Keyboard"", ""Tablet""]",1838.36,"{""seasonal"": ""15%""}",270794,0,Africa +2024-11-12,79493,3227,"[""Monitor""]",1942.78,{},211413,0,Africa +2023-12-23,79494,45,"[""Phone""]",573.03,"{"""": ""10%""}",20525,1,Europe +2023-01-27,79495,4546,"[""Headphones"", ""Phone""]",1231.26,"{""seasonal"": ""19%""}",186773,0,South America +2023-09-13,79496,9109,"[""Wireless Mouse"", ""Phone""]",1916.34,{},251721,1,Europe +2023-01-22,79497,2583,"[""Keyboard"", ""Laptop"", ""Monitor""]",868.39,"{""loyalty"": ""5%""}",4140,1,South America +2023-03-20,79498,9116,"[""Laptop"", ""Keyboard""]",1117.07,"{""seasonal"": ""22%""}",87394,0,South America +2023-11-12,79499,4284,"[""Monitor""]",1067.01,"{""seasonal"": ""28%""}",79437,1,Europe +2023-08-10,79500,4040,"[""Laptop"", ""Headphones""]",3688.3,{},180174,0,Africa +2024-11-01,79501,7470,"[""Monitor"", ""Charger""]",1821.25,"{""promo"": ""12%""}",289416,0,Europe +2024-12-07,79502,9006,"[""Wireless Mouse""]",1065.43,"{"""": ""15%""}",189848,1,Africa +2023-12-30,79503,5991,"[""Charger"", ""Laptop""]",3194.11,"{""promo"": ""12%""}",262875,1,South America +2023-02-26,79504,9264,"[""Charger"", ""Wireless Mouse""]",899.05,{},37496,1,Asia +2024-06-04,79505,8952,"[""Tablet""]",828.39,"{""loyalty"": ""9%""}",280521,1,South America +2024-09-11,79506,3931,"[""Headphones"", ""Keyboard""]",4784.47,"{"""": ""14%""}",132603,1,Asia +2024-02-07,79507,7519,"[""Phone""]",4417.72,"{"""": ""18%""}",111929,1,North America +2024-08-13,79508,7084,"[""Laptop"", ""Headphones"", ""Monitor""]",782.37,"{""promo"": ""22%""}",255528,1,South America +2023-09-09,79509,4100,"[""Phone""]",2710.26,{},12409,1,Africa +2024-07-29,79510,8937,"[""Monitor""]",4321.5,{},26519,0,Africa +2024-04-25,79511,5355,"[""Keyboard"", ""Charger""]",2355.78,"{""promo"": ""10%""}",269889,0,Asia +2023-08-08,79512,6138,"[""Keyboard""]",4059.47,"{"""": ""10%""}",78063,0,Africa +2024-03-29,79513,8813,"[""Laptop"", ""Headphones"", ""Tablet""]",4551.63,"{""promo"": ""23%""}",89087,0,South America +2024-09-01,79514,4570,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4429.49,{},168802,1,Africa +2024-10-25,79515,6384,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3591.61,"{""loyalty"": ""26%""}",36112,1,Asia +2023-01-28,79516,2006,"[""Headphones"", ""Keyboard"", ""Laptop""]",1663.84,"{""loyalty"": ""30%""}",7660,1,South America +2024-11-07,79517,7626,"[""Laptop""]",1092.01,"{""seasonal"": ""11%""}",155740,1,South America +2024-10-26,79518,8933,"[""Phone"", ""Tablet"", ""Charger""]",757.72,"{"""": ""27%""}",68037,1,South America +2024-06-30,79519,9700,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1138.98,{},142022,1,Africa +2023-02-11,79520,7327,"[""Headphones"", ""Monitor""]",1377.41,{},158103,1,Asia +2023-10-21,79521,7672,"[""Laptop""]",1612.75,{},193791,0,Africa +2023-11-02,79522,4347,"[""Laptop""]",2531.89,{},287543,0,North America +2023-04-07,79523,8733,"[""Phone"", ""Keyboard""]",1031.48,{},222601,0,North America +2024-07-28,79524,4307,"[""Headphones""]",1608.97,{},264260,0,Asia +2023-10-15,79525,8411,"[""Laptop""]",2686.73,{},193245,0,Asia +2024-09-10,79526,8116,"[""Monitor"", ""Wireless Mouse""]",2225.83,{},209726,0,Europe +2023-01-28,79527,1915,"[""Tablet""]",3815.25,{},144142,1,Africa +2023-03-16,79528,5899,"[""Phone""]",1943.47,"{""loyalty"": ""26%""}",213885,0,South America +2024-01-25,79529,3071,"[""Keyboard""]",4177.3,"{"""": ""24%""}",259230,1,North America +2023-05-14,79530,1988,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4255.12,"{""loyalty"": ""25%""}",243853,0,Africa +2024-04-23,79531,4027,"[""Laptop"", ""Charger""]",3299.51,{},175934,0,Asia +2023-10-20,79532,7221,"[""Wireless Mouse"", ""Charger""]",4920.25,"{""promo"": ""21%""}",45020,1,Asia +2024-08-18,79533,5033,"[""Keyboard""]",2741.53,{},182111,0,Asia +2024-03-25,79534,6651,"[""Charger"", ""Headphones""]",217.49,{},167882,1,Europe +2024-05-14,79535,8690,"[""Phone""]",2876.35,"{""promo"": ""24%""}",206532,1,Africa +2024-02-21,79536,5333,"[""Monitor"", ""Headphones"", ""Keyboard""]",3255.82,"{""seasonal"": ""8%""}",146965,1,Asia +2023-12-21,79537,416,"[""Phone"", ""Wireless Mouse"", ""Charger""]",418.2,"{""seasonal"": ""26%""}",174100,1,Europe +2023-01-12,79538,4883,"[""Charger"", ""Tablet""]",203.76,"{"""": ""11%""}",26390,0,Asia +2023-01-16,79539,5434,"[""Monitor""]",1634.43,"{"""": ""27%""}",221504,1,Africa +2024-08-30,79540,802,"[""Wireless Mouse""]",4853.48,{},291229,0,North America +2024-01-07,79541,8663,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3044.3,"{""seasonal"": ""15%""}",215360,0,North America +2024-01-30,79542,1145,"[""Tablet"", ""Charger""]",3292.36,"{""loyalty"": ""25%""}",55294,1,Asia +2024-12-26,79543,4249,"[""Headphones"", ""Keyboard"", ""Monitor""]",3811.8,"{""seasonal"": ""25%""}",218662,1,South America +2024-05-06,79544,8011,"[""Phone""]",3487.17,{},260969,0,North America +2024-09-12,79545,3746,"[""Monitor"", ""Phone""]",2428.38,"{""promo"": ""24%""}",242109,0,South America +2024-02-27,79546,327,"[""Charger""]",2278.3,{},77560,1,South America +2023-01-06,79547,4066,"[""Headphones"", ""Keyboard"", ""Tablet""]",1874.05,"{""promo"": ""15%""}",203079,1,North America +2023-02-01,79548,2927,"[""Laptop"", ""Headphones""]",2444.93,"{""promo"": ""26%""}",292247,0,North America +2023-11-16,79549,9677,"[""Headphones"", ""Charger""]",1481.1,"{""seasonal"": ""14%""}",104069,0,Europe +2023-06-23,79550,1489,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1514.43,{},299645,1,South America +2023-04-03,79551,4164,"[""Laptop"", ""Headphones"", ""Monitor""]",1224.95,"{"""": ""21%""}",97529,0,Asia +2023-12-15,79552,7893,"[""Monitor"", ""Laptop"", ""Phone""]",4927.77,"{""seasonal"": ""18%""}",118010,1,Asia +2024-07-09,79553,2088,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3694.14,"{""promo"": ""22%""}",109656,1,South America +2023-07-05,79554,1139,"[""Charger"", ""Headphones""]",3231.85,"{""loyalty"": ""5%""}",19305,1,Africa +2023-05-30,79555,4583,"[""Charger"", ""Monitor"", ""Tablet""]",3370.74,"{""seasonal"": ""19%""}",211019,0,North America +2023-01-13,79556,9135,"[""Monitor"", ""Tablet""]",2614.76,"{""seasonal"": ""26%""}",8670,1,North America +2024-04-24,79557,3254,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1332.1,"{""promo"": ""18%""}",286106,1,North America +2023-01-30,79558,1188,"[""Keyboard"", ""Phone"", ""Laptop""]",1506.64,{},35828,1,Africa +2024-06-13,79559,7022,"[""Keyboard"", ""Laptop""]",4394.92,"{""promo"": ""28%""}",246020,1,Europe +2024-06-25,79560,6223,"[""Wireless Mouse""]",4433.18,"{""seasonal"": ""25%""}",53626,0,North America +2023-04-21,79561,7784,"[""Monitor"", ""Charger"", ""Phone""]",4828.83,{},103591,1,South America +2024-02-02,79562,9029,"[""Keyboard"", ""Charger"", ""Monitor""]",4014.69,"{""seasonal"": ""11%""}",189242,0,Europe +2024-07-22,79563,6537,"[""Headphones"", ""Laptop""]",2534.67,"{""loyalty"": ""22%""}",130812,1,Asia +2023-11-12,79564,3001,"[""Charger""]",2670.89,{},223382,1,Europe +2024-07-17,79565,4357,"[""Monitor"", ""Headphones""]",263.04,"{"""": ""16%""}",168977,1,North America +2023-08-09,79566,113,"[""Laptop""]",2849.31,{},106779,1,North America +2024-09-10,79567,5980,"[""Laptop"", ""Charger""]",2738.19,"{""seasonal"": ""19%""}",172197,1,Europe +2023-01-08,79568,3210,"[""Phone""]",1006.47,"{""loyalty"": ""18%""}",168240,1,Africa +2023-10-06,79569,7916,"[""Laptop"", ""Headphones"", ""Keyboard""]",3185.56,"{""promo"": ""30%""}",102142,0,South America +2023-05-09,79570,2074,"[""Headphones"", ""Tablet""]",413.22,"{""promo"": ""8%""}",137790,0,Asia +2023-09-04,79571,3398,"[""Tablet"", ""Laptop""]",268.99,"{""promo"": ""17%""}",255067,1,North America +2024-04-11,79572,8332,"[""Monitor""]",2029.35,{},222422,1,Asia +2023-04-16,79573,1038,"[""Headphones"", ""Wireless Mouse""]",4787.36,{},137127,1,Europe +2023-05-22,79574,1754,"[""Keyboard"", ""Phone""]",1275.28,"{""loyalty"": ""5%""}",243532,1,North America +2023-09-27,79575,9202,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",2372.09,"{""loyalty"": ""5%""}",87536,0,South America +2024-04-17,79576,6978,"[""Monitor""]",1155.02,{},114260,1,North America +2024-07-22,79577,7154,"[""Headphones"", ""Laptop""]",398.81,{},20921,0,South America +2024-07-17,79578,965,"[""Monitor""]",3762.28,{},203807,1,North America +2024-08-20,79579,4419,"[""Phone"", ""Charger"", ""Laptop""]",208.5,"{"""": ""17%""}",135986,1,South America +2023-07-20,79580,8028,"[""Charger""]",3071.94,{},18904,0,Europe +2023-12-23,79581,7602,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3603.34,{},269091,1,Africa +2024-06-05,79582,1102,"[""Headphones"", ""Monitor""]",3648.06,"{""loyalty"": ""14%""}",168721,1,North America +2024-02-27,79583,3181,"[""Phone"", ""Wireless Mouse""]",3525.43,"{""promo"": ""20%""}",267090,0,South America +2024-07-07,79584,8690,"[""Phone""]",3461.77,"{"""": ""9%""}",209809,1,South America +2023-09-30,79585,8057,"[""Charger""]",2592.28,{},46370,1,Europe +2023-12-28,79586,9294,"[""Wireless Mouse""]",4090.47,"{""seasonal"": ""26%""}",111461,1,Africa +2024-12-19,79587,3523,"[""Phone""]",82.21,{},229922,0,South America +2024-03-22,79588,6509,"[""Wireless Mouse"", ""Keyboard""]",1128.0,{},257073,0,Asia +2024-07-25,79589,3000,"[""Tablet"", ""Charger"", ""Keyboard""]",4475.25,"{""seasonal"": ""20%""}",170629,1,Africa +2024-07-17,79590,1843,"[""Laptop""]",792.93,"{"""": ""8%""}",290206,1,Asia +2024-08-20,79591,9602,"[""Laptop""]",147.78,{},187747,0,North America +2023-06-22,79592,6088,"[""Phone"", ""Monitor""]",1810.93,{},33633,1,Africa +2023-07-24,79593,2936,"[""Keyboard"", ""Phone""]",1830.09,"{""loyalty"": ""19%""}",172012,0,Africa +2024-12-26,79594,8708,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",358.07,{},202093,0,Europe +2024-02-17,79595,5076,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3146.73,{},63651,1,Asia +2024-07-24,79596,3378,"[""Phone"", ""Charger""]",3619.85,"{"""": ""16%""}",248648,0,Europe +2023-08-21,79597,8052,"[""Wireless Mouse""]",3511.0,{},177190,1,South America +2023-05-09,79598,499,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4213.03,"{""promo"": ""27%""}",266232,0,South America +2024-03-01,79599,2008,"[""Laptop""]",3214.98,{},141766,1,South America +2024-10-14,79600,6266,"[""Laptop"", ""Wireless Mouse""]",651.06,"{""seasonal"": ""13%""}",233669,1,South America +2023-12-24,79601,6789,"[""Keyboard""]",2889.91,{},3202,0,North America +2024-01-24,79602,1844,"[""Headphones"", ""Phone"", ""Keyboard""]",2550.53,"{"""": ""10%""}",185855,1,Asia +2024-12-31,79603,8025,"[""Monitor""]",3504.1,{},164557,1,Africa +2024-02-27,79604,6108,"[""Tablet"", ""Monitor"", ""Laptop""]",3083.45,{},52509,1,Asia +2023-03-28,79605,3677,"[""Monitor"", ""Laptop"", ""Headphones""]",4985.05,"{"""": ""29%""}",106977,0,Africa +2024-01-07,79606,9664,"[""Headphones"", ""Wireless Mouse""]",1150.94,{},278562,1,South America +2023-11-22,79607,8856,"[""Tablet""]",4452.22,"{""loyalty"": ""6%""}",236454,0,Europe +2023-08-04,79608,8405,"[""Keyboard"", ""Charger""]",4159.13,"{""seasonal"": ""6%""}",123628,1,Africa +2024-02-21,79609,6444,"[""Phone""]",2406.27,{},219722,0,Africa +2023-03-20,79610,3149,"[""Monitor""]",2833.15,{},241585,0,North America +2024-12-25,79611,1082,"[""Phone""]",1934.57,"{""loyalty"": ""5%""}",79927,1,Africa +2023-10-22,79612,187,"[""Phone"", ""Headphones"", ""Laptop""]",1331.68,{},238669,0,Asia +2023-05-28,79613,6875,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1830.82,{},206690,1,North America +2023-12-19,79614,1350,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4467.5,{},209353,0,North America +2023-08-28,79615,3952,"[""Laptop"", ""Monitor"", ""Headphones""]",422.97,{},275315,0,South America +2024-09-04,79616,5070,"[""Keyboard"", ""Charger"", ""Headphones""]",1354.44,"{""loyalty"": ""6%""}",175232,0,Africa +2023-08-01,79617,8777,"[""Tablet"", ""Charger""]",3919.42,"{""seasonal"": ""23%""}",172150,1,North America +2024-07-11,79618,7438,"[""Charger"", ""Monitor""]",4377.34,"{"""": ""20%""}",10067,1,North America +2024-12-23,79619,6872,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3876.37,"{""seasonal"": ""8%""}",238820,0,Africa +2024-01-11,79620,9847,"[""Tablet"", ""Laptop""]",677.69,{},157363,1,Europe +2024-03-12,79621,6312,"[""Laptop"", ""Charger""]",4016.15,"{""promo"": ""10%""}",13219,1,South America +2023-11-23,79622,3428,"[""Wireless Mouse"", ""Phone""]",1152.89,{},277899,0,Asia +2024-11-03,79623,6177,"[""Wireless Mouse""]",1761.66,"{""loyalty"": ""17%""}",75870,1,Asia +2023-03-12,79624,3707,"[""Keyboard"", ""Tablet""]",1862.42,"{"""": ""28%""}",61939,0,Europe +2024-07-28,79625,8774,"[""Charger"", ""Monitor""]",2716.01,{},195694,0,South America +2023-11-21,79626,2653,"[""Tablet""]",3924.09,{},159191,1,Africa +2024-12-08,79627,8516,"[""Laptop""]",3067.66,{},100265,1,Asia +2023-03-01,79628,3480,"[""Tablet"", ""Monitor"", ""Keyboard""]",4623.44,"{""loyalty"": ""18%""}",175976,0,Europe +2024-09-12,79629,2949,"[""Keyboard"", ""Charger""]",1399.14,"{""seasonal"": ""16%""}",67996,1,South America +2023-09-26,79630,4039,"[""Keyboard"", ""Laptop""]",597.93,{},155196,0,North America +2023-11-02,79631,9600,"[""Charger""]",2378.49,{},42943,0,Europe +2024-08-03,79632,7554,"[""Wireless Mouse"", ""Headphones""]",2725.47,{},163600,0,Europe +2024-05-10,79633,8616,"[""Wireless Mouse"", ""Tablet""]",962.92,{},7772,0,Africa +2024-05-07,79634,7593,"[""Keyboard""]",2231.98,{},199113,1,Asia +2024-08-05,79635,662,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",124.31,"{""loyalty"": ""9%""}",235880,1,Asia +2024-05-01,79636,5122,"[""Phone"", ""Headphones"", ""Keyboard""]",3299.8,{},19787,0,South America +2023-07-21,79637,4833,"[""Keyboard""]",1669.55,"{""loyalty"": ""22%""}",131312,1,North America +2023-03-31,79638,4878,"[""Headphones"", ""Charger""]",4583.41,"{""seasonal"": ""27%""}",277455,0,Europe +2023-01-11,79639,4926,"[""Laptop"", ""Tablet""]",574.91,"{""seasonal"": ""26%""}",253271,1,Africa +2024-07-28,79640,6223,"[""Laptop""]",2055.45,"{""seasonal"": ""12%""}",98675,0,South America +2023-04-04,79641,4089,"[""Tablet"", ""Laptop"", ""Charger""]",185.61,{},121521,0,South America +2023-04-06,79642,1920,"[""Charger"", ""Laptop""]",1505.18,{},192778,1,North America +2023-10-13,79643,7788,"[""Phone"", ""Headphones""]",167.53,"{""seasonal"": ""23%""}",206880,0,North America +2023-06-17,79644,4380,"[""Monitor"", ""Tablet""]",2636.83,"{""seasonal"": ""8%""}",114778,0,Europe +2024-04-09,79645,2098,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2834.99,"{""seasonal"": ""6%""}",290216,0,North America +2024-12-22,79646,1253,"[""Monitor"", ""Headphones"", ""Tablet""]",859.83,"{""seasonal"": ""5%""}",273049,1,Africa +2024-08-08,79647,6337,"[""Laptop""]",848.74,"{""seasonal"": ""22%""}",98460,0,South America +2023-04-22,79648,6510,"[""Wireless Mouse""]",3394.77,"{""loyalty"": ""30%""}",79083,0,Europe +2024-06-02,79649,4788,"[""Monitor"", ""Charger"", ""Keyboard""]",3645.94,{},44867,1,South America +2024-11-05,79650,9584,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1142.31,"{""seasonal"": ""22%""}",67477,1,Asia +2023-01-17,79651,7011,"[""Monitor"", ""Charger""]",1754.48,"{"""": ""25%""}",240952,1,Asia +2024-10-14,79652,3993,"[""Headphones"", ""Laptop"", ""Keyboard""]",4447.97,"{""seasonal"": ""28%""}",132244,1,Africa +2023-06-06,79653,8259,"[""Laptop""]",1474.75,"{""loyalty"": ""26%""}",258826,1,North America +2024-02-28,79654,8419,"[""Monitor"", ""Laptop""]",310.22,"{""loyalty"": ""13%""}",243124,1,Africa +2023-03-30,79655,8331,"[""Headphones"", ""Keyboard""]",905.29,{},36425,0,Europe +2023-02-05,79656,5388,"[""Laptop"", ""Wireless Mouse""]",2515.07,{},256849,0,South America +2024-07-17,79657,2497,"[""Monitor"", ""Tablet""]",2394.42,"{""loyalty"": ""28%""}",13816,1,South America +2024-04-19,79658,8293,"[""Wireless Mouse"", ""Phone""]",3465.62,"{""loyalty"": ""27%""}",224214,1,Africa +2023-07-04,79659,5209,"[""Tablet"", ""Headphones""]",1963.75,{},8906,0,North America +2023-10-24,79660,5950,"[""Wireless Mouse"", ""Headphones""]",4316.95,{},148941,0,Africa +2023-05-12,79661,981,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",997.19,"{""loyalty"": ""22%""}",164529,1,Africa +2023-06-02,79662,5668,"[""Laptop""]",2083.19,"{""seasonal"": ""22%""}",225091,0,North America +2023-05-04,79663,1109,"[""Charger""]",4527.89,{},153209,1,North America +2023-05-23,79664,891,"[""Wireless Mouse"", ""Phone""]",4804.89,"{"""": ""10%""}",199236,1,Europe +2024-12-21,79665,4260,"[""Phone""]",1206.36,"{""loyalty"": ""5%""}",189866,1,Asia +2024-11-11,79666,6405,"[""Charger"", ""Keyboard""]",4779.9,"{""promo"": ""17%""}",59474,1,Africa +2023-12-10,79667,5401,"[""Charger""]",1543.02,"{""seasonal"": ""14%""}",250587,0,South America +2023-01-10,79668,2961,"[""Monitor""]",3532.17,{},250106,1,South America +2023-04-26,79669,4319,"[""Headphones""]",3282.29,"{"""": ""29%""}",136480,0,Asia +2024-06-10,79670,5172,"[""Monitor"", ""Charger""]",4645.58,{},177782,1,Europe +2023-06-05,79671,7888,"[""Monitor""]",2517.25,"{""promo"": ""9%""}",151844,0,Asia +2023-05-07,79672,2248,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",61.15,{},231393,0,North America +2023-01-27,79673,8478,"[""Keyboard"", ""Phone""]",4262.27,"{"""": ""22%""}",253603,0,Africa +2023-02-15,79674,8675,"[""Phone"", ""Keyboard"", ""Headphones""]",1678.45,{},95531,1,Europe +2023-06-03,79675,2118,"[""Phone"", ""Charger""]",4969.41,"{""promo"": ""28%""}",126710,1,Africa +2023-12-09,79676,599,"[""Wireless Mouse""]",1744.54,"{""seasonal"": ""16%""}",165687,1,South America +2023-08-03,79677,6540,"[""Phone""]",1828.8,"{""loyalty"": ""10%""}",282189,0,Asia +2023-09-25,79678,4305,"[""Headphones"", ""Laptop"", ""Keyboard""]",1297.14,"{""promo"": ""9%""}",99608,0,North America +2023-07-05,79679,5809,"[""Wireless Mouse"", ""Headphones""]",2196.65,{},268961,1,Africa +2023-03-13,79680,2703,"[""Tablet""]",3082.5,"{""seasonal"": ""19%""}",8469,1,Africa +2024-07-27,79681,5778,"[""Charger"", ""Laptop"", ""Phone""]",285.96,"{""seasonal"": ""12%""}",47207,0,North America +2023-10-07,79682,8031,"[""Headphones"", ""Charger""]",1285.48,{},157927,1,North America +2023-09-26,79683,9601,"[""Headphones"", ""Phone"", ""Laptop""]",3784.3,{},93506,1,Africa +2023-06-12,79684,3853,"[""Phone"", ""Charger"", ""Laptop""]",3965.69,{},155661,1,North America +2023-10-22,79685,6395,"[""Keyboard"", ""Phone""]",2713.54,"{""promo"": ""18%""}",118863,0,South America +2024-05-04,79686,408,"[""Keyboard""]",2055.43,"{"""": ""27%""}",63555,0,Asia +2023-04-03,79687,1703,"[""Keyboard""]",4656.56,"{""seasonal"": ""6%""}",133810,0,South America +2024-09-02,79688,470,"[""Laptop""]",3597.95,"{"""": ""15%""}",72277,1,Europe +2024-06-17,79689,1304,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1847.89,{},193131,1,Europe +2023-05-22,79690,7881,"[""Tablet"", ""Keyboard""]",2235.93,{},25419,0,Europe +2023-03-23,79691,2559,"[""Monitor"", ""Wireless Mouse""]",818.07,{},93925,1,Europe +2023-07-31,79692,2063,"[""Laptop""]",3265.88,"{""seasonal"": ""28%""}",170128,0,South America +2023-11-16,79693,5179,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3736.82,"{"""": ""28%""}",75712,1,Asia +2023-01-27,79694,2816,"[""Headphones"", ""Tablet"", ""Laptop""]",3839.89,{},93273,1,South America +2023-02-26,79695,387,"[""Tablet"", ""Headphones"", ""Monitor""]",4202.44,{},182469,0,Asia +2023-08-06,79696,7522,"[""Laptop"", ""Tablet""]",1089.17,{},275693,1,South America +2023-11-10,79697,1073,"[""Laptop"", ""Keyboard""]",3867.27,"{"""": ""25%""}",67366,1,Asia +2023-04-17,79698,4992,"[""Laptop"", ""Tablet""]",1767.42,{},55642,0,Africa +2023-09-09,79699,4009,"[""Keyboard"", ""Phone"", ""Monitor""]",772.71,"{"""": ""13%""}",80358,1,North America +2024-01-27,79700,5053,"[""Headphones"", ""Keyboard"", ""Tablet""]",2747.16,{},189035,0,Europe +2023-07-23,79701,1044,"[""Wireless Mouse"", ""Charger""]",4386.26,{},221050,1,South America +2024-05-29,79702,3990,"[""Charger"", ""Keyboard"", ""Laptop""]",750.04,"{""loyalty"": ""9%""}",17162,0,North America +2024-03-23,79703,154,"[""Wireless Mouse"", ""Charger""]",1349.13,{},67552,1,Africa +2023-12-10,79704,701,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1453.73,"{"""": ""7%""}",271067,1,Africa +2024-07-11,79705,2308,"[""Tablet"", ""Keyboard"", ""Phone""]",4788.89,"{""loyalty"": ""10%""}",168956,0,South America +2024-03-06,79706,8689,"[""Tablet"", ""Charger""]",1203.92,"{""loyalty"": ""11%""}",58065,0,South America +2023-11-02,79707,261,"[""Keyboard""]",4814.85,{},260130,1,Asia +2024-05-09,79708,466,"[""Monitor"", ""Phone""]",2060.25,"{""promo"": ""7%""}",38442,1,Europe +2024-07-27,79709,4965,"[""Monitor"", ""Phone""]",4536.1,"{""promo"": ""10%""}",75369,0,North America +2024-06-04,79710,7658,"[""Keyboard""]",1468.91,{},68261,0,Africa +2023-08-27,79711,2471,"[""Monitor"", ""Wireless Mouse""]",570.71,"{""seasonal"": ""25%""}",189215,1,Africa +2024-01-08,79712,2791,"[""Monitor"", ""Phone""]",324.08,"{"""": ""28%""}",230103,1,Asia +2024-02-19,79713,3330,"[""Laptop"", ""Phone"", ""Charger""]",3279.2,"{""loyalty"": ""23%""}",59688,0,South America +2024-03-03,79714,7827,"[""Headphones"", ""Charger""]",4189.96,"{""seasonal"": ""13%""}",50641,0,Africa +2023-02-18,79715,8537,"[""Tablet"", ""Phone""]",3085.36,"{""seasonal"": ""25%""}",270808,1,South America +2024-11-27,79716,6526,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2524.0,"{""seasonal"": ""25%""}",296711,0,Africa +2023-10-20,79717,4119,"[""Monitor"", ""Keyboard"", ""Phone""]",1078.11,"{""promo"": ""21%""}",58417,0,South America +2023-07-15,79718,3489,"[""Charger"", ""Headphones""]",672.42,"{"""": ""17%""}",233610,0,Europe +2023-12-29,79719,6811,"[""Keyboard"", ""Phone"", ""Charger""]",1320.78,{},183705,0,North America +2024-01-13,79720,952,"[""Wireless Mouse""]",719.19,{},91990,0,Africa +2023-10-16,79721,9925,"[""Tablet""]",4580.14,"{""seasonal"": ""21%""}",191602,1,South America +2024-07-29,79722,4294,"[""Laptop""]",1704.64,"{""seasonal"": ""27%""}",220283,0,South America +2024-03-30,79723,6565,"[""Charger"", ""Headphones"", ""Laptop""]",1837.44,{},25741,0,South America +2024-07-20,79724,1094,"[""Charger"", ""Phone""]",3179.93,{},261766,0,North America +2024-09-06,79725,3479,"[""Wireless Mouse""]",1755.93,"{""seasonal"": ""5%""}",139818,1,Asia +2024-11-04,79726,6677,"[""Laptop"", ""Tablet""]",1716.59,{},205344,1,North America +2023-08-26,79727,3802,"[""Headphones""]",3209.82,{},140070,1,Africa +2023-07-27,79728,4029,"[""Phone"", ""Tablet""]",802.77,"{""loyalty"": ""27%""}",28057,1,Europe +2024-09-06,79729,2443,"[""Charger"", ""Phone"", ""Tablet""]",437.23,"{""loyalty"": ""27%""}",284827,0,Europe +2023-03-12,79730,9336,"[""Monitor"", ""Keyboard"", ""Charger""]",2160.42,{},36095,0,North America +2023-12-22,79731,7976,"[""Monitor""]",4965.7,"{"""": ""27%""}",282873,1,North America +2024-05-25,79732,1243,"[""Phone"", ""Monitor""]",706.03,"{""promo"": ""10%""}",11036,1,Africa +2023-06-02,79733,3227,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1943.57,"{""promo"": ""21%""}",229014,0,North America +2024-07-06,79734,2602,"[""Headphones""]",1989.47,{},25673,1,Africa +2023-10-02,79735,1291,"[""Phone"", ""Monitor""]",3277.46,"{""seasonal"": ""24%""}",166086,1,South America +2023-11-19,79736,9917,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3306.62,"{""loyalty"": ""6%""}",63681,1,Europe +2024-06-21,79737,8296,"[""Monitor""]",3898.37,"{""loyalty"": ""16%""}",106886,0,Asia +2023-05-12,79738,5512,"[""Headphones"", ""Laptop"", ""Tablet""]",3728.44,"{""promo"": ""6%""}",111245,0,Asia +2023-08-31,79739,7931,"[""Charger""]",2263.13,{},232452,0,Asia +2024-07-10,79740,7927,"[""Charger""]",4943.46,{},217349,0,Europe +2023-02-09,79741,948,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",467.29,{},76441,0,South America +2024-09-18,79742,2413,"[""Tablet""]",284.51,{},74511,1,North America +2023-10-20,79743,7578,"[""Laptop"", ""Headphones"", ""Charger""]",3522.92,"{""loyalty"": ""28%""}",164964,0,Africa +2023-08-29,79744,3159,"[""Keyboard"", ""Tablet""]",107.44,{},81427,0,South America +2024-03-21,79745,5092,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",698.43,"{""seasonal"": ""24%""}",172148,1,Asia +2024-02-17,79746,8434,"[""Monitor""]",991.05,{},188912,0,Asia +2023-03-31,79747,4185,"[""Keyboard"", ""Monitor"", ""Headphones""]",4418.44,"{""promo"": ""5%""}",55608,1,Europe +2024-08-14,79748,229,"[""Monitor"", ""Tablet"", ""Laptop""]",84.17,{},132406,0,Africa +2024-04-16,79749,5751,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3172.12,{},120961,1,Africa +2024-02-08,79750,9500,"[""Keyboard""]",4483.21,{},138440,0,Africa +2023-10-23,79751,9653,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",596.17,"{"""": ""20%""}",129314,1,North America +2023-03-14,79752,6082,"[""Charger"", ""Laptop""]",4606.28,"{""seasonal"": ""26%""}",134780,0,Asia +2024-11-19,79753,6674,"[""Keyboard"", ""Phone"", ""Charger""]",3790.8,{},175161,0,Asia +2023-01-16,79754,8265,"[""Monitor"", ""Keyboard"", ""Phone""]",4416.8,"{""seasonal"": ""26%""}",49820,0,Africa +2024-04-09,79755,3165,"[""Charger"", ""Headphones"", ""Keyboard""]",3577.15,{},73200,0,South America +2024-10-21,79756,2223,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4716.68,"{"""": ""9%""}",81122,1,Africa +2024-09-16,79757,6592,"[""Keyboard"", ""Tablet""]",656.34,"{""loyalty"": ""13%""}",230484,1,Africa +2023-04-11,79758,3684,"[""Keyboard""]",457.99,"{""promo"": ""20%""}",295908,1,Europe +2023-03-19,79759,7265,"[""Keyboard""]",4052.17,"{""loyalty"": ""6%""}",139258,1,Europe +2024-10-14,79760,8847,"[""Monitor""]",66.92,"{""promo"": ""30%""}",45798,1,Europe +2024-11-08,79761,9948,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2035.24,{},272767,0,Europe +2023-02-20,79762,4569,"[""Laptop""]",4722.23,"{""loyalty"": ""22%""}",231006,1,South America +2024-05-07,79763,2580,"[""Phone""]",2939.29,{},23811,0,Europe +2023-08-19,79764,5626,"[""Laptop""]",3645.58,{},275085,1,South America +2024-03-17,79765,4007,"[""Keyboard"", ""Phone"", ""Headphones""]",596.53,"{"""": ""10%""}",62250,1,Africa +2023-07-22,79766,8324,"[""Laptop""]",3764.37,{},52243,0,Asia +2023-11-28,79767,5521,"[""Charger"", ""Tablet"", ""Headphones""]",2599.18,{},6717,0,South America +2023-02-08,79768,9554,"[""Keyboard"", ""Tablet""]",4840.99,{},192200,1,North America +2023-02-19,79769,9391,"[""Tablet""]",4325.73,{},131642,0,Europe +2023-10-31,79770,985,"[""Wireless Mouse"", ""Tablet""]",1373.66,"{""loyalty"": ""12%""}",292340,1,North America +2023-11-14,79771,9726,"[""Phone"", ""Charger""]",2855.71,{},63081,0,South America +2024-05-24,79772,2495,"[""Keyboard"", ""Tablet"", ""Laptop""]",4343.98,"{""promo"": ""29%""}",83604,0,Africa +2024-04-04,79773,8103,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2545.49,"{""seasonal"": ""30%""}",181497,1,Africa +2024-02-28,79774,2539,"[""Tablet"", ""Charger""]",465.52,"{"""": ""8%""}",77888,1,South America +2024-01-08,79775,1875,"[""Charger""]",3202.12,"{""seasonal"": ""27%""}",167469,0,North America +2023-09-20,79776,4229,"[""Tablet""]",1089.79,"{""loyalty"": ""22%""}",176784,1,South America +2023-01-02,79777,318,"[""Laptop""]",4102.52,"{""loyalty"": ""27%""}",181969,1,South America +2024-11-12,79778,8008,"[""Charger"", ""Headphones"", ""Phone""]",3836.69,"{""seasonal"": ""10%""}",89920,0,Asia +2023-03-29,79779,3052,"[""Tablet""]",3120.03,{},196592,1,North America +2024-10-01,79780,375,"[""Phone""]",4777.21,{},30340,0,North America +2023-11-21,79781,8161,"[""Tablet""]",1052.11,"{"""": ""22%""}",257055,0,South America +2023-06-02,79782,4315,"[""Wireless Mouse""]",417.27,{},289193,1,South America +2023-05-06,79783,7640,"[""Wireless Mouse""]",799.23,{},248068,0,Africa +2024-04-04,79784,2755,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3031.34,{},100720,1,South America +2024-01-25,79785,561,"[""Phone""]",499.89,{},284023,0,Africa +2024-05-21,79786,6516,"[""Phone"", ""Tablet"", ""Charger""]",512.21,{},240780,0,Asia +2023-07-04,79787,5375,"[""Charger"", ""Tablet""]",4386.22,{},60424,1,North America +2024-06-27,79788,356,"[""Keyboard"", ""Tablet""]",3889.28,{},30295,1,Asia +2024-11-11,79789,6952,"[""Monitor"", ""Charger"", ""Laptop""]",2056.5,"{""loyalty"": ""22%""}",11072,1,South America +2024-08-09,79790,3116,"[""Tablet"", ""Headphones""]",4989.58,{},184746,0,Asia +2023-11-17,79791,5965,"[""Headphones"", ""Monitor"", ""Laptop""]",2252.18,"{""loyalty"": ""16%""}",179914,1,Europe +2023-06-12,79792,8662,"[""Keyboard"", ""Charger"", ""Laptop""]",88.49,{},29206,0,Africa +2024-10-27,79793,2170,"[""Tablet"", ""Keyboard"", ""Laptop""]",1198.84,"{""promo"": ""6%""}",95839,0,Asia +2023-02-18,79794,41,"[""Laptop"", ""Keyboard"", ""Tablet""]",940.16,{},24185,1,Africa +2023-06-22,79795,8692,"[""Laptop""]",2155.88,{},282447,1,Europe +2023-07-02,79796,5101,"[""Headphones"", ""Charger"", ""Laptop""]",288.67,"{"""": ""28%""}",204538,1,South America +2023-02-04,79797,5941,"[""Monitor"", ""Keyboard"", ""Laptop""]",1382.09,"{"""": ""26%""}",177356,0,Africa +2024-08-01,79798,9471,"[""Keyboard""]",2274.85,{},222319,1,Europe +2024-07-06,79799,3837,"[""Phone"", ""Monitor""]",4251.57,"{""promo"": ""17%""}",53241,0,Asia +2023-12-04,79800,1505,"[""Charger"", ""Monitor""]",2703.48,{},6314,1,North America +2023-02-02,79801,5750,"[""Charger"", ""Headphones""]",866.52,{},294970,0,Asia +2023-07-04,79802,5992,"[""Tablet""]",423.68,"{"""": ""7%""}",143839,1,North America +2024-06-07,79803,6927,"[""Keyboard"", ""Phone"", ""Monitor""]",3011.36,{},101716,0,Asia +2024-02-19,79804,1053,"[""Phone"", ""Keyboard"", ""Headphones""]",3393.51,"{""promo"": ""12%""}",109070,1,Africa +2023-10-11,79805,5232,"[""Charger"", ""Headphones"", ""Laptop""]",559.98,{},212528,0,Africa +2024-04-08,79806,1229,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4258.47,"{"""": ""19%""}",160383,1,Asia +2023-08-11,79807,6239,"[""Wireless Mouse""]",4216.56,"{""loyalty"": ""5%""}",265426,1,North America +2023-12-19,79808,1923,"[""Headphones""]",1696.35,{},189668,0,South America +2023-03-11,79809,8849,"[""Wireless Mouse"", ""Keyboard""]",985.73,"{""loyalty"": ""22%""}",229380,1,North America +2024-02-28,79810,1011,"[""Wireless Mouse"", ""Laptop""]",3120.85,{},223197,0,South America +2023-11-22,79811,398,"[""Headphones"", ""Monitor"", ""Phone""]",3432.8,"{"""": ""21%""}",244424,1,Europe +2024-02-11,79812,4805,"[""Phone"", ""Monitor"", ""Tablet""]",4881.5,"{""seasonal"": ""12%""}",168495,0,Africa +2023-05-16,79813,9738,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3675.1,{},230891,0,North America +2023-01-21,79814,4331,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2474.65,"{""promo"": ""8%""}",41665,1,Asia +2023-11-29,79815,2219,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4003.69,"{""loyalty"": ""30%""}",108191,1,Europe +2024-03-26,79816,5854,"[""Headphones"", ""Tablet""]",4837.3,"{"""": ""29%""}",69911,0,South America +2024-12-25,79817,9658,"[""Charger""]",3079.0,"{"""": ""12%""}",138233,0,Europe +2024-08-02,79818,9272,"[""Tablet""]",1714.62,{},58540,1,North America +2023-04-12,79819,5748,"[""Charger"", ""Monitor""]",1521.99,{},249005,1,South America +2024-01-23,79820,594,"[""Laptop""]",2840.95,"{"""": ""23%""}",100434,1,North America +2023-10-10,79821,4988,"[""Tablet""]",1464.77,"{""promo"": ""20%""}",206949,0,South America +2023-09-02,79822,5325,"[""Wireless Mouse"", ""Tablet""]",3488.34,"{""seasonal"": ""25%""}",254933,0,Asia +2023-06-10,79823,4605,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3351.97,"{""seasonal"": ""27%""}",211914,1,South America +2024-03-06,79824,595,"[""Laptop"", ""Tablet""]",1843.16,"{""seasonal"": ""21%""}",24092,0,Africa +2023-04-11,79825,6514,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2722.41,{},169217,1,Asia +2024-09-16,79826,6227,"[""Laptop"", ""Wireless Mouse""]",185.58,{},86447,1,North America +2023-07-13,79827,1389,"[""Charger"", ""Wireless Mouse""]",4192.03,"{""promo"": ""22%""}",231322,0,Asia +2023-08-23,79828,2841,"[""Phone"", ""Keyboard""]",3251.94,"{""seasonal"": ""12%""}",235704,1,South America +2024-08-10,79829,7236,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",347.24,{},86169,1,North America +2023-12-26,79830,5495,"[""Headphones""]",534.0,"{""promo"": ""8%""}",96605,0,Africa +2024-10-01,79831,1613,"[""Charger"", ""Laptop"", ""Tablet""]",480.37,"{"""": ""12%""}",261176,0,Africa +2023-06-15,79832,3945,"[""Tablet"", ""Phone"", ""Headphones""]",1716.76,{},240199,1,Africa +2024-07-11,79833,7329,"[""Tablet"", ""Wireless Mouse""]",2282.52,{},174363,0,North America +2024-05-26,79834,863,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3950.87,"{""seasonal"": ""21%""}",282909,1,North America +2024-06-24,79835,7740,"[""Laptop"", ""Wireless Mouse""]",3374.7,"{""seasonal"": ""27%""}",205237,0,Europe +2024-05-27,79836,8432,"[""Charger"", ""Phone""]",4538.26,"{""promo"": ""5%""}",7229,0,South America +2023-11-04,79837,5580,"[""Tablet""]",3253.72,"{""promo"": ""20%""}",134259,0,Asia +2023-10-23,79838,1425,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",1047.01,"{""promo"": ""6%""}",244945,1,North America +2023-07-24,79839,6442,"[""Keyboard""]",844.55,"{""promo"": ""25%""}",188449,0,Asia +2023-12-26,79840,5538,"[""Laptop"", ""Charger"", ""Monitor""]",3211.23,"{"""": ""29%""}",69698,1,Asia +2023-01-29,79841,2669,"[""Phone"", ""Charger""]",3496.52,{},127481,0,Europe +2023-05-03,79842,4155,"[""Wireless Mouse""]",4810.81,"{"""": ""8%""}",107671,0,Europe +2024-06-24,79843,2371,"[""Phone"", ""Keyboard"", ""Charger""]",1603.2,"{""loyalty"": ""23%""}",227247,1,North America +2024-02-23,79844,9881,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4125.16,"{""promo"": ""11%""}",145224,1,Africa +2023-09-03,79845,1696,"[""Tablet"", ""Wireless Mouse""]",1266.35,"{""promo"": ""23%""}",268625,0,Europe +2023-12-26,79846,6703,"[""Headphones""]",1812.02,"{""seasonal"": ""5%""}",24783,1,Europe +2024-12-16,79847,6692,"[""Laptop"", ""Headphones"", ""Keyboard""]",1476.02,{},161618,1,North America +2023-10-28,79848,430,"[""Headphones""]",3404.78,{},161898,1,North America +2024-10-06,79849,7626,"[""Wireless Mouse""]",4838.43,{},214397,0,South America +2023-12-31,79850,2193,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1073.65,{},262591,0,Asia +2024-07-19,79851,7712,"[""Tablet""]",2098.54,"{"""": ""9%""}",40299,1,South America +2023-09-06,79852,4699,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4956.16,{},24011,0,South America +2024-08-08,79853,6032,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",134.5,{},112540,1,North America +2024-05-14,79854,4201,"[""Headphones"", ""Phone"", ""Keyboard""]",640.11,{},299103,1,North America +2024-01-03,79855,5548,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2556.98,{},74171,1,Europe +2024-01-19,79856,1234,"[""Wireless Mouse"", ""Charger""]",1913.79,"{"""": ""30%""}",197799,1,North America +2024-07-20,79857,3721,"[""Phone"", ""Charger"", ""Headphones""]",2395.31,{},260623,0,South America +2024-09-28,79858,9261,"[""Phone""]",2592.02,"{""loyalty"": ""18%""}",214697,0,North America +2024-12-13,79859,754,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4160.35,{},204639,0,Europe +2024-09-22,79860,668,"[""Wireless Mouse"", ""Charger""]",818.74,"{""promo"": ""13%""}",246375,0,Europe +2024-03-09,79861,4687,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2560.65,{},196381,1,Africa +2024-09-22,79862,3729,"[""Charger"", ""Phone"", ""Laptop""]",3528.16,"{""seasonal"": ""30%""}",12584,0,Europe +2023-02-26,79863,9026,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4086.64,{},218378,0,Africa +2024-03-10,79864,5605,"[""Tablet"", ""Keyboard"", ""Headphones""]",124.69,{},231367,1,Africa +2023-06-15,79865,6076,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3805.36,"{""seasonal"": ""14%""}",267571,0,Europe +2024-06-27,79866,9180,"[""Headphones""]",2366.69,"{"""": ""26%""}",217848,1,Asia +2023-03-02,79867,1776,"[""Monitor"", ""Charger""]",3369.76,{},236368,0,North America +2023-07-27,79868,7453,"[""Laptop""]",4310.13,{},70858,1,Africa +2024-04-09,79869,6693,"[""Laptop"", ""Wireless Mouse""]",1520.39,{},1576,1,Asia +2023-11-11,79870,3161,"[""Keyboard"", ""Phone""]",4515.41,"{""seasonal"": ""21%""}",266852,1,Asia +2024-04-21,79871,4656,"[""Charger"", ""Keyboard""]",453.83,{},122211,0,South America +2024-01-01,79872,8731,"[""Tablet"", ""Headphones"", ""Monitor""]",3406.52,{},230464,1,Africa +2024-02-13,79873,6093,"[""Laptop""]",619.53,{},282801,0,South America +2024-06-03,79874,606,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4943.27,{},234349,1,Africa +2023-07-01,79875,9952,"[""Phone""]",2456.77,"{"""": ""11%""}",119552,0,Africa +2023-07-12,79876,7368,"[""Laptop"", ""Headphones""]",4490.07,{},112617,1,Africa +2023-10-04,79877,2432,"[""Laptop""]",3626.58,{},256459,1,North America +2024-05-15,79878,83,"[""Charger"", ""Phone"", ""Laptop""]",1304.61,"{""loyalty"": ""11%""}",117380,1,Africa +2023-06-15,79879,1977,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4211.33,"{"""": ""10%""}",143617,0,North America +2023-08-23,79880,905,"[""Headphones"", ""Phone""]",1333.37,{},121767,0,North America +2024-07-02,79881,9891,"[""Monitor""]",3565.44,"{""loyalty"": ""12%""}",149082,0,Europe +2024-10-19,79882,3649,"[""Monitor"", ""Charger"", ""Tablet""]",899.6,"{""promo"": ""25%""}",42200,0,North America +2024-08-21,79883,4515,"[""Tablet"", ""Keyboard"", ""Phone""]",4144.65,"{""promo"": ""11%""}",28362,0,South America +2024-05-19,79884,652,"[""Charger"", ""Tablet"", ""Keyboard""]",578.28,{},96472,0,Asia +2023-07-02,79885,9988,"[""Phone""]",3207.45,{},239950,1,Africa +2024-05-10,79886,5029,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4390.02,{},242195,1,Africa +2024-04-27,79887,5552,"[""Tablet""]",3097.16,"{""seasonal"": ""30%""}",106198,0,Africa +2024-04-18,79888,8428,"[""Charger"", ""Phone""]",889.38,{},142961,1,Asia +2023-07-12,79889,2154,"[""Phone"", ""Wireless Mouse""]",1305.07,{},51898,0,South America +2023-06-11,79890,3788,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3156.88,{},191042,1,Asia +2024-01-15,79891,8832,"[""Tablet""]",764.79,{},131252,0,North America +2023-08-04,79892,6044,"[""Monitor"", ""Keyboard""]",4607.69,{},55646,1,Africa +2023-08-18,79893,2280,"[""Keyboard"", ""Tablet"", ""Monitor""]",4131.68,{},285089,0,Africa +2023-11-06,79894,6866,"[""Headphones"", ""Monitor""]",4276.22,"{""promo"": ""8%""}",179737,1,Europe +2023-01-28,79895,4069,"[""Monitor""]",691.85,{},74264,1,Africa +2024-08-18,79896,2015,"[""Phone"", ""Tablet""]",4603.1,"{"""": ""25%""}",219983,0,Africa +2023-05-19,79897,4503,"[""Phone""]",1332.08,"{""promo"": ""26%""}",263965,0,Africa +2024-04-14,79898,8942,"[""Laptop""]",4499.1,{},151050,0,North America +2024-02-18,79899,6664,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2577.14,{},7627,0,Europe +2023-06-07,79900,9095,"[""Charger"", ""Headphones""]",4788.78,{},51118,1,South America +2023-05-13,79901,5927,"[""Phone"", ""Monitor""]",3063.26,{},236928,1,Europe +2023-04-24,79902,6650,"[""Headphones""]",4887.76,{},144837,1,South America +2023-11-20,79903,7787,"[""Headphones""]",2746.96,{},210686,0,Asia +2023-08-08,79904,9075,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2854.62,"{""loyalty"": ""22%""}",40014,1,Africa +2024-11-30,79905,6837,"[""Headphones"", ""Monitor"", ""Tablet""]",1379.38,{},125412,1,South America +2024-02-28,79906,3707,"[""Headphones"", ""Monitor"", ""Laptop""]",2871.5,"{""promo"": ""13%""}",273127,0,Europe +2023-03-30,79907,6077,"[""Headphones"", ""Laptop""]",2678.23,"{""seasonal"": ""23%""}",38810,1,North America +2023-10-28,79908,2813,"[""Monitor"", ""Tablet""]",732.7,{},141071,1,Europe +2023-10-03,79909,901,"[""Tablet""]",1452.34,{},48368,1,Europe +2023-04-12,79910,5152,"[""Headphones""]",1386.87,"{"""": ""27%""}",208093,0,Europe +2023-08-20,79911,6350,"[""Monitor"", ""Laptop""]",973.34,{},161059,0,North America +2024-10-20,79912,1901,"[""Wireless Mouse""]",2534.5,"{""seasonal"": ""15%""}",151475,0,South America +2024-11-14,79913,8182,"[""Laptop"", ""Tablet"", ""Keyboard""]",1070.84,{},105487,1,Africa +2024-12-20,79914,8079,"[""Charger"", ""Monitor"", ""Headphones""]",1780.53,"{""seasonal"": ""12%""}",126210,1,Asia +2024-11-01,79915,9689,"[""Phone""]",2246.73,{},54167,0,Africa +2024-12-15,79916,8103,"[""Charger""]",1006.32,{},299528,0,Asia +2023-12-07,79917,2571,"[""Keyboard"", ""Tablet""]",911.63,{},13528,0,North America +2024-09-01,79918,1932,"[""Keyboard"", ""Tablet""]",1497.62,"{""promo"": ""8%""}",117497,0,Europe +2024-07-02,79919,9160,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1452.93,"{"""": ""15%""}",168756,0,Europe +2024-11-21,79920,4577,"[""Laptop""]",886.36,"{""seasonal"": ""28%""}",115303,0,Asia +2023-03-31,79921,4571,"[""Headphones"", ""Charger""]",196.29,"{""seasonal"": ""28%""}",131019,1,Africa +2023-09-15,79922,6631,"[""Tablet"", ""Monitor""]",1868.77,"{"""": ""9%""}",17587,1,Europe +2023-02-21,79923,9479,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",362.78,{},282006,0,North America +2023-02-26,79924,6700,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2761.99,"{"""": ""23%""}",58860,0,North America +2024-05-29,79925,9453,"[""Charger"", ""Tablet""]",96.42,{},167286,1,Asia +2024-01-17,79926,5362,"[""Keyboard""]",2965.3,{},98249,0,Africa +2023-06-22,79927,240,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4609.28,"{"""": ""9%""}",30316,0,Africa +2024-10-18,79928,3130,"[""Keyboard"", ""Laptop""]",4225.66,"{""promo"": ""15%""}",63312,0,Asia +2024-02-01,79929,610,"[""Monitor""]",2449.43,{},269946,1,Africa +2024-03-18,79930,3637,"[""Headphones"", ""Keyboard""]",812.42,"{""loyalty"": ""29%""}",160100,0,Asia +2023-06-30,79931,6472,"[""Tablet"", ""Headphones""]",1625.09,"{""promo"": ""6%""}",71668,0,Europe +2024-02-16,79932,9872,"[""Monitor"", ""Keyboard"", ""Charger""]",2054.96,{},99290,1,South America +2023-03-03,79933,5090,"[""Monitor""]",165.08,"{"""": ""5%""}",117095,1,South America +2024-08-12,79934,8347,"[""Charger""]",2567.47,{},277657,0,North America +2024-08-02,79935,1991,"[""Charger"", ""Monitor"", ""Headphones""]",1892.01,"{""seasonal"": ""14%""}",61512,0,Europe +2024-11-29,79936,8595,"[""Laptop""]",4152.99,{},62538,1,North America +2024-09-09,79937,355,"[""Headphones"", ""Charger""]",4861.92,{},65101,0,Africa +2023-04-10,79938,7124,"[""Wireless Mouse""]",4194.14,{},299284,0,North America +2024-06-02,79939,2627,"[""Tablet"", ""Headphones""]",705.85,"{""seasonal"": ""12%""}",171670,1,Europe +2023-05-02,79940,8198,"[""Headphones""]",2025.42,{},106832,0,North America +2023-04-16,79941,6887,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2299.35,{},201950,0,Asia +2023-05-11,79942,3532,"[""Monitor""]",3574.65,"{""promo"": ""13%""}",230288,1,South America +2023-08-15,79943,7972,"[""Keyboard"", ""Phone"", ""Headphones""]",2341.46,{},130919,0,North America +2024-06-14,79944,8708,"[""Keyboard"", ""Charger"", ""Phone""]",4057.05,"{"""": ""12%""}",123425,0,South America +2024-10-02,79945,1876,"[""Tablet"", ""Phone""]",1286.31,"{""seasonal"": ""27%""}",94933,1,North America +2023-01-21,79946,7189,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3027.56,"{""loyalty"": ""23%""}",226761,0,Asia +2024-01-15,79947,2882,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",130.38,{},92769,1,Africa +2023-06-08,79948,9117,"[""Monitor""]",1220.05,"{"""": ""11%""}",127288,1,Europe +2023-08-15,79949,3177,"[""Phone"", ""Tablet""]",3765.84,{},234408,0,North America +2023-04-20,79950,8343,"[""Keyboard"", ""Tablet"", ""Monitor""]",2641.44,"{""seasonal"": ""7%""}",245192,0,Asia +2023-07-22,79951,1167,"[""Keyboard""]",2097.15,"{"""": ""14%""}",275095,1,South America +2023-10-08,79952,64,"[""Phone"", ""Keyboard""]",1787.42,{},27378,1,Asia +2024-01-12,79953,7300,"[""Keyboard"", ""Headphones"", ""Monitor""]",743.58,"{"""": ""18%""}",200874,0,South America +2023-04-16,79954,937,"[""Headphones"", ""Laptop""]",125.23,"{""promo"": ""28%""}",56636,0,North America +2023-08-06,79955,4823,"[""Phone"", ""Keyboard"", ""Headphones""]",1012.76,{},24134,0,North America +2023-09-25,79956,6257,"[""Tablet"", ""Monitor""]",3851.94,"{""loyalty"": ""24%""}",68382,1,Europe +2024-03-02,79957,6113,"[""Monitor""]",442.79,{},291837,0,Africa +2024-11-14,79958,9209,"[""Keyboard""]",4493.84,{},47710,1,Europe +2024-11-10,79959,365,"[""Monitor""]",3266.63,{},118460,1,North America +2024-10-29,79960,4760,"[""Keyboard""]",3448.27,{},297829,0,Africa +2023-01-04,79961,1003,"[""Tablet""]",2159.44,{},242843,0,Asia +2024-03-03,79962,2665,"[""Monitor"", ""Keyboard"", ""Tablet""]",4210.93,"{""loyalty"": ""30%""}",227865,1,North America +2024-10-28,79963,6133,"[""Tablet""]",214.72,"{"""": ""24%""}",223988,0,Europe +2023-05-09,79964,4677,"[""Headphones"", ""Keyboard"", ""Phone""]",3008.41,{},14882,1,Asia +2024-06-21,79965,221,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2725.09,"{""seasonal"": ""27%""}",33057,0,North America +2024-11-27,79966,1323,"[""Phone""]",3613.18,{},233453,1,Africa +2023-12-05,79967,1354,"[""Charger"", ""Tablet"", ""Headphones""]",2068.23,"{""seasonal"": ""30%""}",284638,0,North America +2023-07-03,79968,6960,"[""Headphones"", ""Charger"", ""Phone""]",2578.06,"{""promo"": ""17%""}",69287,0,Africa +2023-08-25,79969,5469,"[""Phone"", ""Charger"", ""Headphones""]",1792.02,"{""promo"": ""11%""}",104532,0,North America +2023-01-02,79970,105,"[""Phone"", ""Wireless Mouse""]",2838.25,"{""seasonal"": ""21%""}",4309,0,North America +2023-05-25,79971,9057,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4977.31,"{"""": ""5%""}",190101,0,South America +2023-02-01,79972,2147,"[""Wireless Mouse"", ""Charger""]",3197.96,{},81330,0,Africa +2024-09-27,79973,6062,"[""Laptop"", ""Phone""]",2836.93,"{""seasonal"": ""11%""}",126405,0,South America +2023-06-25,79974,7223,"[""Tablet""]",1473.39,"{""loyalty"": ""6%""}",273242,0,Africa +2023-12-22,79975,1765,"[""Tablet""]",547.16,"{""seasonal"": ""14%""}",235309,1,South America +2023-11-23,79976,5617,"[""Monitor"", ""Phone""]",1976.65,{},182814,1,Asia +2023-07-12,79977,8291,"[""Charger"", ""Headphones""]",2988.22,"{""seasonal"": ""15%""}",167924,1,South America +2024-05-27,79978,6560,"[""Laptop"", ""Charger""]",390.57,"{""loyalty"": ""15%""}",125157,1,Asia +2023-04-14,79979,8723,"[""Monitor"", ""Headphones"", ""Charger""]",1558.89,{},135170,0,Asia +2023-03-30,79980,6642,"[""Wireless Mouse""]",4105.77,"{""loyalty"": ""14%""}",232430,1,Africa +2023-02-16,79981,622,"[""Laptop"", ""Monitor"", ""Headphones""]",3764.85,"{"""": ""19%""}",275745,1,Africa +2023-02-26,79982,1905,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1584.54,{},91746,1,Europe +2023-07-28,79983,7821,"[""Phone"", ""Monitor""]",4451.28,"{"""": ""14%""}",158881,0,Europe +2024-09-05,79984,5969,"[""Headphones"", ""Laptop"", ""Charger""]",2939.61,"{""promo"": ""17%""}",129788,0,Africa +2023-06-08,79985,943,"[""Keyboard""]",2033.37,{},88818,1,North America +2023-07-29,79986,8774,"[""Laptop""]",379.08,{},249464,1,North America +2023-05-10,79987,4033,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3108.33,"{""loyalty"": ""21%""}",291245,0,Africa +2023-04-12,79988,5481,"[""Charger"", ""Monitor"", ""Tablet""]",1040.32,"{"""": ""9%""}",163030,1,Asia +2023-05-27,79989,3481,"[""Keyboard"", ""Laptop"", ""Phone""]",807.76,{},236980,1,Africa +2023-06-08,79990,3971,"[""Wireless Mouse"", ""Charger""]",894.01,{},203909,0,Asia +2023-02-13,79991,5089,"[""Charger"", ""Laptop""]",4418.43,"{""loyalty"": ""13%""}",212642,0,Africa +2024-08-07,79992,3154,"[""Tablet"", ""Keyboard""]",2810.17,"{""promo"": ""24%""}",232022,0,South America +2024-02-25,79993,4476,"[""Keyboard"", ""Monitor"", ""Charger""]",757.47,"{""loyalty"": ""28%""}",270531,0,North America +2023-07-16,79994,3845,"[""Keyboard"", ""Laptop"", ""Charger""]",2536.92,"{""loyalty"": ""11%""}",30985,0,Europe +2024-11-18,79995,6739,"[""Monitor"", ""Charger""]",3499.52,"{""loyalty"": ""8%""}",140494,1,North America +2023-09-07,79996,4151,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2057.53,"{""promo"": ""16%""}",169679,0,Asia +2023-09-09,79997,5401,"[""Charger""]",1469.12,{},152120,1,Africa +2024-03-17,79998,3529,"[""Phone"", ""Laptop""]",4830.02,{},207805,1,South America +2023-02-19,79999,2263,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3451.06,{},239469,1,Africa +2024-02-19,80000,7307,"[""Phone"", ""Keyboard"", ""Laptop""]",3853.82,"{"""": ""17%""}",216626,0,Asia +2023-03-20,80001,7028,"[""Laptop""]",2132.53,{},250814,1,Africa +2024-09-24,80002,4531,"[""Keyboard""]",2084.19,{},31399,0,Europe +2024-10-17,80003,3940,"[""Keyboard""]",4229.39,"{""promo"": ""6%""}",240775,0,Africa +2023-09-06,80004,3768,"[""Monitor""]",4267.47,"{""promo"": ""30%""}",55313,1,Europe +2024-12-01,80005,1738,"[""Phone"", ""Monitor"", ""Headphones""]",262.84,"{""seasonal"": ""30%""}",56377,1,Africa +2024-03-31,80006,5316,"[""Keyboard""]",944.14,{},16848,1,Asia +2023-04-01,80007,8276,"[""Headphones""]",1288.56,{},3051,1,Africa +2023-11-24,80008,8289,"[""Laptop""]",1075.12,{},17179,0,Africa +2023-12-12,80009,495,"[""Tablet"", ""Wireless Mouse""]",2728.33,"{""promo"": ""5%""}",117196,1,Europe +2024-01-19,80010,373,"[""Headphones""]",438.85,"{""promo"": ""28%""}",50522,0,Europe +2023-11-27,80011,4768,"[""Laptop""]",3886.5,{},31063,0,Europe +2023-12-01,80012,5974,"[""Tablet"", ""Keyboard""]",3716.41,"{""loyalty"": ""7%""}",111164,0,Africa +2023-05-29,80013,7070,"[""Monitor""]",2009.68,{},108448,0,Africa +2024-07-03,80014,9688,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",938.08,"{""promo"": ""26%""}",6903,0,South America +2024-05-22,80015,6215,"[""Laptop"", ""Headphones"", ""Tablet""]",4876.87,{},195340,0,Africa +2024-11-19,80016,200,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4678.69,{},11543,1,South America +2024-01-29,80017,2348,"[""Headphones"", ""Phone"", ""Tablet""]",4296.23,"{""loyalty"": ""28%""}",208783,0,Asia +2024-11-29,80018,1720,"[""Keyboard"", ""Laptop""]",1740.25,{},26993,1,Asia +2024-08-07,80019,4208,"[""Monitor"", ""Charger""]",3172.7,{},106345,1,Africa +2023-05-03,80020,3262,"[""Monitor"", ""Charger"", ""Phone""]",3418.17,{},10104,1,North America +2023-08-24,80021,2783,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2133.62,{},69219,0,Africa +2024-11-04,80022,4278,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1152.24,"{""seasonal"": ""5%""}",271070,0,South America +2023-03-13,80023,9597,"[""Phone"", ""Tablet"", ""Laptop""]",1018.97,"{""loyalty"": ""23%""}",101449,0,South America +2023-01-07,80024,2361,"[""Wireless Mouse"", ""Laptop""]",3830.53,{},266446,0,North America +2024-02-11,80025,8841,"[""Headphones""]",3992.81,{},155186,1,South America +2023-02-11,80026,6532,"[""Keyboard""]",3691.93,{},226040,0,South America +2023-07-20,80027,9230,"[""Keyboard""]",4448.17,"{""loyalty"": ""7%""}",298319,1,South America +2024-09-02,80028,8126,"[""Wireless Mouse"", ""Monitor""]",280.13,{},267957,1,North America +2023-08-13,80029,9286,"[""Phone""]",2841.43,{},107316,1,Europe +2024-11-21,80030,9627,"[""Monitor"", ""Charger""]",3504.86,"{"""": ""6%""}",37803,0,Asia +2024-12-27,80031,4537,"[""Phone"", ""Tablet"", ""Charger""]",3078.98,{},60430,1,Europe +2023-04-03,80032,5928,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3765.94,"{""loyalty"": ""20%""}",36485,1,Africa +2023-12-23,80033,5699,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4845.51,{},91471,1,South America +2023-07-24,80034,292,"[""Monitor""]",4096.09,{},269991,1,Africa +2023-02-10,80035,1220,"[""Laptop"", ""Keyboard""]",1464.83,{},66193,1,Asia +2024-09-09,80036,2279,"[""Laptop""]",854.26,"{""loyalty"": ""27%""}",268212,0,Asia +2023-09-26,80037,6814,"[""Phone"", ""Monitor"", ""Charger""]",3418.97,{},259813,1,Europe +2023-01-15,80038,1320,"[""Headphones"", ""Laptop"", ""Phone""]",1330.85,"{""seasonal"": ""16%""}",4571,1,Asia +2023-02-18,80039,4882,"[""Monitor"", ""Keyboard""]",4320.46,"{"""": ""5%""}",190893,1,North America +2024-05-27,80040,8660,"[""Tablet"", ""Charger"", ""Laptop""]",900.75,{},202680,0,Africa +2023-04-15,80041,3647,"[""Phone""]",1173.48,"{"""": ""30%""}",100515,0,South America +2023-08-24,80042,7582,"[""Headphones"", ""Laptop"", ""Monitor""]",2548.68,"{""seasonal"": ""26%""}",2823,1,Asia +2023-05-30,80043,4770,"[""Charger""]",470.78,{},10785,1,Europe +2024-02-08,80044,8808,"[""Keyboard"", ""Monitor""]",1418.32,{},83413,1,South America +2024-12-06,80045,5793,"[""Phone""]",747.99,{},160944,1,South America +2023-03-10,80046,5777,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4623.13,"{""loyalty"": ""7%""}",34971,1,Asia +2024-05-11,80047,9702,"[""Monitor"", ""Phone"", ""Charger""]",2453.0,{},208211,1,Asia +2024-01-14,80048,1628,"[""Laptop"", ""Monitor""]",395.32,"{"""": ""22%""}",235712,0,North America +2024-01-19,80049,6243,"[""Tablet"", ""Monitor"", ""Keyboard""]",3168.45,{},112397,0,North America +2023-04-07,80050,5168,"[""Keyboard"", ""Monitor"", ""Phone""]",2405.04,"{""promo"": ""26%""}",186999,0,North America +2023-02-06,80051,2143,"[""Headphones"", ""Monitor"", ""Laptop""]",2908.95,"{""seasonal"": ""12%""}",92168,0,Europe +2023-11-19,80052,4354,"[""Keyboard"", ""Wireless Mouse""]",3056.58,"{""loyalty"": ""22%""}",205442,0,Africa +2024-06-19,80053,8812,"[""Charger"", ""Phone"", ""Laptop""]",4036.98,"{""promo"": ""27%""}",84523,0,Asia +2024-01-03,80054,9126,"[""Wireless Mouse"", ""Keyboard""]",2107.73,{},266390,1,Asia +2024-03-27,80055,8371,"[""Laptop"", ""Wireless Mouse""]",4746.64,"{""promo"": ""10%""}",174690,0,Africa +2023-10-14,80056,4031,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2680.64,"{"""": ""18%""}",222064,1,Europe +2023-12-22,80057,3741,"[""Tablet""]",4522.83,"{""loyalty"": ""8%""}",73849,0,South America +2024-03-19,80058,772,"[""Wireless Mouse""]",577.24,{},78811,1,North America +2024-10-31,80059,7014,"[""Charger""]",4761.8,{},30340,0,Europe +2024-02-05,80060,8819,"[""Charger""]",65.39,{},238282,0,Africa +2023-09-19,80061,4621,"[""Headphones""]",1557.7,{},283208,1,North America +2023-10-31,80062,9861,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1587.68,"{""promo"": ""11%""}",94512,0,Europe +2024-08-13,80063,5546,"[""Headphones""]",3658.73,{},139916,1,Europe +2023-10-06,80064,2638,"[""Laptop"", ""Tablet""]",1247.24,{},291580,0,South America +2024-07-06,80065,1784,"[""Headphones"", ""Keyboard"", ""Monitor""]",1417.24,"{"""": ""10%""}",55883,0,South America +2024-06-29,80066,9052,"[""Monitor""]",4816.31,{},243781,0,North America +2023-07-06,80067,8833,"[""Phone""]",1961.22,"{""seasonal"": ""26%""}",98937,1,North America +2023-04-04,80068,1865,"[""Monitor"", ""Tablet"", ""Keyboard""]",4795.97,{},28767,1,Europe +2023-03-08,80069,3762,"[""Laptop""]",2340.36,"{"""": ""17%""}",218495,0,Africa +2023-08-01,80070,2825,"[""Headphones"", ""Phone""]",425.11,"{"""": ""9%""}",286551,0,Africa +2023-12-05,80071,9370,"[""Keyboard"", ""Charger"", ""Laptop""]",2355.44,"{""loyalty"": ""18%""}",169391,0,North America +2023-11-03,80072,4842,"[""Phone"", ""Tablet""]",2089.61,"{""promo"": ""8%""}",274288,1,South America +2024-12-30,80073,6142,"[""Charger""]",2337.28,"{""promo"": ""9%""}",253138,1,Africa +2023-07-18,80074,451,"[""Tablet"", ""Laptop""]",2118.52,{},40553,0,Africa +2023-12-31,80075,1660,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4626.11,{},170367,0,Asia +2023-03-09,80076,5668,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4391.23,"{"""": ""9%""}",243975,1,North America +2023-07-03,80077,553,"[""Keyboard"", ""Charger"", ""Headphones""]",2968.55,"{"""": ""12%""}",68385,0,Africa +2024-12-14,80078,3477,"[""Charger"", ""Monitor"", ""Headphones""]",4933.89,"{""loyalty"": ""21%""}",233182,0,North America +2023-03-12,80079,6410,"[""Headphones"", ""Phone"", ""Laptop""]",4462.62,{},106256,1,Africa +2023-08-23,80080,2805,"[""Keyboard"", ""Tablet""]",3937.35,"{""loyalty"": ""18%""}",269546,1,North America +2024-06-30,80081,7424,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",464.55,"{""seasonal"": ""21%""}",56526,1,Europe +2023-08-27,80082,691,"[""Monitor"", ""Charger""]",1841.1,{},13648,1,Asia +2023-03-27,80083,4802,"[""Keyboard""]",1517.82,"{"""": ""12%""}",266588,1,Asia +2023-01-02,80084,8882,"[""Phone"", ""Headphones""]",2905.25,{},11414,1,Europe +2023-02-23,80085,3277,"[""Laptop""]",4129.72,"{""seasonal"": ""14%""}",265008,1,Europe +2024-06-20,80086,4609,"[""Monitor"", ""Headphones""]",67.92,{},261239,0,Africa +2024-05-16,80087,4494,"[""Tablet""]",2963.12,"{""promo"": ""21%""}",151967,0,Europe +2024-03-25,80088,4611,"[""Headphones""]",370.86,"{""seasonal"": ""9%""}",108483,0,Europe +2024-05-31,80089,8780,"[""Headphones""]",1819.08,"{"""": ""18%""}",232222,1,Asia +2024-03-11,80090,2752,"[""Monitor""]",1541.89,"{""loyalty"": ""23%""}",137458,0,Asia +2023-09-09,80091,1880,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4011.42,{},218500,0,Asia +2023-01-30,80092,5315,"[""Wireless Mouse""]",1210.76,{},149953,1,Europe +2023-01-27,80093,7348,"[""Headphones""]",2075.54,"{"""": ""20%""}",235872,1,Africa +2024-11-12,80094,8670,"[""Monitor"", ""Keyboard"", ""Headphones""]",4270.43,{},122332,0,Europe +2024-01-22,80095,4955,"[""Tablet"", ""Headphones""]",1068.6,{},192784,1,South America +2023-05-29,80096,368,"[""Charger""]",3567.27,"{"""": ""15%""}",248470,0,Africa +2023-06-25,80097,8606,"[""Phone"", ""Charger""]",1975.25,{},166643,1,Asia +2023-06-16,80098,3505,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",971.99,{},23334,1,Asia +2024-07-05,80099,8712,"[""Wireless Mouse"", ""Charger""]",2811.34,{},222818,1,North America +2024-09-05,80100,5322,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",949.01,{},42281,1,North America +2023-04-30,80101,7592,"[""Headphones"", ""Charger""]",1503.79,{},5916,0,South America +2024-07-20,80102,1319,"[""Wireless Mouse"", ""Keyboard""]",1493.63,{},239149,0,Asia +2023-04-28,80103,8558,"[""Monitor"", ""Phone"", ""Charger""]",4020.16,{},90729,0,North America +2024-07-23,80104,5790,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4767.7,{},193960,1,Asia +2023-07-07,80105,4084,"[""Laptop""]",3716.95,{},232929,0,Europe +2023-11-23,80106,5513,"[""Keyboard"", ""Laptop""]",3607.81,{},295181,1,South America +2023-11-26,80107,6779,"[""Headphones"", ""Keyboard"", ""Tablet""]",2774.05,"{""seasonal"": ""29%""}",113080,1,Africa +2023-11-27,80108,9288,"[""Wireless Mouse"", ""Keyboard""]",3285.97,{},85003,0,Asia +2024-11-07,80109,6395,"[""Keyboard""]",4477.41,{},172330,1,Africa +2023-03-07,80110,943,"[""Keyboard"", ""Wireless Mouse""]",3198.72,"{""loyalty"": ""10%""}",205971,0,South America +2023-07-26,80111,6134,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3069.02,"{""seasonal"": ""14%""}",292719,1,Africa +2024-08-23,80112,4676,"[""Headphones"", ""Charger"", ""Laptop""]",4362.05,"{""promo"": ""22%""}",229893,0,Europe +2024-06-18,80113,3394,"[""Phone""]",1901.12,"{""loyalty"": ""19%""}",149825,0,Europe +2024-02-06,80114,5336,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4724.17,"{""loyalty"": ""6%""}",1235,0,Europe +2024-04-06,80115,1135,"[""Charger"", ""Keyboard""]",2776.66,{},110396,1,Europe +2023-09-25,80116,8052,"[""Headphones""]",4240.85,"{""loyalty"": ""16%""}",283237,1,Asia +2023-06-17,80117,3441,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3654.71,{},74794,1,Europe +2023-04-27,80118,6918,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1535.49,{},247198,0,North America +2024-10-28,80119,7039,"[""Phone"", ""Headphones"", ""Laptop""]",4061.98,"{"""": ""16%""}",159267,0,South America +2023-08-03,80120,5612,"[""Charger""]",1594.82,{},157932,0,North America +2023-07-23,80121,3526,"[""Keyboard""]",2667.1,"{"""": ""11%""}",283676,1,North America +2024-12-07,80122,1340,"[""Headphones"", ""Laptop""]",2251.58,{},210078,0,South America +2023-06-30,80123,2969,"[""Phone"", ""Monitor""]",3134.1,"{"""": ""19%""}",242575,0,Africa +2023-04-08,80124,4513,"[""Wireless Mouse"", ""Keyboard""]",299.87,"{""seasonal"": ""9%""}",85094,1,Asia +2024-08-06,80125,3270,"[""Wireless Mouse""]",2026.91,"{""seasonal"": ""6%""}",39639,0,Asia +2023-10-05,80126,291,"[""Keyboard"", ""Laptop""]",4341.59,"{""seasonal"": ""11%""}",153303,1,Asia +2024-04-08,80127,6224,"[""Keyboard"", ""Phone"", ""Charger""]",2372.98,{},111983,1,Asia +2023-02-20,80128,2474,"[""Keyboard"", ""Monitor"", ""Laptop""]",3549.01,{},13390,1,North America +2024-03-14,80129,4697,"[""Headphones""]",3117.62,"{""promo"": ""19%""}",38834,0,North America +2024-10-13,80130,1943,"[""Phone"", ""Monitor"", ""Charger""]",332.72,"{""seasonal"": ""9%""}",158429,1,Africa +2023-09-29,80131,8431,"[""Phone"", ""Charger""]",3860.95,"{""promo"": ""27%""}",268208,0,Europe +2023-08-30,80132,3145,"[""Wireless Mouse"", ""Headphones""]",4620.41,"{""seasonal"": ""16%""}",284680,0,Africa +2023-01-01,80133,4971,"[""Phone""]",1643.24,"{"""": ""7%""}",105884,0,Europe +2024-10-18,80134,7929,"[""Wireless Mouse"", ""Headphones""]",943.77,{},15668,0,Europe +2024-09-28,80135,6449,"[""Laptop"", ""Phone""]",505.97,"{"""": ""21%""}",213949,0,Asia +2024-06-21,80136,3040,"[""Laptop"", ""Monitor""]",269.95,{},276175,0,Europe +2024-03-03,80137,6023,"[""Monitor""]",1204.95,{},73294,1,North America +2023-05-16,80138,5234,"[""Wireless Mouse""]",3989.13,{},132627,1,South America +2024-06-29,80139,9710,"[""Charger""]",3241.71,{},187548,1,South America +2024-10-17,80140,9447,"[""Keyboard"", ""Headphones""]",1481.73,{},124101,1,Europe +2023-11-27,80141,8479,"[""Phone"", ""Wireless Mouse""]",3455.84,{},264789,1,Asia +2023-04-02,80142,1257,"[""Charger""]",2273.45,"{""loyalty"": ""8%""}",39802,1,South America +2024-03-11,80143,8936,"[""Monitor""]",3545.14,"{""promo"": ""20%""}",106112,1,North America +2024-12-07,80144,5077,"[""Headphones"", ""Charger""]",4695.04,"{""loyalty"": ""26%""}",53970,0,Europe +2024-12-20,80145,3556,"[""Monitor"", ""Phone""]",532.64,{},197222,0,Africa +2024-04-22,80146,1430,"[""Headphones"", ""Tablet""]",4228.43,"{"""": ""5%""}",117100,1,Asia +2023-11-22,80147,1703,"[""Charger""]",1639.0,"{""promo"": ""23%""}",137315,0,Africa +2023-12-23,80148,4802,"[""Tablet"", ""Keyboard""]",4295.89,{},70327,0,North America +2024-03-23,80149,287,"[""Charger"", ""Wireless Mouse""]",3733.33,"{""seasonal"": ""7%""}",118289,0,South America +2024-02-09,80150,4272,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",778.48,{},253827,0,North America +2024-11-17,80151,2861,"[""Charger""]",468.23,{},128568,0,Africa +2024-07-09,80152,9679,"[""Charger"", ""Tablet"", ""Headphones""]",870.59,{},75113,0,South America +2024-10-29,80153,1978,"[""Keyboard"", ""Headphones"", ""Tablet""]",1584.69,"{""seasonal"": ""15%""}",270736,1,South America +2023-07-31,80154,8554,"[""Phone""]",1803.27,"{""seasonal"": ""26%""}",227389,0,Africa +2024-10-19,80155,7683,"[""Wireless Mouse""]",3551.78,"{""seasonal"": ""7%""}",266620,0,Europe +2024-02-15,80156,7910,"[""Phone"", ""Charger""]",248.01,{},161830,0,South America +2024-07-29,80157,9866,"[""Wireless Mouse"", ""Keyboard""]",619.15,{},109847,1,Asia +2024-08-25,80158,7315,"[""Tablet"", ""Laptop"", ""Headphones""]",3527.04,{},103769,1,Europe +2024-03-30,80159,5238,"[""Charger""]",1665.09,"{""promo"": ""12%""}",155621,1,South America +2024-07-30,80160,4115,"[""Tablet"", ""Charger"", ""Phone""]",4763.29,{},110358,1,North America +2023-10-11,80161,9232,"[""Wireless Mouse"", ""Laptop""]",719.07,{},194061,1,Europe +2023-05-26,80162,5614,"[""Wireless Mouse""]",171.6,"{"""": ""29%""}",27221,1,Asia +2024-04-15,80163,2428,"[""Keyboard""]",2993.31,"{"""": ""10%""}",261378,0,Africa +2024-05-08,80164,6960,"[""Charger"", ""Laptop""]",1166.02,"{""promo"": ""17%""}",143245,1,Europe +2024-08-27,80165,6481,"[""Monitor""]",802.59,"{"""": ""24%""}",264109,1,South America +2023-06-22,80166,7962,"[""Charger"", ""Headphones""]",1650.12,"{""seasonal"": ""27%""}",254663,0,Europe +2024-09-04,80167,6032,"[""Headphones"", ""Tablet"", ""Laptop""]",173.06,{},152985,0,Asia +2024-12-02,80168,87,"[""Tablet"", ""Phone""]",4501.47,"{""seasonal"": ""13%""}",23708,0,Asia +2024-11-11,80169,3493,"[""Wireless Mouse"", ""Tablet""]",3619.19,"{""loyalty"": ""18%""}",173607,0,Africa +2023-11-04,80170,3255,"[""Phone""]",3990.12,"{""loyalty"": ""21%""}",38208,1,South America +2024-08-27,80171,1998,"[""Charger"", ""Tablet""]",2106.97,"{""promo"": ""6%""}",218635,0,South America +2023-07-28,80172,3501,"[""Charger"", ""Laptop"", ""Monitor""]",3679.9,"{"""": ""5%""}",23009,0,Europe +2023-07-06,80173,115,"[""Charger"", ""Keyboard"", ""Headphones""]",978.05,"{""loyalty"": ""9%""}",176870,0,Africa +2023-10-11,80174,391,"[""Laptop""]",1221.52,"{""seasonal"": ""21%""}",277791,0,South America +2024-06-17,80175,7081,"[""Phone"", ""Headphones""]",3841.89,{},226399,1,Europe +2024-01-14,80176,7871,"[""Monitor""]",2812.05,{},185030,1,Europe +2024-10-31,80177,1604,"[""Tablet""]",4451.55,{},90510,0,Africa +2023-05-02,80178,3771,"[""Headphones""]",4159.12,"{""seasonal"": ""25%""}",278807,0,Africa +2023-11-05,80179,4236,"[""Phone"", ""Tablet"", ""Charger""]",1635.91,{},221291,0,Asia +2023-12-14,80180,9104,"[""Tablet"", ""Monitor"", ""Charger""]",168.15,{},98413,1,Asia +2023-03-19,80181,5940,"[""Headphones"", ""Monitor""]",1661.75,{},248594,0,North America +2023-02-10,80182,7670,"[""Keyboard""]",2951.83,{},62545,1,Asia +2023-08-08,80183,9875,"[""Charger""]",4522.18,"{""promo"": ""14%""}",72565,1,South America +2024-07-16,80184,1458,"[""Phone""]",663.49,"{""loyalty"": ""18%""}",291626,1,Africa +2024-06-03,80185,8528,"[""Monitor""]",2149.05,{},246539,1,South America +2024-12-24,80186,4286,"[""Headphones"", ""Keyboard""]",897.49,{},297600,0,North America +2023-03-05,80187,4666,"[""Headphones""]",4549.46,{},264992,0,South America +2023-10-09,80188,8067,"[""Tablet"", ""Headphones""]",3300.61,"{""seasonal"": ""6%""}",53616,0,Africa +2023-05-04,80189,4017,"[""Keyboard"", ""Headphones""]",2700.08,{},108704,0,Asia +2024-09-25,80190,5609,"[""Wireless Mouse""]",3683.73,{},42089,0,Europe +2024-08-05,80191,4941,"[""Phone"", ""Charger"", ""Laptop""]",4484.52,{},236776,0,South America +2024-07-20,80192,611,"[""Charger""]",4308.74,"{""loyalty"": ""30%""}",27677,0,Asia +2024-05-09,80193,9829,"[""Tablet""]",4048.51,"{""seasonal"": ""23%""}",241691,0,South America +2024-03-25,80194,7433,"[""Laptop"", ""Wireless Mouse""]",1862.26,"{""promo"": ""25%""}",262855,0,North America +2023-08-09,80195,8943,"[""Keyboard"", ""Monitor""]",2816.78,"{""promo"": ""22%""}",175169,1,Europe +2024-01-07,80196,4953,"[""Tablet"", ""Monitor""]",4132.08,"{"""": ""9%""}",252098,0,Africa +2023-10-24,80197,9100,"[""Phone"", ""Charger""]",4773.76,{},205242,0,Europe +2024-05-22,80198,405,"[""Keyboard""]",2459.71,"{""loyalty"": ""23%""}",193093,1,North America +2023-02-06,80199,2894,"[""Monitor"", ""Wireless Mouse""]",2446.75,"{"""": ""22%""}",43756,0,Asia +2023-07-26,80200,5262,"[""Laptop""]",363.87,"{""promo"": ""18%""}",10577,1,Africa +2024-07-14,80201,7020,"[""Tablet"", ""Keyboard"", ""Charger""]",4156.66,{},18976,0,North America +2023-10-23,80202,2762,"[""Keyboard""]",1064.74,"{""loyalty"": ""8%""}",262251,0,Europe +2024-03-13,80203,44,"[""Charger"", ""Keyboard"", ""Headphones""]",698.22,"{""seasonal"": ""6%""}",286837,0,Africa +2024-11-28,80204,119,"[""Charger"", ""Monitor""]",3874.12,{},284274,0,Europe +2023-11-04,80205,9694,"[""Tablet""]",4740.56,"{""seasonal"": ""29%""}",37570,0,North America +2023-01-31,80206,2082,"[""Wireless Mouse""]",2412.44,{},161719,1,Europe +2023-10-16,80207,522,"[""Monitor""]",4791.81,"{""seasonal"": ""18%""}",180460,0,South America +2024-02-05,80208,4113,"[""Laptop"", ""Tablet"", ""Phone""]",4761.15,"{""loyalty"": ""14%""}",241260,1,Europe +2023-04-25,80209,9507,"[""Wireless Mouse"", ""Charger""]",469.76,{},6967,1,North America +2023-05-29,80210,8049,"[""Headphones""]",2062.76,{},59909,0,North America +2024-10-16,80211,4912,"[""Charger"", ""Phone""]",2986.96,"{"""": ""21%""}",142814,1,North America +2023-08-12,80212,3994,"[""Monitor"", ""Phone""]",4006.44,{},268858,1,Asia +2024-05-28,80213,1040,"[""Wireless Mouse""]",80.44,{},181121,0,South America +2024-02-21,80214,1920,"[""Keyboard"", ""Laptop""]",4554.06,"{""promo"": ""5%""}",95843,1,North America +2024-10-20,80215,1604,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3919.17,{},150503,0,North America +2023-07-28,80216,4786,"[""Tablet""]",2916.69,"{""promo"": ""30%""}",68705,1,Asia +2023-03-06,80217,7407,"[""Laptop"", ""Keyboard"", ""Monitor""]",2999.0,{},220611,0,Asia +2024-12-05,80218,9718,"[""Tablet""]",1798.15,"{""loyalty"": ""8%""}",270159,0,Europe +2023-09-23,80219,3722,"[""Monitor""]",4378.54,{},253122,1,North America +2023-04-28,80220,9184,"[""Headphones""]",1517.24,"{""loyalty"": ""15%""}",104492,1,Africa +2024-06-07,80221,9930,"[""Monitor"", ""Tablet"", ""Keyboard""]",2233.47,{},95047,1,Africa +2024-02-26,80222,5390,"[""Headphones"", ""Laptop"", ""Monitor""]",3921.07,"{"""": ""11%""}",61330,1,Asia +2023-05-02,80223,5641,"[""Phone"", ""Monitor"", ""Headphones""]",4816.54,"{""loyalty"": ""12%""}",259481,1,Europe +2023-06-09,80224,107,"[""Phone""]",3364.86,{},181776,1,North America +2023-11-24,80225,4397,"[""Tablet"", ""Charger"", ""Keyboard""]",1063.22,"{""loyalty"": ""20%""}",8125,1,Africa +2024-10-30,80226,4597,"[""Phone"", ""Charger"", ""Tablet""]",4482.14,"{""loyalty"": ""29%""}",127061,1,North America +2023-08-03,80227,3683,"[""Laptop"", ""Tablet"", ""Phone""]",4051.24,{},275341,1,Europe +2024-06-25,80228,6958,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1721.13,{},173396,1,Asia +2024-10-19,80229,7665,"[""Headphones""]",2947.89,"{""promo"": ""12%""}",45790,1,Europe +2023-08-18,80230,2016,"[""Monitor"", ""Tablet"", ""Charger""]",1045.34,{},13480,0,Asia +2023-02-09,80231,9653,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1661.77,{},214156,1,North America +2024-02-01,80232,2943,"[""Wireless Mouse""]",84.45,"{"""": ""7%""}",140721,1,North America +2024-01-10,80233,4853,"[""Headphones""]",3751.34,{},60253,0,Asia +2023-09-29,80234,1109,"[""Keyboard"", ""Charger"", ""Phone""]",3332.76,{},273694,0,Europe +2024-08-30,80235,4049,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",704.93,{},276651,0,North America +2023-02-17,80236,6995,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4817.47,{},123126,1,South America +2024-07-26,80237,6168,"[""Wireless Mouse""]",2880.85,"{"""": ""13%""}",112826,0,Europe +2023-04-06,80238,4149,"[""Laptop"", ""Keyboard"", ""Monitor""]",3482.49,{},225757,0,South America +2024-04-15,80239,101,"[""Keyboard"", ""Tablet"", ""Headphones""]",3971.09,"{""seasonal"": ""11%""}",80304,1,North America +2023-08-29,80240,9404,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4106.07,"{""loyalty"": ""25%""}",259300,1,Africa +2024-04-21,80241,7938,"[""Keyboard"", ""Laptop""]",3552.46,{},89506,0,Europe +2024-09-23,80242,4293,"[""Headphones""]",2354.93,"{""seasonal"": ""23%""}",68790,1,Africa +2024-02-13,80243,1510,"[""Charger""]",2972.84,"{""promo"": ""9%""}",149353,1,South America +2023-09-21,80244,2034,"[""Headphones""]",3566.84,"{"""": ""15%""}",13794,1,North America +2024-08-20,80245,8459,"[""Phone"", ""Keyboard"", ""Headphones""]",4441.45,"{""seasonal"": ""9%""}",172107,1,Asia +2023-11-04,80246,3877,"[""Charger"", ""Monitor"", ""Keyboard""]",570.3,"{""promo"": ""16%""}",280089,1,North America +2023-09-22,80247,3327,"[""Wireless Mouse""]",1024.2,{},102870,0,North America +2023-07-26,80248,1923,"[""Laptop"", ""Charger""]",4167.89,{},202318,0,Europe +2023-07-10,80249,8795,"[""Charger"", ""Tablet""]",275.19,{},185073,1,South America +2023-08-05,80250,4024,"[""Wireless Mouse""]",969.64,{},200332,1,South America +2024-10-11,80251,4856,"[""Phone"", ""Tablet""]",4949.53,{},150854,0,Asia +2023-12-18,80252,184,"[""Charger"", ""Keyboard""]",1902.3,{},152382,1,North America +2024-08-19,80253,1345,"[""Tablet"", ""Wireless Mouse""]",2455.28,{},299651,0,Africa +2024-12-31,80254,9109,"[""Laptop"", ""Charger""]",1952.43,"{"""": ""5%""}",121495,0,Asia +2023-05-11,80255,8014,"[""Wireless Mouse""]",548.13,{},163334,1,North America +2023-06-14,80256,7504,"[""Phone""]",4680.48,"{""loyalty"": ""28%""}",86671,0,Africa +2023-08-26,80257,8526,"[""Tablet"", ""Headphones""]",184.84,{},217059,1,South America +2024-03-07,80258,5694,"[""Keyboard"", ""Headphones""]",506.09,{},295216,0,South America +2024-10-23,80259,6064,"[""Tablet""]",2247.29,"{""loyalty"": ""10%""}",119142,1,Europe +2023-08-26,80260,9272,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1150.27,{},25434,0,Asia +2023-08-07,80261,2805,"[""Headphones""]",1099.32,{},41444,1,Europe +2024-04-21,80262,4828,"[""Keyboard"", ""Laptop""]",3567.1,{},228413,1,South America +2024-05-11,80263,5319,"[""Monitor""]",1900.39,"{""seasonal"": ""27%""}",34485,0,Asia +2024-03-30,80264,6033,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3274.41,"{""seasonal"": ""10%""}",276042,1,Africa +2023-12-02,80265,7488,"[""Tablet"", ""Laptop""]",2175.18,"{""loyalty"": ""23%""}",257705,1,Asia +2024-07-24,80266,6877,"[""Keyboard"", ""Headphones"", ""Tablet""]",2619.47,"{""seasonal"": ""22%""}",55703,0,Asia +2024-09-01,80267,9664,"[""Keyboard""]",4769.18,{},238389,0,Europe +2024-12-07,80268,160,"[""Charger"", ""Phone""]",2696.5,"{""seasonal"": ""21%""}",211416,1,Asia +2024-09-05,80269,9503,"[""Laptop""]",4968.41,"{""seasonal"": ""26%""}",87559,0,Europe +2023-02-25,80270,7122,"[""Monitor""]",4614.85,{},287987,1,Africa +2024-02-11,80271,1951,"[""Tablet"", ""Laptop""]",2005.22,"{"""": ""26%""}",49719,1,Asia +2024-07-19,80272,9660,"[""Phone"", ""Monitor""]",4578.72,{},217829,1,Africa +2024-01-31,80273,8008,"[""Monitor"", ""Headphones""]",1064.63,{},195835,0,Asia +2023-04-24,80274,5662,"[""Phone"", ""Headphones""]",2231.88,{},60238,0,South America +2024-03-25,80275,997,"[""Laptop""]",2161.53,"{"""": ""10%""}",93460,1,Europe +2023-09-12,80276,4558,"[""Wireless Mouse"", ""Tablet""]",3535.18,{},268468,0,Asia +2024-03-12,80277,5507,"[""Phone"", ""Wireless Mouse""]",197.57,"{""seasonal"": ""20%""}",282444,0,Europe +2023-11-08,80278,1138,"[""Headphones"", ""Keyboard""]",1056.95,{},269760,1,North America +2023-01-06,80279,7836,"[""Monitor"", ""Charger""]",818.42,"{""promo"": ""6%""}",90790,1,Europe +2024-08-22,80280,8554,"[""Keyboard"", ""Charger""]",668.08,"{""loyalty"": ""28%""}",34177,0,Asia +2023-07-21,80281,5179,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3044.87,"{"""": ""11%""}",40683,1,Asia +2023-11-01,80282,215,"[""Laptop""]",3111.25,{},262141,0,Africa +2023-01-17,80283,7034,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2872.4,"{""promo"": ""21%""}",188048,0,Africa +2023-09-14,80284,3286,"[""Laptop""]",898.35,"{"""": ""20%""}",274824,0,Europe +2023-12-15,80285,321,"[""Charger"", ""Phone"", ""Headphones""]",2959.83,{},182808,1,Africa +2023-11-26,80286,2162,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2516.48,{},174967,1,Asia +2023-10-28,80287,4880,"[""Monitor""]",4269.75,{},188022,0,Africa +2023-03-15,80288,1934,"[""Headphones"", ""Keyboard""]",1747.87,{},145138,1,South America +2023-09-30,80289,2421,"[""Laptop"", ""Keyboard""]",4703.38,{},179941,0,North America +2023-02-05,80290,1217,"[""Keyboard"", ""Tablet""]",62.27,"{"""": ""13%""}",37328,0,Asia +2023-02-19,80291,4653,"[""Wireless Mouse"", ""Tablet""]",3365.84,"{"""": ""28%""}",124237,1,North America +2024-11-05,80292,4870,"[""Tablet""]",4983.16,{},265328,0,Africa +2024-03-27,80293,3746,"[""Phone"", ""Monitor""]",1121.3,"{""promo"": ""17%""}",195270,1,North America +2023-07-12,80294,4960,"[""Keyboard"", ""Laptop"", ""Headphones""]",4930.03,{},176075,1,Asia +2023-09-19,80295,348,"[""Monitor"", ""Keyboard""]",2209.22,{},191750,0,South America +2024-05-04,80296,3540,"[""Monitor"", ""Laptop"", ""Phone""]",2189.61,{},112915,0,Asia +2024-01-29,80297,2590,"[""Charger"", ""Headphones"", ""Monitor""]",4662.97,{},231347,0,Asia +2024-03-14,80298,3725,"[""Phone"", ""Monitor"", ""Laptop""]",2415.17,"{""promo"": ""5%""}",268834,0,Asia +2024-10-23,80299,2214,"[""Monitor""]",3230.81,{},87567,1,North America +2024-12-05,80300,4533,"[""Headphones""]",4858.52,{},107778,0,Asia +2023-11-11,80301,9292,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1124.06,{},141193,1,South America +2023-01-18,80302,6847,"[""Tablet""]",2822.55,{},210695,1,South America +2023-05-26,80303,975,"[""Tablet""]",4848.86,{},7598,0,Asia +2023-12-22,80304,8392,"[""Monitor""]",2273.83,"{""promo"": ""15%""}",131187,1,Europe +2024-04-30,80305,1462,"[""Phone""]",1310.26,"{""promo"": ""7%""}",118353,0,Africa +2023-11-09,80306,9322,"[""Headphones"", ""Laptop"", ""Monitor""]",3493.46,{},283129,0,Europe +2023-11-22,80307,4694,"[""Wireless Mouse""]",3618.07,"{""promo"": ""5%""}",160240,1,North America +2024-02-01,80308,3649,"[""Headphones""]",1748.91,"{""promo"": ""9%""}",114304,0,Europe +2023-08-18,80309,248,"[""Monitor"", ""Tablet""]",2883.18,"{""promo"": ""7%""}",150385,0,Asia +2024-08-16,80310,9966,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3366.02,{},50094,0,Asia +2024-03-15,80311,5067,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4972.44,{},208750,1,Africa +2023-08-03,80312,9565,"[""Keyboard"", ""Phone""]",3646.48,"{"""": ""8%""}",154934,1,Africa +2024-04-22,80313,4205,"[""Tablet""]",310.68,{},251492,1,Europe +2024-09-08,80314,9629,"[""Headphones"", ""Charger"", ""Tablet""]",2128.46,"{""promo"": ""24%""}",142915,0,Asia +2023-05-13,80315,7659,"[""Monitor"", ""Laptop""]",207.69,{},98445,1,Africa +2024-06-08,80316,3659,"[""Headphones"", ""Monitor""]",3701.87,"{""loyalty"": ""27%""}",298733,0,Asia +2024-06-07,80317,3333,"[""Charger"", ""Headphones""]",1514.11,{},268602,1,Asia +2024-06-12,80318,7154,"[""Monitor""]",4349.59,"{""promo"": ""6%""}",225100,0,Africa +2023-07-31,80319,7663,"[""Monitor"", ""Headphones""]",2348.15,{},57494,1,Europe +2024-01-15,80320,6192,"[""Phone""]",789.93,{},272103,1,South America +2024-11-29,80321,6345,"[""Keyboard"", ""Laptop""]",2890.18,{},152440,1,Asia +2023-03-04,80322,2989,"[""Phone""]",4213.46,"{""loyalty"": ""28%""}",2328,1,South America +2024-10-06,80323,7286,"[""Laptop"", ""Monitor"", ""Charger""]",3293.93,"{""promo"": ""16%""}",14795,1,Europe +2024-06-30,80324,2763,"[""Charger"", ""Headphones""]",271.77,{},89076,1,Africa +2023-04-28,80325,6552,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1342.74,{},290745,0,Asia +2023-10-23,80326,4226,"[""Keyboard"", ""Headphones""]",2626.59,"{""loyalty"": ""17%""}",29638,0,Europe +2024-12-24,80327,6209,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",735.71,"{""loyalty"": ""30%""}",161448,1,Africa +2024-01-21,80328,4736,"[""Laptop"", ""Headphones""]",2671.94,"{""promo"": ""8%""}",221910,0,Europe +2023-02-23,80329,2060,"[""Headphones""]",2784.71,"{""loyalty"": ""19%""}",140848,1,Europe +2023-07-06,80330,9010,"[""Tablet"", ""Laptop""]",3163.21,{},143274,0,North America +2024-04-15,80331,3423,"[""Wireless Mouse""]",676.94,{},271937,1,South America +2024-05-07,80332,2497,"[""Tablet"", ""Charger"", ""Headphones""]",4317.99,"{""promo"": ""19%""}",62275,1,South America +2023-12-11,80333,8675,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2473.15,"{""promo"": ""22%""}",55499,1,Europe +2024-01-16,80334,4191,"[""Monitor""]",719.94,"{""seasonal"": ""21%""}",200571,0,South America +2023-07-15,80335,462,"[""Keyboard"", ""Tablet""]",659.56,{},137929,1,South America +2024-10-29,80336,6736,"[""Headphones""]",2960.94,"{""seasonal"": ""27%""}",107378,1,South America +2024-12-02,80337,1751,"[""Headphones"", ""Laptop""]",3115.19,"{""seasonal"": ""17%""}",109726,0,South America +2023-10-09,80338,8849,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4272.71,{},273689,1,South America +2024-11-01,80339,6788,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1233.69,{},197947,1,North America +2024-05-23,80340,8317,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2068.76,"{""promo"": ""27%""}",258350,0,Asia +2024-04-15,80341,3888,"[""Charger"", ""Tablet""]",1965.05,"{"""": ""11%""}",101920,0,Africa +2024-05-25,80342,5667,"[""Keyboard""]",3487.29,{},99620,0,South America +2023-07-24,80343,8657,"[""Keyboard"", ""Wireless Mouse""]",3276.97,{},289998,0,South America +2023-02-28,80344,3095,"[""Headphones"", ""Keyboard"", ""Tablet""]",4558.13,"{""loyalty"": ""8%""}",246850,0,Europe +2024-07-02,80345,6298,"[""Keyboard"", ""Phone""]",4448.01,"{""loyalty"": ""23%""}",242131,0,Europe +2023-08-12,80346,495,"[""Phone"", ""Monitor""]",343.3,"{""seasonal"": ""30%""}",278074,0,Asia +2023-09-28,80347,6659,"[""Keyboard""]",4884.14,{},203486,0,Asia +2024-06-21,80348,577,"[""Wireless Mouse""]",715.21,{},8800,1,South America +2024-02-03,80349,4378,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4828.53,"{"""": ""6%""}",225488,1,North America +2023-11-03,80350,1401,"[""Keyboard""]",1481.84,{},2871,1,South America +2024-10-31,80351,3337,"[""Tablet"", ""Monitor"", ""Headphones""]",1607.77,{},293591,0,South America +2023-07-19,80352,273,"[""Charger"", ""Tablet""]",1772.81,{},9848,1,Asia +2024-06-02,80353,1379,"[""Headphones"", ""Charger""]",113.65,{},177599,1,Europe +2024-03-14,80354,8888,"[""Headphones"", ""Keyboard""]",829.54,{},36966,0,Asia +2024-09-04,80355,3069,"[""Monitor"", ""Phone"", ""Charger""]",74.17,{},141413,1,Asia +2023-11-25,80356,8556,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4014.3,"{""promo"": ""12%""}",131880,0,Europe +2024-06-12,80357,4785,"[""Keyboard""]",2499.37,{},188399,0,Asia +2024-09-19,80358,2619,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",116.59,{},111640,0,South America +2023-02-05,80359,1350,"[""Monitor"", ""Phone"", ""Laptop""]",4948.98,"{"""": ""30%""}",162827,0,Asia +2023-12-03,80360,1489,"[""Laptop""]",2416.52,"{""loyalty"": ""9%""}",113194,0,Europe +2024-11-14,80361,6335,"[""Wireless Mouse"", ""Laptop""]",2553.32,"{""seasonal"": ""15%""}",198281,1,Africa +2024-08-21,80362,5417,"[""Laptop"", ""Monitor""]",4395.11,{},61817,1,North America +2023-04-15,80363,8954,"[""Laptop"", ""Tablet""]",796.3,{},128082,1,Asia +2023-08-30,80364,9216,"[""Charger""]",3903.29,"{""seasonal"": ""10%""}",157158,0,South America +2024-09-19,80365,7630,"[""Laptop"", ""Monitor"", ""Headphones""]",3778.45,"{""seasonal"": ""15%""}",70878,0,South America +2024-07-27,80366,7737,"[""Wireless Mouse"", ""Tablet""]",4833.1,"{""promo"": ""17%""}",76296,0,South America +2023-05-19,80367,8606,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2552.86,{},247200,1,Asia +2023-06-25,80368,4384,"[""Charger"", ""Monitor""]",3946.02,{},167224,0,South America +2024-02-24,80369,7141,"[""Headphones"", ""Keyboard""]",3806.17,{},77728,1,South America +2023-12-31,80370,8359,"[""Tablet"", ""Charger""]",253.11,{},180329,1,Asia +2024-11-07,80371,545,"[""Headphones"", ""Wireless Mouse""]",1086.7,{},109823,1,Asia +2024-07-03,80372,3030,"[""Keyboard"", ""Charger"", ""Monitor""]",2174.76,{},79215,1,North America +2024-01-25,80373,6,"[""Charger""]",2922.01,"{"""": ""24%""}",153195,0,North America +2024-03-12,80374,5016,"[""Phone"", ""Wireless Mouse""]",448.93,{},46494,1,North America +2024-06-19,80375,2128,"[""Laptop"", ""Keyboard"", ""Tablet""]",3262.62,"{""seasonal"": ""21%""}",71172,1,Europe +2024-04-11,80376,9382,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",2855.66,{},107653,1,South America +2024-12-25,80377,1187,"[""Monitor"", ""Keyboard""]",1200.98,"{""promo"": ""21%""}",38453,1,Europe +2024-08-12,80378,216,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1511.68,{},80541,0,North America +2024-06-15,80379,8519,"[""Charger"", ""Tablet""]",1310.55,"{""seasonal"": ""16%""}",74460,0,Asia +2024-03-13,80380,4344,"[""Tablet"", ""Headphones""]",4002.56,{},1140,0,Africa +2024-03-22,80381,405,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4909.45,"{""seasonal"": ""5%""}",47301,1,Africa +2023-05-29,80382,3667,"[""Keyboard""]",3880.47,"{""loyalty"": ""24%""}",37441,0,Africa +2024-04-06,80383,6115,"[""Laptop""]",850.76,{},131117,0,Europe +2024-12-07,80384,2263,"[""Keyboard"", ""Wireless Mouse""]",3666.23,{},112438,1,Africa +2023-06-09,80385,9642,"[""Tablet"", ""Keyboard"", ""Charger""]",1818.7,{},141997,1,Europe +2024-02-27,80386,1428,"[""Charger"", ""Headphones""]",1498.49,{},44394,0,North America +2024-04-29,80387,9036,"[""Laptop"", ""Charger"", ""Phone""]",4904.19,{},32367,0,Africa +2023-11-18,80388,6089,"[""Tablet"", ""Laptop"", ""Phone""]",2049.51,"{""seasonal"": ""14%""}",79181,1,South America +2023-06-01,80389,6846,"[""Laptop"", ""Monitor""]",3103.83,{},29268,0,Europe +2023-07-02,80390,3120,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2387.47,{},293704,0,Asia +2024-02-27,80391,1503,"[""Tablet""]",860.27,{},30403,0,Europe +2024-04-30,80392,6076,"[""Keyboard""]",4291.23,{},133780,0,Africa +2023-09-20,80393,3863,"[""Headphones"", ""Charger""]",3425.69,"{""promo"": ""10%""}",30351,0,Europe +2023-05-30,80394,591,"[""Charger"", ""Headphones""]",4841.72,{},116684,1,Africa +2023-11-20,80395,1349,"[""Headphones"", ""Charger"", ""Keyboard""]",1005.3,{},152870,1,Africa +2024-11-04,80396,2794,"[""Monitor"", ""Charger"", ""Laptop""]",3559.55,"{"""": ""16%""}",192944,1,South America +2024-01-14,80397,6802,"[""Tablet""]",2587.96,"{""seasonal"": ""14%""}",175851,1,Asia +2024-07-20,80398,9377,"[""Tablet"", ""Wireless Mouse""]",3507.7,"{""promo"": ""27%""}",93227,0,Europe +2024-06-10,80399,4203,"[""Headphones"", ""Laptop"", ""Keyboard""]",4892.13,{},185862,1,South America +2024-11-25,80400,1462,"[""Keyboard"", ""Tablet"", ""Monitor""]",799.42,{},172757,0,South America +2023-08-26,80401,7058,"[""Monitor""]",672.41,{},280318,1,Africa +2024-03-08,80402,7519,"[""Laptop"", ""Wireless Mouse""]",2421.65,{},22739,0,Africa +2024-01-21,80403,1213,"[""Tablet""]",3121.65,"{"""": ""27%""}",42147,0,Europe +2024-08-31,80404,4420,"[""Laptop"", ""Keyboard"", ""Charger""]",1352.67,{},157493,1,Africa +2024-01-25,80405,1892,"[""Laptop"", ""Headphones"", ""Charger""]",2688.63,"{"""": ""13%""}",66393,0,Africa +2023-08-13,80406,297,"[""Laptop"", ""Phone"", ""Headphones""]",1570.47,"{"""": ""30%""}",284244,0,South America +2024-01-23,80407,5620,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",95.75,"{""seasonal"": ""6%""}",172342,0,Africa +2023-04-21,80408,9232,"[""Monitor"", ""Keyboard""]",4473.71,{},187351,0,Asia +2024-01-28,80409,1547,"[""Charger"", ""Laptop"", ""Phone""]",3803.77,"{""seasonal"": ""9%""}",164601,0,Asia +2023-11-14,80410,2206,"[""Monitor"", ""Headphones""]",1676.06,{},47004,1,South America +2023-08-27,80411,1822,"[""Monitor"", ""Phone""]",4896.52,{},201268,1,Africa +2023-07-13,80412,3533,"[""Keyboard"", ""Monitor"", ""Phone""]",4569.03,"{""promo"": ""29%""}",290353,0,North America +2023-05-22,80413,999,"[""Headphones"", ""Monitor"", ""Charger""]",2484.55,{},132061,1,North America +2023-04-02,80414,3135,"[""Keyboard"", ""Monitor""]",302.83,{},206279,0,South America +2023-11-05,80415,8010,"[""Tablet""]",2510.81,"{""promo"": ""9%""}",159717,1,South America +2023-10-10,80416,92,"[""Wireless Mouse"", ""Charger""]",3977.85,{},127040,0,Asia +2023-03-13,80417,1349,"[""Tablet""]",4295.3,{},2148,1,Europe +2023-04-06,80418,4948,"[""Charger""]",1822.17,{},45348,1,North America +2024-01-21,80419,3367,"[""Laptop""]",2327.17,{},7310,1,Asia +2023-02-17,80420,484,"[""Charger"", ""Headphones"", ""Monitor""]",752.03,{},146555,0,North America +2023-11-16,80421,692,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1767.67,{},91932,0,Asia +2023-07-15,80422,811,"[""Charger"", ""Keyboard"", ""Headphones""]",1873.66,"{""seasonal"": ""16%""}",10557,0,South America +2024-02-26,80423,2544,"[""Headphones"", ""Monitor""]",332.74,{},292696,0,Africa +2023-02-25,80424,3119,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4059.06,{},293099,1,Africa +2024-11-16,80425,9789,"[""Wireless Mouse""]",246.87,"{""promo"": ""8%""}",156489,0,South America +2024-09-23,80426,8776,"[""Keyboard""]",4887.96,"{"""": ""11%""}",48857,1,Asia +2023-03-29,80427,7825,"[""Wireless Mouse""]",3469.34,"{"""": ""28%""}",125320,1,North America +2023-11-21,80428,5855,"[""Charger"", ""Monitor"", ""Tablet""]",2282.98,{},127012,1,North America +2023-10-06,80429,1228,"[""Laptop"", ""Keyboard""]",929.79,{},274124,0,Asia +2024-01-13,80430,644,"[""Tablet"", ""Wireless Mouse""]",4463.44,"{""seasonal"": ""28%""}",138161,1,North America +2023-12-29,80431,9178,"[""Monitor"", ""Charger""]",3790.15,{},264304,0,North America +2023-11-17,80432,510,"[""Monitor""]",278.59,"{""seasonal"": ""21%""}",269142,0,North America +2023-07-06,80433,9998,"[""Wireless Mouse""]",1857.99,{},35769,0,Europe +2023-03-09,80434,7943,"[""Phone""]",4730.68,"{""loyalty"": ""23%""}",235459,1,Asia +2024-11-15,80435,9979,"[""Wireless Mouse""]",299.99,{},30696,1,Africa +2024-03-10,80436,5514,"[""Laptop""]",3993.39,{},93407,1,North America +2024-06-08,80437,7496,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2153.95,{},25773,1,Europe +2023-09-01,80438,7559,"[""Charger"", ""Monitor"", ""Phone""]",4819.1,{},292154,0,South America +2024-08-29,80439,4383,"[""Tablet""]",3676.56,{},159595,0,North America +2024-04-08,80440,1249,"[""Headphones"", ""Wireless Mouse""]",4825.39,"{"""": ""13%""}",11790,1,Asia +2023-01-15,80441,73,"[""Tablet"", ""Charger""]",4362.87,{},184457,1,North America +2023-12-23,80442,9851,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3126.72,"{""promo"": ""23%""}",139764,0,North America +2023-06-17,80443,7545,"[""Charger"", ""Headphones""]",4790.67,{},284052,1,Europe +2024-01-01,80444,8692,"[""Tablet"", ""Phone"", ""Keyboard""]",876.2,{},149367,1,Africa +2024-12-02,80445,8078,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2993.18,"{"""": ""14%""}",239960,0,North America +2023-04-20,80446,539,"[""Headphones""]",372.5,{},30967,0,South America +2024-08-16,80447,6999,"[""Charger""]",784.85,{},21512,0,South America +2023-01-07,80448,4881,"[""Headphones"", ""Keyboard""]",1144.93,"{""promo"": ""7%""}",218448,0,North America +2024-12-29,80449,3465,"[""Headphones"", ""Phone""]",2243.54,"{""loyalty"": ""18%""}",188000,1,North America +2024-12-26,80450,160,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1073.84,{},104163,1,Asia +2023-11-22,80451,3713,"[""Monitor""]",4890.7,"{"""": ""23%""}",170693,0,Africa +2024-06-16,80452,3918,"[""Monitor"", ""Keyboard""]",314.4,{},69692,1,North America +2023-12-04,80453,405,"[""Keyboard""]",3161.17,{},50764,0,South America +2023-09-06,80454,7533,"[""Charger""]",3144.07,{},178082,0,Europe +2024-10-27,80455,358,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",1233.33,{},132153,0,Asia +2024-07-13,80456,1309,"[""Laptop"", ""Charger""]",4367.86,{},12972,1,Africa +2023-01-15,80457,7655,"[""Monitor"", ""Laptop"", ""Headphones""]",3527.24,{},287030,0,Africa +2023-02-13,80458,6628,"[""Keyboard"", ""Tablet"", ""Charger""]",968.5,"{""seasonal"": ""27%""}",59006,1,Europe +2024-01-06,80459,2486,"[""Charger""]",4251.35,"{"""": ""23%""}",54527,1,Asia +2024-03-31,80460,3695,"[""Wireless Mouse"", ""Charger""]",3235.06,{},252193,0,Europe +2023-07-12,80461,7271,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1762.32,{},7979,0,Asia +2024-05-25,80462,4217,"[""Wireless Mouse""]",4933.4,"{"""": ""17%""}",81619,0,Asia +2024-04-13,80463,8730,"[""Charger"", ""Keyboard"", ""Monitor""]",3759.05,{},224463,0,Africa +2023-03-08,80464,7251,"[""Charger""]",3137.55,{},281344,0,Europe +2024-01-12,80465,8026,"[""Charger"", ""Monitor""]",3962.08,{},127204,0,South America +2023-08-14,80466,9631,"[""Wireless Mouse"", ""Laptop""]",4296.52,"{""promo"": ""29%""}",154405,0,Asia +2024-01-13,80467,6153,"[""Tablet""]",2022.5,{},43458,1,Africa +2023-05-23,80468,8620,"[""Phone""]",4671.19,"{""promo"": ""25%""}",155887,1,Africa +2024-12-02,80469,3268,"[""Phone"", ""Monitor""]",4973.66,{},189553,1,North America +2023-09-01,80470,4804,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4150.97,{},104601,0,Asia +2023-12-01,80471,9274,"[""Headphones""]",343.83,{},220510,0,Europe +2024-06-08,80472,3303,"[""Keyboard"", ""Charger"", ""Phone""]",4795.0,"{"""": ""26%""}",152053,0,Europe +2023-10-19,80473,6867,"[""Keyboard""]",2807.24,"{""promo"": ""7%""}",122721,0,Africa +2023-04-23,80474,2258,"[""Phone"", ""Charger""]",3821.51,{},212378,1,South America +2024-12-05,80475,3512,"[""Headphones""]",4748.15,"{""loyalty"": ""25%""}",28388,1,Asia +2024-12-26,80476,7455,"[""Monitor""]",203.14,{},189013,0,Asia +2024-02-03,80477,1829,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2249.59,{},281205,0,Asia +2024-05-15,80478,287,"[""Laptop"", ""Tablet""]",3373.5,{},135753,1,North America +2024-09-04,80479,6884,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1378.7,"{""seasonal"": ""6%""}",115134,0,South America +2024-04-25,80480,1225,"[""Monitor"", ""Wireless Mouse""]",1404.91,"{"""": ""24%""}",247595,0,South America +2023-03-19,80481,1345,"[""Monitor""]",2693.09,{},157408,1,Europe +2023-09-21,80482,6440,"[""Keyboard"", ""Laptop""]",2428.69,"{""loyalty"": ""15%""}",234506,0,Africa +2024-03-20,80483,4087,"[""Headphones""]",3912.2,"{""seasonal"": ""18%""}",84544,1,South America +2024-09-02,80484,7141,"[""Wireless Mouse"", ""Charger""]",3041.13,"{"""": ""30%""}",66183,1,South America +2023-12-20,80485,9493,"[""Monitor"", ""Phone""]",3145.01,{},244098,1,South America +2023-12-26,80486,596,"[""Headphones""]",3734.66,"{""seasonal"": ""22%""}",76023,1,South America +2023-06-27,80487,6794,"[""Headphones""]",2224.32,"{""loyalty"": ""26%""}",144676,0,Africa +2023-03-07,80488,6846,"[""Tablet"", ""Phone"", ""Monitor""]",1353.69,{},288535,1,South America +2024-01-13,80489,5200,"[""Wireless Mouse""]",4794.95,"{""promo"": ""26%""}",186987,1,South America +2023-06-05,80490,4804,"[""Charger""]",3517.33,{},275872,1,South America +2023-11-18,80491,8442,"[""Wireless Mouse""]",3305.97,"{"""": ""15%""}",268854,0,Europe +2023-01-22,80492,7476,"[""Phone"", ""Laptop""]",2005.87,"{"""": ""7%""}",96304,0,Africa +2023-08-10,80493,6257,"[""Phone"", ""Wireless Mouse""]",3689.45,"{""promo"": ""11%""}",260330,1,South America +2023-09-02,80494,2454,"[""Monitor"", ""Wireless Mouse""]",3204.06,{},240267,0,North America +2024-09-15,80495,8075,"[""Laptop"", ""Monitor"", ""Keyboard""]",2531.76,"{""loyalty"": ""21%""}",204918,1,Asia +2024-11-03,80496,6429,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4423.5,"{""promo"": ""30%""}",264780,1,South America +2023-12-22,80497,5043,"[""Phone""]",732.5,{},216757,0,South America +2024-09-29,80498,1880,"[""Keyboard""]",1217.92,{},33560,0,Africa +2023-09-17,80499,8031,"[""Keyboard""]",3404.13,"{"""": ""18%""}",240139,0,Europe +2023-05-12,80500,8858,"[""Charger"", ""Phone""]",3697.38,"{""loyalty"": ""27%""}",175114,1,Africa +2023-02-28,80501,1410,"[""Tablet"", ""Keyboard"", ""Charger""]",2696.11,"{"""": ""13%""}",46909,0,South America +2024-02-28,80502,4002,"[""Tablet"", ""Phone"", ""Headphones""]",2103.74,{},283536,0,Africa +2024-01-14,80503,8002,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",552.31,"{""loyalty"": ""8%""}",285614,1,South America +2023-10-14,80504,2667,"[""Tablet"", ""Keyboard""]",2309.37,"{"""": ""21%""}",249164,1,South America +2023-01-05,80505,4396,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2830.06,{},24487,0,Europe +2024-04-08,80506,1652,"[""Headphones"", ""Wireless Mouse""]",503.26,"{"""": ""19%""}",51070,1,Africa +2024-06-28,80507,2217,"[""Phone"", ""Headphones""]",4070.63,"{""seasonal"": ""12%""}",65323,1,North America +2023-12-16,80508,5671,"[""Monitor"", ""Keyboard"", ""Charger""]",4657.17,"{""loyalty"": ""12%""}",296161,0,South America +2024-11-24,80509,1848,"[""Tablet"", ""Monitor""]",4040.47,{},171036,1,Asia +2024-04-20,80510,5142,"[""Laptop""]",3971.76,{},223063,1,North America +2023-11-28,80511,9905,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",295.61,{},13133,1,Asia +2023-02-21,80512,4760,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",611.65,{},54697,1,South America +2024-01-11,80513,9296,"[""Keyboard""]",1514.63,"{"""": ""8%""}",41892,0,South America +2023-07-05,80514,1115,"[""Laptop""]",587.4,"{"""": ""13%""}",149712,1,Europe +2024-07-24,80515,9166,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3607.82,"{""loyalty"": ""13%""}",226765,1,Europe +2024-07-13,80516,2325,"[""Phone""]",2949.73,{},121369,0,South America +2023-10-10,80517,8657,"[""Monitor"", ""Phone""]",4117.04,{},184118,0,Africa +2023-12-13,80518,9247,"[""Monitor""]",3110.44,{},96442,1,South America +2023-09-12,80519,1425,"[""Headphones"", ""Phone"", ""Monitor""]",1058.61,"{""loyalty"": ""16%""}",55609,0,Africa +2023-07-31,80520,9322,"[""Tablet"", ""Laptop"", ""Charger""]",2055.32,"{""seasonal"": ""7%""}",291578,0,Africa +2023-03-27,80521,6192,"[""Monitor"", ""Headphones"", ""Laptop""]",3034.79,"{""promo"": ""22%""}",100935,1,South America +2024-08-22,80522,2279,"[""Keyboard""]",559.7,"{""promo"": ""19%""}",220145,1,North America +2023-08-27,80523,3217,"[""Laptop"", ""Phone""]",1562.92,{},71331,1,North America +2023-11-08,80524,8718,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",369.92,{},211668,0,South America +2023-11-27,80525,690,"[""Keyboard"", ""Monitor""]",2915.32,{},63572,0,Europe +2023-01-12,80526,6446,"[""Keyboard"", ""Tablet""]",4368.02,"{"""": ""30%""}",105679,0,Africa +2024-09-19,80527,634,"[""Charger""]",2032.05,{},61988,1,South America +2023-04-22,80528,9482,"[""Keyboard""]",3109.18,{},52654,0,Europe +2024-11-20,80529,4196,"[""Wireless Mouse""]",4299.16,"{""promo"": ""25%""}",192903,1,Africa +2024-07-02,80530,5713,"[""Keyboard"", ""Monitor""]",332.75,"{""promo"": ""10%""}",215929,0,South America +2024-05-14,80531,6471,"[""Monitor""]",4530.1,"{""seasonal"": ""18%""}",133197,1,Africa +2023-02-02,80532,6098,"[""Charger"", ""Headphones""]",1177.93,{},117261,1,South America +2023-11-13,80533,1760,"[""Tablet"", ""Charger""]",259.33,{},37779,1,Europe +2024-10-14,80534,263,"[""Headphones"", ""Wireless Mouse""]",1193.12,{},35096,1,Africa +2024-03-02,80535,765,"[""Monitor"", ""Headphones""]",2277.47,{},247672,1,North America +2024-12-28,80536,9048,"[""Laptop"", ""Keyboard"", ""Phone""]",234.7,{},281068,1,South America +2024-02-24,80537,964,"[""Wireless Mouse"", ""Tablet""]",2594.61,"{""loyalty"": ""8%""}",38006,0,North America +2024-12-22,80538,6469,"[""Phone"", ""Monitor"", ""Laptop""]",3420.17,"{""loyalty"": ""28%""}",236570,1,Asia +2024-01-29,80539,6048,"[""Phone""]",1910.35,{},42650,1,Europe +2023-09-11,80540,1205,"[""Keyboard""]",1244.37,{},282778,1,Asia +2024-11-01,80541,8578,"[""Monitor""]",135.02,{},101915,1,Asia +2024-11-08,80542,4666,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4507.75,{},198179,1,South America +2023-03-08,80543,2920,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4542.77,"{""loyalty"": ""10%""}",204691,0,Europe +2024-06-18,80544,5923,"[""Charger"", ""Phone"", ""Monitor""]",4051.14,"{""promo"": ""5%""}",149618,1,Africa +2023-07-27,80545,8736,"[""Wireless Mouse""]",600.71,"{""seasonal"": ""25%""}",284808,1,Asia +2023-10-20,80546,1780,"[""Keyboard""]",2817.64,{},177596,1,South America +2024-04-11,80547,1123,"[""Keyboard"", ""Charger"", ""Monitor""]",4097.32,"{""promo"": ""23%""}",11321,0,South America +2024-01-05,80548,995,"[""Phone""]",1062.82,{},208906,1,Africa +2023-09-02,80549,655,"[""Laptop""]",251.91,{},48714,1,Europe +2024-08-20,80550,8916,"[""Phone"", ""Charger""]",204.9,"{""promo"": ""20%""}",177181,1,South America +2024-06-28,80551,1500,"[""Tablet""]",2259.32,{},18991,0,Africa +2024-11-08,80552,8552,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4196.19,{},6772,0,South America +2024-07-29,80553,3542,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4249.12,{},240716,1,North America +2024-03-03,80554,4783,"[""Monitor"", ""Keyboard""]",2559.77,"{"""": ""9%""}",119377,0,Africa +2024-07-13,80555,5294,"[""Laptop"", ""Monitor"", ""Tablet""]",4206.72,"{""loyalty"": ""22%""}",229441,1,Asia +2023-03-08,80556,2782,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3641.76,"{""seasonal"": ""21%""}",84707,0,Asia +2024-01-30,80557,2445,"[""Monitor"", ""Phone"", ""Keyboard""]",2485.54,"{""loyalty"": ""30%""}",73856,1,Asia +2024-02-28,80558,4613,"[""Monitor"", ""Charger"", ""Headphones""]",582.87,"{""loyalty"": ""20%""}",93793,1,Asia +2023-10-13,80559,2691,"[""Headphones"", ""Phone"", ""Tablet""]",1393.86,"{""promo"": ""17%""}",129501,1,South America +2024-07-27,80560,9533,"[""Charger"", ""Headphones""]",528.47,{},187982,1,South America +2023-02-22,80561,399,"[""Keyboard"", ""Headphones""]",1897.49,"{""loyalty"": ""8%""}",69148,1,Europe +2024-09-01,80562,3264,"[""Monitor"", ""Wireless Mouse""]",2565.8,{},131387,0,North America +2024-09-25,80563,2844,"[""Wireless Mouse"", ""Phone""]",3783.69,{},255329,0,Asia +2023-05-13,80564,6173,"[""Keyboard"", ""Charger""]",3007.44,"{""seasonal"": ""28%""}",92089,0,Europe +2023-02-19,80565,9478,"[""Laptop"", ""Headphones"", ""Keyboard""]",4033.27,"{""seasonal"": ""18%""}",127271,0,Africa +2023-09-06,80566,826,"[""Phone""]",1045.33,"{""seasonal"": ""30%""}",125781,0,North America +2024-12-04,80567,5755,"[""Keyboard""]",3670.49,{},116251,1,South America +2024-04-13,80568,1126,"[""Wireless Mouse""]",2052.45,"{""seasonal"": ""27%""}",255534,1,North America +2023-07-04,80569,4573,"[""Laptop"", ""Headphones"", ""Phone""]",3525.49,"{""promo"": ""20%""}",131675,1,North America +2024-01-02,80570,7441,"[""Keyboard"", ""Phone""]",1661.55,{},89854,1,Africa +2023-11-10,80571,4445,"[""Phone""]",3575.76,{},194968,0,Asia +2023-02-14,80572,1902,"[""Phone"", ""Headphones""]",3885.18,"{""seasonal"": ""8%""}",113160,1,Africa +2024-10-15,80573,4377,"[""Laptop""]",4179.71,"{""promo"": ""30%""}",18743,0,South America +2024-12-28,80574,7458,"[""Tablet"", ""Phone"", ""Laptop""]",293.16,"{"""": ""16%""}",299428,0,Africa +2023-03-18,80575,8637,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2820.16,{},267033,1,Europe +2023-08-19,80576,2306,"[""Phone""]",4942.1,"{""loyalty"": ""6%""}",193362,1,South America +2023-10-10,80577,6485,"[""Keyboard"", ""Charger"", ""Phone""]",1353.61,"{""promo"": ""7%""}",265035,1,Asia +2023-10-07,80578,72,"[""Charger""]",1333.23,{},3413,1,Africa +2023-04-13,80579,4799,"[""Phone""]",86.76,{},195861,0,Asia +2024-04-25,80580,1083,"[""Wireless Mouse""]",4873.21,"{""seasonal"": ""21%""}",235002,0,North America +2024-02-29,80581,9006,"[""Charger""]",1159.04,"{""promo"": ""8%""}",61520,1,Europe +2024-06-14,80582,6937,"[""Phone"", ""Monitor"", ""Tablet""]",4410.46,{},229543,0,Africa +2023-09-17,80583,4056,"[""Keyboard""]",4791.81,{},148882,0,North America +2024-09-03,80584,4225,"[""Charger"", ""Laptop"", ""Tablet""]",2938.91,{},262191,0,South America +2023-05-01,80585,5993,"[""Phone""]",4339.86,"{"""": ""12%""}",250895,0,Europe +2023-07-12,80586,9235,"[""Tablet""]",434.37,{},137448,0,North America +2023-01-15,80587,4449,"[""Phone""]",4531.82,{},53095,1,North America +2024-02-23,80588,5094,"[""Keyboard""]",3163.65,"{"""": ""30%""}",33990,0,South America +2024-11-05,80589,8013,"[""Charger"", ""Laptop""]",4854.45,"{"""": ""18%""}",193457,1,Asia +2023-03-18,80590,2912,"[""Charger""]",938.49,"{""seasonal"": ""18%""}",132334,0,Africa +2023-06-20,80591,9961,"[""Tablet""]",2330.59,"{""loyalty"": ""27%""}",202450,0,North America +2023-01-08,80592,453,"[""Phone"", ""Monitor""]",3643.75,{},50365,0,South America +2024-04-02,80593,7039,"[""Charger"", ""Keyboard"", ""Laptop""]",4592.87,"{""seasonal"": ""18%""}",147182,1,Africa +2024-10-21,80594,6735,"[""Monitor"", ""Laptop""]",69.39,{},136798,0,Asia +2024-11-24,80595,5310,"[""Charger""]",3532.43,"{""loyalty"": ""21%""}",140878,0,South America +2023-08-23,80596,2601,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2012.78,"{""seasonal"": ""9%""}",111385,1,Europe +2024-11-12,80597,7101,"[""Phone"", ""Monitor""]",2039.87,"{""seasonal"": ""27%""}",274281,0,Africa +2023-01-23,80598,3247,"[""Headphones"", ""Charger"", ""Tablet""]",2849.54,"{""promo"": ""8%""}",94455,0,South America +2023-01-29,80599,953,"[""Keyboard"", ""Phone"", ""Laptop""]",2737.65,"{""loyalty"": ""24%""}",200965,0,Africa +2023-04-28,80600,9153,"[""Keyboard"", ""Phone"", ""Monitor""]",66.62,"{"""": ""28%""}",168367,1,North America +2024-10-09,80601,2458,"[""Monitor"", ""Phone""]",4445.61,{},285414,0,North America +2024-02-08,80602,9106,"[""Laptop""]",3707.79,{},166253,1,South America +2023-09-03,80603,6839,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1775.2,"{"""": ""30%""}",212233,1,Europe +2024-07-29,80604,1305,"[""Laptop""]",2556.33,{},193632,0,Europe +2024-04-08,80605,4066,"[""Headphones"", ""Laptop"", ""Keyboard""]",2458.07,{},186333,1,Asia +2023-03-26,80606,1710,"[""Wireless Mouse"", ""Monitor""]",2588.63,{},164918,0,North America +2023-07-09,80607,8984,"[""Phone""]",4257.51,{},122963,0,Europe +2024-10-25,80608,7990,"[""Tablet"", ""Charger"", ""Phone""]",2095.84,"{""promo"": ""18%""}",20503,1,North America +2023-11-28,80609,715,"[""Monitor""]",913.89,"{""promo"": ""19%""}",31577,1,South America +2024-02-10,80610,2317,"[""Tablet""]",4559.52,{},27325,1,Africa +2024-02-10,80611,3400,"[""Charger"", ""Wireless Mouse""]",2314.96,"{""promo"": ""10%""}",112833,1,Asia +2024-11-26,80612,1663,"[""Laptop"", ""Wireless Mouse""]",1103.28,"{""seasonal"": ""27%""}",238776,0,Europe +2024-12-22,80613,920,"[""Laptop"", ""Monitor""]",2473.63,{},60178,0,Asia +2024-08-20,80614,1675,"[""Tablet"", ""Monitor""]",262.48,"{""loyalty"": ""9%""}",190120,0,North America +2024-10-01,80615,9522,"[""Tablet"", ""Wireless Mouse""]",3124.25,{},69893,1,Asia +2024-10-23,80616,3980,"[""Phone"", ""Keyboard""]",2883.15,{},277711,1,Africa +2024-02-10,80617,7635,"[""Phone""]",2222.26,{},168241,0,North America +2023-11-09,80618,4272,"[""Tablet"", ""Phone"", ""Keyboard""]",3728.04,{},170882,0,South America +2024-07-27,80619,6536,"[""Charger"", ""Wireless Mouse""]",1283.87,{},187173,1,Africa +2023-05-17,80620,9473,"[""Laptop""]",3026.96,{},59567,1,Europe +2023-11-30,80621,6782,"[""Wireless Mouse"", ""Keyboard""]",1921.02,{},187624,1,North America +2023-11-19,80622,4989,"[""Headphones""]",4414.95,"{""promo"": ""20%""}",212331,0,Europe +2023-12-07,80623,2476,"[""Headphones"", ""Monitor"", ""Phone""]",3761.72,{},204606,0,North America +2023-11-16,80624,9068,"[""Phone""]",673.23,"{""promo"": ""26%""}",296455,1,South America +2024-11-21,80625,8568,"[""Monitor"", ""Wireless Mouse""]",4416.09,{},58702,0,North America +2023-12-30,80626,7702,"[""Charger"", ""Tablet"", ""Phone""]",4031.02,"{""loyalty"": ""11%""}",218216,1,Africa +2024-07-16,80627,1440,"[""Charger"", ""Tablet"", ""Keyboard""]",2129.83,"{"""": ""20%""}",193239,0,Europe +2024-02-03,80628,2601,"[""Charger""]",1916.74,"{"""": ""26%""}",235418,1,Africa +2023-06-22,80629,6156,"[""Charger"", ""Headphones"", ""Monitor""]",4902.61,{},144492,0,South America +2023-03-01,80630,6948,"[""Tablet""]",556.66,"{""loyalty"": ""11%""}",80519,0,Europe +2024-12-18,80631,6681,"[""Keyboard"", ""Phone"", ""Headphones""]",4966.54,{},235373,1,Africa +2024-01-16,80632,2281,"[""Charger""]",2070.95,"{""loyalty"": ""28%""}",226211,1,Africa +2024-10-16,80633,1753,"[""Charger"", ""Phone"", ""Monitor""]",2653.76,{},101194,1,Africa +2024-03-22,80634,1570,"[""Phone"", ""Headphones""]",2786.92,{},104856,1,Asia +2024-08-20,80635,3133,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",238.58,{},157607,1,North America +2024-10-05,80636,1065,"[""Keyboard""]",4906.56,"{""loyalty"": ""25%""}",269616,1,Asia +2023-09-23,80637,4712,"[""Wireless Mouse"", ""Monitor""]",4506.46,"{""seasonal"": ""17%""}",286032,0,North America +2023-09-27,80638,7699,"[""Keyboard"", ""Headphones""]",2228.22,{},239224,1,Asia +2023-10-24,80639,914,"[""Tablet""]",2565.11,{},5051,1,Asia +2023-12-20,80640,1886,"[""Charger"", ""Phone"", ""Laptop""]",2771.57,{},39508,0,North America +2024-09-12,80641,3041,"[""Keyboard"", ""Charger""]",4065.42,{},236700,1,Europe +2023-04-11,80642,1345,"[""Laptop"", ""Phone"", ""Charger""]",4562.35,{},70597,0,Asia +2024-07-25,80643,4963,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3515.14,{},92684,1,Africa +2024-07-13,80644,3575,"[""Tablet"", ""Phone""]",3660.85,"{""loyalty"": ""16%""}",59401,1,South America +2024-02-27,80645,1683,"[""Keyboard""]",1193.82,{},69197,0,South America +2024-02-27,80646,2980,"[""Laptop"", ""Monitor"", ""Charger""]",303.74,{},229894,1,Asia +2023-12-11,80647,7809,"[""Charger"", ""Wireless Mouse""]",3782.36,"{""loyalty"": ""14%""}",165601,1,South America +2024-05-30,80648,1188,"[""Keyboard"", ""Charger"", ""Phone""]",2655.48,{},283639,1,Europe +2024-04-13,80649,6477,"[""Keyboard""]",3987.15,"{""promo"": ""10%""}",87261,1,South America +2023-12-12,80650,6739,"[""Tablet"", ""Headphones"", ""Laptop""]",4823.59,{},66527,1,Asia +2024-04-06,80651,3026,"[""Tablet"", ""Headphones"", ""Monitor""]",3148.88,"{"""": ""15%""}",51845,1,North America +2023-07-21,80652,2619,"[""Charger""]",1332.45,{},30696,0,Africa +2023-10-07,80653,2751,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1801.95,"{""loyalty"": ""26%""}",219222,1,Europe +2024-06-08,80654,2548,"[""Phone""]",1656.98,{},170657,0,South America +2023-11-04,80655,8559,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1919.7,{},279263,0,Europe +2023-06-07,80656,2053,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3010.32,{},220808,1,Africa +2023-04-08,80657,5337,"[""Charger"", ""Headphones""]",3111.76,{},86564,1,Africa +2023-08-21,80658,6895,"[""Wireless Mouse"", ""Laptop""]",4537.07,{},52450,1,Europe +2023-03-20,80659,8731,"[""Monitor""]",3817.33,"{""loyalty"": ""22%""}",110217,0,Asia +2024-10-17,80660,3785,"[""Keyboard"", ""Headphones"", ""Phone""]",4063.64,"{""promo"": ""28%""}",108617,0,North America +2024-05-14,80661,2612,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4630.3,{},158983,0,North America +2023-10-02,80662,3124,"[""Tablet"", ""Keyboard""]",212.17,{},166512,1,Asia +2023-06-05,80663,5388,"[""Charger""]",3106.15,{},137246,1,South America +2023-05-31,80664,6968,"[""Headphones"", ""Keyboard"", ""Tablet""]",2537.47,"{""loyalty"": ""6%""}",27534,1,South America +2023-10-02,80665,8544,"[""Laptop""]",4041.65,"{""promo"": ""13%""}",295327,0,Africa +2024-02-09,80666,257,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2124.78,"{""loyalty"": ""20%""}",28961,1,South America +2024-10-02,80667,3330,"[""Charger""]",3007.02,"{""seasonal"": ""11%""}",46673,0,Europe +2023-07-01,80668,9525,"[""Headphones"", ""Charger"", ""Laptop""]",2933.25,{},183886,1,North America +2023-03-01,80669,375,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3492.19,"{"""": ""12%""}",18286,1,South America +2024-06-04,80670,404,"[""Monitor"", ""Laptop""]",1625.21,"{""seasonal"": ""10%""}",296234,1,Africa +2024-06-02,80671,5334,"[""Charger""]",825.32,"{"""": ""30%""}",76533,1,Asia +2024-09-09,80672,649,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3265.7,{},22883,1,Africa +2024-03-25,80673,2022,"[""Phone"", ""Tablet""]",2716.33,{},40966,1,Africa +2023-10-27,80674,2026,"[""Tablet""]",1354.73,{},266959,1,North America +2024-01-23,80675,4688,"[""Laptop""]",2889.98,{},246687,1,North America +2023-08-27,80676,591,"[""Phone"", ""Monitor""]",308.45,{},170522,0,Europe +2024-06-05,80677,7707,"[""Headphones""]",782.17,{},57074,1,Africa +2023-07-25,80678,1984,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2626.52,{},184405,0,Asia +2024-01-03,80679,1002,"[""Tablet""]",4382.68,{},239509,1,South America +2023-03-08,80680,7021,"[""Tablet"", ""Headphones""]",4190.48,{},57652,0,Africa +2023-12-15,80681,5148,"[""Headphones"", ""Keyboard"", ""Monitor""]",2439.22,{},290422,1,Africa +2023-04-13,80682,7720,"[""Laptop"", ""Headphones"", ""Monitor""]",810.63,{},180698,1,Asia +2023-12-06,80683,4833,"[""Phone"", ""Tablet""]",3906.37,{},23739,1,Africa +2024-01-08,80684,6440,"[""Phone"", ""Headphones"", ""Laptop""]",383.93,"{"""": ""21%""}",11540,0,Africa +2024-02-01,80685,759,"[""Charger"", ""Tablet""]",3284.49,"{""loyalty"": ""29%""}",132842,0,Asia +2023-04-12,80686,1421,"[""Charger"", ""Monitor""]",2915.78,{},282416,1,Europe +2024-03-28,80687,1191,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1380.41,{},274880,0,Europe +2024-05-01,80688,52,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4641.33,{},161212,1,Africa +2024-08-05,80689,7985,"[""Phone"", ""Headphones"", ""Charger""]",1320.12,{},150629,1,South America +2023-01-09,80690,5246,"[""Phone""]",1195.45,{},161690,1,Europe +2023-06-20,80691,3468,"[""Wireless Mouse"", ""Phone""]",4266.82,"{"""": ""12%""}",162498,1,Africa +2023-09-17,80692,3648,"[""Wireless Mouse""]",4238.53,{},105980,1,North America +2024-06-10,80693,2022,"[""Monitor""]",2140.17,{},5267,0,North America +2024-07-11,80694,9968,"[""Laptop"", ""Keyboard"", ""Monitor""]",880.84,"{""seasonal"": ""27%""}",179704,0,Africa +2024-05-07,80695,1816,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1620.83,"{"""": ""22%""}",45686,1,Europe +2024-09-10,80696,1221,"[""Charger""]",2978.47,"{""promo"": ""29%""}",260999,0,North America +2023-01-08,80697,1040,"[""Headphones"", ""Monitor"", ""Keyboard""]",757.49,{},113808,1,Europe +2023-04-10,80698,1730,"[""Phone"", ""Headphones"", ""Tablet""]",299.12,{},155315,1,South America +2023-12-08,80699,1833,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2478.38,{},201091,1,North America +2023-12-27,80700,3977,"[""Tablet"", ""Monitor""]",4784.37,{},149211,0,Asia +2023-07-20,80701,9462,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3842.65,{},195884,1,Asia +2023-01-08,80702,3709,"[""Tablet""]",502.33,"{""seasonal"": ""23%""}",295705,1,North America +2024-03-02,80703,4443,"[""Tablet"", ""Wireless Mouse""]",2488.47,{},246169,1,South America +2023-09-03,80704,1626,"[""Laptop"", ""Wireless Mouse""]",4256.39,{},218228,1,Asia +2023-09-26,80705,4626,"[""Tablet"", ""Headphones"", ""Laptop""]",2314.33,{},173257,1,South America +2024-08-16,80706,17,"[""Keyboard""]",2665.57,"{""loyalty"": ""18%""}",159787,0,South America +2024-07-07,80707,6184,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3403.39,"{""promo"": ""17%""}",281962,0,North America +2024-08-29,80708,4648,"[""Laptop"", ""Charger"", ""Tablet""]",1788.83,{},36437,0,Asia +2024-10-24,80709,9781,"[""Wireless Mouse"", ""Headphones""]",3248.53,"{""loyalty"": ""24%""}",191692,1,North America +2024-08-28,80710,9504,"[""Tablet""]",3216.06,{},195278,0,North America +2024-04-18,80711,6340,"[""Tablet""]",3348.64,{},170949,1,Europe +2023-10-10,80712,501,"[""Wireless Mouse"", ""Phone""]",3355.56,{},271834,0,Europe +2023-09-04,80713,6259,"[""Keyboard"", ""Tablet"", ""Headphones""]",4744.04,"{""promo"": ""21%""}",293815,1,Europe +2023-09-12,80714,8435,"[""Charger"", ""Phone""]",1024.29,{},241009,1,Asia +2024-07-05,80715,6981,"[""Wireless Mouse""]",4234.1,{},37078,0,Asia +2024-08-22,80716,5360,"[""Phone"", ""Laptop""]",2221.6,"{""loyalty"": ""11%""}",135122,0,North America +2024-08-31,80717,6194,"[""Headphones"", ""Laptop"", ""Monitor""]",703.98,"{""promo"": ""11%""}",145951,0,Europe +2024-07-31,80718,1725,"[""Wireless Mouse""]",2286.85,{},229920,1,Asia +2024-12-06,80719,345,"[""Tablet"", ""Charger""]",123.22,{},230687,1,North America +2024-10-24,80720,4816,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3345.1,{},176171,1,Europe +2023-03-08,80721,5972,"[""Charger"", ""Phone""]",2691.89,"{""seasonal"": ""22%""}",42930,0,Africa +2023-06-29,80722,4034,"[""Phone"", ""Headphones""]",3813.31,"{"""": ""27%""}",130495,1,North America +2023-08-03,80723,9876,"[""Keyboard"", ""Phone""]",221.54,{},56818,1,South America +2023-02-19,80724,3792,"[""Tablet"", ""Laptop"", ""Headphones""]",2028.84,{},164740,0,North America +2024-09-09,80725,6621,"[""Monitor""]",3801.91,"{""loyalty"": ""16%""}",214296,1,Europe +2024-05-31,80726,3908,"[""Tablet"", ""Phone"", ""Headphones""]",936.65,{},91861,0,North America +2024-01-11,80727,7754,"[""Wireless Mouse""]",111.42,{},138455,0,Africa +2023-09-03,80728,79,"[""Headphones""]",3880.77,"{""promo"": ""28%""}",251448,0,Europe +2024-03-18,80729,5996,"[""Headphones"", ""Laptop""]",987.49,{},76879,0,Europe +2024-02-17,80730,3718,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",864.33,"{"""": ""10%""}",243944,1,Africa +2024-06-19,80731,2270,"[""Charger""]",4885.36,{},79334,1,Europe +2023-07-05,80732,445,"[""Phone"", ""Monitor"", ""Tablet""]",1467.03,{},91400,1,Asia +2023-10-15,80733,6463,"[""Laptop"", ""Charger"", ""Tablet""]",3199.76,"{""seasonal"": ""10%""}",115966,1,South America +2023-08-14,80734,1986,"[""Laptop""]",2961.84,{},271260,0,North America +2023-08-23,80735,6774,"[""Headphones"", ""Tablet"", ""Keyboard""]",3263.74,"{""promo"": ""18%""}",57709,1,South America +2024-08-28,80736,8441,"[""Tablet"", ""Charger"", ""Keyboard""]",1876.7,"{""promo"": ""16%""}",279277,1,North America +2023-12-12,80737,2517,"[""Tablet"", ""Headphones""]",2313.89,"{""promo"": ""29%""}",43803,1,Africa +2024-04-30,80738,1013,"[""Phone"", ""Wireless Mouse""]",3165.2,{},137851,1,Africa +2024-09-12,80739,3467,"[""Monitor""]",1046.49,{},297069,0,Europe +2024-08-26,80740,4566,"[""Wireless Mouse""]",603.72,"{""loyalty"": ""19%""}",204761,0,Asia +2023-12-04,80741,4377,"[""Wireless Mouse"", ""Charger""]",1763.78,"{""seasonal"": ""23%""}",52386,0,Asia +2024-12-18,80742,7278,"[""Tablet"", ""Laptop""]",3233.98,{},247508,1,Asia +2024-06-18,80743,3492,"[""Wireless Mouse""]",2989.96,{},177538,0,Africa +2024-11-15,80744,6644,"[""Laptop"", ""Keyboard""]",414.42,{},151620,1,North America +2024-01-26,80745,3011,"[""Monitor"", ""Laptop""]",1724.7,{},249643,0,Asia +2024-09-06,80746,4992,"[""Phone"", ""Headphones"", ""Laptop""]",1802.97,{},32804,1,South America +2023-06-16,80747,8973,"[""Charger"", ""Phone""]",2029.21,"{""promo"": ""11%""}",255859,1,North America +2023-08-26,80748,6980,"[""Headphones"", ""Wireless Mouse""]",3794.91,{},218381,1,Africa +2024-07-09,80749,4951,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4749.02,"{""seasonal"": ""30%""}",205349,0,North America +2023-01-09,80750,6211,"[""Wireless Mouse""]",1773.34,"{"""": ""19%""}",256063,1,Europe +2023-03-13,80751,9150,"[""Wireless Mouse"", ""Phone""]",1293.82,{},35404,1,North America +2023-11-15,80752,6509,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4566.78,"{""seasonal"": ""16%""}",298235,0,Africa +2024-08-02,80753,4982,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3354.58,"{""loyalty"": ""21%""}",179173,1,North America +2023-01-07,80754,8216,"[""Monitor"", ""Tablet"", ""Phone""]",2858.24,"{""loyalty"": ""30%""}",25990,0,North America +2024-09-19,80755,8249,"[""Wireless Mouse""]",680.42,{},256708,1,Africa +2023-10-29,80756,4873,"[""Tablet""]",167.34,"{""loyalty"": ""21%""}",164538,1,South America +2024-07-01,80757,5520,"[""Charger""]",3107.93,"{""promo"": ""22%""}",25611,0,Africa +2023-11-16,80758,5583,"[""Monitor""]",1763.09,{},8076,0,Asia +2024-02-28,80759,6423,"[""Wireless Mouse"", ""Headphones""]",1051.52,{},204724,1,North America +2023-07-03,80760,9241,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4434.04,"{""loyalty"": ""6%""}",60749,0,Africa +2024-02-25,80761,2461,"[""Wireless Mouse""]",1448.39,"{"""": ""8%""}",149669,0,North America +2024-04-11,80762,7290,"[""Laptop""]",3510.98,"{""promo"": ""12%""}",127621,0,North America +2024-03-11,80763,833,"[""Keyboard"", ""Headphones""]",851.97,{},269639,0,Europe +2024-03-28,80764,9288,"[""Phone"", ""Headphones""]",167.95,"{"""": ""25%""}",175319,0,Africa +2023-03-23,80765,8632,"[""Laptop""]",2072.73,"{""promo"": ""6%""}",156933,1,Europe +2023-09-17,80766,415,"[""Phone"", ""Monitor""]",2070.93,{},196761,1,Europe +2024-11-30,80767,5301,"[""Phone"", ""Tablet""]",3864.76,{},263587,0,North America +2024-01-02,80768,2099,"[""Phone"", ""Keyboard"", ""Headphones""]",1856.95,{},32777,0,Africa +2024-01-27,80769,1272,"[""Wireless Mouse"", ""Headphones""]",3993.06,"{"""": ""28%""}",44181,0,South America +2024-07-05,80770,308,"[""Wireless Mouse""]",386.63,"{""seasonal"": ""10%""}",153605,0,North America +2023-08-05,80771,8384,"[""Headphones""]",1788.37,"{""seasonal"": ""16%""}",139411,1,South America +2024-07-10,80772,5934,"[""Phone"", ""Wireless Mouse""]",2860.15,{},16969,1,North America +2024-06-02,80773,2908,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2216.04,"{""seasonal"": ""17%""}",27797,0,Europe +2023-02-20,80774,17,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2103.43,{},183372,1,Europe +2023-02-10,80775,8769,"[""Keyboard"", ""Tablet"", ""Monitor""]",4396.58,{},42917,1,Africa +2024-07-27,80776,179,"[""Charger""]",2840.26,{},60716,1,Africa +2024-05-09,80777,9799,"[""Tablet""]",4608.56,{},161549,1,South America +2024-03-09,80778,4069,"[""Laptop""]",3594.42,{},116561,1,Africa +2024-09-20,80779,9232,"[""Tablet"", ""Wireless Mouse""]",146.41,"{""promo"": ""23%""}",44799,0,Asia +2023-12-17,80780,5119,"[""Wireless Mouse""]",571.52,{},40705,0,Africa +2023-02-24,80781,8215,"[""Phone""]",4021.26,{},198669,0,Africa +2024-10-11,80782,116,"[""Laptop""]",709.69,"{""promo"": ""18%""}",127786,0,Africa +2024-01-22,80783,2027,"[""Charger""]",375.53,{},245894,0,Africa +2024-01-10,80784,1821,"[""Headphones"", ""Charger""]",4423.28,{},252362,1,Europe +2024-05-13,80785,9291,"[""Tablet"", ""Monitor"", ""Charger""]",3946.64,"{""promo"": ""5%""}",258736,0,North America +2023-09-07,80786,3290,"[""Keyboard""]",2895.18,{},189903,1,Asia +2023-01-18,80787,7267,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3603.47,"{""promo"": ""30%""}",39793,1,Europe +2023-04-09,80788,9945,"[""Monitor""]",2398.31,"{""promo"": ""23%""}",93582,1,South America +2023-07-23,80789,275,"[""Phone"", ""Tablet""]",3979.57,"{""loyalty"": ""17%""}",282423,0,Asia +2023-10-20,80790,7784,"[""Laptop"", ""Charger""]",364.97,{},43974,1,North America +2023-05-29,80791,7940,"[""Wireless Mouse""]",2552.45,"{""promo"": ""27%""}",252466,0,South America +2024-11-28,80792,4110,"[""Headphones""]",4618.16,{},6714,0,South America +2024-11-05,80793,8012,"[""Keyboard""]",76.45,"{"""": ""7%""}",281750,1,Africa +2024-02-10,80794,8512,"[""Phone"", ""Laptop""]",2718.82,{},221706,1,Asia +2023-03-15,80795,7120,"[""Monitor"", ""Laptop"", ""Charger""]",4753.2,{},190258,0,Africa +2024-05-01,80796,9321,"[""Phone"", ""Monitor"", ""Charger""]",3748.33,"{""promo"": ""6%""}",44030,1,Asia +2024-12-09,80797,5571,"[""Phone"", ""Keyboard"", ""Tablet""]",2395.39,"{"""": ""25%""}",258754,1,Europe +2024-06-30,80798,8734,"[""Wireless Mouse""]",3879.12,{},201412,1,North America +2023-06-18,80799,5448,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3699.3,{},244219,0,Europe +2023-11-08,80800,2660,"[""Phone"", ""Headphones""]",4039.94,{},153793,0,North America +2024-06-22,80801,2826,"[""Headphones"", ""Keyboard""]",2869.35,{},48294,1,North America +2024-03-01,80802,2296,"[""Monitor""]",3968.62,{},249091,1,Asia +2024-08-11,80803,6407,"[""Wireless Mouse""]",3444.63,"{"""": ""27%""}",142746,1,North America +2024-09-01,80804,6130,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",696.09,{},241991,1,Europe +2024-09-17,80805,8021,"[""Charger"", ""Wireless Mouse""]",727.72,"{""loyalty"": ""18%""}",148665,0,Africa +2024-07-13,80806,5693,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",576.34,"{""promo"": ""29%""}",71363,0,Europe +2023-01-10,80807,9916,"[""Tablet"", ""Laptop""]",2478.13,{},80633,0,Asia +2023-06-21,80808,6014,"[""Tablet""]",1238.5,"{""loyalty"": ""30%""}",64413,1,Africa +2024-04-24,80809,7429,"[""Keyboard""]",4470.38,"{"""": ""25%""}",45307,0,Asia +2024-07-05,80810,6616,"[""Monitor"", ""Charger"", ""Keyboard""]",4153.07,"{"""": ""20%""}",157349,1,Africa +2023-11-06,80811,5149,"[""Phone"", ""Headphones"", ""Laptop""]",2728.2,{},272506,0,Europe +2023-06-01,80812,1488,"[""Tablet"", ""Headphones""]",4299.99,{},156246,0,South America +2023-01-26,80813,6307,"[""Phone"", ""Keyboard""]",948.86,"{""promo"": ""9%""}",144678,0,Africa +2023-12-25,80814,3191,"[""Wireless Mouse"", ""Monitor""]",2565.7,"{""seasonal"": ""5%""}",236060,1,Europe +2024-04-13,80815,9162,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",576.96,{},139093,1,North America +2024-07-18,80816,2913,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4969.63,"{""promo"": ""7%""}",207767,0,North America +2023-09-03,80817,8113,"[""Tablet"", ""Charger"", ""Monitor""]",2046.84,"{""promo"": ""13%""}",4219,1,North America +2024-09-08,80818,8761,"[""Keyboard"", ""Laptop""]",910.77,"{""loyalty"": ""27%""}",293951,0,Europe +2024-02-26,80819,4793,"[""Keyboard"", ""Tablet""]",757.37,{},299584,0,Asia +2023-03-17,80820,7598,"[""Tablet"", ""Keyboard""]",3194.02,{},133630,1,North America +2024-08-29,80821,5414,"[""Tablet""]",597.67,"{""seasonal"": ""5%""}",105399,1,Asia +2024-02-26,80822,5639,"[""Laptop"", ""Charger""]",224.13,"{"""": ""30%""}",164505,1,Africa +2024-01-02,80823,4040,"[""Headphones""]",3424.03,"{"""": ""22%""}",63973,1,North America +2023-01-11,80824,5614,"[""Monitor""]",794.12,"{""loyalty"": ""15%""}",299460,0,North America +2023-11-07,80825,7940,"[""Keyboard"", ""Laptop""]",423.68,"{""seasonal"": ""8%""}",70235,0,Africa +2023-06-18,80826,8057,"[""Monitor"", ""Charger""]",3049.25,{},248776,0,Asia +2023-08-10,80827,5434,"[""Wireless Mouse""]",1569.75,"{""seasonal"": ""24%""}",81327,1,North America +2023-10-22,80828,9257,"[""Tablet""]",2855.41,"{""seasonal"": ""12%""}",195121,0,Africa +2023-06-30,80829,1907,"[""Monitor""]",4369.81,"{""seasonal"": ""30%""}",207211,0,Europe +2023-06-13,80830,3561,"[""Phone"", ""Monitor""]",3346.54,"{""seasonal"": ""20%""}",203811,1,Asia +2024-07-12,80831,3769,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2675.37,{},128927,1,North America +2024-01-09,80832,2217,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4541.57,"{""seasonal"": ""5%""}",178142,0,Africa +2023-03-31,80833,4097,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1611.39,"{""promo"": ""22%""}",285491,0,Africa +2024-01-22,80834,7958,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",861.2,"{""seasonal"": ""7%""}",113149,0,North America +2023-04-18,80835,1408,"[""Laptop"", ""Monitor"", ""Charger""]",2200.46,{},123830,0,North America +2024-04-28,80836,6909,"[""Phone"", ""Tablet""]",4629.26,{},114180,1,Europe +2023-06-09,80837,2317,"[""Tablet""]",2839.37,{},241525,1,North America +2024-04-22,80838,3948,"[""Monitor"", ""Wireless Mouse""]",2231.45,"{"""": ""7%""}",83643,0,Asia +2023-04-02,80839,1056,"[""Monitor"", ""Keyboard"", ""Tablet""]",1334.44,{},163119,1,North America +2023-11-09,80840,2926,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2595.25,{},259883,1,Europe +2024-04-08,80841,1529,"[""Wireless Mouse""]",981.31,"{""promo"": ""15%""}",131467,0,North America +2024-08-19,80842,3121,"[""Keyboard"", ""Phone"", ""Laptop""]",2047.7,"{""seasonal"": ""17%""}",50978,1,Africa +2023-06-17,80843,3232,"[""Keyboard"", ""Laptop""]",1188.1,"{"""": ""10%""}",5922,0,Africa +2023-02-11,80844,9625,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3612.98,{},67427,1,South America +2024-03-28,80845,2153,"[""Keyboard""]",1111.83,{},175902,0,Europe +2023-03-26,80846,4210,"[""Monitor""]",1068.12,{},114730,0,Europe +2023-05-06,80847,8555,"[""Monitor""]",1769.11,{},113916,0,Asia +2023-01-17,80848,6987,"[""Monitor"", ""Charger""]",4869.7,{},137685,1,Asia +2023-07-30,80849,9610,"[""Headphones"", ""Laptop"", ""Tablet""]",1262.06,"{""seasonal"": ""23%""}",80403,0,South America +2024-08-07,80850,208,"[""Monitor""]",3883.68,"{""seasonal"": ""10%""}",106357,0,South America +2024-10-22,80851,5415,"[""Phone"", ""Charger""]",889.83,{},140735,1,Asia +2024-06-06,80852,2612,"[""Keyboard""]",1226.1,"{"""": ""26%""}",186734,0,Asia +2023-04-06,80853,2492,"[""Charger""]",4751.96,"{"""": ""12%""}",255489,0,South America +2024-04-01,80854,8078,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4768.78,{},114568,0,South America +2024-11-21,80855,9217,"[""Phone"", ""Charger""]",4447.94,{},158356,1,North America +2023-05-03,80856,2306,"[""Monitor"", ""Phone""]",4891.78,"{""seasonal"": ""26%""}",41170,0,Africa +2024-08-07,80857,9978,"[""Charger"", ""Wireless Mouse""]",706.43,"{""seasonal"": ""22%""}",239475,0,North America +2023-03-04,80858,8443,"[""Keyboard""]",3930.29,{},213195,1,Asia +2023-08-23,80859,3053,"[""Keyboard"", ""Phone""]",2521.85,"{""promo"": ""30%""}",6267,1,Asia +2024-02-04,80860,4175,"[""Charger"", ""Monitor""]",4259.12,"{""loyalty"": ""20%""}",190657,1,North America +2023-05-03,80861,5326,"[""Monitor""]",2192.49,{},177186,1,Europe +2023-12-11,80862,8488,"[""Tablet"", ""Headphones""]",4122.14,{},187317,1,Asia +2024-12-07,80863,7431,"[""Tablet"", ""Monitor"", ""Phone""]",1134.12,"{""loyalty"": ""7%""}",192989,1,Africa +2024-11-22,80864,2755,"[""Tablet"", ""Headphones""]",3062.94,{},72516,0,Africa +2023-10-24,80865,2578,"[""Headphones"", ""Monitor"", ""Tablet""]",1576.56,"{"""": ""15%""}",21343,1,South America +2023-05-01,80866,3266,"[""Monitor"", ""Charger""]",1232.36,{},223802,0,Asia +2024-12-28,80867,2435,"[""Tablet"", ""Charger"", ""Headphones""]",1561.1,"{"""": ""11%""}",296823,1,North America +2024-03-29,80868,6071,"[""Laptop"", ""Charger""]",83.01,{},164420,0,South America +2023-04-26,80869,8119,"[""Monitor""]",2392.87,{},232847,0,Africa +2024-04-30,80870,2066,"[""Laptop"", ""Phone"", ""Headphones""]",931.71,{},74699,0,Europe +2024-04-07,80871,3711,"[""Headphones"", ""Monitor"", ""Tablet""]",4117.68,"{""loyalty"": ""30%""}",266635,1,Asia +2023-10-06,80872,166,"[""Wireless Mouse""]",1343.74,{},277784,1,Africa +2023-05-25,80873,2341,"[""Charger"", ""Tablet""]",1119.47,{},153819,0,Asia +2024-12-09,80874,3188,"[""Tablet""]",923.39,{},25004,1,South America +2023-04-09,80875,3619,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2671.21,"{""promo"": ""7%""}",41904,0,South America +2024-11-23,80876,3870,"[""Charger"", ""Tablet""]",2802.67,{},297746,0,Africa +2024-12-10,80877,3053,"[""Monitor"", ""Charger""]",937.32,"{""seasonal"": ""28%""}",154257,1,North America +2023-06-09,80878,1667,"[""Keyboard"", ""Tablet"", ""Laptop""]",710.18,"{""loyalty"": ""12%""}",202184,1,Europe +2024-01-14,80879,306,"[""Phone"", ""Tablet""]",2047.8,"{""seasonal"": ""9%""}",26957,0,Europe +2024-05-24,80880,2072,"[""Wireless Mouse"", ""Headphones""]",581.84,{},138640,1,Africa +2023-02-08,80881,7618,"[""Keyboard"", ""Charger""]",2942.89,"{"""": ""30%""}",281004,0,Europe +2024-11-18,80882,2577,"[""Tablet"", ""Phone""]",4397.94,{},148394,0,South America +2024-10-31,80883,3367,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4762.66,"{""seasonal"": ""14%""}",200665,0,Asia +2024-03-05,80884,4555,"[""Headphones""]",844.09,"{""seasonal"": ""17%""}",216446,1,North America +2023-11-30,80885,55,"[""Monitor"", ""Wireless Mouse""]",763.61,"{""loyalty"": ""6%""}",246795,1,North America +2023-05-31,80886,7661,"[""Keyboard"", ""Headphones""]",1401.64,"{""seasonal"": ""26%""}",47503,1,Africa +2024-01-26,80887,750,"[""Wireless Mouse""]",711.83,{},5805,0,North America +2024-03-23,80888,1408,"[""Monitor""]",3427.85,{},288229,0,South America +2024-03-29,80889,275,"[""Wireless Mouse"", ""Monitor""]",4923.23,{},118852,0,Africa +2023-09-19,80890,8427,"[""Wireless Mouse""]",3663.49,"{"""": ""28%""}",207150,0,Europe +2023-04-06,80891,9297,"[""Charger"", ""Phone""]",4565.4,"{"""": ""16%""}",85904,1,North America +2024-02-27,80892,3134,"[""Tablet""]",1636.82,"{""loyalty"": ""27%""}",63979,0,Europe +2024-09-12,80893,9985,"[""Keyboard""]",3853.46,"{"""": ""24%""}",154750,0,Europe +2023-07-31,80894,1571,"[""Monitor""]",4010.38,{},118384,1,South America +2024-02-28,80895,8213,"[""Charger"", ""Headphones""]",3660.8,{},33818,1,North America +2023-05-02,80896,7545,"[""Monitor""]",1125.71,"{"""": ""22%""}",90665,0,Europe +2024-12-20,80897,693,"[""Keyboard"", ""Tablet""]",4367.44,{},196243,0,Europe +2023-07-26,80898,6522,"[""Charger""]",872.39,{},274028,0,North America +2024-03-30,80899,2143,"[""Keyboard""]",3237.71,{},147380,1,Asia +2023-03-03,80900,1617,"[""Headphones"", ""Keyboard"", ""Phone""]",142.12,{},108568,1,Asia +2023-03-08,80901,6578,"[""Monitor"", ""Phone"", ""Tablet""]",1212.86,{},89116,1,Africa +2024-11-20,80902,6182,"[""Charger"", ""Keyboard""]",2307.59,{},209485,0,Asia +2024-08-14,80903,8237,"[""Phone""]",1681.87,"{""seasonal"": ""12%""}",250672,1,North America +2023-12-27,80904,9189,"[""Headphones"", ""Monitor"", ""Charger""]",3764.61,{},32635,1,Europe +2024-02-22,80905,3817,"[""Tablet"", ""Charger""]",1411.65,"{"""": ""25%""}",60326,1,Asia +2023-10-27,80906,8834,"[""Phone"", ""Monitor""]",4755.6,{},189960,1,Europe +2024-05-29,80907,4083,"[""Monitor"", ""Laptop"", ""Charger""]",4323.61,{},73743,0,South America +2024-08-18,80908,1152,"[""Monitor""]",2809.3,{},5994,1,North America +2023-01-26,80909,8988,"[""Charger"", ""Monitor""]",2680.31,{},67497,0,South America +2024-11-17,80910,1383,"[""Laptop"", ""Phone""]",4623.2,"{""loyalty"": ""18%""}",199757,0,Africa +2024-04-11,80911,8115,"[""Phone"", ""Headphones""]",3114.5,{},255887,0,Africa +2024-09-12,80912,5676,"[""Monitor"", ""Keyboard"", ""Laptop""]",2826.24,{},214982,1,Asia +2024-01-18,80913,3247,"[""Headphones"", ""Tablet""]",4055.56,"{""loyalty"": ""17%""}",22347,0,North America +2024-04-04,80914,8954,"[""Keyboard""]",3606.98,{},164257,0,Africa +2024-11-11,80915,3834,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3538.43,{},252646,0,South America +2024-03-08,80916,27,"[""Phone"", ""Monitor"", ""Keyboard""]",2955.67,"{"""": ""28%""}",131262,1,Asia +2023-08-27,80917,7106,"[""Monitor""]",186.87,{},164825,0,Asia +2024-10-19,80918,1278,"[""Monitor"", ""Tablet""]",1559.89,{},9112,0,South America +2023-06-02,80919,9294,"[""Keyboard""]",1656.05,"{""loyalty"": ""28%""}",4164,1,Asia +2023-01-01,80920,7288,"[""Phone"", ""Monitor"", ""Headphones""]",3663.02,"{""loyalty"": ""21%""}",70355,0,Asia +2023-11-05,80921,6813,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3785.99,"{""promo"": ""28%""}",26883,1,Asia +2023-03-26,80922,322,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4978.83,"{""loyalty"": ""13%""}",10787,1,South America +2023-02-23,80923,7958,"[""Charger""]",4980.25,{},71833,1,Africa +2023-05-28,80924,4141,"[""Phone"", ""Tablet""]",4268.42,{},159734,1,North America +2024-02-15,80925,5810,"[""Laptop"", ""Headphones""]",4973.35,{},161375,0,Europe +2024-09-12,80926,7610,"[""Wireless Mouse"", ""Charger""]",903.19,"{""seasonal"": ""14%""}",251258,1,South America +2024-12-19,80927,1435,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1268.3,"{""loyalty"": ""9%""}",57080,1,South America +2023-05-09,80928,8134,"[""Laptop"", ""Keyboard""]",125.62,{},276676,1,North America +2024-10-27,80929,8806,"[""Charger"", ""Monitor"", ""Tablet""]",971.99,"{""promo"": ""16%""}",104903,1,South America +2024-03-30,80930,2652,"[""Wireless Mouse"", ""Monitor""]",539.63,"{"""": ""20%""}",144447,0,South America +2024-05-06,80931,2130,"[""Keyboard"", ""Wireless Mouse""]",2638.29,{},48438,1,Europe +2023-03-26,80932,958,"[""Keyboard"", ""Phone"", ""Charger""]",4448.13,"{""promo"": ""10%""}",126229,1,Africa +2024-09-03,80933,6845,"[""Headphones"", ""Wireless Mouse""]",1999.71,{},97343,1,Europe +2023-04-13,80934,6302,"[""Wireless Mouse""]",2553.01,{},99489,1,Asia +2023-07-02,80935,5623,"[""Phone"", ""Tablet"", ""Keyboard""]",687.15,"{""seasonal"": ""23%""}",193948,0,Europe +2024-03-26,80936,252,"[""Monitor""]",4156.25,{},99575,0,Asia +2024-05-07,80937,9772,"[""Keyboard""]",1320.52,{},151810,1,South America +2023-02-22,80938,7346,"[""Charger""]",2328.4,{},196155,0,Europe +2024-08-09,80939,212,"[""Monitor"", ""Keyboard""]",2227.3,{},214681,1,North America +2024-05-15,80940,9419,"[""Laptop"", ""Charger""]",3113.45,"{""loyalty"": ""6%""}",146707,0,Africa +2024-09-30,80941,1371,"[""Monitor"", ""Tablet"", ""Headphones""]",4758.12,"{""loyalty"": ""10%""}",162170,1,Africa +2024-11-12,80942,4311,"[""Tablet""]",2352.6,"{""loyalty"": ""18%""}",67053,1,Africa +2023-01-04,80943,3213,"[""Tablet""]",1634.31,{},2038,1,North America +2024-08-29,80944,8780,"[""Phone"", ""Tablet""]",1850.38,{},95233,0,Europe +2023-02-05,80945,8780,"[""Monitor""]",2014.02,"{""promo"": ""6%""}",166443,1,Africa +2024-12-28,80946,9656,"[""Tablet""]",2650.73,{},165903,1,Europe +2024-12-20,80947,4270,"[""Keyboard""]",1848.03,{},150839,0,Asia +2024-08-01,80948,3108,"[""Headphones"", ""Laptop"", ""Tablet""]",1534.93,"{""loyalty"": ""21%""}",299628,1,Europe +2023-03-21,80949,9639,"[""Monitor"", ""Laptop"", ""Tablet""]",4472.74,{},105271,0,South America +2024-05-11,80950,7906,"[""Wireless Mouse""]",3938.47,{},37466,1,North America +2023-01-23,80951,6844,"[""Headphones""]",4612.02,{},14143,1,Africa +2023-09-22,80952,635,"[""Headphones"", ""Tablet"", ""Keyboard""]",4930.06,{},266425,0,Europe +2024-05-11,80953,9527,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1616.44,{},96663,1,North America +2024-09-24,80954,9279,"[""Keyboard"", ""Charger""]",1800.89,{},66475,0,Africa +2023-02-17,80955,8513,"[""Tablet"", ""Phone""]",2515.49,"{""promo"": ""7%""}",72030,0,South America +2024-02-23,80956,7776,"[""Phone""]",3230.41,{},187688,1,Asia +2023-05-15,80957,4287,"[""Keyboard""]",3132.79,"{""seasonal"": ""13%""}",5947,0,Africa +2024-01-15,80958,4451,"[""Keyboard"", ""Monitor"", ""Tablet""]",4221.04,{},189054,1,North America +2024-02-01,80959,9493,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4931.18,{},284892,1,North America +2024-06-27,80960,2489,"[""Phone""]",2315.24,{},91311,1,Asia +2023-12-12,80961,4038,"[""Tablet"", ""Charger"", ""Monitor""]",819.39,{},253996,0,South America +2023-07-23,80962,2320,"[""Charger"", ""Wireless Mouse""]",1594.79,"{""loyalty"": ""11%""}",182784,0,Asia +2024-03-06,80963,6232,"[""Laptop""]",2864.87,"{"""": ""12%""}",105010,1,Europe +2024-11-03,80964,5228,"[""Wireless Mouse"", ""Laptop""]",2768.45,{},111294,1,Europe +2023-02-04,80965,7197,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1084.81,{},131904,0,Africa +2024-04-21,80966,2581,"[""Laptop""]",2663.02,{},74973,1,South America +2024-02-10,80967,1885,"[""Wireless Mouse"", ""Tablet""]",1463.52,{},99187,1,South America +2023-05-10,80968,8013,"[""Headphones"", ""Laptop"", ""Keyboard""]",1176.69,{},35763,0,Africa +2024-09-27,80969,2335,"[""Wireless Mouse"", ""Monitor""]",4216.98,{},244469,1,South America +2024-05-19,80970,106,"[""Monitor"", ""Tablet""]",4740.13,"{""seasonal"": ""11%""}",120157,0,Asia +2023-05-18,80971,5513,"[""Keyboard"", ""Tablet""]",1030.85,"{""seasonal"": ""10%""}",289746,1,South America +2023-09-01,80972,4137,"[""Keyboard"", ""Phone""]",3852.6,"{""promo"": ""13%""}",6190,0,Europe +2024-10-19,80973,5980,"[""Keyboard"", ""Charger"", ""Headphones""]",4797.91,"{""promo"": ""21%""}",30014,1,North America +2023-08-08,80974,2535,"[""Headphones"", ""Wireless Mouse""]",1790.66,{},193361,1,North America +2023-10-29,80975,5782,"[""Headphones""]",3883.79,"{""seasonal"": ""9%""}",36435,0,Europe +2024-06-27,80976,4498,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1931.0,{},258715,1,Africa +2024-03-10,80977,355,"[""Headphones"", ""Laptop"", ""Charger""]",125.4,"{"""": ""20%""}",207918,0,South America +2023-01-18,80978,1177,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4288.61,{},10238,0,Africa +2023-11-05,80979,4508,"[""Headphones""]",3583.39,"{""seasonal"": ""30%""}",3921,1,North America +2023-11-01,80980,8591,"[""Keyboard"", ""Charger"", ""Headphones""]",1155.76,"{""seasonal"": ""10%""}",111450,0,Asia +2023-10-24,80981,3635,"[""Phone"", ""Wireless Mouse""]",424.54,"{""promo"": ""29%""}",150732,0,Europe +2023-08-29,80982,7771,"[""Monitor"", ""Headphones"", ""Tablet""]",3046.04,{},291545,0,South America +2024-12-09,80983,5672,"[""Headphones"", ""Tablet""]",3167.87,{},242325,1,North America +2023-08-03,80984,4232,"[""Headphones"", ""Phone""]",3623.09,"{""loyalty"": ""28%""}",172922,0,South America +2023-04-07,80985,287,"[""Wireless Mouse""]",2056.52,{},240562,0,South America +2024-07-22,80986,6876,"[""Charger""]",3038.14,{},128683,1,South America +2023-04-25,80987,9967,"[""Tablet""]",4728.5,{},192853,0,Africa +2023-06-14,80988,5597,"[""Tablet"", ""Charger"", ""Headphones""]",3908.67,"{"""": ""10%""}",140514,0,North America +2024-10-17,80989,992,"[""Tablet""]",809.71,{},254785,1,South America +2024-12-29,80990,4629,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2206.96,{},257763,0,Europe +2024-09-08,80991,6675,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4364.6,{},134133,1,North America +2024-10-11,80992,5545,"[""Phone"", ""Keyboard""]",3901.04,{},26771,1,North America +2024-04-02,80993,3765,"[""Wireless Mouse"", ""Headphones""]",1090.92,{},222610,1,Africa +2024-12-27,80994,315,"[""Laptop"", ""Wireless Mouse""]",4290.15,"{""seasonal"": ""11%""}",250077,1,South America +2024-03-19,80995,8991,"[""Tablet"", ""Laptop""]",2220.26,"{"""": ""17%""}",69267,0,Asia +2023-02-27,80996,7296,"[""Monitor""]",2596.77,"{""seasonal"": ""27%""}",57028,1,Africa +2023-09-16,80997,8612,"[""Charger""]",2816.77,"{"""": ""20%""}",294572,0,Europe +2023-07-06,80998,3298,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1630.97,{},191321,1,Asia +2024-08-02,80999,6266,"[""Keyboard"", ""Monitor""]",152.63,"{""seasonal"": ""23%""}",18615,0,South America +2024-09-04,81000,2708,"[""Phone"", ""Laptop""]",1509.3,"{""loyalty"": ""12%""}",197769,0,South America +2024-07-01,81001,5345,"[""Wireless Mouse"", ""Monitor""]",3370.09,"{""seasonal"": ""27%""}",275018,1,Europe +2024-12-24,81002,2491,"[""Tablet""]",4761.35,{},267003,0,South America +2024-03-24,81003,7688,"[""Keyboard"", ""Charger""]",1357.51,{},87663,0,Asia +2024-04-29,81004,8711,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2070.96,{},229099,0,Europe +2024-08-16,81005,416,"[""Headphones"", ""Laptop""]",1205.64,"{""promo"": ""22%""}",268160,1,South America +2024-05-31,81006,8564,"[""Headphones""]",3845.98,"{""loyalty"": ""21%""}",259612,0,South America +2024-05-21,81007,764,"[""Phone"", ""Tablet""]",803.06,{},125634,0,North America +2024-04-09,81008,8751,"[""Laptop"", ""Charger""]",114.83,{},154101,1,South America +2023-11-28,81009,7690,"[""Keyboard"", ""Laptop"", ""Headphones""]",2831.7,{},12709,1,South America +2024-10-21,81010,7255,"[""Monitor"", ""Wireless Mouse""]",830.0,{},276381,1,North America +2024-12-04,81011,9676,"[""Charger""]",1152.52,"{""loyalty"": ""9%""}",293663,0,South America +2024-04-19,81012,3780,"[""Headphones""]",331.12,"{""promo"": ""18%""}",152471,0,South America +2024-04-26,81013,1825,"[""Keyboard"", ""Wireless Mouse""]",1672.8,"{""promo"": ""29%""}",163956,1,Africa +2024-08-29,81014,6595,"[""Charger"", ""Headphones""]",4115.18,"{""loyalty"": ""17%""}",28019,0,North America +2024-10-17,81015,1527,"[""Headphones""]",1130.28,"{""loyalty"": ""16%""}",42259,0,Africa +2023-11-04,81016,6798,"[""Laptop""]",131.93,"{""loyalty"": ""22%""}",188739,1,North America +2023-07-07,81017,8691,"[""Keyboard"", ""Monitor"", ""Laptop""]",3605.71,{},112955,0,Asia +2023-11-05,81018,9739,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",707.58,"{""loyalty"": ""8%""}",109852,1,Europe +2023-07-21,81019,5731,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4220.24,{},59198,1,Europe +2023-12-17,81020,8793,"[""Laptop"", ""Headphones""]",2185.38,{},68831,1,Asia +2023-05-02,81021,9132,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3829.36,{},32599,0,North America +2024-09-12,81022,6435,"[""Headphones"", ""Tablet"", ""Laptop""]",1011.85,"{""seasonal"": ""8%""}",270761,1,South America +2023-05-31,81023,3160,"[""Keyboard""]",2122.73,"{""seasonal"": ""25%""}",93118,0,Europe +2023-03-23,81024,7195,"[""Phone""]",4574.65,"{""loyalty"": ""22%""}",93585,1,Asia +2023-12-03,81025,7843,"[""Headphones"", ""Charger""]",1424.76,"{""seasonal"": ""6%""}",35621,0,Africa +2023-06-05,81026,2493,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3660.52,{},29921,0,Asia +2024-11-30,81027,3854,"[""Laptop""]",654.12,"{"""": ""16%""}",225547,1,Asia +2024-06-06,81028,4246,"[""Headphones"", ""Phone""]",3867.63,"{""seasonal"": ""19%""}",118395,1,South America +2024-04-09,81029,7260,"[""Wireless Mouse""]",2357.67,"{""seasonal"": ""17%""}",205034,0,Europe +2023-06-16,81030,9589,"[""Phone""]",584.89,{},115614,0,North America +2024-12-09,81031,2653,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3250.11,{},263981,0,North America +2024-12-16,81032,9171,"[""Keyboard""]",699.74,"{""loyalty"": ""10%""}",21726,0,Europe +2024-07-17,81033,985,"[""Laptop"", ""Tablet"", ""Charger""]",3729.16,{},124561,1,Asia +2023-05-25,81034,8287,"[""Tablet"", ""Keyboard"", ""Charger""]",4812.16,{},55174,0,South America +2023-09-24,81035,4436,"[""Phone""]",425.72,{},107773,0,South America +2024-07-18,81036,6188,"[""Charger""]",1625.61,{},136015,0,Africa +2023-05-04,81037,2061,"[""Laptop""]",2503.7,{},250912,0,North America +2024-10-21,81038,4177,"[""Headphones"", ""Phone""]",2548.22,"{"""": ""25%""}",18206,0,South America +2024-08-27,81039,7399,"[""Charger"", ""Headphones"", ""Laptop""]",4456.82,{},140220,0,South America +2024-04-11,81040,1415,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3434.19,{},200655,1,South America +2023-04-28,81041,9062,"[""Tablet"", ""Phone""]",3543.83,{},184385,1,Asia +2023-08-04,81042,9615,"[""Keyboard""]",3110.22,{},75402,0,North America +2024-09-05,81043,6935,"[""Tablet""]",2403.97,"{""seasonal"": ""30%""}",278403,1,Europe +2023-03-30,81044,8367,"[""Monitor"", ""Charger"", ""Phone""]",2781.39,"{""seasonal"": ""19%""}",64591,1,Africa +2024-04-21,81045,5285,"[""Monitor""]",764.96,{},167517,0,North America +2023-07-18,81046,6283,"[""Headphones""]",2599.4,{},224130,0,Europe +2023-07-13,81047,3471,"[""Laptop""]",3741.88,"{""loyalty"": ""5%""}",157256,1,Africa +2023-04-07,81048,1477,"[""Headphones"", ""Phone""]",1403.22,{},69782,0,Europe +2023-05-05,81049,6559,"[""Wireless Mouse"", ""Headphones""]",2213.91,{},252858,0,North America +2024-12-14,81050,8,"[""Keyboard""]",1059.97,{},234398,1,Europe +2023-05-02,81051,3735,"[""Keyboard""]",2335.09,"{"""": ""13%""}",109882,0,Asia +2024-05-19,81052,3331,"[""Tablet"", ""Laptop""]",1509.24,"{""seasonal"": ""11%""}",275388,1,South America +2023-09-19,81053,9042,"[""Wireless Mouse"", ""Phone""]",522.89,"{""seasonal"": ""8%""}",67705,1,Asia +2023-03-10,81054,6116,"[""Monitor"", ""Tablet"", ""Phone""]",4881.58,{},115827,0,Europe +2023-05-26,81055,5037,"[""Monitor""]",743.4,"{"""": ""22%""}",286148,0,Africa +2024-12-14,81056,8328,"[""Monitor""]",4189.35,"{""seasonal"": ""8%""}",90028,0,Europe +2023-06-22,81057,7827,"[""Keyboard"", ""Charger""]",2531.29,{},265762,0,Asia +2024-03-19,81058,2866,"[""Wireless Mouse"", ""Tablet""]",4273.49,"{""seasonal"": ""21%""}",136540,1,Africa +2024-07-02,81059,6165,"[""Headphones"", ""Laptop"", ""Phone""]",4320.42,{},237961,1,South America +2023-04-09,81060,6927,"[""Headphones""]",66.36,{},146792,1,Africa +2023-02-21,81061,1560,"[""Laptop""]",4913.12,{},117649,0,South America +2024-07-12,81062,2908,"[""Wireless Mouse""]",4849.87,"{""seasonal"": ""27%""}",242737,1,Europe +2023-06-02,81063,9291,"[""Headphones"", ""Phone"", ""Tablet""]",2976.21,{},85732,0,South America +2024-01-10,81064,5987,"[""Laptop"", ""Tablet""]",1843.78,"{""promo"": ""28%""}",67433,0,Europe +2024-08-24,81065,1289,"[""Monitor"", ""Charger"", ""Headphones""]",1298.88,{},52560,1,South America +2023-01-17,81066,1645,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2111.25,{},105180,1,North America +2024-03-28,81067,8616,"[""Laptop"", ""Tablet"", ""Phone""]",4797.56,"{"""": ""12%""}",97357,0,North America +2024-06-30,81068,5727,"[""Laptop"", ""Monitor""]",2211.43,{},153049,1,Africa +2023-11-17,81069,1260,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",544.44,"{"""": ""22%""}",90629,0,Africa +2024-05-19,81070,2244,"[""Keyboard""]",2952.18,{},166228,0,Africa +2024-05-24,81071,2790,"[""Wireless Mouse"", ""Keyboard""]",3205.3,"{""promo"": ""10%""}",89066,0,South America +2023-08-16,81072,6354,"[""Wireless Mouse""]",3153.11,"{""seasonal"": ""29%""}",159520,1,Africa +2024-03-29,81073,7184,"[""Monitor"", ""Headphones""]",854.47,"{""promo"": ""29%""}",250170,1,Asia +2024-05-03,81074,6950,"[""Charger"", ""Headphones"", ""Tablet""]",1321.5,{},193550,0,Asia +2023-05-21,81075,7988,"[""Headphones"", ""Tablet"", ""Charger""]",3750.49,{},287055,1,Africa +2024-05-18,81076,485,"[""Phone"", ""Monitor"", ""Charger""]",638.03,"{""loyalty"": ""28%""}",277576,1,Europe +2023-12-15,81077,1110,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1557.4,{},109687,1,Asia +2024-10-07,81078,6383,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",471.97,{},33848,0,Europe +2024-11-06,81079,3053,"[""Keyboard""]",3187.56,"{""loyalty"": ""5%""}",266215,0,Africa +2024-04-30,81080,4609,"[""Charger"", ""Wireless Mouse""]",1771.82,{},181641,1,Europe +2023-08-02,81081,9020,"[""Laptop"", ""Monitor""]",4421.36,{},49779,0,Europe +2024-12-26,81082,8428,"[""Laptop""]",3002.03,"{""loyalty"": ""16%""}",30457,0,Europe +2023-09-03,81083,2741,"[""Tablet"", ""Keyboard"", ""Laptop""]",3046.33,{},205031,1,Europe +2024-04-13,81084,2326,"[""Headphones"", ""Monitor"", ""Laptop""]",1192.13,"{""seasonal"": ""24%""}",203208,1,Africa +2023-06-10,81085,1353,"[""Wireless Mouse"", ""Phone""]",3430.66,"{""loyalty"": ""27%""}",76713,0,North America +2024-01-08,81086,5638,"[""Wireless Mouse""]",2677.41,"{"""": ""6%""}",47091,1,Europe +2024-07-14,81087,5768,"[""Monitor"", ""Charger""]",1663.19,"{"""": ""30%""}",173591,1,Asia +2024-04-14,81088,2736,"[""Headphones"", ""Laptop""]",1868.14,"{""promo"": ""7%""}",281750,1,Africa +2024-03-07,81089,5542,"[""Tablet""]",2870.59,"{""loyalty"": ""21%""}",260970,1,Africa +2023-06-29,81090,6616,"[""Phone"", ""Tablet""]",4954.46,{},51179,1,Asia +2024-03-30,81091,2520,"[""Headphones"", ""Monitor"", ""Laptop""]",3573.64,{},25934,0,Africa +2024-06-12,81092,8683,"[""Tablet""]",4388.47,{},228938,1,Africa +2023-08-20,81093,358,"[""Charger"", ""Monitor""]",738.01,"{""loyalty"": ""26%""}",241949,1,North America +2023-12-13,81094,7611,"[""Tablet"", ""Charger""]",437.68,"{""loyalty"": ""21%""}",245503,1,Asia +2024-06-25,81095,4982,"[""Monitor"", ""Laptop"", ""Headphones""]",3930.9,{},289238,1,South America +2023-02-24,81096,5386,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1419.3,"{""promo"": ""12%""}",197903,0,North America +2024-07-13,81097,7110,"[""Monitor""]",1203.63,"{"""": ""7%""}",191052,1,Asia +2023-11-04,81098,2944,"[""Tablet""]",1500.58,{},11540,1,Africa +2023-11-29,81099,1852,"[""Charger""]",2057.33,{},72031,1,North America +2024-10-05,81100,908,"[""Tablet""]",1738.73,{},65661,1,Asia +2024-08-25,81101,5622,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4599.78,{},10627,1,North America +2023-05-08,81102,9440,"[""Monitor""]",4873.95,"{""seasonal"": ""19%""}",214823,0,South America +2023-02-19,81103,8826,"[""Tablet"", ""Phone""]",709.47,{},115130,0,Asia +2024-06-30,81104,1001,"[""Headphones"", ""Monitor""]",1955.5,{},181256,0,Europe +2023-10-07,81105,1879,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",652.95,"{""loyalty"": ""14%""}",100836,1,Europe +2023-09-27,81106,2858,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4023.51,{},196326,1,Asia +2024-07-30,81107,905,"[""Wireless Mouse"", ""Charger""]",219.51,"{""loyalty"": ""9%""}",6623,0,Africa +2024-11-25,81108,1020,"[""Phone""]",4864.21,"{""promo"": ""11%""}",245574,0,South America +2024-08-10,81109,372,"[""Headphones""]",4252.69,{},286985,0,Europe +2023-04-06,81110,3695,"[""Tablet"", ""Laptop""]",1204.74,{},189308,1,North America +2023-01-12,81111,8134,"[""Charger"", ""Wireless Mouse"", ""Phone""]",258.67,{},56809,0,Africa +2024-06-22,81112,3686,"[""Headphones"", ""Keyboard""]",3944.67,{},272703,1,South America +2024-08-10,81113,3163,"[""Keyboard"", ""Phone"", ""Tablet""]",4164.37,"{"""": ""10%""}",60722,1,Africa +2024-11-06,81114,2696,"[""Tablet"", ""Monitor"", ""Headphones""]",4585.85,{},9033,0,Africa +2024-01-31,81115,7487,"[""Charger"", ""Tablet"", ""Laptop""]",590.34,{},59283,0,Africa +2023-07-23,81116,6206,"[""Tablet"", ""Headphones""]",2357.69,{},280846,0,Asia +2024-09-12,81117,1361,"[""Tablet""]",407.35,"{""loyalty"": ""9%""}",155742,1,Europe +2024-08-20,81118,7857,"[""Keyboard"", ""Monitor""]",735.94,"{""loyalty"": ""14%""}",49646,1,Asia +2024-08-30,81119,5763,"[""Wireless Mouse"", ""Monitor""]",1843.81,"{""promo"": ""19%""}",181060,0,South America +2023-07-02,81120,4981,"[""Phone"", ""Monitor"", ""Tablet""]",1106.66,{},119367,0,South America +2023-09-23,81121,4266,"[""Charger"", ""Wireless Mouse"", ""Phone""]",935.12,{},194024,0,Africa +2024-01-21,81122,9628,"[""Charger"", ""Keyboard""]",1333.0,{},97233,1,South America +2023-10-04,81123,9848,"[""Charger"", ""Laptop""]",4045.37,"{""seasonal"": ""14%""}",8634,0,Europe +2023-01-24,81124,1963,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4932.37,"{""loyalty"": ""22%""}",264849,0,Africa +2024-08-21,81125,6186,"[""Wireless Mouse"", ""Keyboard""]",2296.59,{},186207,0,South America +2023-07-28,81126,4960,"[""Charger"", ""Monitor""]",1123.8,"{""promo"": ""25%""}",137127,0,Asia +2023-05-14,81127,1,"[""Monitor"", ""Tablet""]",4852.53,"{""promo"": ""25%""}",149383,1,Europe +2023-04-07,81128,9730,"[""Tablet""]",4966.1,{},214082,0,Africa +2024-04-23,81129,6523,"[""Monitor""]",1238.21,"{""loyalty"": ""14%""}",249283,1,North America +2024-02-06,81130,2053,"[""Phone"", ""Laptop""]",2680.9,{},157472,1,Africa +2024-10-09,81131,6430,"[""Wireless Mouse""]",1305.28,"{""promo"": ""18%""}",40980,1,North America +2023-11-23,81132,1589,"[""Laptop"", ""Headphones"", ""Monitor""]",4778.72,"{"""": ""18%""}",3517,0,North America +2023-10-29,81133,4829,"[""Charger""]",3945.39,{},63725,1,South America +2024-03-28,81134,437,"[""Monitor"", ""Phone""]",4308.01,{},289911,0,Europe +2024-01-06,81135,9729,"[""Keyboard"", ""Wireless Mouse""]",2132.09,{},245006,0,Africa +2024-06-09,81136,8936,"[""Keyboard""]",113.82,"{"""": ""20%""}",66125,1,South America +2023-01-23,81137,8615,"[""Laptop""]",944.74,{},217554,0,Europe +2023-11-11,81138,462,"[""Headphones""]",4236.28,{},254507,0,Asia +2024-01-06,81139,3967,"[""Laptop"", ""Charger""]",4283.25,{},241729,0,Asia +2023-01-14,81140,4790,"[""Monitor""]",2872.97,"{"""": ""27%""}",142033,0,Europe +2023-05-25,81141,3602,"[""Monitor""]",854.5,"{"""": ""27%""}",56986,0,Europe +2024-11-01,81142,7435,"[""Charger""]",1524.99,"{""promo"": ""6%""}",298129,0,Asia +2024-10-15,81143,3954,"[""Phone"", ""Headphones""]",4279.26,{},244398,1,North America +2024-09-20,81144,9631,"[""Laptop"", ""Keyboard"", ""Tablet""]",3490.86,"{"""": ""9%""}",169677,0,Europe +2023-09-21,81145,2213,"[""Wireless Mouse"", ""Keyboard""]",843.48,{},145352,1,North America +2023-02-16,81146,9972,"[""Wireless Mouse""]",2445.56,{},154585,0,Africa +2023-12-13,81147,5718,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3802.71,"{"""": ""11%""}",38807,0,Africa +2024-08-27,81148,4358,"[""Keyboard""]",2210.46,{},36368,1,North America +2023-07-08,81149,221,"[""Monitor"", ""Charger""]",4809.18,{},37730,0,Asia +2024-12-31,81150,6659,"[""Charger"", ""Keyboard""]",1100.88,"{""seasonal"": ""22%""}",211193,0,Africa +2024-10-24,81151,9040,"[""Headphones"", ""Laptop"", ""Phone""]",4728.09,{},152560,0,North America +2023-09-22,81152,9527,"[""Monitor""]",3401.81,{},163156,0,Europe +2024-05-19,81153,7000,"[""Phone""]",3025.52,{},257837,1,Europe +2024-12-19,81154,3931,"[""Tablet"", ""Headphones""]",4622.54,{},33947,0,Europe +2024-12-25,81155,633,"[""Headphones""]",1553.21,{},249946,1,North America +2024-03-31,81156,3831,"[""Tablet"", ""Wireless Mouse""]",2294.47,{},23922,0,Africa +2024-08-15,81157,9921,"[""Headphones"", ""Phone"", ""Charger""]",3757.91,"{""loyalty"": ""11%""}",202651,0,Asia +2023-01-18,81158,2653,"[""Monitor""]",4937.15,{},69145,0,Europe +2024-05-27,81159,1289,"[""Laptop"", ""Tablet"", ""Keyboard""]",2437.6,"{""seasonal"": ""10%""}",204734,1,South America +2024-07-10,81160,5008,"[""Laptop""]",4223.62,{},193019,1,Africa +2024-07-08,81161,7001,"[""Keyboard""]",1681.73,{},246437,0,Asia +2024-07-07,81162,7512,"[""Monitor""]",4020.53,{},162604,1,North America +2024-06-19,81163,263,"[""Tablet"", ""Monitor""]",2244.57,{},188110,0,Africa +2024-01-19,81164,2513,"[""Wireless Mouse"", ""Charger""]",1400.36,{},237741,0,North America +2024-01-30,81165,706,"[""Charger"", ""Laptop"", ""Phone""]",3519.69,{},99183,1,Africa +2023-05-06,81166,109,"[""Headphones"", ""Charger""]",3649.78,"{""loyalty"": ""15%""}",136128,1,Europe +2023-08-02,81167,8109,"[""Tablet"", ""Phone""]",186.85,{},263283,0,South America +2024-06-09,81168,3607,"[""Headphones"", ""Wireless Mouse""]",4399.12,"{""loyalty"": ""25%""}",270695,1,South America +2024-06-15,81169,8230,"[""Monitor"", ""Phone"", ""Charger""]",4459.62,{},230290,0,South America +2024-01-29,81170,9137,"[""Phone"", ""Laptop"", ""Monitor""]",2279.32,{},227339,0,South America +2024-03-08,81171,8984,"[""Phone""]",1689.03,{},33854,0,North America +2023-06-26,81172,2192,"[""Tablet"", ""Headphones"", ""Monitor""]",2666.7,{},255624,0,Asia +2024-09-26,81173,3867,"[""Phone"", ""Monitor""]",3819.99,{},188989,0,North America +2023-06-21,81174,3004,"[""Charger"", ""Keyboard"", ""Tablet""]",4042.02,"{""promo"": ""9%""}",233311,1,South America +2023-12-26,81175,6120,"[""Headphones"", ""Tablet"", ""Phone""]",612.18,{},62717,0,North America +2023-04-25,81176,1317,"[""Keyboard"", ""Tablet"", ""Headphones""]",1336.49,{},88634,0,Europe +2023-09-12,81177,1892,"[""Phone"", ""Keyboard"", ""Laptop""]",1556.56,"{""loyalty"": ""24%""}",187933,0,North America +2024-06-29,81178,248,"[""Charger"", ""Wireless Mouse""]",3894.1,{},61202,1,Europe +2023-01-06,81179,4658,"[""Headphones"", ""Tablet""]",4229.7,"{""loyalty"": ""13%""}",248164,1,Africa +2023-03-11,81180,8672,"[""Phone""]",1372.63,"{""seasonal"": ""6%""}",260850,0,North America +2024-08-22,81181,8965,"[""Charger"", ""Tablet"", ""Laptop""]",190.79,"{""seasonal"": ""18%""}",233004,0,Europe +2024-05-03,81182,4340,"[""Keyboard"", ""Monitor"", ""Tablet""]",2893.48,{},70512,0,Asia +2023-12-18,81183,380,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1813.24,{},222783,0,Africa +2023-01-20,81184,3283,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3066.94,"{""seasonal"": ""18%""}",259900,0,South America +2024-01-19,81185,7247,"[""Charger"", ""Tablet"", ""Headphones""]",1449.41,"{""promo"": ""19%""}",269443,1,North America +2024-06-21,81186,8129,"[""Tablet""]",4361.77,{},183496,1,South America +2023-10-23,81187,8165,"[""Tablet"", ""Monitor"", ""Keyboard""]",4998.31,"{""promo"": ""12%""}",105305,0,Europe +2023-05-29,81188,8549,"[""Wireless Mouse"", ""Keyboard""]",4458.97,"{""promo"": ""13%""}",124441,1,Africa +2024-04-19,81189,6541,"[""Laptop"", ""Keyboard"", ""Tablet""]",3176.43,"{""seasonal"": ""10%""}",132817,1,South America +2024-03-07,81190,3536,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2606.67,{},184778,1,Africa +2023-07-31,81191,6572,"[""Phone"", ""Wireless Mouse"", ""Charger""]",993.3,"{""loyalty"": ""5%""}",271539,1,South America +2024-08-24,81192,3577,"[""Headphones"", ""Monitor"", ""Charger""]",496.47,"{"""": ""30%""}",201520,0,Africa +2023-03-05,81193,9094,"[""Wireless Mouse"", ""Phone""]",3471.35,{},135577,0,North America +2024-01-29,81194,2702,"[""Laptop""]",4391.6,"{""loyalty"": ""24%""}",251788,1,Africa +2023-06-02,81195,5475,"[""Keyboard"", ""Laptop""]",828.8,"{""seasonal"": ""21%""}",39025,1,South America +2024-12-06,81196,6268,"[""Phone"", ""Monitor""]",1545.95,{},52330,0,North America +2023-02-11,81197,7926,"[""Wireless Mouse""]",2877.36,"{"""": ""15%""}",136146,1,North America +2024-08-11,81198,2305,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2938.16,{},201943,1,North America +2023-01-03,81199,7155,"[""Monitor""]",2386.48,"{""loyalty"": ""29%""}",238362,0,North America +2024-03-18,81200,1677,"[""Headphones"", ""Keyboard"", ""Tablet""]",4272.91,"{""loyalty"": ""30%""}",189419,0,Africa +2023-07-16,81201,452,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1772.17,{},251528,1,Africa +2023-12-25,81202,8449,"[""Wireless Mouse"", ""Laptop""]",3123.14,{},146060,0,Asia +2024-06-20,81203,8439,"[""Tablet""]",90.65,{},55798,0,North America +2024-04-24,81204,3431,"[""Phone"", ""Laptop""]",383.08,"{""loyalty"": ""14%""}",123188,1,Africa +2024-01-07,81205,5916,"[""Monitor"", ""Headphones""]",3954.53,"{""loyalty"": ""12%""}",159909,1,North America +2023-04-10,81206,3149,"[""Charger"", ""Headphones""]",689.09,{},78521,1,Africa +2023-07-17,81207,6826,"[""Laptop""]",1641.41,{},86102,0,North America +2023-05-07,81208,3053,"[""Phone"", ""Charger"", ""Keyboard""]",2003.56,"{""seasonal"": ""25%""}",96780,1,Africa +2023-06-08,81209,9982,"[""Wireless Mouse""]",3847.78,"{""seasonal"": ""29%""}",78013,1,Asia +2024-06-30,81210,162,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1240.83,{},59857,0,South America +2024-01-27,81211,5136,"[""Phone"", ""Headphones"", ""Monitor""]",373.0,{},169602,1,North America +2023-03-04,81212,1626,"[""Monitor"", ""Phone""]",4417.06,"{""promo"": ""17%""}",182217,0,Europe +2023-07-09,81213,7761,"[""Tablet"", ""Phone"", ""Keyboard""]",4640.88,{},17006,0,Africa +2024-10-11,81214,9028,"[""Laptop"", ""Wireless Mouse""]",3708.25,"{"""": ""18%""}",271949,0,Europe +2023-11-04,81215,7463,"[""Phone"", ""Tablet""]",2579.27,{},58928,1,Africa +2023-07-08,81216,9382,"[""Headphones""]",2861.46,"{""seasonal"": ""24%""}",291305,1,Africa +2023-12-22,81217,647,"[""Phone"", ""Wireless Mouse""]",2248.26,"{""promo"": ""24%""}",145291,0,Asia +2024-11-01,81218,2863,"[""Charger""]",1048.95,"{""promo"": ""15%""}",268184,1,Africa +2023-07-05,81219,3606,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3421.5,{},133707,1,Asia +2024-01-09,81220,6628,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2088.07,{},136022,1,South America +2023-01-17,81221,35,"[""Laptop"", ""Charger"", ""Keyboard""]",605.45,"{"""": ""24%""}",188448,1,Africa +2023-03-05,81222,7911,"[""Phone"", ""Charger""]",2762.81,"{""promo"": ""26%""}",184730,0,North America +2023-11-29,81223,9340,"[""Charger"", ""Tablet""]",4233.48,{},45677,1,Asia +2024-07-27,81224,4089,"[""Keyboard""]",73.14,{},285483,0,Europe +2023-12-30,81225,551,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",328.1,{},167723,0,Europe +2023-02-10,81226,6715,"[""Phone"", ""Laptop""]",4879.55,{},178281,1,Asia +2023-07-05,81227,2680,"[""Laptop"", ""Charger""]",2345.76,"{""loyalty"": ""12%""}",266138,0,Europe +2024-06-13,81228,6596,"[""Charger"", ""Headphones"", ""Keyboard""]",819.17,{},241229,1,Asia +2023-04-24,81229,1948,"[""Headphones""]",242.4,{},6338,0,South America +2023-06-14,81230,2406,"[""Headphones"", ""Monitor""]",3529.35,{},237257,0,Europe +2023-04-29,81231,6382,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1647.75,{},149610,1,Europe +2023-12-26,81232,6130,"[""Charger"", ""Laptop""]",3458.06,{},78842,0,Asia +2024-06-19,81233,7737,"[""Wireless Mouse"", ""Tablet""]",4550.35,"{""promo"": ""25%""}",132099,0,South America +2023-01-05,81234,7944,"[""Laptop"", ""Charger"", ""Tablet""]",4723.41,{},122755,0,South America +2023-04-03,81235,8198,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2934.95,"{""promo"": ""21%""}",299267,0,North America +2023-04-15,81236,891,"[""Phone""]",4289.25,{},196125,0,Europe +2024-03-27,81237,6761,"[""Wireless Mouse""]",1912.65,"{"""": ""14%""}",113633,0,South America +2023-10-07,81238,870,"[""Headphones""]",4374.07,{},17605,1,South America +2024-08-31,81239,3264,"[""Laptop"", ""Tablet"", ""Phone""]",3856.25,"{""seasonal"": ""21%""}",187682,0,North America +2023-12-28,81240,6780,"[""Keyboard""]",3081.28,"{""loyalty"": ""25%""}",164861,1,South America +2024-01-23,81241,9519,"[""Tablet""]",4371.39,{},237305,1,Asia +2024-07-24,81242,671,"[""Keyboard"", ""Wireless Mouse""]",3783.73,"{""promo"": ""22%""}",219283,0,South America +2024-08-24,81243,8767,"[""Headphones"", ""Monitor"", ""Tablet""]",2339.29,{},296558,1,South America +2024-11-14,81244,9149,"[""Tablet"", ""Monitor"", ""Keyboard""]",3260.93,{},182096,0,North America +2024-01-03,81245,6055,"[""Monitor"", ""Laptop"", ""Charger""]",4397.16,"{"""": ""20%""}",273710,0,North America +2024-10-13,81246,1086,"[""Headphones"", ""Tablet""]",1440.36,"{""loyalty"": ""14%""}",274438,1,North America +2023-10-22,81247,7324,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",540.26,{},116792,1,North America +2024-01-31,81248,7350,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",656.36,{},121978,0,North America +2023-12-31,81249,4320,"[""Phone""]",1373.7,{},106927,1,Asia +2024-09-24,81250,9196,"[""Charger"", ""Wireless Mouse""]",288.58,"{""promo"": ""8%""}",149103,0,North America +2024-02-10,81251,4748,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1708.28,{},290735,0,Asia +2023-01-10,81252,3406,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",54.21,"{""seasonal"": ""12%""}",294988,1,Asia +2024-04-13,81253,1558,"[""Monitor""]",3694.24,"{""promo"": ""5%""}",112816,0,Asia +2024-07-19,81254,4948,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2850.59,"{""seasonal"": ""28%""}",269085,1,Asia +2024-11-14,81255,5212,"[""Headphones""]",1834.03,{},97503,1,Europe +2023-03-11,81256,5932,"[""Wireless Mouse"", ""Keyboard""]",4752.9,{},27545,0,Asia +2023-08-19,81257,778,"[""Phone""]",996.77,"{""seasonal"": ""28%""}",264268,1,Europe +2023-05-08,81258,2516,"[""Phone""]",2392.31,"{""seasonal"": ""18%""}",119817,0,North America +2023-01-10,81259,5049,"[""Monitor""]",3277.77,{},218715,0,Europe +2024-12-10,81260,3423,"[""Tablet"", ""Charger"", ""Keyboard""]",1811.58,{},294122,1,Africa +2024-08-23,81261,2311,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",949.12,{},25491,0,South America +2023-08-06,81262,5278,"[""Monitor"", ""Tablet"", ""Keyboard""]",1872.61,"{""promo"": ""27%""}",110837,1,Asia +2024-01-21,81263,7292,"[""Laptop"", ""Charger""]",254.71,{},94903,1,North America +2024-06-12,81264,2690,"[""Monitor"", ""Tablet"", ""Charger""]",3747.19,{},59026,0,Asia +2024-05-27,81265,7137,"[""Tablet""]",4202.15,{},242230,1,Europe +2023-08-27,81266,4873,"[""Phone"", ""Monitor"", ""Laptop""]",3593.68,{},154495,1,Africa +2024-05-10,81267,1923,"[""Tablet""]",2468.16,{},119562,0,North America +2023-04-01,81268,9445,"[""Keyboard"", ""Laptop"", ""Headphones""]",4134.97,"{""seasonal"": ""30%""}",276082,1,North America +2023-06-06,81269,9875,"[""Charger"", ""Tablet""]",1142.01,"{""seasonal"": ""22%""}",213470,0,North America +2024-06-28,81270,5215,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4054.82,{},76959,0,Asia +2024-12-21,81271,7945,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2368.32,{},137933,1,South America +2024-12-30,81272,647,"[""Phone"", ""Laptop"", ""Headphones""]",3155.93,{},124391,0,Africa +2024-10-03,81273,3362,"[""Monitor"", ""Wireless Mouse""]",4862.73,"{""seasonal"": ""19%""}",98750,1,Europe +2023-08-06,81274,7748,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",789.35,"{""seasonal"": ""25%""}",120942,1,North America +2023-03-03,81275,674,"[""Tablet"", ""Laptop""]",1430.17,{},80689,0,South America +2024-02-05,81276,6171,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4344.38,"{""seasonal"": ""18%""}",166180,1,Africa +2023-02-24,81277,6011,"[""Laptop"", ""Monitor""]",445.83,"{""loyalty"": ""25%""}",128868,0,Africa +2024-03-07,81278,8897,"[""Phone"", ""Monitor"", ""Headphones""]",4715.96,"{""loyalty"": ""17%""}",44041,1,North America +2024-10-31,81279,6118,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3335.68,"{""seasonal"": ""21%""}",18302,1,North America +2024-05-15,81280,9949,"[""Tablet"", ""Monitor""]",824.55,{},251648,1,North America +2024-04-24,81281,1357,"[""Headphones""]",2475.26,"{""loyalty"": ""25%""}",281705,0,Africa +2023-11-08,81282,4552,"[""Keyboard"", ""Tablet"", ""Charger""]",4739.8,"{""loyalty"": ""26%""}",39855,1,Europe +2024-11-14,81283,4120,"[""Tablet"", ""Headphones""]",676.49,{},28946,1,North America +2024-01-01,81284,9296,"[""Charger"", ""Phone"", ""Monitor""]",640.07,"{""promo"": ""28%""}",234772,1,Africa +2024-06-18,81285,1545,"[""Phone""]",4006.45,"{"""": ""15%""}",179007,1,South America +2023-01-06,81286,5903,"[""Laptop""]",57.95,"{"""": ""14%""}",205742,1,North America +2023-12-04,81287,2372,"[""Headphones"", ""Charger""]",4637.48,"{""promo"": ""8%""}",254002,1,North America +2023-03-09,81288,9820,"[""Phone"", ""Tablet"", ""Headphones""]",1820.29,{},151745,1,North America +2023-11-08,81289,7571,"[""Laptop""]",4042.44,"{"""": ""30%""}",9699,1,North America +2023-06-20,81290,499,"[""Wireless Mouse"", ""Monitor""]",2086.06,{},31585,1,Europe +2023-12-05,81291,7830,"[""Headphones"", ""Charger""]",4842.17,"{"""": ""16%""}",212173,1,Asia +2024-11-02,81292,3865,"[""Headphones"", ""Keyboard""]",3720.21,"{"""": ""15%""}",8472,0,Asia +2023-01-27,81293,3174,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1714.76,"{"""": ""21%""}",103085,1,South America +2024-01-24,81294,8639,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",263.04,"{"""": ""14%""}",178114,0,South America +2023-06-28,81295,3086,"[""Laptop""]",1001.96,"{""promo"": ""9%""}",190917,0,Africa +2024-06-14,81296,9676,"[""Monitor"", ""Laptop"", ""Tablet""]",3624.66,{},65400,1,Europe +2024-05-13,81297,3327,"[""Monitor"", ""Charger"", ""Keyboard""]",635.26,"{""seasonal"": ""9%""}",18694,0,Africa +2023-01-06,81298,2482,"[""Tablet"", ""Phone""]",4125.79,{},254808,1,Africa +2023-04-16,81299,7957,"[""Phone"", ""Monitor"", ""Tablet""]",590.15,"{""promo"": ""28%""}",226184,1,Asia +2024-03-29,81300,3226,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",413.82,"{"""": ""24%""}",118061,0,Africa +2024-10-15,81301,7441,"[""Keyboard"", ""Monitor""]",96.77,{},171402,1,Asia +2024-08-19,81302,8326,"[""Keyboard""]",378.09,"{""promo"": ""7%""}",26996,0,South America +2023-06-29,81303,8933,"[""Tablet"", ""Wireless Mouse""]",841.45,"{"""": ""18%""}",243917,1,Asia +2024-01-23,81304,2311,"[""Monitor"", ""Laptop"", ""Keyboard""]",3066.84,{},268133,0,Africa +2024-09-26,81305,2590,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3943.02,{},136925,1,Europe +2024-04-05,81306,6917,"[""Tablet"", ""Laptop""]",4750.01,"{"""": ""14%""}",19616,0,North America +2023-08-28,81307,7697,"[""Charger"", ""Keyboard"", ""Tablet""]",2179.38,"{""promo"": ""27%""}",267983,0,North America +2024-03-22,81308,1841,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2426.76,{},150666,1,Europe +2024-04-22,81309,5751,"[""Keyboard""]",1063.37,{},184211,1,North America +2024-06-23,81310,6105,"[""Laptop"", ""Headphones""]",1465.88,{},227097,1,Africa +2023-02-05,81311,8107,"[""Phone"", ""Monitor""]",4726.96,{},123489,1,Africa +2023-05-13,81312,4511,"[""Charger"", ""Tablet""]",4341.38,"{""promo"": ""28%""}",138006,1,South America +2023-03-26,81313,2869,"[""Monitor""]",1705.65,"{""seasonal"": ""17%""}",295393,0,South America +2024-03-31,81314,3921,"[""Phone"", ""Keyboard""]",1533.82,"{""promo"": ""24%""}",63571,1,South America +2024-02-18,81315,5444,"[""Monitor""]",732.97,"{"""": ""10%""}",186530,1,South America +2023-07-25,81316,9810,"[""Keyboard"", ""Monitor""]",979.78,{},144325,0,North America +2024-05-10,81317,450,"[""Monitor"", ""Keyboard""]",4541.0,{},13135,0,Africa +2023-07-13,81318,3949,"[""Headphones""]",4422.93,"{""seasonal"": ""22%""}",292226,0,North America +2024-03-05,81319,8034,"[""Monitor"", ""Wireless Mouse""]",987.14,"{""loyalty"": ""19%""}",210545,0,Europe +2024-12-04,81320,1929,"[""Charger"", ""Keyboard""]",553.82,{},37330,0,Africa +2023-11-15,81321,261,"[""Wireless Mouse"", ""Phone""]",220.5,{},57771,1,Africa +2024-09-03,81322,239,"[""Keyboard"", ""Tablet"", ""Headphones""]",948.23,"{"""": ""14%""}",255267,1,Africa +2023-04-11,81323,7522,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4337.79,"{""seasonal"": ""9%""}",270991,1,Asia +2024-05-05,81324,1114,"[""Keyboard"", ""Tablet"", ""Headphones""]",3940.37,{},101979,0,Europe +2024-11-10,81325,3543,"[""Headphones"", ""Keyboard"", ""Charger""]",2728.13,{},135278,0,Europe +2024-09-19,81326,6543,"[""Keyboard"", ""Headphones"", ""Monitor""]",4322.02,"{""loyalty"": ""18%""}",11454,0,Europe +2024-09-13,81327,4082,"[""Laptop"", ""Tablet""]",560.44,"{""promo"": ""14%""}",233802,0,South America +2023-01-16,81328,7667,"[""Charger""]",4417.3,"{""seasonal"": ""13%""}",269246,0,Africa +2023-04-01,81329,1847,"[""Laptop""]",3837.72,{},204182,1,South America +2024-04-10,81330,8246,"[""Keyboard"", ""Phone""]",4490.13,{},233928,0,South America +2024-12-18,81331,9868,"[""Phone""]",1391.09,{},3464,0,North America +2023-12-01,81332,9770,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1846.71,{},58287,1,Europe +2024-12-25,81333,7854,"[""Monitor"", ""Tablet"", ""Keyboard""]",4349.27,"{""loyalty"": ""8%""}",152370,0,Africa +2023-11-30,81334,928,"[""Keyboard""]",3895.98,{},174827,0,North America +2023-03-23,81335,2122,"[""Charger""]",2919.41,"{""promo"": ""20%""}",250009,0,North America +2023-11-27,81336,9983,"[""Wireless Mouse""]",798.72,{},283643,0,Europe +2023-11-07,81337,8193,"[""Keyboard""]",1403.96,{},101025,0,Africa +2023-10-23,81338,5556,"[""Wireless Mouse""]",3872.64,"{""seasonal"": ""8%""}",86272,1,Europe +2023-05-12,81339,390,"[""Phone"", ""Keyboard"", ""Charger""]",1219.8,{},265808,0,Asia +2023-02-15,81340,5862,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2142.13,"{""promo"": ""23%""}",28883,0,Asia +2023-02-11,81341,172,"[""Monitor"", ""Charger""]",1637.29,{},142030,1,Africa +2024-10-12,81342,5734,"[""Keyboard""]",3766.57,"{"""": ""7%""}",267373,0,Asia +2024-06-30,81343,5463,"[""Keyboard""]",102.66,"{""promo"": ""10%""}",93643,1,Europe +2023-05-13,81344,6439,"[""Keyboard""]",1557.33,{},140283,1,South America +2024-06-04,81345,9931,"[""Headphones""]",623.96,{},120115,1,Asia +2023-07-13,81346,7349,"[""Charger"", ""Tablet"", ""Monitor""]",4871.88,"{"""": ""30%""}",262043,0,South America +2024-11-25,81347,1041,"[""Headphones""]",4638.73,"{""loyalty"": ""20%""}",63840,0,North America +2024-10-30,81348,4019,"[""Headphones"", ""Keyboard""]",1050.59,{},49501,1,North America +2023-01-02,81349,4283,"[""Phone"", ""Wireless Mouse""]",254.91,{},282248,0,Africa +2024-01-18,81350,4480,"[""Monitor"", ""Keyboard""]",2460.1,"{"""": ""9%""}",30859,0,South America +2024-03-21,81351,7827,"[""Headphones"", ""Tablet"", ""Phone""]",4904.0,"{""seasonal"": ""13%""}",276900,0,Africa +2023-08-08,81352,5616,"[""Headphones"", ""Phone""]",964.41,{},66924,0,South America +2024-01-29,81353,4006,"[""Tablet"", ""Headphones""]",3413.9,"{""promo"": ""24%""}",58286,0,North America +2023-04-01,81354,6983,"[""Phone""]",4549.59,{},81651,1,South America +2024-06-23,81355,4621,"[""Charger""]",1453.91,{},20485,1,Asia +2024-12-17,81356,5713,"[""Wireless Mouse""]",3585.6,"{""loyalty"": ""23%""}",125922,1,Africa +2023-08-23,81357,4172,"[""Laptop"", ""Monitor""]",4402.11,"{""seasonal"": ""26%""}",125519,0,Asia +2024-02-04,81358,1607,"[""Laptop""]",304.66,"{""promo"": ""20%""}",24679,0,North America +2024-05-19,81359,8851,"[""Phone"", ""Keyboard""]",4864.66,"{""loyalty"": ""21%""}",274093,0,Europe +2023-07-04,81360,2418,"[""Wireless Mouse""]",1718.87,{},239296,1,Europe +2024-08-04,81361,860,"[""Monitor""]",1026.22,"{"""": ""20%""}",282864,0,Europe +2024-04-14,81362,3596,"[""Phone"", ""Laptop"", ""Monitor""]",1290.09,{},198205,1,South America +2023-01-01,81363,5424,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2071.0,"{""loyalty"": ""21%""}",118710,0,Africa +2023-02-24,81364,6062,"[""Wireless Mouse""]",2299.62,"{""seasonal"": ""8%""}",250032,0,Europe +2024-02-11,81365,4849,"[""Headphones"", ""Laptop""]",388.74,"{"""": ""7%""}",276855,0,Africa +2024-09-18,81366,7288,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3793.74,{},140801,0,Asia +2023-01-19,81367,6373,"[""Laptop""]",3484.17,"{""seasonal"": ""29%""}",7160,0,North America +2024-06-02,81368,9206,"[""Phone"", ""Keyboard"", ""Laptop""]",2393.1,"{""seasonal"": ""28%""}",238723,1,Europe +2024-03-31,81369,4702,"[""Keyboard"", ""Charger""]",470.15,"{"""": ""27%""}",121337,0,Asia +2024-11-01,81370,8621,"[""Phone""]",2880.37,"{""seasonal"": ""24%""}",191879,1,Asia +2024-09-04,81371,7022,"[""Charger"", ""Tablet"", ""Phone""]",2983.31,{},45837,1,Asia +2024-01-23,81372,6829,"[""Phone""]",4384.54,{},280299,0,Europe +2024-06-21,81373,29,"[""Laptop"", ""Charger""]",701.37,{},23315,1,Asia +2023-04-06,81374,4700,"[""Tablet""]",3760.41,"{""loyalty"": ""25%""}",241589,1,North America +2023-09-03,81375,9472,"[""Charger""]",4834.09,{},285772,1,Europe +2024-03-31,81376,1145,"[""Laptop"", ""Wireless Mouse""]",1069.81,{},140596,0,Europe +2024-09-30,81377,377,"[""Tablet"", ""Headphones""]",4110.34,{},24177,0,Europe +2023-10-31,81378,7424,"[""Keyboard""]",4952.78,{},217455,0,Asia +2024-10-31,81379,5251,"[""Tablet""]",1242.82,{},251855,1,North America +2023-12-15,81380,1225,"[""Charger"", ""Laptop""]",886.06,{},255769,1,Asia +2023-03-06,81381,2786,"[""Charger"", ""Laptop"", ""Tablet""]",3212.71,{},267075,0,Asia +2023-09-29,81382,3498,"[""Keyboard""]",4344.02,"{"""": ""27%""}",66814,1,Europe +2024-02-29,81383,9279,"[""Wireless Mouse"", ""Phone""]",2165.43,{},15563,1,Africa +2024-07-17,81384,9697,"[""Monitor"", ""Keyboard"", ""Phone""]",2600.5,"{""seasonal"": ""17%""}",140941,0,South America +2024-07-30,81385,2376,"[""Monitor""]",4387.3,"{"""": ""22%""}",31594,0,Europe +2023-10-26,81386,2412,"[""Keyboard"", ""Laptop""]",4954.14,{},132199,1,South America +2024-01-17,81387,284,"[""Phone"", ""Tablet""]",1259.21,"{"""": ""13%""}",164130,1,Africa +2023-06-30,81388,1717,"[""Headphones"", ""Laptop""]",204.31,{},283192,1,Asia +2024-11-22,81389,4475,"[""Laptop"", ""Charger""]",4110.24,"{""seasonal"": ""27%""}",273431,1,Europe +2023-05-10,81390,8389,"[""Monitor"", ""Headphones"", ""Charger""]",719.51,"{""seasonal"": ""6%""}",74016,0,Africa +2023-11-15,81391,8386,"[""Tablet"", ""Headphones""]",3231.2,{},221753,1,North America +2024-02-28,81392,8854,"[""Keyboard"", ""Laptop""]",275.04,"{""loyalty"": ""24%""}",240122,0,Europe +2024-04-18,81393,7710,"[""Tablet"", ""Keyboard""]",1995.85,"{""loyalty"": ""7%""}",190433,0,Asia +2024-06-28,81394,9659,"[""Tablet"", ""Headphones""]",1538.85,"{""loyalty"": ""16%""}",61974,0,Asia +2023-02-25,81395,1103,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3378.43,{},292691,1,South America +2023-04-28,81396,6440,"[""Wireless Mouse""]",276.78,"{""seasonal"": ""17%""}",94971,0,Africa +2024-04-13,81397,3381,"[""Wireless Mouse"", ""Headphones""]",1818.75,"{""loyalty"": ""8%""}",186388,1,Asia +2024-07-02,81398,4101,"[""Phone"", ""Laptop"", ""Charger""]",279.47,"{"""": ""9%""}",1621,1,South America +2024-12-24,81399,2319,"[""Phone""]",122.32,"{""loyalty"": ""17%""}",204546,1,Africa +2023-04-21,81400,6682,"[""Tablet"", ""Keyboard""]",3078.43,{},9795,0,North America +2023-09-14,81401,9391,"[""Charger"", ""Phone""]",3828.05,{},46328,1,South America +2023-11-27,81402,1204,"[""Monitor""]",1924.13,"{"""": ""14%""}",264432,0,Africa +2024-06-08,81403,9928,"[""Laptop"", ""Tablet"", ""Charger""]",2729.36,{},245393,1,South America +2024-05-22,81404,8660,"[""Phone"", ""Laptop"", ""Tablet""]",2381.81,{},98999,0,South America +2023-07-23,81405,82,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2925.33,"{""promo"": ""10%""}",189185,0,Europe +2023-11-18,81406,9994,"[""Laptop"", ""Keyboard""]",187.83,{},294986,1,South America +2023-05-02,81407,4173,"[""Headphones"", ""Keyboard""]",1183.45,{},2276,0,Asia +2024-04-29,81408,2353,"[""Monitor""]",1438.22,"{""loyalty"": ""24%""}",68584,1,South America +2024-09-08,81409,6327,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4894.51,{},45519,0,Asia +2024-05-23,81410,7693,"[""Charger"", ""Keyboard""]",4848.94,"{""promo"": ""15%""}",131127,0,Africa +2024-04-06,81411,7570,"[""Phone"", ""Laptop""]",1932.35,"{""loyalty"": ""5%""}",253717,1,South America +2024-03-11,81412,683,"[""Tablet"", ""Charger""]",2991.88,{},237484,1,Asia +2023-04-27,81413,6201,"[""Phone"", ""Monitor""]",2207.91,"{""seasonal"": ""25%""}",197109,0,Asia +2024-11-09,81414,366,"[""Tablet"", ""Monitor"", ""Headphones""]",3263.71,{},237207,1,Africa +2024-10-22,81415,9712,"[""Phone"", ""Headphones""]",3794.87,"{""promo"": ""28%""}",98304,0,Europe +2024-05-11,81416,9310,"[""Phone"", ""Laptop""]",4283.35,{},101802,1,North America +2023-12-13,81417,7498,"[""Headphones"", ""Monitor"", ""Keyboard""]",829.57,"{""loyalty"": ""6%""}",132775,0,Africa +2023-03-30,81418,8180,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4663.1,"{"""": ""24%""}",270596,1,Europe +2024-04-15,81419,5248,"[""Phone""]",3773.0,"{"""": ""18%""}",110927,0,Asia +2024-10-17,81420,2140,"[""Tablet""]",2981.64,{},178072,1,Europe +2023-08-08,81421,726,"[""Charger""]",167.24,"{""promo"": ""6%""}",199470,1,Europe +2023-02-03,81422,7470,"[""Charger"", ""Tablet""]",772.84,"{""promo"": ""12%""}",134845,0,North America +2024-05-21,81423,9626,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3569.53,{},225646,0,Europe +2024-11-04,81424,5155,"[""Charger"", ""Tablet"", ""Laptop""]",881.29,{},298687,1,North America +2023-01-26,81425,9708,"[""Laptop"", ""Keyboard""]",2606.78,"{""promo"": ""25%""}",292384,0,Europe +2023-05-23,81426,9267,"[""Headphones""]",4649.08,"{"""": ""26%""}",137291,0,Europe +2024-02-04,81427,7478,"[""Headphones""]",3165.67,{},192169,1,Europe +2024-08-11,81428,6396,"[""Monitor""]",3935.17,"{""seasonal"": ""21%""}",189969,1,South America +2024-12-13,81429,3588,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2256.41,"{""promo"": ""6%""}",114658,0,Africa +2024-09-28,81430,7884,"[""Keyboard""]",1888.35,"{""loyalty"": ""19%""}",13353,1,North America +2023-08-03,81431,64,"[""Monitor"", ""Laptop""]",613.94,"{""loyalty"": ""6%""}",119116,1,Africa +2024-01-30,81432,1818,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4610.19,"{"""": ""26%""}",272426,1,South America +2024-10-20,81433,2528,"[""Keyboard""]",3198.23,"{""seasonal"": ""23%""}",276675,1,Africa +2023-02-21,81434,2460,"[""Headphones"", ""Keyboard"", ""Charger""]",2434.15,"{""seasonal"": ""6%""}",177789,1,South America +2023-10-26,81435,9569,"[""Monitor""]",1576.05,{},107646,0,Asia +2024-07-21,81436,5647,"[""Phone"", ""Keyboard""]",3583.11,"{""seasonal"": ""30%""}",28582,0,Africa +2023-11-06,81437,5741,"[""Headphones"", ""Monitor"", ""Laptop""]",262.5,{},69746,1,North America +2024-09-30,81438,6117,"[""Tablet""]",912.77,{},72475,0,Africa +2024-02-04,81439,7430,"[""Tablet"", ""Charger""]",3282.18,"{"""": ""29%""}",36615,0,Africa +2024-12-02,81440,50,"[""Charger""]",1389.19,{},284187,0,North America +2023-10-22,81441,3770,"[""Laptop""]",3390.53,{},51234,0,Africa +2023-04-15,81442,7044,"[""Monitor"", ""Keyboard"", ""Charger""]",3245.55,"{""loyalty"": ""17%""}",156756,0,South America +2023-08-16,81443,1888,"[""Tablet""]",4999.24,"{""seasonal"": ""20%""}",96776,1,Asia +2024-11-20,81444,7231,"[""Charger"", ""Tablet"", ""Laptop""]",412.87,{},192478,0,Africa +2023-05-02,81445,9614,"[""Laptop"", ""Charger""]",4958.49,{},84284,0,North America +2023-11-08,81446,9599,"[""Laptop""]",3430.59,"{""seasonal"": ""17%""}",244789,1,South America +2024-06-27,81447,3753,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2408.04,{},191471,1,Europe +2023-05-21,81448,681,"[""Laptop"", ""Charger""]",4126.35,{},204939,1,North America +2024-09-06,81449,9231,"[""Charger""]",98.28,{},288296,1,North America +2024-03-01,81450,5033,"[""Tablet""]",706.61,{},218435,1,Africa +2023-04-04,81451,5742,"[""Tablet"", ""Keyboard""]",2126.21,"{""promo"": ""26%""}",216526,0,Europe +2023-03-05,81452,9658,"[""Charger"", ""Phone"", ""Monitor""]",3154.32,{},243215,1,Asia +2024-04-16,81453,685,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3879.04,{},299871,1,Asia +2023-10-31,81454,9570,"[""Phone""]",1846.56,{},27888,1,Asia +2023-02-08,81455,8063,"[""Headphones"", ""Laptop"", ""Charger""]",2953.64,"{""seasonal"": ""30%""}",51823,0,North America +2023-02-06,81456,4082,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2351.32,{},42669,1,Europe +2023-01-01,81457,2488,"[""Tablet"", ""Laptop"", ""Phone""]",882.27,"{""loyalty"": ""30%""}",50137,1,Africa +2023-05-04,81458,1667,"[""Laptop""]",2001.19,"{""promo"": ""10%""}",191356,0,Europe +2024-10-22,81459,4710,"[""Wireless Mouse"", ""Tablet""]",996.6,"{""loyalty"": ""17%""}",115633,1,South America +2023-10-31,81460,2263,"[""Tablet""]",2609.0,"{""loyalty"": ""26%""}",278678,0,Africa +2024-12-08,81461,8704,"[""Tablet"", ""Headphones"", ""Phone""]",1228.1,"{"""": ""14%""}",89072,0,Europe +2024-05-31,81462,7277,"[""Headphones""]",814.24,{},143180,1,North America +2023-09-30,81463,641,"[""Monitor""]",1647.71,{},80378,0,Africa +2024-07-28,81464,5368,"[""Laptop"", ""Tablet""]",2098.58,{},137953,1,South America +2024-10-21,81465,7940,"[""Keyboard""]",1605.52,{},132456,0,Europe +2023-11-30,81466,5957,"[""Monitor""]",830.02,"{""loyalty"": ""15%""}",134787,0,Africa +2023-10-05,81467,7225,"[""Keyboard""]",1146.92,"{"""": ""22%""}",8876,1,North America +2023-12-20,81468,8075,"[""Tablet"", ""Phone""]",1388.74,{},169611,1,North America +2023-01-10,81469,7493,"[""Charger"", ""Headphones"", ""Phone""]",1181.52,"{""promo"": ""5%""}",175162,1,Europe +2023-05-09,81470,8110,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",703.25,{},47858,0,Europe +2023-12-22,81471,9466,"[""Phone""]",3170.37,{},47254,0,Africa +2023-07-01,81472,2864,"[""Keyboard""]",1174.42,"{""promo"": ""30%""}",276742,1,North America +2023-07-01,81473,3235,"[""Laptop"", ""Keyboard"", ""Phone""]",1810.77,"{""loyalty"": ""27%""}",231643,1,Asia +2024-05-04,81474,9070,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1124.79,{},37038,1,Africa +2024-12-31,81475,8003,"[""Phone"", ""Laptop"", ""Tablet""]",298.86,{},201289,1,Asia +2023-09-19,81476,3504,"[""Keyboard""]",4439.31,{},36862,0,Asia +2024-12-21,81477,6064,"[""Keyboard"", ""Laptop""]",3901.08,"{""loyalty"": ""8%""}",232216,0,Asia +2023-03-16,81478,9324,"[""Wireless Mouse""]",1114.03,"{"""": ""7%""}",132147,1,North America +2024-05-08,81479,888,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",151.85,"{"""": ""23%""}",229404,0,Africa +2024-04-17,81480,6902,"[""Laptop""]",4944.36,"{"""": ""25%""}",142062,0,Europe +2024-12-25,81481,1672,"[""Laptop"", ""Phone""]",465.77,"{"""": ""5%""}",152154,0,South America +2023-06-27,81482,3037,"[""Monitor"", ""Tablet"", ""Phone""]",4849.13,"{""promo"": ""29%""}",271647,1,South America +2023-11-30,81483,5643,"[""Phone"", ""Charger""]",2563.94,{},187691,0,Africa +2024-01-08,81484,4420,"[""Charger""]",1877.63,"{"""": ""17%""}",240928,1,Africa +2023-09-25,81485,1881,"[""Laptop"", ""Monitor""]",1348.88,"{""seasonal"": ""20%""}",84141,0,South America +2023-07-10,81486,1859,"[""Laptop""]",2105.45,"{"""": ""25%""}",186456,0,Asia +2024-05-18,81487,4525,"[""Tablet""]",4553.46,"{""loyalty"": ""22%""}",46832,1,Africa +2023-11-24,81488,1946,"[""Laptop"", ""Charger""]",2036.63,"{""seasonal"": ""12%""}",113238,1,Africa +2024-10-01,81489,9132,"[""Laptop""]",1448.33,{},266585,1,Europe +2023-05-11,81490,8637,"[""Tablet"", ""Keyboard"", ""Laptop""]",3786.59,{},192469,1,South America +2023-11-02,81491,6724,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4286.42,{},291980,0,Africa +2024-09-01,81492,7683,"[""Tablet""]",2296.08,{},122641,0,North America +2024-06-20,81493,8912,"[""Keyboard"", ""Headphones""]",1646.6,"{""seasonal"": ""10%""}",196327,1,Asia +2023-04-17,81494,1162,"[""Wireless Mouse""]",814.3,{},184797,0,North America +2023-01-03,81495,3970,"[""Headphones"", ""Tablet""]",2737.44,{},148894,0,Europe +2023-04-21,81496,8159,"[""Headphones"", ""Phone"", ""Monitor""]",2310.7,"{"""": ""14%""}",229144,1,Africa +2023-05-21,81497,5547,"[""Tablet"", ""Headphones"", ""Laptop""]",3418.62,{},222408,0,Africa +2024-11-08,81498,745,"[""Wireless Mouse"", ""Charger""]",4270.79,"{"""": ""5%""}",197518,1,South America +2024-03-02,81499,7459,"[""Phone""]",4917.2,{},217155,0,Asia +2024-06-28,81500,6006,"[""Charger"", ""Laptop"", ""Headphones""]",72.51,{},194823,0,South America +2024-04-06,81501,1931,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1532.83,"{""loyalty"": ""12%""}",146851,1,Europe +2024-09-05,81502,7925,"[""Charger"", ""Wireless Mouse""]",1053.93,{},179007,0,Europe +2024-02-08,81503,1720,"[""Headphones"", ""Monitor""]",1371.01,{},243755,1,Europe +2023-07-30,81504,1553,"[""Wireless Mouse"", ""Headphones""]",4513.61,"{"""": ""30%""}",61890,0,Africa +2023-08-12,81505,2336,"[""Headphones""]",1528.96,"{"""": ""26%""}",206692,1,Europe +2023-07-03,81506,2199,"[""Tablet"", ""Phone""]",1728.63,{},256689,0,Europe +2023-01-30,81507,7825,"[""Tablet""]",2220.31,"{""promo"": ""7%""}",214238,0,Europe +2023-05-07,81508,6127,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3241.94,{},68487,0,Asia +2024-06-12,81509,7296,"[""Headphones"", ""Tablet"", ""Keyboard""]",2927.98,{},45386,0,South America +2024-09-22,81510,8850,"[""Phone"", ""Keyboard"", ""Charger""]",612.06,{},72786,1,South America +2024-10-24,81511,3947,"[""Wireless Mouse""]",4392.21,{},191076,1,South America +2023-09-17,81512,9137,"[""Charger""]",3905.66,{},17689,1,Asia +2023-07-27,81513,7364,"[""Tablet"", ""Headphones""]",2354.2,{},77698,0,Europe +2023-07-16,81514,7971,"[""Laptop"", ""Keyboard"", ""Phone""]",4905.89,"{"""": ""27%""}",48075,1,Asia +2024-08-23,81515,4374,"[""Monitor"", ""Laptop"", ""Phone""]",789.55,{},61114,1,North America +2024-10-04,81516,2832,"[""Charger"", ""Wireless Mouse""]",3431.44,{},128040,0,Africa +2023-12-14,81517,2026,"[""Headphones"", ""Charger""]",4886.95,"{""loyalty"": ""12%""}",199151,1,Africa +2024-07-03,81518,4564,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",998.1,"{""loyalty"": ""8%""}",163887,0,Europe +2024-11-17,81519,18,"[""Keyboard""]",2967.14,{},165034,0,North America +2024-05-27,81520,146,"[""Phone""]",2760.99,"{"""": ""25%""}",146777,1,Europe +2024-06-24,81521,3622,"[""Phone"", ""Laptop""]",1702.03,{},33214,0,Asia +2024-01-04,81522,6132,"[""Wireless Mouse""]",4984.59,{},286057,1,Europe +2024-09-22,81523,2909,"[""Monitor""]",397.14,{},84768,0,Europe +2023-01-02,81524,5964,"[""Monitor""]",1352.67,"{""seasonal"": ""25%""}",227345,0,Africa +2024-06-26,81525,1566,"[""Laptop"", ""Charger"", ""Keyboard""]",3893.81,{},173519,0,South America +2023-07-08,81526,7406,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3849.46,{},80221,1,Europe +2023-06-15,81527,8506,"[""Keyboard""]",3901.63,"{""promo"": ""9%""}",262665,0,Africa +2024-11-28,81528,3890,"[""Headphones"", ""Charger"", ""Laptop""]",1652.92,{},288789,1,Europe +2024-11-11,81529,3255,"[""Phone""]",3295.32,{},43520,0,North America +2024-07-12,81530,1756,"[""Laptop"", ""Monitor""]",613.13,"{""promo"": ""18%""}",166833,1,Europe +2024-08-06,81531,7567,"[""Tablet"", ""Monitor""]",4525.93,"{"""": ""23%""}",153315,1,Europe +2024-04-13,81532,9523,"[""Headphones""]",159.35,"{""loyalty"": ""20%""}",119646,0,Asia +2024-08-29,81533,1345,"[""Laptop"", ""Headphones"", ""Tablet""]",634.49,{},260590,0,North America +2024-07-05,81534,7088,"[""Tablet"", ""Charger""]",4163.17,"{""seasonal"": ""28%""}",194689,1,North America +2023-07-30,81535,6993,"[""Laptop"", ""Headphones"", ""Phone""]",3632.03,{},286274,0,Europe +2024-12-13,81536,6740,"[""Wireless Mouse""]",1216.19,"{""loyalty"": ""29%""}",125733,1,North America +2024-09-08,81537,7047,"[""Phone""]",4623.13,{},202652,0,South America +2024-08-02,81538,5954,"[""Monitor""]",643.71,{},296256,1,Africa +2024-04-08,81539,4524,"[""Monitor"", ""Keyboard""]",1994.02,{},115215,1,Asia +2023-11-05,81540,7068,"[""Laptop""]",2348.2,"{"""": ""10%""}",299450,0,South America +2023-03-29,81541,8424,"[""Monitor"", ""Laptop""]",283.82,"{"""": ""11%""}",265088,0,Asia +2024-07-28,81542,5030,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",648.89,"{""promo"": ""25%""}",106521,0,Europe +2023-06-10,81543,9194,"[""Headphones"", ""Monitor"", ""Tablet""]",4534.91,"{""loyalty"": ""21%""}",192216,0,South America +2023-09-06,81544,4340,"[""Laptop"", ""Headphones""]",2745.39,"{""seasonal"": ""9%""}",72796,1,Asia +2024-12-09,81545,9362,"[""Laptop""]",4360.27,"{"""": ""6%""}",299144,1,North America +2024-01-13,81546,5468,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3317.03,"{""seasonal"": ""27%""}",170797,0,South America +2023-04-17,81547,6505,"[""Headphones""]",297.56,{},133550,1,Europe +2023-05-31,81548,8462,"[""Wireless Mouse"", ""Laptop""]",2528.12,"{""loyalty"": ""25%""}",41218,0,South America +2023-06-08,81549,4638,"[""Charger"", ""Keyboard""]",2872.88,"{""promo"": ""19%""}",296780,0,Europe +2023-06-05,81550,5205,"[""Tablet""]",989.35,{},35670,1,Asia +2023-02-09,81551,9231,"[""Keyboard"", ""Wireless Mouse""]",1499.18,{},184753,0,Asia +2023-03-22,81552,8155,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1656.97,"{"""": ""11%""}",12481,1,Europe +2023-02-09,81553,7577,"[""Charger""]",4871.96,"{"""": ""23%""}",50537,1,Africa +2024-04-07,81554,5566,"[""Headphones"", ""Tablet""]",4679.9,{},213973,1,North America +2023-02-18,81555,7432,"[""Charger"", ""Tablet"", ""Phone""]",4460.44,{},105073,0,South America +2023-12-07,81556,2617,"[""Charger"", ""Monitor""]",3743.42,"{""loyalty"": ""18%""}",4720,1,Africa +2023-09-07,81557,1727,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",962.12,{},278095,0,North America +2024-08-18,81558,429,"[""Charger"", ""Laptop"", ""Keyboard""]",1634.42,{},60902,1,South America +2023-11-24,81559,8618,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3258.42,"{""seasonal"": ""18%""}",37774,1,Asia +2024-10-07,81560,5844,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2129.21,"{""seasonal"": ""9%""}",249503,0,Asia +2024-08-28,81561,8020,"[""Headphones"", ""Phone"", ""Tablet""]",3327.77,"{""loyalty"": ""13%""}",258351,0,Africa +2024-11-10,81562,8276,"[""Laptop""]",1763.92,{},289912,1,Asia +2024-01-09,81563,8707,"[""Headphones"", ""Charger""]",829.65,"{""seasonal"": ""15%""}",24474,0,North America +2024-11-24,81564,3382,"[""Monitor"", ""Laptop""]",812.7,{},261307,0,Africa +2023-09-29,81565,2726,"[""Wireless Mouse"", ""Tablet""]",3635.12,{},225886,1,South America +2023-06-18,81566,6436,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2246.76,"{"""": ""7%""}",32940,0,Africa +2023-04-15,81567,5070,"[""Tablet"", ""Laptop""]",992.37,"{"""": ""9%""}",163361,1,South America +2023-06-28,81568,9591,"[""Phone""]",2896.56,{},191896,0,North America +2024-01-03,81569,2715,"[""Tablet""]",160.32,{},22120,1,Asia +2024-06-08,81570,4923,"[""Monitor"", ""Laptop""]",113.14,{},167428,1,Asia +2024-05-16,81571,5406,"[""Keyboard"", ""Headphones"", ""Tablet""]",1159.06,"{""loyalty"": ""30%""}",190403,1,Europe +2023-04-03,81572,3357,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3361.78,{},41725,1,South America +2023-11-05,81573,2073,"[""Headphones""]",2778.94,{},22885,1,South America +2023-07-05,81574,3591,"[""Tablet"", ""Charger""]",2542.77,{},271005,1,South America +2023-03-16,81575,7460,"[""Charger"", ""Keyboard"", ""Laptop""]",1528.99,{},279489,0,Asia +2023-03-27,81576,7318,"[""Headphones""]",3286.9,{},20742,0,Africa +2023-04-14,81577,8048,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2674.89,{},237518,0,North America +2024-09-04,81578,9274,"[""Monitor"", ""Phone""]",4327.74,"{""loyalty"": ""11%""}",65823,0,Asia +2023-09-03,81579,1595,"[""Keyboard"", ""Tablet"", ""Headphones""]",51.84,"{""promo"": ""7%""}",152749,1,South America +2024-05-18,81580,4245,"[""Monitor"", ""Keyboard""]",2445.72,"{""loyalty"": ""12%""}",21611,1,Asia +2023-07-26,81581,709,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",716.02,{},80386,1,Europe +2023-03-05,81582,1256,"[""Wireless Mouse"", ""Laptop""]",577.31,{},152073,0,North America +2024-12-20,81583,171,"[""Keyboard"", ""Wireless Mouse""]",1631.35,{},122924,1,Asia +2024-08-08,81584,4790,"[""Keyboard"", ""Laptop"", ""Charger""]",1686.71,{},242255,0,Africa +2024-08-20,81585,590,"[""Keyboard"", ""Phone"", ""Laptop""]",4983.14,"{""loyalty"": ""17%""}",202732,1,Europe +2023-06-02,81586,4604,"[""Keyboard""]",4387.46,"{""seasonal"": ""16%""}",150812,1,South America +2024-08-30,81587,4517,"[""Tablet"", ""Laptop""]",2190.38,{},96986,0,North America +2024-07-30,81588,7204,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4130.56,{},47681,0,Europe +2023-02-21,81589,7913,"[""Laptop"", ""Phone"", ""Monitor""]",473.59,"{""loyalty"": ""23%""}",25747,0,South America +2024-01-13,81590,8723,"[""Wireless Mouse"", ""Tablet""]",4945.82,"{""loyalty"": ""11%""}",131957,0,South America +2024-11-11,81591,1979,"[""Tablet""]",4159.06,"{"""": ""21%""}",136414,1,South America +2023-02-22,81592,8105,"[""Laptop"", ""Phone""]",4293.74,"{"""": ""9%""}",127769,0,North America +2024-09-26,81593,7740,"[""Keyboard"", ""Headphones""]",1125.66,"{""promo"": ""11%""}",227010,1,South America +2024-07-19,81594,6186,"[""Monitor"", ""Tablet""]",4399.1,{},81771,1,North America +2023-01-31,81595,6674,"[""Wireless Mouse""]",3918.88,"{""loyalty"": ""5%""}",227989,1,North America +2024-04-02,81596,5749,"[""Charger"", ""Keyboard""]",191.67,"{""seasonal"": ""24%""}",85256,0,South America +2023-07-19,81597,8016,"[""Phone""]",1417.33,{},265831,0,North America +2023-02-16,81598,8680,"[""Headphones""]",2647.52,{},78172,0,North America +2024-06-09,81599,472,"[""Phone""]",3216.64,"{""seasonal"": ""24%""}",3990,1,Africa +2023-05-04,81600,8563,"[""Keyboard""]",1088.4,{},63857,1,Europe +2023-11-27,81601,6033,"[""Charger"", ""Wireless Mouse""]",2042.14,{},198000,0,South America +2024-08-29,81602,7656,"[""Keyboard"", ""Monitor""]",2342.06,"{""loyalty"": ""30%""}",122504,0,North America +2024-05-16,81603,5181,"[""Monitor"", ""Laptop""]",3725.12,"{""seasonal"": ""30%""}",48309,0,South America +2023-09-07,81604,8968,"[""Tablet""]",87.02,{},176057,1,Europe +2023-02-28,81605,7668,"[""Headphones"", ""Keyboard""]",2909.0,{},134131,0,North America +2023-07-02,81606,9979,"[""Keyboard"", ""Laptop""]",1146.45,"{"""": ""13%""}",118909,0,Europe +2024-05-29,81607,787,"[""Headphones""]",3255.95,"{""seasonal"": ""24%""}",159990,0,Europe +2024-03-11,81608,2585,"[""Tablet""]",1458.53,"{""loyalty"": ""25%""}",154567,1,Asia +2023-11-08,81609,2282,"[""Keyboard"", ""Tablet""]",3055.01,{},163882,0,North America +2024-10-25,81610,606,"[""Laptop""]",1151.57,{},215743,0,Africa +2024-02-27,81611,5050,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1753.47,{},231318,1,Africa +2023-05-17,81612,5168,"[""Charger""]",4963.71,"{""promo"": ""20%""}",87236,1,Europe +2023-10-03,81613,8115,"[""Laptop"", ""Keyboard"", ""Monitor""]",4308.04,"{""promo"": ""9%""}",115583,1,Europe +2024-04-26,81614,1020,"[""Tablet"", ""Monitor""]",1984.53,{},270347,1,Asia +2024-04-19,81615,4265,"[""Phone"", ""Tablet""]",1553.24,"{""seasonal"": ""6%""}",7900,1,North America +2024-12-20,81616,4012,"[""Laptop"", ""Phone"", ""Headphones""]",464.45,{},280339,0,Asia +2023-03-27,81617,4045,"[""Headphones"", ""Tablet""]",131.11,{},268936,1,North America +2023-01-31,81618,9475,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3984.67,"{""loyalty"": ""24%""}",220143,1,Europe +2023-06-16,81619,6363,"[""Wireless Mouse""]",1644.67,"{""seasonal"": ""16%""}",262050,1,South America +2024-06-25,81620,7598,"[""Charger"", ""Tablet""]",1757.46,{},116640,0,South America +2024-12-24,81621,7392,"[""Tablet"", ""Laptop""]",2839.78,"{"""": ""27%""}",203250,1,Europe +2023-10-28,81622,3477,"[""Charger"", ""Monitor"", ""Keyboard""]",1663.39,{},160675,1,Asia +2024-01-08,81623,5940,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2998.98,"{""seasonal"": ""25%""}",298386,0,South America +2023-07-21,81624,1696,"[""Headphones"", ""Monitor""]",1042.48,"{""promo"": ""6%""}",77031,0,Asia +2024-11-29,81625,826,"[""Phone"", ""Headphones"", ""Monitor""]",2850.92,{},257975,1,Africa +2024-01-24,81626,1353,"[""Headphones"", ""Tablet""]",2986.65,{},291648,0,Africa +2024-11-04,81627,385,"[""Monitor"", ""Phone"", ""Laptop""]",865.4,{},262704,1,Asia +2024-06-03,81628,1587,"[""Keyboard""]",2798.41,"{""seasonal"": ""22%""}",14917,1,Africa +2024-12-09,81629,585,"[""Tablet"", ""Keyboard""]",647.48,{},98108,0,Europe +2024-02-19,81630,2966,"[""Monitor""]",996.37,"{""promo"": ""14%""}",162740,1,Europe +2023-02-17,81631,3359,"[""Headphones"", ""Monitor"", ""Tablet""]",4557.48,{},11674,0,North America +2023-12-18,81632,298,"[""Tablet"", ""Headphones"", ""Charger""]",4996.7,{},191928,1,Asia +2024-01-01,81633,6539,"[""Phone"", ""Laptop"", ""Keyboard""]",581.4,"{""promo"": ""10%""}",58585,1,Europe +2023-02-03,81634,8531,"[""Keyboard"", ""Wireless Mouse""]",4001.06,{},92137,1,Asia +2023-09-11,81635,4621,"[""Tablet"", ""Monitor"", ""Phone""]",399.91,"{""loyalty"": ""8%""}",22504,1,Europe +2023-07-18,81636,5825,"[""Charger"", ""Laptop""]",1738.09,"{"""": ""10%""}",90037,1,Africa +2023-07-03,81637,843,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2124.47,{},6859,1,Europe +2023-12-26,81638,3692,"[""Phone"", ""Keyboard""]",4278.13,"{""loyalty"": ""17%""}",60016,1,Europe +2023-05-18,81639,9165,"[""Tablet"", ""Wireless Mouse""]",4228.21,"{""seasonal"": ""15%""}",195213,0,Africa +2024-11-12,81640,5798,"[""Keyboard""]",4763.41,"{""loyalty"": ""14%""}",202811,1,Asia +2024-12-19,81641,2094,"[""Phone"", ""Tablet""]",1365.0,"{""promo"": ""8%""}",189737,1,North America +2024-06-29,81642,1868,"[""Tablet""]",4030.29,"{""seasonal"": ""6%""}",198614,0,North America +2023-04-01,81643,8021,"[""Monitor""]",4787.79,{},87603,0,Asia +2024-01-15,81644,6152,"[""Wireless Mouse""]",4092.76,{},138870,0,North America +2023-02-13,81645,9807,"[""Keyboard"", ""Headphones"", ""Tablet""]",2976.95,"{""seasonal"": ""13%""}",227904,1,Europe +2023-11-24,81646,1711,"[""Keyboard"", ""Charger""]",4480.16,{},23204,1,Europe +2023-11-27,81647,7434,"[""Charger""]",1430.95,{},141152,0,Asia +2024-04-18,81648,4532,"[""Charger"", ""Tablet""]",322.52,"{""promo"": ""9%""}",2817,0,Asia +2024-11-11,81649,7910,"[""Headphones"", ""Charger""]",4851.0,{},278916,1,Africa +2023-07-06,81650,3878,"[""Headphones""]",3947.29,{},86568,1,North America +2024-05-23,81651,9284,"[""Wireless Mouse"", ""Tablet""]",4849.02,"{""promo"": ""27%""}",136779,0,Asia +2023-12-17,81652,621,"[""Wireless Mouse"", ""Keyboard""]",1515.93,{},106759,0,Africa +2024-07-29,81653,7489,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4109.64,"{""loyalty"": ""29%""}",111091,0,Europe +2023-12-11,81654,9623,"[""Phone"", ""Tablet"", ""Charger""]",1382.46,"{"""": ""28%""}",230576,1,Africa +2023-01-04,81655,7644,"[""Monitor""]",2409.84,{},71298,0,Asia +2023-01-04,81656,5016,"[""Headphones""]",4922.31,{},274971,0,Asia +2023-05-02,81657,9859,"[""Keyboard"", ""Headphones""]",4185.32,{},9831,1,Africa +2024-09-21,81658,3306,"[""Phone"", ""Tablet"", ""Laptop""]",886.24,{},149007,1,South America +2023-02-22,81659,410,"[""Laptop""]",285.32,{},63253,1,Africa +2024-03-13,81660,4331,"[""Wireless Mouse""]",852.22,{},226592,1,Asia +2023-04-20,81661,1490,"[""Tablet"", ""Charger""]",1527.82,{},210639,0,Asia +2023-06-13,81662,8145,"[""Keyboard"", ""Laptop""]",1407.47,"{""promo"": ""10%""}",49690,1,Africa +2023-05-11,81663,7475,"[""Charger"", ""Phone"", ""Tablet""]",3881.84,"{""seasonal"": ""29%""}",197066,0,South America +2023-09-25,81664,4733,"[""Phone""]",3930.68,"{""promo"": ""5%""}",117286,1,South America +2023-02-06,81665,8076,"[""Headphones""]",242.92,"{""promo"": ""27%""}",58932,1,South America +2023-06-05,81666,9473,"[""Laptop"", ""Charger""]",613.73,"{""loyalty"": ""8%""}",73991,1,North America +2024-04-08,81667,1773,"[""Wireless Mouse"", ""Monitor""]",1911.95,{},143041,1,Africa +2024-08-21,81668,2094,"[""Charger""]",4319.26,{},90780,1,Europe +2024-08-05,81669,314,"[""Wireless Mouse""]",2106.32,"{""loyalty"": ""12%""}",199707,1,North America +2024-05-27,81670,6792,"[""Phone"", ""Keyboard""]",3388.55,{},159308,0,South America +2024-05-18,81671,26,"[""Monitor"", ""Headphones""]",182.76,{},99165,1,Europe +2024-01-29,81672,2114,"[""Tablet""]",2159.68,"{""seasonal"": ""25%""}",275190,0,Africa +2024-11-23,81673,7306,"[""Headphones"", ""Keyboard""]",515.84,{},225402,0,Europe +2024-12-09,81674,6046,"[""Phone"", ""Laptop"", ""Keyboard""]",4213.88,"{"""": ""6%""}",61920,1,Africa +2023-05-10,81675,7259,"[""Monitor"", ""Charger"", ""Laptop""]",3979.49,"{""promo"": ""13%""}",46102,0,South America +2023-01-11,81676,5344,"[""Charger"", ""Headphones"", ""Keyboard""]",3675.24,"{""promo"": ""10%""}",178107,1,Europe +2024-01-24,81677,9349,"[""Headphones""]",1304.88,"{""seasonal"": ""23%""}",298613,0,South America +2024-05-29,81678,7107,"[""Charger""]",1006.75,{},180302,1,South America +2024-11-05,81679,4137,"[""Monitor""]",1501.53,{},14220,0,Europe +2023-09-21,81680,6732,"[""Charger"", ""Keyboard"", ""Laptop""]",3907.99,"{""loyalty"": ""17%""}",170176,1,North America +2023-02-22,81681,2756,"[""Tablet"", ""Phone"", ""Charger""]",543.72,{},271108,1,Europe +2023-09-14,81682,3559,"[""Wireless Mouse""]",458.0,{},269791,0,North America +2023-06-10,81683,8717,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4728.7,"{"""": ""13%""}",209863,1,Europe +2023-02-24,81684,972,"[""Keyboard"", ""Tablet""]",2016.34,"{""promo"": ""12%""}",258100,0,Africa +2023-02-04,81685,8716,"[""Tablet""]",2220.72,{},178490,1,Asia +2023-01-24,81686,3052,"[""Monitor""]",3873.55,"{""seasonal"": ""15%""}",117974,0,Africa +2023-05-14,81687,7584,"[""Monitor""]",3600.69,{},178322,0,South America +2023-06-28,81688,5675,"[""Headphones""]",967.72,{},14007,1,Europe +2024-02-03,81689,4112,"[""Keyboard"", ""Headphones"", ""Phone""]",4051.77,{},57340,1,Europe +2024-12-09,81690,663,"[""Tablet"", ""Headphones""]",4556.02,"{""promo"": ""12%""}",143465,1,Asia +2024-10-22,81691,2408,"[""Keyboard"", ""Headphones""]",1555.4,{},256924,1,Europe +2024-03-21,81692,3199,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",551.9,"{"""": ""22%""}",148253,0,Europe +2023-12-27,81693,1954,"[""Laptop"", ""Charger""]",2027.27,{},100878,0,Europe +2024-07-04,81694,2772,"[""Keyboard""]",3089.09,{},20940,0,Europe +2023-05-06,81695,6082,"[""Keyboard""]",3494.69,"{""loyalty"": ""6%""}",11404,1,North America +2023-06-15,81696,3429,"[""Monitor"", ""Laptop""]",3959.45,{},34484,1,South America +2024-12-05,81697,9032,"[""Tablet"", ""Keyboard"", ""Phone""]",2686.43,"{"""": ""30%""}",139535,1,South America +2023-02-21,81698,7878,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1933.5,{},257813,0,Europe +2024-02-20,81699,9043,"[""Keyboard""]",1106.04,{},295291,0,Asia +2023-01-24,81700,1484,"[""Keyboard""]",3164.86,{},272308,1,Europe +2023-09-26,81701,3377,"[""Monitor""]",4157.44,"{""loyalty"": ""5%""}",116909,1,North America +2023-05-06,81702,7797,"[""Tablet"", ""Charger"", ""Phone""]",350.51,"{""loyalty"": ""13%""}",8499,0,Africa +2024-08-01,81703,2783,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4216.51,"{""loyalty"": ""11%""}",190909,0,Africa +2024-02-28,81704,6392,"[""Monitor""]",1690.33,"{""loyalty"": ""7%""}",18457,1,Europe +2023-01-01,81705,3723,"[""Keyboard"", ""Tablet""]",4646.28,{},115010,0,Asia +2023-11-19,81706,1451,"[""Keyboard""]",3864.35,"{""loyalty"": ""22%""}",255641,0,Asia +2024-02-27,81707,4473,"[""Phone"", ""Laptop""]",457.45,{},288756,1,Asia +2023-11-11,81708,6707,"[""Phone"", ""Monitor"", ""Laptop""]",1662.11,{},104938,0,North America +2024-10-30,81709,2388,"[""Monitor""]",4465.26,"{""seasonal"": ""14%""}",15642,1,Asia +2023-01-30,81710,1715,"[""Wireless Mouse"", ""Laptop""]",4593.25,{},253562,0,Africa +2023-08-24,81711,1041,"[""Keyboard"", ""Monitor"", ""Headphones""]",3006.0,"{""seasonal"": ""25%""}",158407,0,Asia +2024-05-05,81712,587,"[""Charger"", ""Phone""]",3158.09,{},60626,0,Europe +2024-12-04,81713,1856,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1943.8,"{""seasonal"": ""11%""}",299905,1,North America +2023-10-16,81714,5264,"[""Laptop"", ""Tablet"", ""Headphones""]",95.63,{},131197,1,Asia +2024-06-07,81715,2392,"[""Wireless Mouse"", ""Laptop""]",3336.52,"{""seasonal"": ""20%""}",39627,0,South America +2023-12-05,81716,6503,"[""Tablet""]",3862.06,"{""loyalty"": ""14%""}",7180,1,Asia +2023-01-26,81717,2481,"[""Laptop"", ""Keyboard""]",2640.65,"{""seasonal"": ""25%""}",114479,1,South America +2023-08-29,81718,3495,"[""Wireless Mouse""]",1512.72,{},285117,0,Asia +2024-10-20,81719,9513,"[""Phone"", ""Laptop"", ""Tablet""]",1680.58,{},200877,1,Europe +2023-12-20,81720,1135,"[""Charger"", ""Tablet"", ""Laptop""]",4710.02,"{""promo"": ""16%""}",27614,0,North America +2024-10-16,81721,8749,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1457.0,{},23706,1,Africa +2024-05-26,81722,5117,"[""Charger"", ""Keyboard"", ""Monitor""]",3078.23,{},5129,1,North America +2024-05-22,81723,1133,"[""Laptop"", ""Tablet""]",2705.05,"{""promo"": ""5%""}",57206,1,Europe +2023-07-06,81724,1339,"[""Headphones"", ""Charger""]",2622.33,"{""loyalty"": ""16%""}",249514,1,Africa +2024-04-24,81725,7289,"[""Keyboard"", ""Monitor""]",3575.69,"{""loyalty"": ""21%""}",265731,0,North America +2024-11-13,81726,449,"[""Tablet"", ""Charger"", ""Keyboard""]",2727.46,{},88321,0,Africa +2024-03-06,81727,794,"[""Monitor"", ""Keyboard"", ""Laptop""]",2992.27,{},270919,0,North America +2023-07-02,81728,4690,"[""Wireless Mouse""]",1974.93,{},59153,0,South America +2023-09-30,81729,7556,"[""Tablet""]",1532.82,{},58194,0,Africa +2024-05-21,81730,7988,"[""Monitor""]",3626.23,{},5103,1,Asia +2023-05-13,81731,6684,"[""Keyboard"", ""Phone""]",3617.79,{},164784,0,South America +2024-09-03,81732,1649,"[""Monitor"", ""Phone""]",2489.53,{},67911,0,North America +2024-12-08,81733,6997,"[""Monitor""]",3244.67,"{""loyalty"": ""24%""}",198625,0,North America +2024-10-25,81734,8875,"[""Laptop""]",4121.2,"{""loyalty"": ""15%""}",201223,0,South America +2023-08-23,81735,1972,"[""Tablet""]",3718.71,"{""promo"": ""9%""}",243744,1,Asia +2023-04-18,81736,5425,"[""Laptop"", ""Headphones""]",313.1,{},231394,0,Europe +2023-12-29,81737,9776,"[""Tablet""]",1392.74,"{""promo"": ""25%""}",90847,1,North America +2024-10-21,81738,2644,"[""Headphones"", ""Monitor"", ""Keyboard""]",4139.39,{},113769,1,South America +2024-09-10,81739,7405,"[""Headphones"", ""Monitor"", ""Tablet""]",1006.64,"{"""": ""13%""}",180272,1,Africa +2023-02-22,81740,6041,"[""Laptop"", ""Phone"", ""Headphones""]",2120.87,"{""seasonal"": ""6%""}",10791,0,South America +2023-11-08,81741,9435,"[""Tablet""]",3646.54,"{""promo"": ""6%""}",58383,0,South America +2023-05-09,81742,410,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",511.5,"{""seasonal"": ""26%""}",290632,1,South America +2023-11-23,81743,9906,"[""Charger""]",2112.98,{},149909,1,Africa +2024-07-25,81744,5285,"[""Wireless Mouse"", ""Headphones""]",2457.62,"{""seasonal"": ""27%""}",210546,0,North America +2024-11-30,81745,2135,"[""Wireless Mouse""]",881.68,{},215746,1,Europe +2024-04-27,81746,6486,"[""Laptop"", ""Monitor""]",4117.99,"{"""": ""24%""}",91458,0,Africa +2023-10-16,81747,4405,"[""Phone"", ""Headphones"", ""Tablet""]",969.77,"{""promo"": ""14%""}",155276,0,Europe +2024-05-01,81748,6499,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2396.61,"{""promo"": ""5%""}",249679,1,Asia +2024-03-05,81749,4893,"[""Charger""]",4268.41,{},106328,0,Europe +2024-07-22,81750,2605,"[""Headphones""]",890.59,"{""seasonal"": ""30%""}",48513,0,North America +2023-04-16,81751,5069,"[""Wireless Mouse""]",3936.56,"{""loyalty"": ""15%""}",267933,0,Asia +2023-12-14,81752,9278,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4491.76,{},10963,0,North America +2023-10-25,81753,7871,"[""Keyboard"", ""Charger""]",1091.9,{},265087,0,Asia +2023-05-30,81754,9947,"[""Tablet"", ""Keyboard""]",2573.92,{},45702,1,Africa +2024-07-07,81755,9947,"[""Laptop""]",3845.93,"{""promo"": ""5%""}",263113,0,South America +2023-12-06,81756,8802,"[""Wireless Mouse"", ""Phone""]",2755.9,"{""loyalty"": ""8%""}",115426,1,Africa +2023-08-13,81757,2205,"[""Phone""]",4846.75,{},287998,1,Europe +2024-07-10,81758,8235,"[""Headphones"", ""Monitor""]",1454.44,"{"""": ""14%""}",181914,0,North America +2024-10-06,81759,8226,"[""Tablet""]",3932.41,"{""promo"": ""16%""}",176586,0,North America +2023-10-16,81760,3747,"[""Headphones"", ""Laptop""]",1218.11,"{""loyalty"": ""26%""}",179941,1,Asia +2024-08-05,81761,5561,"[""Charger"", ""Phone""]",425.06,{},121553,1,Africa +2023-01-28,81762,7176,"[""Tablet""]",2838.88,"{""loyalty"": ""20%""}",201096,1,Asia +2024-02-12,81763,4148,"[""Headphones"", ""Monitor""]",794.03,"{""seasonal"": ""15%""}",173304,0,South America +2024-07-30,81764,7343,"[""Headphones""]",4204.59,"{""seasonal"": ""18%""}",237727,1,South America +2024-02-21,81765,9511,"[""Phone"", ""Keyboard""]",4956.9,{},196427,1,South America +2023-06-11,81766,7882,"[""Monitor""]",1655.62,"{""seasonal"": ""24%""}",253462,1,Europe +2024-09-20,81767,4248,"[""Wireless Mouse""]",1303.33,{},213254,1,Europe +2023-09-30,81768,3985,"[""Tablet""]",2994.58,{},189523,1,Asia +2023-05-29,81769,9611,"[""Headphones"", ""Charger"", ""Keyboard""]",3425.78,{},28094,0,Asia +2023-06-22,81770,9058,"[""Phone""]",4889.38,{},33526,0,Asia +2023-08-07,81771,7819,"[""Monitor""]",765.82,{},151528,0,North America +2023-04-05,81772,1299,"[""Laptop""]",282.92,{},298695,1,Europe +2023-08-31,81773,1457,"[""Tablet""]",106.17,"{""promo"": ""30%""}",173672,1,South America +2023-01-11,81774,6426,"[""Headphones""]",1743.61,{},45872,0,North America +2024-10-18,81775,4304,"[""Monitor""]",3998.01,{},64291,1,North America +2023-10-23,81776,3534,"[""Laptop"", ""Tablet""]",2536.63,{},183282,0,North America +2023-06-18,81777,7859,"[""Monitor"", ""Headphones"", ""Laptop""]",1294.26,{},246180,1,South America +2023-03-23,81778,6813,"[""Headphones"", ""Charger""]",3710.96,"{""loyalty"": ""28%""}",271680,1,South America +2024-02-20,81779,9926,"[""Headphones"", ""Monitor"", ""Keyboard""]",1168.08,{},215768,1,North America +2023-08-05,81780,8224,"[""Wireless Mouse""]",114.34,"{""loyalty"": ""29%""}",94818,1,Asia +2024-12-27,81781,5488,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1086.83,{},29426,0,Europe +2024-12-19,81782,9245,"[""Laptop"", ""Phone"", ""Headphones""]",4369.97,"{""seasonal"": ""14%""}",272812,0,Africa +2023-08-24,81783,8444,"[""Tablet"", ""Keyboard""]",4989.72,{},29733,1,Europe +2024-05-07,81784,7141,"[""Monitor"", ""Keyboard""]",4953.37,"{""seasonal"": ""6%""}",209749,0,North America +2024-12-07,81785,3957,"[""Phone""]",3889.25,{},184767,1,North America +2024-04-17,81786,5953,"[""Headphones""]",529.53,"{"""": ""17%""}",290748,1,Asia +2024-10-13,81787,4455,"[""Wireless Mouse""]",3050.22,{},239538,1,North America +2023-05-05,81788,8344,"[""Charger"", ""Laptop""]",1810.45,"{""seasonal"": ""7%""}",298779,0,South America +2023-11-16,81789,4377,"[""Monitor"", ""Phone"", ""Keyboard""]",250.22,"{""promo"": ""22%""}",175962,1,Europe +2023-02-04,81790,4287,"[""Monitor""]",2165.87,{},176186,0,Europe +2023-02-20,81791,9619,"[""Laptop"", ""Headphones""]",1423.84,{},98378,1,North America +2024-08-04,81792,2133,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",724.26,"{""loyalty"": ""29%""}",139117,0,Asia +2024-06-27,81793,9661,"[""Keyboard"", ""Phone"", ""Laptop""]",563.95,{},169901,1,Europe +2023-05-30,81794,7191,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1214.47,{},198425,1,South America +2024-12-08,81795,5353,"[""Tablet"", ""Laptop"", ""Phone""]",4193.64,"{""loyalty"": ""23%""}",196843,0,Europe +2024-04-28,81796,3736,"[""Headphones"", ""Phone"", ""Laptop""]",3686.36,{},168039,1,Asia +2023-04-13,81797,2627,"[""Keyboard""]",541.69,"{""promo"": ""13%""}",278189,0,South America +2023-09-04,81798,6916,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",740.8,{},229410,1,North America +2023-04-08,81799,9976,"[""Charger""]",4507.15,"{""promo"": ""6%""}",97555,0,Europe +2024-08-13,81800,6401,"[""Tablet"", ""Laptop"", ""Headphones""]",3449.81,{},96732,0,Africa +2023-05-03,81801,7395,"[""Tablet"", ""Headphones"", ""Phone""]",3185.39,{},172009,0,Europe +2024-11-03,81802,7949,"[""Phone""]",1522.24,"{"""": ""7%""}",135104,1,South America +2023-09-22,81803,4856,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1742.65,{},121350,1,South America +2023-08-01,81804,1906,"[""Tablet""]",162.91,{},113503,1,Europe +2023-10-20,81805,4876,"[""Charger""]",3556.24,"{""loyalty"": ""24%""}",249130,1,Europe +2024-02-06,81806,8763,"[""Phone"", ""Tablet""]",820.48,{},264680,0,Africa +2024-06-01,81807,4455,"[""Wireless Mouse"", ""Phone""]",188.27,"{""seasonal"": ""9%""}",127344,0,Asia +2023-02-23,81808,7621,"[""Tablet"", ""Phone"", ""Laptop""]",3111.38,{},215159,1,Africa +2024-08-11,81809,1607,"[""Wireless Mouse""]",4599.25,{},32107,0,Europe +2024-12-05,81810,6544,"[""Keyboard"", ""Phone""]",3713.19,{},277333,0,South America +2024-05-21,81811,3368,"[""Headphones""]",1884.3,{},31744,0,Asia +2024-08-31,81812,2298,"[""Headphones""]",744.94,"{"""": ""16%""}",172526,0,Asia +2023-01-15,81813,6568,"[""Wireless Mouse""]",156.24,"{""seasonal"": ""15%""}",19091,0,Asia +2024-07-10,81814,1492,"[""Tablet""]",4321.68,"{""loyalty"": ""15%""}",274886,0,South America +2023-10-09,81815,5006,"[""Laptop"", ""Phone"", ""Headphones""]",4270.59,{},135444,0,Africa +2024-01-14,81816,5583,"[""Laptop"", ""Charger""]",929.7,{},259288,1,Africa +2023-09-20,81817,4371,"[""Wireless Mouse""]",1775.82,{},173015,1,Africa +2024-12-22,81818,9594,"[""Phone""]",1797.53,"{""promo"": ""20%""}",92713,0,North America +2024-08-14,81819,4918,"[""Charger""]",170.04,"{""promo"": ""26%""}",105185,0,North America +2023-07-19,81820,125,"[""Tablet"", ""Charger"", ""Monitor""]",1713.77,"{""loyalty"": ""20%""}",189446,1,Africa +2023-04-19,81821,7979,"[""Monitor""]",1665.99,{},194322,0,Europe +2024-10-09,81822,4604,"[""Keyboard""]",4569.89,{},108652,0,North America +2023-10-19,81823,6941,"[""Monitor"", ""Charger""]",3146.1,{},107928,0,North America +2023-09-25,81824,7583,"[""Charger"", ""Phone""]",3633.98,"{""loyalty"": ""12%""}",201754,1,Asia +2023-05-06,81825,6912,"[""Keyboard"", ""Headphones""]",4186.14,{},111805,0,Asia +2024-04-22,81826,3327,"[""Keyboard"", ""Headphones"", ""Tablet""]",3614.04,{},149487,0,North America +2023-09-07,81827,6863,"[""Laptop"", ""Headphones"", ""Phone""]",2400.78,"{""promo"": ""7%""}",66500,0,Africa +2023-11-11,81828,6525,"[""Tablet""]",3570.9,"{""loyalty"": ""6%""}",110049,1,Africa +2023-04-06,81829,7473,"[""Tablet""]",1607.25,{},154450,0,North America +2024-09-27,81830,5763,"[""Charger"", ""Laptop""]",631.46,{},80338,1,Asia +2023-10-10,81831,6469,"[""Keyboard"", ""Phone"", ""Headphones""]",2652.13,"{""seasonal"": ""25%""}",53069,1,Europe +2024-01-30,81832,1240,"[""Monitor"", ""Wireless Mouse""]",1503.18,"{""promo"": ""23%""}",114144,1,Asia +2024-03-22,81833,4885,"[""Keyboard"", ""Laptop"", ""Phone""]",1069.52,{},129655,1,South America +2023-10-07,81834,6225,"[""Tablet""]",2095.7,{},161728,1,Asia +2024-09-07,81835,3847,"[""Charger""]",1461.67,"{""seasonal"": ""11%""}",65946,1,Asia +2023-10-14,81836,8632,"[""Charger""]",4900.77,{},151772,1,Africa +2023-06-26,81837,7327,"[""Keyboard""]",430.59,"{""promo"": ""28%""}",118597,1,Asia +2024-06-21,81838,744,"[""Keyboard"", ""Charger""]",1648.82,"{"""": ""22%""}",191500,0,Africa +2023-12-30,81839,2054,"[""Phone"", ""Tablet""]",4153.24,"{""loyalty"": ""20%""}",168317,1,Europe +2023-03-18,81840,8558,"[""Wireless Mouse""]",3085.49,"{"""": ""26%""}",264480,1,Africa +2024-08-07,81841,2758,"[""Wireless Mouse"", ""Charger""]",4048.78,{},156944,1,Africa +2024-03-12,81842,1621,"[""Monitor""]",743.69,{},249477,0,South America +2024-11-26,81843,9367,"[""Laptop"", ""Monitor""]",3146.67,"{""promo"": ""5%""}",211929,1,Africa +2024-06-18,81844,4140,"[""Monitor"", ""Keyboard"", ""Laptop""]",423.16,{},225605,1,Asia +2024-07-23,81845,2246,"[""Laptop"", ""Keyboard""]",3032.55,{},70628,0,Europe +2024-07-05,81846,5748,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",4040.54,"{"""": ""12%""}",90218,0,North America +2023-02-18,81847,9136,"[""Monitor""]",581.63,{},121660,1,Europe +2024-11-07,81848,8096,"[""Laptop""]",953.93,{},288421,0,Asia +2023-01-09,81849,4927,"[""Monitor""]",594.63,{},73212,0,Europe +2023-08-27,81850,1209,"[""Phone""]",3288.41,"{""promo"": ""27%""}",160630,1,Europe +2024-12-20,81851,3319,"[""Monitor""]",3241.63,"{"""": ""20%""}",276803,1,Asia +2023-04-18,81852,1367,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4266.66,"{""seasonal"": ""12%""}",243735,0,Asia +2024-02-16,81853,7989,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2332.15,{},221667,1,South America +2023-06-20,81854,104,"[""Laptop"", ""Charger"", ""Keyboard""]",1796.88,"{"""": ""15%""}",33808,1,Europe +2023-01-11,81855,9999,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",295.24,"{""seasonal"": ""28%""}",283724,1,Africa +2024-01-18,81856,2804,"[""Phone""]",1507.14,"{""seasonal"": ""17%""}",112164,0,Europe +2024-08-08,81857,1269,"[""Keyboard"", ""Monitor""]",906.61,"{""promo"": ""9%""}",79884,1,Africa +2023-04-18,81858,530,"[""Laptop"", ""Keyboard""]",4081.9,{},222367,0,South America +2024-03-18,81859,4792,"[""Charger""]",1387.87,{},62155,1,South America +2024-03-08,81860,431,"[""Tablet"", ""Phone"", ""Laptop""]",4963.68,{},207685,0,Africa +2024-03-21,81861,8579,"[""Phone"", ""Headphones""]",2498.56,{},82122,0,South America +2023-12-08,81862,8614,"[""Wireless Mouse"", ""Phone""]",4707.14,{},262126,1,Asia +2023-07-31,81863,2150,"[""Keyboard"", ""Laptop""]",4751.42,"{""loyalty"": ""23%""}",178160,0,Europe +2024-03-21,81864,6017,"[""Phone"", ""Charger"", ""Headphones""]",4892.17,{},290153,0,Europe +2023-09-17,81865,6490,"[""Headphones""]",670.37,"{""seasonal"": ""25%""}",32485,1,South America +2024-12-20,81866,4421,"[""Wireless Mouse"", ""Monitor""]",703.72,{},81407,0,North America +2023-11-04,81867,2092,"[""Headphones"", ""Monitor""]",3333.23,{},87881,0,Africa +2024-07-02,81868,2932,"[""Wireless Mouse""]",3750.13,{},180530,0,North America +2023-03-27,81869,5483,"[""Wireless Mouse""]",3224.98,"{""seasonal"": ""29%""}",240362,1,North America +2024-07-07,81870,5957,"[""Tablet"", ""Laptop""]",1297.21,{},266118,1,Asia +2023-07-13,81871,8812,"[""Headphones"", ""Phone""]",3854.08,"{""promo"": ""11%""}",234240,1,Asia +2024-03-10,81872,671,"[""Laptop""]",3401.91,{},80366,0,South America +2024-08-09,81873,9005,"[""Laptop"", ""Keyboard"", ""Headphones""]",3581.97,{},159502,0,Asia +2023-01-26,81874,3960,"[""Monitor"", ""Wireless Mouse""]",2287.44,{},76211,1,Africa +2024-03-07,81875,5453,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",753.66,"{""seasonal"": ""13%""}",10411,0,Africa +2024-10-18,81876,6317,"[""Laptop""]",2829.6,"{""seasonal"": ""20%""}",168812,1,North America +2023-07-28,81877,9585,"[""Charger"", ""Phone"", ""Tablet""]",4081.51,{},280532,0,Africa +2023-03-06,81878,8889,"[""Phone""]",128.6,{},225224,1,North America +2024-05-20,81879,4098,"[""Tablet""]",347.24,{},96015,1,North America +2024-09-26,81880,1912,"[""Keyboard"", ""Headphones"", ""Tablet""]",229.49,"{""loyalty"": ""15%""}",9591,0,North America +2023-02-16,81881,9252,"[""Monitor"", ""Keyboard""]",4281.82,{},229843,1,South America +2024-05-08,81882,1984,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1443.46,"{""loyalty"": ""20%""}",223174,0,North America +2023-10-11,81883,8694,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4740.55,{},48399,1,Europe +2024-11-28,81884,6032,"[""Monitor"", ""Phone""]",3446.39,"{""seasonal"": ""9%""}",205658,1,North America +2024-04-20,81885,8338,"[""Wireless Mouse"", ""Headphones""]",1049.75,{},60408,1,North America +2023-01-13,81886,7474,"[""Charger"", ""Monitor""]",4374.09,{},28457,0,South America +2024-02-25,81887,1231,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4991.56,"{"""": ""20%""}",168860,1,Africa +2023-03-15,81888,9351,"[""Keyboard"", ""Phone""]",3586.2,{},34923,0,Europe +2023-12-17,81889,4625,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1705.1,{},271611,0,South America +2023-03-26,81890,2100,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2392.86,{},13867,0,Europe +2024-08-07,81891,9967,"[""Headphones""]",4530.61,{},136315,1,Africa +2023-03-24,81892,6489,"[""Charger"", ""Keyboard""]",2822.99,{},175037,0,Europe +2023-09-27,81893,4459,"[""Tablet"", ""Laptop"", ""Phone""]",3496.7,{},190469,0,Africa +2023-02-23,81894,8157,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",495.54,{},109421,1,Europe +2023-03-30,81895,4642,"[""Charger"", ""Laptop"", ""Phone""]",718.64,"{""seasonal"": ""5%""}",121634,0,Africa +2024-03-13,81896,9635,"[""Charger"", ""Laptop"", ""Headphones""]",2400.11,{},46215,1,South America +2023-08-13,81897,1482,"[""Charger"", ""Monitor""]",3306.2,"{""seasonal"": ""25%""}",208871,1,Europe +2023-07-04,81898,7540,"[""Headphones"", ""Monitor""]",4879.78,{},284285,0,Asia +2024-10-24,81899,7302,"[""Wireless Mouse""]",100.12,{},6123,1,Africa +2024-09-12,81900,4373,"[""Wireless Mouse"", ""Headphones""]",2156.13,"{""loyalty"": ""13%""}",148114,0,Europe +2023-09-21,81901,6157,"[""Laptop""]",4660.4,{},117506,0,Asia +2024-05-23,81902,6942,"[""Wireless Mouse""]",4001.34,{},173063,1,Africa +2024-01-19,81903,7462,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4523.82,{},76970,0,South America +2023-10-30,81904,3775,"[""Keyboard"", ""Laptop""]",4652.54,{},60059,0,Europe +2024-04-23,81905,3456,"[""Laptop"", ""Phone""]",4712.56,"{""promo"": ""12%""}",83992,1,South America +2023-03-24,81906,3691,"[""Phone""]",2951.83,"{"""": ""6%""}",47527,1,South America +2024-07-17,81907,1156,"[""Tablet"", ""Laptop""]",4148.05,{},48835,1,Asia +2023-07-20,81908,5826,"[""Headphones""]",978.96,"{""promo"": ""17%""}",1968,0,Europe +2024-03-31,81909,1603,"[""Laptop"", ""Phone""]",956.96,"{""seasonal"": ""7%""}",185219,0,Africa +2023-02-25,81910,4419,"[""Phone""]",3393.09,"{""promo"": ""6%""}",295796,0,North America +2023-10-01,81911,9178,"[""Headphones"", ""Monitor""]",830.54,{},102415,1,North America +2024-01-09,81912,8268,"[""Laptop"", ""Charger""]",2709.53,{},247476,1,Europe +2023-03-17,81913,3188,"[""Phone""]",4444.1,{},45807,0,South America +2023-06-16,81914,8312,"[""Wireless Mouse"", ""Keyboard""]",1605.34,{},80853,0,Africa +2023-04-10,81915,1452,"[""Charger""]",4673.87,"{""seasonal"": ""22%""}",245070,0,South America +2024-06-14,81916,6096,"[""Laptop""]",2429.54,{},223974,1,Africa +2024-09-23,81917,4152,"[""Headphones"", ""Charger""]",4999.04,"{""loyalty"": ""13%""}",274370,0,South America +2024-08-26,81918,9608,"[""Tablet"", ""Laptop""]",2919.31,{},260793,1,Africa +2024-12-02,81919,1351,"[""Phone"", ""Headphones""]",932.34,"{""promo"": ""28%""}",144213,0,Asia +2023-12-24,81920,1156,"[""Headphones""]",1201.52,{},111576,0,Africa +2023-08-02,81921,7499,"[""Phone"", ""Keyboard""]",1273.2,"{""seasonal"": ""26%""}",264129,0,North America +2023-12-29,81922,1143,"[""Keyboard"", ""Headphones"", ""Phone""]",1871.05,{},151886,1,South America +2023-01-14,81923,6215,"[""Monitor""]",3144.89,{},261008,0,Africa +2024-06-07,81924,6107,"[""Keyboard"", ""Wireless Mouse""]",4706.54,"{""promo"": ""20%""}",16034,1,Africa +2023-09-28,81925,8664,"[""Laptop"", ""Headphones""]",3427.0,{},278097,0,Europe +2024-04-06,81926,3399,"[""Keyboard""]",4913.76,"{""loyalty"": ""5%""}",43370,1,South America +2024-08-20,81927,1323,"[""Headphones"", ""Keyboard""]",3055.42,"{""promo"": ""8%""}",230624,1,Asia +2023-12-19,81928,8829,"[""Monitor"", ""Tablet""]",3595.13,{},295372,1,North America +2023-06-07,81929,5518,"[""Charger"", ""Phone""]",1942.22,{},58464,0,South America +2024-06-28,81930,3442,"[""Charger"", ""Laptop"", ""Headphones""]",3258.26,"{"""": ""21%""}",28135,0,South America +2023-08-27,81931,3750,"[""Headphones"", ""Tablet"", ""Charger""]",1303.56,{},295866,0,Asia +2023-11-15,81932,6022,"[""Tablet""]",3916.58,{},299480,1,North America +2023-07-03,81933,7566,"[""Tablet"", ""Charger"", ""Headphones""]",1018.45,"{""promo"": ""28%""}",35906,0,South America +2023-04-11,81934,5118,"[""Tablet""]",2307.22,"{""loyalty"": ""16%""}",13174,0,Africa +2023-05-21,81935,9539,"[""Monitor""]",1116.21,{},166544,1,Europe +2023-04-06,81936,8191,"[""Headphones""]",3388.06,"{""loyalty"": ""12%""}",134245,1,Europe +2024-01-11,81937,8156,"[""Laptop"", ""Phone"", ""Headphones""]",2749.47,{},105174,1,Europe +2023-08-01,81938,592,"[""Phone"", ""Charger"", ""Monitor""]",4558.46,{},267206,1,Europe +2024-05-09,81939,3462,"[""Laptop"", ""Tablet"", ""Charger""]",4053.45,{},121909,1,Africa +2023-03-14,81940,603,"[""Wireless Mouse""]",4792.52,{},153792,0,South America +2024-12-11,81941,2491,"[""Wireless Mouse""]",2447.17,{},107933,1,Europe +2023-09-25,81942,553,"[""Headphones""]",4875.74,{},289007,1,Europe +2024-03-20,81943,6900,"[""Monitor"", ""Keyboard"", ""Tablet""]",1266.98,"{""promo"": ""15%""}",154429,0,Africa +2024-01-21,81944,3261,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4087.26,{},83176,0,Europe +2024-06-09,81945,9126,"[""Phone""]",2928.14,"{""loyalty"": ""27%""}",24111,0,North America +2024-02-12,81946,3337,"[""Charger""]",1171.28,{},298818,0,Europe +2024-02-09,81947,3940,"[""Laptop""]",3296.15,"{"""": ""14%""}",170194,0,Asia +2023-02-15,81948,4842,"[""Wireless Mouse""]",2554.77,{},293061,0,Europe +2024-11-01,81949,2372,"[""Keyboard""]",4776.33,{},66479,1,Europe +2023-02-17,81950,956,"[""Charger"", ""Headphones"", ""Phone""]",1546.68,{},169303,0,North America +2024-04-26,81951,1401,"[""Laptop"", ""Tablet"", ""Keyboard""]",97.43,"{""promo"": ""11%""}",116274,0,Africa +2023-09-25,81952,7984,"[""Tablet"", ""Charger"", ""Laptop""]",1279.28,{},46240,1,Africa +2023-02-17,81953,6096,"[""Phone"", ""Laptop""]",4851.73,"{""seasonal"": ""14%""}",39042,0,Asia +2023-08-02,81954,6587,"[""Headphones"", ""Phone"", ""Monitor""]",1874.66,{},69003,0,South America +2023-07-29,81955,9843,"[""Phone"", ""Tablet""]",4271.67,{},31177,0,Asia +2024-04-14,81956,6294,"[""Keyboard"", ""Monitor"", ""Charger""]",4363.64,"{"""": ""5%""}",72456,0,South America +2024-01-29,81957,3602,"[""Monitor"", ""Tablet"", ""Phone""]",3995.59,{},36739,1,Asia +2023-01-29,81958,8922,"[""Headphones""]",2389.84,{},174229,0,Asia +2024-06-19,81959,9525,"[""Phone""]",1493.45,{},8266,1,North America +2024-11-20,81960,5896,"[""Charger"", ""Headphones""]",527.96,"{""seasonal"": ""14%""}",240308,0,North America +2024-05-28,81961,5298,"[""Tablet""]",2178.05,{},21424,0,Europe +2023-09-12,81962,9212,"[""Phone""]",1726.93,{},207884,1,Europe +2023-07-30,81963,1288,"[""Laptop"", ""Charger""]",2211.87,{},192178,0,Europe +2023-03-13,81964,3134,"[""Phone""]",92.42,"{""loyalty"": ""16%""}",105891,1,South America +2024-06-30,81965,2983,"[""Headphones"", ""Phone"", ""Tablet""]",4375.98,{},192827,1,South America +2024-10-15,81966,6301,"[""Charger""]",3399.21,{},31319,0,Asia +2023-02-01,81967,9097,"[""Keyboard""]",4823.51,{},238473,0,North America +2024-06-14,81968,3684,"[""Wireless Mouse"", ""Keyboard""]",2748.2,{},246153,1,Africa +2024-11-20,81969,5870,"[""Wireless Mouse"", ""Tablet""]",2967.04,"{""promo"": ""19%""}",176031,0,North America +2024-01-18,81970,9234,"[""Laptop""]",53.91,{},24252,1,South America +2024-12-05,81971,258,"[""Keyboard"", ""Tablet"", ""Phone""]",1340.28,{},192409,0,Europe +2023-04-12,81972,2341,"[""Wireless Mouse"", ""Phone""]",3576.56,{},100474,0,Asia +2024-05-25,81973,6405,"[""Wireless Mouse"", ""Keyboard""]",1024.43,{},281163,0,Europe +2024-02-02,81974,7200,"[""Keyboard""]",3281.95,"{""seasonal"": ""7%""}",153639,0,Europe +2023-01-18,81975,3578,"[""Phone""]",4873.12,"{""loyalty"": ""12%""}",110302,0,Africa +2023-11-09,81976,4426,"[""Laptop"", ""Phone""]",3844.93,{},187197,0,Europe +2024-04-13,81977,7914,"[""Wireless Mouse""]",4398.48,{},108879,0,South America +2024-01-23,81978,821,"[""Keyboard""]",4407.06,"{""loyalty"": ""25%""}",41113,1,South America +2024-10-20,81979,1905,"[""Phone"", ""Monitor"", ""Keyboard""]",2569.2,{},46929,1,North America +2023-09-29,81980,4300,"[""Phone""]",3139.07,{},213074,0,North America +2024-12-22,81981,7859,"[""Tablet""]",1219.56,{},79854,1,North America +2023-12-23,81982,8445,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",670.13,"{""promo"": ""5%""}",279862,1,Asia +2024-11-04,81983,4668,"[""Laptop"", ""Headphones"", ""Tablet""]",4639.27,"{"""": ""16%""}",160877,1,Europe +2023-04-03,81984,9203,"[""Charger"", ""Headphones""]",84.54,"{""loyalty"": ""17%""}",151242,1,Europe +2023-09-22,81985,8172,"[""Keyboard"", ""Laptop""]",4011.73,{},67998,1,Europe +2024-08-01,81986,8261,"[""Keyboard"", ""Charger"", ""Phone""]",746.39,"{""seasonal"": ""17%""}",99630,0,Africa +2024-07-26,81987,1399,"[""Monitor""]",1251.58,{},132448,0,Africa +2024-05-30,81988,5467,"[""Charger""]",4845.14,"{""promo"": ""5%""}",172740,0,Europe +2023-05-31,81989,9405,"[""Charger"", ""Tablet"", ""Headphones""]",1046.3,{},152758,1,Africa +2024-12-26,81990,733,"[""Wireless Mouse""]",1536.39,{},33508,1,Asia +2023-05-13,81991,8558,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",88.19,{},98087,0,Asia +2023-06-16,81992,6899,"[""Tablet"", ""Laptop""]",3246.71,"{""seasonal"": ""20%""}",112287,1,North America +2024-03-03,81993,5277,"[""Monitor"", ""Phone"", ""Headphones""]",1754.86,"{""loyalty"": ""14%""}",241695,0,North America +2024-12-07,81994,7630,"[""Monitor""]",700.43,"{""seasonal"": ""16%""}",107729,0,Africa +2024-09-21,81995,2524,"[""Headphones"", ""Wireless Mouse""]",3982.47,{},199662,1,North America +2024-11-28,81996,3345,"[""Monitor"", ""Laptop""]",1928.77,"{""promo"": ""18%""}",180365,0,South America +2024-02-06,81997,1386,"[""Headphones""]",3366.37,{},225357,0,Europe +2023-08-20,81998,7726,"[""Laptop"", ""Phone"", ""Headphones""]",997.04,"{"""": ""18%""}",191888,1,South America +2023-04-15,81999,5874,"[""Phone""]",3878.29,"{""seasonal"": ""27%""}",57361,0,Asia +2024-10-19,82000,7982,"[""Keyboard"", ""Laptop"", ""Phone""]",2977.05,"{""loyalty"": ""25%""}",29628,0,North America +2023-07-17,82001,5854,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3885.77,{},145229,0,South America +2023-12-10,82002,1559,"[""Laptop"", ""Charger""]",1699.21,"{""promo"": ""29%""}",231239,1,Africa +2024-07-28,82003,9230,"[""Monitor"", ""Laptop""]",1930.02,{},246407,1,Asia +2023-03-13,82004,3700,"[""Wireless Mouse"", ""Tablet""]",3697.07,{},227821,0,South America +2023-03-28,82005,961,"[""Keyboard"", ""Tablet""]",4254.28,{},32837,0,Africa +2024-12-04,82006,6268,"[""Headphones"", ""Wireless Mouse""]",364.55,{},63542,1,Africa +2024-06-16,82007,6533,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2622.85,{},165903,0,Europe +2023-01-29,82008,1308,"[""Keyboard""]",3695.62,"{"""": ""17%""}",69652,1,South America +2024-10-26,82009,8004,"[""Monitor"", ""Phone""]",2056.48,"{""loyalty"": ""22%""}",140962,1,South America +2024-08-15,82010,5668,"[""Tablet""]",2389.82,{},283671,0,South America +2024-05-29,82011,7733,"[""Headphones"", ""Phone"", ""Tablet""]",1738.0,{},123395,0,Asia +2023-06-16,82012,2959,"[""Charger""]",3669.01,"{"""": ""26%""}",231785,1,Europe +2024-08-26,82013,3351,"[""Tablet"", ""Phone""]",3735.3,{},227860,0,Asia +2023-10-25,82014,6403,"[""Laptop"", ""Charger"", ""Headphones""]",4174.98,{},35513,0,Europe +2023-11-01,82015,5210,"[""Headphones"", ""Tablet""]",1434.67,"{""seasonal"": ""8%""}",157286,1,North America +2023-07-03,82016,5387,"[""Tablet""]",435.63,{},188824,1,North America +2023-12-27,82017,4884,"[""Phone"", ""Laptop""]",376.74,{},299700,1,Europe +2024-08-29,82018,8458,"[""Monitor"", ""Headphones""]",1663.26,"{""loyalty"": ""20%""}",122154,1,South America +2024-11-26,82019,8657,"[""Tablet"", ""Monitor"", ""Laptop""]",579.04,{},203688,0,South America +2024-06-09,82020,5615,"[""Tablet"", ""Charger"", ""Laptop""]",4007.27,"{""seasonal"": ""8%""}",67226,1,South America +2024-03-18,82021,2298,"[""Tablet"", ""Phone""]",321.8,{},261787,1,Europe +2023-01-25,82022,2489,"[""Phone"", ""Headphones"", ""Tablet""]",1402.75,"{""loyalty"": ""18%""}",294013,1,South America +2023-05-03,82023,7683,"[""Tablet""]",542.8,"{"""": ""30%""}",232244,0,South America +2023-08-18,82024,6466,"[""Headphones"", ""Keyboard"", ""Tablet""]",4569.24,{},239644,0,Asia +2024-05-13,82025,9247,"[""Phone"", ""Headphones""]",4354.83,{},243397,0,Asia +2024-09-13,82026,4348,"[""Phone""]",3002.7,"{""loyalty"": ""23%""}",269236,0,Asia +2024-02-25,82027,8353,"[""Laptop""]",4192.4,"{""loyalty"": ""20%""}",25045,0,South America +2024-12-05,82028,1183,"[""Monitor"", ""Keyboard"", ""Laptop""]",2927.08,"{""seasonal"": ""6%""}",100319,1,Africa +2023-06-12,82029,4600,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4434.2,{},155602,0,North America +2023-10-12,82030,5626,"[""Charger"", ""Wireless Mouse""]",329.84,"{""promo"": ""24%""}",208997,0,North America +2023-11-19,82031,7836,"[""Charger"", ""Keyboard"", ""Monitor""]",747.42,{},113830,1,Africa +2024-09-10,82032,7936,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2503.07,"{""promo"": ""26%""}",124923,0,Europe +2024-10-25,82033,3527,"[""Headphones"", ""Tablet""]",62.01,"{"""": ""29%""}",195807,1,Asia +2024-02-10,82034,8503,"[""Tablet""]",3778.85,"{""promo"": ""18%""}",277817,0,Europe +2024-12-11,82035,2328,"[""Phone"", ""Tablet""]",1139.23,"{""seasonal"": ""5%""}",59553,0,Asia +2023-05-07,82036,27,"[""Tablet"", ""Monitor""]",1558.48,"{""promo"": ""15%""}",178804,0,North America +2024-11-01,82037,587,"[""Charger""]",1454.12,"{""loyalty"": ""5%""}",199995,0,South America +2024-07-21,82038,6721,"[""Wireless Mouse""]",521.63,"{""promo"": ""25%""}",149584,0,North America +2023-07-21,82039,814,"[""Tablet""]",3470.3,{},39795,1,Asia +2023-04-09,82040,4895,"[""Wireless Mouse"", ""Monitor""]",203.99,{},237112,1,North America +2024-06-20,82041,3467,"[""Laptop""]",3437.49,{},43565,0,Asia +2024-04-27,82042,3409,"[""Tablet"", ""Keyboard"", ""Monitor""]",979.87,"{""seasonal"": ""30%""}",140068,1,South America +2023-12-23,82043,4580,"[""Charger"", ""Phone"", ""Laptop""]",3662.48,{},106907,0,Africa +2023-01-09,82044,9340,"[""Wireless Mouse"", ""Tablet""]",992.95,"{""promo"": ""28%""}",43092,0,Africa +2023-03-04,82045,2371,"[""Headphones"", ""Laptop"", ""Charger""]",4238.96,{},214471,1,South America +2024-06-22,82046,5933,"[""Tablet"", ""Monitor"", ""Charger""]",1872.89,"{""seasonal"": ""8%""}",9851,1,North America +2024-07-27,82047,5858,"[""Charger"", ""Headphones""]",1936.62,"{""loyalty"": ""12%""}",70557,0,Africa +2023-01-10,82048,7322,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1013.43,"{""loyalty"": ""20%""}",30218,0,Asia +2023-10-08,82049,2148,"[""Wireless Mouse"", ""Keyboard""]",3653.85,{},146667,0,North America +2023-03-30,82050,4522,"[""Charger""]",3510.11,{},195198,0,Europe +2024-09-30,82051,7881,"[""Charger""]",528.07,{},73807,1,Africa +2023-10-02,82052,1226,"[""Headphones"", ""Charger"", ""Laptop""]",2022.34,{},253853,1,Africa +2024-06-19,82053,3598,"[""Wireless Mouse"", ""Laptop""]",3375.3,"{""loyalty"": ""20%""}",62267,1,South America +2023-02-11,82054,5589,"[""Headphones"", ""Charger"", ""Laptop""]",1456.61,{},186492,1,Africa +2023-04-15,82055,6064,"[""Tablet"", ""Laptop"", ""Headphones""]",254.53,{},12283,1,North America +2023-04-26,82056,3310,"[""Monitor""]",2863.83,"{""loyalty"": ""29%""}",10673,1,Africa +2024-09-08,82057,7707,"[""Wireless Mouse""]",1251.6,{},64569,1,Asia +2024-04-13,82058,8623,"[""Charger""]",4846.44,"{""seasonal"": ""14%""}",269059,0,Europe +2023-09-12,82059,5655,"[""Monitor"", ""Laptop""]",395.51,"{""seasonal"": ""22%""}",37905,0,Africa +2023-02-14,82060,4074,"[""Charger""]",1108.62,{},294316,0,Asia +2023-08-22,82061,1381,"[""Wireless Mouse"", ""Headphones""]",4036.78,"{"""": ""19%""}",222599,0,South America +2024-11-22,82062,6453,"[""Headphones""]",4842.5,"{"""": ""16%""}",15527,0,South America +2024-06-02,82063,8827,"[""Charger"", ""Tablet"", ""Phone""]",162.56,"{""loyalty"": ""22%""}",51826,1,North America +2024-08-23,82064,3456,"[""Laptop""]",4015.68,{},203006,0,Europe +2023-05-31,82065,6007,"[""Wireless Mouse""]",2890.15,{},172272,0,South America +2023-02-07,82066,3853,"[""Laptop""]",4212.38,{},223034,1,South America +2024-10-14,82067,1209,"[""Keyboard"", ""Monitor"", ""Charger""]",4839.97,{},11506,1,Europe +2023-05-06,82068,1254,"[""Laptop"", ""Keyboard""]",2801.82,"{"""": ""21%""}",119607,1,Europe +2023-04-16,82069,145,"[""Keyboard"", ""Charger""]",3635.7,"{""seasonal"": ""12%""}",77508,1,Europe +2023-01-21,82070,6846,"[""Monitor"", ""Tablet"", ""Keyboard""]",2581.41,"{"""": ""13%""}",169637,0,South America +2023-02-11,82071,8072,"[""Charger"", ""Tablet"", ""Keyboard""]",950.2,{},290931,1,Asia +2024-10-03,82072,4202,"[""Monitor""]",637.45,{},219654,0,Asia +2023-02-05,82073,3738,"[""Tablet"", ""Monitor""]",3645.99,"{""seasonal"": ""19%""}",114985,0,Europe +2024-02-25,82074,7130,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1285.49,"{""loyalty"": ""13%""}",253532,1,Europe +2023-02-20,82075,6642,"[""Keyboard""]",4013.23,{},61049,1,North America +2024-06-28,82076,126,"[""Tablet"", ""Monitor""]",4522.56,{},94919,1,Europe +2024-02-08,82077,8432,"[""Tablet""]",2206.98,{},205958,1,Africa +2024-02-14,82078,9977,"[""Charger""]",205.3,"{""seasonal"": ""24%""}",6931,0,North America +2024-09-13,82079,7734,"[""Monitor"", ""Charger""]",1278.02,"{""seasonal"": ""14%""}",39083,1,Asia +2024-03-28,82080,4046,"[""Keyboard""]",643.83,"{""promo"": ""11%""}",101661,1,Africa +2023-10-02,82081,1328,"[""Monitor"", ""Laptop""]",2006.76,{},292898,0,South America +2023-08-11,82082,1454,"[""Laptop"", ""Headphones""]",3683.48,{},114282,1,South America +2023-04-18,82083,6862,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",233.17,"{"""": ""30%""}",110419,1,South America +2024-09-05,82084,1316,"[""Monitor""]",3806.55,{},206520,0,North America +2024-09-11,82085,223,"[""Monitor"", ""Headphones""]",3803.95,"{"""": ""7%""}",207446,1,Europe +2023-04-29,82086,8556,"[""Monitor""]",513.52,"{"""": ""23%""}",237799,1,Europe +2023-05-08,82087,132,"[""Charger""]",2129.26,{},288066,0,Europe +2023-08-27,82088,8611,"[""Charger""]",4443.64,{},126893,0,Asia +2023-01-15,82089,6821,"[""Laptop"", ""Wireless Mouse""]",3517.06,{},192475,1,Africa +2024-02-10,82090,6510,"[""Laptop"", ""Phone""]",1185.73,{},17762,0,North America +2024-08-05,82091,3769,"[""Monitor"", ""Tablet""]",3794.72,{},216868,0,South America +2024-05-10,82092,2308,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2169.82,{},258102,0,South America +2024-10-25,82093,9829,"[""Tablet"", ""Charger""]",1861.11,"{""seasonal"": ""22%""}",247501,1,North America +2024-07-30,82094,5127,"[""Tablet"", ""Laptop""]",1746.25,"{""promo"": ""7%""}",67807,0,South America +2023-05-20,82095,515,"[""Phone"", ""Charger"", ""Monitor""]",2173.46,{},46346,1,South America +2024-12-05,82096,4909,"[""Charger"", ""Wireless Mouse"", ""Phone""]",106.39,{},14304,1,Asia +2023-10-05,82097,3692,"[""Tablet"", ""Phone"", ""Charger""]",2829.67,"{""seasonal"": ""7%""}",103590,0,Asia +2024-03-27,82098,7903,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3083.54,"{""promo"": ""29%""}",98945,1,Europe +2023-04-04,82099,817,"[""Keyboard""]",4818.39,"{""seasonal"": ""14%""}",294048,0,Asia +2024-07-29,82100,4234,"[""Laptop"", ""Wireless Mouse""]",2972.45,"{""promo"": ""23%""}",98637,0,South America +2023-07-31,82101,2332,"[""Tablet"", ""Keyboard"", ""Charger""]",2862.01,{},282222,1,South America +2024-03-17,82102,7013,"[""Keyboard"", ""Monitor"", ""Phone""]",894.8,{},12582,1,Asia +2023-02-04,82103,4917,"[""Tablet"", ""Headphones""]",4225.19,"{"""": ""19%""}",275375,0,South America +2023-01-31,82104,5123,"[""Charger""]",3534.11,"{""seasonal"": ""12%""}",167612,0,Africa +2024-05-07,82105,2379,"[""Keyboard""]",3851.42,{},263765,1,North America +2024-08-22,82106,8759,"[""Phone""]",2699.48,"{"""": ""17%""}",235482,1,South America +2024-08-19,82107,4538,"[""Laptop"", ""Charger""]",4835.79,{},70161,1,South America +2023-04-13,82108,3445,"[""Tablet"", ""Charger""]",219.47,"{""loyalty"": ""30%""}",204055,1,Asia +2023-12-17,82109,1728,"[""Monitor""]",1460.55,{},116793,1,Africa +2023-02-05,82110,3362,"[""Phone"", ""Charger"", ""Keyboard""]",2158.1,"{"""": ""16%""}",149332,0,Asia +2024-01-10,82111,9614,"[""Phone"", ""Headphones""]",3242.53,{},73036,0,Europe +2023-05-25,82112,5938,"[""Tablet""]",3923.19,"{""loyalty"": ""21%""}",135377,1,Africa +2023-11-23,82113,8382,"[""Monitor""]",4824.48,"{"""": ""10%""}",142130,0,Asia +2024-04-22,82114,941,"[""Wireless Mouse"", ""Charger""]",3560.12,"{""promo"": ""8%""}",54564,1,Asia +2024-07-30,82115,5555,"[""Tablet"", ""Charger""]",2013.78,{},62124,0,Asia +2023-02-02,82116,4905,"[""Laptop"", ""Charger"", ""Headphones""]",3240.35,{},143870,0,Europe +2023-03-12,82117,276,"[""Wireless Mouse""]",3947.1,{},203287,0,Europe +2024-12-19,82118,6308,"[""Phone"", ""Laptop""]",907.99,{},113033,0,Asia +2023-08-07,82119,1040,"[""Laptop"", ""Monitor"", ""Headphones""]",3398.55,{},83523,0,Asia +2024-02-25,82120,1444,"[""Monitor"", ""Phone""]",4820.36,"{""loyalty"": ""24%""}",240017,0,Europe +2024-08-07,82121,4689,"[""Keyboard"", ""Wireless Mouse""]",4594.46,"{""seasonal"": ""20%""}",264772,1,South America +2024-01-25,82122,2359,"[""Tablet"", ""Laptop"", ""Keyboard""]",2669.18,"{""promo"": ""5%""}",120750,0,North America +2024-10-30,82123,4423,"[""Phone"", ""Headphones""]",4376.89,"{""seasonal"": ""17%""}",29775,0,Africa +2023-02-27,82124,5012,"[""Headphones"", ""Laptop"", ""Tablet""]",753.37,{},136072,1,North America +2023-01-13,82125,6381,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2600.3,{},39208,1,Asia +2023-03-24,82126,8233,"[""Monitor""]",4868.14,{},47009,1,Asia +2024-07-27,82127,3449,"[""Wireless Mouse""]",500.25,{},72551,1,North America +2024-12-08,82128,9417,"[""Wireless Mouse"", ""Monitor""]",1091.53,"{""loyalty"": ""27%""}",206371,0,North America +2024-11-24,82129,3180,"[""Wireless Mouse"", ""Phone""]",2418.64,"{""promo"": ""17%""}",190181,1,North America +2023-01-11,82130,936,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",290.88,"{""loyalty"": ""15%""}",239645,1,South America +2024-09-27,82131,607,"[""Keyboard"", ""Laptop""]",974.27,{},64114,0,Asia +2023-08-24,82132,5801,"[""Charger"", ""Laptop""]",4999.4,{},195237,1,Europe +2024-12-19,82133,2524,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",3454.26,"{""seasonal"": ""15%""}",272179,0,Europe +2023-08-23,82134,2333,"[""Charger"", ""Laptop"", ""Monitor""]",623.12,{},24207,0,Europe +2023-07-04,82135,8520,"[""Monitor"", ""Keyboard"", ""Tablet""]",4019.83,"{""promo"": ""9%""}",275613,1,Asia +2023-03-14,82136,9070,"[""Keyboard"", ""Headphones""]",1560.05,"{""loyalty"": ""8%""}",102531,1,Asia +2023-09-02,82137,7641,"[""Headphones""]",56.5,"{""promo"": ""7%""}",88382,0,North America +2024-05-03,82138,3405,"[""Laptop"", ""Headphones"", ""Phone""]",2727.62,"{""loyalty"": ""17%""}",198202,1,Europe +2023-11-27,82139,6185,"[""Charger"", ""Laptop""]",4057.51,{},49033,1,North America +2023-08-23,82140,1731,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3207.99,"{"""": ""30%""}",173894,0,Asia +2023-09-10,82141,6055,"[""Monitor""]",2805.34,{},77574,1,Africa +2024-08-19,82142,8542,"[""Headphones"", ""Monitor""]",1409.05,"{"""": ""12%""}",62730,0,South America +2023-03-01,82143,7338,"[""Charger""]",868.04,{},172778,0,Africa +2024-10-11,82144,8046,"[""Laptop""]",4771.27,{},19409,1,Europe +2023-12-09,82145,5427,"[""Charger"", ""Keyboard"", ""Laptop""]",1496.64,{},87421,0,South America +2023-02-26,82146,3463,"[""Tablet"", ""Laptop""]",1848.71,"{""promo"": ""16%""}",19924,0,Asia +2024-02-21,82147,640,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2829.14,{},208290,1,Asia +2023-06-19,82148,2041,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",381.22,"{""loyalty"": ""25%""}",169501,1,Europe +2024-10-11,82149,8070,"[""Monitor"", ""Keyboard"", ""Phone""]",822.4,"{""promo"": ""27%""}",155480,0,Africa +2023-03-11,82150,1794,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1974.23,"{"""": ""19%""}",106105,0,Asia +2023-10-03,82151,259,"[""Wireless Mouse"", ""Keyboard""]",3396.39,{},171512,1,Asia +2023-07-16,82152,1524,"[""Monitor"", ""Keyboard"", ""Laptop""]",4577.96,"{""loyalty"": ""26%""}",88745,1,Asia +2023-08-03,82153,4629,"[""Keyboard"", ""Laptop"", ""Monitor""]",1533.95,"{""seasonal"": ""11%""}",46307,0,South America +2023-07-13,82154,9638,"[""Laptop"", ""Monitor"", ""Headphones""]",2609.37,{},174266,0,Asia +2024-05-22,82155,38,"[""Headphones"", ""Phone""]",188.53,"{""seasonal"": ""20%""}",103793,1,Africa +2023-08-10,82156,7192,"[""Monitor"", ""Keyboard""]",4080.63,{},219330,0,South America +2023-10-07,82157,5691,"[""Keyboard"", ""Charger"", ""Phone""]",3416.1,{},26371,0,Europe +2023-06-12,82158,75,"[""Headphones"", ""Tablet"", ""Phone""]",1933.9,{},215666,1,Europe +2024-03-09,82159,4588,"[""Monitor"", ""Charger"", ""Headphones""]",1693.66,"{""seasonal"": ""27%""}",215208,1,Asia +2024-04-08,82160,7694,"[""Monitor"", ""Keyboard"", ""Tablet""]",4057.29,"{""promo"": ""26%""}",24325,1,Europe +2023-01-18,82161,9978,"[""Headphones"", ""Tablet"", ""Charger""]",746.68,{},291724,0,South America +2023-03-08,82162,1788,"[""Tablet"", ""Keyboard"", ""Phone""]",2157.31,"{""promo"": ""14%""}",134731,1,Europe +2023-01-17,82163,6855,"[""Wireless Mouse"", ""Charger""]",1753.26,"{""seasonal"": ""20%""}",115829,0,Africa +2023-07-25,82164,4455,"[""Wireless Mouse"", ""Phone""]",1758.52,"{""loyalty"": ""30%""}",276488,1,Asia +2024-01-01,82165,6418,"[""Monitor""]",2565.52,"{""promo"": ""6%""}",163357,1,Europe +2024-07-12,82166,4799,"[""Tablet""]",3177.15,"{"""": ""5%""}",41666,1,North America +2024-07-02,82167,8647,"[""Keyboard"", ""Laptop"", ""Tablet""]",1691.09,"{"""": ""13%""}",132626,0,South America +2024-11-07,82168,17,"[""Keyboard"", ""Charger"", ""Tablet""]",335.58,{},44797,0,Africa +2024-01-07,82169,2011,"[""Tablet""]",3708.3,{},230598,0,South America +2024-07-16,82170,9610,"[""Headphones"", ""Phone""]",974.16,{},183827,0,North America +2024-05-03,82171,2895,"[""Wireless Mouse""]",4969.09,{},150710,1,Asia +2024-04-16,82172,7683,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1099.77,"{"""": ""7%""}",289420,0,Africa +2023-07-13,82173,2242,"[""Laptop"", ""Keyboard""]",3002.15,"{""loyalty"": ""22%""}",232831,1,Asia +2024-12-12,82174,9553,"[""Tablet""]",4534.37,"{"""": ""12%""}",216002,0,Asia +2024-07-23,82175,3047,"[""Wireless Mouse"", ""Laptop""]",1046.64,"{""promo"": ""27%""}",177709,0,North America +2023-11-18,82176,6873,"[""Phone""]",1299.07,"{""promo"": ""20%""}",258401,0,North America +2023-02-06,82177,8818,"[""Laptop"", ""Wireless Mouse""]",4557.17,{},23729,0,Europe +2023-11-21,82178,798,"[""Charger""]",4573.55,"{"""": ""16%""}",283102,1,North America +2023-06-06,82179,1745,"[""Charger"", ""Laptop""]",3415.82,"{""seasonal"": ""8%""}",59012,0,Asia +2024-04-07,82180,5817,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2671.34,{},174223,1,Asia +2023-12-08,82181,8672,"[""Tablet"", ""Wireless Mouse""]",4674.75,{},254212,0,Asia +2024-07-26,82182,8659,"[""Headphones"", ""Monitor"", ""Keyboard""]",2664.71,"{"""": ""14%""}",132759,1,Asia +2023-10-29,82183,432,"[""Laptop"", ""Headphones"", ""Charger""]",1043.7,{},193685,1,North America +2024-04-16,82184,5394,"[""Charger"", ""Laptop"", ""Tablet""]",376.64,{},218465,0,Europe +2023-04-18,82185,8702,"[""Phone"", ""Charger""]",3172.63,"{""loyalty"": ""30%""}",141061,0,South America +2024-05-31,82186,3296,"[""Tablet"", ""Headphones"", ""Monitor""]",266.37,"{""promo"": ""24%""}",202096,1,North America +2024-05-09,82187,5159,"[""Monitor"", ""Tablet"", ""Charger""]",3542.76,{},176598,1,North America +2024-01-03,82188,2767,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",327.83,{},26401,1,Europe +2023-10-08,82189,5635,"[""Charger"", ""Tablet"", ""Keyboard""]",4652.17,"{""loyalty"": ""23%""}",224378,1,Africa +2023-05-21,82190,1468,"[""Laptop"", ""Headphones""]",1686.34,"{"""": ""5%""}",135982,1,Africa +2023-10-29,82191,934,"[""Keyboard"", ""Wireless Mouse""]",1294.89,{},116874,0,North America +2023-05-02,82192,4664,"[""Phone"", ""Headphones""]",262.84,"{"""": ""21%""}",59431,0,North America +2023-11-29,82193,1506,"[""Monitor"", ""Charger"", ""Laptop""]",1350.11,{},196513,0,Europe +2024-04-21,82194,6122,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2215.03,{},252416,0,Asia +2023-03-22,82195,5352,"[""Phone"", ""Laptop""]",3366.72,"{""seasonal"": ""16%""}",90519,0,Asia +2024-12-22,82196,8822,"[""Tablet"", ""Laptop"", ""Keyboard""]",4347.15,"{"""": ""17%""}",162788,1,Asia +2023-02-14,82197,7548,"[""Phone"", ""Keyboard"", ""Headphones""]",3265.93,"{"""": ""11%""}",227282,0,North America +2024-02-29,82198,1895,"[""Keyboard"", ""Laptop""]",3503.59,"{""seasonal"": ""16%""}",127832,1,North America +2024-11-25,82199,1622,"[""Phone""]",933.2,"{"""": ""13%""}",71291,0,Asia +2023-04-20,82200,2228,"[""Laptop"", ""Tablet"", ""Headphones""]",4060.17,{},219588,0,Asia +2024-08-24,82201,4873,"[""Tablet"", ""Headphones"", ""Keyboard""]",3384.73,{},126823,0,South America +2024-07-14,82202,9482,"[""Keyboard""]",385.97,{},170009,1,South America +2024-05-21,82203,9859,"[""Phone"", ""Tablet""]",3930.51,{},68203,1,North America +2023-01-16,82204,9915,"[""Wireless Mouse""]",860.48,"{""promo"": ""15%""}",117368,1,Asia +2023-05-16,82205,8253,"[""Wireless Mouse"", ""Keyboard""]",4273.36,{},236417,0,Africa +2024-08-22,82206,979,"[""Charger""]",4070.25,"{""seasonal"": ""9%""}",175962,0,North America +2024-04-05,82207,2842,"[""Phone"", ""Monitor"", ""Keyboard""]",713.72,{},132261,0,South America +2024-11-21,82208,6680,"[""Monitor""]",4052.15,"{""loyalty"": ""27%""}",102073,1,Asia +2023-04-20,82209,3817,"[""Laptop"", ""Phone"", ""Charger""]",1557.88,{},103964,0,Asia +2024-07-06,82210,6379,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3086.35,"{"""": ""14%""}",165156,0,Europe +2024-12-01,82211,6481,"[""Phone"", ""Laptop""]",3335.86,{},208142,0,North America +2023-03-26,82212,5384,"[""Phone""]",1277.24,"{"""": ""8%""}",109495,0,Africa +2024-03-13,82213,4021,"[""Tablet"", ""Keyboard"", ""Monitor""]",633.57,"{""loyalty"": ""7%""}",101944,1,North America +2024-09-21,82214,1944,"[""Charger"", ""Keyboard"", ""Headphones""]",914.35,{},18097,1,Africa +2024-10-25,82215,9388,"[""Headphones"", ""Keyboard"", ""Monitor""]",4531.36,{},187177,1,South America +2024-11-03,82216,9113,"[""Laptop"", ""Keyboard"", ""Headphones""]",4042.21,{},234228,1,Africa +2023-01-23,82217,9461,"[""Laptop"", ""Headphones""]",4721.32,"{""loyalty"": ""27%""}",35951,0,South America +2023-03-04,82218,4987,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3772.74,"{""promo"": ""14%""}",130929,0,Asia +2023-03-19,82219,757,"[""Keyboard""]",2485.08,{},71415,1,Africa +2024-12-29,82220,7698,"[""Phone"", ""Headphones"", ""Tablet""]",4200.71,{},250717,1,Africa +2024-11-26,82221,6133,"[""Keyboard"", ""Wireless Mouse""]",1407.14,"{""promo"": ""8%""}",243941,1,South America +2023-04-21,82222,5463,"[""Headphones"", ""Tablet"", ""Phone""]",3026.01,"{""promo"": ""23%""}",294045,1,South America +2024-07-18,82223,556,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2491.49,"{""promo"": ""23%""}",226824,1,North America +2023-01-23,82224,2483,"[""Keyboard"", ""Tablet"", ""Charger""]",4668.92,{},152675,0,Africa +2023-04-25,82225,9981,"[""Wireless Mouse""]",1615.36,{},222561,1,Europe +2023-12-10,82226,9302,"[""Monitor"", ""Phone"", ""Tablet""]",4631.75,{},251950,1,Africa +2024-07-09,82227,5922,"[""Headphones"", ""Monitor"", ""Laptop""]",1498.03,"{""loyalty"": ""28%""}",268510,0,Europe +2023-06-21,82228,463,"[""Charger"", ""Tablet""]",4254.33,{},174871,1,North America +2024-03-21,82229,6001,"[""Tablet"", ""Keyboard""]",3749.59,"{""promo"": ""18%""}",97797,1,South America +2024-08-19,82230,7741,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2408.79,{},290502,1,South America +2023-08-24,82231,6982,"[""Headphones""]",3989.83,{},174758,1,Asia +2024-03-18,82232,5431,"[""Monitor"", ""Laptop"", ""Charger""]",3495.65,{},169797,1,North America +2024-09-18,82233,2993,"[""Headphones""]",1951.35,"{""loyalty"": ""14%""}",73251,1,South America +2024-07-17,82234,1146,"[""Phone""]",85.13,"{""promo"": ""8%""}",138043,0,Europe +2024-04-25,82235,1772,"[""Headphones""]",4037.51,{},63117,1,Africa +2023-07-03,82236,8694,"[""Monitor"", ""Laptop""]",3465.06,{},196743,0,Europe +2024-06-30,82237,646,"[""Headphones""]",1372.56,"{""loyalty"": ""7%""}",72393,1,Europe +2023-09-12,82238,4240,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4412.73,{},29056,0,Europe +2023-10-18,82239,2169,"[""Laptop"", ""Phone"", ""Keyboard""]",2516.06,"{""loyalty"": ""25%""}",92373,1,North America +2023-09-07,82240,3561,"[""Phone"", ""Monitor""]",3424.71,"{""loyalty"": ""12%""}",180890,1,North America +2024-05-06,82241,1347,"[""Phone"", ""Keyboard""]",1833.83,"{""promo"": ""20%""}",150224,0,Africa +2023-04-22,82242,6165,"[""Wireless Mouse""]",4344.26,{},122701,0,Africa +2024-12-25,82243,412,"[""Phone"", ""Laptop""]",798.11,"{""loyalty"": ""26%""}",118223,1,Asia +2023-05-27,82244,3799,"[""Monitor"", ""Headphones"", ""Charger""]",810.94,"{""seasonal"": ""20%""}",188921,0,North America +2023-01-18,82245,8256,"[""Keyboard""]",2616.42,"{""loyalty"": ""13%""}",52489,0,North America +2024-03-12,82246,9886,"[""Tablet"", ""Laptop""]",168.81,{},141294,0,South America +2023-09-16,82247,1587,"[""Wireless Mouse""]",441.21,"{""loyalty"": ""25%""}",215500,0,Africa +2024-03-07,82248,3882,"[""Phone"", ""Headphones""]",1188.32,{},218527,0,Africa +2024-07-10,82249,9990,"[""Phone""]",3708.84,"{"""": ""8%""}",23284,0,North America +2024-09-30,82250,9666,"[""Phone"", ""Keyboard"", ""Tablet""]",555.6,"{""loyalty"": ""13%""}",172920,0,Asia +2024-07-07,82251,7941,"[""Monitor"", ""Charger""]",4093.07,{},201807,0,North America +2023-10-22,82252,601,"[""Phone"", ""Keyboard"", ""Monitor""]",1615.9,{},279589,1,Africa +2024-11-15,82253,1342,"[""Headphones""]",2900.57,{},124477,1,Asia +2023-11-01,82254,8048,"[""Headphones""]",2102.16,{},222783,1,North America +2023-02-17,82255,8212,"[""Charger"", ""Headphones""]",1364.17,{},43384,0,Africa +2024-12-06,82256,8116,"[""Keyboard"", ""Headphones""]",2062.09,{},262332,1,Africa +2024-10-02,82257,7454,"[""Charger"", ""Phone"", ""Headphones""]",1374.52,{},93526,0,Europe +2024-08-13,82258,293,"[""Laptop"", ""Charger""]",2133.49,"{"""": ""26%""}",163498,1,North America +2023-01-31,82259,9615,"[""Wireless Mouse""]",2626.39,"{"""": ""17%""}",240682,1,Asia +2024-11-16,82260,9423,"[""Laptop""]",698.51,"{""promo"": ""22%""}",90695,1,Africa +2023-09-22,82261,8144,"[""Monitor""]",4708.11,"{"""": ""16%""}",195344,1,South America +2023-01-30,82262,3428,"[""Phone"", ""Keyboard"", ""Headphones""]",4163.21,{},246230,0,Asia +2023-06-20,82263,1923,"[""Charger"", ""Laptop"", ""Phone""]",1764.43,"{"""": ""15%""}",232556,1,Asia +2024-05-23,82264,4154,"[""Laptop""]",4852.66,"{"""": ""18%""}",286494,0,South America +2023-12-07,82265,6682,"[""Phone"", ""Headphones""]",2188.03,{},163531,1,Africa +2024-08-21,82266,3750,"[""Phone""]",532.02,{},34244,0,North America +2024-07-09,82267,8254,"[""Monitor"", ""Laptop""]",2354.37,"{"""": ""23%""}",291610,0,Asia +2024-05-20,82268,2189,"[""Wireless Mouse""]",2987.95,{},227688,1,North America +2024-01-09,82269,5049,"[""Charger"", ""Wireless Mouse"", ""Phone""]",687.64,{},10174,0,South America +2023-06-17,82270,7054,"[""Charger""]",4650.01,{},281900,1,North America +2023-07-24,82271,101,"[""Wireless Mouse""]",1975.21,{},249366,1,North America +2023-08-07,82272,8422,"[""Monitor""]",717.31,"{""seasonal"": ""30%""}",273906,1,North America +2024-01-04,82273,4827,"[""Tablet"", ""Headphones""]",366.12,{},279932,0,Africa +2023-02-18,82274,5236,"[""Keyboard"", ""Phone""]",1771.35,{},174685,1,Africa +2024-07-25,82275,2470,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2963.94,{},132659,0,South America +2024-10-07,82276,9729,"[""Keyboard"", ""Headphones""]",2217.49,"{"""": ""12%""}",219117,0,Africa +2023-05-28,82277,975,"[""Phone"", ""Tablet"", ""Headphones""]",2370.98,"{"""": ""25%""}",239842,0,North America +2023-10-18,82278,1979,"[""Headphones""]",2158.23,{},181745,1,Europe +2024-11-08,82279,1244,"[""Wireless Mouse"", ""Charger""]",865.18,{},89966,1,South America +2024-08-14,82280,2850,"[""Charger""]",4590.14,"{""loyalty"": ""27%""}",45537,1,Europe +2023-09-06,82281,1556,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4210.35,{},32248,0,Asia +2024-01-07,82282,9316,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4386.79,{},273248,1,Africa +2024-11-02,82283,9304,"[""Laptop""]",4608.78,{},153672,0,Asia +2023-04-24,82284,2195,"[""Monitor""]",4664.1,{},217968,0,Europe +2023-07-21,82285,8200,"[""Phone"", ""Laptop""]",2872.41,{},107787,0,Africa +2024-03-14,82286,4025,"[""Wireless Mouse"", ""Monitor""]",547.16,"{""seasonal"": ""29%""}",201716,0,South America +2023-05-07,82287,5272,"[""Keyboard"", ""Headphones"", ""Phone""]",1111.46,{},241587,0,North America +2024-06-08,82288,3541,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4631.53,{},225920,0,Europe +2023-02-07,82289,2092,"[""Wireless Mouse""]",404.33,"{"""": ""5%""}",239390,0,Europe +2023-08-27,82290,7900,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3337.09,{},228885,0,Asia +2023-03-15,82291,2853,"[""Laptop""]",4421.01,{},232469,0,Asia +2024-04-08,82292,3486,"[""Charger"", ""Headphones"", ""Laptop""]",521.43,"{"""": ""25%""}",204235,1,North America +2024-05-20,82293,956,"[""Monitor""]",4458.61,"{"""": ""30%""}",297497,0,Africa +2023-09-27,82294,3426,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",135.42,"{""loyalty"": ""13%""}",31950,1,Asia +2024-11-14,82295,8531,"[""Tablet""]",2646.67,"{""promo"": ""29%""}",167261,1,Africa +2024-08-31,82296,7325,"[""Keyboard""]",918.76,"{""promo"": ""28%""}",39910,1,Asia +2024-01-18,82297,2984,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4514.71,{},16309,0,Africa +2024-06-08,82298,6857,"[""Keyboard"", ""Phone"", ""Headphones""]",101.64,"{""seasonal"": ""26%""}",37750,1,Europe +2024-01-04,82299,3491,"[""Keyboard"", ""Phone""]",1484.69,{},178341,0,Europe +2024-05-04,82300,7018,"[""Tablet"", ""Charger"", ""Phone""]",4757.16,"{"""": ""29%""}",167336,0,Africa +2023-11-04,82301,1735,"[""Headphones""]",1988.15,{},5106,0,Europe +2024-12-18,82302,4943,"[""Monitor"", ""Charger"", ""Laptop""]",1451.5,{},73895,1,North America +2023-10-29,82303,7520,"[""Laptop"", ""Charger"", ""Tablet""]",4786.38,{},216715,1,South America +2023-11-04,82304,5676,"[""Phone"", ""Laptop"", ""Tablet""]",3651.02,{},191582,0,Africa +2023-07-17,82305,425,"[""Headphones"", ""Laptop"", ""Tablet""]",3374.26,{},231098,0,Europe +2023-04-04,82306,4698,"[""Charger"", ""Laptop""]",926.26,"{""loyalty"": ""11%""}",192355,0,Asia +2023-06-16,82307,4240,"[""Tablet""]",4531.2,"{""promo"": ""15%""}",144275,0,Asia +2023-07-29,82308,3302,"[""Phone"", ""Charger""]",1902.88,{},207744,1,Europe +2023-10-01,82309,9931,"[""Keyboard"", ""Tablet"", ""Charger""]",2416.92,{},199417,0,North America +2023-01-17,82310,1095,"[""Phone"", ""Charger"", ""Keyboard""]",1202.45,{},143794,1,Asia +2024-11-06,82311,9387,"[""Phone""]",4247.08,"{""seasonal"": ""20%""}",144831,1,South America +2023-06-20,82312,4861,"[""Wireless Mouse""]",3331.77,"{"""": ""11%""}",138394,0,Africa +2023-12-23,82313,6768,"[""Phone"", ""Charger"", ""Headphones""]",3205.52,{},258628,0,Asia +2024-11-14,82314,3382,"[""Charger""]",3398.6,{},285138,0,Asia +2023-04-11,82315,7098,"[""Headphones""]",4033.78,"{""promo"": ""19%""}",23939,0,South America +2023-11-14,82316,4973,"[""Laptop"", ""Phone""]",2959.73,{},130269,0,Asia +2023-04-13,82317,1244,"[""Phone""]",3853.18,{},247995,1,South America +2023-02-14,82318,6131,"[""Wireless Mouse"", ""Charger""]",4482.23,{},241098,0,Europe +2023-06-04,82319,2797,"[""Laptop"", ""Charger"", ""Tablet""]",1270.62,"{"""": ""22%""}",70017,0,Europe +2023-09-17,82320,7703,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2429.7,"{""loyalty"": ""30%""}",102501,1,Europe +2024-05-14,82321,8973,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3698.08,{},204056,0,Europe +2024-10-18,82322,3299,"[""Keyboard""]",251.92,"{""seasonal"": ""15%""}",88944,1,South America +2024-12-01,82323,9309,"[""Monitor"", ""Charger""]",1858.66,{},275483,0,Asia +2023-02-08,82324,6950,"[""Monitor""]",474.21,"{""promo"": ""30%""}",162688,0,Africa +2024-12-01,82325,696,"[""Monitor"", ""Phone"", ""Headphones""]",2238.62,{},75281,1,South America +2023-08-26,82326,824,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3436.03,{},120936,0,South America +2023-12-21,82327,6205,"[""Monitor""]",4325.71,"{"""": ""7%""}",157167,1,Asia +2024-05-19,82328,5771,"[""Laptop"", ""Keyboard"", ""Monitor""]",4960.82,"{""loyalty"": ""27%""}",86782,0,Asia +2024-10-12,82329,1611,"[""Monitor""]",2620.86,"{""loyalty"": ""7%""}",282232,1,Africa +2023-08-13,82330,1201,"[""Charger"", ""Monitor"", ""Keyboard""]",463.34,"{""seasonal"": ""20%""}",69144,0,South America +2024-05-03,82331,4868,"[""Charger"", ""Laptop"", ""Tablet""]",3571.66,{},285676,0,South America +2024-07-04,82332,8829,"[""Phone"", ""Laptop""]",581.81,"{"""": ""17%""}",73377,1,South America +2023-01-01,82333,2018,"[""Laptop"", ""Phone""]",3729.8,{},1091,0,Europe +2024-08-07,82334,5481,"[""Phone"", ""Charger"", ""Laptop""]",1790.87,{},189753,0,Asia +2024-03-23,82335,8852,"[""Headphones""]",3244.53,"{""loyalty"": ""9%""}",1875,0,Africa +2023-06-17,82336,16,"[""Keyboard"", ""Tablet"", ""Headphones""]",365.46,"{""loyalty"": ""11%""}",294488,0,Asia +2023-12-20,82337,8532,"[""Wireless Mouse""]",1830.89,"{"""": ""18%""}",135921,1,Europe +2024-01-06,82338,5766,"[""Keyboard"", ""Monitor""]",4979.25,"{""loyalty"": ""13%""}",244749,1,North America +2024-07-20,82339,695,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",1464.8,{},26734,1,Europe +2024-06-23,82340,4977,"[""Keyboard""]",1304.92,"{""loyalty"": ""30%""}",11916,0,Europe +2023-07-28,82341,9714,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",575.41,{},114757,0,North America +2024-04-20,82342,7818,"[""Keyboard"", ""Monitor""]",3103.03,{},212710,1,Europe +2023-05-31,82343,4222,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1972.35,{},245929,1,Asia +2023-01-18,82344,1263,"[""Tablet"", ""Phone""]",4655.94,{},76324,0,Africa +2023-12-10,82345,2782,"[""Wireless Mouse"", ""Monitor""]",3925.91,"{""promo"": ""24%""}",150038,1,Africa +2024-10-25,82346,9159,"[""Laptop"", ""Phone"", ""Tablet""]",4538.47,"{""promo"": ""21%""}",188487,1,Europe +2024-05-13,82347,7019,"[""Wireless Mouse""]",2952.93,"{""seasonal"": ""7%""}",142276,0,North America +2024-03-28,82348,5412,"[""Headphones"", ""Charger"", ""Keyboard""]",583.5,{},111283,0,Africa +2024-11-16,82349,5850,"[""Phone""]",410.21,{},152462,0,Europe +2024-11-13,82350,5905,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2412.5,{},8123,1,North America +2024-11-04,82351,2933,"[""Phone""]",2277.91,{},119836,0,Africa +2023-03-30,82352,6943,"[""Keyboard""]",2137.66,"{""seasonal"": ""29%""}",62931,0,South America +2023-01-02,82353,1876,"[""Wireless Mouse""]",3158.12,"{"""": ""12%""}",157481,0,Asia +2024-12-21,82354,5069,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1708.25,"{""promo"": ""30%""}",84045,1,South America +2023-03-19,82355,7298,"[""Phone""]",2753.72,"{""seasonal"": ""24%""}",297343,0,Asia +2024-03-29,82356,838,"[""Wireless Mouse""]",4512.03,{},154955,1,Asia +2024-11-20,82357,8900,"[""Laptop"", ""Keyboard"", ""Headphones""]",4220.51,"{""seasonal"": ""12%""}",298883,0,Africa +2023-10-10,82358,1947,"[""Monitor""]",3237.57,{},197271,1,Europe +2024-07-10,82359,2822,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1511.52,"{""promo"": ""12%""}",244645,1,Asia +2023-07-28,82360,5961,"[""Headphones"", ""Keyboard""]",648.66,"{""seasonal"": ""21%""}",233986,1,North America +2023-01-06,82361,5033,"[""Charger"", ""Phone"", ""Monitor""]",835.51,"{""loyalty"": ""29%""}",29083,1,Europe +2024-10-02,82362,6472,"[""Charger""]",4666.22,{},288776,0,North America +2023-10-04,82363,8642,"[""Monitor"", ""Laptop""]",228.81,{},241934,1,Africa +2023-10-19,82364,9320,"[""Laptop"", ""Monitor""]",626.24,"{""promo"": ""11%""}",14880,1,South America +2023-07-24,82365,9806,"[""Phone""]",4252.71,{},77815,1,Europe +2023-04-21,82366,4966,"[""Phone"", ""Tablet"", ""Headphones""]",2273.23,"{""promo"": ""22%""}",91685,0,South America +2024-06-06,82367,3091,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",491.65,{},86008,0,North America +2023-07-30,82368,4027,"[""Headphones""]",167.77,"{""seasonal"": ""24%""}",32516,1,Africa +2024-05-27,82369,2407,"[""Keyboard""]",3562.86,"{""seasonal"": ""5%""}",157126,0,Europe +2024-05-16,82370,9971,"[""Phone""]",1626.8,{},270594,0,Asia +2023-01-09,82371,6162,"[""Keyboard"", ""Wireless Mouse""]",2675.97,{},54613,0,Europe +2023-07-28,82372,3688,"[""Laptop""]",2475.19,"{""loyalty"": ""24%""}",9488,0,Europe +2023-05-15,82373,809,"[""Monitor"", ""Tablet"", ""Phone""]",2702.81,{},7356,1,Europe +2023-05-20,82374,6757,"[""Headphones"", ""Charger""]",4243.88,{},19779,0,South America +2024-06-23,82375,9867,"[""Headphones"", ""Monitor""]",4249.16,{},248693,0,Asia +2024-03-18,82376,6925,"[""Keyboard"", ""Charger""]",1754.7,"{""loyalty"": ""20%""}",290340,0,South America +2024-01-27,82377,7889,"[""Charger"", ""Headphones"", ""Laptop""]",809.05,{},223876,0,Europe +2024-02-28,82378,3154,"[""Laptop"", ""Headphones"", ""Phone""]",3797.87,{},73635,1,Europe +2023-08-30,82379,8437,"[""Monitor"", ""Tablet"", ""Keyboard""]",2140.96,{},178558,0,Africa +2023-07-29,82380,7343,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3137.52,{},230609,1,Asia +2024-09-25,82381,7602,"[""Laptop"", ""Tablet""]",2570.73,"{""loyalty"": ""16%""}",201518,0,Europe +2023-07-14,82382,9878,"[""Phone"", ""Headphones"", ""Keyboard""]",61.13,{},7679,1,South America +2024-09-25,82383,233,"[""Keyboard"", ""Laptop"", ""Charger""]",1110.61,"{"""": ""11%""}",266662,0,North America +2023-10-06,82384,1352,"[""Keyboard"", ""Phone"", ""Tablet""]",922.54,{},82240,0,Africa +2023-08-24,82385,8619,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3882.85,{},99819,1,South America +2023-08-17,82386,8337,"[""Monitor"", ""Keyboard"", ""Headphones""]",4174.01,{},149608,0,South America +2024-02-24,82387,8148,"[""Charger""]",360.24,{},92797,1,Asia +2024-04-12,82388,3959,"[""Keyboard""]",2074.13,{},251054,0,Africa +2023-10-27,82389,7040,"[""Laptop""]",2872.98,"{""promo"": ""16%""}",122041,1,Europe +2023-05-27,82390,53,"[""Charger"", ""Monitor""]",869.56,"{"""": ""23%""}",150080,0,Africa +2023-02-08,82391,844,"[""Tablet"", ""Charger"", ""Laptop""]",4930.51,"{""loyalty"": ""20%""}",30322,0,North America +2023-04-26,82392,8485,"[""Keyboard"", ""Monitor"", ""Charger""]",2292.37,{},32151,1,Asia +2023-06-26,82393,6595,"[""Tablet""]",1281.37,"{""promo"": ""27%""}",232217,1,Africa +2024-12-29,82394,6824,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",855.74,{},230944,0,Europe +2024-09-29,82395,746,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2114.96,{},71606,0,North America +2023-03-14,82396,8633,"[""Wireless Mouse"", ""Phone""]",4531.57,"{""promo"": ""24%""}",262020,1,Africa +2023-11-11,82397,9851,"[""Charger"", ""Keyboard""]",1150.92,"{""seasonal"": ""6%""}",16996,0,North America +2024-12-14,82398,192,"[""Monitor""]",1057.31,{},197441,0,North America +2023-03-05,82399,2874,"[""Charger"", ""Laptop""]",2761.77,{},194109,0,Europe +2024-06-21,82400,833,"[""Wireless Mouse"", ""Phone""]",2625.94,"{""seasonal"": ""24%""}",27325,0,Europe +2023-08-28,82401,6443,"[""Charger"", ""Keyboard""]",815.78,"{""loyalty"": ""14%""}",169341,1,Europe +2024-05-02,82402,1945,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1650.48,"{""loyalty"": ""23%""}",232202,0,North America +2024-11-12,82403,883,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1321.6,{},279345,0,Europe +2024-11-21,82404,4134,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2203.84,"{""promo"": ""20%""}",83102,0,South America +2024-05-26,82405,3402,"[""Wireless Mouse""]",3373.97,{},125247,0,Africa +2023-08-05,82406,136,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1913.45,"{""loyalty"": ""18%""}",134572,1,Asia +2024-04-02,82407,1434,"[""Keyboard"", ""Charger"", ""Headphones""]",2535.37,"{""promo"": ""26%""}",131688,0,Europe +2024-06-28,82408,6243,"[""Tablet"", ""Headphones"", ""Phone""]",4075.33,"{""loyalty"": ""28%""}",148610,1,Africa +2024-11-08,82409,7497,"[""Wireless Mouse""]",3016.54,"{"""": ""17%""}",215633,1,South America +2023-01-06,82410,7555,"[""Charger""]",446.8,{},124992,0,South America +2023-09-01,82411,6925,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3500.56,"{""seasonal"": ""9%""}",103768,0,Europe +2023-06-09,82412,7600,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3594.96,{},16799,0,Europe +2024-07-01,82413,2403,"[""Keyboard"", ""Headphones"", ""Tablet""]",2913.21,{},34438,1,South America +2024-06-27,82414,1445,"[""Headphones""]",731.08,{},88635,0,Europe +2024-07-12,82415,2048,"[""Laptop"", ""Charger""]",764.02,{},127865,0,Africa +2023-07-25,82416,6500,"[""Laptop"", ""Keyboard"", ""Tablet""]",2806.28,{},216907,0,Africa +2024-04-16,82417,6212,"[""Wireless Mouse""]",2940.78,"{""loyalty"": ""21%""}",164583,1,Europe +2023-04-24,82418,2084,"[""Keyboard"", ""Monitor""]",3082.15,"{""seasonal"": ""28%""}",280576,0,Asia +2024-04-17,82419,268,"[""Laptop"", ""Phone"", ""Monitor""]",4349.11,{},147573,0,South America +2024-09-11,82420,2914,"[""Laptop"", ""Charger""]",3811.06,{},29836,0,Europe +2023-12-25,82421,3940,"[""Headphones""]",3907.47,{},42462,0,Africa +2024-04-17,82422,6696,"[""Monitor"", ""Phone""]",3674.43,{},272938,0,Asia +2023-04-01,82423,1996,"[""Phone"", ""Charger"", ""Wireless Mouse""]",97.48,{},281021,0,Asia +2023-06-08,82424,8357,"[""Keyboard"", ""Charger"", ""Headphones""]",4911.96,"{"""": ""27%""}",126137,1,North America +2023-11-26,82425,2459,"[""Monitor""]",4535.6,{},56154,1,South America +2023-01-21,82426,933,"[""Phone"", ""Keyboard""]",599.12,{},31579,0,South America +2024-12-19,82427,7118,"[""Phone""]",404.69,{},150090,1,Africa +2023-01-05,82428,6149,"[""Phone"", ""Laptop"", ""Monitor""]",1699.44,{},120039,1,Africa +2023-11-19,82429,9882,"[""Keyboard"", ""Wireless Mouse""]",643.51,"{"""": ""23%""}",48964,0,Africa +2023-09-03,82430,2764,"[""Phone"", ""Monitor"", ""Tablet""]",2227.77,{},196429,0,Africa +2023-06-04,82431,2320,"[""Charger""]",1399.41,"{"""": ""5%""}",126691,0,North America +2023-05-24,82432,5578,"[""Tablet"", ""Wireless Mouse""]",1862.51,"{""promo"": ""20%""}",28320,1,North America +2023-08-20,82433,6579,"[""Charger"", ""Headphones""]",3604.52,"{"""": ""11%""}",170462,1,Africa +2024-04-26,82434,1018,"[""Phone"", ""Keyboard"", ""Tablet""]",3562.87,"{""promo"": ""18%""}",44135,0,Asia +2024-01-29,82435,3527,"[""Headphones""]",3037.57,"{""promo"": ""23%""}",246527,0,Europe +2023-09-13,82436,1535,"[""Tablet"", ""Charger"", ""Laptop""]",3553.05,{},58377,0,Africa +2023-05-27,82437,3058,"[""Tablet"", ""Headphones""]",4526.37,"{""seasonal"": ""17%""}",144888,1,Asia +2024-09-11,82438,446,"[""Laptop"", ""Charger""]",4166.13,{},75960,0,Africa +2024-05-28,82439,765,"[""Laptop""]",4518.8,{},231329,1,Africa +2023-10-26,82440,8175,"[""Monitor""]",2664.44,{},7723,0,North America +2024-05-29,82441,3156,"[""Keyboard"", ""Tablet""]",1752.36,{},127750,1,Europe +2024-02-09,82442,4188,"[""Headphones"", ""Charger""]",1476.4,"{""loyalty"": ""15%""}",185042,0,Europe +2023-01-21,82443,9488,"[""Tablet""]",2078.4,{},5373,0,North America +2024-02-04,82444,6046,"[""Charger"", ""Monitor"", ""Keyboard""]",2334.67,{},81106,0,South America +2023-08-23,82445,7569,"[""Charger"", ""Tablet""]",3518.92,{},166350,1,North America +2023-05-02,82446,6881,"[""Headphones"", ""Keyboard"", ""Tablet""]",3106.63,"{""seasonal"": ""5%""}",173955,1,North America +2024-07-01,82447,6978,"[""Laptop"", ""Tablet""]",2969.53,"{""loyalty"": ""15%""}",41876,1,South America +2023-10-07,82448,7639,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3788.14,{},79567,1,Africa +2024-10-31,82449,1844,"[""Tablet"", ""Laptop""]",4995.47,{},129043,0,Europe +2023-06-15,82450,542,"[""Keyboard"", ""Phone"", ""Monitor""]",4823.95,{},189378,0,Europe +2023-12-15,82451,8969,"[""Phone""]",1918.05,"{""promo"": ""21%""}",211877,1,Asia +2023-06-12,82452,9247,"[""Monitor""]",693.82,"{""loyalty"": ""16%""}",260067,0,Europe +2023-04-21,82453,8721,"[""Monitor"", ""Charger"", ""Tablet""]",1907.67,"{"""": ""20%""}",241097,1,North America +2024-08-04,82454,9442,"[""Phone""]",2377.08,{},111426,0,Asia +2024-04-12,82455,9188,"[""Keyboard"", ""Monitor"", ""Headphones""]",4795.85,{},106401,0,Asia +2023-06-08,82456,8755,"[""Tablet"", ""Headphones"", ""Phone""]",1550.03,"{""promo"": ""19%""}",110125,1,Asia +2023-03-02,82457,628,"[""Tablet""]",4933.87,"{""promo"": ""6%""}",197599,1,Africa +2024-12-08,82458,424,"[""Headphones"", ""Tablet""]",2162.14,"{""loyalty"": ""13%""}",27553,0,North America +2023-09-25,82459,4786,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",844.88,{},279981,1,North America +2023-01-26,82460,8153,"[""Wireless Mouse"", ""Tablet""]",2688.77,{},167647,1,North America +2024-11-07,82461,2640,"[""Monitor"", ""Phone"", ""Keyboard""]",3222.43,"{""seasonal"": ""16%""}",263929,0,South America +2023-05-11,82462,2262,"[""Headphones"", ""Monitor"", ""Phone""]",3432.65,"{""seasonal"": ""9%""}",241017,0,Europe +2024-01-18,82463,839,"[""Headphones""]",785.97,"{"""": ""24%""}",275852,0,Europe +2024-08-17,82464,5348,"[""Wireless Mouse"", ""Keyboard""]",3661.83,{},20968,0,Europe +2024-08-25,82465,6914,"[""Keyboard"", ""Headphones"", ""Monitor""]",849.02,{},11520,1,Asia +2023-05-04,82466,3992,"[""Phone"", ""Monitor""]",1955.95,{},143117,1,South America +2024-04-14,82467,163,"[""Phone"", ""Laptop"", ""Monitor""]",1065.54,"{""seasonal"": ""22%""}",289991,0,South America +2024-03-28,82468,4673,"[""Headphones"", ""Keyboard"", ""Laptop""]",2500.91,{},196755,0,Europe +2023-03-16,82469,5242,"[""Phone"", ""Laptop""]",4607.63,{},162575,1,South America +2023-09-10,82470,6629,"[""Tablet"", ""Charger""]",4411.69,{},280468,0,Asia +2023-08-03,82471,2111,"[""Tablet"", ""Headphones""]",3861.95,{},138911,0,Africa +2024-12-30,82472,3706,"[""Wireless Mouse"", ""Phone""]",1704.7,{},52344,0,Asia +2024-11-19,82473,7082,"[""Monitor"", ""Tablet""]",2908.31,"{""loyalty"": ""7%""}",242166,1,Asia +2023-07-03,82474,1659,"[""Wireless Mouse""]",2476.34,{},210153,0,Asia +2024-10-25,82475,3469,"[""Headphones"", ""Laptop"", ""Tablet""]",1038.0,"{""seasonal"": ""21%""}",251447,1,North America +2023-12-03,82476,3970,"[""Keyboard"", ""Tablet""]",3680.44,{},207290,0,Europe +2023-09-09,82477,1920,"[""Monitor"", ""Charger""]",3293.33,{},102255,0,North America +2023-04-26,82478,8612,"[""Headphones"", ""Keyboard"", ""Tablet""]",2477.04,"{""promo"": ""28%""}",124563,1,Europe +2024-07-29,82479,5551,"[""Monitor"", ""Headphones"", ""Laptop""]",1530.63,"{""seasonal"": ""18%""}",255146,1,South America +2024-08-31,82480,4255,"[""Charger"", ""Headphones"", ""Tablet""]",2831.5,{},94380,0,North America +2023-04-14,82481,6502,"[""Keyboard"", ""Laptop""]",74.9,{},124181,1,North America +2023-08-05,82482,4328,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",819.81,{},64376,0,Africa +2024-08-09,82483,9145,"[""Monitor"", ""Headphones""]",4139.69,{},68204,0,Asia +2023-12-18,82484,3534,"[""Monitor"", ""Tablet"", ""Headphones""]",2690.11,{},124617,0,North America +2024-03-06,82485,6192,"[""Phone"", ""Charger"", ""Tablet""]",3112.23,{},103291,1,Asia +2023-02-19,82486,1566,"[""Headphones""]",529.09,"{""seasonal"": ""30%""}",288076,1,South America +2023-05-01,82487,867,"[""Headphones"", ""Keyboard"", ""Charger""]",2324.59,{},70814,0,Asia +2023-02-04,82488,6127,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2105.48,"{""seasonal"": ""18%""}",53542,1,Europe +2024-12-15,82489,921,"[""Headphones"", ""Laptop"", ""Keyboard""]",1638.29,{},174612,0,South America +2024-12-22,82490,1575,"[""Laptop"", ""Tablet""]",4037.73,"{""seasonal"": ""27%""}",48083,0,South America +2023-04-28,82491,3825,"[""Headphones"", ""Laptop"", ""Keyboard""]",198.51,"{""seasonal"": ""9%""}",210507,1,Africa +2023-06-12,82492,5987,"[""Charger""]",1936.42,"{""seasonal"": ""13%""}",33034,1,Europe +2023-08-15,82493,9137,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",991.93,{},86382,1,North America +2023-08-07,82494,9751,"[""Laptop""]",1469.04,{},77594,1,South America +2023-10-26,82495,9555,"[""Laptop""]",538.26,{},191593,0,Africa +2024-08-21,82496,9699,"[""Charger""]",1583.78,{},248479,0,Africa +2024-11-21,82497,569,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",466.64,{},108221,1,Asia +2023-03-11,82498,7937,"[""Laptop"", ""Keyboard""]",1675.65,"{"""": ""24%""}",178404,1,Africa +2023-07-14,82499,2387,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1375.59,"{""loyalty"": ""22%""}",162519,0,Asia +2024-10-31,82500,9560,"[""Keyboard"", ""Charger"", ""Tablet""]",3554.23,"{""promo"": ""5%""}",284945,0,South America +2023-02-23,82501,4503,"[""Tablet"", ""Headphones""]",2605.45,"{""seasonal"": ""13%""}",18948,0,Africa +2023-05-25,82502,1691,"[""Tablet"", ""Phone"", ""Keyboard""]",4183.76,{},259235,0,North America +2024-10-08,82503,8168,"[""Keyboard"", ""Headphones"", ""Charger""]",3160.69,"{""loyalty"": ""25%""}",96258,0,South America +2023-08-19,82504,2587,"[""Monitor"", ""Laptop""]",1167.39,"{""loyalty"": ""10%""}",11108,1,Asia +2023-02-03,82505,2955,"[""Laptop""]",4378.95,"{""seasonal"": ""8%""}",212965,1,South America +2024-11-11,82506,655,"[""Laptop"", ""Tablet"", ""Keyboard""]",4894.43,{},194411,1,South America +2023-05-19,82507,8048,"[""Monitor""]",4510.2,"{""seasonal"": ""19%""}",14699,0,Africa +2023-01-13,82508,2873,"[""Phone"", ""Tablet"", ""Keyboard""]",4241.03,"{""promo"": ""7%""}",71955,1,Africa +2023-10-31,82509,8629,"[""Wireless Mouse"", ""Monitor""]",3198.8,"{""seasonal"": ""13%""}",29323,0,South America +2023-09-26,82510,9844,"[""Laptop""]",1257.42,"{"""": ""24%""}",173700,0,Europe +2024-11-22,82511,8616,"[""Headphones""]",1418.45,"{""promo"": ""6%""}",219874,1,South America +2023-12-25,82512,6349,"[""Laptop"", ""Monitor""]",4046.66,"{"""": ""13%""}",273425,0,Asia +2024-04-08,82513,1445,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3236.7,{},23838,1,South America +2023-05-07,82514,1991,"[""Charger""]",3515.57,"{""seasonal"": ""13%""}",140657,0,North America +2024-11-15,82515,4407,"[""Tablet"", ""Monitor""]",2357.52,{},171966,1,Europe +2023-05-17,82516,8423,"[""Wireless Mouse"", ""Keyboard""]",1153.15,"{""seasonal"": ""15%""}",130986,0,North America +2024-06-29,82517,1606,"[""Charger""]",2780.47,"{""promo"": ""6%""}",163978,0,Africa +2023-11-05,82518,8174,"[""Phone"", ""Tablet"", ""Keyboard""]",4760.72,"{"""": ""17%""}",227540,1,Africa +2024-06-21,82519,5295,"[""Headphones"", ""Laptop"", ""Charger""]",693.19,{},84549,1,Europe +2023-03-28,82520,9525,"[""Keyboard""]",4083.72,"{""promo"": ""8%""}",119787,0,North America +2023-06-18,82521,5804,"[""Monitor"", ""Keyboard"", ""Laptop""]",4968.8,{},150170,1,North America +2023-10-01,82522,8575,"[""Charger""]",4546.07,"{""seasonal"": ""9%""}",278430,1,South America +2023-01-12,82523,4000,"[""Headphones""]",3623.12,{},280680,1,South America +2024-03-05,82524,5936,"[""Charger""]",3810.92,"{""seasonal"": ""19%""}",182869,1,Asia +2023-03-04,82525,9355,"[""Keyboard"", ""Phone"", ""Laptop""]",3699.62,"{""promo"": ""10%""}",143640,0,South America +2023-08-15,82526,6888,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4173.88,"{""loyalty"": ""19%""}",80019,0,Europe +2023-10-27,82527,2715,"[""Wireless Mouse""]",1642.25,"{""loyalty"": ""26%""}",206406,1,South America +2023-03-13,82528,996,"[""Headphones""]",1192.78,"{""seasonal"": ""25%""}",95856,1,South America +2024-08-08,82529,489,"[""Laptop"", ""Charger"", ""Monitor""]",1762.43,"{""seasonal"": ""9%""}",69656,0,South America +2023-10-27,82530,7549,"[""Headphones"", ""Laptop""]",1259.7,"{""seasonal"": ""11%""}",96895,1,Africa +2024-07-05,82531,4001,"[""Tablet""]",3301.4,"{""loyalty"": ""28%""}",89202,1,Asia +2024-10-04,82532,850,"[""Phone"", ""Laptop""]",1573.31,{},50335,0,North America +2024-08-25,82533,8634,"[""Monitor"", ""Tablet"", ""Charger""]",1890.33,{},204496,0,North America +2024-01-16,82534,1586,"[""Charger""]",1832.47,"{""seasonal"": ""22%""}",224113,1,South America +2023-01-16,82535,4151,"[""Charger"", ""Phone"", ""Laptop""]",3862.11,"{""seasonal"": ""5%""}",264769,1,Europe +2024-09-17,82536,8231,"[""Laptop"", ""Keyboard"", ""Phone""]",1775.21,{},122110,0,Asia +2024-07-01,82537,414,"[""Charger"", ""Keyboard"", ""Headphones""]",981.33,{},49986,0,Europe +2023-02-27,82538,4976,"[""Monitor"", ""Tablet"", ""Phone""]",397.43,"{""loyalty"": ""23%""}",196983,1,Africa +2023-02-26,82539,6144,"[""Wireless Mouse""]",3847.89,"{"""": ""26%""}",222995,1,Africa +2024-08-21,82540,1066,"[""Monitor"", ""Keyboard"", ""Laptop""]",2500.35,"{""loyalty"": ""9%""}",170366,1,Europe +2023-04-26,82541,8377,"[""Monitor"", ""Charger""]",1346.59,{},239264,1,Asia +2024-06-30,82542,1000,"[""Keyboard"", ""Laptop""]",495.82,"{"""": ""11%""}",274747,0,South America +2024-02-18,82543,1300,"[""Wireless Mouse"", ""Charger""]",1211.95,{},102045,1,South America +2023-10-24,82544,1545,"[""Keyboard"", ""Headphones"", ""Charger""]",4820.23,{},247233,1,Europe +2023-03-20,82545,758,"[""Phone""]",757.01,{},105810,1,South America +2024-05-28,82546,7761,"[""Monitor""]",3757.06,{},263140,0,Africa +2024-04-29,82547,9276,"[""Keyboard""]",1382.85,"{""promo"": ""28%""}",255394,0,Asia +2024-04-30,82548,699,"[""Laptop"", ""Monitor""]",808.4,"{"""": ""29%""}",137814,0,South America +2024-01-23,82549,4632,"[""Keyboard"", ""Headphones""]",4981.69,{},59248,0,South America +2023-12-06,82550,6753,"[""Keyboard""]",4088.64,"{"""": ""27%""}",274791,0,Europe +2023-07-22,82551,4317,"[""Phone"", ""Laptop"", ""Keyboard""]",1116.91,{},162560,0,Africa +2023-02-09,82552,28,"[""Charger"", ""Wireless Mouse""]",3789.61,"{""promo"": ""23%""}",102302,0,South America +2023-10-02,82553,3988,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2853.31,"{""loyalty"": ""21%""}",200761,1,North America +2024-10-16,82554,9104,"[""Tablet"", ""Phone""]",2051.27,"{""seasonal"": ""13%""}",215986,1,Asia +2024-08-18,82555,4129,"[""Laptop"", ""Keyboard""]",79.69,{},125752,1,Europe +2024-04-04,82556,6165,"[""Tablet""]",4757.97,{},92733,1,Asia +2023-06-20,82557,9307,"[""Monitor""]",2019.78,{},176317,1,Asia +2023-03-23,82558,1704,"[""Laptop""]",1048.34,"{""promo"": ""16%""}",212321,1,Asia +2023-09-23,82559,9923,"[""Keyboard""]",4193.16,"{"""": ""12%""}",13136,0,South America +2024-07-27,82560,9859,"[""Keyboard"", ""Charger""]",3365.99,"{""loyalty"": ""11%""}",81472,1,Africa +2024-06-23,82561,4758,"[""Charger""]",1409.51,"{""seasonal"": ""9%""}",155271,1,South America +2024-02-21,82562,9070,"[""Keyboard"", ""Tablet"", ""Laptop""]",2198.7,{},204237,0,South America +2024-04-23,82563,4922,"[""Wireless Mouse"", ""Charger""]",817.73,"{""loyalty"": ""19%""}",237274,0,Africa +2023-06-28,82564,6117,"[""Keyboard""]",2035.75,{},234810,1,North America +2023-10-30,82565,5232,"[""Headphones""]",2870.52,{},37538,0,South America +2023-04-16,82566,6746,"[""Keyboard"", ""Laptop""]",1004.52,{},119157,0,Europe +2024-02-13,82567,2351,"[""Monitor""]",154.92,{},287505,0,North America +2023-04-18,82568,4697,"[""Phone""]",1307.5,{},96516,0,South America +2023-07-01,82569,2901,"[""Keyboard"", ""Phone""]",362.48,{},40050,1,Africa +2023-04-26,82570,5838,"[""Tablet"", ""Keyboard"", ""Monitor""]",3963.82,{},81952,1,South America +2024-11-23,82571,9390,"[""Headphones""]",367.53,"{""promo"": ""17%""}",36254,0,Europe +2023-08-26,82572,4402,"[""Headphones""]",1514.09,"{""seasonal"": ""9%""}",34770,0,Africa +2024-12-15,82573,8873,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3795.82,"{"""": ""29%""}",139255,1,South America +2023-08-20,82574,530,"[""Keyboard"", ""Monitor""]",2191.69,{},133806,0,Asia +2023-01-03,82575,7057,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",777.83,{},134165,0,South America +2024-07-02,82576,4395,"[""Wireless Mouse"", ""Charger""]",4341.0,{},232495,0,South America +2023-04-10,82577,9346,"[""Wireless Mouse"", ""Charger""]",149.98,{},148448,1,North America +2023-09-07,82578,8460,"[""Phone"", ""Tablet""]",4821.56,{},11397,1,Africa +2024-07-22,82579,782,"[""Phone""]",2765.02,{},158499,1,North America +2024-05-20,82580,2132,"[""Headphones"", ""Phone""]",4180.75,{},23938,1,South America +2024-08-12,82581,6220,"[""Monitor"", ""Headphones""]",3192.16,"{"""": ""17%""}",181376,1,Asia +2024-09-21,82582,186,"[""Headphones"", ""Keyboard""]",4443.59,{},69185,1,South America +2024-01-30,82583,7018,"[""Wireless Mouse"", ""Phone""]",3773.58,"{""seasonal"": ""24%""}",162762,0,Africa +2024-07-11,82584,2529,"[""Headphones""]",1802.87,{},266207,0,South America +2024-09-04,82585,2910,"[""Charger"", ""Keyboard"", ""Headphones""]",3212.02,{},34440,1,North America +2023-07-24,82586,3756,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",4436.46,{},133877,1,Africa +2023-04-11,82587,8493,"[""Wireless Mouse""]",1227.31,"{""promo"": ""18%""}",45169,1,Asia +2024-06-12,82588,9764,"[""Phone""]",674.48,"{""promo"": ""13%""}",209471,0,Europe +2024-10-20,82589,9756,"[""Tablet"", ""Phone""]",4012.07,"{""promo"": ""16%""}",186737,1,Europe +2023-10-21,82590,9284,"[""Phone""]",927.14,{},226096,0,Africa +2024-04-09,82591,268,"[""Headphones"", ""Phone"", ""Keyboard""]",4518.82,"{""loyalty"": ""28%""}",82572,0,Asia +2024-09-10,82592,9837,"[""Headphones""]",749.17,"{""seasonal"": ""8%""}",271289,0,Africa +2024-02-17,82593,3915,"[""Monitor"", ""Charger""]",720.67,"{""loyalty"": ""24%""}",18733,1,South America +2024-06-14,82594,6490,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4905.73,{},284022,1,Asia +2023-05-14,82595,3836,"[""Tablet"", ""Headphones"", ""Laptop""]",4942.63,{},281995,1,North America +2023-01-12,82596,6621,"[""Headphones"", ""Charger""]",1126.99,{},174250,1,South America +2023-09-23,82597,9025,"[""Phone"", ""Wireless Mouse""]",1311.13,"{""promo"": ""18%""}",210635,1,South America +2024-07-06,82598,6005,"[""Wireless Mouse"", ""Tablet""]",4125.61,{},10118,1,Europe +2024-08-19,82599,3439,"[""Keyboard"", ""Monitor""]",3030.05,"{"""": ""7%""}",94731,1,Europe +2024-10-13,82600,3623,"[""Tablet"", ""Headphones""]",2540.71,{},188920,0,South America +2023-01-13,82601,4186,"[""Wireless Mouse""]",970.15,"{""promo"": ""5%""}",257435,1,Europe +2023-01-22,82602,8130,"[""Tablet""]",1183.56,{},263741,1,Asia +2023-12-22,82603,4494,"[""Wireless Mouse""]",796.08,"{""promo"": ""8%""}",272483,1,Asia +2024-01-22,82604,587,"[""Wireless Mouse"", ""Monitor""]",1896.58,{},126794,0,Africa +2023-01-09,82605,985,"[""Tablet"", ""Charger""]",3329.22,"{""loyalty"": ""18%""}",158702,1,North America +2024-02-12,82606,8208,"[""Phone"", ""Laptop""]",2248.17,"{""seasonal"": ""17%""}",190860,0,South America +2024-12-06,82607,5535,"[""Charger"", ""Headphones"", ""Laptop""]",52.33,{},249467,0,Europe +2024-02-13,82608,6694,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3735.11,"{""promo"": ""27%""}",34925,0,South America +2023-05-18,82609,1366,"[""Phone"", ""Monitor"", ""Headphones""]",514.32,"{""promo"": ""11%""}",176948,0,Europe +2023-06-29,82610,59,"[""Laptop"", ""Headphones""]",625.61,"{""loyalty"": ""10%""}",201450,0,Asia +2023-08-17,82611,9746,"[""Headphones""]",3278.54,{},232894,0,Africa +2024-05-03,82612,3259,"[""Monitor""]",4887.94,{},36640,0,Africa +2024-01-26,82613,1218,"[""Charger"", ""Monitor""]",2449.92,"{""promo"": ""28%""}",39856,1,Asia +2023-01-24,82614,1113,"[""Charger"", ""Phone""]",529.69,{},247656,0,Asia +2024-06-18,82615,1176,"[""Monitor"", ""Charger""]",3151.71,"{""loyalty"": ""22%""}",208270,0,North America +2024-09-18,82616,3299,"[""Headphones"", ""Laptop"", ""Charger""]",1187.78,"{"""": ""11%""}",261915,0,Africa +2023-11-26,82617,6460,"[""Laptop""]",3391.9,"{""promo"": ""9%""}",235858,0,South America +2023-02-04,82618,4664,"[""Charger""]",3060.35,{},296077,1,Africa +2024-10-27,82619,21,"[""Charger"", ""Headphones"", ""Monitor""]",914.41,"{""promo"": ""7%""}",204670,1,Africa +2024-10-24,82620,7748,"[""Charger"", ""Headphones""]",155.68,{},43627,1,North America +2024-03-13,82621,6281,"[""Phone"", ""Headphones""]",3336.69,"{""loyalty"": ""7%""}",134938,0,Africa +2024-04-16,82622,2022,"[""Laptop""]",1065.11,"{""loyalty"": ""13%""}",57299,1,Africa +2023-02-10,82623,1406,"[""Tablet""]",586.95,{},187033,0,South America +2023-04-27,82624,5087,"[""Monitor"", ""Keyboard""]",1907.18,{},292081,0,Asia +2024-02-06,82625,3365,"[""Headphones""]",1886.3,"{"""": ""9%""}",147669,1,Africa +2024-04-24,82626,698,"[""Charger""]",1585.36,{},170507,0,South America +2024-12-29,82627,315,"[""Wireless Mouse""]",2734.71,{},128391,0,Europe +2023-12-08,82628,2850,"[""Keyboard""]",290.07,"{""promo"": ""22%""}",15354,1,Asia +2024-09-11,82629,452,"[""Wireless Mouse"", ""Laptop""]",2923.35,{},288157,0,Asia +2023-09-05,82630,1204,"[""Keyboard"", ""Laptop"", ""Headphones""]",3629.58,{},69719,1,North America +2023-08-18,82631,1460,"[""Tablet"", ""Phone""]",2557.3,{},294368,1,Europe +2024-03-28,82632,5545,"[""Keyboard""]",2957.26,"{""loyalty"": ""14%""}",92236,1,Asia +2024-10-17,82633,5240,"[""Charger"", ""Laptop""]",2767.96,"{""loyalty"": ""30%""}",34251,0,South America +2023-04-02,82634,7038,"[""Monitor"", ""Charger""]",1848.49,"{""seasonal"": ""28%""}",145431,1,Africa +2023-09-14,82635,1187,"[""Headphones""]",2358.35,{},124701,0,Europe +2023-06-24,82636,1320,"[""Phone"", ""Tablet""]",984.58,"{""seasonal"": ""14%""}",154152,1,South America +2024-02-19,82637,905,"[""Headphones""]",395.9,"{""promo"": ""22%""}",217012,0,Asia +2024-09-30,82638,1592,"[""Laptop"", ""Keyboard"", ""Phone""]",3069.99,"{""seasonal"": ""13%""}",129860,1,Europe +2024-05-22,82639,959,"[""Headphones""]",948.45,{},31067,0,Africa +2023-12-26,82640,5337,"[""Keyboard""]",4134.11,{},219619,0,South America +2023-03-23,82641,1616,"[""Keyboard"", ""Laptop""]",2090.13,"{"""": ""18%""}",108549,0,Africa +2024-06-28,82642,1582,"[""Keyboard"", ""Monitor""]",3003.62,{},31294,0,North America +2024-06-12,82643,346,"[""Monitor"", ""Laptop"", ""Charger""]",4664.71,{},120058,0,Europe +2023-06-20,82644,4668,"[""Headphones"", ""Tablet"", ""Keyboard""]",365.87,"{"""": ""7%""}",131044,0,South America +2023-01-23,82645,5269,"[""Tablet""]",1719.17,"{"""": ""6%""}",14678,0,Europe +2024-01-05,82646,8255,"[""Monitor"", ""Tablet""]",3960.63,"{"""": ""24%""}",265056,1,North America +2023-04-23,82647,4460,"[""Headphones"", ""Charger""]",2717.85,"{""promo"": ""10%""}",278095,0,Europe +2023-03-02,82648,2193,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3192.31,{},25968,1,Africa +2023-02-09,82649,4570,"[""Headphones""]",3170.08,"{""seasonal"": ""12%""}",200129,0,North America +2023-08-26,82650,8465,"[""Keyboard""]",492.37,"{""seasonal"": ""7%""}",285696,1,North America +2023-05-03,82651,3512,"[""Tablet"", ""Keyboard""]",4850.94,"{""seasonal"": ""19%""}",151104,0,Africa +2023-04-08,82652,2360,"[""Monitor""]",1942.37,{},51192,0,Africa +2023-04-18,82653,50,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4420.79,"{"""": ""6%""}",164109,1,North America +2024-03-17,82654,7541,"[""Keyboard"", ""Tablet""]",3180.56,"{""promo"": ""27%""}",295298,1,Europe +2023-10-28,82655,5355,"[""Headphones""]",3478.42,{},288441,1,Africa +2023-06-17,82656,9876,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4391.46,{},172197,0,South America +2024-03-21,82657,5532,"[""Tablet"", ""Keyboard"", ""Monitor""]",2950.76,{},178395,1,Europe +2023-07-11,82658,5980,"[""Laptop"", ""Tablet"", ""Monitor""]",737.79,{},287490,1,Europe +2023-06-30,82659,7134,"[""Tablet""]",1797.45,"{""seasonal"": ""14%""}",231761,1,South America +2024-06-16,82660,3903,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3377.82,"{""seasonal"": ""9%""}",136747,1,Africa +2023-02-16,82661,2435,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1279.47,"{""seasonal"": ""27%""}",205477,1,North America +2023-04-17,82662,485,"[""Charger"", ""Wireless Mouse""]",1579.02,"{""loyalty"": ""20%""}",34955,1,Asia +2023-08-13,82663,3324,"[""Charger""]",1199.01,"{""seasonal"": ""24%""}",240473,0,Asia +2024-04-27,82664,9936,"[""Phone"", ""Laptop""]",1976.85,{},206330,1,Africa +2024-07-15,82665,1410,"[""Monitor"", ""Keyboard"", ""Charger""]",3983.13,{},215115,1,South America +2024-10-22,82666,408,"[""Charger""]",949.3,"{""seasonal"": ""26%""}",106925,1,Asia +2024-12-06,82667,9708,"[""Headphones""]",656.07,{},161535,1,Asia +2023-12-17,82668,7853,"[""Tablet"", ""Monitor"", ""Laptop""]",55.55,"{""loyalty"": ""19%""}",249388,1,North America +2023-01-07,82669,9526,"[""Headphones""]",1279.58,"{""loyalty"": ""10%""}",8091,1,Africa +2024-04-05,82670,918,"[""Headphones"", ""Monitor"", ""Phone""]",625.34,{},75066,1,North America +2024-11-12,82671,7499,"[""Headphones""]",4807.91,"{""promo"": ""21%""}",275956,0,South America +2023-11-06,82672,2095,"[""Monitor""]",3550.34,"{""promo"": ""25%""}",33544,0,Asia +2023-06-09,82673,2589,"[""Tablet""]",1667.58,{},212507,1,Europe +2023-01-08,82674,6859,"[""Laptop"", ""Tablet"", ""Phone""]",1158.65,{},114535,1,North America +2023-05-05,82675,2121,"[""Charger""]",3485.92,"{""seasonal"": ""22%""}",289727,1,Africa +2023-02-04,82676,1475,"[""Monitor"", ""Charger""]",634.66,{},53827,0,Africa +2024-03-05,82677,6962,"[""Headphones""]",2409.37,{},212988,0,South America +2023-12-13,82678,9574,"[""Keyboard""]",3747.77,"{""loyalty"": ""15%""}",161848,1,Asia +2023-10-09,82679,6771,"[""Laptop"", ""Tablet"", ""Charger""]",4837.91,{},286304,1,North America +2023-01-14,82680,957,"[""Laptop"", ""Phone""]",1237.87,"{""loyalty"": ""27%""}",229924,0,South America +2024-02-13,82681,9135,"[""Keyboard"", ""Tablet"", ""Headphones""]",4260.05,"{""promo"": ""25%""}",28587,1,Africa +2023-05-02,82682,9190,"[""Keyboard"", ""Phone""]",4896.91,{},83039,1,Africa +2023-11-10,82683,1628,"[""Wireless Mouse""]",159.16,{},78258,0,Europe +2024-05-29,82684,6743,"[""Laptop"", ""Tablet""]",4102.77,{},280496,0,North America +2023-03-14,82685,2343,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1225.8,"{"""": ""11%""}",191439,0,Europe +2024-11-30,82686,2482,"[""Monitor""]",3052.16,{},29445,0,North America +2023-12-18,82687,9427,"[""Phone""]",261.73,"{""promo"": ""24%""}",119839,0,South America +2024-03-21,82688,4252,"[""Phone"", ""Tablet""]",3833.17,"{""seasonal"": ""21%""}",147625,0,North America +2024-08-06,82689,1048,"[""Keyboard"", ""Phone""]",1425.41,"{""promo"": ""21%""}",294949,1,Africa +2024-11-20,82690,2263,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2294.29,"{""loyalty"": ""14%""}",181364,0,North America +2024-04-07,82691,7376,"[""Tablet""]",1977.54,{},122931,0,North America +2024-06-01,82692,7377,"[""Wireless Mouse"", ""Phone""]",3792.22,"{""loyalty"": ""19%""}",166195,1,Africa +2024-07-29,82693,3425,"[""Charger""]",4004.51,"{""loyalty"": ""28%""}",109495,1,Europe +2023-06-22,82694,1837,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3386.14,{},150647,1,North America +2023-05-02,82695,7218,"[""Tablet"", ""Laptop"", ""Keyboard""]",1861.36,{},231487,1,South America +2023-05-21,82696,207,"[""Wireless Mouse""]",363.32,"{""loyalty"": ""12%""}",16598,0,South America +2024-09-16,82697,4442,"[""Charger""]",4459.73,"{""promo"": ""23%""}",206874,1,Europe +2024-08-21,82698,6872,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3903.27,{},75495,1,South America +2023-03-14,82699,7282,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2822.74,{},164038,0,Asia +2024-09-10,82700,9043,"[""Laptop"", ""Phone""]",4694.01,{},225256,1,North America +2024-11-01,82701,6905,"[""Wireless Mouse"", ""Laptop""]",1245.22,"{""promo"": ""15%""}",186430,0,Africa +2023-03-29,82702,4978,"[""Phone"", ""Monitor""]",2356.55,{},244152,0,Africa +2023-01-20,82703,2135,"[""Headphones""]",2547.71,{},56562,0,Africa +2023-04-09,82704,9694,"[""Monitor""]",325.12,"{""promo"": ""13%""}",194374,1,South America +2024-01-11,82705,6707,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",705.15,{},285225,1,Europe +2024-06-16,82706,7787,"[""Monitor""]",2053.85,"{""loyalty"": ""13%""}",216723,0,Europe +2023-06-16,82707,8578,"[""Monitor""]",64.6,{},296410,0,Africa +2024-08-30,82708,5079,"[""Phone"", ""Wireless Mouse""]",3417.46,"{""seasonal"": ""24%""}",152037,1,North America +2024-08-31,82709,2261,"[""Keyboard""]",4682.2,{},244642,1,Asia +2024-12-06,82710,6498,"[""Monitor"", ""Phone""]",1558.47,{},265275,0,Europe +2024-09-11,82711,707,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2867.0,{},290519,1,South America +2023-06-26,82712,4954,"[""Wireless Mouse""]",704.65,"{""seasonal"": ""28%""}",7233,1,Africa +2024-05-01,82713,217,"[""Phone"", ""Keyboard""]",915.28,{},268161,0,South America +2023-12-27,82714,4156,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",190.13,"{""promo"": ""28%""}",243248,0,South America +2024-03-12,82715,7040,"[""Wireless Mouse""]",4929.57,"{""promo"": ""23%""}",126077,1,South America +2024-11-26,82716,4847,"[""Headphones"", ""Phone""]",413.72,{},242219,0,Europe +2024-07-26,82717,2270,"[""Tablet"", ""Keyboard""]",919.12,{},189748,0,Asia +2023-05-11,82718,3416,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",852.13,"{""loyalty"": ""28%""}",148755,0,Europe +2023-10-15,82719,6324,"[""Laptop"", ""Phone""]",3572.57,{},212372,1,Africa +2023-10-24,82720,6832,"[""Headphones""]",1989.97,{},151485,1,North America +2023-10-11,82721,5179,"[""Phone"", ""Laptop""]",1177.61,{},290943,0,South America +2024-01-31,82722,7415,"[""Monitor""]",1830.69,"{""loyalty"": ""19%""}",122108,0,South America +2024-04-08,82723,9511,"[""Wireless Mouse""]",2131.74,"{"""": ""24%""}",198518,1,Europe +2023-08-01,82724,4634,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",716.63,"{""promo"": ""27%""}",91607,1,Asia +2023-10-27,82725,7584,"[""Headphones"", ""Keyboard""]",961.4,{},136411,1,Europe +2024-01-14,82726,8642,"[""Monitor"", ""Keyboard"", ""Charger""]",2082.67,"{""loyalty"": ""15%""}",126211,0,Asia +2024-10-02,82727,2552,"[""Laptop"", ""Phone""]",345.38,{},49066,1,Africa +2023-10-23,82728,8779,"[""Tablet"", ""Charger""]",1113.5,{},123516,1,North America +2023-05-31,82729,926,"[""Monitor"", ""Wireless Mouse""]",2638.68,"{"""": ""29%""}",76525,0,Europe +2023-11-10,82730,3384,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4238.7,"{""seasonal"": ""19%""}",204290,0,Asia +2023-05-05,82731,7078,"[""Tablet""]",1265.27,{},95642,1,South America +2024-03-23,82732,192,"[""Wireless Mouse""]",1778.92,{},204233,1,Africa +2023-09-30,82733,8295,"[""Tablet"", ""Charger"", ""Headphones""]",3813.91,"{"""": ""14%""}",144908,1,Europe +2024-09-10,82734,3305,"[""Charger"", ""Monitor""]",4535.93,"{""loyalty"": ""27%""}",45885,1,North America +2023-05-19,82735,8273,"[""Laptop"", ""Monitor"", ""Keyboard""]",2625.11,"{""seasonal"": ""6%""}",236252,0,Africa +2023-08-17,82736,9046,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2778.1,"{""loyalty"": ""12%""}",185605,0,South America +2024-05-23,82737,575,"[""Headphones"", ""Keyboard""]",708.38,"{""loyalty"": ""30%""}",187145,1,South America +2024-02-11,82738,8474,"[""Phone""]",373.05,{},187270,1,South America +2024-02-25,82739,2936,"[""Headphones"", ""Laptop"", ""Charger""]",2869.83,"{""promo"": ""11%""}",76068,1,Europe +2023-10-01,82740,6569,"[""Keyboard""]",4939.48,{},63296,0,North America +2024-08-09,82741,7258,"[""Monitor"", ""Charger""]",4073.28,"{""loyalty"": ""22%""}",5502,1,South America +2024-12-03,82742,2777,"[""Keyboard"", ""Monitor""]",3584.51,"{""promo"": ""28%""}",47650,1,Europe +2024-03-25,82743,4728,"[""Monitor""]",1749.12,{},83193,0,North America +2023-06-28,82744,5769,"[""Tablet"", ""Headphones"", ""Charger""]",4682.14,{},33421,1,North America +2023-03-13,82745,2701,"[""Laptop"", ""Tablet"", ""Keyboard""]",3189.13,"{""promo"": ""25%""}",102850,1,South America +2023-08-18,82746,7170,"[""Wireless Mouse"", ""Phone""]",2759.48,"{""promo"": ""24%""}",241033,1,South America +2023-03-17,82747,2382,"[""Charger""]",1114.78,"{""seasonal"": ""30%""}",253861,1,North America +2024-07-06,82748,8159,"[""Laptop""]",2662.36,"{""seasonal"": ""14%""}",81695,0,Africa +2023-03-27,82749,3074,"[""Monitor"", ""Headphones""]",1046.83,"{""promo"": ""6%""}",216615,0,South America +2024-11-09,82750,1154,"[""Phone"", ""Monitor"", ""Laptop""]",2912.37,"{""seasonal"": ""17%""}",69831,1,South America +2023-10-16,82751,6,"[""Charger"", ""Monitor""]",2194.85,"{""seasonal"": ""26%""}",97147,0,Asia +2023-08-18,82752,5253,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3884.34,"{""loyalty"": ""23%""}",269855,1,Africa +2023-05-15,82753,6313,"[""Wireless Mouse"", ""Monitor""]",1392.26,"{""loyalty"": ""14%""}",206867,1,Asia +2023-11-10,82754,1771,"[""Phone""]",4786.45,{},103484,0,North America +2023-05-14,82755,1826,"[""Monitor"", ""Laptop"", ""Keyboard""]",2670.17,"{"""": ""14%""}",77677,0,North America +2024-01-08,82756,7911,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2578.99,"{"""": ""9%""}",265911,1,Europe +2024-01-27,82757,9849,"[""Keyboard"", ""Charger""]",4468.23,"{""promo"": ""12%""}",134855,0,South America +2024-11-18,82758,8030,"[""Charger"", ""Tablet"", ""Laptop""]",1904.05,{},88529,1,Africa +2024-12-05,82759,5402,"[""Headphones""]",1227.25,"{""seasonal"": ""26%""}",160152,1,Europe +2024-04-29,82760,9674,"[""Tablet"", ""Laptop"", ""Monitor""]",2990.33,"{""loyalty"": ""24%""}",76552,1,South America +2024-01-12,82761,6419,"[""Tablet""]",1114.22,"{""promo"": ""8%""}",232386,0,North America +2024-04-09,82762,6804,"[""Laptop"", ""Monitor""]",2057.7,"{"""": ""24%""}",23226,1,North America +2023-09-15,82763,8416,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4411.3,{},217306,0,South America +2023-01-25,82764,4516,"[""Laptop"", ""Phone""]",4799.04,"{"""": ""28%""}",100884,0,Asia +2024-12-29,82765,838,"[""Tablet"", ""Monitor""]",4150.84,{},27509,0,Asia +2023-09-01,82766,7272,"[""Phone""]",151.87,"{""seasonal"": ""11%""}",19181,0,Europe +2024-05-20,82767,7620,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",753.87,{},175503,1,South America +2024-04-17,82768,5853,"[""Tablet"", ""Laptop"", ""Charger""]",4967.55,{},215414,0,Africa +2024-12-24,82769,5374,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",3980.58,"{""promo"": ""10%""}",269254,0,South America +2023-10-18,82770,3252,"[""Phone""]",3497.22,"{""seasonal"": ""25%""}",41477,0,Europe +2023-05-26,82771,2288,"[""Phone"", ""Laptop"", ""Charger""]",3509.47,"{""promo"": ""20%""}",40105,0,Asia +2024-09-21,82772,614,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1607.49,"{""promo"": ""19%""}",106183,0,South America +2023-04-14,82773,9917,"[""Headphones""]",733.92,{},261138,1,Europe +2023-04-07,82774,1592,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2335.76,"{""loyalty"": ""18%""}",54267,0,South America +2023-11-21,82775,4303,"[""Tablet"", ""Headphones""]",1313.32,{},57866,1,Europe +2024-06-20,82776,5557,"[""Wireless Mouse""]",1478.79,"{""seasonal"": ""24%""}",169809,0,Europe +2023-07-09,82777,8756,"[""Monitor"", ""Phone"", ""Headphones""]",1520.61,{},279689,0,Africa +2023-08-24,82778,2326,"[""Tablet""]",3393.3,"{"""": ""6%""}",30543,1,Asia +2023-12-31,82779,7513,"[""Phone"", ""Charger"", ""Monitor""]",1715.01,{},118569,0,Europe +2024-09-28,82780,4823,"[""Monitor""]",4015.96,{},173840,0,South America +2024-06-08,82781,4247,"[""Keyboard"", ""Monitor"", ""Charger""]",2224.61,"{"""": ""27%""}",82297,1,South America +2024-03-15,82782,121,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4233.6,"{""seasonal"": ""22%""}",179469,0,Asia +2024-11-30,82783,1372,"[""Headphones""]",538.01,{},247503,1,Europe +2023-07-25,82784,2031,"[""Laptop"", ""Phone"", ""Keyboard""]",1145.86,"{"""": ""27%""}",232704,1,Europe +2024-06-16,82785,2486,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3781.35,"{""seasonal"": ""12%""}",11025,1,Europe +2024-12-29,82786,5548,"[""Monitor"", ""Headphones""]",2750.07,{},154927,1,Asia +2023-06-22,82787,1399,"[""Headphones"", ""Tablet"", ""Phone""]",1158.93,"{""seasonal"": ""28%""}",245755,0,South America +2023-10-16,82788,3399,"[""Headphones"", ""Charger""]",4111.69,{},258980,1,Europe +2024-08-20,82789,9082,"[""Keyboard""]",53.36,"{"""": ""18%""}",107002,1,North America +2023-04-17,82790,9234,"[""Monitor"", ""Headphones""]",366.92,"{""seasonal"": ""12%""}",286653,0,Asia +2023-03-06,82791,8788,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1137.04,"{"""": ""13%""}",250797,1,North America +2024-11-08,82792,3164,"[""Charger""]",4415.47,"{"""": ""8%""}",60316,0,Europe +2024-10-29,82793,9340,"[""Laptop""]",3293.32,{},193800,0,Africa +2024-03-30,82794,7831,"[""Tablet"", ""Phone""]",80.58,"{""promo"": ""19%""}",221099,1,North America +2023-03-04,82795,3542,"[""Keyboard"", ""Monitor"", ""Phone""]",2567.05,{},251556,0,Asia +2024-07-22,82796,9768,"[""Headphones"", ""Tablet"", ""Charger""]",3473.24,{},161693,0,Europe +2023-07-30,82797,6441,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4146.89,{},253649,0,Asia +2023-01-30,82798,1606,"[""Keyboard"", ""Charger""]",4032.78,{},190026,0,Europe +2024-10-19,82799,4180,"[""Keyboard""]",1233.09,{},60286,0,North America +2023-04-30,82800,4613,"[""Charger"", ""Monitor"", ""Keyboard""]",2045.55,{},118245,0,Asia +2023-09-22,82801,1111,"[""Tablet""]",2010.65,"{""promo"": ""17%""}",248156,1,North America +2023-04-04,82802,8326,"[""Headphones""]",3844.74,"{"""": ""6%""}",272007,0,Africa +2024-05-02,82803,7358,"[""Tablet"", ""Keyboard""]",1048.19,{},157444,1,North America +2024-04-04,82804,6628,"[""Phone"", ""Charger""]",496.07,"{""seasonal"": ""14%""}",278999,0,North America +2024-04-30,82805,2315,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1886.03,"{""loyalty"": ""6%""}",118214,0,Africa +2024-07-17,82806,5943,"[""Charger"", ""Headphones""]",559.88,"{"""": ""30%""}",9508,1,Asia +2024-09-11,82807,9519,"[""Laptop"", ""Charger""]",2350.64,"{""loyalty"": ""8%""}",46352,1,North America +2023-01-01,82808,491,"[""Charger"", ""Headphones""]",2220.76,"{""loyalty"": ""27%""}",254635,1,Africa +2024-07-12,82809,7747,"[""Laptop"", ""Charger""]",4872.27,{},200060,0,South America +2023-01-29,82810,9448,"[""Headphones"", ""Phone"", ""Tablet""]",1231.75,{},11032,1,Asia +2024-05-18,82811,5410,"[""Laptop"", ""Keyboard""]",1412.36,"{""seasonal"": ""10%""}",279074,1,Africa +2024-02-01,82812,9122,"[""Laptop"", ""Tablet""]",4250.82,{},97437,0,Europe +2023-05-09,82813,7119,"[""Phone"", ""Charger"", ""Keyboard""]",1678.7,"{""promo"": ""21%""}",240881,0,Asia +2024-08-28,82814,6286,"[""Keyboard"", ""Tablet"", ""Laptop""]",2723.85,"{""loyalty"": ""8%""}",152040,0,South America +2023-01-10,82815,1190,"[""Monitor"", ""Tablet""]",1494.88,"{""promo"": ""8%""}",73094,1,Africa +2024-03-24,82816,3694,"[""Tablet"", ""Headphones"", ""Laptop""]",3724.26,{},116096,1,North America +2023-05-03,82817,3588,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2307.97,"{""promo"": ""13%""}",286789,0,Europe +2023-12-19,82818,3265,"[""Charger""]",3328.52,{},43829,0,North America +2024-10-02,82819,3195,"[""Keyboard"", ""Wireless Mouse""]",2012.42,{},242359,1,North America +2024-08-18,82820,496,"[""Monitor"", ""Keyboard""]",4163.42,"{""loyalty"": ""8%""}",58329,0,Asia +2024-03-06,82821,363,"[""Headphones""]",1048.04,{},299634,0,Asia +2023-11-21,82822,6576,"[""Phone"", ""Wireless Mouse""]",3325.97,"{""loyalty"": ""22%""}",162094,0,Europe +2023-11-08,82823,8530,"[""Headphones"", ""Monitor"", ""Laptop""]",4091.6,"{"""": ""29%""}",264336,0,Europe +2024-05-06,82824,964,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",563.92,{},199054,0,North America +2023-02-20,82825,3779,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",576.47,"{"""": ""10%""}",242605,0,North America +2023-05-25,82826,5025,"[""Charger"", ""Monitor""]",3708.7,{},220222,1,South America +2024-06-11,82827,9149,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1832.66,{},138676,0,Europe +2023-02-15,82828,8361,"[""Tablet"", ""Wireless Mouse""]",4512.62,"{""promo"": ""7%""}",288948,0,Europe +2024-08-16,82829,1364,"[""Phone"", ""Tablet""]",3279.58,"{""promo"": ""11%""}",227799,0,Africa +2024-01-17,82830,6883,"[""Keyboard"", ""Laptop""]",464.5,"{""promo"": ""19%""}",228717,0,South America +2024-09-07,82831,3191,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1306.94,"{"""": ""28%""}",282992,1,South America +2023-05-24,82832,6594,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2364.21,"{""loyalty"": ""21%""}",133502,0,North America +2023-10-17,82833,9302,"[""Laptop"", ""Monitor"", ""Charger""]",1699.64,{},198702,1,Europe +2024-12-15,82834,432,"[""Headphones""]",4875.11,{},276976,0,South America +2024-07-28,82835,207,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2057.57,{},104596,1,North America +2023-02-02,82836,4905,"[""Phone"", ""Monitor""]",710.06,{},267243,1,North America +2023-01-14,82837,872,"[""Keyboard"", ""Headphones"", ""Tablet""]",1071.99,"{""loyalty"": ""23%""}",134958,0,South America +2023-04-18,82838,2301,"[""Laptop"", ""Monitor"", ""Phone""]",3910.23,{},196414,0,South America +2024-11-08,82839,268,"[""Monitor"", ""Headphones"", ""Laptop""]",2837.87,"{""seasonal"": ""25%""}",261801,0,Asia +2023-10-21,82840,6834,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",491.05,"{""promo"": ""26%""}",20438,0,Asia +2023-07-18,82841,1932,"[""Wireless Mouse"", ""Charger""]",2041.45,"{""seasonal"": ""8%""}",120495,0,North America +2023-08-04,82842,2755,"[""Tablet""]",394.73,{},62162,1,Europe +2024-01-24,82843,3488,"[""Monitor""]",496.68,{},101808,1,Africa +2023-07-23,82844,2862,"[""Phone"", ""Headphones""]",1061.92,{},241085,0,Africa +2023-03-07,82845,6518,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4550.65,{},47377,0,Africa +2023-04-11,82846,4704,"[""Laptop"", ""Phone"", ""Charger""]",2429.65,{},186038,1,Africa +2024-08-27,82847,9995,"[""Keyboard"", ""Wireless Mouse""]",4764.15,{},34493,1,North America +2023-03-14,82848,1475,"[""Keyboard""]",568.09,"{""promo"": ""5%""}",50642,1,North America +2023-03-31,82849,4176,"[""Keyboard"", ""Laptop"", ""Charger""]",3924.14,{},156403,0,Africa +2024-03-22,82850,740,"[""Headphones"", ""Monitor"", ""Phone""]",58.41,{},148998,0,Africa +2024-06-21,82851,3841,"[""Tablet"", ""Monitor""]",796.54,{},231595,1,Asia +2024-11-28,82852,6066,"[""Monitor"", ""Keyboard""]",1988.72,"{""promo"": ""7%""}",240454,1,North America +2023-05-19,82853,445,"[""Keyboard"", ""Phone""]",2502.11,{},1963,0,Europe +2024-12-26,82854,549,"[""Monitor""]",204.4,{},168068,1,South America +2024-06-04,82855,9577,"[""Laptop"", ""Keyboard""]",1850.2,"{""promo"": ""15%""}",196892,1,Europe +2024-04-18,82856,2660,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1347.0,"{""promo"": ""15%""}",186995,1,Africa +2023-10-07,82857,1514,"[""Tablet"", ""Monitor""]",4403.69,"{""seasonal"": ""10%""}",134051,1,Asia +2024-02-18,82858,826,"[""Laptop""]",706.8,"{""loyalty"": ""28%""}",151177,0,Africa +2023-09-04,82859,2307,"[""Laptop"", ""Monitor""]",105.18,"{""seasonal"": ""29%""}",26445,0,South America +2023-04-04,82860,6676,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4089.12,{},99484,0,North America +2024-01-24,82861,4710,"[""Keyboard"", ""Laptop"", ""Monitor""]",2596.48,{},62192,0,North America +2023-09-30,82862,3780,"[""Phone"", ""Monitor""]",3614.83,{},271186,0,North America +2023-01-03,82863,7745,"[""Wireless Mouse"", ""Charger""]",59.75,{},177578,1,North America +2023-07-17,82864,6244,"[""Laptop"", ""Tablet"", ""Keyboard""]",1734.76,"{"""": ""21%""}",121576,0,North America +2023-09-20,82865,9145,"[""Keyboard""]",3884.9,"{""seasonal"": ""10%""}",24074,0,Africa +2024-07-24,82866,2432,"[""Monitor""]",2447.0,{},3991,1,Asia +2024-05-11,82867,7380,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3119.33,{},173376,1,Europe +2023-08-14,82868,9911,"[""Tablet"", ""Keyboard"", ""Headphones""]",940.55,{},224617,0,Asia +2023-05-05,82869,9328,"[""Wireless Mouse""]",3909.7,{},295308,1,South America +2024-04-29,82870,8191,"[""Phone"", ""Tablet"", ""Headphones""]",774.45,{},299732,1,South America +2024-03-26,82871,9891,"[""Keyboard"", ""Monitor"", ""Tablet""]",407.5,{},274503,0,Europe +2023-03-29,82872,3178,"[""Wireless Mouse"", ""Monitor""]",4127.42,"{""loyalty"": ""19%""}",23714,1,Africa +2024-04-15,82873,4164,"[""Phone"", ""Charger"", ""Keyboard""]",3616.36,"{""loyalty"": ""12%""}",42351,0,Asia +2024-03-09,82874,9800,"[""Charger"", ""Headphones"", ""Monitor""]",3340.46,"{""loyalty"": ""28%""}",20651,0,Africa +2024-07-02,82875,8545,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4641.31,{},210173,1,Africa +2024-06-21,82876,8644,"[""Phone"", ""Monitor""]",2103.32,{},172744,1,Europe +2023-10-04,82877,852,"[""Charger"", ""Keyboard""]",4509.95,"{"""": ""9%""}",245434,1,Europe +2024-02-03,82878,5413,"[""Laptop"", ""Tablet""]",2744.57,{},184475,0,Africa +2023-01-05,82879,1809,"[""Wireless Mouse""]",1218.17,"{"""": ""9%""}",31166,0,Asia +2024-05-19,82880,7678,"[""Keyboard"", ""Tablet"", ""Headphones""]",3808.23,{},17999,0,Africa +2024-09-10,82881,2301,"[""Wireless Mouse""]",1659.33,"{""promo"": ""6%""}",100109,0,South America +2023-03-16,82882,2617,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",863.34,"{""seasonal"": ""12%""}",299532,1,Asia +2023-09-30,82883,3080,"[""Phone"", ""Headphones"", ""Keyboard""]",1168.99,{},264938,1,Europe +2023-08-18,82884,6035,"[""Laptop""]",155.53,{},269592,1,Asia +2023-06-03,82885,7474,"[""Headphones""]",3975.61,{},102765,0,Africa +2024-03-14,82886,6603,"[""Monitor"", ""Keyboard"", ""Tablet""]",129.35,"{""seasonal"": ""16%""}",168791,1,North America +2023-06-09,82887,8910,"[""Charger"", ""Monitor"", ""Tablet""]",4133.87,{},69085,0,South America +2024-10-16,82888,6518,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",70.4,{},67365,0,South America +2024-02-06,82889,3622,"[""Tablet"", ""Phone""]",4998.71,"{""promo"": ""20%""}",154502,0,Europe +2024-03-12,82890,1750,"[""Headphones"", ""Phone"", ""Monitor""]",3602.37,"{""seasonal"": ""20%""}",282965,1,Europe +2024-07-30,82891,2736,"[""Laptop""]",2148.4,"{""loyalty"": ""8%""}",133536,0,Africa +2024-11-30,82892,5461,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",473.21,{},68198,1,Asia +2024-03-17,82893,5454,"[""Headphones""]",3931.25,"{""loyalty"": ""9%""}",77526,0,Europe +2024-04-27,82894,8730,"[""Monitor""]",3803.86,{},178139,0,Asia +2024-12-19,82895,8343,"[""Tablet"", ""Wireless Mouse""]",147.52,"{""promo"": ""23%""}",269511,1,Asia +2023-05-25,82896,3151,"[""Charger"", ""Wireless Mouse""]",3083.12,{},160183,0,North America +2023-08-25,82897,1927,"[""Phone""]",1466.17,{},58627,1,Africa +2024-08-02,82898,6822,"[""Phone"", ""Charger""]",3041.52,{},135537,0,Asia +2024-01-24,82899,2448,"[""Monitor"", ""Tablet""]",3420.13,"{""promo"": ""11%""}",29559,1,Europe +2023-01-19,82900,21,"[""Headphones""]",3931.45,{},122639,1,North America +2024-04-29,82901,4595,"[""Headphones"", ""Laptop"", ""Keyboard""]",4441.76,"{""seasonal"": ""26%""}",199945,0,Africa +2023-12-24,82902,5677,"[""Monitor""]",4922.57,"{""seasonal"": ""7%""}",10745,0,North America +2023-07-21,82903,3995,"[""Monitor""]",3493.12,{},237915,0,Africa +2023-01-03,82904,8897,"[""Laptop""]",4687.19,{},12131,1,Africa +2024-04-20,82905,2864,"[""Headphones"", ""Laptop""]",2173.26,{},173306,1,South America +2023-04-13,82906,9322,"[""Monitor"", ""Laptop"", ""Charger""]",209.81,{},74591,1,Asia +2024-07-27,82907,4671,"[""Monitor"", ""Charger"", ""Headphones""]",4019.85,{},70827,0,Asia +2024-01-22,82908,6582,"[""Phone"", ""Wireless Mouse""]",491.06,{},112884,0,Asia +2024-06-28,82909,7381,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1118.11,"{""loyalty"": ""19%""}",40266,1,North America +2023-07-26,82910,6349,"[""Monitor"", ""Laptop""]",4980.39,"{""seasonal"": ""16%""}",100479,1,North America +2024-05-06,82911,6652,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1634.81,"{""promo"": ""13%""}",46004,1,South America +2023-05-23,82912,5025,"[""Charger"", ""Keyboard"", ""Laptop""]",1874.95,{},208736,1,South America +2024-11-16,82913,2821,"[""Keyboard"", ""Monitor""]",2884.13,"{""seasonal"": ""6%""}",205476,0,North America +2024-07-23,82914,6139,"[""Tablet""]",3786.74,"{"""": ""15%""}",19646,0,South America +2023-12-21,82915,2680,"[""Laptop""]",4441.51,{},156680,1,Africa +2023-03-17,82916,9288,"[""Tablet"", ""Phone"", ""Monitor""]",1994.84,{},197403,0,North America +2024-01-13,82917,1412,"[""Phone"", ""Keyboard""]",1876.78,"{""seasonal"": ""21%""}",159798,1,Asia +2023-11-02,82918,767,"[""Charger""]",1763.23,{},198425,1,Asia +2023-05-29,82919,6343,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3464.78,"{""seasonal"": ""6%""}",200134,0,South America +2023-06-28,82920,497,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",199.06,{},133967,1,Europe +2024-09-29,82921,7265,"[""Headphones""]",4759.66,"{"""": ""6%""}",192850,0,North America +2024-09-12,82922,2688,"[""Laptop""]",2440.86,"{"""": ""15%""}",161143,0,Asia +2024-12-15,82923,8791,"[""Phone"", ""Wireless Mouse""]",248.03,"{""promo"": ""30%""}",294691,0,South America +2024-09-21,82924,9593,"[""Phone"", ""Laptop"", ""Headphones""]",3341.52,{},2382,0,South America +2023-07-08,82925,1802,"[""Laptop"", ""Phone"", ""Keyboard""]",71.74,"{""seasonal"": ""9%""}",150582,0,North America +2023-09-15,82926,1228,"[""Charger""]",4531.91,"{""seasonal"": ""29%""}",145005,1,North America +2024-01-11,82927,6032,"[""Laptop"", ""Wireless Mouse""]",4425.8,{},157456,0,North America +2024-02-29,82928,9563,"[""Laptop"", ""Monitor""]",3717.34,{},18315,0,North America +2023-04-12,82929,4157,"[""Phone""]",2621.25,"{""seasonal"": ""24%""}",71471,0,Europe +2023-05-01,82930,2812,"[""Monitor"", ""Headphones""]",659.7,{},211236,0,North America +2024-03-20,82931,6273,"[""Laptop"", ""Headphones""]",2455.19,"{""seasonal"": ""20%""}",225682,0,South America +2024-11-20,82932,3584,"[""Headphones""]",2672.2,"{""loyalty"": ""22%""}",213655,1,South America +2024-05-23,82933,3354,"[""Keyboard"", ""Phone""]",1647.99,{},171293,0,South America +2024-01-29,82934,4155,"[""Keyboard"", ""Laptop""]",4092.25,"{"""": ""22%""}",235823,1,Asia +2023-07-30,82935,5371,"[""Keyboard"", ""Laptop"", ""Monitor""]",3336.81,"{""seasonal"": ""26%""}",278804,1,Asia +2023-10-28,82936,9183,"[""Headphones"", ""Laptop""]",3847.3,"{""seasonal"": ""25%""}",162375,0,South America +2023-04-21,82937,5347,"[""Keyboard""]",1715.71,"{""seasonal"": ""25%""}",35486,1,Europe +2024-08-04,82938,8661,"[""Laptop"", ""Headphones"", ""Charger""]",4370.48,{},268120,0,Africa +2024-02-26,82939,2312,"[""Wireless Mouse""]",1738.76,"{""promo"": ""13%""}",90836,1,Africa +2024-05-01,82940,9407,"[""Keyboard"", ""Tablet"", ""Laptop""]",3951.59,{},288051,1,Africa +2024-06-24,82941,7697,"[""Monitor"", ""Headphones""]",4728.37,{},79630,1,Asia +2023-02-17,82942,318,"[""Tablet"", ""Keyboard""]",1520.25,"{"""": ""27%""}",156148,0,North America +2023-10-30,82943,7280,"[""Headphones""]",575.44,{},191942,0,Europe +2023-07-31,82944,4096,"[""Wireless Mouse""]",3197.62,{},211666,1,Asia +2024-02-10,82945,3218,"[""Charger"", ""Headphones""]",2075.81,"{""seasonal"": ""26%""}",192295,1,Europe +2024-02-20,82946,9915,"[""Charger"", ""Headphones"", ""Monitor""]",1354.34,"{"""": ""12%""}",5169,1,South America +2024-04-15,82947,5768,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4374.15,{},247556,1,Africa +2024-08-06,82948,2928,"[""Wireless Mouse"", ""Tablet""]",1294.75,"{""seasonal"": ""7%""}",55363,1,Europe +2024-05-30,82949,223,"[""Monitor"", ""Keyboard"", ""Charger""]",1401.3,"{""loyalty"": ""29%""}",157890,1,Europe +2024-06-28,82950,7866,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",176.14,"{""promo"": ""22%""}",210016,1,South America +2023-08-23,82951,6806,"[""Headphones""]",590.83,"{""seasonal"": ""12%""}",149681,0,Africa +2024-12-26,82952,2238,"[""Keyboard""]",2288.16,"{"""": ""24%""}",12490,0,Europe +2023-03-12,82953,6496,"[""Charger""]",2572.17,"{""loyalty"": ""11%""}",24124,0,North America +2024-08-22,82954,2918,"[""Monitor"", ""Tablet""]",4929.0,"{""loyalty"": ""12%""}",259115,0,North America +2024-04-22,82955,3413,"[""Laptop"", ""Headphones""]",2012.19,"{""promo"": ""24%""}",127352,0,Europe +2023-06-10,82956,6192,"[""Headphones"", ""Monitor"", ""Tablet""]",786.61,"{""loyalty"": ""29%""}",38338,0,South America +2024-11-08,82957,524,"[""Tablet"", ""Laptop"", ""Headphones""]",1913.82,{},44709,1,North America +2024-10-26,82958,2408,"[""Charger""]",4826.01,"{""loyalty"": ""29%""}",37936,1,Africa +2023-11-22,82959,2073,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3579.09,"{""loyalty"": ""20%""}",158247,1,Africa +2023-03-08,82960,6571,"[""Charger"", ""Keyboard"", ""Phone""]",2483.87,"{""loyalty"": ""27%""}",258951,1,Europe +2023-03-07,82961,3805,"[""Laptop"", ""Wireless Mouse""]",4171.98,{},280407,1,Europe +2024-05-28,82962,4139,"[""Headphones""]",2554.33,"{"""": ""11%""}",278661,0,Asia +2024-01-03,82963,1395,"[""Phone"", ""Keyboard""]",1214.63,"{""loyalty"": ""13%""}",175005,0,Asia +2023-11-27,82964,3346,"[""Phone"", ""Laptop""]",2101.27,{},248422,1,North America +2023-04-16,82965,7819,"[""Monitor"", ""Headphones""]",981.49,{},5523,0,North America +2023-09-30,82966,1061,"[""Tablet""]",4403.1,"{""promo"": ""23%""}",275280,0,South America +2023-04-16,82967,5909,"[""Headphones"", ""Tablet""]",3999.91,{},211163,1,Africa +2024-02-13,82968,2543,"[""Laptop""]",130.91,{},251017,0,Africa +2024-03-24,82969,9393,"[""Tablet"", ""Laptop"", ""Keyboard""]",1007.96,{},54328,1,North America +2023-03-01,82970,6489,"[""Laptop""]",235.82,"{""promo"": ""26%""}",208797,1,Africa +2023-06-23,82971,5638,"[""Headphones""]",3380.38,{},1877,0,Asia +2024-08-04,82972,3300,"[""Tablet"", ""Phone""]",52.78,"{""promo"": ""8%""}",184495,1,South America +2024-07-11,82973,981,"[""Keyboard""]",3983.35,"{""seasonal"": ""24%""}",198390,1,South America +2023-12-06,82974,7450,"[""Headphones"", ""Laptop"", ""Phone""]",539.31,{},179768,1,South America +2023-08-05,82975,1064,"[""Charger""]",1923.82,"{""loyalty"": ""8%""}",180163,0,Asia +2023-04-06,82976,9268,"[""Phone""]",2330.16,"{""promo"": ""16%""}",46979,0,North America +2024-03-18,82977,5635,"[""Headphones""]",1796.98,{},8774,0,North America +2024-06-04,82978,6668,"[""Keyboard""]",2832.93,"{""promo"": ""17%""}",90017,1,South America +2024-08-14,82979,355,"[""Laptop""]",2907.67,{},213967,1,Europe +2024-09-23,82980,623,"[""Wireless Mouse"", ""Keyboard""]",580.59,"{""seasonal"": ""24%""}",267358,0,North America +2023-02-15,82981,3976,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3426.4,"{""promo"": ""23%""}",202773,0,Asia +2024-01-25,82982,6113,"[""Charger"", ""Keyboard"", ""Headphones""]",593.11,"{""loyalty"": ""21%""}",158036,1,Africa +2023-10-16,82983,2469,"[""Laptop""]",443.77,{},67076,1,South America +2024-01-26,82984,8478,"[""Monitor"", ""Laptop""]",2362.58,{},266461,1,North America +2024-12-26,82985,3802,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2207.01,"{"""": ""29%""}",264899,0,Europe +2024-07-21,82986,9436,"[""Phone""]",1947.38,{},8781,1,North America +2023-02-20,82987,3052,"[""Laptop""]",2340.0,{},8960,0,Africa +2024-11-27,82988,241,"[""Keyboard"", ""Tablet""]",1316.32,{},76558,1,North America +2024-10-05,82989,5640,"[""Charger"", ""Keyboard""]",2450.97,"{""seasonal"": ""21%""}",40325,0,South America +2024-07-13,82990,4431,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1457.14,{},92992,1,Africa +2023-08-22,82991,5923,"[""Laptop"", ""Phone"", ""Monitor""]",1432.04,{},257014,0,Europe +2023-09-13,82992,3997,"[""Charger""]",1832.51,"{"""": ""21%""}",196767,1,Asia +2024-02-10,82993,7952,"[""Charger""]",304.97,{},220040,1,Europe +2023-03-21,82994,8650,"[""Phone""]",186.44,"{""loyalty"": ""15%""}",111917,0,North America +2024-06-21,82995,2348,"[""Charger"", ""Keyboard""]",3392.22,"{"""": ""27%""}",297348,1,North America +2023-03-26,82996,3719,"[""Charger"", ""Headphones""]",136.16,{},73045,0,South America +2024-12-15,82997,9350,"[""Charger"", ""Phone"", ""Laptop""]",2930.22,{},85415,0,Africa +2024-12-08,82998,932,"[""Charger"", ""Phone""]",2425.95,"{""promo"": ""24%""}",2163,0,Europe +2023-10-01,82999,2681,"[""Headphones""]",4908.38,"{""seasonal"": ""20%""}",103362,1,Africa +2024-05-23,83000,2570,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4749.26,"{""promo"": ""18%""}",287761,1,Asia +2023-02-26,83001,8647,"[""Keyboard"", ""Headphones""]",3347.67,"{""seasonal"": ""11%""}",18399,1,North America +2023-02-02,83002,5530,"[""Phone""]",2843.99,{},42352,0,Africa +2024-08-31,83003,7627,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1589.45,{},153479,0,North America +2023-09-16,83004,1355,"[""Headphones""]",3749.27,"{""loyalty"": ""21%""}",283040,1,Africa +2024-05-09,83005,4841,"[""Monitor"", ""Keyboard"", ""Phone""]",584.5,{},299087,1,Africa +2024-08-02,83006,4303,"[""Tablet"", ""Laptop""]",2520.96,"{"""": ""24%""}",201360,0,Africa +2023-01-03,83007,221,"[""Monitor"", ""Laptop""]",1606.32,{},225756,1,Africa +2024-07-26,83008,9510,"[""Headphones"", ""Laptop""]",2514.31,"{"""": ""18%""}",223782,1,Europe +2024-06-13,83009,9128,"[""Keyboard""]",93.65,"{""promo"": ""20%""}",262385,1,Africa +2024-04-06,83010,8370,"[""Headphones""]",3344.04,{},140080,1,North America +2023-01-27,83011,4343,"[""Phone""]",2239.35,"{""loyalty"": ""24%""}",137033,0,Africa +2023-12-31,83012,5056,"[""Charger"", ""Monitor""]",2937.36,"{"""": ""19%""}",41589,1,Asia +2024-04-25,83013,3507,"[""Phone""]",1156.32,"{""promo"": ""13%""}",91775,0,Asia +2023-06-04,83014,8074,"[""Keyboard"", ""Laptop""]",4463.28,{},23691,1,Africa +2023-11-22,83015,8886,"[""Headphones"", ""Monitor""]",1154.77,"{""seasonal"": ""15%""}",250204,1,Africa +2024-07-17,83016,565,"[""Laptop"", ""Monitor""]",1444.75,{},258196,0,North America +2024-06-15,83017,660,"[""Headphones"", ""Charger""]",580.89,"{""loyalty"": ""29%""}",238766,0,South America +2023-09-01,83018,1777,"[""Phone"", ""Keyboard"", ""Charger""]",2849.83,"{""seasonal"": ""8%""}",140472,1,North America +2023-10-21,83019,8252,"[""Wireless Mouse""]",2009.21,"{""promo"": ""21%""}",231851,0,Asia +2024-05-14,83020,6952,"[""Wireless Mouse"", ""Keyboard""]",2343.96,{},121576,1,South America +2024-08-16,83021,2915,"[""Tablet""]",3476.4,{},295796,1,Africa +2023-11-02,83022,8202,"[""Laptop""]",1977.25,"{""seasonal"": ""24%""}",71766,0,Asia +2023-10-11,83023,3944,"[""Laptop""]",436.09,{},277044,0,South America +2023-01-20,83024,2332,"[""Laptop"", ""Headphones"", ""Monitor""]",870.78,{},10698,0,Europe +2024-11-16,83025,5966,"[""Keyboard""]",610.82,{},134702,1,Africa +2024-05-13,83026,3944,"[""Tablet"", ""Monitor""]",1138.91,"{""loyalty"": ""11%""}",281989,1,Europe +2023-02-17,83027,6641,"[""Headphones"", ""Charger""]",4116.86,"{""loyalty"": ""14%""}",158184,0,North America +2023-03-27,83028,8408,"[""Laptop""]",4848.81,"{"""": ""7%""}",219014,0,Asia +2024-05-05,83029,5411,"[""Headphones"", ""Monitor""]",1107.94,"{""seasonal"": ""5%""}",263455,1,Asia +2024-06-14,83030,4147,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4599.09,{},61144,1,Asia +2023-11-09,83031,4477,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2495.03,{},90701,1,Asia +2023-01-31,83032,4711,"[""Keyboard""]",3347.86,{},262880,1,South America +2024-08-19,83033,7367,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1796.07,{},79688,0,Europe +2023-09-14,83034,4195,"[""Monitor"", ""Tablet"", ""Laptop""]",2584.5,{},18012,0,South America +2024-08-12,83035,1922,"[""Charger""]",2020.39,{},159764,1,South America +2023-05-13,83036,5469,"[""Keyboard"", ""Charger"", ""Laptop""]",479.3,{},26719,1,Asia +2024-12-10,83037,991,"[""Charger""]",1781.76,{},102470,0,Europe +2024-06-11,83038,6666,"[""Laptop""]",3717.64,{},13292,0,Asia +2024-05-12,83039,7745,"[""Monitor""]",3446.91,"{""promo"": ""30%""}",259249,1,Europe +2024-08-29,83040,5826,"[""Charger"", ""Phone""]",2231.46,{},110764,0,South America +2023-02-15,83041,1999,"[""Monitor"", ""Tablet"", ""Phone""]",2787.06,{},27083,1,South America +2023-01-28,83042,5346,"[""Tablet"", ""Charger"", ""Laptop""]",2106.79,{},179458,1,North America +2023-03-25,83043,1255,"[""Keyboard"", ""Monitor"", ""Headphones""]",1139.29,{},283070,0,Africa +2023-10-22,83044,2318,"[""Phone""]",2787.67,{},272140,1,North America +2024-12-06,83045,3666,"[""Keyboard""]",1737.3,{},78095,1,Africa +2024-11-06,83046,7784,"[""Headphones"", ""Monitor"", ""Laptop""]",2470.68,"{""seasonal"": ""8%""}",164886,0,Africa +2024-09-16,83047,7100,"[""Wireless Mouse""]",3210.03,"{""loyalty"": ""24%""}",95305,1,Africa +2024-01-31,83048,7679,"[""Headphones""]",2879.85,{},115741,0,South America +2024-11-25,83049,896,"[""Headphones""]",1605.9,{},79467,1,Asia +2024-07-22,83050,3304,"[""Headphones"", ""Tablet"", ""Monitor""]",1405.46,"{"""": ""25%""}",87167,1,North America +2024-07-15,83051,2473,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3770.37,{},153766,1,Asia +2023-09-28,83052,9968,"[""Keyboard""]",4399.13,"{""seasonal"": ""17%""}",249139,0,South America +2024-08-04,83053,5726,"[""Phone"", ""Laptop"", ""Headphones""]",3939.71,{},202135,1,South America +2023-11-11,83054,2008,"[""Phone"", ""Headphones""]",1694.49,{},292571,0,Africa +2024-04-28,83055,4805,"[""Tablet"", ""Laptop""]",1652.64,{},233006,1,North America +2024-08-10,83056,6777,"[""Charger"", ""Keyboard""]",1204.06,"{""loyalty"": ""8%""}",48485,1,Africa +2024-08-20,83057,6649,"[""Keyboard"", ""Phone"", ""Monitor""]",2670.13,{},171437,1,North America +2024-09-29,83058,526,"[""Keyboard"", ""Headphones"", ""Laptop""]",2407.8,{},8476,1,Europe +2024-02-13,83059,7669,"[""Keyboard""]",1625.53,{},105309,1,Europe +2023-02-01,83060,278,"[""Keyboard"", ""Wireless Mouse""]",3078.38,{},229599,1,North America +2023-06-26,83061,2163,"[""Wireless Mouse"", ""Phone"", ""Charger""]",584.68,"{""promo"": ""19%""}",200344,1,South America +2023-09-13,83062,9109,"[""Headphones"", ""Monitor""]",831.04,{},15687,0,Africa +2023-11-29,83063,6255,"[""Charger"", ""Monitor""]",2084.09,"{"""": ""21%""}",260010,1,South America +2023-02-20,83064,4955,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1929.12,"{"""": ""15%""}",227963,1,South America +2023-09-13,83065,2461,"[""Keyboard""]",4239.63,"{""promo"": ""19%""}",183163,0,Africa +2024-09-03,83066,1216,"[""Laptop"", ""Headphones""]",2144.67,"{""seasonal"": ""26%""}",128910,1,Asia +2024-02-20,83067,8874,"[""Monitor"", ""Keyboard"", ""Laptop""]",4205.91,"{""seasonal"": ""26%""}",263042,1,North America +2023-04-16,83068,5762,"[""Monitor"", ""Phone""]",1296.52,{},204383,0,Africa +2023-02-13,83069,6719,"[""Wireless Mouse""]",994.04,"{""loyalty"": ""20%""}",102412,1,Africa +2024-10-26,83070,2538,"[""Monitor"", ""Keyboard""]",1910.59,"{""promo"": ""10%""}",239114,0,South America +2023-04-25,83071,9205,"[""Laptop""]",4354.16,{},128189,0,Europe +2023-05-22,83072,919,"[""Monitor"", ""Headphones""]",2875.34,{},208868,1,Asia +2024-07-25,83073,9834,"[""Monitor"", ""Wireless Mouse""]",4671.4,{},195444,0,South America +2024-05-10,83074,6104,"[""Monitor""]",566.39,{},272359,0,Asia +2024-07-09,83075,7073,"[""Wireless Mouse""]",1369.83,"{""promo"": ""7%""}",251042,0,Europe +2023-11-02,83076,4308,"[""Headphones"", ""Wireless Mouse""]",3306.97,{},94212,0,South America +2023-03-12,83077,6644,"[""Wireless Mouse"", ""Charger""]",1854.97,{},281424,0,Asia +2023-01-19,83078,6275,"[""Wireless Mouse""]",2483.01,{},260963,0,North America +2024-06-26,83079,5293,"[""Tablet"", ""Headphones""]",1657.34,"{""seasonal"": ""8%""}",228283,0,Asia +2023-01-16,83080,3342,"[""Tablet"", ""Wireless Mouse""]",897.95,{},107557,0,Asia +2024-02-14,83081,1423,"[""Keyboard""]",1501.04,{},220773,1,North America +2024-10-06,83082,5967,"[""Monitor"", ""Laptop""]",1662.92,"{""loyalty"": ""18%""}",5817,1,South America +2023-02-14,83083,4871,"[""Keyboard"", ""Charger"", ""Headphones""]",567.12,{},245703,1,Africa +2023-12-18,83084,6306,"[""Laptop""]",784.56,{},278025,1,North America +2023-11-10,83085,4044,"[""Tablet""]",3911.46,"{""promo"": ""8%""}",144745,0,North America +2024-10-17,83086,3120,"[""Keyboard"", ""Phone""]",3155.81,{},200429,1,Asia +2024-08-10,83087,9071,"[""Headphones"", ""Tablet"", ""Phone""]",679.9,"{""loyalty"": ""18%""}",176532,0,South America +2024-09-22,83088,7627,"[""Tablet"", ""Wireless Mouse""]",2398.05,{},103454,0,South America +2024-03-26,83089,4742,"[""Phone"", ""Tablet""]",3734.06,"{""loyalty"": ""13%""}",118084,1,South America +2024-07-19,83090,9834,"[""Laptop""]",1862.36,{},266033,1,South America +2024-01-05,83091,5226,"[""Phone""]",1535.29,"{""seasonal"": ""7%""}",219383,0,South America +2024-03-12,83092,4680,"[""Keyboard"", ""Charger""]",3230.55,{},152945,1,Africa +2023-10-06,83093,3277,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1769.26,"{""loyalty"": ""9%""}",293226,1,Africa +2023-08-26,83094,4342,"[""Tablet"", ""Keyboard"", ""Charger""]",1958.02,"{""loyalty"": ""28%""}",13570,0,North America +2024-08-15,83095,3251,"[""Charger"", ""Headphones""]",2527.55,"{""loyalty"": ""13%""}",56767,1,North America +2024-07-22,83096,8862,"[""Tablet"", ""Charger""]",542.29,{},128851,1,North America +2023-09-01,83097,6990,"[""Wireless Mouse""]",4417.27,"{""loyalty"": ""6%""}",293565,1,Africa +2024-08-12,83098,5217,"[""Charger"", ""Phone""]",4478.7,{},188549,0,Europe +2024-01-25,83099,1098,"[""Tablet"", ""Phone""]",4813.91,"{""seasonal"": ""30%""}",180766,1,Africa +2024-05-20,83100,7003,"[""Wireless Mouse""]",4002.53,{},209038,1,Asia +2024-02-24,83101,8466,"[""Wireless Mouse""]",2125.0,"{""seasonal"": ""18%""}",282537,0,Europe +2023-07-02,83102,511,"[""Charger""]",4429.0,"{""loyalty"": ""30%""}",71927,1,Africa +2023-04-17,83103,8159,"[""Headphones"", ""Keyboard""]",2107.25,{},177463,1,North America +2024-06-22,83104,1449,"[""Charger"", ""Laptop"", ""Phone""]",176.99,"{""seasonal"": ""15%""}",220714,0,South America +2024-12-28,83105,9555,"[""Monitor""]",3800.73,{},264008,0,Europe +2024-01-12,83106,8801,"[""Keyboard"", ""Phone""]",4149.27,"{"""": ""29%""}",28948,0,Europe +2024-11-17,83107,6457,"[""Monitor""]",3448.9,"{"""": ""13%""}",251720,1,Europe +2023-09-20,83108,9251,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2090.13,"{""loyalty"": ""18%""}",141548,0,Africa +2023-12-24,83109,1620,"[""Keyboard"", ""Phone"", ""Headphones""]",212.76,{},253929,1,Asia +2024-07-06,83110,209,"[""Keyboard"", ""Phone""]",2484.87,"{""loyalty"": ""11%""}",50360,0,Africa +2024-02-08,83111,2698,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1575.26,{},210622,0,Asia +2023-12-16,83112,7152,"[""Laptop""]",3278.23,{},152967,1,South America +2024-02-23,83113,331,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",104.56,"{"""": ""29%""}",21725,0,Africa +2023-04-03,83114,3529,"[""Monitor""]",316.57,"{"""": ""30%""}",211286,1,South America +2024-05-23,83115,6181,"[""Charger"", ""Keyboard"", ""Monitor""]",4120.95,"{""seasonal"": ""11%""}",9043,0,Asia +2024-02-29,83116,987,"[""Tablet"", ""Wireless Mouse""]",4621.47,"{""seasonal"": ""21%""}",299823,0,South America +2023-03-11,83117,352,"[""Charger"", ""Headphones""]",3280.3,"{""promo"": ""12%""}",79512,1,South America +2024-12-22,83118,5049,"[""Keyboard""]",992.3,"{"""": ""26%""}",103962,0,Africa +2023-01-16,83119,5700,"[""Phone"", ""Charger"", ""Wireless Mouse""]",863.97,{},75197,1,Europe +2024-09-28,83120,8992,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4466.34,"{""promo"": ""9%""}",287310,1,Asia +2023-03-17,83121,7615,"[""Laptop""]",4625.62,"{""seasonal"": ""10%""}",105826,0,South America +2023-02-18,83122,9725,"[""Keyboard"", ""Wireless Mouse""]",2767.29,"{""promo"": ""27%""}",114883,1,Europe +2023-06-08,83123,3336,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",856.31,"{"""": ""19%""}",212031,1,North America +2023-03-14,83124,493,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4915.41,"{""seasonal"": ""25%""}",38960,1,North America +2024-02-04,83125,9869,"[""Phone"", ""Monitor"", ""Tablet""]",1319.7,"{""seasonal"": ""27%""}",104773,0,South America +2024-03-28,83126,7411,"[""Wireless Mouse"", ""Monitor""]",86.71,"{""seasonal"": ""20%""}",258278,0,South America +2023-06-09,83127,7493,"[""Tablet""]",2281.26,{},18534,1,Africa +2024-09-10,83128,6925,"[""Tablet"", ""Monitor""]",3924.41,{},206270,1,Asia +2023-09-15,83129,7978,"[""Charger"", ""Tablet"", ""Monitor""]",1529.43,"{""seasonal"": ""20%""}",76531,0,South America +2024-05-23,83130,4743,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2150.07,"{"""": ""7%""}",43440,0,South America +2023-02-12,83131,1847,"[""Charger"", ""Laptop"", ""Phone""]",1281.3,{},138854,1,South America +2024-03-20,83132,7332,"[""Laptop""]",952.2,"{""promo"": ""21%""}",99223,0,North America +2024-01-02,83133,9221,"[""Phone""]",3616.58,"{"""": ""28%""}",228689,0,Africa +2024-01-07,83134,6456,"[""Tablet""]",4294.68,{},121319,0,South America +2023-03-29,83135,9995,"[""Phone""]",1207.96,"{"""": ""13%""}",283249,0,Europe +2023-07-11,83136,8977,"[""Charger"", ""Keyboard""]",2576.17,{},178795,0,South America +2024-11-03,83137,4819,"[""Keyboard""]",2084.46,{},246657,0,Asia +2023-12-24,83138,5193,"[""Keyboard"", ""Tablet""]",3803.25,{},287057,1,North America +2024-09-11,83139,432,"[""Phone"", ""Charger""]",2917.55,"{""loyalty"": ""8%""}",232409,0,North America +2023-12-27,83140,9792,"[""Keyboard""]",4513.48,"{""seasonal"": ""9%""}",230230,0,Asia +2023-12-15,83141,10000,"[""Wireless Mouse""]",1731.24,"{"""": ""27%""}",152074,0,Asia +2023-09-09,83142,3958,"[""Charger"", ""Headphones""]",1631.02,"{""loyalty"": ""18%""}",288900,0,South America +2023-05-22,83143,1610,"[""Keyboard"", ""Wireless Mouse""]",3758.37,{},85837,0,Africa +2024-07-10,83144,7744,"[""Monitor"", ""Wireless Mouse""]",799.67,"{"""": ""9%""}",118902,1,Europe +2024-10-31,83145,8634,"[""Wireless Mouse""]",976.54,"{""promo"": ""27%""}",13375,0,South America +2023-02-01,83146,3888,"[""Keyboard"", ""Phone""]",1199.52,"{""promo"": ""18%""}",274146,0,Africa +2024-08-20,83147,1617,"[""Headphones"", ""Monitor""]",1247.65,"{"""": ""30%""}",19448,0,Asia +2023-06-14,83148,9369,"[""Laptop""]",2822.41,{},128300,0,Asia +2023-12-22,83149,7509,"[""Wireless Mouse"", ""Phone""]",2337.99,"{""promo"": ""6%""}",240615,0,South America +2024-04-22,83150,6088,"[""Keyboard"", ""Charger""]",3686.56,{},171684,0,Europe +2024-03-23,83151,773,"[""Monitor"", ""Laptop""]",1872.33,"{"""": ""14%""}",261974,1,South America +2023-02-13,83152,6337,"[""Wireless Mouse""]",1929.42,{},193053,0,Europe +2024-03-26,83153,8481,"[""Laptop""]",2428.05,"{"""": ""17%""}",266927,0,Africa +2024-01-24,83154,5480,"[""Wireless Mouse""]",770.68,"{"""": ""15%""}",119229,0,Europe +2023-09-12,83155,6485,"[""Headphones""]",550.08,{},143542,0,Europe +2023-08-10,83156,4774,"[""Charger""]",2356.06,{},3341,0,Asia +2024-06-29,83157,4956,"[""Charger"", ""Laptop""]",793.48,"{""promo"": ""5%""}",13245,0,Asia +2023-03-14,83158,4150,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1328.14,"{""loyalty"": ""27%""}",252116,0,North America +2023-07-20,83159,9323,"[""Phone"", ""Monitor"", ""Laptop""]",3698.41,{},1747,1,North America +2023-12-12,83160,1144,"[""Wireless Mouse""]",4505.54,{},43903,1,Asia +2023-01-02,83161,8700,"[""Tablet"", ""Keyboard"", ""Headphones""]",2898.34,{},294888,1,Asia +2024-06-23,83162,2735,"[""Charger"", ""Laptop""]",81.16,{},131088,1,South America +2023-03-09,83163,1414,"[""Headphones"", ""Monitor""]",2306.51,"{""promo"": ""18%""}",128024,0,South America +2024-12-23,83164,6307,"[""Laptop""]",1453.11,{},267979,0,Africa +2024-04-15,83165,480,"[""Monitor"", ""Laptop""]",4061.89,{},262242,1,North America +2024-09-15,83166,8042,"[""Laptop""]",2100.06,"{""loyalty"": ""8%""}",110172,1,South America +2023-07-28,83167,8580,"[""Phone""]",4477.66,"{"""": ""25%""}",262352,1,South America +2024-02-10,83168,8214,"[""Headphones""]",2730.2,{},285251,1,Africa +2023-07-09,83169,5192,"[""Keyboard""]",773.41,"{""promo"": ""12%""}",294783,0,North America +2024-03-17,83170,9121,"[""Wireless Mouse""]",1601.29,{},258780,1,Asia +2024-06-16,83171,2881,"[""Keyboard"", ""Phone"", ""Charger""]",3194.01,"{""promo"": ""24%""}",113051,1,Asia +2023-04-08,83172,7450,"[""Charger""]",3583.13,{},99722,0,Africa +2023-11-02,83173,197,"[""Monitor""]",1626.18,{},131109,1,North America +2024-06-24,83174,8723,"[""Headphones"", ""Charger"", ""Monitor""]",3371.66,{},168510,0,Europe +2023-05-23,83175,421,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2067.16,{},28657,1,Africa +2023-05-19,83176,1903,"[""Monitor"", ""Charger""]",3850.57,{},250073,0,South America +2024-12-04,83177,6418,"[""Headphones"", ""Monitor""]",372.54,"{""loyalty"": ""5%""}",289543,1,Asia +2024-10-10,83178,5765,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1436.99,"{"""": ""16%""}",232324,0,North America +2024-12-09,83179,4057,"[""Headphones""]",4774.89,"{""loyalty"": ""16%""}",264581,0,Africa +2023-10-03,83180,8273,"[""Charger"", ""Headphones""]",1189.23,"{"""": ""26%""}",186829,0,North America +2023-09-10,83181,3574,"[""Headphones"", ""Monitor""]",3897.23,"{""loyalty"": ""24%""}",298685,0,Asia +2023-10-16,83182,4337,"[""Charger""]",1731.95,"{""promo"": ""7%""}",67171,0,Europe +2023-07-02,83183,254,"[""Monitor"", ""Laptop""]",3338.08,{},299571,1,Asia +2024-06-05,83184,7165,"[""Tablet"", ""Headphones"", ""Keyboard""]",3670.13,{},284761,1,South America +2024-08-09,83185,1255,"[""Phone""]",4754.94,{},253214,0,Africa +2023-05-03,83186,7131,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1483.03,"{""seasonal"": ""13%""}",150112,1,Asia +2023-01-22,83187,2291,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3052.37,"{""seasonal"": ""29%""}",112720,1,South America +2024-11-26,83188,4367,"[""Tablet""]",3524.25,"{""seasonal"": ""17%""}",262386,1,South America +2023-07-22,83189,7047,"[""Keyboard"", ""Headphones""]",2286.44,{},107218,0,Africa +2024-01-20,83190,855,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",237.27,"{""loyalty"": ""30%""}",65268,1,South America +2024-04-28,83191,4403,"[""Monitor""]",1556.18,{},239466,1,Asia +2023-06-07,83192,8626,"[""Headphones""]",1868.76,"{""seasonal"": ""5%""}",124604,1,North America +2023-08-06,83193,1120,"[""Tablet"", ""Headphones"", ""Laptop""]",3425.17,{},138020,1,North America +2023-02-24,83194,6037,"[""Wireless Mouse""]",1383.73,"{"""": ""11%""}",93784,0,South America +2023-12-06,83195,5948,"[""Charger""]",3145.0,"{""seasonal"": ""16%""}",59938,1,North America +2023-02-04,83196,1524,"[""Charger""]",2221.64,"{""seasonal"": ""12%""}",187800,0,Europe +2023-02-19,83197,5996,"[""Tablet"", ""Laptop""]",2894.86,{},159359,1,Asia +2023-03-20,83198,4420,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3696.14,"{""promo"": ""5%""}",36406,0,South America +2024-08-11,83199,6859,"[""Keyboard"", ""Laptop""]",1066.08,"{""loyalty"": ""26%""}",11929,0,Asia +2023-09-21,83200,390,"[""Laptop"", ""Tablet""]",267.16,{},126763,0,Asia +2023-09-21,83201,5992,"[""Phone"", ""Charger""]",1251.43,{},182261,1,North America +2023-04-22,83202,8822,"[""Monitor""]",4506.57,{},208023,1,South America +2024-07-10,83203,6325,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2371.32,{},243802,0,North America +2023-04-21,83204,9,"[""Monitor""]",4355.22,{},13491,0,North America +2023-12-20,83205,1101,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1361.91,{},296074,1,South America +2023-10-12,83206,6716,"[""Tablet"", ""Keyboard"", ""Laptop""]",3304.42,"{"""": ""30%""}",166283,1,North America +2023-07-27,83207,4045,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1336.12,"{""promo"": ""13%""}",125130,0,North America +2023-03-21,83208,2551,"[""Charger"", ""Headphones"", ""Keyboard""]",4973.82,"{""loyalty"": ""17%""}",78921,0,Asia +2024-10-19,83209,5672,"[""Phone"", ""Laptop""]",706.09,"{""loyalty"": ""20%""}",49012,0,South America +2024-07-23,83210,129,"[""Monitor"", ""Wireless Mouse""]",3109.25,"{""seasonal"": ""7%""}",169863,0,South America +2023-01-16,83211,6091,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2469.65,"{""seasonal"": ""5%""}",217484,1,Europe +2023-10-20,83212,9488,"[""Laptop""]",3181.3,{},105034,1,South America +2024-06-21,83213,1431,"[""Tablet"", ""Charger""]",243.72,"{""promo"": ""11%""}",51718,0,North America +2024-10-09,83214,2675,"[""Keyboard"", ""Monitor"", ""Charger""]",1749.4,{},195263,1,Europe +2023-09-06,83215,5841,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2086.31,{},264660,0,Africa +2023-03-18,83216,2941,"[""Laptop"", ""Phone""]",2354.46,"{""promo"": ""25%""}",152367,0,North America +2023-03-06,83217,727,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",834.6,"{""seasonal"": ""23%""}",170771,0,Europe +2024-08-02,83218,8650,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1921.09,{},72938,0,Europe +2023-11-21,83219,1872,"[""Wireless Mouse""]",387.12,{},173758,1,South America +2024-08-12,83220,7006,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",535.63,"{""loyalty"": ""6%""}",265661,0,Europe +2024-11-22,83221,4722,"[""Headphones"", ""Wireless Mouse""]",3561.82,{},171437,0,North America +2023-08-25,83222,9920,"[""Tablet"", ""Phone"", ""Keyboard""]",4869.27,"{""seasonal"": ""6%""}",15274,0,South America +2023-08-15,83223,7563,"[""Charger"", ""Tablet"", ""Laptop""]",3598.47,"{""promo"": ""20%""}",131404,1,North America +2024-06-09,83224,7362,"[""Tablet"", ""Keyboard""]",4992.71,"{""promo"": ""17%""}",1285,0,Europe +2024-07-04,83225,7078,"[""Monitor""]",3018.14,{},13304,0,North America +2024-04-24,83226,5298,"[""Keyboard"", ""Charger""]",636.61,{},41096,0,Africa +2023-08-20,83227,3779,"[""Phone"", ""Tablet""]",3044.95,{},215763,0,North America +2023-01-31,83228,7846,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2182.27,"{""loyalty"": ""23%""}",268457,1,South America +2023-05-29,83229,7696,"[""Headphones"", ""Monitor"", ""Keyboard""]",3419.94,"{"""": ""17%""}",60720,0,North America +2024-04-17,83230,4297,"[""Wireless Mouse"", ""Laptop""]",278.95,"{""loyalty"": ""19%""}",107602,1,Europe +2023-09-24,83231,8423,"[""Phone"", ""Keyboard"", ""Monitor""]",745.81,"{"""": ""19%""}",282835,1,Europe +2023-01-26,83232,6059,"[""Tablet""]",1947.27,"{""promo"": ""11%""}",227325,0,North America +2024-02-28,83233,4110,"[""Phone"", ""Keyboard"", ""Headphones""]",132.82,"{"""": ""14%""}",245024,1,Europe +2023-01-22,83234,2967,"[""Monitor"", ""Keyboard""]",2237.47,{},89168,1,South America +2024-04-30,83235,2362,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3994.1,"{""seasonal"": ""27%""}",120984,0,Asia +2024-12-09,83236,6773,"[""Tablet""]",2303.88,"{""loyalty"": ""15%""}",138275,1,Europe +2023-11-30,83237,1998,"[""Headphones"", ""Monitor"", ""Charger""]",4755.67,{},290570,0,South America +2023-01-13,83238,1397,"[""Keyboard"", ""Charger"", ""Phone""]",3736.88,"{""loyalty"": ""20%""}",79249,0,Europe +2024-05-27,83239,2927,"[""Charger"", ""Monitor""]",2274.14,"{""promo"": ""15%""}",265730,0,North America +2024-05-10,83240,1538,"[""Laptop"", ""Headphones"", ""Phone""]",4118.55,"{""loyalty"": ""23%""}",250997,0,Europe +2023-10-22,83241,5391,"[""Keyboard""]",75.46,"{""loyalty"": ""20%""}",240674,1,South America +2023-06-11,83242,1975,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2005.28,"{""seasonal"": ""14%""}",111048,1,South America +2023-07-30,83243,2885,"[""Wireless Mouse""]",3090.02,{},35039,1,North America +2023-07-21,83244,3765,"[""Tablet""]",1394.49,{},97010,0,Africa +2023-04-28,83245,2482,"[""Monitor"", ""Phone"", ""Laptop""]",3704.56,"{""seasonal"": ""21%""}",230355,0,Europe +2024-11-12,83246,9528,"[""Phone"", ""Monitor"", ""Charger""]",4153.22,{},74471,1,South America +2024-07-02,83247,9570,"[""Charger"", ""Wireless Mouse""]",2155.54,{},238534,1,South America +2024-01-19,83248,2891,"[""Wireless Mouse"", ""Laptop""]",2258.83,"{""loyalty"": ""26%""}",11820,0,Asia +2024-06-10,83249,6941,"[""Monitor""]",3994.47,{},22735,1,Asia +2024-08-28,83250,7606,"[""Charger"", ""Monitor""]",3625.6,"{""promo"": ""25%""}",36546,1,Asia +2024-04-25,83251,409,"[""Wireless Mouse""]",4180.39,{},291399,0,Europe +2023-05-29,83252,5626,"[""Laptop""]",1399.7,{},199363,1,Africa +2024-06-30,83253,9143,"[""Phone"", ""Headphones"", ""Monitor""]",4759.71,"{""seasonal"": ""25%""}",237847,0,Africa +2023-09-18,83254,1499,"[""Charger"", ""Monitor""]",2819.61,{},230980,0,Europe +2023-08-22,83255,9535,"[""Monitor"", ""Wireless Mouse""]",865.19,"{""loyalty"": ""30%""}",155368,1,Africa +2024-04-22,83256,8165,"[""Phone"", ""Laptop"", ""Charger""]",780.78,"{"""": ""22%""}",288552,1,Asia +2023-09-03,83257,2091,"[""Monitor""]",1495.82,"{""promo"": ""16%""}",287294,0,Europe +2023-07-13,83258,5816,"[""Tablet""]",2057.01,"{"""": ""14%""}",294564,0,Africa +2024-11-19,83259,7683,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4574.54,{},71298,1,Africa +2023-04-06,83260,33,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2473.03,"{""seasonal"": ""19%""}",81356,1,North America +2024-12-30,83261,3209,"[""Keyboard"", ""Headphones""]",1299.86,{},240620,1,Africa +2023-05-31,83262,396,"[""Laptop"", ""Headphones""]",3927.54,"{""seasonal"": ""26%""}",108127,1,Africa +2024-09-19,83263,2719,"[""Laptop""]",1941.5,"{""promo"": ""23%""}",80397,0,South America +2024-05-31,83264,2850,"[""Laptop"", ""Headphones"", ""Phone""]",1910.84,{},159167,1,Asia +2024-05-24,83265,4186,"[""Wireless Mouse"", ""Headphones""]",1093.43,"{"""": ""29%""}",150872,0,South America +2024-03-04,83266,3706,"[""Charger"", ""Laptop"", ""Keyboard""]",4743.8,"{"""": ""18%""}",252170,1,Asia +2023-04-11,83267,1341,"[""Tablet"", ""Monitor"", ""Laptop""]",4675.48,"{""seasonal"": ""6%""}",14650,1,Europe +2023-10-29,83268,9402,"[""Keyboard"", ""Monitor"", ""Tablet""]",4155.19,{},237323,1,Europe +2023-04-06,83269,5347,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4613.96,{},150159,1,Europe +2024-06-29,83270,7867,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4551.94,{},1483,1,Asia +2023-12-27,83271,2126,"[""Monitor"", ""Phone""]",443.84,"{"""": ""6%""}",283643,1,Europe +2023-07-10,83272,1260,"[""Tablet"", ""Charger""]",686.95,"{""loyalty"": ""25%""}",147455,1,Asia +2023-10-27,83273,1947,"[""Charger"", ""Keyboard"", ""Phone""]",51.27,{},68495,1,Europe +2023-12-04,83274,2044,"[""Phone""]",4527.02,"{""seasonal"": ""26%""}",178787,0,Asia +2024-06-01,83275,8649,"[""Tablet"", ""Laptop"", ""Phone""]",2154.52,"{""loyalty"": ""22%""}",77820,1,North America +2024-04-13,83276,5862,"[""Tablet"", ""Wireless Mouse""]",2105.62,{},24813,1,Asia +2023-09-05,83277,9628,"[""Tablet"", ""Charger"", ""Phone""]",1790.75,"{"""": ""24%""}",59636,0,Europe +2023-06-11,83278,5780,"[""Laptop""]",1563.91,{},87065,0,North America +2024-04-26,83279,6565,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",3297.54,"{""promo"": ""23%""}",255919,1,North America +2023-04-03,83280,2028,"[""Tablet"", ""Headphones"", ""Charger""]",284.21,"{""promo"": ""26%""}",136395,0,Africa +2024-04-28,83281,8466,"[""Tablet"", ""Phone""]",707.21,"{""seasonal"": ""9%""}",45746,0,Africa +2024-04-25,83282,1315,"[""Phone"", ""Charger"", ""Laptop""]",3453.27,"{""promo"": ""22%""}",144316,0,North America +2023-03-03,83283,6920,"[""Charger"", ""Monitor""]",3412.73,"{"""": ""7%""}",141794,1,Europe +2024-02-21,83284,2441,"[""Keyboard"", ""Headphones""]",4553.77,{},268354,0,North America +2024-10-13,83285,4974,"[""Laptop"", ""Monitor"", ""Headphones""]",4192.99,{},25204,0,Europe +2023-08-16,83286,3080,"[""Phone"", ""Laptop""]",640.7,"{""loyalty"": ""15%""}",129405,0,South America +2023-03-08,83287,6897,"[""Wireless Mouse""]",660.47,"{""seasonal"": ""29%""}",276791,0,Africa +2023-01-26,83288,593,"[""Charger"", ""Laptop""]",1204.07,"{""loyalty"": ""20%""}",25661,0,Africa +2024-06-04,83289,7433,"[""Charger"", ""Tablet""]",4785.84,{},267694,1,South America +2024-01-17,83290,6872,"[""Phone"", ""Tablet""]",2268.45,"{""loyalty"": ""10%""}",256501,0,Asia +2024-09-25,83291,3743,"[""Wireless Mouse"", ""Laptop""]",2189.16,"{""loyalty"": ""9%""}",150811,0,Africa +2023-04-08,83292,2702,"[""Wireless Mouse""]",2960.69,{},263102,0,South America +2023-05-19,83293,8888,"[""Headphones"", ""Wireless Mouse""]",2009.29,"{""promo"": ""29%""}",244065,0,Asia +2023-03-21,83294,770,"[""Phone"", ""Monitor"", ""Laptop""]",2019.92,{},35239,0,South America +2024-07-12,83295,7433,"[""Charger""]",3114.9,{},197170,0,North America +2023-05-06,83296,5204,"[""Charger"", ""Monitor""]",4174.76,{},90416,1,Asia +2024-02-13,83297,2617,"[""Monitor"", ""Tablet"", ""Phone""]",2642.92,"{""seasonal"": ""23%""}",126677,0,Africa +2023-02-09,83298,7479,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3594.4,{},83928,0,Europe +2023-01-02,83299,2571,"[""Tablet""]",2896.09,{},72538,1,Europe +2024-10-10,83300,6329,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3778.87,{},167167,0,South America +2023-07-07,83301,5474,"[""Tablet"", ""Keyboard""]",1576.66,"{""promo"": ""28%""}",252715,1,South America +2024-03-07,83302,3153,"[""Monitor"", ""Charger"", ""Laptop""]",1418.94,{},122375,1,Europe +2023-05-12,83303,9306,"[""Wireless Mouse"", ""Keyboard""]",4539.34,{},220094,0,North America +2023-01-01,83304,3373,"[""Tablet"", ""Keyboard""]",1733.31,{},118817,1,Africa +2023-12-30,83305,518,"[""Wireless Mouse"", ""Laptop""]",3024.74,"{""promo"": ""19%""}",125904,0,Asia +2024-06-09,83306,466,"[""Headphones""]",916.31,"{"""": ""20%""}",16647,1,Africa +2024-05-05,83307,7507,"[""Wireless Mouse""]",3870.07,"{""promo"": ""18%""}",70582,0,South America +2024-05-25,83308,343,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1745.97,"{""loyalty"": ""22%""}",235674,1,Europe +2023-04-13,83309,1656,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",3096.4,{},20188,0,North America +2023-09-21,83310,3640,"[""Charger"", ""Headphones"", ""Laptop""]",1804.91,{},149225,1,South America +2024-09-20,83311,7626,"[""Laptop"", ""Keyboard""]",4185.62,"{""promo"": ""5%""}",96607,0,Asia +2023-12-31,83312,1184,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3843.72,"{""seasonal"": ""23%""}",195091,0,Asia +2023-02-24,83313,9016,"[""Keyboard"", ""Wireless Mouse""]",4519.83,"{""promo"": ""29%""}",172565,0,Africa +2024-03-24,83314,433,"[""Tablet"", ""Phone""]",2180.52,"{""loyalty"": ""30%""}",32612,0,Asia +2024-12-22,83315,944,"[""Monitor""]",3418.67,"{""loyalty"": ""11%""}",55265,0,Asia +2023-02-12,83316,9746,"[""Charger""]",2790.62,{},197562,0,Asia +2023-05-18,83317,5845,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",1094.2,"{""seasonal"": ""13%""}",112122,1,Asia +2023-11-06,83318,2158,"[""Keyboard"", ""Charger"", ""Monitor""]",2761.75,{},266216,1,South America +2024-10-13,83319,7987,"[""Charger"", ""Laptop""]",2212.43,{},3509,0,Asia +2023-12-19,83320,5934,"[""Keyboard""]",3617.97,{},200845,1,North America +2024-07-12,83321,4134,"[""Tablet""]",2524.0,{},283726,1,Africa +2024-11-21,83322,8707,"[""Phone"", ""Keyboard""]",4142.82,{},293828,1,Africa +2024-01-28,83323,8005,"[""Wireless Mouse""]",469.92,"{""loyalty"": ""26%""}",256097,0,Asia +2023-12-30,83324,9940,"[""Phone"", ""Laptop""]",258.91,{},108054,0,Africa +2024-09-12,83325,4120,"[""Monitor"", ""Charger"", ""Keyboard""]",3524.26,"{""loyalty"": ""5%""}",5360,0,North America +2023-01-08,83326,9369,"[""Wireless Mouse"", ""Phone""]",62.03,"{""seasonal"": ""22%""}",9207,1,Asia +2023-07-30,83327,5801,"[""Monitor""]",2830.88,{},178421,1,South America +2024-06-30,83328,7899,"[""Laptop"", ""Monitor"", ""Phone""]",237.62,{},284525,0,Europe +2023-06-05,83329,3429,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1313.49,"{""seasonal"": ""20%""}",205730,0,South America +2023-11-16,83330,5346,"[""Keyboard"", ""Phone""]",4059.88,"{"""": ""6%""}",104824,1,South America +2023-08-02,83331,1613,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",896.91,{},247220,1,North America +2023-09-26,83332,8626,"[""Monitor""]",4918.82,{},89432,0,Europe +2024-10-07,83333,2188,"[""Tablet"", ""Laptop""]",2382.6,"{"""": ""6%""}",227734,1,Asia +2023-01-25,83334,1226,"[""Laptop"", ""Keyboard""]",4444.74,"{""loyalty"": ""7%""}",277306,0,Europe +2024-07-19,83335,7719,"[""Headphones"", ""Wireless Mouse""]",3453.71,"{"""": ""8%""}",4003,1,Africa +2023-04-25,83336,9455,"[""Tablet"", ""Monitor"", ""Keyboard""]",3368.95,"{""promo"": ""22%""}",73336,1,Africa +2024-09-01,83337,6629,"[""Keyboard""]",371.06,{},114881,1,Africa +2023-01-11,83338,2468,"[""Laptop"", ""Monitor"", ""Phone""]",3764.09,{},287116,0,Asia +2023-11-26,83339,298,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1945.38,"{"""": ""7%""}",48594,0,Europe +2023-11-15,83340,3422,"[""Laptop""]",1156.69,"{"""": ""12%""}",99097,0,Asia +2024-05-24,83341,8883,"[""Laptop"", ""Phone"", ""Tablet""]",1083.04,{},41132,0,Africa +2024-02-17,83342,285,"[""Tablet""]",3096.33,"{""loyalty"": ""26%""}",143141,1,South America +2024-04-28,83343,1955,"[""Laptop"", ""Monitor"", ""Headphones""]",1466.08,"{"""": ""17%""}",70092,1,Asia +2024-04-21,83344,8597,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4488.45,"{""seasonal"": ""10%""}",88314,1,South America +2024-04-03,83345,7582,"[""Headphones""]",4664.61,"{""promo"": ""17%""}",272744,1,North America +2023-05-23,83346,2678,"[""Charger""]",4935.43,{},288926,0,North America +2023-01-30,83347,5785,"[""Phone"", ""Monitor""]",322.83,{},286715,0,South America +2024-01-09,83348,2941,"[""Headphones"", ""Wireless Mouse""]",4474.79,"{""loyalty"": ""30%""}",1629,0,South America +2023-02-14,83349,2926,"[""Charger"", ""Laptop"", ""Keyboard""]",786.46,"{"""": ""21%""}",29973,1,Asia +2024-12-22,83350,6962,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1462.92,{},40648,0,South America +2024-02-17,83351,630,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3294.91,{},257176,1,South America +2024-05-05,83352,8001,"[""Wireless Mouse""]",2647.23,{},206201,1,North America +2024-09-19,83353,4992,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1718.46,"{""seasonal"": ""22%""}",223430,0,Europe +2023-10-26,83354,792,"[""Headphones"", ""Keyboard""]",3337.64,{},75374,0,North America +2024-09-13,83355,7467,"[""Laptop""]",1822.47,"{""seasonal"": ""17%""}",67487,0,Asia +2024-06-16,83356,2927,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",262.42,"{""loyalty"": ""7%""}",265514,0,Africa +2024-01-20,83357,4538,"[""Headphones""]",3568.94,"{"""": ""23%""}",275379,1,North America +2023-09-22,83358,1541,"[""Wireless Mouse"", ""Headphones""]",1011.81,{},145059,0,Asia +2023-05-01,83359,6010,"[""Headphones"", ""Monitor"", ""Phone""]",2707.51,"{"""": ""22%""}",279464,0,Europe +2023-10-09,83360,9935,"[""Phone"", ""Keyboard"", ""Tablet""]",4198.89,{},146755,0,Europe +2024-05-20,83361,5454,"[""Laptop""]",4995.17,"{""seasonal"": ""15%""}",188311,0,Asia +2023-04-29,83362,5531,"[""Wireless Mouse"", ""Headphones""]",3751.06,"{""promo"": ""21%""}",198645,0,Europe +2023-09-08,83363,1492,"[""Tablet""]",3204.09,"{""seasonal"": ""29%""}",18731,1,Africa +2023-04-22,83364,339,"[""Laptop""]",4053.59,"{""seasonal"": ""11%""}",43843,0,Asia +2023-06-20,83365,8438,"[""Monitor"", ""Wireless Mouse""]",243.02,{},88314,1,South America +2023-01-21,83366,7414,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1937.55,{},129823,0,South America +2023-07-04,83367,8183,"[""Laptop""]",1392.27,"{""promo"": ""5%""}",43862,0,Europe +2023-03-14,83368,2647,"[""Charger"", ""Laptop""]",2658.19,{},202508,1,Europe +2023-07-28,83369,5290,"[""Charger"", ""Phone""]",1475.44,"{""seasonal"": ""12%""}",36075,0,South America +2023-07-30,83370,5313,"[""Tablet""]",1614.46,{},140631,0,Asia +2024-06-05,83371,4884,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1167.35,{},112148,1,Asia +2024-09-30,83372,7449,"[""Phone"", ""Monitor"", ""Charger""]",1165.06,{},224468,1,North America +2024-11-29,83373,2767,"[""Headphones"", ""Phone"", ""Tablet""]",1195.04,"{""loyalty"": ""19%""}",120165,1,Africa +2024-12-17,83374,9909,"[""Monitor"", ""Tablet"", ""Laptop""]",2874.73,"{""seasonal"": ""14%""}",195377,0,Africa +2024-09-23,83375,8271,"[""Wireless Mouse"", ""Charger""]",2282.95,{},210044,0,South America +2024-12-11,83376,2219,"[""Phone"", ""Laptop""]",1584.02,{},198254,1,Africa +2024-07-22,83377,267,"[""Headphones""]",2545.9,"{""seasonal"": ""13%""}",199020,0,Europe +2023-03-06,83378,6162,"[""Phone"", ""Charger""]",3907.63,"{"""": ""24%""}",197628,0,North America +2024-11-30,83379,1914,"[""Laptop"", ""Headphones""]",2812.97,"{"""": ""21%""}",73655,0,Europe +2024-06-22,83380,3566,"[""Laptop"", ""Monitor"", ""Phone""]",793.06,"{""loyalty"": ""21%""}",206890,1,Europe +2024-12-26,83381,5674,"[""Monitor"", ""Phone""]",2523.42,"{""seasonal"": ""10%""}",144007,0,Africa +2023-11-03,83382,4211,"[""Phone""]",1615.48,{},119312,0,South America +2023-03-03,83383,881,"[""Phone""]",92.7,{},125886,0,Asia +2024-07-04,83384,6191,"[""Phone"", ""Laptop"", ""Headphones""]",2976.5,"{""loyalty"": ""28%""}",279154,1,South America +2024-01-25,83385,8987,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",469.48,"{""promo"": ""24%""}",97362,1,Europe +2024-04-19,83386,2466,"[""Phone""]",1893.38,"{""loyalty"": ""9%""}",188676,0,North America +2023-11-06,83387,5074,"[""Tablet"", ""Keyboard""]",4626.2,"{""loyalty"": ""20%""}",235744,0,North America +2023-07-15,83388,8456,"[""Phone""]",4350.39,"{"""": ""19%""}",221625,1,South America +2024-03-22,83389,7016,"[""Laptop"", ""Tablet""]",1676.79,"{""loyalty"": ""30%""}",183152,1,Europe +2023-07-29,83390,5237,"[""Charger"", ""Laptop"", ""Headphones""]",778.91,{},192172,1,Europe +2024-06-30,83391,7485,"[""Tablet"", ""Keyboard"", ""Charger""]",796.1,"{""seasonal"": ""17%""}",183851,0,Africa +2023-08-19,83392,9970,"[""Monitor"", ""Laptop"", ""Headphones""]",4441.03,{},183044,0,Africa +2024-01-23,83393,6946,"[""Headphones"", ""Laptop""]",903.96,"{""seasonal"": ""5%""}",132536,0,North America +2024-09-04,83394,7187,"[""Headphones"", ""Tablet"", ""Phone""]",2305.16,"{""loyalty"": ""20%""}",252507,1,Asia +2024-10-28,83395,2458,"[""Charger""]",4525.3,"{"""": ""18%""}",83635,1,Asia +2023-08-08,83396,8364,"[""Laptop""]",4082.65,"{"""": ""9%""}",37537,1,Europe +2024-04-03,83397,6264,"[""Laptop"", ""Headphones""]",3832.96,{},129175,1,Europe +2024-07-13,83398,432,"[""Keyboard"", ""Headphones"", ""Monitor""]",2453.22,{},94730,0,South America +2024-09-30,83399,3521,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1824.63,{},106299,1,South America +2023-01-30,83400,8275,"[""Laptop"", ""Tablet""]",2457.91,{},203009,0,North America +2024-08-28,83401,6678,"[""Keyboard"", ""Charger"", ""Laptop""]",3304.3,"{"""": ""5%""}",277354,1,North America +2024-11-18,83402,9118,"[""Phone"", ""Charger"", ""Keyboard""]",1346.4,"{"""": ""26%""}",84720,0,Africa +2024-09-25,83403,4252,"[""Phone"", ""Tablet""]",1033.14,{},130442,1,South America +2023-02-20,83404,2631,"[""Laptop"", ""Monitor"", ""Headphones""]",1331.49,"{""loyalty"": ""14%""}",62959,0,Europe +2024-11-08,83405,415,"[""Tablet"", ""Headphones"", ""Charger""]",1926.35,"{""loyalty"": ""9%""}",14070,0,Europe +2023-11-14,83406,1326,"[""Monitor""]",2561.73,{},96664,0,South America +2023-05-14,83407,3770,"[""Tablet"", ""Phone""]",4221.94,"{"""": ""21%""}",52748,1,Africa +2023-01-22,83408,687,"[""Keyboard"", ""Headphones"", ""Charger""]",3574.74,"{"""": ""6%""}",236607,1,South America +2023-11-05,83409,5897,"[""Laptop"", ""Wireless Mouse""]",3443.67,"{""seasonal"": ""18%""}",162177,1,Asia +2024-03-09,83410,1887,"[""Headphones"", ""Keyboard"", ""Laptop""]",4958.6,{},206896,0,South America +2023-07-26,83411,3919,"[""Wireless Mouse"", ""Monitor""]",1146.25,"{""seasonal"": ""24%""}",281116,0,North America +2023-04-13,83412,5883,"[""Keyboard""]",1621.0,"{"""": ""10%""}",176979,1,North America +2024-09-01,83413,88,"[""Charger""]",54.8,{},271775,1,Africa +2023-06-13,83414,7300,"[""Keyboard"", ""Charger"", ""Laptop""]",313.73,"{""seasonal"": ""11%""}",46151,1,South America +2023-04-23,83415,1632,"[""Headphones""]",1964.52,"{""promo"": ""20%""}",273901,0,North America +2023-08-19,83416,4428,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4928.59,{},185797,1,South America +2023-05-27,83417,8741,"[""Laptop"", ""Headphones""]",112.73,"{""promo"": ""8%""}",249587,1,Asia +2024-12-15,83418,6974,"[""Phone""]",905.24,"{""seasonal"": ""13%""}",221987,0,Africa +2023-05-31,83419,784,"[""Phone""]",236.22,{},97622,1,Africa +2024-02-08,83420,7819,"[""Charger"", ""Monitor"", ""Phone""]",4126.93,"{""promo"": ""15%""}",158781,1,North America +2024-03-02,83421,5777,"[""Charger"", ""Wireless Mouse""]",1939.71,{},175092,0,Asia +2023-11-22,83422,8001,"[""Tablet"", ""Keyboard""]",2569.66,"{"""": ""15%""}",157334,0,Europe +2023-08-07,83423,4514,"[""Tablet"", ""Monitor""]",2359.89,"{""loyalty"": ""24%""}",244278,0,South America +2023-07-14,83424,3994,"[""Charger"", ""Phone"", ""Laptop""]",2707.96,"{""loyalty"": ""5%""}",94273,1,Asia +2023-01-02,83425,4704,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4688.8,"{"""": ""16%""}",156522,1,Africa +2023-08-08,83426,5664,"[""Tablet"", ""Laptop""]",272.99,"{"""": ""7%""}",33857,1,Europe +2023-07-31,83427,3307,"[""Tablet"", ""Monitor""]",4385.99,{},124574,0,Europe +2024-08-30,83428,2236,"[""Headphones"", ""Monitor"", ""Keyboard""]",1906.9,{},119930,1,Africa +2023-07-24,83429,5187,"[""Monitor""]",71.66,"{"""": ""12%""}",22970,0,Europe +2023-07-12,83430,8978,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3519.09,{},47043,1,South America +2023-03-31,83431,7104,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3542.66,"{"""": ""19%""}",203767,1,Africa +2024-08-15,83432,6269,"[""Laptop"", ""Charger""]",1102.39,"{"""": ""16%""}",85629,0,Asia +2023-05-20,83433,9824,"[""Charger"", ""Wireless Mouse""]",3932.0,{},62409,0,Asia +2023-10-24,83434,4173,"[""Charger""]",2728.13,"{""promo"": ""18%""}",270689,0,Europe +2023-10-13,83435,9869,"[""Monitor"", ""Charger""]",4542.86,"{""promo"": ""24%""}",157488,1,Africa +2023-06-09,83436,2228,"[""Phone"", ""Wireless Mouse""]",4411.39,{},193888,1,North America +2023-07-03,83437,9041,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3028.97,{},189924,1,North America +2024-01-19,83438,4343,"[""Monitor"", ""Headphones""]",1553.04,{},237283,0,South America +2023-09-27,83439,1283,"[""Phone""]",1470.29,"{""seasonal"": ""21%""}",247817,0,Africa +2024-07-24,83440,1721,"[""Laptop""]",358.95,"{""seasonal"": ""20%""}",97399,0,North America +2023-03-16,83441,9923,"[""Phone""]",3585.21,{},83470,1,Europe +2024-10-24,83442,4126,"[""Laptop"", ""Tablet"", ""Headphones""]",602.0,"{"""": ""10%""}",119578,1,Europe +2024-09-02,83443,8879,"[""Phone""]",1556.86,"{""loyalty"": ""29%""}",74952,1,Africa +2024-09-04,83444,1798,"[""Charger""]",3061.23,"{""seasonal"": ""15%""}",88481,1,North America +2024-12-20,83445,9965,"[""Monitor"", ""Laptop""]",1370.41,"{""seasonal"": ""22%""}",105943,1,South America +2023-11-30,83446,5485,"[""Keyboard""]",1183.64,{},263333,0,North America +2023-01-10,83447,4903,"[""Laptop"", ""Phone"", ""Tablet""]",1179.04,{},36953,1,Europe +2023-09-24,83448,2539,"[""Monitor"", ""Charger"", ""Keyboard""]",4761.51,"{""loyalty"": ""11%""}",244196,0,Africa +2024-05-30,83449,405,"[""Tablet"", ""Charger""]",1639.99,{},268096,1,South America +2024-10-08,83450,7399,"[""Monitor"", ""Charger"", ""Phone""]",4228.05,"{"""": ""12%""}",104696,0,Africa +2024-07-18,83451,4541,"[""Monitor"", ""Phone""]",882.63,{},72765,0,Asia +2024-12-11,83452,2960,"[""Tablet""]",1559.43,{},194551,0,Europe +2023-10-02,83453,9599,"[""Charger"", ""Laptop"", ""Phone""]",2877.08,"{""promo"": ""22%""}",31112,0,Europe +2023-08-18,83454,6592,"[""Wireless Mouse"", ""Keyboard""]",3334.03,"{""seasonal"": ""23%""}",284380,0,Africa +2023-08-19,83455,8301,"[""Wireless Mouse"", ""Phone""]",2881.05,"{""promo"": ""16%""}",184514,0,North America +2024-05-11,83456,3794,"[""Keyboard"", ""Laptop""]",3962.33,{},89132,0,South America +2024-10-30,83457,8979,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3580.66,"{""promo"": ""13%""}",139729,1,Europe +2023-05-29,83458,5437,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",219.92,"{"""": ""19%""}",69198,0,Africa +2024-08-06,83459,7997,"[""Phone""]",923.15,{},241454,0,Asia +2024-09-29,83460,9882,"[""Headphones"", ""Monitor"", ""Keyboard""]",2531.52,"{""promo"": ""5%""}",125375,1,Europe +2023-05-08,83461,1075,"[""Laptop""]",2910.12,"{""promo"": ""20%""}",156415,1,South America +2024-08-11,83462,4518,"[""Laptop""]",2272.07,{},30328,1,Europe +2024-03-24,83463,5380,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4495.5,{},270309,1,North America +2023-05-19,83464,8671,"[""Headphones""]",4155.86,{},87934,1,Africa +2023-09-21,83465,9558,"[""Charger"", ""Tablet"", ""Phone""]",2436.42,{},196904,0,North America +2023-05-05,83466,7731,"[""Charger""]",2117.84,"{""promo"": ""30%""}",112058,0,South America +2023-06-12,83467,4816,"[""Wireless Mouse"", ""Tablet""]",2717.64,{},190416,0,Asia +2024-10-24,83468,444,"[""Phone"", ""Charger"", ""Laptop""]",1283.22,"{"""": ""14%""}",294215,0,North America +2024-04-03,83469,3531,"[""Wireless Mouse"", ""Monitor""]",4679.54,"{"""": ""24%""}",124314,1,Europe +2024-11-22,83470,3873,"[""Tablet"", ""Monitor""]",3585.67,"{"""": ""15%""}",137762,1,Europe +2023-05-03,83471,7374,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1823.66,{},197520,0,South America +2024-09-10,83472,7640,"[""Phone"", ""Monitor"", ""Laptop""]",104.26,{},114883,0,South America +2024-09-17,83473,1004,"[""Headphones""]",916.53,"{""loyalty"": ""22%""}",56926,1,South America +2024-05-05,83474,8622,"[""Charger"", ""Laptop"", ""Phone""]",1924.1,"{""loyalty"": ""28%""}",37298,1,Europe +2023-05-22,83475,3282,"[""Laptop"", ""Monitor"", ""Tablet""]",2021.46,"{"""": ""30%""}",285617,0,Europe +2023-01-15,83476,6156,"[""Monitor""]",1970.51,{},43794,0,Asia +2023-05-22,83477,8039,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3228.6,"{""loyalty"": ""8%""}",231650,0,Africa +2024-04-06,83478,2381,"[""Keyboard"", ""Charger"", ""Monitor""]",3854.31,{},184068,1,North America +2024-02-27,83479,8609,"[""Wireless Mouse"", ""Headphones""]",2899.05,{},158739,0,Africa +2023-04-30,83480,8539,"[""Headphones"", ""Laptop""]",2233.89,{},37786,1,Africa +2024-12-25,83481,9525,"[""Phone"", ""Laptop"", ""Tablet""]",1940.59,{},278689,0,South America +2023-06-21,83482,7710,"[""Phone"", ""Tablet""]",4004.27,"{"""": ""19%""}",269671,0,Europe +2023-11-29,83483,2686,"[""Phone""]",4600.13,{},144931,1,South America +2024-11-06,83484,9615,"[""Tablet"", ""Laptop"", ""Headphones""]",1710.43,"{""seasonal"": ""15%""}",218668,1,Africa +2023-07-05,83485,4757,"[""Monitor""]",4046.73,{},55731,0,South America +2024-03-02,83486,1148,"[""Tablet"", ""Wireless Mouse""]",4502.64,"{""loyalty"": ""17%""}",174709,0,South America +2024-10-03,83487,6032,"[""Charger"", ""Monitor""]",2061.24,{},285199,1,South America +2023-11-17,83488,6617,"[""Keyboard""]",4638.55,"{""seasonal"": ""12%""}",134726,0,Asia +2023-04-08,83489,9800,"[""Monitor"", ""Tablet"", ""Laptop""]",4793.21,"{""promo"": ""30%""}",222874,1,North America +2023-06-17,83490,9110,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2785.18,"{""loyalty"": ""15%""}",72630,1,South America +2024-06-07,83491,9815,"[""Phone"", ""Wireless Mouse""]",2262.32,{},135893,1,Europe +2023-10-04,83492,9230,"[""Charger""]",1915.23,{},249137,1,Africa +2024-02-04,83493,4476,"[""Wireless Mouse""]",2531.61,"{""promo"": ""24%""}",254555,0,Europe +2024-06-04,83494,4528,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1311.56,"{"""": ""28%""}",151772,0,Africa +2023-04-24,83495,9710,"[""Laptop"", ""Keyboard"", ""Tablet""]",4781.03,{},244466,0,Asia +2023-01-10,83496,3382,"[""Keyboard""]",490.87,{},224568,1,South America +2023-08-29,83497,512,"[""Wireless Mouse"", ""Tablet""]",2132.82,"{""seasonal"": ""24%""}",125610,0,Africa +2024-09-03,83498,8670,"[""Phone"", ""Keyboard""]",641.36,{},228883,0,North America +2023-01-04,83499,1320,"[""Monitor"", ""Headphones""]",3277.91,{},202962,0,Africa +2023-01-26,83500,513,"[""Monitor"", ""Headphones""]",4898.37,{},295756,1,Europe +2023-04-11,83501,4986,"[""Laptop""]",4276.4,{},219575,1,South America +2024-06-04,83502,2292,"[""Tablet""]",609.88,{},252117,1,South America +2024-12-03,83503,587,"[""Keyboard"", ""Laptop""]",2508.86,"{""seasonal"": ""29%""}",76035,0,North America +2023-08-15,83504,5265,"[""Wireless Mouse""]",3147.87,"{""promo"": ""7%""}",205814,1,Asia +2023-11-25,83505,6214,"[""Tablet"", ""Charger""]",4329.44,"{""seasonal"": ""17%""}",199134,1,Asia +2024-09-23,83506,71,"[""Keyboard"", ""Monitor"", ""Charger""]",3441.89,{},216638,1,Asia +2023-12-24,83507,6864,"[""Monitor""]",2503.77,"{""seasonal"": ""22%""}",268712,0,Europe +2023-04-08,83508,1205,"[""Keyboard""]",1398.69,{},110693,0,South America +2023-02-13,83509,2922,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3887.58,"{""seasonal"": ""14%""}",221134,0,South America +2023-09-16,83510,4992,"[""Laptop"", ""Keyboard""]",2684.91,"{""seasonal"": ""6%""}",76536,1,South America +2024-09-25,83511,90,"[""Phone"", ""Tablet""]",2264.91,{},206013,0,Asia +2023-11-27,83512,5644,"[""Tablet"", ""Phone""]",4540.19,{},57085,1,North America +2024-07-31,83513,5592,"[""Wireless Mouse"", ""Charger""]",1619.79,"{""seasonal"": ""24%""}",247395,0,Africa +2024-05-27,83514,3988,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3245.19,{},47160,0,Europe +2023-07-05,83515,2365,"[""Headphones"", ""Monitor"", ""Charger""]",3961.48,"{""promo"": ""8%""}",222934,1,North America +2024-10-15,83516,8954,"[""Monitor"", ""Phone""]",1217.77,{},150346,1,South America +2024-02-23,83517,8891,"[""Wireless Mouse"", ""Charger""]",786.95,"{""seasonal"": ""28%""}",16503,0,North America +2023-05-18,83518,4497,"[""Phone""]",1123.23,{},96707,1,Africa +2023-12-23,83519,6608,"[""Wireless Mouse""]",571.14,"{""loyalty"": ""15%""}",2306,1,South America +2023-10-20,83520,1428,"[""Headphones"", ""Monitor""]",242.79,{},177833,0,South America +2024-11-27,83521,2557,"[""Charger""]",571.66,"{""promo"": ""8%""}",64597,0,North America +2024-04-24,83522,2524,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2591.45,"{""loyalty"": ""15%""}",180507,0,Asia +2024-12-20,83523,7025,"[""Charger""]",3307.09,"{""seasonal"": ""18%""}",191314,0,South America +2023-08-26,83524,7531,"[""Keyboard""]",4636.88,{},233692,1,South America +2023-02-02,83525,2211,"[""Tablet"", ""Charger""]",1147.85,"{""promo"": ""7%""}",46254,1,Africa +2023-05-01,83526,5814,"[""Charger""]",221.54,"{"""": ""21%""}",120739,1,Africa +2023-02-18,83527,6780,"[""Charger"", ""Keyboard"", ""Headphones""]",1198.71,{},33425,0,Asia +2023-09-11,83528,7186,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1612.71,"{""seasonal"": ""8%""}",11959,0,Asia +2023-08-28,83529,8047,"[""Keyboard"", ""Laptop"", ""Tablet""]",4532.17,"{"""": ""12%""}",142551,1,Africa +2024-08-29,83530,8579,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",567.34,"{""seasonal"": ""8%""}",111286,1,South America +2023-06-17,83531,7257,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1423.65,"{""seasonal"": ""12%""}",141211,1,Africa +2024-08-05,83532,7076,"[""Phone"", ""Keyboard""]",1922.56,"{""promo"": ""11%""}",211375,0,Africa +2024-03-16,83533,886,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1600.94,"{""promo"": ""22%""}",191107,1,Asia +2023-04-07,83534,4194,"[""Monitor""]",2867.22,"{"""": ""17%""}",279452,0,Asia +2024-09-04,83535,7504,"[""Headphones"", ""Monitor"", ""Phone""]",1647.35,"{""promo"": ""26%""}",180735,1,South America +2024-02-11,83536,6678,"[""Headphones""]",1388.39,{},92180,1,Africa +2024-04-12,83537,6308,"[""Laptop"", ""Charger"", ""Keyboard""]",3755.37,"{""promo"": ""21%""}",30189,1,Asia +2023-05-19,83538,8980,"[""Monitor""]",1706.83,"{""promo"": ""29%""}",286184,1,South America +2024-04-09,83539,9950,"[""Keyboard""]",2367.29,{},201976,1,Africa +2024-04-03,83540,8955,"[""Wireless Mouse""]",1579.42,"{""promo"": ""25%""}",162748,1,Africa +2023-01-21,83541,8268,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1571.89,{},175644,0,Europe +2024-12-11,83542,5170,"[""Charger""]",3632.34,"{""seasonal"": ""13%""}",195676,0,Asia +2024-07-19,83543,2726,"[""Monitor"", ""Keyboard""]",2291.91,"{""promo"": ""16%""}",240543,0,Africa +2023-12-25,83544,873,"[""Keyboard"", ""Phone"", ""Charger""]",1181.19,"{""promo"": ""8%""}",123397,1,Europe +2023-11-14,83545,3455,"[""Monitor"", ""Phone""]",2426.79,"{""promo"": ""20%""}",170934,1,Asia +2023-03-22,83546,167,"[""Tablet"", ""Phone""]",3342.03,"{"""": ""17%""}",55093,0,Europe +2024-03-14,83547,5023,"[""Tablet""]",1373.52,"{""promo"": ""15%""}",125482,0,Asia +2023-11-09,83548,1342,"[""Wireless Mouse""]",3778.06,"{""loyalty"": ""24%""}",238739,1,South America +2024-03-03,83549,6341,"[""Keyboard"", ""Headphones""]",310.09,{},89078,0,Europe +2023-01-29,83550,6943,"[""Tablet"", ""Headphones""]",2069.48,"{"""": ""20%""}",116645,0,Asia +2023-05-24,83551,4263,"[""Keyboard""]",1036.3,{},289640,1,North America +2024-07-26,83552,4668,"[""Headphones"", ""Keyboard""]",4938.37,{},175017,1,Asia +2024-11-05,83553,8112,"[""Phone"", ""Headphones""]",4635.45,{},262319,1,North America +2024-07-21,83554,8951,"[""Phone""]",3171.45,{},266795,0,Africa +2023-01-30,83555,3271,"[""Tablet"", ""Headphones""]",4280.49,{},291674,0,Europe +2023-03-27,83556,406,"[""Charger""]",1497.33,{},99232,0,Asia +2023-06-08,83557,1838,"[""Charger""]",506.93,"{""promo"": ""23%""}",66480,1,Africa +2023-04-13,83558,3809,"[""Headphones"", ""Phone"", ""Keyboard""]",71.29,"{""promo"": ""17%""}",142981,1,South America +2023-10-16,83559,9432,"[""Wireless Mouse"", ""Keyboard""]",2371.58,{},85389,1,North America +2024-04-23,83560,8436,"[""Laptop""]",2879.18,"{""loyalty"": ""17%""}",227411,0,Asia +2023-08-20,83561,2672,"[""Tablet"", ""Laptop""]",2054.9,"{""seasonal"": ""17%""}",206077,0,Europe +2024-12-11,83562,8415,"[""Keyboard"", ""Laptop"", ""Monitor""]",4798.84,{},24932,1,Europe +2023-03-28,83563,9965,"[""Keyboard"", ""Monitor""]",1911.43,{},21104,1,Asia +2023-07-24,83564,9107,"[""Headphones"", ""Phone""]",3643.82,{},153388,1,Europe +2024-07-25,83565,1890,"[""Wireless Mouse"", ""Phone""]",3487.7,"{"""": ""20%""}",183892,0,Africa +2023-08-12,83566,7060,"[""Headphones""]",1432.02,{},232829,0,Europe +2023-07-28,83567,1385,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2847.97,"{"""": ""18%""}",273104,1,Africa +2023-03-30,83568,8700,"[""Laptop"", ""Monitor"", ""Headphones""]",2225.84,"{""promo"": ""6%""}",26894,1,Asia +2024-06-03,83569,6542,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4647.83,"{"""": ""29%""}",208270,1,Asia +2024-06-10,83570,4164,"[""Monitor"", ""Tablet""]",4753.85,"{""seasonal"": ""9%""}",28135,1,North America +2023-09-23,83571,8539,"[""Monitor"", ""Phone"", ""Laptop""]",3474.7,{},254862,0,North America +2023-01-24,83572,6907,"[""Charger""]",342.32,{},22409,0,South America +2023-09-06,83573,5952,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2748.63,{},208703,0,North America +2023-02-27,83574,2416,"[""Phone"", ""Tablet"", ""Monitor""]",2041.29,{},206275,0,North America +2023-10-30,83575,3029,"[""Keyboard"", ""Charger"", ""Headphones""]",3285.88,"{"""": ""25%""}",27035,1,South America +2023-08-30,83576,4008,"[""Headphones"", ""Keyboard"", ""Laptop""]",1994.17,"{""promo"": ""30%""}",232912,1,South America +2023-03-12,83577,593,"[""Phone"", ""Wireless Mouse""]",4991.09,"{""promo"": ""11%""}",30946,0,South America +2023-01-24,83578,3782,"[""Charger""]",1373.54,{},83580,0,Africa +2024-04-28,83579,6989,"[""Laptop"", ""Tablet""]",1658.09,"{""loyalty"": ""15%""}",223856,0,Asia +2023-02-14,83580,3776,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2761.91,{},4765,0,Europe +2024-05-05,83581,9286,"[""Phone"", ""Wireless Mouse""]",397.68,{},28940,1,Europe +2023-01-22,83582,539,"[""Keyboard"", ""Phone"", ""Monitor""]",3632.82,"{""seasonal"": ""5%""}",275926,0,Europe +2023-08-01,83583,512,"[""Headphones"", ""Charger""]",4338.09,"{""promo"": ""24%""}",97896,0,Asia +2023-09-26,83584,839,"[""Laptop"", ""Monitor""]",3525.77,"{"""": ""26%""}",261720,0,Europe +2024-02-01,83585,8719,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3703.75,"{""loyalty"": ""16%""}",262867,1,Africa +2024-06-01,83586,5084,"[""Phone"", ""Keyboard"", ""Laptop""]",143.58,{},109752,0,Asia +2023-10-26,83587,2269,"[""Keyboard"", ""Tablet""]",2566.02,{},258131,1,Europe +2023-08-08,83588,5034,"[""Laptop""]",2869.44,"{""seasonal"": ""21%""}",89525,0,South America +2024-07-09,83589,3892,"[""Laptop""]",4519.59,{},64387,0,Europe +2024-07-16,83590,9887,"[""Headphones""]",4675.13,"{"""": ""10%""}",19348,1,South America +2024-07-23,83591,734,"[""Phone"", ""Headphones""]",807.13,{},215201,1,Europe +2024-11-13,83592,6072,"[""Tablet""]",1357.94,{},194128,0,Asia +2023-09-24,83593,4345,"[""Laptop"", ""Phone"", ""Headphones""]",4430.2,"{"""": ""29%""}",44017,1,North America +2024-03-01,83594,388,"[""Headphones"", ""Tablet""]",919.62,{},236545,1,Europe +2024-08-20,83595,9147,"[""Keyboard"", ""Phone""]",715.85,"{"""": ""18%""}",246592,1,South America +2023-10-12,83596,7772,"[""Wireless Mouse"", ""Headphones""]",2633.29,"{""seasonal"": ""20%""}",270934,1,Asia +2024-03-21,83597,3369,"[""Charger""]",787.24,"{""loyalty"": ""10%""}",125841,0,South America +2024-05-25,83598,6375,"[""Monitor""]",435.34,{},30873,0,South America +2023-11-23,83599,4179,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",942.69,"{""loyalty"": ""20%""}",50791,1,Africa +2023-12-18,83600,9490,"[""Phone"", ""Laptop"", ""Headphones""]",4019.27,{},224460,0,Europe +2023-07-28,83601,3101,"[""Headphones"", ""Keyboard"", ""Phone""]",1104.62,"{""seasonal"": ""10%""}",140461,0,North America +2024-12-26,83602,6290,"[""Monitor"", ""Keyboard""]",3256.18,"{""loyalty"": ""9%""}",84411,0,Asia +2024-11-14,83603,8241,"[""Keyboard"", ""Laptop""]",4572.52,"{""seasonal"": ""26%""}",145371,1,South America +2024-06-28,83604,1085,"[""Keyboard""]",3020.1,{},211593,0,Asia +2024-03-22,83605,6711,"[""Charger"", ""Wireless Mouse""]",3341.35,{},173613,0,Asia +2024-03-26,83606,3047,"[""Keyboard"", ""Headphones""]",3945.92,{},140924,1,Africa +2024-01-28,83607,1858,"[""Laptop"", ""Phone"", ""Tablet""]",3580.89,{},128987,0,Asia +2023-05-27,83608,7916,"[""Tablet"", ""Phone"", ""Laptop""]",3482.26,"{""seasonal"": ""10%""}",140239,0,Asia +2023-02-25,83609,9844,"[""Keyboard""]",353.45,{},44742,0,Africa +2024-02-04,83610,6052,"[""Monitor"", ""Phone""]",4708.76,"{"""": ""18%""}",20247,0,Africa +2024-03-09,83611,5335,"[""Charger""]",2644.54,"{""promo"": ""19%""}",54161,1,Africa +2023-07-30,83612,7638,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1368.58,{},65934,0,Asia +2024-02-14,83613,4355,"[""Tablet"", ""Laptop""]",2332.58,"{""seasonal"": ""20%""}",275569,0,Africa +2024-07-23,83614,4409,"[""Monitor""]",1532.12,{},228244,0,North America +2023-03-21,83615,4919,"[""Headphones""]",4372.99,{},247050,0,Africa +2024-03-10,83616,1749,"[""Keyboard"", ""Phone"", ""Laptop""]",1362.05,{},215048,0,South America +2024-03-14,83617,5791,"[""Keyboard""]",3521.54,"{"""": ""19%""}",6807,1,Africa +2024-05-09,83618,4876,"[""Monitor"", ""Headphones""]",519.82,"{""seasonal"": ""29%""}",54323,0,Asia +2024-01-04,83619,3355,"[""Headphones""]",3752.92,"{""promo"": ""15%""}",276798,0,Asia +2024-12-30,83620,2808,"[""Keyboard""]",398.17,{},83762,0,Europe +2024-03-05,83621,2542,"[""Phone"", ""Monitor"", ""Keyboard""]",4853.79,{},86087,1,North America +2023-05-03,83622,8715,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",481.88,"{""seasonal"": ""18%""}",180410,1,North America +2023-01-18,83623,3514,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3111.89,"{"""": ""12%""}",231883,1,South America +2023-06-08,83624,766,"[""Tablet"", ""Wireless Mouse""]",474.43,"{"""": ""26%""}",256853,1,Africa +2023-03-26,83625,3632,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2935.3,"{""seasonal"": ""12%""}",31451,0,Europe +2023-09-15,83626,8749,"[""Monitor""]",2603.72,{},187060,1,Africa +2024-10-12,83627,6080,"[""Laptop"", ""Charger"", ""Keyboard""]",683.62,"{"""": ""18%""}",275274,1,Africa +2024-07-19,83628,7391,"[""Monitor"", ""Phone"", ""Tablet""]",4644.33,{},20946,1,Asia +2023-06-04,83629,1029,"[""Headphones"", ""Monitor"", ""Laptop""]",4822.41,{},263383,0,Asia +2023-02-10,83630,8379,"[""Keyboard""]",2230.82,{},159266,1,Asia +2024-11-07,83631,9297,"[""Phone"", ""Keyboard""]",659.32,{},281547,1,Asia +2024-10-18,83632,885,"[""Tablet"", ""Monitor"", ""Laptop""]",4119.54,"{""seasonal"": ""10%""}",222538,1,Africa +2024-05-22,83633,969,"[""Phone""]",2208.23,"{""promo"": ""26%""}",54360,1,South America +2023-11-02,83634,5830,"[""Charger""]",4654.78,{},261900,1,Asia +2023-10-15,83635,2333,"[""Monitor"", ""Tablet"", ""Headphones""]",1443.8,"{""promo"": ""20%""}",200937,1,North America +2024-01-17,83636,1419,"[""Charger""]",244.61,{},272538,1,Europe +2024-01-08,83637,7293,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3605.28,"{"""": ""8%""}",76472,0,Asia +2024-05-02,83638,466,"[""Headphones"", ""Phone"", ""Keyboard""]",176.46,{},90823,1,North America +2023-09-21,83639,8262,"[""Keyboard"", ""Tablet""]",321.71,{},272815,1,Africa +2023-08-19,83640,3871,"[""Monitor"", ""Tablet"", ""Phone""]",4018.08,"{"""": ""24%""}",63168,1,Asia +2023-02-15,83641,5001,"[""Charger"", ""Phone""]",1551.11,{},283692,1,Europe +2023-02-21,83642,1030,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1300.36,"{"""": ""15%""}",203669,1,Asia +2024-01-08,83643,250,"[""Monitor"", ""Tablet"", ""Charger""]",4792.4,{},45807,0,Africa +2024-06-25,83644,9511,"[""Charger"", ""Monitor""]",2608.18,{},202668,1,Africa +2023-07-15,83645,7636,"[""Phone""]",1196.0,"{""loyalty"": ""15%""}",137086,1,Asia +2024-04-24,83646,4352,"[""Tablet"", ""Laptop""]",4918.9,{},129760,1,South America +2024-08-23,83647,8416,"[""Keyboard"", ""Headphones"", ""Monitor""]",2434.1,"{""loyalty"": ""30%""}",214208,0,North America +2024-07-03,83648,3256,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4675.28,{},295519,0,Africa +2024-06-12,83649,4685,"[""Laptop""]",2737.91,"{""loyalty"": ""17%""}",154461,1,Asia +2024-01-05,83650,3291,"[""Phone""]",434.65,"{"""": ""14%""}",150761,0,South America +2024-07-03,83651,3971,"[""Headphones""]",2441.92,{},132848,1,Europe +2024-11-18,83652,6683,"[""Headphones""]",2449.87,"{""loyalty"": ""30%""}",98484,0,North America +2023-07-20,83653,5355,"[""Tablet""]",4261.35,{},115281,1,Asia +2023-07-08,83654,9351,"[""Tablet"", ""Headphones"", ""Laptop""]",4415.06,{},181537,0,Europe +2024-09-29,83655,2527,"[""Charger""]",255.56,{},260750,1,South America +2023-05-21,83656,8145,"[""Laptop"", ""Phone""]",3036.15,{},96649,1,Europe +2023-09-12,83657,2065,"[""Headphones"", ""Laptop""]",2666.92,{},70375,1,Asia +2023-08-29,83658,6902,"[""Charger"", ""Laptop"", ""Keyboard""]",1265.5,"{"""": ""6%""}",282188,1,North America +2023-09-04,83659,2542,"[""Wireless Mouse""]",2917.7,"{""seasonal"": ""27%""}",145768,0,North America +2023-12-25,83660,8875,"[""Charger""]",1387.48,{},185586,1,Africa +2023-12-06,83661,8969,"[""Wireless Mouse"", ""Phone""]",2950.84,{},245035,1,Africa +2024-10-28,83662,5900,"[""Charger"", ""Monitor""]",3465.93,"{""loyalty"": ""13%""}",239820,1,South America +2023-02-10,83663,3046,"[""Tablet"", ""Keyboard"", ""Laptop""]",4952.43,{},231942,1,South America +2024-02-01,83664,341,"[""Wireless Mouse"", ""Laptop""]",4921.88,{},106794,0,South America +2024-09-23,83665,6057,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3850.72,"{""promo"": ""21%""}",68946,1,South America +2024-08-01,83666,3782,"[""Monitor""]",2296.6,{},77206,0,Europe +2024-05-29,83667,2266,"[""Monitor"", ""Keyboard""]",3459.68,"{""promo"": ""30%""}",5410,1,North America +2023-09-13,83668,7038,"[""Headphones"", ""Monitor"", ""Keyboard""]",1442.76,"{""promo"": ""21%""}",98809,0,North America +2023-02-21,83669,2776,"[""Charger"", ""Laptop""]",3506.44,"{""seasonal"": ""16%""}",71541,1,Europe +2024-07-17,83670,2795,"[""Charger"", ""Tablet""]",332.29,"{""promo"": ""22%""}",1184,0,South America +2024-04-21,83671,6204,"[""Keyboard"", ""Phone"", ""Laptop""]",4092.8,"{""seasonal"": ""9%""}",2720,0,Asia +2024-02-02,83672,8419,"[""Tablet"", ""Phone""]",1280.85,{},62991,1,North America +2024-07-12,83673,8277,"[""Monitor""]",1624.05,{},112134,1,Africa +2024-05-16,83674,2094,"[""Charger""]",914.99,"{""seasonal"": ""25%""}",201431,1,Asia +2023-04-28,83675,491,"[""Headphones""]",1436.89,"{""seasonal"": ""23%""}",184691,1,North America +2023-06-08,83676,5803,"[""Keyboard""]",1816.02,{},276859,1,North America +2023-09-15,83677,7915,"[""Charger""]",2597.52,"{"""": ""22%""}",61573,0,Europe +2024-03-21,83678,7112,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1962.17,"{""promo"": ""21%""}",40774,0,Africa +2024-07-09,83679,9611,"[""Tablet"", ""Phone""]",2800.34,"{""seasonal"": ""29%""}",87530,1,Europe +2023-05-16,83680,1322,"[""Tablet""]",176.86,{},8579,1,Asia +2023-07-06,83681,4462,"[""Phone"", ""Wireless Mouse""]",2270.11,"{""seasonal"": ""15%""}",192801,0,Asia +2023-07-28,83682,8656,"[""Tablet"", ""Keyboard"", ""Monitor""]",2406.59,"{"""": ""9%""}",54156,0,Europe +2024-06-10,83683,8401,"[""Monitor""]",573.93,{},219320,1,Asia +2023-08-16,83684,2920,"[""Laptop"", ""Tablet""]",2885.46,"{"""": ""19%""}",163599,0,North America +2023-05-30,83685,4549,"[""Headphones"", ""Monitor""]",2116.97,"{""seasonal"": ""6%""}",4781,0,Asia +2024-09-20,83686,3349,"[""Keyboard""]",3945.29,"{"""": ""20%""}",219135,1,Europe +2023-10-15,83687,3120,"[""Charger""]",1756.04,{},70693,1,South America +2023-01-30,83688,7114,"[""Laptop"", ""Phone""]",1396.56,{},175160,0,Asia +2023-05-17,83689,3615,"[""Monitor"", ""Phone"", ""Charger""]",182.99,{},217857,1,Europe +2023-06-28,83690,9317,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1549.01,"{"""": ""26%""}",258330,0,South America +2023-10-23,83691,5083,"[""Monitor"", ""Charger""]",1521.6,{},69274,0,North America +2024-09-19,83692,3956,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4231.58,{},133582,0,Asia +2023-04-06,83693,9094,"[""Charger"", ""Laptop""]",4387.84,"{"""": ""18%""}",58920,1,North America +2024-02-02,83694,5233,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4690.07,"{""promo"": ""11%""}",24626,0,North America +2024-06-15,83695,4796,"[""Laptop""]",671.09,{},97127,0,Europe +2023-02-17,83696,7428,"[""Tablet"", ""Wireless Mouse""]",2175.68,{},171090,1,Europe +2024-01-21,83697,3749,"[""Keyboard"", ""Phone""]",937.94,{},161587,1,South America +2024-05-01,83698,2254,"[""Tablet""]",3754.58,{},55837,1,Europe +2024-10-22,83699,5969,"[""Laptop"", ""Keyboard"", ""Tablet""]",3467.34,"{""promo"": ""7%""}",78983,1,North America +2024-06-30,83700,468,"[""Phone"", ""Headphones"", ""Charger""]",886.24,"{""promo"": ""19%""}",68398,1,South America +2023-02-07,83701,7626,"[""Laptop"", ""Headphones""]",1393.57,{},138612,0,Africa +2023-11-21,83702,7676,"[""Headphones"", ""Phone""]",4801.33,{},28599,0,Asia +2024-04-21,83703,4605,"[""Monitor"", ""Headphones""]",1156.09,"{"""": ""26%""}",196689,1,Asia +2024-07-25,83704,9934,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4066.21,"{""loyalty"": ""18%""}",218204,0,Asia +2023-12-23,83705,2902,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2403.61,"{"""": ""27%""}",17204,1,South America +2023-03-03,83706,2585,"[""Tablet""]",2274.12,"{""promo"": ""11%""}",170846,1,South America +2023-07-19,83707,9968,"[""Laptop""]",4817.02,{},17644,0,North America +2023-01-25,83708,2608,"[""Charger"", ""Phone"", ""Monitor""]",1847.47,"{""seasonal"": ""12%""}",106831,0,Africa +2024-01-20,83709,1514,"[""Tablet"", ""Keyboard"", ""Laptop""]",4811.45,{},205428,1,South America +2024-09-13,83710,3412,"[""Monitor"", ""Tablet"", ""Laptop""]",251.9,{},138246,0,Asia +2024-02-05,83711,6902,"[""Tablet"", ""Laptop"", ""Phone""]",2543.77,"{""promo"": ""26%""}",190829,0,Asia +2024-03-27,83712,578,"[""Charger""]",734.14,"{""seasonal"": ""15%""}",256210,0,Africa +2023-05-05,83713,1633,"[""Laptop"", ""Charger""]",2988.05,{},103229,0,Africa +2023-09-24,83714,1630,"[""Headphones"", ""Wireless Mouse""]",123.63,{},53989,1,Asia +2023-01-03,83715,8105,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2415.38,{},286763,0,Europe +2023-05-01,83716,7721,"[""Tablet"", ""Monitor""]",3399.31,{},236753,0,Africa +2023-06-05,83717,5669,"[""Charger"", ""Tablet""]",3737.29,{},133505,1,Asia +2024-09-18,83718,9920,"[""Keyboard"", ""Phone"", ""Tablet""]",4736.52,{},221198,0,Asia +2023-08-01,83719,3538,"[""Charger"", ""Tablet""]",787.5,{},266703,1,Europe +2024-06-10,83720,3421,"[""Laptop"", ""Phone""]",82.31,{},250489,1,South America +2023-03-23,83721,43,"[""Tablet"", ""Laptop"", ""Phone""]",1928.3,{},73274,1,Asia +2023-10-23,83722,3517,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",915.82,{},121292,1,Africa +2023-10-10,83723,5966,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3119.53,"{"""": ""29%""}",33052,0,Europe +2023-06-03,83724,6478,"[""Phone"", ""Keyboard""]",1864.44,{},158277,1,North America +2023-11-18,83725,7514,"[""Phone"", ""Monitor""]",4275.2,{},234738,0,Europe +2023-02-26,83726,6950,"[""Monitor"", ""Tablet"", ""Charger""]",4041.66,"{""seasonal"": ""27%""}",270338,1,Asia +2023-04-26,83727,8636,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",105.12,{},105516,0,Asia +2023-06-21,83728,269,"[""Charger"", ""Monitor"", ""Tablet""]",2568.49,{},10547,0,South America +2024-01-16,83729,2488,"[""Tablet"", ""Monitor"", ""Phone""]",2817.39,"{"""": ""7%""}",178064,0,Africa +2024-07-06,83730,3209,"[""Tablet""]",3501.56,"{""promo"": ""29%""}",170355,0,Europe +2023-07-05,83731,9700,"[""Charger""]",2359.7,{},37370,1,Africa +2024-04-21,83732,2066,"[""Headphones"", ""Tablet""]",2984.35,"{""seasonal"": ""15%""}",226489,1,Europe +2024-10-07,83733,6207,"[""Wireless Mouse""]",4147.16,"{""loyalty"": ""29%""}",292773,0,South America +2023-12-30,83734,9916,"[""Phone"", ""Keyboard""]",2334.41,"{""promo"": ""17%""}",95211,0,Africa +2023-06-20,83735,4175,"[""Headphones"", ""Laptop""]",2632.48,"{""seasonal"": ""20%""}",41964,1,Europe +2023-06-20,83736,4435,"[""Wireless Mouse""]",1096.43,"{""loyalty"": ""19%""}",33666,1,Asia +2024-12-05,83737,268,"[""Keyboard""]",1402.11,{},274502,1,Africa +2024-05-30,83738,8887,"[""Monitor"", ""Wireless Mouse""]",2542.59,"{""loyalty"": ""8%""}",295326,0,Africa +2024-11-28,83739,7566,"[""Wireless Mouse""]",1042.92,"{"""": ""23%""}",86133,1,Europe +2023-03-10,83740,8397,"[""Phone""]",181.66,{},76405,0,Europe +2024-03-14,83741,6125,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4275.08,{},126245,0,North America +2024-04-20,83742,5043,"[""Phone""]",3380.09,{},7841,0,North America +2024-03-19,83743,2832,"[""Keyboard"", ""Wireless Mouse""]",3478.81,"{""seasonal"": ""20%""}",247658,0,Asia +2024-10-12,83744,9846,"[""Headphones"", ""Charger""]",854.06,{},293919,0,Europe +2024-01-02,83745,8993,"[""Monitor""]",1765.05,"{"""": ""29%""}",23170,0,Europe +2023-08-28,83746,913,"[""Wireless Mouse"", ""Headphones""]",2844.99,"{""loyalty"": ""18%""}",173096,1,Asia +2024-12-19,83747,9386,"[""Keyboard"", ""Phone"", ""Headphones""]",133.59,{},261401,1,South America +2024-12-11,83748,5753,"[""Laptop""]",2993.62,{},227907,0,Africa +2024-01-08,83749,1518,"[""Charger"", ""Monitor""]",599.59,"{""loyalty"": ""13%""}",23371,0,South America +2024-10-22,83750,8933,"[""Tablet""]",4699.08,"{""seasonal"": ""23%""}",203630,1,North America +2023-06-12,83751,8908,"[""Charger""]",1061.22,"{""promo"": ""21%""}",174494,1,Europe +2023-08-25,83752,6751,"[""Keyboard"", ""Tablet"", ""Monitor""]",3419.09,"{""loyalty"": ""25%""}",201466,0,Asia +2023-05-01,83753,5909,"[""Charger"", ""Headphones""]",287.81,{},221178,1,North America +2024-04-07,83754,4161,"[""Laptop""]",1112.1,{},189503,1,Asia +2024-11-24,83755,4784,"[""Laptop"", ""Monitor""]",1368.87,{},35393,1,Africa +2024-10-07,83756,9105,"[""Laptop""]",1847.74,{},14353,0,North America +2024-03-27,83757,8752,"[""Monitor""]",3032.07,"{""loyalty"": ""11%""}",197738,0,Africa +2024-03-21,83758,5928,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",540.79,{},199163,0,Asia +2024-07-30,83759,5754,"[""Wireless Mouse"", ""Keyboard""]",726.34,{},217447,1,South America +2024-12-14,83760,8188,"[""Monitor"", ""Wireless Mouse""]",4970.24,"{""promo"": ""23%""}",285662,1,North America +2023-11-23,83761,8807,"[""Tablet"", ""Keyboard""]",599.36,"{""promo"": ""29%""}",265306,0,South America +2023-05-06,83762,3409,"[""Tablet"", ""Charger""]",4678.58,"{""seasonal"": ""14%""}",61149,1,Africa +2023-07-25,83763,8370,"[""Tablet"", ""Headphones"", ""Laptop""]",3446.23,"{""seasonal"": ""18%""}",89404,0,Africa +2023-06-06,83764,4428,"[""Phone""]",3825.14,"{"""": ""25%""}",219043,1,Asia +2024-10-30,83765,3332,"[""Charger"", ""Tablet""]",2378.46,"{""seasonal"": ""5%""}",284998,1,Europe +2024-05-02,83766,386,"[""Monitor""]",930.29,{},214952,1,South America +2023-10-10,83767,495,"[""Headphones"", ""Tablet"", ""Laptop""]",1276.91,"{""loyalty"": ""23%""}",261984,0,Asia +2023-08-28,83768,6827,"[""Monitor"", ""Keyboard"", ""Charger""]",2581.73,"{""seasonal"": ""30%""}",3028,0,Asia +2023-08-23,83769,2632,"[""Laptop"", ""Charger"", ""Monitor""]",1076.26,{},11234,0,South America +2023-10-15,83770,2586,"[""Tablet"", ""Laptop"", ""Charger""]",736.2,{},84911,0,Africa +2024-02-16,83771,3039,"[""Laptop"", ""Monitor"", ""Charger""]",4079.11,"{""promo"": ""12%""}",120188,0,South America +2023-05-09,83772,8826,"[""Tablet"", ""Monitor"", ""Phone""]",3970.3,"{""loyalty"": ""28%""}",159542,1,South America +2024-06-05,83773,7541,"[""Wireless Mouse"", ""Tablet""]",783.45,"{""seasonal"": ""24%""}",28252,1,Europe +2023-07-24,83774,878,"[""Laptop"", ""Headphones""]",4348.36,{},104584,1,Africa +2024-10-19,83775,4932,"[""Monitor"", ""Phone"", ""Charger""]",4151.68,{},73158,0,Asia +2023-11-01,83776,8774,"[""Headphones"", ""Monitor""]",120.7,"{"""": ""21%""}",185257,1,North America +2023-06-23,83777,8269,"[""Laptop"", ""Tablet""]",2923.66,{},184954,1,North America +2024-12-06,83778,811,"[""Headphones"", ""Tablet""]",1259.77,{},20722,0,Europe +2024-07-15,83779,9855,"[""Tablet"", ""Laptop"", ""Phone""]",4144.26,"{""promo"": ""23%""}",274386,0,Asia +2023-11-12,83780,9223,"[""Headphones""]",2047.74,"{""promo"": ""11%""}",214377,0,Asia +2023-05-22,83781,4455,"[""Tablet"", ""Keyboard""]",456.18,"{"""": ""25%""}",220294,1,Asia +2023-09-21,83782,8664,"[""Wireless Mouse"", ""Laptop""]",1974.41,"{""loyalty"": ""21%""}",76551,1,Europe +2023-03-22,83783,428,"[""Laptop"", ""Headphones"", ""Phone""]",2068.67,{},25182,0,Europe +2023-08-09,83784,609,"[""Tablet""]",148.71,"{""seasonal"": ""15%""}",104575,1,Asia +2024-10-04,83785,4414,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1433.25,"{""seasonal"": ""15%""}",88274,1,South America +2024-11-04,83786,4886,"[""Phone"", ""Keyboard"", ""Charger""]",3086.98,{},271115,0,South America +2023-01-22,83787,4461,"[""Tablet"", ""Laptop""]",4459.77,"{""loyalty"": ""26%""}",126134,0,Asia +2024-07-12,83788,5324,"[""Monitor"", ""Wireless Mouse""]",3937.75,{},150696,0,Africa +2023-07-28,83789,54,"[""Headphones"", ""Charger"", ""Tablet""]",388.93,{},271142,0,Africa +2024-08-09,83790,1360,"[""Headphones""]",3629.84,"{""seasonal"": ""8%""}",116987,1,Asia +2024-08-06,83791,4042,"[""Keyboard"", ""Monitor""]",1825.44,{},170692,0,Europe +2023-06-28,83792,9230,"[""Laptop"", ""Tablet"", ""Monitor""]",133.88,{},51457,1,North America +2024-06-05,83793,9151,"[""Headphones"", ""Laptop"", ""Charger""]",950.7,"{""promo"": ""15%""}",299755,0,North America +2023-03-14,83794,3816,"[""Keyboard"", ""Tablet"", ""Monitor""]",3643.58,"{""loyalty"": ""28%""}",287362,0,Europe +2023-09-26,83795,9908,"[""Tablet"", ""Headphones""]",4125.91,{},109612,1,South America +2024-08-19,83796,445,"[""Keyboard"", ""Phone""]",4385.42,"{""seasonal"": ""8%""}",39038,1,South America +2023-03-18,83797,8577,"[""Monitor""]",4116.99,{},61938,1,Asia +2023-10-25,83798,1329,"[""Monitor""]",529.69,"{""loyalty"": ""15%""}",52995,1,North America +2024-09-12,83799,6680,"[""Keyboard""]",1258.27,{},258217,0,Asia +2023-11-07,83800,8051,"[""Headphones"", ""Laptop""]",1429.09,{},139753,0,North America +2024-03-31,83801,8572,"[""Phone"", ""Laptop""]",1905.38,{},49607,1,North America +2023-09-19,83802,8209,"[""Charger""]",4749.67,"{"""": ""20%""}",171163,0,South America +2024-01-12,83803,6624,"[""Monitor""]",3707.16,{},99995,0,North America +2024-03-30,83804,3879,"[""Tablet"", ""Charger""]",2233.99,{},224022,0,Europe +2024-03-16,83805,8315,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4776.6,"{"""": ""22%""}",39776,1,Asia +2023-03-17,83806,1044,"[""Keyboard"", ""Headphones""]",4634.05,{},178234,0,North America +2023-08-25,83807,7451,"[""Charger"", ""Monitor""]",3779.91,"{""promo"": ""15%""}",11853,1,North America +2023-09-12,83808,9026,"[""Phone"", ""Charger"", ""Keyboard""]",152.4,"{"""": ""26%""}",59094,1,North America +2023-08-07,83809,6761,"[""Monitor""]",3353.51,{},235558,1,Europe +2024-08-07,83810,3315,"[""Laptop""]",4827.94,{},148369,1,Africa +2024-10-02,83811,4771,"[""Headphones""]",4561.14,"{""promo"": ""7%""}",74728,1,Africa +2023-04-29,83812,9709,"[""Monitor"", ""Tablet"", ""Charger""]",2153.14,"{""promo"": ""12%""}",60327,1,South America +2023-04-29,83813,3610,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3451.23,"{""seasonal"": ""16%""}",94539,0,Europe +2023-05-20,83814,2552,"[""Tablet"", ""Laptop"", ""Keyboard""]",2499.34,"{""promo"": ""6%""}",23823,1,South America +2024-12-11,83815,3984,"[""Phone"", ""Laptop"", ""Tablet""]",1366.08,"{""seasonal"": ""7%""}",177958,0,North America +2024-04-20,83816,6609,"[""Keyboard"", ""Charger"", ""Tablet""]",136.24,"{""seasonal"": ""18%""}",52671,1,South America +2023-11-09,83817,5722,"[""Laptop""]",2653.47,{},30543,0,Africa +2024-02-28,83818,6739,"[""Phone""]",204.28,{},206891,0,Europe +2024-05-31,83819,7467,"[""Charger"", ""Monitor""]",1887.36,{},184029,0,North America +2023-04-24,83820,9678,"[""Charger"", ""Tablet"", ""Phone""]",3510.67,{},244415,0,Europe +2024-11-09,83821,6249,"[""Keyboard"", ""Laptop"", ""Monitor""]",901.63,"{""promo"": ""22%""}",106302,1,Asia +2023-11-16,83822,6145,"[""Tablet"", ""Headphones""]",502.54,{},252434,1,Europe +2023-01-24,83823,3831,"[""Tablet""]",901.0,{},17758,0,North America +2024-10-31,83824,309,"[""Phone"", ""Laptop""]",1497.52,{},121338,0,Africa +2024-08-15,83825,9740,"[""Headphones""]",4954.3,{},108961,0,Europe +2024-06-23,83826,9104,"[""Tablet""]",4558.36,{},53818,0,Europe +2024-12-24,83827,3445,"[""Monitor"", ""Laptop""]",4774.31,{},283639,0,North America +2023-08-06,83828,7983,"[""Phone"", ""Tablet"", ""Keyboard""]",4857.39,"{""seasonal"": ""29%""}",40578,0,Africa +2024-06-27,83829,4712,"[""Tablet"", ""Keyboard"", ""Charger""]",3151.88,"{"""": ""14%""}",177642,1,Asia +2024-11-26,83830,9059,"[""Charger""]",234.58,"{"""": ""13%""}",92066,1,Africa +2023-08-17,83831,126,"[""Headphones""]",4482.22,{},219155,1,Africa +2023-11-22,83832,4312,"[""Tablet"", ""Keyboard"", ""Laptop""]",1482.07,{},29154,1,Asia +2024-02-08,83833,943,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2376.91,"{"""": ""5%""}",59158,0,Africa +2023-09-09,83834,4481,"[""Monitor""]",4587.36,"{"""": ""5%""}",47120,0,Africa +2024-03-02,83835,4033,"[""Charger"", ""Wireless Mouse""]",2680.27,{},270930,1,Europe +2024-12-13,83836,806,"[""Headphones"", ""Wireless Mouse""]",4064.08,{},188182,1,Africa +2023-11-23,83837,8659,"[""Keyboard"", ""Tablet""]",2581.27,"{""promo"": ""13%""}",146591,0,South America +2023-12-22,83838,9502,"[""Headphones"", ""Laptop""]",1440.17,"{""loyalty"": ""25%""}",181239,1,Africa +2023-11-01,83839,1684,"[""Headphones"", ""Monitor""]",1832.17,{},34328,1,Asia +2023-07-01,83840,8838,"[""Monitor""]",2328.68,"{""promo"": ""25%""}",206583,1,Asia +2024-01-25,83841,7701,"[""Keyboard"", ""Wireless Mouse""]",1321.41,"{""loyalty"": ""25%""}",257374,0,Europe +2024-06-25,83842,7775,"[""Headphones"", ""Laptop"", ""Monitor""]",1940.9,"{""loyalty"": ""18%""}",140738,0,Africa +2023-01-27,83843,7492,"[""Laptop"", ""Headphones""]",3191.42,"{""loyalty"": ""14%""}",204513,1,Africa +2023-04-04,83844,1122,"[""Wireless Mouse""]",1454.16,{},99855,0,Africa +2024-07-12,83845,4932,"[""Charger"", ""Laptop"", ""Phone""]",2669.82,"{""promo"": ""22%""}",90254,0,Asia +2024-11-24,83846,3505,"[""Wireless Mouse"", ""Phone""]",4079.83,{},6026,0,South America +2024-12-10,83847,1320,"[""Headphones"", ""Laptop"", ""Tablet""]",1516.94,{},148062,1,Africa +2023-04-03,83848,8861,"[""Tablet"", ""Monitor""]",100.02,"{"""": ""18%""}",25748,0,Africa +2023-01-19,83849,9909,"[""Keyboard"", ""Wireless Mouse""]",170.62,{},204105,1,Africa +2023-09-20,83850,7302,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4718.33,{},65011,1,Europe +2024-10-22,83851,9639,"[""Laptop""]",4316.93,"{""seasonal"": ""27%""}",9644,0,South America +2024-07-10,83852,2415,"[""Phone""]",796.87,"{""seasonal"": ""11%""}",264537,1,South America +2024-04-06,83853,6212,"[""Charger""]",3297.8,{},191570,1,Europe +2024-01-29,83854,9416,"[""Phone"", ""Keyboard""]",2887.42,"{"""": ""13%""}",262286,1,Asia +2023-11-01,83855,2832,"[""Wireless Mouse"", ""Phone""]",710.75,"{""loyalty"": ""18%""}",78842,0,North America +2024-03-10,83856,2157,"[""Phone""]",2990.46,{},63662,1,South America +2024-01-28,83857,2337,"[""Monitor"", ""Headphones""]",1898.95,{},120134,0,Europe +2024-09-21,83858,296,"[""Headphones"", ""Tablet"", ""Charger""]",2034.6,"{""loyalty"": ""27%""}",63715,0,Asia +2023-11-29,83859,7424,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3678.89,"{""promo"": ""26%""}",42288,0,South America +2023-12-12,83860,3698,"[""Monitor"", ""Headphones""]",2275.56,{},93069,1,Asia +2024-10-10,83861,7507,"[""Keyboard""]",1104.91,"{""promo"": ""23%""}",117819,1,Europe +2023-04-24,83862,2616,"[""Monitor""]",1766.2,{},90364,1,Europe +2023-08-25,83863,3324,"[""Monitor"", ""Laptop""]",1303.24,"{""promo"": ""9%""}",95887,1,South America +2024-04-19,83864,9843,"[""Keyboard"", ""Phone""]",4964.13,{},87060,1,Europe +2023-01-03,83865,290,"[""Phone"", ""Tablet"", ""Charger""]",335.67,"{""promo"": ""30%""}",106090,1,South America +2023-03-20,83866,4800,"[""Headphones""]",796.78,{},143595,0,Europe +2023-05-04,83867,8817,"[""Tablet""]",1430.54,"{""seasonal"": ""15%""}",227383,0,North America +2024-03-24,83868,139,"[""Phone"", ""Laptop"", ""Monitor""]",2345.09,"{""promo"": ""28%""}",287865,0,North America +2023-04-27,83869,9591,"[""Tablet"", ""Headphones""]",135.58,{},241670,0,South America +2024-03-25,83870,6922,"[""Keyboard"", ""Tablet""]",185.4,"{""loyalty"": ""30%""}",102329,1,North America +2024-12-14,83871,1575,"[""Keyboard""]",640.38,"{""loyalty"": ""20%""}",261038,1,North America +2024-08-14,83872,7721,"[""Tablet""]",4272.06,"{""promo"": ""7%""}",193488,0,Europe +2023-02-05,83873,7389,"[""Headphones""]",2873.42,"{""seasonal"": ""10%""}",211781,0,North America +2024-06-10,83874,3983,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4458.63,"{""promo"": ""22%""}",191878,1,Europe +2024-03-17,83875,2711,"[""Wireless Mouse""]",1239.44,"{""promo"": ""18%""}",278377,0,Africa +2024-12-18,83876,425,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4946.17,{},251084,0,Africa +2024-09-29,83877,8266,"[""Phone""]",4034.78,{},17457,0,Africa +2024-07-17,83878,2641,"[""Charger""]",2337.55,"{"""": ""27%""}",49645,1,Europe +2024-02-21,83879,3030,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2911.81,"{""loyalty"": ""13%""}",179926,0,North America +2024-07-05,83880,2511,"[""Keyboard""]",1288.85,{},155039,0,Europe +2024-10-22,83881,1171,"[""Keyboard"", ""Phone""]",167.65,{},16977,0,North America +2023-05-08,83882,207,"[""Wireless Mouse"", ""Monitor""]",1169.71,{},206420,0,Asia +2023-01-25,83883,3768,"[""Monitor"", ""Phone"", ""Charger""]",1058.9,"{"""": ""13%""}",235931,1,Asia +2023-06-22,83884,8807,"[""Laptop"", ""Keyboard""]",3579.57,{},46390,0,Africa +2024-01-21,83885,8949,"[""Monitor"", ""Charger""]",4558.52,{},205469,1,South America +2024-06-08,83886,8224,"[""Tablet"", ""Charger""]",3616.03,"{""seasonal"": ""22%""}",293885,0,Asia +2024-12-21,83887,7248,"[""Tablet"", ""Keyboard"", ""Monitor""]",4729.43,"{""loyalty"": ""24%""}",138749,0,Europe +2024-06-27,83888,8883,"[""Phone"", ""Keyboard""]",461.92,"{""seasonal"": ""27%""}",95814,1,South America +2024-02-29,83889,7089,"[""Keyboard""]",2880.58,"{""seasonal"": ""28%""}",118960,1,Asia +2024-03-10,83890,2600,"[""Charger""]",1376.0,"{""seasonal"": ""5%""}",89783,0,Asia +2023-09-27,83891,2972,"[""Phone"", ""Headphones""]",3776.02,"{"""": ""5%""}",132218,1,Europe +2024-10-03,83892,6947,"[""Keyboard"", ""Tablet""]",147.61,"{"""": ""21%""}",263833,0,Africa +2023-09-26,83893,2802,"[""Tablet"", ""Keyboard"", ""Monitor""]",4306.63,"{""seasonal"": ""18%""}",121557,0,North America +2024-04-19,83894,6785,"[""Laptop""]",2845.88,{},86755,1,North America +2024-07-11,83895,8330,"[""Phone"", ""Monitor""]",1396.35,{},218810,0,South America +2024-08-07,83896,1773,"[""Phone"", ""Charger""]",4867.5,"{""promo"": ""29%""}",96911,0,Asia +2023-07-06,83897,1955,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1837.32,{},101416,1,South America +2024-06-23,83898,151,"[""Wireless Mouse"", ""Headphones""]",3278.24,"{""loyalty"": ""20%""}",153549,0,South America +2024-05-19,83899,2531,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3308.88,"{""loyalty"": ""27%""}",151535,1,South America +2023-05-31,83900,2683,"[""Tablet""]",4545.14,{},85158,1,South America +2023-06-02,83901,1889,"[""Keyboard""]",689.12,"{""promo"": ""10%""}",150266,0,North America +2023-09-09,83902,2685,"[""Monitor"", ""Headphones""]",3123.51,"{""seasonal"": ""28%""}",105445,1,Africa +2023-05-04,83903,8190,"[""Laptop"", ""Phone""]",2923.64,{},23149,1,North America +2024-02-25,83904,1431,"[""Monitor"", ""Headphones""]",958.9,{},235774,1,South America +2023-02-23,83905,8726,"[""Keyboard"", ""Wireless Mouse""]",3758.79,{},171573,0,South America +2023-09-23,83906,9991,"[""Phone"", ""Tablet"", ""Monitor""]",1888.45,"{""seasonal"": ""8%""}",273867,0,Africa +2024-10-02,83907,5068,"[""Monitor"", ""Tablet""]",2075.86,{},136190,0,South America +2023-10-03,83908,1138,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",889.64,{},47273,1,Asia +2024-08-19,83909,3567,"[""Charger"", ""Keyboard"", ""Laptop""]",221.34,{},238815,0,Europe +2023-02-04,83910,6912,"[""Headphones"", ""Keyboard""]",2105.44,"{""loyalty"": ""10%""}",289452,0,South America +2023-07-05,83911,1927,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1120.94,{},235039,1,Asia +2024-06-16,83912,5247,"[""Laptop""]",671.01,"{"""": ""14%""}",180116,1,North America +2024-12-04,83913,7967,"[""Charger"", ""Tablet"", ""Laptop""]",4216.4,{},151054,1,Africa +2024-02-08,83914,7521,"[""Monitor"", ""Tablet"", ""Keyboard""]",1228.7,{},131239,1,South America +2024-05-16,83915,929,"[""Monitor"", ""Phone""]",2159.47,"{""promo"": ""27%""}",19369,0,North America +2023-05-16,83916,3634,"[""Charger"", ""Phone""]",4250.4,{},276080,1,North America +2023-10-31,83917,8150,"[""Laptop""]",3227.45,{},258144,1,Africa +2023-04-10,83918,5315,"[""Monitor"", ""Wireless Mouse""]",1929.16,"{""loyalty"": ""11%""}",24848,0,South America +2024-01-18,83919,9030,"[""Wireless Mouse"", ""Tablet""]",4905.71,{},211260,0,Asia +2023-03-19,83920,3226,"[""Laptop"", ""Headphones""]",1877.98,"{"""": ""30%""}",266539,1,South America +2023-02-20,83921,3347,"[""Laptop""]",577.56,{},78334,1,North America +2023-12-25,83922,8550,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1918.31,{},203586,0,Europe +2023-10-15,83923,7757,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1962.73,{},260284,1,Asia +2024-09-17,83924,4544,"[""Phone""]",1514.53,{},295619,1,Asia +2023-07-17,83925,6581,"[""Tablet"", ""Keyboard"", ""Phone""]",2493.27,{},176358,0,South America +2023-09-20,83926,6482,"[""Phone"", ""Headphones""]",1071.25,{},13702,0,South America +2024-05-20,83927,1631,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4641.65,{},36542,0,Europe +2023-02-03,83928,4720,"[""Wireless Mouse""]",2674.17,{},293351,1,Europe +2023-05-11,83929,4429,"[""Phone"", ""Laptop"", ""Monitor""]",4730.09,{},177585,1,Africa +2024-01-30,83930,5953,"[""Headphones""]",3907.4,{},139193,1,North America +2023-11-07,83931,7074,"[""Laptop""]",3122.95,{},66259,1,Africa +2024-08-25,83932,232,"[""Wireless Mouse""]",4373.42,{},196264,1,South America +2023-08-29,83933,3265,"[""Headphones""]",80.79,"{"""": ""20%""}",134103,0,South America +2023-02-01,83934,4612,"[""Charger""]",2745.99,"{""promo"": ""12%""}",52477,1,Europe +2024-11-10,83935,6650,"[""Monitor"", ""Charger""]",3384.11,"{""promo"": ""28%""}",59983,1,Europe +2024-11-22,83936,8029,"[""Phone"", ""Laptop""]",2433.8,"{""loyalty"": ""16%""}",255813,0,Asia +2024-03-15,83937,9314,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4040.22,"{""loyalty"": ""20%""}",171599,1,Asia +2023-05-17,83938,400,"[""Phone""]",2071.67,"{"""": ""8%""}",142033,1,Africa +2024-11-19,83939,3447,"[""Monitor""]",1769.05,"{""loyalty"": ""9%""}",258412,1,Europe +2023-11-23,83940,7106,"[""Tablet"", ""Headphones"", ""Keyboard""]",4506.93,"{""promo"": ""14%""}",76227,1,Africa +2024-08-30,83941,1659,"[""Wireless Mouse"", ""Monitor""]",2556.94,{},42413,0,Asia +2024-12-08,83942,7963,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1761.95,{},148122,0,North America +2023-04-27,83943,9909,"[""Keyboard"", ""Laptop""]",2621.39,{},211520,1,Europe +2024-11-04,83944,6582,"[""Wireless Mouse""]",1218.55,"{""promo"": ""23%""}",213364,0,Europe +2024-10-28,83945,4247,"[""Phone"", ""Tablet"", ""Monitor""]",2734.44,{},104703,0,South America +2024-03-04,83946,7428,"[""Wireless Mouse""]",743.53,"{""loyalty"": ""6%""}",24586,0,South America +2023-04-24,83947,3629,"[""Charger"", ""Laptop"", ""Headphones""]",1536.95,"{""seasonal"": ""18%""}",122954,1,South America +2023-12-13,83948,62,"[""Wireless Mouse""]",2836.34,{},129029,0,Europe +2024-09-11,83949,5002,"[""Laptop"", ""Charger""]",2072.03,{},261598,1,Africa +2024-11-26,83950,6106,"[""Tablet""]",4738.41,{},198631,0,South America +2023-02-14,83951,1500,"[""Headphones"", ""Laptop""]",1451.19,"{""loyalty"": ""17%""}",117150,1,Africa +2024-09-23,83952,3931,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4392.45,{},34286,1,Asia +2023-12-22,83953,2684,"[""Wireless Mouse"", ""Keyboard""]",3533.34,{},199701,0,Asia +2023-09-01,83954,5300,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4865.0,"{""promo"": ""12%""}",4225,0,Europe +2023-10-26,83955,1238,"[""Laptop"", ""Keyboard""]",4036.05,"{""seasonal"": ""18%""}",39298,0,South America +2023-03-16,83956,2574,"[""Charger""]",454.75,"{""seasonal"": ""23%""}",107359,0,North America +2024-01-08,83957,412,"[""Tablet""]",768.84,"{""seasonal"": ""23%""}",104703,1,Africa +2023-02-20,83958,1963,"[""Tablet""]",3979.08,{},265621,1,North America +2023-08-20,83959,782,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1351.59,{},273386,1,South America +2023-03-29,83960,541,"[""Charger""]",3458.99,"{""promo"": ""18%""}",15058,0,North America +2024-01-07,83961,8598,"[""Headphones"", ""Charger""]",480.88,{},158744,1,Europe +2024-10-13,83962,4914,"[""Laptop"", ""Headphones""]",194.44,"{""loyalty"": ""26%""}",120365,0,Europe +2024-04-28,83963,3240,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2425.28,"{""loyalty"": ""26%""}",95755,0,Europe +2024-01-14,83964,4497,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4685.75,{},1046,0,Europe +2023-11-20,83965,9905,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4329.37,"{"""": ""30%""}",98511,1,Africa +2023-12-25,83966,6865,"[""Laptop"", ""Charger""]",2446.91,"{""promo"": ""22%""}",150490,0,South America +2023-03-31,83967,7879,"[""Headphones"", ""Charger""]",3064.55,{},219537,0,Asia +2023-02-15,83968,4588,"[""Headphones"", ""Phone"", ""Monitor""]",2334.54,{},45472,1,Europe +2023-05-28,83969,1710,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3397.79,"{"""": ""21%""}",290296,1,Africa +2023-11-24,83970,6020,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2836.95,"{"""": ""19%""}",272505,0,South America +2024-02-01,83971,1551,"[""Keyboard""]",382.31,"{""promo"": ""13%""}",298733,1,Asia +2024-09-18,83972,3801,"[""Phone""]",2854.0,"{""promo"": ""14%""}",9762,0,North America +2023-11-09,83973,4937,"[""Phone""]",648.5,"{""loyalty"": ""17%""}",63212,1,Asia +2023-04-20,83974,5291,"[""Monitor""]",259.12,"{""loyalty"": ""8%""}",127735,1,South America +2024-02-08,83975,5053,"[""Keyboard""]",2020.99,"{""loyalty"": ""26%""}",245918,0,Africa +2024-11-08,83976,7791,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",370.45,{},2457,0,North America +2023-01-10,83977,5548,"[""Wireless Mouse"", ""Tablet""]",4843.75,"{""seasonal"": ""14%""}",69864,0,Asia +2023-09-01,83978,358,"[""Monitor"", ""Charger""]",2853.62,"{""loyalty"": ""10%""}",48770,0,North America +2023-11-25,83979,637,"[""Charger""]",3151.65,"{"""": ""6%""}",273402,0,Africa +2023-05-31,83980,3972,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4356.9,{},195992,1,Asia +2024-02-19,83981,7705,"[""Headphones"", ""Charger"", ""Monitor""]",3092.05,"{""promo"": ""9%""}",106769,1,North America +2024-10-03,83982,9056,"[""Monitor"", ""Laptop""]",2228.02,"{""promo"": ""9%""}",109546,0,South America +2024-02-04,83983,9026,"[""Keyboard"", ""Tablet""]",2608.17,{},236959,0,South America +2024-09-05,83984,9339,"[""Charger""]",4628.74,{},277661,1,Asia +2024-05-11,83985,2230,"[""Tablet"", ""Charger""]",3057.42,"{""promo"": ""14%""}",275826,1,North America +2023-03-26,83986,7084,"[""Keyboard""]",4022.22,"{""loyalty"": ""26%""}",148247,0,South America +2024-06-29,83987,8178,"[""Laptop"", ""Monitor"", ""Keyboard""]",186.25,"{""seasonal"": ""10%""}",18753,0,South America +2023-11-27,83988,5373,"[""Tablet"", ""Wireless Mouse""]",191.32,"{""loyalty"": ""12%""}",189075,0,Asia +2023-09-18,83989,1038,"[""Headphones""]",1627.63,"{"""": ""10%""}",183893,0,Asia +2023-08-23,83990,2750,"[""Headphones""]",4791.48,"{""seasonal"": ""7%""}",9643,0,South America +2024-02-09,83991,4027,"[""Monitor"", ""Tablet"", ""Charger""]",429.38,"{"""": ""14%""}",125825,0,North America +2023-03-21,83992,5369,"[""Charger"", ""Keyboard""]",4742.49,{},161370,1,North America +2023-10-29,83993,662,"[""Phone""]",1523.32,{},45439,0,Africa +2024-12-09,83994,9548,"[""Laptop"", ""Headphones"", ""Phone""]",2639.81,{},211279,0,North America +2023-09-18,83995,625,"[""Charger"", ""Tablet"", ""Laptop""]",2828.04,"{""seasonal"": ""7%""}",230786,1,Africa +2024-08-13,83996,9100,"[""Charger"", ""Headphones""]",1766.04,{},94715,0,Asia +2023-10-23,83997,6565,"[""Monitor"", ""Laptop""]",1402.59,{},53457,1,South America +2023-04-22,83998,6640,"[""Charger"", ""Phone""]",705.01,"{"""": ""29%""}",258822,1,Europe +2024-02-24,83999,3647,"[""Headphones"", ""Phone"", ""Charger""]",4664.01,"{""seasonal"": ""9%""}",285570,1,South America +2023-05-14,84000,9635,"[""Wireless Mouse""]",4283.76,{},10424,1,Europe +2024-07-16,84001,9612,"[""Monitor"", ""Wireless Mouse""]",2020.11,"{""loyalty"": ""10%""}",100049,0,Europe +2024-04-04,84002,2745,"[""Monitor"", ""Headphones""]",2452.74,{},12329,1,North America +2024-05-08,84003,8671,"[""Laptop""]",3540.89,"{""seasonal"": ""22%""}",137825,0,Africa +2024-02-02,84004,2265,"[""Laptop""]",3080.41,"{"""": ""7%""}",153875,1,Africa +2023-04-02,84005,6023,"[""Keyboard""]",3456.4,"{""seasonal"": ""15%""}",111147,1,Europe +2024-01-06,84006,4849,"[""Tablet"", ""Wireless Mouse""]",2491.87,"{"""": ""18%""}",187599,0,Asia +2023-02-14,84007,3641,"[""Charger""]",4551.04,"{""loyalty"": ""9%""}",93034,1,Europe +2023-05-18,84008,8689,"[""Phone""]",1395.18,"{"""": ""10%""}",57580,1,Asia +2023-01-26,84009,6527,"[""Phone"", ""Laptop""]",3146.76,"{""promo"": ""17%""}",179043,0,South America +2023-02-18,84010,6451,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4954.38,{},182883,1,Asia +2023-02-28,84011,616,"[""Monitor"", ""Laptop"", ""Charger""]",698.63,{},187341,1,Asia +2023-05-02,84012,9464,"[""Charger"", ""Phone""]",1913.96,"{""seasonal"": ""16%""}",255645,0,Asia +2023-01-26,84013,1093,"[""Monitor"", ""Phone""]",522.66,"{""loyalty"": ""25%""}",198193,0,North America +2023-06-02,84014,3367,"[""Headphones"", ""Charger"", ""Keyboard""]",2509.98,"{""loyalty"": ""6%""}",238366,0,North America +2023-05-13,84015,1357,"[""Keyboard""]",2874.43,"{""seasonal"": ""15%""}",233191,0,North America +2024-08-17,84016,2444,"[""Laptop"", ""Wireless Mouse""]",3532.73,{},148110,0,Europe +2023-10-20,84017,7069,"[""Monitor"", ""Headphones"", ""Phone""]",1305.42,"{""loyalty"": ""11%""}",165965,0,North America +2024-09-20,84018,5897,"[""Laptop""]",2992.35,"{""loyalty"": ""15%""}",102347,1,Asia +2023-01-31,84019,9852,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1662.79,{},192346,0,North America +2023-08-07,84020,3153,"[""Tablet"", ""Phone""]",563.14,"{"""": ""15%""}",28835,1,Asia +2024-12-19,84021,8581,"[""Keyboard"", ""Laptop""]",1357.88,{},240310,0,Asia +2023-11-25,84022,5485,"[""Headphones"", ""Monitor"", ""Charger""]",2080.64,{},263575,1,North America +2024-09-02,84023,4802,"[""Phone""]",959.34,"{"""": ""9%""}",228981,1,Asia +2024-05-24,84024,4383,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",352.07,{},209411,0,Africa +2023-01-05,84025,1031,"[""Phone"", ""Laptop""]",1699.52,{},64911,0,Europe +2023-07-02,84026,9603,"[""Charger"", ""Keyboard"", ""Laptop""]",4388.23,{},75610,0,South America +2024-01-21,84027,2753,"[""Wireless Mouse""]",2168.73,"{"""": ""5%""}",241083,1,Africa +2024-07-19,84028,8048,"[""Charger"", ""Phone"", ""Headphones""]",2468.67,"{""promo"": ""7%""}",96046,1,Africa +2023-07-04,84029,7842,"[""Keyboard"", ""Monitor"", ""Headphones""]",2973.43,"{"""": ""16%""}",281179,0,North America +2023-04-13,84030,2450,"[""Laptop"", ""Monitor""]",1612.13,{},130369,0,South America +2023-07-27,84031,996,"[""Monitor""]",4836.73,{},187023,0,North America +2023-03-13,84032,1232,"[""Phone"", ""Tablet""]",821.45,{},134423,1,Asia +2024-10-22,84033,8455,"[""Wireless Mouse"", ""Headphones""]",2871.29,{},33530,0,Asia +2023-06-05,84034,1552,"[""Tablet"", ""Keyboard"", ""Charger""]",1164.32,{},236552,0,North America +2024-01-21,84035,6664,"[""Keyboard""]",624.13,"{""promo"": ""22%""}",78431,0,Asia +2024-02-22,84036,9187,"[""Keyboard"", ""Phone""]",1130.13,"{"""": ""18%""}",270844,1,South America +2024-08-25,84037,8164,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2539.3,"{""loyalty"": ""18%""}",224106,0,Asia +2024-03-10,84038,3144,"[""Tablet"", ""Laptop"", ""Charger""]",4854.32,"{"""": ""15%""}",113795,1,Africa +2024-11-01,84039,1793,"[""Wireless Mouse"", ""Headphones""]",3152.56,{},223413,0,Africa +2023-03-25,84040,64,"[""Laptop"", ""Charger"", ""Headphones""]",2068.52,{},283828,0,South America +2024-02-05,84041,1363,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4319.86,"{""loyalty"": ""18%""}",214806,0,Europe +2023-01-30,84042,4974,"[""Headphones""]",4282.41,"{""promo"": ""15%""}",154321,0,Africa +2023-12-21,84043,5372,"[""Charger""]",2204.48,"{""promo"": ""9%""}",87050,0,North America +2024-07-16,84044,1185,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4487.54,{},38099,0,Africa +2023-03-05,84045,3797,"[""Laptop""]",3285.69,"{""seasonal"": ""8%""}",104686,0,Europe +2024-11-17,84046,4873,"[""Keyboard"", ""Charger"", ""Monitor""]",3785.59,{},153499,1,North America +2024-06-10,84047,8476,"[""Laptop"", ""Headphones""]",2740.87,"{""loyalty"": ""20%""}",96196,0,South America +2023-09-07,84048,3071,"[""Keyboard"", ""Wireless Mouse""]",841.07,{},147786,0,Europe +2023-07-09,84049,3253,"[""Headphones""]",4191.04,{},147970,0,Africa +2024-12-13,84050,1096,"[""Laptop"", ""Charger"", ""Monitor""]",3772.78,"{"""": ""16%""}",37269,0,Asia +2023-04-16,84051,9640,"[""Keyboard"", ""Charger"", ""Phone""]",899.85,{},282723,0,Asia +2023-09-27,84052,8092,"[""Keyboard"", ""Wireless Mouse""]",3451.03,{},271248,1,Africa +2023-05-18,84053,7599,"[""Headphones""]",3668.58,"{"""": ""11%""}",186845,0,Asia +2023-07-13,84054,5300,"[""Tablet"", ""Headphones""]",430.78,{},130338,0,Asia +2023-05-30,84055,6171,"[""Phone""]",1802.27,{},282721,1,North America +2024-08-11,84056,6053,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3797.89,"{""loyalty"": ""5%""}",164694,0,Europe +2023-05-22,84057,6538,"[""Wireless Mouse""]",348.38,{},241643,0,Africa +2024-07-07,84058,4578,"[""Keyboard"", ""Charger"", ""Tablet""]",1861.57,"{""loyalty"": ""29%""}",287662,0,Europe +2024-09-22,84059,7044,"[""Wireless Mouse"", ""Tablet""]",174.98,{},216238,0,South America +2023-11-25,84060,828,"[""Headphones"", ""Phone"", ""Keyboard""]",3289.75,{},185879,1,Europe +2023-04-18,84061,2323,"[""Monitor"", ""Tablet""]",774.58,{},193102,1,South America +2023-10-14,84062,2053,"[""Headphones""]",3170.05,{},40461,1,Africa +2023-08-25,84063,504,"[""Laptop"", ""Tablet"", ""Headphones""]",1070.43,"{""seasonal"": ""10%""}",161504,1,South America +2024-06-26,84064,7194,"[""Tablet"", ""Laptop"", ""Keyboard""]",3572.19,{},100340,1,South America +2024-01-12,84065,86,"[""Tablet"", ""Keyboard"", ""Laptop""]",1638.55,"{"""": ""18%""}",92773,1,South America +2024-01-24,84066,9813,"[""Wireless Mouse"", ""Monitor""]",3268.56,"{""loyalty"": ""6%""}",285020,0,Asia +2023-03-12,84067,4484,"[""Keyboard"", ""Monitor""]",1677.99,{},232387,0,South America +2024-02-03,84068,2818,"[""Headphones""]",1306.54,"{""promo"": ""15%""}",163550,1,Europe +2023-06-02,84069,9575,"[""Keyboard"", ""Headphones""]",1667.56,{},238328,1,Europe +2023-05-19,84070,7635,"[""Headphones""]",2430.84,"{""promo"": ""17%""}",167451,0,Europe +2024-02-23,84071,6225,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",733.03,"{""seasonal"": ""17%""}",148450,1,North America +2024-11-19,84072,3138,"[""Keyboard""]",268.43,"{""loyalty"": ""21%""}",259306,0,Africa +2024-03-08,84073,6047,"[""Keyboard""]",1448.63,{},163596,1,North America +2023-02-05,84074,570,"[""Wireless Mouse"", ""Keyboard""]",1573.11,"{""promo"": ""19%""}",257460,0,Asia +2023-07-15,84075,7022,"[""Headphones"", ""Wireless Mouse""]",4739.54,{},251891,0,Asia +2024-01-23,84076,541,"[""Keyboard"", ""Tablet""]",3741.81,{},127776,0,Africa +2024-05-07,84077,1598,"[""Headphones"", ""Monitor""]",944.26,{},282672,1,Europe +2024-08-23,84078,3487,"[""Charger""]",2028.39,{},221991,1,North America +2023-11-21,84079,7057,"[""Charger"", ""Phone"", ""Headphones""]",4959.04,{},72314,0,Africa +2024-12-14,84080,8617,"[""Charger"", ""Monitor"", ""Phone""]",1839.07,"{""promo"": ""25%""}",158027,0,Africa +2023-02-03,84081,5742,"[""Keyboard"", ""Tablet""]",4507.67,"{"""": ""12%""}",290986,1,Asia +2024-12-01,84082,1731,"[""Monitor""]",1593.75,"{"""": ""12%""}",135091,0,Europe +2023-03-31,84083,1490,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1408.11,"{""seasonal"": ""21%""}",273254,0,Asia +2023-12-06,84084,2534,"[""Tablet""]",2394.52,{},153448,0,Asia +2023-10-24,84085,8726,"[""Laptop"", ""Charger"", ""Tablet""]",3566.13,"{"""": ""9%""}",289344,0,South America +2024-05-22,84086,2318,"[""Phone"", ""Keyboard""]",685.22,{},266260,1,Europe +2024-12-15,84087,2642,"[""Wireless Mouse""]",2292.12,"{""loyalty"": ""25%""}",68094,1,North America +2024-04-20,84088,741,"[""Monitor""]",2817.68,"{""seasonal"": ""15%""}",262817,1,North America +2023-05-29,84089,2686,"[""Keyboard"", ""Headphones"", ""Laptop""]",3781.42,"{""seasonal"": ""23%""}",278342,1,North America +2024-11-30,84090,1438,"[""Monitor"", ""Keyboard""]",1934.22,{},296932,1,North America +2024-06-10,84091,1946,"[""Wireless Mouse"", ""Laptop""]",3393.76,"{"""": ""13%""}",214640,1,South America +2024-01-19,84092,9328,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2024.36,{},41939,1,Africa +2024-11-05,84093,263,"[""Tablet""]",1876.31,{},295233,1,North America +2023-02-11,84094,188,"[""Laptop"", ""Phone""]",4516.39,{},19291,0,Europe +2024-10-18,84095,117,"[""Tablet"", ""Keyboard"", ""Laptop""]",2191.17,{},47165,1,Asia +2024-01-25,84096,9311,"[""Monitor"", ""Keyboard""]",650.51,{},107677,0,North America +2023-02-20,84097,6233,"[""Phone"", ""Monitor""]",1959.29,{},78447,1,Europe +2024-02-15,84098,1082,"[""Wireless Mouse"", ""Monitor""]",3558.0,"{""promo"": ""30%""}",17620,1,Asia +2023-12-25,84099,9347,"[""Monitor"", ""Laptop"", ""Tablet""]",1895.18,"{""loyalty"": ""8%""}",215302,0,North America +2023-07-07,84100,8243,"[""Headphones"", ""Laptop""]",3847.23,{},6040,0,Asia +2024-02-07,84101,2685,"[""Keyboard"", ""Phone"", ""Headphones""]",662.4,{},220207,1,Asia +2023-08-15,84102,9205,"[""Tablet"", ""Keyboard""]",4337.89,"{"""": ""24%""}",59026,1,Asia +2023-11-16,84103,601,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4723.96,"{""loyalty"": ""18%""}",293279,0,Africa +2024-05-30,84104,5527,"[""Keyboard"", ""Headphones"", ""Monitor""]",3210.6,{},261021,1,Europe +2024-10-21,84105,6584,"[""Wireless Mouse"", ""Monitor""]",3396.88,"{""seasonal"": ""25%""}",9289,0,South America +2023-05-07,84106,1251,"[""Keyboard""]",1811.45,{},74716,1,South America +2023-06-30,84107,342,"[""Tablet""]",2838.9,"{""seasonal"": ""25%""}",269794,0,South America +2023-10-25,84108,190,"[""Tablet""]",3011.85,{},225915,0,Europe +2024-01-05,84109,6870,"[""Headphones""]",4542.6,{},258146,0,South America +2023-08-27,84110,7428,"[""Laptop"", ""Charger"", ""Monitor""]",486.87,{},282260,0,South America +2023-02-27,84111,1032,"[""Headphones"", ""Charger"", ""Monitor""]",2114.33,{},179387,1,South America +2024-04-08,84112,8968,"[""Charger"", ""Monitor""]",229.85,{},44803,1,Africa +2024-07-01,84113,7176,"[""Charger"", ""Monitor""]",1925.22,{},184492,1,North America +2024-01-14,84114,4635,"[""Headphones"", ""Tablet"", ""Keyboard""]",4005.46,{},192051,1,Africa +2024-05-29,84115,9008,"[""Keyboard""]",4148.56,"{""seasonal"": ""29%""}",172778,1,Asia +2023-05-01,84116,4882,"[""Laptop""]",1140.83,"{""promo"": ""30%""}",249680,1,Asia +2023-09-10,84117,5868,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",3307.06,"{""promo"": ""11%""}",195106,1,Africa +2023-09-08,84118,2031,"[""Charger"", ""Wireless Mouse""]",1177.62,"{"""": ""18%""}",97875,0,Africa +2024-10-24,84119,8070,"[""Monitor""]",4030.72,"{""seasonal"": ""24%""}",28902,0,Africa +2024-10-01,84120,9232,"[""Charger"", ""Monitor""]",4583.92,{},289412,1,Africa +2024-12-21,84121,8922,"[""Keyboard"", ""Phone"", ""Tablet""]",1595.52,{},20626,1,Asia +2023-02-28,84122,7217,"[""Wireless Mouse"", ""Monitor""]",2064.14,{},286669,1,South America +2024-06-21,84123,8011,"[""Phone"", ""Keyboard""]",2443.31,{},293463,1,South America +2024-06-21,84124,4292,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",4050.36,"{""seasonal"": ""30%""}",139838,1,Europe +2024-02-07,84125,7578,"[""Monitor"", ""Keyboard"", ""Laptop""]",4095.22,{},269731,1,South America +2024-09-13,84126,4875,"[""Charger"", ""Monitor"", ""Keyboard""]",3733.53,{},176954,0,Asia +2023-01-29,84127,390,"[""Wireless Mouse""]",3106.48,{},122716,0,South America +2024-08-07,84128,7270,"[""Headphones"", ""Charger"", ""Laptop""]",391.87,{},179315,0,North America +2023-04-11,84129,8220,"[""Tablet"", ""Keyboard"", ""Monitor""]",335.23,{},153256,0,Europe +2024-04-06,84130,1084,"[""Laptop"", ""Wireless Mouse""]",2533.03,{},276232,0,Asia +2023-10-12,84131,9560,"[""Phone""]",1244.55,{},272822,1,North America +2023-10-30,84132,7977,"[""Phone""]",4803.92,"{"""": ""17%""}",125091,1,Africa +2023-05-21,84133,2278,"[""Keyboard"", ""Phone""]",2156.05,{},171179,0,Africa +2023-10-03,84134,3658,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2254.38,"{"""": ""12%""}",21336,1,Africa +2024-03-05,84135,4115,"[""Tablet""]",314.72,"{""loyalty"": ""20%""}",165881,1,North America +2023-07-19,84136,3399,"[""Charger"", ""Laptop""]",1108.18,"{""loyalty"": ""26%""}",257823,0,Asia +2024-10-14,84137,3553,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2967.16,"{"""": ""17%""}",49562,1,Europe +2023-12-25,84138,6169,"[""Monitor""]",751.27,"{""seasonal"": ""29%""}",26510,0,Europe +2024-06-15,84139,511,"[""Phone""]",4008.46,{},175187,1,Asia +2023-07-27,84140,7297,"[""Tablet"", ""Wireless Mouse""]",796.17,{},27794,1,Europe +2024-01-23,84141,160,"[""Headphones""]",198.62,"{""seasonal"": ""13%""}",260840,0,Africa +2024-12-30,84142,5854,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4286.49,{},282243,1,Asia +2023-10-05,84143,2675,"[""Headphones""]",4745.6,"{"""": ""7%""}",69410,0,Africa +2023-02-22,84144,8478,"[""Phone"", ""Laptop""]",1550.29,{},48429,1,Europe +2024-05-30,84145,6579,"[""Charger"", ""Phone""]",3701.34,"{""loyalty"": ""23%""}",230705,1,Africa +2024-07-25,84146,6217,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3290.16,{},197511,0,South America +2024-12-14,84147,1122,"[""Charger""]",4246.56,{},244322,0,Africa +2024-04-15,84148,3805,"[""Laptop""]",2083.63,{},72387,0,North America +2023-07-14,84149,7611,"[""Phone"", ""Keyboard""]",1026.76,"{"""": ""22%""}",121383,1,Asia +2024-11-22,84150,1297,"[""Headphones""]",3955.29,"{""seasonal"": ""12%""}",279726,0,Africa +2024-01-26,84151,3414,"[""Keyboard"", ""Tablet""]",364.91,"{""loyalty"": ""8%""}",6226,1,North America +2024-04-12,84152,3580,"[""Tablet""]",2826.69,{},163567,0,North America +2023-11-14,84153,5065,"[""Keyboard"", ""Laptop"", ""Monitor""]",3118.98,"{"""": ""29%""}",90374,0,Europe +2023-04-11,84154,8400,"[""Charger""]",4948.19,{},37906,1,Asia +2024-09-01,84155,886,"[""Laptop"", ""Tablet"", ""Keyboard""]",3778.97,"{""promo"": ""18%""}",1590,1,Europe +2024-06-21,84156,9981,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3880.77,{},160365,0,North America +2023-02-23,84157,8232,"[""Monitor""]",4325.58,{},217243,1,South America +2023-01-25,84158,5043,"[""Monitor""]",198.7,"{""seasonal"": ""28%""}",155060,1,Africa +2023-12-26,84159,4382,"[""Laptop"", ""Headphones"", ""Tablet""]",964.39,{},222036,1,South America +2024-12-16,84160,8154,"[""Laptop"", ""Charger""]",312.78,"{""seasonal"": ""10%""}",9387,0,Africa +2024-01-05,84161,849,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",701.92,{},102348,0,North America +2024-12-05,84162,3525,"[""Monitor"", ""Keyboard""]",3856.58,"{"""": ""24%""}",181753,1,South America +2024-10-17,84163,3875,"[""Monitor"", ""Keyboard"", ""Headphones""]",3962.37,{},262803,1,Asia +2023-04-09,84164,2451,"[""Headphones""]",4730.25,{},229568,1,Africa +2023-11-19,84165,7922,"[""Charger"", ""Laptop"", ""Keyboard""]",2055.48,{},42884,0,Europe +2023-06-25,84166,6736,"[""Tablet"", ""Phone""]",548.92,{},162591,0,South America +2024-10-18,84167,4025,"[""Headphones"", ""Laptop""]",288.32,{},216309,1,Africa +2024-08-09,84168,1281,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1381.69,{},288168,0,Europe +2023-01-09,84169,6068,"[""Tablet""]",2971.99,{},27968,0,Asia +2023-02-17,84170,31,"[""Phone""]",2509.51,{},265568,1,South America +2024-12-03,84171,1534,"[""Charger""]",1330.7,"{"""": ""29%""}",180192,1,North America +2023-09-17,84172,8704,"[""Wireless Mouse"", ""Headphones""]",2561.01,{},54365,0,Asia +2024-09-29,84173,3074,"[""Charger"", ""Tablet"", ""Monitor""]",601.33,"{""loyalty"": ""25%""}",177715,0,Asia +2024-11-25,84174,5427,"[""Wireless Mouse"", ""Laptop""]",3262.94,"{""loyalty"": ""29%""}",134196,1,Asia +2023-01-21,84175,9889,"[""Charger""]",2346.51,"{""seasonal"": ""30%""}",30546,0,Asia +2023-03-24,84176,6344,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",863.35,"{""promo"": ""16%""}",130538,1,South America +2023-09-23,84177,8314,"[""Keyboard"", ""Tablet"", ""Phone""]",1747.52,"{""promo"": ""14%""}",53666,1,Europe +2024-03-23,84178,7979,"[""Wireless Mouse"", ""Charger""]",4839.1,{},246965,0,Asia +2023-09-29,84179,2073,"[""Tablet"", ""Phone""]",3584.89,"{""seasonal"": ""6%""}",214137,0,Europe +2023-06-29,84180,1549,"[""Phone""]",515.93,{},13172,1,Asia +2024-01-30,84181,5545,"[""Headphones""]",400.59,{},288611,1,North America +2024-04-07,84182,6626,"[""Charger"", ""Keyboard""]",119.17,{},261958,0,Africa +2024-01-09,84183,3634,"[""Keyboard""]",773.54,"{""loyalty"": ""17%""}",212900,0,South America +2024-08-17,84184,6996,"[""Laptop"", ""Phone""]",4825.53,"{""promo"": ""5%""}",205250,0,North America +2024-05-14,84185,1350,"[""Keyboard"", ""Tablet"", ""Phone""]",4768.88,{},185480,0,Asia +2024-07-21,84186,3826,"[""Monitor"", ""Laptop"", ""Keyboard""]",2213.1,{},176760,1,Asia +2024-05-26,84187,8085,"[""Tablet"", ""Phone""]",892.83,"{""loyalty"": ""20%""}",277592,0,North America +2024-01-10,84188,8210,"[""Monitor"", ""Tablet""]",1684.52,"{""promo"": ""7%""}",69312,0,Asia +2023-06-05,84189,9518,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2159.62,{},296682,0,Africa +2023-06-15,84190,5755,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1845.77,"{""seasonal"": ""22%""}",209547,1,Asia +2023-10-03,84191,7994,"[""Keyboard"", ""Monitor"", ""Charger""]",495.26,{},207092,0,Europe +2023-12-18,84192,9003,"[""Keyboard"", ""Monitor""]",72.93,{},149382,0,Asia +2023-05-31,84193,8267,"[""Monitor"", ""Keyboard"", ""Tablet""]",3160.97,{},228551,0,Europe +2024-04-23,84194,9359,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2059.89,{},272817,0,Asia +2024-11-28,84195,4805,"[""Keyboard""]",629.08,{},44030,1,Asia +2024-10-23,84196,314,"[""Monitor"", ""Tablet""]",3944.22,"{"""": ""30%""}",128053,0,Europe +2023-09-07,84197,8863,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1647.39,"{""loyalty"": ""24%""}",237708,0,North America +2023-03-11,84198,3201,"[""Tablet"", ""Monitor""]",3559.38,{},255226,0,Africa +2023-03-19,84199,33,"[""Tablet"", ""Headphones""]",2366.73,{},131348,1,Europe +2024-10-09,84200,77,"[""Laptop""]",1414.88,{},17379,0,Asia +2023-12-04,84201,6049,"[""Monitor"", ""Tablet"", ""Laptop""]",2370.92,"{""loyalty"": ""29%""}",63545,0,Asia +2024-04-13,84202,4334,"[""Wireless Mouse""]",3860.89,{},158489,0,Asia +2023-11-09,84203,5268,"[""Phone""]",2651.92,"{""loyalty"": ""23%""}",196223,0,Asia +2024-08-15,84204,5778,"[""Charger"", ""Tablet""]",1854.05,"{"""": ""16%""}",180252,0,Europe +2024-07-02,84205,198,"[""Charger""]",3316.55,"{""promo"": ""13%""}",27440,1,Europe +2024-11-27,84206,3480,"[""Headphones""]",1367.06,"{"""": ""7%""}",153934,0,Europe +2024-07-01,84207,3109,"[""Phone"", ""Headphones"", ""Monitor""]",938.75,"{""loyalty"": ""15%""}",171436,1,Africa +2024-08-23,84208,4894,"[""Headphones"", ""Charger""]",2642.45,"{""promo"": ""8%""}",237225,0,North America +2023-09-07,84209,482,"[""Laptop""]",319.83,{},15701,0,North America +2024-09-21,84210,8895,"[""Phone"", ""Laptop"", ""Headphones""]",965.8,"{""seasonal"": ""18%""}",210103,1,Asia +2024-11-29,84211,5540,"[""Monitor"", ""Headphones"", ""Phone""]",776.52,{},182155,1,North America +2023-06-10,84212,8550,"[""Keyboard""]",1481.23,"{""loyalty"": ""26%""}",90544,0,Europe +2023-01-01,84213,9440,"[""Laptop"", ""Keyboard"", ""Headphones""]",1796.57,{},134414,0,South America +2023-08-05,84214,3109,"[""Headphones""]",2909.84,"{""promo"": ""15%""}",159603,0,North America +2024-10-09,84215,1668,"[""Tablet""]",675.12,{},166283,1,Africa +2024-08-26,84216,3798,"[""Monitor""]",2219.86,{},299679,1,South America +2023-03-25,84217,3825,"[""Headphones"", ""Monitor"", ""Laptop""]",2425.94,"{""seasonal"": ""10%""}",207379,0,Africa +2023-01-17,84218,2791,"[""Monitor"", ""Charger"", ""Keyboard""]",2932.02,{},42267,0,South America +2023-01-24,84219,1752,"[""Phone""]",4028.84,{},196458,0,Europe +2024-08-29,84220,9604,"[""Monitor"", ""Wireless Mouse""]",2879.82,{},24462,0,Europe +2023-08-11,84221,9890,"[""Phone"", ""Charger"", ""Monitor""]",1530.84,{},231319,1,South America +2023-08-18,84222,1406,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1840.79,"{""seasonal"": ""17%""}",62030,1,North America +2024-01-15,84223,6486,"[""Wireless Mouse"", ""Monitor""]",73.14,{},290629,1,South America +2023-06-06,84224,8597,"[""Wireless Mouse""]",4099.42,"{""loyalty"": ""25%""}",189167,0,North America +2024-07-09,84225,2529,"[""Tablet""]",3468.81,"{""seasonal"": ""11%""}",33088,1,Asia +2024-08-17,84226,237,"[""Tablet"", ""Phone""]",3466.29,"{""loyalty"": ""18%""}",165225,1,Africa +2023-07-14,84227,4545,"[""Tablet""]",277.54,"{""seasonal"": ""14%""}",65743,1,South America +2023-02-10,84228,4264,"[""Tablet""]",923.32,"{""loyalty"": ""12%""}",238629,0,Asia +2023-05-08,84229,628,"[""Keyboard"", ""Charger""]",2733.79,{},61486,1,North America +2023-03-03,84230,5280,"[""Laptop""]",3318.54,{},262861,0,North America +2024-10-07,84231,3136,"[""Monitor""]",183.29,{},92686,1,Europe +2024-03-20,84232,2461,"[""Headphones"", ""Charger""]",573.33,"{""seasonal"": ""17%""}",275685,0,South America +2023-12-13,84233,6388,"[""Laptop"", ""Monitor"", ""Headphones""]",1824.53,{},266343,0,Africa +2024-10-31,84234,3181,"[""Headphones"", ""Tablet"", ""Phone""]",3316.89,{},243792,0,North America +2024-04-24,84235,6010,"[""Phone"", ""Monitor"", ""Keyboard""]",3777.14,{},117747,1,Europe +2023-01-12,84236,9817,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1602.82,"{""promo"": ""25%""}",194295,1,South America +2023-10-21,84237,2437,"[""Phone"", ""Keyboard"", ""Monitor""]",1416.14,{},218308,0,Asia +2024-04-26,84238,5872,"[""Charger"", ""Headphones""]",4047.68,{},145534,0,Asia +2023-10-13,84239,3358,"[""Laptop"", ""Monitor"", ""Headphones""]",4454.2,"{"""": ""15%""}",249344,0,Africa +2023-01-24,84240,8586,"[""Laptop"", ""Wireless Mouse""]",3225.55,{},213937,1,Asia +2023-11-29,84241,293,"[""Tablet"", ""Charger"", ""Monitor""]",1133.93,"{"""": ""25%""}",146937,1,North America +2023-07-30,84242,4315,"[""Phone"", ""Tablet""]",3576.11,{},72816,1,Europe +2023-01-21,84243,8021,"[""Headphones"", ""Laptop"", ""Phone""]",3583.82,"{""loyalty"": ""29%""}",258167,1,South America +2023-09-26,84244,3496,"[""Wireless Mouse""]",1718.86,{},194123,0,Europe +2023-01-10,84245,1393,"[""Tablet""]",551.2,"{"""": ""5%""}",88499,1,Africa +2024-07-02,84246,1457,"[""Monitor"", ""Charger"", ""Phone""]",2729.84,{},50419,1,South America +2023-11-25,84247,8785,"[""Keyboard"", ""Monitor"", ""Headphones""]",1743.54,{},192623,1,Asia +2024-12-15,84248,7911,"[""Keyboard"", ""Wireless Mouse""]",891.43,"{""seasonal"": ""14%""}",295378,1,South America +2023-12-26,84249,3606,"[""Charger"", ""Monitor"", ""Laptop""]",3549.0,{},88267,1,South America +2024-05-07,84250,7334,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2673.93,"{""promo"": ""20%""}",238331,0,Africa +2023-10-15,84251,8105,"[""Charger"", ""Monitor"", ""Keyboard""]",236.48,{},80415,0,Asia +2024-01-12,84252,8830,"[""Tablet"", ""Headphones"", ""Keyboard""]",4961.87,{},168869,0,Europe +2024-08-11,84253,5786,"[""Monitor""]",243.25,"{""promo"": ""14%""}",124935,1,South America +2024-01-19,84254,1839,"[""Monitor"", ""Keyboard"", ""Charger""]",3344.59,{},164908,0,Europe +2023-02-21,84255,9089,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2711.9,"{"""": ""27%""}",298958,1,North America +2024-03-03,84256,7341,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4864.74,"{""loyalty"": ""6%""}",254398,1,Asia +2024-11-11,84257,7505,"[""Phone""]",3171.91,"{""promo"": ""5%""}",124487,1,North America +2023-09-22,84258,5246,"[""Keyboard"", ""Tablet"", ""Headphones""]",762.48,"{"""": ""7%""}",27504,0,North America +2024-03-31,84259,5696,"[""Laptop""]",2323.23,{},158165,0,South America +2023-01-17,84260,2145,"[""Monitor"", ""Phone"", ""Keyboard""]",273.92,"{""loyalty"": ""14%""}",41359,1,Europe +2023-10-10,84261,5795,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2833.43,"{"""": ""6%""}",224928,1,South America +2024-02-15,84262,1647,"[""Keyboard""]",4620.85,{},281664,0,Asia +2024-01-09,84263,6124,"[""Wireless Mouse"", ""Monitor""]",2706.3,"{"""": ""11%""}",91450,0,North America +2024-09-06,84264,4651,"[""Tablet""]",4685.61,"{"""": ""25%""}",94072,0,South America +2024-08-26,84265,7785,"[""Headphones"", ""Keyboard""]",1357.58,"{""seasonal"": ""10%""}",263820,1,North America +2024-08-07,84266,902,"[""Tablet"", ""Monitor"", ""Laptop""]",1551.97,{},89625,1,Africa +2023-08-21,84267,9902,"[""Headphones""]",4775.47,{},66448,0,Africa +2023-08-14,84268,1806,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1866.41,"{""seasonal"": ""26%""}",250553,1,Europe +2024-08-26,84269,1601,"[""Wireless Mouse"", ""Laptop""]",4962.28,{},191902,1,Asia +2024-12-14,84270,2415,"[""Keyboard"", ""Headphones"", ""Monitor""]",3506.9,{},133157,1,South America +2023-11-02,84271,1387,"[""Tablet""]",631.95,{},85380,0,North America +2024-11-30,84272,347,"[""Tablet"", ""Keyboard"", ""Laptop""]",4480.62,{},69568,0,Asia +2023-08-08,84273,5530,"[""Charger"", ""Monitor""]",1175.55,{},108530,0,Asia +2024-05-01,84274,21,"[""Phone"", ""Keyboard""]",2866.15,"{""promo"": ""10%""}",53007,1,Africa +2023-04-30,84275,2973,"[""Phone"", ""Wireless Mouse""]",1202.94,{},18293,0,South America +2024-11-11,84276,3284,"[""Charger"", ""Laptop""]",2713.38,{},148934,0,Africa +2024-03-17,84277,3301,"[""Charger"", ""Laptop""]",1650.86,{},225947,1,Africa +2024-01-08,84278,419,"[""Charger"", ""Wireless Mouse""]",158.21,"{""loyalty"": ""28%""}",284299,0,North America +2023-03-15,84279,2896,"[""Headphones""]",2396.21,{},236297,0,Europe +2023-10-04,84280,5205,"[""Keyboard""]",1077.16,"{""promo"": ""28%""}",186754,0,Africa +2023-03-19,84281,798,"[""Keyboard"", ""Headphones""]",3204.84,"{""loyalty"": ""17%""}",166667,0,Europe +2023-02-02,84282,704,"[""Keyboard"", ""Headphones"", ""Monitor""]",3081.85,{},261421,0,Europe +2024-01-23,84283,6787,"[""Phone"", ""Monitor""]",1411.07,"{""loyalty"": ""19%""}",105550,0,Africa +2024-07-14,84284,3005,"[""Monitor""]",145.38,{},216028,0,Asia +2023-08-26,84285,6366,"[""Charger"", ""Monitor""]",2267.04,{},46449,1,South America +2023-11-01,84286,254,"[""Wireless Mouse"", ""Charger""]",2598.32,{},19557,1,Africa +2023-04-06,84287,5570,"[""Charger""]",3056.21,"{"""": ""28%""}",255138,0,South America +2023-03-19,84288,7178,"[""Laptop"", ""Tablet""]",209.45,{},283937,1,South America +2023-11-18,84289,8243,"[""Headphones"", ""Tablet""]",170.73,{},164039,0,South America +2023-06-19,84290,1360,"[""Wireless Mouse""]",1281.2,{},40565,1,North America +2023-04-13,84291,849,"[""Laptop""]",526.57,"{"""": ""12%""}",101497,0,Europe +2023-03-20,84292,2806,"[""Keyboard""]",1244.64,"{""loyalty"": ""19%""}",35655,0,South America +2023-05-05,84293,5657,"[""Monitor"", ""Tablet""]",336.73,{},293632,0,Europe +2023-09-16,84294,2671,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",162.32,{},260534,1,Europe +2024-12-21,84295,1136,"[""Phone""]",4005.53,"{""promo"": ""16%""}",157983,0,South America +2023-04-04,84296,1485,"[""Keyboard"", ""Phone""]",709.56,{},266683,1,Europe +2023-06-04,84297,6149,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4618.57,"{""seasonal"": ""7%""}",36740,1,North America +2024-10-14,84298,8203,"[""Laptop"", ""Monitor""]",2911.89,{},122057,1,Europe +2024-09-28,84299,4610,"[""Headphones"", ""Phone""]",1240.71,"{""promo"": ""9%""}",112830,0,Asia +2023-04-04,84300,5951,"[""Laptop"", ""Keyboard""]",4477.73,"{""loyalty"": ""20%""}",289771,0,North America +2024-08-23,84301,9119,"[""Tablet""]",208.45,{},21713,1,Africa +2023-08-04,84302,2036,"[""Wireless Mouse"", ""Laptop""]",2166.26,"{""promo"": ""23%""}",28300,0,Europe +2024-10-31,84303,5953,"[""Headphones""]",1509.8,{},252133,1,Africa +2023-10-12,84304,8208,"[""Laptop"", ""Headphones"", ""Phone""]",522.1,{},181231,1,Asia +2023-06-20,84305,2997,"[""Charger"", ""Headphones"", ""Monitor""]",3302.28,"{""promo"": ""15%""}",13472,0,Asia +2024-04-09,84306,1321,"[""Monitor""]",745.69,{},194864,1,South America +2024-09-12,84307,4823,"[""Phone""]",4670.84,"{""seasonal"": ""14%""}",106050,0,Asia +2023-02-27,84308,9279,"[""Laptop"", ""Headphones"", ""Phone""]",928.82,{},265679,1,Africa +2023-07-09,84309,4239,"[""Keyboard"", ""Laptop"", ""Charger""]",4719.55,"{"""": ""28%""}",58056,0,Europe +2023-04-12,84310,9474,"[""Phone"", ""Headphones"", ""Keyboard""]",60.37,{},268780,0,North America +2023-11-19,84311,466,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1859.04,"{""loyalty"": ""28%""}",70279,1,South America +2024-07-27,84312,2398,"[""Phone"", ""Charger"", ""Tablet""]",1902.19,{},116731,0,North America +2023-04-11,84313,9039,"[""Tablet""]",4975.23,"{""seasonal"": ""5%""}",53501,1,North America +2023-05-10,84314,100,"[""Tablet"", ""Monitor""]",1248.43,"{""promo"": ""13%""}",122827,0,Africa +2023-07-22,84315,1361,"[""Headphones"", ""Monitor""]",1050.35,"{"""": ""12%""}",226633,0,South America +2023-12-15,84316,5868,"[""Tablet"", ""Charger""]",1213.92,{},178862,0,Africa +2024-06-03,84317,408,"[""Laptop"", ""Tablet"", ""Monitor""]",4880.07,"{""loyalty"": ""26%""}",37865,0,Asia +2024-03-18,84318,5848,"[""Phone""]",584.81,{},247672,1,Africa +2023-07-04,84319,344,"[""Headphones""]",3301.8,{},31134,0,Europe +2023-05-25,84320,1488,"[""Charger""]",4645.08,"{""seasonal"": ""13%""}",155883,0,Africa +2023-09-20,84321,2466,"[""Laptop"", ""Tablet"", ""Headphones""]",1740.39,"{""loyalty"": ""11%""}",247882,0,South America +2024-12-04,84322,5350,"[""Charger"", ""Phone"", ""Laptop""]",503.93,{},172036,0,Africa +2023-12-04,84323,9400,"[""Monitor"", ""Laptop""]",4527.28,"{""promo"": ""11%""}",206353,1,Europe +2024-11-27,84324,8372,"[""Headphones"", ""Monitor""]",3763.72,{},221231,1,North America +2023-02-22,84325,4058,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",501.29,{},36880,1,Asia +2024-12-06,84326,3370,"[""Keyboard""]",2879.05,{},287713,1,South America +2023-12-19,84327,3925,"[""Wireless Mouse"", ""Phone""]",2403.99,{},205516,0,Europe +2024-01-23,84328,4922,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3549.1,{},189416,1,Asia +2024-07-12,84329,7867,"[""Charger"", ""Laptop"", ""Phone""]",4884.34,{},121638,1,Asia +2023-05-14,84330,941,"[""Monitor"", ""Laptop""]",4876.76,"{"""": ""17%""}",173311,0,Asia +2024-06-10,84331,5823,"[""Wireless Mouse""]",1087.27,{},272081,0,North America +2023-04-20,84332,6799,"[""Phone"", ""Charger""]",4024.0,"{""loyalty"": ""29%""}",148377,1,Africa +2024-09-10,84333,9933,"[""Laptop"", ""Keyboard"", ""Charger""]",2103.31,{},130551,0,South America +2023-01-13,84334,279,"[""Headphones"", ""Tablet""]",3416.59,{},150310,0,North America +2023-07-09,84335,2513,"[""Laptop""]",2032.72,{},62865,0,Asia +2024-03-09,84336,7946,"[""Tablet"", ""Wireless Mouse""]",3580.7,{},11812,0,South America +2023-09-12,84337,3492,"[""Headphones"", ""Tablet""]",1054.94,{},262433,1,North America +2023-01-19,84338,6903,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1913.72,{},191150,1,South America +2024-08-13,84339,6483,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4774.29,"{"""": ""16%""}",116910,1,Africa +2023-12-14,84340,2866,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4180.56,{},37829,0,North America +2023-07-15,84341,5644,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",736.06,{},206055,0,Africa +2024-06-18,84342,6503,"[""Monitor""]",4872.66,"{""loyalty"": ""30%""}",235385,0,Asia +2023-11-27,84343,7257,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3910.63,{},39433,1,Europe +2024-03-01,84344,2259,"[""Monitor"", ""Keyboard"", ""Headphones""]",1139.15,"{""promo"": ""14%""}",212074,0,South America +2023-12-08,84345,3553,"[""Keyboard""]",1299.41,"{""seasonal"": ""9%""}",293339,1,Europe +2023-05-25,84346,4087,"[""Laptop"", ""Headphones""]",417.27,"{""loyalty"": ""10%""}",57923,1,South America +2023-07-08,84347,3349,"[""Charger""]",3790.84,{},72641,0,Asia +2024-03-29,84348,321,"[""Monitor""]",583.11,{},193829,1,South America +2024-03-05,84349,5250,"[""Tablet""]",4314.29,{},140589,0,North America +2023-09-01,84350,8618,"[""Headphones"", ""Keyboard""]",2843.44,{},125706,0,South America +2023-01-15,84351,8724,"[""Headphones""]",2804.2,"{""promo"": ""7%""}",111019,0,Europe +2023-10-27,84352,5983,"[""Monitor""]",3483.05,{},233654,1,Asia +2024-02-08,84353,2154,"[""Monitor""]",1892.22,"{"""": ""8%""}",143279,0,South America +2023-01-06,84354,8047,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",408.97,{},58978,1,Africa +2024-12-30,84355,9735,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",239.45,{},221141,0,Europe +2023-01-28,84356,2962,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1351.41,{},115595,1,Europe +2024-03-01,84357,4919,"[""Monitor"", ""Laptop"", ""Tablet""]",3602.34,{},41208,1,North America +2023-06-26,84358,9274,"[""Headphones"", ""Keyboard"", ""Charger""]",4122.49,"{"""": ""19%""}",187121,0,Africa +2023-12-14,84359,1133,"[""Charger""]",4038.6,"{""promo"": ""14%""}",163289,0,Europe +2024-06-23,84360,4183,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3470.94,{},169243,0,North America +2023-06-07,84361,7571,"[""Monitor"", ""Laptop""]",3293.27,"{""loyalty"": ""8%""}",144164,1,Europe +2023-10-19,84362,2729,"[""Keyboard""]",3048.4,"{""loyalty"": ""26%""}",247606,0,South America +2024-02-04,84363,2691,"[""Wireless Mouse"", ""Monitor""]",1725.75,"{""loyalty"": ""19%""}",233420,1,Europe +2024-06-08,84364,8349,"[""Keyboard""]",2459.69,"{""loyalty"": ""19%""}",146388,0,Asia +2023-04-12,84365,9219,"[""Monitor""]",1668.61,"{"""": ""30%""}",231624,1,South America +2023-06-20,84366,6797,"[""Keyboard"", ""Headphones"", ""Phone""]",3485.26,"{"""": ""7%""}",3841,0,Asia +2023-03-25,84367,3602,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1569.33,{},216972,1,North America +2024-01-12,84368,6258,"[""Charger"", ""Monitor"", ""Laptop""]",4932.36,{},132968,0,Asia +2024-03-28,84369,824,"[""Monitor""]",2488.33,"{"""": ""21%""}",84482,0,North America +2023-01-27,84370,2028,"[""Keyboard"", ""Headphones""]",2268.13,{},286827,1,North America +2023-06-02,84371,9620,"[""Charger"", ""Phone"", ""Keyboard""]",385.92,{},209284,1,South America +2023-08-15,84372,1947,"[""Laptop""]",1603.99,"{""loyalty"": ""16%""}",174911,1,Asia +2024-01-17,84373,4237,"[""Phone"", ""Wireless Mouse""]",550.72,{},259115,0,South America +2024-12-03,84374,3857,"[""Phone"", ""Laptop""]",940.1,{},28027,1,Africa +2024-12-02,84375,6275,"[""Laptop"", ""Phone"", ""Keyboard""]",2944.38,{},40012,1,North America +2023-12-14,84376,6926,"[""Keyboard""]",1749.7,"{""seasonal"": ""23%""}",73773,0,South America +2023-03-17,84377,5184,"[""Laptop""]",2169.2,"{""promo"": ""29%""}",241486,1,Africa +2024-02-05,84378,6699,"[""Keyboard"", ""Wireless Mouse""]",4680.4,"{""loyalty"": ""5%""}",188520,0,North America +2023-07-06,84379,5252,"[""Phone"", ""Laptop""]",1445.42,{},93218,1,South America +2024-04-28,84380,2101,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",263.15,"{""seasonal"": ""14%""}",296479,1,North America +2024-07-14,84381,2291,"[""Headphones"", ""Tablet"", ""Charger""]",379.09,"{"""": ""17%""}",287735,0,Africa +2023-05-12,84382,2208,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",289.65,"{"""": ""23%""}",131485,1,Africa +2024-02-01,84383,6971,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",643.99,"{""promo"": ""7%""}",143878,0,Africa +2023-05-12,84384,7041,"[""Keyboard"", ""Tablet""]",4888.65,"{""loyalty"": ""8%""}",39777,0,Europe +2024-04-01,84385,6706,"[""Charger""]",137.19,"{"""": ""5%""}",26752,0,Asia +2024-07-22,84386,9006,"[""Wireless Mouse"", ""Keyboard""]",235.25,"{"""": ""21%""}",204229,1,Africa +2024-09-15,84387,8344,"[""Laptop""]",3438.78,"{"""": ""16%""}",232435,0,Africa +2024-12-20,84388,4151,"[""Monitor"", ""Keyboard"", ""Charger""]",214.39,{},26025,1,Europe +2023-05-08,84389,7411,"[""Charger"", ""Monitor"", ""Laptop""]",932.94,"{"""": ""24%""}",162906,1,South America +2023-02-24,84390,2231,"[""Phone"", ""Charger"", ""Headphones""]",4867.54,"{""seasonal"": ""5%""}",267933,0,South America +2023-06-05,84391,1015,"[""Charger"", ""Headphones"", ""Tablet""]",2380.58,"{"""": ""28%""}",297295,1,North America +2024-10-22,84392,923,"[""Charger""]",2229.02,"{""promo"": ""16%""}",143645,0,Asia +2023-06-14,84393,2610,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4524.24,{},46855,1,North America +2024-02-12,84394,1215,"[""Laptop"", ""Tablet""]",2133.22,{},131273,1,Asia +2023-02-20,84395,1685,"[""Phone"", ""Laptop"", ""Charger""]",2806.43,{},69965,0,Africa +2024-05-25,84396,7245,"[""Monitor""]",4048.62,"{""seasonal"": ""26%""}",95333,1,North America +2023-06-22,84397,4755,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4659.53,{},121738,0,Africa +2024-10-16,84398,7571,"[""Phone""]",2322.76,{},130530,1,Asia +2024-07-09,84399,6898,"[""Charger""]",156.08,"{""seasonal"": ""23%""}",13625,1,Asia +2023-04-01,84400,9944,"[""Monitor""]",1246.44,"{""promo"": ""7%""}",245803,1,South America +2023-07-01,84401,8833,"[""Tablet""]",3895.69,"{""seasonal"": ""10%""}",29127,0,North America +2023-06-21,84402,5202,"[""Charger"", ""Tablet""]",3681.2,"{""loyalty"": ""29%""}",68996,0,Africa +2024-09-08,84403,6071,"[""Charger"", ""Wireless Mouse""]",4153.7,{},116642,0,Asia +2024-03-23,84404,6739,"[""Tablet"", ""Laptop""]",1004.11,{},64942,0,Europe +2024-07-29,84405,2847,"[""Tablet"", ""Charger"", ""Phone""]",3288.42,{},69043,1,Asia +2024-06-03,84406,9849,"[""Wireless Mouse""]",4823.52,"{""promo"": ""21%""}",64155,0,Europe +2023-08-24,84407,6432,"[""Monitor"", ""Phone""]",1166.79,{},18236,0,North America +2024-05-06,84408,571,"[""Phone"", ""Keyboard""]",2080.08,"{""promo"": ""16%""}",236077,1,Asia +2024-12-25,84409,8297,"[""Keyboard"", ""Tablet""]",3570.89,"{""loyalty"": ""13%""}",100499,1,Asia +2023-04-17,84410,1908,"[""Phone"", ""Headphones""]",2736.08,"{"""": ""26%""}",48429,0,Asia +2023-02-01,84411,4641,"[""Keyboard"", ""Headphones""]",4027.17,{},242512,0,Africa +2023-06-11,84412,8421,"[""Phone""]",2898.43,"{""seasonal"": ""6%""}",85364,0,South America +2023-02-27,84413,316,"[""Charger"", ""Wireless Mouse""]",2020.45,{},28721,0,Africa +2023-11-02,84414,6061,"[""Charger""]",3449.04,{},8256,1,North America +2023-04-14,84415,6444,"[""Wireless Mouse"", ""Phone""]",2415.06,{},160500,0,South America +2024-08-23,84416,6636,"[""Phone""]",2713.07,"{""promo"": ""12%""}",7758,1,North America +2023-05-12,84417,6383,"[""Tablet""]",1161.74,"{"""": ""5%""}",82515,0,Europe +2024-04-04,84418,1122,"[""Charger"", ""Phone"", ""Headphones""]",2436.04,{},96770,1,Europe +2024-03-24,84419,1371,"[""Headphones"", ""Monitor"", ""Tablet""]",3732.66,"{"""": ""8%""}",51424,1,Europe +2023-07-24,84420,9851,"[""Laptop""]",3603.25,{},8713,1,Africa +2023-03-10,84421,4454,"[""Phone""]",453.74,{},197566,1,Europe +2023-07-12,84422,9433,"[""Headphones""]",3014.97,{},180730,0,Asia +2023-01-12,84423,355,"[""Keyboard"", ""Headphones"", ""Phone""]",270.8,"{""loyalty"": ""5%""}",131850,0,Europe +2024-05-16,84424,2592,"[""Monitor"", ""Keyboard""]",3440.11,{},160554,1,Africa +2024-01-27,84425,5572,"[""Wireless Mouse""]",740.17,"{"""": ""14%""}",213196,0,South America +2023-05-22,84426,5973,"[""Wireless Mouse""]",1733.78,{},135186,1,North America +2024-07-22,84427,3386,"[""Phone"", ""Monitor""]",1301.12,"{"""": ""6%""}",22965,1,Europe +2023-05-27,84428,9396,"[""Phone"", ""Charger""]",155.55,"{""seasonal"": ""8%""}",46567,0,South America +2023-01-07,84429,2639,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2676.54,{},205096,1,South America +2024-04-26,84430,2236,"[""Headphones"", ""Laptop"", ""Monitor""]",2378.48,"{"""": ""9%""}",249946,1,Asia +2024-07-30,84431,7747,"[""Laptop"", ""Phone""]",4894.38,"{"""": ""19%""}",147993,1,North America +2024-06-03,84432,4083,"[""Laptop""]",1545.87,"{""promo"": ""16%""}",170192,0,North America +2024-01-06,84433,4144,"[""Monitor"", ""Laptop""]",1778.08,"{""seasonal"": ""17%""}",102041,0,Asia +2023-01-07,84434,8023,"[""Monitor"", ""Keyboard"", ""Phone""]",4178.16,{},115600,0,North America +2023-11-18,84435,3883,"[""Phone"", ""Tablet""]",4809.37,"{""promo"": ""19%""}",297761,0,South America +2023-07-09,84436,4705,"[""Laptop"", ""Headphones"", ""Tablet""]",803.22,"{""seasonal"": ""15%""}",47960,0,North America +2023-09-06,84437,686,"[""Keyboard"", ""Charger"", ""Laptop""]",1727.28,"{""promo"": ""12%""}",53007,1,Africa +2024-06-08,84438,7698,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2444.93,"{""seasonal"": ""30%""}",150596,1,North America +2024-04-23,84439,7566,"[""Keyboard""]",4976.62,{},193521,1,North America +2023-01-01,84440,8913,"[""Wireless Mouse""]",4671.56,"{"""": ""20%""}",277711,1,North America +2023-06-04,84441,909,"[""Tablet"", ""Monitor"", ""Laptop""]",1249.25,{},104764,0,South America +2023-04-18,84442,7282,"[""Laptop"", ""Charger""]",2913.4,{},38213,1,South America +2024-09-27,84443,8328,"[""Monitor"", ""Keyboard""]",752.26,"{"""": ""25%""}",195076,1,South America +2024-06-04,84444,9775,"[""Tablet""]",394.08,"{""promo"": ""9%""}",19301,0,Europe +2024-12-27,84445,7892,"[""Wireless Mouse""]",4852.88,"{""loyalty"": ""18%""}",223682,0,Asia +2023-06-05,84446,1248,"[""Phone""]",1178.18,"{""promo"": ""23%""}",258679,0,Asia +2023-06-24,84447,866,"[""Monitor"", ""Tablet"", ""Charger""]",4693.41,{},153086,1,Asia +2023-02-19,84448,98,"[""Phone"", ""Keyboard"", ""Monitor""]",4850.05,"{"""": ""5%""}",273478,0,Asia +2024-04-25,84449,5084,"[""Phone""]",2178.22,"{""promo"": ""21%""}",251305,1,North America +2024-02-28,84450,9338,"[""Monitor"", ""Charger""]",478.34,{},162361,0,Europe +2024-12-19,84451,4002,"[""Keyboard""]",998.06,"{"""": ""17%""}",77853,1,South America +2024-05-21,84452,4828,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4633.86,{},106085,1,South America +2023-05-10,84453,3431,"[""Headphones"", ""Keyboard""]",259.06,{},8580,0,North America +2024-01-31,84454,7700,"[""Tablet"", ""Phone""]",4401.71,"{"""": ""23%""}",297543,1,Europe +2023-06-27,84455,622,"[""Headphones"", ""Tablet""]",392.65,"{""loyalty"": ""28%""}",212149,1,North America +2024-03-17,84456,5283,"[""Charger""]",3551.94,{},249523,0,Asia +2024-06-17,84457,617,"[""Laptop"", ""Wireless Mouse""]",3154.48,"{""seasonal"": ""5%""}",290669,1,Africa +2023-10-30,84458,4150,"[""Headphones""]",2885.41,"{"""": ""27%""}",281905,1,Europe +2023-03-26,84459,339,"[""Phone"", ""Charger"", ""Keyboard""]",1340.56,"{"""": ""15%""}",20540,1,Asia +2024-04-30,84460,448,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3848.41,"{""loyalty"": ""9%""}",203370,0,North America +2023-04-19,84461,3268,"[""Headphones"", ""Laptop""]",1227.81,"{""loyalty"": ""14%""}",191592,1,Asia +2023-07-13,84462,5189,"[""Charger""]",1235.03,"{""promo"": ""21%""}",202080,1,Asia +2024-11-24,84463,2539,"[""Headphones""]",2358.2,"{""promo"": ""21%""}",276534,1,South America +2024-09-20,84464,599,"[""Keyboard""]",4808.12,"{""seasonal"": ""13%""}",134339,1,Asia +2023-12-03,84465,8569,"[""Wireless Mouse""]",490.88,"{""promo"": ""17%""}",180856,1,Africa +2023-08-13,84466,8263,"[""Phone""]",3292.23,{},132871,1,Africa +2023-01-24,84467,2518,"[""Laptop"", ""Keyboard""]",2494.87,"{""promo"": ""11%""}",86664,1,Europe +2023-10-02,84468,2516,"[""Monitor""]",2336.33,"{"""": ""25%""}",287178,0,Asia +2024-12-22,84469,4,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3356.78,{},38572,1,South America +2023-01-21,84470,5086,"[""Monitor""]",4508.35,{},5274,0,Africa +2023-06-24,84471,2964,"[""Phone""]",2450.57,{},248034,0,South America +2023-07-12,84472,5689,"[""Laptop"", ""Charger"", ""Monitor""]",4464.55,{},211964,1,Africa +2023-11-06,84473,6771,"[""Charger""]",2500.62,"{"""": ""25%""}",95449,1,North America +2024-06-13,84474,7512,"[""Laptop""]",2899.93,"{""loyalty"": ""11%""}",135346,0,South America +2023-04-23,84475,7360,"[""Phone"", ""Wireless Mouse""]",4661.38,{},18681,1,Asia +2024-02-01,84476,5485,"[""Monitor""]",2878.7,"{"""": ""12%""}",232136,0,Europe +2024-04-13,84477,8821,"[""Keyboard"", ""Monitor"", ""Phone""]",3747.06,"{""loyalty"": ""17%""}",126748,1,Europe +2023-03-14,84478,3701,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3762.81,"{""loyalty"": ""28%""}",137119,1,Africa +2023-12-27,84479,8254,"[""Monitor"", ""Wireless Mouse""]",3722.5,{},120209,1,North America +2023-07-11,84480,8441,"[""Monitor"", ""Laptop""]",1423.91,{},171615,0,South America +2023-07-27,84481,6227,"[""Keyboard""]",3655.82,{},2875,0,Europe +2024-01-24,84482,9110,"[""Wireless Mouse"", ""Headphones""]",1552.28,"{""loyalty"": ""17%""}",205179,1,Africa +2023-03-22,84483,1287,"[""Monitor"", ""Laptop""]",2688.23,{},6044,1,North America +2024-08-17,84484,7651,"[""Charger""]",3844.0,"{""loyalty"": ""19%""}",38678,1,Africa +2024-02-20,84485,2279,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1573.7,"{"""": ""15%""}",160289,1,Africa +2024-03-05,84486,2870,"[""Headphones"", ""Charger"", ""Tablet""]",2816.76,"{""loyalty"": ""18%""}",98408,1,South America +2024-10-19,84487,6033,"[""Phone""]",4473.06,"{""seasonal"": ""27%""}",176767,0,South America +2024-05-26,84488,4444,"[""Tablet""]",889.0,"{""loyalty"": ""27%""}",271629,0,Africa +2023-09-29,84489,988,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",795.33,"{""seasonal"": ""6%""}",264809,1,North America +2023-12-09,84490,7612,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1523.01,{},54065,0,South America +2024-01-07,84491,4986,"[""Wireless Mouse""]",819.95,{},247306,1,North America +2023-11-16,84492,6546,"[""Charger"", ""Headphones""]",399.59,"{""promo"": ""26%""}",202171,1,North America +2024-09-09,84493,1270,"[""Monitor""]",1225.53,"{""loyalty"": ""5%""}",214734,1,Europe +2023-05-14,84494,5562,"[""Laptop"", ""Phone""]",913.57,"{""loyalty"": ""21%""}",191346,1,Europe +2023-01-28,84495,8250,"[""Keyboard""]",4252.98,"{"""": ""8%""}",84085,0,Asia +2023-10-27,84496,3836,"[""Monitor""]",1648.21,{},199592,0,Asia +2024-03-19,84497,1179,"[""Wireless Mouse"", ""Phone""]",1420.43,{},174226,1,South America +2023-10-25,84498,3060,"[""Wireless Mouse""]",4618.8,{},6051,1,South America +2024-05-07,84499,424,"[""Monitor"", ""Wireless Mouse""]",4870.06,"{""promo"": ""18%""}",13335,0,South America +2024-04-25,84500,9844,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1396.33,{},211644,1,Africa +2023-11-10,84501,6783,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1790.74,{},128548,0,North America +2023-08-04,84502,9379,"[""Tablet"", ""Charger"", ""Laptop""]",3071.6,{},248170,1,North America +2023-10-05,84503,9739,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",273.55,"{""loyalty"": ""11%""}",268614,0,Europe +2023-01-03,84504,1424,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",539.09,"{""loyalty"": ""14%""}",135859,1,North America +2024-04-23,84505,5694,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",534.99,{},135213,1,North America +2024-02-20,84506,8296,"[""Wireless Mouse"", ""Keyboard""]",2589.81,{},120137,0,Africa +2023-03-19,84507,1252,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2260.5,{},279017,1,Europe +2023-09-30,84508,4501,"[""Monitor""]",3592.84,{},42300,1,Africa +2023-12-28,84509,6680,"[""Keyboard"", ""Phone""]",2657.19,"{""loyalty"": ""27%""}",97267,0,Asia +2024-10-17,84510,3607,"[""Tablet"", ""Keyboard"", ""Headphones""]",337.47,{},140062,0,Africa +2024-10-11,84511,9374,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4809.34,{},269306,1,Europe +2023-09-26,84512,5532,"[""Charger"", ""Laptop""]",4091.37,{},69655,1,South America +2023-05-09,84513,6913,"[""Phone"", ""Charger""]",3556.43,"{"""": ""13%""}",265812,1,Africa +2023-03-26,84514,7383,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2696.28,{},130765,1,Europe +2023-03-24,84515,1652,"[""Tablet"", ""Headphones""]",4294.49,"{""loyalty"": ""9%""}",157881,1,South America +2023-02-09,84516,678,"[""Keyboard""]",130.28,{},86722,0,North America +2024-09-26,84517,6620,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",74.02,{},38594,1,Europe +2023-12-12,84518,5324,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3034.74,{},169660,1,North America +2024-01-10,84519,1875,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2725.09,"{""promo"": ""5%""}",284717,1,Africa +2023-02-02,84520,6653,"[""Tablet""]",337.23,"{"""": ""29%""}",70491,1,North America +2024-02-12,84521,2832,"[""Monitor"", ""Headphones""]",2547.91,"{""seasonal"": ""30%""}",75500,1,North America +2023-09-19,84522,7186,"[""Charger"", ""Laptop"", ""Monitor""]",766.22,"{""loyalty"": ""8%""}",279620,1,North America +2024-10-12,84523,9468,"[""Laptop"", ""Wireless Mouse""]",4519.78,{},24265,0,Africa +2023-05-08,84524,1437,"[""Tablet""]",3007.55,"{"""": ""6%""}",164988,0,Europe +2024-05-27,84525,9175,"[""Headphones""]",1812.67,"{""seasonal"": ""23%""}",102844,0,North America +2024-09-22,84526,299,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4486.75,{},198195,1,Africa +2024-11-18,84527,1408,"[""Wireless Mouse"", ""Monitor""]",3873.54,"{""loyalty"": ""15%""}",217054,1,South America +2023-07-18,84528,9349,"[""Phone"", ""Keyboard"", ""Charger""]",2232.69,"{""promo"": ""25%""}",248523,0,South America +2024-08-04,84529,1668,"[""Monitor"", ""Tablet""]",2944.14,"{""loyalty"": ""17%""}",175864,1,Africa +2023-03-25,84530,5397,"[""Monitor"", ""Tablet"", ""Headphones""]",1011.84,"{""seasonal"": ""23%""}",224754,0,Africa +2024-05-21,84531,2754,"[""Phone""]",2836.66,"{""seasonal"": ""25%""}",57444,0,North America +2023-06-11,84532,3851,"[""Wireless Mouse""]",2908.87,"{"""": ""24%""}",70411,0,North America +2023-03-12,84533,3211,"[""Laptop"", ""Monitor""]",1692.23,{},190247,1,Asia +2023-06-04,84534,7737,"[""Keyboard"", ""Headphones"", ""Laptop""]",1245.83,"{"""": ""5%""}",176071,1,Asia +2024-09-17,84535,6771,"[""Laptop"", ""Monitor""]",2410.95,{},289838,0,Europe +2024-12-18,84536,9879,"[""Charger""]",2399.79,{},64817,1,Asia +2024-09-16,84537,8171,"[""Tablet""]",995.39,{},297257,0,Asia +2024-01-08,84538,2174,"[""Laptop""]",611.98,{},24465,1,Europe +2024-08-06,84539,4363,"[""Keyboard""]",1033.73,{},61363,0,South America +2023-01-09,84540,4954,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1315.94,{},30021,0,North America +2024-04-24,84541,7056,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1344.67,{},207352,1,Asia +2024-03-26,84542,3599,"[""Tablet""]",294.45,"{"""": ""16%""}",103378,1,Asia +2024-05-09,84543,7549,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",926.99,{},163240,0,South America +2024-06-01,84544,4952,"[""Wireless Mouse"", ""Charger""]",1768.38,{},125292,0,South America +2023-09-28,84545,9044,"[""Headphones""]",245.52,"{""loyalty"": ""29%""}",2564,1,Asia +2023-05-09,84546,4444,"[""Monitor"", ""Tablet""]",782.71,"{""seasonal"": ""19%""}",13209,0,North America +2024-07-14,84547,3842,"[""Laptop""]",639.35,{},288216,1,Europe +2023-03-27,84548,4439,"[""Charger""]",4424.17,"{""loyalty"": ""30%""}",284424,0,Africa +2024-05-20,84549,7997,"[""Charger""]",4739.02,"{""loyalty"": ""24%""}",117756,1,South America +2023-12-31,84550,9097,"[""Phone""]",2794.69,{},227776,1,Africa +2023-09-07,84551,7624,"[""Keyboard""]",4350.22,{},214445,1,North America +2024-08-04,84552,8296,"[""Headphones"", ""Tablet""]",2524.82,{},219384,1,South America +2023-11-22,84553,1423,"[""Phone"", ""Charger"", ""Tablet""]",2217.15,{},260874,1,Europe +2023-06-28,84554,3750,"[""Phone"", ""Keyboard""]",4565.28,{},224431,1,Asia +2024-12-16,84555,6544,"[""Tablet"", ""Wireless Mouse""]",2522.39,"{""seasonal"": ""20%""}",220001,0,North America +2024-09-12,84556,7263,"[""Laptop"", ""Tablet""]",2100.08,{},93510,1,South America +2024-02-23,84557,3395,"[""Monitor"", ""Headphones"", ""Phone""]",3958.53,"{""seasonal"": ""15%""}",262469,1,Europe +2024-10-12,84558,496,"[""Charger""]",1582.83,{},194468,0,Africa +2024-01-17,84559,6796,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",2191.46,{},136602,1,Africa +2023-05-18,84560,6228,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4638.99,"{""promo"": ""19%""}",143362,0,Asia +2024-03-04,84561,5483,"[""Tablet"", ""Keyboard""]",1622.52,"{""promo"": ""12%""}",251495,0,Africa +2024-08-06,84562,8205,"[""Headphones""]",340.61,"{""seasonal"": ""5%""}",148504,0,North America +2023-06-29,84563,343,"[""Headphones""]",3993.21,"{""promo"": ""16%""}",119977,1,Africa +2023-02-13,84564,9632,"[""Monitor"", ""Keyboard""]",4848.43,{},268487,0,North America +2024-09-14,84565,217,"[""Monitor""]",4933.1,{},164953,1,Europe +2024-08-03,84566,5553,"[""Wireless Mouse""]",2346.43,"{""seasonal"": ""22%""}",60930,1,North America +2024-11-20,84567,4456,"[""Tablet"", ""Laptop""]",1935.03,"{""promo"": ""10%""}",284335,0,South America +2024-11-20,84568,6106,"[""Wireless Mouse""]",484.83,{},194560,0,Africa +2023-02-05,84569,5978,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",187.85,"{"""": ""22%""}",151028,0,Asia +2024-09-08,84570,5017,"[""Keyboard"", ""Laptop""]",1170.22,"{""loyalty"": ""13%""}",90072,1,Africa +2023-11-23,84571,1338,"[""Headphones"", ""Charger""]",1830.98,{},295660,0,Europe +2024-01-29,84572,3541,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3320.69,{},91689,0,North America +2024-12-12,84573,8936,"[""Monitor"", ""Tablet"", ""Phone""]",1900.36,"{""seasonal"": ""5%""}",26215,1,Europe +2023-08-30,84574,9607,"[""Phone""]",3121.7,"{"""": ""19%""}",84345,1,South America +2024-07-10,84575,1048,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3360.69,"{""seasonal"": ""20%""}",100595,0,South America +2023-04-10,84576,1806,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2710.73,{},56772,0,North America +2023-10-20,84577,5149,"[""Wireless Mouse"", ""Headphones""]",1865.37,{},210913,1,Africa +2024-09-05,84578,5884,"[""Charger"", ""Tablet"", ""Headphones""]",1400.95,"{""loyalty"": ""22%""}",278073,1,Asia +2023-10-22,84579,2782,"[""Laptop""]",2868.54,"{""seasonal"": ""28%""}",282326,0,Africa +2023-01-20,84580,8502,"[""Laptop"", ""Tablet"", ""Monitor""]",195.54,{},200813,1,Europe +2024-03-19,84581,4394,"[""Keyboard""]",1064.11,{},41962,1,Europe +2024-01-19,84582,589,"[""Headphones"", ""Wireless Mouse""]",4804.06,"{""loyalty"": ""9%""}",255355,1,Africa +2023-12-06,84583,9050,"[""Keyboard""]",3565.69,"{"""": ""19%""}",270340,1,North America +2023-10-13,84584,8863,"[""Tablet"", ""Keyboard"", ""Headphones""]",3591.84,{},204862,0,Europe +2024-03-12,84585,6505,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2629.13,{},120104,0,Asia +2023-08-23,84586,4920,"[""Tablet"", ""Headphones""]",782.41,{},85341,1,Asia +2024-03-11,84587,6336,"[""Laptop"", ""Phone"", ""Tablet""]",4004.76,{},153430,1,Africa +2023-12-19,84588,775,"[""Phone"", ""Monitor"", ""Tablet""]",4635.79,{},190786,1,Europe +2023-01-31,84589,8958,"[""Charger""]",4407.85,"{""seasonal"": ""11%""}",225379,1,Africa +2024-08-27,84590,4304,"[""Charger"", ""Laptop"", ""Tablet""]",3986.37,{},226578,0,Europe +2023-10-30,84591,5361,"[""Monitor""]",1036.91,{},146020,0,North America +2024-01-13,84592,6982,"[""Tablet"", ""Laptop""]",1074.73,"{"""": ""7%""}",2517,0,Europe +2024-10-19,84593,2297,"[""Phone""]",2866.24,"{""loyalty"": ""19%""}",169710,1,Asia +2023-08-30,84594,394,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1113.08,"{""seasonal"": ""26%""}",43696,0,Asia +2024-08-23,84595,3632,"[""Laptop""]",4733.86,{},162553,1,Africa +2023-08-27,84596,2705,"[""Headphones"", ""Keyboard""]",3597.19,{},170951,0,North America +2023-05-16,84597,8338,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2488.14,{},135925,1,South America +2024-07-31,84598,7149,"[""Wireless Mouse"", ""Laptop""]",668.75,{},247714,0,South America +2023-07-17,84599,5732,"[""Laptop"", ""Phone"", ""Charger""]",4949.63,"{""promo"": ""10%""}",27802,1,Asia +2024-05-29,84600,3506,"[""Tablet"", ""Charger""]",3369.67,{},199977,0,Africa +2023-05-13,84601,6959,"[""Headphones"", ""Monitor""]",3536.67,"{""loyalty"": ""21%""}",238670,1,Africa +2024-08-30,84602,5528,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",746.12,"{"""": ""17%""}",14963,1,Africa +2024-10-21,84603,7275,"[""Phone""]",2426.57,"{""seasonal"": ""7%""}",277244,1,Asia +2023-10-29,84604,2890,"[""Phone"", ""Keyboard"", ""Laptop""]",1552.39,{},256384,1,Asia +2023-01-31,84605,6897,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2412.91,{},17092,0,North America +2023-11-05,84606,374,"[""Phone"", ""Headphones""]",2842.45,"{""promo"": ""20%""}",241397,0,Africa +2023-09-08,84607,8156,"[""Keyboard"", ""Monitor""]",858.89,{},261909,1,North America +2024-05-08,84608,9407,"[""Keyboard"", ""Phone"", ""Monitor""]",966.67,"{"""": ""19%""}",6425,0,South America +2023-11-28,84609,8945,"[""Headphones"", ""Laptop"", ""Tablet""]",1788.76,"{""loyalty"": ""5%""}",266656,0,Europe +2023-07-16,84610,3723,"[""Monitor"", ""Keyboard"", ""Tablet""]",2289.01,{},280727,0,Asia +2023-08-08,84611,8431,"[""Headphones"", ""Keyboard""]",3982.32,{},33584,1,Africa +2023-07-11,84612,5090,"[""Headphones""]",851.44,{},285416,0,South America +2023-03-11,84613,8112,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2116.05,"{""loyalty"": ""11%""}",270091,0,Africa +2024-08-29,84614,2330,"[""Charger"", ""Monitor""]",830.95,{},185380,1,South America +2023-06-17,84615,2663,"[""Keyboard"", ""Phone"", ""Laptop""]",2717.4,"{""promo"": ""21%""}",294166,1,Europe +2024-01-19,84616,4264,"[""Charger"", ""Tablet""]",699.25,"{""loyalty"": ""19%""}",218572,0,South America +2023-11-27,84617,7105,"[""Headphones""]",4207.88,{},13177,1,Asia +2023-10-02,84618,2705,"[""Tablet"", ""Phone""]",1806.51,"{""promo"": ""14%""}",211245,0,North America +2023-06-02,84619,9279,"[""Tablet"", ""Charger""]",4405.36,{},19439,1,Africa +2023-12-02,84620,4595,"[""Keyboard"", ""Wireless Mouse""]",1244.21,{},139725,1,North America +2024-01-31,84621,4115,"[""Laptop"", ""Keyboard""]",2388.05,{},282567,1,South America +2024-05-03,84622,1502,"[""Tablet""]",3698.5,"{""seasonal"": ""8%""}",280838,0,Asia +2023-03-23,84623,6078,"[""Headphones""]",2195.45,"{""loyalty"": ""27%""}",125264,0,North America +2024-06-21,84624,6489,"[""Charger""]",3066.54,{},115079,1,Europe +2023-09-16,84625,9495,"[""Tablet"", ""Keyboard""]",2992.84,{},113234,1,South America +2024-05-30,84626,4554,"[""Tablet"", ""Keyboard""]",2020.16,"{""seasonal"": ""24%""}",222808,1,Asia +2024-10-13,84627,3001,"[""Wireless Mouse""]",3384.17,"{""seasonal"": ""11%""}",123922,0,Africa +2023-05-14,84628,8341,"[""Keyboard"", ""Monitor""]",4679.33,"{""promo"": ""14%""}",238487,1,Asia +2024-07-23,84629,6141,"[""Tablet"", ""Phone""]",4125.38,{},30574,1,Europe +2023-04-13,84630,9194,"[""Tablet""]",4018.89,{},296355,0,South America +2023-01-21,84631,7522,"[""Charger"", ""Keyboard""]",755.38,"{""seasonal"": ""21%""}",131770,0,Europe +2024-07-14,84632,9097,"[""Laptop"", ""Charger""]",4157.48,{},168079,0,Asia +2024-10-08,84633,7184,"[""Headphones"", ""Charger"", ""Phone""]",2823.28,{},208336,0,North America +2023-02-23,84634,9742,"[""Laptop"", ""Phone"", ""Charger""]",3187.2,"{"""": ""14%""}",135765,1,North America +2023-05-03,84635,6239,"[""Tablet"", ""Wireless Mouse""]",4030.58,"{""seasonal"": ""27%""}",275151,1,North America +2024-04-10,84636,8779,"[""Monitor""]",2143.57,"{""seasonal"": ""14%""}",240844,1,Africa +2024-08-31,84637,5656,"[""Phone"", ""Charger""]",1809.36,{},222956,0,North America +2023-04-19,84638,4062,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",549.83,"{""promo"": ""27%""}",236879,1,Europe +2024-06-08,84639,2804,"[""Tablet""]",976.66,"{""seasonal"": ""16%""}",123150,1,Europe +2024-10-15,84640,6351,"[""Laptop"", ""Headphones"", ""Keyboard""]",4307.47,{},134891,1,Europe +2023-03-16,84641,967,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1145.16,"{""seasonal"": ""26%""}",259077,0,Asia +2024-09-28,84642,7457,"[""Wireless Mouse"", ""Phone""]",3528.01,{},58489,0,Africa +2023-08-09,84643,1300,"[""Headphones""]",2042.93,"{"""": ""23%""}",138064,0,South America +2024-07-26,84644,7297,"[""Wireless Mouse""]",1375.0,{},67868,0,North America +2023-03-19,84645,4093,"[""Headphones"", ""Phone"", ""Charger""]",1926.21,"{""loyalty"": ""16%""}",138251,0,Europe +2023-09-06,84646,5967,"[""Tablet"", ""Phone"", ""Charger""]",2102.32,{},266885,0,North America +2024-11-12,84647,4705,"[""Tablet""]",3233.82,"{"""": ""25%""}",91320,0,North America +2023-03-04,84648,1426,"[""Laptop"", ""Monitor"", ""Tablet""]",3373.15,{},245046,0,Europe +2023-03-29,84649,241,"[""Wireless Mouse"", ""Phone""]",975.91,"{"""": ""26%""}",69942,1,South America +2024-02-08,84650,8077,"[""Laptop"", ""Wireless Mouse""]",651.66,{},91903,1,South America +2024-11-07,84651,9744,"[""Phone""]",2022.16,"{""loyalty"": ""9%""}",143019,0,North America +2024-08-23,84652,6820,"[""Laptop"", ""Headphones""]",4530.83,{},106273,1,Asia +2024-11-09,84653,6260,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2027.63,"{""promo"": ""14%""}",197421,1,South America +2024-12-20,84654,4790,"[""Headphones""]",1414.19,"{"""": ""5%""}",185027,0,Asia +2023-11-10,84655,7606,"[""Charger"", ""Headphones""]",3750.59,"{""loyalty"": ""22%""}",108121,0,Asia +2024-11-17,84656,5928,"[""Wireless Mouse""]",4736.33,{},44908,0,North America +2024-02-12,84657,884,"[""Monitor""]",3892.56,"{""promo"": ""6%""}",165060,0,Europe +2024-01-29,84658,929,"[""Monitor"", ""Charger"", ""Tablet""]",1147.49,{},169481,0,Asia +2023-04-07,84659,6526,"[""Phone""]",1046.71,"{""promo"": ""9%""}",192129,0,Asia +2023-07-17,84660,5362,"[""Headphones"", ""Phone""]",3056.33,{},12158,0,Africa +2024-03-04,84661,648,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4808.95,"{""promo"": ""9%""}",203010,0,Africa +2023-07-13,84662,6597,"[""Laptop"", ""Charger"", ""Monitor""]",4806.54,{},12968,1,Europe +2024-09-26,84663,8525,"[""Headphones"", ""Wireless Mouse""]",4144.92,"{""loyalty"": ""23%""}",203077,1,Europe +2024-07-30,84664,4718,"[""Phone"", ""Wireless Mouse""]",4096.5,{},260075,1,Asia +2024-09-17,84665,7086,"[""Charger"", ""Laptop""]",4070.98,{},189638,1,Asia +2023-04-15,84666,7370,"[""Keyboard"", ""Tablet"", ""Monitor""]",3909.58,{},126684,0,Asia +2024-09-02,84667,6415,"[""Laptop"", ""Headphones"", ""Monitor""]",1023.09,{},296146,1,North America +2023-01-20,84668,8504,"[""Wireless Mouse"", ""Phone""]",661.33,"{"""": ""8%""}",88563,1,Asia +2024-12-18,84669,6856,"[""Wireless Mouse""]",2505.18,"{"""": ""5%""}",204468,1,Europe +2023-10-03,84670,4809,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4728.31,"{""seasonal"": ""26%""}",254607,1,North America +2024-02-25,84671,5957,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",338.36,{},2383,0,Asia +2024-11-07,84672,1843,"[""Charger"", ""Laptop"", ""Tablet""]",3832.64,"{""loyalty"": ""11%""}",102286,1,South America +2024-08-13,84673,2200,"[""Charger"", ""Headphones"", ""Monitor""]",1493.52,"{""promo"": ""17%""}",87509,1,Asia +2024-04-14,84674,6440,"[""Laptop"", ""Phone""]",2447.45,{},58471,0,Asia +2023-11-13,84675,6243,"[""Wireless Mouse""]",2870.06,{},98291,1,Africa +2023-02-23,84676,4783,"[""Laptop"", ""Keyboard"", ""Phone""]",1406.86,"{""seasonal"": ""9%""}",204613,0,North America +2023-08-17,84677,6171,"[""Tablet"", ""Keyboard""]",1887.44,"{""seasonal"": ""7%""}",73905,0,North America +2024-12-29,84678,7507,"[""Laptop"", ""Headphones"", ""Phone""]",541.42,{},26173,1,Africa +2023-04-30,84679,7316,"[""Tablet"", ""Monitor""]",3274.2,{},76597,0,Africa +2024-02-17,84680,1445,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3224.67,{},285816,1,Asia +2023-05-08,84681,4856,"[""Tablet"", ""Keyboard""]",920.26,"{""loyalty"": ""6%""}",94661,0,North America +2024-03-05,84682,5949,"[""Monitor"", ""Headphones"", ""Tablet""]",315.18,"{""loyalty"": ""27%""}",244121,0,North America +2023-09-14,84683,8531,"[""Headphones"", ""Charger""]",128.77,{},217704,0,South America +2024-06-29,84684,9535,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2941.06,{},79717,0,Africa +2023-06-08,84685,6387,"[""Headphones""]",123.47,"{"""": ""22%""}",246267,0,North America +2024-06-12,84686,3963,"[""Laptop""]",4349.97,"{"""": ""18%""}",186871,0,South America +2024-08-31,84687,9137,"[""Laptop""]",122.9,"{""loyalty"": ""13%""}",249955,0,North America +2023-01-16,84688,6363,"[""Tablet"", ""Laptop""]",1184.25,{},232487,0,North America +2024-06-22,84689,7564,"[""Tablet"", ""Phone"", ""Monitor""]",2837.92,{},62251,0,South America +2023-09-03,84690,9961,"[""Charger""]",1208.33,{},18092,0,North America +2024-10-24,84691,2138,"[""Phone"", ""Monitor""]",1512.54,"{""loyalty"": ""22%""}",58447,1,Europe +2024-07-29,84692,9961,"[""Keyboard"", ""Phone"", ""Laptop""]",1246.64,{},178364,1,North America +2024-09-12,84693,2378,"[""Monitor"", ""Headphones"", ""Phone""]",1949.06,"{""loyalty"": ""29%""}",196898,0,Asia +2023-01-31,84694,5470,"[""Headphones"", ""Charger""]",3563.47,{},196771,0,Asia +2023-02-15,84695,8128,"[""Charger"", ""Monitor"", ""Headphones""]",2130.62,"{""seasonal"": ""20%""}",190536,1,Europe +2023-10-29,84696,3799,"[""Keyboard"", ""Wireless Mouse""]",2063.13,"{""loyalty"": ""27%""}",25430,0,Asia +2023-12-18,84697,5034,"[""Keyboard"", ""Headphones""]",3250.95,"{""seasonal"": ""11%""}",39458,0,Europe +2023-10-09,84698,9449,"[""Phone"", ""Headphones"", ""Laptop""]",2912.19,"{""seasonal"": ""10%""}",159992,0,South America +2024-01-03,84699,9991,"[""Phone""]",3630.23,"{""seasonal"": ""24%""}",122149,1,Africa +2023-05-15,84700,6876,"[""Laptop"", ""Wireless Mouse""]",2823.19,"{""loyalty"": ""24%""}",82908,1,South America +2023-06-17,84701,6727,"[""Keyboard"", ""Phone"", ""Laptop""]",1768.56,"{"""": ""23%""}",121110,1,Europe +2023-10-13,84702,6383,"[""Keyboard"", ""Wireless Mouse""]",3168.96,"{""loyalty"": ""20%""}",118229,1,Europe +2023-03-21,84703,2044,"[""Headphones"", ""Tablet"", ""Phone""]",2162.14,"{""promo"": ""6%""}",8202,1,Asia +2023-04-23,84704,7473,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2992.87,{},212897,1,South America +2023-11-18,84705,4743,"[""Tablet"", ""Charger"", ""Laptop""]",4025.34,{},43167,0,Africa +2023-08-04,84706,8233,"[""Laptop""]",2865.05,"{""loyalty"": ""30%""}",225032,1,Asia +2023-06-01,84707,9516,"[""Headphones"", ""Tablet"", ""Monitor""]",687.41,{},152537,0,Europe +2023-12-27,84708,7661,"[""Charger""]",727.43,{},251947,0,Europe +2023-03-24,84709,4639,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2761.26,"{""loyalty"": ""27%""}",214850,0,Asia +2023-03-02,84710,4061,"[""Keyboard""]",3962.7,"{"""": ""12%""}",291994,0,North America +2024-05-21,84711,8122,"[""Headphones""]",4940.35,{},136719,0,North America +2023-03-13,84712,4100,"[""Tablet"", ""Phone""]",1818.52,{},270470,0,North America +2023-01-21,84713,20,"[""Wireless Mouse"", ""Headphones""]",795.85,"{""seasonal"": ""14%""}",99151,0,Asia +2023-06-24,84714,998,"[""Laptop""]",1376.9,"{""loyalty"": ""10%""}",209245,1,Europe +2023-02-27,84715,9486,"[""Phone""]",4335.88,{},82218,0,Europe +2024-09-06,84716,8567,"[""Wireless Mouse""]",499.87,{},78749,0,Asia +2023-03-28,84717,3656,"[""Monitor""]",3176.95,"{""seasonal"": ""16%""}",52082,1,Africa +2024-07-10,84718,7092,"[""Keyboard""]",3250.01,{},243913,0,Europe +2023-11-04,84719,8499,"[""Wireless Mouse"", ""Headphones""]",2465.42,{},42823,0,North America +2023-10-13,84720,783,"[""Tablet""]",4739.42,{},143048,0,North America +2024-11-10,84721,848,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2411.24,{},296619,1,South America +2024-09-22,84722,5464,"[""Wireless Mouse"", ""Charger""]",1739.9,"{"""": ""14%""}",87100,1,North America +2023-10-08,84723,5337,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",370.15,{},4306,0,Africa +2023-03-14,84724,6173,"[""Laptop""]",2214.67,{},178875,1,Asia +2023-08-17,84725,8194,"[""Tablet"", ""Phone""]",1642.55,"{"""": ""17%""}",283609,0,North America +2023-04-17,84726,7577,"[""Tablet"", ""Keyboard""]",3717.53,{},17868,0,South America +2023-07-11,84727,3818,"[""Monitor""]",3018.95,{},138150,0,Europe +2023-03-07,84728,8731,"[""Tablet""]",820.84,"{"""": ""24%""}",57834,1,Europe +2024-07-08,84729,9209,"[""Keyboard""]",977.69,{},175302,1,North America +2024-09-18,84730,7315,"[""Laptop""]",2507.08,"{""seasonal"": ""28%""}",92013,0,Europe +2024-10-21,84731,6131,"[""Phone"", ""Monitor""]",499.85,{},284969,0,North America +2024-11-11,84732,3208,"[""Wireless Mouse"", ""Headphones""]",2688.91,"{""promo"": ""16%""}",139401,0,Europe +2024-02-08,84733,5355,"[""Tablet""]",1315.05,"{""seasonal"": ""30%""}",269829,0,North America +2023-07-23,84734,1229,"[""Headphones""]",3134.08,{},203625,1,Asia +2024-01-23,84735,8912,"[""Wireless Mouse"", ""Headphones""]",2910.59,{},281878,0,Africa +2024-01-23,84736,2245,"[""Tablet"", ""Charger"", ""Headphones""]",3983.05,"{"""": ""11%""}",299019,0,Africa +2023-07-12,84737,6266,"[""Tablet"", ""Monitor"", ""Headphones""]",2388.16,{},113693,1,South America +2024-05-11,84738,93,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1704.82,"{""seasonal"": ""5%""}",154111,1,South America +2024-02-25,84739,9081,"[""Headphones"", ""Charger""]",489.89,"{""seasonal"": ""9%""}",254706,0,North America +2023-06-21,84740,6351,"[""Laptop""]",2360.51,"{""loyalty"": ""8%""}",29404,1,South America +2024-04-27,84741,3688,"[""Monitor""]",3767.81,"{"""": ""21%""}",247970,1,North America +2023-05-16,84742,934,"[""Tablet"", ""Monitor""]",4030.85,{},212845,0,South America +2023-06-05,84743,1647,"[""Tablet"", ""Charger""]",2176.79,"{""promo"": ""13%""}",48515,1,South America +2024-06-13,84744,7788,"[""Keyboard""]",1450.19,{},149266,0,Asia +2023-09-14,84745,3821,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3208.34,"{"""": ""21%""}",202649,0,South America +2024-07-29,84746,3523,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4844.02,{},109135,0,Africa +2023-08-03,84747,3614,"[""Keyboard"", ""Wireless Mouse""]",1526.55,{},149445,0,North America +2023-06-02,84748,4980,"[""Monitor""]",237.74,"{"""": ""8%""}",75806,0,South America +2024-07-13,84749,7883,"[""Laptop"", ""Headphones""]",1013.33,"{""loyalty"": ""15%""}",275862,0,North America +2023-04-30,84750,2476,"[""Headphones"", ""Tablet""]",3128.43,{},108097,1,Asia +2024-03-29,84751,1199,"[""Laptop"", ""Headphones"", ""Phone""]",1731.52,"{"""": ""12%""}",109972,1,South America +2023-01-16,84752,5191,"[""Keyboard""]",1012.91,"{""promo"": ""20%""}",13886,1,South America +2024-03-23,84753,277,"[""Laptop"", ""Headphones"", ""Tablet""]",3781.22,{},40443,0,Africa +2023-02-26,84754,6743,"[""Monitor"", ""Headphones"", ""Phone""]",75.35,"{"""": ""14%""}",230080,1,North America +2023-01-17,84755,9957,"[""Phone""]",4289.92,"{""loyalty"": ""28%""}",164029,0,North America +2023-07-05,84756,2364,"[""Wireless Mouse""]",4058.1,{},218817,0,Asia +2023-04-09,84757,2921,"[""Keyboard"", ""Headphones"", ""Laptop""]",2123.15,"{""promo"": ""23%""}",89810,0,Africa +2024-10-10,84758,202,"[""Phone"", ""Charger""]",3053.29,{},1186,0,Africa +2024-06-13,84759,3813,"[""Laptop""]",363.75,"{""seasonal"": ""13%""}",103756,0,Africa +2024-02-15,84760,7585,"[""Headphones""]",3198.59,"{""promo"": ""18%""}",107556,1,Asia +2023-01-24,84761,1459,"[""Laptop"", ""Charger""]",655.42,{},156556,1,Europe +2023-06-05,84762,1692,"[""Keyboard"", ""Tablet"", ""Monitor""]",4941.29,"{""seasonal"": ""29%""}",127781,1,South America +2023-04-15,84763,8637,"[""Tablet""]",630.27,{},32908,1,North America +2024-11-21,84764,9959,"[""Monitor"", ""Wireless Mouse""]",1034.47,"{"""": ""22%""}",52053,0,Africa +2024-09-15,84765,1670,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1674.75,{},240542,0,Africa +2023-08-24,84766,3015,"[""Keyboard"", ""Headphones""]",1371.92,"{"""": ""13%""}",277447,1,Africa +2024-12-18,84767,7932,"[""Keyboard""]",1270.11,{},223681,0,Africa +2024-12-11,84768,9158,"[""Laptop""]",1487.65,"{""loyalty"": ""17%""}",156169,1,North America +2023-04-30,84769,2000,"[""Wireless Mouse"", ""Keyboard""]",713.56,"{"""": ""20%""}",38232,0,South America +2024-10-04,84770,2347,"[""Headphones""]",4386.66,{},136440,0,South America +2023-04-22,84771,9492,"[""Wireless Mouse""]",2107.63,"{""loyalty"": ""27%""}",99574,0,North America +2024-10-18,84772,111,"[""Laptop"", ""Phone""]",904.11,{},109483,0,North America +2024-06-26,84773,7633,"[""Charger"", ""Headphones""]",3163.32,"{""promo"": ""28%""}",33733,0,Asia +2023-03-23,84774,2624,"[""Charger"", ""Phone""]",1650.88,{},9546,0,Europe +2024-06-14,84775,6696,"[""Charger"", ""Phone""]",2520.06,"{""seasonal"": ""18%""}",21276,0,North America +2024-06-26,84776,6300,"[""Headphones""]",230.18,"{""promo"": ""5%""}",119555,1,North America +2024-06-04,84777,2872,"[""Phone"", ""Charger""]",4488.13,{},43081,1,Europe +2023-08-12,84778,9177,"[""Charger"", ""Tablet"", ""Monitor""]",253.08,{},291327,0,Africa +2024-08-26,84779,6540,"[""Tablet""]",4821.82,{},187058,0,South America +2024-11-24,84780,987,"[""Phone"", ""Charger"", ""Monitor""]",3688.73,{},206003,1,North America +2024-07-28,84781,4520,"[""Headphones""]",1039.32,{},139474,0,South America +2024-04-13,84782,426,"[""Tablet"", ""Phone""]",453.57,"{""promo"": ""18%""}",211585,0,Europe +2023-02-21,84783,220,"[""Tablet""]",4929.45,"{""promo"": ""19%""}",196882,0,South America +2023-03-14,84784,1611,"[""Charger"", ""Headphones""]",1597.1,{},39241,0,South America +2023-03-21,84785,520,"[""Headphones""]",4861.26,"{"""": ""9%""}",73730,0,Europe +2024-09-10,84786,4427,"[""Keyboard"", ""Monitor""]",734.72,{},294172,0,South America +2023-10-02,84787,281,"[""Tablet""]",1292.32,"{"""": ""20%""}",181801,1,South America +2023-03-09,84788,4956,"[""Monitor"", ""Phone""]",4604.6,"{""seasonal"": ""23%""}",188523,1,Africa +2024-07-28,84789,301,"[""Headphones"", ""Wireless Mouse""]",3053.82,"{""promo"": ""15%""}",51462,1,Asia +2023-12-25,84790,8695,"[""Headphones"", ""Phone""]",2700.41,"{""seasonal"": ""7%""}",33850,0,South America +2023-02-03,84791,4939,"[""Keyboard"", ""Charger""]",1700.07,"{""loyalty"": ""29%""}",201404,0,Africa +2024-05-06,84792,575,"[""Laptop""]",3747.94,{},247334,0,South America +2023-09-16,84793,6096,"[""Headphones"", ""Monitor""]",1142.71,"{""promo"": ""19%""}",79037,0,Africa +2024-03-23,84794,629,"[""Keyboard"", ""Phone""]",147.71,{},285592,0,North America +2023-12-31,84795,5435,"[""Keyboard""]",3016.89,{},51115,1,South America +2023-05-03,84796,11,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",175.5,{},44916,0,Africa +2024-04-28,84797,8217,"[""Charger"", ""Laptop"", ""Headphones""]",1462.59,{},164946,1,Europe +2023-01-23,84798,8236,"[""Charger""]",4848.54,{},206355,1,South America +2023-03-30,84799,6932,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2039.33,{},51853,0,Africa +2024-02-24,84800,8051,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",382.02,"{""promo"": ""10%""}",38414,1,Africa +2024-02-18,84801,2872,"[""Phone"", ""Keyboard""]",1054.53,{},96024,1,North America +2023-04-04,84802,7001,"[""Charger"", ""Monitor""]",2237.18,{},130166,1,South America +2023-08-07,84803,8649,"[""Wireless Mouse""]",3347.98,"{""promo"": ""11%""}",246908,1,South America +2023-10-08,84804,6303,"[""Keyboard"", ""Monitor"", ""Charger""]",1491.09,{},173112,1,Asia +2023-02-16,84805,8616,"[""Monitor""]",412.28,"{""promo"": ""7%""}",117216,0,South America +2023-02-12,84806,7933,"[""Monitor""]",3450.29,{},36712,1,Asia +2023-04-28,84807,779,"[""Phone"", ""Monitor""]",1917.1,"{""promo"": ""23%""}",121436,1,Africa +2024-06-24,84808,6783,"[""Laptop""]",3206.81,"{""seasonal"": ""20%""}",185123,1,North America +2024-11-22,84809,2079,"[""Monitor""]",4660.74,"{"""": ""6%""}",283295,0,South America +2023-06-12,84810,462,"[""Keyboard""]",1620.73,{},192402,0,Europe +2023-09-04,84811,9174,"[""Monitor"", ""Phone""]",241.95,"{""promo"": ""10%""}",287145,1,South America +2023-05-30,84812,4584,"[""Tablet"", ""Monitor""]",3370.6,"{""seasonal"": ""6%""}",209083,1,Asia +2023-07-03,84813,1734,"[""Tablet"", ""Headphones""]",3273.81,"{"""": ""14%""}",27971,0,North America +2023-08-26,84814,758,"[""Charger""]",1385.33,{},30682,0,South America +2023-12-14,84815,5957,"[""Charger"", ""Phone""]",4894.38,"{""seasonal"": ""17%""}",105556,1,Europe +2023-08-01,84816,1248,"[""Headphones"", ""Tablet""]",2352.09,"{""seasonal"": ""30%""}",259098,1,Africa +2024-04-15,84817,7426,"[""Headphones"", ""Keyboard""]",1202.56,"{""seasonal"": ""26%""}",213679,0,Asia +2023-09-30,84818,3542,"[""Headphones""]",62.99,"{"""": ""21%""}",174906,1,Asia +2023-07-29,84819,1802,"[""Wireless Mouse""]",462.59,"{""seasonal"": ""5%""}",86819,0,South America +2024-01-24,84820,2848,"[""Keyboard""]",1234.2,"{""loyalty"": ""15%""}",280593,1,Europe +2023-08-21,84821,6519,"[""Charger"", ""Phone"", ""Headphones""]",1325.69,"{""promo"": ""19%""}",190859,0,South America +2024-01-29,84822,6273,"[""Headphones""]",2215.44,{},3084,0,South America +2024-03-18,84823,2167,"[""Headphones"", ""Keyboard"", ""Charger""]",3367.2,{},79992,0,Europe +2023-12-26,84824,9965,"[""Charger"", ""Tablet""]",2485.0,"{""loyalty"": ""29%""}",48547,0,North America +2024-07-20,84825,1429,"[""Keyboard""]",760.59,{},55548,0,Africa +2024-02-17,84826,6856,"[""Laptop""]",4360.24,"{""promo"": ""28%""}",49467,1,North America +2023-06-14,84827,3395,"[""Phone"", ""Headphones""]",519.67,"{"""": ""28%""}",96166,0,North America +2024-12-15,84828,6558,"[""Wireless Mouse"", ""Laptop""]",422.44,"{""promo"": ""11%""}",60141,1,North America +2023-09-18,84829,3353,"[""Laptop""]",451.54,{},202536,1,South America +2023-07-01,84830,9158,"[""Phone"", ""Charger""]",2450.93,"{""promo"": ""15%""}",151879,1,Africa +2023-03-28,84831,8787,"[""Wireless Mouse""]",2839.53,{},54306,1,South America +2024-01-02,84832,3271,"[""Charger"", ""Phone""]",248.97,"{""loyalty"": ""11%""}",183010,1,Asia +2023-12-24,84833,4517,"[""Keyboard"", ""Monitor""]",4100.04,{},55055,1,North America +2024-06-19,84834,6612,"[""Wireless Mouse"", ""Phone""]",2696.17,"{""seasonal"": ""11%""}",30636,1,North America +2024-09-20,84835,7673,"[""Wireless Mouse"", ""Laptop""]",663.14,"{""seasonal"": ""19%""}",20782,0,Africa +2024-10-26,84836,8742,"[""Laptop"", ""Monitor""]",327.87,"{""loyalty"": ""10%""}",242453,1,Asia +2024-03-06,84837,2342,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4957.38,{},161149,0,North America +2023-04-24,84838,5861,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2661.89,"{""seasonal"": ""14%""}",187473,1,Europe +2023-04-23,84839,1874,"[""Keyboard""]",613.15,"{""seasonal"": ""28%""}",109871,1,South America +2023-04-07,84840,9694,"[""Monitor"", ""Charger"", ""Keyboard""]",2654.72,"{""loyalty"": ""30%""}",192963,0,South America +2023-03-10,84841,8940,"[""Tablet""]",2485.54,{},296597,1,Africa +2024-03-04,84842,8619,"[""Keyboard""]",3075.35,"{""loyalty"": ""26%""}",55920,0,South America +2023-01-14,84843,2462,"[""Monitor"", ""Headphones""]",477.6,{},262328,1,South America +2023-04-01,84844,5395,"[""Monitor"", ""Tablet""]",1142.12,"{""promo"": ""20%""}",99594,1,Africa +2023-07-15,84845,9385,"[""Monitor"", ""Keyboard""]",2492.59,"{""seasonal"": ""25%""}",155755,1,South America +2023-12-15,84846,9558,"[""Phone""]",2651.15,{},253632,1,North America +2024-02-03,84847,3938,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4478.87,{},237440,0,South America +2024-09-03,84848,1966,"[""Headphones""]",2427.6,"{"""": ""16%""}",146569,1,Asia +2024-10-23,84849,2641,"[""Keyboard""]",4260.18,{},107367,1,North America +2023-10-04,84850,5504,"[""Tablet"", ""Headphones""]",3439.41,{},51826,1,Asia +2024-09-11,84851,9271,"[""Monitor"", ""Tablet""]",4191.28,{},242891,1,North America +2024-02-01,84852,66,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2893.69,{},141734,1,South America +2023-10-20,84853,9001,"[""Keyboard"", ""Monitor""]",1459.48,{},92398,1,North America +2024-09-21,84854,6260,"[""Charger""]",2810.38,"{""loyalty"": ""17%""}",114506,0,South America +2023-11-26,84855,4848,"[""Charger""]",4060.74,"{""promo"": ""5%""}",298711,1,Europe +2024-03-16,84856,7961,"[""Monitor""]",228.38,{},248041,0,Asia +2023-03-02,84857,2587,"[""Keyboard"", ""Monitor""]",1251.39,{},176298,1,North America +2023-12-17,84858,4554,"[""Laptop""]",3586.76,{},118332,1,Asia +2023-07-08,84859,5607,"[""Keyboard""]",2895.92,"{"""": ""29%""}",26854,1,Asia +2024-11-26,84860,7106,"[""Wireless Mouse"", ""Keyboard""]",362.22,"{"""": ""29%""}",119582,1,Europe +2023-02-22,84861,2327,"[""Wireless Mouse""]",3213.61,{},22457,1,Asia +2024-10-31,84862,6461,"[""Monitor""]",4733.08,"{""loyalty"": ""24%""}",31661,1,South America +2024-10-04,84863,7026,"[""Laptop""]",3021.44,{},250160,0,Africa +2023-11-04,84864,1016,"[""Keyboard""]",943.23,"{""seasonal"": ""25%""}",201004,0,Africa +2024-02-18,84865,3185,"[""Monitor"", ""Laptop""]",3219.08,{},3304,1,South America +2023-03-20,84866,6070,"[""Phone""]",257.21,{},74859,0,Asia +2024-04-20,84867,7201,"[""Laptop"", ""Tablet""]",2065.54,{},213384,1,Africa +2024-09-11,84868,5591,"[""Tablet"", ""Charger""]",1497.36,{},189164,0,North America +2024-03-13,84869,4404,"[""Tablet""]",4563.86,{},207704,1,South America +2023-09-07,84870,4492,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3915.35,{},237794,1,Europe +2024-05-28,84871,7668,"[""Phone"", ""Charger""]",577.47,"{""promo"": ""18%""}",101523,1,North America +2024-01-19,84872,283,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4791.5,"{""seasonal"": ""23%""}",221512,0,North America +2023-12-26,84873,3876,"[""Wireless Mouse"", ""Headphones""]",4152.01,{},199196,0,North America +2024-01-17,84874,56,"[""Monitor"", ""Tablet""]",2015.16,"{""seasonal"": ""25%""}",95103,0,Africa +2024-08-08,84875,9289,"[""Keyboard""]",3429.31,"{""seasonal"": ""18%""}",82194,0,North America +2024-09-09,84876,2350,"[""Tablet"", ""Keyboard""]",3135.65,"{"""": ""23%""}",292833,0,North America +2023-09-29,84877,9417,"[""Monitor"", ""Wireless Mouse""]",1176.79,"{""loyalty"": ""30%""}",134674,0,Asia +2023-07-16,84878,2995,"[""Monitor""]",2954.0,{},205013,1,Asia +2023-02-23,84879,3338,"[""Phone"", ""Keyboard""]",977.5,{},187784,0,Europe +2023-07-14,84880,4582,"[""Headphones"", ""Monitor"", ""Keyboard""]",1172.98,"{""loyalty"": ""15%""}",37850,1,South America +2024-05-31,84881,8145,"[""Tablet""]",2581.33,{},259717,1,North America +2023-11-05,84882,5512,"[""Monitor"", ""Headphones"", ""Tablet""]",2757.13,"{""seasonal"": ""27%""}",259657,0,Asia +2024-12-17,84883,7607,"[""Headphones""]",3097.07,"{"""": ""24%""}",42427,1,South America +2024-06-23,84884,7422,"[""Keyboard"", ""Charger"", ""Monitor""]",2550.77,{},244105,0,Europe +2024-05-17,84885,8387,"[""Monitor""]",551.59,{},185703,0,Asia +2023-10-17,84886,911,"[""Phone"", ""Tablet""]",2793.76,"{""promo"": ""17%""}",85852,1,Europe +2024-04-17,84887,1135,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",406.39,"{"""": ""30%""}",15344,0,North America +2023-12-18,84888,5751,"[""Monitor"", ""Tablet""]",1379.09,{},181446,0,South America +2024-02-08,84889,1395,"[""Keyboard"", ""Monitor""]",1197.28,"{""seasonal"": ""23%""}",33773,1,Europe +2024-04-08,84890,5142,"[""Laptop"", ""Tablet""]",4545.1,{},180063,1,Europe +2023-09-06,84891,718,"[""Laptop""]",1673.1,{},33776,0,Asia +2024-03-07,84892,3170,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2915.17,"{""seasonal"": ""12%""}",265150,0,Africa +2023-07-20,84893,8695,"[""Headphones""]",218.36,{},122302,1,South America +2023-07-26,84894,7977,"[""Keyboard""]",3413.74,"{""promo"": ""29%""}",265739,1,North America +2023-12-21,84895,3297,"[""Keyboard"", ""Phone"", ""Monitor""]",3860.33,{},219768,1,South America +2023-12-06,84896,3918,"[""Wireless Mouse""]",2949.83,{},228556,0,South America +2023-12-17,84897,3125,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",857.53,{},30191,0,Asia +2024-07-26,84898,4419,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3382.85,{},219086,1,South America +2023-10-11,84899,6250,"[""Wireless Mouse""]",1659.69,"{""promo"": ""29%""}",45724,0,Africa +2024-03-04,84900,4142,"[""Headphones"", ""Keyboard""]",4527.93,{},20702,0,Africa +2024-12-09,84901,334,"[""Laptop"", ""Charger"", ""Keyboard""]",3298.75,{},255371,1,North America +2024-06-29,84902,7697,"[""Phone"", ""Wireless Mouse""]",405.64,{},159223,0,Africa +2023-01-04,84903,4439,"[""Tablet""]",3428.59,"{""loyalty"": ""15%""}",275139,0,South America +2023-11-28,84904,8432,"[""Headphones""]",3990.86,{},100366,1,Asia +2024-08-22,84905,6145,"[""Laptop""]",3334.75,{},287615,0,Asia +2023-11-17,84906,5988,"[""Monitor"", ""Charger"", ""Headphones""]",4731.49,{},152300,1,Asia +2023-05-14,84907,6686,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2454.82,"{""promo"": ""29%""}",165942,1,South America +2024-02-16,84908,7401,"[""Monitor"", ""Charger"", ""Phone""]",4274.05,{},178718,0,North America +2023-05-24,84909,6522,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",3211.74,{},226873,1,Africa +2024-03-18,84910,7231,"[""Tablet""]",4436.98,"{""loyalty"": ""30%""}",97764,0,South America +2023-05-01,84911,2449,"[""Phone"", ""Keyboard""]",3196.09,"{"""": ""29%""}",289888,1,Europe +2023-06-04,84912,991,"[""Keyboard"", ""Laptop""]",1485.91,"{""loyalty"": ""12%""}",33144,0,Africa +2023-10-17,84913,5062,"[""Tablet"", ""Monitor""]",1862.38,"{""loyalty"": ""19%""}",186992,0,South America +2024-01-24,84914,2349,"[""Monitor""]",4705.15,{},276408,1,Asia +2023-08-28,84915,848,"[""Laptop""]",4514.11,{},117982,0,Europe +2023-03-31,84916,8341,"[""Laptop"", ""Phone"", ""Headphones""]",2249.18,"{""loyalty"": ""10%""}",119534,1,South America +2023-08-26,84917,4073,"[""Keyboard"", ""Charger"", ""Tablet""]",4349.1,"{""promo"": ""11%""}",186251,1,Asia +2024-01-04,84918,9634,"[""Phone"", ""Laptop"", ""Charger""]",4048.15,"{""loyalty"": ""19%""}",88115,0,Africa +2023-04-15,84919,2473,"[""Charger""]",2366.38,"{""promo"": ""21%""}",3709,0,North America +2023-09-18,84920,414,"[""Tablet"", ""Monitor"", ""Charger""]",1649.64,"{""promo"": ""14%""}",154771,0,South America +2023-01-10,84921,7428,"[""Phone"", ""Charger"", ""Tablet""]",221.08,"{""seasonal"": ""29%""}",5242,0,South America +2024-08-25,84922,5447,"[""Charger"", ""Phone""]",4818.59,{},204447,1,Africa +2023-04-05,84923,4457,"[""Keyboard""]",4262.85,"{"""": ""17%""}",293297,1,North America +2024-09-19,84924,7022,"[""Laptop""]",458.74,"{""loyalty"": ""24%""}",78720,0,Asia +2024-08-07,84925,8409,"[""Charger""]",2997.4,{},156770,1,Europe +2024-05-23,84926,97,"[""Headphones""]",799.12,{},174397,0,South America +2023-06-13,84927,2602,"[""Keyboard"", ""Wireless Mouse""]",669.23,"{""promo"": ""8%""}",197047,1,Europe +2023-05-06,84928,4247,"[""Wireless Mouse"", ""Monitor""]",933.53,{},79676,1,Asia +2023-10-23,84929,2440,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1547.44,{},17651,1,Africa +2023-07-24,84930,1414,"[""Charger"", ""Monitor""]",4430.3,"{""seasonal"": ""7%""}",81707,0,Europe +2023-01-25,84931,6981,"[""Headphones"", ""Charger""]",4597.54,"{""promo"": ""30%""}",39829,1,Africa +2024-06-01,84932,4716,"[""Phone""]",2262.1,"{""seasonal"": ""17%""}",51478,1,Asia +2023-04-24,84933,7983,"[""Phone"", ""Monitor""]",2723.83,"{""loyalty"": ""20%""}",82222,0,Africa +2023-12-16,84934,94,"[""Phone"", ""Laptop"", ""Charger""]",4929.18,{},134262,1,Africa +2024-02-01,84935,1386,"[""Laptop""]",3391.73,{},185072,1,Africa +2024-03-29,84936,6867,"[""Headphones""]",1592.27,"{"""": ""16%""}",290345,1,South America +2024-01-31,84937,4545,"[""Wireless Mouse"", ""Headphones""]",1803.46,{},49904,1,Europe +2023-06-06,84938,3369,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3289.35,{},259220,0,North America +2023-11-01,84939,695,"[""Laptop""]",306.48,{},230635,1,Europe +2024-10-18,84940,3022,"[""Keyboard""]",2127.03,"{""promo"": ""17%""}",51278,0,Asia +2023-04-06,84941,7916,"[""Charger"", ""Tablet""]",1934.04,"{"""": ""11%""}",51350,0,Asia +2023-11-08,84942,2960,"[""Keyboard"", ""Headphones"", ""Tablet""]",2998.42,{},67163,1,Asia +2024-09-26,84943,8580,"[""Wireless Mouse"", ""Charger""]",323.29,{},288972,1,Africa +2023-06-10,84944,7333,"[""Wireless Mouse"", ""Charger""]",746.69,"{""seasonal"": ""7%""}",158471,1,South America +2024-11-18,84945,8838,"[""Monitor""]",4804.52,"{""seasonal"": ""18%""}",134891,1,North America +2024-10-18,84946,8885,"[""Keyboard""]",4677.43,{},27668,0,Europe +2024-09-05,84947,3533,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2614.54,{},169804,0,Africa +2024-09-05,84948,3641,"[""Tablet"", ""Headphones"", ""Monitor""]",797.33,{},242672,0,Europe +2024-02-27,84949,3248,"[""Laptop""]",4561.29,{},234434,1,Africa +2024-05-31,84950,6083,"[""Charger"", ""Tablet"", ""Phone""]",1308.28,{},41598,0,Africa +2023-02-26,84951,3347,"[""Laptop"", ""Headphones""]",1595.55,"{""promo"": ""6%""}",282494,0,Africa +2023-11-19,84952,3241,"[""Charger""]",3466.15,"{""seasonal"": ""16%""}",71685,1,Europe +2024-04-21,84953,9958,"[""Keyboard""]",1181.86,"{"""": ""13%""}",24535,0,Africa +2024-02-20,84954,7198,"[""Keyboard""]",4237.68,{},299721,1,Asia +2024-01-13,84955,2467,"[""Wireless Mouse"", ""Charger""]",2404.96,"{""loyalty"": ""7%""}",194170,1,North America +2024-12-29,84956,8273,"[""Keyboard"", ""Laptop""]",3645.55,"{""loyalty"": ""24%""}",111019,0,North America +2023-08-16,84957,3144,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2477.04,{},108016,0,Asia +2023-07-26,84958,7066,"[""Monitor"", ""Tablet""]",966.81,"{""promo"": ""20%""}",68527,0,South America +2023-03-22,84959,3683,"[""Phone""]",4742.79,"{""loyalty"": ""21%""}",92032,1,Asia +2024-11-17,84960,4053,"[""Phone"", ""Headphones"", ""Laptop""]",4978.02,"{""promo"": ""14%""}",204801,1,Europe +2024-06-26,84961,220,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",4352.91,{},29841,0,South America +2023-03-07,84962,4715,"[""Keyboard"", ""Phone"", ""Monitor""]",1125.69,{},33606,1,Africa +2024-01-06,84963,3790,"[""Headphones"", ""Keyboard""]",4799.2,{},103177,1,South America +2023-06-01,84964,5857,"[""Tablet"", ""Laptop"", ""Keyboard""]",1886.85,"{""loyalty"": ""21%""}",237744,1,Asia +2023-10-22,84965,6207,"[""Laptop"", ""Monitor""]",3529.52,"{""seasonal"": ""25%""}",21993,1,North America +2024-06-15,84966,7191,"[""Headphones"", ""Charger"", ""Tablet""]",4012.66,{},50158,1,Asia +2024-06-26,84967,3647,"[""Tablet""]",955.13,"{""seasonal"": ""10%""}",6122,1,North America +2023-10-18,84968,786,"[""Wireless Mouse"", ""Laptop""]",3676.74,"{""promo"": ""17%""}",109639,0,Europe +2023-11-14,84969,5497,"[""Headphones""]",3921.14,{},109719,1,South America +2024-07-03,84970,746,"[""Monitor""]",3315.06,{},151893,0,Europe +2023-04-28,84971,2302,"[""Wireless Mouse""]",1080.75,"{""seasonal"": ""18%""}",140793,0,Africa +2023-07-25,84972,9556,"[""Headphones"", ""Laptop"", ""Charger""]",3409.77,{},295898,1,North America +2024-01-14,84973,2271,"[""Tablet"", ""Laptop""]",646.97,"{""seasonal"": ""30%""}",232246,1,Asia +2023-05-11,84974,1891,"[""Phone""]",3631.84,{},50880,1,Asia +2023-03-20,84975,344,"[""Charger""]",2393.14,"{""promo"": ""16%""}",140609,1,Asia +2024-08-05,84976,7383,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",766.14,{},275296,1,North America +2024-05-04,84977,6608,"[""Tablet""]",4430.82,{},130831,0,South America +2023-11-05,84978,1048,"[""Wireless Mouse"", ""Monitor""]",2270.31,{},37504,0,Europe +2023-05-13,84979,2594,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2099.18,"{""promo"": ""26%""}",254888,1,Asia +2023-03-10,84980,2510,"[""Monitor"", ""Keyboard"", ""Headphones""]",1451.91,"{"""": ""26%""}",100975,1,South America +2024-12-29,84981,2301,"[""Tablet"", ""Headphones""]",3564.36,{},151795,0,North America +2024-08-02,84982,6293,"[""Tablet"", ""Phone""]",4951.14,"{""loyalty"": ""6%""}",46978,0,Africa +2023-10-29,84983,8522,"[""Monitor"", ""Laptop"", ""Charger""]",316.23,{},46285,0,South America +2023-02-03,84984,8603,"[""Monitor""]",495.43,{},11594,0,Asia +2023-07-27,84985,7334,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2812.61,{},180020,0,Europe +2023-06-25,84986,9692,"[""Headphones""]",622.83,"{"""": ""26%""}",263059,1,Asia +2023-04-03,84987,3969,"[""Monitor""]",577.11,{},239980,1,North America +2023-05-11,84988,4073,"[""Tablet""]",969.48,"{""loyalty"": ""29%""}",137459,1,Europe +2024-02-22,84989,4492,"[""Phone""]",2311.07,{},59925,0,Africa +2024-04-20,84990,8430,"[""Keyboard"", ""Monitor"", ""Charger""]",1184.73,"{""promo"": ""8%""}",160966,1,Africa +2023-08-26,84991,1226,"[""Headphones"", ""Wireless Mouse""]",2863.4,{},174721,1,Africa +2023-10-19,84992,955,"[""Phone""]",4779.49,"{""loyalty"": ""24%""}",226868,1,North America +2024-08-16,84993,4077,"[""Laptop"", ""Charger"", ""Headphones""]",1370.38,{},185050,1,South America +2024-01-18,84994,5996,"[""Wireless Mouse"", ""Keyboard""]",4678.71,{},259417,0,Africa +2023-01-08,84995,2302,"[""Laptop"", ""Monitor"", ""Keyboard""]",2029.97,{},221590,1,Europe +2023-01-09,84996,6246,"[""Laptop"", ""Tablet""]",2493.83,{},289959,0,Africa +2023-03-25,84997,7548,"[""Phone"", ""Headphones"", ""Laptop""]",3210.61,{},28658,1,North America +2023-02-23,84998,3547,"[""Phone"", ""Tablet""]",935.07,"{""loyalty"": ""16%""}",47757,0,Africa +2023-11-02,84999,563,"[""Keyboard""]",2936.73,"{""loyalty"": ""17%""}",229667,0,South America +2024-01-13,85000,9601,"[""Phone""]",4525.82,{},170874,1,South America +2023-08-30,85001,942,"[""Tablet"", ""Monitor""]",785.33,"{""loyalty"": ""26%""}",42448,1,Asia +2024-02-14,85002,853,"[""Charger"", ""Keyboard"", ""Phone""]",1213.67,"{""loyalty"": ""15%""}",253513,1,South America +2024-03-23,85003,7046,"[""Keyboard""]",2540.08,"{"""": ""15%""}",166926,0,Europe +2023-10-03,85004,105,"[""Keyboard"", ""Charger"", ""Phone""]",1442.67,{},238231,1,Asia +2024-08-18,85005,6507,"[""Keyboard""]",4456.39,"{""promo"": ""22%""}",88146,1,Africa +2023-05-30,85006,5196,"[""Laptop""]",1545.19,{},248099,1,Asia +2023-06-29,85007,1254,"[""Wireless Mouse"", ""Keyboard""]",589.05,"{""promo"": ""15%""}",230505,0,North America +2024-06-25,85008,6168,"[""Monitor"", ""Wireless Mouse""]",2566.97,"{"""": ""8%""}",218422,0,Africa +2023-05-18,85009,3849,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2342.3,{},283981,0,South America +2024-12-09,85010,7370,"[""Tablet"", ""Laptop""]",3462.53,"{""promo"": ""15%""}",3215,1,Africa +2024-06-20,85011,4972,"[""Laptop""]",4584.44,{},217866,1,North America +2024-12-26,85012,9561,"[""Monitor"", ""Keyboard""]",1773.83,"{""loyalty"": ""7%""}",15605,1,North America +2024-07-30,85013,2613,"[""Wireless Mouse""]",3820.29,{},164057,0,North America +2024-03-14,85014,4802,"[""Charger"", ""Phone"", ""Headphones""]",4902.31,"{"""": ""21%""}",42020,0,Europe +2023-08-03,85015,6544,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1751.58,"{""promo"": ""26%""}",253789,0,Africa +2023-12-02,85016,4533,"[""Laptop"", ""Charger""]",2244.13,{},196312,1,Asia +2024-09-03,85017,3619,"[""Monitor"", ""Phone"", ""Keyboard""]",2098.42,"{"""": ""30%""}",297472,1,Europe +2023-02-01,85018,9113,"[""Phone"", ""Tablet"", ""Monitor""]",1039.25,"{"""": ""26%""}",211118,1,North America +2024-08-04,85019,3170,"[""Charger"", ""Wireless Mouse"", ""Phone""]",692.4,{},229202,1,Europe +2024-01-23,85020,2900,"[""Headphones"", ""Keyboard""]",2245.67,"{"""": ""19%""}",248923,0,Asia +2023-09-13,85021,6980,"[""Laptop"", ""Tablet"", ""Monitor""]",1688.27,"{""promo"": ""15%""}",110326,1,Africa +2023-10-10,85022,670,"[""Phone"", ""Headphones""]",2729.78,"{""seasonal"": ""17%""}",109545,1,North America +2023-02-20,85023,6709,"[""Keyboard""]",3856.66,{},203262,1,Europe +2023-05-22,85024,4868,"[""Headphones"", ""Laptop""]",1115.79,"{"""": ""16%""}",24990,0,South America +2024-03-30,85025,1078,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4221.24,"{"""": ""5%""}",24647,0,North America +2023-10-04,85026,7064,"[""Laptop""]",3762.96,"{""loyalty"": ""25%""}",140539,0,Africa +2023-07-11,85027,9736,"[""Headphones"", ""Charger"", ""Laptop""]",3070.19,"{""seasonal"": ""26%""}",186444,0,South America +2024-06-20,85028,9640,"[""Headphones"", ""Laptop"", ""Charger""]",1398.24,{},117864,1,Asia +2024-01-02,85029,5866,"[""Monitor"", ""Tablet"", ""Laptop""]",1142.44,"{""loyalty"": ""28%""}",35286,1,Africa +2023-07-18,85030,7685,"[""Keyboard"", ""Tablet""]",4676.25,"{""loyalty"": ""23%""}",189376,1,Europe +2024-10-22,85031,3936,"[""Monitor""]",432.38,"{""loyalty"": ""15%""}",247955,0,Europe +2023-12-01,85032,6704,"[""Headphones"", ""Tablet"", ""Charger""]",4108.7,{},138917,1,Asia +2024-08-02,85033,8812,"[""Wireless Mouse""]",4541.06,{},164760,0,South America +2023-10-24,85034,6838,"[""Wireless Mouse""]",4595.92,"{"""": ""6%""}",6762,0,Africa +2023-02-12,85035,9062,"[""Phone"", ""Charger""]",4047.23,"{""loyalty"": ""5%""}",210926,0,North America +2023-07-29,85036,3198,"[""Monitor"", ""Headphones"", ""Keyboard""]",1104.82,{},216637,1,South America +2023-06-30,85037,2871,"[""Headphones"", ""Phone""]",684.44,{},55289,1,South America +2024-04-30,85038,5025,"[""Phone"", ""Headphones""]",3885.36,{},276035,0,North America +2024-03-08,85039,4051,"[""Keyboard"", ""Charger"", ""Tablet""]",2215.74,"{"""": ""28%""}",103548,0,Europe +2023-09-24,85040,7039,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2775.04,"{"""": ""11%""}",36353,0,Europe +2024-06-06,85041,693,"[""Headphones"", ""Keyboard""]",4906.95,"{""promo"": ""9%""}",80215,0,North America +2023-04-06,85042,3377,"[""Laptop"", ""Phone"", ""Keyboard""]",3108.36,"{""loyalty"": ""8%""}",284968,1,Europe +2023-04-23,85043,4437,"[""Tablet"", ""Keyboard"", ""Headphones""]",3910.69,{},2106,1,North America +2024-04-04,85044,5221,"[""Monitor"", ""Charger"", ""Tablet""]",706.52,"{""loyalty"": ""21%""}",247219,1,Asia +2023-04-11,85045,9408,"[""Tablet"", ""Headphones""]",2071.44,{},246660,1,Africa +2023-03-18,85046,7908,"[""Laptop"", ""Monitor"", ""Headphones""]",3479.07,{},217093,0,Europe +2024-08-16,85047,55,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4939.25,"{""seasonal"": ""6%""}",203160,1,Europe +2023-11-09,85048,5845,"[""Keyboard"", ""Laptop"", ""Monitor""]",1663.13,{},12716,1,Europe +2023-05-31,85049,6640,"[""Wireless Mouse"", ""Keyboard""]",2902.29,{},172154,0,Europe +2024-07-08,85050,8004,"[""Charger""]",1609.21,"{""loyalty"": ""18%""}",283556,0,Asia +2023-03-20,85051,8366,"[""Charger"", ""Laptop""]",2520.04,{},181094,1,South America +2024-02-27,85052,8233,"[""Laptop"", ""Tablet""]",2202.76,"{""seasonal"": ""11%""}",32915,1,Asia +2024-01-17,85053,9447,"[""Phone"", ""Tablet""]",4761.82,"{"""": ""13%""}",201775,0,Europe +2023-08-14,85054,2988,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1827.55,{},255078,1,Europe +2024-12-12,85055,3961,"[""Phone"", ""Tablet""]",3247.62,{},34241,1,North America +2024-04-07,85056,1340,"[""Keyboard"", ""Tablet""]",3400.6,"{""loyalty"": ""6%""}",138070,1,Africa +2023-08-31,85057,409,"[""Charger""]",1506.62,"{""promo"": ""17%""}",193876,0,North America +2024-11-08,85058,6946,"[""Phone""]",3528.99,{},34883,1,Europe +2023-01-28,85059,9219,"[""Headphones""]",354.14,{},125260,1,Asia +2023-08-02,85060,6168,"[""Laptop""]",4873.34,{},277107,0,North America +2024-03-02,85061,5281,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1404.55,"{""promo"": ""9%""}",139327,1,South America +2024-05-19,85062,3703,"[""Headphones""]",2845.79,{},150916,0,Europe +2023-11-14,85063,542,"[""Phone"", ""Headphones""]",4989.99,{},219475,1,Asia +2024-12-17,85064,1692,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1199.69,{},68092,0,Africa +2024-09-09,85065,9582,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2030.66,{},192660,0,Europe +2024-06-28,85066,5762,"[""Keyboard"", ""Monitor"", ""Tablet""]",2490.34,"{""loyalty"": ""6%""}",153663,1,Asia +2023-04-04,85067,8046,"[""Wireless Mouse"", ""Tablet""]",3115.17,{},56455,0,South America +2024-01-24,85068,447,"[""Tablet"", ""Laptop""]",4277.29,{},85405,1,Asia +2023-05-25,85069,4502,"[""Laptop"", ""Wireless Mouse""]",816.36,{},201860,0,Europe +2024-06-18,85070,4460,"[""Keyboard"", ""Monitor"", ""Headphones""]",236.71,"{""promo"": ""14%""}",198310,1,Asia +2024-09-08,85071,8556,"[""Laptop"", ""Tablet""]",1139.09,"{"""": ""28%""}",136107,0,Asia +2023-04-20,85072,9791,"[""Keyboard""]",480.86,"{""promo"": ""27%""}",129462,0,South America +2023-12-05,85073,9373,"[""Keyboard""]",1611.3,{},12936,0,Europe +2024-10-31,85074,4857,"[""Headphones"", ""Keyboard""]",4344.42,{},63357,0,Africa +2023-12-01,85075,3855,"[""Tablet"", ""Headphones"", ""Laptop""]",3759.16,"{""loyalty"": ""17%""}",154219,1,Africa +2023-08-15,85076,6734,"[""Headphones""]",3071.48,"{""promo"": ""13%""}",168490,1,Europe +2024-06-21,85077,3574,"[""Keyboard"", ""Phone"", ""Monitor""]",3440.37,{},263211,1,Asia +2024-03-18,85078,7117,"[""Charger"", ""Phone"", ""Laptop""]",3322.36,{},290996,1,North America +2023-06-01,85079,577,"[""Monitor""]",2386.99,"{""loyalty"": ""29%""}",121478,0,Europe +2023-01-03,85080,4454,"[""Tablet""]",904.23,"{"""": ""21%""}",95192,1,Africa +2024-10-16,85081,2174,"[""Monitor"", ""Keyboard""]",276.85,{},224005,0,Europe +2023-04-19,85082,3440,"[""Monitor""]",2291.32,{},45266,0,Africa +2023-01-24,85083,9684,"[""Keyboard""]",1162.1,{},218639,0,Africa +2024-01-16,85084,2548,"[""Charger"", ""Tablet""]",4647.19,{},62237,1,North America +2024-01-24,85085,467,"[""Tablet"", ""Charger"", ""Laptop""]",2461.48,"{""promo"": ""27%""}",239453,0,Asia +2023-03-13,85086,6449,"[""Monitor"", ""Laptop""]",4195.08,{},96750,1,North America +2024-09-02,85087,3616,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",893.27,{},87095,1,Africa +2024-02-23,85088,8278,"[""Headphones"", ""Laptop"", ""Monitor""]",1267.81,{},170025,1,Asia +2024-10-31,85089,3794,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",1389.61,"{"""": ""12%""}",236459,0,Africa +2023-10-09,85090,9262,"[""Charger""]",4869.21,"{""seasonal"": ""9%""}",295022,1,Asia +2024-11-20,85091,6004,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2578.69,{},296632,0,Africa +2024-03-14,85092,9311,"[""Phone"", ""Monitor""]",3711.2,{},169991,1,North America +2023-05-09,85093,4935,"[""Monitor"", ""Charger""]",1794.38,"{""seasonal"": ""5%""}",173770,0,North America +2023-11-22,85094,9696,"[""Wireless Mouse"", ""Charger""]",3667.6,{},137115,0,Europe +2024-03-14,85095,1397,"[""Keyboard"", ""Headphones""]",254.9,{},233807,0,South America +2024-05-13,85096,5246,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3573.88,{},102058,0,Africa +2024-05-26,85097,6817,"[""Laptop"", ""Monitor""]",2565.37,{},27324,0,Africa +2023-07-17,85098,6329,"[""Keyboard"", ""Laptop"", ""Tablet""]",4431.68,{},221728,1,South America +2024-02-05,85099,8648,"[""Headphones""]",2028.16,"{"""": ""8%""}",288129,0,South America +2024-04-14,85100,4274,"[""Charger""]",3137.4,"{""loyalty"": ""23%""}",69352,1,Asia +2024-06-05,85101,9387,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1721.16,"{""loyalty"": ""27%""}",217303,0,North America +2024-05-09,85102,3569,"[""Phone"", ""Charger"", ""Laptop""]",960.24,{},6564,0,Asia +2023-07-17,85103,2587,"[""Headphones"", ""Monitor"", ""Tablet""]",4081.47,"{""seasonal"": ""6%""}",298565,0,South America +2024-12-05,85104,6854,"[""Wireless Mouse""]",1408.52,"{""seasonal"": ""30%""}",208597,0,Africa +2023-10-15,85105,7507,"[""Monitor""]",1604.61,{},92174,1,Europe +2023-10-09,85106,707,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3583.06,{},72194,0,South America +2024-01-23,85107,3530,"[""Monitor"", ""Phone""]",1170.05,{},250409,1,Asia +2023-01-10,85108,5007,"[""Wireless Mouse"", ""Keyboard""]",1195.42,{},203036,1,Africa +2023-01-08,85109,4940,"[""Keyboard"", ""Headphones"", ""Laptop""]",3833.56,{},281137,0,Africa +2023-04-18,85110,3068,"[""Headphones"", ""Charger"", ""Monitor""]",2203.15,{},166453,0,Asia +2024-12-06,85111,8899,"[""Monitor"", ""Headphones""]",4694.94,"{""promo"": ""9%""}",289828,0,Africa +2023-06-19,85112,5960,"[""Charger"", ""Headphones"", ""Laptop""]",1512.25,{},51829,0,South America +2023-04-14,85113,7614,"[""Laptop"", ""Monitor"", ""Phone""]",2858.74,{},168367,1,South America +2024-01-27,85114,8805,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2670.78,"{""seasonal"": ""27%""}",202788,1,North America +2023-09-10,85115,5929,"[""Phone"", ""Laptop"", ""Headphones""]",3883.56,"{"""": ""15%""}",198469,1,South America +2024-09-16,85116,2513,"[""Phone"", ""Headphones"", ""Keyboard""]",419.61,"{""seasonal"": ""26%""}",295572,1,Africa +2024-11-12,85117,6418,"[""Monitor""]",689.45,"{""loyalty"": ""28%""}",185141,0,Asia +2023-02-01,85118,4262,"[""Headphones"", ""Phone"", ""Charger""]",2942.62,"{""promo"": ""19%""}",157989,1,Africa +2023-06-27,85119,7898,"[""Headphones"", ""Laptop"", ""Phone""]",4844.15,{},258233,1,North America +2024-05-17,85120,3904,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",490.44,{},223554,1,South America +2023-09-07,85121,3359,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",536.96,"{"""": ""7%""}",299140,1,Asia +2024-10-29,85122,4171,"[""Headphones"", ""Keyboard""]",1462.44,{},14612,0,Africa +2023-07-31,85123,3524,"[""Charger"", ""Wireless Mouse""]",353.56,{},114162,1,Asia +2024-11-22,85124,5531,"[""Phone"", ""Wireless Mouse""]",1402.15,"{""seasonal"": ""28%""}",19267,1,Europe +2024-02-20,85125,4411,"[""Keyboard"", ""Charger"", ""Phone""]",2413.65,"{""loyalty"": ""10%""}",37660,1,Africa +2024-08-28,85126,9206,"[""Headphones"", ""Wireless Mouse""]",2981.93,{},94711,0,Asia +2024-09-11,85127,6704,"[""Phone"", ""Keyboard""]",3529.22,"{"""": ""18%""}",41329,1,Asia +2023-04-08,85128,8593,"[""Charger"", ""Headphones"", ""Phone""]",1574.33,{},190331,1,Asia +2023-05-07,85129,9013,"[""Charger""]",1589.14,"{""promo"": ""13%""}",74031,0,South America +2023-01-06,85130,1798,"[""Headphones""]",4368.15,{},251274,1,North America +2024-07-26,85131,8291,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3778.14,{},241880,0,North America +2024-08-17,85132,5396,"[""Keyboard"", ""Monitor""]",1626.78,"{""loyalty"": ""23%""}",128598,1,North America +2023-04-17,85133,3483,"[""Laptop""]",4525.85,"{""loyalty"": ""27%""}",286897,0,South America +2024-12-21,85134,6353,"[""Keyboard"", ""Phone""]",4772.72,{},180653,1,Africa +2023-10-07,85135,7501,"[""Headphones"", ""Laptop"", ""Keyboard""]",2745.35,"{""seasonal"": ""24%""}",261078,1,North America +2024-09-07,85136,5803,"[""Phone"", ""Charger""]",3431.83,{},254104,0,Europe +2024-12-30,85137,4800,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1805.22,{},199663,1,Africa +2024-01-13,85138,1519,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4659.56,"{""promo"": ""13%""}",254275,1,Europe +2024-01-18,85139,4496,"[""Laptop"", ""Phone"", ""Keyboard""]",1094.91,"{""loyalty"": ""20%""}",173661,1,Asia +2023-10-08,85140,6283,"[""Tablet""]",591.57,{},296027,1,Africa +2023-11-28,85141,6170,"[""Tablet""]",2666.0,"{"""": ""20%""}",96513,0,South America +2023-06-05,85142,3125,"[""Tablet"", ""Laptop"", ""Headphones""]",3371.73,{},63091,1,Asia +2023-02-11,85143,15,"[""Laptop"", ""Headphones"", ""Tablet""]",1009.71,{},232067,1,North America +2023-06-16,85144,4144,"[""Wireless Mouse""]",2688.8,"{""loyalty"": ""6%""}",219601,1,Africa +2024-08-30,85145,9107,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4008.27,"{"""": ""9%""}",266518,0,Asia +2023-11-17,85146,4693,"[""Tablet"", ""Headphones"", ""Laptop""]",4783.58,{},141983,1,Europe +2023-07-07,85147,6287,"[""Charger"", ""Phone"", ""Laptop""]",1771.86,{},186655,1,South America +2023-08-05,85148,6915,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3051.95,{},123435,0,Africa +2024-02-13,85149,9174,"[""Keyboard"", ""Laptop"", ""Phone""]",1786.37,"{""loyalty"": ""28%""}",290737,0,Asia +2023-03-31,85150,2876,"[""Phone"", ""Laptop""]",4550.35,"{""loyalty"": ""10%""}",275219,1,North America +2023-08-25,85151,8271,"[""Keyboard"", ""Wireless Mouse""]",4258.49,{},135220,0,Asia +2024-06-05,85152,6148,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1957.12,"{""seasonal"": ""18%""}",150439,1,Asia +2023-06-27,85153,2045,"[""Wireless Mouse""]",117.4,{},4251,1,Asia +2023-05-31,85154,6487,"[""Tablet"", ""Headphones"", ""Phone""]",942.52,{},165834,1,North America +2023-09-15,85155,5723,"[""Phone""]",2687.02,{},259056,0,Europe +2023-08-15,85156,9029,"[""Laptop"", ""Headphones""]",2150.8,"{""loyalty"": ""12%""}",223332,1,South America +2024-04-07,85157,1176,"[""Keyboard""]",2921.47,"{""loyalty"": ""24%""}",101830,0,Africa +2024-11-14,85158,5202,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3790.09,{},260616,0,Africa +2023-02-01,85159,1306,"[""Phone"", ""Charger"", ""Headphones""]",4422.12,"{""promo"": ""30%""}",158275,1,South America +2023-11-12,85160,2576,"[""Headphones"", ""Laptop"", ""Tablet""]",3672.65,{},56356,0,Asia +2023-03-03,85161,9935,"[""Headphones"", ""Wireless Mouse""]",2531.49,{},213341,1,Europe +2024-06-23,85162,5561,"[""Headphones""]",221.94,"{""loyalty"": ""12%""}",66802,0,Europe +2024-11-21,85163,6028,"[""Wireless Mouse"", ""Keyboard""]",1680.88,{},36978,0,Europe +2023-09-05,85164,5689,"[""Phone"", ""Charger""]",3256.79,{},177438,0,Africa +2023-08-02,85165,9605,"[""Phone"", ""Wireless Mouse""]",1135.65,{},181114,1,North America +2024-01-26,85166,5556,"[""Charger"", ""Phone"", ""Tablet""]",705.5,"{""promo"": ""21%""}",252344,0,South America +2023-02-25,85167,8451,"[""Phone""]",655.37,{},72853,0,Asia +2024-03-19,85168,4123,"[""Wireless Mouse""]",3812.76,"{""loyalty"": ""7%""}",242006,0,North America +2024-07-10,85169,9067,"[""Phone""]",923.22,"{""promo"": ""22%""}",72424,0,Africa +2024-05-08,85170,2321,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3822.73,{},128806,0,North America +2023-07-21,85171,8460,"[""Laptop""]",3810.81,{},277991,0,Asia +2024-01-21,85172,4787,"[""Phone""]",3120.77,{},271556,0,North America +2023-08-31,85173,1050,"[""Headphones"", ""Tablet"", ""Charger""]",690.41,{},283804,1,Europe +2024-09-19,85174,5931,"[""Monitor"", ""Headphones"", ""Tablet""]",628.9,{},108445,0,North America +2023-08-15,85175,5287,"[""Charger"", ""Phone"", ""Headphones""]",1531.74,{},206529,0,Africa +2023-02-10,85176,6966,"[""Tablet""]",3053.41,{},268036,0,South America +2023-05-13,85177,376,"[""Keyboard"", ""Laptop"", ""Charger""]",3334.01,"{""seasonal"": ""30%""}",153864,0,North America +2024-04-03,85178,1472,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2136.88,"{"""": ""22%""}",155023,1,North America +2024-12-24,85179,54,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3604.64,"{""seasonal"": ""19%""}",281668,0,Africa +2024-03-03,85180,2621,"[""Headphones""]",688.53,{},277020,1,North America +2023-11-04,85181,2227,"[""Headphones""]",1506.44,"{""loyalty"": ""18%""}",265086,0,North America +2024-02-23,85182,3732,"[""Charger""]",2263.55,"{""promo"": ""9%""}",82888,1,Asia +2024-03-29,85183,8864,"[""Keyboard"", ""Phone"", ""Headphones""]",1746.25,{},260186,0,Europe +2023-02-06,85184,6890,"[""Tablet"", ""Monitor""]",3284.04,"{""loyalty"": ""16%""}",94373,1,Europe +2023-06-25,85185,1446,"[""Keyboard""]",760.4,{},49128,0,Asia +2023-02-12,85186,5580,"[""Tablet"", ""Laptop""]",1707.39,"{""seasonal"": ""13%""}",227225,0,South America +2024-09-13,85187,7433,"[""Phone"", ""Headphones""]",4858.4,"{""seasonal"": ""14%""}",100778,1,Asia +2023-11-24,85188,9133,"[""Headphones"", ""Charger"", ""Laptop""]",310.1,"{""promo"": ""20%""}",115326,0,North America +2023-08-22,85189,5961,"[""Headphones"", ""Monitor""]",437.34,"{""seasonal"": ""8%""}",117209,0,North America +2024-05-02,85190,4865,"[""Laptop"", ""Phone""]",677.96,{},216784,0,South America +2023-05-29,85191,4176,"[""Phone"", ""Laptop""]",2544.68,"{""loyalty"": ""26%""}",128040,0,Africa +2024-11-17,85192,6023,"[""Laptop""]",4339.69,"{""seasonal"": ""14%""}",19403,1,Africa +2023-06-29,85193,2916,"[""Monitor"", ""Headphones"", ""Laptop""]",4663.42,"{""promo"": ""5%""}",203669,0,Asia +2024-11-21,85194,826,"[""Tablet""]",886.51,{},135601,0,Europe +2024-06-01,85195,5588,"[""Tablet""]",896.41,{},281422,0,Europe +2024-02-17,85196,2300,"[""Phone""]",3840.47,"{"""": ""15%""}",23052,0,North America +2023-03-22,85197,6384,"[""Phone""]",2856.56,"{""loyalty"": ""19%""}",234891,0,North America +2024-06-14,85198,5557,"[""Wireless Mouse"", ""Tablet""]",4317.81,{},261497,1,Asia +2023-09-27,85199,2912,"[""Tablet"", ""Headphones"", ""Keyboard""]",4195.71,{},87529,1,Asia +2023-07-13,85200,8317,"[""Monitor""]",1779.46,{},144076,0,Asia +2023-06-19,85201,9107,"[""Phone"", ""Monitor""]",1445.03,"{""seasonal"": ""29%""}",246760,1,North America +2023-09-02,85202,284,"[""Keyboard"", ""Charger""]",2453.09,"{""promo"": ""30%""}",112708,0,Europe +2023-03-09,85203,7635,"[""Keyboard"", ""Wireless Mouse""]",3963.68,"{""promo"": ""29%""}",191427,1,Africa +2024-03-13,85204,4330,"[""Headphones""]",4438.28,"{"""": ""26%""}",212183,0,North America +2023-06-13,85205,6372,"[""Tablet"", ""Wireless Mouse""]",106.41,{},54380,1,North America +2023-03-26,85206,733,"[""Headphones""]",1327.34,{},115875,1,South America +2024-06-28,85207,38,"[""Tablet""]",1224.01,{},155947,1,Europe +2024-06-27,85208,1763,"[""Wireless Mouse""]",1851.2,"{"""": ""8%""}",211017,1,North America +2023-10-23,85209,6604,"[""Keyboard"", ""Tablet""]",4162.24,"{"""": ""22%""}",271287,0,Africa +2024-10-28,85210,9587,"[""Phone""]",1814.66,{},74672,1,North America +2023-07-13,85211,1277,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2331.62,{},239112,0,Africa +2023-12-17,85212,6376,"[""Tablet"", ""Monitor""]",1985.11,{},184564,0,North America +2023-08-18,85213,524,"[""Charger"", ""Laptop"", ""Headphones""]",4170.33,{},111855,0,North America +2023-10-03,85214,9048,"[""Laptop"", ""Tablet""]",2506.06,{},1022,1,South America +2024-10-11,85215,1188,"[""Charger"", ""Keyboard""]",402.08,{},171846,0,Asia +2023-02-07,85216,8232,"[""Headphones"", ""Charger""]",2782.89,"{""loyalty"": ""17%""}",279615,1,North America +2023-04-19,85217,5383,"[""Laptop"", ""Keyboard""]",3571.6,"{"""": ""17%""}",124990,1,Africa +2023-09-14,85218,2712,"[""Headphones"", ""Tablet"", ""Phone""]",1199.85,"{""promo"": ""6%""}",134961,0,Europe +2024-12-29,85219,9979,"[""Charger""]",2582.42,{},38201,1,North America +2024-04-30,85220,3862,"[""Monitor""]",2904.82,"{""seasonal"": ""21%""}",257274,0,Asia +2024-03-30,85221,4062,"[""Charger""]",2050.02,"{""seasonal"": ""29%""}",26451,0,Asia +2024-06-26,85222,9212,"[""Wireless Mouse"", ""Laptop""]",1737.8,"{""loyalty"": ""11%""}",260118,1,Asia +2024-01-06,85223,6803,"[""Tablet""]",2231.04,{},226655,0,Africa +2024-01-15,85224,1665,"[""Wireless Mouse"", ""Keyboard""]",4279.76,{},283159,0,North America +2024-04-22,85225,1293,"[""Phone""]",1237.74,{},70082,1,Asia +2024-06-07,85226,729,"[""Keyboard"", ""Charger"", ""Phone""]",4311.92,{},233759,0,South America +2024-09-28,85227,8234,"[""Wireless Mouse""]",3078.07,"{""loyalty"": ""18%""}",62809,0,Asia +2023-11-03,85228,6330,"[""Keyboard"", ""Laptop""]",1200.81,{},21297,1,Asia +2024-11-06,85229,5015,"[""Keyboard"", ""Phone""]",4059.16,{},207114,1,North America +2024-07-28,85230,6409,"[""Monitor"", ""Charger"", ""Keyboard""]",4533.26,"{""promo"": ""16%""}",176627,0,Europe +2024-10-31,85231,8023,"[""Phone"", ""Laptop""]",4212.9,{},253351,0,Asia +2023-12-24,85232,6211,"[""Laptop"", ""Charger""]",3350.03,{},118573,0,North America +2023-06-23,85233,3672,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3220.63,{},227782,1,Europe +2024-12-14,85234,5671,"[""Monitor"", ""Charger"", ""Keyboard""]",4691.79,{},175575,1,Europe +2024-08-19,85235,3975,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4266.66,{},11702,1,Europe +2023-01-28,85236,2391,"[""Tablet"", ""Phone""]",1580.84,{},161326,0,Africa +2024-11-28,85237,9013,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3534.68,{},13426,1,Africa +2024-10-01,85238,8298,"[""Laptop"", ""Headphones"", ""Keyboard""]",78.45,"{""loyalty"": ""20%""}",143944,0,Europe +2024-05-06,85239,6041,"[""Keyboard"", ""Laptop"", ""Headphones""]",189.64,"{"""": ""27%""}",122087,1,South America +2024-05-25,85240,6929,"[""Keyboard"", ""Monitor""]",1165.91,{},278697,0,Europe +2024-04-09,85241,4265,"[""Laptop"", ""Keyboard""]",3172.55,{},267476,0,North America +2024-09-30,85242,7973,"[""Wireless Mouse"", ""Laptop""]",475.33,"{""seasonal"": ""28%""}",62416,0,Africa +2024-05-25,85243,2520,"[""Charger"", ""Phone""]",205.52,"{"""": ""8%""}",184576,0,Europe +2023-03-01,85244,6091,"[""Phone"", ""Keyboard"", ""Headphones""]",2111.64,"{""seasonal"": ""21%""}",43992,0,North America +2023-04-08,85245,8063,"[""Wireless Mouse""]",617.21,"{""promo"": ""23%""}",61625,0,North America +2023-11-05,85246,1637,"[""Wireless Mouse"", ""Monitor""]",394.36,"{""loyalty"": ""5%""}",220714,0,Asia +2023-03-03,85247,5865,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1127.41,"{""seasonal"": ""22%""}",53604,0,Asia +2023-02-23,85248,41,"[""Phone"", ""Laptop"", ""Headphones""]",4700.73,{},23023,1,Asia +2024-04-27,85249,3307,"[""Keyboard"", ""Headphones""]",2516.56,"{""loyalty"": ""17%""}",219706,1,Asia +2024-12-04,85250,3464,"[""Headphones"", ""Keyboard"", ""Charger""]",2492.16,{},165694,1,North America +2023-12-06,85251,4858,"[""Monitor""]",3683.26,"{""seasonal"": ""9%""}",124012,0,North America +2023-02-01,85252,4732,"[""Charger""]",4790.02,"{""promo"": ""5%""}",114215,0,South America +2024-02-01,85253,7798,"[""Laptop""]",3665.28,"{""seasonal"": ""28%""}",42062,1,North America +2023-11-06,85254,5643,"[""Headphones"", ""Laptop""]",4998.51,"{""seasonal"": ""15%""}",82179,0,North America +2023-07-10,85255,1092,"[""Tablet""]",2020.92,{},206011,0,North America +2024-11-02,85256,608,"[""Wireless Mouse""]",456.59,{},53999,1,North America +2024-03-30,85257,7142,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3835.06,"{""loyalty"": ""29%""}",232330,0,Asia +2024-05-23,85258,3692,"[""Charger""]",519.77,{},208659,0,North America +2023-04-11,85259,8959,"[""Laptop"", ""Headphones"", ""Phone""]",4309.69,{},92024,1,North America +2023-08-15,85260,9324,"[""Monitor"", ""Headphones""]",305.83,{},47881,0,Europe +2023-07-16,85261,7853,"[""Laptop""]",643.81,"{""seasonal"": ""30%""}",243521,1,South America +2024-09-12,85262,6797,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2167.45,"{""seasonal"": ""19%""}",89224,1,Africa +2023-09-21,85263,3788,"[""Headphones""]",1277.27,"{""loyalty"": ""5%""}",3654,1,North America +2023-07-20,85264,5025,"[""Monitor"", ""Keyboard""]",3720.54,{},218516,1,North America +2023-10-24,85265,6912,"[""Laptop""]",686.99,"{""seasonal"": ""19%""}",72824,1,Africa +2023-08-20,85266,9658,"[""Keyboard"", ""Charger"", ""Laptop""]",3064.84,"{""promo"": ""22%""}",130533,1,South America +2024-05-20,85267,268,"[""Headphones""]",120.41,{},103916,1,Europe +2023-08-30,85268,9915,"[""Phone""]",993.71,{},249721,1,North America +2024-09-22,85269,1376,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4608.02,{},96860,1,South America +2023-02-12,85270,9146,"[""Headphones"", ""Laptop""]",2080.87,{},71043,0,South America +2023-08-19,85271,4645,"[""Phone"", ""Laptop""]",2833.12,{},222072,1,Asia +2023-05-13,85272,6432,"[""Monitor""]",3202.31,"{"""": ""27%""}",237838,0,Asia +2023-03-17,85273,950,"[""Keyboard""]",3303.14,{},61856,0,North America +2023-08-16,85274,6696,"[""Tablet"", ""Charger""]",1884.39,{},273181,1,South America +2024-02-12,85275,9150,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2137.28,{},135906,0,Africa +2024-10-05,85276,7831,"[""Keyboard""]",1889.38,{},117145,1,South America +2023-04-29,85277,2260,"[""Phone"", ""Tablet""]",1828.0,"{""seasonal"": ""18%""}",210868,1,North America +2024-02-01,85278,3961,"[""Headphones"", ""Charger""]",1663.99,{},168740,1,Europe +2024-05-19,85279,6286,"[""Wireless Mouse"", ""Charger""]",1233.39,{},261592,1,Africa +2024-11-30,85280,7980,"[""Charger"", ""Tablet"", ""Phone""]",1685.18,{},122035,0,Asia +2024-06-30,85281,4840,"[""Laptop""]",851.94,{},68144,1,Africa +2024-05-21,85282,8166,"[""Keyboard"", ""Charger"", ""Laptop""]",273.15,{},243252,0,North America +2024-02-09,85283,8074,"[""Charger""]",3809.42,{},151720,1,South America +2023-02-02,85284,8304,"[""Laptop"", ""Keyboard"", ""Phone""]",1453.97,"{""seasonal"": ""5%""}",67768,0,South America +2023-08-01,85285,9610,"[""Keyboard""]",4811.5,"{""seasonal"": ""6%""}",264381,1,Europe +2024-02-26,85286,4540,"[""Charger"", ""Tablet""]",3081.55,{},41143,1,North America +2023-07-14,85287,474,"[""Charger"", ""Phone""]",881.21,{},102659,0,South America +2023-03-06,85288,788,"[""Headphones"", ""Monitor""]",1984.87,"{"""": ""28%""}",170778,1,Europe +2024-07-11,85289,1463,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3455.71,"{""loyalty"": ""13%""}",267675,0,Europe +2024-03-23,85290,5439,"[""Tablet"", ""Charger"", ""Headphones""]",757.17,"{""promo"": ""24%""}",275736,1,Asia +2024-05-20,85291,3009,"[""Headphones"", ""Charger""]",4211.25,"{""seasonal"": ""28%""}",69630,1,Asia +2024-07-02,85292,3777,"[""Headphones"", ""Phone"", ""Charger""]",3679.3,"{""loyalty"": ""30%""}",139606,0,Asia +2023-09-29,85293,322,"[""Laptop"", ""Keyboard""]",3474.02,"{""promo"": ""25%""}",38587,0,Africa +2023-10-01,85294,9102,"[""Keyboard""]",3135.27,{},68960,1,Africa +2024-10-25,85295,3449,"[""Charger""]",2238.45,"{""promo"": ""23%""}",43141,0,Africa +2024-07-19,85296,8571,"[""Headphones"", ""Laptop""]",1596.67,"{"""": ""9%""}",130367,0,Europe +2023-11-29,85297,5106,"[""Keyboard"", ""Charger"", ""Laptop""]",271.49,{},17134,1,South America +2024-12-21,85298,3555,"[""Wireless Mouse"", ""Keyboard""]",3842.25,{},54993,1,South America +2023-11-05,85299,7353,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",2308.07,{},209119,0,Asia +2024-08-24,85300,215,"[""Wireless Mouse""]",4066.45,"{"""": ""18%""}",128935,0,South America +2023-03-09,85301,7587,"[""Monitor"", ""Charger""]",1644.61,"{""loyalty"": ""16%""}",47594,1,Asia +2024-07-17,85302,9763,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3705.93,"{"""": ""14%""}",223280,0,Africa +2023-02-26,85303,3946,"[""Monitor"", ""Charger""]",52.12,{},128982,0,North America +2023-03-22,85304,6050,"[""Headphones"", ""Tablet"", ""Charger""]",2910.98,{},280537,0,North America +2024-08-26,85305,6747,"[""Tablet"", ""Charger"", ""Keyboard""]",785.8,"{"""": ""8%""}",66333,0,South America +2023-07-04,85306,8841,"[""Phone"", ""Tablet"", ""Charger""]",3616.0,{},84315,1,Europe +2023-01-19,85307,3459,"[""Charger"", ""Monitor""]",411.93,{},39472,0,North America +2023-06-15,85308,9956,"[""Headphones"", ""Laptop""]",2526.42,"{"""": ""20%""}",136088,0,Europe +2023-05-11,85309,4753,"[""Headphones"", ""Charger""]",4160.41,{},218508,1,Asia +2023-07-09,85310,3293,"[""Phone"", ""Charger""]",1647.81,{},23568,0,Asia +2023-12-09,85311,3797,"[""Headphones""]",2001.81,"{""seasonal"": ""27%""}",282190,0,South America +2023-09-01,85312,8507,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3288.42,"{""loyalty"": ""5%""}",234900,0,Europe +2023-04-01,85313,3382,"[""Monitor"", ""Laptop"", ""Tablet""]",3136.02,"{""promo"": ""26%""}",225297,0,Europe +2023-10-07,85314,3795,"[""Wireless Mouse""]",438.08,{},258712,0,Europe +2023-05-21,85315,1533,"[""Laptop""]",3156.58,"{""promo"": ""12%""}",175804,1,Europe +2023-11-30,85316,4532,"[""Headphones"", ""Laptop""]",3670.52,"{"""": ""26%""}",108084,0,Asia +2023-11-18,85317,3871,"[""Laptop"", ""Charger""]",4286.28,{},115109,1,Africa +2024-05-03,85318,2236,"[""Charger"", ""Phone""]",220.39,"{""promo"": ""19%""}",219073,0,Africa +2024-11-04,85319,6807,"[""Headphones"", ""Keyboard"", ""Phone""]",3403.45,"{""loyalty"": ""24%""}",164078,1,Europe +2024-11-25,85320,5985,"[""Tablet"", ""Headphones""]",3963.8,"{""seasonal"": ""24%""}",164437,1,North America +2023-06-01,85321,3610,"[""Wireless Mouse"", ""Tablet""]",218.19,{},58643,1,Africa +2024-07-10,85322,3821,"[""Charger"", ""Laptop""]",782.93,"{"""": ""26%""}",219129,1,Europe +2024-07-11,85323,4643,"[""Charger"", ""Wireless Mouse""]",88.86,{},97493,1,Europe +2024-06-27,85324,6072,"[""Charger""]",2467.34,"{""loyalty"": ""8%""}",143767,1,North America +2024-03-06,85325,8804,"[""Monitor"", ""Laptop""]",3019.93,"{""seasonal"": ""7%""}",20819,0,Asia +2024-04-05,85326,7638,"[""Wireless Mouse"", ""Tablet""]",2347.51,{},129045,0,Africa +2024-08-06,85327,8658,"[""Charger"", ""Laptop""]",4558.94,"{"""": ""13%""}",181231,0,Africa +2024-02-15,85328,1939,"[""Tablet""]",2384.86,"{""loyalty"": ""22%""}",260822,1,North America +2024-03-30,85329,9,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",970.96,"{""promo"": ""9%""}",87840,1,Asia +2023-11-23,85330,4770,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",837.6,"{"""": ""6%""}",172827,1,Asia +2023-07-20,85331,4709,"[""Monitor"", ""Charger""]",1364.31,{},83427,0,South America +2024-09-01,85332,5500,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3901.93,"{"""": ""29%""}",212613,1,North America +2023-03-12,85333,6730,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2733.05,{},118445,0,Europe +2023-12-11,85334,1784,"[""Headphones""]",4141.55,{},31550,0,Africa +2024-08-01,85335,7892,"[""Laptop"", ""Wireless Mouse""]",3895.37,{},34496,1,Africa +2024-03-23,85336,9416,"[""Keyboard"", ""Laptop"", ""Monitor""]",1283.71,"{""promo"": ""27%""}",42703,0,South America +2024-05-06,85337,5160,"[""Headphones""]",4989.32,"{"""": ""20%""}",170764,1,Europe +2023-06-01,85338,1537,"[""Phone""]",4559.64,"{"""": ""22%""}",14114,1,North America +2024-08-16,85339,3144,"[""Keyboard""]",3411.88,{},285082,1,South America +2023-02-02,85340,9483,"[""Charger"", ""Headphones"", ""Phone""]",362.96,"{""seasonal"": ""28%""}",51448,1,Africa +2023-05-03,85341,7354,"[""Phone"", ""Tablet""]",4823.37,"{""loyalty"": ""29%""}",130907,0,Asia +2023-03-31,85342,9737,"[""Monitor""]",1541.02,{},14906,0,South America +2023-08-27,85343,6395,"[""Phone"", ""Tablet""]",3622.4,"{""seasonal"": ""20%""}",78090,1,Europe +2024-12-07,85344,5789,"[""Laptop"", ""Phone""]",3117.91,{},126248,1,North America +2023-11-21,85345,6082,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1010.77,"{""loyalty"": ""7%""}",14524,0,North America +2023-05-30,85346,4346,"[""Monitor""]",2455.34,{},4644,0,Asia +2024-05-18,85347,3201,"[""Headphones"", ""Keyboard""]",3747.02,"{""seasonal"": ""27%""}",49548,1,North America +2023-04-17,85348,4902,"[""Phone""]",3434.78,{},26458,1,Europe +2023-01-01,85349,3354,"[""Keyboard"", ""Charger"", ""Monitor""]",3800.43,"{"""": ""8%""}",166215,0,Europe +2023-04-11,85350,9412,"[""Headphones"", ""Phone"", ""Keyboard""]",3689.19,{},173052,1,Africa +2023-03-11,85351,7063,"[""Tablet"", ""Wireless Mouse""]",364.35,"{""loyalty"": ""23%""}",277009,0,Africa +2024-04-19,85352,4277,"[""Phone""]",1940.26,"{""seasonal"": ""23%""}",62388,0,Asia +2024-09-04,85353,7244,"[""Keyboard""]",4520.22,{},145878,0,North America +2024-05-28,85354,455,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1614.27,"{""loyalty"": ""6%""}",75794,0,Asia +2023-02-09,85355,8589,"[""Keyboard""]",2763.62,{},66172,1,Africa +2023-03-17,85356,5817,"[""Monitor"", ""Charger""]",1605.88,"{""promo"": ""12%""}",295906,1,South America +2024-01-18,85357,2370,"[""Laptop""]",1345.37,"{""promo"": ""19%""}",282288,0,Asia +2024-10-31,85358,3605,"[""Laptop"", ""Keyboard""]",2370.9,{},103574,0,Europe +2023-11-13,85359,3661,"[""Phone"", ""Laptop""]",1239.17,{},48737,0,North America +2024-08-28,85360,8038,"[""Keyboard"", ""Monitor"", ""Phone""]",4530.4,{},263128,0,North America +2023-02-22,85361,5075,"[""Charger""]",4152.76,"{""promo"": ""27%""}",149267,1,Asia +2023-07-02,85362,958,"[""Phone"", ""Charger""]",4566.8,{},79075,1,Europe +2024-10-24,85363,6455,"[""Monitor"", ""Laptop""]",2812.5,"{""promo"": ""18%""}",199433,0,Europe +2024-07-13,85364,472,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4243.15,{},263096,1,South America +2023-10-20,85365,8611,"[""Headphones""]",1331.05,"{""promo"": ""19%""}",192526,0,North America +2024-09-01,85366,3934,"[""Monitor"", ""Laptop""]",4263.86,"{""promo"": ""11%""}",114808,1,Asia +2023-11-09,85367,205,"[""Monitor""]",1622.02,"{"""": ""16%""}",221476,1,Africa +2023-06-29,85368,2548,"[""Tablet"", ""Monitor"", ""Keyboard""]",3011.46,{},187283,1,Europe +2024-02-09,85369,5384,"[""Phone"", ""Charger""]",120.12,"{"""": ""28%""}",64165,0,Asia +2024-05-05,85370,3305,"[""Charger""]",2490.46,{},247138,1,Asia +2023-05-22,85371,222,"[""Monitor"", ""Laptop"", ""Phone""]",4085.38,{},286755,1,Asia +2024-02-07,85372,7221,"[""Tablet"", ""Headphones"", ""Phone""]",3142.46,{},75822,0,North America +2023-02-18,85373,2603,"[""Headphones"", ""Charger""]",2560.37,"{""promo"": ""19%""}",221597,0,Europe +2024-11-25,85374,254,"[""Keyboard"", ""Wireless Mouse""]",2863.98,{},92448,0,Asia +2024-11-14,85375,1760,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2123.49,{},173047,0,North America +2023-01-14,85376,7442,"[""Headphones"", ""Charger"", ""Keyboard""]",4029.35,"{""promo"": ""29%""}",273128,1,South America +2023-09-04,85377,529,"[""Monitor"", ""Headphones""]",3199.26,{},60464,0,Asia +2023-01-03,85378,9864,"[""Charger"", ""Headphones"", ""Keyboard""]",244.68,{},88184,1,Asia +2023-06-01,85379,4405,"[""Headphones"", ""Charger"", ""Phone""]",1013.37,{},293752,0,Asia +2024-11-10,85380,2831,"[""Headphones"", ""Phone""]",2501.36,{},60204,0,North America +2024-04-18,85381,4354,"[""Laptop"", ""Keyboard""]",898.73,{},189805,1,South America +2024-08-09,85382,866,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3595.58,"{""seasonal"": ""28%""}",280414,1,Europe +2023-01-31,85383,9106,"[""Wireless Mouse"", ""Monitor""]",487.26,"{"""": ""30%""}",269292,0,South America +2023-06-02,85384,7348,"[""Charger""]",2851.91,{},19492,1,South America +2023-05-29,85385,1675,"[""Laptop"", ""Charger"", ""Monitor""]",1902.6,"{""promo"": ""30%""}",203883,0,South America +2024-09-21,85386,8477,"[""Phone"", ""Headphones"", ""Tablet""]",3257.42,{},13175,1,North America +2023-06-05,85387,777,"[""Keyboard""]",4148.75,"{""promo"": ""22%""}",289724,1,Asia +2024-07-19,85388,7201,"[""Phone"", ""Monitor""]",3660.47,"{"""": ""12%""}",185977,0,Europe +2024-12-12,85389,7608,"[""Tablet"", ""Laptop"", ""Phone""]",1293.23,"{""loyalty"": ""26%""}",107916,1,Asia +2023-03-03,85390,4903,"[""Monitor"", ""Charger""]",3543.07,{},105790,1,North America +2024-03-04,85391,9540,"[""Laptop"", ""Monitor"", ""Headphones""]",4385.13,"{""seasonal"": ""24%""}",191416,0,North America +2023-06-24,85392,7335,"[""Keyboard"", ""Tablet"", ""Laptop""]",1484.52,"{""seasonal"": ""10%""}",122153,0,Asia +2023-01-15,85393,1954,"[""Laptop""]",616.72,"{""seasonal"": ""8%""}",279767,1,Africa +2023-07-10,85394,519,"[""Keyboard"", ""Laptop"", ""Monitor""]",3995.88,"{"""": ""16%""}",5856,1,Europe +2023-03-07,85395,22,"[""Monitor""]",2426.94,"{"""": ""28%""}",209333,0,North America +2024-07-08,85396,1900,"[""Laptop"", ""Monitor"", ""Headphones""]",1317.57,{},145603,0,Europe +2024-01-31,85397,5763,"[""Laptop"", ""Headphones""]",1963.15,{},115812,1,Africa +2024-01-14,85398,4307,"[""Keyboard"", ""Laptop""]",1201.78,"{""loyalty"": ""26%""}",157835,1,Asia +2023-10-24,85399,7895,"[""Laptop"", ""Wireless Mouse""]",267.11,"{""promo"": ""16%""}",275156,1,North America +2023-05-24,85400,3242,"[""Keyboard"", ""Laptop"", ""Charger""]",3730.69,{},144392,1,Africa +2023-10-22,85401,2926,"[""Tablet"", ""Phone""]",4062.15,{},37326,1,Asia +2024-06-19,85402,842,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4724.32,{},286069,0,South America +2023-01-22,85403,3016,"[""Phone""]",4921.32,{},88585,0,Africa +2023-03-01,85404,7037,"[""Charger""]",1163.97,{},62581,0,North America +2024-08-31,85405,8034,"[""Tablet"", ""Headphones""]",502.27,{},13262,0,Europe +2024-04-28,85406,9253,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4784.65,{},261202,1,South America +2024-12-07,85407,334,"[""Phone""]",4841.53,{},127592,0,North America +2024-05-24,85408,8896,"[""Phone""]",1157.94,"{""seasonal"": ""18%""}",238554,0,South America +2024-09-22,85409,4427,"[""Keyboard"", ""Monitor""]",387.41,{},247263,1,South America +2024-01-07,85410,114,"[""Laptop""]",748.09,{},239880,1,Europe +2024-03-13,85411,6253,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1349.85,{},151989,1,North America +2024-07-12,85412,6158,"[""Wireless Mouse"", ""Tablet""]",2600.02,{},167326,0,Asia +2024-01-07,85413,821,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2989.75,"{""loyalty"": ""14%""}",202288,0,Asia +2023-01-04,85414,6489,"[""Tablet""]",3134.45,{},36294,1,North America +2023-06-27,85415,212,"[""Laptop""]",1471.56,"{""loyalty"": ""21%""}",125585,1,Africa +2024-06-21,85416,9140,"[""Headphones""]",2229.25,{},129098,0,North America +2024-03-05,85417,4624,"[""Tablet""]",4441.95,{},172468,0,South America +2024-01-29,85418,9655,"[""Phone"", ""Monitor"", ""Tablet""]",4818.5,{},265076,0,Europe +2023-10-04,85419,2584,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3165.88,{},220806,1,Europe +2024-08-19,85420,5142,"[""Phone"", ""Headphones""]",2862.04,{},164661,1,South America +2024-10-06,85421,3200,"[""Headphones"", ""Charger"", ""Laptop""]",81.62,{},67819,1,North America +2024-10-01,85422,28,"[""Charger"", ""Tablet"", ""Keyboard""]",4951.25,{},3927,0,North America +2023-12-11,85423,6672,"[""Monitor"", ""Keyboard""]",3587.9,{},173518,1,Europe +2024-05-07,85424,2799,"[""Laptop"", ""Monitor""]",4317.13,{},130982,0,Europe +2023-09-02,85425,3660,"[""Charger""]",4395.02,"{""seasonal"": ""9%""}",212669,1,South America +2023-10-15,85426,8291,"[""Phone""]",2617.53,"{"""": ""21%""}",39063,1,Asia +2024-04-18,85427,5588,"[""Phone"", ""Laptop""]",2582.45,{},90082,0,Africa +2024-12-24,85428,8824,"[""Laptop"", ""Headphones""]",4645.46,"{"""": ""16%""}",89481,0,Europe +2023-02-02,85429,5415,"[""Monitor""]",323.81,{},110645,1,Europe +2024-10-19,85430,5502,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4030.28,"{"""": ""9%""}",188560,1,Europe +2024-03-21,85431,1069,"[""Keyboard"", ""Tablet""]",1520.66,{},296035,0,Asia +2023-02-17,85432,2676,"[""Laptop"", ""Tablet""]",2509.28,"{""loyalty"": ""26%""}",231460,0,Africa +2023-12-30,85433,4788,"[""Monitor"", ""Charger""]",4460.72,"{""loyalty"": ""27%""}",245703,0,South America +2023-03-18,85434,6905,"[""Headphones"", ""Phone""]",2602.9,{},89193,0,North America +2024-12-30,85435,8772,"[""Charger"", ""Laptop"", ""Monitor""]",2789.35,"{"""": ""12%""}",254519,0,Europe +2024-01-15,85436,1048,"[""Tablet"", ""Headphones""]",1521.76,{},93730,0,North America +2024-01-24,85437,912,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",747.23,"{""promo"": ""12%""}",260042,0,Asia +2024-10-13,85438,6811,"[""Laptop""]",3050.57,"{""loyalty"": ""14%""}",154353,0,South America +2023-10-14,85439,8449,"[""Wireless Mouse""]",319.66,{},55029,0,Asia +2023-06-19,85440,8095,"[""Phone"", ""Charger"", ""Keyboard""]",1475.65,{},124575,0,Asia +2023-05-27,85441,6466,"[""Phone""]",1353.47,{},126537,1,Africa +2024-01-29,85442,6969,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",2192.24,"{""loyalty"": ""15%""}",261445,1,Europe +2024-01-07,85443,3698,"[""Monitor""]",2688.98,"{""loyalty"": ""20%""}",83375,1,North America +2024-12-29,85444,5455,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2777.73,{},227845,1,North America +2024-09-17,85445,9284,"[""Phone"", ""Monitor"", ""Tablet""]",1589.51,{},294478,1,South America +2023-08-05,85446,9499,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",3402.69,"{""promo"": ""5%""}",165792,0,Europe +2024-11-16,85447,4543,"[""Phone"", ""Charger""]",1677.24,"{"""": ""10%""}",155239,1,South America +2024-09-04,85448,2684,"[""Charger""]",3541.95,{},162422,1,South America +2024-10-26,85449,6068,"[""Tablet"", ""Wireless Mouse""]",2217.79,"{""loyalty"": ""25%""}",37924,1,Asia +2023-11-24,85450,7349,"[""Tablet"", ""Phone""]",319.65,{},269732,0,Europe +2023-12-03,85451,868,"[""Phone"", ""Keyboard"", ""Headphones""]",2516.96,"{""promo"": ""14%""}",114752,0,Africa +2024-06-17,85452,4913,"[""Laptop"", ""Phone"", ""Tablet""]",1595.54,{},290782,1,South America +2024-05-31,85453,2985,"[""Headphones"", ""Monitor""]",1572.15,{},299517,0,North America +2023-12-31,85454,1373,"[""Keyboard"", ""Charger"", ""Headphones""]",908.06,{},164398,0,Europe +2024-09-13,85455,4309,"[""Monitor""]",1823.31,"{"""": ""15%""}",10180,1,Asia +2023-12-12,85456,7248,"[""Wireless Mouse"", ""Monitor""]",634.17,{},280957,0,Africa +2024-07-11,85457,2896,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2278.8,"{""promo"": ""24%""}",87693,0,Europe +2024-09-23,85458,1130,"[""Laptop"", ""Phone""]",4968.72,"{"""": ""16%""}",5955,1,South America +2023-09-13,85459,446,"[""Phone""]",4719.29,{},18707,1,North America +2023-10-07,85460,3910,"[""Headphones"", ""Laptop"", ""Charger""]",4981.54,"{"""": ""12%""}",273665,0,North America +2024-05-19,85461,4538,"[""Charger"", ""Headphones""]",3516.49,{},184670,0,Asia +2023-03-19,85462,817,"[""Keyboard""]",3848.61,{},181753,0,Europe +2024-02-25,85463,2806,"[""Phone"", ""Wireless Mouse""]",566.03,"{""promo"": ""5%""}",57146,0,North America +2023-02-09,85464,7621,"[""Laptop"", ""Monitor""]",1557.81,"{""promo"": ""12%""}",68043,0,Africa +2024-08-11,85465,218,"[""Phone""]",4657.44,"{"""": ""29%""}",245069,0,North America +2024-11-07,85466,1205,"[""Wireless Mouse""]",4716.8,{},215510,1,Asia +2024-03-22,85467,8447,"[""Keyboard"", ""Laptop"", ""Phone""]",1885.78,"{""loyalty"": ""28%""}",220466,1,Africa +2024-04-16,85468,7028,"[""Headphones"", ""Monitor"", ""Laptop""]",352.18,"{""promo"": ""9%""}",88984,0,Asia +2024-06-18,85469,9714,"[""Phone"", ""Monitor"", ""Keyboard""]",1316.64,"{""promo"": ""5%""}",59745,1,South America +2023-11-01,85470,3008,"[""Keyboard"", ""Charger"", ""Phone""]",3884.83,"{""seasonal"": ""5%""}",294194,0,Asia +2024-09-11,85471,8667,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",1181.83,"{""loyalty"": ""24%""}",203968,1,North America +2023-06-19,85472,6672,"[""Tablet""]",2547.15,{},89837,0,South America +2023-11-17,85473,981,"[""Phone"", ""Charger"", ""Headphones""]",4221.01,{},261467,1,Europe +2024-01-08,85474,1150,"[""Phone""]",1355.4,{},169183,0,North America +2024-01-30,85475,7133,"[""Keyboard"", ""Tablet"", ""Laptop""]",3640.94,{},128063,1,North America +2024-04-20,85476,470,"[""Headphones"", ""Phone"", ""Laptop""]",3117.14,"{"""": ""20%""}",74306,1,North America +2024-05-27,85477,6309,"[""Monitor""]",3662.66,{},173703,1,Europe +2024-11-17,85478,6262,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4001.49,"{""loyalty"": ""23%""}",28322,1,South America +2023-09-12,85479,8500,"[""Tablet""]",683.05,"{"""": ""25%""}",52519,0,North America +2023-10-17,85480,4850,"[""Charger"", ""Phone"", ""Laptop""]",936.51,"{""loyalty"": ""26%""}",188875,0,South America +2023-09-25,85481,5338,"[""Wireless Mouse""]",1105.42,"{""loyalty"": ""15%""}",54167,0,Asia +2024-10-10,85482,1289,"[""Keyboard""]",1758.64,{},296603,0,North America +2024-10-25,85483,3182,"[""Monitor"", ""Headphones""]",1013.27,"{""promo"": ""19%""}",52461,1,Asia +2023-10-12,85484,3450,"[""Wireless Mouse""]",337.56,"{"""": ""16%""}",83475,1,Europe +2023-11-01,85485,8430,"[""Wireless Mouse""]",3548.71,{},162105,0,Africa +2023-12-15,85486,9605,"[""Laptop"", ""Monitor""]",1963.93,{},33086,1,Asia +2024-02-10,85487,1448,"[""Monitor"", ""Keyboard""]",1695.58,"{""loyalty"": ""28%""}",31133,0,Europe +2024-10-04,85488,8287,"[""Wireless Mouse"", ""Phone""]",1700.18,"{""seasonal"": ""13%""}",83568,1,South America +2023-02-24,85489,9804,"[""Monitor"", ""Charger""]",1883.61,"{"""": ""22%""}",242289,1,Africa +2024-03-26,85490,5265,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2675.13,"{""loyalty"": ""14%""}",267761,1,Asia +2023-06-06,85491,4549,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2584.28,{},208222,0,North America +2024-05-08,85492,4669,"[""Headphones"", ""Charger""]",4913.22,{},116334,0,Asia +2023-04-12,85493,6719,"[""Tablet""]",4840.98,"{""promo"": ""16%""}",263765,0,Asia +2024-04-04,85494,1553,"[""Keyboard"", ""Headphones"", ""Laptop""]",3478.36,"{""loyalty"": ""6%""}",63137,0,Asia +2024-06-17,85495,6113,"[""Headphones""]",4982.13,"{""seasonal"": ""21%""}",218685,0,Europe +2023-12-04,85496,132,"[""Phone"", ""Keyboard"", ""Headphones""]",3034.33,"{""seasonal"": ""6%""}",163322,1,South America +2023-10-31,85497,9848,"[""Monitor""]",4786.42,{},274475,1,Africa +2023-02-25,85498,2242,"[""Phone""]",2722.25,"{""seasonal"": ""6%""}",208607,1,Asia +2023-02-10,85499,4867,"[""Phone"", ""Tablet"", ""Laptop""]",1921.41,{},233132,0,Europe +2024-01-15,85500,1549,"[""Wireless Mouse""]",1466.57,{},75773,1,Asia +2024-08-25,85501,2397,"[""Laptop""]",2170.03,{},155968,0,Asia +2023-08-04,85502,3258,"[""Phone""]",3634.37,{},195863,0,Asia +2023-10-21,85503,691,"[""Monitor"", ""Headphones""]",2370.21,{},80525,0,Europe +2024-05-15,85504,9482,"[""Wireless Mouse""]",3511.72,{},160080,0,Africa +2023-08-03,85505,7324,"[""Wireless Mouse""]",1859.82,{},281589,1,Europe +2024-05-19,85506,2827,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2006.13,{},99981,0,South America +2024-06-14,85507,9090,"[""Wireless Mouse""]",2783.79,{},10331,0,Asia +2024-03-13,85508,9858,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4916.26,"{""promo"": ""11%""}",125810,1,Asia +2023-07-17,85509,1520,"[""Charger"", ""Laptop""]",1211.92,"{""promo"": ""5%""}",180587,1,South America +2024-04-15,85510,2043,"[""Laptop""]",4398.53,{},109399,1,Asia +2023-01-20,85511,1118,"[""Charger"", ""Tablet"", ""Monitor""]",3314.81,"{""promo"": ""15%""}",218724,0,Europe +2023-12-06,85512,6689,"[""Laptop""]",4880.38,"{""promo"": ""15%""}",8878,1,Europe +2024-03-24,85513,5683,"[""Keyboard"", ""Tablet"", ""Laptop""]",737.77,{},250766,0,North America +2023-08-13,85514,6707,"[""Tablet""]",567.56,{},256398,0,South America +2023-11-19,85515,5394,"[""Headphones"", ""Wireless Mouse""]",1720.23,{},291313,1,South America +2023-10-18,85516,7465,"[""Charger"", ""Phone""]",1800.93,"{""promo"": ""29%""}",47322,1,Asia +2023-02-15,85517,8652,"[""Wireless Mouse"", ""Laptop""]",2250.08,"{""promo"": ""20%""}",161500,0,North America +2023-08-29,85518,2667,"[""Monitor"", ""Keyboard"", ""Laptop""]",2943.39,{},28612,1,Asia +2023-03-06,85519,5301,"[""Charger"", ""Wireless Mouse""]",1570.55,{},65838,0,Europe +2024-05-09,85520,6004,"[""Tablet""]",3475.96,{},140365,0,Asia +2024-03-23,85521,1591,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",920.25,{},88637,1,Asia +2023-07-01,85522,4238,"[""Headphones""]",3139.19,"{""seasonal"": ""7%""}",288704,1,North America +2024-03-31,85523,5615,"[""Phone"", ""Monitor"", ""Charger""]",3249.12,"{""seasonal"": ""11%""}",143932,0,Europe +2024-06-01,85524,5617,"[""Charger""]",2004.74,{},76034,1,South America +2023-12-05,85525,6000,"[""Wireless Mouse"", ""Headphones""]",2316.23,{},100433,1,Europe +2023-04-02,85526,9778,"[""Monitor"", ""Keyboard"", ""Charger""]",2774.37,{},249721,1,Europe +2023-10-17,85527,5991,"[""Keyboard"", ""Charger""]",2183.38,{},57107,1,North America +2024-05-25,85528,7660,"[""Phone"", ""Headphones""]",3362.71,"{""seasonal"": ""25%""}",41041,0,Europe +2024-09-11,85529,1161,"[""Keyboard"", ""Phone"", ""Monitor""]",3680.2,"{""seasonal"": ""12%""}",86325,1,Asia +2023-05-12,85530,72,"[""Headphones""]",1446.33,"{""seasonal"": ""5%""}",25824,0,Asia +2023-09-26,85531,3239,"[""Headphones""]",4164.84,{},65583,0,South America +2024-04-12,85532,1388,"[""Keyboard""]",4122.9,{},220204,1,Africa +2023-09-27,85533,4536,"[""Monitor""]",222.76,"{"""": ""9%""}",179440,0,South America +2023-05-18,85534,1190,"[""Wireless Mouse""]",2655.5,{},161290,0,Europe +2023-01-03,85535,6610,"[""Keyboard"", ""Monitor""]",4869.92,{},269887,1,South America +2023-09-17,85536,1212,"[""Charger"", ""Tablet""]",52.0,"{""seasonal"": ""30%""}",236529,1,Africa +2023-09-20,85537,3887,"[""Charger""]",872.87,"{""loyalty"": ""18%""}",162627,0,Asia +2024-02-04,85538,6776,"[""Tablet"", ""Charger"", ""Headphones""]",614.85,"{"""": ""18%""}",224764,1,South America +2024-12-04,85539,217,"[""Headphones""]",993.95,"{""promo"": ""14%""}",193262,0,Europe +2023-10-08,85540,6099,"[""Keyboard"", ""Phone"", ""Tablet""]",207.49,{},45757,1,Africa +2023-01-17,85541,957,"[""Monitor"", ""Tablet""]",684.55,{},235966,0,Africa +2024-04-10,85542,9288,"[""Headphones""]",3936.81,"{""promo"": ""13%""}",218768,0,North America +2023-01-01,85543,4818,"[""Charger"", ""Laptop""]",674.51,{},237662,1,Africa +2024-07-03,85544,2353,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1507.9,{},72501,0,Europe +2023-02-02,85545,1574,"[""Phone""]",4191.85,"{"""": ""10%""}",262450,0,Africa +2024-08-20,85546,5717,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3487.46,{},74144,1,North America +2024-10-10,85547,7465,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4445.03,{},197021,1,South America +2023-08-15,85548,7756,"[""Keyboard"", ""Monitor""]",1637.36,{},63800,1,North America +2024-04-11,85549,1420,"[""Laptop"", ""Phone"", ""Tablet""]",3628.39,{},117656,0,Asia +2024-03-08,85550,4329,"[""Charger""]",868.67,"{"""": ""7%""}",47925,1,South America +2024-01-23,85551,6377,"[""Charger"", ""Monitor""]",2848.7,{},275468,1,Africa +2023-04-01,85552,5688,"[""Laptop"", ""Phone""]",1371.35,"{""loyalty"": ""21%""}",269564,0,South America +2023-08-13,85553,2980,"[""Monitor"", ""Headphones""]",1745.31,{},17123,0,Europe +2024-08-13,85554,8915,"[""Monitor"", ""Charger""]",2221.84,{},225778,1,Europe +2024-04-25,85555,7974,"[""Phone""]",355.61,"{"""": ""10%""}",153425,1,South America +2023-07-21,85556,9152,"[""Keyboard""]",4590.75,{},119645,1,Europe +2024-01-08,85557,8774,"[""Monitor"", ""Charger""]",219.79,"{""promo"": ""27%""}",20755,1,South America +2024-08-18,85558,4566,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",934.0,{},245296,1,Africa +2024-11-30,85559,498,"[""Tablet""]",670.15,"{""promo"": ""7%""}",71997,0,Asia +2023-11-06,85560,3406,"[""Tablet""]",1419.25,{},180517,1,North America +2023-02-14,85561,5661,"[""Wireless Mouse"", ""Phone""]",4079.18,"{"""": ""16%""}",252055,0,Asia +2023-08-03,85562,4070,"[""Tablet""]",2680.34,{},108265,0,South America +2024-02-02,85563,5053,"[""Laptop"", ""Wireless Mouse""]",2795.06,"{""promo"": ""29%""}",212610,0,Africa +2024-05-16,85564,5042,"[""Wireless Mouse""]",2147.02,{},128974,1,Asia +2023-01-05,85565,9561,"[""Monitor"", ""Laptop""]",2700.64,{},168428,0,North America +2023-01-01,85566,2109,"[""Headphones""]",3246.67,"{""promo"": ""22%""}",35481,0,Europe +2023-04-22,85567,6545,"[""Headphones""]",1764.01,{},176802,1,Asia +2024-01-08,85568,8949,"[""Laptop"", ""Phone"", ""Headphones""]",720.68,"{"""": ""9%""}",62933,1,Asia +2024-07-24,85569,5186,"[""Monitor"", ""Keyboard""]",801.54,{},163402,1,North America +2024-06-20,85570,6456,"[""Phone"", ""Monitor"", ""Charger""]",3930.91,{},31556,1,North America +2023-09-02,85571,1118,"[""Tablet"", ""Headphones"", ""Monitor""]",3159.17,{},137472,1,Europe +2024-05-17,85572,1476,"[""Charger"", ""Headphones""]",2622.31,"{""loyalty"": ""15%""}",126700,1,South America +2023-03-16,85573,4654,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4265.46,"{""promo"": ""13%""}",270587,1,South America +2024-05-10,85574,7634,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1020.61,"{""loyalty"": ""9%""}",288274,0,Asia +2023-01-04,85575,7365,"[""Headphones""]",98.68,{},192270,1,Africa +2023-12-25,85576,2015,"[""Monitor"", ""Wireless Mouse""]",4324.62,"{""loyalty"": ""12%""}",254635,0,South America +2024-04-13,85577,2257,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2017.97,{},293046,0,North America +2023-10-18,85578,3597,"[""Monitor""]",1884.45,"{""promo"": ""13%""}",84311,1,Africa +2024-01-12,85579,9749,"[""Headphones""]",1144.62,{},17645,0,North America +2024-06-06,85580,8675,"[""Wireless Mouse"", ""Monitor""]",2726.71,"{""seasonal"": ""13%""}",219675,0,Africa +2023-10-25,85581,3163,"[""Wireless Mouse""]",2552.13,"{"""": ""15%""}",248867,1,Africa +2024-04-20,85582,2996,"[""Wireless Mouse"", ""Tablet""]",4348.88,"{"""": ""16%""}",175863,1,Asia +2023-06-14,85583,1947,"[""Headphones""]",1819.78,{},127604,0,Asia +2023-03-31,85584,3953,"[""Monitor""]",4331.75,"{""seasonal"": ""26%""}",5184,0,Africa +2023-10-24,85585,5586,"[""Tablet"", ""Laptop""]",4317.75,"{""seasonal"": ""16%""}",47307,0,South America +2023-07-08,85586,39,"[""Phone"", ""Laptop"", ""Headphones""]",793.61,"{""promo"": ""26%""}",211161,1,South America +2024-06-18,85587,7982,"[""Wireless Mouse"", ""Tablet""]",4091.2,{},162530,0,South America +2023-11-29,85588,8530,"[""Keyboard""]",4182.91,{},274586,0,Europe +2024-12-28,85589,2911,"[""Phone"", ""Keyboard""]",2703.37,{},178109,1,Africa +2023-07-18,85590,6140,"[""Keyboard"", ""Phone""]",4872.81,"{""loyalty"": ""25%""}",249077,0,North America +2023-03-24,85591,3204,"[""Charger""]",3478.6,"{""seasonal"": ""30%""}",74181,0,North America +2023-10-12,85592,8974,"[""Keyboard""]",3418.2,"{""loyalty"": ""23%""}",194939,1,Europe +2023-01-11,85593,981,"[""Phone"", ""Tablet""]",3678.15,{},66405,1,North America +2024-01-04,85594,4187,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",245.19,{},259042,0,Asia +2023-04-17,85595,2636,"[""Keyboard""]",3063.03,{},102584,0,Africa +2023-09-25,85596,1948,"[""Phone"", ""Monitor""]",908.58,"{"""": ""29%""}",232079,1,Europe +2024-07-08,85597,9290,"[""Headphones""]",4239.78,"{""loyalty"": ""21%""}",81930,1,South America +2023-08-25,85598,9593,"[""Laptop"", ""Monitor""]",3328.49,"{""seasonal"": ""26%""}",257624,1,South America +2024-06-17,85599,8679,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1974.74,"{"""": ""28%""}",46350,0,Europe +2024-02-08,85600,7355,"[""Monitor"", ""Phone"", ""Headphones""]",4619.85,{},271445,0,Asia +2023-10-17,85601,6018,"[""Keyboard"", ""Monitor""]",4364.7,"{""seasonal"": ""14%""}",43667,1,North America +2024-07-19,85602,5440,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1611.6,"{""seasonal"": ""23%""}",287003,0,Africa +2023-09-16,85603,1703,"[""Charger"", ""Tablet""]",2994.48,{},107296,1,North America +2023-01-02,85604,8880,"[""Phone""]",1941.45,{},116701,0,South America +2024-07-21,85605,2706,"[""Monitor"", ""Charger""]",4624.12,"{""loyalty"": ""8%""}",202364,1,Asia +2023-08-27,85606,4566,"[""Phone"", ""Headphones""]",3168.49,"{""seasonal"": ""8%""}",297978,0,Asia +2024-12-01,85607,3409,"[""Tablet"", ""Keyboard"", ""Phone""]",2135.52,{},48786,1,Europe +2023-04-20,85608,3753,"[""Headphones"", ""Laptop""]",352.24,"{""promo"": ""6%""}",253136,1,Asia +2023-01-06,85609,9962,"[""Charger"", ""Tablet""]",692.67,"{""seasonal"": ""7%""}",255345,1,Europe +2023-07-09,85610,4035,"[""Phone"", ""Tablet"", ""Keyboard""]",4414.13,"{""promo"": ""22%""}",108431,1,North America +2023-11-16,85611,2929,"[""Phone""]",184.79,"{""loyalty"": ""25%""}",210856,1,North America +2023-01-03,85612,448,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2179.3,"{""promo"": ""9%""}",203113,1,North America +2024-10-25,85613,9946,"[""Phone""]",1924.72,{},190315,0,South America +2024-03-07,85614,3920,"[""Laptop"", ""Monitor"", ""Phone""]",1029.63,{},224567,1,Asia +2023-08-30,85615,4197,"[""Tablet"", ""Laptop""]",1523.11,{},146500,1,Asia +2023-05-10,85616,3214,"[""Headphones"", ""Tablet""]",1343.27,{},69023,0,Asia +2023-05-11,85617,8362,"[""Monitor"", ""Laptop"", ""Tablet""]",3673.83,{},124119,0,Europe +2023-01-07,85618,3729,"[""Tablet""]",2472.27,"{""loyalty"": ""26%""}",148648,1,Asia +2023-01-13,85619,9832,"[""Keyboard"", ""Headphones"", ""Laptop""]",1808.21,{},239123,0,Asia +2024-12-21,85620,796,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",785.12,"{""promo"": ""14%""}",287530,1,Europe +2023-08-10,85621,9351,"[""Phone""]",996.37,"{"""": ""23%""}",253936,0,Asia +2023-01-20,85622,4946,"[""Headphones""]",1634.08,"{"""": ""20%""}",182899,0,North America +2024-09-18,85623,1906,"[""Monitor"", ""Headphones""]",1681.45,{},24321,0,Asia +2023-08-29,85624,7774,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3733.02,"{""seasonal"": ""20%""}",67386,0,Europe +2023-10-10,85625,3790,"[""Tablet""]",424.18,"{""loyalty"": ""12%""}",281789,0,Africa +2023-02-01,85626,9693,"[""Headphones""]",3554.01,{},99350,1,Africa +2024-10-26,85627,9125,"[""Laptop""]",3922.16,{},252869,0,North America +2023-07-21,85628,3541,"[""Monitor""]",3665.51,"{"""": ""29%""}",5704,0,Asia +2023-11-07,85629,7364,"[""Tablet"", ""Phone"", ""Monitor""]",3536.33,{},219506,0,Europe +2023-01-05,85630,4974,"[""Monitor""]",1306.91,{},124665,0,Europe +2024-01-10,85631,3170,"[""Laptop"", ""Tablet"", ""Monitor""]",2921.45,"{""seasonal"": ""10%""}",145519,1,Africa +2024-12-03,85632,4717,"[""Monitor""]",2567.59,{},68722,0,Africa +2024-03-01,85633,2869,"[""Wireless Mouse"", ""Laptop""]",3043.26,{},112694,1,North America +2024-01-30,85634,980,"[""Wireless Mouse""]",1967.79,{},18619,1,Asia +2024-11-24,85635,2152,"[""Wireless Mouse""]",3773.76,{},256502,1,Africa +2023-02-08,85636,8862,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3746.31,"{""promo"": ""10%""}",254338,0,North America +2023-07-19,85637,3233,"[""Monitor""]",3334.8,"{""loyalty"": ""24%""}",35739,0,South America +2023-05-01,85638,2864,"[""Tablet"", ""Laptop"", ""Keyboard""]",2121.91,{},251517,1,South America +2023-08-27,85639,6592,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",891.16,{},177264,0,Europe +2024-08-23,85640,5548,"[""Headphones"", ""Monitor"", ""Charger""]",2907.27,"{""loyalty"": ""20%""}",220900,1,South America +2023-04-02,85641,593,"[""Laptop"", ""Keyboard"", ""Phone""]",2513.35,{},273007,1,Asia +2024-12-16,85642,6365,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",179.48,{},92141,1,South America +2023-06-02,85643,2460,"[""Tablet"", ""Wireless Mouse""]",1077.25,{},50200,0,Africa +2024-10-09,85644,44,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4937.01,"{""loyalty"": ""13%""}",11679,1,North America +2023-02-24,85645,8230,"[""Keyboard"", ""Headphones""]",1694.61,"{""promo"": ""27%""}",226886,1,Asia +2023-12-28,85646,1941,"[""Monitor"", ""Tablet"", ""Keyboard""]",2644.54,{},263311,1,Asia +2024-06-21,85647,9551,"[""Headphones""]",1601.26,{},74647,1,Asia +2024-08-05,85648,4656,"[""Wireless Mouse"", ""Tablet""]",4911.3,{},163475,1,Africa +2023-01-19,85649,7580,"[""Headphones"", ""Keyboard""]",2693.28,{},221667,0,North America +2023-03-22,85650,6836,"[""Monitor"", ""Keyboard""]",3854.75,{},54864,1,Asia +2024-01-29,85651,8016,"[""Headphones""]",2842.65,{},83068,1,North America +2023-08-18,85652,5275,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4358.43,"{""promo"": ""15%""}",238485,1,Africa +2024-07-18,85653,8657,"[""Monitor"", ""Tablet"", ""Keyboard""]",2242.86,{},33534,1,South America +2023-11-27,85654,3440,"[""Charger"", ""Monitor""]",2680.85,"{""loyalty"": ""24%""}",46204,1,Asia +2024-11-09,85655,6556,"[""Phone"", ""Wireless Mouse""]",383.08,"{"""": ""28%""}",144758,1,Europe +2023-12-25,85656,2690,"[""Monitor"", ""Wireless Mouse""]",3781.17,"{""seasonal"": ""14%""}",261302,1,North America +2023-06-10,85657,1305,"[""Monitor"", ""Headphones"", ""Charger""]",1354.19,{},225911,1,South America +2024-05-09,85658,4583,"[""Tablet"", ""Phone""]",4436.13,"{""promo"": ""20%""}",177573,0,South America +2023-01-01,85659,7854,"[""Wireless Mouse""]",3938.97,{},206289,0,South America +2023-01-25,85660,7407,"[""Phone""]",4430.19,{},296816,0,Asia +2024-07-28,85661,3275,"[""Charger"", ""Wireless Mouse"", ""Phone""]",439.72,{},104968,1,North America +2024-05-23,85662,7451,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",800.86,{},124835,1,North America +2024-04-25,85663,1152,"[""Tablet""]",469.94,{},137391,1,Europe +2024-11-19,85664,4724,"[""Phone""]",1974.98,"{""promo"": ""28%""}",279496,1,North America +2024-07-01,85665,2628,"[""Headphones""]",2513.75,{},113862,1,Africa +2023-03-15,85666,3592,"[""Headphones"", ""Keyboard""]",2611.25,"{""loyalty"": ""11%""}",3486,0,South America +2023-01-10,85667,1455,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1542.1,"{""promo"": ""5%""}",101337,0,Europe +2024-10-06,85668,8471,"[""Phone""]",2080.06,"{""loyalty"": ""7%""}",227692,1,Europe +2023-10-25,85669,4146,"[""Laptop"", ""Phone"", ""Keyboard""]",2752.25,{},91485,0,North America +2023-03-22,85670,620,"[""Tablet"", ""Laptop"", ""Monitor""]",1341.79,"{""seasonal"": ""30%""}",295594,0,Europe +2023-01-21,85671,1010,"[""Tablet"", ""Wireless Mouse""]",3924.1,{},154329,0,South America +2024-08-04,85672,5720,"[""Tablet""]",2585.41,"{""promo"": ""13%""}",223563,1,South America +2024-04-02,85673,9737,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1295.51,{},99941,0,Asia +2023-02-03,85674,8493,"[""Charger"", ""Laptop"", ""Phone""]",3073.32,"{""promo"": ""8%""}",297326,1,Africa +2024-05-29,85675,4486,"[""Charger""]",4693.89,"{""loyalty"": ""11%""}",119623,1,Europe +2024-10-06,85676,1393,"[""Keyboard"", ""Headphones""]",337.46,"{""seasonal"": ""24%""}",57921,1,Asia +2024-10-27,85677,7026,"[""Wireless Mouse"", ""Charger""]",4698.38,{},84111,0,Europe +2024-07-26,85678,1421,"[""Wireless Mouse""]",1917.03,{},91776,0,Africa +2023-06-04,85679,4378,"[""Wireless Mouse"", ""Tablet""]",401.92,"{""promo"": ""18%""}",58039,1,Africa +2023-07-31,85680,9037,"[""Charger"", ""Keyboard"", ""Monitor""]",93.89,{},154063,1,Asia +2024-12-08,85681,4548,"[""Keyboard""]",1805.11,"{""seasonal"": ""12%""}",211358,1,Europe +2023-11-17,85682,7087,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2249.19,{},24755,0,Asia +2023-06-30,85683,7235,"[""Keyboard"", ""Laptop""]",3345.07,"{""promo"": ""9%""}",225141,0,Africa +2023-04-20,85684,6405,"[""Charger""]",4771.56,"{"""": ""10%""}",267246,0,North America +2024-11-07,85685,9989,"[""Monitor"", ""Headphones"", ""Laptop""]",3609.31,"{""promo"": ""27%""}",8373,0,North America +2024-07-16,85686,9853,"[""Headphones""]",1062.96,"{""promo"": ""17%""}",145668,1,Africa +2023-04-05,85687,2591,"[""Wireless Mouse""]",909.11,{},69200,1,Africa +2023-03-03,85688,5039,"[""Keyboard""]",1568.04,"{"""": ""29%""}",75227,0,South America +2023-05-02,85689,5027,"[""Headphones"", ""Charger""]",1911.9,{},298933,0,Africa +2024-03-13,85690,7761,"[""Tablet"", ""Headphones""]",2208.99,"{""seasonal"": ""23%""}",252843,1,Africa +2024-01-14,85691,3431,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3529.84,"{""seasonal"": ""30%""}",297232,1,Europe +2023-05-17,85692,1160,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4047.04,"{""seasonal"": ""24%""}",140652,0,Europe +2023-09-20,85693,3568,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",557.55,{},264555,1,Europe +2023-12-14,85694,8944,"[""Charger""]",1153.51,{},292556,1,Asia +2024-10-31,85695,9328,"[""Headphones""]",724.19,"{""loyalty"": ""15%""}",287305,0,South America +2024-10-06,85696,6644,"[""Tablet""]",457.79,{},199889,1,North America +2023-08-06,85697,244,"[""Keyboard"", ""Wireless Mouse""]",717.36,{},185769,1,North America +2023-05-06,85698,5257,"[""Headphones"", ""Laptop"", ""Charger""]",1449.91,{},185754,1,North America +2024-12-12,85699,3258,"[""Keyboard"", ""Tablet""]",4845.68,"{""loyalty"": ""14%""}",196620,1,Asia +2024-11-29,85700,7681,"[""Keyboard"", ""Headphones"", ""Charger""]",1860.05,{},84166,1,Europe +2023-03-28,85701,488,"[""Phone"", ""Monitor"", ""Laptop""]",2219.59,"{"""": ""13%""}",224633,0,Africa +2023-01-21,85702,6201,"[""Keyboard"", ""Charger""]",564.1,"{""promo"": ""26%""}",91941,1,South America +2024-08-05,85703,514,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",427.08,{},11396,1,North America +2024-01-07,85704,3902,"[""Phone"", ""Monitor""]",1024.19,{},202787,1,South America +2024-09-06,85705,830,"[""Charger""]",679.13,"{"""": ""12%""}",67841,0,Asia +2024-12-07,85706,7297,"[""Charger"", ""Phone"", ""Monitor""]",2535.95,"{"""": ""11%""}",3095,0,Asia +2023-01-13,85707,4312,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",407.17,"{"""": ""28%""}",167020,1,Africa +2024-06-16,85708,4541,"[""Tablet"", ""Keyboard"", ""Charger""]",3919.16,"{""seasonal"": ""10%""}",83289,0,South America +2024-11-19,85709,1196,"[""Wireless Mouse""]",2696.82,{},47058,1,North America +2024-06-11,85710,2983,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2966.8,{},21604,1,Africa +2024-12-27,85711,4978,"[""Monitor"", ""Charger""]",360.29,{},175130,1,Europe +2024-06-18,85712,5215,"[""Wireless Mouse"", ""Headphones""]",4064.93,{},95247,1,Africa +2023-07-25,85713,5372,"[""Keyboard"", ""Charger""]",1410.64,{},242254,0,Europe +2024-11-27,85714,2388,"[""Laptop"", ""Phone""]",3489.11,"{""promo"": ""27%""}",3690,1,North America +2023-02-12,85715,593,"[""Keyboard"", ""Monitor"", ""Headphones""]",2948.18,"{"""": ""30%""}",218984,1,Europe +2024-08-16,85716,4018,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1146.17,{},25681,1,North America +2024-02-27,85717,2250,"[""Charger"", ""Monitor""]",1061.8,"{""seasonal"": ""27%""}",120036,0,Europe +2023-11-17,85718,181,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2476.43,{},240105,1,Africa +2024-02-11,85719,1197,"[""Monitor""]",242.75,{},244372,1,Asia +2024-05-24,85720,8927,"[""Laptop"", ""Phone"", ""Tablet""]",1607.93,{},163006,0,North America +2023-07-03,85721,3258,"[""Headphones""]",3652.26,"{"""": ""8%""}",130976,1,Asia +2024-02-12,85722,9184,"[""Tablet""]",4911.9,{},3894,1,Africa +2024-01-24,85723,925,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",826.65,"{""seasonal"": ""15%""}",112774,1,South America +2024-07-22,85724,3570,"[""Headphones"", ""Phone"", ""Monitor""]",3860.74,"{""loyalty"": ""15%""}",35138,1,South America +2024-03-15,85725,3849,"[""Keyboard"", ""Headphones""]",1928.88,{},22228,1,South America +2023-03-17,85726,2333,"[""Monitor"", ""Charger"", ""Headphones""]",4754.95,"{"""": ""12%""}",119604,1,Europe +2023-04-21,85727,7714,"[""Tablet"", ""Phone"", ""Charger""]",964.66,"{""seasonal"": ""7%""}",286725,0,South America +2024-05-09,85728,8508,"[""Monitor"", ""Headphones""]",2049.84,{},210042,0,North America +2024-11-11,85729,6325,"[""Phone"", ""Laptop""]",4765.3,"{""promo"": ""12%""}",25410,1,Europe +2023-11-30,85730,5044,"[""Wireless Mouse"", ""Tablet""]",386.06,"{""promo"": ""28%""}",224818,0,Africa +2024-01-18,85731,1667,"[""Charger""]",596.83,{},236232,1,Asia +2023-09-25,85732,4312,"[""Headphones""]",546.79,"{""seasonal"": ""28%""}",7254,0,Europe +2023-11-26,85733,3949,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3797.77,{},229409,0,Africa +2023-07-19,85734,1744,"[""Charger""]",4360.51,"{"""": ""30%""}",214410,0,Europe +2023-06-12,85735,9377,"[""Wireless Mouse"", ""Tablet""]",1981.9,"{""loyalty"": ""16%""}",128427,1,North America +2023-08-08,85736,1418,"[""Laptop"", ""Charger"", ""Headphones""]",2741.04,{},276372,0,North America +2024-08-12,85737,1711,"[""Laptop"", ""Charger"", ""Tablet""]",3519.75,{},159301,1,North America +2023-04-22,85738,5905,"[""Keyboard"", ""Tablet""]",1835.11,"{""loyalty"": ""5%""}",155609,1,North America +2024-02-14,85739,9004,"[""Headphones"", ""Monitor"", ""Tablet""]",3221.67,"{""promo"": ""27%""}",261368,1,Europe +2024-02-12,85740,862,"[""Phone"", ""Wireless Mouse""]",4815.01,"{""loyalty"": ""30%""}",168882,1,Europe +2023-09-17,85741,3716,"[""Headphones"", ""Wireless Mouse""]",3577.52,"{""seasonal"": ""29%""}",262052,1,Africa +2024-03-31,85742,5523,"[""Tablet"", ""Headphones""]",2230.66,"{""loyalty"": ""18%""}",245469,1,Africa +2023-09-19,85743,8920,"[""Monitor"", ""Tablet""]",805.62,"{"""": ""27%""}",154017,1,Africa +2023-10-26,85744,9282,"[""Headphones""]",2387.14,"{""loyalty"": ""8%""}",153534,1,South America +2024-08-10,85745,631,"[""Phone""]",1860.07,"{""loyalty"": ""17%""}",181810,0,North America +2023-02-11,85746,2102,"[""Laptop""]",2319.34,"{""seasonal"": ""19%""}",24279,0,Europe +2024-06-28,85747,497,"[""Monitor""]",1345.17,{},98195,0,Asia +2024-04-13,85748,9190,"[""Charger"", ""Phone"", ""Headphones""]",1455.48,{},99724,1,South America +2023-09-19,85749,9045,"[""Laptop"", ""Phone"", ""Headphones""]",3203.56,{},190967,0,Asia +2023-11-23,85750,6348,"[""Charger"", ""Phone""]",4546.8,"{""seasonal"": ""6%""}",47794,1,South America +2023-09-29,85751,5044,"[""Monitor""]",4497.17,{},46720,1,Africa +2023-08-16,85752,338,"[""Keyboard"", ""Phone""]",3748.28,"{""loyalty"": ""15%""}",280182,1,Europe +2024-11-25,85753,3757,"[""Charger"", ""Phone"", ""Tablet""]",3600.86,{},43082,1,North America +2024-10-05,85754,8435,"[""Phone"", ""Headphones"", ""Charger""]",4058.44,{},144856,1,North America +2023-06-08,85755,6203,"[""Monitor"", ""Keyboard""]",1556.69,{},260143,1,Asia +2024-03-11,85756,5128,"[""Monitor""]",3553.78,{},46027,1,North America +2023-05-19,85757,646,"[""Phone"", ""Monitor"", ""Charger""]",970.78,{},121760,1,Africa +2023-10-14,85758,6375,"[""Charger"", ""Tablet"", ""Laptop""]",3310.98,"{""loyalty"": ""22%""}",132963,0,Africa +2024-12-14,85759,50,"[""Phone"", ""Keyboard""]",3343.83,"{""seasonal"": ""20%""}",198891,0,Asia +2024-01-14,85760,1126,"[""Laptop"", ""Tablet""]",1181.68,{},6299,0,North America +2023-05-28,85761,9697,"[""Tablet"", ""Keyboard"", ""Monitor""]",1121.75,"{""loyalty"": ""14%""}",218537,0,Africa +2023-08-20,85762,2878,"[""Wireless Mouse""]",2300.67,{},272615,1,North America +2023-10-14,85763,8830,"[""Laptop"", ""Charger""]",2885.27,{},13326,1,Europe +2023-06-26,85764,6222,"[""Tablet"", ""Phone""]",1738.28,{},101521,1,Asia +2024-03-26,85765,8106,"[""Monitor"", ""Charger""]",272.62,"{"""": ""19%""}",99463,1,South America +2023-03-31,85766,9249,"[""Phone"", ""Wireless Mouse""]",877.89,"{""promo"": ""27%""}",40992,0,North America +2023-03-08,85767,2845,"[""Monitor"", ""Keyboard""]",3897.3,"{""loyalty"": ""17%""}",46757,1,Europe +2024-11-11,85768,5436,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1398.77,{},93118,0,Africa +2023-01-22,85769,9712,"[""Keyboard""]",4599.64,{},92739,0,Asia +2024-10-09,85770,3954,"[""Laptop"", ""Wireless Mouse""]",218.26,"{""seasonal"": ""29%""}",296352,1,Europe +2023-01-18,85771,415,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",547.06,"{""loyalty"": ""6%""}",270672,0,Asia +2023-09-20,85772,6945,"[""Charger"", ""Wireless Mouse""]",2523.87,"{""loyalty"": ""16%""}",295931,1,North America +2024-04-17,85773,5990,"[""Charger""]",3811.69,{},218106,1,Europe +2024-05-23,85774,2441,"[""Laptop"", ""Keyboard"", ""Headphones""]",3602.54,{},186598,0,South America +2023-03-26,85775,8473,"[""Wireless Mouse"", ""Laptop""]",2756.32,"{""loyalty"": ""19%""}",278752,1,North America +2023-11-11,85776,5089,"[""Laptop""]",4985.74,{},125117,1,Europe +2023-12-20,85777,4552,"[""Phone"", ""Laptop""]",3782.58,{},47948,1,Europe +2024-08-03,85778,8221,"[""Keyboard"", ""Tablet""]",2104.89,"{""seasonal"": ""22%""}",98783,0,Europe +2024-04-14,85779,7531,"[""Monitor""]",1516.71,"{""seasonal"": ""28%""}",298459,1,South America +2023-11-01,85780,599,"[""Monitor"", ""Headphones"", ""Charger""]",2232.26,{},83659,1,North America +2023-03-08,85781,5296,"[""Keyboard"", ""Wireless Mouse""]",1778.06,"{"""": ""23%""}",127064,0,Europe +2024-05-02,85782,2923,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1547.05,"{""loyalty"": ""18%""}",56657,0,North America +2024-08-12,85783,227,"[""Charger""]",2420.28,{},127452,1,Asia +2024-09-21,85784,9188,"[""Wireless Mouse""]",3070.22,{},161470,1,Africa +2024-03-27,85785,5354,"[""Headphones"", ""Wireless Mouse""]",3146.08,{},259735,1,Africa +2024-10-29,85786,1870,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3545.75,{},41273,0,Europe +2024-11-14,85787,4380,"[""Monitor""]",1231.6,"{""loyalty"": ""17%""}",51786,1,Africa +2024-11-26,85788,8514,"[""Charger"", ""Headphones""]",1117.7,"{""promo"": ""5%""}",208212,0,North America +2023-03-22,85789,3371,"[""Monitor""]",1284.93,"{""loyalty"": ""24%""}",101763,1,Africa +2023-09-28,85790,8657,"[""Charger"", ""Monitor""]",4881.82,"{""seasonal"": ""13%""}",228066,1,North America +2023-07-04,85791,3202,"[""Keyboard""]",1597.98,{},272049,1,South America +2023-11-19,85792,3002,"[""Laptop"", ""Phone"", ""Tablet""]",1823.93,"{""loyalty"": ""24%""}",29390,0,Europe +2024-01-02,85793,4349,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",770.83,{},270932,1,Asia +2023-06-16,85794,4394,"[""Headphones"", ""Charger""]",2145.53,{},48842,1,Africa +2024-08-08,85795,6185,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2793.51,"{""loyalty"": ""15%""}",59880,0,Asia +2023-05-17,85796,4458,"[""Monitor"", ""Keyboard"", ""Laptop""]",736.1,{},138942,0,South America +2023-08-02,85797,3093,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4747.18,"{"""": ""7%""}",271677,1,Europe +2023-10-15,85798,8029,"[""Laptop"", ""Keyboard""]",2059.19,{},2410,0,North America +2024-05-12,85799,7664,"[""Keyboard"", ""Monitor"", ""Tablet""]",2311.01,"{""promo"": ""30%""}",174543,0,North America +2024-11-04,85800,734,"[""Phone""]",762.94,"{"""": ""26%""}",253937,1,Asia +2023-09-30,85801,2926,"[""Laptop""]",461.25,{},41008,0,Africa +2024-04-20,85802,1746,"[""Keyboard""]",2699.62,"{""loyalty"": ""19%""}",73942,1,Europe +2023-03-25,85803,4637,"[""Headphones"", ""Tablet""]",3010.37,"{""seasonal"": ""7%""}",269086,0,Europe +2024-06-11,85804,7038,"[""Monitor"", ""Phone"", ""Headphones""]",4608.74,"{""loyalty"": ""16%""}",74696,1,Africa +2023-01-18,85805,6190,"[""Wireless Mouse"", ""Tablet""]",3955.7,"{""loyalty"": ""21%""}",69180,0,Europe +2023-11-28,85806,6894,"[""Phone""]",2408.97,{},291618,1,Europe +2024-12-04,85807,2339,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2644.0,"{"""": ""19%""}",145645,0,South America +2024-05-29,85808,2846,"[""Phone"", ""Laptop"", ""Tablet""]",1178.48,"{""loyalty"": ""6%""}",1021,1,North America +2023-07-17,85809,794,"[""Charger"", ""Keyboard"", ""Monitor""]",3914.26,"{""promo"": ""10%""}",254915,1,North America +2024-06-28,85810,7062,"[""Keyboard"", ""Laptop"", ""Charger""]",1092.66,{},209185,1,Africa +2024-02-19,85811,9495,"[""Charger"", ""Phone""]",1372.7,"{""loyalty"": ""18%""}",22273,0,Africa +2024-09-27,85812,5035,"[""Headphones"", ""Monitor""]",682.52,{},103084,0,Africa +2023-12-04,85813,8150,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2763.86,{},240136,1,Europe +2023-06-30,85814,8177,"[""Monitor""]",2424.74,{},22236,1,Asia +2023-05-26,85815,9260,"[""Monitor"", ""Charger"", ""Laptop""]",2747.36,{},58951,0,North America +2023-12-21,85816,2407,"[""Monitor"", ""Headphones"", ""Keyboard""]",3717.94,{},212770,0,Asia +2024-04-11,85817,279,"[""Laptop"", ""Charger"", ""Phone""]",3112.51,{},43485,1,Africa +2023-09-19,85818,4,"[""Headphones"", ""Charger""]",750.38,{},168354,0,Asia +2024-06-13,85819,4332,"[""Phone"", ""Keyboard""]",1608.02,{},94251,0,South America +2023-09-12,85820,7282,"[""Keyboard""]",4199.58,{},193481,1,Europe +2023-01-22,85821,5073,"[""Keyboard""]",1736.92,{},87296,1,Africa +2023-10-08,85822,9980,"[""Wireless Mouse"", ""Charger""]",3011.86,"{""seasonal"": ""29%""}",135690,1,Europe +2024-09-22,85823,3937,"[""Charger""]",1244.55,"{""loyalty"": ""17%""}",45959,0,Europe +2023-04-25,85824,5938,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",499.81,"{""loyalty"": ""17%""}",275141,1,South America +2023-06-21,85825,2884,"[""Tablet"", ""Monitor""]",284.31,"{""loyalty"": ""23%""}",184776,0,Europe +2024-08-27,85826,7984,"[""Keyboard"", ""Laptop"", ""Phone""]",4963.83,"{""loyalty"": ""9%""}",63341,1,Europe +2024-08-04,85827,7119,"[""Headphones"", ""Keyboard""]",2724.52,"{"""": ""7%""}",223082,0,North America +2024-12-17,85828,4093,"[""Laptop"", ""Tablet"", ""Keyboard""]",3452.84,{},24506,0,North America +2023-04-05,85829,2593,"[""Charger"", ""Phone"", ""Wireless Mouse""]",2859.45,"{""seasonal"": ""10%""}",224023,1,South America +2024-11-01,85830,1703,"[""Headphones"", ""Monitor""]",2234.03,{},151820,0,Europe +2024-09-29,85831,3679,"[""Wireless Mouse""]",2288.49,"{""promo"": ""28%""}",183831,0,Africa +2023-04-28,85832,9438,"[""Phone"", ""Monitor""]",1612.05,{},117227,1,South America +2024-05-11,85833,8363,"[""Phone""]",1591.66,{},37747,1,North America +2023-04-21,85834,7363,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4136.05,"{""seasonal"": ""9%""}",199530,0,Asia +2023-07-24,85835,4602,"[""Keyboard"", ""Phone"", ""Laptop""]",4514.56,"{""promo"": ""30%""}",62669,0,Africa +2024-05-11,85836,2282,"[""Tablet"", ""Laptop""]",4230.39,"{""loyalty"": ""11%""}",57433,1,Europe +2024-09-28,85837,398,"[""Charger"", ""Phone""]",2794.83,{},25888,1,Europe +2024-07-30,85838,6473,"[""Charger"", ""Monitor"", ""Headphones""]",2408.27,"{""loyalty"": ""28%""}",153566,0,North America +2023-02-23,85839,9810,"[""Laptop"", ""Headphones""]",3793.11,{},73370,1,Asia +2023-02-26,85840,2381,"[""Wireless Mouse""]",4643.63,"{""promo"": ""16%""}",129766,1,South America +2023-05-18,85841,5301,"[""Phone"", ""Wireless Mouse""]",2162.6,{},35669,0,Europe +2024-03-18,85842,1074,"[""Monitor""]",4750.96,"{""seasonal"": ""10%""}",97927,0,North America +2023-04-29,85843,7491,"[""Tablet"", ""Phone""]",4576.32,{},37757,1,South America +2024-04-14,85844,1334,"[""Laptop"", ""Wireless Mouse""]",4870.87,{},44383,0,North America +2023-05-27,85845,5510,"[""Phone"", ""Laptop""]",2515.67,{},19359,1,Europe +2023-07-01,85846,2936,"[""Monitor""]",4850.4,"{""loyalty"": ""22%""}",160506,1,South America +2023-10-06,85847,1122,"[""Monitor""]",1285.55,"{""loyalty"": ""21%""}",29640,1,Asia +2023-06-27,85848,4629,"[""Headphones"", ""Laptop""]",1250.98,{},113773,0,Europe +2024-06-10,85849,7766,"[""Charger""]",2739.8,"{""loyalty"": ""27%""}",176195,1,North America +2023-01-06,85850,354,"[""Laptop"", ""Keyboard""]",1986.77,{},166623,1,Africa +2023-12-23,85851,5720,"[""Headphones"", ""Phone""]",363.39,"{"""": ""30%""}",73161,1,North America +2023-06-01,85852,8815,"[""Phone"", ""Monitor""]",4336.29,"{""loyalty"": ""15%""}",268699,0,Europe +2024-04-05,85853,9720,"[""Monitor""]",268.04,"{""promo"": ""17%""}",121472,1,North America +2024-11-21,85854,5906,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2740.55,"{""seasonal"": ""18%""}",199116,0,Africa +2023-02-18,85855,1816,"[""Headphones"", ""Keyboard""]",2529.32,"{""promo"": ""19%""}",85233,0,Africa +2023-12-01,85856,8930,"[""Charger"", ""Tablet""]",972.13,"{"""": ""28%""}",148960,1,South America +2024-12-15,85857,659,"[""Keyboard""]",532.03,"{""promo"": ""9%""}",214675,1,South America +2023-05-20,85858,3080,"[""Charger"", ""Phone""]",978.09,"{"""": ""14%""}",288870,1,South America +2023-06-13,85859,9240,"[""Tablet"", ""Monitor"", ""Laptop""]",266.75,{},187913,1,Europe +2023-02-22,85860,4005,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2443.83,{},17881,0,Europe +2024-02-20,85861,5438,"[""Monitor"", ""Tablet"", ""Headphones""]",3431.26,"{"""": ""14%""}",89434,0,North America +2024-11-27,85862,145,"[""Headphones"", ""Keyboard""]",1404.12,"{""loyalty"": ""5%""}",46158,0,Asia +2023-07-08,85863,4256,"[""Tablet"", ""Charger""]",406.13,"{"""": ""7%""}",28380,0,South America +2024-12-24,85864,1917,"[""Wireless Mouse"", ""Charger""]",2090.65,"{"""": ""6%""}",121947,1,Europe +2023-08-21,85865,7291,"[""Headphones""]",1123.89,"{""seasonal"": ""22%""}",224508,0,Europe +2024-02-07,85866,8347,"[""Charger"", ""Tablet"", ""Headphones""]",3381.2,{},177557,0,South America +2024-06-14,85867,7577,"[""Charger"", ""Tablet""]",4088.71,{},207507,1,North America +2023-10-25,85868,912,"[""Wireless Mouse""]",4914.2,{},244852,1,North America +2023-01-31,85869,3071,"[""Phone""]",2978.52,{},78331,1,South America +2024-01-24,85870,1779,"[""Tablet""]",3319.7,{},68781,0,North America +2023-10-15,85871,618,"[""Charger"", ""Monitor""]",3948.91,{},33341,1,North America +2023-11-30,85872,4246,"[""Wireless Mouse""]",1805.93,"{"""": ""15%""}",177359,0,South America +2023-04-05,85873,4670,"[""Phone""]",4026.18,"{""seasonal"": ""20%""}",235453,0,North America +2024-03-31,85874,3238,"[""Tablet""]",4671.99,"{""seasonal"": ""20%""}",63588,0,Europe +2023-07-17,85875,4555,"[""Phone"", ""Wireless Mouse""]",2325.47,"{""loyalty"": ""8%""}",179594,1,South America +2023-02-01,85876,9328,"[""Wireless Mouse"", ""Monitor""]",813.86,"{""promo"": ""16%""}",192933,0,Asia +2024-02-26,85877,3075,"[""Charger""]",2067.48,"{"""": ""19%""}",117763,0,North America +2024-08-05,85878,7651,"[""Phone""]",4752.55,"{""seasonal"": ""18%""}",2217,1,Asia +2023-01-15,85879,1616,"[""Phone"", ""Keyboard""]",1600.94,"{""loyalty"": ""15%""}",195301,1,Europe +2024-03-05,85880,7615,"[""Monitor"", ""Laptop""]",3965.78,"{""loyalty"": ""29%""}",155485,0,North America +2024-08-01,85881,75,"[""Keyboard"", ""Tablet""]",65.87,"{""seasonal"": ""26%""}",25519,1,Africa +2023-03-16,85882,1998,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4313.89,"{""promo"": ""27%""}",130913,0,Europe +2024-11-13,85883,4255,"[""Phone""]",4090.85,{},204988,1,Asia +2024-07-23,85884,4625,"[""Charger"", ""Keyboard"", ""Phone""]",3723.09,{},207805,0,South America +2023-08-27,85885,6102,"[""Wireless Mouse""]",3829.99,{},219561,0,South America +2023-04-10,85886,122,"[""Laptop"", ""Charger""]",2979.19,{},239573,1,North America +2023-10-23,85887,3310,"[""Tablet""]",2761.98,{},44083,1,Europe +2023-09-15,85888,1286,"[""Headphones"", ""Monitor""]",3798.53,"{""promo"": ""26%""}",37436,0,South America +2024-02-13,85889,9015,"[""Phone""]",1949.55,"{""promo"": ""15%""}",283865,0,Africa +2024-07-26,85890,8454,"[""Wireless Mouse"", ""Laptop""]",4803.95,"{"""": ""11%""}",159448,0,North America +2023-03-31,85891,9758,"[""Headphones"", ""Keyboard""]",4444.42,{},194067,0,Africa +2024-04-05,85892,8585,"[""Phone"", ""Tablet"", ""Keyboard""]",4523.13,"{"""": ""23%""}",39610,1,South America +2024-06-04,85893,9431,"[""Monitor"", ""Laptop""]",843.74,{},187793,1,Africa +2023-01-30,85894,5846,"[""Tablet"", ""Wireless Mouse""]",2258.14,"{""loyalty"": ""11%""}",145294,1,South America +2024-01-10,85895,8526,"[""Laptop""]",3078.9,"{""loyalty"": ""30%""}",101468,1,Asia +2023-12-08,85896,3758,"[""Laptop"", ""Keyboard"", ""Monitor""]",4878.04,{},298075,0,North America +2023-06-19,85897,9995,"[""Monitor""]",2004.4,"{""seasonal"": ""28%""}",187418,1,South America +2023-11-07,85898,8020,"[""Laptop"", ""Tablet""]",1908.79,"{"""": ""26%""}",23885,1,North America +2024-04-15,85899,3640,"[""Tablet"", ""Monitor"", ""Laptop""]",1614.39,"{""promo"": ""29%""}",93142,0,North America +2023-05-16,85900,4973,"[""Monitor"", ""Keyboard""]",3364.59,{},202928,1,Africa +2023-03-10,85901,7760,"[""Wireless Mouse"", ""Tablet""]",2468.4,{},190693,1,North America +2023-01-04,85902,3326,"[""Charger"", ""Monitor""]",1876.23,"{""promo"": ""16%""}",243388,1,Africa +2023-03-14,85903,7060,"[""Charger""]",1609.68,{},210024,0,North America +2024-12-23,85904,4401,"[""Headphones""]",2546.67,"{""seasonal"": ""10%""}",8841,1,South America +2024-04-16,85905,8419,"[""Wireless Mouse"", ""Monitor""]",3787.3,{},116426,0,Europe +2024-02-27,85906,8010,"[""Phone"", ""Monitor"", ""Laptop""]",3076.8,{},56676,0,Europe +2023-10-13,85907,181,"[""Charger""]",364.03,"{""seasonal"": ""11%""}",110059,0,North America +2024-06-22,85908,9256,"[""Laptop"", ""Keyboard""]",4397.83,{},178048,0,North America +2023-01-16,85909,9064,"[""Tablet"", ""Headphones"", ""Monitor""]",1558.47,{},242155,0,Africa +2023-12-13,85910,3492,"[""Monitor"", ""Headphones"", ""Keyboard""]",3572.83,{},226938,1,Asia +2024-11-15,85911,4601,"[""Charger""]",2730.73,{},83111,1,South America +2023-04-03,85912,7017,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",102.08,{},8289,1,Africa +2023-06-10,85913,5294,"[""Wireless Mouse"", ""Monitor""]",2812.75,{},272706,1,Europe +2024-01-06,85914,1398,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2742.82,"{""promo"": ""11%""}",286333,1,South America +2024-05-27,85915,9687,"[""Keyboard"", ""Monitor"", ""Phone""]",1113.27,{},92867,0,North America +2024-06-24,85916,1787,"[""Wireless Mouse""]",3482.86,"{""loyalty"": ""8%""}",28402,1,South America +2024-11-27,85917,1687,"[""Monitor""]",2994.96,{},38557,1,Asia +2024-06-04,85918,1718,"[""Phone""]",3823.6,{},266104,0,Africa +2024-12-27,85919,5188,"[""Keyboard""]",4680.81,"{""seasonal"": ""24%""}",206557,0,North America +2024-06-13,85920,4646,"[""Headphones""]",1594.43,{},248610,1,South America +2023-01-11,85921,4447,"[""Charger"", ""Tablet"", ""Monitor""]",3867.61,{},190814,0,North America +2024-01-12,85922,1276,"[""Wireless Mouse"", ""Headphones""]",584.66,"{"""": ""22%""}",237252,0,South America +2023-12-21,85923,2288,"[""Monitor"", ""Phone""]",3395.19,"{""seasonal"": ""27%""}",190899,0,Africa +2024-01-26,85924,5765,"[""Laptop"", ""Charger"", ""Keyboard""]",3107.74,{},103292,0,North America +2024-02-06,85925,6870,"[""Headphones"", ""Monitor"", ""Tablet""]",3054.82,{},174510,0,Asia +2024-12-29,85926,3222,"[""Phone""]",1784.61,{},284034,1,Africa +2023-06-06,85927,3650,"[""Charger""]",454.88,{},77426,0,North America +2024-01-03,85928,2240,"[""Laptop""]",2351.31,"{""promo"": ""10%""}",249359,1,South America +2023-09-30,85929,2061,"[""Phone"", ""Headphones"", ""Keyboard""]",1444.71,"{""seasonal"": ""20%""}",89783,0,Africa +2024-05-18,85930,1865,"[""Wireless Mouse""]",3333.85,"{""seasonal"": ""26%""}",276775,0,Africa +2024-05-10,85931,5767,"[""Phone"", ""Monitor"", ""Tablet""]",1390.52,{},234385,1,Africa +2024-03-16,85932,3455,"[""Headphones"", ""Phone""]",2497.4,{},241540,0,North America +2023-06-25,85933,2324,"[""Headphones""]",4353.29,"{""promo"": ""9%""}",64873,1,North America +2023-10-13,85934,6658,"[""Charger"", ""Wireless Mouse""]",4672.97,{},157570,1,Europe +2023-05-17,85935,9015,"[""Keyboard"", ""Laptop""]",4548.76,{},100462,1,Europe +2024-08-03,85936,4947,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2216.71,"{""promo"": ""30%""}",265336,0,South America +2023-04-14,85937,4085,"[""Headphones"", ""Monitor"", ""Keyboard""]",1266.57,"{"""": ""21%""}",46129,0,North America +2024-01-16,85938,7959,"[""Phone"", ""Tablet"", ""Keyboard""]",2004.41,{},291324,1,South America +2023-09-01,85939,1537,"[""Monitor""]",763.48,{},198098,1,Asia +2024-09-23,85940,3759,"[""Wireless Mouse"", ""Keyboard""]",4401.54,{},223572,1,Africa +2023-02-01,85941,5813,"[""Keyboard""]",3112.09,{},243003,0,Africa +2023-03-27,85942,2360,"[""Phone"", ""Wireless Mouse""]",4796.94,"{""loyalty"": ""19%""}",279103,1,Asia +2024-02-25,85943,6791,"[""Wireless Mouse"", ""Monitor""]",4270.85,{},138027,1,South America +2023-12-08,85944,3684,"[""Tablet""]",4575.95,{},218602,0,North America +2024-12-03,85945,7823,"[""Phone""]",4815.71,"{""promo"": ""23%""}",118237,1,North America +2023-01-26,85946,4676,"[""Charger""]",1952.3,{},188997,1,Africa +2024-06-28,85947,2344,"[""Headphones""]",1932.81,{},63117,1,Africa +2023-12-31,85948,6246,"[""Tablet"", ""Keyboard""]",638.64,{},21438,0,South America +2024-05-07,85949,1483,"[""Tablet""]",2782.38,{},258115,1,Europe +2023-07-02,85950,2662,"[""Keyboard"", ""Charger""]",428.56,{},23732,1,North America +2023-06-09,85951,5483,"[""Laptop""]",2506.65,"{""loyalty"": ""7%""}",178549,0,Europe +2024-04-20,85952,1341,"[""Headphones"", ""Monitor""]",3168.41,"{""seasonal"": ""5%""}",59195,0,North America +2024-12-27,85953,5311,"[""Headphones""]",1917.09,"{""promo"": ""8%""}",38217,0,South America +2023-10-26,85954,7353,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3625.32,{},169993,0,Africa +2024-02-07,85955,5042,"[""Headphones""]",3120.22,{},85075,0,Africa +2024-03-21,85956,1627,"[""Monitor""]",4846.29,{},104968,1,South America +2024-10-13,85957,2857,"[""Keyboard"", ""Charger""]",2768.75,{},155419,0,North America +2023-07-21,85958,6081,"[""Charger""]",4270.73,{},201634,0,Asia +2024-12-27,85959,3791,"[""Tablet""]",1316.45,{},191934,0,North America +2024-01-11,85960,7065,"[""Keyboard"", ""Phone""]",4951.38,{},185409,1,South America +2024-05-14,85961,1196,"[""Keyboard"", ""Phone"", ""Charger""]",3817.78,"{"""": ""19%""}",10884,1,Africa +2024-05-12,85962,1414,"[""Wireless Mouse""]",1647.34,{},136790,1,Asia +2023-07-16,85963,1471,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",1172.22,{},259097,1,Asia +2024-09-23,85964,7430,"[""Laptop""]",3709.66,"{""seasonal"": ""18%""}",227258,1,Africa +2023-06-08,85965,6958,"[""Laptop"", ""Tablet""]",4783.8,{},215015,0,North America +2024-02-06,85966,2861,"[""Charger"", ""Laptop"", ""Monitor""]",997.73,{},229584,1,North America +2024-07-18,85967,4666,"[""Monitor""]",3410.3,{},169306,1,Africa +2023-02-18,85968,6357,"[""Wireless Mouse""]",3010.47,{},110338,0,Europe +2024-01-09,85969,6521,"[""Tablet""]",4852.24,"{""loyalty"": ""16%""}",159161,0,South America +2024-08-05,85970,2379,"[""Tablet"", ""Wireless Mouse""]",1209.48,{},118208,0,Africa +2024-06-08,85971,6348,"[""Charger"", ""Phone"", ""Monitor""]",1046.24,"{""promo"": ""28%""}",94337,0,Asia +2023-11-17,85972,75,"[""Laptop""]",2075.56,{},4668,0,North America +2024-11-22,85973,2099,"[""Headphones"", ""Laptop"", ""Tablet""]",4205.79,"{"""": ""30%""}",155268,0,Europe +2024-08-19,85974,8340,"[""Keyboard""]",534.97,{},225010,1,Africa +2024-05-25,85975,7209,"[""Charger"", ""Phone""]",2924.8,{},223132,0,North America +2023-02-25,85976,1780,"[""Keyboard"", ""Laptop""]",4820.36,"{""loyalty"": ""10%""}",231262,1,South America +2024-11-30,85977,8305,"[""Wireless Mouse"", ""Phone""]",1935.1,{},110078,1,Asia +2023-12-02,85978,5430,"[""Wireless Mouse"", ""Phone""]",713.74,{},124804,0,Asia +2024-07-04,85979,2993,"[""Laptop""]",4640.03,"{""seasonal"": ""28%""}",50683,1,Europe +2024-08-01,85980,4393,"[""Phone"", ""Tablet"", ""Charger""]",3863.79,{},238454,1,Africa +2024-06-10,85981,8573,"[""Laptop""]",3935.93,{},262152,1,Africa +2023-09-29,85982,3235,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",3713.05,"{""loyalty"": ""8%""}",105562,1,North America +2023-05-18,85983,4345,"[""Tablet"", ""Monitor"", ""Phone""]",4413.99,{},210926,1,Europe +2023-05-12,85984,1985,"[""Charger""]",4086.52,{},177087,1,South America +2023-01-22,85985,6632,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1993.58,{},87805,0,South America +2024-10-08,85986,7009,"[""Monitor"", ""Tablet"", ""Headphones""]",2588.07,{},298693,1,Asia +2023-01-30,85987,4404,"[""Charger"", ""Headphones""]",2603.82,{},95400,0,North America +2024-11-02,85988,703,"[""Headphones"", ""Tablet""]",429.32,{},114465,1,Asia +2023-10-11,85989,525,"[""Charger""]",2544.76,{},159221,0,Asia +2024-12-22,85990,5303,"[""Monitor"", ""Laptop""]",210.43,{},86844,1,Africa +2023-08-22,85991,1641,"[""Phone""]",496.86,{},246996,0,South America +2023-01-25,85992,504,"[""Charger""]",1867.74,{},198146,1,Asia +2023-11-23,85993,9025,"[""Headphones""]",4719.42,"{""loyalty"": ""13%""}",167047,0,Europe +2024-02-25,85994,9113,"[""Keyboard""]",3789.07,"{""seasonal"": ""13%""}",194210,0,Asia +2023-04-30,85995,3358,"[""Charger"", ""Laptop""]",2018.93,{},140535,0,South America +2023-06-13,85996,3198,"[""Wireless Mouse"", ""Charger""]",3876.05,"{""loyalty"": ""6%""}",45271,0,Africa +2023-01-19,85997,6349,"[""Charger"", ""Phone"", ""Laptop""]",703.33,"{"""": ""24%""}",287156,1,Africa +2024-10-06,85998,9269,"[""Keyboard"", ""Tablet""]",2557.33,{},232420,1,North America +2024-07-22,85999,5145,"[""Headphones"", ""Monitor""]",4871.4,{},213241,0,Asia +2024-11-25,86000,9264,"[""Wireless Mouse"", ""Laptop""]",4451.68,"{""promo"": ""28%""}",256090,1,Africa +2024-10-05,86001,8330,"[""Wireless Mouse"", ""Monitor""]",3071.98,{},9494,0,Asia +2024-03-18,86002,5902,"[""Charger""]",4579.96,{},171550,1,Africa +2023-08-10,86003,6162,"[""Phone""]",2506.61,"{""seasonal"": ""23%""}",128114,0,Africa +2024-03-02,86004,7932,"[""Charger""]",2777.52,{},44638,0,North America +2023-04-12,86005,3676,"[""Charger""]",4257.7,{},115166,0,Africa +2024-11-05,86006,1785,"[""Charger"", ""Headphones""]",2266.19,"{""seasonal"": ""18%""}",74868,1,Asia +2024-10-13,86007,7697,"[""Tablet""]",3658.43,"{"""": ""26%""}",48079,1,Asia +2024-02-18,86008,8247,"[""Keyboard""]",964.04,{},25143,1,Asia +2023-10-25,86009,9611,"[""Headphones""]",941.65,"{""seasonal"": ""24%""}",69643,0,South America +2023-04-18,86010,3499,"[""Laptop"", ""Tablet""]",1407.6,"{""loyalty"": ""17%""}",194420,1,North America +2024-02-28,86011,7350,"[""Keyboard""]",2817.07,"{"""": ""11%""}",231100,0,Europe +2023-02-28,86012,2178,"[""Charger"", ""Laptop""]",4661.98,{},64920,0,South America +2024-10-26,86013,6343,"[""Phone"", ""Keyboard""]",2345.25,"{"""": ""14%""}",101222,1,Europe +2023-03-18,86014,3122,"[""Charger"", ""Monitor""]",3472.01,{},3415,0,North America +2024-09-07,86015,5002,"[""Monitor"", ""Keyboard"", ""Headphones""]",3081.78,"{""promo"": ""5%""}",297220,0,Africa +2024-10-13,86016,1613,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",709.15,"{"""": ""26%""}",114407,0,Africa +2024-12-27,86017,2657,"[""Keyboard""]",2869.98,{},158451,1,Africa +2023-11-10,86018,9502,"[""Phone""]",3877.29,{},288085,0,Europe +2024-01-09,86019,3305,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4496.12,{},166399,1,Africa +2024-05-21,86020,7005,"[""Charger"", ""Headphones"", ""Phone""]",1754.02,"{"""": ""7%""}",177661,1,North America +2024-01-19,86021,8509,"[""Headphones"", ""Tablet"", ""Phone""]",4666.98,"{"""": ""15%""}",82157,1,Asia +2023-07-19,86022,5547,"[""Wireless Mouse"", ""Monitor""]",3833.75,{},128153,0,South America +2024-04-05,86023,6397,"[""Charger"", ""Headphones""]",3150.74,"{""loyalty"": ""24%""}",139274,1,North America +2023-03-05,86024,8847,"[""Phone""]",4250.79,{},171795,1,North America +2024-06-09,86025,276,"[""Headphones"", ""Keyboard"", ""Phone""]",619.83,"{""loyalty"": ""7%""}",131355,0,North America +2023-03-25,86026,1736,"[""Monitor"", ""Phone""]",3727.55,"{"""": ""28%""}",138747,0,Europe +2024-02-01,86027,439,"[""Wireless Mouse""]",1099.04,"{""seasonal"": ""12%""}",51457,1,Africa +2023-05-15,86028,2367,"[""Monitor"", ""Wireless Mouse""]",2150.74,"{"""": ""16%""}",178657,1,South America +2023-09-16,86029,71,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",513.85,{},223596,1,North America +2024-05-02,86030,6920,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",198.57,"{""loyalty"": ""5%""}",133460,0,Europe +2023-06-20,86031,1260,"[""Headphones"", ""Keyboard""]",4361.65,"{"""": ""17%""}",43909,0,Europe +2024-08-22,86032,6569,"[""Monitor"", ""Charger""]",1414.34,"{""loyalty"": ""28%""}",265138,0,North America +2024-12-01,86033,1605,"[""Charger""]",2195.89,{},293333,1,North America +2023-05-29,86034,6044,"[""Laptop""]",1951.89,{},247970,1,Africa +2024-02-13,86035,4071,"[""Keyboard"", ""Charger""]",4316.27,{},189980,0,Asia +2024-10-11,86036,4834,"[""Phone"", ""Charger"", ""Laptop""]",2540.17,{},91653,0,Europe +2023-03-21,86037,9861,"[""Keyboard"", ""Charger""]",910.41,{},30984,1,Africa +2023-02-17,86038,1338,"[""Tablet"", ""Laptop""]",994.85,{},296771,0,North America +2023-05-05,86039,9193,"[""Keyboard"", ""Laptop""]",4438.24,"{""promo"": ""15%""}",86531,1,North America +2023-04-21,86040,3599,"[""Tablet"", ""Charger"", ""Phone""]",207.96,"{"""": ""25%""}",4313,0,Asia +2024-06-14,86041,811,"[""Wireless Mouse"", ""Laptop""]",636.41,{},190887,0,Europe +2023-03-31,86042,6435,"[""Monitor"", ""Wireless Mouse""]",4547.66,"{"""": ""24%""}",110533,1,North America +2023-01-11,86043,4086,"[""Headphones""]",2908.55,"{""seasonal"": ""25%""}",12855,1,South America +2023-11-29,86044,7658,"[""Monitor""]",151.75,{},50362,1,North America +2023-02-15,86045,6048,"[""Laptop"", ""Phone"", ""Tablet""]",3356.53,{},230193,1,Europe +2024-03-17,86046,4611,"[""Wireless Mouse""]",2374.64,{},240609,1,Africa +2023-01-26,86047,3695,"[""Laptop"", ""Tablet"", ""Charger""]",3161.33,"{""promo"": ""8%""}",264895,1,Africa +2023-09-25,86048,2227,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3155.85,{},206547,1,Europe +2024-03-26,86049,2485,"[""Tablet"", ""Charger"", ""Headphones""]",3346.49,"{"""": ""20%""}",178583,1,South America +2023-01-07,86050,2147,"[""Laptop""]",4871.0,"{""promo"": ""25%""}",45395,0,North America +2024-12-22,86051,2178,"[""Phone"", ""Wireless Mouse""]",3707.3,"{""loyalty"": ""6%""}",26031,1,Asia +2024-01-29,86052,9658,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4427.34,"{"""": ""28%""}",41353,0,Africa +2023-10-21,86053,81,"[""Monitor"", ""Wireless Mouse""]",4838.86,{},203057,1,Europe +2024-03-20,86054,5702,"[""Charger"", ""Keyboard"", ""Phone""]",644.91,{},16810,1,North America +2023-03-15,86055,8343,"[""Keyboard"", ""Wireless Mouse""]",2047.53,"{""loyalty"": ""6%""}",96897,1,South America +2023-10-10,86056,9943,"[""Laptop""]",4364.96,{},290011,1,Europe +2023-10-08,86057,1285,"[""Laptop"", ""Charger""]",1411.85,"{""seasonal"": ""22%""}",153155,1,Africa +2024-11-03,86058,5941,"[""Phone"", ""Monitor"", ""Tablet""]",2587.74,{},117532,0,Asia +2023-04-13,86059,9466,"[""Phone"", ""Keyboard""]",922.76,{},287591,0,South America +2024-08-13,86060,4595,"[""Charger""]",4377.07,"{"""": ""19%""}",207613,0,Europe +2023-08-20,86061,8192,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4770.55,{},139015,0,Asia +2024-04-19,86062,7834,"[""Tablet""]",1130.73,{},116591,1,Europe +2024-11-11,86063,3385,"[""Tablet"", ""Phone""]",1014.37,{},207555,1,North America +2024-10-10,86064,7871,"[""Phone"", ""Charger""]",4185.24,{},109359,1,Asia +2024-08-06,86065,1736,"[""Headphones"", ""Wireless Mouse""]",1214.02,"{"""": ""20%""}",1066,0,Asia +2024-08-18,86066,9688,"[""Tablet""]",4548.8,{},224049,1,South America +2023-03-30,86067,3618,"[""Headphones""]",1944.81,"{""seasonal"": ""30%""}",4666,0,Africa +2024-06-04,86068,6814,"[""Tablet"", ""Keyboard""]",2792.85,"{""seasonal"": ""8%""}",173809,1,North America +2024-10-20,86069,70,"[""Tablet"", ""Monitor"", ""Keyboard""]",4422.56,{},235223,1,South America +2024-08-14,86070,2327,"[""Tablet""]",4976.67,{},13728,1,Africa +2024-11-20,86071,9305,"[""Charger""]",1788.31,"{"""": ""7%""}",187432,0,North America +2023-06-19,86072,1524,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4972.05,{},115821,1,Asia +2024-11-23,86073,9526,"[""Wireless Mouse""]",4596.75,{},50924,0,North America +2023-09-17,86074,1277,"[""Monitor"", ""Headphones""]",2877.97,"{""seasonal"": ""21%""}",173771,1,North America +2023-04-05,86075,1086,"[""Charger""]",132.65,{},186751,0,North America +2024-11-26,86076,3768,"[""Monitor"", ""Phone"", ""Keyboard""]",3856.47,{},261282,1,Africa +2024-01-05,86077,4749,"[""Headphones"", ""Tablet"", ""Charger""]",1566.5,{},283180,1,Asia +2024-11-11,86078,1788,"[""Monitor""]",1269.76,{},191348,1,North America +2024-01-21,86079,1283,"[""Laptop"", ""Tablet"", ""Charger""]",4760.08,"{""promo"": ""7%""}",225655,1,North America +2024-08-21,86080,1171,"[""Laptop"", ""Monitor""]",1854.54,"{"""": ""17%""}",9174,1,Europe +2023-05-01,86081,1556,"[""Monitor"", ""Wireless Mouse""]",748.01,{},258610,0,Asia +2024-11-17,86082,6892,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4595.48,"{""seasonal"": ""22%""}",8370,0,Africa +2023-11-13,86083,2036,"[""Headphones"", ""Phone"", ""Charger""]",1864.87,"{"""": ""26%""}",161818,0,Asia +2023-12-05,86084,3229,"[""Monitor""]",264.8,{},213577,1,Europe +2023-06-12,86085,5291,"[""Monitor""]",473.77,{},46084,0,Europe +2024-03-27,86086,5908,"[""Keyboard"", ""Charger"", ""Laptop""]",161.62,{},168414,1,South America +2024-04-01,86087,7577,"[""Keyboard""]",428.56,{},46580,0,Asia +2023-08-13,86088,7880,"[""Monitor"", ""Tablet""]",1198.71,"{""loyalty"": ""9%""}",268980,0,Europe +2024-09-06,86089,8038,"[""Headphones""]",1813.68,"{"""": ""27%""}",299380,0,North America +2024-11-20,86090,8530,"[""Laptop"", ""Wireless Mouse""]",390.59,"{""loyalty"": ""13%""}",96268,0,South America +2024-12-10,86091,874,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4109.67,{},189258,0,Europe +2024-08-05,86092,2442,"[""Charger"", ""Keyboard""]",4936.21,{},266841,0,South America +2023-02-09,86093,2176,"[""Laptop"", ""Monitor""]",4340.79,{},131522,1,Europe +2023-06-22,86094,7079,"[""Wireless Mouse"", ""Phone"", ""Charger""]",227.21,{},187147,1,South America +2024-01-04,86095,2437,"[""Laptop""]",3267.54,{},288877,0,South America +2024-10-06,86096,3987,"[""Laptop""]",2037.27,"{""loyalty"": ""16%""}",275912,1,North America +2023-10-07,86097,8596,"[""Tablet""]",2010.24,"{""loyalty"": ""14%""}",180337,0,South America +2024-06-24,86098,7043,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3262.31,"{""seasonal"": ""30%""}",142293,1,Asia +2024-09-15,86099,5723,"[""Charger""]",1856.91,"{"""": ""23%""}",138738,1,Europe +2024-04-12,86100,5241,"[""Keyboard"", ""Headphones"", ""Monitor""]",1158.77,"{""seasonal"": ""26%""}",170960,1,North America +2023-10-01,86101,9531,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4973.37,{},236988,1,Asia +2023-06-08,86102,1825,"[""Tablet"", ""Phone""]",3811.6,{},163534,0,Africa +2024-11-05,86103,4216,"[""Wireless Mouse"", ""Charger""]",1496.21,"{"""": ""10%""}",228071,0,Africa +2023-04-05,86104,9084,"[""Laptop"", ""Phone""]",98.66,{},210476,1,Europe +2024-03-14,86105,3251,"[""Keyboard"", ""Laptop"", ""Monitor""]",268.62,{},102895,0,Africa +2024-03-11,86106,7813,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3685.35,{},14366,1,North America +2024-01-05,86107,63,"[""Laptop""]",3700.57,"{""seasonal"": ""5%""}",261498,1,Africa +2024-04-04,86108,444,"[""Charger"", ""Phone""]",4652.41,{},285385,1,Africa +2024-11-06,86109,3439,"[""Headphones"", ""Monitor""]",897.52,"{"""": ""6%""}",216493,0,South America +2024-10-31,86110,2235,"[""Keyboard""]",632.88,{},234236,1,Asia +2024-01-30,86111,4124,"[""Tablet"", ""Keyboard"", ""Headphones""]",4617.65,"{""loyalty"": ""17%""}",219032,0,South America +2023-02-08,86112,8662,"[""Phone""]",742.43,"{""promo"": ""22%""}",76430,0,North America +2023-06-15,86113,7694,"[""Monitor""]",2731.13,{},12578,0,North America +2024-06-04,86114,3000,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2844.49,"{""promo"": ""13%""}",20707,0,North America +2024-11-22,86115,1457,"[""Headphones"", ""Laptop"", ""Charger""]",3064.05,{},89826,1,Europe +2024-12-04,86116,4973,"[""Keyboard"", ""Laptop"", ""Monitor""]",3349.74,"{"""": ""13%""}",73897,1,North America +2024-10-28,86117,4933,"[""Phone"", ""Wireless Mouse""]",4027.81,{},214524,0,Africa +2023-10-05,86118,3465,"[""Headphones""]",3663.11,"{""promo"": ""27%""}",181334,0,South America +2023-07-31,86119,6908,"[""Headphones""]",2871.54,"{"""": ""6%""}",232516,1,Europe +2024-12-10,86120,882,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3404.57,{},86387,0,Asia +2024-05-07,86121,8876,"[""Tablet""]",1865.88,"{""seasonal"": ""28%""}",5515,1,Africa +2024-01-11,86122,4689,"[""Monitor"", ""Tablet"", ""Headphones""]",2800.38,"{""promo"": ""24%""}",96861,1,South America +2024-05-22,86123,9352,"[""Laptop""]",1344.85,"{""promo"": ""26%""}",173072,1,Europe +2023-08-20,86124,4614,"[""Charger"", ""Tablet"", ""Headphones""]",4718.57,{},50481,1,South America +2023-01-05,86125,6088,"[""Charger"", ""Tablet""]",3779.7,{},69497,0,South America +2023-01-19,86126,8191,"[""Charger"", ""Keyboard"", ""Laptop""]",2108.95,{},57459,1,Asia +2024-02-20,86127,7650,"[""Phone""]",4082.99,"{""promo"": ""12%""}",185035,0,Europe +2024-12-07,86128,5354,"[""Wireless Mouse""]",212.16,{},149707,0,North America +2024-07-18,86129,1622,"[""Headphones"", ""Monitor"", ""Laptop""]",4731.54,{},92418,0,Europe +2024-08-24,86130,7161,"[""Laptop"", ""Charger"", ""Tablet""]",2024.8,{},2567,1,North America +2023-10-19,86131,6992,"[""Monitor""]",1865.3,{},183308,1,Asia +2024-02-23,86132,3555,"[""Headphones"", ""Phone"", ""Keyboard""]",3536.53,{},284244,1,North America +2024-03-04,86133,9105,"[""Tablet"", ""Phone""]",4165.6,"{""seasonal"": ""30%""}",48262,0,North America +2024-11-19,86134,6754,"[""Wireless Mouse""]",4536.85,"{""promo"": ""16%""}",83205,1,North America +2024-04-30,86135,3463,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",4136.25,{},231971,0,Asia +2023-01-24,86136,8164,"[""Phone""]",3990.23,"{""seasonal"": ""13%""}",254936,0,North America +2023-10-05,86137,2470,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1130.11,"{"""": ""16%""}",243706,1,Asia +2023-08-11,86138,7241,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",4304.39,"{""loyalty"": ""19%""}",106576,1,Africa +2023-07-17,86139,7444,"[""Keyboard"", ""Tablet""]",1356.16,"{""seasonal"": ""25%""}",135411,0,Asia +2023-11-27,86140,6115,"[""Laptop"", ""Wireless Mouse""]",1660.95,{},31656,0,Africa +2024-01-29,86141,9097,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3075.5,"{""promo"": ""11%""}",64297,0,South America +2023-05-31,86142,7210,"[""Headphones"", ""Charger"", ""Monitor""]",824.9,{},296554,0,Asia +2023-09-21,86143,7180,"[""Laptop"", ""Monitor""]",2276.39,"{"""": ""20%""}",222889,0,Asia +2024-02-29,86144,9054,"[""Wireless Mouse"", ""Laptop""]",3944.62,{},110705,1,Europe +2023-08-15,86145,2916,"[""Monitor"", ""Keyboard"", ""Phone""]",808.19,"{"""": ""27%""}",293526,1,Europe +2023-02-22,86146,3032,"[""Charger"", ""Tablet""]",765.23,"{""seasonal"": ""28%""}",38354,0,South America +2024-10-03,86147,8220,"[""Monitor"", ""Tablet"", ""Phone""]",1741.26,"{""seasonal"": ""26%""}",199952,0,South America +2023-03-01,86148,1061,"[""Keyboard"", ""Wireless Mouse""]",1631.22,{},50421,0,South America +2024-09-06,86149,5680,"[""Laptop""]",4183.35,{},121081,1,Asia +2023-04-04,86150,3229,"[""Keyboard""]",4156.86,{},62943,1,Africa +2023-05-18,86151,1051,"[""Laptop""]",1500.1,{},41358,1,Africa +2024-04-13,86152,4025,"[""Charger"", ""Tablet""]",287.36,{},18372,1,Europe +2023-05-21,86153,471,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1884.68,{},129616,0,Asia +2024-11-11,86154,6732,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1978.11,"{""seasonal"": ""8%""}",41787,1,Africa +2024-06-22,86155,3748,"[""Wireless Mouse""]",2383.29,"{"""": ""26%""}",135536,1,North America +2024-03-08,86156,733,"[""Keyboard"", ""Monitor""]",2323.53,"{""promo"": ""26%""}",185603,1,North America +2023-06-29,86157,7251,"[""Monitor""]",729.55,{},294768,1,Europe +2023-05-05,86158,4370,"[""Laptop""]",3015.9,"{""promo"": ""7%""}",260303,0,Europe +2023-03-03,86159,8340,"[""Charger"", ""Monitor"", ""Phone""]",2356.53,{},65743,1,Europe +2024-10-30,86160,1076,"[""Laptop""]",4351.55,{},110108,1,Europe +2024-10-22,86161,1277,"[""Monitor"", ""Keyboard""]",2374.24,{},174069,1,Europe +2024-09-13,86162,9220,"[""Keyboard""]",3069.14,{},132726,1,Africa +2023-10-09,86163,3514,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1029.12,{},133866,0,Africa +2024-09-29,86164,9841,"[""Monitor"", ""Laptop""]",4032.39,"{"""": ""9%""}",52439,0,Africa +2024-07-04,86165,3720,"[""Keyboard""]",3745.16,{},241149,1,North America +2023-08-25,86166,9259,"[""Laptop"", ""Headphones"", ""Charger""]",3035.71,{},63636,0,South America +2024-04-24,86167,4298,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4785.58,{},113542,1,Asia +2024-12-16,86168,4294,"[""Laptop""]",358.21,{},140046,0,North America +2023-02-27,86169,7334,"[""Keyboard""]",1886.73,{},224483,1,North America +2024-03-22,86170,3059,"[""Phone""]",3860.59,{},79205,0,Europe +2023-07-27,86171,4200,"[""Keyboard"", ""Headphones"", ""Tablet""]",1302.11,"{""promo"": ""15%""}",268316,1,Asia +2024-06-26,86172,4753,"[""Charger"", ""Keyboard"", ""Headphones""]",4752.83,"{""loyalty"": ""24%""}",246834,0,Africa +2024-06-12,86173,5718,"[""Keyboard"", ""Phone""]",2998.77,{},98076,0,Africa +2024-01-21,86174,2972,"[""Phone"", ""Laptop""]",1969.74,"{"""": ""28%""}",214188,0,Europe +2024-05-10,86175,5431,"[""Headphones"", ""Charger""]",4034.42,{},41058,0,Africa +2024-03-21,86176,6656,"[""Wireless Mouse"", ""Phone""]",451.18,"{"""": ""30%""}",205297,0,Africa +2023-02-13,86177,9778,"[""Monitor"", ""Laptop"", ""Charger""]",3954.8,"{""seasonal"": ""17%""}",191401,0,Asia +2023-02-21,86178,2908,"[""Wireless Mouse"", ""Phone""]",1632.8,"{"""": ""8%""}",66466,1,South America +2023-06-25,86179,7859,"[""Headphones""]",4061.76,{},176893,1,Asia +2023-03-22,86180,4280,"[""Charger"", ""Tablet""]",1484.37,{},290674,1,South America +2024-01-03,86181,5612,"[""Phone"", ""Keyboard""]",1263.57,"{""seasonal"": ""6%""}",286251,1,South America +2024-03-30,86182,2568,"[""Charger""]",4416.27,{},36223,0,North America +2024-08-17,86183,5683,"[""Monitor""]",2578.87,"{""loyalty"": ""17%""}",205587,0,Asia +2024-04-10,86184,7196,"[""Charger""]",497.19,"{""seasonal"": ""6%""}",107490,0,Africa +2023-06-07,86185,9055,"[""Charger"", ""Wireless Mouse""]",3718.59,"{""loyalty"": ""8%""}",279503,1,Asia +2023-11-10,86186,4275,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3014.24,{},134429,1,North America +2024-03-23,86187,8247,"[""Phone""]",2491.28,{},23244,1,Asia +2023-01-28,86188,4305,"[""Monitor"", ""Headphones""]",4232.83,"{"""": ""10%""}",36924,1,South America +2024-08-24,86189,1790,"[""Headphones"", ""Tablet""]",1913.05,"{""seasonal"": ""5%""}",257518,1,Africa +2023-07-29,86190,1182,"[""Headphones"", ""Keyboard"", ""Laptop""]",3184.41,"{""promo"": ""14%""}",26711,1,Asia +2023-06-14,86191,3509,"[""Tablet"", ""Wireless Mouse""]",3149.5,"{"""": ""18%""}",264117,0,Europe +2023-03-05,86192,867,"[""Keyboard"", ""Laptop""]",3202.29,{},279060,1,South America +2023-05-20,86193,8930,"[""Laptop"", ""Monitor"", ""Headphones""]",3167.85,"{""seasonal"": ""9%""}",138225,1,Asia +2023-12-04,86194,1711,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4082.92,{},185908,1,Asia +2024-01-19,86195,1783,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4896.0,{},123733,0,Europe +2023-04-15,86196,3515,"[""Monitor"", ""Wireless Mouse""]",3760.48,{},18155,0,Africa +2024-06-11,86197,6905,"[""Charger""]",2116.7,"{""promo"": ""5%""}",235180,0,South America +2023-08-17,86198,7889,"[""Monitor"", ""Headphones""]",3830.64,{},28238,1,South America +2024-07-25,86199,6914,"[""Laptop"", ""Monitor"", ""Headphones""]",63.95,"{""promo"": ""12%""}",224419,1,Africa +2023-11-13,86200,3530,"[""Tablet""]",3264.22,"{""loyalty"": ""30%""}",113475,1,Africa +2023-05-20,86201,9488,"[""Headphones"", ""Wireless Mouse""]",1466.55,{},190496,0,Africa +2024-11-21,86202,1445,"[""Phone"", ""Tablet"", ""Monitor""]",1459.71,{},287349,1,North America +2024-11-26,86203,89,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",3839.8,"{"""": ""30%""}",257091,1,North America +2023-09-30,86204,9081,"[""Monitor"", ""Headphones""]",4650.8,"{""seasonal"": ""20%""}",15515,0,Africa +2023-01-22,86205,6044,"[""Tablet"", ""Charger""]",3996.06,"{""promo"": ""23%""}",39448,0,North America +2024-02-05,86206,2200,"[""Charger"", ""Keyboard"", ""Monitor""]",4577.67,"{""loyalty"": ""7%""}",295910,1,Africa +2024-09-13,86207,1890,"[""Keyboard""]",1600.46,{},209832,0,Asia +2024-11-05,86208,4653,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4796.28,{},108936,1,Asia +2023-07-24,86209,1572,"[""Laptop""]",3567.35,"{"""": ""26%""}",68977,1,North America +2024-08-11,86210,18,"[""Headphones""]",3417.24,{},18800,0,North America +2023-01-12,86211,6547,"[""Tablet""]",2244.16,{},53415,1,North America +2023-02-22,86212,3055,"[""Wireless Mouse""]",1249.94,{},50363,1,Africa +2024-08-05,86213,4347,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2747.48,"{"""": ""14%""}",243320,1,Europe +2024-01-08,86214,7032,"[""Headphones"", ""Keyboard""]",3476.66,"{""promo"": ""24%""}",140492,0,North America +2024-03-10,86215,8837,"[""Headphones""]",1416.06,{},219156,0,Asia +2023-01-28,86216,8606,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",245.57,{},99491,1,Africa +2023-07-21,86217,4096,"[""Headphones"", ""Laptop""]",1820.66,{},56000,0,Africa +2024-10-28,86218,19,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3370.93,"{""promo"": ""17%""}",168493,1,Africa +2023-10-09,86219,535,"[""Charger""]",3342.13,"{""seasonal"": ""30%""}",191514,0,South America +2023-12-12,86220,5525,"[""Wireless Mouse"", ""Monitor""]",2706.16,{},119408,1,Europe +2024-06-22,86221,6085,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",1720.52,"{""seasonal"": ""16%""}",101408,0,Asia +2024-02-18,86222,1046,"[""Phone""]",2973.56,"{""loyalty"": ""27%""}",295354,1,Africa +2024-08-15,86223,7312,"[""Tablet"", ""Keyboard""]",272.97,"{""loyalty"": ""11%""}",173763,0,Africa +2024-05-25,86224,6217,"[""Laptop"", ""Keyboard"", ""Tablet""]",2997.42,"{""loyalty"": ""18%""}",216988,0,Africa +2023-05-18,86225,8902,"[""Laptop"", ""Headphones"", ""Phone""]",1689.85,"{""seasonal"": ""14%""}",256695,0,South America +2024-03-05,86226,8912,"[""Keyboard""]",1296.9,{},136929,0,Europe +2023-01-02,86227,5578,"[""Tablet"", ""Headphones""]",3145.62,"{""promo"": ""29%""}",135279,0,South America +2023-11-14,86228,6958,"[""Tablet"", ""Laptop""]",357.75,{},92300,0,Africa +2023-11-14,86229,7720,"[""Wireless Mouse""]",496.85,"{""seasonal"": ""9%""}",258415,0,Africa +2024-10-10,86230,693,"[""Keyboard"", ""Charger"", ""Laptop""]",621.46,"{""loyalty"": ""10%""}",12193,1,North America +2023-09-15,86231,1506,"[""Phone"", ""Charger"", ""Monitor""]",548.25,{},104168,0,North America +2024-11-25,86232,6558,"[""Tablet"", ""Phone"", ""Keyboard""]",2488.85,{},132278,0,Africa +2024-06-13,86233,5681,"[""Keyboard"", ""Monitor""]",4888.82,"{""promo"": ""7%""}",52921,0,Asia +2024-11-26,86234,8584,"[""Tablet"", ""Headphones"", ""Laptop""]",4907.31,{},63048,1,Europe +2023-09-14,86235,7702,"[""Headphones"", ""Laptop""]",2657.9,{},130798,1,Europe +2024-09-26,86236,601,"[""Tablet"", ""Headphones""]",1416.81,{},136534,1,North America +2024-09-29,86237,511,"[""Laptop""]",4138.33,"{""seasonal"": ""24%""}",235965,1,Africa +2024-12-02,86238,6232,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1483.14,"{"""": ""8%""}",9875,1,North America +2023-07-12,86239,8366,"[""Laptop"", ""Charger"", ""Phone""]",997.03,{},291684,0,Africa +2024-02-23,86240,6598,"[""Monitor""]",2132.86,{},63022,0,South America +2024-05-19,86241,4866,"[""Charger""]",1372.0,{},41474,0,Africa +2024-01-17,86242,6039,"[""Laptop""]",916.95,{},14264,0,Asia +2023-07-11,86243,9695,"[""Charger"", ""Laptop""]",2842.46,"{"""": ""25%""}",228082,1,Europe +2024-03-30,86244,6875,"[""Monitor""]",3829.48,"{"""": ""6%""}",77836,0,North America +2023-10-30,86245,2520,"[""Tablet"", ""Phone"", ""Monitor""]",3483.05,"{""promo"": ""27%""}",7493,0,North America +2023-12-15,86246,5433,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",3480.46,"{""loyalty"": ""26%""}",42496,1,Europe +2023-04-13,86247,2252,"[""Headphones""]",3728.3,{},208166,1,Asia +2023-02-10,86248,1363,"[""Phone""]",1079.77,{},167522,1,Asia +2023-08-19,86249,4607,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",2708.24,"{""promo"": ""5%""}",238727,1,Europe +2024-07-20,86250,833,"[""Monitor"", ""Phone"", ""Laptop""]",2751.56,{},280433,0,South America +2024-04-14,86251,7751,"[""Wireless Mouse""]",2046.28,"{""promo"": ""15%""}",72776,0,South America +2024-11-06,86252,4098,"[""Laptop"", ""Charger""]",893.38,"{""promo"": ""19%""}",206905,0,Asia +2023-12-31,86253,6540,"[""Keyboard"", ""Tablet""]",1545.0,{},100510,0,Asia +2024-08-24,86254,8992,"[""Laptop""]",3358.75,{},107650,1,Europe +2023-10-17,86255,9173,"[""Keyboard"", ""Tablet"", ""Headphones""]",2421.99,{},21203,1,Africa +2024-02-26,86256,3302,"[""Monitor""]",1921.08,{},282155,0,Asia +2023-04-30,86257,3186,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4356.5,{},137678,0,Asia +2023-08-29,86258,2826,"[""Keyboard""]",304.16,"{""promo"": ""7%""}",151894,1,Asia +2023-09-21,86259,9166,"[""Phone""]",2488.01,"{""promo"": ""16%""}",74909,1,Asia +2023-07-13,86260,7999,"[""Phone"", ""Headphones""]",4089.12,{},218576,0,Africa +2024-09-26,86261,9475,"[""Monitor""]",269.32,{},144799,0,Asia +2024-07-08,86262,3763,"[""Monitor"", ""Tablet""]",744.52,"{""seasonal"": ""27%""}",12439,0,South America +2024-03-21,86263,2646,"[""Phone"", ""Tablet"", ""Charger""]",4250.89,"{"""": ""8%""}",223385,0,North America +2024-04-25,86264,9564,"[""Charger"", ""Tablet""]",3958.59,"{"""": ""29%""}",285172,1,Africa +2023-03-02,86265,6590,"[""Tablet"", ""Charger""]",2022.83,"{"""": ""20%""}",216706,0,Asia +2023-08-31,86266,7179,"[""Keyboard""]",461.84,{},20874,1,Africa +2023-01-26,86267,916,"[""Laptop"", ""Charger"", ""Monitor""]",4904.21,"{""promo"": ""16%""}",23597,1,Asia +2024-03-03,86268,5861,"[""Monitor"", ""Keyboard"", ""Phone""]",2041.97,{},140315,0,South America +2023-06-10,86269,2600,"[""Monitor""]",332.07,"{""promo"": ""19%""}",219037,1,North America +2023-03-07,86270,1703,"[""Monitor""]",793.89,"{"""": ""25%""}",289725,0,North America +2024-05-17,86271,1634,"[""Keyboard"", ""Wireless Mouse""]",1838.46,{},267463,1,Asia +2024-11-15,86272,83,"[""Tablet"", ""Laptop"", ""Phone""]",1858.34,"{"""": ""13%""}",129594,0,Europe +2023-05-15,86273,2946,"[""Headphones"", ""Charger"", ""Phone""]",2585.8,"{""promo"": ""9%""}",41549,0,South America +2024-09-24,86274,4077,"[""Headphones"", ""Keyboard"", ""Tablet""]",1576.49,{},221420,0,North America +2023-06-07,86275,5486,"[""Phone"", ""Tablet"", ""Laptop""]",1779.12,"{"""": ""12%""}",33216,1,South America +2023-01-10,86276,6923,"[""Laptop"", ""Headphones""]",2872.5,{},268177,0,North America +2023-03-22,86277,29,"[""Keyboard""]",789.06,{},244929,0,South America +2024-04-04,86278,4371,"[""Headphones""]",2331.58,{},65248,0,Europe +2023-08-02,86279,9757,"[""Headphones"", ""Charger"", ""Keyboard""]",4690.12,{},257972,1,Europe +2023-12-10,86280,7281,"[""Monitor""]",3759.21,{},237057,1,Africa +2024-08-08,86281,2065,"[""Monitor"", ""Tablet"", ""Laptop""]",2867.18,"{"""": ""25%""}",168549,0,Asia +2023-04-21,86282,3902,"[""Tablet"", ""Monitor""]",4168.69,{},240571,0,Asia +2024-08-07,86283,6876,"[""Phone""]",136.65,{},277313,0,Europe +2024-06-18,86284,921,"[""Keyboard""]",4955.68,"{""seasonal"": ""11%""}",19311,0,South America +2024-08-31,86285,235,"[""Charger"", ""Headphones"", ""Laptop""]",1590.04,"{""seasonal"": ""6%""}",132302,1,Africa +2023-03-09,86286,3987,"[""Wireless Mouse"", ""Headphones""]",3260.35,{},286420,1,Europe +2023-03-19,86287,5843,"[""Keyboard"", ""Tablet"", ""Charger""]",489.55,"{""seasonal"": ""23%""}",200207,0,South America +2023-11-17,86288,7830,"[""Keyboard""]",4634.15,"{""loyalty"": ""5%""}",223289,0,North America +2023-05-29,86289,3812,"[""Monitor"", ""Charger""]",1510.17,{},29017,1,North America +2023-08-16,86290,5317,"[""Phone"", ""Monitor"", ""Keyboard""]",3755.93,"{""promo"": ""9%""}",122599,0,North America +2023-07-23,86291,1711,"[""Phone""]",1016.74,{},131336,0,Europe +2023-11-01,86292,6353,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4549.82,{},86837,1,South America +2023-08-09,86293,9806,"[""Charger"", ""Monitor"", ""Phone""]",1387.58,{},2856,0,Europe +2024-11-15,86294,8108,"[""Phone"", ""Keyboard""]",2834.75,"{"""": ""5%""}",34588,0,South America +2023-03-18,86295,648,"[""Monitor""]",4179.67,{},55586,1,North America +2023-12-10,86296,2205,"[""Headphones"", ""Tablet""]",4804.71,{},69776,0,Europe +2023-05-16,86297,8410,"[""Monitor"", ""Laptop""]",2766.92,{},19640,1,Asia +2024-08-03,86298,8176,"[""Monitor"", ""Charger""]",2482.89,"{""loyalty"": ""15%""}",48629,0,North America +2024-09-21,86299,8294,"[""Phone"", ""Headphones""]",365.77,"{"""": ""6%""}",214567,1,North America +2024-01-26,86300,9531,"[""Tablet""]",1353.68,{},209058,1,North America +2024-02-19,86301,914,"[""Headphones"", ""Phone""]",96.17,"{""loyalty"": ""18%""}",153101,0,North America +2024-08-11,86302,4186,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",719.61,{},190916,1,South America +2024-02-04,86303,6839,"[""Charger""]",1702.64,{},28547,0,Europe +2023-12-06,86304,5263,"[""Charger""]",2166.61,{},212112,1,Asia +2023-10-23,86305,8408,"[""Headphones""]",172.7,"{""promo"": ""21%""}",222764,0,Europe +2024-08-29,86306,8724,"[""Monitor""]",4747.36,"{"""": ""22%""}",285013,0,South America +2023-02-13,86307,2914,"[""Headphones"", ""Monitor""]",1015.76,{},63905,0,Europe +2024-05-13,86308,7430,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3897.05,"{""seasonal"": ""17%""}",100824,1,Asia +2023-04-17,86309,8796,"[""Laptop"", ""Tablet""]",2568.93,{},194405,0,South America +2024-07-24,86310,32,"[""Phone"", ""Laptop""]",4167.34,"{""promo"": ""20%""}",140334,1,North America +2024-01-10,86311,2149,"[""Tablet""]",2640.51,{},218703,1,Asia +2023-04-17,86312,1047,"[""Laptop""]",2949.73,{},118611,0,Africa +2023-07-21,86313,3684,"[""Headphones""]",1979.08,"{""seasonal"": ""27%""}",180833,0,Africa +2023-02-23,86314,8316,"[""Keyboard"", ""Charger"", ""Monitor""]",555.26,"{""promo"": ""10%""}",83613,0,Europe +2023-12-06,86315,4861,"[""Headphones"", ""Tablet""]",844.37,"{""loyalty"": ""23%""}",297635,1,Africa +2023-12-23,86316,9709,"[""Monitor"", ""Charger""]",4327.41,"{""seasonal"": ""21%""}",121044,0,Europe +2023-07-24,86317,7735,"[""Wireless Mouse""]",3789.07,{},55292,0,Africa +2023-09-27,86318,6101,"[""Laptop"", ""Monitor""]",2308.01,"{""promo"": ""14%""}",289683,0,North America +2023-07-08,86319,7397,"[""Monitor"", ""Keyboard"", ""Tablet""]",993.44,"{""seasonal"": ""5%""}",256833,1,North America +2023-04-15,86320,6656,"[""Phone""]",3144.62,{},174536,0,Africa +2023-12-13,86321,7901,"[""Phone""]",3187.0,"{""loyalty"": ""22%""}",267690,1,Europe +2024-09-04,86322,8904,"[""Headphones""]",1555.15,{},142246,1,North America +2023-09-15,86323,3643,"[""Charger"", ""Monitor"", ""Laptop""]",3058.23,"{""seasonal"": ""27%""}",12677,0,North America +2023-03-28,86324,9377,"[""Keyboard"", ""Charger""]",2549.2,"{""loyalty"": ""29%""}",61826,0,South America +2023-01-13,86325,9250,"[""Charger"", ""Tablet""]",268.73,{},169949,1,North America +2024-12-01,86326,1128,"[""Phone""]",1657.8,"{"""": ""12%""}",138082,0,Africa +2023-02-07,86327,5010,"[""Keyboard"", ""Wireless Mouse""]",2607.44,"{""seasonal"": ""11%""}",120022,1,Africa +2024-03-13,86328,5941,"[""Charger"", ""Tablet""]",4038.23,"{"""": ""17%""}",62562,0,Europe +2023-01-07,86329,7153,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2789.84,{},14121,1,South America +2024-11-15,86330,6284,"[""Laptop""]",3558.35,"{""loyalty"": ""15%""}",175147,0,North America +2023-04-19,86331,4825,"[""Monitor"", ""Phone""]",2812.71,{},193604,1,Africa +2023-04-24,86332,8516,"[""Laptop""]",4105.17,"{""loyalty"": ""27%""}",291812,0,South America +2024-03-08,86333,1197,"[""Keyboard""]",1349.34,{},114968,0,North America +2024-10-08,86334,9370,"[""Headphones"", ""Monitor""]",585.15,{},52463,1,Africa +2023-09-30,86335,8852,"[""Headphones"", ""Phone"", ""Monitor""]",285.02,{},143242,0,North America +2024-09-01,86336,5673,"[""Charger"", ""Keyboard""]",3781.76,"{""loyalty"": ""6%""}",271766,0,Europe +2023-07-22,86337,2289,"[""Monitor"", ""Keyboard""]",473.92,"{""loyalty"": ""6%""}",164674,1,Europe +2024-11-15,86338,3446,"[""Keyboard"", ""Charger""]",2598.09,{},270639,0,Asia +2024-08-06,86339,341,"[""Laptop"", ""Phone"", ""Monitor""]",465.59,"{""promo"": ""19%""}",263793,1,Africa +2024-10-25,86340,8502,"[""Charger"", ""Tablet"", ""Laptop""]",3526.47,{},203205,0,North America +2024-05-02,86341,1007,"[""Keyboard"", ""Tablet"", ""Headphones""]",2570.61,"{"""": ""26%""}",1639,0,South America +2023-10-30,86342,5501,"[""Wireless Mouse"", ""Charger""]",2836.01,"{""promo"": ""17%""}",81969,0,Asia +2023-07-21,86343,6438,"[""Charger"", ""Keyboard""]",3473.09,"{"""": ""21%""}",132880,0,North America +2023-05-22,86344,2403,"[""Phone""]",356.58,{},181445,0,Europe +2023-03-03,86345,7735,"[""Headphones"", ""Monitor""]",2987.15,{},37540,0,Europe +2024-02-23,86346,2608,"[""Monitor""]",4210.17,{},192536,1,Africa +2023-11-10,86347,2900,"[""Wireless Mouse"", ""Keyboard""]",1826.96,"{""promo"": ""22%""}",23905,1,South America +2023-06-24,86348,9899,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1862.58,{},89515,0,Europe +2024-03-02,86349,2427,"[""Keyboard""]",1753.0,"{""seasonal"": ""10%""}",159529,0,Africa +2023-06-21,86350,7452,"[""Keyboard"", ""Headphones"", ""Tablet""]",726.12,{},156691,0,Europe +2023-04-26,86351,2277,"[""Tablet"", ""Headphones"", ""Monitor""]",1261.89,"{""seasonal"": ""25%""}",222912,1,Africa +2023-11-25,86352,7400,"[""Charger"", ""Phone"", ""Tablet""]",895.35,{},84232,0,Europe +2024-07-23,86353,867,"[""Monitor"", ""Headphones"", ""Phone""]",4753.79,"{""seasonal"": ""26%""}",83256,1,Asia +2024-07-20,86354,6625,"[""Phone"", ""Laptop""]",1832.16,{},56654,1,South America +2023-02-10,86355,5127,"[""Monitor"", ""Laptop""]",90.59,{},194109,1,South America +2023-03-30,86356,3082,"[""Headphones"", ""Charger"", ""Keyboard""]",2368.32,"{""loyalty"": ""6%""}",121862,0,Africa +2023-04-11,86357,7093,"[""Charger"", ""Tablet"", ""Phone""]",3239.62,{},247802,0,Asia +2024-06-16,86358,9304,"[""Monitor"", ""Charger"", ""Keyboard""]",4424.96,{},77471,1,South America +2023-05-31,86359,8636,"[""Keyboard"", ""Monitor""]",2162.97,"{""seasonal"": ""18%""}",53204,1,Africa +2023-04-09,86360,8930,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4231.54,{},55162,1,South America +2024-08-14,86361,5999,"[""Keyboard"", ""Headphones"", ""Phone""]",3036.21,{},110018,1,North America +2024-11-20,86362,4047,"[""Wireless Mouse""]",725.44,{},171163,1,Asia +2024-09-13,86363,417,"[""Monitor"", ""Keyboard"", ""Headphones""]",4336.76,{},67456,0,Asia +2023-02-22,86364,4095,"[""Keyboard""]",3936.66,{},36688,1,Asia +2023-10-25,86365,2535,"[""Tablet"", ""Keyboard"", ""Charger""]",1456.97,{},289154,0,Europe +2023-08-19,86366,4598,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4016.62,"{""seasonal"": ""14%""}",282068,0,North America +2024-09-18,86367,8251,"[""Laptop"", ""Headphones""]",4634.7,{},32984,0,Europe +2023-12-23,86368,5634,"[""Phone"", ""Laptop""]",3651.39,{},124392,1,Asia +2024-05-25,86369,3099,"[""Tablet""]",3209.85,"{""loyalty"": ""13%""}",3602,1,Europe +2024-05-12,86370,5905,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",245.46,"{""seasonal"": ""8%""}",201205,1,Europe +2023-08-11,86371,6612,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4186.67,"{"""": ""5%""}",236640,1,North America +2023-05-04,86372,6488,"[""Wireless Mouse"", ""Tablet""]",1319.85,{},44462,1,Asia +2024-07-22,86373,759,"[""Wireless Mouse""]",2327.46,"{""seasonal"": ""6%""}",160447,1,Africa +2024-10-11,86374,7693,"[""Tablet""]",1983.59,{},258003,0,North America +2024-12-29,86375,5678,"[""Laptop""]",4767.73,{},2297,1,Africa +2023-02-21,86376,4446,"[""Charger"", ""Phone"", ""Tablet""]",4688.8,"{""loyalty"": ""26%""}",163036,0,South America +2024-10-17,86377,2327,"[""Headphones""]",4006.76,"{""seasonal"": ""7%""}",296893,1,South America +2023-08-24,86378,4486,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3663.12,"{""seasonal"": ""29%""}",166215,1,South America +2023-09-11,86379,9054,"[""Headphones"", ""Monitor""]",3886.51,{},61933,0,Europe +2024-07-20,86380,4238,"[""Phone"", ""Laptop""]",2147.32,{},224291,0,Europe +2023-05-23,86381,2939,"[""Keyboard"", ""Tablet""]",3152.37,"{""loyalty"": ""11%""}",15608,0,Africa +2024-04-21,86382,4262,"[""Laptop"", ""Charger"", ""Headphones""]",829.28,"{""seasonal"": ""22%""}",153115,1,Europe +2023-10-07,86383,26,"[""Wireless Mouse"", ""Tablet""]",3838.49,"{""promo"": ""20%""}",135583,1,Europe +2024-11-14,86384,5148,"[""Laptop""]",4804.33,"{""promo"": ""26%""}",78144,0,Europe +2024-02-27,86385,3999,"[""Laptop"", ""Wireless Mouse""]",4337.14,{},159374,0,Asia +2023-07-01,86386,8419,"[""Charger""]",1976.41,{},158360,0,Europe +2023-03-05,86387,6402,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4106.44,{},123821,0,Asia +2023-08-29,86388,7651,"[""Keyboard"", ""Phone""]",3787.8,{},73271,0,North America +2023-04-27,86389,1494,"[""Tablet"", ""Laptop""]",2492.93,"{"""": ""24%""}",270157,1,Africa +2024-04-24,86390,5888,"[""Monitor"", ""Headphones""]",3790.78,{},293748,1,Africa +2024-07-13,86391,6952,"[""Monitor"", ""Charger""]",2150.44,"{""seasonal"": ""13%""}",35302,1,Africa +2023-08-04,86392,1174,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",1596.71,{},135894,1,North America +2024-04-20,86393,7488,"[""Laptop"", ""Phone"", ""Headphones""]",2662.24,"{"""": ""19%""}",53560,1,Africa +2024-03-26,86394,6394,"[""Monitor"", ""Keyboard"", ""Tablet""]",1901.13,{},137108,0,Asia +2024-02-17,86395,326,"[""Headphones""]",935.39,{},114016,1,Asia +2023-06-11,86396,6520,"[""Charger""]",3946.75,"{""seasonal"": ""5%""}",225005,0,Africa +2024-05-14,86397,895,"[""Monitor"", ""Headphones""]",4401.89,"{"""": ""10%""}",291284,0,Europe +2024-01-27,86398,5421,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1337.46,"{"""": ""10%""}",78091,0,North America +2024-02-27,86399,6248,"[""Charger"", ""Keyboard""]",621.35,{},10562,0,Asia +2023-12-29,86400,1208,"[""Laptop"", ""Keyboard""]",2524.66,{},68899,0,South America +2023-04-26,86401,8585,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2760.81,{},252243,0,Africa +2023-07-17,86402,1333,"[""Tablet""]",292.33,{},23777,1,Asia +2024-10-24,86403,1337,"[""Headphones"", ""Phone"", ""Keyboard""]",3420.99,{},263380,0,South America +2024-11-22,86404,6992,"[""Laptop"", ""Headphones""]",2659.0,{},66408,1,South America +2023-01-16,86405,2505,"[""Phone"", ""Headphones"", ""Laptop""]",1680.94,{},251346,0,North America +2024-12-12,86406,9863,"[""Headphones"", ""Keyboard""]",3359.84,{},279828,0,Asia +2024-12-10,86407,9871,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",90.4,"{""seasonal"": ""6%""}",258717,1,North America +2024-05-02,86408,2052,"[""Wireless Mouse"", ""Monitor""]",4523.26,{},215011,0,South America +2024-01-31,86409,9669,"[""Keyboard""]",1158.43,"{""promo"": ""5%""}",177730,0,South America +2024-09-15,86410,63,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4775.79,{},62958,0,Europe +2024-04-15,86411,860,"[""Charger"", ""Laptop"", ""Monitor""]",2823.88,"{""promo"": ""15%""}",175795,1,South America +2024-11-09,86412,2780,"[""Phone"", ""Charger""]",1829.38,"{""seasonal"": ""21%""}",188282,1,Africa +2024-12-19,86413,9516,"[""Monitor""]",3807.77,"{""seasonal"": ""26%""}",229487,0,Europe +2023-01-20,86414,6739,"[""Laptop""]",1138.46,"{"""": ""6%""}",134832,0,Africa +2023-11-18,86415,2751,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1825.54,{},43753,0,Africa +2023-03-31,86416,1045,"[""Charger"", ""Phone""]",3471.37,"{""loyalty"": ""8%""}",213556,0,Asia +2023-06-03,86417,1696,"[""Phone"", ""Headphones"", ""Charger""]",3253.27,"{""seasonal"": ""20%""}",131998,1,Europe +2024-06-23,86418,3500,"[""Tablet"", ""Wireless Mouse""]",1558.44,"{""seasonal"": ""13%""}",9772,1,Africa +2024-09-14,86419,8292,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",4798.28,"{""promo"": ""11%""}",221190,0,North America +2024-11-06,86420,241,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1650.95,{},229230,0,Asia +2024-08-08,86421,4962,"[""Headphones""]",3417.42,{},262363,1,Africa +2024-09-15,86422,1890,"[""Headphones"", ""Laptop""]",3900.98,"{"""": ""23%""}",286142,1,Asia +2024-09-14,86423,8536,"[""Charger""]",859.15,{},49088,1,Africa +2023-09-25,86424,2878,"[""Tablet"", ""Headphones""]",3089.28,"{""promo"": ""19%""}",41025,1,Europe +2023-10-09,86425,1986,"[""Charger""]",2065.13,"{""promo"": ""7%""}",90260,1,South America +2024-03-02,86426,1871,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",530.94,"{""promo"": ""24%""}",258292,0,South America +2023-02-06,86427,3220,"[""Tablet""]",2518.05,"{""promo"": ""21%""}",80679,0,Asia +2024-06-05,86428,448,"[""Laptop""]",1200.43,{},183951,0,Europe +2024-05-06,86429,1573,"[""Charger"", ""Headphones""]",4730.25,"{""promo"": ""15%""}",214096,0,South America +2024-08-03,86430,2973,"[""Monitor""]",978.81,"{"""": ""7%""}",189659,0,Asia +2024-04-01,86431,2945,"[""Charger""]",4714.07,{},90928,1,South America +2024-07-23,86432,9227,"[""Phone""]",2160.2,{},269736,0,South America +2023-11-20,86433,8344,"[""Monitor"", ""Phone""]",4800.3,{},181189,0,South America +2023-08-12,86434,4744,"[""Phone"", ""Keyboard""]",168.69,{},259058,0,South America +2024-06-29,86435,8390,"[""Keyboard"", ""Phone"", ""Tablet""]",1346.72,{},129988,1,Asia +2024-04-20,86436,3830,"[""Monitor"", ""Headphones"", ""Charger""]",2004.09,{},36327,0,Africa +2024-02-18,86437,7437,"[""Tablet"", ""Keyboard""]",3217.29,{},80141,1,Asia +2024-06-26,86438,1864,"[""Keyboard"", ""Monitor"", ""Tablet""]",4410.78,{},116984,1,Africa +2024-03-05,86439,9853,"[""Laptop""]",1199.85,{},97203,1,Asia +2024-02-13,86440,3742,"[""Wireless Mouse"", ""Monitor""]",2310.29,{},177459,1,South America +2023-10-06,86441,5683,"[""Keyboard"", ""Charger"", ""Headphones""]",4235.39,"{""seasonal"": ""12%""}",134272,1,South America +2023-10-22,86442,6150,"[""Keyboard"", ""Monitor"", ""Tablet""]",1571.56,{},157535,0,North America +2024-12-26,86443,5415,"[""Laptop"", ""Wireless Mouse""]",455.28,"{""seasonal"": ""19%""}",201699,1,Europe +2023-02-04,86444,9485,"[""Charger"", ""Monitor"", ""Laptop""]",3536.38,"{"""": ""23%""}",265006,0,South America +2023-06-25,86445,2951,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3541.45,{},38728,0,Africa +2023-07-07,86446,8000,"[""Keyboard""]",3431.95,{},171641,0,Africa +2023-04-14,86447,391,"[""Laptop"", ""Monitor"", ""Charger""]",624.73,"{""promo"": ""10%""}",211095,1,Africa +2024-07-16,86448,4279,"[""Monitor"", ""Headphones""]",1555.11,{},54164,1,Africa +2024-12-01,86449,785,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3470.28,"{""promo"": ""13%""}",265873,0,South America +2024-07-30,86450,2543,"[""Keyboard"", ""Tablet""]",3997.17,{},134727,0,Africa +2024-10-20,86451,4462,"[""Tablet"", ""Wireless Mouse""]",4015.85,{},187726,0,North America +2024-03-27,86452,7644,"[""Phone"", ""Tablet"", ""Charger""]",4578.12,{},237634,1,South America +2023-10-18,86453,4381,"[""Wireless Mouse"", ""Phone""]",2697.29,"{"""": ""29%""}",108828,1,North America +2023-04-05,86454,5118,"[""Wireless Mouse""]",2816.19,{},36057,1,Africa +2024-04-01,86455,922,"[""Tablet""]",4549.33,"{""loyalty"": ""24%""}",166413,0,South America +2023-01-13,86456,4666,"[""Headphones"", ""Charger""]",3961.84,{},149497,0,Africa +2024-01-26,86457,2591,"[""Tablet""]",1603.35,{},162872,1,Asia +2024-05-29,86458,181,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1174.19,{},195382,0,Europe +2023-04-26,86459,3255,"[""Tablet"", ""Laptop"", ""Keyboard""]",3238.63,"{""promo"": ""10%""}",42873,0,Africa +2024-09-27,86460,8790,"[""Charger""]",3439.63,{},95154,0,Africa +2024-09-10,86461,8879,"[""Tablet""]",2801.08,{},254432,0,North America +2023-11-18,86462,7795,"[""Laptop"", ""Headphones"", ""Monitor""]",4699.41,{},32413,1,North America +2024-04-22,86463,305,"[""Charger""]",4563.5,"{""promo"": ""10%""}",125977,1,Asia +2024-11-26,86464,72,"[""Charger"", ""Keyboard""]",4054.65,{},160135,0,South America +2024-02-23,86465,6668,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3866.18,"{""loyalty"": ""7%""}",66250,0,Africa +2023-05-17,86466,2727,"[""Laptop""]",3768.45,"{""loyalty"": ""26%""}",107178,0,South America +2024-05-03,86467,1458,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4131.03,"{""seasonal"": ""6%""}",52280,1,Africa +2023-05-25,86468,2726,"[""Keyboard"", ""Monitor"", ""Tablet""]",1289.45,"{""loyalty"": ""9%""}",33083,1,North America +2023-10-26,86469,4850,"[""Laptop""]",2681.12,{},237403,0,Africa +2024-11-28,86470,2781,"[""Keyboard"", ""Monitor""]",4891.25,{},56356,0,Africa +2024-12-14,86471,5266,"[""Charger"", ""Headphones"", ""Phone""]",3291.4,"{"""": ""10%""}",205061,1,North America +2023-04-15,86472,5252,"[""Monitor"", ""Phone""]",3221.61,"{"""": ""16%""}",4243,1,Asia +2023-03-09,86473,3145,"[""Monitor""]",4505.9,"{"""": ""19%""}",188846,1,North America +2023-12-08,86474,9684,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",828.12,"{""seasonal"": ""28%""}",245124,1,North America +2023-09-17,86475,103,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1095.59,{},194358,0,Europe +2023-06-12,86476,6250,"[""Phone""]",3556.15,{},199419,1,Asia +2023-10-31,86477,4059,"[""Keyboard""]",3644.4,{},23454,1,Asia +2024-02-21,86478,773,"[""Keyboard"", ""Laptop"", ""Charger""]",1213.92,"{""loyalty"": ""23%""}",261360,1,North America +2024-09-15,86479,7475,"[""Monitor"", ""Tablet""]",4461.97,{},136603,0,Africa +2023-06-22,86480,8639,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1282.06,{},149544,0,North America +2023-08-02,86481,4268,"[""Phone"", ""Headphones""]",2213.36,"{""seasonal"": ""7%""}",202710,0,North America +2023-05-09,86482,3549,"[""Keyboard"", ""Tablet""]",3349.52,{},153272,1,South America +2024-09-05,86483,4934,"[""Monitor"", ""Tablet"", ""Headphones""]",2963.94,{},242451,0,North America +2024-05-01,86484,7147,"[""Laptop""]",3439.69,"{"""": ""6%""}",75195,1,Asia +2024-07-20,86485,247,"[""Laptop"", ""Keyboard"", ""Tablet""]",4220.42,{},138660,0,Europe +2024-01-18,86486,2579,"[""Keyboard""]",4872.6,{},132284,1,Asia +2024-07-04,86487,6520,"[""Headphones""]",2185.12,{},227170,0,Africa +2023-03-25,86488,854,"[""Headphones"", ""Monitor"", ""Charger""]",189.36,"{"""": ""5%""}",222037,1,Europe +2023-08-18,86489,5886,"[""Keyboard""]",4083.37,"{""promo"": ""14%""}",117532,0,North America +2023-05-10,86490,1493,"[""Tablet"", ""Phone"", ""Laptop""]",1315.15,"{""seasonal"": ""25%""}",77732,1,South America +2024-01-14,86491,8805,"[""Tablet"", ""Laptop""]",3372.81,"{""promo"": ""15%""}",39896,0,Asia +2023-07-06,86492,2762,"[""Tablet""]",4513.95,{},288781,0,Asia +2024-02-09,86493,7010,"[""Monitor"", ""Charger"", ""Laptop""]",4814.86,{},158245,1,Europe +2023-06-03,86494,8238,"[""Keyboard"", ""Charger"", ""Headphones""]",3334.32,"{"""": ""25%""}",276301,1,North America +2024-07-13,86495,147,"[""Tablet"", ""Wireless Mouse""]",2769.83,{},145729,1,South America +2024-02-02,86496,432,"[""Monitor""]",4608.02,{},79274,1,South America +2024-05-13,86497,2188,"[""Laptop""]",4380.53,{},164933,0,South America +2024-07-14,86498,5061,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2862.47,{},195600,0,North America +2024-03-09,86499,4881,"[""Monitor""]",791.05,{},7360,1,Europe +2023-05-25,86500,9719,"[""Phone"", ""Tablet""]",2855.31,{},258809,0,South America +2024-07-03,86501,3169,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3568.87,"{"""": ""7%""}",31301,0,Asia +2023-12-23,86502,9932,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",576.14,{},56074,1,Asia +2024-12-15,86503,2905,"[""Keyboard"", ""Monitor""]",2527.88,{},20507,0,Europe +2023-09-13,86504,1313,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1034.11,{},282478,0,South America +2023-01-04,86505,4637,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3870.16,{},217008,0,Asia +2024-01-18,86506,858,"[""Laptop""]",606.51,{},248436,1,Europe +2024-12-15,86507,7249,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1404.46,"{""seasonal"": ""5%""}",111597,0,Asia +2024-04-04,86508,1039,"[""Monitor""]",2660.06,{},6766,0,Africa +2024-02-13,86509,3438,"[""Phone"", ""Monitor"", ""Tablet""]",3533.9,{},118440,1,North America +2023-05-30,86510,2790,"[""Charger"", ""Laptop"", ""Tablet""]",3209.06,{},82702,0,South America +2024-06-26,86511,9997,"[""Headphones"", ""Tablet"", ""Charger""]",852.41,"{""promo"": ""13%""}",170670,1,North America +2024-09-12,86512,8376,"[""Monitor"", ""Keyboard"", ""Laptop""]",922.91,{},15029,1,Africa +2023-07-04,86513,8377,"[""Monitor""]",3050.49,{},219140,1,Europe +2024-07-31,86514,876,"[""Tablet"", ""Headphones"", ""Monitor""]",2355.49,"{""promo"": ""29%""}",280918,0,Asia +2024-06-24,86515,305,"[""Laptop"", ""Headphones"", ""Phone""]",1561.5,{},58472,1,Asia +2023-12-01,86516,8638,"[""Phone"", ""Keyboard""]",893.59,{},117268,1,Asia +2024-04-23,86517,7714,"[""Wireless Mouse"", ""Monitor""]",4878.14,"{"""": ""9%""}",132494,1,Africa +2023-07-09,86518,3311,"[""Monitor"", ""Headphones""]",2905.53,{},184764,0,Europe +2024-02-02,86519,4111,"[""Phone"", ""Charger"", ""Laptop""]",1028.05,"{""promo"": ""14%""}",46554,0,South America +2024-06-20,86520,238,"[""Phone"", ""Charger"", ""Headphones""]",2872.1,{},227402,1,North America +2023-11-04,86521,542,"[""Tablet"", ""Phone"", ""Monitor""]",2716.56,"{""loyalty"": ""18%""}",148515,0,Europe +2023-06-12,86522,7458,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3285.15,"{"""": ""20%""}",81644,0,Africa +2024-05-21,86523,5333,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2017.38,"{""seasonal"": ""21%""}",36211,1,Asia +2023-06-25,86524,7042,"[""Wireless Mouse""]",888.49,{},139558,1,Europe +2023-08-06,86525,1951,"[""Keyboard"", ""Wireless Mouse""]",868.21,{},219127,0,Europe +2024-10-03,86526,9916,"[""Headphones"", ""Wireless Mouse""]",3292.84,{},235482,0,South America +2023-08-11,86527,2826,"[""Charger"", ""Headphones"", ""Tablet""]",3653.8,{},179592,0,Asia +2024-07-08,86528,5767,"[""Headphones""]",4473.08,"{""promo"": ""12%""}",59422,1,Africa +2024-05-13,86529,5360,"[""Phone"", ""Keyboard""]",3957.07,{},66366,1,Europe +2023-09-29,86530,7507,"[""Wireless Mouse"", ""Keyboard""]",835.03,"{""loyalty"": ""25%""}",83914,1,Europe +2024-07-03,86531,6561,"[""Charger"", ""Phone"", ""Headphones""]",324.69,"{""seasonal"": ""8%""}",5765,1,South America +2024-01-05,86532,886,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4479.28,{},220492,0,South America +2023-02-13,86533,4758,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4702.14,{},197799,0,Africa +2024-06-22,86534,3999,"[""Laptop""]",106.74,{},251746,0,South America +2024-08-19,86535,396,"[""Monitor""]",284.78,{},55394,1,Europe +2023-04-22,86536,6843,"[""Charger"", ""Keyboard"", ""Headphones""]",2403.56,"{""loyalty"": ""12%""}",202974,1,South America +2024-01-12,86537,4964,"[""Monitor""]",4258.68,{},232496,0,South America +2024-08-07,86538,9109,"[""Monitor"", ""Tablet"", ""Charger""]",681.57,{},60985,1,North America +2024-05-07,86539,2427,"[""Headphones""]",63.71,"{""promo"": ""13%""}",64199,1,South America +2024-11-22,86540,9584,"[""Phone"", ""Monitor"", ""Headphones""]",450.32,"{""loyalty"": ""14%""}",223845,1,Europe +2024-01-03,86541,5919,"[""Monitor"", ""Tablet"", ""Headphones""]",3115.21,"{""seasonal"": ""14%""}",187252,0,Africa +2024-02-23,86542,9978,"[""Phone""]",2981.32,{},173821,1,North America +2024-12-31,86543,8130,"[""Phone"", ""Monitor"", ""Charger""]",3196.78,"{""seasonal"": ""23%""}",119401,0,Africa +2024-02-22,86544,8276,"[""Tablet""]",936.23,"{""seasonal"": ""24%""}",80841,1,Asia +2023-07-23,86545,8051,"[""Phone""]",4328.3,{},23167,0,Africa +2023-05-11,86546,3300,"[""Headphones"", ""Monitor""]",3339.65,{},235003,1,Europe +2023-07-12,86547,6678,"[""Phone""]",4542.06,"{""loyalty"": ""17%""}",101879,0,Europe +2024-06-02,86548,3732,"[""Monitor""]",4896.93,{},41443,0,Africa +2024-03-07,86549,858,"[""Monitor""]",4740.86,{},110112,0,Africa +2024-12-02,86550,1245,"[""Monitor"", ""Laptop""]",2824.99,{},204871,1,Europe +2023-05-30,86551,5441,"[""Keyboard"", ""Charger""]",3773.97,{},281268,0,North America +2024-09-17,86552,6541,"[""Keyboard"", ""Wireless Mouse""]",4955.53,"{""seasonal"": ""7%""}",90577,1,Europe +2023-03-16,86553,1392,"[""Headphones"", ""Laptop"", ""Keyboard""]",1185.21,"{""promo"": ""9%""}",193554,0,South America +2024-02-17,86554,3796,"[""Laptop"", ""Phone""]",2660.86,"{""seasonal"": ""13%""}",34318,1,Europe +2024-02-26,86555,985,"[""Headphones"", ""Charger""]",2569.68,{},158045,0,Europe +2023-07-24,86556,2435,"[""Laptop"", ""Monitor""]",2803.8,{},32417,1,Europe +2023-07-17,86557,4684,"[""Laptop""]",4302.23,"{"""": ""25%""}",19294,0,South America +2023-12-06,86558,9620,"[""Tablet"", ""Keyboard""]",4258.29,"{""promo"": ""20%""}",53828,1,South America +2024-01-17,86559,8099,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",106.83,"{""seasonal"": ""22%""}",210020,1,South America +2024-10-28,86560,4974,"[""Headphones"", ""Tablet""]",3189.72,{},241464,0,Europe +2023-12-05,86561,1354,"[""Charger"", ""Monitor""]",3878.43,"{""loyalty"": ""23%""}",172224,1,Europe +2024-12-27,86562,6533,"[""Keyboard"", ""Tablet""]",3340.15,"{""promo"": ""17%""}",98293,1,Europe +2023-07-11,86563,927,"[""Keyboard"", ""Monitor""]",1922.39,{},67248,1,Africa +2023-09-05,86564,3876,"[""Wireless Mouse"", ""Charger""]",2116.13,{},166549,0,North America +2024-04-14,86565,3594,"[""Tablet"", ""Phone"", ""Charger""]",3963.74,{},278939,1,Africa +2023-07-02,86566,4285,"[""Headphones"", ""Charger"", ""Phone""]",3982.7,"{""loyalty"": ""28%""}",79812,1,Europe +2023-12-12,86567,1181,"[""Phone""]",1398.83,"{""loyalty"": ""27%""}",47478,0,South America +2023-07-31,86568,5409,"[""Keyboard""]",2637.27,{},186102,0,Europe +2024-04-29,86569,3059,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4208.03,"{""promo"": ""19%""}",22688,1,Europe +2023-05-23,86570,8668,"[""Headphones"", ""Monitor"", ""Charger""]",1703.5,{},251469,1,Africa +2023-08-21,86571,8140,"[""Laptop""]",4992.72,{},155895,1,Africa +2023-10-22,86572,9028,"[""Wireless Mouse"", ""Phone""]",2509.02,{},75836,0,Asia +2023-05-12,86573,6565,"[""Keyboard""]",813.85,{},110598,1,North America +2023-07-10,86574,1350,"[""Wireless Mouse""]",2726.18,{},77921,0,South America +2024-01-27,86575,2242,"[""Keyboard"", ""Laptop"", ""Tablet""]",1524.32,"{""seasonal"": ""12%""}",258471,0,Europe +2024-12-07,86576,4158,"[""Charger"", ""Laptop""]",748.31,"{""seasonal"": ""21%""}",87084,0,Asia +2023-02-12,86577,2923,"[""Keyboard""]",384.52,"{"""": ""12%""}",13225,0,Asia +2024-05-01,86578,154,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1358.29,{},118888,0,South America +2024-07-06,86579,717,"[""Charger"", ""Headphones"", ""Tablet""]",97.87,{},193344,0,Asia +2023-03-13,86580,2018,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2997.73,{},215098,1,Europe +2023-12-03,86581,7842,"[""Keyboard""]",537.17,"{""promo"": ""11%""}",224270,1,South America +2023-09-13,86582,8534,"[""Phone"", ""Keyboard""]",3086.49,{},279076,1,Asia +2024-09-29,86583,8196,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",493.37,"{""promo"": ""29%""}",100352,0,Africa +2024-07-30,86584,2885,"[""Headphones"", ""Laptop"", ""Charger""]",4396.9,"{"""": ""14%""}",161162,0,South America +2024-10-30,86585,2404,"[""Wireless Mouse"", ""Laptop""]",2547.73,{},41465,1,North America +2023-12-19,86586,4027,"[""Monitor"", ""Keyboard""]",3438.47,"{""seasonal"": ""20%""}",153101,1,South America +2023-11-13,86587,3081,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4077.97,"{""promo"": ""29%""}",113825,1,Africa +2023-08-19,86588,3891,"[""Monitor"", ""Charger""]",3661.02,{},6386,1,Europe +2024-12-13,86589,4652,"[""Monitor""]",4350.78,{},59244,0,South America +2023-08-22,86590,1972,"[""Charger""]",706.87,"{"""": ""23%""}",37090,0,Asia +2023-03-27,86591,1758,"[""Wireless Mouse"", ""Phone""]",4737.79,{},168742,0,Europe +2023-06-14,86592,5265,"[""Keyboard""]",1365.24,{},39615,0,South America +2024-10-18,86593,3074,"[""Tablet"", ""Keyboard"", ""Headphones""]",1779.82,"{""promo"": ""27%""}",106338,1,Europe +2024-12-26,86594,9986,"[""Charger"", ""Headphones""]",1123.24,"{""loyalty"": ""8%""}",17925,0,Europe +2024-04-13,86595,3872,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2987.24,"{""promo"": ""25%""}",207774,0,Europe +2023-11-12,86596,3183,"[""Keyboard""]",3298.81,"{""promo"": ""30%""}",191649,0,South America +2023-04-28,86597,7482,"[""Phone""]",3038.28,"{""promo"": ""8%""}",270130,0,Europe +2023-12-21,86598,9511,"[""Wireless Mouse"", ""Monitor""]",1441.48,{},156052,1,Europe +2024-10-09,86599,3325,"[""Phone"", ""Monitor""]",263.21,{},83318,1,Africa +2024-12-10,86600,3543,"[""Monitor"", ""Tablet""]",122.06,"{""seasonal"": ""23%""}",94656,1,Asia +2023-05-28,86601,4697,"[""Charger"", ""Headphones""]",3232.08,{},80711,0,Europe +2023-01-26,86602,7881,"[""Keyboard"", ""Tablet"", ""Monitor""]",460.23,"{""loyalty"": ""16%""}",205620,1,South America +2023-09-19,86603,1137,"[""Charger"", ""Keyboard""]",4314.69,{},191033,0,Europe +2024-02-09,86604,1393,"[""Charger"", ""Tablet"", ""Laptop""]",4647.17,"{"""": ""12%""}",142403,1,Asia +2024-12-12,86605,6232,"[""Monitor"", ""Wireless Mouse""]",990.13,{},110938,0,Europe +2023-01-04,86606,4009,"[""Wireless Mouse"", ""Tablet""]",3530.6,"{"""": ""28%""}",278898,0,North America +2023-09-25,86607,6869,"[""Monitor"", ""Wireless Mouse""]",2356.13,{},239793,0,North America +2024-12-09,86608,6213,"[""Tablet"", ""Wireless Mouse""]",2780.97,"{"""": ""16%""}",249350,0,Africa +2024-03-14,86609,8355,"[""Laptop""]",4458.42,{},286178,0,South America +2024-11-02,86610,4663,"[""Wireless Mouse""]",3042.69,"{"""": ""10%""}",27429,1,Africa +2024-10-26,86611,8023,"[""Keyboard"", ""Headphones""]",3274.17,{},216994,0,North America +2024-09-21,86612,1599,"[""Phone"", ""Tablet""]",2780.57,{},98681,1,Europe +2023-01-01,86613,7085,"[""Keyboard"", ""Tablet""]",1714.63,"{"""": ""24%""}",181734,0,Africa +2024-09-03,86614,4212,"[""Tablet"", ""Charger""]",1259.68,{},222709,1,Asia +2024-11-18,86615,7011,"[""Laptop"", ""Tablet""]",3544.1,"{""promo"": ""13%""}",270184,1,North America +2023-02-03,86616,6581,"[""Phone"", ""Keyboard""]",4995.56,{},152473,0,Asia +2024-02-29,86617,27,"[""Wireless Mouse""]",1932.41,"{""seasonal"": ""26%""}",46302,1,Africa +2024-10-09,86618,2900,"[""Monitor"", ""Phone""]",1308.69,"{""loyalty"": ""7%""}",259069,1,North America +2024-05-08,86619,9345,"[""Monitor"", ""Tablet""]",2676.17,{},57492,0,Asia +2023-02-07,86620,6589,"[""Phone"", ""Charger""]",2084.75,"{""seasonal"": ""8%""}",222683,0,North America +2024-04-17,86621,4517,"[""Charger""]",3533.34,"{""seasonal"": ""20%""}",265728,1,Europe +2023-11-09,86622,2657,"[""Headphones"", ""Charger"", ""Tablet""]",2881.84,"{"""": ""17%""}",85710,1,Africa +2024-07-19,86623,9210,"[""Wireless Mouse""]",2182.17,"{""loyalty"": ""29%""}",138250,1,South America +2024-11-24,86624,1708,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",111.7,"{"""": ""5%""}",292539,0,Europe +2024-09-02,86625,2203,"[""Headphones"", ""Monitor""]",1667.77,{},61252,1,Asia +2023-12-15,86626,8282,"[""Wireless Mouse"", ""Charger""]",4621.17,{},60028,1,Europe +2023-09-27,86627,8793,"[""Keyboard""]",3866.8,{},34042,0,North America +2023-01-03,86628,4637,"[""Charger""]",1473.5,{},30299,0,Asia +2024-06-06,86629,8709,"[""Keyboard"", ""Headphones""]",412.49,{},244293,1,Europe +2024-02-23,86630,9348,"[""Phone"", ""Monitor"", ""Headphones""]",4721.46,"{""seasonal"": ""28%""}",123591,1,Africa +2024-03-26,86631,323,"[""Keyboard"", ""Headphones"", ""Phone""]",3466.31,{},108988,0,North America +2023-03-17,86632,7668,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2846.65,{},32764,0,South America +2023-12-01,86633,157,"[""Laptop"", ""Tablet""]",737.04,"{"""": ""26%""}",216345,1,Asia +2024-06-15,86634,2614,"[""Wireless Mouse""]",4041.5,{},252692,1,Africa +2024-07-04,86635,1101,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2824.92,{},16938,1,Africa +2023-09-11,86636,9945,"[""Monitor""]",1469.56,"{"""": ""26%""}",91067,0,Europe +2023-08-03,86637,6100,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4634.96,{},100059,1,North America +2024-12-08,86638,1988,"[""Charger""]",3830.15,{},240348,0,South America +2024-06-14,86639,7123,"[""Monitor"", ""Phone""]",3676.71,{},71789,1,Africa +2024-11-28,86640,8329,"[""Wireless Mouse""]",3860.56,"{""loyalty"": ""29%""}",211031,0,North America +2023-03-31,86641,4968,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4072.31,{},285345,1,North America +2024-09-26,86642,1246,"[""Charger"", ""Wireless Mouse""]",1299.07,"{"""": ""8%""}",53494,1,Europe +2023-07-19,86643,1588,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2433.69,"{"""": ""20%""}",297943,1,North America +2024-06-12,86644,1322,"[""Phone"", ""Headphones"", ""Charger""]",2494.7,{},248100,1,South America +2023-11-30,86645,620,"[""Laptop"", ""Charger""]",2345.54,"{""loyalty"": ""10%""}",202622,1,South America +2024-06-17,86646,6334,"[""Tablet"", ""Keyboard"", ""Phone""]",1028.69,{},264328,1,North America +2024-01-06,86647,2461,"[""Phone"", ""Charger""]",372.33,"{""loyalty"": ""13%""}",138491,1,Africa +2024-03-23,86648,6212,"[""Wireless Mouse"", ""Tablet""]",81.44,"{"""": ""10%""}",276622,1,Africa +2024-02-15,86649,2012,"[""Laptop"", ""Tablet""]",641.65,{},198551,1,South America +2024-10-19,86650,5933,"[""Tablet"", ""Charger"", ""Laptop""]",233.5,"{""promo"": ""16%""}",181326,1,South America +2024-04-09,86651,2190,"[""Headphones"", ""Charger"", ""Laptop""]",4216.14,"{"""": ""14%""}",198946,1,Europe +2023-10-23,86652,4011,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2789.64,{},284418,0,Europe +2023-04-17,86653,9789,"[""Keyboard"", ""Charger"", ""Laptop""]",4333.58,{},296187,0,Asia +2023-08-01,86654,8176,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2377.45,{},173420,0,North America +2023-09-02,86655,2181,"[""Keyboard""]",4438.13,{},274732,0,Europe +2023-08-17,86656,1898,"[""Headphones""]",1313.84,"{""promo"": ""11%""}",29654,1,Africa +2023-12-30,86657,3454,"[""Charger"", ""Tablet""]",4684.29,{},241205,0,Europe +2023-10-27,86658,5661,"[""Tablet""]",1014.27,{},10415,1,Asia +2023-10-15,86659,7351,"[""Charger""]",4869.52,"{"""": ""30%""}",23018,1,Africa +2023-01-05,86660,7372,"[""Charger"", ""Wireless Mouse""]",1086.9,"{""promo"": ""11%""}",98034,1,Europe +2023-07-13,86661,7763,"[""Charger"", ""Monitor""]",2755.98,{},117524,1,Asia +2023-06-12,86662,4127,"[""Phone"", ""Monitor""]",51.91,{},240802,1,North America +2024-11-28,86663,1833,"[""Keyboard"", ""Charger"", ""Phone""]",3008.55,"{"""": ""9%""}",28807,1,Africa +2023-06-17,86664,6753,"[""Keyboard"", ""Phone""]",2951.29,"{""promo"": ""22%""}",54843,1,Africa +2023-05-03,86665,782,"[""Charger"", ""Keyboard""]",4365.93,"{""promo"": ""13%""}",108922,1,Africa +2024-02-17,86666,2471,"[""Charger"", ""Monitor""]",3781.44,"{"""": ""15%""}",254306,0,Asia +2024-11-18,86667,7715,"[""Charger""]",4402.94,"{"""": ""23%""}",107942,1,Africa +2023-03-14,86668,590,"[""Monitor"", ""Keyboard""]",479.33,{},185386,1,Asia +2023-06-10,86669,2777,"[""Monitor""]",951.57,"{""loyalty"": ""23%""}",202604,1,South America +2023-11-17,86670,4601,"[""Keyboard"", ""Monitor"", ""Charger""]",2320.6,{},220738,1,South America +2023-11-11,86671,966,"[""Headphones"", ""Monitor""]",2957.63,{},278509,1,South America +2023-09-06,86672,7512,"[""Headphones"", ""Laptop"", ""Phone""]",2527.85,"{"""": ""11%""}",25240,1,Asia +2023-04-26,86673,897,"[""Phone""]",2958.04,"{""seasonal"": ""19%""}",219892,1,Asia +2023-12-05,86674,5856,"[""Keyboard"", ""Monitor""]",4340.18,"{"""": ""20%""}",141351,1,South America +2023-02-08,86675,835,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4674.98,{},265574,0,Europe +2024-08-26,86676,5454,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4269.68,{},111955,0,South America +2024-02-21,86677,3042,"[""Phone"", ""Headphones""]",2450.31,{},145131,0,Asia +2024-07-06,86678,8822,"[""Phone"", ""Monitor"", ""Tablet""]",4414.54,"{""seasonal"": ""10%""}",190693,1,North America +2023-08-25,86679,6447,"[""Charger"", ""Phone"", ""Tablet""]",238.94,"{""seasonal"": ""24%""}",24319,1,Africa +2023-10-09,86680,6903,"[""Phone"", ""Charger"", ""Monitor""]",2909.62,"{""promo"": ""6%""}",198369,0,Europe +2023-01-09,86681,8929,"[""Laptop"", ""Monitor""]",4503.66,"{""loyalty"": ""9%""}",201250,1,South America +2024-07-13,86682,3725,"[""Headphones""]",3747.84,"{""loyalty"": ""16%""}",153536,0,Europe +2024-05-07,86683,4032,"[""Keyboard""]",4630.8,{},21706,0,North America +2023-02-12,86684,7185,"[""Headphones""]",607.78,{},268838,0,Africa +2024-08-30,86685,5315,"[""Phone"", ""Headphones""]",134.93,{},108316,1,Asia +2024-04-19,86686,3486,"[""Monitor"", ""Headphones"", ""Phone""]",3221.63,{},68097,0,Asia +2024-11-12,86687,5756,"[""Tablet""]",3505.09,"{"""": ""5%""}",248370,1,North America +2023-03-23,86688,3492,"[""Wireless Mouse""]",1964.85,{},144961,0,Europe +2024-12-07,86689,6259,"[""Monitor""]",2811.58,{},101839,1,Africa +2024-12-12,86690,8466,"[""Tablet"", ""Phone""]",3363.38,"{""loyalty"": ""5%""}",115483,1,Europe +2024-12-12,86691,3783,"[""Headphones""]",2245.97,"{""promo"": ""8%""}",161028,0,North America +2024-06-19,86692,5210,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3286.02,"{""promo"": ""6%""}",12730,1,Europe +2023-10-24,86693,9768,"[""Charger"", ""Laptop"", ""Headphones""]",2599.63,"{""promo"": ""8%""}",232232,0,Europe +2023-10-03,86694,2000,"[""Tablet"", ""Keyboard""]",412.13,{},102376,0,Africa +2024-07-08,86695,3613,"[""Wireless Mouse"", ""Headphones""]",1988.12,{},223690,0,Asia +2023-09-22,86696,5647,"[""Keyboard"", ""Phone""]",1126.67,"{""loyalty"": ""5%""}",211145,1,South America +2024-09-07,86697,9116,"[""Headphones"", ""Keyboard"", ""Phone""]",1786.1,"{""promo"": ""19%""}",94544,1,North America +2024-08-01,86698,4364,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4646.1,"{""seasonal"": ""14%""}",41122,1,Africa +2023-07-08,86699,7602,"[""Tablet""]",4470.57,{},135888,1,South America +2023-12-04,86700,3474,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3661.38,{},173973,1,South America +2023-06-07,86701,8411,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4744.79,{},137414,0,Europe +2024-11-07,86702,6247,"[""Phone"", ""Keyboard""]",912.55,{},237543,0,Asia +2024-07-26,86703,4496,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2239.32,{},219877,0,North America +2024-02-27,86704,4296,"[""Charger"", ""Tablet""]",2198.42,"{""loyalty"": ""9%""}",295103,0,Europe +2023-01-31,86705,4234,"[""Wireless Mouse"", ""Laptop""]",113.81,"{""loyalty"": ""8%""}",35600,1,Asia +2024-09-12,86706,7998,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1205.07,"{"""": ""15%""}",211733,0,South America +2024-07-25,86707,9959,"[""Keyboard"", ""Headphones"", ""Laptop""]",4911.74,"{"""": ""6%""}",103438,0,North America +2024-10-26,86708,6119,"[""Monitor""]",3614.82,"{""loyalty"": ""30%""}",105451,0,North America +2023-04-21,86709,3243,"[""Wireless Mouse""]",2812.15,"{""loyalty"": ""7%""}",265620,1,Africa +2024-08-02,86710,3624,"[""Phone"", ""Headphones""]",2103.63,"{""promo"": ""16%""}",32028,0,North America +2023-08-23,86711,4901,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4998.65,"{""loyalty"": ""11%""}",222122,0,Europe +2024-01-21,86712,6236,"[""Headphones"", ""Tablet"", ""Laptop""]",4501.33,{},52247,1,North America +2023-12-24,86713,2905,"[""Charger"", ""Wireless Mouse""]",541.16,{},256593,1,North America +2024-05-24,86714,3496,"[""Monitor"", ""Headphones"", ""Phone""]",3398.71,"{""promo"": ""22%""}",65732,1,Asia +2024-06-28,86715,1235,"[""Wireless Mouse""]",4320.54,"{""promo"": ""6%""}",193475,0,Europe +2023-04-28,86716,6762,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4747.7,"{"""": ""11%""}",167265,1,South America +2024-10-07,86717,3450,"[""Laptop"", ""Headphones"", ""Charger""]",4171.08,{},213504,1,South America +2024-01-26,86718,8349,"[""Monitor"", ""Charger"", ""Keyboard""]",1144.79,{},145291,0,North America +2024-02-04,86719,4502,"[""Charger""]",1704.28,"{""promo"": ""23%""}",90954,1,Africa +2023-11-13,86720,6926,"[""Tablet""]",2020.7,"{""seasonal"": ""9%""}",208339,1,Europe +2024-10-10,86721,3969,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1363.49,{},25306,0,Asia +2024-09-06,86722,4119,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3607.25,{},261193,0,North America +2024-09-06,86723,9709,"[""Monitor"", ""Tablet"", ""Laptop""]",3047.89,"{""loyalty"": ""19%""}",4992,0,Europe +2024-07-29,86724,5039,"[""Laptop"", ""Keyboard""]",1375.29,"{""loyalty"": ""5%""}",209181,0,South America +2024-11-03,86725,5337,"[""Keyboard"", ""Monitor"", ""Headphones""]",4725.29,{},37783,1,Africa +2023-10-22,86726,9617,"[""Wireless Mouse"", ""Charger""]",1183.84,{},165492,0,Europe +2023-12-11,86727,2035,"[""Charger""]",2986.16,"{""seasonal"": ""12%""}",295308,0,Europe +2023-06-02,86728,8262,"[""Monitor"", ""Laptop""]",646.21,"{""seasonal"": ""16%""}",100863,1,Europe +2024-10-12,86729,7838,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4265.44,{},278624,0,North America +2023-03-20,86730,1424,"[""Phone"", ""Laptop"", ""Tablet""]",3848.19,"{""promo"": ""17%""}",243448,1,South America +2023-09-16,86731,1350,"[""Laptop""]",2974.99,{},225683,1,Africa +2024-02-15,86732,8475,"[""Monitor""]",1694.39,"{""seasonal"": ""28%""}",24568,1,North America +2024-03-14,86733,989,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2943.37,"{""loyalty"": ""10%""}",133666,1,North America +2024-05-20,86734,7800,"[""Tablet""]",74.04,{},152288,1,Asia +2023-05-31,86735,7760,"[""Tablet"", ""Monitor""]",657.44,"{""promo"": ""24%""}",58831,0,South America +2024-07-22,86736,2370,"[""Charger"", ""Tablet"", ""Laptop""]",472.31,"{"""": ""18%""}",191019,1,South America +2023-08-05,86737,5783,"[""Phone"", ""Keyboard"", ""Charger""]",3652.54,"{"""": ""25%""}",111423,1,Asia +2024-01-19,86738,173,"[""Tablet"", ""Keyboard""]",347.89,"{""promo"": ""7%""}",297914,0,South America +2024-06-07,86739,6784,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2159.71,{},89666,0,South America +2023-09-08,86740,301,"[""Tablet""]",1159.23,"{""seasonal"": ""8%""}",192901,0,North America +2024-10-21,86741,1022,"[""Tablet""]",1458.26,{},237036,1,Africa +2023-10-09,86742,7058,"[""Wireless Mouse"", ""Phone""]",1170.06,"{""promo"": ""11%""}",177061,1,Africa +2023-01-25,86743,7786,"[""Charger"", ""Wireless Mouse""]",1118.54,"{""seasonal"": ""17%""}",205748,0,South America +2024-02-23,86744,4891,"[""Tablet""]",1475.63,{},5103,1,North America +2023-06-30,86745,2857,"[""Wireless Mouse""]",1190.57,{},61012,0,Asia +2024-09-12,86746,5346,"[""Phone"", ""Keyboard""]",1652.94,"{"""": ""20%""}",77832,1,Europe +2024-04-10,86747,5366,"[""Charger""]",4980.15,"{""seasonal"": ""10%""}",297909,1,Asia +2024-12-28,86748,5621,"[""Keyboard""]",1072.58,"{""promo"": ""19%""}",87366,1,Asia +2023-11-29,86749,2303,"[""Charger"", ""Laptop""]",3133.25,"{""promo"": ""19%""}",225519,0,Asia +2024-07-11,86750,9752,"[""Phone"", ""Charger""]",1722.2,"{""seasonal"": ""8%""}",55311,0,South America +2024-08-05,86751,1335,"[""Phone""]",281.96,"{""loyalty"": ""14%""}",140924,0,Europe +2023-06-05,86752,6216,"[""Tablet"", ""Keyboard"", ""Monitor""]",3684.13,"{"""": ""20%""}",185490,1,South America +2024-05-26,86753,5753,"[""Charger"", ""Phone""]",3115.9,{},136333,1,Europe +2024-01-06,86754,2261,"[""Headphones"", ""Phone""]",511.16,{},98078,1,South America +2024-04-23,86755,1053,"[""Keyboard"", ""Phone"", ""Monitor""]",224.78,{},21853,1,Africa +2023-04-03,86756,3605,"[""Phone""]",4761.38,{},280759,0,Africa +2023-05-14,86757,1531,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3862.53,"{""seasonal"": ""21%""}",265228,1,Africa +2024-10-29,86758,1586,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",874.83,{},36062,0,Africa +2024-10-20,86759,683,"[""Headphones"", ""Tablet"", ""Keyboard""]",4915.28,"{""promo"": ""9%""}",27506,0,Africa +2024-06-05,86760,164,"[""Phone""]",918.85,{},53620,0,North America +2023-08-10,86761,1029,"[""Keyboard"", ""Headphones""]",2390.01,{},189776,1,Africa +2024-02-02,86762,2723,"[""Wireless Mouse"", ""Phone""]",1930.29,"{""seasonal"": ""23%""}",236585,1,Asia +2024-10-25,86763,6446,"[""Laptop"", ""Wireless Mouse""]",1840.71,{},50947,1,Europe +2023-01-30,86764,9239,"[""Laptop"", ""Charger""]",1190.47,"{""seasonal"": ""16%""}",182207,1,Africa +2024-09-05,86765,5915,"[""Laptop""]",4417.04,{},106618,1,Europe +2024-09-05,86766,7532,"[""Laptop"", ""Headphones""]",2575.41,"{"""": ""26%""}",37549,1,Europe +2024-09-27,86767,9752,"[""Keyboard"", ""Phone"", ""Laptop""]",4877.4,"{"""": ""5%""}",137372,1,Europe +2024-05-05,86768,4698,"[""Wireless Mouse""]",4726.03,"{""seasonal"": ""16%""}",175496,0,Europe +2024-12-18,86769,8245,"[""Keyboard""]",3437.9,{},190468,0,Europe +2023-11-17,86770,9064,"[""Headphones"", ""Phone""]",1507.93,{},161617,1,Africa +2023-09-26,86771,4421,"[""Laptop""]",992.06,{},196595,0,Asia +2023-06-24,86772,4773,"[""Tablet"", ""Headphones""]",3096.28,"{""loyalty"": ""20%""}",133110,0,North America +2023-06-26,86773,4849,"[""Monitor"", ""Wireless Mouse""]",2914.35,"{""promo"": ""24%""}",29738,1,South America +2024-07-22,86774,4248,"[""Laptop"", ""Keyboard"", ""Headphones""]",4199.77,{},140707,1,Asia +2024-09-11,86775,3514,"[""Wireless Mouse""]",730.56,{},87202,0,Africa +2024-08-14,86776,4634,"[""Keyboard"", ""Monitor"", ""Headphones""]",2531.3,{},37113,0,South America +2024-07-03,86777,4626,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4761.76,{},258182,1,Africa +2024-08-08,86778,6803,"[""Phone"", ""Keyboard""]",987.2,"{""promo"": ""18%""}",180506,0,North America +2024-11-20,86779,2732,"[""Laptop""]",642.74,"{""promo"": ""25%""}",4179,1,Asia +2024-10-21,86780,3736,"[""Headphones""]",3934.68,"{""seasonal"": ""18%""}",201391,1,North America +2024-11-03,86781,1474,"[""Laptop"", ""Phone"", ""Tablet""]",3160.26,{},125123,1,Africa +2024-05-12,86782,4150,"[""Keyboard"", ""Monitor""]",3704.39,"{""loyalty"": ""10%""}",125692,1,North America +2024-06-04,86783,606,"[""Charger""]",116.43,"{""loyalty"": ""27%""}",178113,1,Africa +2023-04-04,86784,4164,"[""Wireless Mouse"", ""Tablet""]",2818.74,"{""seasonal"": ""27%""}",4545,1,Asia +2023-11-12,86785,9745,"[""Wireless Mouse"", ""Tablet""]",3959.51,"{"""": ""22%""}",256211,1,North America +2024-09-29,86786,5571,"[""Keyboard"", ""Monitor""]",4555.02,{},76941,1,South America +2024-05-18,86787,1081,"[""Charger"", ""Keyboard""]",3658.94,"{""seasonal"": ""7%""}",46987,1,Asia +2024-05-13,86788,3807,"[""Charger"", ""Monitor"", ""Headphones""]",4440.88,"{"""": ""11%""}",170742,1,North America +2024-02-08,86789,5006,"[""Keyboard""]",2514.1,"{"""": ""27%""}",79136,0,Africa +2023-04-09,86790,3376,"[""Charger"", ""Monitor"", ""Keyboard""]",1705.97,"{""seasonal"": ""21%""}",298634,0,Asia +2023-01-05,86791,4635,"[""Tablet"", ""Headphones""]",3519.7,"{"""": ""23%""}",213398,1,South America +2024-08-22,86792,4295,"[""Monitor"", ""Wireless Mouse""]",4352.67,{},2842,1,Africa +2024-01-20,86793,5722,"[""Phone"", ""Laptop"", ""Monitor""]",4284.06,"{"""": ""29%""}",170406,0,North America +2023-06-20,86794,8606,"[""Laptop"", ""Phone"", ""Charger""]",3146.04,"{"""": ""15%""}",101189,0,Europe +2023-04-05,86795,3169,"[""Laptop""]",3373.12,{},171983,0,Europe +2023-06-30,86796,752,"[""Phone""]",2161.32,{},204331,1,Africa +2023-05-24,86797,6076,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3599.84,"{"""": ""18%""}",191987,1,Asia +2024-10-08,86798,998,"[""Phone"", ""Tablet""]",2664.63,"{""seasonal"": ""23%""}",224978,1,North America +2023-01-13,86799,1393,"[""Charger"", ""Headphones"", ""Phone""]",1921.22,"{""loyalty"": ""19%""}",71355,1,South America +2024-11-11,86800,913,"[""Charger"", ""Tablet"", ""Phone""]",3811.0,"{""promo"": ""28%""}",103334,0,North America +2023-02-12,86801,1684,"[""Wireless Mouse""]",2581.07,"{""loyalty"": ""28%""}",49501,1,Africa +2024-02-14,86802,1281,"[""Charger"", ""Monitor"", ""Tablet""]",4141.99,{},86646,1,Africa +2023-05-26,86803,4083,"[""Monitor"", ""Keyboard""]",3130.12,{},285731,0,Europe +2023-09-08,86804,9930,"[""Charger""]",3267.88,"{""loyalty"": ""17%""}",60327,1,North America +2024-10-31,86805,2029,"[""Keyboard"", ""Laptop""]",394.91,"{""seasonal"": ""17%""}",212200,0,Asia +2024-12-24,86806,3399,"[""Tablet"", ""Charger""]",4977.22,{},266341,0,South America +2024-04-02,86807,270,"[""Headphones"", ""Laptop""]",3593.88,"{""promo"": ""8%""}",171173,0,Africa +2023-04-09,86808,4493,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4945.84,"{""promo"": ""13%""}",86480,1,Asia +2023-04-15,86809,7179,"[""Keyboard""]",3064.03,{},124668,1,Asia +2024-11-16,86810,1622,"[""Tablet""]",3562.91,{},217683,1,Europe +2024-05-17,86811,9529,"[""Keyboard"", ""Headphones"", ""Charger""]",3522.43,"{""loyalty"": ""14%""}",193305,1,Asia +2024-01-25,86812,6057,"[""Tablet"", ""Wireless Mouse""]",4299.09,"{""promo"": ""16%""}",269070,0,Europe +2023-11-26,86813,2083,"[""Headphones""]",1264.62,"{"""": ""20%""}",280287,0,Africa +2023-07-31,86814,5477,"[""Charger""]",4645.04,"{""seasonal"": ""8%""}",14874,0,North America +2024-07-05,86815,3254,"[""Monitor"", ""Headphones""]",4242.31,"{""loyalty"": ""8%""}",284029,0,South America +2024-04-11,86816,3651,"[""Charger""]",598.62,{},152622,0,North America +2023-03-23,86817,9725,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1442.73,{},6388,0,North America +2024-11-16,86818,8219,"[""Monitor""]",974.47,"{"""": ""18%""}",90523,0,Africa +2024-09-24,86819,381,"[""Headphones"", ""Charger""]",3746.83,{},71903,0,Asia +2023-10-10,86820,2487,"[""Monitor""]",1088.4,"{"""": ""23%""}",110260,1,South America +2023-09-24,86821,2861,"[""Laptop""]",864.24,"{""promo"": ""26%""}",241185,0,South America +2024-09-19,86822,2618,"[""Laptop"", ""Wireless Mouse""]",4419.68,{},12156,1,North America +2023-09-23,86823,4707,"[""Monitor"", ""Headphones""]",4893.77,{},69419,1,South America +2023-01-19,86824,2439,"[""Tablet"", ""Charger"", ""Keyboard""]",356.69,"{"""": ""7%""}",9182,1,South America +2023-01-08,86825,1730,"[""Tablet""]",1911.53,"{""loyalty"": ""19%""}",260724,0,South America +2024-08-02,86826,1101,"[""Monitor"", ""Charger"", ""Phone""]",1959.16,{},112928,1,North America +2024-11-09,86827,4667,"[""Charger"", ""Headphones""]",2491.59,{},171215,1,South America +2023-12-07,86828,3113,"[""Wireless Mouse"", ""Phone""]",4347.81,"{""loyalty"": ""25%""}",150302,1,North America +2024-01-23,86829,6661,"[""Phone"", ""Tablet"", ""Keyboard""]",4481.64,"{"""": ""22%""}",141843,0,North America +2023-11-20,86830,9825,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1952.07,"{""loyalty"": ""30%""}",235744,0,Asia +2024-03-11,86831,5074,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1170.93,{},194866,1,Europe +2023-01-06,86832,5081,"[""Tablet"", ""Keyboard"", ""Laptop""]",597.27,{},137506,1,Asia +2024-02-10,86833,9414,"[""Charger""]",4699.54,"{"""": ""20%""}",28994,1,North America +2023-02-06,86834,5475,"[""Keyboard"", ""Charger""]",3278.42,"{"""": ""5%""}",49077,0,Europe +2023-10-29,86835,2618,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1289.07,{},36475,1,Europe +2023-01-19,86836,3681,"[""Charger""]",2796.52,"{""promo"": ""29%""}",172527,1,Asia +2024-07-21,86837,9084,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4854.61,"{"""": ""13%""}",21562,1,South America +2023-03-21,86838,3491,"[""Keyboard"", ""Monitor"", ""Charger""]",907.67,"{"""": ""10%""}",109686,0,Europe +2024-03-12,86839,49,"[""Monitor"", ""Headphones"", ""Keyboard""]",1077.61,{},106303,0,Asia +2023-06-27,86840,1036,"[""Laptop"", ""Keyboard""]",3806.09,"{"""": ""12%""}",292750,1,North America +2023-01-26,86841,3634,"[""Phone"", ""Wireless Mouse""]",1176.85,{},185148,0,South America +2023-07-16,86842,3525,"[""Laptop""]",4281.65,"{""seasonal"": ""12%""}",205305,0,Asia +2023-01-31,86843,2201,"[""Headphones""]",2690.61,"{""loyalty"": ""10%""}",272935,1,Africa +2024-03-02,86844,7024,"[""Phone"", ""Wireless Mouse""]",954.45,{},197485,0,South America +2023-05-18,86845,5225,"[""Phone"", ""Keyboard""]",334.88,{},14761,1,Europe +2024-12-01,86846,5484,"[""Headphones"", ""Laptop"", ""Monitor""]",4203.6,"{"""": ""17%""}",71486,0,North America +2023-05-21,86847,4231,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2106.41,"{""loyalty"": ""13%""}",173431,0,South America +2023-10-17,86848,8129,"[""Monitor""]",135.27,"{""loyalty"": ""24%""}",210448,1,Asia +2023-08-01,86849,7130,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3848.59,{},39368,1,South America +2024-06-25,86850,6471,"[""Tablet""]",3162.3,{},246797,0,Europe +2024-12-05,86851,7848,"[""Tablet"", ""Headphones"", ""Phone""]",4847.1,{},299017,1,Asia +2024-05-29,86852,1050,"[""Phone""]",3523.94,{},80511,1,Africa +2024-09-07,86853,5346,"[""Tablet"", ""Keyboard""]",1770.3,"{"""": ""7%""}",275815,0,Africa +2023-12-24,86854,9889,"[""Headphones""]",2891.17,{},297115,0,South America +2024-08-10,86855,9714,"[""Monitor"", ""Headphones""]",85.77,{},40721,1,Africa +2024-01-14,86856,3969,"[""Headphones""]",237.77,"{""promo"": ""25%""}",183710,1,Asia +2024-12-21,86857,5071,"[""Charger"", ""Keyboard""]",1292.98,{},23379,0,North America +2024-08-08,86858,168,"[""Laptop""]",2150.13,"{""seasonal"": ""13%""}",222904,1,Asia +2024-08-18,86859,6162,"[""Charger"", ""Tablet""]",2589.43,{},131127,0,South America +2023-10-21,86860,693,"[""Headphones"", ""Charger""]",777.32,{},160690,0,Asia +2023-03-14,86861,5961,"[""Charger"", ""Keyboard"", ""Laptop""]",4041.97,"{""loyalty"": ""20%""}",2217,1,Europe +2024-06-24,86862,8119,"[""Laptop""]",1563.57,{},131834,1,Africa +2024-05-27,86863,1735,"[""Headphones"", ""Charger""]",3433.19,{},190770,1,Europe +2023-07-06,86864,368,"[""Tablet"", ""Keyboard""]",1067.17,"{""seasonal"": ""25%""}",72880,1,North America +2024-09-10,86865,2594,"[""Keyboard"", ""Monitor""]",4481.15,{},100502,1,South America +2023-03-17,86866,9224,"[""Laptop""]",439.78,{},51782,0,Europe +2024-04-25,86867,5643,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",351.67,"{""seasonal"": ""7%""}",43392,0,Europe +2024-06-16,86868,5380,"[""Tablet"", ""Headphones""]",3861.77,"{""loyalty"": ""19%""}",286283,0,Europe +2024-08-12,86869,1483,"[""Keyboard""]",3031.98,"{"""": ""25%""}",141788,0,South America +2024-07-04,86870,3923,"[""Headphones"", ""Tablet"", ""Laptop""]",4486.24,"{""loyalty"": ""25%""}",149723,1,Asia +2023-08-02,86871,596,"[""Headphones"", ""Laptop""]",4846.89,"{""promo"": ""29%""}",215045,0,Europe +2023-10-06,86872,3935,"[""Tablet"", ""Laptop"", ""Monitor""]",1765.38,{},224515,1,North America +2023-12-09,86873,2394,"[""Phone"", ""Monitor""]",134.92,"{"""": ""14%""}",251845,0,North America +2023-06-03,86874,9974,"[""Tablet""]",4792.74,{},270880,0,North America +2024-07-13,86875,5050,"[""Wireless Mouse"", ""Headphones""]",3475.44,"{"""": ""7%""}",69203,0,Europe +2024-07-02,86876,754,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3467.88,{},120364,0,Africa +2023-09-26,86877,9886,"[""Tablet"", ""Headphones"", ""Keyboard""]",167.83,{},32998,1,North America +2024-12-03,86878,8098,"[""Monitor"", ""Phone""]",4030.67,{},232708,0,Europe +2024-06-27,86879,7804,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",1979.26,"{""promo"": ""26%""}",279507,1,Africa +2023-06-09,86880,3442,"[""Phone"", ""Tablet""]",4815.65,{},44652,1,South America +2024-01-06,86881,4036,"[""Wireless Mouse"", ""Headphones""]",1860.76,{},173769,1,Africa +2024-05-15,86882,553,"[""Monitor"", ""Headphones""]",661.67,{},74416,0,Europe +2023-11-23,86883,2867,"[""Keyboard""]",3480.34,{},205180,1,Asia +2024-10-26,86884,6641,"[""Wireless Mouse"", ""Keyboard""]",2211.64,"{""seasonal"": ""26%""}",118022,1,South America +2023-12-25,86885,8432,"[""Laptop"", ""Wireless Mouse""]",2948.22,{},104981,0,North America +2023-07-10,86886,9536,"[""Keyboard"", ""Charger"", ""Headphones""]",1156.4,"{"""": ""28%""}",20343,1,Europe +2024-05-18,86887,5727,"[""Tablet"", ""Laptop""]",2234.78,{},254366,0,South America +2023-09-29,86888,5597,"[""Laptop"", ""Charger"", ""Phone""]",284.24,"{""loyalty"": ""5%""}",52969,1,North America +2023-02-12,86889,9692,"[""Headphones""]",897.25,"{""promo"": ""30%""}",60097,0,Europe +2023-10-19,86890,7404,"[""Tablet""]",494.95,"{""loyalty"": ""18%""}",249627,0,Asia +2024-04-01,86891,5347,"[""Wireless Mouse""]",4200.37,"{""loyalty"": ""23%""}",141526,1,South America +2023-01-25,86892,2923,"[""Monitor""]",4485.43,"{""seasonal"": ""15%""}",212713,1,North America +2024-04-04,86893,8969,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3234.99,{},271413,0,Europe +2024-10-01,86894,3039,"[""Monitor"", ""Headphones""]",686.07,"{""promo"": ""24%""}",183035,1,Europe +2023-11-04,86895,1644,"[""Phone""]",3066.8,{},5746,1,South America +2024-04-03,86896,6392,"[""Laptop"", ""Keyboard""]",3953.93,{},283831,1,Asia +2024-01-12,86897,4211,"[""Keyboard""]",3070.1,"{""loyalty"": ""16%""}",224699,1,Europe +2023-03-22,86898,7932,"[""Headphones""]",3761.94,"{""promo"": ""11%""}",274824,1,Africa +2024-04-17,86899,1674,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1174.6,"{""promo"": ""27%""}",169499,1,Europe +2024-08-26,86900,2160,"[""Tablet""]",1779.54,"{""loyalty"": ""15%""}",8868,1,Europe +2023-03-19,86901,4812,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3003.9,{},40995,0,Europe +2023-09-10,86902,9742,"[""Wireless Mouse"", ""Monitor""]",2302.98,{},2441,1,Europe +2024-05-27,86903,2197,"[""Tablet"", ""Monitor""]",4037.09,{},59460,0,North America +2023-12-21,86904,3594,"[""Monitor"", ""Charger""]",1462.66,"{""loyalty"": ""24%""}",143770,1,North America +2024-01-15,86905,5330,"[""Monitor"", ""Phone"", ""Laptop""]",1934.65,"{"""": ""19%""}",151365,1,Europe +2024-05-05,86906,8179,"[""Charger""]",4828.06,"{"""": ""30%""}",74877,1,North America +2024-06-09,86907,6563,"[""Wireless Mouse"", ""Tablet""]",3406.26,{},187428,0,North America +2023-11-01,86908,3921,"[""Laptop"", ""Wireless Mouse""]",4576.95,"{""promo"": ""20%""}",8936,1,Asia +2024-10-26,86909,8825,"[""Laptop""]",3731.66,"{""seasonal"": ""9%""}",80474,0,North America +2024-09-07,86910,5960,"[""Headphones""]",1706.27,{},150184,1,Europe +2023-02-12,86911,5220,"[""Laptop"", ""Keyboard""]",912.78,"{""promo"": ""25%""}",126458,1,Africa +2024-09-13,86912,9543,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",702.41,"{""loyalty"": ""10%""}",63272,1,Europe +2023-01-11,86913,4640,"[""Tablet"", ""Monitor""]",1133.38,{},133780,0,Africa +2023-06-02,86914,1715,"[""Laptop""]",800.43,"{""promo"": ""29%""}",4829,1,South America +2023-09-13,86915,795,"[""Wireless Mouse"", ""Monitor""]",4343.33,"{""seasonal"": ""17%""}",45999,1,Europe +2023-12-21,86916,3996,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3199.19,{},206382,1,Europe +2024-07-18,86917,5103,"[""Monitor"", ""Tablet"", ""Phone""]",1731.5,{},99661,1,Europe +2023-08-16,86918,4342,"[""Charger"", ""Wireless Mouse""]",4436.31,"{""loyalty"": ""7%""}",57101,1,North America +2024-10-18,86919,9306,"[""Headphones""]",4016.99,{},234053,0,Asia +2023-01-10,86920,3682,"[""Phone"", ""Keyboard""]",1651.45,{},169771,0,Europe +2023-11-22,86921,122,"[""Charger"", ""Wireless Mouse""]",2803.03,{},193510,1,South America +2024-08-22,86922,301,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1345.78,{},123568,0,Asia +2023-03-22,86923,8831,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3281.29,{},253774,0,Africa +2024-05-01,86924,2353,"[""Headphones"", ""Charger"", ""Laptop""]",3198.45,{},180110,1,Africa +2023-08-25,86925,7680,"[""Headphones"", ""Laptop"", ""Phone""]",4545.8,{},59900,1,Europe +2023-06-11,86926,3166,"[""Headphones"", ""Phone"", ""Laptop""]",1918.46,"{"""": ""22%""}",85174,1,Asia +2023-02-02,86927,4791,"[""Headphones"", ""Wireless Mouse""]",1966.97,"{"""": ""20%""}",178699,0,South America +2023-09-12,86928,8729,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",774.97,{},293525,1,Asia +2024-07-27,86929,906,"[""Headphones"", ""Keyboard"", ""Monitor""]",4561.05,"{""promo"": ""25%""}",234688,0,North America +2023-05-29,86930,4804,"[""Charger"", ""Monitor""]",4991.56,"{""loyalty"": ""21%""}",58738,1,North America +2024-02-02,86931,4022,"[""Laptop""]",3779.53,{},116631,0,North America +2024-01-18,86932,714,"[""Monitor"", ""Charger"", ""Phone""]",4838.29,"{""promo"": ""29%""}",164493,1,Asia +2024-03-21,86933,692,"[""Monitor"", ""Phone"", ""Charger""]",1403.18,"{"""": ""11%""}",58508,0,South America +2023-02-20,86934,2103,"[""Phone""]",4881.49,{},155977,1,North America +2024-08-04,86935,3766,"[""Wireless Mouse""]",3448.2,{},116684,0,Asia +2024-04-29,86936,3890,"[""Phone""]",404.05,{},212990,0,Africa +2023-11-17,86937,3031,"[""Laptop""]",1211.01,"{""promo"": ""22%""}",256358,0,South America +2024-07-18,86938,1296,"[""Headphones"", ""Phone""]",1924.07,{},274272,0,South America +2023-08-31,86939,2077,"[""Headphones"", ""Tablet""]",2268.99,"{""promo"": ""13%""}",9281,1,North America +2024-03-21,86940,4632,"[""Phone"", ""Laptop"", ""Tablet""]",3142.43,"{""promo"": ""5%""}",95506,1,North America +2024-05-26,86941,9819,"[""Keyboard"", ""Tablet""]",4535.68,"{""loyalty"": ""23%""}",173349,1,Europe +2024-07-27,86942,4998,"[""Charger"", ""Keyboard"", ""Tablet""]",2670.44,{},231015,0,South America +2023-11-26,86943,9360,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",380.55,"{"""": ""27%""}",213525,0,North America +2024-03-28,86944,2081,"[""Laptop""]",4585.9,{},177352,1,Asia +2023-07-11,86945,1848,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1607.34,"{""promo"": ""25%""}",1111,1,North America +2024-03-19,86946,2894,"[""Laptop"", ""Keyboard"", ""Headphones""]",966.18,{},233252,0,Africa +2024-06-28,86947,5671,"[""Charger"", ""Monitor""]",2438.38,"{"""": ""18%""}",8232,0,South America +2023-12-23,86948,3089,"[""Charger"", ""Phone""]",647.99,"{""promo"": ""6%""}",292694,0,Africa +2023-10-21,86949,1420,"[""Headphones""]",2369.97,"{""loyalty"": ""5%""}",88334,0,North America +2024-10-16,86950,9658,"[""Tablet""]",1178.55,"{""loyalty"": ""27%""}",48042,1,North America +2024-01-06,86951,6395,"[""Tablet"", ""Laptop""]",3616.33,{},280780,1,North America +2024-02-04,86952,5196,"[""Phone"", ""Charger"", ""Monitor""]",1037.85,{},262135,1,Europe +2024-03-30,86953,6562,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3648.47,{},75622,0,South America +2023-01-10,86954,4116,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",598.21,{},98137,0,North America +2024-06-15,86955,7975,"[""Wireless Mouse""]",3795.72,{},64737,1,South America +2023-06-17,86956,5106,"[""Laptop"", ""Keyboard"", ""Tablet""]",3421.34,"{""seasonal"": ""23%""}",190058,0,Africa +2023-06-04,86957,2735,"[""Tablet"", ""Laptop"", ""Phone""]",3885.94,{},48831,0,Asia +2023-08-18,86958,5767,"[""Monitor"", ""Wireless Mouse""]",4230.62,"{""seasonal"": ""17%""}",233966,0,North America +2024-05-13,86959,3076,"[""Keyboard"", ""Monitor""]",2033.38,{},174145,0,Europe +2023-10-10,86960,7135,"[""Keyboard"", ""Phone"", ""Laptop""]",2861.42,"{""promo"": ""11%""}",245212,1,South America +2024-05-30,86961,5006,"[""Headphones""]",1072.22,"{"""": ""12%""}",228464,1,Asia +2024-01-03,86962,7821,"[""Phone""]",1605.91,{},107377,0,North America +2024-04-25,86963,4685,"[""Tablet"", ""Headphones""]",1085.0,"{""loyalty"": ""13%""}",21013,0,North America +2023-01-08,86964,9897,"[""Keyboard""]",1299.63,{},278444,1,South America +2023-02-11,86965,7616,"[""Wireless Mouse"", ""Keyboard""]",3855.86,{},39690,0,Africa +2023-06-09,86966,6335,"[""Charger"", ""Phone"", ""Headphones""]",4759.42,{},175702,0,South America +2024-05-13,86967,1469,"[""Charger"", ""Keyboard"", ""Monitor""]",2450.4,"{""loyalty"": ""6%""}",59828,0,Europe +2023-02-23,86968,5000,"[""Charger"", ""Keyboard"", ""Laptop""]",4925.86,{},289724,0,Africa +2024-04-14,86969,1254,"[""Tablet""]",1145.97,"{"""": ""15%""}",218648,0,Asia +2024-04-12,86970,2954,"[""Laptop"", ""Phone""]",2994.01,{},167604,0,Africa +2023-02-22,86971,9869,"[""Phone""]",3917.26,{},239894,0,Asia +2024-06-25,86972,320,"[""Tablet"", ""Headphones""]",1812.19,{},194543,1,Africa +2023-04-13,86973,8915,"[""Keyboard""]",1408.0,"{""seasonal"": ""30%""}",218113,1,North America +2023-11-10,86974,5107,"[""Laptop"", ""Headphones"", ""Phone""]",2636.03,{},176633,0,Europe +2024-06-16,86975,3324,"[""Phone"", ""Monitor""]",487.07,"{"""": ""25%""}",291203,0,South America +2023-08-24,86976,9025,"[""Keyboard"", ""Tablet""]",2639.51,{},207404,0,Europe +2023-03-24,86977,7135,"[""Wireless Mouse"", ""Phone""]",3715.14,"{""loyalty"": ""30%""}",289195,1,Asia +2024-06-18,86978,2719,"[""Laptop""]",1668.79,"{""seasonal"": ""11%""}",179860,1,South America +2023-07-27,86979,829,"[""Phone"", ""Charger"", ""Laptop""]",2275.54,{},110704,0,North America +2023-03-21,86980,7352,"[""Phone""]",4356.9,{},81111,1,Africa +2024-10-30,86981,8984,"[""Phone"", ""Tablet"", ""Keyboard""]",4224.83,{},92375,1,Asia +2024-05-07,86982,8105,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2619.88,"{""promo"": ""27%""}",124560,0,Asia +2024-02-14,86983,4426,"[""Tablet""]",454.73,{},247540,1,South America +2023-05-08,86984,602,"[""Keyboard""]",1057.49,{},235706,0,South America +2024-05-14,86985,9100,"[""Phone""]",1644.34,"{""loyalty"": ""5%""}",146484,0,South America +2023-10-24,86986,5205,"[""Phone""]",4541.08,"{""loyalty"": ""23%""}",161605,0,Africa +2023-08-11,86987,6871,"[""Wireless Mouse""]",4940.92,"{""loyalty"": ""25%""}",112965,1,Europe +2023-01-27,86988,4441,"[""Charger"", ""Keyboard""]",2862.13,"{""promo"": ""18%""}",106503,0,Africa +2024-09-13,86989,9735,"[""Phone"", ""Laptop"", ""Tablet""]",4143.22,{},52877,0,North America +2023-01-08,86990,8313,"[""Phone"", ""Monitor""]",1528.94,{},280997,0,Asia +2023-03-28,86991,8863,"[""Wireless Mouse"", ""Tablet""]",3892.29,"{""promo"": ""16%""}",98897,0,North America +2023-08-09,86992,1635,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4272.56,"{"""": ""16%""}",80730,1,Africa +2023-02-12,86993,443,"[""Wireless Mouse""]",4863.43,{},264053,0,Asia +2024-07-21,86994,7863,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3721.61,"{""loyalty"": ""27%""}",273173,1,Europe +2023-06-04,86995,9060,"[""Keyboard"", ""Laptop"", ""Phone""]",4278.25,{},152965,0,South America +2023-05-07,86996,8385,"[""Tablet"", ""Laptop""]",1432.33,{},88549,0,South America +2024-06-08,86997,1622,"[""Charger""]",4824.87,{},65914,1,North America +2023-11-20,86998,2801,"[""Tablet""]",3800.03,"{""promo"": ""28%""}",253152,0,North America +2024-09-12,86999,2769,"[""Tablet"", ""Keyboard""]",3939.07,"{"""": ""26%""}",165666,0,Europe +2024-06-06,87000,7604,"[""Phone"", ""Keyboard""]",3281.79,{},159463,1,Asia +2024-06-20,87001,6039,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3594.86,{},135289,0,Africa +2024-11-28,87002,8985,"[""Tablet"", ""Monitor""]",3402.52,"{""loyalty"": ""14%""}",139946,0,Africa +2024-05-11,87003,7441,"[""Monitor"", ""Laptop""]",4207.82,"{""loyalty"": ""25%""}",258470,0,North America +2023-06-11,87004,8860,"[""Headphones"", ""Monitor"", ""Phone""]",4979.62,"{""promo"": ""12%""}",253175,0,Asia +2023-06-17,87005,6958,"[""Wireless Mouse""]",948.61,{},75963,1,North America +2024-09-15,87006,998,"[""Monitor""]",4161.79,{},208997,0,South America +2023-02-19,87007,2971,"[""Charger""]",297.13,"{""promo"": ""13%""}",47617,1,Europe +2024-04-13,87008,3769,"[""Phone"", ""Keyboard""]",1458.33,"{""seasonal"": ""19%""}",247492,0,Africa +2023-04-11,87009,7233,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1449.06,{},263313,0,South America +2023-10-10,87010,7740,"[""Monitor"", ""Wireless Mouse""]",2421.75,"{""seasonal"": ""6%""}",78444,1,Europe +2023-09-02,87011,9456,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4259.07,{},120458,1,Europe +2023-08-05,87012,339,"[""Keyboard"", ""Tablet""]",2601.71,"{"""": ""6%""}",29761,1,Europe +2023-03-19,87013,6071,"[""Monitor"", ""Headphones"", ""Laptop""]",3887.57,{},276997,1,Africa +2024-10-15,87014,7900,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3860.51,"{"""": ""10%""}",95719,1,South America +2024-02-28,87015,9447,"[""Monitor""]",3383.37,{},97402,0,Africa +2024-12-22,87016,1225,"[""Charger""]",2805.84,{},80990,0,North America +2024-06-22,87017,8495,"[""Charger"", ""Tablet"", ""Headphones""]",4856.9,"{""loyalty"": ""12%""}",29450,0,Asia +2024-12-07,87018,9575,"[""Phone"", ""Headphones"", ""Charger""]",626.25,"{""promo"": ""6%""}",207771,0,Africa +2024-10-09,87019,4410,"[""Headphones"", ""Charger""]",2025.12,{},155471,1,Asia +2023-12-09,87020,2939,"[""Phone""]",3673.11,{},195086,1,South America +2024-09-21,87021,1527,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3657.44,{},142185,1,North America +2023-01-18,87022,2702,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3407.41,"{"""": ""25%""}",209913,1,Africa +2023-07-09,87023,7788,"[""Wireless Mouse""]",427.21,"{""promo"": ""14%""}",27051,0,North America +2024-04-29,87024,9370,"[""Monitor"", ""Headphones""]",2206.5,"{""promo"": ""7%""}",218273,1,Asia +2024-06-26,87025,3850,"[""Charger"", ""Keyboard"", ""Phone""]",1650.86,{},8369,0,Asia +2023-02-02,87026,3831,"[""Phone""]",4733.71,"{"""": ""14%""}",169615,1,Asia +2023-05-01,87027,7824,"[""Tablet"", ""Monitor""]",2067.21,{},186650,0,Asia +2024-12-01,87028,835,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",963.92,{},18655,1,Africa +2023-07-21,87029,6072,"[""Charger""]",606.83,"{""promo"": ""12%""}",196766,0,Europe +2024-09-15,87030,6559,"[""Monitor""]",392.74,"{"""": ""29%""}",127190,0,Europe +2024-04-27,87031,9066,"[""Phone"", ""Keyboard""]",4972.03,"{""promo"": ""9%""}",263744,1,Asia +2024-12-20,87032,7009,"[""Charger""]",78.03,"{""loyalty"": ""17%""}",72944,1,Asia +2023-06-27,87033,4569,"[""Keyboard""]",4193.34,{},152736,0,Europe +2024-06-17,87034,499,"[""Keyboard""]",1639.79,{},101346,0,Europe +2024-10-16,87035,4822,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1829.71,{},258611,1,Asia +2023-03-19,87036,3885,"[""Wireless Mouse""]",414.38,"{""loyalty"": ""15%""}",153579,1,North America +2023-03-07,87037,5859,"[""Laptop"", ""Headphones""]",4064.99,{},259256,0,Asia +2023-09-09,87038,1212,"[""Charger""]",3321.53,{},273042,0,North America +2023-06-02,87039,6971,"[""Phone""]",4919.99,{},48408,1,Europe +2023-12-05,87040,541,"[""Charger""]",873.62,"{""promo"": ""17%""}",39894,0,North America +2024-06-12,87041,2357,"[""Keyboard"", ""Phone"", ""Monitor""]",414.65,{},167110,0,Europe +2023-01-26,87042,9571,"[""Tablet""]",4983.51,"{""promo"": ""28%""}",85719,1,Africa +2023-04-12,87043,2259,"[""Tablet"", ""Monitor"", ""Laptop""]",2696.05,{},128045,1,Europe +2024-10-25,87044,1035,"[""Tablet""]",2405.4,"{""seasonal"": ""5%""}",91716,1,North America +2024-06-04,87045,285,"[""Headphones"", ""Tablet"", ""Charger""]",3868.97,"{""seasonal"": ""10%""}",172045,1,Asia +2024-11-22,87046,877,"[""Tablet"", ""Keyboard""]",2523.76,{},179640,1,Europe +2023-10-27,87047,865,"[""Wireless Mouse""]",1590.12,{},137702,0,South America +2024-01-04,87048,1117,"[""Wireless Mouse"", ""Monitor""]",2338.1,{},210888,1,North America +2024-07-12,87049,6892,"[""Tablet"", ""Monitor""]",4596.39,"{""promo"": ""29%""}",18899,1,North America +2023-06-23,87050,9385,"[""Headphones"", ""Monitor""]",4864.54,{},245725,1,Africa +2023-12-25,87051,6934,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",780.97,{},133556,0,South America +2024-01-16,87052,8350,"[""Phone""]",2784.54,{},276754,0,Europe +2023-12-20,87053,4580,"[""Keyboard"", ""Charger"", ""Monitor""]",2270.87,{},185140,1,North America +2024-03-21,87054,6072,"[""Charger"", ""Laptop""]",67.51,"{""promo"": ""29%""}",219426,1,Asia +2023-12-06,87055,4515,"[""Laptop""]",396.35,"{""promo"": ""6%""}",156256,1,South America +2023-02-03,87056,4758,"[""Tablet"", ""Phone""]",3862.72,{},81039,0,South America +2023-10-25,87057,5682,"[""Laptop"", ""Tablet""]",3957.9,{},79613,1,North America +2023-06-04,87058,1296,"[""Monitor"", ""Keyboard"", ""Charger""]",3721.47,"{""loyalty"": ""30%""}",103318,1,Europe +2024-06-13,87059,8624,"[""Headphones"", ""Wireless Mouse""]",4995.28,{},236380,0,Asia +2024-12-23,87060,5007,"[""Phone"", ""Tablet""]",2369.84,"{""promo"": ""16%""}",143101,1,North America +2023-01-08,87061,7603,"[""Keyboard"", ""Monitor""]",3755.59,{},123871,0,South America +2024-06-05,87062,7967,"[""Monitor"", ""Keyboard"", ""Charger""]",2386.1,{},208348,0,North America +2023-05-24,87063,6810,"[""Charger"", ""Headphones""]",524.28,{},20107,1,North America +2024-03-31,87064,496,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",894.71,{},285186,0,North America +2023-11-21,87065,9093,"[""Monitor""]",2076.75,{},163450,0,South America +2024-05-02,87066,2010,"[""Keyboard"", ""Headphones"", ""Tablet""]",2158.34,{},153190,1,North America +2024-10-28,87067,8560,"[""Keyboard"", ""Headphones"", ""Tablet""]",4670.09,"{""loyalty"": ""26%""}",215107,0,Asia +2023-10-09,87068,9933,"[""Laptop"", ""Monitor"", ""Charger""]",2160.37,"{""seasonal"": ""11%""}",33193,1,Africa +2024-03-31,87069,9754,"[""Phone""]",1694.86,"{"""": ""22%""}",113542,1,North America +2024-05-07,87070,7515,"[""Phone"", ""Charger"", ""Tablet""]",4084.75,{},270724,0,North America +2024-04-17,87071,6123,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2965.6,"{""seasonal"": ""12%""}",165569,0,South America +2024-04-24,87072,9043,"[""Keyboard""]",189.07,"{""loyalty"": ""14%""}",63947,0,North America +2024-05-24,87073,8141,"[""Phone"", ""Tablet""]",2826.14,"{""seasonal"": ""11%""}",250048,1,Asia +2024-11-12,87074,4458,"[""Headphones"", ""Tablet"", ""Laptop""]",2895.01,{},94723,1,Europe +2024-08-23,87075,7075,"[""Headphones""]",887.49,"{""loyalty"": ""29%""}",228511,1,Asia +2024-02-09,87076,4280,"[""Headphones"", ""Phone""]",1212.62,{},90601,0,South America +2024-11-17,87077,975,"[""Monitor""]",2456.54,"{"""": ""29%""}",78744,1,Europe +2024-10-10,87078,7152,"[""Phone"", ""Laptop"", ""Tablet""]",1292.4,"{"""": ""19%""}",92528,1,South America +2024-06-20,87079,759,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2823.08,{},25494,1,Europe +2023-11-17,87080,6692,"[""Tablet"", ""Charger""]",1458.42,"{""loyalty"": ""8%""}",48571,0,Africa +2023-02-08,87081,981,"[""Monitor""]",2929.59,"{"""": ""19%""}",38389,1,Asia +2024-11-22,87082,5574,"[""Headphones""]",4784.18,{},140387,1,Asia +2023-08-19,87083,2229,"[""Charger""]",3370.0,"{""loyalty"": ""18%""}",107578,0,South America +2024-05-09,87084,6206,"[""Tablet"", ""Laptop"", ""Charger""]",3644.66,"{""promo"": ""21%""}",196050,1,South America +2024-09-30,87085,909,"[""Keyboard"", ""Monitor""]",3193.62,"{""seasonal"": ""24%""}",194191,1,South America +2024-08-02,87086,4541,"[""Wireless Mouse"", ""Phone""]",3788.48,"{""loyalty"": ""17%""}",18155,0,Europe +2023-04-21,87087,5330,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1876.13,"{""seasonal"": ""11%""}",193721,1,South America +2023-01-02,87088,9703,"[""Phone""]",523.91,{},295510,1,Europe +2023-12-03,87089,2975,"[""Laptop""]",2549.39,"{""loyalty"": ""17%""}",67935,0,Asia +2024-09-01,87090,6467,"[""Headphones"", ""Monitor"", ""Tablet""]",4696.41,{},264720,0,South America +2023-09-30,87091,9460,"[""Keyboard"", ""Monitor""]",308.76,"{""seasonal"": ""25%""}",102527,1,North America +2023-11-15,87092,3949,"[""Tablet""]",2243.47,"{""promo"": ""30%""}",131443,0,Europe +2024-03-31,87093,1729,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1206.92,"{""seasonal"": ""13%""}",72064,1,Asia +2023-09-30,87094,844,"[""Charger"", ""Monitor""]",389.8,"{""promo"": ""12%""}",109344,0,North America +2023-06-06,87095,4481,"[""Charger"", ""Headphones""]",2385.25,{},215942,1,South America +2023-01-23,87096,2020,"[""Laptop""]",288.69,{},265959,0,North America +2023-10-31,87097,9648,"[""Wireless Mouse""]",2017.43,{},268192,0,Asia +2023-05-31,87098,2895,"[""Monitor"", ""Phone""]",4740.28,"{""loyalty"": ""18%""}",120354,1,South America +2023-08-06,87099,7210,"[""Phone"", ""Tablet"", ""Headphones""]",2549.6,{},250931,1,Asia +2023-05-04,87100,3177,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",881.23,{},27758,0,North America +2023-07-12,87101,4575,"[""Monitor"", ""Keyboard"", ""Laptop""]",4787.66,{},248269,1,South America +2024-06-16,87102,1792,"[""Monitor""]",2149.84,"{""seasonal"": ""19%""}",165212,0,Asia +2024-07-02,87103,2506,"[""Monitor""]",1683.97,"{"""": ""11%""}",288162,1,Asia +2024-01-29,87104,4911,"[""Headphones""]",4671.41,"{"""": ""14%""}",152744,1,Europe +2023-01-11,87105,9756,"[""Tablet"", ""Phone""]",3318.62,{},135560,1,Europe +2023-08-26,87106,2858,"[""Monitor""]",800.27,{},14688,1,South America +2023-09-24,87107,4220,"[""Headphones"", ""Monitor""]",743.2,"{""promo"": ""7%""}",66380,0,South America +2023-02-24,87108,9367,"[""Keyboard"", ""Headphones""]",909.9,{},53334,0,South America +2023-12-11,87109,3104,"[""Charger""]",823.04,{},88890,1,North America +2024-06-06,87110,4344,"[""Keyboard""]",4640.47,"{""loyalty"": ""14%""}",208334,0,South America +2023-01-12,87111,5711,"[""Charger"", ""Tablet"", ""Laptop""]",1970.8,{},25642,1,Africa +2024-12-18,87112,7165,"[""Phone""]",3073.94,"{""seasonal"": ""6%""}",217096,1,South America +2024-10-01,87113,7537,"[""Keyboard""]",4795.27,"{""loyalty"": ""24%""}",293810,0,Europe +2024-11-16,87114,1552,"[""Charger"", ""Headphones"", ""Phone""]",639.01,"{""promo"": ""12%""}",207225,0,North America +2023-01-23,87115,7740,"[""Phone"", ""Laptop""]",636.09,"{""promo"": ""10%""}",224761,0,Africa +2024-03-11,87116,7246,"[""Tablet"", ""Laptop"", ""Headphones""]",1044.03,{},95581,0,Africa +2024-11-26,87117,5313,"[""Wireless Mouse"", ""Phone""]",2774.99,"{""seasonal"": ""9%""}",136481,0,Europe +2024-08-09,87118,249,"[""Charger""]",4769.28,{},227315,1,North America +2023-03-10,87119,362,"[""Phone""]",1310.1,{},151343,0,South America +2023-09-09,87120,8824,"[""Wireless Mouse""]",2426.36,{},38656,1,Europe +2023-05-14,87121,4939,"[""Keyboard"", ""Laptop"", ""Monitor""]",1491.48,"{""loyalty"": ""17%""}",53163,0,South America +2023-12-01,87122,709,"[""Tablet""]",2184.09,"{""promo"": ""18%""}",152854,1,Europe +2024-03-23,87123,2260,"[""Keyboard"", ""Laptop""]",1383.61,{},168093,0,Asia +2024-06-25,87124,3586,"[""Wireless Mouse"", ""Tablet""]",3077.21,"{"""": ""8%""}",215160,0,Africa +2024-12-17,87125,2507,"[""Tablet"", ""Wireless Mouse""]",4683.53,{},52569,0,Asia +2023-06-03,87126,6136,"[""Headphones"", ""Wireless Mouse""]",357.31,"{""loyalty"": ""22%""}",41843,1,Asia +2023-09-16,87127,9113,"[""Headphones"", ""Monitor""]",2864.11,{},292935,0,Africa +2023-08-23,87128,5104,"[""Keyboard"", ""Tablet"", ""Monitor""]",1053.99,"{""seasonal"": ""13%""}",267423,1,South America +2024-02-14,87129,5780,"[""Tablet"", ""Phone"", ""Monitor""]",4486.67,{},85079,1,Asia +2024-07-21,87130,3498,"[""Laptop"", ""Tablet""]",1154.28,{},49267,1,Asia +2024-01-16,87131,7324,"[""Keyboard"", ""Monitor"", ""Laptop""]",4014.99,"{""loyalty"": ""17%""}",185854,1,Africa +2024-04-02,87132,7619,"[""Wireless Mouse"", ""Tablet""]",3235.17,{},161544,0,Europe +2024-08-13,87133,914,"[""Wireless Mouse""]",1785.39,{},199505,0,South America +2023-10-13,87134,29,"[""Phone""]",308.53,{},238818,0,Europe +2023-03-08,87135,360,"[""Laptop""]",3132.36,{},172802,0,North America +2023-08-15,87136,7012,"[""Tablet"", ""Headphones"", ""Keyboard""]",4038.01,"{"""": ""23%""}",121923,1,Europe +2023-08-05,87137,9179,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3935.63,{},197174,1,North America +2024-02-13,87138,744,"[""Keyboard"", ""Tablet""]",2995.12,{},112609,1,Asia +2024-05-23,87139,5914,"[""Monitor"", ""Keyboard"", ""Headphones""]",2007.96,{},211201,0,Asia +2024-09-10,87140,4980,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1502.5,"{""promo"": ""29%""}",62632,0,Europe +2024-12-13,87141,2879,"[""Phone""]",665.94,{},140108,1,Africa +2024-07-02,87142,728,"[""Tablet""]",173.44,"{"""": ""22%""}",234146,0,Europe +2023-05-29,87143,1230,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3382.23,"{""promo"": ""19%""}",128532,1,Europe +2023-04-19,87144,1040,"[""Tablet""]",3882.34,"{"""": ""25%""}",125459,0,South America +2023-02-25,87145,4648,"[""Headphones""]",2984.49,{},185026,1,South America +2023-10-22,87146,6533,"[""Charger""]",69.29,"{""seasonal"": ""22%""}",260496,1,South America +2024-09-06,87147,804,"[""Charger""]",235.41,"{""loyalty"": ""17%""}",210316,0,Africa +2023-07-28,87148,6109,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",938.86,"{"""": ""27%""}",77714,1,Asia +2024-08-05,87149,9403,"[""Laptop"", ""Wireless Mouse""]",4017.3,"{"""": ""26%""}",28366,1,South America +2024-08-01,87150,5979,"[""Charger"", ""Keyboard""]",3359.53,"{""promo"": ""19%""}",68968,1,South America +2024-11-21,87151,2232,"[""Tablet"", ""Phone""]",1591.38,{},236289,1,Africa +2023-12-23,87152,5748,"[""Monitor"", ""Phone"", ""Charger""]",218.03,"{""promo"": ""28%""}",190369,1,Asia +2023-05-07,87153,2188,"[""Wireless Mouse"", ""Tablet""]",290.56,{},232334,1,Africa +2023-11-25,87154,7128,"[""Keyboard"", ""Laptop"", ""Tablet""]",1565.32,"{""promo"": ""18%""}",291970,1,Africa +2023-07-12,87155,7514,"[""Charger"", ""Tablet"", ""Monitor""]",1012.71,{},130725,1,South America +2023-11-17,87156,3132,"[""Phone"", ""Tablet""]",4331.05,{},274041,1,Europe +2023-01-07,87157,2064,"[""Charger"", ""Monitor""]",2356.64,"{"""": ""23%""}",32599,0,Africa +2024-03-11,87158,1655,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1240.59,"{""seasonal"": ""12%""}",151328,1,Europe +2024-12-27,87159,9527,"[""Wireless Mouse""]",1000.68,{},82100,1,Europe +2023-11-18,87160,3968,"[""Wireless Mouse"", ""Monitor""]",3520.5,{},170756,0,Africa +2023-10-14,87161,6444,"[""Headphones"", ""Monitor"", ""Tablet""]",183.24,{},89736,0,Africa +2023-02-02,87162,5512,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4030.68,{},196891,1,Europe +2023-06-23,87163,733,"[""Wireless Mouse""]",2823.67,"{"""": ""12%""}",297726,1,Europe +2024-01-30,87164,2928,"[""Charger"", ""Keyboard""]",2469.98,"{""seasonal"": ""9%""}",15326,1,Asia +2023-05-31,87165,9407,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3322.26,"{"""": ""24%""}",256572,0,South America +2024-09-08,87166,5356,"[""Headphones"", ""Laptop"", ""Monitor""]",51.72,"{""seasonal"": ""28%""}",91885,0,Asia +2024-07-02,87167,4759,"[""Keyboard"", ""Phone""]",4954.15,"{""promo"": ""29%""}",287289,0,Asia +2023-07-09,87168,5741,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",87.45,"{""promo"": ""22%""}",109522,0,Africa +2024-08-07,87169,4469,"[""Headphones""]",802.85,{},181156,0,Europe +2024-01-04,87170,8251,"[""Tablet""]",1502.78,{},286799,1,Africa +2024-10-31,87171,3006,"[""Wireless Mouse""]",2003.66,"{""promo"": ""9%""}",106084,0,North America +2024-04-04,87172,3938,"[""Headphones"", ""Monitor"", ""Phone""]",3620.58,"{""seasonal"": ""5%""}",286592,1,Europe +2024-10-06,87173,7197,"[""Headphones""]",3754.92,"{""promo"": ""13%""}",190513,1,Asia +2023-08-26,87174,6785,"[""Keyboard"", ""Phone""]",3630.99,{},7154,1,South America +2024-10-10,87175,4417,"[""Wireless Mouse""]",1102.0,"{"""": ""20%""}",170865,1,Asia +2023-06-24,87176,5878,"[""Laptop""]",4294.22,"{""seasonal"": ""13%""}",200062,1,Europe +2023-02-16,87177,75,"[""Tablet"", ""Wireless Mouse""]",4349.46,{},260243,1,Europe +2024-02-09,87178,1818,"[""Tablet""]",2221.89,{},45958,1,Asia +2023-04-23,87179,2512,"[""Monitor""]",769.7,"{""loyalty"": ""30%""}",250722,1,Asia +2023-07-23,87180,1894,"[""Charger""]",399.55,"{""seasonal"": ""25%""}",90918,1,North America +2024-01-17,87181,4710,"[""Wireless Mouse""]",4919.74,"{""loyalty"": ""25%""}",193328,1,North America +2023-06-21,87182,7662,"[""Tablet""]",537.59,"{""promo"": ""29%""}",45930,0,North America +2024-06-01,87183,4399,"[""Keyboard""]",2974.42,"{""loyalty"": ""14%""}",294874,1,North America +2023-07-11,87184,7160,"[""Keyboard""]",4546.12,{},37943,1,Europe +2023-03-30,87185,9848,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2516.91,{},169546,1,South America +2024-04-14,87186,5912,"[""Headphones""]",1130.29,{},56446,1,North America +2023-06-08,87187,1208,"[""Headphones""]",441.74,"{"""": ""11%""}",191265,0,North America +2024-10-27,87188,461,"[""Phone"", ""Charger"", ""Headphones""]",3858.78,"{""seasonal"": ""23%""}",70901,0,South America +2024-04-24,87189,7739,"[""Headphones""]",698.96,"{""promo"": ""23%""}",208362,0,South America +2023-06-29,87190,2246,"[""Keyboard"", ""Tablet"", ""Charger""]",3489.12,"{""seasonal"": ""23%""}",82135,1,South America +2024-10-07,87191,3123,"[""Tablet""]",4809.3,{},299328,1,North America +2023-02-19,87192,1900,"[""Charger""]",465.21,{},41766,1,North America +2024-10-06,87193,3186,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1750.47,{},166378,1,Asia +2024-09-30,87194,6920,"[""Monitor"", ""Laptop"", ""Headphones""]",2841.72,{},248188,1,North America +2024-08-10,87195,4623,"[""Monitor""]",2031.89,{},228618,0,Asia +2024-11-12,87196,7285,"[""Laptop"", ""Charger"", ""Phone""]",2547.07,{},132316,1,North America +2023-08-30,87197,2195,"[""Phone"", ""Wireless Mouse""]",3841.74,"{""promo"": ""26%""}",98035,1,North America +2024-09-04,87198,3007,"[""Tablet""]",91.95,"{"""": ""30%""}",198320,1,South America +2023-12-05,87199,5671,"[""Tablet"", ""Charger""]",4888.58,"{""promo"": ""24%""}",298084,0,Africa +2024-10-28,87200,1437,"[""Keyboard""]",4490.74,{},130927,0,Africa +2023-04-23,87201,7686,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4494.21,"{""loyalty"": ""27%""}",30970,0,North America +2023-01-31,87202,1056,"[""Keyboard""]",1301.5,{},225124,0,Asia +2023-09-22,87203,4728,"[""Tablet"", ""Laptop""]",3139.66,{},15931,0,Asia +2024-04-30,87204,31,"[""Phone""]",1527.62,{},23492,1,Africa +2024-01-16,87205,6840,"[""Phone"", ""Laptop""]",2173.26,"{""loyalty"": ""20%""}",110420,1,Africa +2023-11-03,87206,9707,"[""Laptop""]",2776.8,{},1051,0,South America +2023-12-25,87207,9923,"[""Wireless Mouse""]",1106.7,"{""seasonal"": ""5%""}",59618,1,Europe +2023-07-31,87208,5055,"[""Laptop"", ""Monitor"", ""Keyboard""]",3737.87,"{""seasonal"": ""14%""}",280063,1,North America +2024-01-13,87209,2954,"[""Wireless Mouse"", ""Charger""]",1485.91,{},188706,0,Europe +2023-07-19,87210,197,"[""Tablet""]",2970.76,{},132704,1,North America +2024-01-31,87211,187,"[""Monitor""]",3404.96,{},263507,1,Africa +2023-01-07,87212,2954,"[""Headphones""]",161.61,"{""promo"": ""21%""}",173782,0,North America +2023-05-26,87213,6616,"[""Tablet"", ""Laptop"", ""Headphones""]",2843.44,{},203060,0,North America +2023-12-09,87214,8073,"[""Phone"", ""Charger"", ""Keyboard""]",2167.49,{},157201,1,South America +2024-05-07,87215,2995,"[""Monitor"", ""Phone""]",764.34,"{""promo"": ""19%""}",254361,0,Africa +2024-01-18,87216,3364,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1165.3,{},194517,0,Africa +2024-06-14,87217,6113,"[""Charger""]",1793.9,{},152589,1,Africa +2024-11-01,87218,3570,"[""Charger"", ""Keyboard""]",1868.63,"{"""": ""10%""}",78574,0,South America +2023-08-16,87219,5846,"[""Keyboard"", ""Laptop""]",4024.09,{},245560,1,Africa +2023-01-22,87220,2071,"[""Tablet"", ""Phone""]",2998.06,"{""promo"": ""8%""}",168657,0,Europe +2023-10-22,87221,6926,"[""Charger"", ""Laptop""]",4744.81,{},292796,0,Europe +2023-03-18,87222,816,"[""Keyboard"", ""Headphones"", ""Charger""]",4742.96,"{""seasonal"": ""26%""}",236681,1,North America +2024-01-05,87223,1973,"[""Monitor""]",2278.34,{},252189,0,Asia +2024-08-28,87224,6718,"[""Phone"", ""Laptop"", ""Keyboard""]",532.02,{},18005,1,Africa +2023-05-14,87225,450,"[""Charger"", ""Keyboard""]",864.21,"{""seasonal"": ""21%""}",247468,1,South America +2023-01-13,87226,1801,"[""Headphones""]",1244.38,{},36814,1,South America +2024-02-26,87227,9257,"[""Headphones"", ""Wireless Mouse""]",782.83,{},164746,0,South America +2023-09-12,87228,8879,"[""Headphones"", ""Charger"", ""Keyboard""]",52.56,"{""seasonal"": ""30%""}",250256,0,South America +2024-11-06,87229,8273,"[""Laptop"", ""Tablet""]",3633.67,{},192321,0,Africa +2024-04-06,87230,9212,"[""Phone""]",1443.04,"{""promo"": ""28%""}",29042,1,North America +2024-10-03,87231,861,"[""Phone""]",3906.69,"{""promo"": ""21%""}",265634,1,Europe +2024-05-02,87232,5179,"[""Keyboard"", ""Monitor"", ""Charger""]",4939.98,{},192436,0,Europe +2024-12-09,87233,5115,"[""Phone"", ""Laptop"", ""Headphones""]",3472.22,{},233532,1,Asia +2024-05-29,87234,3523,"[""Headphones"", ""Monitor"", ""Laptop""]",514.31,"{"""": ""27%""}",180709,0,Asia +2024-05-24,87235,6457,"[""Phone"", ""Wireless Mouse""]",2066.94,"{"""": ""13%""}",249645,1,Africa +2023-01-19,87236,7620,"[""Tablet"", ""Wireless Mouse""]",4282.81,"{""promo"": ""23%""}",7723,0,Africa +2024-05-19,87237,3323,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2398.74,{},144270,1,Europe +2023-12-24,87238,9422,"[""Keyboard"", ""Phone""]",2035.07,"{""seasonal"": ""15%""}",31884,0,Asia +2024-08-31,87239,7050,"[""Monitor"", ""Charger""]",3631.3,"{""promo"": ""17%""}",120842,0,Europe +2024-01-15,87240,7161,"[""Charger"", ""Keyboard""]",3609.81,"{""seasonal"": ""13%""}",222034,1,Asia +2023-01-29,87241,5945,"[""Monitor"", ""Keyboard"", ""Phone""]",4640.09,{},136077,0,North America +2024-04-27,87242,382,"[""Keyboard""]",3181.08,"{""promo"": ""23%""}",280641,0,South America +2023-07-14,87243,1974,"[""Charger"", ""Phone"", ""Laptop""]",600.16,{},157552,0,Europe +2023-08-30,87244,9122,"[""Headphones"", ""Keyboard""]",3498.25,"{""promo"": ""13%""}",187269,1,North America +2023-06-08,87245,8640,"[""Monitor"", ""Laptop""]",2988.84,{},106260,0,South America +2023-10-27,87246,6876,"[""Tablet""]",3029.26,"{""promo"": ""10%""}",226252,0,North America +2024-07-30,87247,4439,"[""Wireless Mouse"", ""Laptop""]",99.54,{},33164,0,Africa +2024-08-06,87248,3996,"[""Keyboard""]",1825.06,"{"""": ""10%""}",162916,1,Africa +2024-12-17,87249,3002,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4155.72,{},101490,0,Africa +2023-10-30,87250,7399,"[""Phone"", ""Tablet"", ""Headphones""]",955.16,{},217887,1,Asia +2023-08-21,87251,5066,"[""Phone""]",2897.85,"{"""": ""15%""}",94291,0,Asia +2023-02-24,87252,9171,"[""Keyboard"", ""Headphones""]",1489.27,"{""loyalty"": ""15%""}",258725,1,Africa +2024-08-01,87253,6944,"[""Keyboard"", ""Charger""]",2617.37,{},281445,0,Africa +2023-04-01,87254,4788,"[""Charger""]",370.4,{},146867,0,Asia +2023-07-16,87255,2440,"[""Charger""]",4275.47,"{""seasonal"": ""27%""}",123691,0,Africa +2024-09-24,87256,7538,"[""Wireless Mouse""]",1168.51,{},51534,0,Europe +2024-12-27,87257,6886,"[""Laptop"", ""Charger"", ""Monitor""]",1141.65,{},25053,0,North America +2023-03-22,87258,6087,"[""Monitor""]",4933.31,"{"""": ""20%""}",181383,0,South America +2024-12-24,87259,4946,"[""Keyboard""]",699.27,"{""loyalty"": ""14%""}",58805,1,South America +2024-11-09,87260,957,"[""Phone"", ""Wireless Mouse""]",1725.88,{},43511,0,Africa +2023-09-19,87261,3973,"[""Keyboard"", ""Charger"", ""Monitor""]",1424.71,{},178293,1,Africa +2024-05-04,87262,2197,"[""Phone"", ""Headphones""]",3121.11,"{""loyalty"": ""23%""}",141158,1,North America +2023-10-09,87263,7601,"[""Laptop"", ""Phone""]",353.24,"{""loyalty"": ""27%""}",115398,1,South America +2024-05-10,87264,3376,"[""Charger"", ""Keyboard""]",445.85,"{""loyalty"": ""24%""}",274287,1,Europe +2023-05-05,87265,4823,"[""Tablet"", ""Charger"", ""Monitor""]",2107.24,"{""seasonal"": ""15%""}",190815,1,North America +2024-01-30,87266,7531,"[""Laptop"", ""Tablet"", ""Headphones""]",4137.87,"{"""": ""15%""}",174571,0,Europe +2023-09-07,87267,6346,"[""Keyboard""]",3184.23,{},113003,1,Asia +2023-07-24,87268,3083,"[""Keyboard"", ""Headphones"", ""Phone""]",2017.16,"{""loyalty"": ""15%""}",245832,1,Africa +2024-11-18,87269,2067,"[""Phone"", ""Keyboard""]",3033.46,"{""loyalty"": ""28%""}",1703,1,Europe +2024-07-25,87270,8996,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2448.11,"{"""": ""30%""}",51684,1,Africa +2023-10-05,87271,631,"[""Wireless Mouse""]",113.49,{},252742,1,Europe +2023-02-23,87272,1696,"[""Tablet"", ""Laptop""]",1528.22,"{"""": ""24%""}",115942,0,South America +2023-05-25,87273,758,"[""Phone"", ""Charger""]",2354.52,{},263019,1,Europe +2024-02-29,87274,7096,"[""Headphones"", ""Phone""]",1954.57,{},12296,1,Africa +2023-07-22,87275,926,"[""Wireless Mouse"", ""Phone""]",4465.07,{},204257,0,North America +2024-08-26,87276,8502,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3304.04,{},241666,1,South America +2024-03-31,87277,3064,"[""Headphones"", ""Phone""]",2479.59,{},140504,0,Asia +2024-11-21,87278,8328,"[""Phone""]",732.69,{},19708,1,Asia +2023-04-10,87279,2756,"[""Tablet"", ""Charger"", ""Keyboard""]",4634.95,{},175526,1,Asia +2023-09-17,87280,9314,"[""Phone"", ""Headphones""]",3582.54,{},225532,0,South America +2024-06-03,87281,3850,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2249.39,{},101171,1,Asia +2023-05-02,87282,2031,"[""Keyboard"", ""Headphones""]",3605.14,"{"""": ""24%""}",105081,0,South America +2023-01-23,87283,962,"[""Tablet"", ""Charger"", ""Laptop""]",3216.76,{},273292,0,Africa +2023-07-15,87284,2272,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1972.65,"{""seasonal"": ""16%""}",256996,0,Asia +2023-10-15,87285,3002,"[""Headphones""]",400.24,"{""loyalty"": ""11%""}",198638,1,Europe +2023-02-05,87286,1479,"[""Monitor"", ""Headphones"", ""Charger""]",2212.95,"{""promo"": ""11%""}",142023,1,North America +2024-02-21,87287,5368,"[""Tablet""]",3166.18,{},111372,0,Europe +2023-04-16,87288,3402,"[""Wireless Mouse""]",1016.54,"{""promo"": ""5%""}",5301,0,Europe +2023-01-09,87289,2174,"[""Tablet"", ""Headphones"", ""Keyboard""]",1092.54,"{""loyalty"": ""13%""}",88390,1,Africa +2024-06-12,87290,5435,"[""Headphones""]",4516.96,"{""seasonal"": ""9%""}",121754,1,Europe +2024-06-26,87291,308,"[""Phone""]",3217.78,"{""loyalty"": ""13%""}",162657,1,Asia +2024-02-19,87292,2690,"[""Phone""]",3483.32,"{""promo"": ""29%""}",10285,1,North America +2023-10-17,87293,6677,"[""Headphones"", ""Wireless Mouse""]",2064.12,"{""loyalty"": ""9%""}",59309,0,Africa +2023-09-15,87294,3609,"[""Phone""]",409.82,"{""promo"": ""12%""}",34247,0,Africa +2023-11-10,87295,3517,"[""Phone""]",2775.9,{},34812,1,South America +2023-02-13,87296,3155,"[""Phone""]",2019.59,"{""promo"": ""20%""}",178751,1,Europe +2024-03-29,87297,6112,"[""Tablet""]",459.16,"{"""": ""26%""}",40820,0,Africa +2023-06-13,87298,8264,"[""Charger""]",4322.49,{},124189,1,South America +2024-04-26,87299,8490,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3473.23,{},233377,1,Europe +2023-06-09,87300,9834,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3233.4,{},76015,1,Asia +2023-12-14,87301,7720,"[""Phone""]",3946.41,{},66262,1,South America +2024-11-17,87302,6648,"[""Monitor""]",3940.72,"{"""": ""11%""}",157827,0,Africa +2024-09-25,87303,4899,"[""Phone"", ""Charger"", ""Keyboard""]",3039.33,{},227698,0,Europe +2024-03-02,87304,2756,"[""Keyboard"", ""Wireless Mouse""]",4234.91,{},253882,1,Africa +2024-04-16,87305,7832,"[""Laptop"", ""Wireless Mouse""]",4236.66,"{"""": ""7%""}",151029,1,Asia +2024-01-31,87306,3239,"[""Monitor""]",1673.34,"{""promo"": ""29%""}",278703,0,North America +2024-05-26,87307,5192,"[""Monitor"", ""Keyboard""]",2487.75,{},284047,0,Africa +2023-01-16,87308,400,"[""Phone"", ""Tablet""]",1966.15,"{"""": ""23%""}",6186,0,North America +2023-04-05,87309,2378,"[""Tablet""]",1169.23,{},234402,1,North America +2023-09-13,87310,888,"[""Phone"", ""Laptop"", ""Tablet""]",2582.31,"{""seasonal"": ""6%""}",274228,0,Asia +2024-01-03,87311,3,"[""Monitor"", ""Charger"", ""Headphones""]",4406.14,"{""seasonal"": ""22%""}",35724,0,Africa +2023-04-12,87312,3912,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",666.67,{},99057,0,Asia +2024-01-15,87313,5328,"[""Headphones""]",3185.19,{},265208,0,Asia +2024-09-07,87314,6990,"[""Headphones"", ""Charger"", ""Phone""]",2967.0,{},32464,1,South America +2023-10-08,87315,8295,"[""Wireless Mouse"", ""Headphones""]",2393.08,"{""loyalty"": ""19%""}",75534,1,Europe +2023-12-26,87316,1006,"[""Headphones"", ""Laptop""]",531.44,"{""seasonal"": ""11%""}",74102,0,Asia +2023-12-23,87317,7155,"[""Laptop"", ""Headphones""]",2883.54,"{"""": ""11%""}",17951,0,South America +2023-12-12,87318,4376,"[""Monitor"", ""Tablet""]",2455.21,"{"""": ""24%""}",207839,1,Asia +2023-01-04,87319,5975,"[""Monitor"", ""Keyboard"", ""Laptop""]",784.17,{},106900,1,South America +2024-04-13,87320,1690,"[""Tablet"", ""Wireless Mouse""]",2802.43,{},52264,0,South America +2024-12-20,87321,1698,"[""Monitor"", ""Tablet""]",466.93,{},174402,0,South America +2023-04-11,87322,5441,"[""Monitor""]",491.28,{},211646,0,Africa +2024-07-29,87323,589,"[""Tablet""]",4999.44,{},2186,1,Asia +2024-01-13,87324,8584,"[""Phone"", ""Charger""]",4777.63,"{""seasonal"": ""17%""}",231804,0,North America +2024-07-10,87325,8463,"[""Wireless Mouse""]",99.44,"{"""": ""23%""}",288135,0,North America +2024-03-16,87326,1169,"[""Keyboard""]",4599.27,"{""promo"": ""9%""}",59166,0,Asia +2024-09-12,87327,4199,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3797.44,"{""promo"": ""28%""}",204268,0,Africa +2024-05-29,87328,6674,"[""Keyboard"", ""Phone""]",1710.04,{},34346,0,Europe +2023-01-07,87329,2106,"[""Wireless Mouse"", ""Tablet""]",2170.88,{},66738,1,Africa +2024-06-11,87330,4092,"[""Headphones""]",1251.24,"{"""": ""15%""}",177812,0,Europe +2024-10-18,87331,6846,"[""Phone"", ""Headphones""]",618.18,{},28866,0,North America +2024-11-05,87332,3838,"[""Wireless Mouse"", ""Headphones""]",4653.71,"{""loyalty"": ""23%""}",298994,1,Asia +2023-09-01,87333,6629,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",145.06,"{""loyalty"": ""30%""}",134645,1,Africa +2024-02-18,87334,2143,"[""Keyboard""]",3580.0,{},87181,0,North America +2023-07-10,87335,5699,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",181.07,"{""seasonal"": ""8%""}",177742,1,Asia +2024-02-14,87336,7808,"[""Monitor"", ""Phone""]",2540.62,{},264946,1,Europe +2024-09-07,87337,3606,"[""Keyboard"", ""Wireless Mouse""]",2089.12,"{""promo"": ""14%""}",147238,0,North America +2024-01-30,87338,312,"[""Charger"", ""Headphones"", ""Laptop""]",4396.29,"{""seasonal"": ""28%""}",4801,1,South America +2023-10-24,87339,3915,"[""Keyboard""]",1678.9,{},187304,1,Europe +2024-12-29,87340,612,"[""Laptop""]",2364.68,"{""seasonal"": ""12%""}",292577,1,Asia +2024-12-29,87341,6278,"[""Monitor"", ""Charger""]",1673.42,"{"""": ""20%""}",112181,1,Asia +2023-05-19,87342,7567,"[""Phone""]",2504.86,"{""promo"": ""29%""}",88240,1,South America +2023-09-13,87343,5721,"[""Wireless Mouse""]",1957.23,"{""seasonal"": ""16%""}",220593,0,South America +2023-11-23,87344,2960,"[""Wireless Mouse"", ""Monitor""]",3942.33,"{""promo"": ""14%""}",241949,0,North America +2024-07-10,87345,9519,"[""Monitor""]",3402.71,"{""promo"": ""22%""}",156279,1,Europe +2024-09-27,87346,711,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",542.41,{},201901,1,Europe +2024-02-09,87347,6613,"[""Tablet""]",3141.81,{},137204,1,North America +2023-05-18,87348,9046,"[""Wireless Mouse"", ""Keyboard""]",3369.62,"{"""": ""28%""}",49122,0,North America +2023-10-27,87349,1887,"[""Phone"", ""Headphones"", ""Keyboard""]",4655.41,{},175692,1,North America +2024-02-09,87350,4475,"[""Keyboard"", ""Tablet"", ""Monitor""]",608.48,"{""promo"": ""25%""}",268516,0,Asia +2024-01-05,87351,8253,"[""Laptop"", ""Headphones"", ""Keyboard""]",1674.53,{},104024,1,Europe +2024-10-07,87352,4436,"[""Phone""]",4240.73,{},58533,1,North America +2024-11-26,87353,4841,"[""Headphones"", ""Monitor"", ""Phone""]",3213.31,{},35450,1,Asia +2023-05-14,87354,1103,"[""Keyboard""]",3018.87,{},166377,1,North America +2023-12-11,87355,9015,"[""Charger"", ""Monitor"", ""Keyboard""]",2859.72,{},226506,0,Asia +2024-01-04,87356,9583,"[""Monitor""]",2773.76,{},283620,1,South America +2023-11-17,87357,5956,"[""Phone"", ""Keyboard"", ""Laptop""]",2305.4,{},243207,1,Asia +2023-09-08,87358,4199,"[""Phone""]",2914.93,"{""promo"": ""20%""}",127255,1,Africa +2024-02-19,87359,4547,"[""Laptop""]",3387.46,"{"""": ""30%""}",53451,1,North America +2023-02-07,87360,3479,"[""Laptop""]",1491.37,"{""loyalty"": ""6%""}",36670,1,Africa +2024-05-20,87361,7300,"[""Charger"", ""Keyboard""]",3520.28,{},217052,1,Africa +2023-07-26,87362,7851,"[""Headphones"", ""Tablet"", ""Laptop""]",4645.03,"{""promo"": ""27%""}",19170,1,Africa +2024-01-19,87363,1941,"[""Charger""]",4483.1,{},243348,0,North America +2023-05-18,87364,764,"[""Keyboard"", ""Charger""]",3855.18,{},259930,0,Asia +2024-05-11,87365,2056,"[""Charger""]",2840.75,"{"""": ""12%""}",189075,1,South America +2023-03-08,87366,7260,"[""Wireless Mouse"", ""Charger""]",3282.96,{},88932,1,South America +2023-08-12,87367,5593,"[""Monitor"", ""Wireless Mouse""]",4093.43,"{""loyalty"": ""18%""}",252806,1,Africa +2023-08-31,87368,8254,"[""Keyboard"", ""Charger"", ""Laptop""]",3177.98,{},257037,0,South America +2024-04-09,87369,8021,"[""Charger""]",3711.23,"{""promo"": ""18%""}",229138,1,South America +2024-09-19,87370,6413,"[""Wireless Mouse""]",4941.41,{},26158,0,Africa +2024-12-09,87371,3468,"[""Tablet"", ""Keyboard"", ""Monitor""]",3952.7,"{""promo"": ""27%""}",170702,1,Europe +2024-11-11,87372,7744,"[""Phone""]",3901.13,"{""promo"": ""21%""}",52963,0,North America +2023-09-26,87373,1411,"[""Tablet"", ""Monitor"", ""Charger""]",2815.44,"{""loyalty"": ""7%""}",240046,1,Africa +2023-06-19,87374,6723,"[""Headphones"", ""Monitor"", ""Keyboard""]",207.21,{},209725,1,Asia +2023-07-14,87375,1318,"[""Keyboard"", ""Tablet"", ""Phone""]",3391.1,"{""seasonal"": ""14%""}",133191,1,South America +2024-01-08,87376,5642,"[""Headphones""]",3464.62,"{""seasonal"": ""8%""}",175911,1,Africa +2024-09-27,87377,9590,"[""Laptop"", ""Charger"", ""Headphones""]",4641.45,{},221841,0,Europe +2023-09-06,87378,674,"[""Charger"", ""Keyboard""]",263.26,"{""promo"": ""8%""}",155743,0,Europe +2024-03-20,87379,5437,"[""Monitor""]",2549.43,"{""loyalty"": ""30%""}",271761,1,Asia +2024-11-01,87380,6814,"[""Wireless Mouse"", ""Laptop""]",1722.36,{},77530,0,Africa +2023-12-26,87381,2295,"[""Tablet"", ""Monitor""]",50.44,{},129280,1,South America +2023-08-30,87382,3047,"[""Headphones"", ""Wireless Mouse""]",1968.5,"{"""": ""16%""}",174731,1,Europe +2024-05-31,87383,2471,"[""Monitor"", ""Phone""]",189.79,"{"""": ""8%""}",61983,0,Europe +2024-08-23,87384,5940,"[""Charger"", ""Phone"", ""Headphones""]",4987.89,"{"""": ""21%""}",183641,0,Asia +2024-07-28,87385,7402,"[""Headphones"", ""Monitor"", ""Keyboard""]",4802.06,{},200499,0,South America +2023-07-23,87386,6839,"[""Phone"", ""Laptop""]",2111.4,{},79606,1,South America +2024-07-10,87387,3528,"[""Monitor""]",3940.64,"{""loyalty"": ""9%""}",275992,0,South America +2024-10-12,87388,1094,"[""Monitor"", ""Wireless Mouse""]",1299.52,{},197846,1,North America +2023-07-19,87389,2051,"[""Laptop"", ""Keyboard""]",3918.41,{},53899,1,North America +2024-03-13,87390,8295,"[""Charger"", ""Monitor"", ""Keyboard""]",4932.22,"{""loyalty"": ""28%""}",104556,0,Europe +2024-01-23,87391,9448,"[""Laptop""]",3914.28,{},112863,0,Asia +2024-09-25,87392,1049,"[""Monitor"", ""Charger"", ""Keyboard""]",2660.38,"{"""": ""30%""}",25881,0,Europe +2023-01-03,87393,930,"[""Tablet"", ""Headphones"", ""Laptop""]",4814.63,"{""seasonal"": ""13%""}",270472,0,North America +2023-05-16,87394,5821,"[""Headphones""]",4010.01,{},279749,0,Asia +2023-02-10,87395,7473,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",64.83,"{""seasonal"": ""8%""}",24795,0,South America +2024-03-11,87396,2209,"[""Headphones""]",4533.81,{},172616,0,Asia +2024-12-23,87397,186,"[""Phone"", ""Monitor""]",4520.14,{},13129,0,South America +2023-12-03,87398,3420,"[""Phone"", ""Tablet""]",4767.15,{},231474,1,North America +2023-07-06,87399,3630,"[""Keyboard"", ""Phone""]",208.36,{},25212,1,South America +2023-05-17,87400,6406,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2781.84,{},230195,1,Europe +2023-05-11,87401,3415,"[""Wireless Mouse""]",4014.08,{},287002,1,Asia +2024-02-04,87402,8247,"[""Laptop""]",4702.6,{},165370,1,Europe +2024-05-23,87403,3430,"[""Tablet""]",2873.36,"{"""": ""27%""}",182072,1,Asia +2024-07-03,87404,8763,"[""Monitor""]",3601.48,{},272255,0,Africa +2023-04-06,87405,3929,"[""Keyboard"", ""Monitor"", ""Charger""]",700.89,"{""seasonal"": ""8%""}",281848,0,Asia +2024-10-05,87406,8637,"[""Tablet""]",2973.88,"{"""": ""5%""}",269342,1,Asia +2024-05-09,87407,1204,"[""Monitor"", ""Keyboard"", ""Tablet""]",4467.59,"{"""": ""14%""}",141182,0,South America +2024-03-03,87408,617,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2348.41,"{""seasonal"": ""30%""}",163535,0,North America +2024-07-11,87409,7893,"[""Wireless Mouse""]",1742.64,"{""loyalty"": ""15%""}",85352,1,North America +2023-08-01,87410,895,"[""Charger""]",4586.87,{},249497,1,Europe +2024-10-08,87411,2114,"[""Charger"", ""Monitor"", ""Phone""]",740.2,"{""promo"": ""18%""}",25208,0,South America +2024-10-30,87412,1932,"[""Phone"", ""Keyboard""]",4617.14,"{""seasonal"": ""21%""}",230643,0,Europe +2023-02-14,87413,2012,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2698.78,"{"""": ""19%""}",144860,0,South America +2023-06-09,87414,5755,"[""Laptop""]",2151.05,"{""seasonal"": ""25%""}",230396,0,South America +2023-03-26,87415,9664,"[""Keyboard"", ""Tablet""]",3017.16,{},23953,0,Africa +2024-05-15,87416,1415,"[""Laptop"", ""Charger"", ""Tablet""]",1992.26,"{""seasonal"": ""30%""}",25834,0,Europe +2024-07-22,87417,5264,"[""Charger""]",1595.77,"{""promo"": ""13%""}",115727,1,South America +2024-05-17,87418,3503,"[""Laptop"", ""Charger""]",1521.23,{},200648,1,North America +2023-04-19,87419,116,"[""Phone"", ""Keyboard""]",4134.03,"{""promo"": ""16%""}",193349,1,Europe +2024-10-19,87420,7515,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4929.54,{},62627,0,Asia +2023-08-14,87421,3772,"[""Charger""]",4912.21,{},125044,1,Europe +2024-09-21,87422,4815,"[""Tablet"", ""Headphones""]",1870.53,"{""loyalty"": ""7%""}",274029,0,Africa +2024-06-13,87423,9955,"[""Tablet"", ""Charger"", ""Laptop""]",1628.86,"{""promo"": ""10%""}",23191,0,Asia +2024-12-09,87424,6788,"[""Charger""]",674.74,{},88916,0,Asia +2023-04-04,87425,3077,"[""Keyboard"", ""Tablet""]",4864.88,{},256764,0,Africa +2024-10-12,87426,2922,"[""Wireless Mouse""]",4060.06,"{"""": ""6%""}",114019,1,South America +2024-03-21,87427,6963,"[""Tablet"", ""Phone"", ""Monitor""]",3863.87,{},170061,1,Africa +2023-01-19,87428,5615,"[""Wireless Mouse""]",215.23,{},8629,1,South America +2023-10-23,87429,4776,"[""Tablet"", ""Headphones""]",4842.9,"{""seasonal"": ""17%""}",195786,1,Asia +2024-12-25,87430,5307,"[""Headphones""]",1479.62,{},265877,1,Asia +2024-01-29,87431,4101,"[""Wireless Mouse""]",2969.3,{},180391,1,Asia +2023-08-23,87432,2408,"[""Wireless Mouse"", ""Phone""]",2863.27,"{"""": ""18%""}",81317,0,Africa +2024-06-09,87433,1003,"[""Keyboard"", ""Charger""]",4984.06,{},213165,0,South America +2024-04-16,87434,6857,"[""Charger"", ""Laptop"", ""Headphones""]",3238.85,{},285718,0,North America +2024-11-12,87435,3256,"[""Keyboard""]",2422.43,"{""seasonal"": ""16%""}",29038,0,Asia +2023-06-26,87436,28,"[""Wireless Mouse"", ""Phone""]",3478.16,"{""loyalty"": ""5%""}",101701,1,North America +2024-09-16,87437,6306,"[""Headphones"", ""Keyboard""]",2298.66,"{""loyalty"": ""29%""}",164899,0,Europe +2024-10-12,87438,3849,"[""Monitor""]",4924.27,"{""promo"": ""21%""}",185559,0,North America +2024-03-06,87439,1738,"[""Monitor"", ""Headphones""]",4104.67,{},6460,1,Asia +2023-06-16,87440,4894,"[""Tablet"", ""Monitor"", ""Laptop""]",3980.01,"{"""": ""9%""}",84952,0,Europe +2024-11-26,87441,1408,"[""Laptop"", ""Keyboard""]",3503.92,"{"""": ""18%""}",247885,1,South America +2023-10-20,87442,1273,"[""Headphones"", ""Charger""]",4983.91,{},39227,1,Africa +2024-03-26,87443,6962,"[""Keyboard""]",3496.48,{},255083,1,Europe +2024-01-18,87444,9263,"[""Monitor""]",1872.09,{},249354,1,South America +2024-12-19,87445,6127,"[""Keyboard"", ""Headphones"", ""Phone""]",2830.49,"{"""": ""8%""}",133087,0,North America +2023-09-05,87446,4198,"[""Monitor"", ""Laptop""]",627.23,"{""loyalty"": ""30%""}",156907,0,Africa +2024-04-01,87447,3793,"[""Laptop""]",1780.42,"{""loyalty"": ""20%""}",180413,0,North America +2024-01-16,87448,5845,"[""Tablet"", ""Monitor"", ""Headphones""]",2265.4,"{""promo"": ""22%""}",56412,0,Asia +2023-09-01,87449,4560,"[""Monitor""]",4264.93,"{""seasonal"": ""28%""}",199815,1,South America +2023-04-29,87450,1368,"[""Phone"", ""Charger""]",2873.51,{},133128,0,Europe +2024-04-08,87451,6661,"[""Charger""]",3074.68,"{""promo"": ""5%""}",32913,0,North America +2023-07-07,87452,6670,"[""Headphones"", ""Wireless Mouse""]",1572.39,{},89416,0,Europe +2023-08-09,87453,9423,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4300.45,"{""loyalty"": ""26%""}",93587,1,Africa +2024-02-07,87454,7507,"[""Phone"", ""Monitor""]",3067.85,{},265392,0,Asia +2023-06-17,87455,657,"[""Wireless Mouse""]",2145.39,{},105673,1,Asia +2023-02-21,87456,1643,"[""Phone""]",954.89,{},238608,0,Africa +2023-04-03,87457,1862,"[""Headphones"", ""Keyboard"", ""Tablet""]",195.37,"{""seasonal"": ""24%""}",84700,1,Africa +2024-02-24,87458,7803,"[""Tablet""]",3033.51,"{""seasonal"": ""23%""}",133015,1,Africa +2024-08-25,87459,8096,"[""Headphones"", ""Charger""]",532.73,{},217307,0,North America +2024-12-05,87460,8622,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4953.92,{},234797,1,Asia +2023-06-02,87461,1934,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",326.84,"{""promo"": ""17%""}",272722,1,Africa +2024-02-25,87462,3687,"[""Phone"", ""Charger"", ""Keyboard""]",3284.86,{},249868,0,South America +2024-08-25,87463,3929,"[""Laptop""]",3246.49,"{""loyalty"": ""5%""}",254904,0,Asia +2023-12-08,87464,2896,"[""Charger"", ""Monitor""]",422.55,"{""loyalty"": ""21%""}",48198,0,Europe +2023-06-18,87465,3624,"[""Monitor"", ""Keyboard"", ""Tablet""]",2503.42,"{""loyalty"": ""29%""}",185312,0,Europe +2023-12-22,87466,7489,"[""Headphones""]",1084.17,{},214882,1,Africa +2024-05-30,87467,5193,"[""Monitor""]",3605.73,"{""promo"": ""27%""}",7976,0,Africa +2024-03-29,87468,9276,"[""Headphones"", ""Tablet"", ""Monitor""]",361.83,{},19794,1,Asia +2024-11-22,87469,4631,"[""Wireless Mouse"", ""Monitor""]",1430.74,"{"""": ""7%""}",19847,1,Europe +2024-09-08,87470,7652,"[""Wireless Mouse""]",3602.57,"{""seasonal"": ""17%""}",169331,0,Europe +2024-10-13,87471,9892,"[""Keyboard"", ""Wireless Mouse""]",956.69,{},121554,0,Africa +2024-03-05,87472,3380,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4167.25,"{""loyalty"": ""18%""}",215226,1,Asia +2024-09-19,87473,2713,"[""Monitor""]",3425.32,{},52215,0,Europe +2024-01-18,87474,2820,"[""Tablet""]",1244.93,"{""loyalty"": ""6%""}",36152,0,North America +2024-10-26,87475,4260,"[""Phone"", ""Monitor"", ""Laptop""]",3084.58,{},1245,0,Africa +2023-03-07,87476,347,"[""Charger""]",4882.87,{},248033,0,Africa +2024-12-26,87477,4380,"[""Laptop""]",3583.27,{},258008,1,South America +2024-01-27,87478,5584,"[""Headphones"", ""Keyboard"", ""Laptop""]",336.72,"{""promo"": ""26%""}",211991,1,South America +2024-01-12,87479,662,"[""Phone""]",3079.53,{},205674,0,Europe +2024-08-31,87480,7546,"[""Wireless Mouse"", ""Tablet""]",2978.35,"{"""": ""7%""}",120709,0,Asia +2023-10-11,87481,1377,"[""Phone""]",3548.84,{},78293,1,Asia +2023-09-04,87482,3710,"[""Charger"", ""Phone""]",3061.7,"{""seasonal"": ""5%""}",241472,1,Europe +2023-07-08,87483,1783,"[""Tablet""]",2094.1,{},175230,0,Africa +2023-04-07,87484,3183,"[""Tablet""]",4279.11,"{""seasonal"": ""20%""}",177603,0,Asia +2023-02-22,87485,422,"[""Keyboard"", ""Headphones""]",1229.88,"{""promo"": ""8%""}",160101,0,Africa +2024-09-20,87486,726,"[""Tablet"", ""Phone"", ""Keyboard""]",2667.98,{},5410,0,Asia +2024-08-08,87487,3104,"[""Charger"", ""Keyboard""]",2182.99,"{"""": ""14%""}",181606,0,North America +2023-09-17,87488,5813,"[""Headphones"", ""Keyboard""]",798.12,"{"""": ""5%""}",158942,0,North America +2024-03-09,87489,8729,"[""Phone"", ""Charger"", ""Laptop""]",112.53,{},65308,1,South America +2023-10-26,87490,9394,"[""Phone"", ""Tablet""]",344.15,"{""promo"": ""14%""}",47240,0,Europe +2023-12-16,87491,6824,"[""Monitor"", ""Laptop""]",4498.36,"{""promo"": ""16%""}",207958,1,Europe +2023-04-21,87492,2168,"[""Headphones"", ""Phone"", ""Monitor""]",1269.67,{},128659,0,Africa +2023-03-28,87493,175,"[""Monitor"", ""Charger"", ""Laptop""]",2611.03,"{"""": ""11%""}",32556,1,Europe +2024-05-14,87494,2478,"[""Monitor""]",1069.33,{},262963,1,South America +2024-07-21,87495,918,"[""Wireless Mouse""]",329.06,"{"""": ""7%""}",240570,0,Africa +2024-06-30,87496,4545,"[""Monitor""]",4901.76,"{"""": ""22%""}",240450,1,North America +2024-06-26,87497,3766,"[""Wireless Mouse""]",3388.31,{},242113,1,South America +2023-07-02,87498,7942,"[""Tablet"", ""Laptop"", ""Monitor""]",1084.29,{},177716,0,North America +2024-12-13,87499,7139,"[""Headphones""]",873.57,{},137148,1,North America +2023-03-08,87500,9472,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3630.55,{},176356,1,Europe +2023-09-06,87501,2247,"[""Monitor"", ""Tablet"", ""Charger""]",2542.34,{},263814,0,Asia +2024-11-12,87502,3175,"[""Keyboard"", ""Headphones""]",1917.15,"{"""": ""10%""}",90496,0,Africa +2024-11-14,87503,6032,"[""Laptop""]",4005.94,"{""promo"": ""11%""}",21032,0,Asia +2023-10-06,87504,7339,"[""Charger""]",2811.51,"{""promo"": ""18%""}",37927,0,North America +2023-04-01,87505,4184,"[""Headphones""]",1051.88,{},166559,0,South America +2024-11-05,87506,1965,"[""Phone""]",277.34,{},222235,1,Asia +2023-07-11,87507,4585,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4356.43,{},201435,1,Africa +2024-12-15,87508,3201,"[""Wireless Mouse"", ""Tablet""]",405.64,"{"""": ""12%""}",136561,1,South America +2024-11-09,87509,7592,"[""Keyboard""]",661.52,{},62975,1,North America +2023-01-06,87510,5797,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2454.62,{},259718,0,North America +2023-07-04,87511,8757,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1713.81,"{""promo"": ""13%""}",153678,0,Asia +2023-03-20,87512,3220,"[""Charger""]",2382.34,"{"""": ""17%""}",206844,0,Asia +2023-01-06,87513,2366,"[""Headphones""]",2312.5,"{""seasonal"": ""15%""}",10374,1,South America +2024-07-30,87514,1337,"[""Headphones""]",1106.03,{},258375,1,Africa +2023-04-15,87515,8050,"[""Keyboard""]",4253.37,{},96265,0,Europe +2023-02-05,87516,680,"[""Headphones"", ""Wireless Mouse""]",4203.89,{},96329,1,South America +2024-04-14,87517,5888,"[""Monitor"", ""Headphones"", ""Charger""]",2870.76,{},53470,1,South America +2024-11-01,87518,1754,"[""Keyboard"", ""Charger""]",334.13,{},103251,1,North America +2023-06-27,87519,6789,"[""Monitor""]",1885.18,{},68978,1,Asia +2024-10-31,87520,6023,"[""Phone"", ""Headphones"", ""Charger""]",728.04,"{""promo"": ""11%""}",129982,0,Africa +2024-09-20,87521,5634,"[""Headphones""]",931.81,{},80717,1,North America +2023-08-26,87522,4224,"[""Keyboard"", ""Tablet""]",1435.58,{},229983,0,South America +2024-01-31,87523,6121,"[""Charger""]",3106.1,"{"""": ""26%""}",244941,0,North America +2024-05-29,87524,4774,"[""Monitor"", ""Keyboard""]",3053.97,{},212181,0,North America +2023-08-04,87525,5628,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",507.52,{},121295,1,Asia +2024-09-23,87526,3100,"[""Charger"", ""Phone"", ""Monitor""]",1847.22,"{"""": ""20%""}",259833,0,Europe +2023-08-05,87527,3594,"[""Monitor"", ""Headphones""]",2807.07,"{""seasonal"": ""24%""}",58160,1,South America +2023-08-17,87528,9825,"[""Monitor"", ""Laptop""]",1960.36,{},291876,0,Africa +2023-06-01,87529,4322,"[""Charger""]",2476.29,{},298483,0,Africa +2023-05-31,87530,1951,"[""Tablet""]",3765.34,{},102103,1,Europe +2024-01-11,87531,9037,"[""Wireless Mouse"", ""Monitor""]",885.92,"{""promo"": ""17%""}",80230,0,Europe +2023-08-10,87532,5421,"[""Monitor""]",480.36,"{""promo"": ""7%""}",154879,0,South America +2024-10-18,87533,3835,"[""Monitor"", ""Phone"", ""Laptop""]",1424.16,{},186471,1,Asia +2024-05-27,87534,7675,"[""Tablet"", ""Monitor"", ""Charger""]",4106.09,"{""promo"": ""24%""}",218484,1,North America +2024-08-20,87535,9821,"[""Wireless Mouse""]",2238.24,{},262365,1,Africa +2023-05-29,87536,2814,"[""Laptop"", ""Headphones"", ""Keyboard""]",1681.01,{},170446,0,Europe +2023-05-17,87537,4159,"[""Laptop""]",3682.62,{},179035,0,South America +2023-11-10,87538,2584,"[""Phone"", ""Keyboard"", ""Charger""]",3392.65,"{""seasonal"": ""11%""}",59738,0,Asia +2024-01-05,87539,5053,"[""Charger"", ""Keyboard""]",3448.65,{},242102,0,North America +2024-10-16,87540,967,"[""Wireless Mouse"", ""Phone""]",4524.98,{},159317,1,South America +2023-09-25,87541,6547,"[""Monitor"", ""Tablet""]",2167.68,{},129898,0,Africa +2023-06-01,87542,465,"[""Wireless Mouse"", ""Monitor""]",2816.89,"{""loyalty"": ""21%""}",162190,0,Asia +2024-09-05,87543,3429,"[""Monitor""]",106.18,{},139416,1,Europe +2024-09-14,87544,2959,"[""Charger"", ""Monitor"", ""Headphones""]",1394.38,"{""seasonal"": ""13%""}",78869,1,Africa +2023-06-20,87545,4900,"[""Keyboard""]",2023.14,{},147940,1,South America +2023-09-05,87546,8159,"[""Monitor"", ""Phone"", ""Charger""]",1850.78,{},27701,1,Africa +2024-12-04,87547,7020,"[""Tablet"", ""Wireless Mouse""]",1578.24,{},171249,1,Asia +2023-10-11,87548,5772,"[""Keyboard"", ""Tablet"", ""Headphones""]",3160.0,"{"""": ""26%""}",75150,0,Europe +2023-08-27,87549,2401,"[""Laptop"", ""Monitor""]",4446.22,{},156152,0,Africa +2024-10-06,87550,3229,"[""Charger""]",323.73,{},180740,1,Europe +2023-06-16,87551,1043,"[""Keyboard"", ""Headphones""]",3856.11,"{""promo"": ""24%""}",193144,0,Africa +2023-04-04,87552,1244,"[""Charger"", ""Phone""]",3162.63,{},178823,0,Africa +2023-03-21,87553,2602,"[""Monitor"", ""Tablet""]",3326.07,{},189580,1,Europe +2023-11-22,87554,8068,"[""Keyboard"", ""Monitor"", ""Charger""]",1396.18,{},128834,1,Asia +2024-07-18,87555,5626,"[""Laptop""]",2727.43,"{"""": ""26%""}",173167,1,Asia +2023-02-18,87556,9822,"[""Charger"", ""Tablet""]",979.03,{},152232,1,Europe +2024-06-08,87557,9184,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1728.51,"{""promo"": ""22%""}",180566,1,Asia +2024-10-19,87558,4627,"[""Phone"", ""Tablet""]",2532.18,{},104693,0,Asia +2023-09-17,87559,2835,"[""Phone""]",4818.55,{},153992,0,Europe +2023-08-09,87560,6757,"[""Headphones"", ""Monitor"", ""Tablet""]",3080.55,{},225706,1,Europe +2023-08-13,87561,3715,"[""Headphones"", ""Monitor"", ""Keyboard""]",2779.83,{},135397,0,Africa +2023-03-20,87562,541,"[""Charger"", ""Tablet"", ""Headphones""]",1259.67,"{"""": ""16%""}",32464,0,Africa +2023-11-26,87563,7818,"[""Keyboard"", ""Laptop"", ""Tablet""]",3215.81,{},72864,1,North America +2024-08-12,87564,336,"[""Tablet"", ""Phone""]",955.91,"{""promo"": ""9%""}",91355,1,South America +2023-01-05,87565,6057,"[""Headphones""]",4600.31,"{""seasonal"": ""29%""}",240313,1,Africa +2023-12-15,87566,2146,"[""Headphones""]",971.94,{},47173,1,Asia +2023-11-12,87567,2066,"[""Phone"", ""Monitor""]",3616.83,"{""loyalty"": ""30%""}",196485,1,South America +2023-03-08,87568,6698,"[""Monitor"", ""Tablet"", ""Laptop""]",280.93,{},31817,1,Asia +2023-03-19,87569,9949,"[""Laptop"", ""Charger"", ""Tablet""]",2465.59,{},171080,0,South America +2023-08-03,87570,1050,"[""Headphones"", ""Laptop""]",3906.71,"{""promo"": ""12%""}",148859,1,Asia +2023-04-14,87571,9157,"[""Keyboard"", ""Tablet""]",520.34,{},281560,0,Africa +2024-11-23,87572,150,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4467.24,"{"""": ""7%""}",159355,0,Europe +2024-10-30,87573,3841,"[""Headphones"", ""Charger"", ""Monitor""]",4798.03,"{""loyalty"": ""29%""}",158756,0,North America +2024-07-19,87574,4496,"[""Keyboard"", ""Laptop"", ""Charger""]",3150.89,{},166596,0,Africa +2023-05-11,87575,7577,"[""Monitor""]",4911.12,"{"""": ""26%""}",206259,0,Europe +2023-10-09,87576,4091,"[""Phone"", ""Monitor"", ""Charger""]",2083.74,"{""promo"": ""30%""}",167838,1,Africa +2024-04-25,87577,7471,"[""Laptop"", ""Keyboard"", ""Phone""]",3667.18,{},6569,1,North America +2024-12-08,87578,9663,"[""Charger""]",1815.42,"{""seasonal"": ""12%""}",201494,1,Europe +2024-09-02,87579,821,"[""Monitor"", ""Headphones"", ""Laptop""]",4132.31,{},292383,0,South America +2024-02-01,87580,1981,"[""Laptop"", ""Tablet"", ""Headphones""]",410.97,{},186256,1,North America +2024-06-04,87581,5327,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2819.06,"{""loyalty"": ""13%""}",62861,0,North America +2023-07-03,87582,7173,"[""Phone"", ""Wireless Mouse""]",2764.95,"{""seasonal"": ""26%""}",277002,1,North America +2023-09-23,87583,2744,"[""Monitor"", ""Keyboard"", ""Headphones""]",1114.04,{},234365,0,Africa +2024-08-22,87584,4484,"[""Wireless Mouse""]",3852.96,"{""seasonal"": ""27%""}",116357,0,South America +2023-11-04,87585,8147,"[""Phone"", ""Headphones"", ""Charger""]",4533.65,{},54858,1,Europe +2023-03-15,87586,4862,"[""Phone"", ""Monitor""]",4453.49,"{""seasonal"": ""30%""}",176033,1,Europe +2023-07-14,87587,9213,"[""Wireless Mouse"", ""Charger""]",4469.65,{},43853,0,Asia +2023-10-26,87588,5896,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",491.96,{},219093,1,Asia +2023-07-13,87589,5206,"[""Keyboard"", ""Phone""]",4042.29,{},117070,0,North America +2023-12-21,87590,4960,"[""Laptop""]",4754.86,{},150434,1,North America +2023-07-16,87591,8791,"[""Laptop""]",2577.87,"{""promo"": ""18%""}",117318,1,South America +2023-12-04,87592,6100,"[""Laptop"", ""Wireless Mouse""]",1642.41,{},7010,0,Asia +2023-07-21,87593,1175,"[""Keyboard""]",2947.98,{},109678,1,Europe +2024-07-06,87594,8162,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4701.76,{},243142,1,Europe +2024-06-13,87595,8336,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1048.91,{},172672,1,Africa +2023-06-17,87596,8840,"[""Headphones""]",2929.14,"{""seasonal"": ""15%""}",84382,0,North America +2024-07-27,87597,8441,"[""Laptop"", ""Keyboard""]",3645.59,{},267904,1,Europe +2023-08-27,87598,4351,"[""Keyboard"", ""Charger"", ""Monitor""]",1174.63,{},198770,0,North America +2023-10-06,87599,2189,"[""Monitor"", ""Wireless Mouse""]",4190.79,"{""loyalty"": ""21%""}",70313,1,Europe +2023-06-26,87600,1058,"[""Headphones""]",4538.69,"{"""": ""11%""}",221163,0,North America +2023-08-09,87601,1030,"[""Monitor"", ""Headphones""]",321.13,"{"""": ""18%""}",296243,0,Europe +2024-01-12,87602,3466,"[""Keyboard"", ""Monitor""]",1090.77,"{"""": ""6%""}",126688,0,South America +2024-06-12,87603,3210,"[""Keyboard"", ""Laptop""]",1597.94,"{"""": ""14%""}",148424,0,South America +2023-05-21,87604,3294,"[""Keyboard"", ""Charger"", ""Laptop""]",4472.76,"{"""": ""17%""}",260415,0,South America +2024-03-07,87605,9232,"[""Headphones"", ""Charger""]",713.77,{},109784,1,Asia +2023-06-18,87606,8224,"[""Tablet"", ""Phone"", ""Monitor""]",4078.43,{},30425,0,South America +2023-05-12,87607,6592,"[""Headphones""]",4426.68,{},90399,0,Europe +2023-08-17,87608,4829,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1892.03,{},108955,0,Europe +2023-04-13,87609,3557,"[""Monitor"", ""Headphones"", ""Charger""]",3866.43,{},217799,0,Africa +2024-04-10,87610,404,"[""Phone""]",1583.22,"{""promo"": ""14%""}",297317,1,South America +2023-12-11,87611,909,"[""Laptop""]",3602.84,"{""seasonal"": ""28%""}",242180,0,South America +2024-08-21,87612,7751,"[""Tablet"", ""Charger"", ""Monitor""]",677.94,"{""loyalty"": ""9%""}",2880,1,North America +2023-07-13,87613,6298,"[""Tablet"", ""Wireless Mouse""]",1636.49,{},79566,1,South America +2024-10-28,87614,1588,"[""Charger"", ""Monitor""]",1971.91,{},30134,0,Africa +2023-03-01,87615,8463,"[""Tablet"", ""Phone""]",2749.09,{},260361,1,Asia +2023-02-22,87616,7101,"[""Keyboard"", ""Headphones"", ""Monitor""]",788.07,"{""promo"": ""6%""}",14072,0,Europe +2024-06-02,87617,9151,"[""Keyboard"", ""Monitor""]",4480.76,{},214803,0,South America +2024-04-27,87618,9171,"[""Headphones"", ""Charger""]",4692.53,{},289562,0,Africa +2023-01-21,87619,1361,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",2322.86,"{""promo"": ""29%""}",167058,0,Africa +2024-01-07,87620,1291,"[""Charger"", ""Monitor"", ""Keyboard""]",1458.25,{},95668,0,South America +2024-03-07,87621,8478,"[""Laptop"", ""Keyboard"", ""Phone""]",2740.31,{},217262,1,South America +2024-12-25,87622,5863,"[""Keyboard""]",4387.21,"{""promo"": ""22%""}",37587,1,North America +2023-06-30,87623,3003,"[""Laptop"", ""Phone"", ""Keyboard""]",2895.75,"{""promo"": ""7%""}",165358,0,Europe +2023-07-15,87624,6811,"[""Laptop"", ""Keyboard""]",2409.58,"{""seasonal"": ""30%""}",91168,1,Africa +2023-10-08,87625,3155,"[""Headphones""]",4485.9,"{""loyalty"": ""21%""}",38164,0,North America +2023-09-02,87626,2763,"[""Headphones"", ""Tablet""]",503.56,"{"""": ""17%""}",133807,0,Africa +2023-01-07,87627,2077,"[""Monitor"", ""Tablet""]",699.61,{},161662,1,South America +2023-03-15,87628,8778,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3453.6,"{"""": ""13%""}",12519,1,Africa +2023-01-08,87629,9127,"[""Headphones""]",2192.58,{},145867,0,Asia +2024-09-09,87630,5881,"[""Laptop"", ""Keyboard""]",1886.78,{},182746,0,South America +2023-12-16,87631,6015,"[""Charger"", ""Laptop""]",2135.75,{},120949,1,South America +2024-01-30,87632,5557,"[""Charger"", ""Phone"", ""Keyboard""]",382.08,"{""loyalty"": ""18%""}",127152,1,Africa +2024-12-18,87633,1955,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4475.35,{},155475,0,Europe +2024-02-19,87634,7937,"[""Keyboard""]",3509.07,{},7523,1,Africa +2024-04-30,87635,3427,"[""Phone"", ""Keyboard""]",2331.76,"{""loyalty"": ""14%""}",214204,0,Europe +2024-10-22,87636,8325,"[""Wireless Mouse""]",1420.3,{},13886,1,Africa +2023-07-15,87637,3051,"[""Tablet""]",1057.36,"{""promo"": ""6%""}",124284,0,North America +2023-03-25,87638,2278,"[""Phone"", ""Laptop""]",4117.97,"{""seasonal"": ""19%""}",157068,0,Asia +2024-03-25,87639,3535,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1132.53,"{""seasonal"": ""14%""}",57601,1,Asia +2024-06-03,87640,2804,"[""Laptop""]",1205.47,{},15080,0,Europe +2024-04-13,87641,4376,"[""Wireless Mouse""]",257.99,{},68709,0,Europe +2023-03-29,87642,8570,"[""Laptop"", ""Tablet"", ""Keyboard""]",509.25,"{""seasonal"": ""23%""}",3130,1,Asia +2024-02-24,87643,3660,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1591.17,{},185701,1,South America +2024-12-27,87644,2430,"[""Laptop"", ""Headphones""]",512.36,{},1186,1,North America +2024-01-08,87645,467,"[""Phone"", ""Headphones"", ""Keyboard""]",3639.58,{},177840,0,Asia +2023-05-25,87646,8021,"[""Headphones""]",2751.12,{},56501,1,Europe +2023-07-29,87647,7594,"[""Keyboard"", ""Charger"", ""Tablet""]",4159.11,"{""seasonal"": ""30%""}",8172,0,South America +2023-03-29,87648,6168,"[""Keyboard"", ""Headphones"", ""Charger""]",186.89,"{""seasonal"": ""15%""}",225975,0,Asia +2024-06-16,87649,804,"[""Charger"", ""Wireless Mouse""]",4522.21,{},203996,0,South America +2024-11-04,87650,3804,"[""Monitor"", ""Tablet""]",685.33,{},276035,0,South America +2023-02-17,87651,6509,"[""Headphones"", ""Tablet"", ""Phone""]",4182.7,{},256879,0,North America +2024-10-03,87652,7451,"[""Keyboard"", ""Laptop""]",2341.85,"{""loyalty"": ""30%""}",95993,0,Africa +2023-06-24,87653,4334,"[""Headphones""]",412.8,{},214494,1,South America +2024-12-22,87654,5348,"[""Tablet"", ""Laptop"", ""Phone""]",3946.94,"{""loyalty"": ""25%""}",107405,0,South America +2023-05-02,87655,9047,"[""Phone""]",2889.81,{},61346,1,Africa +2024-03-17,87656,5951,"[""Charger""]",2194.01,"{""promo"": ""26%""}",57628,0,Europe +2023-02-27,87657,1245,"[""Wireless Mouse"", ""Keyboard""]",3618.9,"{""seasonal"": ""14%""}",189310,1,North America +2023-12-02,87658,4835,"[""Tablet"", ""Keyboard"", ""Headphones""]",2631.97,{},108978,0,Asia +2023-10-17,87659,9177,"[""Headphones""]",3853.55,"{""loyalty"": ""5%""}",272935,0,North America +2024-12-29,87660,6161,"[""Monitor""]",528.14,{},250666,0,South America +2024-11-05,87661,2492,"[""Laptop""]",653.62,"{""seasonal"": ""15%""}",46294,1,North America +2023-06-10,87662,8887,"[""Headphones"", ""Laptop""]",4022.35,"{"""": ""27%""}",216374,0,Europe +2024-03-15,87663,9035,"[""Wireless Mouse""]",3340.13,{},45568,0,Africa +2024-07-14,87664,4096,"[""Wireless Mouse""]",3088.02,"{""loyalty"": ""22%""}",181724,1,Africa +2023-02-22,87665,8433,"[""Laptop"", ""Charger""]",2938.94,{},61449,1,Asia +2024-06-25,87666,8328,"[""Headphones"", ""Wireless Mouse""]",1704.91,{},267850,0,Europe +2023-10-31,87667,4703,"[""Monitor""]",2135.69,{},283832,1,Asia +2023-07-23,87668,2174,"[""Wireless Mouse"", ""Laptop""]",2314.17,"{"""": ""23%""}",69469,0,North America +2024-05-25,87669,7938,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2875.81,{},59274,0,North America +2023-04-14,87670,6138,"[""Headphones""]",1103.8,{},3462,0,Europe +2024-11-28,87671,6238,"[""Wireless Mouse"", ""Tablet""]",1758.05,{},170895,1,Africa +2023-03-20,87672,4142,"[""Charger"", ""Headphones""]",881.93,"{"""": ""21%""}",272858,0,South America +2023-09-24,87673,8508,"[""Keyboard"", ""Monitor""]",3172.37,{},194514,1,South America +2023-03-28,87674,7841,"[""Tablet"", ""Keyboard""]",4971.48,"{""seasonal"": ""9%""}",224601,0,Europe +2023-08-25,87675,4097,"[""Phone""]",4194.64,{},106942,0,North America +2023-12-20,87676,7036,"[""Tablet""]",2592.89,"{""loyalty"": ""26%""}",199712,0,North America +2024-11-21,87677,546,"[""Phone""]",3410.4,"{""promo"": ""18%""}",84287,0,South America +2024-02-10,87678,4514,"[""Charger"", ""Headphones"", ""Monitor""]",4400.52,"{""loyalty"": ""23%""}",206422,0,Asia +2023-06-12,87679,9838,"[""Charger"", ""Phone"", ""Laptop""]",3362.86,{},129968,1,Europe +2023-04-07,87680,7295,"[""Phone"", ""Wireless Mouse""]",3195.2,"{""promo"": ""10%""}",121328,0,Europe +2023-02-27,87681,2071,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4309.96,{},295633,1,North America +2023-11-29,87682,4739,"[""Phone"", ""Charger"", ""Tablet""]",3296.15,{},91540,1,Europe +2023-04-26,87683,947,"[""Tablet"", ""Charger""]",1286.6,{},97657,0,North America +2024-06-14,87684,9293,"[""Headphones""]",1027.87,{},100648,1,Europe +2023-01-24,87685,7769,"[""Keyboard"", ""Laptop"", ""Charger""]",2292.64,{},83502,0,North America +2023-07-21,87686,5276,"[""Charger""]",88.62,{},214466,1,Africa +2023-10-12,87687,5074,"[""Monitor"", ""Tablet""]",4694.58,"{""promo"": ""13%""}",1161,0,Asia +2023-08-11,87688,104,"[""Wireless Mouse"", ""Charger""]",1804.56,"{""seasonal"": ""9%""}",232714,0,Europe +2023-02-17,87689,252,"[""Wireless Mouse"", ""Monitor""]",1935.11,{},93750,1,Africa +2023-07-02,87690,3827,"[""Phone""]",1950.99,{},212302,0,Europe +2023-07-19,87691,3564,"[""Phone"", ""Tablet"", ""Laptop""]",881.08,{},98918,1,South America +2023-06-04,87692,6223,"[""Monitor""]",432.47,{},295726,0,North America +2023-11-11,87693,5138,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4072.2,{},33748,1,Europe +2023-07-29,87694,2865,"[""Headphones"", ""Charger"", ""Laptop""]",1792.4,"{""loyalty"": ""22%""}",250187,0,North America +2023-04-18,87695,2929,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2135.82,"{""seasonal"": ""11%""}",13179,1,South America +2023-02-19,87696,3548,"[""Tablet""]",3350.44,{},201761,0,North America +2023-08-13,87697,6887,"[""Wireless Mouse""]",1857.87,{},103632,1,Asia +2024-01-23,87698,1158,"[""Phone"", ""Charger""]",565.51,"{""promo"": ""21%""}",282566,1,Europe +2024-12-12,87699,5135,"[""Phone""]",4288.85,"{"""": ""9%""}",139571,0,Europe +2024-09-08,87700,6619,"[""Wireless Mouse"", ""Laptop""]",4153.35,"{""loyalty"": ""29%""}",249183,0,North America +2024-05-21,87701,7141,"[""Keyboard"", ""Laptop""]",3900.88,{},176410,0,Asia +2023-09-01,87702,4575,"[""Wireless Mouse"", ""Monitor""]",1348.74,{},61657,0,Europe +2023-03-27,87703,6072,"[""Laptop""]",4865.45,"{""promo"": ""30%""}",189504,0,Africa +2023-02-16,87704,888,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3326.01,"{""loyalty"": ""27%""}",80608,0,Europe +2024-01-25,87705,2215,"[""Tablet"", ""Laptop""]",583.01,{},295713,1,South America +2024-05-30,87706,5932,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1724.73,"{"""": ""13%""}",293126,1,North America +2024-01-29,87707,4228,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",4819.4,{},77332,0,Europe +2023-02-15,87708,5266,"[""Tablet"", ""Laptop""]",1670.54,"{""promo"": ""24%""}",204424,0,South America +2024-04-10,87709,5430,"[""Tablet"", ""Laptop"", ""Charger""]",4463.47,{},3326,0,Europe +2024-11-21,87710,653,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3748.08,"{"""": ""16%""}",43129,1,South America +2023-04-10,87711,1745,"[""Headphones""]",141.94,"{""promo"": ""16%""}",78796,0,Europe +2023-06-22,87712,8494,"[""Tablet"", ""Monitor""]",600.92,{},211241,1,Africa +2024-03-27,87713,5822,"[""Wireless Mouse""]",177.44,{},175709,0,South America +2024-09-11,87714,3247,"[""Tablet"", ""Laptop""]",3635.8,{},115728,0,South America +2023-03-30,87715,616,"[""Wireless Mouse"", ""Charger""]",1382.02,"{""promo"": ""9%""}",137245,1,South America +2024-04-18,87716,7041,"[""Wireless Mouse""]",4360.08,"{""loyalty"": ""24%""}",208115,1,Africa +2023-06-09,87717,8851,"[""Laptop""]",764.55,"{"""": ""9%""}",260918,0,Africa +2023-01-24,87718,5697,"[""Phone"", ""Charger"", ""Tablet""]",4993.2,{},189799,0,North America +2024-11-10,87719,854,"[""Charger"", ""Keyboard""]",342.4,"{""loyalty"": ""11%""}",241459,0,Europe +2024-07-22,87720,7210,"[""Phone"", ""Wireless Mouse""]",3531.89,{},265394,0,North America +2024-06-26,87721,8389,"[""Wireless Mouse"", ""Monitor""]",1027.45,"{""promo"": ""18%""}",267320,0,South America +2023-11-27,87722,4023,"[""Keyboard"", ""Headphones"", ""Tablet""]",1770.97,{},114557,1,South America +2024-10-27,87723,7460,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3733.25,{},175306,1,South America +2023-02-11,87724,4027,"[""Wireless Mouse"", ""Monitor""]",4815.42,"{""promo"": ""7%""}",279479,0,Asia +2024-10-16,87725,1324,"[""Keyboard"", ""Wireless Mouse""]",333.96,{},166027,1,North America +2023-04-30,87726,2495,"[""Laptop"", ""Tablet""]",4516.84,{},204201,0,Europe +2024-12-30,87727,7759,"[""Tablet""]",680.2,{},216789,0,Asia +2023-01-23,87728,962,"[""Laptop""]",1165.38,{},273715,0,Europe +2024-08-06,87729,2501,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3878.18,{},14507,1,South America +2024-06-23,87730,7548,"[""Laptop""]",1706.86,"{""loyalty"": ""24%""}",211124,0,Asia +2024-09-24,87731,9216,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",352.65,"{""loyalty"": ""29%""}",66491,1,Africa +2023-02-24,87732,9957,"[""Headphones""]",533.17,{},281618,1,South America +2023-01-02,87733,391,"[""Keyboard"", ""Phone""]",854.15,"{""loyalty"": ""18%""}",299560,1,Asia +2023-06-08,87734,4500,"[""Phone""]",2559.2,"{"""": ""24%""}",32488,1,Europe +2024-08-27,87735,1434,"[""Keyboard"", ""Monitor""]",368.14,{},298868,0,South America +2023-01-07,87736,9954,"[""Monitor"", ""Headphones"", ""Laptop""]",3919.44,"{""loyalty"": ""10%""}",266004,0,Europe +2024-08-17,87737,8407,"[""Laptop"", ""Phone"", ""Monitor""]",4472.15,{},237309,1,South America +2024-01-26,87738,5109,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4645.39,{},113129,1,North America +2024-12-07,87739,9218,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3985.22,{},54629,0,Asia +2024-01-08,87740,3338,"[""Phone""]",1545.0,"{""seasonal"": ""16%""}",18969,1,South America +2024-07-04,87741,6495,"[""Wireless Mouse"", ""Keyboard""]",2637.11,"{"""": ""5%""}",267799,0,North America +2024-10-11,87742,320,"[""Tablet"", ""Charger""]",3887.31,{},263258,1,Africa +2024-04-19,87743,4894,"[""Headphones"", ""Keyboard""]",4209.31,"{""loyalty"": ""22%""}",56720,1,North America +2023-01-28,87744,7849,"[""Monitor""]",1101.65,"{""seasonal"": ""21%""}",186533,0,Europe +2023-02-21,87745,2821,"[""Headphones"", ""Phone""]",1054.82,{},279529,1,Africa +2023-05-11,87746,1113,"[""Headphones""]",1411.95,"{""promo"": ""27%""}",165815,0,North America +2023-01-19,87747,3454,"[""Laptop"", ""Keyboard""]",2236.63,{},113570,1,North America +2023-07-27,87748,8631,"[""Monitor"", ""Wireless Mouse""]",3659.17,{},158052,1,Europe +2024-08-15,87749,7082,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3565.99,"{""seasonal"": ""25%""}",157926,0,South America +2023-10-22,87750,5822,"[""Phone"", ""Monitor"", ""Tablet""]",2740.87,{},128579,1,Europe +2024-01-20,87751,560,"[""Tablet"", ""Charger"", ""Laptop""]",1544.61,"{""loyalty"": ""29%""}",1780,1,Africa +2023-10-07,87752,1788,"[""Headphones"", ""Keyboard""]",4614.34,"{""promo"": ""14%""}",1366,1,Asia +2024-01-05,87753,8627,"[""Laptop"", ""Headphones""]",1654.28,{},22858,1,Africa +2024-08-23,87754,1299,"[""Headphones"", ""Monitor""]",563.89,{},32937,0,North America +2023-04-12,87755,5434,"[""Headphones""]",2096.69,"{""seasonal"": ""30%""}",62282,1,Asia +2024-04-08,87756,1578,"[""Phone"", ""Charger""]",1233.62,{},294765,0,Europe +2024-12-29,87757,9953,"[""Tablet"", ""Headphones"", ""Keyboard""]",3132.4,"{"""": ""23%""}",233566,1,Europe +2023-04-18,87758,8930,"[""Charger"", ""Keyboard"", ""Headphones""]",1342.39,{},123338,0,Asia +2023-06-11,87759,1525,"[""Charger"", ""Phone"", ""Monitor""]",1088.69,{},217561,0,Africa +2024-06-06,87760,5903,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3286.16,"{"""": ""13%""}",84818,0,South America +2023-01-04,87761,6190,"[""Monitor"", ""Headphones""]",2689.87,"{""loyalty"": ""15%""}",206638,0,Europe +2024-11-04,87762,8345,"[""Charger"", ""Keyboard""]",320.64,{},146664,0,Europe +2023-02-25,87763,4950,"[""Phone"", ""Charger""]",2927.46,"{""seasonal"": ""12%""}",130695,1,Europe +2024-08-14,87764,173,"[""Tablet"", ""Monitor""]",3169.91,{},171010,0,North America +2024-08-07,87765,3185,"[""Tablet"", ""Headphones"", ""Charger""]",3025.16,"{""loyalty"": ""21%""}",21894,1,Africa +2024-10-14,87766,3424,"[""Tablet"", ""Charger"", ""Laptop""]",4213.03,{},259402,1,Africa +2024-07-02,87767,5328,"[""Charger"", ""Headphones""]",2416.41,"{""promo"": ""8%""}",222330,0,North America +2023-04-10,87768,6842,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",3934.87,{},62926,0,Africa +2024-05-23,87769,8854,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1067.29,{},252777,0,Africa +2024-12-01,87770,1590,"[""Tablet"", ""Laptop"", ""Keyboard""]",531.69,"{""promo"": ""5%""}",235896,1,Africa +2023-06-24,87771,6232,"[""Charger"", ""Tablet"", ""Headphones""]",1828.68,{},100482,0,Europe +2023-03-15,87772,2117,"[""Tablet"", ""Charger""]",4043.1,"{""promo"": ""9%""}",175430,0,Asia +2024-06-20,87773,9777,"[""Wireless Mouse"", ""Phone""]",739.5,"{"""": ""22%""}",216727,0,Asia +2024-05-01,87774,579,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3414.72,"{""loyalty"": ""20%""}",200239,1,Africa +2024-01-27,87775,451,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1143.41,{},61846,1,Africa +2023-02-13,87776,5686,"[""Tablet"", ""Monitor"", ""Phone""]",1104.96,"{"""": ""20%""}",92097,0,South America +2023-08-13,87777,6725,"[""Phone""]",3717.14,{},221877,1,Asia +2023-03-20,87778,4218,"[""Keyboard""]",2965.47,"{""seasonal"": ""6%""}",233970,0,Europe +2024-11-06,87779,1111,"[""Monitor"", ""Phone""]",3264.58,{},2890,0,Europe +2024-03-21,87780,3509,"[""Keyboard"", ""Phone"", ""Laptop""]",835.93,"{""seasonal"": ""27%""}",13076,1,Europe +2024-02-07,87781,2823,"[""Headphones"", ""Keyboard""]",731.37,"{""seasonal"": ""25%""}",220129,1,South America +2024-11-30,87782,9147,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1497.92,"{""promo"": ""28%""}",248393,0,Asia +2023-07-07,87783,1152,"[""Laptop""]",3001.74,"{""promo"": ""22%""}",73593,1,North America +2024-08-31,87784,2192,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1529.18,"{""loyalty"": ""8%""}",83089,0,Asia +2023-10-07,87785,1145,"[""Charger"", ""Laptop""]",3150.8,{},174493,0,Europe +2024-12-17,87786,5030,"[""Charger"", ""Phone""]",987.31,{},163446,0,North America +2024-03-10,87787,6050,"[""Phone"", ""Headphones"", ""Keyboard""]",3402.47,{},14505,0,South America +2023-04-23,87788,4567,"[""Tablet"", ""Monitor""]",4291.34,"{""promo"": ""13%""}",296786,0,South America +2024-03-12,87789,8903,"[""Phone"", ""Keyboard"", ""Charger""]",1422.5,{},156870,0,North America +2024-07-24,87790,3127,"[""Tablet"", ""Laptop""]",4932.41,{},64788,1,South America +2024-04-16,87791,422,"[""Keyboard"", ""Wireless Mouse""]",896.91,"{"""": ""10%""}",251469,1,Africa +2023-10-27,87792,6891,"[""Monitor""]",2998.65,"{""promo"": ""13%""}",186347,1,Africa +2023-03-17,87793,6957,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3308.29,{},81552,1,Asia +2024-03-26,87794,4650,"[""Laptop"", ""Keyboard"", ""Monitor""]",3171.14,"{""loyalty"": ""16%""}",125174,1,North America +2024-09-06,87795,8535,"[""Laptop"", ""Phone""]",1923.76,"{""seasonal"": ""6%""}",122777,1,Africa +2023-11-05,87796,68,"[""Phone"", ""Headphones"", ""Keyboard""]",3076.84,"{""promo"": ""23%""}",248331,1,North America +2023-06-13,87797,4573,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2562.1,{},82384,0,Africa +2023-10-30,87798,102,"[""Laptop"", ""Charger"", ""Keyboard""]",1704.73,"{""promo"": ""19%""}",89997,1,South America +2023-01-31,87799,2472,"[""Charger""]",3417.23,"{"""": ""20%""}",248301,1,North America +2024-10-04,87800,5523,"[""Tablet"", ""Phone""]",734.41,"{""promo"": ""17%""}",100560,1,Europe +2023-12-05,87801,7166,"[""Monitor"", ""Keyboard"", ""Laptop""]",1434.92,"{""promo"": ""15%""}",69551,1,Europe +2024-09-06,87802,8172,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1272.31,{},5357,0,South America +2024-05-07,87803,2490,"[""Tablet"", ""Charger""]",2408.68,"{""promo"": ""18%""}",227479,1,Europe +2024-02-24,87804,482,"[""Monitor""]",1786.23,"{""promo"": ""7%""}",118723,0,Europe +2023-09-08,87805,2874,"[""Monitor"", ""Phone"", ""Headphones""]",2172.03,{},291038,0,North America +2023-03-21,87806,9783,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2595.66,{},31837,0,Asia +2024-03-18,87807,7481,"[""Phone""]",1102.92,{},216658,1,Asia +2024-06-05,87808,3139,"[""Phone"", ""Wireless Mouse""]",1416.16,{},166810,0,Europe +2024-08-04,87809,6928,"[""Phone"", ""Keyboard""]",2943.05,{},73696,1,North America +2024-07-03,87810,7481,"[""Wireless Mouse""]",1939.29,"{""seasonal"": ""29%""}",290672,0,Asia +2024-05-21,87811,5950,"[""Wireless Mouse"", ""Charger""]",2698.86,"{""loyalty"": ""11%""}",162056,0,Asia +2023-06-07,87812,6597,"[""Headphones"", ""Tablet"", ""Laptop""]",2122.7,"{"""": ""24%""}",67425,1,Asia +2024-09-06,87813,5452,"[""Headphones""]",3624.75,{},132783,1,North America +2024-09-12,87814,8032,"[""Headphones""]",1849.47,"{""promo"": ""22%""}",174012,1,Europe +2023-07-25,87815,8422,"[""Headphones"", ""Wireless Mouse""]",2263.97,"{""promo"": ""27%""}",153525,1,Africa +2024-01-30,87816,9338,"[""Monitor""]",643.8,{},89207,1,Africa +2024-11-09,87817,7389,"[""Wireless Mouse""]",3973.01,{},174967,0,Africa +2024-03-15,87818,9153,"[""Monitor"", ""Tablet"", ""Keyboard""]",3369.61,"{"""": ""9%""}",291652,1,Africa +2024-11-23,87819,6209,"[""Tablet"", ""Phone""]",648.99,"{""loyalty"": ""20%""}",230202,0,North America +2024-01-17,87820,505,"[""Phone"", ""Laptop""]",157.21,{},138600,0,Asia +2023-06-26,87821,1194,"[""Wireless Mouse"", ""Headphones""]",3106.01,"{""loyalty"": ""23%""}",89645,1,Europe +2023-10-08,87822,5052,"[""Phone""]",687.19,"{""seasonal"": ""5%""}",157911,1,South America +2023-06-07,87823,90,"[""Keyboard""]",2722.86,"{""seasonal"": ""8%""}",16751,1,North America +2024-07-30,87824,1504,"[""Charger"", ""Keyboard""]",4563.21,{},193690,1,Asia +2023-05-04,87825,1257,"[""Charger""]",1174.75,"{""promo"": ""23%""}",109986,1,North America +2023-01-30,87826,3068,"[""Charger"", ""Tablet""]",3182.75,{},176877,1,Asia +2023-09-29,87827,8047,"[""Monitor""]",4509.62,{},120203,1,Africa +2023-08-16,87828,4767,"[""Keyboard"", ""Headphones""]",4102.21,{},89832,0,Europe +2024-06-24,87829,6849,"[""Laptop"", ""Monitor"", ""Charger""]",250.55,{},244942,1,South America +2023-03-04,87830,1845,"[""Charger""]",204.28,"{""loyalty"": ""27%""}",155719,1,Europe +2023-08-06,87831,5160,"[""Laptop"", ""Tablet""]",4428.41,"{""loyalty"": ""23%""}",173339,0,Europe +2024-08-09,87832,3688,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2624.65,"{""loyalty"": ""21%""}",140798,0,Africa +2023-05-23,87833,3611,"[""Charger"", ""Wireless Mouse""]",3599.7,"{""seasonal"": ""28%""}",221834,1,Africa +2023-06-18,87834,9902,"[""Headphones""]",3266.68,"{""seasonal"": ""30%""}",109893,1,Asia +2024-03-10,87835,4620,"[""Monitor"", ""Keyboard""]",4913.06,"{"""": ""12%""}",246529,1,Africa +2023-02-23,87836,1687,"[""Headphones"", ""Tablet""]",699.85,"{""loyalty"": ""8%""}",247641,1,Europe +2024-08-18,87837,1560,"[""Phone""]",1047.09,"{""seasonal"": ""25%""}",109006,1,South America +2023-05-24,87838,1371,"[""Headphones"", ""Keyboard""]",326.98,"{"""": ""11%""}",96800,0,South America +2023-06-15,87839,3401,"[""Wireless Mouse"", ""Keyboard""]",1952.22,"{""promo"": ""6%""}",186542,0,North America +2023-06-17,87840,1859,"[""Headphones"", ""Phone"", ""Laptop""]",1512.24,{},238980,1,North America +2023-12-25,87841,6457,"[""Keyboard""]",3973.93,"{""loyalty"": ""8%""}",79648,1,Asia +2024-06-24,87842,5762,"[""Tablet"", ""Laptop""]",4194.47,"{""promo"": ""22%""}",199443,0,South America +2024-03-19,87843,5452,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",4129.75,{},36152,1,Europe +2024-09-09,87844,951,"[""Headphones"", ""Laptop"", ""Keyboard""]",3786.85,"{""loyalty"": ""22%""}",151647,1,North America +2023-05-21,87845,9180,"[""Tablet"", ""Monitor""]",1142.24,{},22077,1,Asia +2024-08-23,87846,9834,"[""Charger"", ""Monitor""]",730.31,{},134389,0,South America +2023-01-31,87847,1433,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4940.65,{},263202,1,Asia +2024-12-13,87848,4933,"[""Tablet"", ""Monitor""]",2668.67,"{"""": ""19%""}",297796,1,North America +2024-03-13,87849,2822,"[""Tablet"", ""Phone""]",294.03,"{""seasonal"": ""30%""}",253253,0,North America +2024-03-09,87850,9703,"[""Wireless Mouse""]",4333.02,{},230181,1,Africa +2024-01-14,87851,7055,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4677.54,"{""seasonal"": ""23%""}",13910,0,Africa +2024-12-04,87852,3416,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1374.59,{},126800,1,Asia +2023-08-21,87853,9088,"[""Monitor"", ""Headphones""]",2798.71,{},17522,1,Africa +2023-04-26,87854,504,"[""Keyboard""]",4367.12,{},38671,0,Asia +2023-12-17,87855,2016,"[""Laptop""]",4416.97,{},201655,1,Asia +2023-03-17,87856,5291,"[""Tablet""]",1338.95,{},191411,0,Europe +2024-05-28,87857,6467,"[""Tablet""]",691.79,"{""seasonal"": ""12%""}",28672,0,South America +2024-03-23,87858,5848,"[""Monitor""]",4944.04,{},272011,0,Asia +2023-10-26,87859,7351,"[""Monitor"", ""Laptop"", ""Keyboard""]",4270.64,{},224002,1,Asia +2023-02-18,87860,7254,"[""Wireless Mouse""]",2119.03,{},150258,0,South America +2024-05-31,87861,1336,"[""Phone""]",2807.71,{},256281,0,Asia +2024-12-23,87862,3954,"[""Charger"", ""Laptop"", ""Monitor""]",4490.71,"{""loyalty"": ""15%""}",169915,1,Asia +2024-05-15,87863,1183,"[""Charger""]",2538.43,{},243581,1,Europe +2023-04-07,87864,1661,"[""Phone"", ""Charger""]",2853.83,{},12274,1,Europe +2024-02-12,87865,268,"[""Phone""]",4850.96,{},264854,1,Asia +2024-10-18,87866,2686,"[""Charger""]",4763.06,"{""seasonal"": ""5%""}",275379,0,Africa +2023-02-21,87867,6419,"[""Charger"", ""Keyboard""]",148.46,"{""seasonal"": ""25%""}",71759,1,South America +2024-03-30,87868,6002,"[""Headphones""]",670.75,{},202249,1,Africa +2024-05-06,87869,244,"[""Wireless Mouse"", ""Keyboard""]",350.44,"{""seasonal"": ""21%""}",221652,1,Europe +2024-11-16,87870,9921,"[""Wireless Mouse"", ""Monitor""]",2184.54,{},291051,0,Europe +2023-09-22,87871,187,"[""Headphones"", ""Monitor""]",4791.37,{},29766,0,South America +2023-02-07,87872,7383,"[""Laptop"", ""Phone""]",1571.86,{},225996,0,Asia +2024-11-18,87873,1738,"[""Headphones"", ""Keyboard"", ""Laptop""]",4585.14,"{""loyalty"": ""15%""}",265441,0,North America +2023-05-29,87874,2688,"[""Keyboard""]",3606.77,"{""promo"": ""14%""}",233576,1,Europe +2023-02-21,87875,3794,"[""Monitor"", ""Laptop""]",489.95,{},208830,0,South America +2024-09-04,87876,3544,"[""Charger"", ""Wireless Mouse""]",1923.16,"{""loyalty"": ""18%""}",128215,0,South America +2024-07-15,87877,9093,"[""Phone""]",3598.27,"{""promo"": ""29%""}",56351,1,Europe +2024-06-02,87878,4273,"[""Wireless Mouse"", ""Keyboard""]",4936.67,{},179131,1,Europe +2024-03-15,87879,1893,"[""Keyboard"", ""Laptop"", ""Tablet""]",731.67,{},232155,0,Asia +2023-09-08,87880,8345,"[""Keyboard"", ""Tablet"", ""Monitor""]",3335.86,{},287058,1,South America +2024-11-11,87881,1146,"[""Headphones""]",1256.28,{},116892,0,South America +2024-07-14,87882,2716,"[""Monitor"", ""Laptop""]",4716.05,{},213741,0,North America +2024-04-09,87883,5873,"[""Headphones"", ""Phone"", ""Charger""]",4636.1,{},29632,0,North America +2024-02-21,87884,5452,"[""Charger""]",3070.36,{},75962,0,Asia +2023-05-20,87885,197,"[""Charger""]",4427.88,"{"""": ""11%""}",96622,0,Asia +2024-02-12,87886,8736,"[""Keyboard""]",187.22,"{"""": ""16%""}",270930,0,South America +2023-03-17,87887,3516,"[""Headphones"", ""Wireless Mouse""]",1611.58,"{""promo"": ""9%""}",28373,1,Europe +2023-07-01,87888,437,"[""Charger"", ""Tablet""]",2317.64,{},218364,1,South America +2024-07-09,87889,1000,"[""Laptop"", ""Wireless Mouse""]",4645.68,"{""loyalty"": ""16%""}",26011,1,Europe +2024-06-23,87890,8898,"[""Monitor""]",3332.39,{},223392,0,Europe +2024-02-25,87891,7234,"[""Keyboard"", ""Wireless Mouse""]",1850.28,{},249199,1,Africa +2024-05-28,87892,6594,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4677.43,"{""loyalty"": ""28%""}",276147,1,Asia +2023-11-09,87893,132,"[""Keyboard""]",4049.66,"{""loyalty"": ""6%""}",111037,1,Africa +2024-08-25,87894,2152,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3545.61,"{"""": ""23%""}",131963,0,Europe +2024-01-31,87895,2855,"[""Charger""]",2997.78,{},184979,0,Africa +2024-09-30,87896,9000,"[""Charger"", ""Laptop""]",632.96,{},158692,1,Europe +2023-03-17,87897,2069,"[""Charger"", ""Laptop""]",3948.62,{},20756,1,Africa +2023-07-03,87898,8375,"[""Tablet"", ""Headphones""]",698.05,{},135730,0,Asia +2024-04-14,87899,9506,"[""Headphones""]",1901.96,{},164193,1,South America +2024-11-03,87900,8799,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3219.62,"{""promo"": ""16%""}",143451,0,North America +2024-04-26,87901,6605,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4905.77,"{"""": ""24%""}",6764,0,Europe +2023-07-13,87902,4882,"[""Wireless Mouse"", ""Keyboard""]",2365.98,"{""promo"": ""24%""}",15115,0,Europe +2023-12-01,87903,5751,"[""Headphones"", ""Monitor"", ""Keyboard""]",3187.89,"{""seasonal"": ""11%""}",177587,0,Africa +2023-06-27,87904,9357,"[""Tablet"", ""Headphones"", ""Monitor""]",4257.57,"{""seasonal"": ""23%""}",51635,1,Europe +2023-08-05,87905,1487,"[""Keyboard""]",3982.08,{},295639,1,Europe +2024-04-16,87906,8742,"[""Wireless Mouse""]",1196.65,"{""loyalty"": ""15%""}",149754,0,Europe +2024-03-29,87907,753,"[""Keyboard""]",2445.58,"{""seasonal"": ""20%""}",260899,0,Africa +2024-05-27,87908,1316,"[""Phone"", ""Monitor"", ""Charger""]",1502.02,{},40258,1,Europe +2023-02-27,87909,8604,"[""Headphones""]",2789.93,"{""promo"": ""6%""}",96564,0,Africa +2023-09-21,87910,8677,"[""Wireless Mouse""]",4279.04,{},162797,1,Europe +2023-11-03,87911,9189,"[""Keyboard"", ""Charger""]",901.94,{},33405,1,Asia +2023-11-07,87912,4128,"[""Keyboard"", ""Tablet""]",209.71,{},130390,0,Asia +2024-10-31,87913,9835,"[""Monitor""]",3365.86,{},249406,0,South America +2023-04-07,87914,6589,"[""Tablet"", ""Keyboard""]",2410.03,{},133784,0,South America +2024-02-13,87915,2136,"[""Headphones"", ""Keyboard"", ""Laptop""]",456.71,"{""loyalty"": ""15%""}",94621,0,South America +2023-12-02,87916,9601,"[""Headphones""]",4018.96,"{""promo"": ""13%""}",57259,1,South America +2024-01-12,87917,309,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4660.24,{},224446,0,North America +2023-11-30,87918,8690,"[""Monitor"", ""Tablet""]",4417.58,"{""loyalty"": ""27%""}",152199,1,North America +2024-12-26,87919,8575,"[""Phone"", ""Headphones""]",735.33,{},57592,1,Africa +2023-03-24,87920,2617,"[""Charger""]",3506.29,"{""seasonal"": ""28%""}",241571,0,Asia +2024-04-03,87921,6025,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4156.16,"{""seasonal"": ""16%""}",148618,1,North America +2024-02-01,87922,2389,"[""Monitor""]",2289.94,"{""seasonal"": ""25%""}",254793,0,Africa +2024-11-21,87923,3786,"[""Headphones"", ""Phone"", ""Charger""]",608.1,"{""seasonal"": ""17%""}",9917,0,Europe +2024-11-27,87924,2808,"[""Phone"", ""Tablet"", ""Headphones""]",284.53,"{"""": ""13%""}",14872,1,Europe +2023-01-13,87925,4601,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3528.99,{},293092,0,Asia +2023-07-07,87926,3564,"[""Tablet"", ""Wireless Mouse""]",4337.32,"{""promo"": ""19%""}",129822,0,Europe +2024-08-03,87927,3959,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4562.96,"{""promo"": ""25%""}",11801,1,South America +2023-12-16,87928,9421,"[""Monitor"", ""Laptop""]",69.4,{},292253,0,Africa +2024-07-15,87929,69,"[""Wireless Mouse"", ""Laptop""]",2843.48,"{"""": ""10%""}",168329,0,Europe +2023-07-20,87930,7857,"[""Keyboard"", ""Laptop"", ""Phone""]",3405.64,"{""loyalty"": ""28%""}",150274,0,Africa +2024-10-30,87931,1952,"[""Headphones"", ""Charger""]",4185.79,{},228408,1,Europe +2023-12-20,87932,5497,"[""Laptop""]",3246.5,"{""seasonal"": ""26%""}",78404,1,Europe +2024-12-20,87933,1793,"[""Keyboard""]",336.28,"{"""": ""17%""}",14685,0,Africa +2023-10-30,87934,6316,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1439.67,{},163780,0,Asia +2024-11-07,87935,8879,"[""Charger"", ""Wireless Mouse""]",2013.9,"{"""": ""27%""}",190466,0,Africa +2024-01-20,87936,778,"[""Keyboard""]",869.91,"{"""": ""27%""}",149674,0,Asia +2024-02-18,87937,3460,"[""Phone""]",2689.22,{},284492,0,Africa +2024-12-02,87938,1330,"[""Phone""]",4406.09,"{"""": ""29%""}",12938,0,Asia +2023-04-08,87939,2031,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4283.28,{},139398,0,North America +2024-06-09,87940,9739,"[""Headphones"", ""Phone""]",210.56,"{"""": ""22%""}",5064,1,North America +2024-10-23,87941,4582,"[""Headphones""]",795.4,"{"""": ""21%""}",93120,0,Africa +2023-03-20,87942,7809,"[""Keyboard""]",522.23,"{""promo"": ""11%""}",281852,0,Asia +2024-10-01,87943,8265,"[""Headphones"", ""Phone"", ""Tablet""]",2617.79,"{"""": ""9%""}",103462,0,South America +2023-12-25,87944,4146,"[""Charger"", ""Keyboard"", ""Monitor""]",4020.21,{},54663,0,North America +2023-05-22,87945,1665,"[""Phone""]",756.35,{},170444,1,Europe +2023-09-25,87946,808,"[""Tablet""]",2908.69,{},296755,1,North America +2023-09-13,87947,2690,"[""Wireless Mouse"", ""Monitor""]",4878.08,{},280896,1,Europe +2024-06-14,87948,6341,"[""Keyboard"", ""Tablet"", ""Monitor""]",2846.72,{},99848,1,South America +2023-01-09,87949,2837,"[""Laptop""]",3948.18,"{""seasonal"": ""29%""}",170529,1,North America +2023-04-21,87950,8057,"[""Laptop"", ""Keyboard""]",3451.53,"{"""": ""18%""}",135342,0,Asia +2024-03-09,87951,7932,"[""Wireless Mouse"", ""Headphones""]",3103.98,"{"""": ""22%""}",171693,0,South America +2023-02-20,87952,4580,"[""Wireless Mouse"", ""Charger""]",2136.02,"{""seasonal"": ""5%""}",149113,1,Africa +2024-09-06,87953,7485,"[""Tablet""]",1819.98,{},12283,1,North America +2023-02-09,87954,6051,"[""Monitor"", ""Laptop""]",3910.06,{},43748,1,South America +2024-04-21,87955,6316,"[""Wireless Mouse"", ""Laptop""]",2672.47,{},258971,0,Africa +2024-09-17,87956,4265,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",463.26,{},28634,1,South America +2023-03-21,87957,5946,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2771.7,{},93794,0,South America +2023-05-07,87958,6234,"[""Phone""]",2745.98,{},271862,0,Asia +2024-06-09,87959,5516,"[""Headphones"", ""Monitor"", ""Charger""]",1812.75,"{""loyalty"": ""28%""}",87468,0,Europe +2024-01-23,87960,5411,"[""Headphones"", ""Laptop"", ""Phone""]",1233.08,"{"""": ""5%""}",119573,1,North America +2024-10-05,87961,4003,"[""Monitor"", ""Tablet""]",4754.57,"{""promo"": ""6%""}",259202,0,South America +2023-12-11,87962,2178,"[""Keyboard"", ""Tablet""]",799.95,"{""seasonal"": ""6%""}",9369,1,Europe +2023-02-27,87963,8816,"[""Phone"", ""Monitor""]",1365.84,"{"""": ""6%""}",132776,0,Africa +2024-12-23,87964,4489,"[""Laptop"", ""Charger"", ""Headphones""]",3160.96,{},202410,0,Africa +2023-02-23,87965,2376,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4886.08,{},109637,1,Europe +2023-06-27,87966,745,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",837.11,{},109570,0,Europe +2023-07-19,87967,5289,"[""Laptop""]",3965.97,"{""seasonal"": ""26%""}",166264,0,Africa +2024-05-13,87968,1512,"[""Charger"", ""Headphones""]",845.9,{},276511,0,Africa +2023-04-17,87969,9769,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1778.25,{},140158,1,Asia +2024-07-08,87970,905,"[""Headphones""]",2709.64,{},157689,1,Europe +2023-03-16,87971,4289,"[""Laptop""]",1270.32,"{""seasonal"": ""16%""}",33008,1,South America +2024-06-26,87972,6155,"[""Headphones"", ""Tablet""]",4532.88,{},45722,1,North America +2024-02-23,87973,1459,"[""Phone""]",1916.96,{},252555,0,South America +2024-07-23,87974,5429,"[""Headphones"", ""Tablet""]",3266.76,"{""loyalty"": ""7%""}",3455,1,Africa +2023-06-28,87975,5302,"[""Headphones"", ""Monitor"", ""Laptop""]",878.12,{},159634,0,Europe +2023-02-20,87976,1110,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",2390.78,"{""promo"": ""10%""}",241555,1,South America +2024-09-11,87977,7161,"[""Charger"", ""Monitor""]",345.79,{},42014,1,Asia +2024-03-30,87978,9525,"[""Monitor""]",167.22,{},136356,1,Asia +2023-01-16,87979,3847,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2539.29,{},68658,1,Asia +2023-05-23,87980,8418,"[""Monitor""]",3680.14,"{""promo"": ""27%""}",254532,0,Africa +2024-09-14,87981,3699,"[""Charger"", ""Headphones""]",2780.16,{},10379,1,Europe +2023-02-12,87982,4289,"[""Headphones""]",1629.35,"{""loyalty"": ""22%""}",49198,0,Africa +2024-01-22,87983,8135,"[""Phone"", ""Keyboard"", ""Monitor""]",2388.41,{},114209,0,North America +2024-12-09,87984,2388,"[""Headphones""]",192.75,"{""seasonal"": ""16%""}",223261,1,Africa +2023-12-06,87985,6311,"[""Keyboard"", ""Monitor""]",1925.07,{},273316,1,North America +2024-02-08,87986,2412,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4742.25,"{""loyalty"": ""7%""}",64916,0,South America +2024-06-05,87987,1995,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",620.59,{},178638,1,Asia +2024-03-19,87988,3455,"[""Monitor""]",908.55,"{""promo"": ""24%""}",283664,1,Africa +2023-12-18,87989,7,"[""Wireless Mouse"", ""Tablet""]",1997.71,{},15363,1,North America +2024-01-21,87990,6195,"[""Keyboard"", ""Wireless Mouse""]",2665.02,{},239614,1,Europe +2023-02-19,87991,4647,"[""Headphones"", ""Charger"", ""Laptop""]",2145.65,{},47789,1,Europe +2023-01-14,87992,2616,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",983.73,{},181093,1,South America +2023-04-20,87993,4490,"[""Wireless Mouse"", ""Tablet""]",3176.0,{},163200,0,South America +2023-07-08,87994,3501,"[""Wireless Mouse"", ""Keyboard""]",290.77,{},109174,1,South America +2023-02-04,87995,413,"[""Tablet""]",4513.96,"{"""": ""14%""}",209259,0,Europe +2023-09-22,87996,6798,"[""Wireless Mouse"", ""Tablet""]",145.48,"{""promo"": ""24%""}",50577,1,Africa +2023-04-02,87997,7652,"[""Wireless Mouse""]",906.47,{},82022,0,Africa +2024-04-15,87998,6797,"[""Laptop"", ""Charger"", ""Tablet""]",845.81,"{""promo"": ""6%""}",28026,0,Africa +2023-04-18,87999,4405,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2720.22,{},167212,1,South America +2024-02-05,88000,9501,"[""Phone""]",1564.32,{},282202,1,South America +2023-07-14,88001,6824,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",84.0,{},180865,1,South America +2023-06-09,88002,2724,"[""Laptop"", ""Charger""]",3745.42,"{""promo"": ""10%""}",108441,0,Africa +2024-08-07,88003,379,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2387.01,{},149897,1,South America +2023-01-26,88004,646,"[""Phone"", ""Headphones""]",4612.73,"{""loyalty"": ""20%""}",102712,0,Asia +2023-03-17,88005,1904,"[""Monitor"", ""Tablet"", ""Charger""]",1562.14,"{"""": ""16%""}",190595,0,North America +2023-09-17,88006,8919,"[""Tablet"", ""Charger""]",2239.02,{},65440,0,Europe +2024-06-09,88007,566,"[""Tablet"", ""Charger"", ""Keyboard""]",1072.66,"{""promo"": ""30%""}",215812,1,South America +2024-09-10,88008,5422,"[""Laptop""]",3361.61,{},105764,1,Africa +2024-11-22,88009,2929,"[""Phone"", ""Monitor""]",1896.91,"{""seasonal"": ""24%""}",257877,0,North America +2024-09-05,88010,87,"[""Laptop"", ""Phone""]",2031.64,"{"""": ""8%""}",127221,0,Africa +2023-06-17,88011,1142,"[""Headphones"", ""Tablet""]",75.71,{},122337,1,Africa +2023-01-21,88012,4098,"[""Keyboard"", ""Monitor""]",1842.56,{},161544,1,South America +2024-09-01,88013,3510,"[""Phone"", ""Monitor""]",4497.61,{},297091,1,South America +2023-12-26,88014,8989,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4718.51,"{""seasonal"": ""9%""}",41873,0,North America +2024-04-29,88015,5496,"[""Charger"", ""Monitor""]",2141.14,"{""seasonal"": ""7%""}",253846,1,Africa +2024-07-15,88016,2617,"[""Keyboard"", ""Phone"", ""Charger""]",1575.56,{},256222,1,South America +2024-07-31,88017,9954,"[""Charger""]",1639.09,"{""promo"": ""9%""}",18475,1,Europe +2024-06-19,88018,8709,"[""Headphones""]",3045.18,"{"""": ""16%""}",89705,1,Africa +2023-08-13,88019,5212,"[""Monitor""]",2794.26,{},62808,1,Europe +2024-11-18,88020,5041,"[""Charger"", ""Keyboard"", ""Phone""]",624.18,{},108968,1,Europe +2023-06-16,88021,5531,"[""Monitor"", ""Tablet"", ""Headphones""]",2379.76,{},127634,1,Africa +2023-03-31,88022,7882,"[""Tablet"", ""Keyboard"", ""Charger""]",4429.27,{},108797,0,North America +2024-10-07,88023,8916,"[""Laptop"", ""Monitor""]",1770.7,{},126242,0,Asia +2024-12-29,88024,2869,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1698.23,"{""promo"": ""22%""}",28585,0,Africa +2024-02-13,88025,5550,"[""Monitor"", ""Headphones""]",3645.75,"{""loyalty"": ""21%""}",96401,1,Europe +2023-07-01,88026,6498,"[""Charger""]",629.73,{},87683,0,South America +2023-09-05,88027,576,"[""Monitor""]",1498.7,{},284955,0,Africa +2024-03-26,88028,3022,"[""Keyboard""]",2811.53,"{""seasonal"": ""13%""}",138737,1,North America +2023-12-31,88029,8916,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",701.41,{},125886,0,North America +2024-11-18,88030,2558,"[""Laptop""]",1136.5,"{""loyalty"": ""20%""}",240433,0,North America +2023-10-07,88031,7131,"[""Headphones"", ""Phone""]",515.28,{},164166,0,Africa +2024-10-04,88032,4270,"[""Phone""]",593.68,"{""loyalty"": ""9%""}",297690,1,Europe +2023-06-07,88033,8880,"[""Headphones"", ""Charger""]",3805.14,{},211679,1,Europe +2023-03-15,88034,9382,"[""Monitor""]",2637.4,{},240122,1,South America +2023-10-25,88035,4929,"[""Keyboard"", ""Phone"", ""Laptop""]",1512.18,{},142666,0,North America +2024-08-21,88036,5182,"[""Monitor""]",4761.63,{},13053,1,Europe +2024-03-23,88037,9945,"[""Keyboard"", ""Tablet"", ""Monitor""]",1862.74,{},178474,0,North America +2023-03-27,88038,1260,"[""Laptop""]",1027.18,{},163874,1,Asia +2024-07-08,88039,4586,"[""Wireless Mouse"", ""Keyboard""]",3576.89,{},115151,0,Asia +2023-02-15,88040,5729,"[""Headphones"", ""Keyboard"", ""Monitor""]",1423.93,"{""loyalty"": ""16%""}",192824,1,Africa +2024-09-23,88041,4097,"[""Charger"", ""Monitor"", ""Laptop""]",1437.39,"{""promo"": ""21%""}",270234,0,Europe +2023-04-07,88042,1243,"[""Keyboard"", ""Monitor""]",1453.92,{},295401,1,Europe +2024-12-27,88043,7379,"[""Tablet"", ""Keyboard"", ""Laptop""]",2974.28,"{"""": ""17%""}",108815,1,South America +2023-05-28,88044,3283,"[""Laptop"", ""Headphones"", ""Phone""]",4116.33,"{""promo"": ""19%""}",169771,1,North America +2023-07-16,88045,335,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",105.0,{},237814,0,Africa +2023-12-02,88046,4901,"[""Tablet"", ""Wireless Mouse""]",516.65,{},70642,0,Africa +2023-10-24,88047,6733,"[""Laptop"", ""Keyboard""]",785.71,{},241672,0,South America +2023-01-05,88048,588,"[""Headphones""]",4084.92,"{"""": ""6%""}",22755,1,Africa +2023-11-20,88049,7429,"[""Laptop"", ""Headphones""]",4805.65,"{""promo"": ""21%""}",86843,0,North America +2023-02-24,88050,80,"[""Headphones"", ""Monitor""]",2269.97,"{""seasonal"": ""20%""}",25998,1,South America +2023-03-23,88051,4242,"[""Tablet"", ""Monitor""]",2054.25,"{""loyalty"": ""28%""}",216265,0,Asia +2024-06-20,88052,9919,"[""Charger"", ""Wireless Mouse""]",1035.54,{},256003,0,North America +2023-05-24,88053,7734,"[""Headphones"", ""Laptop"", ""Tablet""]",4013.86,{},242394,1,Asia +2024-02-18,88054,6644,"[""Tablet"", ""Charger"", ""Laptop""]",383.37,"{""loyalty"": ""8%""}",20878,1,North America +2023-05-27,88055,6600,"[""Headphones""]",1446.74,"{""promo"": ""6%""}",213104,1,Asia +2024-05-15,88056,1371,"[""Phone""]",1728.41,{},164856,0,Africa +2023-11-05,88057,6305,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",65.78,{},133682,1,Europe +2023-12-30,88058,8200,"[""Keyboard"", ""Phone""]",1239.61,{},201620,1,Asia +2024-04-06,88059,8503,"[""Laptop"", ""Wireless Mouse""]",492.09,"{""seasonal"": ""28%""}",233072,1,Europe +2024-10-18,88060,7951,"[""Keyboard""]",111.54,"{""seasonal"": ""8%""}",189084,0,South America +2023-01-23,88061,5261,"[""Monitor""]",3327.02,{},281164,0,South America +2023-11-22,88062,9565,"[""Wireless Mouse""]",3329.05,"{"""": ""24%""}",165000,1,South America +2023-01-26,88063,7575,"[""Wireless Mouse"", ""Laptop""]",805.39,{},262707,0,South America +2023-02-23,88064,76,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",199.08,"{""promo"": ""8%""}",7255,0,Europe +2023-04-15,88065,6868,"[""Monitor"", ""Headphones""]",908.27,"{""loyalty"": ""10%""}",164666,0,South America +2024-02-21,88066,604,"[""Phone"", ""Tablet"", ""Keyboard""]",3969.6,{},163304,1,Europe +2023-07-07,88067,7806,"[""Charger"", ""Phone"", ""Keyboard""]",4819.3,{},231568,1,Asia +2024-03-16,88068,7769,"[""Laptop"", ""Charger""]",2400.67,"{""loyalty"": ""21%""}",52716,0,Asia +2024-09-25,88069,6758,"[""Monitor""]",1451.32,"{"""": ""27%""}",22453,1,South America +2023-04-14,88070,8767,"[""Keyboard""]",4574.79,"{""loyalty"": ""21%""}",72520,0,Europe +2023-01-14,88071,9433,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4823.84,{},35482,0,South America +2024-11-30,88072,5172,"[""Monitor""]",4731.02,{},127764,1,Asia +2024-11-19,88073,5622,"[""Keyboard"", ""Laptop"", ""Charger""]",1764.26,"{"""": ""14%""}",154711,0,South America +2023-04-17,88074,9646,"[""Charger"", ""Laptop""]",3190.71,{},51954,1,Asia +2023-09-22,88075,5289,"[""Wireless Mouse""]",3969.46,"{""seasonal"": ""11%""}",93099,1,South America +2024-02-07,88076,359,"[""Monitor"", ""Phone""]",1425.15,"{"""": ""12%""}",192886,0,Europe +2023-07-19,88077,9203,"[""Charger""]",2925.35,{},19046,0,South America +2024-12-23,88078,3283,"[""Monitor""]",2916.97,{},80914,0,North America +2024-09-02,88079,3240,"[""Monitor""]",730.18,"{""loyalty"": ""7%""}",216326,1,North America +2024-06-01,88080,3810,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",3126.78,{},3536,1,Asia +2024-04-13,88081,2106,"[""Headphones"", ""Wireless Mouse""]",735.96,"{""seasonal"": ""8%""}",215966,1,Asia +2023-10-04,88082,5618,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3541.28,"{""loyalty"": ""23%""}",123975,0,Africa +2023-06-17,88083,6000,"[""Keyboard""]",180.95,{},110307,1,Africa +2024-12-13,88084,7869,"[""Charger"", ""Monitor""]",2234.73,"{""loyalty"": ""22%""}",153713,1,Asia +2024-09-05,88085,4164,"[""Laptop"", ""Wireless Mouse""]",4264.51,{},52773,1,South America +2023-10-16,88086,378,"[""Monitor"", ""Phone"", ""Headphones""]",2963.69,{},155632,0,North America +2023-06-17,88087,1279,"[""Charger"", ""Headphones"", ""Keyboard""]",2662.91,{},217021,0,South America +2023-12-24,88088,6697,"[""Tablet"", ""Charger"", ""Headphones""]",4022.16,{},84274,1,North America +2024-08-30,88089,2575,"[""Phone"", ""Tablet""]",4783.07,{},192376,1,South America +2024-12-29,88090,4729,"[""Headphones"", ""Charger"", ""Tablet""]",4627.06,"{"""": ""10%""}",19982,1,Europe +2024-05-12,88091,8352,"[""Charger"", ""Phone""]",581.08,"{"""": ""11%""}",128780,0,Europe +2023-04-30,88092,2294,"[""Monitor""]",2363.14,{},110727,1,Europe +2023-04-20,88093,6569,"[""Monitor"", ""Keyboard"", ""Laptop""]",1592.55,{},78377,1,Asia +2023-12-03,88094,654,"[""Laptop""]",4506.7,"{""promo"": ""6%""}",181623,0,South America +2023-10-22,88095,5172,"[""Charger"", ""Tablet"", ""Headphones""]",1170.43,"{""loyalty"": ""15%""}",118148,1,South America +2024-08-30,88096,7961,"[""Headphones"", ""Keyboard"", ""Charger""]",2303.12,"{"""": ""16%""}",189778,0,North America +2024-03-14,88097,9989,"[""Tablet"", ""Keyboard"", ""Laptop""]",4759.01,"{""loyalty"": ""10%""}",291387,1,Africa +2023-03-24,88098,5571,"[""Monitor""]",1353.14,{},78807,1,Asia +2023-05-29,88099,2225,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2055.13,{},126571,1,Africa +2023-12-21,88100,2780,"[""Charger"", ""Laptop"", ""Keyboard""]",2779.29,{},6173,0,North America +2024-12-08,88101,7689,"[""Headphones""]",4553.56,{},178000,1,Asia +2024-04-07,88102,1010,"[""Headphones""]",885.2,{},296369,1,South America +2024-06-04,88103,3735,"[""Phone"", ""Charger"", ""Keyboard""]",2748.34,{},207672,0,Asia +2024-04-19,88104,2485,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3491.7,{},74382,0,Europe +2023-03-17,88105,80,"[""Laptop"", ""Keyboard"", ""Headphones""]",2466.6,{},159453,0,North America +2024-02-08,88106,2620,"[""Tablet""]",1833.6,{},257122,1,Africa +2024-05-12,88107,6514,"[""Tablet""]",4735.23,"{"""": ""16%""}",210220,1,North America +2024-10-20,88108,8356,"[""Wireless Mouse""]",4275.92,{},229464,1,Africa +2024-06-02,88109,3885,"[""Headphones"", ""Charger"", ""Laptop""]",1495.14,"{"""": ""13%""}",51498,0,North America +2023-09-27,88110,820,"[""Headphones"", ""Laptop""]",3234.33,{},68600,0,Asia +2023-01-22,88111,2690,"[""Headphones""]",4622.24,"{""loyalty"": ""15%""}",192088,1,Africa +2023-12-04,88112,4496,"[""Tablet""]",3275.58,{},55280,0,Africa +2023-10-01,88113,9575,"[""Phone""]",1593.68,"{"""": ""13%""}",92786,0,Africa +2024-07-04,88114,2035,"[""Phone"", ""Headphones"", ""Charger""]",4941.85,"{""loyalty"": ""7%""}",208848,0,Asia +2023-01-31,88115,5622,"[""Tablet"", ""Laptop""]",2737.45,"{""seasonal"": ""9%""}",297248,0,Europe +2023-05-03,88116,7955,"[""Phone"", ""Keyboard""]",1358.5,{},166767,0,Asia +2023-07-26,88117,8060,"[""Keyboard"", ""Charger"", ""Monitor""]",1114.51,{},163580,0,Africa +2023-06-17,88118,1005,"[""Phone""]",631.12,{},54893,1,Europe +2024-07-14,88119,3204,"[""Laptop"", ""Headphones""]",818.37,"{"""": ""13%""}",103698,1,Europe +2024-05-01,88120,5885,"[""Charger"", ""Laptop"", ""Monitor""]",3890.74,{},150312,0,Asia +2023-04-13,88121,3404,"[""Phone"", ""Monitor""]",1073.83,{},114551,0,North America +2024-08-30,88122,9118,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4448.37,"{"""": ""5%""}",182510,1,Africa +2024-03-03,88123,4782,"[""Tablet"", ""Wireless Mouse""]",3115.7,"{"""": ""28%""}",60806,1,Asia +2023-12-18,88124,8175,"[""Headphones"", ""Charger""]",2106.69,"{""seasonal"": ""29%""}",66110,1,South America +2023-01-02,88125,8257,"[""Headphones"", ""Keyboard"", ""Tablet""]",3461.71,"{""seasonal"": ""9%""}",196849,1,Europe +2024-10-17,88126,5382,"[""Wireless Mouse"", ""Laptop""]",284.23,"{""seasonal"": ""27%""}",116154,1,South America +2024-11-14,88127,2184,"[""Phone""]",3344.57,"{"""": ""23%""}",26970,0,Africa +2024-09-27,88128,9528,"[""Phone""]",4222.3,{},91401,0,Europe +2024-11-10,88129,5065,"[""Charger""]",2986.09,"{""loyalty"": ""8%""}",5321,0,Asia +2024-02-08,88130,3361,"[""Laptop"", ""Keyboard""]",1553.43,{},67607,0,North America +2024-10-25,88131,7790,"[""Laptop""]",2787.13,"{""promo"": ""9%""}",53492,1,South America +2023-11-04,88132,7473,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",548.13,"{"""": ""28%""}",181861,0,Asia +2023-04-27,88133,704,"[""Tablet"", ""Phone""]",3051.42,{},142245,0,South America +2024-10-07,88134,9677,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2490.25,"{"""": ""24%""}",262333,1,Asia +2023-08-30,88135,9012,"[""Laptop"", ""Tablet""]",1040.41,"{""promo"": ""28%""}",140472,0,North America +2023-11-30,88136,6430,"[""Laptop"", ""Tablet""]",175.13,{},264260,1,Asia +2024-10-08,88137,1005,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1170.41,{},6528,1,Asia +2023-04-04,88138,9265,"[""Laptop"", ""Headphones""]",2772.91,{},213946,1,South America +2024-04-01,88139,4209,"[""Keyboard"", ""Charger""]",3327.06,"{""loyalty"": ""19%""}",207166,1,North America +2024-12-20,88140,1441,"[""Tablet"", ""Headphones"", ""Monitor""]",3919.26,"{""promo"": ""6%""}",201366,1,Europe +2023-11-25,88141,7392,"[""Phone""]",3356.08,{},218041,1,Africa +2024-01-19,88142,206,"[""Wireless Mouse"", ""Laptop""]",3559.47,"{""loyalty"": ""16%""}",149021,0,North America +2023-04-23,88143,2029,"[""Laptop""]",322.22,{},22880,1,North America +2023-07-02,88144,7094,"[""Charger""]",919.77,{},88615,1,North America +2023-05-19,88145,5430,"[""Wireless Mouse""]",845.45,"{"""": ""10%""}",108986,0,North America +2024-07-24,88146,3322,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",58.53,{},185914,0,Europe +2023-07-01,88147,1708,"[""Headphones""]",4004.87,"{""loyalty"": ""28%""}",183319,1,Europe +2024-10-31,88148,449,"[""Charger"", ""Tablet"", ""Headphones""]",482.33,{},28238,0,Asia +2024-07-11,88149,8644,"[""Laptop"", ""Monitor"", ""Headphones""]",464.74,{},281862,0,Africa +2024-02-09,88150,2711,"[""Phone"", ""Keyboard"", ""Monitor""]",4826.64,"{""promo"": ""5%""}",299678,1,Africa +2023-01-24,88151,6119,"[""Phone""]",4242.49,{},260823,0,South America +2023-05-07,88152,695,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4567.37,{},199777,0,Africa +2024-10-31,88153,4955,"[""Laptop"", ""Monitor""]",638.92,"{""loyalty"": ""11%""}",98874,0,South America +2023-11-20,88154,2213,"[""Charger"", ""Phone""]",3638.14,"{""loyalty"": ""29%""}",219995,1,Africa +2024-09-07,88155,5541,"[""Headphones"", ""Keyboard"", ""Phone""]",2951.01,{},197712,0,South America +2024-02-05,88156,1575,"[""Phone""]",2709.12,{},222215,1,Asia +2024-03-08,88157,1626,"[""Headphones""]",92.88,"{""seasonal"": ""6%""}",22010,0,North America +2023-11-05,88158,5763,"[""Laptop"", ""Wireless Mouse""]",2290.26,{},57030,1,South America +2023-11-21,88159,916,"[""Keyboard""]",304.5,"{"""": ""14%""}",225831,1,South America +2023-04-20,88160,3135,"[""Wireless Mouse""]",2524.68,{},33867,1,North America +2023-03-27,88161,1691,"[""Keyboard"", ""Headphones""]",4368.65,"{""seasonal"": ""5%""}",146355,0,Europe +2024-05-03,88162,5182,"[""Monitor"", ""Tablet"", ""Headphones""]",651.23,{},111791,1,South America +2023-05-21,88163,8369,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",2673.52,"{""seasonal"": ""16%""}",267579,1,South America +2024-02-21,88164,3584,"[""Charger"", ""Keyboard""]",1230.39,"{""loyalty"": ""24%""}",235190,1,Europe +2023-12-18,88165,3786,"[""Headphones""]",2127.04,"{""seasonal"": ""25%""}",185649,0,Europe +2023-05-12,88166,2925,"[""Phone"", ""Laptop""]",2202.7,"{""loyalty"": ""21%""}",162486,1,North America +2024-04-15,88167,6751,"[""Keyboard"", ""Monitor""]",106.13,{},229021,0,Asia +2024-04-15,88168,8192,"[""Laptop"", ""Monitor""]",1727.8,{},101065,0,South America +2024-03-25,88169,7824,"[""Laptop"", ""Tablet"", ""Monitor""]",180.97,"{""loyalty"": ""30%""}",183837,1,Asia +2024-07-01,88170,8468,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2409.48,"{""loyalty"": ""17%""}",123204,0,Europe +2024-02-11,88171,7797,"[""Wireless Mouse"", ""Keyboard""]",2573.82,{},133281,1,South America +2024-01-23,88172,8552,"[""Phone"", ""Charger"", ""Monitor""]",4924.2,"{"""": ""23%""}",214234,0,Asia +2024-06-12,88173,8742,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3865.84,"{""promo"": ""25%""}",2839,0,Europe +2024-07-29,88174,1881,"[""Phone"", ""Keyboard""]",3902.11,"{""promo"": ""8%""}",296182,0,Asia +2024-01-12,88175,9990,"[""Keyboard""]",1623.78,{},241753,1,Africa +2024-09-19,88176,3898,"[""Phone""]",731.68,"{""loyalty"": ""16%""}",211829,0,South America +2024-07-03,88177,5034,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",4412.35,"{""loyalty"": ""30%""}",31996,1,South America +2023-11-15,88178,8727,"[""Phone""]",3622.48,"{""seasonal"": ""22%""}",214377,0,Asia +2024-08-03,88179,209,"[""Charger""]",690.65,"{""promo"": ""8%""}",186795,0,North America +2024-02-04,88180,4553,"[""Phone"", ""Monitor""]",3855.83,{},213507,1,North America +2023-10-28,88181,6495,"[""Wireless Mouse""]",725.46,"{""loyalty"": ""6%""}",25137,0,North America +2024-10-23,88182,9586,"[""Monitor"", ""Headphones"", ""Phone""]",1838.26,"{""promo"": ""22%""}",236479,0,South America +2023-08-06,88183,2518,"[""Tablet"", ""Keyboard""]",431.42,"{""seasonal"": ""27%""}",279135,0,South America +2024-04-11,88184,6103,"[""Laptop"", ""Phone"", ""Tablet""]",2036.87,{},1514,0,Africa +2024-11-26,88185,6530,"[""Phone"", ""Keyboard"", ""Monitor""]",2510.88,{},113527,1,North America +2023-03-28,88186,5995,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",684.51,{},88658,0,South America +2024-06-27,88187,5088,"[""Wireless Mouse""]",4322.62,"{""seasonal"": ""25%""}",42974,1,South America +2023-10-02,88188,7608,"[""Monitor""]",2367.31,{},198944,1,Asia +2024-08-27,88189,9872,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2808.49,{},114064,1,Africa +2023-04-03,88190,8339,"[""Tablet"", ""Laptop"", ""Headphones""]",1896.12,{},295761,1,Africa +2023-08-26,88191,9414,"[""Headphones"", ""Tablet"", ""Monitor""]",1557.01,{},208596,1,Europe +2023-06-12,88192,1789,"[""Monitor"", ""Laptop""]",3801.81,{},197956,0,Africa +2024-09-19,88193,839,"[""Wireless Mouse""]",3482.9,{},54156,1,Asia +2024-02-28,88194,3051,"[""Charger""]",579.28,{},226105,1,Asia +2023-08-05,88195,8728,"[""Phone""]",4504.55,{},193062,1,Asia +2023-01-12,88196,8021,"[""Tablet"", ""Charger""]",1473.65,{},41875,1,North America +2023-10-12,88197,6893,"[""Laptop"", ""Monitor""]",1874.03,{},74877,1,North America +2023-11-06,88198,9495,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2934.54,{},273983,0,North America +2024-10-06,88199,4677,"[""Laptop"", ""Headphones""]",1896.89,{},48177,1,Africa +2023-02-13,88200,8834,"[""Phone"", ""Charger"", ""Keyboard""]",1008.39,{},250568,1,Africa +2023-07-11,88201,6651,"[""Tablet"", ""Charger""]",927.89,{},203719,0,Europe +2023-04-24,88202,8348,"[""Monitor"", ""Laptop"", ""Phone""]",4079.7,{},126411,1,Europe +2023-05-25,88203,8935,"[""Charger""]",2400.13,"{""promo"": ""6%""}",229907,1,South America +2024-06-10,88204,170,"[""Wireless Mouse"", ""Tablet""]",230.59,"{""loyalty"": ""19%""}",228257,0,North America +2024-09-17,88205,576,"[""Monitor"", ""Charger""]",1019.73,"{""seasonal"": ""19%""}",220423,0,Asia +2023-08-11,88206,743,"[""Wireless Mouse""]",1972.18,{},244175,0,Africa +2024-09-18,88207,1108,"[""Monitor"", ""Phone""]",1179.56,{},295242,0,South America +2023-07-17,88208,4083,"[""Monitor"", ""Phone""]",4850.31,{},31212,1,Asia +2024-01-26,88209,2983,"[""Tablet""]",2708.77,"{""seasonal"": ""11%""}",77576,0,Europe +2023-12-17,88210,3956,"[""Monitor""]",2824.53,"{""seasonal"": ""14%""}",190399,1,South America +2024-03-13,88211,9697,"[""Charger"", ""Laptop"", ""Monitor""]",573.88,"{""seasonal"": ""21%""}",93345,0,North America +2024-04-19,88212,6534,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2460.46,"{""promo"": ""20%""}",70489,0,Europe +2023-04-07,88213,8367,"[""Monitor"", ""Keyboard"", ""Headphones""]",388.7,"{"""": ""18%""}",258348,0,South America +2024-12-26,88214,7205,"[""Monitor"", ""Keyboard"", ""Laptop""]",722.42,"{""loyalty"": ""20%""}",290173,0,Europe +2023-07-20,88215,8479,"[""Headphones""]",4757.08,{},131082,0,Asia +2023-02-28,88216,8663,"[""Phone""]",1962.75,"{""promo"": ""8%""}",286056,0,Africa +2024-07-31,88217,17,"[""Tablet"", ""Monitor""]",4126.84,"{""seasonal"": ""6%""}",71280,1,South America +2024-04-02,88218,381,"[""Keyboard"", ""Headphones"", ""Charger""]",1298.18,{},191128,0,Europe +2024-01-11,88219,545,"[""Charger""]",1110.9,"{""loyalty"": ""30%""}",74695,1,South America +2024-11-21,88220,5408,"[""Phone""]",1075.37,"{""seasonal"": ""19%""}",119970,1,Asia +2024-12-22,88221,4928,"[""Charger"", ""Phone"", ""Monitor""]",1696.98,"{""seasonal"": ""6%""}",193974,0,South America +2023-09-26,88222,7281,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2602.22,{},105903,1,Asia +2023-11-26,88223,7658,"[""Phone"", ""Wireless Mouse""]",913.51,{},234543,0,South America +2023-10-16,88224,6314,"[""Wireless Mouse"", ""Keyboard""]",4585.37,{},209938,1,Asia +2023-01-01,88225,7187,"[""Wireless Mouse"", ""Tablet""]",3357.17,{},255307,0,South America +2023-02-05,88226,1411,"[""Charger"", ""Tablet""]",4465.6,"{""promo"": ""23%""}",56999,0,North America +2024-09-22,88227,317,"[""Wireless Mouse""]",3393.36,{},21103,1,Europe +2023-09-09,88228,4949,"[""Charger"", ""Laptop""]",2174.74,"{""loyalty"": ""30%""}",31843,0,South America +2024-07-27,88229,5704,"[""Phone"", ""Monitor""]",4710.55,{},78294,0,Africa +2023-03-08,88230,7729,"[""Monitor""]",4510.28,{},247791,1,North America +2024-01-03,88231,2665,"[""Monitor""]",629.19,"{""loyalty"": ""21%""}",204296,1,Europe +2024-04-04,88232,5073,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3721.72,{},127922,0,Africa +2023-08-07,88233,8331,"[""Charger"", ""Keyboard""]",632.91,"{"""": ""7%""}",37068,0,Europe +2024-08-16,88234,5688,"[""Charger""]",1647.53,"{""promo"": ""13%""}",223062,1,Africa +2023-10-03,88235,7652,"[""Tablet"", ""Headphones"", ""Keyboard""]",2197.5,"{""loyalty"": ""28%""}",252495,0,Europe +2024-11-28,88236,4611,"[""Monitor"", ""Phone"", ""Charger""]",549.09,"{"""": ""23%""}",184271,0,Africa +2023-03-27,88237,2239,"[""Monitor"", ""Keyboard"", ""Tablet""]",4877.78,{},248008,0,South America +2024-04-10,88238,3168,"[""Laptop"", ""Wireless Mouse""]",4051.51,"{""promo"": ""6%""}",119050,0,Asia +2024-12-27,88239,6393,"[""Keyboard""]",1619.81,"{""promo"": ""28%""}",55804,1,Africa +2023-04-16,88240,3503,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",484.08,"{"""": ""9%""}",238545,0,Europe +2023-11-15,88241,1310,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3546.38,{},93746,0,North America +2024-03-12,88242,7192,"[""Laptop"", ""Monitor""]",2994.25,"{""loyalty"": ""23%""}",71415,0,North America +2023-12-25,88243,1516,"[""Headphones"", ""Tablet""]",1345.32,"{""seasonal"": ""17%""}",115227,1,Europe +2024-02-26,88244,5639,"[""Charger"", ""Laptop"", ""Keyboard""]",2670.66,{},86232,1,Europe +2024-07-11,88245,7797,"[""Phone"", ""Headphones"", ""Tablet""]",4210.88,{},237610,1,South America +2024-11-05,88246,5261,"[""Tablet"", ""Phone""]",4591.5,"{""loyalty"": ""15%""}",251539,1,Europe +2023-05-17,88247,5116,"[""Headphones""]",3120.26,"{""promo"": ""28%""}",299889,1,Asia +2023-06-27,88248,9531,"[""Wireless Mouse""]",4336.19,"{"""": ""21%""}",192498,1,South America +2024-11-16,88249,7664,"[""Laptop"", ""Monitor""]",2809.77,{},96535,0,South America +2023-06-17,88250,2362,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3356.72,"{""loyalty"": ""9%""}",269847,0,North America +2024-07-14,88251,4257,"[""Headphones""]",355.75,{},27071,1,North America +2023-07-26,88252,1955,"[""Charger"", ""Keyboard""]",1694.86,{},269196,1,Asia +2023-01-02,88253,404,"[""Laptop"", ""Keyboard""]",988.89,"{""promo"": ""30%""}",202459,0,Africa +2024-01-31,88254,6555,"[""Monitor"", ""Charger"", ""Phone""]",4492.31,{},8416,1,Asia +2024-05-15,88255,67,"[""Laptop"", ""Tablet"", ""Monitor""]",2231.34,{},232757,0,Europe +2024-07-09,88256,8622,"[""Laptop"", ""Monitor""]",3133.09,{},280312,1,Africa +2023-07-21,88257,4894,"[""Tablet"", ""Charger"", ""Phone""]",3935.05,"{""promo"": ""7%""}",150256,0,North America +2024-12-21,88258,4909,"[""Tablet"", ""Keyboard""]",1437.64,"{"""": ""11%""}",219049,0,North America +2023-07-23,88259,6086,"[""Wireless Mouse"", ""Monitor""]",4037.73,{},58997,0,South America +2024-07-06,88260,1543,"[""Phone""]",1673.29,{},6184,0,Africa +2023-07-05,88261,2318,"[""Laptop"", ""Headphones"", ""Monitor""]",4493.16,{},262769,0,South America +2024-03-17,88262,9948,"[""Tablet"", ""Keyboard""]",693.14,"{"""": ""18%""}",195125,1,South America +2023-04-15,88263,5289,"[""Tablet"", ""Monitor"", ""Keyboard""]",395.91,"{""seasonal"": ""15%""}",256500,0,South America +2024-08-10,88264,1925,"[""Phone"", ""Laptop"", ""Tablet""]",2331.64,{},234260,1,North America +2023-05-08,88265,4661,"[""Wireless Mouse"", ""Monitor""]",1764.29,"{""loyalty"": ""8%""}",259001,0,Asia +2023-08-29,88266,7696,"[""Phone"", ""Laptop"", ""Monitor""]",3059.46,"{""loyalty"": ""17%""}",108777,0,North America +2024-07-04,88267,4762,"[""Phone"", ""Wireless Mouse""]",1736.52,"{""loyalty"": ""12%""}",223959,0,Africa +2023-05-16,88268,3848,"[""Headphones""]",1759.32,"{"""": ""10%""}",187521,0,Africa +2024-06-12,88269,8600,"[""Monitor""]",3911.32,"{""loyalty"": ""19%""}",193222,1,Asia +2024-10-10,88270,3286,"[""Charger"", ""Tablet""]",2059.58,"{"""": ""15%""}",154231,0,Asia +2023-02-27,88271,3016,"[""Keyboard""]",1893.3,"{""seasonal"": ""20%""}",165072,0,North America +2023-06-18,88272,2484,"[""Monitor"", ""Keyboard"", ""Headphones""]",2136.39,"{""loyalty"": ""21%""}",75180,0,Asia +2024-12-16,88273,7046,"[""Wireless Mouse""]",3369.43,"{""promo"": ""8%""}",70246,0,South America +2024-01-24,88274,2070,"[""Laptop""]",1295.28,{},6670,0,Asia +2023-04-24,88275,3491,"[""Laptop"", ""Monitor""]",1622.98,"{""loyalty"": ""17%""}",272527,1,Europe +2023-07-31,88276,5473,"[""Charger"", ""Monitor"", ""Laptop""]",3797.46,{},89758,1,Europe +2023-05-12,88277,1695,"[""Keyboard""]",3248.89,"{"""": ""9%""}",189070,0,Africa +2024-01-10,88278,7752,"[""Monitor""]",4804.37,{},199241,1,Europe +2023-03-10,88279,1455,"[""Charger"", ""Phone""]",2600.56,"{"""": ""14%""}",279558,0,South America +2024-07-28,88280,9688,"[""Headphones"", ""Monitor""]",3025.18,"{""seasonal"": ""19%""}",254861,0,Europe +2024-05-12,88281,3036,"[""Charger"", ""Tablet""]",4288.71,{},180790,1,North America +2024-12-03,88282,5290,"[""Tablet""]",2403.09,{},116425,0,North America +2023-02-27,88283,985,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3418.6,{},214398,0,North America +2023-07-26,88284,7023,"[""Keyboard"", ""Monitor""]",651.1,"{""seasonal"": ""28%""}",93773,0,Africa +2024-04-17,88285,4191,"[""Monitor""]",4076.82,"{""promo"": ""9%""}",193227,1,Africa +2024-04-11,88286,6230,"[""Charger""]",159.78,{},12484,1,Africa +2023-01-03,88287,4461,"[""Wireless Mouse"", ""Laptop""]",1573.23,{},86461,0,South America +2023-01-27,88288,8215,"[""Tablet"", ""Phone"", ""Keyboard""]",4194.15,"{""seasonal"": ""10%""}",102927,0,Europe +2023-04-07,88289,6138,"[""Tablet"", ""Keyboard"", ""Charger""]",2715.11,"{""seasonal"": ""27%""}",35471,1,South America +2024-05-10,88290,4740,"[""Laptop"", ""Headphones""]",1871.26,{},166801,0,South America +2024-08-29,88291,8438,"[""Headphones"", ""Monitor"", ""Charger""]",2557.53,"{""promo"": ""10%""}",287058,1,North America +2023-07-07,88292,1016,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1664.12,{},268701,0,Africa +2024-05-31,88293,9570,"[""Wireless Mouse"", ""Tablet""]",4554.02,{},183838,1,Africa +2023-08-02,88294,2553,"[""Monitor""]",717.91,{},119796,1,South America +2024-02-08,88295,3554,"[""Tablet""]",1337.07,{},158801,1,Europe +2024-06-26,88296,7970,"[""Keyboard"", ""Headphones"", ""Phone""]",1298.8,"{""seasonal"": ""28%""}",64239,0,North America +2024-04-20,88297,7860,"[""Laptop"", ""Charger""]",2194.34,{},4627,1,North America +2023-06-20,88298,7394,"[""Laptop""]",2045.83,{},151511,1,North America +2024-01-20,88299,7399,"[""Tablet"", ""Phone""]",518.05,{},230166,1,Africa +2023-10-06,88300,6236,"[""Laptop"", ""Keyboard""]",4702.63,"{"""": ""28%""}",66302,1,Africa +2024-08-17,88301,2203,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4291.77,{},147406,0,North America +2023-03-15,88302,8107,"[""Monitor"", ""Wireless Mouse""]",1253.9,"{""seasonal"": ""14%""}",224716,0,Europe +2024-06-01,88303,8576,"[""Monitor"", ""Laptop"", ""Tablet""]",4111.65,{},10816,0,South America +2024-01-02,88304,1549,"[""Phone"", ""Tablet"", ""Headphones""]",3650.79,{},153423,0,South America +2023-08-11,88305,4537,"[""Monitor"", ""Laptop""]",2403.38,{},296783,0,Africa +2023-06-05,88306,3911,"[""Wireless Mouse"", ""Keyboard""]",4783.02,"{""loyalty"": ""13%""}",11751,0,North America +2023-12-03,88307,1331,"[""Charger"", ""Phone""]",543.21,{},219991,0,North America +2023-12-22,88308,7473,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1291.95,"{""loyalty"": ""18%""}",133181,1,North America +2023-05-22,88309,1857,"[""Phone"", ""Monitor""]",690.97,"{""promo"": ""7%""}",158260,1,South America +2024-05-08,88310,9909,"[""Keyboard"", ""Laptop""]",1694.64,"{""seasonal"": ""23%""}",159523,0,South America +2023-12-01,88311,4943,"[""Phone"", ""Keyboard""]",3941.26,{},274639,0,Europe +2024-03-07,88312,9088,"[""Keyboard"", ""Phone""]",483.96,{},39921,0,South America +2023-10-21,88313,409,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3796.09,"{""seasonal"": ""20%""}",269100,0,Asia +2023-10-25,88314,2389,"[""Headphones"", ""Phone""]",2926.02,{},117954,0,Asia +2023-07-01,88315,6340,"[""Charger"", ""Monitor"", ""Headphones""]",2033.3,"{""promo"": ""18%""}",270298,1,South America +2024-03-24,88316,8263,"[""Keyboard"", ""Tablet""]",1773.05,"{"""": ""25%""}",125317,0,Europe +2024-04-12,88317,4303,"[""Headphones"", ""Charger""]",1094.71,{},116727,0,North America +2023-10-19,88318,2065,"[""Laptop"", ""Wireless Mouse""]",2898.61,"{""promo"": ""10%""}",190532,1,Europe +2023-05-12,88319,7566,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4040.93,{},184488,1,Asia +2023-11-07,88320,9097,"[""Phone"", ""Keyboard""]",3426.08,{},21056,0,Asia +2024-05-17,88321,4841,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2141.46,"{"""": ""12%""}",47369,0,South America +2024-02-04,88322,1462,"[""Laptop"", ""Phone"", ""Keyboard""]",514.48,"{""loyalty"": ""14%""}",80320,1,Europe +2023-03-05,88323,3547,"[""Phone""]",3761.08,"{""seasonal"": ""11%""}",165577,1,North America +2023-09-14,88324,7402,"[""Headphones"", ""Monitor"", ""Phone""]",4373.12,{},68775,1,North America +2024-02-09,88325,3576,"[""Laptop"", ""Phone""]",54.69,{},64261,1,Europe +2024-03-14,88326,3637,"[""Tablet""]",849.42,{},28541,1,Africa +2023-12-11,88327,9331,"[""Phone"", ""Charger"", ""Keyboard""]",4278.38,{},37001,0,South America +2023-07-06,88328,9812,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4743.21,{},141421,0,North America +2024-04-24,88329,3985,"[""Tablet"", ""Headphones""]",1993.59,{},19932,1,South America +2023-08-18,88330,794,"[""Headphones""]",3813.9,"{""promo"": ""19%""}",100508,0,South America +2024-05-03,88331,8697,"[""Charger"", ""Keyboard"", ""Tablet""]",1814.62,"{""promo"": ""30%""}",128800,1,North America +2024-01-01,88332,1425,"[""Phone""]",4901.14,"{""seasonal"": ""12%""}",259364,0,Africa +2023-08-04,88333,518,"[""Phone"", ""Headphones""]",667.28,"{""seasonal"": ""23%""}",246235,1,North America +2024-07-27,88334,7051,"[""Headphones""]",2347.19,"{""seasonal"": ""12%""}",288816,0,Asia +2024-03-16,88335,6379,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",976.32,{},244100,1,South America +2024-12-04,88336,1795,"[""Charger"", ""Laptop"", ""Headphones""]",2038.22,{},94652,1,North America +2024-10-19,88337,1408,"[""Keyboard""]",2736.7,{},183521,0,North America +2024-02-04,88338,5842,"[""Tablet"", ""Wireless Mouse""]",1766.17,{},185269,0,Africa +2024-07-04,88339,3604,"[""Monitor"", ""Charger"", ""Headphones""]",2018.74,{},130982,1,North America +2024-09-06,88340,1365,"[""Keyboard"", ""Charger""]",1384.39,{},220741,1,Asia +2024-05-27,88341,8850,"[""Tablet""]",520.79,"{""promo"": ""29%""}",158164,0,Europe +2024-10-13,88342,9696,"[""Phone"", ""Headphones""]",976.43,{},65793,1,Asia +2024-03-30,88343,8935,"[""Keyboard"", ""Phone"", ""Headphones""]",4195.52,"{""promo"": ""16%""}",231317,1,South America +2023-07-11,88344,9385,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2100.9,"{""promo"": ""16%""}",72071,0,South America +2024-11-06,88345,9410,"[""Monitor"", ""Headphones"", ""Phone""]",1118.16,{},198569,1,Africa +2023-05-09,88346,6340,"[""Tablet"", ""Wireless Mouse""]",4335.01,"{""loyalty"": ""10%""}",298302,1,Asia +2023-05-08,88347,4221,"[""Phone"", ""Headphones""]",472.96,"{""promo"": ""27%""}",1773,0,South America +2023-08-13,88348,2469,"[""Tablet"", ""Charger"", ""Keyboard""]",4822.86,{},226099,0,Asia +2024-10-07,88349,505,"[""Keyboard"", ""Charger""]",1160.56,"{""promo"": ""11%""}",213171,1,Africa +2023-06-18,88350,6008,"[""Tablet""]",137.31,{},222467,0,Asia +2024-03-22,88351,3116,"[""Phone""]",2909.68,{},182501,1,South America +2023-01-10,88352,182,"[""Tablet"", ""Keyboard""]",2310.01,"{""seasonal"": ""5%""}",49608,0,Europe +2024-11-21,88353,7177,"[""Phone""]",794.95,{},86815,1,North America +2024-10-30,88354,3876,"[""Laptop""]",3911.43,"{""loyalty"": ""18%""}",262833,1,Europe +2024-06-13,88355,5069,"[""Monitor"", ""Charger""]",2481.46,{},86846,1,South America +2023-04-15,88356,4748,"[""Charger"", ""Tablet"", ""Phone""]",2630.37,{},86520,0,Europe +2023-06-27,88357,6137,"[""Tablet"", ""Phone"", ""Monitor""]",4565.24,"{""seasonal"": ""11%""}",127620,0,North America +2024-12-11,88358,5067,"[""Headphones"", ""Charger"", ""Laptop""]",1178.92,{},136076,0,Africa +2024-03-10,88359,8385,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",1112.6,{},219160,1,Asia +2024-05-20,88360,9057,"[""Charger"", ""Laptop""]",4857.98,{},142632,1,Africa +2024-09-28,88361,7281,"[""Laptop"", ""Keyboard""]",1440.04,{},155027,0,North America +2023-01-14,88362,9878,"[""Wireless Mouse"", ""Charger""]",4582.93,"{""loyalty"": ""12%""}",275834,1,Europe +2024-04-23,88363,4431,"[""Phone""]",1701.2,{},176217,0,Africa +2023-04-01,88364,1727,"[""Tablet"", ""Charger"", ""Phone""]",2720.19,{},128879,1,Asia +2023-12-21,88365,5288,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4457.62,{},165418,0,South America +2023-06-11,88366,2562,"[""Monitor""]",3563.67,"{"""": ""14%""}",41088,1,Asia +2023-07-26,88367,1644,"[""Tablet"", ""Headphones""]",4272.31,{},90667,1,Africa +2024-06-11,88368,1516,"[""Phone""]",1111.74,{},57923,1,North America +2023-06-02,88369,6289,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",51.4,{},67951,1,Asia +2023-01-27,88370,6527,"[""Charger""]",2934.67,"{""loyalty"": ""21%""}",292503,0,Asia +2023-09-02,88371,9027,"[""Monitor"", ""Laptop"", ""Phone""]",131.95,"{""loyalty"": ""10%""}",7674,0,South America +2024-02-12,88372,9949,"[""Laptop"", ""Phone""]",1124.33,"{"""": ""28%""}",281377,1,Europe +2024-09-13,88373,2705,"[""Charger"", ""Wireless Mouse""]",1064.12,"{"""": ""14%""}",9293,0,North America +2023-06-09,88374,4359,"[""Keyboard""]",235.76,"{""loyalty"": ""26%""}",152560,0,Africa +2023-07-13,88375,5507,"[""Laptop"", ""Monitor"", ""Tablet""]",4080.52,{},35073,1,Asia +2024-12-23,88376,9887,"[""Keyboard"", ""Laptop""]",4636.1,"{""loyalty"": ""16%""}",274071,1,South America +2023-06-24,88377,4259,"[""Phone"", ""Tablet"", ""Keyboard""]",1659.67,{},134550,1,Europe +2024-06-11,88378,9284,"[""Tablet"", ""Keyboard""]",141.13,{},80022,0,Europe +2024-04-30,88379,9546,"[""Charger""]",3396.45,"{""loyalty"": ""22%""}",145856,0,Africa +2024-07-30,88380,9664,"[""Wireless Mouse"", ""Headphones""]",360.28,"{"""": ""17%""}",86735,0,Europe +2023-08-10,88381,7095,"[""Headphones""]",4832.04,"{""seasonal"": ""27%""}",30502,0,South America +2023-07-09,88382,7552,"[""Headphones"", ""Phone""]",1479.72,"{""seasonal"": ""11%""}",122327,1,North America +2024-04-22,88383,9608,"[""Phone"", ""Headphones""]",1745.99,"{""promo"": ""20%""}",194630,1,South America +2024-03-15,88384,9386,"[""Laptop""]",4832.92,{},79034,0,Europe +2024-08-25,88385,6670,"[""Phone"", ""Keyboard"", ""Tablet""]",78.68,{},283700,0,Africa +2023-04-29,88386,810,"[""Monitor""]",75.06,"{""loyalty"": ""16%""}",210181,0,North America +2024-08-04,88387,6864,"[""Charger"", ""Phone"", ""Tablet""]",3628.84,"{"""": ""8%""}",198623,0,North America +2024-11-13,88388,1935,"[""Charger"", ""Headphones"", ""Keyboard""]",377.75,{},241890,0,North America +2024-11-30,88389,8895,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4381.76,"{"""": ""14%""}",197736,0,North America +2023-06-11,88390,2528,"[""Keyboard""]",343.39,"{""promo"": ""26%""}",89742,1,South America +2024-12-17,88391,99,"[""Phone""]",1744.21,{},185811,0,Europe +2024-05-05,88392,7778,"[""Monitor"", ""Headphones""]",880.28,"{""promo"": ""15%""}",5114,1,South America +2024-06-14,88393,4417,"[""Wireless Mouse"", ""Laptop""]",3794.03,{},233870,1,Asia +2023-07-03,88394,5709,"[""Headphones""]",1462.6,{},94788,1,North America +2023-02-11,88395,790,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",2122.12,{},164317,0,South America +2023-05-17,88396,7893,"[""Keyboard""]",1341.57,"{""promo"": ""27%""}",65424,1,Europe +2024-07-15,88397,9679,"[""Monitor"", ""Keyboard""]",3223.15,"{""seasonal"": ""30%""}",41109,1,Europe +2023-08-30,88398,5632,"[""Phone"", ""Keyboard""]",3474.81,"{""promo"": ""28%""}",259887,1,South America +2023-08-25,88399,6992,"[""Headphones""]",2433.76,"{""seasonal"": ""25%""}",34755,0,Africa +2023-08-22,88400,5915,"[""Monitor""]",3563.82,"{""promo"": ""26%""}",142403,1,Asia +2024-05-17,88401,6219,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2723.98,"{""loyalty"": ""29%""}",185366,0,Europe +2024-09-21,88402,2891,"[""Tablet"", ""Phone"", ""Laptop""]",1725.59,"{""loyalty"": ""15%""}",212767,1,Africa +2023-07-23,88403,8661,"[""Laptop""]",1050.99,{},238379,1,South America +2023-12-22,88404,9663,"[""Charger""]",4911.33,"{"""": ""21%""}",161066,1,Africa +2024-04-22,88405,3527,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1905.63,"{""seasonal"": ""12%""}",99837,1,Asia +2024-05-30,88406,8086,"[""Phone"", ""Charger""]",3085.72,{},256340,0,Europe +2023-12-24,88407,1969,"[""Charger""]",3255.16,"{""seasonal"": ""12%""}",143792,0,Europe +2024-08-06,88408,9797,"[""Wireless Mouse""]",4648.38,"{""seasonal"": ""19%""}",145765,1,Africa +2023-03-15,88409,3620,"[""Charger""]",4312.59,{},247970,1,North America +2024-03-30,88410,157,"[""Keyboard"", ""Monitor""]",2303.79,{},255223,1,Asia +2023-09-27,88411,197,"[""Charger"", ""Keyboard"", ""Phone""]",161.71,"{"""": ""29%""}",179868,0,North America +2023-10-08,88412,9688,"[""Keyboard"", ""Monitor""]",1996.75,{},202324,1,Asia +2024-08-30,88413,682,"[""Keyboard""]",578.73,"{""promo"": ""9%""}",215238,0,Asia +2023-03-28,88414,324,"[""Tablet"", ""Keyboard""]",2795.34,"{"""": ""12%""}",276329,0,Africa +2023-02-24,88415,288,"[""Monitor"", ""Headphones"", ""Laptop""]",3229.73,"{""promo"": ""10%""}",92438,0,Asia +2023-04-04,88416,6293,"[""Monitor""]",973.04,"{""promo"": ""10%""}",273148,0,South America +2023-07-19,88417,8082,"[""Wireless Mouse"", ""Tablet""]",3269.83,{},66724,1,South America +2024-03-01,88418,2689,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1177.35,{},41886,1,South America +2023-11-15,88419,6576,"[""Headphones""]",4193.47,{},291792,0,Europe +2023-05-21,88420,5855,"[""Phone"", ""Charger"", ""Laptop""]",1559.29,{},12031,1,Africa +2023-04-06,88421,5890,"[""Headphones""]",4126.3,"{""promo"": ""5%""}",194216,0,North America +2023-07-04,88422,6304,"[""Phone"", ""Laptop""]",3638.08,{},230353,0,Africa +2024-03-15,88423,4010,"[""Monitor""]",3315.49,"{"""": ""17%""}",64287,1,Asia +2023-09-13,88424,3461,"[""Headphones"", ""Laptop""]",3720.63,"{"""": ""20%""}",196623,1,Europe +2023-10-20,88425,369,"[""Tablet"", ""Laptop"", ""Keyboard""]",588.47,{},279417,1,North America +2023-01-05,88426,1691,"[""Wireless Mouse"", ""Tablet""]",1668.74,{},113846,0,North America +2024-10-07,88427,5978,"[""Charger""]",4402.8,{},83098,0,Africa +2023-11-20,88428,9602,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3323.84,{},166113,0,North America +2023-02-24,88429,7071,"[""Charger"", ""Monitor"", ""Tablet""]",2118.43,{},139655,1,Europe +2024-03-18,88430,2383,"[""Headphones""]",2160.29,"{"""": ""17%""}",188016,1,Asia +2023-08-19,88431,2301,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4112.25,"{""seasonal"": ""28%""}",24244,0,Asia +2024-01-31,88432,9518,"[""Monitor""]",2716.19,{},126186,1,North America +2023-05-18,88433,522,"[""Keyboard""]",3088.66,"{""loyalty"": ""30%""}",81517,1,Africa +2024-02-16,88434,3972,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",1660.69,{},229065,1,Europe +2023-04-23,88435,3999,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4378.32,{},197298,0,Europe +2023-06-18,88436,593,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1452.54,{},97173,1,North America +2023-07-19,88437,2310,"[""Keyboard"", ""Phone"", ""Charger""]",4440.55,"{"""": ""17%""}",162043,0,Europe +2024-10-27,88438,8932,"[""Tablet"", ""Phone"", ""Charger""]",4261.46,"{""promo"": ""5%""}",163105,0,Africa +2023-08-10,88439,9078,"[""Monitor""]",918.86,"{"""": ""25%""}",90023,0,North America +2024-02-22,88440,8243,"[""Keyboard""]",4114.19,"{"""": ""13%""}",184562,1,Asia +2024-04-03,88441,5450,"[""Phone""]",3394.27,"{""promo"": ""16%""}",115090,1,South America +2024-04-07,88442,4086,"[""Headphones""]",3610.3,{},40346,0,Europe +2024-03-09,88443,2134,"[""Keyboard"", ""Laptop"", ""Headphones""]",1952.46,{},220407,0,South America +2023-09-12,88444,8498,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2488.69,"{""loyalty"": ""6%""}",196510,1,South America +2023-12-28,88445,9932,"[""Keyboard"", ""Headphones""]",1083.86,{},261472,1,North America +2023-11-10,88446,3742,"[""Tablet""]",4902.08,{},92713,1,Europe +2024-07-22,88447,1020,"[""Wireless Mouse"", ""Laptop""]",3851.81,"{""seasonal"": ""29%""}",216569,1,Africa +2023-12-02,88448,1814,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1400.53,"{""loyalty"": ""7%""}",129817,1,North America +2024-08-17,88449,9971,"[""Laptop"", ""Tablet""]",3194.11,{},193420,0,North America +2023-05-20,88450,7009,"[""Laptop""]",594.44,"{""seasonal"": ""19%""}",255318,0,Africa +2024-10-14,88451,9478,"[""Keyboard"", ""Headphones""]",234.11,"{""seasonal"": ""21%""}",182058,0,North America +2023-11-15,88452,6842,"[""Phone"", ""Charger""]",807.7,"{""seasonal"": ""25%""}",264470,1,South America +2024-09-08,88453,1741,"[""Headphones"", ""Charger""]",854.74,"{""promo"": ""10%""}",17567,1,North America +2023-06-13,88454,8328,"[""Keyboard""]",3761.72,{},277097,1,Africa +2023-04-23,88455,6885,"[""Monitor"", ""Headphones"", ""Charger""]",1011.03,"{""seasonal"": ""6%""}",273841,1,North America +2024-04-09,88456,1,"[""Charger"", ""Keyboard""]",209.22,{},157825,0,North America +2023-12-13,88457,1357,"[""Wireless Mouse"", ""Charger""]",274.66,{},52967,0,South America +2023-09-25,88458,9446,"[""Phone""]",385.7,"{""seasonal"": ""25%""}",244451,1,North America +2024-05-09,88459,1754,"[""Laptop""]",1077.56,"{""promo"": ""29%""}",90617,1,Europe +2023-02-22,88460,6700,"[""Headphones"", ""Charger"", ""Tablet""]",2405.93,"{""promo"": ""26%""}",244798,1,Africa +2023-11-17,88461,1974,"[""Keyboard"", ""Charger"", ""Laptop""]",4724.92,"{""promo"": ""19%""}",26625,1,North America +2023-10-12,88462,6768,"[""Phone"", ""Keyboard""]",1377.03,"{"""": ""16%""}",281049,1,Africa +2023-02-08,88463,9098,"[""Headphones"", ""Monitor""]",4858.58,"{""promo"": ""26%""}",159562,1,Africa +2024-07-22,88464,2288,"[""Wireless Mouse""]",629.43,{},75675,0,North America +2024-05-03,88465,589,"[""Phone""]",3749.17,{},186149,0,South America +2023-04-19,88466,1477,"[""Charger"", ""Keyboard""]",1554.58,"{""promo"": ""8%""}",140838,1,Africa +2024-02-25,88467,849,"[""Headphones"", ""Tablet"", ""Monitor""]",1386.47,{},134351,0,Africa +2023-04-12,88468,8909,"[""Charger"", ""Headphones""]",4464.25,"{""promo"": ""27%""}",4393,0,Asia +2023-09-27,88469,9788,"[""Laptop""]",2609.8,"{"""": ""17%""}",147448,1,North America +2023-09-12,88470,8178,"[""Headphones"", ""Monitor"", ""Laptop""]",2011.2,{},205980,1,Europe +2024-10-20,88471,4266,"[""Charger""]",3598.16,{},103071,0,North America +2024-03-14,88472,2254,"[""Keyboard""]",4778.57,{},42845,0,South America +2023-03-18,88473,6649,"[""Laptop""]",484.54,"{""seasonal"": ""20%""}",21004,1,South America +2023-09-16,88474,8086,"[""Laptop"", ""Phone""]",3037.72,{},220536,1,Africa +2023-04-21,88475,861,"[""Laptop"", ""Charger""]",4604.28,{},274633,1,North America +2023-09-30,88476,643,"[""Keyboard""]",1499.55,{},101833,1,North America +2023-07-19,88477,2275,"[""Tablet""]",1431.05,"{"""": ""16%""}",16294,0,Africa +2024-07-22,88478,3228,"[""Monitor"", ""Tablet"", ""Laptop""]",1899.2,"{"""": ""10%""}",173055,0,South America +2023-10-22,88479,761,"[""Phone""]",1527.38,{},288511,0,Asia +2024-04-09,88480,5310,"[""Wireless Mouse"", ""Charger""]",3636.31,"{""seasonal"": ""15%""}",20875,1,Asia +2024-07-18,88481,2589,"[""Keyboard"", ""Monitor"", ""Headphones""]",867.93,{},180992,1,North America +2024-06-27,88482,3703,"[""Charger"", ""Keyboard"", ""Monitor""]",3425.14,"{""promo"": ""14%""}",223527,1,Africa +2024-03-29,88483,4604,"[""Laptop"", ""Monitor""]",3377.37,{},249262,1,North America +2023-06-24,88484,1316,"[""Tablet""]",196.56,{},228007,1,North America +2024-10-26,88485,1076,"[""Charger""]",1811.03,{},87916,0,South America +2023-06-03,88486,6979,"[""Monitor"", ""Phone""]",3828.19,"{"""": ""9%""}",148955,1,Europe +2023-12-15,88487,2695,"[""Laptop"", ""Monitor"", ""Headphones""]",4034.92,{},289844,1,Europe +2024-07-06,88488,5770,"[""Monitor""]",4418.38,{},233373,0,Asia +2024-06-01,88489,1097,"[""Keyboard"", ""Laptop""]",1627.83,{},140959,0,South America +2024-11-18,88490,7063,"[""Charger"", ""Monitor""]",623.07,"{""seasonal"": ""28%""}",297114,0,Africa +2024-09-09,88491,3778,"[""Phone""]",4472.54,"{"""": ""15%""}",35550,0,Europe +2024-04-27,88492,4840,"[""Tablet""]",1299.66,"{""promo"": ""30%""}",125233,1,Asia +2024-08-04,88493,814,"[""Charger""]",174.33,"{""seasonal"": ""18%""}",287223,1,South America +2024-07-20,88494,6731,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3086.02,"{""promo"": ""27%""}",155439,0,Asia +2024-10-05,88495,2666,"[""Charger"", ""Laptop"", ""Monitor""]",3614.95,{},62279,1,South America +2023-06-10,88496,1605,"[""Tablet"", ""Monitor"", ""Phone""]",2907.28,"{""seasonal"": ""29%""}",13894,1,Asia +2024-09-06,88497,1297,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",867.81,"{"""": ""29%""}",133955,0,South America +2024-06-10,88498,6829,"[""Phone"", ""Keyboard"", ""Headphones""]",4827.62,"{"""": ""11%""}",179411,1,North America +2023-07-23,88499,6895,"[""Tablet"", ""Laptop""]",375.46,{},51343,0,North America +2023-06-16,88500,7018,"[""Keyboard"", ""Charger""]",2710.17,"{""seasonal"": ""21%""}",173865,0,North America +2024-12-15,88501,6112,"[""Wireless Mouse"", ""Phone"", ""Charger""]",4791.01,"{""seasonal"": ""10%""}",235478,1,North America +2024-02-15,88502,6086,"[""Headphones"", ""Charger"", ""Phone""]",3095.78,{},194742,0,Asia +2024-05-19,88503,6743,"[""Charger""]",333.2,"{""promo"": ""27%""}",119076,0,South America +2024-08-28,88504,7472,"[""Tablet"", ""Laptop""]",1941.83,"{"""": ""30%""}",258436,0,Asia +2024-11-16,88505,7547,"[""Phone"", ""Monitor""]",4007.97,{},5488,1,South America +2024-07-19,88506,8490,"[""Laptop""]",1054.13,{},74020,0,Africa +2023-07-18,88507,4103,"[""Headphones"", ""Wireless Mouse""]",1535.03,"{""seasonal"": ""10%""}",270418,1,South America +2024-10-18,88508,2592,"[""Phone"", ""Keyboard"", ""Monitor""]",310.68,"{""loyalty"": ""12%""}",249481,0,Africa +2023-12-09,88509,2524,"[""Laptop"", ""Monitor"", ""Tablet""]",4089.02,{},71954,1,North America +2023-12-11,88510,2377,"[""Laptop"", ""Headphones"", ""Phone""]",1618.81,{},213940,1,North America +2023-12-25,88511,7191,"[""Tablet""]",1051.12,{},263820,0,Asia +2023-01-22,88512,2386,"[""Wireless Mouse""]",215.99,"{""seasonal"": ""14%""}",182303,1,Asia +2023-04-28,88513,5537,"[""Headphones""]",3414.04,"{""seasonal"": ""25%""}",283041,1,Europe +2024-11-13,88514,9911,"[""Laptop"", ""Headphones""]",3739.3,"{"""": ""29%""}",3449,0,Africa +2023-10-24,88515,8901,"[""Wireless Mouse""]",2090.9,"{"""": ""29%""}",35353,1,Asia +2023-10-24,88516,7306,"[""Wireless Mouse"", ""Phone""]",723.31,{},187354,0,Africa +2023-06-01,88517,1762,"[""Headphones"", ""Phone"", ""Keyboard""]",4096.86,"{""loyalty"": ""5%""}",258262,0,Africa +2024-12-10,88518,6474,"[""Tablet"", ""Wireless Mouse""]",4302.55,{},247080,0,North America +2023-04-05,88519,2890,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",2022.8,"{""loyalty"": ""26%""}",18184,1,Africa +2023-08-14,88520,4992,"[""Wireless Mouse"", ""Tablet""]",2823.77,{},56115,0,Africa +2024-09-13,88521,7787,"[""Laptop""]",2900.94,{},268541,0,North America +2024-02-05,88522,3507,"[""Tablet"", ""Charger"", ""Monitor""]",2796.31,{},145188,0,South America +2024-03-01,88523,599,"[""Keyboard"", ""Headphones""]",2829.85,{},119571,1,Asia +2023-11-08,88524,1164,"[""Phone"", ""Keyboard""]",2123.93,"{""promo"": ""25%""}",216641,0,Europe +2024-05-25,88525,998,"[""Charger"", ""Monitor"", ""Tablet""]",3839.96,"{""loyalty"": ""9%""}",215273,0,Africa +2024-08-28,88526,7654,"[""Keyboard"", ""Phone"", ""Charger""]",3799.58,"{""promo"": ""30%""}",87140,1,North America +2024-11-30,88527,6457,"[""Charger""]",1358.9,"{"""": ""24%""}",50783,0,North America +2024-05-02,88528,2443,"[""Wireless Mouse""]",3335.73,"{""promo"": ""11%""}",97696,1,Africa +2024-11-20,88529,7521,"[""Laptop""]",2101.22,{},159858,0,Africa +2023-07-27,88530,4368,"[""Keyboard"", ""Phone"", ""Monitor""]",4963.81,{},156313,1,Asia +2024-11-03,88531,7141,"[""Monitor"", ""Tablet""]",1841.75,{},109944,0,South America +2024-08-22,88532,8784,"[""Tablet"", ""Phone""]",1445.07,"{""loyalty"": ""8%""}",107678,0,South America +2024-04-24,88533,1946,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",3980.2,{},146779,1,Africa +2024-01-13,88534,3394,"[""Charger"", ""Headphones""]",1302.8,{},144110,1,Asia +2023-04-11,88535,7323,"[""Tablet""]",2978.89,"{""seasonal"": ""14%""}",127752,1,North America +2024-09-22,88536,4702,"[""Headphones""]",3301.03,"{""loyalty"": ""22%""}",154000,0,South America +2024-09-30,88537,6853,"[""Tablet""]",3138.35,{},264898,0,South America +2023-01-25,88538,1874,"[""Charger"", ""Headphones""]",171.96,"{""promo"": ""21%""}",293952,0,Asia +2023-09-08,88539,4932,"[""Headphones""]",3527.96,{},130105,1,North America +2024-09-23,88540,6022,"[""Tablet""]",3825.0,{},19142,1,North America +2024-03-06,88541,9974,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",4020.55,{},60131,1,South America +2023-11-15,88542,3828,"[""Monitor""]",4249.55,"{""seasonal"": ""10%""}",275756,1,North America +2023-02-10,88543,8204,"[""Charger""]",533.05,"{""seasonal"": ""21%""}",214098,0,Asia +2024-08-11,88544,7502,"[""Keyboard""]",1016.85,{},258389,1,Europe +2024-07-29,88545,1001,"[""Headphones"", ""Tablet""]",1524.44,{},262683,0,Europe +2024-10-14,88546,6991,"[""Laptop""]",1300.57,"{""loyalty"": ""24%""}",90928,0,Asia +2024-07-19,88547,6672,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4270.2,"{""loyalty"": ""9%""}",125979,0,Africa +2024-11-13,88548,6274,"[""Phone""]",4297.54,"{""loyalty"": ""11%""}",199026,0,Africa +2024-01-20,88549,5027,"[""Phone"", ""Laptop"", ""Keyboard""]",217.29,{},229908,1,Asia +2023-05-27,88550,1003,"[""Wireless Mouse""]",3969.92,{},38123,0,Europe +2023-02-25,88551,9072,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3222.04,"{""loyalty"": ""24%""}",143998,1,Europe +2024-10-04,88552,5478,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",457.52,{},155861,0,Europe +2024-12-08,88553,5790,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",512.72,{},287779,0,South America +2024-12-08,88554,5807,"[""Phone"", ""Laptop""]",90.16,"{""seasonal"": ""27%""}",135947,1,North America +2023-04-23,88555,4005,"[""Laptop""]",3128.0,{},23460,0,North America +2023-09-16,88556,9366,"[""Monitor""]",2746.44,{},124508,1,North America +2024-11-10,88557,3952,"[""Phone"", ""Laptop"", ""Charger""]",2035.97,"{""seasonal"": ""23%""}",33587,0,Asia +2024-10-22,88558,7201,"[""Phone"", ""Tablet"", ""Laptop""]",4305.34,"{""promo"": ""15%""}",233045,0,Africa +2024-09-02,88559,1601,"[""Keyboard"", ""Phone"", ""Monitor""]",4989.97,{},106131,1,Europe +2023-07-05,88560,9777,"[""Tablet"", ""Wireless Mouse""]",504.06,"{""loyalty"": ""10%""}",11969,1,Africa +2024-10-30,88561,3015,"[""Wireless Mouse""]",4851.21,{},43915,1,Europe +2023-01-18,88562,6625,"[""Monitor"", ""Phone"", ""Headphones""]",2029.0,{},136606,1,Europe +2023-12-23,88563,3892,"[""Keyboard""]",3837.32,{},97095,1,Europe +2024-03-04,88564,3421,"[""Wireless Mouse""]",4086.95,{},111936,0,Africa +2023-02-07,88565,7785,"[""Keyboard"", ""Tablet""]",3517.45,{},187596,1,Europe +2023-06-04,88566,2833,"[""Charger"", ""Tablet""]",791.29,"{""loyalty"": ""7%""}",254362,1,Asia +2023-09-29,88567,4381,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1792.91,"{"""": ""5%""}",207992,1,Asia +2023-08-22,88568,163,"[""Phone""]",1393.73,"{""seasonal"": ""21%""}",66163,0,Africa +2024-12-02,88569,9907,"[""Charger""]",4326.08,"{""seasonal"": ""13%""}",261829,1,Africa +2023-12-30,88570,426,"[""Headphones"", ""Wireless Mouse""]",2674.52,"{""seasonal"": ""18%""}",99579,1,South America +2023-08-11,88571,4298,"[""Wireless Mouse""]",2584.16,"{""promo"": ""18%""}",137622,0,South America +2024-01-23,88572,6201,"[""Monitor"", ""Tablet""]",217.55,{},193623,0,Africa +2023-09-12,88573,2243,"[""Phone"", ""Headphones"", ""Charger""]",4499.38,{},247147,0,Asia +2024-06-17,88574,8029,"[""Keyboard"", ""Charger"", ""Tablet""]",4477.85,{},141493,1,Asia +2023-10-20,88575,9394,"[""Keyboard"", ""Monitor"", ""Tablet""]",51.57,"{""promo"": ""18%""}",56168,1,Europe +2023-05-15,88576,8275,"[""Wireless Mouse""]",3421.43,{},31821,0,Europe +2024-07-11,88577,3090,"[""Charger""]",3432.53,{},266557,0,Asia +2023-11-02,88578,5339,"[""Tablet"", ""Phone"", ""Keyboard""]",4785.52,{},184174,1,South America +2024-05-29,88579,4775,"[""Keyboard"", ""Charger""]",3441.78,{},161951,1,Europe +2024-09-30,88580,1462,"[""Tablet""]",1297.74,"{""seasonal"": ""6%""}",260089,1,North America +2024-05-04,88581,2139,"[""Tablet"", ""Headphones"", ""Charger""]",1895.52,"{""promo"": ""29%""}",104988,1,North America +2024-07-14,88582,8737,"[""Laptop"", ""Monitor"", ""Charger""]",2362.75,{},202470,0,Asia +2023-05-24,88583,9053,"[""Tablet"", ""Charger"", ""Laptop""]",1103.03,"{""seasonal"": ""17%""}",248564,1,South America +2024-06-26,88584,110,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3315.58,"{""loyalty"": ""16%""}",188658,1,South America +2024-10-29,88585,1237,"[""Wireless Mouse"", ""Charger""]",3019.34,"{""loyalty"": ""30%""}",6275,0,Asia +2024-08-03,88586,4608,"[""Phone"", ""Keyboard"", ""Laptop""]",2520.15,"{""loyalty"": ""17%""}",145542,1,North America +2023-06-03,88587,8681,"[""Laptop"", ""Tablet""]",2195.07,"{""promo"": ""15%""}",277528,0,Africa +2024-07-06,88588,4930,"[""Laptop""]",3646.75,"{"""": ""14%""}",287640,1,Asia +2023-06-01,88589,3034,"[""Tablet"", ""Wireless Mouse""]",4721.22,{},167788,0,North America +2023-01-31,88590,7936,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1942.04,{},170249,1,South America +2023-10-31,88591,8332,"[""Keyboard"", ""Charger""]",3763.32,{},53814,0,South America +2024-12-18,88592,8487,"[""Keyboard"", ""Charger""]",4452.76,"{""seasonal"": ""18%""}",170139,0,North America +2023-08-21,88593,6051,"[""Phone"", ""Tablet"", ""Headphones""]",3140.89,"{""promo"": ""22%""}",20442,1,Africa +2023-06-06,88594,4477,"[""Charger""]",3328.92,{},112126,0,Africa +2023-10-12,88595,6745,"[""Wireless Mouse"", ""Phone""]",1257.99,"{""loyalty"": ""26%""}",86764,0,South America +2023-04-05,88596,3343,"[""Phone"", ""Tablet""]",442.61,{},40653,1,South America +2023-03-20,88597,8789,"[""Headphones"", ""Tablet""]",3149.64,"{""seasonal"": ""18%""}",270596,0,Europe +2024-05-23,88598,7210,"[""Headphones"", ""Keyboard"", ""Charger""]",580.28,{},201129,1,Africa +2024-09-06,88599,7141,"[""Wireless Mouse"", ""Headphones""]",2710.76,{},181011,1,Europe +2024-02-20,88600,2207,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4685.45,{},238371,1,Europe +2023-09-04,88601,789,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1187.7,"{""seasonal"": ""18%""}",12074,1,South America +2023-11-16,88602,1806,"[""Charger"", ""Wireless Mouse""]",3649.64,"{""promo"": ""5%""}",167188,0,Africa +2023-09-14,88603,5146,"[""Monitor"", ""Laptop""]",3805.2,{},136749,0,Asia +2024-05-04,88604,8758,"[""Monitor""]",2551.51,"{""loyalty"": ""25%""}",175047,1,Africa +2023-01-20,88605,2026,"[""Monitor"", ""Laptop""]",4147.96,"{""loyalty"": ""30%""}",46994,0,Europe +2024-09-21,88606,2238,"[""Monitor"", ""Laptop""]",3150.48,{},189347,0,South America +2023-10-10,88607,8360,"[""Monitor""]",259.44,"{""seasonal"": ""21%""}",134453,0,Europe +2024-02-21,88608,4519,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3249.77,{},121225,0,North America +2024-08-22,88609,8178,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2432.65,"{""seasonal"": ""8%""}",8731,1,North America +2024-01-06,88610,2348,"[""Headphones""]",2337.66,{},90864,1,Europe +2024-10-11,88611,1409,"[""Headphones"", ""Phone"", ""Tablet""]",4376.66,"{""loyalty"": ""20%""}",143513,1,Africa +2024-11-23,88612,1320,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1982.23,"{""promo"": ""27%""}",269614,1,North America +2024-05-09,88613,147,"[""Headphones"", ""Laptop"", ""Charger""]",2369.94,"{""seasonal"": ""20%""}",41417,0,Europe +2024-09-29,88614,418,"[""Charger""]",3102.3,"{""promo"": ""27%""}",177084,1,Asia +2024-03-22,88615,4452,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1999.41,{},148278,1,Asia +2023-04-23,88616,2880,"[""Wireless Mouse""]",3309.11,{},66263,1,Africa +2024-08-14,88617,7680,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",439.43,"{""seasonal"": ""7%""}",38712,1,South America +2023-06-25,88618,8046,"[""Charger"", ""Wireless Mouse""]",2537.01,"{"""": ""5%""}",122344,1,Asia +2023-02-20,88619,6278,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1777.35,"{""seasonal"": ""15%""}",12298,1,Europe +2023-08-23,88620,117,"[""Charger""]",3111.45,{},277639,0,Asia +2024-01-20,88621,1166,"[""Phone"", ""Laptop""]",1125.77,"{""loyalty"": ""8%""}",39087,0,Europe +2023-01-15,88622,5549,"[""Phone""]",4228.37,{},277693,0,North America +2023-07-25,88623,4706,"[""Charger""]",3207.8,"{""loyalty"": ""14%""}",24894,1,Asia +2023-01-30,88624,8255,"[""Monitor""]",526.88,"{""loyalty"": ""18%""}",33492,1,Europe +2023-07-18,88625,7456,"[""Monitor""]",4564.84,"{""loyalty"": ""6%""}",223658,1,North America +2023-07-15,88626,7427,"[""Charger"", ""Tablet"", ""Phone""]",2703.79,{},174141,1,South America +2023-03-27,88627,5339,"[""Keyboard"", ""Charger"", ""Phone""]",1923.57,"{""seasonal"": ""23%""}",37720,1,Asia +2024-01-07,88628,6144,"[""Headphones"", ""Phone""]",180.22,{},2015,0,North America +2024-02-21,88629,6437,"[""Phone"", ""Charger"", ""Headphones""]",182.69,"{"""": ""20%""}",199881,1,Africa +2024-10-05,88630,7960,"[""Tablet"", ""Headphones"", ""Monitor""]",1157.4,"{"""": ""18%""}",209766,0,Europe +2023-02-08,88631,3052,"[""Phone""]",1483.68,"{""loyalty"": ""23%""}",27652,1,North America +2023-10-11,88632,4991,"[""Tablet"", ""Laptop"", ""Headphones""]",551.87,{},141489,1,South America +2024-10-10,88633,527,"[""Wireless Mouse"", ""Laptop""]",1706.96,{},132960,1,South America +2024-10-21,88634,2404,"[""Monitor""]",3936.7,"{""loyalty"": ""24%""}",20380,0,North America +2023-04-29,88635,2520,"[""Monitor""]",3601.21,{},106197,0,Asia +2024-09-01,88636,4671,"[""Headphones"", ""Laptop""]",2196.94,{},282656,0,South America +2024-11-14,88637,8346,"[""Tablet""]",590.69,"{""promo"": ""17%""}",243184,0,Asia +2023-01-22,88638,1875,"[""Keyboard"", ""Laptop""]",4414.78,{},236486,1,Europe +2024-04-19,88639,8394,"[""Keyboard"", ""Charger"", ""Monitor""]",1149.64,"{""promo"": ""20%""}",80753,1,Europe +2023-09-26,88640,3893,"[""Monitor""]",3679.7,{},274064,1,Asia +2024-11-14,88641,3158,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",292.34,"{"""": ""29%""}",289002,1,Africa +2024-05-13,88642,6358,"[""Tablet"", ""Phone""]",3288.19,"{""seasonal"": ""19%""}",175395,0,Africa +2023-09-22,88643,8771,"[""Keyboard"", ""Headphones"", ""Charger""]",1620.06,{},39280,1,South America +2023-01-18,88644,5536,"[""Monitor""]",733.18,"{""loyalty"": ""29%""}",164442,0,North America +2023-07-13,88645,7542,"[""Laptop"", ""Charger"", ""Tablet""]",442.66,{},164225,0,Asia +2023-06-29,88646,7432,"[""Phone""]",449.4,"{""promo"": ""6%""}",238128,1,South America +2023-05-09,88647,6406,"[""Tablet""]",1545.59,"{""loyalty"": ""25%""}",17303,0,Europe +2024-06-06,88648,6411,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2570.31,{},267205,0,Asia +2024-09-10,88649,9911,"[""Tablet""]",939.49,"{""loyalty"": ""22%""}",287154,1,Europe +2023-01-02,88650,5971,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4774.24,{},194128,1,South America +2023-04-27,88651,9666,"[""Tablet"", ""Headphones""]",792.11,{},11944,0,North America +2024-08-22,88652,4460,"[""Monitor""]",3648.11,{},80888,0,Africa +2023-01-03,88653,2440,"[""Tablet"", ""Charger""]",233.48,"{""promo"": ""19%""}",272160,1,Africa +2024-06-13,88654,4508,"[""Charger""]",2561.73,{},53900,1,Asia +2024-05-20,88655,2329,"[""Monitor""]",3492.81,"{""promo"": ""15%""}",139684,1,Africa +2023-10-29,88656,6382,"[""Tablet"", ""Keyboard""]",344.64,"{"""": ""20%""}",25164,1,Europe +2023-07-22,88657,753,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2016.39,"{""seasonal"": ""21%""}",11321,1,Asia +2023-03-29,88658,5780,"[""Laptop"", ""Charger""]",824.96,"{""loyalty"": ""27%""}",41239,0,South America +2023-10-23,88659,5935,"[""Wireless Mouse""]",2930.49,"{""promo"": ""16%""}",14188,1,Asia +2023-11-27,88660,9160,"[""Phone""]",842.29,{},176113,0,South America +2024-06-09,88661,6547,"[""Wireless Mouse"", ""Phone"", ""Charger""]",50.68,"{"""": ""28%""}",244309,0,North America +2024-02-15,88662,3766,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",782.88,"{"""": ""23%""}",35453,0,Europe +2024-06-10,88663,3287,"[""Wireless Mouse"", ""Charger""]",1242.87,"{""promo"": ""15%""}",54583,1,North America +2024-01-25,88664,1027,"[""Wireless Mouse""]",2776.31,{},79944,1,Asia +2024-06-19,88665,8013,"[""Laptop"", ""Headphones"", ""Phone""]",1015.39,{},101187,1,Asia +2024-01-15,88666,9493,"[""Phone"", ""Keyboard"", ""Monitor""]",2505.48,"{""promo"": ""20%""}",20234,1,Africa +2023-01-10,88667,708,"[""Tablet""]",1002.4,{},183689,1,Asia +2024-01-01,88668,9125,"[""Tablet""]",4307.25,{},225315,1,Africa +2024-08-27,88669,8208,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1022.22,{},194287,0,North America +2023-10-09,88670,1274,"[""Keyboard""]",3165.72,{},275467,1,Africa +2024-08-02,88671,2395,"[""Phone"", ""Headphones"", ""Charger""]",762.84,{},43585,0,South America +2024-10-30,88672,8947,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4489.73,{},128047,0,Europe +2024-11-11,88673,6446,"[""Monitor""]",3880.96,"{""loyalty"": ""20%""}",175561,1,South America +2024-09-20,88674,4244,"[""Headphones""]",4429.66,"{""loyalty"": ""5%""}",217145,0,Europe +2024-09-08,88675,2972,"[""Keyboard"", ""Monitor""]",1770.05,{},184344,0,Africa +2024-09-28,88676,9078,"[""Keyboard"", ""Wireless Mouse""]",1631.06,{},111706,0,North America +2023-05-02,88677,6401,"[""Headphones""]",1086.95,"{""loyalty"": ""18%""}",44505,0,North America +2023-08-21,88678,6452,"[""Phone"", ""Monitor"", ""Headphones""]",1267.17,"{""seasonal"": ""28%""}",98719,0,Africa +2023-10-12,88679,6959,"[""Headphones""]",2918.84,"{""promo"": ""27%""}",145823,1,Asia +2023-11-11,88680,257,"[""Wireless Mouse"", ""Tablet""]",1967.86,{},258709,0,Africa +2024-10-24,88681,7414,"[""Charger"", ""Keyboard"", ""Headphones""]",1645.9,"{""promo"": ""14%""}",114530,1,North America +2024-01-16,88682,1830,"[""Keyboard"", ""Headphones"", ""Phone""]",4966.22,"{""loyalty"": ""28%""}",85781,1,Europe +2024-01-30,88683,5467,"[""Monitor"", ""Laptop""]",2531.89,"{"""": ""9%""}",246001,1,South America +2023-03-11,88684,7032,"[""Headphones"", ""Charger"", ""Keyboard""]",1599.08,"{"""": ""5%""}",91694,0,Africa +2024-07-12,88685,2918,"[""Keyboard""]",3217.42,"{""promo"": ""15%""}",44447,0,Europe +2024-10-02,88686,5993,"[""Laptop"", ""Tablet""]",3673.69,{},147555,0,North America +2024-01-13,88687,4993,"[""Tablet"", ""Charger""]",3261.73,"{""seasonal"": ""29%""}",92967,1,South America +2024-05-25,88688,3520,"[""Headphones"", ""Charger""]",4119.7,{},80675,0,Africa +2023-08-02,88689,6275,"[""Charger"", ""Phone"", ""Tablet""]",3153.53,{},75229,1,South America +2023-12-25,88690,6758,"[""Headphones"", ""Keyboard""]",1989.39,"{""seasonal"": ""15%""}",66443,0,South America +2024-01-14,88691,2506,"[""Phone""]",4488.28,{},255391,1,South America +2024-01-30,88692,8866,"[""Wireless Mouse"", ""Laptop""]",4601.53,"{""promo"": ""7%""}",274357,1,Africa +2023-08-13,88693,2963,"[""Monitor"", ""Keyboard"", ""Phone""]",3049.35,{},288941,0,South America +2024-06-21,88694,7288,"[""Phone""]",2288.95,"{""promo"": ""20%""}",193382,0,Asia +2024-10-22,88695,717,"[""Headphones"", ""Monitor"", ""Charger""]",3640.03,"{""loyalty"": ""26%""}",64827,1,North America +2024-10-20,88696,1522,"[""Charger"", ""Phone"", ""Keyboard""]",2870.97,"{"""": ""21%""}",220189,1,Europe +2024-09-30,88697,8103,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1037.36,"{""loyalty"": ""22%""}",44777,0,North America +2024-06-13,88698,2526,"[""Charger""]",1106.16,{},163333,1,South America +2024-05-26,88699,380,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3695.1,{},196023,1,South America +2024-07-05,88700,165,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2304.59,{},203246,0,South America +2023-07-08,88701,5227,"[""Keyboard""]",3231.16,"{""seasonal"": ""5%""}",297139,0,Europe +2023-08-29,88702,2782,"[""Tablet"", ""Charger"", ""Keyboard""]",3599.35,{},232474,1,South America +2024-03-20,88703,6413,"[""Keyboard""]",58.66,"{""seasonal"": ""5%""}",2665,1,North America +2023-12-09,88704,2537,"[""Laptop"", ""Monitor"", ""Charger""]",466.63,"{""promo"": ""17%""}",176914,0,South America +2023-03-15,88705,1481,"[""Wireless Mouse"", ""Laptop""]",446.81,"{""loyalty"": ""11%""}",175603,0,Asia +2023-09-02,88706,1883,"[""Laptop""]",1965.33,{},294754,0,Europe +2023-02-21,88707,3627,"[""Charger""]",1752.99,"{""loyalty"": ""20%""}",105383,1,Europe +2023-11-03,88708,2625,"[""Keyboard"", ""Wireless Mouse""]",2944.76,"{""seasonal"": ""14%""}",104976,0,Africa +2023-05-17,88709,1940,"[""Keyboard"", ""Phone"", ""Laptop""]",1070.05,{},135930,1,Europe +2023-02-19,88710,5716,"[""Wireless Mouse""]",3337.4,{},226674,0,North America +2024-05-18,88711,8459,"[""Wireless Mouse"", ""Keyboard""]",629.21,{},115469,0,Europe +2023-11-10,88712,1259,"[""Keyboard""]",4716.92,{},67238,1,Asia +2023-09-25,88713,8068,"[""Tablet"", ""Charger""]",375.51,"{""promo"": ""27%""}",290235,1,Asia +2023-05-21,88714,1052,"[""Phone"", ""Tablet""]",481.76,"{""seasonal"": ""23%""}",264581,0,Africa +2023-01-14,88715,9697,"[""Tablet"", ""Monitor""]",4513.59,{},121291,1,Europe +2024-07-07,88716,1218,"[""Monitor"", ""Charger""]",3369.59,{},22528,1,North America +2023-06-05,88717,3217,"[""Wireless Mouse"", ""Headphones""]",4340.36,{},94081,0,South America +2024-01-08,88718,107,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4681.78,{},204112,0,South America +2023-11-20,88719,3368,"[""Wireless Mouse""]",835.72,{},120037,0,Asia +2023-05-02,88720,4260,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4947.06,"{""seasonal"": ""20%""}",29969,1,North America +2023-01-25,88721,224,"[""Headphones"", ""Charger""]",2151.38,{},121940,0,North America +2024-09-15,88722,2983,"[""Keyboard"", ""Charger""]",3641.52,{},81523,1,North America +2023-08-24,88723,1193,"[""Charger"", ""Tablet""]",225.88,"{""seasonal"": ""25%""}",277051,0,Africa +2023-02-02,88724,3299,"[""Monitor"", ""Keyboard"", ""Laptop""]",3405.04,{},97404,0,Asia +2023-04-12,88725,5275,"[""Headphones""]",4706.94,"{""seasonal"": ""14%""}",278184,0,Asia +2024-10-08,88726,7447,"[""Charger""]",1054.54,{},69432,1,South America +2023-08-26,88727,1124,"[""Phone"", ""Monitor""]",4516.49,"{""seasonal"": ""28%""}",199325,0,South America +2024-06-24,88728,3872,"[""Phone"", ""Keyboard""]",1571.92,"{"""": ""24%""}",189151,0,North America +2024-02-22,88729,8322,"[""Headphones""]",733.08,{},46602,1,South America +2024-07-23,88730,2529,"[""Phone""]",611.32,"{""seasonal"": ""16%""}",187429,1,Europe +2023-01-29,88731,1115,"[""Wireless Mouse""]",3145.86,"{""promo"": ""16%""}",222331,1,Africa +2024-04-14,88732,1082,"[""Keyboard""]",3742.41,"{"""": ""10%""}",59021,0,Asia +2023-10-04,88733,2225,"[""Laptop"", ""Monitor""]",4135.67,{},157665,0,Asia +2023-10-08,88734,5108,"[""Laptop"", ""Tablet""]",3910.28,"{""loyalty"": ""28%""}",181642,1,Europe +2024-01-01,88735,5865,"[""Monitor"", ""Headphones""]",3708.01,"{""loyalty"": ""8%""}",266991,0,Europe +2023-06-19,88736,4512,"[""Phone"", ""Keyboard""]",1298.18,{},243314,0,Asia +2024-02-24,88737,6724,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",1476.94,{},223177,0,Asia +2024-02-08,88738,7416,"[""Phone"", ""Headphones"", ""Tablet""]",3143.45,"{""loyalty"": ""26%""}",176051,0,North America +2024-08-27,88739,895,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3521.62,{},36556,1,South America +2024-03-16,88740,3397,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1672.21,{},53246,0,Europe +2023-10-13,88741,3965,"[""Laptop"", ""Wireless Mouse""]",1636.84,"{"""": ""6%""}",267628,0,Africa +2024-02-01,88742,7610,"[""Keyboard"", ""Monitor"", ""Tablet""]",1992.52,"{"""": ""5%""}",191097,1,Africa +2023-09-25,88743,932,"[""Keyboard""]",4753.68,{},247946,1,North America +2023-09-02,88744,6707,"[""Headphones"", ""Charger""]",1067.36,{},166205,0,Africa +2023-07-02,88745,6747,"[""Laptop"", ""Tablet""]",370.87,{},261595,1,North America +2024-03-26,88746,5965,"[""Tablet"", ""Wireless Mouse""]",444.85,"{"""": ""13%""}",187057,0,Africa +2023-04-22,88747,1279,"[""Keyboard""]",2675.0,{},125472,0,North America +2023-10-24,88748,8259,"[""Headphones"", ""Keyboard""]",4398.78,{},222818,0,Asia +2024-06-13,88749,4647,"[""Laptop"", ""Keyboard"", ""Charger""]",2657.45,{},10412,1,Europe +2023-12-16,88750,2809,"[""Keyboard"", ""Laptop"", ""Charger""]",2715.51,"{"""": ""13%""}",91174,1,North America +2024-06-13,88751,7762,"[""Wireless Mouse""]",3841.22,{},57263,0,North America +2023-01-19,88752,7872,"[""Phone""]",4021.18,"{""promo"": ""6%""}",53142,1,Europe +2023-09-18,88753,3117,"[""Keyboard"", ""Wireless Mouse""]",2846.75,"{""loyalty"": ""15%""}",44733,0,Europe +2023-11-30,88754,87,"[""Laptop""]",4133.99,{},243585,0,Africa +2023-09-03,88755,4439,"[""Monitor""]",1003.9,"{""loyalty"": ""14%""}",257317,0,Europe +2024-08-13,88756,5273,"[""Headphones"", ""Charger"", ""Laptop""]",4026.32,{},52099,0,Africa +2024-12-07,88757,1410,"[""Keyboard"", ""Phone""]",3187.78,{},228191,1,North America +2024-02-28,88758,8885,"[""Phone""]",3573.82,"{""loyalty"": ""17%""}",51482,1,Asia +2024-03-30,88759,9395,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3811.0,{},148900,1,North America +2024-05-14,88760,4570,"[""Tablet"", ""Wireless Mouse""]",4273.71,{},244775,0,Africa +2023-05-13,88761,5505,"[""Headphones""]",4475.9,"{""seasonal"": ""21%""}",237212,0,Africa +2023-08-23,88762,2107,"[""Monitor""]",2850.16,"{""seasonal"": ""21%""}",183425,1,North America +2024-03-18,88763,8791,"[""Headphones"", ""Wireless Mouse""]",3557.44,{},165868,0,North America +2024-05-05,88764,4535,"[""Monitor""]",2626.48,{},231813,1,North America +2023-11-17,88765,483,"[""Laptop""]",1016.53,{},117860,0,South America +2024-06-20,88766,4437,"[""Phone""]",150.28,"{""promo"": ""6%""}",287306,0,North America +2023-09-10,88767,3680,"[""Keyboard"", ""Charger"", ""Monitor""]",2947.42,{},235678,1,Europe +2023-07-08,88768,6014,"[""Phone"", ""Monitor""]",2647.07,{},117742,0,South America +2023-06-12,88769,5390,"[""Charger"", ""Monitor""]",4278.87,"{""seasonal"": ""25%""}",254044,1,Europe +2024-03-02,88770,7916,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",2384.5,{},145042,1,North America +2024-01-01,88771,833,"[""Laptop"", ""Headphones"", ""Phone""]",2220.1,"{"""": ""12%""}",249172,1,North America +2023-11-27,88772,1374,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4255.25,"{""promo"": ""19%""}",4178,0,South America +2023-03-03,88773,2499,"[""Keyboard"", ""Headphones"", ""Phone""]",1660.99,"{""seasonal"": ""14%""}",57307,0,Europe +2023-01-25,88774,4445,"[""Wireless Mouse""]",3090.4,"{""promo"": ""30%""}",267651,0,North America +2024-12-05,88775,9151,"[""Charger"", ""Tablet"", ""Phone""]",1886.03,"{""seasonal"": ""6%""}",71787,1,Asia +2023-09-06,88776,3352,"[""Phone"", ""Charger""]",1979.11,"{"""": ""24%""}",270105,0,South America +2023-01-06,88777,5021,"[""Tablet"", ""Monitor""]",2929.78,{},13103,1,Asia +2023-07-28,88778,2829,"[""Charger""]",1732.81,"{"""": ""9%""}",149741,0,North America +2023-11-03,88779,4915,"[""Keyboard"", ""Phone"", ""Charger""]",3941.03,{},127306,0,Asia +2024-12-15,88780,5254,"[""Keyboard"", ""Charger""]",2195.31,{},130367,1,South America +2023-02-08,88781,4992,"[""Phone"", ""Wireless Mouse""]",2509.0,{},272874,0,South America +2023-08-23,88782,8556,"[""Monitor"", ""Headphones""]",714.24,{},54524,0,Europe +2024-02-01,88783,7345,"[""Laptop"", ""Tablet""]",2505.35,{},40527,0,Europe +2024-08-04,88784,1446,"[""Phone""]",2765.02,"{""seasonal"": ""17%""}",142492,0,Africa +2024-11-25,88785,6016,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3350.06,{},263586,1,Europe +2024-03-27,88786,9874,"[""Tablet""]",3945.44,"{""seasonal"": ""8%""}",24474,1,North America +2023-01-30,88787,5403,"[""Laptop"", ""Phone""]",1466.13,{},82128,1,North America +2024-02-04,88788,6084,"[""Laptop""]",1348.97,"{""seasonal"": ""23%""}",1420,1,Europe +2024-08-10,88789,6638,"[""Charger""]",3015.5,{},213576,0,Asia +2023-12-23,88790,7913,"[""Keyboard"", ""Headphones""]",4559.12,{},237008,1,North America +2024-04-25,88791,3546,"[""Tablet"", ""Charger"", ""Phone""]",2600.56,{},137862,0,Africa +2023-03-26,88792,4589,"[""Headphones"", ""Phone""]",1385.8,"{""seasonal"": ""20%""}",144999,1,North America +2024-01-11,88793,6496,"[""Wireless Mouse""]",2212.79,"{""promo"": ""10%""}",260356,0,South America +2024-12-31,88794,2803,"[""Monitor""]",757.53,"{""promo"": ""22%""}",99877,1,North America +2023-02-11,88795,9285,"[""Tablet"", ""Phone""]",2135.1,{},24301,0,South America +2024-03-30,88796,8691,"[""Laptop""]",2436.45,{},190605,0,Asia +2023-04-08,88797,8847,"[""Wireless Mouse""]",2554.21,"{"""": ""18%""}",143618,1,South America +2023-10-14,88798,6857,"[""Wireless Mouse"", ""Charger""]",3858.33,{},250365,1,Africa +2023-09-13,88799,7129,"[""Keyboard"", ""Monitor"", ""Tablet""]",1782.14,"{""promo"": ""25%""}",232130,1,Asia +2024-05-20,88800,5612,"[""Laptop""]",4962.32,"{""seasonal"": ""18%""}",75195,0,Asia +2024-10-19,88801,8812,"[""Laptop""]",1021.36,{},240137,0,North America +2024-04-03,88802,4857,"[""Monitor"", ""Wireless Mouse""]",2539.14,"{""promo"": ""24%""}",147570,1,Africa +2024-04-22,88803,1045,"[""Monitor"", ""Headphones""]",480.52,"{""seasonal"": ""5%""}",293971,0,Africa +2024-08-08,88804,1216,"[""Laptop"", ""Charger""]",326.17,{},96471,0,Asia +2023-04-29,88805,4066,"[""Keyboard"", ""Headphones""]",1762.08,{},140034,0,South America +2024-07-21,88806,8984,"[""Phone"", ""Headphones"", ""Charger""]",4867.6,"{""seasonal"": ""26%""}",39330,0,Europe +2024-03-01,88807,3629,"[""Phone"", ""Tablet""]",4102.08,"{""loyalty"": ""21%""}",73578,0,South America +2023-01-15,88808,5910,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1346.01,{},107624,0,Africa +2023-10-18,88809,9625,"[""Headphones"", ""Laptop""]",1125.6,{},71868,0,North America +2023-01-26,88810,8421,"[""Monitor""]",2566.45,"{""seasonal"": ""5%""}",69910,1,South America +2023-07-31,88811,1363,"[""Phone""]",4183.44,{},104861,0,Africa +2023-01-08,88812,3893,"[""Headphones"", ""Keyboard"", ""Monitor""]",1203.67,"{"""": ""27%""}",57589,1,Europe +2023-12-22,88813,5211,"[""Laptop"", ""Wireless Mouse""]",2247.45,"{""promo"": ""18%""}",234980,1,South America +2024-11-29,88814,8593,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",992.52,{},281318,1,Asia +2024-01-10,88815,2258,"[""Headphones"", ""Charger""]",4651.72,{},61900,1,Asia +2023-01-27,88816,9268,"[""Phone"", ""Monitor""]",1538.64,"{"""": ""24%""}",250579,1,Africa +2023-07-28,88817,7759,"[""Laptop"", ""Charger""]",3937.86,"{"""": ""6%""}",232623,1,South America +2023-02-25,88818,3582,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2954.15,"{""seasonal"": ""11%""}",150229,1,North America +2024-05-19,88819,6608,"[""Laptop"", ""Headphones"", ""Charger""]",4583.44,{},240646,0,Africa +2023-10-30,88820,3091,"[""Phone""]",3421.85,"{""loyalty"": ""28%""}",192260,1,Africa +2023-12-26,88821,9588,"[""Monitor""]",1693.01,{},213787,0,Africa +2023-02-18,88822,7593,"[""Keyboard"", ""Charger""]",4377.78,{},98838,1,Africa +2023-04-25,88823,9398,"[""Headphones"", ""Tablet"", ""Keyboard""]",2277.83,"{""loyalty"": ""22%""}",46621,1,Europe +2023-06-27,88824,4092,"[""Charger""]",1154.2,"{""seasonal"": ""30%""}",6780,0,North America +2023-05-12,88825,8277,"[""Laptop"", ""Keyboard"", ""Tablet""]",4091.78,{},291697,1,South America +2023-03-16,88826,8358,"[""Headphones"", ""Wireless Mouse""]",3188.96,{},188787,0,South America +2024-08-05,88827,9789,"[""Wireless Mouse""]",949.64,{},212311,0,Europe +2023-08-13,88828,5313,"[""Keyboard""]",1742.19,{},153484,1,South America +2023-12-05,88829,6552,"[""Charger"", ""Laptop"", ""Monitor""]",978.0,"{""loyalty"": ""18%""}",10001,0,Europe +2023-09-30,88830,8576,"[""Headphones""]",232.84,{},13086,0,South America +2024-12-02,88831,2760,"[""Monitor"", ""Headphones""]",432.41,"{"""": ""30%""}",229078,0,Africa +2023-08-26,88832,540,"[""Tablet"", ""Headphones""]",3050.15,"{""loyalty"": ""9%""}",116484,0,South America +2023-06-19,88833,8325,"[""Tablet"", ""Laptop""]",4108.32,{},33020,0,North America +2023-08-17,88834,1810,"[""Wireless Mouse"", ""Phone""]",2166.1,{},47165,1,Europe +2024-06-27,88835,5139,"[""Tablet""]",4556.73,"{""loyalty"": ""21%""}",36566,1,South America +2024-07-20,88836,1358,"[""Charger""]",1603.76,"{""seasonal"": ""8%""}",32083,1,South America +2024-02-10,88837,9355,"[""Monitor"", ""Keyboard"", ""Headphones""]",3965.56,"{""promo"": ""16%""}",273620,0,South America +2023-04-08,88838,9154,"[""Laptop"", ""Headphones""]",3148.84,"{""promo"": ""27%""}",240674,1,North America +2023-05-03,88839,9266,"[""Tablet"", ""Wireless Mouse""]",2178.95,{},85254,1,North America +2024-08-20,88840,2426,"[""Charger"", ""Keyboard""]",2789.22,"{""seasonal"": ""5%""}",16402,0,Africa +2024-09-17,88841,7182,"[""Wireless Mouse""]",2608.9,{},235131,0,South America +2024-06-14,88842,210,"[""Headphones"", ""Laptop""]",707.33,{},112262,0,Asia +2023-06-05,88843,7873,"[""Phone"", ""Tablet""]",1962.04,"{""promo"": ""19%""}",191978,0,Europe +2023-05-13,88844,911,"[""Tablet"", ""Phone"", ""Headphones""]",2568.38,{},148798,0,Europe +2024-03-14,88845,6534,"[""Keyboard"", ""Phone""]",4471.66,{},32123,0,Europe +2023-05-21,88846,6277,"[""Wireless Mouse"", ""Phone""]",2442.27,{},166727,0,Europe +2023-03-02,88847,2936,"[""Headphones"", ""Phone""]",1172.12,"{""loyalty"": ""26%""}",120777,0,Asia +2023-09-02,88848,3574,"[""Tablet"", ""Charger"", ""Laptop""]",2652.77,"{""promo"": ""8%""}",19736,0,North America +2024-05-04,88849,5994,"[""Charger"", ""Keyboard""]",3828.99,{},168505,0,South America +2023-07-08,88850,1530,"[""Charger""]",228.18,{},165476,1,South America +2023-09-19,88851,2407,"[""Phone"", ""Laptop""]",912.28,"{"""": ""11%""}",101222,1,Africa +2024-10-15,88852,4475,"[""Tablet"", ""Charger""]",1595.94,"{""seasonal"": ""12%""}",111561,0,Europe +2024-07-15,88853,816,"[""Monitor""]",657.14,"{""loyalty"": ""21%""}",276628,1,Europe +2023-05-16,88854,4623,"[""Tablet""]",3672.89,{},151121,0,Africa +2024-02-15,88855,6642,"[""Monitor"", ""Phone"", ""Headphones""]",3057.91,"{""seasonal"": ""15%""}",35914,0,Asia +2024-08-07,88856,2808,"[""Phone"", ""Keyboard"", ""Monitor""]",4608.43,"{""loyalty"": ""19%""}",38086,1,Africa +2023-04-21,88857,4795,"[""Tablet""]",2077.42,{},197600,0,Africa +2024-04-14,88858,4405,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3727.61,"{""seasonal"": ""6%""}",270644,1,North America +2023-12-14,88859,3573,"[""Headphones"", ""Phone""]",4159.76,"{""loyalty"": ""17%""}",81509,0,North America +2024-06-15,88860,8164,"[""Tablet""]",1573.77,"{""promo"": ""22%""}",126025,0,South America +2024-01-27,88861,4679,"[""Charger""]",539.86,{},54413,1,South America +2023-04-18,88862,8751,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",658.65,{},151253,0,Europe +2023-11-01,88863,9129,"[""Laptop"", ""Keyboard"", ""Phone""]",1441.09,{},199443,0,South America +2023-12-31,88864,1448,"[""Keyboard""]",2352.05,{},239202,0,South America +2024-02-18,88865,779,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",1521.13,{},189526,0,South America +2024-11-18,88866,2414,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1517.11,{},188909,1,Asia +2023-06-09,88867,7357,"[""Headphones"", ""Phone"", ""Laptop""]",851.77,"{"""": ""27%""}",117506,0,North America +2024-03-25,88868,279,"[""Keyboard"", ""Phone""]",2192.3,{},262505,1,Asia +2024-05-25,88869,1187,"[""Wireless Mouse""]",3494.09,"{""loyalty"": ""15%""}",37299,1,North America +2024-05-10,88870,6833,"[""Headphones""]",1600.19,{},235736,1,Africa +2024-10-17,88871,6290,"[""Tablet"", ""Wireless Mouse""]",4151.43,{},38253,1,Europe +2023-04-28,88872,3230,"[""Laptop"", ""Monitor""]",4681.67,{},197177,1,Asia +2023-07-14,88873,1179,"[""Keyboard"", ""Charger""]",630.11,"{""loyalty"": ""23%""}",178512,0,North America +2024-09-23,88874,5574,"[""Laptop""]",3565.68,"{""promo"": ""14%""}",15076,1,North America +2023-11-06,88875,4871,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",1367.76,{},173202,0,Africa +2023-09-01,88876,9657,"[""Keyboard""]",1111.5,{},228702,0,Asia +2024-07-10,88877,3318,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2808.45,{},130053,1,Africa +2024-08-09,88878,3967,"[""Laptop"", ""Charger"", ""Phone""]",2725.22,"{""seasonal"": ""5%""}",26571,0,Europe +2023-09-19,88879,8293,"[""Charger""]",456.31,{},261545,0,North America +2024-01-10,88880,595,"[""Keyboard""]",3929.9,"{""promo"": ""7%""}",134240,0,Africa +2023-04-06,88881,2172,"[""Laptop"", ""Headphones""]",628.76,"{"""": ""9%""}",223260,1,Asia +2024-11-12,88882,7372,"[""Phone"", ""Wireless Mouse""]",2995.13,{},203352,1,Europe +2023-11-20,88883,3227,"[""Wireless Mouse"", ""Headphones""]",1741.95,"{""loyalty"": ""20%""}",62336,1,Africa +2023-09-26,88884,1059,"[""Charger""]",4478.54,"{""seasonal"": ""29%""}",81991,0,Europe +2023-10-16,88885,4465,"[""Tablet""]",3955.01,{},9368,0,Africa +2023-06-02,88886,1638,"[""Keyboard"", ""Phone""]",3629.43,{},167041,1,South America +2023-11-30,88887,4306,"[""Headphones""]",4357.96,"{""promo"": ""23%""}",186678,0,Europe +2023-03-10,88888,4239,"[""Charger"", ""Headphones""]",1081.8,"{""seasonal"": ""11%""}",56477,0,Asia +2023-09-23,88889,3020,"[""Laptop"", ""Keyboard"", ""Headphones""]",4171.89,"{""loyalty"": ""12%""}",52907,1,South America +2024-04-04,88890,9703,"[""Laptop""]",814.0,"{""seasonal"": ""27%""}",159551,0,Asia +2023-02-14,88891,2580,"[""Wireless Mouse""]",653.72,{},224708,1,South America +2023-03-19,88892,7789,"[""Keyboard"", ""Laptop"", ""Headphones""]",2563.18,"{"""": ""9%""}",1529,1,North America +2024-08-06,88893,848,"[""Monitor"", ""Keyboard"", ""Charger""]",4527.26,{},146765,0,South America +2023-07-04,88894,9105,"[""Charger""]",3789.41,{},57965,1,South America +2023-08-19,88895,1108,"[""Monitor"", ""Laptop""]",1400.36,"{""seasonal"": ""14%""}",57303,1,South America +2024-01-17,88896,9019,"[""Laptop""]",2114.38,{},135177,0,South America +2023-10-17,88897,4280,"[""Tablet""]",526.8,{},47189,1,South America +2024-07-13,88898,3037,"[""Monitor"", ""Wireless Mouse""]",4687.44,{},242223,0,Asia +2023-11-05,88899,2213,"[""Tablet"", ""Laptop"", ""Headphones""]",4486.89,{},103572,1,Europe +2023-01-28,88900,206,"[""Keyboard"", ""Tablet"", ""Laptop""]",440.09,"{""seasonal"": ""12%""}",254595,1,South America +2024-09-24,88901,4185,"[""Phone"", ""Wireless Mouse""]",3569.23,"{"""": ""30%""}",85103,0,Europe +2023-02-02,88902,7234,"[""Charger""]",1907.85,{},181882,1,Asia +2023-02-04,88903,9442,"[""Laptop""]",386.96,{},88909,0,Europe +2023-01-08,88904,7139,"[""Charger""]",4400.74,{},191344,1,South America +2023-10-06,88905,7356,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1096.85,"{"""": ""8%""}",88928,0,Europe +2024-07-02,88906,419,"[""Laptop"", ""Wireless Mouse""]",3973.7,"{""seasonal"": ""23%""}",187051,1,Asia +2023-11-09,88907,1406,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",702.6,{},56160,1,Asia +2024-04-22,88908,9416,"[""Tablet"", ""Headphones""]",3425.38,{},130929,1,Africa +2024-11-02,88909,4321,"[""Headphones""]",4467.84,{},270333,0,North America +2023-01-02,88910,984,"[""Charger"", ""Laptop"", ""Keyboard""]",4401.45,"{""promo"": ""25%""}",291087,1,Asia +2023-09-14,88911,72,"[""Wireless Mouse"", ""Charger""]",4589.35,{},152936,1,Africa +2023-05-13,88912,4903,"[""Phone""]",1687.89,{},124159,1,Africa +2024-08-04,88913,2968,"[""Headphones"", ""Laptop""]",2436.26,"{""loyalty"": ""6%""}",270735,1,North America +2023-08-13,88914,557,"[""Wireless Mouse"", ""Charger""]",3060.78,{},93446,0,South America +2024-08-30,88915,2036,"[""Keyboard"", ""Monitor"", ""Tablet""]",1696.0,"{""loyalty"": ""25%""}",83761,0,Europe +2024-03-25,88916,7565,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",2586.62,{},76396,1,Africa +2024-10-28,88917,5392,"[""Monitor""]",2991.97,{},155821,0,North America +2024-07-11,88918,294,"[""Laptop""]",902.23,{},216866,1,Asia +2024-01-02,88919,3975,"[""Charger""]",2482.55,"{""loyalty"": ""13%""}",54514,1,Asia +2024-07-06,88920,5933,"[""Wireless Mouse""]",4792.47,{},241106,0,Asia +2024-12-31,88921,4363,"[""Charger""]",1101.8,"{""promo"": ""10%""}",175443,1,North America +2023-11-14,88922,4252,"[""Monitor""]",4693.8,"{"""": ""22%""}",2789,0,South America +2023-11-12,88923,5064,"[""Phone"", ""Keyboard""]",2057.41,{},247848,0,North America +2024-06-03,88924,1157,"[""Keyboard"", ""Laptop"", ""Headphones""]",2127.38,"{""promo"": ""28%""}",89939,1,North America +2023-03-26,88925,6032,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",759.94,{},275568,1,Africa +2023-03-16,88926,6748,"[""Headphones""]",1842.24,"{"""": ""8%""}",241401,0,Asia +2024-03-13,88927,168,"[""Tablet"", ""Phone"", ""Keyboard""]",1237.75,{},89776,0,North America +2024-11-19,88928,5648,"[""Tablet"", ""Charger"", ""Phone""]",4928.73,{},22390,1,Europe +2024-09-28,88929,4758,"[""Wireless Mouse""]",1577.59,"{""loyalty"": ""11%""}",182498,1,Europe +2024-12-03,88930,8968,"[""Monitor"", ""Charger""]",67.22,{},106223,1,South America +2024-02-19,88931,3064,"[""Laptop"", ""Monitor"", ""Headphones""]",4414.37,{},246397,1,Europe +2023-08-20,88932,7807,"[""Charger"", ""Headphones"", ""Tablet""]",985.61,"{""loyalty"": ""9%""}",183621,1,South America +2023-02-10,88933,841,"[""Charger"", ""Wireless Mouse""]",632.62,{},172800,1,North America +2023-11-15,88934,9917,"[""Laptop"", ""Phone"", ""Tablet""]",477.49,{},123777,1,North America +2023-06-24,88935,848,"[""Tablet"", ""Keyboard""]",3772.21,"{""seasonal"": ""15%""}",206915,0,Africa +2024-09-19,88936,3249,"[""Charger"", ""Monitor""]",860.43,"{""loyalty"": ""9%""}",221841,1,Africa +2024-08-05,88937,6080,"[""Wireless Mouse"", ""Charger""]",3071.9,{},179466,1,Europe +2024-06-07,88938,7786,"[""Monitor"", ""Phone""]",3106.06,{},259573,1,Asia +2024-10-21,88939,9792,"[""Headphones""]",493.71,"{"""": ""10%""}",95261,0,Africa +2023-11-30,88940,851,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2818.33,"{""seasonal"": ""9%""}",126953,1,North America +2024-12-17,88941,4575,"[""Monitor""]",2679.13,{},22089,0,North America +2023-11-02,88942,1884,"[""Charger"", ""Phone"", ""Tablet""]",3419.18,{},199006,0,Asia +2023-12-21,88943,7712,"[""Tablet""]",1366.51,{},69027,0,Africa +2023-01-07,88944,4241,"[""Laptop""]",112.74,{},56483,1,North America +2023-08-05,88945,626,"[""Tablet"", ""Headphones""]",2883.41,"{""promo"": ""5%""}",284764,1,North America +2023-12-15,88946,4872,"[""Laptop""]",141.57,"{"""": ""20%""}",299317,1,North America +2023-10-23,88947,8312,"[""Phone""]",4981.99,"{"""": ""10%""}",288090,1,South America +2023-12-14,88948,6720,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3670.01,"{""loyalty"": ""19%""}",60407,0,South America +2023-09-05,88949,8295,"[""Wireless Mouse""]",2635.7,"{"""": ""14%""}",65768,1,North America +2023-01-24,88950,2020,"[""Charger""]",384.09,"{""promo"": ""16%""}",98106,1,South America +2023-06-11,88951,4326,"[""Wireless Mouse"", ""Monitor""]",500.77,{},188315,0,South America +2023-01-07,88952,7252,"[""Charger""]",232.53,{},113162,0,Africa +2023-12-29,88953,4596,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2850.69,"{""seasonal"": ""30%""}",291930,1,South America +2023-06-30,88954,6129,"[""Charger"", ""Tablet"", ""Monitor""]",740.76,{},99951,0,South America +2024-11-09,88955,5891,"[""Laptop"", ""Phone"", ""Monitor""]",1701.7,{},237984,0,North America +2024-09-11,88956,9559,"[""Charger"", ""Keyboard""]",3092.88,{},257178,0,Asia +2023-09-20,88957,6852,"[""Laptop""]",3070.88,"{""promo"": ""25%""}",202241,1,Europe +2023-02-26,88958,6814,"[""Keyboard"", ""Charger""]",2466.49,{},241543,1,Africa +2023-11-02,88959,8289,"[""Charger""]",947.39,"{""promo"": ""11%""}",178088,1,South America +2023-04-11,88960,4622,"[""Keyboard""]",4089.64,{},148928,0,North America +2024-03-23,88961,2581,"[""Keyboard"", ""Headphones""]",3225.21,"{""seasonal"": ""29%""}",188843,0,North America +2024-10-24,88962,3634,"[""Tablet"", ""Phone""]",4200.37,{},192037,0,South America +2023-04-14,88963,4600,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2266.06,"{"""": ""24%""}",281564,1,North America +2024-12-18,88964,4789,"[""Charger""]",558.95,{},246186,0,Asia +2023-04-17,88965,8283,"[""Laptop"", ""Keyboard"", ""Phone""]",4953.87,"{""loyalty"": ""8%""}",189997,1,North America +2023-07-04,88966,5253,"[""Phone""]",1123.51,{},234546,0,South America +2023-07-15,88967,5308,"[""Laptop"", ""Tablet""]",2689.43,"{""seasonal"": ""8%""}",288810,1,North America +2023-09-14,88968,2336,"[""Laptop""]",4264.18,"{""loyalty"": ""27%""}",292614,0,South America +2024-02-08,88969,7456,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3567.3,{},10413,1,Africa +2024-08-08,88970,6137,"[""Phone"", ""Tablet""]",2275.27,"{""seasonal"": ""20%""}",73175,1,South America +2023-03-28,88971,267,"[""Phone"", ""Charger""]",3385.3,{},152222,1,South America +2023-05-16,88972,765,"[""Monitor""]",1485.33,"{"""": ""12%""}",265009,1,Africa +2024-02-02,88973,2671,"[""Laptop"", ""Keyboard"", ""Monitor""]",1073.24,{},71298,1,Asia +2023-08-15,88974,272,"[""Phone""]",4923.39,{},274247,1,Europe +2024-03-01,88975,1550,"[""Phone"", ""Laptop"", ""Monitor""]",2679.78,"{"""": ""15%""}",14871,0,Asia +2023-08-13,88976,9898,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1615.53,{},5797,1,Africa +2023-06-22,88977,6565,"[""Tablet"", ""Wireless Mouse""]",1162.07,"{""loyalty"": ""12%""}",19682,0,Europe +2024-08-03,88978,5990,"[""Headphones"", ""Monitor""]",907.29,"{""loyalty"": ""28%""}",155132,1,Asia +2023-12-06,88979,2461,"[""Keyboard"", ""Wireless Mouse""]",2211.81,{},227497,0,South America +2024-10-11,88980,530,"[""Keyboard""]",1508.78,{},66871,0,North America +2024-05-31,88981,6513,"[""Keyboard""]",330.98,"{""seasonal"": ""19%""}",129414,0,Africa +2024-05-18,88982,9683,"[""Charger""]",82.64,"{"""": ""7%""}",187136,1,Asia +2024-09-28,88983,747,"[""Phone"", ""Wireless Mouse""]",4330.75,"{""loyalty"": ""7%""}",9835,1,Europe +2024-08-05,88984,1827,"[""Phone""]",1431.62,"{""promo"": ""8%""}",253125,0,North America +2024-11-30,88985,5005,"[""Phone""]",4972.2,{},208867,0,North America +2024-07-15,88986,7423,"[""Tablet""]",3259.77,"{""seasonal"": ""19%""}",68959,0,Europe +2023-12-15,88987,749,"[""Monitor""]",127.86,"{""loyalty"": ""26%""}",288567,1,North America +2024-08-04,88988,3140,"[""Charger""]",4963.83,{},260135,1,North America +2024-07-30,88989,9607,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4176.3,{},257570,1,Africa +2024-08-02,88990,7992,"[""Wireless Mouse""]",2083.83,"{""loyalty"": ""9%""}",216203,0,Europe +2024-10-10,88991,8436,"[""Monitor""]",3815.43,{},222151,0,Asia +2023-07-16,88992,6991,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",186.95,{},290767,1,Africa +2023-04-22,88993,5881,"[""Keyboard"", ""Phone""]",1341.34,{},88373,1,North America +2023-05-31,88994,5947,"[""Charger"", ""Keyboard"", ""Tablet""]",3045.49,{},134178,1,Europe +2023-11-13,88995,3440,"[""Charger""]",4186.02,{},42284,1,Europe +2023-03-16,88996,9317,"[""Monitor""]",4700.55,"{""promo"": ""23%""}",2481,1,North America +2023-12-05,88997,9376,"[""Wireless Mouse""]",547.42,"{""promo"": ""28%""}",136191,0,Europe +2024-03-30,88998,4861,"[""Headphones"", ""Monitor""]",2935.66,"{"""": ""27%""}",36862,0,Africa +2024-06-11,88999,5741,"[""Tablet"", ""Charger"", ""Headphones""]",4259.75,{},174502,1,Europe +2024-09-28,89000,8192,"[""Charger""]",612.43,{},57727,0,Africa +2023-03-01,89001,7537,"[""Phone"", ""Wireless Mouse""]",2374.52,{},100309,0,South America +2023-06-19,89002,2252,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2575.32,"{""seasonal"": ""21%""}",28264,1,Europe +2024-12-05,89003,110,"[""Tablet"", ""Charger"", ""Monitor""]",3147.06,"{"""": ""16%""}",237143,1,Europe +2024-05-24,89004,6700,"[""Tablet"", ""Keyboard"", ""Monitor""]",3502.51,{},14455,0,Europe +2023-01-08,89005,6435,"[""Headphones"", ""Charger"", ""Laptop""]",2335.49,{},109350,1,Africa +2024-03-18,89006,9946,"[""Headphones"", ""Monitor""]",530.21,{},140490,0,Africa +2024-01-04,89007,2948,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4655.73,"{""seasonal"": ""29%""}",153603,0,South America +2024-04-01,89008,3387,"[""Headphones""]",1918.77,{},257819,1,Asia +2023-03-24,89009,6587,"[""Headphones"", ""Phone"", ""Monitor""]",4861.05,"{""promo"": ""9%""}",237969,1,North America +2023-11-17,89010,2746,"[""Laptop""]",1378.43,"{"""": ""27%""}",138940,1,South America +2023-03-31,89011,9133,"[""Phone""]",2139.45,"{""seasonal"": ""25%""}",18841,0,Africa +2023-06-29,89012,8614,"[""Headphones""]",1721.1,{},184694,1,South America +2024-07-21,89013,1130,"[""Monitor""]",3870.32,{},100520,1,Europe +2024-11-10,89014,621,"[""Headphones"", ""Monitor"", ""Tablet""]",3349.22,{},63415,1,Africa +2024-05-25,89015,9933,"[""Charger"", ""Headphones"", ""Monitor""]",3423.06,"{"""": ""27%""}",191482,0,Africa +2024-10-05,89016,3991,"[""Tablet"", ""Wireless Mouse""]",3917.19,"{""promo"": ""10%""}",29991,0,Africa +2024-02-15,89017,6151,"[""Headphones"", ""Keyboard"", ""Laptop""]",865.75,{},255150,1,Asia +2024-03-21,89018,66,"[""Wireless Mouse"", ""Laptop""]",3974.68,"{"""": ""26%""}",155741,0,Africa +2024-09-22,89019,2315,"[""Phone"", ""Laptop""]",3373.96,"{""seasonal"": ""22%""}",127126,1,Europe +2024-01-03,89020,3055,"[""Phone"", ""Monitor""]",2128.49,"{""seasonal"": ""19%""}",250808,0,North America +2024-06-09,89021,6518,"[""Laptop"", ""Wireless Mouse""]",80.55,{},163392,1,Africa +2024-12-18,89022,2202,"[""Headphones""]",4630.07,"{""promo"": ""14%""}",155789,0,Africa +2024-03-11,89023,6515,"[""Phone"", ""Laptop""]",2449.94,{},212952,0,North America +2024-11-16,89024,7033,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2892.3,{},294922,1,South America +2024-06-02,89025,1287,"[""Headphones""]",2158.93,"{""promo"": ""12%""}",98759,1,Asia +2023-07-29,89026,8405,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2178.92,{},173067,1,Asia +2024-09-15,89027,2637,"[""Monitor"", ""Headphones"", ""Keyboard""]",4329.31,{},271895,0,North America +2024-03-17,89028,7517,"[""Laptop""]",419.54,"{""seasonal"": ""15%""}",238896,0,Africa +2024-06-19,89029,4785,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",126.51,{},241485,0,South America +2024-08-25,89030,2987,"[""Headphones""]",4797.5,"{""promo"": ""11%""}",163655,0,Europe +2024-07-07,89031,198,"[""Charger"", ""Keyboard"", ""Monitor""]",1267.34,"{""loyalty"": ""25%""}",145789,0,Africa +2023-04-01,89032,5319,"[""Keyboard"", ""Monitor"", ""Tablet""]",1167.68,"{""promo"": ""27%""}",63702,1,South America +2024-06-28,89033,5472,"[""Monitor"", ""Laptop""]",928.45,{},98408,1,North America +2023-06-19,89034,5562,"[""Monitor""]",2039.63,{},250678,0,Africa +2023-03-15,89035,8736,"[""Headphones"", ""Keyboard"", ""Laptop""]",1280.5,"{"""": ""8%""}",125430,0,Africa +2024-04-08,89036,8969,"[""Laptop"", ""Charger""]",4792.76,{},196420,0,Asia +2024-02-25,89037,293,"[""Wireless Mouse""]",3065.24,"{""promo"": ""22%""}",12066,1,Asia +2024-04-11,89038,4221,"[""Laptop""]",3408.17,{},26805,0,South America +2023-08-02,89039,1253,"[""Phone"", ""Keyboard"", ""Charger""]",1747.53,"{"""": ""20%""}",131249,0,South America +2024-10-15,89040,6253,"[""Charger"", ""Phone"", ""Headphones""]",4446.6,{},201631,0,Asia +2024-02-18,89041,6648,"[""Charger""]",562.89,{},213706,1,South America +2023-06-01,89042,2524,"[""Monitor""]",86.19,{},104492,0,Asia +2024-09-06,89043,3386,"[""Charger"", ""Keyboard"", ""Phone""]",732.01,"{"""": ""12%""}",6122,0,Asia +2024-05-06,89044,8809,"[""Monitor"", ""Keyboard"", ""Charger""]",331.16,"{"""": ""12%""}",180245,0,Asia +2024-12-25,89045,8890,"[""Phone""]",1270.05,{},157840,1,Asia +2024-12-21,89046,4137,"[""Keyboard""]",4226.7,{},187951,0,North America +2023-06-17,89047,6746,"[""Keyboard"", ""Monitor""]",735.55,"{""loyalty"": ""15%""}",142334,0,North America +2024-03-23,89048,1376,"[""Laptop""]",420.41,"{""loyalty"": ""26%""}",78652,0,Africa +2024-08-06,89049,1525,"[""Laptop"", ""Phone"", ""Charger""]",2940.35,"{""promo"": ""26%""}",134285,1,South America +2023-05-27,89050,4463,"[""Wireless Mouse"", ""Keyboard""]",2422.76,"{""loyalty"": ""28%""}",128954,0,Asia +2024-12-16,89051,8582,"[""Tablet"", ""Monitor""]",2183.15,{},269714,1,Africa +2023-01-21,89052,6171,"[""Wireless Mouse"", ""Phone""]",4875.21,{},141424,1,South America +2024-04-13,89053,8303,"[""Headphones"", ""Charger"", ""Tablet""]",4893.46,"{"""": ""19%""}",224551,0,North America +2024-12-01,89054,2866,"[""Phone"", ""Monitor"", ""Tablet""]",2057.79,"{""loyalty"": ""25%""}",137997,1,Africa +2024-10-23,89055,6988,"[""Keyboard"", ""Tablet"", ""Charger""]",4162.09,"{""promo"": ""29%""}",104205,0,South America +2024-11-19,89056,1536,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",1986.14,"{""promo"": ""18%""}",162443,0,North America +2024-01-05,89057,5716,"[""Monitor""]",1597.96,"{""loyalty"": ""11%""}",266456,1,Asia +2024-11-01,89058,5210,"[""Tablet"", ""Keyboard"", ""Headphones""]",1706.57,{},259331,1,Africa +2023-04-19,89059,882,"[""Headphones"", ""Laptop"", ""Monitor""]",935.28,{},22180,0,South America +2024-05-23,89060,8713,"[""Charger"", ""Monitor""]",2259.1,{},135871,1,Europe +2023-02-21,89061,3341,"[""Charger""]",4522.54,"{"""": ""19%""}",99279,1,North America +2023-03-28,89062,1226,"[""Laptop""]",1482.08,"{""loyalty"": ""29%""}",235026,1,Asia +2023-10-15,89063,8908,"[""Phone"", ""Laptop"", ""Keyboard""]",1662.44,{},168588,0,Africa +2023-07-14,89064,9076,"[""Wireless Mouse""]",1712.27,"{""promo"": ""20%""}",193782,1,Asia +2024-06-08,89065,2239,"[""Monitor""]",1129.14,{},28152,1,South America +2024-04-06,89066,7256,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4455.65,"{""promo"": ""13%""}",152729,1,Europe +2024-01-06,89067,8065,"[""Laptop"", ""Headphones"", ""Phone""]",1921.17,"{""loyalty"": ""11%""}",164399,0,North America +2023-12-30,89068,3020,"[""Charger"", ""Wireless Mouse""]",1110.43,{},163724,1,Europe +2024-08-13,89069,5034,"[""Charger"", ""Laptop""]",3902.04,{},211012,1,Asia +2023-02-22,89070,5088,"[""Tablet"", ""Monitor"", ""Phone""]",4934.51,{},297206,1,Asia +2024-08-17,89071,2738,"[""Headphones"", ""Charger""]",455.15,"{"""": ""16%""}",215477,0,South America +2024-02-10,89072,2016,"[""Laptop"", ""Monitor"", ""Tablet""]",3380.83,{},280453,0,South America +2023-10-21,89073,2980,"[""Laptop"", ""Phone""]",2645.44,{},131919,1,Europe +2023-03-14,89074,830,"[""Charger""]",4607.35,"{""loyalty"": ""23%""}",178656,1,North America +2023-09-16,89075,1086,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1888.76,{},208994,1,Africa +2023-04-01,89076,2733,"[""Wireless Mouse""]",2007.29,{},288506,1,Europe +2024-01-26,89077,4395,"[""Keyboard"", ""Wireless Mouse""]",614.56,{},15619,1,Africa +2024-05-20,89078,2702,"[""Phone""]",2493.94,{},101593,0,South America +2024-04-28,89079,7925,"[""Keyboard"", ""Laptop"", ""Monitor""]",4843.38,{},121480,0,Asia +2024-02-03,89080,6535,"[""Keyboard"", ""Tablet""]",3892.76,"{""promo"": ""22%""}",64781,0,Africa +2024-04-22,89081,873,"[""Monitor"", ""Tablet"", ""Keyboard""]",4031.28,{},270760,0,Africa +2023-02-11,89082,9217,"[""Tablet""]",1337.04,"{""promo"": ""23%""}",45573,0,North America +2023-03-19,89083,3322,"[""Keyboard""]",4552.12,"{"""": ""12%""}",97580,0,North America +2024-02-26,89084,2940,"[""Tablet"", ""Laptop""]",3415.95,"{""loyalty"": ""17%""}",195106,1,Europe +2023-08-05,89085,288,"[""Monitor"", ""Wireless Mouse""]",706.64,{},253333,1,Europe +2023-03-16,89086,5406,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1317.14,"{""loyalty"": ""16%""}",109740,0,South America +2023-03-30,89087,1835,"[""Monitor""]",898.67,{},127915,0,South America +2023-09-14,89088,7607,"[""Laptop""]",740.67,"{""seasonal"": ""17%""}",249329,1,Africa +2023-04-30,89089,3392,"[""Monitor"", ""Phone""]",1429.03,{},21465,0,Europe +2023-05-03,89090,8934,"[""Phone"", ""Laptop""]",1945.19,"{"""": ""10%""}",200117,0,Europe +2024-05-28,89091,9375,"[""Phone"", ""Laptop"", ""Monitor""]",2039.14,{},124241,1,South America +2024-07-30,89092,812,"[""Tablet"", ""Charger"", ""Phone""]",3934.17,{},71874,1,North America +2024-07-16,89093,3710,"[""Laptop"", ""Keyboard""]",2514.32,"{""seasonal"": ""12%""}",10508,0,Africa +2024-04-12,89094,2463,"[""Laptop"", ""Keyboard"", ""Tablet""]",1701.43,"{""promo"": ""9%""}",281474,0,Europe +2023-04-15,89095,4173,"[""Monitor"", ""Tablet""]",2062.09,{},3326,0,Europe +2024-12-10,89096,8522,"[""Keyboard"", ""Monitor""]",3255.73,"{""promo"": ""30%""}",255100,0,South America +2024-10-13,89097,2551,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",182.38,"{""loyalty"": ""27%""}",136539,0,North America +2024-08-14,89098,4226,"[""Headphones"", ""Monitor"", ""Laptop""]",1316.25,"{""seasonal"": ""11%""}",29285,0,Africa +2024-09-15,89099,2027,"[""Monitor""]",2701.05,"{""seasonal"": ""8%""}",265577,1,Europe +2023-09-05,89100,9854,"[""Phone"", ""Keyboard""]",2703.33,{},74567,0,Europe +2024-10-08,89101,2645,"[""Monitor"", ""Tablet"", ""Headphones""]",2994.37,{},49018,0,North America +2023-02-27,89102,5964,"[""Charger"", ""Laptop""]",3565.01,"{""seasonal"": ""10%""}",61684,0,Asia +2023-03-10,89103,8816,"[""Wireless Mouse"", ""Headphones""]",3216.26,{},130525,0,Asia +2023-10-26,89104,202,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",839.38,"{""seasonal"": ""8%""}",95451,1,Europe +2024-10-11,89105,4908,"[""Headphones"", ""Laptop""]",2243.39,"{""promo"": ""17%""}",238867,1,North America +2023-06-04,89106,780,"[""Monitor""]",1700.45,{},115730,1,Asia +2023-08-23,89107,3473,"[""Headphones"", ""Keyboard"", ""Monitor""]",3639.41,"{"""": ""16%""}",19130,0,Asia +2023-04-29,89108,5301,"[""Monitor"", ""Phone""]",4129.76,{},230176,0,Asia +2023-10-13,89109,3219,"[""Headphones""]",3323.6,"{""promo"": ""11%""}",266156,0,Asia +2023-05-07,89110,6026,"[""Phone"", ""Monitor""]",3175.88,"{""seasonal"": ""6%""}",194892,1,South America +2024-07-04,89111,8632,"[""Phone"", ""Wireless Mouse""]",4613.04,{},66001,1,Europe +2024-04-29,89112,7368,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2368.75,"{""loyalty"": ""27%""}",176210,1,Asia +2023-04-26,89113,8139,"[""Monitor""]",3838.76,{},39909,0,North America +2024-04-20,89114,8677,"[""Monitor""]",980.67,{},24854,1,North America +2024-09-18,89115,5104,"[""Wireless Mouse"", ""Phone""]",774.86,"{""promo"": ""5%""}",14541,1,Asia +2023-02-15,89116,9053,"[""Charger"", ""Tablet""]",2701.81,"{"""": ""20%""}",291819,1,Africa +2024-11-22,89117,3761,"[""Headphones"", ""Phone""]",53.81,{},64453,1,Europe +2024-10-07,89118,6809,"[""Monitor"", ""Headphones""]",3914.49,{},35923,1,Africa +2024-07-01,89119,8616,"[""Laptop"", ""Headphones"", ""Tablet""]",672.02,{},121860,0,North America +2024-02-14,89120,1723,"[""Monitor"", ""Wireless Mouse""]",1843.93,{},203501,1,Asia +2023-03-27,89121,3597,"[""Monitor""]",504.22,"{""promo"": ""8%""}",262897,1,Africa +2023-12-17,89122,5628,"[""Headphones"", ""Charger""]",2390.32,"{""promo"": ""18%""}",145741,0,Asia +2024-04-07,89123,2073,"[""Laptop"", ""Headphones""]",1746.43,"{""promo"": ""27%""}",206264,0,Europe +2024-02-26,89124,2223,"[""Laptop""]",3770.74,"{"""": ""24%""}",214152,1,South America +2023-08-04,89125,3036,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1765.08,"{"""": ""29%""}",34230,1,Africa +2023-09-05,89126,513,"[""Charger"", ""Phone"", ""Keyboard""]",882.01,"{"""": ""7%""}",95152,0,Africa +2024-10-04,89127,5563,"[""Wireless Mouse"", ""Phone""]",3744.77,"{"""": ""26%""}",207827,0,North America +2023-03-21,89128,7934,"[""Charger""]",2390.56,{},72457,0,South America +2024-05-23,89129,7387,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3936.09,"{""promo"": ""7%""}",122733,0,Europe +2023-11-18,89130,706,"[""Monitor"", ""Phone""]",840.14,"{""loyalty"": ""24%""}",52401,0,Asia +2024-03-14,89131,2422,"[""Headphones"", ""Keyboard""]",4109.23,"{""promo"": ""19%""}",43586,1,Africa +2023-08-03,89132,1874,"[""Laptop""]",2136.07,"{"""": ""23%""}",88942,1,Africa +2024-07-03,89133,4587,"[""Keyboard"", ""Monitor"", ""Phone""]",1761.97,"{""promo"": ""15%""}",37839,1,Europe +2024-01-22,89134,6227,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4080.23,"{""seasonal"": ""30%""}",131470,1,Asia +2024-12-23,89135,1075,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3807.81,{},146914,0,North America +2023-06-13,89136,9807,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",571.26,{},172058,0,Europe +2023-09-22,89137,8240,"[""Tablet"", ""Charger"", ""Phone""]",3767.27,{},33591,1,Africa +2024-02-14,89138,8831,"[""Monitor""]",2931.88,"{""seasonal"": ""12%""}",115132,1,North America +2024-07-12,89139,1728,"[""Keyboard""]",2754.56,"{""seasonal"": ""28%""}",30975,0,South America +2024-05-02,89140,1633,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1208.87,{},31986,1,Africa +2024-03-21,89141,8537,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1029.68,{},234030,0,South America +2024-01-08,89142,9000,"[""Keyboard""]",1226.86,{},274160,0,Asia +2024-02-04,89143,7161,"[""Keyboard"", ""Monitor"", ""Charger""]",4652.72,"{""seasonal"": ""26%""}",49779,1,North America +2023-11-27,89144,6037,"[""Laptop"", ""Tablet""]",2497.32,{},100672,0,Europe +2023-05-11,89145,7300,"[""Headphones"", ""Tablet"", ""Charger""]",4244.71,{},35812,0,South America +2023-07-19,89146,3422,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4809.83,"{""promo"": ""11%""}",10319,0,South America +2023-09-27,89147,3700,"[""Wireless Mouse""]",1900.73,{},270495,0,Europe +2023-10-02,89148,1666,"[""Charger"", ""Tablet"", ""Phone""]",3732.91,{},29807,1,Africa +2023-04-21,89149,9792,"[""Phone"", ""Keyboard""]",1624.25,"{""loyalty"": ""29%""}",268418,0,North America +2024-06-06,89150,6472,"[""Phone""]",3205.05,{},35751,0,Asia +2023-04-11,89151,4067,"[""Phone""]",4451.94,"{""seasonal"": ""9%""}",237643,0,South America +2023-03-18,89152,2923,"[""Wireless Mouse""]",3836.14,"{"""": ""27%""}",122388,1,Asia +2024-10-20,89153,5858,"[""Monitor"", ""Charger""]",133.73,"{"""": ""19%""}",56440,0,North America +2023-04-07,89154,8629,"[""Wireless Mouse"", ""Charger""]",2296.17,"{"""": ""9%""}",138342,1,Africa +2023-01-26,89155,7776,"[""Monitor"", ""Tablet""]",4627.14,{},144840,0,Asia +2023-03-31,89156,1096,"[""Keyboard"", ""Wireless Mouse""]",1087.14,{},80542,0,Africa +2024-12-19,89157,8986,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1576.79,"{""loyalty"": ""17%""}",272451,1,Europe +2024-09-15,89158,1318,"[""Charger"", ""Monitor""]",4883.93,{},168613,1,Europe +2024-02-07,89159,3635,"[""Charger"", ""Monitor""]",4148.39,"{"""": ""6%""}",128466,0,Europe +2023-11-29,89160,2560,"[""Phone"", ""Charger""]",2539.63,{},178661,0,Europe +2024-11-14,89161,3593,"[""Keyboard""]",2922.29,"{"""": ""6%""}",159395,0,Africa +2024-03-04,89162,9402,"[""Laptop""]",2271.36,"{""seasonal"": ""7%""}",59823,0,South America +2024-10-17,89163,3417,"[""Phone""]",3542.38,{},56088,1,Africa +2024-12-21,89164,7642,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2054.02,{},221053,0,Asia +2023-12-02,89165,5676,"[""Phone""]",219.1,"{""loyalty"": ""16%""}",165834,1,South America +2024-11-01,89166,9707,"[""Headphones"", ""Phone"", ""Tablet""]",857.31,{},250223,0,Africa +2023-01-06,89167,2829,"[""Tablet"", ""Phone""]",2665.42,{},64900,0,Africa +2023-11-11,89168,9506,"[""Keyboard"", ""Tablet""]",2883.63,"{""seasonal"": ""23%""}",196349,1,South America +2024-06-03,89169,6363,"[""Headphones""]",4641.41,{},270995,0,Asia +2024-03-25,89170,6739,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",2390.81,"{""promo"": ""24%""}",160841,1,Asia +2023-05-05,89171,520,"[""Keyboard"", ""Phone""]",1862.01,"{""loyalty"": ""26%""}",183723,0,Africa +2023-04-29,89172,4470,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4098.67,{},14011,1,South America +2023-08-14,89173,6857,"[""Laptop"", ""Monitor"", ""Phone""]",3183.52,{},28484,0,Asia +2023-01-23,89174,9502,"[""Monitor"", ""Keyboard"", ""Charger""]",1105.82,"{""loyalty"": ""20%""}",228418,0,South America +2024-01-09,89175,6484,"[""Keyboard""]",1721.71,{},163282,1,Asia +2024-11-23,89176,9011,"[""Tablet""]",2987.66,{},164416,1,Europe +2024-02-06,89177,4353,"[""Headphones"", ""Phone"", ""Charger""]",578.88,{},180242,1,Asia +2023-10-11,89178,6957,"[""Monitor"", ""Keyboard"", ""Phone""]",1487.99,"{""loyalty"": ""25%""}",147638,0,North America +2024-02-28,89179,2291,"[""Tablet"", ""Monitor""]",3831.21,{},84351,1,North America +2024-07-27,89180,4256,"[""Monitor""]",1201.78,"{""loyalty"": ""14%""}",18201,0,North America +2024-02-19,89181,7492,"[""Tablet"", ""Phone"", ""Charger""]",3648.33,"{""loyalty"": ""10%""}",118600,1,Africa +2023-02-17,89182,4868,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2517.84,"{""promo"": ""28%""}",82609,0,South America +2024-11-20,89183,4052,"[""Tablet""]",3676.29,"{""loyalty"": ""20%""}",85892,1,Asia +2024-07-10,89184,5346,"[""Phone""]",4691.93,"{""loyalty"": ""10%""}",35220,0,South America +2023-07-17,89185,8499,"[""Headphones""]",1112.03,"{""loyalty"": ""27%""}",131400,1,North America +2023-08-14,89186,8183,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4291.41,{},205965,0,Asia +2023-08-24,89187,2669,"[""Keyboard"", ""Wireless Mouse""]",4622.19,"{""promo"": ""8%""}",36783,0,North America +2023-05-19,89188,3980,"[""Keyboard"", ""Charger"", ""Headphones""]",72.07,"{"""": ""29%""}",161408,1,Africa +2023-12-14,89189,4580,"[""Monitor"", ""Phone"", ""Headphones""]",3537.33,"{""seasonal"": ""7%""}",98236,0,Africa +2024-01-26,89190,8966,"[""Tablet"", ""Headphones"", ""Charger""]",4824.0,"{""loyalty"": ""14%""}",267145,0,Asia +2023-07-26,89191,4788,"[""Monitor""]",3628.43,"{"""": ""5%""}",204300,0,Europe +2023-09-14,89192,1989,"[""Wireless Mouse"", ""Headphones""]",712.1,"{"""": ""5%""}",149170,0,Africa +2023-08-27,89193,7460,"[""Monitor""]",4016.49,{},48938,0,Asia +2024-05-15,89194,4704,"[""Laptop""]",2181.46,{},230809,0,North America +2024-08-08,89195,4791,"[""Phone"", ""Keyboard""]",1048.16,"{"""": ""19%""}",15879,0,Asia +2023-01-04,89196,614,"[""Keyboard"", ""Monitor"", ""Tablet""]",4171.23,"{""promo"": ""20%""}",111282,0,Europe +2023-06-27,89197,5679,"[""Keyboard"", ""Headphones"", ""Monitor""]",2079.47,"{""loyalty"": ""21%""}",16616,1,North America +2023-11-10,89198,5618,"[""Phone"", ""Charger"", ""Tablet""]",2923.69,{},135150,0,North America +2024-06-20,89199,3407,"[""Charger"", ""Tablet"", ""Laptop""]",3321.04,{},265583,1,South America +2023-11-02,89200,4038,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1907.88,"{""loyalty"": ""7%""}",116314,0,Africa +2023-01-08,89201,6854,"[""Phone""]",822.54,"{"""": ""5%""}",79947,0,Asia +2023-08-23,89202,28,"[""Monitor"", ""Tablet""]",3158.21,{},214253,1,North America +2023-11-16,89203,6953,"[""Wireless Mouse"", ""Laptop""]",4303.5,"{""loyalty"": ""24%""}",80143,0,Europe +2024-04-04,89204,2422,"[""Keyboard"", ""Phone""]",782.22,{},241092,0,Africa +2023-01-02,89205,8228,"[""Laptop""]",2032.27,"{""loyalty"": ""28%""}",244502,0,Asia +2024-07-24,89206,2094,"[""Keyboard""]",2328.86,{},166511,1,North America +2024-08-07,89207,3837,"[""Phone"", ""Headphones""]",2665.6,"{""seasonal"": ""9%""}",170555,0,Africa +2023-05-10,89208,4520,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",281.87,{},186350,1,Asia +2024-06-24,89209,6847,"[""Tablet"", ""Laptop"", ""Headphones""]",437.1,"{"""": ""16%""}",154393,1,Europe +2023-08-16,89210,2720,"[""Tablet"", ""Keyboard"", ""Phone""]",2687.45,{},290748,0,Asia +2023-07-17,89211,1550,"[""Monitor"", ""Laptop"", ""Phone""]",1424.65,{},18008,0,Africa +2023-04-08,89212,5277,"[""Headphones"", ""Monitor"", ""Charger""]",484.01,"{""seasonal"": ""8%""}",264052,1,Africa +2024-02-08,89213,9655,"[""Tablet"", ""Wireless Mouse""]",1264.65,{},289165,0,North America +2023-03-19,89214,1660,"[""Monitor"", ""Phone"", ""Laptop""]",3593.29,"{""promo"": ""14%""}",148877,0,North America +2023-08-28,89215,562,"[""Phone"", ""Headphones""]",4503.71,{},80457,0,Asia +2023-05-30,89216,516,"[""Laptop"", ""Tablet"", ""Charger""]",3391.49,"{""loyalty"": ""13%""}",77373,0,South America +2024-12-22,89217,9724,"[""Phone""]",1343.51,"{""promo"": ""21%""}",161144,1,Europe +2024-02-19,89218,8344,"[""Wireless Mouse"", ""Headphones""]",2875.32,{},248719,0,North America +2024-09-13,89219,9807,"[""Laptop""]",195.94,"{"""": ""7%""}",215765,1,Asia +2023-10-07,89220,7048,"[""Monitor"", ""Laptop""]",3179.06,"{""seasonal"": ""27%""}",139509,1,South America +2023-11-02,89221,5318,"[""Monitor"", ""Laptop""]",2670.55,{},159791,1,North America +2023-07-01,89222,3357,"[""Keyboard"", ""Monitor""]",3431.37,"{""seasonal"": ""19%""}",256623,0,Europe +2023-04-17,89223,5629,"[""Tablet"", ""Monitor"", ""Charger""]",1267.88,"{""promo"": ""20%""}",17497,0,South America +2023-11-03,89224,1748,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1681.98,{},292386,0,North America +2023-09-18,89225,692,"[""Keyboard"", ""Tablet"", ""Phone""]",4849.34,"{""promo"": ""9%""}",203098,1,Europe +2023-03-24,89226,8750,"[""Keyboard""]",1017.48,"{"""": ""22%""}",228314,0,Europe +2024-07-15,89227,9685,"[""Wireless Mouse""]",640.8,{},282005,0,Asia +2023-11-08,89228,1206,"[""Phone"", ""Headphones"", ""Tablet""]",1762.59,{},143217,0,South America +2023-03-15,89229,790,"[""Keyboard"", ""Tablet""]",1752.93,{},79336,0,Africa +2023-01-20,89230,244,"[""Monitor"", ""Wireless Mouse""]",2621.88,"{""loyalty"": ""7%""}",6922,0,Asia +2023-10-31,89231,323,"[""Keyboard""]",1346.25,{},211689,0,South America +2024-12-19,89232,5195,"[""Keyboard"", ""Tablet""]",4497.82,{},198681,0,Asia +2023-07-04,89233,2213,"[""Headphones"", ""Charger"", ""Phone""]",1175.59,{},148401,0,Asia +2024-12-18,89234,590,"[""Laptop""]",1239.91,{},62825,1,Asia +2024-03-18,89235,580,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2734.22,{},123844,1,Africa +2024-10-17,89236,5075,"[""Headphones"", ""Tablet""]",3089.82,{},12029,1,Europe +2024-10-07,89237,7097,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1886.46,"{"""": ""29%""}",221810,0,South America +2024-08-21,89238,4840,"[""Laptop"", ""Phone"", ""Charger""]",965.45,{},162186,0,Africa +2024-03-10,89239,1858,"[""Laptop""]",2412.52,"{""seasonal"": ""8%""}",156721,1,North America +2023-02-27,89240,6668,"[""Tablet""]",4618.61,{},156898,1,Europe +2023-07-22,89241,4391,"[""Laptop"", ""Phone""]",3995.43,"{""promo"": ""26%""}",95892,0,South America +2024-02-22,89242,1480,"[""Keyboard"", ""Charger""]",2421.09,"{""seasonal"": ""10%""}",94684,0,Africa +2024-02-18,89243,7409,"[""Tablet"", ""Charger""]",4157.22,{},27555,0,Africa +2023-07-18,89244,7825,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3363.23,"{""loyalty"": ""25%""}",244139,1,South America +2024-01-10,89245,2492,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1542.55,"{""seasonal"": ""28%""}",201839,1,Africa +2024-07-12,89246,6780,"[""Monitor"", ""Tablet""]",4754.86,{},253887,1,Africa +2023-09-30,89247,3191,"[""Laptop"", ""Charger"", ""Monitor""]",2622.49,{},158507,0,Europe +2023-05-28,89248,3749,"[""Laptop"", ""Tablet"", ""Keyboard""]",1083.82,{},250790,1,North America +2024-07-05,89249,2985,"[""Charger""]",900.55,"{""loyalty"": ""18%""}",28714,1,Africa +2024-01-30,89250,5874,"[""Keyboard"", ""Headphones""]",631.65,"{""promo"": ""23%""}",263268,1,Asia +2023-09-04,89251,1235,"[""Tablet"", ""Keyboard""]",799.22,{},207749,1,Europe +2023-05-17,89252,6443,"[""Phone""]",3653.96,{},258065,0,Asia +2023-07-11,89253,6347,"[""Keyboard""]",3558.34,"{"""": ""21%""}",15468,0,Europe +2023-08-11,89254,4306,"[""Tablet"", ""Charger""]",1110.63,{},294056,1,Europe +2024-05-02,89255,3891,"[""Laptop"", ""Headphones""]",4835.41,{},125425,0,Asia +2024-11-09,89256,662,"[""Monitor"", ""Headphones"", ""Phone""]",1724.69,{},24798,0,Asia +2023-05-26,89257,4984,"[""Wireless Mouse"", ""Keyboard""]",4572.31,{},19691,1,Europe +2024-12-19,89258,303,"[""Charger"", ""Monitor""]",1649.38,{},132189,0,Africa +2023-12-13,89259,9946,"[""Monitor""]",3094.78,{},110564,0,Africa +2023-03-17,89260,383,"[""Keyboard""]",788.72,{},13881,1,Asia +2023-06-25,89261,246,"[""Monitor"", ""Keyboard""]",4745.2,{},70401,0,North America +2024-05-26,89262,9079,"[""Phone"", ""Monitor""]",4702.45,{},232925,1,North America +2023-02-08,89263,2178,"[""Charger"", ""Phone""]",722.53,{},248201,1,Asia +2024-02-27,89264,7459,"[""Laptop"", ""Wireless Mouse""]",2144.32,{},119224,0,South America +2024-09-29,89265,2691,"[""Monitor"", ""Phone"", ""Charger""]",597.59,"{""seasonal"": ""25%""}",167125,1,Africa +2024-02-05,89266,2421,"[""Monitor""]",350.39,"{""seasonal"": ""5%""}",93087,0,Asia +2023-09-19,89267,8156,"[""Monitor"", ""Headphones""]",2387.99,"{""loyalty"": ""16%""}",289804,1,South America +2023-07-10,89268,9123,"[""Monitor""]",2619.42,"{"""": ""19%""}",68266,1,South America +2024-11-25,89269,4136,"[""Phone"", ""Charger""]",3485.89,{},248778,0,Africa +2023-12-03,89270,1368,"[""Monitor"", ""Phone"", ""Tablet""]",1091.84,{},6424,0,North America +2024-03-11,89271,6605,"[""Headphones"", ""Charger""]",4987.08,{},102090,1,North America +2024-06-09,89272,8444,"[""Monitor"", ""Charger"", ""Tablet""]",2900.59,{},96249,0,North America +2024-04-03,89273,8093,"[""Monitor"", ""Laptop""]",4237.09,"{""promo"": ""29%""}",86819,1,North America +2024-09-09,89274,2105,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",586.56,{},120765,0,Europe +2024-09-11,89275,3173,"[""Monitor"", ""Tablet"", ""Phone""]",2770.84,{},189085,0,Asia +2023-01-03,89276,9955,"[""Tablet""]",2137.67,{},181854,1,Asia +2023-01-06,89277,7123,"[""Phone"", ""Headphones"", ""Tablet""]",159.86,"{""seasonal"": ""30%""}",299307,0,South America +2023-11-24,89278,3173,"[""Headphones""]",4585.36,"{""seasonal"": ""15%""}",71694,1,Asia +2023-05-27,89279,8994,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4628.27,{},207823,1,North America +2024-03-07,89280,9009,"[""Headphones""]",4050.2,{},280288,1,North America +2023-12-24,89281,8604,"[""Laptop""]",851.27,{},119293,1,Europe +2024-02-02,89282,1371,"[""Wireless Mouse"", ""Monitor""]",4320.2,{},293728,1,South America +2024-04-02,89283,1974,"[""Phone"", ""Laptop"", ""Keyboard""]",3238.89,"{"""": ""8%""}",248620,1,Africa +2024-04-30,89284,9169,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",548.18,{},82523,1,Africa +2023-08-12,89285,7533,"[""Headphones"", ""Laptop""]",1364.89,"{""seasonal"": ""11%""}",171830,1,Europe +2023-06-16,89286,6500,"[""Charger"", ""Laptop"", ""Monitor""]",2486.07,"{"""": ""9%""}",134253,0,Asia +2024-06-29,89287,7920,"[""Headphones"", ""Keyboard"", ""Monitor""]",4326.42,{},196974,0,Africa +2024-05-21,89288,2678,"[""Wireless Mouse"", ""Monitor""]",948.75,"{""seasonal"": ""24%""}",3871,0,Africa +2024-11-28,89289,7504,"[""Phone""]",4960.34,"{""loyalty"": ""29%""}",111659,1,Europe +2024-01-28,89290,8168,"[""Charger"", ""Phone"", ""Tablet""]",4805.74,{},201436,1,Europe +2023-05-10,89291,4571,"[""Tablet"", ""Keyboard"", ""Monitor""]",2381.53,"{"""": ""10%""}",225583,0,South America +2024-03-11,89292,1791,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1016.09,{},297182,1,North America +2024-08-29,89293,4785,"[""Monitor""]",4416.97,"{""promo"": ""22%""}",150503,1,Europe +2023-03-10,89294,1895,"[""Phone"", ""Keyboard"", ""Tablet""]",2310.65,{},94994,1,Asia +2024-03-05,89295,8829,"[""Monitor""]",1780.43,"{""promo"": ""28%""}",157204,1,Europe +2023-09-26,89296,1420,"[""Phone""]",1663.83,"{""seasonal"": ""13%""}",201056,0,North America +2023-07-03,89297,9343,"[""Charger"", ""Wireless Mouse""]",3061.94,"{""promo"": ""18%""}",116764,1,South America +2023-03-26,89298,8740,"[""Keyboard"", ""Monitor"", ""Headphones""]",1082.17,{},49772,1,Asia +2024-09-29,89299,5391,"[""Monitor"", ""Keyboard"", ""Laptop""]",4779.64,"{""loyalty"": ""29%""}",136096,1,South America +2024-03-30,89300,9874,"[""Monitor"", ""Keyboard""]",441.78,{},195730,0,Europe +2024-05-20,89301,4822,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3138.16,{},16553,1,Europe +2024-05-15,89302,7919,"[""Headphones""]",606.84,{},80815,0,North America +2023-06-16,89303,7832,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3242.05,"{""seasonal"": ""13%""}",197097,0,North America +2024-07-29,89304,5882,"[""Phone""]",3645.42,"{"""": ""16%""}",136612,0,North America +2024-10-11,89305,7170,"[""Headphones""]",4398.93,"{""loyalty"": ""24%""}",274104,1,Europe +2023-05-04,89306,9311,"[""Keyboard""]",932.95,"{""promo"": ""30%""}",217107,1,North America +2024-11-30,89307,7523,"[""Tablet""]",2795.7,"{"""": ""28%""}",218526,1,Asia +2023-05-12,89308,1972,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2557.42,"{""seasonal"": ""21%""}",244908,0,Asia +2023-02-16,89309,3143,"[""Headphones"", ""Monitor""]",2315.87,"{""promo"": ""16%""}",155670,0,North America +2024-08-15,89310,1112,"[""Keyboard"", ""Charger"", ""Laptop""]",1295.21,"{""seasonal"": ""16%""}",47880,1,South America +2024-12-20,89311,8143,"[""Tablet""]",3708.99,{},145959,0,Europe +2023-02-11,89312,1591,"[""Laptop"", ""Keyboard""]",4766.8,{},66102,1,Europe +2024-08-15,89313,7880,"[""Monitor"", ""Tablet"", ""Laptop""]",4468.85,"{""seasonal"": ""11%""}",33393,1,Europe +2024-11-16,89314,3833,"[""Laptop"", ""Phone"", ""Charger""]",1324.57,{},259085,0,South America +2023-08-07,89315,9958,"[""Tablet"", ""Laptop""]",2702.54,{},210384,0,Europe +2023-03-14,89316,6597,"[""Laptop""]",1200.02,{},4114,1,Asia +2024-08-05,89317,4708,"[""Monitor"", ""Tablet"", ""Keyboard""]",3743.95,"{""loyalty"": ""16%""}",217789,1,Asia +2024-02-12,89318,2003,"[""Monitor"", ""Tablet"", ""Headphones""]",2221.58,"{"""": ""20%""}",175307,1,South America +2024-06-24,89319,372,"[""Charger""]",2469.75,"{"""": ""25%""}",115402,0,South America +2024-03-14,89320,932,"[""Phone""]",1990.82,{},51869,1,Africa +2023-03-12,89321,8975,"[""Keyboard"", ""Headphones"", ""Laptop""]",3256.37,{},61185,1,Europe +2024-11-11,89322,1644,"[""Headphones"", ""Keyboard""]",3527.54,"{""promo"": ""10%""}",48042,1,Europe +2024-04-10,89323,2150,"[""Monitor""]",127.61,"{"""": ""14%""}",53178,1,Africa +2024-06-06,89324,5845,"[""Wireless Mouse""]",1264.56,"{""seasonal"": ""16%""}",274165,1,North America +2024-06-17,89325,8239,"[""Headphones""]",4181.17,{},223859,0,North America +2024-11-22,89326,2087,"[""Phone"", ""Wireless Mouse""]",3120.34,"{""seasonal"": ""28%""}",167538,0,North America +2024-09-04,89327,2191,"[""Headphones"", ""Monitor"", ""Laptop""]",1008.54,"{""promo"": ""25%""}",163517,1,Europe +2024-12-20,89328,7361,"[""Tablet""]",4187.25,{},296863,0,Asia +2023-02-26,89329,36,"[""Laptop"", ""Charger""]",3178.32,"{""seasonal"": ""27%""}",68141,1,Africa +2023-01-17,89330,4465,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1815.39,"{""loyalty"": ""10%""}",199163,1,North America +2024-01-17,89331,6791,"[""Headphones"", ""Monitor""]",3486.03,{},28532,0,Asia +2023-05-07,89332,3360,"[""Charger"", ""Tablet"", ""Laptop""]",4602.22,{},273300,0,North America +2024-04-09,89333,9478,"[""Phone"", ""Keyboard""]",1142.61,{},261885,0,Africa +2024-08-19,89334,5428,"[""Charger""]",3322.53,"{""seasonal"": ""29%""}",243127,0,North America +2024-02-06,89335,1573,"[""Tablet"", ""Headphones"", ""Keyboard""]",2302.71,{},80886,0,North America +2023-09-04,89336,5929,"[""Keyboard"", ""Phone""]",3466.72,{},74191,0,Africa +2023-04-29,89337,8834,"[""Tablet""]",3106.96,{},13541,1,South America +2024-02-28,89338,1642,"[""Monitor"", ""Wireless Mouse""]",1584.35,{},195916,0,Africa +2024-10-12,89339,4140,"[""Laptop""]",1763.09,"{""promo"": ""14%""}",248137,1,Europe +2024-10-16,89340,8410,"[""Keyboard"", ""Phone""]",194.79,{},28240,0,North America +2023-04-15,89341,6335,"[""Laptop""]",1209.51,{},54575,0,Europe +2024-05-28,89342,8909,"[""Charger"", ""Tablet"", ""Monitor""]",2270.46,{},294846,1,South America +2024-06-17,89343,2293,"[""Phone""]",3165.74,{},110007,1,Asia +2023-02-02,89344,4616,"[""Laptop"", ""Phone"", ""Monitor""]",4779.46,{},172700,1,Africa +2024-06-26,89345,2088,"[""Monitor"", ""Laptop""]",3269.49,"{""seasonal"": ""26%""}",86592,0,North America +2023-04-29,89346,9686,"[""Laptop""]",377.35,"{"""": ""30%""}",100696,0,Africa +2024-06-21,89347,8792,"[""Phone"", ""Monitor"", ""Tablet""]",1859.02,"{"""": ""20%""}",113181,0,Asia +2023-10-13,89348,3074,"[""Charger""]",633.74,"{"""": ""18%""}",265763,1,Asia +2023-09-04,89349,6784,"[""Laptop"", ""Keyboard"", ""Monitor""]",3797.79,{},286417,1,South America +2023-02-08,89350,2474,"[""Wireless Mouse""]",3744.17,{},73084,1,Europe +2024-01-11,89351,6916,"[""Monitor"", ""Laptop"", ""Charger""]",642.74,"{"""": ""27%""}",104077,0,Asia +2024-01-05,89352,5487,"[""Monitor"", ""Phone""]",1335.08,"{""loyalty"": ""12%""}",38331,1,North America +2023-07-28,89353,3431,"[""Wireless Mouse""]",681.56,"{""loyalty"": ""11%""}",46642,1,North America +2024-11-25,89354,449,"[""Keyboard"", ""Charger"", ""Monitor""]",58.61,{},107284,0,North America +2024-11-20,89355,4295,"[""Charger"", ""Tablet"", ""Keyboard""]",4795.79,"{""seasonal"": ""14%""}",283674,1,Europe +2024-05-07,89356,2008,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2926.65,{},111490,1,North America +2024-01-07,89357,2319,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3371.38,"{""loyalty"": ""20%""}",157539,0,North America +2024-08-10,89358,353,"[""Laptop"", ""Tablet""]",3033.39,{},228697,0,North America +2023-09-30,89359,3669,"[""Keyboard""]",186.61,{},212423,0,South America +2024-12-19,89360,6986,"[""Tablet""]",2207.77,{},110206,0,Africa +2023-06-27,89361,6222,"[""Monitor"", ""Keyboard"", ""Phone""]",4689.0,"{""loyalty"": ""16%""}",267811,1,North America +2023-10-23,89362,3494,"[""Monitor"", ""Laptop""]",3681.01,"{"""": ""19%""}",104238,1,South America +2024-06-26,89363,6887,"[""Monitor""]",97.95,"{"""": ""13%""}",199299,1,Asia +2024-05-15,89364,8118,"[""Tablet"", ""Charger""]",4039.58,"{"""": ""18%""}",67795,0,Asia +2023-09-06,89365,2267,"[""Monitor"", ""Wireless Mouse""]",984.39,{},288196,0,North America +2024-08-11,89366,1621,"[""Laptop"", ""Keyboard""]",2369.19,{},143792,1,Africa +2024-08-01,89367,3703,"[""Charger"", ""Wireless Mouse""]",2674.24,{},54050,0,South America +2024-11-07,89368,8374,"[""Monitor"", ""Headphones""]",418.13,"{""loyalty"": ""10%""}",30972,0,North America +2023-10-12,89369,249,"[""Laptop"", ""Tablet"", ""Phone""]",2230.9,"{""loyalty"": ""18%""}",188547,0,Africa +2023-07-29,89370,7966,"[""Laptop"", ""Wireless Mouse""]",4177.04,"{"""": ""15%""}",96803,0,Europe +2024-05-29,89371,8949,"[""Keyboard"", ""Monitor"", ""Charger""]",79.52,"{""seasonal"": ""14%""}",232121,1,North America +2023-10-23,89372,8540,"[""Headphones"", ""Wireless Mouse""]",4325.34,"{"""": ""30%""}",71189,0,North America +2024-01-30,89373,2347,"[""Headphones"", ""Monitor"", ""Tablet""]",1194.28,{},235710,1,Asia +2023-09-30,89374,6946,"[""Tablet""]",2724.85,{},130452,1,Asia +2023-07-28,89375,9057,"[""Phone""]",841.35,"{""promo"": ""18%""}",4185,1,Africa +2023-08-13,89376,5945,"[""Keyboard"", ""Monitor""]",2775.91,{},37500,0,Asia +2024-12-12,89377,3890,"[""Tablet"", ""Keyboard"", ""Charger""]",4520.41,{},143771,0,Africa +2024-06-22,89378,8158,"[""Laptop"", ""Headphones""]",160.78,"{""loyalty"": ""15%""}",75368,0,North America +2024-05-18,89379,6943,"[""Monitor"", ""Headphones"", ""Keyboard""]",2919.28,{},33161,0,North America +2024-07-02,89380,8151,"[""Wireless Mouse"", ""Laptop""]",4384.98,"{""loyalty"": ""29%""}",251405,0,Europe +2023-01-02,89381,1599,"[""Wireless Mouse""]",1529.81,{},19158,1,Asia +2023-09-22,89382,4528,"[""Headphones"", ""Keyboard""]",4803.64,{},17381,1,Africa +2024-11-27,89383,6347,"[""Keyboard"", ""Headphones"", ""Laptop""]",2506.1,{},115933,0,North America +2023-04-09,89384,8149,"[""Laptop"", ""Tablet""]",698.85,"{"""": ""6%""}",177246,1,Asia +2023-06-10,89385,8534,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4895.23,"{""loyalty"": ""9%""}",294080,0,North America +2023-11-24,89386,6789,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4511.72,"{""seasonal"": ""24%""}",223820,0,North America +2023-07-30,89387,1126,"[""Tablet""]",2061.85,"{""seasonal"": ""25%""}",285461,0,South America +2024-06-30,89388,3090,"[""Keyboard""]",3958.02,{},208623,0,Europe +2023-05-11,89389,1682,"[""Wireless Mouse"", ""Monitor""]",1444.8,"{""seasonal"": ""26%""}",143475,1,Europe +2023-11-01,89390,1584,"[""Tablet"", ""Keyboard""]",3299.44,"{""loyalty"": ""10%""}",51789,1,North America +2023-07-26,89391,2008,"[""Phone"", ""Laptop""]",1282.96,{},184732,0,Europe +2024-06-08,89392,2040,"[""Laptop"", ""Wireless Mouse""]",3989.6,{},228547,1,Europe +2023-06-12,89393,2627,"[""Keyboard""]",2296.41,{},166138,1,Europe +2023-11-19,89394,9276,"[""Headphones""]",1328.53,"{"""": ""26%""}",28017,0,North America +2024-08-02,89395,8683,"[""Headphones"", ""Phone""]",3442.24,"{""seasonal"": ""8%""}",71241,0,Africa +2023-01-13,89396,1539,"[""Laptop"", ""Tablet"", ""Phone""]",2962.28,"{""loyalty"": ""6%""}",205124,1,Africa +2023-01-04,89397,369,"[""Tablet""]",798.36,{},278717,0,South America +2024-06-22,89398,8288,"[""Phone""]",649.35,"{"""": ""27%""}",222010,1,North America +2023-05-29,89399,4159,"[""Keyboard"", ""Charger""]",2984.49,{},25240,0,Africa +2023-08-19,89400,2575,"[""Laptop"", ""Keyboard"", ""Headphones""]",4285.33,"{"""": ""15%""}",224103,1,Europe +2023-02-20,89401,4938,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2074.32,{},76192,0,North America +2024-10-08,89402,3323,"[""Wireless Mouse""]",289.57,{},98540,1,North America +2024-04-11,89403,5806,"[""Phone"", ""Wireless Mouse""]",4211.73,"{""promo"": ""15%""}",130984,0,South America +2024-12-08,89404,1740,"[""Charger""]",4611.28,{},251222,1,Europe +2023-03-08,89405,5699,"[""Tablet"", ""Headphones"", ""Keyboard""]",2276.8,{},24089,0,Asia +2023-08-19,89406,1668,"[""Headphones""]",794.45,"{""seasonal"": ""24%""}",273712,1,Asia +2024-04-05,89407,217,"[""Wireless Mouse"", ""Laptop""]",592.52,{},153952,0,Europe +2024-12-04,89408,6418,"[""Monitor"", ""Headphones""]",3681.47,{},89324,0,Europe +2024-03-29,89409,4374,"[""Laptop"", ""Tablet"", ""Phone""]",1325.14,{},117103,1,Asia +2024-09-20,89410,779,"[""Laptop"", ""Charger""]",1123.42,"{""seasonal"": ""19%""}",265030,1,Asia +2023-09-10,89411,9779,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2967.59,{},98954,0,South America +2024-12-23,89412,1161,"[""Monitor""]",1473.62,"{""loyalty"": ""6%""}",91573,1,Africa +2023-06-11,89413,7140,"[""Phone"", ""Tablet""]",2566.5,{},261506,1,Africa +2023-06-30,89414,8224,"[""Tablet"", ""Keyboard""]",2375.47,{},277776,0,Europe +2024-05-15,89415,8789,"[""Phone""]",675.48,"{""seasonal"": ""24%""}",74967,0,North America +2024-04-27,89416,9035,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4466.41,"{""loyalty"": ""23%""}",129789,0,North America +2024-09-28,89417,2052,"[""Laptop"", ""Tablet""]",2456.03,{},241826,0,Europe +2023-07-04,89418,5406,"[""Headphones""]",4715.97,"{""seasonal"": ""29%""}",112769,1,Europe +2023-05-02,89419,2323,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3059.59,{},88516,1,South America +2023-11-30,89420,7930,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1359.91,{},276895,1,South America +2023-02-28,89421,8243,"[""Headphones""]",1888.91,{},188586,1,North America +2024-12-23,89422,1279,"[""Charger"", ""Monitor""]",3766.69,"{"""": ""25%""}",259624,1,Africa +2023-06-10,89423,9834,"[""Wireless Mouse""]",4154.68,{},46453,1,Asia +2023-08-05,89424,1963,"[""Keyboard"", ""Headphones"", ""Laptop""]",502.99,"{""promo"": ""17%""}",33544,1,North America +2023-05-30,89425,9642,"[""Headphones"", ""Phone""]",1729.11,"{""loyalty"": ""11%""}",177578,1,Europe +2024-05-30,89426,9904,"[""Keyboard""]",4381.92,"{""seasonal"": ""19%""}",149833,1,South America +2024-03-23,89427,5299,"[""Wireless Mouse""]",2547.36,"{"""": ""17%""}",181607,0,Africa +2024-11-18,89428,3692,"[""Tablet""]",4609.92,{},281084,0,Europe +2023-09-04,89429,8945,"[""Tablet""]",2464.32,"{"""": ""15%""}",242140,1,South America +2023-12-05,89430,5787,"[""Charger""]",2817.62,"{""seasonal"": ""26%""}",200462,1,North America +2023-05-31,89431,2323,"[""Monitor"", ""Charger"", ""Keyboard""]",4041.71,"{"""": ""30%""}",98124,1,Europe +2024-05-11,89432,273,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2243.64,{},125287,1,Africa +2024-07-08,89433,1434,"[""Phone""]",1171.19,{},259282,1,North America +2024-07-21,89434,9239,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4774.33,"{"""": ""10%""}",78254,0,Europe +2024-06-17,89435,6677,"[""Monitor""]",2822.27,"{""loyalty"": ""26%""}",259952,0,South America +2024-11-18,89436,6711,"[""Monitor"", ""Laptop""]",4473.59,"{""seasonal"": ""11%""}",205875,1,North America +2023-02-15,89437,6062,"[""Tablet"", ""Headphones"", ""Keyboard""]",309.94,"{""promo"": ""10%""}",169380,0,Europe +2023-05-15,89438,8620,"[""Monitor"", ""Charger""]",450.98,{},42813,1,South America +2024-10-31,89439,804,"[""Keyboard""]",2675.39,{},67800,1,Europe +2023-02-02,89440,5289,"[""Wireless Mouse""]",2658.37,{},87820,0,Europe +2023-12-31,89441,1464,"[""Charger"", ""Laptop"", ""Keyboard""]",1818.65,{},180989,1,Europe +2023-03-02,89442,1999,"[""Monitor"", ""Keyboard"", ""Tablet""]",105.49,"{"""": ""17%""}",63276,1,Africa +2024-03-19,89443,9793,"[""Monitor"", ""Phone"", ""Tablet""]",3549.13,{},30446,1,South America +2023-09-02,89444,2804,"[""Headphones"", ""Charger"", ""Keyboard""]",2949.65,"{""loyalty"": ""19%""}",251581,0,Africa +2023-07-02,89445,2539,"[""Charger""]",2775.94,{},140358,0,North America +2023-03-04,89446,156,"[""Charger"", ""Tablet"", ""Keyboard""]",2541.78,{},13209,1,Asia +2023-05-04,89447,2804,"[""Tablet""]",307.82,"{""loyalty"": ""30%""}",55879,0,North America +2024-11-09,89448,8437,"[""Laptop""]",1716.75,{},223475,1,Europe +2023-12-14,89449,3860,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4086.21,{},83000,0,Africa +2024-08-12,89450,8976,"[""Tablet"", ""Laptop""]",877.74,{},42811,0,South America +2023-01-15,89451,4199,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1823.22,"{""promo"": ""19%""}",207373,1,Africa +2024-08-21,89452,6284,"[""Headphones""]",2028.48,"{""seasonal"": ""20%""}",41795,0,Europe +2024-09-21,89453,8124,"[""Charger""]",441.67,{},63805,1,Europe +2024-06-30,89454,3124,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1790.89,"{"""": ""12%""}",248588,1,Africa +2023-06-17,89455,3258,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2736.54,{},146079,0,North America +2024-04-10,89456,1830,"[""Phone"", ""Headphones""]",3694.74,"{""seasonal"": ""24%""}",93778,1,Asia +2023-12-08,89457,5806,"[""Charger"", ""Headphones"", ""Laptop""]",4537.63,"{"""": ""24%""}",197175,1,Asia +2023-09-19,89458,8176,"[""Headphones"", ""Laptop""]",2288.57,"{""loyalty"": ""5%""}",2202,1,Europe +2023-12-12,89459,1235,"[""Tablet"", ""Keyboard""]",200.11,{},272839,1,Europe +2023-01-06,89460,5873,"[""Headphones"", ""Laptop"", ""Charger""]",474.62,{},14906,0,Asia +2024-09-20,89461,7752,"[""Monitor"", ""Charger"", ""Laptop""]",4329.91,"{"""": ""12%""}",63845,0,Asia +2023-10-16,89462,3637,"[""Keyboard"", ""Phone""]",629.29,{},173341,1,South America +2024-06-09,89463,9095,"[""Headphones"", ""Keyboard""]",2604.33,{},288806,0,South America +2023-05-20,89464,26,"[""Monitor""]",2824.58,"{""promo"": ""14%""}",209745,0,North America +2024-10-31,89465,3274,"[""Keyboard"", ""Charger""]",411.37,{},16449,0,South America +2023-10-06,89466,9609,"[""Charger"", ""Wireless Mouse""]",4409.16,{},88254,0,Africa +2024-10-18,89467,837,"[""Keyboard""]",3289.37,{},66993,1,Asia +2024-01-27,89468,5883,"[""Tablet"", ""Monitor""]",3857.63,"{""seasonal"": ""9%""}",167029,1,Europe +2023-11-05,89469,7670,"[""Headphones""]",1118.54,"{""loyalty"": ""11%""}",36238,0,South America +2024-07-10,89470,2113,"[""Phone"", ""Headphones"", ""Tablet""]",1203.9,{},93875,1,Europe +2024-04-15,89471,6823,"[""Tablet""]",727.44,{},265157,0,Asia +2024-07-06,89472,3016,"[""Headphones"", ""Keyboard""]",2251.4,"{""loyalty"": ""5%""}",272998,1,Asia +2023-03-22,89473,9425,"[""Phone""]",363.82,{},31690,1,South America +2023-03-06,89474,1989,"[""Laptop""]",762.22,{},203017,1,South America +2023-02-21,89475,946,"[""Phone""]",1829.74,"{"""": ""12%""}",222438,0,North America +2023-01-14,89476,9692,"[""Wireless Mouse""]",2124.17,{},244106,0,Africa +2024-02-13,89477,2800,"[""Headphones"", ""Tablet""]",1661.86,"{""promo"": ""20%""}",173330,1,Asia +2023-05-15,89478,2001,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4807.65,{},132377,1,Africa +2024-10-21,89479,2593,"[""Keyboard""]",2820.76,{},238619,1,Europe +2024-03-23,89480,263,"[""Headphones"", ""Tablet""]",61.72,"{"""": ""30%""}",78025,0,Asia +2023-12-03,89481,7762,"[""Charger""]",3035.22,{},91748,1,South America +2024-12-06,89482,4519,"[""Laptop""]",4602.61,"{""loyalty"": ""18%""}",52413,0,South America +2024-09-07,89483,9750,"[""Wireless Mouse"", ""Headphones""]",2776.16,"{""loyalty"": ""5%""}",32791,1,Africa +2024-05-19,89484,6765,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4006.42,{},226966,1,North America +2023-02-15,89485,4133,"[""Phone"", ""Charger""]",1918.43,"{""seasonal"": ""11%""}",42898,0,Africa +2024-03-27,89486,7464,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1812.76,{},87249,0,Asia +2024-01-16,89487,5677,"[""Charger"", ""Laptop"", ""Monitor""]",1091.58,"{""promo"": ""16%""}",33981,0,Asia +2023-11-26,89488,5789,"[""Laptop"", ""Monitor""]",3563.14,{},194288,0,South America +2024-12-12,89489,1950,"[""Wireless Mouse"", ""Phone""]",163.64,"{""loyalty"": ""13%""}",7654,0,South America +2024-01-28,89490,89,"[""Tablet"", ""Phone""]",1448.37,{},238020,1,North America +2024-04-20,89491,1308,"[""Laptop"", ""Keyboard""]",273.98,{},9866,1,Africa +2023-10-14,89492,5787,"[""Laptop"", ""Headphones""]",4011.27,"{""loyalty"": ""17%""}",17892,0,Europe +2024-12-27,89493,7447,"[""Phone"", ""Headphones""]",2599.58,"{"""": ""23%""}",225002,0,Africa +2023-01-31,89494,2785,"[""Wireless Mouse""]",127.2,"{"""": ""5%""}",201571,1,South America +2023-09-07,89495,5869,"[""Keyboard""]",555.46,"{""loyalty"": ""8%""}",189499,0,North America +2024-11-05,89496,4548,"[""Headphones""]",2554.17,{},247073,0,South America +2023-08-20,89497,8579,"[""Tablet"", ""Phone""]",688.15,{},106317,0,North America +2023-03-25,89498,431,"[""Headphones"", ""Laptop""]",3801.87,"{""promo"": ""11%""}",255872,1,Europe +2023-12-19,89499,1835,"[""Keyboard"", ""Headphones"", ""Laptop""]",4545.84,"{""promo"": ""8%""}",164293,1,Europe +2023-02-14,89500,2965,"[""Keyboard"", ""Charger""]",4435.32,{},65103,1,South America +2023-10-14,89501,5010,"[""Monitor"", ""Laptop""]",4688.38,"{""loyalty"": ""27%""}",108300,0,Europe +2024-09-13,89502,4564,"[""Charger""]",1747.6,{},32990,0,South America +2024-03-27,89503,5239,"[""Keyboard"", ""Laptop""]",1488.5,"{""seasonal"": ""10%""}",226723,0,Europe +2024-02-20,89504,9710,"[""Charger"", ""Tablet"", ""Headphones""]",1856.1,"{""seasonal"": ""14%""}",167742,0,Europe +2024-11-08,89505,527,"[""Laptop"", ""Headphones"", ""Charger""]",256.87,"{""seasonal"": ""27%""}",201905,0,South America +2023-07-09,89506,5528,"[""Tablet"", ""Charger"", ""Keyboard""]",3376.28,"{""seasonal"": ""26%""}",244418,0,South America +2024-05-02,89507,408,"[""Monitor"", ""Keyboard"", ""Laptop""]",2220.51,{},86945,1,Europe +2023-05-17,89508,7909,"[""Laptop"", ""Wireless Mouse""]",1312.92,"{""promo"": ""5%""}",279388,0,Asia +2024-06-17,89509,7622,"[""Keyboard"", ""Charger"", ""Monitor""]",2231.95,"{"""": ""17%""}",144907,1,South America +2024-11-08,89510,5993,"[""Monitor"", ""Charger"", ""Laptop""]",2347.95,{},206447,0,North America +2024-01-05,89511,2313,"[""Laptop"", ""Wireless Mouse""]",1773.38,{},113718,0,North America +2024-01-11,89512,9874,"[""Phone"", ""Headphones""]",3877.28,"{""promo"": ""17%""}",219021,0,Asia +2023-03-15,89513,4730,"[""Keyboard""]",3936.23,"{""promo"": ""17%""}",105396,1,North America +2024-08-31,89514,7403,"[""Wireless Mouse""]",3516.21,"{"""": ""16%""}",181554,0,North America +2024-11-24,89515,2394,"[""Headphones"", ""Laptop""]",2035.48,"{""loyalty"": ""18%""}",83255,0,North America +2023-07-26,89516,1043,"[""Laptop"", ""Charger"", ""Keyboard""]",4622.08,"{"""": ""14%""}",70367,1,North America +2023-02-19,89517,7420,"[""Monitor"", ""Tablet""]",560.64,{},91652,1,North America +2023-01-19,89518,6866,"[""Charger"", ""Headphones"", ""Monitor""]",923.46,"{""seasonal"": ""23%""}",179120,0,South America +2024-11-05,89519,4327,"[""Headphones"", ""Laptop"", ""Monitor""]",3617.77,"{""seasonal"": ""10%""}",64125,0,Europe +2024-03-05,89520,8766,"[""Monitor"", ""Phone"", ""Tablet""]",1959.87,{},181296,1,Africa +2024-08-18,89521,4922,"[""Wireless Mouse"", ""Charger""]",152.79,"{""promo"": ""28%""}",59897,0,North America +2023-09-09,89522,6833,"[""Headphones"", ""Laptop""]",4702.34,"{""seasonal"": ""7%""}",8783,1,North America +2023-01-10,89523,5763,"[""Charger""]",4665.03,"{""seasonal"": ""15%""}",127095,1,Africa +2023-09-15,89524,631,"[""Keyboard"", ""Laptop""]",683.16,{},178122,0,South America +2024-02-15,89525,1638,"[""Phone"", ""Charger"", ""Keyboard""]",2016.84,"{""seasonal"": ""25%""}",34818,1,Africa +2024-01-09,89526,3537,"[""Headphones"", ""Keyboard"", ""Phone""]",258.28,{},208466,0,South America +2023-05-21,89527,4879,"[""Wireless Mouse""]",2221.74,{},99838,1,Asia +2023-11-18,89528,2791,"[""Charger"", ""Monitor""]",2146.51,{},119945,1,South America +2023-10-02,89529,7404,"[""Wireless Mouse""]",4413.2,{},9146,0,Africa +2023-06-02,89530,1688,"[""Charger"", ""Keyboard""]",4804.74,{},227548,0,Europe +2024-11-30,89531,8580,"[""Tablet"", ""Laptop""]",4867.05,{},28633,0,Asia +2023-01-02,89532,1117,"[""Phone"", ""Wireless Mouse""]",4634.18,"{""loyalty"": ""19%""}",244555,1,Africa +2024-03-07,89533,880,"[""Monitor"", ""Laptop""]",977.99,"{""loyalty"": ""18%""}",238171,1,Europe +2024-06-02,89534,9413,"[""Tablet"", ""Keyboard""]",1350.14,{},5583,0,Africa +2023-10-01,89535,2523,"[""Charger"", ""Tablet""]",1785.35,{},71043,1,Europe +2024-03-16,89536,1127,"[""Wireless Mouse""]",3500.01,{},125359,1,Asia +2024-08-17,89537,1161,"[""Laptop""]",538.27,"{""promo"": ""10%""}",134704,1,Europe +2024-12-04,89538,2868,"[""Headphones"", ""Wireless Mouse""]",870.35,"{""loyalty"": ""19%""}",108467,0,Europe +2023-09-15,89539,4381,"[""Laptop"", ""Keyboard""]",1409.77,"{""seasonal"": ""7%""}",200678,1,Africa +2024-12-19,89540,6742,"[""Charger"", ""Monitor""]",4190.17,"{""promo"": ""28%""}",139312,1,Asia +2023-09-22,89541,8862,"[""Laptop""]",3534.33,{},190105,1,North America +2023-09-25,89542,6465,"[""Charger"", ""Keyboard"", ""Monitor""]",2631.57,{},139059,1,Africa +2023-08-06,89543,9608,"[""Laptop"", ""Headphones"", ""Tablet""]",4598.48,"{""promo"": ""20%""}",298815,1,South America +2023-03-16,89544,6685,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1095.04,"{""seasonal"": ""13%""}",253895,0,Asia +2023-12-13,89545,5802,"[""Charger"", ""Laptop""]",4523.67,"{"""": ""17%""}",32615,0,Asia +2023-08-26,89546,9738,"[""Tablet""]",2772.99,{},239820,0,Asia +2024-03-06,89547,5548,"[""Wireless Mouse""]",1777.98,{},44545,0,South America +2023-07-11,89548,9059,"[""Keyboard"", ""Headphones"", ""Monitor""]",2976.16,"{""seasonal"": ""6%""}",271998,0,North America +2023-05-10,89549,7828,"[""Keyboard"", ""Charger""]",3056.31,{},150751,0,Africa +2024-05-09,89550,718,"[""Monitor"", ""Charger""]",3400.72,{},158229,1,North America +2023-02-27,89551,2070,"[""Charger"", ""Phone"", ""Monitor""]",2852.11,{},50163,1,Europe +2024-01-28,89552,7450,"[""Keyboard"", ""Wireless Mouse""]",651.58,"{"""": ""16%""}",202222,0,North America +2023-06-12,89553,7261,"[""Headphones""]",4814.77,{},298454,1,South America +2024-12-29,89554,6600,"[""Keyboard"", ""Laptop""]",4143.5,{},248331,1,North America +2023-01-30,89555,286,"[""Headphones""]",2481.64,{},179644,1,Africa +2023-01-30,89556,6101,"[""Wireless Mouse""]",4370.42,{},168149,1,Asia +2023-10-23,89557,6830,"[""Laptop"", ""Keyboard""]",1705.42,{},1452,0,North America +2023-07-19,89558,1885,"[""Tablet""]",1952.08,"{"""": ""28%""}",10102,1,South America +2024-02-02,89559,7734,"[""Headphones"", ""Keyboard""]",3590.99,{},94642,0,North America +2023-08-10,89560,2819,"[""Tablet""]",3965.21,{},63531,1,Asia +2023-03-27,89561,685,"[""Monitor"", ""Keyboard""]",1777.63,{},116488,0,Europe +2024-10-06,89562,9542,"[""Charger"", ""Tablet""]",723.86,{},191174,1,Europe +2024-02-20,89563,3078,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",152.13,{},166362,1,South America +2023-04-03,89564,4513,"[""Keyboard"", ""Wireless Mouse""]",4339.01,"{""seasonal"": ""15%""}",213578,0,Europe +2023-10-14,89565,207,"[""Headphones""]",3565.54,{},167717,1,Europe +2024-08-19,89566,8192,"[""Phone""]",2316.2,"{""seasonal"": ""18%""}",146324,1,Africa +2023-08-22,89567,4841,"[""Keyboard""]",656.41,{},78576,0,Asia +2023-03-10,89568,6543,"[""Headphones"", ""Tablet"", ""Laptop""]",2866.57,{},20561,0,South America +2024-06-14,89569,8813,"[""Monitor""]",1755.98,"{""seasonal"": ""15%""}",69281,1,Africa +2023-10-23,89570,8905,"[""Tablet"", ""Charger"", ""Laptop""]",4725.89,"{""promo"": ""13%""}",4786,1,Asia +2024-02-29,89571,270,"[""Tablet"", ""Laptop"", ""Keyboard""]",4876.62,"{"""": ""23%""}",87236,1,North America +2024-04-10,89572,8975,"[""Charger"", ""Phone""]",4409.14,"{""loyalty"": ""8%""}",136204,0,South America +2023-11-28,89573,9130,"[""Keyboard""]",4848.4,{},96523,0,Africa +2024-05-11,89574,7515,"[""Laptop"", ""Wireless Mouse""]",4838.68,"{""seasonal"": ""7%""}",65458,0,South America +2023-12-08,89575,8903,"[""Charger"", ""Tablet""]",4233.66,{},71695,1,Europe +2023-04-03,89576,8663,"[""Headphones"", ""Monitor""]",1653.19,{},299078,0,South America +2023-12-19,89577,2001,"[""Keyboard"", ""Wireless Mouse""]",2062.4,{},90090,1,North America +2024-06-11,89578,591,"[""Phone""]",1460.7,"{""seasonal"": ""10%""}",268137,1,Asia +2024-05-09,89579,6050,"[""Headphones"", ""Tablet"", ""Laptop""]",1662.13,"{"""": ""27%""}",23535,0,Europe +2024-10-31,89580,286,"[""Monitor""]",451.66,"{""loyalty"": ""11%""}",121972,0,Asia +2023-01-10,89581,7796,"[""Tablet"", ""Keyboard"", ""Headphones""]",4142.72,{},228208,1,North America +2023-08-16,89582,5845,"[""Monitor"", ""Keyboard"", ""Laptop""]",963.49,"{""loyalty"": ""16%""}",28985,0,Europe +2024-05-06,89583,8539,"[""Headphones"", ""Monitor"", ""Charger""]",1906.47,{},171500,1,Africa +2023-06-17,89584,5951,"[""Headphones"", ""Keyboard"", ""Laptop""]",4526.74,"{"""": ""25%""}",214350,0,South America +2024-03-23,89585,8907,"[""Tablet"", ""Headphones"", ""Keyboard""]",3037.47,"{""seasonal"": ""11%""}",283854,0,Africa +2023-01-09,89586,4993,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",612.78,{},268414,0,Africa +2024-01-28,89587,3269,"[""Tablet"", ""Wireless Mouse""]",3608.46,{},40604,0,South America +2023-03-03,89588,8851,"[""Tablet""]",226.34,{},239770,1,Europe +2023-03-13,89589,4113,"[""Monitor"", ""Tablet""]",3783.62,"{""seasonal"": ""10%""}",98801,0,South America +2024-12-28,89590,550,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3073.14,{},284688,1,Asia +2024-01-15,89591,7132,"[""Phone"", ""Headphones""]",4611.91,{},210334,1,North America +2024-03-15,89592,359,"[""Tablet""]",2775.69,"{""loyalty"": ""7%""}",125452,0,Africa +2024-12-06,89593,1772,"[""Monitor"", ""Phone""]",3717.75,"{""promo"": ""5%""}",67920,0,North America +2023-04-13,89594,5431,"[""Headphones"", ""Laptop"", ""Monitor""]",234.26,"{""promo"": ""30%""}",247515,1,Europe +2023-12-01,89595,7925,"[""Tablet""]",2220.07,"{""promo"": ""13%""}",254493,1,Africa +2024-09-01,89596,7660,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3528.29,{},273399,0,Europe +2024-06-28,89597,6624,"[""Tablet"", ""Monitor"", ""Phone""]",4067.67,"{"""": ""8%""}",122091,1,Africa +2024-12-28,89598,1074,"[""Keyboard"", ""Monitor""]",2711.45,"{"""": ""10%""}",128342,0,Europe +2023-06-20,89599,5977,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3088.01,{},140330,0,North America +2024-09-01,89600,9367,"[""Laptop"", ""Monitor""]",1254.45,"{""promo"": ""25%""}",252043,0,Asia +2024-03-23,89601,9386,"[""Phone""]",4964.15,{},229584,1,North America +2023-04-24,89602,3645,"[""Wireless Mouse""]",1260.87,"{""promo"": ""24%""}",210349,1,Africa +2023-10-07,89603,5187,"[""Headphones"", ""Charger""]",4233.49,"{""seasonal"": ""22%""}",202519,1,Asia +2024-07-15,89604,2896,"[""Phone""]",2295.49,"{""promo"": ""24%""}",274288,0,South America +2023-01-12,89605,368,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",575.85,{},83352,0,Asia +2023-01-29,89606,4348,"[""Keyboard"", ""Monitor""]",3927.56,"{""seasonal"": ""13%""}",229213,1,South America +2023-05-30,89607,5725,"[""Tablet""]",4630.7,"{""loyalty"": ""18%""}",122510,0,Africa +2024-01-09,89608,8707,"[""Monitor""]",4970.72,{},63687,1,Africa +2023-09-13,89609,3715,"[""Tablet""]",3999.83,{},257360,0,Africa +2023-07-01,89610,3447,"[""Headphones""]",4699.53,{},240191,1,North America +2023-10-02,89611,4742,"[""Monitor""]",2884.56,"{""seasonal"": ""15%""}",222953,1,Africa +2023-05-18,89612,2258,"[""Headphones"", ""Charger""]",4114.57,"{""seasonal"": ""11%""}",21126,1,Europe +2023-04-29,89613,1357,"[""Tablet"", ""Phone"", ""Keyboard""]",429.68,{},71298,1,Africa +2024-10-16,89614,9154,"[""Keyboard"", ""Phone""]",2440.61,"{"""": ""11%""}",261822,1,Asia +2023-04-10,89615,8456,"[""Keyboard""]",1968.04,"{""promo"": ""10%""}",150763,1,Asia +2024-07-06,89616,8880,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",669.17,"{""seasonal"": ""27%""}",143757,1,North America +2023-10-27,89617,2606,"[""Headphones"", ""Keyboard""]",1295.58,"{"""": ""30%""}",153173,1,North America +2024-01-25,89618,9410,"[""Phone"", ""Keyboard""]",3110.77,{},31589,1,Europe +2024-02-16,89619,8368,"[""Headphones"", ""Monitor"", ""Tablet""]",2957.15,{},221242,1,Asia +2024-03-20,89620,6061,"[""Phone"", ""Monitor""]",4432.45,"{"""": ""5%""}",152119,1,North America +2024-02-06,89621,8729,"[""Keyboard""]",3788.5,{},140733,0,North America +2023-08-11,89622,2390,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4755.18,{},296617,1,North America +2023-12-07,89623,6305,"[""Wireless Mouse""]",2123.69,{},97333,1,Europe +2023-06-19,89624,8726,"[""Monitor"", ""Phone"", ""Charger""]",4312.66,{},219386,1,North America +2023-04-05,89625,6382,"[""Laptop"", ""Headphones""]",810.5,{},48370,1,South America +2024-10-02,89626,7145,"[""Monitor"", ""Tablet"", ""Keyboard""]",4397.5,{},39387,0,Europe +2024-02-19,89627,3371,"[""Monitor"", ""Charger""]",2369.48,{},91987,0,Africa +2023-06-10,89628,4773,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2711.71,"{""loyalty"": ""27%""}",215378,0,North America +2024-09-15,89629,7940,"[""Tablet"", ""Keyboard"", ""Laptop""]",1613.77,{},59157,1,South America +2023-08-05,89630,1554,"[""Phone""]",4907.6,"{""loyalty"": ""27%""}",111642,0,Europe +2024-01-11,89631,760,"[""Monitor"", ""Keyboard"", ""Tablet""]",4534.54,"{"""": ""10%""}",257336,1,Europe +2024-09-09,89632,4392,"[""Wireless Mouse"", ""Headphones""]",2707.37,{},213762,0,Europe +2023-08-24,89633,2005,"[""Charger"", ""Headphones""]",2926.98,"{"""": ""16%""}",218463,1,North America +2023-08-17,89634,3474,"[""Headphones"", ""Keyboard"", ""Charger""]",1862.55,{},82265,1,Asia +2023-08-13,89635,521,"[""Laptop""]",3697.94,"{""loyalty"": ""23%""}",69422,0,Africa +2023-10-17,89636,4241,"[""Charger""]",3189.45,"{"""": ""23%""}",259488,0,North America +2023-07-06,89637,6914,"[""Laptop"", ""Charger""]",3776.92,{},141788,1,Europe +2023-12-22,89638,790,"[""Charger"", ""Wireless Mouse""]",1693.01,"{""loyalty"": ""18%""}",19499,1,Africa +2024-04-01,89639,6752,"[""Charger"", ""Tablet""]",2666.28,"{""loyalty"": ""17%""}",229280,0,Africa +2024-01-26,89640,1232,"[""Charger""]",981.61,{},71251,0,Europe +2024-10-13,89641,9377,"[""Wireless Mouse""]",4811.43,{},115338,0,South America +2024-06-06,89642,1444,"[""Laptop""]",132.8,"{""seasonal"": ""22%""}",186772,1,North America +2023-03-16,89643,6368,"[""Headphones"", ""Laptop""]",3307.51,"{""loyalty"": ""20%""}",268639,1,Africa +2024-02-02,89644,6840,"[""Laptop""]",2707.32,"{""promo"": ""27%""}",85690,0,Europe +2024-03-31,89645,5152,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3791.09,{},122924,0,Asia +2024-03-17,89646,5384,"[""Tablet"", ""Headphones"", ""Phone""]",1394.9,{},60970,1,Asia +2023-03-18,89647,8285,"[""Phone"", ""Keyboard""]",4677.91,"{"""": ""6%""}",69949,1,Africa +2024-11-28,89648,8210,"[""Monitor""]",2185.3,"{""loyalty"": ""16%""}",71750,0,Africa +2023-03-02,89649,2857,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4400.36,"{""loyalty"": ""25%""}",20516,1,North America +2023-04-23,89650,2722,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1898.88,"{""loyalty"": ""16%""}",91186,0,Africa +2024-03-10,89651,811,"[""Laptop""]",334.91,{},176822,1,Africa +2023-09-26,89652,8506,"[""Monitor"", ""Wireless Mouse""]",4036.14,"{""promo"": ""7%""}",33606,1,Asia +2023-10-30,89653,9720,"[""Headphones"", ""Laptop""]",4578.38,"{""seasonal"": ""18%""}",281426,1,Asia +2023-11-09,89654,2653,"[""Charger""]",3952.54,{},237889,1,Asia +2023-08-17,89655,2296,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1038.42,{},255446,0,Africa +2023-08-31,89656,4998,"[""Wireless Mouse""]",4203.76,{},180800,0,South America +2023-02-22,89657,151,"[""Laptop"", ""Monitor"", ""Tablet""]",4930.59,{},44265,1,South America +2023-04-15,89658,9391,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",486.31,{},73692,1,Africa +2024-05-16,89659,4699,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3100.99,"{""seasonal"": ""6%""}",244219,0,South America +2024-05-11,89660,6131,"[""Charger"", ""Monitor""]",654.82,"{""loyalty"": ""24%""}",132083,1,North America +2023-04-15,89661,4156,"[""Phone"", ""Keyboard"", ""Monitor""]",4057.04,{},275164,0,South America +2023-01-12,89662,1315,"[""Phone""]",325.44,"{""promo"": ""8%""}",82989,1,South America +2024-04-08,89663,1398,"[""Phone"", ""Tablet"", ""Headphones""]",4549.47,"{"""": ""17%""}",124955,0,Africa +2023-03-23,89664,9687,"[""Monitor"", ""Laptop"", ""Tablet""]",3126.12,{},97763,0,Africa +2024-09-05,89665,2148,"[""Tablet""]",264.45,{},70135,1,Asia +2024-05-06,89666,4871,"[""Monitor"", ""Charger""]",3021.11,"{""seasonal"": ""20%""}",219459,1,Asia +2023-02-05,89667,255,"[""Laptop""]",988.3,"{""loyalty"": ""22%""}",30719,1,Asia +2024-07-19,89668,8855,"[""Monitor"", ""Tablet"", ""Charger""]",407.45,"{""loyalty"": ""8%""}",69123,0,Asia +2024-07-04,89669,4898,"[""Keyboard""]",3951.85,{},289509,0,South America +2024-02-16,89670,1204,"[""Tablet""]",656.15,{},77180,0,Asia +2023-08-07,89671,8199,"[""Headphones"", ""Monitor"", ""Charger""]",1571.44,{},69272,0,Africa +2023-10-27,89672,7135,"[""Keyboard"", ""Laptop""]",3770.88,"{""promo"": ""16%""}",104343,1,North America +2024-12-26,89673,5493,"[""Keyboard"", ""Laptop""]",1611.35,{},197342,1,Europe +2023-10-29,89674,5386,"[""Monitor"", ""Keyboard""]",1292.57,"{""promo"": ""14%""}",157403,1,South America +2023-05-16,89675,5553,"[""Wireless Mouse"", ""Monitor""]",1247.87,{},232794,1,Asia +2024-07-17,89676,9700,"[""Phone""]",3834.61,{},237456,0,Africa +2023-02-04,89677,1694,"[""Laptop""]",695.95,"{"""": ""30%""}",3217,1,South America +2024-06-24,89678,44,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3044.18,"{""promo"": ""5%""}",242414,0,South America +2023-11-23,89679,3945,"[""Headphones"", ""Monitor""]",98.01,{},243039,1,North America +2024-08-05,89680,3816,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4943.17,{},91801,1,North America +2023-09-06,89681,6638,"[""Tablet""]",2985.86,{},169298,1,South America +2024-09-16,89682,2579,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3128.09,"{""loyalty"": ""27%""}",72425,1,North America +2024-08-06,89683,563,"[""Laptop"", ""Keyboard"", ""Tablet""]",4920.66,"{""seasonal"": ""15%""}",274814,0,Europe +2024-03-10,89684,4219,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3770.21,{},210843,1,Asia +2024-02-07,89685,5911,"[""Headphones"", ""Monitor""]",3013.22,{},209946,1,Asia +2024-03-28,89686,4423,"[""Keyboard""]",3866.24,{},208997,0,Asia +2023-01-27,89687,7879,"[""Keyboard""]",2680.15,{},298657,1,South America +2023-09-20,89688,4899,"[""Charger"", ""Tablet"", ""Laptop""]",1622.29,{},299228,1,Asia +2023-12-08,89689,3210,"[""Headphones"", ""Phone"", ""Laptop""]",759.79,{},158138,1,Africa +2024-12-24,89690,5894,"[""Wireless Mouse"", ""Tablet""]",4510.21,{},235822,1,Asia +2023-07-03,89691,1506,"[""Keyboard"", ""Laptop"", ""Headphones""]",1006.17,"{"""": ""6%""}",48484,1,Asia +2024-11-11,89692,1010,"[""Phone""]",3151.75,{},87747,0,Africa +2024-08-07,89693,4319,"[""Monitor"", ""Keyboard""]",1627.01,{},186223,0,Africa +2023-05-24,89694,6419,"[""Keyboard"", ""Phone"", ""Charger""]",4451.56,"{""seasonal"": ""27%""}",298291,0,Europe +2023-07-05,89695,259,"[""Headphones""]",4852.69,"{""loyalty"": ""13%""}",95550,0,Europe +2023-08-18,89696,6092,"[""Tablet""]",930.17,"{""seasonal"": ""29%""}",224912,0,Asia +2023-03-25,89697,5206,"[""Tablet""]",2909.5,{},40975,0,Asia +2023-06-18,89698,9586,"[""Phone"", ""Wireless Mouse""]",4281.77,"{"""": ""24%""}",133780,0,Africa +2023-10-25,89699,6008,"[""Keyboard""]",1622.53,"{""promo"": ""29%""}",146508,0,Asia +2024-04-30,89700,9039,"[""Laptop""]",1472.77,"{""seasonal"": ""19%""}",256221,1,Europe +2023-04-16,89701,2312,"[""Charger"", ""Monitor""]",2001.87,"{""loyalty"": ""7%""}",18540,0,Europe +2023-11-11,89702,845,"[""Tablet""]",3978.12,{},94443,0,South America +2023-09-09,89703,7405,"[""Keyboard""]",1997.21,"{"""": ""30%""}",221723,0,Europe +2023-03-18,89704,2360,"[""Tablet""]",2033.88,{},170461,1,South America +2023-08-21,89705,4573,"[""Keyboard"", ""Tablet""]",1937.1,{},241273,0,Asia +2024-05-10,89706,2320,"[""Headphones"", ""Charger""]",3826.3,"{""promo"": ""5%""}",264858,0,North America +2024-12-20,89707,3942,"[""Monitor"", ""Laptop""]",4301.46,{},230856,1,Africa +2024-12-02,89708,4527,"[""Keyboard"", ""Laptop"", ""Headphones""]",539.92,"{""promo"": ""14%""}",217156,1,South America +2023-07-17,89709,1772,"[""Headphones"", ""Phone""]",4256.02,{},252682,1,Asia +2023-06-18,89710,6027,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",4314.58,"{""loyalty"": ""7%""}",233212,0,South America +2024-02-27,89711,9635,"[""Laptop"", ""Wireless Mouse""]",934.04,"{""promo"": ""7%""}",153630,1,Africa +2024-02-08,89712,681,"[""Headphones"", ""Phone""]",998.41,{},177851,0,Asia +2023-09-20,89713,7797,"[""Laptop"", ""Charger"", ""Headphones""]",788.31,{},48839,1,Africa +2023-09-29,89714,1890,"[""Laptop"", ""Phone"", ""Tablet""]",3518.5,{},225178,0,South America +2023-12-17,89715,2841,"[""Tablet"", ""Charger"", ""Headphones""]",1158.79,{},94351,1,South America +2024-11-08,89716,8586,"[""Headphones"", ""Monitor""]",4845.53,{},288434,0,North America +2024-01-19,89717,3339,"[""Tablet""]",3917.93,"{""seasonal"": ""7%""}",79352,0,Europe +2024-06-01,89718,9366,"[""Tablet"", ""Wireless Mouse""]",2695.76,{},145866,1,Africa +2023-06-19,89719,4382,"[""Charger"", ""Keyboard""]",3411.18,"{""loyalty"": ""30%""}",261835,0,South America +2024-10-23,89720,5665,"[""Keyboard"", ""Tablet""]",1949.98,"{""promo"": ""28%""}",256097,0,Africa +2023-03-04,89721,1649,"[""Wireless Mouse""]",631.57,"{""seasonal"": ""16%""}",203741,0,Asia +2023-05-27,89722,4033,"[""Phone""]",2370.5,{},166789,1,South America +2023-07-05,89723,3434,"[""Keyboard""]",4564.95,"{"""": ""14%""}",112826,0,Asia +2024-05-02,89724,9311,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3137.38,"{"""": ""7%""}",123826,1,North America +2023-06-07,89725,3919,"[""Wireless Mouse"", ""Phone""]",1339.92,{},174525,1,Europe +2023-05-05,89726,7602,"[""Laptop"", ""Headphones""]",415.77,"{""loyalty"": ""27%""}",58931,0,North America +2024-03-12,89727,3626,"[""Phone"", ""Headphones""]",2631.07,{},85602,0,Europe +2024-12-17,89728,1947,"[""Keyboard"", ""Headphones""]",2052.67,{},199399,0,South America +2023-01-08,89729,3878,"[""Laptop""]",3042.11,{},212902,0,Europe +2024-08-18,89730,2062,"[""Keyboard"", ""Phone"", ""Monitor""]",3122.9,"{""promo"": ""17%""}",92914,0,South America +2024-12-22,89731,6522,"[""Headphones"", ""Tablet""]",868.3,{},264005,0,Africa +2024-04-27,89732,8192,"[""Phone"", ""Monitor"", ""Keyboard""]",1184.62,{},238946,1,Africa +2023-07-21,89733,5772,"[""Phone"", ""Headphones""]",1351.78,"{""promo"": ""7%""}",174384,1,Europe +2023-10-22,89734,5201,"[""Charger"", ""Tablet""]",2712.53,{},176754,0,Europe +2023-10-07,89735,7965,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",4421.21,"{""loyalty"": ""17%""}",9570,1,Asia +2024-10-09,89736,6726,"[""Charger"", ""Monitor""]",4191.29,{},280555,1,Asia +2024-08-16,89737,5420,"[""Headphones"", ""Laptop"", ""Charger""]",3560.89,"{""loyalty"": ""27%""}",149131,1,South America +2024-01-11,89738,3528,"[""Tablet""]",4602.56,"{"""": ""12%""}",19529,1,Africa +2023-02-05,89739,9257,"[""Charger""]",1383.61,"{""loyalty"": ""21%""}",117734,0,South America +2023-10-14,89740,4456,"[""Tablet"", ""Headphones""]",1360.16,"{""seasonal"": ""28%""}",299882,1,Africa +2023-05-27,89741,7170,"[""Tablet"", ""Charger""]",2690.31,"{""loyalty"": ""13%""}",257938,1,North America +2024-09-03,89742,5885,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",521.31,"{""loyalty"": ""24%""}",161215,0,Asia +2024-07-08,89743,6268,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1874.47,{},91449,0,Europe +2024-11-21,89744,7438,"[""Headphones""]",4731.61,"{"""": ""7%""}",193710,0,Europe +2024-07-04,89745,32,"[""Keyboard"", ""Headphones"", ""Phone""]",402.04,{},58770,1,North America +2023-12-08,89746,189,"[""Monitor""]",4551.38,{},156639,0,Europe +2023-08-26,89747,1726,"[""Headphones""]",2939.04,{},24881,0,Europe +2023-05-05,89748,4045,"[""Charger"", ""Headphones""]",899.27,{},7062,0,North America +2023-06-24,89749,8407,"[""Phone"", ""Tablet""]",213.73,{},64866,1,Asia +2024-06-14,89750,2389,"[""Tablet""]",58.43,"{"""": ""14%""}",39802,1,Asia +2023-08-23,89751,1879,"[""Tablet"", ""Charger""]",1049.99,{},116617,1,South America +2024-10-10,89752,1599,"[""Charger"", ""Laptop""]",2861.9,{},231329,0,North America +2024-04-08,89753,5704,"[""Wireless Mouse""]",1566.79,{},278124,1,North America +2023-01-17,89754,1595,"[""Phone"", ""Wireless Mouse""]",2137.45,"{""promo"": ""29%""}",107712,0,Asia +2023-03-02,89755,826,"[""Keyboard""]",138.79,"{""seasonal"": ""28%""}",289698,0,Europe +2024-06-01,89756,9332,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2286.87,"{"""": ""30%""}",66957,1,Africa +2024-10-28,89757,2272,"[""Laptop"", ""Wireless Mouse""]",2235.77,"{""seasonal"": ""16%""}",134473,0,Africa +2024-08-10,89758,5499,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",4755.37,"{""seasonal"": ""15%""}",127200,0,South America +2024-03-05,89759,8292,"[""Phone""]",3927.24,{},286612,0,Europe +2023-11-01,89760,1703,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",348.49,"{""loyalty"": ""22%""}",120600,1,Africa +2024-04-07,89761,9574,"[""Phone"", ""Laptop""]",1954.91,"{""seasonal"": ""14%""}",30670,1,North America +2024-09-21,89762,6614,"[""Laptop"", ""Charger""]",1522.53,{},14449,1,North America +2024-03-17,89763,2915,"[""Charger""]",517.4,{},227387,1,South America +2024-12-08,89764,2394,"[""Wireless Mouse""]",3175.88,"{"""": ""30%""}",165369,1,Africa +2024-02-07,89765,7417,"[""Laptop""]",130.53,{},236291,0,Asia +2023-11-08,89766,3566,"[""Laptop"", ""Headphones"", ""Phone""]",867.32,"{""loyalty"": ""14%""}",80550,1,Europe +2024-08-12,89767,6221,"[""Headphones"", ""Phone""]",3902.44,"{""seasonal"": ""22%""}",248131,0,North America +2023-03-22,89768,3777,"[""Phone""]",4647.87,"{""seasonal"": ""26%""}",27430,1,Asia +2024-07-23,89769,4851,"[""Laptop""]",1146.98,{},27575,0,Asia +2023-09-12,89770,5126,"[""Keyboard""]",990.31,{},116758,0,Europe +2023-12-20,89771,522,"[""Headphones"", ""Laptop""]",2624.19,{},167900,1,Europe +2024-05-01,89772,5032,"[""Headphones""]",4706.02,{},153270,1,North America +2024-02-14,89773,1280,"[""Keyboard""]",919.79,"{""promo"": ""10%""}",273522,1,North America +2023-08-27,89774,1180,"[""Phone"", ""Charger"", ""Wireless Mouse""]",66.38,"{""seasonal"": ""28%""}",209280,1,Asia +2023-03-19,89775,9562,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",396.91,{},92873,1,Africa +2023-10-29,89776,8409,"[""Tablet"", ""Charger"", ""Laptop""]",729.15,{},161306,1,Asia +2024-09-21,89777,3304,"[""Tablet"", ""Wireless Mouse""]",1161.67,{},67755,0,Asia +2024-07-16,89778,6349,"[""Phone"", ""Charger"", ""Monitor""]",788.04,"{""seasonal"": ""9%""}",153536,1,Africa +2024-08-07,89779,6383,"[""Laptop""]",4708.69,"{"""": ""17%""}",215341,1,Africa +2024-10-27,89780,896,"[""Headphones""]",3085.53,"{"""": ""26%""}",239555,0,North America +2023-12-26,89781,9105,"[""Laptop"", ""Charger"", ""Phone""]",1254.24,{},93580,0,Asia +2023-02-22,89782,77,"[""Monitor"", ""Tablet""]",4691.32,"{""loyalty"": ""8%""}",294682,0,South America +2023-11-05,89783,5423,"[""Phone"", ""Headphones"", ""Laptop""]",1559.68,{},186508,1,Africa +2024-11-27,89784,5234,"[""Monitor"", ""Charger""]",66.61,"{"""": ""5%""}",257823,0,Europe +2023-04-24,89785,45,"[""Laptop""]",3833.37,{},275588,1,South America +2024-07-29,89786,3056,"[""Phone""]",2003.47,{},186391,0,South America +2023-08-25,89787,7437,"[""Headphones"", ""Tablet""]",2488.91,"{""loyalty"": ""7%""}",276527,0,North America +2024-04-11,89788,2148,"[""Wireless Mouse"", ""Keyboard""]",3738.27,"{"""": ""16%""}",183096,0,North America +2023-07-20,89789,1803,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",995.37,"{""loyalty"": ""21%""}",157798,0,South America +2023-04-06,89790,8170,"[""Tablet""]",3819.27,{},157329,0,South America +2023-03-01,89791,5177,"[""Monitor""]",275.8,"{""loyalty"": ""22%""}",81871,1,Africa +2024-07-25,89792,4591,"[""Keyboard""]",4079.82,"{""promo"": ""16%""}",193887,1,North America +2024-02-16,89793,5637,"[""Monitor"", ""Laptop""]",283.92,{},251878,1,South America +2023-12-03,89794,4057,"[""Monitor"", ""Tablet""]",2093.9,{},279789,0,North America +2023-10-15,89795,5858,"[""Keyboard"", ""Headphones"", ""Charger""]",724.5,{},151464,1,Africa +2023-06-19,89796,8050,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2534.07,"{""promo"": ""8%""}",141467,0,Africa +2024-09-21,89797,766,"[""Phone"", ""Laptop""]",2740.39,{},269805,0,Africa +2024-01-06,89798,871,"[""Keyboard""]",3983.26,{},41918,0,North America +2024-06-17,89799,4770,"[""Keyboard""]",944.36,"{""seasonal"": ""17%""}",85498,1,Asia +2023-12-30,89800,983,"[""Charger""]",681.36,"{""promo"": ""9%""}",51135,1,Europe +2024-03-24,89801,4737,"[""Wireless Mouse""]",681.66,"{""seasonal"": ""5%""}",90498,1,Asia +2024-09-08,89802,4811,"[""Monitor""]",1072.9,{},213754,1,South America +2023-12-31,89803,5969,"[""Tablet"", ""Laptop""]",1813.31,{},290307,1,Asia +2023-06-06,89804,235,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",746.43,{},112901,0,North America +2024-07-11,89805,5195,"[""Tablet"", ""Keyboard""]",2853.78,"{""promo"": ""19%""}",242169,0,South America +2024-02-17,89806,8456,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4475.27,"{"""": ""20%""}",170540,0,Asia +2024-05-14,89807,8221,"[""Monitor"", ""Tablet""]",963.54,"{""seasonal"": ""29%""}",263283,0,South America +2023-02-17,89808,7321,"[""Tablet"", ""Charger"", ""Keyboard""]",4850.32,{},20070,0,North America +2023-12-14,89809,2792,"[""Tablet""]",911.43,"{""promo"": ""18%""}",42074,0,Europe +2023-10-12,89810,9570,"[""Headphones""]",212.31,"{""seasonal"": ""24%""}",208557,1,South America +2023-04-22,89811,7836,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2044.21,"{"""": ""27%""}",203886,1,Asia +2024-06-24,89812,44,"[""Phone"", ""Tablet"", ""Charger""]",2943.18,{},154957,0,Europe +2024-02-25,89813,5210,"[""Phone"", ""Laptop""]",4092.04,"{""promo"": ""22%""}",93361,0,South America +2023-09-08,89814,7268,"[""Charger"", ""Tablet""]",3889.39,{},75904,0,South America +2024-07-31,89815,4287,"[""Keyboard"", ""Phone""]",4487.11,{},180168,1,Asia +2023-12-06,89816,3899,"[""Keyboard"", ""Monitor""]",2626.91,{},93454,1,North America +2024-06-03,89817,1149,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",668.51,{},28322,1,North America +2023-08-10,89818,8716,"[""Phone""]",4692.11,"{""seasonal"": ""24%""}",214155,1,South America +2023-07-17,89819,3889,"[""Phone"", ""Charger""]",637.03,{},299294,0,Africa +2024-09-21,89820,8100,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",307.45,{},127056,0,Africa +2023-12-31,89821,329,"[""Monitor"", ""Charger""]",4679.12,{},20955,1,South America +2024-01-03,89822,5449,"[""Monitor"", ""Tablet""]",518.53,{},129684,0,Africa +2023-07-06,89823,9098,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1222.36,"{""loyalty"": ""22%""}",13508,1,Africa +2024-11-13,89824,6835,"[""Headphones"", ""Monitor"", ""Keyboard""]",2685.15,{},226810,1,South America +2024-02-07,89825,8653,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3204.94,"{""seasonal"": ""10%""}",80868,1,Africa +2023-12-31,89826,3380,"[""Tablet"", ""Charger"", ""Keyboard""]",4158.2,{},16698,0,Asia +2024-12-28,89827,3066,"[""Headphones""]",2384.05,"{"""": ""29%""}",222903,1,Europe +2024-11-09,89828,5249,"[""Phone""]",2472.3,{},201732,1,Europe +2023-01-25,89829,1145,"[""Charger"", ""Wireless Mouse""]",2994.18,{},31235,0,South America +2024-07-01,89830,7114,"[""Charger"", ""Tablet"", ""Laptop""]",2072.86,"{""seasonal"": ""12%""}",85792,0,Asia +2024-03-01,89831,4250,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3701.48,{},23599,0,Asia +2023-08-20,89832,5143,"[""Keyboard"", ""Laptop"", ""Tablet""]",356.97,{},264169,0,Africa +2024-06-26,89833,4521,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2095.98,{},286026,0,Asia +2023-01-08,89834,4462,"[""Headphones""]",3518.32,{},133845,0,Asia +2024-09-18,89835,6611,"[""Wireless Mouse"", ""Monitor""]",4434.84,{},281846,0,Asia +2023-04-12,89836,515,"[""Phone""]",2307.73,{},147541,1,Africa +2024-05-18,89837,481,"[""Headphones""]",3261.77,"{""loyalty"": ""24%""}",185891,1,South America +2024-08-25,89838,8329,"[""Phone"", ""Monitor""]",4132.44,"{""loyalty"": ""14%""}",272771,0,Africa +2024-09-16,89839,4830,"[""Charger"", ""Phone"", ""Laptop""]",4780.93,{},244840,1,South America +2024-01-25,89840,5447,"[""Charger"", ""Phone""]",4656.49,"{"""": ""30%""}",135434,1,North America +2024-06-21,89841,6459,"[""Phone"", ""Monitor""]",4423.76,{},7475,1,Europe +2023-04-14,89842,9989,"[""Keyboard"", ""Tablet""]",3351.04,{},294593,0,Europe +2024-07-19,89843,5534,"[""Keyboard""]",1532.93,"{""seasonal"": ""9%""}",146559,0,South America +2023-02-23,89844,4386,"[""Charger""]",761.59,{},280782,0,Asia +2024-10-10,89845,2549,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1209.07,{},289179,1,Africa +2024-08-30,89846,1050,"[""Headphones"", ""Keyboard"", ""Phone""]",4211.5,{},271403,0,North America +2024-10-21,89847,9677,"[""Wireless Mouse""]",2844.91,"{""loyalty"": ""13%""}",127566,0,Africa +2024-12-14,89848,4237,"[""Headphones"", ""Charger""]",4160.58,"{""seasonal"": ""14%""}",183629,1,Asia +2023-04-06,89849,9405,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3347.91,"{""seasonal"": ""14%""}",171163,1,North America +2024-05-07,89850,6192,"[""Monitor""]",3069.25,"{""promo"": ""23%""}",89930,1,North America +2023-07-13,89851,1333,"[""Monitor"", ""Headphones""]",1418.0,{},175396,0,South America +2024-03-30,89852,5116,"[""Keyboard"", ""Wireless Mouse""]",1390.79,"{""seasonal"": ""13%""}",76392,1,Asia +2023-01-16,89853,8121,"[""Keyboard""]",1850.41,{},287057,1,Asia +2024-05-07,89854,475,"[""Headphones""]",3560.11,{},294670,0,Europe +2024-12-18,89855,1626,"[""Monitor"", ""Phone""]",1144.55,"{""promo"": ""7%""}",274543,1,Europe +2024-07-25,89856,6015,"[""Monitor"", ""Keyboard""]",2080.23,{},211875,0,North America +2023-12-09,89857,4388,"[""Laptop"", ""Monitor""]",3130.05,{},200020,1,Africa +2023-04-23,89858,2098,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",2946.08,"{""seasonal"": ""14%""}",276158,0,Europe +2024-05-24,89859,2359,"[""Tablet""]",912.42,"{""seasonal"": ""15%""}",251639,1,North America +2023-06-11,89860,8136,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",648.93,"{""seasonal"": ""13%""}",168844,0,Europe +2023-04-08,89861,5085,"[""Keyboard""]",2191.68,{},194538,0,North America +2024-06-15,89862,6322,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3942.08,{},235707,1,Africa +2023-02-15,89863,7564,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3105.68,"{""seasonal"": ""12%""}",65454,1,South America +2024-09-30,89864,5824,"[""Headphones""]",3084.03,{},187453,1,Europe +2024-04-12,89865,2188,"[""Charger""]",277.12,{},251893,1,Europe +2023-09-27,89866,8336,"[""Laptop""]",2443.18,"{""loyalty"": ""16%""}",234032,0,Africa +2024-07-28,89867,8081,"[""Laptop"", ""Phone"", ""Tablet""]",2682.29,"{"""": ""25%""}",125985,0,North America +2023-12-24,89868,7727,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1997.19,"{""seasonal"": ""7%""}",249606,0,Asia +2023-09-03,89869,4043,"[""Headphones"", ""Tablet""]",2230.92,{},214808,0,Asia +2023-09-24,89870,5074,"[""Monitor"", ""Wireless Mouse""]",1206.26,{},25585,1,North America +2024-05-23,89871,9847,"[""Keyboard""]",749.47,{},150142,1,Africa +2023-06-18,89872,3180,"[""Tablet"", ""Charger""]",2829.69,"{"""": ""20%""}",235210,0,Asia +2023-09-02,89873,6039,"[""Tablet"", ""Keyboard""]",4892.22,{},43144,1,South America +2023-06-27,89874,3527,"[""Phone""]",1650.41,"{""loyalty"": ""18%""}",246266,0,North America +2023-02-27,89875,5727,"[""Keyboard"", ""Charger""]",1157.95,"{""seasonal"": ""29%""}",145932,0,Europe +2024-09-24,89876,2527,"[""Tablet"", ""Monitor""]",3772.18,"{"""": ""8%""}",159476,0,Africa +2024-11-25,89877,8453,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2129.49,{},141078,1,Africa +2024-02-19,89878,9669,"[""Charger"", ""Tablet"", ""Headphones""]",3081.46,{},163677,0,North America +2023-10-04,89879,4055,"[""Phone"", ""Charger""]",3031.28,"{""seasonal"": ""16%""}",166923,1,Europe +2024-11-16,89880,1222,"[""Keyboard"", ""Phone"", ""Headphones""]",3427.13,{},286508,0,South America +2023-04-12,89881,3673,"[""Monitor"", ""Tablet""]",1652.64,{},251598,1,Asia +2023-12-02,89882,1292,"[""Phone"", ""Laptop"", ""Monitor""]",2098.78,"{""seasonal"": ""8%""}",110977,1,Europe +2024-12-30,89883,5588,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",4928.14,"{""seasonal"": ""19%""}",92930,1,South America +2023-04-10,89884,9031,"[""Tablet""]",3753.31,{},290253,1,Africa +2023-01-29,89885,4890,"[""Charger""]",4197.21,"{""loyalty"": ""11%""}",17677,0,Europe +2023-03-04,89886,9078,"[""Headphones"", ""Laptop""]",3854.92,{},25254,1,South America +2023-11-18,89887,4680,"[""Laptop""]",4362.19,{},2033,1,Asia +2023-11-24,89888,9431,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3221.61,{},127021,0,South America +2023-12-19,89889,2364,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",588.06,"{"""": ""17%""}",159327,1,Africa +2023-10-05,89890,2145,"[""Monitor"", ""Laptop"", ""Headphones""]",997.9,{},44270,1,North America +2024-10-07,89891,3372,"[""Headphones""]",1613.84,{},38981,1,Asia +2023-09-09,89892,2164,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",2386.72,"{""promo"": ""25%""}",285969,1,South America +2023-10-06,89893,1108,"[""Phone"", ""Keyboard""]",205.71,{},67088,1,Africa +2024-05-21,89894,7137,"[""Charger""]",791.37,"{"""": ""29%""}",130735,1,Europe +2024-02-24,89895,785,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",771.05,{},88891,0,South America +2023-08-13,89896,282,"[""Phone"", ""Monitor"", ""Charger""]",3573.6,{},228827,1,South America +2024-12-25,89897,5025,"[""Keyboard"", ""Headphones"", ""Phone""]",1760.54,{},71906,1,South America +2023-04-06,89898,7959,"[""Keyboard"", ""Tablet""]",4707.15,{},182348,0,North America +2023-06-26,89899,784,"[""Tablet"", ""Phone""]",2360.05,"{"""": ""8%""}",72707,0,Africa +2023-01-27,89900,6303,"[""Phone"", ""Laptop"", ""Keyboard""]",970.97,"{""loyalty"": ""9%""}",30067,1,Asia +2023-07-14,89901,5481,"[""Phone"", ""Headphones""]",1181.58,{},76074,0,North America +2024-04-01,89902,4916,"[""Wireless Mouse""]",2583.7,"{"""": ""17%""}",109117,1,South America +2023-06-20,89903,8723,"[""Headphones"", ""Keyboard""]",2613.59,"{""promo"": ""20%""}",241306,0,North America +2023-11-01,89904,8613,"[""Headphones""]",2697.09,{},158591,1,Asia +2023-07-21,89905,1712,"[""Monitor"", ""Keyboard""]",4257.12,"{"""": ""8%""}",226784,1,North America +2024-02-27,89906,6979,"[""Monitor""]",2034.98,"{"""": ""29%""}",277689,1,Africa +2023-09-08,89907,2007,"[""Charger"", ""Keyboard"", ""Laptop""]",2106.8,{},230260,0,South America +2023-11-10,89908,4402,"[""Wireless Mouse"", ""Keyboard""]",3790.11,"{""seasonal"": ""13%""}",113941,1,Europe +2023-09-30,89909,2832,"[""Laptop""]",184.53,{},261249,1,Asia +2023-03-22,89910,39,"[""Monitor"", ""Headphones""]",4961.58,"{""loyalty"": ""12%""}",275231,1,Asia +2023-11-03,89911,828,"[""Laptop"", ""Keyboard""]",1304.79,{},40871,1,Africa +2023-09-23,89912,4726,"[""Laptop"", ""Tablet"", ""Phone""]",4921.38,"{"""": ""21%""}",12145,1,South America +2023-12-05,89913,4172,"[""Laptop""]",3063.37,{},145473,0,North America +2023-05-17,89914,737,"[""Keyboard""]",1954.94,"{""loyalty"": ""7%""}",50803,0,Africa +2023-10-07,89915,5890,"[""Headphones"", ""Tablet""]",3131.97,{},37813,0,South America +2023-06-20,89916,8770,"[""Charger""]",103.76,"{""loyalty"": ""16%""}",112796,0,South America +2024-06-14,89917,5751,"[""Phone"", ""Tablet"", ""Laptop""]",3486.94,{},9578,1,North America +2023-03-16,89918,5419,"[""Tablet"", ""Monitor""]",1418.87,{},171229,0,Africa +2023-08-12,89919,3516,"[""Laptop"", ""Phone"", ""Keyboard""]",2430.71,"{"""": ""28%""}",151374,1,Asia +2023-10-10,89920,100,"[""Phone"", ""Laptop"", ""Charger""]",1299.41,{},192327,1,South America +2024-06-28,89921,6563,"[""Tablet"", ""Charger""]",2862.56,"{""seasonal"": ""29%""}",186417,1,North America +2023-01-10,89922,1195,"[""Monitor"", ""Phone""]",4163.64,"{""loyalty"": ""25%""}",49260,0,Europe +2024-07-08,89923,7060,"[""Phone"", ""Charger"", ""Monitor""]",3979.58,{},240666,0,Asia +2023-02-24,89924,2877,"[""Keyboard"", ""Wireless Mouse""]",2300.15,"{""seasonal"": ""23%""}",184393,0,South America +2024-05-19,89925,8882,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3877.85,{},139277,0,Asia +2024-03-11,89926,1588,"[""Keyboard""]",3178.97,"{""promo"": ""25%""}",293185,0,Africa +2024-03-26,89927,6460,"[""Wireless Mouse""]",4681.93,{},248070,1,South America +2023-07-22,89928,8462,"[""Headphones""]",1744.11,{},221672,1,South America +2024-08-26,89929,3790,"[""Laptop""]",1524.32,{},31748,1,North America +2024-11-03,89930,1289,"[""Charger"", ""Wireless Mouse""]",1221.86,"{"""": ""29%""}",202094,1,Africa +2023-02-27,89931,8115,"[""Keyboard"", ""Charger"", ""Headphones""]",1339.61,{},194779,0,South America +2024-03-06,89932,5349,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",4146.52,"{""promo"": ""9%""}",123346,0,Europe +2024-09-09,89933,2565,"[""Laptop""]",4382.44,"{""seasonal"": ""11%""}",293353,1,Africa +2023-07-28,89934,9151,"[""Keyboard""]",605.39,"{""loyalty"": ""24%""}",271173,1,Asia +2024-10-06,89935,3847,"[""Tablet"", ""Phone""]",3695.57,"{""seasonal"": ""7%""}",26366,1,South America +2024-04-24,89936,8715,"[""Keyboard"", ""Laptop"", ""Phone""]",3822.82,"{""loyalty"": ""10%""}",80219,1,Asia +2024-04-24,89937,4919,"[""Keyboard""]",3454.39,{},299029,0,Europe +2023-07-12,89938,3230,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",4203.96,"{""promo"": ""6%""}",202583,0,Asia +2024-12-19,89939,3384,"[""Monitor"", ""Headphones"", ""Keyboard""]",3506.54,"{""loyalty"": ""26%""}",210037,1,Africa +2024-06-17,89940,9959,"[""Wireless Mouse""]",1276.28,{},173263,0,Europe +2023-08-21,89941,2929,"[""Laptop"", ""Charger""]",3036.26,"{""loyalty"": ""16%""}",274273,0,Asia +2023-11-30,89942,449,"[""Wireless Mouse"", ""Tablet""]",484.21,{},17871,0,South America +2023-09-02,89943,295,"[""Phone""]",1003.47,"{"""": ""14%""}",169628,1,Europe +2023-06-30,89944,3435,"[""Charger"", ""Laptop""]",1860.73,"{"""": ""29%""}",46147,1,Asia +2023-05-05,89945,3492,"[""Monitor"", ""Laptop""]",691.22,{},74312,1,Asia +2024-03-02,89946,375,"[""Laptop"", ""Phone""]",679.62,"{""promo"": ""30%""}",209913,0,Africa +2023-01-06,89947,3974,"[""Tablet""]",4346.07,"{"""": ""10%""}",287707,1,Africa +2024-11-12,89948,6347,"[""Tablet""]",4418.53,"{""loyalty"": ""9%""}",35013,1,Europe +2023-07-13,89949,4508,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4139.92,{},16955,1,South America +2024-01-21,89950,561,"[""Headphones"", ""Laptop""]",2773.89,{},133729,0,Europe +2024-11-04,89951,8592,"[""Headphones""]",2565.27,{},190102,0,South America +2024-08-28,89952,8945,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2075.26,"{""seasonal"": ""29%""}",91276,1,Europe +2024-04-15,89953,5210,"[""Laptop"", ""Phone"", ""Charger""]",2250.11,"{""seasonal"": ""29%""}",183301,1,Europe +2024-01-22,89954,5455,"[""Tablet""]",3511.28,"{""promo"": ""27%""}",259655,0,Europe +2024-05-31,89955,4188,"[""Phone"", ""Monitor""]",1492.09,"{""loyalty"": ""17%""}",78170,0,Asia +2023-06-21,89956,5465,"[""Phone""]",4055.53,"{""promo"": ""29%""}",216023,0,North America +2024-04-21,89957,4312,"[""Wireless Mouse""]",3678.79,{},54504,0,South America +2024-04-24,89958,5210,"[""Keyboard"", ""Wireless Mouse""]",956.04,"{""promo"": ""27%""}",143905,1,North America +2024-06-19,89959,1019,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2868.02,{},226280,0,North America +2024-04-06,89960,7025,"[""Tablet"", ""Keyboard""]",2931.16,"{""seasonal"": ""14%""}",183891,0,North America +2023-10-12,89961,5472,"[""Monitor"", ""Phone""]",902.08,"{"""": ""13%""}",162721,0,Europe +2023-03-11,89962,7456,"[""Monitor"", ""Wireless Mouse""]",1202.56,{},238604,1,Asia +2024-03-02,89963,2018,"[""Keyboard""]",1002.01,{},82957,1,Asia +2023-08-26,89964,1159,"[""Keyboard"", ""Phone"", ""Laptop""]",2070.65,{},75522,0,Africa +2024-02-02,89965,4405,"[""Monitor""]",3658.02,{},105682,0,North America +2023-05-05,89966,4027,"[""Wireless Mouse"", ""Charger""]",3796.24,"{"""": ""7%""}",196794,0,South America +2024-05-08,89967,3031,"[""Charger""]",2206.88,"{""seasonal"": ""30%""}",206468,0,South America +2024-02-10,89968,3707,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2162.61,{},284498,1,South America +2023-08-07,89969,4121,"[""Headphones""]",3180.09,{},125005,0,Europe +2023-10-29,89970,3376,"[""Phone"", ""Tablet""]",4648.45,"{""seasonal"": ""14%""}",266643,0,North America +2024-01-01,89971,4676,"[""Laptop"", ""Phone"", ""Monitor""]",4455.4,{},10621,1,South America +2024-07-07,89972,9129,"[""Keyboard"", ""Laptop""]",1659.15,{},133388,1,North America +2023-05-05,89973,7985,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4854.4,"{""loyalty"": ""19%""}",165836,1,Africa +2023-08-23,89974,3471,"[""Monitor"", ""Laptop"", ""Keyboard""]",546.94,"{"""": ""28%""}",279198,0,Asia +2024-12-23,89975,4312,"[""Monitor"", ""Charger"", ""Laptop""]",288.64,"{"""": ""15%""}",65975,0,Europe +2024-11-15,89976,7537,"[""Laptop""]",4596.09,{},142267,1,South America +2024-03-09,89977,9124,"[""Laptop"", ""Monitor"", ""Tablet""]",2941.61,"{""seasonal"": ""15%""}",246594,1,Europe +2024-03-23,89978,6670,"[""Laptop""]",2197.63,{},40438,1,North America +2024-09-15,89979,7660,"[""Headphones"", ""Tablet"", ""Keyboard""]",714.91,"{"""": ""18%""}",22185,0,South America +2023-10-30,89980,3524,"[""Phone""]",2056.17,{},276832,0,Asia +2023-01-01,89981,8538,"[""Wireless Mouse""]",59.88,"{""promo"": ""8%""}",229340,1,Africa +2023-12-26,89982,5246,"[""Keyboard"", ""Tablet""]",1419.08,{},72830,0,Europe +2023-05-09,89983,5293,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",569.49,"{"""": ""23%""}",120659,0,North America +2024-01-04,89984,8797,"[""Phone"", ""Tablet""]",668.03,{},16907,1,North America +2023-04-25,89985,1967,"[""Tablet"", ""Monitor"", ""Laptop""]",3830.27,"{""loyalty"": ""22%""}",180231,0,South America +2024-09-04,89986,1601,"[""Laptop"", ""Charger"", ""Headphones""]",802.71,"{""loyalty"": ""16%""}",114051,1,South America +2024-06-09,89987,4146,"[""Phone"", ""Charger""]",582.09,"{""seasonal"": ""6%""}",129570,0,Asia +2023-03-24,89988,512,"[""Charger"", ""Tablet"", ""Keyboard""]",1048.74,{},263199,1,Europe +2023-07-08,89989,3429,"[""Keyboard"", ""Headphones""]",2116.82,"{""promo"": ""14%""}",276943,0,Asia +2023-12-09,89990,4779,"[""Tablet"", ""Monitor""]",3045.58,"{""seasonal"": ""25%""}",232459,0,North America +2023-07-17,89991,7852,"[""Phone"", ""Monitor""]",1583.16,"{""promo"": ""19%""}",116207,1,Africa +2023-03-29,89992,565,"[""Laptop"", ""Wireless Mouse""]",4097.75,"{""promo"": ""27%""}",263189,0,North America +2024-05-11,89993,6654,"[""Headphones"", ""Phone"", ""Charger""]",4425.95,{},275376,1,North America +2023-12-15,89994,8888,"[""Monitor""]",3991.12,{},12903,1,South America +2024-04-24,89995,3199,"[""Tablet""]",1036.32,{},60391,0,North America +2024-04-12,89996,8725,"[""Monitor"", ""Headphones"", ""Tablet""]",1408.52,"{""seasonal"": ""9%""}",157255,1,North America +2023-04-09,89997,1593,"[""Charger"", ""Monitor""]",2045.84,"{"""": ""24%""}",260861,1,Asia +2023-08-04,89998,1368,"[""Wireless Mouse"", ""Headphones""]",619.42,{},160521,0,South America +2024-10-30,89999,1731,"[""Laptop"", ""Headphones"", ""Monitor""]",4301.45,{},219995,1,Asia +2023-03-24,90000,2055,"[""Charger"", ""Wireless Mouse""]",3662.14,"{"""": ""28%""}",31944,0,South America +2024-08-17,90001,5379,"[""Phone"", ""Laptop""]",2308.73,{},93661,0,Europe +2023-04-22,90002,4563,"[""Keyboard"", ""Charger""]",928.93,"{""loyalty"": ""17%""}",1895,1,Africa +2023-09-22,90003,4314,"[""Charger"", ""Phone""]",2969.07,"{""seasonal"": ""10%""}",176935,0,Asia +2023-06-28,90004,8066,"[""Headphones""]",951.77,{},265526,1,Asia +2023-11-23,90005,5536,"[""Charger""]",3500.88,{},188588,1,Asia +2023-06-12,90006,5053,"[""Charger""]",739.21,{},255630,1,Africa +2023-05-11,90007,4992,"[""Keyboard""]",676.27,"{"""": ""27%""}",67023,0,Asia +2023-12-16,90008,8973,"[""Charger"", ""Laptop"", ""Monitor""]",2501.63,"{""seasonal"": ""18%""}",262242,1,Europe +2024-12-19,90009,5334,"[""Monitor"", ""Tablet"", ""Headphones""]",4797.46,{},161039,1,Europe +2024-01-15,90010,7110,"[""Wireless Mouse"", ""Laptop""]",2043.61,{},70849,1,Africa +2023-01-17,90011,8322,"[""Monitor"", ""Charger"", ""Tablet""]",1773.5,{},31266,1,South America +2024-05-17,90012,8194,"[""Charger"", ""Laptop"", ""Keyboard""]",2232.5,{},59740,1,South America +2023-07-27,90013,8758,"[""Headphones"", ""Laptop""]",1904.13,{},181072,1,South America +2024-04-27,90014,9449,"[""Headphones""]",3164.97,"{""promo"": ""12%""}",234692,1,North America +2023-07-19,90015,3735,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2496.31,"{""loyalty"": ""5%""}",51742,0,South America +2023-02-27,90016,2702,"[""Keyboard"", ""Tablet""]",3868.13,{},255935,0,South America +2024-05-07,90017,9674,"[""Monitor"", ""Charger""]",1662.28,"{""loyalty"": ""6%""}",133521,0,Asia +2024-08-25,90018,6885,"[""Monitor""]",4869.41,"{"""": ""15%""}",157536,0,Africa +2023-04-24,90019,5896,"[""Monitor""]",4958.14,{},297014,0,South America +2024-07-27,90020,715,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1106.61,"{"""": ""20%""}",240964,1,Europe +2023-11-08,90021,5856,"[""Monitor""]",2229.26,"{"""": ""25%""}",18734,0,North America +2023-01-27,90022,7233,"[""Headphones""]",1491.95,{},246333,0,Asia +2024-03-13,90023,8730,"[""Tablet"", ""Headphones"", ""Keyboard""]",4986.75,{},201439,0,Africa +2023-03-21,90024,2879,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1407.14,"{""loyalty"": ""20%""}",269942,1,Asia +2024-02-26,90025,7121,"[""Phone""]",656.46,{},238824,0,North America +2024-02-27,90026,2056,"[""Charger""]",4160.68,{},223759,1,Europe +2024-07-28,90027,1663,"[""Headphones"", ""Wireless Mouse""]",4658.82,{},172172,0,Africa +2023-07-22,90028,3418,"[""Monitor""]",2826.42,{},186343,1,Africa +2023-03-12,90029,6326,"[""Keyboard""]",1062.91,"{"""": ""21%""}",273869,1,South America +2023-05-15,90030,8578,"[""Headphones"", ""Tablet"", ""Laptop""]",3571.43,"{"""": ""6%""}",202507,1,Africa +2024-12-09,90031,1388,"[""Wireless Mouse""]",1596.18,"{""loyalty"": ""11%""}",58742,1,South America +2023-04-26,90032,1038,"[""Keyboard"", ""Charger"", ""Phone""]",2001.19,"{""promo"": ""20%""}",269780,1,South America +2023-04-23,90033,5904,"[""Laptop""]",550.48,"{""loyalty"": ""26%""}",282520,0,Africa +2024-11-05,90034,204,"[""Phone""]",1956.46,"{""promo"": ""25%""}",52368,1,Europe +2023-09-16,90035,3161,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1024.23,{},156919,1,Asia +2023-09-05,90036,912,"[""Wireless Mouse""]",1548.62,{},242717,0,Africa +2023-01-11,90037,9286,"[""Charger"", ""Phone""]",4118.82,{},25665,0,Europe +2023-11-01,90038,6542,"[""Tablet""]",2585.87,"{""loyalty"": ""30%""}",60386,1,Asia +2023-11-19,90039,5655,"[""Monitor""]",2860.26,{},151729,1,Europe +2023-02-28,90040,1345,"[""Keyboard""]",1983.87,{},214300,1,South America +2023-07-03,90041,4280,"[""Phone"", ""Laptop"", ""Charger""]",4297.46,{},93193,1,North America +2024-01-10,90042,7520,"[""Laptop""]",3571.66,"{""loyalty"": ""30%""}",59499,0,Africa +2023-04-05,90043,8480,"[""Charger"", ""Headphones"", ""Phone""]",3781.52,{},186992,1,North America +2023-08-21,90044,915,"[""Monitor"", ""Headphones"", ""Keyboard""]",3376.49,{},231666,1,Europe +2024-07-16,90045,7041,"[""Charger"", ""Monitor"", ""Laptop""]",1672.86,"{"""": ""9%""}",111886,1,Asia +2024-02-24,90046,3919,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",1274.87,{},277453,1,Asia +2024-12-24,90047,2459,"[""Charger""]",681.51,{},44627,1,South America +2024-10-12,90048,8213,"[""Laptop"", ""Keyboard""]",3432.74,"{""loyalty"": ""23%""}",118271,0,Africa +2024-06-19,90049,3144,"[""Phone"", ""Wireless Mouse""]",415.13,"{""promo"": ""16%""}",54251,1,Europe +2024-06-20,90050,9966,"[""Tablet"", ""Charger""]",3550.47,{},153516,0,South America +2024-02-04,90051,7178,"[""Monitor"", ""Wireless Mouse""]",3054.56,{},212278,1,South America +2023-05-23,90052,2002,"[""Monitor"", ""Headphones""]",4649.62,{},110443,0,North America +2024-06-15,90053,3152,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",769.07,{},107267,1,Asia +2023-12-13,90054,6748,"[""Headphones""]",1142.53,{},45436,0,North America +2023-06-17,90055,3126,"[""Keyboard"", ""Charger""]",3270.15,"{""seasonal"": ""5%""}",193038,0,South America +2024-05-01,90056,8206,"[""Charger"", ""Monitor"", ""Headphones""]",1894.25,{},133598,1,North America +2024-11-10,90057,604,"[""Charger""]",1045.76,"{"""": ""16%""}",32102,0,South America +2024-07-24,90058,8263,"[""Tablet""]",2637.13,"{""seasonal"": ""12%""}",53451,1,Asia +2024-08-27,90059,6406,"[""Headphones""]",4066.39,{},166168,0,Asia +2024-08-18,90060,6901,"[""Monitor"", ""Tablet"", ""Keyboard""]",3560.77,"{"""": ""5%""}",58795,1,Africa +2023-08-28,90061,1924,"[""Charger"", ""Phone"", ""Keyboard""]",772.05,"{""loyalty"": ""19%""}",283283,0,South America +2023-06-04,90062,4568,"[""Charger"", ""Keyboard""]",368.77,{},203343,0,Africa +2023-04-17,90063,7380,"[""Laptop"", ""Phone""]",828.83,"{""promo"": ""25%""}",211753,1,Europe +2023-07-23,90064,1855,"[""Tablet"", ""Laptop""]",967.58,{},144133,1,Europe +2023-03-07,90065,3388,"[""Tablet""]",3112.07,"{"""": ""10%""}",179199,0,Europe +2024-10-28,90066,7127,"[""Laptop"", ""Headphones""]",1924.86,{},245371,0,Europe +2024-11-29,90067,1820,"[""Wireless Mouse""]",277.96,{},190713,1,South America +2023-12-05,90068,5326,"[""Laptop"", ""Phone"", ""Headphones""]",2864.18,{},103683,1,South America +2023-02-03,90069,1308,"[""Keyboard""]",1334.06,{},237134,1,Asia +2024-12-18,90070,5838,"[""Monitor"", ""Laptop"", ""Tablet""]",3476.69,"{""promo"": ""26%""}",169687,1,South America +2023-12-14,90071,1588,"[""Phone""]",2806.86,{},17830,0,Europe +2023-10-23,90072,5522,"[""Keyboard"", ""Tablet"", ""Headphones""]",3338.23,"{""loyalty"": ""25%""}",258374,0,North America +2024-11-06,90073,9111,"[""Laptop"", ""Charger"", ""Keyboard""]",673.96,"{""loyalty"": ""23%""}",239385,0,Africa +2023-08-22,90074,1202,"[""Tablet"", ""Headphones"", ""Keyboard""]",3176.66,{},204987,0,South America +2024-05-29,90075,7754,"[""Headphones"", ""Laptop""]",1258.13,"{""promo"": ""13%""}",294579,1,South America +2023-02-21,90076,7235,"[""Monitor"", ""Laptop"", ""Phone""]",75.32,{},4197,1,Europe +2024-04-12,90077,575,"[""Phone""]",2705.89,{},103232,0,North America +2024-05-28,90078,1197,"[""Charger"", ""Tablet"", ""Keyboard""]",4024.54,"{"""": ""12%""}",113005,1,Europe +2024-01-11,90079,3869,"[""Wireless Mouse""]",946.6,{},203320,1,North America +2023-12-23,90080,2227,"[""Keyboard"", ""Charger""]",356.38,"{""loyalty"": ""16%""}",227303,0,Africa +2024-01-09,90081,6778,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2549.33,"{""loyalty"": ""8%""}",133276,1,South America +2024-10-22,90082,6901,"[""Laptop"", ""Tablet""]",4513.74,{},247499,0,Africa +2023-03-26,90083,3811,"[""Monitor"", ""Laptop"", ""Phone""]",1381.37,{},25825,1,North America +2024-11-17,90084,985,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1150.34,{},244081,1,South America +2024-02-09,90085,7420,"[""Laptop""]",4355.73,{},180560,1,Africa +2024-06-01,90086,1751,"[""Headphones""]",1208.68,{},69775,1,Europe +2023-08-06,90087,2630,"[""Wireless Mouse"", ""Laptop""]",591.87,{},14043,0,North America +2024-11-12,90088,7444,"[""Tablet"", ""Wireless Mouse""]",1131.52,{},289252,1,South America +2023-12-15,90089,8160,"[""Phone"", ""Laptop""]",256.69,"{""seasonal"": ""19%""}",252564,1,Africa +2023-11-20,90090,1673,"[""Laptop""]",1107.04,{},239521,1,Asia +2024-01-13,90091,1360,"[""Phone"", ""Laptop"", ""Tablet""]",2562.65,{},161825,0,North America +2023-10-10,90092,240,"[""Tablet""]",4021.34,"{""seasonal"": ""27%""}",107968,0,North America +2024-08-01,90093,8484,"[""Laptop"", ""Monitor""]",3425.51,{},152820,1,North America +2023-01-03,90094,8841,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",493.15,{},193200,0,Europe +2024-09-22,90095,2994,"[""Monitor"", ""Tablet"", ""Headphones""]",2184.74,{},195635,0,South America +2023-01-29,90096,1006,"[""Tablet"", ""Phone""]",4273.56,"{""loyalty"": ""19%""}",63200,1,Asia +2024-03-10,90097,1274,"[""Tablet"", ""Headphones"", ""Keyboard""]",3556.18,"{""promo"": ""20%""}",83941,0,North America +2023-09-11,90098,1292,"[""Keyboard""]",1340.86,"{"""": ""17%""}",75232,1,Asia +2023-12-07,90099,9866,"[""Tablet""]",512.21,"{""loyalty"": ""7%""}",83562,0,North America +2023-03-09,90100,5232,"[""Laptop""]",347.31,"{"""": ""30%""}",256641,0,Africa +2023-01-09,90101,5733,"[""Monitor"", ""Tablet""]",1754.04,"{""seasonal"": ""21%""}",84498,0,Asia +2023-04-08,90102,7285,"[""Charger""]",3990.96,{},210443,1,Europe +2024-03-11,90103,9838,"[""Phone""]",3035.63,{},52147,1,North America +2024-05-29,90104,3419,"[""Headphones""]",119.6,"{""promo"": ""27%""}",243161,1,Asia +2024-09-09,90105,898,"[""Phone""]",558.46,"{""seasonal"": ""19%""}",220845,1,Africa +2024-10-09,90106,9009,"[""Monitor"", ""Charger""]",525.89,"{""promo"": ""27%""}",12973,1,South America +2023-03-21,90107,6613,"[""Keyboard"", ""Phone""]",3764.75,"{""loyalty"": ""21%""}",148753,1,South America +2024-12-14,90108,4143,"[""Keyboard"", ""Headphones""]",740.89,"{"""": ""17%""}",36622,1,Asia +2023-09-30,90109,4117,"[""Phone"", ""Headphones"", ""Keyboard""]",1365.99,{},28151,0,North America +2024-05-12,90110,9157,"[""Tablet"", ""Monitor"", ""Charger""]",1723.1,"{"""": ""7%""}",217551,1,Africa +2023-03-09,90111,8788,"[""Wireless Mouse"", ""Tablet""]",677.37,{},68582,1,North America +2024-07-15,90112,3406,"[""Monitor"", ""Tablet"", ""Keyboard""]",3968.34,"{""loyalty"": ""27%""}",236719,0,South America +2023-08-17,90113,2105,"[""Tablet"", ""Charger""]",1826.88,{},230847,0,Asia +2024-02-12,90114,4393,"[""Laptop"", ""Monitor"", ""Keyboard""]",2124.14,"{"""": ""24%""}",269739,0,Africa +2023-08-30,90115,6067,"[""Monitor"", ""Keyboard""]",2693.76,"{"""": ""14%""}",143464,1,Africa +2024-09-07,90116,9538,"[""Headphones"", ""Charger"", ""Laptop""]",1378.47,{},108116,0,Africa +2024-01-05,90117,6295,"[""Headphones"", ""Monitor"", ""Tablet""]",177.41,{},94465,0,Europe +2024-09-08,90118,1903,"[""Laptop"", ""Keyboard"", ""Tablet""]",1633.12,{},183181,1,Africa +2024-01-03,90119,8030,"[""Charger"", ""Laptop""]",4486.77,{},130430,1,Africa +2023-03-05,90120,6517,"[""Monitor""]",4696.81,{},230441,0,North America +2023-10-26,90121,6638,"[""Headphones"", ""Monitor""]",3574.08,"{"""": ""21%""}",41694,0,South America +2023-09-07,90122,2044,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",3143.67,{},162010,0,Asia +2023-07-26,90123,3091,"[""Charger"", ""Laptop"", ""Keyboard""]",2918.85,"{"""": ""22%""}",117844,1,Africa +2024-05-13,90124,2083,"[""Tablet"", ""Keyboard""]",1501.34,"{""promo"": ""14%""}",132561,1,Africa +2023-06-27,90125,3366,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1708.59,"{""promo"": ""13%""}",276272,0,South America +2024-07-06,90126,874,"[""Tablet"", ""Laptop""]",463.17,{},167867,0,North America +2024-02-01,90127,6279,"[""Phone"", ""Charger""]",1348.09,"{""loyalty"": ""25%""}",6240,1,North America +2024-06-16,90128,925,"[""Keyboard""]",3153.68,"{""seasonal"": ""12%""}",147282,1,Africa +2024-08-08,90129,6838,"[""Laptop""]",298.68,"{"""": ""6%""}",227204,1,South America +2024-02-02,90130,7591,"[""Phone""]",3467.04,{},3924,0,South America +2024-04-05,90131,9490,"[""Wireless Mouse""]",2361.78,{},215109,0,Africa +2023-02-02,90132,1154,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1218.02,{},5055,0,Asia +2023-07-02,90133,6076,"[""Headphones"", ""Phone""]",1553.95,"{""seasonal"": ""29%""}",117535,1,Asia +2023-04-25,90134,5397,"[""Wireless Mouse""]",2845.82,{},78194,1,South America +2023-11-13,90135,8165,"[""Tablet""]",3994.74,{},246706,1,Asia +2024-07-29,90136,4499,"[""Tablet""]",92.69,{},201695,0,South America +2024-11-10,90137,1103,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4905.45,{},92434,0,South America +2024-11-27,90138,9846,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4208.25,{},154663,0,Africa +2024-01-19,90139,5087,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1672.67,{},249494,1,Africa +2024-03-30,90140,2916,"[""Keyboard"", ""Charger"", ""Monitor""]",3790.08,"{""seasonal"": ""10%""}",140249,0,Asia +2023-09-27,90141,3176,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2625.42,"{"""": ""21%""}",28173,1,Asia +2024-05-07,90142,9977,"[""Phone"", ""Charger""]",3371.34,{},143260,1,Europe +2024-03-23,90143,4710,"[""Headphones""]",2811.3,"{""seasonal"": ""15%""}",240969,0,Asia +2024-10-03,90144,4917,"[""Headphones"", ""Phone"", ""Keyboard""]",2343.17,"{""promo"": ""28%""}",158556,0,Asia +2023-05-15,90145,4,"[""Phone""]",3761.45,"{""seasonal"": ""15%""}",246285,0,Asia +2024-04-05,90146,8716,"[""Headphones""]",3461.91,"{""seasonal"": ""9%""}",233950,1,South America +2024-06-25,90147,9925,"[""Keyboard"", ""Wireless Mouse""]",924.47,{},6268,1,Asia +2024-06-29,90148,5120,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4020.99,{},221716,1,South America +2024-03-23,90149,3303,"[""Tablet"", ""Monitor""]",1791.08,"{""seasonal"": ""15%""}",291788,1,Asia +2023-12-25,90150,7264,"[""Tablet"", ""Headphones"", ""Phone""]",3647.4,"{""seasonal"": ""10%""}",20014,1,North America +2023-06-17,90151,2573,"[""Tablet""]",1220.73,"{""promo"": ""28%""}",89430,1,Asia +2024-09-27,90152,6571,"[""Phone""]",2004.52,{},103582,0,North America +2023-07-12,90153,7715,"[""Phone""]",1154.09,{},47404,0,Asia +2024-07-06,90154,9298,"[""Monitor"", ""Tablet""]",2344.92,{},203435,1,Asia +2023-03-06,90155,4962,"[""Headphones"", ""Monitor"", ""Laptop""]",1691.45,{},221932,1,Asia +2024-09-18,90156,5695,"[""Charger"", ""Tablet""]",591.36,{},275124,1,Asia +2024-12-20,90157,3202,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3299.54,"{""promo"": ""18%""}",270311,1,Africa +2023-11-17,90158,1616,"[""Laptop"", ""Wireless Mouse""]",782.65,"{""promo"": ""23%""}",245416,1,South America +2023-08-17,90159,5950,"[""Monitor""]",4520.57,"{""promo"": ""6%""}",135167,0,South America +2024-05-26,90160,1271,"[""Laptop""]",3881.17,"{"""": ""10%""}",264817,0,Africa +2023-12-05,90161,8345,"[""Keyboard"", ""Phone"", ""Laptop""]",3097.81,"{"""": ""16%""}",137876,0,Africa +2024-07-19,90162,3060,"[""Monitor""]",4116.6,"{""promo"": ""18%""}",256764,0,Asia +2024-06-09,90163,4422,"[""Wireless Mouse"", ""Keyboard""]",1318.3,"{""promo"": ""16%""}",227510,1,Africa +2023-09-07,90164,3817,"[""Charger"", ""Monitor"", ""Phone""]",1945.43,{},212074,0,Asia +2023-02-19,90165,6641,"[""Wireless Mouse"", ""Keyboard""]",2353.93,"{"""": ""12%""}",175109,1,South America +2023-03-26,90166,8264,"[""Headphones"", ""Charger""]",1588.45,"{""loyalty"": ""23%""}",44698,0,South America +2024-01-27,90167,7731,"[""Keyboard""]",2812.41,"{""seasonal"": ""28%""}",166762,1,Asia +2024-01-28,90168,7056,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2698.99,"{""loyalty"": ""28%""}",216462,0,North America +2024-07-07,90169,9710,"[""Charger"", ""Headphones""]",860.97,"{"""": ""20%""}",209278,1,Africa +2023-08-31,90170,1132,"[""Monitor"", ""Charger"", ""Tablet""]",843.38,{},284604,1,Asia +2024-04-09,90171,488,"[""Wireless Mouse"", ""Monitor""]",3273.88,"{"""": ""22%""}",118118,0,Africa +2023-03-23,90172,5536,"[""Headphones""]",947.79,"{"""": ""21%""}",105234,1,South America +2024-05-24,90173,9671,"[""Headphones""]",2038.9,{},63661,0,North America +2024-07-01,90174,4918,"[""Tablet"", ""Headphones""]",612.51,"{""loyalty"": ""20%""}",115552,1,Asia +2024-10-03,90175,814,"[""Tablet"", ""Headphones""]",834.2,"{""promo"": ""8%""}",276032,0,South America +2023-09-10,90176,5769,"[""Keyboard""]",949.36,"{""seasonal"": ""12%""}",165750,0,Asia +2023-02-14,90177,5687,"[""Wireless Mouse"", ""Tablet""]",4515.62,"{""promo"": ""27%""}",51967,0,Africa +2023-02-14,90178,6564,"[""Phone""]",3152.3,"{"""": ""29%""}",57740,0,North America +2024-01-06,90179,2769,"[""Charger""]",2816.45,{},207888,0,South America +2024-08-11,90180,1478,"[""Keyboard""]",2092.19,{},179952,0,Asia +2023-02-09,90181,1219,"[""Tablet""]",2005.45,"{""promo"": ""6%""}",236590,0,South America +2024-09-07,90182,8009,"[""Monitor""]",2929.68,"{""loyalty"": ""27%""}",21152,0,Asia +2023-04-19,90183,3125,"[""Tablet""]",2364.55,{},150056,1,South America +2023-04-10,90184,7694,"[""Charger"", ""Keyboard"", ""Laptop""]",2196.3,{},185169,0,Africa +2023-07-07,90185,8070,"[""Monitor""]",413.76,{},67376,0,South America +2024-01-17,90186,3814,"[""Tablet"", ""Laptop"", ""Monitor""]",4430.72,{},53751,1,Asia +2024-08-28,90187,8201,"[""Keyboard""]",3008.12,"{"""": ""7%""}",86156,0,Asia +2024-08-14,90188,8443,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4944.26,{},62646,1,South America +2024-01-06,90189,2184,"[""Tablet"", ""Phone"", ""Headphones""]",4635.23,"{"""": ""24%""}",224405,0,North America +2024-11-01,90190,2728,"[""Tablet""]",2914.35,{},233710,1,North America +2024-10-28,90191,4086,"[""Phone""]",2982.34,"{""seasonal"": ""6%""}",279433,0,Asia +2024-09-02,90192,1290,"[""Wireless Mouse"", ""Charger""]",4050.98,{},136547,1,Africa +2024-06-05,90193,417,"[""Phone""]",2535.02,"{""seasonal"": ""20%""}",66249,0,Asia +2024-05-20,90194,7042,"[""Keyboard""]",1687.49,{},72862,0,Africa +2024-02-01,90195,881,"[""Phone"", ""Headphones"", ""Keyboard""]",3504.21,"{""seasonal"": ""23%""}",249740,0,Asia +2024-04-11,90196,1344,"[""Charger"", ""Keyboard""]",3894.1,"{"""": ""28%""}",122830,0,South America +2023-06-26,90197,3155,"[""Headphones"", ""Monitor""]",1749.35,{},247342,1,Europe +2024-12-30,90198,7141,"[""Wireless Mouse""]",954.16,"{""promo"": ""28%""}",161361,1,Asia +2023-05-04,90199,5360,"[""Tablet""]",3943.61,"{"""": ""9%""}",295894,0,North America +2023-05-05,90200,1664,"[""Monitor"", ""Wireless Mouse""]",2963.79,"{"""": ""18%""}",4476,1,North America +2024-12-25,90201,3042,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",2662.14,{},104843,0,Africa +2024-05-30,90202,6402,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",792.35,{},29063,1,Africa +2024-03-05,90203,6490,"[""Tablet""]",1443.86,{},224264,1,South America +2024-09-29,90204,1254,"[""Monitor"", ""Keyboard"", ""Headphones""]",4988.02,"{"""": ""8%""}",52003,1,Africa +2024-02-19,90205,7758,"[""Monitor"", ""Keyboard"", ""Phone""]",2581.86,"{"""": ""19%""}",244608,1,Africa +2024-05-02,90206,4577,"[""Laptop"", ""Keyboard""]",1108.51,"{""loyalty"": ""10%""}",173313,0,North America +2024-07-22,90207,66,"[""Wireless Mouse""]",2003.03,{},122949,0,Asia +2024-06-19,90208,3707,"[""Phone"", ""Wireless Mouse""]",1799.16,{},146006,0,Asia +2023-11-29,90209,9763,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",2659.93,{},297110,0,Africa +2024-05-30,90210,8680,"[""Wireless Mouse""]",2555.86,{},271274,0,Europe +2024-05-28,90211,9424,"[""Headphones""]",2756.49,"{"""": ""30%""}",201570,0,Asia +2024-05-17,90212,1802,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2871.26,"{"""": ""28%""}",248294,1,Asia +2024-11-29,90213,5080,"[""Headphones"", ""Keyboard"", ""Tablet""]",174.36,"{""promo"": ""13%""}",65503,0,North America +2024-05-25,90214,8588,"[""Laptop""]",3825.63,{},231157,0,South America +2023-02-01,90215,2180,"[""Tablet"", ""Laptop""]",3934.73,{},281215,0,Africa +2024-02-27,90216,9836,"[""Laptop"", ""Tablet"", ""Phone""]",907.65,{},195346,1,Asia +2023-03-27,90217,7797,"[""Laptop"", ""Keyboard""]",728.28,"{"""": ""21%""}",204684,1,Europe +2023-10-21,90218,7665,"[""Headphones"", ""Keyboard"", ""Laptop""]",4073.97,"{"""": ""19%""}",6414,0,North America +2023-01-03,90219,4789,"[""Charger"", ""Monitor""]",1849.04,"{""seasonal"": ""29%""}",168801,0,Europe +2024-09-24,90220,2539,"[""Tablet"", ""Monitor"", ""Charger""]",2270.74,{},248354,0,South America +2023-05-15,90221,1056,"[""Tablet"", ""Charger""]",1707.36,{},216201,1,Europe +2023-12-12,90222,4943,"[""Charger""]",3072.47,{},261055,0,South America +2023-11-20,90223,3752,"[""Wireless Mouse"", ""Headphones""]",3680.71,"{""seasonal"": ""26%""}",230414,1,South America +2023-09-11,90224,6507,"[""Laptop"", ""Tablet""]",2867.95,"{""promo"": ""29%""}",184958,1,North America +2023-03-21,90225,1441,"[""Keyboard"", ""Headphones""]",1509.4,"{""seasonal"": ""14%""}",28820,0,Europe +2023-08-25,90226,111,"[""Keyboard""]",2189.57,"{"""": ""16%""}",55202,0,Africa +2024-11-06,90227,574,"[""Laptop"", ""Headphones""]",4794.48,{},264764,1,South America +2024-03-05,90228,588,"[""Phone"", ""Headphones"", ""Keyboard""]",2284.56,"{"""": ""8%""}",202697,1,Africa +2023-03-18,90229,3980,"[""Wireless Mouse"", ""Laptop""]",4174.93,{},266322,0,Europe +2023-05-29,90230,6076,"[""Phone""]",171.04,"{""seasonal"": ""21%""}",192152,1,South America +2023-10-15,90231,9930,"[""Headphones"", ""Tablet""]",3529.81,"{""seasonal"": ""5%""}",274536,0,Africa +2023-04-28,90232,5753,"[""Headphones""]",1818.33,{},97625,1,Asia +2024-09-20,90233,1344,"[""Monitor"", ""Keyboard""]",4578.32,{},101624,0,Asia +2024-06-04,90234,813,"[""Monitor""]",227.74,"{""promo"": ""29%""}",25072,1,Asia +2023-11-04,90235,6428,"[""Monitor"", ""Keyboard"", ""Phone""]",1453.28,{},65022,0,South America +2023-10-14,90236,1867,"[""Monitor""]",3901.15,"{"""": ""26%""}",126360,0,Europe +2023-06-10,90237,4277,"[""Tablet"", ""Keyboard""]",3425.32,{},94111,1,North America +2023-05-09,90238,3536,"[""Charger"", ""Monitor""]",823.94,"{""loyalty"": ""12%""}",132955,1,Asia +2024-04-02,90239,3630,"[""Wireless Mouse"", ""Monitor""]",3826.22,"{""loyalty"": ""19%""}",72791,1,Europe +2024-10-31,90240,2802,"[""Charger""]",4555.75,"{""promo"": ""16%""}",96872,1,South America +2023-11-19,90241,4748,"[""Keyboard""]",2883.66,{},138296,1,Europe +2024-04-22,90242,7612,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3412.96,{},231483,0,Europe +2023-02-12,90243,4242,"[""Keyboard"", ""Phone"", ""Tablet""]",3312.02,"{"""": ""10%""}",123577,0,Asia +2023-04-26,90244,329,"[""Charger""]",2485.1,"{"""": ""9%""}",119638,1,Africa +2024-06-07,90245,9133,"[""Tablet"", ""Keyboard""]",3397.25,"{""seasonal"": ""30%""}",262576,1,Asia +2023-08-25,90246,2705,"[""Charger"", ""Headphones""]",1470.92,"{""seasonal"": ""5%""}",60252,1,North America +2024-12-02,90247,9526,"[""Tablet"", ""Phone""]",884.18,{},112791,0,Africa +2023-07-11,90248,1153,"[""Laptop"", ""Keyboard""]",1695.99,{},161848,1,North America +2024-06-10,90249,2939,"[""Phone"", ""Monitor""]",270.51,"{""seasonal"": ""9%""}",98928,1,North America +2024-11-29,90250,1532,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",255.63,{},294309,1,Europe +2023-05-08,90251,4370,"[""Keyboard"", ""Headphones""]",4224.9,"{"""": ""7%""}",295140,1,South America +2024-06-11,90252,2985,"[""Keyboard"", ""Wireless Mouse""]",2009.7,"{"""": ""27%""}",18387,0,Asia +2024-05-24,90253,4824,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3720.11,{},231830,0,Asia +2023-06-12,90254,2445,"[""Headphones"", ""Charger"", ""Laptop""]",1383.79,{},109022,1,South America +2024-04-10,90255,3404,"[""Tablet"", ""Phone""]",1094.83,{},250016,1,South America +2024-12-09,90256,8995,"[""Monitor""]",4253.16,{},94391,0,Africa +2024-08-12,90257,4369,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",3823.01,"{""loyalty"": ""16%""}",185669,0,Asia +2023-08-17,90258,6912,"[""Laptop"", ""Tablet""]",3751.43,{},216871,1,Africa +2024-05-30,90259,3643,"[""Tablet"", ""Keyboard""]",547.5,{},39976,0,Africa +2024-03-14,90260,9745,"[""Charger"", ""Monitor""]",1084.58,{},158185,1,Asia +2024-07-09,90261,3677,"[""Monitor""]",3083.41,"{""promo"": ""25%""}",163718,0,Europe +2024-11-17,90262,6056,"[""Tablet""]",3508.11,{},150181,0,North America +2024-11-01,90263,3696,"[""Laptop"", ""Monitor""]",4188.99,{},266120,1,South America +2024-01-01,90264,2000,"[""Laptop""]",2212.64,{},63571,1,North America +2024-06-22,90265,1524,"[""Headphones"", ""Keyboard""]",4594.49,"{""seasonal"": ""13%""}",244426,1,North America +2023-01-04,90266,2831,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4536.46,{},51151,1,Asia +2023-06-05,90267,456,"[""Keyboard""]",4543.11,"{"""": ""12%""}",264899,1,North America +2023-04-17,90268,2918,"[""Keyboard"", ""Wireless Mouse""]",2027.3,"{""loyalty"": ""17%""}",92317,1,Africa +2024-05-16,90269,5021,"[""Monitor"", ""Headphones"", ""Tablet""]",351.23,{},156176,1,Europe +2024-11-14,90270,4484,"[""Charger"", ""Phone""]",4571.76,{},270004,0,South America +2023-02-03,90271,3313,"[""Laptop"", ""Phone"", ""Tablet""]",4778.88,{},219472,1,Europe +2024-11-09,90272,3471,"[""Tablet""]",1615.11,{},264562,0,North America +2024-05-28,90273,2297,"[""Phone"", ""Charger"", ""Headphones""]",851.83,{},198883,0,South America +2023-06-28,90274,9322,"[""Keyboard"", ""Charger""]",3617.34,"{""seasonal"": ""26%""}",205347,0,South America +2023-06-02,90275,9573,"[""Keyboard""]",4698.68,{},285548,1,Europe +2024-09-29,90276,542,"[""Headphones""]",890.19,{},244780,1,Asia +2023-08-23,90277,3638,"[""Phone"", ""Monitor"", ""Headphones""]",2437.32,{},295290,0,North America +2024-05-04,90278,1839,"[""Charger"", ""Tablet""]",2864.99,"{""seasonal"": ""16%""}",279739,0,Asia +2024-04-16,90279,1113,"[""Laptop""]",1663.43,{},253507,1,Africa +2024-06-12,90280,2172,"[""Laptop"", ""Headphones"", ""Charger""]",642.7,{},73848,1,North America +2024-12-06,90281,6218,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1457.26,"{"""": ""29%""}",151264,1,Asia +2024-02-14,90282,1515,"[""Charger"", ""Headphones""]",4018.13,"{""loyalty"": ""7%""}",271600,0,Africa +2024-02-19,90283,4027,"[""Headphones""]",1809.01,"{""seasonal"": ""28%""}",3192,0,South America +2023-04-22,90284,3402,"[""Phone"", ""Monitor"", ""Keyboard""]",3113.88,"{""promo"": ""7%""}",248226,0,North America +2024-04-14,90285,5086,"[""Phone"", ""Laptop"", ""Charger""]",1949.99,{},218502,0,South America +2023-01-16,90286,557,"[""Wireless Mouse""]",4141.19,{},141063,1,Asia +2023-11-29,90287,5402,"[""Phone""]",510.63,{},228097,0,Asia +2024-12-25,90288,9131,"[""Charger""]",1209.81,{},253203,1,Africa +2023-04-25,90289,9304,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",4801.99,"{""promo"": ""22%""}",18490,0,North America +2024-08-19,90290,3854,"[""Wireless Mouse"", ""Charger""]",1716.64,"{""loyalty"": ""10%""}",192221,1,Europe +2024-03-28,90291,7722,"[""Headphones""]",1884.09,"{"""": ""22%""}",12491,1,Europe +2024-07-13,90292,4941,"[""Charger"", ""Keyboard""]",1222.81,"{"""": ""9%""}",266025,1,Africa +2024-09-25,90293,2497,"[""Laptop"", ""Keyboard""]",4361.9,{},80674,0,Asia +2023-08-11,90294,6577,"[""Monitor""]",117.49,"{""seasonal"": ""26%""}",129345,1,North America +2024-05-01,90295,189,"[""Tablet"", ""Charger"", ""Keyboard""]",3355.24,"{""loyalty"": ""6%""}",10104,1,North America +2023-06-20,90296,2269,"[""Monitor"", ""Headphones"", ""Laptop""]",4463.64,"{"""": ""6%""}",29418,0,North America +2024-08-29,90297,9006,"[""Laptop"", ""Tablet""]",4269.86,{},266789,1,South America +2024-02-17,90298,3478,"[""Keyboard""]",4170.09,"{""seasonal"": ""29%""}",74310,1,North America +2024-06-14,90299,511,"[""Keyboard""]",773.34,"{"""": ""9%""}",84975,1,Asia +2023-06-22,90300,8858,"[""Charger"", ""Tablet""]",1472.39,{},54741,0,Asia +2023-12-03,90301,1000,"[""Headphones"", ""Monitor"", ""Phone""]",3739.75,{},37188,1,North America +2023-11-10,90302,3371,"[""Headphones""]",3514.89,{},289220,0,North America +2023-08-01,90303,9630,"[""Headphones""]",1033.07,{},174301,1,South America +2023-12-17,90304,2196,"[""Keyboard"", ""Tablet"", ""Headphones""]",2057.72,{},183744,0,North America +2023-06-20,90305,7360,"[""Laptop"", ""Monitor"", ""Phone""]",2727.1,"{"""": ""26%""}",257700,1,South America +2023-11-09,90306,4493,"[""Charger""]",1802.28,"{"""": ""16%""}",224268,0,Asia +2024-09-08,90307,7397,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2949.12,"{""loyalty"": ""10%""}",266544,1,South America +2024-05-20,90308,826,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1869.63,"{""loyalty"": ""9%""}",70921,1,Asia +2024-01-01,90309,4634,"[""Keyboard"", ""Phone""]",4454.7,{},210175,0,Africa +2024-04-02,90310,7562,"[""Phone""]",4484.14,{},94387,0,Europe +2023-06-28,90311,6498,"[""Wireless Mouse""]",4016.04,"{""loyalty"": ""25%""}",211385,0,Asia +2024-05-05,90312,40,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1562.55,{},166492,0,Asia +2024-01-14,90313,4431,"[""Phone""]",890.22,{},34590,0,Europe +2024-10-26,90314,662,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2936.06,"{"""": ""10%""}",141376,0,Africa +2024-08-22,90315,1050,"[""Phone""]",3449.58,{},30312,0,Africa +2024-01-31,90316,2186,"[""Keyboard""]",1123.79,{},106599,1,South America +2024-01-23,90317,7106,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",2928.97,"{"""": ""28%""}",97483,0,Africa +2024-04-30,90318,154,"[""Keyboard"", ""Monitor"", ""Charger""]",1074.56,{},54894,1,Asia +2023-05-05,90319,6074,"[""Laptop"", ""Keyboard"", ""Tablet""]",386.2,"{"""": ""13%""}",275403,0,Africa +2024-05-09,90320,5411,"[""Monitor"", ""Laptop"", ""Keyboard""]",818.79,{},70711,0,South America +2024-09-30,90321,6888,"[""Charger""]",667.0,{},284784,0,Asia +2024-12-15,90322,5323,"[""Laptop"", ""Keyboard""]",3728.82,{},183539,0,North America +2023-06-19,90323,50,"[""Phone"", ""Wireless Mouse""]",790.17,"{""loyalty"": ""22%""}",103917,1,Asia +2023-08-01,90324,3175,"[""Charger""]",3904.51,"{""promo"": ""18%""}",114767,0,Asia +2024-02-01,90325,6055,"[""Keyboard""]",1042.04,"{"""": ""8%""}",256232,0,Europe +2023-05-05,90326,5936,"[""Charger"", ""Monitor""]",4527.96,{},111260,1,Africa +2024-06-27,90327,2074,"[""Keyboard"", ""Monitor"", ""Charger""]",1983.74,"{""promo"": ""5%""}",268929,1,Africa +2024-10-04,90328,3955,"[""Wireless Mouse""]",4448.75,"{""promo"": ""26%""}",168425,0,North America +2024-08-07,90329,223,"[""Tablet"", ""Phone""]",4888.58,{},190377,1,North America +2024-09-08,90330,9199,"[""Keyboard"", ""Monitor""]",4552.91,"{"""": ""28%""}",153619,1,Africa +2024-10-20,90331,8057,"[""Wireless Mouse""]",2315.21,{},18819,0,Asia +2024-05-23,90332,5201,"[""Tablet""]",1303.83,"{""seasonal"": ""12%""}",250441,0,Africa +2023-10-16,90333,6416,"[""Headphones"", ""Phone"", ""Tablet""]",3171.43,{},112203,1,North America +2024-05-07,90334,6034,"[""Monitor"", ""Keyboard""]",1854.52,{},90865,1,South America +2023-10-24,90335,2432,"[""Keyboard"", ""Monitor"", ""Tablet""]",1210.26,{},254716,0,Africa +2023-05-14,90336,4716,"[""Headphones""]",3528.81,"{""promo"": ""29%""}",87711,1,Europe +2023-06-14,90337,3372,"[""Tablet"", ""Monitor""]",3938.78,"{""loyalty"": ""5%""}",73090,0,Africa +2024-11-15,90338,3631,"[""Charger"", ""Headphones""]",590.66,"{""seasonal"": ""30%""}",140232,0,Africa +2024-10-22,90339,8695,"[""Laptop"", ""Charger""]",2295.5,{},47905,0,South America +2023-08-05,90340,8419,"[""Laptop"", ""Charger""]",779.38,"{"""": ""28%""}",43050,1,Asia +2023-06-10,90341,7429,"[""Charger"", ""Tablet"", ""Laptop""]",1281.16,{},37902,0,Africa +2024-03-12,90342,2600,"[""Monitor"", ""Keyboard"", ""Phone""]",2518.43,"{""promo"": ""29%""}",140377,0,Europe +2023-11-19,90343,4231,"[""Tablet"", ""Phone""]",2832.08,"{""seasonal"": ""24%""}",234669,0,Asia +2024-12-16,90344,823,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3231.94,"{""seasonal"": ""15%""}",114945,0,South America +2024-06-27,90345,4439,"[""Wireless Mouse"", ""Keyboard""]",3027.07,"{""loyalty"": ""13%""}",113390,0,Africa +2024-07-26,90346,3546,"[""Keyboard"", ""Tablet""]",2146.09,{},236160,0,Europe +2024-12-04,90347,2634,"[""Phone"", ""Monitor""]",572.95,"{""seasonal"": ""6%""}",111376,0,Africa +2023-08-19,90348,1496,"[""Keyboard""]",3234.03,"{""loyalty"": ""20%""}",32651,0,Africa +2023-03-03,90349,2783,"[""Laptop"", ""Charger"", ""Monitor""]",4838.86,{},203787,1,North America +2024-03-03,90350,6414,"[""Charger"", ""Tablet"", ""Headphones""]",2185.96,{},28888,0,North America +2024-01-01,90351,5317,"[""Wireless Mouse"", ""Keyboard""]",1832.46,"{""promo"": ""19%""}",249830,1,Europe +2024-01-15,90352,2379,"[""Keyboard""]",614.35,"{"""": ""24%""}",295340,1,Europe +2023-11-17,90353,7016,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1774.7,{},167950,1,Asia +2024-06-12,90354,2935,"[""Headphones"", ""Laptop"", ""Phone""]",2588.87,"{""seasonal"": ""22%""}",261171,0,Europe +2023-04-14,90355,7288,"[""Headphones""]",4604.86,"{""seasonal"": ""8%""}",181294,1,South America +2023-12-22,90356,6937,"[""Headphones"", ""Keyboard""]",1483.71,{},72905,1,Africa +2024-05-02,90357,3539,"[""Headphones""]",3871.82,{},169160,0,Asia +2023-05-09,90358,1130,"[""Headphones"", ""Charger""]",4671.24,"{"""": ""21%""}",219462,0,Europe +2024-03-08,90359,2448,"[""Headphones"", ""Charger""]",995.11,"{""seasonal"": ""27%""}",151674,0,South America +2023-06-06,90360,5489,"[""Laptop"", ""Headphones""]",4147.21,{},210832,1,Asia +2024-06-01,90361,6370,"[""Laptop"", ""Phone""]",3965.19,"{"""": ""21%""}",148727,0,South America +2023-05-18,90362,5844,"[""Charger""]",371.21,"{"""": ""24%""}",163006,1,North America +2024-12-15,90363,8312,"[""Phone""]",799.89,"{"""": ""20%""}",201113,0,Europe +2024-12-11,90364,8679,"[""Phone""]",4404.15,{},64846,1,South America +2023-07-09,90365,1010,"[""Headphones""]",2075.09,"{""promo"": ""20%""}",117356,1,North America +2023-09-25,90366,2565,"[""Phone"", ""Monitor""]",3392.85,"{""seasonal"": ""13%""}",82638,0,Asia +2023-03-11,90367,6038,"[""Keyboard""]",3738.4,{},65288,1,North America +2023-02-02,90368,991,"[""Headphones"", ""Laptop""]",745.74,"{"""": ""18%""}",223714,1,Europe +2023-11-09,90369,1840,"[""Wireless Mouse"", ""Keyboard""]",1877.62,"{""seasonal"": ""23%""}",194804,1,Europe +2023-11-11,90370,9465,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1368.33,{},258820,0,Africa +2023-10-19,90371,125,"[""Charger""]",867.55,{},62951,0,South America +2024-07-07,90372,1107,"[""Headphones"", ""Laptop""]",255.34,{},37483,0,South America +2023-07-03,90373,1494,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1611.98,{},237451,1,Africa +2023-02-04,90374,3689,"[""Laptop""]",1872.97,"{""loyalty"": ""14%""}",48376,1,Asia +2024-08-05,90375,2847,"[""Headphones"", ""Phone""]",4217.6,{},274295,0,Africa +2024-08-11,90376,7081,"[""Keyboard"", ""Laptop"", ""Charger""]",4247.58,{},68000,1,South America +2023-10-16,90377,349,"[""Charger"", ""Headphones""]",1793.92,"{""seasonal"": ""29%""}",99324,0,North America +2023-05-27,90378,9298,"[""Phone"", ""Monitor"", ""Headphones""]",2434.72,"{"""": ""14%""}",39172,0,Africa +2024-03-20,90379,810,"[""Tablet""]",1166.41,{},51530,1,Asia +2024-01-03,90380,9918,"[""Tablet""]",1300.18,"{""seasonal"": ""6%""}",223871,0,Europe +2023-10-30,90381,5652,"[""Charger"", ""Tablet"", ""Monitor""]",1774.05,"{""loyalty"": ""11%""}",283526,0,South America +2023-10-25,90382,890,"[""Phone"", ""Keyboard""]",3049.12,"{""loyalty"": ""12%""}",185043,1,Europe +2024-09-26,90383,6466,"[""Monitor"", ""Laptop""]",1135.76,"{""seasonal"": ""26%""}",57139,1,Asia +2023-04-13,90384,2207,"[""Laptop""]",3379.06,{},25603,0,Asia +2024-05-02,90385,5523,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1204.22,{},3169,0,Asia +2024-01-11,90386,8332,"[""Phone""]",635.04,{},169696,1,Europe +2023-05-06,90387,3511,"[""Tablet"", ""Charger""]",682.69,"{""loyalty"": ""20%""}",29703,1,North America +2024-03-11,90388,7368,"[""Monitor"", ""Tablet""]",395.54,"{""loyalty"": ""11%""}",85858,0,Asia +2024-03-29,90389,5572,"[""Monitor"", ""Phone""]",1457.22,{},196753,1,Asia +2024-03-23,90390,5840,"[""Keyboard"", ""Monitor""]",219.87,"{"""": ""10%""}",187588,1,Asia +2024-01-23,90391,633,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1669.53,{},154069,1,Asia +2024-11-14,90392,6485,"[""Laptop"", ""Phone""]",4050.81,{},230339,0,Africa +2024-12-22,90393,6866,"[""Phone"", ""Monitor""]",1844.17,{},130632,0,South America +2024-05-22,90394,6389,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",2001.51,"{""promo"": ""15%""}",52540,1,North America +2023-06-04,90395,15,"[""Wireless Mouse"", ""Keyboard""]",2272.38,"{"""": ""16%""}",151233,1,Europe +2024-01-12,90396,8310,"[""Laptop"", ""Headphones""]",634.92,"{""promo"": ""21%""}",25353,1,Asia +2024-08-06,90397,2801,"[""Laptop""]",1593.74,{},138301,0,South America +2024-12-29,90398,6277,"[""Headphones"", ""Laptop""]",162.69,"{""promo"": ""7%""}",285159,0,Africa +2024-01-27,90399,3433,"[""Charger"", ""Laptop"", ""Phone""]",950.1,"{"""": ""22%""}",15653,1,Africa +2024-03-07,90400,1650,"[""Phone"", ""Headphones"", ""Keyboard""]",1178.99,{},267714,1,North America +2023-10-25,90401,439,"[""Charger"", ""Tablet"", ""Keyboard""]",1378.27,"{"""": ""20%""}",227988,1,Europe +2023-07-11,90402,11,"[""Monitor"", ""Phone""]",583.54,{},243413,0,Europe +2024-01-14,90403,3288,"[""Laptop""]",2168.95,"{""promo"": ""8%""}",94210,1,North America +2023-04-08,90404,7916,"[""Tablet""]",2165.95,"{"""": ""11%""}",246284,0,South America +2024-07-28,90405,5234,"[""Monitor"", ""Phone"", ""Keyboard""]",2278.14,{},175031,1,South America +2024-12-11,90406,7936,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2965.76,"{""loyalty"": ""7%""}",180420,0,North America +2024-04-20,90407,3535,"[""Wireless Mouse""]",856.73,"{""promo"": ""5%""}",66046,1,Africa +2024-01-14,90408,5179,"[""Headphones""]",3695.79,"{""promo"": ""7%""}",23821,0,Asia +2023-05-24,90409,5762,"[""Wireless Mouse"", ""Keyboard""]",4208.59,"{"""": ""15%""}",246318,1,Africa +2024-08-13,90410,918,"[""Headphones"", ""Wireless Mouse""]",4067.85,{},1834,0,Asia +2023-08-17,90411,9277,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4200.29,"{""seasonal"": ""20%""}",273546,1,South America +2024-01-21,90412,6793,"[""Monitor"", ""Headphones""]",1838.13,{},140773,0,Africa +2024-11-14,90413,3067,"[""Headphones""]",1305.17,{},146935,1,Europe +2023-10-21,90414,7220,"[""Monitor""]",2861.11,"{""loyalty"": ""29%""}",148007,0,South America +2024-05-05,90415,1867,"[""Phone""]",1541.89,{},182909,0,Asia +2024-09-06,90416,6498,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",4493.2,"{""loyalty"": ""10%""}",105343,0,Europe +2024-01-08,90417,4525,"[""Keyboard"", ""Headphones""]",2071.43,"{"""": ""5%""}",194944,0,North America +2023-07-06,90418,5142,"[""Keyboard""]",3270.67,"{"""": ""14%""}",118656,0,Asia +2023-05-18,90419,5574,"[""Monitor"", ""Wireless Mouse""]",3866.97,"{""seasonal"": ""7%""}",254142,0,Asia +2023-11-03,90420,3416,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3909.16,{},260896,1,North America +2023-10-28,90421,3985,"[""Wireless Mouse""]",1762.87,{},18332,1,North America +2023-12-01,90422,2029,"[""Monitor""]",3277.0,{},252293,0,South America +2024-07-11,90423,3131,"[""Headphones""]",4998.32,"{""loyalty"": ""30%""}",124018,0,North America +2024-10-09,90424,921,"[""Laptop"", ""Phone"", ""Monitor""]",1350.78,{},270909,1,Europe +2024-01-21,90425,5730,"[""Charger""]",3672.83,{},275509,1,Europe +2024-10-31,90426,8504,"[""Wireless Mouse""]",1295.37,"{""seasonal"": ""13%""}",119529,1,North America +2024-02-14,90427,9890,"[""Tablet"", ""Keyboard""]",982.73,{},88702,1,Europe +2024-05-16,90428,9245,"[""Headphones"", ""Laptop""]",2487.05,{},4856,1,Africa +2024-07-01,90429,1854,"[""Laptop"", ""Monitor"", ""Keyboard""]",4361.77,{},198110,0,Europe +2023-08-30,90430,8545,"[""Phone""]",4911.8,"{""promo"": ""13%""}",273400,1,North America +2023-04-16,90431,6254,"[""Phone"", ""Keyboard""]",4327.41,{},240964,1,Asia +2024-06-16,90432,2720,"[""Keyboard"", ""Charger"", ""Phone""]",3169.34,"{"""": ""12%""}",295981,1,Europe +2023-11-17,90433,7145,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1805.71,"{""loyalty"": ""18%""}",165510,0,Europe +2024-06-08,90434,485,"[""Keyboard"", ""Phone"", ""Laptop""]",3450.4,"{""loyalty"": ""21%""}",272016,0,Africa +2024-10-13,90435,247,"[""Monitor"", ""Laptop"", ""Phone""]",94.39,"{"""": ""12%""}",21953,0,Europe +2024-01-20,90436,9944,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2169.86,{},175212,0,South America +2024-11-23,90437,2170,"[""Phone"", ""Keyboard""]",2591.49,{},82326,0,Asia +2024-04-30,90438,5207,"[""Phone"", ""Monitor"", ""Keyboard""]",4970.86,{},101417,1,Asia +2023-04-26,90439,7127,"[""Keyboard"", ""Headphones""]",3560.11,{},64904,1,South America +2024-06-08,90440,9469,"[""Keyboard"", ""Monitor"", ""Charger""]",861.04,{},66396,1,Africa +2024-07-04,90441,6167,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1608.21,"{""promo"": ""17%""}",54261,0,Asia +2024-02-11,90442,5887,"[""Phone""]",485.96,{},95559,1,Europe +2023-10-19,90443,7122,"[""Keyboard""]",3173.16,{},257049,1,North America +2023-01-31,90444,8168,"[""Monitor"", ""Headphones"", ""Keyboard""]",2388.24,"{""promo"": ""25%""}",45309,0,Africa +2023-10-12,90445,4535,"[""Keyboard"", ""Laptop"", ""Monitor""]",248.67,{},259191,1,Asia +2024-02-21,90446,3451,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",4522.03,{},263319,0,South America +2023-06-13,90447,4338,"[""Charger"", ""Laptop""]",4898.54,"{""promo"": ""6%""}",299539,1,South America +2024-11-07,90448,3024,"[""Phone"", ""Charger"", ""Keyboard""]",1580.13,{},99196,1,Asia +2023-07-24,90449,3260,"[""Charger"", ""Laptop""]",1522.02,"{""seasonal"": ""24%""}",72600,1,North America +2023-08-15,90450,4537,"[""Wireless Mouse""]",2937.93,{},6283,1,South America +2024-01-09,90451,2036,"[""Phone"", ""Monitor""]",81.83,"{"""": ""21%""}",148889,0,Europe +2023-05-14,90452,1319,"[""Monitor"", ""Keyboard"", ""Tablet""]",1802.98,"{"""": ""22%""}",177924,0,Asia +2023-09-30,90453,3825,"[""Laptop"", ""Charger""]",1485.5,"{""promo"": ""9%""}",155165,0,Europe +2024-10-14,90454,7079,"[""Charger""]",300.24,"{""seasonal"": ""10%""}",138813,1,Europe +2023-09-29,90455,3488,"[""Monitor"", ""Headphones"", ""Keyboard""]",3988.63,"{""promo"": ""23%""}",1160,1,North America +2024-01-31,90456,7953,"[""Laptop"", ""Charger""]",1819.74,"{""seasonal"": ""25%""}",153666,0,South America +2023-03-20,90457,5785,"[""Charger"", ""Tablet""]",1698.33,{},291350,0,Europe +2023-02-16,90458,124,"[""Laptop"", ""Charger""]",4567.14,"{"""": ""27%""}",227304,0,Europe +2024-03-31,90459,1916,"[""Wireless Mouse"", ""Keyboard""]",2145.54,{},181805,1,Africa +2023-02-01,90460,1399,"[""Monitor"", ""Laptop""]",2770.38,{},10014,0,Africa +2023-06-08,90461,1090,"[""Phone""]",2091.55,"{""promo"": ""22%""}",51272,1,North America +2023-09-23,90462,9886,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2810.3,"{""promo"": ""24%""}",172340,0,South America +2024-09-25,90463,2160,"[""Phone""]",1204.36,{},53581,1,South America +2023-09-24,90464,6851,"[""Monitor""]",2993.44,{},52743,0,Asia +2024-03-05,90465,3174,"[""Headphones"", ""Tablet"", ""Laptop""]",3526.77,{},113098,0,Asia +2023-12-11,90466,2811,"[""Laptop"", ""Tablet""]",318.78,{},11325,0,North America +2024-05-14,90467,7582,"[""Phone"", ""Keyboard"", ""Charger""]",350.55,"{""loyalty"": ""5%""}",82600,0,South America +2023-06-17,90468,5716,"[""Headphones"", ""Keyboard"", ""Monitor""]",3211.98,"{""promo"": ""5%""}",128537,0,South America +2023-11-22,90469,5821,"[""Monitor"", ""Tablet"", ""Phone""]",1218.76,"{""loyalty"": ""27%""}",211333,1,Europe +2024-07-06,90470,4105,"[""Keyboard"", ""Monitor"", ""Charger""]",1470.2,"{""promo"": ""8%""}",187135,1,North America +2024-07-22,90471,890,"[""Keyboard""]",3922.23,{},270240,0,Europe +2024-08-28,90472,3685,"[""Monitor""]",2138.53,"{""seasonal"": ""13%""}",14016,0,Africa +2023-07-22,90473,8159,"[""Laptop"", ""Charger""]",1881.8,{},68149,1,Asia +2024-10-12,90474,6749,"[""Phone"", ""Charger""]",1474.12,"{""promo"": ""11%""}",36269,0,South America +2024-11-03,90475,4067,"[""Tablet"", ""Laptop"", ""Charger""]",2621.51,{},39805,0,North America +2024-09-09,90476,4735,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4406.4,"{""loyalty"": ""13%""}",50732,1,Asia +2023-08-23,90477,531,"[""Headphones""]",2524.8,{},161780,0,Asia +2024-03-03,90478,2886,"[""Keyboard""]",242.03,{},156565,0,Africa +2024-05-15,90479,9978,"[""Charger""]",3993.96,{},290338,1,Europe +2023-08-09,90480,8461,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1755.79,"{""promo"": ""8%""}",84214,1,Africa +2023-10-06,90481,3255,"[""Phone"", ""Headphones""]",982.41,"{""loyalty"": ""25%""}",269352,1,Europe +2023-12-08,90482,4683,"[""Headphones""]",1058.33,"{""loyalty"": ""28%""}",78625,1,Europe +2023-11-22,90483,6038,"[""Headphones"", ""Laptop""]",2327.82,"{""promo"": ""30%""}",106529,1,Africa +2023-07-11,90484,2431,"[""Charger""]",1089.19,"{"""": ""29%""}",160847,1,Asia +2023-09-12,90485,3572,"[""Laptop"", ""Wireless Mouse""]",4296.98,"{""promo"": ""13%""}",250918,0,Africa +2024-02-07,90486,8774,"[""Charger"", ""Monitor"", ""Phone""]",2563.73,"{"""": ""14%""}",39279,0,South America +2024-01-12,90487,8202,"[""Tablet"", ""Laptop""]",1336.15,{},54113,0,Asia +2024-01-04,90488,368,"[""Phone""]",3114.34,"{""seasonal"": ""23%""}",261880,0,Africa +2024-04-07,90489,4702,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4833.65,"{""promo"": ""9%""}",291554,1,Africa +2024-07-08,90490,5870,"[""Charger""]",888.08,"{""loyalty"": ""28%""}",213753,0,South America +2023-12-29,90491,8518,"[""Keyboard"", ""Wireless Mouse""]",408.12,{},227620,1,Africa +2023-10-05,90492,7942,"[""Headphones""]",4840.15,{},176459,0,Asia +2024-07-04,90493,3271,"[""Laptop"", ""Wireless Mouse""]",1969.04,"{"""": ""6%""}",213007,1,Africa +2023-09-18,90494,7641,"[""Tablet"", ""Monitor"", ""Charger""]",3393.45,"{""promo"": ""19%""}",271133,1,Africa +2024-01-12,90495,7730,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3320.6,"{""promo"": ""23%""}",14855,1,South America +2024-08-25,90496,3711,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4300.43,{},233587,0,Asia +2023-02-27,90497,2246,"[""Keyboard""]",2378.02,"{""loyalty"": ""23%""}",160520,0,Africa +2023-10-05,90498,6844,"[""Tablet"", ""Wireless Mouse""]",2507.4,{},186959,0,North America +2024-10-08,90499,75,"[""Charger"", ""Tablet""]",598.58,{},49646,1,Europe +2023-07-30,90500,4604,"[""Monitor""]",3435.56,"{""loyalty"": ""7%""}",192285,0,North America +2024-02-08,90501,7824,"[""Charger""]",3308.51,{},93792,0,Africa +2024-10-01,90502,7684,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1211.3,"{""loyalty"": ""25%""}",259405,0,Europe +2024-08-05,90503,8443,"[""Tablet""]",4265.04,{},72009,0,Asia +2023-11-15,90504,112,"[""Phone"", ""Monitor""]",3410.42,{},112041,1,North America +2023-04-29,90505,6929,"[""Laptop""]",218.39,{},237893,1,Europe +2023-06-08,90506,7768,"[""Headphones""]",762.93,{},292754,1,Europe +2024-03-14,90507,1392,"[""Laptop"", ""Keyboard""]",4093.85,"{"""": ""26%""}",286734,1,Africa +2024-03-12,90508,787,"[""Charger""]",3657.46,"{""loyalty"": ""24%""}",185019,0,Africa +2024-11-02,90509,8385,"[""Headphones""]",4296.76,{},123505,0,South America +2024-10-16,90510,6849,"[""Laptop"", ""Monitor""]",4476.96,{},228568,1,Africa +2023-01-30,90511,4937,"[""Keyboard"", ""Charger""]",665.23,"{""seasonal"": ""7%""}",84951,0,North America +2024-03-30,90512,3384,"[""Phone""]",2089.12,"{""promo"": ""26%""}",291117,1,North America +2023-04-15,90513,6534,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4607.25,"{""seasonal"": ""7%""}",139950,0,North America +2024-09-09,90514,9431,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3471.25,{},82631,0,Asia +2024-04-01,90515,3738,"[""Phone""]",223.76,"{""promo"": ""17%""}",270856,1,Asia +2023-06-10,90516,1446,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4210.61,{},25638,1,South America +2023-03-12,90517,9958,"[""Phone"", ""Charger""]",429.41,"{"""": ""5%""}",127138,1,Asia +2024-10-07,90518,748,"[""Laptop"", ""Wireless Mouse""]",4012.64,"{"""": ""23%""}",262483,1,South America +2023-09-29,90519,5231,"[""Monitor"", ""Laptop"", ""Keyboard""]",616.7,{},3771,0,Asia +2023-07-26,90520,6440,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1955.77,{},214184,1,South America +2023-07-25,90521,5886,"[""Charger"", ""Phone""]",4441.6,{},140370,0,South America +2024-10-05,90522,5229,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",807.64,"{"""": ""8%""}",50343,0,Asia +2024-06-21,90523,6011,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3838.45,{},112653,0,Europe +2024-10-17,90524,4686,"[""Keyboard"", ""Tablet""]",4826.41,"{""loyalty"": ""27%""}",55173,0,Europe +2024-02-19,90525,3861,"[""Wireless Mouse""]",877.36,"{""promo"": ""25%""}",184324,0,Asia +2024-10-20,90526,3174,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4779.06,{},5660,0,Europe +2024-11-26,90527,2150,"[""Charger"", ""Headphones""]",4105.57,"{""promo"": ""18%""}",245335,0,Europe +2023-06-10,90528,1468,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2424.02,"{""seasonal"": ""25%""}",35065,1,South America +2023-08-24,90529,4634,"[""Monitor"", ""Headphones""]",2671.51,"{"""": ""29%""}",167424,0,Europe +2024-10-02,90530,4478,"[""Phone"", ""Monitor"", ""Keyboard""]",3542.95,{},157290,1,North America +2023-03-25,90531,2238,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",602.37,"{"""": ""21%""}",16518,1,North America +2024-12-10,90532,3649,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4465.33,{},220703,1,North America +2023-04-14,90533,3346,"[""Monitor""]",84.61,"{""loyalty"": ""29%""}",21987,1,Europe +2023-08-01,90534,1290,"[""Monitor""]",964.06,{},50953,1,Asia +2024-05-22,90535,756,"[""Monitor"", ""Laptop""]",559.68,{},38877,1,North America +2024-08-29,90536,9669,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1160.43,"{""seasonal"": ""26%""}",65759,0,South America +2023-12-18,90537,531,"[""Tablet"", ""Keyboard"", ""Laptop""]",2449.09,"{""seasonal"": ""17%""}",207598,0,Asia +2024-11-08,90538,4257,"[""Phone""]",1214.72,"{""loyalty"": ""12%""}",91905,1,Africa +2023-05-29,90539,717,"[""Tablet""]",3694.38,{},48064,0,Africa +2023-04-19,90540,9722,"[""Charger"", ""Monitor"", ""Tablet""]",61.04,{},76369,1,South America +2024-08-09,90541,9452,"[""Keyboard"", ""Monitor"", ""Phone""]",1319.42,"{""promo"": ""21%""}",23045,1,Africa +2023-10-15,90542,3921,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2606.32,"{"""": ""27%""}",52588,1,North America +2024-09-01,90543,7039,"[""Tablet""]",3182.62,{},208265,0,Europe +2024-11-05,90544,1836,"[""Laptop""]",1321.0,"{""seasonal"": ""6%""}",268962,1,Africa +2024-07-17,90545,5632,"[""Laptop"", ""Charger"", ""Phone""]",3002.4,"{""loyalty"": ""15%""}",223644,0,North America +2024-11-04,90546,6818,"[""Wireless Mouse"", ""Monitor""]",1208.6,"{""loyalty"": ""15%""}",246496,0,North America +2024-04-25,90547,7185,"[""Headphones"", ""Keyboard"", ""Laptop""]",214.11,{},61414,0,Europe +2024-03-01,90548,3318,"[""Keyboard"", ""Monitor""]",2125.06,{},80916,0,North America +2023-08-19,90549,8047,"[""Charger"", ""Tablet"", ""Laptop""]",2895.41,{},273523,1,North America +2023-04-17,90550,5324,"[""Phone""]",2043.7,"{""loyalty"": ""16%""}",140187,1,Africa +2023-09-16,90551,145,"[""Charger""]",3700.57,{},42522,0,Europe +2024-09-01,90552,8754,"[""Laptop""]",1368.54,{},98118,1,North America +2024-05-15,90553,6215,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",1524.48,{},155369,0,Africa +2024-01-01,90554,1137,"[""Charger""]",555.34,{},94365,0,South America +2023-07-21,90555,9345,"[""Laptop""]",1463.47,"{""seasonal"": ""12%""}",170814,1,Europe +2024-05-02,90556,6164,"[""Keyboard"", ""Headphones""]",647.46,{},277980,0,North America +2024-09-01,90557,6559,"[""Tablet"", ""Headphones"", ""Phone""]",4358.21,{},11363,1,South America +2023-04-18,90558,3497,"[""Tablet"", ""Laptop"", ""Phone""]",3539.54,"{""promo"": ""6%""}",24391,0,Asia +2023-05-21,90559,2164,"[""Monitor"", ""Headphones""]",2857.48,{},183327,1,Asia +2024-08-07,90560,7078,"[""Phone"", ""Laptop"", ""Headphones""]",1985.02,{},253915,1,North America +2023-02-18,90561,4256,"[""Charger""]",4134.05,"{"""": ""19%""}",229508,1,Africa +2023-02-07,90562,6480,"[""Keyboard"", ""Laptop"", ""Phone""]",4504.05,{},223859,1,Europe +2023-09-13,90563,4713,"[""Laptop"", ""Monitor"", ""Keyboard""]",4790.82,"{""seasonal"": ""24%""}",96130,1,Europe +2024-01-13,90564,748,"[""Headphones"", ""Monitor""]",1400.31,"{""seasonal"": ""14%""}",194894,1,Africa +2023-05-23,90565,4016,"[""Keyboard""]",4109.55,"{""promo"": ""6%""}",100525,1,North America +2023-02-19,90566,4122,"[""Tablet""]",4791.7,{},241861,0,Asia +2024-11-24,90567,730,"[""Laptop"", ""Monitor"", ""Headphones""]",1580.77,"{""seasonal"": ""15%""}",265155,0,North America +2023-04-24,90568,7221,"[""Phone"", ""Tablet""]",929.73,{},197249,1,Europe +2024-02-19,90569,4892,"[""Phone"", ""Headphones"", ""Charger""]",3651.42,"{""loyalty"": ""14%""}",293667,0,Africa +2024-04-04,90570,3434,"[""Laptop"", ""Charger"", ""Keyboard""]",1702.51,"{""loyalty"": ""10%""}",221069,1,Asia +2024-07-23,90571,7440,"[""Keyboard""]",2469.15,{},58034,0,Africa +2024-07-18,90572,3287,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2041.21,{},29577,0,Asia +2023-09-18,90573,9121,"[""Keyboard"", ""Headphones"", ""Laptop""]",2099.55,"{""loyalty"": ""14%""}",106666,0,Africa +2024-06-23,90574,8212,"[""Headphones"", ""Charger"", ""Tablet""]",3050.52,"{"""": ""5%""}",139941,1,Africa +2023-08-03,90575,3174,"[""Tablet""]",3504.63,"{""seasonal"": ""9%""}",271192,1,South America +2023-08-08,90576,4705,"[""Wireless Mouse""]",3095.06,{},190279,0,Europe +2023-07-08,90577,2939,"[""Laptop"", ""Tablet"", ""Keyboard""]",4711.93,"{""loyalty"": ""29%""}",121700,0,South America +2024-02-26,90578,4054,"[""Keyboard"", ""Tablet""]",1940.36,{},151679,1,Africa +2023-02-03,90579,2494,"[""Tablet"", ""Laptop"", ""Headphones""]",200.63,"{""loyalty"": ""8%""}",148231,1,Africa +2023-12-18,90580,8949,"[""Headphones"", ""Charger""]",4112.09,"{""loyalty"": ""18%""}",210268,0,Africa +2024-06-10,90581,5949,"[""Charger"", ""Keyboard"", ""Laptop""]",96.97,{},196454,0,Africa +2023-07-14,90582,4368,"[""Charger"", ""Wireless Mouse""]",1900.55,"{""seasonal"": ""24%""}",13381,1,Africa +2024-12-21,90583,6583,"[""Phone""]",2173.59,"{""loyalty"": ""28%""}",4821,0,Africa +2023-12-21,90584,9021,"[""Phone"", ""Charger""]",1798.91,{},82259,0,North America +2023-01-20,90585,3643,"[""Tablet"", ""Keyboard""]",561.8,"{"""": ""16%""}",236270,1,Europe +2023-01-19,90586,4829,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",684.06,"{""loyalty"": ""12%""}",56009,0,North America +2023-04-01,90587,8618,"[""Charger"", ""Headphones"", ""Tablet""]",1217.51,"{""seasonal"": ""23%""}",127720,0,South America +2023-10-07,90588,4932,"[""Laptop"", ""Keyboard"", ""Charger""]",2009.98,{},50648,0,Europe +2023-11-12,90589,4854,"[""Headphones""]",3018.41,{},274194,1,Europe +2023-07-13,90590,3102,"[""Wireless Mouse""]",576.54,{},249687,1,Asia +2024-01-12,90591,1401,"[""Headphones""]",2144.83,"{""loyalty"": ""15%""}",225290,1,Africa +2023-12-09,90592,3232,"[""Tablet""]",4070.77,{},226354,1,Africa +2024-01-09,90593,1590,"[""Laptop"", ""Tablet""]",4986.12,"{""loyalty"": ""18%""}",163603,1,South America +2024-08-12,90594,7799,"[""Monitor""]",516.12,{},272336,1,North America +2024-01-30,90595,2764,"[""Phone"", ""Keyboard""]",3193.71,{},134353,0,Europe +2023-06-12,90596,9194,"[""Laptop""]",2716.66,"{""promo"": ""29%""}",108735,0,Africa +2024-11-10,90597,9509,"[""Monitor"", ""Phone""]",2015.39,{},34520,0,South America +2023-09-19,90598,2619,"[""Laptop""]",531.21,{},149957,0,Europe +2023-04-30,90599,4898,"[""Phone"", ""Tablet"", ""Monitor""]",1197.31,"{""seasonal"": ""17%""}",108404,0,Asia +2024-01-20,90600,1164,"[""Laptop""]",2062.42,"{""promo"": ""20%""}",128898,0,Africa +2023-10-18,90601,9721,"[""Phone"", ""Wireless Mouse""]",3525.18,{},272080,1,Africa +2024-04-23,90602,1402,"[""Wireless Mouse"", ""Keyboard""]",1329.73,{},13649,0,North America +2023-05-04,90603,8490,"[""Charger"", ""Monitor"", ""Headphones""]",4473.98,"{"""": ""26%""}",296551,0,Europe +2023-01-30,90604,3272,"[""Headphones""]",1589.57,{},42189,0,Africa +2024-08-09,90605,278,"[""Headphones"", ""Phone"", ""Charger""]",1252.42,{},256458,0,North America +2024-08-04,90606,2895,"[""Monitor"", ""Charger""]",2331.98,"{""seasonal"": ""15%""}",290044,0,South America +2024-03-07,90607,2659,"[""Keyboard""]",3954.2,{},188655,1,Africa +2024-10-22,90608,6480,"[""Laptop"", ""Keyboard"", ""Tablet""]",2153.64,{},248410,0,Europe +2023-07-22,90609,8149,"[""Wireless Mouse"", ""Monitor""]",3239.31,{},91028,0,South America +2024-12-07,90610,4157,"[""Monitor"", ""Keyboard""]",1921.41,{},161993,0,North America +2024-04-30,90611,537,"[""Monitor"", ""Keyboard""]",3724.9,{},95756,1,Asia +2024-04-22,90612,6022,"[""Wireless Mouse""]",845.88,{},180147,1,Africa +2023-05-08,90613,3162,"[""Phone""]",2149.75,{},199201,0,South America +2024-12-21,90614,5961,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",775.29,"{""loyalty"": ""24%""}",223330,0,Asia +2023-09-30,90615,3398,"[""Keyboard""]",3601.95,"{""seasonal"": ""14%""}",99974,1,Europe +2024-12-10,90616,1158,"[""Keyboard""]",423.76,"{"""": ""6%""}",152095,0,North America +2023-04-12,90617,74,"[""Laptop"", ""Monitor""]",1137.76,{},248781,1,South America +2024-12-04,90618,1873,"[""Wireless Mouse"", ""Tablet""]",166.44,"{""seasonal"": ""6%""}",184540,0,South America +2023-12-10,90619,6310,"[""Charger"", ""Monitor""]",1383.63,{},289257,0,South America +2024-04-21,90620,2062,"[""Headphones"", ""Tablet"", ""Keyboard""]",3445.27,"{""seasonal"": ""11%""}",2888,0,North America +2024-09-17,90621,7708,"[""Headphones"", ""Laptop""]",233.68,"{""seasonal"": ""20%""}",126819,0,Europe +2024-03-14,90622,8123,"[""Charger""]",4323.41,"{"""": ""8%""}",97666,1,Europe +2024-02-02,90623,6887,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4766.81,{},108181,1,South America +2024-10-16,90624,1401,"[""Keyboard"", ""Headphones""]",829.8,"{""seasonal"": ""23%""}",13669,1,Europe +2023-01-19,90625,6562,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",177.54,"{""promo"": ""15%""}",82788,0,Europe +2023-05-31,90626,9365,"[""Tablet""]",1609.15,{},152587,1,Africa +2023-11-12,90627,648,"[""Phone"", ""Laptop"", ""Charger""]",1064.98,{},96633,0,Europe +2024-05-26,90628,5515,"[""Tablet"", ""Charger"", ""Phone""]",1589.36,{},117418,1,Africa +2023-10-10,90629,5579,"[""Laptop"", ""Charger""]",1601.06,{},294484,1,North America +2023-01-06,90630,9986,"[""Keyboard"", ""Laptop"", ""Phone""]",3090.28,"{""promo"": ""24%""}",229549,1,South America +2024-10-04,90631,9712,"[""Phone""]",4867.39,{},56630,1,Africa +2024-02-22,90632,2436,"[""Phone"", ""Headphones"", ""Keyboard""]",567.8,"{""seasonal"": ""10%""}",157899,1,North America +2024-04-21,90633,2621,"[""Charger"", ""Monitor""]",3462.94,"{"""": ""18%""}",250802,0,South America +2024-03-24,90634,1791,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2273.05,"{""seasonal"": ""30%""}",77554,0,Africa +2023-08-14,90635,7570,"[""Laptop"", ""Keyboard""]",3227.84,{},286887,1,Asia +2024-06-09,90636,5874,"[""Headphones""]",1517.55,{},222093,0,South America +2024-10-25,90637,6757,"[""Headphones""]",4502.82,{},157056,0,Africa +2024-10-06,90638,1811,"[""Laptop"", ""Tablet""]",3557.23,"{"""": ""23%""}",237374,1,North America +2023-11-12,90639,968,"[""Laptop""]",4420.2,"{"""": ""15%""}",296210,1,Africa +2024-03-05,90640,6350,"[""Wireless Mouse"", ""Headphones""]",2137.66,"{"""": ""30%""}",189183,0,North America +2024-03-14,90641,7608,"[""Monitor"", ""Keyboard""]",419.7,"{""loyalty"": ""26%""}",264796,0,Asia +2024-01-19,90642,6291,"[""Laptop""]",1458.78,"{""promo"": ""9%""}",125458,0,Europe +2023-04-04,90643,2089,"[""Charger"", ""Phone"", ""Tablet""]",3377.14,{},237818,1,North America +2023-03-24,90644,1807,"[""Tablet"", ""Keyboard"", ""Charger""]",1410.08,{},247734,1,Africa +2024-02-13,90645,5788,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",1894.66,"{""loyalty"": ""15%""}",234541,1,South America +2023-05-05,90646,1284,"[""Headphones""]",416.51,{},183118,1,South America +2023-09-14,90647,3229,"[""Headphones"", ""Keyboard""]",1558.69,"{""seasonal"": ""24%""}",40912,1,Africa +2024-07-27,90648,1006,"[""Tablet""]",4280.04,"{""loyalty"": ""21%""}",119690,1,Europe +2024-07-03,90649,4845,"[""Monitor""]",1735.57,{},27673,0,South America +2023-09-01,90650,405,"[""Phone"", ""Wireless Mouse""]",354.5,"{"""": ""15%""}",65400,0,Asia +2023-01-27,90651,998,"[""Keyboard"", ""Wireless Mouse""]",2939.09,{},258117,1,Africa +2024-07-05,90652,6183,"[""Charger""]",3409.68,"{""promo"": ""5%""}",78533,0,Asia +2023-10-05,90653,5685,"[""Phone"", ""Charger""]",1854.85,{},290080,1,South America +2024-10-22,90654,1387,"[""Laptop"", ""Headphones"", ""Phone""]",3004.05,"{"""": ""20%""}",261615,0,South America +2024-10-14,90655,7863,"[""Laptop"", ""Tablet""]",659.54,{},283543,1,Asia +2024-12-05,90656,4924,"[""Laptop"", ""Tablet"", ""Monitor""]",4261.19,"{""seasonal"": ""9%""}",49091,0,Africa +2023-09-08,90657,4094,"[""Headphones""]",1332.4,{},201098,0,Africa +2024-05-25,90658,290,"[""Headphones"", ""Monitor"", ""Phone""]",2390.1,{},175628,1,Asia +2023-12-11,90659,8630,"[""Keyboard"", ""Tablet"", ""Monitor""]",610.17,"{""promo"": ""5%""}",106745,0,Asia +2024-06-09,90660,7427,"[""Monitor"", ""Tablet""]",3957.99,{},272760,1,North America +2024-09-05,90661,1163,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2371.7,"{""seasonal"": ""8%""}",85944,1,South America +2024-06-16,90662,8366,"[""Keyboard"", ""Headphones"", ""Monitor""]",1881.81,{},277158,0,Europe +2023-04-18,90663,9577,"[""Monitor"", ""Keyboard""]",3062.27,"{""seasonal"": ""5%""}",174655,0,Asia +2024-05-25,90664,2309,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",541.19,"{"""": ""20%""}",297803,0,South America +2023-11-30,90665,9880,"[""Wireless Mouse""]",1839.62,"{""promo"": ""17%""}",202863,1,Asia +2023-01-22,90666,6913,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1795.65,{},279892,1,Europe +2023-04-27,90667,5018,"[""Headphones"", ""Monitor""]",2263.88,"{""loyalty"": ""10%""}",262458,1,Europe +2023-09-03,90668,1486,"[""Charger"", ""Headphones""]",3075.27,{},248475,1,Africa +2023-12-18,90669,5222,"[""Wireless Mouse""]",1161.54,{},272801,0,South America +2023-06-25,90670,8947,"[""Charger"", ""Tablet""]",1552.82,{},12553,1,Europe +2024-04-30,90671,4348,"[""Laptop"", ""Monitor"", ""Phone""]",3489.07,"{"""": ""14%""}",199582,0,Asia +2023-01-12,90672,2976,"[""Headphones"", ""Phone""]",4820.49,{},183129,1,Europe +2023-05-26,90673,1777,"[""Phone"", ""Monitor"", ""Tablet""]",1907.48,{},21809,0,Asia +2024-05-12,90674,1487,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1908.95,{},147700,0,South America +2024-01-04,90675,4226,"[""Keyboard""]",4770.98,"{""promo"": ""23%""}",221766,1,Africa +2023-11-15,90676,1873,"[""Monitor"", ""Charger""]",2599.74,{},45864,1,Europe +2023-01-28,90677,7534,"[""Wireless Mouse""]",3074.04,"{""loyalty"": ""17%""}",12643,1,Asia +2023-02-03,90678,6941,"[""Tablet"", ""Laptop"", ""Charger""]",3015.58,"{""loyalty"": ""16%""}",117827,0,South America +2023-08-28,90679,5819,"[""Monitor"", ""Tablet""]",4562.35,"{""loyalty"": ""27%""}",56472,1,Europe +2023-04-27,90680,8026,"[""Phone"", ""Charger""]",2133.46,{},270729,1,South America +2023-10-20,90681,3449,"[""Laptop"", ""Keyboard"", ""Tablet""]",1494.15,{},15655,0,Africa +2024-09-10,90682,9915,"[""Wireless Mouse""]",2237.49,{},211568,1,Europe +2024-06-17,90683,4893,"[""Phone"", ""Keyboard""]",52.1,"{""loyalty"": ""14%""}",7748,1,Europe +2024-09-16,90684,8488,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2209.86,"{""loyalty"": ""24%""}",17281,0,North America +2023-08-19,90685,9919,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",2957.51,{},222945,1,North America +2024-06-23,90686,7603,"[""Tablet""]",1885.48,{},223466,1,North America +2024-10-22,90687,5771,"[""Headphones""]",774.75,{},106155,0,South America +2023-05-27,90688,8427,"[""Wireless Mouse"", ""Laptop""]",4964.03,{},173069,1,South America +2024-06-18,90689,7957,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4361.97,"{""promo"": ""15%""}",243151,1,Europe +2024-11-05,90690,2362,"[""Wireless Mouse"", ""Headphones""]",1944.91,{},229827,0,Europe +2023-02-18,90691,9860,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",487.21,"{""promo"": ""12%""}",211336,1,Europe +2023-07-19,90692,6238,"[""Tablet""]",2787.16,{},84084,0,Asia +2024-08-11,90693,4068,"[""Wireless Mouse""]",1015.89,"{""loyalty"": ""11%""}",217938,0,South America +2024-10-04,90694,8422,"[""Charger"", ""Tablet"", ""Laptop""]",3876.3,{},271173,1,South America +2024-06-30,90695,6932,"[""Keyboard""]",2012.43,{},265297,0,South America +2024-05-29,90696,6256,"[""Headphones"", ""Tablet""]",134.36,"{""promo"": ""27%""}",279532,0,Europe +2024-10-07,90697,1184,"[""Charger""]",3016.32,"{""promo"": ""13%""}",116487,1,Asia +2024-06-26,90698,1066,"[""Tablet""]",4701.51,"{"""": ""23%""}",212260,0,South America +2024-03-22,90699,8115,"[""Phone""]",887.05,{},205755,1,Africa +2023-12-04,90700,785,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3699.05,"{""promo"": ""24%""}",81638,0,Asia +2023-05-09,90701,6217,"[""Phone""]",2377.74,"{""promo"": ""22%""}",199108,0,South America +2023-03-20,90702,2275,"[""Headphones"", ""Tablet"", ""Keyboard""]",1602.68,"{"""": ""7%""}",95400,1,Europe +2023-03-19,90703,1180,"[""Phone"", ""Charger"", ""Tablet""]",4390.89,"{""loyalty"": ""18%""}",74761,0,South America +2023-05-09,90704,7015,"[""Keyboard"", ""Laptop""]",541.17,{},132726,1,South America +2024-10-22,90705,3424,"[""Laptop"", ""Charger"", ""Tablet""]",3948.5,{},158598,1,Europe +2023-09-08,90706,8670,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",1758.59,{},162862,1,Europe +2024-10-23,90707,5237,"[""Headphones"", ""Wireless Mouse""]",2068.06,{},192732,0,North America +2023-07-18,90708,6898,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4138.34,{},131870,1,Asia +2024-01-29,90709,6110,"[""Phone""]",1062.37,{},292513,1,Europe +2024-08-07,90710,6671,"[""Tablet"", ""Keyboard"", ""Monitor""]",2326.0,{},124220,0,Europe +2024-06-04,90711,108,"[""Tablet""]",3411.23,"{""seasonal"": ""13%""}",269240,0,Africa +2023-11-16,90712,3235,"[""Tablet""]",4448.38,"{""seasonal"": ""27%""}",249901,1,Europe +2024-01-30,90713,2599,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1244.74,"{""seasonal"": ""5%""}",271614,0,Asia +2024-04-08,90714,9604,"[""Phone""]",3160.72,{},275314,1,South America +2024-05-20,90715,1381,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",306.72,{},248156,1,Asia +2024-04-12,90716,688,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4240.88,"{""loyalty"": ""19%""}",242913,0,Africa +2024-10-11,90717,8895,"[""Headphones"", ""Monitor"", ""Tablet""]",1036.93,"{""loyalty"": ""8%""}",78112,0,South America +2024-11-22,90718,9487,"[""Phone"", ""Charger""]",1741.37,"{""loyalty"": ""15%""}",117470,1,Asia +2023-07-01,90719,1309,"[""Headphones"", ""Wireless Mouse""]",97.23,{},75176,1,South America +2023-12-30,90720,283,"[""Tablet"", ""Headphones""]",1415.1,{},121437,0,South America +2023-02-18,90721,1157,"[""Keyboard"", ""Phone""]",3758.62,"{""promo"": ""27%""}",270152,1,North America +2024-04-06,90722,5629,"[""Wireless Mouse""]",3123.3,{},26132,0,Asia +2023-05-08,90723,8435,"[""Monitor"", ""Phone""]",1606.93,"{""loyalty"": ""10%""}",109944,1,South America +2023-07-06,90724,6005,"[""Phone""]",1088.28,"{""loyalty"": ""29%""}",23545,0,Africa +2023-04-08,90725,4527,"[""Monitor"", ""Phone"", ""Keyboard""]",2369.71,"{""loyalty"": ""29%""}",94154,1,Asia +2023-08-01,90726,6861,"[""Phone"", ""Wireless Mouse""]",131.78,{},138033,1,Asia +2023-12-22,90727,4303,"[""Headphones""]",4382.2,"{""loyalty"": ""17%""}",115431,1,North America +2023-05-29,90728,1235,"[""Laptop""]",3510.96,"{""loyalty"": ""21%""}",36050,0,Europe +2024-01-06,90729,9405,"[""Tablet"", ""Headphones""]",2425.29,"{""seasonal"": ""14%""}",80990,1,North America +2024-11-13,90730,2828,"[""Monitor""]",535.06,{},151771,0,South America +2024-12-03,90731,3883,"[""Phone"", ""Wireless Mouse"", ""Charger""]",1306.75,"{""promo"": ""13%""}",114867,0,North America +2024-08-22,90732,4274,"[""Headphones"", ""Phone""]",2140.07,"{""seasonal"": ""14%""}",247967,1,Asia +2024-01-31,90733,7130,"[""Tablet"", ""Phone"", ""Monitor""]",274.71,{},224289,0,Africa +2023-10-15,90734,7310,"[""Phone"", ""Laptop""]",2894.83,{},66509,0,Europe +2024-07-20,90735,8654,"[""Phone""]",189.51,{},239460,1,Asia +2024-10-14,90736,8745,"[""Wireless Mouse"", ""Monitor""]",217.65,"{""loyalty"": ""8%""}",20462,0,South America +2024-10-08,90737,7705,"[""Phone"", ""Keyboard"", ""Laptop""]",540.47,"{"""": ""23%""}",242538,0,Europe +2023-01-29,90738,581,"[""Charger"", ""Laptop"", ""Headphones""]",4589.2,{},186325,1,Asia +2023-06-18,90739,2438,"[""Monitor"", ""Laptop""]",4446.51,{},285939,1,Asia +2023-11-17,90740,3745,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2726.84,"{""loyalty"": ""11%""}",242027,1,North America +2024-02-01,90741,9638,"[""Headphones"", ""Laptop""]",2268.75,{},232460,1,North America +2024-09-09,90742,7873,"[""Monitor"", ""Charger""]",1669.64,{},29785,1,Europe +2023-04-24,90743,1675,"[""Keyboard""]",3559.48,"{"""": ""16%""}",21523,0,North America +2023-09-02,90744,6113,"[""Phone"", ""Laptop"", ""Charger""]",4553.12,{},103448,0,Africa +2023-02-14,90745,6319,"[""Monitor"", ""Keyboard""]",4609.05,{},298018,0,North America +2023-11-27,90746,9073,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4524.45,{},238762,1,North America +2024-12-10,90747,3201,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3360.05,{},255923,0,North America +2023-04-27,90748,6456,"[""Keyboard"", ""Headphones""]",1161.38,"{""seasonal"": ""15%""}",155256,0,North America +2024-01-11,90749,5274,"[""Keyboard"", ""Monitor""]",3788.2,"{""loyalty"": ""12%""}",57806,0,Africa +2024-11-23,90750,6225,"[""Headphones"", ""Monitor"", ""Tablet""]",4828.74,"{""seasonal"": ""10%""}",278928,0,Europe +2023-05-04,90751,9492,"[""Keyboard""]",2641.6,{},291444,0,South America +2023-08-17,90752,4002,"[""Laptop"", ""Keyboard"", ""Monitor""]",2244.85,{},232617,0,Asia +2024-04-11,90753,1028,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1066.46,{},197051,0,Africa +2024-02-15,90754,9707,"[""Tablet"", ""Charger"", ""Keyboard""]",2378.29,{},195692,0,Africa +2023-03-06,90755,3847,"[""Charger"", ""Monitor""]",1346.41,{},263452,0,North America +2023-08-25,90756,6218,"[""Laptop""]",2544.35,"{""seasonal"": ""20%""}",116183,0,South America +2023-03-31,90757,6998,"[""Wireless Mouse"", ""Tablet""]",3607.01,{},292837,0,Europe +2023-04-20,90758,1546,"[""Wireless Mouse""]",3980.54,{},241877,0,South America +2023-12-15,90759,9334,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",113.07,{},31365,1,North America +2024-03-03,90760,9780,"[""Headphones"", ""Phone""]",1487.55,{},160627,1,North America +2024-04-12,90761,1021,"[""Wireless Mouse""]",2344.78,"{""promo"": ""28%""}",247344,0,South America +2024-01-29,90762,2794,"[""Laptop"", ""Monitor""]",654.47,{},84135,1,South America +2024-07-06,90763,8901,"[""Keyboard""]",2580.56,"{"""": ""13%""}",263144,1,South America +2023-07-29,90764,1462,"[""Headphones""]",1512.2,{},246349,0,South America +2023-05-11,90765,3421,"[""Charger"", ""Phone""]",3995.7,{},237985,1,Africa +2024-08-21,90766,6135,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2113.43,{},139425,1,Africa +2024-12-30,90767,8854,"[""Headphones"", ""Keyboard""]",2340.33,{},165831,0,North America +2024-11-21,90768,194,"[""Phone"", ""Monitor""]",1837.2,"{""seasonal"": ""8%""}",16705,1,South America +2023-07-31,90769,6952,"[""Headphones"", ""Phone"", ""Keyboard""]",1514.48,"{""seasonal"": ""17%""}",261019,0,Asia +2023-07-16,90770,2373,"[""Phone"", ""Charger""]",126.79,{},152580,0,North America +2024-10-04,90771,1327,"[""Charger""]",1759.49,"{""seasonal"": ""19%""}",31346,0,Europe +2024-08-19,90772,5744,"[""Headphones""]",756.75,"{"""": ""21%""}",252541,0,Europe +2024-05-08,90773,5145,"[""Keyboard"", ""Laptop""]",3385.29,{},209554,0,Europe +2024-03-30,90774,2578,"[""Charger""]",1096.0,{},42731,1,Africa +2023-08-05,90775,2667,"[""Wireless Mouse""]",2916.25,{},167092,1,Africa +2023-01-27,90776,6635,"[""Headphones""]",375.25,"{""loyalty"": ""17%""}",208425,1,South America +2024-12-27,90777,5420,"[""Laptop""]",238.55,{},20773,0,Asia +2024-01-17,90778,212,"[""Charger""]",4685.15,"{""seasonal"": ""11%""}",113204,0,North America +2024-03-30,90779,7326,"[""Headphones""]",717.35,{},95483,0,South America +2023-02-27,90780,1172,"[""Charger"", ""Monitor""]",1211.45,{},151758,0,Africa +2023-05-29,90781,9132,"[""Charger"", ""Headphones""]",3296.95,{},167413,0,Africa +2024-04-04,90782,4397,"[""Wireless Mouse""]",3970.79,"{""seasonal"": ""19%""}",275261,1,Africa +2023-12-07,90783,5936,"[""Wireless Mouse"", ""Charger""]",4165.56,{},44427,0,Africa +2023-11-26,90784,6381,"[""Phone"", ""Charger"", ""Monitor""]",3091.96,"{"""": ""13%""}",138246,1,Asia +2023-10-28,90785,4293,"[""Phone"", ""Keyboard"", ""Laptop""]",2367.41,{},227982,1,Asia +2023-09-06,90786,6929,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4227.78,"{""seasonal"": ""6%""}",169141,0,Europe +2023-12-29,90787,6326,"[""Charger"", ""Keyboard""]",2543.9,{},8777,1,South America +2023-05-06,90788,9743,"[""Keyboard""]",3235.41,{},55528,1,South America +2023-10-04,90789,2924,"[""Keyboard""]",509.01,{},298741,0,Africa +2024-11-04,90790,4966,"[""Headphones"", ""Tablet"", ""Monitor""]",1280.18,"{"""": ""6%""}",94168,1,Asia +2023-02-25,90791,1812,"[""Charger"", ""Laptop"", ""Tablet""]",2469.17,"{"""": ""30%""}",246371,0,Europe +2024-01-17,90792,3163,"[""Monitor""]",2007.77,{},19785,0,South America +2023-01-18,90793,6386,"[""Tablet"", ""Keyboard"", ""Charger""]",4375.27,{},93166,0,Europe +2023-04-27,90794,4483,"[""Wireless Mouse""]",3988.95,"{""loyalty"": ""22%""}",138865,0,Africa +2023-05-24,90795,4486,"[""Tablet"", ""Headphones"", ""Laptop""]",2443.23,{},272423,0,North America +2024-09-18,90796,3009,"[""Headphones""]",4433.52,{},89778,0,South America +2023-06-22,90797,6010,"[""Tablet"", ""Wireless Mouse""]",1682.8,{},91251,1,Asia +2024-01-27,90798,9276,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",327.73,{},281716,1,Europe +2023-10-16,90799,5528,"[""Tablet"", ""Headphones""]",389.85,"{""promo"": ""10%""}",107659,0,Africa +2024-07-16,90800,6629,"[""Laptop"", ""Monitor"", ""Tablet""]",1881.97,"{"""": ""13%""}",194572,0,Asia +2023-04-25,90801,7858,"[""Monitor"", ""Headphones""]",1338.26,"{""loyalty"": ""6%""}",146854,1,Asia +2023-10-28,90802,8578,"[""Tablet""]",3393.06,{},100048,1,Africa +2024-09-22,90803,9678,"[""Headphones"", ""Monitor"", ""Tablet""]",116.15,{},110214,0,Asia +2023-10-24,90804,6350,"[""Phone""]",1525.18,"{""promo"": ""12%""}",161907,0,South America +2024-10-04,90805,6478,"[""Charger"", ""Headphones""]",604.82,{},127692,0,Asia +2023-10-14,90806,977,"[""Charger"", ""Headphones"", ""Laptop""]",2256.22,"{""seasonal"": ""14%""}",142640,0,Africa +2024-09-26,90807,2553,"[""Keyboard""]",440.94,{},98491,0,Europe +2023-10-25,90808,7112,"[""Monitor""]",3204.53,"{""promo"": ""16%""}",187432,1,Africa +2023-02-02,90809,632,"[""Laptop"", ""Phone"", ""Headphones""]",580.75,"{""seasonal"": ""29%""}",103732,1,North America +2024-05-29,90810,7366,"[""Laptop""]",4390.61,"{""loyalty"": ""27%""}",171437,0,Africa +2024-06-12,90811,6636,"[""Headphones"", ""Keyboard"", ""Monitor""]",2014.3,{},129734,1,South America +2023-02-07,90812,1228,"[""Laptop"", ""Monitor"", ""Phone""]",2891.97,{},271396,1,Africa +2023-11-22,90813,528,"[""Laptop""]",1794.57,{},239566,1,Asia +2024-03-10,90814,3075,"[""Phone"", ""Headphones""]",1966.92,{},257641,1,South America +2023-01-11,90815,9726,"[""Phone"", ""Laptop""]",3674.04,{},15354,1,South America +2024-03-25,90816,7545,"[""Laptop"", ""Keyboard""]",3894.93,{},39741,1,South America +2024-11-25,90817,6344,"[""Charger""]",3962.48,{},66653,0,Africa +2023-10-26,90818,1008,"[""Charger"", ""Phone"", ""Keyboard""]",1020.2,{},259072,1,Europe +2023-09-04,90819,9070,"[""Wireless Mouse"", ""Charger""]",3564.95,"{""seasonal"": ""18%""}",146825,1,Europe +2024-09-16,90820,1407,"[""Monitor""]",4990.64,{},10488,1,South America +2024-11-23,90821,8257,"[""Charger"", ""Headphones""]",4935.98,{},117791,0,North America +2024-01-12,90822,1783,"[""Wireless Mouse"", ""Laptop""]",1530.79,"{""seasonal"": ""10%""}",69024,0,North America +2023-10-03,90823,2859,"[""Phone"", ""Keyboard""]",4001.24,{},270095,1,Europe +2024-11-14,90824,9009,"[""Charger"", ""Headphones""]",1112.88,"{""loyalty"": ""30%""}",176520,0,Africa +2024-08-18,90825,7195,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2264.77,{},147573,1,Europe +2024-11-25,90826,2322,"[""Tablet"", ""Keyboard""]",4083.05,"{""promo"": ""30%""}",5002,0,North America +2024-09-19,90827,5244,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",764.53,{},295915,0,Europe +2024-06-15,90828,1516,"[""Laptop"", ""Headphones"", ""Monitor""]",2658.34,{},91452,0,Europe +2024-01-08,90829,129,"[""Headphones"", ""Laptop"", ""Phone""]",699.08,"{""seasonal"": ""7%""}",44457,0,North America +2023-05-16,90830,4842,"[""Monitor""]",2386.57,{},132282,0,Asia +2023-03-25,90831,5303,"[""Keyboard"", ""Monitor""]",3987.97,{},273042,0,Africa +2024-09-23,90832,4166,"[""Charger"", ""Monitor""]",2658.41,"{""loyalty"": ""14%""}",263244,0,Africa +2023-01-25,90833,486,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1265.33,{},63179,0,Europe +2024-02-27,90834,3411,"[""Keyboard""]",1538.38,"{""promo"": ""30%""}",299233,1,South America +2023-05-02,90835,1492,"[""Phone""]",3749.92,"{"""": ""24%""}",20853,0,North America +2024-01-08,90836,8611,"[""Monitor"", ""Wireless Mouse""]",4871.62,"{"""": ""10%""}",78318,1,North America +2023-04-23,90837,1548,"[""Phone"", ""Keyboard"", ""Tablet""]",364.78,"{""promo"": ""7%""}",278302,1,Africa +2023-07-10,90838,7433,"[""Charger"", ""Wireless Mouse"", ""Phone""]",588.78,"{""seasonal"": ""11%""}",159615,1,Europe +2024-08-31,90839,5343,"[""Phone"", ""Laptop""]",4858.99,{},59226,0,Europe +2024-12-07,90840,6001,"[""Wireless Mouse""]",3830.09,{},134928,1,South America +2023-04-11,90841,6200,"[""Monitor"", ""Phone"", ""Headphones""]",1901.92,"{"""": ""5%""}",126460,1,Africa +2024-12-07,90842,4287,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2918.1,"{"""": ""12%""}",216759,1,Asia +2023-11-10,90843,3155,"[""Phone""]",1406.78,"{""promo"": ""10%""}",28324,1,North America +2024-10-12,90844,2609,"[""Wireless Mouse""]",4553.32,"{""promo"": ""6%""}",258344,0,Africa +2023-04-02,90845,4266,"[""Tablet"", ""Headphones""]",4621.67,"{""seasonal"": ""26%""}",291629,0,South America +2023-05-26,90846,4625,"[""Charger""]",1739.21,{},28800,0,Asia +2023-11-18,90847,367,"[""Charger"", ""Laptop""]",375.87,"{""promo"": ""28%""}",81341,0,Europe +2024-06-19,90848,7513,"[""Charger""]",4379.99,"{""promo"": ""24%""}",175245,1,South America +2023-05-20,90849,1400,"[""Keyboard""]",1343.96,"{""promo"": ""22%""}",85210,0,Africa +2023-02-01,90850,8851,"[""Laptop""]",439.75,"{""promo"": ""12%""}",253954,0,North America +2023-07-03,90851,2187,"[""Keyboard""]",2938.22,"{"""": ""27%""}",50625,0,South America +2024-06-18,90852,3637,"[""Monitor"", ""Charger""]",1083.21,{},225605,0,North America +2023-03-28,90853,451,"[""Keyboard""]",87.27,{},59114,1,North America +2024-04-16,90854,1256,"[""Monitor"", ""Headphones""]",4307.31,{},209564,1,South America +2024-02-13,90855,6195,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",4054.64,{},108461,0,Asia +2024-06-19,90856,6565,"[""Laptop""]",2314.26,"{"""": ""26%""}",84268,0,South America +2023-11-08,90857,3762,"[""Wireless Mouse""]",3486.64,"{""promo"": ""7%""}",17117,1,Asia +2024-02-17,90858,8889,"[""Charger"", ""Keyboard""]",4027.95,{},241924,0,Europe +2024-02-04,90859,5092,"[""Monitor"", ""Wireless Mouse""]",1498.61,{},141160,0,Africa +2023-07-20,90860,9651,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2685.32,"{""seasonal"": ""8%""}",120106,0,Asia +2024-12-15,90861,1717,"[""Wireless Mouse"", ""Keyboard""]",1831.48,"{""seasonal"": ""30%""}",201041,0,Asia +2024-04-16,90862,4685,"[""Laptop"", ""Phone""]",406.57,{},264401,1,North America +2023-08-11,90863,8783,"[""Headphones""]",260.6,{},102043,0,North America +2024-05-22,90864,4345,"[""Monitor"", ""Headphones""]",662.29,{},63372,1,South America +2023-06-17,90865,7386,"[""Phone"", ""Tablet"", ""Headphones""]",3673.02,"{""promo"": ""27%""}",199372,0,Europe +2023-04-14,90866,2512,"[""Laptop"", ""Charger"", ""Headphones""]",2011.54,"{""seasonal"": ""17%""}",259007,1,Africa +2023-08-14,90867,8978,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",868.23,{},186650,0,North America +2023-11-20,90868,7771,"[""Wireless Mouse""]",2712.0,{},247830,0,South America +2023-05-08,90869,6632,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1547.47,{},87328,0,Africa +2024-01-22,90870,8608,"[""Charger""]",2662.52,{},65909,1,South America +2024-02-12,90871,6207,"[""Monitor"", ""Tablet""]",4795.89,{},32546,1,Africa +2024-09-19,90872,3538,"[""Phone""]",152.83,{},263916,0,Europe +2024-09-07,90873,989,"[""Charger"", ""Tablet""]",1471.52,{},128039,1,Asia +2024-06-18,90874,7829,"[""Monitor"", ""Headphones""]",2158.39,"{""seasonal"": ""20%""}",294219,1,South America +2024-08-30,90875,8097,"[""Laptop"", ""Monitor"", ""Charger""]",2524.9,"{""promo"": ""26%""}",131457,1,North America +2024-03-11,90876,984,"[""Headphones"", ""Wireless Mouse""]",2886.83,"{"""": ""15%""}",2220,0,Africa +2024-08-01,90877,2259,"[""Laptop"", ""Keyboard""]",3773.68,"{"""": ""27%""}",203581,1,North America +2024-12-12,90878,8996,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2489.35,{},145601,1,Asia +2024-03-22,90879,4255,"[""Laptop"", ""Phone"", ""Charger""]",3385.1,{},86037,1,North America +2024-09-17,90880,8392,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2945.87,{},120321,1,South America +2024-11-16,90881,1892,"[""Keyboard"", ""Headphones"", ""Phone""]",418.99,{},208752,1,South America +2023-01-19,90882,7357,"[""Phone""]",2815.96,{},97164,0,Europe +2023-02-12,90883,7492,"[""Laptop"", ""Tablet""]",2575.02,"{""loyalty"": ""11%""}",156423,0,Africa +2023-07-30,90884,3654,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3545.42,{},98218,1,Africa +2023-12-21,90885,8858,"[""Tablet"", ""Phone""]",79.36,"{""seasonal"": ""30%""}",95029,0,South America +2024-04-13,90886,4363,"[""Charger"", ""Wireless Mouse""]",4692.85,"{""seasonal"": ""9%""}",207101,1,North America +2023-12-04,90887,545,"[""Tablet""]",2141.57,{},38500,1,Asia +2023-12-18,90888,2712,"[""Keyboard""]",1860.65,"{""promo"": ""20%""}",247865,0,South America +2023-03-31,90889,8575,"[""Headphones"", ""Phone"", ""Tablet""]",2961.73,{},230034,0,Africa +2024-07-30,90890,9325,"[""Wireless Mouse""]",1626.26,{},24201,0,North America +2023-05-10,90891,4733,"[""Laptop"", ""Charger""]",2158.81,{},61491,0,North America +2023-12-26,90892,7054,"[""Headphones""]",1202.58,"{""promo"": ""25%""}",275493,1,Asia +2024-04-04,90893,3535,"[""Tablet"", ""Laptop""]",1287.21,"{""loyalty"": ""16%""}",196977,1,Europe +2023-11-04,90894,3511,"[""Headphones"", ""Keyboard""]",1543.14,"{"""": ""10%""}",29154,1,Asia +2024-08-22,90895,9945,"[""Monitor"", ""Keyboard"", ""Tablet""]",1871.06,"{""loyalty"": ""25%""}",5394,1,Europe +2024-12-05,90896,9202,"[""Headphones"", ""Tablet"", ""Phone""]",567.47,{},73581,1,Africa +2023-11-11,90897,8302,"[""Laptop""]",1394.53,"{"""": ""16%""}",40849,1,Europe +2024-06-04,90898,7043,"[""Headphones"", ""Keyboard""]",3270.27,{},107307,1,North America +2024-04-15,90899,2745,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1833.57,"{"""": ""6%""}",202006,1,Europe +2024-10-15,90900,5619,"[""Laptop"", ""Monitor""]",1062.28,"{"""": ""24%""}",124232,1,Europe +2024-03-07,90901,682,"[""Keyboard"", ""Tablet"", ""Phone""]",955.03,{},101405,0,South America +2024-07-17,90902,1902,"[""Wireless Mouse"", ""Keyboard""]",1145.48,"{""loyalty"": ""8%""}",220302,1,South America +2023-10-01,90903,3518,"[""Phone""]",1997.44,{},131003,0,South America +2024-10-09,90904,8916,"[""Headphones""]",202.15,{},148255,0,North America +2024-04-16,90905,7992,"[""Wireless Mouse"", ""Tablet""]",2740.3,{},136739,0,Europe +2024-10-16,90906,1325,"[""Phone""]",4594.39,{},251066,1,Africa +2023-04-24,90907,3779,"[""Headphones""]",2622.4,"{""loyalty"": ""13%""}",216738,1,Africa +2023-03-15,90908,5301,"[""Charger""]",1466.5,{},162497,0,South America +2023-02-11,90909,3363,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4003.07,"{"""": ""10%""}",227516,0,Asia +2023-06-28,90910,6374,"[""Laptop"", ""Monitor""]",4972.3,"{""seasonal"": ""14%""}",244376,1,North America +2023-08-28,90911,9318,"[""Laptop"", ""Charger""]",1949.4,"{""promo"": ""18%""}",3902,1,Asia +2024-01-15,90912,8614,"[""Keyboard"", ""Headphones""]",2902.72,"{"""": ""30%""}",185435,1,North America +2024-12-23,90913,4377,"[""Laptop"", ""Wireless Mouse""]",1122.17,{},283634,0,North America +2024-06-19,90914,2065,"[""Charger"", ""Wireless Mouse""]",4636.4,"{""loyalty"": ""12%""}",75306,1,Europe +2023-01-03,90915,9686,"[""Wireless Mouse"", ""Headphones""]",245.37,{},121798,1,South America +2024-04-02,90916,9809,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",555.73,{},145885,1,Europe +2023-11-04,90917,6009,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3053.09,"{""seasonal"": ""10%""}",38650,1,South America +2023-06-21,90918,9029,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2269.01,"{""loyalty"": ""20%""}",52879,1,Africa +2023-02-16,90919,2093,"[""Monitor"", ""Tablet"", ""Keyboard""]",1512.83,"{""seasonal"": ""27%""}",11186,1,South America +2023-09-16,90920,3419,"[""Charger""]",2080.99,{},166919,0,North America +2023-11-21,90921,549,"[""Headphones""]",4727.31,{},235192,1,Africa +2024-01-17,90922,6987,"[""Charger"", ""Keyboard""]",3354.4,{},216327,1,Africa +2024-05-09,90923,2067,"[""Keyboard"", ""Tablet""]",1038.84,"{""promo"": ""13%""}",255900,0,Europe +2023-08-20,90924,2908,"[""Laptop""]",3760.55,"{""promo"": ""24%""}",168026,1,Africa +2024-06-05,90925,9334,"[""Phone""]",457.62,"{"""": ""30%""}",185540,0,Europe +2024-12-14,90926,5693,"[""Phone"", ""Tablet""]",4806.22,"{"""": ""25%""}",108448,1,Asia +2023-12-12,90927,9815,"[""Monitor"", ""Charger"", ""Headphones""]",1576.86,{},52714,0,South America +2023-03-02,90928,2530,"[""Tablet"", ""Wireless Mouse""]",1233.7,{},15066,1,Asia +2024-08-15,90929,7656,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2599.62,{},99181,1,North America +2023-08-26,90930,897,"[""Monitor"", ""Headphones"", ""Keyboard""]",4103.23,{},205796,0,Asia +2023-03-30,90931,9668,"[""Charger""]",3742.39,"{""seasonal"": ""6%""}",127361,1,South America +2023-01-11,90932,5631,"[""Keyboard"", ""Laptop"", ""Monitor""]",705.7,{},264695,1,South America +2024-08-21,90933,1143,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3008.75,{},26275,0,Asia +2023-01-24,90934,3565,"[""Headphones""]",676.31,{},80230,1,North America +2024-12-11,90935,4320,"[""Keyboard"", ""Tablet""]",1893.2,"{""loyalty"": ""14%""}",275028,1,Europe +2024-08-12,90936,8392,"[""Headphones""]",959.66,{},165333,0,North America +2024-01-29,90937,7608,"[""Keyboard"", ""Wireless Mouse""]",580.44,{},193922,1,Europe +2023-08-06,90938,5867,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2566.0,"{""promo"": ""19%""}",107360,1,Asia +2023-09-09,90939,3130,"[""Keyboard"", ""Headphones"", ""Phone""]",2260.09,"{""seasonal"": ""10%""}",84181,1,Africa +2023-11-20,90940,926,"[""Tablet""]",3793.36,{},101001,1,Asia +2024-12-05,90941,446,"[""Headphones""]",2356.14,"{""seasonal"": ""7%""}",58799,1,North America +2023-01-11,90942,2533,"[""Laptop""]",3744.52,"{""promo"": ""14%""}",64126,0,Africa +2023-09-20,90943,3409,"[""Wireless Mouse""]",4019.88,{},264561,1,Europe +2024-10-05,90944,1245,"[""Charger"", ""Headphones"", ""Laptop""]",623.47,{},173868,0,Europe +2024-01-29,90945,870,"[""Keyboard"", ""Tablet""]",1153.84,{},291984,0,Europe +2024-05-11,90946,6810,"[""Charger"", ""Tablet""]",3515.25,{},134992,0,Asia +2023-04-08,90947,7843,"[""Wireless Mouse""]",4152.41,"{""loyalty"": ""25%""}",172359,0,South America +2023-01-21,90948,2138,"[""Headphones"", ""Keyboard""]",3066.9,{},186373,0,North America +2024-05-25,90949,3036,"[""Laptop"", ""Monitor"", ""Phone""]",2244.72,{},50598,1,Asia +2024-07-12,90950,117,"[""Wireless Mouse""]",3141.67,"{""seasonal"": ""8%""}",209565,0,South America +2023-06-10,90951,4521,"[""Charger"", ""Wireless Mouse""]",1696.59,{},273499,0,South America +2023-06-04,90952,6775,"[""Wireless Mouse"", ""Laptop""]",399.71,{},140384,0,Asia +2024-08-13,90953,4401,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1016.16,{},214833,1,Africa +2024-07-25,90954,8442,"[""Laptop""]",1366.98,"{""promo"": ""14%""}",32302,1,Africa +2023-03-03,90955,4339,"[""Wireless Mouse"", ""Laptop""]",2899.83,{},221353,0,North America +2024-01-03,90956,1876,"[""Laptop"", ""Charger""]",3945.83,"{""loyalty"": ""24%""}",270580,0,South America +2023-12-14,90957,1268,"[""Charger"", ""Keyboard""]",2306.69,"{""loyalty"": ""9%""}",53045,0,North America +2024-04-24,90958,5623,"[""Wireless Mouse""]",3874.7,{},225448,0,Europe +2024-02-18,90959,326,"[""Keyboard"", ""Laptop"", ""Headphones""]",2893.09,{},244685,0,North America +2024-07-26,90960,9784,"[""Keyboard"", ""Headphones""]",2931.84,"{""loyalty"": ""6%""}",80980,0,South America +2024-12-21,90961,2151,"[""Headphones"", ""Laptop""]",3876.61,{},256594,1,South America +2024-07-14,90962,7390,"[""Phone"", ""Laptop""]",3649.32,{},205645,1,South America +2024-12-07,90963,1836,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1423.43,{},213979,0,Asia +2023-03-04,90964,8606,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3848.16,{},216382,0,South America +2024-09-25,90965,3332,"[""Charger""]",2424.9,{},254377,1,Europe +2024-10-18,90966,5706,"[""Charger"", ""Headphones""]",3152.32,{},56881,1,North America +2023-02-03,90967,1847,"[""Laptop"", ""Phone""]",3576.17,"{""promo"": ""19%""}",150958,1,Africa +2024-04-26,90968,8441,"[""Monitor"", ""Tablet"", ""Laptop""]",2682.74,{},115670,0,Asia +2024-09-26,90969,4792,"[""Headphones"", ""Tablet"", ""Laptop""]",743.78,"{"""": ""17%""}",167420,1,South America +2024-04-21,90970,3450,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2971.7,"{"""": ""13%""}",236833,1,South America +2023-04-09,90971,5112,"[""Headphones"", ""Tablet""]",4171.22,"{""loyalty"": ""27%""}",10771,1,North America +2023-04-22,90972,5246,"[""Monitor"", ""Phone""]",2527.76,{},63282,0,Africa +2023-02-09,90973,3492,"[""Tablet"", ""Headphones"", ""Laptop""]",3252.3,"{""promo"": ""30%""}",181584,0,Europe +2024-04-11,90974,9624,"[""Laptop"", ""Charger""]",1709.64,{},155297,0,North America +2024-09-15,90975,4669,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4455.59,{},62928,0,Africa +2024-04-03,90976,3436,"[""Monitor""]",2971.26,"{"""": ""10%""}",189614,0,Africa +2023-08-14,90977,427,"[""Keyboard"", ""Monitor""]",1820.8,"{""loyalty"": ""10%""}",186025,1,North America +2023-04-24,90978,7233,"[""Keyboard"", ""Tablet""]",3655.17,"{""seasonal"": ""5%""}",199334,1,South America +2023-10-22,90979,663,"[""Phone""]",4620.41,{},228506,1,North America +2024-03-14,90980,4547,"[""Monitor"", ""Phone""]",1902.24,"{""seasonal"": ""26%""}",120837,0,Asia +2024-04-09,90981,7259,"[""Monitor""]",1911.96,{},192912,0,South America +2024-02-24,90982,836,"[""Keyboard""]",1615.0,"{""promo"": ""19%""}",261423,1,Asia +2024-03-02,90983,269,"[""Keyboard"", ""Phone"", ""Monitor""]",3204.1,"{""promo"": ""8%""}",140627,1,Asia +2024-11-22,90984,4720,"[""Charger""]",2754.42,"{""seasonal"": ""25%""}",222969,1,Asia +2023-01-30,90985,6088,"[""Headphones""]",3305.39,"{""seasonal"": ""15%""}",152302,1,Asia +2024-02-16,90986,9031,"[""Laptop""]",1499.77,"{"""": ""20%""}",161954,0,Africa +2024-05-02,90987,5256,"[""Monitor""]",4450.66,"{""seasonal"": ""10%""}",139929,1,North America +2024-05-10,90988,5816,"[""Phone"", ""Tablet"", ""Charger""]",1695.79,{},73823,0,Europe +2024-05-09,90989,3808,"[""Monitor""]",2456.55,"{""loyalty"": ""9%""}",77314,1,South America +2023-03-01,90990,7569,"[""Headphones""]",4223.37,{},126315,0,Europe +2023-03-26,90991,6294,"[""Keyboard"", ""Tablet""]",4107.68,{},110618,0,Asia +2024-03-04,90992,136,"[""Charger""]",3783.51,{},292489,0,South America +2023-07-21,90993,1420,"[""Monitor"", ""Laptop"", ""Tablet""]",3190.83,"{""loyalty"": ""7%""}",55101,0,Europe +2023-09-30,90994,9762,"[""Tablet"", ""Phone""]",4346.43,{},32348,0,Africa +2023-05-26,90995,6574,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",99.69,"{""promo"": ""14%""}",278862,1,North America +2023-06-21,90996,761,"[""Headphones"", ""Monitor""]",1107.4,"{"""": ""30%""}",263112,0,Europe +2023-11-06,90997,3156,"[""Monitor""]",2121.64,{},199600,0,Asia +2024-12-28,90998,9268,"[""Wireless Mouse""]",733.36,"{"""": ""11%""}",192019,1,Europe +2023-05-13,90999,7165,"[""Wireless Mouse""]",1457.37,{},283771,1,North America +2023-05-06,91000,2055,"[""Laptop""]",515.84,{},238121,1,Europe +2023-04-03,91001,2746,"[""Monitor""]",586.03,"{""promo"": ""30%""}",183440,0,North America +2024-02-12,91002,3795,"[""Keyboard"", ""Monitor""]",75.6,{},256339,0,Europe +2024-04-16,91003,4643,"[""Monitor""]",3833.69,"{""promo"": ""15%""}",39026,1,Africa +2023-04-07,91004,2791,"[""Laptop"", ""Tablet""]",1800.71,{},291374,0,Asia +2023-06-18,91005,6871,"[""Monitor""]",1028.15,"{""loyalty"": ""6%""}",173507,1,Asia +2023-11-21,91006,1604,"[""Monitor"", ""Laptop"", ""Keyboard""]",3592.24,{},297666,0,Africa +2023-08-10,91007,5395,"[""Monitor"", ""Keyboard"", ""Phone""]",871.31,{},39605,0,Asia +2023-03-26,91008,7639,"[""Charger"", ""Phone""]",1457.5,{},288341,0,South America +2024-07-15,91009,8311,"[""Monitor""]",4716.06,"{""seasonal"": ""22%""}",162960,0,Asia +2023-08-02,91010,9580,"[""Charger""]",1563.13,"{""promo"": ""5%""}",256304,0,Asia +2024-05-30,91011,8527,"[""Keyboard"", ""Charger"", ""Headphones""]",4965.89,"{""loyalty"": ""28%""}",50565,1,South America +2024-03-28,91012,2102,"[""Keyboard""]",3373.44,{},244839,1,South America +2024-09-11,91013,5912,"[""Monitor""]",2934.5,{},13756,0,Asia +2023-07-18,91014,9660,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2572.86,"{""seasonal"": ""30%""}",149595,1,South America +2024-04-22,91015,4993,"[""Laptop""]",1848.05,"{"""": ""30%""}",216429,0,North America +2024-08-12,91016,2234,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2522.67,"{""loyalty"": ""16%""}",277596,0,North America +2024-10-18,91017,8377,"[""Laptop""]",2790.17,{},135556,0,North America +2024-09-21,91018,4518,"[""Monitor"", ""Charger"", ""Tablet""]",508.29,{},65494,1,Asia +2024-02-19,91019,1048,"[""Tablet"", ""Laptop""]",2139.36,{},30469,1,Europe +2023-08-22,91020,9825,"[""Keyboard"", ""Laptop""]",1390.74,"{"""": ""24%""}",20596,1,North America +2024-03-15,91021,4291,"[""Wireless Mouse"", ""Laptop""]",3457.22,"{""seasonal"": ""22%""}",196461,0,North America +2024-06-10,91022,8440,"[""Wireless Mouse"", ""Keyboard""]",4026.2,{},296251,1,Asia +2024-12-29,91023,1557,"[""Monitor"", ""Laptop"", ""Headphones""]",2374.91,"{""seasonal"": ""7%""}",274038,0,South America +2024-10-13,91024,8456,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3670.59,{},132728,0,Asia +2024-05-08,91025,1533,"[""Tablet"", ""Keyboard""]",3651.4,"{"""": ""26%""}",195895,1,Europe +2024-09-11,91026,8782,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",2192.22,"{""seasonal"": ""28%""}",169286,0,Europe +2023-06-17,91027,5881,"[""Monitor"", ""Tablet""]",1159.46,{},272299,1,South America +2023-03-03,91028,615,"[""Phone""]",2880.06,{},51333,0,Africa +2023-11-09,91029,727,"[""Phone"", ""Tablet"", ""Monitor""]",2631.31,"{"""": ""23%""}",25410,0,Europe +2023-09-18,91030,4230,"[""Headphones""]",1460.11,{},241137,0,Europe +2023-09-30,91031,8461,"[""Wireless Mouse""]",732.34,{},143981,1,North America +2024-03-02,91032,2516,"[""Monitor"", ""Charger""]",1549.46,{},258139,1,Asia +2024-03-09,91033,3458,"[""Wireless Mouse""]",4311.22,{},202653,1,South America +2024-12-03,91034,6917,"[""Phone""]",1209.17,"{"""": ""11%""}",181641,0,North America +2024-04-21,91035,2326,"[""Keyboard"", ""Charger"", ""Laptop""]",3446.42,"{"""": ""9%""}",234863,1,Europe +2024-12-19,91036,5531,"[""Phone"", ""Tablet"", ""Charger""]",314.84,"{""seasonal"": ""16%""}",255066,0,Europe +2024-10-23,91037,7073,"[""Phone"", ""Headphones""]",1411.98,"{""seasonal"": ""21%""}",78013,0,Asia +2023-01-09,91038,6249,"[""Charger""]",4163.78,{},222822,1,North America +2023-11-28,91039,5544,"[""Wireless Mouse"", ""Laptop""]",2311.63,{},190890,0,Europe +2024-09-10,91040,2687,"[""Laptop"", ""Monitor""]",3750.16,{},190889,1,South America +2024-08-30,91041,7666,"[""Keyboard"", ""Charger"", ""Phone""]",3587.79,"{""seasonal"": ""25%""}",43377,0,Africa +2023-08-12,91042,5920,"[""Monitor""]",3495.81,{},246746,0,Europe +2023-06-09,91043,4084,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3565.87,{},218877,1,Asia +2023-01-30,91044,1664,"[""Headphones""]",2133.16,{},160553,1,Asia +2024-05-30,91045,4114,"[""Keyboard"", ""Monitor"", ""Tablet""]",2327.25,{},44530,0,Europe +2023-07-05,91046,7025,"[""Wireless Mouse"", ""Phone""]",596.56,"{""seasonal"": ""12%""}",101391,1,South America +2024-02-14,91047,6192,"[""Monitor""]",1688.3,{},70748,1,North America +2024-04-20,91048,8333,"[""Phone"", ""Laptop""]",4504.91,{},124571,1,South America +2023-08-27,91049,3519,"[""Headphones"", ""Phone""]",4728.32,"{""seasonal"": ""20%""}",240231,1,Europe +2023-05-26,91050,7999,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3069.64,"{""promo"": ""12%""}",220275,0,North America +2023-12-16,91051,7450,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",1441.19,"{""loyalty"": ""23%""}",52460,1,North America +2023-05-12,91052,1389,"[""Laptop"", ""Keyboard""]",4673.71,"{""seasonal"": ""23%""}",138470,0,South America +2023-09-06,91053,7956,"[""Wireless Mouse""]",4699.44,{},274631,0,Asia +2024-09-19,91054,2564,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4567.48,{},158758,1,Africa +2023-10-14,91055,8605,"[""Tablet""]",2432.92,{},163428,0,Europe +2023-06-28,91056,5548,"[""Monitor"", ""Headphones"", ""Phone""]",3166.03,{},97718,0,Europe +2023-07-24,91057,7522,"[""Keyboard""]",3234.6,{},167725,1,North America +2023-02-25,91058,8804,"[""Tablet""]",1622.66,"{""loyalty"": ""29%""}",20655,1,Asia +2024-12-25,91059,1125,"[""Keyboard""]",1858.32,{},275240,0,Africa +2024-07-04,91060,5889,"[""Monitor"", ""Charger""]",3979.43,{},44690,1,Europe +2024-05-08,91061,1835,"[""Laptop"", ""Monitor""]",830.77,"{""seasonal"": ""20%""}",222674,0,South America +2023-12-17,91062,7025,"[""Phone"", ""Charger"", ""Headphones""]",1848.61,{},117299,0,Europe +2024-05-21,91063,4322,"[""Monitor""]",176.91,{},140127,1,Asia +2024-04-12,91064,4508,"[""Laptop""]",2661.01,"{""seasonal"": ""13%""}",236587,0,Asia +2023-11-05,91065,2762,"[""Tablet"", ""Phone""]",3089.31,"{""loyalty"": ""15%""}",126942,0,South America +2024-10-06,91066,1767,"[""Laptop""]",3061.04,"{"""": ""30%""}",265053,0,North America +2023-09-09,91067,504,"[""Tablet"", ""Charger""]",3744.58,{},72923,1,Africa +2024-04-02,91068,541,"[""Monitor"", ""Phone""]",4372.13,"{"""": ""13%""}",197767,0,Europe +2023-12-23,91069,5546,"[""Tablet"", ""Wireless Mouse""]",1960.01,{},24523,0,Africa +2023-09-16,91070,1695,"[""Headphones""]",3730.33,{},213813,0,South America +2023-07-01,91071,9769,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4020.87,"{""seasonal"": ""17%""}",17378,0,Africa +2024-02-29,91072,6688,"[""Charger""]",2330.55,{},162008,0,South America +2024-05-24,91073,6665,"[""Tablet"", ""Keyboard""]",264.85,{},211772,0,Europe +2024-07-13,91074,872,"[""Monitor""]",1239.44,{},117405,1,North America +2023-10-15,91075,7924,"[""Tablet"", ""Laptop""]",1900.61,{},73565,0,South America +2023-04-17,91076,8715,"[""Monitor"", ""Tablet""]",1068.43,{},29970,0,Europe +2023-01-21,91077,3167,"[""Phone"", ""Keyboard""]",4198.74,"{""seasonal"": ""19%""}",58370,1,Europe +2023-01-15,91078,9908,"[""Keyboard""]",4712.13,{},265236,0,Europe +2023-02-24,91079,5388,"[""Laptop""]",1314.95,{},42863,1,South America +2023-04-02,91080,4466,"[""Monitor"", ""Keyboard"", ""Charger""]",3559.37,{},55529,0,Europe +2023-04-25,91081,9276,"[""Wireless Mouse"", ""Charger"", ""Phone""]",3015.98,{},145724,1,Asia +2023-03-17,91082,1789,"[""Wireless Mouse"", ""Keyboard""]",1127.8,"{""seasonal"": ""27%""}",14822,1,North America +2024-09-24,91083,5284,"[""Headphones"", ""Wireless Mouse""]",4671.61,{},47533,0,Asia +2024-10-17,91084,4452,"[""Tablet"", ""Laptop""]",424.88,{},201892,1,South America +2024-08-07,91085,9221,"[""Wireless Mouse""]",4377.91,{},198415,1,South America +2023-08-04,91086,5629,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4311.01,{},44113,0,Europe +2024-02-12,91087,5405,"[""Keyboard""]",3755.96,{},85405,0,Africa +2024-08-16,91088,5001,"[""Charger""]",2003.94,"{""loyalty"": ""30%""}",187336,0,Africa +2024-07-01,91089,5072,"[""Laptop"", ""Monitor"", ""Headphones""]",542.49,{},121978,0,Africa +2023-10-18,91090,144,"[""Laptop"", ""Charger""]",2327.53,{},68972,0,South America +2023-09-27,91091,7798,"[""Phone""]",3231.65,{},295991,1,Africa +2023-09-09,91092,3733,"[""Tablet"", ""Charger"", ""Monitor""]",1429.3,"{""loyalty"": ""19%""}",32513,0,Asia +2024-10-15,91093,654,"[""Wireless Mouse"", ""Laptop""]",2756.16,"{""promo"": ""5%""}",122020,0,South America +2024-09-02,91094,3328,"[""Headphones"", ""Keyboard""]",4014.84,"{"""": ""19%""}",29095,1,Africa +2024-06-04,91095,8173,"[""Monitor"", ""Wireless Mouse""]",2538.66,"{"""": ""26%""}",26855,0,Africa +2023-10-13,91096,7114,"[""Laptop""]",1731.29,"{""loyalty"": ""19%""}",166461,0,Africa +2024-02-17,91097,7013,"[""Laptop""]",4424.66,"{"""": ""5%""}",284045,0,Europe +2024-05-17,91098,3465,"[""Charger"", ""Laptop"", ""Phone""]",4759.27,"{""promo"": ""26%""}",249305,1,North America +2024-12-25,91099,7556,"[""Headphones""]",1982.13,{},56271,0,Europe +2023-01-10,91100,9158,"[""Headphones""]",4437.55,{},11811,1,Africa +2023-06-29,91101,5282,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2739.43,{},279112,1,South America +2023-01-22,91102,2618,"[""Tablet""]",3277.12,{},194573,0,Europe +2024-02-03,91103,4482,"[""Phone"", ""Keyboard"", ""Tablet""]",1340.16,{},238640,0,Africa +2024-01-28,91104,6669,"[""Charger"", ""Laptop"", ""Phone""]",3923.81,"{""promo"": ""30%""}",192144,1,South America +2024-10-09,91105,2224,"[""Charger"", ""Headphones""]",2459.97,{},121817,0,Africa +2024-02-12,91106,9863,"[""Monitor""]",3871.5,{},19041,0,Europe +2023-08-20,91107,2042,"[""Headphones"", ""Keyboard"", ""Laptop""]",1980.14,{},210329,1,South America +2024-07-30,91108,99,"[""Monitor"", ""Charger""]",2659.4,{},50868,0,Asia +2023-01-24,91109,8934,"[""Monitor"", ""Headphones""]",94.7,"{"""": ""30%""}",56742,1,Asia +2024-01-22,91110,3044,"[""Wireless Mouse""]",2096.46,{},18688,0,Asia +2024-08-26,91111,1278,"[""Headphones"", ""Wireless Mouse""]",2681.76,{},75784,0,Europe +2024-02-09,91112,8042,"[""Tablet"", ""Phone"", ""Headphones""]",388.66,"{""promo"": ""24%""}",174807,1,Asia +2023-03-06,91113,8823,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3139.08,"{""promo"": ""11%""}",101604,1,North America +2024-03-04,91114,9682,"[""Keyboard""]",4196.42,{},248024,1,Asia +2024-11-07,91115,7158,"[""Monitor""]",1445.81,{},284272,0,Europe +2024-05-08,91116,7516,"[""Wireless Mouse""]",3177.88,"{""loyalty"": ""21%""}",259832,0,North America +2024-06-23,91117,9655,"[""Phone"", ""Monitor"", ""Charger""]",3122.18,"{""loyalty"": ""16%""}",224467,0,North America +2024-09-28,91118,9504,"[""Headphones""]",2064.33,"{"""": ""19%""}",212214,1,Europe +2024-12-03,91119,3260,"[""Laptop"", ""Phone"", ""Monitor""]",4099.03,{},171252,1,Europe +2024-03-14,91120,8680,"[""Tablet""]",76.64,{},217351,1,Europe +2024-03-30,91121,8879,"[""Monitor"", ""Laptop""]",4382.42,"{""promo"": ""23%""}",248918,1,Asia +2023-02-03,91122,3107,"[""Charger""]",4369.45,"{""seasonal"": ""18%""}",232093,1,Asia +2024-04-08,91123,7375,"[""Wireless Mouse"", ""Tablet""]",180.98,{},196666,1,Asia +2024-02-10,91124,6130,"[""Monitor""]",3316.6,"{""seasonal"": ""12%""}",289548,0,Asia +2023-06-20,91125,260,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4936.19,"{""seasonal"": ""26%""}",290339,0,Asia +2024-06-28,91126,4544,"[""Headphones""]",3642.71,{},289084,0,Europe +2023-02-09,91127,9117,"[""Phone"", ""Laptop""]",3526.23,{},62684,0,South America +2024-01-01,91128,4498,"[""Phone""]",2190.36,"{"""": ""28%""}",202850,0,South America +2024-10-03,91129,797,"[""Monitor"", ""Phone""]",2529.12,{},44587,1,Asia +2023-01-29,91130,3840,"[""Laptop"", ""Monitor"", ""Headphones""]",2330.22,"{"""": ""30%""}",122521,1,Europe +2024-10-30,91131,377,"[""Laptop""]",2268.58,"{"""": ""14%""}",116112,1,Asia +2023-08-03,91132,4691,"[""Tablet""]",4077.8,{},280003,0,Asia +2024-08-26,91133,8957,"[""Keyboard""]",1451.89,"{""promo"": ""6%""}",270513,1,Asia +2023-01-01,91134,5932,"[""Wireless Mouse"", ""Headphones""]",2681.71,"{""loyalty"": ""19%""}",156695,0,Europe +2023-07-19,91135,546,"[""Tablet""]",4541.0,{},140213,1,Asia +2023-07-14,91136,5430,"[""Monitor"", ""Laptop""]",2448.93,"{""seasonal"": ""27%""}",246981,1,Europe +2024-09-07,91137,6933,"[""Tablet""]",4234.89,{},244356,1,Africa +2023-03-05,91138,830,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",307.38,"{""loyalty"": ""11%""}",111484,1,Asia +2023-05-02,91139,8368,"[""Charger""]",4513.21,{},223654,0,Europe +2023-08-25,91140,5082,"[""Keyboard""]",3559.85,{},166162,1,South America +2024-06-24,91141,9838,"[""Headphones"", ""Phone""]",1707.08,"{""seasonal"": ""7%""}",38711,0,North America +2024-03-05,91142,1892,"[""Phone""]",3789.28,"{"""": ""18%""}",104894,0,South America +2023-12-16,91143,8499,"[""Charger"", ""Laptop"", ""Tablet""]",4119.26,{},153255,1,Africa +2024-04-29,91144,6096,"[""Laptop""]",1541.28,{},95889,1,North America +2024-04-30,91145,8767,"[""Phone"", ""Monitor""]",2683.33,"{""loyalty"": ""29%""}",184469,1,South America +2023-07-23,91146,5644,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",2079.3,{},199008,1,Europe +2024-05-24,91147,3448,"[""Monitor"", ""Wireless Mouse""]",1588.45,"{""seasonal"": ""28%""}",133715,0,South America +2023-02-20,91148,4732,"[""Charger"", ""Monitor"", ""Laptop""]",2346.64,{},4835,1,South America +2023-02-22,91149,3024,"[""Charger"", ""Phone""]",4318.82,"{""loyalty"": ""7%""}",181832,1,South America +2024-10-13,91150,6520,"[""Laptop"", ""Headphones"", ""Tablet""]",1924.98,{},254004,0,Europe +2024-12-22,91151,9107,"[""Laptop"", ""Wireless Mouse""]",337.99,{},63030,0,Africa +2024-05-16,91152,5768,"[""Headphones""]",3271.49,{},199707,1,Europe +2024-09-07,91153,6920,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4638.9,{},79643,1,Africa +2024-01-14,91154,1907,"[""Laptop"", ""Monitor""]",2091.21,"{""seasonal"": ""10%""}",247941,1,South America +2023-03-08,91155,6838,"[""Phone"", ""Headphones"", ""Laptop""]",646.76,{},172121,1,South America +2023-08-19,91156,5325,"[""Tablet""]",1778.3,"{""promo"": ""27%""}",233167,1,Africa +2024-11-06,91157,3504,"[""Tablet"", ""Charger""]",1638.22,"{""promo"": ""9%""}",174384,1,Asia +2023-12-27,91158,3969,"[""Tablet"", ""Laptop"", ""Keyboard""]",174.7,"{""loyalty"": ""11%""}",267711,1,Africa +2023-04-21,91159,1656,"[""Headphones""]",2673.63,"{""seasonal"": ""7%""}",86433,0,North America +2023-06-29,91160,7534,"[""Laptop"", ""Wireless Mouse""]",4178.51,"{""seasonal"": ""15%""}",79898,0,South America +2023-10-04,91161,1531,"[""Charger""]",3650.4,"{""seasonal"": ""20%""}",221058,0,Africa +2023-01-05,91162,6520,"[""Laptop""]",3844.31,"{"""": ""17%""}",23977,1,Asia +2023-04-17,91163,5415,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",200.78,"{"""": ""9%""}",58242,0,South America +2023-10-04,91164,7243,"[""Headphones""]",409.11,"{""promo"": ""16%""}",282879,0,South America +2024-03-05,91165,4482,"[""Charger""]",4940.24,"{""seasonal"": ""20%""}",115294,0,Asia +2024-12-29,91166,5500,"[""Phone"", ""Monitor"", ""Charger""]",4903.61,"{""promo"": ""28%""}",288711,1,Asia +2023-06-08,91167,5351,"[""Monitor"", ""Wireless Mouse""]",1281.0,{},166611,1,Asia +2024-05-09,91168,8755,"[""Monitor""]",1643.98,"{""seasonal"": ""29%""}",25501,1,North America +2023-12-29,91169,357,"[""Phone"", ""Laptop"", ""Headphones""]",4089.28,"{""promo"": ""11%""}",156409,1,Asia +2024-07-21,91170,6430,"[""Wireless Mouse"", ""Laptop""]",4577.43,{},135917,1,South America +2023-02-16,91171,4189,"[""Phone"", ""Charger""]",4000.69,{},125663,1,Europe +2024-04-08,91172,45,"[""Monitor""]",3463.01,{},5964,0,Europe +2024-01-06,91173,8425,"[""Charger"", ""Phone""]",2472.29,"{""loyalty"": ""30%""}",247096,0,Europe +2023-11-16,91174,4063,"[""Phone"", ""Tablet"", ""Monitor""]",1600.74,{},136723,0,South America +2023-04-12,91175,5817,"[""Laptop"", ""Keyboard"", ""Monitor""]",2871.44,{},221456,1,Europe +2023-03-04,91176,2046,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4384.53,"{""promo"": ""19%""}",1357,0,Asia +2023-01-15,91177,4239,"[""Monitor""]",4651.85,{},214890,1,Europe +2024-10-23,91178,8489,"[""Keyboard""]",2218.22,"{""promo"": ""17%""}",145726,1,Europe +2023-01-16,91179,4644,"[""Tablet"", ""Headphones"", ""Charger""]",3665.92,{},152430,1,Asia +2023-07-22,91180,3916,"[""Laptop"", ""Phone"", ""Charger""]",4094.08,{},272139,0,Europe +2023-12-09,91181,5844,"[""Phone"", ""Laptop"", ""Charger""]",4656.19,"{""loyalty"": ""25%""}",186035,0,Africa +2024-08-18,91182,3876,"[""Keyboard"", ""Laptop""]",2166.94,"{""loyalty"": ""12%""}",80015,0,South America +2024-07-26,91183,948,"[""Charger""]",3380.32,"{""seasonal"": ""23%""}",260481,0,Europe +2023-07-12,91184,9245,"[""Monitor"", ""Charger"", ""Phone""]",302.45,{},82951,0,Asia +2024-09-13,91185,2242,"[""Headphones"", ""Monitor"", ""Laptop""]",4169.33,"{""seasonal"": ""10%""}",213700,0,South America +2023-09-06,91186,9261,"[""Keyboard"", ""Phone"", ""Headphones""]",2683.85,{},222039,0,Asia +2023-10-25,91187,9357,"[""Charger"", ""Headphones""]",1388.11,{},132468,0,Europe +2023-01-15,91188,4342,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2825.93,{},4631,0,Asia +2023-05-22,91189,3453,"[""Keyboard"", ""Monitor"", ""Headphones""]",2270.94,"{"""": ""6%""}",181332,1,Asia +2023-04-26,91190,9940,"[""Tablet"", ""Charger"", ""Laptop""]",1446.92,{},297557,0,Asia +2024-05-19,91191,2943,"[""Phone""]",3636.49,"{"""": ""11%""}",117734,1,Asia +2024-09-27,91192,4024,"[""Headphones"", ""Phone"", ""Keyboard""]",4428.55,{},155519,0,Europe +2023-07-13,91193,5620,"[""Wireless Mouse""]",1884.94,"{""promo"": ""5%""}",218951,1,Europe +2024-01-19,91194,5286,"[""Laptop"", ""Charger""]",4909.33,{},16653,0,Africa +2023-10-02,91195,6741,"[""Monitor"", ""Charger"", ""Laptop""]",4177.89,{},69115,0,Europe +2024-07-08,91196,5952,"[""Wireless Mouse""]",4688.51,"{""promo"": ""27%""}",241946,1,Europe +2023-12-08,91197,1922,"[""Keyboard""]",376.74,"{""promo"": ""29%""}",37761,1,Europe +2023-06-29,91198,3633,"[""Phone"", ""Keyboard""]",2878.98,{},78999,1,South America +2023-09-02,91199,6211,"[""Monitor""]",1928.62,"{"""": ""9%""}",81240,0,North America +2024-07-30,91200,8440,"[""Phone"", ""Headphones""]",4603.13,{},202143,1,Europe +2024-09-27,91201,9313,"[""Headphones"", ""Monitor"", ""Phone""]",2967.94,{},186561,0,Europe +2023-12-04,91202,6579,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2540.13,"{""loyalty"": ""19%""}",252173,1,South America +2023-12-13,91203,3916,"[""Laptop""]",3958.63,"{""seasonal"": ""12%""}",202498,1,South America +2024-11-08,91204,5838,"[""Laptop"", ""Phone"", ""Charger""]",4335.96,"{""seasonal"": ""7%""}",42672,0,Europe +2023-06-15,91205,5326,"[""Wireless Mouse""]",3537.97,"{""seasonal"": ""8%""}",277479,0,South America +2023-03-24,91206,5348,"[""Wireless Mouse""]",1562.36,"{""loyalty"": ""12%""}",65231,0,Africa +2023-09-16,91207,8717,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",667.32,"{""seasonal"": ""6%""}",7197,0,Asia +2024-01-12,91208,3752,"[""Monitor"", ""Charger"", ""Keyboard""]",766.09,{},84968,1,North America +2024-11-04,91209,545,"[""Laptop"", ""Tablet""]",3056.32,"{""promo"": ""13%""}",70076,1,Asia +2023-04-01,91210,1450,"[""Headphones""]",1485.74,"{""seasonal"": ""9%""}",171225,0,Europe +2024-08-03,91211,9572,"[""Tablet"", ""Phone""]",3222.1,{},119145,0,Africa +2023-08-27,91212,5267,"[""Phone""]",550.98,{},283450,0,Europe +2024-09-19,91213,9733,"[""Phone"", ""Charger""]",4680.68,{},247831,1,South America +2023-01-24,91214,4267,"[""Headphones"", ""Phone""]",1239.71,"{""loyalty"": ""16%""}",271011,1,North America +2023-10-10,91215,4769,"[""Phone"", ""Wireless Mouse""]",1805.95,"{""promo"": ""30%""}",257690,1,South America +2024-02-05,91216,7961,"[""Headphones"", ""Phone""]",3062.21,"{"""": ""27%""}",240221,0,Asia +2023-12-28,91217,1792,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",700.53,"{"""": ""12%""}",240333,1,North America +2023-04-08,91218,7953,"[""Headphones""]",1711.47,"{"""": ""8%""}",274248,1,Africa +2024-03-23,91219,382,"[""Wireless Mouse""]",2554.68,{},258534,0,Africa +2024-12-31,91220,5637,"[""Keyboard""]",3720.4,{},216380,1,North America +2023-05-03,91221,6045,"[""Phone"", ""Wireless Mouse""]",4121.28,{},129495,1,Africa +2023-03-31,91222,3039,"[""Tablet"", ""Charger"", ""Keyboard""]",1864.73,{},225776,0,Europe +2024-06-14,91223,3586,"[""Headphones""]",2960.75,"{""seasonal"": ""11%""}",64186,0,South America +2023-11-30,91224,45,"[""Charger""]",864.17,{},211135,1,Asia +2023-07-28,91225,932,"[""Charger""]",871.98,"{""seasonal"": ""29%""}",24749,1,Asia +2023-02-05,91226,4356,"[""Laptop""]",2324.25,{},268388,1,North America +2023-05-13,91227,2993,"[""Phone"", ""Wireless Mouse""]",3646.47,{},67073,1,Asia +2023-01-06,91228,5225,"[""Keyboard""]",1522.7,{},167550,0,South America +2024-08-31,91229,5974,"[""Headphones""]",2115.17,"{""seasonal"": ""9%""}",85131,0,South America +2024-10-03,91230,8352,"[""Keyboard"", ""Tablet""]",2815.63,{},226203,1,Africa +2023-01-14,91231,927,"[""Keyboard""]",832.82,"{""loyalty"": ""19%""}",116064,1,South America +2024-06-06,91232,9029,"[""Monitor""]",1369.89,"{""seasonal"": ""18%""}",132613,1,South America +2023-07-21,91233,5589,"[""Wireless Mouse""]",134.1,{},22380,1,Asia +2024-07-14,91234,3578,"[""Tablet""]",2716.9,"{""loyalty"": ""16%""}",167587,0,Asia +2024-03-03,91235,8968,"[""Charger"", ""Keyboard"", ""Phone""]",2666.74,{},178513,1,Asia +2024-06-05,91236,4132,"[""Wireless Mouse""]",1233.23,"{""promo"": ""8%""}",245600,0,Europe +2024-08-07,91237,971,"[""Laptop""]",873.76,{},94022,1,South America +2023-10-25,91238,6001,"[""Phone"", ""Keyboard"", ""Charger""]",4214.65,{},125125,0,Asia +2023-05-25,91239,453,"[""Wireless Mouse"", ""Keyboard""]",1379.14,{},166587,0,South America +2024-05-02,91240,1780,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",3040.51,{},61098,1,Europe +2023-06-22,91241,2229,"[""Phone""]",2575.85,{},126422,1,South America +2024-01-24,91242,1442,"[""Charger"", ""Laptop"", ""Monitor""]",3779.0,"{""promo"": ""18%""}",145242,0,Europe +2023-12-10,91243,7284,"[""Headphones"", ""Laptop"", ""Charger""]",3792.3,{},33171,1,South America +2023-12-11,91244,5311,"[""Laptop"", ""Monitor""]",4617.08,{},189549,0,Africa +2024-07-07,91245,869,"[""Monitor"", ""Laptop"", ""Charger""]",1264.38,"{""promo"": ""28%""}",15140,1,Africa +2024-07-05,91246,6593,"[""Phone"", ""Monitor""]",2683.08,"{"""": ""16%""}",177853,1,Asia +2024-09-30,91247,6923,"[""Charger"", ""Phone"", ""Laptop""]",2358.74,"{"""": ""8%""}",60016,0,Africa +2024-05-07,91248,5029,"[""Tablet"", ""Charger""]",2232.11,"{""seasonal"": ""11%""}",177683,0,North America +2023-07-12,91249,2507,"[""Charger"", ""Phone""]",4934.08,"{""loyalty"": ""22%""}",153240,0,Asia +2023-01-17,91250,8663,"[""Phone"", ""Tablet""]",597.12,{},64504,1,Asia +2024-02-29,91251,5990,"[""Charger"", ""Tablet"", ""Laptop""]",4978.08,"{""loyalty"": ""16%""}",260873,0,Africa +2024-05-28,91252,2820,"[""Wireless Mouse""]",2188.81,"{""loyalty"": ""13%""}",42534,0,Europe +2023-03-31,91253,658,"[""Headphones""]",751.97,"{""loyalty"": ""14%""}",15884,1,Europe +2024-05-30,91254,2640,"[""Headphones""]",2486.4,{},275046,0,North America +2023-06-11,91255,7,"[""Headphones"", ""Charger"", ""Phone""]",4171.09,{},244362,0,Asia +2023-11-20,91256,1156,"[""Tablet""]",4420.69,"{""seasonal"": ""9%""}",272062,1,South America +2024-09-23,91257,9755,"[""Charger"", ""Monitor""]",4774.66,{},104712,0,South America +2024-11-08,91258,222,"[""Headphones"", ""Phone""]",4041.13,"{""promo"": ""20%""}",52602,1,Asia +2024-11-03,91259,194,"[""Monitor"", ""Phone""]",1678.85,"{""loyalty"": ""12%""}",108373,0,North America +2023-03-25,91260,4693,"[""Phone"", ""Charger"", ""Headphones""]",4924.1,"{""promo"": ""26%""}",193694,1,Africa +2024-03-22,91261,3189,"[""Headphones"", ""Keyboard"", ""Laptop""]",837.4,{},128321,1,North America +2024-09-26,91262,3209,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",62.59,"{""seasonal"": ""27%""}",288011,1,Africa +2024-07-31,91263,8657,"[""Wireless Mouse""]",3497.77,"{""promo"": ""24%""}",138532,1,North America +2023-11-29,91264,1909,"[""Headphones""]",3839.18,{},255011,0,Africa +2024-08-12,91265,1462,"[""Monitor"", ""Tablet"", ""Headphones""]",1739.69,{},87302,1,North America +2023-07-04,91266,9105,"[""Headphones"", ""Monitor""]",1790.62,{},142549,0,North America +2024-02-04,91267,241,"[""Laptop""]",4373.55,{},155251,1,Asia +2023-01-11,91268,7803,"[""Phone"", ""Tablet"", ""Headphones""]",666.99,"{""promo"": ""7%""}",270465,1,Africa +2023-11-14,91269,5488,"[""Wireless Mouse""]",3333.28,"{""promo"": ""26%""}",141214,1,North America +2023-01-01,91270,9782,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",268.44,"{"""": ""12%""}",50532,1,Asia +2023-01-22,91271,5732,"[""Charger"", ""Headphones"", ""Tablet""]",1592.09,"{"""": ""19%""}",210373,1,Europe +2023-12-18,91272,2696,"[""Monitor"", ""Keyboard""]",2675.02,{},282862,0,Asia +2023-10-30,91273,3852,"[""Monitor"", ""Phone""]",1822.05,"{""loyalty"": ""15%""}",253277,0,Europe +2023-08-18,91274,3392,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4341.62,{},206889,1,Asia +2023-08-25,91275,342,"[""Headphones"", ""Wireless Mouse""]",2189.59,"{""promo"": ""29%""}",87583,1,South America +2024-11-02,91276,2214,"[""Phone"", ""Monitor""]",1108.4,{},115639,0,Europe +2023-01-07,91277,7442,"[""Headphones"", ""Keyboard""]",699.1,"{""seasonal"": ""14%""}",256944,1,Africa +2023-05-04,91278,6899,"[""Laptop"", ""Keyboard""]",2068.4,{},102455,1,Europe +2024-03-21,91279,8195,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4215.82,{},176256,1,Africa +2023-05-13,91280,3516,"[""Laptop"", ""Tablet"", ""Keyboard""]",2656.68,"{""promo"": ""16%""}",268127,1,Asia +2024-10-08,91281,4398,"[""Monitor""]",4991.91,"{""seasonal"": ""12%""}",81585,1,North America +2024-11-08,91282,1215,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",3796.96,{},217089,1,South America +2024-04-20,91283,2442,"[""Phone"", ""Tablet""]",4917.67,{},133557,1,Asia +2023-09-07,91284,5981,"[""Tablet"", ""Charger""]",4700.84,{},118821,0,South America +2024-11-07,91285,2859,"[""Keyboard"", ""Headphones"", ""Charger""]",968.43,{},157723,0,North America +2024-11-14,91286,3853,"[""Headphones""]",2950.45,"{""promo"": ""24%""}",18081,1,South America +2023-04-08,91287,9969,"[""Charger"", ""Tablet""]",4931.35,"{""loyalty"": ""19%""}",146170,0,North America +2024-05-19,91288,5967,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",854.18,"{""promo"": ""11%""}",285466,0,South America +2024-04-16,91289,4692,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2607.27,"{""promo"": ""7%""}",275283,0,North America +2024-01-14,91290,3291,"[""Laptop""]",2158.29,{},141159,1,South America +2023-08-20,91291,7982,"[""Headphones"", ""Tablet""]",1255.61,{},161631,1,Africa +2023-06-26,91292,8851,"[""Laptop""]",1560.59,{},174847,1,Europe +2024-02-28,91293,7103,"[""Laptop"", ""Charger""]",2176.59,{},87188,0,South America +2023-02-19,91294,1988,"[""Keyboard""]",450.08,{},1741,0,Europe +2023-08-06,91295,7534,"[""Laptop"", ""Headphones"", ""Monitor""]",4577.42,"{""promo"": ""26%""}",133104,1,North America +2023-02-23,91296,4345,"[""Phone"", ""Charger""]",3648.49,"{""promo"": ""6%""}",286419,1,North America +2024-07-14,91297,8455,"[""Keyboard""]",3688.26,{},186625,1,North America +2024-12-27,91298,7538,"[""Wireless Mouse""]",2781.27,{},2724,0,South America +2024-02-11,91299,5930,"[""Tablet"", ""Charger"", ""Phone""]",3208.2,"{""loyalty"": ""10%""}",293749,0,Asia +2023-02-24,91300,1298,"[""Laptop""]",4162.14,"{""seasonal"": ""14%""}",73550,0,Africa +2024-02-20,91301,5169,"[""Keyboard"", ""Charger""]",2923.6,{},184117,0,South America +2023-05-19,91302,3205,"[""Monitor"", ""Wireless Mouse""]",853.1,{},21625,0,Africa +2023-07-15,91303,4151,"[""Monitor"", ""Charger"", ""Headphones""]",4705.1,{},108293,1,Africa +2024-11-01,91304,1619,"[""Laptop"", ""Monitor"", ""Phone""]",3400.73,"{""seasonal"": ""12%""}",195335,1,Asia +2024-10-09,91305,2914,"[""Wireless Mouse""]",567.12,"{""loyalty"": ""15%""}",3901,0,Asia +2023-03-25,91306,7459,"[""Tablet"", ""Monitor"", ""Charger""]",3482.31,{},175418,1,Africa +2023-03-03,91307,1659,"[""Keyboard"", ""Phone"", ""Monitor""]",3550.03,"{""seasonal"": ""8%""}",208068,0,South America +2024-12-10,91308,6894,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1666.41,{},287259,1,Africa +2024-01-19,91309,7550,"[""Monitor"", ""Keyboard""]",1279.51,"{""seasonal"": ""27%""}",143618,1,Europe +2023-09-11,91310,8254,"[""Wireless Mouse"", ""Phone"", ""Charger""]",683.04,"{""loyalty"": ""18%""}",37021,1,Africa +2023-02-05,91311,9922,"[""Monitor"", ""Tablet""]",1016.6,"{""seasonal"": ""9%""}",162400,0,South America +2024-07-03,91312,3254,"[""Laptop"", ""Wireless Mouse""]",3960.71,"{""loyalty"": ""26%""}",277917,1,Asia +2024-12-10,91313,1640,"[""Monitor""]",3841.91,"{""promo"": ""11%""}",14198,1,Africa +2024-12-01,91314,7622,"[""Phone"", ""Monitor"", ""Laptop""]",147.5,{},274584,0,Africa +2024-10-03,91315,3785,"[""Charger""]",3162.44,"{""promo"": ""25%""}",230942,0,Africa +2024-08-07,91316,8087,"[""Tablet"", ""Phone""]",2000.49,{},154821,0,South America +2024-05-19,91317,3282,"[""Phone""]",3691.91,{},135803,1,Europe +2024-08-08,91318,3332,"[""Phone"", ""Headphones""]",1412.75,"{""loyalty"": ""22%""}",220418,0,North America +2024-10-18,91319,3665,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",541.84,{},112912,0,Europe +2023-06-17,91320,8281,"[""Wireless Mouse""]",4285.43,{},75600,0,North America +2024-02-02,91321,727,"[""Phone""]",2452.02,{},178039,0,Africa +2024-08-24,91322,4693,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3958.81,{},184414,0,Asia +2024-03-03,91323,9251,"[""Tablet"", ""Charger"", ""Phone""]",701.36,"{""seasonal"": ""20%""}",250187,1,South America +2023-01-01,91324,5207,"[""Keyboard"", ""Charger"", ""Headphones""]",4326.14,{},183701,1,Africa +2023-10-04,91325,5249,"[""Monitor"", ""Tablet"", ""Charger""]",3435.67,{},95666,0,Asia +2023-09-25,91326,3522,"[""Headphones"", ""Charger""]",4875.82,{},273205,0,Africa +2023-07-10,91327,6418,"[""Keyboard""]",3768.9,{},46503,1,South America +2023-03-02,91328,1336,"[""Charger"", ""Tablet"", ""Monitor""]",3965.8,"{""loyalty"": ""11%""}",60652,0,South America +2023-10-29,91329,6660,"[""Laptop"", ""Tablet""]",4429.95,"{""seasonal"": ""12%""}",210838,0,Europe +2024-03-28,91330,9504,"[""Monitor"", ""Charger""]",1048.57,"{""loyalty"": ""25%""}",46883,1,South America +2023-01-18,91331,668,"[""Monitor"", ""Headphones"", ""Phone""]",1239.58,{},298959,1,Europe +2024-08-08,91332,8057,"[""Phone"", ""Wireless Mouse""]",450.41,{},127974,1,North America +2023-02-27,91333,4181,"[""Laptop"", ""Headphones""]",4099.72,"{""loyalty"": ""13%""}",195579,1,North America +2024-10-22,91334,5567,"[""Laptop""]",3745.83,{},245638,1,Africa +2024-04-05,91335,5638,"[""Laptop"", ""Keyboard""]",1975.88,"{""seasonal"": ""23%""}",225014,1,South America +2023-01-15,91336,4142,"[""Wireless Mouse"", ""Monitor""]",2424.63,"{""promo"": ""7%""}",159122,1,Europe +2023-03-19,91337,5439,"[""Monitor""]",1900.41,{},207225,0,North America +2024-05-16,91338,9311,"[""Tablet"", ""Keyboard""]",2081.52,{},13570,0,North America +2024-09-01,91339,7039,"[""Keyboard"", ""Tablet""]",1743.8,"{"""": ""30%""}",164836,0,Europe +2023-03-06,91340,2476,"[""Laptop"", ""Wireless Mouse""]",2888.38,"{"""": ""21%""}",95420,1,North America +2024-12-22,91341,2325,"[""Laptop"", ""Wireless Mouse""]",655.87,{},155291,0,South America +2023-11-06,91342,3139,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3002.79,{},24400,0,Europe +2023-06-12,91343,6242,"[""Charger""]",1247.28,{},26085,0,Africa +2024-01-27,91344,48,"[""Monitor""]",1112.36,{},97190,0,Europe +2024-09-08,91345,9324,"[""Laptop"", ""Keyboard""]",2613.7,{},207885,1,North America +2023-05-15,91346,8303,"[""Wireless Mouse"", ""Headphones""]",3666.36,{},258140,1,North America +2023-04-12,91347,480,"[""Monitor"", ""Tablet""]",4020.68,{},279636,1,Africa +2024-08-16,91348,1330,"[""Wireless Mouse""]",542.93,{},98382,1,Europe +2024-01-10,91349,3107,"[""Laptop""]",4806.55,"{""promo"": ""27%""}",234575,0,South America +2023-06-10,91350,4850,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3682.85,{},249465,0,Asia +2023-11-26,91351,8328,"[""Charger"", ""Headphones"", ""Monitor""]",2238.82,"{""seasonal"": ""24%""}",139053,1,Europe +2023-05-18,91352,1512,"[""Keyboard"", ""Laptop"", ""Headphones""]",2838.95,"{"""": ""6%""}",224501,0,Africa +2024-08-15,91353,5794,"[""Keyboard"", ""Tablet"", ""Charger""]",1922.87,{},118397,1,Asia +2023-08-10,91354,6086,"[""Monitor"", ""Wireless Mouse""]",2896.63,"{""loyalty"": ""25%""}",257628,0,Europe +2023-10-20,91355,5042,"[""Monitor"", ""Laptop""]",1173.79,{},128832,0,Europe +2024-05-29,91356,5634,"[""Tablet"", ""Keyboard"", ""Phone""]",1188.0,{},19527,1,Europe +2023-11-16,91357,2833,"[""Wireless Mouse""]",3548.01,{},68007,0,Asia +2023-05-02,91358,7323,"[""Tablet"", ""Wireless Mouse""]",2733.61,"{""promo"": ""10%""}",114356,1,North America +2023-04-28,91359,541,"[""Wireless Mouse""]",4716.84,{},24542,1,Europe +2023-06-05,91360,3443,"[""Monitor"", ""Charger"", ""Phone""]",742.34,"{""promo"": ""19%""}",290562,0,South America +2024-09-30,91361,7201,"[""Keyboard""]",626.17,{},131337,1,Africa +2024-10-12,91362,195,"[""Keyboard"", ""Laptop""]",164.48,"{"""": ""5%""}",69677,0,Europe +2024-05-19,91363,7555,"[""Headphones""]",674.15,{},261008,1,Europe +2024-03-02,91364,8799,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4482.03,"{""seasonal"": ""24%""}",66438,0,Asia +2024-07-09,91365,8599,"[""Wireless Mouse""]",142.97,"{""loyalty"": ""17%""}",285858,1,Asia +2023-05-24,91366,8408,"[""Wireless Mouse"", ""Headphones""]",1327.12,{},216589,1,South America +2023-01-13,91367,1631,"[""Keyboard""]",2748.17,"{""promo"": ""14%""}",212745,0,Africa +2024-07-19,91368,6908,"[""Keyboard""]",1883.16,{},28841,1,Asia +2024-08-13,91369,3204,"[""Tablet"", ""Headphones""]",4264.28,{},225358,0,Europe +2023-12-24,91370,6835,"[""Wireless Mouse""]",2525.11,{},292341,1,Africa +2024-10-05,91371,1569,"[""Tablet"", ""Monitor""]",4308.54,{},197553,1,Europe +2023-03-27,91372,124,"[""Wireless Mouse""]",1683.51,{},241201,0,South America +2024-04-22,91373,4796,"[""Monitor"", ""Tablet""]",3369.53,"{""seasonal"": ""21%""}",81445,1,North America +2023-11-10,91374,7091,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",605.3,{},64495,0,South America +2024-03-15,91375,4252,"[""Headphones""]",4824.97,"{"""": ""24%""}",51505,0,Africa +2023-11-24,91376,517,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4193.5,{},1370,1,South America +2024-09-22,91377,881,"[""Monitor"", ""Wireless Mouse""]",3542.39,{},99707,0,North America +2024-03-08,91378,1352,"[""Keyboard""]",3005.55,{},181767,0,North America +2024-09-22,91379,2557,"[""Tablet""]",143.79,"{""promo"": ""27%""}",263326,0,South America +2024-09-08,91380,537,"[""Tablet"", ""Headphones"", ""Keyboard""]",1997.86,{},12941,1,Europe +2023-05-31,91381,1466,"[""Charger"", ""Monitor"", ""Keyboard""]",3283.09,"{""seasonal"": ""20%""}",39589,0,Asia +2024-02-17,91382,5103,"[""Headphones"", ""Phone""]",4781.15,"{""seasonal"": ""15%""}",142248,0,Africa +2024-11-21,91383,8767,"[""Charger""]",838.01,{},60786,0,North America +2024-09-30,91384,4741,"[""Laptop"", ""Monitor""]",4381.9,"{""loyalty"": ""21%""}",107828,1,Europe +2023-04-15,91385,6607,"[""Headphones"", ""Phone"", ""Monitor""]",4434.02,"{""seasonal"": ""25%""}",41765,0,Asia +2023-03-29,91386,5598,"[""Charger"", ""Laptop"", ""Keyboard""]",3575.19,{},110487,0,North America +2023-07-15,91387,4734,"[""Wireless Mouse"", ""Tablet""]",3158.33,"{""loyalty"": ""24%""}",107252,0,North America +2023-12-28,91388,9527,"[""Laptop""]",2234.26,"{""loyalty"": ""23%""}",292427,0,Europe +2023-02-23,91389,8004,"[""Laptop"", ""Wireless Mouse""]",874.33,"{""promo"": ""24%""}",249331,1,Europe +2023-06-20,91390,9457,"[""Monitor"", ""Headphones"", ""Laptop""]",902.03,"{""loyalty"": ""30%""}",111581,0,North America +2023-08-01,91391,9205,"[""Laptop""]",4865.55,"{""loyalty"": ""20%""}",280447,0,Africa +2023-01-01,91392,6436,"[""Phone"", ""Monitor"", ""Headphones""]",2428.56,{},24176,1,North America +2024-07-28,91393,9472,"[""Charger"", ""Laptop"", ""Tablet""]",3449.38,{},247674,0,South America +2024-07-30,91394,211,"[""Headphones"", ""Laptop""]",1318.29,"{"""": ""9%""}",293086,0,Europe +2023-12-03,91395,5071,"[""Tablet"", ""Charger"", ""Headphones""]",3726.04,{},66361,0,Africa +2024-07-04,91396,5508,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",1667.85,{},168750,0,Africa +2024-03-10,91397,3108,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4510.08,{},15118,0,Asia +2024-04-26,91398,8078,"[""Laptop""]",302.94,{},103560,0,Africa +2024-06-17,91399,4086,"[""Wireless Mouse"", ""Headphones""]",3761.97,{},185386,1,Europe +2023-12-17,91400,5501,"[""Wireless Mouse"", ""Phone""]",120.71,"{""loyalty"": ""10%""}",27982,0,Africa +2024-10-26,91401,6761,"[""Laptop"", ""Headphones""]",1832.82,{},47394,0,Asia +2023-04-14,91402,3858,"[""Keyboard""]",1397.06,{},177417,0,Europe +2024-04-08,91403,972,"[""Wireless Mouse"", ""Monitor""]",787.38,{},248949,0,Asia +2023-05-29,91404,3957,"[""Headphones"", ""Phone""]",1666.36,"{""loyalty"": ""28%""}",132028,1,North America +2023-07-25,91405,2156,"[""Monitor"", ""Tablet""]",239.69,"{"""": ""18%""}",183053,0,Europe +2023-05-01,91406,3469,"[""Headphones""]",274.81,{},259363,1,Asia +2023-02-22,91407,2996,"[""Headphones""]",577.09,{},176254,1,Europe +2023-09-04,91408,7156,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3737.02,"{""loyalty"": ""16%""}",78751,0,Europe +2024-03-31,91409,4577,"[""Phone"", ""Headphones""]",2782.51,{},33273,0,Africa +2023-03-17,91410,5156,"[""Headphones"", ""Tablet""]",2849.47,{},156150,1,Europe +2023-03-25,91411,5468,"[""Keyboard""]",1673.34,"{""promo"": ""16%""}",83494,0,South America +2023-04-29,91412,5448,"[""Charger"", ""Phone""]",3073.39,{},114311,0,Africa +2024-03-04,91413,2442,"[""Headphones"", ""Laptop""]",1740.96,"{""loyalty"": ""14%""}",24894,0,Europe +2024-08-11,91414,602,"[""Headphones""]",3461.84,"{""loyalty"": ""14%""}",73396,1,Asia +2023-06-02,91415,6470,"[""Laptop"", ""Headphones"", ""Keyboard""]",4247.29,"{""loyalty"": ""13%""}",213928,1,Africa +2023-10-22,91416,3238,"[""Keyboard"", ""Laptop"", ""Charger""]",3597.02,{},43712,1,Asia +2023-08-05,91417,1690,"[""Wireless Mouse"", ""Charger""]",2900.35,{},230056,1,North America +2023-02-22,91418,3040,"[""Wireless Mouse""]",1170.55,{},179702,0,South America +2024-03-03,91419,7449,"[""Laptop""]",1867.28,"{"""": ""30%""}",65628,1,South America +2023-05-01,91420,1910,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1872.01,{},131613,1,Europe +2024-02-19,91421,8378,"[""Tablet"", ""Wireless Mouse""]",640.23,{},275124,0,South America +2023-07-23,91422,6598,"[""Tablet""]",2078.92,{},102263,0,South America +2024-11-11,91423,6328,"[""Headphones""]",2994.61,"{"""": ""27%""}",166591,0,South America +2024-11-10,91424,1977,"[""Monitor"", ""Phone""]",2765.1,{},238570,0,Africa +2024-06-21,91425,9825,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2063.18,"{"""": ""12%""}",20867,1,North America +2024-01-25,91426,2389,"[""Keyboard"", ""Headphones"", ""Charger""]",2010.96,{},187786,1,Europe +2024-11-09,91427,2799,"[""Laptop"", ""Keyboard"", ""Monitor""]",510.77,{},212276,0,North America +2023-12-13,91428,4739,"[""Keyboard""]",898.43,{},180839,1,Africa +2024-08-05,91429,2634,"[""Phone"", ""Laptop""]",4706.94,{},165030,0,Asia +2023-08-03,91430,5364,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",3246.49,"{"""": ""23%""}",103599,1,Africa +2024-05-27,91431,1940,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",443.2,"{"""": ""6%""}",185534,0,Asia +2023-05-29,91432,7736,"[""Charger"", ""Tablet""]",2855.93,"{"""": ""6%""}",162764,0,North America +2024-10-18,91433,7323,"[""Tablet"", ""Laptop""]",296.97,"{""promo"": ""5%""}",55044,0,North America +2023-05-30,91434,594,"[""Keyboard""]",4725.1,{},52334,0,Asia +2024-06-29,91435,4146,"[""Laptop"", ""Headphones""]",130.02,{},233964,1,South America +2024-01-18,91436,323,"[""Phone"", ""Tablet""]",2138.57,{},205858,1,Africa +2024-08-27,91437,7534,"[""Keyboard"", ""Phone"", ""Headphones""]",548.32,"{""promo"": ""13%""}",206989,0,North America +2024-03-13,91438,2838,"[""Headphones""]",2056.54,{},268704,1,Africa +2024-07-27,91439,6469,"[""Charger""]",268.77,{},173460,0,North America +2023-07-30,91440,8173,"[""Charger"", ""Headphones"", ""Phone""]",452.69,"{"""": ""8%""}",235585,0,South America +2023-02-09,91441,5301,"[""Headphones"", ""Keyboard"", ""Charger""]",65.46,{},290705,0,Europe +2023-03-26,91442,676,"[""Tablet""]",3743.99,{},18195,0,Europe +2023-03-07,91443,7575,"[""Phone""]",1617.43,{},4314,1,South America +2024-11-29,91444,1468,"[""Headphones"", ""Phone""]",4415.66,"{""promo"": ""7%""}",204383,0,Africa +2024-09-15,91445,9499,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",3914.09,{},212016,1,North America +2024-04-25,91446,9627,"[""Laptop"", ""Phone""]",3910.48,{},249969,1,Europe +2023-03-01,91447,7984,"[""Laptop"", ""Monitor""]",1446.01,"{"""": ""8%""}",266012,0,Africa +2024-07-19,91448,7716,"[""Keyboard"", ""Headphones"", ""Phone""]",1089.32,"{"""": ""14%""}",211011,1,Africa +2023-12-08,91449,5380,"[""Keyboard"", ""Charger"", ""Laptop""]",798.46,"{""seasonal"": ""29%""}",43716,1,Africa +2023-09-17,91450,6117,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",415.81,"{""seasonal"": ""29%""}",178612,1,North America +2024-07-31,91451,3597,"[""Tablet"", ""Phone"", ""Headphones""]",4731.74,{},168221,0,Africa +2024-07-10,91452,8464,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",744.52,"{"""": ""20%""}",202951,0,Asia +2023-08-26,91453,7666,"[""Monitor""]",2913.41,"{"""": ""13%""}",64445,0,South America +2023-07-11,91454,4378,"[""Keyboard"", ""Wireless Mouse""]",2128.79,{},209176,0,Africa +2024-10-28,91455,2546,"[""Laptop"", ""Tablet""]",372.3,{},133742,0,Asia +2023-06-22,91456,511,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",1586.84,"{""promo"": ""14%""}",108379,1,Europe +2024-04-28,91457,9115,"[""Headphones"", ""Keyboard""]",2731.11,"{"""": ""19%""}",196729,1,Europe +2024-11-11,91458,1983,"[""Laptop""]",633.62,{},8758,1,Europe +2024-06-21,91459,8277,"[""Wireless Mouse"", ""Headphones""]",3346.26,{},262062,1,Africa +2023-08-10,91460,2063,"[""Monitor"", ""Headphones"", ""Charger""]",3987.15,"{""promo"": ""11%""}",182967,0,Africa +2023-09-01,91461,5869,"[""Laptop""]",4537.5,"{"""": ""8%""}",250559,0,South America +2024-07-15,91462,3840,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1815.61,{},96122,1,North America +2023-03-03,91463,3906,"[""Wireless Mouse"", ""Laptop""]",2005.08,"{""loyalty"": ""5%""}",119585,0,Europe +2024-04-17,91464,1752,"[""Phone"", ""Headphones""]",341.7,{},109726,0,Asia +2023-01-31,91465,8520,"[""Laptop""]",3812.01,"{""promo"": ""15%""}",228490,0,Asia +2023-05-22,91466,7053,"[""Keyboard""]",2121.84,{},154047,0,North America +2023-04-19,91467,2956,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3057.61,"{"""": ""15%""}",50236,0,North America +2023-05-23,91468,6565,"[""Monitor"", ""Headphones""]",3320.65,{},138998,1,Asia +2024-10-22,91469,4685,"[""Laptop""]",1245.61,{},49592,0,South America +2024-06-01,91470,4787,"[""Phone"", ""Charger""]",308.04,{},127381,0,North America +2024-02-12,91471,4898,"[""Tablet""]",2369.25,{},46951,1,Asia +2024-11-11,91472,9806,"[""Charger"", ""Monitor"", ""Tablet""]",4996.37,"{""promo"": ""14%""}",19737,1,Asia +2024-07-23,91473,4345,"[""Monitor""]",3214.65,{},84384,1,Asia +2023-12-16,91474,9114,"[""Keyboard"", ""Wireless Mouse""]",2113.79,"{""promo"": ""29%""}",81997,1,Africa +2023-12-05,91475,5510,"[""Keyboard""]",3818.06,{},269266,1,Europe +2024-07-18,91476,4217,"[""Phone""]",3222.41,"{""loyalty"": ""26%""}",27832,1,Africa +2024-05-18,91477,7890,"[""Phone"", ""Headphones""]",421.02,{},162780,1,North America +2024-07-16,91478,6831,"[""Charger""]",4784.95,{},249326,1,South America +2023-08-27,91479,2061,"[""Laptop"", ""Monitor""]",4727.2,{},82940,1,North America +2024-01-06,91480,2295,"[""Charger""]",3519.34,"{""seasonal"": ""27%""}",232305,1,North America +2024-10-30,91481,4102,"[""Charger"", ""Wireless Mouse""]",2950.08,{},146639,1,Europe +2023-08-04,91482,4900,"[""Charger"", ""Phone""]",2602.72,"{""promo"": ""10%""}",128920,0,Asia +2024-03-16,91483,4231,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",762.2,"{""promo"": ""12%""}",254657,0,South America +2023-02-14,91484,9418,"[""Tablet"", ""Monitor""]",1018.02,{},61078,0,North America +2023-06-10,91485,6898,"[""Headphones""]",3493.82,"{""promo"": ""18%""}",241717,0,North America +2023-04-22,91486,8927,"[""Headphones"", ""Keyboard""]",1471.73,"{""loyalty"": ""16%""}",200145,0,Africa +2023-09-26,91487,272,"[""Phone"", ""Charger"", ""Headphones""]",1345.74,"{""seasonal"": ""20%""}",268019,1,North America +2024-01-10,91488,7023,"[""Wireless Mouse"", ""Tablet""]",2656.04,"{""seasonal"": ""8%""}",61469,1,Asia +2023-02-13,91489,4807,"[""Laptop""]",2342.37,{},223959,0,Asia +2024-08-08,91490,6061,"[""Headphones"", ""Laptop""]",4212.84,{},207046,1,Europe +2024-09-03,91491,6769,"[""Laptop"", ""Phone"", ""Keyboard""]",1008.75,"{"""": ""5%""}",3728,1,Asia +2024-09-22,91492,7096,"[""Keyboard""]",4874.61,{},29599,1,Europe +2024-03-12,91493,5127,"[""Keyboard"", ""Laptop""]",2544.09,"{""loyalty"": ""18%""}",65134,0,South America +2023-02-11,91494,3459,"[""Wireless Mouse"", ""Tablet""]",4238.35,"{"""": ""8%""}",292072,0,South America +2024-06-25,91495,1921,"[""Keyboard""]",2990.5,{},204639,1,Africa +2023-06-06,91496,9262,"[""Laptop"", ""Charger"", ""Keyboard""]",2410.35,{},28231,1,South America +2024-06-06,91497,4029,"[""Tablet""]",3486.19,{},249104,1,Asia +2024-03-20,91498,4097,"[""Headphones""]",3967.85,"{"""": ""9%""}",144631,0,Europe +2023-09-10,91499,1447,"[""Laptop"", ""Wireless Mouse""]",4598.83,{},40399,1,Asia +2023-05-09,91500,3589,"[""Tablet""]",2752.98,"{"""": ""16%""}",200222,1,Europe +2024-09-26,91501,6664,"[""Laptop"", ""Charger"", ""Phone""]",4759.72,{},167187,1,South America +2024-04-22,91502,3069,"[""Keyboard"", ""Charger""]",1371.76,"{""promo"": ""12%""}",241959,1,Europe +2024-08-03,91503,6313,"[""Headphones"", ""Charger"", ""Monitor""]",2345.68,{},164080,1,Europe +2023-03-22,91504,5316,"[""Phone"", ""Charger""]",4455.7,"{""promo"": ""12%""}",39749,1,Asia +2023-09-16,91505,2352,"[""Charger""]",917.46,"{""promo"": ""10%""}",196387,0,Asia +2023-03-04,91506,9840,"[""Headphones"", ""Charger"", ""Laptop""]",4643.15,"{""seasonal"": ""25%""}",144733,1,North America +2024-10-17,91507,4333,"[""Charger"", ""Monitor""]",4587.94,"{"""": ""22%""}",245127,1,Asia +2023-10-13,91508,2185,"[""Keyboard""]",2152.93,"{""seasonal"": ""24%""}",242679,1,Europe +2023-01-09,91509,5545,"[""Monitor""]",2796.35,"{""promo"": ""14%""}",286824,0,Asia +2024-10-05,91510,43,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3254.49,{},233149,0,Europe +2024-03-02,91511,3805,"[""Laptop"", ""Tablet"", ""Monitor""]",4154.67,"{"""": ""29%""}",209428,0,Europe +2024-08-12,91512,1496,"[""Phone"", ""Headphones""]",350.39,{},299315,0,Asia +2023-09-23,91513,2915,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4016.21,"{"""": ""13%""}",220627,1,Asia +2023-03-15,91514,1170,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1011.72,"{""loyalty"": ""23%""}",100632,1,Africa +2023-04-25,91515,557,"[""Laptop"", ""Tablet""]",1664.89,"{"""": ""18%""}",283019,1,Europe +2023-10-28,91516,1009,"[""Headphones"", ""Wireless Mouse""]",931.9,{},141323,0,Europe +2023-06-15,91517,5680,"[""Charger"", ""Headphones""]",4897.12,{},229045,1,Asia +2023-08-07,91518,6148,"[""Laptop""]",4746.73,"{"""": ""11%""}",218980,0,North America +2024-10-17,91519,1258,"[""Charger"", ""Keyboard"", ""Phone""]",1458.28,{},168863,0,Asia +2024-10-17,91520,689,"[""Charger""]",3180.66,{},288737,1,Africa +2024-12-09,91521,3307,"[""Wireless Mouse""]",991.95,"{"""": ""7%""}",211965,0,Africa +2023-09-29,91522,5652,"[""Wireless Mouse"", ""Phone""]",1857.97,"{"""": ""29%""}",4933,1,Asia +2023-02-20,91523,5447,"[""Charger""]",3086.67,"{""seasonal"": ""9%""}",169999,1,Europe +2024-06-24,91524,2368,"[""Headphones"", ""Keyboard""]",3300.57,"{"""": ""6%""}",58412,0,Asia +2024-08-28,91525,2485,"[""Tablet"", ""Charger""]",1203.57,{},135036,0,Europe +2024-12-07,91526,9799,"[""Laptop"", ""Tablet""]",3766.54,{},14306,1,Africa +2023-09-25,91527,3967,"[""Phone"", ""Wireless Mouse""]",4943.77,"{"""": ""8%""}",169548,0,North America +2024-02-08,91528,283,"[""Charger"", ""Wireless Mouse""]",1504.5,"{"""": ""21%""}",297038,1,Africa +2023-01-24,91529,1415,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2019.61,"{""seasonal"": ""19%""}",82202,1,South America +2024-11-18,91530,2301,"[""Charger""]",1005.69,"{""promo"": ""17%""}",108954,1,Asia +2023-05-01,91531,6194,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",547.0,"{""promo"": ""21%""}",101667,0,North America +2023-12-06,91532,1935,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2577.75,{},232278,1,South America +2024-12-16,91533,5957,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",616.91,{},214297,0,Europe +2024-05-10,91534,2650,"[""Headphones"", ""Monitor""]",3088.86,"{""promo"": ""20%""}",233632,1,North America +2024-01-09,91535,7655,"[""Headphones""]",3077.51,"{""seasonal"": ""14%""}",192209,0,South America +2024-05-16,91536,1272,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",3304.08,{},29719,0,Africa +2023-03-07,91537,8768,"[""Wireless Mouse"", ""Monitor""]",3656.71,{},219862,0,North America +2023-11-03,91538,1580,"[""Laptop""]",4341.01,{},95865,1,Africa +2024-04-17,91539,4263,"[""Monitor""]",4604.95,"{""loyalty"": ""8%""}",80176,1,South America +2023-09-18,91540,4053,"[""Phone""]",1129.72,"{""promo"": ""28%""}",293758,0,Asia +2024-10-01,91541,262,"[""Monitor"", ""Keyboard"", ""Tablet""]",118.37,{},296957,0,South America +2024-12-30,91542,8973,"[""Laptop"", ""Charger""]",3445.93,"{"""": ""9%""}",249971,0,Asia +2023-03-05,91543,772,"[""Charger""]",2728.6,{},221866,0,North America +2024-12-19,91544,9304,"[""Charger"", ""Headphones""]",2287.51,{},141027,0,Africa +2024-02-11,91545,133,"[""Charger"", ""Monitor""]",982.62,{},245716,1,North America +2023-08-07,91546,8148,"[""Headphones""]",3425.83,"{""promo"": ""15%""}",294232,0,Asia +2023-12-28,91547,5976,"[""Headphones"", ""Monitor"", ""Phone""]",3952.79,"{""loyalty"": ""15%""}",211082,0,North America +2024-05-06,91548,6054,"[""Laptop"", ""Charger"", ""Phone""]",4142.82,"{"""": ""11%""}",233656,1,Europe +2024-03-18,91549,5043,"[""Monitor"", ""Keyboard""]",3869.37,"{""promo"": ""23%""}",111700,1,South America +2023-10-30,91550,9730,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3232.8,{},261398,1,Europe +2024-02-02,91551,6155,"[""Wireless Mouse""]",3742.1,{},54827,1,Europe +2024-10-04,91552,1216,"[""Headphones"", ""Monitor"", ""Tablet""]",3736.96,"{"""": ""17%""}",229107,0,North America +2024-04-23,91553,9910,"[""Monitor"", ""Headphones""]",4961.92,{},1676,1,Africa +2024-06-08,91554,685,"[""Tablet"", ""Monitor"", ""Phone""]",2248.16,{},169211,0,Africa +2024-07-06,91555,9313,"[""Keyboard""]",1180.76,{},279802,0,Africa +2023-03-17,91556,8071,"[""Tablet"", ""Wireless Mouse""]",2391.78,"{""seasonal"": ""9%""}",223554,0,South America +2024-11-03,91557,1491,"[""Wireless Mouse""]",4229.53,{},134895,0,Europe +2023-11-27,91558,6493,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1341.35,"{"""": ""11%""}",298798,0,Africa +2024-06-07,91559,9114,"[""Monitor"", ""Tablet"", ""Headphones""]",4874.2,{},255078,0,Africa +2023-04-21,91560,143,"[""Laptop"", ""Phone"", ""Monitor""]",2293.82,"{""loyalty"": ""21%""}",1717,1,Europe +2024-05-18,91561,5231,"[""Keyboard"", ""Wireless Mouse""]",3710.57,"{""loyalty"": ""29%""}",228120,1,North America +2023-12-21,91562,3713,"[""Charger"", ""Headphones"", ""Tablet""]",3094.42,{},69535,1,Africa +2023-11-16,91563,2157,"[""Tablet"", ""Keyboard""]",4906.76,{},42547,1,Europe +2024-09-12,91564,4147,"[""Keyboard"", ""Monitor"", ""Headphones""]",561.82,"{""loyalty"": ""28%""}",135493,0,Africa +2023-11-22,91565,6804,"[""Monitor"", ""Phone"", ""Headphones""]",4781.45,{},6778,1,Asia +2023-03-18,91566,799,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1791.96,"{""promo"": ""7%""}",283275,0,South America +2023-03-08,91567,8991,"[""Keyboard"", ""Phone""]",4508.6,{},143779,1,Africa +2023-03-25,91568,6605,"[""Phone""]",587.99,"{"""": ""26%""}",264952,0,Europe +2024-12-08,91569,356,"[""Wireless Mouse""]",3526.58,{},137513,0,Asia +2023-05-20,91570,4165,"[""Headphones"", ""Tablet""]",4098.97,"{""promo"": ""12%""}",167011,1,North America +2023-11-20,91571,6564,"[""Headphones"", ""Laptop"", ""Monitor""]",939.38,"{""seasonal"": ""21%""}",293547,1,North America +2023-08-07,91572,7725,"[""Phone"", ""Monitor""]",2907.14,{},179713,1,Asia +2023-06-14,91573,2780,"[""Keyboard"", ""Phone""]",463.56,"{"""": ""20%""}",237083,1,South America +2024-07-04,91574,2334,"[""Laptop"", ""Wireless Mouse""]",1623.17,{},89849,1,North America +2023-02-08,91575,8466,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4112.59,"{""seasonal"": ""25%""}",254945,1,Asia +2024-03-03,91576,9142,"[""Headphones"", ""Keyboard"", ""Charger""]",1150.06,{},186529,1,South America +2024-08-31,91577,6733,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4277.84,{},89499,1,Europe +2024-06-02,91578,8355,"[""Charger""]",2581.45,"{""promo"": ""22%""}",220361,1,Africa +2024-07-03,91579,4763,"[""Headphones""]",2984.53,"{"""": ""8%""}",199815,1,South America +2024-04-24,91580,2354,"[""Wireless Mouse"", ""Tablet""]",4824.52,"{""loyalty"": ""7%""}",203563,1,South America +2023-03-28,91581,3328,"[""Phone"", ""Laptop""]",4364.62,{},179126,0,North America +2024-05-16,91582,6644,"[""Phone"", ""Monitor"", ""Charger""]",4830.67,"{""loyalty"": ""5%""}",104495,1,Asia +2023-04-10,91583,6435,"[""Charger""]",1012.88,"{""seasonal"": ""14%""}",75735,1,Europe +2024-05-26,91584,6544,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3036.27,{},54852,1,South America +2023-03-02,91585,9276,"[""Laptop"", ""Phone""]",2444.11,{},175665,0,North America +2023-09-02,91586,9007,"[""Monitor"", ""Laptop"", ""Phone""]",791.55,{},41377,0,Africa +2024-05-10,91587,9244,"[""Keyboard"", ""Phone""]",3146.34,"{""seasonal"": ""27%""}",174377,0,North America +2024-05-08,91588,1393,"[""Phone""]",1698.64,"{""seasonal"": ""10%""}",66496,1,Asia +2024-03-02,91589,2045,"[""Charger"", ""Headphones"", ""Keyboard""]",4097.12,"{""seasonal"": ""21%""}",59601,0,Africa +2024-08-24,91590,3000,"[""Keyboard""]",432.25,{},197035,1,Asia +2024-11-30,91591,9218,"[""Laptop"", ""Charger""]",2546.65,{},188857,1,Africa +2024-02-10,91592,6233,"[""Phone"", ""Laptop"", ""Charger""]",530.13,{},13190,1,Africa +2024-02-20,91593,7361,"[""Laptop"", ""Charger"", ""Monitor""]",888.68,"{""promo"": ""27%""}",179301,1,South America +2023-05-29,91594,892,"[""Phone""]",1547.91,{},18757,0,South America +2023-04-17,91595,2075,"[""Laptop"", ""Tablet""]",2399.98,{},93733,1,Asia +2024-09-29,91596,3336,"[""Keyboard"", ""Headphones""]",2731.99,"{""promo"": ""29%""}",205857,1,South America +2024-04-04,91597,4436,"[""Headphones""]",835.43,"{""loyalty"": ""18%""}",116561,0,Europe +2024-12-09,91598,3126,"[""Monitor""]",871.64,{},39592,0,Europe +2024-11-20,91599,4327,"[""Tablet"", ""Monitor""]",90.28,{},217205,1,South America +2023-03-31,91600,3305,"[""Laptop"", ""Headphones""]",3595.47,"{""promo"": ""30%""}",109446,1,South America +2023-07-14,91601,4285,"[""Charger"", ""Wireless Mouse""]",4210.14,{},32867,0,Europe +2023-08-17,91602,5291,"[""Tablet"", ""Monitor""]",974.99,{},177596,0,South America +2023-10-16,91603,63,"[""Monitor"", ""Phone"", ""Laptop""]",4644.38,"{""loyalty"": ""12%""}",280682,0,South America +2024-10-16,91604,3321,"[""Headphones""]",4506.37,{},264483,1,North America +2024-06-29,91605,9010,"[""Tablet""]",3038.67,"{""seasonal"": ""21%""}",194166,1,Africa +2023-11-16,91606,7796,"[""Wireless Mouse"", ""Laptop""]",1692.36,"{""promo"": ""11%""}",36003,1,Africa +2023-08-21,91607,3540,"[""Headphones""]",4747.96,"{""loyalty"": ""28%""}",20428,0,Europe +2023-08-27,91608,6915,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3851.6,"{""promo"": ""21%""}",8119,1,Africa +2023-02-26,91609,1830,"[""Headphones"", ""Laptop""]",3991.92,{},94565,0,North America +2023-03-22,91610,397,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4105.24,"{""promo"": ""9%""}",29667,0,South America +2024-11-30,91611,7669,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3988.61,{},128814,0,South America +2024-07-24,91612,3284,"[""Phone"", ""Laptop"", ""Tablet""]",1998.45,{},294164,1,North America +2023-11-24,91613,4073,"[""Wireless Mouse"", ""Charger""]",2083.04,"{"""": ""29%""}",141485,1,North America +2024-11-11,91614,5908,"[""Keyboard"", ""Charger""]",3627.91,"{"""": ""26%""}",78878,1,Africa +2024-09-02,91615,7565,"[""Keyboard"", ""Wireless Mouse""]",4991.25,{},240439,1,Africa +2023-08-02,91616,3827,"[""Phone"", ""Laptop"", ""Charger""]",3379.33,"{""seasonal"": ""30%""}",20758,1,North America +2024-08-03,91617,215,"[""Keyboard""]",2796.65,"{""promo"": ""9%""}",120614,0,Africa +2023-01-28,91618,3910,"[""Laptop"", ""Keyboard"", ""Tablet""]",721.2,"{""loyalty"": ""28%""}",145538,0,Asia +2023-03-04,91619,9572,"[""Monitor"", ""Keyboard"", ""Charger""]",3891.95,"{""loyalty"": ""6%""}",288511,0,North America +2024-07-16,91620,5786,"[""Headphones"", ""Monitor"", ""Laptop""]",4238.94,"{"""": ""12%""}",160986,1,Asia +2023-05-13,91621,9725,"[""Charger"", ""Laptop"", ""Headphones""]",4020.3,"{""loyalty"": ""23%""}",95675,0,North America +2023-01-08,91622,1336,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4826.59,{},208109,1,Africa +2023-01-28,91623,5063,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",3087.93,"{""promo"": ""27%""}",154440,1,Europe +2023-08-30,91624,5972,"[""Monitor"", ""Charger""]",3700.81,"{"""": ""10%""}",131500,1,Africa +2023-11-02,91625,2139,"[""Keyboard"", ""Charger"", ""Phone""]",3225.91,"{"""": ""14%""}",15488,1,South America +2024-05-09,91626,6330,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4388.7,"{""promo"": ""30%""}",104883,0,South America +2024-09-01,91627,3091,"[""Headphones"", ""Wireless Mouse""]",4830.54,"{""loyalty"": ""8%""}",277743,0,South America +2024-03-12,91628,3626,"[""Laptop""]",1739.02,{},182522,1,Europe +2023-07-01,91629,5881,"[""Headphones"", ""Laptop"", ""Keyboard""]",3932.96,"{"""": ""22%""}",198734,1,Africa +2023-05-03,91630,1654,"[""Laptop"", ""Keyboard"", ""Tablet""]",1410.44,"{""loyalty"": ""6%""}",250643,1,Africa +2023-09-02,91631,2004,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",808.12,{},281388,1,Europe +2023-06-09,91632,6496,"[""Headphones""]",2360.19,{},62389,1,Africa +2024-08-25,91633,7220,"[""Keyboard"", ""Charger""]",1765.79,"{""loyalty"": ""18%""}",238152,1,North America +2024-04-13,91634,8004,"[""Phone""]",482.65,{},174710,0,Asia +2024-02-28,91635,9025,"[""Phone"", ""Headphones""]",3358.99,{},262703,1,South America +2024-06-16,91636,9343,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1944.92,{},196228,1,Africa +2024-04-21,91637,5978,"[""Tablet"", ""Keyboard""]",3943.5,{},59445,0,Africa +2024-12-17,91638,4385,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4195.33,"{""seasonal"": ""6%""}",240629,1,Asia +2023-06-24,91639,3259,"[""Headphones"", ""Laptop""]",1666.15,"{""promo"": ""6%""}",297315,0,Africa +2024-07-28,91640,5005,"[""Phone"", ""Laptop""]",2123.36,"{"""": ""16%""}",216768,1,Europe +2023-06-03,91641,8054,"[""Laptop"", ""Wireless Mouse""]",635.01,{},49063,0,South America +2023-07-17,91642,2370,"[""Phone""]",1281.01,"{"""": ""5%""}",170379,0,North America +2024-12-26,91643,4748,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1542.34,"{""loyalty"": ""5%""}",145911,1,North America +2024-06-22,91644,2095,"[""Keyboard""]",1230.25,{},25788,1,Africa +2024-06-21,91645,3556,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1780.15,"{""seasonal"": ""14%""}",59430,1,Asia +2023-08-02,91646,8779,"[""Charger""]",3913.7,{},8602,1,South America +2024-08-29,91647,9052,"[""Tablet""]",1318.04,"{""seasonal"": ""18%""}",15922,1,South America +2024-10-04,91648,139,"[""Phone"", ""Tablet""]",1133.63,"{""seasonal"": ""24%""}",10527,0,Europe +2024-01-21,91649,6392,"[""Monitor""]",518.08,{},82787,1,Europe +2024-08-05,91650,7917,"[""Keyboard"", ""Tablet""]",1475.39,"{""loyalty"": ""27%""}",102024,0,Europe +2024-03-08,91651,1709,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4937.65,{},123800,1,South America +2023-03-27,91652,7865,"[""Monitor""]",498.01,{},10664,0,Europe +2024-09-21,91653,8009,"[""Wireless Mouse""]",397.12,"{""loyalty"": ""21%""}",130102,1,North America +2024-04-27,91654,3362,"[""Phone""]",2146.48,{},206512,0,South America +2024-04-23,91655,3274,"[""Charger"", ""Keyboard"", ""Headphones""]",480.31,{},44377,1,Asia +2023-07-25,91656,4215,"[""Headphones"", ""Keyboard"", ""Monitor""]",3867.54,{},62591,0,Asia +2024-02-19,91657,1479,"[""Monitor"", ""Tablet""]",1780.99,"{""seasonal"": ""19%""}",267108,0,Asia +2023-02-06,91658,1115,"[""Charger"", ""Tablet""]",3699.49,{},140781,0,South America +2024-01-23,91659,1226,"[""Laptop"", ""Monitor""]",4521.9,{},227451,0,South America +2024-06-18,91660,678,"[""Monitor"", ""Phone"", ""Laptop""]",3165.12,{},4246,1,Europe +2023-10-01,91661,3384,"[""Phone"", ""Laptop""]",2328.97,{},162309,0,South America +2024-10-12,91662,8992,"[""Laptop""]",3172.2,{},151160,0,South America +2023-02-16,91663,7563,"[""Phone"", ""Keyboard""]",3013.16,"{"""": ""14%""}",270087,1,Africa +2024-07-28,91664,4088,"[""Phone"", ""Tablet"", ""Keyboard""]",4278.6,{},208127,0,Asia +2023-02-02,91665,8211,"[""Headphones"", ""Keyboard""]",2142.7,"{"""": ""7%""}",133805,0,North America +2023-12-17,91666,9845,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1246.02,{},156889,0,North America +2023-07-12,91667,6552,"[""Phone"", ""Laptop""]",2105.68,"{""seasonal"": ""25%""}",256064,1,Europe +2023-01-14,91668,5453,"[""Wireless Mouse""]",1168.38,{},131577,1,Asia +2023-06-21,91669,87,"[""Phone""]",4301.25,"{"""": ""19%""}",36986,1,Africa +2023-05-16,91670,5678,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1435.27,"{"""": ""24%""}",51432,1,Asia +2024-02-15,91671,8510,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1044.75,{},75471,0,Asia +2024-06-12,91672,6151,"[""Keyboard""]",2953.13,"{""loyalty"": ""15%""}",132255,0,Europe +2023-05-01,91673,1452,"[""Headphones""]",2115.64,"{""promo"": ""8%""}",41510,1,South America +2024-05-26,91674,3400,"[""Charger"", ""Monitor""]",2090.46,"{"""": ""9%""}",255602,1,North America +2023-04-20,91675,4829,"[""Tablet"", ""Wireless Mouse""]",57.33,"{""seasonal"": ""14%""}",218527,1,Asia +2023-01-04,91676,8956,"[""Monitor"", ""Laptop""]",2939.45,"{""promo"": ""19%""}",31198,1,Europe +2023-12-20,91677,2297,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3948.56,{},204291,0,Asia +2023-02-10,91678,5200,"[""Charger"", ""Laptop"", ""Keyboard""]",4444.96,"{""seasonal"": ""17%""}",186960,1,Africa +2024-10-14,91679,7189,"[""Charger""]",507.54,"{""loyalty"": ""7%""}",162504,1,Europe +2023-06-16,91680,3006,"[""Charger"", ""Keyboard"", ""Headphones""]",4885.39,{},187629,0,Europe +2024-03-06,91681,1655,"[""Charger"", ""Keyboard""]",545.33,"{""seasonal"": ""17%""}",230349,1,North America +2023-05-06,91682,2991,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",3067.56,{},257239,0,Europe +2023-12-29,91683,6432,"[""Headphones"", ""Keyboard""]",4874.24,{},23278,1,Asia +2024-01-18,91684,6248,"[""Charger"", ""Tablet"", ""Keyboard""]",2014.9,"{"""": ""15%""}",200134,0,Africa +2023-04-01,91685,4307,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1604.17,"{""seasonal"": ""9%""}",203968,0,Africa +2023-08-20,91686,867,"[""Laptop"", ""Monitor""]",3500.35,"{""seasonal"": ""18%""}",16713,0,South America +2023-10-24,91687,524,"[""Phone"", ""Laptop""]",2592.96,"{""seasonal"": ""29%""}",122400,1,Africa +2024-06-21,91688,155,"[""Wireless Mouse""]",1502.35,{},288923,1,South America +2024-12-12,91689,3427,"[""Wireless Mouse""]",2402.65,"{""seasonal"": ""25%""}",51020,1,North America +2023-08-12,91690,8437,"[""Tablet"", ""Headphones"", ""Monitor""]",3400.84,"{""seasonal"": ""28%""}",6928,0,Africa +2023-02-21,91691,9292,"[""Phone"", ""Charger"", ""Tablet""]",53.62,{},74247,1,North America +2023-03-18,91692,9588,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4346.78,{},63785,0,North America +2023-06-01,91693,6883,"[""Tablet""]",4877.05,"{"""": ""12%""}",75809,0,Asia +2024-08-01,91694,2822,"[""Monitor"", ""Keyboard"", ""Phone""]",636.38,"{""loyalty"": ""14%""}",270106,1,North America +2023-07-06,91695,2256,"[""Keyboard"", ""Tablet""]",641.69,{},253584,1,Africa +2024-12-27,91696,4147,"[""Laptop"", ""Charger""]",759.49,{},293211,1,South America +2024-02-10,91697,1730,"[""Headphones"", ""Tablet""]",4063.98,{},181694,0,Europe +2023-08-15,91698,7708,"[""Charger""]",4502.63,"{""promo"": ""27%""}",263333,0,Europe +2023-02-27,91699,4133,"[""Headphones"", ""Keyboard""]",3458.51,"{""promo"": ""17%""}",228955,1,Africa +2023-04-12,91700,1256,"[""Phone"", ""Keyboard""]",411.59,"{""loyalty"": ""9%""}",288697,0,South America +2023-01-02,91701,5267,"[""Charger"", ""Tablet""]",2609.35,"{""seasonal"": ""7%""}",66438,0,Asia +2023-01-03,91702,471,"[""Keyboard""]",4202.68,"{"""": ""23%""}",166964,1,Europe +2023-03-03,91703,4420,"[""Monitor""]",4672.55,"{"""": ""17%""}",84264,1,North America +2024-12-08,91704,190,"[""Tablet"", ""Keyboard""]",2335.18,{},231240,0,Europe +2024-09-30,91705,2040,"[""Monitor""]",193.11,{},252299,0,South America +2024-12-20,91706,4646,"[""Monitor""]",2366.82,"{"""": ""11%""}",14233,1,Asia +2023-02-20,91707,7883,"[""Laptop"", ""Monitor""]",3655.54,{},82287,1,Europe +2023-12-04,91708,7977,"[""Charger"", ""Phone""]",3897.11,{},175874,1,Europe +2024-10-20,91709,2277,"[""Keyboard"", ""Laptop""]",744.49,"{""promo"": ""21%""}",15665,1,Europe +2024-11-25,91710,4909,"[""Keyboard"", ""Laptop"", ""Monitor""]",4750.01,{},118569,0,Asia +2024-11-06,91711,9839,"[""Charger"", ""Headphones""]",1170.65,{},289765,0,Asia +2024-11-14,91712,7654,"[""Keyboard"", ""Wireless Mouse""]",1368.28,{},46970,0,North America +2023-04-06,91713,5018,"[""Monitor""]",1248.15,"{""loyalty"": ""29%""}",105427,0,North America +2023-01-21,91714,5080,"[""Wireless Mouse""]",872.8,{},299607,0,Africa +2024-11-30,91715,6334,"[""Charger"", ""Phone""]",3306.89,{},185662,1,South America +2023-09-06,91716,5341,"[""Laptop"", ""Charger""]",2008.26,{},88786,1,South America +2024-12-14,91717,4502,"[""Keyboard"", ""Phone"", ""Laptop""]",4116.66,{},152557,1,Asia +2024-05-24,91718,1061,"[""Monitor""]",548.32,{},281354,0,Africa +2024-11-05,91719,4142,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4860.68,"{""seasonal"": ""13%""}",158522,1,Africa +2023-12-18,91720,2145,"[""Headphones"", ""Phone""]",1106.15,{},290255,1,South America +2024-08-23,91721,9166,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3263.4,{},240679,0,South America +2023-03-11,91722,7399,"[""Keyboard"", ""Laptop"", ""Phone""]",3877.46,"{"""": ""20%""}",151619,1,Asia +2023-05-02,91723,9126,"[""Monitor"", ""Wireless Mouse""]",3262.05,"{"""": ""24%""}",41916,0,Europe +2023-06-28,91724,5897,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",3455.99,"{""promo"": ""14%""}",282850,0,North America +2023-03-21,91725,5529,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",304.95,"{""promo"": ""16%""}",150863,1,Europe +2024-09-13,91726,3634,"[""Wireless Mouse"", ""Phone""]",2692.56,{},41952,1,Asia +2024-03-27,91727,4533,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3871.67,"{""promo"": ""22%""}",205151,1,Asia +2024-11-19,91728,6208,"[""Laptop""]",535.75,"{""seasonal"": ""28%""}",242630,0,Asia +2024-01-13,91729,8280,"[""Wireless Mouse"", ""Monitor""]",1815.09,{},17678,1,North America +2023-05-30,91730,1017,"[""Phone"", ""Monitor""]",1363.73,"{"""": ""7%""}",227744,1,Africa +2023-07-16,91731,6855,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",4732.46,{},218661,0,Europe +2024-12-12,91732,1038,"[""Tablet"", ""Monitor"", ""Keyboard""]",2874.23,{},292185,1,Africa +2023-06-10,91733,8520,"[""Headphones""]",927.07,"{""promo"": ""17%""}",17050,1,South America +2023-09-17,91734,2649,"[""Laptop""]",2478.16,{},263574,0,Europe +2023-04-22,91735,1882,"[""Charger""]",735.07,"{""seasonal"": ""27%""}",214437,1,Asia +2023-10-28,91736,1336,"[""Laptop""]",3372.59,{},266166,0,North America +2024-07-15,91737,6039,"[""Headphones"", ""Keyboard""]",2752.27,"{"""": ""30%""}",185186,1,Asia +2024-10-31,91738,5532,"[""Headphones"", ""Phone"", ""Tablet""]",784.33,{},244206,0,Asia +2024-07-24,91739,7538,"[""Monitor"", ""Keyboard"", ""Tablet""]",3226.7,{},251759,1,South America +2024-03-10,91740,6594,"[""Phone""]",1263.39,{},153709,0,South America +2024-10-03,91741,2806,"[""Monitor""]",4404.81,"{""seasonal"": ""24%""}",132636,0,North America +2023-12-22,91742,2459,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2676.39,"{""seasonal"": ""11%""}",31095,1,North America +2023-09-22,91743,5039,"[""Tablet""]",466.25,"{""loyalty"": ""20%""}",265869,0,Africa +2023-02-19,91744,955,"[""Headphones"", ""Charger""]",2837.51,{},262338,1,South America +2024-02-27,91745,7945,"[""Monitor"", ""Phone"", ""Headphones""]",3819.44,{},171331,0,Asia +2023-05-08,91746,2827,"[""Phone"", ""Charger""]",3850.35,{},183895,1,South America +2024-08-19,91747,1022,"[""Monitor"", ""Keyboard""]",1276.51,"{"""": ""5%""}",50425,0,Europe +2024-05-21,91748,5092,"[""Keyboard"", ""Charger""]",1559.13,"{"""": ""10%""}",83493,1,South America +2023-12-13,91749,8386,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3941.17,"{""promo"": ""11%""}",151376,0,Europe +2023-01-22,91750,526,"[""Keyboard"", ""Wireless Mouse""]",1198.23,"{""seasonal"": ""15%""}",32556,1,North America +2024-06-04,91751,9105,"[""Laptop"", ""Charger"", ""Tablet""]",585.87,"{"""": ""16%""}",46038,1,Africa +2023-03-15,91752,3836,"[""Tablet"", ""Keyboard"", ""Laptop""]",1711.03,"{""promo"": ""19%""}",284475,1,North America +2024-03-30,91753,5005,"[""Phone"", ""Headphones""]",861.42,"{""seasonal"": ""17%""}",63465,1,South America +2024-10-14,91754,3234,"[""Laptop"", ""Keyboard""]",502.94,{},34406,1,Asia +2024-05-04,91755,8864,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",4177.01,{},76845,1,South America +2024-04-17,91756,3953,"[""Charger"", ""Keyboard""]",1294.23,"{"""": ""7%""}",63945,0,South America +2023-07-13,91757,1403,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1569.54,{},133053,0,Europe +2023-08-02,91758,3815,"[""Laptop""]",1410.73,"{""seasonal"": ""20%""}",209454,0,North America +2024-11-05,91759,600,"[""Tablet"", ""Headphones""]",4869.28,"{"""": ""19%""}",53387,0,Africa +2023-02-25,91760,4272,"[""Laptop"", ""Tablet"", ""Charger""]",385.92,{},295718,1,North America +2023-04-29,91761,9934,"[""Laptop"", ""Wireless Mouse""]",4821.71,{},251119,1,Asia +2023-09-11,91762,8473,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",619.05,{},117105,1,Europe +2024-07-23,91763,5205,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1012.09,{},46947,0,Europe +2024-10-24,91764,1444,"[""Wireless Mouse""]",3338.12,"{""promo"": ""27%""}",119375,0,Africa +2023-02-24,91765,936,"[""Monitor"", ""Headphones""]",1355.04,"{"""": ""22%""}",102134,0,Africa +2024-08-04,91766,6720,"[""Keyboard"", ""Tablet""]",371.49,"{"""": ""17%""}",250223,0,North America +2024-10-29,91767,4542,"[""Keyboard"", ""Charger"", ""Headphones""]",3435.6,{},201433,0,Africa +2024-12-12,91768,8726,"[""Charger"", ""Tablet"", ""Headphones""]",2555.15,"{""promo"": ""19%""}",256640,0,North America +2024-06-07,91769,1779,"[""Phone""]",2165.34,{},127490,0,North America +2023-07-07,91770,1766,"[""Charger"", ""Laptop""]",2297.22,{},3025,0,North America +2023-10-12,91771,650,"[""Headphones""]",1403.05,"{""seasonal"": ""14%""}",129409,0,North America +2023-08-14,91772,4839,"[""Wireless Mouse"", ""Charger""]",917.06,"{""seasonal"": ""9%""}",21426,1,Africa +2023-06-28,91773,2623,"[""Tablet"", ""Monitor""]",2980.61,"{""promo"": ""25%""}",161219,1,Africa +2024-04-08,91774,6343,"[""Keyboard""]",97.88,{},40804,1,Asia +2023-07-26,91775,8260,"[""Laptop""]",3590.98,"{""promo"": ""19%""}",85191,1,Asia +2023-05-01,91776,3909,"[""Keyboard"", ""Headphones"", ""Tablet""]",2922.11,{},222240,0,Asia +2023-08-13,91777,6707,"[""Keyboard"", ""Laptop""]",4325.6,{},13537,0,South America +2024-12-16,91778,9142,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1233.69,"{""promo"": ""7%""}",125913,1,North America +2024-06-27,91779,4425,"[""Headphones""]",4850.68,{},202621,1,South America +2023-09-17,91780,6726,"[""Phone"", ""Keyboard"", ""Laptop""]",2224.15,{},271717,0,North America +2024-04-11,91781,9446,"[""Keyboard"", ""Charger""]",1485.87,{},289507,0,Europe +2024-06-29,91782,1427,"[""Monitor"", ""Keyboard"", ""Charger""]",1966.22,{},253659,1,North America +2023-05-23,91783,6478,"[""Wireless Mouse""]",167.82,{},11799,0,South America +2023-10-15,91784,3021,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1299.84,"{""seasonal"": ""26%""}",130642,1,Asia +2023-01-12,91785,1451,"[""Phone""]",4415.86,"{""seasonal"": ""24%""}",254783,0,Africa +2024-12-13,91786,7351,"[""Monitor"", ""Phone""]",4152.94,"{""promo"": ""27%""}",192655,0,Asia +2024-05-03,91787,1097,"[""Tablet"", ""Phone""]",2852.57,"{""promo"": ""29%""}",21812,1,Asia +2023-08-22,91788,340,"[""Wireless Mouse""]",3068.98,{},71948,0,Africa +2023-12-19,91789,4858,"[""Monitor"", ""Keyboard"", ""Laptop""]",668.1,{},7337,1,Africa +2023-09-05,91790,1477,"[""Phone"", ""Monitor""]",3111.59,"{"""": ""17%""}",252251,0,Asia +2023-09-14,91791,1026,"[""Charger""]",4999.51,{},174048,1,Africa +2023-07-13,91792,9999,"[""Headphones""]",224.85,{},205443,1,Europe +2024-07-14,91793,7408,"[""Wireless Mouse"", ""Laptop""]",2665.92,{},215006,1,Asia +2023-01-07,91794,790,"[""Keyboard"", ""Monitor"", ""Tablet""]",3758.79,"{"""": ""29%""}",218863,0,Asia +2024-01-07,91795,1255,"[""Monitor"", ""Charger""]",4646.9,{},229028,1,South America +2023-07-08,91796,9750,"[""Phone""]",2689.15,{},14839,0,Europe +2023-01-18,91797,8110,"[""Keyboard"", ""Wireless Mouse""]",4963.26,{},218042,1,South America +2024-05-29,91798,8716,"[""Laptop"", ""Monitor""]",4093.4,{},196878,1,North America +2023-09-12,91799,711,"[""Monitor"", ""Keyboard"", ""Headphones""]",3131.04,{},8392,0,Europe +2024-09-13,91800,1260,"[""Charger"", ""Phone"", ""Tablet""]",2639.39,{},70968,1,North America +2023-06-12,91801,7300,"[""Headphones""]",2135.9,"{""promo"": ""15%""}",90174,1,North America +2023-10-15,91802,8579,"[""Wireless Mouse""]",3791.72,"{""loyalty"": ""17%""}",16603,0,North America +2023-01-03,91803,4860,"[""Tablet"", ""Headphones"", ""Phone""]",2577.79,"{""loyalty"": ""23%""}",69461,0,Asia +2024-10-30,91804,5142,"[""Tablet""]",3259.68,"{""promo"": ""19%""}",57448,1,Africa +2023-11-24,91805,4694,"[""Tablet"", ""Keyboard"", ""Monitor""]",2406.52,{},196360,0,Asia +2023-07-08,91806,1408,"[""Wireless Mouse""]",3944.04,{},167274,0,South America +2023-07-10,91807,73,"[""Laptop""]",2758.51,"{""seasonal"": ""9%""}",57371,0,North America +2023-07-26,91808,8700,"[""Laptop""]",322.45,"{""promo"": ""6%""}",124074,0,Asia +2023-11-08,91809,7692,"[""Monitor""]",2162.25,{},154400,1,North America +2023-04-24,91810,8765,"[""Headphones"", ""Phone"", ""Laptop""]",3422.4,{},199130,1,Europe +2023-07-13,91811,7646,"[""Laptop"", ""Headphones"", ""Tablet""]",1013.26,"{""loyalty"": ""13%""}",125812,1,Africa +2023-08-30,91812,5381,"[""Monitor"", ""Tablet"", ""Charger""]",1931.63,{},97489,1,North America +2024-06-13,91813,3491,"[""Headphones"", ""Phone""]",1107.69,"{"""": ""21%""}",206851,1,Asia +2023-05-09,91814,4930,"[""Laptop""]",855.36,"{""seasonal"": ""20%""}",228092,0,North America +2024-10-20,91815,5176,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1124.5,"{"""": ""29%""}",154043,0,Europe +2023-08-08,91816,1044,"[""Headphones"", ""Wireless Mouse""]",1555.2,{},89660,1,Asia +2023-12-15,91817,4810,"[""Charger"", ""Keyboard"", ""Laptop""]",499.64,"{"""": ""30%""}",206841,0,Europe +2024-05-24,91818,7798,"[""Headphones""]",715.78,{},30387,1,South America +2023-02-23,91819,5915,"[""Phone"", ""Wireless Mouse""]",457.75,{},222651,1,North America +2023-03-04,91820,1672,"[""Laptop""]",4873.23,"{""promo"": ""7%""}",201242,1,Asia +2023-09-16,91821,8656,"[""Tablet"", ""Phone""]",1894.95,{},139760,0,South America +2024-12-06,91822,8998,"[""Monitor"", ""Wireless Mouse""]",3542.97,"{"""": ""8%""}",220291,0,Europe +2023-12-25,91823,2169,"[""Laptop"", ""Monitor"", ""Headphones""]",3004.76,"{"""": ""5%""}",202779,1,Asia +2024-03-05,91824,5887,"[""Tablet"", ""Charger"", ""Monitor""]",4833.2,{},6753,1,Asia +2023-09-11,91825,7510,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3829.64,{},299054,0,South America +2024-06-03,91826,703,"[""Tablet"", ""Charger""]",1231.84,{},34258,1,North America +2024-09-13,91827,1429,"[""Phone""]",1811.05,{},25041,1,Europe +2024-05-24,91828,1790,"[""Wireless Mouse"", ""Charger""]",3598.48,{},42705,0,Asia +2023-05-20,91829,776,"[""Tablet"", ""Keyboard""]",1853.88,{},206279,0,Europe +2024-06-04,91830,15,"[""Laptop""]",2875.31,"{""promo"": ""26%""}",69464,1,Asia +2023-06-26,91831,6044,"[""Wireless Mouse"", ""Laptop""]",2749.56,"{"""": ""30%""}",32311,1,Europe +2024-01-12,91832,6100,"[""Keyboard""]",314.23,"{""loyalty"": ""29%""}",31174,1,Asia +2024-06-13,91833,1023,"[""Charger"", ""Wireless Mouse""]",2388.99,"{""seasonal"": ""14%""}",282772,1,South America +2024-12-10,91834,9573,"[""Wireless Mouse""]",3584.57,"{""loyalty"": ""25%""}",218903,1,Asia +2024-06-13,91835,3776,"[""Headphones""]",625.02,{},55189,0,Europe +2023-07-17,91836,4818,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3893.31,{},143397,1,Asia +2023-01-19,91837,4257,"[""Phone""]",3680.19,"{""promo"": ""30%""}",59044,0,South America +2023-10-20,91838,335,"[""Laptop"", ""Headphones"", ""Tablet""]",1213.14,{},211732,0,South America +2023-08-01,91839,7026,"[""Phone"", ""Charger"", ""Headphones""]",587.45,"{""promo"": ""12%""}",13640,1,South America +2023-05-25,91840,4632,"[""Laptop"", ""Charger"", ""Tablet""]",3463.59,"{""seasonal"": ""17%""}",175992,1,Asia +2024-07-02,91841,1974,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1254.75,"{""seasonal"": ""8%""}",183450,0,Europe +2024-10-08,91842,5951,"[""Laptop"", ""Headphones""]",2274.82,"{""loyalty"": ""21%""}",52944,1,Africa +2024-04-04,91843,1192,"[""Tablet"", ""Headphones""]",4710.9,{},23038,1,Asia +2024-07-18,91844,8176,"[""Phone""]",2476.7,"{""promo"": ""22%""}",151171,1,South America +2023-10-12,91845,3154,"[""Wireless Mouse""]",3401.16,{},241683,1,Africa +2023-01-29,91846,2929,"[""Headphones""]",4130.75,"{""seasonal"": ""21%""}",253749,1,Asia +2023-06-26,91847,1066,"[""Laptop"", ""Headphones""]",946.12,{},173019,1,Europe +2023-09-15,91848,6068,"[""Headphones"", ""Wireless Mouse""]",3554.76,"{""loyalty"": ""10%""}",215451,0,Asia +2024-09-25,91849,2807,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4220.33,"{""seasonal"": ""28%""}",21429,0,Africa +2023-02-22,91850,9424,"[""Monitor""]",3184.6,{},277726,0,Africa +2024-07-11,91851,2060,"[""Tablet""]",1090.18,{},207608,1,Africa +2023-12-28,91852,9979,"[""Tablet""]",493.82,"{""seasonal"": ""13%""}",273376,0,Africa +2024-08-22,91853,7238,"[""Keyboard"", ""Laptop"", ""Phone""]",2653.07,"{""promo"": ""26%""}",97256,0,Asia +2023-11-07,91854,6463,"[""Wireless Mouse""]",4970.85,"{""seasonal"": ""20%""}",82745,0,Europe +2023-11-05,91855,8907,"[""Monitor"", ""Charger"", ""Headphones""]",3526.94,{},145621,0,Europe +2024-05-07,91856,5160,"[""Charger"", ""Laptop"", ""Keyboard""]",3055.63,"{"""": ""20%""}",247241,1,South America +2023-02-21,91857,1668,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4675.8,{},90067,1,Europe +2023-10-23,91858,1430,"[""Wireless Mouse""]",3260.8,"{"""": ""6%""}",95455,0,North America +2024-11-22,91859,5224,"[""Laptop"", ""Wireless Mouse""]",4682.0,"{""promo"": ""27%""}",174976,0,South America +2023-01-06,91860,9026,"[""Tablet"", ""Phone"", ""Charger""]",345.43,"{""seasonal"": ""26%""}",201159,1,Africa +2024-10-15,91861,5093,"[""Headphones"", ""Keyboard""]",4148.94,{},243249,1,North America +2023-10-24,91862,3168,"[""Charger""]",3284.12,"{""seasonal"": ""5%""}",281387,1,South America +2023-04-09,91863,9793,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3506.14,"{""promo"": ""22%""}",145340,1,North America +2023-01-25,91864,4074,"[""Keyboard"", ""Laptop""]",1698.08,{},225015,0,North America +2023-07-29,91865,2795,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4919.87,{},133826,1,South America +2024-06-18,91866,6986,"[""Charger""]",999.23,{},73157,1,South America +2024-01-21,91867,8440,"[""Headphones"", ""Monitor""]",2972.73,"{""seasonal"": ""16%""}",123412,0,Europe +2023-07-17,91868,7015,"[""Headphones""]",3892.96,"{""promo"": ""29%""}",179648,0,Asia +2024-03-24,91869,1968,"[""Laptop""]",3285.78,"{""loyalty"": ""12%""}",34454,1,Africa +2023-06-09,91870,8079,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",105.47,{},83132,0,Africa +2023-02-18,91871,6116,"[""Laptop""]",2796.26,"{""promo"": ""17%""}",101589,1,South America +2023-01-17,91872,3628,"[""Monitor""]",3559.78,{},193910,1,South America +2023-01-16,91873,5940,"[""Monitor""]",1444.26,{},105923,1,Asia +2024-01-30,91874,4465,"[""Charger"", ""Tablet""]",999.86,"{""seasonal"": ""12%""}",254919,0,Europe +2023-07-15,91875,3000,"[""Keyboard"", ""Tablet""]",3501.24,"{""promo"": ""16%""}",167867,0,Africa +2024-07-25,91876,4533,"[""Wireless Mouse"", ""Headphones""]",2385.93,{},174157,0,South America +2023-07-24,91877,4553,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2627.58,{},19974,0,Africa +2023-01-12,91878,5451,"[""Wireless Mouse""]",2923.67,{},216739,1,North America +2023-02-16,91879,7535,"[""Phone"", ""Charger""]",4566.96,{},174075,0,Africa +2023-04-13,91880,6399,"[""Monitor"", ""Wireless Mouse""]",4599.93,"{"""": ""7%""}",117214,1,South America +2023-04-21,91881,5307,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",631.01,"{"""": ""6%""}",214725,1,Africa +2023-08-24,91882,9858,"[""Keyboard""]",1457.83,{},121021,1,Asia +2023-12-03,91883,4329,"[""Headphones"", ""Keyboard""]",4643.85,"{""loyalty"": ""22%""}",170157,1,North America +2023-06-15,91884,5361,"[""Headphones"", ""Tablet""]",762.5,"{"""": ""10%""}",162631,1,Asia +2023-02-14,91885,635,"[""Charger"", ""Tablet""]",1809.86,"{""seasonal"": ""28%""}",192233,0,Africa +2023-01-27,91886,2328,"[""Laptop""]",4264.7,{},297186,0,Asia +2024-11-14,91887,6482,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",753.56,{},101855,0,South America +2024-10-08,91888,7642,"[""Monitor"", ""Tablet""]",132.6,{},116597,0,North America +2024-10-12,91889,5561,"[""Tablet"", ""Headphones""]",1236.7,{},289356,1,Asia +2023-05-01,91890,7649,"[""Laptop"", ""Charger""]",599.66,{},166093,0,Africa +2023-06-29,91891,9269,"[""Headphones""]",3294.55,"{""seasonal"": ""24%""}",44057,1,North America +2023-09-28,91892,2069,"[""Monitor"", ""Laptop""]",2968.37,{},160756,0,Europe +2024-06-02,91893,2581,"[""Wireless Mouse""]",4204.46,"{"""": ""17%""}",191388,1,Asia +2023-11-26,91894,5214,"[""Charger""]",3615.47,{},126557,0,South America +2024-05-25,91895,3443,"[""Headphones""]",4073.89,"{""seasonal"": ""25%""}",120198,1,Europe +2024-05-26,91896,8130,"[""Phone""]",4888.45,"{""promo"": ""8%""}",62671,0,South America +2023-07-19,91897,1232,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",709.78,{},246028,0,South America +2024-09-23,91898,1580,"[""Wireless Mouse""]",1297.31,{},136899,1,Africa +2023-03-25,91899,4757,"[""Laptop""]",1302.72,"{"""": ""25%""}",212313,1,North America +2023-09-17,91900,1779,"[""Wireless Mouse"", ""Phone""]",4140.77,{},286158,0,South America +2024-01-23,91901,8402,"[""Laptop"", ""Monitor""]",77.9,{},128980,0,Asia +2023-04-19,91902,4189,"[""Tablet""]",2945.53,"{""loyalty"": ""20%""}",83810,1,Europe +2024-12-08,91903,3235,"[""Charger""]",946.08,{},234366,1,Africa +2024-04-20,91904,1816,"[""Tablet""]",902.92,"{"""": ""29%""}",54157,1,Asia +2024-04-06,91905,7760,"[""Phone""]",3705.71,"{""seasonal"": ""16%""}",100446,1,Africa +2023-07-23,91906,7056,"[""Monitor""]",1370.68,"{""promo"": ""8%""}",208756,0,North America +2023-02-21,91907,3504,"[""Keyboard"", ""Headphones""]",4961.96,{},249683,1,Africa +2023-12-31,91908,2646,"[""Monitor"", ""Wireless Mouse""]",1729.56,{},113506,0,Asia +2024-07-18,91909,7229,"[""Keyboard"", ""Tablet""]",2849.4,{},146711,0,Asia +2024-06-21,91910,2418,"[""Keyboard""]",1409.89,{},246719,1,South America +2023-05-25,91911,4104,"[""Monitor"", ""Keyboard""]",1032.13,"{"""": ""7%""}",72339,0,South America +2023-06-26,91912,8970,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",3814.69,"{""seasonal"": ""23%""}",117347,0,North America +2024-05-20,91913,4775,"[""Keyboard"", ""Laptop"", ""Charger""]",2899.94,{},85488,1,Asia +2024-08-12,91914,3285,"[""Phone"", ""Headphones"", ""Charger""]",2186.85,{},276465,1,North America +2023-02-26,91915,2332,"[""Monitor"", ""Keyboard""]",1224.52,{},156993,1,Europe +2024-06-03,91916,8237,"[""Laptop""]",268.66,"{"""": ""15%""}",240765,1,Africa +2023-08-24,91917,3638,"[""Phone""]",1324.72,"{""loyalty"": ""22%""}",32323,0,Europe +2024-09-10,91918,4375,"[""Charger"", ""Laptop""]",3826.32,{},239014,1,South America +2024-01-01,91919,3932,"[""Keyboard"", ""Monitor"", ""Laptop""]",1334.85,"{"""": ""27%""}",48182,0,Europe +2024-06-01,91920,4526,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1693.58,{},291689,0,South America +2024-02-18,91921,3673,"[""Charger"", ""Headphones"", ""Phone""]",4881.49,"{""seasonal"": ""23%""}",273320,1,Europe +2024-07-26,91922,8514,"[""Charger"", ""Phone""]",4169.32,{},181328,0,Europe +2024-03-16,91923,506,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",2247.2,{},127162,0,North America +2023-09-25,91924,4004,"[""Headphones""]",4255.17,"{""seasonal"": ""10%""}",208113,1,North America +2023-03-30,91925,2936,"[""Tablet"", ""Keyboard"", ""Charger""]",4727.63,{},83247,1,South America +2023-05-22,91926,5158,"[""Tablet""]",2440.71,{},74168,0,Asia +2024-06-28,91927,280,"[""Phone""]",4710.78,"{""loyalty"": ""18%""}",147922,1,Europe +2023-09-07,91928,2380,"[""Charger""]",3927.71,{},233097,1,Africa +2024-12-07,91929,1708,"[""Monitor"", ""Keyboard"", ""Tablet""]",1801.8,{},107244,1,Europe +2023-09-06,91930,9831,"[""Keyboard""]",2112.02,"{""seasonal"": ""7%""}",120066,0,South America +2023-05-02,91931,7864,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",285.43,{},230035,0,Africa +2023-01-06,91932,2269,"[""Keyboard""]",1754.66,"{""seasonal"": ""12%""}",190327,1,Europe +2024-02-11,91933,5863,"[""Phone"", ""Headphones"", ""Monitor""]",3348.83,"{""promo"": ""7%""}",76440,0,Africa +2024-02-08,91934,357,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4599.63,"{""seasonal"": ""12%""}",6138,0,Europe +2023-08-26,91935,3332,"[""Keyboard""]",1620.29,"{""loyalty"": ""13%""}",115299,0,Asia +2024-02-15,91936,4707,"[""Wireless Mouse""]",2390.53,"{"""": ""26%""}",259670,1,Asia +2024-09-17,91937,5644,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1445.93,"{"""": ""20%""}",39473,0,South America +2023-12-30,91938,2706,"[""Tablet"", ""Wireless Mouse""]",3172.74,{},280183,1,Europe +2024-06-05,91939,4912,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",282.07,"{""seasonal"": ""19%""}",189085,1,North America +2023-04-05,91940,2600,"[""Phone"", ""Laptop"", ""Keyboard""]",2318.79,{},60158,1,South America +2024-02-25,91941,9065,"[""Charger"", ""Tablet"", ""Keyboard""]",2645.39,"{"""": ""7%""}",155169,1,North America +2023-01-29,91942,4542,"[""Charger"", ""Keyboard"", ""Phone""]",2551.33,{},47491,1,Africa +2024-09-03,91943,3578,"[""Laptop"", ""Charger"", ""Keyboard""]",4821.16,{},74395,1,Europe +2023-11-07,91944,77,"[""Monitor"", ""Keyboard""]",4607.87,{},51595,1,North America +2023-06-21,91945,4123,"[""Phone"", ""Keyboard"", ""Headphones""]",3285.11,{},112989,1,Europe +2024-08-27,91946,1978,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",4822.53,{},55263,1,Europe +2024-08-21,91947,7469,"[""Phone""]",1727.27,{},184446,1,Africa +2024-07-26,91948,7266,"[""Headphones"", ""Laptop""]",1292.13,"{""promo"": ""11%""}",91271,0,South America +2024-11-20,91949,3410,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3636.27,{},212348,1,South America +2024-04-13,91950,9551,"[""Laptop"", ""Charger""]",1658.8,{},278166,0,Africa +2023-09-04,91951,3023,"[""Tablet""]",3319.14,"{""promo"": ""11%""}",248916,1,South America +2023-01-10,91952,9088,"[""Keyboard""]",4023.81,{},249007,1,Africa +2023-07-31,91953,3051,"[""Phone"", ""Wireless Mouse""]",3051.87,"{""loyalty"": ""13%""}",8899,1,Europe +2024-05-06,91954,3364,"[""Keyboard"", ""Headphones"", ""Monitor""]",4087.98,"{""seasonal"": ""18%""}",44446,0,North America +2023-04-27,91955,3886,"[""Tablet""]",4853.14,{},37074,1,Africa +2024-03-15,91956,3351,"[""Monitor"", ""Headphones""]",693.41,{},187573,1,Europe +2023-06-18,91957,1712,"[""Phone"", ""Headphones"", ""Tablet""]",4013.33,"{"""": ""10%""}",130239,0,North America +2023-09-25,91958,3702,"[""Headphones""]",4753.89,{},125428,1,Africa +2023-01-31,91959,5686,"[""Charger""]",549.41,{},222219,0,Europe +2023-05-20,91960,8238,"[""Headphones"", ""Laptop""]",3895.9,{},73569,0,Europe +2024-01-07,91961,4369,"[""Tablet"", ""Wireless Mouse""]",4110.93,"{""promo"": ""29%""}",214766,0,Africa +2024-09-20,91962,3971,"[""Phone"", ""Monitor""]",4025.5,{},112367,1,North America +2023-10-31,91963,6188,"[""Monitor"", ""Wireless Mouse""]",4046.67,{},60845,1,Asia +2023-07-16,91964,1908,"[""Headphones""]",2589.19,{},166834,1,North America +2024-05-06,91965,7740,"[""Monitor""]",289.72,{},257553,1,Asia +2023-06-06,91966,1729,"[""Tablet"", ""Charger""]",4449.36,"{""seasonal"": ""13%""}",18214,1,North America +2024-07-02,91967,425,"[""Phone"", ""Tablet"", ""Laptop""]",1712.29,"{""loyalty"": ""26%""}",105323,0,Asia +2024-09-26,91968,6392,"[""Headphones"", ""Tablet"", ""Keyboard""]",1886.38,"{""promo"": ""12%""}",242266,1,Africa +2024-05-10,91969,626,"[""Wireless Mouse"", ""Headphones""]",3638.39,{},283774,1,North America +2023-07-30,91970,4308,"[""Phone"", ""Keyboard"", ""Tablet""]",110.21,"{""seasonal"": ""5%""}",42085,1,South America +2023-06-21,91971,4641,"[""Phone"", ""Keyboard""]",1789.86,{},231739,0,North America +2023-12-19,91972,7615,"[""Charger""]",3594.36,{},276315,0,Africa +2023-01-04,91973,5034,"[""Charger""]",3508.49,"{"""": ""11%""}",182026,1,South America +2023-04-01,91974,4277,"[""Headphones""]",3703.3,"{"""": ""6%""}",230086,1,Europe +2024-05-02,91975,1975,"[""Charger"", ""Wireless Mouse""]",3174.65,{},229540,0,Europe +2023-08-24,91976,7728,"[""Monitor"", ""Wireless Mouse""]",4782.36,"{"""": ""9%""}",288747,0,Africa +2023-04-28,91977,6743,"[""Tablet"", ""Wireless Mouse""]",4679.64,{},145775,1,Europe +2023-03-15,91978,8794,"[""Monitor""]",4343.43,"{""promo"": ""19%""}",32347,1,Africa +2024-01-01,91979,4134,"[""Tablet"", ""Keyboard""]",1662.25,{},239942,1,Europe +2023-11-15,91980,5468,"[""Keyboard""]",1874.07,"{""promo"": ""10%""}",91152,0,Asia +2023-04-12,91981,5899,"[""Monitor""]",2857.69,{},173154,1,Europe +2023-02-23,91982,7742,"[""Charger""]",943.23,{},10311,1,Asia +2024-12-01,91983,6396,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",203.21,{},158527,1,North America +2024-01-22,91984,3047,"[""Wireless Mouse"", ""Tablet""]",2669.95,"{""promo"": ""28%""}",9597,1,South America +2023-10-05,91985,9114,"[""Tablet"", ""Headphones""]",3136.76,{},150534,0,Europe +2024-03-10,91986,2069,"[""Monitor""]",2537.49,{},219023,1,Africa +2024-08-29,91987,7838,"[""Keyboard""]",4243.55,{},193280,1,Asia +2023-11-25,91988,3329,"[""Headphones"", ""Phone"", ""Keyboard""]",781.54,"{""promo"": ""28%""}",98759,1,Europe +2023-10-30,91989,8200,"[""Tablet"", ""Phone""]",2186.76,{},40506,0,Africa +2024-05-27,91990,9284,"[""Laptop""]",2886.38,{},1452,0,Europe +2023-04-04,91991,7331,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4724.82,"{"""": ""8%""}",51790,1,Africa +2023-06-18,91992,4859,"[""Monitor""]",1791.76,{},156662,0,Europe +2023-05-06,91993,4321,"[""Phone"", ""Tablet"", ""Headphones""]",2489.25,"{""loyalty"": ""25%""}",174773,0,North America +2023-02-22,91994,7677,"[""Phone"", ""Headphones""]",1585.4,{},284890,1,North America +2024-09-01,91995,2602,"[""Laptop"", ""Tablet""]",3453.43,{},252035,1,South America +2024-04-25,91996,8999,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3626.08,{},144332,0,North America +2023-10-18,91997,2054,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2055.09,"{""seasonal"": ""30%""}",181390,0,Europe +2024-04-10,91998,6639,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3147.6,{},105532,1,South America +2024-12-14,91999,5738,"[""Laptop"", ""Tablet"", ""Headphones""]",364.05,"{""loyalty"": ""29%""}",163211,0,Asia +2023-01-24,92000,2887,"[""Headphones"", ""Charger"", ""Laptop""]",4557.14,"{""seasonal"": ""15%""}",105582,0,Europe +2024-03-23,92001,2855,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1690.38,{},239593,0,Asia +2024-10-29,92002,8190,"[""Monitor""]",392.8,{},222432,0,Asia +2024-02-28,92003,8266,"[""Wireless Mouse"", ""Phone""]",1545.2,{},259344,1,South America +2024-04-28,92004,4747,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3038.84,"{""loyalty"": ""13%""}",67830,0,Asia +2023-11-18,92005,7671,"[""Laptop""]",2473.73,{},188318,0,Europe +2023-04-15,92006,7079,"[""Phone"", ""Tablet"", ""Keyboard""]",3044.22,"{""loyalty"": ""12%""}",66560,1,North America +2023-04-12,92007,8028,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2968.91,{},139171,1,Asia +2024-09-02,92008,9312,"[""Monitor"", ""Phone"", ""Laptop""]",1170.1,{},256077,0,Europe +2023-06-28,92009,4347,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",874.85,"{"""": ""20%""}",144867,1,North America +2023-04-24,92010,7592,"[""Headphones"", ""Wireless Mouse""]",4822.32,{},90749,1,North America +2024-04-03,92011,8714,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4749.69,{},225363,0,Africa +2024-11-07,92012,3032,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4826.15,"{""seasonal"": ""26%""}",47110,0,Asia +2023-05-18,92013,9150,"[""Phone"", ""Laptop"", ""Keyboard""]",2742.46,{},241905,1,Africa +2023-07-01,92014,12,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3138.29,"{""loyalty"": ""19%""}",190584,1,Africa +2023-05-28,92015,3281,"[""Headphones""]",1070.21,"{"""": ""12%""}",164855,1,Asia +2024-02-13,92016,6873,"[""Keyboard""]",1410.04,{},222252,0,North America +2024-12-08,92017,5135,"[""Keyboard"", ""Laptop"", ""Tablet""]",3715.52,{},242079,0,Europe +2024-05-02,92018,5216,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",106.95,{},148042,0,Asia +2023-03-29,92019,6166,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4061.83,"{""seasonal"": ""11%""}",139648,1,South America +2023-12-26,92020,2088,"[""Phone""]",421.44,{},169432,1,South America +2024-05-03,92021,2237,"[""Phone"", ""Tablet""]",4742.58,"{""seasonal"": ""26%""}",197490,1,Africa +2023-09-24,92022,7549,"[""Charger"", ""Monitor"", ""Keyboard""]",531.25,{},97520,1,Africa +2023-07-11,92023,3905,"[""Laptop"", ""Keyboard""]",295.9,{},167351,1,Europe +2023-11-09,92024,2402,"[""Wireless Mouse""]",3865.03,"{""promo"": ""11%""}",273055,1,Asia +2023-03-11,92025,7824,"[""Wireless Mouse"", ""Laptop""]",540.38,{},169411,0,South America +2023-12-22,92026,2143,"[""Charger""]",701.42,{},228154,1,North America +2024-07-29,92027,5376,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2677.72,"{""promo"": ""15%""}",70352,1,Europe +2023-08-08,92028,3832,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",646.31,{},293906,1,Africa +2023-08-31,92029,9047,"[""Monitor"", ""Phone""]",1294.04,{},31579,0,Africa +2023-11-13,92030,7095,"[""Charger"", ""Laptop""]",4936.26,"{"""": ""30%""}",148558,1,Africa +2024-08-08,92031,864,"[""Headphones""]",2691.66,"{""promo"": ""18%""}",44087,1,South America +2023-02-13,92032,3395,"[""Phone""]",774.23,"{""seasonal"": ""8%""}",245708,1,Africa +2024-01-09,92033,9411,"[""Wireless Mouse"", ""Monitor""]",3527.47,{},88673,1,Africa +2024-10-03,92034,3704,"[""Headphones""]",1970.52,{},20165,0,Europe +2023-05-16,92035,8021,"[""Phone"", ""Headphones""]",3830.35,"{"""": ""14%""}",208144,1,South America +2023-02-08,92036,3464,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1026.83,{},98613,0,Asia +2023-11-19,92037,9986,"[""Phone""]",3978.14,"{"""": ""14%""}",273320,1,Africa +2024-05-01,92038,6577,"[""Tablet""]",2470.62,{},130398,1,Europe +2024-10-02,92039,9953,"[""Phone""]",1256.42,"{""seasonal"": ""15%""}",175541,0,South America +2023-02-21,92040,6411,"[""Headphones""]",2982.19,{},43270,1,Asia +2024-01-13,92041,5094,"[""Tablet"", ""Phone"", ""Headphones""]",1146.17,"{"""": ""19%""}",200662,0,Africa +2024-05-19,92042,9786,"[""Keyboard"", ""Charger""]",1605.32,"{""loyalty"": ""30%""}",186345,1,Europe +2023-08-13,92043,2287,"[""Phone"", ""Charger""]",2555.03,"{""loyalty"": ""7%""}",277127,0,North America +2023-12-01,92044,1791,"[""Keyboard"", ""Tablet""]",4110.63,"{""seasonal"": ""13%""}",167380,1,North America +2023-01-12,92045,7806,"[""Headphones"", ""Phone""]",4101.8,"{""promo"": ""11%""}",95193,0,Africa +2024-10-22,92046,4204,"[""Tablet"", ""Headphones"", ""Monitor""]",2827.09,{},92771,0,South America +2023-07-17,92047,15,"[""Phone"", ""Tablet""]",3479.85,{},154890,0,North America +2024-11-05,92048,1085,"[""Keyboard"", ""Phone""]",533.82,"{""promo"": ""25%""}",239982,1,Europe +2024-11-06,92049,4099,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3706.21,"{""promo"": ""8%""}",70074,0,North America +2024-07-24,92050,3613,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1778.16,"{"""": ""11%""}",54270,1,Africa +2024-11-05,92051,4011,"[""Headphones"", ""Laptop""]",3182.24,"{"""": ""17%""}",160853,0,Europe +2023-10-24,92052,9287,"[""Keyboard""]",1934.38,{},167142,0,Europe +2023-04-04,92053,6708,"[""Headphones""]",4249.21,{},108998,0,Europe +2024-04-10,92054,9701,"[""Wireless Mouse""]",4167.31,"{""promo"": ""24%""}",145486,0,Africa +2023-11-10,92055,9867,"[""Charger""]",2598.91,{},11645,1,North America +2024-03-10,92056,354,"[""Wireless Mouse"", ""Charger""]",99.02,{},87566,0,Asia +2023-05-31,92057,1575,"[""Monitor""]",3398.27,{},45779,1,Asia +2024-01-05,92058,4694,"[""Tablet"", ""Wireless Mouse""]",4344.95,{},248616,1,Asia +2024-02-06,92059,9204,"[""Phone"", ""Charger"", ""Monitor""]",560.6,"{""loyalty"": ""27%""}",26081,1,Africa +2024-01-10,92060,2118,"[""Phone"", ""Laptop""]",2012.04,"{""loyalty"": ""24%""}",75382,1,Africa +2024-12-09,92061,8869,"[""Charger""]",4657.66,"{""promo"": ""25%""}",103230,1,Europe +2023-01-23,92062,784,"[""Laptop""]",1654.48,{},253022,0,Africa +2024-08-01,92063,6254,"[""Headphones"", ""Phone""]",2615.59,{},103461,1,Africa +2023-08-08,92064,5223,"[""Tablet"", ""Headphones""]",2304.25,"{""loyalty"": ""7%""}",132615,0,South America +2024-10-19,92065,8318,"[""Laptop""]",1210.88,{},78735,1,Asia +2024-03-09,92066,1582,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3666.79,"{"""": ""11%""}",138466,1,North America +2024-07-18,92067,1760,"[""Phone"", ""Wireless Mouse""]",4217.3,"{""promo"": ""9%""}",140082,1,Africa +2024-12-25,92068,679,"[""Charger"", ""Laptop""]",384.27,{},103293,0,Asia +2023-01-03,92069,678,"[""Tablet"", ""Charger"", ""Laptop""]",3316.57,"{""promo"": ""26%""}",197550,0,South America +2024-04-28,92070,1273,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",2943.32,{},134544,1,Asia +2024-12-12,92071,4411,"[""Keyboard""]",3578.55,"{"""": ""14%""}",183419,0,Europe +2023-07-06,92072,8829,"[""Tablet""]",2993.64,"{"""": ""12%""}",245901,1,Asia +2023-10-14,92073,8144,"[""Monitor"", ""Tablet"", ""Headphones""]",3275.88,"{""loyalty"": ""8%""}",50198,0,South America +2024-12-31,92074,6345,"[""Tablet"", ""Headphones""]",3150.8,{},80065,0,Asia +2024-01-07,92075,4632,"[""Tablet"", ""Keyboard"", ""Headphones""]",1980.47,"{""loyalty"": ""12%""}",55750,0,Asia +2023-03-16,92076,987,"[""Phone"", ""Wireless Mouse""]",4790.56,{},151343,0,Asia +2023-04-12,92077,4416,"[""Phone"", ""Charger"", ""Monitor""]",1080.66,{},169188,0,Africa +2023-02-14,92078,1057,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",883.31,{},138737,0,Africa +2023-07-22,92079,5180,"[""Headphones""]",299.0,{},174941,0,North America +2024-04-16,92080,4182,"[""Tablet"", ""Charger"", ""Headphones""]",3919.26,"{""promo"": ""20%""}",80794,1,Africa +2024-04-16,92081,5719,"[""Tablet"", ""Headphones"", ""Charger""]",3499.28,"{""seasonal"": ""18%""}",286827,1,Asia +2024-07-04,92082,8929,"[""Wireless Mouse"", ""Charger""]",990.4,{},46432,0,Asia +2023-07-13,92083,490,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",515.61,"{"""": ""12%""}",104367,0,North America +2023-02-16,92084,2812,"[""Monitor"", ""Phone""]",4887.8,"{""loyalty"": ""5%""}",258875,0,Europe +2023-11-28,92085,7729,"[""Tablet"", ""Laptop"", ""Headphones""]",1456.6,{},4305,0,Africa +2023-02-03,92086,4337,"[""Charger"", ""Headphones""]",1989.69,"{""loyalty"": ""23%""}",92052,0,South America +2023-11-25,92087,2840,"[""Headphones"", ""Tablet""]",2946.96,"{"""": ""27%""}",215078,1,Europe +2023-10-16,92088,3761,"[""Wireless Mouse""]",3231.08,"{"""": ""10%""}",51725,0,Africa +2024-03-24,92089,7424,"[""Headphones"", ""Charger"", ""Monitor""]",4315.51,{},102488,1,Africa +2024-07-26,92090,2121,"[""Keyboard"", ""Laptop""]",478.4,{},200925,0,Africa +2024-05-03,92091,1531,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",2362.99,{},222632,0,Asia +2023-07-24,92092,8251,"[""Phone""]",1206.52,"{""promo"": ""16%""}",203322,1,South America +2023-04-23,92093,3680,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",226.93,{},156878,0,Asia +2024-06-01,92094,7462,"[""Laptop"", ""Charger""]",2731.6,{},158607,0,North America +2024-09-19,92095,2532,"[""Tablet""]",800.37,{},101119,1,North America +2023-06-03,92096,6665,"[""Tablet"", ""Headphones"", ""Charger""]",4367.03,"{""loyalty"": ""22%""}",98171,1,South America +2024-11-11,92097,5573,"[""Monitor"", ""Charger""]",2581.09,"{"""": ""11%""}",230247,0,South America +2023-08-08,92098,9383,"[""Tablet"", ""Charger""]",1132.18,{},229686,0,Europe +2024-12-19,92099,7774,"[""Tablet"", ""Monitor""]",3196.3,"{""loyalty"": ""9%""}",76690,0,North America +2024-11-09,92100,731,"[""Headphones"", ""Phone""]",3396.78,{},134503,1,South America +2024-03-05,92101,3741,"[""Monitor"", ""Keyboard""]",1986.98,{},12509,1,Africa +2024-02-11,92102,8645,"[""Keyboard"", ""Laptop"", ""Phone""]",4078.44,{},160677,0,North America +2023-07-29,92103,9907,"[""Phone"", ""Wireless Mouse""]",798.93,{},44767,1,Africa +2024-11-05,92104,5783,"[""Laptop"", ""Tablet"", ""Keyboard""]",311.87,"{""loyalty"": ""26%""}",192752,1,Europe +2024-09-26,92105,8202,"[""Headphones"", ""Laptop"", ""Tablet""]",1236.43,{},253639,0,North America +2024-05-30,92106,9882,"[""Headphones""]",4270.97,{},107608,1,Asia +2023-04-09,92107,1970,"[""Wireless Mouse""]",1289.74,{},118544,1,Europe +2023-05-06,92108,7429,"[""Laptop"", ""Charger"", ""Tablet""]",1044.29,{},254426,1,Europe +2024-04-07,92109,5266,"[""Keyboard"", ""Monitor"", ""Charger""]",90.04,{},104555,0,Africa +2023-11-13,92110,3112,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4691.1,{},171806,1,Europe +2023-11-29,92111,643,"[""Wireless Mouse""]",3841.59,"{""loyalty"": ""12%""}",5571,0,South America +2024-10-18,92112,5407,"[""Wireless Mouse""]",2167.28,{},261651,0,Europe +2023-05-01,92113,7478,"[""Headphones"", ""Phone"", ""Monitor""]",1918.2,"{""loyalty"": ""24%""}",17460,0,South America +2023-03-26,92114,6081,"[""Headphones""]",2645.82,"{""promo"": ""16%""}",242820,0,Europe +2024-06-04,92115,8065,"[""Keyboard""]",2206.09,{},7043,0,South America +2023-06-04,92116,9570,"[""Headphones""]",1742.25,{},91430,1,Africa +2023-08-16,92117,789,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4789.65,"{""seasonal"": ""8%""}",246900,0,Africa +2023-07-28,92118,4890,"[""Charger"", ""Keyboard""]",958.74,{},248980,0,Europe +2024-02-11,92119,2639,"[""Charger"", ""Headphones"", ""Keyboard""]",2834.55,"{""seasonal"": ""16%""}",119420,1,Asia +2024-01-24,92120,6321,"[""Phone"", ""Tablet"", ""Monitor""]",3968.96,"{"""": ""14%""}",109404,0,South America +2024-09-03,92121,9573,"[""Keyboard"", ""Laptop"", ""Monitor""]",2118.99,{},26908,0,Asia +2023-02-10,92122,3882,"[""Wireless Mouse"", ""Monitor""]",3115.21,"{""seasonal"": ""23%""}",164936,1,Africa +2024-06-06,92123,4801,"[""Wireless Mouse"", ""Tablet""]",3998.76,{},145802,0,Asia +2023-08-21,92124,2833,"[""Monitor"", ""Phone"", ""Tablet""]",299.99,{},115722,0,Europe +2023-11-28,92125,1138,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4683.89,"{"""": ""27%""}",156873,1,Asia +2024-04-05,92126,9070,"[""Monitor"", ""Charger"", ""Phone""]",3374.87,{},207153,1,South America +2024-01-24,92127,1430,"[""Wireless Mouse""]",3812.21,"{"""": ""14%""}",192895,0,Africa +2023-05-16,92128,7621,"[""Charger"", ""Laptop"", ""Monitor""]",3948.49,"{"""": ""14%""}",178611,1,South America +2023-12-05,92129,901,"[""Keyboard""]",1258.07,{},161145,1,Asia +2024-11-30,92130,8509,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",542.48,"{""seasonal"": ""16%""}",223613,0,Asia +2023-10-08,92131,7714,"[""Wireless Mouse""]",598.34,{},56793,0,North America +2024-04-14,92132,7474,"[""Monitor""]",4389.21,{},109570,1,Africa +2023-11-24,92133,4636,"[""Monitor""]",808.78,{},141697,0,South America +2024-01-05,92134,5317,"[""Headphones"", ""Tablet"", ""Phone""]",3611.24,"{""loyalty"": ""12%""}",191638,0,Africa +2024-10-22,92135,7932,"[""Charger"", ""Monitor""]",4265.15,{},255651,0,South America +2023-09-19,92136,3489,"[""Monitor"", ""Tablet"", ""Headphones""]",3583.63,{},5360,1,North America +2024-10-17,92137,2612,"[""Tablet""]",4185.1,"{""seasonal"": ""13%""}",42598,0,Africa +2024-08-24,92138,3143,"[""Charger"", ""Laptop"", ""Keyboard""]",1368.71,{},172344,0,North America +2024-07-13,92139,8937,"[""Tablet"", ""Headphones"", ""Monitor""]",1630.85,{},110640,1,North America +2024-02-29,92140,5640,"[""Keyboard"", ""Laptop""]",946.98,"{""loyalty"": ""13%""}",220484,1,Asia +2024-10-01,92141,339,"[""Keyboard"", ""Headphones"", ""Tablet""]",725.38,{},189079,0,South America +2023-11-05,92142,3765,"[""Keyboard""]",617.8,"{""promo"": ""8%""}",14324,0,South America +2024-03-29,92143,3474,"[""Headphones"", ""Tablet"", ""Charger""]",4250.56,"{""promo"": ""7%""}",208883,1,Europe +2023-10-22,92144,5974,"[""Keyboard"", ""Charger"", ""Tablet""]",4084.79,{},269203,0,Africa +2024-04-19,92145,7477,"[""Keyboard"", ""Charger""]",4918.91,"{""seasonal"": ""16%""}",192077,0,Africa +2023-09-27,92146,9878,"[""Charger"", ""Laptop""]",4861.12,{},226381,1,South America +2024-09-20,92147,2342,"[""Headphones"", ""Keyboard""]",689.21,{},222089,1,South America +2023-09-16,92148,9990,"[""Wireless Mouse""]",2573.26,{},295518,1,Africa +2024-10-25,92149,4973,"[""Keyboard""]",2854.92,{},250799,0,North America +2023-05-24,92150,3748,"[""Tablet""]",2374.52,{},38532,1,South America +2023-07-07,92151,6253,"[""Monitor"", ""Laptop""]",4300.4,{},210763,1,North America +2023-02-23,92152,9551,"[""Monitor"", ""Keyboard"", ""Laptop""]",4796.98,"{""seasonal"": ""13%""}",250528,0,Africa +2024-06-15,92153,2069,"[""Charger""]",652.81,{},277429,0,Africa +2024-11-26,92154,9694,"[""Charger""]",875.15,{},130237,0,South America +2023-11-02,92155,1706,"[""Monitor"", ""Keyboard""]",1455.03,"{"""": ""26%""}",215866,0,South America +2024-08-31,92156,1422,"[""Wireless Mouse""]",4535.36,"{""seasonal"": ""6%""}",160838,1,Asia +2023-07-19,92157,3656,"[""Charger""]",1904.59,{},195488,0,North America +2023-12-27,92158,9729,"[""Tablet""]",1894.33,"{"""": ""9%""}",43736,0,Africa +2024-02-27,92159,3202,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",146.4,{},10820,0,Asia +2023-11-13,92160,3369,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",899.35,"{""promo"": ""17%""}",83764,0,Asia +2023-10-24,92161,1938,"[""Phone"", ""Tablet""]",4658.76,"{""loyalty"": ""24%""}",188582,1,North America +2024-10-17,92162,5802,"[""Tablet"", ""Phone"", ""Charger""]",1715.68,{},25659,1,Africa +2023-05-31,92163,345,"[""Monitor""]",1279.69,"{"""": ""25%""}",173664,1,Asia +2023-12-26,92164,9394,"[""Keyboard""]",530.55,"{""promo"": ""12%""}",138291,0,Europe +2024-04-27,92165,6495,"[""Wireless Mouse"", ""Keyboard""]",4781.76,{},75091,1,Asia +2024-02-15,92166,1990,"[""Headphones"", ""Monitor"", ""Keyboard""]",960.43,"{""seasonal"": ""6%""}",187307,0,Europe +2023-08-27,92167,1893,"[""Keyboard""]",1994.95,{},84898,0,Africa +2024-12-30,92168,8672,"[""Monitor"", ""Keyboard"", ""Laptop""]",3915.71,"{""seasonal"": ""20%""}",226622,0,Europe +2024-07-14,92169,2519,"[""Keyboard"", ""Tablet"", ""Charger""]",4930.88,"{""promo"": ""23%""}",98728,1,Africa +2024-04-28,92170,9792,"[""Phone""]",3296.35,{},203935,0,Africa +2024-12-22,92171,7460,"[""Laptop""]",1226.09,{},242040,0,Europe +2024-02-12,92172,9232,"[""Laptop"", ""Monitor""]",982.73,{},67003,0,North America +2024-04-26,92173,5345,"[""Headphones"", ""Keyboard""]",4325.13,"{""seasonal"": ""7%""}",240094,0,Africa +2024-05-29,92174,3655,"[""Headphones"", ""Charger""]",867.69,{},265679,1,South America +2023-01-03,92175,5571,"[""Charger"", ""Wireless Mouse""]",1897.17,{},192171,1,Europe +2023-01-01,92176,5240,"[""Charger"", ""Headphones""]",441.43,"{""loyalty"": ""22%""}",73554,1,Europe +2024-02-03,92177,2716,"[""Charger""]",850.9,{},99346,0,Asia +2023-02-20,92178,2058,"[""Wireless Mouse""]",384.69,{},166808,0,Asia +2024-01-09,92179,3805,"[""Phone"", ""Headphones""]",2301.99,{},115876,1,Africa +2024-08-11,92180,2498,"[""Monitor"", ""Wireless Mouse""]",2279.88,"{""loyalty"": ""29%""}",140940,1,Asia +2024-01-23,92181,8608,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2293.95,"{""seasonal"": ""30%""}",115014,1,Asia +2023-04-28,92182,6941,"[""Monitor""]",4507.5,{},46524,0,Africa +2023-06-21,92183,9614,"[""Headphones"", ""Wireless Mouse""]",3307.25,{},81207,0,Asia +2024-11-23,92184,4070,"[""Monitor"", ""Phone""]",2698.64,"{"""": ""6%""}",126099,1,North America +2024-09-02,92185,9371,"[""Charger""]",2347.32,"{""loyalty"": ""10%""}",116017,0,Europe +2024-06-09,92186,9847,"[""Keyboard"", ""Tablet""]",3545.46,"{"""": ""12%""}",168341,0,North America +2023-09-14,92187,4242,"[""Monitor"", ""Keyboard""]",267.67,"{""promo"": ""6%""}",275025,1,North America +2023-10-31,92188,5527,"[""Wireless Mouse"", ""Headphones""]",279.49,"{""loyalty"": ""18%""}",88713,0,Asia +2023-07-04,92189,9486,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",2059.47,{},136091,1,North America +2024-09-07,92190,3522,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4751.8,"{"""": ""15%""}",271883,0,South America +2024-02-05,92191,9506,"[""Laptop"", ""Monitor"", ""Headphones""]",3371.39,{},30339,1,Europe +2024-08-27,92192,117,"[""Tablet"", ""Keyboard""]",2336.89,"{""loyalty"": ""10%""}",213739,1,South America +2023-01-26,92193,1184,"[""Wireless Mouse"", ""Monitor""]",1224.0,{},35775,0,South America +2024-10-06,92194,5279,"[""Monitor"", ""Phone""]",4890.77,"{""seasonal"": ""5%""}",28941,1,Europe +2024-02-19,92195,2732,"[""Monitor"", ""Wireless Mouse""]",2228.46,{},154082,0,Asia +2024-12-04,92196,578,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1512.41,{},20067,1,Europe +2023-09-07,92197,6111,"[""Keyboard"", ""Charger""]",2595.22,"{""seasonal"": ""22%""}",214968,0,Africa +2024-10-11,92198,2053,"[""Laptop""]",3356.56,"{""loyalty"": ""25%""}",114951,0,North America +2023-08-23,92199,8323,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",3980.15,{},17420,0,South America +2023-12-20,92200,2185,"[""Headphones""]",4402.33,"{""seasonal"": ""13%""}",113100,0,North America +2023-03-14,92201,9856,"[""Phone"", ""Wireless Mouse""]",2614.24,{},236009,0,North America +2024-01-09,92202,6444,"[""Phone"", ""Monitor""]",54.42,{},241880,0,Europe +2024-10-01,92203,4078,"[""Monitor"", ""Headphones""]",1384.72,"{""loyalty"": ""28%""}",152952,0,Africa +2023-10-09,92204,842,"[""Laptop"", ""Charger""]",464.52,{},102000,1,South America +2023-08-28,92205,8889,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1940.17,{},84200,1,Asia +2024-01-03,92206,2768,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3025.74,{},136988,1,North America +2024-07-28,92207,1477,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4638.58,"{""promo"": ""28%""}",87719,0,Asia +2024-07-03,92208,3857,"[""Phone"", ""Headphones"", ""Monitor""]",1845.91,{},128644,0,Asia +2023-10-09,92209,5195,"[""Laptop"", ""Charger"", ""Tablet""]",1772.1,"{""promo"": ""20%""}",169331,1,Africa +2024-02-28,92210,5709,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4095.0,"{""seasonal"": ""10%""}",12369,1,North America +2023-05-12,92211,3767,"[""Wireless Mouse""]",4370.43,{},154586,0,Africa +2023-11-22,92212,71,"[""Tablet"", ""Phone"", ""Headphones""]",3786.22,"{""seasonal"": ""30%""}",167914,1,Asia +2023-02-14,92213,7360,"[""Laptop"", ""Monitor"", ""Headphones""]",4363.95,{},171775,0,North America +2024-05-29,92214,7224,"[""Charger"", ""Phone""]",3021.17,"{""seasonal"": ""18%""}",274418,1,Africa +2024-04-16,92215,1104,"[""Keyboard""]",3031.04,{},104592,0,South America +2024-10-23,92216,3118,"[""Keyboard"", ""Monitor""]",1979.89,"{""seasonal"": ""26%""}",210946,0,Asia +2023-09-10,92217,127,"[""Laptop"", ""Charger""]",4778.8,{},206525,1,Africa +2024-08-13,92218,6705,"[""Keyboard"", ""Laptop""]",1476.32,"{""seasonal"": ""6%""}",167581,0,Africa +2023-06-14,92219,650,"[""Headphones""]",1747.29,{},177253,0,North America +2024-11-05,92220,556,"[""Wireless Mouse"", ""Monitor""]",3002.01,"{""seasonal"": ""7%""}",276365,1,Africa +2024-10-10,92221,3261,"[""Keyboard"", ""Wireless Mouse""]",1130.3,{},22427,0,South America +2023-07-09,92222,9841,"[""Charger""]",2757.83,{},216343,0,Asia +2024-06-26,92223,8280,"[""Phone"", ""Headphones""]",831.18,"{""loyalty"": ""5%""}",92237,0,South America +2024-09-18,92224,8406,"[""Keyboard""]",2745.42,"{""seasonal"": ""9%""}",60276,0,Asia +2023-04-20,92225,8922,"[""Keyboard""]",3388.73,{},299387,0,Europe +2024-05-25,92226,4328,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",3893.02,"{""promo"": ""9%""}",51210,0,North America +2023-10-24,92227,5084,"[""Tablet""]",4378.64,"{""seasonal"": ""21%""}",107621,1,Africa +2023-12-04,92228,2848,"[""Charger"", ""Tablet"", ""Monitor""]",1843.6,{},182031,1,Europe +2024-02-27,92229,227,"[""Headphones""]",1312.75,{},15933,1,Asia +2023-10-09,92230,9458,"[""Charger"", ""Keyboard""]",2268.96,{},34347,0,Europe +2024-12-11,92231,4654,"[""Charger"", ""Phone""]",3591.42,"{"""": ""18%""}",94454,1,Europe +2023-10-05,92232,2769,"[""Phone"", ""Keyboard"", ""Tablet""]",1772.64,"{""seasonal"": ""25%""}",259078,1,Europe +2024-12-12,92233,4321,"[""Laptop"", ""Charger""]",4363.7,{},246825,1,Europe +2023-11-23,92234,7075,"[""Monitor"", ""Headphones""]",2190.93,{},54364,1,Europe +2024-10-24,92235,4962,"[""Tablet"", ""Laptop"", ""Charger""]",1723.88,{},120766,0,North America +2024-04-27,92236,8742,"[""Tablet""]",1778.33,{},1907,1,Africa +2023-12-03,92237,6905,"[""Charger"", ""Keyboard""]",1459.13,{},1869,1,Europe +2023-09-27,92238,4703,"[""Phone"", ""Keyboard"", ""Headphones""]",1022.15,{},82277,0,Europe +2023-06-25,92239,7156,"[""Wireless Mouse"", ""Tablet""]",3964.27,{},176276,0,Africa +2024-10-07,92240,8322,"[""Monitor""]",1894.23,"{""loyalty"": ""25%""}",65313,0,Asia +2023-12-26,92241,7992,"[""Laptop"", ""Tablet""]",1805.54,{},86478,0,Asia +2024-11-04,92242,136,"[""Charger""]",2219.21,"{""seasonal"": ""25%""}",79728,0,Europe +2024-11-16,92243,3473,"[""Keyboard"", ""Charger""]",4858.92,"{""loyalty"": ""5%""}",290381,1,Europe +2023-11-15,92244,5996,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2705.18,"{""promo"": ""23%""}",224586,0,Africa +2024-09-09,92245,3751,"[""Laptop"", ""Wireless Mouse""]",2082.56,{},299709,1,Africa +2023-05-23,92246,5623,"[""Wireless Mouse"", ""Headphones""]",4337.0,"{""seasonal"": ""8%""}",27571,0,Europe +2024-05-26,92247,7154,"[""Monitor"", ""Charger""]",1112.63,"{""loyalty"": ""28%""}",79187,0,South America +2023-12-17,92248,244,"[""Keyboard""]",627.48,"{""promo"": ""26%""}",139733,0,North America +2024-06-02,92249,5157,"[""Wireless Mouse""]",2015.16,{},209550,0,Africa +2024-03-20,92250,7253,"[""Keyboard""]",1162.04,"{""promo"": ""29%""}",277179,0,Europe +2023-09-19,92251,5045,"[""Keyboard""]",4978.14,{},234573,0,South America +2024-09-18,92252,4016,"[""Laptop"", ""Tablet""]",3780.29,{},192991,0,Africa +2024-12-17,92253,1042,"[""Headphones"", ""Monitor"", ""Charger""]",2119.21,{},173919,0,Africa +2023-08-20,92254,522,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",197.81,"{""loyalty"": ""21%""}",231473,1,Asia +2023-06-14,92255,7904,"[""Headphones""]",3388.25,{},156820,1,Europe +2024-09-03,92256,9676,"[""Charger"", ""Headphones"", ""Tablet""]",3225.45,{},29196,1,Europe +2024-12-15,92257,3280,"[""Phone"", ""Headphones""]",2617.24,{},6466,0,Europe +2024-04-02,92258,1608,"[""Laptop"", ""Charger""]",3900.81,"{""seasonal"": ""14%""}",295634,0,North America +2023-10-28,92259,9876,"[""Tablet"", ""Headphones"", ""Keyboard""]",1088.33,"{""seasonal"": ""10%""}",241855,1,Africa +2024-02-07,92260,9822,"[""Keyboard"", ""Charger"", ""Headphones""]",2309.85,{},114509,1,Europe +2024-11-29,92261,7763,"[""Keyboard""]",4016.47,{},98897,0,Africa +2024-05-05,92262,4984,"[""Monitor""]",4242.81,"{""promo"": ""6%""}",148924,0,Asia +2024-09-13,92263,966,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",4961.95,"{""promo"": ""17%""}",215042,1,Africa +2024-04-02,92264,2551,"[""Charger"", ""Laptop""]",374.69,{},228714,1,Europe +2024-08-03,92265,4982,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1460.69,"{""loyalty"": ""26%""}",47567,0,North America +2024-09-13,92266,6567,"[""Charger"", ""Headphones"", ""Tablet""]",1696.16,"{""loyalty"": ""14%""}",162587,0,Asia +2024-11-05,92267,8212,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3668.02,"{""seasonal"": ""16%""}",48500,1,North America +2023-06-04,92268,1878,"[""Tablet""]",3012.84,"{""seasonal"": ""16%""}",254619,0,Europe +2023-05-27,92269,2644,"[""Phone"", ""Charger"", ""Keyboard""]",2453.33,"{""promo"": ""8%""}",214659,0,Africa +2023-06-27,92270,4013,"[""Laptop"", ""Wireless Mouse""]",3308.64,{},177888,0,Africa +2023-02-19,92271,9183,"[""Wireless Mouse""]",4298.05,{},144176,0,Europe +2024-02-13,92272,77,"[""Wireless Mouse"", ""Laptop""]",2881.91,{},26204,1,Africa +2023-10-07,92273,2579,"[""Phone"", ""Headphones""]",79.87,{},172512,1,Europe +2024-03-26,92274,7690,"[""Laptop""]",1554.5,"{""seasonal"": ""25%""}",16825,1,Africa +2023-06-03,92275,2731,"[""Tablet"", ""Laptop""]",85.0,{},275795,1,Asia +2024-10-12,92276,7528,"[""Tablet"", ""Headphones"", ""Laptop""]",1178.52,"{"""": ""25%""}",212993,0,North America +2024-02-23,92277,7646,"[""Charger""]",4093.08,{},187445,0,Asia +2023-11-27,92278,1362,"[""Tablet""]",2115.57,"{""promo"": ""7%""}",193621,0,Asia +2023-06-12,92279,6482,"[""Headphones"", ""Laptop"", ""Phone""]",1926.87,"{"""": ""14%""}",94919,1,North America +2023-12-27,92280,1808,"[""Headphones"", ""Tablet""]",4499.31,{},17406,0,Asia +2023-01-02,92281,7114,"[""Charger"", ""Headphones"", ""Monitor""]",1964.83,{},99971,1,North America +2024-06-08,92282,5692,"[""Wireless Mouse""]",2673.29,"{""promo"": ""12%""}",171295,0,Europe +2023-06-05,92283,2734,"[""Charger"", ""Headphones"", ""Monitor""]",1430.71,{},140197,0,Asia +2023-05-07,92284,195,"[""Wireless Mouse"", ""Phone""]",1014.61,"{""seasonal"": ""13%""}",38471,1,Europe +2023-06-11,92285,622,"[""Keyboard"", ""Headphones""]",3078.33,"{"""": ""21%""}",57397,0,Africa +2023-08-31,92286,872,"[""Charger"", ""Monitor""]",1878.71,"{""seasonal"": ""24%""}",105038,0,Africa +2024-07-08,92287,1548,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3626.7,{},142149,0,North America +2024-03-22,92288,5457,"[""Keyboard""]",4593.14,{},213961,0,Asia +2024-06-06,92289,8160,"[""Charger"", ""Wireless Mouse""]",3963.28,{},134901,1,Asia +2023-01-10,92290,8899,"[""Keyboard"", ""Phone"", ""Headphones""]",4877.83,{},79082,0,Asia +2023-03-19,92291,5976,"[""Keyboard"", ""Headphones""]",2487.07,{},107896,1,South America +2023-09-04,92292,7530,"[""Charger"", ""Monitor""]",3376.78,"{""promo"": ""27%""}",180366,0,Europe +2023-04-13,92293,5211,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1213.12,"{""seasonal"": ""29%""}",13567,0,South America +2024-03-04,92294,3720,"[""Charger"", ""Phone""]",2182.01,{},256884,1,Asia +2024-01-26,92295,314,"[""Monitor"", ""Headphones""]",3763.16,"{""promo"": ""15%""}",270645,1,Africa +2024-12-29,92296,5349,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",2556.89,{},141046,0,North America +2024-06-19,92297,6248,"[""Tablet"", ""Phone"", ""Charger""]",1970.02,"{""loyalty"": ""10%""}",167919,0,Asia +2024-01-01,92298,1589,"[""Laptop""]",3443.8,{},111698,0,Asia +2023-12-24,92299,1015,"[""Keyboard"", ""Charger"", ""Laptop""]",4494.07,"{""promo"": ""13%""}",125539,0,North America +2024-10-19,92300,6901,"[""Headphones"", ""Tablet"", ""Phone""]",4051.5,"{""promo"": ""14%""}",184984,0,North America +2023-08-11,92301,1534,"[""Tablet""]",4325.05,"{""loyalty"": ""28%""}",32904,1,Europe +2023-11-09,92302,3649,"[""Monitor""]",2514.78,"{""loyalty"": ""5%""}",84436,1,Europe +2023-03-20,92303,1162,"[""Wireless Mouse"", ""Headphones""]",876.85,"{""seasonal"": ""25%""}",124030,0,South America +2024-02-16,92304,4943,"[""Monitor"", ""Headphones"", ""Laptop""]",3972.29,{},105405,1,Africa +2024-08-29,92305,3832,"[""Keyboard"", ""Tablet""]",922.62,"{"""": ""17%""}",33772,1,Europe +2024-02-01,92306,3808,"[""Wireless Mouse"", ""Laptop""]",832.58,{},17712,0,Europe +2024-12-16,92307,5107,"[""Headphones"", ""Phone""]",2441.74,{},294850,0,Africa +2023-06-23,92308,2658,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1083.94,"{""loyalty"": ""24%""}",273402,1,Asia +2023-07-05,92309,3845,"[""Phone"", ""Tablet""]",2673.7,{},170778,1,Asia +2023-10-16,92310,6848,"[""Wireless Mouse"", ""Monitor""]",3276.69,{},177532,0,Asia +2023-01-27,92311,17,"[""Phone""]",4175.26,{},268328,0,Europe +2023-04-20,92312,3936,"[""Keyboard"", ""Monitor"", ""Tablet""]",4897.55,{},23175,1,Europe +2023-01-30,92313,2338,"[""Laptop"", ""Charger""]",2181.21,"{"""": ""17%""}",84801,1,Africa +2023-01-19,92314,5977,"[""Phone"", ""Charger"", ""Laptop""]",1466.28,{},165574,1,Asia +2024-03-10,92315,9825,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",953.04,{},196566,0,North America +2023-02-09,92316,4802,"[""Phone""]",881.2,"{"""": ""23%""}",12113,1,Asia +2024-08-19,92317,4599,"[""Charger""]",575.85,{},32841,1,Europe +2023-05-29,92318,2996,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3771.09,"{""promo"": ""18%""}",100109,0,North America +2023-05-15,92319,1284,"[""Tablet""]",4876.32,{},241856,0,South America +2024-09-07,92320,4782,"[""Charger"", ""Phone"", ""Monitor""]",2313.16,{},49331,1,South America +2024-06-27,92321,8431,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",157.46,"{""seasonal"": ""26%""}",265354,0,South America +2024-10-12,92322,6896,"[""Monitor"", ""Laptop""]",181.89,{},290411,0,South America +2024-11-08,92323,7244,"[""Charger"", ""Keyboard"", ""Tablet""]",3214.68,{},166633,1,Asia +2023-09-20,92324,5296,"[""Phone""]",653.94,"{""promo"": ""6%""}",5685,0,Asia +2024-11-06,92325,8904,"[""Charger"", ""Headphones""]",1931.73,"{""seasonal"": ""16%""}",124218,0,North America +2023-01-19,92326,634,"[""Charger"", ""Keyboard""]",1635.39,{},265377,1,South America +2024-08-05,92327,3228,"[""Phone"", ""Keyboard"", ""Monitor""]",4037.92,{},122687,0,Asia +2024-05-15,92328,7714,"[""Tablet"", ""Monitor""]",926.42,"{""promo"": ""20%""}",23106,0,Europe +2024-07-09,92329,8014,"[""Tablet"", ""Headphones""]",2438.63,{},266967,1,South America +2023-10-13,92330,8211,"[""Headphones"", ""Keyboard""]",2920.9,"{""seasonal"": ""16%""}",223294,1,Africa +2024-07-11,92331,1215,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2663.66,"{""seasonal"": ""27%""}",215084,0,Europe +2024-08-15,92332,5875,"[""Wireless Mouse"", ""Charger""]",2292.67,{},160029,0,South America +2023-06-18,92333,1625,"[""Headphones""]",1161.73,"{""promo"": ""23%""}",183016,1,Europe +2024-06-23,92334,1528,"[""Keyboard"", ""Headphones""]",4546.32,{},213063,0,Europe +2023-12-30,92335,4342,"[""Headphones""]",1717.7,"{"""": ""11%""}",176137,0,Asia +2023-08-08,92336,2430,"[""Keyboard""]",1558.51,{},100122,1,Africa +2024-05-31,92337,6431,"[""Keyboard""]",2941.09,"{""loyalty"": ""23%""}",261800,0,Africa +2024-02-25,92338,8338,"[""Charger""]",2539.54,{},191146,1,North America +2023-10-10,92339,6833,"[""Charger"", ""Phone""]",968.08,"{""seasonal"": ""20%""}",277621,1,North America +2023-12-21,92340,7312,"[""Tablet"", ""Keyboard""]",2088.74,"{""loyalty"": ""25%""}",94658,1,Europe +2024-04-09,92341,5458,"[""Wireless Mouse"", ""Keyboard""]",861.17,"{""promo"": ""9%""}",252372,1,Africa +2024-10-26,92342,16,"[""Headphones"", ""Charger""]",2484.8,"{""seasonal"": ""15%""}",153760,1,Africa +2023-02-24,92343,3395,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3678.72,{},99844,0,Asia +2023-04-24,92344,473,"[""Tablet""]",3559.28,{},156858,1,Asia +2024-03-12,92345,5414,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4627.64,"{"""": ""23%""}",109494,1,North America +2023-07-13,92346,5648,"[""Wireless Mouse"", ""Keyboard""]",1859.42,"{""loyalty"": ""13%""}",7106,0,North America +2023-07-23,92347,207,"[""Wireless Mouse""]",2736.31,"{"""": ""23%""}",261939,0,Europe +2023-02-03,92348,848,"[""Tablet"", ""Charger"", ""Laptop""]",1750.12,"{""promo"": ""5%""}",3741,1,South America +2024-03-03,92349,74,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2977.27,{},196742,1,Europe +2024-08-20,92350,2815,"[""Headphones"", ""Keyboard""]",1656.54,{},92179,1,North America +2024-10-20,92351,4510,"[""Phone"", ""Tablet""]",1997.45,{},219297,1,Africa +2023-03-16,92352,9807,"[""Headphones"", ""Monitor"", ""Phone""]",90.46,"{""seasonal"": ""26%""}",188853,0,North America +2024-12-31,92353,8334,"[""Laptop""]",1779.58,{},296940,0,South America +2023-06-08,92354,9647,"[""Monitor"", ""Headphones""]",1173.78,"{""loyalty"": ""26%""}",47011,0,South America +2024-07-03,92355,3708,"[""Charger""]",1469.64,"{"""": ""11%""}",201952,0,North America +2024-09-15,92356,4207,"[""Charger""]",2822.74,"{""promo"": ""24%""}",74116,1,Asia +2023-04-06,92357,7043,"[""Laptop"", ""Monitor""]",2555.24,{},116274,0,Europe +2024-10-15,92358,4336,"[""Laptop"", ""Wireless Mouse""]",1306.62,"{"""": ""24%""}",202443,0,Africa +2023-05-19,92359,1698,"[""Monitor"", ""Headphones""]",3958.19,"{""promo"": ""12%""}",208265,0,North America +2023-11-30,92360,1617,"[""Wireless Mouse""]",4209.52,"{""seasonal"": ""24%""}",295742,1,Africa +2023-05-21,92361,4019,"[""Headphones"", ""Laptop"", ""Tablet""]",1597.42,{},100744,1,South America +2024-07-14,92362,2084,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4785.48,"{""loyalty"": ""6%""}",208687,0,Africa +2023-03-13,92363,7544,"[""Charger"", ""Monitor"", ""Phone""]",1830.33,"{"""": ""25%""}",175664,0,Europe +2023-03-20,92364,3971,"[""Keyboard""]",2870.05,"{""loyalty"": ""9%""}",296008,0,Europe +2023-12-11,92365,2422,"[""Keyboard"", ""Headphones""]",4459.67,{},159772,0,South America +2023-06-24,92366,1450,"[""Keyboard"", ""Monitor"", ""Headphones""]",3510.07,{},101539,0,South America +2024-08-12,92367,3659,"[""Charger"", ""Monitor"", ""Headphones""]",1626.86,"{""promo"": ""8%""}",52341,1,Africa +2024-07-09,92368,1858,"[""Tablet"", ""Phone""]",4708.93,{},104022,0,Europe +2023-03-26,92369,1577,"[""Charger""]",459.44,{},147381,0,North America +2023-12-27,92370,3271,"[""Charger"", ""Wireless Mouse""]",3606.64,"{""seasonal"": ""22%""}",151062,0,North America +2024-08-27,92371,6948,"[""Monitor"", ""Tablet""]",4247.29,"{""promo"": ""20%""}",130299,0,Africa +2023-04-22,92372,8768,"[""Monitor""]",1312.96,{},174241,1,South America +2023-04-23,92373,7472,"[""Phone"", ""Monitor"", ""Tablet""]",230.35,{},113393,0,South America +2023-10-23,92374,6249,"[""Keyboard""]",4441.13,"{"""": ""6%""}",39952,0,Africa +2023-10-30,92375,5084,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2064.76,{},184450,0,Asia +2024-08-16,92376,231,"[""Wireless Mouse""]",1958.08,"{""loyalty"": ""13%""}",62962,1,Asia +2023-03-24,92377,6057,"[""Monitor""]",2169.17,"{""promo"": ""7%""}",182143,1,Africa +2023-02-04,92378,8814,"[""Phone"", ""Monitor""]",4663.87,"{""seasonal"": ""26%""}",23711,1,North America +2023-04-22,92379,1130,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",1299.4,"{""loyalty"": ""7%""}",297133,0,North America +2023-05-04,92380,2716,"[""Charger"", ""Phone""]",1437.46,{},55505,0,Asia +2024-05-29,92381,582,"[""Monitor""]",2141.64,"{"""": ""24%""}",256102,1,South America +2024-11-28,92382,6429,"[""Charger"", ""Tablet"", ""Headphones""]",913.07,{},118406,1,South America +2024-11-10,92383,8157,"[""Tablet""]",2437.67,"{""seasonal"": ""24%""}",266976,1,Africa +2023-04-28,92384,4473,"[""Tablet"", ""Keyboard"", ""Laptop""]",1503.38,{},108741,1,Africa +2024-12-02,92385,1417,"[""Keyboard"", ""Monitor""]",3796.12,"{""promo"": ""29%""}",132090,1,Africa +2024-08-24,92386,2414,"[""Keyboard""]",1846.52,{},214434,0,Africa +2024-10-27,92387,6076,"[""Charger"", ""Headphones""]",4992.97,"{""promo"": ""9%""}",153671,1,Europe +2024-04-11,92388,2926,"[""Wireless Mouse"", ""Keyboard""]",4989.31,"{""loyalty"": ""10%""}",38480,1,North America +2024-01-09,92389,9017,"[""Monitor""]",2726.06,{},227968,0,South America +2023-07-23,92390,2904,"[""Charger"", ""Tablet"", ""Laptop""]",4750.95,{},248035,0,South America +2024-12-24,92391,4685,"[""Monitor""]",3178.14,{},299417,1,Asia +2023-12-14,92392,9052,"[""Charger""]",3679.98,{},135294,1,South America +2024-12-31,92393,5551,"[""Tablet""]",1794.46,"{""promo"": ""30%""}",7642,0,Europe +2023-10-27,92394,6348,"[""Charger""]",2578.0,{},265304,1,Asia +2023-05-25,92395,1208,"[""Laptop""]",4071.33,{},33713,0,Africa +2024-06-28,92396,9850,"[""Monitor"", ""Headphones"", ""Keyboard""]",3626.13,"{""loyalty"": ""12%""}",107342,0,Europe +2024-04-02,92397,5407,"[""Laptop""]",258.07,{},94022,1,Europe +2024-04-28,92398,3781,"[""Laptop""]",2413.75,"{"""": ""26%""}",246417,1,North America +2023-05-19,92399,2510,"[""Laptop""]",1413.92,"{""seasonal"": ""24%""}",213369,1,Europe +2023-05-13,92400,2093,"[""Tablet""]",4524.22,{},128168,1,North America +2023-10-30,92401,2982,"[""Laptop"", ""Tablet"", ""Phone""]",3904.13,"{"""": ""13%""}",67119,0,Asia +2024-08-10,92402,3898,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",4405.64,{},285006,1,Africa +2024-05-17,92403,9794,"[""Tablet"", ""Headphones"", ""Monitor""]",3613.78,{},36106,0,Africa +2023-01-24,92404,6535,"[""Laptop""]",1375.58,"{""loyalty"": ""14%""}",22240,1,Africa +2023-02-19,92405,3010,"[""Phone"", ""Monitor"", ""Headphones""]",4401.77,{},269408,1,North America +2024-01-23,92406,5726,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4523.24,{},126692,1,Asia +2023-04-16,92407,8252,"[""Charger""]",3849.4,{},251305,1,Asia +2023-03-31,92408,6013,"[""Monitor""]",2591.62,"{"""": ""16%""}",118648,1,Africa +2024-01-14,92409,7125,"[""Wireless Mouse""]",1943.48,{},46489,1,Africa +2023-07-04,92410,3208,"[""Charger"", ""Phone""]",3714.2,"{""loyalty"": ""10%""}",162121,1,Asia +2023-07-17,92411,4285,"[""Wireless Mouse"", ""Laptop""]",141.65,"{""loyalty"": ""18%""}",169515,0,Africa +2023-12-31,92412,3538,"[""Tablet"", ""Headphones""]",779.63,"{""loyalty"": ""26%""}",191739,0,Africa +2024-10-08,92413,9250,"[""Monitor"", ""Charger"", ""Phone""]",1124.84,{},267483,0,Africa +2024-03-17,92414,2062,"[""Headphones"", ""Phone"", ""Tablet""]",614.84,"{"""": ""11%""}",158134,0,Europe +2023-11-17,92415,8187,"[""Headphones"", ""Laptop""]",4902.58,{},199661,0,Europe +2023-11-18,92416,3346,"[""Keyboard"", ""Phone"", ""Laptop""]",4307.65,{},28206,1,Europe +2023-03-10,92417,7333,"[""Headphones"", ""Keyboard"", ""Monitor""]",3441.63,"{""loyalty"": ""8%""}",135781,0,North America +2023-10-25,92418,6547,"[""Keyboard"", ""Phone""]",1099.9,"{""promo"": ""7%""}",18254,1,Africa +2023-06-20,92419,6573,"[""Phone""]",4144.31,"{"""": ""20%""}",34366,0,Africa +2024-04-14,92420,9317,"[""Monitor""]",4746.59,"{""loyalty"": ""14%""}",287074,0,Africa +2023-09-19,92421,6063,"[""Keyboard"", ""Phone"", ""Laptop""]",2637.25,"{"""": ""17%""}",283486,1,Europe +2024-12-20,92422,746,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",448.91,{},232199,0,North America +2023-01-20,92423,5406,"[""Keyboard"", ""Charger"", ""Monitor""]",2089.11,{},132705,1,North America +2024-09-16,92424,748,"[""Tablet""]",3007.83,"{"""": ""20%""}",287197,0,North America +2023-05-10,92425,203,"[""Laptop"", ""Keyboard"", ""Charger""]",3299.64,{},88200,1,Europe +2023-02-23,92426,817,"[""Tablet"", ""Phone""]",1391.77,"{""seasonal"": ""17%""}",161181,0,Africa +2024-01-22,92427,7770,"[""Headphones"", ""Charger"", ""Tablet""]",4946.03,{},53146,0,North America +2023-08-09,92428,7047,"[""Charger"", ""Headphones"", ""Keyboard""]",4353.11,"{"""": ""22%""}",216751,1,Europe +2024-12-23,92429,1487,"[""Keyboard"", ""Tablet"", ""Phone""]",1433.25,"{""seasonal"": ""9%""}",254124,0,Europe +2024-02-29,92430,9390,"[""Phone"", ""Keyboard"", ""Laptop""]",1658.12,{},23440,1,South America +2024-11-02,92431,233,"[""Headphones"", ""Keyboard"", ""Monitor""]",1744.29,{},193021,0,Africa +2024-09-21,92432,9541,"[""Headphones""]",4888.06,"{""promo"": ""7%""}",267816,1,Africa +2024-05-28,92433,283,"[""Laptop"", ""Headphones""]",4932.23,{},226426,0,South America +2023-11-05,92434,6291,"[""Wireless Mouse"", ""Keyboard""]",1220.15,"{"""": ""23%""}",27631,0,South America +2023-08-02,92435,4833,"[""Keyboard"", ""Charger"", ""Headphones""]",4084.33,{},74526,0,North America +2023-12-03,92436,5898,"[""Phone""]",1411.32,{},134066,1,Asia +2024-07-25,92437,4497,"[""Charger"", ""Keyboard"", ""Tablet""]",2066.01,"{""seasonal"": ""11%""}",108454,1,Europe +2023-12-03,92438,4449,"[""Headphones"", ""Laptop"", ""Monitor""]",4370.16,{},13308,1,Africa +2023-03-14,92439,3129,"[""Phone"", ""Charger""]",3834.92,{},90851,0,North America +2023-12-05,92440,3867,"[""Charger"", ""Keyboard""]",943.18,"{""promo"": ""19%""}",27674,0,North America +2024-09-13,92441,3521,"[""Phone""]",2345.11,"{""seasonal"": ""14%""}",173848,0,Europe +2023-09-24,92442,8559,"[""Monitor"", ""Keyboard"", ""Laptop""]",616.71,{},269552,1,Asia +2023-07-10,92443,6446,"[""Laptop"", ""Charger"", ""Tablet""]",916.93,"{""seasonal"": ""10%""}",162070,0,Africa +2023-09-09,92444,4976,"[""Monitor"", ""Laptop"", ""Charger""]",2490.5,"{""seasonal"": ""28%""}",81501,1,Europe +2023-09-08,92445,5616,"[""Phone"", ""Charger""]",279.09,{},50098,0,North America +2023-09-15,92446,4779,"[""Keyboard"", ""Laptop""]",3428.12,"{""loyalty"": ""10%""}",6722,0,Africa +2024-09-13,92447,7773,"[""Wireless Mouse"", ""Charger""]",4772.09,"{"""": ""25%""}",4579,0,Europe +2024-12-08,92448,4517,"[""Laptop"", ""Tablet""]",4970.13,{},156596,1,Africa +2023-10-05,92449,7262,"[""Headphones"", ""Keyboard""]",882.82,{},290960,1,Europe +2023-09-15,92450,2257,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4644.86,{},8640,1,Africa +2024-07-04,92451,4230,"[""Headphones"", ""Monitor"", ""Keyboard""]",4005.48,"{""seasonal"": ""29%""}",93611,1,Africa +2023-12-08,92452,841,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",501.1,"{""seasonal"": ""8%""}",291400,0,North America +2023-08-30,92453,7945,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",2968.47,"{""seasonal"": ""11%""}",240138,0,North America +2023-02-28,92454,6664,"[""Headphones""]",4557.4,"{""loyalty"": ""29%""}",186296,0,North America +2024-08-25,92455,8615,"[""Keyboard""]",4969.81,{},198570,1,Europe +2024-03-24,92456,9059,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",3479.87,{},21942,0,Europe +2023-10-26,92457,9681,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",1011.07,{},17097,1,North America +2023-09-22,92458,6864,"[""Tablet"", ""Monitor""]",3102.74,{},250936,0,North America +2024-09-01,92459,9356,"[""Laptop"", ""Keyboard""]",4933.06,{},36606,1,Europe +2024-05-27,92460,8060,"[""Tablet""]",894.92,{},17079,0,Europe +2024-08-25,92461,2183,"[""Tablet""]",1568.3,"{""loyalty"": ""12%""}",67574,1,North America +2024-11-26,92462,1217,"[""Monitor"", ""Phone""]",4833.32,{},287795,0,Africa +2024-03-03,92463,6354,"[""Phone""]",1472.8,{},60542,1,South America +2024-10-11,92464,5225,"[""Monitor""]",2657.17,"{""loyalty"": ""27%""}",132082,1,South America +2023-10-24,92465,5578,"[""Phone"", ""Monitor""]",1442.16,"{"""": ""12%""}",299808,1,Europe +2023-04-28,92466,2559,"[""Charger"", ""Headphones"", ""Tablet""]",3211.63,"{""loyalty"": ""26%""}",13618,1,Africa +2024-05-13,92467,6500,"[""Keyboard"", ""Phone""]",4126.8,"{""loyalty"": ""20%""}",209279,1,Africa +2023-05-14,92468,3429,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1240.29,"{""promo"": ""30%""}",268826,0,South America +2023-07-27,92469,1597,"[""Wireless Mouse"", ""Keyboard""]",316.16,{},80131,1,Europe +2024-12-01,92470,376,"[""Tablet"", ""Charger""]",600.56,{},145536,1,Africa +2023-07-08,92471,9494,"[""Keyboard""]",426.88,{},177288,0,Asia +2023-11-25,92472,7689,"[""Keyboard"", ""Wireless Mouse""]",1152.07,{},275351,1,Africa +2023-10-06,92473,9738,"[""Laptop"", ""Headphones"", ""Phone""]",3628.99,"{""loyalty"": ""24%""}",79096,1,Europe +2023-07-16,92474,6852,"[""Keyboard"", ""Phone""]",1242.51,{},26060,1,North America +2023-10-13,92475,4615,"[""Keyboard"", ""Monitor"", ""Phone""]",2839.82,"{""loyalty"": ""29%""}",171287,1,North America +2024-03-15,92476,4781,"[""Keyboard"", ""Tablet""]",2825.03,{},119455,0,Europe +2023-02-10,92477,983,"[""Headphones""]",3998.23,"{"""": ""30%""}",132554,1,Africa +2024-02-22,92478,5345,"[""Tablet"", ""Keyboard""]",2136.48,"{""loyalty"": ""25%""}",87197,1,South America +2024-02-11,92479,327,"[""Laptop""]",631.69,"{""loyalty"": ""6%""}",257956,0,Asia +2023-03-14,92480,1345,"[""Phone""]",3202.81,"{""loyalty"": ""28%""}",2362,1,Africa +2023-03-31,92481,2131,"[""Headphones"", ""Phone"", ""Keyboard""]",643.1,"{""seasonal"": ""9%""}",205485,1,Asia +2023-12-05,92482,7295,"[""Charger""]",1503.96,"{""loyalty"": ""13%""}",126225,0,Asia +2023-10-10,92483,3246,"[""Keyboard"", ""Laptop""]",441.97,"{"""": ""19%""}",263134,0,South America +2024-06-13,92484,5381,"[""Keyboard"", ""Tablet""]",4476.04,{},88789,1,Africa +2023-10-02,92485,3232,"[""Phone"", ""Monitor""]",231.07,"{"""": ""30%""}",29470,1,South America +2024-09-04,92486,4732,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1667.49,{},98614,0,Europe +2023-03-20,92487,9245,"[""Headphones""]",1178.61,"{"""": ""13%""}",3165,1,Asia +2023-03-31,92488,7940,"[""Headphones""]",3938.98,"{""seasonal"": ""8%""}",83775,0,Europe +2024-08-11,92489,5733,"[""Tablet"", ""Keyboard""]",318.7,{},238463,1,Europe +2023-02-22,92490,5794,"[""Monitor""]",1224.33,{},220336,0,North America +2024-12-21,92491,5895,"[""Charger""]",245.96,"{""seasonal"": ""12%""}",97430,0,Africa +2024-08-14,92492,3663,"[""Headphones""]",1157.0,"{""promo"": ""8%""}",259215,0,North America +2023-04-06,92493,494,"[""Phone"", ""Monitor"", ""Keyboard""]",983.27,{},218282,1,North America +2023-04-21,92494,4028,"[""Wireless Mouse"", ""Laptop""]",558.33,"{""loyalty"": ""28%""}",279048,0,Africa +2023-10-14,92495,9464,"[""Laptop"", ""Monitor""]",4211.83,"{"""": ""27%""}",73320,0,South America +2024-09-11,92496,5381,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",2169.99,"{""promo"": ""19%""}",221399,0,Europe +2024-10-01,92497,9534,"[""Keyboard"", ""Headphones""]",576.82,{},31790,1,North America +2023-04-27,92498,4402,"[""Headphones""]",2334.85,"{""seasonal"": ""25%""}",33823,0,Asia +2024-11-28,92499,5943,"[""Headphones"", ""Keyboard""]",776.38,{},209382,1,Africa +2024-07-01,92500,5749,"[""Phone""]",1408.15,{},155548,1,Europe +2023-09-06,92501,5187,"[""Phone""]",2032.04,{},45905,1,Africa +2023-09-18,92502,1273,"[""Laptop"", ""Charger""]",2322.33,"{""loyalty"": ""29%""}",94263,0,North America +2024-01-29,92503,1946,"[""Monitor"", ""Headphones"", ""Laptop""]",1749.94,{},28513,0,Europe +2024-04-15,92504,3013,"[""Wireless Mouse"", ""Keyboard""]",4995.54,"{""loyalty"": ""12%""}",159217,0,Africa +2024-06-01,92505,5728,"[""Laptop"", ""Headphones""]",513.15,{},70088,0,Asia +2023-06-25,92506,2012,"[""Tablet""]",2499.63,{},197838,1,Africa +2024-11-01,92507,687,"[""Keyboard"", ""Headphones"", ""Tablet""]",4915.02,{},151775,0,Europe +2024-12-04,92508,6374,"[""Charger""]",2636.12,"{"""": ""27%""}",261185,1,South America +2024-11-20,92509,8030,"[""Monitor"", ""Keyboard"", ""Phone""]",2017.7,{},164432,1,Asia +2024-01-24,92510,726,"[""Laptop""]",1854.31,{},197860,1,Europe +2024-06-24,92511,7107,"[""Charger""]",1567.66,{},50098,1,Africa +2024-09-28,92512,6777,"[""Headphones"", ""Keyboard"", ""Monitor""]",4964.48,{},36711,1,South America +2023-04-09,92513,2563,"[""Monitor"", ""Wireless Mouse""]",4988.43,"{""promo"": ""12%""}",30767,1,South America +2024-03-12,92514,9180,"[""Monitor"", ""Tablet""]",3320.72,"{""promo"": ""30%""}",228782,1,Europe +2024-02-29,92515,7124,"[""Keyboard"", ""Laptop""]",1446.53,{},98077,1,Asia +2024-10-08,92516,7954,"[""Keyboard"", ""Wireless Mouse""]",4840.0,"{""promo"": ""8%""}",17967,1,South America +2024-09-13,92517,3274,"[""Headphones""]",1579.09,{},128793,1,Africa +2023-07-18,92518,4352,"[""Keyboard""]",4607.48,"{"""": ""28%""}",145936,0,Asia +2023-04-26,92519,7964,"[""Tablet"", ""Monitor"", ""Keyboard""]",1477.54,{},77315,0,Europe +2024-10-02,92520,6719,"[""Monitor"", ""Charger""]",938.41,{},24484,1,Europe +2024-01-08,92521,4878,"[""Tablet""]",109.66,"{""promo"": ""16%""}",153341,0,Europe +2024-04-27,92522,9694,"[""Charger""]",3353.75,"{"""": ""14%""}",130507,1,North America +2023-04-23,92523,6307,"[""Monitor"", ""Wireless Mouse""]",2655.87,"{""seasonal"": ""28%""}",284268,0,Europe +2023-05-28,92524,9117,"[""Keyboard"", ""Headphones"", ""Laptop""]",4892.65,{},161539,1,North America +2023-11-25,92525,4938,"[""Phone"", ""Keyboard""]",3561.53,"{"""": ""26%""}",46427,1,Africa +2024-07-24,92526,4417,"[""Keyboard"", ""Charger""]",2255.22,"{"""": ""24%""}",146983,1,South America +2023-01-27,92527,2692,"[""Laptop"", ""Monitor"", ""Tablet""]",910.28,"{""loyalty"": ""6%""}",67503,1,Europe +2024-12-25,92528,1361,"[""Keyboard""]",3499.02,"{"""": ""17%""}",260090,1,Asia +2024-09-09,92529,1093,"[""Headphones"", ""Charger""]",487.02,{},78571,1,South America +2023-12-31,92530,5217,"[""Headphones"", ""Keyboard""]",4993.35,{},208091,0,Asia +2024-12-30,92531,7084,"[""Headphones""]",1141.26,"{""promo"": ""20%""}",146038,0,Africa +2023-11-05,92532,3493,"[""Monitor"", ""Tablet"", ""Headphones""]",234.6,"{""promo"": ""17%""}",296316,0,Africa +2023-06-16,92533,1282,"[""Phone""]",273.12,{},132248,0,Europe +2024-08-22,92534,6508,"[""Laptop"", ""Phone""]",3882.55,{},208776,0,Africa +2024-05-16,92535,7174,"[""Monitor"", ""Phone""]",1540.19,{},13689,0,Europe +2024-11-28,92536,6462,"[""Charger"", ""Headphones""]",2290.1,{},91540,1,Asia +2024-11-16,92537,2739,"[""Wireless Mouse"", ""Laptop""]",760.02,{},218973,0,North America +2023-05-20,92538,921,"[""Laptop"", ""Monitor"", ""Headphones""]",4626.08,"{""seasonal"": ""14%""}",38043,0,Asia +2023-08-21,92539,7990,"[""Headphones"", ""Charger""]",3710.72,"{""loyalty"": ""21%""}",21088,1,Africa +2023-10-15,92540,271,"[""Laptop"", ""Headphones"", ""Charger""]",4167.53,{},183188,0,Africa +2023-03-12,92541,2505,"[""Monitor"", ""Tablet""]",1103.48,{},128005,1,Asia +2023-04-10,92542,7734,"[""Keyboard"", ""Wireless Mouse""]",2364.75,{},107276,0,South America +2024-01-26,92543,4199,"[""Wireless Mouse"", ""Charger""]",400.48,{},168451,0,Asia +2024-05-03,92544,9716,"[""Laptop"", ""Monitor"", ""Tablet""]",2856.32,{},243596,1,South America +2024-09-08,92545,5664,"[""Laptop""]",3419.0,{},63645,1,South America +2023-07-28,92546,6455,"[""Monitor""]",2585.59,{},18643,1,South America +2023-10-03,92547,2945,"[""Tablet"", ""Headphones"", ""Keyboard""]",4127.8,{},51533,1,North America +2024-08-09,92548,968,"[""Keyboard"", ""Phone""]",2348.14,{},176422,1,Asia +2024-12-19,92549,9673,"[""Monitor"", ""Tablet""]",2506.34,{},151605,0,Asia +2023-06-09,92550,1014,"[""Monitor""]",2564.73,{},240567,1,North America +2024-10-28,92551,8487,"[""Monitor"", ""Keyboard""]",4289.88,"{""seasonal"": ""16%""}",289721,0,North America +2023-09-05,92552,6952,"[""Phone"", ""Charger""]",1137.21,"{""loyalty"": ""23%""}",251564,0,North America +2024-04-15,92553,9501,"[""Keyboard""]",4918.67,"{""seasonal"": ""13%""}",216978,0,Africa +2023-07-08,92554,5659,"[""Wireless Mouse""]",2595.13,{},217449,1,North America +2023-03-21,92555,6512,"[""Laptop"", ""Phone""]",1862.95,"{""seasonal"": ""10%""}",209818,0,Asia +2023-04-01,92556,8878,"[""Headphones""]",434.52,"{""seasonal"": ""18%""}",251139,1,North America +2024-01-22,92557,1501,"[""Headphones"", ""Wireless Mouse""]",469.02,{},297888,0,Europe +2023-02-17,92558,180,"[""Tablet"", ""Laptop""]",3087.31,"{""promo"": ""29%""}",127011,1,South America +2024-05-28,92559,4566,"[""Headphones""]",4080.6,{},268276,0,Africa +2024-01-12,92560,2269,"[""Keyboard"", ""Headphones"", ""Tablet""]",4994.39,{},277287,0,Asia +2024-02-01,92561,6681,"[""Tablet"", ""Monitor""]",1818.69,"{""seasonal"": ""13%""}",102238,0,South America +2024-05-21,92562,6224,"[""Tablet""]",4007.93,{},50956,1,Asia +2024-01-04,92563,6993,"[""Charger"", ""Tablet"", ""Laptop""]",1427.61,"{""promo"": ""11%""}",64689,1,North America +2023-06-19,92564,5547,"[""Wireless Mouse"", ""Tablet""]",3852.33,{},196244,1,Europe +2024-03-02,92565,2920,"[""Charger"", ""Phone""]",3625.79,{},35001,0,Africa +2024-04-21,92566,8828,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",982.14,{},36385,1,South America +2024-07-22,92567,1682,"[""Monitor"", ""Wireless Mouse""]",444.63,"{""seasonal"": ""30%""}",290167,1,South America +2023-06-07,92568,6566,"[""Charger"", ""Laptop""]",112.97,"{""loyalty"": ""30%""}",172860,1,Africa +2024-07-22,92569,1627,"[""Phone""]",3476.81,"{"""": ""10%""}",40331,1,Asia +2024-03-06,92570,6305,"[""Headphones"", ""Charger""]",1487.5,{},136290,1,Asia +2023-08-20,92571,3470,"[""Charger""]",3838.98,{},295195,1,North America +2024-08-01,92572,7537,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1841.14,{},23256,1,South America +2023-02-26,92573,3398,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2411.34,{},169565,1,South America +2024-04-05,92574,2986,"[""Tablet""]",725.34,"{"""": ""12%""}",165023,1,Europe +2024-08-01,92575,4063,"[""Headphones"", ""Monitor"", ""Tablet""]",1994.96,{},53738,1,South America +2023-01-21,92576,4263,"[""Tablet"", ""Headphones""]",1640.73,"{"""": ""6%""}",220049,0,Asia +2023-05-20,92577,8688,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3418.24,{},298950,1,Africa +2024-07-11,92578,3542,"[""Monitor""]",1588.0,"{"""": ""25%""}",246526,0,Asia +2024-08-07,92579,1624,"[""Tablet"", ""Phone""]",2018.5,{},42958,1,Europe +2024-01-20,92580,8317,"[""Headphones"", ""Keyboard"", ""Laptop""]",896.31,{},257251,1,South America +2023-12-13,92581,8555,"[""Keyboard""]",1406.83,{},162756,0,North America +2024-06-10,92582,1670,"[""Monitor"", ""Charger"", ""Phone""]",4275.72,{},119320,1,Africa +2023-12-26,92583,4747,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",4788.53,"{""loyalty"": ""13%""}",79533,0,Asia +2024-05-20,92584,1443,"[""Laptop""]",4569.1,{},227666,0,North America +2023-04-22,92585,9797,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3863.71,"{""seasonal"": ""30%""}",162546,1,Europe +2023-06-27,92586,4670,"[""Headphones""]",4022.04,{},294427,1,Africa +2023-11-10,92587,5147,"[""Charger""]",1515.93,{},136889,0,Europe +2024-07-08,92588,9672,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1830.39,"{""promo"": ""24%""}",85028,0,Asia +2023-07-31,92589,4311,"[""Laptop""]",704.31,"{""loyalty"": ""29%""}",86102,0,North America +2024-11-30,92590,8072,"[""Charger"", ""Phone""]",1703.37,"{""promo"": ""12%""}",109683,0,South America +2023-12-26,92591,5044,"[""Tablet"", ""Charger"", ""Laptop""]",1782.59,"{"""": ""9%""}",298808,0,Asia +2023-01-17,92592,8705,"[""Wireless Mouse""]",1312.14,"{""promo"": ""28%""}",166939,1,North America +2023-02-11,92593,6790,"[""Laptop"", ""Phone""]",2656.95,{},219249,0,Africa +2024-06-07,92594,6837,"[""Tablet"", ""Monitor""]",427.91,{},37997,1,South America +2023-09-24,92595,1914,"[""Monitor""]",3236.54,"{"""": ""9%""}",209619,0,South America +2024-04-28,92596,7828,"[""Phone"", ""Charger""]",651.52,{},96403,0,Europe +2024-06-19,92597,9578,"[""Monitor""]",1916.04,"{""loyalty"": ""10%""}",138836,0,North America +2023-01-07,92598,7745,"[""Monitor"", ""Headphones"", ""Tablet""]",3246.14,{},55052,1,Asia +2024-08-14,92599,3115,"[""Monitor""]",1903.69,"{""promo"": ""16%""}",270710,1,North America +2024-12-13,92600,6550,"[""Phone""]",3947.09,{},98493,1,Europe +2024-10-27,92601,3126,"[""Keyboard"", ""Charger""]",4833.94,"{"""": ""29%""}",208625,0,Asia +2023-01-29,92602,2987,"[""Wireless Mouse""]",4912.88,"{""loyalty"": ""23%""}",119542,0,North America +2024-03-12,92603,9809,"[""Keyboard""]",3401.03,{},171661,0,North America +2024-03-05,92604,9665,"[""Tablet"", ""Headphones"", ""Laptop""]",3435.28,{},183791,0,Europe +2023-04-12,92605,5682,"[""Laptop"", ""Tablet""]",317.09,{},290864,1,South America +2023-04-15,92606,6035,"[""Tablet"", ""Headphones"", ""Laptop""]",4595.98,{},186079,1,Africa +2023-10-05,92607,6920,"[""Tablet""]",1335.37,"{""seasonal"": ""10%""}",223645,1,Asia +2023-08-08,92608,2426,"[""Phone"", ""Headphones""]",2089.25,"{""seasonal"": ""20%""}",275561,0,North America +2024-10-08,92609,8168,"[""Tablet"", ""Keyboard""]",1233.48,"{""promo"": ""6%""}",296031,1,Europe +2023-01-02,92610,9380,"[""Headphones""]",4117.55,"{""promo"": ""15%""}",213890,1,Asia +2024-07-08,92611,2932,"[""Monitor""]",2615.1,{},154177,0,Europe +2023-09-06,92612,4307,"[""Monitor"", ""Tablet"", ""Keyboard""]",554.81,"{""loyalty"": ""7%""}",259952,1,South America +2023-09-11,92613,880,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2196.29,{},233176,1,South America +2023-06-08,92614,5864,"[""Laptop"", ""Tablet"", ""Headphones""]",4100.39,"{""seasonal"": ""5%""}",285003,0,North America +2023-08-26,92615,3869,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",3450.03,"{""seasonal"": ""18%""}",161213,1,Africa +2024-09-15,92616,2823,"[""Keyboard""]",1674.38,"{""loyalty"": ""17%""}",137399,1,Europe +2023-02-22,92617,1350,"[""Phone""]",91.64,{},132464,1,Africa +2024-02-12,92618,230,"[""Tablet""]",1060.06,"{""loyalty"": ""5%""}",32293,1,Asia +2023-08-09,92619,9787,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2280.7,{},255996,0,Europe +2023-01-30,92620,6556,"[""Keyboard"", ""Charger""]",4757.12,"{""promo"": ""28%""}",248427,0,Africa +2024-06-01,92621,2425,"[""Phone"", ""Wireless Mouse""]",192.64,{},210231,1,South America +2023-08-11,92622,400,"[""Keyboard"", ""Headphones""]",1146.57,{},289538,0,Africa +2024-12-12,92623,8426,"[""Monitor""]",787.87,{},103420,0,South America +2024-12-23,92624,8958,"[""Charger""]",1492.94,"{"""": ""14%""}",246854,0,North America +2024-06-05,92625,3535,"[""Tablet"", ""Headphones""]",289.15,{},135732,1,Africa +2023-06-08,92626,4701,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4643.61,{},70725,1,South America +2023-04-21,92627,5946,"[""Wireless Mouse""]",1332.66,"{""loyalty"": ""7%""}",2659,1,South America +2023-04-13,92628,4329,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4353.55,"{"""": ""23%""}",229102,1,Africa +2024-12-21,92629,6194,"[""Wireless Mouse"", ""Charger""]",2916.96,{},162897,0,Asia +2024-11-26,92630,6651,"[""Keyboard"", ""Phone""]",4046.8,"{""seasonal"": ""7%""}",54524,1,North America +2023-09-28,92631,8502,"[""Monitor""]",3639.5,"{"""": ""13%""}",152249,0,Europe +2024-12-24,92632,578,"[""Monitor""]",3774.36,{},46958,1,Asia +2023-02-24,92633,1199,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",714.04,"{""promo"": ""8%""}",144411,1,Asia +2024-06-07,92634,9032,"[""Wireless Mouse""]",4352.83,{},165806,0,Africa +2024-02-13,92635,1862,"[""Laptop"", ""Charger"", ""Headphones""]",829.63,"{"""": ""11%""}",119407,0,Asia +2023-03-31,92636,6411,"[""Headphones"", ""Keyboard"", ""Monitor""]",4835.77,{},219919,0,North America +2024-04-04,92637,9681,"[""Phone"", ""Laptop""]",458.24,"{""seasonal"": ""25%""}",184834,1,Africa +2024-10-09,92638,2968,"[""Phone"", ""Charger""]",2816.44,{},230844,1,South America +2023-05-08,92639,2019,"[""Keyboard"", ""Monitor""]",168.78,"{""seasonal"": ""24%""}",221142,1,South America +2023-04-16,92640,6535,"[""Headphones""]",3648.31,"{""seasonal"": ""13%""}",109763,1,Asia +2024-01-20,92641,7417,"[""Monitor"", ""Phone""]",3796.44,{},221925,1,North America +2023-09-24,92642,6130,"[""Phone""]",342.96,{},119088,1,Asia +2023-03-19,92643,6673,"[""Keyboard"", ""Laptop"", ""Headphones""]",2168.11,{},298617,1,Asia +2023-05-08,92644,1034,"[""Monitor""]",579.04,{},107433,1,Africa +2024-10-02,92645,1994,"[""Tablet"", ""Charger""]",4102.46,{},111317,0,Europe +2024-10-25,92646,4194,"[""Monitor""]",2068.42,{},173494,0,North America +2024-07-13,92647,4999,"[""Tablet""]",4299.34,"{""promo"": ""18%""}",56182,0,South America +2024-07-28,92648,4040,"[""Wireless Mouse""]",3073.35,{},109539,0,Asia +2024-09-26,92649,8255,"[""Phone"", ""Headphones""]",1435.54,"{""loyalty"": ""7%""}",49136,0,Europe +2024-03-03,92650,5830,"[""Tablet"", ""Laptop""]",4931.75,{},155157,0,North America +2023-12-31,92651,2575,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1891.9,{},140935,0,Africa +2023-02-04,92652,6101,"[""Headphones"", ""Monitor""]",2590.53,"{"""": ""16%""}",168850,1,Asia +2024-02-05,92653,326,"[""Keyboard"", ""Charger"", ""Headphones""]",4938.63,"{""loyalty"": ""5%""}",288772,0,North America +2024-08-10,92654,548,"[""Wireless Mouse""]",1734.32,"{""loyalty"": ""8%""}",226911,0,Europe +2023-01-15,92655,46,"[""Laptop"", ""Monitor"", ""Headphones""]",1723.0,{},289988,1,Africa +2024-12-10,92656,1059,"[""Keyboard"", ""Headphones"", ""Tablet""]",4502.06,"{""loyalty"": ""5%""}",289199,0,Africa +2023-09-09,92657,5750,"[""Laptop""]",3788.76,{},185584,0,Europe +2023-09-28,92658,1010,"[""Laptop""]",2639.01,"{""loyalty"": ""29%""}",278819,1,South America +2023-11-10,92659,8128,"[""Headphones""]",2262.99,"{""seasonal"": ""17%""}",92119,1,Europe +2023-03-16,92660,2680,"[""Monitor""]",4730.76,"{""seasonal"": ""28%""}",295561,1,Asia +2024-07-06,92661,7987,"[""Headphones""]",2618.7,{},133988,0,South America +2023-04-10,92662,618,"[""Keyboard"", ""Phone""]",3452.38,{},229735,1,Asia +2024-12-07,92663,9612,"[""Monitor""]",4528.32,{},140274,0,North America +2024-03-25,92664,9090,"[""Phone"", ""Charger""]",1169.95,{},72193,0,Europe +2024-10-26,92665,9303,"[""Laptop""]",4022.88,"{""promo"": ""19%""}",215643,1,Africa +2023-07-15,92666,307,"[""Keyboard""]",427.79,{},227522,0,Africa +2023-04-25,92667,319,"[""Keyboard"", ""Charger"", ""Laptop""]",399.28,"{""promo"": ""24%""}",165107,1,South America +2023-01-02,92668,8988,"[""Phone"", ""Laptop""]",3695.97,"{""loyalty"": ""8%""}",92487,1,Europe +2024-10-04,92669,6828,"[""Charger"", ""Headphones"", ""Monitor""]",3274.69,{},2471,0,Asia +2023-07-16,92670,3531,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1120.05,{},109778,0,Africa +2023-02-15,92671,5004,"[""Monitor""]",1654.63,{},174012,0,Africa +2024-01-18,92672,291,"[""Phone"", ""Monitor""]",3192.85,"{""promo"": ""9%""}",52762,0,North America +2024-01-10,92673,1153,"[""Tablet"", ""Keyboard""]",2206.81,"{""promo"": ""22%""}",24804,0,Africa +2023-09-16,92674,8530,"[""Monitor""]",3896.24,"{""seasonal"": ""22%""}",60107,1,Europe +2024-08-25,92675,6391,"[""Wireless Mouse"", ""Charger""]",2294.68,"{""loyalty"": ""20%""}",211805,1,South America +2023-12-18,92676,4518,"[""Charger"", ""Tablet""]",3139.16,{},243800,1,Africa +2024-11-26,92677,9005,"[""Phone"", ""Tablet""]",2207.23,"{""loyalty"": ""10%""}",38497,1,Africa +2024-10-26,92678,3605,"[""Headphones""]",4711.06,{},210059,1,Asia +2024-11-15,92679,1237,"[""Wireless Mouse"", ""Laptop""]",2777.67,"{"""": ""8%""}",80098,0,South America +2024-06-02,92680,2945,"[""Tablet"", ""Laptop""]",3850.79,{},280243,0,Asia +2023-11-03,92681,2764,"[""Charger"", ""Phone"", ""Headphones""]",4347.64,{},232380,1,Asia +2023-02-03,92682,356,"[""Laptop"", ""Headphones"", ""Charger""]",1286.74,{},296078,0,Asia +2024-08-19,92683,8585,"[""Laptop"", ""Keyboard"", ""Headphones""]",4636.47,{},186102,1,North America +2024-10-19,92684,3244,"[""Charger"", ""Laptop"", ""Monitor""]",2715.65,{},222316,1,South America +2024-05-23,92685,1066,"[""Tablet"", ""Charger""]",1789.51,"{"""": ""7%""}",192660,0,Asia +2024-12-02,92686,8865,"[""Phone"", ""Keyboard"", ""Monitor""]",3922.2,"{"""": ""10%""}",93754,0,Asia +2023-12-14,92687,1483,"[""Wireless Mouse"", ""Laptop""]",3906.63,{},239936,1,Asia +2024-04-06,92688,5870,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",662.59,{},57647,0,North America +2024-09-27,92689,2385,"[""Laptop"", ""Phone""]",3690.69,{},2550,0,Africa +2024-09-11,92690,1409,"[""Laptop"", ""Monitor"", ""Keyboard""]",741.58,"{"""": ""20%""}",184569,1,South America +2024-03-29,92691,7466,"[""Monitor"", ""Tablet"", ""Headphones""]",2117.28,"{""promo"": ""28%""}",130046,1,North America +2024-06-08,92692,5190,"[""Charger""]",3426.59,"{""seasonal"": ""15%""}",111514,1,North America +2023-07-08,92693,4620,"[""Phone"", ""Charger""]",1442.55,{},289023,0,Europe +2024-01-13,92694,9072,"[""Headphones"", ""Charger""]",3238.61,{},196073,0,Africa +2024-09-14,92695,9506,"[""Phone""]",2276.66,{},222046,1,North America +2023-01-13,92696,6998,"[""Charger"", ""Tablet""]",4648.94,{},123122,1,Asia +2023-10-13,92697,8159,"[""Monitor""]",2826.91,{},104322,0,Africa +2023-07-21,92698,6159,"[""Phone""]",980.05,{},164210,1,South America +2024-07-13,92699,7772,"[""Laptop"", ""Charger""]",640.57,"{""promo"": ""17%""}",71620,1,Asia +2024-11-14,92700,8412,"[""Tablet"", ""Phone""]",2228.77,"{"""": ""29%""}",8734,0,Africa +2024-08-15,92701,2049,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",3989.46,"{""promo"": ""13%""}",30734,1,North America +2024-11-20,92702,5704,"[""Wireless Mouse""]",4955.0,"{"""": ""22%""}",135079,0,North America +2023-05-19,92703,4589,"[""Keyboard""]",2402.34,{},144544,0,Africa +2023-07-23,92704,805,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2931.3,{},24223,0,Asia +2023-01-31,92705,4367,"[""Tablet""]",1918.73,"{""seasonal"": ""30%""}",77189,0,North America +2024-11-07,92706,8956,"[""Keyboard"", ""Tablet""]",2912.97,{},34826,1,South America +2024-07-21,92707,4234,"[""Keyboard"", ""Charger""]",2943.61,{},298822,1,Europe +2023-07-20,92708,9512,"[""Laptop"", ""Keyboard"", ""Monitor""]",1298.37,{},69986,0,Africa +2023-08-01,92709,9565,"[""Monitor"", ""Tablet"", ""Charger""]",3753.58,"{"""": ""13%""}",161607,0,South America +2023-09-20,92710,2340,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",330.98,"{"""": ""8%""}",208781,0,South America +2023-07-20,92711,2347,"[""Monitor"", ""Laptop"", ""Headphones""]",2508.02,{},156360,0,Europe +2023-08-13,92712,6578,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",2468.87,{},17581,1,Africa +2024-07-03,92713,4804,"[""Headphones""]",1985.54,"{""loyalty"": ""17%""}",124476,1,Asia +2024-08-03,92714,5083,"[""Charger""]",4981.3,{},173234,1,South America +2024-04-09,92715,601,"[""Laptop""]",3284.21,{},132736,1,South America +2023-12-23,92716,207,"[""Tablet"", ""Charger"", ""Phone""]",1337.56,"{""loyalty"": ""21%""}",94497,1,Asia +2024-08-07,92717,970,"[""Keyboard""]",1862.35,"{"""": ""24%""}",109013,0,North America +2024-04-16,92718,1677,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1016.59,{},218847,0,Asia +2023-02-12,92719,1104,"[""Charger"", ""Headphones"", ""Tablet""]",2189.41,"{""seasonal"": ""28%""}",197105,0,North America +2023-03-11,92720,1442,"[""Charger"", ""Phone""]",4855.57,"{""promo"": ""7%""}",47817,0,South America +2024-09-20,92721,975,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2288.78,"{"""": ""13%""}",104524,1,Africa +2024-07-26,92722,9009,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4568.76,"{""seasonal"": ""24%""}",26293,0,Asia +2023-10-25,92723,513,"[""Headphones""]",4310.93,{},188083,0,Africa +2024-09-27,92724,7680,"[""Charger""]",3928.34,{},37223,0,Europe +2024-12-26,92725,1112,"[""Laptop"", ""Charger"", ""Headphones""]",1161.89,{},298577,0,Europe +2024-06-01,92726,6821,"[""Tablet""]",3258.59,"{""promo"": ""15%""}",275089,0,South America +2023-10-08,92727,6267,"[""Tablet"", ""Keyboard"", ""Laptop""]",3502.11,"{""promo"": ""15%""}",281457,0,Europe +2024-06-27,92728,3878,"[""Monitor"", ""Tablet""]",2736.91,{},174543,1,South America +2024-12-17,92729,3975,"[""Tablet""]",1715.39,"{""promo"": ""8%""}",84623,1,North America +2024-08-01,92730,3821,"[""Phone"", ""Tablet""]",4545.7,{},242052,0,Asia +2024-07-22,92731,6796,"[""Tablet"", ""Charger""]",2797.55,{},150830,0,Africa +2024-04-14,92732,9684,"[""Wireless Mouse"", ""Charger""]",661.61,{},155891,0,Europe +2023-11-17,92733,1673,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",888.52,"{""loyalty"": ""20%""}",41163,0,North America +2023-06-02,92734,9364,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2975.58,"{"""": ""6%""}",64121,1,South America +2024-04-20,92735,2103,"[""Keyboard"", ""Headphones"", ""Monitor""]",923.11,{},27821,1,Europe +2023-02-26,92736,7393,"[""Laptop"", ""Tablet"", ""Keyboard""]",601.13,"{""seasonal"": ""15%""}",122294,1,South America +2023-03-05,92737,805,"[""Monitor"", ""Tablet"", ""Laptop""]",578.53,{},276640,1,Asia +2023-11-11,92738,615,"[""Keyboard""]",4734.82,{},152532,1,Asia +2023-06-02,92739,2360,"[""Headphones""]",3767.64,{},258867,0,Asia +2024-02-08,92740,8584,"[""Wireless Mouse"", ""Monitor""]",4991.6,"{""seasonal"": ""29%""}",195926,1,North America +2023-03-18,92741,6798,"[""Phone""]",2719.0,"{"""": ""29%""}",280908,0,Asia +2024-05-10,92742,5891,"[""Keyboard""]",2196.66,"{""promo"": ""27%""}",94324,1,South America +2024-11-20,92743,9825,"[""Headphones"", ""Keyboard""]",3777.69,"{""promo"": ""6%""}",80973,1,Asia +2023-10-20,92744,5150,"[""Phone"", ""Tablet""]",684.22,{},156150,0,Asia +2024-05-31,92745,8156,"[""Headphones"", ""Keyboard""]",4464.17,"{"""": ""17%""}",188788,0,Asia +2024-12-10,92746,4328,"[""Headphones"", ""Wireless Mouse""]",833.34,"{""seasonal"": ""6%""}",221724,1,Asia +2023-09-28,92747,8794,"[""Headphones"", ""Laptop""]",4652.36,{},1468,0,North America +2024-10-28,92748,5017,"[""Headphones""]",1964.95,"{""seasonal"": ""27%""}",11010,0,North America +2023-03-21,92749,7804,"[""Headphones"", ""Keyboard""]",2289.97,{},192916,1,South America +2023-09-19,92750,4465,"[""Tablet"", ""Charger""]",3739.83,"{""seasonal"": ""16%""}",177574,0,South America +2024-05-18,92751,9201,"[""Tablet""]",2494.08,"{"""": ""10%""}",261447,0,South America +2023-12-23,92752,454,"[""Tablet""]",1831.82,{},177536,0,Africa +2024-04-21,92753,6998,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",4745.32,"{""seasonal"": ""18%""}",18623,1,Europe +2024-01-11,92754,6606,"[""Headphones"", ""Charger"", ""Phone""]",2146.51,{},26142,0,Asia +2023-02-12,92755,4130,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2205.07,{},31513,1,Asia +2024-07-04,92756,4385,"[""Charger""]",2197.07,"{"""": ""29%""}",169650,0,Europe +2024-10-24,92757,7483,"[""Monitor"", ""Laptop""]",3275.42,{},206922,0,North America +2024-06-19,92758,8073,"[""Charger""]",923.6,"{"""": ""18%""}",183073,0,Europe +2024-01-15,92759,7413,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3772.81,{},229932,0,Africa +2024-07-09,92760,7521,"[""Phone"", ""Keyboard""]",654.81,"{""promo"": ""7%""}",118094,1,Africa +2023-08-11,92761,1538,"[""Keyboard"", ""Headphones""]",2805.79,"{"""": ""30%""}",48969,1,Europe +2024-01-05,92762,8919,"[""Laptop"", ""Charger""]",756.52,{},276288,0,North America +2023-01-07,92763,1993,"[""Laptop""]",1045.81,{},45056,0,South America +2023-05-17,92764,3678,"[""Wireless Mouse""]",213.46,{},70731,1,Europe +2024-02-05,92765,9542,"[""Keyboard""]",765.46,{},1489,1,Africa +2023-11-21,92766,8018,"[""Charger"", ""Tablet""]",3814.17,{},288021,0,South America +2024-06-09,92767,2043,"[""Headphones""]",1927.28,{},194334,0,North America +2023-04-09,92768,1784,"[""Keyboard""]",4719.65,{},225894,1,Asia +2024-11-23,92769,7266,"[""Headphones"", ""Keyboard""]",675.82,"{""promo"": ""17%""}",203069,0,Europe +2023-11-01,92770,531,"[""Laptop"", ""Monitor""]",2905.89,{},183626,0,North America +2024-04-24,92771,5927,"[""Phone""]",4370.77,"{"""": ""15%""}",40632,1,South America +2023-03-24,92772,2785,"[""Tablet""]",4722.78,"{""seasonal"": ""11%""}",90781,0,Europe +2024-12-27,92773,9671,"[""Keyboard""]",2263.06,{},248194,1,Africa +2024-06-18,92774,2737,"[""Tablet""]",3077.24,"{""promo"": ""12%""}",186359,0,Asia +2024-01-03,92775,2853,"[""Headphones""]",851.15,"{""seasonal"": ""12%""}",199244,0,Asia +2024-05-25,92776,3450,"[""Headphones"", ""Laptop""]",2388.35,"{""promo"": ""28%""}",186722,0,South America +2023-06-03,92777,6271,"[""Wireless Mouse"", ""Headphones""]",2207.98,"{""seasonal"": ""30%""}",87293,0,Asia +2023-12-23,92778,1029,"[""Charger""]",4128.71,{},142634,0,Asia +2024-02-01,92779,4979,"[""Wireless Mouse"", ""Tablet""]",297.58,{},21637,1,Africa +2024-12-15,92780,6273,"[""Charger"", ""Laptop"", ""Tablet""]",3922.94,{},37708,0,South America +2024-05-07,92781,2336,"[""Charger""]",4667.16,{},97906,1,North America +2024-09-29,92782,7362,"[""Phone"", ""Keyboard""]",4657.55,"{""promo"": ""8%""}",135448,0,South America +2023-02-17,92783,7909,"[""Headphones"", ""Keyboard""]",4864.67,"{""promo"": ""14%""}",282165,1,Africa +2024-07-13,92784,3869,"[""Monitor"", ""Laptop""]",4172.86,"{""seasonal"": ""10%""}",138337,0,North America +2023-07-24,92785,9624,"[""Keyboard"", ""Tablet""]",2893.19,{},92478,1,North America +2023-04-26,92786,9961,"[""Charger"", ""Tablet""]",2954.15,"{"""": ""19%""}",203076,0,Asia +2024-02-06,92787,7098,"[""Keyboard"", ""Phone"", ""Tablet""]",3616.89,"{""promo"": ""6%""}",118962,0,Asia +2024-03-17,92788,3115,"[""Phone"", ""Headphones"", ""Charger""]",2514.92,"{"""": ""15%""}",145432,0,Asia +2023-12-17,92789,9791,"[""Phone"", ""Laptop"", ""Charger""]",4809.83,{},248063,1,South America +2023-12-12,92790,7249,"[""Monitor""]",400.81,"{""seasonal"": ""26%""}",5797,0,Asia +2023-03-21,92791,2793,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",2798.47,"{""seasonal"": ""15%""}",288397,1,Africa +2023-10-01,92792,3899,"[""Charger""]",3395.98,{},5625,1,North America +2024-11-11,92793,6308,"[""Charger"", ""Laptop"", ""Monitor""]",4167.35,"{"""": ""28%""}",55110,0,South America +2024-03-23,92794,2240,"[""Laptop""]",3450.2,"{""seasonal"": ""19%""}",122521,0,Europe +2023-08-31,92795,2198,"[""Charger"", ""Keyboard"", ""Monitor""]",1114.79,"{""promo"": ""28%""}",55352,0,Asia +2024-10-30,92796,6989,"[""Keyboard"", ""Tablet"", ""Headphones""]",3583.8,{},285032,1,Africa +2024-01-03,92797,4235,"[""Laptop""]",2753.83,{},176803,0,Asia +2024-01-13,92798,4871,"[""Charger"", ""Keyboard""]",610.17,{},67838,0,South America +2024-04-27,92799,5907,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4185.78,"{""seasonal"": ""29%""}",272515,0,Asia +2024-03-23,92800,4459,"[""Wireless Mouse"", ""Headphones""]",4969.59,{},72658,1,Europe +2024-02-28,92801,9807,"[""Monitor""]",4321.0,{},112354,1,North America +2023-06-14,92802,1936,"[""Headphones"", ""Charger"", ""Tablet""]",1338.67,"{""loyalty"": ""20%""}",75925,0,Asia +2023-01-05,92803,6013,"[""Laptop"", ""Phone"", ""Headphones""]",2986.14,"{""loyalty"": ""14%""}",5679,1,Europe +2024-03-07,92804,254,"[""Phone""]",4696.09,{},93313,0,Europe +2023-03-04,92805,3917,"[""Tablet"", ""Laptop""]",849.07,{},58682,0,Europe +2023-01-20,92806,3079,"[""Laptop""]",1720.28,{},17386,1,North America +2024-03-06,92807,973,"[""Wireless Mouse"", ""Keyboard""]",1876.75,"{""seasonal"": ""20%""}",252248,0,Europe +2023-12-29,92808,250,"[""Keyboard"", ""Tablet""]",52.0,{},175629,1,South America +2023-05-19,92809,2772,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4030.13,{},12591,1,Asia +2023-02-22,92810,7591,"[""Charger""]",2494.12,{},28564,1,Asia +2023-05-23,92811,2414,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",4101.29,{},118336,1,Europe +2024-03-01,92812,8308,"[""Tablet""]",368.82,"{"""": ""28%""}",211884,0,South America +2023-09-13,92813,1728,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",63.57,{},237508,1,South America +2023-03-14,92814,8824,"[""Headphones"", ""Monitor"", ""Phone""]",442.8,"{""promo"": ""15%""}",43298,0,North America +2024-06-03,92815,7702,"[""Laptop""]",4326.01,"{""loyalty"": ""6%""}",62515,0,North America +2023-06-18,92816,6632,"[""Wireless Mouse"", ""Tablet""]",2251.19,"{""promo"": ""9%""}",104391,0,Africa +2023-07-15,92817,8752,"[""Monitor""]",2204.18,"{""loyalty"": ""17%""}",10567,1,Africa +2023-08-22,92818,9828,"[""Charger"", ""Keyboard"", ""Tablet""]",1018.31,"{"""": ""16%""}",299880,0,South America +2023-01-25,92819,6395,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",2343.44,{},194671,1,South America +2024-09-04,92820,6083,"[""Keyboard""]",1803.11,{},177227,1,Africa +2024-02-21,92821,2292,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3290.68,"{""seasonal"": ""11%""}",36773,1,South America +2023-04-17,92822,464,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",2234.15,{},37137,0,North America +2024-02-07,92823,1641,"[""Tablet"", ""Laptop""]",2747.41,"{""seasonal"": ""22%""}",161643,1,Africa +2023-10-03,92824,6324,"[""Tablet"", ""Keyboard""]",4892.85,{},205535,1,Asia +2023-05-09,92825,7042,"[""Keyboard"", ""Tablet""]",4070.92,{},123072,0,Asia +2024-05-22,92826,205,"[""Tablet"", ""Headphones"", ""Laptop""]",3551.64,"{""seasonal"": ""6%""}",140948,0,Asia +2023-07-03,92827,4919,"[""Monitor"", ""Charger"", ""Laptop""]",2474.38,"{""promo"": ""14%""}",169140,1,Africa +2023-06-14,92828,1516,"[""Charger"", ""Phone""]",2049.19,"{""loyalty"": ""11%""}",202962,1,Asia +2024-10-29,92829,4296,"[""Wireless Mouse"", ""Tablet""]",343.83,{},213436,1,North America +2023-01-30,92830,8088,"[""Phone"", ""Keyboard""]",3952.97,{},115563,1,North America +2023-07-07,92831,5778,"[""Laptop"", ""Headphones""]",3133.53,"{""promo"": ""26%""}",191885,1,Europe +2024-09-25,92832,1162,"[""Monitor""]",3752.92,{},299185,0,South America +2024-03-22,92833,762,"[""Wireless Mouse""]",4211.22,{},240655,1,Europe +2023-02-11,92834,2551,"[""Headphones"", ""Tablet""]",3466.85,{},37725,1,Europe +2023-12-29,92835,9386,"[""Laptop"", ""Keyboard""]",4836.68,"{""seasonal"": ""18%""}",77315,0,Africa +2024-09-19,92836,662,"[""Laptop"", ""Tablet""]",4843.55,{},59151,1,Europe +2023-04-13,92837,8434,"[""Charger"", ""Tablet""]",2164.78,{},67153,0,South America +2023-08-08,92838,8512,"[""Wireless Mouse"", ""Headphones""]",1143.93,{},192485,0,Asia +2023-04-21,92839,9685,"[""Headphones"", ""Charger""]",2589.61,{},58117,1,Europe +2023-09-29,92840,6312,"[""Phone"", ""Keyboard""]",4465.8,{},7229,1,Europe +2024-05-21,92841,7436,"[""Laptop"", ""Headphones""]",2467.51,"{"""": ""8%""}",160533,0,Asia +2023-03-26,92842,1975,"[""Phone""]",1182.08,{},298533,0,North America +2024-05-18,92843,8470,"[""Tablet"", ""Charger""]",153.86,"{""seasonal"": ""7%""}",68874,0,Africa +2024-06-20,92844,5887,"[""Charger"", ""Laptop""]",193.88,"{""loyalty"": ""18%""}",2153,1,North America +2024-03-24,92845,1198,"[""Laptop"", ""Monitor""]",3399.94,{},75705,0,Europe +2024-10-04,92846,7319,"[""Charger"", ""Keyboard"", ""Phone""]",3886.54,"{""loyalty"": ""28%""}",148081,0,South America +2024-12-28,92847,6857,"[""Wireless Mouse"", ""Tablet""]",803.1,{},56310,0,Europe +2023-07-25,92848,614,"[""Charger"", ""Headphones"", ""Laptop""]",4972.79,{},285858,1,South America +2023-08-11,92849,6996,"[""Laptop"", ""Tablet"", ""Monitor""]",2175.15,"{""seasonal"": ""26%""}",294546,0,South America +2023-04-25,92850,2310,"[""Charger"", ""Laptop""]",4176.15,{},152054,1,North America +2024-09-24,92851,818,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4151.16,{},283066,1,Europe +2024-01-15,92852,3810,"[""Charger"", ""Laptop""]",2143.5,{},120755,1,Asia +2024-05-22,92853,1963,"[""Laptop"", ""Charger"", ""Keyboard""]",1564.08,{},87356,1,Europe +2024-04-07,92854,9787,"[""Keyboard"", ""Monitor"", ""Headphones""]",327.34,"{""promo"": ""8%""}",260331,0,South America +2023-01-11,92855,8668,"[""Charger""]",4773.68,"{""loyalty"": ""13%""}",103514,1,North America +2023-12-29,92856,817,"[""Laptop"", ""Monitor""]",2395.47,{},238699,0,South America +2023-05-07,92857,8821,"[""Phone"", ""Monitor"", ""Laptop""]",539.54,"{""promo"": ""26%""}",9191,0,Africa +2023-11-18,92858,63,"[""Tablet""]",94.29,"{"""": ""21%""}",169949,0,Asia +2023-01-09,92859,1664,"[""Phone""]",3112.1,{},91780,0,Asia +2024-04-24,92860,9505,"[""Laptop""]",4649.61,"{""promo"": ""20%""}",254219,1,South America +2023-05-09,92861,2923,"[""Charger""]",847.68,{},168455,0,Europe +2024-01-11,92862,638,"[""Headphones"", ""Laptop""]",2840.62,"{""promo"": ""11%""}",269733,1,Europe +2024-10-20,92863,64,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",2623.27,"{""loyalty"": ""22%""}",26566,0,South America +2023-02-08,92864,7997,"[""Keyboard""]",3152.68,{},248689,0,Africa +2023-04-20,92865,2555,"[""Phone""]",1032.88,"{"""": ""19%""}",252954,1,Europe +2024-04-26,92866,6110,"[""Monitor"", ""Laptop""]",523.38,"{"""": ""29%""}",126742,0,North America +2024-12-05,92867,4631,"[""Wireless Mouse""]",2648.36,{},261732,1,Africa +2023-08-10,92868,4925,"[""Charger"", ""Wireless Mouse""]",4293.35,"{"""": ""22%""}",221545,0,Asia +2024-04-30,92869,3136,"[""Charger""]",594.04,{},140706,1,North America +2024-07-20,92870,8045,"[""Headphones"", ""Keyboard""]",2509.79,"{""seasonal"": ""22%""}",46981,0,Europe +2024-08-04,92871,8947,"[""Laptop"", ""Tablet""]",3046.77,{},214738,0,Africa +2023-01-30,92872,829,"[""Keyboard"", ""Charger"", ""Tablet""]",4332.39,{},4174,0,Europe +2023-12-08,92873,3696,"[""Keyboard"", ""Monitor"", ""Charger""]",4971.57,"{"""": ""22%""}",97984,0,Africa +2024-08-29,92874,5086,"[""Laptop"", ""Charger"", ""Phone""]",4529.11,{},51796,0,North America +2024-06-06,92875,2046,"[""Charger"", ""Headphones"", ""Laptop""]",3954.81,{},242211,0,South America +2024-08-29,92876,8314,"[""Keyboard"", ""Tablet"", ""Monitor""]",3735.72,"{""promo"": ""20%""}",230732,1,Europe +2024-08-11,92877,7332,"[""Monitor"", ""Phone"", ""Headphones""]",4514.62,"{""loyalty"": ""30%""}",228485,1,North America +2024-06-17,92878,8277,"[""Headphones"", ""Tablet""]",4112.18,"{""loyalty"": ""26%""}",262897,1,Asia +2023-01-16,92879,3880,"[""Charger"", ""Wireless Mouse""]",1949.41,"{""promo"": ""10%""}",102324,0,Africa +2023-02-27,92880,7684,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1277.85,"{""seasonal"": ""30%""}",229605,1,Europe +2024-11-07,92881,2556,"[""Monitor""]",2861.65,"{""promo"": ""12%""}",145704,0,Europe +2024-05-09,92882,6559,"[""Monitor"", ""Headphones""]",2296.42,{},123064,1,Africa +2023-09-24,92883,3775,"[""Phone""]",1591.25,{},299989,1,North America +2024-04-23,92884,7203,"[""Charger"", ""Tablet"", ""Monitor""]",4288.44,{},82922,1,Europe +2023-08-15,92885,6658,"[""Phone"", ""Monitor""]",859.73,{},32924,1,North America +2024-11-28,92886,6805,"[""Wireless Mouse"", ""Laptop""]",2247.04,"{""promo"": ""19%""}",281996,1,Africa +2024-06-04,92887,5218,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",3350.54,"{""seasonal"": ""30%""}",212869,0,South America +2024-09-01,92888,9141,"[""Monitor"", ""Phone""]",3128.81,"{"""": ""24%""}",117125,0,Africa +2023-11-12,92889,9476,"[""Charger"", ""Headphones""]",3589.01,{},190628,0,South America +2024-03-29,92890,3090,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2305.13,"{"""": ""24%""}",112143,1,North America +2023-09-02,92891,7783,"[""Charger""]",3630.64,{},260509,0,Asia +2024-05-14,92892,9471,"[""Wireless Mouse"", ""Keyboard""]",1758.17,"{""promo"": ""22%""}",227472,0,North America +2023-05-14,92893,8334,"[""Monitor"", ""Keyboard""]",3763.11,"{""promo"": ""29%""}",262392,0,North America +2024-10-21,92894,2426,"[""Headphones""]",492.17,"{"""": ""6%""}",85057,0,Asia +2024-10-19,92895,8571,"[""Charger"", ""Monitor""]",2112.96,"{""seasonal"": ""27%""}",90020,0,Europe +2024-04-26,92896,2737,"[""Tablet""]",866.41,"{""seasonal"": ""12%""}",20521,1,North America +2023-09-18,92897,4393,"[""Tablet"", ""Charger""]",3704.04,"{""loyalty"": ""7%""}",185706,0,North America +2023-10-07,92898,74,"[""Wireless Mouse"", ""Headphones""]",205.95,{},97451,0,North America +2023-09-07,92899,1730,"[""Charger"", ""Phone""]",2068.26,"{""loyalty"": ""6%""}",138675,0,South America +2023-12-19,92900,7523,"[""Keyboard"", ""Monitor"", ""Headphones""]",1124.01,{},51317,0,Africa +2023-03-10,92901,570,"[""Charger"", ""Laptop""]",74.88,{},155794,0,Africa +2024-09-02,92902,4608,"[""Tablet"", ""Laptop""]",450.82,"{""loyalty"": ""19%""}",188209,1,Africa +2023-02-07,92903,5893,"[""Monitor"", ""Tablet""]",2182.41,{},70791,1,Asia +2024-10-31,92904,1603,"[""Tablet"", ""Wireless Mouse""]",1524.44,"{""loyalty"": ""9%""}",272331,0,Africa +2023-04-14,92905,522,"[""Charger""]",2180.89,"{"""": ""26%""}",167560,1,South America +2023-08-04,92906,875,"[""Laptop"", ""Keyboard""]",4922.01,{},246416,1,Europe +2024-01-20,92907,142,"[""Laptop"", ""Charger"", ""Keyboard""]",737.62,"{"""": ""12%""}",98190,0,North America +2023-08-30,92908,7464,"[""Tablet""]",2938.17,{},290726,1,Africa +2024-07-27,92909,1252,"[""Phone"", ""Charger"", ""Monitor""]",4747.83,{},152520,1,Africa +2023-01-08,92910,2223,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",1967.01,{},3731,0,Africa +2024-09-30,92911,1906,"[""Phone""]",3918.26,"{""seasonal"": ""6%""}",200689,0,Asia +2023-11-15,92912,792,"[""Monitor""]",2458.53,{},201658,0,Africa +2023-07-18,92913,254,"[""Laptop"", ""Tablet""]",4840.54,{},268392,1,Africa +2023-08-04,92914,9364,"[""Wireless Mouse""]",796.44,{},120877,1,North America +2024-06-20,92915,8052,"[""Monitor""]",585.14,"{""promo"": ""16%""}",138702,1,Asia +2023-06-04,92916,8097,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2715.06,{},252373,1,North America +2024-01-31,92917,5857,"[""Charger"", ""Wireless Mouse""]",3967.0,"{""seasonal"": ""26%""}",57821,0,South America +2023-04-26,92918,7290,"[""Tablet"", ""Charger"", ""Headphones""]",4979.76,{},119815,0,North America +2023-04-18,92919,8557,"[""Monitor"", ""Tablet"", ""Phone""]",2012.38,{},11566,1,Asia +2023-04-30,92920,617,"[""Keyboard"", ""Monitor""]",872.62,{},284469,0,North America +2024-04-13,92921,1998,"[""Wireless Mouse""]",1823.04,{},86354,1,Asia +2023-08-30,92922,8535,"[""Phone"", ""Charger""]",465.0,{},154495,1,Europe +2024-02-20,92923,2238,"[""Phone""]",3162.45,"{""promo"": ""18%""}",226297,0,South America +2023-06-22,92924,8991,"[""Keyboard"", ""Laptop""]",3497.63,{},179108,1,Asia +2023-12-01,92925,120,"[""Phone""]",3796.34,{},74947,1,Africa +2024-03-05,92926,5923,"[""Keyboard"", ""Tablet"", ""Phone""]",2555.66,{},10042,1,Europe +2023-04-09,92927,9061,"[""Laptop""]",421.64,{},142633,1,Europe +2023-01-16,92928,6619,"[""Keyboard""]",4970.64,{},265398,1,Africa +2024-02-12,92929,5808,"[""Headphones"", ""Monitor""]",4424.82,"{""promo"": ""27%""}",49623,1,Asia +2024-12-11,92930,1120,"[""Charger"", ""Phone"", ""Headphones""]",381.82,{},5748,0,Europe +2023-09-16,92931,4051,"[""Monitor"", ""Wireless Mouse""]",4031.71,"{""promo"": ""20%""}",299997,0,Europe +2023-12-18,92932,418,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3754.34,"{""loyalty"": ""20%""}",34573,0,Europe +2023-09-25,92933,3660,"[""Laptop""]",1250.86,{},48829,0,North America +2023-09-24,92934,3956,"[""Laptop"", ""Keyboard""]",3303.94,"{"""": ""6%""}",120814,0,North America +2023-04-09,92935,2217,"[""Tablet"", ""Phone""]",1082.67,"{"""": ""13%""}",117121,1,North America +2024-12-28,92936,7576,"[""Charger""]",3037.93,{},279980,1,Asia +2023-03-29,92937,6062,"[""Headphones""]",4781.44,"{""promo"": ""30%""}",105568,1,Europe +2024-01-26,92938,8750,"[""Charger""]",3303.07,{},136187,0,Europe +2023-09-14,92939,7637,"[""Phone"", ""Laptop"", ""Tablet""]",1780.62,{},12985,0,Asia +2023-11-15,92940,181,"[""Charger""]",2549.16,"{""loyalty"": ""14%""}",250355,0,Africa +2023-09-14,92941,3374,"[""Headphones"", ""Keyboard""]",3667.26,"{"""": ""21%""}",182077,1,Asia +2024-12-08,92942,4565,"[""Wireless Mouse"", ""Headphones""]",791.29,{},106313,1,South America +2023-08-13,92943,1338,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1964.58,"{""seasonal"": ""15%""}",87507,0,North America +2023-10-10,92944,6441,"[""Headphones"", ""Phone"", ""Keyboard""]",3378.41,"{""seasonal"": ""5%""}",284227,1,Africa +2023-03-14,92945,7692,"[""Tablet"", ""Charger"", ""Headphones""]",4807.77,{},242497,1,North America +2023-09-01,92946,3068,"[""Wireless Mouse"", ""Tablet""]",4857.19,{},87588,1,Africa +2023-08-31,92947,277,"[""Headphones"", ""Phone""]",3890.53,{},177335,0,Europe +2024-01-29,92948,9184,"[""Tablet"", ""Monitor"", ""Phone""]",3758.46,"{"""": ""9%""}",100007,1,North America +2023-12-22,92949,5829,"[""Monitor""]",2000.35,{},240353,1,Asia +2023-08-03,92950,7184,"[""Charger""]",716.62,"{""promo"": ""18%""}",299262,0,South America +2024-04-02,92951,6349,"[""Headphones""]",634.14,{},265032,1,Asia +2024-06-13,92952,5576,"[""Wireless Mouse"", ""Monitor""]",1325.05,{},59000,1,Asia +2023-10-21,92953,73,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",2809.2,{},288615,1,Africa +2023-12-24,92954,413,"[""Phone"", ""Headphones"", ""Monitor""]",2687.74,{},54052,1,Asia +2024-08-30,92955,520,"[""Headphones"", ""Laptop""]",3046.0,"{""promo"": ""10%""}",101500,0,Africa +2024-09-25,92956,3833,"[""Laptop"", ""Keyboard"", ""Tablet""]",3158.97,"{"""": ""5%""}",246127,0,North America +2024-06-26,92957,1818,"[""Monitor"", ""Charger"", ""Phone""]",569.77,{},132838,0,Asia +2024-12-30,92958,7021,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",307.56,"{""promo"": ""24%""}",261069,1,Europe +2023-06-03,92959,870,"[""Headphones"", ""Keyboard""]",1301.16,"{""seasonal"": ""27%""}",154174,0,South America +2024-05-14,92960,5804,"[""Phone""]",4960.96,"{""seasonal"": ""25%""}",234050,0,Africa +2024-04-14,92961,8481,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2650.06,{},119193,0,Asia +2024-05-24,92962,7652,"[""Tablet"", ""Monitor"", ""Charger""]",1719.58,"{"""": ""5%""}",105021,0,South America +2023-09-26,92963,8281,"[""Tablet""]",1716.48,{},70446,1,Africa +2024-07-10,92964,7471,"[""Headphones"", ""Tablet"", ""Monitor""]",3409.37,"{""seasonal"": ""7%""}",214640,0,Africa +2024-07-08,92965,9559,"[""Phone"", ""Charger""]",2285.43,"{""seasonal"": ""14%""}",95615,1,Africa +2023-11-06,92966,1435,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",76.84,"{""loyalty"": ""21%""}",195089,0,Africa +2023-07-01,92967,363,"[""Keyboard""]",4532.85,"{""promo"": ""12%""}",161119,1,Africa +2023-11-15,92968,6992,"[""Headphones"", ""Charger""]",4326.67,{},169041,0,Asia +2023-07-13,92969,5976,"[""Phone"", ""Charger"", ""Tablet""]",3056.71,"{""seasonal"": ""19%""}",276483,1,Europe +2024-01-14,92970,9559,"[""Phone"", ""Tablet""]",1363.59,{},72903,0,Africa +2023-03-04,92971,2445,"[""Monitor"", ""Headphones"", ""Laptop""]",4094.59,"{"""": ""13%""}",24002,1,North America +2024-07-03,92972,2638,"[""Charger"", ""Tablet"", ""Phone""]",4868.19,{},20244,0,South America +2023-01-18,92973,6861,"[""Monitor"", ""Keyboard"", ""Tablet""]",3217.99,{},74905,0,Africa +2024-06-19,92974,9097,"[""Tablet""]",4703.55,{},140775,1,Asia +2024-04-23,92975,8860,"[""Keyboard"", ""Charger""]",1652.31,{},46246,0,Europe +2023-09-12,92976,5040,"[""Headphones""]",3890.21,{},37245,0,North America +2023-10-08,92977,4419,"[""Charger"", ""Keyboard""]",1306.02,"{""loyalty"": ""15%""}",201914,0,South America +2024-12-26,92978,8597,"[""Headphones"", ""Keyboard"", ""Phone""]",1514.39,"{""promo"": ""27%""}",126123,1,Asia +2023-03-23,92979,4241,"[""Monitor""]",2855.58,"{""seasonal"": ""23%""}",147881,0,South America +2023-06-18,92980,104,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2367.6,{},87568,1,North America +2024-03-12,92981,1109,"[""Phone""]",2324.96,"{""loyalty"": ""24%""}",218700,0,Europe +2023-01-02,92982,3784,"[""Keyboard"", ""Charger"", ""Laptop""]",1135.34,"{""seasonal"": ""25%""}",197578,0,Africa +2024-04-30,92983,4244,"[""Tablet""]",4728.18,{},196995,0,Asia +2024-11-05,92984,9393,"[""Tablet""]",448.81,"{""promo"": ""17%""}",284801,1,North America +2023-05-14,92985,6935,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",1222.52,"{""loyalty"": ""9%""}",112653,0,Asia +2023-08-24,92986,5200,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3165.32,"{""loyalty"": ""21%""}",165841,1,Asia +2023-08-31,92987,8012,"[""Phone"", ""Monitor""]",1476.75,{},85641,1,Europe +2023-04-26,92988,9726,"[""Wireless Mouse""]",3383.77,{},133698,0,North America +2024-11-15,92989,6984,"[""Monitor"", ""Charger""]",2441.62,"{""loyalty"": ""28%""}",124859,1,North America +2023-02-20,92990,7175,"[""Tablet""]",2178.12,"{"""": ""7%""}",169120,0,South America +2024-12-22,92991,761,"[""Charger"", ""Monitor""]",4927.94,"{""promo"": ""23%""}",28214,1,Asia +2024-05-31,92992,3571,"[""Monitor"", ""Laptop""]",3093.47,"{""loyalty"": ""18%""}",4167,0,South America +2024-04-28,92993,9395,"[""Keyboard"", ""Tablet""]",3599.37,"{""promo"": ""25%""}",26827,1,South America +2024-09-14,92994,4200,"[""Headphones"", ""Charger"", ""Monitor""]",2686.93,{},194333,0,Africa +2024-02-27,92995,4659,"[""Keyboard""]",953.02,{},68329,1,Asia +2023-11-08,92996,9745,"[""Phone"", ""Headphones""]",706.18,"{"""": ""18%""}",289363,0,Europe +2024-03-10,92997,4341,"[""Tablet""]",799.36,{},83593,0,Africa +2023-02-21,92998,2402,"[""Monitor""]",2176.14,"{"""": ""14%""}",67349,0,Europe +2024-04-13,92999,717,"[""Wireless Mouse""]",3540.49,{},136884,0,South America +2024-06-10,93000,6161,"[""Tablet"", ""Monitor""]",1989.88,{},102324,1,Europe +2024-08-17,93001,2932,"[""Keyboard"", ""Monitor""]",2653.69,"{"""": ""18%""}",219223,1,Asia +2024-03-04,93002,5644,"[""Laptop""]",1207.19,"{"""": ""13%""}",116724,0,Europe +2024-03-22,93003,9328,"[""Charger""]",4359.01,{},127176,1,Africa +2023-04-24,93004,6316,"[""Laptop"", ""Charger"", ""Phone""]",1816.4,"{""seasonal"": ""29%""}",35797,1,Asia +2024-04-19,93005,8740,"[""Phone"", ""Laptop"", ""Headphones""]",4249.22,"{""seasonal"": ""14%""}",298500,0,Africa +2024-07-16,93006,1082,"[""Laptop""]",495.34,"{""seasonal"": ""25%""}",56508,0,Asia +2023-03-26,93007,8308,"[""Charger""]",1659.65,{},115681,0,South America +2024-06-22,93008,2556,"[""Headphones"", ""Tablet""]",1958.55,"{""promo"": ""17%""}",121820,0,Africa +2023-02-09,93009,7943,"[""Headphones"", ""Wireless Mouse""]",515.73,{},47091,0,Asia +2024-12-13,93010,6534,"[""Laptop"", ""Wireless Mouse""]",3926.2,"{""seasonal"": ""23%""}",251346,1,Asia +2024-10-11,93011,5167,"[""Wireless Mouse"", ""Tablet""]",3054.02,{},29719,0,Asia +2023-06-21,93012,37,"[""Laptop"", ""Monitor"", ""Phone""]",2304.02,"{""promo"": ""20%""}",22336,1,Africa +2023-09-23,93013,3614,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3679.7,{},174574,1,North America +2023-01-13,93014,856,"[""Headphones""]",3865.77,{},209345,0,Africa +2024-03-22,93015,4910,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3248.48,"{""loyalty"": ""27%""}",123116,0,Africa +2023-11-29,93016,2586,"[""Charger"", ""Laptop"", ""Tablet""]",3931.01,"{""seasonal"": ""13%""}",143559,0,South America +2024-09-10,93017,4759,"[""Keyboard"", ""Headphones""]",4302.72,"{""promo"": ""21%""}",193672,1,Africa +2024-03-31,93018,9836,"[""Laptop"", ""Wireless Mouse""]",928.03,"{""promo"": ""29%""}",232802,0,Europe +2024-08-29,93019,1824,"[""Phone"", ""Headphones"", ""Tablet""]",3970.91,{},43416,0,Europe +2023-08-28,93020,8147,"[""Keyboard"", ""Tablet""]",4605.78,"{""seasonal"": ""28%""}",65482,0,South America +2024-02-09,93021,2776,"[""Phone"", ""Tablet"", ""Headphones""]",1280.32,{},287288,0,Asia +2023-11-28,93022,9026,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1669.39,{},222674,0,Asia +2023-07-24,93023,3742,"[""Monitor""]",291.21,"{""loyalty"": ""17%""}",90618,0,North America +2024-06-06,93024,4476,"[""Wireless Mouse""]",868.4,"{""loyalty"": ""6%""}",150648,0,South America +2023-09-15,93025,7660,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3407.52,"{""seasonal"": ""19%""}",144034,0,North America +2024-01-04,93026,7699,"[""Tablet"", ""Monitor"", ""Keyboard""]",3428.72,{},124622,0,Africa +2024-09-14,93027,8465,"[""Charger"", ""Keyboard""]",4894.97,{},249647,0,Europe +2024-03-09,93028,8634,"[""Headphones"", ""Laptop""]",1418.02,"{"""": ""12%""}",233870,1,Africa +2023-12-06,93029,5665,"[""Wireless Mouse"", ""Headphones""]",2481.51,"{""seasonal"": ""19%""}",86670,1,South America +2023-01-13,93030,2507,"[""Charger""]",2816.11,{},154885,1,Europe +2023-06-03,93031,1925,"[""Headphones"", ""Charger"", ""Laptop""]",4215.16,{},155145,0,Asia +2023-07-22,93032,8340,"[""Headphones"", ""Charger"", ""Phone""]",3075.87,{},88253,0,South America +2023-12-26,93033,1746,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",2242.9,"{""promo"": ""17%""}",65415,0,South America +2023-12-06,93034,3993,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",831.56,"{""seasonal"": ""15%""}",206954,0,South America +2023-04-03,93035,6090,"[""Laptop"", ""Charger"", ""Headphones""]",190.74,{},268689,1,Asia +2024-03-21,93036,1175,"[""Monitor"", ""Charger"", ""Tablet""]",1133.62,{},299898,0,South America +2024-07-26,93037,6875,"[""Keyboard"", ""Tablet"", ""Laptop""]",2310.01,{},134714,0,North America +2024-12-11,93038,7697,"[""Wireless Mouse""]",3090.48,{},94670,0,North America +2024-06-11,93039,1092,"[""Monitor"", ""Phone"", ""Headphones""]",4865.26,"{""seasonal"": ""13%""}",120892,0,South America +2023-06-14,93040,6563,"[""Monitor"", ""Wireless Mouse""]",4974.27,{},233663,1,Africa +2023-01-09,93041,8796,"[""Phone"", ""Keyboard"", ""Charger""]",4756.94,{},197300,0,Africa +2023-01-03,93042,9359,"[""Monitor"", ""Keyboard""]",2995.22,{},150368,1,Asia +2023-05-26,93043,5776,"[""Headphones"", ""Charger""]",3455.79,"{""seasonal"": ""7%""}",147618,1,South America +2024-12-10,93044,7009,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",650.51,"{"""": ""30%""}",238207,1,Europe +2023-05-20,93045,5178,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",3935.24,{},9216,1,Asia +2023-10-23,93046,5010,"[""Headphones"", ""Charger"", ""Phone""]",2933.24,"{""promo"": ""15%""}",78587,0,North America +2023-02-15,93047,856,"[""Phone"", ""Tablet""]",3922.32,{},134121,1,Africa +2023-11-20,93048,3378,"[""Laptop""]",1552.38,{},10721,0,Europe +2023-10-20,93049,7790,"[""Headphones"", ""Keyboard"", ""Phone""]",4476.03,{},295566,1,Europe +2023-09-29,93050,4884,"[""Laptop"", ""Wireless Mouse""]",4760.07,{},58451,1,Europe +2023-03-04,93051,9990,"[""Headphones"", ""Tablet"", ""Phone""]",4498.93,"{""loyalty"": ""17%""}",153662,1,Africa +2024-11-05,93052,7949,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",237.52,"{""seasonal"": ""29%""}",250403,0,Europe +2024-09-22,93053,873,"[""Keyboard"", ""Tablet"", ""Headphones""]",4601.48,{},282610,1,Asia +2024-07-17,93054,2295,"[""Keyboard"", ""Tablet""]",1538.06,"{""promo"": ""14%""}",189842,1,Europe +2023-07-14,93055,5351,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",71.62,{},178906,1,Asia +2024-10-04,93056,3926,"[""Laptop""]",347.57,{},186596,0,North America +2024-01-13,93057,3567,"[""Charger""]",2077.56,"{""loyalty"": ""23%""}",262008,0,Africa +2023-02-23,93058,3683,"[""Monitor"", ""Laptop""]",458.84,{},40270,0,Europe +2023-05-15,93059,391,"[""Monitor"", ""Tablet""]",157.73,{},271736,0,South America +2023-04-27,93060,7391,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3789.49,{},299122,0,Europe +2023-06-17,93061,2300,"[""Tablet"", ""Laptop"", ""Charger""]",798.41,{},170627,0,Europe +2023-12-28,93062,9883,"[""Phone""]",1860.07,"{""seasonal"": ""12%""}",278290,1,North America +2024-12-16,93063,7320,"[""Tablet"", ""Monitor""]",3746.53,"{"""": ""9%""}",298464,0,North America +2023-06-08,93064,7603,"[""Headphones"", ""Monitor"", ""Tablet""]",1416.59,{},54564,0,North America +2023-01-10,93065,423,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",2046.72,{},289780,1,Asia +2023-07-26,93066,8066,"[""Laptop""]",3623.51,"{""promo"": ""18%""}",271679,1,Africa +2023-03-24,93067,2037,"[""Wireless Mouse""]",4641.09,"{"""": ""23%""}",180291,1,Africa +2023-10-01,93068,1600,"[""Monitor"", ""Headphones"", ""Tablet""]",4207.58,{},173934,0,Asia +2023-12-13,93069,6009,"[""Monitor"", ""Phone""]",371.1,"{""loyalty"": ""5%""}",290943,1,South America +2024-03-21,93070,7854,"[""Headphones""]",4646.87,"{""promo"": ""19%""}",279440,0,Africa +2023-10-16,93071,6246,"[""Charger"", ""Monitor""]",2265.98,"{"""": ""29%""}",123422,1,Africa +2023-12-28,93072,2812,"[""Headphones"", ""Laptop"", ""Keyboard""]",2882.25,"{""loyalty"": ""24%""}",80919,0,Asia +2024-10-24,93073,3406,"[""Headphones""]",4878.07,"{""promo"": ""14%""}",108387,1,Africa +2023-12-28,93074,3790,"[""Phone"", ""Keyboard""]",4962.94,"{""seasonal"": ""29%""}",242510,1,Africa +2023-11-11,93075,3111,"[""Charger"", ""Wireless Mouse""]",1679.66,"{"""": ""9%""}",142865,0,Asia +2023-06-25,93076,7362,"[""Monitor""]",2739.12,{},126571,1,Asia +2024-02-06,93077,5998,"[""Monitor"", ""Charger""]",1401.1,"{""loyalty"": ""9%""}",204941,1,Asia +2023-08-27,93078,4240,"[""Headphones"", ""Keyboard"", ""Tablet""]",1075.58,"{""seasonal"": ""27%""}",173859,0,Asia +2023-05-19,93079,3770,"[""Keyboard""]",3331.61,{},101071,0,Asia +2024-10-12,93080,8277,"[""Phone""]",2403.31,{},195381,0,Africa +2024-09-25,93081,7341,"[""Headphones"", ""Charger"", ""Monitor""]",1268.77,{},234443,1,North America +2023-01-12,93082,6521,"[""Tablet"", ""Monitor""]",3127.34,"{""seasonal"": ""25%""}",81635,1,Asia +2023-07-12,93083,5118,"[""Tablet""]",1005.71,"{""loyalty"": ""30%""}",209733,0,Africa +2024-04-14,93084,5258,"[""Keyboard"", ""Laptop"", ""Phone""]",364.61,{},81932,0,South America +2024-02-07,93085,2281,"[""Tablet"", ""Monitor""]",2570.56,"{""promo"": ""9%""}",277523,1,Europe +2024-05-18,93086,504,"[""Headphones""]",3306.66,"{""seasonal"": ""12%""}",16494,0,South America +2024-05-07,93087,7975,"[""Wireless Mouse"", ""Keyboard""]",2037.11,"{""seasonal"": ""30%""}",53129,0,Asia +2023-06-04,93088,5160,"[""Monitor"", ""Phone"", ""Charger""]",4764.78,{},192685,1,North America +2024-04-17,93089,673,"[""Monitor"", ""Charger""]",4924.88,{},57049,0,North America +2024-01-11,93090,1927,"[""Phone"", ""Headphones"", ""Keyboard""]",358.92,"{""loyalty"": ""16%""}",235159,0,Asia +2024-06-16,93091,1155,"[""Tablet"", ""Phone"", ""Charger""]",4468.66,{},179584,0,North America +2024-10-07,93092,8241,"[""Phone""]",276.9,{},277973,1,Europe +2024-09-27,93093,7028,"[""Keyboard"", ""Charger""]",2091.59,{},21697,0,Africa +2023-03-14,93094,5511,"[""Charger"", ""Laptop"", ""Keyboard""]",1324.94,{},146030,0,Africa +2023-03-28,93095,6186,"[""Monitor"", ""Tablet"", ""Laptop""]",3701.88,"{""promo"": ""13%""}",197654,1,Asia +2024-01-24,93096,679,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2154.56,{},102249,1,South America +2023-06-26,93097,8926,"[""Monitor"", ""Phone""]",2111.09,"{"""": ""6%""}",1116,0,South America +2024-01-19,93098,9452,"[""Keyboard""]",2558.73,{},34676,0,Africa +2024-05-26,93099,8147,"[""Wireless Mouse""]",1702.97,{},53951,1,Asia +2024-04-25,93100,5528,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",858.69,{},143049,0,South America +2024-05-27,93101,2723,"[""Tablet""]",2868.34,"{""loyalty"": ""25%""}",229743,1,Asia +2023-05-17,93102,3718,"[""Phone"", ""Tablet""]",3464.1,"{""loyalty"": ""18%""}",56762,1,South America +2024-10-29,93103,7668,"[""Charger"", ""Laptop""]",4705.46,{},39551,1,Asia +2023-12-15,93104,5803,"[""Charger"", ""Keyboard""]",2343.77,"{""seasonal"": ""24%""}",133711,1,Europe +2023-05-30,93105,1220,"[""Tablet"", ""Laptop"", ""Charger""]",1174.42,{},9875,0,Europe +2024-04-05,93106,4465,"[""Headphones"", ""Monitor""]",3813.02,"{"""": ""7%""}",287609,1,Asia +2024-07-25,93107,4874,"[""Keyboard"", ""Wireless Mouse""]",212.84,"{""loyalty"": ""11%""}",169146,1,Europe +2024-10-09,93108,8285,"[""Headphones"", ""Laptop""]",1642.74,{},208389,0,Africa +2023-04-06,93109,3797,"[""Keyboard""]",2755.39,"{""promo"": ""28%""}",256194,1,North America +2023-07-27,93110,7785,"[""Laptop""]",3158.78,{},276132,0,Europe +2023-11-16,93111,8739,"[""Keyboard"", ""Monitor"", ""Charger""]",3626.26,{},228327,1,Europe +2023-07-30,93112,5154,"[""Keyboard"", ""Wireless Mouse""]",3421.88,"{""loyalty"": ""6%""}",153703,1,North America +2024-02-29,93113,2529,"[""Headphones""]",2374.09,{},111856,0,North America +2024-07-06,93114,5980,"[""Keyboard"", ""Laptop"", ""Charger""]",4952.27,"{""promo"": ""9%""}",155932,0,Asia +2024-06-27,93115,5375,"[""Phone""]",4984.59,"{""seasonal"": ""29%""}",22380,1,Africa +2023-06-08,93116,5113,"[""Monitor"", ""Headphones"", ""Keyboard""]",3980.75,{},40156,0,South America +2023-09-02,93117,9777,"[""Monitor"", ""Tablet"", ""Keyboard""]",4795.4,{},248383,0,South America +2023-05-05,93118,8898,"[""Keyboard"", ""Charger""]",4530.96,{},6735,0,Africa +2024-02-17,93119,9340,"[""Laptop"", ""Charger""]",1668.51,"{""seasonal"": ""30%""}",14175,0,Africa +2023-08-19,93120,6,"[""Monitor""]",1068.34,{},257141,0,North America +2024-02-19,93121,1272,"[""Headphones"", ""Keyboard""]",2380.13,{},102369,1,Africa +2023-01-17,93122,1695,"[""Monitor"", ""Headphones"", ""Keyboard""]",3150.77,"{""seasonal"": ""23%""}",256174,0,North America +2024-11-09,93123,2562,"[""Headphones""]",3543.7,{},293048,0,Asia +2023-05-14,93124,1302,"[""Keyboard"", ""Tablet""]",1313.72,"{""promo"": ""23%""}",179071,1,Africa +2024-08-10,93125,1178,"[""Tablet"", ""Wireless Mouse""]",3992.89,{},15838,1,Asia +2023-07-21,93126,8075,"[""Keyboard""]",1083.18,"{""promo"": ""24%""}",98502,0,North America +2023-10-10,93127,2820,"[""Charger""]",722.41,"{""promo"": ""21%""}",106405,0,North America +2024-08-29,93128,4996,"[""Charger"", ""Laptop"", ""Keyboard""]",2973.27,"{""loyalty"": ""16%""}",56737,1,South America +2024-03-27,93129,4174,"[""Tablet""]",3058.64,{},237332,1,Europe +2023-04-22,93130,1993,"[""Keyboard"", ""Headphones""]",1502.27,{},136841,1,Europe +2024-09-17,93131,7130,"[""Keyboard"", ""Phone""]",1029.67,{},39590,1,Asia +2023-09-20,93132,3879,"[""Tablet"", ""Keyboard""]",4012.55,{},210037,0,North America +2024-07-20,93133,8233,"[""Laptop"", ""Keyboard"", ""Phone""]",1204.07,{},170319,0,Europe +2023-04-27,93134,2642,"[""Phone"", ""Tablet""]",2293.66,"{"""": ""16%""}",219824,1,Asia +2023-02-19,93135,2510,"[""Laptop"", ""Keyboard""]",3832.45,{},245803,0,Asia +2023-09-17,93136,5179,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1916.06,"{""promo"": ""8%""}",278535,1,Africa +2023-03-18,93137,2358,"[""Charger"", ""Monitor"", ""Headphones""]",1898.35,{},196296,1,Africa +2024-06-30,93138,4376,"[""Phone"", ""Laptop""]",2894.92,"{""promo"": ""9%""}",143464,1,North America +2024-11-18,93139,3213,"[""Wireless Mouse"", ""Keyboard""]",1728.25,"{""promo"": ""10%""}",261303,1,Africa +2024-07-21,93140,9767,"[""Headphones"", ""Keyboard""]",4198.75,"{""seasonal"": ""28%""}",10420,0,Africa +2024-08-09,93141,3248,"[""Wireless Mouse"", ""Keyboard""]",1691.94,{},264298,1,Africa +2023-01-09,93142,605,"[""Headphones"", ""Keyboard""]",3742.34,"{""seasonal"": ""18%""}",114363,0,North America +2024-04-27,93143,6308,"[""Charger"", ""Tablet"", ""Keyboard""]",2082.66,"{""seasonal"": ""20%""}",1533,0,Europe +2024-03-27,93144,492,"[""Charger"", ""Keyboard"", ""Headphones""]",3149.39,"{"""": ""5%""}",246481,0,South America +2023-03-08,93145,2135,"[""Keyboard"", ""Wireless Mouse""]",1688.39,{},24795,0,Africa +2023-07-13,93146,8096,"[""Keyboard"", ""Monitor""]",4486.27,"{""promo"": ""5%""}",254106,1,Europe +2023-08-18,93147,1954,"[""Keyboard"", ""Phone""]",4338.99,{},56659,1,Europe +2024-03-28,93148,5418,"[""Phone"", ""Charger"", ""Keyboard""]",3900.93,{},294955,1,South America +2023-07-19,93149,6731,"[""Phone"", ""Monitor"", ""Charger""]",1861.14,"{""promo"": ""25%""}",151872,1,Asia +2023-11-13,93150,721,"[""Headphones"", ""Keyboard"", ""Laptop""]",2120.76,{},235256,1,North America +2023-01-28,93151,7493,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1019.87,"{""loyalty"": ""23%""}",211093,0,Europe +2023-12-14,93152,2963,"[""Wireless Mouse""]",4651.29,{},75453,1,Africa +2023-03-26,93153,3443,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1235.8,{},6010,0,Europe +2024-07-05,93154,1909,"[""Charger"", ""Wireless Mouse""]",2528.12,"{""seasonal"": ""30%""}",67327,1,South America +2024-09-16,93155,3209,"[""Wireless Mouse""]",1909.28,{},119091,0,North America +2023-04-19,93156,8188,"[""Tablet"", ""Headphones""]",651.22,{},6105,1,South America +2023-09-10,93157,1709,"[""Laptop"", ""Monitor""]",2194.98,"{"""": ""25%""}",63632,1,Europe +2023-04-02,93158,4456,"[""Keyboard"", ""Tablet""]",1240.84,"{"""": ""17%""}",24384,1,Asia +2024-09-29,93159,2977,"[""Laptop"", ""Keyboard""]",3474.08,{},252575,0,South America +2023-05-17,93160,6657,"[""Monitor""]",1592.4,"{"""": ""20%""}",97137,1,Asia +2024-01-20,93161,2104,"[""Wireless Mouse""]",1439.62,{},44537,1,Europe +2024-08-26,93162,302,"[""Tablet""]",2954.23,"{"""": ""26%""}",178498,1,South America +2024-09-24,93163,7319,"[""Keyboard"", ""Laptop"", ""Charger""]",4045.57,{},100482,1,Europe +2023-01-18,93164,8687,"[""Charger""]",2984.21,{},16847,1,Europe +2023-12-27,93165,2762,"[""Phone"", ""Charger""]",4159.75,"{"""": ""30%""}",251456,1,South America +2024-02-13,93166,3463,"[""Laptop""]",4423.7,"{"""": ""12%""}",135450,1,Europe +2023-11-15,93167,7876,"[""Wireless Mouse"", ""Headphones""]",3810.27,"{"""": ""9%""}",244774,1,Asia +2023-05-24,93168,2748,"[""Tablet"", ""Laptop"", ""Monitor""]",1201.49,"{""loyalty"": ""30%""}",207973,1,North America +2024-06-09,93169,731,"[""Wireless Mouse""]",1510.03,{},270453,1,Asia +2024-05-23,93170,7663,"[""Tablet"", ""Phone"", ""Monitor""]",2462.98,{},100279,0,Europe +2024-12-15,93171,8881,"[""Keyboard"", ""Phone""]",2696.34,"{""seasonal"": ""19%""}",225659,0,North America +2023-01-15,93172,858,"[""Charger""]",4329.99,{},32581,1,Europe +2024-03-08,93173,7535,"[""Phone"", ""Tablet""]",1416.41,"{"""": ""9%""}",281941,1,Asia +2024-03-29,93174,3384,"[""Headphones"", ""Phone"", ""Monitor""]",1348.29,"{"""": ""14%""}",220031,1,Asia +2024-11-23,93175,2240,"[""Tablet"", ""Charger"", ""Phone""]",2718.07,"{"""": ""13%""}",67379,0,Asia +2023-05-03,93176,7812,"[""Tablet"", ""Charger"", ""Headphones""]",2118.3,"{"""": ""21%""}",39860,0,Europe +2024-03-24,93177,1774,"[""Tablet""]",4742.16,"{""loyalty"": ""22%""}",211466,0,North America +2024-09-19,93178,8573,"[""Phone"", ""Keyboard""]",1670.07,{},160082,0,Africa +2024-04-02,93179,7187,"[""Laptop""]",1362.62,"{"""": ""22%""}",67322,1,Africa +2024-09-21,93180,5947,"[""Tablet""]",1630.98,"{""seasonal"": ""11%""}",263781,1,Europe +2024-02-20,93181,1359,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3700.19,{},292166,1,South America +2023-06-10,93182,2867,"[""Keyboard""]",439.71,{},245504,1,Europe +2023-03-04,93183,5623,"[""Monitor"", ""Charger""]",3843.59,"{""promo"": ""11%""}",194758,0,Africa +2024-04-23,93184,2601,"[""Keyboard""]",4355.1,"{""seasonal"": ""25%""}",134425,1,Asia +2023-07-09,93185,4891,"[""Phone"", ""Laptop"", ""Charger""]",4145.48,{},250463,0,North America +2024-01-18,93186,2957,"[""Headphones""]",2360.07,{},243664,1,North America +2024-09-06,93187,8449,"[""Charger"", ""Keyboard"", ""Monitor""]",4428.4,{},190654,1,Africa +2023-04-19,93188,3105,"[""Headphones""]",1924.81,"{""promo"": ""10%""}",76170,0,Europe +2024-04-07,93189,845,"[""Tablet"", ""Monitor""]",3947.61,"{"""": ""9%""}",278463,1,Europe +2023-03-24,93190,9301,"[""Monitor""]",3378.86,{},162159,1,Africa +2023-01-19,93191,7448,"[""Monitor""]",2319.82,"{""loyalty"": ""9%""}",46446,1,Africa +2023-06-09,93192,171,"[""Phone""]",835.91,"{""promo"": ""15%""}",264481,0,Asia +2024-05-30,93193,9402,"[""Monitor"", ""Keyboard""]",3239.25,{},105853,1,South America +2023-11-20,93194,6721,"[""Laptop"", ""Wireless Mouse""]",3893.73,"{""loyalty"": ""16%""}",258075,1,Africa +2023-06-27,93195,6053,"[""Phone"", ""Tablet""]",1614.29,{},176838,0,Asia +2024-09-11,93196,6004,"[""Laptop"", ""Monitor""]",2725.56,"{""promo"": ""23%""}",81761,1,Europe +2023-12-12,93197,6892,"[""Tablet""]",765.96,"{""promo"": ""5%""}",151818,1,Europe +2023-03-09,93198,3688,"[""Keyboard""]",2059.23,"{""promo"": ""29%""}",289032,0,North America +2024-06-04,93199,6267,"[""Keyboard""]",81.08,{},237092,0,Europe +2023-03-09,93200,7570,"[""Monitor""]",312.98,"{""promo"": ""14%""}",247470,1,South America +2024-05-07,93201,3903,"[""Headphones"", ""Phone""]",2993.26,{},127314,0,North America +2023-05-31,93202,2181,"[""Charger"", ""Phone""]",561.17,{},130945,0,Europe +2023-08-16,93203,4409,"[""Headphones"", ""Charger"", ""Keyboard""]",3051.31,{},176961,1,Africa +2023-09-16,93204,6078,"[""Charger""]",1174.45,"{""promo"": ""20%""}",241508,0,Africa +2023-05-15,93205,2843,"[""Tablet""]",1453.55,{},153542,0,South America +2023-06-20,93206,7454,"[""Laptop"", ""Phone""]",1258.82,"{""seasonal"": ""15%""}",122373,1,Asia +2023-02-10,93207,3434,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3673.81,{},86207,1,Asia +2023-08-12,93208,4314,"[""Headphones"", ""Charger"", ""Tablet""]",1604.48,{},208745,1,North America +2023-03-12,93209,9067,"[""Charger"", ""Monitor"", ""Tablet""]",4926.43,{},194591,1,South America +2023-12-25,93210,7011,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4437.21,{},276372,1,Asia +2024-07-08,93211,4455,"[""Tablet""]",3623.99,{},282553,0,Africa +2023-04-30,93212,5242,"[""Keyboard""]",2446.96,{},172528,1,South America +2024-11-08,93213,2590,"[""Keyboard"", ""Wireless Mouse""]",4815.88,{},228313,0,North America +2023-02-27,93214,4183,"[""Laptop"", ""Phone"", ""Keyboard""]",2854.31,"{""seasonal"": ""16%""}",12895,0,South America +2024-03-14,93215,5344,"[""Monitor"", ""Wireless Mouse""]",4606.54,"{""loyalty"": ""7%""}",186905,0,South America +2023-10-02,93216,2789,"[""Monitor""]",3453.61,"{""seasonal"": ""21%""}",276563,0,Asia +2023-08-12,93217,1343,"[""Monitor"", ""Charger"", ""Tablet""]",659.31,{},11864,1,South America +2024-09-19,93218,2473,"[""Monitor""]",1977.17,{},125275,1,South America +2024-03-27,93219,8976,"[""Headphones"", ""Phone"", ""Tablet""]",1127.52,"{""seasonal"": ""7%""}",150991,0,North America +2023-05-19,93220,6775,"[""Tablet""]",2017.07,{},286605,0,North America +2024-11-13,93221,2809,"[""Wireless Mouse""]",2810.6,{},15695,1,South America +2024-01-12,93222,8428,"[""Wireless Mouse"", ""Keyboard""]",3659.21,{},218145,0,Asia +2024-01-01,93223,2993,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",801.63,"{""loyalty"": ""20%""}",83274,1,Asia +2024-12-10,93224,2631,"[""Headphones""]",4521.33,"{""promo"": ""18%""}",22068,0,South America +2023-10-05,93225,1453,"[""Charger"", ""Laptop""]",3714.29,{},171985,0,North America +2023-11-24,93226,5104,"[""Monitor"", ""Laptop"", ""Keyboard""]",3250.37,{},189508,1,South America +2023-11-26,93227,9309,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",1940.34,{},90346,0,South America +2023-02-21,93228,3492,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1650.21,"{"""": ""26%""}",181123,0,Africa +2024-01-17,93229,2357,"[""Charger"", ""Wireless Mouse""]",1306.63,"{"""": ""19%""}",172949,0,North America +2024-10-15,93230,6164,"[""Laptop"", ""Wireless Mouse""]",4656.35,{},197742,1,South America +2024-06-16,93231,470,"[""Charger"", ""Phone""]",756.4,{},133933,0,Europe +2023-04-04,93232,3808,"[""Tablet"", ""Charger""]",379.18,"{""promo"": ""8%""}",111821,0,North America +2023-10-28,93233,4811,"[""Phone"", ""Keyboard""]",1567.75,{},1133,0,Asia +2023-08-11,93234,9800,"[""Monitor"", ""Laptop""]",645.74,"{"""": ""13%""}",247380,0,Asia +2023-01-07,93235,9496,"[""Wireless Mouse"", ""Keyboard""]",900.34,{},33318,1,Europe +2024-07-26,93236,6362,"[""Headphones"", ""Charger"", ""Phone""]",3954.73,"{"""": ""29%""}",17206,1,South America +2024-08-26,93237,3329,"[""Laptop"", ""Charger"", ""Keyboard""]",1730.44,{},68335,1,North America +2023-06-19,93238,151,"[""Keyboard"", ""Wireless Mouse""]",4103.53,"{"""": ""11%""}",23870,0,South America +2023-04-21,93239,5850,"[""Monitor"", ""Phone""]",2749.17,"{""loyalty"": ""9%""}",23379,0,Africa +2023-08-16,93240,2706,"[""Wireless Mouse"", ""Keyboard""]",245.18,"{"""": ""11%""}",189844,1,Africa +2023-02-21,93241,4057,"[""Charger""]",4961.53,"{""promo"": ""7%""}",60337,1,North America +2024-12-05,93242,810,"[""Phone"", ""Keyboard""]",146.39,"{""loyalty"": ""25%""}",241849,0,Europe +2023-10-19,93243,8900,"[""Tablet"", ""Phone"", ""Monitor""]",223.12,"{""seasonal"": ""19%""}",231836,0,Asia +2023-12-11,93244,2353,"[""Monitor"", ""Laptop""]",1406.96,{},247726,1,South America +2024-06-14,93245,7587,"[""Laptop"", ""Headphones"", ""Charger""]",3518.77,{},218234,1,Africa +2023-07-16,93246,7811,"[""Phone"", ""Keyboard""]",3979.62,{},169087,0,South America +2024-11-17,93247,7110,"[""Monitor"", ""Headphones""]",1784.58,"{""loyalty"": ""16%""}",203346,0,Asia +2024-05-28,93248,6520,"[""Wireless Mouse""]",2606.5,{},171160,1,Africa +2024-05-24,93249,4444,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",3945.49,"{""promo"": ""5%""}",227613,0,North America +2024-07-18,93250,597,"[""Laptop"", ""Headphones""]",1073.01,{},204035,0,North America +2023-09-24,93251,9911,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4877.99,"{""promo"": ""7%""}",16647,1,North America +2024-09-26,93252,3775,"[""Laptop""]",3133.09,{},123792,1,South America +2023-09-09,93253,402,"[""Keyboard""]",4584.88,{},180002,1,Africa +2024-09-13,93254,7454,"[""Laptop"", ""Monitor"", ""Tablet""]",1778.61,{},159509,1,Europe +2023-09-09,93255,3986,"[""Laptop""]",1681.74,{},280747,0,Africa +2024-04-18,93256,1549,"[""Tablet"", ""Wireless Mouse""]",1601.98,"{""loyalty"": ""23%""}",277426,0,North America +2024-06-11,93257,2529,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4759.12,"{"""": ""14%""}",84682,0,Africa +2024-08-02,93258,7023,"[""Wireless Mouse"", ""Headphones""]",4510.23,{},61961,1,South America +2023-04-20,93259,1904,"[""Monitor"", ""Phone"", ""Tablet""]",3309.14,{},60325,1,North America +2024-05-27,93260,9665,"[""Charger"", ""Keyboard"", ""Tablet""]",952.9,"{"""": ""24%""}",95709,1,North America +2024-12-08,93261,8622,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4828.76,"{""loyalty"": ""7%""}",273525,0,Africa +2023-03-21,93262,990,"[""Monitor"", ""Charger""]",1772.43,"{""loyalty"": ""25%""}",94814,1,Europe +2023-12-08,93263,5600,"[""Laptop"", ""Wireless Mouse""]",4992.68,"{""loyalty"": ""14%""}",191046,0,South America +2023-11-05,93264,3901,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",2929.95,{},11407,0,Europe +2023-01-16,93265,2953,"[""Charger""]",4288.12,{},225733,1,Africa +2024-10-05,93266,9244,"[""Laptop"", ""Phone""]",1784.74,{},211957,0,Europe +2023-09-26,93267,3598,"[""Laptop"", ""Charger""]",3348.24,"{""seasonal"": ""11%""}",17132,1,Asia +2023-08-16,93268,2009,"[""Charger"", ""Laptop""]",1939.21,"{""loyalty"": ""8%""}",292054,1,Asia +2024-04-20,93269,9482,"[""Wireless Mouse"", ""Laptop""]",996.61,"{"""": ""20%""}",266945,1,Asia +2023-10-04,93270,7672,"[""Laptop"", ""Monitor""]",3790.12,"{"""": ""21%""}",103667,1,South America +2023-09-16,93271,4180,"[""Charger"", ""Monitor""]",530.36,"{""promo"": ""16%""}",252626,0,South America +2023-04-25,93272,7573,"[""Headphones"", ""Monitor"", ""Laptop""]",2513.94,"{""promo"": ""17%""}",136023,0,Asia +2023-07-24,93273,7021,"[""Keyboard""]",2846.14,{},252086,0,Africa +2023-03-08,93274,7968,"[""Headphones""]",2952.54,"{""loyalty"": ""16%""}",100137,1,Europe +2023-10-05,93275,2329,"[""Headphones""]",3346.5,"{""loyalty"": ""19%""}",114418,1,Africa +2024-08-23,93276,2893,"[""Monitor""]",2366.53,"{""seasonal"": ""14%""}",199718,0,Asia +2024-06-25,93277,4456,"[""Charger"", ""Monitor""]",1357.87,"{""promo"": ""7%""}",214575,0,South America +2023-08-21,93278,2111,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",4671.48,"{""promo"": ""15%""}",164071,1,South America +2023-06-11,93279,6582,"[""Wireless Mouse"", ""Monitor""]",4246.16,{},182883,0,South America +2023-06-09,93280,5910,"[""Keyboard"", ""Wireless Mouse""]",4594.1,{},270103,1,Europe +2023-09-03,93281,352,"[""Tablet"", ""Laptop""]",4928.53,"{""promo"": ""25%""}",260010,1,South America +2024-05-12,93282,6507,"[""Tablet"", ""Phone""]",1963.62,{},240771,0,Africa +2024-08-15,93283,7055,"[""Wireless Mouse"", ""Charger""]",4249.45,{},215263,0,Asia +2023-02-09,93284,3167,"[""Charger"", ""Monitor"", ""Keyboard""]",3421.6,"{"""": ""10%""}",60054,1,Europe +2024-05-07,93285,8776,"[""Keyboard"", ""Headphones"", ""Phone""]",4494.02,"{""seasonal"": ""28%""}",231510,1,North America +2024-01-13,93286,2426,"[""Tablet"", ""Charger""]",2983.84,"{"""": ""22%""}",243405,0,Europe +2023-12-10,93287,3060,"[""Monitor""]",3871.98,"{""loyalty"": ""15%""}",76393,1,Asia +2024-07-07,93288,348,"[""Laptop""]",2625.02,{},120130,1,Europe +2024-03-09,93289,3132,"[""Charger""]",3909.27,{},192605,0,North America +2023-05-17,93290,5019,"[""Wireless Mouse""]",1117.73,{},145335,1,Asia +2023-01-09,93291,7336,"[""Laptop""]",768.51,"{""loyalty"": ""23%""}",153468,1,Africa +2024-05-23,93292,4282,"[""Wireless Mouse""]",305.9,{},192985,1,North America +2024-06-25,93293,452,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",307.39,{},196940,1,North America +2024-09-22,93294,3525,"[""Phone"", ""Tablet""]",726.59,"{""promo"": ""11%""}",8895,0,South America +2024-10-17,93295,9483,"[""Headphones""]",431.64,{},262626,0,Asia +2023-04-20,93296,8325,"[""Wireless Mouse"", ""Keyboard""]",2104.93,{},56249,1,Europe +2024-11-14,93297,6486,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",697.82,"{""loyalty"": ""27%""}",187949,0,Europe +2024-08-29,93298,1648,"[""Laptop""]",4029.09,{},288653,0,South America +2023-09-24,93299,7070,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1597.14,{},73413,1,Europe +2024-10-10,93300,8137,"[""Laptop""]",1979.27,"{""promo"": ""21%""}",125620,1,South America +2023-09-16,93301,1239,"[""Headphones"", ""Tablet"", ""Laptop""]",3056.76,{},144384,0,Europe +2023-04-02,93302,6300,"[""Phone"", ""Headphones"", ""Charger""]",3416.44,"{""seasonal"": ""28%""}",293846,1,South America +2023-06-09,93303,6533,"[""Monitor""]",2674.8,{},235303,0,Africa +2023-11-04,93304,2617,"[""Laptop"", ""Headphones"", ""Monitor""]",599.87,{},245667,1,Asia +2023-12-01,93305,2,"[""Monitor"", ""Tablet"", ""Laptop""]",2758.13,"{""seasonal"": ""5%""}",183678,1,Africa +2024-11-07,93306,6442,"[""Phone""]",3996.77,{},96070,1,South America +2024-05-16,93307,6856,"[""Wireless Mouse"", ""Headphones""]",1431.93,"{"""": ""27%""}",169234,0,Africa +2023-10-28,93308,2925,"[""Tablet"", ""Laptop""]",1159.41,{},175375,1,Asia +2024-12-05,93309,7589,"[""Headphones"", ""Phone""]",773.93,"{""loyalty"": ""29%""}",207956,0,North America +2024-11-17,93310,4918,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4070.13,"{""promo"": ""26%""}",162695,0,South America +2023-10-09,93311,5461,"[""Laptop"", ""Monitor"", ""Keyboard""]",2982.73,{},248783,1,Africa +2024-03-06,93312,6419,"[""Phone""]",1534.14,"{""loyalty"": ""8%""}",197695,1,Asia +2023-04-25,93313,1872,"[""Keyboard"", ""Tablet"", ""Headphones""]",3202.66,{},166231,1,North America +2023-04-17,93314,9872,"[""Laptop"", ""Wireless Mouse""]",2731.08,{},115163,1,Africa +2024-06-28,93315,9680,"[""Laptop"", ""Tablet"", ""Keyboard""]",2411.38,"{"""": ""17%""}",53126,1,North America +2024-01-21,93316,5800,"[""Wireless Mouse""]",1160.06,{},292373,0,North America +2023-05-21,93317,8469,"[""Keyboard""]",793.83,"{""promo"": ""26%""}",69886,0,South America +2024-04-26,93318,5265,"[""Monitor"", ""Tablet"", ""Phone""]",381.84,{},150676,1,Asia +2023-07-31,93319,6234,"[""Laptop"", ""Tablet"", ""Charger""]",1234.47,{},140327,1,South America +2023-01-24,93320,5984,"[""Tablet"", ""Keyboard"", ""Laptop""]",3445.38,"{"""": ""7%""}",155938,0,Asia +2024-05-14,93321,511,"[""Keyboard"", ""Tablet"", ""Charger""]",687.29,{},30768,1,Asia +2023-05-19,93322,9205,"[""Keyboard"", ""Headphones""]",1758.18,{},271985,1,Asia +2023-12-17,93323,1187,"[""Laptop"", ""Phone""]",3157.62,{},1286,1,North America +2024-09-09,93324,8423,"[""Laptop"", ""Headphones""]",1316.36,{},6384,0,Europe +2023-08-15,93325,3048,"[""Tablet""]",749.2,"{""seasonal"": ""27%""}",254693,1,Asia +2024-09-02,93326,4282,"[""Tablet""]",1814.91,"{""seasonal"": ""12%""}",148128,1,North America +2023-09-17,93327,1646,"[""Laptop"", ""Phone""]",308.71,"{""loyalty"": ""13%""}",123891,1,Asia +2023-02-09,93328,1780,"[""Keyboard"", ""Monitor""]",1654.45,"{""promo"": ""18%""}",149349,1,Asia +2023-12-01,93329,4854,"[""Tablet"", ""Headphones"", ""Monitor""]",2943.39,"{""promo"": ""21%""}",135625,1,Africa +2024-09-08,93330,4806,"[""Charger"", ""Wireless Mouse""]",4779.09,{},25446,1,South America +2024-07-12,93331,9007,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",4759.95,"{""seasonal"": ""29%""}",283079,1,North America +2023-10-15,93332,5854,"[""Phone""]",4187.77,{},162331,1,Africa +2024-06-15,93333,8143,"[""Keyboard"", ""Wireless Mouse""]",4739.26,"{""loyalty"": ""5%""}",129995,0,South America +2023-11-19,93334,4658,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",478.13,{},123957,0,North America +2024-06-08,93335,5920,"[""Phone"", ""Tablet"", ""Keyboard""]",1837.16,{},277311,1,Europe +2023-06-24,93336,613,"[""Keyboard"", ""Monitor"", ""Headphones""]",3467.98,"{"""": ""30%""}",98179,1,Africa +2024-01-01,93337,7142,"[""Charger"", ""Tablet"", ""Phone""]",3261.43,{},138718,0,North America +2023-03-11,93338,9208,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1668.38,"{""promo"": ""12%""}",37492,1,Africa +2024-02-07,93339,8323,"[""Laptop""]",2302.95,"{""promo"": ""14%""}",270674,0,North America +2023-11-06,93340,712,"[""Keyboard"", ""Tablet""]",2928.55,{},243894,1,Europe +2024-04-02,93341,4148,"[""Keyboard""]",2748.06,{},191821,1,Europe +2024-06-17,93342,5685,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3393.17,{},187097,0,South America +2024-06-21,93343,709,"[""Keyboard"", ""Tablet""]",3716.36,"{""promo"": ""20%""}",239011,0,Asia +2024-12-23,93344,1194,"[""Wireless Mouse"", ""Keyboard""]",1629.28,"{""seasonal"": ""25%""}",88207,1,Africa +2024-04-14,93345,6393,"[""Monitor""]",1342.86,{},232831,1,Asia +2024-10-28,93346,8034,"[""Tablet"", ""Laptop""]",4147.58,{},285353,0,Asia +2023-11-06,93347,2548,"[""Keyboard""]",221.32,{},264130,1,Asia +2023-05-05,93348,8075,"[""Wireless Mouse""]",622.31,"{""loyalty"": ""15%""}",220144,0,Asia +2023-12-29,93349,6861,"[""Wireless Mouse""]",160.64,"{""seasonal"": ""20%""}",273613,1,Europe +2023-11-18,93350,2485,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",489.65,{},143665,1,Europe +2023-09-06,93351,448,"[""Keyboard"", ""Phone""]",968.55,"{"""": ""29%""}",245417,1,South America +2024-04-06,93352,1413,"[""Keyboard""]",4897.31,"{"""": ""7%""}",218944,1,Africa +2024-01-18,93353,1297,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1692.98,"{""loyalty"": ""19%""}",296697,1,Africa +2024-09-13,93354,4920,"[""Keyboard"", ""Monitor"", ""Headphones""]",3831.44,{},25840,0,Europe +2024-01-08,93355,265,"[""Headphones"", ""Tablet""]",993.83,"{""seasonal"": ""18%""}",171324,0,North America +2023-11-28,93356,9589,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",344.89,"{""promo"": ""23%""}",184846,1,Africa +2024-01-19,93357,9836,"[""Phone""]",3991.83,{},22708,0,North America +2024-11-12,93358,734,"[""Keyboard""]",401.9,{},249048,0,South America +2023-12-03,93359,2631,"[""Charger"", ""Monitor""]",753.43,"{""promo"": ""25%""}",197938,1,Africa +2023-07-11,93360,6916,"[""Tablet""]",1173.11,{},213188,1,Asia +2023-08-01,93361,849,"[""Keyboard"", ""Headphones""]",3393.77,"{"""": ""8%""}",169288,1,Asia +2024-10-17,93362,4528,"[""Laptop"", ""Keyboard""]",2540.37,"{""promo"": ""6%""}",248189,0,North America +2024-03-05,93363,4659,"[""Monitor""]",3419.36,{},217075,0,Europe +2024-09-22,93364,3157,"[""Phone"", ""Headphones"", ""Tablet""]",3123.19,"{""promo"": ""6%""}",183576,1,Europe +2024-06-21,93365,9026,"[""Charger"", ""Monitor"", ""Keyboard""]",4015.52,"{"""": ""29%""}",260307,0,South America +2023-02-13,93366,2625,"[""Wireless Mouse"", ""Charger""]",1502.3,"{"""": ""6%""}",190366,1,Asia +2023-07-26,93367,8155,"[""Phone"", ""Laptop"", ""Charger""]",2149.52,{},118759,0,Europe +2024-07-09,93368,1746,"[""Keyboard"", ""Charger""]",3808.61,{},92180,0,Asia +2024-05-23,93369,3219,"[""Phone"", ""Monitor"", ""Charger""]",499.35,{},87280,1,North America +2023-09-21,93370,3139,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",1041.26,{},53839,0,South America +2024-08-18,93371,243,"[""Wireless Mouse""]",4933.08,"{""loyalty"": ""9%""}",242969,1,Europe +2024-10-03,93372,7894,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3887.44,{},243966,0,South America +2023-04-05,93373,8286,"[""Charger"", ""Laptop""]",4452.14,{},228751,1,Europe +2023-11-15,93374,967,"[""Monitor"", ""Headphones""]",486.35,{},88533,0,Asia +2024-09-27,93375,1337,"[""Laptop"", ""Headphones"", ""Monitor""]",1026.49,{},246876,0,Asia +2024-01-30,93376,4024,"[""Laptop"", ""Tablet"", ""Phone""]",3261.43,"{""seasonal"": ""21%""}",158166,0,North America +2023-03-03,93377,6207,"[""Phone"", ""Charger""]",3520.42,"{""promo"": ""16%""}",175377,1,Asia +2023-05-29,93378,3575,"[""Headphones""]",670.57,"{"""": ""30%""}",215620,0,South America +2023-01-15,93379,6429,"[""Laptop""]",1288.45,{},219566,1,Africa +2023-10-21,93380,6547,"[""Wireless Mouse"", ""Keyboard""]",1664.93,"{""seasonal"": ""16%""}",126158,0,Asia +2024-12-27,93381,4781,"[""Headphones"", ""Tablet""]",2397.03,{},138485,0,Africa +2023-07-22,93382,4003,"[""Laptop"", ""Charger""]",202.66,"{""loyalty"": ""14%""}",160567,0,North America +2024-10-03,93383,1353,"[""Phone"", ""Tablet""]",3325.4,"{""loyalty"": ""23%""}",287725,1,Africa +2024-07-18,93384,9155,"[""Monitor"", ""Laptop""]",3856.83,"{""promo"": ""19%""}",162024,1,Africa +2024-12-19,93385,813,"[""Headphones"", ""Phone"", ""Keyboard""]",1090.9,"{""loyalty"": ""22%""}",172393,1,South America +2023-03-17,93386,2935,"[""Phone"", ""Wireless Mouse""]",1515.11,"{""seasonal"": ""16%""}",256800,0,Asia +2023-08-22,93387,7479,"[""Headphones"", ""Monitor""]",3084.62,"{"""": ""5%""}",172084,0,North America +2024-07-14,93388,6745,"[""Charger"", ""Headphones"", ""Tablet""]",584.12,"{""promo"": ""23%""}",190530,0,Africa +2024-04-01,93389,3301,"[""Laptop"", ""Headphones""]",3970.34,"{""promo"": ""29%""}",75239,1,Asia +2024-05-13,93390,7152,"[""Wireless Mouse""]",4550.33,{},273443,0,South America +2024-08-13,93391,831,"[""Charger"", ""Keyboard"", ""Tablet""]",1178.58,{},150882,0,North America +2024-08-09,93392,2742,"[""Monitor""]",2376.11,"{"""": ""8%""}",194213,1,Europe +2023-12-25,93393,9867,"[""Tablet""]",2404.09,{},104043,1,North America +2023-06-05,93394,8035,"[""Charger"", ""Keyboard"", ""Phone""]",2994.3,"{"""": ""29%""}",85891,0,South America +2023-03-21,93395,5807,"[""Charger""]",543.31,{},124409,1,North America +2024-09-16,93396,3987,"[""Keyboard""]",1683.87,{},221893,0,Europe +2023-07-29,93397,6532,"[""Phone""]",1351.33,{},58241,0,Europe +2024-07-06,93398,6956,"[""Headphones"", ""Monitor"", ""Charger""]",1734.18,"{""promo"": ""11%""}",210373,0,Europe +2024-06-13,93399,3149,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3531.48,{},265749,1,Asia +2024-11-13,93400,9249,"[""Monitor""]",4892.66,"{""loyalty"": ""27%""}",143437,0,Europe +2023-01-29,93401,1224,"[""Tablet"", ""Charger"", ""Headphones""]",643.91,{},180119,1,Asia +2024-03-23,93402,3325,"[""Monitor"", ""Phone""]",2360.62,{},264947,0,South America +2023-10-31,93403,6363,"[""Wireless Mouse"", ""Laptop""]",777.44,"{"""": ""9%""}",156367,0,North America +2024-02-19,93404,3025,"[""Wireless Mouse"", ""Headphones""]",4118.46,{},165051,1,Africa +2024-09-24,93405,1762,"[""Headphones"", ""Tablet"", ""Laptop""]",880.74,{},127461,0,South America +2023-07-10,93406,3014,"[""Wireless Mouse""]",132.3,"{""seasonal"": ""18%""}",65922,1,Africa +2023-02-20,93407,5898,"[""Laptop"", ""Keyboard""]",1378.61,"{"""": ""20%""}",127110,0,Africa +2024-09-03,93408,9432,"[""Headphones""]",3870.12,{},68380,1,South America +2024-02-02,93409,8365,"[""Monitor""]",146.55,{},123123,1,Africa +2023-06-07,93410,1329,"[""Tablet"", ""Charger""]",175.63,{},293838,1,Africa +2023-12-22,93411,1091,"[""Monitor"", ""Charger"", ""Headphones""]",1185.42,{},183828,0,Africa +2023-10-04,93412,3207,"[""Monitor"", ""Laptop""]",192.14,{},56157,1,North America +2023-12-16,93413,2506,"[""Keyboard"", ""Tablet""]",4826.15,"{""seasonal"": ""12%""}",89180,1,Europe +2024-12-05,93414,2776,"[""Keyboard"", ""Monitor"", ""Laptop""]",4215.94,"{"""": ""27%""}",2117,1,Asia +2024-02-27,93415,7665,"[""Charger"", ""Monitor""]",1724.28,"{""promo"": ""23%""}",270072,1,Europe +2024-11-05,93416,6078,"[""Phone""]",760.54,{},224627,1,Europe +2024-08-10,93417,9017,"[""Keyboard""]",4403.75,"{"""": ""22%""}",131497,0,Europe +2024-06-08,93418,678,"[""Tablet""]",3894.73,{},268440,1,Europe +2024-12-01,93419,5890,"[""Headphones"", ""Phone""]",3531.35,"{""promo"": ""11%""}",185727,1,Asia +2023-05-23,93420,2461,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",1817.54,{},138777,0,Europe +2023-10-09,93421,427,"[""Charger""]",4378.79,"{""promo"": ""26%""}",214718,0,North America +2024-09-01,93422,3829,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4445.97,{},168743,0,North America +2024-01-05,93423,1754,"[""Tablet"", ""Laptop""]",4798.07,{},106835,1,North America +2023-05-19,93424,639,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",3755.45,{},99914,0,Asia +2023-11-15,93425,9666,"[""Monitor"", ""Laptop""]",3830.53,"{""loyalty"": ""12%""}",202395,1,South America +2024-10-21,93426,6998,"[""Keyboard"", ""Charger""]",4059.73,"{""loyalty"": ""22%""}",205601,1,South America +2024-05-29,93427,9660,"[""Laptop"", ""Headphones""]",796.43,{},224558,1,Asia +2023-01-23,93428,580,"[""Charger"", ""Phone""]",436.93,{},180351,0,South America +2024-01-04,93429,5647,"[""Keyboard""]",4535.54,"{"""": ""27%""}",160659,1,Europe +2024-03-22,93430,1711,"[""Wireless Mouse""]",2414.25,"{"""": ""13%""}",287822,1,South America +2024-12-08,93431,4375,"[""Headphones"", ""Monitor""]",1508.35,{},229678,0,Europe +2023-04-19,93432,80,"[""Monitor"", ""Tablet"", ""Laptop""]",2701.86,{},79634,1,Europe +2024-08-13,93433,9808,"[""Monitor""]",3308.77,"{"""": ""27%""}",146755,1,Europe +2024-02-06,93434,1446,"[""Headphones""]",4929.14,{},282822,1,Asia +2023-03-30,93435,8583,"[""Monitor"", ""Charger""]",991.87,{},35230,0,South America +2023-04-01,93436,2495,"[""Headphones"", ""Wireless Mouse""]",3661.01,{},188896,1,North America +2024-03-31,93437,1635,"[""Laptop"", ""Charger""]",3780.76,{},107456,0,South America +2023-11-30,93438,5094,"[""Phone"", ""Laptop""]",4203.19,{},236991,0,Europe +2024-10-14,93439,679,"[""Laptop"", ""Phone"", ""Monitor""]",2066.73,{},289952,0,South America +2024-10-12,93440,4526,"[""Laptop"", ""Monitor""]",2451.87,"{""loyalty"": ""16%""}",287374,0,North America +2023-04-30,93441,7122,"[""Monitor""]",1583.21,{},132882,0,Africa +2023-03-06,93442,8701,"[""Tablet"", ""Laptop""]",770.03,"{""loyalty"": ""6%""}",12267,1,South America +2024-12-04,93443,5041,"[""Phone"", ""Monitor"", ""Tablet""]",1474.21,{},299388,1,South America +2024-07-15,93444,8311,"[""Headphones"", ""Charger""]",994.43,"{"""": ""24%""}",48185,0,North America +2023-06-28,93445,1556,"[""Wireless Mouse"", ""Monitor""]",1974.76,{},91547,0,Africa +2024-08-07,93446,5911,"[""Wireless Mouse""]",4328.73,"{""loyalty"": ""27%""}",202939,0,Asia +2023-07-05,93447,3525,"[""Charger"", ""Wireless Mouse""]",2943.99,"{""loyalty"": ""22%""}",162044,0,Asia +2023-12-23,93448,8938,"[""Headphones""]",4652.11,{},46087,1,Asia +2023-10-30,93449,5040,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",723.26,"{"""": ""14%""}",148044,0,North America +2023-12-25,93450,695,"[""Monitor"", ""Headphones"", ""Tablet""]",4494.46,{},108723,0,Asia +2023-12-12,93451,2781,"[""Headphones"", ""Tablet"", ""Charger""]",548.76,{},29053,1,North America +2024-12-24,93452,1819,"[""Keyboard""]",2874.81,"{""promo"": ""20%""}",103889,0,Africa +2023-07-11,93453,4219,"[""Phone"", ""Keyboard""]",2005.17,{},26137,1,Europe +2024-06-21,93454,6944,"[""Monitor"", ""Phone""]",2757.48,"{""loyalty"": ""9%""}",177421,0,South America +2023-08-26,93455,3027,"[""Charger"", ""Tablet""]",1608.93,"{""promo"": ""10%""}",263010,0,Europe +2023-11-19,93456,8845,"[""Wireless Mouse"", ""Keyboard""]",3606.31,{},212472,0,Africa +2024-09-10,93457,5199,"[""Charger"", ""Phone"", ""Keyboard""]",2693.39,"{""loyalty"": ""24%""}",4548,0,Africa +2023-05-13,93458,5556,"[""Monitor"", ""Headphones"", ""Charger""]",96.48,"{"""": ""26%""}",216944,0,North America +2024-07-28,93459,8139,"[""Laptop""]",235.43,{},1863,1,North America +2024-12-31,93460,6021,"[""Wireless Mouse""]",984.04,{},297475,1,North America +2024-04-26,93461,3128,"[""Tablet""]",3503.38,{},14455,0,Africa +2023-10-05,93462,2162,"[""Monitor""]",270.87,{},231289,1,Asia +2024-08-03,93463,5237,"[""Keyboard""]",2790.83,"{"""": ""26%""}",3206,1,Asia +2024-09-06,93464,8700,"[""Laptop""]",818.98,{},270631,0,Asia +2023-04-24,93465,5738,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3711.67,{},26657,0,Europe +2024-06-26,93466,8302,"[""Headphones"", ""Tablet"", ""Phone""]",3817.87,{},35930,1,South America +2024-01-31,93467,42,"[""Charger""]",3504.91,"{""loyalty"": ""14%""}",37156,0,Africa +2024-03-25,93468,8611,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3303.93,"{""loyalty"": ""10%""}",115890,1,Asia +2024-10-05,93469,1744,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2577.82,"{"""": ""16%""}",125628,0,South America +2023-05-01,93470,581,"[""Charger"", ""Wireless Mouse""]",2446.08,{},21467,1,North America +2024-10-05,93471,6639,"[""Monitor"", ""Keyboard"", ""Phone""]",1947.37,"{""seasonal"": ""13%""}",50996,1,North America +2023-02-08,93472,1662,"[""Headphones"", ""Laptop"", ""Charger""]",3474.3,{},92769,1,South America +2023-12-10,93473,5505,"[""Headphones"", ""Monitor""]",1863.32,"{""loyalty"": ""16%""}",179824,0,Asia +2024-11-04,93474,4252,"[""Wireless Mouse"", ""Laptop""]",3983.58,"{""loyalty"": ""22%""}",120173,1,Europe +2023-07-28,93475,8891,"[""Monitor"", ""Tablet"", ""Phone""]",1866.32,"{""seasonal"": ""7%""}",204262,0,North America +2024-08-26,93476,3109,"[""Laptop"", ""Headphones"", ""Phone""]",1127.27,{},131712,1,South America +2024-12-03,93477,9616,"[""Laptop"", ""Headphones""]",1975.67,"{""promo"": ""17%""}",190576,0,Africa +2023-01-28,93478,4713,"[""Charger""]",1835.62,{},104169,1,North America +2023-10-05,93479,4137,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4125.55,"{""loyalty"": ""10%""}",186002,1,South America +2024-06-22,93480,5947,"[""Headphones"", ""Monitor""]",2206.63,{},115737,1,North America +2023-04-13,93481,7441,"[""Phone""]",252.39,"{""promo"": ""27%""}",297820,0,Asia +2024-12-13,93482,9674,"[""Keyboard"", ""Wireless Mouse""]",3896.12,"{""loyalty"": ""19%""}",105984,0,Europe +2024-08-24,93483,7650,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4816.64,{},112515,1,North America +2023-03-26,93484,964,"[""Phone""]",3053.34,"{"""": ""15%""}",276478,1,Africa +2023-08-03,93485,2956,"[""Keyboard"", ""Monitor"", ""Laptop""]",670.64,{},290414,0,Europe +2023-04-15,93486,7890,"[""Monitor"", ""Phone"", ""Headphones""]",4257.25,{},219327,1,Africa +2023-09-18,93487,6297,"[""Wireless Mouse"", ""Headphones""]",1489.78,{},271996,0,North America +2023-12-16,93488,2793,"[""Keyboard""]",4516.86,{},266705,1,South America +2023-09-24,93489,4302,"[""Monitor"", ""Charger"", ""Headphones""]",1273.55,"{""promo"": ""14%""}",93562,0,Africa +2024-04-19,93490,1073,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2259.03,"{""loyalty"": ""7%""}",144835,0,North America +2023-10-24,93491,4052,"[""Laptop"", ""Headphones"", ""Charger""]",1124.51,"{""seasonal"": ""16%""}",63202,0,Europe +2024-01-20,93492,3031,"[""Monitor""]",3964.75,"{"""": ""10%""}",45527,1,Europe +2024-01-03,93493,3593,"[""Charger""]",2723.42,{},43230,0,Asia +2023-09-19,93494,2007,"[""Phone"", ""Charger""]",1780.96,"{""promo"": ""22%""}",7401,0,Europe +2024-10-30,93495,6935,"[""Keyboard""]",185.87,{},65555,0,Asia +2024-08-16,93496,4879,"[""Tablet""]",2587.78,{},86258,1,Africa +2024-11-06,93497,5785,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1176.69,"{"""": ""5%""}",101099,1,Africa +2024-11-10,93498,8504,"[""Keyboard"", ""Headphones""]",4502.41,"{"""": ""29%""}",29827,1,North America +2024-09-08,93499,1844,"[""Laptop"", ""Headphones"", ""Phone""]",2425.94,{},151574,1,Europe +2024-11-27,93500,8497,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",566.48,"{""promo"": ""21%""}",14950,1,Asia +2024-11-14,93501,6595,"[""Tablet""]",413.78,"{""loyalty"": ""7%""}",72816,0,Europe +2023-10-31,93502,4157,"[""Charger"", ""Headphones"", ""Phone""]",637.67,"{"""": ""12%""}",66721,0,Africa +2023-01-27,93503,2674,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2523.05,{},281332,1,North America +2024-04-18,93504,8076,"[""Tablet"", ""Keyboard"", ""Monitor""]",613.46,{},155000,1,South America +2023-04-05,93505,2930,"[""Laptop""]",1459.81,{},144362,1,South America +2023-05-02,93506,1378,"[""Phone""]",4117.61,{},59164,0,North America +2024-10-19,93507,4541,"[""Charger"", ""Monitor""]",3246.18,{},227604,0,Europe +2024-02-15,93508,4887,"[""Headphones""]",2680.66,{},219295,1,North America +2023-07-23,93509,1884,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",4193.2,{},7379,1,South America +2024-12-05,93510,7765,"[""Wireless Mouse"", ""Headphones""]",3881.83,"{""seasonal"": ""23%""}",245142,0,Africa +2023-06-17,93511,3008,"[""Keyboard"", ""Headphones"", ""Tablet""]",3526.47,{},34018,0,Asia +2023-06-25,93512,8295,"[""Headphones"", ""Tablet""]",3638.69,"{"""": ""23%""}",30355,0,Asia +2023-09-03,93513,6245,"[""Monitor""]",3990.35,{},257916,1,South America +2023-01-10,93514,4213,"[""Monitor""]",2291.79,"{""loyalty"": ""6%""}",139974,0,South America +2023-12-03,93515,193,"[""Laptop"", ""Tablet""]",4046.43,{},94575,1,Asia +2024-11-07,93516,2702,"[""Laptop""]",68.52,{},181806,0,South America +2023-12-20,93517,5294,"[""Charger""]",4979.44,"{"""": ""8%""}",42585,0,South America +2024-07-21,93518,609,"[""Headphones""]",2226.92,"{""seasonal"": ""23%""}",176052,1,North America +2023-07-02,93519,9413,"[""Charger"", ""Tablet""]",347.73,"{""loyalty"": ""28%""}",152535,1,South America +2024-07-09,93520,5309,"[""Charger"", ""Laptop""]",2501.46,"{""seasonal"": ""28%""}",245755,1,South America +2023-11-21,93521,8269,"[""Monitor"", ""Phone""]",513.56,"{""seasonal"": ""10%""}",219122,1,Africa +2023-04-01,93522,3003,"[""Headphones"", ""Laptop""]",2040.82,"{"""": ""30%""}",60122,1,North America +2024-06-17,93523,8598,"[""Headphones"", ""Wireless Mouse""]",1588.15,{},210086,0,North America +2023-09-04,93524,7883,"[""Monitor"", ""Phone""]",1680.52,{},74342,1,South America +2024-06-07,93525,60,"[""Phone"", ""Keyboard""]",1667.54,"{"""": ""16%""}",114818,0,South America +2024-12-01,93526,1479,"[""Tablet"", ""Headphones""]",276.83,{},25137,1,Asia +2024-08-08,93527,2471,"[""Monitor""]",460.7,"{""promo"": ""30%""}",17302,0,Asia +2023-05-24,93528,4921,"[""Laptop""]",2275.37,{},261277,0,North America +2023-07-08,93529,1395,"[""Laptop"", ""Keyboard"", ""Phone""]",2194.46,"{""seasonal"": ""22%""}",257562,0,Asia +2023-12-02,93530,6760,"[""Headphones"", ""Monitor"", ""Charger""]",2628.53,{},212172,1,Europe +2024-05-24,93531,6128,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1451.92,{},116223,1,Asia +2023-07-05,93532,1312,"[""Laptop""]",998.73,{},272727,1,Asia +2024-11-01,93533,6298,"[""Tablet""]",238.46,"{""seasonal"": ""13%""}",183517,1,Europe +2023-08-08,93534,3595,"[""Monitor"", ""Phone""]",3575.84,{},105816,0,North America +2023-10-03,93535,7767,"[""Charger""]",3802.33,"{""seasonal"": ""6%""}",39346,0,Europe +2023-11-22,93536,4666,"[""Monitor""]",4412.26,"{"""": ""22%""}",96708,1,South America +2023-04-10,93537,7717,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2779.07,"{""promo"": ""8%""}",263546,0,Africa +2023-10-16,93538,4127,"[""Headphones""]",3480.05,"{""promo"": ""24%""}",156728,0,Africa +2024-03-07,93539,4032,"[""Keyboard"", ""Monitor""]",1443.53,{},24846,0,Europe +2024-04-04,93540,7207,"[""Wireless Mouse""]",1130.59,{},282226,0,Europe +2023-08-04,93541,6451,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4799.39,"{"""": ""6%""}",26788,0,Europe +2023-06-23,93542,4128,"[""Wireless Mouse""]",4443.57,{},38981,1,Europe +2024-11-17,93543,8960,"[""Headphones""]",2399.57,"{""promo"": ""8%""}",274000,0,Asia +2023-04-07,93544,4959,"[""Charger"", ""Keyboard""]",3500.96,"{""promo"": ""22%""}",83380,1,South America +2023-08-26,93545,6031,"[""Charger"", ""Keyboard""]",2619.52,{},67511,1,South America +2024-03-02,93546,6379,"[""Charger"", ""Phone""]",3408.58,"{""loyalty"": ""20%""}",65205,0,Africa +2024-06-16,93547,263,"[""Charger"", ""Tablet"", ""Headphones""]",3976.39,{},240292,0,Africa +2023-10-18,93548,5981,"[""Monitor"", ""Headphones"", ""Keyboard""]",2831.03,{},192973,0,Asia +2023-11-22,93549,8471,"[""Laptop"", ""Wireless Mouse""]",4119.76,"{""promo"": ""23%""}",103055,0,North America +2023-11-12,93550,7681,"[""Phone""]",4047.47,"{""promo"": ""28%""}",26214,1,Asia +2024-12-17,93551,5662,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",1368.04,"{""loyalty"": ""10%""}",20847,0,Europe +2024-05-25,93552,1833,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1326.37,"{""seasonal"": ""18%""}",86015,1,Europe +2023-08-07,93553,5559,"[""Phone""]",2858.64,"{""promo"": ""18%""}",11587,1,South America +2023-02-09,93554,7613,"[""Charger"", ""Keyboard""]",4688.83,"{""loyalty"": ""6%""}",259098,0,Africa +2023-11-03,93555,8749,"[""Phone"", ""Laptop"", ""Keyboard""]",4996.16,"{""seasonal"": ""27%""}",179475,0,Africa +2024-10-10,93556,6769,"[""Charger"", ""Tablet"", ""Headphones""]",775.27,"{""seasonal"": ""24%""}",38650,1,North America +2024-03-21,93557,6970,"[""Wireless Mouse""]",296.5,{},298731,0,Europe +2023-07-13,93558,5833,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",762.74,"{""loyalty"": ""7%""}",86540,0,South America +2024-05-31,93559,9447,"[""Monitor"", ""Headphones""]",3811.69,{},273876,0,Asia +2023-03-15,93560,3261,"[""Monitor""]",438.69,{},202599,1,Africa +2023-10-17,93561,9056,"[""Laptop"", ""Monitor""]",858.57,{},47779,0,North America +2023-02-20,93562,6420,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",4417.25,{},163148,1,Asia +2023-11-23,93563,9262,"[""Wireless Mouse"", ""Phone""]",1642.96,{},204373,0,Europe +2023-11-13,93564,4986,"[""Charger""]",1988.52,"{""loyalty"": ""27%""}",270190,0,North America +2024-10-06,93565,5542,"[""Keyboard"", ""Monitor""]",107.39,"{""seasonal"": ""22%""}",133307,1,Asia +2024-09-01,93566,5764,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4996.96,"{""loyalty"": ""9%""}",185419,0,South America +2023-08-09,93567,4231,"[""Keyboard""]",4690.74,{},288583,0,North America +2024-09-27,93568,1643,"[""Phone"", ""Tablet""]",4136.08,"{""loyalty"": ""9%""}",119324,1,South America +2023-12-06,93569,7268,"[""Laptop"", ""Headphones""]",4825.97,{},258290,0,Asia +2024-07-22,93570,3718,"[""Monitor""]",3699.47,{},211903,0,Africa +2024-02-08,93571,6509,"[""Tablet"", ""Keyboard""]",3299.0,"{""loyalty"": ""25%""}",249480,0,South America +2024-08-07,93572,7795,"[""Tablet"", ""Monitor""]",728.99,"{""loyalty"": ""21%""}",25045,1,Africa +2024-05-19,93573,700,"[""Phone""]",4297.68,"{""promo"": ""14%""}",222311,1,Asia +2023-01-22,93574,7363,"[""Laptop""]",1759.71,"{""seasonal"": ""26%""}",48344,0,Europe +2023-04-13,93575,5028,"[""Charger"", ""Monitor"", ""Laptop""]",4490.68,{},285927,1,North America +2023-05-30,93576,4940,"[""Monitor"", ""Laptop"", ""Wireless Mouse""]",3306.74,{},295756,1,South America +2023-03-16,93577,8139,"[""Wireless Mouse""]",4275.26,"{""seasonal"": ""27%""}",67133,0,Africa +2024-04-24,93578,1562,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2535.8,{},257217,0,Africa +2023-03-19,93579,4289,"[""Wireless Mouse""]",3496.99,{},172621,0,North America +2023-11-17,93580,846,"[""Laptop"", ""Keyboard"", ""Headphones""]",3175.75,{},195093,0,Asia +2024-12-20,93581,9049,"[""Tablet"", ""Keyboard""]",1336.74,"{""seasonal"": ""19%""}",118645,1,Asia +2024-09-06,93582,1057,"[""Headphones""]",4864.9,"{""promo"": ""15%""}",30177,1,Africa +2024-08-19,93583,2051,"[""Tablet""]",2260.73,{},47279,0,Africa +2024-06-18,93584,5653,"[""Laptop"", ""Wireless Mouse""]",4218.69,{},17065,0,North America +2024-10-12,93585,3278,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",4584.43,{},272750,1,North America +2024-12-23,93586,1516,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2357.1,{},253606,1,Africa +2024-07-19,93587,3343,"[""Monitor"", ""Keyboard"", ""Phone""]",2713.68,"{""seasonal"": ""21%""}",186479,1,Europe +2024-10-10,93588,3333,"[""Laptop""]",3457.29,{},220220,0,North America +2023-09-04,93589,5090,"[""Laptop"", ""Charger""]",1675.02,{},112785,1,Asia +2024-01-13,93590,6865,"[""Charger""]",753.72,{},237087,1,Europe +2023-01-28,93591,2655,"[""Phone"", ""Laptop""]",1101.06,{},273437,1,Africa +2024-03-29,93592,3748,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3875.41,{},198955,1,Europe +2024-11-08,93593,407,"[""Laptop"", ""Headphones"", ""Phone""]",630.56,{},259075,1,Asia +2024-10-19,93594,6798,"[""Wireless Mouse"", ""Headphones""]",494.26,"{""loyalty"": ""28%""}",130190,1,Asia +2023-12-14,93595,6866,"[""Keyboard""]",4450.3,"{""loyalty"": ""25%""}",80617,0,Europe +2024-02-13,93596,1177,"[""Keyboard""]",1037.0,"{""loyalty"": ""7%""}",157257,1,Europe +2024-01-17,93597,2594,"[""Phone"", ""Charger""]",203.59,"{""seasonal"": ""20%""}",144341,1,North America +2023-03-21,93598,7889,"[""Phone"", ""Tablet""]",2382.99,"{""seasonal"": ""27%""}",219857,0,Africa +2023-01-08,93599,8513,"[""Tablet""]",481.74,{},247807,0,South America +2023-06-20,93600,7241,"[""Tablet"", ""Keyboard""]",4720.19,{},42021,0,Europe +2023-07-08,93601,2471,"[""Tablet""]",967.48,"{""loyalty"": ""13%""}",34206,0,Asia +2023-08-13,93602,6780,"[""Headphones""]",1298.4,{},179779,1,Europe +2023-06-04,93603,2666,"[""Laptop""]",1001.58,"{""promo"": ""28%""}",257210,0,Asia +2023-05-07,93604,2157,"[""Tablet""]",89.92,"{""promo"": ""24%""}",218127,1,Europe +2024-09-07,93605,1007,"[""Laptop""]",2270.77,{},201604,1,Africa +2023-08-06,93606,3427,"[""Tablet"", ""Charger"", ""Laptop""]",4297.8,{},58023,1,Asia +2023-09-16,93607,8501,"[""Headphones""]",3363.99,"{""promo"": ""27%""}",244728,0,North America +2024-03-10,93608,8658,"[""Laptop"", ""Keyboard""]",116.33,{},61561,0,South America +2023-09-07,93609,850,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",1538.24,{},239132,1,North America +2023-11-11,93610,9766,"[""Tablet"", ""Keyboard"", ""Phone""]",52.22,{},291497,0,South America +2024-10-11,93611,9219,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",4561.4,{},47763,1,Africa +2023-04-15,93612,2084,"[""Monitor""]",109.18,{},98279,0,Europe +2023-05-03,93613,1315,"[""Charger""]",2657.88,"{""seasonal"": ""18%""}",198667,1,Africa +2023-09-30,93614,1617,"[""Phone"", ""Keyboard""]",591.91,{},216732,0,Europe +2023-10-03,93615,8639,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4992.65,{},137529,0,Europe +2023-10-13,93616,8787,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3923.83,{},227433,0,Asia +2023-10-11,93617,6006,"[""Monitor"", ""Phone""]",4200.69,"{""promo"": ""23%""}",264516,1,South America +2023-02-12,93618,9571,"[""Headphones""]",3391.47,"{""seasonal"": ""9%""}",68821,1,South America +2023-11-06,93619,3165,"[""Charger"", ""Keyboard"", ""Phone""]",2026.97,{},159588,0,Asia +2023-05-15,93620,3710,"[""Laptop"", ""Phone""]",223.24,{},15295,1,Africa +2023-06-18,93621,6120,"[""Laptop"", ""Phone"", ""Tablet""]",3358.47,"{""seasonal"": ""29%""}",174506,1,Africa +2024-05-07,93622,8525,"[""Headphones"", ""Charger""]",2065.1,"{""seasonal"": ""6%""}",52433,0,Europe +2024-07-15,93623,1075,"[""Keyboard"", ""Wireless Mouse""]",1903.97,{},35301,0,Africa +2023-10-27,93624,6385,"[""Phone""]",909.87,"{""promo"": ""26%""}",268957,0,South America +2024-01-23,93625,7141,"[""Charger""]",4428.91,"{""seasonal"": ""24%""}",270631,0,South America +2024-12-19,93626,6824,"[""Laptop""]",3462.95,"{""loyalty"": ""22%""}",104400,1,South America +2023-09-12,93627,8179,"[""Tablet""]",511.07,{},178094,0,Asia +2024-03-08,93628,3971,"[""Phone"", ""Wireless Mouse""]",72.17,"{""promo"": ""28%""}",21683,0,Asia +2023-10-20,93629,2923,"[""Keyboard"", ""Phone"", ""Charger""]",2971.5,"{""loyalty"": ""16%""}",81098,1,Africa +2024-11-10,93630,1716,"[""Monitor""]",762.21,"{"""": ""23%""}",80768,1,Asia +2023-10-26,93631,4241,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4682.01,"{""promo"": ""15%""}",29754,0,Africa +2024-09-26,93632,566,"[""Monitor""]",1966.15,"{""promo"": ""18%""}",217173,1,North America +2024-09-28,93633,7651,"[""Laptop"", ""Headphones"", ""Phone""]",4120.94,"{""promo"": ""28%""}",219167,1,Europe +2024-07-07,93634,5973,"[""Headphones""]",2824.51,"{"""": ""10%""}",263159,0,Europe +2024-10-15,93635,8456,"[""Charger"", ""Wireless Mouse""]",4447.51,{},160475,1,Africa +2024-06-29,93636,1832,"[""Tablet"", ""Laptop"", ""Keyboard""]",4000.77,{},187527,0,South America +2024-04-22,93637,9748,"[""Tablet"", ""Monitor"", ""Keyboard""]",2823.95,{},203695,0,Africa +2024-09-23,93638,2580,"[""Charger""]",3621.56,"{"""": ""17%""}",147307,1,Europe +2024-08-11,93639,830,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4350.85,{},175531,0,Europe +2024-06-20,93640,3836,"[""Charger""]",176.92,"{""promo"": ""5%""}",88693,0,South America +2024-10-19,93641,1006,"[""Tablet"", ""Keyboard""]",2252.41,"{""seasonal"": ""10%""}",298300,1,North America +2023-03-13,93642,8205,"[""Tablet"", ""Headphones""]",1522.34,{},215146,1,Europe +2024-08-23,93643,6752,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",179.38,"{"""": ""26%""}",166178,1,South America +2023-08-31,93644,4134,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1618.67,{},120256,0,Europe +2024-07-19,93645,6947,"[""Charger""]",3097.83,"{""loyalty"": ""13%""}",252510,0,Africa +2024-06-11,93646,9042,"[""Keyboard"", ""Headphones""]",3031.07,"{""seasonal"": ""24%""}",22961,0,Asia +2023-11-15,93647,7192,"[""Phone""]",731.69,"{"""": ""29%""}",224825,1,Asia +2024-09-11,93648,4437,"[""Charger"", ""Laptop""]",442.98,"{"""": ""28%""}",89119,1,Asia +2023-02-10,93649,7421,"[""Monitor""]",4047.51,"{"""": ""10%""}",128534,0,Asia +2023-07-17,93650,7135,"[""Monitor"", ""Phone""]",4498.74,"{""loyalty"": ""22%""}",212886,1,North America +2023-02-12,93651,6022,"[""Headphones"", ""Tablet""]",3327.42,"{"""": ""13%""}",254090,0,Asia +2023-07-13,93652,2487,"[""Phone"", ""Keyboard"", ""Laptop""]",2394.09,{},246863,1,Asia +2023-06-25,93653,7685,"[""Phone"", ""Laptop"", ""Charger""]",4482.92,"{""seasonal"": ""28%""}",65439,1,North America +2023-08-19,93654,4577,"[""Tablet"", ""Charger"", ""Keyboard""]",2089.0,"{""loyalty"": ""9%""}",58069,0,Africa +2023-09-22,93655,6031,"[""Phone"", ""Laptop"", ""Tablet""]",2553.56,"{"""": ""21%""}",216542,0,North America +2024-07-27,93656,2718,"[""Wireless Mouse""]",2795.34,{},159366,0,North America +2023-06-21,93657,2527,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3248.64,"{"""": ""28%""}",81736,0,Africa +2023-03-23,93658,9127,"[""Tablet"", ""Phone""]",3871.83,"{""loyalty"": ""8%""}",257089,0,South America +2024-09-18,93659,6999,"[""Monitor"", ""Laptop""]",3014.41,"{""promo"": ""7%""}",256957,0,Africa +2024-07-15,93660,3865,"[""Monitor"", ""Keyboard"", ""Phone""]",2672.59,"{"""": ""21%""}",29557,1,Asia +2024-11-03,93661,1365,"[""Wireless Mouse""]",4423.0,"{""loyalty"": ""16%""}",169411,0,Europe +2024-06-03,93662,8448,"[""Charger"", ""Laptop""]",2860.59,{},222302,0,North America +2024-07-09,93663,8383,"[""Monitor""]",1379.15,{},165758,1,North America +2024-07-31,93664,9555,"[""Keyboard"", ""Phone""]",4031.11,{},86603,1,North America +2023-08-29,93665,9290,"[""Headphones""]",2085.91,"{"""": ""26%""}",53137,0,Europe +2024-07-20,93666,5971,"[""Monitor"", ""Headphones"", ""Charger""]",982.75,{},5484,1,South America +2023-05-11,93667,7788,"[""Phone"", ""Headphones""]",1206.88,{},279828,0,Africa +2023-08-06,93668,1258,"[""Laptop""]",3649.67,{},74451,1,Europe +2024-04-10,93669,4179,"[""Keyboard""]",365.76,"{"""": ""5%""}",187584,0,Europe +2023-10-03,93670,238,"[""Monitor"", ""Phone"", ""Keyboard""]",3349.8,"{""seasonal"": ""13%""}",174480,0,South America +2023-12-16,93671,3882,"[""Keyboard"", ""Monitor"", ""Headphones""]",3686.69,"{"""": ""8%""}",95601,1,Asia +2023-11-04,93672,8308,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4418.07,{},70646,0,Africa +2023-05-19,93673,4299,"[""Keyboard"", ""Headphones""]",2494.36,"{""promo"": ""16%""}",38571,1,North America +2023-07-30,93674,7762,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2007.82,{},275141,1,South America +2024-03-08,93675,4292,"[""Monitor"", ""Tablet""]",2128.84,"{""seasonal"": ""21%""}",192858,1,South America +2023-11-19,93676,8215,"[""Wireless Mouse"", ""Keyboard""]",892.86,{},211160,0,South America +2023-05-22,93677,2091,"[""Charger"", ""Wireless Mouse""]",518.22,"{""seasonal"": ""19%""}",69517,0,North America +2024-05-16,93678,4738,"[""Wireless Mouse"", ""Laptop""]",3101.75,"{""promo"": ""23%""}",136012,0,North America +2024-08-24,93679,4144,"[""Tablet""]",4786.07,{},176956,1,Asia +2023-10-03,93680,1840,"[""Phone""]",4398.73,"{""seasonal"": ""27%""}",243020,0,North America +2024-09-08,93681,9165,"[""Charger"", ""Keyboard""]",935.52,{},211058,0,Europe +2023-03-04,93682,3045,"[""Keyboard"", ""Headphones"", ""Laptop""]",4496.39,{},1400,0,North America +2023-01-22,93683,9631,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3293.94,{},281001,1,Africa +2024-07-07,93684,8831,"[""Wireless Mouse"", ""Charger""]",4482.64,{},225103,0,Asia +2023-02-24,93685,4493,"[""Headphones""]",2312.86,"{"""": ""16%""}",245058,0,South America +2024-12-07,93686,9906,"[""Phone"", ""Tablet"", ""Charger""]",3897.67,{},271984,0,North America +2024-03-22,93687,1247,"[""Phone"", ""Tablet"", ""Laptop""]",2521.05,"{"""": ""14%""}",253394,0,North America +2024-08-27,93688,3005,"[""Headphones"", ""Phone""]",848.86,"{""seasonal"": ""25%""}",286308,1,Asia +2023-09-03,93689,8366,"[""Headphones""]",2575.31,"{""loyalty"": ""24%""}",119288,0,North America +2024-03-29,93690,8090,"[""Monitor"", ""Phone"", ""Headphones""]",2175.54,"{""seasonal"": ""13%""}",124902,1,South America +2023-01-24,93691,843,"[""Laptop"", ""Monitor""]",3654.17,{},297953,0,South America +2023-12-14,93692,6724,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3631.63,"{""seasonal"": ""26%""}",246457,0,Europe +2023-05-14,93693,4756,"[""Keyboard""]",2382.44,"{""loyalty"": ""24%""}",249577,0,Europe +2024-06-12,93694,9243,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",443.86,{},243333,0,Asia +2023-08-17,93695,1903,"[""Keyboard""]",938.54,{},22126,1,South America +2023-05-17,93696,5234,"[""Laptop""]",678.32,"{"""": ""9%""}",271644,0,Asia +2023-08-30,93697,3931,"[""Monitor"", ""Phone""]",56.56,"{""promo"": ""16%""}",8208,1,Asia +2024-04-09,93698,4197,"[""Charger""]",1531.09,{},110408,1,North America +2024-02-02,93699,9824,"[""Phone"", ""Monitor"", ""Headphones""]",2907.61,{},79515,0,Africa +2023-02-21,93700,4508,"[""Keyboard""]",3395.03,"{""promo"": ""22%""}",285206,1,Europe +2023-12-26,93701,3595,"[""Laptop"", ""Charger""]",3229.06,{},66633,0,Africa +2024-09-26,93702,396,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3556.19,"{"""": ""30%""}",122262,0,Asia +2024-05-15,93703,2054,"[""Wireless Mouse"", ""Monitor""]",3504.49,"{"""": ""18%""}",87581,0,Europe +2023-07-14,93704,8547,"[""Laptop"", ""Keyboard""]",260.14,"{""promo"": ""19%""}",196409,1,Africa +2023-12-16,93705,4385,"[""Wireless Mouse"", ""Phone"", ""Charger""]",3657.04,{},113440,0,South America +2024-10-11,93706,5402,"[""Monitor""]",2481.61,"{""seasonal"": ""8%""}",291194,0,Africa +2024-07-28,93707,6154,"[""Headphones""]",3588.16,"{"""": ""27%""}",185771,0,Europe +2024-05-03,93708,9820,"[""Keyboard"", ""Wireless Mouse""]",1598.62,{},19896,0,South America +2024-03-19,93709,426,"[""Headphones""]",2568.88,{},118719,1,Africa +2023-06-10,93710,5960,"[""Keyboard""]",3784.54,"{""promo"": ""18%""}",234709,1,Asia +2024-01-24,93711,331,"[""Monitor""]",3964.86,"{""loyalty"": ""27%""}",122955,0,South America +2024-03-10,93712,2728,"[""Tablet"", ""Phone"", ""Laptop""]",4789.68,"{""seasonal"": ""13%""}",116383,0,North America +2023-03-02,93713,7905,"[""Phone"", ""Charger""]",4342.28,"{""promo"": ""26%""}",292165,0,Europe +2023-02-15,93714,9315,"[""Phone"", ""Headphones""]",1675.4,"{"""": ""17%""}",268156,0,Europe +2023-08-29,93715,1167,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3244.2,{},137101,0,Africa +2024-01-06,93716,400,"[""Wireless Mouse""]",3959.72,{},224107,1,North America +2023-01-08,93717,9670,"[""Charger""]",3641.61,"{""loyalty"": ""10%""}",180244,1,Europe +2023-06-19,93718,6545,"[""Tablet"", ""Wireless Mouse""]",368.28,{},159515,0,North America +2024-04-10,93719,9173,"[""Phone"", ""Keyboard""]",3973.9,"{""loyalty"": ""9%""}",105684,0,South America +2024-05-19,93720,3878,"[""Keyboard""]",2619.75,{},200488,1,Africa +2023-06-13,93721,2516,"[""Monitor"", ""Headphones"", ""Laptop""]",303.32,"{"""": ""16%""}",245063,1,Europe +2023-12-22,93722,1375,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4827.45,{},261653,1,Africa +2023-03-10,93723,4409,"[""Charger"", ""Phone"", ""Wireless Mouse""]",1092.09,"{""promo"": ""24%""}",231800,1,North America +2024-06-16,93724,4608,"[""Keyboard"", ""Headphones""]",2196.35,{},66817,1,South America +2023-12-05,93725,8704,"[""Wireless Mouse""]",3346.3,"{""seasonal"": ""20%""}",107503,0,Africa +2023-11-07,93726,3581,"[""Charger""]",932.86,{},235524,0,Asia +2023-09-19,93727,8859,"[""Keyboard"", ""Phone"", ""Headphones""]",3563.81,"{""loyalty"": ""30%""}",198814,0,Europe +2024-08-12,93728,3916,"[""Phone"", ""Wireless Mouse""]",2749.82,"{""loyalty"": ""27%""}",53269,1,South America +2023-06-14,93729,2361,"[""Keyboard""]",87.56,{},96820,0,North America +2024-12-30,93730,2040,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",860.18,"{""loyalty"": ""5%""}",120563,1,Africa +2023-08-08,93731,2106,"[""Tablet"", ""Headphones""]",3115.76,{},248956,0,Asia +2023-04-06,93732,9714,"[""Monitor""]",2508.37,"{""promo"": ""5%""}",204939,1,Europe +2023-10-21,93733,4580,"[""Wireless Mouse""]",2619.47,"{""seasonal"": ""22%""}",275421,1,Asia +2023-09-29,93734,9048,"[""Phone"", ""Tablet""]",4841.21,{},207121,0,Africa +2023-02-24,93735,9615,"[""Headphones""]",1897.54,"{""promo"": ""28%""}",194541,0,Europe +2024-10-05,93736,2215,"[""Monitor""]",2219.22,{},209544,0,Europe +2023-04-08,93737,3227,"[""Headphones"", ""Monitor"", ""Charger""]",543.96,{},234872,1,Europe +2024-04-24,93738,5381,"[""Keyboard""]",1118.96,"{""loyalty"": ""8%""}",103846,1,Africa +2023-06-13,93739,824,"[""Keyboard"", ""Wireless Mouse""]",514.04,{},121743,0,South America +2024-10-27,93740,4578,"[""Wireless Mouse"", ""Headphones""]",1825.03,"{""seasonal"": ""15%""}",145223,1,South America +2023-02-02,93741,7850,"[""Keyboard"", ""Wireless Mouse""]",2941.01,{},106002,0,Asia +2023-07-27,93742,9349,"[""Wireless Mouse""]",785.22,"{""promo"": ""12%""}",65782,0,Asia +2024-06-09,93743,8349,"[""Charger"", ""Tablet"", ""Monitor""]",4053.6,"{""seasonal"": ""14%""}",241838,0,Europe +2024-06-01,93744,431,"[""Monitor"", ""Keyboard""]",2210.28,{},35494,0,North America +2024-11-29,93745,1393,"[""Phone""]",4970.74,"{""promo"": ""17%""}",39032,1,Africa +2023-08-14,93746,4038,"[""Tablet"", ""Headphones""]",535.61,{},22895,1,Europe +2023-09-17,93747,5051,"[""Charger""]",2136.69,"{""promo"": ""5%""}",221843,1,Africa +2023-11-01,93748,2720,"[""Phone"", ""Charger"", ""Laptop""]",2553.2,{},241469,0,Asia +2023-04-14,93749,807,"[""Monitor""]",1255.38,"{""loyalty"": ""10%""}",288781,0,South America +2024-11-27,93750,7641,"[""Tablet"", ""Phone"", ""Keyboard""]",3688.08,{},81150,1,South America +2023-01-06,93751,4736,"[""Charger""]",1991.43,{},198745,0,Asia +2023-04-05,93752,5028,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3078.09,"{""loyalty"": ""12%""}",252609,0,North America +2024-11-13,93753,2746,"[""Wireless Mouse""]",1847.77,"{""promo"": ""12%""}",224459,0,Asia +2023-10-07,93754,6664,"[""Laptop""]",4389.92,{},27805,1,Asia +2023-06-22,93755,3918,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4684.58,{},257083,0,South America +2024-01-23,93756,3662,"[""Keyboard"", ""Phone""]",2792.28,{},130750,1,South America +2023-08-06,93757,3692,"[""Keyboard""]",4809.17,{},73775,0,South America +2024-07-22,93758,4521,"[""Phone"", ""Tablet"", ""Laptop""]",4147.8,"{""promo"": ""9%""}",137789,1,North America +2023-02-12,93759,6470,"[""Charger""]",3205.55,{},91060,0,Asia +2024-09-29,93760,135,"[""Tablet"", ""Keyboard"", ""Monitor""]",4891.65,{},6854,0,South America +2023-04-15,93761,4102,"[""Keyboard"", ""Monitor"", ""Tablet""]",89.03,{},113525,1,Africa +2024-03-13,93762,8349,"[""Keyboard""]",511.29,"{""loyalty"": ""23%""}",264189,1,South America +2023-04-28,93763,2043,"[""Charger"", ""Keyboard"", ""Phone""]",4963.74,"{""promo"": ""16%""}",1666,0,South America +2023-05-21,93764,9858,"[""Laptop""]",4281.3,{},9794,0,Africa +2024-02-16,93765,9499,"[""Headphones"", ""Monitor""]",3451.58,{},180132,0,Asia +2023-10-16,93766,4637,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3705.2,"{""loyalty"": ""21%""}",39920,0,Africa +2023-10-22,93767,856,"[""Charger"", ""Keyboard""]",2341.65,{},270157,1,Asia +2024-10-12,93768,5499,"[""Headphones""]",143.97,"{""seasonal"": ""15%""}",237008,1,Africa +2023-06-03,93769,4554,"[""Monitor"", ""Charger""]",4810.27,"{""promo"": ""16%""}",49353,0,Africa +2023-10-12,93770,4681,"[""Phone"", ""Laptop"", ""Charger""]",840.85,{},46048,1,Asia +2023-01-08,93771,9860,"[""Laptop"", ""Monitor"", ""Phone""]",871.02,"{""promo"": ""14%""}",276839,0,North America +2023-04-15,93772,2101,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",1074.78,"{""loyalty"": ""11%""}",234853,1,Africa +2024-03-30,93773,4974,"[""Laptop""]",881.34,{},220327,0,Europe +2023-02-18,93774,1934,"[""Monitor"", ""Phone"", ""Headphones""]",831.18,"{""loyalty"": ""28%""}",236995,0,North America +2024-02-06,93775,4214,"[""Headphones""]",3432.59,"{""promo"": ""26%""}",78114,0,Asia +2024-07-20,93776,1260,"[""Monitor"", ""Keyboard""]",792.74,"{""seasonal"": ""19%""}",291963,1,Europe +2024-07-15,93777,3823,"[""Monitor""]",1756.75,"{""promo"": ""5%""}",11904,0,Africa +2023-06-07,93778,3395,"[""Charger"", ""Laptop""]",4648.66,"{""seasonal"": ""9%""}",102691,1,North America +2023-02-21,93779,183,"[""Laptop"", ""Monitor"", ""Tablet""]",1399.21,"{""seasonal"": ""11%""}",274536,0,Africa +2024-04-03,93780,1782,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",4948.35,{},273937,0,South America +2024-01-04,93781,9831,"[""Tablet"", ""Keyboard""]",1608.81,"{""promo"": ""9%""}",102660,0,Europe +2024-09-03,93782,2279,"[""Laptop""]",1733.25,"{"""": ""22%""}",55772,0,Asia +2024-07-16,93783,9305,"[""Keyboard"", ""Laptop""]",1773.63,"{""seasonal"": ""15%""}",44004,1,South America +2024-02-29,93784,1230,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1994.12,"{""promo"": ""13%""}",51355,0,Europe +2023-11-05,93785,6646,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4262.53,"{""seasonal"": ""12%""}",4776,0,Asia +2024-02-19,93786,8155,"[""Phone""]",1014.64,"{""loyalty"": ""27%""}",128889,0,Europe +2023-06-29,93787,869,"[""Keyboard"", ""Monitor""]",883.32,"{""seasonal"": ""19%""}",189342,0,South America +2023-03-18,93788,3260,"[""Headphones"", ""Wireless Mouse""]",1655.23,"{""seasonal"": ""21%""}",263254,1,Africa +2024-06-29,93789,3891,"[""Tablet""]",3548.62,"{""seasonal"": ""6%""}",75843,1,South America +2023-05-12,93790,7369,"[""Phone""]",2636.1,"{""loyalty"": ""19%""}",41401,0,Europe +2023-06-05,93791,5051,"[""Tablet"", ""Monitor""]",770.26,"{""seasonal"": ""9%""}",35874,0,North America +2023-11-28,93792,6776,"[""Laptop"", ""Keyboard"", ""Charger""]",827.4,"{""loyalty"": ""17%""}",182312,0,Africa +2023-07-02,93793,9434,"[""Phone""]",2101.89,"{""seasonal"": ""15%""}",81377,0,Africa +2023-01-20,93794,7035,"[""Charger""]",4828.77,"{""loyalty"": ""7%""}",47459,0,Europe +2024-02-21,93795,3980,"[""Tablet"", ""Charger""]",4193.54,{},23778,0,Asia +2024-05-25,93796,1914,"[""Monitor"", ""Laptop""]",4819.08,"{""loyalty"": ""11%""}",63738,1,Africa +2023-12-29,93797,6917,"[""Charger""]",4204.85,{},158241,1,North America +2023-04-06,93798,6015,"[""Phone""]",4971.37,"{""promo"": ""6%""}",281321,1,Africa +2024-12-10,93799,8656,"[""Monitor"", ""Phone"", ""Headphones""]",4190.87,"{"""": ""23%""}",88128,0,South America +2024-02-13,93800,9339,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2210.18,"{""promo"": ""13%""}",166983,0,North America +2024-08-22,93801,1393,"[""Monitor"", ""Keyboard"", ""Tablet""]",1264.75,{},87552,1,South America +2023-07-30,93802,3161,"[""Monitor""]",862.77,"{""loyalty"": ""24%""}",46061,0,North America +2024-07-22,93803,9917,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",2987.15,"{"""": ""14%""}",77740,0,South America +2023-12-16,93804,2580,"[""Tablet"", ""Monitor"", ""Phone""]",3399.35,{},292788,1,Africa +2023-01-31,93805,9570,"[""Keyboard""]",4584.09,"{""promo"": ""30%""}",39427,1,North America +2024-05-16,93806,4270,"[""Keyboard"", ""Monitor"", ""Headphones""]",4440.97,"{""loyalty"": ""5%""}",263005,0,Africa +2024-10-24,93807,4538,"[""Phone"", ""Keyboard""]",856.63,{},19917,0,North America +2024-04-12,93808,7881,"[""Laptop"", ""Monitor"", ""Charger""]",2177.53,{},272327,0,North America +2024-09-12,93809,1979,"[""Wireless Mouse""]",3203.16,{},133133,1,North America +2023-06-16,93810,7365,"[""Wireless Mouse"", ""Tablet""]",3867.29,{},70179,1,Africa +2024-11-03,93811,9586,"[""Keyboard""]",470.44,"{""promo"": ""8%""}",295724,1,Africa +2023-11-10,93812,9943,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4525.5,"{""promo"": ""13%""}",108984,0,Europe +2024-10-20,93813,2258,"[""Wireless Mouse"", ""Keyboard""]",3040.71,{},181071,1,Asia +2024-06-20,93814,7952,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",2164.51,"{"""": ""26%""}",36057,0,Asia +2024-12-14,93815,7171,"[""Tablet"", ""Keyboard"", ""Charger""]",1215.67,"{""promo"": ""11%""}",289145,0,Europe +2023-04-25,93816,8108,"[""Phone"", ""Tablet""]",2164.66,"{""loyalty"": ""19%""}",99602,1,Europe +2023-07-03,93817,3770,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",590.34,{},231634,0,Europe +2024-07-03,93818,8182,"[""Tablet""]",1877.91,{},169892,0,Africa +2023-01-12,93819,9686,"[""Headphones"", ""Keyboard"", ""Charger""]",3739.02,"{"""": ""18%""}",260013,0,Europe +2024-03-03,93820,8041,"[""Headphones""]",3057.33,"{""promo"": ""29%""}",123055,1,Europe +2024-01-24,93821,1317,"[""Tablet"", ""Monitor""]",1712.73,{},290412,1,Europe +2024-04-10,93822,715,"[""Laptop""]",436.55,"{"""": ""20%""}",79883,0,North America +2023-05-31,93823,3466,"[""Keyboard"", ""Monitor""]",1624.95,"{""promo"": ""19%""}",186617,0,Europe +2024-04-20,93824,6549,"[""Phone"", ""Keyboard"", ""Charger""]",1479.24,{},245361,1,Europe +2024-11-12,93825,8253,"[""Wireless Mouse"", ""Keyboard""]",1158.62,{},264963,0,North America +2024-08-02,93826,2480,"[""Tablet""]",206.64,"{""promo"": ""6%""}",109677,1,Europe +2024-04-28,93827,5038,"[""Monitor""]",2220.23,"{""seasonal"": ""22%""}",5100,0,Africa +2024-09-27,93828,8578,"[""Charger"", ""Phone"", ""Monitor""]",3458.78,"{""loyalty"": ""28%""}",224755,1,North America +2024-07-08,93829,7942,"[""Tablet"", ""Laptop""]",535.9,"{""seasonal"": ""28%""}",276492,1,North America +2023-11-19,93830,6886,"[""Keyboard"", ""Headphones"", ""Tablet""]",2304.19,"{"""": ""13%""}",31587,1,North America +2023-07-28,93831,7486,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4689.52,{},283433,1,North America +2023-10-31,93832,9461,"[""Charger""]",4991.14,{},92420,1,North America +2023-12-12,93833,6980,"[""Tablet"", ""Headphones"", ""Keyboard""]",2071.04,"{""seasonal"": ""15%""}",29618,1,North America +2023-11-14,93834,4591,"[""Wireless Mouse"", ""Tablet""]",1452.8,{},162310,0,Europe +2024-06-28,93835,2782,"[""Phone"", ""Keyboard""]",4025.51,{},139940,1,Africa +2024-04-04,93836,9378,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4522.7,"{""loyalty"": ""12%""}",192991,1,Europe +2024-12-01,93837,1041,"[""Charger"", ""Monitor""]",1513.14,{},129880,1,Africa +2023-04-20,93838,1594,"[""Tablet""]",4498.83,"{""seasonal"": ""25%""}",164093,0,North America +2024-11-26,93839,301,"[""Keyboard"", ""Headphones""]",4359.28,{},25759,1,Europe +2023-02-20,93840,4241,"[""Phone""]",2545.54,"{""loyalty"": ""23%""}",250269,1,Africa +2024-06-05,93841,4242,"[""Headphones""]",2195.87,{},72836,1,Africa +2023-04-22,93842,9045,"[""Keyboard""]",3624.77,"{""loyalty"": ""6%""}",251608,0,South America +2023-07-15,93843,5935,"[""Monitor"", ""Tablet"", ""Phone""]",687.43,"{""seasonal"": ""10%""}",216861,0,Europe +2024-05-10,93844,264,"[""Charger"", ""Wireless Mouse""]",1939.28,{},175760,1,Asia +2024-09-05,93845,6094,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2078.59,{},36809,1,North America +2024-10-23,93846,8956,"[""Charger"", ""Laptop""]",870.95,{},169414,0,South America +2024-06-29,93847,2283,"[""Keyboard""]",3984.95,"{"""": ""12%""}",37765,0,North America +2023-02-24,93848,94,"[""Monitor""]",1530.27,{},3731,0,North America +2023-10-30,93849,5304,"[""Keyboard""]",1046.4,{},67338,0,Asia +2023-06-05,93850,628,"[""Monitor""]",3087.2,"{""loyalty"": ""24%""}",83748,0,Africa +2023-08-25,93851,8594,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",56.34,"{""seasonal"": ""21%""}",258639,1,Africa +2023-11-30,93852,5045,"[""Tablet""]",2745.18,{},245650,1,Africa +2023-12-16,93853,6635,"[""Phone"", ""Headphones"", ""Monitor""]",4851.66,"{""seasonal"": ""7%""}",15744,1,Europe +2024-10-23,93854,8563,"[""Tablet"", ""Monitor"", ""Keyboard""]",3470.25,{},156303,0,North America +2023-03-19,93855,4842,"[""Keyboard"", ""Phone""]",3109.25,"{""seasonal"": ""5%""}",149291,0,South America +2023-03-09,93856,2328,"[""Charger""]",4469.1,"{""promo"": ""11%""}",193903,0,Africa +2024-07-02,93857,3964,"[""Tablet"", ""Headphones""]",3479.07,"{"""": ""24%""}",84514,0,Europe +2024-03-30,93858,4246,"[""Headphones""]",138.5,{},226710,0,Africa +2024-03-13,93859,6135,"[""Tablet"", ""Laptop"", ""Monitor""]",4239.54,{},67738,0,Africa +2024-02-27,93860,5756,"[""Charger"", ""Phone"", ""Laptop""]",518.9,{},285181,1,Europe +2024-05-17,93861,9148,"[""Monitor"", ""Laptop""]",2643.88,{},209002,0,North America +2024-01-09,93862,2103,"[""Wireless Mouse""]",3927.88,"{""loyalty"": ""9%""}",102489,1,Europe +2023-08-21,93863,2840,"[""Phone""]",2782.8,{},216153,1,Europe +2024-06-06,93864,6462,"[""Monitor""]",2262.27,"{""promo"": ""26%""}",39039,1,North America +2023-12-04,93865,5820,"[""Tablet"", ""Wireless Mouse""]",4348.91,"{""loyalty"": ""13%""}",114417,0,Europe +2023-07-13,93866,5062,"[""Tablet"", ""Keyboard""]",4081.07,"{"""": ""16%""}",41999,0,South America +2023-02-05,93867,5733,"[""Monitor""]",4451.04,{},135841,0,Europe +2023-04-20,93868,3357,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",381.48,"{""seasonal"": ""8%""}",279031,1,Asia +2023-03-27,93869,6555,"[""Laptop"", ""Charger"", ""Headphones""]",3846.49,"{"""": ""22%""}",166387,0,Europe +2023-08-16,93870,183,"[""Headphones"", ""Monitor""]",2428.4,{},205546,1,Asia +2024-06-29,93871,1499,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1298.99,{},161487,0,Europe +2023-08-11,93872,1907,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1172.14,{},77242,0,Africa +2023-10-18,93873,7455,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1320.86,"{""seasonal"": ""29%""}",177908,0,Asia +2023-10-22,93874,7955,"[""Keyboard"", ""Headphones"", ""Laptop""]",3644.93,{},214925,0,Asia +2024-10-27,93875,4754,"[""Laptop""]",4991.6,{},278540,0,North America +2023-06-13,93876,3629,"[""Phone"", ""Charger"", ""Headphones""]",4272.15,{},171813,1,South America +2024-02-06,93877,6331,"[""Charger"", ""Phone"", ""Keyboard""]",4702.85,{},103478,0,North America +2023-04-18,93878,8868,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2600.53,"{""promo"": ""30%""}",254343,1,Europe +2024-04-04,93879,1749,"[""Monitor"", ""Charger""]",2538.53,"{""loyalty"": ""22%""}",104328,1,Europe +2023-02-28,93880,9821,"[""Headphones"", ""Keyboard""]",3263.45,{},22912,0,Africa +2024-05-12,93881,4424,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",4831.78,"{""loyalty"": ""13%""}",95675,0,Asia +2024-10-11,93882,4290,"[""Phone"", ""Keyboard""]",3389.61,{},73114,1,Europe +2023-02-03,93883,2587,"[""Phone"", ""Charger""]",4995.53,"{""loyalty"": ""18%""}",149998,1,Africa +2023-04-21,93884,6414,"[""Tablet"", ""Wireless Mouse""]",538.18,{},240035,1,Africa +2024-12-31,93885,8236,"[""Monitor"", ""Tablet"", ""Phone""]",385.63,"{""loyalty"": ""14%""}",65052,0,North America +2024-04-05,93886,1737,"[""Tablet""]",4934.16,"{""promo"": ""26%""}",174751,0,North America +2023-11-15,93887,8331,"[""Phone"", ""Monitor"", ""Headphones""]",1350.19,"{"""": ""30%""}",203133,1,South America +2024-03-03,93888,4072,"[""Laptop""]",1782.02,"{"""": ""11%""}",165103,1,Asia +2024-10-21,93889,5226,"[""Tablet""]",2302.36,"{""loyalty"": ""28%""}",296149,0,Africa +2024-10-04,93890,9532,"[""Charger"", ""Phone""]",624.72,"{""loyalty"": ""29%""}",69787,0,South America +2024-04-27,93891,7730,"[""Charger""]",3103.71,"{""promo"": ""14%""}",184121,0,Europe +2024-06-29,93892,9698,"[""Headphones""]",855.04,{},82117,0,South America +2024-09-10,93893,4788,"[""Headphones""]",3359.52,{},90320,1,Europe +2023-07-04,93894,7399,"[""Laptop"", ""Headphones""]",2590.14,{},247822,1,Asia +2024-01-26,93895,640,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1944.59,"{""seasonal"": ""16%""}",258023,1,Asia +2024-06-30,93896,5435,"[""Headphones"", ""Keyboard""]",2094.98,"{""loyalty"": ""11%""}",294782,1,Africa +2024-11-02,93897,8507,"[""Keyboard"", ""Laptop"", ""Charger""]",3847.88,"{""loyalty"": ""16%""}",97157,0,Africa +2024-01-20,93898,3778,"[""Wireless Mouse"", ""Phone""]",4497.85,"{""promo"": ""19%""}",281980,0,North America +2023-08-14,93899,5131,"[""Tablet""]",2600.74,{},191482,0,Asia +2023-07-24,93900,4483,"[""Wireless Mouse""]",2061.46,"{""promo"": ""12%""}",280131,0,Africa +2023-08-29,93901,2874,"[""Keyboard""]",3927.47,"{""promo"": ""21%""}",89318,0,South America +2024-11-11,93902,3519,"[""Headphones"", ""Monitor"", ""Phone""]",725.47,"{""seasonal"": ""29%""}",285647,1,South America +2023-07-07,93903,7352,"[""Laptop""]",3984.99,{},210154,1,North America +2023-03-10,93904,5040,"[""Monitor""]",1129.63,{},288781,0,Europe +2023-06-29,93905,3301,"[""Keyboard"", ""Tablet"", ""Laptop""]",3982.45,{},298768,0,Europe +2023-04-12,93906,2451,"[""Monitor""]",4251.09,"{""promo"": ""8%""}",52330,0,Europe +2024-12-14,93907,1850,"[""Keyboard"", ""Headphones"", ""Phone""]",4389.53,{},129996,1,Africa +2024-12-03,93908,9615,"[""Laptop""]",1034.17,"{""seasonal"": ""14%""}",158576,0,Asia +2023-09-26,93909,6273,"[""Wireless Mouse""]",3041.85,{},122666,0,Europe +2023-07-09,93910,5603,"[""Wireless Mouse""]",1112.91,{},25205,0,Africa +2023-02-17,93911,259,"[""Laptop"", ""Headphones"", ""Monitor""]",4454.34,{},197077,1,South America +2023-02-01,93912,2733,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",452.97,"{""promo"": ""28%""}",59170,1,Africa +2023-06-19,93913,9948,"[""Keyboard""]",2623.82,"{"""": ""29%""}",114520,1,Europe +2024-02-01,93914,5208,"[""Keyboard""]",1948.79,"{"""": ""28%""}",144335,1,Africa +2023-07-27,93915,2175,"[""Wireless Mouse""]",1291.15,{},99630,1,Asia +2024-06-17,93916,2853,"[""Monitor"", ""Keyboard"", ""Headphones""]",2989.7,{},252021,0,Africa +2023-03-24,93917,5465,"[""Wireless Mouse""]",4704.06,"{""seasonal"": ""22%""}",161187,0,Africa +2023-02-20,93918,2213,"[""Laptop""]",3785.37,"{""promo"": ""22%""}",113957,0,Europe +2023-01-10,93919,6572,"[""Keyboard"", ""Phone"", ""Tablet""]",3413.98,"{""loyalty"": ""10%""}",60810,0,South America +2023-05-15,93920,1893,"[""Headphones"", ""Phone""]",1202.36,{},265136,1,North America +2023-04-12,93921,8430,"[""Headphones"", ""Tablet"", ""Charger""]",458.97,"{""loyalty"": ""15%""}",115642,0,South America +2023-01-25,93922,9794,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1936.09,{},3549,0,South America +2023-06-22,93923,6552,"[""Tablet"", ""Phone"", ""Charger""]",3493.24,{},261235,1,North America +2024-06-23,93924,4361,"[""Keyboard"", ""Charger""]",2216.17,{},27397,0,South America +2024-11-18,93925,123,"[""Headphones""]",3985.08,{},126399,0,Europe +2023-06-28,93926,5499,"[""Laptop""]",2684.37,{},230273,1,Europe +2023-11-25,93927,7918,"[""Monitor"", ""Wireless Mouse""]",3322.85,"{""promo"": ""25%""}",4197,1,Africa +2023-09-01,93928,3270,"[""Headphones"", ""Keyboard""]",622.13,"{""loyalty"": ""13%""}",5974,1,Africa +2024-01-12,93929,755,"[""Charger""]",3750.63,"{"""": ""28%""}",71983,1,Europe +2023-05-04,93930,9809,"[""Phone"", ""Headphones"", ""Keyboard""]",3432.87,{},288343,1,North America +2024-02-29,93931,9052,"[""Keyboard""]",96.79,"{""promo"": ""23%""}",131370,1,Africa +2023-10-14,93932,7372,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",847.23,{},298308,0,North America +2024-12-02,93933,1141,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4258.24,"{""seasonal"": ""17%""}",34972,0,Africa +2023-01-06,93934,8003,"[""Tablet"", ""Headphones"", ""Laptop""]",2066.15,"{""loyalty"": ""13%""}",98200,0,Africa +2023-06-09,93935,2617,"[""Tablet"", ""Headphones""]",492.86,"{""seasonal"": ""8%""}",286978,0,North America +2023-01-15,93936,6868,"[""Phone""]",615.54,"{""loyalty"": ""26%""}",92668,0,South America +2023-07-07,93937,869,"[""Monitor"", ""Tablet""]",1147.02,{},33816,1,Europe +2023-12-06,93938,6617,"[""Phone""]",1855.33,{},181166,1,South America +2023-02-01,93939,1950,"[""Headphones"", ""Monitor"", ""Keyboard""]",1647.78,{},86875,1,South America +2024-12-17,93940,5159,"[""Laptop""]",1485.55,{},288731,1,North America +2024-05-29,93941,6689,"[""Keyboard"", ""Laptop""]",2299.72,"{"""": ""11%""}",46425,1,Africa +2023-12-18,93942,5921,"[""Keyboard"", ""Headphones"", ""Laptop""]",3596.28,"{"""": ""14%""}",108469,0,Asia +2024-03-04,93943,6448,"[""Monitor"", ""Headphones"", ""Laptop""]",2795.95,{},168153,1,North America +2023-11-25,93944,7545,"[""Tablet""]",2376.81,"{""loyalty"": ""14%""}",176209,0,Europe +2023-12-18,93945,4159,"[""Tablet"", ""Headphones"", ""Monitor""]",2462.04,{},67616,0,North America +2023-08-30,93946,1638,"[""Wireless Mouse"", ""Charger""]",4979.91,"{""seasonal"": ""20%""}",226470,1,Africa +2023-12-19,93947,7486,"[""Phone"", ""Tablet""]",4436.59,{},180578,1,Africa +2023-05-08,93948,6634,"[""Keyboard"", ""Wireless Mouse""]",2798.77,{},186326,0,North America +2024-09-22,93949,5768,"[""Keyboard""]",2642.48,{},54440,0,Europe +2023-03-16,93950,9191,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2495.16,"{"""": ""12%""}",78059,0,Africa +2024-11-18,93951,422,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1572.36,"{""promo"": ""11%""}",249784,0,North America +2024-02-04,93952,6345,"[""Phone""]",2037.63,{},215797,1,Europe +2024-10-25,93953,6603,"[""Monitor"", ""Tablet"", ""Headphones""]",4119.91,"{""seasonal"": ""18%""}",185169,1,Europe +2024-12-20,93954,3599,"[""Tablet"", ""Monitor""]",2928.05,"{""promo"": ""13%""}",77370,1,Africa +2024-07-24,93955,8109,"[""Monitor""]",50.26,{},161538,0,South America +2023-03-10,93956,2832,"[""Keyboard"", ""Wireless Mouse""]",4611.28,{},263949,0,Europe +2024-11-03,93957,6668,"[""Headphones""]",3577.38,"{"""": ""24%""}",258671,1,Europe +2023-05-05,93958,247,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2349.67,"{""seasonal"": ""19%""}",128557,1,North America +2024-02-08,93959,5387,"[""Phone"", ""Tablet""]",1628.73,{},217164,0,South America +2024-04-16,93960,2719,"[""Laptop"", ""Monitor""]",3685.99,"{""seasonal"": ""27%""}",17886,1,South America +2024-09-22,93961,3949,"[""Charger"", ""Headphones""]",1960.73,"{""loyalty"": ""6%""}",176836,0,North America +2024-09-17,93962,9842,"[""Headphones"", ""Phone""]",514.06,"{""seasonal"": ""8%""}",70347,1,South America +2024-06-14,93963,661,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",731.02,"{""promo"": ""23%""}",80993,0,North America +2024-04-06,93964,3020,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3626.87,"{""loyalty"": ""23%""}",191591,0,South America +2024-10-04,93965,7915,"[""Phone"", ""Tablet""]",3922.9,"{""seasonal"": ""28%""}",184451,1,North America +2023-02-22,93966,4388,"[""Charger""]",948.67,{},102494,1,Asia +2023-01-07,93967,1933,"[""Tablet"", ""Laptop"", ""Headphones""]",4371.57,"{""loyalty"": ""8%""}",27260,0,Africa +2023-04-21,93968,1580,"[""Keyboard"", ""Laptop""]",3904.08,{},246304,1,North America +2024-03-25,93969,8140,"[""Keyboard""]",4608.06,"{""promo"": ""28%""}",118671,0,South America +2023-09-02,93970,4234,"[""Headphones""]",2498.55,"{""seasonal"": ""15%""}",176278,1,Asia +2024-07-23,93971,5242,"[""Charger""]",2839.63,{},23737,0,Asia +2023-12-31,93972,949,"[""Charger"", ""Keyboard"", ""Laptop""]",4110.96,{},127023,1,Africa +2024-06-07,93973,4563,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",1794.57,"{"""": ""28%""}",141727,0,Africa +2024-04-07,93974,1188,"[""Laptop"", ""Keyboard""]",3967.95,{},256702,1,North America +2023-10-29,93975,2249,"[""Monitor"", ""Keyboard"", ""Laptop""]",1743.43,{},264449,1,North America +2023-06-13,93976,7644,"[""Keyboard"", ""Charger"", ""Phone""]",1148.29,{},75689,0,Asia +2024-01-30,93977,3891,"[""Charger""]",1332.34,"{"""": ""17%""}",25219,0,Africa +2023-05-26,93978,732,"[""Headphones""]",3464.91,{},178698,0,South America +2023-04-17,93979,8591,"[""Charger""]",398.27,{},222426,1,North America +2024-04-14,93980,7028,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1480.25,"{""seasonal"": ""28%""}",206388,0,South America +2023-05-19,93981,8943,"[""Laptop""]",2865.45,"{""seasonal"": ""22%""}",208871,1,South America +2023-03-21,93982,5241,"[""Laptop"", ""Monitor""]",4255.49,"{""promo"": ""20%""}",223159,0,Asia +2023-09-14,93983,7297,"[""Headphones"", ""Phone"", ""Charger""]",4337.56,{},195429,0,Asia +2024-12-08,93984,7197,"[""Charger"", ""Laptop"", ""Monitor""]",4711.64,{},119689,1,South America +2024-12-13,93985,9078,"[""Wireless Mouse""]",4259.27,"{""promo"": ""12%""}",282635,0,North America +2024-12-04,93986,687,"[""Laptop"", ""Phone"", ""Headphones""]",4958.11,{},26657,0,Africa +2023-08-14,93987,8366,"[""Monitor"", ""Tablet""]",1532.07,"{""promo"": ""26%""}",46162,1,Africa +2024-12-19,93988,7287,"[""Phone"", ""Tablet""]",2050.1,{},129599,0,Europe +2024-04-23,93989,7810,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",2254.42,"{""seasonal"": ""15%""}",160176,0,North America +2024-12-22,93990,7030,"[""Laptop""]",2536.02,{},48244,1,Europe +2023-06-05,93991,5275,"[""Monitor"", ""Phone""]",2924.75,"{"""": ""15%""}",44953,0,Europe +2024-09-27,93992,7867,"[""Headphones"", ""Phone"", ""Laptop""]",4453.57,{},292469,1,Africa +2023-07-06,93993,2286,"[""Tablet""]",3353.54,"{""promo"": ""26%""}",296029,0,South America +2024-11-27,93994,1291,"[""Phone"", ""Keyboard"", ""Laptop""]",3663.28,{},277766,1,South America +2023-04-24,93995,3730,"[""Headphones"", ""Monitor""]",4148.25,"{""seasonal"": ""22%""}",230620,0,Europe +2023-07-31,93996,851,"[""Charger""]",1994.02,{},196224,1,Africa +2024-03-18,93997,5966,"[""Monitor"", ""Keyboard"", ""Laptop""]",4017.02,{},121461,1,Europe +2023-05-07,93998,2018,"[""Tablet""]",1113.02,"{""seasonal"": ""25%""}",222729,1,Asia +2023-06-30,93999,143,"[""Charger""]",1593.41,{},119287,1,Europe +2023-06-02,94000,5634,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4857.16,{},91130,1,North America +2023-09-25,94001,8596,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",1978.38,"{""promo"": ""5%""}",2670,0,North America +2023-12-24,94002,2007,"[""Laptop"", ""Tablet"", ""Phone""]",330.33,{},25303,0,South America +2023-05-13,94003,1657,"[""Monitor"", ""Laptop""]",4574.53,{},217561,0,Asia +2024-06-05,94004,6163,"[""Tablet"", ""Monitor"", ""Keyboard""]",4923.4,"{""seasonal"": ""13%""}",226816,0,North America +2023-09-16,94005,8829,"[""Charger"", ""Tablet""]",3751.45,{},173008,1,South America +2024-10-30,94006,3876,"[""Headphones"", ""Laptop""]",823.86,"{""loyalty"": ""10%""}",75078,1,Europe +2024-12-18,94007,8551,"[""Charger"", ""Tablet""]",2205.38,"{""promo"": ""17%""}",57839,1,Asia +2024-03-19,94008,8962,"[""Tablet""]",396.47,{},3415,0,Europe +2023-06-11,94009,8158,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1811.7,"{"""": ""7%""}",133598,1,Africa +2024-10-05,94010,1229,"[""Tablet"", ""Monitor""]",4745.92,"{"""": ""13%""}",145767,0,South America +2023-08-12,94011,5879,"[""Keyboard"", ""Phone""]",1176.52,{},163940,0,South America +2024-12-21,94012,1418,"[""Keyboard"", ""Phone""]",3243.98,"{""seasonal"": ""30%""}",125388,1,South America +2023-07-14,94013,7025,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",286.56,"{""seasonal"": ""20%""}",88262,1,Africa +2023-05-07,94014,702,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",722.6,{},41946,1,Africa +2023-11-14,94015,3773,"[""Headphones"", ""Phone"", ""Charger""]",2190.09,{},49682,0,South America +2023-11-11,94016,1915,"[""Keyboard""]",3028.34,"{""seasonal"": ""14%""}",75293,0,Europe +2024-11-03,94017,5147,"[""Keyboard"", ""Phone""]",368.43,"{"""": ""23%""}",16822,0,Europe +2023-06-26,94018,6773,"[""Tablet""]",1312.33,{},210543,1,North America +2024-11-13,94019,9237,"[""Wireless Mouse"", ""Laptop""]",3972.27,{},259596,1,Africa +2024-06-22,94020,6894,"[""Monitor"", ""Wireless Mouse""]",1586.14,"{""loyalty"": ""12%""}",277955,1,Africa +2023-10-01,94021,7954,"[""Laptop""]",798.83,{},103468,0,Europe +2024-09-22,94022,2949,"[""Tablet"", ""Charger""]",4804.44,"{""loyalty"": ""26%""}",274005,0,Asia +2023-01-31,94023,5892,"[""Keyboard"", ""Tablet""]",425.19,{},195476,0,Africa +2023-07-08,94024,9957,"[""Phone"", ""Laptop"", ""Tablet""]",2572.01,{},183566,1,Africa +2023-03-26,94025,8578,"[""Charger"", ""Tablet""]",4205.37,"{""loyalty"": ""14%""}",148603,1,Africa +2024-03-14,94026,216,"[""Wireless Mouse""]",1467.51,"{""promo"": ""13%""}",254933,1,South America +2024-12-26,94027,8380,"[""Phone"", ""Wireless Mouse""]",854.29,{},271512,1,North America +2024-11-07,94028,9937,"[""Phone""]",1522.36,"{""promo"": ""27%""}",237919,0,South America +2023-04-21,94029,8071,"[""Phone"", ""Charger""]",3464.19,"{""seasonal"": ""9%""}",52532,1,South America +2024-04-19,94030,6879,"[""Phone""]",205.26,{},34525,0,North America +2023-09-03,94031,3802,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",3682.57,"{""seasonal"": ""17%""}",104484,1,South America +2023-12-27,94032,7758,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4580.31,{},253386,1,Africa +2024-09-03,94033,4453,"[""Laptop"", ""Monitor""]",2877.61,{},176975,1,Asia +2023-05-19,94034,9394,"[""Keyboard""]",4301.54,{},237345,1,North America +2023-10-17,94035,3095,"[""Headphones""]",3750.01,"{""promo"": ""24%""}",60008,0,North America +2024-11-29,94036,8124,"[""Charger""]",4014.76,{},217259,1,Africa +2024-12-15,94037,8202,"[""Laptop""]",173.13,"{""loyalty"": ""18%""}",84483,0,Africa +2024-12-09,94038,817,"[""Headphones"", ""Phone"", ""Monitor""]",1845.79,{},43141,0,Africa +2024-06-26,94039,4784,"[""Phone"", ""Keyboard""]",2186.17,"{""seasonal"": ""24%""}",229707,0,Africa +2023-12-05,94040,6732,"[""Monitor"", ""Headphones""]",1219.8,"{"""": ""26%""}",152676,1,South America +2024-09-09,94041,633,"[""Laptop"", ""Headphones""]",4241.06,{},82093,1,Asia +2024-04-05,94042,8883,"[""Headphones"", ""Monitor""]",876.51,{},1143,1,Africa +2023-10-16,94043,68,"[""Keyboard"", ""Wireless Mouse""]",3367.27,{},174825,1,North America +2023-07-26,94044,7725,"[""Phone"", ""Charger""]",2990.47,{},145046,0,South America +2024-06-13,94045,2390,"[""Headphones"", ""Monitor""]",929.65,"{""promo"": ""27%""}",172389,0,Europe +2024-08-01,94046,9445,"[""Monitor"", ""Phone"", ""Keyboard""]",138.77,"{""promo"": ""14%""}",87201,1,North America +2023-08-11,94047,8166,"[""Keyboard"", ""Phone"", ""Monitor""]",3904.24,{},69889,0,Africa +2023-06-04,94048,7355,"[""Tablet""]",1458.63,{},209416,1,Europe +2023-03-09,94049,1004,"[""Headphones"", ""Keyboard"", ""Tablet""]",1802.74,{},223468,1,North America +2024-07-20,94050,714,"[""Laptop"", ""Wireless Mouse""]",1142.77,"{"""": ""6%""}",228096,0,South America +2023-12-10,94051,8885,"[""Charger""]",4610.83,{},201141,1,South America +2023-01-27,94052,5681,"[""Phone"", ""Charger""]",1350.59,{},4968,1,Europe +2023-05-27,94053,1595,"[""Phone"", ""Laptop"", ""Headphones""]",609.41,"{""seasonal"": ""25%""}",158013,0,South America +2023-04-02,94054,485,"[""Wireless Mouse"", ""Headphones""]",4363.79,"{""promo"": ""12%""}",106134,1,Africa +2023-05-31,94055,5242,"[""Monitor""]",2840.24,"{""seasonal"": ""27%""}",173312,0,North America +2024-09-11,94056,7672,"[""Monitor""]",4238.97,{},65253,1,Asia +2024-11-02,94057,4608,"[""Monitor"", ""Headphones""]",3447.56,{},95006,1,North America +2024-06-20,94058,5570,"[""Monitor""]",872.39,"{""promo"": ""30%""}",71632,0,Africa +2024-04-19,94059,2628,"[""Laptop""]",4034.26,"{""seasonal"": ""22%""}",11825,0,Africa +2023-06-07,94060,4060,"[""Keyboard""]",3205.35,{},223421,1,North America +2024-12-14,94061,1935,"[""Monitor"", ""Charger"", ""Phone""]",4775.22,"{""seasonal"": ""25%""}",236483,1,Africa +2024-02-08,94062,2624,"[""Headphones"", ""Keyboard"", ""Charger""]",2348.96,"{""seasonal"": ""22%""}",146361,0,Asia +2023-12-15,94063,5677,"[""Keyboard"", ""Charger""]",1017.12,{},74799,0,Europe +2024-02-23,94064,8962,"[""Phone"", ""Tablet""]",816.6,"{""promo"": ""15%""}",45341,1,North America +2024-03-22,94065,2355,"[""Headphones""]",2490.97,"{""promo"": ""11%""}",214112,1,Africa +2024-07-29,94066,5041,"[""Monitor"", ""Phone""]",450.06,{},38397,1,North America +2023-11-18,94067,7520,"[""Phone"", ""Tablet""]",1788.36,"{""seasonal"": ""27%""}",127721,0,South America +2024-11-09,94068,4016,"[""Tablet"", ""Monitor""]",406.36,"{""seasonal"": ""10%""}",276180,1,North America +2024-04-11,94069,4659,"[""Phone"", ""Charger""]",2597.81,"{"""": ""28%""}",90483,0,South America +2023-12-28,94070,1151,"[""Charger"", ""Phone"", ""Laptop""]",1694.47,"{"""": ""16%""}",94951,1,Africa +2023-02-08,94071,1724,"[""Headphones"", ""Charger"", ""Monitor""]",203.92,{},147824,1,Asia +2023-09-23,94072,8111,"[""Charger"", ""Phone"", ""Headphones""]",1947.53,"{""loyalty"": ""29%""}",45181,0,South America +2024-09-02,94073,208,"[""Monitor""]",3551.99,{},110399,0,South America +2024-05-27,94074,7040,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4150.42,"{"""": ""12%""}",277253,0,Africa +2023-07-17,94075,192,"[""Tablet"", ""Headphones"", ""Monitor""]",1382.01,"{""promo"": ""9%""}",263633,0,Asia +2024-05-06,94076,8276,"[""Charger"", ""Wireless Mouse""]",2911.8,"{""loyalty"": ""24%""}",134940,1,Africa +2023-07-07,94077,6351,"[""Phone""]",2174.53,"{""seasonal"": ""21%""}",58442,0,Europe +2024-04-02,94078,6357,"[""Wireless Mouse"", ""Phone""]",944.32,"{""loyalty"": ""13%""}",218617,0,Europe +2023-10-24,94079,3426,"[""Charger"", ""Keyboard""]",4028.43,"{""seasonal"": ""22%""}",164761,0,South America +2023-11-20,94080,1175,"[""Tablet"", ""Monitor"", ""Laptop""]",3904.71,{},23106,1,Europe +2024-06-13,94081,5381,"[""Keyboard"", ""Laptop"", ""Charger""]",1436.54,"{"""": ""28%""}",96442,0,North America +2023-06-06,94082,2458,"[""Phone"", ""Monitor""]",4383.23,{},89014,0,Asia +2023-09-28,94083,9518,"[""Keyboard"", ""Wireless Mouse""]",4821.47,"{""promo"": ""14%""}",186144,0,Africa +2023-04-12,94084,216,"[""Wireless Mouse""]",408.56,"{""loyalty"": ""6%""}",42618,0,Asia +2024-02-08,94085,5572,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3326.01,"{""promo"": ""7%""}",85295,1,Europe +2023-12-21,94086,8530,"[""Charger"", ""Keyboard"", ""Headphones""]",2013.36,{},145925,0,South America +2023-07-02,94087,522,"[""Headphones""]",4712.93,{},144051,0,Asia +2023-04-10,94088,2542,"[""Keyboard""]",314.31,{},85388,1,Africa +2024-02-16,94089,8369,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1613.36,{},232179,1,Europe +2023-07-06,94090,6464,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4352.61,"{"""": ""12%""}",222169,0,Africa +2023-07-22,94091,9129,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3331.13,"{""promo"": ""8%""}",270025,0,North America +2024-01-10,94092,5637,"[""Wireless Mouse"", ""Headphones""]",324.23,"{""loyalty"": ""14%""}",79694,0,Africa +2024-07-27,94093,1751,"[""Headphones"", ""Wireless Mouse""]",391.55,"{""seasonal"": ""17%""}",157040,0,North America +2024-04-19,94094,4956,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2805.85,"{""loyalty"": ""24%""}",76852,1,North America +2024-04-19,94095,5164,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2248.42,{},113850,1,Africa +2024-08-23,94096,9548,"[""Monitor"", ""Keyboard"", ""Laptop""]",3211.87,"{""seasonal"": ""20%""}",297229,0,South America +2023-12-24,94097,2321,"[""Monitor""]",2229.9,"{"""": ""15%""}",27233,0,North America +2024-05-17,94098,9404,"[""Headphones"", ""Keyboard"", ""Tablet""]",4041.58,"{""seasonal"": ""24%""}",245926,1,Europe +2023-05-02,94099,9113,"[""Phone"", ""Tablet""]",4770.65,{},82645,0,North America +2023-07-03,94100,690,"[""Tablet"", ""Keyboard"", ""Charger""]",659.48,{},290484,1,Europe +2023-11-11,94101,278,"[""Monitor"", ""Keyboard"", ""Tablet""]",1856.11,{},83748,0,Africa +2023-12-17,94102,5851,"[""Charger"", ""Laptop"", ""Phone""]",164.26,"{""promo"": ""7%""}",155688,0,Africa +2023-01-08,94103,6591,"[""Tablet""]",4718.55,{},269358,1,North America +2024-01-31,94104,5999,"[""Laptop"", ""Tablet""]",2314.93,{},170684,1,Asia +2023-04-24,94105,5870,"[""Laptop""]",1748.66,{},151097,0,South America +2024-05-31,94106,5112,"[""Laptop""]",4605.15,"{""promo"": ""30%""}",144254,0,South America +2023-01-28,94107,169,"[""Charger""]",536.29,{},77427,0,Asia +2023-01-27,94108,9549,"[""Keyboard"", ""Phone""]",4334.41,"{"""": ""22%""}",196521,0,Europe +2024-02-29,94109,9173,"[""Phone"", ""Charger""]",3937.35,"{""loyalty"": ""30%""}",211301,1,North America +2024-07-28,94110,2090,"[""Wireless Mouse""]",1211.0,"{""promo"": ""13%""}",81005,1,Europe +2023-11-20,94111,2556,"[""Laptop"", ""Headphones"", ""Charger""]",4412.73,{},98959,1,South America +2024-02-25,94112,7978,"[""Tablet""]",1034.25,"{""promo"": ""23%""}",4333,0,South America +2024-10-10,94113,3736,"[""Tablet"", ""Charger""]",1438.85,{},191554,1,Africa +2023-09-02,94114,503,"[""Phone"", ""Tablet""]",2420.62,{},19950,0,Asia +2024-11-26,94115,7254,"[""Monitor"", ""Headphones""]",368.64,{},242351,1,Asia +2023-08-31,94116,9878,"[""Headphones"", ""Tablet""]",2317.0,{},299954,1,Europe +2024-09-01,94117,9536,"[""Monitor"", ""Phone""]",3098.99,{},231201,0,Asia +2024-01-29,94118,7880,"[""Laptop"", ""Charger"", ""Monitor""]",4769.95,"{""promo"": ""11%""}",85104,1,Europe +2023-01-18,94119,3274,"[""Phone"", ""Tablet"", ""Monitor""]",4879.3,"{""seasonal"": ""26%""}",282095,0,Europe +2023-12-08,94120,7394,"[""Charger""]",61.39,"{""seasonal"": ""6%""}",21026,1,Asia +2023-07-23,94121,2431,"[""Tablet""]",3808.16,{},124876,0,Europe +2024-02-26,94122,6193,"[""Tablet""]",3847.6,"{""promo"": ""18%""}",22304,1,Africa +2024-10-16,94123,6363,"[""Monitor"", ""Tablet"", ""Charger""]",3592.62,{},86942,0,Africa +2023-12-31,94124,9307,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1215.37,{},141199,1,South America +2023-06-05,94125,2859,"[""Phone""]",1592.06,"{""loyalty"": ""6%""}",126342,0,South America +2024-11-02,94126,3137,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4965.69,"{""seasonal"": ""19%""}",265238,1,North America +2024-10-20,94127,3091,"[""Tablet"", ""Wireless Mouse""]",4726.89,{},68788,0,Europe +2024-08-01,94128,761,"[""Charger""]",2099.38,{},137934,1,North America +2023-07-30,94129,5398,"[""Keyboard""]",4207.37,{},167820,0,Europe +2024-12-04,94130,974,"[""Laptop"", ""Monitor"", ""Charger""]",1391.51,{},178273,0,Europe +2024-05-31,94131,5446,"[""Wireless Mouse"", ""Charger""]",2832.5,{},53425,0,Africa +2023-06-20,94132,6719,"[""Monitor"", ""Phone""]",2756.05,"{"""": ""24%""}",216257,0,South America +2024-08-27,94133,7291,"[""Keyboard"", ""Laptop"", ""Phone""]",4248.44,{},200150,0,Europe +2024-08-29,94134,8329,"[""Keyboard"", ""Monitor"", ""Tablet""]",4324.15,"{"""": ""29%""}",157601,0,Europe +2023-02-18,94135,1344,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2684.29,{},98843,1,North America +2024-10-25,94136,2404,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1392.36,{},186693,1,North America +2023-11-04,94137,3131,"[""Phone"", ""Tablet"", ""Monitor""]",4258.32,{},211168,1,South America +2024-11-24,94138,8076,"[""Tablet""]",3825.65,{},224604,0,South America +2023-04-13,94139,2763,"[""Monitor"", ""Tablet"", ""Headphones""]",3573.49,{},37187,1,North America +2024-09-16,94140,3164,"[""Phone"", ""Tablet""]",3524.48,"{"""": ""13%""}",238076,0,North America +2023-05-26,94141,3840,"[""Monitor"", ""Laptop""]",4863.61,"{""loyalty"": ""26%""}",65732,0,North America +2023-08-11,94142,8911,"[""Charger"", ""Tablet""]",2185.09,{},247595,0,Africa +2023-12-20,94143,2724,"[""Laptop""]",4601.73,{},47500,0,North America +2024-06-21,94144,2253,"[""Keyboard""]",460.12,{},297866,1,South America +2024-03-21,94145,7448,"[""Headphones""]",3831.25,"{"""": ""11%""}",93822,1,Africa +2024-02-07,94146,1520,"[""Laptop""]",609.63,{},140227,0,Asia +2023-08-05,94147,7202,"[""Charger"", ""Keyboard""]",1549.78,"{""promo"": ""15%""}",290065,0,Africa +2024-01-12,94148,3225,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1959.76,"{""promo"": ""19%""}",210519,0,Asia +2024-09-23,94149,7090,"[""Charger""]",1420.86,"{""loyalty"": ""8%""}",86675,1,North America +2024-12-27,94150,4535,"[""Monitor"", ""Laptop""]",2892.25,{},222183,0,North America +2024-06-24,94151,356,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",705.82,"{"""": ""6%""}",12947,0,North America +2024-12-29,94152,3645,"[""Wireless Mouse""]",724.82,{},60359,0,North America +2023-04-10,94153,7267,"[""Headphones"", ""Laptop"", ""Tablet""]",2884.16,{},119677,1,Africa +2024-09-30,94154,6427,"[""Monitor"", ""Laptop"", ""Tablet""]",1490.88,"{"""": ""8%""}",80929,1,South America +2023-09-14,94155,1061,"[""Headphones"", ""Monitor""]",1727.2,{},99021,1,South America +2023-11-25,94156,2686,"[""Tablet"", ""Keyboard""]",238.53,"{""promo"": ""9%""}",120129,1,South America +2024-08-19,94157,3194,"[""Keyboard"", ""Charger""]",1499.18,"{""seasonal"": ""10%""}",175765,0,Africa +2024-09-25,94158,5145,"[""Tablet"", ""Phone"", ""Charger""]",4999.71,{},108311,0,North America +2024-05-17,94159,1127,"[""Headphones"", ""Charger""]",679.94,"{""seasonal"": ""10%""}",25483,1,Asia +2024-02-07,94160,1400,"[""Charger"", ""Tablet""]",973.03,{},37632,1,Europe +2024-03-03,94161,6142,"[""Headphones"", ""Laptop"", ""Phone""]",2374.23,{},34214,1,South America +2023-04-23,94162,7647,"[""Charger"", ""Phone"", ""Keyboard""]",4158.83,{},208040,1,North America +2024-07-18,94163,8138,"[""Headphones""]",2144.52,"{""promo"": ""25%""}",32545,0,Asia +2023-07-07,94164,7036,"[""Charger"", ""Tablet""]",3618.34,"{""loyalty"": ""25%""}",21025,0,North America +2023-03-11,94165,514,"[""Tablet"", ""Charger""]",3566.21,{},193645,1,Europe +2023-07-10,94166,9320,"[""Laptop"", ""Charger"", ""Tablet""]",3536.4,"{"""": ""14%""}",278099,0,Europe +2023-01-18,94167,5462,"[""Headphones"", ""Wireless Mouse""]",2556.98,"{""promo"": ""17%""}",22959,1,North America +2024-09-04,94168,9588,"[""Wireless Mouse"", ""Phone""]",2504.73,{},17152,1,Europe +2023-09-14,94169,9068,"[""Headphones""]",2815.61,{},74754,1,South America +2023-07-16,94170,2973,"[""Headphones"", ""Phone""]",1724.33,"{""seasonal"": ""21%""}",24005,1,Asia +2024-09-03,94171,9315,"[""Headphones"", ""Monitor"", ""Keyboard""]",1262.59,{},244438,0,North America +2023-09-11,94172,7649,"[""Monitor"", ""Tablet""]",3377.89,"{""loyalty"": ""5%""}",247845,0,Africa +2023-11-14,94173,3010,"[""Laptop""]",645.36,"{""seasonal"": ""24%""}",121832,0,Europe +2024-12-03,94174,7744,"[""Keyboard""]",2405.16,"{""loyalty"": ""19%""}",94618,0,Africa +2024-08-27,94175,2561,"[""Keyboard""]",2560.08,"{""promo"": ""16%""}",210597,0,Asia +2023-02-05,94176,4839,"[""Phone"", ""Charger""]",1445.73,{},81694,1,Asia +2024-12-12,94177,4665,"[""Charger"", ""Phone""]",1050.41,"{""loyalty"": ""7%""}",202449,0,Europe +2024-02-18,94178,480,"[""Phone""]",3747.52,"{""seasonal"": ""23%""}",162937,0,Africa +2023-11-21,94179,1868,"[""Charger"", ""Headphones"", ""Phone""]",2549.94,{},181006,0,South America +2023-03-13,94180,7472,"[""Tablet""]",1794.96,{},84299,0,Africa +2024-01-01,94181,3948,"[""Laptop"", ""Tablet""]",2131.18,"{""loyalty"": ""23%""}",139274,1,Africa +2023-08-05,94182,5263,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2583.73,{},186730,0,Europe +2024-03-12,94183,6469,"[""Charger"", ""Monitor""]",277.28,{},284468,1,Europe +2023-12-25,94184,2989,"[""Phone""]",162.74,{},150911,1,South America +2024-09-18,94185,7607,"[""Charger""]",965.7,"{"""": ""22%""}",33716,0,Asia +2024-03-07,94186,4729,"[""Monitor""]",2729.83,"{"""": ""19%""}",3209,0,South America +2023-09-12,94187,1659,"[""Keyboard""]",114.93,"{""loyalty"": ""7%""}",133312,1,Europe +2023-03-31,94188,7139,"[""Laptop"", ""Charger""]",3224.95,{},155070,1,Asia +2024-12-30,94189,5234,"[""Charger""]",3578.64,{},196007,1,Africa +2023-07-05,94190,2444,"[""Headphones"", ""Laptop""]",2313.1,{},159704,0,Europe +2023-06-10,94191,2492,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",4371.76,"{""seasonal"": ""17%""}",40055,1,Africa +2023-06-20,94192,9848,"[""Phone"", ""Tablet""]",1958.01,{},280188,1,Europe +2023-10-10,94193,5345,"[""Laptop"", ""Tablet""]",4723.33,"{""promo"": ""26%""}",13565,1,Europe +2023-04-08,94194,9075,"[""Charger""]",2477.07,{},142722,0,Asia +2023-06-27,94195,7128,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1211.99,"{""loyalty"": ""16%""}",238314,0,North America +2023-09-08,94196,3180,"[""Laptop"", ""Headphones""]",905.75,"{""seasonal"": ""12%""}",66713,0,Asia +2023-12-14,94197,4455,"[""Wireless Mouse""]",279.69,{},178751,0,South America +2024-11-12,94198,6152,"[""Tablet"", ""Headphones""]",3958.29,"{"""": ""13%""}",195408,1,Asia +2024-07-27,94199,3479,"[""Wireless Mouse""]",2431.21,{},139336,1,Africa +2024-01-20,94200,9954,"[""Monitor"", ""Laptop"", ""Phone""]",532.47,"{"""": ""28%""}",32210,0,North America +2024-05-18,94201,1508,"[""Wireless Mouse"", ""Laptop""]",390.9,"{""seasonal"": ""17%""}",298018,0,Africa +2024-01-03,94202,7523,"[""Charger"", ""Headphones"", ""Keyboard""]",2305.58,{},231189,1,South America +2024-07-06,94203,953,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4089.45,{},51538,1,South America +2024-12-25,94204,4144,"[""Headphones""]",4499.78,"{""promo"": ""17%""}",42444,1,North America +2024-07-24,94205,7455,"[""Tablet""]",3042.52,{},8555,1,South America +2023-04-04,94206,857,"[""Wireless Mouse""]",3650.94,"{""loyalty"": ""23%""}",6766,1,South America +2024-02-05,94207,5582,"[""Phone""]",3507.98,"{"""": ""18%""}",294226,0,Europe +2023-12-14,94208,1806,"[""Tablet""]",3421.66,"{""promo"": ""5%""}",10118,1,South America +2023-06-29,94209,9678,"[""Monitor""]",3375.49,"{""loyalty"": ""13%""}",203666,1,Asia +2023-06-17,94210,2738,"[""Laptop"", ""Headphones"", ""Monitor""]",3810.53,"{""promo"": ""22%""}",282757,0,Africa +2023-03-11,94211,650,"[""Wireless Mouse""]",3068.23,{},296527,1,Africa +2024-08-01,94212,7452,"[""Tablet"", ""Headphones""]",2086.49,"{"""": ""23%""}",190369,1,North America +2023-06-11,94213,965,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",4391.34,"{""seasonal"": ""16%""}",86963,1,South America +2023-05-19,94214,332,"[""Keyboard"", ""Phone"", ""Monitor""]",2791.56,{},227020,0,Asia +2023-10-15,94215,4725,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4634.33,"{""promo"": ""7%""}",150471,1,Asia +2023-06-01,94216,9597,"[""Laptop""]",4658.94,"{"""": ""23%""}",68631,1,South America +2023-11-05,94217,3309,"[""Headphones"", ""Charger""]",126.35,"{""loyalty"": ""11%""}",4974,0,Europe +2023-01-10,94218,7838,"[""Headphones""]",546.29,"{""loyalty"": ""25%""}",23030,1,Africa +2024-10-13,94219,5610,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2557.0,"{"""": ""15%""}",290527,0,South America +2023-03-03,94220,7356,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",1120.62,{},91562,1,North America +2024-06-07,94221,1563,"[""Charger""]",1606.23,{},250061,1,Africa +2024-01-11,94222,7984,"[""Laptop""]",2470.23,{},43050,1,Europe +2024-11-04,94223,3001,"[""Keyboard"", ""Tablet""]",4529.06,"{"""": ""18%""}",139394,1,Africa +2023-07-20,94224,8742,"[""Keyboard"", ""Phone""]",1754.19,{},154637,1,Africa +2023-04-10,94225,8479,"[""Tablet"", ""Charger""]",3493.79,"{""seasonal"": ""7%""}",34484,1,Africa +2023-10-19,94226,4626,"[""Tablet""]",1593.88,"{""loyalty"": ""23%""}",263501,0,North America +2024-05-19,94227,2003,"[""Phone"", ""Tablet""]",3701.68,"{""seasonal"": ""25%""}",272374,1,Africa +2023-04-12,94228,6081,"[""Laptop"", ""Wireless Mouse""]",3258.58,"{""promo"": ""22%""}",115483,1,South America +2023-10-21,94229,4173,"[""Monitor"", ""Phone""]",4373.65,{},224845,1,Asia +2023-08-20,94230,5819,"[""Laptop"", ""Headphones"", ""Charger""]",1972.25,{},168276,0,North America +2023-11-08,94231,7246,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",612.57,{},115503,1,North America +2023-07-07,94232,7048,"[""Charger"", ""Phone"", ""Headphones""]",4312.65,"{""loyalty"": ""6%""}",188697,0,Europe +2023-01-06,94233,8241,"[""Tablet""]",1525.14,"{""loyalty"": ""11%""}",150303,1,Europe +2024-09-24,94234,8792,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3036.7,"{"""": ""10%""}",37840,0,Europe +2023-09-12,94235,1664,"[""Tablet"", ""Monitor""]",2597.63,"{""seasonal"": ""20%""}",87308,0,Europe +2024-08-13,94236,640,"[""Wireless Mouse"", ""Charger""]",2326.89,"{""seasonal"": ""24%""}",9447,0,South America +2023-11-16,94237,4298,"[""Laptop""]",693.21,"{""promo"": ""26%""}",21594,0,North America +2023-05-31,94238,8414,"[""Tablet"", ""Wireless Mouse""]",1800.97,{},175806,0,North America +2024-01-20,94239,6459,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",882.91,{},20550,1,Europe +2023-10-04,94240,4949,"[""Phone"", ""Wireless Mouse""]",369.6,{},246332,0,North America +2023-01-14,94241,7311,"[""Monitor""]",4462.38,{},272115,0,Europe +2023-03-13,94242,5413,"[""Keyboard"", ""Tablet""]",4992.45,{},273961,1,Africa +2023-01-01,94243,623,"[""Headphones"", ""Charger""]",1148.86,{},169051,1,South America +2024-07-04,94244,5828,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3622.77,{},26279,1,North America +2023-10-31,94245,6879,"[""Wireless Mouse"", ""Laptop""]",1838.56,{},61470,1,Europe +2024-03-24,94246,2744,"[""Laptop""]",1745.41,{},108381,1,South America +2023-12-04,94247,9857,"[""Monitor""]",3484.84,{},32753,0,Asia +2023-05-01,94248,157,"[""Monitor"", ""Wireless Mouse""]",1066.96,"{""promo"": ""28%""}",76353,0,Asia +2024-08-18,94249,2585,"[""Monitor"", ""Phone"", ""Charger""]",163.59,"{""seasonal"": ""25%""}",181677,1,Africa +2024-01-02,94250,8055,"[""Laptop""]",2211.78,{},270982,0,Europe +2023-10-09,94251,9548,"[""Wireless Mouse"", ""Monitor""]",4106.16,{},264240,0,Africa +2023-04-26,94252,5001,"[""Charger"", ""Phone""]",4266.62,"{""seasonal"": ""28%""}",224952,1,Africa +2024-03-12,94253,9718,"[""Headphones""]",1411.18,{},57482,0,Asia +2024-06-10,94254,2131,"[""Tablet""]",4950.41,"{""promo"": ""22%""}",35972,1,Europe +2023-03-23,94255,4867,"[""Monitor""]",2786.6,"{"""": ""26%""}",236626,0,North America +2023-03-02,94256,8112,"[""Phone"", ""Keyboard""]",3013.7,"{""seasonal"": ""19%""}",209181,0,Europe +2024-12-09,94257,5906,"[""Wireless Mouse"", ""Charger""]",2828.96,"{"""": ""28%""}",206362,0,Europe +2023-10-27,94258,8616,"[""Monitor""]",2783.79,{},141409,1,North America +2023-01-29,94259,5320,"[""Monitor"", ""Tablet""]",274.09,{},137817,0,Europe +2024-08-26,94260,6395,"[""Keyboard"", ""Charger""]",4436.9,{},284581,1,Africa +2024-08-22,94261,419,"[""Charger"", ""Headphones"", ""Laptop""]",2898.73,{},296597,1,Africa +2024-09-30,94262,9001,"[""Tablet"", ""Charger""]",323.76,"{""seasonal"": ""29%""}",180546,1,Asia +2024-01-25,94263,5034,"[""Laptop""]",4033.97,{},252873,1,Asia +2024-02-01,94264,5189,"[""Headphones"", ""Keyboard""]",3428.91,"{""promo"": ""23%""}",177778,0,South America +2024-09-23,94265,111,"[""Phone"", ""Tablet""]",2476.63,{},188791,0,Asia +2024-08-16,94266,4946,"[""Phone""]",3674.58,"{""loyalty"": ""22%""}",177906,0,North America +2023-11-27,94267,3650,"[""Phone"", ""Monitor""]",2871.09,"{""promo"": ""13%""}",134047,0,North America +2023-12-25,94268,3610,"[""Charger"", ""Tablet""]",4306.32,"{""promo"": ""11%""}",40825,1,South America +2024-03-31,94269,9868,"[""Keyboard""]",141.72,"{"""": ""27%""}",295678,0,Africa +2023-08-08,94270,4354,"[""Headphones""]",2051.91,"{""loyalty"": ""29%""}",171258,0,Asia +2024-01-27,94271,5734,"[""Phone""]",552.45,"{""loyalty"": ""26%""}",57584,0,Europe +2024-11-06,94272,5529,"[""Tablet"", ""Charger"", ""Headphones""]",197.17,"{"""": ""23%""}",51967,0,South America +2024-12-05,94273,3891,"[""Headphones""]",2813.43,"{""loyalty"": ""11%""}",166844,0,Asia +2024-06-13,94274,8704,"[""Keyboard"", ""Phone"", ""Laptop""]",492.91,"{""loyalty"": ""7%""}",246014,1,North America +2024-11-28,94275,9431,"[""Monitor"", ""Charger""]",3880.01,{},160295,1,South America +2023-01-16,94276,4654,"[""Tablet"", ""Monitor"", ""Laptop""]",1251.66,"{""loyalty"": ""29%""}",53543,1,Africa +2024-12-14,94277,9433,"[""Tablet"", ""Phone"", ""Headphones""]",201.62,"{"""": ""14%""}",154705,0,Europe +2024-11-23,94278,3714,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",869.65,"{""loyalty"": ""29%""}",186906,1,Africa +2023-04-07,94279,3102,"[""Monitor""]",188.49,"{""seasonal"": ""29%""}",143278,1,South America +2023-12-09,94280,9996,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",1991.47,"{""promo"": ""26%""}",187415,0,Asia +2024-05-25,94281,5299,"[""Monitor"", ""Headphones""]",2846.7,{},263706,1,Asia +2023-08-11,94282,2500,"[""Wireless Mouse""]",3117.69,{},41259,0,Africa +2024-03-17,94283,1412,"[""Monitor"", ""Laptop""]",4448.49,"{""loyalty"": ""22%""}",95717,0,Europe +2024-02-15,94284,9352,"[""Keyboard""]",1912.02,{},262151,1,Africa +2023-12-14,94285,3286,"[""Phone"", ""Tablet""]",1700.38,{},131106,0,North America +2024-08-30,94286,6158,"[""Keyboard""]",396.32,"{""promo"": ""11%""}",249538,0,North America +2024-02-21,94287,4766,"[""Headphones"", ""Charger""]",3900.76,{},62364,1,South America +2023-03-22,94288,6520,"[""Headphones"", ""Keyboard"", ""Monitor""]",1020.1,{},282841,1,Europe +2023-09-07,94289,4683,"[""Laptop"", ""Headphones""]",1310.16,"{""seasonal"": ""26%""}",51965,1,Europe +2024-01-22,94290,6220,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",1822.96,{},149768,1,North America +2024-06-09,94291,7670,"[""Headphones"", ""Phone""]",2476.33,{},12749,1,Europe +2023-04-17,94292,9716,"[""Wireless Mouse"", ""Laptop""]",3784.15,"{""seasonal"": ""13%""}",17292,0,North America +2024-06-01,94293,2748,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2844.1,"{""loyalty"": ""27%""}",232727,0,Europe +2024-07-08,94294,2940,"[""Phone"", ""Laptop"", ""Tablet""]",1989.28,"{""loyalty"": ""18%""}",297650,1,South America +2024-12-17,94295,3138,"[""Wireless Mouse"", ""Monitor""]",3236.82,"{""seasonal"": ""9%""}",109083,1,Asia +2024-02-26,94296,3878,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",2398.91,"{""loyalty"": ""18%""}",248127,0,Africa +2024-12-23,94297,9995,"[""Laptop""]",3101.33,{},297592,0,Europe +2024-05-13,94298,6612,"[""Keyboard""]",946.38,{},213562,0,Asia +2023-01-13,94299,5280,"[""Monitor"", ""Keyboard""]",2815.85,"{""promo"": ""25%""}",124840,0,North America +2024-03-02,94300,4120,"[""Monitor"", ""Laptop"", ""Tablet""]",86.82,"{""loyalty"": ""21%""}",165904,0,North America +2023-06-20,94301,8252,"[""Keyboard""]",4927.04,{},206441,0,South America +2023-01-03,94302,9698,"[""Laptop""]",4215.59,{},216016,1,North America +2024-12-01,94303,7758,"[""Phone"", ""Headphones"", ""Monitor""]",3798.21,"{""loyalty"": ""22%""}",221497,0,Africa +2024-08-06,94304,8497,"[""Monitor""]",1224.95,{},177007,1,South America +2024-05-23,94305,8118,"[""Tablet""]",469.47,{},84907,1,South America +2023-01-28,94306,3905,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2064.73,{},208718,1,Asia +2023-10-21,94307,2487,"[""Charger""]",1498.07,"{""loyalty"": ""21%""}",28382,0,North America +2024-10-01,94308,8095,"[""Keyboard"", ""Phone"", ""Charger""]",3266.0,{},148323,0,North America +2024-10-13,94309,63,"[""Tablet""]",3660.35,"{""loyalty"": ""26%""}",254931,0,Europe +2023-05-07,94310,2165,"[""Tablet"", ""Headphones""]",1287.85,{},77228,0,North America +2023-06-30,94311,8561,"[""Charger"", ""Wireless Mouse""]",2953.6,{},51752,1,North America +2024-02-15,94312,8586,"[""Monitor"", ""Keyboard""]",4068.64,{},258358,1,Europe +2023-05-12,94313,9826,"[""Keyboard"", ""Phone""]",3241.29,"{""seasonal"": ""28%""}",299278,0,Asia +2024-08-14,94314,7572,"[""Headphones"", ""Charger""]",593.94,{},168173,1,Asia +2024-12-12,94315,3503,"[""Monitor""]",3342.63,{},141408,0,Europe +2023-04-20,94316,4113,"[""Monitor"", ""Tablet""]",4855.37,"{""promo"": ""6%""}",177845,1,Europe +2024-11-06,94317,6915,"[""Tablet"", ""Laptop""]",1557.95,{},11005,1,Africa +2023-05-17,94318,6544,"[""Phone"", ""Keyboard""]",2019.92,"{"""": ""9%""}",191791,0,Europe +2023-10-28,94319,3984,"[""Phone"", ""Charger"", ""Keyboard""]",4388.36,"{""promo"": ""15%""}",247038,1,South America +2024-01-30,94320,5841,"[""Monitor"", ""Phone"", ""Charger""]",3616.9,{},203037,1,Africa +2024-02-21,94321,8894,"[""Keyboard"", ""Charger"", ""Headphones""]",4460.99,"{"""": ""13%""}",274866,1,Europe +2024-05-02,94322,2145,"[""Laptop""]",3870.27,"{""promo"": ""9%""}",57491,0,Europe +2023-07-05,94323,9647,"[""Headphones""]",4154.18,"{""seasonal"": ""12%""}",20340,0,North America +2024-06-05,94324,7130,"[""Laptop""]",4008.43,{},15888,0,Europe +2023-10-13,94325,1415,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",916.98,{},13023,0,Africa +2024-09-21,94326,8246,"[""Wireless Mouse""]",4475.0,"{""promo"": ""24%""}",167696,0,Africa +2024-11-18,94327,9734,"[""Monitor"", ""Phone""]",2838.17,"{""loyalty"": ""6%""}",242691,0,South America +2024-03-30,94328,2353,"[""Headphones""]",3504.26,"{""promo"": ""16%""}",81135,0,Asia +2024-01-28,94329,6859,"[""Charger"", ""Tablet""]",3634.29,"{""loyalty"": ""5%""}",281212,0,Europe +2024-05-03,94330,5711,"[""Keyboard"", ""Phone""]",3948.58,"{""promo"": ""28%""}",221058,0,Africa +2023-07-13,94331,9645,"[""Monitor""]",4071.8,{},101028,0,Asia +2023-08-19,94332,4868,"[""Tablet""]",4068.46,{},50267,1,Asia +2023-04-08,94333,5812,"[""Tablet"", ""Phone"", ""Charger""]",3761.43,"{""seasonal"": ""21%""}",289056,1,Asia +2024-04-11,94334,8899,"[""Charger"", ""Phone"", ""Headphones""]",1680.22,{},12802,0,South America +2023-04-25,94335,4509,"[""Monitor""]",4994.74,"{""promo"": ""18%""}",22491,1,Europe +2023-10-31,94336,7344,"[""Keyboard""]",3574.04,"{""loyalty"": ""7%""}",178524,0,South America +2024-07-30,94337,2271,"[""Charger"", ""Laptop""]",1544.63,"{""loyalty"": ""29%""}",28102,1,Europe +2024-05-18,94338,9472,"[""Tablet"", ""Charger""]",1314.2,{},42515,1,Europe +2024-02-26,94339,49,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",781.39,"{"""": ""6%""}",164848,1,North America +2024-05-05,94340,5669,"[""Keyboard"", ""Monitor"", ""Phone""]",3257.98,{},93215,1,Europe +2024-11-05,94341,727,"[""Charger""]",3248.91,{},25692,0,Africa +2023-06-09,94342,2164,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3622.96,{},134422,0,Africa +2023-09-29,94343,9177,"[""Laptop""]",161.69,"{"""": ""28%""}",80423,1,Europe +2023-05-31,94344,7380,"[""Headphones"", ""Keyboard""]",2334.94,{},224446,0,South America +2024-01-29,94345,6331,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",4851.46,"{""seasonal"": ""16%""}",53621,0,North America +2023-06-14,94346,5167,"[""Headphones"", ""Monitor"", ""Phone""]",4088.95,{},176197,0,South America +2023-08-27,94347,9398,"[""Monitor"", ""Phone"", ""Laptop""]",3247.09,"{""seasonal"": ""11%""}",188582,0,Asia +2023-10-22,94348,3988,"[""Keyboard""]",1162.06,"{""promo"": ""9%""}",124838,1,Asia +2024-11-06,94349,7335,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",411.16,"{""seasonal"": ""25%""}",261624,0,South America +2023-06-20,94350,3415,"[""Headphones""]",341.42,"{""promo"": ""6%""}",90086,1,North America +2024-09-14,94351,5769,"[""Wireless Mouse"", ""Laptop""]",2912.53,"{""promo"": ""18%""}",156915,1,Africa +2023-03-12,94352,7476,"[""Laptop"", ""Tablet"", ""Headphones""]",4628.0,{},256135,1,North America +2023-08-28,94353,9953,"[""Keyboard"", ""Tablet"", ""Headphones""]",2437.39,"{""loyalty"": ""22%""}",174516,1,South America +2023-03-01,94354,1799,"[""Headphones"", ""Phone"", ""Laptop""]",4031.9,{},84371,1,North America +2023-07-18,94355,9392,"[""Keyboard"", ""Monitor""]",4061.36,{},228234,0,Asia +2024-06-29,94356,1960,"[""Monitor"", ""Keyboard"", ""Laptop""]",2283.99,"{""loyalty"": ""22%""}",21437,0,North America +2023-11-01,94357,1324,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1657.96,"{""loyalty"": ""7%""}",180340,0,Africa +2023-11-07,94358,1957,"[""Headphones""]",4640.94,"{""loyalty"": ""13%""}",223228,0,South America +2023-04-12,94359,8660,"[""Laptop""]",4384.84,"{""promo"": ""18%""}",215201,1,Africa +2024-05-12,94360,2839,"[""Keyboard""]",2386.09,"{""promo"": ""9%""}",122429,1,Asia +2024-09-24,94361,1834,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",400.04,"{"""": ""27%""}",147224,0,South America +2024-06-07,94362,1296,"[""Keyboard"", ""Monitor""]",1523.84,"{"""": ""29%""}",144542,0,Asia +2024-07-07,94363,2616,"[""Tablet"", ""Monitor"", ""Charger""]",908.87,{},216326,0,South America +2024-12-10,94364,1987,"[""Phone""]",3577.09,{},158578,1,North America +2024-02-15,94365,2482,"[""Charger"", ""Keyboard""]",1142.99,"{"""": ""27%""}",117206,1,Europe +2023-09-25,94366,4909,"[""Laptop""]",3651.81,{},100394,0,Asia +2024-08-24,94367,7629,"[""Keyboard""]",563.03,{},290486,1,Asia +2023-08-13,94368,9600,"[""Wireless Mouse"", ""Keyboard""]",1663.27,{},211994,0,South America +2023-10-25,94369,7045,"[""Monitor""]",3007.69,{},172301,0,North America +2024-11-05,94370,2531,"[""Wireless Mouse""]",3149.64,"{"""": ""14%""}",89617,1,North America +2024-09-20,94371,997,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4490.59,"{""loyalty"": ""17%""}",74458,1,Asia +2024-03-19,94372,8111,"[""Monitor"", ""Headphones"", ""Tablet""]",4927.67,"{"""": ""5%""}",59039,0,North America +2023-06-25,94373,2154,"[""Keyboard"", ""Charger""]",4600.15,"{"""": ""5%""}",59137,1,Asia +2024-07-25,94374,98,"[""Monitor""]",4444.35,{},62588,0,South America +2023-12-24,94375,7853,"[""Phone"", ""Headphones"", ""Charger""]",4058.47,{},213997,1,Asia +2024-03-18,94376,2404,"[""Laptop""]",1404.34,"{""promo"": ""7%""}",74980,0,Africa +2024-07-21,94377,8162,"[""Phone""]",3088.86,{},265112,1,North America +2024-02-11,94378,3043,"[""Headphones"", ""Keyboard""]",2429.55,"{"""": ""16%""}",81655,0,North America +2023-09-25,94379,2696,"[""Wireless Mouse"", ""Charger""]",1471.55,"{""promo"": ""29%""}",256383,1,Africa +2023-05-05,94380,4142,"[""Phone"", ""Headphones"", ""Monitor""]",3997.38,{},242315,0,South America +2024-04-13,94381,1540,"[""Keyboard""]",317.84,"{""loyalty"": ""14%""}",192994,0,North America +2023-02-20,94382,9000,"[""Monitor"", ""Laptop"", ""Keyboard""]",1027.84,{},33948,0,Asia +2024-06-01,94383,2654,"[""Monitor"", ""Laptop""]",4062.45,{},99406,0,South America +2023-07-16,94384,8891,"[""Tablet"", ""Keyboard""]",2528.88,"{""seasonal"": ""29%""}",114625,0,Europe +2023-06-18,94385,3125,"[""Wireless Mouse""]",3817.78,"{""promo"": ""17%""}",244792,0,South America +2023-09-13,94386,7438,"[""Phone""]",3289.8,{},32787,0,Europe +2024-07-09,94387,1221,"[""Keyboard"", ""Monitor""]",1983.4,{},199748,1,North America +2024-02-02,94388,6084,"[""Keyboard""]",485.87,"{""loyalty"": ""26%""}",43239,1,Europe +2023-10-04,94389,9942,"[""Charger"", ""Tablet""]",3584.8,{},221128,1,Africa +2024-04-19,94390,6349,"[""Monitor"", ""Phone"", ""Tablet""]",567.1,{},85487,0,Africa +2023-01-08,94391,5095,"[""Charger"", ""Monitor""]",1048.42,{},102074,1,North America +2024-04-13,94392,9351,"[""Phone"", ""Laptop""]",890.21,{},230967,1,Africa +2023-06-03,94393,5291,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",3611.46,"{""promo"": ""9%""}",88624,0,Asia +2024-08-25,94394,4983,"[""Charger"", ""Wireless Mouse""]",1841.03,"{""loyalty"": ""28%""}",151660,0,Europe +2023-10-13,94395,113,"[""Tablet"", ""Headphones"", ""Keyboard""]",2652.68,"{""promo"": ""9%""}",32724,1,North America +2023-07-04,94396,4176,"[""Wireless Mouse""]",733.31,{},291480,1,Africa +2024-05-18,94397,9938,"[""Headphones"", ""Wireless Mouse""]",3285.54,{},139535,1,South America +2023-02-17,94398,2988,"[""Headphones"", ""Tablet"", ""Keyboard""]",1990.45,"{"""": ""9%""}",192323,1,Asia +2024-04-13,94399,2356,"[""Monitor"", ""Phone""]",4772.91,"{""seasonal"": ""23%""}",281049,0,Africa +2023-08-18,94400,4786,"[""Tablet"", ""Phone"", ""Headphones""]",1758.55,{},277380,0,North America +2024-08-23,94401,5281,"[""Keyboard""]",3478.32,"{""loyalty"": ""20%""}",217311,1,North America +2023-08-14,94402,9856,"[""Tablet"", ""Wireless Mouse""]",3249.27,"{"""": ""7%""}",279315,0,Asia +2024-06-28,94403,5675,"[""Phone"", ""Tablet"", ""Laptop""]",4213.32,"{""promo"": ""27%""}",35038,0,Africa +2023-10-20,94404,5326,"[""Monitor"", ""Laptop"", ""Charger""]",1176.06,{},20388,0,Asia +2024-09-12,94405,7817,"[""Tablet"", ""Laptop""]",4829.28,"{""seasonal"": ""5%""}",211369,1,North America +2024-09-12,94406,4458,"[""Monitor"", ""Keyboard"", ""Headphones""]",2736.28,{},45150,1,Africa +2024-02-12,94407,8016,"[""Keyboard""]",674.9,"{""seasonal"": ""24%""}",234176,1,North America +2023-04-29,94408,878,"[""Monitor""]",2655.4,{},43134,0,Africa +2024-08-14,94409,7848,"[""Headphones""]",2128.1,{},83081,0,Europe +2023-05-13,94410,6332,"[""Wireless Mouse"", ""Tablet""]",1901.42,{},231731,0,North America +2023-04-22,94411,2065,"[""Phone"", ""Keyboard"", ""Tablet""]",2487.14,{},253652,1,Asia +2024-10-13,94412,6796,"[""Charger"", ""Phone"", ""Tablet""]",4564.31,{},7289,0,Europe +2023-09-26,94413,946,"[""Keyboard"", ""Charger"", ""Headphones""]",1054.71,"{""promo"": ""18%""}",12677,1,Asia +2024-08-28,94414,1796,"[""Laptop""]",1578.15,{},139937,0,Europe +2024-10-21,94415,6549,"[""Laptop"", ""Charger""]",4281.27,"{""seasonal"": ""28%""}",156917,0,Asia +2024-05-31,94416,5765,"[""Laptop""]",233.51,{},12687,1,North America +2023-03-24,94417,7797,"[""Phone""]",4528.42,"{"""": ""11%""}",90737,0,Asia +2023-10-31,94418,4202,"[""Laptop""]",4526.95,"{"""": ""15%""}",181410,0,Africa +2023-11-10,94419,3566,"[""Laptop"", ""Monitor""]",3093.42,"{""promo"": ""27%""}",297482,1,Asia +2024-05-06,94420,4548,"[""Charger""]",1164.63,{},284607,0,Africa +2024-10-17,94421,1500,"[""Tablet"", ""Phone"", ""Laptop""]",3206.26,{},124807,1,North America +2024-04-10,94422,629,"[""Charger"", ""Wireless Mouse""]",3320.75,{},7433,1,Europe +2024-01-01,94423,6964,"[""Wireless Mouse""]",1840.7,{},166073,1,Asia +2023-02-16,94424,4025,"[""Wireless Mouse""]",3686.39,"{""loyalty"": ""5%""}",134230,1,North America +2024-02-10,94425,5142,"[""Laptop"", ""Charger""]",1328.72,"{""loyalty"": ""25%""}",192757,1,North America +2024-04-22,94426,1215,"[""Keyboard"", ""Headphones""]",4434.72,"{""promo"": ""16%""}",202432,0,South America +2024-07-26,94427,5132,"[""Wireless Mouse"", ""Tablet""]",2143.01,"{""loyalty"": ""18%""}",231021,0,Asia +2024-03-15,94428,5396,"[""Tablet"", ""Charger"", ""Headphones""]",1960.19,"{"""": ""6%""}",234684,1,South America +2024-07-05,94429,7392,"[""Headphones"", ""Keyboard"", ""Charger""]",1040.62,{},283104,0,North America +2024-11-12,94430,5580,"[""Tablet"", ""Phone""]",3272.9,{},162382,1,South America +2023-02-18,94431,3179,"[""Laptop"", ""Phone""]",914.17,"{"""": ""29%""}",266905,1,South America +2024-02-27,94432,952,"[""Charger""]",565.69,"{""loyalty"": ""17%""}",57339,1,Asia +2024-09-27,94433,5103,"[""Headphones"", ""Phone"", ""Charger""]",292.85,"{""loyalty"": ""28%""}",253627,1,North America +2023-04-23,94434,7027,"[""Laptop""]",3716.4,{},272320,0,Asia +2023-02-07,94435,9268,"[""Keyboard"", ""Charger""]",847.74,{},193941,0,Africa +2023-07-06,94436,9460,"[""Headphones""]",4096.23,{},221775,0,Africa +2024-05-17,94437,9353,"[""Monitor""]",4422.18,"{""promo"": ""10%""}",273722,1,South America +2023-03-23,94438,9017,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",303.92,"{""seasonal"": ""14%""}",280230,0,North America +2023-07-24,94439,144,"[""Keyboard"", ""Tablet"", ""Monitor""]",516.17,"{""promo"": ""28%""}",270111,1,Africa +2023-06-17,94440,3750,"[""Keyboard"", ""Headphones"", ""Phone""]",3753.92,"{""promo"": ""14%""}",120631,1,North America +2024-12-02,94441,2484,"[""Headphones"", ""Laptop"", ""Keyboard""]",2186.04,{},77429,0,Asia +2023-11-18,94442,2485,"[""Charger""]",1309.11,"{""promo"": ""14%""}",272873,0,Asia +2024-04-22,94443,1269,"[""Laptop"", ""Keyboard"", ""Monitor""]",2035.84,"{""promo"": ""18%""}",238223,0,Asia +2024-01-04,94444,4342,"[""Headphones"", ""Tablet"", ""Keyboard""]",3712.64,{},180558,1,North America +2024-09-22,94445,4552,"[""Laptop""]",4950.14,"{""loyalty"": ""13%""}",5263,0,North America +2024-01-25,94446,5415,"[""Tablet"", ""Laptop"", ""Keyboard""]",57.36,"{""seasonal"": ""7%""}",275369,1,North America +2024-02-23,94447,8935,"[""Charger""]",1661.21,{},163798,1,Africa +2023-04-22,94448,1018,"[""Wireless Mouse"", ""Keyboard""]",3327.92,{},16201,1,South America +2023-03-17,94449,5387,"[""Keyboard"", ""Monitor""]",3518.87,{},15195,0,South America +2024-09-20,94450,7049,"[""Tablet""]",2313.4,{},91498,1,Europe +2023-10-20,94451,1977,"[""Tablet""]",1766.74,"{"""": ""26%""}",109642,1,Africa +2023-02-14,94452,8552,"[""Charger"", ""Laptop"", ""Monitor""]",3361.71,{},210700,0,Asia +2023-08-13,94453,5408,"[""Tablet""]",3376.14,"{""loyalty"": ""19%""}",165245,0,South America +2024-10-09,94454,5960,"[""Headphones""]",3800.51,"{""loyalty"": ""16%""}",280459,0,North America +2024-05-04,94455,306,"[""Monitor"", ""Wireless Mouse""]",2271.47,{},69830,0,Africa +2023-02-11,94456,6733,"[""Keyboard"", ""Laptop""]",1007.3,{},106077,0,Asia +2023-01-16,94457,9110,"[""Wireless Mouse""]",67.91,{},208372,1,Asia +2023-05-26,94458,5007,"[""Charger"", ""Headphones"", ""Laptop""]",153.68,{},203360,1,Asia +2023-06-08,94459,5850,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",329.33,{},40433,0,South America +2024-11-01,94460,4070,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3856.47,"{""loyalty"": ""21%""}",62303,0,Europe +2023-12-24,94461,5726,"[""Tablet"", ""Keyboard""]",3761.92,{},230185,0,Asia +2023-06-11,94462,9745,"[""Monitor"", ""Tablet""]",2693.67,{},283829,0,North America +2024-06-11,94463,6215,"[""Headphones"", ""Keyboard"", ""Charger""]",69.78,"{""seasonal"": ""23%""}",256097,0,Asia +2023-06-01,94464,8081,"[""Tablet"", ""Monitor""]",769.8,{},189849,0,Asia +2023-07-28,94465,7499,"[""Laptop""]",725.59,{},51526,0,Asia +2023-07-30,94466,240,"[""Keyboard"", ""Monitor""]",177.34,"{""loyalty"": ""7%""}",143043,1,Europe +2023-12-13,94467,9451,"[""Tablet""]",4803.26,{},193021,1,Asia +2023-07-19,94468,804,"[""Wireless Mouse"", ""Keyboard""]",2531.11,{},100829,1,Africa +2023-08-21,94469,4039,"[""Charger"", ""Headphones""]",3881.52,{},142301,1,South America +2023-02-04,94470,8093,"[""Phone""]",2447.14,"{"""": ""19%""}",182277,1,North America +2023-04-19,94471,3874,"[""Charger"", ""Phone"", ""Headphones""]",2444.21,{},276146,1,South America +2024-08-10,94472,6299,"[""Tablet"", ""Monitor"", ""Charger""]",2121.57,{},292558,1,Asia +2023-08-11,94473,2330,"[""Phone"", ""Charger"", ""Monitor""]",3593.12,"{""promo"": ""25%""}",215004,1,North America +2024-03-19,94474,7080,"[""Laptop""]",953.69,"{"""": ""18%""}",168544,1,North America +2023-02-12,94475,6854,"[""Monitor"", ""Tablet"", ""Charger""]",4768.82,{},6760,1,South America +2024-10-08,94476,4788,"[""Charger""]",2335.28,"{""loyalty"": ""24%""}",299924,0,Europe +2023-12-15,94477,2505,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2392.87,{},89968,0,Africa +2024-02-28,94478,8383,"[""Phone""]",2809.48,"{""seasonal"": ""20%""}",96329,1,Europe +2023-11-25,94479,4780,"[""Phone""]",3478.33,"{""promo"": ""30%""}",129467,1,North America +2023-10-01,94480,3878,"[""Tablet"", ""Phone""]",379.04,"{"""": ""7%""}",124302,1,Africa +2024-09-04,94481,4126,"[""Wireless Mouse"", ""Phone""]",2318.04,{},91409,0,South America +2023-01-11,94482,9392,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4123.57,"{"""": ""25%""}",4959,0,South America +2024-08-30,94483,9582,"[""Phone"", ""Monitor""]",1370.91,{},218655,1,Africa +2024-09-19,94484,7078,"[""Monitor"", ""Laptop""]",534.08,{},44356,0,Africa +2023-02-15,94485,4168,"[""Tablet"", ""Monitor""]",2487.43,"{""loyalty"": ""19%""}",248249,1,Africa +2023-10-27,94486,545,"[""Headphones"", ""Tablet"", ""Charger""]",4658.04,"{""promo"": ""11%""}",163255,1,South America +2023-04-10,94487,8302,"[""Keyboard"", ""Headphones"", ""Tablet""]",3304.47,{},214807,0,Africa +2024-03-09,94488,7366,"[""Tablet""]",4801.13,{},178031,1,Europe +2023-01-15,94489,7609,"[""Phone"", ""Tablet"", ""Headphones""]",2755.52,{},246043,1,Asia +2023-11-06,94490,3768,"[""Phone"", ""Charger"", ""Monitor""]",1243.65,"{""loyalty"": ""19%""}",261958,0,South America +2023-07-31,94491,9446,"[""Wireless Mouse"", ""Phone""]",2326.75,{},138422,0,Europe +2023-12-19,94492,6350,"[""Phone"", ""Headphones"", ""Tablet""]",1301.13,"{""loyalty"": ""20%""}",176292,0,Africa +2024-07-23,94493,6436,"[""Headphones"", ""Tablet"", ""Keyboard""]",1371.09,"{""seasonal"": ""17%""}",66097,0,South America +2024-02-09,94494,1099,"[""Wireless Mouse"", ""Headphones""]",3533.99,"{""promo"": ""17%""}",146298,1,Asia +2023-02-02,94495,4352,"[""Wireless Mouse""]",1143.73,"{""promo"": ""22%""}",176189,0,Asia +2024-01-20,94496,7286,"[""Charger"", ""Laptop""]",1578.66,{},79503,0,North America +2023-01-17,94497,8100,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4354.97,{},73724,0,South America +2023-06-25,94498,2825,"[""Tablet"", ""Wireless Mouse""]",567.95,{},168447,1,Africa +2023-04-13,94499,6744,"[""Keyboard""]",4831.89,"{""seasonal"": ""14%""}",104961,0,Asia +2024-05-04,94500,1753,"[""Phone"", ""Laptop"", ""Charger""]",132.6,"{""promo"": ""9%""}",14772,0,North America +2024-08-13,94501,4334,"[""Headphones"", ""Tablet"", ""Charger""]",2036.22,{},261104,0,North America +2024-07-29,94502,9062,"[""Phone"", ""Laptop"", ""Keyboard""]",2187.37,{},180912,1,Europe +2023-12-03,94503,7226,"[""Monitor"", ""Laptop"", ""Keyboard""]",1263.99,{},246289,0,Africa +2023-05-25,94504,3935,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2256.13,{},296126,1,Africa +2024-02-16,94505,8593,"[""Phone""]",3275.92,"{""promo"": ""5%""}",92120,0,Europe +2024-04-30,94506,740,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4146.23,"{""loyalty"": ""17%""}",252050,0,South America +2024-07-01,94507,8763,"[""Phone"", ""Laptop"", ""Charger""]",2877.05,"{""loyalty"": ""23%""}",152771,1,Europe +2024-10-21,94508,236,"[""Phone"", ""Laptop"", ""Headphones""]",1152.57,"{""loyalty"": ""11%""}",123686,1,Africa +2023-02-06,94509,9685,"[""Monitor""]",767.16,{},210637,0,Asia +2023-02-24,94510,2771,"[""Headphones"", ""Wireless Mouse""]",480.25,"{""promo"": ""12%""}",144340,1,South America +2024-04-30,94511,2099,"[""Phone"", ""Tablet""]",2532.95,"{""loyalty"": ""6%""}",83340,1,South America +2024-05-16,94512,564,"[""Phone"", ""Headphones""]",2085.48,"{"""": ""12%""}",79525,1,Europe +2023-02-24,94513,3588,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",1383.79,"{""seasonal"": ""6%""}",50571,0,Africa +2024-09-20,94514,3655,"[""Monitor"", ""Charger""]",54.08,{},156157,1,North America +2024-06-07,94515,1134,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",78.72,"{""loyalty"": ""8%""}",298199,1,South America +2023-11-01,94516,6528,"[""Phone"", ""Headphones""]",3977.53,{},182681,1,Asia +2023-01-29,94517,3549,"[""Phone"", ""Headphones""]",4665.23,{},78208,0,Europe +2024-10-27,94518,8818,"[""Laptop""]",3723.68,{},182712,1,South America +2023-12-01,94519,1216,"[""Headphones"", ""Laptop"", ""Monitor""]",218.8,{},4140,1,North America +2024-11-17,94520,2806,"[""Headphones""]",2989.64,{},57345,1,Africa +2024-06-06,94521,5208,"[""Monitor"", ""Laptop"", ""Keyboard""]",2603.26,{},84005,1,South America +2024-09-27,94522,268,"[""Monitor""]",4994.12,{},276852,0,South America +2023-04-25,94523,6765,"[""Phone"", ""Tablet""]",2475.78,{},31116,1,Asia +2023-05-08,94524,4890,"[""Headphones""]",551.82,{},12353,0,North America +2023-12-29,94525,7373,"[""Tablet"", ""Wireless Mouse""]",2186.72,{},40198,1,Africa +2023-06-25,94526,9298,"[""Monitor"", ""Charger"", ""Keyboard""]",601.23,{},38304,0,Asia +2024-08-29,94527,2924,"[""Wireless Mouse""]",4725.46,{},267751,1,North America +2023-12-30,94528,3188,"[""Laptop"", ""Headphones"", ""Tablet""]",860.35,"{""promo"": ""22%""}",128465,1,Africa +2023-01-18,94529,7063,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2676.02,{},176626,0,Asia +2024-11-27,94530,904,"[""Tablet"", ""Phone"", ""Keyboard""]",3731.93,{},132553,0,Europe +2024-06-27,94531,5718,"[""Monitor"", ""Tablet"", ""Keyboard""]",239.09,"{""seasonal"": ""20%""}",171356,0,Europe +2023-01-23,94532,1350,"[""Charger""]",3418.17,"{""loyalty"": ""24%""}",217047,1,Africa +2024-12-26,94533,8670,"[""Tablet"", ""Monitor"", ""Keyboard""]",2763.65,{},220423,1,Asia +2024-09-23,94534,9630,"[""Tablet""]",3509.34,"{"""": ""18%""}",161210,0,Asia +2023-05-16,94535,6788,"[""Keyboard""]",3643.1,"{""seasonal"": ""18%""}",294150,0,Asia +2023-12-27,94536,3106,"[""Phone"", ""Charger"", ""Laptop""]",4711.87,"{""promo"": ""18%""}",192870,0,Asia +2023-04-09,94537,2784,"[""Laptop"", ""Keyboard""]",4543.49,{},205772,0,Africa +2024-05-10,94538,3818,"[""Headphones"", ""Monitor""]",2439.7,"{""promo"": ""19%""}",237904,1,Africa +2023-04-01,94539,6128,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",816.54,"{""loyalty"": ""29%""}",32880,1,North America +2023-05-23,94540,5849,"[""Headphones"", ""Monitor"", ""Keyboard""]",3378.71,{},236062,0,Asia +2024-07-11,94541,7816,"[""Headphones"", ""Charger""]",4904.69,"{"""": ""21%""}",241219,1,Europe +2023-03-08,94542,5677,"[""Laptop""]",1115.12,"{"""": ""20%""}",223572,0,North America +2024-10-17,94543,6744,"[""Laptop""]",257.69,{},167188,1,Asia +2023-06-20,94544,6007,"[""Headphones"", ""Tablet"", ""Phone""]",1249.76,{},46279,1,Africa +2023-03-06,94545,5969,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",4561.11,"{""seasonal"": ""5%""}",182288,1,South America +2024-12-20,94546,3490,"[""Tablet""]",3748.22,{},243527,0,Europe +2024-12-27,94547,2904,"[""Keyboard"", ""Laptop"", ""Phone""]",4576.59,{},31251,0,South America +2024-05-30,94548,1564,"[""Keyboard""]",4377.64,{},154884,1,Africa +2023-08-16,94549,4887,"[""Charger"", ""Monitor""]",2646.6,"{"""": ""16%""}",44388,1,Asia +2024-11-21,94550,4751,"[""Keyboard"", ""Phone""]",3923.21,{},271759,0,Asia +2023-07-26,94551,3768,"[""Charger""]",620.72,"{""seasonal"": ""15%""}",136103,1,South America +2024-07-31,94552,321,"[""Headphones"", ""Charger"", ""Monitor""]",995.0,{},81901,0,South America +2023-11-22,94553,2711,"[""Wireless Mouse""]",2168.0,"{""promo"": ""20%""}",280959,0,Asia +2023-04-07,94554,8005,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4531.63,"{""loyalty"": ""10%""}",19238,1,Europe +2023-10-08,94555,751,"[""Monitor"", ""Laptop""]",1561.53,{},83029,0,Europe +2024-02-17,94556,5250,"[""Laptop"", ""Headphones""]",352.47,"{""promo"": ""22%""}",87754,1,Europe +2024-06-02,94557,465,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",1299.45,{},185850,0,Europe +2024-09-04,94558,4704,"[""Monitor"", ""Laptop""]",1268.96,{},36803,1,Asia +2024-03-16,94559,8562,"[""Wireless Mouse"", ""Phone""]",437.32,{},146287,1,South America +2023-05-16,94560,3009,"[""Wireless Mouse"", ""Keyboard""]",3004.77,{},98688,0,Africa +2024-05-11,94561,3894,"[""Monitor"", ""Tablet"", ""Charger""]",4201.71,"{""promo"": ""8%""}",289920,1,South America +2023-04-06,94562,38,"[""Tablet"", ""Charger""]",1991.04,"{""seasonal"": ""30%""}",244724,1,Africa +2023-08-13,94563,7462,"[""Tablet""]",2621.99,{},83187,1,Africa +2023-02-11,94564,9685,"[""Headphones"", ""Charger"", ""Laptop""]",4386.77,"{""loyalty"": ""13%""}",135741,1,Africa +2024-12-12,94565,6374,"[""Phone"", ""Charger"", ""Wireless Mouse""]",2974.14,"{""seasonal"": ""18%""}",175269,1,South America +2024-08-07,94566,2190,"[""Tablet"", ""Keyboard"", ""Monitor""]",2750.9,{},191533,0,Asia +2024-06-27,94567,8046,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1427.99,{},24513,1,Africa +2024-11-18,94568,657,"[""Wireless Mouse""]",2721.43,"{""loyalty"": ""13%""}",164477,1,Europe +2023-09-22,94569,2445,"[""Laptop"", ""Charger"", ""Keyboard""]",404.58,"{""loyalty"": ""19%""}",60568,1,Europe +2023-08-23,94570,835,"[""Tablet""]",4770.11,{},137197,1,North America +2024-12-11,94571,9188,"[""Tablet"", ""Headphones""]",4900.2,"{""promo"": ""30%""}",249749,0,Europe +2024-12-07,94572,9471,"[""Charger"", ""Headphones"", ""Keyboard""]",80.61,"{""loyalty"": ""23%""}",206127,0,Asia +2023-11-20,94573,4424,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4292.9,"{""loyalty"": ""22%""}",193731,1,North America +2024-09-15,94574,6958,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4369.73,{},159396,0,Asia +2024-04-14,94575,536,"[""Wireless Mouse""]",305.44,{},196125,0,Asia +2023-03-03,94576,8681,"[""Phone"", ""Laptop""]",1547.37,"{""seasonal"": ""27%""}",135119,1,North America +2024-11-06,94577,5141,"[""Monitor"", ""Tablet""]",3424.37,"{""seasonal"": ""11%""}",220135,1,Asia +2024-10-31,94578,1307,"[""Wireless Mouse"", ""Phone""]",3669.25,"{""loyalty"": ""30%""}",228941,1,South America +2024-05-16,94579,5918,"[""Keyboard"", ""Charger""]",3112.51,{},139647,0,South America +2024-10-26,94580,5383,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3898.55,{},209102,0,Europe +2024-02-07,94581,2472,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",1610.37,"{""seasonal"": ""9%""}",147361,1,Europe +2023-01-28,94582,1044,"[""Monitor""]",3752.66,"{"""": ""16%""}",44626,0,Asia +2023-09-22,94583,2198,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1172.28,"{""seasonal"": ""11%""}",92175,0,Asia +2023-03-26,94584,6703,"[""Headphones"", ""Keyboard""]",2009.1,"{""seasonal"": ""11%""}",70710,0,Europe +2023-10-07,94585,1395,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",4607.09,"{"""": ""30%""}",255030,0,North America +2024-08-07,94586,6370,"[""Monitor"", ""Phone""]",730.73,{},174003,1,Asia +2024-10-05,94587,4120,"[""Tablet""]",550.91,"{""seasonal"": ""10%""}",245211,1,Europe +2023-09-06,94588,9428,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1536.05,{},126140,1,South America +2023-02-17,94589,4403,"[""Laptop"", ""Monitor"", ""Charger""]",575.98,"{""seasonal"": ""9%""}",297658,0,North America +2024-11-05,94590,5671,"[""Laptop""]",3704.74,{},80109,1,Africa +2024-08-13,94591,9331,"[""Monitor"", ""Charger""]",1393.14,{},5719,1,Africa +2023-11-16,94592,4449,"[""Monitor"", ""Tablet""]",1845.22,{},270900,0,Asia +2023-11-01,94593,2409,"[""Laptop""]",2287.39,"{""loyalty"": ""7%""}",113499,1,Europe +2023-09-13,94594,3542,"[""Charger"", ""Tablet"", ""Phone""]",676.56,"{"""": ""24%""}",238567,1,North America +2023-08-13,94595,4548,"[""Wireless Mouse"", ""Tablet""]",367.12,{},296360,1,Asia +2024-10-03,94596,7139,"[""Charger"", ""Monitor"", ""Phone""]",4082.64,{},85142,0,Europe +2024-11-20,94597,6508,"[""Tablet""]",3730.29,"{""promo"": ""5%""}",177465,0,Asia +2023-02-20,94598,6884,"[""Charger"", ""Phone""]",4508.45,"{""seasonal"": ""22%""}",161299,0,North America +2024-04-03,94599,3115,"[""Charger""]",1040.54,"{"""": ""25%""}",187988,0,Africa +2024-08-23,94600,9454,"[""Laptop""]",1600.49,"{""seasonal"": ""23%""}",262290,1,South America +2023-04-03,94601,6699,"[""Monitor""]",475.76,{},215078,0,North America +2024-12-18,94602,6961,"[""Keyboard""]",4059.42,{},299318,1,Europe +2024-04-19,94603,2317,"[""Monitor"", ""Phone"", ""Charger""]",311.84,{},294823,0,South America +2024-11-18,94604,9798,"[""Monitor"", ""Tablet"", ""Keyboard""]",447.95,{},286525,0,North America +2024-12-14,94605,4521,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3554.26,{},12849,1,Europe +2023-12-22,94606,8785,"[""Laptop""]",2496.41,"{""loyalty"": ""8%""}",283429,0,North America +2023-04-28,94607,1538,"[""Headphones"", ""Phone""]",2789.08,"{"""": ""23%""}",220642,0,Europe +2023-08-17,94608,2840,"[""Charger"", ""Laptop""]",4556.89,"{""loyalty"": ""25%""}",112836,1,North America +2023-12-16,94609,567,"[""Keyboard"", ""Monitor""]",1838.23,"{""promo"": ""18%""}",145211,1,South America +2024-07-06,94610,1780,"[""Laptop"", ""Keyboard"", ""Tablet""]",1474.72,{},291111,0,Europe +2024-12-30,94611,9726,"[""Wireless Mouse""]",2663.08,{},101879,0,Africa +2023-04-20,94612,3572,"[""Headphones"", ""Laptop""]",1442.28,"{""promo"": ""5%""}",48414,1,Europe +2024-10-01,94613,7047,"[""Laptop"", ""Charger"", ""Monitor""]",4117.18,"{""promo"": ""29%""}",277247,0,South America +2023-05-13,94614,2782,"[""Keyboard"", ""Tablet""]",2893.67,{},202715,1,Asia +2023-02-16,94615,8613,"[""Laptop""]",4253.2,"{""seasonal"": ""6%""}",270835,1,North America +2024-09-08,94616,9955,"[""Charger"", ""Keyboard""]",1648.23,"{"""": ""5%""}",222590,0,Africa +2023-10-12,94617,8766,"[""Monitor""]",817.06,"{""promo"": ""16%""}",63444,1,Europe +2023-03-23,94618,5312,"[""Charger"", ""Headphones"", ""Laptop""]",4928.04,{},260065,1,Africa +2024-04-23,94619,4634,"[""Keyboard""]",2605.2,{},49943,1,South America +2023-05-08,94620,25,"[""Keyboard"", ""Tablet"", ""Monitor""]",2398.84,"{""loyalty"": ""6%""}",49434,0,North America +2024-11-07,94621,4860,"[""Phone""]",800.72,{},273810,0,South America +2023-07-25,94622,8277,"[""Monitor""]",952.31,{},29977,0,South America +2023-04-14,94623,1938,"[""Tablet""]",722.51,{},49309,1,North America +2023-06-26,94624,8553,"[""Laptop"", ""Phone""]",3241.07,"{""loyalty"": ""15%""}",166775,0,Asia +2024-07-02,94625,228,"[""Tablet""]",822.95,"{""loyalty"": ""19%""}",289250,0,Asia +2023-07-26,94626,651,"[""Tablet"", ""Phone"", ""Charger""]",4204.1,"{""loyalty"": ""8%""}",154507,1,Asia +2024-09-21,94627,7582,"[""Charger""]",3215.8,"{"""": ""6%""}",249499,1,South America +2024-01-08,94628,3044,"[""Charger""]",1562.22,"{"""": ""22%""}",78607,1,Europe +2023-06-08,94629,5970,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1952.96,"{""promo"": ""22%""}",104772,1,South America +2024-08-01,94630,7249,"[""Laptop""]",170.49,"{""loyalty"": ""7%""}",208435,1,Europe +2023-11-15,94631,2341,"[""Laptop"", ""Keyboard"", ""Phone""]",4665.76,"{"""": ""9%""}",263375,1,Asia +2024-04-11,94632,1310,"[""Laptop"", ""Wireless Mouse""]",300.94,"{""seasonal"": ""8%""}",136829,0,Europe +2023-04-25,94633,235,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1819.93,{},68724,1,North America +2023-04-02,94634,6889,"[""Monitor""]",2970.96,{},273903,1,Africa +2023-05-27,94635,6321,"[""Phone"", ""Monitor""]",759.76,{},217190,0,Africa +2023-03-27,94636,7860,"[""Wireless Mouse""]",1630.7,"{""loyalty"": ""15%""}",189276,1,Europe +2023-12-09,94637,6299,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",2342.18,{},111861,1,Europe +2024-10-20,94638,1333,"[""Keyboard"", ""Phone"", ""Charger""]",3989.05,{},287636,1,Africa +2023-02-07,94639,8413,"[""Monitor"", ""Laptop""]",1922.81,"{""seasonal"": ""7%""}",100067,0,Europe +2024-01-07,94640,9262,"[""Monitor""]",3429.25,{},94082,0,Europe +2024-09-16,94641,8738,"[""Wireless Mouse""]",191.26,{},159168,0,Africa +2023-11-18,94642,6717,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",2972.26,"{""seasonal"": ""9%""}",275227,1,Africa +2023-06-23,94643,6543,"[""Keyboard"", ""Headphones""]",1505.69,"{"""": ""30%""}",58588,0,Africa +2023-08-13,94644,8160,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3859.32,{},123498,1,Africa +2023-07-10,94645,8253,"[""Keyboard"", ""Wireless Mouse""]",4353.99,{},60407,0,North America +2024-09-23,94646,3144,"[""Headphones"", ""Tablet"", ""Phone""]",244.06,{},9187,1,South America +2023-06-09,94647,9841,"[""Tablet""]",4139.29,{},275369,1,Europe +2024-10-04,94648,5175,"[""Wireless Mouse"", ""Tablet""]",3690.53,{},211240,0,South America +2024-02-28,94649,8514,"[""Wireless Mouse""]",3665.98,"{"""": ""11%""}",287318,1,Europe +2024-08-14,94650,9889,"[""Keyboard"", ""Tablet""]",3242.74,{},171488,1,South America +2023-03-09,94651,8064,"[""Keyboard"", ""Charger""]",1031.5,"{""promo"": ""27%""}",25613,1,South America +2024-12-18,94652,9315,"[""Keyboard"", ""Headphones"", ""Laptop""]",2169.4,"{"""": ""10%""}",273085,1,Asia +2024-11-10,94653,4659,"[""Phone"", ""Wireless Mouse""]",2194.09,"{""promo"": ""7%""}",171132,1,Europe +2023-08-28,94654,2970,"[""Monitor""]",4737.41,{},172236,0,Asia +2024-02-18,94655,7351,"[""Monitor"", ""Laptop""]",1643.55,{},153050,0,Europe +2024-04-17,94656,263,"[""Tablet"", ""Laptop"", ""Phone""]",2515.6,{},117616,0,South America +2023-08-14,94657,207,"[""Charger"", ""Tablet""]",980.34,"{"""": ""27%""}",104365,0,North America +2024-11-13,94658,1795,"[""Tablet"", ""Laptop"", ""Keyboard""]",1865.28,{},276789,0,Africa +2023-09-20,94659,603,"[""Headphones""]",4173.06,"{"""": ""7%""}",5479,0,Europe +2024-03-09,94660,4903,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1424.02,"{""loyalty"": ""11%""}",167548,0,North America +2023-12-30,94661,7842,"[""Monitor"", ""Laptop"", ""Tablet""]",2831.97,"{"""": ""11%""}",218933,1,Africa +2024-10-28,94662,7965,"[""Monitor"", ""Keyboard""]",2591.14,"{""promo"": ""14%""}",95198,1,Europe +2024-01-06,94663,6817,"[""Headphones"", ""Phone"", ""Monitor""]",204.35,"{"""": ""25%""}",55276,1,Asia +2023-12-19,94664,2679,"[""Monitor"", ""Tablet""]",1623.26,"{""loyalty"": ""22%""}",271516,0,Asia +2023-09-15,94665,9605,"[""Tablet""]",2256.97,"{""seasonal"": ""16%""}",244235,0,North America +2024-10-02,94666,7078,"[""Tablet""]",2652.12,{},195301,0,Africa +2024-09-29,94667,6060,"[""Phone"", ""Laptop""]",1569.01,"{"""": ""30%""}",198247,1,South America +2023-11-26,94668,6881,"[""Phone"", ""Charger""]",1035.59,{},256057,1,Africa +2023-11-28,94669,5997,"[""Headphones"", ""Tablet"", ""Charger""]",3427.6,{},137272,1,North America +2024-09-14,94670,7022,"[""Phone""]",3400.99,{},7999,0,North America +2024-02-18,94671,8300,"[""Phone"", ""Monitor""]",4878.74,"{""loyalty"": ""5%""}",294364,0,South America +2023-12-14,94672,3530,"[""Phone""]",1959.06,"{""loyalty"": ""18%""}",105226,0,Europe +2024-01-27,94673,2287,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3791.45,"{""loyalty"": ""29%""}",89392,1,South America +2023-06-18,94674,3649,"[""Monitor"", ""Headphones""]",3049.47,{},59023,1,South America +2024-02-08,94675,1479,"[""Headphones"", ""Keyboard"", ""Monitor""]",2773.86,"{"""": ""21%""}",23324,1,North America +2024-08-17,94676,3702,"[""Phone"", ""Tablet"", ""Monitor""]",2003.51,"{""loyalty"": ""30%""}",118023,0,South America +2023-02-18,94677,2948,"[""Keyboard""]",1521.64,"{"""": ""13%""}",40802,1,Europe +2024-08-05,94678,9673,"[""Phone"", ""Keyboard"", ""Headphones""]",1001.81,{},222064,1,South America +2024-03-25,94679,3007,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2442.94,"{"""": ""8%""}",174732,1,South America +2023-09-15,94680,5151,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",518.94,{},192108,0,South America +2023-03-12,94681,3705,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",2675.6,"{""promo"": ""19%""}",268714,0,Africa +2024-09-24,94682,5749,"[""Phone""]",312.55,"{"""": ""22%""}",75836,1,South America +2023-11-01,94683,6625,"[""Charger"", ""Laptop""]",3075.21,"{"""": ""17%""}",205793,0,Africa +2023-10-27,94684,9296,"[""Headphones""]",3109.47,{},185535,1,Africa +2023-09-09,94685,6672,"[""Tablet"", ""Phone"", ""Charger""]",535.86,"{""loyalty"": ""14%""}",207591,1,North America +2024-03-10,94686,7701,"[""Keyboard""]",1033.6,"{""promo"": ""22%""}",258687,1,Europe +2024-07-19,94687,9032,"[""Wireless Mouse"", ""Phone""]",371.45,{},124312,0,Europe +2024-10-13,94688,9227,"[""Tablet""]",2173.7,"{"""": ""9%""}",229346,0,North America +2024-12-27,94689,1317,"[""Keyboard"", ""Wireless Mouse""]",4517.11,"{"""": ""27%""}",37350,1,South America +2024-06-01,94690,20,"[""Phone""]",1313.55,"{"""": ""6%""}",205331,1,Europe +2024-12-11,94691,1390,"[""Laptop"", ""Tablet"", ""Monitor""]",52.98,{},67312,1,South America +2024-10-31,94692,6969,"[""Wireless Mouse""]",1563.59,{},183745,1,Asia +2024-08-30,94693,766,"[""Wireless Mouse"", ""Tablet""]",2460.54,{},65072,0,Africa +2024-11-11,94694,2595,"[""Laptop"", ""Wireless Mouse""]",172.25,"{"""": ""28%""}",161886,0,North America +2024-06-24,94695,4117,"[""Laptop""]",4509.45,"{""promo"": ""26%""}",46963,1,Europe +2024-03-04,94696,7947,"[""Laptop"", ""Monitor""]",3939.75,"{""promo"": ""10%""}",147522,1,South America +2023-10-13,94697,2070,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",215.0,"{""seasonal"": ""21%""}",143037,1,South America +2023-05-27,94698,9907,"[""Charger"", ""Phone"", ""Laptop""]",3413.77,"{""loyalty"": ""18%""}",171664,0,North America +2023-05-05,94699,2411,"[""Tablet"", ""Monitor"", ""Keyboard""]",2140.07,{},139579,0,North America +2024-03-01,94700,4870,"[""Laptop""]",368.17,"{""loyalty"": ""6%""}",270081,0,Europe +2024-05-09,94701,9492,"[""Headphones""]",4676.15,{},75701,1,Europe +2024-07-25,94702,8418,"[""Tablet"", ""Headphones"", ""Phone""]",3391.43,"{"""": ""26%""}",171235,1,Asia +2023-08-01,94703,244,"[""Phone"", ""Laptop"", ""Charger""]",417.99,"{"""": ""8%""}",169056,0,Europe +2023-04-22,94704,1162,"[""Monitor"", ""Keyboard"", ""Headphones""]",269.78,"{"""": ""21%""}",77102,1,Europe +2023-12-22,94705,759,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1507.41,{},226064,1,Asia +2024-03-03,94706,2830,"[""Charger""]",878.37,"{""seasonal"": ""14%""}",211362,1,North America +2024-10-12,94707,1528,"[""Tablet"", ""Laptop"", ""Charger""]",3498.9,{},80660,1,Europe +2024-10-17,94708,1624,"[""Keyboard"", ""Headphones""]",2645.05,"{""seasonal"": ""24%""}",194579,0,Asia +2023-07-10,94709,5588,"[""Phone"", ""Laptop"", ""Keyboard""]",3789.39,{},129719,1,Africa +2023-08-30,94710,442,"[""Laptop"", ""Headphones""]",1547.78,"{"""": ""24%""}",62972,1,Europe +2024-10-20,94711,5563,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",352.29,"{""seasonal"": ""22%""}",126136,0,Europe +2024-07-10,94712,2606,"[""Laptop""]",2188.76,{},120926,0,Africa +2024-01-06,94713,2796,"[""Monitor""]",3165.47,"{""promo"": ""24%""}",274515,1,South America +2024-04-07,94714,8802,"[""Headphones"", ""Keyboard""]",1227.59,"{""loyalty"": ""10%""}",172722,0,Europe +2024-09-23,94715,7132,"[""Phone""]",237.41,{},103299,0,Europe +2023-09-02,94716,9153,"[""Keyboard"", ""Charger""]",4052.12,{},57459,1,Europe +2023-08-29,94717,220,"[""Tablet""]",2041.45,"{""loyalty"": ""12%""}",155668,1,South America +2024-12-07,94718,349,"[""Charger""]",2057.79,"{""promo"": ""27%""}",158613,0,North America +2023-12-15,94719,4380,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2138.39,{},218663,0,North America +2023-01-29,94720,553,"[""Charger""]",2206.86,{},99396,0,Europe +2024-12-20,94721,9161,"[""Monitor"", ""Headphones""]",964.87,{},104837,0,Asia +2023-03-24,94722,574,"[""Tablet"", ""Laptop"", ""Monitor""]",354.43,"{"""": ""15%""}",248608,1,Africa +2023-12-15,94723,5038,"[""Laptop""]",817.0,"{"""": ""27%""}",188304,0,South America +2024-05-23,94724,3834,"[""Monitor"", ""Charger"", ""Laptop""]",1816.91,"{"""": ""7%""}",253630,1,North America +2024-06-19,94725,1986,"[""Charger""]",3517.04,{},79116,1,South America +2024-10-28,94726,9140,"[""Laptop"", ""Phone"", ""Keyboard""]",2729.47,{},15682,1,Europe +2023-07-17,94727,3820,"[""Headphones"", ""Charger"", ""Phone""]",2656.62,{},120420,0,Africa +2024-05-20,94728,3412,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2163.09,{},198040,0,North America +2024-10-01,94729,1794,"[""Charger""]",3423.76,{},157590,1,North America +2023-07-29,94730,1389,"[""Keyboard""]",2618.99,"{""seasonal"": ""11%""}",73207,1,Europe +2023-09-01,94731,6359,"[""Charger""]",1809.3,{},115938,1,Europe +2024-01-14,94732,8531,"[""Laptop"", ""Monitor"", ""Keyboard""]",3546.01,"{""loyalty"": ""8%""}",147534,0,Africa +2023-12-17,94733,3314,"[""Phone""]",2828.94,{},135115,0,South America +2024-12-05,94734,8212,"[""Charger"", ""Laptop"", ""Tablet""]",4497.94,"{""loyalty"": ""16%""}",221461,0,South America +2024-04-01,94735,9294,"[""Monitor""]",4420.4,{},153969,1,North America +2023-03-26,94736,1145,"[""Monitor""]",2354.94,{},81648,0,Europe +2024-04-14,94737,1110,"[""Laptop""]",1704.02,"{""loyalty"": ""23%""}",103501,0,South America +2024-06-25,94738,9816,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1571.16,"{""loyalty"": ""10%""}",143721,1,Asia +2023-06-18,94739,1610,"[""Wireless Mouse"", ""Monitor""]",1159.26,{},138525,0,South America +2024-03-05,94740,1402,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1279.54,"{""loyalty"": ""16%""}",148601,0,Africa +2024-04-24,94741,1757,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2563.62,"{""seasonal"": ""24%""}",185828,1,Asia +2023-03-11,94742,6586,"[""Headphones""]",1225.85,"{""seasonal"": ""29%""}",239195,1,North America +2023-06-22,94743,8223,"[""Tablet""]",408.02,{},12027,0,Africa +2024-06-10,94744,5328,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3725.67,{},208419,0,North America +2024-03-09,94745,7858,"[""Tablet"", ""Keyboard"", ""Monitor""]",3229.03,"{""loyalty"": ""21%""}",155017,1,South America +2024-05-27,94746,6123,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4790.79,{},135819,0,Africa +2023-07-24,94747,5888,"[""Wireless Mouse""]",4638.82,{},26643,1,South America +2024-05-28,94748,4230,"[""Keyboard"", ""Laptop""]",2647.56,"{"""": ""25%""}",182109,1,South America +2023-06-15,94749,1566,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2387.16,"{""seasonal"": ""13%""}",286840,1,Europe +2023-02-19,94750,6376,"[""Laptop""]",4393.61,"{""promo"": ""11%""}",1574,0,Europe +2023-04-06,94751,6598,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",771.34,"{""promo"": ""13%""}",213579,0,Africa +2023-10-13,94752,2018,"[""Phone"", ""Keyboard""]",4583.03,"{""loyalty"": ""27%""}",131469,0,Europe +2023-05-13,94753,6617,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",2682.59,"{""promo"": ""11%""}",271140,0,South America +2023-11-22,94754,3627,"[""Keyboard"", ""Laptop""]",1526.46,{},268272,1,South America +2023-02-10,94755,6327,"[""Charger""]",2681.37,"{"""": ""8%""}",285785,1,Europe +2024-05-09,94756,5904,"[""Charger""]",3905.95,{},291132,1,Africa +2023-10-21,94757,1279,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",947.33,"{""loyalty"": ""26%""}",164277,0,Europe +2024-03-05,94758,5566,"[""Tablet"", ""Headphones"", ""Laptop""]",4164.24,{},203451,0,South America +2023-12-27,94759,4694,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4371.18,"{""promo"": ""27%""}",298803,0,Africa +2023-03-06,94760,709,"[""Monitor""]",4489.49,"{""loyalty"": ""15%""}",209539,0,South America +2024-06-23,94761,551,"[""Wireless Mouse""]",4334.96,{},31159,1,Asia +2023-11-12,94762,7160,"[""Headphones"", ""Laptop"", ""Keyboard""]",335.11,"{""loyalty"": ""28%""}",44530,1,Europe +2024-03-15,94763,6113,"[""Charger""]",1844.37,"{""promo"": ""7%""}",134196,0,South America +2024-08-25,94764,212,"[""Laptop"", ""Tablet"", ""Phone""]",1013.13,{},277538,0,South America +2024-09-27,94765,2815,"[""Wireless Mouse""]",3910.31,"{""seasonal"": ""17%""}",154792,1,South America +2024-06-21,94766,2889,"[""Laptop"", ""Headphones""]",1778.66,"{""seasonal"": ""28%""}",81290,0,Africa +2024-10-29,94767,2904,"[""Headphones"", ""Laptop"", ""Charger""]",2333.85,{},97803,1,South America +2023-04-27,94768,904,"[""Keyboard"", ""Laptop""]",1328.03,"{"""": ""19%""}",156803,0,Africa +2024-05-25,94769,2232,"[""Wireless Mouse"", ""Phone""]",2755.73,"{""loyalty"": ""22%""}",283698,0,Asia +2023-11-04,94770,7159,"[""Charger""]",2231.21,{},209913,1,Europe +2023-02-05,94771,4275,"[""Wireless Mouse""]",4363.17,"{""seasonal"": ""25%""}",195645,1,Europe +2024-09-02,94772,812,"[""Keyboard"", ""Headphones"", ""Laptop""]",4553.29,"{"""": ""27%""}",67786,0,Africa +2024-03-05,94773,1588,"[""Phone""]",2849.66,"{""seasonal"": ""23%""}",29823,0,North America +2024-06-10,94774,415,"[""Charger"", ""Monitor""]",2266.47,{},192446,0,Europe +2024-08-20,94775,417,"[""Tablet""]",1372.32,{},46954,0,South America +2024-06-11,94776,9458,"[""Charger"", ""Monitor""]",1922.58,{},56813,0,Europe +2024-06-19,94777,4030,"[""Phone""]",1555.59,{},292658,0,South America +2024-01-26,94778,2129,"[""Headphones"", ""Monitor""]",1093.54,{},162834,1,Asia +2023-07-27,94779,6689,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1388.18,"{""loyalty"": ""18%""}",12704,0,Africa +2024-04-26,94780,6009,"[""Tablet""]",1154.89,"{""seasonal"": ""24%""}",112403,1,Asia +2023-02-16,94781,4189,"[""Charger""]",4776.96,{},266246,1,South America +2023-04-20,94782,3520,"[""Keyboard""]",4299.44,{},280515,0,South America +2023-02-01,94783,6988,"[""Wireless Mouse"", ""Headphones""]",2242.69,{},198129,0,Europe +2024-08-11,94784,1962,"[""Headphones""]",4625.07,{},89130,0,South America +2023-09-11,94785,8633,"[""Keyboard"", ""Monitor"", ""Headphones""]",3117.61,{},296260,0,Asia +2023-11-04,94786,84,"[""Charger"", ""Phone""]",1726.74,"{""loyalty"": ""22%""}",26729,1,Europe +2023-02-11,94787,7027,"[""Keyboard"", ""Monitor"", ""Phone""]",4928.71,"{""loyalty"": ""24%""}",264370,0,Europe +2024-01-24,94788,8481,"[""Charger""]",2912.92,{},77758,1,North America +2023-11-19,94789,214,"[""Tablet"", ""Headphones""]",3835.31,{},42131,0,South America +2024-01-05,94790,5140,"[""Laptop"", ""Tablet"", ""Phone""]",1454.36,"{""promo"": ""27%""}",220862,0,South America +2024-12-04,94791,2011,"[""Tablet"", ""Phone"", ""Headphones""]",638.06,{},11695,1,Asia +2024-04-25,94792,5792,"[""Charger"", ""Keyboard"", ""Phone""]",413.61,{},137962,1,Europe +2023-10-09,94793,9825,"[""Laptop""]",4914.04,{},169643,0,Africa +2024-10-10,94794,4032,"[""Phone"", ""Wireless Mouse""]",2945.66,{},136722,1,Africa +2023-09-13,94795,6949,"[""Monitor""]",3783.47,"{""seasonal"": ""22%""}",260950,0,South America +2023-05-15,94796,6372,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1383.17,"{""promo"": ""26%""}",22824,1,Europe +2023-03-10,94797,6175,"[""Tablet""]",1956.08,"{""seasonal"": ""8%""}",222010,1,North America +2024-03-21,94798,2844,"[""Monitor""]",4297.51,{},244906,0,Asia +2024-06-10,94799,6496,"[""Laptop""]",308.49,{},141384,0,Africa +2024-09-21,94800,5204,"[""Monitor"", ""Keyboard"", ""Charger""]",4696.28,{},99879,0,Asia +2023-10-13,94801,8200,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",103.72,"{""loyalty"": ""13%""}",133220,0,Asia +2024-02-15,94802,548,"[""Headphones""]",3624.49,"{""seasonal"": ""11%""}",104388,1,Africa +2023-09-15,94803,9225,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",2009.59,{},277327,1,North America +2024-09-02,94804,1038,"[""Charger""]",143.3,{},3692,0,North America +2023-01-29,94805,7053,"[""Laptop""]",4710.21,"{""promo"": ""5%""}",99184,0,Asia +2024-10-16,94806,1810,"[""Keyboard"", ""Tablet"", ""Headphones""]",2849.57,"{""promo"": ""11%""}",94127,0,North America +2023-07-03,94807,2685,"[""Phone"", ""Charger""]",585.22,{},223018,0,South America +2023-07-15,94808,7695,"[""Wireless Mouse"", ""Tablet""]",79.32,"{""loyalty"": ""28%""}",168351,1,Europe +2023-03-28,94809,6427,"[""Laptop"", ""Phone""]",2047.67,{},101824,0,North America +2023-07-06,94810,1076,"[""Laptop"", ""Phone"", ""Monitor""]",3507.63,"{"""": ""18%""}",277647,1,North America +2023-03-22,94811,3504,"[""Charger"", ""Wireless Mouse""]",3493.22,{},183775,0,North America +2023-06-26,94812,3446,"[""Charger"", ""Headphones"", ""Laptop""]",3284.19,"{""loyalty"": ""26%""}",78010,0,Asia +2023-11-07,94813,9129,"[""Wireless Mouse""]",714.55,"{"""": ""16%""}",117803,0,Africa +2024-04-01,94814,5655,"[""Keyboard"", ""Charger"", ""Laptop""]",3423.96,"{"""": ""14%""}",147620,1,Africa +2023-08-08,94815,2410,"[""Keyboard"", ""Tablet""]",4436.75,{},215043,0,Asia +2024-01-29,94816,6680,"[""Charger""]",2543.49,{},236519,0,Asia +2024-10-15,94817,3303,"[""Phone"", ""Monitor""]",1332.93,"{"""": ""26%""}",67000,0,Africa +2023-01-17,94818,5969,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",4814.55,{},269337,0,North America +2023-03-15,94819,3266,"[""Charger"", ""Phone""]",4122.69,{},104537,1,North America +2023-01-31,94820,5766,"[""Headphones"", ""Charger"", ""Phone""]",2080.66,"{""seasonal"": ""21%""}",80714,0,Europe +2024-04-26,94821,6092,"[""Phone""]",4473.48,"{""seasonal"": ""22%""}",39655,1,South America +2023-04-25,94822,391,"[""Headphones""]",1129.46,{},202958,1,Europe +2023-10-19,94823,710,"[""Keyboard""]",3159.54,{},236200,1,South America +2024-06-29,94824,1272,"[""Keyboard"", ""Laptop""]",1961.92,{},174966,0,South America +2024-09-20,94825,9131,"[""Keyboard"", ""Wireless Mouse""]",2453.75,"{""loyalty"": ""17%""}",74479,0,South America +2023-09-21,94826,9208,"[""Wireless Mouse""]",1380.15,"{""loyalty"": ""13%""}",173827,0,Africa +2024-06-26,94827,7646,"[""Monitor"", ""Phone""]",1085.59,"{""loyalty"": ""18%""}",267335,1,Europe +2023-02-10,94828,146,"[""Headphones"", ""Laptop""]",3460.06,"{""promo"": ""20%""}",126759,1,Africa +2024-08-14,94829,9414,"[""Laptop""]",4708.41,{},74638,0,Asia +2024-02-15,94830,6416,"[""Laptop""]",1123.31,{},133050,0,Europe +2024-05-04,94831,7751,"[""Charger"", ""Wireless Mouse""]",3175.15,{},104565,0,Europe +2024-12-02,94832,2622,"[""Monitor"", ""Wireless Mouse""]",997.88,{},2290,1,Africa +2024-06-11,94833,2830,"[""Monitor"", ""Laptop""]",1808.23,{},185798,0,Europe +2024-12-31,94834,1404,"[""Laptop"", ""Headphones"", ""Charger""]",3339.61,"{""seasonal"": ""15%""}",181625,0,South America +2024-02-19,94835,2272,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4569.17,"{""loyalty"": ""30%""}",84011,0,Asia +2023-04-24,94836,7337,"[""Laptop"", ""Keyboard"", ""Phone""]",4263.08,{},8480,0,North America +2024-09-13,94837,1627,"[""Tablet"", ""Headphones"", ""Phone""]",4382.8,{},115803,0,North America +2023-02-23,94838,3214,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3656.61,"{""loyalty"": ""24%""}",213140,0,Asia +2023-04-29,94839,9040,"[""Phone"", ""Headphones"", ""Charger""]",4204.81,"{"""": ""14%""}",132455,0,Europe +2024-06-28,94840,2537,"[""Phone"", ""Keyboard"", ""Monitor""]",4166.67,"{""loyalty"": ""13%""}",85588,1,North America +2024-02-23,94841,1968,"[""Laptop"", ""Monitor""]",677.08,{},281223,1,Asia +2023-07-23,94842,778,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",2697.72,"{""seasonal"": ""22%""}",121246,1,Asia +2024-11-09,94843,5733,"[""Tablet""]",2457.03,"{"""": ""27%""}",197211,1,Africa +2023-12-21,94844,6263,"[""Laptop"", ""Keyboard"", ""Headphones""]",502.47,{},230036,1,Asia +2024-01-24,94845,7776,"[""Monitor"", ""Keyboard"", ""Charger""]",3385.0,"{"""": ""21%""}",97558,1,Africa +2023-03-04,94846,6973,"[""Tablet"", ""Phone""]",3439.92,{},58752,0,Asia +2023-11-27,94847,5078,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4249.4,{},298841,1,North America +2024-03-14,94848,2292,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",1494.83,{},147697,0,South America +2023-12-16,94849,8993,"[""Laptop"", ""Phone""]",4885.76,"{""loyalty"": ""26%""}",270799,0,Asia +2024-01-19,94850,3698,"[""Keyboard""]",4929.99,"{"""": ""23%""}",79080,0,Europe +2024-06-14,94851,7927,"[""Charger"", ""Tablet"", ""Headphones""]",631.89,{},43000,1,Africa +2024-05-31,94852,3699,"[""Phone"", ""Headphones"", ""Laptop""]",3492.72,"{""loyalty"": ""9%""}",210116,1,Africa +2024-07-11,94853,9497,"[""Laptop""]",3599.67,"{"""": ""21%""}",244560,1,North America +2023-10-07,94854,3987,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4852.91,{},95984,1,Europe +2023-10-04,94855,4632,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2849.45,"{"""": ""9%""}",294551,0,North America +2023-03-27,94856,5756,"[""Wireless Mouse"", ""Phone""]",3595.52,{},297655,0,Africa +2023-05-05,94857,477,"[""Headphones""]",4600.58,{},226741,0,Asia +2023-03-15,94858,478,"[""Tablet""]",2488.53,"{""promo"": ""19%""}",103707,1,North America +2024-12-24,94859,3606,"[""Headphones"", ""Charger""]",200.72,{},38536,0,Africa +2024-01-09,94860,3540,"[""Phone"", ""Charger""]",4230.44,"{"""": ""18%""}",298702,1,North America +2023-07-16,94861,9966,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",593.15,{},81790,1,South America +2023-04-12,94862,8766,"[""Wireless Mouse"", ""Tablet""]",4793.88,{},280499,1,Africa +2024-03-12,94863,3332,"[""Tablet""]",4676.83,{},55505,0,Europe +2024-05-06,94864,1452,"[""Charger"", ""Headphones""]",3573.1,{},90853,0,Africa +2023-12-14,94865,2243,"[""Monitor"", ""Phone"", ""Keyboard""]",3447.38,{},281041,0,Africa +2024-01-15,94866,5877,"[""Charger"", ""Tablet"", ""Phone""]",4769.32,"{""seasonal"": ""9%""}",213184,1,Africa +2023-05-07,94867,1468,"[""Headphones"", ""Wireless Mouse""]",414.11,"{"""": ""14%""}",263024,1,North America +2024-12-12,94868,7507,"[""Keyboard"", ""Laptop""]",3002.64,{},264231,0,South America +2023-05-31,94869,2174,"[""Charger""]",887.95,"{"""": ""6%""}",185548,1,Europe +2023-03-18,94870,2520,"[""Phone""]",1812.12,{},92525,1,South America +2023-05-17,94871,3380,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2276.37,"{""loyalty"": ""14%""}",172408,1,Africa +2024-08-14,94872,9444,"[""Charger"", ""Tablet"", ""Phone""]",4072.63,"{""loyalty"": ""22%""}",125041,0,South America +2024-04-12,94873,4666,"[""Headphones""]",3897.73,"{"""": ""28%""}",208123,0,Asia +2023-12-27,94874,8471,"[""Headphones""]",2297.45,"{""loyalty"": ""6%""}",185305,1,South America +2023-10-02,94875,540,"[""Headphones"", ""Keyboard""]",525.92,{},219959,0,North America +2024-04-30,94876,4818,"[""Tablet""]",793.6,"{"""": ""15%""}",18842,1,Asia +2023-04-10,94877,8689,"[""Tablet"", ""Keyboard""]",1613.47,"{""promo"": ""24%""}",52519,0,South America +2023-02-06,94878,3620,"[""Monitor"", ""Keyboard""]",4869.59,"{""promo"": ""28%""}",10619,0,Europe +2023-05-23,94879,1825,"[""Wireless Mouse"", ""Headphones""]",647.48,"{""loyalty"": ""27%""}",169952,0,North America +2024-11-08,94880,1366,"[""Tablet""]",1629.12,{},125959,0,Asia +2023-07-19,94881,893,"[""Phone"", ""Monitor""]",643.66,{},236853,0,Africa +2023-05-24,94882,8857,"[""Monitor"", ""Headphones"", ""Charger""]",1949.96,{},88375,1,North America +2024-10-26,94883,6779,"[""Wireless Mouse"", ""Monitor""]",345.67,"{""promo"": ""8%""}",273588,0,Africa +2023-11-02,94884,3795,"[""Headphones"", ""Tablet""]",4035.76,"{""promo"": ""28%""}",252726,0,Africa +2023-07-31,94885,1147,"[""Phone"", ""Monitor""]",1442.96,{},5303,1,Europe +2023-08-16,94886,3718,"[""Phone"", ""Headphones"", ""Tablet""]",4278.32,{},104613,1,North America +2023-08-16,94887,869,"[""Wireless Mouse"", ""Headphones""]",819.88,"{"""": ""25%""}",249490,0,Europe +2023-10-09,94888,9234,"[""Tablet"", ""Wireless Mouse""]",2621.52,"{"""": ""16%""}",178700,1,Europe +2024-11-30,94889,3519,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1173.19,{},236293,1,Asia +2024-02-10,94890,7528,"[""Charger"", ""Monitor"", ""Keyboard""]",70.26,"{""loyalty"": ""20%""}",258223,0,South America +2023-08-31,94891,7492,"[""Monitor""]",1502.78,"{"""": ""13%""}",147846,1,South America +2023-06-07,94892,9600,"[""Wireless Mouse"", ""Keyboard""]",2599.79,"{""seasonal"": ""28%""}",203036,0,Asia +2023-09-30,94893,6575,"[""Phone"", ""Laptop""]",1035.71,"{""loyalty"": ""20%""}",41180,0,North America +2023-04-05,94894,382,"[""Headphones"", ""Phone""]",1514.27,"{""loyalty"": ""11%""}",177810,1,Europe +2023-04-18,94895,6891,"[""Laptop""]",2478.54,{},214046,0,Africa +2024-03-03,94896,1838,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",237.39,{},130865,0,Africa +2024-11-27,94897,3109,"[""Wireless Mouse""]",1996.38,"{""promo"": ""11%""}",129802,0,Asia +2023-12-07,94898,2472,"[""Phone""]",4305.49,"{""seasonal"": ""9%""}",242728,1,Asia +2023-09-11,94899,9331,"[""Laptop"", ""Tablet"", ""Charger""]",4378.97,{},157071,1,South America +2023-01-19,94900,6241,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4964.21,{},179175,1,Asia +2023-09-15,94901,6205,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",4858.44,"{"""": ""17%""}",64392,1,South America +2023-08-03,94902,7933,"[""Phone"", ""Keyboard"", ""Laptop""]",4826.01,"{""seasonal"": ""16%""}",21493,1,Asia +2023-06-19,94903,7826,"[""Charger"", ""Monitor""]",358.56,"{""loyalty"": ""23%""}",82564,1,Europe +2024-03-21,94904,3116,"[""Charger"", ""Monitor"", ""Tablet""]",1627.72,{},124448,0,Asia +2023-01-25,94905,7743,"[""Tablet""]",3042.18,{},123267,1,Europe +2024-09-15,94906,5993,"[""Tablet"", ""Phone"", ""Headphones""]",2519.67,"{""loyalty"": ""28%""}",41652,1,Europe +2023-07-26,94907,5933,"[""Charger""]",549.33,"{"""": ""16%""}",65253,0,Africa +2024-04-29,94908,8461,"[""Wireless Mouse""]",770.39,{},211697,1,North America +2024-08-20,94909,5160,"[""Monitor"", ""Phone""]",1462.7,{},56810,0,Asia +2024-03-01,94910,267,"[""Laptop"", ""Wireless Mouse""]",774.11,{},141250,0,Africa +2023-08-14,94911,5444,"[""Monitor"", ""Laptop"", ""Charger""]",1365.11,{},244027,1,South America +2024-08-11,94912,1461,"[""Keyboard"", ""Monitor"", ""Tablet""]",263.57,"{"""": ""19%""}",169886,1,North America +2024-04-29,94913,9550,"[""Tablet"", ""Keyboard""]",1521.97,{},285945,0,South America +2023-04-12,94914,7783,"[""Phone""]",4046.86,{},134150,0,Africa +2023-12-06,94915,2683,"[""Monitor"", ""Keyboard"", ""Laptop""]",1037.44,"{""promo"": ""9%""}",113933,1,South America +2024-08-14,94916,4972,"[""Keyboard"", ""Charger"", ""Phone""]",2363.14,{},48631,1,Africa +2024-06-06,94917,4157,"[""Wireless Mouse""]",3134.26,{},76807,0,Europe +2023-04-08,94918,9918,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",446.44,{},178984,1,Europe +2023-03-07,94919,4835,"[""Monitor"", ""Charger""]",1660.01,{},215103,1,North America +2024-02-15,94920,870,"[""Wireless Mouse"", ""Laptop"", ""Headphones""]",3252.89,"{""promo"": ""16%""}",240836,0,Africa +2023-03-14,94921,2453,"[""Headphones"", ""Phone"", ""Charger""]",474.19,{},157173,1,South America +2023-07-03,94922,2208,"[""Monitor""]",558.95,"{"""": ""9%""}",282953,1,North America +2023-02-20,94923,3954,"[""Keyboard""]",4315.27,{},98862,0,South America +2024-10-01,94924,7594,"[""Charger"", ""Tablet""]",887.03,"{""promo"": ""5%""}",8666,1,Asia +2023-07-19,94925,1654,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",777.06,"{"""": ""9%""}",198306,1,South America +2023-05-23,94926,1605,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4374.68,{},170303,1,Asia +2024-01-17,94927,5623,"[""Phone""]",3913.21,{},113650,0,North America +2023-02-24,94928,4253,"[""Charger""]",3729.39,"{""loyalty"": ""8%""}",215275,0,Europe +2024-02-20,94929,7354,"[""Charger"", ""Keyboard""]",2803.44,{},9172,0,Europe +2023-12-11,94930,7912,"[""Laptop"", ""Headphones""]",3045.03,"{""seasonal"": ""12%""}",67836,0,Europe +2023-10-31,94931,7223,"[""Monitor""]",4648.99,"{""loyalty"": ""20%""}",259929,1,Asia +2023-08-23,94932,6037,"[""Monitor"", ""Charger""]",4685.18,{},13303,1,Africa +2024-12-23,94933,3857,"[""Tablet""]",754.13,"{""seasonal"": ""13%""}",2873,0,Africa +2023-11-27,94934,1962,"[""Keyboard"", ""Monitor"", ""Tablet""]",3522.66,"{""promo"": ""29%""}",299452,1,Asia +2024-03-07,94935,3091,"[""Phone"", ""Tablet"", ""Keyboard""]",1223.1,"{""seasonal"": ""7%""}",250489,1,South America +2023-09-03,94936,1604,"[""Keyboard""]",488.72,{},218043,1,Africa +2024-12-30,94937,9764,"[""Tablet"", ""Monitor""]",1160.04,"{""loyalty"": ""26%""}",100133,0,Asia +2024-03-04,94938,6896,"[""Wireless Mouse""]",3290.45,"{"""": ""30%""}",219322,0,South America +2023-09-09,94939,9492,"[""Keyboard""]",2126.84,{},19905,0,Asia +2023-06-25,94940,9131,"[""Wireless Mouse"", ""Tablet""]",223.63,"{"""": ""19%""}",260343,1,South America +2023-03-01,94941,6142,"[""Phone"", ""Headphones"", ""Laptop""]",573.37,"{""promo"": ""10%""}",119259,1,Europe +2023-01-10,94942,331,"[""Phone""]",2062.48,"{""loyalty"": ""28%""}",175222,0,Asia +2023-08-23,94943,83,"[""Keyboard"", ""Tablet"", ""Laptop""]",740.41,{},12102,1,North America +2024-10-12,94944,5032,"[""Laptop""]",2961.39,{},165746,1,Europe +2023-03-31,94945,5949,"[""Monitor""]",2443.01,"{""seasonal"": ""9%""}",93660,0,Europe +2024-05-06,94946,3919,"[""Monitor""]",4345.2,{},175145,1,North America +2024-09-07,94947,3357,"[""Headphones"", ""Charger"", ""Keyboard""]",4466.58,"{""seasonal"": ""7%""}",298894,0,Europe +2023-11-21,94948,6688,"[""Charger"", ""Monitor""]",2680.18,"{""seasonal"": ""5%""}",224731,1,Asia +2024-02-29,94949,9235,"[""Headphones""]",3577.9,{},112543,1,North America +2024-01-29,94950,7381,"[""Wireless Mouse"", ""Monitor""]",4975.31,"{""seasonal"": ""20%""}",165179,1,North America +2023-06-06,94951,3313,"[""Wireless Mouse"", ""Monitor""]",2472.15,"{"""": ""12%""}",178410,1,Asia +2023-12-03,94952,8169,"[""Monitor"", ""Phone"", ""Laptop""]",2260.58,{},106342,0,Europe +2023-02-18,94953,6090,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",1549.66,{},30396,1,Asia +2023-03-02,94954,5903,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3143.56,"{"""": ""29%""}",116296,1,North America +2024-05-02,94955,2975,"[""Keyboard"", ""Laptop"", ""Monitor""]",163.29,"{""promo"": ""17%""}",291016,0,Europe +2024-05-03,94956,1945,"[""Laptop"", ""Tablet"", ""Phone""]",1382.38,"{""seasonal"": ""5%""}",166848,0,North America +2023-06-04,94957,5180,"[""Tablet""]",2581.64,"{""loyalty"": ""27%""}",299473,0,Asia +2024-08-01,94958,1342,"[""Charger""]",2141.57,"{""loyalty"": ""18%""}",243778,1,Europe +2023-07-22,94959,7114,"[""Headphones"", ""Charger"", ""Monitor""]",1535.95,{},19268,0,Asia +2024-04-07,94960,7044,"[""Keyboard""]",1655.11,{},69040,1,North America +2024-10-27,94961,3606,"[""Charger"", ""Tablet"", ""Keyboard""]",573.86,"{""promo"": ""12%""}",141220,1,South America +2023-10-28,94962,416,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3495.32,{},139859,1,Africa +2024-04-06,94963,2570,"[""Laptop""]",3255.23,{},188385,0,North America +2024-05-17,94964,6738,"[""Tablet"", ""Monitor"", ""Keyboard""]",2528.18,"{""seasonal"": ""29%""}",31327,1,North America +2023-04-05,94965,2812,"[""Laptop"", ""Monitor"", ""Tablet""]",651.98,"{""seasonal"": ""15%""}",22156,1,Asia +2024-03-16,94966,7826,"[""Wireless Mouse"", ""Charger""]",4323.16,"{"""": ""6%""}",128154,0,Europe +2024-11-24,94967,1589,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2014.01,{},113583,0,Asia +2024-02-19,94968,195,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",3696.39,{},183647,0,Europe +2023-02-08,94969,6593,"[""Charger""]",1385.4,{},12302,1,Europe +2024-11-09,94970,1297,"[""Phone""]",3662.35,"{"""": ""18%""}",237367,0,Asia +2024-04-13,94971,6347,"[""Headphones"", ""Phone"", ""Tablet""]",4112.81,"{""seasonal"": ""8%""}",7174,0,North America +2024-08-20,94972,3168,"[""Keyboard"", ""Laptop""]",964.78,{},2124,0,Europe +2024-04-28,94973,5975,"[""Keyboard""]",1704.9,"{""promo"": ""29%""}",23109,0,North America +2023-06-18,94974,734,"[""Charger"", ""Laptop""]",965.4,"{""promo"": ""10%""}",79030,1,Europe +2023-06-09,94975,4293,"[""Headphones""]",645.44,{},215059,1,Asia +2023-08-04,94976,1111,"[""Keyboard""]",532.76,{},167366,1,North America +2023-03-14,94977,5184,"[""Tablet"", ""Charger""]",1536.21,{},58829,0,South America +2023-09-07,94978,9126,"[""Headphones"", ""Phone"", ""Keyboard""]",1438.78,"{""promo"": ""20%""}",139871,1,North America +2024-07-22,94979,1066,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2565.61,{},66165,1,North America +2023-01-23,94980,8849,"[""Wireless Mouse""]",1769.52,"{"""": ""19%""}",12189,0,Europe +2024-07-11,94981,7844,"[""Keyboard"", ""Monitor""]",3749.55,{},291530,1,South America +2023-03-25,94982,3459,"[""Monitor""]",2412.34,"{"""": ""13%""}",294252,1,South America +2024-01-18,94983,803,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4627.65,{},2963,0,Asia +2024-09-25,94984,4324,"[""Keyboard""]",1826.42,"{""seasonal"": ""9%""}",113349,0,Europe +2024-04-01,94985,4522,"[""Charger"", ""Wireless Mouse""]",264.9,{},202105,0,Asia +2024-03-20,94986,3743,"[""Headphones"", ""Phone""]",737.88,"{""seasonal"": ""6%""}",75618,1,Asia +2024-08-11,94987,6181,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",538.37,{},183238,1,Asia +2023-06-03,94988,3246,"[""Phone"", ""Keyboard""]",4524.33,{},41409,0,Europe +2024-06-14,94989,8512,"[""Keyboard"", ""Tablet""]",2329.87,"{"""": ""15%""}",276220,1,North America +2024-07-23,94990,5150,"[""Charger"", ""Tablet""]",1511.02,"{"""": ""7%""}",206595,0,Africa +2024-02-25,94991,9696,"[""Headphones"", ""Tablet""]",4646.46,"{""seasonal"": ""19%""}",86478,0,Africa +2023-09-06,94992,9292,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4183.09,"{""loyalty"": ""25%""}",90335,1,Asia +2023-08-23,94993,9820,"[""Charger""]",2863.52,"{"""": ""23%""}",250576,1,South America +2024-07-23,94994,224,"[""Charger"", ""Phone"", ""Laptop""]",4652.29,"{""promo"": ""24%""}",189993,0,North America +2024-03-15,94995,7939,"[""Keyboard"", ""Headphones"", ""Laptop""]",1500.29,{},128772,1,North America +2023-04-23,94996,6613,"[""Charger"", ""Headphones""]",1412.49,"{"""": ""29%""}",221499,1,Africa +2024-05-08,94997,7337,"[""Headphones"", ""Charger"", ""Laptop""]",1110.08,"{"""": ""17%""}",207226,1,South America +2024-08-15,94998,8528,"[""Charger""]",4296.6,{},131403,0,Europe +2024-07-07,94999,9014,"[""Keyboard"", ""Charger""]",2903.85,"{""promo"": ""12%""}",72665,0,Africa +2023-07-25,95000,6503,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",78.85,"{"""": ""19%""}",173037,0,North America +2023-04-17,95001,5075,"[""Headphones""]",4987.61,"{""seasonal"": ""17%""}",206226,1,Asia +2023-02-06,95002,5289,"[""Monitor""]",4271.16,"{"""": ""30%""}",235169,1,Africa +2023-11-02,95003,3999,"[""Keyboard""]",4583.91,{},113644,1,North America +2024-01-08,95004,2254,"[""Charger"", ""Tablet"", ""Keyboard""]",255.82,"{""promo"": ""24%""}",168506,0,Africa +2023-01-23,95005,6917,"[""Charger""]",4262.27,{},146034,0,South America +2023-05-14,95006,6207,"[""Charger"", ""Keyboard""]",3278.5,{},117999,1,Asia +2024-10-31,95007,957,"[""Phone"", ""Tablet""]",3233.06,{},239315,1,Europe +2023-10-10,95008,7659,"[""Keyboard"", ""Monitor""]",2105.48,{},186006,0,Europe +2024-06-05,95009,8831,"[""Monitor"", ""Headphones"", ""Keyboard""]",4275.55,"{""seasonal"": ""21%""}",10521,1,South America +2024-01-15,95010,7691,"[""Charger"", ""Monitor"", ""Keyboard""]",3763.86,"{""promo"": ""26%""}",212601,0,Asia +2023-01-09,95011,9655,"[""Phone""]",2305.95,"{""seasonal"": ""16%""}",131937,0,North America +2023-02-23,95012,7084,"[""Charger"", ""Headphones"", ""Keyboard""]",1370.88,"{""loyalty"": ""18%""}",136265,1,North America +2023-05-15,95013,9219,"[""Monitor"", ""Phone""]",4890.97,{},46477,0,Africa +2024-05-16,95014,8957,"[""Laptop""]",3527.69,"{"""": ""11%""}",180242,1,Asia +2023-07-10,95015,1747,"[""Phone"", ""Headphones""]",2465.3,"{""seasonal"": ""15%""}",78914,0,North America +2024-09-25,95016,2746,"[""Charger"", ""Laptop""]",556.65,{},84089,0,South America +2023-10-15,95017,4542,"[""Headphones"", ""Laptop"", ""Keyboard""]",3837.44,"{""promo"": ""26%""}",172993,1,South America +2024-08-22,95018,4664,"[""Headphones""]",4875.51,"{"""": ""16%""}",111132,1,Africa +2023-09-22,95019,4109,"[""Tablet"", ""Laptop"", ""Headphones""]",1220.6,{},188140,0,North America +2023-04-12,95020,4105,"[""Headphones""]",4450.17,"{""promo"": ""14%""}",257542,0,Europe +2024-11-19,95021,1376,"[""Monitor"", ""Laptop"", ""Tablet""]",1465.06,{},233666,1,North America +2023-02-15,95022,5059,"[""Headphones""]",2220.96,{},203466,0,Africa +2024-04-12,95023,9958,"[""Phone"", ""Laptop"", ""Keyboard""]",470.41,"{""loyalty"": ""13%""}",276848,0,Asia +2024-06-03,95024,7912,"[""Wireless Mouse""]",1653.2,"{""seasonal"": ""26%""}",212061,0,Europe +2024-02-17,95025,2207,"[""Monitor""]",3957.78,"{""seasonal"": ""25%""}",26903,0,North America +2023-12-04,95026,3675,"[""Phone"", ""Keyboard""]",3032.75,{},207806,1,South America +2023-07-13,95027,2980,"[""Tablet"", ""Keyboard""]",1603.88,{},254112,0,Europe +2023-03-09,95028,2404,"[""Tablet"", ""Keyboard"", ""Monitor""]",291.84,"{""seasonal"": ""9%""}",276818,1,North America +2024-08-17,95029,3400,"[""Monitor"", ""Charger"", ""Headphones""]",3794.99,"{"""": ""26%""}",94727,0,Asia +2024-12-22,95030,5401,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3581.19,{},207516,1,Europe +2023-02-23,95031,3060,"[""Monitor""]",4483.4,{},24406,0,Europe +2024-02-29,95032,3429,"[""Headphones"", ""Monitor"", ""Phone""]",143.93,"{"""": ""27%""}",50963,1,Asia +2024-07-22,95033,2806,"[""Monitor""]",3189.64,"{""loyalty"": ""19%""}",136289,0,Africa +2024-11-13,95034,5806,"[""Laptop""]",1162.21,{},112257,0,Europe +2023-07-14,95035,5161,"[""Keyboard"", ""Charger"", ""Tablet""]",2366.39,"{""promo"": ""29%""}",54795,1,Europe +2024-05-28,95036,9129,"[""Wireless Mouse"", ""Laptop""]",1214.32,{},137101,0,Asia +2024-07-12,95037,7830,"[""Laptop"", ""Headphones""]",3091.42,"{"""": ""22%""}",167041,1,South America +2023-11-21,95038,7925,"[""Laptop""]",4172.23,{},292231,0,Africa +2024-07-01,95039,1293,"[""Charger"", ""Phone"", ""Headphones""]",2364.54,{},151499,1,South America +2023-07-14,95040,6045,"[""Charger"", ""Headphones"", ""Monitor""]",4712.33,{},60850,1,South America +2023-07-26,95041,9386,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",161.5,{},25092,0,North America +2023-08-21,95042,3475,"[""Headphones"", ""Monitor"", ""Tablet""]",1740.16,{},139653,1,Europe +2024-11-05,95043,5922,"[""Tablet"", ""Charger""]",932.79,{},217989,0,Europe +2023-09-27,95044,112,"[""Charger"", ""Tablet""]",2769.73,"{"""": ""28%""}",111719,0,Europe +2023-11-06,95045,9272,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3886.17,{},103044,0,Africa +2024-08-18,95046,18,"[""Phone"", ""Charger""]",2582.81,{},153208,0,North America +2024-09-05,95047,4870,"[""Tablet"", ""Headphones"", ""Keyboard""]",2115.68,{},294153,1,Europe +2023-05-25,95048,4334,"[""Tablet"", ""Phone"", ""Charger""]",4992.49,"{"""": ""24%""}",137119,1,South America +2023-11-25,95049,2094,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",1848.47,{},89139,1,Europe +2024-12-09,95050,3251,"[""Monitor""]",1102.92,{},252058,1,Europe +2024-06-13,95051,2995,"[""Phone""]",2311.95,{},32866,0,Asia +2023-05-16,95052,2859,"[""Phone""]",1030.34,"{""promo"": ""27%""}",277971,0,North America +2024-01-23,95053,2833,"[""Headphones"", ""Monitor""]",2680.58,"{""seasonal"": ""15%""}",225028,0,North America +2023-01-30,95054,3167,"[""Laptop"", ""Charger"", ""Tablet""]",2278.85,{},176776,0,Europe +2024-11-20,95055,862,"[""Laptop"", ""Charger"", ""Monitor""]",337.06,{},206558,0,Europe +2023-04-20,95056,3809,"[""Keyboard"", ""Wireless Mouse""]",3991.64,{},285702,0,South America +2023-09-23,95057,6475,"[""Keyboard"", ""Monitor"", ""Tablet""]",2494.16,"{""promo"": ""21%""}",228743,1,South America +2023-08-12,95058,8617,"[""Monitor""]",2450.92,"{""promo"": ""27%""}",97448,0,Asia +2023-04-19,95059,5406,"[""Monitor""]",2210.05,"{""promo"": ""16%""}",9851,1,Europe +2023-05-02,95060,1893,"[""Charger""]",4852.95,{},43715,1,Europe +2023-05-07,95061,1311,"[""Charger""]",1439.8,{},268617,0,Africa +2024-10-28,95062,1722,"[""Keyboard""]",2418.59,"{""seasonal"": ""25%""}",253650,0,Europe +2023-04-16,95063,6609,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3865.52,"{""seasonal"": ""22%""}",276270,1,Asia +2023-03-11,95064,9462,"[""Phone"", ""Monitor"", ""Charger""]",4021.31,{},294655,1,North America +2024-01-22,95065,9461,"[""Monitor"", ""Phone""]",95.4,"{""loyalty"": ""19%""}",121912,0,Africa +2024-05-11,95066,2682,"[""Laptop"", ""Wireless Mouse""]",4106.91,"{""loyalty"": ""13%""}",82811,1,North America +2024-03-10,95067,6493,"[""Tablet""]",4508.21,{},293012,0,North America +2023-11-13,95068,1083,"[""Monitor""]",528.41,{},265171,0,North America +2024-04-27,95069,3458,"[""Laptop""]",709.48,"{""loyalty"": ""27%""}",164014,1,North America +2023-08-09,95070,9668,"[""Keyboard"", ""Laptop"", ""Charger""]",4866.19,{},174495,1,South America +2023-02-14,95071,3978,"[""Monitor"", ""Phone"", ""Charger""]",3941.0,{},52328,0,Africa +2023-10-06,95072,3294,"[""Laptop""]",1361.65,{},208313,1,Europe +2023-05-15,95073,1356,"[""Tablet"", ""Charger""]",2316.62,"{"""": ""7%""}",269820,0,North America +2024-03-24,95074,9319,"[""Keyboard""]",1573.79,{},174402,0,Asia +2023-05-27,95075,2532,"[""Headphones""]",2926.77,{},95628,1,Africa +2024-11-05,95076,4960,"[""Monitor"", ""Wireless Mouse""]",3132.32,{},204713,0,South America +2024-05-30,95077,3037,"[""Monitor"", ""Phone"", ""Laptop""]",475.47,{},17922,0,Asia +2024-01-02,95078,9494,"[""Headphones""]",4779.78,"{""seasonal"": ""7%""}",5058,1,North America +2023-03-08,95079,252,"[""Monitor"", ""Charger"", ""Headphones""]",676.44,"{""promo"": ""27%""}",213450,0,Africa +2023-09-17,95080,5316,"[""Charger"", ""Tablet""]",3638.2,{},40062,1,Asia +2023-07-20,95081,3530,"[""Tablet"", ""Charger"", ""Keyboard""]",4184.94,"{""seasonal"": ""10%""}",231759,1,North America +2024-05-28,95082,5218,"[""Charger""]",1070.34,"{""promo"": ""21%""}",234598,1,South America +2024-06-06,95083,6412,"[""Charger""]",3038.1,"{"""": ""17%""}",205372,1,Asia +2024-08-06,95084,7129,"[""Headphones"", ""Monitor"", ""Charger""]",1754.13,"{"""": ""19%""}",282337,0,Asia +2024-03-18,95085,2532,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",343.49,"{""seasonal"": ""10%""}",99748,1,Europe +2023-02-19,95086,7849,"[""Charger"", ""Tablet"", ""Phone""]",638.34,"{""promo"": ""18%""}",171498,1,South America +2024-12-22,95087,6726,"[""Phone""]",82.08,{},229731,1,North America +2024-02-19,95088,3740,"[""Phone"", ""Charger""]",2411.39,"{""promo"": ""13%""}",179623,1,Asia +2024-07-26,95089,2455,"[""Keyboard"", ""Headphones""]",1862.43,{},282396,0,South America +2023-12-21,95090,4679,"[""Keyboard""]",3921.58,"{""loyalty"": ""27%""}",232748,0,Africa +2023-08-02,95091,2757,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",4730.39,"{"""": ""22%""}",200880,0,South America +2024-10-13,95092,3993,"[""Charger""]",4487.38,{},184142,0,South America +2023-03-26,95093,125,"[""Phone"", ""Keyboard"", ""Charger""]",606.03,{},75092,0,Africa +2023-04-09,95094,6785,"[""Headphones"", ""Tablet""]",3704.6,"{""seasonal"": ""23%""}",16195,1,Africa +2024-11-24,95095,402,"[""Keyboard"", ""Headphones""]",1511.82,{},55917,0,Europe +2023-08-14,95096,8875,"[""Wireless Mouse"", ""Laptop""]",3462.21,"{""promo"": ""5%""}",242245,0,South America +2024-07-10,95097,5966,"[""Monitor"", ""Laptop"", ""Keyboard""]",2425.61,{},46231,0,Africa +2023-12-15,95098,6748,"[""Wireless Mouse""]",2069.35,"{"""": ""15%""}",85036,0,Europe +2023-07-13,95099,1095,"[""Monitor"", ""Phone"", ""Keyboard""]",3670.67,{},177434,1,Asia +2024-01-29,95100,4496,"[""Laptop"", ""Keyboard""]",1798.91,"{"""": ""22%""}",242271,1,Asia +2023-01-27,95101,4870,"[""Headphones"", ""Charger"", ""Monitor""]",3772.8,"{"""": ""27%""}",209185,1,Europe +2023-09-05,95102,7739,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1035.72,"{""loyalty"": ""24%""}",62715,1,North America +2024-11-10,95103,3739,"[""Laptop"", ""Wireless Mouse""]",4237.13,"{"""": ""25%""}",18078,0,North America +2023-10-12,95104,2359,"[""Headphones""]",3981.87,"{""loyalty"": ""28%""}",238747,1,South America +2024-02-03,95105,4600,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",1515.17,"{""seasonal"": ""8%""}",268812,1,Africa +2023-04-22,95106,5904,"[""Laptop""]",4980.69,{},223269,1,Africa +2023-10-16,95107,2677,"[""Laptop"", ""Headphones""]",3589.94,"{"""": ""28%""}",60521,1,North America +2023-01-15,95108,127,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2902.34,"{""loyalty"": ""24%""}",111009,0,North America +2023-09-28,95109,4277,"[""Keyboard""]",1838.76,{},279357,0,Europe +2023-10-10,95110,8146,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4840.19,"{""loyalty"": ""5%""}",80291,1,South America +2024-07-20,95111,7253,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2116.79,{},108633,0,North America +2024-04-20,95112,7073,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",3719.09,{},54212,0,Asia +2023-03-13,95113,1942,"[""Keyboard"", ""Charger"", ""Tablet""]",3075.68,{},271982,0,Asia +2024-08-20,95114,9078,"[""Charger"", ""Monitor""]",3490.08,{},284169,0,North America +2024-10-03,95115,6277,"[""Charger"", ""Tablet"", ""Phone""]",2204.37,{},59215,0,South America +2024-01-31,95116,1330,"[""Wireless Mouse"", ""Headphones""]",230.21,"{""promo"": ""17%""}",166215,0,North America +2023-11-06,95117,8637,"[""Laptop"", ""Monitor"", ""Phone""]",4313.9,{},197835,1,Europe +2024-05-02,95118,685,"[""Phone"", ""Tablet"", ""Laptop""]",4890.6,{},84528,1,South America +2024-12-12,95119,4619,"[""Keyboard""]",1484.05,{},37468,0,South America +2023-01-15,95120,3953,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",2066.95,"{""seasonal"": ""21%""}",225225,1,Europe +2024-12-23,95121,4489,"[""Keyboard"", ""Tablet""]",1217.72,"{""promo"": ""6%""}",111626,1,South America +2024-03-11,95122,6337,"[""Charger"", ""Laptop"", ""Headphones""]",3126.49,{},213021,1,South America +2024-06-08,95123,5497,"[""Phone"", ""Keyboard""]",1712.95,"{"""": ""22%""}",169814,0,South America +2024-11-09,95124,4624,"[""Charger"", ""Monitor"", ""Keyboard""]",4550.39,{},278624,1,Europe +2023-12-25,95125,7191,"[""Headphones"", ""Phone"", ""Tablet""]",3861.22,"{""loyalty"": ""11%""}",240943,0,North America +2024-05-30,95126,5468,"[""Laptop""]",3618.2,"{"""": ""14%""}",184141,0,Europe +2024-11-09,95127,512,"[""Wireless Mouse""]",3495.01,{},19760,1,South America +2023-05-07,95128,2831,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",3839.41,{},89567,1,South America +2024-06-11,95129,8991,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3540.12,"{""seasonal"": ""15%""}",224593,1,Asia +2024-09-13,95130,1549,"[""Keyboard"", ""Headphones""]",3142.9,{},174028,0,North America +2023-03-16,95131,7880,"[""Laptop""]",1610.82,{},132828,0,Europe +2024-12-30,95132,9298,"[""Laptop"", ""Monitor""]",1491.23,"{""loyalty"": ""10%""}",17080,1,North America +2023-08-30,95133,4620,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",1987.14,{},60725,0,North America +2023-09-19,95134,936,"[""Headphones"", ""Phone""]",4283.51,{},25364,0,Asia +2023-09-05,95135,9297,"[""Keyboard""]",1211.01,{},70966,0,Asia +2024-04-08,95136,490,"[""Tablet""]",628.82,{},193159,1,Africa +2024-12-10,95137,9620,"[""Charger"", ""Tablet"", ""Monitor""]",4753.68,"{"""": ""26%""}",134019,0,South America +2024-10-28,95138,8175,"[""Headphones""]",1512.58,"{"""": ""17%""}",45554,0,South America +2023-04-10,95139,2113,"[""Monitor"", ""Wireless Mouse""]",3254.36,"{""promo"": ""30%""}",139176,1,Africa +2023-05-24,95140,6949,"[""Phone""]",4064.79,"{""loyalty"": ""14%""}",271397,1,Africa +2023-09-09,95141,1044,"[""Headphones"", ""Keyboard"", ""Charger""]",2933.37,"{""seasonal"": ""20%""}",32189,0,North America +2024-06-24,95142,1666,"[""Laptop""]",1266.02,{},177377,0,Asia +2023-03-18,95143,9128,"[""Monitor"", ""Tablet"", ""Keyboard""]",3244.73,{},46577,0,North America +2024-01-24,95144,2209,"[""Charger""]",3714.28,"{""loyalty"": ""16%""}",189885,0,Asia +2023-05-07,95145,9921,"[""Monitor""]",4245.68,{},130493,0,Europe +2023-06-04,95146,2773,"[""Headphones""]",4084.6,"{""loyalty"": ""30%""}",281574,1,Europe +2023-06-24,95147,2264,"[""Laptop"", ""Tablet""]",849.63,"{""loyalty"": ""15%""}",27747,0,Asia +2024-11-19,95148,9384,"[""Phone""]",1930.35,{},158981,0,Asia +2023-05-04,95149,4854,"[""Keyboard"", ""Tablet""]",3963.01,{},24317,0,South America +2023-07-18,95150,5433,"[""Tablet"", ""Phone""]",424.95,{},234983,1,Europe +2023-04-05,95151,9955,"[""Headphones""]",3113.36,"{""seasonal"": ""6%""}",94487,1,North America +2024-11-06,95152,6314,"[""Tablet"", ""Headphones""]",337.25,"{""loyalty"": ""15%""}",184126,0,Europe +2023-04-28,95153,6049,"[""Wireless Mouse""]",3980.24,{},278137,0,North America +2024-04-20,95154,8564,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4193.42,"{""loyalty"": ""16%""}",243697,1,South America +2024-06-14,95155,957,"[""Charger"", ""Laptop""]",4785.49,"{""seasonal"": ""27%""}",237375,0,Europe +2023-03-03,95156,6496,"[""Monitor"", ""Phone""]",4591.85,"{"""": ""27%""}",47960,1,Europe +2024-07-08,95157,7779,"[""Phone""]",460.09,"{""promo"": ""30%""}",245939,0,Africa +2024-07-25,95158,8977,"[""Phone"", ""Keyboard""]",3471.48,"{""seasonal"": ""10%""}",192404,1,South America +2024-06-10,95159,442,"[""Charger"", ""Phone"", ""Headphones""]",1687.08,{},172684,1,Africa +2023-11-05,95160,7215,"[""Charger"", ""Laptop""]",4676.88,{},107734,1,South America +2023-10-10,95161,1642,"[""Wireless Mouse"", ""Phone""]",89.31,"{""promo"": ""15%""}",7307,1,South America +2024-01-16,95162,7197,"[""Tablet"", ""Laptop""]",112.49,"{""loyalty"": ""24%""}",172991,0,South America +2024-01-26,95163,7154,"[""Tablet"", ""Wireless Mouse""]",3026.0,{},88705,0,Europe +2024-09-14,95164,3050,"[""Keyboard"", ""Headphones"", ""Tablet""]",2745.39,"{""loyalty"": ""24%""}",59422,0,Europe +2024-08-10,95165,6256,"[""Headphones"", ""Wireless Mouse""]",4665.83,{},270476,0,Asia +2024-08-07,95166,8414,"[""Monitor""]",1849.7,"{"""": ""10%""}",294928,0,South America +2023-02-22,95167,4922,"[""Keyboard""]",2567.4,"{"""": ""23%""}",21448,1,Europe +2023-10-11,95168,9394,"[""Tablet""]",3096.03,{},167104,0,Asia +2024-04-27,95169,6999,"[""Tablet""]",3177.2,{},156536,1,Europe +2024-10-22,95170,6433,"[""Headphones""]",713.2,{},94413,1,North America +2024-03-29,95171,5680,"[""Charger""]",1960.08,{},179979,0,Europe +2024-09-10,95172,2943,"[""Tablet"", ""Phone""]",4523.69,"{"""": ""8%""}",135342,1,South America +2024-11-10,95173,6405,"[""Keyboard"", ""Phone""]",3664.71,"{""seasonal"": ""23%""}",63418,1,North America +2023-10-01,95174,6102,"[""Phone""]",3856.17,{},115932,0,South America +2023-10-17,95175,3776,"[""Phone"", ""Wireless Mouse"", ""Charger""]",140.89,{},123907,0,South America +2024-06-11,95176,262,"[""Laptop"", ""Wireless Mouse""]",3707.06,"{""seasonal"": ""10%""}",57575,0,Asia +2023-10-12,95177,5630,"[""Headphones"", ""Laptop"", ""Keyboard""]",4567.68,{},11628,1,Europe +2023-06-25,95178,9843,"[""Phone""]",4622.96,"{""promo"": ""5%""}",280628,0,Africa +2024-07-23,95179,6086,"[""Monitor"", ""Wireless Mouse"", ""Charger""]",3311.52,{},70919,0,North America +2023-06-19,95180,548,"[""Headphones"", ""Laptop"", ""Phone""]",4243.43,"{""seasonal"": ""27%""}",269670,0,North America +2023-09-13,95181,7063,"[""Keyboard"", ""Monitor""]",2264.77,"{"""": ""21%""}",55200,0,North America +2023-03-23,95182,8270,"[""Phone""]",4153.85,"{""seasonal"": ""21%""}",144264,1,Asia +2023-10-11,95183,2524,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",2511.54,{},285492,1,South America +2023-03-01,95184,4453,"[""Tablet"", ""Phone""]",2308.32,{},133043,0,South America +2023-08-19,95185,3521,"[""Wireless Mouse"", ""Tablet""]",4908.9,"{""loyalty"": ""26%""}",215296,1,North America +2023-09-12,95186,470,"[""Charger"", ""Tablet"", ""Phone""]",3707.06,{},151445,0,Asia +2023-09-03,95187,3581,"[""Monitor"", ""Tablet"", ""Charger""]",367.19,"{""loyalty"": ""21%""}",237143,0,North America +2023-11-06,95188,6796,"[""Charger"", ""Keyboard"", ""Laptop""]",2997.3,"{""seasonal"": ""26%""}",108180,1,North America +2024-12-21,95189,2272,"[""Laptop""]",2390.97,{},270020,1,Africa +2024-02-17,95190,4604,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4852.39,"{""loyalty"": ""16%""}",78716,1,Europe +2023-12-21,95191,2131,"[""Headphones"", ""Phone""]",55.79,{},181858,0,Africa +2024-02-02,95192,3060,"[""Phone"", ""Headphones""]",4120.16,"{""seasonal"": ""26%""}",160175,1,Europe +2023-06-23,95193,8011,"[""Charger"", ""Phone"", ""Laptop""]",2276.03,{},213535,1,North America +2024-02-22,95194,8382,"[""Keyboard"", ""Tablet"", ""Headphones""]",1350.0,{},253886,0,Asia +2023-01-18,95195,1552,"[""Tablet""]",145.91,{},215609,1,North America +2023-05-13,95196,2310,"[""Tablet"", ""Laptop""]",2239.74,{},172962,0,South America +2024-03-20,95197,8400,"[""Tablet""]",1494.06,"{""loyalty"": ""20%""}",237955,0,North America +2023-05-10,95198,2998,"[""Keyboard"", ""Laptop"", ""Phone""]",299.08,{},172748,0,North America +2024-09-26,95199,5862,"[""Laptop"", ""Monitor"", ""Charger""]",948.39,{},66597,1,South America +2024-06-22,95200,1440,"[""Charger"", ""Headphones""]",2425.33,{},185552,1,Africa +2024-04-15,95201,1703,"[""Phone""]",4039.37,"{""seasonal"": ""24%""}",38292,0,Europe +2024-04-09,95202,8497,"[""Tablet"", ""Headphones"", ""Monitor""]",3344.3,{},3741,0,Asia +2024-03-06,95203,7387,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1046.05,"{""seasonal"": ""12%""}",149633,0,Europe +2024-10-14,95204,3334,"[""Charger"", ""Monitor""]",4907.27,{},161297,0,South America +2024-03-17,95205,6453,"[""Phone"", ""Headphones"", ""Tablet""]",2470.8,{},237102,1,South America +2023-11-28,95206,2450,"[""Keyboard""]",1188.64,"{""loyalty"": ""10%""}",41172,0,Asia +2023-12-21,95207,987,"[""Monitor""]",1365.98,{},113519,1,Europe +2024-04-07,95208,258,"[""Monitor"", ""Phone"", ""Tablet""]",2799.43,{},182863,1,Asia +2023-06-11,95209,8607,"[""Tablet"", ""Headphones"", ""Laptop""]",2566.03,"{"""": ""13%""}",63228,0,North America +2024-07-25,95210,9864,"[""Phone""]",4417.04,{},144720,0,Europe +2024-05-07,95211,835,"[""Wireless Mouse""]",3163.72,"{""promo"": ""26%""}",11358,1,Asia +2023-07-29,95212,2650,"[""Phone"", ""Tablet""]",4382.29,"{""seasonal"": ""28%""}",153981,0,Africa +2024-05-05,95213,9407,"[""Headphones""]",363.22,{},250321,1,South America +2024-09-19,95214,7174,"[""Monitor""]",2840.26,{},199866,1,South America +2024-10-28,95215,8124,"[""Tablet"", ""Keyboard""]",2324.99,"{""loyalty"": ""9%""}",173029,1,Europe +2023-12-02,95216,5977,"[""Laptop"", ""Tablet""]",4867.07,{},109974,1,Europe +2023-03-06,95217,8418,"[""Wireless Mouse"", ""Laptop""]",939.26,{},249293,0,South America +2023-04-18,95218,1605,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",444.29,{},234419,1,Europe +2024-08-24,95219,1400,"[""Charger"", ""Monitor"", ""Phone""]",3596.45,{},76862,1,North America +2023-08-27,95220,2081,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",1565.63,{},156953,0,Africa +2023-07-05,95221,9561,"[""Headphones"", ""Wireless Mouse""]",1995.44,{},19947,0,Asia +2023-12-31,95222,6465,"[""Wireless Mouse""]",3925.86,{},178966,0,Africa +2023-12-03,95223,7015,"[""Tablet"", ""Monitor"", ""Headphones""]",4426.39,{},29513,1,Asia +2023-07-07,95224,841,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3706.59,{},28188,0,South America +2023-09-08,95225,8805,"[""Tablet"", ""Laptop"", ""Phone""]",4090.74,{},47514,0,Africa +2023-02-17,95226,180,"[""Tablet"", ""Headphones""]",3391.87,{},144277,0,Europe +2023-06-23,95227,4435,"[""Monitor""]",255.07,{},68695,0,Africa +2024-07-18,95228,8384,"[""Monitor"", ""Tablet""]",4883.29,"{""seasonal"": ""24%""}",268717,1,North America +2023-05-11,95229,5725,"[""Laptop""]",760.53,{},15952,1,Europe +2024-07-07,95230,2368,"[""Laptop""]",525.43,{},61967,1,North America +2024-10-08,95231,4864,"[""Charger"", ""Monitor"", ""Phone""]",2881.77,"{"""": ""26%""}",172466,0,Asia +2024-10-05,95232,7164,"[""Laptop""]",2823.24,{},146657,1,North America +2023-01-05,95233,1767,"[""Charger""]",1317.7,{},1807,0,Asia +2024-08-01,95234,1134,"[""Headphones"", ""Wireless Mouse""]",4833.59,{},214398,0,South America +2024-04-17,95235,6999,"[""Wireless Mouse"", ""Phone""]",4726.95,{},45598,0,North America +2024-11-13,95236,6722,"[""Tablet"", ""Headphones""]",3739.79,"{""loyalty"": ""8%""}",17887,0,South America +2023-04-12,95237,5625,"[""Keyboard"", ""Monitor""]",3575.36,"{"""": ""29%""}",27591,1,Asia +2023-10-06,95238,5417,"[""Wireless Mouse"", ""Phone""]",3348.95,{},13898,1,Asia +2024-09-25,95239,4239,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",4433.06,"{""loyalty"": ""25%""}",289870,1,South America +2023-11-25,95240,9044,"[""Laptop""]",1283.87,"{""loyalty"": ""10%""}",235278,1,Europe +2024-04-27,95241,8861,"[""Charger"", ""Wireless Mouse""]",2774.21,"{""promo"": ""20%""}",259626,1,Asia +2023-10-31,95242,6125,"[""Wireless Mouse""]",1973.75,{},150206,1,North America +2023-12-03,95243,5649,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4449.07,{},55417,0,South America +2023-08-28,95244,8473,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",2127.12,"{""promo"": ""27%""}",171208,0,Africa +2024-06-25,95245,2004,"[""Headphones"", ""Wireless Mouse""]",1588.14,"{""loyalty"": ""26%""}",186806,0,Asia +2024-01-14,95246,8057,"[""Tablet"", ""Headphones"", ""Charger""]",4761.71,{},153508,0,North America +2024-09-22,95247,9578,"[""Phone"", ""Tablet"", ""Headphones""]",2417.25,"{""loyalty"": ""8%""}",84748,0,Asia +2023-02-14,95248,9859,"[""Laptop"", ""Monitor"", ""Charger""]",2194.29,{},257977,1,South America +2023-03-15,95249,5924,"[""Monitor"", ""Laptop"", ""Charger""]",2696.18,{},113381,1,Europe +2023-01-26,95250,2930,"[""Laptop"", ""Phone""]",1487.68,"{""seasonal"": ""12%""}",27173,1,Europe +2024-10-14,95251,126,"[""Laptop""]",1144.98,{},286364,0,North America +2024-11-06,95252,1834,"[""Charger"", ""Monitor"", ""Headphones""]",2519.22,{},170083,0,Asia +2023-01-12,95253,4464,"[""Tablet""]",4123.38,{},265363,1,Asia +2024-03-11,95254,9207,"[""Keyboard""]",4978.69,{},282001,1,South America +2023-04-06,95255,9872,"[""Keyboard"", ""Monitor""]",3712.97,"{"""": ""25%""}",157285,0,Europe +2024-12-04,95256,8933,"[""Wireless Mouse""]",4826.26,{},176004,1,South America +2023-04-13,95257,3881,"[""Headphones""]",4826.76,{},286337,0,Asia +2024-01-16,95258,8501,"[""Laptop""]",1162.41,"{""loyalty"": ""26%""}",108499,1,North America +2024-09-09,95259,149,"[""Charger"", ""Phone""]",2006.99,{},194807,1,South America +2024-08-03,95260,502,"[""Charger"", ""Wireless Mouse""]",446.09,{},145645,1,Europe +2024-08-12,95261,17,"[""Charger"", ""Headphones"", ""Laptop""]",3847.5,{},282396,1,South America +2024-04-13,95262,1165,"[""Wireless Mouse""]",3449.88,"{"""": ""20%""}",32191,0,Asia +2023-05-12,95263,4414,"[""Monitor""]",4024.47,"{""loyalty"": ""27%""}",52809,0,Africa +2023-06-06,95264,4532,"[""Wireless Mouse""]",875.41,"{""seasonal"": ""23%""}",57872,0,Africa +2023-05-27,95265,3120,"[""Laptop""]",1815.65,"{""loyalty"": ""21%""}",3801,1,North America +2023-11-16,95266,5317,"[""Headphones"", ""Wireless Mouse""]",2291.32,"{""promo"": ""13%""}",121937,0,Europe +2024-11-23,95267,4646,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",2008.05,{},281557,0,Africa +2024-05-17,95268,3352,"[""Laptop"", ""Headphones""]",4723.86,"{""loyalty"": ""9%""}",16115,1,North America +2024-01-24,95269,7963,"[""Wireless Mouse""]",1795.42,{},133032,1,Africa +2024-02-11,95270,7095,"[""Headphones"", ""Monitor"", ""Laptop""]",2475.61,"{"""": ""5%""}",244259,1,Asia +2023-06-28,95271,7623,"[""Monitor"", ""Laptop"", ""Headphones""]",1840.23,"{""loyalty"": ""23%""}",213317,1,Asia +2024-11-07,95272,5040,"[""Monitor""]",912.7,{},139994,1,Asia +2024-07-12,95273,1491,"[""Keyboard""]",207.06,"{""loyalty"": ""22%""}",249165,1,Africa +2023-06-17,95274,7651,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4410.77,"{""seasonal"": ""22%""}",1351,1,North America +2023-07-22,95275,1487,"[""Laptop""]",1330.06,{},251928,0,North America +2023-09-14,95276,1240,"[""Monitor"", ""Charger"", ""Keyboard""]",1988.99,"{""seasonal"": ""19%""}",170796,0,South America +2024-09-29,95277,9560,"[""Wireless Mouse"", ""Phone""]",3700.92,{},191474,1,Africa +2023-03-12,95278,3610,"[""Monitor"", ""Laptop"", ""Headphones""]",1046.74,{},280764,0,Africa +2024-06-05,95279,5200,"[""Headphones""]",3641.31,"{""seasonal"": ""7%""}",199107,1,South America +2024-02-19,95280,9972,"[""Keyboard""]",777.21,{},152920,1,Africa +2023-10-12,95281,9364,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3977.49,{},75922,1,North America +2024-06-09,95282,8099,"[""Charger""]",1372.22,{},288005,0,Africa +2024-08-06,95283,1174,"[""Laptop"", ""Charger"", ""Monitor""]",3277.09,{},70449,1,Africa +2024-06-11,95284,7048,"[""Charger"", ""Phone""]",2069.89,"{"""": ""19%""}",246847,0,North America +2023-04-23,95285,7800,"[""Charger"", ""Headphones"", ""Keyboard""]",4729.04,"{"""": ""10%""}",128742,1,Asia +2023-11-26,95286,2967,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",3503.75,{},104637,0,South America +2024-12-29,95287,4370,"[""Wireless Mouse""]",1893.94,{},184641,1,Europe +2024-04-11,95288,2149,"[""Charger"", ""Laptop"", ""Tablet""]",1058.19,{},220156,1,South America +2024-05-07,95289,6420,"[""Tablet"", ""Laptop"", ""Monitor""]",2577.14,"{""loyalty"": ""13%""}",47508,0,Africa +2024-07-09,95290,2553,"[""Tablet""]",282.15,{},72359,1,South America +2024-12-30,95291,6367,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",2942.23,{},87511,1,North America +2024-02-09,95292,2968,"[""Headphones"", ""Charger""]",442.68,"{""promo"": ""28%""}",210001,0,North America +2024-06-03,95293,3460,"[""Headphones"", ""Laptop""]",2436.52,{},256421,0,North America +2023-05-05,95294,8955,"[""Charger"", ""Headphones""]",3727.96,"{""loyalty"": ""25%""}",35149,0,Asia +2024-09-12,95295,2176,"[""Laptop""]",2230.48,"{""loyalty"": ""23%""}",88124,1,South America +2024-06-20,95296,5838,"[""Headphones""]",3608.0,{},95797,1,Africa +2024-10-12,95297,9139,"[""Phone""]",3609.06,{},153545,0,South America +2024-03-26,95298,4443,"[""Charger"", ""Tablet""]",4837.78,{},105603,1,North America +2024-01-21,95299,8856,"[""Tablet""]",4942.74,"{""promo"": ""12%""}",264210,0,North America +2024-09-16,95300,1104,"[""Phone"", ""Tablet"", ""Charger""]",1727.81,"{"""": ""15%""}",10389,1,Europe +2024-11-21,95301,8383,"[""Monitor"", ""Laptop"", ""Headphones""]",236.42,{},62288,0,South America +2023-05-29,95302,5479,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4736.42,{},39900,1,Europe +2023-06-17,95303,9875,"[""Phone"", ""Headphones""]",3288.96,"{""seasonal"": ""15%""}",295521,0,South America +2023-08-08,95304,2856,"[""Tablet""]",2495.62,"{"""": ""6%""}",187316,1,Europe +2024-01-26,95305,8440,"[""Laptop""]",84.3,{},123187,1,Europe +2023-08-31,95306,2572,"[""Monitor""]",3337.35,{},27173,0,Europe +2024-12-05,95307,1532,"[""Monitor"", ""Tablet""]",4332.97,"{""seasonal"": ""7%""}",193619,1,South America +2024-02-24,95308,3581,"[""Headphones"", ""Monitor"", ""Keyboard""]",1882.88,"{""seasonal"": ""15%""}",99455,0,Europe +2024-03-14,95309,6271,"[""Wireless Mouse""]",2983.64,{},290272,1,North America +2023-11-17,95310,8230,"[""Headphones""]",2572.74,{},68028,0,South America +2024-08-18,95311,652,"[""Phone"", ""Monitor""]",2226.6,{},28292,0,South America +2024-08-11,95312,9515,"[""Charger"", ""Tablet"", ""Phone""]",3753.6,{},75028,0,Africa +2024-11-29,95313,1824,"[""Laptop"", ""Phone""]",1610.0,{},47589,0,Asia +2023-03-06,95314,3720,"[""Monitor"", ""Headphones"", ""Phone""]",471.96,"{""promo"": ""9%""}",84121,0,North America +2024-10-05,95315,5201,"[""Laptop""]",493.4,"{"""": ""5%""}",245482,1,Asia +2024-08-04,95316,3687,"[""Headphones"", ""Phone""]",2939.53,"{""seasonal"": ""17%""}",170651,0,Asia +2023-11-20,95317,9654,"[""Wireless Mouse""]",4462.41,{},167034,0,Africa +2024-04-20,95318,3293,"[""Wireless Mouse""]",708.63,"{""loyalty"": ""28%""}",36746,1,Europe +2023-11-11,95319,6916,"[""Charger"", ""Monitor"", ""Keyboard""]",3953.54,"{""seasonal"": ""18%""}",6111,0,South America +2024-11-08,95320,4242,"[""Monitor"", ""Wireless Mouse""]",1007.99,{},227377,1,North America +2024-11-03,95321,6850,"[""Monitor"", ""Phone""]",1654.42,{},164603,0,Asia +2023-04-06,95322,7670,"[""Tablet"", ""Laptop""]",4322.45,{},98855,0,Europe +2024-01-08,95323,256,"[""Headphones"", ""Phone""]",3884.98,"{""seasonal"": ""16%""}",209909,1,Asia +2023-07-05,95324,4797,"[""Laptop""]",814.97,"{"""": ""26%""}",5623,1,Asia +2024-08-20,95325,8580,"[""Headphones""]",3988.79,"{""loyalty"": ""23%""}",32955,1,Africa +2024-02-14,95326,153,"[""Keyboard"", ""Laptop"", ""Phone""]",685.41,"{""seasonal"": ""15%""}",249537,1,Europe +2024-09-27,95327,507,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3595.41,"{""promo"": ""22%""}",20172,0,Europe +2023-06-25,95328,7176,"[""Monitor"", ""Laptop"", ""Charger""]",4033.54,"{""promo"": ""24%""}",234429,0,Europe +2024-02-26,95329,8653,"[""Monitor"", ""Charger""]",3841.41,"{""loyalty"": ""24%""}",298264,0,Africa +2024-05-01,95330,1071,"[""Tablet"", ""Keyboard""]",1014.17,{},14428,1,South America +2023-08-11,95331,8952,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2298.07,"{"""": ""12%""}",109513,0,Europe +2023-09-19,95332,5979,"[""Monitor"", ""Keyboard""]",2122.41,{},76448,1,Europe +2023-07-19,95333,9141,"[""Phone""]",2822.22,"{""promo"": ""11%""}",53875,1,Europe +2024-07-22,95334,6337,"[""Monitor"", ""Headphones"", ""Charger""]",152.89,{},38863,0,North America +2024-01-07,95335,4537,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3024.19,"{""seasonal"": ""16%""}",226139,1,Europe +2024-01-12,95336,1670,"[""Keyboard"", ""Charger"", ""Laptop""]",2439.83,"{"""": ""13%""}",46004,1,Europe +2023-12-29,95337,1385,"[""Monitor""]",3179.99,"{""loyalty"": ""17%""}",18553,1,South America +2023-07-22,95338,1332,"[""Headphones"", ""Phone"", ""Tablet""]",261.04,"{""promo"": ""28%""}",191164,1,North America +2024-10-28,95339,8503,"[""Tablet""]",2791.62,{},126449,0,Africa +2023-11-01,95340,4888,"[""Charger"", ""Keyboard"", ""Tablet""]",1895.86,{},248433,0,North America +2024-06-12,95341,2381,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",2107.57,{},210692,0,Europe +2024-12-29,95342,971,"[""Charger"", ""Headphones""]",1190.1,"{""seasonal"": ""10%""}",168019,0,Europe +2024-03-04,95343,3278,"[""Phone"", ""Keyboard"", ""Charger""]",3872.3,"{""promo"": ""15%""}",71292,1,Asia +2023-09-17,95344,8918,"[""Laptop""]",1106.27,"{""seasonal"": ""19%""}",196710,0,South America +2024-08-10,95345,4170,"[""Wireless Mouse"", ""Keyboard""]",181.93,{},77615,0,North America +2023-10-14,95346,8952,"[""Phone""]",3704.61,{},35560,0,South America +2024-10-09,95347,4927,"[""Charger"", ""Wireless Mouse""]",3446.47,{},142986,0,Europe +2024-04-28,95348,7845,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",617.08,"{""loyalty"": ""25%""}",59162,0,Europe +2023-11-18,95349,8230,"[""Monitor"", ""Charger""]",180.21,"{""seasonal"": ""16%""}",196268,0,Asia +2023-06-24,95350,9663,"[""Charger""]",810.89,"{""seasonal"": ""25%""}",3022,0,Asia +2024-03-23,95351,7354,"[""Wireless Mouse"", ""Keyboard""]",951.46,{},234535,0,South America +2023-05-09,95352,377,"[""Monitor""]",4656.0,{},274244,1,Asia +2024-05-12,95353,4353,"[""Keyboard"", ""Monitor""]",3517.51,{},61985,0,North America +2024-05-12,95354,6390,"[""Laptop""]",4985.85,"{"""": ""22%""}",82290,1,Europe +2024-01-19,95355,5160,"[""Monitor"", ""Headphones"", ""Phone""]",4586.48,"{""seasonal"": ""30%""}",53971,0,Europe +2024-02-05,95356,2040,"[""Phone"", ""Tablet""]",1299.53,"{""seasonal"": ""26%""}",152021,0,South America +2024-12-23,95357,9852,"[""Headphones"", ""Keyboard""]",1871.93,"{"""": ""19%""}",202655,0,Africa +2024-04-29,95358,1916,"[""Tablet"", ""Charger""]",3366.27,{},22738,1,Africa +2024-06-22,95359,8597,"[""Phone"", ""Tablet""]",614.45,{},192058,0,South America +2023-08-17,95360,9382,"[""Tablet"", ""Charger"", ""Headphones""]",2739.22,{},18707,0,Asia +2023-10-31,95361,4715,"[""Charger""]",4941.38,"{""loyalty"": ""15%""}",237188,1,North America +2024-07-22,95362,6984,"[""Charger"", ""Headphones"", ""Laptop""]",1454.88,"{""seasonal"": ""22%""}",145938,0,South America +2024-05-05,95363,126,"[""Tablet"", ""Phone"", ""Headphones""]",773.49,{},211336,1,Asia +2023-10-13,95364,7771,"[""Monitor"", ""Phone""]",894.4,"{""loyalty"": ""21%""}",52254,0,South America +2024-04-30,95365,4760,"[""Charger""]",4617.87,"{""loyalty"": ""20%""}",160196,1,North America +2024-10-15,95366,2832,"[""Laptop"", ""Wireless Mouse""]",4023.33,"{""loyalty"": ""11%""}",19864,0,Asia +2023-10-25,95367,1981,"[""Phone"", ""Monitor"", ""Keyboard""]",4925.86,"{"""": ""30%""}",254128,1,Asia +2023-03-07,95368,702,"[""Phone"", ""Charger""]",2057.5,{},124986,1,South America +2024-05-05,95369,6729,"[""Headphones""]",1279.99,{},286991,0,North America +2023-10-01,95370,3625,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",1995.35,{},75424,0,Asia +2023-05-21,95371,2457,"[""Laptop"", ""Charger"", ""Monitor""]",4142.42,{},206319,0,Asia +2023-07-01,95372,2342,"[""Monitor"", ""Headphones"", ""Charger""]",1496.45,{},291021,1,North America +2023-01-23,95373,7683,"[""Tablet"", ""Wireless Mouse""]",1224.19,{},246707,0,South America +2023-06-13,95374,2833,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",866.59,{},205455,1,South America +2024-05-01,95375,5241,"[""Laptop"", ""Keyboard"", ""Headphones""]",2532.27,"{""promo"": ""5%""}",167554,1,Asia +2024-12-13,95376,8877,"[""Laptop"", ""Phone""]",3881.38,"{""loyalty"": ""15%""}",229614,0,Asia +2023-12-16,95377,9959,"[""Monitor"", ""Laptop"", ""Keyboard""]",1210.16,"{""loyalty"": ""28%""}",175016,0,South America +2024-05-13,95378,2156,"[""Charger""]",3572.14,"{""promo"": ""13%""}",159167,0,South America +2024-01-20,95379,8308,"[""Phone""]",3709.64,{},54311,0,Africa +2024-07-18,95380,4898,"[""Monitor"", ""Phone"", ""Charger""]",724.29,"{"""": ""12%""}",59956,0,Asia +2023-01-10,95381,2490,"[""Phone""]",466.55,"{""seasonal"": ""23%""}",40851,1,Africa +2023-04-22,95382,3856,"[""Monitor"", ""Keyboard"", ""Headphones""]",1236.97,{},93531,0,Europe +2024-05-15,95383,122,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3468.38,"{""loyalty"": ""20%""}",27514,0,South America +2024-10-07,95384,4700,"[""Phone""]",1883.88,"{""promo"": ""7%""}",84441,0,Europe +2023-07-30,95385,489,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",805.2,{},284404,0,South America +2023-03-21,95386,10000,"[""Charger""]",1714.61,"{""loyalty"": ""22%""}",50942,1,Africa +2024-09-26,95387,8682,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",794.14,{},215089,1,North America +2023-10-30,95388,8328,"[""Keyboard"", ""Monitor"", ""Charger""]",2933.01,"{"""": ""16%""}",24250,1,Asia +2024-05-04,95389,7271,"[""Keyboard"", ""Laptop""]",1851.97,"{""loyalty"": ""27%""}",158996,0,Europe +2024-02-03,95390,5710,"[""Phone"", ""Laptop"", ""Charger""]",1116.16,{},299722,1,Asia +2023-04-08,95391,9699,"[""Phone""]",1610.81,"{"""": ""24%""}",28287,1,Asia +2023-08-27,95392,3768,"[""Monitor"", ""Phone""]",4405.39,"{""promo"": ""28%""}",120596,1,Asia +2023-09-06,95393,4185,"[""Laptop"", ""Headphones"", ""Tablet""]",4467.21,"{""loyalty"": ""15%""}",177546,1,Europe +2023-06-24,95394,9451,"[""Laptop"", ""Monitor"", ""Phone""]",3946.8,{},22394,0,North America +2024-02-12,95395,2049,"[""Headphones"", ""Tablet""]",1362.65,{},219616,0,Asia +2024-10-10,95396,5174,"[""Charger"", ""Wireless Mouse""]",1608.86,"{""loyalty"": ""23%""}",15420,0,Europe +2024-05-05,95397,4637,"[""Keyboard"", ""Monitor"", ""Laptop""]",3309.26,"{"""": ""19%""}",20532,1,North America +2024-01-29,95398,5817,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1921.99,{},129450,1,South America +2024-05-17,95399,387,"[""Keyboard"", ""Tablet""]",3969.35,"{""promo"": ""14%""}",295452,0,North America +2023-12-17,95400,2973,"[""Tablet""]",4089.12,"{"""": ""21%""}",183731,1,Europe +2024-07-13,95401,5525,"[""Headphones"", ""Monitor""]",2653.03,{},141064,1,Asia +2024-06-18,95402,5654,"[""Keyboard""]",2711.85,{},95777,0,Asia +2024-08-21,95403,9136,"[""Headphones"", ""Tablet"", ""Laptop""]",2222.66,{},125048,1,Africa +2023-06-05,95404,3461,"[""Monitor""]",1334.15,{},256013,1,North America +2023-07-08,95405,2285,"[""Headphones""]",3236.73,{},243879,1,Africa +2024-02-08,95406,2081,"[""Wireless Mouse""]",3189.42,"{"""": ""29%""}",207486,1,North America +2023-05-19,95407,4400,"[""Laptop""]",3448.6,"{""loyalty"": ""25%""}",241491,1,South America +2023-06-25,95408,950,"[""Charger""]",2705.79,{},248319,0,Asia +2023-05-15,95409,4603,"[""Headphones"", ""Keyboard"", ""Charger""]",3523.35,"{""seasonal"": ""6%""}",173111,0,Asia +2023-12-25,95410,4862,"[""Charger"", ""Tablet""]",3152.48,"{""seasonal"": ""27%""}",153758,0,South America +2024-10-27,95411,8728,"[""Headphones"", ""Tablet""]",4487.6,{},193682,0,Europe +2023-03-13,95412,3452,"[""Monitor""]",4640.04,"{""promo"": ""11%""}",2466,0,Europe +2023-11-03,95413,4306,"[""Monitor""]",920.79,{},157687,1,Europe +2023-10-19,95414,9471,"[""Monitor""]",2346.2,{},135609,1,Africa +2024-12-25,95415,6872,"[""Laptop"", ""Tablet""]",2098.4,"{""loyalty"": ""27%""}",288023,1,Asia +2023-07-02,95416,6598,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",657.46,{},94671,0,Asia +2024-05-28,95417,2145,"[""Monitor"", ""Laptop"", ""Headphones""]",754.58,"{"""": ""29%""}",188157,0,North America +2024-06-12,95418,7453,"[""Phone"", ""Laptop""]",400.87,{},250607,0,Africa +2024-11-07,95419,1161,"[""Wireless Mouse"", ""Laptop""]",276.93,{},209004,1,Asia +2023-12-04,95420,4556,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4177.57,"{""loyalty"": ""25%""}",172543,0,North America +2023-01-18,95421,920,"[""Keyboard"", ""Laptop"", ""Phone""]",3351.69,"{""promo"": ""28%""}",55051,0,South America +2023-07-12,95422,3072,"[""Keyboard""]",1975.09,{},172374,0,Africa +2023-06-06,95423,6319,"[""Keyboard""]",3892.67,{},148732,1,South America +2024-12-25,95424,8148,"[""Monitor"", ""Headphones""]",2103.62,"{""loyalty"": ""16%""}",141184,1,Africa +2024-07-21,95425,4344,"[""Tablet"", ""Laptop""]",1142.39,"{""loyalty"": ""11%""}",39532,0,Africa +2023-03-09,95426,5815,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1412.85,{},126408,0,Asia +2024-02-24,95427,3260,"[""Tablet"", ""Headphones""]",3318.99,"{""promo"": ""16%""}",182111,0,Africa +2024-01-17,95428,2151,"[""Wireless Mouse"", ""Headphones""]",1551.48,"{""loyalty"": ""27%""}",246871,0,South America +2024-12-04,95429,7351,"[""Headphones""]",3025.71,"{""loyalty"": ""18%""}",112478,0,South America +2024-02-24,95430,7253,"[""Monitor""]",64.99,{},54241,1,Africa +2023-04-25,95431,527,"[""Phone"", ""Monitor""]",801.75,{},293837,1,North America +2024-12-05,95432,8903,"[""Laptop""]",2252.1,"{"""": ""6%""}",262152,0,Africa +2023-12-03,95433,1917,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3201.84,"{""loyalty"": ""14%""}",9611,1,Europe +2023-08-19,95434,9475,"[""Headphones"", ""Keyboard"", ""Tablet""]",4074.32,"{""loyalty"": ""9%""}",93065,0,Europe +2024-10-21,95435,5427,"[""Tablet"", ""Keyboard""]",2504.28,"{""loyalty"": ""8%""}",81499,1,North America +2023-11-08,95436,4193,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",3778.16,{},161341,1,North America +2023-11-05,95437,1334,"[""Tablet""]",4692.78,"{"""": ""18%""}",69071,0,North America +2023-04-28,95438,868,"[""Wireless Mouse""]",3830.7,"{""loyalty"": ""22%""}",113074,0,South America +2024-02-28,95439,5286,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",1053.95,"{""seasonal"": ""27%""}",299990,0,South America +2024-06-23,95440,5492,"[""Monitor""]",1006.07,{},79842,1,Europe +2023-10-22,95441,9207,"[""Phone""]",1397.83,"{"""": ""17%""}",264671,1,Africa +2023-01-16,95442,5048,"[""Phone""]",3553.93,{},9643,1,North America +2024-08-04,95443,4579,"[""Monitor""]",3297.15,"{""seasonal"": ""7%""}",243950,0,North America +2023-01-18,95444,6618,"[""Headphones"", ""Laptop""]",2070.93,"{""seasonal"": ""27%""}",26851,0,Asia +2024-10-04,95445,8416,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1656.72,"{""seasonal"": ""28%""}",242248,0,North America +2023-06-24,95446,9374,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3540.81,"{""loyalty"": ""19%""}",22826,1,North America +2023-02-21,95447,3397,"[""Charger"", ""Keyboard"", ""Laptop""]",496.59,"{""loyalty"": ""15%""}",221876,1,Africa +2023-08-06,95448,4569,"[""Charger"", ""Phone"", ""Laptop""]",3456.11,{},136099,0,Europe +2023-11-22,95449,5543,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",1228.52,"{""loyalty"": ""30%""}",45410,0,South America +2024-06-26,95450,771,"[""Tablet"", ""Laptop""]",172.27,{},15355,1,Asia +2023-09-09,95451,4121,"[""Headphones""]",4202.18,"{""promo"": ""25%""}",11093,1,Asia +2024-12-21,95452,2956,"[""Wireless Mouse""]",4095.01,{},292953,0,Asia +2024-04-12,95453,9841,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1046.19,{},163087,1,South America +2024-05-08,95454,8541,"[""Keyboard"", ""Charger""]",1465.83,{},211869,1,Africa +2024-06-24,95455,3108,"[""Monitor"", ""Wireless Mouse""]",2196.06,{},109346,0,North America +2023-05-30,95456,6567,"[""Tablet"", ""Charger"", ""Laptop""]",2502.87,{},142857,0,South America +2023-05-25,95457,8583,"[""Laptop""]",2916.02,{},119006,1,South America +2023-04-05,95458,4222,"[""Keyboard"", ""Phone""]",1946.22,{},220730,0,North America +2023-07-23,95459,6092,"[""Keyboard"", ""Charger"", ""Monitor""]",1561.04,{},236160,1,Europe +2024-01-17,95460,3594,"[""Keyboard"", ""Charger""]",1277.5,{},96639,0,North America +2023-09-05,95461,1088,"[""Monitor""]",3395.45,{},282660,0,South America +2024-06-28,95462,2986,"[""Tablet"", ""Keyboard""]",3604.33,"{""seasonal"": ""16%""}",12854,1,North America +2024-06-25,95463,4568,"[""Phone"", ""Keyboard""]",4996.65,{},189670,0,North America +2023-10-11,95464,4777,"[""Charger""]",3639.11,{},22179,0,Europe +2023-07-22,95465,2683,"[""Monitor""]",4378.33,"{""promo"": ""17%""}",63670,0,Asia +2023-12-07,95466,9971,"[""Phone"", ""Laptop"", ""Keyboard""]",2946.08,{},5322,1,North America +2024-07-20,95467,1769,"[""Wireless Mouse"", ""Keyboard""]",4789.15,{},12723,0,North America +2023-02-01,95468,5445,"[""Headphones""]",797.18,{},296342,0,Africa +2024-06-12,95469,6690,"[""Laptop"", ""Tablet"", ""Phone""]",4278.25,{},57761,1,Europe +2024-07-04,95470,4662,"[""Laptop""]",4052.07,"{"""": ""28%""}",44385,0,Europe +2024-06-25,95471,5722,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3412.67,{},102781,0,Asia +2023-09-22,95472,1980,"[""Monitor"", ""Tablet""]",993.02,"{""promo"": ""26%""}",267563,0,Africa +2024-05-24,95473,8970,"[""Tablet""]",539.26,"{""promo"": ""16%""}",38291,1,South America +2023-11-22,95474,1560,"[""Tablet""]",4453.24,"{""seasonal"": ""25%""}",170614,1,Africa +2024-01-31,95475,3691,"[""Headphones"", ""Charger""]",4041.65,"{""loyalty"": ""6%""}",273885,0,Africa +2023-08-10,95476,106,"[""Tablet"", ""Wireless Mouse""]",750.24,{},236165,1,Europe +2023-12-20,95477,3105,"[""Phone""]",1682.85,{},199201,0,Asia +2023-04-06,95478,2227,"[""Headphones"", ""Laptop"", ""Keyboard""]",4491.64,{},174904,0,Asia +2024-07-03,95479,263,"[""Keyboard"", ""Laptop""]",2870.34,{},292940,0,North America +2024-12-12,95480,6744,"[""Monitor"", ""Charger""]",566.74,{},259325,1,Asia +2024-07-08,95481,3313,"[""Keyboard"", ""Phone""]",1255.93,{},97423,1,Africa +2023-05-24,95482,2885,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1333.13,"{""promo"": ""18%""}",284554,0,Africa +2024-05-17,95483,5166,"[""Monitor"", ""Charger""]",2319.35,{},168172,0,Asia +2024-01-12,95484,5447,"[""Tablet"", ""Phone""]",4540.81,"{"""": ""23%""}",99222,1,Africa +2024-10-05,95485,7182,"[""Phone"", ""Headphones""]",734.61,"{"""": ""29%""}",212605,1,Asia +2023-03-10,95486,8799,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",2740.4,"{"""": ""29%""}",227874,0,Asia +2023-10-16,95487,2302,"[""Laptop""]",1193.74,"{"""": ""16%""}",92995,1,North America +2023-01-11,95488,9293,"[""Headphones"", ""Keyboard"", ""Laptop""]",4561.73,{},128812,0,Europe +2023-07-04,95489,1929,"[""Keyboard""]",4635.71,"{""seasonal"": ""15%""}",173910,1,Africa +2023-06-21,95490,1619,"[""Wireless Mouse""]",2821.41,{},197840,0,North America +2024-08-19,95491,6354,"[""Tablet"", ""Keyboard"", ""Phone""]",2496.71,"{"""": ""19%""}",25353,0,South America +2024-01-30,95492,2301,"[""Monitor"", ""Keyboard"", ""Charger""]",1825.66,{},176655,0,Asia +2023-01-03,95493,298,"[""Keyboard"", ""Headphones""]",214.56,"{"""": ""18%""}",61583,0,South America +2023-02-10,95494,2481,"[""Monitor"", ""Headphones"", ""Charger""]",2963.75,{},53469,0,Asia +2023-02-06,95495,7208,"[""Monitor"", ""Wireless Mouse""]",215.39,"{""seasonal"": ""8%""}",31207,1,North America +2024-08-01,95496,8813,"[""Tablet"", ""Wireless Mouse""]",2638.64,"{"""": ""7%""}",240229,0,North America +2024-08-20,95497,249,"[""Phone""]",3771.28,"{""promo"": ""10%""}",24263,1,North America +2024-03-27,95498,8713,"[""Keyboard""]",1051.49,{},182302,1,North America +2023-11-03,95499,5652,"[""Tablet"", ""Headphones""]",4238.52,{},272132,0,North America +2024-04-07,95500,2787,"[""Phone""]",3229.74,"{""seasonal"": ""5%""}",267835,0,Asia +2023-03-20,95501,838,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",4868.76,{},120410,1,Africa +2024-11-10,95502,7746,"[""Headphones"", ""Phone"", ""Laptop""]",1281.19,{},47529,0,Africa +2023-06-24,95503,9356,"[""Headphones"", ""Tablet"", ""Monitor""]",4299.89,"{"""": ""11%""}",73313,1,North America +2023-06-12,95504,134,"[""Keyboard"", ""Phone"", ""Laptop""]",4529.85,{},96022,0,Europe +2023-11-29,95505,3983,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4908.22,"{""promo"": ""10%""}",231256,1,Africa +2024-01-03,95506,92,"[""Phone"", ""Laptop""]",1451.52,"{""loyalty"": ""6%""}",166481,0,South America +2023-01-30,95507,9491,"[""Phone"", ""Monitor""]",4406.77,"{""seasonal"": ""7%""}",283579,0,Asia +2024-11-15,95508,4370,"[""Charger""]",919.49,{},58223,0,Africa +2024-02-18,95509,9122,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1762.43,"{"""": ""27%""}",226856,1,Asia +2023-04-28,95510,8759,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",518.14,{},270371,1,South America +2023-02-11,95511,4485,"[""Headphones"", ""Laptop""]",2611.83,{},260446,0,North America +2024-08-31,95512,3600,"[""Tablet"", ""Monitor"", ""Phone""]",801.88,{},211354,1,Africa +2023-02-12,95513,8346,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",1937.68,{},223997,1,Africa +2023-02-06,95514,2599,"[""Headphones"", ""Charger"", ""Phone""]",2052.23,{},142787,0,Europe +2024-05-15,95515,7171,"[""Headphones"", ""Laptop""]",1677.55,"{""promo"": ""29%""}",291609,0,South America +2023-04-26,95516,1400,"[""Charger"", ""Tablet"", ""Laptop""]",2844.22,{},146960,1,Europe +2023-09-18,95517,9983,"[""Headphones"", ""Wireless Mouse""]",607.73,{},150757,0,Europe +2024-04-13,95518,3346,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",4644.05,{},104719,1,Africa +2023-07-10,95519,3926,"[""Keyboard""]",2797.9,{},91501,1,South America +2024-08-19,95520,5730,"[""Charger""]",2469.91,{},41801,1,North America +2023-08-30,95521,5109,"[""Tablet""]",615.65,"{""seasonal"": ""7%""}",130356,1,Asia +2023-08-29,95522,9854,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4968.29,"{""loyalty"": ""26%""}",103844,0,Africa +2024-06-02,95523,5792,"[""Wireless Mouse""]",150.57,{},234966,1,Asia +2024-06-15,95524,2967,"[""Keyboard"", ""Charger"", ""Phone""]",574.28,{},159675,1,Europe +2023-01-24,95525,8315,"[""Laptop""]",3003.31,{},55560,0,North America +2023-03-01,95526,5676,"[""Phone""]",4983.18,{},256113,0,North America +2024-01-31,95527,8110,"[""Phone"", ""Headphones""]",3160.97,"{""promo"": ""18%""}",77865,1,Asia +2023-11-17,95528,9611,"[""Headphones""]",703.94,"{""seasonal"": ""17%""}",5166,1,Europe +2023-09-19,95529,3798,"[""Monitor"", ""Tablet"", ""Laptop""]",2949.29,"{"""": ""25%""}",157836,1,South America +2024-09-17,95530,4645,"[""Monitor"", ""Keyboard""]",554.34,"{"""": ""30%""}",237648,0,South America +2024-04-20,95531,2022,"[""Charger"", ""Laptop"", ""Phone""]",3306.96,"{"""": ""10%""}",218476,1,North America +2024-06-11,95532,9149,"[""Charger"", ""Wireless Mouse""]",2766.59,"{"""": ""8%""}",263236,1,South America +2023-04-20,95533,2552,"[""Keyboard""]",4628.46,{},227100,0,South America +2023-08-23,95534,584,"[""Tablet"", ""Wireless Mouse""]",1692.28,"{""promo"": ""27%""}",35704,1,Europe +2023-02-08,95535,5496,"[""Phone""]",307.21,"{""promo"": ""5%""}",50506,0,Europe +2024-03-22,95536,7209,"[""Wireless Mouse"", ""Phone""]",381.51,{},204047,0,Asia +2023-09-30,95537,1838,"[""Monitor""]",1880.69,"{""seasonal"": ""7%""}",5466,0,South America +2023-10-14,95538,6584,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3413.61,{},23109,0,Asia +2024-06-03,95539,8651,"[""Headphones"", ""Laptop"", ""Tablet""]",1454.02,{},155470,0,Asia +2024-04-30,95540,9239,"[""Keyboard"", ""Charger"", ""Laptop""]",4125.23,{},144781,1,South America +2024-12-21,95541,192,"[""Keyboard""]",4941.92,"{"""": ""16%""}",23713,1,Africa +2023-12-03,95542,621,"[""Keyboard""]",427.84,{},63712,0,Asia +2023-05-19,95543,9591,"[""Keyboard""]",3175.19,"{""promo"": ""25%""}",258463,0,Europe +2023-07-18,95544,2742,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",4122.64,"{"""": ""5%""}",222948,1,South America +2024-04-20,95545,8613,"[""Laptop""]",3577.35,"{""promo"": ""16%""}",73445,0,Africa +2023-08-01,95546,142,"[""Monitor"", ""Tablet""]",1870.87,{},290860,1,Asia +2023-11-21,95547,4328,"[""Wireless Mouse"", ""Headphones""]",451.85,"{""loyalty"": ""11%""}",220725,0,Europe +2023-06-16,95548,2285,"[""Headphones"", ""Laptop""]",1023.3,{},78183,0,Africa +2024-11-10,95549,8412,"[""Charger"", ""Phone""]",625.45,{},293456,1,Africa +2023-08-08,95550,400,"[""Monitor"", ""Keyboard"", ""Phone""]",4102.44,{},247761,1,Asia +2023-06-03,95551,1777,"[""Monitor""]",1463.74,"{""promo"": ""9%""}",154556,0,Europe +2024-05-04,95552,9460,"[""Monitor"", ""Charger""]",1466.78,{},274336,0,South America +2023-01-14,95553,2995,"[""Tablet"", ""Wireless Mouse""]",4244.17,{},284913,1,Africa +2023-10-10,95554,1178,"[""Charger""]",281.33,{},119897,0,Asia +2023-06-22,95555,7934,"[""Charger"", ""Headphones""]",4390.54,"{"""": ""21%""}",102429,0,North America +2023-07-22,95556,546,"[""Monitor""]",4375.65,"{""seasonal"": ""12%""}",139322,1,Africa +2023-12-21,95557,3185,"[""Headphones""]",2549.78,"{"""": ""17%""}",155501,1,Asia +2023-10-27,95558,3618,"[""Phone"", ""Wireless Mouse"", ""Charger""]",2887.26,{},220048,0,Africa +2023-12-24,95559,4107,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3615.95,{},25055,1,Africa +2023-12-27,95560,6500,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2829.75,{},102945,1,Europe +2024-05-05,95561,4908,"[""Headphones"", ""Charger""]",787.28,{},79767,1,Asia +2024-05-28,95562,4852,"[""Keyboard"", ""Laptop""]",4923.77,{},98212,0,Asia +2023-05-05,95563,6426,"[""Wireless Mouse""]",4420.54,"{""seasonal"": ""14%""}",212188,0,Europe +2023-08-22,95564,4962,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",1775.33,{},285067,1,Europe +2023-11-15,95565,4571,"[""Charger""]",3392.39,{},289953,1,Africa +2023-12-24,95566,72,"[""Phone"", ""Keyboard""]",1873.13,"{""promo"": ""9%""}",180289,0,Asia +2024-04-22,95567,6221,"[""Tablet""]",4134.79,"{""promo"": ""19%""}",124649,1,Europe +2024-06-01,95568,9106,"[""Charger"", ""Monitor""]",4404.37,{},249986,0,Europe +2024-08-10,95569,3401,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",50.08,{},273668,1,Asia +2024-03-27,95570,534,"[""Laptop"", ""Headphones""]",2788.63,{},255289,1,Asia +2023-05-15,95571,1563,"[""Keyboard"", ""Laptop""]",2226.44,"{""loyalty"": ""13%""}",17724,0,Asia +2024-05-27,95572,589,"[""Headphones""]",2985.68,"{""seasonal"": ""27%""}",181805,0,Africa +2024-05-17,95573,4895,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4278.12,"{""seasonal"": ""18%""}",291565,0,Asia +2024-08-08,95574,7491,"[""Keyboard"", ""Tablet"", ""Monitor""]",903.62,{},299706,0,Africa +2023-12-28,95575,5167,"[""Charger"", ""Phone"", ""Headphones""]",3345.33,"{""loyalty"": ""6%""}",48479,0,Asia +2024-06-13,95576,4913,"[""Phone"", ""Laptop"", ""Keyboard""]",3209.77,{},40968,0,Africa +2023-06-04,95577,9041,"[""Charger"", ""Phone"", ""Laptop""]",4940.65,{},86190,1,South America +2024-12-29,95578,7741,"[""Monitor""]",3263.71,"{"""": ""27%""}",61450,1,North America +2023-02-14,95579,3616,"[""Wireless Mouse""]",4491.26,"{""seasonal"": ""28%""}",152486,0,South America +2024-11-18,95580,5624,"[""Charger""]",2985.49,{},279205,1,Asia +2024-03-31,95581,8367,"[""Headphones"", ""Keyboard""]",351.82,"{""loyalty"": ""10%""}",85944,1,Africa +2023-05-24,95582,7302,"[""Wireless Mouse"", ""Headphones""]",1430.63,{},158522,1,North America +2024-04-24,95583,6841,"[""Phone""]",4350.15,"{"""": ""16%""}",196722,1,Europe +2024-02-08,95584,5504,"[""Keyboard"", ""Phone""]",2969.48,"{""seasonal"": ""22%""}",39239,1,Asia +2024-01-15,95585,7781,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3432.02,"{""seasonal"": ""21%""}",138514,1,Europe +2023-03-04,95586,6526,"[""Keyboard"", ""Laptop""]",2121.23,{},179903,1,South America +2024-03-02,95587,514,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",1092.69,"{"""": ""23%""}",108210,0,South America +2024-08-20,95588,5263,"[""Keyboard"", ""Headphones""]",2469.9,{},49012,1,North America +2023-10-19,95589,7675,"[""Keyboard"", ""Headphones"", ""Phone""]",4811.55,"{""seasonal"": ""8%""}",232728,0,Africa +2023-12-28,95590,1231,"[""Phone"", ""Charger"", ""Monitor""]",832.31,"{"""": ""28%""}",173227,0,South America +2023-05-31,95591,5035,"[""Monitor"", ""Headphones""]",1644.32,{},188979,0,Africa +2024-07-15,95592,6196,"[""Keyboard""]",4451.15,{},218119,0,North America +2024-02-05,95593,1506,"[""Wireless Mouse"", ""Headphones""]",4390.14,"{""seasonal"": ""17%""}",227671,1,South America +2023-08-23,95594,8827,"[""Phone""]",3092.18,"{""loyalty"": ""9%""}",146616,1,South America +2024-04-01,95595,4735,"[""Headphones"", ""Keyboard"", ""Tablet""]",2998.93,{},103041,1,Asia +2024-05-03,95596,6762,"[""Monitor"", ""Wireless Mouse""]",4909.85,"{"""": ""5%""}",270702,0,Asia +2023-12-13,95597,4855,"[""Tablet"", ""Phone""]",2231.17,"{""loyalty"": ""29%""}",27399,1,North America +2023-09-07,95598,8717,"[""Wireless Mouse"", ""Laptop""]",3369.39,"{""loyalty"": ""21%""}",219388,0,Europe +2023-05-06,95599,6867,"[""Monitor""]",1161.95,{},270032,0,Asia +2024-07-21,95600,7373,"[""Headphones"", ""Monitor""]",1579.45,"{""seasonal"": ""16%""}",132425,0,North America +2024-01-04,95601,3816,"[""Phone""]",1232.09,{},266197,0,Africa +2024-09-15,95602,4554,"[""Charger"", ""Monitor""]",4925.99,{},76815,0,Africa +2024-03-12,95603,4766,"[""Charger"", ""Headphones"", ""Monitor""]",2418.21,"{"""": ""18%""}",284699,0,Europe +2024-05-25,95604,1534,"[""Wireless Mouse"", ""Keyboard""]",2733.53,"{""loyalty"": ""7%""}",113434,1,Africa +2024-06-27,95605,5037,"[""Laptop"", ""Phone"", ""Monitor""]",4270.53,"{"""": ""22%""}",172973,1,Asia +2024-11-26,95606,3090,"[""Charger"", ""Headphones"", ""Tablet""]",3253.01,"{"""": ""12%""}",81885,0,Europe +2023-11-11,95607,3703,"[""Keyboard""]",4819.86,"{"""": ""12%""}",187031,1,South America +2023-05-07,95608,8945,"[""Laptop"", ""Wireless Mouse""]",849.9,"{"""": ""8%""}",225097,0,Europe +2024-01-15,95609,8229,"[""Keyboard""]",1492.48,{},253169,1,Europe +2024-12-10,95610,2005,"[""Keyboard""]",1803.05,{},122524,1,Europe +2024-02-25,95611,5878,"[""Charger"", ""Headphones"", ""Laptop""]",272.22,{},276762,1,North America +2023-10-17,95612,3840,"[""Wireless Mouse""]",4757.96,"{""loyalty"": ""10%""}",22765,0,Europe +2024-09-03,95613,8414,"[""Keyboard"", ""Wireless Mouse""]",4319.78,{},226840,1,North America +2024-12-03,95614,1844,"[""Phone"", ""Tablet""]",4573.57,{},9133,0,North America +2023-04-07,95615,4924,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1918.91,{},58826,1,Asia +2023-09-28,95616,9457,"[""Keyboard"", ""Phone""]",1542.9,"{""seasonal"": ""13%""}",163112,1,Europe +2024-12-03,95617,2247,"[""Headphones"", ""Phone""]",1564.68,"{""seasonal"": ""17%""}",247777,0,Africa +2023-11-23,95618,2801,"[""Charger"", ""Headphones""]",3633.72,{},19521,1,Asia +2024-10-17,95619,3717,"[""Monitor""]",1344.68,"{""loyalty"": ""20%""}",290333,1,Europe +2024-12-03,95620,9241,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4361.65,"{"""": ""10%""}",97396,1,South America +2023-11-14,95621,3126,"[""Headphones"", ""Tablet"", ""Laptop""]",2417.67,{},104124,0,Africa +2023-08-16,95622,7284,"[""Monitor"", ""Phone""]",4240.33,{},40607,0,Asia +2024-11-09,95623,8609,"[""Charger"", ""Tablet"", ""Phone""]",1629.35,{},251481,1,Asia +2024-10-02,95624,1559,"[""Laptop""]",1782.5,{},191827,1,Africa +2024-01-11,95625,8963,"[""Phone""]",1137.04,"{""loyalty"": ""12%""}",136200,1,North America +2023-07-19,95626,917,"[""Laptop""]",2994.43,"{""seasonal"": ""20%""}",222443,1,North America +2024-11-11,95627,3820,"[""Headphones"", ""Keyboard"", ""Phone""]",4630.07,"{""loyalty"": ""12%""}",215345,0,South America +2024-04-18,95628,873,"[""Keyboard""]",4657.21,"{""loyalty"": ""18%""}",40423,1,South America +2024-03-03,95629,691,"[""Monitor"", ""Headphones""]",575.89,{},294986,1,South America +2023-03-28,95630,1507,"[""Headphones"", ""Charger""]",628.32,{},223264,0,North America +2023-08-17,95631,4489,"[""Charger""]",1955.87,"{""promo"": ""20%""}",282978,1,Europe +2023-09-07,95632,7261,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1474.37,"{""promo"": ""14%""}",159133,1,Africa +2023-03-17,95633,4291,"[""Laptop"", ""Charger"", ""Phone""]",4804.14,"{""loyalty"": ""12%""}",166729,1,Asia +2024-05-21,95634,2066,"[""Tablet"", ""Headphones"", ""Charger""]",541.94,"{""promo"": ""6%""}",50168,0,Asia +2023-06-16,95635,2696,"[""Monitor""]",1295.08,{},288751,1,South America +2023-08-30,95636,7510,"[""Charger""]",1788.45,{},216872,1,Asia +2024-03-20,95637,4233,"[""Headphones"", ""Monitor"", ""Tablet""]",1260.81,"{""seasonal"": ""23%""}",154966,1,Asia +2023-06-23,95638,9765,"[""Tablet"", ""Keyboard""]",3502.78,"{""promo"": ""26%""}",155773,0,South America +2023-09-22,95639,3960,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3010.58,"{""seasonal"": ""25%""}",130111,0,Asia +2023-08-11,95640,3913,"[""Phone"", ""Laptop"", ""Monitor""]",718.27,{},12594,0,Europe +2024-12-07,95641,3193,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3020.2,{},3835,0,North America +2024-10-20,95642,8235,"[""Phone"", ""Laptop""]",771.0,{},240471,0,Europe +2024-09-02,95643,5389,"[""Laptop""]",2403.68,"{"""": ""19%""}",214754,0,Europe +2024-09-11,95644,3221,"[""Tablet"", ""Headphones""]",844.33,{},63875,1,Asia +2023-03-08,95645,6631,"[""Laptop"", ""Phone""]",1378.82,{},174574,0,Africa +2023-10-25,95646,1578,"[""Charger"", ""Phone"", ""Headphones""]",4436.56,{},140719,1,Africa +2023-05-14,95647,1958,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4449.76,"{""promo"": ""24%""}",170832,1,Africa +2023-02-08,95648,4601,"[""Keyboard""]",3403.05,{},163005,1,Europe +2024-12-01,95649,7137,"[""Phone""]",3774.32,{},220837,1,Asia +2023-03-19,95650,4624,"[""Charger"", ""Wireless Mouse""]",3680.09,{},193397,1,Europe +2023-10-05,95651,8454,"[""Phone"", ""Headphones"", ""Charger""]",4510.91,"{"""": ""6%""}",115160,0,South America +2024-11-07,95652,2505,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4137.35,{},173575,0,Asia +2024-03-25,95653,3260,"[""Charger""]",2358.48,{},74241,1,South America +2023-01-03,95654,8622,"[""Tablet"", ""Monitor""]",1473.46,"{""seasonal"": ""17%""}",149310,0,Europe +2024-05-08,95655,7791,"[""Keyboard"", ""Charger""]",2851.97,"{""seasonal"": ""16%""}",49394,0,Europe +2023-03-03,95656,952,"[""Laptop"", ""Wireless Mouse""]",3369.47,"{""promo"": ""30%""}",96503,0,North America +2023-09-17,95657,9915,"[""Tablet"", ""Keyboard""]",4690.06,"{""loyalty"": ""5%""}",68891,1,Africa +2024-11-09,95658,8691,"[""Laptop"", ""Charger""]",4510.76,"{"""": ""14%""}",2955,1,Africa +2024-02-06,95659,6353,"[""Phone"", ""Keyboard""]",4508.6,"{""seasonal"": ""25%""}",286166,1,North America +2023-02-18,95660,2883,"[""Phone""]",931.18,"{""seasonal"": ""7%""}",96829,0,Europe +2023-08-26,95661,3188,"[""Phone"", ""Laptop""]",3618.94,"{""seasonal"": ""24%""}",199460,1,North America +2023-11-26,95662,8047,"[""Tablet""]",4982.31,{},271611,0,North America +2023-07-04,95663,5213,"[""Laptop""]",4411.56,"{"""": ""21%""}",267922,0,Europe +2023-01-18,95664,5056,"[""Monitor"", ""Laptop""]",2428.22,{},175346,1,North America +2024-01-16,95665,8087,"[""Wireless Mouse"", ""Monitor""]",4869.23,{},217322,1,Asia +2024-09-08,95666,7267,"[""Keyboard"", ""Laptop""]",4264.48,"{""loyalty"": ""24%""}",271422,1,North America +2023-04-26,95667,8168,"[""Keyboard"", ""Monitor""]",2642.25,"{""loyalty"": ""12%""}",211342,1,North America +2024-05-06,95668,7751,"[""Monitor""]",799.93,"{""loyalty"": ""6%""}",109827,0,North America +2023-04-24,95669,1147,"[""Tablet""]",3637.69,"{""promo"": ""29%""}",83001,1,Asia +2023-09-28,95670,4458,"[""Tablet""]",501.62,{},192552,1,South America +2024-05-12,95671,5841,"[""Charger""]",886.6,"{""seasonal"": ""29%""}",267276,0,North America +2023-08-29,95672,8481,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",2945.57,"{"""": ""10%""}",291712,1,South America +2023-07-18,95673,3237,"[""Charger"", ""Phone"", ""Monitor""]",795.22,{},268222,0,South America +2023-12-24,95674,9389,"[""Headphones"", ""Tablet"", ""Charger""]",1212.08,{},282826,1,Africa +2023-09-02,95675,4106,"[""Charger"", ""Monitor"", ""Tablet""]",4168.66,{},94974,1,Europe +2024-10-21,95676,7185,"[""Wireless Mouse""]",508.55,{},41476,1,Africa +2023-05-16,95677,7100,"[""Wireless Mouse""]",3529.76,"{""loyalty"": ""23%""}",82857,1,Asia +2024-01-20,95678,7430,"[""Keyboard""]",3188.43,{},46412,0,South America +2024-11-06,95679,4644,"[""Headphones""]",2301.32,"{"""": ""10%""}",200979,1,South America +2023-05-03,95680,1369,"[""Monitor""]",3216.21,"{""loyalty"": ""14%""}",94796,1,North America +2023-06-08,95681,2062,"[""Wireless Mouse"", ""Monitor""]",3252.92,{},8993,0,Africa +2024-08-11,95682,3665,"[""Phone"", ""Charger"", ""Monitor""]",3489.52,"{""loyalty"": ""28%""}",274218,0,Africa +2023-11-11,95683,5540,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",2157.04,"{""promo"": ""19%""}",272245,0,South America +2024-03-21,95684,8673,"[""Phone"", ""Charger""]",4715.85,"{"""": ""19%""}",211126,1,South America +2023-04-08,95685,6410,"[""Laptop"", ""Monitor"", ""Keyboard""]",4213.03,"{""loyalty"": ""7%""}",51405,0,Asia +2023-09-17,95686,8193,"[""Headphones""]",3579.33,{},182118,1,Europe +2023-01-31,95687,2775,"[""Charger""]",4433.27,"{"""": ""30%""}",191475,0,North America +2023-11-28,95688,3822,"[""Keyboard""]",3046.47,{},86469,1,North America +2023-12-06,95689,4918,"[""Headphones"", ""Monitor""]",771.76,{},45909,1,South America +2023-09-22,95690,9914,"[""Headphones""]",4229.47,{},45642,0,North America +2023-02-17,95691,5087,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3743.13,"{"""": ""24%""}",27546,1,North America +2023-06-23,95692,6145,"[""Monitor"", ""Charger"", ""Phone""]",1290.38,"{"""": ""27%""}",28798,1,South America +2023-11-03,95693,6152,"[""Wireless Mouse"", ""Laptop""]",270.5,"{"""": ""14%""}",94988,0,Asia +2024-12-03,95694,1674,"[""Phone""]",2932.65,"{""loyalty"": ""12%""}",270173,1,North America +2024-06-18,95695,9957,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",609.97,"{""promo"": ""29%""}",141095,0,North America +2024-03-10,95696,9814,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",472.34,"{""seasonal"": ""18%""}",258712,0,Africa +2023-05-12,95697,579,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",4194.9,"{""promo"": ""14%""}",285982,0,North America +2024-07-01,95698,7336,"[""Headphones""]",696.0,{},192083,0,Europe +2023-10-27,95699,7340,"[""Keyboard""]",232.44,"{""promo"": ""9%""}",227338,1,Europe +2024-02-16,95700,187,"[""Monitor"", ""Keyboard""]",2532.68,"{""loyalty"": ""19%""}",218113,1,Asia +2024-12-08,95701,476,"[""Keyboard"", ""Laptop""]",2187.99,{},102802,1,Europe +2023-05-06,95702,6786,"[""Phone""]",2556.11,"{"""": ""28%""}",256862,0,Asia +2024-07-22,95703,8857,"[""Phone"", ""Tablet""]",2953.43,"{""loyalty"": ""11%""}",288732,1,South America +2024-07-19,95704,6221,"[""Tablet"", ""Keyboard""]",3470.05,"{""promo"": ""8%""}",35416,1,Asia +2023-12-03,95705,99,"[""Laptop"", ""Phone"", ""Keyboard""]",866.03,"{"""": ""19%""}",257156,0,Asia +2023-09-07,95706,9761,"[""Tablet"", ""Phone""]",3060.52,{},64614,0,Africa +2024-05-25,95707,8997,"[""Charger"", ""Phone""]",4321.58,"{""seasonal"": ""27%""}",234561,0,Asia +2023-09-29,95708,6232,"[""Headphones""]",2356.19,"{"""": ""28%""}",185144,0,North America +2024-01-27,95709,6346,"[""Monitor""]",3271.6,{},102254,0,Europe +2024-01-23,95710,7058,"[""Charger"", ""Keyboard""]",3715.1,"{""promo"": ""18%""}",127476,1,Africa +2023-04-07,95711,2412,"[""Laptop""]",4354.39,{},125397,0,Asia +2023-10-18,95712,6099,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2185.08,"{""seasonal"": ""28%""}",170022,0,North America +2024-02-23,95713,4241,"[""Tablet"", ""Keyboard""]",3906.85,"{""loyalty"": ""30%""}",29737,1,South America +2024-08-14,95714,1142,"[""Keyboard"", ""Charger"", ""Monitor""]",594.24,{},32350,1,Europe +2024-09-13,95715,6286,"[""Phone"", ""Laptop""]",2477.78,{},26060,0,South America +2024-11-29,95716,9810,"[""Laptop"", ""Headphones""]",3397.53,"{""loyalty"": ""18%""}",44407,1,South America +2023-08-19,95717,2834,"[""Monitor"", ""Charger"", ""Laptop""]",1314.35,"{"""": ""18%""}",202063,0,Africa +2023-02-24,95718,3923,"[""Monitor"", ""Tablet"", ""Charger""]",897.36,{},11298,1,South America +2024-07-19,95719,9961,"[""Phone"", ""Wireless Mouse""]",2306.35,"{""loyalty"": ""21%""}",230004,1,Asia +2023-11-20,95720,9813,"[""Phone""]",4090.61,"{""loyalty"": ""18%""}",47938,0,Asia +2024-03-17,95721,6993,"[""Wireless Mouse""]",1695.34,{},128097,1,Europe +2023-04-16,95722,4849,"[""Tablet"", ""Phone""]",1860.35,"{""seasonal"": ""8%""}",236794,0,Asia +2023-07-09,95723,9339,"[""Tablet""]",4580.46,"{"""": ""22%""}",276506,0,North America +2024-09-22,95724,4701,"[""Headphones"", ""Laptop""]",1581.56,{},278947,0,Europe +2023-05-27,95725,9841,"[""Tablet"", ""Monitor""]",2982.71,"{""loyalty"": ""12%""}",131254,0,South America +2023-11-24,95726,5550,"[""Keyboard"", ""Charger"", ""Tablet""]",4231.29,"{"""": ""16%""}",210707,0,South America +2023-01-18,95727,6033,"[""Wireless Mouse""]",2217.88,{},32194,1,Africa +2023-01-15,95728,5406,"[""Laptop""]",2050.29,"{""promo"": ""5%""}",95917,1,Africa +2023-08-01,95729,7413,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",1554.62,"{"""": ""25%""}",31743,1,South America +2024-04-05,95730,9535,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3727.34,{},165809,1,Africa +2024-06-24,95731,4963,"[""Phone"", ""Headphones"", ""Keyboard""]",2280.12,"{""seasonal"": ""16%""}",177192,0,Europe +2024-10-18,95732,7382,"[""Keyboard""]",3559.17,"{"""": ""5%""}",70546,1,South America +2024-04-08,95733,6342,"[""Tablet""]",2219.12,{},156837,1,South America +2024-02-29,95734,2094,"[""Tablet"", ""Headphones"", ""Phone""]",1707.27,"{""seasonal"": ""6%""}",274024,0,North America +2024-08-21,95735,2054,"[""Headphones""]",4293.74,"{""seasonal"": ""28%""}",8011,1,Asia +2023-05-21,95736,201,"[""Phone"", ""Tablet"", ""Monitor""]",988.12,"{""loyalty"": ""18%""}",60673,0,Africa +2024-09-07,95737,6336,"[""Charger""]",3235.52,{},268641,1,Asia +2024-08-21,95738,2849,"[""Laptop"", ""Monitor""]",1534.17,{},217302,1,Africa +2023-02-15,95739,2530,"[""Wireless Mouse"", ""Charger""]",470.6,"{""seasonal"": ""27%""}",193488,0,Asia +2024-01-13,95740,4450,"[""Keyboard""]",191.01,{},14191,1,South America +2023-11-25,95741,3396,"[""Laptop"", ""Charger"", ""Headphones""]",520.7,{},267967,0,Asia +2024-10-08,95742,6620,"[""Keyboard"", ""Headphones""]",4064.0,"{""promo"": ""26%""}",213908,0,South America +2023-11-06,95743,1107,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3344.18,{},101683,0,Asia +2024-12-10,95744,9777,"[""Laptop"", ""Keyboard""]",1203.37,{},64136,1,Europe +2024-12-01,95745,798,"[""Laptop"", ""Wireless Mouse""]",859.39,"{""loyalty"": ""21%""}",33994,1,Asia +2024-11-30,95746,8553,"[""Monitor"", ""Charger"", ""Phone""]",2419.22,"{""seasonal"": ""10%""}",134435,1,Europe +2024-03-16,95747,1057,"[""Phone"", ""Monitor"", ""Charger""]",1330.31,"{""seasonal"": ""24%""}",15353,0,Asia +2024-10-23,95748,6447,"[""Keyboard"", ""Laptop""]",1251.03,"{"""": ""10%""}",142406,1,Asia +2024-06-28,95749,5146,"[""Monitor"", ""Laptop"", ""Keyboard""]",2579.68,{},81946,1,Africa +2023-08-06,95750,4099,"[""Phone"", ""Charger""]",2996.93,"{"""": ""6%""}",173677,1,South America +2024-04-10,95751,7167,"[""Laptop"", ""Headphones""]",834.47,"{""loyalty"": ""18%""}",54409,1,North America +2024-10-29,95752,8123,"[""Phone"", ""Charger""]",3891.31,"{"""": ""21%""}",250982,0,Africa +2023-08-07,95753,2187,"[""Laptop""]",4648.14,"{""loyalty"": ""5%""}",154942,1,North America +2023-06-07,95754,1099,"[""Wireless Mouse""]",3733.48,{},190764,0,South America +2024-11-20,95755,1053,"[""Phone""]",872.25,"{"""": ""17%""}",283634,1,Asia +2023-06-11,95756,641,"[""Charger"", ""Phone""]",4024.93,{},258705,1,South America +2024-10-21,95757,2334,"[""Tablet""]",947.41,"{""promo"": ""13%""}",246302,0,Asia +2023-08-02,95758,455,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",322.39,"{"""": ""23%""}",45635,1,North America +2023-09-25,95759,3392,"[""Wireless Mouse"", ""Charger""]",1096.49,{},208088,0,Europe +2024-02-08,95760,2469,"[""Wireless Mouse"", ""Charger""]",2579.21,"{""seasonal"": ""24%""}",121483,1,Asia +2023-10-05,95761,2491,"[""Monitor""]",3968.64,"{""loyalty"": ""24%""}",2200,0,Africa +2023-08-20,95762,2949,"[""Monitor""]",4748.44,"{""promo"": ""16%""}",56887,1,South America +2024-07-16,95763,3393,"[""Laptop"", ""Keyboard"", ""Headphones""]",1685.27,{},248708,0,Europe +2023-07-03,95764,1372,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2044.63,{},249490,0,Africa +2024-07-08,95765,7641,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",3586.69,{},63718,0,Asia +2024-06-01,95766,7778,"[""Tablet""]",3517.74,{},264540,0,Europe +2024-02-18,95767,1317,"[""Laptop"", ""Phone"", ""Headphones""]",929.18,{},113817,1,Asia +2023-10-03,95768,8353,"[""Headphones"", ""Laptop""]",4336.74,"{""promo"": ""20%""}",140470,1,Europe +2023-01-16,95769,8863,"[""Phone"", ""Laptop"", ""Tablet""]",4826.32,"{""loyalty"": ""11%""}",58863,0,Africa +2024-09-08,95770,9572,"[""Keyboard""]",3719.0,"{"""": ""17%""}",232115,0,Asia +2023-06-30,95771,3703,"[""Tablet"", ""Laptop""]",1789.58,{},80162,1,Africa +2024-06-26,95772,5406,"[""Tablet"", ""Phone""]",1084.81,"{""promo"": ""18%""}",297338,0,Africa +2023-06-28,95773,6560,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",112.76,{},183119,0,Europe +2023-12-29,95774,3344,"[""Monitor"", ""Tablet""]",3705.94,"{""promo"": ""19%""}",2622,1,Europe +2023-09-12,95775,8473,"[""Tablet"", ""Charger"", ""Monitor""]",1266.84,"{""seasonal"": ""15%""}",279484,1,Asia +2024-02-29,95776,3453,"[""Phone"", ""Monitor""]",2419.26,{},162271,1,Asia +2023-12-01,95777,1093,"[""Monitor"", ""Charger"", ""Phone""]",4292.17,"{""loyalty"": ""9%""}",44687,0,Africa +2024-07-26,95778,7585,"[""Monitor""]",1229.55,{},267711,1,North America +2024-02-05,95779,2241,"[""Keyboard"", ""Tablet""]",285.68,{},122916,0,Europe +2023-01-30,95780,5907,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1078.0,"{""promo"": ""30%""}",18943,1,Asia +2023-09-07,95781,2021,"[""Laptop"", ""Wireless Mouse""]",1175.15,"{""promo"": ""22%""}",227806,1,Africa +2024-12-30,95782,637,"[""Monitor"", ""Keyboard""]",2740.83,{},36501,0,Africa +2024-06-17,95783,5487,"[""Phone""]",3544.78,{},180731,1,North America +2023-10-07,95784,5118,"[""Keyboard"", ""Tablet"", ""Headphones""]",2634.37,"{""promo"": ""20%""}",60240,1,Africa +2023-04-29,95785,8340,"[""Keyboard"", ""Charger"", ""Headphones""]",3363.16,{},281598,0,North America +2024-09-22,95786,1260,"[""Phone"", ""Laptop"", ""Headphones""]",4914.2,{},116734,0,Europe +2024-01-08,95787,7844,"[""Tablet"", ""Phone"", ""Laptop""]",3151.47,{},165444,0,Europe +2023-01-02,95788,7183,"[""Laptop"", ""Keyboard""]",4576.09,"{""promo"": ""21%""}",186365,0,Asia +2023-01-02,95789,9865,"[""Headphones"", ""Tablet""]",1354.67,"{""loyalty"": ""24%""}",108958,0,Europe +2024-08-21,95790,9873,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4846.08,{},266737,0,Europe +2023-12-24,95791,5582,"[""Keyboard"", ""Phone"", ""Charger""]",4674.4,{},259992,1,Africa +2023-03-10,95792,2562,"[""Monitor""]",3364.33,{},267168,0,Africa +2023-03-30,95793,1390,"[""Headphones""]",1266.44,{},165688,0,North America +2023-04-01,95794,6665,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3450.39,"{""seasonal"": ""23%""}",21555,1,North America +2023-06-29,95795,1216,"[""Phone"", ""Keyboard"", ""Charger""]",1508.06,{},284085,1,South America +2023-09-24,95796,5595,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",4721.63,"{""loyalty"": ""18%""}",151997,0,South America +2023-03-19,95797,3759,"[""Keyboard"", ""Wireless Mouse""]",1887.4,{},141196,0,Asia +2023-06-07,95798,658,"[""Tablet""]",3114.92,{},273115,0,South America +2024-07-15,95799,7564,"[""Wireless Mouse""]",4282.73,"{""seasonal"": ""13%""}",128046,0,North America +2023-07-26,95800,472,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1266.71,{},51016,1,Asia +2023-10-11,95801,8782,"[""Headphones""]",848.43,"{"""": ""21%""}",203074,1,Europe +2024-02-13,95802,3000,"[""Charger"", ""Keyboard"", ""Phone""]",3650.51,{},102643,0,Asia +2023-12-15,95803,8125,"[""Monitor"", ""Laptop"", ""Keyboard""]",459.74,{},31525,0,North America +2023-07-04,95804,1798,"[""Wireless Mouse""]",749.26,"{""loyalty"": ""18%""}",98462,1,Asia +2023-09-15,95805,2502,"[""Charger""]",2845.17,{},181937,1,Africa +2023-07-09,95806,3256,"[""Headphones"", ""Tablet""]",3410.85,"{""seasonal"": ""22%""}",194275,1,Asia +2023-04-30,95807,152,"[""Tablet""]",1359.73,{},130618,1,Africa +2023-09-03,95808,3658,"[""Charger"", ""Headphones""]",1795.11,{},39605,0,South America +2024-07-21,95809,8749,"[""Monitor""]",1586.23,{},80595,0,Europe +2024-10-31,95810,97,"[""Tablet""]",4835.72,"{""seasonal"": ""7%""}",262442,0,North America +2024-05-23,95811,2834,"[""Monitor"", ""Charger"", ""Tablet""]",4184.0,{},33366,0,Europe +2024-01-21,95812,9174,"[""Wireless Mouse"", ""Tablet""]",2144.12,{},115613,0,Europe +2024-02-06,95813,1247,"[""Keyboard"", ""Phone"", ""Charger""]",3477.67,{},88786,1,North America +2024-10-16,95814,5002,"[""Laptop"", ""Phone"", ""Headphones""]",774.58,{},264912,1,Africa +2023-04-05,95815,8134,"[""Headphones"", ""Tablet""]",4877.29,"{""promo"": ""19%""}",282872,1,Europe +2023-04-15,95816,1421,"[""Headphones"", ""Charger"", ""Keyboard""]",2615.63,{},62647,1,North America +2024-03-28,95817,4525,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1196.62,{},127342,0,Europe +2023-06-06,95818,1712,"[""Laptop""]",4379.9,{},129385,0,Africa +2024-11-25,95819,4805,"[""Tablet""]",2817.32,"{""promo"": ""26%""}",168392,1,Asia +2023-11-04,95820,3427,"[""Keyboard"", ""Laptop""]",4946.5,"{""loyalty"": ""17%""}",193850,1,North America +2023-09-16,95821,3454,"[""Headphones"", ""Laptop"", ""Tablet""]",2606.63,{},260936,0,Asia +2023-12-21,95822,8501,"[""Tablet"", ""Laptop"", ""Charger""]",961.14,{},124653,1,North America +2023-05-07,95823,8204,"[""Keyboard""]",3600.74,"{""promo"": ""28%""}",189210,0,Asia +2023-07-31,95824,5859,"[""Tablet"", ""Laptop"", ""Phone""]",3670.11,"{""seasonal"": ""20%""}",71074,0,North America +2023-06-13,95825,4566,"[""Phone"", ""Charger"", ""Wireless Mouse""]",213.1,"{"""": ""25%""}",198603,0,Europe +2024-05-08,95826,3958,"[""Monitor"", ""Charger""]",473.38,{},103865,0,North America +2023-10-28,95827,6529,"[""Charger"", ""Wireless Mouse""]",903.43,"{""seasonal"": ""30%""}",174893,1,Asia +2023-04-10,95828,2035,"[""Monitor""]",4863.9,{},155646,0,North America +2023-06-11,95829,5310,"[""Wireless Mouse""]",1914.13,"{""promo"": ""27%""}",143963,1,Asia +2023-03-31,95830,2055,"[""Charger"", ""Monitor"", ""Tablet""]",2928.71,"{"""": ""8%""}",92005,0,Europe +2023-11-10,95831,3997,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1479.38,"{"""": ""5%""}",171720,0,South America +2024-11-26,95832,2198,"[""Charger""]",4732.99,{},19361,1,Europe +2023-07-14,95833,9365,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",1966.92,"{""promo"": ""29%""}",277814,0,Africa +2023-12-22,95834,1387,"[""Headphones"", ""Laptop"", ""Keyboard""]",107.33,"{""seasonal"": ""26%""}",159633,0,South America +2023-04-01,95835,4037,"[""Keyboard""]",3839.71,{},144797,1,Europe +2023-02-14,95836,566,"[""Phone"", ""Wireless Mouse""]",4409.09,{},264278,1,Asia +2023-07-11,95837,9754,"[""Wireless Mouse"", ""Keyboard""]",4208.95,"{""seasonal"": ""11%""}",104842,0,Europe +2024-12-21,95838,5356,"[""Tablet"", ""Charger"", ""Headphones""]",3708.77,{},136883,0,Asia +2024-06-03,95839,8094,"[""Headphones"", ""Tablet""]",2872.16,"{""seasonal"": ""8%""}",76061,1,North America +2023-03-30,95840,5924,"[""Charger"", ""Tablet"", ""Headphones""]",1385.62,{},151969,0,Africa +2023-08-31,95841,8203,"[""Keyboard"", ""Headphones""]",2614.05,"{"""": ""8%""}",1386,0,North America +2024-10-26,95842,3885,"[""Tablet"", ""Laptop""]",472.62,{},82150,0,South America +2023-07-13,95843,4732,"[""Keyboard"", ""Headphones""]",1347.85,"{""seasonal"": ""16%""}",67469,0,South America +2024-09-08,95844,3843,"[""Phone"", ""Monitor""]",4328.02,{},51880,1,North America +2023-06-02,95845,6499,"[""Wireless Mouse"", ""Charger""]",1131.24,"{""seasonal"": ""18%""}",117417,0,North America +2023-05-12,95846,9793,"[""Keyboard""]",1198.56,"{""loyalty"": ""19%""}",158712,0,Africa +2024-06-13,95847,1753,"[""Wireless Mouse"", ""Charger""]",539.21,"{""loyalty"": ""7%""}",165640,0,North America +2023-06-18,95848,5416,"[""Tablet""]",1040.93,"{"""": ""6%""}",52970,0,Africa +2023-12-13,95849,3606,"[""Keyboard"", ""Tablet"", ""Headphones""]",1351.98,"{""loyalty"": ""22%""}",223297,0,South America +2023-11-23,95850,7600,"[""Monitor""]",1548.76,"{""promo"": ""8%""}",18472,1,South America +2024-08-01,95851,1921,"[""Phone"", ""Tablet"", ""Laptop""]",2763.52,{},25412,0,North America +2024-09-02,95852,7883,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4637.55,"{""loyalty"": ""28%""}",24607,1,South America +2024-01-08,95853,2921,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",4434.22,{},186979,1,Asia +2023-12-24,95854,9542,"[""Laptop""]",185.79,{},141007,0,Asia +2023-03-19,95855,4969,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",4742.66,"{"""": ""23%""}",113965,0,South America +2023-07-08,95856,6372,"[""Charger""]",3468.94,"{""seasonal"": ""18%""}",33213,0,Africa +2024-06-18,95857,510,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4952.49,{},85695,1,North America +2024-02-21,95858,3618,"[""Headphones"", ""Tablet""]",2809.64,{},183674,0,North America +2023-05-31,95859,4402,"[""Headphones"", ""Laptop""]",1920.92,"{"""": ""15%""}",44203,1,South America +2023-07-12,95860,2632,"[""Charger"", ""Laptop"", ""Monitor""]",1069.98,{},180853,1,Europe +2023-01-03,95861,5327,"[""Charger"", ""Tablet""]",3463.68,"{"""": ""19%""}",217996,1,Asia +2024-06-29,95862,9398,"[""Phone""]",4237.89,"{"""": ""7%""}",10399,1,Asia +2024-12-02,95863,4939,"[""Monitor""]",4143.48,{},47005,0,Europe +2024-07-27,95864,7293,"[""Laptop"", ""Monitor"", ""Phone""]",3181.69,{},192725,0,South America +2023-07-30,95865,2407,"[""Headphones"", ""Keyboard""]",3381.56,{},283976,0,North America +2023-02-23,95866,1568,"[""Wireless Mouse""]",4426.58,{},48120,1,Africa +2023-05-17,95867,5180,"[""Charger"", ""Tablet""]",2649.41,{},161224,1,Europe +2023-01-06,95868,911,"[""Charger""]",3544.09,"{""loyalty"": ""25%""}",106893,0,South America +2023-10-08,95869,6747,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2704.01,{},76199,0,Europe +2023-07-08,95870,461,"[""Monitor""]",3200.64,{},284494,1,North America +2023-09-26,95871,258,"[""Monitor"", ""Wireless Mouse""]",411.5,{},31825,0,Asia +2023-03-30,95872,3341,"[""Monitor"", ""Wireless Mouse""]",2963.24,"{"""": ""24%""}",168812,1,North America +2024-07-26,95873,7258,"[""Phone""]",2773.61,{},138764,1,Africa +2023-02-13,95874,8694,"[""Wireless Mouse""]",2831.06,"{""loyalty"": ""24%""}",233069,1,Europe +2024-08-05,95875,6130,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1194.54,"{""seasonal"": ""24%""}",238770,1,South America +2024-10-04,95876,5660,"[""Wireless Mouse""]",206.4,{},298654,1,North America +2023-04-04,95877,8396,"[""Keyboard""]",99.05,"{""seasonal"": ""19%""}",11134,1,North America +2023-03-27,95878,6760,"[""Keyboard""]",4905.35,{},150559,1,Asia +2024-11-26,95879,9218,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",2223.76,{},131307,1,Europe +2024-10-03,95880,2077,"[""Laptop""]",4578.85,{},233638,0,South America +2023-03-22,95881,5507,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",4347.61,"{""promo"": ""5%""}",113070,1,North America +2023-11-29,95882,6536,"[""Monitor"", ""Laptop""]",3860.04,{},271626,1,Asia +2024-02-26,95883,7355,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4355.61,"{"""": ""12%""}",132122,0,Asia +2023-04-17,95884,5250,"[""Headphones"", ""Laptop""]",4968.5,{},256515,1,Africa +2023-12-09,95885,5216,"[""Charger"", ""Keyboard""]",2800.35,"{"""": ""14%""}",140904,0,South America +2024-10-14,95886,9578,"[""Laptop"", ""Phone""]",1428.83,{},239808,1,Africa +2024-07-26,95887,3330,"[""Charger"", ""Phone""]",2531.63,"{""seasonal"": ""21%""}",125715,1,North America +2023-04-18,95888,3573,"[""Keyboard""]",2466.2,"{"""": ""29%""}",222747,0,South America +2023-04-28,95889,4618,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",3189.19,{},234169,0,North America +2023-06-10,95890,2721,"[""Keyboard""]",3331.18,"{"""": ""23%""}",111205,1,Asia +2023-05-17,95891,6989,"[""Keyboard"", ""Laptop""]",2720.85,"{""seasonal"": ""25%""}",250466,1,Asia +2023-08-26,95892,2793,"[""Laptop""]",745.8,{},22730,1,South America +2023-06-16,95893,9659,"[""Keyboard""]",4178.35,"{""promo"": ""29%""}",12061,1,Europe +2024-07-21,95894,71,"[""Keyboard"", ""Phone""]",2517.77,{},154450,1,Africa +2024-02-22,95895,2909,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",2342.02,"{""promo"": ""24%""}",150010,0,South America +2024-11-29,95896,9066,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3635.23,{},29929,0,Africa +2024-12-24,95897,4421,"[""Monitor""]",2503.62,"{""promo"": ""21%""}",129920,1,Africa +2023-10-24,95898,2696,"[""Charger"", ""Tablet""]",4611.93,{},202867,1,South America +2024-10-26,95899,4841,"[""Charger""]",4224.52,"{""promo"": ""7%""}",198783,1,North America +2023-12-06,95900,6252,"[""Monitor""]",531.75,{},271719,1,Asia +2023-02-12,95901,4721,"[""Headphones"", ""Keyboard"", ""Monitor""]",1282.54,"{""promo"": ""5%""}",196061,1,Asia +2024-03-12,95902,6224,"[""Tablet"", ""Headphones"", ""Laptop""]",609.73,{},64841,1,Asia +2023-11-03,95903,3409,"[""Phone"", ""Tablet""]",881.04,"{""promo"": ""14%""}",296255,1,Africa +2023-05-28,95904,8902,"[""Tablet""]",4371.65,"{""seasonal"": ""21%""}",256657,0,Africa +2023-02-16,95905,230,"[""Monitor"", ""Tablet"", ""Laptop""]",2011.56,{},91535,0,Asia +2024-03-24,95906,2846,"[""Wireless Mouse""]",4700.81,{},120986,0,North America +2023-08-14,95907,9117,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",436.75,{},28954,1,North America +2023-04-24,95908,7079,"[""Charger""]",1652.41,{},46188,0,North America +2024-04-11,95909,4693,"[""Wireless Mouse""]",4889.8,{},1576,0,Europe +2024-05-04,95910,7256,"[""Wireless Mouse""]",1988.4,{},204142,0,North America +2023-04-11,95911,4741,"[""Charger"", ""Headphones""]",4648.74,{},283447,0,Africa +2023-04-19,95912,4959,"[""Charger"", ""Laptop""]",916.93,"{""seasonal"": ""29%""}",20747,0,Africa +2023-10-28,95913,7847,"[""Charger"", ""Monitor"", ""Phone""]",2897.72,"{""seasonal"": ""21%""}",176974,1,North America +2024-07-25,95914,7070,"[""Monitor""]",963.24,"{""seasonal"": ""9%""}",16653,1,Europe +2023-04-28,95915,6183,"[""Charger""]",3815.57,"{""seasonal"": ""5%""}",274306,1,Europe +2023-12-06,95916,4461,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",601.53,{},193842,0,Asia +2024-04-17,95917,6950,"[""Tablet""]",3828.19,{},92289,0,Africa +2023-05-21,95918,5885,"[""Keyboard""]",908.49,{},74435,0,Asia +2024-04-20,95919,5190,"[""Tablet""]",195.92,"{""promo"": ""21%""}",273817,1,South America +2023-10-20,95920,3362,"[""Laptop"", ""Phone""]",3941.54,"{"""": ""26%""}",125683,1,South America +2023-06-08,95921,9560,"[""Wireless Mouse"", ""Phone""]",4567.6,"{""promo"": ""24%""}",212500,1,North America +2024-11-09,95922,8734,"[""Monitor""]",3037.86,{},259170,1,Asia +2023-05-11,95923,3367,"[""Headphones""]",4828.88,{},165422,0,North America +2023-10-03,95924,354,"[""Wireless Mouse""]",4634.68,{},257696,1,Africa +2024-09-06,95925,9705,"[""Tablet"", ""Wireless Mouse""]",4957.3,{},271361,0,Africa +2024-08-20,95926,3486,"[""Monitor""]",4297.25,"{"""": ""25%""}",118845,0,North America +2024-02-10,95927,899,"[""Wireless Mouse"", ""Monitor""]",4908.46,"{""loyalty"": ""18%""}",216234,1,South America +2023-10-25,95928,1927,"[""Laptop""]",3042.01,"{""seasonal"": ""13%""}",4852,1,Europe +2024-05-19,95929,8399,"[""Phone"", ""Headphones""]",2491.84,"{"""": ""8%""}",113668,0,South America +2024-06-12,95930,4181,"[""Keyboard""]",844.95,"{""promo"": ""8%""}",247277,0,South America +2023-06-30,95931,7177,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3389.76,"{""loyalty"": ""27%""}",272373,0,Europe +2023-09-20,95932,4672,"[""Wireless Mouse"", ""Tablet""]",2308.58,"{""promo"": ""17%""}",13553,1,South America +2023-01-03,95933,4158,"[""Laptop"", ""Phone"", ""Charger""]",4851.77,{},167024,1,Europe +2023-03-12,95934,8427,"[""Monitor"", ""Phone""]",2129.36,"{""loyalty"": ""12%""}",197337,1,North America +2024-10-23,95935,8358,"[""Keyboard""]",1513.94,"{""loyalty"": ""29%""}",255385,1,South America +2024-08-23,95936,1514,"[""Monitor""]",2598.28,{},45149,0,Europe +2023-11-05,95937,4634,"[""Monitor""]",2863.83,{},196164,0,North America +2024-08-29,95938,4803,"[""Headphones""]",3829.03,"{""promo"": ""11%""}",181560,1,South America +2024-12-01,95939,1296,"[""Headphones""]",1795.83,"{"""": ""22%""}",91720,0,Europe +2024-09-29,95940,1641,"[""Monitor""]",4193.36,{},192729,1,Asia +2023-10-15,95941,9152,"[""Keyboard"", ""Laptop"", ""Charger""]",1221.36,{},278652,1,South America +2023-07-21,95942,3720,"[""Monitor"", ""Charger"", ""Headphones""]",681.94,"{"""": ""20%""}",252112,1,South America +2024-01-24,95943,7344,"[""Charger"", ""Laptop""]",4191.24,"{""seasonal"": ""19%""}",113234,1,Asia +2024-07-01,95944,9771,"[""Phone""]",2775.36,"{""promo"": ""13%""}",197170,0,Asia +2024-03-28,95945,768,"[""Wireless Mouse""]",810.76,{},238833,1,North America +2023-04-06,95946,6999,"[""Wireless Mouse"", ""Charger""]",63.18,"{""promo"": ""13%""}",82238,0,Asia +2024-11-07,95947,2768,"[""Phone"", ""Monitor""]",4059.98,{},9311,0,South America +2023-11-23,95948,9443,"[""Tablet"", ""Phone""]",371.53,"{"""": ""23%""}",226356,0,South America +2023-03-10,95949,4996,"[""Tablet""]",2115.3,{},69127,0,Europe +2023-09-16,95950,4983,"[""Keyboard"", ""Headphones"", ""Tablet""]",3765.12,"{""promo"": ""18%""}",252721,1,South America +2024-12-14,95951,6235,"[""Phone"", ""Charger""]",4254.19,{},23101,0,Asia +2024-06-07,95952,9970,"[""Laptop"", ""Wireless Mouse""]",3888.26,"{"""": ""21%""}",44493,1,South America +2024-12-31,95953,9188,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",2142.81,{},231676,0,Asia +2024-09-13,95954,427,"[""Phone"", ""Laptop""]",3216.35,"{""promo"": ""27%""}",120173,1,North America +2023-11-23,95955,4529,"[""Headphones"", ""Wireless Mouse""]",560.78,{},207682,0,Asia +2024-02-17,95956,447,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1297.75,"{""promo"": ""17%""}",205117,1,North America +2024-09-15,95957,7992,"[""Keyboard"", ""Monitor"", ""Phone""]",1697.21,{},233600,1,Europe +2024-11-21,95958,2956,"[""Tablet"", ""Phone"", ""Monitor""]",1027.51,"{""promo"": ""22%""}",154124,1,Europe +2024-09-13,95959,2124,"[""Laptop"", ""Keyboard""]",3491.63,"{""promo"": ""22%""}",200072,1,Asia +2023-10-13,95960,3203,"[""Wireless Mouse"", ""Headphones""]",2808.18,{},214934,0,South America +2024-12-13,95961,5389,"[""Charger"", ""Headphones""]",738.76,"{""promo"": ""21%""}",45514,1,South America +2023-01-11,95962,840,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1439.11,"{""promo"": ""7%""}",259247,1,Asia +2023-10-05,95963,4934,"[""Phone"", ""Headphones"", ""Laptop""]",4993.62,"{""promo"": ""28%""}",254446,0,Asia +2023-07-14,95964,5769,"[""Phone"", ""Charger"", ""Laptop""]",4239.02,"{""seasonal"": ""19%""}",137204,1,North America +2023-03-14,95965,84,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",3950.26,{},143625,1,North America +2024-10-02,95966,5462,"[""Phone"", ""Headphones"", ""Tablet""]",478.04,"{""seasonal"": ""16%""}",226503,1,South America +2023-08-02,95967,5140,"[""Laptop"", ""Wireless Mouse""]",1255.14,"{"""": ""17%""}",106764,1,South America +2024-10-18,95968,180,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",1058.87,{},208312,1,Asia +2024-07-30,95969,9616,"[""Laptop"", ""Keyboard""]",3325.65,{},24207,1,South America +2024-08-28,95970,1220,"[""Wireless Mouse""]",4116.0,"{""seasonal"": ""6%""}",68120,0,North America +2024-08-09,95971,1872,"[""Headphones""]",3180.15,{},163905,0,Europe +2024-11-16,95972,8646,"[""Tablet"", ""Laptop"", ""Charger""]",2462.89,"{""promo"": ""30%""}",29252,1,Europe +2023-03-19,95973,4499,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",1925.56,"{""promo"": ""15%""}",276396,1,Europe +2023-10-10,95974,9474,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",4432.55,"{""loyalty"": ""27%""}",98100,0,South America +2023-05-30,95975,5888,"[""Laptop""]",4497.74,{},242572,0,Africa +2024-07-10,95976,3905,"[""Monitor"", ""Tablet"", ""Laptop""]",65.01,"{""seasonal"": ""30%""}",169459,0,Europe +2023-02-26,95977,7916,"[""Phone"", ""Wireless Mouse""]",1277.06,{},54754,0,North America +2023-07-20,95978,6581,"[""Phone""]",4458.16,"{""loyalty"": ""29%""}",55155,0,North America +2023-10-03,95979,9465,"[""Charger""]",2673.72,"{""loyalty"": ""22%""}",7633,1,Europe +2023-02-01,95980,2905,"[""Laptop"", ""Phone"", ""Tablet""]",2284.68,"{""seasonal"": ""30%""}",167622,0,South America +2024-07-09,95981,5067,"[""Headphones"", ""Charger""]",2899.78,"{""loyalty"": ""15%""}",197678,0,North America +2023-11-04,95982,2201,"[""Laptop"", ""Charger"", ""Keyboard""]",3918.67,{},26464,1,Asia +2024-10-15,95983,4547,"[""Monitor"", ""Charger""]",2880.21,"{""seasonal"": ""28%""}",244566,0,Asia +2024-07-17,95984,8090,"[""Tablet""]",3610.26,{},205454,0,Europe +2023-03-14,95985,7408,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",1738.83,"{""seasonal"": ""22%""}",273040,0,Europe +2023-06-06,95986,6757,"[""Tablet""]",1286.05,{},225395,0,South America +2024-08-27,95987,8963,"[""Phone"", ""Headphones"", ""Charger""]",3829.3,"{""loyalty"": ""14%""}",280897,0,South America +2023-10-16,95988,7310,"[""Phone"", ""Laptop"", ""Charger""]",1671.34,"{""loyalty"": ""7%""}",212387,0,Asia +2024-03-11,95989,7025,"[""Tablet""]",685.74,"{"""": ""30%""}",139937,0,North America +2023-09-08,95990,3757,"[""Tablet"", ""Charger""]",4341.94,{},245657,1,Africa +2023-03-14,95991,1695,"[""Headphones"", ""Monitor""]",2701.21,"{""seasonal"": ""13%""}",48263,0,Africa +2024-06-24,95992,9292,"[""Monitor""]",4049.74,{},288419,0,Africa +2024-10-07,95993,6481,"[""Headphones"", ""Laptop""]",1581.08,{},167797,1,North America +2024-01-15,95994,7412,"[""Tablet""]",1927.39,{},211452,1,North America +2023-07-07,95995,181,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3020.82,"{"""": ""20%""}",152375,0,Asia +2023-06-11,95996,7619,"[""Laptop"", ""Keyboard""]",4696.51,"{""seasonal"": ""9%""}",10174,1,Europe +2024-09-21,95997,3262,"[""Keyboard""]",3610.07,"{""promo"": ""17%""}",166793,0,Asia +2024-07-05,95998,5137,"[""Charger"", ""Phone"", ""Keyboard""]",1041.65,{},232209,1,Africa +2023-01-10,95999,4767,"[""Phone"", ""Headphones""]",942.76,{},33724,0,South America +2024-10-11,96000,7097,"[""Phone""]",2517.92,"{"""": ""25%""}",2788,0,Africa +2024-03-02,96001,4150,"[""Wireless Mouse""]",4732.32,{},286911,1,Asia +2023-03-16,96002,6288,"[""Headphones"", ""Monitor"", ""Tablet""]",1855.09,"{""seasonal"": ""25%""}",194597,0,North America +2024-07-11,96003,3379,"[""Laptop""]",3637.19,"{"""": ""30%""}",171540,1,Asia +2023-10-16,96004,6056,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",2308.8,"{"""": ""10%""}",6424,1,Asia +2023-09-12,96005,841,"[""Monitor""]",4555.12,{},128358,0,Asia +2023-09-13,96006,9277,"[""Phone""]",3912.56,"{""seasonal"": ""5%""}",270687,1,North America +2023-11-02,96007,9745,"[""Wireless Mouse""]",3154.02,{},208841,0,Africa +2023-05-05,96008,7341,"[""Headphones"", ""Wireless Mouse""]",1778.86,{},207877,1,North America +2024-04-04,96009,1080,"[""Monitor""]",2897.91,"{""seasonal"": ""18%""}",138168,0,South America +2024-06-24,96010,6580,"[""Laptop"", ""Phone"", ""Monitor""]",2718.61,"{"""": ""24%""}",61047,1,Asia +2023-07-19,96011,967,"[""Laptop"", ""Headphones""]",1762.57,{},280811,1,Africa +2024-02-14,96012,580,"[""Headphones"", ""Phone"", ""Charger""]",137.63,"{"""": ""7%""}",223795,1,Europe +2024-11-13,96013,2788,"[""Phone""]",2597.5,"{""promo"": ""22%""}",207731,1,Asia +2024-06-21,96014,1361,"[""Wireless Mouse"", ""Tablet""]",2214.96,"{"""": ""6%""}",205644,0,Europe +2023-03-15,96015,3859,"[""Keyboard""]",2215.9,{},66553,0,North America +2024-04-18,96016,8245,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",461.85,{},142156,1,Europe +2023-09-18,96017,3514,"[""Laptop""]",3707.29,"{""seasonal"": ""9%""}",222159,0,Asia +2023-11-11,96018,1489,"[""Phone""]",2597.44,{},54056,1,Asia +2024-11-26,96019,6375,"[""Wireless Mouse""]",3952.7,{},13731,0,South America +2023-01-26,96020,2028,"[""Phone"", ""Headphones""]",4590.64,"{"""": ""19%""}",192644,0,Asia +2023-07-23,96021,1476,"[""Monitor""]",1183.14,"{""promo"": ""29%""}",125604,1,North America +2023-09-06,96022,8901,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2558.64,"{""seasonal"": ""14%""}",82964,1,Africa +2023-06-28,96023,8143,"[""Charger"", ""Monitor""]",2647.23,{},44633,0,North America +2024-10-06,96024,8614,"[""Monitor"", ""Wireless Mouse""]",1769.71,{},20688,1,Asia +2023-09-19,96025,3079,"[""Phone"", ""Monitor""]",3755.55,{},282225,0,Africa +2024-05-30,96026,7792,"[""Headphones"", ""Charger"", ""Monitor""]",2377.53,{},101451,1,Africa +2023-04-30,96027,5589,"[""Headphones"", ""Phone""]",995.76,{},73730,0,Africa +2024-06-13,96028,6705,"[""Monitor"", ""Headphones"", ""Laptop""]",4494.65,"{""seasonal"": ""8%""}",112758,1,Asia +2023-03-17,96029,2137,"[""Headphones""]",912.65,"{""loyalty"": ""20%""}",148760,0,Asia +2023-05-27,96030,9390,"[""Phone""]",4056.45,{},282854,1,South America +2023-11-29,96031,2749,"[""Headphones"", ""Phone""]",2464.19,{},92424,1,South America +2023-02-05,96032,7274,"[""Laptop""]",4371.92,{},203515,1,Asia +2024-08-19,96033,1392,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1824.86,"{""seasonal"": ""25%""}",75599,0,North America +2023-08-14,96034,7095,"[""Phone""]",3929.84,{},209677,0,Asia +2024-02-16,96035,2302,"[""Phone""]",2266.59,{},181686,1,North America +2023-02-20,96036,7417,"[""Headphones"", ""Monitor"", ""Tablet""]",2001.07,"{"""": ""23%""}",63771,1,Asia +2023-08-31,96037,4923,"[""Charger""]",646.73,"{""loyalty"": ""28%""}",254327,1,Asia +2024-03-11,96038,1944,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",3755.24,{},155122,1,North America +2024-11-02,96039,7027,"[""Laptop"", ""Phone""]",1571.02,"{"""": ""15%""}",103618,0,Africa +2023-05-18,96040,1650,"[""Wireless Mouse""]",3140.33,"{""seasonal"": ""28%""}",60546,1,Europe +2023-01-04,96041,4701,"[""Keyboard"", ""Monitor""]",3284.77,{},222315,0,Africa +2024-05-27,96042,812,"[""Phone"", ""Headphones""]",4590.95,"{""loyalty"": ""23%""}",263012,1,North America +2024-01-16,96043,7261,"[""Laptop"", ""Phone""]",1144.82,{},91981,1,South America +2024-01-23,96044,9888,"[""Phone"", ""Charger"", ""Keyboard""]",522.65,{},149260,0,North America +2024-10-30,96045,2628,"[""Tablet"", ""Laptop"", ""Keyboard""]",3334.43,{},139649,1,Africa +2024-07-26,96046,4335,"[""Charger""]",1437.54,{},220714,1,Europe +2024-02-09,96047,426,"[""Monitor"", ""Laptop"", ""Keyboard""]",1568.88,{},51912,1,Africa +2024-12-09,96048,4939,"[""Keyboard"", ""Tablet"", ""Monitor""]",423.62,{},128374,1,Europe +2024-11-11,96049,9317,"[""Keyboard""]",126.0,{},48270,0,Asia +2023-02-25,96050,1626,"[""Wireless Mouse"", ""Monitor""]",4034.16,{},11939,1,South America +2024-06-27,96051,9954,"[""Laptop"", ""Phone""]",4136.46,{},244748,0,North America +2024-04-21,96052,3909,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4725.36,{},230152,1,North America +2023-05-18,96053,2178,"[""Charger"", ""Monitor""]",1920.37,"{""promo"": ""9%""}",233181,0,North America +2023-09-20,96054,2053,"[""Keyboard"", ""Tablet"", ""Charger""]",602.44,{},132761,1,Asia +2024-09-14,96055,7825,"[""Headphones""]",1561.61,"{""loyalty"": ""23%""}",271732,0,Africa +2024-12-16,96056,749,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3284.39,"{""promo"": ""9%""}",196373,1,North America +2023-03-22,96057,44,"[""Monitor"", ""Wireless Mouse""]",1545.56,"{"""": ""15%""}",54055,1,North America +2024-06-02,96058,8275,"[""Keyboard"", ""Headphones"", ""Charger""]",2773.02,"{""promo"": ""25%""}",297293,1,South America +2024-07-31,96059,6150,"[""Keyboard"", ""Charger"", ""Tablet""]",3623.82,{},141635,1,Europe +2024-08-20,96060,7974,"[""Wireless Mouse""]",2391.98,"{""promo"": ""26%""}",156440,0,Europe +2024-10-24,96061,9390,"[""Headphones""]",3938.29,{},12997,1,Asia +2023-12-09,96062,5101,"[""Tablet"", ""Monitor"", ""Headphones""]",1459.7,{},83706,1,South America +2024-06-13,96063,893,"[""Wireless Mouse"", ""Headphones""]",2356.41,"{""seasonal"": ""9%""}",273088,0,Africa +2023-01-19,96064,2399,"[""Charger"", ""Phone""]",1901.41,{},100400,1,Africa +2023-12-13,96065,8073,"[""Keyboard""]",1334.0,{},196760,0,North America +2024-05-03,96066,3048,"[""Headphones"", ""Tablet""]",1815.04,"{""seasonal"": ""13%""}",188723,1,Asia +2023-09-05,96067,3918,"[""Wireless Mouse"", ""Tablet""]",4816.11,{},238318,1,Europe +2023-09-15,96068,3145,"[""Laptop"", ""Charger""]",1134.23,"{""promo"": ""9%""}",251836,1,South America +2024-09-17,96069,2130,"[""Tablet"", ""Headphones""]",1098.26,{},64219,0,Asia +2024-02-08,96070,839,"[""Wireless Mouse""]",2025.37,{},174815,0,South America +2023-08-18,96071,4611,"[""Keyboard"", ""Monitor""]",2241.42,"{""loyalty"": ""29%""}",297175,1,South America +2024-12-30,96072,1667,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1240.08,{},83002,0,Europe +2024-01-04,96073,5541,"[""Wireless Mouse"", ""Monitor""]",4389.69,{},80071,0,North America +2023-09-28,96074,4250,"[""Wireless Mouse"", ""Tablet""]",2853.01,{},251787,0,North America +2024-04-27,96075,6990,"[""Tablet""]",2676.75,{},246933,0,South America +2024-07-19,96076,1578,"[""Phone""]",4955.86,"{""seasonal"": ""8%""}",225187,0,North America +2023-09-13,96077,3319,"[""Keyboard"", ""Headphones"", ""Laptop""]",627.46,"{""promo"": ""16%""}",201844,1,Africa +2023-03-14,96078,6684,"[""Monitor"", ""Laptop""]",431.2,"{"""": ""13%""}",273133,1,North America +2024-01-26,96079,2144,"[""Monitor""]",1569.15,"{"""": ""9%""}",10852,0,Europe +2023-01-17,96080,5669,"[""Headphones"", ""Keyboard""]",459.13,"{""seasonal"": ""25%""}",265004,0,North America +2023-10-08,96081,9133,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4365.22,{},67978,1,South America +2023-07-25,96082,175,"[""Tablet""]",3282.04,{},9947,1,Europe +2024-09-12,96083,6610,"[""Charger""]",888.63,{},56184,1,Africa +2023-10-31,96084,3429,"[""Headphones""]",748.75,"{"""": ""25%""}",41842,1,South America +2023-04-06,96085,6247,"[""Headphones"", ""Keyboard""]",4480.65,{},193900,0,Europe +2024-02-09,96086,7910,"[""Headphones"", ""Phone"", ""Tablet""]",662.3,"{""seasonal"": ""19%""}",107140,1,Africa +2023-12-01,96087,1959,"[""Phone"", ""Charger""]",2299.76,"{""promo"": ""7%""}",86373,1,Africa +2023-12-10,96088,2777,"[""Headphones""]",1221.2,"{""promo"": ""6%""}",230178,0,Europe +2023-05-20,96089,7175,"[""Charger""]",3231.07,"{""promo"": ""24%""}",33494,1,Europe +2024-10-25,96090,5469,"[""Monitor"", ""Phone""]",3514.78,"{"""": ""11%""}",234548,1,North America +2024-08-23,96091,3608,"[""Monitor"", ""Keyboard"", ""Charger""]",4039.89,"{""promo"": ""22%""}",96929,1,North America +2024-11-21,96092,2304,"[""Headphones"", ""Phone""]",4337.47,{},250216,0,Africa +2023-08-11,96093,8148,"[""Keyboard""]",149.5,"{""promo"": ""19%""}",65061,0,North America +2023-02-17,96094,5205,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",3679.96,{},209926,0,Asia +2024-05-09,96095,8914,"[""Phone"", ""Charger""]",2781.79,{},74507,1,South America +2024-07-23,96096,4903,"[""Keyboard"", ""Laptop"", ""Phone""]",374.79,"{""loyalty"": ""18%""}",104914,0,Asia +2024-06-21,96097,2212,"[""Monitor"", ""Headphones"", ""Charger""]",1822.07,"{"""": ""30%""}",272788,1,South America +2023-06-07,96098,7688,"[""Monitor"", ""Laptop"", ""Charger""]",3135.42,{},179337,1,Europe +2024-05-07,96099,9107,"[""Tablet"", ""Phone"", ""Laptop""]",4021.63,"{""promo"": ""8%""}",61363,1,Asia +2024-01-16,96100,3358,"[""Phone"", ""Monitor"", ""Tablet""]",2354.95,{},40665,0,Europe +2023-11-20,96101,935,"[""Tablet"", ""Keyboard"", ""Phone""]",1939.9,{},191717,1,Asia +2023-01-06,96102,9313,"[""Phone""]",3388.53,"{""promo"": ""20%""}",253839,0,Africa +2023-09-15,96103,7040,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1285.16,"{""promo"": ""10%""}",285889,0,Africa +2024-11-18,96104,9416,"[""Laptop"", ""Wireless Mouse""]",3449.02,"{"""": ""13%""}",231309,0,Asia +2023-01-05,96105,3744,"[""Headphones"", ""Wireless Mouse""]",4548.9,"{""loyalty"": ""10%""}",216114,0,North America +2023-05-15,96106,8014,"[""Charger""]",2656.84,"{""loyalty"": ""5%""}",174865,0,South America +2023-09-25,96107,9847,"[""Charger"", ""Keyboard"", ""Tablet""]",982.63,"{""promo"": ""5%""}",225681,0,Africa +2023-02-18,96108,958,"[""Phone"", ""Wireless Mouse""]",1738.38,{},238595,1,Asia +2024-10-19,96109,4008,"[""Phone"", ""Wireless Mouse""]",4815.37,"{""loyalty"": ""8%""}",17938,0,Europe +2023-09-24,96110,8080,"[""Keyboard"", ""Charger"", ""Headphones""]",351.69,"{""promo"": ""21%""}",204249,1,Africa +2024-07-18,96111,3114,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",4380.71,"{""promo"": ""9%""}",99818,1,Asia +2023-06-09,96112,3449,"[""Laptop""]",4630.3,{},114772,1,North America +2023-11-20,96113,7221,"[""Laptop"", ""Charger"", ""Phone""]",4426.4,"{""promo"": ""30%""}",136727,0,Asia +2023-01-02,96114,6635,"[""Keyboard""]",487.2,"{""promo"": ""27%""}",156778,0,Africa +2023-01-31,96115,8863,"[""Keyboard"", ""Phone""]",3693.23,{},160064,0,North America +2023-09-20,96116,1453,"[""Keyboard""]",3543.75,"{"""": ""20%""}",251023,1,Africa +2024-01-27,96117,6311,"[""Charger"", ""Wireless Mouse""]",2743.51,"{""loyalty"": ""8%""}",82355,0,North America +2023-12-12,96118,2749,"[""Keyboard""]",1337.98,{},37470,1,South America +2024-02-09,96119,6686,"[""Tablet"", ""Charger""]",1110.42,"{""promo"": ""5%""}",40375,1,South America +2024-01-18,96120,515,"[""Charger"", ""Headphones""]",3654.54,{},214940,1,Europe +2024-07-28,96121,273,"[""Phone"", ""Monitor"", ""Keyboard""]",1082.47,"{""loyalty"": ""15%""}",264103,1,Africa +2023-09-18,96122,7837,"[""Phone"", ""Headphones""]",1671.97,"{"""": ""8%""}",148819,0,North America +2024-03-02,96123,7601,"[""Laptop""]",1192.24,"{""seasonal"": ""27%""}",16331,0,Asia +2024-04-20,96124,9463,"[""Monitor""]",2112.43,"{""promo"": ""13%""}",46389,0,North America +2023-12-27,96125,9617,"[""Phone""]",721.49,"{""promo"": ""30%""}",97125,1,Europe +2024-05-04,96126,3505,"[""Tablet"", ""Keyboard"", ""Phone""]",592.34,"{""loyalty"": ""9%""}",210237,0,South America +2024-09-19,96127,7498,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2104.77,"{"""": ""30%""}",197131,0,South America +2024-01-25,96128,6361,"[""Keyboard""]",1979.66,{},206918,1,Europe +2023-05-04,96129,2497,"[""Charger"", ""Tablet"", ""Monitor""]",1048.45,{},136615,0,Africa +2024-01-13,96130,5343,"[""Laptop""]",2997.02,{},66672,1,Africa +2024-12-14,96131,467,"[""Phone"", ""Charger""]",2938.49,{},123478,0,North America +2023-09-17,96132,1920,"[""Wireless Mouse""]",4139.54,{},58090,0,Asia +2024-10-16,96133,4391,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",276.2,"{"""": ""5%""}",10028,1,Asia +2023-02-10,96134,2523,"[""Charger"", ""Tablet"", ""Phone""]",2530.17,{},80969,1,Africa +2023-04-09,96135,7686,"[""Monitor""]",211.95,{},15898,0,Asia +2023-10-30,96136,3176,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",3230.1,{},124646,1,Asia +2023-03-03,96137,533,"[""Headphones"", ""Tablet"", ""Monitor""]",3947.5,"{""loyalty"": ""17%""}",38786,0,North America +2023-03-22,96138,8047,"[""Phone""]",540.39,"{""promo"": ""11%""}",188506,1,Asia +2024-01-04,96139,8292,"[""Phone""]",1989.89,{},239573,1,Asia +2023-11-01,96140,8789,"[""Monitor"", ""Keyboard""]",1474.61,"{"""": ""25%""}",98412,1,North America +2023-01-10,96141,1872,"[""Phone"", ""Headphones""]",2861.93,{},255729,0,Africa +2024-11-30,96142,3565,"[""Phone"", ""Tablet"", ""Headphones""]",3522.65,{},62745,0,Asia +2023-02-28,96143,8153,"[""Charger"", ""Monitor"", ""Keyboard""]",796.84,{},78492,1,Asia +2024-08-27,96144,8605,"[""Wireless Mouse""]",4173.92,{},27843,0,Asia +2024-03-12,96145,1463,"[""Charger"", ""Phone""]",2065.27,{},19992,1,North America +2024-04-11,96146,1255,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",1872.3,{},171828,1,Europe +2023-06-19,96147,9325,"[""Keyboard"", ""Phone""]",4603.14,{},294085,0,South America +2023-06-16,96148,1282,"[""Laptop""]",3973.18,"{"""": ""26%""}",158417,1,Europe +2023-07-19,96149,3216,"[""Headphones""]",2962.57,{},141016,0,Europe +2023-09-13,96150,469,"[""Charger"", ""Headphones"", ""Tablet""]",4100.97,{},225619,0,Africa +2023-05-05,96151,9069,"[""Phone"", ""Monitor"", ""Laptop""]",1638.65,"{""promo"": ""24%""}",52844,0,Asia +2024-12-20,96152,3192,"[""Monitor"", ""Wireless Mouse""]",1226.05,{},30452,0,Africa +2023-08-06,96153,5396,"[""Monitor"", ""Headphones"", ""Tablet""]",1501.98,"{"""": ""5%""}",11430,0,North America +2023-07-09,96154,3398,"[""Wireless Mouse"", ""Keyboard""]",2713.04,{},78198,1,South America +2023-07-01,96155,6024,"[""Laptop"", ""Tablet"", ""Charger""]",1635.79,{},208812,1,North America +2024-01-21,96156,5625,"[""Monitor""]",1529.86,{},32979,0,Europe +2023-02-20,96157,8973,"[""Phone""]",3121.91,{},82156,0,Europe +2023-03-03,96158,9907,"[""Phone""]",751.95,{},90398,0,South America +2023-04-16,96159,5521,"[""Charger"", ""Wireless Mouse""]",4565.99,{},33932,1,Europe +2024-06-03,96160,477,"[""Charger""]",467.23,"{"""": ""21%""}",248886,1,Asia +2023-12-31,96161,4290,"[""Tablet"", ""Keyboard"", ""Laptop""]",408.18,"{""promo"": ""13%""}",268046,0,Africa +2024-03-08,96162,7060,"[""Tablet""]",461.93,"{"""": ""25%""}",265528,0,North America +2024-06-07,96163,2617,"[""Wireless Mouse""]",2403.47,{},272693,0,Asia +2024-03-31,96164,1443,"[""Headphones""]",2902.69,"{""promo"": ""10%""}",81351,0,Europe +2023-09-16,96165,1802,"[""Monitor"", ""Tablet"", ""Laptop""]",2655.3,{},235413,0,South America +2024-09-05,96166,173,"[""Tablet"", ""Laptop"", ""Charger""]",4973.39,"{""loyalty"": ""10%""}",198583,1,Africa +2024-08-02,96167,6117,"[""Headphones""]",4136.48,"{""promo"": ""23%""}",1014,1,North America +2024-09-30,96168,6602,"[""Headphones"", ""Phone"", ""Keyboard""]",2952.8,"{""loyalty"": ""30%""}",273802,0,South America +2024-10-16,96169,8546,"[""Laptop""]",2566.8,{},211365,1,South America +2024-02-27,96170,5270,"[""Monitor""]",494.07,"{"""": ""7%""}",170840,0,South America +2024-04-02,96171,274,"[""Phone"", ""Charger"", ""Monitor""]",628.26,"{""promo"": ""23%""}",234061,0,Africa +2023-10-14,96172,5675,"[""Tablet"", ""Wireless Mouse""]",2390.35,"{""loyalty"": ""10%""}",89009,0,South America +2024-09-05,96173,5089,"[""Tablet"", ""Charger"", ""Monitor""]",3528.18,"{""loyalty"": ""17%""}",57415,0,South America +2024-03-14,96174,388,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",1776.24,{},52305,1,South America +2024-07-12,96175,4397,"[""Charger"", ""Keyboard"", ""Phone""]",411.99,{},184501,1,North America +2023-08-04,96176,6195,"[""Keyboard""]",407.91,{},14337,1,Asia +2024-01-02,96177,9237,"[""Monitor"", ""Keyboard""]",927.42,"{""seasonal"": ""10%""}",182335,1,Africa +2023-04-26,96178,1204,"[""Keyboard""]",2751.83,{},140254,0,Europe +2023-12-08,96179,389,"[""Phone"", ""Monitor"", ""Headphones""]",1048.54,"{"""": ""5%""}",33153,1,Africa +2023-06-07,96180,9912,"[""Charger"", ""Laptop"", ""Phone""]",2161.97,"{""loyalty"": ""22%""}",33730,0,Africa +2024-11-29,96181,5086,"[""Tablet"", ""Wireless Mouse""]",1982.73,{},189516,1,Africa +2023-11-02,96182,4004,"[""Charger""]",365.08,"{""promo"": ""20%""}",120163,1,North America +2024-12-24,96183,3463,"[""Charger"", ""Keyboard"", ""Laptop""]",801.53,{},130940,0,Africa +2023-03-19,96184,5267,"[""Laptop"", ""Tablet""]",4229.27,"{""promo"": ""21%""}",274521,1,North America +2023-12-10,96185,3880,"[""Keyboard""]",4784.1,{},166466,1,Europe +2023-12-25,96186,6916,"[""Phone"", ""Keyboard"", ""Monitor""]",2840.33,{},293389,1,Europe +2023-12-31,96187,1061,"[""Wireless Mouse"", ""Tablet""]",483.1,"{""seasonal"": ""24%""}",131528,1,North America +2023-10-18,96188,1508,"[""Tablet"", ""Headphones""]",3821.97,"{""loyalty"": ""9%""}",203447,0,Asia +2023-07-21,96189,8845,"[""Charger""]",839.42,{},163884,1,Africa +2024-02-28,96190,7490,"[""Tablet"", ""Keyboard""]",331.22,{},240407,0,Asia +2024-05-17,96191,4408,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",1413.64,{},211843,1,Europe +2023-06-11,96192,933,"[""Tablet"", ""Headphones"", ""Charger""]",328.98,{},204392,1,North America +2024-11-21,96193,2840,"[""Wireless Mouse""]",4293.38,"{""seasonal"": ""8%""}",168105,0,North America +2023-11-11,96194,9510,"[""Headphones"", ""Phone"", ""Charger""]",241.2,{},169484,1,Asia +2024-01-10,96195,1845,"[""Headphones""]",4749.67,{},232286,0,Asia +2024-03-27,96196,4569,"[""Headphones"", ""Monitor""]",994.66,"{"""": ""13%""}",246083,0,Europe +2024-05-20,96197,1941,"[""Charger"", ""Wireless Mouse""]",4958.17,"{""promo"": ""27%""}",235939,1,Africa +2024-01-19,96198,5727,"[""Laptop"", ""Keyboard""]",4660.53,{},223386,0,South America +2023-08-21,96199,2085,"[""Tablet""]",864.36,"{""promo"": ""21%""}",204012,0,Asia +2024-07-10,96200,6759,"[""Laptop"", ""Headphones""]",4288.9,{},166954,0,South America +2024-06-02,96201,9053,"[""Keyboard"", ""Charger"", ""Headphones""]",3412.83,{},180556,0,Europe +2024-10-28,96202,8643,"[""Monitor"", ""Laptop""]",1970.97,"{""seasonal"": ""10%""}",282668,1,South America +2023-12-31,96203,9238,"[""Keyboard"", ""Laptop""]",3903.13,{},241626,1,North America +2023-05-22,96204,5099,"[""Tablet""]",3711.89,{},108510,1,Europe +2024-09-21,96205,2635,"[""Headphones""]",3904.0,"{""seasonal"": ""15%""}",24977,1,Africa +2023-02-22,96206,9250,"[""Monitor"", ""Laptop"", ""Keyboard""]",3670.05,{},22819,1,North America +2023-04-28,96207,3039,"[""Phone"", ""Laptop"", ""Headphones""]",1356.85,"{"""": ""16%""}",70452,0,Africa +2023-09-04,96208,6393,"[""Charger"", ""Laptop"", ""Headphones""]",2588.9,"{""seasonal"": ""7%""}",68698,1,South America +2024-08-26,96209,4688,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2059.06,{},276288,0,South America +2024-07-19,96210,9396,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",413.36,"{"""": ""19%""}",213580,0,South America +2024-02-26,96211,1084,"[""Tablet""]",518.33,{},157108,0,South America +2024-02-22,96212,9306,"[""Keyboard"", ""Wireless Mouse""]",1088.48,{},237058,1,North America +2023-07-11,96213,6804,"[""Charger""]",706.82,"{""seasonal"": ""28%""}",76117,0,Africa +2023-08-23,96214,3230,"[""Tablet"", ""Laptop""]",4409.67,{},170857,0,Africa +2023-06-14,96215,4113,"[""Keyboard"", ""Charger"", ""Tablet""]",351.96,{},7019,1,Africa +2023-05-01,96216,6629,"[""Phone"", ""Laptop""]",3308.91,{},10837,0,Europe +2023-06-19,96217,2193,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1883.45,"{""promo"": ""18%""}",178079,1,Asia +2024-10-13,96218,7139,"[""Monitor"", ""Phone"", ""Keyboard""]",3677.78,{},182500,1,Europe +2024-08-19,96219,6093,"[""Laptop"", ""Tablet"", ""Keyboard""]",4625.72,{},140950,0,North America +2024-12-04,96220,2124,"[""Headphones"", ""Keyboard"", ""Laptop""]",3673.78,"{""seasonal"": ""20%""}",54353,1,Asia +2024-05-18,96221,4151,"[""Tablet""]",4050.19,{},178273,1,Asia +2023-09-12,96222,6454,"[""Laptop""]",352.45,"{""promo"": ""15%""}",53420,0,Asia +2024-09-23,96223,7567,"[""Keyboard"", ""Phone"", ""Headphones""]",1531.3,"{"""": ""21%""}",256397,0,South America +2023-01-11,96224,838,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2464.52,"{""promo"": ""15%""}",269465,1,North America +2023-01-16,96225,1620,"[""Monitor""]",2601.18,"{""seasonal"": ""20%""}",69134,1,North America +2023-12-26,96226,6846,"[""Headphones""]",4406.48,"{"""": ""12%""}",154140,1,Europe +2023-03-14,96227,1449,"[""Wireless Mouse"", ""Headphones""]",2096.36,{},278333,1,Europe +2023-01-10,96228,9264,"[""Monitor""]",1881.67,{},19831,0,North America +2023-06-06,96229,1797,"[""Keyboard""]",4943.62,"{""seasonal"": ""6%""}",94718,1,North America +2023-09-25,96230,8013,"[""Laptop"", ""Tablet""]",3413.99,{},195325,1,South America +2024-04-02,96231,9872,"[""Wireless Mouse""]",4291.02,{},129701,0,Europe +2023-10-23,96232,6191,"[""Phone""]",171.58,{},51263,1,South America +2023-04-18,96233,9869,"[""Keyboard"", ""Monitor"", ""Phone""]",4511.43,"{""seasonal"": ""20%""}",69769,0,Africa +2023-01-02,96234,9952,"[""Wireless Mouse"", ""Charger""]",2254.44,{},40023,1,North America +2024-07-07,96235,7589,"[""Wireless Mouse""]",2128.88,{},49323,1,Europe +2023-11-26,96236,8280,"[""Tablet"", ""Charger"", ""Monitor""]",469.78,{},263987,1,Asia +2024-05-07,96237,8624,"[""Monitor"", ""Phone""]",3870.46,"{"""": ""11%""}",212314,0,South America +2023-05-14,96238,7399,"[""Laptop""]",4471.88,"{"""": ""6%""}",104371,1,Asia +2024-05-26,96239,3261,"[""Headphones""]",4632.65,"{""promo"": ""13%""}",70185,1,North America +2024-12-19,96240,4846,"[""Monitor"", ""Charger"", ""Tablet""]",3214.8,"{""seasonal"": ""8%""}",25324,1,Europe +2023-09-16,96241,7545,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",3916.67,{},178644,0,Africa +2023-08-09,96242,8043,"[""Wireless Mouse"", ""Tablet""]",3376.28,{},284246,0,Africa +2024-08-15,96243,8188,"[""Laptop""]",146.19,{},189804,1,North America +2024-03-04,96244,6152,"[""Phone""]",2379.86,{},288138,1,Asia +2024-12-02,96245,5626,"[""Charger""]",91.59,{},12648,0,Asia +2024-03-15,96246,9660,"[""Laptop"", ""Charger""]",4951.74,"{""seasonal"": ""15%""}",62475,1,Europe +2024-04-16,96247,6856,"[""Headphones""]",3198.97,{},20362,0,Asia +2024-09-11,96248,6800,"[""Monitor"", ""Tablet"", ""Keyboard""]",3319.19,"{""seasonal"": ""12%""}",160071,1,Europe +2023-02-10,96249,4656,"[""Tablet"", ""Keyboard""]",1745.46,{},49311,1,North America +2024-03-23,96250,8090,"[""Headphones""]",2332.76,"{""loyalty"": ""16%""}",133565,1,South America +2024-06-14,96251,4364,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",2640.48,{},78102,1,South America +2024-05-04,96252,5148,"[""Phone"", ""Charger""]",2840.48,"{""loyalty"": ""29%""}",162279,1,Europe +2024-04-22,96253,5570,"[""Keyboard""]",2798.46,"{""promo"": ""23%""}",268122,0,North America +2023-11-12,96254,1124,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4583.37,"{"""": ""13%""}",56971,0,North America +2023-03-10,96255,9064,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2555.49,{},203722,0,North America +2023-05-13,96256,4356,"[""Keyboard"", ""Charger""]",4902.62,"{""promo"": ""13%""}",40102,1,Africa +2023-02-25,96257,4576,"[""Laptop"", ""Phone"", ""Tablet""]",4825.21,{},8965,0,Europe +2024-11-05,96258,8160,"[""Monitor"", ""Wireless Mouse""]",4065.02,{},22917,0,Africa +2024-07-30,96259,8395,"[""Headphones""]",4445.98,"{""loyalty"": ""18%""}",240785,1,North America +2024-03-18,96260,4461,"[""Tablet"", ""Wireless Mouse""]",2503.99,{},211070,1,Asia +2024-06-11,96261,9259,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4248.34,{},232759,0,North America +2023-12-31,96262,5471,"[""Laptop"", ""Monitor""]",3644.73,{},74048,0,South America +2024-09-23,96263,149,"[""Charger"", ""Keyboard""]",3016.2,{},13784,0,Africa +2024-09-27,96264,5999,"[""Tablet"", ""Phone"", ""Charger""]",2220.37,{},15090,0,Asia +2023-07-26,96265,9042,"[""Phone"", ""Wireless Mouse""]",238.54,{},109175,1,Europe +2024-06-09,96266,6816,"[""Phone""]",1226.36,{},209106,0,Europe +2023-12-19,96267,6892,"[""Laptop""]",3702.6,"{"""": ""24%""}",128911,1,Africa +2023-10-07,96268,404,"[""Charger""]",1719.15,"{""seasonal"": ""19%""}",236898,1,Asia +2024-01-18,96269,2645,"[""Tablet""]",3205.86,{},196818,1,Europe +2024-02-09,96270,3512,"[""Phone"", ""Headphones""]",4030.41,{},234924,0,Africa +2024-12-04,96271,6379,"[""Headphones"", ""Laptop"", ""Monitor""]",4919.94,"{""promo"": ""25%""}",186911,0,North America +2024-09-30,96272,9083,"[""Headphones""]",372.49,{},89690,0,South America +2023-07-12,96273,3003,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4873.2,"{"""": ""5%""}",12471,0,Europe +2023-12-16,96274,7075,"[""Headphones"", ""Phone""]",633.55,{},211191,0,South America +2024-01-24,96275,3482,"[""Monitor"", ""Phone""]",3124.78,"{""loyalty"": ""6%""}",199607,0,Asia +2024-11-14,96276,9156,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",547.3,{},276787,1,North America +2023-02-26,96277,3985,"[""Keyboard""]",3047.58,{},215909,1,South America +2024-03-12,96278,2372,"[""Keyboard"", ""Headphones"", ""Phone""]",3256.9,{},160580,1,Asia +2023-01-25,96279,9442,"[""Charger"", ""Laptop"", ""Phone""]",768.23,"{""seasonal"": ""15%""}",12455,0,Asia +2024-08-17,96280,4953,"[""Keyboard"", ""Charger""]",3128.96,"{""loyalty"": ""27%""}",280480,1,Africa +2024-12-11,96281,3305,"[""Phone"", ""Monitor"", ""Laptop""]",1477.25,"{"""": ""25%""}",217655,1,Africa +2023-03-05,96282,368,"[""Charger""]",3239.87,"{"""": ""25%""}",79104,1,Asia +2023-02-15,96283,9644,"[""Headphones""]",142.71,{},175337,1,South America +2023-02-16,96284,3713,"[""Charger""]",2599.19,"{""seasonal"": ""8%""}",103247,1,Africa +2024-11-05,96285,2477,"[""Keyboard""]",152.28,{},208098,0,Europe +2023-05-17,96286,6363,"[""Keyboard""]",945.09,"{""loyalty"": ""11%""}",151547,1,Africa +2023-01-20,96287,5061,"[""Laptop"", ""Monitor""]",334.29,"{"""": ""6%""}",204571,1,North America +2024-05-29,96288,7326,"[""Keyboard""]",1928.05,{},245647,1,North America +2024-01-22,96289,9403,"[""Phone"", ""Headphones""]",4155.58,{},134347,0,South America +2024-04-23,96290,4219,"[""Wireless Mouse"", ""Phone"", ""Charger""]",965.09,"{""seasonal"": ""10%""}",126704,1,Asia +2024-01-25,96291,9952,"[""Keyboard""]",4418.2,"{"""": ""7%""}",16785,0,North America +2023-10-23,96292,1686,"[""Charger"", ""Tablet"", ""Monitor""]",3640.99,"{"""": ""23%""}",41297,1,North America +2024-12-21,96293,76,"[""Monitor""]",4437.08,{},140670,0,North America +2024-11-02,96294,5255,"[""Phone"", ""Keyboard""]",2886.35,"{"""": ""29%""}",293873,1,South America +2023-12-19,96295,2342,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",265.38,"{"""": ""16%""}",290149,0,South America +2024-05-15,96296,8709,"[""Phone""]",850.69,"{""seasonal"": ""13%""}",24860,1,Europe +2023-08-12,96297,6947,"[""Laptop""]",2518.42,"{""seasonal"": ""24%""}",253636,1,Africa +2023-08-04,96298,5813,"[""Keyboard"", ""Laptop""]",2383.98,{},271882,1,Asia +2023-07-31,96299,6309,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",564.1,{},43756,0,Africa +2024-04-13,96300,5575,"[""Headphones"", ""Laptop""]",3062.01,"{"""": ""15%""}",47558,0,North America +2023-01-26,96301,4552,"[""Phone"", ""Keyboard"", ""Headphones""]",2795.79,{},88876,1,Africa +2023-06-27,96302,2031,"[""Tablet"", ""Headphones""]",641.14,{},255894,1,Asia +2024-10-05,96303,3879,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",980.77,{},69261,0,Africa +2024-04-12,96304,8565,"[""Phone"", ""Charger""]",4271.84,{},78677,0,Europe +2024-07-05,96305,4886,"[""Keyboard""]",1057.91,"{""promo"": ""25%""}",227169,1,Asia +2023-06-14,96306,8542,"[""Monitor"", ""Tablet""]",713.94,"{""loyalty"": ""11%""}",205327,0,North America +2024-12-14,96307,7367,"[""Keyboard"", ""Tablet"", ""Headphones""]",1381.7,"{""promo"": ""8%""}",221589,1,Asia +2023-04-21,96308,6888,"[""Headphones"", ""Tablet"", ""Laptop""]",3608.7,"{""seasonal"": ""7%""}",90701,1,Asia +2023-10-21,96309,3563,"[""Charger"", ""Keyboard"", ""Laptop""]",618.05,"{""loyalty"": ""27%""}",114365,0,Africa +2023-04-22,96310,1730,"[""Monitor"", ""Headphones"", ""Tablet""]",3474.83,{},240182,1,Asia +2023-07-27,96311,8381,"[""Monitor""]",474.0,{},136081,1,South America +2024-04-28,96312,7848,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",935.31,{},92173,1,Asia +2024-04-24,96313,3106,"[""Monitor"", ""Charger"", ""Laptop""]",2116.21,{},285421,0,North America +2023-06-25,96314,3904,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2490.26,"{""loyalty"": ""20%""}",122260,1,South America +2024-10-11,96315,7503,"[""Tablet"", ""Charger""]",4195.13,{},102419,1,North America +2023-02-05,96316,1609,"[""Phone"", ""Monitor"", ""Headphones""]",4939.66,{},118159,1,Asia +2024-10-07,96317,5568,"[""Phone""]",3199.09,"{""promo"": ""24%""}",71809,0,Europe +2024-12-11,96318,2600,"[""Charger"", ""Phone"", ""Monitor""]",4498.28,"{""seasonal"": ""28%""}",159887,1,Asia +2024-05-21,96319,6056,"[""Wireless Mouse"", ""Keyboard""]",4786.74,"{"""": ""14%""}",186874,0,Africa +2023-01-17,96320,5599,"[""Headphones""]",3285.69,"{""seasonal"": ""23%""}",204438,0,Europe +2024-02-18,96321,3967,"[""Monitor"", ""Keyboard"", ""Phone""]",1724.87,{},267062,1,South America +2023-09-04,96322,5680,"[""Charger""]",1137.52,"{""seasonal"": ""10%""}",134201,1,Asia +2023-09-24,96323,1754,"[""Phone"", ""Tablet""]",130.79,"{""loyalty"": ""22%""}",27202,1,Asia +2024-09-20,96324,7131,"[""Wireless Mouse""]",2661.9,"{"""": ""9%""}",166762,1,North America +2023-03-14,96325,5020,"[""Monitor"", ""Wireless Mouse""]",1396.0,"{""loyalty"": ""22%""}",202149,1,Asia +2023-06-27,96326,4238,"[""Charger"", ""Monitor""]",309.6,"{"""": ""10%""}",288954,1,Europe +2024-02-03,96327,7224,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",447.36,"{""seasonal"": ""19%""}",229218,1,Asia +2023-11-23,96328,8074,"[""Tablet"", ""Laptop""]",4004.23,{},289585,0,South America +2024-03-13,96329,9691,"[""Keyboard""]",1269.86,{},39219,0,Europe +2023-09-07,96330,6382,"[""Monitor"", ""Headphones""]",4603.98,{},211556,1,North America +2024-07-05,96331,3400,"[""Charger"", ""Wireless Mouse""]",3039.58,{},90510,1,North America +2024-03-09,96332,5182,"[""Keyboard"", ""Wireless Mouse""]",94.91,{},183198,0,South America +2023-05-13,96333,6993,"[""Tablet"", ""Laptop""]",2242.51,{},289139,1,Europe +2023-10-05,96334,3465,"[""Tablet"", ""Phone""]",3475.86,{},174955,1,North America +2023-10-11,96335,3724,"[""Charger"", ""Laptop"", ""Headphones""]",2457.14,{},286976,0,Asia +2023-04-11,96336,1974,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3419.82,"{""seasonal"": ""18%""}",16050,0,Asia +2024-11-29,96337,8430,"[""Charger"", ""Phone"", ""Tablet""]",1211.43,"{""loyalty"": ""15%""}",51224,0,Asia +2024-04-04,96338,8240,"[""Charger"", ""Laptop"", ""Tablet""]",1276.77,{},232644,1,Asia +2023-05-29,96339,2804,"[""Wireless Mouse""]",483.35,"{"""": ""30%""}",116944,0,Asia +2024-06-20,96340,554,"[""Phone""]",334.22,{},181797,1,North America +2023-09-14,96341,292,"[""Wireless Mouse""]",964.03,{},127225,1,Africa +2023-12-03,96342,3472,"[""Monitor"", ""Headphones""]",4584.38,"{""loyalty"": ""5%""}",165875,1,Europe +2023-12-20,96343,2905,"[""Monitor""]",434.33,"{"""": ""21%""}",14720,0,Africa +2023-01-22,96344,5036,"[""Phone"", ""Monitor""]",1668.95,{},3145,0,Africa +2023-10-28,96345,2019,"[""Wireless Mouse"", ""Phone""]",3795.04,{},281029,0,Asia +2023-02-22,96346,7807,"[""Monitor""]",3091.04,{},153089,0,North America +2024-05-18,96347,2503,"[""Headphones"", ""Monitor"", ""Keyboard""]",4967.09,{},165238,0,North America +2024-01-10,96348,2842,"[""Wireless Mouse"", ""Tablet""]",787.52,"{"""": ""8%""}",90403,0,Europe +2024-08-25,96349,9266,"[""Keyboard"", ""Monitor""]",4717.67,"{""promo"": ""30%""}",138005,1,South America +2023-07-25,96350,6845,"[""Tablet"", ""Headphones"", ""Keyboard""]",1454.59,{},83851,0,North America +2024-11-24,96351,3804,"[""Tablet"", ""Laptop""]",3732.74,{},291712,1,Europe +2024-07-29,96352,2859,"[""Tablet""]",2883.25,"{""promo"": ""24%""}",233456,1,Europe +2023-07-19,96353,8435,"[""Headphones""]",454.63,"{""promo"": ""28%""}",234448,1,Europe +2023-06-01,96354,3822,"[""Laptop""]",1179.59,"{"""": ""18%""}",251788,0,North America +2023-07-20,96355,4685,"[""Charger"", ""Wireless Mouse""]",2160.13,{},171610,1,Asia +2024-06-07,96356,8439,"[""Phone""]",963.27,{},264196,1,Asia +2023-05-30,96357,1718,"[""Tablet""]",4625.59,"{""promo"": ""15%""}",47294,1,Africa +2023-05-15,96358,6095,"[""Headphones""]",3609.04,"{""loyalty"": ""30%""}",283245,1,North America +2023-01-31,96359,753,"[""Phone"", ""Laptop""]",3901.85,"{""loyalty"": ""25%""}",273179,0,South America +2023-01-31,96360,8753,"[""Charger""]",957.13,{},50721,1,North America +2024-06-16,96361,8408,"[""Phone""]",322.66,{},288956,0,North America +2024-07-04,96362,1029,"[""Phone""]",4584.04,{},8350,0,Europe +2023-04-09,96363,1743,"[""Headphones"", ""Charger"", ""Phone""]",2031.27,{},23041,1,Africa +2023-05-15,96364,8076,"[""Charger"", ""Laptop""]",123.95,{},19498,1,Africa +2023-04-12,96365,1994,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2833.86,"{""loyalty"": ""15%""}",74166,1,South America +2023-03-28,96366,323,"[""Headphones"", ""Phone""]",3158.77,"{""promo"": ""25%""}",143064,0,South America +2023-11-24,96367,9187,"[""Keyboard"", ""Tablet"", ""Charger""]",1181.85,{},222459,1,Asia +2024-09-21,96368,4675,"[""Keyboard""]",2300.91,"{""loyalty"": ""23%""}",165649,0,North America +2024-05-31,96369,4530,"[""Phone"", ""Headphones"", ""Monitor""]",1376.13,{},126292,1,North America +2024-05-27,96370,7116,"[""Charger"", ""Headphones"", ""Monitor""]",2843.59,{},102242,1,Asia +2023-03-12,96371,5986,"[""Tablet""]",4192.38,"{"""": ""17%""}",198083,1,Asia +2023-04-07,96372,169,"[""Monitor""]",4176.02,{},195012,0,North America +2023-02-08,96373,9792,"[""Tablet"", ""Charger""]",4556.48,{},245932,0,South America +2024-07-24,96374,5978,"[""Charger"", ""Laptop""]",4653.26,{},72059,0,Asia +2023-02-07,96375,7016,"[""Monitor"", ""Keyboard""]",3543.49,"{"""": ""22%""}",7107,0,Europe +2024-09-03,96376,7576,"[""Laptop"", ""Tablet"", ""Phone""]",2945.45,"{""seasonal"": ""10%""}",259112,1,Africa +2024-08-15,96377,6427,"[""Wireless Mouse"", ""Phone"", ""Keyboard""]",4427.09,"{""loyalty"": ""29%""}",190613,1,Asia +2023-03-13,96378,7059,"[""Charger""]",2486.26,"{""promo"": ""5%""}",201388,1,Africa +2023-05-31,96379,8425,"[""Tablet""]",691.43,{},3353,1,Africa +2024-03-27,96380,4710,"[""Headphones""]",740.15,{},18495,0,Europe +2024-12-09,96381,4896,"[""Keyboard"", ""Tablet""]",4144.27,"{""loyalty"": ""16%""}",45180,1,North America +2023-01-01,96382,7202,"[""Tablet"", ""Monitor""]",4041.2,{},62944,0,Africa +2023-10-11,96383,734,"[""Keyboard"", ""Wireless Mouse""]",3975.65,"{""promo"": ""16%""}",84201,1,Africa +2024-09-21,96384,4646,"[""Charger"", ""Keyboard"", ""Headphones""]",1071.61,"{"""": ""18%""}",137701,1,Africa +2024-09-06,96385,1151,"[""Monitor""]",735.84,{},36612,0,Asia +2023-06-05,96386,5945,"[""Charger"", ""Headphones"", ""Tablet""]",4531.38,"{""seasonal"": ""9%""}",190796,1,Africa +2024-03-16,96387,1192,"[""Phone""]",2349.89,"{""seasonal"": ""18%""}",134798,0,Asia +2024-07-03,96388,5023,"[""Phone""]",1001.15,{},13627,0,South America +2023-05-21,96389,7572,"[""Monitor""]",1667.75,"{""promo"": ""9%""}",221951,0,North America +2023-05-08,96390,8685,"[""Monitor"", ""Phone""]",3818.23,"{""loyalty"": ""30%""}",127989,1,South America +2023-04-28,96391,6598,"[""Tablet"", ""Wireless Mouse""]",3068.46,"{""promo"": ""20%""}",120726,1,North America +2023-09-13,96392,4952,"[""Headphones"", ""Charger""]",758.87,"{""loyalty"": ""21%""}",232665,0,South America +2024-11-05,96393,3215,"[""Keyboard"", ""Monitor"", ""Headphones""]",2793.61,"{"""": ""13%""}",56009,0,Europe +2023-10-22,96394,3078,"[""Phone"", ""Headphones"", ""Keyboard""]",1343.6,"{"""": ""21%""}",192672,0,South America +2023-01-18,96395,243,"[""Wireless Mouse"", ""Phone""]",2442.44,"{""seasonal"": ""25%""}",132748,0,Africa +2023-05-07,96396,8632,"[""Laptop""]",2493.85,"{""loyalty"": ""17%""}",74776,1,North America +2024-03-10,96397,2228,"[""Headphones"", ""Phone"", ""Charger""]",4463.42,"{""promo"": ""20%""}",190718,0,North America +2023-06-18,96398,6043,"[""Charger"", ""Wireless Mouse"", ""Phone""]",4670.02,{},213455,0,Asia +2023-05-14,96399,7571,"[""Laptop"", ""Keyboard""]",3106.92,{},100077,0,Asia +2023-11-02,96400,2672,"[""Monitor""]",3078.2,{},124158,0,Africa +2024-07-13,96401,8673,"[""Wireless Mouse"", ""Charger""]",3827.2,"{""promo"": ""5%""}",38613,1,Africa +2024-09-17,96402,4791,"[""Laptop"", ""Tablet"", ""Charger""]",3619.85,{},35536,1,North America +2023-08-18,96403,1495,"[""Charger""]",329.05,{},173358,0,North America +2023-09-25,96404,894,"[""Phone"", ""Monitor""]",1271.49,"{""seasonal"": ""12%""}",27496,1,Asia +2024-05-02,96405,5876,"[""Headphones""]",1555.59,{},35072,0,North America +2024-09-16,96406,566,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",2140.85,{},30991,1,Asia +2024-08-06,96407,7471,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1972.08,{},259151,0,Europe +2023-12-19,96408,8975,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",723.64,{},159062,0,South America +2023-01-22,96409,3117,"[""Laptop"", ""Keyboard""]",506.08,{},25221,1,North America +2023-10-31,96410,694,"[""Tablet"", ""Laptop""]",806.09,"{""promo"": ""10%""}",48914,1,Africa +2024-09-03,96411,2970,"[""Headphones"", ""Phone""]",3183.06,"{"""": ""21%""}",208424,1,North America +2023-10-13,96412,3038,"[""Charger"", ""Keyboard""]",3929.56,{},128421,0,North America +2024-11-29,96413,1157,"[""Monitor"", ""Headphones"", ""Tablet""]",2861.13,{},118995,1,Africa +2024-04-12,96414,5370,"[""Charger""]",210.1,{},21468,0,Europe +2024-07-18,96415,3954,"[""Laptop"", ""Charger"", ""Monitor""]",4797.35,{},216750,1,North America +2023-04-10,96416,6908,"[""Charger"", ""Monitor""]",2949.65,"{"""": ""15%""}",251250,0,Asia +2023-12-30,96417,9667,"[""Keyboard"", ""Headphones""]",2964.29,{},188342,0,North America +2024-10-01,96418,6087,"[""Monitor"", ""Tablet"", ""Phone""]",755.91,{},146906,1,Africa +2024-03-27,96419,4429,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",2726.69,{},68964,0,North America +2024-09-05,96420,6326,"[""Tablet"", ""Laptop""]",4089.4,"{""promo"": ""22%""}",168311,0,Asia +2023-01-19,96421,4071,"[""Phone"", ""Laptop"", ""Headphones""]",4036.99,"{""loyalty"": ""29%""}",242810,1,Africa +2023-05-01,96422,2423,"[""Keyboard"", ""Monitor""]",1278.78,"{""promo"": ""14%""}",134404,0,Europe +2024-11-16,96423,8370,"[""Phone"", ""Wireless Mouse""]",53.71,"{""loyalty"": ""12%""}",201095,1,Europe +2024-04-12,96424,9719,"[""Tablet""]",2808.31,"{""loyalty"": ""21%""}",206050,0,North America +2024-01-31,96425,1145,"[""Charger"", ""Monitor""]",3791.16,"{""promo"": ""15%""}",219361,1,North America +2023-09-21,96426,1150,"[""Wireless Mouse"", ""Headphones""]",1759.93,"{""loyalty"": ""25%""}",292906,1,Asia +2024-08-26,96427,6555,"[""Keyboard""]",296.42,{},232271,1,North America +2023-09-11,96428,2197,"[""Keyboard"", ""Charger""]",4084.95,{},125058,0,Africa +2023-09-09,96429,2860,"[""Keyboard"", ""Monitor"", ""Laptop""]",2857.2,"{"""": ""7%""}",98395,0,Asia +2023-03-20,96430,5094,"[""Keyboard""]",4670.52,"{""promo"": ""18%""}",56433,0,North America +2023-09-12,96431,6896,"[""Tablet""]",1986.7,"{""seasonal"": ""9%""}",120779,1,South America +2024-12-23,96432,8525,"[""Headphones""]",3747.94,"{""seasonal"": ""5%""}",174325,1,Europe +2024-07-26,96433,5864,"[""Keyboard""]",3441.67,"{""promo"": ""25%""}",47143,1,South America +2023-02-01,96434,5803,"[""Tablet"", ""Monitor""]",450.04,{},225724,1,Europe +2024-05-30,96435,1386,"[""Tablet"", ""Keyboard"", ""Headphones""]",3171.81,{},185860,1,South America +2024-11-20,96436,2059,"[""Wireless Mouse"", ""Keyboard""]",4419.78,"{""promo"": ""28%""}",266361,1,North America +2024-08-12,96437,116,"[""Keyboard"", ""Charger""]",1987.6,{},128778,1,Europe +2023-12-30,96438,2213,"[""Laptop"", ""Tablet""]",4190.03,{},268606,1,Africa +2024-06-01,96439,870,"[""Laptop"", ""Wireless Mouse""]",3977.05,"{""seasonal"": ""17%""}",142858,0,Africa +2023-11-13,96440,43,"[""Monitor""]",4704.7,"{""promo"": ""23%""}",82875,1,North America +2023-07-24,96441,2205,"[""Phone"", ""Charger"", ""Wireless Mouse""]",3192.21,{},194763,1,Africa +2023-04-12,96442,7447,"[""Laptop"", ""Tablet"", ""Charger""]",2261.06,{},292232,0,North America +2024-08-26,96443,2255,"[""Charger"", ""Tablet""]",1849.03,"{""seasonal"": ""10%""}",126633,1,Africa +2023-08-24,96444,7809,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4133.28,{},17147,0,Asia +2024-02-22,96445,6671,"[""Headphones"", ""Phone""]",4531.1,"{""promo"": ""29%""}",258365,0,Africa +2023-11-18,96446,2990,"[""Tablet"", ""Phone""]",3629.16,{},236968,0,Europe +2024-08-19,96447,1235,"[""Headphones""]",1666.44,"{""promo"": ""28%""}",233606,0,South America +2023-07-27,96448,4412,"[""Laptop"", ""Charger""]",954.22,"{"""": ""5%""}",26384,1,South America +2024-12-06,96449,5925,"[""Headphones"", ""Charger"", ""Laptop""]",1433.84,{},108258,0,North America +2024-07-13,96450,2687,"[""Charger"", ""Wireless Mouse""]",4017.22,{},105542,1,Asia +2024-11-12,96451,4796,"[""Keyboard"", ""Headphones""]",973.85,{},47305,1,Europe +2024-09-03,96452,1744,"[""Charger""]",2097.56,"{""promo"": ""20%""}",4410,1,Europe +2024-07-30,96453,4885,"[""Monitor"", ""Phone"", ""Headphones""]",4867.62,"{""seasonal"": ""8%""}",142178,1,Africa +2023-01-02,96454,6228,"[""Monitor"", ""Laptop""]",4341.82,"{""promo"": ""10%""}",59126,0,Africa +2023-01-03,96455,1915,"[""Phone"", ""Headphones"", ""Tablet""]",3278.34,"{"""": ""23%""}",179203,1,South America +2023-03-20,96456,1050,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2647.84,"{"""": ""22%""}",296796,0,Africa +2023-04-05,96457,8872,"[""Laptop""]",3270.14,"{""loyalty"": ""22%""}",255947,0,South America +2023-04-03,96458,1512,"[""Charger""]",2471.17,"{""promo"": ""26%""}",190557,1,Europe +2024-10-10,96459,1594,"[""Monitor""]",4887.9,{},116443,1,South America +2023-10-24,96460,3135,"[""Charger""]",2661.77,{},150240,1,Europe +2023-09-24,96461,9125,"[""Keyboard""]",4209.29,{},261707,1,Africa +2023-07-16,96462,7802,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",1975.07,{},145281,1,Asia +2023-06-22,96463,7283,"[""Charger"", ""Headphones""]",2298.52,{},10249,1,North America +2023-01-06,96464,9024,"[""Keyboard"", ""Monitor""]",2023.35,{},248650,1,Europe +2024-07-19,96465,4803,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",2360.66,{},86165,1,Europe +2024-06-06,96466,2493,"[""Charger"", ""Laptop""]",533.67,{},116604,0,Europe +2024-10-11,96467,5730,"[""Phone""]",794.17,{},100847,1,Africa +2024-05-19,96468,1280,"[""Keyboard"", ""Phone""]",888.04,{},81956,1,North America +2024-11-26,96469,6573,"[""Laptop"", ""Wireless Mouse""]",2629.02,{},273812,1,Asia +2024-11-21,96470,7040,"[""Keyboard"", ""Monitor""]",3679.43,{},44021,0,Asia +2023-08-30,96471,9122,"[""Tablet""]",4623.88,"{""loyalty"": ""20%""}",218247,0,North America +2024-05-31,96472,9288,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",431.89,{},3242,1,Africa +2023-02-02,96473,3255,"[""Laptop"", ""Headphones"", ""Keyboard""]",934.22,{},116402,0,South America +2024-04-19,96474,1424,"[""Headphones""]",4114.33,"{""loyalty"": ""10%""}",291942,1,South America +2024-07-15,96475,811,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2193.57,"{"""": ""20%""}",106168,1,Africa +2024-11-06,96476,3629,"[""Wireless Mouse""]",1794.28,{},130901,0,Europe +2024-10-18,96477,2015,"[""Wireless Mouse"", ""Laptop""]",4457.34,{},219099,0,Africa +2023-06-30,96478,675,"[""Keyboard"", ""Wireless Mouse""]",4538.44,{},212184,1,North America +2024-01-15,96479,8483,"[""Charger""]",735.36,{},40133,0,Africa +2023-11-07,96480,6021,"[""Phone""]",2007.53,"{""loyalty"": ""13%""}",149257,1,Asia +2024-09-04,96481,287,"[""Laptop""]",2634.58,{},161652,1,Asia +2023-10-11,96482,6085,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",4046.8,{},232962,0,North America +2024-11-21,96483,6844,"[""Headphones""]",2608.49,{},142589,1,Africa +2024-12-18,96484,280,"[""Monitor""]",966.64,{},88851,1,Asia +2023-12-19,96485,9807,"[""Laptop"", ""Keyboard""]",175.02,{},138579,0,Africa +2023-12-16,96486,6993,"[""Headphones""]",322.57,"{""seasonal"": ""19%""}",249756,0,North America +2023-03-13,96487,9076,"[""Tablet""]",3403.73,{},64633,0,Europe +2024-05-06,96488,9889,"[""Laptop"", ""Phone"", ""Tablet""]",2800.2,{},40037,1,Europe +2023-05-20,96489,6825,"[""Keyboard"", ""Tablet""]",1548.77,"{""promo"": ""15%""}",148875,0,Europe +2024-07-18,96490,1211,"[""Phone"", ""Monitor"", ""Charger""]",3498.13,{},253771,1,Asia +2024-05-16,96491,9979,"[""Monitor"", ""Keyboard""]",118.49,{},212242,0,Europe +2023-05-12,96492,2792,"[""Laptop""]",1619.85,"{""seasonal"": ""24%""}",43803,0,Africa +2023-08-09,96493,4605,"[""Keyboard""]",3247.09,{},233442,1,Asia +2024-04-04,96494,9620,"[""Charger"", ""Laptop""]",4706.89,"{""seasonal"": ""15%""}",91275,1,North America +2023-02-26,96495,3960,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3212.97,{},67688,0,Africa +2024-12-31,96496,5125,"[""Keyboard"", ""Wireless Mouse""]",3057.82,{},91135,0,Europe +2024-12-19,96497,8853,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2852.04,"{"""": ""22%""}",63411,0,South America +2023-06-17,96498,6381,"[""Wireless Mouse""]",4930.67,{},82193,1,North America +2023-04-08,96499,8801,"[""Phone"", ""Laptop"", ""Keyboard""]",2904.27,"{""loyalty"": ""23%""}",156824,1,Asia +2023-05-06,96500,308,"[""Keyboard"", ""Charger"", ""Monitor""]",2293.68,"{""seasonal"": ""7%""}",130389,0,Africa +2023-03-01,96501,5841,"[""Headphones""]",3968.63,{},18154,1,Africa +2024-09-25,96502,172,"[""Wireless Mouse""]",4797.58,{},203013,0,Asia +2024-09-12,96503,8169,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",657.57,{},125211,1,South America +2023-09-17,96504,6966,"[""Phone"", ""Keyboard"", ""Laptop""]",2431.68,{},69590,0,Africa +2024-10-20,96505,1175,"[""Wireless Mouse""]",1044.77,"{""loyalty"": ""14%""}",28871,1,Europe +2024-12-20,96506,8033,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",4243.11,"{"""": ""19%""}",31690,1,North America +2024-04-05,96507,7670,"[""Keyboard"", ""Tablet""]",100.29,"{""loyalty"": ""26%""}",153334,1,Asia +2023-03-01,96508,5713,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",576.6,{},220542,1,Africa +2024-08-30,96509,3140,"[""Phone"", ""Tablet""]",1558.52,"{""seasonal"": ""5%""}",29306,0,North America +2024-02-22,96510,709,"[""Charger"", ""Monitor"", ""Tablet""]",766.49,"{"""": ""8%""}",124720,1,South America +2023-12-26,96511,3949,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",1240.98,"{""seasonal"": ""13%""}",210633,0,Asia +2024-08-04,96512,9287,"[""Tablet""]",4446.85,{},32627,0,Europe +2023-03-30,96513,2068,"[""Monitor"", ""Keyboard"", ""Phone""]",4123.95,{},117306,0,Africa +2024-03-26,96514,1048,"[""Keyboard"", ""Headphones"", ""Tablet""]",3629.54,{},285971,0,North America +2023-02-10,96515,7860,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3146.59,{},53969,1,Europe +2023-02-11,96516,7856,"[""Monitor"", ""Charger""]",3191.97,"{""promo"": ""19%""}",80776,1,Europe +2024-05-20,96517,3214,"[""Laptop"", ""Headphones"", ""Phone""]",4565.16,{},247185,1,Europe +2023-02-22,96518,9389,"[""Headphones""]",3711.24,{},77410,1,North America +2024-04-18,96519,2996,"[""Laptop"", ""Headphones"", ""Keyboard""]",2087.94,"{""seasonal"": ""20%""}",227818,1,Africa +2024-10-12,96520,6580,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",695.85,"{""loyalty"": ""18%""}",43310,0,Asia +2024-01-09,96521,4540,"[""Keyboard"", ""Tablet"", ""Monitor""]",3523.08,"{""promo"": ""27%""}",82493,1,Asia +2023-09-02,96522,174,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3737.24,"{""loyalty"": ""19%""}",173980,1,Asia +2024-05-04,96523,3980,"[""Headphones""]",3114.99,{},147643,0,Europe +2024-11-30,96524,5744,"[""Keyboard""]",112.32,"{""loyalty"": ""13%""}",116861,0,Asia +2024-10-21,96525,1578,"[""Headphones"", ""Charger""]",3575.48,"{"""": ""12%""}",182535,1,South America +2023-07-22,96526,9741,"[""Monitor"", ""Tablet"", ""Headphones""]",1521.42,"{""promo"": ""5%""}",177412,0,South America +2023-10-13,96527,5585,"[""Keyboard""]",1577.15,"{""promo"": ""10%""}",259701,0,Africa +2024-03-06,96528,4311,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",1938.52,"{"""": ""6%""}",131460,0,North America +2024-02-14,96529,9679,"[""Headphones""]",1009.24,{},187391,1,Europe +2023-06-18,96530,8265,"[""Charger""]",4783.59,{},10272,0,North America +2024-10-27,96531,9060,"[""Tablet"", ""Charger""]",927.35,{},50033,1,South America +2023-05-25,96532,1489,"[""Laptop"", ""Wireless Mouse""]",1115.23,"{""loyalty"": ""9%""}",278074,0,Africa +2023-12-21,96533,1330,"[""Tablet"", ""Phone"", ""Monitor""]",2216.16,"{""seasonal"": ""25%""}",243716,1,Africa +2023-05-31,96534,2153,"[""Charger"", ""Phone"", ""Laptop""]",1496.41,"{""loyalty"": ""10%""}",260442,0,Europe +2023-03-23,96535,7984,"[""Charger"", ""Phone"", ""Wireless Mouse""]",3840.82,{},286103,1,Europe +2023-01-13,96536,9537,"[""Phone"", ""Headphones"", ""Keyboard""]",3419.44,{},49520,0,Asia +2023-05-07,96537,9423,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4993.21,"{""promo"": ""25%""}",119531,0,Africa +2024-04-04,96538,8862,"[""Keyboard"", ""Laptop""]",3958.81,"{""loyalty"": ""14%""}",90494,0,Europe +2023-02-03,96539,2810,"[""Phone""]",715.93,"{""seasonal"": ""20%""}",49378,1,Africa +2024-07-04,96540,8337,"[""Monitor""]",61.55,"{""seasonal"": ""16%""}",272562,0,South America +2024-03-15,96541,8428,"[""Keyboard""]",4266.24,{},251455,0,Asia +2024-04-22,96542,8446,"[""Headphones"", ""Wireless Mouse""]",4316.31,{},102627,0,Africa +2024-07-11,96543,9864,"[""Laptop"", ""Keyboard"", ""Charger""]",3547.12,{},255964,0,Africa +2024-11-07,96544,4884,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",703.63,"{""seasonal"": ""28%""}",260736,0,Africa +2024-12-25,96545,864,"[""Monitor"", ""Headphones""]",2166.15,{},78793,1,Asia +2023-10-20,96546,3224,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4786.21,"{"""": ""27%""}",208408,1,South America +2023-01-16,96547,5004,"[""Wireless Mouse"", ""Phone""]",3386.2,"{""promo"": ""11%""}",33958,0,Europe +2023-04-22,96548,1992,"[""Laptop""]",403.01,"{""loyalty"": ""16%""}",272627,0,Africa +2023-10-04,96549,6666,"[""Monitor"", ""Tablet""]",3561.64,"{"""": ""19%""}",179440,1,South America +2024-12-02,96550,785,"[""Phone"", ""Headphones"", ""Laptop""]",2856.0,{},91445,1,Europe +2023-06-16,96551,3751,"[""Keyboard"", ""Charger"", ""Tablet""]",1537.71,{},60866,1,Asia +2024-05-17,96552,3398,"[""Laptop"", ""Charger"", ""Monitor""]",741.56,"{""seasonal"": ""18%""}",77123,0,Asia +2024-12-13,96553,7428,"[""Headphones"", ""Phone"", ""Tablet""]",1286.64,"{""loyalty"": ""10%""}",118987,1,Asia +2023-06-22,96554,9878,"[""Keyboard""]",4347.78,{},239207,1,Asia +2023-12-26,96555,5287,"[""Phone"", ""Tablet"", ""Monitor""]",1704.88,"{""seasonal"": ""23%""}",252794,0,South America +2024-02-28,96556,869,"[""Wireless Mouse"", ""Charger""]",1504.32,{},241585,1,Europe +2023-11-22,96557,3592,"[""Laptop"", ""Tablet"", ""Monitor""]",4043.8,{},130777,0,Africa +2023-08-05,96558,7100,"[""Charger"", ""Wireless Mouse""]",2598.84,"{""loyalty"": ""29%""}",80635,1,North America +2023-08-20,96559,2857,"[""Headphones"", ""Laptop"", ""Phone""]",1495.95,{},203077,1,North America +2023-01-17,96560,8610,"[""Charger"", ""Phone""]",2491.17,"{"""": ""13%""}",144851,1,South America +2024-06-28,96561,8322,"[""Monitor"", ""Laptop"", ""Headphones""]",482.42,"{""loyalty"": ""23%""}",142972,1,North America +2024-07-25,96562,958,"[""Headphones"", ""Phone"", ""Tablet""]",1660.98,"{""promo"": ""22%""}",205066,1,Asia +2023-10-24,96563,2581,"[""Tablet"", ""Wireless Mouse""]",4119.93,{},156318,1,North America +2023-12-18,96564,2897,"[""Monitor""]",3505.34,"{""promo"": ""10%""}",273632,1,South America +2024-12-20,96565,15,"[""Phone""]",2844.76,{},165758,0,South America +2023-06-24,96566,5989,"[""Charger"", ""Keyboard""]",2435.9,{},203328,1,Africa +2023-08-03,96567,6808,"[""Wireless Mouse""]",4106.03,"{""promo"": ""15%""}",43293,1,Africa +2024-02-07,96568,3757,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",4016.69,"{"""": ""8%""}",225259,1,Asia +2023-05-06,96569,8528,"[""Headphones"", ""Laptop""]",3654.97,{},252480,0,Asia +2023-10-14,96570,1263,"[""Wireless Mouse"", ""Keyboard""]",2773.16,"{""loyalty"": ""9%""}",14455,0,Europe +2023-11-06,96571,529,"[""Laptop"", ""Tablet""]",1987.83,"{"""": ""5%""}",260322,0,Asia +2023-09-05,96572,8280,"[""Phone"", ""Charger""]",1289.17,"{""loyalty"": ""27%""}",180730,1,South America +2023-05-26,96573,7828,"[""Keyboard"", ""Wireless Mouse""]",2703.47,"{""seasonal"": ""27%""}",59089,1,North America +2023-04-25,96574,1256,"[""Monitor""]",1590.84,"{""promo"": ""23%""}",106744,0,South America +2023-05-30,96575,633,"[""Tablet"", ""Keyboard""]",1542.98,{},164744,0,Europe +2024-05-15,96576,668,"[""Headphones""]",4576.86,{},277835,1,Africa +2024-02-15,96577,7622,"[""Laptop""]",3073.1,"{""loyalty"": ""11%""}",197694,1,North America +2024-11-02,96578,5913,"[""Wireless Mouse""]",3516.22,{},250971,1,Africa +2024-04-01,96579,9405,"[""Phone""]",3384.34,"{""loyalty"": ""11%""}",274714,0,Africa +2024-11-17,96580,3401,"[""Phone""]",4401.69,"{"""": ""21%""}",188263,0,South America +2024-07-02,96581,5342,"[""Charger"", ""Keyboard""]",1245.07,{},59930,1,Africa +2023-04-11,96582,7325,"[""Phone""]",1173.77,{},165943,0,Asia +2023-08-17,96583,7834,"[""Wireless Mouse"", ""Tablet""]",1768.43,{},271577,1,Africa +2023-04-07,96584,583,"[""Tablet""]",1575.87,{},228073,1,Africa +2024-11-09,96585,4211,"[""Laptop"", ""Keyboard""]",3188.38,"{"""": ""18%""}",123523,1,Africa +2024-08-17,96586,4271,"[""Wireless Mouse"", ""Charger""]",4325.65,{},7979,0,Europe +2023-02-13,96587,8019,"[""Charger"", ""Keyboard"", ""Headphones""]",1686.61,{},192380,1,Europe +2023-06-15,96588,8714,"[""Charger"", ""Keyboard""]",3110.25,{},15073,1,Europe +2024-10-23,96589,7795,"[""Monitor"", ""Tablet"", ""Keyboard""]",3834.31,{},208813,1,Africa +2024-12-09,96590,1615,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1710.68,"{"""": ""22%""}",187014,1,South America +2023-03-30,96591,5423,"[""Monitor"", ""Laptop"", ""Headphones""]",3939.56,"{""seasonal"": ""6%""}",59532,1,Asia +2024-09-01,96592,4184,"[""Monitor"", ""Phone""]",2246.98,{},206109,1,South America +2023-01-06,96593,381,"[""Tablet"", ""Laptop"", ""Keyboard""]",3062.6,"{"""": ""20%""}",257781,0,Asia +2023-12-26,96594,7530,"[""Monitor""]",3514.47,"{""promo"": ""12%""}",244778,0,South America +2023-07-23,96595,449,"[""Wireless Mouse""]",1132.47,"{"""": ""8%""}",296281,1,North America +2024-07-31,96596,2724,"[""Keyboard""]",1370.99,"{""promo"": ""19%""}",269604,0,South America +2023-10-02,96597,9138,"[""Laptop"", ""Headphones""]",343.08,"{""seasonal"": ""7%""}",186144,0,South America +2024-06-01,96598,6680,"[""Monitor"", ""Charger"", ""Keyboard""]",4740.07,"{"""": ""29%""}",94972,0,Africa +2023-10-20,96599,1471,"[""Tablet""]",2268.15,{},151305,1,North America +2023-11-27,96600,1958,"[""Keyboard"", ""Laptop"", ""Phone""]",952.31,"{"""": ""13%""}",146487,0,Europe +2024-09-28,96601,9217,"[""Wireless Mouse"", ""Tablet""]",4791.75,{},123625,1,Africa +2024-07-10,96602,1322,"[""Laptop""]",974.86,"{""loyalty"": ""10%""}",138485,1,Asia +2023-08-30,96603,5357,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4007.68,"{""seasonal"": ""7%""}",170066,1,South America +2023-12-08,96604,4980,"[""Phone"", ""Wireless Mouse""]",1833.05,"{""promo"": ""11%""}",207775,0,Europe +2024-05-10,96605,4652,"[""Tablet"", ""Monitor""]",3864.85,{},176572,0,Europe +2023-07-11,96606,7934,"[""Headphones"", ""Monitor""]",2591.88,"{"""": ""23%""}",147121,0,North America +2024-11-13,96607,8011,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2435.56,{},170351,1,South America +2023-02-27,96608,3137,"[""Tablet"", ""Headphones"", ""Keyboard""]",4175.67,"{""promo"": ""26%""}",111719,1,North America +2023-09-15,96609,7702,"[""Laptop""]",1084.33,"{""promo"": ""18%""}",264596,1,Africa +2024-11-17,96610,935,"[""Wireless Mouse""]",3971.97,"{""promo"": ""10%""}",40593,1,Europe +2023-01-18,96611,6568,"[""Phone""]",1814.65,{},125313,1,North America +2023-08-20,96612,6657,"[""Phone""]",3449.61,"{"""": ""7%""}",1170,0,North America +2023-01-08,96613,6993,"[""Headphones"", ""Tablet""]",4683.9,{},164826,1,Asia +2023-04-29,96614,7851,"[""Monitor""]",311.84,{},5525,0,South America +2023-06-18,96615,79,"[""Tablet""]",3222.51,"{"""": ""9%""}",104783,1,Europe +2024-03-15,96616,9044,"[""Laptop"", ""Phone""]",3778.39,"{""seasonal"": ""29%""}",159242,1,Asia +2024-02-15,96617,8943,"[""Monitor"", ""Phone"", ""Laptop""]",4057.99,"{""seasonal"": ""13%""}",73650,1,North America +2024-10-19,96618,8177,"[""Tablet""]",4698.96,"{""loyalty"": ""15%""}",169100,0,Africa +2024-11-27,96619,1102,"[""Phone"", ""Tablet"", ""Headphones""]",4657.23,{},51496,1,Africa +2024-07-07,96620,3189,"[""Wireless Mouse""]",4503.49,{},132741,0,South America +2024-01-22,96621,4988,"[""Headphones"", ""Charger"", ""Keyboard""]",3136.05,"{"""": ""24%""}",258597,1,Asia +2024-11-07,96622,2638,"[""Monitor"", ""Keyboard""]",4197.26,{},45175,0,Europe +2023-07-31,96623,695,"[""Tablet"", ""Phone"", ""Charger""]",1915.68,"{"""": ""9%""}",103385,0,Africa +2023-11-06,96624,6152,"[""Phone"", ""Tablet""]",2738.61,"{"""": ""16%""}",61346,1,Asia +2024-02-18,96625,4710,"[""Charger"", ""Wireless Mouse""]",4445.27,{},146590,0,Asia +2023-02-04,96626,3763,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1190.04,{},227639,1,Africa +2023-05-03,96627,3107,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1001.52,"{"""": ""21%""}",163280,0,Asia +2023-11-17,96628,5745,"[""Laptop""]",1707.74,"{"""": ""29%""}",50166,1,North America +2024-01-12,96629,575,"[""Wireless Mouse""]",4104.66,{},277129,1,Europe +2023-10-09,96630,9878,"[""Monitor"", ""Charger"", ""Phone""]",1472.2,"{""seasonal"": ""19%""}",181605,0,North America +2023-11-14,96631,829,"[""Monitor""]",458.65,{},255450,1,North America +2023-11-10,96632,3364,"[""Keyboard""]",1808.68,{},105244,0,South America +2023-10-23,96633,997,"[""Phone"", ""Tablet"", ""Charger""]",2714.71,"{""loyalty"": ""11%""}",86437,1,South America +2023-11-26,96634,5496,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4001.56,{},18240,0,Africa +2023-11-17,96635,3025,"[""Monitor""]",927.2,{},223836,1,Europe +2024-09-10,96636,3131,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",370.82,"{""seasonal"": ""18%""}",292199,1,North America +2023-08-09,96637,5765,"[""Laptop"", ""Headphones"", ""Keyboard""]",4126.62,"{""seasonal"": ""7%""}",241031,0,Asia +2024-11-24,96638,2133,"[""Tablet"", ""Phone"", ""Headphones""]",4279.5,"{""loyalty"": ""11%""}",159298,1,Africa +2024-07-07,96639,583,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",2937.3,{},171914,1,Asia +2024-02-03,96640,399,"[""Monitor"", ""Charger""]",880.99,{},160269,1,Europe +2023-10-23,96641,7858,"[""Monitor"", ""Phone""]",3006.45,{},97606,0,South America +2024-01-31,96642,8296,"[""Tablet""]",2619.48,"{""loyalty"": ""12%""}",61367,1,Europe +2023-01-31,96643,2667,"[""Phone"", ""Headphones""]",4725.24,{},207636,1,Africa +2023-12-21,96644,9664,"[""Headphones"", ""Wireless Mouse""]",3829.19,{},268665,1,Africa +2024-02-19,96645,1824,"[""Keyboard"", ""Charger""]",1776.52,"{"""": ""12%""}",111921,0,South America +2023-01-02,96646,6562,"[""Charger""]",973.1,{},124046,1,Asia +2023-08-14,96647,744,"[""Headphones"", ""Charger"", ""Keyboard""]",3880.15,"{""loyalty"": ""24%""}",89590,0,Africa +2023-02-17,96648,9284,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4904.52,"{""seasonal"": ""12%""}",135145,1,Asia +2024-07-01,96649,3695,"[""Monitor""]",4189.64,"{"""": ""23%""}",120779,1,Asia +2023-12-10,96650,5893,"[""Charger"", ""Tablet""]",2026.99,"{"""": ""7%""}",105481,0,Europe +2023-01-09,96651,5801,"[""Monitor"", ""Headphones""]",4559.44,{},126789,1,Asia +2023-10-02,96652,3309,"[""Monitor"", ""Headphones""]",4320.89,{},10744,0,South America +2024-01-15,96653,5590,"[""Headphones"", ""Tablet"", ""Laptop""]",4871.24,{},245271,0,Africa +2024-07-17,96654,7491,"[""Charger"", ""Laptop""]",3150.41,"{""promo"": ""29%""}",263164,0,Asia +2023-12-18,96655,3213,"[""Laptop""]",4303.86,"{""seasonal"": ""21%""}",90641,1,South America +2023-03-07,96656,1716,"[""Tablet"", ""Monitor""]",2707.65,{},169829,1,North America +2024-12-21,96657,4512,"[""Charger"", ""Headphones""]",973.65,{},61449,1,Africa +2023-08-25,96658,1677,"[""Headphones"", ""Tablet""]",780.7,"{""loyalty"": ""18%""}",57177,1,Africa +2023-03-28,96659,3507,"[""Keyboard"", ""Monitor"", ""Tablet""]",1571.98,"{""loyalty"": ""21%""}",293756,1,Europe +2023-01-31,96660,1272,"[""Tablet"", ""Laptop""]",1022.62,{},191380,1,Asia +2024-04-02,96661,7666,"[""Wireless Mouse""]",2746.32,{},120499,0,Asia +2024-12-04,96662,9792,"[""Charger"", ""Monitor""]",2855.23,"{""seasonal"": ""12%""}",41637,0,South America +2023-02-08,96663,2074,"[""Monitor"", ""Phone""]",4312.46,{},210852,0,Europe +2024-03-20,96664,4131,"[""Phone""]",2337.94,"{""loyalty"": ""5%""}",31383,0,North America +2023-06-29,96665,1637,"[""Laptop""]",222.52,"{""promo"": ""5%""}",273157,1,Asia +2024-04-22,96666,2132,"[""Wireless Mouse"", ""Laptop""]",1408.14,"{"""": ""25%""}",264264,1,Asia +2023-06-12,96667,1891,"[""Tablet""]",2441.06,{},292996,0,Africa +2023-04-03,96668,1038,"[""Keyboard"", ""Charger""]",2398.26,"{""promo"": ""23%""}",67012,1,Europe +2024-03-20,96669,4763,"[""Charger"", ""Keyboard"", ""Phone""]",4025.44,{},186712,0,Asia +2023-07-14,96670,7104,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",2501.68,{},162616,0,North America +2024-11-04,96671,1662,"[""Headphones"", ""Laptop"", ""Keyboard""]",1888.64,{},62704,1,Africa +2024-04-06,96672,8042,"[""Monitor""]",4419.71,{},207142,0,Asia +2024-03-24,96673,5331,"[""Phone""]",2515.96,{},235367,1,South America +2023-08-01,96674,2741,"[""Laptop"", ""Tablet""]",68.03,{},198059,1,Asia +2023-02-15,96675,1205,"[""Keyboard"", ""Monitor"", ""Wireless Mouse""]",2733.61,{},163595,0,Europe +2023-07-09,96676,6612,"[""Tablet""]",572.98,"{""loyalty"": ""27%""}",123503,1,South America +2024-10-28,96677,1721,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",1441.87,"{""loyalty"": ""26%""}",170795,1,North America +2023-05-24,96678,948,"[""Laptop"", ""Monitor""]",2724.78,"{"""": ""21%""}",33008,0,Asia +2023-01-31,96679,1354,"[""Phone"", ""Tablet""]",131.76,{},109529,0,South America +2024-05-31,96680,365,"[""Laptop"", ""Phone"", ""Charger""]",2559.59,"{""loyalty"": ""28%""}",291927,0,Asia +2023-11-30,96681,7703,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",1255.4,"{"""": ""9%""}",138647,0,South America +2023-04-02,96682,6902,"[""Headphones"", ""Charger""]",1413.54,"{""loyalty"": ""12%""}",13319,0,South America +2023-01-04,96683,1487,"[""Tablet"", ""Monitor"", ""Laptop""]",2149.78,"{"""": ""12%""}",213712,1,Asia +2024-07-03,96684,3627,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",2187.49,"{""loyalty"": ""16%""}",151069,0,Asia +2023-11-20,96685,5453,"[""Monitor"", ""Phone""]",1732.02,"{""promo"": ""20%""}",139988,0,South America +2024-12-21,96686,1263,"[""Headphones"", ""Wireless Mouse""]",4908.54,{},292244,0,Africa +2024-10-02,96687,2975,"[""Tablet"", ""Charger""]",1931.21,{},282653,1,Africa +2024-03-25,96688,2662,"[""Wireless Mouse""]",508.04,{},285053,1,Europe +2023-05-30,96689,5270,"[""Monitor""]",1050.28,{},88861,1,Africa +2023-10-06,96690,8586,"[""Headphones"", ""Tablet"", ""Phone""]",3090.83,"{"""": ""13%""}",87673,0,Asia +2024-04-15,96691,8958,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3903.91,{},296136,1,Africa +2024-11-26,96692,9580,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",4585.69,{},204249,1,Europe +2023-10-22,96693,9687,"[""Charger"", ""Headphones""]",459.64,"{""seasonal"": ""17%""}",146472,1,Africa +2024-08-23,96694,6543,"[""Phone"", ""Headphones""]",4027.51,"{""promo"": ""28%""}",83099,1,South America +2023-10-10,96695,4167,"[""Laptop"", ""Charger"", ""Monitor""]",3357.87,"{""promo"": ""6%""}",178430,1,North America +2023-01-19,96696,2910,"[""Phone""]",2550.64,"{"""": ""5%""}",30550,1,South America +2024-05-24,96697,4938,"[""Tablet""]",3552.96,"{""promo"": ""30%""}",188671,0,Africa +2024-06-04,96698,7701,"[""Wireless Mouse"", ""Monitor""]",63.2,"{""loyalty"": ""29%""}",110015,1,Africa +2024-05-10,96699,523,"[""Phone"", ""Charger"", ""Headphones""]",437.04,"{""seasonal"": ""18%""}",274800,0,Africa +2024-10-27,96700,676,"[""Phone""]",3797.75,"{"""": ""8%""}",115265,1,Asia +2024-02-15,96701,7436,"[""Wireless Mouse""]",2763.27,"{"""": ""11%""}",259171,0,Africa +2024-06-19,96702,4682,"[""Monitor""]",512.03,"{"""": ""27%""}",227279,0,Africa +2024-12-31,96703,9037,"[""Keyboard""]",434.16,{},175319,0,Europe +2024-02-23,96704,3626,"[""Tablet""]",4856.96,"{"""": ""21%""}",121158,1,Europe +2023-09-29,96705,8749,"[""Tablet"", ""Headphones"", ""Laptop""]",3523.1,"{"""": ""20%""}",65830,1,North America +2023-06-01,96706,7313,"[""Laptop"", ""Monitor""]",2427.65,"{"""": ""13%""}",1906,0,Europe +2024-03-14,96707,4344,"[""Charger"", ""Monitor""]",159.14,{},13186,1,North America +2024-08-09,96708,4775,"[""Charger""]",4630.32,{},284711,1,Africa +2024-05-01,96709,2944,"[""Wireless Mouse""]",1812.54,{},269759,1,Europe +2023-06-17,96710,8924,"[""Monitor""]",80.33,"{""loyalty"": ""12%""}",26617,0,North America +2023-07-26,96711,3855,"[""Tablet"", ""Headphones"", ""Charger""]",4148.63,{},99782,1,North America +2023-10-04,96712,9051,"[""Headphones"", ""Phone""]",3535.3,"{""promo"": ""30%""}",121463,0,Europe +2023-09-25,96713,7651,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2131.4,"{""promo"": ""15%""}",65532,1,North America +2024-01-16,96714,8497,"[""Headphones""]",2168.15,{},222029,0,Europe +2023-01-23,96715,6394,"[""Wireless Mouse"", ""Phone""]",4611.44,"{"""": ""22%""}",204038,0,Asia +2023-09-15,96716,6122,"[""Keyboard""]",246.71,{},149041,1,Asia +2024-01-14,96717,670,"[""Tablet""]",2962.94,"{""seasonal"": ""23%""}",288915,0,Africa +2024-09-21,96718,2182,"[""Headphones"", ""Tablet"", ""Keyboard""]",1488.33,"{"""": ""20%""}",151549,1,Europe +2023-05-11,96719,476,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",1740.22,"{"""": ""12%""}",11458,0,Africa +2023-03-13,96720,7736,"[""Wireless Mouse"", ""Laptop""]",682.92,{},66861,0,Asia +2024-09-03,96721,1537,"[""Phone"", ""Laptop""]",4621.04,"{""seasonal"": ""17%""}",270376,0,South America +2023-11-19,96722,7886,"[""Keyboard"", ""Monitor""]",4377.95,"{"""": ""27%""}",56442,1,Africa +2023-02-02,96723,8924,"[""Laptop"", ""Monitor""]",2386.0,"{""promo"": ""30%""}",200221,0,Europe +2023-09-06,96724,6996,"[""Keyboard""]",4856.1,{},251177,0,Asia +2024-02-05,96725,9409,"[""Headphones"", ""Laptop""]",1752.39,"{"""": ""9%""}",272774,1,Europe +2024-04-19,96726,8075,"[""Wireless Mouse"", ""Monitor""]",990.99,"{""seasonal"": ""28%""}",259778,1,Africa +2024-07-07,96727,7630,"[""Charger"", ""Phone""]",4260.68,{},117621,0,North America +2024-11-22,96728,3161,"[""Phone"", ""Monitor"", ""Headphones""]",1218.92,"{""promo"": ""17%""}",277013,0,North America +2023-07-18,96729,9366,"[""Wireless Mouse""]",3005.78,{},126880,1,North America +2023-09-05,96730,5349,"[""Keyboard"", ""Tablet""]",3889.33,{},135269,1,Africa +2024-09-07,96731,2425,"[""Laptop""]",467.53,"{""seasonal"": ""25%""}",8096,0,Asia +2024-10-27,96732,6799,"[""Laptop""]",2516.35,"{""seasonal"": ""10%""}",291611,1,North America +2024-08-02,96733,5692,"[""Keyboard""]",2162.94,{},128085,1,South America +2024-02-20,96734,836,"[""Charger""]",1216.96,"{""seasonal"": ""9%""}",31801,1,North America +2023-02-06,96735,5438,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",2437.07,"{""loyalty"": ""20%""}",154400,0,South America +2023-06-15,96736,102,"[""Phone""]",1063.81,{},111874,1,North America +2023-01-09,96737,8571,"[""Charger""]",4257.01,{},96728,1,Africa +2024-05-22,96738,2061,"[""Monitor"", ""Keyboard"", ""Headphones""]",387.88,"{""seasonal"": ""15%""}",84632,1,Asia +2023-06-25,96739,5256,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4942.96,"{""loyalty"": ""7%""}",135642,0,North America +2023-01-27,96740,3304,"[""Keyboard"", ""Charger"", ""Phone""]",4866.9,{},39968,1,North America +2023-04-28,96741,4851,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",1956.45,{},75060,0,South America +2024-12-31,96742,9836,"[""Monitor"", ""Headphones"", ""Keyboard""]",4031.67,"{""seasonal"": ""30%""}",258138,0,South America +2024-07-20,96743,9309,"[""Headphones"", ""Laptop""]",2229.74,{},35005,0,Europe +2023-12-08,96744,9004,"[""Laptop""]",4748.07,"{""seasonal"": ""16%""}",256873,0,Europe +2024-07-27,96745,3456,"[""Tablet""]",1443.6,{},8645,1,Africa +2023-10-11,96746,1258,"[""Charger""]",1243.69,{},228290,1,North America +2024-06-17,96747,8966,"[""Phone""]",2381.85,"{""loyalty"": ""17%""}",132213,1,North America +2024-06-09,96748,4349,"[""Phone"", ""Monitor"", ""Charger""]",1126.98,{},240516,0,South America +2024-07-30,96749,2015,"[""Charger""]",3822.05,{},40380,0,Asia +2024-06-26,96750,5688,"[""Laptop""]",4070.54,"{""promo"": ""17%""}",255281,1,Europe +2024-12-26,96751,6174,"[""Wireless Mouse""]",3429.08,"{"""": ""23%""}",71990,0,Africa +2024-11-05,96752,1274,"[""Phone""]",1906.05,"{""seasonal"": ""9%""}",121367,0,Asia +2023-04-28,96753,1590,"[""Monitor"", ""Laptop""]",1894.02,"{""loyalty"": ""23%""}",171588,0,Europe +2023-02-23,96754,8070,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1366.73,"{""loyalty"": ""6%""}",94090,1,Africa +2024-04-03,96755,1153,"[""Tablet"", ""Monitor"", ""Keyboard""]",4835.32,{},206303,0,Africa +2024-05-02,96756,8377,"[""Charger""]",1325.01,{},6946,1,North America +2023-09-30,96757,3076,"[""Headphones"", ""Laptop"", ""Keyboard""]",2556.13,"{""promo"": ""8%""}",67025,1,South America +2023-11-27,96758,2846,"[""Charger"", ""Headphones""]",3430.22,"{""promo"": ""26%""}",243423,1,Africa +2023-02-12,96759,5139,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3684.2,"{"""": ""28%""}",244119,1,South America +2024-07-04,96760,1619,"[""Charger""]",3718.43,{},65882,0,Africa +2024-05-05,96761,5554,"[""Phone""]",149.56,{},243360,0,Asia +2023-11-16,96762,8624,"[""Headphones"", ""Wireless Mouse""]",4410.71,"{""seasonal"": ""12%""}",248466,1,South America +2024-11-22,96763,4562,"[""Keyboard""]",2547.8,{},11661,0,Asia +2024-02-06,96764,7563,"[""Charger"", ""Keyboard""]",3007.1,"{""seasonal"": ""14%""}",37901,0,Europe +2023-10-04,96765,1581,"[""Tablet"", ""Laptop""]",3919.99,"{""promo"": ""19%""}",226135,0,Asia +2024-02-05,96766,7703,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3748.99,"{""loyalty"": ""13%""}",282617,0,Europe +2024-12-28,96767,3559,"[""Phone""]",309.95,{},147946,0,North America +2023-03-31,96768,7122,"[""Laptop"", ""Keyboard""]",4307.14,{},120192,0,South America +2023-10-24,96769,2576,"[""Keyboard"", ""Monitor""]",2093.34,"{""loyalty"": ""18%""}",289507,0,Africa +2024-06-09,96770,4372,"[""Phone"", ""Tablet"", ""Monitor""]",1285.61,"{""seasonal"": ""24%""}",102303,0,Asia +2023-08-12,96771,7064,"[""Laptop"", ""Keyboard""]",3233.83,"{""seasonal"": ""10%""}",156974,1,Europe +2024-01-09,96772,5206,"[""Tablet"", ""Phone""]",1550.51,{},279520,0,North America +2023-09-16,96773,993,"[""Phone"", ""Monitor""]",3632.84,"{""seasonal"": ""25%""}",286064,0,North America +2023-06-13,96774,7515,"[""Phone""]",1278.73,"{""promo"": ""18%""}",203379,0,North America +2023-11-18,96775,2409,"[""Wireless Mouse""]",4077.95,"{""seasonal"": ""10%""}",10962,1,Europe +2024-01-28,96776,442,"[""Phone""]",3949.36,"{""seasonal"": ""30%""}",194235,1,Asia +2023-05-13,96777,2120,"[""Phone"", ""Laptop""]",3847.81,{},231733,1,Europe +2024-12-20,96778,9655,"[""Monitor"", ""Headphones""]",4029.81,{},85909,1,Asia +2023-01-02,96779,6385,"[""Headphones"", ""Keyboard"", ""Laptop""]",2964.57,{},6606,1,Europe +2023-04-06,96780,9388,"[""Monitor""]",2849.04,{},48624,0,Africa +2024-05-23,96781,7412,"[""Wireless Mouse"", ""Phone"", ""Headphones""]",920.63,{},22292,0,Europe +2023-10-31,96782,3321,"[""Headphones"", ""Tablet"", ""Charger""]",2043.26,"{""loyalty"": ""6%""}",279936,1,Europe +2023-01-01,96783,9199,"[""Wireless Mouse"", ""Phone""]",275.77,"{""loyalty"": ""22%""}",250021,0,North America +2024-09-26,96784,4344,"[""Tablet"", ""Headphones"", ""Phone""]",266.45,{},77603,0,Asia +2024-07-25,96785,9248,"[""Laptop""]",2855.15,{},272276,0,Africa +2024-03-30,96786,7646,"[""Keyboard""]",94.91,{},264472,1,Asia +2024-09-27,96787,6958,"[""Phone""]",2775.98,{},277121,1,Asia +2023-11-09,96788,267,"[""Monitor"", ""Laptop""]",924.71,{},203669,0,South America +2023-11-29,96789,4109,"[""Keyboard"", ""Phone""]",4121.83,"{""promo"": ""22%""}",225515,0,Europe +2023-05-21,96790,2409,"[""Laptop"", ""Phone"", ""Keyboard""]",165.45,"{"""": ""17%""}",29966,1,Africa +2024-07-05,96791,2004,"[""Wireless Mouse""]",2900.4,"{""loyalty"": ""21%""}",237433,1,Asia +2024-07-12,96792,5110,"[""Keyboard"", ""Tablet"", ""Phone""]",3959.66,{},6234,1,North America +2023-07-12,96793,7205,"[""Phone"", ""Charger""]",213.56,"{""promo"": ""16%""}",168350,1,Asia +2023-01-25,96794,28,"[""Monitor"", ""Headphones"", ""Tablet""]",3236.97,"{""seasonal"": ""11%""}",33020,0,Europe +2023-07-02,96795,5586,"[""Charger""]",2545.46,"{"""": ""5%""}",251651,0,North America +2023-03-01,96796,9309,"[""Headphones"", ""Tablet"", ""Keyboard""]",75.92,{},17133,1,Africa +2023-10-11,96797,7021,"[""Tablet"", ""Wireless Mouse""]",1891.5,"{"""": ""15%""}",51863,1,Africa +2023-11-28,96798,9185,"[""Phone"", ""Charger"", ""Wireless Mouse""]",4144.26,{},164434,1,Europe +2024-03-04,96799,5221,"[""Charger""]",1527.3,"{""seasonal"": ""20%""}",112515,0,South America +2023-05-26,96800,6069,"[""Monitor"", ""Keyboard"", ""Charger""]",3429.7,"{""loyalty"": ""9%""}",291763,0,Europe +2024-07-18,96801,1320,"[""Wireless Mouse""]",600.1,"{""loyalty"": ""29%""}",167892,1,South America +2024-10-30,96802,4760,"[""Monitor""]",2480.57,"{""loyalty"": ""22%""}",296013,0,South America +2024-05-15,96803,7111,"[""Laptop"", ""Monitor"", ""Keyboard""]",3496.87,"{""loyalty"": ""20%""}",37326,0,Africa +2023-03-20,96804,8433,"[""Phone"", ""Monitor"", ""Laptop""]",3361.49,"{""promo"": ""10%""}",91770,0,Africa +2023-07-30,96805,5686,"[""Charger"", ""Headphones"", ""Tablet""]",3035.2,"{"""": ""28%""}",69565,1,North America +2024-07-04,96806,642,"[""Keyboard""]",3550.3,{},265251,0,Asia +2024-07-29,96807,4597,"[""Phone"", ""Charger""]",2477.02,"{""seasonal"": ""29%""}",197654,0,Europe +2024-04-24,96808,7882,"[""Wireless Mouse"", ""Charger""]",4150.75,"{"""": ""26%""}",202230,1,Europe +2023-06-02,96809,1961,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",2032.44,"{""promo"": ""19%""}",273134,0,Europe +2024-12-28,96810,9251,"[""Keyboard""]",4390.79,{},129935,1,Africa +2024-04-19,96811,6369,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",290.14,{},232595,1,North America +2023-07-21,96812,5633,"[""Headphones"", ""Charger""]",2927.7,"{""seasonal"": ""14%""}",61544,0,North America +2023-05-18,96813,9545,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4764.32,{},293642,0,Africa +2023-04-30,96814,1893,"[""Headphones""]",500.08,"{""loyalty"": ""21%""}",184301,0,South America +2024-03-22,96815,590,"[""Wireless Mouse""]",2116.27,"{""promo"": ""9%""}",93491,0,Africa +2023-12-28,96816,8748,"[""Wireless Mouse""]",2151.16,"{""loyalty"": ""6%""}",226936,0,Africa +2024-10-07,96817,9773,"[""Headphones"", ""Keyboard"", ""Tablet""]",4667.42,"{""promo"": ""19%""}",25917,1,North America +2024-10-16,96818,6998,"[""Keyboard"", ""Headphones""]",3584.79,{},264518,1,South America +2024-08-10,96819,6844,"[""Tablet"", ""Phone"", ""Laptop""]",3778.68,{},169558,1,North America +2024-04-17,96820,153,"[""Phone"", ""Laptop"", ""Headphones""]",1119.48,"{""loyalty"": ""24%""}",7407,1,South America +2024-04-11,96821,4938,"[""Keyboard"", ""Phone""]",4928.99,{},228403,0,South America +2024-03-06,96822,1311,"[""Tablet"", ""Wireless Mouse""]",3391.84,{},222967,0,North America +2024-03-01,96823,1666,"[""Phone"", ""Keyboard""]",743.62,{},140266,0,Africa +2023-02-22,96824,885,"[""Headphones"", ""Laptop""]",4452.73,{},15661,0,North America +2023-06-24,96825,2255,"[""Monitor""]",4822.65,{},10083,1,Europe +2023-03-15,96826,8310,"[""Tablet"", ""Laptop""]",383.03,{},59651,0,North America +2024-01-26,96827,8954,"[""Headphones"", ""Phone""]",2587.9,"{""loyalty"": ""26%""}",229046,0,Asia +2024-03-30,96828,8498,"[""Keyboard"", ""Tablet""]",2239.71,"{""promo"": ""6%""}",8572,0,Europe +2023-09-11,96829,8092,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2316.26,{},292312,0,North America +2024-12-22,96830,1027,"[""Headphones""]",1823.16,{},295811,1,Africa +2023-12-23,96831,3862,"[""Headphones"", ""Keyboard""]",739.99,"{""seasonal"": ""21%""}",183974,0,North America +2024-10-26,96832,2317,"[""Phone""]",3020.58,"{"""": ""16%""}",154604,1,Europe +2024-07-30,96833,1374,"[""Laptop"", ""Tablet""]",874.16,{},238121,0,Europe +2023-12-11,96834,6649,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",3883.52,{},66158,0,Asia +2023-10-06,96835,77,"[""Charger""]",361.38,{},254052,0,Europe +2023-05-23,96836,685,"[""Phone"", ""Keyboard"", ""Monitor""]",3085.49,"{""seasonal"": ""9%""}",222053,1,South America +2024-03-05,96837,456,"[""Phone"", ""Monitor""]",4908.8,{},81525,0,Asia +2024-03-17,96838,4761,"[""Keyboard""]",1732.98,{},154598,0,Africa +2023-10-14,96839,7738,"[""Tablet""]",4734.82,"{""promo"": ""11%""}",33844,0,Asia +2023-12-23,96840,6303,"[""Headphones""]",4298.6,{},96430,1,Asia +2024-11-11,96841,7155,"[""Laptop""]",892.8,{},209495,0,South America +2023-12-09,96842,9460,"[""Monitor"", ""Charger""]",4264.74,"{""promo"": ""27%""}",100586,1,South America +2023-12-31,96843,9654,"[""Keyboard""]",1274.3,{},172759,0,Europe +2023-12-27,96844,7436,"[""Monitor"", ""Phone""]",3793.54,"{""loyalty"": ""14%""}",49549,0,Europe +2024-03-25,96845,5001,"[""Charger"", ""Keyboard""]",3959.74,{},240979,0,Asia +2023-11-28,96846,9653,"[""Headphones"", ""Laptop"", ""Wireless Mouse""]",1567.9,{},259071,0,South America +2024-05-18,96847,9748,"[""Keyboard""]",714.05,{},64274,0,Asia +2023-09-27,96848,882,"[""Keyboard""]",2023.64,{},190304,1,North America +2024-07-25,96849,6734,"[""Keyboard"", ""Headphones""]",633.05,{},68325,1,North America +2024-02-26,96850,9698,"[""Headphones"", ""Charger""]",977.27,{},240700,1,Africa +2024-08-26,96851,2620,"[""Tablet"", ""Wireless Mouse""]",4613.52,"{"""": ""26%""}",4849,0,Africa +2023-10-13,96852,788,"[""Phone""]",2526.37,"{""seasonal"": ""13%""}",234836,0,Africa +2023-02-03,96853,4192,"[""Laptop""]",2568.74,{},106973,0,South America +2024-01-23,96854,3764,"[""Monitor"", ""Phone""]",671.21,"{""seasonal"": ""22%""}",269031,1,Asia +2023-10-13,96855,8973,"[""Phone"", ""Headphones""]",2678.85,"{""promo"": ""22%""}",183096,1,North America +2024-06-03,96856,4307,"[""Tablet"", ""Headphones""]",1304.43,"{""loyalty"": ""23%""}",177729,0,Africa +2024-06-25,96857,6558,"[""Phone""]",2182.28,"{""promo"": ""10%""}",288407,0,South America +2023-04-09,96858,6769,"[""Charger"", ""Laptop"", ""Tablet""]",1516.46,"{"""": ""22%""}",228459,0,Europe +2024-02-13,96859,8130,"[""Charger"", ""Keyboard""]",2793.45,"{""seasonal"": ""7%""}",291201,0,Asia +2023-05-18,96860,9285,"[""Monitor"", ""Tablet"", ""Charger""]",949.44,"{""seasonal"": ""12%""}",6478,0,North America +2023-02-04,96861,4298,"[""Wireless Mouse""]",1614.84,"{""loyalty"": ""27%""}",200723,0,Africa +2024-06-04,96862,533,"[""Laptop"", ""Keyboard"", ""Phone""]",2463.7,{},197910,0,South America +2024-07-25,96863,2679,"[""Monitor"", ""Phone"", ""Tablet""]",127.79,{},161183,1,Asia +2023-06-05,96864,6567,"[""Monitor"", ""Phone"", ""Laptop""]",1248.78,"{""promo"": ""17%""}",248509,1,Asia +2023-10-09,96865,8137,"[""Tablet""]",2627.97,"{"""": ""18%""}",295123,0,Europe +2023-10-18,96866,4936,"[""Monitor"", ""Charger""]",4802.89,{},251075,1,Europe +2023-12-29,96867,6710,"[""Headphones"", ""Keyboard""]",1526.04,{},147996,1,Europe +2024-10-12,96868,5344,"[""Laptop"", ""Phone""]",2938.65,{},36629,1,Europe +2023-04-03,96869,9797,"[""Keyboard""]",3404.56,{},35065,1,Africa +2023-11-10,96870,3208,"[""Phone""]",858.06,{},82914,0,South America +2024-10-24,96871,5704,"[""Monitor""]",3022.42,{},292652,0,South America +2024-11-28,96872,897,"[""Tablet""]",3512.87,{},243686,0,Africa +2023-12-06,96873,955,"[""Monitor""]",1595.75,{},174191,1,Europe +2023-11-07,96874,4783,"[""Tablet"", ""Laptop""]",2051.7,{},72075,1,South America +2024-02-20,96875,1288,"[""Keyboard""]",2805.56,{},164171,1,North America +2023-02-15,96876,8278,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",840.95,"{""loyalty"": ""11%""}",284285,0,Europe +2023-12-17,96877,2697,"[""Charger"", ""Keyboard""]",1985.17,"{"""": ""9%""}",99940,0,Europe +2024-04-25,96878,2538,"[""Monitor"", ""Tablet"", ""Keyboard""]",3769.97,{},15175,1,South America +2024-06-08,96879,5868,"[""Monitor""]",956.87,{},230168,1,South America +2023-06-03,96880,2488,"[""Wireless Mouse"", ""Phone"", ""Charger""]",1604.84,{},13430,1,North America +2023-05-13,96881,5739,"[""Headphones"", ""Monitor""]",1582.63,{},117849,1,Asia +2023-11-01,96882,2275,"[""Keyboard"", ""Monitor"", ""Charger""]",2231.9,"{""seasonal"": ""26%""}",188837,0,Asia +2024-09-03,96883,4003,"[""Charger""]",2559.27,"{""loyalty"": ""24%""}",153618,1,Europe +2023-02-26,96884,6916,"[""Wireless Mouse"", ""Phone""]",661.91,{},268079,1,Europe +2024-08-14,96885,6593,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3088.09,"{"""": ""16%""}",152324,1,Europe +2023-11-10,96886,6800,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",4942.48,{},139211,0,North America +2023-07-17,96887,1287,"[""Laptop""]",2744.85,"{""loyalty"": ""20%""}",136981,0,North America +2023-05-22,96888,2064,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",1610.22,{},273941,0,Europe +2024-04-10,96889,7356,"[""Laptop"", ""Keyboard"", ""Monitor""]",2227.45,{},232344,0,Asia +2023-12-06,96890,1607,"[""Wireless Mouse"", ""Charger""]",1266.39,{},174527,1,North America +2024-04-13,96891,2694,"[""Charger""]",4135.31,"{""promo"": ""23%""}",149642,0,South America +2023-03-27,96892,8811,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4204.55,"{""promo"": ""6%""}",55141,0,North America +2023-11-19,96893,7050,"[""Phone""]",3391.47,{},174206,0,Asia +2024-11-22,96894,8324,"[""Monitor"", ""Tablet""]",354.27,{},202123,0,Asia +2023-04-06,96895,5167,"[""Monitor""]",2482.53,{},190088,0,North America +2023-06-01,96896,9365,"[""Keyboard"", ""Phone""]",4950.65,"{""seasonal"": ""20%""}",111442,1,Africa +2023-05-02,96897,8755,"[""Monitor"", ""Laptop""]",2701.08,"{""promo"": ""27%""}",74075,0,Africa +2024-05-16,96898,4421,"[""Charger"", ""Keyboard"", ""Phone""]",4510.69,"{""loyalty"": ""7%""}",173689,0,North America +2024-05-31,96899,4195,"[""Keyboard""]",4759.94,"{""promo"": ""20%""}",87500,1,Asia +2024-05-12,96900,7137,"[""Monitor"", ""Charger"", ""Phone""]",2212.27,"{""loyalty"": ""28%""}",85608,0,Africa +2024-12-31,96901,3608,"[""Laptop"", ""Keyboard""]",2270.06,"{"""": ""14%""}",78240,0,North America +2023-04-09,96902,5728,"[""Headphones"", ""Laptop""]",2353.98,"{"""": ""20%""}",275737,0,Asia +2023-12-03,96903,3475,"[""Laptop"", ""Keyboard""]",4120.73,"{""seasonal"": ""17%""}",6291,0,South America +2023-02-05,96904,1623,"[""Laptop"", ""Headphones"", ""Phone""]",3176.4,{},62685,0,North America +2023-06-24,96905,6408,"[""Headphones""]",3560.2,"{"""": ""11%""}",193952,1,South America +2024-06-30,96906,9487,"[""Keyboard"", ""Charger""]",3148.89,{},145118,1,Europe +2024-09-27,96907,8051,"[""Headphones""]",3460.24,"{""seasonal"": ""16%""}",131184,0,Europe +2023-09-25,96908,8021,"[""Tablet"", ""Monitor""]",323.32,"{"""": ""12%""}",132770,0,South America +2024-08-03,96909,9608,"[""Keyboard""]",2217.41,{},31144,1,North America +2023-07-15,96910,2132,"[""Keyboard"", ""Headphones""]",4417.44,{},226820,0,South America +2024-03-19,96911,8956,"[""Laptop""]",4001.96,"{"""": ""15%""}",243292,0,North America +2024-11-22,96912,3037,"[""Monitor"", ""Keyboard""]",4100.89,{},122947,1,Asia +2024-04-09,96913,230,"[""Charger""]",404.62,{},265704,0,Europe +2024-09-11,96914,9968,"[""Laptop""]",4781.24,{},246842,1,Europe +2024-12-07,96915,3308,"[""Charger""]",4908.55,{},68746,1,South America +2023-10-18,96916,403,"[""Laptop"", ""Charger"", ""Tablet""]",537.5,"{""loyalty"": ""5%""}",2879,1,Asia +2024-04-12,96917,8125,"[""Keyboard""]",3625.3,{},250935,0,Africa +2023-12-22,96918,4656,"[""Keyboard"", ""Laptop"", ""Monitor""]",3855.0,{},205325,1,Europe +2023-04-05,96919,7981,"[""Keyboard"", ""Phone"", ""Monitor""]",921.24,"{""promo"": ""29%""}",128466,1,North America +2024-09-06,96920,1525,"[""Keyboard"", ""Laptop""]",4992.54,{},299625,0,South America +2024-03-03,96921,1124,"[""Phone""]",3976.97,"{""loyalty"": ""22%""}",185452,1,North America +2024-08-02,96922,1618,"[""Tablet""]",1245.67,"{""loyalty"": ""13%""}",248190,0,North America +2023-07-29,96923,3917,"[""Monitor""]",3666.73,{},204624,0,South America +2023-01-07,96924,5408,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",352.16,{},249140,1,Africa +2023-08-10,96925,4343,"[""Keyboard""]",220.47,{},1857,0,Europe +2024-02-15,96926,9439,"[""Keyboard""]",2414.25,{},122572,1,Asia +2023-10-10,96927,5693,"[""Keyboard""]",2859.6,"{"""": ""23%""}",208167,1,Africa +2023-02-18,96928,9157,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",1299.88,{},297116,1,Europe +2023-05-26,96929,8662,"[""Wireless Mouse"", ""Laptop""]",914.22,{},157039,0,North America +2024-04-14,96930,3881,"[""Keyboard"", ""Charger"", ""Headphones""]",2720.97,{},71927,1,Africa +2024-06-23,96931,4387,"[""Headphones"", ""Charger""]",1316.94,"{""loyalty"": ""23%""}",187721,0,North America +2023-02-05,96932,3344,"[""Keyboard""]",1969.9,{},268512,0,North America +2023-06-03,96933,5900,"[""Wireless Mouse""]",2208.99,"{""promo"": ""10%""}",208276,1,Asia +2024-09-08,96934,8216,"[""Phone"", ""Headphones"", ""Monitor""]",2944.21,"{""promo"": ""17%""}",103452,0,Asia +2023-05-02,96935,6152,"[""Monitor""]",2035.43,{},63434,1,Africa +2023-03-14,96936,1998,"[""Charger""]",569.26,{},145291,0,Africa +2024-11-06,96937,1008,"[""Monitor""]",1159.02,"{""loyalty"": ""14%""}",114497,1,Asia +2024-12-03,96938,5073,"[""Laptop"", ""Charger"", ""Keyboard""]",1824.88,"{""promo"": ""17%""}",55904,1,Europe +2023-11-24,96939,9179,"[""Tablet"", ""Charger""]",2816.26,{},11427,0,South America +2024-03-20,96940,2237,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",2918.83,"{""seasonal"": ""19%""}",289172,0,South America +2024-09-15,96941,3548,"[""Keyboard"", ""Headphones"", ""Charger""]",3531.96,{},261916,1,North America +2023-06-13,96942,1463,"[""Headphones""]",3180.89,{},109724,0,South America +2023-07-26,96943,8327,"[""Wireless Mouse"", ""Laptop""]",2994.44,"{"""": ""20%""}",220114,1,Asia +2024-09-13,96944,8565,"[""Phone""]",677.62,{},246036,0,South America +2023-12-30,96945,8476,"[""Charger""]",3410.71,"{""seasonal"": ""26%""}",243385,1,Europe +2024-05-26,96946,862,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",1929.58,{},84242,1,South America +2023-02-26,96947,4385,"[""Laptop"", ""Tablet"", ""Headphones""]",2322.83,"{""promo"": ""6%""}",187226,1,North America +2023-12-10,96948,3932,"[""Charger""]",969.03,"{""seasonal"": ""6%""}",180327,0,North America +2024-04-12,96949,313,"[""Laptop"", ""Headphones""]",174.81,"{""seasonal"": ""9%""}",76969,1,Europe +2023-02-09,96950,3144,"[""Charger"", ""Wireless Mouse""]",1215.07,"{""seasonal"": ""21%""}",250659,1,Asia +2024-10-15,96951,6286,"[""Keyboard"", ""Laptop""]",2307.45,"{""promo"": ""18%""}",79213,0,Asia +2023-05-20,96952,5523,"[""Phone""]",4078.44,{},131602,1,Europe +2023-11-10,96953,6018,"[""Monitor"", ""Keyboard""]",319.52,"{""loyalty"": ""27%""}",153516,0,North America +2024-03-01,96954,408,"[""Phone"", ""Monitor""]",367.67,"{""promo"": ""13%""}",78565,0,Asia +2023-08-24,96955,1565,"[""Charger"", ""Laptop""]",4657.63,{},243292,1,North America +2023-10-21,96956,26,"[""Wireless Mouse""]",1432.65,{},95015,1,North America +2023-10-15,96957,4830,"[""Phone"", ""Tablet""]",500.22,{},185627,1,Africa +2024-07-30,96958,5012,"[""Headphones"", ""Monitor"", ""Tablet""]",950.34,"{""seasonal"": ""20%""}",201268,0,Europe +2023-09-20,96959,847,"[""Headphones"", ""Laptop"", ""Phone""]",1592.82,"{""seasonal"": ""30%""}",249951,0,Asia +2024-12-13,96960,3682,"[""Headphones"", ""Wireless Mouse""]",1324.74,{},208223,0,North America +2024-09-18,96961,1160,"[""Laptop""]",3753.51,"{"""": ""7%""}",240867,1,South America +2023-02-25,96962,9636,"[""Headphones""]",1982.37,{},80070,0,North America +2024-07-20,96963,9357,"[""Headphones"", ""Wireless Mouse""]",2110.2,{},8304,1,Europe +2024-05-08,96964,9728,"[""Keyboard""]",1200.5,{},263640,0,North America +2024-08-31,96965,2547,"[""Charger"", ""Laptop""]",2560.39,"{"""": ""18%""}",46069,0,Asia +2024-08-02,96966,6045,"[""Monitor""]",3256.15,{},176047,0,South America +2023-01-29,96967,6286,"[""Charger"", ""Headphones""]",3657.53,"{"""": ""28%""}",209918,0,North America +2024-10-16,96968,2429,"[""Tablet"", ""Laptop"", ""Phone""]",2193.08,{},169912,1,Africa +2023-08-13,96969,1319,"[""Phone"", ""Charger""]",814.33,{},186252,1,North America +2024-02-08,96970,722,"[""Charger"", ""Phone""]",1237.88,"{""seasonal"": ""30%""}",93014,1,South America +2023-06-02,96971,3115,"[""Keyboard"", ""Headphones"", ""Laptop""]",3347.04,{},296105,0,South America +2023-10-04,96972,9478,"[""Tablet"", ""Charger""]",3460.53,"{"""": ""28%""}",103367,0,North America +2023-04-03,96973,9274,"[""Tablet"", ""Keyboard""]",182.06,"{"""": ""9%""}",75008,0,South America +2024-02-15,96974,7559,"[""Phone""]",2267.67,"{""promo"": ""10%""}",203111,0,North America +2023-09-19,96975,9292,"[""Headphones""]",1578.97,"{""promo"": ""12%""}",148687,1,North America +2023-12-09,96976,7021,"[""Laptop"", ""Charger""]",3513.64,"{"""": ""25%""}",121578,0,Europe +2024-07-04,96977,6444,"[""Charger"", ""Headphones"", ""Laptop""]",4652.01,"{"""": ""9%""}",150875,0,North America +2023-03-06,96978,6747,"[""Phone"", ""Keyboard""]",1277.86,{},186851,0,North America +2024-09-28,96979,4051,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3429.26,{},15786,1,Asia +2023-04-24,96980,7702,"[""Wireless Mouse"", ""Tablet""]",2279.16,"{"""": ""7%""}",171179,1,South America +2023-07-25,96981,7329,"[""Monitor"", ""Phone"", ""Keyboard""]",3878.75,"{""seasonal"": ""28%""}",102179,1,Africa +2024-09-24,96982,5400,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",3321.96,{},102707,0,Africa +2023-04-10,96983,2789,"[""Charger"", ""Tablet"", ""Monitor""]",1080.77,"{"""": ""18%""}",239655,0,North America +2023-01-18,96984,9927,"[""Wireless Mouse""]",409.94,{},107331,0,Asia +2023-11-10,96985,4105,"[""Monitor"", ""Wireless Mouse""]",3004.72,{},188459,1,Asia +2024-06-07,96986,192,"[""Keyboard"", ""Monitor""]",1464.29,"{"""": ""10%""}",185616,0,South America +2023-05-11,96987,1497,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3622.4,{},299149,0,South America +2024-09-14,96988,3169,"[""Keyboard"", ""Phone""]",332.9,"{""promo"": ""24%""}",273548,0,Asia +2024-12-19,96989,6277,"[""Headphones""]",284.64,"{""loyalty"": ""15%""}",229194,0,North America +2024-04-11,96990,4620,"[""Tablet"", ""Keyboard"", ""Phone""]",783.77,{},271809,1,North America +2024-05-24,96991,1388,"[""Laptop"", ""Phone""]",1312.06,{},208185,1,Europe +2024-01-21,96992,5069,"[""Keyboard"", ""Wireless Mouse""]",3041.17,"{""promo"": ""5%""}",199145,1,Europe +2023-08-31,96993,9496,"[""Laptop"", ""Keyboard""]",3787.55,"{""promo"": ""17%""}",104677,1,Africa +2024-05-26,96994,6183,"[""Headphones"", ""Laptop"", ""Tablet""]",3132.48,{},133238,1,Asia +2023-03-30,96995,260,"[""Charger""]",1080.72,{},145378,0,Europe +2023-07-08,96996,7273,"[""Laptop"", ""Keyboard""]",3626.23,"{"""": ""25%""}",59635,1,Africa +2024-12-30,96997,2970,"[""Tablet""]",1454.87,{},260612,1,Europe +2023-07-03,96998,1912,"[""Monitor""]",768.12,"{""loyalty"": ""17%""}",223695,0,Africa +2023-03-28,96999,4440,"[""Charger""]",3684.66,{},122122,1,Europe +2024-10-09,97000,9262,"[""Phone"", ""Laptop"", ""Keyboard""]",736.53,"{""seasonal"": ""20%""}",83042,0,North America +2024-11-08,97001,8826,"[""Keyboard"", ""Laptop""]",2202.14,{},296309,1,South America +2023-07-14,97002,2735,"[""Tablet""]",122.01,{},145982,0,Asia +2023-07-16,97003,6979,"[""Charger"", ""Monitor"", ""Phone""]",4099.53,{},208436,0,South America +2023-09-14,97004,2801,"[""Charger"", ""Wireless Mouse""]",4459.09,"{""seasonal"": ""20%""}",83887,1,Asia +2024-04-27,97005,3754,"[""Monitor"", ""Tablet""]",368.87,{},187442,0,Africa +2024-03-11,97006,6085,"[""Wireless Mouse"", ""Headphones""]",204.28,{},282502,1,Africa +2024-12-21,97007,3637,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4725.05,"{""loyalty"": ""23%""}",152642,1,North America +2024-10-30,97008,5505,"[""Headphones""]",2970.69,"{"""": ""16%""}",29194,1,Africa +2024-07-19,97009,9241,"[""Wireless Mouse""]",54.23,"{""loyalty"": ""24%""}",130390,0,South America +2024-04-02,97010,9979,"[""Headphones"", ""Keyboard""]",2360.46,{},75883,1,South America +2024-11-07,97011,7154,"[""Charger"", ""Wireless Mouse""]",1329.41,{},88385,1,North America +2024-03-20,97012,9566,"[""Laptop"", ""Monitor""]",784.08,{},275178,0,Europe +2023-09-05,97013,1054,"[""Phone"", ""Keyboard""]",4319.15,"{""seasonal"": ""23%""}",52742,1,Europe +2023-09-18,97014,5930,"[""Keyboard"", ""Wireless Mouse""]",64.79,{},111179,0,Africa +2024-08-22,97015,8270,"[""Charger""]",4325.61,{},258825,1,North America +2023-08-06,97016,2275,"[""Tablet"", ""Monitor""]",1047.69,{},102717,0,Africa +2023-08-16,97017,1065,"[""Tablet""]",573.95,"{""seasonal"": ""17%""}",18223,0,Europe +2023-01-16,97018,5336,"[""Monitor"", ""Tablet"", ""Laptop""]",4631.64,{},28410,1,South America +2023-01-10,97019,1861,"[""Monitor"", ""Tablet""]",1746.46,{},248770,0,Africa +2024-02-12,97020,5628,"[""Wireless Mouse"", ""Tablet""]",4079.3,{},271747,1,South America +2024-02-13,97021,8062,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",4311.77,{},65308,0,North America +2024-05-14,97022,3000,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3754.81,{},47365,1,Africa +2024-06-18,97023,6672,"[""Monitor""]",3458.72,{},84862,0,Africa +2023-02-08,97024,8111,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",2942.19,"{"""": ""8%""}",201897,1,South America +2023-01-18,97025,8068,"[""Charger""]",1433.74,"{"""": ""14%""}",151840,0,North America +2023-09-17,97026,8050,"[""Keyboard""]",1038.23,{},117241,0,Asia +2024-08-28,97027,8050,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4136.83,"{"""": ""28%""}",141012,1,Europe +2023-05-06,97028,6746,"[""Tablet""]",1215.45,{},275962,0,Africa +2023-07-13,97029,733,"[""Laptop"", ""Keyboard""]",4536.15,{},127980,1,North America +2024-01-17,97030,7601,"[""Keyboard""]",4725.57,{},199856,1,Africa +2024-08-19,97031,7493,"[""Tablet""]",4931.99,{},238849,0,Africa +2023-09-26,97032,22,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",3074.87,"{"""": ""13%""}",263132,1,North America +2023-07-08,97033,7483,"[""Monitor"", ""Headphones"", ""Laptop""]",2616.34,{},23653,0,Africa +2024-10-11,97034,4072,"[""Phone"", ""Headphones""]",1964.96,{},275054,0,Europe +2023-09-02,97035,4636,"[""Tablet"", ""Headphones""]",1182.68,"{""loyalty"": ""21%""}",97775,1,Africa +2024-10-03,97036,8070,"[""Charger"", ""Monitor"", ""Keyboard""]",85.79,"{"""": ""12%""}",96409,1,North America +2023-05-23,97037,9894,"[""Monitor""]",3410.86,{},233097,1,Europe +2024-04-30,97038,7404,"[""Monitor""]",3382.1,{},55215,1,Asia +2023-11-15,97039,8533,"[""Keyboard"", ""Laptop""]",4433.87,{},138484,1,South America +2023-11-14,97040,8145,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",3510.81,{},110245,0,Europe +2024-01-12,97041,697,"[""Keyboard"", ""Laptop""]",4454.39,{},267430,1,North America +2024-09-07,97042,7804,"[""Wireless Mouse""]",4822.08,"{""seasonal"": ""30%""}",74782,1,Europe +2023-02-05,97043,6119,"[""Laptop""]",1943.79,{},3325,1,South America +2024-12-17,97044,6091,"[""Wireless Mouse""]",4885.2,"{""loyalty"": ""10%""}",298289,1,Asia +2023-01-20,97045,9241,"[""Monitor"", ""Tablet"", ""Laptop""]",2236.1,"{""promo"": ""7%""}",55383,0,South America +2023-01-30,97046,7740,"[""Keyboard""]",1109.87,"{""loyalty"": ""27%""}",171360,0,North America +2024-06-17,97047,9378,"[""Headphones""]",3588.0,"{""seasonal"": ""16%""}",127731,0,Africa +2024-09-29,97048,5474,"[""Monitor"", ""Laptop"", ""Charger""]",1181.88,{},297813,1,Europe +2024-08-22,97049,6449,"[""Laptop"", ""Headphones""]",2986.09,{},191414,0,Europe +2023-12-11,97050,1871,"[""Phone"", ""Headphones""]",1762.13,"{""seasonal"": ""25%""}",72582,0,Asia +2024-09-07,97051,1677,"[""Phone"", ""Headphones""]",3184.87,{},244462,0,South America +2024-08-24,97052,3149,"[""Charger""]",4903.13,"{""promo"": ""11%""}",131940,0,North America +2024-05-22,97053,3173,"[""Tablet"", ""Charger""]",2242.54,{},268637,0,Asia +2023-11-12,97054,1950,"[""Tablet""]",2353.18,{},66846,1,North America +2024-08-22,97055,5151,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",4601.28,{},30460,0,Africa +2024-03-08,97056,9184,"[""Monitor"", ""Tablet""]",4255.64,{},283746,1,Europe +2023-09-03,97057,8678,"[""Tablet"", ""Laptop""]",1007.88,"{""promo"": ""9%""}",44637,0,Africa +2024-09-18,97058,3637,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",374.29,"{""loyalty"": ""9%""}",215179,0,Asia +2023-04-24,97059,8142,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4490.7,{},157989,1,North America +2024-06-24,97060,3058,"[""Charger"", ""Headphones""]",2444.34,"{""loyalty"": ""16%""}",75188,1,South America +2023-05-01,97061,9869,"[""Phone"", ""Headphones"", ""Keyboard""]",1624.55,{},119665,1,Europe +2024-10-16,97062,7918,"[""Tablet""]",3098.13,{},230513,1,Asia +2024-01-05,97063,7978,"[""Keyboard"", ""Charger""]",2797.62,"{""promo"": ""25%""}",265150,1,Africa +2023-09-27,97064,3214,"[""Charger"", ""Laptop""]",2079.48,{},182211,0,Europe +2023-04-20,97065,1393,"[""Wireless Mouse""]",4462.16,"{""seasonal"": ""23%""}",271225,1,North America +2024-09-26,97066,2111,"[""Laptop""]",2266.68,"{""loyalty"": ""9%""}",135198,0,Europe +2024-03-06,97067,7465,"[""Laptop"", ""Charger""]",4084.48,{},162833,1,South America +2024-03-16,97068,590,"[""Charger"", ""Laptop""]",2975.79,"{""promo"": ""19%""}",123601,1,Asia +2023-10-18,97069,7018,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3506.34,{},159804,1,Asia +2023-12-27,97070,3999,"[""Wireless Mouse"", ""Keyboard""]",4667.49,"{"""": ""20%""}",287552,1,Africa +2023-01-31,97071,8150,"[""Laptop"", ""Wireless Mouse""]",2119.97,{},189595,0,Africa +2023-04-21,97072,2353,"[""Laptop"", ""Phone""]",740.46,{},275277,0,South America +2023-10-06,97073,6555,"[""Monitor""]",677.56,{},28947,0,South America +2024-04-26,97074,800,"[""Monitor""]",732.84,{},40497,1,Europe +2024-10-04,97075,6410,"[""Phone"", ""Headphones""]",4195.56,"{"""": ""8%""}",226373,0,Europe +2023-02-10,97076,4590,"[""Keyboard"", ""Charger""]",3297.68,"{""seasonal"": ""19%""}",5908,0,Asia +2024-06-21,97077,4155,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1630.45,{},16814,1,South America +2024-08-27,97078,5918,"[""Headphones"", ""Tablet""]",4930.43,{},257557,1,North America +2024-06-23,97079,5950,"[""Monitor""]",4857.74,"{"""": ""7%""}",8485,0,South America +2024-10-19,97080,7928,"[""Tablet"", ""Phone"", ""Laptop""]",1350.12,{},95879,1,Africa +2023-11-09,97081,5713,"[""Laptop""]",4298.39,{},278216,0,Africa +2023-05-15,97082,610,"[""Tablet"", ""Laptop"", ""Headphones""]",3132.55,"{""promo"": ""6%""}",178079,0,Asia +2023-03-03,97083,7964,"[""Phone"", ""Keyboard"", ""Headphones""]",266.31,{},120503,1,Asia +2024-12-09,97084,2392,"[""Tablet"", ""Phone""]",3652.98,{},223849,0,South America +2024-02-17,97085,3172,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",190.47,{},248242,1,Asia +2024-11-18,97086,970,"[""Tablet""]",4778.24,"{"""": ""12%""}",121696,0,North America +2023-04-21,97087,5031,"[""Monitor"", ""Charger"", ""Phone""]",4418.48,"{""promo"": ""24%""}",290395,1,Africa +2024-08-10,97088,1234,"[""Tablet""]",4079.28,"{"""": ""17%""}",215623,0,South America +2023-11-17,97089,108,"[""Wireless Mouse""]",2649.19,"{""seasonal"": ""25%""}",87123,0,Europe +2023-04-18,97090,2825,"[""Tablet""]",2954.35,"{""promo"": ""17%""}",143606,0,South America +2024-06-16,97091,922,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",920.11,{},135412,0,North America +2023-10-20,97092,9518,"[""Wireless Mouse""]",3655.18,"{""seasonal"": ""17%""}",85230,1,South America +2023-11-13,97093,501,"[""Monitor"", ""Charger""]",3286.78,{},257215,1,Europe +2024-10-27,97094,6504,"[""Monitor""]",103.25,{},193716,1,North America +2023-11-24,97095,4826,"[""Phone"", ""Charger""]",4389.84,"{""loyalty"": ""28%""}",131060,0,Europe +2023-11-21,97096,4004,"[""Laptop"", ""Headphones""]",2197.44,{},279644,0,South America +2023-10-26,97097,7921,"[""Keyboard"", ""Monitor""]",2276.96,"{""seasonal"": ""22%""}",90737,1,Africa +2023-08-11,97098,6470,"[""Monitor"", ""Headphones""]",2087.47,{},53410,0,Africa +2024-08-04,97099,380,"[""Charger""]",4818.08,{},293492,0,Africa +2024-03-25,97100,4885,"[""Charger""]",4695.4,{},198413,0,South America +2023-12-17,97101,3436,"[""Monitor""]",2698.32,{},19211,1,Asia +2023-09-19,97102,3791,"[""Charger"", ""Wireless Mouse""]",250.6,{},191835,0,Africa +2024-10-16,97103,4336,"[""Headphones""]",973.46,"{""promo"": ""29%""}",98677,0,Asia +2023-05-13,97104,8072,"[""Wireless Mouse"", ""Monitor""]",4905.65,"{"""": ""28%""}",181308,1,Asia +2024-07-18,97105,3890,"[""Laptop"", ""Monitor"", ""Tablet""]",3611.47,{},224025,0,Asia +2023-08-18,97106,3339,"[""Wireless Mouse""]",2196.0,{},60109,0,South America +2024-11-27,97107,1029,"[""Charger""]",98.63,{},265892,0,Europe +2023-04-10,97108,3041,"[""Phone"", ""Monitor""]",1813.57,{},32605,1,Europe +2024-05-12,97109,451,"[""Keyboard"", ""Wireless Mouse""]",575.84,"{""promo"": ""5%""}",52566,1,North America +2024-03-17,97110,2471,"[""Wireless Mouse""]",951.18,"{""loyalty"": ""18%""}",170670,0,South America +2024-07-02,97111,2594,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",4879.78,"{""seasonal"": ""5%""}",247202,0,Africa +2023-03-13,97112,4597,"[""Headphones""]",3743.49,{},22752,0,Europe +2023-10-09,97113,6894,"[""Laptop"", ""Keyboard""]",1602.85,"{""seasonal"": ""18%""}",10995,1,Africa +2024-11-10,97114,743,"[""Phone"", ""Headphones""]",262.96,"{""seasonal"": ""27%""}",184123,1,Asia +2024-09-08,97115,1746,"[""Laptop""]",2564.72,{},96925,1,South America +2023-04-19,97116,4459,"[""Wireless Mouse"", ""Monitor""]",476.54,{},124389,0,North America +2023-11-30,97117,6418,"[""Laptop"", ""Phone""]",2284.17,"{""loyalty"": ""11%""}",86760,0,Asia +2024-09-10,97118,2471,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",1535.74,{},64968,1,Europe +2024-09-18,97119,536,"[""Phone""]",894.8,"{"""": ""8%""}",126622,1,North America +2024-11-30,97120,3662,"[""Laptop"", ""Monitor"", ""Phone""]",4974.99,{},112639,1,Asia +2024-12-19,97121,3620,"[""Phone""]",1708.81,{},193077,0,South America +2023-08-28,97122,377,"[""Phone"", ""Headphones""]",1813.74,"{""seasonal"": ""21%""}",251344,0,Europe +2024-12-01,97123,3631,"[""Keyboard"", ""Headphones""]",683.3,{},260665,1,North America +2023-03-27,97124,3232,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3051.49,{},57442,1,Europe +2024-04-22,97125,2447,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2724.92,{},51004,1,Asia +2024-07-30,97126,8023,"[""Charger"", ""Monitor"", ""Laptop""]",3414.0,{},195021,0,North America +2024-12-13,97127,212,"[""Keyboard""]",4869.78,"{""seasonal"": ""26%""}",104653,0,North America +2023-02-06,97128,4603,"[""Phone"", ""Headphones"", ""Tablet""]",4257.82,"{""loyalty"": ""21%""}",80231,1,Asia +2024-10-26,97129,9352,"[""Monitor"", ""Keyboard"", ""Tablet""]",3615.41,{},220549,1,North America +2023-06-18,97130,4679,"[""Laptop"", ""Charger""]",364.69,{},12616,1,Africa +2023-09-20,97131,9537,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",2184.82,{},237745,1,Africa +2024-10-05,97132,6420,"[""Monitor"", ""Headphones"", ""Keyboard""]",637.81,{},143845,1,Asia +2024-05-03,97133,4419,"[""Phone"", ""Laptop"", ""Monitor""]",3401.92,{},76617,1,South America +2024-03-27,97134,8951,"[""Monitor"", ""Headphones"", ""Laptop""]",3839.78,{},105173,1,Africa +2024-07-28,97135,1333,"[""Keyboard"", ""Wireless Mouse""]",3212.04,{},144720,1,Europe +2024-03-22,97136,3142,"[""Headphones"", ""Tablet""]",1282.94,{},265629,1,Africa +2023-01-30,97137,2044,"[""Keyboard""]",3321.51,"{""seasonal"": ""9%""}",277991,1,North America +2023-03-28,97138,4262,"[""Monitor"", ""Wireless Mouse""]",1003.41,{},77317,1,South America +2024-02-27,97139,4763,"[""Phone"", ""Charger""]",4950.67,"{""loyalty"": ""11%""}",28817,0,Asia +2023-12-14,97140,7932,"[""Tablet"", ""Laptop"", ""Phone""]",4158.86,{},139352,1,South America +2023-07-14,97141,426,"[""Headphones"", ""Laptop""]",4181.43,{},132625,1,Africa +2023-11-20,97142,4004,"[""Wireless Mouse""]",4545.22,"{"""": ""15%""}",252837,0,Europe +2024-10-15,97143,6353,"[""Phone"", ""Keyboard"", ""Charger""]",3495.1,{},163735,0,Asia +2024-04-19,97144,5025,"[""Laptop"", ""Keyboard""]",712.3,{},206538,1,North America +2024-11-19,97145,9644,"[""Tablet""]",4175.06,"{""promo"": ""7%""}",272684,1,Europe +2024-11-01,97146,8579,"[""Monitor""]",2101.61,"{""promo"": ""22%""}",121042,1,South America +2023-03-02,97147,6570,"[""Tablet""]",3144.01,{},274197,0,Asia +2024-06-08,97148,492,"[""Laptop"", ""Tablet""]",4554.79,"{"""": ""20%""}",54578,1,South America +2024-04-15,97149,6212,"[""Tablet""]",4819.2,"{""seasonal"": ""12%""}",282166,0,Africa +2024-03-26,97150,5024,"[""Charger""]",413.57,{},228332,1,Europe +2023-12-27,97151,9830,"[""Headphones""]",4427.45,"{""promo"": ""10%""}",53911,0,Asia +2024-04-04,97152,104,"[""Charger""]",173.63,"{""seasonal"": ""7%""}",6690,1,Europe +2023-03-29,97153,8535,"[""Laptop""]",3163.47,"{""seasonal"": ""21%""}",250255,1,Asia +2023-10-27,97154,7273,"[""Wireless Mouse""]",2314.5,"{"""": ""29%""}",281188,0,Europe +2023-03-28,97155,2829,"[""Charger"", ""Headphones"", ""Keyboard""]",3768.42,{},47020,0,Europe +2023-02-08,97156,1359,"[""Phone"", ""Charger""]",2831.97,"{"""": ""23%""}",196197,1,South America +2024-08-31,97157,6271,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",3086.11,"{"""": ""15%""}",113471,1,Africa +2023-10-02,97158,6341,"[""Headphones"", ""Phone"", ""Tablet""]",3530.34,{},251024,1,Africa +2023-09-04,97159,5287,"[""Headphones"", ""Monitor"", ""Laptop""]",2496.93,"{""seasonal"": ""10%""}",14894,0,Asia +2023-03-24,97160,4132,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",3997.76,{},129443,1,Europe +2024-01-30,97161,4810,"[""Laptop""]",4102.29,{},215741,0,South America +2024-10-25,97162,8705,"[""Keyboard"", ""Phone""]",1961.16,{},248235,0,Asia +2023-09-17,97163,8774,"[""Keyboard"", ""Phone"", ""Headphones""]",3352.35,{},69130,1,Europe +2023-08-23,97164,7946,"[""Monitor""]",1421.53,{},79579,1,South America +2024-02-20,97165,6718,"[""Tablet"", ""Monitor""]",2396.8,{},161629,0,South America +2023-10-09,97166,2004,"[""Monitor""]",3780.27,"{""loyalty"": ""19%""}",219644,1,Asia +2023-02-17,97167,6433,"[""Wireless Mouse"", ""Charger"", ""Phone""]",4545.69,{},79363,1,Africa +2024-06-12,97168,6480,"[""Charger""]",3157.11,"{""loyalty"": ""16%""}",256540,1,Europe +2024-09-28,97169,9618,"[""Headphones"", ""Tablet"", ""Monitor""]",1688.27,"{""loyalty"": ""16%""}",106221,1,South America +2024-12-19,97170,7845,"[""Monitor"", ""Charger"", ""Headphones""]",1376.86,"{""promo"": ""9%""}",7624,1,Africa +2024-01-14,97171,2645,"[""Tablet""]",2978.45,{},125123,1,North America +2024-05-28,97172,6564,"[""Laptop""]",1751.78,"{""promo"": ""17%""}",155281,0,Europe +2023-10-23,97173,8528,"[""Wireless Mouse"", ""Keyboard""]",2499.95,{},70853,0,Europe +2024-09-10,97174,961,"[""Charger"", ""Tablet"", ""Laptop""]",1086.0,"{""seasonal"": ""27%""}",194819,1,North America +2023-05-19,97175,3867,"[""Headphones"", ""Keyboard"", ""Laptop""]",3901.91,"{""seasonal"": ""13%""}",30008,0,Africa +2024-09-10,97176,8210,"[""Keyboard"", ""Tablet""]",3884.28,{},265370,0,North America +2023-06-14,97177,7590,"[""Tablet""]",2266.89,"{""seasonal"": ""16%""}",98379,1,Africa +2024-01-28,97178,3063,"[""Charger""]",4623.9,{},239109,0,South America +2024-07-21,97179,5834,"[""Monitor""]",3423.08,"{""loyalty"": ""15%""}",268870,0,Europe +2023-03-09,97180,2764,"[""Headphones""]",4656.67,{},8012,1,Europe +2023-08-23,97181,7416,"[""Laptop""]",3460.47,"{""promo"": ""21%""}",260156,1,North America +2024-02-27,97182,6841,"[""Monitor"", ""Laptop"", ""Keyboard""]",2101.61,{},69936,1,North America +2023-03-14,97183,1656,"[""Laptop""]",1756.2,"{""loyalty"": ""28%""}",239559,1,Asia +2024-08-02,97184,211,"[""Keyboard"", ""Phone""]",136.73,"{""loyalty"": ""25%""}",5094,1,Asia +2024-10-08,97185,965,"[""Charger"", ""Wireless Mouse""]",414.96,"{""seasonal"": ""6%""}",284153,0,Europe +2024-03-08,97186,858,"[""Phone"", ""Charger""]",3392.89,{},246550,1,Africa +2024-12-04,97187,7917,"[""Laptop"", ""Keyboard""]",1442.9,{},224507,1,Africa +2023-12-05,97188,8467,"[""Charger""]",4805.54,{},56777,1,Asia +2023-03-31,97189,8047,"[""Tablet"", ""Phone""]",1043.3,{},152691,1,Asia +2024-04-10,97190,2780,"[""Tablet""]",2105.49,"{""loyalty"": ""7%""}",8794,0,Africa +2023-05-05,97191,2960,"[""Laptop""]",3059.62,{},242583,1,South America +2024-04-15,97192,1628,"[""Headphones""]",2762.05,"{"""": ""18%""}",246219,1,South America +2023-05-22,97193,6308,"[""Laptop""]",584.12,"{""loyalty"": ""8%""}",257447,1,North America +2023-12-08,97194,7384,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1429.19,{},202979,1,South America +2023-03-18,97195,5767,"[""Headphones"", ""Tablet""]",3360.87,{},93340,1,Asia +2024-08-08,97196,5231,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",3587.96,"{""promo"": ""28%""}",209962,1,Asia +2024-11-24,97197,953,"[""Laptop"", ""Wireless Mouse""]",722.75,{},209234,0,Europe +2024-04-30,97198,3951,"[""Monitor""]",1174.1,"{""seasonal"": ""19%""}",53295,1,South America +2024-11-29,97199,6851,"[""Monitor"", ""Keyboard"", ""Phone""]",385.51,{},292874,1,South America +2024-04-19,97200,2931,"[""Keyboard"", ""Headphones"", ""Monitor""]",3187.43,"{""loyalty"": ""10%""}",153027,1,South America +2023-04-28,97201,8475,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1468.85,"{"""": ""10%""}",287036,0,Europe +2023-10-15,97202,7835,"[""Keyboard""]",378.74,"{"""": ""14%""}",156936,0,Africa +2023-03-08,97203,1296,"[""Phone""]",3033.67,{},264153,0,Europe +2024-02-21,97204,187,"[""Laptop"", ""Headphones"", ""Monitor""]",3649.04,"{"""": ""12%""}",47040,1,North America +2024-12-05,97205,5488,"[""Wireless Mouse""]",3369.49,{},57964,0,Asia +2024-01-01,97206,7120,"[""Keyboard""]",2696.09,"{""promo"": ""10%""}",125903,1,North America +2023-04-26,97207,9479,"[""Charger"", ""Monitor"", ""Keyboard""]",4084.49,{},7161,1,Africa +2024-02-21,97208,9239,"[""Keyboard"", ""Headphones""]",841.89,{},47840,0,Asia +2023-01-21,97209,2232,"[""Headphones"", ""Monitor""]",4753.98,"{"""": ""9%""}",1490,0,South America +2024-05-02,97210,8011,"[""Tablet""]",2984.83,{},148231,1,South America +2024-06-23,97211,1881,"[""Tablet"", ""Headphones"", ""Monitor""]",3228.08,"{""seasonal"": ""24%""}",277798,0,South America +2023-04-13,97212,3491,"[""Phone"", ""Keyboard""]",3883.63,{},90538,0,Africa +2024-04-30,97213,8472,"[""Charger"", ""Keyboard""]",1624.42,{},281965,0,Africa +2023-08-11,97214,1873,"[""Laptop"", ""Wireless Mouse""]",2794.92,{},29218,0,Asia +2024-03-02,97215,5243,"[""Keyboard"", ""Charger""]",1543.76,"{""promo"": ""5%""}",239146,0,North America +2023-08-06,97216,7183,"[""Charger""]",2195.97,{},260203,1,Africa +2023-10-31,97217,7826,"[""Keyboard"", ""Headphones""]",1344.98,{},75769,1,Asia +2023-04-20,97218,1893,"[""Tablet"", ""Charger""]",1485.44,"{""promo"": ""12%""}",149030,1,Europe +2024-02-10,97219,3390,"[""Charger""]",1029.68,{},250903,0,Asia +2024-06-10,97220,4235,"[""Keyboard"", ""Monitor""]",1284.69,"{""promo"": ""22%""}",148744,0,North America +2024-10-03,97221,3558,"[""Monitor""]",3618.41,{},183457,0,Asia +2023-04-14,97222,8142,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",310.41,"{""loyalty"": ""12%""}",77816,1,Africa +2023-08-03,97223,1796,"[""Phone""]",4811.25,{},20661,1,Africa +2023-07-25,97224,1712,"[""Phone""]",1756.55,"{""promo"": ""7%""}",50227,0,Asia +2023-08-13,97225,9717,"[""Laptop"", ""Monitor""]",1311.04,{},283808,1,South America +2023-10-04,97226,1561,"[""Monitor"", ""Wireless Mouse""]",1225.86,"{"""": ""20%""}",189941,1,Asia +2024-09-12,97227,6177,"[""Tablet"", ""Keyboard"", ""Charger""]",4618.48,"{""seasonal"": ""7%""}",166886,1,North America +2023-03-17,97228,6036,"[""Laptop"", ""Keyboard""]",4304.62,{},21192,0,North America +2024-05-06,97229,961,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",414.58,"{""promo"": ""30%""}",195724,1,South America +2023-02-27,97230,3434,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",4999.5,"{"""": ""15%""}",6073,1,North America +2024-03-13,97231,2483,"[""Charger"", ""Tablet"", ""Laptop""]",1703.58,{},8858,1,Asia +2024-08-31,97232,5292,"[""Laptop""]",3359.03,"{""promo"": ""24%""}",50808,0,Europe +2023-03-14,97233,6133,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",3253.77,"{""promo"": ""9%""}",67240,1,South America +2023-05-17,97234,2356,"[""Wireless Mouse"", ""Headphones""]",3019.64,"{""promo"": ""6%""}",296893,1,Africa +2024-12-24,97235,1637,"[""Keyboard""]",3447.59,{},209951,1,Africa +2023-03-23,97236,7643,"[""Keyboard"", ""Monitor"", ""Headphones""]",2523.49,{},276483,0,North America +2023-01-09,97237,4099,"[""Phone"", ""Keyboard"", ""Tablet""]",4144.4,"{""seasonal"": ""10%""}",136256,0,Asia +2024-09-04,97238,1538,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",1678.74,"{""promo"": ""7%""}",143184,1,North America +2024-02-01,97239,3088,"[""Laptop""]",1673.7,{},64818,1,South America +2023-03-18,97240,9902,"[""Monitor""]",4727.08,{},277534,0,Africa +2023-12-07,97241,4442,"[""Wireless Mouse"", ""Keyboard""]",2390.77,"{""loyalty"": ""26%""}",166689,0,Asia +2023-11-20,97242,3333,"[""Tablet"", ""Wireless Mouse""]",4620.45,"{""seasonal"": ""12%""}",170730,1,North America +2024-09-19,97243,7002,"[""Keyboard"", ""Phone"", ""Charger""]",879.94,"{""promo"": ""9%""}",112403,0,North America +2024-06-26,97244,6450,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",62.06,"{""promo"": ""20%""}",67202,1,Africa +2023-06-20,97245,8311,"[""Laptop""]",3686.79,{},171659,1,Europe +2024-06-18,97246,8888,"[""Monitor"", ""Charger""]",1306.03,"{""loyalty"": ""26%""}",84969,1,North America +2023-11-07,97247,7244,"[""Laptop"", ""Keyboard""]",4059.6,"{""seasonal"": ""27%""}",78561,0,South America +2024-07-27,97248,9981,"[""Tablet"", ""Laptop""]",4941.04,{},232408,1,Europe +2023-11-14,97249,3043,"[""Tablet""]",3590.4,{},10321,1,South America +2024-03-29,97250,3667,"[""Wireless Mouse"", ""Charger""]",2339.21,{},248072,0,North America +2023-07-31,97251,8965,"[""Laptop"", ""Tablet""]",3488.21,"{""loyalty"": ""11%""}",227589,1,Asia +2023-07-01,97252,7523,"[""Keyboard""]",74.93,{},132598,1,North America +2024-07-25,97253,106,"[""Monitor""]",854.23,"{"""": ""15%""}",243317,0,North America +2023-08-08,97254,7,"[""Monitor""]",2089.36,"{""seasonal"": ""9%""}",170094,0,South America +2024-12-14,97255,1997,"[""Tablet"", ""Charger"", ""Keyboard""]",4049.42,"{""loyalty"": ""27%""}",248647,1,Asia +2023-11-02,97256,1326,"[""Charger"", ""Laptop""]",2129.71,"{""seasonal"": ""16%""}",50393,0,Asia +2024-05-06,97257,7882,"[""Tablet"", ""Laptop"", ""Monitor""]",3642.74,"{"""": ""27%""}",71401,1,South America +2024-12-09,97258,2155,"[""Keyboard"", ""Laptop""]",1192.35,"{""loyalty"": ""6%""}",240072,1,North America +2023-07-15,97259,4780,"[""Monitor""]",3539.42,{},260081,1,North America +2023-05-10,97260,7371,"[""Laptop"", ""Phone""]",3326.06,"{""seasonal"": ""5%""}",261840,1,Europe +2023-07-05,97261,3762,"[""Phone"", ""Charger""]",1500.08,{},173237,1,North America +2023-01-06,97262,8215,"[""Laptop""]",333.82,{},150100,0,Africa +2023-05-26,97263,3067,"[""Phone"", ""Headphones""]",1140.82,"{"""": ""11%""}",3899,0,Asia +2024-08-28,97264,6637,"[""Wireless Mouse""]",3772.26,{},128209,0,North America +2024-04-10,97265,8640,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",766.46,"{""loyalty"": ""22%""}",105442,0,Africa +2023-05-23,97266,4883,"[""Keyboard"", ""Phone""]",4233.33,"{""promo"": ""6%""}",235282,1,Europe +2024-05-27,97267,681,"[""Phone""]",2528.48,{},103367,1,Europe +2023-09-09,97268,8553,"[""Headphones""]",2881.81,{},151742,0,North America +2024-03-20,97269,9471,"[""Laptop"", ""Monitor""]",4754.75,{},215326,1,Europe +2024-11-08,97270,2843,"[""Tablet""]",2846.77,"{""seasonal"": ""25%""}",144569,1,South America +2024-09-04,97271,1251,"[""Phone""]",4287.02,"{""promo"": ""14%""}",180876,0,Africa +2023-10-31,97272,520,"[""Charger"", ""Laptop"", ""Keyboard""]",2505.0,"{""promo"": ""23%""}",114895,1,South America +2024-11-05,97273,7812,"[""Wireless Mouse"", ""Phone""]",4775.2,{},238202,1,South America +2023-10-30,97274,7123,"[""Tablet"", ""Keyboard"", ""Monitor""]",3809.77,{},263277,1,South America +2023-11-15,97275,5415,"[""Keyboard"", ""Tablet"", ""Wireless Mouse""]",247.08,{},34129,0,South America +2023-06-21,97276,4580,"[""Laptop""]",2274.9,"{"""": ""21%""}",16165,1,Europe +2023-08-02,97277,6918,"[""Keyboard""]",489.48,{},285604,0,North America +2024-07-28,97278,3232,"[""Phone"", ""Wireless Mouse""]",389.04,"{"""": ""27%""}",200796,1,North America +2023-06-10,97279,8045,"[""Charger""]",3246.83,{},114623,1,Europe +2023-01-06,97280,159,"[""Tablet"", ""Charger""]",3391.22,"{"""": ""26%""}",189388,0,South America +2023-10-10,97281,3636,"[""Phone"", ""Wireless Mouse"", ""Charger""]",3888.02,"{""seasonal"": ""26%""}",123807,1,Africa +2023-10-20,97282,333,"[""Keyboard"", ""Monitor"", ""Tablet""]",2360.05,{},31817,1,South America +2024-06-12,97283,1273,"[""Wireless Mouse""]",2614.01,"{""promo"": ""15%""}",75801,1,Africa +2023-07-04,97284,8571,"[""Laptop"", ""Keyboard""]",3553.14,{},131651,1,Africa +2024-08-19,97285,9922,"[""Tablet""]",2738.32,{},67128,0,North America +2024-11-01,97286,2567,"[""Wireless Mouse""]",3025.21,{},129420,1,Africa +2024-02-29,97287,9663,"[""Tablet"", ""Charger""]",2606.39,"{""seasonal"": ""25%""}",61793,1,Asia +2023-03-04,97288,3520,"[""Phone""]",2573.15,{},56337,1,North America +2024-11-05,97289,8965,"[""Monitor"", ""Tablet"", ""Wireless Mouse""]",3175.86,"{""loyalty"": ""22%""}",169293,1,South America +2024-05-02,97290,9860,"[""Wireless Mouse"", ""Keyboard""]",3036.27,"{"""": ""23%""}",1518,0,Europe +2024-06-13,97291,3278,"[""Tablet"", ""Headphones"", ""Laptop""]",4834.29,"{""promo"": ""6%""}",203357,0,South America +2023-02-24,97292,455,"[""Charger""]",4631.18,{},252394,1,North America +2023-03-23,97293,8886,"[""Keyboard"", ""Phone"", ""Monitor""]",3612.48,{},128271,0,Africa +2024-08-13,97294,4627,"[""Tablet"", ""Phone"", ""Monitor""]",921.1,"{""loyalty"": ""10%""}",60170,1,Europe +2024-08-11,97295,5252,"[""Charger""]",969.41,"{"""": ""11%""}",31002,0,South America +2024-09-11,97296,5357,"[""Wireless Mouse"", ""Headphones""]",3822.26,{},246390,1,Asia +2023-01-15,97297,4366,"[""Keyboard"", ""Headphones""]",3178.26,{},120119,1,South America +2024-05-06,97298,3962,"[""Phone""]",4394.14,{},196577,0,Europe +2024-05-02,97299,140,"[""Monitor""]",3715.9,"{""seasonal"": ""28%""}",28381,1,South America +2024-10-14,97300,2411,"[""Tablet"", ""Headphones""]",4971.08,{},96155,1,North America +2023-09-24,97301,1619,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",877.18,"{""seasonal"": ""12%""}",251244,1,Africa +2023-12-26,97302,5524,"[""Headphones"", ""Keyboard""]",3499.29,{},131366,0,Europe +2024-03-04,97303,4487,"[""Phone"", ""Headphones""]",3670.36,"{"""": ""27%""}",120421,0,Asia +2023-07-27,97304,7330,"[""Wireless Mouse"", ""Charger""]",3378.64,"{""loyalty"": ""9%""}",71297,1,South America +2024-12-14,97305,716,"[""Phone"", ""Monitor""]",1835.31,"{""promo"": ""6%""}",50265,1,Asia +2023-04-18,97306,1858,"[""Laptop"", ""Headphones"", ""Phone""]",4039.13,{},219646,0,Asia +2023-04-17,97307,8216,"[""Laptop"", ""Monitor""]",2091.11,"{""loyalty"": ""22%""}",214178,1,Europe +2024-07-19,97308,6122,"[""Phone"", ""Charger""]",593.99,{},21070,0,Europe +2023-05-22,97309,8019,"[""Monitor"", ""Tablet"", ""Laptop""]",2690.04,{},221704,1,Europe +2024-12-23,97310,1021,"[""Charger""]",2127.68,{},10951,1,Africa +2023-07-08,97311,9208,"[""Headphones""]",2424.95,"{""loyalty"": ""7%""}",207352,0,South America +2024-04-01,97312,4493,"[""Laptop"", ""Headphones""]",4734.6,{},34968,1,South America +2024-08-27,97313,9319,"[""Monitor"", ""Tablet""]",1147.41,"{""seasonal"": ""26%""}",151192,1,South America +2023-02-13,97314,7907,"[""Tablet""]",1004.26,{},112827,1,South America +2023-05-12,97315,6605,"[""Charger"", ""Laptop""]",4444.89,{},136517,0,Africa +2024-08-04,97316,950,"[""Headphones"", ""Laptop""]",1747.79,"{"""": ""21%""}",287749,0,Europe +2024-04-14,97317,9338,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2098.31,{},50296,0,South America +2024-01-16,97318,1564,"[""Laptop""]",1288.91,"{""promo"": ""24%""}",112511,1,Asia +2023-06-12,97319,7169,"[""Phone"", ""Keyboard"", ""Charger""]",2918.39,{},49281,0,South America +2023-05-14,97320,9069,"[""Tablet"", ""Keyboard"", ""Phone""]",3735.06,"{""promo"": ""26%""}",122677,0,Asia +2023-10-22,97321,4158,"[""Wireless Mouse"", ""Phone""]",3044.9,"{""loyalty"": ""6%""}",78684,1,Europe +2023-01-19,97322,1566,"[""Wireless Mouse""]",2388.2,{},154355,0,South America +2024-11-16,97323,3156,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",803.22,"{""loyalty"": ""17%""}",285955,1,Africa +2023-01-15,97324,6856,"[""Laptop""]",4655.55,"{""loyalty"": ""22%""}",37032,0,Africa +2024-03-22,97325,5615,"[""Tablet"", ""Charger""]",128.53,"{""promo"": ""15%""}",293482,0,North America +2023-03-17,97326,5381,"[""Tablet"", ""Headphones""]",3525.56,"{""loyalty"": ""28%""}",110117,0,North America +2024-08-12,97327,6206,"[""Phone""]",1205.1,"{"""": ""16%""}",125791,0,Africa +2023-08-07,97328,3618,"[""Monitor""]",3201.36,{},15372,0,Africa +2023-08-31,97329,7187,"[""Wireless Mouse""]",3133.06,"{""promo"": ""25%""}",103303,1,Europe +2024-05-21,97330,3124,"[""Wireless Mouse"", ""Laptop"", ""Monitor""]",2677.07,"{""promo"": ""30%""}",205664,1,Africa +2023-07-23,97331,4689,"[""Phone"", ""Tablet"", ""Keyboard""]",2016.39,{},185075,1,Asia +2023-11-06,97332,4319,"[""Wireless Mouse""]",736.59,{},107143,1,North America +2023-02-08,97333,4774,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",94.61,"{""seasonal"": ""23%""}",237780,0,North America +2024-12-30,97334,6550,"[""Laptop""]",4222.16,{},5009,1,Europe +2024-10-05,97335,9283,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",1572.31,"{"""": ""14%""}",7820,1,North America +2024-11-10,97336,8389,"[""Laptop""]",2432.87,{},160357,1,Asia +2024-03-03,97337,7065,"[""Wireless Mouse"", ""Laptop""]",3225.27,{},96653,0,Asia +2024-08-09,97338,7669,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",4792.19,{},197769,0,South America +2023-11-09,97339,6475,"[""Wireless Mouse""]",556.1,"{""loyalty"": ""20%""}",71252,0,Europe +2024-01-02,97340,263,"[""Wireless Mouse""]",2184.36,"{"""": ""23%""}",98123,0,Africa +2024-05-17,97341,4912,"[""Phone""]",687.74,{},279334,0,Asia +2024-09-25,97342,7806,"[""Charger""]",421.93,{},61111,1,North America +2024-10-15,97343,1781,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",320.88,"{""loyalty"": ""6%""}",34579,0,Africa +2024-03-20,97344,2048,"[""Keyboard""]",192.15,"{"""": ""29%""}",294959,1,Europe +2023-06-08,97345,4349,"[""Monitor"", ""Charger"", ""Phone""]",4131.53,"{""promo"": ""27%""}",184949,0,South America +2024-10-12,97346,1844,"[""Monitor""]",2447.02,{},289755,0,North America +2023-09-01,97347,8864,"[""Keyboard"", ""Headphones"", ""Laptop""]",1553.75,"{""loyalty"": ""26%""}",96434,1,Asia +2023-09-30,97348,1379,"[""Monitor""]",2921.45,"{""loyalty"": ""7%""}",204498,1,Europe +2023-04-19,97349,250,"[""Phone"", ""Headphones""]",2985.25,{},176181,0,Asia +2023-06-17,97350,3808,"[""Keyboard"", ""Wireless Mouse""]",546.32,{},236479,1,Europe +2024-10-21,97351,713,"[""Phone"", ""Tablet""]",1887.18,{},103599,0,North America +2023-03-15,97352,2010,"[""Headphones"", ""Tablet"", ""Keyboard""]",439.19,"{"""": ""22%""}",60181,0,Africa +2023-11-27,97353,2350,"[""Monitor""]",4452.39,{},48407,0,Africa +2023-09-23,97354,5426,"[""Phone"", ""Laptop"", ""Keyboard""]",1243.04,{},221793,1,Asia +2024-03-21,97355,9239,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",2788.08,{},58459,1,Africa +2024-09-25,97356,6195,"[""Monitor"", ""Phone"", ""Headphones""]",4088.12,"{""loyalty"": ""6%""}",211419,1,Europe +2024-10-02,97357,3077,"[""Wireless Mouse"", ""Phone""]",3495.34,"{"""": ""11%""}",141247,1,Asia +2024-06-20,97358,4787,"[""Tablet"", ""Charger""]",4388.91,{},158629,1,Europe +2023-01-02,97359,3918,"[""Keyboard""]",1790.05,{},95152,1,North America +2023-11-09,97360,2643,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",4403.85,{},206983,1,South America +2023-03-27,97361,5081,"[""Monitor""]",1239.64,"{""seasonal"": ""27%""}",34368,1,South America +2023-01-03,97362,3769,"[""Headphones"", ""Laptop""]",454.87,{},10617,0,North America +2023-03-22,97363,7046,"[""Keyboard"", ""Headphones"", ""Tablet""]",985.08,{},83683,0,Asia +2024-05-24,97364,8550,"[""Wireless Mouse""]",3095.68,"{"""": ""22%""}",196050,0,South America +2024-07-15,97365,2505,"[""Phone"", ""Monitor""]",1554.69,{},224314,1,Africa +2023-09-29,97366,3531,"[""Charger""]",2137.69,"{""loyalty"": ""20%""}",95717,1,Africa +2024-06-28,97367,1264,"[""Wireless Mouse""]",4062.6,"{""promo"": ""13%""}",145075,1,Asia +2023-08-06,97368,7366,"[""Keyboard"", ""Laptop""]",2499.42,"{""loyalty"": ""20%""}",187554,0,Europe +2024-08-05,97369,5985,"[""Phone""]",2084.03,"{""loyalty"": ""5%""}",229541,0,North America +2023-11-28,97370,9500,"[""Charger"", ""Laptop"", ""Keyboard""]",4000.54,"{""seasonal"": ""12%""}",184985,1,Europe +2024-12-05,97371,4924,"[""Laptop"", ""Wireless Mouse""]",810.99,"{""promo"": ""25%""}",12356,1,North America +2024-07-31,97372,6766,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",751.89,{},158582,1,Asia +2023-11-04,97373,2639,"[""Tablet""]",2413.46,{},69213,1,North America +2024-10-17,97374,1041,"[""Wireless Mouse"", ""Headphones""]",2057.37,{},163693,1,Africa +2023-02-10,97375,5236,"[""Monitor"", ""Tablet"", ""Charger""]",3133.47,{},251009,1,North America +2023-07-20,97376,6444,"[""Keyboard"", ""Tablet"", ""Headphones""]",4106.28,{},210371,1,North America +2024-02-14,97377,149,"[""Wireless Mouse""]",238.83,"{"""": ""13%""}",191431,1,North America +2024-01-20,97378,4253,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1018.5,"{""loyalty"": ""15%""}",153575,0,North America +2023-05-27,97379,1880,"[""Keyboard"", ""Charger""]",3334.79,"{""seasonal"": ""28%""}",144572,0,Asia +2024-12-20,97380,2399,"[""Charger"", ""Keyboard"", ""Phone""]",435.46,"{"""": ""10%""}",62331,0,South America +2024-04-24,97381,2353,"[""Keyboard"", ""Phone""]",4118.15,{},141581,0,South America +2023-02-28,97382,763,"[""Monitor"", ""Charger""]",2318.51,{},275993,0,Africa +2024-11-23,97383,6141,"[""Charger""]",1917.16,"{""seasonal"": ""21%""}",123756,0,North America +2023-09-15,97384,7552,"[""Charger"", ""Monitor""]",2291.58,{},132412,1,North America +2023-05-19,97385,7926,"[""Tablet"", ""Keyboard"", ""Laptop""]",1515.35,"{""loyalty"": ""17%""}",123994,1,North America +2024-05-02,97386,2518,"[""Charger""]",3930.95,"{""loyalty"": ""18%""}",93203,1,Africa +2023-03-02,97387,4818,"[""Laptop""]",1196.32,{},117302,1,Europe +2024-07-12,97388,1048,"[""Phone""]",1169.02,{},25632,1,Europe +2024-02-24,97389,2380,"[""Monitor"", ""Phone"", ""Tablet""]",2246.96,"{""promo"": ""21%""}",240162,0,Asia +2024-01-22,97390,8022,"[""Headphones"", ""Phone""]",2280.67,{},272181,0,Asia +2024-02-17,97391,6115,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",4681.89,{},215471,1,Africa +2024-03-01,97392,9691,"[""Laptop"", ""Tablet"", ""Charger""]",2084.39,"{"""": ""14%""}",278371,0,South America +2024-08-26,97393,5476,"[""Tablet"", ""Laptop"", ""Phone""]",2321.98,{},237835,1,Asia +2023-05-05,97394,1835,"[""Laptop""]",1298.7,"{""seasonal"": ""28%""}",27026,0,Africa +2023-12-25,97395,5848,"[""Monitor"", ""Laptop"", ""Phone""]",1908.55,{},251310,1,North America +2024-09-16,97396,8782,"[""Laptop"", ""Charger""]",1919.22,{},70626,0,North America +2023-04-06,97397,5492,"[""Laptop""]",3120.14,{},4364,0,South America +2023-02-06,97398,8535,"[""Keyboard"", ""Laptop"", ""Monitor""]",174.81,"{""promo"": ""9%""}",260901,1,Asia +2023-06-11,97399,812,"[""Wireless Mouse"", ""Headphones""]",2495.13,{},122231,1,North America +2023-09-27,97400,5019,"[""Charger"", ""Laptop"", ""Phone""]",526.93,"{""seasonal"": ""18%""}",102703,1,Asia +2023-09-22,97401,1847,"[""Wireless Mouse""]",4893.27,{},28138,1,Asia +2023-01-18,97402,9252,"[""Phone"", ""Laptop""]",1724.64,"{""promo"": ""20%""}",21791,1,North America +2024-08-17,97403,6575,"[""Phone"", ""Laptop"", ""Monitor""]",4483.2,"{""seasonal"": ""20%""}",233785,0,Europe +2023-09-10,97404,3522,"[""Monitor""]",1291.45,"{""seasonal"": ""28%""}",60618,0,Africa +2023-11-04,97405,4403,"[""Headphones"", ""Wireless Mouse""]",597.75,{},219034,0,Asia +2024-02-06,97406,1992,"[""Phone""]",3836.9,"{""seasonal"": ""28%""}",288987,1,Asia +2024-08-17,97407,718,"[""Phone"", ""Keyboard""]",3046.34,{},180474,1,Africa +2023-12-08,97408,5861,"[""Monitor"", ""Headphones""]",814.2,{},89928,1,North America +2024-01-13,97409,5710,"[""Tablet"", ""Charger"", ""Keyboard""]",358.28,"{""promo"": ""28%""}",42462,0,Africa +2023-08-15,97410,6280,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1515.9,"{"""": ""16%""}",9379,0,Europe +2024-09-06,97411,5160,"[""Monitor""]",2556.75,"{""loyalty"": ""30%""}",138953,1,North America +2024-11-02,97412,8627,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",260.48,{},144741,0,South America +2024-11-24,97413,2297,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",3841.05,{},70472,1,South America +2023-05-30,97414,5316,"[""Keyboard""]",991.86,"{""seasonal"": ""10%""}",165279,0,Africa +2024-11-12,97415,8141,"[""Charger""]",3533.83,"{""seasonal"": ""12%""}",162059,0,South America +2024-01-07,97416,2235,"[""Tablet"", ""Headphones"", ""Charger""]",3312.43,{},146974,0,South America +2024-11-02,97417,146,"[""Laptop""]",1794.28,"{""promo"": ""25%""}",218330,1,Europe +2024-06-01,97418,5391,"[""Headphones"", ""Monitor""]",4403.8,{},109502,1,Europe +2023-11-23,97419,3290,"[""Laptop"", ""Headphones"", ""Keyboard""]",3379.87,"{""loyalty"": ""8%""}",256770,0,Asia +2023-04-24,97420,5240,"[""Charger"", ""Monitor""]",3379.97,{},103960,1,Africa +2023-08-28,97421,8142,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",3291.07,"{""loyalty"": ""12%""}",189159,1,Africa +2024-03-15,97422,9913,"[""Laptop"", ""Wireless Mouse""]",1528.32,{},49850,1,North America +2023-08-12,97423,2941,"[""Keyboard"", ""Monitor""]",656.47,{},173108,1,South America +2024-12-22,97424,2986,"[""Wireless Mouse""]",1816.6,"{""promo"": ""17%""}",215977,0,Asia +2023-07-05,97425,1076,"[""Monitor"", ""Tablet"", ""Headphones""]",3703.41,{},210838,1,Asia +2024-01-25,97426,8491,"[""Tablet""]",2113.71,"{"""": ""16%""}",164572,0,South America +2024-05-18,97427,8840,"[""Monitor""]",1174.27,{},71243,0,South America +2023-01-12,97428,4072,"[""Phone""]",2413.21,{},76428,0,North America +2024-06-29,97429,7047,"[""Headphones""]",2054.27,"{"""": ""16%""}",165829,0,North America +2023-07-26,97430,3724,"[""Charger""]",3592.99,"{""promo"": ""20%""}",14449,0,Asia +2024-06-25,97431,5974,"[""Laptop"", ""Monitor""]",3164.23,{},111379,0,Africa +2023-02-07,97432,6517,"[""Tablet"", ""Monitor"", ""Phone""]",4095.09,"{""promo"": ""11%""}",1347,1,Africa +2024-10-25,97433,5884,"[""Charger"", ""Laptop""]",584.94,"{""promo"": ""26%""}",183710,1,Asia +2024-08-19,97434,9769,"[""Wireless Mouse"", ""Charger""]",2307.5,"{""loyalty"": ""30%""}",294532,0,South America +2023-12-19,97435,5163,"[""Charger"", ""Wireless Mouse""]",3298.82,{},219079,1,Asia +2023-06-26,97436,700,"[""Laptop""]",3074.13,{},163949,0,Africa +2023-11-19,97437,972,"[""Wireless Mouse""]",1623.21,{},104940,1,South America +2024-09-29,97438,6793,"[""Headphones""]",2910.02,{},125312,1,North America +2023-06-28,97439,3536,"[""Tablet"", ""Headphones""]",2951.12,"{""seasonal"": ""6%""}",275190,1,Asia +2024-11-18,97440,5033,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",3657.84,{},126788,1,South America +2024-12-23,97441,5487,"[""Charger"", ""Laptop""]",343.48,"{""promo"": ""15%""}",286351,0,Asia +2023-03-19,97442,7369,"[""Keyboard"", ""Laptop""]",1705.36,{},233479,1,Europe +2023-03-09,97443,231,"[""Charger"", ""Wireless Mouse""]",1140.96,"{""seasonal"": ""7%""}",200954,1,Europe +2023-12-30,97444,4555,"[""Keyboard"", ""Charger"", ""Monitor""]",3121.24,"{"""": ""26%""}",96869,1,North America +2024-04-29,97445,9810,"[""Monitor"", ""Tablet""]",3022.56,"{""loyalty"": ""6%""}",83514,0,North America +2024-06-19,97446,9542,"[""Laptop""]",4367.28,"{""loyalty"": ""15%""}",164104,0,North America +2023-05-21,97447,6334,"[""Keyboard"", ""Phone""]",1131.32,{},263404,0,Asia +2024-10-02,97448,475,"[""Charger""]",1075.05,{},242546,0,South America +2024-01-09,97449,6670,"[""Phone"", ""Keyboard""]",3716.01,{},145056,0,South America +2023-01-18,97450,2235,"[""Phone""]",152.96,"{""promo"": ""16%""}",237629,0,Africa +2024-07-22,97451,9166,"[""Phone"", ""Monitor""]",2701.88,{},130100,0,Africa +2024-10-31,97452,7323,"[""Phone"", ""Keyboard"", ""Charger""]",1129.6,{},24430,1,Europe +2023-03-14,97453,5105,"[""Laptop"", ""Phone""]",2535.95,"{""seasonal"": ""23%""}",190509,1,North America +2024-03-29,97454,664,"[""Keyboard"", ""Laptop"", ""Phone""]",1698.05,"{""promo"": ""26%""}",74226,1,Africa +2024-01-04,97455,1266,"[""Headphones"", ""Laptop""]",3083.49,"{""loyalty"": ""9%""}",165592,1,Europe +2024-01-17,97456,8725,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",1545.09,"{""seasonal"": ""10%""}",27507,0,Europe +2024-12-05,97457,298,"[""Phone""]",4782.56,{},117619,1,Asia +2024-09-04,97458,9685,"[""Headphones"", ""Laptop"", ""Phone""]",3400.58,{},156331,0,North America +2024-07-11,97459,4458,"[""Wireless Mouse""]",3112.93,{},140095,0,North America +2023-12-22,97460,7170,"[""Keyboard"", ""Phone""]",1081.53,{},62480,0,Africa +2023-03-16,97461,395,"[""Charger""]",4725.01,"{""loyalty"": ""25%""}",299944,0,South America +2023-03-04,97462,1189,"[""Wireless Mouse"", ""Headphones""]",1373.33,"{""seasonal"": ""30%""}",253603,1,Africa +2023-01-06,97463,378,"[""Charger""]",279.74,{},89531,0,Europe +2023-12-22,97464,9910,"[""Keyboard""]",1577.89,{},39479,1,Asia +2023-09-01,97465,9165,"[""Headphones"", ""Laptop""]",4733.69,{},209441,1,Asia +2024-06-09,97466,2458,"[""Charger"", ""Headphones"", ""Keyboard""]",1451.43,"{"""": ""21%""}",247911,1,Asia +2023-05-25,97467,7602,"[""Tablet"", ""Charger"", ""Headphones""]",621.49,{},97733,1,Asia +2023-09-03,97468,6324,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4865.02,"{""promo"": ""19%""}",212200,0,North America +2024-02-16,97469,5156,"[""Tablet"", ""Keyboard"", ""Charger""]",2002.9,{},9928,1,North America +2024-04-08,97470,7936,"[""Wireless Mouse""]",2381.08,{},62382,0,Asia +2023-04-09,97471,8513,"[""Laptop"", ""Phone""]",2039.18,"{""loyalty"": ""12%""}",29335,1,South America +2024-10-24,97472,9225,"[""Laptop"", ""Keyboard"", ""Monitor""]",1980.09,{},97772,1,Europe +2024-06-28,97473,6690,"[""Keyboard"", ""Monitor""]",3315.92,{},231355,0,South America +2023-12-26,97474,1023,"[""Headphones""]",806.18,{},186501,1,Europe +2023-04-07,97475,6507,"[""Keyboard""]",2314.94,{},291718,0,Africa +2023-01-22,97476,2925,"[""Wireless Mouse""]",4245.76,{},176832,1,Africa +2024-08-20,97477,359,"[""Phone"", ""Laptop""]",4463.77,{},132111,0,North America +2023-12-12,97478,8187,"[""Phone"", ""Tablet""]",4986.67,{},199620,1,Asia +2024-05-18,97479,7807,"[""Charger""]",1896.09,"{""seasonal"": ""14%""}",264916,1,North America +2023-01-27,97480,3380,"[""Laptop"", ""Headphones""]",4994.04,{},121431,1,North America +2024-11-02,97481,688,"[""Tablet""]",1518.35,{},15317,0,North America +2024-11-26,97482,9790,"[""Wireless Mouse""]",1045.8,{},144866,0,North America +2023-11-03,97483,7910,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",554.45,"{""loyalty"": ""30%""}",232701,1,Asia +2023-06-22,97484,6349,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",2905.0,{},124707,0,Europe +2024-01-01,97485,4968,"[""Headphones"", ""Wireless Mouse""]",3100.7,"{""seasonal"": ""21%""}",257794,1,Europe +2024-07-24,97486,4921,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",1417.81,{},266607,1,Asia +2024-02-17,97487,200,"[""Phone""]",2838.52,{},84499,1,Asia +2023-09-21,97488,594,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",4861.66,{},83048,1,Europe +2024-01-03,97489,3762,"[""Keyboard"", ""Tablet""]",2714.18,{},258434,0,Africa +2024-10-16,97490,4285,"[""Keyboard"", ""Laptop"", ""Headphones""]",1005.87,"{""loyalty"": ""15%""}",40047,1,Africa +2023-08-15,97491,4408,"[""Laptop"", ""Tablet"", ""Headphones""]",3316.44,{},294644,0,North America +2024-09-16,97492,4167,"[""Charger"", ""Monitor"", ""Laptop""]",4329.92,{},289429,0,North America +2023-11-05,97493,9088,"[""Charger"", ""Laptop""]",4366.5,"{"""": ""29%""}",57050,0,South America +2024-10-02,97494,5425,"[""Phone""]",4934.33,"{""loyalty"": ""21%""}",107760,0,Africa +2024-02-27,97495,6101,"[""Tablet""]",4403.29,{},129572,0,Asia +2023-05-04,97496,1681,"[""Wireless Mouse""]",3394.19,{},119081,0,South America +2023-01-03,97497,8449,"[""Tablet"", ""Charger""]",1635.23,"{""promo"": ""6%""}",71722,1,South America +2024-01-17,97498,8705,"[""Headphones""]",1331.67,{},6577,1,North America +2024-06-16,97499,2358,"[""Wireless Mouse""]",3984.95,"{"""": ""12%""}",15969,0,Europe +2023-09-23,97500,5389,"[""Wireless Mouse""]",115.2,"{""promo"": ""28%""}",136861,1,North America +2024-08-10,97501,1072,"[""Monitor""]",852.15,{},173076,1,North America +2024-10-24,97502,3724,"[""Tablet""]",376.21,"{""seasonal"": ""5%""}",154058,1,Asia +2024-10-05,97503,5689,"[""Headphones""]",1710.04,{},129309,1,Europe +2024-05-12,97504,3146,"[""Monitor"", ""Wireless Mouse""]",3256.55,"{""loyalty"": ""10%""}",76810,1,North America +2024-01-05,97505,6223,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",3367.09,"{""loyalty"": ""8%""}",126953,1,Africa +2024-07-18,97506,7824,"[""Keyboard"", ""Charger""]",705.47,{},50463,0,Africa +2023-10-06,97507,2534,"[""Monitor"", ""Tablet""]",3195.34,"{""seasonal"": ""19%""}",7328,1,North America +2023-03-01,97508,8383,"[""Headphones"", ""Monitor""]",1124.48,"{""loyalty"": ""22%""}",1308,0,Africa +2023-03-23,97509,5198,"[""Monitor"", ""Headphones"", ""Laptop""]",2684.9,{},264480,0,Africa +2024-04-02,97510,9506,"[""Charger"", ""Tablet""]",3066.6,{},33065,0,Europe +2024-06-10,97511,2720,"[""Tablet"", ""Wireless Mouse""]",3371.8,{},182783,1,Europe +2024-11-28,97512,3019,"[""Wireless Mouse"", ""Headphones""]",1341.48,"{"""": ""14%""}",223206,1,North America +2024-03-15,97513,6582,"[""Tablet"", ""Keyboard"", ""Laptop""]",2174.19,"{"""": ""30%""}",277679,0,North America +2024-11-20,97514,2334,"[""Tablet""]",4066.23,{},23640,0,Africa +2023-04-15,97515,2532,"[""Charger"", ""Monitor""]",1274.62,"{""loyalty"": ""25%""}",102308,1,South America +2023-02-07,97516,2673,"[""Monitor""]",3322.07,{},111817,1,North America +2023-10-30,97517,3937,"[""Keyboard"", ""Monitor""]",739.99,"{""promo"": ""27%""}",294281,1,Asia +2023-10-09,97518,9767,"[""Charger""]",3924.21,"{""seasonal"": ""13%""}",230058,0,Africa +2024-05-20,97519,504,"[""Monitor""]",2199.69,"{""seasonal"": ""22%""}",195475,0,Europe +2024-10-01,97520,6622,"[""Charger""]",2873.33,"{""loyalty"": ""18%""}",264205,1,South America +2023-04-25,97521,1815,"[""Tablet"", ""Monitor"", ""Keyboard""]",3313.62,{},11049,1,Asia +2024-05-19,97522,4786,"[""Charger""]",712.96,{},102856,1,South America +2023-09-21,97523,3493,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4676.27,{},101223,1,South America +2024-12-13,97524,8871,"[""Headphones"", ""Phone"", ""Laptop""]",2834.09,"{""promo"": ""12%""}",158639,0,South America +2023-04-03,97525,3614,"[""Phone"", ""Keyboard"", ""Headphones""]",1800.67,"{""loyalty"": ""11%""}",209218,0,North America +2023-12-11,97526,147,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3925.34,"{""loyalty"": ""30%""}",212705,0,Africa +2024-03-21,97527,4528,"[""Tablet"", ""Phone"", ""Headphones""]",243.6,"{""seasonal"": ""17%""}",71458,1,Europe +2024-12-09,97528,6385,"[""Wireless Mouse"", ""Phone""]",2719.4,{},260434,1,South America +2023-06-19,97529,5531,"[""Phone""]",3919.47,{},250029,0,Africa +2024-11-17,97530,8425,"[""Charger"", ""Headphones"", ""Phone""]",3196.56,{},209424,0,North America +2024-01-10,97531,4424,"[""Phone"", ""Wireless Mouse""]",1377.3,{},271927,1,South America +2023-12-17,97532,1428,"[""Tablet""]",4880.0,{},189576,0,Asia +2024-11-23,97533,6356,"[""Headphones"", ""Monitor""]",2911.58,"{""seasonal"": ""17%""}",167303,1,North America +2023-06-20,97534,9883,"[""Keyboard""]",1587.78,{},186563,0,South America +2024-10-05,97535,5731,"[""Laptop""]",3154.96,{},214460,1,South America +2023-03-10,97536,4885,"[""Monitor""]",3719.21,"{""seasonal"": ""18%""}",44070,1,Europe +2023-11-27,97537,3093,"[""Charger"", ""Wireless Mouse""]",946.13,"{""promo"": ""18%""}",18242,1,South America +2024-02-05,97538,6236,"[""Charger"", ""Headphones"", ""Tablet""]",1164.32,{},67401,0,Europe +2023-08-15,97539,5408,"[""Keyboard"", ""Charger""]",3093.18,"{""loyalty"": ""14%""}",96372,0,Africa +2024-03-07,97540,7003,"[""Laptop"", ""Charger"", ""Headphones""]",2869.08,{},230407,1,Asia +2024-03-16,97541,5955,"[""Keyboard""]",1278.96,{},103695,0,South America +2023-05-27,97542,5255,"[""Laptop"", ""Monitor"", ""Charger""]",3764.34,{},212129,0,Asia +2024-07-15,97543,2963,"[""Phone"", ""Tablet""]",2358.06,"{"""": ""25%""}",250641,1,Europe +2023-03-06,97544,6880,"[""Keyboard"", ""Charger"", ""Phone""]",2059.2,{},285107,1,Africa +2023-07-27,97545,4293,"[""Phone"", ""Tablet"", ""Headphones""]",705.09,"{""seasonal"": ""10%""}",254427,0,North America +2023-11-28,97546,3978,"[""Keyboard"", ""Charger""]",1795.64,"{""seasonal"": ""15%""}",186047,1,Africa +2023-08-07,97547,1347,"[""Charger""]",2281.91,"{"""": ""8%""}",239334,0,South America +2024-05-12,97548,7484,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",152.71,"{""loyalty"": ""12%""}",6805,1,Africa +2024-07-11,97549,1039,"[""Monitor"", ""Keyboard""]",2543.44,{},238977,1,Asia +2023-08-21,97550,6075,"[""Laptop""]",99.76,"{""loyalty"": ""30%""}",270849,0,Europe +2024-07-24,97551,2887,"[""Headphones"", ""Tablet"", ""Phone""]",2600.44,"{""loyalty"": ""24%""}",159188,0,Europe +2023-03-15,97552,422,"[""Tablet""]",3516.0,{},175218,0,Europe +2023-05-25,97553,9335,"[""Monitor"", ""Tablet"", ""Charger""]",739.52,{},107869,0,North America +2024-04-01,97554,4328,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",4471.11,{},24299,1,North America +2023-01-14,97555,6788,"[""Tablet"", ""Headphones""]",1745.61,{},38032,1,Europe +2023-07-17,97556,2598,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2097.09,"{""loyalty"": ""8%""}",190369,0,Asia +2024-01-29,97557,2257,"[""Charger"", ""Tablet"", ""Headphones""]",4762.7,{},179040,0,South America +2023-09-16,97558,8780,"[""Headphones""]",2327.88,{},112091,1,Africa +2024-03-14,97559,9200,"[""Monitor"", ""Keyboard"", ""Laptop""]",4663.25,{},191110,1,Asia +2024-02-11,97560,3515,"[""Monitor"", ""Tablet""]",376.58,{},177071,1,Asia +2023-09-06,97561,7490,"[""Phone""]",4405.82,{},291358,0,North America +2023-11-21,97562,7964,"[""Keyboard"", ""Monitor""]",3643.22,"{""promo"": ""11%""}",163683,0,Europe +2024-08-26,97563,1578,"[""Headphones"", ""Monitor""]",4334.53,"{""promo"": ""9%""}",21742,0,Asia +2024-11-23,97564,9196,"[""Keyboard"", ""Wireless Mouse""]",1355.97,"{""seasonal"": ""19%""}",223769,1,Europe +2023-12-10,97565,462,"[""Monitor"", ""Keyboard"", ""Charger""]",4611.36,"{""loyalty"": ""27%""}",137978,1,Europe +2023-03-20,97566,6757,"[""Monitor"", ""Laptop"", ""Phone""]",876.65,"{""seasonal"": ""25%""}",169545,1,Asia +2024-10-16,97567,8836,"[""Laptop""]",953.96,{},8198,0,North America +2023-06-01,97568,5896,"[""Keyboard"", ""Tablet"", ""Headphones""]",69.23,{},194140,0,Asia +2024-07-06,97569,6931,"[""Headphones"", ""Phone"", ""Charger""]",4979.43,{},203309,0,Europe +2024-12-18,97570,2627,"[""Monitor"", ""Keyboard"", ""Charger""]",4155.72,{},185431,1,South America +2023-11-12,97571,3427,"[""Wireless Mouse"", ""Headphones""]",4058.08,"{""loyalty"": ""24%""}",267882,0,Europe +2023-10-11,97572,4596,"[""Monitor"", ""Keyboard"", ""Phone""]",481.1,{},145386,1,Asia +2023-12-24,97573,8803,"[""Monitor"", ""Phone""]",1213.96,"{""promo"": ""24%""}",52352,1,South America +2023-06-20,97574,3436,"[""Keyboard""]",3209.0,"{""seasonal"": ""18%""}",141665,1,Africa +2024-11-26,97575,9634,"[""Phone"", ""Charger"", ""Keyboard""]",1043.24,"{"""": ""29%""}",233801,0,Asia +2024-07-16,97576,8770,"[""Laptop"", ""Headphones""]",1295.31,{},36578,0,South America +2024-05-17,97577,9272,"[""Monitor""]",4375.49,{},165967,1,Africa +2023-04-20,97578,8678,"[""Phone"", ""Tablet""]",2354.32,"{""loyalty"": ""10%""}",18195,0,Asia +2023-07-14,97579,8259,"[""Tablet"", ""Wireless Mouse""]",4391.15,"{""seasonal"": ""29%""}",156146,0,North America +2023-08-26,97580,9977,"[""Tablet""]",3860.05,"{"""": ""10%""}",271221,0,North America +2023-07-19,97581,6881,"[""Keyboard"", ""Phone"", ""Laptop""]",3161.47,"{""seasonal"": ""23%""}",173737,1,South America +2023-12-31,97582,9493,"[""Keyboard"", ""Laptop"", ""Monitor""]",4997.0,{},298413,0,North America +2023-11-18,97583,1157,"[""Keyboard"", ""Tablet"", ""Charger""]",885.59,{},75217,0,South America +2024-03-03,97584,2775,"[""Keyboard"", ""Headphones"", ""Laptop""]",986.39,"{""seasonal"": ""23%""}",136258,0,South America +2023-11-05,97585,7651,"[""Phone"", ""Tablet"", ""Laptop""]",1193.09,"{""loyalty"": ""15%""}",38303,0,Africa +2023-09-23,97586,1115,"[""Phone"", ""Keyboard"", ""Monitor""]",4019.39,{},217847,1,Asia +2024-09-18,97587,1847,"[""Laptop"", ""Keyboard""]",2125.05,"{""promo"": ""29%""}",81371,0,Europe +2023-08-09,97588,9262,"[""Laptop"", ""Charger""]",673.18,"{"""": ""11%""}",199780,0,North America +2024-05-25,97589,7580,"[""Phone"", ""Charger""]",2177.82,"{""loyalty"": ""25%""}",131077,1,South America +2023-05-12,97590,9038,"[""Tablet""]",1725.65,{},91054,0,Asia +2024-12-25,97591,7818,"[""Wireless Mouse""]",3989.63,{},241999,0,North America +2023-05-26,97592,1878,"[""Tablet"", ""Phone""]",3494.49,"{""promo"": ""30%""}",123438,1,Asia +2023-01-15,97593,9350,"[""Charger"", ""Tablet"", ""Monitor""]",2500.35,"{"""": ""18%""}",92675,1,Europe +2024-10-12,97594,6450,"[""Headphones""]",1000.69,{},17049,1,Africa +2024-12-17,97595,1837,"[""Wireless Mouse""]",3991.03,"{"""": ""22%""}",221869,1,Africa +2023-06-17,97596,6372,"[""Monitor""]",1689.72,{},195741,1,Asia +2023-01-23,97597,7979,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",3666.88,{},169466,0,Europe +2023-03-24,97598,3668,"[""Keyboard""]",3591.04,"{""promo"": ""8%""}",38038,0,South America +2023-04-18,97599,2710,"[""Tablet"", ""Laptop""]",3767.34,{},178771,1,South America +2023-09-26,97600,3952,"[""Phone"", ""Headphones"", ""Tablet""]",295.06,"{"""": ""7%""}",200677,0,North America +2024-07-06,97601,5107,"[""Phone"", ""Charger"", ""Keyboard""]",597.99,"{""promo"": ""27%""}",45200,0,Africa +2023-07-04,97602,9277,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",702.15,"{"""": ""6%""}",144166,0,Europe +2024-08-29,97603,1264,"[""Tablet"", ""Keyboard"", ""Laptop""]",4907.54,"{"""": ""27%""}",294003,1,Europe +2023-11-30,97604,787,"[""Charger""]",1354.43,"{""seasonal"": ""7%""}",170237,0,Africa +2023-12-13,97605,7461,"[""Phone""]",2682.17,{},181871,0,North America +2023-11-25,97606,2969,"[""Laptop"", ""Phone""]",2074.66,"{""loyalty"": ""11%""}",164844,1,South America +2024-03-05,97607,2206,"[""Charger"", ""Tablet"", ""Laptop""]",3624.33,{},284410,1,Asia +2023-09-10,97608,8861,"[""Monitor"", ""Charger""]",3482.06,{},17584,1,Africa +2024-11-02,97609,6987,"[""Charger"", ""Phone"", ""Wireless Mouse""]",4607.5,{},187294,1,Africa +2024-12-17,97610,7284,"[""Charger""]",232.5,"{""seasonal"": ""14%""}",99231,0,Asia +2024-09-23,97611,260,"[""Keyboard"", ""Charger""]",1874.83,{},123329,0,Europe +2024-08-24,97612,6147,"[""Phone"", ""Charger""]",790.53,"{""loyalty"": ""9%""}",55378,0,Europe +2023-11-11,97613,7612,"[""Charger"", ""Phone""]",4410.99,{},194819,0,North America +2024-09-22,97614,1639,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",357.83,{},299754,0,Europe +2024-02-15,97615,539,"[""Monitor"", ""Keyboard"", ""Tablet""]",3353.18,{},109678,1,North America +2023-12-28,97616,2107,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4941.01,{},89106,1,Africa +2024-04-16,97617,384,"[""Phone"", ""Laptop""]",4379.76,{},272862,0,Europe +2023-12-01,97618,4809,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4657.35,{},16668,1,Asia +2023-02-16,97619,25,"[""Laptop"", ""Charger""]",1296.52,"{"""": ""24%""}",48541,0,Africa +2024-09-30,97620,9876,"[""Keyboard"", ""Tablet"", ""Charger""]",4281.94,"{""promo"": ""10%""}",278929,1,North America +2023-10-14,97621,2085,"[""Wireless Mouse"", ""Charger""]",3968.7,"{""seasonal"": ""10%""}",230705,1,South America +2023-10-02,97622,1482,"[""Phone"", ""Tablet""]",1681.01,"{""seasonal"": ""18%""}",22344,1,Asia +2023-11-18,97623,9876,"[""Laptop"", ""Keyboard"", ""Headphones""]",2164.27,"{""loyalty"": ""6%""}",120542,1,South America +2023-05-21,97624,7148,"[""Keyboard"", ""Charger""]",2369.94,"{"""": ""24%""}",248817,1,South America +2023-07-27,97625,8764,"[""Keyboard"", ""Charger"", ""Tablet""]",2469.14,"{""seasonal"": ""9%""}",279541,1,Asia +2023-06-28,97626,8796,"[""Tablet""]",465.07,"{""seasonal"": ""29%""}",88202,0,Europe +2024-04-06,97627,9654,"[""Phone"", ""Headphones"", ""Tablet""]",2097.08,"{""promo"": ""21%""}",257112,0,Europe +2023-01-19,97628,6339,"[""Tablet"", ""Charger"", ""Headphones""]",2082.38,"{""loyalty"": ""11%""}",228621,1,Asia +2023-07-10,97629,6761,"[""Tablet""]",1490.34,"{""seasonal"": ""24%""}",156274,1,North America +2023-11-17,97630,6357,"[""Keyboard"", ""Tablet""]",4303.03,"{""promo"": ""26%""}",265733,0,South America +2024-08-08,97631,5940,"[""Tablet""]",2822.29,{},93335,1,South America +2024-11-25,97632,9930,"[""Phone""]",2768.04,"{""loyalty"": ""22%""}",31663,1,North America +2023-06-30,97633,6181,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",4190.06,{},203269,1,Europe +2023-06-03,97634,4539,"[""Headphones"", ""Wireless Mouse""]",3413.62,"{""seasonal"": ""18%""}",56886,1,Asia +2023-02-17,97635,190,"[""Keyboard"", ""Tablet""]",1274.96,{},134528,1,Asia +2024-08-28,97636,7083,"[""Laptop""]",1941.19,{},114383,0,Asia +2024-04-06,97637,3389,"[""Tablet""]",2922.43,{},150584,0,Africa +2024-07-09,97638,8097,"[""Phone""]",919.41,"{""loyalty"": ""22%""}",12682,1,Europe +2024-07-16,97639,3369,"[""Headphones"", ""Charger"", ""Laptop""]",1198.33,{},149507,0,Europe +2023-01-23,97640,2084,"[""Phone"", ""Keyboard""]",2409.24,"{""loyalty"": ""18%""}",83806,0,South America +2024-04-26,97641,7793,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",4324.6,{},155998,1,South America +2024-04-24,97642,8420,"[""Keyboard""]",2131.06,{},24320,1,Europe +2023-08-27,97643,5358,"[""Charger""]",2805.94,{},201808,1,Asia +2023-11-20,97644,6517,"[""Wireless Mouse""]",4959.49,"{""promo"": ""25%""}",75450,1,North America +2024-06-15,97645,6478,"[""Headphones""]",3887.8,{},111204,0,Africa +2023-01-08,97646,679,"[""Headphones""]",747.62,{},247428,0,Asia +2024-10-11,97647,9965,"[""Laptop""]",1802.59,"{"""": ""30%""}",243327,1,North America +2023-04-17,97648,4738,"[""Phone"", ""Charger""]",2278.64,"{"""": ""30%""}",263605,1,Europe +2023-10-09,97649,4686,"[""Charger"", ""Keyboard"", ""Phone""]",3304.72,"{""seasonal"": ""12%""}",57704,0,Africa +2023-12-06,97650,8287,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",1780.81,{},4954,0,North America +2023-10-30,97651,2106,"[""Wireless Mouse"", ""Headphones""]",2562.1,"{""seasonal"": ""16%""}",211665,0,Africa +2024-05-12,97652,8766,"[""Keyboard""]",3605.53,{},1129,1,South America +2024-12-26,97653,5762,"[""Tablet""]",4669.63,{},148350,0,North America +2023-11-11,97654,9166,"[""Phone"", ""Keyboard""]",2520.1,"{""promo"": ""5%""}",183327,1,Asia +2024-07-28,97655,2494,"[""Charger""]",1007.22,"{"""": ""26%""}",275969,0,Africa +2024-04-11,97656,7038,"[""Headphones"", ""Tablet""]",3954.37,"{""loyalty"": ""6%""}",223634,0,Europe +2023-11-24,97657,9013,"[""Headphones"", ""Monitor""]",1601.12,"{"""": ""6%""}",295072,1,Europe +2023-02-05,97658,52,"[""Charger"", ""Laptop""]",2616.48,"{""promo"": ""28%""}",265888,0,North America +2024-04-22,97659,8564,"[""Headphones""]",3053.28,"{""seasonal"": ""9%""}",199701,1,North America +2023-10-04,97660,1435,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",1949.09,{},206327,1,South America +2023-02-08,97661,1997,"[""Headphones"", ""Monitor""]",476.11,{},199587,1,Asia +2024-02-14,97662,797,"[""Laptop"", ""Headphones""]",1128.87,{},252246,0,Europe +2023-09-25,97663,9283,"[""Keyboard"", ""Headphones""]",3240.59,{},224983,1,Asia +2024-05-07,97664,4056,"[""Tablet""]",2244.85,{},166049,1,South America +2024-02-22,97665,212,"[""Monitor""]",4396.96,"{""promo"": ""17%""}",135394,1,North America +2023-11-30,97666,5633,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",3364.0,"{"""": ""15%""}",27632,1,Asia +2024-07-22,97667,7280,"[""Wireless Mouse""]",3809.78,{},296996,1,North America +2024-09-24,97668,9053,"[""Headphones"", ""Charger"", ""Phone""]",3330.68,"{""loyalty"": ""13%""}",10430,1,South America +2024-11-13,97669,6499,"[""Wireless Mouse"", ""Monitor""]",1115.66,{},127992,0,Asia +2023-05-04,97670,3904,"[""Phone"", ""Keyboard""]",4278.81,{},169624,1,South America +2024-01-15,97671,8741,"[""Charger"", ""Headphones"", ""Tablet""]",1787.66,"{""seasonal"": ""16%""}",83344,0,Europe +2023-10-23,97672,5097,"[""Keyboard"", ""Laptop""]",1895.84,"{""seasonal"": ""10%""}",39392,0,South America +2023-01-30,97673,1597,"[""Headphones""]",1425.31,"{""loyalty"": ""29%""}",27444,0,Asia +2024-01-19,97674,8986,"[""Laptop""]",1289.66,{},171325,0,North America +2024-08-04,97675,8046,"[""Tablet"", ""Headphones"", ""Phone""]",494.73,"{"""": ""24%""}",178599,1,South America +2024-01-23,97676,9089,"[""Keyboard""]",2794.69,"{""promo"": ""10%""}",202163,0,Europe +2023-01-16,97677,5243,"[""Tablet"", ""Headphones""]",168.72,"{""promo"": ""25%""}",5195,0,North America +2024-11-27,97678,3878,"[""Keyboard"", ""Monitor"", ""Tablet""]",3961.85,"{""promo"": ""23%""}",132362,1,South America +2023-11-28,97679,2691,"[""Tablet"", ""Keyboard"", ""Headphones""]",4768.17,"{""promo"": ""15%""}",66521,1,North America +2023-12-02,97680,1870,"[""Headphones"", ""Charger"", ""Phone""]",1644.44,"{""seasonal"": ""30%""}",121549,0,Europe +2024-11-08,97681,7652,"[""Keyboard"", ""Headphones""]",1059.92,{},10570,0,Africa +2024-01-16,97682,9439,"[""Headphones""]",2877.83,"{""seasonal"": ""11%""}",167650,1,South America +2024-10-07,97683,5583,"[""Wireless Mouse""]",634.03,"{""seasonal"": ""22%""}",15272,0,Europe +2024-10-01,97684,9574,"[""Keyboard"", ""Laptop"", ""Charger""]",81.15,{},54505,0,Asia +2024-11-21,97685,4243,"[""Keyboard""]",4381.12,{},147712,1,Asia +2023-07-01,97686,1604,"[""Wireless Mouse"", ""Laptop""]",1152.58,"{""promo"": ""20%""}",157928,1,Europe +2024-12-10,97687,3448,"[""Laptop""]",1697.84,{},144020,1,Africa +2023-08-26,97688,5364,"[""Charger""]",472.49,"{""seasonal"": ""20%""}",147052,0,South America +2023-12-20,97689,3308,"[""Wireless Mouse"", ""Keyboard""]",4556.86,"{""promo"": ""26%""}",60419,0,Europe +2024-07-19,97690,4403,"[""Wireless Mouse""]",4962.7,"{""seasonal"": ""22%""}",290307,0,Europe +2024-08-23,97691,7226,"[""Laptop"", ""Keyboard"", ""Phone""]",1898.11,{},124539,0,North America +2023-06-11,97692,9610,"[""Headphones""]",1089.41,{},155276,0,South America +2024-06-19,97693,8237,"[""Tablet"", ""Wireless Mouse""]",2939.43,{},76866,1,Europe +2023-02-23,97694,3020,"[""Laptop""]",1338.03,"{""seasonal"": ""13%""}",121573,0,Africa +2023-01-27,97695,7069,"[""Phone"", ""Wireless Mouse""]",3826.52,{},4989,0,Africa +2023-06-22,97696,6361,"[""Phone"", ""Laptop""]",2201.84,{},5318,1,Africa +2023-10-01,97697,5552,"[""Laptop"", ""Monitor""]",1857.95,"{""loyalty"": ""22%""}",141059,1,Europe +2023-11-14,97698,5535,"[""Charger"", ""Laptop"", ""Keyboard""]",2762.4,{},72315,0,Asia +2024-05-06,97699,7520,"[""Monitor"", ""Tablet"", ""Laptop""]",3089.39,{},108556,0,Europe +2024-06-23,97700,8154,"[""Laptop"", ""Keyboard""]",1233.74,"{""seasonal"": ""8%""}",215988,1,Asia +2024-07-27,97701,4252,"[""Charger""]",3902.87,{},110593,1,Asia +2024-06-24,97702,5201,"[""Monitor""]",3659.43,"{"""": ""24%""}",225733,0,Africa +2023-04-28,97703,6506,"[""Charger"", ""Keyboard""]",4595.58,"{""promo"": ""23%""}",216970,1,North America +2024-09-04,97704,1168,"[""Charger""]",2192.46,"{""loyalty"": ""11%""}",288110,1,Europe +2023-07-09,97705,4885,"[""Keyboard""]",3925.59,"{""loyalty"": ""6%""}",192969,1,Africa +2023-11-13,97706,9777,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3992.56,{},238105,0,South America +2024-04-03,97707,1883,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1060.47,{},184546,0,Europe +2023-11-29,97708,9302,"[""Monitor""]",1651.07,{},253449,1,Europe +2024-11-06,97709,5908,"[""Monitor""]",361.38,{},223294,0,South America +2023-08-13,97710,8758,"[""Keyboard"", ""Charger""]",1220.09,"{""seasonal"": ""10%""}",121096,0,Asia +2024-11-10,97711,6951,"[""Phone""]",54.89,"{""seasonal"": ""23%""}",8241,0,South America +2024-02-02,97712,236,"[""Laptop"", ""Wireless Mouse""]",2867.26,"{"""": ""16%""}",169761,0,North America +2023-05-05,97713,3907,"[""Headphones""]",736.97,"{"""": ""25%""}",133315,1,Africa +2024-11-09,97714,9410,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2820.47,"{""loyalty"": ""9%""}",111154,1,Africa +2023-10-20,97715,5724,"[""Tablet""]",999.39,{},273516,1,Europe +2023-08-03,97716,7760,"[""Headphones"", ""Charger""]",385.3,"{""loyalty"": ""15%""}",203753,1,Africa +2024-09-24,97717,8080,"[""Keyboard"", ""Charger""]",2730.71,{},79639,0,Europe +2023-09-02,97718,9761,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",733.66,{},279622,1,Asia +2023-06-29,97719,2387,"[""Tablet""]",3202.73,"{""seasonal"": ""16%""}",251831,1,Europe +2023-05-06,97720,6743,"[""Keyboard"", ""Charger"", ""Tablet""]",2209.69,{},108652,1,South America +2023-07-08,97721,9222,"[""Tablet"", ""Charger""]",541.45,"{"""": ""6%""}",43834,1,Asia +2024-02-07,97722,3937,"[""Monitor"", ""Wireless Mouse""]",2063.46,{},3350,0,Africa +2023-10-11,97723,5259,"[""Charger"", ""Headphones""]",2931.23,"{""seasonal"": ""30%""}",208050,0,Asia +2023-06-27,97724,9529,"[""Monitor"", ""Wireless Mouse""]",1023.37,{},263029,1,Africa +2024-02-04,97725,1465,"[""Laptop"", ""Keyboard"", ""Headphones""]",1123.4,{},234367,1,Asia +2023-02-04,97726,8460,"[""Tablet"", ""Headphones"", ""Phone""]",4532.03,"{""promo"": ""11%""}",46385,1,Africa +2023-07-20,97727,3711,"[""Charger"", ""Laptop"", ""Headphones""]",3400.7,{},40710,0,South America +2024-12-23,97728,2517,"[""Keyboard""]",414.18,{},60127,1,North America +2023-01-11,97729,1961,"[""Tablet""]",4012.45,{},253760,1,Europe +2023-03-28,97730,3489,"[""Charger""]",1403.33,"{""seasonal"": ""13%""}",126395,1,Europe +2024-09-11,97731,4995,"[""Keyboard"", ""Headphones""]",3072.21,{},163771,1,North America +2023-12-15,97732,6685,"[""Headphones"", ""Tablet"", ""Phone""]",1720.31,"{"""": ""16%""}",209523,0,Africa +2024-04-27,97733,9843,"[""Tablet"", ""Charger""]",4620.91,{},217495,1,Africa +2023-03-16,97734,7530,"[""Keyboard"", ""Laptop""]",3218.17,"{""seasonal"": ""11%""}",186636,0,Asia +2023-05-04,97735,122,"[""Keyboard""]",455.73,"{""seasonal"": ""28%""}",283355,0,Africa +2023-12-15,97736,2994,"[""Tablet"", ""Monitor""]",2250.27,{},267744,1,Africa +2023-01-21,97737,851,"[""Phone"", ""Monitor"", ""Charger""]",4646.18,"{""promo"": ""18%""}",287634,1,North America +2023-12-12,97738,3142,"[""Charger""]",658.46,{},161133,1,Europe +2023-02-25,97739,7244,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3524.74,{},166171,0,North America +2024-12-28,97740,4989,"[""Charger""]",1370.4,"{""promo"": ""24%""}",53464,0,North America +2024-02-19,97741,7487,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",4316.04,"{""seasonal"": ""20%""}",267030,0,Africa +2024-03-01,97742,9690,"[""Keyboard"", ""Monitor"", ""Laptop""]",3065.46,"{""promo"": ""18%""}",70619,1,North America +2024-09-09,97743,2765,"[""Monitor""]",4348.55,"{""promo"": ""17%""}",6122,0,North America +2023-04-21,97744,8933,"[""Monitor""]",3564.84,"{""loyalty"": ""17%""}",148781,0,North America +2023-02-12,97745,8327,"[""Phone"", ""Charger""]",4400.35,"{""loyalty"": ""28%""}",40914,1,Europe +2023-09-01,97746,4066,"[""Monitor"", ""Wireless Mouse""]",4833.85,{},87995,1,Europe +2023-11-27,97747,7583,"[""Headphones"", ""Laptop""]",1226.45,"{""seasonal"": ""12%""}",12028,0,North America +2024-03-15,97748,5977,"[""Phone"", ""Wireless Mouse""]",1901.8,{},100887,1,Asia +2024-01-31,97749,6471,"[""Keyboard""]",3796.19,"{"""": ""27%""}",199529,1,Africa +2023-10-04,97750,2196,"[""Phone"", ""Laptop""]",2902.62,"{""seasonal"": ""8%""}",151035,0,South America +2023-10-11,97751,9598,"[""Wireless Mouse""]",588.85,"{""loyalty"": ""11%""}",23513,1,Europe +2024-02-24,97752,9628,"[""Headphones"", ""Phone""]",4235.69,{},110098,0,North America +2023-02-27,97753,8211,"[""Tablet"", ""Phone"", ""Headphones""]",1869.42,"{"""": ""18%""}",113508,0,North America +2023-11-17,97754,1,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",2330.54,{},248537,1,North America +2023-11-18,97755,5578,"[""Keyboard""]",3422.22,"{""seasonal"": ""5%""}",9787,1,Europe +2024-11-14,97756,7526,"[""Tablet"", ""Keyboard"", ""Laptop""]",294.57,"{""loyalty"": ""12%""}",62436,1,South America +2024-08-22,97757,1769,"[""Charger""]",1194.66,{},25277,0,Africa +2023-07-19,97758,7172,"[""Phone"", ""Laptop""]",3596.31,"{"""": ""11%""}",297723,1,North America +2023-04-15,97759,5612,"[""Phone"", ""Laptop""]",504.67,{},5284,0,Africa +2023-03-09,97760,5888,"[""Charger"", ""Wireless Mouse""]",3892.75,{},144226,1,Africa +2024-06-13,97761,5422,"[""Charger"", ""Wireless Mouse""]",1472.77,"{"""": ""6%""}",231534,0,Africa +2024-08-10,97762,8013,"[""Headphones"", ""Laptop""]",3002.84,"{""loyalty"": ""15%""}",168534,1,South America +2024-03-17,97763,1485,"[""Laptop""]",2141.32,"{"""": ""26%""}",215001,1,South America +2023-02-24,97764,6677,"[""Monitor"", ""Phone""]",1191.49,"{""seasonal"": ""8%""}",162544,0,North America +2024-10-22,97765,1310,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4057.18,{},66763,1,Europe +2023-09-23,97766,581,"[""Keyboard"", ""Laptop""]",4523.63,"{""promo"": ""18%""}",90111,0,Africa +2023-04-08,97767,7059,"[""Charger"", ""Laptop""]",1510.96,{},52601,0,Africa +2023-06-14,97768,3970,"[""Tablet"", ""Keyboard"", ""Monitor""]",615.43,"{""loyalty"": ""27%""}",289189,0,South America +2023-02-05,97769,1260,"[""Laptop""]",1559.08,"{""promo"": ""7%""}",126481,1,North America +2024-08-04,97770,3954,"[""Charger"", ""Monitor""]",1689.74,{},67978,1,Africa +2024-12-03,97771,3764,"[""Wireless Mouse""]",642.17,{},39544,1,Africa +2023-06-09,97772,603,"[""Laptop""]",2962.07,{},188551,1,Europe +2023-10-06,97773,7998,"[""Laptop"", ""Charger""]",4993.9,"{""promo"": ""22%""}",150123,1,Europe +2024-04-22,97774,7030,"[""Phone"", ""Tablet""]",4778.62,{},154515,0,South America +2023-01-13,97775,3857,"[""Wireless Mouse""]",3736.95,"{""promo"": ""25%""}",86691,0,Europe +2024-03-24,97776,1153,"[""Laptop""]",385.79,{},91924,1,Asia +2023-03-26,97777,2663,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",178.88,"{"""": ""13%""}",167729,1,Africa +2023-06-10,97778,8303,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",3340.03,"{""promo"": ""6%""}",159856,1,Africa +2024-10-19,97779,771,"[""Headphones""]",3825.65,{},218652,1,Africa +2024-12-19,97780,4607,"[""Keyboard"", ""Monitor""]",4887.28,{},57839,1,Africa +2024-08-28,97781,7713,"[""Charger"", ""Headphones""]",4438.11,"{""loyalty"": ""6%""}",295738,1,Africa +2024-04-27,97782,8857,"[""Charger""]",2526.88,{},13401,1,Europe +2023-10-26,97783,9754,"[""Laptop""]",1998.43,{},11737,1,Africa +2024-06-14,97784,7256,"[""Keyboard"", ""Charger""]",2107.5,{},244334,0,Africa +2024-09-09,97785,9106,"[""Monitor"", ""Headphones""]",1121.42,"{""seasonal"": ""8%""}",199401,1,Africa +2023-08-21,97786,9320,"[""Tablet"", ""Phone"", ""Keyboard""]",3602.18,"{""seasonal"": ""21%""}",44751,1,South America +2024-01-20,97787,4089,"[""Tablet"", ""Headphones"", ""Phone""]",3857.73,{},58441,0,Africa +2023-05-31,97788,8577,"[""Keyboard""]",574.5,"{""loyalty"": ""14%""}",47731,1,Europe +2024-02-02,97789,4681,"[""Laptop""]",4069.69,{},288184,1,North America +2023-01-23,97790,3450,"[""Tablet"", ""Phone""]",2290.63,"{""seasonal"": ""7%""}",266094,1,Asia +2023-07-31,97791,1350,"[""Headphones"", ""Laptop""]",3390.52,"{""seasonal"": ""29%""}",188962,1,North America +2024-03-23,97792,3651,"[""Keyboard""]",3079.12,"{""loyalty"": ""18%""}",77098,0,Africa +2023-10-19,97793,2115,"[""Charger""]",931.47,{},32941,0,South America +2024-07-21,97794,8451,"[""Keyboard"", ""Phone"", ""Headphones""]",2482.01,{},32801,0,Africa +2023-10-11,97795,3390,"[""Keyboard"", ""Laptop""]",4399.28,"{""seasonal"": ""20%""}",122019,0,North America +2023-03-02,97796,8061,"[""Keyboard""]",3127.16,{},69419,0,Europe +2023-08-23,97797,2938,"[""Charger""]",1409.38,{},85223,0,South America +2024-01-15,97798,5421,"[""Tablet"", ""Wireless Mouse""]",1925.33,{},15924,0,Asia +2023-09-08,97799,6930,"[""Laptop"", ""Monitor"", ""Charger""]",824.12,{},144255,1,Asia +2024-09-15,97800,1083,"[""Keyboard"", ""Laptop""]",3214.58,"{""promo"": ""20%""}",192925,0,Europe +2023-02-13,97801,4619,"[""Charger"", ""Headphones"", ""Tablet""]",3093.3,"{""seasonal"": ""13%""}",58942,0,South America +2023-03-30,97802,6365,"[""Keyboard"", ""Laptop"", ""Monitor""]",2139.18,"{""loyalty"": ""30%""}",86820,0,Europe +2023-09-07,97803,3327,"[""Phone""]",4054.15,{},243191,0,Asia +2023-02-06,97804,9879,"[""Phone"", ""Headphones""]",4134.43,"{""promo"": ""10%""}",39940,1,Europe +2023-07-24,97805,5320,"[""Phone"", ""Headphones""]",4973.28,{},2430,0,Asia +2024-01-16,97806,8450,"[""Charger"", ""Monitor"", ""Phone""]",2865.29,"{""loyalty"": ""11%""}",62241,1,South America +2023-10-11,97807,5828,"[""Phone"", ""Laptop""]",4289.68,"{"""": ""7%""}",44371,1,North America +2023-05-27,97808,5412,"[""Laptop""]",2448.35,{},215451,0,North America +2024-10-22,97809,7881,"[""Phone"", ""Keyboard"", ""Tablet""]",75.23,{},130948,1,North America +2023-03-31,97810,7253,"[""Monitor"", ""Tablet"", ""Keyboard""]",1292.38,"{"""": ""21%""}",55499,0,Africa +2023-12-19,97811,8055,"[""Wireless Mouse"", ""Keyboard""]",1343.41,"{""promo"": ""21%""}",29624,0,Africa +2024-06-04,97812,4506,"[""Headphones"", ""Phone""]",1712.52,"{"""": ""18%""}",257262,0,Asia +2023-08-04,97813,4826,"[""Tablet"", ""Wireless Mouse""]",2341.97,"{""seasonal"": ""22%""}",226286,0,Europe +2023-12-09,97814,6249,"[""Headphones"", ""Phone"", ""Laptop""]",502.94,"{""loyalty"": ""21%""}",197421,0,North America +2023-04-17,97815,3582,"[""Headphones"", ""Charger""]",4871.99,{},139991,0,South America +2023-12-17,97816,874,"[""Tablet""]",2928.16,"{"""": ""7%""}",235493,0,North America +2024-02-01,97817,1204,"[""Keyboard"", ""Charger""]",3901.88,"{""loyalty"": ""20%""}",59276,1,Europe +2023-07-09,97818,6459,"[""Phone"", ""Wireless Mouse"", ""Laptop""]",652.55,"{"""": ""10%""}",297523,0,Africa +2024-11-16,97819,2351,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",3975.23,{},24386,1,South America +2024-08-15,97820,4777,"[""Charger"", ""Laptop""]",3334.13,{},162359,1,South America +2023-06-21,97821,5533,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",3349.52,"{""loyalty"": ""26%""}",55973,1,North America +2023-06-18,97822,8762,"[""Monitor"", ""Laptop"", ""Tablet""]",4302.28,"{""seasonal"": ""16%""}",36601,1,South America +2023-01-15,97823,2270,"[""Laptop""]",4658.93,{},71421,1,South America +2023-05-03,97824,9810,"[""Charger"", ""Monitor"", ""Tablet""]",3774.67,{},143360,0,North America +2024-01-26,97825,8300,"[""Tablet"", ""Phone""]",3224.11,"{""seasonal"": ""26%""}",133663,0,Africa +2024-10-21,97826,4317,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",4841.13,{},122991,1,Asia +2023-03-30,97827,2266,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1274.9,"{""promo"": ""8%""}",174856,0,North America +2024-02-22,97828,4763,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",407.55,{},218262,0,North America +2023-04-29,97829,3031,"[""Laptop"", ""Headphones"", ""Monitor""]",3662.6,{},96318,1,Africa +2024-04-28,97830,1061,"[""Headphones"", ""Laptop"", ""Monitor""]",3692.37,{},292925,0,Africa +2023-07-31,97831,5920,"[""Monitor""]",2350.0,{},193536,0,Asia +2024-11-14,97832,2784,"[""Keyboard"", ""Monitor""]",2402.98,{},74306,1,Europe +2024-08-04,97833,2925,"[""Headphones"", ""Tablet"", ""Monitor""]",650.65,"{""seasonal"": ""26%""}",97719,1,North America +2023-03-30,97834,9051,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",1342.61,"{"""": ""27%""}",209477,1,South America +2024-09-25,97835,9271,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3604.15,"{""seasonal"": ""29%""}",139524,0,Asia +2024-09-22,97836,8472,"[""Phone""]",1004.68,"{""loyalty"": ""26%""}",299829,0,Africa +2024-10-20,97837,4740,"[""Laptop""]",1098.33,"{""loyalty"": ""13%""}",171572,1,Europe +2024-09-15,97838,4654,"[""Headphones""]",4754.4,"{"""": ""24%""}",231771,1,Europe +2023-12-05,97839,4805,"[""Headphones"", ""Wireless Mouse""]",1913.16,"{""promo"": ""16%""}",7758,1,South America +2024-08-14,97840,1397,"[""Charger""]",2831.78,"{"""": ""25%""}",36911,1,Africa +2024-01-23,97841,346,"[""Laptop""]",2633.17,{},192195,1,North America +2024-06-23,97842,4189,"[""Laptop"", ""Monitor""]",4604.12,"{""promo"": ""9%""}",121143,0,South America +2023-04-07,97843,5258,"[""Laptop"", ""Phone""]",2831.4,{},168030,0,Asia +2024-02-26,97844,7652,"[""Laptop"", ""Keyboard""]",4638.89,"{""seasonal"": ""21%""}",254197,1,North America +2024-03-06,97845,9809,"[""Phone""]",2022.46,"{"""": ""5%""}",270967,0,Europe +2023-03-03,97846,8370,"[""Charger"", ""Monitor""]",787.17,"{""promo"": ""28%""}",141434,1,Africa +2024-12-28,97847,891,"[""Wireless Mouse""]",1071.48,{},14181,0,Europe +2024-11-09,97848,5601,"[""Tablet""]",3027.7,"{""seasonal"": ""16%""}",296796,0,Asia +2023-02-09,97849,8349,"[""Wireless Mouse"", ""Tablet""]",1055.61,{},120347,0,Europe +2024-02-11,97850,8072,"[""Wireless Mouse"", ""Tablet""]",3982.59,{},226747,1,Asia +2023-10-19,97851,4975,"[""Keyboard""]",477.26,{},252347,0,Asia +2024-12-09,97852,3346,"[""Headphones""]",4979.36,"{""loyalty"": ""27%""}",245981,0,South America +2024-05-24,97853,6932,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",3206.18,{},119181,1,Europe +2024-10-07,97854,626,"[""Monitor"", ""Laptop"", ""Charger""]",3895.76,"{""seasonal"": ""29%""}",36343,1,Europe +2023-04-16,97855,5212,"[""Headphones""]",3773.4,{},58771,1,Asia +2023-07-13,97856,5232,"[""Keyboard"", ""Phone"", ""Laptop""]",4768.01,{},248823,0,South America +2024-12-18,97857,7823,"[""Wireless Mouse"", ""Keyboard""]",779.03,{},2168,0,North America +2023-03-12,97858,8029,"[""Charger"", ""Keyboard"", ""Phone""]",878.56,{},241006,0,South America +2023-07-20,97859,5720,"[""Charger"", ""Headphones"", ""Monitor""]",4620.0,{},217097,1,Europe +2024-06-11,97860,4459,"[""Headphones"", ""Laptop"", ""Charger""]",4365.04,{},175311,1,South America +2024-04-23,97861,7048,"[""Monitor"", ""Phone""]",1599.14,"{""loyalty"": ""20%""}",201640,0,North America +2024-09-21,97862,4913,"[""Tablet""]",3620.05,{},152715,1,South America +2023-08-28,97863,7030,"[""Monitor"", ""Tablet""]",1983.29,"{""promo"": ""26%""}",233478,1,South America +2024-12-14,97864,6778,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",4532.02,{},38933,1,Asia +2023-06-28,97865,5142,"[""Monitor""]",3577.46,"{"""": ""13%""}",173049,0,North America +2024-02-27,97866,6620,"[""Monitor"", ""Tablet"", ""Laptop""]",4873.8,{},280358,0,Europe +2023-07-06,97867,261,"[""Monitor""]",4796.47,{},84949,1,North America +2023-05-02,97868,7505,"[""Headphones"", ""Wireless Mouse""]",361.27,{},17047,1,North America +2023-01-05,97869,6973,"[""Tablet""]",2948.75,{},147086,1,Asia +2024-01-01,97870,7563,"[""Headphones""]",3678.24,{},7809,0,Asia +2024-11-12,97871,5804,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",3207.37,"{""seasonal"": ""29%""}",172353,1,Europe +2024-03-01,97872,6567,"[""Tablet"", ""Laptop"", ""Phone""]",2831.66,"{"""": ""13%""}",261681,1,Africa +2024-06-07,97873,2004,"[""Headphones""]",2581.32,"{""promo"": ""30%""}",238355,1,Asia +2023-08-23,97874,9436,"[""Phone""]",765.84,"{""loyalty"": ""6%""}",43957,0,Africa +2024-07-22,97875,5708,"[""Phone"", ""Headphones""]",3304.75,"{"""": ""6%""}",292362,1,Asia +2024-12-02,97876,8569,"[""Wireless Mouse""]",1974.99,"{"""": ""25%""}",191807,0,Europe +2023-09-05,97877,9263,"[""Keyboard"", ""Laptop""]",4888.24,"{""loyalty"": ""10%""}",119735,0,Asia +2024-09-03,97878,9948,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",4491.92,{},221226,1,Africa +2024-04-09,97879,1945,"[""Wireless Mouse""]",4974.37,{},121493,1,Asia +2023-07-31,97880,4605,"[""Tablet"", ""Phone"", ""Charger""]",1512.69,"{""seasonal"": ""11%""}",285670,0,Africa +2024-06-03,97881,7115,"[""Keyboard"", ""Tablet"", ""Laptop""]",3858.06,"{""seasonal"": ""19%""}",295805,0,South America +2023-03-27,97882,3037,"[""Monitor""]",3203.57,{},61699,1,Europe +2023-03-16,97883,5884,"[""Phone"", ""Wireless Mouse""]",601.47,"{"""": ""8%""}",295011,1,Europe +2024-06-27,97884,4634,"[""Tablet"", ""Wireless Mouse""]",3968.02,{},110760,0,Europe +2024-07-19,97885,231,"[""Laptop"", ""Wireless Mouse""]",3917.45,{},274648,1,South America +2023-02-26,97886,3918,"[""Laptop"", ""Keyboard""]",3592.59,"{""promo"": ""28%""}",282537,0,South America +2024-12-05,97887,7262,"[""Laptop"", ""Keyboard"", ""Tablet""]",4663.74,"{""seasonal"": ""7%""}",123201,0,North America +2023-03-26,97888,2685,"[""Tablet"", ""Keyboard""]",2661.04,{},129452,1,North America +2024-09-05,97889,1174,"[""Wireless Mouse"", ""Keyboard""]",4467.48,"{""promo"": ""30%""}",108019,1,North America +2024-08-09,97890,3529,"[""Keyboard"", ""Headphones"", ""Charger""]",4875.39,"{""promo"": ""17%""}",158742,1,North America +2024-11-23,97891,3866,"[""Phone""]",3641.74,"{""loyalty"": ""24%""}",64115,1,South America +2024-06-06,97892,857,"[""Phone"", ""Charger""]",2294.32,"{""promo"": ""14%""}",137153,0,Asia +2023-02-26,97893,9591,"[""Charger"", ""Laptop"", ""Headphones""]",4462.69,"{""promo"": ""18%""}",134745,1,North America +2024-11-19,97894,2008,"[""Headphones"", ""Keyboard"", ""Charger""]",3235.0,"{"""": ""23%""}",296589,1,North America +2023-12-19,97895,7793,"[""Headphones""]",3442.92,{},248216,1,Asia +2024-02-23,97896,7202,"[""Tablet"", ""Keyboard""]",2633.4,"{""loyalty"": ""13%""}",41407,0,Europe +2024-02-21,97897,3887,"[""Wireless Mouse""]",4381.6,{},244325,0,South America +2023-02-09,97898,9566,"[""Tablet""]",1276.75,{},215096,0,South America +2024-04-17,97899,7437,"[""Headphones""]",4469.87,{},80479,1,North America +2023-05-09,97900,7778,"[""Charger"", ""Monitor""]",4300.05,"{"""": ""21%""}",36661,1,Europe +2023-05-26,97901,3244,"[""Headphones"", ""Charger""]",1870.81,"{""seasonal"": ""9%""}",297248,1,Africa +2023-03-13,97902,1075,"[""Laptop"", ""Charger""]",1399.44,"{""seasonal"": ""29%""}",277094,0,Europe +2024-11-02,97903,7513,"[""Headphones""]",3531.62,{},35341,1,North America +2024-07-12,97904,8571,"[""Keyboard"", ""Monitor"", ""Headphones""]",79.53,{},134623,1,Europe +2024-10-07,97905,4201,"[""Monitor""]",1326.3,{},91032,0,Africa +2024-06-20,97906,2957,"[""Tablet"", ""Wireless Mouse""]",4321.83,{},248691,1,Africa +2023-07-30,97907,603,"[""Laptop"", ""Headphones"", ""Tablet""]",3312.53,{},211799,1,South America +2024-03-20,97908,6207,"[""Phone""]",3109.28,"{""loyalty"": ""29%""}",285904,0,South America +2023-09-22,97909,9304,"[""Monitor"", ""Tablet""]",2225.85,"{"""": ""13%""}",119246,1,Africa +2023-09-04,97910,1545,"[""Keyboard"", ""Tablet"", ""Charger""]",2550.67,{},49700,0,Europe +2024-12-16,97911,6351,"[""Laptop"", ""Tablet"", ""Phone""]",1222.17,{},130636,1,South America +2024-08-23,97912,4037,"[""Laptop"", ""Wireless Mouse""]",4139.3,{},109449,0,Africa +2024-03-10,97913,7321,"[""Wireless Mouse"", ""Tablet""]",2070.02,{},23484,1,Asia +2023-02-02,97914,287,"[""Tablet"", ""Laptop""]",2258.13,"{""seasonal"": ""13%""}",48560,0,Europe +2023-02-09,97915,2982,"[""Phone""]",4035.63,"{""seasonal"": ""10%""}",173008,1,Europe +2023-01-31,97916,2214,"[""Headphones"", ""Tablet"", ""Keyboard""]",4673.23,"{""promo"": ""6%""}",116091,0,South America +2023-04-17,97917,2435,"[""Laptop"", ""Phone""]",356.39,"{""seasonal"": ""8%""}",246369,1,Asia +2023-11-23,97918,2664,"[""Laptop""]",3912.56,"{"""": ""5%""}",265556,0,North America +2023-04-27,97919,1749,"[""Tablet"", ""Monitor""]",3046.59,"{"""": ""29%""}",57485,1,North America +2024-01-19,97920,4435,"[""Monitor"", ""Laptop"", ""Charger""]",2084.36,"{""promo"": ""30%""}",112774,1,North America +2024-12-30,97921,3020,"[""Charger"", ""Laptop""]",4391.27,"{""seasonal"": ""24%""}",193786,1,Europe +2023-08-07,97922,3271,"[""Headphones"", ""Keyboard"", ""Phone""]",3737.57,"{""seasonal"": ""17%""}",82793,0,Africa +2023-12-19,97923,9178,"[""Phone""]",4763.89,{},147309,1,North America +2024-08-11,97924,4841,"[""Monitor"", ""Laptop""]",3457.31,"{"""": ""5%""}",102754,0,Africa +2023-09-27,97925,1821,"[""Laptop""]",3614.44,{},117477,1,North America +2024-10-31,97926,6336,"[""Monitor"", ""Tablet"", ""Phone""]",1388.62,"{""seasonal"": ""5%""}",106120,0,Africa +2024-05-04,97927,2033,"[""Tablet"", ""Keyboard"", ""Monitor""]",4845.82,"{""seasonal"": ""7%""}",248437,0,North America +2023-10-28,97928,5349,"[""Laptop""]",1254.93,{},85712,1,South America +2024-05-02,97929,5310,"[""Monitor""]",2237.79,"{"""": ""22%""}",250935,0,South America +2024-04-15,97930,4803,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",4390.83,{},14461,0,South America +2023-02-27,97931,3651,"[""Keyboard""]",1448.65,{},127089,0,North America +2023-08-15,97932,9342,"[""Laptop"", ""Charger""]",1779.49,{},294061,1,Asia +2024-11-12,97933,8106,"[""Phone"", ""Monitor"", ""Charger""]",2503.14,{},270472,1,Asia +2023-11-20,97934,6258,"[""Tablet"", ""Phone"", ""Keyboard""]",2710.6,"{""seasonal"": ""8%""}",269590,1,Europe +2023-06-04,97935,9060,"[""Laptop"", ""Keyboard"", ""Monitor""]",478.37,"{""seasonal"": ""24%""}",1184,1,Asia +2023-01-30,97936,4102,"[""Laptop"", ""Tablet"", ""Monitor""]",1111.17,"{""promo"": ""14%""}",150864,1,Asia +2024-04-11,97937,2442,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",3992.94,"{""seasonal"": ""9%""}",59963,0,North America +2024-02-13,97938,8975,"[""Headphones"", ""Monitor"", ""Tablet""]",4085.33,"{""loyalty"": ""22%""}",182035,0,Asia +2024-02-23,97939,8882,"[""Monitor"", ""Charger""]",1226.89,"{""seasonal"": ""19%""}",167281,1,Asia +2024-10-29,97940,1642,"[""Tablet"", ""Keyboard"", ""Monitor""]",4002.47,{},115297,1,Europe +2024-02-23,97941,8563,"[""Headphones"", ""Tablet"", ""Laptop""]",1644.74,{},134156,0,North America +2023-02-15,97942,4721,"[""Charger"", ""Keyboard"", ""Headphones""]",4735.55,"{""promo"": ""30%""}",90994,1,Africa +2023-02-27,97943,7172,"[""Keyboard""]",4427.69,"{""promo"": ""22%""}",287161,0,Europe +2023-11-01,97944,2518,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1493.5,{},288645,0,North America +2023-05-20,97945,2990,"[""Keyboard""]",3396.04,{},215280,1,South America +2024-11-20,97946,3898,"[""Charger"", ""Headphones"", ""Laptop""]",123.08,"{""seasonal"": ""30%""}",123214,0,South America +2023-07-07,97947,2969,"[""Wireless Mouse""]",1119.52,"{""promo"": ""8%""}",299157,1,Africa +2023-10-19,97948,8780,"[""Charger""]",917.72,{},132300,1,Europe +2024-09-23,97949,1534,"[""Monitor"", ""Wireless Mouse""]",1926.35,"{""promo"": ""24%""}",234894,1,Europe +2024-03-17,97950,1730,"[""Charger""]",2167.6,{},35008,0,South America +2024-12-11,97951,2796,"[""Phone"", ""Laptop""]",4858.78,"{""promo"": ""24%""}",227403,1,Europe +2024-12-26,97952,4622,"[""Tablet"", ""Monitor""]",692.02,"{"""": ""24%""}",27052,1,Asia +2024-12-18,97953,3998,"[""Keyboard"", ""Tablet"", ""Headphones""]",153.69,"{""seasonal"": ""7%""}",283482,0,Asia +2023-02-27,97954,2385,"[""Charger""]",1102.68,"{"""": ""27%""}",176699,0,Asia +2024-09-16,97955,8581,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",365.51,{},31116,1,Africa +2024-05-09,97956,5110,"[""Monitor""]",2691.37,"{""loyalty"": ""18%""}",271164,1,Asia +2024-04-10,97957,4066,"[""Keyboard"", ""Monitor"", ""Headphones""]",1004.76,{},57444,0,Asia +2023-04-03,97958,6611,"[""Keyboard""]",1449.85,"{""loyalty"": ""22%""}",119455,0,Asia +2024-12-03,97959,5099,"[""Laptop"", ""Monitor""]",858.71,"{""promo"": ""20%""}",230748,0,Europe +2023-07-15,97960,7242,"[""Phone"", ""Monitor"", ""Tablet""]",1016.52,{},33701,1,Asia +2024-09-28,97961,4289,"[""Keyboard"", ""Monitor""]",4076.13,{},61710,0,Asia +2024-02-02,97962,8110,"[""Charger""]",2339.28,{},220595,0,Africa +2023-02-01,97963,2433,"[""Charger"", ""Laptop""]",2823.33,"{""seasonal"": ""10%""}",219324,0,North America +2024-02-27,97964,9895,"[""Keyboard"", ""Wireless Mouse""]",1221.94,"{"""": ""23%""}",292232,1,South America +2024-12-18,97965,4943,"[""Wireless Mouse""]",308.08,"{""seasonal"": ""20%""}",33452,0,Africa +2024-12-11,97966,4217,"[""Headphones"", ""Tablet""]",1066.3,{},127528,0,Asia +2024-09-17,97967,20,"[""Tablet""]",516.71,{},115867,0,South America +2024-02-08,97968,268,"[""Monitor"", ""Laptop""]",4626.35,{},162072,0,North America +2024-04-01,97969,3598,"[""Laptop"", ""Charger""]",3624.23,{},227424,0,Asia +2024-05-03,97970,2547,"[""Tablet""]",3557.18,"{"""": ""15%""}",262703,1,South America +2023-08-05,97971,8258,"[""Keyboard""]",4440.66,"{""seasonal"": ""10%""}",236884,1,Asia +2023-07-24,97972,8161,"[""Laptop"", ""Wireless Mouse""]",2089.56,"{""loyalty"": ""14%""}",126708,1,Asia +2024-11-02,97973,9227,"[""Wireless Mouse""]",188.25,{},128601,0,Africa +2024-12-03,97974,2883,"[""Monitor"", ""Headphones"", ""Laptop""]",1078.43,"{""promo"": ""7%""}",260375,1,Asia +2024-06-25,97975,4199,"[""Laptop"", ""Headphones"", ""Charger""]",2065.63,{},161381,1,Asia +2024-05-18,97976,2716,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3112.4,{},244217,0,Africa +2024-09-24,97977,2866,"[""Headphones"", ""Phone""]",519.71,"{""seasonal"": ""25%""}",56131,1,Africa +2024-11-12,97978,8296,"[""Monitor""]",1943.41,{},237798,0,South America +2023-11-02,97979,1008,"[""Phone"", ""Charger"", ""Tablet""]",604.77,"{""loyalty"": ""5%""}",259217,1,North America +2023-02-12,97980,330,"[""Tablet"", ""Charger""]",3273.49,{},172708,1,Europe +2023-06-30,97981,9803,"[""Headphones""]",1697.84,"{"""": ""8%""}",132141,1,South America +2023-10-20,97982,6971,"[""Wireless Mouse""]",66.46,{},167977,0,Asia +2024-07-18,97983,4809,"[""Phone"", ""Keyboard""]",4772.93,{},293699,0,Europe +2023-07-23,97984,555,"[""Charger"", ""Wireless Mouse"", ""Phone""]",2330.56,"{""seasonal"": ""16%""}",166294,1,North America +2023-08-22,97985,3326,"[""Headphones"", ""Laptop""]",2807.3,{},51814,1,South America +2023-12-13,97986,9809,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",1439.05,"{"""": ""8%""}",231317,0,Asia +2023-12-11,97987,2385,"[""Charger""]",576.52,{},34654,1,Asia +2023-08-22,97988,6878,"[""Charger"", ""Tablet""]",958.68,{},201439,1,North America +2023-09-03,97989,4273,"[""Phone"", ""Charger""]",4315.59,{},127634,1,Africa +2023-10-25,97990,6038,"[""Laptop""]",837.37,"{"""": ""30%""}",192410,0,South America +2024-10-25,97991,1481,"[""Laptop"", ""Charger""]",2814.09,{},72327,0,South America +2023-07-21,97992,2876,"[""Keyboard"", ""Wireless Mouse""]",2332.97,"{""seasonal"": ""13%""}",143072,0,North America +2024-04-16,97993,438,"[""Headphones""]",4034.05,{},110545,0,South America +2024-09-19,97994,2440,"[""Tablet""]",3828.99,"{"""": ""13%""}",247908,1,North America +2023-05-20,97995,1602,"[""Headphones"", ""Monitor"", ""Charger""]",3252.26,{},139017,1,North America +2024-07-09,97996,5552,"[""Monitor"", ""Headphones""]",1378.57,"{""promo"": ""28%""}",14619,0,South America +2023-01-23,97997,5704,"[""Phone"", ""Headphones"", ""Charger""]",3898.07,{},183931,1,Africa +2024-11-19,97998,6787,"[""Laptop""]",2193.54,"{""promo"": ""23%""}",126666,1,South America +2024-02-07,97999,2770,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",1355.4,"{"""": ""25%""}",282905,0,Africa +2023-06-26,98000,4327,"[""Charger""]",781.68,{},55153,1,Europe +2024-10-30,98001,1655,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",2108.5,"{""seasonal"": ""9%""}",293008,0,North America +2023-06-14,98002,7910,"[""Tablet"", ""Laptop"", ""Headphones""]",2826.29,"{"""": ""14%""}",216063,1,Europe +2023-10-25,98003,3379,"[""Wireless Mouse""]",4281.64,{},293397,1,Europe +2023-11-14,98004,7767,"[""Phone"", ""Headphones"", ""Keyboard""]",4362.42,{},201789,0,North America +2023-03-16,98005,4553,"[""Charger"", ""Tablet"", ""Laptop""]",2892.99,{},214939,0,Europe +2024-09-08,98006,8826,"[""Tablet"", ""Keyboard"", ""Monitor""]",4003.18,{},192012,0,South America +2024-12-10,98007,641,"[""Charger"", ""Tablet"", ""Phone""]",2981.92,{},207700,1,South America +2023-03-23,98008,5358,"[""Laptop"", ""Charger""]",1960.07,{},65706,0,North America +2024-08-25,98009,2925,"[""Laptop""]",259.98,"{""loyalty"": ""17%""}",258993,1,Africa +2024-04-17,98010,5755,"[""Monitor"", ""Headphones""]",1075.58,"{"""": ""18%""}",134503,1,North America +2024-01-17,98011,7221,"[""Laptop"", ""Keyboard"", ""Monitor""]",3441.23,"{""seasonal"": ""13%""}",125114,1,Asia +2023-05-10,98012,8849,"[""Monitor"", ""Headphones"", ""Keyboard""]",800.92,{},153635,0,Europe +2023-04-19,98013,3189,"[""Phone""]",3856.83,"{"""": ""27%""}",151264,0,Europe +2023-03-17,98014,826,"[""Headphones"", ""Charger""]",3591.94,{},183141,0,South America +2023-09-23,98015,9979,"[""Headphones"", ""Wireless Mouse""]",552.93,{},165858,1,South America +2023-07-06,98016,8577,"[""Laptop"", ""Phone""]",130.29,"{"""": ""28%""}",2530,1,Europe +2023-06-12,98017,9315,"[""Phone""]",2943.03,"{""loyalty"": ""8%""}",93358,1,North America +2024-07-12,98018,3348,"[""Headphones""]",4196.35,{},244426,0,Europe +2023-05-27,98019,1761,"[""Headphones"", ""Charger"", ""Laptop""]",3591.87,"{""seasonal"": ""23%""}",218991,1,North America +2023-12-04,98020,2847,"[""Monitor""]",662.79,"{""promo"": ""13%""}",293606,1,North America +2023-02-03,98021,5592,"[""Keyboard"", ""Monitor"", ""Tablet""]",1122.64,{},59575,0,South America +2024-11-15,98022,8897,"[""Laptop"", ""Tablet""]",1429.24,{},6275,0,Europe +2023-10-26,98023,9137,"[""Monitor"", ""Laptop""]",3408.49,"{"""": ""5%""}",161628,1,Africa +2024-06-27,98024,5194,"[""Phone"", ""Laptop""]",727.58,{},119808,0,Asia +2023-11-18,98025,3082,"[""Tablet"", ""Phone"", ""Laptop""]",568.5,"{""seasonal"": ""10%""}",296258,1,South America +2023-05-21,98026,2008,"[""Charger"", ""Wireless Mouse""]",4630.66,{},111890,1,South America +2024-07-20,98027,841,"[""Keyboard""]",2862.85,{},50504,1,North America +2024-02-06,98028,4196,"[""Monitor""]",1744.67,"{""seasonal"": ""11%""}",125977,0,Asia +2024-05-03,98029,7591,"[""Tablet"", ""Laptop""]",3471.5,"{""seasonal"": ""15%""}",12036,0,South America +2023-05-03,98030,6809,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",2857.41,{},170891,1,Europe +2024-02-13,98031,6541,"[""Phone""]",1283.01,"{"""": ""21%""}",81639,1,North America +2023-06-29,98032,1318,"[""Keyboard"", ""Monitor""]",4536.5,{},7729,0,North America +2023-05-09,98033,7114,"[""Laptop"", ""Monitor"", ""Headphones""]",4190.61,"{"""": ""19%""}",48051,1,North America +2024-07-24,98034,4516,"[""Wireless Mouse"", ""Monitor""]",4711.48,"{""loyalty"": ""6%""}",101893,0,Asia +2024-03-11,98035,7156,"[""Monitor""]",1579.96,{},279622,1,Asia +2023-11-03,98036,5636,"[""Wireless Mouse"", ""Headphones""]",3184.9,"{""promo"": ""16%""}",201753,1,North America +2023-01-01,98037,6961,"[""Wireless Mouse"", ""Keyboard""]",2110.61,{},183942,1,South America +2024-08-17,98038,2573,"[""Keyboard"", ""Monitor""]",2655.28,{},120057,0,North America +2023-01-07,98039,6124,"[""Tablet"", ""Phone"", ""Monitor""]",644.11,"{""seasonal"": ""23%""}",13868,0,North America +2023-04-09,98040,9159,"[""Monitor"", ""Headphones""]",1006.15,{},222568,0,North America +2024-05-26,98041,4052,"[""Charger""]",2190.51,"{""seasonal"": ""11%""}",73551,1,South America +2024-10-26,98042,1877,"[""Phone"", ""Tablet""]",1392.54,"{""promo"": ""15%""}",145284,1,South America +2024-10-11,98043,6731,"[""Wireless Mouse""]",4667.1,"{""promo"": ""25%""}",285670,0,Asia +2024-11-13,98044,220,"[""Phone"", ""Monitor"", ""Laptop""]",1914.0,{},129912,1,South America +2024-12-11,98045,5646,"[""Tablet"", ""Monitor""]",3305.39,"{""loyalty"": ""9%""}",236071,0,Europe +2023-11-22,98046,7405,"[""Phone"", ""Tablet"", ""Charger""]",80.4,"{""seasonal"": ""25%""}",266013,1,South America +2024-03-13,98047,7547,"[""Monitor"", ""Wireless Mouse""]",4043.24,"{""promo"": ""21%""}",140785,1,Europe +2024-04-16,98048,9243,"[""Monitor""]",3824.4,{},49198,1,North America +2024-04-01,98049,8292,"[""Charger"", ""Monitor"", ""Laptop""]",1145.31,"{""seasonal"": ""28%""}",198004,1,South America +2024-11-06,98050,8412,"[""Charger"", ""Headphones"", ""Monitor""]",299.96,{},258909,0,North America +2024-10-07,98051,8330,"[""Keyboard"", ""Laptop"", ""Tablet""]",2938.48,"{""seasonal"": ""23%""}",243695,1,North America +2024-02-04,98052,640,"[""Phone""]",1497.72,{},155077,0,South America +2023-04-24,98053,3442,"[""Tablet"", ""Laptop"", ""Headphones""]",3016.69,"{"""": ""12%""}",275935,0,Europe +2024-01-25,98054,6630,"[""Monitor""]",1496.77,{},194626,0,Europe +2023-05-10,98055,1393,"[""Monitor""]",1992.17,"{"""": ""24%""}",75804,1,South America +2024-06-26,98056,2573,"[""Keyboard""]",2252.04,"{"""": ""12%""}",267490,1,South America +2024-03-15,98057,9323,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",3341.32,"{""promo"": ""19%""}",37481,0,Asia +2024-12-16,98058,5615,"[""Tablet""]",2317.7,{},63151,0,Europe +2023-12-23,98059,1518,"[""Tablet""]",2323.66,"{"""": ""8%""}",101645,0,Europe +2023-04-21,98060,8360,"[""Phone"", ""Tablet"", ""Keyboard""]",3664.24,"{""seasonal"": ""19%""}",36285,1,South America +2024-06-13,98061,9866,"[""Laptop"", ""Phone""]",4158.32,"{"""": ""13%""}",28981,1,Africa +2023-06-13,98062,7986,"[""Wireless Mouse"", ""Laptop""]",2880.78,"{""loyalty"": ""14%""}",249599,1,South America +2023-03-07,98063,4954,"[""Wireless Mouse"", ""Tablet""]",4119.25,"{""seasonal"": ""12%""}",296303,0,Asia +2023-08-06,98064,6791,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",2483.0,{},196026,1,Africa +2023-07-16,98065,1923,"[""Keyboard""]",4688.97,{},246082,0,South America +2024-08-25,98066,29,"[""Monitor"", ""Wireless Mouse""]",2893.87,"{""loyalty"": ""30%""}",82177,0,Africa +2023-11-22,98067,3848,"[""Tablet"", ""Wireless Mouse""]",3749.06,{},12360,1,Africa +2023-06-16,98068,3852,"[""Keyboard"", ""Phone""]",4419.49,"{""seasonal"": ""9%""}",180168,0,South America +2023-08-27,98069,4459,"[""Tablet""]",923.66,"{""seasonal"": ""22%""}",165583,0,North America +2024-08-11,98070,1253,"[""Keyboard""]",4446.45,"{""promo"": ""10%""}",171646,0,Africa +2024-05-14,98071,3228,"[""Phone"", ""Charger"", ""Tablet""]",2307.57,{},239182,0,Africa +2024-07-22,98072,1712,"[""Laptop"", ""Tablet""]",1258.24,{},59373,1,Europe +2024-07-06,98073,9695,"[""Monitor""]",2242.27,"{""loyalty"": ""9%""}",58809,0,Europe +2023-06-07,98074,5119,"[""Charger"", ""Tablet"", ""Phone""]",2699.74,{},235180,1,Asia +2024-10-22,98075,3878,"[""Monitor""]",3595.99,{},80108,1,North America +2023-05-05,98076,3445,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",3430.49,{},167894,0,North America +2023-05-19,98077,4215,"[""Laptop"", ""Monitor""]",1942.2,{},171499,1,Asia +2023-06-18,98078,7605,"[""Laptop"", ""Charger"", ""Tablet""]",4056.87,"{"""": ""25%""}",197347,0,South America +2023-06-14,98079,8455,"[""Charger"", ""Tablet""]",368.23,{},145844,0,South America +2024-02-28,98080,4723,"[""Keyboard"", ""Tablet"", ""Phone""]",2757.26,"{""loyalty"": ""11%""}",34373,0,Europe +2024-10-24,98081,4538,"[""Keyboard""]",88.07,"{"""": ""28%""}",72845,1,South America +2023-12-12,98082,4897,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",4112.95,{},181305,1,Asia +2023-02-07,98083,2949,"[""Charger"", ""Phone"", ""Tablet""]",3697.46,{},289729,0,Asia +2023-07-10,98084,7729,"[""Wireless Mouse"", ""Phone"", ""Charger""]",2183.64,"{"""": ""16%""}",2688,1,Asia +2023-05-11,98085,392,"[""Wireless Mouse"", ""Charger""]",1743.07,{},8920,1,Africa +2024-09-19,98086,6547,"[""Laptop"", ""Headphones"", ""Keyboard""]",2047.0,"{""promo"": ""8%""}",37195,0,Africa +2023-06-03,98087,4631,"[""Laptop""]",4356.52,{},19202,0,Europe +2024-10-21,98088,3172,"[""Monitor"", ""Headphones"", ""Phone""]",2234.68,{},187803,1,Asia +2023-06-27,98089,6944,"[""Charger"", ""Monitor"", ""Wireless Mouse""]",1387.32,"{""promo"": ""12%""}",24020,0,Africa +2023-10-18,98090,4657,"[""Wireless Mouse"", ""Headphones""]",1481.21,{},194870,1,North America +2023-12-09,98091,7910,"[""Laptop""]",4908.29,{},186167,0,Europe +2024-07-16,98092,9113,"[""Wireless Mouse"", ""Laptop""]",252.75,"{"""": ""10%""}",205022,0,North America +2023-01-21,98093,8733,"[""Phone""]",2544.08,"{""seasonal"": ""13%""}",202273,0,South America +2024-08-31,98094,336,"[""Monitor"", ""Laptop"", ""Charger""]",147.57,{},217080,1,Europe +2024-01-03,98095,5773,"[""Wireless Mouse"", ""Charger"", ""Keyboard""]",3335.41,"{""promo"": ""8%""}",268043,1,North America +2024-05-18,98096,8294,"[""Tablet"", ""Monitor""]",4690.05,{},39669,1,South America +2024-08-14,98097,8149,"[""Monitor"", ""Phone""]",1132.76,"{""promo"": ""16%""}",82570,0,North America +2023-03-14,98098,7547,"[""Phone"", ""Headphones""]",4047.01,{},118907,1,Europe +2023-09-29,98099,50,"[""Tablet"", ""Laptop"", ""Headphones""]",459.0,"{"""": ""24%""}",188811,1,North America +2024-08-16,98100,5940,"[""Laptop""]",4012.59,"{"""": ""14%""}",163328,0,Europe +2023-02-18,98101,1856,"[""Laptop"", ""Monitor"", ""Wireless Mouse""]",137.32,"{"""": ""24%""}",92300,1,Asia +2024-06-19,98102,42,"[""Tablet""]",2668.15,{},205100,1,Africa +2023-03-17,98103,7520,"[""Keyboard"", ""Laptop""]",3633.83,{},199141,1,Asia +2023-04-01,98104,1549,"[""Tablet""]",451.13,"{""loyalty"": ""26%""}",263317,0,Africa +2023-03-02,98105,5178,"[""Monitor"", ""Tablet""]",1886.11,"{""promo"": ""9%""}",67212,0,South America +2024-09-25,98106,5139,"[""Headphones"", ""Charger""]",3318.69,{},292881,0,Africa +2024-07-11,98107,6229,"[""Charger""]",811.93,{},85485,0,South America +2024-03-02,98108,5067,"[""Laptop"", ""Keyboard""]",4725.39,"{""loyalty"": ""16%""}",81822,1,Asia +2023-07-09,98109,6054,"[""Charger"", ""Laptop"", ""Keyboard""]",670.38,"{""seasonal"": ""8%""}",204552,0,Asia +2023-07-19,98110,8021,"[""Monitor"", ""Charger"", ""Phone""]",3080.41,{},161087,1,Africa +2023-07-29,98111,533,"[""Tablet""]",4373.12,"{""loyalty"": ""15%""}",160940,1,Europe +2024-01-02,98112,2138,"[""Headphones""]",4176.59,"{""loyalty"": ""6%""}",210977,1,Asia +2023-12-19,98113,2149,"[""Monitor"", ""Keyboard""]",910.18,{},26096,0,Africa +2024-09-30,98114,6450,"[""Keyboard""]",3343.9,"{""seasonal"": ""26%""}",47666,1,Asia +2023-09-28,98115,1475,"[""Monitor""]",774.47,{},190441,0,North America +2024-11-21,98116,8931,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",3250.49,{},295881,1,Asia +2023-04-01,98117,77,"[""Tablet""]",1394.46,{},120910,0,South America +2023-08-17,98118,2403,"[""Keyboard"", ""Phone""]",1719.95,"{""promo"": ""14%""}",238819,0,South America +2023-01-18,98119,2143,"[""Tablet""]",2583.56,"{""promo"": ""12%""}",116101,0,Africa +2024-10-27,98120,137,"[""Phone"", ""Headphones"", ""Monitor""]",1159.78,{},140155,0,Africa +2023-02-27,98121,6049,"[""Laptop"", ""Monitor"", ""Charger""]",3835.82,{},51611,1,Europe +2023-06-18,98122,1171,"[""Monitor"", ""Headphones""]",2416.92,{},224740,1,Europe +2023-05-23,98123,8859,"[""Headphones""]",3884.99,{},114845,0,South America +2023-10-05,98124,1243,"[""Keyboard""]",313.67,"{"""": ""19%""}",94456,1,Africa +2024-07-08,98125,7767,"[""Laptop"", ""Wireless Mouse"", ""Charger""]",3719.58,{},114648,1,Africa +2024-03-24,98126,7293,"[""Phone""]",4368.59,{},263671,0,Asia +2024-04-29,98127,2542,"[""Charger"", ""Laptop"", ""Wireless Mouse""]",3714.85,"{"""": ""27%""}",29737,0,Europe +2024-09-12,98128,491,"[""Headphones"", ""Phone""]",725.66,"{""promo"": ""30%""}",235737,0,Africa +2024-08-09,98129,6427,"[""Wireless Mouse""]",169.87,"{""promo"": ""10%""}",73621,0,Africa +2024-01-10,98130,3366,"[""Headphones"", ""Wireless Mouse""]",4375.36,"{"""": ""25%""}",118057,0,Africa +2024-05-08,98131,5043,"[""Wireless Mouse"", ""Keyboard""]",4341.53,"{""seasonal"": ""6%""}",199375,0,Europe +2024-03-08,98132,8083,"[""Headphones"", ""Tablet""]",2060.6,"{""seasonal"": ""28%""}",5721,0,North America +2023-02-26,98133,2146,"[""Phone"", ""Charger"", ""Headphones""]",2608.86,"{""promo"": ""15%""}",104461,0,North America +2024-05-31,98134,2109,"[""Headphones""]",2637.41,"{""loyalty"": ""15%""}",139625,0,Asia +2024-09-15,98135,3827,"[""Headphones"", ""Keyboard"", ""Laptop""]",616.46,"{""seasonal"": ""6%""}",58976,0,Europe +2024-08-23,98136,7717,"[""Laptop"", ""Headphones""]",3542.23,"{"""": ""18%""}",11346,0,Europe +2023-03-06,98137,2422,"[""Keyboard""]",2455.63,"{""promo"": ""20%""}",154348,1,Africa +2024-11-06,98138,6769,"[""Tablet""]",4648.62,{},54936,1,Asia +2024-07-15,98139,5623,"[""Tablet""]",4239.32,{},72820,0,North America +2023-10-19,98140,1730,"[""Laptop"", ""Monitor"", ""Tablet""]",1259.83,"{"""": ""8%""}",77779,1,Asia +2024-10-06,98141,9956,"[""Phone""]",1565.03,{},168161,1,North America +2024-06-17,98142,4214,"[""Tablet""]",1937.53,"{""loyalty"": ""12%""}",238692,0,Africa +2024-04-07,98143,4081,"[""Laptop"", ""Tablet""]",2589.5,"{""loyalty"": ""22%""}",238015,1,Asia +2023-10-21,98144,3606,"[""Charger""]",180.46,"{""seasonal"": ""24%""}",285456,0,Europe +2023-03-11,98145,3548,"[""Phone"", ""Headphones"", ""Keyboard""]",3052.59,{},138509,1,North America +2024-07-17,98146,553,"[""Wireless Mouse"", ""Phone""]",3986.5,"{""seasonal"": ""26%""}",21969,0,Africa +2024-08-25,98147,7380,"[""Headphones"", ""Monitor""]",3116.24,"{""loyalty"": ""15%""}",151991,0,Asia +2023-09-09,98148,8091,"[""Headphones""]",1839.89,{},109454,1,Africa +2023-03-06,98149,6322,"[""Laptop"", ""Charger"", ""Tablet""]",2318.05,"{"""": ""5%""}",233514,0,Africa +2024-01-23,98150,9618,"[""Monitor"", ""Charger""]",4012.58,"{""seasonal"": ""24%""}",75163,0,Asia +2023-07-26,98151,4598,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",150.76,{},86316,0,Africa +2023-05-14,98152,4527,"[""Charger"", ""Laptop""]",2909.4,"{""promo"": ""30%""}",251900,0,South America +2024-02-09,98153,6001,"[""Monitor"", ""Phone"", ""Keyboard""]",2367.06,{},203735,0,Africa +2023-01-17,98154,7230,"[""Tablet""]",3968.19,"{""promo"": ""15%""}",21438,1,Europe +2024-07-18,98155,3904,"[""Headphones"", ""Laptop""]",2882.3,{},261799,1,North America +2023-03-19,98156,7565,"[""Monitor"", ""Tablet"", ""Keyboard""]",447.55,{},274969,1,South America +2024-03-21,98157,3662,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",461.69,"{""promo"": ""8%""}",31272,0,Europe +2023-01-07,98158,6018,"[""Wireless Mouse"", ""Laptop"", ""Keyboard""]",2619.59,"{""promo"": ""8%""}",252283,1,Asia +2023-05-23,98159,480,"[""Charger""]",4460.18,{},149325,0,South America +2023-02-26,98160,9325,"[""Tablet""]",4293.88,{},117544,1,Europe +2023-09-30,98161,2415,"[""Monitor"", ""Charger"", ""Laptop""]",4523.96,"{""loyalty"": ""21%""}",92197,0,North America +2024-11-04,98162,6970,"[""Laptop"", ""Wireless Mouse""]",4453.59,"{""promo"": ""24%""}",270314,1,South America +2024-03-11,98163,8503,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",1907.52,{},168216,1,Asia +2024-01-06,98164,2019,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",4397.43,"{""promo"": ""12%""}",248494,0,Africa +2023-12-02,98165,5271,"[""Keyboard"", ""Tablet""]",676.49,"{"""": ""26%""}",132973,1,Africa +2024-02-03,98166,5335,"[""Keyboard"", ""Tablet""]",1866.44,"{""seasonal"": ""13%""}",122045,1,Africa +2024-12-18,98167,9504,"[""Monitor""]",3806.86,"{"""": ""15%""}",91662,1,North America +2024-06-23,98168,7640,"[""Phone"", ""Keyboard"", ""Headphones""]",675.23,"{""promo"": ""10%""}",197490,1,Europe +2023-08-30,98169,1959,"[""Keyboard"", ""Charger"", ""Monitor""]",4525.76,"{"""": ""30%""}",27207,1,Africa +2023-09-24,98170,9572,"[""Keyboard""]",97.92,"{""seasonal"": ""7%""}",180477,0,Europe +2023-10-20,98171,4582,"[""Charger"", ""Laptop"", ""Keyboard""]",2895.87,"{""promo"": ""21%""}",48050,1,Europe +2023-10-12,98172,5480,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",3273.48,"{""seasonal"": ""24%""}",151652,0,Europe +2024-02-05,98173,9982,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",3480.74,{},191449,1,Africa +2023-10-25,98174,55,"[""Laptop""]",1663.85,"{""promo"": ""10%""}",3390,1,Europe +2023-08-05,98175,8081,"[""Monitor"", ""Charger""]",2937.61,{},227328,0,Asia +2023-09-22,98176,2054,"[""Tablet"", ""Headphones""]",1179.58,"{""seasonal"": ""11%""}",228283,1,Asia +2024-02-11,98177,5765,"[""Laptop"", ""Phone"", ""Charger""]",3582.11,{},138330,1,North America +2024-09-27,98178,5515,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",3131.39,{},78260,0,Asia +2023-04-11,98179,2492,"[""Monitor"", ""Keyboard""]",1391.8,{},44711,0,Asia +2024-11-09,98180,4535,"[""Laptop"", ""Tablet""]",2724.96,{},35043,0,North America +2024-04-19,98181,3238,"[""Wireless Mouse"", ""Monitor""]",1480.63,"{""seasonal"": ""16%""}",255383,0,Africa +2024-11-18,98182,5227,"[""Keyboard"", ""Tablet""]",3454.96,"{""seasonal"": ""19%""}",114991,1,Europe +2023-05-15,98183,2170,"[""Headphones""]",3775.27,{},6191,0,Africa +2024-07-03,98184,4023,"[""Wireless Mouse"", ""Charger""]",1005.76,{},276725,1,Africa +2024-09-07,98185,4459,"[""Charger"", ""Wireless Mouse"", ""Keyboard""]",525.47,{},128101,0,North America +2023-05-12,98186,6771,"[""Wireless Mouse"", ""Charger""]",2475.74,"{""seasonal"": ""19%""}",212021,0,Africa +2023-11-01,98187,9748,"[""Headphones"", ""Keyboard""]",1549.42,"{""promo"": ""27%""}",36441,1,North America +2023-10-08,98188,893,"[""Phone"", ""Charger""]",4722.52,"{""seasonal"": ""17%""}",165909,1,North America +2024-10-22,98189,5632,"[""Laptop""]",592.55,{},39720,1,Africa +2023-06-18,98190,3186,"[""Monitor"", ""Phone""]",4361.05,{},272726,0,Europe +2024-01-03,98191,5504,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2702.0,{},147209,0,Africa +2023-07-30,98192,6905,"[""Monitor"", ""Tablet""]",1632.44,"{""promo"": ""17%""}",47869,1,Africa +2024-06-16,98193,7071,"[""Keyboard"", ""Charger"", ""Tablet""]",2291.06,{},176590,0,North America +2023-04-17,98194,8159,"[""Keyboard""]",3119.71,"{""loyalty"": ""7%""}",7184,1,Europe +2023-11-16,98195,3926,"[""Keyboard""]",3549.17,{},252724,1,Asia +2023-03-27,98196,9113,"[""Laptop"", ""Keyboard"", ""Charger""]",2225.54,{},259074,1,Europe +2023-06-20,98197,9337,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2361.9,"{""promo"": ""22%""}",217693,1,South America +2024-01-09,98198,387,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1150.69,{},150078,0,North America +2023-05-27,98199,2947,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",3745.84,{},10123,0,South America +2024-12-05,98200,9862,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",4609.21,"{""loyalty"": ""25%""}",35349,0,South America +2023-02-27,98201,891,"[""Headphones"", ""Laptop"", ""Charger""]",4076.64,{},28054,0,Europe +2024-05-21,98202,3181,"[""Laptop""]",4540.21,{},127738,1,Europe +2023-06-28,98203,9696,"[""Laptop"", ""Monitor"", ""Phone""]",901.02,{},121214,1,South America +2024-10-30,98204,1278,"[""Monitor""]",3641.8,"{"""": ""25%""}",242149,0,South America +2024-06-07,98205,4060,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",2946.02,"{""promo"": ""30%""}",263570,0,Africa +2024-08-11,98206,5460,"[""Laptop"", ""Phone""]",3357.77,"{""loyalty"": ""27%""}",254710,1,North America +2023-09-01,98207,6863,"[""Tablet"", ""Wireless Mouse""]",1935.76,{},55876,1,Europe +2023-02-03,98208,599,"[""Charger"", ""Phone"", ""Headphones""]",2387.36,"{"""": ""12%""}",258969,0,Asia +2023-07-19,98209,922,"[""Monitor""]",1709.37,"{""promo"": ""23%""}",205888,1,South America +2024-10-16,98210,8460,"[""Phone"", ""Monitor""]",3799.83,"{""loyalty"": ""13%""}",200475,0,Africa +2024-06-09,98211,4883,"[""Laptop"", ""Tablet""]",4719.46,{},252493,1,South America +2024-10-27,98212,9327,"[""Tablet""]",3992.19,"{""promo"": ""5%""}",67612,0,Africa +2024-12-11,98213,8115,"[""Tablet""]",969.49,"{""seasonal"": ""12%""}",252827,1,Africa +2023-07-14,98214,6197,"[""Monitor"", ""Tablet""]",807.57,{},79009,0,Europe +2024-01-22,98215,9221,"[""Headphones"", ""Laptop""]",4046.58,"{""promo"": ""12%""}",124923,0,Africa +2024-04-14,98216,2357,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",4378.84,"{""loyalty"": ""21%""}",260168,0,North America +2023-02-16,98217,7840,"[""Wireless Mouse""]",2495.09,"{""promo"": ""11%""}",266225,1,Africa +2024-07-23,98218,1334,"[""Phone""]",900.53,"{""seasonal"": ""13%""}",145040,0,Asia +2024-01-09,98219,9406,"[""Charger"", ""Laptop"", ""Tablet""]",2621.54,{},160110,0,Asia +2024-01-10,98220,3577,"[""Monitor"", ""Laptop""]",2141.99,"{""loyalty"": ""20%""}",142353,0,North America +2023-03-13,98221,1966,"[""Tablet""]",437.74,{},97969,1,South America +2024-07-12,98222,8811,"[""Headphones"", ""Charger""]",1863.98,"{""loyalty"": ""13%""}",200744,1,Europe +2024-12-07,98223,9820,"[""Laptop""]",605.37,"{""loyalty"": ""30%""}",296816,0,Europe +2024-04-14,98224,8446,"[""Laptop""]",1142.8,"{""promo"": ""5%""}",201284,1,South America +2024-02-04,98225,5686,"[""Laptop"", ""Charger""]",2795.4,"{""promo"": ""18%""}",233971,1,Asia +2023-03-10,98226,7193,"[""Wireless Mouse""]",4306.49,"{"""": ""26%""}",60461,0,South America +2024-08-03,98227,2202,"[""Keyboard""]",2738.91,{},91231,0,Europe +2023-04-26,98228,3630,"[""Wireless Mouse""]",1144.33,{},16352,1,North America +2024-06-12,98229,2715,"[""Keyboard""]",469.89,{},35123,0,South America +2023-03-16,98230,2748,"[""Charger"", ""Wireless Mouse""]",3826.6,"{"""": ""17%""}",293068,0,Europe +2023-03-29,98231,8624,"[""Headphones"", ""Wireless Mouse""]",1648.39,{},133091,0,Africa +2024-08-28,98232,3846,"[""Headphones""]",3159.56,{},39248,0,South America +2024-01-02,98233,7256,"[""Keyboard"", ""Wireless Mouse"", ""Charger""]",3408.85,"{""loyalty"": ""22%""}",165607,0,Africa +2023-05-12,98234,6120,"[""Phone""]",4120.43,"{""loyalty"": ""28%""}",293551,1,South America +2024-10-02,98235,9562,"[""Phone""]",3296.87,{},118461,0,North America +2023-01-03,98236,7152,"[""Phone"", ""Headphones""]",4610.95,"{""promo"": ""6%""}",125347,1,Africa +2023-08-27,98237,9980,"[""Phone"", ""Headphones""]",2098.25,"{""loyalty"": ""18%""}",212737,0,Africa +2023-08-21,98238,4806,"[""Monitor"", ""Laptop""]",97.3,"{""promo"": ""7%""}",20130,1,North America +2024-04-08,98239,9177,"[""Charger"", ""Keyboard"", ""Phone""]",540.2,"{""loyalty"": ""15%""}",106541,1,Asia +2024-06-15,98240,7935,"[""Keyboard"", ""Charger"", ""Laptop""]",3617.2,{},83286,1,South America +2024-10-22,98241,6485,"[""Wireless Mouse""]",3555.49,"{"""": ""7%""}",69918,1,Europe +2024-05-16,98242,7866,"[""Headphones"", ""Tablet"", ""Phone""]",1572.74,"{""loyalty"": ""21%""}",93971,1,Africa +2023-01-22,98243,837,"[""Wireless Mouse"", ""Headphones""]",3778.64,{},248795,0,Asia +2024-12-20,98244,656,"[""Headphones"", ""Laptop""]",3342.72,{},148708,0,South America +2023-11-03,98245,4075,"[""Laptop"", ""Monitor"", ""Phone""]",4755.52,"{""seasonal"": ""7%""}",147475,0,Africa +2023-02-02,98246,2801,"[""Laptop"", ""Wireless Mouse""]",4334.6,{},35723,1,North America +2024-04-15,98247,1069,"[""Phone"", ""Wireless Mouse""]",603.18,{},187652,1,South America +2023-08-20,98248,938,"[""Laptop""]",1681.02,{},21713,1,North America +2024-03-04,98249,9170,"[""Keyboard""]",4574.77,{},70339,1,Africa +2024-06-28,98250,729,"[""Phone"", ""Laptop"", ""Headphones""]",2379.06,{},25632,0,Africa +2023-08-09,98251,1915,"[""Tablet""]",3763.79,{},201789,0,Europe +2023-04-13,98252,2871,"[""Phone"", ""Charger""]",358.07,{},203530,1,Europe +2024-10-11,98253,4520,"[""Laptop"", ""Phone"", ""Keyboard""]",608.88,{},70860,0,Africa +2024-12-26,98254,9334,"[""Headphones"", ""Monitor""]",1687.59,"{""promo"": ""18%""}",9449,0,Asia +2024-03-27,98255,6873,"[""Monitor""]",4170.43,"{"""": ""28%""}",188290,1,Asia +2023-03-22,98256,9331,"[""Tablet"", ""Phone"", ""Charger""]",1680.09,{},296003,0,Asia +2024-01-09,98257,8319,"[""Laptop"", ""Headphones""]",771.29,"{""loyalty"": ""23%""}",117275,0,North America +2023-09-15,98258,6289,"[""Headphones""]",1190.71,{},102606,0,Europe +2024-11-24,98259,7558,"[""Tablet""]",748.39,"{""loyalty"": ""16%""}",114967,1,Asia +2023-09-12,98260,3890,"[""Wireless Mouse"", ""Tablet""]",4424.42,{},28044,1,North America +2024-11-04,98261,6341,"[""Laptop"", ""Keyboard""]",312.91,"{""promo"": ""16%""}",106174,1,Asia +2023-02-12,98262,5020,"[""Headphones"", ""Phone""]",3824.78,"{""loyalty"": ""27%""}",63207,1,Asia +2024-01-01,98263,7164,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",1440.99,{},136128,0,Asia +2023-07-19,98264,5023,"[""Keyboard"", ""Wireless Mouse""]",289.89,{},104154,0,South America +2024-10-30,98265,4757,"[""Monitor"", ""Keyboard"", ""Tablet""]",4312.75,{},76266,0,North America +2023-07-06,98266,7542,"[""Headphones"", ""Wireless Mouse""]",415.81,"{""promo"": ""29%""}",153211,1,Asia +2024-10-14,98267,2303,"[""Keyboard"", ""Laptop"", ""Tablet""]",4151.04,"{""loyalty"": ""14%""}",71063,1,Africa +2024-05-07,98268,2113,"[""Laptop"", ""Tablet"", ""Phone""]",915.16,{},106858,1,Asia +2023-03-31,98269,4049,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",3987.55,"{""promo"": ""30%""}",255165,1,North America +2023-10-11,98270,2921,"[""Tablet""]",2506.17,"{""seasonal"": ""30%""}",203241,1,Africa +2024-07-02,98271,8065,"[""Tablet""]",2817.45,"{"""": ""6%""}",209653,0,Asia +2023-11-01,98272,6235,"[""Phone"", ""Keyboard""]",3398.66,{},19682,0,Africa +2024-06-14,98273,9846,"[""Tablet""]",3031.46,"{"""": ""27%""}",209599,0,Africa +2024-12-15,98274,7410,"[""Phone"", ""Charger"", ""Tablet""]",3211.13,"{""seasonal"": ""12%""}",172993,1,Asia +2024-06-02,98275,8354,"[""Phone""]",2401.53,{},193310,1,North America +2023-09-25,98276,8973,"[""Headphones""]",4079.96,"{""promo"": ""14%""}",82879,1,Asia +2023-08-14,98277,1545,"[""Tablet""]",4146.94,"{"""": ""16%""}",236063,1,Europe +2024-09-26,98278,9924,"[""Wireless Mouse""]",676.4,{},184974,1,South America +2023-02-16,98279,8691,"[""Charger"", ""Keyboard"", ""Tablet""]",3017.6,{},253255,0,Europe +2023-07-11,98280,3495,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",1242.03,"{""promo"": ""11%""}",214407,1,South America +2023-06-24,98281,6228,"[""Monitor"", ""Charger"", ""Phone""]",2688.04,"{""seasonal"": ""6%""}",97507,1,South America +2024-09-04,98282,4565,"[""Monitor""]",2726.92,{},184150,0,South America +2023-11-23,98283,145,"[""Laptop"", ""Phone"", ""Charger""]",3789.49,"{"""": ""11%""}",57335,0,Asia +2023-01-20,98284,9274,"[""Laptop"", ""Charger"", ""Tablet""]",4606.72,"{""promo"": ""10%""}",98178,1,Europe +2024-06-11,98285,8427,"[""Laptop""]",918.72,{},253473,0,Asia +2024-04-11,98286,3299,"[""Wireless Mouse""]",4251.37,{},5656,1,South America +2024-10-12,98287,6374,"[""Keyboard"", ""Laptop"", ""Charger""]",3628.8,"{"""": ""7%""}",297874,0,Europe +2024-11-24,98288,5246,"[""Wireless Mouse"", ""Headphones"", ""Charger""]",277.91,{},140776,0,Africa +2023-04-19,98289,140,"[""Monitor""]",2924.7,"{"""": ""20%""}",265651,0,Asia +2024-09-03,98290,8723,"[""Keyboard""]",2879.51,"{""seasonal"": ""29%""}",256298,0,Asia +2024-01-25,98291,4602,"[""Charger"", ""Tablet"", ""Keyboard""]",2615.92,"{""seasonal"": ""28%""}",76505,1,Asia +2024-07-24,98292,4433,"[""Keyboard""]",3684.07,{},254830,0,Asia +2023-02-10,98293,5298,"[""Phone"", ""Headphones""]",3158.42,{},111833,1,North America +2024-09-21,98294,4676,"[""Wireless Mouse""]",322.81,"{""loyalty"": ""11%""}",273821,0,Asia +2024-07-31,98295,6942,"[""Laptop"", ""Headphones""]",2067.11,{},236675,1,South America +2023-06-14,98296,9251,"[""Wireless Mouse"", ""Headphones""]",2939.4,{},288880,0,North America +2023-04-23,98297,5648,"[""Laptop"", ""Wireless Mouse""]",2112.46,"{""loyalty"": ""17%""}",238746,1,South America +2024-11-01,98298,5259,"[""Keyboard""]",2721.62,"{""loyalty"": ""13%""}",44759,0,Asia +2023-09-02,98299,8292,"[""Tablet"", ""Keyboard""]",938.22,"{"""": ""30%""}",218435,1,Africa +2023-09-16,98300,7239,"[""Tablet"", ""Phone""]",4093.68,"{""seasonal"": ""30%""}",210511,1,North America +2024-06-06,98301,6638,"[""Tablet"", ""Monitor""]",3885.04,"{""promo"": ""7%""}",74112,1,Africa +2023-04-20,98302,5120,"[""Tablet"", ""Phone"", ""Charger""]",302.01,"{""loyalty"": ""9%""}",170905,0,South America +2023-10-06,98303,5423,"[""Tablet"", ""Monitor"", ""Laptop""]",3062.82,{},185973,1,North America +2023-12-12,98304,5624,"[""Laptop"", ""Keyboard"", ""Tablet""]",3480.61,"{"""": ""29%""}",217375,0,North America +2024-08-27,98305,2694,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",2231.53,"{""promo"": ""15%""}",197861,0,Asia +2024-12-22,98306,4445,"[""Charger""]",301.45,{},102453,0,Europe +2024-01-07,98307,4312,"[""Wireless Mouse""]",3279.48,{},189549,1,South America +2024-08-06,98308,4586,"[""Headphones"", ""Tablet"", ""Laptop""]",1903.74,"{""seasonal"": ""11%""}",248034,1,North America +2024-12-27,98309,4561,"[""Keyboard"", ""Charger"", ""Tablet""]",1679.52,{},170695,0,North America +2023-03-18,98310,3382,"[""Laptop""]",4746.09,"{""promo"": ""21%""}",166144,0,Asia +2023-10-23,98311,4278,"[""Wireless Mouse"", ""Keyboard""]",1276.4,"{""seasonal"": ""27%""}",209114,0,Europe +2024-12-29,98312,7251,"[""Headphones"", ""Laptop""]",2559.55,{},292484,1,Europe +2023-10-01,98313,7382,"[""Laptop"", ""Wireless Mouse"", ""Headphones""]",3965.39,"{"""": ""7%""}",84284,1,North America +2023-09-02,98314,6821,"[""Phone"", ""Monitor""]",2224.32,"{"""": ""5%""}",155465,0,North America +2024-06-19,98315,1909,"[""Wireless Mouse""]",4988.4,"{""promo"": ""27%""}",243132,0,South America +2024-07-01,98316,2291,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",1065.42,{},114184,1,South America +2023-07-22,98317,5482,"[""Phone""]",3839.93,{},134421,0,Asia +2023-07-18,98318,1719,"[""Keyboard"", ""Headphones""]",3906.58,"{"""": ""23%""}",121216,1,North America +2024-05-22,98319,2130,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",2344.13,{},183837,1,North America +2023-01-17,98320,9462,"[""Keyboard"", ""Laptop""]",3397.02,"{"""": ""28%""}",238720,0,Asia +2024-06-30,98321,9482,"[""Keyboard"", ""Monitor""]",3597.2,{},131800,0,Asia +2023-10-21,98322,3367,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",1596.65,"{""seasonal"": ""10%""}",197724,1,North America +2023-03-13,98323,9037,"[""Laptop"", ""Phone""]",4873.79,"{""promo"": ""19%""}",269706,1,Africa +2023-05-25,98324,9001,"[""Tablet""]",3071.34,"{""promo"": ""20%""}",166008,1,North America +2023-12-06,98325,9986,"[""Monitor""]",4441.55,{},23653,1,North America +2024-10-08,98326,6686,"[""Keyboard""]",1068.35,{},128212,1,Europe +2024-04-08,98327,5075,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",671.93,{},257419,1,Asia +2024-09-17,98328,5456,"[""Tablet"", ""Wireless Mouse"", ""Phone""]",1935.56,"{""loyalty"": ""8%""}",203539,1,Asia +2023-03-27,98329,1908,"[""Headphones""]",4484.41,{},104171,1,Africa +2024-05-14,98330,8054,"[""Monitor""]",259.8,{},241579,1,South America +2024-03-09,98331,119,"[""Headphones""]",3648.23,{},83232,1,South America +2023-12-18,98332,9508,"[""Charger"", ""Monitor""]",1799.65,{},15577,0,North America +2023-05-04,98333,5943,"[""Phone""]",4437.23,"{""loyalty"": ""22%""}",253634,1,Africa +2023-06-02,98334,7368,"[""Charger"", ""Phone""]",616.77,"{""loyalty"": ""25%""}",129636,0,North America +2023-09-27,98335,825,"[""Phone""]",2786.64,"{"""": ""20%""}",210319,1,Asia +2024-02-29,98336,7697,"[""Phone"", ""Headphones""]",1581.47,"{""seasonal"": ""23%""}",251066,1,Africa +2024-07-30,98337,7685,"[""Laptop""]",3022.04,"{""promo"": ""12%""}",49578,0,North America +2023-10-14,98338,5648,"[""Laptop"", ""Monitor""]",2830.94,{},26829,0,Europe +2024-01-21,98339,744,"[""Laptop"", ""Tablet"", ""Charger""]",4994.13,{},5298,1,Africa +2023-10-01,98340,3805,"[""Monitor""]",1955.99,{},63784,0,Africa +2023-10-27,98341,6661,"[""Tablet""]",2198.88,{},188586,0,Africa +2023-11-19,98342,3657,"[""Keyboard"", ""Phone""]",53.26,"{"""": ""6%""}",147569,1,South America +2023-05-24,98343,1245,"[""Monitor"", ""Keyboard""]",4219.68,{},299234,1,South America +2024-08-31,98344,2994,"[""Monitor"", ""Phone""]",424.76,"{""loyalty"": ""17%""}",194660,0,Africa +2023-06-09,98345,1027,"[""Laptop""]",488.38,{},34789,1,Asia +2024-07-25,98346,8602,"[""Laptop"", ""Tablet"", ""Keyboard""]",3133.04,{},191481,1,Africa +2024-07-23,98347,9962,"[""Headphones""]",2983.22,"{""loyalty"": ""27%""}",238544,0,Europe +2023-11-14,98348,724,"[""Tablet"", ""Monitor""]",3918.06,{},79298,0,Europe +2024-07-11,98349,2592,"[""Monitor""]",4169.88,"{""loyalty"": ""25%""}",244597,1,North America +2023-06-11,98350,4904,"[""Keyboard""]",2865.48,"{"""": ""18%""}",74152,1,Asia +2024-06-05,98351,8521,"[""Keyboard"", ""Phone"", ""Headphones""]",4969.13,{},159977,1,Europe +2023-01-16,98352,5189,"[""Headphones""]",2263.99,"{"""": ""30%""}",261090,1,Asia +2024-08-15,98353,8886,"[""Charger"", ""Tablet"", ""Keyboard""]",3570.38,"{""promo"": ""12%""}",102341,1,North America +2023-04-10,98354,4539,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",4501.44,{},38187,1,Europe +2023-10-07,98355,406,"[""Charger"", ""Headphones"", ""Tablet""]",3561.79,"{""promo"": ""5%""}",294023,0,South America +2024-07-24,98356,8609,"[""Keyboard"", ""Charger""]",3454.75,{},26810,1,North America +2024-09-26,98357,2600,"[""Headphones"", ""Keyboard"", ""Tablet""]",662.78,"{"""": ""10%""}",130801,1,Europe +2024-09-28,98358,3333,"[""Wireless Mouse"", ""Phone""]",805.84,"{"""": ""10%""}",198806,1,South America +2023-09-09,98359,1148,"[""Monitor""]",3349.53,"{""promo"": ""18%""}",248102,1,Europe +2023-12-23,98360,6365,"[""Keyboard"", ""Laptop"", ""Phone""]",2288.76,"{""loyalty"": ""11%""}",231733,0,North America +2023-05-05,98361,9977,"[""Wireless Mouse"", ""Headphones""]",2129.97,"{""seasonal"": ""13%""}",110675,0,North America +2024-08-01,98362,9597,"[""Headphones"", ""Tablet""]",929.1,"{""loyalty"": ""8%""}",249478,1,South America +2024-08-19,98363,8281,"[""Phone""]",4687.08,"{""loyalty"": ""12%""}",209360,0,Europe +2023-10-23,98364,4024,"[""Keyboard"", ""Monitor"", ""Charger""]",3315.28,"{""seasonal"": ""27%""}",88073,1,North America +2023-06-09,98365,9623,"[""Phone""]",4740.15,{},109945,0,Asia +2024-04-17,98366,457,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4539.36,{},11401,1,Asia +2023-06-28,98367,6856,"[""Wireless Mouse"", ""Phone""]",1374.9,"{"""": ""27%""}",116149,0,South America +2023-05-05,98368,292,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2480.1,{},12608,1,South America +2023-11-19,98369,4314,"[""Wireless Mouse"", ""Phone""]",3796.86,"{""seasonal"": ""11%""}",1036,0,North America +2024-04-17,98370,4742,"[""Monitor"", ""Charger"", ""Keyboard""]",4662.87,{},59628,1,Europe +2023-09-07,98371,7736,"[""Monitor"", ""Tablet"", ""Headphones""]",572.19,"{""promo"": ""30%""}",1915,1,South America +2024-02-07,98372,1083,"[""Wireless Mouse"", ""Laptop""]",2151.06,{},108743,1,South America +2023-12-26,98373,8331,"[""Headphones"", ""Phone"", ""Keyboard""]",3499.94,"{"""": ""11%""}",16219,1,Asia +2023-03-17,98374,2535,"[""Tablet"", ""Wireless Mouse""]",151.21,{},146957,0,South America +2023-06-08,98375,3105,"[""Tablet""]",2038.14,{},231008,1,South America +2023-10-30,98376,5747,"[""Laptop"", ""Wireless Mouse""]",2026.34,{},154389,1,North America +2023-05-14,98377,7626,"[""Wireless Mouse"", ""Monitor""]",360.43,{},69695,1,Asia +2023-11-05,98378,5241,"[""Keyboard"", ""Monitor""]",3744.52,{},227871,1,South America +2023-10-01,98379,3581,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2486.44,"{""promo"": ""23%""}",20447,0,Asia +2024-07-23,98380,7923,"[""Charger""]",3247.18,{},281892,1,Asia +2024-09-11,98381,2147,"[""Headphones""]",4376.6,"{"""": ""21%""}",105784,0,South America +2024-08-04,98382,742,"[""Wireless Mouse"", ""Monitor""]",2133.35,"{""promo"": ""9%""}",19620,1,Asia +2023-04-08,98383,4415,"[""Laptop"", ""Phone""]",4912.62,"{""loyalty"": ""27%""}",196966,0,Asia +2023-08-13,98384,7888,"[""Monitor""]",4698.85,{},79392,1,Europe +2024-02-11,98385,7444,"[""Wireless Mouse""]",4673.87,"{""promo"": ""26%""}",80259,1,North America +2024-03-12,98386,7868,"[""Headphones"", ""Keyboard""]",954.86,"{"""": ""18%""}",242024,1,South America +2024-07-20,98387,7182,"[""Keyboard""]",4217.53,"{"""": ""9%""}",17430,1,Africa +2024-02-20,98388,3784,"[""Monitor"", ""Tablet"", ""Laptop""]",1818.7,{},91912,1,Europe +2024-01-21,98389,9047,"[""Headphones"", ""Laptop"", ""Phone""]",3005.81,{},132499,1,Europe +2024-07-19,98390,1239,"[""Tablet"", ""Phone""]",4967.85,"{"""": ""10%""}",126973,0,Asia +2024-11-23,98391,9413,"[""Headphones""]",3494.86,"{""loyalty"": ""6%""}",66184,0,South America +2024-02-27,98392,8535,"[""Laptop""]",4546.22,"{"""": ""25%""}",141362,1,North America +2023-10-22,98393,451,"[""Headphones"", ""Wireless Mouse""]",4741.33,{},21700,0,North America +2023-06-24,98394,213,"[""Wireless Mouse""]",1577.99,"{""loyalty"": ""29%""}",209687,0,North America +2024-09-16,98395,1616,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",663.97,{},126614,0,North America +2023-03-18,98396,6112,"[""Headphones""]",455.29,"{""seasonal"": ""7%""}",250479,1,Asia +2023-12-13,98397,8081,"[""Charger"", ""Monitor""]",1399.54,"{""loyalty"": ""14%""}",92458,0,Europe +2023-08-02,98398,920,"[""Keyboard"", ""Charger"", ""Tablet""]",962.93,"{"""": ""7%""}",130317,0,Africa +2024-11-10,98399,4900,"[""Keyboard""]",1553.64,"{""loyalty"": ""7%""}",60760,1,Asia +2023-07-01,98400,433,"[""Laptop""]",1979.99,"{""loyalty"": ""23%""}",109082,1,Asia +2023-11-04,98401,4101,"[""Monitor"", ""Keyboard"", ""Tablet""]",4275.9,"{""seasonal"": ""26%""}",120365,0,Asia +2024-02-10,98402,3518,"[""Keyboard""]",4314.46,{},147111,0,Africa +2024-06-09,98403,7246,"[""Charger"", ""Monitor"", ""Tablet""]",503.9,{},205570,1,North America +2023-07-23,98404,6591,"[""Phone"", ""Monitor"", ""Keyboard""]",2195.01,{},52299,1,Asia +2024-07-03,98405,1561,"[""Laptop"", ""Phone"", ""Headphones""]",4425.78,"{"""": ""23%""}",117692,0,Africa +2024-05-25,98406,2145,"[""Phone"", ""Tablet"", ""Keyboard""]",1249.99,"{""seasonal"": ""9%""}",253886,0,South America +2024-09-16,98407,8153,"[""Laptop"", ""Monitor""]",4923.54,"{""seasonal"": ""6%""}",242762,0,South America +2023-10-24,98408,6690,"[""Tablet"", ""Monitor""]",335.03,{},67435,0,North America +2023-03-21,98409,4160,"[""Monitor""]",2143.43,{},105070,1,North America +2023-01-01,98410,9876,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",4017.14,"{"""": ""29%""}",272549,1,Africa +2024-03-01,98411,8367,"[""Headphones""]",896.99,"{"""": ""27%""}",96205,0,North America +2023-06-06,98412,4164,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4637.33,{},24865,1,South America +2024-08-25,98413,8601,"[""Phone""]",433.32,{},57245,0,Europe +2023-05-01,98414,9157,"[""Tablet""]",394.31,"{""promo"": ""21%""}",110511,0,North America +2023-10-03,98415,9579,"[""Keyboard"", ""Headphones"", ""Wireless Mouse""]",4989.97,{},52446,0,North America +2023-04-28,98416,9402,"[""Laptop"", ""Phone""]",3659.15,"{""promo"": ""6%""}",221111,1,Asia +2024-04-02,98417,3383,"[""Monitor"", ""Phone""]",3157.98,{},54732,1,Africa +2024-08-11,98418,9196,"[""Tablet""]",2762.35,"{""loyalty"": ""20%""}",39262,1,Asia +2024-06-30,98419,7771,"[""Laptop"", ""Tablet"", ""Headphones""]",2301.47,"{""seasonal"": ""15%""}",124511,1,Africa +2023-05-30,98420,5849,"[""Monitor"", ""Tablet""]",617.8,{},111462,0,Europe +2023-10-07,98421,4366,"[""Laptop""]",4412.22,{},219097,1,North America +2023-07-19,98422,1867,"[""Laptop"", ""Headphones""]",1409.18,"{""loyalty"": ""8%""}",221555,0,Asia +2024-03-12,98423,3204,"[""Tablet"", ""Wireless Mouse""]",4138.92,{},235478,1,North America +2024-06-27,98424,8602,"[""Wireless Mouse""]",1215.53,{},169968,0,Asia +2024-10-15,98425,3402,"[""Tablet"", ""Keyboard""]",3969.8,"{"""": ""24%""}",88660,0,North America +2024-07-21,98426,4496,"[""Keyboard"", ""Wireless Mouse""]",342.87,{},204441,1,Asia +2023-10-19,98427,884,"[""Tablet""]",2181.43,"{""seasonal"": ""8%""}",273236,0,Europe +2024-10-05,98428,101,"[""Headphones"", ""Keyboard"", ""Phone""]",2503.95,"{""loyalty"": ""15%""}",79318,1,Africa +2023-12-16,98429,8033,"[""Charger""]",3014.06,{},183032,0,Africa +2024-07-07,98430,9014,"[""Headphones"", ""Keyboard""]",3985.23,{},203604,0,Africa +2024-04-20,98431,8715,"[""Keyboard"", ""Phone""]",2225.34,"{""seasonal"": ""7%""}",214428,1,Asia +2024-04-25,98432,2253,"[""Headphones""]",2239.39,{},91590,0,Asia +2023-04-25,98433,3610,"[""Monitor""]",2829.84,{},149680,0,South America +2024-07-04,98434,290,"[""Wireless Mouse"", ""Laptop"", ""Charger""]",4665.37,{},293272,0,South America +2024-10-19,98435,1917,"[""Monitor"", ""Phone""]",162.15,"{"""": ""25%""}",138346,0,Asia +2023-05-25,98436,1680,"[""Tablet"", ""Charger""]",2470.92,{},172852,0,Asia +2024-05-15,98437,8788,"[""Charger""]",3260.88,{},42659,1,Asia +2023-12-31,98438,1930,"[""Wireless Mouse""]",681.48,{},113070,0,South America +2024-09-14,98439,8229,"[""Laptop"", ""Phone""]",2025.74,"{""promo"": ""6%""}",149353,1,Africa +2024-02-11,98440,7368,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3185.78,{},278393,0,Asia +2024-07-19,98441,2639,"[""Headphones"", ""Charger""]",1640.81,"{"""": ""23%""}",63786,1,South America +2024-01-09,98442,1921,"[""Laptop""]",751.3,"{""seasonal"": ""24%""}",175274,0,North America +2024-07-17,98443,6631,"[""Monitor"", ""Phone""]",4828.13,{},210032,0,Asia +2024-02-02,98444,2553,"[""Keyboard"", ""Charger"", ""Monitor""]",1630.95,"{""loyalty"": ""16%""}",148663,1,Africa +2023-11-28,98445,4747,"[""Laptop""]",4874.98,"{"""": ""15%""}",200844,1,South America +2024-07-04,98446,2842,"[""Wireless Mouse"", ""Keyboard""]",2971.27,{},48911,1,Africa +2024-06-17,98447,2478,"[""Laptop"", ""Charger""]",4657.02,"{"""": ""8%""}",211440,0,South America +2024-11-21,98448,7828,"[""Charger""]",3555.27,{},142372,0,South America +2023-08-09,98449,4660,"[""Wireless Mouse""]",2511.27,"{""seasonal"": ""29%""}",37223,0,Europe +2024-05-10,98450,2195,"[""Phone"", ""Tablet""]",4369.4,{},114003,1,South America +2024-03-15,98451,1533,"[""Charger"", ""Tablet""]",2983.65,{},59556,1,Asia +2024-12-13,98452,4288,"[""Charger""]",496.52,"{""loyalty"": ""16%""}",178747,0,South America +2024-11-19,98453,2949,"[""Monitor"", ""Headphones""]",2832.81,"{""loyalty"": ""22%""}",175416,0,South America +2023-05-23,98454,3968,"[""Wireless Mouse""]",2452.62,"{""promo"": ""23%""}",266221,0,Europe +2023-07-19,98455,9292,"[""Wireless Mouse"", ""Charger""]",2609.09,{},192527,0,Africa +2023-09-28,98456,2435,"[""Laptop"", ""Tablet""]",2980.31,"{""loyalty"": ""26%""}",195641,0,Africa +2023-05-27,98457,5520,"[""Wireless Mouse""]",3172.98,{},277330,0,North America +2024-09-02,98458,5967,"[""Keyboard"", ""Monitor""]",3307.59,"{""loyalty"": ""14%""}",64749,0,South America +2024-02-20,98459,3220,"[""Headphones"", ""Charger"", ""Phone""]",4467.18,"{""promo"": ""30%""}",246546,0,Asia +2023-06-16,98460,9984,"[""Charger"", ""Phone""]",4237.36,{},251710,0,South America +2023-01-28,98461,8362,"[""Phone""]",3094.29,"{""seasonal"": ""12%""}",163652,0,Europe +2024-09-25,98462,9385,"[""Keyboard""]",2312.66,"{""promo"": ""24%""}",198214,1,Europe +2024-03-27,98463,8665,"[""Tablet""]",1960.74,{},100884,0,Asia +2024-02-24,98464,5236,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",3931.41,{},231631,1,North America +2023-09-23,98465,2693,"[""Laptop"", ""Phone""]",4949.0,"{""loyalty"": ""30%""}",24524,0,North America +2023-01-29,98466,602,"[""Monitor"", ""Headphones"", ""Tablet""]",650.04,{},155567,1,South America +2024-10-09,98467,6720,"[""Phone"", ""Tablet"", ""Keyboard""]",659.33,{},102282,0,South America +2023-05-07,98468,3497,"[""Keyboard""]",4216.21,"{""seasonal"": ""10%""}",161818,0,North America +2023-11-27,98469,6257,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3501.4,"{""seasonal"": ""14%""}",240443,1,North America +2024-04-02,98470,947,"[""Laptop""]",679.54,"{""seasonal"": ""13%""}",224924,0,Asia +2023-02-24,98471,3653,"[""Headphones""]",4562.2,{},252812,1,Africa +2024-02-20,98472,5066,"[""Headphones""]",4409.46,"{""loyalty"": ""25%""}",118165,0,Africa +2023-12-10,98473,7126,"[""Laptop"", ""Headphones""]",1582.93,{},206185,1,Asia +2024-11-01,98474,4067,"[""Headphones"", ""Wireless Mouse""]",1303.5,"{"""": ""20%""}",150626,0,Europe +2023-02-16,98475,726,"[""Tablet"", ""Laptop"", ""Phone""]",3936.74,{},105528,1,Asia +2023-08-24,98476,4781,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",2651.32,{},119539,1,South America +2023-02-07,98477,5456,"[""Keyboard"", ""Laptop"", ""Tablet""]",2419.41,{},146685,1,Europe +2024-08-24,98478,2010,"[""Charger""]",4643.43,{},292160,0,Europe +2023-11-13,98479,121,"[""Keyboard"", ""Charger""]",4418.99,"{"""": ""14%""}",131196,0,Europe +2023-12-04,98480,5500,"[""Laptop"", ""Wireless Mouse""]",254.52,"{""loyalty"": ""26%""}",220176,1,Africa +2024-03-27,98481,4517,"[""Tablet"", ""Monitor"", ""Charger""]",3125.6,{},153283,1,South America +2024-09-01,98482,4840,"[""Keyboard"", ""Headphones"", ""Laptop""]",1675.7,"{""loyalty"": ""21%""}",39870,0,North America +2023-05-21,98483,3785,"[""Charger"", ""Wireless Mouse""]",4728.75,"{"""": ""26%""}",185988,1,North America +2023-05-10,98484,436,"[""Keyboard"", ""Monitor""]",2648.44,{},251431,1,Europe +2024-03-08,98485,1209,"[""Phone"", ""Laptop""]",2556.29,{},290984,0,South America +2023-02-16,98486,8889,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4742.24,"{"""": ""25%""}",250182,1,South America +2023-08-16,98487,2781,"[""Phone"", ""Charger"", ""Keyboard""]",627.71,{},174343,0,Europe +2024-12-03,98488,1247,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",1894.89,{},168468,1,North America +2023-01-12,98489,2226,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",83.06,{},165448,0,North America +2023-02-04,98490,3576,"[""Phone""]",977.01,"{""loyalty"": ""28%""}",168746,0,Asia +2023-11-01,98491,319,"[""Laptop"", ""Tablet""]",327.0,{},118549,0,Africa +2024-02-13,98492,692,"[""Charger"", ""Phone"", ""Keyboard""]",4231.68,{},234445,0,South America +2023-12-18,98493,2913,"[""Keyboard""]",4442.23,"{""seasonal"": ""7%""}",17848,0,South America +2024-10-01,98494,7340,"[""Tablet""]",1646.09,{},1014,1,South America +2024-01-20,98495,6269,"[""Monitor"", ""Charger""]",2460.85,"{""seasonal"": ""27%""}",83025,0,Asia +2024-02-17,98496,7837,"[""Laptop"", ""Phone""]",2570.51,"{""seasonal"": ""12%""}",18903,0,Africa +2024-08-02,98497,9134,"[""Laptop"", ""Keyboard""]",3810.19,"{""loyalty"": ""26%""}",17012,0,South America +2023-04-13,98498,364,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",451.77,"{""promo"": ""6%""}",139597,0,Africa +2024-07-22,98499,8615,"[""Headphones"", ""Laptop""]",1933.32,"{""seasonal"": ""29%""}",150557,0,South America +2023-04-05,98500,319,"[""Charger"", ""Phone""]",3409.94,"{""loyalty"": ""20%""}",149222,0,Europe +2023-08-29,98501,5295,"[""Laptop""]",4064.67,{},113093,1,South America +2023-01-26,98502,466,"[""Laptop"", ""Charger""]",1518.85,"{""promo"": ""11%""}",89502,0,Africa +2024-12-11,98503,5241,"[""Charger"", ""Phone"", ""Laptop""]",1633.78,"{""seasonal"": ""14%""}",6140,0,Europe +2024-02-23,98504,4356,"[""Headphones""]",1570.1,"{"""": ""6%""}",231102,0,Europe +2023-08-29,98505,9902,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1136.18,"{"""": ""10%""}",247763,1,Europe +2023-07-28,98506,9013,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",1592.56,{},256022,0,North America +2023-03-07,98507,2621,"[""Wireless Mouse"", ""Monitor"", ""Phone""]",4722.9,"{"""": ""28%""}",95189,1,North America +2024-08-28,98508,873,"[""Charger"", ""Headphones"", ""Keyboard""]",1211.43,{},44556,0,Africa +2023-07-17,98509,530,"[""Keyboard"", ""Laptop"", ""Monitor""]",3763.52,"{""promo"": ""25%""}",185412,0,Europe +2024-12-26,98510,7861,"[""Wireless Mouse"", ""Headphones""]",2810.16,{},3016,0,Asia +2024-11-15,98511,937,"[""Phone""]",1662.12,{},143555,1,Africa +2023-02-06,98512,7752,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",2416.19,{},249332,0,South America +2023-04-22,98513,3259,"[""Laptop"", ""Monitor"", ""Phone""]",4703.22,"{""promo"": ""20%""}",204607,0,Europe +2023-04-13,98514,3739,"[""Keyboard"", ""Headphones"", ""Phone""]",1095.67,"{""promo"": ""20%""}",189198,0,Europe +2024-08-08,98515,444,"[""Headphones""]",4183.7,{},242752,1,Europe +2024-12-10,98516,7229,"[""Laptop""]",2207.2,"{""seasonal"": ""28%""}",273062,0,North America +2023-08-15,98517,7005,"[""Charger""]",125.2,{},19691,1,South America +2023-06-28,98518,141,"[""Phone"", ""Monitor""]",134.55,{},200194,0,Europe +2023-08-02,98519,1690,"[""Charger""]",1771.08,{},130339,0,South America +2024-01-21,98520,1387,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",2705.04,{},39731,0,North America +2023-06-17,98521,8440,"[""Keyboard"", ""Tablet""]",2181.84,"{""promo"": ""8%""}",60662,0,Europe +2024-09-26,98522,5750,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",2532.94,"{""seasonal"": ""12%""}",217152,1,Asia +2023-11-09,98523,1900,"[""Tablet"", ""Phone""]",4663.09,"{"""": ""11%""}",75684,1,Europe +2024-04-11,98524,664,"[""Laptop""]",759.27,"{""seasonal"": ""15%""}",127690,1,Africa +2023-12-12,98525,8197,"[""Headphones""]",1764.29,"{"""": ""25%""}",220483,0,South America +2023-09-11,98526,5177,"[""Tablet"", ""Monitor""]",2856.23,{},182400,0,Africa +2023-05-20,98527,9282,"[""Keyboard"", ""Laptop""]",2565.67,"{""promo"": ""30%""}",9211,1,North America +2024-09-28,98528,3324,"[""Monitor""]",4066.22,{},216403,1,Europe +2023-02-02,98529,7416,"[""Phone"", ""Wireless Mouse"", ""Tablet""]",4426.63,"{""seasonal"": ""16%""}",238698,1,Asia +2024-01-01,98530,1383,"[""Laptop""]",3900.42,{},106324,0,Africa +2023-08-03,98531,2904,"[""Headphones"", ""Monitor"", ""Phone""]",3409.36,"{""promo"": ""22%""}",261426,0,Africa +2024-07-08,98532,9369,"[""Headphones""]",1431.18,{},284018,0,Africa +2024-06-06,98533,6656,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",916.81,"{""seasonal"": ""27%""}",267043,0,North America +2024-03-17,98534,7261,"[""Tablet""]",722.34,"{"""": ""7%""}",217481,1,North America +2024-07-03,98535,3546,"[""Phone"", ""Tablet""]",2175.59,{},17405,1,North America +2024-02-18,98536,9157,"[""Wireless Mouse"", ""Keyboard""]",4732.74,{},161517,0,Europe +2023-05-25,98537,7952,"[""Wireless Mouse""]",3960.11,"{"""": ""18%""}",77539,1,Africa +2024-06-24,98538,6009,"[""Headphones"", ""Laptop"", ""Keyboard""]",4639.14,"{""loyalty"": ""15%""}",95103,1,South America +2023-10-11,98539,3570,"[""Laptop""]",4800.21,"{""promo"": ""26%""}",137799,0,Asia +2024-03-31,98540,5979,"[""Charger""]",2636.66,"{"""": ""27%""}",88085,0,Europe +2023-10-19,98541,9153,"[""Tablet"", ""Charger""]",3494.53,{},201767,1,South America +2023-06-07,98542,5210,"[""Phone"", ""Wireless Mouse""]",1940.72,{},234704,1,Africa +2024-04-16,98543,7973,"[""Phone"", ""Laptop""]",3403.06,{},262792,0,Europe +2023-03-11,98544,7033,"[""Keyboard"", ""Monitor""]",2856.26,"{""promo"": ""17%""}",168677,1,North America +2023-10-29,98545,5024,"[""Phone"", ""Tablet""]",2292.43,{},185023,0,Asia +2024-05-31,98546,3300,"[""Wireless Mouse""]",4227.6,{},105953,1,South America +2023-04-06,98547,3146,"[""Wireless Mouse"", ""Charger""]",2331.82,"{""seasonal"": ""9%""}",292675,1,Asia +2023-03-01,98548,7518,"[""Phone"", ""Charger"", ""Keyboard""]",4154.72,{},11055,1,South America +2023-03-15,98549,7317,"[""Wireless Mouse"", ""Headphones""]",4563.37,{},149978,1,Europe +2024-08-23,98550,924,"[""Headphones"", ""Keyboard""]",4498.98,"{""loyalty"": ""22%""}",94878,1,Europe +2023-06-10,98551,7771,"[""Phone"", ""Charger""]",4036.13,{},71990,1,Africa +2024-07-01,98552,3144,"[""Phone""]",772.57,"{""loyalty"": ""26%""}",274656,0,Asia +2023-03-02,98553,330,"[""Keyboard"", ""Tablet"", ""Monitor""]",660.34,"{""seasonal"": ""13%""}",127351,1,South America +2024-01-16,98554,1739,"[""Charger"", ""Laptop""]",2635.15,{},134751,1,North America +2024-09-28,98555,6410,"[""Laptop"", ""Headphones""]",3050.96,{},19705,0,Europe +2023-03-17,98556,1996,"[""Laptop""]",1727.31,"{"""": ""14%""}",83718,0,Europe +2023-12-17,98557,4742,"[""Charger"", ""Headphones""]",84.12,"{""seasonal"": ""6%""}",287415,1,Asia +2023-09-26,98558,2054,"[""Tablet"", ""Headphones""]",4597.92,"{"""": ""21%""}",97982,0,Asia +2024-01-16,98559,3403,"[""Monitor"", ""Phone""]",4387.58,"{""seasonal"": ""26%""}",185074,0,South America +2023-01-28,98560,5368,"[""Laptop"", ""Tablet"", ""Charger""]",2717.8,{},203863,1,North America +2023-03-13,98561,1590,"[""Phone"", ""Wireless Mouse""]",606.1,{},290910,0,South America +2024-07-31,98562,9992,"[""Phone""]",4461.38,"{""seasonal"": ""17%""}",106469,0,Europe +2023-03-06,98563,7651,"[""Monitor"", ""Laptop"", ""Phone""]",1865.86,"{""seasonal"": ""7%""}",131141,1,Europe +2023-09-22,98564,8289,"[""Laptop"", ""Monitor""]",122.04,{},176716,0,Africa +2024-11-25,98565,6572,"[""Monitor"", ""Headphones"", ""Laptop""]",3481.67,{},144916,0,South America +2023-09-30,98566,9350,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3705.95,"{""seasonal"": ""30%""}",121006,0,Asia +2023-06-23,98567,5722,"[""Charger""]",1451.03,{},260001,1,South America +2023-02-12,98568,1917,"[""Keyboard"", ""Monitor""]",886.23,"{"""": ""23%""}",14032,0,South America +2024-11-01,98569,1301,"[""Monitor"", ""Keyboard""]",4267.03,"{""loyalty"": ""19%""}",297758,0,Europe +2023-08-20,98570,6673,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",2399.16,"{""seasonal"": ""10%""}",184880,0,Africa +2024-12-02,98571,9280,"[""Monitor"", ""Headphones""]",2691.49,"{""loyalty"": ""29%""}",69021,1,South America +2023-03-27,98572,7957,"[""Phone"", ""Tablet""]",4411.15,{},263770,1,Asia +2023-10-07,98573,8347,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",1531.49,{},110564,1,North America +2023-03-16,98574,1593,"[""Charger"", ""Monitor"", ""Phone""]",484.14,{},238350,0,South America +2023-08-09,98575,6650,"[""Tablet"", ""Wireless Mouse""]",3366.64,"{""promo"": ""27%""}",105114,1,North America +2023-07-19,98576,2430,"[""Tablet"", ""Keyboard""]",1651.02,{},229569,0,Africa +2023-03-05,98577,1821,"[""Monitor""]",1967.25,{},23567,1,Asia +2023-03-13,98578,2782,"[""Monitor"", ""Tablet""]",2123.34,{},78810,0,North America +2023-10-26,98579,7595,"[""Laptop""]",1723.2,{},221093,1,Asia +2024-01-07,98580,2976,"[""Monitor""]",1682.72,{},245562,1,Africa +2023-09-18,98581,978,"[""Charger"", ""Phone""]",4968.45,{},208093,0,Europe +2023-08-19,98582,9152,"[""Phone"", ""Laptop""]",1023.14,"{""promo"": ""25%""}",68832,0,South America +2023-03-01,98583,2744,"[""Monitor""]",620.66,{},263852,1,North America +2024-04-20,98584,744,"[""Keyboard""]",389.97,{},263729,0,Africa +2023-04-22,98585,5164,"[""Phone"", ""Monitor"", ""Keyboard""]",426.67,"{""seasonal"": ""5%""}",112082,1,Africa +2024-10-04,98586,9557,"[""Charger""]",592.1,"{""seasonal"": ""21%""}",91058,0,Asia +2023-03-25,98587,739,"[""Monitor"", ""Phone"", ""Tablet""]",3384.65,"{""promo"": ""25%""}",32499,0,Asia +2023-10-12,98588,4374,"[""Phone"", ""Monitor""]",1619.76,"{"""": ""7%""}",25348,1,South America +2024-12-26,98589,9676,"[""Phone"", ""Charger"", ""Headphones""]",3434.93,"{""seasonal"": ""10%""}",218362,1,Africa +2024-06-14,98590,6039,"[""Keyboard""]",797.74,{},156787,1,Africa +2023-08-06,98591,9990,"[""Laptop""]",4685.85,{},128021,1,Europe +2023-11-03,98592,2452,"[""Monitor"", ""Laptop""]",561.73,{},204031,1,North America +2023-01-16,98593,2164,"[""Keyboard"", ""Wireless Mouse""]",2543.49,"{"""": ""17%""}",271733,1,Africa +2023-07-26,98594,1347,"[""Charger""]",4073.77,{},134730,1,Africa +2023-02-08,98595,9472,"[""Charger"", ""Tablet"", ""Headphones""]",4330.89,"{""seasonal"": ""28%""}",88930,1,Africa +2023-05-02,98596,1463,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1522.08,{},245402,1,South America +2024-10-19,98597,8098,"[""Wireless Mouse""]",4477.21,{},18804,0,Asia +2024-04-01,98598,7341,"[""Monitor""]",1418.18,"{""promo"": ""8%""}",100795,0,Africa +2023-10-02,98599,8036,"[""Monitor""]",1162.39,{},175775,1,Europe +2023-09-29,98600,6618,"[""Charger"", ""Headphones"", ""Phone""]",76.5,{},243624,1,Asia +2023-03-30,98601,9173,"[""Wireless Mouse""]",2036.0,"{""promo"": ""30%""}",93894,1,North America +2024-08-06,98602,2101,"[""Charger""]",512.83,{},168375,1,North America +2024-03-10,98603,3243,"[""Keyboard"", ""Phone""]",86.48,{},245333,0,North America +2024-04-12,98604,2045,"[""Tablet""]",4523.06,"{""seasonal"": ""12%""}",246343,1,North America +2024-06-14,98605,4803,"[""Monitor"", ""Laptop"", ""Charger""]",3672.99,"{""loyalty"": ""24%""}",142020,0,Europe +2024-02-21,98606,3727,"[""Charger""]",4077.68,"{""promo"": ""13%""}",121214,0,Africa +2024-05-09,98607,1660,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1495.68,{},155163,1,Africa +2024-05-11,98608,576,"[""Phone"", ""Laptop""]",469.24,"{""promo"": ""16%""}",139172,0,Europe +2023-05-07,98609,1633,"[""Wireless Mouse"", ""Phone""]",2802.07,"{""loyalty"": ""24%""}",134222,1,Africa +2024-11-23,98610,1635,"[""Headphones"", ""Phone""]",592.47,{},272945,0,Europe +2023-08-31,98611,6505,"[""Wireless Mouse""]",2735.21,"{""loyalty"": ""24%""}",51176,1,Asia +2023-08-22,98612,9405,"[""Tablet"", ""Monitor"", ""Charger""]",1807.09,"{""seasonal"": ""9%""}",3263,1,Africa +2023-10-22,98613,5390,"[""Monitor"", ""Keyboard"", ""Tablet""]",542.1,"{""seasonal"": ""24%""}",277371,0,Africa +2023-08-23,98614,1584,"[""Wireless Mouse""]",3147.52,"{""loyalty"": ""23%""}",21719,1,Asia +2024-08-07,98615,8834,"[""Monitor"", ""Headphones"", ""Phone""]",2018.94,"{""seasonal"": ""13%""}",239280,1,South America +2023-03-10,98616,5258,"[""Monitor"", ""Laptop"", ""Headphones""]",3275.41,"{""promo"": ""12%""}",192304,1,South America +2023-07-30,98617,6840,"[""Charger""]",2260.7,{},232273,0,North America +2024-04-22,98618,9751,"[""Tablet""]",2792.61,"{""seasonal"": ""8%""}",68012,0,Asia +2024-01-28,98619,8805,"[""Charger"", ""Wireless Mouse""]",1948.13,"{""seasonal"": ""11%""}",258034,0,Africa +2024-05-08,98620,527,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",92.41,"{""loyalty"": ""15%""}",205704,0,North America +2023-01-10,98621,8540,"[""Keyboard""]",2914.81,"{""loyalty"": ""10%""}",294927,1,South America +2024-03-20,98622,6827,"[""Wireless Mouse"", ""Headphones""]",4273.35,"{""seasonal"": ""9%""}",122601,1,Asia +2024-12-09,98623,8539,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",104.35,{},153980,0,South America +2023-01-06,98624,7087,"[""Charger"", ""Monitor"", ""Headphones""]",844.64,"{""loyalty"": ""17%""}",114302,0,Africa +2023-12-22,98625,6131,"[""Phone"", ""Tablet"", ""Keyboard""]",3390.4,"{"""": ""15%""}",292538,0,Asia +2023-01-02,98626,3440,"[""Keyboard"", ""Monitor"", ""Phone""]",1617.01,"{"""": ""23%""}",130968,1,Asia +2024-07-01,98627,1620,"[""Wireless Mouse"", ""Charger""]",1672.56,"{"""": ""28%""}",163051,1,Asia +2023-08-01,98628,4858,"[""Wireless Mouse""]",4397.23,"{""seasonal"": ""14%""}",176945,1,South America +2023-08-27,98629,6678,"[""Monitor""]",4602.56,"{""seasonal"": ""15%""}",177716,1,Africa +2023-12-25,98630,9798,"[""Monitor"", ""Laptop""]",506.96,{},269974,0,South America +2023-05-26,98631,1347,"[""Charger""]",4660.63,"{"""": ""25%""}",153525,1,Africa +2023-04-06,98632,8425,"[""Headphones""]",4996.31,"{""loyalty"": ""7%""}",198571,0,South America +2023-12-01,98633,2976,"[""Laptop"", ""Monitor"", ""Phone""]",1691.84,{},251776,0,Europe +2024-08-11,98634,1317,"[""Phone"", ""Tablet"", ""Charger""]",2173.73,{},278119,1,North America +2023-04-28,98635,3956,"[""Keyboard""]",2133.11,"{""promo"": ""13%""}",243510,0,Africa +2024-04-15,98636,3206,"[""Laptop""]",1230.92,"{"""": ""26%""}",188177,0,South America +2023-06-25,98637,6966,"[""Monitor""]",3234.8,"{"""": ""22%""}",31726,1,Africa +2024-12-01,98638,9834,"[""Keyboard"", ""Phone"", ""Headphones""]",3724.93,{},58187,0,South America +2023-12-19,98639,5584,"[""Laptop"", ""Headphones""]",4083.27,"{"""": ""11%""}",23607,0,Africa +2023-06-08,98640,3490,"[""Phone"", ""Charger""]",1698.74,"{""promo"": ""20%""}",123157,1,Africa +2023-10-15,98641,5731,"[""Wireless Mouse""]",1972.77,{},168754,1,Asia +2024-01-22,98642,4077,"[""Headphones""]",1177.88,"{""promo"": ""11%""}",172317,0,North America +2023-06-30,98643,1155,"[""Phone"", ""Headphones"", ""Laptop""]",1168.84,{},124673,1,Asia +2023-03-13,98644,9668,"[""Headphones""]",3584.93,{},19410,0,South America +2023-05-31,98645,6757,"[""Keyboard"", ""Tablet""]",1017.29,{},70223,1,Europe +2024-10-08,98646,3801,"[""Phone"", ""Keyboard""]",479.42,"{""promo"": ""20%""}",71568,1,Africa +2023-10-25,98647,9334,"[""Phone"", ""Monitor"", ""Tablet""]",2934.16,{},223090,1,Africa +2024-03-30,98648,4794,"[""Monitor"", ""Phone"", ""Headphones""]",1538.24,{},167082,1,Asia +2023-06-04,98649,5253,"[""Monitor"", ""Keyboard"", ""Tablet""]",1180.77,"{"""": ""10%""}",37652,1,Europe +2024-08-22,98650,5001,"[""Wireless Mouse"", ""Charger""]",75.76,{},5718,0,Europe +2024-04-26,98651,9564,"[""Laptop""]",3418.8,{},299606,0,Asia +2024-12-12,98652,603,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1677.38,"{""loyalty"": ""18%""}",246006,0,Asia +2024-06-20,98653,880,"[""Laptop"", ""Monitor"", ""Keyboard""]",3553.63,{},203209,0,Europe +2023-07-04,98654,9047,"[""Tablet""]",2015.85,"{""loyalty"": ""30%""}",41913,0,Africa +2024-07-03,98655,8745,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",4757.36,{},289698,1,Europe +2023-02-14,98656,177,"[""Headphones""]",4969.55,{},150142,1,South America +2024-06-29,98657,8939,"[""Keyboard""]",3814.7,"{""seasonal"": ""22%""}",173441,0,South America +2023-10-08,98658,3298,"[""Phone"", ""Headphones"", ""Charger""]",1674.73,"{"""": ""19%""}",150920,0,Europe +2024-06-25,98659,4131,"[""Keyboard"", ""Tablet""]",3498.66,{},200758,0,North America +2023-08-25,98660,6194,"[""Headphones""]",2996.75,{},231918,1,Africa +2023-12-10,98661,542,"[""Monitor"", ""Tablet""]",3948.22,{},132591,1,Asia +2024-04-24,98662,4474,"[""Charger""]",447.46,{},286111,1,Europe +2024-10-20,98663,3492,"[""Phone"", ""Monitor""]",4401.47,{},128336,1,Europe +2023-05-25,98664,1491,"[""Wireless Mouse"", ""Charger""]",3170.69,{},108351,0,Africa +2024-01-10,98665,2806,"[""Phone"", ""Headphones""]",2231.88,{},222574,0,North America +2023-05-01,98666,4662,"[""Phone""]",3774.03,{},78767,1,South America +2024-01-12,98667,202,"[""Headphones"", ""Keyboard"", ""Laptop""]",4444.23,"{""seasonal"": ""13%""}",36842,0,Europe +2023-12-08,98668,7522,"[""Phone"", ""Headphones"", ""Monitor""]",2403.32,{},112542,0,Africa +2024-06-18,98669,7626,"[""Headphones""]",3995.34,"{""loyalty"": ""23%""}",188270,1,Africa +2024-02-16,98670,7975,"[""Phone"", ""Monitor""]",3780.79,{},222011,0,Europe +2023-07-16,98671,2405,"[""Phone""]",441.5,{},11219,0,Europe +2024-06-12,98672,1605,"[""Keyboard""]",3482.74,"{""loyalty"": ""13%""}",14743,1,South America +2024-01-08,98673,270,"[""Monitor"", ""Tablet""]",717.82,{},286692,0,South America +2023-08-22,98674,2624,"[""Laptop"", ""Keyboard"", ""Monitor""]",211.13,"{""promo"": ""11%""}",62987,0,North America +2023-12-02,98675,868,"[""Keyboard"", ""Laptop"", ""Headphones""]",3028.47,"{"""": ""7%""}",99783,1,Africa +2023-11-09,98676,3447,"[""Headphones"", ""Keyboard"", ""Monitor""]",2536.44,"{""seasonal"": ""23%""}",238633,1,Asia +2024-10-06,98677,7484,"[""Tablet"", ""Monitor"", ""Laptop""]",4768.65,{},239738,1,Asia +2024-10-26,98678,4063,"[""Laptop"", ""Phone"", ""Tablet""]",4717.21,"{""promo"": ""17%""}",47569,1,Asia +2023-08-17,98679,9454,"[""Keyboard"", ""Phone"", ""Charger""]",1812.26,"{"""": ""24%""}",236616,1,North America +2023-11-20,98680,7279,"[""Tablet""]",1408.56,{},291193,0,Africa +2024-01-14,98681,283,"[""Monitor"", ""Phone""]",2478.85,"{""seasonal"": ""7%""}",293403,1,Asia +2023-01-04,98682,8639,"[""Headphones"", ""Laptop"", ""Monitor""]",1930.2,{},71234,1,South America +2024-11-27,98683,644,"[""Monitor"", ""Headphones"", ""Wireless Mouse""]",687.86,"{""loyalty"": ""9%""}",12054,0,Africa +2023-03-15,98684,8142,"[""Keyboard"", ""Charger""]",961.74,{},8646,0,South America +2024-03-22,98685,8385,"[""Keyboard"", ""Monitor""]",1396.22,"{""loyalty"": ""29%""}",281950,1,Europe +2024-04-13,98686,9967,"[""Headphones"", ""Laptop"", ""Keyboard""]",847.25,{},98469,1,Africa +2024-03-01,98687,5524,"[""Phone"", ""Wireless Mouse"", ""Headphones""]",2643.98,{},185773,1,North America +2023-07-07,98688,8229,"[""Monitor""]",2258.16,"{""loyalty"": ""8%""}",12552,0,Africa +2024-01-06,98689,9696,"[""Laptop"", ""Phone""]",2140.34,"{""loyalty"": ""17%""}",217049,1,Europe +2023-03-28,98690,7425,"[""Laptop"", ""Charger""]",467.97,"{""loyalty"": ""28%""}",278349,0,Europe +2024-02-15,98691,4762,"[""Phone"", ""Tablet"", ""Keyboard""]",3855.95,"{"""": ""16%""}",183220,0,Europe +2023-08-30,98692,1547,"[""Charger"", ""Wireless Mouse""]",3455.51,"{""promo"": ""21%""}",258806,1,Africa +2023-10-11,98693,729,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3254.83,"{"""": ""18%""}",90872,1,Europe +2023-10-23,98694,5389,"[""Charger""]",4215.53,{},134554,0,North America +2024-03-04,98695,9286,"[""Tablet""]",725.57,"{""promo"": ""30%""}",163630,1,Europe +2023-04-18,98696,2240,"[""Keyboard"", ""Laptop""]",1934.58,{},264009,1,Africa +2024-11-11,98697,7484,"[""Monitor""]",1052.62,{},238567,1,South America +2024-01-06,98698,2184,"[""Tablet"", ""Headphones"", ""Laptop""]",980.56,{},213662,1,Europe +2023-05-20,98699,5461,"[""Keyboard""]",3481.2,{},167067,0,North America +2024-07-09,98700,5941,"[""Keyboard""]",2367.56,"{""promo"": ""23%""}",119576,0,Africa +2023-11-23,98701,5617,"[""Laptop""]",3053.62,{},240770,1,Europe +2024-12-02,98702,29,"[""Headphones"", ""Laptop"", ""Charger""]",648.37,{},141340,0,North America +2023-08-18,98703,4579,"[""Charger"", ""Headphones"", ""Wireless Mouse""]",1755.53,"{""seasonal"": ""16%""}",80819,1,Africa +2023-07-13,98704,2810,"[""Monitor"", ""Tablet""]",2162.01,{},206704,0,Africa +2024-01-20,98705,264,"[""Wireless Mouse""]",80.62,{},21727,1,Africa +2023-09-11,98706,4582,"[""Tablet"", ""Keyboard""]",4339.22,{},171914,0,Africa +2024-08-23,98707,1988,"[""Tablet"", ""Wireless Mouse""]",1862.71,"{"""": ""23%""}",192284,1,Africa +2024-10-05,98708,4949,"[""Headphones"", ""Tablet"", ""Monitor""]",3383.98,{},6420,0,South America +2023-08-03,98709,7969,"[""Keyboard"", ""Tablet""]",1103.8,"{""loyalty"": ""23%""}",131720,1,Africa +2023-08-08,98710,1416,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",1008.63,"{""seasonal"": ""16%""}",66396,0,Europe +2023-10-07,98711,556,"[""Phone""]",599.97,"{"""": ""12%""}",167774,1,Europe +2023-09-18,98712,8037,"[""Phone"", ""Charger""]",2821.18,{},265817,0,Asia +2023-09-11,98713,9722,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2215.72,"{""seasonal"": ""13%""}",177901,1,South America +2024-07-17,98714,3690,"[""Headphones""]",3633.28,{},245283,0,North America +2023-07-12,98715,8069,"[""Wireless Mouse""]",3342.7,"{""seasonal"": ""11%""}",18710,1,Europe +2024-08-04,98716,8039,"[""Laptop"", ""Tablet"", ""Wireless Mouse""]",2387.37,"{"""": ""17%""}",43926,1,South America +2024-09-04,98717,6884,"[""Headphones""]",1917.71,"{"""": ""30%""}",3224,1,South America +2024-09-15,98718,990,"[""Keyboard"", ""Phone""]",967.62,"{"""": ""8%""}",26225,1,North America +2023-01-30,98719,2710,"[""Laptop"", ""Tablet""]",4535.04,{},112630,0,South America +2023-07-02,98720,5338,"[""Keyboard"", ""Phone""]",1483.1,"{"""": ""30%""}",200912,1,South America +2024-04-16,98721,4634,"[""Headphones"", ""Tablet"", ""Keyboard""]",3185.02,{},261176,0,South America +2024-05-29,98722,7888,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1966.59,{},200559,1,Asia +2023-08-10,98723,33,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",3342.8,"{""seasonal"": ""22%""}",115133,0,Europe +2024-05-23,98724,4163,"[""Charger"", ""Keyboard""]",677.67,{},133049,1,Africa +2023-03-05,98725,6591,"[""Wireless Mouse"", ""Monitor""]",3229.19,{},239879,0,North America +2023-06-23,98726,2329,"[""Phone""]",3829.75,{},85086,0,Asia +2024-01-03,98727,1555,"[""Keyboard"", ""Laptop""]",3689.15,"{"""": ""20%""}",6951,1,South America +2024-12-25,98728,498,"[""Headphones"", ""Wireless Mouse""]",2731.61,{},70805,0,North America +2024-10-09,98729,7967,"[""Phone""]",3307.37,"{""loyalty"": ""17%""}",153942,0,Africa +2023-07-30,98730,1402,"[""Tablet"", ""Laptop"", ""Monitor""]",812.08,{},223795,1,Europe +2023-03-21,98731,7793,"[""Tablet"", ""Monitor"", ""Headphones""]",200.18,{},145352,1,South America +2023-12-25,98732,6841,"[""Phone"", ""Headphones""]",1439.66,"{"""": ""23%""}",87575,1,Africa +2023-12-30,98733,9979,"[""Headphones""]",172.83,"{""loyalty"": ""18%""}",22449,1,Europe +2023-02-01,98734,4009,"[""Keyboard"", ""Phone"", ""Charger""]",3715.52,"{"""": ""21%""}",2996,1,Asia +2023-08-14,98735,6695,"[""Wireless Mouse""]",3363.06,{},24961,0,North America +2023-07-31,98736,5659,"[""Charger"", ""Headphones"", ""Tablet""]",3647.84,{},296817,1,Asia +2024-09-06,98737,764,"[""Charger"", ""Monitor""]",2477.42,"{""loyalty"": ""20%""}",153052,0,South America +2024-06-01,98738,1434,"[""Laptop"", ""Phone""]",1598.29,{},129526,1,Asia +2024-05-31,98739,5090,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",4894.43,{},215641,0,North America +2024-09-28,98740,7107,"[""Keyboard"", ""Headphones""]",688.51,{},279446,1,South America +2023-12-20,98741,584,"[""Headphones"", ""Laptop"", ""Keyboard""]",1863.86,"{""loyalty"": ""24%""}",255437,1,South America +2023-09-14,98742,5058,"[""Keyboard""]",4271.65,{},146377,0,Europe +2024-03-10,98743,9151,"[""Monitor"", ""Laptop"", ""Phone""]",592.25,"{""loyalty"": ""11%""}",116025,1,Europe +2024-01-18,98744,5850,"[""Tablet""]",1114.14,"{"""": ""6%""}",184382,1,North America +2023-10-10,98745,8418,"[""Headphones"", ""Laptop"", ""Monitor""]",2883.13,{},121028,0,Africa +2024-02-15,98746,5635,"[""Charger"", ""Headphones"", ""Monitor""]",2207.5,{},214324,0,Africa +2024-12-02,98747,2308,"[""Headphones"", ""Tablet"", ""Charger""]",126.22,"{""promo"": ""25%""}",249337,1,Europe +2024-08-06,98748,8706,"[""Charger""]",623.38,"{""loyalty"": ""24%""}",21458,1,Europe +2023-11-27,98749,2518,"[""Headphones""]",3759.62,{},242940,1,Africa +2024-11-30,98750,9538,"[""Phone"", ""Monitor"", ""Charger""]",500.82,{},155710,0,South America +2023-12-02,98751,2087,"[""Tablet""]",482.39,"{""promo"": ""23%""}",114595,1,Europe +2024-08-06,98752,5788,"[""Tablet""]",1761.09,"{"""": ""12%""}",53366,0,Europe +2024-09-24,98753,6300,"[""Tablet"", ""Headphones"", ""Phone""]",225.72,"{""promo"": ""29%""}",95895,0,North America +2023-07-10,98754,3803,"[""Wireless Mouse""]",1592.71,"{"""": ""10%""}",189727,0,Asia +2024-12-03,98755,3987,"[""Phone"", ""Wireless Mouse""]",168.45,"{""loyalty"": ""11%""}",63064,0,South America +2024-12-21,98756,6021,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",257.11,{},138740,1,Africa +2024-11-09,98757,9854,"[""Tablet"", ""Headphones"", ""Monitor""]",1173.56,{},241850,1,Asia +2023-01-19,98758,4530,"[""Headphones"", ""Wireless Mouse"", ""Monitor""]",4710.76,"{""seasonal"": ""18%""}",196162,1,North America +2023-04-14,98759,4826,"[""Charger""]",3144.83,"{""loyalty"": ""8%""}",202704,0,South America +2024-03-16,98760,4554,"[""Phone"", ""Monitor""]",1362.05,{},178138,0,South America +2024-06-04,98761,9420,"[""Wireless Mouse"", ""Tablet""]",1205.06,"{""promo"": ""7%""}",175469,0,South America +2024-06-04,98762,2103,"[""Laptop""]",1563.91,{},136022,0,Asia +2024-08-23,98763,9598,"[""Keyboard"", ""Monitor""]",1611.88,{},87862,0,North America +2024-10-31,98764,8157,"[""Phone"", ""Tablet""]",4201.35,{},46737,1,Asia +2024-08-31,98765,3204,"[""Charger""]",4146.25,"{""promo"": ""10%""}",14190,0,South America +2024-01-06,98766,7574,"[""Charger""]",3381.13,{},217869,0,Europe +2023-06-02,98767,867,"[""Tablet"", ""Phone"", ""Monitor""]",2866.52,{},14327,0,Europe +2024-07-17,98768,5969,"[""Laptop""]",663.41,"{""seasonal"": ""18%""}",238313,0,North America +2023-08-07,98769,6171,"[""Charger""]",2212.61,"{"""": ""28%""}",67816,0,Africa +2023-05-02,98770,6435,"[""Charger"", ""Phone"", ""Laptop""]",4430.97,{},292649,1,Asia +2023-12-14,98771,6662,"[""Charger""]",2582.66,"{""promo"": ""21%""}",189164,0,South America +2024-08-14,98772,8838,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",883.74,"{""loyalty"": ""9%""}",212405,1,Europe +2023-03-22,98773,1074,"[""Headphones"", ""Charger""]",2494.82,"{""loyalty"": ""10%""}",285079,1,Asia +2024-01-03,98774,6604,"[""Tablet"", ""Laptop""]",1953.46,"{"""": ""27%""}",268276,1,Europe +2023-10-15,98775,4056,"[""Keyboard"", ""Tablet""]",2458.44,"{""seasonal"": ""29%""}",181842,0,Europe +2023-01-07,98776,6813,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",538.52,{},156515,1,Europe +2024-07-17,98777,36,"[""Phone""]",3330.16,"{""seasonal"": ""17%""}",269534,0,South America +2024-09-01,98778,5012,"[""Phone""]",2466.36,"{""promo"": ""6%""}",230316,1,Asia +2023-03-17,98779,9195,"[""Phone"", ""Tablet""]",1368.83,{},145999,1,North America +2024-01-05,98780,7695,"[""Tablet"", ""Headphones"", ""Charger""]",1349.76,"{""seasonal"": ""19%""}",179061,1,Asia +2024-06-14,98781,6124,"[""Keyboard"", ""Headphones""]",2153.24,"{""loyalty"": ""14%""}",139811,0,South America +2023-10-26,98782,2856,"[""Laptop"", ""Wireless Mouse""]",436.82,{},29499,0,North America +2024-11-25,98783,5926,"[""Keyboard"", ""Headphones""]",1314.11,"{""promo"": ""7%""}",259050,0,North America +2023-02-08,98784,6492,"[""Charger""]",4268.48,{},111935,0,North America +2024-11-04,98785,6007,"[""Headphones"", ""Charger"", ""Monitor""]",4476.72,{},103712,0,North America +2023-11-20,98786,1267,"[""Headphones"", ""Laptop"", ""Charger""]",1958.98,{},246675,1,Europe +2024-08-09,98787,5080,"[""Charger"", ""Laptop"", ""Headphones""]",385.45,{},136779,0,Africa +2024-03-21,98788,3519,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4865.02,"{"""": ""11%""}",9133,1,Africa +2023-02-04,98789,1215,"[""Tablet"", ""Charger"", ""Laptop""]",1609.57,{},15582,1,North America +2023-01-01,98790,9006,"[""Tablet"", ""Keyboard""]",4897.72,"{""promo"": ""29%""}",10890,1,South America +2023-05-30,98791,3325,"[""Monitor"", ""Tablet""]",4382.89,{},268598,0,North America +2024-12-30,98792,4029,"[""Keyboard"", ""Charger"", ""Laptop""]",3478.03,{},40018,0,North America +2024-04-23,98793,413,"[""Charger"", ""Wireless Mouse"", ""Monitor""]",4610.24,"{"""": ""18%""}",101199,1,Africa +2023-10-16,98794,456,"[""Headphones""]",3690.06,"{"""": ""16%""}",298212,0,Africa +2023-08-06,98795,3097,"[""Headphones"", ""Wireless Mouse"", ""Tablet""]",1588.18,{},204747,0,Asia +2023-11-19,98796,4058,"[""Headphones"", ""Charger""]",68.77,{},218715,1,South America +2023-06-03,98797,463,"[""Monitor""]",4686.27,"{""seasonal"": ""18%""}",34220,1,Africa +2023-04-18,98798,1605,"[""Tablet"", ""Wireless Mouse"", ""Headphones""]",2889.11,"{""loyalty"": ""11%""}",203863,0,Asia +2023-02-12,98799,5676,"[""Keyboard""]",2900.24,{},32812,0,South America +2023-04-20,98800,2234,"[""Charger"", ""Tablet""]",2509.19,{},175554,1,Africa +2023-04-22,98801,3584,"[""Headphones""]",3264.3,"{"""": ""28%""}",272836,1,South America +2023-12-25,98802,1637,"[""Monitor""]",1646.97,{},65740,1,North America +2024-10-21,98803,5483,"[""Keyboard""]",4992.15,"{""seasonal"": ""11%""}",165184,1,Africa +2023-07-26,98804,795,"[""Wireless Mouse"", ""Headphones""]",1573.4,{},27910,0,Asia +2024-03-11,98805,7568,"[""Laptop"", ""Monitor""]",1483.64,"{""loyalty"": ""16%""}",223976,0,North America +2023-02-08,98806,4388,"[""Tablet""]",4495.67,"{""promo"": ""21%""}",262890,1,North America +2023-11-18,98807,5380,"[""Phone"", ""Keyboard"", ""Headphones""]",2162.85,{},31798,0,Asia +2023-07-18,98808,5275,"[""Monitor"", ""Tablet""]",1708.22,{},235312,0,North America +2023-07-18,98809,3203,"[""Tablet""]",2282.58,"{""promo"": ""7%""}",259097,1,Europe +2024-05-05,98810,4195,"[""Tablet"", ""Wireless Mouse"", ""Monitor""]",2239.4,"{""seasonal"": ""11%""}",136171,1,North America +2023-10-13,98811,9402,"[""Tablet"", ""Charger""]",2240.96,{},143070,0,South America +2024-10-12,98812,1940,"[""Keyboard"", ""Monitor"", ""Tablet""]",1273.75,"{""loyalty"": ""22%""}",202081,0,Africa +2024-04-22,98813,7452,"[""Laptop"", ""Keyboard"", ""Charger""]",3836.81,{},142439,0,Europe +2024-04-15,98814,3424,"[""Laptop""]",560.89,{},17942,0,North America +2024-06-17,98815,6258,"[""Keyboard"", ""Phone"", ""Charger""]",2908.11,"{""promo"": ""17%""}",58828,1,North America +2023-10-16,98816,5586,"[""Tablet""]",2472.68,{},63947,0,North America +2024-08-08,98817,458,"[""Wireless Mouse"", ""Charger"", ""Phone""]",1539.6,{},219777,0,South America +2024-05-06,98818,843,"[""Headphones""]",3701.05,"{""promo"": ""11%""}",193741,1,South America +2024-04-26,98819,9678,"[""Tablet"", ""Charger"", ""Headphones""]",275.67,"{"""": ""19%""}",214802,0,Africa +2024-12-12,98820,444,"[""Tablet""]",673.5,{},168370,1,Europe +2024-03-06,98821,4619,"[""Phone"", ""Monitor"", ""Wireless Mouse""]",4838.34,{},125218,1,North America +2023-10-24,98822,7325,"[""Tablet""]",4846.65,"{""loyalty"": ""12%""}",53916,0,Europe +2023-07-30,98823,6471,"[""Laptop"", ""Tablet""]",3507.19,"{""promo"": ""29%""}",252341,1,South America +2023-03-08,98824,1054,"[""Charger"", ""Monitor""]",1930.35,{},19002,1,Europe +2023-12-25,98825,6442,"[""Charger""]",2321.71,"{""seasonal"": ""8%""}",132510,1,Africa +2024-07-16,98826,2059,"[""Keyboard""]",656.16,"{"""": ""8%""}",248412,1,Africa +2023-04-05,98827,7135,"[""Laptop"", ""Headphones""]",4273.73,{},227182,0,South America +2024-05-17,98828,6485,"[""Keyboard"", ""Phone"", ""Tablet""]",2815.09,"{""promo"": ""10%""}",268294,0,Africa +2023-05-15,98829,9420,"[""Tablet""]",1394.94,"{""loyalty"": ""17%""}",35238,1,Asia +2024-11-13,98830,683,"[""Monitor""]",4183.31,{},260935,0,Asia +2024-12-09,98831,3008,"[""Headphones"", ""Laptop"", ""Monitor""]",3936.31,{},240475,0,Asia +2024-04-19,98832,9774,"[""Charger""]",4930.18,"{""seasonal"": ""10%""}",154890,0,Asia +2024-01-03,98833,5564,"[""Headphones""]",3173.67,{},99176,1,Europe +2024-11-28,98834,9771,"[""Tablet""]",4823.6,"{"""": ""26%""}",134503,0,South America +2023-03-07,98835,9151,"[""Tablet"", ""Phone""]",1138.2,"{""promo"": ""26%""}",167836,0,Europe +2023-02-06,98836,2321,"[""Keyboard""]",4975.38,{},51425,1,Africa +2024-02-07,98837,9965,"[""Tablet"", ""Wireless Mouse""]",4409.13,{},189690,1,Asia +2023-08-21,98838,5235,"[""Phone"", ""Headphones"", ""Keyboard""]",71.62,"{""promo"": ""6%""}",293867,0,Asia +2023-12-20,98839,8717,"[""Keyboard""]",2137.0,"{""loyalty"": ""27%""}",42965,1,South America +2023-12-22,98840,2848,"[""Phone""]",1917.32,"{""seasonal"": ""12%""}",223397,0,South America +2023-09-06,98841,7202,"[""Laptop"", ""Keyboard"", ""Tablet""]",3027.11,"{""seasonal"": ""11%""}",208584,1,North America +2023-03-16,98842,3101,"[""Headphones"", ""Charger""]",1202.97,"{""promo"": ""7%""}",116435,1,Africa +2023-02-23,98843,2317,"[""Laptop"", ""Charger"", ""Phone""]",1828.2,{},249416,1,South America +2023-04-07,98844,2783,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",838.83,"{""seasonal"": ""30%""}",280761,0,South America +2024-10-28,98845,4751,"[""Headphones""]",4498.72,"{"""": ""10%""}",212311,1,North America +2023-05-04,98846,6882,"[""Headphones"", ""Phone""]",2971.51,"{"""": ""15%""}",86586,1,Asia +2024-03-19,98847,72,"[""Monitor"", ""Tablet""]",2855.22,{},32190,0,South America +2024-11-22,98848,4974,"[""Tablet""]",1547.01,{},257496,0,Africa +2024-11-21,98849,904,"[""Monitor"", ""Charger"", ""Laptop""]",3438.97,"{""seasonal"": ""14%""}",63192,1,South America +2024-09-28,98850,9724,"[""Phone"", ""Charger"", ""Laptop""]",1144.89,{},102293,0,Africa +2024-12-01,98851,9565,"[""Monitor""]",1945.98,"{""seasonal"": ""20%""}",280150,1,Europe +2024-05-10,98852,8852,"[""Keyboard""]",4363.96,{},121963,0,North America +2023-04-06,98853,5896,"[""Wireless Mouse"", ""Tablet""]",2354.56,{},1603,1,Europe +2024-08-08,98854,4070,"[""Headphones"", ""Phone"", ""Tablet""]",202.3,{},115070,0,Asia +2023-07-09,98855,7999,"[""Phone"", ""Headphones""]",3373.67,"{"""": ""29%""}",244547,1,Africa +2023-08-22,98856,3654,"[""Phone"", ""Charger"", ""Laptop""]",2362.1,"{""loyalty"": ""17%""}",103624,1,Europe +2024-09-25,98857,2160,"[""Headphones"", ""Laptop""]",4274.35,"{""loyalty"": ""10%""}",209071,0,Asia +2024-07-11,98858,7461,"[""Headphones"", ""Laptop"", ""Keyboard""]",3452.54,"{"""": ""28%""}",238248,1,Africa +2023-10-05,98859,9671,"[""Keyboard"", ""Laptop"", ""Headphones""]",92.42,{},30665,0,Africa +2023-09-07,98860,1056,"[""Tablet"", ""Charger""]",3751.58,{},207063,0,Europe +2024-06-22,98861,9874,"[""Phone"", ""Charger"", ""Headphones""]",3203.25,"{"""": ""12%""}",281575,1,South America +2024-06-21,98862,2203,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",3271.9,{},240636,1,Asia +2023-03-13,98863,1302,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",2972.24,{},293152,1,Asia +2023-03-11,98864,2387,"[""Keyboard""]",1889.2,{},299478,0,North America +2023-06-05,98865,9594,"[""Tablet"", ""Keyboard"", ""Headphones""]",3534.04,{},195046,0,Africa +2023-03-02,98866,2001,"[""Keyboard"", ""Headphones""]",2219.45,"{""promo"": ""27%""}",4925,1,South America +2024-02-08,98867,6389,"[""Keyboard"", ""Laptop""]",4305.21,{},102921,1,Africa +2024-06-18,98868,8710,"[""Headphones"", ""Monitor""]",57.38,{},31959,1,South America +2024-03-27,98869,2423,"[""Keyboard"", ""Charger"", ""Monitor""]",2793.37,"{""promo"": ""27%""}",258650,0,North America +2024-05-05,98870,8873,"[""Tablet"", ""Headphones""]",4866.08,{},208706,0,South America +2023-06-21,98871,1387,"[""Tablet"", ""Keyboard"", ""Wireless Mouse""]",265.93,"{""seasonal"": ""28%""}",125634,1,North America +2024-10-04,98872,7234,"[""Tablet"", ""Phone""]",4648.56,{},239731,0,South America +2024-01-29,98873,9621,"[""Laptop""]",2929.72,{},166296,1,Africa +2024-07-26,98874,8861,"[""Laptop""]",1479.68,"{""seasonal"": ""7%""}",87407,1,North America +2023-04-14,98875,1529,"[""Headphones"", ""Charger"", ""Laptop""]",2879.77,{},258450,1,Africa +2023-06-17,98876,3049,"[""Charger"", ""Tablet"", ""Monitor""]",2001.76,{},208855,1,Europe +2024-06-11,98877,7924,"[""Tablet"", ""Headphones""]",2982.15,{},120956,1,North America +2024-11-09,98878,7558,"[""Monitor""]",4746.33,"{""promo"": ""30%""}",169111,0,Africa +2023-11-09,98879,3469,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",3270.26,{},265376,0,Europe +2024-08-18,98880,1799,"[""Tablet"", ""Charger""]",803.9,{},72351,1,Asia +2023-08-30,98881,3578,"[""Tablet"", ""Charger"", ""Wireless Mouse""]",3230.88,{},198682,0,North America +2024-01-30,98882,2662,"[""Tablet"", ""Monitor""]",909.47,{},218961,0,North America +2023-07-03,98883,1142,"[""Charger"", ""Wireless Mouse""]",1485.04,{},29702,0,North America +2024-06-12,98884,6081,"[""Tablet"", ""Headphones""]",4099.9,"{"""": ""12%""}",173233,1,South America +2023-03-22,98885,9715,"[""Laptop"", ""Headphones""]",3184.96,{},103969,1,Asia +2023-08-01,98886,734,"[""Wireless Mouse"", ""Charger"", ""Monitor""]",705.11,{},73069,0,Africa +2023-08-17,98887,6291,"[""Phone"", ""Wireless Mouse""]",1557.51,"{""loyalty"": ""11%""}",299250,1,Africa +2024-02-06,98888,3198,"[""Headphones""]",4464.68,{},172290,1,Europe +2024-01-09,98889,6296,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",1790.3,{},82888,0,North America +2023-04-27,98890,2868,"[""Headphones"", ""Wireless Mouse""]",2558.52,"{""promo"": ""19%""}",263436,0,South America +2023-09-27,98891,3463,"[""Headphones"", ""Charger""]",3350.29,{},283909,0,Asia +2023-04-13,98892,6826,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",1003.11,{},1522,0,South America +2024-10-22,98893,6500,"[""Charger"", ""Wireless Mouse"", ""Laptop""]",4688.23,{},267925,0,Africa +2023-03-14,98894,5952,"[""Monitor"", ""Phone""]",2839.33,"{"""": ""27%""}",47498,0,Africa +2024-10-12,98895,82,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3899.82,{},296212,0,Asia +2023-06-10,98896,132,"[""Laptop""]",3520.54,"{""seasonal"": ""24%""}",3241,1,North America +2023-04-20,98897,6792,"[""Tablet""]",4676.47,"{"""": ""7%""}",37084,0,Africa +2023-03-18,98898,6789,"[""Charger"", ""Laptop""]",3696.74,"{""seasonal"": ""13%""}",238201,1,Asia +2023-09-21,98899,7097,"[""Wireless Mouse"", ""Headphones"", ""Keyboard""]",477.78,{},73283,1,South America +2023-11-20,98900,1282,"[""Charger""]",388.84,{},294080,1,South America +2024-10-23,98901,6123,"[""Wireless Mouse""]",2738.44,{},168295,0,North America +2024-12-14,98902,6401,"[""Laptop"", ""Phone""]",1980.76,{},55055,1,Europe +2024-03-20,98903,5521,"[""Wireless Mouse""]",993.88,{},234944,0,Asia +2024-07-03,98904,7251,"[""Keyboard"", ""Monitor""]",576.84,"{""promo"": ""28%""}",4397,0,South America +2023-01-31,98905,5069,"[""Headphones""]",580.67,"{"""": ""28%""}",159539,0,Africa +2024-09-21,98906,1119,"[""Headphones"", ""Wireless Mouse""]",1160.69,{},136365,0,Asia +2023-10-27,98907,2610,"[""Monitor""]",2187.08,{},10825,0,South America +2023-01-24,98908,1245,"[""Keyboard"", ""Phone"", ""Charger""]",3979.58,"{""promo"": ""15%""}",290280,0,North America +2024-03-28,98909,1941,"[""Laptop"", ""Charger""]",2107.58,"{""promo"": ""5%""}",21362,1,South America +2024-10-27,98910,6302,"[""Charger"", ""Tablet"", ""Laptop""]",3271.04,{},243566,0,Europe +2023-07-29,98911,4710,"[""Laptop"", ""Charger"", ""Wireless Mouse""]",98.3,{},260581,0,North America +2024-02-13,98912,7850,"[""Laptop""]",3221.59,"{"""": ""13%""}",75071,1,Asia +2023-11-21,98913,3992,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",4281.83,{},14126,1,Europe +2024-03-17,98914,9348,"[""Tablet"", ""Wireless Mouse""]",674.21,{},113058,1,Asia +2023-05-08,98915,5847,"[""Headphones"", ""Laptop"", ""Tablet""]",1483.81,"{""seasonal"": ""22%""}",255664,1,Asia +2024-02-05,98916,2762,"[""Laptop"", ""Monitor"", ""Headphones""]",2905.98,{},35779,1,Asia +2023-09-27,98917,7965,"[""Charger""]",3113.38,"{"""": ""24%""}",90633,0,Africa +2024-10-23,98918,5980,"[""Tablet"", ""Phone""]",2301.41,{},277737,0,Africa +2024-05-21,98919,5524,"[""Tablet"", ""Monitor""]",4332.52,"{""promo"": ""26%""}",167946,1,Africa +2023-01-19,98920,3794,"[""Headphones""]",3272.22,{},72474,1,South America +2023-01-31,98921,1111,"[""Charger"", ""Headphones"", ""Phone""]",2262.45,"{""promo"": ""21%""}",266811,1,Africa +2023-05-06,98922,9797,"[""Tablet""]",3261.42,{},45795,0,South America +2024-03-22,98923,1459,"[""Laptop"", ""Monitor""]",787.24,"{""seasonal"": ""20%""}",154529,0,Africa +2024-01-08,98924,4712,"[""Tablet"", ""Wireless Mouse""]",503.78,"{""promo"": ""24%""}",156816,0,Africa +2024-06-07,98925,8160,"[""Phone"", ""Laptop""]",1346.69,{},52698,1,North America +2024-02-20,98926,3734,"[""Phone""]",2467.2,"{"""": ""20%""}",250545,0,Africa +2024-09-27,98927,9808,"[""Wireless Mouse"", ""Charger""]",3057.45,"{""seasonal"": ""17%""}",47271,0,Europe +2023-08-22,98928,6632,"[""Wireless Mouse"", ""Laptop""]",3566.88,{},214577,0,Africa +2023-11-10,98929,86,"[""Laptop"", ""Monitor""]",1766.86,"{""seasonal"": ""5%""}",221694,1,Europe +2024-08-06,98930,4733,"[""Wireless Mouse"", ""Laptop""]",2832.53,"{""promo"": ""24%""}",1206,0,Africa +2024-11-11,98931,3080,"[""Tablet"", ""Charger"", ""Monitor""]",108.36,{},12613,1,Europe +2024-11-16,98932,5660,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1052.78,"{"""": ""24%""}",196295,0,Africa +2024-03-10,98933,4815,"[""Monitor"", ""Laptop""]",4827.05,{},30072,1,North America +2023-10-13,98934,5010,"[""Laptop"", ""Charger""]",2585.51,{},18684,0,Asia +2023-01-01,98935,6703,"[""Tablet""]",4000.83,"{"""": ""11%""}",105968,1,Europe +2023-05-04,98936,1402,"[""Keyboard"", ""Monitor"", ""Phone""]",2292.01,"{""seasonal"": ""21%""}",111366,1,Europe +2024-05-17,98937,5568,"[""Phone"", ""Keyboard"", ""Monitor""]",2357.18,{},298203,1,South America +2023-02-04,98938,3225,"[""Wireless Mouse"", ""Tablet""]",4812.25,"{"""": ""19%""}",276444,0,Asia +2023-08-23,98939,1339,"[""Headphones"", ""Laptop""]",1764.76,{},9382,0,Africa +2023-05-02,98940,2847,"[""Phone""]",3999.24,{},16950,0,South America +2023-04-26,98941,1729,"[""Laptop"", ""Keyboard""]",432.8,{},190552,0,Africa +2023-10-01,98942,9073,"[""Wireless Mouse"", ""Phone""]",4467.42,"{"""": ""11%""}",78142,1,South America +2023-09-07,98943,6024,"[""Phone"", ""Wireless Mouse"", ""Monitor""]",4664.19,"{""seasonal"": ""26%""}",31170,0,Europe +2023-10-11,98944,7188,"[""Phone"", ""Wireless Mouse""]",3574.06,{},114060,1,Asia +2023-12-14,98945,833,"[""Tablet""]",997.51,{},71741,0,Europe +2024-08-25,98946,1931,"[""Monitor"", ""Charger""]",943.69,"{""loyalty"": ""15%""}",253381,1,North America +2024-07-16,98947,8863,"[""Laptop""]",4462.22,{},48478,1,Asia +2024-09-13,98948,4003,"[""Tablet"", ""Charger"", ""Phone""]",2029.18,"{""loyalty"": ""9%""}",138030,0,Asia +2023-02-22,98949,898,"[""Laptop""]",4191.24,"{""loyalty"": ""23%""}",143947,1,South America +2023-03-08,98950,9914,"[""Monitor"", ""Keyboard""]",2537.73,{},2318,1,Africa +2023-06-23,98951,4395,"[""Laptop""]",3770.19,{},181556,0,Europe +2023-02-03,98952,8195,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",4880.38,{},232483,1,North America +2024-09-18,98953,8355,"[""Tablet"", ""Phone""]",1453.1,"{""promo"": ""24%""}",185168,1,North America +2023-11-27,98954,985,"[""Monitor"", ""Phone""]",2974.85,"{"""": ""25%""}",121763,1,South America +2024-08-31,98955,8547,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2656.49,"{""loyalty"": ""7%""}",126358,1,North America +2023-08-02,98956,7622,"[""Phone""]",882.36,"{"""": ""13%""}",238928,0,North America +2023-12-06,98957,8433,"[""Monitor""]",2161.3,{},171666,0,Africa +2023-11-05,98958,178,"[""Charger""]",90.88,{},153107,0,South America +2024-09-20,98959,6637,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",709.76,"{""seasonal"": ""16%""}",230160,1,Asia +2023-02-12,98960,4713,"[""Phone"", ""Laptop""]",4865.04,{},229043,0,North America +2023-07-07,98961,9570,"[""Charger""]",1669.14,{},21213,0,North America +2024-04-05,98962,4932,"[""Laptop"", ""Monitor"", ""Charger""]",4442.21,"{""loyalty"": ""8%""}",123114,1,Africa +2024-10-04,98963,3642,"[""Laptop"", ""Headphones""]",4982.84,"{""seasonal"": ""28%""}",69207,1,South America +2024-02-08,98964,4733,"[""Keyboard"", ""Tablet"", ""Monitor""]",501.7,{},71831,1,Europe +2024-03-16,98965,4284,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4297.47,{},66590,1,South America +2023-09-28,98966,1701,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4280.72,"{""loyalty"": ""15%""}",34527,0,North America +2023-02-14,98967,4880,"[""Tablet"", ""Charger"", ""Phone""]",3452.99,{},86646,0,Asia +2023-06-17,98968,1049,"[""Tablet"", ""Charger"", ""Phone""]",3735.37,"{"""": ""30%""}",39899,0,North America +2024-09-14,98969,3309,"[""Wireless Mouse"", ""Keyboard""]",4721.62,{},242674,0,Europe +2023-07-09,98970,3785,"[""Monitor""]",1782.98,{},279823,0,Asia +2024-01-29,98971,7358,"[""Wireless Mouse""]",2962.56,{},62373,1,Europe +2023-01-16,98972,8794,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",4474.3,{},272305,1,North America +2023-10-08,98973,9832,"[""Tablet""]",2974.48,{},1792,0,North America +2023-03-05,98974,1712,"[""Charger"", ""Tablet"", ""Keyboard""]",3708.16,"{""seasonal"": ""29%""}",125542,1,Africa +2023-10-30,98975,9575,"[""Monitor"", ""Phone"", ""Tablet""]",2079.52,"{""promo"": ""25%""}",106863,0,Asia +2023-12-19,98976,1706,"[""Monitor""]",4706.16,{},268462,0,Europe +2024-01-19,98977,7547,"[""Monitor""]",751.07,"{""seasonal"": ""14%""}",77586,0,North America +2023-03-06,98978,6970,"[""Monitor""]",3740.33,"{""loyalty"": ""5%""}",102104,0,Asia +2023-12-29,98979,1409,"[""Headphones"", ""Laptop""]",3955.27,"{""loyalty"": ""23%""}",244860,0,South America +2024-10-04,98980,1619,"[""Keyboard""]",3464.13,{},271250,0,Africa +2024-08-26,98981,1010,"[""Laptop"", ""Charger""]",3310.0,"{""promo"": ""27%""}",118371,1,South America +2024-03-28,98982,3109,"[""Headphones""]",3803.79,"{""loyalty"": ""22%""}",139419,0,Asia +2023-09-03,98983,9764,"[""Phone""]",2014.33,{},274866,1,Asia +2024-04-21,98984,9363,"[""Headphones"", ""Keyboard"", ""Tablet""]",2158.05,"{""promo"": ""29%""}",246769,1,Africa +2024-10-31,98985,7124,"[""Keyboard"", ""Charger"", ""Laptop""]",2179.83,"{"""": ""14%""}",219474,0,Africa +2024-11-22,98986,4534,"[""Phone"", ""Tablet"", ""Laptop""]",3843.44,{},223013,0,Asia +2024-02-16,98987,3956,"[""Monitor"", ""Tablet""]",3693.11,"{""loyalty"": ""29%""}",69838,1,Europe +2024-07-10,98988,3910,"[""Headphones"", ""Monitor""]",1368.65,{},127377,1,Asia +2023-12-13,98989,9322,"[""Tablet"", ""Laptop""]",4532.79,{},114941,1,Europe +2024-03-22,98990,3301,"[""Phone""]",1024.05,"{""loyalty"": ""29%""}",268957,0,North America +2023-08-23,98991,8489,"[""Phone"", ""Keyboard""]",905.83,{},47868,1,Asia +2023-05-31,98992,2458,"[""Laptop""]",3223.5,"{""seasonal"": ""13%""}",137884,0,Africa +2023-10-20,98993,5615,"[""Tablet"", ""Keyboard""]",2427.37,{},110029,1,South America +2024-12-19,98994,5503,"[""Monitor"", ""Tablet""]",2653.47,"{"""": ""14%""}",74126,1,South America +2024-11-26,98995,1096,"[""Tablet"", ""Phone"", ""Wireless Mouse""]",973.02,{},177089,0,South America +2023-01-14,98996,3835,"[""Laptop"", ""Phone"", ""Charger""]",548.82,{},44221,1,Africa +2024-10-16,98997,6652,"[""Wireless Mouse""]",4790.82,"{""loyalty"": ""8%""}",128661,0,Europe +2023-09-16,98998,128,"[""Monitor"", ""Charger"", ""Laptop""]",4425.14,"{""seasonal"": ""16%""}",173167,0,South America +2024-12-05,98999,9557,"[""Wireless Mouse"", ""Keyboard"", ""Phone""]",3138.11,{},135741,1,North America +2023-06-03,99000,9512,"[""Phone""]",3501.22,"{""promo"": ""19%""}",218461,1,Asia +2023-06-13,99001,5684,"[""Phone""]",2948.18,"{""loyalty"": ""10%""}",148233,1,Africa +2024-10-16,99002,6103,"[""Laptop""]",687.93,{},179003,0,South America +2023-06-15,99003,627,"[""Charger"", ""Monitor""]",4470.83,"{""seasonal"": ""30%""}",156610,1,North America +2023-12-30,99004,1736,"[""Monitor"", ""Charger""]",4150.0,"{""seasonal"": ""25%""}",246943,1,North America +2024-06-10,99005,668,"[""Phone"", ""Wireless Mouse""]",324.65,"{""loyalty"": ""19%""}",43013,0,Asia +2024-11-15,99006,8216,"[""Tablet"", ""Keyboard""]",2887.67,{},15165,0,Africa +2023-04-13,99007,6238,"[""Phone"", ""Tablet""]",1737.63,"{""seasonal"": ""19%""}",263654,1,Europe +2023-01-10,99008,6176,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",2627.58,{},234258,0,Europe +2024-06-01,99009,7234,"[""Keyboard"", ""Laptop"", ""Headphones""]",3268.21,{},275947,0,Europe +2023-09-14,99010,9491,"[""Monitor"", ""Keyboard""]",2925.21,{},58955,1,Africa +2024-05-23,99011,8442,"[""Wireless Mouse"", ""Keyboard"", ""Headphones""]",90.74,"{""seasonal"": ""11%""}",173074,0,Africa +2024-02-25,99012,5898,"[""Phone"", ""Headphones""]",1854.4,"{""loyalty"": ""22%""}",98057,0,South America +2023-09-30,99013,7079,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",169.98,"{""loyalty"": ""7%""}",289271,0,Europe +2023-05-10,99014,4050,"[""Tablet"", ""Keyboard"", ""Laptop""]",1788.87,"{"""": ""20%""}",89014,0,Asia +2023-01-29,99015,5907,"[""Keyboard"", ""Tablet""]",4726.64,"{""loyalty"": ""18%""}",142907,1,Europe +2024-06-07,99016,4115,"[""Monitor""]",3106.04,"{""promo"": ""28%""}",195407,1,North America +2024-10-18,99017,8115,"[""Charger""]",1149.04,{},32668,0,North America +2024-03-25,99018,1143,"[""Monitor""]",1292.83,{},248338,0,Asia +2024-06-01,99019,4278,"[""Wireless Mouse""]",3120.91,"{""loyalty"": ""9%""}",92504,0,Europe +2024-01-26,99020,9833,"[""Tablet"", ""Charger""]",3645.24,{},95762,1,Europe +2023-02-23,99021,9607,"[""Phone"", ""Keyboard"", ""Charger""]",1319.11,"{"""": ""16%""}",234144,1,Africa +2023-09-17,99022,1908,"[""Headphones"", ""Laptop""]",4991.43,{},60509,0,Europe +2024-05-28,99023,3705,"[""Tablet""]",1313.38,{},23296,0,South America +2024-02-01,99024,5199,"[""Tablet"", ""Phone""]",2709.83,{},232163,0,North America +2024-09-25,99025,2900,"[""Laptop""]",3934.49,{},249399,1,Europe +2023-03-30,99026,3123,"[""Headphones"", ""Phone"", ""Keyboard""]",1355.64,{},30228,1,South America +2023-05-23,99027,8088,"[""Charger"", ""Tablet"", ""Keyboard""]",1140.22,{},70339,0,Africa +2023-02-13,99028,4070,"[""Monitor"", ""Charger""]",4542.06,{},192992,0,Africa +2023-06-11,99029,3203,"[""Keyboard"", ""Tablet""]",224.87,"{""seasonal"": ""23%""}",177493,1,Europe +2023-09-20,99030,8708,"[""Keyboard"", ""Laptop"", ""Tablet""]",2033.48,{},211110,0,South America +2024-04-10,99031,2535,"[""Wireless Mouse"", ""Charger"", ""Phone""]",694.76,"{""seasonal"": ""14%""}",212251,1,South America +2023-06-15,99032,7516,"[""Laptop"", ""Tablet"", ""Charger""]",4245.6,"{"""": ""28%""}",14844,1,North America +2024-03-15,99033,2357,"[""Laptop""]",3472.91,{},18302,1,South America +2023-12-23,99034,959,"[""Charger""]",563.43,"{""promo"": ""17%""}",62783,1,South America +2024-11-25,99035,2654,"[""Keyboard"", ""Wireless Mouse""]",2225.88,{},40151,0,North America +2023-02-26,99036,2932,"[""Keyboard"", ""Wireless Mouse"", ""Headphones""]",4845.87,"{"""": ""19%""}",296451,1,North America +2023-12-14,99037,7550,"[""Tablet"", ""Phone""]",2571.65,"{""promo"": ""18%""}",290921,0,South America +2024-12-19,99038,9254,"[""Phone""]",4827.06,"{""promo"": ""19%""}",175360,0,Asia +2023-10-14,99039,1909,"[""Laptop"", ""Keyboard""]",3441.37,"{""promo"": ""30%""}",173036,0,Africa +2023-01-25,99040,1707,"[""Monitor"", ""Phone"", ""Headphones""]",1727.42,"{""seasonal"": ""28%""}",145572,1,North America +2024-05-14,99041,4357,"[""Laptop"", ""Phone"", ""Keyboard""]",3315.43,"{""promo"": ""11%""}",123194,1,Europe +2023-08-11,99042,8656,"[""Headphones"", ""Tablet""]",998.35,"{""seasonal"": ""21%""}",14337,1,Europe +2023-01-01,99043,3652,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",3505.72,{},214507,1,South America +2023-07-04,99044,60,"[""Tablet""]",3001.34,"{""promo"": ""6%""}",122173,0,South America +2024-06-19,99045,7742,"[""Headphones"", ""Tablet""]",2156.15,{},64333,0,North America +2024-04-22,99046,2001,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",3720.19,"{""seasonal"": ""9%""}",230950,1,Asia +2024-08-16,99047,3486,"[""Charger""]",1843.45,"{""promo"": ""24%""}",101719,1,Africa +2024-11-15,99048,3542,"[""Laptop"", ""Charger""]",268.73,"{""promo"": ""10%""}",75796,0,Europe +2024-02-19,99049,1311,"[""Keyboard""]",956.17,{},16671,1,Europe +2023-06-07,99050,3892,"[""Keyboard"", ""Laptop""]",4443.59,"{"""": ""11%""}",268140,1,Europe +2024-05-18,99051,3214,"[""Headphones""]",2385.42,"{"""": ""27%""}",40567,0,Asia +2024-06-24,99052,7110,"[""Laptop"", ""Wireless Mouse""]",4115.53,"{"""": ""23%""}",9557,1,Africa +2023-12-30,99053,629,"[""Headphones"", ""Charger""]",2313.05,"{"""": ""8%""}",281497,1,Asia +2023-12-05,99054,9521,"[""Keyboard"", ""Laptop"", ""Charger""]",1791.53,{},90475,0,Asia +2023-05-30,99055,9914,"[""Monitor"", ""Wireless Mouse""]",1960.06,"{"""": ""12%""}",69472,0,North America +2024-10-24,99056,3639,"[""Keyboard""]",3634.3,{},295927,0,South America +2024-05-25,99057,4083,"[""Laptop"", ""Monitor""]",3180.84,{},56184,0,Africa +2024-03-16,99058,1574,"[""Headphones""]",1914.3,{},245861,1,Europe +2023-10-11,99059,4224,"[""Phone""]",3339.54,"{""promo"": ""21%""}",263402,0,South America +2023-09-03,99060,8507,"[""Charger"", ""Keyboard""]",3395.81,{},208990,1,Europe +2023-11-15,99061,4114,"[""Tablet"", ""Phone""]",3551.62,"{""seasonal"": ""25%""}",61652,0,Africa +2023-05-26,99062,3481,"[""Phone"", ""Headphones"", ""Keyboard""]",2765.82,"{""seasonal"": ""28%""}",233829,1,Africa +2023-06-07,99063,3108,"[""Wireless Mouse"", ""Headphones"", ""Laptop""]",3239.87,{},254340,1,North America +2024-08-12,99064,3927,"[""Keyboard""]",3723.69,"{""loyalty"": ""30%""}",70330,1,North America +2024-03-12,99065,3971,"[""Charger"", ""Phone""]",3805.65,{},1357,0,South America +2023-06-28,99066,2038,"[""Laptop"", ""Monitor"", ""Charger""]",386.55,"{""promo"": ""10%""}",105426,1,South America +2023-03-23,99067,5326,"[""Headphones""]",3467.36,{},236245,1,South America +2023-04-03,99068,4457,"[""Phone"", ""Keyboard""]",230.59,"{"""": ""18%""}",195813,1,Europe +2023-06-17,99069,624,"[""Keyboard""]",2288.74,{},7502,1,North America +2023-07-07,99070,8768,"[""Tablet"", ""Phone"", ""Laptop""]",3615.74,"{""seasonal"": ""18%""}",268310,1,South America +2024-07-04,99071,3917,"[""Phone"", ""Charger"", ""Tablet""]",59.87,{},113948,0,North America +2024-04-08,99072,8273,"[""Laptop""]",3835.89,{},133998,0,South America +2023-01-01,99073,7483,"[""Headphones""]",2795.54,"{""promo"": ""10%""}",238767,1,Asia +2023-09-03,99074,6450,"[""Phone"", ""Headphones"", ""Keyboard""]",4932.88,"{""promo"": ""25%""}",121874,0,North America +2024-06-20,99075,8980,"[""Headphones"", ""Monitor"", ""Keyboard""]",4777.4,"{""promo"": ""30%""}",265093,1,Asia +2024-05-08,99076,7642,"[""Laptop"", ""Monitor"", ""Keyboard""]",4255.83,"{"""": ""11%""}",99505,0,Asia +2023-04-23,99077,3817,"[""Laptop""]",2145.15,{},19088,0,North America +2023-05-04,99078,5021,"[""Tablet""]",683.27,"{"""": ""27%""}",96169,0,Africa +2023-07-13,99079,1515,"[""Charger""]",210.64,"{""loyalty"": ""27%""}",73630,0,North America +2023-09-21,99080,3714,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",4414.37,"{""seasonal"": ""24%""}",155389,0,Asia +2024-06-26,99081,3933,"[""Charger"", ""Laptop""]",1902.69,{},267746,0,South America +2023-09-09,99082,9895,"[""Phone""]",1065.25,{},7176,1,North America +2024-01-26,99083,2253,"[""Monitor"", ""Tablet""]",4540.39,{},118543,0,Africa +2023-10-29,99084,8867,"[""Charger""]",1401.1,{},283273,1,South America +2024-09-01,99085,2844,"[""Laptop"", ""Monitor"", ""Keyboard""]",292.63,{},151858,1,Asia +2024-05-08,99086,7746,"[""Tablet"", ""Laptop"", ""Wireless Mouse""]",3132.62,{},188727,0,South America +2023-05-18,99087,9249,"[""Keyboard""]",4576.11,{},95635,1,South America +2024-07-30,99088,7704,"[""Headphones""]",2370.3,"{""seasonal"": ""12%""}",124506,0,North America +2024-06-13,99089,1640,"[""Charger"", ""Tablet""]",274.24,"{"""": ""10%""}",70419,0,Asia +2023-11-22,99090,2519,"[""Monitor"", ""Charger"", ""Laptop""]",3435.88,"{"""": ""18%""}",161182,1,South America +2023-09-25,99091,7849,"[""Charger"", ""Monitor"", ""Tablet""]",1122.87,"{"""": ""8%""}",78101,1,North America +2024-12-03,99092,4607,"[""Charger"", ""Laptop"", ""Tablet""]",4597.16,{},111667,0,North America +2024-09-02,99093,309,"[""Monitor"", ""Laptop""]",2157.08,{},254491,1,North America +2023-09-03,99094,4046,"[""Wireless Mouse"", ""Laptop""]",241.46,"{""loyalty"": ""24%""}",66103,1,Asia +2024-09-19,99095,7765,"[""Tablet"", ""Monitor"", ""Headphones""]",998.74,{},268079,1,Africa +2023-06-14,99096,6516,"[""Charger"", ""Keyboard""]",807.58,{},139371,1,Europe +2024-04-12,99097,6805,"[""Keyboard""]",4001.87,"{""promo"": ""29%""}",291111,1,Europe +2024-07-21,99098,7990,"[""Headphones"", ""Keyboard"", ""Monitor""]",3398.33,{},196547,0,Asia +2024-01-05,99099,6925,"[""Headphones"", ""Monitor"", ""Laptop""]",4470.82,{},160446,0,South America +2024-04-30,99100,8870,"[""Keyboard""]",1386.04,"{""loyalty"": ""25%""}",220667,1,South America +2023-08-27,99101,8199,"[""Monitor"", ""Laptop""]",2877.55,{},216815,0,Asia +2024-02-28,99102,4244,"[""Headphones"", ""Charger""]",2943.72,"{""promo"": ""28%""}",209592,1,Europe +2023-02-08,99103,933,"[""Wireless Mouse"", ""Monitor""]",1923.13,{},121472,1,Europe +2024-10-05,99104,852,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",3711.54,"{""promo"": ""27%""}",27978,1,Europe +2023-06-19,99105,4472,"[""Tablet""]",4606.0,{},121200,1,North America +2024-05-04,99106,3553,"[""Tablet""]",3624.66,"{""loyalty"": ""17%""}",228063,1,Africa +2024-08-21,99107,2612,"[""Phone""]",3093.62,{},222773,1,Europe +2023-10-06,99108,8812,"[""Phone"", ""Headphones"", ""Charger""]",1245.05,"{""seasonal"": ""11%""}",98733,0,South America +2023-05-05,99109,8652,"[""Tablet"", ""Laptop""]",786.61,"{"""": ""25%""}",213579,0,Africa +2023-04-18,99110,6090,"[""Phone"", ""Headphones""]",4773.45,"{""seasonal"": ""9%""}",232967,1,Asia +2023-02-11,99111,4116,"[""Tablet"", ""Keyboard"", ""Phone""]",1262.69,"{"""": ""22%""}",190985,1,North America +2023-01-24,99112,3896,"[""Charger""]",3293.39,"{""promo"": ""28%""}",16064,1,Asia +2023-09-28,99113,3632,"[""Charger"", ""Monitor"", ""Headphones""]",3010.09,"{"""": ""18%""}",201878,0,Africa +2023-06-18,99114,3922,"[""Wireless Mouse"", ""Monitor""]",2589.1,"{""promo"": ""17%""}",270227,0,South America +2023-06-01,99115,8238,"[""Laptop"", ""Charger"", ""Tablet""]",2979.97,"{"""": ""15%""}",107869,0,Africa +2024-11-27,99116,8757,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",265.65,"{""loyalty"": ""17%""}",139621,1,Asia +2023-12-20,99117,9608,"[""Laptop"", ""Charger""]",2788.39,{},272169,1,Africa +2024-11-20,99118,6686,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",3561.19,"{""seasonal"": ""8%""}",292267,0,North America +2023-06-13,99119,7822,"[""Tablet"", ""Phone""]",2705.17,"{""promo"": ""27%""}",222771,0,Asia +2023-08-30,99120,5209,"[""Monitor"", ""Tablet""]",3529.54,{},265439,0,Europe +2023-05-03,99121,471,"[""Headphones"", ""Phone"", ""Tablet""]",2041.99,"{""promo"": ""12%""}",232127,1,South America +2023-11-29,99122,8179,"[""Headphones"", ""Laptop""]",4004.06,{},239376,0,Africa +2023-06-16,99123,6594,"[""Tablet"", ""Monitor""]",4245.51,{},42451,0,Asia +2023-11-16,99124,2869,"[""Wireless Mouse"", ""Laptop""]",653.74,"{""loyalty"": ""24%""}",11270,0,Asia +2024-05-21,99125,4316,"[""Monitor"", ""Wireless Mouse"", ""Phone""]",1760.1,{},140967,0,Asia +2024-07-16,99126,9957,"[""Headphones""]",3473.71,{},297599,1,Africa +2024-06-12,99127,9566,"[""Keyboard"", ""Monitor"", ""Headphones""]",737.95,"{"""": ""26%""}",158570,0,Europe +2023-12-28,99128,6559,"[""Tablet"", ""Headphones"", ""Laptop""]",4932.14,"{""seasonal"": ""17%""}",188587,1,Africa +2023-05-03,99129,4598,"[""Laptop""]",2767.15,"{"""": ""29%""}",150881,0,Asia +2024-05-06,99130,410,"[""Headphones"", ""Tablet"", ""Laptop""]",4623.55,"{""seasonal"": ""10%""}",252814,1,South America +2023-11-24,99131,8011,"[""Charger"", ""Monitor""]",3762.13,"{""seasonal"": ""16%""}",53753,1,Africa +2024-08-09,99132,2097,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3915.05,"{""seasonal"": ""13%""}",15314,1,North America +2024-06-28,99133,3867,"[""Headphones"", ""Tablet"", ""Keyboard""]",4476.24,{},254429,1,Europe +2023-02-28,99134,5078,"[""Monitor"", ""Wireless Mouse""]",3707.97,"{""seasonal"": ""17%""}",155139,1,Africa +2024-10-08,99135,8130,"[""Wireless Mouse"", ""Phone"", ""Tablet""]",266.1,"{""seasonal"": ""11%""}",130844,1,South America +2023-06-24,99136,7078,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",3463.03,{},271697,1,Europe +2024-09-28,99137,3936,"[""Wireless Mouse"", ""Charger"", ""Laptop""]",3259.64,"{"""": ""15%""}",121134,0,Asia +2024-09-07,99138,7456,"[""Keyboard""]",1207.68,"{"""": ""16%""}",284236,0,North America +2023-07-07,99139,8045,"[""Tablet"", ""Phone""]",4492.64,{},83109,0,Europe +2023-03-11,99140,5045,"[""Tablet"", ""Monitor""]",2591.15,{},181637,1,South America +2023-12-26,99141,3432,"[""Headphones"", ""Keyboard"", ""Monitor""]",414.41,{},187783,1,Europe +2023-12-16,99142,5115,"[""Charger"", ""Tablet"", ""Keyboard""]",4709.08,"{""promo"": ""23%""}",85064,1,Europe +2023-10-05,99143,397,"[""Tablet"", ""Keyboard""]",1064.53,"{"""": ""5%""}",110051,1,North America +2023-11-15,99144,2034,"[""Laptop"", ""Charger""]",2973.25,"{""promo"": ""6%""}",82444,1,Asia +2023-08-26,99145,7558,"[""Charger"", ""Phone""]",3181.46,{},137622,1,North America +2023-07-17,99146,9907,"[""Headphones"", ""Keyboard""]",2335.97,{},252687,0,Asia +2024-07-26,99147,9519,"[""Monitor""]",3391.35,{},222215,0,South America +2024-10-27,99148,1979,"[""Monitor"", ""Charger""]",4664.01,{},127143,0,North America +2024-06-07,99149,3840,"[""Laptop""]",1165.87,{},100528,1,Europe +2024-04-27,99150,5867,"[""Tablet""]",748.7,{},25833,0,Europe +2023-05-20,99151,2409,"[""Headphones""]",2846.5,"{""loyalty"": ""9%""}",209724,1,Asia +2024-11-21,99152,138,"[""Keyboard"", ""Headphones""]",444.85,{},256814,0,Europe +2024-09-07,99153,274,"[""Tablet"", ""Keyboard"", ""Monitor""]",2812.43,"{"""": ""25%""}",192155,1,Africa +2024-08-19,99154,257,"[""Tablet"", ""Headphones"", ""Laptop""]",1300.25,"{""loyalty"": ""21%""}",123668,1,South America +2023-03-17,99155,5847,"[""Headphones""]",580.03,{},53772,1,Asia +2023-05-28,99156,9651,"[""Charger"", ""Monitor"", ""Keyboard""]",3845.15,"{"""": ""16%""}",207183,0,North America +2023-01-23,99157,7342,"[""Phone"", ""Headphones"", ""Laptop""]",2004.68,"{""promo"": ""20%""}",168508,0,Asia +2024-10-02,99158,8614,"[""Phone"", ""Charger"", ""Monitor""]",3737.26,{},137432,0,Asia +2024-05-26,99159,9379,"[""Keyboard""]",3889.1,{},156245,0,Africa +2023-09-01,99160,482,"[""Charger""]",2548.32,"{""seasonal"": ""11%""}",199339,0,Asia +2023-01-24,99161,9714,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",4130.17,{},143510,0,Asia +2023-12-26,99162,3571,"[""Wireless Mouse"", ""Laptop""]",4080.64,{},168054,0,Africa +2023-09-01,99163,5920,"[""Monitor"", ""Laptop""]",3831.93,"{""loyalty"": ""16%""}",94593,0,South America +2023-05-23,99164,5878,"[""Tablet"", ""Monitor"", ""Wireless Mouse""]",944.31,"{""loyalty"": ""9%""}",269733,1,Asia +2024-07-22,99165,7708,"[""Tablet""]",4862.8,"{""promo"": ""6%""}",68199,0,Europe +2023-09-09,99166,2372,"[""Tablet"", ""Keyboard"", ""Headphones""]",1565.5,"{""promo"": ""6%""}",293000,1,Asia +2023-10-26,99167,8375,"[""Keyboard"", ""Phone"", ""Laptop""]",877.02,{},262292,1,Asia +2024-01-28,99168,6204,"[""Wireless Mouse""]",2167.71,"{"""": ""21%""}",110177,1,North America +2023-12-08,99169,6167,"[""Phone"", ""Tablet""]",1032.62,"{""promo"": ""22%""}",202401,1,North America +2024-04-02,99170,8048,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",885.02,"{""seasonal"": ""30%""}",90377,1,Africa +2023-10-12,99171,5152,"[""Tablet""]",2055.58,"{""loyalty"": ""22%""}",103902,1,Africa +2024-08-22,99172,1164,"[""Headphones""]",352.22,"{"""": ""8%""}",9505,1,South America +2023-05-04,99173,235,"[""Headphones"", ""Monitor"", ""Phone""]",1714.82,{},270086,1,Asia +2023-07-04,99174,4817,"[""Laptop""]",179.97,{},234941,1,South America +2024-12-12,99175,3454,"[""Wireless Mouse"", ""Keyboard"", ""Laptop""]",1173.29,"{""seasonal"": ""10%""}",169368,0,Africa +2023-09-17,99176,7931,"[""Tablet""]",1772.46,{},106980,0,Africa +2023-07-26,99177,4296,"[""Laptop"", ""Headphones""]",3971.73,"{"""": ""9%""}",266853,1,Africa +2023-09-29,99178,2821,"[""Charger"", ""Monitor"", ""Laptop""]",4442.73,{},275392,1,South America +2023-02-01,99179,6153,"[""Headphones""]",1252.99,"{""seasonal"": ""6%""}",215390,0,Europe +2024-04-10,99180,2065,"[""Phone""]",661.22,{},260655,0,North America +2023-12-28,99181,8184,"[""Keyboard""]",4143.95,"{""promo"": ""15%""}",12752,0,Africa +2023-04-02,99182,8324,"[""Phone"", ""Tablet"", ""Charger""]",2839.02,"{"""": ""16%""}",227106,0,South America +2024-10-18,99183,7570,"[""Wireless Mouse"", ""Monitor""]",1379.91,"{"""": ""8%""}",254370,1,North America +2023-08-04,99184,4281,"[""Headphones""]",4376.81,{},74455,0,Asia +2024-10-06,99185,6796,"[""Laptop"", ""Charger""]",2604.94,"{"""": ""11%""}",220962,0,Europe +2024-01-04,99186,3162,"[""Headphones"", ""Laptop""]",1391.91,"{""promo"": ""7%""}",221391,1,Africa +2023-01-01,99187,8194,"[""Phone"", ""Wireless Mouse""]",909.52,{},103113,1,Africa +2023-11-08,99188,6353,"[""Headphones"", ""Keyboard"", ""Monitor""]",4046.81,"{""seasonal"": ""8%""}",124631,1,Asia +2023-05-05,99189,1737,"[""Headphones"", ""Wireless Mouse"", ""Keyboard""]",4320.98,"{""promo"": ""19%""}",131032,1,Africa +2023-07-01,99190,2787,"[""Charger"", ""Headphones""]",1635.91,"{""loyalty"": ""14%""}",57261,0,Africa +2023-04-18,99191,9930,"[""Wireless Mouse"", ""Phone""]",2860.42,"{""promo"": ""24%""}",296416,0,North America +2024-04-21,99192,17,"[""Wireless Mouse"", ""Headphones""]",3237.63,"{""seasonal"": ""12%""}",207595,0,South America +2023-11-09,99193,3034,"[""Phone""]",55.84,{},17376,1,Europe +2024-05-17,99194,9951,"[""Wireless Mouse""]",1575.27,"{""promo"": ""27%""}",180603,1,North America +2023-03-07,99195,8510,"[""Monitor"", ""Phone""]",3760.36,{},50536,0,Asia +2023-03-20,99196,3064,"[""Wireless Mouse""]",1907.73,"{""promo"": ""22%""}",103533,1,South America +2024-09-07,99197,972,"[""Wireless Mouse""]",1706.34,{},91333,0,North America +2024-02-07,99198,2006,"[""Keyboard""]",4796.83,{},98731,1,Asia +2023-08-31,99199,3901,"[""Wireless Mouse"", ""Phone""]",2018.45,"{""promo"": ""14%""}",95160,1,Asia +2023-05-31,99200,5306,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",4372.36,"{""loyalty"": ""10%""}",297699,0,North America +2023-04-27,99201,8408,"[""Monitor""]",2651.6,{},236406,0,Africa +2024-11-05,99202,9718,"[""Monitor""]",2404.42,"{"""": ""9%""}",218068,1,South America +2024-05-12,99203,919,"[""Phone"", ""Keyboard"", ""Tablet""]",2298.43,"{""loyalty"": ""14%""}",256096,1,Europe +2024-02-18,99204,8440,"[""Wireless Mouse""]",1373.92,"{""promo"": ""5%""}",299871,1,South America +2024-10-29,99205,9295,"[""Monitor"", ""Headphones""]",961.82,{},205308,0,Europe +2024-12-24,99206,7681,"[""Phone"", ""Headphones""]",4363.16,"{""seasonal"": ""22%""}",141992,1,Asia +2024-04-20,99207,2245,"[""Wireless Mouse"", ""Phone""]",3661.2,{},289060,1,Europe +2024-11-27,99208,1733,"[""Keyboard"", ""Monitor""]",3084.26,{},188646,1,Europe +2024-10-29,99209,956,"[""Phone"", ""Charger""]",518.11,"{""promo"": ""18%""}",103186,1,Asia +2023-04-19,99210,4670,"[""Wireless Mouse"", ""Tablet""]",4659.65,{},125224,1,South America +2024-06-14,99211,6345,"[""Headphones"", ""Laptop"", ""Charger""]",1375.11,{},293743,0,Europe +2024-07-05,99212,3522,"[""Charger""]",2136.12,{},120292,1,Africa +2024-12-21,99213,3104,"[""Phone"", ""Monitor""]",1930.98,{},145302,1,North America +2023-06-25,99214,7463,"[""Phone"", ""Monitor""]",1865.84,"{"""": ""17%""}",27037,1,North America +2024-01-25,99215,4334,"[""Wireless Mouse"", ""Charger""]",1211.11,"{"""": ""7%""}",228692,1,South America +2024-07-15,99216,3404,"[""Laptop"", ""Monitor""]",780.43,"{""promo"": ""8%""}",200168,1,Africa +2023-03-13,99217,1894,"[""Wireless Mouse""]",993.43,{},214809,1,Asia +2024-10-23,99218,8288,"[""Charger"", ""Keyboard""]",4963.83,{},169929,0,Africa +2024-04-02,99219,3822,"[""Phone""]",2695.06,{},182229,1,North America +2024-09-12,99220,803,"[""Tablet"", ""Phone""]",2738.83,{},210744,1,Asia +2024-11-30,99221,2530,"[""Laptop""]",3988.02,"{"""": ""22%""}",40354,0,Asia +2024-09-18,99222,4938,"[""Monitor"", ""Keyboard""]",2978.56,{},248008,0,North America +2024-06-03,99223,4288,"[""Headphones"", ""Tablet"", ""Charger""]",882.49,{},152173,0,Asia +2024-03-18,99224,8470,"[""Laptop"", ""Monitor""]",2565.39,"{"""": ""5%""}",55746,1,North America +2024-03-16,99225,8467,"[""Tablet"", ""Charger"", ""Keyboard""]",3868.7,"{"""": ""5%""}",162278,0,North America +2023-05-23,99226,4223,"[""Headphones"", ""Keyboard""]",63.88,"{""loyalty"": ""16%""}",151520,0,Africa +2023-12-24,99227,1558,"[""Charger""]",711.65,"{""seasonal"": ""9%""}",215088,1,North America +2023-10-31,99228,7311,"[""Phone""]",3260.76,{},111389,1,South America +2023-06-22,99229,4327,"[""Wireless Mouse"", ""Laptop""]",2010.95,"{""loyalty"": ""14%""}",241838,0,Africa +2023-01-14,99230,8344,"[""Monitor"", ""Tablet""]",1653.4,"{""promo"": ""13%""}",295844,1,Asia +2024-02-16,99231,5089,"[""Laptop""]",1636.08,"{"""": ""30%""}",93028,0,Africa +2024-12-13,99232,1183,"[""Keyboard""]",1401.21,"{""loyalty"": ""28%""}",225992,0,South America +2024-07-19,99233,7804,"[""Headphones"", ""Tablet"", ""Wireless Mouse""]",4346.28,"{""seasonal"": ""8%""}",64219,1,North America +2023-10-21,99234,732,"[""Keyboard""]",710.96,"{""seasonal"": ""6%""}",18254,0,Asia +2024-12-29,99235,7587,"[""Laptop"", ""Headphones""]",363.11,{},183298,1,Europe +2023-01-29,99236,8106,"[""Phone"", ""Wireless Mouse""]",2198.69,"{"""": ""26%""}",133493,0,Asia +2024-03-01,99237,2588,"[""Wireless Mouse"", ""Tablet"", ""Charger""]",2739.08,"{"""": ""22%""}",73544,1,Europe +2023-07-26,99238,7939,"[""Keyboard""]",1041.42,{},217748,1,North America +2024-04-16,99239,3620,"[""Monitor"", ""Wireless Mouse""]",2837.16,"{""loyalty"": ""20%""}",105951,0,South America +2024-11-05,99240,4675,"[""Headphones"", ""Laptop"", ""Tablet""]",2145.56,{},33363,1,Africa +2024-05-05,99241,6318,"[""Keyboard"", ""Tablet""]",4296.04,{},212382,1,Africa +2024-01-22,99242,6219,"[""Keyboard""]",2039.57,{},109872,0,North America +2024-04-16,99243,8159,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4776.51,"{""seasonal"": ""14%""}",62402,1,Africa +2024-03-07,99244,3262,"[""Phone"", ""Laptop""]",2397.84,{},240712,1,South America +2023-06-27,99245,5548,"[""Laptop""]",4222.87,{},127127,1,Asia +2023-05-23,99246,191,"[""Wireless Mouse"", ""Phone"", ""Laptop""]",2613.11,{},206037,1,Asia +2024-01-23,99247,6999,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",2183.28,"{"""": ""25%""}",116538,0,South America +2023-09-14,99248,5928,"[""Headphones""]",4679.93,"{"""": ""27%""}",75680,0,North America +2023-05-17,99249,1079,"[""Phone""]",2680.72,"{""loyalty"": ""7%""}",196162,1,Europe +2024-06-02,99250,7470,"[""Tablet"", ""Laptop""]",4115.6,{},176795,0,North America +2023-10-19,99251,6594,"[""Wireless Mouse"", ""Keyboard"", ""Tablet""]",930.94,{},221478,0,Africa +2023-01-03,99252,8997,"[""Keyboard""]",1567.62,{},290462,1,Europe +2024-03-05,99253,4369,"[""Phone"", ""Keyboard"", ""Monitor""]",3255.42,{},95295,1,South America +2024-03-12,99254,6842,"[""Tablet"", ""Monitor"", ""Laptop""]",2142.21,"{""loyalty"": ""21%""}",271497,0,South America +2023-10-30,99255,6999,"[""Monitor"", ""Laptop""]",4899.47,"{""promo"": ""18%""}",91417,0,Africa +2024-07-01,99256,178,"[""Tablet"", ""Monitor""]",3803.65,{},134262,0,Europe +2024-12-31,99257,7404,"[""Monitor""]",2782.36,{},167413,1,Asia +2024-08-30,99258,4731,"[""Headphones"", ""Tablet""]",3039.75,"{"""": ""19%""}",271820,0,North America +2024-07-12,99259,6338,"[""Headphones"", ""Phone"", ""Monitor""]",440.97,{},280335,1,Asia +2024-11-06,99260,9520,"[""Monitor""]",2668.73,{},248293,0,North America +2023-10-28,99261,4227,"[""Charger"", ""Wireless Mouse""]",353.11,{},84158,0,Africa +2024-08-12,99262,347,"[""Tablet""]",1116.43,{},234115,0,Europe +2024-05-29,99263,6133,"[""Headphones"", ""Monitor"", ""Tablet""]",3756.96,{},146738,1,Africa +2024-04-10,99264,8499,"[""Charger""]",929.96,"{""seasonal"": ""20%""}",198411,0,South America +2024-09-08,99265,6331,"[""Laptop"", ""Charger"", ""Keyboard""]",4265.09,"{"""": ""14%""}",149051,0,North America +2023-06-29,99266,6393,"[""Keyboard""]",2347.84,"{"""": ""25%""}",158963,1,South America +2023-06-06,99267,5206,"[""Phone"", ""Keyboard"", ""Monitor""]",591.29,{},163727,1,Africa +2023-03-15,99268,96,"[""Headphones"", ""Phone"", ""Tablet""]",2931.37,"{""loyalty"": ""18%""}",83527,0,Europe +2024-12-06,99269,5483,"[""Keyboard"", ""Headphones"", ""Phone""]",3232.27,{},222579,1,Asia +2024-05-26,99270,4930,"[""Laptop"", ""Phone""]",489.81,{},35898,0,Asia +2023-10-07,99271,7364,"[""Monitor"", ""Headphones""]",554.32,{},139537,0,North America +2023-11-27,99272,109,"[""Wireless Mouse""]",4805.9,"{""promo"": ""29%""}",33822,1,Africa +2023-02-15,99273,7787,"[""Monitor"", ""Laptop""]",2159.37,{},91840,1,Africa +2024-02-15,99274,3221,"[""Headphones"", ""Laptop""]",468.0,{},94182,0,Asia +2023-02-19,99275,5862,"[""Phone"", ""Charger""]",4547.15,"{""promo"": ""25%""}",180667,0,Africa +2024-02-06,99276,7757,"[""Headphones"", ""Phone""]",4936.92,"{""loyalty"": ""25%""}",191436,0,North America +2023-04-25,99277,1369,"[""Tablet""]",266.8,"{""loyalty"": ""19%""}",76438,0,North America +2024-04-14,99278,6310,"[""Monitor"", ""Charger""]",1024.43,"{""loyalty"": ""10%""}",221607,0,Asia +2024-05-03,99279,6972,"[""Tablet"", ""Monitor"", ""Headphones""]",3728.09,"{""promo"": ""19%""}",230441,0,South America +2024-02-18,99280,5816,"[""Keyboard"", ""Wireless Mouse"", ""Phone""]",4987.76,"{""loyalty"": ""7%""}",85392,0,Asia +2024-03-19,99281,6149,"[""Phone"", ""Keyboard""]",2637.42,{},291427,0,North America +2023-02-04,99282,4420,"[""Wireless Mouse""]",2648.99,{},226349,0,South America +2024-06-20,99283,254,"[""Tablet""]",4373.06,{},193712,0,North America +2024-02-08,99284,8215,"[""Charger"", ""Keyboard"", ""Tablet""]",2842.48,"{""promo"": ""25%""}",202719,1,North America +2023-10-14,99285,2636,"[""Wireless Mouse""]",2736.62,{},104953,1,South America +2024-04-09,99286,9053,"[""Wireless Mouse""]",4228.95,{},72420,1,South America +2023-12-07,99287,4447,"[""Phone"", ""Monitor""]",1831.09,"{""promo"": ""9%""}",246984,1,Asia +2024-03-18,99288,9653,"[""Keyboard"", ""Phone"", ""Charger""]",3803.46,"{""seasonal"": ""17%""}",231454,0,North America +2024-09-22,99289,6612,"[""Charger"", ""Tablet""]",3929.8,{},293048,1,Asia +2023-06-15,99290,1414,"[""Wireless Mouse"", ""Charger"", ""Tablet""]",2622.64,{},206157,0,Asia +2024-05-17,99291,1605,"[""Charger"", ""Headphones"", ""Phone""]",403.6,{},28812,1,Asia +2023-04-01,99292,2018,"[""Phone"", ""Tablet"", ""Charger""]",3200.5,"{""seasonal"": ""22%""}",211825,1,South America +2024-02-24,99293,7568,"[""Charger"", ""Tablet"", ""Phone""]",2109.69,"{""seasonal"": ""18%""}",118423,1,Africa +2024-03-12,99294,200,"[""Monitor""]",1696.1,{},148148,0,South America +2024-03-15,99295,4713,"[""Keyboard"", ""Charger""]",2828.2,{},148608,1,South America +2024-10-01,99296,7228,"[""Wireless Mouse"", ""Monitor""]",4646.83,"{""promo"": ""30%""}",165782,1,South America +2023-10-28,99297,9996,"[""Wireless Mouse""]",3725.38,"{""loyalty"": ""14%""}",186787,1,Africa +2023-09-09,99298,7657,"[""Tablet"", ""Laptop""]",3876.03,"{""loyalty"": ""13%""}",82662,0,North America +2023-12-05,99299,9120,"[""Headphones""]",3203.18,{},62911,1,Africa +2023-03-06,99300,4673,"[""Keyboard""]",4684.56,{},124858,1,North America +2024-11-03,99301,5636,"[""Headphones"", ""Monitor""]",4707.72,{},16050,1,North America +2024-09-27,99302,3597,"[""Charger"", ""Tablet"", ""Laptop""]",99.13,{},21270,1,Europe +2023-09-06,99303,5772,"[""Charger"", ""Monitor""]",4799.9,{},215488,1,Africa +2023-07-22,99304,1981,"[""Keyboard""]",4208.01,{},172202,1,Europe +2023-12-15,99305,4253,"[""Tablet""]",1112.06,{},155037,1,South America +2023-09-07,99306,2357,"[""Laptop""]",2884.7,{},99759,0,Africa +2023-10-31,99307,1532,"[""Monitor"", ""Wireless Mouse"", ""Laptop""]",4938.49,{},61269,0,Africa +2023-11-11,99308,5860,"[""Charger""]",365.84,"{""loyalty"": ""30%""}",86711,1,Asia +2024-03-14,99309,6742,"[""Charger"", ""Headphones"", ""Phone""]",3679.17,{},99369,0,North America +2024-08-11,99310,6645,"[""Keyboard"", ""Wireless Mouse""]",4397.48,"{""promo"": ""5%""}",38438,0,South America +2024-09-29,99311,593,"[""Charger""]",1375.46,"{""promo"": ""8%""}",26450,1,South America +2023-02-27,99312,6403,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",181.0,"{""promo"": ""15%""}",178382,0,South America +2024-09-16,99313,2021,"[""Monitor"", ""Tablet""]",673.91,{},110893,1,Africa +2024-08-02,99314,6783,"[""Headphones""]",1317.14,{},190754,0,Asia +2024-05-21,99315,5244,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",1824.14,{},161743,1,Africa +2024-07-30,99316,1784,"[""Monitor"", ""Laptop"", ""Charger""]",194.09,{},74265,1,Africa +2023-08-11,99317,9660,"[""Charger""]",2985.02,"{""promo"": ""5%""}",178127,0,South America +2024-04-04,99318,2290,"[""Wireless Mouse""]",3547.7,"{""loyalty"": ""9%""}",49455,0,Africa +2024-04-24,99319,8569,"[""Laptop"", ""Charger"", ""Phone""]",4871.76,"{""seasonal"": ""24%""}",165274,1,South America +2023-06-25,99320,5769,"[""Charger""]",1714.0,{},92392,0,Asia +2023-11-28,99321,4076,"[""Phone"", ""Tablet""]",2381.04,"{""promo"": ""30%""}",32996,1,North America +2024-10-24,99322,2410,"[""Phone"", ""Charger""]",620.64,"{""seasonal"": ""11%""}",175252,1,North America +2024-09-07,99323,2926,"[""Monitor"", ""Laptop""]",4152.92,"{""promo"": ""18%""}",199943,0,Africa +2023-12-27,99324,1149,"[""Wireless Mouse"", ""Headphones""]",4277.75,{},213665,0,South America +2023-04-23,99325,1588,"[""Keyboard"", ""Laptop""]",1018.78,{},238556,1,South America +2023-01-19,99326,4299,"[""Monitor"", ""Wireless Mouse""]",3621.42,"{""loyalty"": ""15%""}",284641,0,South America +2024-06-09,99327,4774,"[""Phone""]",3681.97,{},58430,0,Europe +2024-03-30,99328,9550,"[""Laptop"", ""Headphones"", ""Wireless Mouse""]",4429.96,{},141598,1,Europe +2023-09-05,99329,4675,"[""Laptop"", ""Tablet""]",4380.1,{},65021,0,North America +2024-10-05,99330,3086,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",4925.81,{},165340,0,Africa +2024-10-27,99331,1066,"[""Headphones"", ""Wireless Mouse""]",3400.25,"{""loyalty"": ""19%""}",201433,0,South America +2024-03-05,99332,4374,"[""Phone"", ""Keyboard"", ""Tablet""]",924.99,{},13176,0,North America +2024-04-16,99333,8864,"[""Laptop"", ""Headphones""]",2287.12,{},262191,0,Asia +2023-01-23,99334,8284,"[""Wireless Mouse"", ""Charger""]",4246.71,"{""promo"": ""8%""}",260491,0,Europe +2023-06-17,99335,5847,"[""Charger""]",323.11,"{""seasonal"": ""16%""}",290325,0,Europe +2023-10-23,99336,7770,"[""Wireless Mouse"", ""Monitor""]",4846.7,"{"""": ""7%""}",57468,0,Asia +2024-01-23,99337,8340,"[""Laptop""]",1206.41,"{""seasonal"": ""27%""}",296248,0,Africa +2023-09-18,99338,4789,"[""Laptop""]",363.58,{},199951,0,North America +2023-09-08,99339,6036,"[""Tablet"", ""Phone"", ""Headphones""]",1237.95,"{"""": ""6%""}",107986,0,North America +2023-11-28,99340,7416,"[""Charger""]",4904.98,"{""loyalty"": ""10%""}",287920,0,North America +2024-09-23,99341,7264,"[""Phone""]",388.04,{},138165,1,Europe +2023-05-22,99342,4961,"[""Headphones"", ""Keyboard"", ""Phone""]",4622.13,{},116994,0,North America +2024-01-09,99343,7300,"[""Wireless Mouse""]",2165.46,"{""loyalty"": ""22%""}",207066,0,Asia +2023-09-03,99344,8421,"[""Laptop""]",2509.65,{},236589,1,Asia +2024-11-18,99345,7839,"[""Charger"", ""Monitor"", ""Headphones""]",1898.43,"{"""": ""28%""}",219233,1,Europe +2023-02-12,99346,8338,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",2213.66,"{""promo"": ""6%""}",222199,1,Europe +2023-03-16,99347,5144,"[""Monitor"", ""Laptop""]",134.16,{},88294,1,North America +2024-09-22,99348,8419,"[""Charger""]",1220.82,"{""promo"": ""29%""}",181242,0,South America +2024-03-09,99349,2796,"[""Laptop""]",1553.97,"{"""": ""23%""}",279390,1,Asia +2024-05-25,99350,1243,"[""Laptop""]",3692.5,"{""loyalty"": ""29%""}",27221,0,North America +2024-11-14,99351,8323,"[""Phone""]",962.14,"{""promo"": ""12%""}",166778,1,Africa +2024-02-27,99352,7481,"[""Keyboard""]",2395.74,"{""seasonal"": ""18%""}",135872,0,Asia +2023-05-22,99353,6090,"[""Laptop"", ""Headphones"", ""Keyboard""]",3644.82,{},135212,1,Africa +2024-09-11,99354,5421,"[""Laptop"", ""Charger""]",3905.53,"{""seasonal"": ""30%""}",211109,0,Europe +2024-03-31,99355,8766,"[""Wireless Mouse"", ""Monitor"", ""Laptop""]",3311.66,{},146152,0,Europe +2024-03-10,99356,4839,"[""Charger"", ""Tablet"", ""Wireless Mouse""]",1534.13,"{""loyalty"": ""19%""}",17552,0,Asia +2024-08-24,99357,2069,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",156.41,"{""promo"": ""30%""}",223802,0,Asia +2024-01-12,99358,3797,"[""Phone"", ""Charger""]",79.68,"{"""": ""26%""}",266546,0,Europe +2023-10-09,99359,8115,"[""Keyboard"", ""Tablet""]",1195.95,"{""loyalty"": ""11%""}",281221,1,Asia +2023-10-16,99360,5804,"[""Wireless Mouse"", ""Monitor"", ""Headphones""]",1580.53,{},201491,0,Asia +2023-11-19,99361,1732,"[""Laptop"", ""Headphones""]",4280.31,"{""loyalty"": ""10%""}",141307,1,South America +2024-07-03,99362,8377,"[""Wireless Mouse"", ""Charger"", ""Phone""]",2480.27,{},111462,1,Europe +2024-05-14,99363,681,"[""Keyboard"", ""Wireless Mouse""]",71.6,"{"""": ""10%""}",41817,1,South America +2023-04-03,99364,4651,"[""Keyboard"", ""Wireless Mouse""]",584.75,"{"""": ""26%""}",104553,0,South America +2023-11-21,99365,1966,"[""Tablet"", ""Phone""]",656.11,{},29188,1,Europe +2023-09-26,99366,1250,"[""Laptop""]",2253.13,{},76524,0,Asia +2024-10-11,99367,3316,"[""Headphones""]",2623.81,{},85340,1,South America +2024-09-25,99368,605,"[""Phone"", ""Headphones"", ""Charger""]",2831.54,"{""promo"": ""17%""}",222418,1,Africa +2024-03-08,99369,2405,"[""Monitor""]",1499.94,"{""promo"": ""17%""}",69603,1,Europe +2024-04-23,99370,5209,"[""Charger""]",2724.05,"{""promo"": ""19%""}",61907,0,South America +2024-07-23,99371,9234,"[""Headphones""]",4423.58,{},120260,0,Africa +2024-07-02,99372,7800,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",2580.35,"{""loyalty"": ""5%""}",184099,0,Africa +2024-12-18,99373,4449,"[""Keyboard"", ""Phone"", ""Wireless Mouse""]",4366.81,{},51163,1,Asia +2023-06-28,99374,6742,"[""Wireless Mouse""]",3011.58,{},76889,1,North America +2024-06-27,99375,5422,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",1624.4,"{"""": ""5%""}",56851,1,South America +2024-12-21,99376,2387,"[""Headphones"", ""Laptop""]",4001.28,"{""seasonal"": ""19%""}",228802,0,Asia +2023-08-05,99377,1733,"[""Charger"", ""Keyboard""]",2763.45,{},160534,1,Europe +2024-05-30,99378,2116,"[""Laptop"", ""Keyboard""]",1848.83,{},53590,1,North America +2024-04-03,99379,5301,"[""Keyboard""]",232.93,{},264917,1,Asia +2023-11-12,99380,9860,"[""Wireless Mouse"", ""Monitor""]",2255.24,"{""promo"": ""24%""}",37591,0,North America +2024-01-14,99381,7596,"[""Keyboard""]",1933.1,"{""seasonal"": ""6%""}",243181,0,Africa +2023-11-10,99382,611,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",2537.81,"{""promo"": ""8%""}",167857,1,North America +2023-06-10,99383,5414,"[""Headphones"", ""Keyboard"", ""Phone""]",1155.64,{},76707,0,North America +2024-07-02,99384,8280,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",2991.91,{},103228,1,Africa +2023-10-12,99385,3993,"[""Monitor"", ""Headphones""]",941.32,{},141701,1,South America +2024-03-11,99386,7117,"[""Keyboard"", ""Tablet"", ""Charger""]",431.95,{},204865,1,North America +2023-07-02,99387,2891,"[""Phone""]",4579.23,"{""promo"": ""26%""}",284314,0,North America +2023-07-13,99388,4288,"[""Tablet"", ""Monitor"", ""Laptop""]",2935.99,{},172075,1,Asia +2023-09-06,99389,119,"[""Tablet"", ""Phone"", ""Monitor""]",114.1,"{""promo"": ""29%""}",6378,0,Europe +2024-06-06,99390,2599,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",4735.24,{},223221,0,Europe +2023-06-14,99391,5343,"[""Monitor""]",2981.26,"{""seasonal"": ""15%""}",71946,1,Africa +2024-11-03,99392,1660,"[""Tablet"", ""Phone"", ""Laptop""]",4268.73,"{""loyalty"": ""21%""}",22185,1,Asia +2023-01-26,99393,8335,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4464.3,{},54831,0,South America +2024-08-01,99394,5644,"[""Monitor"", ""Keyboard"", ""Laptop""]",2345.64,{},109666,0,North America +2023-04-04,99395,2114,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",3676.35,{},202217,0,Asia +2023-04-27,99396,9324,"[""Monitor"", ""Charger"", ""Wireless Mouse""]",1195.94,"{""seasonal"": ""19%""}",95368,0,South America +2023-07-31,99397,1510,"[""Headphones"", ""Wireless Mouse""]",4489.84,"{""seasonal"": ""7%""}",229086,1,Europe +2024-06-19,99398,6829,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",2010.6,{},236106,1,Europe +2024-07-13,99399,45,"[""Wireless Mouse""]",3195.0,"{""seasonal"": ""18%""}",155363,0,North America +2023-02-07,99400,3671,"[""Keyboard""]",4382.34,"{"""": ""29%""}",258339,0,Europe +2023-08-21,99401,8911,"[""Phone""]",2148.09,{},44821,1,Europe +2024-08-20,99402,8685,"[""Tablet"", ""Phone"", ""Keyboard""]",1932.96,{},10989,0,Asia +2023-01-21,99403,7577,"[""Phone"", ""Monitor"", ""Keyboard""]",745.97,{},288475,0,South America +2024-01-21,99404,2651,"[""Headphones"", ""Laptop"", ""Monitor""]",3785.8,"{"""": ""20%""}",253909,1,North America +2024-07-26,99405,9640,"[""Phone""]",3100.91,"{""promo"": ""17%""}",270497,1,Africa +2023-12-17,99406,6013,"[""Laptop"", ""Phone"", ""Headphones""]",2299.31,{},6160,0,Europe +2024-01-16,99407,532,"[""Headphones""]",682.64,"{"""": ""26%""}",173479,1,South America +2024-11-08,99408,2443,"[""Phone""]",3087.48,"{""loyalty"": ""28%""}",9567,1,Africa +2024-02-21,99409,3527,"[""Tablet"", ""Wireless Mouse""]",3119.95,"{""loyalty"": ""21%""}",98915,1,Africa +2023-01-15,99410,1712,"[""Charger"", ""Keyboard""]",1149.01,{},234091,0,Asia +2024-03-10,99411,5117,"[""Phone"", ""Monitor"", ""Charger""]",4944.48,{},242116,1,Africa +2024-03-23,99412,7613,"[""Tablet"", ""Keyboard"", ""Phone""]",3508.49,"{""seasonal"": ""24%""}",286610,0,South America +2024-02-22,99413,1298,"[""Phone""]",2001.57,{},8168,0,Africa +2023-06-30,99414,4418,"[""Laptop"", ""Keyboard"", ""Headphones""]",3583.83,{},60117,1,Europe +2023-11-30,99415,9168,"[""Monitor""]",2355.72,{},233038,0,South America +2024-08-23,99416,4045,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1529.65,"{""promo"": ""12%""}",69610,0,Africa +2023-01-11,99417,5083,"[""Tablet"", ""Laptop""]",909.42,{},221658,1,Africa +2023-07-04,99418,1817,"[""Charger"", ""Headphones"", ""Keyboard""]",3081.63,{},137968,1,Europe +2024-10-14,99419,8725,"[""Headphones"", ""Phone""]",581.47,"{""seasonal"": ""16%""}",291553,1,North America +2024-04-17,99420,1311,"[""Wireless Mouse"", ""Phone""]",2945.95,{},219291,1,Europe +2024-09-24,99421,5134,"[""Laptop"", ""Phone"", ""Tablet""]",3039.6,{},33702,0,South America +2023-11-14,99422,5531,"[""Laptop"", ""Monitor""]",2095.97,{},113496,0,Asia +2024-07-10,99423,9258,"[""Monitor""]",3154.87,"{"""": ""16%""}",265818,0,Europe +2024-02-29,99424,5243,"[""Monitor""]",4077.29,"{"""": ""15%""}",150513,1,Africa +2023-06-01,99425,819,"[""Wireless Mouse"", ""Charger""]",4878.35,"{""loyalty"": ""20%""}",82284,0,Africa +2024-06-02,99426,8900,"[""Tablet"", ""Wireless Mouse"", ""Keyboard""]",3621.55,{},224634,1,South America +2023-10-11,99427,7734,"[""Tablet"", ""Headphones""]",409.59,"{""promo"": ""13%""}",155481,0,North America +2024-11-11,99428,7123,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",1451.72,"{""promo"": ""13%""}",191644,0,Africa +2023-11-16,99429,6329,"[""Laptop"", ""Monitor"", ""Headphones""]",617.85,"{""promo"": ""12%""}",59575,1,Europe +2024-05-01,99430,1351,"[""Tablet"", ""Wireless Mouse""]",766.99,"{""loyalty"": ""12%""}",43777,0,Europe +2023-02-03,99431,235,"[""Keyboard"", ""Tablet"", ""Monitor""]",3652.71,"{"""": ""7%""}",93756,1,Europe +2023-07-09,99432,9329,"[""Charger"", ""Wireless Mouse"", ""Tablet""]",1697.35,{},236153,0,South America +2024-03-14,99433,9958,"[""Monitor""]",1154.7,{},196640,0,North America +2023-09-13,99434,2078,"[""Laptop"", ""Tablet"", ""Monitor""]",4996.84,"{""loyalty"": ""13%""}",172919,1,Europe +2024-05-18,99435,5144,"[""Wireless Mouse""]",126.26,{},2866,0,North America +2024-01-02,99436,4603,"[""Headphones"", ""Monitor"", ""Wireless Mouse""]",3808.63,"{""promo"": ""26%""}",38730,0,Africa +2024-02-09,99437,7758,"[""Wireless Mouse""]",3402.95,"{""promo"": ""13%""}",112555,1,Africa +2024-06-15,99438,8556,"[""Headphones"", ""Phone"", ""Wireless Mouse""]",3198.17,"{""loyalty"": ""11%""}",240946,0,North America +2024-11-03,99439,2740,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",2781.08,"{""promo"": ""28%""}",99029,0,Asia +2024-08-12,99440,7675,"[""Keyboard"", ""Laptop"", ""Tablet""]",2477.42,"{"""": ""12%""}",215825,1,Asia +2024-11-13,99441,7983,"[""Headphones"", ""Keyboard"", ""Tablet""]",376.31,"{""promo"": ""19%""}",255077,0,Asia +2023-07-16,99442,7761,"[""Tablet""]",2645.8,"{"""": ""18%""}",144400,0,South America +2024-01-14,99443,4597,"[""Phone"", ""Laptop""]",2498.6,"{""seasonal"": ""15%""}",262379,1,Europe +2023-02-17,99444,5188,"[""Laptop"", ""Wireless Mouse"", ""Keyboard""]",127.28,"{"""": ""8%""}",109224,0,Africa +2024-07-08,99445,4921,"[""Monitor"", ""Phone""]",1607.23,{},159382,0,Asia +2024-09-22,99446,6524,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",391.55,{},251672,1,North America +2023-03-11,99447,3173,"[""Phone"", ""Charger""]",311.2,"{"""": ""16%""}",63859,1,Asia +2023-11-07,99448,3398,"[""Monitor"", ""Laptop""]",3939.52,"{""loyalty"": ""19%""}",93513,1,South America +2024-05-19,99449,7071,"[""Laptop"", ""Headphones"", ""Tablet""]",2665.9,"{""seasonal"": ""9%""}",204518,0,Europe +2023-10-31,99450,1148,"[""Headphones"", ""Laptop"", ""Phone""]",4452.67,"{""loyalty"": ""26%""}",34035,0,Europe +2024-11-19,99451,8314,"[""Monitor"", ""Phone"", ""Headphones""]",3267.87,{},173226,0,South America +2023-11-10,99452,9505,"[""Headphones""]",2879.96,{},285834,1,Africa +2024-09-07,99453,1590,"[""Laptop"", ""Keyboard"", ""Phone""]",1701.88,{},34097,0,Africa +2024-09-22,99454,5158,"[""Keyboard"", ""Charger"", ""Tablet""]",258.02,"{""seasonal"": ""21%""}",129497,0,Asia +2024-03-30,99455,3685,"[""Laptop"", ""Headphones"", ""Keyboard""]",3880.13,"{""loyalty"": ""12%""}",276029,1,South America +2023-04-19,99456,2264,"[""Phone""]",4839.77,"{"""": ""6%""}",89524,0,South America +2024-12-07,99457,1567,"[""Monitor"", ""Tablet"", ""Charger""]",3939.96,{},99727,0,Asia +2024-04-29,99458,8877,"[""Laptop""]",3417.01,"{"""": ""19%""}",128668,0,Asia +2024-08-21,99459,2755,"[""Wireless Mouse"", ""Tablet"", ""Monitor""]",2269.61,{},32074,0,Europe +2024-03-11,99460,3791,"[""Wireless Mouse""]",1058.98,{},117160,1,South America +2023-06-20,99461,9988,"[""Tablet"", ""Charger""]",2341.83,{},64227,0,South America +2024-06-17,99462,3486,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3855.74,{},168438,0,Africa +2024-05-24,99463,7008,"[""Keyboard"", ""Wireless Mouse"", ""Tablet""]",2911.13,{},22933,0,South America +2023-08-08,99464,5532,"[""Phone"", ""Charger"", ""Monitor""]",1334.47,{},103530,0,North America +2024-06-17,99465,5469,"[""Laptop"", ""Monitor""]",3865.43,{},104747,0,Asia +2023-09-26,99466,4918,"[""Tablet"", ""Headphones""]",3831.49,{},73228,1,Europe +2024-09-10,99467,9411,"[""Monitor"", ""Tablet"", ""Keyboard""]",1423.46,"{""seasonal"": ""8%""}",214967,0,Asia +2024-10-17,99468,8887,"[""Headphones""]",1518.29,{},190740,0,Europe +2024-04-04,99469,8267,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",404.6,{},66745,0,Asia +2023-10-12,99470,3351,"[""Laptop"", ""Monitor""]",2801.48,"{""seasonal"": ""18%""}",116163,0,Africa +2023-12-12,99471,5949,"[""Wireless Mouse"", ""Headphones""]",3319.99,"{""seasonal"": ""7%""}",230096,1,Europe +2024-04-27,99472,5107,"[""Laptop"", ""Phone"", ""Monitor""]",4457.32,"{""loyalty"": ""28%""}",207157,0,North America +2023-03-17,99473,5036,"[""Phone"", ""Keyboard""]",1327.31,{},183629,1,North America +2024-10-09,99474,9823,"[""Phone"", ""Laptop""]",98.94,{},47605,1,Europe +2023-05-07,99475,4480,"[""Monitor""]",2081.16,{},86568,1,North America +2023-05-17,99476,8541,"[""Headphones""]",1740.68,{},139374,0,South America +2023-03-20,99477,8312,"[""Monitor""]",1257.41,{},112888,1,South America +2023-08-26,99478,5744,"[""Tablet"", ""Phone""]",4458.21,{},195946,1,South America +2024-02-13,99479,4905,"[""Monitor""]",3029.82,{},245823,0,Europe +2024-01-20,99480,2925,"[""Headphones"", ""Laptop""]",1678.93,{},53862,0,Europe +2024-04-25,99481,8954,"[""Phone"", ""Keyboard""]",4390.65,{},243576,0,Asia +2024-01-28,99482,48,"[""Headphones""]",1650.84,"{"""": ""24%""}",85052,1,Asia +2023-09-03,99483,3308,"[""Charger"", ""Phone"", ""Headphones""]",2697.39,"{""promo"": ""7%""}",249991,0,Europe +2023-10-25,99484,6381,"[""Wireless Mouse"", ""Tablet""]",4158.35,{},101142,1,Asia +2024-10-07,99485,2628,"[""Phone"", ""Wireless Mouse"", ""Charger""]",4201.0,"{"""": ""20%""}",3437,1,Europe +2024-12-02,99486,9638,"[""Phone"", ""Wireless Mouse"", ""Keyboard""]",272.82,"{"""": ""15%""}",146299,0,South America +2023-06-02,99487,2984,"[""Tablet""]",3201.28,"{""seasonal"": ""25%""}",37547,0,Asia +2023-06-05,99488,2676,"[""Tablet"", ""Charger"", ""Phone""]",3544.11,"{""promo"": ""9%""}",204472,0,North America +2024-03-10,99489,6376,"[""Keyboard"", ""Tablet"", ""Monitor""]",3255.08,"{"""": ""30%""}",31109,0,Europe +2024-05-08,99490,4785,"[""Monitor"", ""Charger"", ""Headphones""]",1917.53,"{""loyalty"": ""23%""}",32907,1,Europe +2023-04-21,99491,510,"[""Phone""]",2325.9,{},110203,1,Asia +2023-10-17,99492,6681,"[""Headphones"", ""Laptop"", ""Keyboard""]",205.86,"{""promo"": ""19%""}",259722,1,North America +2023-10-26,99493,8593,"[""Keyboard""]",608.45,{},36636,0,Africa +2023-04-22,99494,8033,"[""Phone"", ""Monitor""]",261.01,"{""loyalty"": ""10%""}",130433,0,South America +2023-09-24,99495,7260,"[""Laptop""]",4764.69,{},137807,1,Africa +2023-12-20,99496,9806,"[""Tablet""]",295.0,{},277780,1,South America +2023-12-17,99497,1817,"[""Laptop"", ""Charger"", ""Phone""]",1846.35,{},213594,0,Asia +2023-09-23,99498,2616,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",512.43,"{""seasonal"": ""22%""}",245902,1,Africa +2024-08-21,99499,5155,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",4558.61,{},253238,0,Asia +2024-05-25,99500,1916,"[""Headphones"", ""Monitor""]",2894.44,"{""seasonal"": ""25%""}",26154,1,South America +2023-11-07,99501,1710,"[""Monitor"", ""Headphones""]",4283.74,"{""promo"": ""24%""}",288287,1,North America +2023-02-12,99502,8883,"[""Tablet"", ""Laptop""]",4280.76,"{""loyalty"": ""7%""}",261884,0,South America +2023-05-29,99503,4945,"[""Headphones"", ""Tablet""]",3084.24,"{""seasonal"": ""25%""}",244041,0,Europe +2024-10-28,99504,921,"[""Keyboard""]",2892.06,"{""seasonal"": ""20%""}",271401,0,Europe +2024-05-25,99505,6785,"[""Headphones"", ""Keyboard"", ""Charger""]",985.93,"{""promo"": ""27%""}",70181,0,Asia +2024-07-01,99506,4930,"[""Wireless Mouse"", ""Tablet"", ""Keyboard""]",3922.85,{},285954,1,North America +2024-11-11,99507,3473,"[""Monitor"", ""Tablet"", ""Keyboard""]",2681.26,{},66415,0,Asia +2023-09-19,99508,9442,"[""Laptop"", ""Charger""]",1809.46,{},237657,0,North America +2023-07-09,99509,4730,"[""Phone"", ""Laptop"", ""Wireless Mouse""]",3555.46,"{""seasonal"": ""10%""}",226448,1,Europe +2024-10-24,99510,2807,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",4576.44,{},253876,0,North America +2024-09-08,99511,9570,"[""Headphones"", ""Phone""]",3824.77,{},251127,1,Africa +2023-11-26,99512,9900,"[""Monitor""]",804.25,{},152245,1,North America +2023-10-25,99513,6099,"[""Monitor"", ""Charger""]",175.05,{},282763,1,Africa +2023-06-08,99514,9846,"[""Laptop""]",4434.68,"{"""": ""13%""}",294469,1,Africa +2023-01-07,99515,4254,"[""Tablet"", ""Keyboard"", ""Headphones""]",3594.25,"{"""": ""28%""}",131003,1,Africa +2023-05-20,99516,6004,"[""Monitor""]",4857.5,{},206483,0,Asia +2024-07-08,99517,857,"[""Tablet"", ""Phone"", ""Monitor""]",3031.82,"{""promo"": ""13%""}",118518,0,North America +2024-09-13,99518,3917,"[""Tablet"", ""Headphones"", ""Monitor""]",3597.51,"{"""": ""14%""}",136164,1,South America +2024-04-08,99519,5858,"[""Monitor"", ""Keyboard""]",174.05,{},72209,1,South America +2024-07-21,99520,4236,"[""Charger"", ""Tablet""]",3890.66,"{"""": ""9%""}",276340,1,North America +2024-01-28,99521,119,"[""Keyboard""]",1060.69,"{""promo"": ""22%""}",192437,0,South America +2024-11-27,99522,5525,"[""Keyboard"", ""Tablet""]",3107.64,{},88593,0,North America +2023-07-04,99523,2691,"[""Phone"", ""Tablet"", ""Headphones""]",3345.21,"{""loyalty"": ""15%""}",78442,0,Asia +2023-10-17,99524,31,"[""Headphones"", ""Tablet"", ""Phone""]",796.94,{},138166,0,North America +2023-04-27,99525,5095,"[""Wireless Mouse""]",4436.3,"{""promo"": ""16%""}",248851,0,South America +2024-08-13,99526,2215,"[""Laptop""]",2111.76,"{""seasonal"": ""8%""}",11908,0,Africa +2023-11-16,99527,4200,"[""Monitor""]",204.52,"{"""": ""9%""}",205460,0,South America +2024-01-09,99528,1418,"[""Charger"", ""Headphones"", ""Monitor""]",4264.86,"{"""": ""19%""}",140871,1,Africa +2024-11-29,99529,3953,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",470.59,{},75269,1,North America +2023-01-04,99530,9738,"[""Monitor""]",4688.32,{},138698,1,Asia +2024-11-13,99531,4963,"[""Wireless Mouse"", ""Keyboard"", ""Monitor""]",126.37,"{""promo"": ""23%""}",147638,0,North America +2023-11-20,99532,7974,"[""Headphones""]",620.57,{},75996,1,Africa +2023-04-14,99533,8038,"[""Keyboard"", ""Charger"", ""Laptop""]",285.68,"{""promo"": ""30%""}",162558,1,Europe +2023-09-22,99534,1725,"[""Tablet""]",734.51,{},259976,1,South America +2023-02-09,99535,8716,"[""Charger""]",2929.8,"{"""": ""8%""}",88872,1,Europe +2024-09-02,99536,4305,"[""Charger"", ""Keyboard""]",1087.27,"{"""": ""10%""}",164546,1,Europe +2024-05-08,99537,7421,"[""Tablet"", ""Charger""]",3609.06,{},144210,0,North America +2023-12-12,99538,4693,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",3013.17,"{"""": ""7%""}",97878,1,Europe +2024-06-26,99539,3055,"[""Charger"", ""Tablet"", ""Monitor""]",3994.93,"{""loyalty"": ""7%""}",73446,1,Africa +2024-09-23,99540,9782,"[""Laptop""]",1422.98,{},266270,1,South America +2024-04-21,99541,6746,"[""Phone"", ""Charger"", ""Headphones""]",1268.68,{},96361,0,Europe +2024-05-24,99542,458,"[""Wireless Mouse"", ""Monitor""]",3745.42,"{"""": ""11%""}",91137,0,Asia +2023-03-25,99543,4229,"[""Keyboard""]",4350.79,"{"""": ""30%""}",159092,0,Europe +2024-03-03,99544,3125,"[""Wireless Mouse""]",384.08,{},59261,0,South America +2023-09-28,99545,5325,"[""Laptop""]",4353.2,"{""loyalty"": ""15%""}",79649,0,South America +2024-07-04,99546,5401,"[""Laptop"", ""Keyboard"", ""Phone""]",4633.13,"{""seasonal"": ""22%""}",4634,1,Africa +2024-11-20,99547,5178,"[""Headphones"", ""Charger""]",3553.93,{},288596,1,Asia +2024-11-18,99548,94,"[""Laptop""]",2756.06,{},31119,1,Africa +2023-11-24,99549,5857,"[""Keyboard"", ""Tablet"", ""Laptop""]",318.93,"{""promo"": ""11%""}",21953,0,Africa +2024-02-16,99550,9569,"[""Laptop"", ""Keyboard""]",1119.62,{},116541,1,Africa +2024-04-27,99551,169,"[""Phone"", ""Headphones""]",302.48,{},143416,0,Asia +2024-03-13,99552,5938,"[""Charger"", ""Wireless Mouse""]",3956.81,"{""seasonal"": ""15%""}",202937,1,North America +2024-06-03,99553,3196,"[""Monitor"", ""Tablet"", ""Phone""]",871.09,"{""seasonal"": ""18%""}",259479,1,Africa +2023-08-02,99554,8102,"[""Tablet""]",3064.35,"{""promo"": ""9%""}",236980,0,Asia +2023-10-11,99555,7073,"[""Charger"", ""Keyboard"", ""Monitor""]",2196.23,"{"""": ""5%""}",251434,1,South America +2023-06-18,99556,9813,"[""Keyboard""]",2152.05,"{""loyalty"": ""5%""}",117041,1,Asia +2023-08-07,99557,6858,"[""Charger"", ""Keyboard""]",4360.85,"{""seasonal"": ""26%""}",282180,1,Asia +2024-12-26,99558,7864,"[""Headphones"", ""Monitor""]",2734.3,{},37372,1,Europe +2024-04-06,99559,5005,"[""Phone"", ""Keyboard"", ""Laptop""]",4065.88,"{""seasonal"": ""26%""}",228987,1,Asia +2024-03-23,99560,1835,"[""Phone""]",872.03,{},197584,0,South America +2024-07-10,99561,2709,"[""Tablet"", ""Monitor"", ""Phone""]",1118.51,"{""promo"": ""26%""}",204947,1,Asia +2023-08-03,99562,7036,"[""Tablet""]",2421.34,{},276974,1,Africa +2023-12-18,99563,6868,"[""Laptop"", ""Headphones"", ""Monitor""]",3073.48,"{"""": ""26%""}",228386,0,North America +2023-01-19,99564,9989,"[""Headphones""]",2892.11,"{""promo"": ""27%""}",136827,0,North America +2023-02-06,99565,4621,"[""Headphones""]",1859.51,"{""seasonal"": ""21%""}",52574,1,Africa +2023-05-23,99566,6756,"[""Keyboard""]",3303.85,{},142713,0,Africa +2024-10-20,99567,7245,"[""Phone"", ""Charger""]",2946.76,"{""loyalty"": ""13%""}",164695,1,Europe +2024-11-09,99568,8749,"[""Charger""]",1743.89,{},103812,1,South America +2023-03-19,99569,8622,"[""Headphones"", ""Tablet""]",576.32,"{"""": ""21%""}",169652,0,Europe +2023-11-11,99570,93,"[""Keyboard""]",2069.77,{},169199,1,Asia +2024-02-11,99571,1768,"[""Charger"", ""Laptop""]",4183.82,"{""seasonal"": ""14%""}",152058,1,South America +2024-12-06,99572,8544,"[""Tablet"", ""Laptop""]",2995.07,{},208539,0,Europe +2023-06-15,99573,9672,"[""Keyboard"", ""Tablet"", ""Charger""]",4438.44,"{"""": ""10%""}",245655,0,South America +2024-07-19,99574,5434,"[""Charger"", ""Wireless Mouse""]",3095.3,"{""seasonal"": ""24%""}",263213,1,Africa +2024-07-03,99575,7753,"[""Tablet"", ""Charger"", ""Laptop""]",4800.77,{},270590,0,North America +2024-04-22,99576,472,"[""Wireless Mouse""]",3264.78,"{""loyalty"": ""24%""}",263095,0,Asia +2023-05-28,99577,7718,"[""Phone""]",2916.95,{},37098,1,Africa +2023-12-30,99578,4907,"[""Tablet"", ""Laptop"", ""Charger""]",4625.62,{},246973,1,South America +2023-05-28,99579,2757,"[""Charger"", ""Wireless Mouse""]",3584.26,{},3687,1,Europe +2023-02-09,99580,6412,"[""Phone"", ""Wireless Mouse""]",3297.83,{},18422,1,South America +2024-05-14,99581,3387,"[""Tablet"", ""Headphones"", ""Charger""]",2385.35,"{"""": ""5%""}",139646,1,Asia +2024-12-22,99582,4460,"[""Laptop""]",1823.72,{},2978,0,North America +2023-09-22,99583,3201,"[""Headphones""]",2308.67,"{""loyalty"": ""24%""}",171393,0,North America +2023-01-17,99584,3694,"[""Charger"", ""Keyboard""]",4715.18,{},133596,1,Europe +2023-05-26,99585,201,"[""Charger"", ""Laptop"", ""Keyboard""]",4114.57,{},232955,1,North America +2023-10-26,99586,1887,"[""Wireless Mouse""]",3309.52,"{"""": ""18%""}",137636,0,North America +2023-08-09,99587,7666,"[""Laptop"", ""Monitor"", ""Charger""]",1559.57,"{""seasonal"": ""22%""}",61551,1,Asia +2023-07-23,99588,6526,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",3538.33,"{"""": ""9%""}",184582,0,North America +2024-07-20,99589,8803,"[""Headphones"", ""Wireless Mouse""]",590.43,{},183268,0,South America +2023-02-20,99590,2547,"[""Keyboard"", ""Laptop""]",2632.29,{},243795,0,North America +2024-01-01,99591,6139,"[""Keyboard"", ""Charger"", ""Phone""]",3094.07,"{""seasonal"": ""8%""}",277892,1,Africa +2023-10-17,99592,4324,"[""Keyboard"", ""Charger"", ""Monitor""]",1061.88,{},173561,1,Asia +2024-05-30,99593,322,"[""Tablet""]",1731.39,"{""loyalty"": ""26%""}",226135,0,Europe +2024-12-05,99594,4502,"[""Wireless Mouse"", ""Phone"", ""Monitor""]",2676.06,"{""seasonal"": ""23%""}",221837,0,North America +2023-01-26,99595,5360,"[""Tablet""]",4052.64,"{""promo"": ""28%""}",29688,1,Africa +2023-10-10,99596,9111,"[""Wireless Mouse"", ""Charger""]",510.34,"{""seasonal"": ""9%""}",246984,0,Asia +2023-09-05,99597,1866,"[""Charger"", ""Laptop""]",2917.98,"{""promo"": ""28%""}",146457,1,Asia +2024-01-13,99598,3717,"[""Keyboard"", ""Monitor"", ""Phone""]",3746.23,{},216402,0,Africa +2023-08-20,99599,7530,"[""Monitor""]",4401.8,"{"""": ""28%""}",254264,1,South America +2023-05-17,99600,2790,"[""Charger"", ""Phone"", ""Keyboard""]",4118.12,{},135294,1,South America +2023-10-05,99601,2536,"[""Headphones"", ""Keyboard""]",362.81,{},75968,0,Asia +2024-02-24,99602,5947,"[""Laptop"", ""Headphones""]",4233.53,"{""loyalty"": ""26%""}",197659,0,North America +2024-09-20,99603,8364,"[""Tablet"", ""Monitor""]",2565.36,"{"""": ""16%""}",260663,1,South America +2023-04-10,99604,9321,"[""Monitor"", ""Tablet"", ""Charger""]",1271.76,{},146263,0,North America +2023-09-02,99605,1887,"[""Headphones""]",299.84,"{""seasonal"": ""11%""}",225170,0,Asia +2023-02-03,99606,5383,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",803.88,{},149107,1,South America +2024-10-04,99607,1617,"[""Headphones"", ""Phone"", ""Charger""]",1449.95,"{""promo"": ""5%""}",241616,0,North America +2024-08-18,99608,1244,"[""Phone"", ""Keyboard""]",3877.55,"{""seasonal"": ""16%""}",90528,1,Asia +2024-01-29,99609,3239,"[""Charger"", ""Monitor""]",663.11,{},136745,1,South America +2024-05-13,99610,3159,"[""Monitor"", ""Charger""]",4652.72,{},8282,0,Europe +2023-09-10,99611,4622,"[""Keyboard""]",2873.0,{},241997,1,Africa +2024-04-28,99612,2304,"[""Laptop"", ""Keyboard""]",896.47,{},85555,0,Europe +2023-02-17,99613,5402,"[""Headphones"", ""Phone"", ""Monitor""]",4936.22,{},174408,0,South America +2023-11-02,99614,7610,"[""Tablet""]",165.92,{},192978,0,Africa +2024-02-09,99615,3797,"[""Phone"", ""Monitor""]",752.71,"{""loyalty"": ""21%""}",60596,0,Asia +2024-12-12,99616,5536,"[""Tablet""]",883.07,{},147304,0,Asia +2024-07-06,99617,6091,"[""Tablet""]",2583.27,"{"""": ""19%""}",43690,1,North America +2024-04-30,99618,7797,"[""Headphones""]",2137.78,{},89896,0,Europe +2023-07-28,99619,9059,"[""Monitor"", ""Headphones"", ""Laptop""]",2639.44,{},270809,0,South America +2024-11-24,99620,8035,"[""Keyboard"", ""Charger""]",3759.11,{},137379,0,Europe +2024-04-06,99621,3972,"[""Keyboard"", ""Charger"", ""Wireless Mouse""]",1704.82,"{""promo"": ""11%""}",231301,0,South America +2023-07-03,99622,6941,"[""Tablet"", ""Laptop""]",2936.93,"{""loyalty"": ""12%""}",36776,0,Africa +2024-10-08,99623,9385,"[""Headphones"", ""Charger""]",4367.05,"{""promo"": ""9%""}",45299,1,Europe +2023-05-08,99624,8684,"[""Keyboard"", ""Phone""]",4886.72,"{""promo"": ""25%""}",118094,0,Europe +2024-12-28,99625,661,"[""Laptop""]",4649.68,{},241006,1,Asia +2024-03-03,99626,6724,"[""Headphones"", ""Keyboard"", ""Tablet""]",889.75,{},97812,1,Africa +2023-04-16,99627,2023,"[""Phone"", ""Keyboard""]",4763.57,{},270046,1,Asia +2023-02-20,99628,8160,"[""Laptop""]",3597.24,"{""promo"": ""15%""}",260038,1,South America +2023-04-30,99629,7023,"[""Laptop""]",785.86,{},10524,0,North America +2024-08-01,99630,587,"[""Headphones"", ""Wireless Mouse""]",3491.11,"{"""": ""22%""}",92974,0,North America +2023-03-14,99631,6598,"[""Charger""]",2951.74,"{"""": ""28%""}",79615,1,Africa +2024-01-24,99632,8491,"[""Tablet""]",2819.61,{},15097,1,North America +2024-04-12,99633,7409,"[""Charger"", ""Phone"", ""Tablet""]",4046.11,"{"""": ""7%""}",158348,1,South America +2023-02-14,99634,7784,"[""Keyboard"", ""Laptop""]",4604.9,{},60552,0,Asia +2023-03-02,99635,5068,"[""Tablet"", ""Laptop"", ""Charger""]",3560.06,"{""seasonal"": ""11%""}",298223,0,Europe +2024-08-06,99636,5670,"[""Keyboard"", ""Headphones"", ""Phone""]",2635.17,{},142025,1,North America +2023-04-07,99637,8848,"[""Wireless Mouse""]",3082.38,{},71848,1,Asia +2023-05-29,99638,305,"[""Headphones"", ""Wireless Mouse"", ""Phone""]",1192.81,{},152414,1,Africa +2023-04-28,99639,8011,"[""Headphones"", ""Tablet""]",3686.38,{},123439,1,North America +2024-08-06,99640,1939,"[""Tablet"", ""Laptop"", ""Phone""]",1623.3,"{""promo"": ""23%""}",130208,0,Africa +2024-08-15,99641,5943,"[""Keyboard""]",989.2,{},94211,0,North America +2023-01-08,99642,709,"[""Tablet""]",2306.96,"{""promo"": ""17%""}",142582,0,Asia +2024-07-04,99643,8625,"[""Laptop"", ""Phone"", ""Headphones""]",1802.22,{},299491,0,Africa +2023-01-15,99644,6354,"[""Monitor""]",3541.34,{},58746,0,North America +2024-09-07,99645,7761,"[""Headphones"", ""Phone""]",3936.98,{},198927,1,Asia +2024-11-19,99646,7536,"[""Laptop""]",1485.79,"{""seasonal"": ""18%""}",139340,0,South America +2024-05-17,99647,6923,"[""Laptop""]",3410.23,{},275614,0,Asia +2024-08-04,99648,3760,"[""Phone""]",1643.37,"{""seasonal"": ""11%""}",17153,1,North America +2024-10-06,99649,5686,"[""Laptop"", ""Charger""]",4506.58,{},206009,1,Europe +2024-08-16,99650,1644,"[""Wireless Mouse""]",2809.72,{},190129,0,Asia +2024-03-08,99651,4836,"[""Monitor""]",2428.0,{},47694,0,Europe +2024-12-01,99652,8223,"[""Laptop"", ""Keyboard""]",4059.5,{},278605,1,Europe +2024-06-12,99653,7491,"[""Keyboard""]",609.89,"{"""": ""30%""}",155627,0,North America +2023-03-31,99654,1227,"[""Charger""]",2899.41,{},129351,1,Europe +2024-02-22,99655,7079,"[""Laptop""]",3904.45,{},75866,0,North America +2023-03-22,99656,6908,"[""Tablet"", ""Keyboard""]",1863.84,{},183072,1,Asia +2024-03-24,99657,6209,"[""Keyboard""]",2065.99,{},60117,1,North America +2024-11-03,99658,1345,"[""Keyboard"", ""Monitor""]",631.31,{},2347,0,North America +2023-06-27,99659,5290,"[""Tablet"", ""Laptop""]",1593.93,{},51645,0,South America +2024-09-08,99660,4902,"[""Wireless Mouse""]",2493.22,{},205757,0,South America +2023-09-15,99661,3397,"[""Wireless Mouse"", ""Charger"", ""Headphones""]",3671.25,{},230673,0,Europe +2024-07-02,99662,5394,"[""Wireless Mouse"", ""Headphones""]",1454.58,"{""promo"": ""20%""}",95332,0,Asia +2024-04-13,99663,7210,"[""Monitor"", ""Keyboard""]",1039.57,{},59935,1,Asia +2023-09-17,99664,3720,"[""Charger"", ""Laptop"", ""Phone""]",1867.41,"{""loyalty"": ""29%""}",284602,1,Africa +2024-12-31,99665,5327,"[""Wireless Mouse"", ""Headphones""]",3997.48,{},70078,1,North America +2024-10-13,99666,1194,"[""Monitor"", ""Laptop"", ""Charger""]",3351.69,{},114253,0,North America +2023-08-03,99667,5628,"[""Keyboard""]",265.88,"{""seasonal"": ""10%""}",126442,1,South America +2024-07-25,99668,2052,"[""Keyboard""]",2452.23,"{"""": ""8%""}",280201,1,North America +2023-02-28,99669,8347,"[""Charger"", ""Wireless Mouse"", ""Headphones""]",4243.82,{},150481,0,North America +2023-02-17,99670,7071,"[""Keyboard"", ""Phone"", ""Charger""]",722.1,{},181879,0,Europe +2023-12-21,99671,9848,"[""Wireless Mouse"", ""Keyboard""]",4823.42,"{""loyalty"": ""25%""}",130009,1,Asia +2024-11-29,99672,1287,"[""Wireless Mouse"", ""Keyboard""]",4680.15,"{""promo"": ""12%""}",187036,1,Africa +2023-07-02,99673,4287,"[""Headphones"", ""Wireless Mouse"", ""Laptop""]",4571.61,"{""seasonal"": ""17%""}",234656,0,Africa +2023-12-07,99674,7052,"[""Wireless Mouse""]",1759.47,{},22893,0,North America +2024-10-28,99675,620,"[""Phone""]",1294.19,"{""loyalty"": ""23%""}",297771,0,Africa +2023-04-22,99676,7765,"[""Keyboard"", ""Laptop"", ""Phone""]",2806.9,{},232726,1,Europe +2024-12-17,99677,8320,"[""Keyboard"", ""Wireless Mouse"", ""Monitor""]",4820.89,"{""seasonal"": ""14%""}",35484,0,Europe +2024-03-03,99678,8646,"[""Tablet"", ""Laptop"", ""Charger""]",937.7,"{"""": ""18%""}",127200,1,Africa +2024-12-22,99679,8705,"[""Phone"", ""Headphones""]",728.2,{},138183,1,Europe +2024-08-02,99680,6463,"[""Wireless Mouse"", ""Phone""]",359.14,"{"""": ""28%""}",184303,1,Africa +2024-05-26,99681,7665,"[""Keyboard"", ""Headphones""]",1483.12,{},281810,1,South America +2023-05-06,99682,7570,"[""Headphones""]",4443.07,"{"""": ""21%""}",186513,0,North America +2024-11-10,99683,3068,"[""Monitor""]",625.32,{},25740,0,Africa +2023-07-21,99684,3442,"[""Phone""]",1917.39,{},150701,0,Europe +2024-10-18,99685,5793,"[""Keyboard"", ""Charger""]",3903.99,"{""seasonal"": ""14%""}",141323,1,Asia +2024-04-25,99686,3539,"[""Headphones"", ""Tablet""]",4092.21,{},200120,0,South America +2023-07-13,99687,5439,"[""Charger"", ""Keyboard""]",78.54,{},269743,1,North America +2024-12-09,99688,1587,"[""Headphones"", ""Laptop"", ""Phone""]",4325.63,{},83490,1,Africa +2024-01-05,99689,1148,"[""Keyboard"", ""Laptop""]",356.74,{},270275,1,North America +2023-04-30,99690,1270,"[""Wireless Mouse"", ""Monitor"", ""Charger""]",1625.21,{},10877,1,Asia +2024-06-18,99691,1378,"[""Tablet"", ""Charger"", ""Keyboard""]",1624.48,{},100912,0,North America +2024-02-24,99692,1095,"[""Headphones"", ""Monitor"", ""Tablet""]",3594.09,{},117965,0,Africa +2024-03-15,99693,4504,"[""Keyboard""]",4381.5,{},279663,1,Asia +2023-07-26,99694,9527,"[""Charger"", ""Phone"", ""Laptop""]",3229.99,{},84331,0,North America +2024-09-06,99695,9553,"[""Charger"", ""Keyboard"", ""Wireless Mouse""]",4709.69,"{"""": ""27%""}",213631,1,Asia +2024-01-28,99696,7925,"[""Charger"", ""Phone"", ""Laptop""]",1129.01,{},164910,0,North America +2023-11-13,99697,7773,"[""Monitor""]",3038.61,"{""loyalty"": ""6%""}",256660,1,North America +2024-05-27,99698,389,"[""Charger"", ""Wireless Mouse""]",4722.5,{},260938,1,Europe +2024-11-29,99699,6446,"[""Wireless Mouse"", ""Tablet"", ""Laptop""]",246.46,"{""seasonal"": ""20%""}",220282,1,Europe +2024-11-24,99700,811,"[""Tablet"", ""Wireless Mouse"", ""Charger""]",3799.93,{},12904,1,South America +2024-03-21,99701,2078,"[""Wireless Mouse"", ""Keyboard"", ""Charger""]",2967.03,"{""loyalty"": ""5%""}",147832,1,North America +2024-02-10,99702,6183,"[""Keyboard"", ""Wireless Mouse"", ""Laptop""]",3051.6,"{""seasonal"": ""30%""}",296089,0,North America +2024-03-25,99703,4445,"[""Laptop"", ""Tablet"", ""Keyboard""]",3623.59,{},172064,0,Africa +2023-09-25,99704,6734,"[""Charger""]",4479.7,"{""promo"": ""24%""}",114419,1,Europe +2024-06-06,99705,5465,"[""Monitor""]",61.56,{},205689,1,Africa +2024-12-10,99706,2745,"[""Monitor"", ""Tablet"", ""Phone""]",4042.53,"{""promo"": ""5%""}",78028,0,Africa +2024-11-20,99707,5834,"[""Keyboard""]",3746.94,"{"""": ""17%""}",140138,1,North America +2023-10-08,99708,3253,"[""Keyboard"", ""Laptop"", ""Monitor""]",195.36,{},153257,0,North America +2024-04-24,99709,2820,"[""Monitor""]",4861.49,"{""seasonal"": ""20%""}",101539,0,Africa +2024-10-10,99710,1807,"[""Phone""]",3797.99,"{"""": ""22%""}",240193,1,Europe +2024-05-28,99711,3963,"[""Tablet"", ""Headphones"", ""Phone""]",3824.13,"{"""": ""20%""}",250900,1,Europe +2023-06-20,99712,8299,"[""Headphones""]",1265.87,{},166404,1,South America +2023-07-19,99713,3485,"[""Monitor"", ""Keyboard"", ""Wireless Mouse""]",1440.13,{},53404,0,Africa +2023-04-27,99714,4155,"[""Tablet"", ""Monitor""]",4492.53,{},97608,1,North America +2023-09-02,99715,8510,"[""Phone"", ""Laptop"", ""Keyboard""]",723.62,{},130536,1,Asia +2023-07-25,99716,6331,"[""Charger""]",2945.5,"{""seasonal"": ""24%""}",86765,0,Europe +2023-07-22,99717,4677,"[""Headphones"", ""Charger""]",2294.03,{},266116,1,Europe +2024-09-24,99718,9856,"[""Tablet"", ""Monitor""]",4613.91,"{""loyalty"": ""27%""}",165075,1,North America +2023-05-28,99719,5543,"[""Headphones"", ""Keyboard"", ""Laptop""]",516.03,{},118801,1,South America +2024-01-20,99720,9793,"[""Tablet""]",3150.27,{},277786,0,Africa +2023-02-01,99721,8187,"[""Wireless Mouse"", ""Laptop""]",3330.43,"{""loyalty"": ""23%""}",282259,1,North America +2023-05-24,99722,9218,"[""Phone"", ""Laptop""]",3238.4,"{""loyalty"": ""23%""}",257869,0,South America +2024-09-24,99723,8229,"[""Monitor"", ""Keyboard""]",4795.75,"{""seasonal"": ""23%""}",262561,0,North America +2023-04-19,99724,1855,"[""Charger"", ""Keyboard"", ""Laptop""]",4268.69,"{""promo"": ""15%""}",268487,1,South America +2024-11-25,99725,3944,"[""Phone"", ""Charger"", ""Keyboard""]",3386.09,{},11317,0,South America +2023-09-13,99726,1129,"[""Wireless Mouse"", ""Tablet"", ""Phone""]",4531.41,"{""seasonal"": ""25%""}",40615,1,Europe +2023-02-08,99727,7346,"[""Phone"", ""Charger""]",1942.52,{},175918,1,North America +2023-05-01,99728,6662,"[""Headphones""]",3716.17,{},287648,1,Africa +2024-11-22,99729,6278,"[""Phone"", ""Monitor"", ""Tablet""]",1225.34,{},199949,0,North America +2024-01-03,99730,277,"[""Monitor"", ""Laptop"", ""Keyboard""]",615.07,{},250041,0,North America +2023-07-23,99731,8765,"[""Laptop"", ""Headphones""]",3880.72,"{"""": ""29%""}",294588,1,North America +2023-06-24,99732,1083,"[""Laptop"", ""Wireless Mouse""]",1610.65,{},180503,0,Africa +2023-05-08,99733,8739,"[""Laptop""]",2234.62,"{""loyalty"": ""7%""}",66413,1,Europe +2024-01-18,99734,5228,"[""Tablet""]",3139.42,{},65345,0,South America +2024-05-20,99735,8864,"[""Headphones"", ""Keyboard""]",465.65,"{""seasonal"": ""16%""}",250681,1,North America +2023-03-22,99736,429,"[""Phone""]",4897.9,{},183203,1,South America +2024-07-28,99737,8138,"[""Keyboard""]",2695.04,{},167417,0,Europe +2023-09-16,99738,3907,"[""Headphones"", ""Laptop"", ""Tablet""]",2168.67,{},163615,0,North America +2024-10-29,99739,2564,"[""Phone"", ""Tablet"", ""Laptop""]",1667.75,{},53387,0,South America +2023-10-11,99740,6211,"[""Phone"", ""Tablet"", ""Wireless Mouse""]",1684.51,"{""promo"": ""21%""}",198188,1,Asia +2024-07-11,99741,5238,"[""Phone""]",3576.9,{},71680,0,Africa +2023-03-28,99742,1028,"[""Headphones"", ""Phone""]",508.95,{},258695,0,Africa +2023-07-29,99743,3854,"[""Charger"", ""Keyboard""]",56.96,"{""promo"": ""28%""}",116621,0,Asia +2023-08-02,99744,9227,"[""Headphones"", ""Phone"", ""Laptop""]",3665.72,"{"""": ""28%""}",273870,0,South America +2023-08-17,99745,214,"[""Tablet"", ""Headphones"", ""Laptop""]",2451.63,"{""seasonal"": ""7%""}",135434,1,Europe +2024-03-20,99746,3757,"[""Monitor"", ""Headphones""]",4893.09,{},284753,0,Africa +2023-11-22,99747,4492,"[""Laptop"", ""Wireless Mouse"", ""Tablet""]",4019.75,{},298141,0,North America +2023-09-04,99748,5771,"[""Tablet"", ""Headphones"", ""Charger""]",2676.87,{},255811,0,North America +2023-07-26,99749,1909,"[""Laptop"", ""Tablet""]",2569.29,{},63516,0,South America +2023-02-06,99750,7578,"[""Laptop"", ""Wireless Mouse"", ""Phone""]",2935.29,{},39901,1,Africa +2023-12-01,99751,19,"[""Wireless Mouse"", ""Laptop"", ""Tablet""]",2631.71,"{""loyalty"": ""7%""}",187493,0,North America +2023-01-17,99752,2514,"[""Keyboard""]",1432.48,"{"""": ""15%""}",21411,0,Africa +2023-04-05,99753,7369,"[""Charger"", ""Monitor""]",4656.42,{},46947,1,South America +2024-08-29,99754,7639,"[""Wireless Mouse""]",1841.92,{},123191,1,South America +2023-11-18,99755,567,"[""Monitor"", ""Headphones"", ""Phone""]",3018.79,"{""promo"": ""20%""}",1585,1,Africa +2023-02-22,99756,1754,"[""Wireless Mouse""]",4730.08,{},17450,0,South America +2024-08-13,99757,4244,"[""Wireless Mouse""]",2338.61,{},33304,1,Asia +2023-03-20,99758,7469,"[""Tablet"", ""Phone""]",4162.39,"{""seasonal"": ""10%""}",38697,1,Europe +2024-03-28,99759,6508,"[""Monitor"", ""Charger"", ""Phone""]",1595.98,{},173214,0,Europe +2024-12-24,99760,2848,"[""Wireless Mouse"", ""Monitor""]",657.17,{},30032,0,South America +2024-02-06,99761,3719,"[""Monitor"", ""Keyboard""]",1805.3,{},216896,1,Europe +2023-07-27,99762,5595,"[""Charger""]",341.54,{},106503,1,North America +2024-04-06,99763,6965,"[""Headphones"", ""Charger"", ""Wireless Mouse""]",1466.73,"{""loyalty"": ""22%""}",64288,0,Europe +2023-01-01,99764,7184,"[""Monitor""]",1829.85,{},157471,0,Asia +2024-10-23,99765,5899,"[""Charger"", ""Phone"", ""Headphones""]",247.33,"{""loyalty"": ""20%""}",227499,1,North America +2023-02-18,99766,5392,"[""Keyboard""]",2590.21,{},63242,0,Africa +2024-06-11,99767,4245,"[""Keyboard"", ""Headphones"", ""Laptop""]",1189.88,{},23658,0,Asia +2024-09-29,99768,4301,"[""Laptop"", ""Keyboard"", ""Wireless Mouse""]",4937.95,{},21235,1,Europe +2023-01-15,99769,5125,"[""Phone"", ""Monitor""]",4516.05,"{""loyalty"": ""20%""}",78593,0,North America +2023-07-15,99770,713,"[""Keyboard"", ""Phone""]",2812.29,{},223198,1,Europe +2024-02-01,99771,2442,"[""Headphones"", ""Monitor""]",4185.9,"{""seasonal"": ""5%""}",118135,1,Asia +2024-05-26,99772,2629,"[""Tablet"", ""Laptop"", ""Headphones""]",1492.28,{},77207,0,Asia +2023-02-19,99773,1301,"[""Phone"", ""Laptop""]",2075.71,{},232433,0,Asia +2024-11-05,99774,4069,"[""Monitor"", ""Charger""]",4850.24,{},281231,1,Europe +2024-12-16,99775,4626,"[""Phone"", ""Tablet""]",1614.26,{},152284,1,North America +2024-09-07,99776,7499,"[""Tablet""]",1796.54,{},24019,0,Asia +2023-03-30,99777,9734,"[""Charger"", ""Monitor"", ""Tablet""]",2529.02,"{""promo"": ""26%""}",116188,1,South America +2024-06-25,99778,8973,"[""Phone""]",577.97,"{""promo"": ""9%""}",109272,1,Asia +2023-07-08,99779,5893,"[""Charger"", ""Tablet""]",3743.89,{},258924,0,South America +2024-06-04,99780,5309,"[""Keyboard"", ""Phone"", ""Monitor""]",3020.66,{},33641,1,Africa +2023-02-03,99781,1956,"[""Phone""]",151.91,{},293586,1,Europe +2024-03-23,99782,3385,"[""Laptop""]",4395.63,{},157430,1,Africa +2024-08-21,99783,9104,"[""Monitor""]",1995.46,"{""loyalty"": ""17%""}",281108,0,North America +2024-06-24,99784,3521,"[""Headphones""]",108.93,{},275622,1,Asia +2024-06-20,99785,7589,"[""Phone"", ""Tablet"", ""Keyboard""]",754.07,{},32053,1,Africa +2024-06-15,99786,2972,"[""Charger"", ""Phone""]",119.79,"{""promo"": ""5%""}",179799,0,North America +2023-09-23,99787,2508,"[""Tablet"", ""Phone"", ""Monitor""]",4904.77,"{""seasonal"": ""23%""}",108395,0,Asia +2023-11-06,99788,5181,"[""Charger"", ""Phone"", ""Monitor""]",4757.39,{},240171,1,South America +2024-09-12,99789,1908,"[""Charger"", ""Phone""]",111.22,{},189693,1,South America +2024-11-10,99790,8985,"[""Monitor"", ""Phone"", ""Tablet""]",380.7,{},210524,0,South America +2024-08-26,99791,7317,"[""Tablet"", ""Wireless Mouse""]",3561.78,{},127702,0,Asia +2023-01-15,99792,6333,"[""Monitor""]",669.8,"{"""": ""15%""}",163739,1,North America +2024-12-27,99793,4720,"[""Keyboard"", ""Laptop"", ""Wireless Mouse""]",3157.08,{},107531,1,Africa +2024-09-03,99794,5831,"[""Headphones""]",1465.74,"{""promo"": ""22%""}",213853,0,Africa +2023-12-06,99795,8497,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2890.81,"{"""": ""22%""}",226793,1,Asia +2023-06-14,99796,814,"[""Wireless Mouse"", ""Headphones"", ""Monitor""]",1372.95,{},53966,1,North America +2023-08-04,99797,9702,"[""Monitor""]",1551.77,"{""loyalty"": ""26%""}",228872,1,North America +2023-01-03,99798,9504,"[""Charger"", ""Laptop"", ""Phone""]",407.99,"{""seasonal"": ""20%""}",146071,1,Africa +2024-02-20,99799,4200,"[""Laptop"", ""Tablet""]",3471.2,"{""loyalty"": ""8%""}",236923,0,South America +2023-05-05,99800,3256,"[""Wireless Mouse"", ""Monitor"", ""Tablet""]",891.99,{},157682,1,North America +2024-12-29,99801,9706,"[""Keyboard""]",535.36,{},84134,0,North America +2023-02-14,99802,4670,"[""Tablet"", ""Charger""]",188.82,"{"""": ""6%""}",246438,1,Europe +2023-06-10,99803,3537,"[""Headphones"", ""Monitor""]",4029.03,{},127007,0,Asia +2024-12-13,99804,6660,"[""Wireless Mouse"", ""Headphones"", ""Phone""]",2208.11,{},48285,1,Asia +2023-06-04,99805,9608,"[""Tablet"", ""Laptop"", ""Keyboard""]",4031.38,{},163646,1,Asia +2024-07-20,99806,256,"[""Laptop""]",2917.08,{},126456,1,Africa +2024-05-12,99807,5436,"[""Laptop"", ""Tablet"", ""Charger""]",3397.59,"{""seasonal"": ""8%""}",1450,0,South America +2024-02-18,99808,6579,"[""Headphones"", ""Monitor"", ""Tablet""]",1501.73,{},179738,1,North America +2024-08-11,99809,950,"[""Phone"", ""Keyboard"", ""Monitor""]",2428.85,{},204788,0,Asia +2024-04-19,99810,5782,"[""Charger""]",1375.35,"{""loyalty"": ""18%""}",255197,1,Asia +2024-07-23,99811,9442,"[""Tablet"", ""Keyboard""]",2383.47,{},4438,0,North America +2023-12-21,99812,1650,"[""Phone""]",654.4,{},244209,0,North America +2023-06-16,99813,6166,"[""Keyboard"", ""Monitor""]",2166.98,"{""promo"": ""16%""}",199188,0,Africa +2024-09-08,99814,7469,"[""Tablet"", ""Laptop""]",1130.12,"{""promo"": ""20%""}",141584,0,Europe +2023-10-24,99815,6455,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",2602.31,"{""loyalty"": ""27%""}",131114,1,Asia +2024-05-09,99816,2213,"[""Charger""]",2474.97,{},21961,1,South America +2024-04-15,99817,3395,"[""Laptop"", ""Monitor"", ""Headphones""]",210.31,{},147975,1,Europe +2023-04-17,99818,2565,"[""Tablet""]",1364.11,{},164180,1,South America +2023-09-06,99819,3259,"[""Charger""]",3362.8,"{"""": ""19%""}",278458,0,North America +2023-07-07,99820,9720,"[""Tablet"", ""Phone""]",3685.01,"{"""": ""22%""}",243582,0,North America +2024-08-15,99821,3180,"[""Tablet"", ""Charger""]",1644.5,{},190278,1,North America +2023-11-21,99822,3170,"[""Monitor"", ""Charger"", ""Tablet""]",3539.4,"{""promo"": ""20%""}",68475,0,North America +2023-02-04,99823,7776,"[""Charger"", ""Keyboard"", ""Headphones""]",4722.11,"{""promo"": ""9%""}",21132,0,Europe +2024-11-11,99824,5043,"[""Headphones"", ""Keyboard""]",1795.72,{},24602,1,Europe +2023-06-01,99825,7661,"[""Headphones"", ""Keyboard"", ""Charger""]",3661.05,"{"""": ""18%""}",17086,0,Africa +2023-07-08,99826,21,"[""Monitor"", ""Tablet""]",2322.61,"{"""": ""17%""}",228134,0,North America +2024-05-11,99827,7713,"[""Tablet"", ""Monitor""]",1739.14,"{""seasonal"": ""17%""}",65543,0,North America +2024-10-28,99828,2142,"[""Keyboard""]",481.51,"{"""": ""10%""}",248157,0,South America +2024-05-10,99829,4254,"[""Laptop"", ""Charger"", ""Monitor""]",1226.35,"{""promo"": ""18%""}",233179,0,Africa +2023-09-01,99830,6700,"[""Keyboard"", ""Laptop""]",1152.06,{},65463,0,Europe +2023-08-31,99831,1736,"[""Tablet"", ""Headphones""]",854.47,{},260503,1,North America +2023-06-07,99832,4707,"[""Keyboard"", ""Phone""]",2970.48,{},67483,0,North America +2024-10-03,99833,5654,"[""Laptop"", ""Wireless Mouse""]",694.69,{},294549,0,South America +2024-11-16,99834,1208,"[""Headphones"", ""Keyboard""]",4865.54,"{""promo"": ""13%""}",107154,1,Asia +2023-04-01,99835,222,"[""Headphones"", ""Charger""]",4294.62,{},270583,0,Europe +2023-11-24,99836,8825,"[""Monitor"", ""Wireless Mouse"", ""Tablet""]",3602.82,"{""seasonal"": ""12%""}",136072,0,North America +2023-08-15,99837,9649,"[""Charger""]",1470.48,{},186490,0,South America +2023-08-09,99838,7036,"[""Wireless Mouse"", ""Laptop""]",3680.47,"{"""": ""10%""}",194587,0,Africa +2024-03-22,99839,7849,"[""Keyboard""]",4168.6,{},5208,0,South America +2023-11-02,99840,4119,"[""Wireless Mouse""]",4678.81,{},296187,0,Asia +2024-08-30,99841,285,"[""Monitor""]",4571.02,{},248794,1,North America +2024-11-16,99842,2108,"[""Charger"", ""Phone"", ""Headphones""]",1364.89,{},174620,1,Asia +2023-08-06,99843,6370,"[""Phone""]",3010.95,{},46272,0,Europe +2023-12-25,99844,7484,"[""Charger""]",4200.33,{},292973,0,North America +2024-04-13,99845,9886,"[""Tablet""]",2307.67,{},194279,0,North America +2023-11-01,99846,4874,"[""Keyboard""]",2761.43,{},292290,0,South America +2023-05-24,99847,9057,"[""Phone"", ""Headphones"", ""Wireless Mouse""]",1211.43,{},174785,1,Asia +2024-01-25,99848,793,"[""Keyboard"", ""Tablet"", ""Headphones""]",4395.98,"{"""": ""9%""}",188713,1,Europe +2024-03-18,99849,4656,"[""Monitor"", ""Wireless Mouse"", ""Headphones""]",2394.94,{},111016,1,Asia +2023-03-29,99850,803,"[""Charger""]",2570.27,"{""seasonal"": ""6%""}",194022,0,North America +2023-12-20,99851,798,"[""Wireless Mouse"", ""Laptop"", ""Phone""]",3112.99,{},198747,0,Europe +2024-11-15,99852,1438,"[""Laptop"", ""Tablet""]",3368.32,"{""promo"": ""13%""}",106672,0,North America +2023-01-13,99853,7663,"[""Tablet""]",353.51,"{""loyalty"": ""7%""}",168155,0,North America +2023-05-14,99854,7440,"[""Headphones"", ""Monitor""]",2901.34,"{""seasonal"": ""23%""}",34017,0,South America +2023-02-05,99855,2682,"[""Headphones"", ""Monitor""]",2200.37,{},216236,1,Europe +2023-06-25,99856,2635,"[""Headphones""]",312.31,{},6857,1,South America +2023-01-15,99857,241,"[""Phone"", ""Headphones""]",3111.81,{},173715,1,Europe +2024-11-16,99858,2297,"[""Monitor"", ""Phone"", ""Wireless Mouse""]",1655.17,"{""seasonal"": ""12%""}",175326,0,South America +2024-12-27,99859,4199,"[""Keyboard""]",4526.45,{},109584,1,North America +2023-06-30,99860,4536,"[""Laptop"", ""Charger""]",2587.17,{},45885,0,South America +2023-11-30,99861,3911,"[""Keyboard"", ""Phone""]",2015.96,"{""loyalty"": ""30%""}",113868,0,Asia +2023-09-14,99862,1439,"[""Wireless Mouse"", ""Charger""]",3920.89,{},125444,0,South America +2023-09-10,99863,1540,"[""Headphones"", ""Laptop"", ""Tablet""]",4008.83,{},71727,1,North America +2023-08-29,99864,4148,"[""Keyboard""]",1577.11,"{""loyalty"": ""14%""}",91594,0,North America +2024-08-25,99865,8026,"[""Laptop"", ""Monitor""]",2301.1,"{""promo"": ""13%""}",25690,0,Africa +2024-12-05,99866,2992,"[""Monitor"", ""Charger""]",2601.72,{},141194,1,Europe +2024-07-13,99867,3600,"[""Phone"", ""Keyboard""]",3214.17,"{""seasonal"": ""11%""}",189630,0,Asia +2024-06-12,99868,7484,"[""Phone"", ""Headphones"", ""Tablet""]",2846.28,{},149843,1,South America +2023-06-04,99869,8828,"[""Wireless Mouse""]",1776.04,{},290682,0,Africa +2023-12-03,99870,3928,"[""Headphones"", ""Wireless Mouse""]",4166.96,"{""seasonal"": ""13%""}",205476,0,Africa +2023-02-16,99871,2148,"[""Keyboard"", ""Monitor"", ""Tablet""]",838.12,"{""loyalty"": ""20%""}",282208,1,South America +2024-12-16,99872,2698,"[""Headphones"", ""Keyboard"", ""Laptop""]",3463.32,"{""loyalty"": ""28%""}",113891,1,South America +2024-02-14,99873,763,"[""Laptop""]",2196.45,{},189014,1,North America +2024-11-22,99874,2562,"[""Phone""]",3938.57,"{"""": ""24%""}",210919,0,Europe +2023-12-24,99875,9715,"[""Wireless Mouse"", ""Tablet""]",4187.8,{},288750,0,North America +2024-02-09,99876,8684,"[""Tablet"", ""Monitor"", ""Headphones""]",4460.88,{},229572,1,Asia +2023-07-15,99877,4181,"[""Laptop""]",4945.41,{},183246,0,Africa +2023-04-20,99878,3277,"[""Tablet"", ""Headphones"", ""Phone""]",1871.82,{},284170,0,North America +2024-11-22,99879,3660,"[""Tablet"", ""Headphones""]",4618.23,{},6350,0,South America +2024-04-29,99880,7892,"[""Monitor"", ""Tablet""]",3355.76,{},275511,1,South America +2023-08-17,99881,6330,"[""Laptop""]",4667.49,{},14768,0,Europe +2023-06-11,99882,1843,"[""Headphones""]",1251.73,{},245443,0,Asia +2024-12-19,99883,9963,"[""Charger"", ""Wireless Mouse"", ""Phone""]",1996.72,{},148509,1,Asia +2023-03-07,99884,2940,"[""Wireless Mouse"", ""Monitor"", ""Keyboard""]",1228.96,"{""seasonal"": ""17%""}",179893,0,Asia +2023-03-28,99885,3690,"[""Charger"", ""Headphones""]",564.89,{},38534,1,North America +2023-07-30,99886,9758,"[""Charger"", ""Monitor"", ""Headphones""]",2753.61,{},172151,0,Africa +2024-01-12,99887,4774,"[""Monitor"", ""Charger"", ""Headphones""]",4291.49,{},36268,0,Asia +2023-05-09,99888,4139,"[""Keyboard"", ""Tablet""]",603.73,{},215350,0,Europe +2023-05-02,99889,8418,"[""Phone"", ""Tablet""]",4661.63,"{""seasonal"": ""8%""}",100720,0,North America +2024-08-20,99890,3029,"[""Monitor"", ""Laptop""]",4108.2,{},66552,0,North America +2023-09-16,99891,8698,"[""Monitor"", ""Headphones""]",3336.12,{},139432,1,Asia +2024-05-25,99892,3507,"[""Phone"", ""Charger""]",4334.47,{},127694,1,South America +2024-03-17,99893,5590,"[""Keyboard""]",2901.57,{},170014,1,Asia +2024-08-13,99894,2178,"[""Headphones"", ""Monitor"", ""Phone""]",2686.35,"{""loyalty"": ""11%""}",164794,0,North America +2024-07-17,99895,7814,"[""Headphones"", ""Wireless Mouse"", ""Charger""]",4460.93,{},280022,1,North America +2023-12-14,99896,6769,"[""Wireless Mouse""]",2677.44,{},225404,0,Europe +2024-09-20,99897,6224,"[""Laptop"", ""Monitor"", ""Phone""]",2212.85,"{""seasonal"": ""11%""}",284172,0,Africa +2024-09-22,99898,1459,"[""Phone""]",825.58,"{""loyalty"": ""13%""}",32415,1,Europe +2023-09-23,99899,8897,"[""Tablet"", ""Headphones"", ""Wireless Mouse""]",2806.85,{},28827,0,North America +2023-11-11,99900,2868,"[""Keyboard"", ""Laptop"", ""Phone""]",556.25,{},27759,0,South America +2024-11-25,99901,8873,"[""Tablet""]",1918.73,"{"""": ""8%""}",163021,0,South America +2024-07-06,99902,4884,"[""Charger""]",1781.42,{},270597,1,Asia +2023-08-17,99903,3149,"[""Charger"", ""Tablet""]",4678.1,{},55155,1,North America +2023-03-29,99904,7521,"[""Charger""]",3466.53,"{""promo"": ""11%""}",33054,0,Africa +2024-12-14,99905,9576,"[""Wireless Mouse"", ""Headphones"", ""Tablet""]",2617.28,{},147373,1,Asia +2023-05-09,99906,7754,"[""Keyboard"", ""Charger"", ""Laptop""]",3142.56,"{"""": ""24%""}",4434,1,Asia +2024-05-07,99907,276,"[""Keyboard"", ""Charger""]",4340.5,{},279709,1,Asia +2023-03-05,99908,6970,"[""Wireless Mouse"", ""Phone""]",2264.45,"{"""": ""7%""}",54708,0,North America +2024-03-21,99909,387,"[""Phone"", ""Tablet""]",337.37,{},174738,0,Asia +2024-06-19,99910,2688,"[""Laptop""]",2851.08,{},172012,1,Africa +2023-05-01,99911,4092,"[""Laptop"", ""Phone""]",3657.44,{},4974,1,Europe +2024-04-23,99912,1844,"[""Tablet"", ""Keyboard""]",1892.98,"{""promo"": ""6%""}",200047,1,South America +2023-02-19,99913,975,"[""Monitor""]",80.33,"{""promo"": ""7%""}",19162,1,Africa +2024-12-21,99914,1118,"[""Wireless Mouse"", ""Charger""]",1106.09,{},28220,1,Asia +2023-01-27,99915,4930,"[""Monitor"", ""Keyboard"", ""Headphones""]",1089.17,"{""loyalty"": ""22%""}",20693,1,Africa +2024-06-30,99916,6857,"[""Monitor"", ""Phone"", ""Laptop""]",1570.15,{},125484,0,North America +2023-10-26,99917,8904,"[""Phone"", ""Keyboard""]",4653.02,"{""loyalty"": ""9%""}",219045,0,Africa +2023-10-05,99918,8924,"[""Laptop"", ""Phone"", ""Wireless Mouse""]",3802.35,{},26176,1,North America +2024-06-07,99919,9008,"[""Monitor"", ""Laptop"", ""Charger""]",199.53,{},117011,0,South America +2024-11-22,99920,9558,"[""Keyboard"", ""Monitor""]",4128.0,{},248427,0,Europe +2024-05-09,99921,4177,"[""Headphones"", ""Phone"", ""Laptop""]",1309.31,{},45736,1,Africa +2023-06-28,99922,7911,"[""Laptop""]",3888.06,"{""seasonal"": ""14%""}",251362,1,North America +2024-01-22,99923,4450,"[""Headphones""]",3606.07,"{""promo"": ""17%""}",117795,1,South America +2024-05-11,99924,6519,"[""Charger"", ""Headphones""]",4062.03,"{"""": ""7%""}",39701,0,Africa +2023-05-26,99925,3294,"[""Charger""]",2919.92,"{""seasonal"": ""19%""}",115123,1,Asia +2024-05-05,99926,2240,"[""Keyboard""]",2030.58,"{""loyalty"": ""10%""}",160101,1,North America +2023-12-04,99927,294,"[""Wireless Mouse""]",3671.23,"{""seasonal"": ""16%""}",296582,0,Africa +2024-03-14,99928,1754,"[""Headphones""]",2870.78,"{""loyalty"": ""8%""}",118642,1,Asia +2023-09-29,99929,9201,"[""Headphones""]",2166.89,{},130129,1,South America +2023-09-11,99930,2809,"[""Laptop"", ""Monitor"", ""Keyboard""]",1720.15,{},30694,1,South America +2024-06-23,99931,141,"[""Laptop"", ""Headphones""]",157.45,"{""seasonal"": ""19%""}",100578,0,Europe +2023-07-18,99932,1384,"[""Wireless Mouse"", ""Laptop""]",1487.32,"{""seasonal"": ""18%""}",40854,1,South America +2023-09-15,99933,1997,"[""Keyboard"", ""Charger""]",1415.31,"{"""": ""18%""}",112836,0,Africa +2024-08-13,99934,5477,"[""Headphones"", ""Phone""]",2061.44,{},40238,0,Asia +2023-06-03,99935,82,"[""Tablet"", ""Keyboard""]",2615.24,{},225412,1,Asia +2023-05-21,99936,5768,"[""Headphones"", ""Charger"", ""Tablet""]",3455.76,"{""loyalty"": ""28%""}",93842,1,Africa +2023-04-28,99937,2316,"[""Phone"", ""Keyboard"", ""Wireless Mouse""]",2283.87,{},163045,0,South America +2023-10-20,99938,2741,"[""Charger""]",1986.18,{},267519,1,Europe +2023-12-13,99939,3328,"[""Tablet""]",3628.83,"{""loyalty"": ""21%""}",226543,1,South America +2023-09-19,99940,5063,"[""Keyboard"", ""Tablet""]",1817.19,"{""promo"": ""7%""}",226609,0,South America +2024-09-25,99941,1473,"[""Keyboard""]",2560.45,"{"""": ""30%""}",133849,0,South America +2024-04-08,99942,8591,"[""Charger"", ""Tablet"", ""Laptop""]",4169.54,{},136367,0,Europe +2024-11-25,99943,2067,"[""Phone""]",4978.94,"{""promo"": ""7%""}",249196,0,North America +2024-01-30,99944,9651,"[""Phone""]",2340.31,{},234239,0,South America +2023-01-14,99945,1141,"[""Charger""]",228.97,{},240435,0,South America +2024-10-07,99946,1987,"[""Charger""]",1124.75,"{""seasonal"": ""27%""}",120211,0,South America +2023-10-21,99947,6258,"[""Laptop"", ""Monitor""]",3514.72,"{"""": ""19%""}",186313,1,Africa +2024-04-04,99948,3562,"[""Monitor""]",2324.98,"{""loyalty"": ""14%""}",125244,1,Africa +2024-07-14,99949,9474,"[""Phone"", ""Charger"", ""Wireless Mouse""]",1935.9,{},126957,0,Africa +2024-11-12,99950,101,"[""Keyboard"", ""Tablet""]",785.93,"{""loyalty"": ""24%""}",129301,0,Europe +2023-05-31,99951,2138,"[""Phone"", ""Monitor"", ""Headphones""]",1217.43,"{""seasonal"": ""16%""}",100012,1,Europe +2024-01-06,99952,6769,"[""Tablet""]",1182.33,"{""loyalty"": ""28%""}",105363,0,Africa +2024-02-14,99953,5593,"[""Monitor"", ""Headphones"", ""Tablet""]",434.29,{},6109,1,Asia +2024-06-14,99954,5258,"[""Tablet""]",4161.84,"{"""": ""9%""}",113952,0,Europe +2024-07-01,99955,3522,"[""Tablet"", ""Headphones""]",1661.42,{},256486,0,North America +2024-02-20,99956,8689,"[""Charger""]",4891.3,{},139670,0,South America +2024-08-17,99957,5844,"[""Keyboard"", ""Monitor""]",996.44,{},266189,0,Europe +2023-03-18,99958,2958,"[""Tablet""]",3748.04,"{""loyalty"": ""14%""}",264727,0,Africa +2023-12-01,99959,1813,"[""Headphones""]",2670.77,{},240889,1,Europe +2024-11-21,99960,9563,"[""Tablet"", ""Monitor"", ""Keyboard""]",3322.99,"{""seasonal"": ""6%""}",223426,1,Africa +2024-01-21,99961,6616,"[""Keyboard"", ""Laptop"", ""Phone""]",617.96,{},192704,1,Africa +2024-08-13,99962,3442,"[""Tablet""]",135.65,{},264623,1,Europe +2023-03-18,99963,9880,"[""Phone"", ""Tablet"", ""Charger""]",274.18,{},272900,1,Europe +2023-09-25,99964,1138,"[""Monitor"", ""Charger""]",2937.83,{},168350,0,North America +2024-07-08,99965,9577,"[""Headphones""]",1866.34,"{""seasonal"": ""17%""}",24396,0,Asia +2024-01-30,99966,7299,"[""Monitor""]",1270.0,{},259434,1,Asia +2023-11-11,99967,1102,"[""Tablet""]",2048.61,{},192159,0,Asia +2023-07-24,99968,9118,"[""Headphones"", ""Charger""]",4728.41,"{""promo"": ""17%""}",131148,1,Africa +2023-06-02,99969,3062,"[""Headphones"", ""Keyboard"", ""Wireless Mouse""]",3118.67,"{""seasonal"": ""26%""}",81653,0,Europe +2024-11-30,99970,721,"[""Monitor""]",1772.37,"{""promo"": ""13%""}",83833,0,Europe +2023-01-29,99971,947,"[""Phone""]",2872.56,"{""seasonal"": ""30%""}",236860,0,North America +2024-07-05,99972,7805,"[""Monitor"", ""Wireless Mouse"", ""Keyboard""]",3458.0,{},171217,1,Africa +2024-12-11,99973,9094,"[""Keyboard"", ""Wireless Mouse""]",4031.93,"{""seasonal"": ""5%""}",44719,0,Europe +2024-12-01,99974,4738,"[""Charger""]",3891.38,"{""promo"": ""16%""}",264789,1,Asia +2023-03-12,99975,4606,"[""Laptop"", ""Phone""]",821.56,{},78681,1,North America +2024-12-11,99976,3416,"[""Monitor""]",3804.46,{},146043,1,Africa +2023-06-22,99977,8380,"[""Wireless Mouse"", ""Phone""]",4021.32,{},242979,1,South America +2023-07-22,99978,9744,"[""Keyboard"", ""Laptop"", ""Monitor""]",3570.7,"{""promo"": ""23%""}",117588,1,North America +2023-07-17,99979,5014,"[""Laptop"", ""Phone""]",2175.76,"{""promo"": ""18%""}",67945,1,South America +2023-10-28,99980,3868,"[""Phone"", ""Monitor""]",1874.75,"{""loyalty"": ""24%""}",3872,0,Asia +2024-05-20,99981,6756,"[""Headphones""]",3578.23,"{""seasonal"": ""27%""}",286055,1,Africa +2024-07-05,99982,5017,"[""Wireless Mouse"", ""Tablet"", ""Headphones""]",3418.24,{},172200,1,North America +2024-02-04,99983,8566,"[""Tablet"", ""Charger""]",301.79,{},277165,0,South America +2024-12-19,99984,3394,"[""Headphones"", ""Laptop"", ""Tablet""]",972.68,{},209006,0,Asia +2023-09-27,99985,7735,"[""Laptop""]",774.97,"{"""": ""10%""}",3651,0,Africa +2024-04-10,99986,8400,"[""Phone""]",1224.96,"{""loyalty"": ""24%""}",288244,0,South America +2024-02-26,99987,7109,"[""Monitor"", ""Laptop"", ""Tablet""]",4107.54,{},149235,1,South America +2023-09-12,99988,2309,"[""Tablet""]",1378.9,{},259958,1,Africa +2023-09-08,99989,6892,"[""Keyboard"", ""Monitor"", ""Tablet""]",4097.3,{},191676,1,South America +2024-07-04,99990,9139,"[""Headphones"", ""Charger""]",1051.27,"{"""": ""19%""}",288844,0,South America +2023-07-25,99991,2638,"[""Phone"", ""Headphones""]",1049.02,"{""seasonal"": ""7%""}",271565,1,Africa +2023-11-15,99992,3472,"[""Tablet"", ""Wireless Mouse""]",1123.82,{},77067,0,North America +2023-02-19,99993,637,"[""Keyboard"", ""Tablet""]",4443.78,"{""seasonal"": ""7%""}",101995,0,North America +2024-02-04,99994,486,"[""Laptop"", ""Headphones""]",4421.9,{},96222,1,Asia +2024-08-21,99995,5321,"[""Laptop"", ""Phone""]",2794.05,{},191759,1,Africa +2023-06-05,99996,4671,"[""Tablet"", ""Wireless Mouse"", ""Laptop""]",3720.59,{},227620,0,South America +2023-08-10,99997,6768,"[""Charger"", ""Phone"", ""Laptop""]",4589.85,{},200154,1,North America +2023-09-19,99998,860,"[""Keyboard""]",3490.74,"{""seasonal"": ""27%""}",228226,1,South America +2024-01-27,99999,6173,"[""Wireless Mouse""]",1983.29,"{"""": ""7%""}",154614,0,Europe +2024-02-11,100000,3728,"[""Laptop"", ""Wireless Mouse"", ""Monitor""]",1330.35,{},193770,1,North America diff --git a/web-local/tests/data/sales_data_sqlite.csv b/web-local/tests/data/sales_data_sqlite.csv new file mode 100644 index 00000000000..06fdc410447 --- /dev/null +++ b/web-local/tests/data/sales_data_sqlite.csv @@ -0,0 +1,100001 @@ +sale_date,sale_id,customer_id,products,sales_amount_usd,discounts,duration_ms,is_online,region +2024-10-28,1,7486,"[\""Monitor\"", \""Keyboard\""]",3719.88,"{\"": \""24%\""}",161209,0,"""South America""" +2024-12-10,2,9573,"[\""Keyboard\""]",786.99,"{\""loyalty\"": \""7%\""}",74657,1,"""South America""" +2023-03-24,3,1318,"[\""Monitor\"", \""Charger\""]",2179.1,"{\""loyalty\"": \""19%\""}",32637,0,"""North America""" +2024-03-09,4,7954,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1903.31,"{\""loyalty\"": \""29%\""}",277032,0,"""North America""" +2024-07-09,5,7929,"[\""Wireless Mouse\""]",4682.48,"{\""promo\"": \""21%\""}",178899,0,"""Africa""" +2024-06-03,6,6147,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3515.28,"{\"": \""18%\""}",251168,1,"""North America""" +2023-08-03,7,5196,"[\""Laptop\"", \""Charger\""]",3387.63,"{\"": \""24%\""}",58977,0,"""Africa""" +2023-06-30,8,4913,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4067.66,{},151242,1,"""South America""" +2023-01-25,9,182,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4691.06,{},291810,1,"""South America""" +2024-08-01,10,2905,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1441.15,"{\"": \""6%\""}",245375,1,"""Europe""" +2024-03-30,11,666,"[\""Keyboard\""]",2535.04,{},168093,0,"""Africa""" +2023-03-20,12,6803,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2976.03,"{\""loyalty\"": \""30%\""}",42953,0,"""South America""" +2024-10-31,13,6541,"[\""Headphones\"", \""Keyboard\""]",1222.26,{},263945,1,"""South America""" +2024-08-03,14,1377,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2236.61,"{\"": \""26%\""}",254296,0,"""Asia""" +2024-05-22,15,2558,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2917.96,{},227952,0,"""Asia""" +2024-08-13,16,5511,"[\""Monitor\"", \""Wireless Mouse\""]",3701.54,{},299184,0,"""North America""" +2023-02-27,17,7178,"[\""Keyboard\"", \""Charger\""]",584.61,{},178820,0,"""Africa""" +2023-03-29,18,558,"[\""Headphones\""]",1541.47,{},107542,1,"""Asia""" +2024-01-06,19,9290,"[\""Keyboard\""]",3770.72,{},282856,0,"""Europe""" +2023-10-14,20,1974,"[\""Charger\"", \""Laptop\""]",3870.63,"{\"": \""29%\""}",199608,0,"""Africa""" +2024-02-26,21,1212,"[\""Phone\""]",3452.31,"{\""promo\"": \""26%\""}",204261,1,"""North America""" +2024-01-01,22,5252,"[\""Wireless Mouse\"", \""Laptop\""]",1417.61,{},21991,0,"""North America""" +2023-03-28,23,7202,"[\""Tablet\""]",4769.98,"{\""loyalty\"": \""29%\""}",66079,0,"""Africa""" +2023-06-20,24,95,"[\""Tablet\"", \""Laptop\""]",4602.0,{},185806,1,"""North America""" +2024-01-22,25,5891,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4716.31,"{\""seasonal\"": \""12%\""}",144057,1,"""North America""" +2023-12-25,26,3921,"[\""Phone\""]",3017.93,{},160571,1,"""South America""" +2023-11-26,27,8041,"[\""Charger\"", \""Tablet\""]",1639.34,{},103906,1,"""Africa""" +2023-11-04,28,4754,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4800.29,"{\""promo\"": \""23%\""}",74309,1,"""Europe""" +2024-01-25,29,3620,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1439.06,"{\""promo\"": \""16%\""}",214495,1,"""South America""" +2023-03-22,30,6002,"[\""Monitor\"", \""Phone\""]",4981.83,{},131266,0,"""North America""" +2023-11-07,31,4896,"[\""Headphones\"", \""Phone\""]",1407.72,{},128032,0,"""South America""" +2023-08-18,32,7015,"[\""Tablet\"", \""Headphones\""]",4964.22,"{\"": \""22%\""}",265018,0,"""Europe""" +2023-06-13,33,4952,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",477.03,"{\""seasonal\"": \""20%\""}",29649,0,"""South America""" +2023-03-11,34,1369,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1870.38,"{\"": \""25%\""}",38161,0,"""Europe""" +2023-08-21,35,9911,"[\""Keyboard\""]",2944.91,"{\"": \""28%\""}",245278,0,"""Asia""" +2023-02-18,36,6392,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",838.21,"{\""promo\"": \""29%\""}",122241,1,"""Africa""" +2023-02-01,37,2278,"[\""Tablet\""]",4259.99,"{\""promo\"": \""23%\""}",94083,0,"""Asia""" +2024-11-10,38,1523,"[\""Tablet\"", \""Headphones\""]",3697.42,"{\"": \""11%\""}",156824,0,"""Asia""" +2023-01-06,39,1042,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3278.0,"{\""loyalty\"": \""13%\""}",165699,1,"""Asia""" +2024-04-26,40,3788,"[\""Keyboard\"", \""Charger\""]",3168.02,"{\""seasonal\"": \""6%\""}",161090,1,"""South America""" +2024-12-13,41,2903,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3526.05,"{\""loyalty\"": \""22%\""}",261103,1,"""Asia""" +2023-01-17,42,8128,"[\""Monitor\""]",242.22,"{\""seasonal\"": \""12%\""}",169866,1,"""Asia""" +2024-04-15,43,2736,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3897.68,{},172613,1,"""South America""" +2024-10-12,44,8579,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4160.06,{},83034,1,"""South America""" +2024-01-27,45,2745,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1592.3,{},276288,1,"""Asia""" +2023-09-26,46,8642,"[\""Headphones\"", \""Charger\""]",3940.73,"{\""loyalty\"": \""23%\""}",151250,0,"""North America""" +2024-07-21,47,2160,"[\""Tablet\""]",1102.72,"{\""seasonal\"": \""14%\""}",87944,1,"""South America""" +2024-12-12,48,7619,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2337.37,"{\""seasonal\"": \""28%\""}",95578,1,"""Asia""" +2024-11-23,49,8290,"[\""Charger\"", \""Keyboard\""]",811.23,{},224162,1,"""Asia""" +2024-04-13,50,8911,"[\""Charger\"", \""Wireless Mouse\""]",1202.81,{},111174,1,"""Africa""" +2024-09-12,51,2314,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",424.28,"{\"": \""26%\""}",277329,0,"""South America""" +2024-05-27,52,4234,"[\""Keyboard\"", \""Wireless Mouse\""]",834.5,{},129131,1,"""South America""" +2023-05-23,53,1032,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1028.06,"{\""promo\"": \""24%\""}",45947,1,"""Africa""" +2024-11-21,54,6444,"[\""Charger\"", \""Laptop\""]",2824.22,"{\""promo\"": \""29%\""}",94028,1,"""Asia""" +2024-01-11,55,1283,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4809.53,"{\""loyalty\"": \""16%\""}",50790,1,"""Asia""" +2024-04-19,56,9974,"[\""Keyboard\""]",614.46,"{\"": \""24%\""}",209091,0,"""Africa""" +2023-12-29,57,4523,"[\""Wireless Mouse\""]",4391.97,{},76986,0,"""Europe""" +2024-04-21,58,2730,"[\""Laptop\""]",491.66,"{\""promo\"": \""20%\""}",276968,1,"""Africa""" +2024-06-18,59,3797,"[\""Laptop\""]",2103.36,"{\"": \""24%\""}",184724,0,"""Asia""" +2024-03-09,60,6185,"[\""Keyboard\"", \""Phone\""]",175.18,{},189325,0,"""Africa""" +2023-11-15,61,6059,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",916.19,"{\""promo\"": \""16%\""}",280891,0,"""Europe""" +2024-06-30,62,791,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3633.23,{},177596,0,"""Asia""" +2023-12-13,63,8708,"[\""Headphones\""]",3793.7,"{\""loyalty\"": \""16%\""}",259482,1,"""Europe""" +2024-03-25,64,5216,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2094.85,{},181796,1,"""Asia""" +2024-09-23,65,8603,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",285.85,"{\""seasonal\"": \""30%\""}",293211,0,"""Europe""" +2023-04-08,66,3270,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1688.32,"{\""loyalty\"": \""26%\""}",64726,0,"""Asia""" +2024-11-06,67,3396,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1668.46,{},147135,0,"""South America""" +2024-08-01,68,3135,"[\""Wireless Mouse\""]",1765.59,"{\""loyalty\"": \""5%\""}",39078,1,"""North America""" +2024-02-22,69,3787,"[\""Phone\""]",1944.42,{},279786,1,"""North America""" +2024-11-06,70,7959,"[\""Charger\"", \""Keyboard\""]",2005.12,"{\"": \""14%\""}",41805,0,"""South America""" +2024-01-13,71,3449,"[\""Keyboard\""]",4492.69,"{\"": \""26%\""}",9526,0,"""Europe""" +2024-10-20,72,7848,"[\""Headphones\""]",3097.97,{},250850,1,"""Asia""" +2024-04-15,73,9768,"[\""Monitor\"", \""Wireless Mouse\""]",3317.3,"{\"": \""27%\""}",1806,1,"""South America""" +2024-05-18,74,4960,"[\""Laptop\"", \""Headphones\""]",4391.78,{},97611,0,"""Europe""" +2024-08-03,75,9315,"[\""Charger\"", \""Wireless Mouse\""]",2752.2,"{\""promo\"": \""22%\""}",7044,0,"""Africa""" +2024-11-06,76,5019,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1218.16,{},153415,1,"""South America""" +2023-05-07,77,4935,"[\""Wireless Mouse\""]",3208.69,{},297366,1,"""Asia""" +2024-11-18,78,2878,"[\""Laptop\"", \""Keyboard\""]",3841.69,"{\""seasonal\"": \""21%\""}",81449,1,"""South America""" +2023-01-26,79,7661,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2431.86,"{\"": \""29%\""}",279231,0,"""South America""" +2024-11-13,80,9927,"[\""Monitor\""]",1292.05,{},269710,1,"""North America""" +2024-09-13,81,3106,"[\""Wireless Mouse\"", \""Keyboard\""]",605.75,{},201351,0,"""South America""" +2023-12-18,82,3934,"[\""Wireless Mouse\""]",4037.32,{},87846,0,"""Europe""" +2023-04-02,83,5710,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1303.58,{},190266,1,"""South America""" +2023-02-03,84,3481,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3451.54,{},7363,1,"""Africa""" +2023-08-18,85,3132,"[\""Phone\""]",2039.21,"{\""loyalty\"": \""25%\""}",23198,1,"""Africa""" +2023-01-27,86,7942,"[\""Phone\"", \""Keyboard\""]",1864.86,{},229718,1,"""Africa""" +2024-05-18,87,719,"[\""Keyboard\""]",598.97,{},43830,0,"""Asia""" +2023-09-18,88,563,"[\""Wireless Mouse\"", \""Tablet\""]",4728.74,"{\""loyalty\"": \""30%\""}",292311,0,"""Europe""" +2023-01-17,89,8934,"[\""Tablet\""]",1515.83,"{\"": \""19%\""}",164038,1,"""Asia""" +2023-04-17,90,3413,"[\""Charger\"", \""Laptop\""]",3635.66,{},191699,0,"""Asia""" +2023-06-05,91,3308,"[\""Laptop\"", \""Monitor\""]",2784.46,"{\"": \""20%\""}",216880,0,"""Europe""" +2024-10-05,92,990,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1968.22,"{\"": \""9%\""}",253787,0,"""Asia""" +2023-01-24,93,9478,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3252.75,"{\""loyalty\"": \""8%\""}",214495,0,"""Asia""" +2024-02-06,94,5535,"[\""Monitor\""]",3387.64,{},159442,1,"""South America""" +2023-08-21,95,8261,"[\""Phone\""]",2922.32,"{\""loyalty\"": \""9%\""}",246125,1,"""Africa""" +2023-12-04,96,9920,"[\""Wireless Mouse\"", \""Keyboard\""]",2521.63,{},275844,1,"""Europe""" +2024-12-01,97,4556,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",443.53,"{\""loyalty\"": \""23%\""}",140616,0,"""South America""" +2024-07-14,98,6022,"[\""Phone\""]",248.94,{},8307,0,"""Europe""" +2023-05-25,99,6054,"[\""Keyboard\""]",3671.19,{},95694,0,"""Africa""" +2023-12-06,100,2166,"[\""Phone\""]",468.43,{},201351,0,"""Europe""" +2024-01-18,101,2260,"[\""Headphones\""]",2274.67,{},87015,0,"""Africa""" +2024-08-06,102,3770,"[\""Charger\"", \""Monitor\""]",3140.22,"{\""seasonal\"": \""30%\""}",6643,0,"""North America""" +2024-03-02,103,7841,"[\""Tablet\""]",871.58,{},97357,0,"""Europe""" +2024-04-25,104,4272,"[\""Phone\"", \""Laptop\""]",2770.5,{},165649,1,"""North America""" +2023-07-15,105,1789,"[\""Laptop\""]",3932.41,{},36299,1,"""Asia""" +2024-10-25,106,9018,"[\""Charger\""]",2250.13,"{\"": \""24%\""}",227432,0,"""South America""" +2024-06-29,107,6626,"[\""Wireless Mouse\""]",3261.34,{},279306,0,"""Asia""" +2023-10-26,108,6668,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4106.68,"{\""seasonal\"": \""24%\""}",271513,1,"""Europe""" +2023-05-21,109,1674,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4775.65,{},266537,1,"""North America""" +2023-02-21,110,8,"[\""Phone\"", \""Tablet\""]",403.06,{},75684,0,"""Africa""" +2023-07-16,111,7104,"[\""Charger\""]",4556.72,"{\""loyalty\"": \""26%\""}",78512,1,"""North America""" +2024-01-03,112,2526,"[\""Monitor\"", \""Headphones\""]",3848.76,"{\"": \""18%\""}",248914,1,"""Asia""" +2023-01-29,113,8560,"[\""Headphones\"", \""Phone\""]",401.48,{},153327,0,"""Europe""" +2024-12-18,114,9182,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3813.71,"{\"": \""21%\""}",121300,0,"""Asia""" +2023-06-12,115,6544,"[\""Keyboard\""]",1110.63,"{\"": \""14%\""}",56298,1,"""Europe""" +2024-12-30,116,8426,"[\""Tablet\""]",1644.82,{},16115,1,"""Asia""" +2023-11-10,117,6458,"[\""Monitor\"", \""Tablet\""]",603.97,"{\""seasonal\"": \""23%\""}",1669,0,"""Europe""" +2023-06-16,118,4555,"[\""Monitor\"", \""Wireless Mouse\""]",2453.4,"{\"": \""9%\""}",6096,0,"""Europe""" +2023-07-10,119,86,"[\""Headphones\""]",733.49,{},49633,0,"""North America""" +2024-05-26,120,6445,"[\""Headphones\""]",4464.45,"{\""seasonal\"": \""5%\""}",99796,0,"""Europe""" +2023-02-25,121,9466,"[\""Wireless Mouse\"", \""Headphones\""]",490.94,"{\""loyalty\"": \""7%\""}",271707,0,"""North America""" +2023-01-19,122,1327,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1367.87,"{\""promo\"": \""23%\""}",195641,0,"""North America""" +2023-10-18,123,6697,"[\""Tablet\""]",1571.41,{},110766,0,"""Africa""" +2024-12-17,124,3697,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1480.77,"{\""seasonal\"": \""12%\""}",4561,0,"""Asia""" +2024-01-23,125,1772,"[\""Headphones\"", \""Monitor\""]",4097.72,{},13832,0,"""Asia""" +2024-01-29,126,4067,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2877.25,"{\""promo\"": \""16%\""}",224662,0,"""South America""" +2023-10-15,127,9742,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1913.14,{},262601,0,"""South America""" +2024-11-01,128,3368,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4939.25,{},185929,1,"""North America""" +2023-08-12,129,4368,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3093.6,"{\""promo\"": \""23%\""}",46611,0,"""Africa""" +2024-02-23,130,1771,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2447.22,{},260950,0,"""Africa""" +2024-08-03,131,5723,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3933.63,{},201899,1,"""South America""" +2023-07-20,132,6725,"[\""Tablet\""]",261.8,"{\""loyalty\"": \""8%\""}",151522,1,"""Africa""" +2023-07-09,133,2273,"[\""Wireless Mouse\"", \""Monitor\""]",4486.18,"{\"": \""28%\""}",291203,0,"""Africa""" +2024-06-29,134,3984,"[\""Tablet\"", \""Monitor\""]",2717.93,"{\"": \""17%\""}",90201,0,"""North America""" +2024-06-16,135,9149,"[\""Phone\""]",512.98,"{\"": \""10%\""}",162807,0,"""Asia""" +2024-10-23,136,5589,"[\""Monitor\""]",760.38,"{\""seasonal\"": \""8%\""}",169753,1,"""Europe""" +2024-05-13,137,9735,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4178.69,"{\""loyalty\"": \""14%\""}",81642,1,"""South America""" +2024-02-14,138,6018,"[\""Wireless Mouse\"", \""Laptop\""]",3646.27,"{\""promo\"": \""28%\""}",23815,0,"""Europe""" +2023-03-29,139,3876,"[\""Keyboard\"", \""Monitor\""]",1130.35,{},162340,1,"""Asia""" +2024-11-20,140,5187,"[\""Keyboard\""]",1044.75,"{\""promo\"": \""9%\""}",289296,0,"""North America""" +2023-08-18,141,5963,"[\""Charger\""]",1810.57,"{\""seasonal\"": \""25%\""}",58597,1,"""Asia""" +2023-02-22,142,319,"[\""Laptop\""]",2954.31,"{\"": \""24%\""}",166743,0,"""Europe""" +2024-10-20,143,1999,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4788.13,"{\""seasonal\"": \""27%\""}",221614,1,"""Asia""" +2024-12-09,144,5807,"[\""Headphones\"", \""Monitor\""]",178.93,"{\""seasonal\"": \""13%\""}",75826,1,"""South America""" +2023-05-09,145,209,"[\""Charger\"", \""Keyboard\""]",3651.36,{},247895,1,"""North America""" +2023-04-05,146,7049,"[\""Charger\"", \""Laptop\""]",1579.89,{},257950,1,"""Asia""" +2024-04-09,147,8220,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2261.66,{},108912,0,"""Asia""" +2024-11-26,148,8207,"[\""Monitor\""]",2776.69,{},293814,1,"""South America""" +2024-02-23,149,458,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2122.87,"{\"": \""29%\""}",47938,0,"""South America""" +2023-04-11,150,2625,"[\""Monitor\"", \""Keyboard\""]",3629.58,{},49117,1,"""Asia""" +2024-04-23,151,624,"[\""Keyboard\""]",258.64,"{\""promo\"": \""30%\""}",15582,1,"""Europe""" +2024-09-10,152,1178,"[\""Monitor\""]",4682.01,{},78913,0,"""Europe""" +2023-06-28,153,9457,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4962.22,{},171755,1,"""Europe""" +2024-07-12,154,9728,"[\""Monitor\""]",3485.01,{},166134,0,"""Europe""" +2024-08-17,155,3044,"[\""Keyboard\"", \""Phone\""]",4301.18,"{\""seasonal\"": \""25%\""}",10399,1,"""Asia""" +2023-09-12,156,8509,"[\""Headphones\""]",2598.8,{},20596,1,"""Asia""" +2024-12-02,157,6914,"[\""Headphones\""]",2352.12,{},9061,1,"""Asia""" +2024-10-09,158,1017,"[\""Tablet\"", \""Laptop\""]",2747.8,"{\""promo\"": \""20%\""}",146634,1,"""North America""" +2024-02-24,159,3947,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",915.51,"{\""promo\"": \""21%\""}",208280,1,"""South America""" +2023-09-26,160,8478,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4039.62,"{\""seasonal\"": \""7%\""}",210997,1,"""North America""" +2024-05-01,161,8656,"[\""Headphones\""]",4421.72,"{\""seasonal\"": \""6%\""}",24360,1,"""Africa""" +2023-08-29,162,6004,"[\""Monitor\"", \""Phone\"", \""Charger\""]",470.29,"{\""promo\"": \""8%\""}",275408,0,"""Europe""" +2023-07-05,163,8323,"[\""Phone\""]",4192.42,{},154751,0,"""Europe""" +2024-08-27,164,774,"[\""Charger\""]",2186.69,{},203885,1,"""Asia""" +2023-09-17,165,6802,"[\""Laptop\""]",572.09,{},9408,1,"""Africa""" +2024-08-05,166,2432,"[\""Tablet\""]",3105.26,"{\""promo\"": \""13%\""}",163774,1,"""Asia""" +2023-06-25,167,3229,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2474.09,{},156963,0,"""Africa""" +2023-11-11,168,3319,"[\""Charger\"", \""Keyboard\""]",199.59,{},30263,1,"""South America""" +2023-08-29,169,5535,"[\""Keyboard\""]",793.12,"{\""promo\"": \""15%\""}",43445,0,"""South America""" +2023-12-26,170,5045,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4872.36,"{\""loyalty\"": \""18%\""}",171971,0,"""Africa""" +2024-01-07,171,1327,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3231.8,{},68188,0,"""South America""" +2024-10-20,172,4575,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2944.63,"{\""loyalty\"": \""28%\""}",179597,0,"""North America""" +2023-10-05,173,6245,"[\""Charger\""]",1479.76,{},206740,0,"""Africa""" +2024-07-12,174,9783,"[\""Charger\""]",3165.48,"{\""loyalty\"": \""28%\""}",94626,0,"""South America""" +2023-08-06,175,4130,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2062.49,{},245975,1,"""Africa""" +2023-03-29,176,4748,"[\""Laptop\"", \""Monitor\""]",95.61,{},282785,0,"""South America""" +2023-09-02,177,1181,"[\""Wireless Mouse\"", \""Phone\""]",848.48,"{\"": \""7%\""}",98536,0,"""Europe""" +2024-01-06,178,7186,"[\""Keyboard\"", \""Phone\""]",1353.15,{},220081,0,"""North America""" +2024-08-26,179,6592,"[\""Phone\"", \""Charger\""]",1566.67,"{\""seasonal\"": \""30%\""}",208411,0,"""Europe""" +2023-12-09,180,881,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",73.71,"{\""seasonal\"": \""19%\""}",13124,1,"""Asia""" +2023-03-26,181,1236,"[\""Keyboard\"", \""Charger\""]",807.73,{},104589,0,"""North America""" +2023-08-07,182,2525,"[\""Phone\""]",3626.99,{},176850,1,"""Africa""" +2023-11-25,183,7392,"[\""Wireless Mouse\""]",470.68,{},78294,1,"""North America""" +2023-06-20,184,715,"[\""Laptop\"", \""Keyboard\""]",2778.11,"{\""seasonal\"": \""21%\""}",79469,1,"""Asia""" +2023-07-15,185,3345,"[\""Keyboard\""]",3532.47,{},110233,1,"""Africa""" +2024-03-05,186,9172,"[\""Keyboard\"", \""Wireless Mouse\""]",752.08,{},95194,0,"""Europe""" +2023-11-16,187,7189,"[\""Headphones\"", \""Tablet\""]",4686.89,"{\""seasonal\"": \""24%\""}",217169,0,"""North America""" +2024-10-17,188,7842,"[\""Tablet\""]",1835.32,"{\""loyalty\"": \""12%\""}",148844,1,"""Africa""" +2023-02-06,189,7912,"[\""Monitor\""]",2360.47,{},244252,1,"""South America""" +2023-07-31,190,6312,"[\""Tablet\"", \""Monitor\""]",4557.59,{},22327,1,"""Africa""" +2023-01-27,191,2758,"[\""Headphones\"", \""Monitor\""]",4975.2,"{\""seasonal\"": \""7%\""}",67347,1,"""South America""" +2023-03-20,192,3464,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3106.88,{},223901,1,"""Africa""" +2024-02-07,193,7242,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1151.58,{},159853,1,"""Asia""" +2024-12-31,194,8027,"[\""Keyboard\"", \""Phone\""]",944.93,"{\""promo\"": \""13%\""}",250181,1,"""North America""" +2023-04-24,195,5691,"[\""Phone\""]",718.24,{},281854,1,"""Asia""" +2024-12-19,196,2691,"[\""Headphones\"", \""Wireless Mouse\""]",4537.58,"{\""promo\"": \""8%\""}",115195,0,"""Europe""" +2024-04-07,197,8213,"[\""Charger\""]",3007.13,{},180742,1,"""North America""" +2024-09-27,198,6193,"[\""Laptop\""]",2235.31,"{\""promo\"": \""28%\""}",6490,0,"""Asia""" +2023-03-16,199,1180,"[\""Tablet\"", \""Phone\""]",1994.97,"{\""loyalty\"": \""14%\""}",62764,1,"""North America""" +2024-08-29,200,1824,"[\""Charger\""]",2488.08,{},13860,0,"""North America""" +2023-07-24,201,1474,"[\""Phone\"", \""Charger\"", \""Headphones\""]",901.14,{},37069,1,"""North America""" +2024-12-19,202,5170,"[\""Wireless Mouse\"", \""Laptop\""]",364.84,{},231752,0,"""Europe""" +2023-04-17,203,9478,"[\""Tablet\"", \""Wireless Mouse\""]",3446.13,"{\""promo\"": \""27%\""}",178531,1,"""Asia""" +2023-05-10,204,9391,"[\""Phone\"", \""Charger\""]",4769.07,{},113011,0,"""South America""" +2024-02-16,205,3996,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3438.32,"{\""loyalty\"": \""27%\""}",253904,1,"""South America""" +2023-12-21,206,683,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2503.05,"{\""seasonal\"": \""8%\""}",119506,1,"""North America""" +2023-11-01,207,9585,"[\""Wireless Mouse\""]",396.06,"{\"": \""19%\""}",236018,1,"""North America""" +2024-03-18,208,5413,"[\""Wireless Mouse\""]",4061.63,"{\""promo\"": \""24%\""}",89448,0,"""North America""" +2024-05-19,209,5086,"[\""Wireless Mouse\"", \""Laptop\""]",2934.93,{},52616,0,"""Europe""" +2024-05-24,210,6142,"[\""Keyboard\"", \""Laptop\""]",3779.54,"{\""promo\"": \""19%\""}",47433,1,"""Europe""" +2023-09-12,211,3934,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4216.35,"{\""promo\"": \""12%\""}",227295,1,"""North America""" +2024-03-07,212,6310,"[\""Monitor\""]",1031.53,"{\""seasonal\"": \""20%\""}",246025,1,"""South America""" +2024-04-15,213,1764,"[\""Tablet\"", \""Phone\""]",3893.84,"{\""seasonal\"": \""10%\""}",108427,0,"""South America""" +2023-02-09,214,6135,"[\""Headphones\""]",1554.83,{},231947,0,"""Asia""" +2024-12-15,215,7072,"[\""Monitor\""]",2513.12,"{\""seasonal\"": \""5%\""}",102601,1,"""Asia""" +2023-04-30,216,2087,"[\""Charger\""]",420.54,{},217118,1,"""South America""" +2023-09-14,217,3129,"[\""Tablet\"", \""Wireless Mouse\""]",3805.17,"{\""loyalty\"": \""29%\""}",19019,0,"""North America""" +2023-09-09,218,508,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1510.13,"{\"": \""6%\""}",205591,1,"""Africa""" +2023-05-20,219,6059,"[\""Tablet\"", \""Monitor\""]",565.73,"{\""promo\"": \""11%\""}",239651,0,"""South America""" +2024-06-03,220,6762,"[\""Charger\""]",3363.61,"{\"": \""8%\""}",25091,0,"""South America""" +2024-07-30,221,1309,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4400.15,{},72542,0,"""North America""" +2024-01-17,222,3174,"[\""Monitor\"", \""Phone\""]",3203.91,{},33803,0,"""South America""" +2023-05-02,223,9986,"[\""Headphones\"", \""Wireless Mouse\""]",2390.75,"{\""loyalty\"": \""18%\""}",241087,0,"""Africa""" +2023-07-21,224,3943,"[\""Wireless Mouse\"", \""Laptop\""]",4114.6,"{\""promo\"": \""23%\""}",281351,0,"""Asia""" +2024-08-18,225,5245,"[\""Laptop\"", \""Phone\""]",2814.25,"{\""promo\"": \""30%\""}",203189,1,"""Africa""" +2024-11-27,226,188,"[\""Keyboard\""]",1702.62,{},115566,0,"""Africa""" +2024-10-27,227,57,"[\""Monitor\""]",4825.43,"{\""promo\"": \""21%\""}",255949,0,"""North America""" +2024-11-23,228,7586,"[\""Laptop\"", \""Headphones\""]",3123.23,{},79383,1,"""South America""" +2024-02-11,229,683,"[\""Charger\""]",3026.95,"{\""promo\"": \""15%\""}",144970,0,"""Africa""" +2023-03-25,230,3952,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",295.55,{},266375,0,"""Europe""" +2024-04-15,231,7408,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2129.68,"{\""promo\"": \""12%\""}",90819,0,"""Africa""" +2023-05-07,232,4624,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",606.9,{},195894,1,"""Europe""" +2024-03-23,233,2811,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2974.7,{},178812,0,"""North America""" +2024-07-13,234,5775,"[\""Headphones\"", \""Laptop\""]",1945.08,"{\""seasonal\"": \""27%\""}",138608,0,"""North America""" +2024-12-25,235,2444,"[\""Wireless Mouse\"", \""Phone\""]",4618.67,{},206473,0,"""North America""" +2023-12-27,236,5586,"[\""Charger\"", \""Headphones\""]",3012.15,"{\""loyalty\"": \""5%\""}",240086,0,"""Asia""" +2023-09-22,237,8468,"[\""Monitor\"", \""Headphones\""]",1670.26,{},174591,0,"""South America""" +2023-08-08,238,7864,"[\""Charger\"", \""Wireless Mouse\""]",4312.94,"{\""loyalty\"": \""27%\""}",184525,1,"""Africa""" +2023-06-16,239,28,"[\""Keyboard\""]",739.04,{},74320,1,"""South America""" +2023-03-27,240,4016,"[\""Phone\""]",1395.8,{},173914,1,"""North America""" +2024-11-20,241,8157,"[\""Wireless Mouse\"", \""Keyboard\""]",1069.98,"{\"": \""19%\""}",239973,1,"""Europe""" +2023-06-26,242,9944,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4215.4,"{\"": \""24%\""}",168461,1,"""Africa""" +2024-03-19,243,4009,"[\""Laptop\""]",3683.78,"{\""loyalty\"": \""21%\""}",289411,1,"""Africa""" +2023-02-04,244,8883,"[\""Phone\"", \""Laptop\""]",2223.78,"{\"": \""6%\""}",223376,1,"""South America""" +2023-06-28,245,5047,"[\""Monitor\"", \""Wireless Mouse\""]",1255.56,{},105919,1,"""North America""" +2024-05-12,246,9555,"[\""Wireless Mouse\"", \""Monitor\""]",1224.37,"{\""promo\"": \""28%\""}",172429,0,"""North America""" +2023-02-22,247,6646,"[\""Tablet\""]",4774.98,{},130247,0,"""South America""" +2023-10-19,248,2891,"[\""Monitor\""]",4406.32,{},112348,1,"""Asia""" +2024-09-17,249,3536,"[\""Keyboard\""]",4391.89,{},162825,0,"""Europe""" +2023-02-03,250,2654,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3246.61,{},68423,1,"""Africa""" +2024-11-18,251,7649,"[\""Tablet\""]",3820.32,"{\""promo\"": \""15%\""}",261723,0,"""Asia""" +2024-03-17,252,7984,"[\""Monitor\""]",2711.08,{},41464,0,"""Africa""" +2024-02-08,253,6431,"[\""Keyboard\""]",3192.62,{},148110,0,"""Africa""" +2023-04-28,254,9105,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1644.26,{},197909,1,"""South America""" +2023-06-15,255,8761,"[\""Phone\"", \""Charger\""]",1057.35,{},214281,1,"""Asia""" +2024-06-04,256,6636,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",903.81,"{\"": \""10%\""}",157434,0,"""Europe""" +2024-06-24,257,7776,"[\""Charger\""]",2137.9,"{\""seasonal\"": \""9%\""}",159508,0,"""Asia""" +2024-12-23,258,8384,"[\""Laptop\""]",4134.96,"{\"": \""9%\""}",101694,1,"""Africa""" +2023-07-03,259,3365,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1721.97,"{\"": \""25%\""}",207148,1,"""North America""" +2024-06-29,260,8623,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2582.59,{},282261,1,"""Asia""" +2023-10-04,261,6782,"[\""Keyboard\""]",445.97,{},36647,1,"""Asia""" +2023-09-20,262,3528,"[\""Wireless Mouse\"", \""Tablet\""]",3639.33,{},68699,1,"""Europe""" +2023-09-20,263,2419,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3829.55,{},5237,1,"""Africa""" +2024-07-31,264,6250,"[\""Keyboard\""]",3236.63,{},123967,1,"""South America""" +2023-04-06,265,2693,"[\""Keyboard\""]",63.84,{},138517,0,"""Asia""" +2023-10-26,266,5539,"[\""Laptop\"", \""Phone\""]",1333.41,{},291750,1,"""Asia""" +2023-08-30,267,7843,"[\""Charger\"", \""Headphones\""]",3203.48,{},159798,0,"""Asia""" +2023-12-24,268,6406,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",59.32,"{\""loyalty\"": \""11%\""}",80374,0,"""Africa""" +2024-04-09,269,6244,"[\""Keyboard\""]",2869.03,"{\""promo\"": \""11%\""}",130422,1,"""South America""" +2023-01-06,270,8263,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",726.75,"{\""loyalty\"": \""22%\""}",271573,0,"""South America""" +2024-08-20,271,6883,"[\""Wireless Mouse\"", \""Monitor\""]",2373.51,"{\"": \""5%\""}",35207,1,"""Africa""" +2023-12-31,272,2236,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4523.84,"{\"": \""28%\""}",251307,1,"""North America""" +2023-01-13,273,3055,"[\""Keyboard\""]",1533.34,"{\""promo\"": \""17%\""}",9130,1,"""South America""" +2024-07-26,274,7620,"[\""Phone\"", \""Tablet\""]",1281.93,"{\""seasonal\"": \""7%\""}",38896,0,"""Europe""" +2024-02-16,275,5844,"[\""Monitor\""]",1140.02,{},78223,0,"""North America""" +2023-03-27,276,6892,"[\""Keyboard\""]",2739.77,"{\""seasonal\"": \""15%\""}",237999,0,"""Europe""" +2024-03-16,277,2524,"[\""Laptop\""]",1735.8,{},263958,1,"""Asia""" +2023-10-19,278,9799,"[\""Phone\""]",1208.52,{},151793,0,"""Asia""" +2024-02-26,279,6385,"[\""Wireless Mouse\""]",2805.06,"{\""seasonal\"": \""29%\""}",46012,0,"""South America""" +2024-03-24,280,2033,"[\""Laptop\""]",3188.51,{},20978,1,"""Europe""" +2023-06-16,281,8457,"[\""Phone\"", \""Wireless Mouse\""]",3271.87,"{\""seasonal\"": \""21%\""}",159043,1,"""North America""" +2024-06-07,282,2789,"[\""Keyboard\""]",1976.6,"{\""promo\"": \""27%\""}",24958,1,"""Africa""" +2024-09-23,283,5148,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1522.95,{},41690,0,"""Europe""" +2024-10-10,284,9344,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2553.1,"{\""promo\"": \""13%\""}",149608,1,"""Asia""" +2024-08-29,285,8210,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3054.44,{},16726,0,"""Europe""" +2023-04-17,286,9354,"[\""Wireless Mouse\""]",409.68,"{\"": \""24%\""}",10818,1,"""Africa""" +2024-03-12,287,4703,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3491.48,"{\"": \""13%\""}",246208,1,"""Africa""" +2023-05-17,288,4943,"[\""Tablet\""]",1441.33,"{\""loyalty\"": \""27%\""}",169729,1,"""Europe""" +2024-07-26,289,6682,"[\""Keyboard\""]",2065.29,{},276831,1,"""Europe""" +2023-06-19,290,4086,"[\""Phone\"", \""Tablet\""]",591.49,"{\""promo\"": \""18%\""}",282596,0,"""North America""" +2024-05-21,291,3235,"[\""Laptop\""]",357.18,"{\""loyalty\"": \""12%\""}",110837,0,"""Africa""" +2024-09-10,292,7690,"[\""Tablet\""]",1599.13,{},240533,1,"""South America""" +2023-06-09,293,1231,"[\""Keyboard\"", \""Monitor\""]",1045.64,{},134667,1,"""Asia""" +2023-12-18,294,5927,"[\""Charger\"", \""Laptop\""]",4756.44,"{\""loyalty\"": \""29%\""}",87436,1,"""North America""" +2023-10-20,295,1947,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2315.66,{},14075,0,"""North America""" +2024-09-22,296,9332,"[\""Phone\""]",4448.53,"{\""loyalty\"": \""14%\""}",82141,0,"""North America""" +2023-10-21,297,472,"[\""Wireless Mouse\""]",2942.41,{},221588,0,"""Europe""" +2023-02-19,298,6287,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3321.72,{},38505,1,"""Europe""" +2023-04-10,299,7238,"[\""Charger\""]",4821.16,{},75041,1,"""Europe""" +2023-12-22,300,2214,"[\""Laptop\"", \""Charger\""]",4927.22,"{\"": \""22%\""}",19948,0,"""South America""" +2023-05-12,301,120,"[\""Laptop\""]",3390.46,{},45777,0,"""Europe""" +2023-04-29,302,1841,"[\""Headphones\""]",3255.12,"{\""seasonal\"": \""10%\""}",66452,0,"""Africa""" +2024-07-06,303,8991,"[\""Phone\""]",1739.63,"{\""promo\"": \""17%\""}",70246,1,"""North America""" +2024-02-06,304,8410,"[\""Wireless Mouse\""]",3587.51,{},97000,0,"""Asia""" +2024-07-06,305,5566,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4756.02,"{\""seasonal\"": \""29%\""}",163964,1,"""North America""" +2024-12-20,306,7203,"[\""Phone\""]",3908.82,"{\""seasonal\"": \""29%\""}",196388,1,"""Asia""" +2023-09-16,307,919,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3570.53,"{\"": \""9%\""}",53609,1,"""Asia""" +2023-05-20,308,6236,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",56.17,{},46497,1,"""South America""" +2023-04-07,309,5667,"[\""Charger\"", \""Tablet\""]",4371.71,{},130442,1,"""North America""" +2024-09-13,310,6628,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1323.14,"{\"": \""15%\""}",43032,1,"""Africa""" +2023-06-27,311,3952,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",449.15,{},165617,0,"""Europe""" +2023-05-28,312,4064,"[\""Laptop\"", \""Keyboard\""]",628.86,{},65933,0,"""Europe""" +2024-09-23,313,7926,"[\""Keyboard\""]",4629.51,"{\""loyalty\"": \""18%\""}",255620,0,"""South America""" +2023-11-09,314,9119,"[\""Monitor\""]",3002.36,"{\"": \""26%\""}",49783,1,"""North America""" +2023-11-23,315,9255,"[\""Tablet\""]",1860.29,{},238716,1,"""North America""" +2024-06-14,316,6856,"[\""Phone\""]",4339.68,"{\""seasonal\"": \""5%\""}",245596,0,"""Europe""" +2023-01-12,317,275,"[\""Laptop\"", \""Phone\""]",3705.24,"{\""promo\"": \""18%\""}",135363,1,"""North America""" +2023-10-23,318,2636,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1794.21,"{\""loyalty\"": \""29%\""}",162189,0,"""Africa""" +2023-09-04,319,1079,"[\""Charger\"", \""Laptop\""]",3166.69,{},139779,1,"""Europe""" +2024-07-18,320,8828,"[\""Laptop\""]",875.06,{},133413,1,"""Asia""" +2024-11-15,321,6819,"[\""Keyboard\"", \""Headphones\""]",3186.59,{},158484,1,"""Asia""" +2023-09-19,322,7174,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2843.71,"{\""promo\"": \""26%\""}",236699,0,"""Asia""" +2024-06-07,323,285,"[\""Charger\""]",3397.72,{},284546,1,"""Africa""" +2024-03-19,324,1845,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",300.04,"{\""promo\"": \""10%\""}",191034,0,"""Africa""" +2024-10-28,325,7100,"[\""Keyboard\"", \""Phone\""]",109.79,{},131276,0,"""Africa""" +2023-12-16,326,4108,"[\""Headphones\""]",140.81,{},41690,0,"""Europe""" +2023-05-17,327,6603,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2861.98,"{\""promo\"": \""22%\""}",130500,0,"""Europe""" +2024-06-19,328,2505,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1021.46,{},262345,0,"""Africa""" +2024-03-29,329,1086,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2939.29,{},105716,1,"""Asia""" +2023-01-26,330,7010,"[\""Wireless Mouse\"", \""Laptop\""]",3434.67,{},118605,0,"""North America""" +2024-08-01,331,8312,"[\""Phone\""]",81.81,{},114986,1,"""Europe""" +2024-11-18,332,4317,"[\""Wireless Mouse\"", \""Phone\""]",3208.59,{},38295,0,"""North America""" +2024-02-22,333,3245,"[\""Laptop\""]",4521.6,{},51358,0,"""Asia""" +2024-10-14,334,1419,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1793.65,{},150665,1,"""South America""" +2024-03-04,335,5588,"[\""Charger\""]",4644.15,{},251717,0,"""South America""" +2024-01-24,336,7997,"[\""Tablet\""]",2314.5,{},170264,0,"""Europe""" +2024-12-21,337,8161,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3620.87,"{\""promo\"": \""20%\""}",141580,0,"""Africa""" +2024-03-30,338,5284,"[\""Monitor\"", \""Charger\""]",3688.84,"{\""seasonal\"": \""12%\""}",235143,0,"""Europe""" +2024-10-22,339,8852,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3201.91,{},164262,0,"""Asia""" +2023-03-30,340,7803,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2359.78,"{\""promo\"": \""22%\""}",156630,1,"""Europe""" +2023-06-30,341,3442,"[\""Phone\"", \""Monitor\""]",782.3,"{\"": \""18%\""}",148592,0,"""Asia""" +2023-01-21,342,4542,"[\""Wireless Mouse\""]",186.74,"{\""promo\"": \""17%\""}",183673,0,"""North America""" +2024-06-13,343,8644,"[\""Phone\"", \""Headphones\"", \""Charger\""]",723.58,{},288877,0,"""Africa""" +2023-02-06,344,1743,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3926.76,"{\""loyalty\"": \""9%\""}",89747,0,"""South America""" +2023-07-05,345,9821,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4246.94,"{\""promo\"": \""14%\""}",53144,0,"""South America""" +2024-11-14,346,7199,"[\""Laptop\"", \""Charger\""]",3190.57,"{\""loyalty\"": \""19%\""}",293280,0,"""North America""" +2024-06-18,347,4879,"[\""Monitor\""]",477.18,{},92491,0,"""South America""" +2024-12-14,348,1865,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3387.07,{},37175,1,"""Asia""" +2024-06-25,349,7756,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2694.93,"{\""promo\"": \""10%\""}",85912,1,"""Europe""" +2023-11-04,350,5669,"[\""Tablet\""]",1395.43,"{\""loyalty\"": \""30%\""}",47814,1,"""North America""" +2024-07-01,351,864,"[\""Wireless Mouse\""]",2093.2,"{\""seasonal\"": \""17%\""}",61272,1,"""Asia""" +2023-07-13,352,8676,"[\""Charger\"", \""Monitor\""]",2968.03,{},276854,1,"""Africa""" +2023-11-05,353,1717,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2275.97,"{\"": \""12%\""}",197915,1,"""South America""" +2024-07-25,354,1215,"[\""Phone\""]",2446.29,"{\""promo\"": \""5%\""}",116103,1,"""Asia""" +2024-08-26,355,6606,"[\""Charger\""]",2562.52,"{\""seasonal\"": \""11%\""}",140902,1,"""South America""" +2023-05-29,356,1277,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1094.72,"{\""promo\"": \""7%\""}",157783,1,"""North America""" +2023-12-28,357,9997,"[\""Keyboard\"", \""Charger\""]",4953.42,{},18170,1,"""North America""" +2023-06-17,358,2345,"[\""Phone\"", \""Charger\""]",1180.78,{},163252,1,"""North America""" +2024-08-16,359,3970,"[\""Tablet\""]",4228.91,{},55916,0,"""North America""" +2023-10-11,360,1078,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",527.38,{},133278,0,"""North America""" +2024-11-02,361,6925,"[\""Headphones\"", \""Wireless Mouse\""]",1940.89,"{\""promo\"": \""24%\""}",258353,0,"""Europe""" +2023-05-29,362,1792,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2102.74,{},90337,1,"""Asia""" +2023-08-07,363,374,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3430.75,"{\""seasonal\"": \""10%\""}",14728,0,"""Africa""" +2024-08-06,364,3747,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4131.03,{},253193,1,"""Europe""" +2023-02-26,365,4805,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3364.75,{},91582,0,"""South America""" +2023-09-21,366,540,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2688.02,"{\""seasonal\"": \""30%\""}",198271,1,"""Asia""" +2024-11-29,367,1676,"[\""Keyboard\"", \""Headphones\""]",3853.15,{},30490,0,"""Asia""" +2024-06-04,368,7792,"[\""Tablet\"", \""Wireless Mouse\""]",3462.21,{},223351,1,"""North America""" +2024-07-09,369,9903,"[\""Wireless Mouse\""]",2960.92,{},101679,0,"""Africa""" +2023-04-24,370,3532,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4386.34,"{\""seasonal\"": \""8%\""}",98060,0,"""North America""" +2023-01-05,371,5005,"[\""Wireless Mouse\""]",3120.02,"{\""loyalty\"": \""17%\""}",130455,1,"""Europe""" +2023-05-23,372,4306,"[\""Charger\""]",748.28,"{\""promo\"": \""12%\""}",131801,0,"""Africa""" +2024-07-08,373,8863,"[\""Monitor\"", \""Phone\""]",160.3,{},146919,1,"""North America""" +2023-01-25,374,2460,"[\""Laptop\""]",2285.72,{},124422,1,"""Europe""" +2024-09-16,375,7212,"[\""Wireless Mouse\"", \""Monitor\""]",1580.24,"{\""promo\"": \""18%\""}",159223,0,"""Asia""" +2023-06-17,376,7009,"[\""Keyboard\"", \""Wireless Mouse\""]",834.7,{},32257,0,"""North America""" +2023-07-30,377,2740,"[\""Keyboard\"", \""Headphones\""]",895.35,{},292443,1,"""Asia""" +2024-12-30,378,336,"[\""Charger\""]",3282.32,{},47547,1,"""South America""" +2023-06-06,379,1746,"[\""Tablet\""]",1278.37,"{\"": \""21%\""}",104066,1,"""North America""" +2023-11-28,380,3072,"[\""Keyboard\"", \""Laptop\""]",2991.14,"{\"": \""5%\""}",224700,1,"""Asia""" +2023-08-12,381,2400,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1306.25,"{\""seasonal\"": \""6%\""}",195300,0,"""Asia""" +2023-06-02,382,9484,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3226.67,{},80780,0,"""North America""" +2024-07-13,383,2533,"[\""Keyboard\"", \""Phone\""]",1618.49,"{\""loyalty\"": \""21%\""}",242650,1,"""Europe""" +2024-02-12,384,3053,"[\""Charger\"", \""Wireless Mouse\""]",1324.74,{},2091,0,"""South America""" +2023-07-02,385,5633,"[\""Keyboard\"", \""Charger\""]",4678.44,"{\"": \""20%\""}",115875,1,"""North America""" +2023-02-03,386,4261,"[\""Charger\"", \""Phone\""]",1916.98,"{\""promo\"": \""26%\""}",114050,1,"""North America""" +2023-08-18,387,8994,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",457.27,{},206275,1,"""Africa""" +2024-02-26,388,4619,"[\""Headphones\""]",4160.32,"{\""promo\"": \""17%\""}",286462,1,"""North America""" +2023-03-27,389,7538,"[\""Wireless Mouse\""]",160.12,{},93829,1,"""North America""" +2023-11-01,390,8915,"[\""Headphones\"", \""Tablet\""]",4832.54,{},295506,1,"""South America""" +2023-06-18,391,6535,"[\""Phone\"", \""Laptop\""]",3574.42,{},133643,1,"""South America""" +2023-01-05,392,9594,"[\""Wireless Mouse\""]",1092.72,{},2973,0,"""Asia""" +2023-12-07,393,224,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3863.11,"{\""seasonal\"": \""27%\""}",188920,1,"""Asia""" +2024-04-23,394,4068,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",860.37,"{\"": \""29%\""}",63150,1,"""Africa""" +2024-11-19,395,8580,"[\""Wireless Mouse\""]",401.33,"{\""seasonal\"": \""16%\""}",295265,0,"""North America""" +2024-05-05,396,6284,"[\""Keyboard\"", \""Laptop\""]",472.74,{},175358,0,"""Asia""" +2023-11-19,397,2381,"[\""Keyboard\"", \""Charger\""]",4003.79,{},210783,0,"""Africa""" +2024-04-25,398,7229,"[\""Phone\"", \""Keyboard\""]",2100.53,"{\"": \""9%\""}",261496,0,"""Europe""" +2023-02-24,399,9532,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4105.45,"{\""promo\"": \""7%\""}",35236,1,"""South America""" +2023-11-19,400,3080,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3481.53,{},172607,0,"""South America""" +2024-11-04,401,1938,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3140.27,"{\""promo\"": \""19%\""}",108519,0,"""Asia""" +2024-03-24,402,4970,"[\""Charger\""]",1207.43,{},41057,1,"""Asia""" +2023-12-28,403,6548,"[\""Tablet\"", \""Keyboard\""]",4973.05,{},13144,1,"""Africa""" +2023-06-12,404,8408,"[\""Charger\"", \""Wireless Mouse\""]",4212.54,{},73360,1,"""Europe""" +2024-08-04,405,7978,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1741.49,"{\""loyalty\"": \""30%\""}",27698,1,"""North America""" +2024-06-11,406,8185,"[\""Laptop\"", \""Headphones\""]",1893.22,"{\""loyalty\"": \""26%\""}",114537,1,"""Asia""" +2023-08-13,407,6551,"[\""Headphones\"", \""Wireless Mouse\""]",422.81,{},264465,0,"""North America""" +2023-10-07,408,389,"[\""Laptop\"", \""Tablet\""]",1095.81,"{\""seasonal\"": \""9%\""}",201236,0,"""Europe""" +2024-01-14,409,9384,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1267.14,"{\""loyalty\"": \""16%\""}",269603,1,"""South America""" +2023-03-29,410,7624,"[\""Monitor\"", \""Charger\""]",214.7,{},149158,1,"""North America""" +2024-01-28,411,6186,"[\""Keyboard\"", \""Laptop\""]",1909.29,"{\"": \""16%\""}",125236,0,"""Asia""" +2023-12-22,412,7134,"[\""Monitor\"", \""Tablet\""]",1320.99,"{\""seasonal\"": \""29%\""}",147875,1,"""North America""" +2024-05-20,413,4659,"[\""Tablet\"", \""Phone\""]",4685.09,{},96626,1,"""Asia""" +2024-06-09,414,8266,"[\""Monitor\"", \""Charger\""]",2842.08,{},50278,0,"""Europe""" +2024-01-13,415,4019,"[\""Headphones\"", \""Charger\""]",947.44,{},230169,1,"""Africa""" +2023-10-10,416,8738,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2402.1,{},267462,1,"""South America""" +2024-11-09,417,61,"[\""Headphones\"", \""Tablet\""]",1590.63,{},292552,1,"""South America""" +2023-05-22,418,4079,"[\""Charger\"", \""Phone\""]",400.8,{},181144,0,"""Europe""" +2024-02-23,419,8545,"[\""Tablet\"", \""Keyboard\""]",3984.45,"{\""loyalty\"": \""30%\""}",286029,0,"""Europe""" +2023-03-05,420,8722,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",596.07,{},197127,1,"""North America""" +2023-08-17,421,7089,"[\""Tablet\"", \""Laptop\""]",1047.11,"{\""seasonal\"": \""16%\""}",139400,0,"""North America""" +2024-02-06,422,7978,"[\""Charger\""]",3736.75,{},96809,1,"""North America""" +2024-02-10,423,1090,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1118.3,{},128155,1,"""Africa""" +2023-02-28,424,8200,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4385.5,"{\""seasonal\"": \""21%\""}",103309,1,"""Asia""" +2023-04-09,425,4965,"[\""Charger\""]",70.04,{},55292,1,"""North America""" +2023-07-05,426,8273,"[\""Monitor\""]",3478.85,{},289381,0,"""Asia""" +2024-10-31,427,9817,"[\""Laptop\""]",3821.97,{},236209,0,"""Asia""" +2024-12-22,428,4667,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",836.98,"{\"": \""12%\""}",286988,0,"""South America""" +2023-07-14,429,3492,"[\""Keyboard\"", \""Phone\""]",1646.94,"{\"": \""21%\""}",254738,1,"""South America""" +2023-04-30,430,8175,"[\""Keyboard\""]",4412.78,"{\""loyalty\"": \""30%\""}",219158,0,"""Europe""" +2023-07-31,431,3521,"[\""Headphones\""]",3520.93,"{\""promo\"": \""26%\""}",153067,1,"""Asia""" +2024-09-18,432,3092,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",575.74,{},277258,1,"""Europe""" +2023-10-19,433,7344,"[\""Phone\""]",4434.6,"{\""seasonal\"": \""14%\""}",123499,1,"""Africa""" +2023-01-29,434,6930,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2002.2,{},202549,1,"""South America""" +2024-02-25,435,5211,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1948.39,"{\""loyalty\"": \""10%\""}",126101,0,"""Asia""" +2024-10-08,436,4980,"[\""Tablet\""]",2235.69,"{\"": \""24%\""}",113405,1,"""Africa""" +2024-09-13,437,4166,"[\""Charger\""]",1410.1,{},124991,0,"""North America""" +2024-06-17,438,2367,"[\""Headphones\""]",1481.08,"{\""promo\"": \""22%\""}",40316,0,"""Europe""" +2024-04-08,439,8397,"[\""Phone\""]",3626.95,{},209508,0,"""North America""" +2024-06-08,440,6281,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3442.53,{},71523,0,"""Africa""" +2024-05-04,441,8123,"[\""Keyboard\""]",2539.21,{},100309,1,"""Asia""" +2023-11-05,442,2174,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2834.13,{},165937,0,"""South America""" +2023-08-13,443,7893,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2606.15,{},208002,0,"""South America""" +2023-02-26,444,1435,"[\""Headphones\"", \""Keyboard\""]",1236.4,{},51964,0,"""Europe""" +2023-03-29,445,466,"[\""Laptop\""]",3436.82,"{\""promo\"": \""17%\""}",11160,0,"""Asia""" +2023-06-18,446,3578,"[\""Headphones\"", \""Phone\""]",1682.19,{},100961,1,"""Asia""" +2023-08-31,447,8885,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2595.9,{},193738,1,"""Africa""" +2024-02-07,448,5032,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2220.46,{},243184,1,"""North America""" +2023-08-27,449,9723,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1292.9,"{\"": \""30%\""}",83858,1,"""South America""" +2024-05-04,450,3376,"[\""Phone\"", \""Wireless Mouse\""]",173.2,{},48952,0,"""Europe""" +2023-01-09,451,910,"[\""Monitor\""]",699.02,{},186310,1,"""South America""" +2023-11-15,452,48,"[\""Tablet\"", \""Charger\""]",2422.92,"{\"": \""21%\""}",292476,0,"""North America""" +2023-11-29,453,445,"[\""Headphones\"", \""Monitor\""]",4724.6,{},185589,1,"""South America""" +2024-11-08,454,5026,"[\""Phone\""]",4456.3,"{\"": \""20%\""}",157498,0,"""Europe""" +2023-09-08,455,3664,"[\""Keyboard\"", \""Headphones\""]",2445.69,{},93190,1,"""Africa""" +2023-04-29,456,8829,"[\""Charger\""]",883.02,{},173376,0,"""South America""" +2023-03-19,457,677,"[\""Wireless Mouse\""]",3241.65,"{\""loyalty\"": \""25%\""}",108365,1,"""Asia""" +2024-12-16,458,2800,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",276.14,{},76792,1,"""North America""" +2024-08-09,459,5796,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1276.73,"{\""promo\"": \""27%\""}",297635,1,"""Africa""" +2024-12-15,460,6162,"[\""Laptop\"", \""Keyboard\""]",1442.41,"{\"": \""28%\""}",246744,1,"""Asia""" +2024-09-26,461,7131,"[\""Wireless Mouse\"", \""Tablet\""]",1671.38,"{\""seasonal\"": \""29%\""}",281018,0,"""North America""" +2024-02-04,462,3539,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3320.48,{},256173,1,"""Europe""" +2024-05-19,463,3996,"[\""Monitor\""]",4742.96,"{\"": \""13%\""}",145495,1,"""Europe""" +2024-01-02,464,8405,"[\""Tablet\"", \""Charger\""]",2497.44,{},33938,0,"""Europe""" +2023-07-04,465,568,"[\""Keyboard\""]",3592.63,{},51649,0,"""North America""" +2024-08-06,466,2532,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1679.37,{},21722,1,"""Africa""" +2023-05-09,467,5826,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2964.14,{},84001,1,"""North America""" +2024-01-23,468,4878,"[\""Monitor\"", \""Tablet\""]",2649.85,"{\""promo\"": \""28%\""}",97185,1,"""Africa""" +2024-02-28,469,9248,"[\""Headphones\""]",3248.98,{},53348,0,"""South America""" +2024-01-05,470,1975,"[\""Phone\""]",885.16,{},109971,0,"""North America""" +2023-12-15,471,5170,"[\""Charger\"", \""Wireless Mouse\""]",1246.29,{},156458,1,"""Europe""" +2023-09-21,472,6508,"[\""Phone\""]",2516.0,{},4403,0,"""Asia""" +2023-04-18,473,4217,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4666.38,{},58304,1,"""Europe""" +2023-01-27,474,2191,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3173.4,{},120436,1,"""South America""" +2023-02-21,475,5859,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",620.6,{},75499,1,"""Africa""" +2023-10-24,476,1218,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",632.16,{},93546,1,"""Africa""" +2023-11-09,477,1014,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",208.76,"{\""loyalty\"": \""26%\""}",72869,0,"""South America""" +2024-05-19,478,9656,"[\""Phone\"", \""Keyboard\""]",2707.71,"{\""loyalty\"": \""27%\""}",78090,1,"""Europe""" +2023-06-28,479,8118,"[\""Monitor\"", \""Phone\""]",4768.02,"{\""loyalty\"": \""25%\""}",234873,0,"""North America""" +2023-11-26,480,5502,"[\""Phone\"", \""Keyboard\""]",2547.05,"{\""loyalty\"": \""21%\""}",129908,0,"""South America""" +2024-04-13,481,2859,"[\""Charger\""]",573.84,{},262222,1,"""South America""" +2023-03-03,482,6325,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3830.04,{},124379,0,"""South America""" +2024-03-04,483,7934,"[\""Keyboard\"", \""Phone\""]",936.21,{},248722,0,"""Asia""" +2023-09-10,484,121,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1589.16,"{\""promo\"": \""25%\""}",93094,0,"""Asia""" +2024-01-06,485,7722,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",884.74,{},26843,0,"""Africa""" +2024-11-24,486,6664,"[\""Headphones\""]",1166.18,"{\"": \""9%\""}",106631,1,"""Africa""" +2023-08-12,487,3494,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1743.8,{},109788,0,"""South America""" +2024-06-06,488,6224,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4753.9,{},243644,0,"""North America""" +2023-03-09,489,6013,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1116.32,{},138185,1,"""Europe""" +2024-08-27,490,9283,"[\""Tablet\""]",3990.79,"{\""loyalty\"": \""26%\""}",209308,1,"""North America""" +2024-04-16,491,5991,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",51.06,"{\"": \""22%\""}",199995,0,"""Africa""" +2024-11-06,492,6725,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2525.76,{},37779,0,"""Africa""" +2023-01-17,493,8119,"[\""Wireless Mouse\""]",2926.23,"{\"": \""26%\""}",163284,1,"""Asia""" +2024-06-26,494,9916,"[\""Headphones\"", \""Laptop\""]",368.22,{},198896,1,"""North America""" +2024-12-27,495,7303,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",709.5,{},122674,1,"""Europe""" +2024-05-20,496,5826,"[\""Tablet\""]",4704.08,{},157258,0,"""South America""" +2023-11-15,497,5097,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4260.15,{},100732,0,"""Africa""" +2023-04-20,498,8758,"[\""Phone\""]",1873.64,{},64043,1,"""Asia""" +2024-09-30,499,4269,"[\""Keyboard\""]",2226.98,{},169091,1,"""South America""" +2024-05-20,500,1161,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",369.0,"{\""promo\"": \""12%\""}",19647,1,"""South America""" +2023-07-28,501,3634,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2250.37,"{\""loyalty\"": \""5%\""}",146472,0,"""Asia""" +2023-01-02,502,2651,"[\""Keyboard\""]",1351.56,{},252413,1,"""Europe""" +2023-05-05,503,9147,"[\""Headphones\"", \""Monitor\""]",1339.69,{},101956,0,"""Asia""" +2024-12-16,504,6088,"[\""Monitor\"", \""Tablet\""]",2807.44,"{\"": \""12%\""}",10958,0,"""Africa""" +2023-05-11,505,8638,"[\""Tablet\"", \""Wireless Mouse\""]",4956.62,{},243615,0,"""South America""" +2024-05-12,506,1049,"[\""Headphones\"", \""Tablet\""]",1811.75,{},77211,0,"""North America""" +2024-02-06,507,3629,"[\""Tablet\"", \""Charger\""]",657.22,"{\""promo\"": \""23%\""}",234576,1,"""North America""" +2023-01-06,508,9819,"[\""Monitor\""]",3696.78,"{\""loyalty\"": \""9%\""}",189075,0,"""South America""" +2024-03-17,509,2954,"[\""Charger\"", \""Headphones\""]",3530.07,{},293899,0,"""North America""" +2024-01-30,510,8716,"[\""Laptop\"", \""Headphones\""]",3716.27,"{\""seasonal\"": \""6%\""}",240849,0,"""South America""" +2023-08-19,511,4541,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4252.91,{},271756,0,"""North America""" +2024-01-02,512,6641,"[\""Wireless Mouse\""]",2475.13,{},225746,0,"""Europe""" +2023-10-02,513,6200,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",662.0,{},88173,1,"""Africa""" +2024-05-28,514,4646,"[\""Charger\""]",4369.71,"{\"": \""5%\""}",125196,0,"""North America""" +2023-11-04,515,5041,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2808.1,"{\""seasonal\"": \""28%\""}",167388,1,"""Asia""" +2024-04-12,516,842,"[\""Keyboard\""]",455.32,"{\"": \""8%\""}",191932,1,"""Europe""" +2024-11-02,517,9123,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1372.13,{},241439,1,"""South America""" +2024-12-27,518,922,"[\""Headphones\""]",2168.08,{},183360,0,"""South America""" +2024-01-13,519,9067,"[\""Phone\""]",1334.5,"{\""promo\"": \""15%\""}",245108,1,"""Asia""" +2023-08-22,520,6239,"[\""Laptop\""]",2368.23,"{\"": \""19%\""}",213174,1,"""North America""" +2024-08-22,521,7737,"[\""Keyboard\"", \""Charger\""]",3727.66,"{\"": \""6%\""}",147621,0,"""Asia""" +2024-07-15,522,3714,"[\""Phone\""]",2602.38,"{\""seasonal\"": \""22%\""}",19437,0,"""Europe""" +2023-09-04,523,169,"[\""Tablet\"", \""Phone\""]",1588.59,"{\""loyalty\"": \""18%\""}",213601,1,"""Asia""" +2024-09-11,524,4626,"[\""Laptop\"", \""Headphones\""]",1886.51,"{\""promo\"": \""18%\""}",38903,1,"""Africa""" +2023-08-28,525,7594,"[\""Laptop\"", \""Wireless Mouse\""]",1853.09,"{\""seasonal\"": \""28%\""}",154681,0,"""Africa""" +2024-09-30,526,6366,"[\""Tablet\""]",2724.41,"{\""seasonal\"": \""28%\""}",87244,1,"""Asia""" +2023-10-15,527,3158,"[\""Laptop\""]",4308.85,{},101273,1,"""Africa""" +2024-12-04,528,4297,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1582.62,{},287352,0,"""South America""" +2024-03-12,529,8388,"[\""Headphones\"", \""Laptop\""]",2195.57,"{\"": \""29%\""}",140840,0,"""Asia""" +2024-01-26,530,7900,"[\""Wireless Mouse\"", \""Keyboard\""]",4385.88,{},46644,1,"""South America""" +2024-07-12,531,7871,"[\""Wireless Mouse\"", \""Laptop\""]",1538.45,{},21423,0,"""Africa""" +2024-10-26,532,4111,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1708.48,"{\""promo\"": \""6%\""}",146897,0,"""Asia""" +2023-05-04,533,3612,"[\""Monitor\"", \""Charger\""]",1787.55,{},41034,0,"""North America""" +2023-02-15,534,7270,"[\""Phone\"", \""Headphones\""]",2827.35,{},171603,0,"""South America""" +2023-05-11,535,8865,"[\""Laptop\"", \""Headphones\""]",3713.15,{},290097,1,"""Africa""" +2023-04-24,536,2566,"[\""Laptop\""]",662.49,"{\""promo\"": \""5%\""}",9740,0,"""North America""" +2024-07-06,537,1240,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",803.26,{},12025,1,"""North America""" +2023-06-24,538,7453,"[\""Wireless Mouse\""]",2870.92,"{\"": \""5%\""}",237634,0,"""Asia""" +2024-08-25,539,2849,"[\""Laptop\"", \""Charger\""]",2131.84,{},223966,1,"""North America""" +2024-11-08,540,3307,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4839.32,{},113191,1,"""North America""" +2023-11-09,541,929,"[\""Phone\"", \""Monitor\""]",601.2,{},57761,0,"""South America""" +2024-04-01,542,5117,"[\""Keyboard\""]",4345.54,"{\""promo\"": \""29%\""}",236717,1,"""Africa""" +2024-06-21,543,9298,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4839.52,"{\""loyalty\"": \""22%\""}",93477,1,"""South America""" +2023-06-24,544,6114,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2702.33,"{\"": \""28%\""}",141137,1,"""Asia""" +2023-05-17,545,6819,"[\""Monitor\""]",1621.04,{},296054,0,"""South America""" +2024-07-16,546,3670,"[\""Laptop\""]",2506.04,"{\""promo\"": \""5%\""}",57241,1,"""North America""" +2024-11-24,547,5740,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",318.71,"{\""promo\"": \""27%\""}",39227,1,"""South America""" +2024-05-01,548,9162,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",584.47,"{\"": \""23%\""}",248531,0,"""Africa""" +2024-03-05,549,7544,"[\""Laptop\""]",1257.4,"{\""promo\"": \""29%\""}",234553,0,"""South America""" +2024-12-02,550,5566,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2591.07,{},110731,0,"""Africa""" +2023-11-17,551,8149,"[\""Keyboard\""]",2154.52,"{\""promo\"": \""29%\""}",44418,0,"""Africa""" +2024-11-11,552,8223,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",589.05,"{\""promo\"": \""14%\""}",273523,0,"""South America""" +2023-11-08,553,4485,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3206.76,{},236590,0,"""Africa""" +2023-03-25,554,8602,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4707.95,"{\""seasonal\"": \""17%\""}",105056,1,"""Africa""" +2024-03-03,555,9095,"[\""Tablet\""]",2463.31,{},297302,1,"""Europe""" +2023-01-18,556,308,"[\""Tablet\""]",4198.83,"{\""promo\"": \""26%\""}",214120,1,"""North America""" +2024-05-24,557,9150,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2590.1,"{\""seasonal\"": \""14%\""}",254747,1,"""Asia""" +2024-09-04,558,6202,"[\""Keyboard\"", \""Headphones\""]",826.54,"{\""seasonal\"": \""19%\""}",144367,1,"""Asia""" +2024-11-25,559,5553,"[\""Keyboard\""]",3194.62,{},164288,1,"""Asia""" +2023-05-16,560,8601,"[\""Laptop\"", \""Monitor\""]",2213.34,{},115458,0,"""Europe""" +2024-06-25,561,573,"[\""Keyboard\"", \""Laptop\""]",4222.48,{},22180,0,"""Africa""" +2024-10-23,562,5490,"[\""Wireless Mouse\"", \""Keyboard\""]",1938.33,"{\""seasonal\"": \""5%\""}",254734,0,"""South America""" +2023-05-10,563,6630,"[\""Monitor\"", \""Keyboard\""]",2070.55,"{\""promo\"": \""15%\""}",260710,1,"""Africa""" +2024-03-21,564,1793,"[\""Phone\""]",1119.42,"{\"": \""26%\""}",274971,1,"""Asia""" +2023-08-24,565,5492,"[\""Phone\"", \""Tablet\""]",2255.15,{},272088,1,"""Europe""" +2023-07-20,566,1624,"[\""Wireless Mouse\"", \""Phone\""]",1107.03,{},101502,1,"""South America""" +2024-12-08,567,6219,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1113.23,"{\""seasonal\"": \""30%\""}",67259,0,"""North America""" +2023-04-06,568,778,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2949.02,{},141220,0,"""Europe""" +2024-07-03,569,8203,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2461.98,{},268745,0,"""Asia""" +2024-01-19,570,7363,"[\""Laptop\"", \""Tablet\""]",3999.76,"{\""loyalty\"": \""17%\""}",126544,0,"""Europe""" +2024-12-05,571,3954,"[\""Tablet\"", \""Monitor\""]",2071.79,{},161622,1,"""Africa""" +2023-05-01,572,6840,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3544.38,"{\""promo\"": \""13%\""}",152570,1,"""Asia""" +2024-09-11,573,8546,"[\""Phone\""]",1944.68,"{\""seasonal\"": \""21%\""}",18881,0,"""Asia""" +2024-01-14,574,6959,"[\""Laptop\""]",1396.63,{},222856,1,"""North America""" +2024-08-01,575,673,"[\""Charger\""]",1037.74,"{\"": \""29%\""}",72715,0,"""North America""" +2024-08-15,576,8208,"[\""Headphones\""]",3124.17,{},145425,0,"""Africa""" +2024-04-01,577,2599,"[\""Phone\""]",1448.94,"{\"": \""15%\""}",247343,0,"""Africa""" +2024-12-11,578,5600,"[\""Laptop\"", \""Phone\""]",4769.07,"{\""promo\"": \""17%\""}",122777,1,"""Europe""" +2023-09-11,579,9636,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2191.47,{},135391,1,"""North America""" +2023-03-03,580,237,"[\""Laptop\"", \""Monitor\""]",415.08,{},191512,0,"""Africa""" +2023-09-01,581,2810,"[\""Charger\""]",4593.16,{},258380,0,"""South America""" +2023-04-12,582,6177,"[\""Monitor\""]",279.06,"{\"": \""5%\""}",177656,1,"""Asia""" +2023-10-05,583,5819,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1100.32,{},13971,0,"""North America""" +2023-08-10,584,378,"[\""Charger\"", \""Wireless Mouse\""]",72.1,{},264109,0,"""Asia""" +2024-05-31,585,4102,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4676.47,"{\"": \""22%\""}",227151,1,"""South America""" +2023-10-22,586,3085,"[\""Headphones\"", \""Keyboard\""]",1637.75,{},65037,0,"""Asia""" +2023-03-29,587,6375,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3485.88,"{\"": \""19%\""}",283035,1,"""Europe""" +2024-12-17,588,2539,"[\""Tablet\"", \""Keyboard\""]",4684.81,"{\""seasonal\"": \""30%\""}",224616,0,"""Asia""" +2023-08-24,589,9267,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2547.63,"{\"": \""10%\""}",101566,0,"""Europe""" +2023-06-17,590,8448,"[\""Headphones\"", \""Charger\""]",1146.77,{},237144,0,"""Europe""" +2023-07-21,591,7940,"[\""Phone\""]",3478.83,"{\"": \""27%\""}",1768,1,"""Asia""" +2024-12-02,592,4721,"[\""Keyboard\""]",2286.58,{},152098,0,"""Europe""" +2023-06-02,593,2585,"[\""Laptop\"", \""Tablet\""]",2903.96,"{\"": \""29%\""}",226648,1,"""Asia""" +2023-06-21,594,421,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1806.15,{},184391,1,"""Europe""" +2024-07-03,595,5342,"[\""Charger\"", \""Laptop\""]",2319.42,{},77531,1,"""Asia""" +2023-04-22,596,2481,"[\""Laptop\""]",4834.47,{},47668,0,"""North America""" +2023-07-04,597,7942,"[\""Monitor\""]",4089.1,{},144743,1,"""Europe""" +2024-05-27,598,1333,"[\""Headphones\""]",2994.42,"{\""seasonal\"": \""9%\""}",31071,1,"""Asia""" +2024-02-13,599,2257,"[\""Keyboard\"", \""Headphones\""]",4601.59,"{\""promo\"": \""24%\""}",125993,0,"""Africa""" +2024-02-03,600,789,"[\""Keyboard\""]",2891.66,{},225408,1,"""Asia""" +2024-02-03,601,4150,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",204.11,{},175104,1,"""North America""" +2023-10-17,602,6493,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1648.04,"{\""seasonal\"": \""27%\""}",164637,1,"""Africa""" +2023-08-25,603,1491,"[\""Charger\""]",2978.83,"{\""seasonal\"": \""9%\""}",231595,1,"""Europe""" +2024-04-26,604,5619,"[\""Charger\"", \""Monitor\""]",4529.65,"{\""loyalty\"": \""28%\""}",185176,0,"""Asia""" +2023-08-14,605,8691,"[\""Charger\"", \""Laptop\""]",2454.96,"{\"": \""25%\""}",165748,0,"""Europe""" +2023-05-01,606,5922,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4313.52,"{\""seasonal\"": \""10%\""}",176293,0,"""South America""" +2024-11-16,607,6390,"[\""Tablet\""]",2905.82,{},34777,1,"""Asia""" +2024-09-29,608,6825,"[\""Monitor\"", \""Phone\""]",1124.12,{},209324,0,"""Europe""" +2024-08-15,609,3624,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3253.94,{},55152,1,"""South America""" +2023-07-07,610,2952,"[\""Laptop\"", \""Phone\""]",808.43,{},249448,1,"""North America""" +2023-03-09,611,23,"[\""Laptop\"", \""Monitor\""]",4293.9,"{\"": \""9%\""}",15259,0,"""Europe""" +2023-10-16,612,7216,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4327.13,{},217282,0,"""Africa""" +2023-09-08,613,6900,"[\""Laptop\"", \""Phone\""]",4470.94,{},241300,0,"""South America""" +2024-11-15,614,571,"[\""Charger\""]",4359.49,"{\""seasonal\"": \""22%\""}",4861,1,"""Africa""" +2023-03-15,615,7100,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3699.28,"{\""loyalty\"": \""8%\""}",183377,0,"""South America""" +2023-05-13,616,8144,"[\""Charger\"", \""Phone\""]",3668.76,"{\""promo\"": \""20%\""}",24746,1,"""Europe""" +2024-10-17,617,7427,"[\""Phone\"", \""Tablet\""]",4040.56,"{\""seasonal\"": \""18%\""}",75553,1,"""North America""" +2023-02-24,618,9597,"[\""Charger\"", \""Phone\""]",4190.15,"{\""seasonal\"": \""18%\""}",274177,1,"""South America""" +2024-05-09,619,5556,"[\""Laptop\""]",3689.44,"{\""seasonal\"": \""18%\""}",99087,1,"""Africa""" +2024-04-05,620,757,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",89.39,{},176782,0,"""South America""" +2023-12-04,621,2242,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3146.35,"{\""seasonal\"": \""16%\""}",144458,1,"""Asia""" +2024-01-11,622,1754,"[\""Laptop\"", \""Keyboard\""]",1701.54,{},297767,0,"""Africa""" +2023-03-13,623,7939,"[\""Wireless Mouse\""]",1301.04,"{\""promo\"": \""19%\""}",181867,0,"""Asia""" +2024-10-14,624,469,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1311.79,{},187400,1,"""South America""" +2023-04-11,625,2606,"[\""Headphones\"", \""Charger\""]",4549.59,"{\""promo\"": \""30%\""}",90552,1,"""Asia""" +2024-11-16,626,2682,"[\""Wireless Mouse\""]",1399.14,"{\"": \""14%\""}",276451,1,"""North America""" +2024-11-03,627,4436,"[\""Phone\"", \""Headphones\""]",3209.47,"{\""loyalty\"": \""5%\""}",98352,1,"""Europe""" +2023-12-29,628,7983,"[\""Wireless Mouse\"", \""Laptop\""]",4987.05,"{\""promo\"": \""29%\""}",247630,0,"""Europe""" +2023-12-28,629,7227,"[\""Headphones\"", \""Laptop\""]",3306.7,"{\""loyalty\"": \""17%\""}",226877,0,"""North America""" +2024-12-23,630,9442,"[\""Laptop\"", \""Headphones\""]",2422.01,"{\"": \""24%\""}",211892,0,"""Europe""" +2024-08-24,631,1212,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2924.6,{},31069,0,"""Europe""" +2023-07-22,632,7329,"[\""Monitor\""]",3575.2,{},17306,1,"""Europe""" +2024-08-05,633,4857,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1886.33,"{\""promo\"": \""19%\""}",216692,1,"""North America""" +2024-12-13,634,6713,"[\""Phone\""]",4004.51,{},285570,1,"""Europe""" +2024-08-21,635,1806,"[\""Headphones\""]",1028.66,{},279149,0,"""Europe""" +2024-07-24,636,7476,"[\""Phone\""]",312.39,{},121118,0,"""Europe""" +2023-05-15,637,1802,"[\""Phone\"", \""Wireless Mouse\""]",162.35,{},52352,0,"""North America""" +2023-08-01,638,2419,"[\""Phone\"", \""Wireless Mouse\""]",597.02,{},159967,0,"""North America""" +2023-08-14,639,8432,"[\""Monitor\"", \""Laptop\""]",3958.6,{},256577,1,"""North America""" +2023-02-16,640,2204,"[\""Wireless Mouse\""]",1455.01,"{\""loyalty\"": \""23%\""}",147288,1,"""Asia""" +2024-01-14,641,311,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2292.37,{},284803,1,"""Europe""" +2023-01-20,642,6675,"[\""Laptop\""]",486.43,{},293191,0,"""Asia""" +2024-08-08,643,6674,"[\""Charger\""]",250.87,{},176495,0,"""South America""" +2023-08-10,644,3965,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1366.84,"{\""loyalty\"": \""17%\""}",116704,1,"""South America""" +2024-12-13,645,9220,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1645.72,"{\""seasonal\"": \""14%\""}",18553,0,"""South America""" +2023-01-15,646,1594,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2138.15,"{\""loyalty\"": \""17%\""}",197718,1,"""North America""" +2023-06-21,647,7387,"[\""Tablet\"", \""Laptop\""]",536.89,"{\"": \""26%\""}",45653,1,"""South America""" +2023-12-16,648,6758,"[\""Monitor\"", \""Phone\""]",4478.52,{},67720,0,"""Europe""" +2024-01-23,649,8703,"[\""Tablet\""]",3370.36,{},250973,0,"""South America""" +2023-03-09,650,1654,"[\""Laptop\"", \""Monitor\""]",2135.13,"{\"": \""16%\""}",292096,1,"""Europe""" +2024-01-09,651,1918,"[\""Wireless Mouse\""]",198.25,"{\"": \""21%\""}",235484,1,"""South America""" +2023-07-05,652,9659,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2935.03,{},239802,1,"""Asia""" +2024-11-08,653,5090,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4028.82,"{\""promo\"": \""23%\""}",77706,1,"""South America""" +2024-09-09,654,4759,"[\""Keyboard\""]",4317.12,{},3790,0,"""South America""" +2024-08-25,655,4808,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",298.47,{},9786,1,"""Asia""" +2023-05-24,656,6311,"[\""Monitor\"", \""Wireless Mouse\""]",3840.08,{},88615,0,"""Asia""" +2023-06-06,657,4530,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3015.58,"{\"": \""14%\""}",279053,1,"""Asia""" +2023-11-30,658,5136,"[\""Keyboard\""]",4928.81,{},294211,1,"""Europe""" +2023-05-13,659,3521,"[\""Keyboard\"", \""Phone\""]",1771.69,{},148034,1,"""South America""" +2024-02-23,660,3077,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4921.79,{},159926,1,"""Asia""" +2024-01-23,661,5834,"[\""Tablet\""]",1591.8,"{\""loyalty\"": \""20%\""}",169109,1,"""Europe""" +2024-05-03,662,6784,"[\""Monitor\"", \""Phone\""]",3945.28,{},174994,0,"""Africa""" +2023-07-13,663,9664,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1957.77,{},209120,0,"""South America""" +2023-08-27,664,7320,"[\""Headphones\"", \""Tablet\""]",932.11,"{\""loyalty\"": \""7%\""}",134495,0,"""South America""" +2023-08-04,665,5732,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2461.19,{},32364,0,"""Africa""" +2023-03-12,666,3248,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4817.06,{},179718,1,"""Europe""" +2024-01-10,667,6805,"[\""Monitor\"", \""Laptop\""]",2551.3,{},180047,0,"""North America""" +2024-02-11,668,2407,"[\""Monitor\"", \""Headphones\""]",2602.71,"{\""promo\"": \""22%\""}",48044,0,"""North America""" +2024-04-12,669,5658,"[\""Laptop\""]",3927.25,{},7766,1,"""South America""" +2023-02-01,670,661,"[\""Laptop\"", \""Charger\""]",1102.29,{},84002,1,"""Africa""" +2024-02-25,671,3892,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3700.39,"{\""promo\"": \""29%\""}",38910,1,"""Africa""" +2023-05-17,672,6115,"[\""Laptop\""]",3216.69,{},36437,0,"""Africa""" +2023-06-15,673,1552,"[\""Wireless Mouse\""]",291.07,"{\""seasonal\"": \""22%\""}",179251,0,"""North America""" +2023-03-05,674,3322,"[\""Monitor\"", \""Wireless Mouse\""]",4342.63,{},9918,1,"""Africa""" +2024-11-16,675,4891,"[\""Laptop\"", \""Charger\""]",1706.09,"{\"": \""23%\""}",222527,1,"""Asia""" +2024-02-02,676,504,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1411.15,"{\""promo\"": \""29%\""}",18795,0,"""Africa""" +2023-03-18,677,5152,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1958.62,"{\""seasonal\"": \""7%\""}",206652,1,"""South America""" +2024-09-16,678,244,"[\""Headphones\"", \""Phone\""]",3468.07,"{\""promo\"": \""6%\""}",71713,1,"""Europe""" +2023-07-03,679,264,"[\""Tablet\"", \""Laptop\""]",1096.37,{},149457,0,"""Europe""" +2024-01-07,680,5321,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2187.67,{},63209,0,"""South America""" +2023-01-01,681,8361,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1011.3,"{\""loyalty\"": \""16%\""}",6296,0,"""North America""" +2023-06-02,682,5747,"[\""Monitor\"", \""Keyboard\""]",2540.79,"{\""promo\"": \""24%\""}",244957,1,"""South America""" +2024-09-25,683,8483,"[\""Phone\"", \""Keyboard\""]",363.3,"{\""promo\"": \""25%\""}",142795,1,"""Africa""" +2023-10-19,684,9724,"[\""Keyboard\""]",936.35,"{\""promo\"": \""6%\""}",26508,0,"""Europe""" +2023-10-21,685,6401,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2219.3,"{\""promo\"": \""5%\""}",237656,1,"""North America""" +2024-12-30,686,343,"[\""Phone\"", \""Tablet\""]",69.11,"{\""loyalty\"": \""18%\""}",158949,1,"""North America""" +2024-02-06,687,6324,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2752.51,{},43316,1,"""Africa""" +2023-11-19,688,845,"[\""Tablet\"", \""Headphones\""]",3590.06,{},130166,1,"""North America""" +2023-03-20,689,9695,"[\""Headphones\""]",1149.83,{},237918,0,"""Africa""" +2024-02-22,690,6053,"[\""Keyboard\""]",1380.55,"{\""loyalty\"": \""14%\""}",204683,1,"""South America""" +2024-10-12,691,5327,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",562.37,{},52846,0,"""South America""" +2024-08-17,692,1912,"[\""Laptop\""]",1542.74,"{\"": \""10%\""}",110781,1,"""Asia""" +2023-11-16,693,7566,"[\""Wireless Mouse\""]",4033.32,"{\""loyalty\"": \""23%\""}",85861,0,"""Europe""" +2023-02-21,694,2095,"[\""Phone\""]",3158.74,{},267087,1,"""Europe""" +2024-12-13,695,7052,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3584.77,{},66300,1,"""South America""" +2024-05-02,696,4905,"[\""Charger\"", \""Headphones\""]",2862.96,"{\"": \""24%\""}",172373,0,"""South America""" +2023-11-25,697,7152,"[\""Monitor\"", \""Charger\""]",2497.32,{},37639,0,"""Europe""" +2024-11-05,698,9882,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4303.37,{},4109,1,"""South America""" +2023-06-28,699,7968,"[\""Headphones\"", \""Monitor\""]",835.21,"{\""loyalty\"": \""6%\""}",174309,0,"""North America""" +2023-04-30,700,6210,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4427.68,"{\""promo\"": \""30%\""}",175851,1,"""North America""" +2023-08-31,701,7784,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3757.16,"{\"": \""11%\""}",123603,1,"""North America""" +2023-07-28,702,6442,"[\""Tablet\""]",4678.6,{},72095,0,"""North America""" +2024-10-13,703,9582,"[\""Charger\"", \""Tablet\""]",95.47,{},201387,1,"""North America""" +2024-07-04,704,8975,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3443.16,{},135348,1,"""North America""" +2024-04-28,705,2081,"[\""Headphones\"", \""Laptop\""]",1281.19,"{\"": \""20%\""}",198829,0,"""Asia""" +2024-01-17,706,9123,"[\""Keyboard\"", \""Tablet\""]",137.91,"{\""loyalty\"": \""11%\""}",230753,1,"""South America""" +2023-03-19,707,5637,"[\""Charger\"", \""Keyboard\""]",298.57,"{\""promo\"": \""6%\""}",95621,0,"""North America""" +2024-10-21,708,6183,"[\""Headphones\"", \""Laptop\""]",358.17,"{\""loyalty\"": \""14%\""}",249757,1,"""South America""" +2023-11-04,709,5493,"[\""Tablet\""]",1952.93,{},87768,1,"""Africa""" +2023-02-16,710,2603,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",222.92,"{\""seasonal\"": \""8%\""}",131922,1,"""South America""" +2023-05-09,711,9184,"[\""Headphones\""]",3989.15,{},6960,0,"""North America""" +2024-04-07,712,701,"[\""Wireless Mouse\"", \""Tablet\""]",3131.26,"{\""promo\"": \""30%\""}",242562,0,"""Europe""" +2024-03-04,713,3973,"[\""Charger\"", \""Tablet\""]",4427.5,{},174360,0,"""Asia""" +2024-07-26,714,4932,"[\""Monitor\"", \""Wireless Mouse\""]",125.83,"{\""promo\"": \""9%\""}",232361,0,"""North America""" +2023-12-23,715,3311,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2466.24,"{\""promo\"": \""10%\""}",42218,1,"""Europe""" +2024-07-24,716,4547,"[\""Charger\"", \""Phone\""]",3005.74,"{\"": \""14%\""}",218939,0,"""Asia""" +2024-02-07,717,7192,"[\""Charger\""]",1869.08,{},161393,0,"""North America""" +2024-07-04,718,6224,"[\""Monitor\"", \""Charger\""]",975.66,"{\"": \""21%\""}",292539,0,"""North America""" +2023-06-22,719,2509,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4075.05,"{\"": \""11%\""}",198686,0,"""North America""" +2024-08-13,720,3644,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3640.3,{},295225,1,"""South America""" +2024-07-04,721,6405,"[\""Laptop\""]",3153.61,"{\"": \""7%\""}",133595,1,"""Africa""" +2023-03-05,722,2538,"[\""Wireless Mouse\"", \""Laptop\""]",2179.61,"{\"": \""14%\""}",221219,1,"""Asia""" +2023-03-15,723,7595,"[\""Headphones\"", \""Tablet\""]",2411.85,"{\""seasonal\"": \""20%\""}",91822,0,"""South America""" +2023-02-06,724,1724,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3342.52,{},277784,1,"""Asia""" +2024-01-12,725,3159,"[\""Keyboard\""]",297.29,"{\""promo\"": \""24%\""}",16754,0,"""Asia""" +2024-01-09,726,7955,"[\""Keyboard\"", \""Charger\""]",1756.46,{},150203,0,"""North America""" +2024-08-17,727,1267,"[\""Tablet\"", \""Charger\""]",1193.78,"{\""seasonal\"": \""30%\""}",120082,1,"""North America""" +2024-06-06,728,6055,"[\""Headphones\"", \""Keyboard\""]",3236.95,"{\""promo\"": \""23%\""}",295021,0,"""South America""" +2024-11-20,729,2431,"[\""Monitor\"", \""Laptop\""]",3666.15,{},276367,1,"""Europe""" +2024-05-18,730,6623,"[\""Wireless Mouse\""]",1982.67,"{\""seasonal\"": \""27%\""}",169869,1,"""Africa""" +2023-04-29,731,4482,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2958.64,"{\"": \""19%\""}",22812,1,"""South America""" +2023-11-03,732,3808,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",74.39,"{\"": \""17%\""}",263571,0,"""South America""" +2023-06-16,733,5079,"[\""Laptop\""]",3455.31,"{\""promo\"": \""20%\""}",219744,1,"""South America""" +2024-06-27,734,9993,"[\""Headphones\"", \""Phone\""]",313.5,{},273866,0,"""Africa""" +2023-02-13,735,1831,"[\""Tablet\""]",1514.88,"{\""seasonal\"": \""14%\""}",173172,0,"""North America""" +2024-06-10,736,5285,"[\""Headphones\""]",657.6,{},103576,1,"""South America""" +2024-12-15,737,6375,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4492.47,"{\""loyalty\"": \""21%\""}",180325,0,"""Europe""" +2024-05-17,738,62,"[\""Laptop\""]",552.03,"{\"": \""7%\""}",183561,1,"""North America""" +2023-02-19,739,703,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4329.94,{},262152,1,"""Europe""" +2023-06-22,740,3222,"[\""Wireless Mouse\""]",2768.96,{},113974,0,"""North America""" +2024-06-29,741,8423,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4787.8,"{\""loyalty\"": \""7%\""}",228250,1,"""Europe""" +2023-11-17,742,6469,"[\""Wireless Mouse\""]",1895.96,"{\""seasonal\"": \""5%\""}",9506,0,"""Europe""" +2024-05-22,743,6836,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2168.92,{},36893,1,"""Africa""" +2023-06-29,744,5215,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2317.82,"{\""promo\"": \""30%\""}",80586,0,"""North America""" +2023-06-06,745,3883,"[\""Wireless Mouse\"", \""Monitor\""]",1557.0,{},153275,0,"""South America""" +2024-11-23,746,9959,"[\""Headphones\"", \""Monitor\""]",4387.33,{},167455,0,"""Africa""" +2024-05-09,747,7987,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2117.89,"{\"": \""29%\""}",65855,1,"""Europe""" +2023-02-04,748,6567,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3404.41,"{\""loyalty\"": \""8%\""}",108777,0,"""Europe""" +2024-05-11,749,6376,"[\""Laptop\"", \""Keyboard\""]",4557.33,"{\"": \""18%\""}",171516,1,"""Africa""" +2023-07-23,750,171,"[\""Keyboard\""]",943.24,"{\""promo\"": \""12%\""}",220066,0,"""South America""" +2024-07-09,751,3092,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1020.17,"{\""seasonal\"": \""17%\""}",218297,1,"""Africa""" +2023-01-24,752,1824,"[\""Laptop\""]",527.61,"{\""loyalty\"": \""20%\""}",53748,1,"""Asia""" +2023-08-03,753,9932,"[\""Charger\"", \""Laptop\""]",3671.61,"{\""loyalty\"": \""20%\""}",87727,0,"""Africa""" +2024-03-21,754,9360,"[\""Keyboard\""]",4786.81,"{\""seasonal\"": \""5%\""}",238967,1,"""North America""" +2024-06-10,755,9921,"[\""Keyboard\"", \""Charger\""]",1275.58,"{\""promo\"": \""13%\""}",231877,1,"""Europe""" +2024-03-03,756,5977,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3991.48,{},115114,0,"""South America""" +2023-06-06,757,8846,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3151.94,"{\""seasonal\"": \""26%\""}",42735,1,"""South America""" +2024-08-31,758,8476,"[\""Phone\"", \""Keyboard\""]",2386.44,"{\""seasonal\"": \""12%\""}",185510,0,"""Africa""" +2023-10-18,759,5909,"[\""Phone\"", \""Monitor\""]",920.59,"{\""loyalty\"": \""21%\""}",232609,0,"""Asia""" +2023-05-30,760,7629,"[\""Keyboard\"", \""Headphones\""]",3786.36,{},5048,1,"""Africa""" +2024-11-03,761,9788,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1923.01,{},128531,1,"""South America""" +2024-01-01,762,4749,"[\""Headphones\""]",1208.67,{},70014,1,"""Europe""" +2023-06-29,763,5680,"[\""Laptop\"", \""Wireless Mouse\""]",869.6,{},219805,1,"""Asia""" +2024-02-29,764,2404,"[\""Phone\""]",2355.67,{},9025,0,"""North America""" +2024-11-25,765,5080,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3173.9,{},77932,0,"""Europe""" +2023-12-22,766,7647,"[\""Headphones\""]",270.48,{},112285,1,"""Africa""" +2024-03-02,767,640,"[\""Wireless Mouse\""]",3778.58,{},61399,1,"""Asia""" +2023-03-24,768,3788,"[\""Phone\"", \""Keyboard\""]",2234.71,{},164231,1,"""Europe""" +2024-04-20,769,747,"[\""Wireless Mouse\"", \""Laptop\""]",4058.9,{},210138,0,"""Africa""" +2023-07-28,770,8550,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4955.31,{},106262,1,"""Europe""" +2024-05-08,771,6609,"[\""Charger\""]",397.62,{},192704,1,"""Europe""" +2024-10-11,772,2137,"[\""Charger\""]",3411.66,{},204571,1,"""Africa""" +2023-03-08,773,9760,"[\""Monitor\""]",1200.75,"{\""promo\"": \""14%\""}",10811,1,"""North America""" +2023-11-30,774,9288,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2423.54,"{\""promo\"": \""22%\""}",33795,1,"""Asia""" +2024-09-09,775,5695,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2848.91,{},282778,1,"""Europe""" +2023-04-30,776,1901,"[\""Laptop\"", \""Monitor\""]",938.9,"{\""promo\"": \""20%\""}",5413,0,"""Europe""" +2023-07-05,777,1774,"[\""Monitor\"", \""Keyboard\""]",468.69,{},41406,0,"""North America""" +2023-03-28,778,9223,"[\""Monitor\""]",1589.11,"{\""loyalty\"": \""28%\""}",191484,0,"""Asia""" +2024-02-07,779,9119,"[\""Charger\""]",1191.59,{},30624,0,"""Europe""" +2024-03-02,780,8757,"[\""Wireless Mouse\"", \""Keyboard\""]",2465.84,{},156451,1,"""North America""" +2023-09-12,781,2496,"[\""Phone\""]",1500.92,"{\"": \""26%\""}",171487,1,"""South America""" +2024-12-10,782,4351,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4810.95,"{\""loyalty\"": \""15%\""}",278878,0,"""Africa""" +2023-02-25,783,4083,"[\""Charger\"", \""Headphones\""]",2096.31,"{\""seasonal\"": \""5%\""}",92391,0,"""Asia""" +2024-12-31,784,674,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1189.28,"{\""loyalty\"": \""9%\""}",2400,0,"""South America""" +2024-06-14,785,2740,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2695.83,"{\""promo\"": \""26%\""}",259022,1,"""North America""" +2024-11-09,786,8884,"[\""Wireless Mouse\""]",899.24,"{\""seasonal\"": \""8%\""}",69086,1,"""Asia""" +2024-12-10,787,5267,"[\""Laptop\"", \""Wireless Mouse\""]",311.82,"{\""loyalty\"": \""7%\""}",85129,0,"""Asia""" +2024-11-12,788,236,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3676.75,{},24877,1,"""Asia""" +2024-02-10,789,1291,"[\""Laptop\"", \""Tablet\""]",721.06,{},146179,0,"""South America""" +2024-04-30,790,434,"[\""Charger\"", \""Phone\""]",1865.42,"{\""seasonal\"": \""11%\""}",265193,0,"""Africa""" +2023-04-05,791,8524,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",597.98,"{\"": \""6%\""}",264933,0,"""Africa""" +2023-04-11,792,6851,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2504.12,{},281610,1,"""South America""" +2024-02-05,793,7036,"[\""Wireless Mouse\"", \""Monitor\""]",3163.2,"{\"": \""20%\""}",48582,0,"""Africa""" +2023-07-02,794,1986,"[\""Keyboard\""]",1757.11,{},108713,1,"""Asia""" +2023-06-29,795,3908,"[\""Charger\""]",2115.5,{},47652,1,"""North America""" +2023-12-29,796,9041,"[\""Laptop\""]",297.68,{},215293,0,"""Asia""" +2023-02-27,797,6320,"[\""Monitor\""]",2273.85,"{\"": \""16%\""}",143847,1,"""Asia""" +2023-08-02,798,1394,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2719.17,{},139719,0,"""Asia""" +2024-07-04,799,3313,"[\""Phone\""]",164.61,{},61765,1,"""Europe""" +2024-04-08,800,6297,"[\""Tablet\"", \""Wireless Mouse\""]",2821.94,{},199973,0,"""Asia""" +2023-03-04,801,5367,"[\""Monitor\""]",816.17,"{\""promo\"": \""22%\""}",256170,1,"""North America""" +2024-12-16,802,53,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2111.65,"{\"": \""30%\""}",49645,0,"""Asia""" +2024-06-05,803,9598,"[\""Headphones\"", \""Monitor\""]",3242.01,"{\""promo\"": \""18%\""}",92286,1,"""South America""" +2024-12-15,804,6091,"[\""Wireless Mouse\""]",595.72,{},152835,1,"""Asia""" +2024-09-28,805,9762,"[\""Charger\""]",4008.53,"{\""seasonal\"": \""15%\""}",13748,0,"""Asia""" +2023-09-30,806,791,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3040.0,{},260617,0,"""Africa""" +2024-12-08,807,8897,"[\""Phone\"", \""Tablet\""]",4364.21,{},208844,0,"""Asia""" +2024-12-27,808,5617,"[\""Headphones\"", \""Monitor\""]",182.2,{},216400,0,"""North America""" +2024-01-27,809,7965,"[\""Headphones\""]",2590.96,{},159350,1,"""Asia""" +2023-06-28,810,6560,"[\""Laptop\"", \""Tablet\""]",2385.25,"{\""seasonal\"": \""28%\""}",255638,1,"""Asia""" +2024-03-05,811,2502,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4402.33,{},7376,1,"""Europe""" +2024-01-25,812,920,"[\""Headphones\"", \""Phone\""]",371.49,"{\""loyalty\"": \""17%\""}",159313,1,"""Europe""" +2024-05-01,813,5880,"[\""Charger\""]",4438.46,"{\""loyalty\"": \""20%\""}",179608,1,"""Africa""" +2024-02-12,814,3256,"[\""Monitor\""]",1467.84,{},97886,0,"""South America""" +2024-11-25,815,5167,"[\""Laptop\"", \""Charger\""]",191.3,"{\"": \""21%\""}",99430,0,"""South America""" +2023-12-10,816,4811,"[\""Phone\""]",2461.6,{},210051,0,"""Europe""" +2023-06-12,817,1583,"[\""Charger\""]",4253.18,{},144336,1,"""Europe""" +2023-12-21,818,3892,"[\""Headphones\""]",1371.88,{},254423,0,"""Asia""" +2023-11-16,819,2249,"[\""Phone\"", \""Monitor\""]",1821.12,"{\""promo\"": \""25%\""}",30314,1,"""Asia""" +2024-06-09,820,6438,"[\""Wireless Mouse\"", \""Laptop\""]",2831.92,"{\""loyalty\"": \""20%\""}",31781,0,"""Asia""" +2023-08-09,821,3104,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4496.27,{},173890,1,"""South America""" +2024-08-26,822,7669,"[\""Keyboard\"", \""Charger\""]",1468.83,"{\""loyalty\"": \""30%\""}",190528,0,"""Europe""" +2023-01-18,823,2066,"[\""Laptop\""]",899.62,{},106453,0,"""South America""" +2024-05-15,824,8244,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4785.97,{},169900,0,"""Africa""" +2023-01-27,825,8894,"[\""Keyboard\"", \""Charger\""]",4731.4,"{\""seasonal\"": \""30%\""}",229641,1,"""Europe""" +2024-08-03,826,8204,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",195.23,"{\"": \""18%\""}",227939,1,"""Africa""" +2024-01-11,827,2028,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1948.18,"{\""promo\"": \""12%\""}",69152,1,"""South America""" +2024-03-19,828,7955,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2549.57,"{\""loyalty\"": \""27%\""}",256235,0,"""Africa""" +2023-05-19,829,9190,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1423.0,{},138568,1,"""South America""" +2023-05-21,830,5730,"[\""Monitor\""]",4456.28,"{\""loyalty\"": \""14%\""}",159421,0,"""North America""" +2023-09-09,831,4259,"[\""Wireless Mouse\""]",3361.84,{},150226,1,"""North America""" +2023-10-26,832,9595,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4764.83,{},118333,1,"""Europe""" +2024-09-15,833,5349,"[\""Headphones\"", \""Keyboard\""]",4965.72,{},298845,1,"""Asia""" +2023-12-14,834,8426,"[\""Keyboard\"", \""Wireless Mouse\""]",2583.06,"{\""seasonal\"": \""15%\""}",123485,0,"""Africa""" +2024-01-09,835,1445,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",369.49,"{\""loyalty\"": \""9%\""}",157109,0,"""Europe""" +2023-06-24,836,1696,"[\""Headphones\"", \""Phone\""]",3135.25,{},27124,0,"""Europe""" +2024-03-25,837,1445,"[\""Monitor\"", \""Headphones\""]",1811.04,{},60339,0,"""Europe""" +2023-04-17,838,3323,"[\""Wireless Mouse\"", \""Laptop\""]",2559.67,"{\""loyalty\"": \""18%\""}",94108,1,"""Asia""" +2024-04-24,839,6907,"[\""Charger\"", \""Tablet\""]",258.48,{},98729,0,"""North America""" +2024-11-11,840,8507,"[\""Tablet\""]",2963.46,"{\""seasonal\"": \""27%\""}",15638,1,"""Africa""" +2024-09-09,841,7544,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4969.08,"{\""seasonal\"": \""7%\""}",71678,1,"""Europe""" +2023-11-30,842,3013,"[\""Phone\""]",3327.07,{},103413,0,"""Europe""" +2023-09-17,843,1969,"[\""Wireless Mouse\"", \""Headphones\""]",3785.35,"{\""promo\"": \""20%\""}",128629,1,"""Europe""" +2023-10-22,844,247,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1722.66,"{\""loyalty\"": \""5%\""}",105801,0,"""South America""" +2023-08-21,845,7215,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",773.82,{},142500,1,"""Europe""" +2024-12-10,846,5877,"[\""Tablet\""]",1390.12,"{\"": \""23%\""}",36672,1,"""Europe""" +2024-11-30,847,2699,"[\""Monitor\"", \""Keyboard\""]",182.43,"{\""promo\"": \""13%\""}",127679,1,"""Africa""" +2023-09-06,848,5105,"[\""Laptop\"", \""Keyboard\""]",4485.2,{},18879,0,"""North America""" +2023-03-25,849,6295,"[\""Monitor\"", \""Wireless Mouse\""]",183.32,"{\""promo\"": \""13%\""}",272698,1,"""South America""" +2023-07-18,850,4975,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2518.21,"{\""loyalty\"": \""11%\""}",221590,0,"""Asia""" +2023-06-25,851,3443,"[\""Laptop\"", \""Charger\""]",3767.97,"{\""seasonal\"": \""26%\""}",45153,1,"""North America""" +2024-08-12,852,3994,"[\""Wireless Mouse\""]",1871.09,"{\"": \""10%\""}",201873,0,"""North America""" +2024-06-09,853,7757,"[\""Phone\""]",4324.74,{},221685,0,"""North America""" +2024-03-05,854,861,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",856.85,"{\""seasonal\"": \""21%\""}",27132,1,"""Europe""" +2023-12-28,855,3772,"[\""Tablet\""]",506.49,"{\""loyalty\"": \""26%\""}",145687,1,"""South America""" +2023-06-22,856,621,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1439.39,"{\"": \""14%\""}",241929,1,"""South America""" +2024-01-29,857,5045,"[\""Wireless Mouse\"", \""Charger\""]",2545.53,"{\""loyalty\"": \""25%\""}",198371,1,"""Asia""" +2023-06-01,858,6767,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2800.8,{},225862,1,"""Europe""" +2023-04-10,859,9621,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1566.8,"{\"": \""26%\""}",80070,1,"""South America""" +2023-01-27,860,2971,"[\""Wireless Mouse\"", \""Laptop\""]",571.12,"{\"": \""21%\""}",19783,0,"""North America""" +2023-05-23,861,3059,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1433.4,"{\""loyalty\"": \""28%\""}",43534,0,"""Africa""" +2024-01-24,862,4650,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2939.73,"{\""promo\"": \""8%\""}",39010,0,"""Africa""" +2023-02-12,863,6775,"[\""Wireless Mouse\""]",1024.0,{},245078,0,"""North America""" +2024-03-05,864,2469,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1352.04,"{\""seasonal\"": \""7%\""}",70969,1,"""Asia""" +2024-10-04,865,1683,"[\""Keyboard\""]",342.46,"{\""promo\"": \""22%\""}",143191,0,"""South America""" +2024-03-15,866,646,"[\""Headphones\"", \""Keyboard\""]",4719.94,"{\""loyalty\"": \""17%\""}",281187,1,"""Africa""" +2024-09-26,867,1669,"[\""Keyboard\""]",1817.05,{},191753,1,"""North America""" +2024-03-05,868,1515,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1089.49,"{\""promo\"": \""7%\""}",205496,0,"""South America""" +2023-05-17,869,5961,"[\""Charger\"", \""Tablet\""]",3043.08,"{\""promo\"": \""30%\""}",57833,0,"""Africa""" +2024-02-23,870,443,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4687.46,"{\"": \""7%\""}",14350,1,"""North America""" +2024-02-01,871,9836,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2187.62,"{\"": \""7%\""}",60335,1,"""South America""" +2024-10-15,872,5592,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2791.57,{},150538,1,"""Africa""" +2023-11-28,873,2273,"[\""Monitor\"", \""Laptop\""]",4199.14,"{\""seasonal\"": \""24%\""}",184573,1,"""North America""" +2023-10-29,874,5309,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3462.19,{},225184,0,"""North America""" +2023-08-07,875,4492,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3620.74,{},175177,0,"""Africa""" +2024-11-28,876,1530,"[\""Headphones\"", \""Wireless Mouse\""]",1794.05,{},22010,0,"""Europe""" +2024-01-28,877,2680,"[\""Wireless Mouse\"", \""Laptop\""]",1871.7,{},134913,1,"""Asia""" +2023-02-25,878,8227,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",830.47,{},103934,0,"""South America""" +2023-06-25,879,146,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1657.81,{},126192,1,"""South America""" +2024-06-13,880,897,"[\""Monitor\""]",904.81,{},255225,1,"""South America""" +2023-08-21,881,3187,"[\""Laptop\""]",1993.55,{},94461,0,"""South America""" +2024-04-02,882,4499,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2446.25,{},177628,1,"""South America""" +2024-06-24,883,6685,"[\""Wireless Mouse\"", \""Charger\""]",1018.2,"{\""loyalty\"": \""27%\""}",263642,1,"""Africa""" +2023-11-21,884,1472,"[\""Wireless Mouse\"", \""Phone\""]",1695.98,"{\""promo\"": \""13%\""}",29235,0,"""North America""" +2024-04-02,885,3543,"[\""Keyboard\"", \""Headphones\""]",2110.96,"{\""seasonal\"": \""15%\""}",196224,0,"""South America""" +2024-12-19,886,3353,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1704.84,"{\""promo\"": \""8%\""}",295294,1,"""North America""" +2024-05-25,887,9322,"[\""Tablet\""]",3794.14,{},266338,1,"""Africa""" +2024-09-09,888,5305,"[\""Headphones\""]",608.14,"{\""promo\"": \""21%\""}",182948,1,"""Europe""" +2023-08-13,889,2751,"[\""Monitor\""]",2061.3,"{\""loyalty\"": \""15%\""}",182624,0,"""Africa""" +2023-12-26,890,8174,"[\""Charger\"", \""Monitor\""]",391.98,{},230500,0,"""North America""" +2023-07-08,891,9519,"[\""Phone\"", \""Wireless Mouse\""]",1023.45,{},40092,1,"""Africa""" +2024-05-15,892,6230,"[\""Tablet\"", \""Monitor\""]",4291.35,"{\"": \""8%\""}",152496,0,"""Europe""" +2023-02-27,893,2506,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1763.66,"{\""seasonal\"": \""13%\""}",4796,1,"""Africa""" +2023-06-22,894,4608,"[\""Charger\""]",1946.36,"{\""promo\"": \""24%\""}",47148,1,"""Europe""" +2024-10-04,895,835,"[\""Tablet\"", \""Headphones\""]",1429.5,"{\"": \""18%\""}",108490,0,"""Europe""" +2024-03-25,896,1445,"[\""Phone\""]",3964.46,"{\""loyalty\"": \""9%\""}",247184,1,"""Asia""" +2024-03-25,897,8797,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2050.65,{},243825,1,"""South America""" +2024-04-26,898,2754,"[\""Headphones\""]",2465.27,"{\""loyalty\"": \""11%\""}",146624,0,"""South America""" +2023-10-09,899,6575,"[\""Tablet\""]",3970.08,{},24156,1,"""North America""" +2024-05-02,900,4933,"[\""Keyboard\""]",1283.34,{},148353,0,"""Europe""" +2023-03-12,901,2242,"[\""Tablet\""]",2837.41,"{\""promo\"": \""26%\""}",201432,1,"""Europe""" +2023-08-02,902,7029,"[\""Laptop\""]",399.43,{},57844,1,"""Asia""" +2023-02-13,903,4270,"[\""Charger\"", \""Laptop\""]",4576.69,"{\"": \""8%\""}",203903,1,"""South America""" +2023-12-05,904,1087,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1859.02,"{\""seasonal\"": \""29%\""}",160963,1,"""Europe""" +2024-10-27,905,6975,"[\""Wireless Mouse\""]",3521.97,{},284418,0,"""South America""" +2024-09-07,906,2903,"[\""Monitor\"", \""Wireless Mouse\""]",2831.38,{},89530,1,"""Africa""" +2024-01-24,907,2955,"[\""Charger\"", \""Wireless Mouse\""]",4703.2,{},125479,0,"""Asia""" +2023-10-22,908,60,"[\""Wireless Mouse\"", \""Tablet\""]",3268.57,"{\""loyalty\"": \""22%\""}",228436,0,"""Europe""" +2023-11-16,909,4645,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2142.8,"{\""seasonal\"": \""25%\""}",11433,0,"""South America""" +2023-05-31,910,9804,"[\""Laptop\"", \""Charger\""]",4302.18,"{\"": \""23%\""}",288746,0,"""South America""" +2024-11-21,911,4554,"[\""Laptop\"", \""Wireless Mouse\""]",2769.93,{},98555,0,"""North America""" +2024-06-30,912,4064,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",270.66,{},166813,0,"""South America""" +2024-04-12,913,8629,"[\""Headphones\""]",1155.0,"{\""promo\"": \""27%\""}",288692,0,"""Asia""" +2024-01-01,914,4322,"[\""Tablet\""]",3194.81,"{\""promo\"": \""25%\""}",126051,1,"""South America""" +2024-08-02,915,9876,"[\""Monitor\""]",690.96,{},182744,0,"""Europe""" +2024-09-15,916,6258,"[\""Laptop\"", \""Phone\""]",1451.6,"{\"": \""13%\""}",294663,1,"""North America""" +2023-08-16,917,1786,"[\""Tablet\"", \""Wireless Mouse\""]",3008.62,{},89146,0,"""South America""" +2024-11-03,918,9406,"[\""Headphones\"", \""Phone\""]",4518.12,{},1626,0,"""Asia""" +2024-04-11,919,8920,"[\""Phone\"", \""Keyboard\""]",568.61,{},124621,1,"""Europe""" +2024-11-16,920,2053,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",900.79,{},236727,0,"""Asia""" +2023-08-13,921,2914,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4722.54,{},210062,1,"""Africa""" +2023-02-15,922,4430,"[\""Keyboard\""]",3330.05,"{\""promo\"": \""18%\""}",140716,1,"""North America""" +2023-02-11,923,2345,"[\""Monitor\"", \""Charger\""]",1555.74,"{\""seasonal\"": \""7%\""}",136309,0,"""Europe""" +2024-03-13,924,1555,"[\""Charger\"", \""Keyboard\""]",3131.67,"{\""loyalty\"": \""20%\""}",215240,0,"""Africa""" +2023-07-29,925,4840,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4190.37,{},42621,1,"""Europe""" +2023-05-17,926,9438,"[\""Keyboard\"", \""Monitor\""]",1329.94,"{\""seasonal\"": \""19%\""}",104813,0,"""Asia""" +2024-02-27,927,6814,"[\""Tablet\""]",2734.6,{},72293,0,"""North America""" +2023-07-02,928,3958,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2672.42,"{\"": \""26%\""}",182713,0,"""Africa""" +2023-05-27,929,9897,"[\""Wireless Mouse\""]",518.49,"{\""promo\"": \""6%\""}",292022,1,"""North America""" +2024-07-16,930,2505,"[\""Charger\"", \""Keyboard\""]",692.59,{},170439,1,"""Africa""" +2023-09-02,931,2271,"[\""Wireless Mouse\""]",4948.69,"{\""promo\"": \""7%\""}",13948,0,"""South America""" +2024-01-15,932,3803,"[\""Phone\""]",2631.33,{},122104,1,"""North America""" +2024-07-11,933,9238,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2744.28,{},281763,0,"""Europe""" +2023-04-26,934,4856,"[\""Headphones\"", \""Wireless Mouse\""]",4563.79,"{\"": \""29%\""}",243156,1,"""Africa""" +2024-03-12,935,3342,"[\""Phone\""]",1424.03,{},229382,1,"""North America""" +2024-04-01,936,3125,"[\""Headphones\""]",588.74,{},202357,0,"""Asia""" +2023-02-16,937,4879,"[\""Keyboard\"", \""Phone\""]",4786.49,{},270156,0,"""North America""" +2024-06-07,938,2774,"[\""Charger\""]",4442.96,{},106356,1,"""Africa""" +2023-09-05,939,3326,"[\""Monitor\""]",2831.3,"{\""promo\"": \""14%\""}",204793,1,"""North America""" +2024-03-15,940,2657,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",752.49,{},274897,0,"""Europe""" +2023-02-02,941,3484,"[\""Keyboard\"", \""Phone\""]",3684.8,{},239146,1,"""Europe""" +2023-11-30,942,4775,"[\""Phone\""]",3021.94,{},217986,0,"""North America""" +2023-06-17,943,223,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4517.54,"{\"": \""26%\""}",87619,1,"""Asia""" +2024-09-11,944,8807,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3402.73,{},144769,1,"""Europe""" +2023-11-04,945,2946,"[\""Phone\"", \""Tablet\""]",487.91,{},41413,0,"""Europe""" +2023-09-19,946,4427,"[\""Wireless Mouse\"", \""Tablet\""]",4296.85,{},78085,0,"""North America""" +2023-11-25,947,8655,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",169.6,"{\""promo\"": \""18%\""}",254635,0,"""North America""" +2023-03-31,948,3762,"[\""Phone\"", \""Monitor\""]",1068.25,{},180885,0,"""South America""" +2023-11-15,949,2529,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4054.58,"{\"": \""21%\""}",67219,1,"""Asia""" +2024-12-07,950,4070,"[\""Headphones\""]",2515.3,"{\""seasonal\"": \""7%\""}",225055,0,"""South America""" +2023-03-20,951,5878,"[\""Charger\"", \""Monitor\""]",3955.53,"{\""promo\"": \""24%\""}",207111,0,"""South America""" +2024-05-24,952,301,"[\""Laptop\""]",2029.3,"{\""seasonal\"": \""23%\""}",255825,1,"""Africa""" +2023-02-25,953,8757,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",510.64,{},139266,0,"""North America""" +2023-12-06,954,7714,"[\""Laptop\"", \""Tablet\""]",3199.74,"{\"": \""9%\""}",46619,0,"""Asia""" +2024-12-15,955,3267,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4183.15,"{\""loyalty\"": \""29%\""}",3803,1,"""Europe""" +2023-09-10,956,436,"[\""Monitor\""]",444.58,{},145060,0,"""Asia""" +2023-02-17,957,4087,"[\""Laptop\""]",483.33,{},39012,1,"""Asia""" +2023-05-11,958,2802,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",577.27,{},112091,1,"""Asia""" +2023-04-30,959,8236,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",215.14,{},210621,0,"""South America""" +2024-07-15,960,8164,"[\""Phone\"", \""Charger\""]",2514.03,"{\""promo\"": \""19%\""}",157568,0,"""North America""" +2023-04-02,961,1748,"[\""Keyboard\"", \""Charger\""]",4590.94,"{\""loyalty\"": \""16%\""}",82124,0,"""North America""" +2023-01-26,962,1936,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3231.65,{},17579,1,"""Africa""" +2023-10-11,963,2329,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3992.79,"{\"": \""28%\""}",124421,0,"""North America""" +2024-09-20,964,681,"[\""Laptop\""]",3874.78,{},102893,0,"""Europe""" +2024-03-14,965,9478,"[\""Wireless Mouse\""]",2591.28,"{\""loyalty\"": \""11%\""}",132246,1,"""Africa""" +2023-12-05,966,5944,"[\""Keyboard\"", \""Headphones\""]",3429.6,{},268999,0,"""Asia""" +2024-01-18,967,1246,"[\""Headphones\""]",2099.81,"{\""seasonal\"": \""29%\""}",161193,1,"""Africa""" +2024-08-08,968,7311,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4720.35,{},40911,0,"""Asia""" +2023-07-17,969,6324,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4051.96,"{\""seasonal\"": \""13%\""}",48588,1,"""North America""" +2024-06-05,970,3997,"[\""Charger\"", \""Tablet\""]",1888.59,"{\"": \""17%\""}",26858,0,"""Asia""" +2023-12-20,971,9032,"[\""Wireless Mouse\"", \""Charger\""]",4509.73,"{\"": \""8%\""}",66842,1,"""Europe""" +2023-01-08,972,2463,"[\""Headphones\""]",482.15,{},284840,1,"""South America""" +2024-06-23,973,6845,"[\""Headphones\""]",3790.07,"{\"": \""12%\""}",235810,1,"""Europe""" +2024-04-28,974,3238,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4989.98,{},261577,0,"""Africa""" +2024-08-28,975,5559,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1212.77,{},222424,1,"""North America""" +2024-12-17,976,3901,"[\""Wireless Mouse\""]",2356.77,"{\""seasonal\"": \""28%\""}",117804,1,"""South America""" +2024-11-27,977,9082,"[\""Charger\"", \""Keyboard\""]",4615.39,"{\""promo\"": \""29%\""}",3761,0,"""Africa""" +2024-05-08,978,7367,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3340.28,{},218840,0,"""Africa""" +2023-07-21,979,3418,"[\""Keyboard\""]",345.78,{},100221,1,"""Africa""" +2024-01-01,980,4348,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2734.92,{},185492,1,"""Europe""" +2023-05-30,981,3436,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1870.88,{},134828,0,"""Asia""" +2024-11-19,982,8988,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",888.68,{},228092,0,"""Asia""" +2024-12-16,983,6874,"[\""Charger\"", \""Monitor\""]",1794.23,"{\""promo\"": \""9%\""}",265517,1,"""North America""" +2024-02-25,984,1267,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",647.98,"{\"": \""13%\""}",114128,0,"""Europe""" +2024-08-17,985,2843,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2198.49,{},162069,0,"""Africa""" +2023-11-02,986,619,"[\""Monitor\"", \""Laptop\""]",3517.44,"{\""loyalty\"": \""25%\""}",6490,1,"""Africa""" +2024-09-23,987,2510,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2726.97,{},151495,0,"""Africa""" +2024-06-09,988,3531,"[\""Headphones\"", \""Laptop\""]",3429.28,"{\""loyalty\"": \""15%\""}",286132,0,"""Europe""" +2023-11-23,989,6684,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4390.55,"{\""loyalty\"": \""8%\""}",1256,0,"""Europe""" +2023-12-30,990,44,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",836.28,"{\""promo\"": \""16%\""}",153219,1,"""South America""" +2023-09-10,991,8655,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4183.63,{},154942,0,"""Europe""" +2023-04-19,992,9008,"[\""Charger\"", \""Keyboard\""]",2578.56,"{\""seasonal\"": \""26%\""}",277833,1,"""Africa""" +2024-10-19,993,7668,"[\""Wireless Mouse\"", \""Phone\""]",3308.05,{},15337,1,"""South America""" +2023-09-02,994,3247,"[\""Phone\"", \""Wireless Mouse\""]",3270.9,{},81715,1,"""Asia""" +2023-12-30,995,6944,"[\""Phone\""]",2797.22,"{\""promo\"": \""22%\""}",288296,0,"""Africa""" +2023-11-05,996,9805,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3905.57,{},277535,1,"""Europe""" +2023-08-28,997,3222,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1731.57,"{\""seasonal\"": \""16%\""}",80394,1,"""North America""" +2024-04-30,998,262,"[\""Headphones\""]",817.13,"{\""loyalty\"": \""21%\""}",293942,0,"""Africa""" +2023-09-29,999,4440,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",338.66,"{\""promo\"": \""8%\""}",11310,0,"""North America""" +2024-04-09,1000,7964,"[\""Keyboard\""]",823.09,{},45857,0,"""North America""" +2024-01-15,1001,1644,"[\""Keyboard\""]",4528.0,"{\""promo\"": \""11%\""}",54566,1,"""Africa""" +2024-11-11,1002,3503,"[\""Tablet\"", \""Keyboard\""]",2516.79,{},70360,0,"""Asia""" +2024-03-05,1003,7836,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2512.58,"{\""loyalty\"": \""7%\""}",156448,1,"""South America""" +2024-05-10,1004,3571,"[\""Monitor\"", \""Laptop\""]",4216.4,"{\""seasonal\"": \""27%\""}",43782,0,"""Africa""" +2024-07-16,1005,5032,"[\""Wireless Mouse\""]",4219.62,{},184297,1,"""Europe""" +2023-05-25,1006,9015,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",890.25,{},32922,0,"""Europe""" +2024-12-06,1007,7955,"[\""Laptop\"", \""Tablet\""]",981.68,{},225716,1,"""South America""" +2023-07-10,1008,9914,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2203.06,"{\""loyalty\"": \""21%\""}",34868,0,"""Africa""" +2024-08-03,1009,2856,"[\""Wireless Mouse\""]",4400.27,{},252041,1,"""Asia""" +2023-07-08,1010,7020,"[\""Charger\"", \""Tablet\""]",2828.52,{},185453,0,"""North America""" +2023-06-21,1011,3263,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3876.51,"{\""loyalty\"": \""18%\""}",119421,0,"""Asia""" +2024-01-16,1012,9611,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",118.91,"{\""loyalty\"": \""5%\""}",145930,0,"""Asia""" +2023-04-09,1013,8051,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3974.6,{},255994,1,"""Europe""" +2023-12-05,1014,6878,"[\""Laptop\""]",636.35,{},115717,1,"""South America""" +2024-01-26,1015,9416,"[\""Tablet\""]",3238.39,{},129254,1,"""Asia""" +2024-03-14,1016,4799,"[\""Wireless Mouse\"", \""Monitor\""]",2290.8,"{\""seasonal\"": \""25%\""}",224381,0,"""Africa""" +2024-11-13,1017,8520,"[\""Keyboard\""]",2788.08,"{\""loyalty\"": \""14%\""}",160389,1,"""South America""" +2023-11-15,1018,6695,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4735.11,"{\""seasonal\"": \""27%\""}",64727,0,"""Asia""" +2024-11-30,1019,2837,"[\""Keyboard\"", \""Headphones\""]",620.59,"{\""loyalty\"": \""27%\""}",112377,1,"""Europe""" +2024-03-09,1020,4319,"[\""Wireless Mouse\""]",4807.01,{},77328,1,"""Asia""" +2023-09-12,1021,7819,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4230.79,{},175701,0,"""North America""" +2024-06-17,1022,5096,"[\""Laptop\""]",3837.3,{},24763,0,"""Africa""" +2024-04-12,1023,8513,"[\""Wireless Mouse\"", \""Laptop\""]",3908.87,{},158574,0,"""South America""" +2024-11-04,1024,9217,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3367.03,"{\""loyalty\"": \""10%\""}",260840,0,"""South America""" +2024-04-18,1025,8486,"[\""Headphones\""]",4840.27,{},266100,1,"""Asia""" +2023-09-17,1026,688,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3809.58,"{\""promo\"": \""30%\""}",113283,1,"""Africa""" +2023-10-04,1027,3912,"[\""Keyboard\""]",4187.13,"{\""seasonal\"": \""11%\""}",109196,0,"""Africa""" +2023-04-01,1028,1878,"[\""Keyboard\""]",3695.04,{},259942,0,"""Africa""" +2024-04-20,1029,2661,"[\""Wireless Mouse\"", \""Phone\""]",4620.96,"{\""seasonal\"": \""6%\""}",252209,0,"""Europe""" +2023-02-18,1030,7727,"[\""Laptop\"", \""Keyboard\""]",2716.23,"{\"": \""6%\""}",205644,0,"""Europe""" +2024-08-26,1031,1050,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4952.33,{},24883,1,"""North America""" +2024-03-29,1032,7814,"[\""Charger\"", \""Monitor\""]",2595.61,{},199388,1,"""North America""" +2024-08-05,1033,5755,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3918.69,"{\""loyalty\"": \""23%\""}",141425,1,"""Africa""" +2023-11-05,1034,2217,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3591.57,"{\""promo\"": \""11%\""}",278728,0,"""South America""" +2024-08-03,1035,9797,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",409.78,{},2857,1,"""North America""" +2023-08-25,1036,6956,"[\""Laptop\"", \""Wireless Mouse\""]",3819.29,{},251066,1,"""Africa""" +2024-10-15,1037,150,"[\""Monitor\"", \""Phone\""]",153.62,"{\""promo\"": \""9%\""}",137323,0,"""North America""" +2024-02-02,1038,8503,"[\""Phone\""]",2203.97,"{\""promo\"": \""15%\""}",277639,0,"""Asia""" +2023-08-19,1039,8349,"[\""Wireless Mouse\"", \""Laptop\""]",2568.59,"{\""seasonal\"": \""25%\""}",93024,1,"""North America""" +2023-11-11,1040,2167,"[\""Monitor\""]",1116.54,{},150433,1,"""Europe""" +2024-12-21,1041,2153,"[\""Charger\""]",4441.54,"{\""promo\"": \""7%\""}",187449,0,"""Europe""" +2024-08-10,1042,8890,"[\""Keyboard\""]",927.63,{},69473,0,"""South America""" +2023-10-14,1043,9293,"[\""Headphones\"", \""Phone\""]",1262.61,{},235700,0,"""Asia""" +2024-11-30,1044,9069,"[\""Headphones\"", \""Monitor\""]",4147.87,"{\""seasonal\"": \""6%\""}",297164,0,"""Asia""" +2023-10-16,1045,5856,"[\""Wireless Mouse\""]",2766.43,{},31900,0,"""North America""" +2024-03-26,1046,5167,"[\""Wireless Mouse\""]",2595.94,{},203332,1,"""North America""" +2024-12-22,1047,8938,"[\""Keyboard\"", \""Headphones\""]",3702.19,"{\"": \""6%\""}",272957,0,"""Asia""" +2023-04-20,1048,9926,"[\""Laptop\"", \""Wireless Mouse\""]",1430.27,{},122447,1,"""South America""" +2023-04-23,1049,520,"[\""Monitor\"", \""Phone\""]",2465.18,"{\""promo\"": \""14%\""}",38154,0,"""North America""" +2024-10-06,1050,9820,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4980.14,{},62519,1,"""Europe""" +2024-12-03,1051,8549,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1992.57,{},92283,0,"""Asia""" +2024-12-29,1052,1008,"[\""Charger\"", \""Headphones\""]",1075.62,{},194388,1,"""Africa""" +2023-08-04,1053,2982,"[\""Phone\"", \""Headphones\""]",2240.9,"{\"": \""12%\""}",83753,0,"""Europe""" +2023-07-09,1054,6895,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4018.94,"{\""promo\"": \""15%\""}",12612,1,"""Africa""" +2024-04-04,1055,2850,"[\""Tablet\""]",4625.99,"{\""seasonal\"": \""9%\""}",299328,1,"""Europe""" +2023-04-26,1056,8163,"[\""Wireless Mouse\""]",2739.16,{},144841,0,"""Africa""" +2024-03-22,1057,9710,"[\""Wireless Mouse\"", \""Keyboard\""]",3678.44,"{\""seasonal\"": \""19%\""}",225483,0,"""Asia""" +2024-01-10,1058,5019,"[\""Headphones\""]",3537.45,"{\""seasonal\"": \""19%\""}",95828,0,"""North America""" +2024-11-05,1059,6733,"[\""Tablet\""]",867.75,{},50837,0,"""Europe""" +2023-04-11,1060,2428,"[\""Laptop\""]",2286.37,{},150584,0,"""Europe""" +2023-11-22,1061,5331,"[\""Monitor\"", \""Tablet\""]",184.38,"{\"": \""8%\""}",179375,0,"""Asia""" +2024-08-01,1062,3991,"[\""Monitor\""]",4857.02,{},168578,0,"""Asia""" +2023-08-09,1063,4979,"[\""Wireless Mouse\"", \""Laptop\""]",3452.25,"{\""seasonal\"": \""9%\""}",100247,1,"""Africa""" +2024-09-26,1064,6503,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1483.73,"{\""loyalty\"": \""28%\""}",98620,1,"""Asia""" +2023-12-14,1065,1865,"[\""Wireless Mouse\"", \""Tablet\""]",4143.71,{},176124,0,"""North America""" +2023-12-21,1066,2284,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",159.96,{},161897,1,"""South America""" +2023-06-09,1067,2436,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1023.62,"{\""promo\"": \""23%\""}",9435,0,"""North America""" +2024-01-16,1068,341,"[\""Keyboard\"", \""Charger\""]",602.56,{},264712,0,"""North America""" +2024-02-15,1069,3045,"[\""Headphones\"", \""Charger\""]",3569.76,"{\""promo\"": \""30%\""}",249179,0,"""Europe""" +2024-03-14,1070,8045,"[\""Wireless Mouse\"", \""Keyboard\""]",909.46,{},30722,0,"""Europe""" +2024-01-23,1071,1186,"[\""Headphones\""]",849.98,"{\""seasonal\"": \""6%\""}",258454,0,"""Africa""" +2024-11-16,1072,9257,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2293.66,{},157366,0,"""Asia""" +2024-07-05,1073,9053,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3888.22,"{\""promo\"": \""24%\""}",101286,1,"""North America""" +2024-04-04,1074,8542,"[\""Tablet\"", \""Laptop\""]",1560.43,{},191518,0,"""Europe""" +2023-11-09,1075,4964,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1882.34,"{\""loyalty\"": \""27%\""}",148880,1,"""North America""" +2023-10-07,1076,2774,"[\""Wireless Mouse\""]",4332.78,"{\"": \""6%\""}",170563,0,"""Europe""" +2024-11-05,1077,6850,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3832.68,"{\""seasonal\"": \""16%\""}",46914,0,"""Europe""" +2023-02-22,1078,2691,"[\""Phone\"", \""Monitor\""]",162.39,"{\""loyalty\"": \""18%\""}",219576,0,"""Asia""" +2024-09-11,1079,3313,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",267.12,{},272695,0,"""South America""" +2023-04-24,1080,9761,"[\""Keyboard\"", \""Wireless Mouse\""]",4237.64,{},277318,1,"""Asia""" +2023-03-05,1081,4952,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",299.27,"{\""seasonal\"": \""9%\""}",298397,0,"""Europe""" +2023-04-19,1082,2495,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2290.32,{},173714,0,"""Asia""" +2023-10-01,1083,5192,"[\""Headphones\"", \""Charger\""]",3493.8,{},9882,0,"""Africa""" +2023-03-22,1084,8158,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4430.83,"{\""loyalty\"": \""27%\""}",245523,1,"""North America""" +2023-12-11,1085,5039,"[\""Keyboard\""]",166.37,"{\"": \""22%\""}",37581,0,"""Africa""" +2024-01-02,1086,6183,"[\""Phone\"", \""Laptop\""]",4391.34,{},108123,1,"""North America""" +2024-12-03,1087,123,"[\""Monitor\"", \""Wireless Mouse\""]",1155.82,"{\"": \""13%\""}",82116,0,"""South America""" +2024-12-12,1088,6680,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1996.49,{},110346,0,"""Africa""" +2023-03-11,1089,7352,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3998.58,{},135004,1,"""Europe""" +2024-01-04,1090,5460,"[\""Phone\"", \""Headphones\""]",4910.65,"{\""seasonal\"": \""30%\""}",185064,0,"""North America""" +2023-05-15,1091,9011,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4121.17,{},271509,1,"""North America""" +2023-12-31,1092,5149,"[\""Wireless Mouse\"", \""Phone\""]",3312.93,{},111340,0,"""Africa""" +2023-06-02,1093,6885,"[\""Charger\"", \""Keyboard\""]",2447.01,{},228130,0,"""Asia""" +2024-08-28,1094,5652,"[\""Headphones\""]",4120.59,{},44968,1,"""Asia""" +2023-01-19,1095,8397,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3905.5,"{\""promo\"": \""24%\""}",147365,0,"""South America""" +2023-07-02,1096,5961,"[\""Laptop\"", \""Charger\""]",4604.49,{},127105,0,"""Africa""" +2023-12-01,1097,8227,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2394.6,{},231168,1,"""Europe""" +2023-08-07,1098,7891,"[\""Tablet\""]",2700.12,"{\"": \""7%\""}",211607,0,"""North America""" +2023-01-02,1099,5766,"[\""Headphones\""]",3120.67,{},234392,1,"""Europe""" +2024-03-30,1100,7018,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",901.38,{},48647,0,"""Europe""" +2024-12-18,1101,1335,"[\""Charger\""]",1277.78,{},146806,0,"""Africa""" +2024-10-19,1102,7660,"[\""Headphones\"", \""Charger\""]",406.18,{},205483,0,"""Europe""" +2023-09-25,1103,1851,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2942.13,"{\"": \""8%\""}",203797,1,"""Africa""" +2023-09-28,1104,4645,"[\""Headphones\"", \""Phone\""]",3467.26,{},101711,1,"""Europe""" +2024-04-08,1105,3206,"[\""Phone\""]",1043.29,{},19588,0,"""Africa""" +2023-03-02,1106,9868,"[\""Keyboard\""]",1444.51,{},17273,1,"""South America""" +2023-06-21,1107,5519,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3542.89,{},167777,1,"""Asia""" +2023-11-17,1108,8607,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1451.1,"{\""loyalty\"": \""27%\""}",124469,1,"""North America""" +2023-01-10,1109,2813,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1000.06,"{\""loyalty\"": \""22%\""}",46685,0,"""Asia""" +2023-03-07,1110,7822,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4672.64,{},1072,1,"""North America""" +2023-08-25,1111,4292,"[\""Monitor\""]",1876.67,{},267596,1,"""North America""" +2023-06-25,1112,6104,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2132.73,"{\""loyalty\"": \""9%\""}",247244,0,"""Europe""" +2024-06-11,1113,5108,"[\""Keyboard\""]",4368.39,"{\""promo\"": \""28%\""}",22966,1,"""South America""" +2023-03-24,1114,8792,"[\""Tablet\""]",732.17,"{\""seasonal\"": \""11%\""}",74352,0,"""Europe""" +2023-05-25,1115,6472,"[\""Keyboard\"", \""Tablet\""]",4102.92,"{\""promo\"": \""20%\""}",97647,1,"""North America""" +2023-10-11,1116,5305,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",367.73,"{\"": \""10%\""}",196180,0,"""North America""" +2023-02-20,1117,2348,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3130.92,{},90896,1,"""Asia""" +2024-12-07,1118,5658,"[\""Wireless Mouse\"", \""Tablet\""]",3576.37,"{\""seasonal\"": \""19%\""}",176545,0,"""Europe""" +2024-10-09,1119,7224,"[\""Tablet\""]",1123.99,{},229426,1,"""South America""" +2024-11-04,1120,7390,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",845.38,{},234286,0,"""South America""" +2023-01-30,1121,8879,"[\""Monitor\"", \""Laptop\""]",2177.63,{},59071,1,"""Asia""" +2023-12-17,1122,5482,"[\""Phone\"", \""Tablet\""]",2968.71,{},30564,0,"""North America""" +2023-02-05,1123,2432,"[\""Wireless Mouse\""]",2739.18,"{\""promo\"": \""8%\""}",119560,1,"""North America""" +2023-06-05,1124,2521,"[\""Keyboard\"", \""Monitor\""]",2712.27,{},217500,1,"""Asia""" +2023-06-08,1125,9526,"[\""Tablet\"", \""Keyboard\""]",4474.22,"{\""loyalty\"": \""19%\""}",213198,1,"""South America""" +2024-07-14,1126,21,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3497.26,{},280695,1,"""Africa""" +2024-07-26,1127,3623,"[\""Laptop\""]",4011.54,{},275084,0,"""Asia""" +2024-03-02,1128,4504,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3787.48,"{\"": \""8%\""}",135975,1,"""Africa""" +2023-11-17,1129,2942,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1162.48,"{\""seasonal\"": \""28%\""}",206277,0,"""Africa""" +2023-05-28,1130,3895,"[\""Phone\""]",919.09,{},16140,0,"""South America""" +2024-03-10,1131,7650,"[\""Charger\"", \""Laptop\""]",1604.1,{},186507,0,"""South America""" +2023-07-18,1132,4005,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2012.19,{},111743,1,"""Africa""" +2023-09-09,1133,8720,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4734.97,{},140688,0,"""South America""" +2023-09-30,1134,6354,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2663.2,{},236652,1,"""Africa""" +2023-06-03,1135,1409,"[\""Tablet\"", \""Wireless Mouse\""]",445.35,"{\"": \""23%\""}",2705,0,"""Europe""" +2023-02-26,1136,9751,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1564.03,{},238686,0,"""South America""" +2024-09-03,1137,1748,"[\""Monitor\"", \""Wireless Mouse\""]",2558.32,"{\""loyalty\"": \""20%\""}",128850,0,"""North America""" +2023-06-30,1138,2822,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4930.57,"{\""seasonal\"": \""5%\""}",196624,1,"""South America""" +2023-08-01,1139,454,"[\""Phone\""]",3456.13,"{\""loyalty\"": \""5%\""}",264918,1,"""North America""" +2024-09-17,1140,4726,"[\""Headphones\""]",4158.6,{},276961,1,"""Asia""" +2024-09-07,1141,5415,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",777.55,"{\""loyalty\"": \""22%\""}",265701,1,"""South America""" +2024-05-14,1142,6501,"[\""Headphones\""]",2610.5,{},92390,0,"""South America""" +2024-01-01,1143,3882,"[\""Tablet\""]",1721.45,"{\"": \""5%\""}",132844,0,"""North America""" +2023-01-29,1144,8699,"[\""Charger\"", \""Keyboard\""]",3904.41,{},106093,1,"""North America""" +2023-12-21,1145,5554,"[\""Keyboard\"", \""Tablet\""]",1772.99,"{\""seasonal\"": \""19%\""}",241046,0,"""Africa""" +2023-01-18,1146,4606,"[\""Monitor\""]",4752.81,{},241436,0,"""Asia""" +2024-10-19,1147,8602,"[\""Tablet\""]",1009.09,{},71577,1,"""North America""" +2024-11-08,1148,3456,"[\""Wireless Mouse\"", \""Tablet\""]",4488.13,"{\""promo\"": \""12%\""}",240757,1,"""Europe""" +2023-12-22,1149,8528,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",274.45,{},192105,0,"""South America""" +2024-09-24,1150,2654,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2999.65,{},103723,0,"""Europe""" +2023-11-30,1151,6192,"[\""Headphones\"", \""Charger\""]",2516.37,{},217056,0,"""Europe""" +2024-12-09,1152,264,"[\""Phone\"", \""Laptop\""]",3458.55,"{\""loyalty\"": \""12%\""}",14488,1,"""Europe""" +2024-01-28,1153,1578,"[\""Phone\""]",2061.77,"{\""loyalty\"": \""26%\""}",239051,0,"""Europe""" +2023-09-17,1154,3094,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2615.92,{},207458,0,"""Africa""" +2024-07-23,1155,8619,"[\""Headphones\""]",111.15,{},230537,1,"""South America""" +2023-03-30,1156,3305,"[\""Charger\"", \""Monitor\""]",4111.03,{},188504,1,"""North America""" +2024-07-13,1157,5232,"[\""Headphones\"", \""Laptop\""]",3216.86,"{\""seasonal\"": \""28%\""}",181978,0,"""South America""" +2024-03-10,1158,4146,"[\""Keyboard\""]",4270.38,{},213373,1,"""Asia""" +2023-02-08,1159,3363,"[\""Headphones\""]",3395.67,"{\""loyalty\"": \""26%\""}",154177,1,"""Africa""" +2023-03-20,1160,9109,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1153.94,{},275593,1,"""Asia""" +2023-12-30,1161,5365,"[\""Monitor\"", \""Charger\""]",3274.6,"{\"": \""7%\""}",63096,0,"""Asia""" +2024-05-04,1162,1556,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2543.04,{},126130,1,"""Europe""" +2024-01-31,1163,2113,"[\""Tablet\""]",2385.45,{},135182,1,"""Europe""" +2023-07-15,1164,8858,"[\""Monitor\""]",411.59,"{\"": \""14%\""}",164998,0,"""Europe""" +2024-02-16,1165,1759,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3183.28,{},150945,0,"""Africa""" +2024-11-26,1166,4245,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4582.55,{},292973,1,"""Asia""" +2023-02-23,1167,7444,"[\""Monitor\""]",1737.86,"{\""loyalty\"": \""27%\""}",109398,0,"""Asia""" +2024-02-07,1168,339,"[\""Monitor\"", \""Headphones\""]",4621.19,"{\""promo\"": \""9%\""}",101094,1,"""Europe""" +2023-06-06,1169,8,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1458.23,{},298754,0,"""Asia""" +2024-11-27,1170,155,"[\""Laptop\"", \""Charger\""]",2766.53,{},268671,1,"""Europe""" +2024-03-11,1171,8509,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2720.99,"{\"": \""12%\""}",257599,0,"""Asia""" +2024-09-18,1172,6687,"[\""Keyboard\""]",1669.95,"{\"": \""30%\""}",246610,0,"""North America""" +2023-12-06,1173,9217,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1075.36,"{\"": \""11%\""}",38795,1,"""North America""" +2024-07-19,1174,5110,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1806.73,"{\""seasonal\"": \""26%\""}",259554,0,"""South America""" +2023-04-29,1175,8687,"[\""Monitor\"", \""Keyboard\""]",4669.71,"{\""promo\"": \""26%\""}",170053,1,"""Europe""" +2024-09-20,1176,5626,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3193.48,"{\""seasonal\"": \""7%\""}",143988,0,"""Africa""" +2024-05-27,1177,8048,"[\""Headphones\"", \""Tablet\""]",3635.99,{},156438,1,"""Africa""" +2023-02-07,1178,7768,"[\""Phone\"", \""Headphones\""]",1207.08,"{\""seasonal\"": \""7%\""}",21231,0,"""Europe""" +2024-10-14,1179,7363,"[\""Headphones\""]",4828.3,"{\"": \""22%\""}",276244,0,"""Europe""" +2023-06-10,1180,3507,"[\""Monitor\"", \""Phone\""]",1346.35,{},294555,0,"""Europe""" +2024-03-09,1181,7060,"[\""Tablet\""]",2709.94,{},67509,1,"""South America""" +2023-11-12,1182,9754,"[\""Wireless Mouse\"", \""Tablet\""]",3123.68,"{\""loyalty\"": \""19%\""}",50688,0,"""South America""" +2023-04-09,1183,6250,"[\""Keyboard\""]",285.22,"{\""promo\"": \""6%\""}",44601,1,"""Europe""" +2024-07-29,1184,564,"[\""Phone\"", \""Monitor\""]",273.44,{},110017,1,"""Africa""" +2023-02-21,1185,4333,"[\""Keyboard\""]",746.73,"{\""loyalty\"": \""22%\""}",213464,1,"""Europe""" +2023-07-06,1186,6952,"[\""Keyboard\"", \""Headphones\""]",2168.31,"{\""loyalty\"": \""30%\""}",32149,0,"""South America""" +2023-04-01,1187,2595,"[\""Monitor\""]",4761.4,"{\""loyalty\"": \""15%\""}",21327,1,"""Asia""" +2024-08-02,1188,8191,"[\""Headphones\""]",3052.64,"{\""promo\"": \""22%\""}",221205,0,"""Asia""" +2024-02-15,1189,8303,"[\""Tablet\"", \""Charger\""]",4399.1,{},111307,0,"""Africa""" +2024-12-11,1190,7314,"[\""Charger\"", \""Tablet\""]",2067.94,{},20818,0,"""Europe""" +2023-02-07,1191,2487,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4028.89,"{\""promo\"": \""10%\""}",108103,0,"""Africa""" +2023-05-25,1192,3657,"[\""Tablet\"", \""Wireless Mouse\""]",1292.68,{},255298,1,"""South America""" +2024-12-26,1193,9956,"[\""Tablet\""]",978.04,{},165621,1,"""North America""" +2024-01-08,1194,7193,"[\""Tablet\""]",1673.48,"{\"": \""28%\""}",106426,0,"""Africa""" +2023-10-08,1195,2325,"[\""Headphones\""]",839.07,{},20830,1,"""Europe""" +2024-06-03,1196,634,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3980.42,"{\""loyalty\"": \""6%\""}",56272,1,"""Europe""" +2024-05-04,1197,5274,"[\""Laptop\"", \""Charger\""]",3813.89,"{\""promo\"": \""29%\""}",33208,1,"""Asia""" +2023-11-20,1198,1182,"[\""Charger\"", \""Tablet\""]",4988.95,"{\""promo\"": \""8%\""}",113566,1,"""Africa""" +2023-04-22,1199,8873,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3420.21,{},10390,0,"""South America""" +2023-04-09,1200,2077,"[\""Wireless Mouse\""]",1753.18,{},102468,1,"""South America""" +2024-06-15,1201,7343,"[\""Monitor\"", \""Wireless Mouse\""]",4849.33,"{\""loyalty\"": \""26%\""}",68938,1,"""Africa""" +2023-11-02,1202,4032,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",167.37,{},17313,0,"""Africa""" +2024-02-16,1203,2592,"[\""Phone\""]",1742.24,"{\"": \""25%\""}",65898,0,"""Europe""" +2023-01-21,1204,3347,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4997.15,"{\"": \""27%\""}",169572,1,"""Europe""" +2024-03-11,1205,1785,"[\""Wireless Mouse\"", \""Tablet\""]",401.92,"{\""seasonal\"": \""26%\""}",225116,1,"""North America""" +2024-05-23,1206,6935,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2477.89,"{\"": \""7%\""}",213699,0,"""South America""" +2023-01-07,1207,7075,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3904.82,{},62823,1,"""Europe""" +2024-06-21,1208,3537,"[\""Monitor\"", \""Keyboard\""]",3011.15,"{\""loyalty\"": \""6%\""}",146385,0,"""Asia""" +2023-09-17,1209,5536,"[\""Wireless Mouse\"", \""Phone\""]",4747.56,{},260601,1,"""North America""" +2024-05-01,1210,8427,"[\""Charger\""]",3876.78,{},266714,0,"""North America""" +2023-03-15,1211,8693,"[\""Charger\""]",1388.42,{},238963,0,"""Africa""" +2024-11-23,1212,3605,"[\""Headphones\"", \""Keyboard\""]",3252.46,"{\""promo\"": \""19%\""}",16576,1,"""Asia""" +2024-02-21,1213,3613,"[\""Charger\""]",1501.94,{},35181,0,"""Africa""" +2023-03-22,1214,1209,"[\""Tablet\"", \""Wireless Mouse\""]",3747.06,"{\""seasonal\"": \""26%\""}",70216,1,"""Africa""" +2024-06-22,1215,2087,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2983.11,"{\""seasonal\"": \""20%\""}",30756,1,"""South America""" +2023-06-20,1216,4412,"[\""Phone\"", \""Monitor\""]",3020.28,{},141185,0,"""South America""" +2024-05-16,1217,6911,"[\""Headphones\""]",2345.04,"{\""promo\"": \""8%\""}",12176,1,"""North America""" +2023-10-09,1218,5007,"[\""Monitor\""]",1784.06,"{\""seasonal\"": \""10%\""}",25973,0,"""North America""" +2024-08-25,1219,5428,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1012.33,{},102197,0,"""South America""" +2023-07-09,1220,9873,"[\""Charger\"", \""Laptop\""]",1149.67,{},171414,1,"""Asia""" +2023-01-02,1221,143,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4323.56,{},165814,0,"""Europe""" +2024-06-14,1222,16,"[\""Charger\""]",1724.66,{},215925,0,"""South America""" +2024-07-18,1223,8008,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4344.97,"{\""loyalty\"": \""15%\""}",115892,0,"""Asia""" +2023-06-13,1224,1303,"[\""Wireless Mouse\"", \""Phone\""]",4471.53,{},42896,0,"""Asia""" +2024-01-22,1225,3993,"[\""Tablet\""]",1999.29,"{\""seasonal\"": \""13%\""}",228355,1,"""Africa""" +2024-04-14,1226,9006,"[\""Keyboard\""]",3942.7,"{\""loyalty\"": \""8%\""}",195313,0,"""South America""" +2024-12-11,1227,8437,"[\""Laptop\""]",4315.88,{},52062,0,"""Africa""" +2024-10-25,1228,6125,"[\""Phone\"", \""Laptop\""]",2186.16,"{\""promo\"": \""12%\""}",76414,1,"""North America""" +2023-01-16,1229,4994,"[\""Tablet\"", \""Phone\""]",4081.32,{},29900,0,"""Europe""" +2023-10-22,1230,9995,"[\""Charger\"", \""Laptop\""]",1670.36,"{\""loyalty\"": \""16%\""}",143715,1,"""South America""" +2024-03-16,1231,1859,"[\""Wireless Mouse\"", \""Monitor\""]",4744.93,{},256919,0,"""Africa""" +2024-05-28,1232,2637,"[\""Headphones\"", \""Keyboard\""]",63.64,{},8512,1,"""Europe""" +2024-12-10,1233,2377,"[\""Laptop\"", \""Charger\""]",4012.81,{},250030,1,"""North America""" +2023-07-01,1234,7730,"[\""Wireless Mouse\""]",3734.73,"{\"": \""28%\""}",92274,1,"""North America""" +2024-10-01,1235,6394,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3544.47,"{\""loyalty\"": \""12%\""}",238320,0,"""South America""" +2024-09-03,1236,8860,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",433.4,"{\""seasonal\"": \""6%\""}",231883,0,"""South America""" +2023-01-03,1237,7496,"[\""Headphones\"", \""Phone\""]",2632.4,"{\""seasonal\"": \""5%\""}",286301,1,"""Asia""" +2024-07-12,1238,1955,"[\""Keyboard\""]",1142.66,"{\""promo\"": \""28%\""}",161375,1,"""Africa""" +2024-07-29,1239,4208,"[\""Wireless Mouse\""]",3863.09,{},199249,0,"""North America""" +2023-04-24,1240,9851,"[\""Phone\""]",3170.14,"{\"": \""29%\""}",125342,0,"""Africa""" +2024-07-16,1241,1941,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4634.96,"{\"": \""25%\""}",292047,0,"""Europe""" +2024-03-01,1242,7421,"[\""Monitor\""]",241.84,{},59640,0,"""South America""" +2023-09-16,1243,1424,"[\""Laptop\""]",179.83,"{\""promo\"": \""14%\""}",143635,1,"""Asia""" +2024-01-15,1244,8809,"[\""Monitor\"", \""Tablet\""]",1703.59,{},18974,1,"""South America""" +2024-04-25,1245,9235,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4839.04,"{\""seasonal\"": \""29%\""}",193533,1,"""Asia""" +2024-01-01,1246,6759,"[\""Monitor\"", \""Wireless Mouse\""]",2705.65,{},41397,0,"""Africa""" +2024-07-05,1247,3512,"[\""Wireless Mouse\""]",1095.29,"{\""loyalty\"": \""7%\""}",209086,1,"""Europe""" +2023-02-15,1248,6553,"[\""Laptop\"", \""Monitor\""]",4528.97,{},28505,1,"""Africa""" +2023-08-26,1249,5481,"[\""Laptop\""]",330.43,{},220681,1,"""North America""" +2023-12-24,1250,4540,"[\""Wireless Mouse\""]",4100.04,"{\""loyalty\"": \""16%\""}",56454,0,"""Africa""" +2023-01-21,1251,3292,"[\""Keyboard\""]",1591.45,{},210582,0,"""Asia""" +2023-06-14,1252,2815,"[\""Monitor\""]",1311.36,{},242574,0,"""Asia""" +2024-09-04,1253,6926,"[\""Tablet\"", \""Charger\""]",534.17,"{\""seasonal\"": \""23%\""}",79805,0,"""Africa""" +2024-06-27,1254,9038,"[\""Laptop\"", \""Charger\""]",3015.79,{},70353,0,"""Asia""" +2023-04-28,1255,182,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1507.72,{},23186,1,"""Asia""" +2024-10-14,1256,1449,"[\""Phone\""]",3565.61,"{\""seasonal\"": \""23%\""}",5850,0,"""Europe""" +2023-12-30,1257,2421,"[\""Laptop\"", \""Headphones\""]",256.98,{},90099,1,"""Asia""" +2023-01-23,1258,7681,"[\""Tablet\"", \""Laptop\""]",4831.89,"{\""seasonal\"": \""22%\""}",74285,1,"""North America""" +2023-06-22,1259,2635,"[\""Tablet\"", \""Charger\""]",3742.16,"{\""seasonal\"": \""13%\""}",123744,0,"""Asia""" +2023-05-24,1260,2214,"[\""Laptop\"", \""Keyboard\""]",4136.43,{},297786,0,"""South America""" +2023-11-23,1261,5128,"[\""Monitor\"", \""Keyboard\""]",4424.52,"{\""loyalty\"": \""12%\""}",40961,0,"""South America""" +2024-06-26,1262,3175,"[\""Tablet\""]",332.97,{},15800,1,"""South America""" +2024-02-03,1263,6974,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1951.88,"{\""loyalty\"": \""17%\""}",181666,1,"""Europe""" +2023-07-30,1264,2444,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",218.79,{},101663,1,"""Asia""" +2023-09-26,1265,6415,"[\""Monitor\"", \""Charger\""]",470.61,"{\""loyalty\"": \""18%\""}",222200,0,"""Africa""" +2024-03-27,1266,8305,"[\""Phone\""]",1235.96,{},109934,1,"""South America""" +2024-01-13,1267,9433,"[\""Headphones\""]",4735.67,{},253465,0,"""North America""" +2024-03-18,1268,9424,"[\""Wireless Mouse\"", \""Phone\""]",4119.1,{},113147,0,"""South America""" +2024-04-28,1269,2088,"[\""Laptop\""]",3896.44,"{\"": \""13%\""}",10854,1,"""South America""" +2024-06-16,1270,4810,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4830.94,{},79882,0,"""North America""" +2023-12-14,1271,1196,"[\""Laptop\""]",4419.95,{},231955,1,"""South America""" +2023-04-25,1272,2491,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1734.28,{},213642,0,"""Africa""" +2023-11-02,1273,7448,"[\""Laptop\""]",4604.12,{},40467,1,"""Europe""" +2024-12-27,1274,2570,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1070.32,"{\"": \""30%\""}",296128,0,"""Europe""" +2024-06-11,1275,2493,"[\""Monitor\"", \""Headphones\""]",4122.08,"{\"": \""13%\""}",47130,0,"""Asia""" +2023-06-26,1276,9241,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1250.29,"{\""loyalty\"": \""7%\""}",90381,1,"""Europe""" +2023-02-18,1277,1039,"[\""Keyboard\"", \""Phone\""]",3763.44,{},201152,1,"""Asia""" +2024-09-13,1278,2156,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1386.58,"{\""loyalty\"": \""26%\""}",88599,0,"""Europe""" +2024-05-30,1279,6653,"[\""Phone\""]",333.02,"{\""loyalty\"": \""21%\""}",6107,1,"""Europe""" +2024-08-13,1280,4170,"[\""Headphones\"", \""Charger\""]",4778.31,"{\""promo\"": \""28%\""}",227570,1,"""Europe""" +2023-01-14,1281,612,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",288.91,"{\"": \""14%\""}",66535,1,"""South America""" +2023-04-06,1282,1830,"[\""Phone\""]",3742.22,"{\""seasonal\"": \""19%\""}",55718,0,"""Africa""" +2023-01-10,1283,588,"[\""Headphones\"", \""Keyboard\""]",3620.17,{},126204,0,"""Europe""" +2024-02-14,1284,1856,"[\""Tablet\"", \""Laptop\""]",1795.38,{},169908,0,"""Asia""" +2024-01-08,1285,9027,"[\""Headphones\""]",4413.77,{},92641,1,"""Europe""" +2023-04-30,1286,2288,"[\""Monitor\""]",2451.79,{},281985,0,"""Africa""" +2023-03-15,1287,558,"[\""Monitor\"", \""Tablet\""]",1473.63,{},47034,1,"""South America""" +2023-07-01,1288,4289,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",612.31,"{\""loyalty\"": \""10%\""}",132875,1,"""Asia""" +2023-11-13,1289,973,"[\""Wireless Mouse\""]",2928.54,{},172692,0,"""Africa""" +2024-12-24,1290,2588,"[\""Laptop\"", \""Wireless Mouse\""]",704.13,{},33458,0,"""Asia""" +2024-01-07,1291,651,"[\""Tablet\""]",1784.71,{},195729,1,"""Africa""" +2023-10-30,1292,8257,"[\""Laptop\"", \""Keyboard\""]",3856.59,{},189413,0,"""North America""" +2023-01-10,1293,7864,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3029.45,{},245527,0,"""Europe""" +2023-09-19,1294,8930,"[\""Keyboard\"", \""Charger\""]",3774.59,"{\""loyalty\"": \""24%\""}",142928,0,"""Asia""" +2024-11-12,1295,1609,"[\""Headphones\""]",2239.03,"{\""seasonal\"": \""19%\""}",147802,1,"""South America""" +2024-08-23,1296,1750,"[\""Laptop\""]",3197.19,{},184304,0,"""North America""" +2023-03-03,1297,6940,"[\""Wireless Mouse\"", \""Tablet\""]",1509.8,{},208184,0,"""Asia""" +2024-11-13,1298,6845,"[\""Headphones\"", \""Monitor\""]",4695.94,{},143456,1,"""North America""" +2024-12-30,1299,845,"[\""Phone\"", \""Headphones\""]",353.5,"{\""loyalty\"": \""28%\""}",33955,0,"""North America""" +2024-09-05,1300,2306,"[\""Headphones\""]",3067.9,{},196236,1,"""Asia""" +2023-12-29,1301,9791,"[\""Phone\"", \""Wireless Mouse\""]",3645.77,{},3553,1,"""Europe""" +2023-09-23,1302,2222,"[\""Monitor\""]",3402.53,"{\"": \""29%\""}",196555,0,"""South America""" +2023-12-27,1303,6705,"[\""Headphones\"", \""Charger\""]",1832.0,"{\""loyalty\"": \""11%\""}",178418,1,"""Asia""" +2024-06-09,1304,9381,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4517.19,"{\"": \""9%\""}",242491,1,"""Asia""" +2023-06-07,1305,85,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",380.3,{},45522,1,"""Asia""" +2024-04-27,1306,936,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1735.67,"{\""promo\"": \""6%\""}",61736,1,"""Asia""" +2023-10-31,1307,5711,"[\""Headphones\"", \""Charger\""]",652.12,{},53677,1,"""Asia""" +2024-03-26,1308,5047,"[\""Phone\""]",1990.59,"{\""loyalty\"": \""30%\""}",210150,0,"""Asia""" +2024-09-05,1309,9918,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4209.74,{},241373,0,"""South America""" +2023-03-08,1310,3466,"[\""Laptop\"", \""Phone\""]",1860.59,"{\""seasonal\"": \""12%\""}",57222,1,"""Europe""" +2023-02-10,1311,9472,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3114.43,"{\""seasonal\"": \""8%\""}",23892,0,"""Asia""" +2023-07-24,1312,8720,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",141.83,"{\""loyalty\"": \""12%\""}",223020,0,"""North America""" +2023-02-18,1313,8751,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3090.56,{},209928,1,"""Africa""" +2023-03-30,1314,7572,"[\""Headphones\""]",1680.81,{},282855,1,"""Africa""" +2024-12-11,1315,864,"[\""Phone\""]",2974.02,{},172057,0,"""North America""" +2024-05-06,1316,6047,"[\""Tablet\"", \""Headphones\""]",2157.37,"{\""loyalty\"": \""22%\""}",91540,1,"""North America""" +2024-07-30,1317,5613,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",573.97,{},125805,1,"""North America""" +2023-12-18,1318,6441,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4867.68,"{\"": \""29%\""}",20232,0,"""Europe""" +2023-06-01,1319,1032,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4088.82,"{\""promo\"": \""10%\""}",130765,1,"""Europe""" +2023-04-07,1320,9877,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4607.22,{},203699,1,"""North America""" +2024-01-02,1321,7553,"[\""Tablet\"", \""Laptop\""]",3203.34,"{\""promo\"": \""18%\""}",227528,0,"""Africa""" +2023-03-15,1322,8342,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3848.2,"{\""seasonal\"": \""14%\""}",276162,0,"""Asia""" +2024-10-19,1323,9617,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2867.53,{},76497,0,"""Africa""" +2023-06-27,1324,4157,"[\""Tablet\"", \""Keyboard\""]",384.61,{},164643,1,"""Africa""" +2023-11-28,1325,1301,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2725.07,"{\""promo\"": \""22%\""}",292214,0,"""North America""" +2024-06-17,1326,307,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3727.19,"{\""promo\"": \""10%\""}",208503,0,"""North America""" +2023-12-31,1327,9064,"[\""Monitor\"", \""Keyboard\""]",4268.59,{},182695,0,"""North America""" +2023-04-03,1328,7893,"[\""Headphones\""]",4838.72,"{\""loyalty\"": \""11%\""}",140344,0,"""South America""" +2024-03-30,1329,401,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",416.19,{},96147,1,"""Africa""" +2023-01-23,1330,895,"[\""Charger\""]",4495.32,{},271232,1,"""Asia""" +2023-09-11,1331,9323,"[\""Phone\""]",878.8,"{\""loyalty\"": \""17%\""}",110935,0,"""Europe""" +2023-11-12,1332,7024,"[\""Laptop\"", \""Monitor\""]",4190.98,{},253916,1,"""South America""" +2024-06-29,1333,8896,"[\""Monitor\""]",192.22,{},171713,0,"""Europe""" +2024-03-28,1334,4404,"[\""Charger\"", \""Wireless Mouse\""]",941.23,"{\""seasonal\"": \""18%\""}",207855,1,"""Asia""" +2024-07-26,1335,7189,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4043.07,"{\""loyalty\"": \""26%\""}",138617,0,"""Europe""" +2023-05-01,1336,1606,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",136.67,"{\""loyalty\"": \""27%\""}",100762,0,"""Europe""" +2023-01-09,1337,1561,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2932.78,"{\"": \""24%\""}",172433,0,"""Europe""" +2023-05-19,1338,7359,"[\""Charger\"", \""Monitor\""]",3396.02,{},264657,0,"""North America""" +2024-10-01,1339,7678,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4145.23,{},170140,1,"""North America""" +2024-07-14,1340,542,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2592.29,{},41125,0,"""South America""" +2023-06-18,1341,869,"[\""Keyboard\"", \""Phone\""]",523.58,"{\""loyalty\"": \""14%\""}",184531,0,"""Africa""" +2023-05-28,1342,2303,"[\""Laptop\""]",2831.72,{},88059,1,"""Europe""" +2023-06-15,1343,1917,"[\""Keyboard\""]",1181.14,{},111198,0,"""North America""" +2023-05-15,1344,48,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3321.07,{},153090,1,"""Europe""" +2024-10-01,1345,2722,"[\""Laptop\"", \""Monitor\""]",3830.22,"{\""seasonal\"": \""8%\""}",59802,1,"""Europe""" +2024-11-08,1346,8887,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1459.78,"{\""loyalty\"": \""21%\""}",284851,0,"""Europe""" +2023-07-24,1347,9384,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1275.04,"{\""loyalty\"": \""8%\""}",174120,1,"""Africa""" +2024-01-02,1348,9830,"[\""Headphones\"", \""Charger\""]",1610.14,{},140188,1,"""Asia""" +2023-03-22,1349,6098,"[\""Monitor\""]",2678.46,"{\"": \""17%\""}",97229,1,"""Asia""" +2024-04-06,1350,3247,"[\""Laptop\""]",1126.1,{},76979,1,"""South America""" +2024-03-18,1351,7865,"[\""Headphones\"", \""Monitor\""]",4783.09,"{\"": \""12%\""}",83403,1,"""Africa""" +2024-08-07,1352,4279,"[\""Headphones\""]",2763.48,"{\""loyalty\"": \""6%\""}",127945,1,"""South America""" +2024-12-20,1353,4228,"[\""Tablet\""]",1043.84,{},91001,1,"""Europe""" +2023-12-27,1354,7475,"[\""Monitor\""]",991.64,{},231460,1,"""Africa""" +2024-07-31,1355,749,"[\""Keyboard\""]",437.24,{},233931,1,"""South America""" +2023-10-12,1356,764,"[\""Headphones\""]",4045.02,"{\"": \""26%\""}",72745,0,"""Africa""" +2023-12-08,1357,3667,"[\""Headphones\""]",2530.67,{},71678,0,"""South America""" +2023-08-05,1358,5819,"[\""Tablet\""]",3908.59,{},173699,0,"""South America""" +2023-11-23,1359,5774,"[\""Keyboard\""]",884.78,{},54936,1,"""South America""" +2024-07-28,1360,3707,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4188.38,{},84243,0,"""Europe""" +2023-11-09,1361,2089,"[\""Monitor\"", \""Charger\""]",1017.13,{},57365,1,"""North America""" +2023-10-02,1362,7698,"[\""Laptop\""]",1486.21,"{\"": \""17%\""}",196897,0,"""Africa""" +2023-05-16,1363,872,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2131.19,{},110888,1,"""South America""" +2023-06-05,1364,210,"[\""Headphones\"", \""Tablet\""]",4675.81,{},218328,1,"""Europe""" +2023-07-29,1365,6934,"[\""Laptop\"", \""Headphones\""]",442.5,"{\""seasonal\"": \""17%\""}",206979,1,"""South America""" +2024-03-08,1366,2467,"[\""Phone\""]",1352.5,{},144352,1,"""North America""" +2024-10-05,1367,3764,"[\""Laptop\"", \""Monitor\""]",3028.61,{},280559,1,"""Africa""" +2024-07-15,1368,9535,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",306.46,"{\"": \""10%\""}",109236,1,"""Africa""" +2024-09-03,1369,8792,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4821.89,{},269755,0,"""South America""" +2024-09-17,1370,4998,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3136.43,{},69640,0,"""Asia""" +2024-04-05,1371,5923,"[\""Keyboard\""]",3258.6,"{\""promo\"": \""28%\""}",268545,0,"""North America""" +2024-01-23,1372,6806,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3545.5,{},55881,1,"""South America""" +2024-06-20,1373,3387,"[\""Charger\"", \""Tablet\""]",3771.29,"{\""loyalty\"": \""6%\""}",91350,1,"""South America""" +2023-11-17,1374,9258,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",304.4,"{\"": \""14%\""}",186449,0,"""South America""" +2023-05-19,1375,1806,"[\""Wireless Mouse\""]",3636.02,{},184517,1,"""North America""" +2023-06-27,1376,8873,"[\""Wireless Mouse\"", \""Laptop\""]",4347.93,"{\""promo\"": \""12%\""}",168798,0,"""Europe""" +2023-08-28,1377,4328,"[\""Wireless Mouse\"", \""Headphones\""]",2042.64,{},293880,1,"""South America""" +2023-01-19,1378,3050,"[\""Phone\""]",3995.18,{},149427,1,"""Africa""" +2023-08-16,1379,8043,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3392.73,{},269431,0,"""South America""" +2023-09-24,1380,4060,"[\""Tablet\"", \""Laptop\""]",2486.2,"{\""promo\"": \""17%\""}",123871,1,"""North America""" +2024-08-17,1381,6073,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",337.51,"{\""promo\"": \""17%\""}",65794,0,"""Asia""" +2024-06-05,1382,4644,"[\""Laptop\"", \""Phone\""]",2853.31,{},228017,0,"""South America""" +2023-05-17,1383,4255,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2335.99,"{\""promo\"": \""25%\""}",46656,0,"""South America""" +2023-04-05,1384,9246,"[\""Wireless Mouse\""]",2395.31,"{\"": \""5%\""}",192010,1,"""North America""" +2023-10-15,1385,6533,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1556.91,{},108209,1,"""South America""" +2024-12-09,1386,476,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4467.4,"{\""seasonal\"": \""15%\""}",159892,0,"""South America""" +2024-04-05,1387,7698,"[\""Tablet\"", \""Keyboard\""]",2607.86,"{\""seasonal\"": \""18%\""}",150604,0,"""South America""" +2024-06-26,1388,2895,"[\""Tablet\"", \""Phone\""]",2251.59,{},38445,1,"""Africa""" +2024-03-26,1389,3432,"[\""Headphones\""]",3704.57,"{\""loyalty\"": \""26%\""}",235942,0,"""Asia""" +2023-10-25,1390,5520,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3757.6,{},118516,0,"""Africa""" +2023-05-23,1391,8056,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1439.35,{},217321,1,"""Europe""" +2023-08-22,1392,3034,"[\""Phone\""]",1754.33,"{\"": \""23%\""}",42757,0,"""South America""" +2024-09-15,1393,6000,"[\""Keyboard\""]",2976.7,{},208106,1,"""North America""" +2024-02-09,1394,6420,"[\""Charger\"", \""Laptop\""]",2759.82,"{\""promo\"": \""17%\""}",234560,0,"""Europe""" +2023-11-29,1395,5799,"[\""Monitor\"", \""Keyboard\""]",2304.16,{},84801,0,"""North America""" +2023-06-08,1396,7634,"[\""Headphones\""]",2865.08,"{\""promo\"": \""6%\""}",281995,1,"""Europe""" +2024-03-07,1397,2789,"[\""Phone\""]",2178.06,{},240601,1,"""Europe""" +2024-04-27,1398,2010,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1211.9,{},160792,0,"""Asia""" +2024-06-15,1399,7295,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3098.45,{},250791,1,"""Europe""" +2023-06-21,1400,7517,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",299.68,{},82193,0,"""South America""" +2023-11-24,1401,6482,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4515.68,"{\""seasonal\"": \""14%\""}",58857,1,"""Africa""" +2024-01-07,1402,5173,"[\""Phone\""]",3146.24,"{\""loyalty\"": \""8%\""}",203731,1,"""South America""" +2024-05-08,1403,886,"[\""Charger\"", \""Laptop\""]",2582.8,{},101632,1,"""Africa""" +2024-09-20,1404,3914,"[\""Phone\"", \""Headphones\""]",3565.98,{},52809,1,"""South America""" +2023-03-03,1405,7599,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",275.13,"{\""seasonal\"": \""7%\""}",27735,0,"""Europe""" +2023-05-22,1406,8634,"[\""Phone\""]",3960.79,"{\""promo\"": \""14%\""}",176569,1,"""Asia""" +2024-12-16,1407,1666,"[\""Headphones\"", \""Wireless Mouse\""]",3219.4,"{\"": \""23%\""}",22507,0,"""Africa""" +2023-10-16,1408,6251,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2153.65,"{\""loyalty\"": \""20%\""}",121217,0,"""South America""" +2024-03-27,1409,7905,"[\""Monitor\""]",859.96,{},146360,1,"""North America""" +2023-09-19,1410,2402,"[\""Keyboard\""]",1370.14,{},202695,0,"""Europe""" +2023-03-27,1411,7380,"[\""Keyboard\""]",4269.12,"{\""loyalty\"": \""13%\""}",107735,1,"""Africa""" +2023-05-31,1412,5720,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4580.77,{},169623,1,"""Asia""" +2024-04-11,1413,4377,"[\""Keyboard\"", \""Monitor\""]",2765.07,{},137149,1,"""North America""" +2023-10-09,1414,6622,"[\""Keyboard\""]",955.45,"{\""seasonal\"": \""30%\""}",119816,0,"""Asia""" +2024-01-27,1415,8163,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4521.52,"{\""loyalty\"": \""26%\""}",283416,1,"""South America""" +2023-11-19,1416,2646,"[\""Phone\""]",4843.84,{},138879,1,"""Europe""" +2024-10-26,1417,1773,"[\""Charger\""]",4499.46,"{\""seasonal\"": \""18%\""}",259239,1,"""South America""" +2023-02-21,1418,7830,"[\""Tablet\"", \""Charger\""]",4220.91,"{\""loyalty\"": \""10%\""}",48205,1,"""Africa""" +2023-11-11,1419,1818,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",749.49,"{\""promo\"": \""25%\""}",57705,0,"""North America""" +2023-02-10,1420,6108,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1884.56,{},13354,1,"""Asia""" +2024-04-21,1421,6611,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2575.4,{},180623,0,"""Africa""" +2023-03-08,1422,6081,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1526.08,"{\""promo\"": \""10%\""}",257360,1,"""Africa""" +2024-10-02,1423,9916,"[\""Charger\""]",3333.11,"{\""seasonal\"": \""21%\""}",134960,0,"""Europe""" +2023-09-25,1424,1552,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3756.72,{},83843,0,"""South America""" +2023-05-12,1425,8157,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1812.31,"{\""promo\"": \""24%\""}",184631,1,"""North America""" +2024-03-09,1426,6779,"[\""Keyboard\""]",1875.53,{},39600,0,"""Europe""" +2023-07-05,1427,3786,"[\""Tablet\""]",1209.94,"{\""seasonal\"": \""19%\""}",32265,1,"""Asia""" +2023-06-28,1428,3699,"[\""Tablet\"", \""Charger\""]",3379.31,{},209393,1,"""North America""" +2023-02-02,1429,6629,"[\""Headphones\""]",3888.03,{},112514,1,"""Asia""" +2023-07-28,1430,7360,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4614.75,{},71416,1,"""Asia""" +2023-05-19,1431,9406,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3381.68,{},274629,1,"""Africa""" +2024-09-22,1432,7923,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4142.51,"{\""seasonal\"": \""29%\""}",87751,1,"""South America""" +2023-10-09,1433,4367,"[\""Laptop\"", \""Monitor\""]",652.18,"{\""seasonal\"": \""17%\""}",278699,0,"""Africa""" +2023-01-26,1434,7289,"[\""Laptop\""]",767.33,{},18866,0,"""North America""" +2024-12-28,1435,7295,"[\""Wireless Mouse\"", \""Phone\""]",239.66,"{\""promo\"": \""21%\""}",53346,0,"""Asia""" +2023-11-25,1436,884,"[\""Monitor\"", \""Phone\""]",4671.33,"{\""loyalty\"": \""29%\""}",64740,1,"""Africa""" +2023-03-23,1437,3006,"[\""Phone\""]",3521.77,"{\"": \""26%\""}",216562,0,"""Europe""" +2023-09-20,1438,9549,"[\""Monitor\""]",4865.87,{},25453,0,"""Asia""" +2024-01-27,1439,1782,"[\""Monitor\""]",2139.63,"{\""promo\"": \""13%\""}",103861,0,"""South America""" +2024-06-20,1440,1674,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",269.57,"{\""loyalty\"": \""25%\""}",158401,1,"""Asia""" +2023-12-31,1441,9655,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3137.38,"{\""seasonal\"": \""22%\""}",37964,1,"""North America""" +2023-06-22,1442,2102,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4865.34,"{\""seasonal\"": \""12%\""}",5283,1,"""Europe""" +2023-03-11,1443,6766,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2799.56,{},257941,0,"""Asia""" +2024-04-06,1444,6006,"[\""Headphones\""]",317.38,{},68840,1,"""North America""" +2024-10-22,1445,1338,"[\""Headphones\""]",3347.86,{},294794,1,"""North America""" +2023-05-21,1446,3437,"[\""Keyboard\""]",4558.91,"{\""promo\"": \""30%\""}",231467,1,"""Europe""" +2023-01-18,1447,5862,"[\""Charger\""]",3997.58,"{\"": \""29%\""}",289880,1,"""Europe""" +2023-12-30,1448,9329,"[\""Wireless Mouse\""]",3998.17,{},155737,1,"""South America""" +2023-08-14,1449,4165,"[\""Keyboard\""]",375.31,{},122153,1,"""Africa""" +2024-04-16,1450,3333,"[\""Keyboard\"", \""Monitor\""]",2145.83,{},99488,1,"""North America""" +2023-01-21,1451,3768,"[\""Monitor\""]",2197.46,"{\""loyalty\"": \""9%\""}",299747,0,"""Europe""" +2023-03-11,1452,6968,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4819.75,{},13668,0,"""South America""" +2024-01-09,1453,1574,"[\""Phone\"", \""Wireless Mouse\""]",3509.85,{},73772,0,"""Africa""" +2024-07-10,1454,8160,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2771.85,{},67238,1,"""South America""" +2024-01-22,1455,2016,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1160.64,"{\""promo\"": \""12%\""}",141188,0,"""Asia""" +2024-05-26,1456,1732,"[\""Phone\"", \""Charger\""]",3601.46,{},275827,1,"""Asia""" +2023-05-24,1457,8827,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2040.13,{},202304,1,"""Europe""" +2023-04-08,1458,362,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",604.76,"{\""promo\"": \""7%\""}",152379,1,"""South America""" +2023-08-10,1459,9582,"[\""Laptop\"", \""Keyboard\""]",4189.71,"{\""seasonal\"": \""25%\""}",254005,0,"""Asia""" +2024-03-30,1460,9438,"[\""Keyboard\""]",4308.63,{},236500,0,"""North America""" +2024-05-23,1461,3976,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2476.12,"{\""seasonal\"": \""23%\""}",109480,1,"""Africa""" +2024-01-24,1462,7569,"[\""Tablet\"", \""Keyboard\""]",4670.39,"{\""seasonal\"": \""14%\""}",150702,0,"""Africa""" +2023-08-27,1463,9468,"[\""Headphones\"", \""Monitor\""]",3797.87,{},111035,0,"""Asia""" +2024-03-29,1464,4405,"[\""Phone\""]",4936.05,"{\""loyalty\"": \""27%\""}",88829,1,"""Africa""" +2023-03-04,1465,4900,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3954.73,"{\""loyalty\"": \""25%\""}",116212,1,"""North America""" +2023-01-29,1466,4953,"[\""Monitor\"", \""Charger\""]",2932.95,"{\""seasonal\"": \""7%\""}",17478,0,"""North America""" +2023-12-28,1467,4608,"[\""Phone\""]",650.17,"{\"": \""23%\""}",42271,1,"""North America""" +2024-08-26,1468,4578,"[\""Monitor\""]",3595.75,"{\""loyalty\"": \""12%\""}",206963,1,"""South America""" +2023-12-05,1469,4677,"[\""Charger\"", \""Headphones\""]",2214.49,{},200232,0,"""South America""" +2024-05-24,1470,8086,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1798.28,"{\""promo\"": \""17%\""}",224423,1,"""Europe""" +2024-04-17,1471,1064,"[\""Laptop\"", \""Tablet\""]",635.49,"{\""seasonal\"": \""16%\""}",58563,0,"""South America""" +2024-01-31,1472,9824,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4669.71,"{\"": \""14%\""}",34059,0,"""Africa""" +2023-12-29,1473,697,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",324.61,{},64578,0,"""South America""" +2024-09-19,1474,1234,"[\""Tablet\""]",3787.29,"{\""promo\"": \""19%\""}",57101,1,"""Asia""" +2023-06-19,1475,7566,"[\""Headphones\"", \""Phone\""]",3495.59,{},174862,0,"""Europe""" +2024-07-19,1476,1334,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2093.14,{},165002,1,"""North America""" +2023-12-23,1477,8303,"[\""Keyboard\""]",4148.14,{},83446,0,"""North America""" +2024-09-10,1478,6538,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",89.42,{},151862,1,"""North America""" +2023-07-01,1479,161,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1182.44,{},245818,0,"""Africa""" +2023-12-16,1480,6927,"[\""Laptop\""]",1729.25,{},15124,0,"""North America""" +2024-04-05,1481,4713,"[\""Charger\"", \""Phone\""]",2351.89,{},259156,0,"""North America""" +2023-07-17,1482,1352,"[\""Wireless Mouse\""]",1943.91,{},41252,1,"""North America""" +2024-04-17,1483,2609,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4071.9,{},191545,0,"""North America""" +2024-05-24,1484,8077,"[\""Monitor\""]",118.29,"{\"": \""24%\""}",163679,0,"""Europe""" +2024-05-25,1485,7792,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2165.29,{},124032,0,"""Asia""" +2024-07-17,1486,5749,"[\""Tablet\"", \""Monitor\""]",3888.88,"{\"": \""21%\""}",168840,1,"""Asia""" +2023-10-06,1487,6616,"[\""Phone\"", \""Wireless Mouse\""]",3106.13,"{\"": \""19%\""}",119175,0,"""Asia""" +2024-05-20,1488,4069,"[\""Monitor\""]",1480.86,"{\""seasonal\"": \""26%\""}",53645,0,"""Europe""" +2024-06-17,1489,952,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2700.98,"{\""loyalty\"": \""29%\""}",83856,0,"""North America""" +2024-09-15,1490,3300,"[\""Charger\"", \""Laptop\""]",4515.89,"{\""seasonal\"": \""13%\""}",25452,0,"""Europe""" +2024-03-27,1491,1537,"[\""Tablet\"", \""Charger\""]",1822.11,"{\""promo\"": \""17%\""}",98526,0,"""Africa""" +2024-12-26,1492,8853,"[\""Phone\""]",1578.38,"{\"": \""9%\""}",284834,0,"""Europe""" +2024-03-13,1493,8186,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",94.54,"{\""seasonal\"": \""10%\""}",297816,0,"""North America""" +2023-07-22,1494,1966,"[\""Monitor\"", \""Wireless Mouse\""]",3194.73,{},125530,1,"""South America""" +2023-07-18,1495,8953,"[\""Keyboard\"", \""Monitor\""]",141.93,{},249876,1,"""South America""" +2024-04-28,1496,123,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3485.71,"{\""loyalty\"": \""27%\""}",115120,1,"""South America""" +2024-10-12,1497,578,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2752.32,"{\""promo\"": \""24%\""}",64514,0,"""Asia""" +2024-03-19,1498,1770,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",353.13,"{\""loyalty\"": \""14%\""}",278225,1,"""Europe""" +2024-09-19,1499,2814,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",199.55,"{\""promo\"": \""12%\""}",45302,1,"""Asia""" +2023-02-22,1500,813,"[\""Keyboard\""]",617.42,{},115452,0,"""South America""" +2024-04-08,1501,5985,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3648.95,{},29926,1,"""Asia""" +2024-05-21,1502,1788,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4935.06,"{\"": \""30%\""}",222043,1,"""South America""" +2024-03-19,1503,8761,"[\""Headphones\"", \""Charger\""]",3526.54,{},164135,1,"""South America""" +2024-05-29,1504,3045,"[\""Phone\"", \""Tablet\""]",2627.55,{},106931,0,"""Asia""" +2024-01-26,1505,5537,"[\""Keyboard\"", \""Monitor\""]",3384.53,{},279310,0,"""Asia""" +2024-04-28,1506,9285,"[\""Wireless Mouse\"", \""Charger\""]",1620.53,"{\""loyalty\"": \""21%\""}",208030,1,"""Africa""" +2024-07-13,1507,2793,"[\""Phone\"", \""Monitor\""]",2361.34,{},87855,1,"""Africa""" +2024-08-05,1508,8998,"[\""Headphones\""]",2654.76,{},172405,1,"""Europe""" +2023-09-30,1509,527,"[\""Tablet\""]",1874.06,{},113695,1,"""North America""" +2023-08-23,1510,2263,"[\""Laptop\""]",4670.65,"{\""seasonal\"": \""13%\""}",161854,0,"""Europe""" +2024-11-28,1511,8166,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3696.54,{},64690,0,"""Asia""" +2023-02-14,1512,7879,"[\""Monitor\""]",4138.79,{},97522,0,"""North America""" +2024-05-03,1513,4836,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4338.73,"{\"": \""12%\""}",85020,1,"""Africa""" +2023-10-05,1514,2292,"[\""Monitor\"", \""Charger\""]",4638.25,{},177920,1,"""Europe""" +2024-09-22,1515,2804,"[\""Monitor\""]",1866.91,{},133780,0,"""North America""" +2024-05-12,1516,5947,"[\""Keyboard\"", \""Tablet\""]",4247.03,"{\""seasonal\"": \""25%\""}",148672,1,"""Africa""" +2023-08-03,1517,5246,"[\""Laptop\""]",4316.04,{},29635,0,"""Asia""" +2024-04-24,1518,6212,"[\""Charger\""]",1392.38,{},221290,0,"""Asia""" +2023-12-17,1519,9648,"[\""Keyboard\"", \""Phone\""]",2782.13,"{\""loyalty\"": \""8%\""}",175292,0,"""Africa""" +2024-06-24,1520,969,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4967.08,"{\""promo\"": \""17%\""}",162929,1,"""Africa""" +2023-01-04,1521,6986,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2346.92,{},119876,0,"""North America""" +2023-10-19,1522,5521,"[\""Tablet\"", \""Laptop\""]",497.65,{},186766,1,"""Africa""" +2023-06-04,1523,9489,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",720.38,"{\""seasonal\"": \""23%\""}",293669,0,"""North America""" +2024-12-31,1524,3924,"[\""Laptop\"", \""Tablet\""]",3503.94,"{\""seasonal\"": \""12%\""}",250354,0,"""Europe""" +2023-02-09,1525,5144,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2021.59,{},106486,0,"""Africa""" +2023-10-07,1526,5246,"[\""Tablet\"", \""Keyboard\""]",2506.48,{},283417,1,"""North America""" +2024-04-06,1527,4314,"[\""Phone\""]",4213.08,{},154669,1,"""Africa""" +2023-09-10,1528,1680,"[\""Charger\"", \""Keyboard\""]",4992.78,{},18168,0,"""Asia""" +2023-05-12,1529,2109,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2784.41,"{\"": \""10%\""}",261637,1,"""North America""" +2023-09-25,1530,8025,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2959.87,{},148078,0,"""North America""" +2024-01-16,1531,3739,"[\""Headphones\""]",1020.28,"{\""loyalty\"": \""15%\""}",127532,1,"""Asia""" +2024-02-09,1532,1029,"[\""Charger\"", \""Laptop\""]",526.58,"{\""promo\"": \""23%\""}",244585,0,"""Asia""" +2024-09-06,1533,1277,"[\""Monitor\""]",1720.26,{},260022,1,"""North America""" +2024-03-23,1534,5273,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1539.48,"{\""loyalty\"": \""13%\""}",131845,1,"""North America""" +2023-12-13,1535,1474,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4759.28,{},107762,0,"""Europe""" +2024-11-11,1536,8124,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1716.43,{},64379,0,"""North America""" +2024-03-16,1537,9585,"[\""Keyboard\""]",2602.0,{},259011,1,"""Africa""" +2024-02-27,1538,245,"[\""Monitor\""]",2975.35,{},203333,0,"""North America""" +2024-05-02,1539,6359,"[\""Tablet\"", \""Monitor\""]",4356.34,"{\""promo\"": \""9%\""}",37964,1,"""Europe""" +2024-06-05,1540,4840,"[\""Headphones\""]",4168.31,"{\""seasonal\"": \""13%\""}",169237,0,"""Europe""" +2024-03-28,1541,4664,"[\""Keyboard\""]",4008.08,{},127904,1,"""Europe""" +2023-03-27,1542,2217,"[\""Laptop\"", \""Charger\""]",4539.26,"{\""promo\"": \""7%\""}",36218,1,"""Africa""" +2023-07-06,1543,8371,"[\""Charger\""]",2366.73,{},5813,0,"""South America""" +2023-05-28,1544,6202,"[\""Charger\"", \""Keyboard\""]",3284.51,{},24092,0,"""Asia""" +2024-07-02,1545,422,"[\""Tablet\""]",771.66,"{\"": \""11%\""}",124240,1,"""South America""" +2023-08-18,1546,8880,"[\""Charger\"", \""Wireless Mouse\""]",1514.2,"{\""seasonal\"": \""24%\""}",253422,1,"""Asia""" +2024-01-25,1547,6994,"[\""Headphones\""]",4121.4,{},168026,0,"""Asia""" +2024-11-27,1548,4638,"[\""Charger\""]",957.74,"{\"": \""19%\""}",77546,0,"""Asia""" +2023-01-06,1549,2138,"[\""Charger\""]",3922.31,"{\""seasonal\"": \""25%\""}",229877,1,"""Africa""" +2024-03-29,1550,6539,"[\""Monitor\"", \""Phone\""]",2811.14,"{\""seasonal\"": \""10%\""}",6030,1,"""Asia""" +2024-02-21,1551,161,"[\""Headphones\"", \""Phone\""]",1780.46,{},51453,0,"""South America""" +2023-04-15,1552,9797,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2341.3,"{\""loyalty\"": \""7%\""}",64311,1,"""North America""" +2023-05-02,1553,5139,"[\""Wireless Mouse\""]",2555.75,{},218578,0,"""Europe""" +2023-03-23,1554,7800,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3524.99,{},185274,0,"""Europe""" +2024-09-29,1555,8995,"[\""Headphones\""]",997.21,"{\""seasonal\"": \""11%\""}",172317,0,"""South America""" +2024-03-25,1556,7370,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1314.4,"{\""loyalty\"": \""19%\""}",134003,1,"""Europe""" +2023-10-23,1557,8951,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",223.06,"{\""seasonal\"": \""7%\""}",232786,1,"""Asia""" +2024-08-05,1558,7357,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2702.57,{},13493,0,"""Asia""" +2024-01-23,1559,7583,"[\""Keyboard\""]",2306.39,{},162827,1,"""Asia""" +2023-09-18,1560,9582,"[\""Wireless Mouse\"", \""Headphones\""]",3165.93,"{\""seasonal\"": \""14%\""}",49511,0,"""South America""" +2023-09-06,1561,9024,"[\""Tablet\""]",1364.69,{},47838,0,"""North America""" +2024-06-02,1562,582,"[\""Monitor\""]",4464.01,{},281990,1,"""North America""" +2023-06-18,1563,1465,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2046.71,"{\""loyalty\"": \""6%\""}",205732,0,"""Africa""" +2023-11-30,1564,5270,"[\""Phone\""]",455.8,"{\""loyalty\"": \""16%\""}",62066,1,"""Europe""" +2023-05-07,1565,5019,"[\""Charger\""]",1041.45,"{\"": \""5%\""}",162784,0,"""Asia""" +2023-05-11,1566,5110,"[\""Phone\"", \""Headphones\""]",3081.25,"{\"": \""17%\""}",264015,1,"""North America""" +2023-07-30,1567,2676,"[\""Wireless Mouse\"", \""Keyboard\""]",1853.38,"{\""seasonal\"": \""21%\""}",43729,1,"""Africa""" +2024-09-17,1568,6517,"[\""Tablet\""]",2963.03,"{\""promo\"": \""17%\""}",147482,0,"""South America""" +2024-03-25,1569,941,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3023.85,{},130715,0,"""South America""" +2023-08-09,1570,6005,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2381.42,{},13776,0,"""Europe""" +2023-06-01,1571,6993,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",464.62,"{\""loyalty\"": \""27%\""}",164548,1,"""Asia""" +2024-01-31,1572,911,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4921.77,"{\""seasonal\"": \""5%\""}",43205,0,"""North America""" +2024-08-05,1573,1776,"[\""Tablet\"", \""Charger\""]",3836.48,{},151537,0,"""South America""" +2023-12-08,1574,9753,"[\""Phone\"", \""Laptop\""]",4285.57,{},276890,1,"""Europe""" +2023-10-04,1575,3260,"[\""Tablet\"", \""Charger\""]",677.06,{},134977,1,"""North America""" +2024-06-02,1576,8172,"[\""Keyboard\"", \""Wireless Mouse\""]",4838.65,"{\""promo\"": \""21%\""}",210943,1,"""North America""" +2023-03-14,1577,7842,"[\""Charger\""]",2800.75,{},83131,0,"""Asia""" +2024-10-28,1578,4434,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3080.61,{},244163,1,"""Europe""" +2023-10-23,1579,1716,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2542.48,"{\"": \""24%\""}",104583,1,"""North America""" +2023-09-04,1580,8004,"[\""Keyboard\""]",4074.4,"{\"": \""8%\""}",296391,0,"""North America""" +2024-03-20,1581,2891,"[\""Keyboard\"", \""Headphones\""]",2011.55,{},157346,1,"""North America""" +2023-06-01,1582,2244,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2585.71,"{\""loyalty\"": \""10%\""}",229486,0,"""South America""" +2024-07-17,1583,1516,"[\""Tablet\""]",3265.7,"{\""promo\"": \""20%\""}",270090,1,"""Africa""" +2023-01-06,1584,6663,"[\""Charger\"", \""Tablet\""]",3344.37,{},53876,1,"""South America""" +2024-07-02,1585,439,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1764.26,{},3085,0,"""South America""" +2024-06-15,1586,2774,"[\""Laptop\"", \""Phone\""]",347.17,{},45016,1,"""South America""" +2023-10-05,1587,9292,"[\""Phone\""]",254.57,"{\""loyalty\"": \""21%\""}",280395,1,"""North America""" +2023-06-14,1588,9630,"[\""Wireless Mouse\"", \""Headphones\""]",1999.35,"{\"": \""28%\""}",235618,1,"""South America""" +2024-09-29,1589,1171,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",245.59,"{\"": \""19%\""}",222377,1,"""South America""" +2024-04-05,1590,1707,"[\""Charger\"", \""Tablet\""]",4835.42,{},179082,0,"""Asia""" +2024-02-19,1591,8232,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2660.21,{},272114,0,"""North America""" +2023-01-27,1592,5828,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",254.37,{},176644,1,"""Asia""" +2023-09-21,1593,6358,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2964.18,{},192488,0,"""Europe""" +2024-03-09,1594,6920,"[\""Headphones\""]",915.22,"{\"": \""20%\""}",162188,1,"""Africa""" +2024-02-11,1595,6945,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3989.49,"{\""seasonal\"": \""9%\""}",148315,0,"""North America""" +2024-06-26,1596,3522,"[\""Charger\""]",523.21,"{\""loyalty\"": \""9%\""}",9222,0,"""North America""" +2024-04-07,1597,5092,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",978.0,"{\""loyalty\"": \""6%\""}",18727,0,"""Africa""" +2024-06-05,1598,4654,"[\""Headphones\"", \""Keyboard\""]",1431.2,"{\""loyalty\"": \""21%\""}",206565,0,"""South America""" +2024-08-09,1599,7333,"[\""Wireless Mouse\"", \""Tablet\""]",3386.25,{},180527,0,"""South America""" +2023-03-10,1600,1448,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1688.83,"{\""loyalty\"": \""17%\""}",105805,0,"""Asia""" +2024-05-25,1601,4153,"[\""Monitor\""]",4257.8,"{\"": \""27%\""}",11225,1,"""Africa""" +2023-05-19,1602,6182,"[\""Keyboard\"", \""Tablet\""]",1767.85,{},27462,0,"""Asia""" +2023-12-22,1603,813,"[\""Phone\"", \""Keyboard\""]",314.7,{},281316,1,"""Africa""" +2023-12-05,1604,8735,"[\""Headphones\""]",1411.52,{},299062,0,"""Europe""" +2024-07-16,1605,8397,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4190.66,"{\"": \""22%\""}",179634,0,"""South America""" +2023-12-22,1606,4234,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3571.88,{},159760,1,"""Africa""" +2023-09-28,1607,6578,"[\""Monitor\"", \""Keyboard\""]",3168.35,{},50746,1,"""North America""" +2024-07-01,1608,2452,"[\""Headphones\""]",3933.24,"{\"": \""23%\""}",195896,1,"""South America""" +2023-08-08,1609,6684,"[\""Wireless Mouse\"", \""Phone\""]",2576.1,"{\""seasonal\"": \""29%\""}",233697,0,"""Asia""" +2024-10-03,1610,3640,"[\""Charger\""]",3106.12,{},163318,0,"""North America""" +2024-10-03,1611,9247,"[\""Tablet\"", \""Charger\""]",2668.62,{},18581,1,"""North America""" +2024-02-15,1612,9518,"[\""Headphones\"", \""Wireless Mouse\""]",856.08,"{\""loyalty\"": \""24%\""}",288757,1,"""Europe""" +2024-12-08,1613,7861,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3482.74,"{\"": \""6%\""}",283899,0,"""Asia""" +2024-07-01,1614,5923,"[\""Monitor\""]",2769.66,"{\""promo\"": \""30%\""}",167025,0,"""North America""" +2024-04-26,1615,3699,"[\""Charger\""]",3166.17,{},94185,0,"""Asia""" +2024-09-06,1616,7538,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",512.56,{},30661,1,"""Asia""" +2024-10-15,1617,6785,"[\""Laptop\""]",4862.95,"{\"": \""23%\""}",40738,1,"""Europe""" +2024-11-07,1618,6458,"[\""Wireless Mouse\""]",3221.55,{},260331,0,"""Asia""" +2024-06-23,1619,2803,"[\""Laptop\"", \""Charger\""]",2087.8,"{\""seasonal\"": \""17%\""}",290481,0,"""South America""" +2023-03-10,1620,1972,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4026.7,{},200115,1,"""Europe""" +2023-03-04,1621,336,"[\""Tablet\""]",2741.68,"{\""promo\"": \""11%\""}",224512,0,"""Europe""" +2023-03-21,1622,5248,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3862.99,{},167772,1,"""South America""" +2023-11-30,1623,38,"[\""Headphones\""]",3514.72,{},94076,1,"""Europe""" +2023-08-21,1624,4005,"[\""Monitor\"", \""Charger\""]",728.37,{},29182,0,"""Asia""" +2024-01-23,1625,9206,"[\""Tablet\"", \""Charger\""]",1428.87,"{\"": \""5%\""}",135187,1,"""North America""" +2024-11-20,1626,4346,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3550.07,{},13893,0,"""Asia""" +2023-05-20,1627,5346,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4620.51,{},202427,1,"""Asia""" +2024-02-21,1628,1547,"[\""Tablet\"", \""Headphones\""]",1835.21,"{\""seasonal\"": \""16%\""}",288126,1,"""North America""" +2023-05-10,1629,1570,"[\""Monitor\""]",4933.83,"{\""seasonal\"": \""14%\""}",46012,1,"""Africa""" +2024-11-12,1630,7639,"[\""Headphones\""]",3322.36,"{\""promo\"": \""12%\""}",168433,0,"""South America""" +2024-08-08,1631,1285,"[\""Headphones\""]",1195.92,{},258875,1,"""Asia""" +2024-06-30,1632,9160,"[\""Laptop\""]",4850.06,"{\""seasonal\"": \""17%\""}",247226,1,"""Europe""" +2023-08-25,1633,4557,"[\""Wireless Mouse\""]",3008.01,{},36517,0,"""South America""" +2024-12-20,1634,8022,"[\""Headphones\"", \""Tablet\""]",1395.56,"{\"": \""5%\""}",291632,0,"""Europe""" +2024-02-29,1635,9625,"[\""Headphones\""]",1901.27,{},22435,1,"""North America""" +2023-04-14,1636,2865,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4004.96,"{\"": \""22%\""}",211209,1,"""North America""" +2024-07-25,1637,4618,"[\""Wireless Mouse\"", \""Headphones\""]",2565.72,{},183099,0,"""Asia""" +2023-05-20,1638,9684,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2728.99,"{\""promo\"": \""20%\""}",100254,0,"""Africa""" +2024-09-16,1639,2366,"[\""Charger\"", \""Tablet\""]",3401.67,"{\"": \""20%\""}",57212,1,"""South America""" +2024-05-15,1640,4187,"[\""Monitor\""]",2945.88,"{\""loyalty\"": \""19%\""}",13252,1,"""Europe""" +2024-12-16,1641,8330,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3764.91,{},26969,1,"""Europe""" +2023-12-27,1642,5779,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3392.73,{},34194,1,"""North America""" +2024-02-02,1643,7562,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4402.79,{},282627,0,"""Europe""" +2024-03-11,1644,5280,"[\""Laptop\"", \""Headphones\""]",2399.39,{},268897,0,"""Europe""" +2023-01-26,1645,776,"[\""Tablet\"", \""Keyboard\""]",911.34,"{\""seasonal\"": \""13%\""}",191400,0,"""Europe""" +2024-05-12,1646,9489,"[\""Headphones\"", \""Tablet\""]",720.12,{},84128,1,"""Africa""" +2023-01-31,1647,6530,"[\""Wireless Mouse\""]",3821.57,"{\""seasonal\"": \""9%\""}",1255,1,"""Europe""" +2023-07-01,1648,3961,"[\""Phone\""]",2269.98,{},105196,0,"""Africa""" +2023-02-08,1649,3583,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1884.86,"{\"": \""18%\""}",92562,1,"""Africa""" +2023-09-12,1650,192,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",902.97,"{\""seasonal\"": \""14%\""}",112606,1,"""South America""" +2024-12-28,1651,7998,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1294.8,{},187743,1,"""North America""" +2024-11-07,1652,9479,"[\""Keyboard\""]",3684.16,{},218036,0,"""Africa""" +2023-04-16,1653,8010,"[\""Keyboard\""]",2934.13,{},188806,1,"""Asia""" +2024-01-06,1654,4936,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2460.79,"{\""seasonal\"": \""25%\""}",296038,1,"""Europe""" +2024-07-26,1655,615,"[\""Wireless Mouse\""]",2592.5,"{\""loyalty\"": \""9%\""}",200669,0,"""South America""" +2024-08-05,1656,1005,"[\""Wireless Mouse\""]",4620.2,{},87667,1,"""Africa""" +2023-11-13,1657,2896,"[\""Wireless Mouse\"", \""Tablet\""]",3917.75,"{\""promo\"": \""19%\""}",152445,1,"""South America""" +2024-12-27,1658,6684,"[\""Phone\""]",1956.67,{},31110,1,"""South America""" +2023-05-16,1659,687,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",947.93,{},88756,0,"""Asia""" +2023-12-24,1660,5334,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",998.43,"{\"": \""29%\""}",272101,0,"""North America""" +2023-12-06,1661,8386,"[\""Phone\""]",2619.64,"{\""promo\"": \""22%\""}",174851,0,"""Africa""" +2024-06-25,1662,4319,"[\""Charger\""]",1462.93,"{\""loyalty\"": \""19%\""}",74381,0,"""Asia""" +2023-03-29,1663,595,"[\""Charger\"", \""Keyboard\""]",3386.37,{},222732,0,"""North America""" +2024-11-08,1664,274,"[\""Headphones\"", \""Keyboard\""]",2560.74,"{\""promo\"": \""13%\""}",157224,0,"""Africa""" +2023-11-28,1665,3662,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",561.19,{},70639,0,"""Asia""" +2023-04-25,1666,4210,"[\""Wireless Mouse\"", \""Phone\""]",1476.42,{},103276,1,"""South America""" +2024-05-19,1667,498,"[\""Charger\"", \""Headphones\""]",4702.42,"{\""promo\"": \""11%\""}",1939,0,"""South America""" +2023-10-19,1668,7705,"[\""Headphones\"", \""Keyboard\""]",3039.89,{},220291,0,"""North America""" +2024-03-16,1669,1382,"[\""Charger\""]",1776.29,"{\""promo\"": \""18%\""}",246680,1,"""Africa""" +2024-12-02,1670,6342,"[\""Charger\"", \""Tablet\""]",2112.83,{},209310,0,"""Africa""" +2023-10-25,1671,4736,"[\""Monitor\"", \""Laptop\""]",965.24,{},280990,1,"""North America""" +2023-04-21,1672,7669,"[\""Tablet\""]",1540.02,{},252882,0,"""Africa""" +2023-09-06,1673,1206,"[\""Tablet\""]",2437.94,"{\""promo\"": \""23%\""}",21915,1,"""South America""" +2023-10-13,1674,2854,"[\""Phone\""]",2289.79,{},165188,1,"""South America""" +2024-05-11,1675,3547,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2986.86,{},137417,0,"""Asia""" +2024-02-03,1676,318,"[\""Charger\"", \""Monitor\""]",2623.17,{},279849,1,"""Europe""" +2024-12-02,1677,3520,"[\""Charger\""]",3157.45,"{\""promo\"": \""21%\""}",222893,0,"""North America""" +2023-11-22,1678,664,"[\""Phone\"", \""Monitor\""]",4912.85,{},165718,0,"""Europe""" +2023-09-27,1679,6393,"[\""Headphones\""]",847.95,"{\""seasonal\"": \""18%\""}",235139,1,"""Asia""" +2024-12-07,1680,2179,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4357.97,"{\""promo\"": \""18%\""}",81538,0,"""Asia""" +2023-11-16,1681,4285,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4614.98,"{\""loyalty\"": \""7%\""}",39479,1,"""Africa""" +2024-06-10,1682,6850,"[\""Charger\""]",1040.41,"{\""seasonal\"": \""13%\""}",29188,1,"""North America""" +2023-03-03,1683,6916,"[\""Monitor\"", \""Laptop\""]",180.48,{},183713,1,"""South America""" +2024-08-03,1684,9134,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4638.61,"{\""seasonal\"": \""22%\""}",248143,1,"""Europe""" +2023-06-30,1685,5337,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4581.68,{},274804,1,"""North America""" +2024-08-06,1686,1558,"[\""Wireless Mouse\"", \""Tablet\""]",1502.15,{},209484,0,"""North America""" +2023-06-28,1687,7755,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4804.21,{},68214,1,"""Africa""" +2024-04-02,1688,609,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3543.35,"{\""seasonal\"": \""17%\""}",98146,1,"""Africa""" +2023-03-20,1689,142,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3417.03,{},104628,1,"""Europe""" +2023-03-02,1690,6009,"[\""Wireless Mouse\"", \""Phone\""]",58.33,"{\"": \""29%\""}",163818,1,"""Asia""" +2023-02-02,1691,6182,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1290.84,"{\""promo\"": \""14%\""}",165423,1,"""Africa""" +2024-05-04,1692,5302,"[\""Charger\"", \""Monitor\""]",1413.43,{},170978,0,"""Europe""" +2024-02-11,1693,8868,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1207.22,"{\""promo\"": \""6%\""}",157821,1,"""South America""" +2023-09-25,1694,7116,"[\""Monitor\"", \""Laptop\""]",2852.52,{},131764,0,"""Asia""" +2023-08-02,1695,8749,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4496.73,{},154674,0,"""South America""" +2023-09-24,1696,5927,"[\""Wireless Mouse\"", \""Headphones\""]",4710.33,{},110954,0,"""Europe""" +2024-12-02,1697,8501,"[\""Headphones\""]",417.78,"{\""loyalty\"": \""10%\""}",158059,0,"""Africa""" +2024-11-13,1698,5656,"[\""Phone\"", \""Monitor\""]",3986.5,"{\""seasonal\"": \""24%\""}",279005,1,"""South America""" +2024-07-14,1699,1024,"[\""Charger\""]",3483.67,{},169717,1,"""Europe""" +2023-07-31,1700,3555,"[\""Headphones\"", \""Tablet\""]",1310.47,"{\""promo\"": \""13%\""}",207289,1,"""Asia""" +2023-06-07,1701,8772,"[\""Charger\""]",3364.89,"{\""seasonal\"": \""10%\""}",108808,0,"""South America""" +2023-03-12,1702,5263,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3484.9,{},23387,0,"""South America""" +2024-05-25,1703,1067,"[\""Monitor\"", \""Tablet\""]",701.82,"{\"": \""19%\""}",102863,0,"""South America""" +2024-02-28,1704,9006,"[\""Phone\""]",4558.05,"{\""seasonal\"": \""28%\""}",118664,0,"""Asia""" +2023-10-10,1705,7930,"[\""Tablet\"", \""Wireless Mouse\""]",3169.69,{},154814,0,"""Asia""" +2024-07-30,1706,3330,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3029.69,"{\"": \""10%\""}",212333,1,"""Africa""" +2024-09-17,1707,4938,"[\""Monitor\""]",4244.97,"{\"": \""11%\""}",102626,1,"""North America""" +2023-08-21,1708,1065,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3622.06,{},12132,1,"""North America""" +2024-08-07,1709,5355,"[\""Wireless Mouse\"", \""Tablet\""]",4173.82,"{\""loyalty\"": \""10%\""}",211765,0,"""Europe""" +2024-06-09,1710,98,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1269.92,"{\""loyalty\"": \""6%\""}",28640,1,"""Africa""" +2023-05-20,1711,4884,"[\""Charger\"", \""Monitor\""]",2735.47,{},17602,0,"""Africa""" +2024-04-28,1712,1712,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3609.29,"{\"": \""18%\""}",111225,1,"""Africa""" +2023-12-01,1713,4847,"[\""Laptop\"", \""Monitor\""]",2722.29,"{\""promo\"": \""24%\""}",250036,1,"""Africa""" +2023-07-24,1714,3582,"[\""Monitor\""]",4570.61,"{\""loyalty\"": \""19%\""}",206159,1,"""Asia""" +2024-08-24,1715,4898,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3474.36,{},186480,1,"""North America""" +2023-01-13,1716,3765,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1475.14,"{\"": \""14%\""}",1261,0,"""Europe""" +2024-10-13,1717,4084,"[\""Laptop\""]",1253.54,{},32733,0,"""Europe""" +2023-10-17,1718,3345,"[\""Charger\"", \""Headphones\""]",785.94,"{\"": \""28%\""}",266664,0,"""Europe""" +2024-04-17,1719,8129,"[\""Headphones\"", \""Laptop\""]",3572.18,"{\""loyalty\"": \""13%\""}",292277,1,"""Asia""" +2023-11-28,1720,3687,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3396.46,"{\""promo\"": \""5%\""}",103518,0,"""North America""" +2024-07-30,1721,2910,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4621.65,"{\""promo\"": \""15%\""}",11994,1,"""Asia""" +2024-09-15,1722,3413,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1148.51,{},182403,0,"""Asia""" +2023-12-08,1723,5982,"[\""Monitor\""]",456.28,{},118063,0,"""North America""" +2024-02-13,1724,7949,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3319.29,{},33852,0,"""Asia""" +2024-03-02,1725,143,"[\""Charger\"", \""Headphones\""]",2419.03,{},112371,0,"""South America""" +2023-12-15,1726,3543,"[\""Phone\""]",306.07,"{\""loyalty\"": \""5%\""}",36581,0,"""North America""" +2023-02-09,1727,6383,"[\""Charger\""]",4342.94,{},37200,1,"""Europe""" +2024-02-13,1728,2121,"[\""Headphones\""]",1446.85,"{\""promo\"": \""20%\""}",83594,1,"""Asia""" +2023-11-03,1729,3184,"[\""Wireless Mouse\""]",552.54,{},159321,0,"""South America""" +2023-02-23,1730,6714,"[\""Charger\"", \""Keyboard\""]",709.51,{},114580,0,"""South America""" +2024-03-13,1731,7201,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2714.31,{},252106,1,"""Africa""" +2024-08-31,1732,5079,"[\""Headphones\"", \""Phone\""]",2703.67,{},213009,0,"""Africa""" +2024-04-18,1733,2192,"[\""Keyboard\"", \""Laptop\""]",3407.68,{},210484,1,"""South America""" +2024-02-20,1734,519,"[\""Tablet\""]",3158.76,"{\""loyalty\"": \""13%\""}",35913,0,"""North America""" +2023-07-18,1735,5370,"[\""Keyboard\"", \""Charger\""]",1736.62,{},258233,0,"""Asia""" +2023-04-05,1736,8705,"[\""Wireless Mouse\""]",3584.77,{},104949,0,"""Africa""" +2023-08-07,1737,1699,"[\""Laptop\""]",1689.58,{},148612,1,"""South America""" +2024-10-06,1738,4990,"[\""Keyboard\""]",4800.13,{},262843,0,"""Europe""" +2024-12-02,1739,8815,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2327.0,"{\""promo\"": \""27%\""}",265394,1,"""Asia""" +2024-01-12,1740,1524,"[\""Keyboard\""]",4273.78,{},25998,1,"""Africa""" +2023-11-03,1741,6677,"[\""Headphones\""]",3824.1,"{\""promo\"": \""19%\""}",189568,1,"""Europe""" +2024-08-03,1742,1786,"[\""Keyboard\"", \""Wireless Mouse\""]",1523.06,"{\""promo\"": \""30%\""}",199186,1,"""North America""" +2023-09-23,1743,1933,"[\""Laptop\""]",2107.18,"{\"": \""13%\""}",240488,0,"""Europe""" +2023-03-13,1744,1678,"[\""Keyboard\""]",867.43,"{\"": \""14%\""}",242327,0,"""Africa""" +2024-11-25,1745,1026,"[\""Phone\"", \""Charger\"", \""Monitor\""]",645.25,{},93722,0,"""Asia""" +2023-05-06,1746,6188,"[\""Laptop\"", \""Headphones\""]",4877.31,"{\""seasonal\"": \""8%\""}",261642,1,"""North America""" +2023-03-03,1747,2238,"[\""Wireless Mouse\""]",3039.12,"{\""promo\"": \""17%\""}",262477,0,"""North America""" +2023-03-24,1748,7042,"[\""Headphones\""]",1230.44,{},268587,1,"""Africa""" +2023-05-15,1749,56,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1113.92,"{\""loyalty\"": \""16%\""}",110749,1,"""North America""" +2024-05-02,1750,2964,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2708.37,{},181632,0,"""Europe""" +2024-02-03,1751,9908,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3520.32,"{\""promo\"": \""20%\""}",119956,1,"""North America""" +2024-07-28,1752,9793,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4547.04,{},37680,1,"""North America""" +2024-06-06,1753,312,"[\""Headphones\""]",2785.17,{},109202,1,"""Asia""" +2023-11-12,1754,3909,"[\""Keyboard\"", \""Phone\""]",4039.78,"{\""loyalty\"": \""10%\""}",103328,1,"""North America""" +2024-08-03,1755,9220,"[\""Headphones\"", \""Tablet\""]",2487.41,{},283170,0,"""South America""" +2023-11-10,1756,8057,"[\""Laptop\""]",322.22,{},269115,1,"""North America""" +2024-10-15,1757,8838,"[\""Laptop\""]",1002.79,"{\""loyalty\"": \""29%\""}",133259,0,"""Europe""" +2023-08-18,1758,9598,"[\""Laptop\""]",3441.72,{},243926,0,"""Europe""" +2024-06-27,1759,7208,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3991.93,"{\"": \""26%\""}",238862,1,"""Asia""" +2024-10-14,1760,770,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3958.62,{},283181,1,"""South America""" +2023-06-21,1761,9439,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4445.13,"{\""loyalty\"": \""16%\""}",78472,0,"""Europe""" +2024-08-23,1762,1254,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",257.85,{},203157,1,"""North America""" +2024-12-29,1763,7966,"[\""Phone\"", \""Tablet\""]",1483.02,{},175671,1,"""Europe""" +2023-05-01,1764,4357,"[\""Charger\""]",3080.01,{},24239,1,"""Africa""" +2024-05-31,1765,108,"[\""Charger\"", \""Headphones\""]",1504.53,"{\""loyalty\"": \""8%\""}",162391,0,"""Africa""" +2024-06-17,1766,8071,"[\""Charger\"", \""Tablet\""]",4386.48,"{\""loyalty\"": \""25%\""}",5423,0,"""Europe""" +2024-12-13,1767,8139,"[\""Headphones\"", \""Wireless Mouse\""]",2387.93,"{\"": \""9%\""}",294302,1,"""South America""" +2023-08-26,1768,7975,"[\""Headphones\"", \""Tablet\""]",4972.24,{},289822,1,"""North America""" +2024-10-10,1769,449,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",340.44,{},60572,1,"""North America""" +2024-04-27,1770,534,"[\""Phone\"", \""Monitor\""]",3632.24,"{\""loyalty\"": \""24%\""}",150688,1,"""Africa""" +2023-05-02,1771,9129,"[\""Headphones\""]",4224.59,"{\""loyalty\"": \""26%\""}",111342,0,"""Asia""" +2023-05-14,1772,5497,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1059.8,"{\""seasonal\"": \""24%\""}",29605,0,"""South America""" +2024-01-23,1773,1990,"[\""Monitor\""]",1645.51,"{\"": \""22%\""}",239135,1,"""North America""" +2023-12-01,1774,7794,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4574.13,"{\""loyalty\"": \""6%\""}",192625,1,"""Africa""" +2023-07-30,1775,208,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",862.94,"{\""promo\"": \""11%\""}",193106,0,"""South America""" +2024-05-24,1776,718,"[\""Headphones\""]",3967.24,{},294104,1,"""South America""" +2023-12-08,1777,5968,"[\""Keyboard\""]",2752.5,{},61274,1,"""Asia""" +2024-04-17,1778,7694,"[\""Tablet\""]",3112.77,"{\"": \""24%\""}",290581,0,"""Asia""" +2023-09-09,1779,8532,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2520.27,"{\""seasonal\"": \""12%\""}",146793,1,"""South America""" +2024-08-31,1780,1418,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3069.62,"{\""loyalty\"": \""11%\""}",200114,0,"""Africa""" +2023-04-18,1781,8243,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",629.79,{},176795,0,"""Africa""" +2023-05-13,1782,4274,"[\""Monitor\"", \""Wireless Mouse\""]",1068.55,"{\""seasonal\"": \""24%\""}",287344,1,"""Europe""" +2024-05-11,1783,5780,"[\""Charger\"", \""Keyboard\""]",2488.9,{},42918,1,"""Africa""" +2024-12-02,1784,4134,"[\""Wireless Mouse\""]",2410.31,"{\""seasonal\"": \""24%\""}",234073,0,"""North America""" +2024-05-31,1785,942,"[\""Monitor\""]",126.29,{},207374,1,"""Asia""" +2024-01-17,1786,4947,"[\""Monitor\"", \""Laptop\""]",2012.04,"{\""promo\"": \""13%\""}",132750,1,"""North America""" +2024-06-24,1787,9701,"[\""Keyboard\"", \""Tablet\""]",1269.93,{},225602,1,"""North America""" +2024-03-04,1788,7272,"[\""Phone\""]",2902.44,{},122287,0,"""Europe""" +2024-03-08,1789,861,"[\""Monitor\""]",3338.94,{},109166,1,"""Africa""" +2023-02-24,1790,3151,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4455.28,{},68860,1,"""Asia""" +2023-09-08,1791,1336,"[\""Keyboard\"", \""Charger\""]",205.91,"{\""loyalty\"": \""27%\""}",155452,1,"""Africa""" +2024-07-13,1792,9679,"[\""Keyboard\"", \""Phone\""]",3742.71,{},257376,0,"""North America""" +2023-04-25,1793,7036,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1571.05,{},282758,0,"""Europe""" +2023-03-10,1794,6768,"[\""Laptop\"", \""Tablet\""]",1148.13,{},96667,0,"""South America""" +2024-06-24,1795,1841,"[\""Headphones\"", \""Keyboard\""]",2640.77,{},63632,0,"""Europe""" +2023-02-06,1796,2282,"[\""Wireless Mouse\""]",1846.5,"{\"": \""12%\""}",204933,0,"""North America""" +2023-01-19,1797,4113,"[\""Headphones\"", \""Charger\""]",3900.63,"{\""loyalty\"": \""8%\""}",295954,0,"""North America""" +2023-06-12,1798,9177,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3768.78,{},168775,1,"""Africa""" +2023-11-20,1799,4216,"[\""Monitor\"", \""Keyboard\""]",1513.46,{},34169,1,"""Africa""" +2024-02-01,1800,6428,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4488.55,{},163902,1,"""North America""" +2024-09-23,1801,9024,"[\""Charger\""]",505.52,{},224394,0,"""North America""" +2024-07-24,1802,8598,"[\""Keyboard\""]",1462.31,"{\""seasonal\"": \""28%\""}",213533,1,"""South America""" +2024-12-25,1803,1407,"[\""Charger\"", \""Wireless Mouse\""]",4910.48,{},57932,0,"""Europe""" +2024-05-25,1804,6722,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1703.83,{},135016,1,"""South America""" +2023-10-06,1805,6804,"[\""Monitor\"", \""Tablet\""]",2180.22,{},239750,1,"""North America""" +2024-03-04,1806,1985,"[\""Charger\"", \""Wireless Mouse\""]",2121.69,"{\""seasonal\"": \""22%\""}",67840,0,"""Europe""" +2023-06-03,1807,2345,"[\""Tablet\""]",4618.07,"{\""loyalty\"": \""6%\""}",172141,1,"""Africa""" +2023-01-20,1808,2874,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3294.95,{},191706,1,"""South America""" +2023-11-25,1809,5496,"[\""Keyboard\""]",3702.92,{},220621,1,"""South America""" +2024-02-25,1810,1836,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4542.51,"{\""promo\"": \""13%\""}",244761,1,"""Africa""" +2023-11-25,1811,7304,"[\""Wireless Mouse\"", \""Phone\""]",3397.43,"{\""promo\"": \""10%\""}",83025,0,"""South America""" +2024-04-16,1812,3941,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3536.49,"{\"": \""21%\""}",207456,0,"""North America""" +2023-08-02,1813,264,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3052.87,"{\"": \""8%\""}",46268,0,"""Africa""" +2024-02-26,1814,894,"[\""Charger\""]",309.07,{},258389,1,"""Africa""" +2024-03-13,1815,8720,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3146.57,"{\""loyalty\"": \""24%\""}",188055,0,"""Europe""" +2023-09-13,1816,1213,"[\""Laptop\"", \""Phone\""]",484.73,{},229314,1,"""Europe""" +2023-03-20,1817,8520,"[\""Wireless Mouse\""]",3105.03,"{\""promo\"": \""20%\""}",39758,1,"""Europe""" +2024-11-03,1818,477,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4847.27,"{\""seasonal\"": \""11%\""}",175890,0,"""Europe""" +2024-02-19,1819,5052,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2522.99,{},198914,1,"""Europe""" +2024-12-13,1820,7683,"[\""Keyboard\""]",3785.85,{},97086,0,"""Asia""" +2023-05-21,1821,4159,"[\""Wireless Mouse\""]",2688.73,{},40363,0,"""Africa""" +2024-11-06,1822,2647,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1957.76,{},95763,1,"""North America""" +2024-06-05,1823,8828,"[\""Monitor\"", \""Headphones\""]",3374.92,"{\""loyalty\"": \""16%\""}",260053,1,"""North America""" +2024-12-06,1824,3909,"[\""Headphones\""]",4502.86,"{\""loyalty\"": \""20%\""}",295838,0,"""South America""" +2023-11-21,1825,3702,"[\""Charger\"", \""Monitor\""]",2583.0,{},299687,1,"""Europe""" +2024-07-29,1826,4562,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3860.25,"{\"": \""17%\""}",208957,1,"""North America""" +2023-02-05,1827,3309,"[\""Phone\""]",2197.07,"{\""seasonal\"": \""17%\""}",9234,1,"""South America""" +2024-06-19,1828,2307,"[\""Keyboard\"", \""Tablet\""]",2403.58,{},156133,1,"""Asia""" +2023-01-17,1829,5605,"[\""Laptop\"", \""Monitor\""]",716.53,"{\""loyalty\"": \""5%\""}",61377,1,"""Asia""" +2023-12-03,1830,6032,"[\""Wireless Mouse\"", \""Monitor\""]",1366.48,"{\""seasonal\"": \""6%\""}",89192,1,"""Africa""" +2023-08-30,1831,3239,"[\""Wireless Mouse\"", \""Phone\""]",3469.82,"{\""promo\"": \""5%\""}",248131,0,"""North America""" +2023-08-09,1832,9443,"[\""Phone\"", \""Laptop\""]",635.48,{},176357,1,"""South America""" +2024-05-27,1833,6452,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3607.83,"{\""promo\"": \""23%\""}",223535,1,"""South America""" +2023-05-12,1834,6773,"[\""Phone\"", \""Tablet\""]",4727.52,{},105596,0,"""Africa""" +2023-12-02,1835,9253,"[\""Headphones\"", \""Wireless Mouse\""]",3902.87,{},123175,0,"""Africa""" +2024-08-23,1836,1254,"[\""Phone\"", \""Wireless Mouse\""]",1451.46,"{\"": \""10%\""}",239970,0,"""South America""" +2023-07-28,1837,9264,"[\""Phone\""]",658.48,{},185168,1,"""Europe""" +2024-04-24,1838,9733,"[\""Phone\""]",4369.97,{},191041,0,"""Europe""" +2023-08-08,1839,3248,"[\""Monitor\"", \""Tablet\""]",4564.03,"{\"": \""25%\""}",203967,0,"""Europe""" +2023-12-04,1840,272,"[\""Laptop\""]",1147.31,"{\""seasonal\"": \""21%\""}",106761,0,"""Asia""" +2023-05-08,1841,9523,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1101.77,{},140982,1,"""Africa""" +2024-03-29,1842,1910,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1978.68,"{\""loyalty\"": \""8%\""}",34726,0,"""South America""" +2024-12-25,1843,4547,"[\""Charger\"", \""Tablet\""]",966.57,{},170728,0,"""Africa""" +2024-05-16,1844,1951,"[\""Wireless Mouse\"", \""Monitor\""]",4626.86,{},116491,0,"""South America""" +2024-06-30,1845,1826,"[\""Phone\""]",3546.19,{},202419,1,"""South America""" +2023-08-08,1846,6298,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",575.46,{},47404,0,"""South America""" +2024-11-01,1847,6253,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1948.12,"{\""seasonal\"": \""27%\""}",223433,1,"""Europe""" +2024-02-28,1848,3163,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4486.27,{},109545,1,"""Europe""" +2023-02-01,1849,9624,"[\""Keyboard\"", \""Wireless Mouse\""]",4831.36,{},205089,1,"""North America""" +2024-06-26,1850,8057,"[\""Charger\""]",2232.15,{},88202,0,"""South America""" +2023-05-15,1851,7414,"[\""Laptop\""]",1580.99,"{\""promo\"": \""16%\""}",32476,1,"""Asia""" +2023-12-15,1852,8880,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1513.05,{},179555,0,"""Asia""" +2023-08-09,1853,563,"[\""Monitor\"", \""Phone\""]",1076.91,"{\""seasonal\"": \""19%\""}",78069,0,"""South America""" +2024-05-01,1854,8315,"[\""Laptop\""]",3894.4,{},83210,0,"""Africa""" +2024-02-23,1855,9812,"[\""Charger\""]",3930.35,{},286444,1,"""South America""" +2024-11-26,1856,3682,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",787.93,{},76333,0,"""Asia""" +2024-01-24,1857,3595,"[\""Monitor\"", \""Phone\""]",78.02,"{\""seasonal\"": \""5%\""}",111425,1,"""North America""" +2024-01-07,1858,7580,"[\""Keyboard\""]",3641.04,{},226970,0,"""North America""" +2024-09-23,1859,2686,"[\""Phone\""]",3077.38,{},232684,0,"""Asia""" +2024-06-08,1860,455,"[\""Headphones\"", \""Phone\""]",3137.75,"{\""promo\"": \""29%\""}",54181,0,"""South America""" +2024-06-17,1861,4998,"[\""Laptop\""]",3360.88,{},86758,1,"""Africa""" +2024-05-25,1862,9232,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3814.2,{},3298,0,"""South America""" +2024-02-22,1863,5638,"[\""Keyboard\"", \""Monitor\""]",2108.68,{},85824,0,"""Africa""" +2024-07-03,1864,3190,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4666.52,"{\""seasonal\"": \""6%\""}",83517,0,"""Europe""" +2024-07-05,1865,6730,"[\""Laptop\""]",2349.77,{},124419,0,"""North America""" +2023-02-11,1866,8949,"[\""Monitor\""]",4944.31,{},158591,1,"""Africa""" +2024-01-31,1867,6279,"[\""Keyboard\"", \""Tablet\""]",4973.69,{},167220,1,"""Asia""" +2024-12-04,1868,8012,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4028.46,"{\""promo\"": \""10%\""}",274777,1,"""Africa""" +2023-03-16,1869,1388,"[\""Laptop\"", \""Monitor\""]",3484.44,{},81046,0,"""North America""" +2023-12-21,1870,4939,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",711.21,{},2089,1,"""Europe""" +2023-10-25,1871,9380,"[\""Headphones\"", \""Phone\""]",4770.29,{},74416,0,"""Europe""" +2023-04-15,1872,4452,"[\""Charger\""]",2071.03,{},138423,0,"""South America""" +2024-08-16,1873,3545,"[\""Tablet\""]",2071.28,{},140557,1,"""Europe""" +2023-11-03,1874,6872,"[\""Tablet\"", \""Laptop\""]",1903.6,{},22191,1,"""Asia""" +2023-07-16,1875,2345,"[\""Wireless Mouse\""]",4078.38,"{\""loyalty\"": \""14%\""}",9969,0,"""North America""" +2024-10-23,1876,9558,"[\""Charger\""]",1550.68,"{\""loyalty\"": \""6%\""}",238971,0,"""South America""" +2024-03-11,1877,8202,"[\""Laptop\"", \""Monitor\""]",2647.2,"{\""seasonal\"": \""13%\""}",19313,0,"""Europe""" +2023-07-31,1878,1621,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",915.58,"{\""promo\"": \""29%\""}",143804,0,"""Asia""" +2024-08-15,1879,9695,"[\""Tablet\"", \""Charger\""]",4278.26,{},17209,1,"""South America""" +2024-02-27,1880,3198,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2963.59,{},224934,0,"""Africa""" +2024-02-05,1881,5769,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2899.99,{},167081,1,"""Europe""" +2024-02-14,1882,2464,"[\""Headphones\""]",2220.07,"{\""seasonal\"": \""16%\""}",8780,0,"""South America""" +2024-10-14,1883,6178,"[\""Tablet\"", \""Monitor\""]",3568.81,{},213138,0,"""North America""" +2024-01-10,1884,2526,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",244.15,{},92143,0,"""Europe""" +2024-10-12,1885,3304,"[\""Monitor\""]",4023.01,"{\""seasonal\"": \""21%\""}",174121,1,"""North America""" +2023-08-18,1886,241,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2657.64,{},273395,0,"""Africa""" +2023-10-25,1887,4574,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1473.47,{},138481,1,"""North America""" +2023-01-12,1888,6315,"[\""Headphones\"", \""Charger\""]",117.67,{},199390,0,"""Africa""" +2024-02-09,1889,7741,"[\""Keyboard\""]",308.44,{},97688,0,"""Europe""" +2023-06-14,1890,3745,"[\""Tablet\""]",4825.77,{},250594,0,"""North America""" +2024-11-08,1891,557,"[\""Phone\"", \""Tablet\""]",2725.65,{},167070,1,"""North America""" +2024-09-10,1892,624,"[\""Wireless Mouse\"", \""Laptop\""]",1377.58,"{\""loyalty\"": \""16%\""}",20482,0,"""Europe""" +2024-10-10,1893,2195,"[\""Phone\"", \""Charger\""]",3932.93,{},281986,1,"""Asia""" +2024-06-15,1894,300,"[\""Keyboard\"", \""Charger\""]",1533.35,{},257584,1,"""North America""" +2024-11-20,1895,222,"[\""Tablet\"", \""Charger\""]",1329.58,"{\""seasonal\"": \""20%\""}",236869,0,"""Europe""" +2023-08-01,1896,703,"[\""Phone\""]",886.96,{},137566,0,"""Europe""" +2023-01-17,1897,1798,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3501.57,{},253709,0,"""South America""" +2023-02-21,1898,2762,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3431.66,{},179717,1,"""Europe""" +2024-06-04,1899,6039,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3410.41,{},15850,0,"""Asia""" +2024-06-28,1900,7352,"[\""Monitor\"", \""Wireless Mouse\""]",3685.73,"{\""seasonal\"": \""11%\""}",90467,0,"""Asia""" +2023-10-07,1901,99,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1959.96,"{\"": \""17%\""}",115064,0,"""Africa""" +2024-04-29,1902,6161,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1547.87,"{\"": \""6%\""}",162820,1,"""South America""" +2024-07-15,1903,6268,"[\""Monitor\"", \""Tablet\""]",4930.91,"{\""seasonal\"": \""20%\""}",45764,0,"""North America""" +2023-09-14,1904,9644,"[\""Wireless Mouse\""]",2414.7,{},165652,0,"""North America""" +2024-05-03,1905,1194,"[\""Headphones\""]",537.06,{},204779,1,"""Asia""" +2023-10-31,1906,7840,"[\""Laptop\"", \""Keyboard\""]",358.31,"{\"": \""17%\""}",17278,1,"""Africa""" +2024-08-09,1907,9570,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",903.64,{},149586,1,"""Asia""" +2024-02-17,1908,7135,"[\""Charger\""]",657.64,"{\""promo\"": \""13%\""}",178773,1,"""Europe""" +2024-06-10,1909,7904,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1265.8,{},129060,0,"""North America""" +2023-07-14,1910,4442,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1438.89,{},3346,0,"""South America""" +2023-06-05,1911,7467,"[\""Tablet\"", \""Wireless Mouse\""]",802.55,"{\""loyalty\"": \""19%\""}",41927,1,"""Asia""" +2023-04-27,1912,1044,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3371.8,"{\"": \""29%\""}",79189,1,"""South America""" +2023-08-11,1913,1969,"[\""Tablet\"", \""Keyboard\""]",4467.85,"{\""loyalty\"": \""23%\""}",12581,1,"""North America""" +2023-07-14,1914,6619,"[\""Monitor\""]",3162.35,{},144411,0,"""Asia""" +2023-10-24,1915,7772,"[\""Phone\""]",4507.39,{},213753,1,"""North America""" +2024-09-16,1916,4067,"[\""Tablet\"", \""Headphones\""]",3315.13,{},66791,1,"""Asia""" +2023-03-13,1917,9591,"[\""Laptop\""]",1120.24,{},71012,1,"""Europe""" +2024-03-02,1918,2550,"[\""Keyboard\""]",2404.79,{},254397,1,"""North America""" +2023-05-21,1919,5128,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1387.3,"{\"": \""14%\""}",179514,1,"""Europe""" +2023-10-04,1920,749,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2356.71,{},130421,0,"""Africa""" +2024-12-04,1921,2054,"[\""Headphones\""]",2340.68,{},76359,1,"""Africa""" +2023-05-30,1922,5940,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3110.27,"{\""promo\"": \""18%\""}",120918,0,"""Europe""" +2023-11-03,1923,2870,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",101.02,"{\""seasonal\"": \""6%\""}",234286,0,"""Asia""" +2023-04-29,1924,5880,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3008.35,"{\""seasonal\"": \""23%\""}",177547,1,"""North America""" +2023-08-27,1925,588,"[\""Monitor\""]",4483.26,"{\""seasonal\"": \""14%\""}",89577,1,"""Europe""" +2023-08-20,1926,4714,"[\""Laptop\"", \""Phone\""]",1778.71,{},47602,0,"""Africa""" +2023-12-27,1927,4975,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1986.16,{},181685,0,"""Asia""" +2023-07-30,1928,2724,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1276.56,{},292872,1,"""Africa""" +2023-10-06,1929,4742,"[\""Charger\"", \""Wireless Mouse\""]",2053.49,{},88957,0,"""South America""" +2024-12-04,1930,5499,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1878.49,"{\""loyalty\"": \""21%\""}",78657,0,"""Asia""" +2024-12-30,1931,9757,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1332.26,{},23758,1,"""North America""" +2024-01-16,1932,3510,"[\""Monitor\"", \""Wireless Mouse\""]",3539.1,{},63154,1,"""South America""" +2023-05-19,1933,3346,"[\""Laptop\"", \""Tablet\""]",1918.55,"{\""loyalty\"": \""15%\""}",102666,1,"""Europe""" +2024-04-10,1934,6389,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4468.58,{},272714,0,"""Asia""" +2023-10-09,1935,4122,"[\""Charger\"", \""Monitor\""]",1015.44,{},131470,0,"""Asia""" +2023-08-06,1936,2591,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3022.36,"{\""promo\"": \""12%\""}",255440,0,"""South America""" +2024-11-14,1937,5190,"[\""Charger\"", \""Phone\""]",3646.39,"{\""loyalty\"": \""9%\""}",111305,0,"""North America""" +2024-04-29,1938,9272,"[\""Laptop\"", \""Charger\""]",3277.19,"{\""loyalty\"": \""15%\""}",13747,0,"""Asia""" +2024-01-29,1939,9128,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",567.23,{},129243,0,"""Africa""" +2023-08-25,1940,9338,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3544.21,"{\""loyalty\"": \""21%\""}",142002,0,"""South America""" +2024-11-02,1941,1958,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",73.13,"{\"": \""8%\""}",98852,0,"""Europe""" +2023-05-05,1942,3274,"[\""Tablet\""]",4427.37,{},176553,0,"""South America""" +2024-02-03,1943,2812,"[\""Keyboard\"", \""Laptop\""]",2201.58,"{\""loyalty\"": \""28%\""}",235969,1,"""South America""" +2023-09-17,1944,1113,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3455.37,{},170857,1,"""South America""" +2024-10-19,1945,2701,"[\""Laptop\"", \""Phone\""]",3189.9,"{\""loyalty\"": \""5%\""}",53046,0,"""Africa""" +2024-09-11,1946,8158,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2782.29,{},82298,0,"""North America""" +2023-03-17,1947,195,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1092.12,"{\""promo\"": \""18%\""}",260822,0,"""South America""" +2023-02-24,1948,8025,"[\""Tablet\"", \""Charger\""]",2722.85,"{\""promo\"": \""9%\""}",13596,0,"""Europe""" +2024-12-21,1949,9844,"[\""Headphones\"", \""Phone\""]",3226.55,"{\"": \""9%\""}",299860,1,"""South America""" +2024-04-01,1950,2332,"[\""Monitor\""]",3231.44,"{\""loyalty\"": \""27%\""}",188778,1,"""Asia""" +2024-10-12,1951,3445,"[\""Laptop\"", \""Phone\""]",2354.32,"{\""seasonal\"": \""7%\""}",178258,1,"""North America""" +2024-07-25,1952,8674,"[\""Charger\"", \""Keyboard\""]",777.1,"{\""promo\"": \""6%\""}",115059,0,"""Asia""" +2024-10-19,1953,1813,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4088.02,"{\"": \""17%\""}",207103,0,"""South America""" +2023-04-02,1954,2736,"[\""Laptop\""]",623.37,{},46943,1,"""South America""" +2024-08-17,1955,7376,"[\""Wireless Mouse\""]",2203.86,{},117178,1,"""Africa""" +2024-03-25,1956,7236,"[\""Tablet\""]",4625.96,{},8207,1,"""Asia""" +2023-01-25,1957,5531,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2688.42,{},294711,1,"""Asia""" +2024-03-02,1958,7146,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2028.4,{},283628,0,"""Africa""" +2024-03-14,1959,7442,"[\""Headphones\""]",4235.35,{},17582,0,"""Europe""" +2024-06-05,1960,2961,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",81.16,"{\""promo\"": \""12%\""}",184368,0,"""Africa""" +2024-10-23,1961,8523,"[\""Monitor\"", \""Phone\"", \""Charger\""]",898.45,"{\"": \""8%\""}",154816,0,"""Africa""" +2024-06-22,1962,6868,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4189.75,{},157569,1,"""Asia""" +2023-09-17,1963,8842,"[\""Charger\""]",4611.62,"{\""loyalty\"": \""10%\""}",142373,1,"""North America""" +2024-07-31,1964,5641,"[\""Charger\"", \""Laptop\""]",3474.68,{},233564,0,"""Asia""" +2024-08-10,1965,5358,"[\""Keyboard\""]",1500.95,"{\""promo\"": \""27%\""}",290950,1,"""South America""" +2023-09-11,1966,5195,"[\""Charger\""]",1986.18,"{\"": \""15%\""}",70070,0,"""Europe""" +2023-07-10,1967,7330,"[\""Phone\"", \""Monitor\""]",3639.95,"{\"": \""27%\""}",214394,0,"""Europe""" +2023-01-25,1968,9141,"[\""Charger\"", \""Keyboard\""]",3818.69,"{\""loyalty\"": \""5%\""}",26704,1,"""Asia""" +2023-06-05,1969,4477,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4362.86,{},267064,1,"""South America""" +2024-11-08,1970,4967,"[\""Tablet\""]",2768.71,"{\"": \""23%\""}",110264,1,"""Europe""" +2024-02-19,1971,9821,"[\""Tablet\"", \""Wireless Mouse\""]",4087.81,"{\""seasonal\"": \""24%\""}",36731,1,"""South America""" +2024-10-08,1972,1296,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1237.51,"{\""promo\"": \""14%\""}",10574,0,"""Africa""" +2024-01-18,1973,4693,"[\""Laptop\""]",3843.99,{},152770,1,"""Asia""" +2023-05-26,1974,2995,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4028.81,"{\"": \""12%\""}",71500,1,"""North America""" +2024-07-06,1975,2832,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3684.72,"{\""seasonal\"": \""28%\""}",173531,0,"""South America""" +2024-07-30,1976,5637,"[\""Phone\"", \""Laptop\""]",811.99,"{\"": \""8%\""}",25624,1,"""Asia""" +2024-12-08,1977,9282,"[\""Headphones\""]",4695.92,{},299016,0,"""Europe""" +2023-10-05,1978,4708,"[\""Keyboard\"", \""Monitor\""]",2095.76,{},219920,1,"""Africa""" +2023-01-11,1979,2594,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1804.6,{},182769,1,"""South America""" +2023-12-23,1980,5069,"[\""Wireless Mouse\"", \""Phone\""]",2509.16,{},280157,1,"""Asia""" +2024-08-27,1981,7966,"[\""Laptop\""]",522.76,"{\"": \""20%\""}",235741,0,"""South America""" +2023-11-11,1982,3812,"[\""Charger\""]",3778.32,"{\""promo\"": \""27%\""}",105654,1,"""South America""" +2023-10-10,1983,9205,"[\""Wireless Mouse\"", \""Laptop\""]",2390.27,{},292276,0,"""Asia""" +2024-07-09,1984,219,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1545.31,{},49226,0,"""Europe""" +2023-11-10,1985,267,"[\""Charger\"", \""Keyboard\""]",4360.64,{},197341,1,"""Africa""" +2023-01-26,1986,2319,"[\""Keyboard\""]",419.12,{},188707,0,"""North America""" +2023-06-26,1987,161,"[\""Tablet\"", \""Keyboard\""]",2309.84,{},234106,0,"""North America""" +2023-06-27,1988,4041,"[\""Headphones\"", \""Tablet\""]",3735.79,{},162265,0,"""Africa""" +2023-11-04,1989,6160,"[\""Headphones\""]",1304.84,"{\""promo\"": \""9%\""}",197195,0,"""Asia""" +2024-03-17,1990,3033,"[\""Laptop\""]",1522.51,{},65324,1,"""Africa""" +2023-05-22,1991,2175,"[\""Laptop\""]",1062.2,"{\""seasonal\"": \""24%\""}",53903,0,"""South America""" +2024-05-01,1992,9106,"[\""Headphones\""]",964.53,{},156492,0,"""Africa""" +2024-03-25,1993,9384,"[\""Phone\"", \""Headphones\""]",3523.97,{},78264,1,"""North America""" +2023-11-18,1994,1612,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3194.04,"{\""seasonal\"": \""20%\""}",36985,0,"""South America""" +2023-01-05,1995,8282,"[\""Headphones\""]",3788.62,"{\""promo\"": \""9%\""}",168143,1,"""Europe""" +2023-10-19,1996,1114,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4575.58,"{\""seasonal\"": \""18%\""}",154139,0,"""Asia""" +2023-08-14,1997,4006,"[\""Headphones\""]",2653.66,{},172177,1,"""Europe""" +2024-11-01,1998,6285,"[\""Monitor\""]",750.54,{},16141,0,"""North America""" +2024-02-05,1999,6424,"[\""Monitor\""]",2212.97,{},123818,1,"""North America""" +2024-05-02,2000,9954,"[\""Monitor\"", \""Laptop\""]",3026.3,{},170421,0,"""Africa""" +2024-04-09,2001,4478,"[\""Laptop\""]",4441.61,{},64978,1,"""North America""" +2023-01-10,2002,1185,"[\""Tablet\"", \""Laptop\""]",1429.09,{},206855,0,"""Africa""" +2024-04-08,2003,4377,"[\""Tablet\"", \""Keyboard\""]",2712.32,"{\""promo\"": \""30%\""}",215833,0,"""Asia""" +2023-08-12,2004,2101,"[\""Charger\"", \""Phone\"", \""Monitor\""]",251.47,{},140543,1,"""Europe""" +2024-08-02,2005,2247,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4377.19,"{\""loyalty\"": \""21%\""}",95991,1,"""Asia""" +2024-06-07,2006,6895,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1075.75,{},97686,1,"""Africa""" +2024-09-27,2007,1968,"[\""Phone\"", \""Charger\""]",3531.6,"{\""loyalty\"": \""12%\""}",11011,1,"""South America""" +2024-09-04,2008,1917,"[\""Charger\"", \""Tablet\""]",3793.55,"{\""loyalty\"": \""23%\""}",270669,0,"""South America""" +2024-01-14,2009,2242,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",599.94,{},237183,0,"""South America""" +2023-05-08,2010,8065,"[\""Monitor\"", \""Keyboard\""]",3779.94,{},176346,0,"""South America""" +2023-01-25,2011,3308,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4964.07,"{\""promo\"": \""14%\""}",246040,0,"""Europe""" +2024-10-10,2012,3866,"[\""Wireless Mouse\""]",1074.53,{},95623,1,"""Asia""" +2024-03-28,2013,9631,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1438.51,{},117997,0,"""South America""" +2023-11-23,2014,727,"[\""Charger\"", \""Phone\""]",3567.54,"{\""seasonal\"": \""29%\""}",75013,0,"""Asia""" +2023-06-02,2015,8566,"[\""Laptop\""]",448.43,{},198265,1,"""North America""" +2023-02-10,2016,8001,"[\""Headphones\"", \""Tablet\""]",4036.7,{},102688,0,"""Africa""" +2023-09-13,2017,646,"[\""Wireless Mouse\""]",2718.6,"{\""seasonal\"": \""13%\""}",148490,1,"""South America""" +2024-11-21,2018,5278,"[\""Wireless Mouse\"", \""Keyboard\""]",3739.6,{},98944,0,"""Asia""" +2023-02-11,2019,8349,"[\""Laptop\""]",2848.59,{},139959,1,"""Europe""" +2024-12-21,2020,3602,"[\""Laptop\""]",1990.81,"{\""seasonal\"": \""10%\""}",263255,1,"""Asia""" +2023-02-10,2021,943,"[\""Phone\""]",1863.49,"{\""promo\"": \""7%\""}",193329,1,"""South America""" +2023-12-25,2022,2238,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2147.64,{},121346,1,"""Africa""" +2023-07-27,2023,1614,"[\""Monitor\"", \""Wireless Mouse\""]",3628.59,{},205314,1,"""Asia""" +2024-02-27,2024,7228,"[\""Headphones\"", \""Monitor\""]",217.58,{},70865,1,"""South America""" +2023-02-10,2025,116,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3280.48,"{\"": \""13%\""}",197019,1,"""Africa""" +2023-02-11,2026,1844,"[\""Laptop\""]",4856.3,"{\""promo\"": \""20%\""}",79488,0,"""Asia""" +2023-05-15,2027,933,"[\""Charger\"", \""Laptop\""]",2192.82,{},136055,0,"""Europe""" +2023-12-14,2028,788,"[\""Keyboard\""]",2799.19,"{\"": \""25%\""}",211479,0,"""Europe""" +2024-04-06,2029,1947,"[\""Headphones\""]",3261.83,{},229936,0,"""Africa""" +2023-09-27,2030,6295,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",760.23,"{\""loyalty\"": \""13%\""}",92167,0,"""Asia""" +2024-06-12,2031,765,"[\""Tablet\"", \""Wireless Mouse\""]",4121.3,"{\""seasonal\"": \""22%\""}",13010,1,"""Europe""" +2024-08-20,2032,7058,"[\""Phone\""]",3096.88,"{\""loyalty\"": \""19%\""}",69367,0,"""South America""" +2023-02-26,2033,9613,"[\""Tablet\"", \""Laptop\""]",3557.68,{},164667,1,"""Europe""" +2024-05-24,2034,1659,"[\""Headphones\"", \""Monitor\""]",136.0,"{\""promo\"": \""19%\""}",252307,1,"""Asia""" +2023-03-06,2035,7086,"[\""Phone\""]",355.67,"{\""seasonal\"": \""11%\""}",163409,0,"""North America""" +2024-02-10,2036,1912,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2418.68,{},200380,0,"""North America""" +2024-08-06,2037,7740,"[\""Headphones\""]",154.97,{},98656,0,"""South America""" +2023-05-13,2038,8604,"[\""Tablet\""]",3219.37,{},170277,1,"""Europe""" +2024-05-31,2039,957,"[\""Charger\"", \""Tablet\""]",1903.56,{},43429,1,"""South America""" +2024-09-24,2040,3288,"[\""Monitor\""]",4389.44,"{\""promo\"": \""22%\""}",123286,1,"""Europe""" +2024-05-28,2041,9411,"[\""Tablet\"", \""Laptop\""]",2418.84,"{\""loyalty\"": \""16%\""}",14931,0,"""South America""" +2023-12-28,2042,6485,"[\""Charger\""]",3692.84,{},114757,0,"""Europe""" +2023-09-16,2043,5755,"[\""Phone\"", \""Monitor\""]",875.29,{},10522,0,"""South America""" +2024-05-22,2044,9763,"[\""Charger\"", \""Headphones\""]",4361.55,"{\""loyalty\"": \""19%\""}",44430,1,"""South America""" +2024-08-30,2045,428,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2228.39,"{\"": \""9%\""}",250035,0,"""North America""" +2023-05-21,2046,4989,"[\""Phone\"", \""Tablet\""]",1900.76,{},10076,1,"""South America""" +2023-05-25,2047,3499,"[\""Laptop\""]",901.7,"{\""loyalty\"": \""25%\""}",71075,0,"""North America""" +2023-04-03,2048,9642,"[\""Tablet\""]",1775.35,{},8730,0,"""North America""" +2024-07-21,2049,3430,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4662.08,"{\""seasonal\"": \""26%\""}",98292,0,"""South America""" +2024-03-07,2050,9194,"[\""Phone\"", \""Laptop\""]",2857.87,"{\""loyalty\"": \""21%\""}",176101,0,"""Africa""" +2023-10-12,2051,6958,"[\""Tablet\"", \""Keyboard\""]",4406.77,"{\""loyalty\"": \""28%\""}",246996,1,"""South America""" +2023-11-05,2052,6073,"[\""Keyboard\"", \""Tablet\""]",4391.43,{},232550,0,"""Europe""" +2024-11-07,2053,2959,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2213.71,"{\"": \""12%\""}",88336,1,"""Europe""" +2023-07-25,2054,4223,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",920.37,"{\""promo\"": \""21%\""}",11744,1,"""South America""" +2024-03-28,2055,409,"[\""Keyboard\"", \""Laptop\""]",2765.05,{},42265,0,"""Africa""" +2024-07-19,2056,6623,"[\""Phone\""]",1189.14,"{\""loyalty\"": \""16%\""}",252520,0,"""Asia""" +2024-11-13,2057,1070,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1772.16,"{\"": \""28%\""}",133115,0,"""North America""" +2023-08-04,2058,5312,"[\""Tablet\"", \""Monitor\""]",4176.57,"{\""promo\"": \""29%\""}",190024,1,"""Asia""" +2023-02-18,2059,4399,"[\""Keyboard\"", \""Charger\""]",156.03,"{\""loyalty\"": \""11%\""}",143194,1,"""Asia""" +2024-02-12,2060,3898,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3988.69,"{\""seasonal\"": \""27%\""}",229142,0,"""Africa""" +2023-02-15,2061,1812,"[\""Tablet\"", \""Phone\""]",4382.65,{},114951,1,"""North America""" +2024-11-08,2062,2468,"[\""Wireless Mouse\""]",1010.47,{},191186,1,"""Europe""" +2023-06-04,2063,3672,"[\""Charger\"", \""Headphones\""]",3662.48,{},21229,0,"""Africa""" +2024-09-06,2064,3518,"[\""Laptop\""]",1079.11,"{\"": \""17%\""}",286726,1,"""Europe""" +2023-12-05,2065,4932,"[\""Wireless Mouse\""]",2164.9,{},92402,0,"""Asia""" +2023-04-01,2066,2604,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3277.8,"{\""loyalty\"": \""28%\""}",192800,0,"""Europe""" +2024-12-29,2067,8051,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1198.9,{},195573,1,"""South America""" +2023-09-09,2068,3260,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1356.59,"{\"": \""10%\""}",66138,1,"""South America""" +2024-07-17,2069,2648,"[\""Tablet\"", \""Headphones\""]",1399.63,"{\""promo\"": \""10%\""}",112751,0,"""Africa""" +2023-12-31,2070,3118,"[\""Laptop\"", \""Phone\""]",274.13,"{\""loyalty\"": \""13%\""}",234519,1,"""Asia""" +2024-09-03,2071,1249,"[\""Monitor\""]",3766.72,"{\""loyalty\"": \""24%\""}",197007,1,"""Asia""" +2024-12-24,2072,2862,"[\""Laptop\"", \""Monitor\""]",884.6,{},135273,1,"""Asia""" +2023-12-18,2073,8134,"[\""Phone\""]",2009.32,"{\"": \""29%\""}",89125,1,"""Europe""" +2024-12-19,2074,9164,"[\""Phone\""]",1530.85,"{\""loyalty\"": \""6%\""}",170254,0,"""Asia""" +2023-12-06,2075,2029,"[\""Charger\"", \""Monitor\"", \""Phone\""]",280.93,{},231347,0,"""North America""" +2023-04-03,2076,6825,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1064.82,{},289445,0,"""Africa""" +2023-04-30,2077,3799,"[\""Tablet\"", \""Keyboard\""]",3907.48,"{\"": \""6%\""}",201079,1,"""North America""" +2023-10-20,2078,6820,"[\""Monitor\"", \""Headphones\""]",898.3,{},277319,0,"""Europe""" +2023-02-19,2079,5847,"[\""Laptop\"", \""Monitor\""]",915.72,{},268810,1,"""Europe""" +2023-01-02,2080,4905,"[\""Charger\""]",3700.06,"{\""loyalty\"": \""22%\""}",194546,0,"""Europe""" +2024-05-25,2081,4046,"[\""Wireless Mouse\"", \""Laptop\""]",952.01,{},55627,0,"""Asia""" +2023-07-13,2082,8567,"[\""Laptop\""]",4191.8,"{\"": \""21%\""}",51590,0,"""South America""" +2023-12-17,2083,3691,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1249.52,"{\"": \""6%\""}",268605,0,"""North America""" +2024-01-08,2084,6690,"[\""Tablet\""]",2720.0,"{\""seasonal\"": \""17%\""}",3230,0,"""South America""" +2023-07-06,2085,9337,"[\""Monitor\""]",3466.23,"{\""seasonal\"": \""28%\""}",8943,0,"""North America""" +2024-02-16,2086,532,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1074.18,{},264324,1,"""South America""" +2024-01-06,2087,5166,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3805.85,"{\""seasonal\"": \""21%\""}",176940,1,"""South America""" +2023-07-20,2088,7255,"[\""Wireless Mouse\"", \""Charger\""]",4697.32,{},274599,0,"""Africa""" +2024-07-04,2089,4924,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1614.86,"{\""promo\"": \""6%\""}",241086,0,"""Europe""" +2024-03-14,2090,2610,"[\""Tablet\""]",1358.9,{},165243,0,"""South America""" +2024-02-14,2091,5555,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1719.3,"{\""promo\"": \""19%\""}",70040,1,"""South America""" +2024-03-23,2092,8597,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3240.28,{},287635,1,"""South America""" +2023-06-17,2093,9602,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1703.73,"{\""loyalty\"": \""29%\""}",116452,1,"""North America""" +2023-01-14,2094,6638,"[\""Keyboard\"", \""Wireless Mouse\""]",3367.82,"{\""loyalty\"": \""17%\""}",207240,1,"""North America""" +2023-05-16,2095,7813,"[\""Monitor\"", \""Tablet\""]",2159.96,{},118158,0,"""Africa""" +2023-11-18,2096,9411,"[\""Laptop\"", \""Keyboard\""]",2441.18,{},109713,1,"""Africa""" +2024-03-22,2097,1295,"[\""Wireless Mouse\""]",2801.63,{},185019,1,"""North America""" +2023-09-26,2098,3574,"[\""Phone\""]",3742.32,"{\""seasonal\"": \""21%\""}",263131,1,"""South America""" +2024-07-03,2099,8893,"[\""Monitor\"", \""Headphones\""]",4264.28,{},61457,0,"""South America""" +2023-06-08,2100,2247,"[\""Laptop\""]",571.04,{},268158,1,"""Asia""" +2023-08-25,2101,4447,"[\""Charger\""]",4547.9,{},41660,0,"""North America""" +2023-05-29,2102,7340,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4107.69,{},118817,1,"""North America""" +2023-12-25,2103,7473,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4616.28,"{\""seasonal\"": \""30%\""}",23804,0,"""Europe""" +2024-04-24,2104,3482,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1793.96,{},242264,0,"""Europe""" +2024-07-03,2105,8437,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2127.11,"{\"": \""21%\""}",298095,0,"""South America""" +2024-03-15,2106,7392,"[\""Charger\""]",2081.89,{},72587,1,"""Asia""" +2023-05-02,2107,2974,"[\""Phone\""]",1577.34,{},180641,1,"""Africa""" +2023-12-04,2108,7476,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3696.41,{},278483,0,"""Asia""" +2023-05-07,2109,9285,"[\""Tablet\"", \""Phone\""]",4912.82,{},299876,0,"""Asia""" +2024-03-13,2110,9218,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1997.78,"{\""loyalty\"": \""7%\""}",51645,1,"""North America""" +2024-01-18,2111,1632,"[\""Laptop\"", \""Monitor\""]",249.12,"{\""seasonal\"": \""11%\""}",11719,0,"""Europe""" +2023-02-22,2112,5447,"[\""Headphones\"", \""Charger\""]",3214.21,{},135478,1,"""Europe""" +2023-10-24,2113,2576,"[\""Wireless Mouse\"", \""Headphones\""]",3457.59,{},1459,1,"""Asia""" +2023-09-22,2114,1093,"[\""Phone\"", \""Laptop\""]",3684.24,{},21485,0,"""North America""" +2023-12-15,2115,7781,"[\""Headphones\""]",645.92,{},24193,0,"""Africa""" +2023-02-09,2116,1356,"[\""Wireless Mouse\"", \""Headphones\""]",106.06,{},114198,1,"""Europe""" +2023-08-18,2117,3262,"[\""Wireless Mouse\""]",2590.64,{},193261,1,"""South America""" +2024-09-02,2118,1740,"[\""Wireless Mouse\"", \""Keyboard\""]",2609.59,{},193223,0,"""Asia""" +2024-09-29,2119,9927,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1799.47,{},173479,1,"""South America""" +2024-02-11,2120,7631,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1173.16,{},141216,0,"""Africa""" +2023-06-04,2121,8501,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1950.71,"{\""promo\"": \""15%\""}",279237,1,"""North America""" +2023-04-10,2122,3336,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1172.41,"{\""seasonal\"": \""16%\""}",24519,0,"""South America""" +2024-01-26,2123,2371,"[\""Keyboard\""]",1889.22,"{\""seasonal\"": \""5%\""}",71889,1,"""Europe""" +2024-05-04,2124,6713,"[\""Headphones\""]",383.82,{},76377,1,"""Asia""" +2024-11-15,2125,9751,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4722.76,{},69401,0,"""North America""" +2023-05-18,2126,7332,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2354.43,"{\""promo\"": \""26%\""}",128860,1,"""North America""" +2024-03-09,2127,2146,"[\""Wireless Mouse\"", \""Keyboard\""]",2893.43,"{\"": \""15%\""}",188321,0,"""North America""" +2023-05-14,2128,4627,"[\""Headphones\"", \""Laptop\""]",3809.9,{},231646,0,"""Europe""" +2023-04-22,2129,983,"[\""Keyboard\""]",1619.49,{},53268,1,"""South America""" +2024-03-09,2130,3142,"[\""Laptop\""]",4222.78,"{\""seasonal\"": \""5%\""}",120944,1,"""South America""" +2023-12-27,2131,6572,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2898.58,{},30601,1,"""North America""" +2023-09-15,2132,1279,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2686.38,{},97953,1,"""North America""" +2023-08-10,2133,1325,"[\""Wireless Mouse\""]",3781.35,{},15746,1,"""Africa""" +2023-09-30,2134,201,"[\""Wireless Mouse\""]",1844.74,{},19514,1,"""Europe""" +2023-09-10,2135,2857,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2028.29,{},170869,0,"""North America""" +2023-06-22,2136,1689,"[\""Wireless Mouse\"", \""Phone\""]",1853.58,"{\""seasonal\"": \""19%\""}",173695,0,"""Europe""" +2024-01-21,2137,4695,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2148.95,{},159773,0,"""Europe""" +2024-01-01,2138,2288,"[\""Tablet\""]",4190.24,"{\""seasonal\"": \""30%\""}",75947,0,"""Europe""" +2024-07-09,2139,6819,"[\""Monitor\"", \""Laptop\""]",3580.75,{},103590,1,"""Europe""" +2024-04-09,2140,2959,"[\""Tablet\"", \""Monitor\""]",964.92,"{\"": \""11%\""}",142165,0,"""Europe""" +2024-09-24,2141,665,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4286.81,{},241613,0,"""Asia""" +2023-03-10,2142,6048,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",159.27,"{\""loyalty\"": \""13%\""}",296137,1,"""Europe""" +2024-04-25,2143,9535,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",844.08,"{\"": \""10%\""}",83506,0,"""Europe""" +2024-04-13,2144,2593,"[\""Wireless Mouse\"", \""Charger\""]",3018.31,"{\"": \""12%\""}",101556,0,"""South America""" +2023-05-18,2145,8076,"[\""Laptop\""]",3503.93,{},263680,0,"""Europe""" +2023-01-23,2146,3590,"[\""Phone\"", \""Keyboard\""]",2746.16,{},48437,0,"""South America""" +2024-01-24,2147,7404,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",874.36,"{\""seasonal\"": \""13%\""}",262243,1,"""Asia""" +2024-09-23,2148,8430,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4169.17,{},157387,0,"""South America""" +2024-02-03,2149,134,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4757.47,{},296910,1,"""South America""" +2023-09-05,2150,4736,"[\""Phone\"", \""Tablet\""]",536.94,"{\""promo\"": \""13%\""}",11921,1,"""Europe""" +2024-03-27,2151,3983,"[\""Wireless Mouse\""]",3395.15,"{\""promo\"": \""19%\""}",282926,0,"""Asia""" +2023-10-31,2152,7669,"[\""Laptop\"", \""Headphones\""]",1995.13,{},13803,1,"""South America""" +2023-12-06,2153,4928,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3809.09,"{\""promo\"": \""20%\""}",269888,0,"""South America""" +2023-06-15,2154,918,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4217.85,{},265049,0,"""South America""" +2024-04-24,2155,8733,"[\""Wireless Mouse\""]",708.65,{},256228,1,"""Africa""" +2023-03-12,2156,9221,"[\""Headphones\"", \""Tablet\""]",1358.08,{},67253,1,"""South America""" +2024-12-17,2157,552,"[\""Tablet\""]",1465.51,{},185075,0,"""Europe""" +2023-12-19,2158,3907,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2147.53,{},276766,1,"""Africa""" +2024-07-16,2159,5063,"[\""Phone\""]",611.16,"{\"": \""12%\""}",251372,0,"""Asia""" +2024-09-22,2160,4443,"[\""Headphones\"", \""Tablet\""]",839.89,"{\"": \""6%\""}",176967,0,"""Asia""" +2023-06-25,2161,1320,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2979.58,{},234502,1,"""South America""" +2023-07-31,2162,3935,"[\""Tablet\"", \""Monitor\""]",2176.58,{},162528,0,"""Africa""" +2024-10-23,2163,3144,"[\""Charger\""]",4769.78,"{\"": \""25%\""}",120591,1,"""Europe""" +2024-08-15,2164,665,"[\""Tablet\"", \""Laptop\""]",4251.28,{},90420,0,"""South America""" +2024-09-05,2165,60,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2972.19,"{\""promo\"": \""29%\""}",224895,1,"""South America""" +2024-03-14,2166,4637,"[\""Laptop\""]",1685.95,"{\"": \""21%\""}",4446,0,"""Africa""" +2023-11-26,2167,1946,"[\""Laptop\""]",1652.78,{},34833,0,"""North America""" +2023-02-08,2168,4221,"[\""Tablet\""]",2936.65,"{\""seasonal\"": \""16%\""}",241173,0,"""Europe""" +2023-01-29,2169,1902,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1388.85,"{\""seasonal\"": \""30%\""}",28992,1,"""South America""" +2023-06-20,2170,9127,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",535.59,{},195811,1,"""North America""" +2024-05-29,2171,655,"[\""Tablet\""]",359.37,{},104033,0,"""Asia""" +2023-01-31,2172,62,"[\""Charger\"", \""Laptop\""]",4663.69,"{\""promo\"": \""21%\""}",124038,0,"""Europe""" +2024-03-18,2173,6097,"[\""Monitor\""]",3879.28,{},138844,1,"""South America""" +2024-12-27,2174,6009,"[\""Monitor\""]",2261.24,{},41239,0,"""Europe""" +2023-01-03,2175,5788,"[\""Headphones\"", \""Laptop\""]",4329.79,"{\""seasonal\"": \""29%\""}",35004,0,"""Asia""" +2023-12-03,2176,1086,"[\""Monitor\"", \""Tablet\""]",3301.93,{},253637,1,"""North America""" +2023-04-14,2177,7128,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1361.85,"{\""loyalty\"": \""7%\""}",263491,1,"""Asia""" +2023-03-24,2178,1356,"[\""Phone\""]",3990.02,"{\"": \""15%\""}",141028,0,"""North America""" +2024-05-24,2179,9868,"[\""Headphones\""]",2696.12,{},187004,1,"""North America""" +2024-11-28,2180,5903,"[\""Keyboard\"", \""Wireless Mouse\""]",743.9,{},143102,1,"""Europe""" +2023-11-04,2181,8567,"[\""Monitor\"", \""Wireless Mouse\""]",154.3,{},177306,0,"""Europe""" +2023-11-16,2182,3031,"[\""Keyboard\""]",2776.86,"{\"": \""5%\""}",162557,1,"""Europe""" +2023-09-28,2183,3699,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4951.15,"{\"": \""21%\""}",206467,1,"""Africa""" +2024-09-14,2184,7065,"[\""Wireless Mouse\""]",1977.49,{},150954,1,"""North America""" +2023-03-20,2185,6811,"[\""Phone\"", \""Tablet\""]",4805.0,"{\""seasonal\"": \""24%\""}",207734,0,"""North America""" +2024-06-20,2186,4236,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",874.12,"{\""loyalty\"": \""30%\""}",188625,0,"""North America""" +2023-04-24,2187,7902,"[\""Monitor\"", \""Wireless Mouse\""]",4392.83,"{\"": \""27%\""}",235239,1,"""North America""" +2024-12-26,2188,372,"[\""Charger\"", \""Phone\""]",638.85,{},202498,0,"""Africa""" +2024-10-27,2189,9550,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3560.65,{},268304,1,"""Africa""" +2024-12-14,2190,1608,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1665.42,"{\""seasonal\"": \""22%\""}",230133,1,"""South America""" +2023-01-20,2191,494,"[\""Charger\"", \""Tablet\""]",4962.0,"{\""seasonal\"": \""30%\""}",148245,0,"""North America""" +2023-02-28,2192,3336,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2229.95,{},94644,1,"""Africa""" +2024-03-12,2193,9008,"[\""Laptop\"", \""Charger\""]",1245.85,"{\""seasonal\"": \""26%\""}",3072,0,"""North America""" +2024-11-25,2194,4801,"[\""Monitor\""]",536.51,"{\"": \""22%\""}",284575,0,"""Asia""" +2023-02-26,2195,8408,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2433.86,"{\""seasonal\"": \""17%\""}",97367,0,"""North America""" +2023-10-12,2196,1903,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1197.69,"{\""promo\"": \""15%\""}",193349,1,"""Africa""" +2023-12-14,2197,9853,"[\""Phone\"", \""Laptop\""]",3668.57,{},84791,1,"""South America""" +2023-05-31,2198,6097,"[\""Phone\""]",1436.89,{},42218,0,"""South America""" +2024-09-19,2199,8741,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2787.64,{},25886,0,"""South America""" +2023-10-01,2200,1844,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1547.53,"{\""seasonal\"": \""8%\""}",18625,1,"""Africa""" +2023-04-10,2201,8644,"[\""Keyboard\"", \""Headphones\""]",1314.13,{},85977,1,"""Africa""" +2023-03-11,2202,9794,"[\""Keyboard\""]",3887.93,{},274672,0,"""Europe""" +2023-02-15,2203,6755,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4719.5,{},191397,0,"""North America""" +2023-11-26,2204,5638,"[\""Wireless Mouse\""]",3602.82,{},156978,0,"""Africa""" +2024-09-17,2205,5008,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2461.0,{},230922,1,"""South America""" +2024-05-24,2206,2936,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3476.0,"{\""seasonal\"": \""10%\""}",265173,1,"""Asia""" +2024-05-18,2207,638,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1440.75,"{\"": \""19%\""}",116949,1,"""Europe""" +2024-03-05,2208,5852,"[\""Monitor\"", \""Charger\""]",319.48,"{\""loyalty\"": \""30%\""}",76244,1,"""Europe""" +2023-12-06,2209,5069,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",346.99,{},153855,1,"""North America""" +2024-01-07,2210,2251,"[\""Tablet\"", \""Headphones\""]",2329.76,"{\""seasonal\"": \""10%\""}",56771,1,"""North America""" +2023-04-16,2211,2848,"[\""Headphones\"", \""Keyboard\""]",1720.31,{},258535,0,"""Asia""" +2024-11-21,2212,9312,"[\""Keyboard\""]",4429.24,{},287763,1,"""Africa""" +2023-10-30,2213,2136,"[\""Wireless Mouse\"", \""Phone\""]",4423.95,{},222821,1,"""Europe""" +2023-01-12,2214,1419,"[\""Laptop\""]",2549.91,"{\""promo\"": \""19%\""}",223919,1,"""Europe""" +2023-04-27,2215,147,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3809.57,"{\"": \""22%\""}",139523,0,"""Asia""" +2024-12-27,2216,2203,"[\""Monitor\""]",1724.23,"{\""loyalty\"": \""22%\""}",81788,0,"""South America""" +2024-04-02,2217,8549,"[\""Wireless Mouse\""]",2466.86,{},181123,1,"""Asia""" +2024-04-10,2218,6343,"[\""Wireless Mouse\"", \""Charger\""]",79.32,"{\""loyalty\"": \""24%\""}",25585,1,"""Africa""" +2023-03-18,2219,8526,"[\""Monitor\""]",1140.85,"{\""promo\"": \""20%\""}",290244,0,"""Asia""" +2023-09-11,2220,5057,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1522.7,"{\""loyalty\"": \""13%\""}",72995,0,"""North America""" +2024-01-06,2221,7359,"[\""Phone\"", \""Headphones\""]",4770.35,"{\""promo\"": \""8%\""}",83848,0,"""South America""" +2023-06-30,2222,1209,"[\""Monitor\""]",3747.42,"{\""loyalty\"": \""10%\""}",54919,0,"""Africa""" +2024-09-22,2223,2450,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3348.64,"{\"": \""17%\""}",92680,0,"""Asia""" +2023-11-10,2224,8678,"[\""Keyboard\"", \""Laptop\""]",514.58,"{\""seasonal\"": \""24%\""}",147670,0,"""Asia""" +2023-04-23,2225,7110,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4305.57,{},45943,1,"""Europe""" +2023-06-04,2226,9900,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1396.14,{},204062,1,"""North America""" +2024-09-10,2227,9809,"[\""Headphones\""]",827.73,"{\""loyalty\"": \""19%\""}",65876,1,"""Europe""" +2023-08-06,2228,4405,"[\""Tablet\"", \""Phone\""]",1491.39,{},114933,0,"""Europe""" +2023-05-08,2229,6675,"[\""Phone\"", \""Laptop\""]",2842.04,{},262748,0,"""North America""" +2024-01-08,2230,2723,"[\""Charger\""]",896.23,"{\""promo\"": \""21%\""}",136896,1,"""Europe""" +2024-09-16,2231,7257,"[\""Laptop\"", \""Monitor\""]",2308.58,"{\""loyalty\"": \""17%\""}",204011,1,"""Asia""" +2024-07-24,2232,2591,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4435.16,"{\""seasonal\"": \""12%\""}",296160,1,"""South America""" +2024-03-15,2233,1209,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4863.93,{},4458,1,"""Europe""" +2023-10-13,2234,2854,"[\""Tablet\"", \""Wireless Mouse\""]",242.25,"{\""promo\"": \""26%\""}",182873,1,"""Africa""" +2024-07-26,2235,6809,"[\""Headphones\"", \""Monitor\""]",698.65,"{\""seasonal\"": \""23%\""}",68840,0,"""North America""" +2024-04-18,2236,8572,"[\""Tablet\""]",1854.33,{},62785,1,"""South America""" +2023-02-07,2237,24,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1894.73,{},207276,1,"""Asia""" +2024-09-30,2238,2643,"[\""Monitor\""]",624.68,"{\"": \""30%\""}",270930,1,"""North America""" +2024-05-20,2239,2809,"[\""Keyboard\"", \""Phone\""]",4609.07,{},27916,0,"""Africa""" +2024-03-29,2240,2647,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4142.79,{},60740,1,"""Africa""" +2023-04-18,2241,1360,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3589.32,{},4065,0,"""Asia""" +2023-03-01,2242,7596,"[\""Monitor\""]",3907.79,"{\""loyalty\"": \""29%\""}",277554,1,"""Africa""" +2024-01-22,2243,4213,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2826.5,"{\""seasonal\"": \""24%\""}",141817,0,"""Africa""" +2024-06-02,2244,6201,"[\""Phone\"", \""Monitor\""]",3929.33,"{\"": \""11%\""}",41586,0,"""South America""" +2024-09-22,2245,8107,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",865.07,{},156864,0,"""Asia""" +2024-07-06,2246,1395,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",288.79,{},83250,0,"""North America""" +2023-03-10,2247,6002,"[\""Monitor\""]",1496.73,{},48244,1,"""Asia""" +2023-09-07,2248,7602,"[\""Phone\"", \""Wireless Mouse\""]",2009.73,{},85948,0,"""South America""" +2023-02-20,2249,1046,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2174.87,{},256639,1,"""North America""" +2023-12-04,2250,2910,"[\""Phone\"", \""Monitor\""]",129.98,{},164928,1,"""Asia""" +2023-09-30,2251,7797,"[\""Laptop\"", \""Headphones\""]",1516.16,{},217420,1,"""Europe""" +2024-07-12,2252,3582,"[\""Headphones\"", \""Wireless Mouse\""]",2149.66,{},204760,1,"""North America""" +2024-11-24,2253,9427,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",904.22,"{\"": \""9%\""}",122041,1,"""Asia""" +2023-03-23,2254,134,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2297.42,"{\""loyalty\"": \""22%\""}",232828,1,"""South America""" +2024-02-16,2255,4273,"[\""Headphones\""]",1473.81,"{\""promo\"": \""24%\""}",264612,1,"""South America""" +2024-08-23,2256,1098,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4790.8,"{\""loyalty\"": \""28%\""}",34012,0,"""Asia""" +2023-07-24,2257,7330,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",873.01,{},209927,1,"""Asia""" +2024-06-22,2258,8958,"[\""Charger\"", \""Wireless Mouse\""]",1590.77,{},97785,0,"""South America""" +2023-01-30,2259,8912,"[\""Phone\"", \""Headphones\""]",284.39,"{\""promo\"": \""29%\""}",212713,0,"""Asia""" +2023-05-21,2260,5190,"[\""Charger\"", \""Wireless Mouse\""]",422.86,"{\""loyalty\"": \""23%\""}",74872,0,"""Europe""" +2024-12-30,2261,5913,"[\""Phone\"", \""Charger\""]",3542.67,"{\""seasonal\"": \""10%\""}",204641,1,"""Africa""" +2023-09-26,2262,2461,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4553.21,{},205588,0,"""North America""" +2024-07-06,2263,1306,"[\""Phone\""]",1922.75,"{\""loyalty\"": \""8%\""}",201861,1,"""Europe""" +2024-07-19,2264,1434,"[\""Keyboard\""]",952.02,{},137900,1,"""Europe""" +2024-10-03,2265,5226,"[\""Charger\"", \""Tablet\""]",4993.86,{},228547,1,"""Africa""" +2023-07-27,2266,5217,"[\""Laptop\""]",2657.98,"{\"": \""14%\""}",210336,1,"""Europe""" +2024-11-28,2267,7756,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3390.91,"{\""promo\"": \""16%\""}",44902,1,"""Africa""" +2023-05-21,2268,9665,"[\""Charger\"", \""Monitor\""]",3281.01,"{\"": \""16%\""}",94049,1,"""Africa""" +2023-04-03,2269,9959,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4561.45,"{\""loyalty\"": \""9%\""}",104310,1,"""Africa""" +2024-12-17,2270,190,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3524.41,"{\"": \""11%\""}",287927,1,"""Africa""" +2024-07-30,2271,9463,"[\""Monitor\"", \""Phone\""]",906.43,{},15427,1,"""North America""" +2024-03-18,2272,8746,"[\""Phone\"", \""Charger\"", \""Tablet\""]",717.75,{},257948,0,"""North America""" +2024-09-17,2273,1043,"[\""Tablet\""]",2928.65,"{\""promo\"": \""22%\""}",109912,1,"""South America""" +2024-12-30,2274,2460,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",975.21,{},171330,0,"""Africa""" +2023-10-21,2275,8447,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1007.26,{},51834,0,"""South America""" +2023-09-08,2276,3848,"[\""Tablet\""]",2916.07,{},123219,1,"""Asia""" +2023-11-30,2277,7817,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3665.86,"{\""promo\"": \""19%\""}",140593,1,"""Africa""" +2024-02-13,2278,7968,"[\""Tablet\"", \""Headphones\""]",2534.13,{},142764,0,"""Asia""" +2023-12-20,2279,1644,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3886.28,{},89571,0,"""North America""" +2023-03-20,2280,7260,"[\""Wireless Mouse\""]",286.98,{},280021,1,"""South America""" +2024-02-05,2281,4469,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4795.5,"{\""seasonal\"": \""17%\""}",157144,0,"""Asia""" +2023-05-22,2282,3742,"[\""Laptop\""]",2068.13,{},214632,1,"""North America""" +2023-11-19,2283,1803,"[\""Keyboard\"", \""Headphones\""]",648.22,{},29681,0,"""Europe""" +2023-10-12,2284,8580,"[\""Keyboard\""]",2309.73,{},151683,0,"""South America""" +2024-04-27,2285,9164,"[\""Monitor\""]",4078.67,"{\"": \""29%\""}",141138,1,"""Africa""" +2024-12-12,2286,4356,"[\""Laptop\""]",3430.29,"{\""promo\"": \""27%\""}",159279,0,"""North America""" +2024-02-09,2287,5272,"[\""Monitor\""]",3833.83,"{\""loyalty\"": \""24%\""}",199823,0,"""Africa""" +2023-04-05,2288,6486,"[\""Tablet\"", \""Monitor\""]",2973.16,{},47702,0,"""Europe""" +2024-11-06,2289,4299,"[\""Headphones\""]",294.9,"{\""loyalty\"": \""11%\""}",93635,1,"""Europe""" +2023-01-26,2290,7859,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3623.24,{},233143,1,"""Asia""" +2024-09-30,2291,3915,"[\""Phone\""]",1278.67,"{\"": \""12%\""}",27410,1,"""Asia""" +2024-08-10,2292,7929,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2171.08,"{\""seasonal\"": \""27%\""}",54814,0,"""North America""" +2024-12-22,2293,8410,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",686.3,"{\""loyalty\"": \""16%\""}",171365,1,"""Africa""" +2023-05-21,2294,2300,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4997.67,"{\""seasonal\"": \""24%\""}",266802,0,"""North America""" +2024-07-28,2295,8104,"[\""Monitor\""]",213.35,{},5591,0,"""South America""" +2023-08-23,2296,8007,"[\""Monitor\""]",4597.54,{},60239,0,"""South America""" +2024-11-22,2297,3516,"[\""Keyboard\""]",1093.37,{},111891,0,"""Europe""" +2023-02-07,2298,8782,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4076.57,{},270712,0,"""South America""" +2024-04-05,2299,1813,"[\""Monitor\"", \""Wireless Mouse\""]",324.98,"{\"": \""14%\""}",39040,0,"""North America""" +2024-11-10,2300,6517,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4943.83,{},149629,1,"""South America""" +2024-03-29,2301,4385,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2469.4,{},46871,1,"""North America""" +2023-03-25,2302,882,"[\""Tablet\"", \""Monitor\""]",4892.39,"{\""promo\"": \""5%\""}",201759,1,"""North America""" +2023-08-20,2303,7709,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1883.5,{},183692,0,"""North America""" +2023-08-10,2304,3698,"[\""Laptop\"", \""Monitor\""]",905.46,{},181827,0,"""Africa""" +2024-11-26,2305,5856,"[\""Monitor\"", \""Laptop\""]",1189.39,{},1019,0,"""Africa""" +2024-11-13,2306,7147,"[\""Laptop\""]",1540.08,"{\""loyalty\"": \""22%\""}",49537,1,"""Asia""" +2024-06-05,2307,1165,"[\""Phone\"", \""Headphones\""]",3995.96,"{\""promo\"": \""18%\""}",283188,0,"""Europe""" +2023-08-13,2308,5040,"[\""Keyboard\"", \""Wireless Mouse\""]",546.35,{},134521,1,"""Asia""" +2024-01-24,2309,1591,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1090.39,{},150238,0,"""Asia""" +2024-01-23,2310,9561,"[\""Headphones\""]",116.91,"{\""loyalty\"": \""9%\""}",287566,1,"""Europe""" +2023-02-12,2311,8793,"[\""Laptop\""]",4520.06,{},99969,0,"""Asia""" +2023-09-02,2312,1246,"[\""Charger\""]",4757.94,"{\"": \""11%\""}",122326,1,"""South America""" +2023-10-21,2313,7805,"[\""Tablet\""]",3098.35,{},132822,0,"""Asia""" +2024-03-05,2314,9041,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1801.15,"{\"": \""10%\""}",159342,0,"""Africa""" +2023-10-03,2315,8770,"[\""Laptop\""]",2195.61,"{\"": \""28%\""}",179006,0,"""Africa""" +2024-06-30,2316,3734,"[\""Monitor\"", \""Charger\""]",816.99,{},89989,0,"""Asia""" +2024-06-26,2317,5260,"[\""Headphones\"", \""Laptop\""]",2784.3,{},102063,0,"""Asia""" +2023-11-18,2318,4219,"[\""Wireless Mouse\"", \""Keyboard\""]",3653.93,{},297187,1,"""North America""" +2024-08-06,2319,2255,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1240.88,{},282418,0,"""North America""" +2023-01-15,2320,9356,"[\""Monitor\""]",417.59,{},229640,1,"""Africa""" +2024-12-04,2321,4105,"[\""Laptop\""]",595.5,{},164288,0,"""Asia""" +2023-03-10,2322,2710,"[\""Tablet\"", \""Headphones\""]",1336.38,"{\""promo\"": \""30%\""}",69818,1,"""South America""" +2023-11-20,2323,456,"[\""Laptop\""]",2445.69,{},96135,1,"""Europe""" +2023-01-01,2324,6572,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4464.4,"{\"": \""12%\""}",17326,0,"""Africa""" +2023-08-27,2325,3176,"[\""Monitor\"", \""Tablet\""]",3254.41,{},37494,1,"""South America""" +2023-07-30,2326,6601,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2019.17,{},252556,0,"""North America""" +2023-10-17,2327,2219,"[\""Wireless Mouse\"", \""Headphones\""]",4165.21,"{\"": \""30%\""}",224871,1,"""South America""" +2024-01-23,2328,9930,"[\""Headphones\""]",1525.34,{},184681,1,"""Africa""" +2024-02-11,2329,2686,"[\""Laptop\"", \""Tablet\""]",4709.06,{},239253,0,"""South America""" +2023-01-08,2330,6854,"[\""Charger\""]",3679.78,{},143999,0,"""Africa""" +2023-10-30,2331,364,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",704.6,{},21532,0,"""North America""" +2024-12-25,2332,9005,"[\""Wireless Mouse\"", \""Charger\""]",2667.41,{},288341,0,"""North America""" +2023-01-03,2333,6114,"[\""Monitor\""]",4086.29,{},214920,1,"""Europe""" +2023-09-27,2334,4224,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",919.21,"{\""promo\"": \""24%\""}",67669,1,"""South America""" +2024-10-20,2335,1031,"[\""Laptop\"", \""Phone\""]",3231.99,"{\"": \""30%\""}",114380,1,"""South America""" +2023-12-29,2336,49,"[\""Monitor\"", \""Phone\""]",1160.58,"{\"": \""17%\""}",162248,1,"""Africa""" +2024-01-28,2337,1417,"[\""Monitor\""]",1865.77,"{\"": \""17%\""}",247292,0,"""South America""" +2023-04-09,2338,6515,"[\""Keyboard\"", \""Wireless Mouse\""]",2033.9,{},78285,1,"""Africa""" +2023-08-05,2339,519,"[\""Charger\"", \""Monitor\""]",2654.92,{},229954,0,"""Africa""" +2024-11-27,2340,783,"[\""Wireless Mouse\"", \""Phone\""]",4402.36,{},103442,1,"""South America""" +2024-03-06,2341,7748,"[\""Charger\""]",4743.04,{},182380,1,"""Europe""" +2023-11-10,2342,2456,"[\""Phone\""]",4540.53,{},130745,1,"""North America""" +2024-02-18,2343,6698,"[\""Tablet\"", \""Keyboard\""]",653.83,{},157217,0,"""South America""" +2023-09-18,2344,281,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3741.16,{},230566,1,"""North America""" +2023-05-01,2345,2382,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",884.74,"{\""loyalty\"": \""5%\""}",73313,1,"""Africa""" +2023-08-15,2346,5269,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4228.29,"{\""seasonal\"": \""9%\""}",201284,1,"""Asia""" +2024-03-10,2347,5542,"[\""Monitor\"", \""Tablet\""]",1566.38,"{\""loyalty\"": \""23%\""}",95359,1,"""North America""" +2024-11-28,2348,7264,"[\""Monitor\"", \""Headphones\""]",1774.87,{},90692,1,"""South America""" +2023-11-25,2349,2357,"[\""Laptop\"", \""Keyboard\""]",389.26,"{\""seasonal\"": \""19%\""}",46372,1,"""Asia""" +2023-08-19,2350,6919,"[\""Tablet\""]",1619.9,"{\""loyalty\"": \""15%\""}",246880,1,"""North America""" +2023-06-01,2351,6812,"[\""Charger\""]",334.69,{},283827,0,"""Asia""" +2024-09-03,2352,6599,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1411.55,{},144492,1,"""North America""" +2024-04-28,2353,4654,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2045.13,"{\"": \""6%\""}",171892,1,"""Asia""" +2024-11-12,2354,5542,"[\""Charger\"", \""Phone\""]",442.27,{},93609,1,"""North America""" +2023-11-08,2355,6567,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1832.87,"{\""loyalty\"": \""11%\""}",53006,1,"""South America""" +2023-10-13,2356,4714,"[\""Laptop\"", \""Phone\""]",658.12,{},213279,1,"""North America""" +2023-01-16,2357,1156,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3824.06,"{\""seasonal\"": \""20%\""}",129229,1,"""Africa""" +2024-08-09,2358,1058,"[\""Tablet\""]",776.83,"{\""loyalty\"": \""12%\""}",141677,1,"""North America""" +2024-04-18,2359,4639,"[\""Tablet\""]",2651.05,"{\""promo\"": \""30%\""}",199409,1,"""North America""" +2023-03-26,2360,8893,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",246.74,{},162658,0,"""Europe""" +2023-01-25,2361,5789,"[\""Headphones\""]",4279.75,{},24090,0,"""Asia""" +2023-08-06,2362,5081,"[\""Laptop\"", \""Charger\""]",4940.93,"{\""promo\"": \""18%\""}",132238,1,"""Africa""" +2023-12-25,2363,5413,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1045.22,"{\"": \""29%\""}",13551,0,"""Africa""" +2024-08-16,2364,160,"[\""Tablet\""]",1066.52,{},268608,0,"""South America""" +2024-04-03,2365,4315,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2388.26,{},75451,0,"""North America""" +2023-04-28,2366,1559,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",814.55,"{\"": \""28%\""}",220463,0,"""North America""" +2024-03-20,2367,5080,"[\""Keyboard\"", \""Tablet\""]",2104.05,{},187552,1,"""South America""" +2024-04-18,2368,1459,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2363.84,"{\""loyalty\"": \""13%\""}",82743,1,"""Asia""" +2024-01-25,2369,6311,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",485.92,{},276810,1,"""Asia""" +2023-09-11,2370,8493,"[\""Charger\"", \""Laptop\""]",1017.66,{},3208,0,"""Europe""" +2023-10-24,2371,2100,"[\""Keyboard\"", \""Headphones\""]",365.82,{},6285,0,"""South America""" +2024-03-11,2372,5749,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",772.76,{},71644,0,"""South America""" +2023-10-30,2373,2550,"[\""Charger\"", \""Keyboard\""]",4908.9,{},103235,0,"""Africa""" +2023-03-16,2374,9450,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3878.85,"{\""loyalty\"": \""25%\""}",203944,0,"""South America""" +2024-10-17,2375,7381,"[\""Charger\""]",3453.86,{},245866,1,"""Africa""" +2023-12-03,2376,5513,"[\""Phone\"", \""Monitor\""]",589.13,"{\"": \""6%\""}",150100,0,"""North America""" +2024-06-19,2377,9084,"[\""Phone\"", \""Laptop\""]",1700.14,"{\""seasonal\"": \""29%\""}",141563,1,"""South America""" +2023-08-07,2378,3194,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2989.32,"{\""seasonal\"": \""25%\""}",113672,1,"""Africa""" +2024-10-11,2379,952,"[\""Phone\"", \""Headphones\""]",2452.29,{},219486,1,"""North America""" +2024-09-16,2380,9516,"[\""Headphones\"", \""Phone\""]",429.37,{},295316,0,"""Asia""" +2024-02-02,2381,2619,"[\""Headphones\""]",3316.61,"{\""seasonal\"": \""6%\""}",177046,0,"""South America""" +2023-10-31,2382,6389,"[\""Keyboard\"", \""Monitor\""]",3384.73,"{\""promo\"": \""13%\""}",174822,1,"""Africa""" +2023-05-11,2383,4486,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4906.02,"{\"": \""27%\""}",91228,1,"""Europe""" +2023-02-10,2384,8959,"[\""Monitor\""]",3174.34,"{\""loyalty\"": \""28%\""}",141062,1,"""South America""" +2024-05-12,2385,6868,"[\""Headphones\"", \""Charger\""]",4024.1,{},150185,0,"""North America""" +2023-02-20,2386,9547,"[\""Wireless Mouse\""]",2988.97,{},76345,0,"""North America""" +2024-05-02,2387,8279,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",975.53,{},163227,1,"""South America""" +2024-10-31,2388,2649,"[\""Charger\"", \""Laptop\""]",4710.5,{},298858,0,"""South America""" +2024-07-25,2389,9045,"[\""Charger\"", \""Tablet\""]",1370.66,"{\""seasonal\"": \""18%\""}",113753,0,"""South America""" +2023-09-01,2390,3225,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2235.02,"{\""promo\"": \""9%\""}",217093,1,"""Europe""" +2023-03-07,2391,8883,"[\""Headphones\""]",2434.66,"{\""promo\"": \""14%\""}",269254,0,"""South America""" +2023-05-31,2392,4981,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",922.73,{},8632,0,"""Europe""" +2023-09-05,2393,5879,"[\""Laptop\""]",3665.64,{},231035,1,"""North America""" +2023-06-27,2394,5700,"[\""Headphones\""]",4663.38,"{\"": \""8%\""}",179920,0,"""South America""" +2023-03-15,2395,4730,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3430.07,{},108774,1,"""North America""" +2024-03-27,2396,5972,"[\""Keyboard\"", \""Wireless Mouse\""]",688.15,"{\""loyalty\"": \""22%\""}",70433,1,"""Asia""" +2024-09-15,2397,4769,"[\""Monitor\""]",1230.01,"{\""seasonal\"": \""5%\""}",75931,0,"""South America""" +2024-11-08,2398,4181,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3821.17,{},110884,0,"""Asia""" +2023-05-30,2399,9058,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1179.58,{},190163,1,"""Africa""" +2023-10-05,2400,4582,"[\""Phone\"", \""Monitor\""]",213.32,{},250975,1,"""Asia""" +2023-05-23,2401,8528,"[\""Headphones\""]",3197.87,{},110569,0,"""Africa""" +2023-09-25,2402,2880,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",695.61,{},136456,0,"""Africa""" +2024-01-06,2403,3297,"[\""Charger\""]",3382.89,"{\""seasonal\"": \""20%\""}",281705,0,"""Africa""" +2023-02-06,2404,963,"[\""Tablet\"", \""Charger\""]",1235.0,{},155812,1,"""Asia""" +2023-11-03,2405,407,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1578.18,"{\""promo\"": \""20%\""}",150743,1,"""Europe""" +2023-06-23,2406,6626,"[\""Wireless Mouse\""]",448.46,{},273464,1,"""Asia""" +2024-01-08,2407,2012,"[\""Wireless Mouse\"", \""Monitor\""]",719.52,{},235499,1,"""Asia""" +2024-03-26,2408,4421,"[\""Wireless Mouse\"", \""Phone\""]",2377.29,"{\""promo\"": \""7%\""}",179873,0,"""Europe""" +2023-02-07,2409,3441,"[\""Headphones\"", \""Keyboard\""]",1342.89,"{\""promo\"": \""14%\""}",277866,1,"""North America""" +2023-01-12,2410,316,"[\""Charger\"", \""Keyboard\""]",3909.81,"{\"": \""26%\""}",138648,0,"""South America""" +2024-01-08,2411,1680,"[\""Laptop\""]",3809.7,"{\"": \""28%\""}",279526,1,"""Asia""" +2023-02-21,2412,9418,"[\""Laptop\""]",1485.1,{},150766,1,"""South America""" +2024-12-10,2413,6016,"[\""Wireless Mouse\"", \""Keyboard\""]",2432.82,"{\""promo\"": \""20%\""}",106562,1,"""Asia""" +2023-06-30,2414,8507,"[\""Laptop\"", \""Phone\""]",438.47,{},209603,1,"""North America""" +2023-04-06,2415,8641,"[\""Wireless Mouse\"", \""Charger\""]",3473.63,"{\""seasonal\"": \""20%\""}",105124,0,"""North America""" +2023-03-12,2416,9062,"[\""Laptop\""]",4213.11,"{\"": \""27%\""}",66821,0,"""South America""" +2024-04-22,2417,8218,"[\""Wireless Mouse\"", \""Keyboard\""]",1410.21,"{\"": \""23%\""}",209257,0,"""Europe""" +2023-08-20,2418,6947,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2710.3,{},148281,1,"""North America""" +2023-04-28,2419,6087,"[\""Keyboard\"", \""Headphones\""]",2789.15,{},49074,0,"""North America""" +2024-08-14,2420,1201,"[\""Wireless Mouse\""]",3068.85,{},256339,0,"""South America""" +2024-04-07,2421,9914,"[\""Keyboard\"", \""Monitor\""]",1981.13,"{\""seasonal\"": \""19%\""}",61814,0,"""South America""" +2024-02-29,2422,8594,"[\""Monitor\"", \""Laptop\""]",2753.89,"{\"": \""18%\""}",128100,0,"""Europe""" +2024-04-25,2423,283,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4643.19,{},172280,1,"""Asia""" +2023-07-04,2424,3811,"[\""Laptop\"", \""Wireless Mouse\""]",478.22,{},211385,0,"""Asia""" +2023-11-29,2425,9256,"[\""Laptop\"", \""Monitor\""]",3975.4,"{\""seasonal\"": \""24%\""}",281036,0,"""South America""" +2023-11-15,2426,9715,"[\""Tablet\"", \""Laptop\""]",2501.7,"{\""seasonal\"": \""6%\""}",175202,1,"""South America""" +2023-03-28,2427,2263,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",834.19,{},95252,1,"""Europe""" +2024-11-23,2428,9816,"[\""Laptop\""]",1367.64,{},159446,1,"""South America""" +2023-10-06,2429,8221,"[\""Tablet\""]",2655.87,{},13580,0,"""South America""" +2024-09-04,2430,7880,"[\""Tablet\""]",2135.5,"{\""seasonal\"": \""17%\""}",204572,1,"""Africa""" +2023-02-10,2431,7564,"[\""Wireless Mouse\""]",1829.84,{},60987,0,"""North America""" +2023-03-28,2432,6496,"[\""Charger\""]",4630.18,{},174202,0,"""South America""" +2024-10-30,2433,2865,"[\""Monitor\""]",3916.3,"{\""seasonal\"": \""26%\""}",28626,1,"""North America""" +2023-07-12,2434,447,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",462.5,"{\"": \""18%\""}",142536,0,"""South America""" +2024-04-05,2435,4353,"[\""Headphones\""]",4712.4,{},62792,1,"""Europe""" +2024-12-18,2436,1348,"[\""Laptop\""]",2679.03,"{\""loyalty\"": \""12%\""}",6792,1,"""Asia""" +2024-07-14,2437,8435,"[\""Keyboard\"", \""Wireless Mouse\""]",1204.21,"{\""promo\"": \""30%\""}",7335,1,"""Europe""" +2023-11-21,2438,5430,"[\""Monitor\""]",4520.12,{},198469,0,"""North America""" +2024-10-03,2439,2006,"[\""Charger\""]",172.72,{},156859,0,"""Africa""" +2024-07-08,2440,8010,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2636.22,{},92865,1,"""North America""" +2024-08-04,2441,8271,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1236.81,"{\"": \""14%\""}",68843,0,"""Asia""" +2023-08-27,2442,3564,"[\""Monitor\"", \""Charger\""]",259.87,"{\""loyalty\"": \""6%\""}",212023,1,"""Asia""" +2024-05-05,2443,1010,"[\""Laptop\""]",203.16,"{\""seasonal\"": \""18%\""}",255366,1,"""North America""" +2024-03-29,2444,7644,"[\""Charger\""]",2634.39,{},155292,0,"""South America""" +2024-02-22,2445,3643,"[\""Keyboard\"", \""Tablet\""]",2730.5,"{\"": \""20%\""}",142685,1,"""Europe""" +2024-08-16,2446,9698,"[\""Phone\"", \""Wireless Mouse\""]",2366.08,{},148154,0,"""South America""" +2023-07-20,2447,7506,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4432.3,"{\""loyalty\"": \""15%\""}",93319,0,"""Africa""" +2024-09-17,2448,9164,"[\""Phone\""]",2993.06,"{\""loyalty\"": \""5%\""}",211801,1,"""Asia""" +2023-01-29,2449,25,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3694.37,{},246808,1,"""Asia""" +2024-07-27,2450,2038,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4522.73,"{\"": \""20%\""}",172033,1,"""South America""" +2023-01-28,2451,9160,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1289.71,{},260785,0,"""Europe""" +2023-04-03,2452,9081,"[\""Monitor\"", \""Phone\""]",3550.11,{},80405,1,"""South America""" +2023-12-10,2453,182,"[\""Laptop\"", \""Wireless Mouse\""]",105.89,"{\""promo\"": \""10%\""}",94950,1,"""North America""" +2023-08-07,2454,2546,"[\""Phone\"", \""Tablet\""]",4565.7,{},70249,0,"""North America""" +2024-07-17,2455,8290,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1606.18,"{\""seasonal\"": \""19%\""}",52126,1,"""South America""" +2024-09-29,2456,7437,"[\""Headphones\"", \""Charger\""]",3706.48,"{\""promo\"": \""23%\""}",260712,0,"""North America""" +2023-10-20,2457,4247,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2667.66,{},248658,1,"""Asia""" +2023-12-06,2458,1166,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3496.66,"{\"": \""13%\""}",211243,0,"""Africa""" +2023-10-18,2459,917,"[\""Monitor\"", \""Wireless Mouse\""]",4202.12,"{\"": \""22%\""}",13647,1,"""Africa""" +2023-04-30,2460,4655,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3082.3,"{\""loyalty\"": \""13%\""}",131012,0,"""South America""" +2024-01-11,2461,3223,"[\""Wireless Mouse\""]",2476.85,"{\""seasonal\"": \""21%\""}",160340,0,"""Europe""" +2024-12-20,2462,691,"[\""Wireless Mouse\"", \""Phone\""]",511.31,{},268603,1,"""South America""" +2024-04-05,2463,2231,"[\""Wireless Mouse\"", \""Phone\""]",2274.79,{},203485,1,"""North America""" +2023-11-04,2464,9343,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",426.43,{},148279,1,"""Africa""" +2024-07-12,2465,2707,"[\""Charger\"", \""Phone\""]",3125.84,"{\""promo\"": \""29%\""}",233706,1,"""Africa""" +2023-07-11,2466,1313,"[\""Laptop\""]",2056.07,"{\""loyalty\"": \""23%\""}",291367,1,"""Africa""" +2024-01-04,2467,9435,"[\""Charger\"", \""Laptop\""]",3002.18,"{\""loyalty\"": \""5%\""}",150161,0,"""North America""" +2024-05-09,2468,5287,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1690.45,"{\""promo\"": \""30%\""}",122843,0,"""Asia""" +2023-01-09,2469,5755,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4711.67,"{\""loyalty\"": \""30%\""}",44001,0,"""Europe""" +2023-05-11,2470,256,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1203.49,"{\""seasonal\"": \""8%\""}",46598,1,"""North America""" +2023-03-31,2471,3080,"[\""Wireless Mouse\""]",976.38,"{\""promo\"": \""13%\""}",209756,1,"""Africa""" +2023-02-24,2472,3717,"[\""Laptop\"", \""Phone\""]",1393.12,"{\""seasonal\"": \""16%\""}",105987,1,"""Africa""" +2024-08-27,2473,5282,"[\""Charger\"", \""Keyboard\""]",1403.27,{},49228,1,"""South America""" +2024-07-31,2474,2696,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3923.8,{},236800,0,"""Africa""" +2023-09-07,2475,7325,"[\""Laptop\"", \""Headphones\""]",2788.8,"{\"": \""7%\""}",102460,0,"""South America""" +2024-10-12,2476,2055,"[\""Charger\""]",1619.61,"{\""loyalty\"": \""10%\""}",154526,1,"""Asia""" +2023-05-23,2477,6841,"[\""Headphones\""]",1988.94,{},198602,0,"""South America""" +2024-03-10,2478,5353,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",525.42,{},294703,0,"""North America""" +2024-08-07,2479,4763,"[\""Phone\"", \""Monitor\""]",3071.43,"{\"": \""20%\""}",260318,1,"""North America""" +2023-11-14,2480,6934,"[\""Tablet\""]",1291.14,"{\""promo\"": \""27%\""}",220567,1,"""Asia""" +2024-08-25,2481,8668,"[\""Tablet\""]",1513.66,"{\"": \""9%\""}",169452,1,"""Africa""" +2024-08-12,2482,8906,"[\""Keyboard\"", \""Monitor\""]",1528.44,"{\""loyalty\"": \""24%\""}",199057,1,"""South America""" +2024-08-21,2483,7178,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4108.13,"{\""seasonal\"": \""28%\""}",56076,0,"""Europe""" +2024-12-20,2484,2419,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",879.47,{},4035,0,"""Africa""" +2023-01-25,2485,3847,"[\""Phone\"", \""Headphones\""]",3119.14,{},212016,1,"""North America""" +2024-03-26,2486,4971,"[\""Headphones\"", \""Tablet\""]",2103.21,{},206245,1,"""North America""" +2023-10-10,2487,6288,"[\""Wireless Mouse\"", \""Headphones\""]",729.32,{},38420,0,"""Africa""" +2023-06-30,2488,2626,"[\""Phone\""]",2468.52,{},120728,1,"""South America""" +2023-03-22,2489,6332,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2416.08,{},144254,1,"""North America""" +2023-09-20,2490,2564,"[\""Phone\"", \""Tablet\""]",3063.57,"{\""loyalty\"": \""8%\""}",287606,0,"""South America""" +2023-01-14,2491,8655,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2591.13,{},153211,1,"""South America""" +2024-03-01,2492,4391,"[\""Monitor\""]",3968.65,"{\"": \""23%\""}",2390,0,"""South America""" +2024-08-10,2493,3714,"[\""Phone\""]",3525.33,{},213087,1,"""Europe""" +2024-10-11,2494,9343,"[\""Monitor\"", \""Charger\""]",3495.17,"{\"": \""8%\""}",296673,1,"""South America""" +2023-04-30,2495,9344,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4454.2,{},5174,1,"""Asia""" +2023-11-30,2496,5866,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",779.62,"{\""seasonal\"": \""12%\""}",19505,1,"""Europe""" +2023-12-30,2497,6126,"[\""Headphones\"", \""Tablet\""]",2377.78,"{\""seasonal\"": \""18%\""}",66198,0,"""Europe""" +2023-07-29,2498,7823,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1604.12,{},255896,0,"""Europe""" +2023-11-03,2499,3527,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4444.81,{},254277,1,"""Asia""" +2024-10-30,2500,8452,"[\""Tablet\"", \""Monitor\""]",3978.2,{},40295,1,"""Europe""" +2024-03-31,2501,4468,"[\""Keyboard\""]",2630.11,{},146533,0,"""North America""" +2024-01-30,2502,9491,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1887.02,{},269677,1,"""Europe""" +2024-10-25,2503,1871,"[\""Wireless Mouse\"", \""Tablet\""]",2154.29,"{\"": \""11%\""}",200905,0,"""Asia""" +2024-11-07,2504,2818,"[\""Monitor\""]",4287.02,{},91821,1,"""Europe""" +2024-01-30,2505,7647,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",495.9,"{\""promo\"": \""18%\""}",150511,1,"""North America""" +2023-10-04,2506,7578,"[\""Laptop\"", \""Keyboard\""]",1150.84,"{\""loyalty\"": \""28%\""}",257176,1,"""South America""" +2023-07-30,2507,858,"[\""Keyboard\"", \""Laptop\""]",412.32,{},125365,1,"""Europe""" +2024-08-13,2508,1330,"[\""Monitor\"", \""Keyboard\""]",2083.4,"{\""seasonal\"": \""10%\""}",160663,1,"""Asia""" +2023-12-09,2509,4957,"[\""Wireless Mouse\""]",790.17,"{\""loyalty\"": \""27%\""}",87759,0,"""South America""" +2024-06-29,2510,9460,"[\""Laptop\""]",2421.51,{},50761,1,"""South America""" +2024-01-16,2511,4511,"[\""Headphones\""]",3976.02,{},273580,1,"""Africa""" +2023-10-28,2512,1293,"[\""Charger\"", \""Monitor\""]",58.98,"{\""loyalty\"": \""18%\""}",137945,1,"""Asia""" +2024-08-03,2513,3303,"[\""Charger\"", \""Phone\""]",3548.11,{},55489,1,"""South America""" +2024-10-14,2514,3048,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2829.95,"{\""seasonal\"": \""28%\""}",151896,1,"""South America""" +2024-08-07,2515,712,"[\""Wireless Mouse\"", \""Monitor\""]",3281.72,"{\""loyalty\"": \""12%\""}",195934,1,"""North America""" +2024-02-12,2516,3031,"[\""Tablet\""]",2425.56,"{\""seasonal\"": \""26%\""}",56069,1,"""Europe""" +2024-01-19,2517,2896,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1804.17,"{\""loyalty\"": \""6%\""}",239173,0,"""Europe""" +2024-06-19,2518,4686,"[\""Phone\""]",2621.2,{},123781,0,"""South America""" +2024-03-08,2519,1987,"[\""Headphones\"", \""Laptop\""]",2662.75,"{\"": \""21%\""}",38812,0,"""Asia""" +2023-01-10,2520,9857,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2362.63,"{\""loyalty\"": \""17%\""}",140402,1,"""South America""" +2023-02-27,2521,7009,"[\""Monitor\"", \""Charger\""]",679.82,{},225147,0,"""Asia""" +2024-01-27,2522,5706,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1801.91,"{\""seasonal\"": \""19%\""}",257204,0,"""Asia""" +2023-01-07,2523,3459,"[\""Phone\"", \""Headphones\""]",4367.82,{},213019,0,"""Asia""" +2023-09-05,2524,8873,"[\""Charger\""]",321.23,{},187108,1,"""Europe""" +2023-01-24,2525,8402,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2343.82,"{\""loyalty\"": \""25%\""}",114150,0,"""Africa""" +2024-05-24,2526,6341,"[\""Wireless Mouse\""]",2732.73,"{\""promo\"": \""10%\""}",11236,0,"""Asia""" +2024-07-26,2527,5249,"[\""Phone\""]",4182.95,"{\""seasonal\"": \""6%\""}",269272,1,"""Africa""" +2023-11-27,2528,4516,"[\""Tablet\""]",2006.98,{},40031,0,"""Africa""" +2024-05-07,2529,2136,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2624.57,"{\""loyalty\"": \""19%\""}",267220,1,"""North America""" +2023-05-22,2530,6133,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",300.14,{},143612,1,"""Europe""" +2023-09-10,2531,9642,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4880.21,"{\"": \""26%\""}",198473,1,"""Europe""" +2023-08-18,2532,8428,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1908.45,{},228411,1,"""Asia""" +2023-07-06,2533,2037,"[\""Headphones\"", \""Monitor\""]",3662.21,{},140594,0,"""Europe""" +2023-06-09,2534,2695,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2806.45,"{\""seasonal\"": \""6%\""}",159047,0,"""Europe""" +2024-07-01,2535,5395,"[\""Tablet\"", \""Laptop\""]",2005.86,"{\""promo\"": \""12%\""}",170699,0,"""North America""" +2024-10-01,2536,3428,"[\""Tablet\"", \""Charger\""]",4490.32,{},66875,1,"""Asia""" +2024-06-26,2537,8902,"[\""Charger\""]",1993.03,{},111291,1,"""Europe""" +2024-10-29,2538,6466,"[\""Laptop\""]",3850.74,"{\""loyalty\"": \""28%\""}",197550,1,"""South America""" +2024-12-30,2539,767,"[\""Keyboard\"", \""Phone\""]",4882.67,{},236078,1,"""Europe""" +2023-02-10,2540,4130,"[\""Charger\"", \""Monitor\""]",3035.2,{},38556,1,"""South America""" +2024-05-26,2541,7855,"[\""Tablet\""]",4291.63,{},31190,0,"""Europe""" +2023-07-11,2542,2502,"[\""Tablet\"", \""Wireless Mouse\""]",3632.08,"{\""seasonal\"": \""14%\""}",254411,0,"""Europe""" +2023-07-02,2543,7263,"[\""Tablet\"", \""Phone\""]",4715.21,"{\""promo\"": \""6%\""}",245194,0,"""North America""" +2023-09-15,2544,9212,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4148.77,{},61067,0,"""South America""" +2023-10-13,2545,1308,"[\""Keyboard\""]",2626.56,"{\""promo\"": \""7%\""}",8867,1,"""North America""" +2024-09-21,2546,3143,"[\""Tablet\""]",1219.71,"{\""seasonal\"": \""15%\""}",206768,1,"""Africa""" +2024-08-12,2547,4144,"[\""Headphones\""]",215.26,{},151658,0,"""Europe""" +2023-01-28,2548,4806,"[\""Monitor\""]",547.6,{},202341,0,"""Africa""" +2023-07-04,2549,9259,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",168.14,{},221545,1,"""Europe""" +2023-08-29,2550,9263,"[\""Wireless Mouse\"", \""Monitor\""]",246.79,{},77171,1,"""Europe""" +2024-04-01,2551,8166,"[\""Tablet\""]",4868.04,{},1875,0,"""North America""" +2023-06-12,2552,181,"[\""Keyboard\"", \""Tablet\""]",696.53,{},162937,1,"""Africa""" +2024-12-13,2553,6678,"[\""Keyboard\"", \""Laptop\""]",1551.26,"{\""seasonal\"": \""26%\""}",9420,0,"""North America""" +2023-06-05,2554,6764,"[\""Tablet\""]",1857.55,"{\""seasonal\"": \""26%\""}",24990,1,"""North America""" +2024-02-18,2555,1366,"[\""Wireless Mouse\""]",3861.35,"{\""loyalty\"": \""5%\""}",89024,1,"""South America""" +2024-01-03,2556,5613,"[\""Keyboard\"", \""Phone\""]",4304.89,"{\"": \""20%\""}",91671,0,"""North America""" +2023-10-08,2557,5391,"[\""Headphones\""]",1451.65,{},62256,1,"""Europe""" +2024-01-09,2558,247,"[\""Headphones\""]",2531.0,"{\""seasonal\"": \""10%\""}",244022,0,"""Africa""" +2024-12-07,2559,9217,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2157.8,"{\""seasonal\"": \""21%\""}",74837,1,"""North America""" +2024-08-13,2560,6728,"[\""Tablet\"", \""Keyboard\""]",4301.93,"{\""seasonal\"": \""23%\""}",122025,0,"""Asia""" +2023-08-03,2561,2222,"[\""Wireless Mouse\"", \""Monitor\""]",1493.34,{},171714,1,"""Asia""" +2023-05-27,2562,9490,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4553.01,"{\"": \""7%\""}",296318,1,"""Africa""" +2023-03-23,2563,7862,"[\""Monitor\"", \""Wireless Mouse\""]",1198.35,{},32087,0,"""Africa""" +2024-05-19,2564,7044,"[\""Phone\""]",190.24,"{\""loyalty\"": \""26%\""}",59365,0,"""Europe""" +2024-12-30,2565,7497,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",389.72,"{\""promo\"": \""5%\""}",170403,1,"""Africa""" +2023-08-15,2566,2367,"[\""Wireless Mouse\""]",2819.19,{},117295,0,"""South America""" +2024-08-03,2567,9593,"[\""Monitor\"", \""Keyboard\""]",1456.05,"{\""promo\"": \""16%\""}",179163,0,"""South America""" +2023-09-04,2568,8457,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2334.64,"{\"": \""11%\""}",227516,1,"""North America""" +2023-07-25,2569,5963,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",984.49,{},128762,1,"""Africa""" +2023-01-10,2570,1178,"[\""Wireless Mouse\""]",2292.84,"{\""seasonal\"": \""27%\""}",180180,1,"""North America""" +2023-05-06,2571,3043,"[\""Wireless Mouse\""]",3437.73,"{\"": \""27%\""}",230369,1,"""North America""" +2024-03-22,2572,9876,"[\""Headphones\""]",1899.24,{},118866,0,"""Asia""" +2023-10-09,2573,916,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1787.04,"{\"": \""28%\""}",253913,1,"""Europe""" +2024-05-22,2574,9351,"[\""Wireless Mouse\""]",2705.49,{},103567,1,"""Asia""" +2023-12-05,2575,4729,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3358.09,{},258751,1,"""South America""" +2023-11-06,2576,8680,"[\""Monitor\"", \""Laptop\""]",4881.15,{},142267,0,"""Africa""" +2024-10-27,2577,9959,"[\""Tablet\""]",639.05,"{\"": \""19%\""}",202095,1,"""Europe""" +2023-01-15,2578,8917,"[\""Laptop\""]",671.12,"{\""loyalty\"": \""14%\""}",41519,0,"""Europe""" +2024-03-30,2579,7804,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2051.12,"{\"": \""14%\""}",79586,0,"""North America""" +2023-11-18,2580,2130,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4399.42,"{\""loyalty\"": \""25%\""}",119551,1,"""South America""" +2024-06-25,2581,9238,"[\""Headphones\""]",3938.81,{},176831,1,"""South America""" +2023-05-11,2582,8775,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3945.16,"{\"": \""21%\""}",90339,0,"""North America""" +2024-08-11,2583,3932,"[\""Charger\""]",4501.09,"{\""seasonal\"": \""30%\""}",83991,0,"""North America""" +2024-02-09,2584,1850,"[\""Headphones\""]",4213.23,"{\""promo\"": \""10%\""}",103612,1,"""South America""" +2024-11-09,2585,1586,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1003.21,{},249933,0,"""Africa""" +2024-10-23,2586,4794,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",826.64,{},120258,0,"""South America""" +2024-05-15,2587,3239,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3045.4,"{\""seasonal\"": \""27%\""}",36454,0,"""Europe""" +2024-03-14,2588,6515,"[\""Tablet\""]",2902.08,"{\""seasonal\"": \""15%\""}",176184,1,"""Africa""" +2023-03-25,2589,1227,"[\""Wireless Mouse\"", \""Keyboard\""]",227.27,"{\""promo\"": \""8%\""}",283330,0,"""Africa""" +2023-12-11,2590,8191,"[\""Laptop\"", \""Tablet\""]",4144.35,{},70526,0,"""Europe""" +2024-03-15,2591,2196,"[\""Monitor\""]",978.82,"{\"": \""15%\""}",163516,1,"""North America""" +2023-11-01,2592,2698,"[\""Wireless Mouse\"", \""Laptop\""]",3257.55,{},34611,0,"""Asia""" +2024-02-04,2593,6701,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2771.56,"{\""promo\"": \""30%\""}",270232,1,"""North America""" +2024-08-24,2594,7103,"[\""Laptop\""]",524.53,{},182568,1,"""South America""" +2023-04-18,2595,5099,"[\""Phone\""]",3686.11,"{\""promo\"": \""6%\""}",147145,0,"""Asia""" +2023-02-10,2596,722,"[\""Charger\""]",3060.67,{},9869,0,"""South America""" +2023-10-07,2597,9919,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4792.43,{},206530,0,"""Asia""" +2024-03-22,2598,9118,"[\""Charger\"", \""Wireless Mouse\""]",4117.5,"{\""promo\"": \""11%\""}",287641,1,"""Europe""" +2024-07-06,2599,9882,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2671.95,"{\""promo\"": \""10%\""}",99089,1,"""North America""" +2023-04-01,2600,2254,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1301.56,"{\"": \""22%\""}",163757,0,"""Asia""" +2023-06-05,2601,996,"[\""Laptop\"", \""Phone\""]",1197.3,{},94779,0,"""North America""" +2023-06-18,2602,9544,"[\""Tablet\""]",2771.53,"{\""loyalty\"": \""12%\""}",169678,0,"""Europe""" +2024-01-15,2603,4139,"[\""Tablet\"", \""Keyboard\""]",1135.82,{},50410,0,"""South America""" +2023-11-15,2604,2659,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1648.83,{},68824,0,"""Africa""" +2023-03-14,2605,2483,"[\""Headphones\"", \""Phone\""]",4668.92,{},22010,1,"""Africa""" +2023-10-07,2606,8464,"[\""Phone\"", \""Keyboard\""]",3708.03,"{\""promo\"": \""20%\""}",195830,0,"""North America""" +2023-08-28,2607,6625,"[\""Wireless Mouse\""]",4878.92,{},139134,0,"""Europe""" +2024-04-02,2608,9794,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2700.02,"{\""promo\"": \""13%\""}",248879,1,"""Europe""" +2023-11-20,2609,2254,"[\""Keyboard\"", \""Monitor\""]",926.78,{},70631,0,"""Europe""" +2024-08-21,2610,5696,"[\""Monitor\"", \""Phone\""]",3838.8,{},128702,1,"""South America""" +2023-01-17,2611,5892,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2794.29,{},180663,0,"""Europe""" +2024-04-14,2612,8068,"[\""Phone\""]",1510.43,"{\""loyalty\"": \""21%\""}",180793,0,"""Asia""" +2023-02-20,2613,5737,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1832.62,{},173133,0,"""North America""" +2023-11-08,2614,3886,"[\""Phone\""]",498.82,{},223001,1,"""Asia""" +2024-02-03,2615,8645,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",937.28,"{\""loyalty\"": \""17%\""}",130494,0,"""Europe""" +2024-09-06,2616,3762,"[\""Charger\""]",3024.58,"{\""promo\"": \""26%\""}",91028,0,"""North America""" +2023-01-05,2617,6363,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",691.76,{},216628,1,"""Asia""" +2023-09-26,2618,6729,"[\""Laptop\""]",4678.46,{},177862,1,"""Africa""" +2024-07-22,2619,5901,"[\""Keyboard\""]",1729.1,"{\"": \""9%\""}",63449,0,"""South America""" +2024-02-20,2620,6861,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2992.54,"{\"": \""26%\""}",229778,1,"""Africa""" +2023-10-19,2621,8632,"[\""Monitor\""]",940.3,"{\""seasonal\"": \""25%\""}",150187,0,"""Africa""" +2023-03-06,2622,7589,"[\""Tablet\"", \""Monitor\""]",1386.38,"{\""loyalty\"": \""29%\""}",34279,0,"""Asia""" +2023-11-13,2623,6973,"[\""Headphones\""]",3112.61,{},75422,1,"""Europe""" +2024-05-15,2624,7177,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1752.29,{},266263,1,"""Asia""" +2023-02-15,2625,5697,"[\""Charger\""]",3403.78,{},62713,0,"""Europe""" +2024-01-29,2626,3272,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4423.94,"{\"": \""6%\""}",129522,1,"""Europe""" +2023-10-11,2627,542,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3057.35,{},218638,1,"""South America""" +2023-11-03,2628,4595,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4176.72,"{\""promo\"": \""9%\""}",108665,1,"""South America""" +2023-10-08,2629,4612,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3107.89,{},55651,1,"""Africa""" +2024-03-19,2630,101,"[\""Tablet\""]",4463.1,"{\""seasonal\"": \""25%\""}",24664,0,"""Africa""" +2023-10-29,2631,6308,"[\""Tablet\""]",1679.16,"{\""seasonal\"": \""13%\""}",20493,1,"""North America""" +2023-05-03,2632,4844,"[\""Charger\"", \""Wireless Mouse\""]",1294.25,{},22592,0,"""Africa""" +2024-06-30,2633,9825,"[\""Charger\"", \""Monitor\""]",4704.88,"{\""seasonal\"": \""28%\""}",72396,0,"""North America""" +2024-02-27,2634,6579,"[\""Keyboard\"", \""Laptop\""]",451.89,{},282297,0,"""Africa""" +2024-07-03,2635,1052,"[\""Headphones\""]",3892.47,"{\""promo\"": \""11%\""}",247436,1,"""Africa""" +2024-04-09,2636,5258,"[\""Keyboard\"", \""Monitor\""]",2460.0,{},284766,0,"""Africa""" +2024-01-26,2637,9296,"[\""Headphones\"", \""Phone\""]",266.57,"{\""promo\"": \""27%\""}",294182,1,"""Europe""" +2024-12-12,2638,1603,"[\""Monitor\"", \""Charger\""]",72.05,"{\"": \""28%\""}",74873,1,"""Asia""" +2024-03-05,2639,9807,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4903.79,{},11768,1,"""South America""" +2023-09-09,2640,6729,"[\""Headphones\"", \""Laptop\""]",3689.44,{},99566,1,"""South America""" +2023-09-12,2641,2668,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4564.29,"{\"": \""21%\""}",246862,0,"""North America""" +2023-02-03,2642,5158,"[\""Keyboard\""]",844.04,{},141768,1,"""Europe""" +2023-05-11,2643,1056,"[\""Tablet\"", \""Keyboard\""]",466.96,"{\""promo\"": \""28%\""}",284510,0,"""Europe""" +2023-07-20,2644,3514,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1186.64,"{\""loyalty\"": \""24%\""}",211902,1,"""Europe""" +2024-05-23,2645,9260,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1433.11,"{\""seasonal\"": \""12%\""}",252194,0,"""Africa""" +2024-08-23,2646,4070,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4670.25,{},27630,1,"""Africa""" +2023-08-12,2647,1132,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4797.62,"{\""seasonal\"": \""15%\""}",17080,0,"""Europe""" +2023-11-21,2648,8297,"[\""Wireless Mouse\"", \""Phone\""]",3603.58,{},138443,0,"""South America""" +2023-05-14,2649,7568,"[\""Charger\"", \""Phone\"", \""Laptop\""]",841.82,"{\""loyalty\"": \""29%\""}",192217,0,"""Europe""" +2024-10-30,2650,4358,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3360.92,"{\""promo\"": \""27%\""}",45157,1,"""Europe""" +2024-06-23,2651,278,"[\""Phone\""]",1963.73,{},280509,0,"""Asia""" +2024-08-21,2652,8195,"[\""Wireless Mouse\"", \""Laptop\""]",2096.31,"{\""promo\"": \""18%\""}",49763,0,"""Africa""" +2023-01-25,2653,2291,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2842.01,{},22744,1,"""Europe""" +2024-04-09,2654,7966,"[\""Laptop\"", \""Charger\""]",2608.51,{},185599,0,"""South America""" +2024-01-12,2655,5102,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1828.78,"{\""loyalty\"": \""7%\""}",103522,0,"""North America""" +2024-05-10,2656,7248,"[\""Headphones\""]",3225.63,{},59401,1,"""North America""" +2023-04-21,2657,7980,"[\""Headphones\""]",1741.15,"{\""seasonal\"": \""7%\""}",103883,1,"""North America""" +2024-08-07,2658,1527,"[\""Tablet\"", \""Phone\""]",2902.36,"{\""loyalty\"": \""23%\""}",257053,0,"""Europe""" +2024-01-19,2659,5898,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1576.27,"{\"": \""5%\""}",280507,1,"""South America""" +2024-08-09,2660,2075,"[\""Keyboard\"", \""Wireless Mouse\""]",2197.75,{},109382,1,"""Asia""" +2024-06-07,2661,9503,"[\""Charger\""]",3257.17,"{\""seasonal\"": \""15%\""}",67087,1,"""South America""" +2024-08-15,2662,6600,"[\""Tablet\""]",1344.4,{},216230,0,"""Africa""" +2024-04-26,2663,8887,"[\""Tablet\""]",2124.55,"{\"": \""22%\""}",257288,1,"""Europe""" +2024-03-31,2664,2948,"[\""Laptop\"", \""Keyboard\""]",869.92,{},50111,0,"""Europe""" +2023-11-08,2665,2788,"[\""Tablet\"", \""Phone\""]",3253.23,{},79284,0,"""Africa""" +2023-10-11,2666,9709,"[\""Charger\""]",4173.72,{},7515,1,"""North America""" +2023-02-12,2667,7485,"[\""Laptop\"", \""Wireless Mouse\""]",1037.31,"{\""seasonal\"": \""17%\""}",281439,0,"""Africa""" +2023-11-26,2668,7950,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4040.08,{},212325,1,"""Africa""" +2023-05-15,2669,6960,"[\""Tablet\""]",4448.8,{},43901,0,"""Europe""" +2024-09-15,2670,2200,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3093.8,{},172698,1,"""Asia""" +2023-09-14,2671,991,"[\""Monitor\"", \""Headphones\""]",887.41,"{\""promo\"": \""27%\""}",202949,1,"""Asia""" +2023-01-16,2672,8329,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3105.96,"{\""loyalty\"": \""13%\""}",288324,0,"""Europe""" +2023-12-08,2673,2813,"[\""Keyboard\"", \""Charger\""]",2566.74,"{\""promo\"": \""21%\""}",204715,1,"""South America""" +2023-06-17,2674,5572,"[\""Charger\""]",2552.87,{},276927,0,"""South America""" +2023-01-07,2675,6936,"[\""Wireless Mouse\"", \""Charger\""]",1200.66,"{\""loyalty\"": \""26%\""}",108006,1,"""Europe""" +2023-08-19,2676,7581,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",457.81,{},226737,1,"""Asia""" +2023-06-24,2677,7179,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2505.93,"{\""loyalty\"": \""23%\""}",176250,0,"""Africa""" +2023-08-18,2678,4799,"[\""Charger\"", \""Wireless Mouse\""]",2575.54,{},24706,1,"""Europe""" +2024-08-25,2679,5360,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2698.93,"{\""promo\"": \""11%\""}",288794,1,"""Europe""" +2023-11-21,2680,1285,"[\""Headphones\"", \""Charger\""]",3710.79,"{\""seasonal\"": \""7%\""}",126780,1,"""Africa""" +2023-12-28,2681,8641,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",298.21,{},98176,1,"""Asia""" +2024-11-11,2682,5597,"[\""Laptop\"", \""Headphones\""]",4940.42,{},168761,1,"""South America""" +2023-02-02,2683,7390,"[\""Keyboard\"", \""Laptop\""]",2293.67,"{\"": \""17%\""}",228430,1,"""Africa""" +2023-05-17,2684,523,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2973.88,"{\""promo\"": \""13%\""}",226527,1,"""Europe""" +2023-01-08,2685,9192,"[\""Charger\"", \""Monitor\"", \""Phone\""]",822.69,{},75094,1,"""Europe""" +2024-02-05,2686,5545,"[\""Charger\"", \""Laptop\"", \""Phone\""]",440.11,"{\""promo\"": \""25%\""}",211171,1,"""South America""" +2023-06-11,2687,8138,"[\""Tablet\""]",2832.11,{},67582,0,"""North America""" +2024-12-09,2688,3738,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3018.68,"{\"": \""14%\""}",299346,0,"""Africa""" +2024-08-20,2689,7192,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2549.71,{},57853,1,"""North America""" +2023-12-29,2690,8345,"[\""Charger\"", \""Phone\"", \""Laptop\""]",593.37,"{\""seasonal\"": \""30%\""}",102351,1,"""Asia""" +2024-01-08,2691,8301,"[\""Monitor\""]",4475.49,{},80486,1,"""Asia""" +2023-02-10,2692,8533,"[\""Headphones\""]",1842.92,"{\""seasonal\"": \""29%\""}",229674,1,"""Asia""" +2024-08-29,2693,9132,"[\""Monitor\""]",376.51,"{\""loyalty\"": \""22%\""}",191956,1,"""North America""" +2023-07-15,2694,2811,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4469.25,{},222244,0,"""Asia""" +2024-08-11,2695,1442,"[\""Headphones\""]",2131.04,{},240874,0,"""Asia""" +2023-04-26,2696,6348,"[\""Charger\""]",3078.38,{},30906,1,"""Africa""" +2023-11-16,2697,5480,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4428.34,{},96111,1,"""South America""" +2023-05-30,2698,4036,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3900.5,"{\""promo\"": \""8%\""}",78847,1,"""North America""" +2023-04-25,2699,7664,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3954.33,"{\""seasonal\"": \""7%\""}",100063,0,"""North America""" +2024-10-16,2700,2169,"[\""Monitor\"", \""Keyboard\""]",2465.47,"{\""loyalty\"": \""14%\""}",258878,1,"""Asia""" +2023-06-23,2701,7308,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",270.5,"{\""seasonal\"": \""24%\""}",282335,1,"""Africa""" +2023-01-29,2702,4669,"[\""Laptop\""]",1631.73,"{\""promo\"": \""27%\""}",77676,1,"""Africa""" +2023-02-10,2703,868,"[\""Charger\""]",710.12,"{\"": \""7%\""}",82191,0,"""South America""" +2024-10-21,2704,2798,"[\""Charger\"", \""Headphones\""]",1301.09,{},155843,1,"""Europe""" +2024-08-05,2705,4287,"[\""Phone\""]",622.6,"{\""promo\"": \""27%\""}",186740,1,"""Asia""" +2023-07-01,2706,359,"[\""Keyboard\"", \""Phone\""]",1021.7,{},202718,0,"""Europe""" +2024-02-07,2707,4300,"[\""Charger\"", \""Tablet\""]",1766.31,{},124171,1,"""Asia""" +2023-05-05,2708,3883,"[\""Tablet\"", \""Phone\""]",342.4,"{\""seasonal\"": \""14%\""}",94399,1,"""Africa""" +2024-09-18,2709,5022,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",562.89,{},124915,1,"""Europe""" +2023-07-29,2710,9829,"[\""Phone\"", \""Headphones\""]",618.13,"{\""promo\"": \""27%\""}",217699,0,"""South America""" +2023-04-17,2711,2251,"[\""Tablet\"", \""Headphones\""]",4480.72,"{\"": \""9%\""}",265983,1,"""North America""" +2024-06-23,2712,1673,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",818.56,"{\""seasonal\"": \""19%\""}",136110,0,"""Asia""" +2023-12-21,2713,5602,"[\""Tablet\""]",3371.64,{},185377,0,"""Asia""" +2023-06-03,2714,870,"[\""Headphones\""]",3794.22,"{\""loyalty\"": \""12%\""}",91877,0,"""Asia""" +2023-06-02,2715,138,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1951.42,"{\"": \""29%\""}",30118,0,"""Asia""" +2023-05-12,2716,3863,"[\""Tablet\""]",3369.26,{},16775,0,"""South America""" +2023-07-23,2717,9276,"[\""Phone\""]",395.55,{},233473,0,"""South America""" +2023-01-17,2718,803,"[\""Keyboard\""]",1214.69,"{\""seasonal\"": \""5%\""}",19362,0,"""South America""" +2023-08-11,2719,1362,"[\""Keyboard\""]",651.13,"{\""seasonal\"": \""10%\""}",168072,1,"""Europe""" +2024-01-24,2720,9177,"[\""Headphones\"", \""Phone\""]",261.05,"{\""loyalty\"": \""9%\""}",199194,1,"""Asia""" +2024-05-08,2721,2676,"[\""Laptop\"", \""Tablet\""]",1676.96,{},267980,1,"""Africa""" +2024-04-25,2722,8264,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",525.62,{},66199,0,"""Europe""" +2024-02-13,2723,6094,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1347.81,{},264212,0,"""Africa""" +2023-02-10,2724,3578,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1597.53,"{\""seasonal\"": \""15%\""}",245489,1,"""Asia""" +2024-06-14,2725,5277,"[\""Laptop\""]",1679.81,{},212242,0,"""Asia""" +2023-05-16,2726,7895,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2288.31,"{\""promo\"": \""10%\""}",95867,1,"""South America""" +2024-08-13,2727,6265,"[\""Wireless Mouse\"", \""Tablet\""]",2764.72,{},272154,1,"""North America""" +2024-10-10,2728,1785,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",650.38,{},197036,1,"""North America""" +2024-05-15,2729,6406,"[\""Laptop\"", \""Tablet\""]",1468.83,{},20507,1,"""North America""" +2024-11-22,2730,1057,"[\""Headphones\"", \""Phone\""]",3757.5,"{\""promo\"": \""6%\""}",88276,0,"""North America""" +2023-09-27,2731,9040,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3905.35,"{\"": \""6%\""}",19725,0,"""Asia""" +2024-05-26,2732,4146,"[\""Tablet\""]",2957.21,"{\""promo\"": \""23%\""}",171705,1,"""Africa""" +2023-11-08,2733,3055,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",719.56,"{\""loyalty\"": \""11%\""}",49394,0,"""Africa""" +2024-06-02,2734,513,"[\""Keyboard\""]",679.69,"{\"": \""6%\""}",2039,0,"""Asia""" +2024-11-09,2735,29,"[\""Keyboard\""]",1350.28,{},192846,0,"""South America""" +2024-02-07,2736,4470,"[\""Wireless Mouse\""]",1098.89,"{\""seasonal\"": \""26%\""}",135260,0,"""South America""" +2023-09-14,2737,1273,"[\""Monitor\""]",2855.84,{},247824,0,"""Europe""" +2023-09-03,2738,9560,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1539.04,{},40285,1,"""Africa""" +2024-08-02,2739,4012,"[\""Keyboard\"", \""Tablet\""]",3170.28,{},33710,1,"""South America""" +2023-02-13,2740,77,"[\""Charger\""]",2362.01,{},39534,0,"""South America""" +2024-09-17,2741,2469,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2103.86,{},85711,1,"""Asia""" +2024-07-29,2742,146,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1827.26,{},273124,1,"""Asia""" +2024-03-13,2743,3360,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3285.31,"{\"": \""10%\""}",127580,0,"""Europe""" +2024-04-01,2744,4011,"[\""Keyboard\"", \""Tablet\""]",2952.15,{},76137,1,"""Asia""" +2024-11-12,2745,216,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",264.45,"{\""seasonal\"": \""19%\""}",26985,1,"""South America""" +2024-08-13,2746,7944,"[\""Wireless Mouse\"", \""Laptop\""]",211.11,{},117644,0,"""Africa""" +2023-04-17,2747,3780,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4956.35,"{\""seasonal\"": \""22%\""}",221841,0,"""North America""" +2024-06-02,2748,613,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4836.76,"{\""promo\"": \""13%\""}",222283,0,"""North America""" +2024-04-07,2749,6573,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1711.73,{},165424,1,"""Asia""" +2023-09-12,2750,1501,"[\""Phone\""]",488.99,"{\""seasonal\"": \""23%\""}",22816,0,"""Africa""" +2024-08-08,2751,6339,"[\""Wireless Mouse\"", \""Headphones\""]",4877.28,{},207855,1,"""Europe""" +2024-08-04,2752,7111,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1989.57,"{\""loyalty\"": \""19%\""}",55236,0,"""North America""" +2024-09-01,2753,1483,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4635.83,"{\"": \""30%\""}",73169,1,"""Europe""" +2023-06-23,2754,5058,"[\""Charger\""]",3626.85,"{\""loyalty\"": \""17%\""}",246196,1,"""South America""" +2023-06-08,2755,1585,"[\""Charger\""]",3251.58,"{\""loyalty\"": \""12%\""}",224991,0,"""North America""" +2023-05-08,2756,9134,"[\""Keyboard\""]",221.19,"{\""promo\"": \""15%\""}",77487,0,"""North America""" +2024-12-11,2757,8299,"[\""Phone\""]",2051.25,{},233252,1,"""Europe""" +2024-10-25,2758,1825,"[\""Keyboard\""]",2398.56,{},291125,0,"""South America""" +2023-08-17,2759,9953,"[\""Laptop\"", \""Tablet\""]",435.07,{},269193,1,"""South America""" +2023-07-26,2760,4373,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4491.61,{},160848,0,"""South America""" +2023-11-14,2761,5642,"[\""Charger\""]",4498.32,"{\""seasonal\"": \""13%\""}",264684,1,"""Africa""" +2024-01-16,2762,4675,"[\""Wireless Mouse\"", \""Tablet\""]",3546.1,"{\""promo\"": \""30%\""}",75159,1,"""Europe""" +2024-01-30,2763,4951,"[\""Charger\""]",4549.76,"{\"": \""12%\""}",124969,0,"""Europe""" +2024-03-18,2764,462,"[\""Tablet\""]",4273.67,{},210171,0,"""Asia""" +2023-01-13,2765,893,"[\""Laptop\"", \""Monitor\""]",3518.58,{},174918,1,"""South America""" +2023-01-21,2766,3834,"[\""Keyboard\""]",4562.92,"{\""loyalty\"": \""18%\""}",181560,1,"""Africa""" +2023-10-28,2767,7753,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1108.42,"{\""loyalty\"": \""10%\""}",260061,1,"""Asia""" +2024-10-15,2768,958,"[\""Wireless Mouse\"", \""Headphones\""]",3003.69,{},36211,0,"""Europe""" +2023-04-10,2769,5033,"[\""Phone\""]",4383.13,"{\""seasonal\"": \""30%\""}",61216,1,"""Europe""" +2023-02-24,2770,3614,"[\""Charger\"", \""Phone\""]",4434.72,{},263206,1,"""Europe""" +2024-03-25,2771,9611,"[\""Monitor\""]",2099.36,{},44496,0,"""Europe""" +2024-01-21,2772,7000,"[\""Monitor\"", \""Keyboard\""]",1575.56,"{\"": \""17%\""}",241680,1,"""Europe""" +2024-02-27,2773,7472,"[\""Keyboard\""]",1469.07,"{\""promo\"": \""22%\""}",172068,1,"""Asia""" +2023-11-17,2774,347,"[\""Headphones\"", \""Phone\""]",2266.38,"{\""seasonal\"": \""25%\""}",1760,0,"""Africa""" +2024-10-06,2775,6405,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3380.52,{},109584,0,"""Asia""" +2023-12-10,2776,6154,"[\""Headphones\""]",3674.45,"{\""promo\"": \""8%\""}",167789,1,"""Europe""" +2023-12-28,2777,4944,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1276.0,"{\""seasonal\"": \""30%\""}",21142,0,"""Europe""" +2024-04-19,2778,7324,"[\""Monitor\""]",452.28,"{\"": \""24%\""}",1816,0,"""Asia""" +2023-01-11,2779,2518,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1512.78,{},131207,0,"""South America""" +2024-05-01,2780,9507,"[\""Charger\""]",4301.34,{},10252,1,"""Africa""" +2024-10-31,2781,8929,"[\""Charger\""]",4620.62,{},91155,1,"""Asia""" +2023-08-27,2782,9535,"[\""Tablet\"", \""Monitor\""]",4516.48,"{\""loyalty\"": \""22%\""}",221895,1,"""Europe""" +2023-06-12,2783,1649,"[\""Phone\""]",1666.01,"{\""promo\"": \""11%\""}",35662,0,"""South America""" +2023-06-17,2784,9735,"[\""Monitor\"", \""Phone\""]",3818.84,"{\""promo\"": \""8%\""}",216286,0,"""North America""" +2023-05-01,2785,3209,"[\""Charger\"", \""Phone\"", \""Laptop\""]",660.2,{},123992,0,"""North America""" +2024-01-12,2786,2261,"[\""Phone\""]",2747.61,"{\""promo\"": \""19%\""}",88080,1,"""Africa""" +2024-09-14,2787,2065,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4387.65,{},256069,1,"""Africa""" +2024-09-13,2788,6744,"[\""Headphones\"", \""Phone\""]",4730.67,"{\""promo\"": \""15%\""}",127858,0,"""Africa""" +2024-12-20,2789,1642,"[\""Monitor\"", \""Phone\""]",935.58,{},299648,1,"""Africa""" +2023-11-01,2790,4504,"[\""Laptop\""]",1771.81,{},188929,1,"""Asia""" +2023-05-09,2791,70,"[\""Charger\"", \""Keyboard\""]",1674.72,"{\"": \""15%\""}",42655,0,"""Africa""" +2024-08-21,2792,975,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4690.92,{},73144,0,"""South America""" +2023-04-28,2793,6827,"[\""Wireless Mouse\"", \""Tablet\""]",4311.79,{},288187,0,"""Africa""" +2024-08-18,2794,8482,"[\""Tablet\""]",598.11,"{\""seasonal\"": \""15%\""}",18934,0,"""Asia""" +2024-11-24,2795,378,"[\""Charger\"", \""Headphones\""]",1271.72,"{\""seasonal\"": \""17%\""}",28825,0,"""Asia""" +2024-05-04,2796,3563,"[\""Wireless Mouse\"", \""Laptop\""]",1477.65,{},127088,1,"""Europe""" +2023-03-07,2797,3894,"[\""Tablet\"", \""Monitor\""]",3957.1,"{\""seasonal\"": \""13%\""}",192442,1,"""South America""" +2023-11-15,2798,2898,"[\""Laptop\""]",3919.4,{},153443,1,"""Asia""" +2023-07-19,2799,8755,"[\""Keyboard\""]",4495.03,{},150664,0,"""Europe""" +2023-08-30,2800,8419,"[\""Keyboard\""]",535.44,"{\"": \""15%\""}",181214,1,"""Africa""" +2023-11-24,2801,6035,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4831.75,"{\"": \""30%\""}",67598,1,"""South America""" +2024-12-15,2802,3250,"[\""Keyboard\"", \""Tablet\""]",1625.42,{},194920,0,"""Europe""" +2023-11-25,2803,9259,"[\""Laptop\"", \""Charger\""]",1010.52,"{\""loyalty\"": \""27%\""}",174920,1,"""Europe""" +2023-06-03,2804,9378,"[\""Monitor\"", \""Headphones\""]",4539.85,{},44452,1,"""Africa""" +2023-06-09,2805,2688,"[\""Wireless Mouse\""]",1399.67,"{\""loyalty\"": \""6%\""}",79959,0,"""Africa""" +2023-08-05,2806,4687,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4284.36,{},44773,0,"""North America""" +2024-01-10,2807,7430,"[\""Headphones\"", \""Wireless Mouse\""]",3673.13,"{\""seasonal\"": \""18%\""}",63134,0,"""North America""" +2024-10-15,2808,8414,"[\""Headphones\""]",184.86,"{\""seasonal\"": \""29%\""}",53232,1,"""Europe""" +2024-06-12,2809,3972,"[\""Phone\"", \""Keyboard\""]",1506.54,{},217801,0,"""Europe""" +2024-05-22,2810,8882,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4305.79,"{\""loyalty\"": \""20%\""}",43845,1,"""South America""" +2023-06-02,2811,3361,"[\""Charger\"", \""Keyboard\""]",1356.77,{},126145,1,"""North America""" +2024-08-22,2812,6608,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3913.79,{},211117,0,"""Asia""" +2023-04-14,2813,3556,"[\""Keyboard\""]",607.54,"{\""loyalty\"": \""12%\""}",252807,0,"""South America""" +2024-11-15,2814,7840,"[\""Keyboard\"", \""Charger\""]",2918.02,"{\""loyalty\"": \""17%\""}",46406,0,"""Asia""" +2023-04-17,2815,3088,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1084.92,{},211532,1,"""North America""" +2024-02-10,2816,172,"[\""Keyboard\"", \""Laptop\""]",738.63,{},190223,1,"""Europe""" +2023-06-20,2817,7594,"[\""Phone\""]",1291.27,"{\""seasonal\"": \""18%\""}",286467,1,"""Africa""" +2024-02-17,2818,7989,"[\""Headphones\"", \""Charger\""]",3840.75,{},248783,1,"""Asia""" +2024-09-10,2819,1197,"[\""Phone\""]",3426.7,{},156559,0,"""Asia""" +2024-05-21,2820,5026,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1680.97,{},92225,1,"""Asia""" +2023-01-25,2821,137,"[\""Phone\"", \""Laptop\""]",2087.07,{},194771,1,"""Europe""" +2023-06-23,2822,842,"[\""Phone\"", \""Keyboard\""]",3681.27,{},59085,0,"""South America""" +2023-01-22,2823,4563,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4605.14,"{\""loyalty\"": \""21%\""}",216136,1,"""Asia""" +2024-04-24,2824,1408,"[\""Keyboard\"", \""Tablet\""]",2852.28,"{\""loyalty\"": \""21%\""}",250677,0,"""North America""" +2023-08-06,2825,5061,"[\""Charger\""]",1402.6,"{\"": \""20%\""}",284401,1,"""Asia""" +2023-04-22,2826,2398,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",573.64,"{\""promo\"": \""19%\""}",148851,0,"""Asia""" +2023-01-11,2827,9674,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2794.61,"{\""seasonal\"": \""23%\""}",128742,0,"""South America""" +2024-10-30,2828,5716,"[\""Laptop\""]",3012.69,"{\""loyalty\"": \""6%\""}",76894,0,"""South America""" +2024-09-03,2829,735,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3695.75,{},238871,0,"""South America""" +2024-04-18,2830,2020,"[\""Headphones\""]",640.13,"{\""promo\"": \""11%\""}",96076,0,"""North America""" +2023-07-15,2831,6090,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2030.5,"{\""promo\"": \""29%\""}",19117,0,"""Africa""" +2024-05-20,2832,1897,"[\""Laptop\""]",4993.85,{},284830,0,"""Asia""" +2023-10-15,2833,8755,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1226.92,{},231330,1,"""North America""" +2024-11-13,2834,4615,"[\""Wireless Mouse\"", \""Charger\""]",1402.76,{},236190,0,"""Europe""" +2024-07-03,2835,6108,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1712.34,{},209585,1,"""North America""" +2023-12-03,2836,6893,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4806.42,"{\""loyalty\"": \""26%\""}",53709,1,"""Europe""" +2024-02-10,2837,61,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1267.75,{},80520,0,"""Europe""" +2023-02-07,2838,968,"[\""Headphones\""]",1925.36,{},149609,0,"""South America""" +2024-12-11,2839,634,"[\""Charger\""]",1421.77,{},155334,1,"""Asia""" +2024-02-09,2840,5127,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4654.29,{},56583,1,"""South America""" +2023-09-16,2841,4548,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2373.64,"{\""seasonal\"": \""30%\""}",80840,1,"""South America""" +2024-11-21,2842,9340,"[\""Wireless Mouse\"", \""Keyboard\""]",2329.13,"{\""promo\"": \""8%\""}",75525,1,"""Europe""" +2023-03-08,2843,3788,"[\""Headphones\"", \""Keyboard\""]",4030.64,"{\""loyalty\"": \""7%\""}",76264,0,"""Europe""" +2023-07-23,2844,5857,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",647.19,{},27228,1,"""North America""" +2023-06-29,2845,8646,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4558.47,{},148080,0,"""Asia""" +2024-03-11,2846,5604,"[\""Monitor\""]",2784.79,{},33734,0,"""Africa""" +2024-11-13,2847,3157,"[\""Charger\""]",817.4,"{\"": \""8%\""}",297292,1,"""South America""" +2024-02-15,2848,2474,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1958.79,"{\""loyalty\"": \""18%\""}",144122,0,"""Asia""" +2024-07-06,2849,8538,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2236.32,"{\"": \""22%\""}",26818,1,"""North America""" +2024-06-23,2850,2300,"[\""Phone\"", \""Laptop\""]",1831.08,{},237219,1,"""North America""" +2024-11-04,2851,5731,"[\""Phone\""]",908.47,{},47889,1,"""Asia""" +2023-09-18,2852,2074,"[\""Keyboard\""]",1575.64,{},93705,0,"""South America""" +2023-04-11,2853,9289,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3082.28,{},94804,1,"""Europe""" +2024-07-24,2854,9830,"[\""Keyboard\""]",1245.57,"{\"": \""6%\""}",241395,1,"""South America""" +2024-11-21,2855,929,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4939.22,"{\""promo\"": \""12%\""}",140092,0,"""Asia""" +2023-09-02,2856,5232,"[\""Wireless Mouse\"", \""Phone\""]",2387.66,"{\""loyalty\"": \""16%\""}",285859,1,"""Africa""" +2024-03-30,2857,2459,"[\""Keyboard\""]",1626.67,"{\""promo\"": \""28%\""}",64342,0,"""Europe""" +2024-09-02,2858,4149,"[\""Headphones\"", \""Tablet\""]",3278.52,{},288298,0,"""Asia""" +2024-01-09,2859,1631,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",191.56,{},184044,1,"""Africa""" +2024-05-07,2860,3628,"[\""Laptop\""]",1506.36,{},165203,0,"""Europe""" +2023-02-22,2861,42,"[\""Tablet\""]",4400.34,{},262009,1,"""Africa""" +2023-03-08,2862,4950,"[\""Phone\""]",2827.05,{},36516,0,"""Africa""" +2023-04-02,2863,6820,"[\""Phone\"", \""Monitor\""]",4414.98,{},78100,1,"""Europe""" +2023-06-13,2864,608,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4644.65,{},181980,0,"""South America""" +2024-06-20,2865,5067,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3289.45,"{\"": \""17%\""}",48572,0,"""Africa""" +2023-09-10,2866,2040,"[\""Monitor\"", \""Charger\""]",3001.14,"{\""seasonal\"": \""29%\""}",68094,1,"""Africa""" +2024-05-14,2867,5063,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",732.6,"{\""promo\"": \""10%\""}",223639,0,"""North America""" +2023-10-20,2868,6949,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2372.75,"{\"": \""11%\""}",24114,0,"""Europe""" +2023-08-21,2869,7160,"[\""Phone\""]",1169.64,{},46756,1,"""North America""" +2024-10-16,2870,5886,"[\""Charger\""]",4257.04,{},225311,0,"""Asia""" +2023-12-25,2871,9313,"[\""Keyboard\""]",1466.9,"{\""loyalty\"": \""9%\""}",102103,0,"""South America""" +2023-05-03,2872,5822,"[\""Laptop\"", \""Keyboard\""]",3249.4,"{\""seasonal\"": \""22%\""}",282699,0,"""South America""" +2024-11-28,2873,5288,"[\""Monitor\""]",1803.55,"{\"": \""10%\""}",268621,1,"""Asia""" +2024-03-01,2874,4030,"[\""Tablet\""]",3786.22,{},192290,0,"""North America""" +2024-10-29,2875,6268,"[\""Charger\"", \""Laptop\""]",1213.43,{},117848,0,"""Asia""" +2024-12-17,2876,2240,"[\""Headphones\""]",4467.5,"{\"": \""20%\""}",224497,1,"""North America""" +2023-06-20,2877,1156,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4779.0,{},111075,0,"""Africa""" +2023-06-20,2878,1013,"[\""Keyboard\""]",2316.25,{},66180,0,"""Europe""" +2024-02-16,2879,852,"[\""Monitor\""]",4388.57,{},148226,1,"""Asia""" +2024-12-22,2880,4652,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1881.02,{},86274,1,"""Asia""" +2023-09-20,2881,9770,"[\""Monitor\""]",2582.65,{},74780,1,"""Europe""" +2024-09-23,2882,9202,"[\""Monitor\"", \""Phone\""]",316.38,{},271074,1,"""North America""" +2023-08-30,2883,9981,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1622.71,{},247504,1,"""South America""" +2024-02-03,2884,2988,"[\""Tablet\""]",4795.84,{},256256,0,"""Europe""" +2023-05-14,2885,3031,"[\""Phone\""]",1058.07,"{\"": \""30%\""}",54720,1,"""Africa""" +2024-04-20,2886,4217,"[\""Keyboard\"", \""Laptop\""]",788.61,"{\""promo\"": \""9%\""}",213411,0,"""Africa""" +2024-12-01,2887,9871,"[\""Tablet\""]",3349.51,"{\""seasonal\"": \""7%\""}",131827,1,"""South America""" +2024-05-07,2888,4106,"[\""Monitor\""]",2963.44,"{\""seasonal\"": \""7%\""}",215540,1,"""Europe""" +2024-06-14,2889,1141,"[\""Wireless Mouse\"", \""Monitor\""]",2065.37,{},17782,0,"""Africa""" +2023-11-27,2890,8652,"[\""Keyboard\""]",1657.48,{},116344,0,"""Europe""" +2023-04-09,2891,3837,"[\""Charger\"", \""Monitor\""]",1663.97,{},200008,1,"""Europe""" +2023-12-15,2892,9889,"[\""Tablet\"", \""Headphones\""]",4824.84,"{\""promo\"": \""8%\""}",252061,1,"""Europe""" +2023-06-14,2893,3925,"[\""Headphones\""]",922.13,{},7304,0,"""South America""" +2023-08-31,2894,6278,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3850.64,{},70735,0,"""Europe""" +2023-11-24,2895,4681,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",728.25,"{\"": \""18%\""}",270670,0,"""Asia""" +2023-12-04,2896,2524,"[\""Tablet\"", \""Keyboard\""]",1559.88,"{\""promo\"": \""11%\""}",56478,0,"""Africa""" +2023-06-04,2897,9644,"[\""Wireless Mouse\""]",4238.28,"{\""loyalty\"": \""25%\""}",128862,1,"""Africa""" +2023-01-30,2898,3217,"[\""Laptop\""]",4680.23,{},215728,1,"""North America""" +2023-07-21,2899,9346,"[\""Laptop\"", \""Charger\""]",3599.34,"{\""seasonal\"": \""26%\""}",243160,1,"""Africa""" +2023-07-19,2900,9889,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2173.72,{},260169,0,"""Asia""" +2023-11-20,2901,7466,"[\""Charger\""]",3975.19,"{\""loyalty\"": \""29%\""}",203254,1,"""North America""" +2023-11-01,2902,2894,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2647.57,{},188668,0,"""North America""" +2023-03-16,2903,3273,"[\""Phone\""]",4297.67,{},23362,1,"""Europe""" +2023-03-26,2904,5877,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4347.91,"{\""seasonal\"": \""10%\""}",186433,0,"""North America""" +2024-12-22,2905,1665,"[\""Tablet\"", \""Wireless Mouse\""]",2086.83,"{\""loyalty\"": \""25%\""}",262485,0,"""Africa""" +2023-02-21,2906,3890,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3004.06,{},24222,0,"""Africa""" +2024-10-19,2907,6108,"[\""Charger\""]",2226.04,"{\""promo\"": \""30%\""}",7230,1,"""North America""" +2024-03-21,2908,2104,"[\""Laptop\"", \""Wireless Mouse\""]",283.88,"{\""seasonal\"": \""12%\""}",80472,0,"""South America""" +2024-12-17,2909,1799,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1647.23,"{\"": \""10%\""}",28570,0,"""North America""" +2024-03-30,2910,2436,"[\""Phone\""]",617.1,"{\"": \""19%\""}",21646,0,"""Africa""" +2023-03-27,2911,6335,"[\""Tablet\"", \""Phone\""]",4552.31,"{\"": \""17%\""}",277899,1,"""South America""" +2024-01-28,2912,295,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1500.8,{},112724,0,"""Africa""" +2023-10-17,2913,4029,"[\""Tablet\"", \""Laptop\""]",716.44,"{\""promo\"": \""29%\""}",140801,1,"""North America""" +2023-01-17,2914,5029,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1503.29,{},42224,0,"""North America""" +2023-07-13,2915,7213,"[\""Charger\""]",433.98,{},15002,1,"""Europe""" +2023-02-13,2916,5829,"[\""Wireless Mouse\""]",322.15,"{\""seasonal\"": \""22%\""}",205331,1,"""Europe""" +2023-09-27,2917,564,"[\""Laptop\""]",808.2,"{\""seasonal\"": \""5%\""}",131646,1,"""Asia""" +2023-10-01,2918,2486,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3919.89,"{\""loyalty\"": \""22%\""}",150610,1,"""Africa""" +2024-01-14,2919,1114,"[\""Monitor\""]",2271.02,"{\""seasonal\"": \""20%\""}",157300,1,"""South America""" +2024-04-01,2920,8095,"[\""Laptop\""]",146.01,{},141759,0,"""North America""" +2024-12-21,2921,8981,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3887.57,"{\""loyalty\"": \""5%\""}",118718,1,"""North America""" +2023-09-29,2922,5253,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1527.17,{},146962,1,"""Africa""" +2023-05-07,2923,950,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",977.67,"{\""loyalty\"": \""20%\""}",214091,0,"""Europe""" +2023-01-31,2924,831,"[\""Charger\"", \""Laptop\""]",2874.56,{},113050,0,"""Asia""" +2024-06-12,2925,9870,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3829.15,"{\""seasonal\"": \""19%\""}",49386,1,"""North America""" +2023-03-21,2926,4096,"[\""Phone\"", \""Laptop\""]",418.4,{},282232,1,"""Asia""" +2023-05-13,2927,2566,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4993.27,"{\"": \""26%\""}",107229,0,"""Africa""" +2024-02-10,2928,9731,"[\""Laptop\"", \""Tablet\""]",4746.29,{},44977,1,"""Europe""" +2023-06-17,2929,9144,"[\""Phone\"", \""Laptop\""]",1904.5,{},202733,1,"""Africa""" +2024-06-06,2930,9727,"[\""Headphones\"", \""Tablet\""]",1936.04,"{\"": \""19%\""}",143805,1,"""Asia""" +2024-11-05,2931,3063,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3854.88,"{\""seasonal\"": \""13%\""}",125247,1,"""Asia""" +2023-04-21,2932,715,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1369.72,"{\""promo\"": \""20%\""}",46227,1,"""North America""" +2023-01-16,2933,3178,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4418.05,{},99053,1,"""South America""" +2024-05-23,2934,4734,"[\""Wireless Mouse\""]",721.32,"{\""seasonal\"": \""22%\""}",230900,0,"""North America""" +2023-03-16,2935,1856,"[\""Monitor\"", \""Charger\""]",3627.35,"{\""seasonal\"": \""12%\""}",239248,1,"""Asia""" +2023-11-10,2936,8332,"[\""Laptop\"", \""Charger\""]",952.33,"{\""promo\"": \""24%\""}",77915,1,"""South America""" +2024-08-07,2937,8257,"[\""Monitor\"", \""Headphones\""]",1193.46,{},246660,1,"""Africa""" +2023-04-13,2938,7964,"[\""Keyboard\""]",4563.91,"{\"": \""12%\""}",1903,0,"""South America""" +2024-12-11,2939,9093,"[\""Laptop\"", \""Charger\""]",1057.38,{},262559,1,"""Asia""" +2024-07-06,2940,6678,"[\""Headphones\"", \""Phone\""]",2576.09,{},110380,1,"""Europe""" +2023-11-21,2941,8212,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3096.9,{},90418,0,"""Europe""" +2024-11-16,2942,6326,"[\""Laptop\"", \""Keyboard\""]",112.33,{},235160,1,"""South America""" +2023-09-01,2943,9853,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2694.01,"{\""promo\"": \""9%\""}",126006,0,"""North America""" +2024-02-16,2944,7199,"[\""Headphones\"", \""Phone\""]",3333.3,{},10824,0,"""Africa""" +2024-11-12,2945,1156,"[\""Charger\"", \""Monitor\"", \""Phone\""]",841.76,{},242409,1,"""North America""" +2024-10-24,2946,425,"[\""Headphones\"", \""Phone\""]",699.18,"{\""seasonal\"": \""17%\""}",266720,0,"""Asia""" +2023-10-15,2947,5150,"[\""Phone\"", \""Wireless Mouse\""]",2519.09,{},167122,0,"""Europe""" +2024-10-13,2948,7537,"[\""Phone\""]",4463.56,{},299331,0,"""North America""" +2023-09-19,2949,9462,"[\""Monitor\""]",4158.84,"{\""promo\"": \""24%\""}",178947,1,"""South America""" +2023-08-25,2950,6851,"[\""Wireless Mouse\"", \""Tablet\""]",4662.16,{},283614,1,"""South America""" +2023-10-14,2951,6443,"[\""Phone\""]",2822.03,"{\"": \""22%\""}",12926,0,"""North America""" +2023-11-02,2952,9014,"[\""Monitor\"", \""Headphones\""]",3679.39,"{\""seasonal\"": \""12%\""}",158669,1,"""North America""" +2023-09-07,2953,2213,"[\""Tablet\"", \""Wireless Mouse\""]",3813.23,"{\"": \""8%\""}",238690,1,"""Europe""" +2023-11-18,2954,4918,"[\""Charger\"", \""Wireless Mouse\""]",3440.71,{},279966,0,"""South America""" +2023-05-22,2955,5587,"[\""Keyboard\"", \""Wireless Mouse\""]",1853.55,"{\""seasonal\"": \""30%\""}",80031,0,"""Africa""" +2024-04-08,2956,4445,"[\""Wireless Mouse\""]",4080.66,{},210438,0,"""Asia""" +2024-04-11,2957,3980,"[\""Phone\""]",3842.09,{},158106,1,"""Europe""" +2024-08-29,2958,7667,"[\""Phone\"", \""Wireless Mouse\""]",643.82,"{\""promo\"": \""22%\""}",49927,1,"""Africa""" +2023-01-12,2959,3009,"[\""Phone\"", \""Charger\""]",652.51,{},55952,1,"""Asia""" +2024-01-03,2960,2459,"[\""Wireless Mouse\"", \""Phone\""]",3499.44,{},15787,0,"""South America""" +2023-07-15,2961,9058,"[\""Monitor\""]",1611.99,{},94443,1,"""Africa""" +2023-08-02,2962,3403,"[\""Wireless Mouse\"", \""Phone\""]",4758.78,"{\""seasonal\"": \""13%\""}",241371,0,"""North America""" +2024-09-15,2963,7624,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4319.32,{},47265,1,"""Asia""" +2023-08-13,2964,3494,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3694.99,"{\""seasonal\"": \""5%\""}",219880,1,"""Europe""" +2024-01-18,2965,9096,"[\""Charger\"", \""Keyboard\""]",3780.97,{},3572,1,"""Asia""" +2024-01-09,2966,8562,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4889.35,"{\""loyalty\"": \""30%\""}",117477,1,"""Africa""" +2024-01-19,2967,3572,"[\""Phone\"", \""Laptop\"", \""Charger\""]",255.38,"{\"": \""27%\""}",85378,0,"""Europe""" +2023-04-18,2968,1569,"[\""Laptop\"", \""Headphones\""]",659.97,{},101391,1,"""Asia""" +2023-01-19,2969,6169,"[\""Wireless Mouse\"", \""Phone\""]",4656.49,{},252127,0,"""South America""" +2024-02-19,2970,4805,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4059.68,{},37334,0,"""Europe""" +2024-11-22,2971,1740,"[\""Phone\"", \""Laptop\""]",999.22,"{\""promo\"": \""13%\""}",60511,1,"""South America""" +2024-05-19,2972,7027,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",714.11,"{\""seasonal\"": \""28%\""}",13516,1,"""South America""" +2024-12-28,2973,9409,"[\""Wireless Mouse\"", \""Phone\""]",348.58,{},218600,0,"""North America""" +2023-05-27,2974,2800,"[\""Laptop\"", \""Headphones\""]",3131.18,"{\"": \""21%\""}",109284,0,"""South America""" +2023-06-07,2975,2786,"[\""Headphones\""]",2812.74,{},104906,0,"""South America""" +2023-09-05,2976,6688,"[\""Wireless Mouse\"", \""Laptop\""]",1572.41,"{\""promo\"": \""30%\""}",268147,1,"""Africa""" +2023-12-01,2977,6206,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1621.32,{},199582,0,"""Europe""" +2023-02-25,2978,9511,"[\""Phone\"", \""Wireless Mouse\""]",1595.47,"{\""loyalty\"": \""23%\""}",195198,0,"""Asia""" +2023-06-09,2979,4079,"[\""Wireless Mouse\"", \""Tablet\""]",568.48,"{\"": \""8%\""}",204504,1,"""South America""" +2023-05-03,2980,7717,"[\""Charger\""]",1847.66,"{\"": \""8%\""}",215467,0,"""South America""" +2023-11-15,2981,7263,"[\""Charger\"", \""Monitor\""]",4298.85,{},189411,0,"""Europe""" +2023-08-13,2982,5805,"[\""Wireless Mouse\""]",1889.58,{},208850,0,"""Africa""" +2023-07-02,2983,8864,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4941.91,{},253595,1,"""Africa""" +2023-01-08,2984,9815,"[\""Charger\""]",2626.18,"{\""loyalty\"": \""9%\""}",17423,1,"""Africa""" +2024-10-09,2985,4325,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3576.39,"{\"": \""28%\""}",280639,0,"""Africa""" +2023-06-10,2986,1322,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1264.25,{},192526,0,"""Asia""" +2024-01-13,2987,5854,"[\""Wireless Mouse\"", \""Laptop\""]",1923.09,{},26001,1,"""Asia""" +2024-02-14,2988,5584,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4264.88,"{\"": \""14%\""}",280630,0,"""South America""" +2024-03-18,2989,5187,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2031.6,"{\""promo\"": \""5%\""}",246037,0,"""South America""" +2023-07-03,2990,1597,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1210.29,"{\"": \""18%\""}",160622,0,"""Africa""" +2023-07-24,2991,9789,"[\""Keyboard\"", \""Charger\""]",1672.71,{},289631,1,"""Africa""" +2024-03-29,2992,2137,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",409.17,"{\""promo\"": \""24%\""}",8959,0,"""Europe""" +2024-03-21,2993,6559,"[\""Laptop\""]",3937.78,"{\""loyalty\"": \""25%\""}",169714,0,"""South America""" +2024-06-22,2994,7442,"[\""Headphones\"", \""Charger\""]",3883.2,{},172983,0,"""South America""" +2024-10-07,2995,830,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3737.51,{},167984,1,"""South America""" +2023-10-05,2996,3155,"[\""Charger\""]",1134.07,"{\""loyalty\"": \""19%\""}",62211,0,"""Asia""" +2023-02-22,2997,9654,"[\""Headphones\""]",3684.24,{},277920,1,"""North America""" +2024-09-29,2998,6635,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1380.05,{},40202,1,"""Europe""" +2024-04-07,2999,6307,"[\""Charger\"", \""Tablet\""]",4144.78,{},34417,1,"""South America""" +2024-08-24,3000,315,"[\""Wireless Mouse\""]",4517.66,"{\""loyalty\"": \""30%\""}",145919,1,"""North America""" +2024-01-03,3001,2115,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2902.54,{},237530,0,"""Asia""" +2023-09-09,3002,5207,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4725.14,"{\""promo\"": \""30%\""}",51881,1,"""Europe""" +2024-10-23,3003,2090,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1172.0,"{\""promo\"": \""13%\""}",144968,1,"""Asia""" +2024-06-23,3004,3019,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3155.68,{},22919,0,"""Africa""" +2023-02-22,3005,5999,"[\""Wireless Mouse\"", \""Laptop\""]",2094.07,{},55909,1,"""South America""" +2023-11-11,3006,6991,"[\""Keyboard\"", \""Monitor\""]",1910.57,"{\""seasonal\"": \""16%\""}",144381,1,"""North America""" +2024-12-27,3007,379,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",310.81,"{\""loyalty\"": \""24%\""}",245859,1,"""Africa""" +2023-10-16,3008,2578,"[\""Headphones\""]",3606.63,{},273185,1,"""North America""" +2023-04-19,3009,4773,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2908.43,"{\""promo\"": \""25%\""}",211039,0,"""Asia""" +2024-02-11,3010,6317,"[\""Headphones\""]",532.09,"{\""loyalty\"": \""9%\""}",143521,0,"""Asia""" +2023-10-06,3011,2550,"[\""Tablet\"", \""Charger\""]",3839.25,{},67577,0,"""Africa""" +2023-09-04,3012,1210,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",122.99,{},264114,0,"""Asia""" +2023-07-15,3013,2869,"[\""Phone\""]",185.97,"{\""seasonal\"": \""9%\""}",175771,1,"""North America""" +2024-03-26,3014,6256,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3639.62,{},116215,1,"""Europe""" +2024-12-16,3015,7173,"[\""Charger\"", \""Wireless Mouse\""]",4159.36,"{\""promo\"": \""21%\""}",218327,0,"""Asia""" +2024-09-19,3016,1730,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4712.49,{},277030,0,"""North America""" +2023-04-12,3017,1678,"[\""Laptop\"", \""Charger\""]",1140.34,"{\""seasonal\"": \""22%\""}",177843,0,"""Europe""" +2023-09-18,3018,9867,"[\""Headphones\""]",1626.32,"{\""seasonal\"": \""20%\""}",156038,1,"""Africa""" +2023-12-12,3019,3838,"[\""Tablet\""]",3078.75,{},151123,0,"""Europe""" +2024-07-26,3020,575,"[\""Headphones\"", \""Keyboard\""]",1952.07,"{\""promo\"": \""27%\""}",107224,0,"""Europe""" +2024-02-13,3021,7998,"[\""Headphones\"", \""Keyboard\""]",4494.38,{},132821,0,"""Africa""" +2023-08-14,3022,1321,"[\""Tablet\""]",1298.77,"{\""loyalty\"": \""29%\""}",114797,1,"""North America""" +2024-03-25,3023,3179,"[\""Headphones\"", \""Laptop\""]",1731.01,"{\""loyalty\"": \""27%\""}",154418,0,"""Asia""" +2024-10-18,3024,518,"[\""Charger\"", \""Headphones\""]",3001.14,{},112186,1,"""Asia""" +2024-11-24,3025,1378,"[\""Phone\""]",3733.58,"{\"": \""11%\""}",210614,0,"""South America""" +2024-04-22,3026,8604,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3301.84,"{\""seasonal\"": \""27%\""}",249535,1,"""Asia""" +2024-08-08,3027,6400,"[\""Phone\""]",2911.9,{},26789,1,"""North America""" +2024-12-14,3028,5195,"[\""Monitor\"", \""Phone\""]",2438.14,"{\""seasonal\"": \""24%\""}",163555,1,"""Europe""" +2023-07-27,3029,9686,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3917.41,{},34544,0,"""Africa""" +2023-01-23,3030,6749,"[\""Charger\"", \""Tablet\""]",321.23,{},42054,1,"""Asia""" +2023-02-26,3031,3814,"[\""Keyboard\""]",3843.98,{},55114,1,"""North America""" +2023-06-02,3032,4329,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3716.67,{},194187,0,"""Africa""" +2023-04-23,3033,4482,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1933.69,{},224790,1,"""North America""" +2024-06-27,3034,8691,"[\""Wireless Mouse\""]",4212.42,"{\""loyalty\"": \""20%\""}",238559,1,"""Africa""" +2024-11-04,3035,7022,"[\""Phone\""]",4767.8,{},11007,0,"""Africa""" +2023-04-28,3036,7849,"[\""Headphones\""]",3658.1,"{\""loyalty\"": \""10%\""}",223196,1,"""South America""" +2023-10-25,3037,5817,"[\""Charger\"", \""Tablet\""]",2426.99,{},215524,1,"""Europe""" +2024-11-05,3038,288,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3103.18,"{\""seasonal\"": \""16%\""}",260808,0,"""Africa""" +2023-10-15,3039,6425,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2314.99,"{\"": \""13%\""}",182720,1,"""Africa""" +2023-05-01,3040,5338,"[\""Charger\""]",4823.9,"{\""loyalty\"": \""16%\""}",115349,1,"""South America""" +2023-03-10,3041,3353,"[\""Laptop\"", \""Keyboard\""]",441.76,{},45106,0,"""Africa""" +2024-11-02,3042,9874,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2020.33,{},173154,1,"""South America""" +2023-05-03,3043,8393,"[\""Wireless Mouse\"", \""Laptop\""]",2682.21,{},264543,0,"""Europe""" +2023-07-04,3044,669,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1250.43,"{\""seasonal\"": \""9%\""}",280778,0,"""North America""" +2023-02-11,3045,5220,"[\""Headphones\"", \""Wireless Mouse\""]",4376.64,"{\""seasonal\"": \""5%\""}",131496,0,"""Asia""" +2023-04-13,3046,1986,"[\""Tablet\""]",1250.29,{},13445,0,"""North America""" +2023-06-19,3047,7063,"[\""Phone\"", \""Charger\""]",2051.54,{},167690,0,"""Europe""" +2023-08-30,3048,5973,"[\""Tablet\""]",4190.39,"{\""seasonal\"": \""13%\""}",224199,1,"""Europe""" +2023-12-17,3049,5541,"[\""Charger\""]",2486.11,"{\""seasonal\"": \""12%\""}",288516,1,"""Europe""" +2024-09-02,3050,1409,"[\""Charger\"", \""Laptop\""]",672.85,"{\"": \""5%\""}",184920,0,"""North America""" +2023-07-16,3051,403,"[\""Laptop\""]",3719.76,"{\""promo\"": \""18%\""}",231176,0,"""Europe""" +2024-04-06,3052,8030,"[\""Phone\"", \""Headphones\""]",3068.14,"{\""promo\"": \""14%\""}",262675,1,"""North America""" +2024-06-15,3053,6494,"[\""Keyboard\"", \""Tablet\""]",465.48,{},53393,1,"""South America""" +2023-01-07,3054,4069,"[\""Keyboard\""]",2759.9,{},262644,0,"""Africa""" +2024-02-13,3055,3280,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4883.97,{},27592,1,"""North America""" +2023-07-30,3056,8387,"[\""Tablet\""]",3710.55,{},233270,0,"""North America""" +2024-08-05,3057,8033,"[\""Tablet\""]",4701.14,{},71618,1,"""Asia""" +2024-09-22,3058,9959,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3373.59,"{\""loyalty\"": \""10%\""}",1627,1,"""Europe""" +2024-05-25,3059,8181,"[\""Keyboard\""]",2667.69,"{\""promo\"": \""7%\""}",138970,1,"""Africa""" +2024-06-27,3060,2105,"[\""Wireless Mouse\"", \""Monitor\""]",1558.38,{},278176,0,"""South America""" +2024-12-19,3061,8457,"[\""Monitor\""]",1820.18,{},279869,1,"""Africa""" +2024-04-12,3062,9058,"[\""Tablet\"", \""Charger\""]",1316.34,"{\""seasonal\"": \""22%\""}",77965,0,"""Asia""" +2023-07-16,3063,1919,"[\""Charger\"", \""Phone\""]",2749.05,"{\""promo\"": \""10%\""}",182955,0,"""Asia""" +2024-05-21,3064,9619,"[\""Laptop\""]",3775.5,"{\""seasonal\"": \""23%\""}",121690,1,"""Asia""" +2024-09-25,3065,4944,"[\""Keyboard\"", \""Tablet\""]",2755.51,{},103975,0,"""Asia""" +2024-10-06,3066,5606,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1553.38,"{\""seasonal\"": \""24%\""}",246246,0,"""Africa""" +2024-12-10,3067,377,"[\""Charger\""]",1885.11,{},147888,1,"""Africa""" +2024-06-05,3068,3663,"[\""Phone\"", \""Tablet\""]",3852.09,"{\""promo\"": \""20%\""}",41348,1,"""Asia""" +2024-12-23,3069,3717,"[\""Keyboard\""]",3899.24,"{\"": \""8%\""}",216079,0,"""Africa""" +2024-04-24,3070,5885,"[\""Tablet\""]",2070.95,"{\"": \""11%\""}",5547,0,"""South America""" +2023-10-11,3071,6559,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4816.31,{},30428,1,"""South America""" +2023-11-27,3072,5642,"[\""Headphones\""]",397.81,"{\""loyalty\"": \""6%\""}",238635,0,"""Africa""" +2024-02-15,3073,6427,"[\""Wireless Mouse\"", \""Tablet\""]",4253.17,"{\""seasonal\"": \""26%\""}",103091,0,"""Europe""" +2023-06-01,3074,6001,"[\""Laptop\""]",1137.5,{},289205,0,"""North America""" +2023-09-15,3075,3761,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3217.46,{},84746,0,"""South America""" +2024-11-14,3076,8194,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2086.07,{},275634,1,"""South America""" +2023-12-28,3077,8321,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2605.13,"{\"": \""12%\""}",11339,1,"""Asia""" +2024-12-03,3078,7484,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1912.53,"{\"": \""16%\""}",242557,0,"""South America""" +2024-05-21,3079,7368,"[\""Wireless Mouse\""]",3892.03,"{\""promo\"": \""27%\""}",17310,0,"""Europe""" +2024-11-29,3080,2744,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",960.67,{},123772,0,"""North America""" +2024-03-25,3081,7456,"[\""Laptop\"", \""Monitor\""]",4712.06,{},45186,1,"""Africa""" +2024-05-04,3082,6904,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2621.39,"{\""loyalty\"": \""14%\""}",77320,0,"""North America""" +2023-11-21,3083,6966,"[\""Keyboard\""]",4286.07,{},112030,1,"""Europe""" +2023-02-16,3084,4772,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2620.01,"{\""seasonal\"": \""21%\""}",197370,1,"""South America""" +2023-12-27,3085,6633,"[\""Tablet\"", \""Charger\""]",634.95,"{\""seasonal\"": \""30%\""}",297882,0,"""Africa""" +2024-11-23,3086,2172,"[\""Wireless Mouse\""]",417.79,{},93624,0,"""Africa""" +2024-03-08,3087,9896,"[\""Wireless Mouse\"", \""Phone\""]",2888.39,"{\""loyalty\"": \""14%\""}",144041,0,"""Asia""" +2024-09-20,3088,333,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1008.3,"{\"": \""17%\""}",32072,0,"""Asia""" +2024-06-28,3089,2629,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4149.89,"{\""seasonal\"": \""28%\""}",3407,1,"""North America""" +2023-06-17,3090,7973,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1287.74,{},82836,1,"""Africa""" +2023-12-18,3091,656,"[\""Laptop\"", \""Monitor\""]",148.77,{},102409,1,"""North America""" +2024-06-27,3092,996,"[\""Wireless Mouse\"", \""Monitor\""]",2202.81,{},56419,0,"""Asia""" +2024-06-25,3093,2515,"[\""Charger\""]",2855.77,{},262397,1,"""Europe""" +2023-07-23,3094,9202,"[\""Charger\""]",89.65,"{\"": \""8%\""}",274076,0,"""Asia""" +2023-11-22,3095,8253,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",502.1,{},68960,1,"""Asia""" +2023-10-28,3096,2917,"[\""Wireless Mouse\""]",687.97,{},14457,1,"""Europe""" +2023-02-22,3097,7006,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4669.7,"{\""promo\"": \""6%\""}",72241,0,"""Europe""" +2024-10-27,3098,1961,"[\""Laptop\"", \""Monitor\""]",3540.63,{},270085,1,"""Africa""" +2024-03-17,3099,5736,"[\""Laptop\""]",4858.37,"{\""seasonal\"": \""30%\""}",174061,0,"""North America""" +2024-04-22,3100,798,"[\""Phone\"", \""Keyboard\""]",3051.9,{},190087,1,"""Africa""" +2023-09-25,3101,44,"[\""Tablet\""]",3419.23,"{\""seasonal\"": \""18%\""}",153974,1,"""South America""" +2024-01-14,3102,9743,"[\""Wireless Mouse\""]",3114.12,{},264315,0,"""Asia""" +2024-01-08,3103,1853,"[\""Tablet\"", \""Headphones\""]",4409.35,"{\""loyalty\"": \""25%\""}",197271,0,"""North America""" +2024-08-03,3104,4159,"[\""Headphones\""]",520.67,{},3632,0,"""South America""" +2023-12-14,3105,4850,"[\""Monitor\"", \""Laptop\""]",3450.9,"{\"": \""13%\""}",235244,0,"""Asia""" +2024-02-24,3106,1349,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2970.99,"{\""loyalty\"": \""29%\""}",162665,0,"""North America""" +2023-12-18,3107,2900,"[\""Tablet\""]",680.73,"{\""promo\"": \""14%\""}",246813,0,"""North America""" +2023-08-04,3108,6582,"[\""Phone\"", \""Tablet\""]",3689.13,"{\"": \""15%\""}",292945,0,"""Asia""" +2024-08-28,3109,3998,"[\""Tablet\""]",979.65,{},263873,1,"""Europe""" +2024-04-22,3110,8321,"[\""Laptop\"", \""Monitor\""]",2542.76,"{\"": \""24%\""}",257151,0,"""South America""" +2023-11-01,3111,3934,"[\""Headphones\""]",4998.36,"{\"": \""25%\""}",88689,1,"""North America""" +2024-10-31,3112,2510,"[\""Keyboard\""]",273.78,"{\""seasonal\"": \""16%\""}",35821,0,"""Asia""" +2024-11-13,3113,8327,"[\""Monitor\"", \""Charger\""]",4004.94,"{\""loyalty\"": \""26%\""}",85136,0,"""Asia""" +2023-04-20,3114,7694,"[\""Laptop\"", \""Phone\""]",1517.92,"{\""promo\"": \""30%\""}",75835,0,"""Asia""" +2023-09-20,3115,5953,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",696.74,{},67457,1,"""Africa""" +2024-06-19,3116,6999,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2739.46,{},53273,0,"""Europe""" +2023-02-10,3117,9092,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1474.12,{},102870,1,"""North America""" +2024-05-16,3118,9200,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",459.86,{},261820,1,"""Asia""" +2023-10-06,3119,4732,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4331.26,{},139274,1,"""Asia""" +2023-05-12,3120,3531,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3978.86,"{\""promo\"": \""24%\""}",261201,0,"""Asia""" +2024-05-06,3121,9158,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3984.93,{},81321,1,"""Europe""" +2023-12-20,3122,6782,"[\""Charger\""]",740.0,{},208066,1,"""Europe""" +2024-03-07,3123,1436,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3052.43,"{\""seasonal\"": \""21%\""}",134032,1,"""South America""" +2023-10-31,3124,4344,"[\""Monitor\""]",2681.18,{},31625,1,"""Africa""" +2024-02-03,3125,5054,"[\""Monitor\"", \""Charger\""]",2694.27,"{\""loyalty\"": \""30%\""}",17740,0,"""South America""" +2023-08-23,3126,4460,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4689.26,{},236324,1,"""Asia""" +2023-06-24,3127,1508,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4731.23,{},74871,0,"""Europe""" +2024-09-14,3128,9327,"[\""Tablet\"", \""Charger\""]",1189.02,"{\""promo\"": \""29%\""}",274268,1,"""Asia""" +2024-07-22,3129,6322,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2648.04,{},196883,1,"""Europe""" +2024-07-17,3130,341,"[\""Wireless Mouse\""]",2654.64,{},245747,0,"""Europe""" +2023-10-22,3131,4939,"[\""Charger\""]",2438.03,{},177577,1,"""Europe""" +2023-12-24,3132,6305,"[\""Charger\""]",1871.26,"{\"": \""28%\""}",101379,0,"""Africa""" +2024-02-24,3133,1107,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",357.44,"{\"": \""24%\""}",210951,1,"""Europe""" +2023-03-26,3134,6869,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3814.48,{},15050,0,"""Asia""" +2024-01-27,3135,4919,"[\""Charger\""]",2656.98,{},232078,1,"""North America""" +2023-10-28,3136,5855,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2171.3,{},245687,0,"""South America""" +2024-01-03,3137,9749,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4925.21,"{\""loyalty\"": \""10%\""}",252626,0,"""Europe""" +2023-07-25,3138,7338,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3147.23,"{\""seasonal\"": \""29%\""}",214423,1,"""South America""" +2023-10-14,3139,1626,"[\""Phone\""]",1522.92,"{\""seasonal\"": \""28%\""}",291189,1,"""Asia""" +2023-03-17,3140,2764,"[\""Monitor\""]",4709.94,"{\""loyalty\"": \""29%\""}",286088,0,"""North America""" +2023-08-06,3141,8148,"[\""Wireless Mouse\""]",620.89,{},261557,1,"""Asia""" +2024-04-10,3142,9843,"[\""Headphones\""]",1185.21,"{\""promo\"": \""30%\""}",262836,0,"""North America""" +2024-11-25,3143,3582,"[\""Tablet\""]",2593.91,"{\""promo\"": \""17%\""}",205672,1,"""North America""" +2024-05-29,3144,489,"[\""Headphones\""]",4334.31,{},16927,1,"""Europe""" +2024-02-16,3145,123,"[\""Wireless Mouse\""]",4537.99,"{\"": \""20%\""}",286848,1,"""Asia""" +2024-12-07,3146,6992,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3041.7,{},99330,0,"""Europe""" +2023-03-14,3147,3665,"[\""Monitor\""]",2616.15,{},159036,0,"""South America""" +2024-06-07,3148,6431,"[\""Charger\""]",4136.61,{},19893,0,"""Asia""" +2023-12-25,3149,3265,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1639.59,"{\""loyalty\"": \""16%\""}",260609,0,"""Asia""" +2023-06-08,3150,6534,"[\""Laptop\"", \""Charger\""]",3370.51,{},176968,0,"""South America""" +2024-06-03,3151,8363,"[\""Phone\"", \""Charger\""]",4458.21,"{\"": \""29%\""}",174354,1,"""North America""" +2023-09-14,3152,829,"[\""Keyboard\""]",1061.32,"{\""loyalty\"": \""18%\""}",147222,0,"""Africa""" +2024-05-06,3153,5808,"[\""Wireless Mouse\"", \""Keyboard\""]",4378.72,{},128993,0,"""Africa""" +2024-01-05,3154,9574,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2470.68,{},256971,0,"""Europe""" +2024-04-26,3155,1795,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",154.28,{},65515,0,"""South America""" +2023-10-21,3156,3945,"[\""Phone\"", \""Headphones\""]",227.98,"{\""loyalty\"": \""10%\""}",60284,0,"""Africa""" +2024-05-16,3157,1651,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2464.63,"{\"": \""27%\""}",131520,0,"""South America""" +2024-02-20,3158,3885,"[\""Tablet\"", \""Phone\"", \""Charger\""]",815.01,"{\"": \""30%\""}",174557,0,"""Europe""" +2023-11-16,3159,5203,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2466.5,"{\""loyalty\"": \""26%\""}",74317,0,"""Asia""" +2023-06-22,3160,6344,"[\""Phone\"", \""Charger\""]",1374.18,{},207175,1,"""Europe""" +2023-12-19,3161,8255,"[\""Phone\"", \""Tablet\""]",2056.12,"{\""promo\"": \""28%\""}",133776,1,"""Africa""" +2024-08-24,3162,7261,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3802.38,{},268340,1,"""North America""" +2023-09-02,3163,4211,"[\""Laptop\""]",3689.4,"{\"": \""17%\""}",21841,1,"""Europe""" +2023-04-28,3164,2967,"[\""Phone\""]",168.52,"{\"": \""26%\""}",99088,0,"""North America""" +2024-01-22,3165,5258,"[\""Keyboard\""]",2408.77,{},101156,1,"""Asia""" +2023-01-12,3166,5067,"[\""Tablet\""]",2887.67,"{\""loyalty\"": \""30%\""}",143803,1,"""South America""" +2023-04-15,3167,8438,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4032.65,{},179493,1,"""North America""" +2023-02-19,3168,8589,"[\""Keyboard\""]",417.19,"{\""seasonal\"": \""11%\""}",93114,1,"""South America""" +2024-03-26,3169,6292,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4174.02,"{\""loyalty\"": \""19%\""}",279911,0,"""North America""" +2023-01-28,3170,409,"[\""Phone\""]",2979.23,"{\"": \""14%\""}",284785,0,"""Asia""" +2024-10-29,3171,1409,"[\""Wireless Mouse\"", \""Headphones\""]",4839.35,{},144236,0,"""North America""" +2023-10-21,3172,3761,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3046.68,{},66444,0,"""Africa""" +2024-03-07,3173,5145,"[\""Tablet\"", \""Laptop\""]",4386.91,"{\""loyalty\"": \""17%\""}",203676,0,"""South America""" +2023-05-15,3174,6101,"[\""Charger\"", \""Headphones\""]",3345.78,"{\""seasonal\"": \""22%\""}",80722,0,"""South America""" +2023-08-29,3175,1008,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2201.89,"{\"": \""27%\""}",148877,0,"""Europe""" +2023-06-24,3176,5968,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1677.71,{},240122,0,"""North America""" +2023-06-29,3177,905,"[\""Tablet\""]",4803.73,{},55463,1,"""Asia""" +2024-01-09,3178,4133,"[\""Charger\""]",3772.44,{},89242,0,"""Africa""" +2023-07-05,3179,7503,"[\""Phone\"", \""Keyboard\""]",3468.25,"{\""loyalty\"": \""24%\""}",130708,1,"""South America""" +2023-08-03,3180,1917,"[\""Tablet\""]",483.52,{},85594,0,"""Asia""" +2023-08-26,3181,1227,"[\""Laptop\""]",604.47,"{\""seasonal\"": \""20%\""}",151216,0,"""Europe""" +2024-06-28,3182,693,"[\""Monitor\""]",1011.31,"{\""seasonal\"": \""6%\""}",207812,0,"""North America""" +2024-10-05,3183,4938,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2918.33,{},129747,0,"""Africa""" +2024-10-05,3184,7525,"[\""Tablet\"", \""Charger\""]",3687.31,{},247139,0,"""North America""" +2024-06-03,3185,485,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4383.87,"{\""promo\"": \""10%\""}",256213,0,"""South America""" +2023-10-14,3186,3255,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3012.98,{},286069,1,"""South America""" +2023-03-30,3187,2138,"[\""Charger\""]",2680.34,"{\"": \""18%\""}",105789,1,"""North America""" +2024-10-25,3188,6625,"[\""Phone\"", \""Laptop\""]",2646.57,{},9124,0,"""South America""" +2023-03-27,3189,2184,"[\""Phone\"", \""Wireless Mouse\""]",1086.8,"{\"": \""16%\""}",132066,0,"""South America""" +2024-08-24,3190,6484,"[\""Laptop\"", \""Headphones\""]",425.41,"{\""loyalty\"": \""13%\""}",164025,0,"""Europe""" +2023-06-18,3191,1009,"[\""Tablet\"", \""Wireless Mouse\""]",3080.57,{},102241,0,"""North America""" +2023-02-03,3192,3924,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",129.56,"{\"": \""22%\""}",110634,1,"""Europe""" +2023-01-21,3193,1831,"[\""Phone\""]",4208.57,{},131336,0,"""North America""" +2023-01-06,3194,6745,"[\""Laptop\"", \""Tablet\""]",1206.82,"{\""seasonal\"": \""17%\""}",107972,1,"""Europe""" +2024-04-05,3195,3474,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4591.07,"{\""seasonal\"": \""14%\""}",45657,1,"""Europe""" +2023-10-16,3196,7078,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4222.36,{},44943,0,"""Asia""" +2024-07-31,3197,729,"[\""Laptop\"", \""Tablet\""]",2924.46,{},95180,0,"""Asia""" +2024-02-18,3198,7859,"[\""Charger\"", \""Laptop\""]",1048.68,{},154679,0,"""Africa""" +2024-10-29,3199,3084,"[\""Phone\"", \""Monitor\""]",2396.15,"{\""promo\"": \""15%\""}",85470,1,"""Africa""" +2023-06-16,3200,6149,"[\""Wireless Mouse\""]",2397.12,{},227699,1,"""Asia""" +2024-03-26,3201,5244,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4152.96,"{\""seasonal\"": \""11%\""}",108454,1,"""South America""" +2024-01-30,3202,5425,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3677.94,{},198564,0,"""Europe""" +2023-07-09,3203,7558,"[\""Tablet\"", \""Monitor\""]",4177.78,"{\""loyalty\"": \""20%\""}",222073,0,"""Asia""" +2024-08-22,3204,6880,"[\""Headphones\"", \""Keyboard\""]",4210.22,"{\""promo\"": \""28%\""}",146426,0,"""North America""" +2023-10-28,3205,6344,"[\""Tablet\""]",2236.12,"{\""promo\"": \""7%\""}",23883,1,"""Europe""" +2024-03-24,3206,1074,"[\""Monitor\""]",432.55,{},84116,0,"""South America""" +2024-06-07,3207,2891,"[\""Tablet\""]",3456.96,{},204296,1,"""Asia""" +2023-12-26,3208,4836,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3724.62,{},103454,0,"""Asia""" +2023-03-21,3209,2186,"[\""Charger\""]",2123.09,{},140867,1,"""Asia""" +2023-12-23,3210,6413,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3623.21,{},136806,0,"""South America""" +2024-04-01,3211,5827,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3113.36,{},142479,1,"""Asia""" +2023-10-23,3212,6627,"[\""Tablet\"", \""Charger\""]",1534.4,{},213903,1,"""Africa""" +2023-07-30,3213,723,"[\""Laptop\""]",2243.98,"{\""promo\"": \""20%\""}",57896,1,"""Asia""" +2024-12-10,3214,7933,"[\""Charger\""]",267.7,{},138631,0,"""Europe""" +2024-01-05,3215,1843,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1863.28,"{\""loyalty\"": \""28%\""}",21548,1,"""North America""" +2023-08-13,3216,3493,"[\""Laptop\"", \""Monitor\""]",1241.89,{},116865,1,"""Africa""" +2024-03-05,3217,6460,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3644.8,"{\""promo\"": \""29%\""}",44434,0,"""Asia""" +2024-03-25,3218,3226,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",84.91,{},255731,0,"""Africa""" +2023-12-27,3219,1408,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3377.36,"{\"": \""24%\""}",225771,1,"""Asia""" +2023-08-12,3220,5593,"[\""Charger\""]",4533.88,"{\"": \""15%\""}",231355,1,"""North America""" +2023-05-29,3221,4776,"[\""Keyboard\""]",3115.23,{},236058,0,"""Europe""" +2023-11-16,3222,2247,"[\""Monitor\""]",3986.32,"{\""loyalty\"": \""16%\""}",177973,1,"""Africa""" +2023-10-15,3223,471,"[\""Wireless Mouse\"", \""Headphones\""]",1662.92,{},242620,0,"""South America""" +2024-06-19,3224,2709,"[\""Keyboard\"", \""Laptop\""]",3128.03,"{\""promo\"": \""20%\""}",156153,1,"""Europe""" +2024-02-14,3225,9160,"[\""Keyboard\""]",4305.17,{},236682,1,"""South America""" +2024-04-26,3226,1544,"[\""Laptop\"", \""Charger\"", \""Phone\""]",408.28,"{\"": \""7%\""}",244851,1,"""South America""" +2023-12-14,3227,2674,"[\""Charger\""]",2546.23,{},80849,0,"""South America""" +2024-07-23,3228,4958,"[\""Keyboard\""]",4862.17,"{\"": \""7%\""}",246392,0,"""South America""" +2024-04-17,3229,6334,"[\""Wireless Mouse\""]",1243.98,{},168138,0,"""Europe""" +2024-12-25,3230,1262,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3758.15,{},269736,0,"""North America""" +2023-11-07,3231,421,"[\""Laptop\"", \""Monitor\""]",4243.67,{},16801,0,"""Europe""" +2023-07-01,3232,5470,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4888.74,"{\"": \""7%\""}",127523,0,"""Asia""" +2024-10-19,3233,8740,"[\""Headphones\"", \""Laptop\""]",2409.91,{},80790,1,"""South America""" +2023-12-16,3234,8690,"[\""Phone\""]",1983.54,"{\""seasonal\"": \""29%\""}",245144,1,"""North America""" +2023-10-26,3235,8044,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2812.14,{},31664,1,"""South America""" +2024-03-21,3236,7649,"[\""Tablet\""]",691.06,{},163938,1,"""South America""" +2024-02-09,3237,1518,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1383.2,{},147389,1,"""Europe""" +2023-08-15,3238,394,"[\""Tablet\"", \""Laptop\""]",711.96,"{\""seasonal\"": \""24%\""}",185882,0,"""Europe""" +2023-12-07,3239,2031,"[\""Phone\""]",4709.93,"{\""loyalty\"": \""8%\""}",12818,1,"""South America""" +2023-06-06,3240,7068,"[\""Headphones\""]",1726.18,"{\""seasonal\"": \""17%\""}",91470,1,"""South America""" +2023-01-23,3241,4332,"[\""Headphones\""]",1454.6,{},188757,0,"""Africa""" +2024-06-26,3242,2597,"[\""Keyboard\"", \""Phone\""]",260.88,{},249160,0,"""Asia""" +2023-02-21,3243,3770,"[\""Laptop\"", \""Wireless Mouse\""]",4744.66,{},294349,0,"""North America""" +2024-12-24,3244,2102,"[\""Monitor\""]",4218.74,"{\""loyalty\"": \""6%\""}",171030,1,"""Asia""" +2023-06-12,3245,3903,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4617.41,"{\"": \""19%\""}",277523,1,"""Asia""" +2023-12-13,3246,514,"[\""Monitor\""]",1348.48,{},105563,0,"""South America""" +2023-01-12,3247,8573,"[\""Wireless Mouse\"", \""Keyboard\""]",4167.7,"{\"": \""30%\""}",222820,1,"""Europe""" +2024-05-02,3248,6566,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",168.87,"{\""promo\"": \""17%\""}",192854,0,"""North America""" +2024-11-28,3249,6656,"[\""Monitor\""]",4514.59,"{\"": \""8%\""}",75638,0,"""South America""" +2023-02-24,3250,6048,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3221.23,"{\""seasonal\"": \""12%\""}",196677,0,"""Africa""" +2023-10-27,3251,6454,"[\""Headphones\""]",1825.37,{},133796,0,"""South America""" +2024-03-05,3252,4441,"[\""Laptop\""]",3460.37,{},250529,0,"""Asia""" +2024-10-21,3253,9522,"[\""Charger\"", \""Wireless Mouse\""]",2714.01,"{\""loyalty\"": \""20%\""}",84822,1,"""Africa""" +2024-01-06,3254,5293,"[\""Phone\""]",3001.4,"{\""promo\"": \""17%\""}",140411,1,"""Africa""" +2023-01-28,3255,6185,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3092.22,"{\""loyalty\"": \""8%\""}",166545,1,"""North America""" +2023-05-04,3256,46,"[\""Headphones\""]",3925.36,"{\""promo\"": \""22%\""}",280093,1,"""North America""" +2023-02-23,3257,4968,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4491.83,"{\"": \""14%\""}",230658,0,"""Africa""" +2023-06-12,3258,5392,"[\""Keyboard\""]",4936.69,{},185075,1,"""South America""" +2023-01-29,3259,8877,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",761.67,{},258176,0,"""South America""" +2023-04-16,3260,7039,"[\""Monitor\"", \""Headphones\""]",4192.0,"{\""loyalty\"": \""5%\""}",167542,1,"""North America""" +2023-05-06,3261,7004,"[\""Charger\""]",2921.82,{},111752,1,"""North America""" +2024-04-22,3262,8486,"[\""Monitor\"", \""Laptop\""]",4133.15,"{\""loyalty\"": \""27%\""}",98607,1,"""South America""" +2024-02-09,3263,7090,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2864.94,"{\""seasonal\"": \""6%\""}",70302,0,"""South America""" +2023-12-27,3264,7760,"[\""Keyboard\"", \""Monitor\""]",59.0,"{\"": \""6%\""}",107640,0,"""Africa""" +2023-05-25,3265,4026,"[\""Charger\""]",2065.39,"{\""promo\"": \""8%\""}",95860,0,"""Asia""" +2024-05-13,3266,6689,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3342.86,"{\"": \""16%\""}",247805,1,"""North America""" +2024-12-28,3267,6675,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1313.23,"{\""seasonal\"": \""27%\""}",194466,0,"""Europe""" +2023-10-23,3268,2115,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1444.89,"{\""promo\"": \""22%\""}",138003,0,"""North America""" +2024-04-22,3269,2904,"[\""Monitor\""]",1787.21,"{\"": \""21%\""}",86616,1,"""North America""" +2023-10-26,3270,8742,"[\""Tablet\"", \""Charger\""]",1321.16,{},119426,1,"""Europe""" +2023-02-17,3271,3579,"[\""Charger\"", \""Laptop\""]",531.01,"{\""seasonal\"": \""19%\""}",186768,0,"""South America""" +2023-12-16,3272,5749,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3202.54,"{\""seasonal\"": \""7%\""}",46268,0,"""Europe""" +2023-11-02,3273,6962,"[\""Monitor\"", \""Phone\""]",495.81,"{\"": \""27%\""}",214498,0,"""Europe""" +2024-03-16,3274,7342,"[\""Monitor\"", \""Tablet\""]",4440.91,"{\"": \""28%\""}",94905,0,"""Asia""" +2024-05-19,3275,5387,"[\""Phone\"", \""Laptop\""]",2523.53,{},73283,1,"""North America""" +2023-04-15,3276,2860,"[\""Headphones\""]",600.48,{},105938,0,"""North America""" +2023-11-12,3277,5906,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",858.89,{},42830,1,"""North America""" +2023-01-28,3278,836,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",997.97,"{\"": \""25%\""}",107089,0,"""Africa""" +2024-06-04,3279,4198,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4835.9,{},177214,0,"""South America""" +2023-08-20,3280,6587,"[\""Laptop\"", \""Headphones\""]",2387.76,{},77957,0,"""Europe""" +2024-01-22,3281,8150,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3305.77,{},200974,1,"""South America""" +2024-05-25,3282,653,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4809.51,{},243582,0,"""North America""" +2024-07-23,3283,3156,"[\""Wireless Mouse\"", \""Headphones\""]",4926.0,{},257369,0,"""North America""" +2023-04-30,3284,4346,"[\""Charger\"", \""Tablet\""]",3967.17,{},275240,0,"""Africa""" +2023-09-16,3285,3119,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1584.75,"{\""seasonal\"": \""29%\""}",182539,0,"""South America""" +2024-11-08,3286,3498,"[\""Wireless Mouse\""]",4180.85,{},243490,0,"""Asia""" +2024-09-26,3287,598,"[\""Headphones\"", \""Wireless Mouse\""]",2754.1,{},71523,1,"""Europe""" +2024-10-15,3288,5502,"[\""Charger\"", \""Tablet\""]",1179.08,{},82013,0,"""South America""" +2024-08-06,3289,6873,"[\""Wireless Mouse\"", \""Keyboard\""]",3623.37,"{\""promo\"": \""16%\""}",270069,0,"""Asia""" +2023-09-25,3290,20,"[\""Laptop\""]",3433.95,"{\"": \""8%\""}",109112,0,"""Asia""" +2024-06-13,3291,1333,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2609.55,{},95834,0,"""Europe""" +2023-05-05,3292,5229,"[\""Tablet\""]",4972.19,{},239048,0,"""South America""" +2023-02-21,3293,2662,"[\""Charger\"", \""Tablet\""]",1809.39,{},189237,0,"""Asia""" +2024-06-20,3294,6933,"[\""Charger\"", \""Tablet\""]",1420.69,"{\""loyalty\"": \""19%\""}",258277,1,"""Africa""" +2023-03-21,3295,3982,"[\""Keyboard\""]",4990.16,{},276123,1,"""Africa""" +2024-03-23,3296,3854,"[\""Wireless Mouse\"", \""Tablet\""]",196.93,"{\""seasonal\"": \""22%\""}",33918,1,"""North America""" +2023-03-21,3297,5198,"[\""Phone\"", \""Charger\""]",1300.31,{},41197,1,"""Asia""" +2024-05-23,3298,5301,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2076.49,{},180556,1,"""Africa""" +2023-01-18,3299,8224,"[\""Laptop\""]",2540.69,{},98670,0,"""Asia""" +2023-06-04,3300,5468,"[\""Phone\""]",688.33,{},228491,0,"""Europe""" +2024-10-27,3301,8339,"[\""Monitor\""]",3636.5,{},76155,0,"""South America""" +2023-10-26,3302,8397,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",396.32,"{\""loyalty\"": \""23%\""}",198343,0,"""Europe""" +2024-04-14,3303,1541,"[\""Phone\"", \""Charger\""]",657.63,"{\""loyalty\"": \""18%\""}",295186,0,"""Europe""" +2024-11-28,3304,3748,"[\""Keyboard\"", \""Charger\""]",2330.31,{},194252,1,"""South America""" +2024-05-27,3305,7811,"[\""Wireless Mouse\""]",1950.66,"{\""seasonal\"": \""15%\""}",284995,1,"""Asia""" +2023-03-27,3306,4029,"[\""Charger\"", \""Wireless Mouse\""]",2139.56,{},196077,0,"""North America""" +2023-08-06,3307,2690,"[\""Laptop\""]",4810.97,"{\"": \""6%\""}",139412,1,"""North America""" +2023-03-30,3308,5337,"[\""Tablet\"", \""Wireless Mouse\""]",4391.87,{},142503,0,"""North America""" +2023-12-15,3309,3693,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3532.5,"{\""seasonal\"": \""6%\""}",270090,1,"""Europe""" +2024-08-14,3310,5574,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3302.21,"{\""promo\"": \""27%\""}",40848,0,"""South America""" +2024-07-02,3311,2380,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1758.29,{},2985,1,"""North America""" +2024-04-07,3312,2687,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",636.69,{},82629,1,"""Asia""" +2023-10-01,3313,2668,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1920.29,{},242235,1,"""Europe""" +2023-08-17,3314,840,"[\""Tablet\"", \""Headphones\""]",3733.92,{},77548,0,"""Africa""" +2024-07-21,3315,470,"[\""Charger\"", \""Headphones\""]",4973.47,"{\""loyalty\"": \""11%\""}",170889,1,"""Africa""" +2024-08-04,3316,9256,"[\""Charger\"", \""Monitor\""]",70.04,"{\""promo\"": \""29%\""}",229242,1,"""North America""" +2024-02-17,3317,5605,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4067.12,"{\""promo\"": \""8%\""}",255723,1,"""North America""" +2023-10-19,3318,4632,"[\""Laptop\""]",4994.02,"{\""promo\"": \""14%\""}",221601,0,"""South America""" +2024-01-18,3319,250,"[\""Monitor\""]",4890.4,"{\"": \""12%\""}",246943,1,"""Africa""" +2023-07-25,3320,4834,"[\""Headphones\""]",3982.13,"{\""seasonal\"": \""5%\""}",193826,0,"""Asia""" +2023-09-23,3321,889,"[\""Tablet\""]",1508.06,{},237839,0,"""Africa""" +2024-01-18,3322,5396,"[\""Charger\"", \""Tablet\""]",1148.27,{},216999,1,"""Africa""" +2024-01-19,3323,8359,"[\""Keyboard\""]",459.35,"{\"": \""29%\""}",125109,1,"""Africa""" +2023-11-24,3324,6291,"[\""Wireless Mouse\"", \""Keyboard\""]",3900.89,"{\"": \""21%\""}",6159,1,"""Europe""" +2024-03-24,3325,6134,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2248.75,{},169260,1,"""Africa""" +2024-02-29,3326,7539,"[\""Tablet\""]",512.11,"{\""seasonal\"": \""23%\""}",79278,1,"""Europe""" +2024-05-09,3327,9237,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",566.73,{},261771,1,"""Africa""" +2024-02-21,3328,3974,"[\""Tablet\"", \""Phone\"", \""Charger\""]",541.41,"{\""loyalty\"": \""17%\""}",56179,0,"""North America""" +2024-03-03,3329,305,"[\""Keyboard\"", \""Laptop\""]",1462.09,"{\"": \""14%\""}",269105,1,"""Europe""" +2024-06-17,3330,6471,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4798.35,{},46008,1,"""North America""" +2023-03-13,3331,5172,"[\""Headphones\"", \""Phone\""]",542.53,"{\""seasonal\"": \""20%\""}",214720,1,"""Asia""" +2024-09-29,3332,3921,"[\""Keyboard\""]",1662.92,"{\"": \""11%\""}",94228,0,"""South America""" +2024-05-13,3333,9195,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3822.93,{},194352,0,"""South America""" +2023-12-06,3334,7991,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3714.13,{},240285,1,"""Asia""" +2023-01-02,3335,4119,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1579.04,"{\""seasonal\"": \""12%\""}",91081,0,"""Asia""" +2023-07-05,3336,8585,"[\""Keyboard\"", \""Headphones\""]",798.97,{},41235,1,"""South America""" +2024-11-09,3337,4096,"[\""Headphones\"", \""Charger\""]",4562.35,{},108323,0,"""Asia""" +2024-01-06,3338,6877,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3826.85,{},152449,0,"""South America""" +2024-03-25,3339,4521,"[\""Headphones\""]",4432.91,{},163022,0,"""Africa""" +2024-07-14,3340,4336,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1600.61,"{\"": \""10%\""}",96218,0,"""South America""" +2024-09-17,3341,7723,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3861.71,"{\""loyalty\"": \""20%\""}",165882,1,"""Africa""" +2023-11-03,3342,5334,"[\""Monitor\""]",3564.5,{},181027,1,"""Asia""" +2024-07-27,3343,6045,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4430.33,"{\""loyalty\"": \""9%\""}",274622,0,"""Africa""" +2024-02-12,3344,5697,"[\""Headphones\""]",2823.94,"{\""promo\"": \""26%\""}",71326,1,"""South America""" +2023-04-02,3345,8878,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",704.76,{},216814,0,"""Europe""" +2023-04-09,3346,6775,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2410.29,{},19127,0,"""Africa""" +2024-07-18,3347,108,"[\""Wireless Mouse\"", \""Phone\""]",1545.14,{},187579,0,"""North America""" +2023-02-10,3348,8977,"[\""Laptop\"", \""Monitor\""]",1443.41,{},248158,1,"""Asia""" +2023-02-22,3349,1900,"[\""Headphones\""]",1041.63,{},192727,1,"""North America""" +2023-07-04,3350,7572,"[\""Laptop\"", \""Phone\""]",591.68,{},22755,1,"""Asia""" +2024-04-28,3351,7886,"[\""Laptop\""]",471.46,{},60513,1,"""South America""" +2023-09-25,3352,3415,"[\""Wireless Mouse\"", \""Laptop\""]",1757.41,"{\""seasonal\"": \""20%\""}",257529,0,"""Asia""" +2023-03-23,3353,1610,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2872.12,"{\""promo\"": \""29%\""}",286970,1,"""North America""" +2023-06-16,3354,3345,"[\""Laptop\""]",2465.21,"{\""loyalty\"": \""21%\""}",185862,1,"""Asia""" +2024-07-07,3355,5531,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1607.83,"{\""seasonal\"": \""18%\""}",274702,1,"""South America""" +2024-03-22,3356,2038,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2070.87,{},80842,0,"""South America""" +2023-03-09,3357,3539,"[\""Phone\"", \""Charger\""]",1215.2,{},105063,1,"""South America""" +2024-02-14,3358,2499,"[\""Headphones\"", \""Charger\""]",904.26,{},143031,0,"""North America""" +2023-04-01,3359,77,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4688.38,"{\""seasonal\"": \""5%\""}",161848,1,"""South America""" +2023-01-02,3360,3391,"[\""Monitor\""]",2640.18,{},86894,1,"""Asia""" +2024-11-07,3361,8934,"[\""Monitor\"", \""Wireless Mouse\""]",1017.93,"{\""promo\"": \""13%\""}",252050,0,"""Asia""" +2023-10-31,3362,1356,"[\""Keyboard\""]",1160.58,"{\""seasonal\"": \""9%\""}",235437,1,"""Africa""" +2023-05-12,3363,8991,"[\""Phone\""]",4931.44,{},3367,0,"""Asia""" +2024-04-21,3364,8612,"[\""Laptop\""]",410.94,"{\""promo\"": \""13%\""}",89129,0,"""South America""" +2023-11-15,3365,8211,"[\""Wireless Mouse\"", \""Charger\""]",811.64,{},157040,0,"""Africa""" +2024-05-21,3366,304,"[\""Headphones\"", \""Wireless Mouse\""]",4626.09,{},80287,0,"""South America""" +2023-02-05,3367,5679,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4421.66,"{\""promo\"": \""20%\""}",214592,1,"""Europe""" +2024-04-28,3368,4117,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4070.93,"{\""seasonal\"": \""10%\""}",219555,1,"""South America""" +2023-03-24,3369,7036,"[\""Laptop\"", \""Wireless Mouse\""]",246.18,"{\""loyalty\"": \""18%\""}",208970,1,"""Africa""" +2023-01-17,3370,8864,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",283.3,{},23908,0,"""Africa""" +2023-03-14,3371,5555,"[\""Keyboard\""]",1236.39,{},264674,1,"""Asia""" +2024-12-02,3372,5617,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3027.03,{},96771,1,"""Africa""" +2023-12-31,3373,6973,"[\""Tablet\""]",3997.59,{},77723,1,"""Asia""" +2024-10-05,3374,7302,"[\""Wireless Mouse\""]",1045.1,{},77296,1,"""Africa""" +2024-09-10,3375,2643,"[\""Wireless Mouse\""]",267.36,{},54877,1,"""South America""" +2024-06-27,3376,5201,"[\""Charger\""]",1969.82,"{\"": \""24%\""}",115868,1,"""South America""" +2023-02-23,3377,7695,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",841.41,{},141146,1,"""North America""" +2024-09-27,3378,2493,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",837.13,{},232694,0,"""Africa""" +2024-09-22,3379,6350,"[\""Laptop\""]",2167.98,{},188168,0,"""Europe""" +2024-05-09,3380,2172,"[\""Monitor\"", \""Wireless Mouse\""]",1141.0,{},219647,1,"""South America""" +2023-11-28,3381,5540,"[\""Monitor\"", \""Headphones\""]",238.52,{},197380,0,"""South America""" +2023-07-22,3382,893,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4062.05,"{\"": \""11%\""}",264386,0,"""Asia""" +2023-11-23,3383,7547,"[\""Tablet\""]",387.33,{},62369,0,"""North America""" +2024-07-29,3384,9799,"[\""Tablet\""]",426.65,"{\""loyalty\"": \""11%\""}",174777,1,"""North America""" +2024-10-06,3385,3787,"[\""Monitor\""]",589.58,"{\""seasonal\"": \""7%\""}",8785,0,"""Asia""" +2023-11-18,3386,9881,"[\""Charger\""]",4561.9,"{\"": \""12%\""}",166806,1,"""Africa""" +2024-01-03,3387,7048,"[\""Wireless Mouse\""]",1567.55,"{\""seasonal\"": \""22%\""}",212965,1,"""North America""" +2023-05-16,3388,2346,"[\""Monitor\""]",4514.43,"{\"": \""27%\""}",136486,1,"""Asia""" +2023-03-31,3389,2854,"[\""Keyboard\"", \""Charger\""]",3407.01,{},172733,1,"""North America""" +2024-11-26,3390,9967,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",255.12,{},67501,1,"""Asia""" +2024-07-16,3391,8778,"[\""Tablet\""]",3267.66,{},2083,0,"""Asia""" +2023-04-17,3392,4184,"[\""Laptop\""]",3025.62,{},86314,1,"""Asia""" +2023-01-25,3393,3088,"[\""Headphones\"", \""Keyboard\""]",1331.51,"{\""loyalty\"": \""17%\""}",92280,0,"""North America""" +2023-04-15,3394,9070,"[\""Charger\""]",1798.55,{},284520,0,"""North America""" +2023-09-10,3395,1274,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",474.15,"{\"": \""14%\""}",284190,1,"""South America""" +2023-11-25,3396,9732,"[\""Keyboard\""]",4916.3,{},117014,1,"""North America""" +2024-03-31,3397,7620,"[\""Phone\""]",2561.11,{},65653,0,"""Europe""" +2023-03-10,3398,4546,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2616.99,{},24314,0,"""Europe""" +2023-10-26,3399,7388,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3152.51,"{\""promo\"": \""13%\""}",91965,0,"""Europe""" +2024-07-20,3400,3546,"[\""Keyboard\"", \""Charger\""]",1238.19,"{\""promo\"": \""25%\""}",255989,0,"""Asia""" +2023-07-16,3401,4395,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3040.75,"{\"": \""12%\""}",97919,1,"""South America""" +2023-04-07,3402,7510,"[\""Laptop\"", \""Headphones\""]",3710.21,"{\""seasonal\"": \""26%\""}",171438,1,"""Africa""" +2023-05-30,3403,890,"[\""Monitor\"", \""Phone\""]",4478.06,{},223093,1,"""Europe""" +2023-06-21,3404,1769,"[\""Phone\""]",606.56,{},165577,1,"""Asia""" +2024-12-16,3405,3832,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",556.84,"{\""seasonal\"": \""28%\""}",273744,0,"""Europe""" +2024-01-20,3406,2844,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4467.88,{},22257,1,"""Africa""" +2023-06-04,3407,9157,"[\""Monitor\"", \""Wireless Mouse\""]",1828.85,"{\""seasonal\"": \""6%\""}",18993,0,"""South America""" +2023-05-16,3408,342,"[\""Tablet\""]",2241.43,{},216156,0,"""South America""" +2024-09-07,3409,7633,"[\""Laptop\"", \""Monitor\""]",2096.99,"{\""seasonal\"": \""27%\""}",267052,1,"""Europe""" +2023-08-26,3410,3066,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1761.28,"{\""seasonal\"": \""11%\""}",211892,0,"""Asia""" +2024-08-31,3411,7563,"[\""Headphones\"", \""Tablet\""]",3186.42,"{\""loyalty\"": \""23%\""}",93471,0,"""Asia""" +2023-07-03,3412,9105,"[\""Monitor\""]",4467.09,{},199079,0,"""South America""" +2023-03-31,3413,7121,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",650.12,"{\""promo\"": \""22%\""}",30740,0,"""Africa""" +2023-08-11,3414,646,"[\""Charger\""]",3892.92,{},216657,0,"""South America""" +2024-04-16,3415,8203,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2899.93,{},166225,0,"""South America""" +2024-01-09,3416,2048,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1600.18,"{\"": \""19%\""}",169462,0,"""Europe""" +2023-11-20,3417,2177,"[\""Keyboard\"", \""Headphones\""]",2583.18,"{\"": \""22%\""}",140097,0,"""North America""" +2024-04-12,3418,5008,"[\""Monitor\"", \""Laptop\""]",2655.96,{},38504,1,"""Europe""" +2023-09-14,3419,5884,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",479.97,{},288753,0,"""North America""" +2024-03-01,3420,7017,"[\""Keyboard\"", \""Wireless Mouse\""]",922.61,"{\"": \""6%\""}",241409,0,"""North America""" +2024-03-23,3421,3439,"[\""Tablet\""]",1349.16,"{\""promo\"": \""13%\""}",177777,0,"""Asia""" +2024-05-05,3422,5563,"[\""Phone\"", \""Laptop\""]",4917.0,"{\""seasonal\"": \""24%\""}",160549,1,"""Africa""" +2023-04-11,3423,1388,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4571.43,"{\""seasonal\"": \""6%\""}",243650,0,"""North America""" +2024-04-21,3424,9318,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4861.71,{},75918,1,"""Europe""" +2023-11-20,3425,2354,"[\""Phone\"", \""Headphones\""]",1097.74,{},49670,1,"""North America""" +2023-02-17,3426,3269,"[\""Tablet\"", \""Monitor\""]",1435.44,{},222182,1,"""Europe""" +2023-12-28,3427,4963,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4462.54,"{\""seasonal\"": \""24%\""}",258884,0,"""Europe""" +2024-09-01,3428,8071,"[\""Charger\""]",2038.76,{},97887,1,"""Asia""" +2024-03-29,3429,5119,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2575.04,{},208417,1,"""Europe""" +2024-12-24,3430,8414,"[\""Wireless Mouse\""]",4386.91,{},11015,0,"""South America""" +2023-05-06,3431,982,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3270.04,"{\""seasonal\"": \""19%\""}",211729,0,"""Europe""" +2023-08-25,3432,4456,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4562.11,{},110491,1,"""South America""" +2023-01-02,3433,8223,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",582.62,"{\""promo\"": \""27%\""}",278257,1,"""Europe""" +2024-03-02,3434,7621,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4239.84,"{\""seasonal\"": \""16%\""}",241698,1,"""South America""" +2024-06-23,3435,3834,"[\""Headphones\"", \""Charger\""]",4390.7,{},82988,1,"""Europe""" +2024-02-11,3436,1448,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",948.14,"{\""promo\"": \""5%\""}",14008,1,"""Asia""" +2024-07-10,3437,8400,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3460.35,{},286934,0,"""North America""" +2023-10-28,3438,1890,"[\""Headphones\""]",1068.99,{},249717,0,"""North America""" +2024-08-11,3439,8847,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2283.92,"{\"": \""16%\""}",58352,0,"""South America""" +2024-12-14,3440,7541,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2850.62,{},19334,0,"""Asia""" +2023-05-13,3441,2681,"[\""Headphones\""]",1823.09,{},226388,1,"""Europe""" +2024-09-08,3442,3313,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",130.62,{},275928,0,"""Europe""" +2023-05-30,3443,9126,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3597.36,"{\""loyalty\"": \""9%\""}",209622,0,"""Europe""" +2023-07-15,3444,7216,"[\""Headphones\"", \""Laptop\""]",1372.71,{},136536,0,"""Asia""" +2024-03-06,3445,928,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1235.85,"{\"": \""22%\""}",106988,0,"""South America""" +2024-08-15,3446,6241,"[\""Keyboard\"", \""Tablet\""]",4981.44,{},234767,1,"""Asia""" +2023-05-09,3447,2267,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3523.54,"{\""promo\"": \""18%\""}",26097,1,"""South America""" +2024-01-12,3448,8359,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",967.07,"{\""seasonal\"": \""18%\""}",133589,0,"""Europe""" +2024-05-29,3449,3549,"[\""Phone\""]",1148.07,{},263071,1,"""South America""" +2024-09-29,3450,6376,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3290.0,"{\"": \""24%\""}",94772,1,"""Europe""" +2023-03-14,3451,4492,"[\""Keyboard\"", \""Phone\""]",4656.61,{},202320,1,"""North America""" +2023-03-15,3452,2042,"[\""Laptop\""]",1869.23,{},54564,0,"""Europe""" +2023-09-13,3453,9173,"[\""Charger\"", \""Laptop\""]",3320.35,"{\""seasonal\"": \""9%\""}",295320,1,"""South America""" +2024-09-14,3454,4545,"[\""Phone\""]",1286.03,"{\"": \""26%\""}",239548,0,"""Asia""" +2023-03-17,3455,2311,"[\""Phone\""]",3889.26,{},201912,1,"""Africa""" +2024-08-16,3456,2213,"[\""Wireless Mouse\"", \""Keyboard\""]",4598.17,{},151329,0,"""North America""" +2023-10-13,3457,4679,"[\""Wireless Mouse\"", \""Laptop\""]",338.54,"{\""seasonal\"": \""23%\""}",190403,0,"""Africa""" +2024-09-23,3458,7818,"[\""Monitor\"", \""Keyboard\""]",3784.25,"{\""loyalty\"": \""22%\""}",32172,1,"""Asia""" +2024-10-30,3459,8176,"[\""Laptop\"", \""Tablet\""]",1374.96,{},67087,0,"""South America""" +2023-03-15,3460,3670,"[\""Monitor\""]",2353.84,"{\"": \""6%\""}",134301,1,"""Africa""" +2023-11-16,3461,4470,"[\""Phone\""]",1470.53,"{\""loyalty\"": \""27%\""}",202421,0,"""North America""" +2023-04-26,3462,466,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2166.55,{},285668,0,"""North America""" +2024-05-09,3463,8539,"[\""Charger\"", \""Wireless Mouse\""]",3441.65,{},163232,0,"""Africa""" +2023-09-22,3464,4727,"[\""Charger\"", \""Phone\""]",1613.22,"{\""loyalty\"": \""19%\""}",26648,0,"""Africa""" +2024-02-08,3465,9703,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1694.08,"{\"": \""28%\""}",298913,0,"""South America""" +2024-12-29,3466,66,"[\""Headphones\"", \""Keyboard\""]",3824.86,"{\""promo\"": \""8%\""}",247118,1,"""South America""" +2024-12-30,3467,6705,"[\""Monitor\""]",3096.9,"{\""seasonal\"": \""13%\""}",120231,1,"""Africa""" +2024-07-31,3468,3253,"[\""Tablet\"", \""Wireless Mouse\""]",1936.88,{},106298,1,"""South America""" +2023-10-09,3469,4985,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2033.99,{},63716,0,"""South America""" +2023-10-24,3470,1740,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4830.3,{},58498,1,"""Europe""" +2023-11-07,3471,3419,"[\""Phone\""]",1244.26,{},260177,1,"""North America""" +2023-12-21,3472,4636,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2989.58,"{\""seasonal\"": \""22%\""}",285329,0,"""South America""" +2023-08-09,3473,644,"[\""Headphones\""]",4908.91,"{\""loyalty\"": \""8%\""}",196290,1,"""South America""" +2023-03-11,3474,9763,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4331.78,"{\""loyalty\"": \""15%\""}",292124,0,"""North America""" +2023-02-09,3475,5039,"[\""Phone\"", \""Wireless Mouse\""]",3140.26,{},1187,0,"""Africa""" +2023-11-29,3476,7848,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2504.39,"{\"": \""5%\""}",57674,1,"""Africa""" +2023-08-25,3477,5071,"[\""Wireless Mouse\""]",4741.14,{},139479,0,"""Africa""" +2023-09-09,3478,8131,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4231.86,"{\""promo\"": \""17%\""}",76804,1,"""Africa""" +2024-10-13,3479,200,"[\""Monitor\"", \""Headphones\""]",2476.8,"{\""promo\"": \""16%\""}",269801,1,"""South America""" +2023-04-14,3480,230,"[\""Phone\""]",4251.92,"{\""seasonal\"": \""8%\""}",109198,1,"""North America""" +2024-03-22,3481,9553,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",770.09,"{\"": \""20%\""}",35897,0,"""Europe""" +2024-09-16,3482,6273,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4103.68,{},268303,1,"""Asia""" +2023-10-21,3483,7959,"[\""Charger\""]",2760.78,"{\""loyalty\"": \""8%\""}",188776,0,"""South America""" +2024-01-14,3484,3351,"[\""Wireless Mouse\"", \""Charger\""]",2067.69,"{\""loyalty\"": \""17%\""}",299608,0,"""North America""" +2023-02-15,3485,5198,"[\""Headphones\""]",593.86,"{\""seasonal\"": \""11%\""}",175020,1,"""Africa""" +2023-06-03,3486,1469,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2185.01,"{\""loyalty\"": \""29%\""}",122686,0,"""Asia""" +2024-10-18,3487,1091,"[\""Laptop\"", \""Phone\""]",341.47,{},69824,0,"""North America""" +2024-03-16,3488,1510,"[\""Laptop\""]",880.06,{},62025,1,"""South America""" +2023-12-24,3489,7647,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2866.95,"{\""promo\"": \""22%\""}",224305,1,"""Asia""" +2024-05-23,3490,2214,"[\""Wireless Mouse\"", \""Tablet\""]",1508.25,"{\""promo\"": \""25%\""}",147553,0,"""North America""" +2024-07-29,3491,4136,"[\""Monitor\"", \""Tablet\""]",1108.6,{},124241,1,"""South America""" +2023-04-04,3492,3663,"[\""Monitor\"", \""Wireless Mouse\""]",704.92,"{\""promo\"": \""17%\""}",43894,1,"""Europe""" +2023-04-28,3493,1753,"[\""Monitor\"", \""Laptop\""]",4320.27,{},271787,1,"""Asia""" +2023-11-01,3494,7719,"[\""Charger\"", \""Phone\""]",3019.74,"{\""seasonal\"": \""24%\""}",64639,1,"""Europe""" +2024-08-23,3495,2111,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",232.57,{},222809,0,"""Africa""" +2024-01-11,3496,1297,"[\""Headphones\""]",904.71,{},232062,1,"""Europe""" +2024-03-10,3497,8512,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2031.44,"{\"": \""18%\""}",262596,1,"""Africa""" +2024-02-28,3498,1650,"[\""Laptop\""]",2485.33,{},235330,1,"""Europe""" +2023-07-18,3499,9496,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3392.97,"{\""seasonal\"": \""14%\""}",84492,1,"""North America""" +2024-12-02,3500,7041,"[\""Headphones\""]",360.3,"{\""seasonal\"": \""10%\""}",136407,1,"""Asia""" +2023-04-19,3501,2556,"[\""Phone\""]",2028.33,{},203486,0,"""Asia""" +2023-02-28,3502,3198,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1585.47,{},202256,1,"""Europe""" +2023-02-26,3503,6511,"[\""Monitor\""]",1223.0,{},96324,0,"""Africa""" +2024-07-11,3504,6490,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4513.27,"{\""seasonal\"": \""27%\""}",205323,0,"""Africa""" +2024-02-07,3505,6523,"[\""Phone\"", \""Headphones\""]",801.67,"{\""promo\"": \""15%\""}",98667,0,"""Europe""" +2023-11-21,3506,3337,"[\""Phone\"", \""Monitor\""]",637.13,{},243713,1,"""Asia""" +2024-08-15,3507,433,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4206.04,"{\"": \""10%\""}",131973,1,"""Asia""" +2023-06-24,3508,7142,"[\""Monitor\""]",2475.8,"{\""loyalty\"": \""28%\""}",173659,1,"""Africa""" +2024-06-20,3509,8680,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4234.58,{},290183,0,"""South America""" +2023-11-26,3510,597,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",992.17,{},109846,1,"""Europe""" +2024-03-09,3511,7930,"[\""Laptop\""]",1013.16,"{\""promo\"": \""10%\""}",11311,1,"""Asia""" +2024-10-14,3512,9743,"[\""Tablet\"", \""Charger\""]",4903.61,"{\""loyalty\"": \""27%\""}",280777,1,"""Europe""" +2023-04-04,3513,3603,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3954.73,"{\"": \""20%\""}",260901,0,"""Africa""" +2023-04-20,3514,7490,"[\""Tablet\""]",4703.37,"{\""seasonal\"": \""5%\""}",273267,1,"""Africa""" +2023-04-22,3515,555,"[\""Monitor\""]",4870.44,"{\""seasonal\"": \""25%\""}",270889,0,"""Asia""" +2023-10-01,3516,7136,"[\""Wireless Mouse\""]",1515.69,"{\""seasonal\"": \""25%\""}",166678,1,"""Asia""" +2023-06-05,3517,8599,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1185.89,"{\""loyalty\"": \""19%\""}",147773,1,"""Africa""" +2023-10-18,3518,3937,"[\""Headphones\""]",3883.45,{},54450,1,"""Europe""" +2024-07-01,3519,4040,"[\""Headphones\"", \""Tablet\""]",482.23,"{\""promo\"": \""9%\""}",99461,0,"""South America""" +2023-06-10,3520,5837,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2584.52,"{\"": \""24%\""}",28076,0,"""Europe""" +2024-06-15,3521,9030,"[\""Monitor\""]",584.09,{},192482,1,"""North America""" +2023-10-31,3522,4575,"[\""Wireless Mouse\""]",1528.84,"{\"": \""9%\""}",107143,1,"""North America""" +2024-07-18,3523,7913,"[\""Tablet\"", \""Charger\""]",4015.53,{},292579,0,"""South America""" +2024-11-15,3524,3835,"[\""Headphones\""]",4638.15,{},8632,1,"""Asia""" +2024-01-13,3525,9148,"[\""Headphones\"", \""Phone\""]",467.45,{},13580,0,"""South America""" +2024-07-22,3526,7358,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2091.48,"{\""seasonal\"": \""11%\""}",207036,1,"""South America""" +2023-07-11,3527,1345,"[\""Headphones\""]",4242.68,"{\""loyalty\"": \""30%\""}",207953,1,"""Africa""" +2023-09-22,3528,8294,"[\""Monitor\"", \""Tablet\""]",1476.61,"{\""promo\"": \""17%\""}",31115,0,"""North America""" +2023-11-27,3529,1414,"[\""Charger\""]",716.9,{},220271,1,"""South America""" +2024-07-30,3530,7667,"[\""Monitor\"", \""Wireless Mouse\""]",1525.1,{},176024,1,"""Africa""" +2023-04-13,3531,2895,"[\""Phone\""]",4790.16,{},298204,1,"""Africa""" +2023-05-12,3532,7050,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2215.94,{},241662,0,"""North America""" +2023-07-21,3533,8155,"[\""Phone\"", \""Monitor\""]",542.64,{},245321,0,"""South America""" +2023-08-27,3534,5591,"[\""Monitor\"", \""Keyboard\""]",1594.56,{},290748,1,"""Europe""" +2023-04-06,3535,6476,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",754.63,{},266716,1,"""Asia""" +2024-04-23,3536,1153,"[\""Wireless Mouse\""]",2370.3,{},215507,1,"""Europe""" +2023-02-23,3537,1330,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4912.22,{},237730,0,"""Europe""" +2024-08-15,3538,7310,"[\""Laptop\""]",2991.74,"{\""loyalty\"": \""25%\""}",119507,1,"""South America""" +2023-11-25,3539,9793,"[\""Phone\"", \""Headphones\""]",3304.91,{},38671,1,"""Asia""" +2024-10-20,3540,8776,"[\""Headphones\"", \""Wireless Mouse\""]",1141.96,"{\"": \""24%\""}",21529,0,"""Asia""" +2023-11-23,3541,8360,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4689.56,"{\"": \""16%\""}",149156,1,"""Africa""" +2023-07-04,3542,7724,"[\""Charger\""]",4208.62,"{\""seasonal\"": \""12%\""}",254871,1,"""Africa""" +2023-08-02,3543,5505,"[\""Monitor\""]",1854.08,"{\""loyalty\"": \""27%\""}",1209,0,"""Asia""" +2024-03-03,3544,6909,"[\""Charger\"", \""Laptop\""]",4328.52,"{\"": \""22%\""}",23520,1,"""Europe""" +2023-09-15,3545,2480,"[\""Keyboard\""]",2126.49,{},82744,0,"""North America""" +2023-06-19,3546,7586,"[\""Headphones\""]",4096.95,{},248033,1,"""Asia""" +2023-12-24,3547,607,"[\""Laptop\""]",1748.23,{},173698,1,"""Asia""" +2023-03-14,3548,5571,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",91.64,{},275385,0,"""Asia""" +2024-01-31,3549,8483,"[\""Phone\""]",4167.91,{},115798,0,"""Europe""" +2024-04-28,3550,494,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1338.55,"{\""promo\"": \""21%\""}",107967,0,"""Africa""" +2024-11-20,3551,8771,"[\""Phone\"", \""Laptop\""]",2215.07,"{\""promo\"": \""15%\""}",126550,0,"""Africa""" +2024-03-07,3552,8861,"[\""Laptop\"", \""Headphones\""]",2420.75,{},258901,1,"""South America""" +2023-10-17,3553,2259,"[\""Tablet\"", \""Keyboard\""]",4591.05,"{\""promo\"": \""13%\""}",70665,0,"""Asia""" +2023-01-14,3554,9080,"[\""Keyboard\"", \""Monitor\""]",669.66,"{\""promo\"": \""28%\""}",239081,0,"""Asia""" +2023-05-04,3555,3298,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4752.33,"{\""promo\"": \""23%\""}",52462,1,"""Africa""" +2024-02-07,3556,8639,"[\""Tablet\""]",649.61,"{\""promo\"": \""26%\""}",220423,0,"""Europe""" +2024-09-07,3557,7416,"[\""Charger\"", \""Keyboard\""]",3786.63,"{\""promo\"": \""14%\""}",296713,0,"""North America""" +2024-01-04,3558,5619,"[\""Tablet\""]",3844.05,"{\""promo\"": \""6%\""}",166814,0,"""Asia""" +2024-12-10,3559,2152,"[\""Monitor\"", \""Wireless Mouse\""]",4098.17,"{\""promo\"": \""18%\""}",270507,0,"""Africa""" +2023-03-10,3560,6696,"[\""Tablet\""]",2151.5,{},177481,0,"""North America""" +2024-02-06,3561,3445,"[\""Wireless Mouse\"", \""Tablet\""]",779.54,"{\""promo\"": \""8%\""}",285945,1,"""Europe""" +2023-06-15,3562,7577,"[\""Wireless Mouse\""]",3794.14,"{\""seasonal\"": \""21%\""}",274570,1,"""South America""" +2023-10-11,3563,1789,"[\""Wireless Mouse\"", \""Charger\""]",3772.51,"{\""seasonal\"": \""26%\""}",96035,0,"""Africa""" +2024-08-19,3564,1145,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3860.27,{},288628,0,"""Asia""" +2023-04-17,3565,2546,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",983.85,"{\"": \""14%\""}",18613,1,"""Europe""" +2023-07-11,3566,7787,"[\""Tablet\"", \""Phone\""]",53.87,{},198331,1,"""Europe""" +2023-01-08,3567,3416,"[\""Laptop\""]",3435.81,{},235409,1,"""North America""" +2024-05-04,3568,6257,"[\""Monitor\"", \""Laptop\""]",2072.49,"{\""promo\"": \""16%\""}",291997,0,"""Asia""" +2024-04-08,3569,6879,"[\""Phone\""]",3191.26,"{\""promo\"": \""14%\""}",137089,1,"""Asia""" +2024-08-29,3570,442,"[\""Monitor\""]",2224.7,{},263442,1,"""Asia""" +2023-02-01,3571,2411,"[\""Keyboard\"", \""Charger\""]",1828.45,"{\"": \""23%\""}",68824,0,"""Africa""" +2024-05-24,3572,6632,"[\""Monitor\"", \""Phone\""]",4141.6,{},23104,1,"""Europe""" +2023-08-14,3573,9144,"[\""Laptop\""]",1803.4,"{\"": \""28%\""}",267429,1,"""South America""" +2023-01-01,3574,9310,"[\""Tablet\"", \""Keyboard\""]",1709.5,"{\"": \""22%\""}",130123,1,"""Europe""" +2024-10-21,3575,9331,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",504.26,{},255103,0,"""South America""" +2023-08-24,3576,2873,"[\""Tablet\"", \""Charger\""]",1511.93,{},24994,0,"""Asia""" +2023-04-23,3577,2056,"[\""Charger\"", \""Monitor\""]",4771.8,"{\""promo\"": \""11%\""}",6802,0,"""North America""" +2023-09-29,3578,6888,"[\""Headphones\"", \""Charger\""]",4770.6,"{\""loyalty\"": \""21%\""}",86431,0,"""Europe""" +2023-07-05,3579,2443,"[\""Wireless Mouse\""]",2376.53,"{\""promo\"": \""20%\""}",12326,0,"""Europe""" +2023-10-06,3580,795,"[\""Charger\""]",3887.77,"{\""seasonal\"": \""12%\""}",240309,1,"""Asia""" +2024-04-01,3581,335,"[\""Wireless Mouse\"", \""Phone\""]",846.05,{},127316,0,"""South America""" +2023-10-04,3582,2981,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1044.96,"{\"": \""14%\""}",296414,1,"""North America""" +2024-08-10,3583,3545,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4938.18,{},147149,0,"""Africa""" +2024-12-10,3584,5081,"[\""Laptop\"", \""Headphones\""]",4497.15,"{\""promo\"": \""12%\""}",59216,1,"""Africa""" +2023-03-04,3585,7166,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3521.54,"{\""seasonal\"": \""14%\""}",98285,0,"""Africa""" +2024-12-11,3586,2410,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",226.39,"{\""promo\"": \""10%\""}",19721,1,"""South America""" +2023-10-12,3587,7565,"[\""Phone\"", \""Headphones\""]",1458.01,"{\"": \""24%\""}",104310,0,"""South America""" +2024-12-07,3588,1240,"[\""Keyboard\""]",4375.68,{},274446,0,"""Asia""" +2024-04-09,3589,355,"[\""Monitor\"", \""Wireless Mouse\""]",4383.5,"{\"": \""13%\""}",13938,0,"""Europe""" +2024-10-18,3590,3806,"[\""Laptop\"", \""Headphones\""]",2320.29,{},260265,1,"""Europe""" +2024-07-17,3591,4925,"[\""Monitor\"", \""Headphones\""]",4368.81,"{\"": \""16%\""}",291258,0,"""Africa""" +2023-06-29,3592,6220,"[\""Phone\""]",2451.36,{},140051,1,"""Europe""" +2023-01-02,3593,1042,"[\""Phone\"", \""Charger\""]",2876.69,"{\"": \""9%\""}",111520,0,"""Europe""" +2024-03-13,3594,1215,"[\""Laptop\""]",1902.16,"{\"": \""14%\""}",49052,1,"""Africa""" +2023-01-02,3595,2004,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4982.11,"{\""promo\"": \""30%\""}",271854,0,"""South America""" +2023-09-07,3596,6792,"[\""Monitor\"", \""Laptop\""]",2478.55,"{\""seasonal\"": \""26%\""}",156824,0,"""South America""" +2023-03-06,3597,2287,"[\""Wireless Mouse\""]",1758.04,{},165247,0,"""South America""" +2023-11-04,3598,350,"[\""Wireless Mouse\"", \""Keyboard\""]",682.38,"{\""seasonal\"": \""17%\""}",6289,0,"""South America""" +2023-08-12,3599,4432,"[\""Charger\""]",1796.25,{},131795,0,"""Africa""" +2024-09-10,3600,8696,"[\""Phone\""]",1059.77,{},299960,1,"""North America""" +2024-05-02,3601,3053,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1786.28,"{\"": \""22%\""}",268943,0,"""Africa""" +2023-09-30,3602,9138,"[\""Headphones\"", \""Tablet\""]",639.05,{},99419,1,"""South America""" +2023-05-09,3603,3884,"[\""Wireless Mouse\""]",4627.17,"{\""seasonal\"": \""11%\""}",112575,0,"""Africa""" +2024-10-22,3604,314,"[\""Phone\"", \""Laptop\""]",2679.34,{},130182,1,"""Europe""" +2023-06-10,3605,4037,"[\""Phone\"", \""Monitor\""]",4949.61,"{\""seasonal\"": \""24%\""}",96100,0,"""South America""" +2023-02-15,3606,2468,"[\""Headphones\""]",4717.85,"{\"": \""11%\""}",273426,0,"""Asia""" +2024-02-18,3607,686,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1466.08,{},198669,1,"""Europe""" +2023-06-01,3608,8987,"[\""Monitor\"", \""Laptop\""]",2347.16,{},69756,0,"""Europe""" +2024-08-30,3609,1836,"[\""Keyboard\"", \""Headphones\""]",4761.79,{},219837,0,"""Africa""" +2023-12-20,3610,9387,"[\""Wireless Mouse\""]",4269.01,"{\""promo\"": \""5%\""}",260906,1,"""Europe""" +2024-10-27,3611,8496,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3670.08,{},181520,1,"""Africa""" +2024-02-26,3612,1232,"[\""Laptop\""]",4974.46,"{\""seasonal\"": \""30%\""}",116126,1,"""South America""" +2024-03-29,3613,8261,"[\""Charger\"", \""Wireless Mouse\""]",183.25,"{\"": \""5%\""}",109535,1,"""North America""" +2023-04-22,3614,2583,"[\""Wireless Mouse\"", \""Keyboard\""]",2819.03,{},136517,0,"""Asia""" +2023-02-15,3615,9719,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",186.86,{},201490,1,"""Asia""" +2023-12-01,3616,2992,"[\""Headphones\""]",4233.63,{},251298,1,"""South America""" +2023-01-03,3617,5835,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2773.75,"{\""promo\"": \""12%\""}",296983,0,"""Africa""" +2024-10-09,3618,5955,"[\""Laptop\"", \""Tablet\""]",2871.66,{},237962,0,"""North America""" +2024-12-18,3619,6465,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4321.37,"{\""seasonal\"": \""23%\""}",272064,1,"""North America""" +2024-07-28,3620,489,"[\""Phone\"", \""Keyboard\""]",4818.85,{},287444,1,"""Asia""" +2024-02-13,3621,3203,"[\""Wireless Mouse\"", \""Phone\""]",4078.75,{},197033,0,"""Africa""" +2023-08-09,3622,4940,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",959.67,{},8728,0,"""Europe""" +2023-12-31,3623,7519,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3125.28,"{\""seasonal\"": \""26%\""}",156373,0,"""Europe""" +2024-04-09,3624,6518,"[\""Phone\"", \""Headphones\""]",98.7,"{\""seasonal\"": \""9%\""}",111726,1,"""Europe""" +2023-08-12,3625,5735,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",525.99,{},150474,1,"""North America""" +2024-05-13,3626,402,"[\""Keyboard\""]",4564.16,"{\""promo\"": \""26%\""}",138990,1,"""Europe""" +2023-07-12,3627,7575,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3650.71,"{\"": \""7%\""}",262490,0,"""Asia""" +2024-09-09,3628,4071,"[\""Charger\""]",1029.05,{},230890,0,"""South America""" +2024-10-19,3629,1662,"[\""Phone\"", \""Wireless Mouse\""]",1900.82,"{\""loyalty\"": \""14%\""}",256647,0,"""Europe""" +2023-08-05,3630,1347,"[\""Charger\""]",2251.21,"{\""seasonal\"": \""10%\""}",235278,0,"""Europe""" +2023-05-23,3631,9635,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2446.22,{},182456,1,"""North America""" +2023-07-14,3632,3582,"[\""Charger\"", \""Monitor\""]",3716.53,"{\""seasonal\"": \""6%\""}",2618,0,"""North America""" +2023-05-04,3633,5941,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2368.22,{},118199,0,"""South America""" +2024-05-15,3634,6577,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1307.01,{},265811,0,"""Europe""" +2024-01-30,3635,518,"[\""Keyboard\""]",4385.49,{},133952,0,"""Europe""" +2024-12-22,3636,431,"[\""Headphones\"", \""Wireless Mouse\""]",514.03,{},238508,1,"""Africa""" +2024-01-29,3637,7012,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4198.14,{},156083,0,"""Asia""" +2023-11-09,3638,3585,"[\""Charger\"", \""Phone\""]",1280.54,"{\""seasonal\"": \""27%\""}",82175,1,"""Africa""" +2024-02-29,3639,5012,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3062.7,"{\""loyalty\"": \""30%\""}",291139,0,"""Europe""" +2023-07-25,3640,5841,"[\""Charger\""]",4420.51,{},263880,0,"""Europe""" +2024-05-26,3641,8884,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2586.88,"{\"": \""26%\""}",56656,0,"""Europe""" +2023-05-23,3642,3232,"[\""Laptop\""]",1709.6,"{\""promo\"": \""26%\""}",57713,0,"""Asia""" +2023-12-30,3643,7524,"[\""Wireless Mouse\"", \""Monitor\""]",4634.1,{},126648,1,"""Asia""" +2024-05-31,3644,331,"[\""Monitor\"", \""Charger\""]",3353.29,{},23947,1,"""South America""" +2023-02-27,3645,2465,"[\""Monitor\""]",4501.62,"{\""loyalty\"": \""9%\""}",164321,0,"""Africa""" +2024-06-09,3646,6174,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",459.23,{},290448,1,"""North America""" +2023-03-16,3647,4521,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4722.96,"{\""seasonal\"": \""21%\""}",173423,1,"""Asia""" +2024-10-23,3648,5587,"[\""Monitor\""]",4166.49,"{\""seasonal\"": \""6%\""}",23094,0,"""Europe""" +2023-07-18,3649,490,"[\""Charger\"", \""Wireless Mouse\""]",2218.86,{},103253,0,"""North America""" +2023-06-29,3650,3360,"[\""Charger\"", \""Tablet\""]",3401.1,{},41294,0,"""Europe""" +2024-04-12,3651,926,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4162.09,{},160257,1,"""Europe""" +2024-06-25,3652,2192,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3476.81,{},77197,0,"""Europe""" +2023-03-02,3653,3647,"[\""Phone\"", \""Wireless Mouse\""]",1574.33,"{\""seasonal\"": \""7%\""}",32803,1,"""Asia""" +2023-06-03,3654,8841,"[\""Phone\""]",3682.71,{},225805,0,"""Asia""" +2023-09-13,3655,72,"[\""Keyboard\"", \""Monitor\""]",96.51,{},204500,0,"""Europe""" +2023-04-07,3656,952,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2130.39,"{\"": \""10%\""}",26617,1,"""South America""" +2023-01-16,3657,5729,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1370.61,{},69474,0,"""Europe""" +2023-01-27,3658,3528,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4919.19,"{\""loyalty\"": \""9%\""}",175365,1,"""Africa""" +2024-06-29,3659,8519,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1370.53,"{\""promo\"": \""29%\""}",56294,0,"""North America""" +2023-05-27,3660,7323,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",517.02,"{\"": \""21%\""}",198798,1,"""Europe""" +2023-08-08,3661,8053,"[\""Wireless Mouse\""]",4180.03,{},198605,0,"""Asia""" +2023-07-29,3662,5870,"[\""Laptop\"", \""Monitor\""]",3479.43,{},170936,0,"""South America""" +2023-01-02,3663,1264,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4274.31,{},57019,0,"""Europe""" +2024-11-15,3664,9527,"[\""Keyboard\""]",1797.09,"{\""seasonal\"": \""29%\""}",72145,1,"""Europe""" +2023-01-28,3665,833,"[\""Headphones\""]",322.7,"{\""promo\"": \""24%\""}",288308,1,"""Africa""" +2024-12-11,3666,4205,"[\""Monitor\"", \""Tablet\""]",3543.92,{},131064,1,"""South America""" +2023-08-13,3667,9527,"[\""Monitor\""]",2198.91,"{\"": \""26%\""}",198622,1,"""Europe""" +2024-05-05,3668,656,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4435.55,{},135328,0,"""South America""" +2023-09-10,3669,5430,"[\""Phone\"", \""Laptop\""]",4107.61,{},211414,0,"""Africa""" +2023-06-19,3670,3777,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2042.14,"{\""loyalty\"": \""5%\""}",62538,1,"""Africa""" +2024-03-22,3671,9594,"[\""Keyboard\""]",1655.41,{},86713,0,"""North America""" +2023-11-10,3672,322,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",681.54,"{\""promo\"": \""12%\""}",14469,0,"""South America""" +2023-04-04,3673,820,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1635.63,{},229250,1,"""Europe""" +2023-01-15,3674,470,"[\""Phone\""]",1844.11,"{\""promo\"": \""13%\""}",70862,0,"""Asia""" +2023-07-16,3675,4226,"[\""Charger\"", \""Wireless Mouse\""]",2787.88,"{\""loyalty\"": \""19%\""}",72523,1,"""South America""" +2024-09-28,3676,5698,"[\""Tablet\""]",4995.58,{},180457,0,"""Asia""" +2023-02-07,3677,295,"[\""Keyboard\"", \""Tablet\""]",3603.73,{},169545,0,"""Africa""" +2024-03-20,3678,521,"[\""Monitor\""]",3767.56,"{\""promo\"": \""29%\""}",58454,1,"""Africa""" +2024-03-24,3679,7711,"[\""Laptop\"", \""Charger\""]",1827.67,{},213118,0,"""North America""" +2024-12-05,3680,3101,"[\""Keyboard\"", \""Laptop\""]",4873.4,"{\"": \""28%\""}",97454,1,"""North America""" +2023-01-23,3681,9288,"[\""Keyboard\"", \""Tablet\""]",3029.34,"{\""loyalty\"": \""24%\""}",114490,1,"""Asia""" +2023-11-07,3682,1088,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4643.32,"{\""loyalty\"": \""25%\""}",298902,1,"""Europe""" +2023-01-02,3683,5176,"[\""Wireless Mouse\""]",1845.78,"{\"": \""17%\""}",161658,0,"""North America""" +2023-07-02,3684,4466,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1753.23,"{\""seasonal\"": \""8%\""}",37530,0,"""Asia""" +2024-12-06,3685,7550,"[\""Charger\"", \""Tablet\""]",128.52,"{\""seasonal\"": \""15%\""}",134197,1,"""Asia""" +2023-12-29,3686,9897,"[\""Wireless Mouse\"", \""Tablet\""]",2137.14,{},261106,1,"""South America""" +2024-06-06,3687,3001,"[\""Charger\""]",1810.54,"{\""seasonal\"": \""17%\""}",130280,0,"""Asia""" +2024-04-02,3688,7487,"[\""Keyboard\"", \""Monitor\""]",2978.14,"{\""seasonal\"": \""9%\""}",143655,0,"""North America""" +2023-05-05,3689,7400,"[\""Monitor\"", \""Wireless Mouse\""]",1265.99,{},229950,0,"""North America""" +2024-07-01,3690,524,"[\""Monitor\"", \""Phone\""]",3093.4,"{\"": \""12%\""}",299521,0,"""Asia""" +2023-11-09,3691,9382,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1504.73,"{\""seasonal\"": \""6%\""}",200776,1,"""South America""" +2023-08-11,3692,3935,"[\""Laptop\""]",2293.01,"{\""promo\"": \""11%\""}",252036,1,"""Asia""" +2023-04-26,3693,2381,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3767.14,{},26896,1,"""Europe""" +2023-10-02,3694,8311,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",942.62,"{\""seasonal\"": \""27%\""}",274032,1,"""Europe""" +2024-11-10,3695,4217,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2077.25,"{\""seasonal\"": \""10%\""}",1177,0,"""Africa""" +2024-09-01,3696,813,"[\""Wireless Mouse\"", \""Keyboard\""]",1975.88,{},70406,0,"""North America""" +2023-04-05,3697,8866,"[\""Headphones\""]",2096.12,"{\""seasonal\"": \""19%\""}",128566,0,"""South America""" +2024-07-03,3698,4516,"[\""Wireless Mouse\"", \""Monitor\""]",3284.5,{},91500,0,"""Africa""" +2024-06-22,3699,8967,"[\""Monitor\"", \""Keyboard\""]",608.81,{},201258,1,"""South America""" +2023-07-15,3700,8580,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1014.08,{},19891,1,"""South America""" +2023-04-13,3701,4599,"[\""Keyboard\"", \""Headphones\""]",2166.97,{},235886,0,"""Africa""" +2024-10-11,3702,3154,"[\""Tablet\"", \""Charger\""]",1166.77,"{\"": \""29%\""}",194960,0,"""Europe""" +2024-12-24,3703,4873,"[\""Phone\"", \""Headphones\""]",170.71,"{\""seasonal\"": \""16%\""}",214229,1,"""South America""" +2023-11-11,3704,7271,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1738.14,"{\""loyalty\"": \""12%\""}",43642,1,"""South America""" +2024-01-30,3705,6699,"[\""Wireless Mouse\""]",3710.83,{},72580,0,"""South America""" +2023-10-06,3706,7869,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",148.97,{},245424,0,"""Africa""" +2024-09-14,3707,6890,"[\""Wireless Mouse\""]",3929.04,"{\""loyalty\"": \""19%\""}",74365,0,"""Asia""" +2024-03-06,3708,6203,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3043.83,"{\""seasonal\"": \""23%\""}",252405,1,"""Europe""" +2023-09-09,3709,8271,"[\""Keyboard\"", \""Phone\""]",1984.69,{},260514,1,"""South America""" +2024-10-01,3710,2811,"[\""Phone\""]",185.97,{},245998,1,"""Europe""" +2023-04-18,3711,1010,"[\""Keyboard\""]",2775.14,"{\""promo\"": \""19%\""}",104827,1,"""Africa""" +2024-08-09,3712,3763,"[\""Charger\""]",591.96,"{\""loyalty\"": \""18%\""}",267705,0,"""Asia""" +2023-12-26,3713,716,"[\""Wireless Mouse\""]",2752.2,{},52417,0,"""Europe""" +2023-06-20,3714,7607,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3237.86,"{\""seasonal\"": \""15%\""}",144456,1,"""South America""" +2023-04-07,3715,1564,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2609.66,"{\"": \""26%\""}",86256,1,"""South America""" +2024-07-07,3716,8378,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4907.33,{},106822,0,"""Africa""" +2023-09-10,3717,713,"[\""Phone\"", \""Charger\""]",3418.7,"{\""loyalty\"": \""5%\""}",280164,0,"""Europe""" +2023-01-26,3718,8648,"[\""Wireless Mouse\""]",2029.68,"{\"": \""5%\""}",125884,1,"""South America""" +2024-02-22,3719,7304,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2602.25,{},154167,0,"""South America""" +2023-03-10,3720,7357,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2067.59,{},195846,0,"""Europe""" +2023-10-12,3721,3303,"[\""Keyboard\"", \""Wireless Mouse\""]",99.02,{},142705,0,"""Africa""" +2024-08-05,3722,7102,"[\""Monitor\""]",824.37,"{\""promo\"": \""24%\""}",58041,0,"""South America""" +2024-10-20,3723,696,"[\""Wireless Mouse\""]",3543.86,"{\""promo\"": \""29%\""}",48681,0,"""North America""" +2023-11-06,3724,7116,"[\""Wireless Mouse\"", \""Phone\""]",594.67,{},82185,0,"""Asia""" +2024-06-30,3725,2256,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",349.43,"{\""promo\"": \""14%\""}",128325,0,"""South America""" +2023-04-09,3726,3383,"[\""Tablet\""]",1920.69,{},164060,1,"""North America""" +2024-11-14,3727,2554,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",738.34,{},110326,1,"""South America""" +2024-02-10,3728,7751,"[\""Tablet\""]",889.29,{},4401,1,"""North America""" +2024-05-15,3729,6672,"[\""Laptop\"", \""Headphones\""]",3604.03,{},50919,0,"""South America""" +2024-05-06,3730,3826,"[\""Keyboard\"", \""Wireless Mouse\""]",3888.15,"{\"": \""27%\""}",187507,0,"""South America""" +2023-01-16,3731,8022,"[\""Keyboard\""]",2758.14,{},232605,1,"""Asia""" +2024-09-11,3732,7492,"[\""Phone\""]",1070.24,"{\"": \""17%\""}",11757,1,"""Europe""" +2024-09-11,3733,5382,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1426.06,{},26505,1,"""Europe""" +2023-02-28,3734,4627,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4946.98,"{\""seasonal\"": \""7%\""}",163826,1,"""North America""" +2024-01-20,3735,6215,"[\""Phone\"", \""Monitor\""]",3518.54,{},272444,0,"""South America""" +2023-03-29,3736,7257,"[\""Headphones\""]",119.27,{},223037,0,"""South America""" +2023-12-09,3737,1199,"[\""Charger\""]",1359.46,{},53185,0,"""Africa""" +2023-06-26,3738,1209,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1098.26,{},94516,0,"""Europe""" +2023-05-01,3739,8678,"[\""Charger\"", \""Monitor\""]",263.11,"{\""seasonal\"": \""18%\""}",60549,1,"""South America""" +2023-01-21,3740,8284,"[\""Monitor\""]",2813.35,{},34926,0,"""North America""" +2023-12-16,3741,3189,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2929.34,{},200191,0,"""South America""" +2023-05-29,3742,7422,"[\""Monitor\"", \""Charger\""]",4532.75,"{\""loyalty\"": \""16%\""}",152813,0,"""Africa""" +2023-09-15,3743,8848,"[\""Laptop\"", \""Keyboard\""]",3008.89,"{\""loyalty\"": \""10%\""}",225016,0,"""Asia""" +2024-02-04,3744,2346,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4756.25,{},290827,1,"""Africa""" +2024-08-17,3745,1420,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2027.15,"{\""promo\"": \""14%\""}",278748,1,"""North America""" +2024-09-14,3746,5895,"[\""Monitor\"", \""Phone\""]",4868.05,{},137511,0,"""South America""" +2024-06-19,3747,3643,"[\""Tablet\""]",3697.73,{},291457,1,"""Africa""" +2024-06-25,3748,1274,"[\""Wireless Mouse\"", \""Keyboard\""]",298.1,"{\""loyalty\"": \""24%\""}",197286,0,"""North America""" +2024-03-17,3749,6895,"[\""Keyboard\""]",4962.37,{},250864,0,"""South America""" +2023-09-11,3750,7942,"[\""Laptop\""]",1878.08,{},194489,0,"""Africa""" +2024-11-11,3751,4201,"[\""Keyboard\"", \""Monitor\""]",1132.12,"{\""promo\"": \""27%\""}",59344,0,"""Africa""" +2024-05-05,3752,5709,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",699.26,"{\""seasonal\"": \""22%\""}",293687,0,"""Europe""" +2024-07-19,3753,4638,"[\""Tablet\"", \""Laptop\""]",3628.11,{},279277,1,"""North America""" +2024-09-25,3754,9904,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2540.78,"{\""seasonal\"": \""30%\""}",249638,1,"""Africa""" +2023-02-09,3755,3761,"[\""Headphones\"", \""Charger\""]",2766.37,"{\""promo\"": \""9%\""}",90233,0,"""South America""" +2024-07-21,3756,2534,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2696.79,"{\""promo\"": \""13%\""}",285006,1,"""Europe""" +2024-12-17,3757,7838,"[\""Keyboard\""]",616.95,"{\""seasonal\"": \""6%\""}",284639,1,"""Asia""" +2024-05-09,3758,6820,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1370.67,{},129526,0,"""North America""" +2023-08-30,3759,2762,"[\""Phone\""]",2002.12,{},178017,1,"""Europe""" +2024-07-03,3760,34,"[\""Charger\""]",3539.84,{},227574,0,"""Africa""" +2023-12-28,3761,2882,"[\""Wireless Mouse\""]",3942.36,{},98542,1,"""Asia""" +2024-04-08,3762,8935,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2239.2,"{\""seasonal\"": \""22%\""}",221859,1,"""North America""" +2023-12-14,3763,7958,"[\""Laptop\"", \""Charger\""]",848.55,{},233793,0,"""North America""" +2024-09-23,3764,2698,"[\""Headphones\""]",2540.52,{},171068,1,"""North America""" +2023-01-15,3765,5323,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1461.79,{},243684,1,"""Africa""" +2024-03-08,3766,4967,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",954.89,"{\""promo\"": \""12%\""}",153881,0,"""Europe""" +2024-11-20,3767,5739,"[\""Keyboard\"", \""Charger\""]",919.73,{},124487,1,"""Africa""" +2023-05-07,3768,8103,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",492.98,"{\""promo\"": \""28%\""}",17150,0,"""Europe""" +2023-09-16,3769,6290,"[\""Charger\""]",854.51,{},36620,1,"""South America""" +2024-09-14,3770,8677,"[\""Keyboard\"", \""Headphones\""]",4533.98,{},167370,0,"""Europe""" +2023-01-05,3771,9996,"[\""Charger\"", \""Wireless Mouse\""]",2013.0,"{\""seasonal\"": \""18%\""}",92750,0,"""Africa""" +2023-05-22,3772,3404,"[\""Phone\"", \""Laptop\""]",1974.77,{},11113,1,"""Europe""" +2023-06-12,3773,4446,"[\""Laptop\"", \""Tablet\""]",4805.35,{},125851,1,"""South America""" +2024-10-02,3774,2414,"[\""Laptop\"", \""Charger\""]",2980.74,"{\"": \""22%\""}",10137,1,"""Africa""" +2023-10-26,3775,5462,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1737.81,{},241120,0,"""Africa""" +2024-03-01,3776,5410,"[\""Charger\"", \""Keyboard\""]",746.49,"{\""promo\"": \""8%\""}",268413,0,"""North America""" +2024-02-17,3777,8784,"[\""Charger\""]",2165.22,{},227954,0,"""Asia""" +2024-02-16,3778,5712,"[\""Phone\""]",238.4,{},260493,0,"""Asia""" +2024-06-20,3779,6880,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3695.82,"{\"": \""24%\""}",24912,0,"""Europe""" +2023-06-23,3780,3685,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4862.28,{},201418,0,"""Africa""" +2023-01-08,3781,2037,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2848.46,{},143526,1,"""Asia""" +2024-05-17,3782,4387,"[\""Tablet\"", \""Wireless Mouse\""]",4535.95,"{\""loyalty\"": \""29%\""}",82255,0,"""North America""" +2024-10-05,3783,1520,"[\""Tablet\"", \""Laptop\""]",998.42,{},125807,1,"""North America""" +2024-06-21,3784,3898,"[\""Monitor\""]",4410.34,"{\""seasonal\"": \""30%\""}",51646,0,"""Africa""" +2024-04-29,3785,2679,"[\""Charger\""]",1007.15,"{\""loyalty\"": \""5%\""}",3714,1,"""North America""" +2024-06-11,3786,9857,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1879.37,{},287349,0,"""North America""" +2024-04-26,3787,1137,"[\""Tablet\""]",3252.28,{},287752,0,"""South America""" +2024-02-02,3788,7594,"[\""Tablet\""]",4953.64,{},231953,1,"""Asia""" +2023-10-29,3789,3802,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",612.03,"{\""loyalty\"": \""27%\""}",273459,1,"""Africa""" +2023-05-02,3790,8511,"[\""Laptop\"", \""Tablet\""]",535.88,{},46644,0,"""Africa""" +2024-04-05,3791,3436,"[\""Tablet\"", \""Monitor\""]",4475.36,"{\""seasonal\"": \""14%\""}",169145,1,"""Asia""" +2024-12-23,3792,2076,"[\""Laptop\""]",382.98,"{\""promo\"": \""20%\""}",98585,1,"""Africa""" +2023-01-16,3793,3599,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3805.78,{},59833,1,"""South America""" +2024-12-03,3794,1721,"[\""Charger\""]",282.04,"{\"": \""6%\""}",110791,1,"""South America""" +2024-06-25,3795,7302,"[\""Laptop\""]",903.4,{},66530,1,"""Asia""" +2024-10-10,3796,5586,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2745.62,"{\""loyalty\"": \""29%\""}",210905,0,"""Africa""" +2024-08-29,3797,7389,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1092.59,{},142931,1,"""South America""" +2024-10-26,3798,8190,"[\""Wireless Mouse\"", \""Phone\""]",3325.32,"{\"": \""12%\""}",272068,0,"""Africa""" +2023-11-08,3799,1005,"[\""Wireless Mouse\"", \""Charger\""]",1952.33,{},45164,0,"""South America""" +2023-09-21,3800,561,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3644.82,{},89717,0,"""South America""" +2024-12-26,3801,377,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1685.69,"{\""seasonal\"": \""24%\""}",150335,0,"""Europe""" +2024-03-16,3802,4197,"[\""Wireless Mouse\""]",1242.02,{},90133,1,"""Asia""" +2023-12-17,3803,9999,"[\""Tablet\""]",3162.16,{},260163,1,"""Asia""" +2024-10-25,3804,5087,"[\""Tablet\""]",4008.31,{},113699,1,"""Europe""" +2024-09-20,3805,4859,"[\""Keyboard\""]",3976.71,"{\""promo\"": \""25%\""}",185824,1,"""North America""" +2024-09-19,3806,6975,"[\""Keyboard\"", \""Monitor\""]",2897.77,"{\""loyalty\"": \""22%\""}",219746,1,"""South America""" +2023-09-19,3807,5263,"[\""Phone\""]",2894.27,"{\""seasonal\"": \""9%\""}",237402,1,"""North America""" +2024-11-20,3808,8470,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3547.98,"{\""seasonal\"": \""16%\""}",225320,0,"""North America""" +2023-12-12,3809,6254,"[\""Monitor\"", \""Keyboard\""]",1527.71,"{\"": \""17%\""}",79036,1,"""Europe""" +2023-10-03,3810,2026,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3935.39,{},249117,0,"""Asia""" +2023-10-16,3811,3628,"[\""Laptop\""]",3022.62,{},149279,0,"""Asia""" +2023-07-24,3812,1771,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3866.75,{},94941,0,"""North America""" +2024-07-22,3813,6065,"[\""Tablet\""]",2685.49,{},5520,0,"""Africa""" +2024-07-20,3814,5238,"[\""Headphones\""]",3993.2,{},265005,0,"""Europe""" +2024-07-29,3815,1528,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1464.4,{},273756,1,"""Africa""" +2023-06-27,3816,3169,"[\""Wireless Mouse\"", \""Laptop\""]",254.43,"{\""loyalty\"": \""7%\""}",208081,1,"""North America""" +2024-02-16,3817,2873,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3015.06,"{\""seasonal\"": \""8%\""}",92992,1,"""South America""" +2024-10-01,3818,5077,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1345.11,"{\""loyalty\"": \""5%\""}",232550,0,"""Asia""" +2024-05-11,3819,7292,"[\""Charger\"", \""Keyboard\""]",4393.78,"{\""loyalty\"": \""9%\""}",208216,0,"""Asia""" +2023-11-05,3820,6682,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4091.6,{},223428,1,"""Africa""" +2024-12-24,3821,2088,"[\""Headphones\"", \""Wireless Mouse\""]",557.22,"{\""seasonal\"": \""16%\""}",192322,1,"""Europe""" +2023-03-28,3822,7619,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1512.38,"{\""loyalty\"": \""5%\""}",100411,1,"""South America""" +2023-04-06,3823,3313,"[\""Headphones\""]",4040.59,"{\""promo\"": \""8%\""}",35028,1,"""South America""" +2023-07-30,3824,1395,"[\""Headphones\""]",1238.53,{},266187,0,"""North America""" +2024-02-18,3825,6604,"[\""Wireless Mouse\""]",4821.69,"{\""seasonal\"": \""20%\""}",51750,1,"""South America""" +2023-07-26,3826,7636,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2537.08,{},45460,0,"""Europe""" +2023-04-15,3827,4232,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",756.42,"{\""loyalty\"": \""29%\""}",91670,0,"""Africa""" +2024-09-03,3828,8837,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1691.51,"{\""seasonal\"": \""22%\""}",103309,0,"""North America""" +2024-02-24,3829,1888,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3470.94,{},213456,1,"""Europe""" +2024-09-16,3830,3656,"[\""Phone\"", \""Laptop\""]",2550.52,{},294424,1,"""Africa""" +2023-12-22,3831,1258,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4212.89,"{\""promo\"": \""7%\""}",2859,0,"""Asia""" +2023-08-18,3832,2320,"[\""Keyboard\"", \""Tablet\""]",3932.91,{},251320,0,"""Europe""" +2024-09-13,3833,9098,"[\""Phone\""]",2956.1,"{\""seasonal\"": \""8%\""}",189851,0,"""South America""" +2024-08-05,3834,4775,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",445.59,"{\""promo\"": \""20%\""}",163779,1,"""Europe""" +2024-07-02,3835,2993,"[\""Keyboard\"", \""Charger\""]",3958.63,{},120067,1,"""South America""" +2023-10-15,3836,5279,"[\""Phone\"", \""Tablet\""]",68.12,"{\""promo\"": \""14%\""}",26046,1,"""Africa""" +2023-12-27,3837,8149,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1789.84,"{\""promo\"": \""22%\""}",262955,0,"""Asia""" +2024-04-26,3838,6712,"[\""Laptop\"", \""Tablet\""]",1973.45,{},210881,1,"""South America""" +2023-10-20,3839,1906,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4385.55,{},276283,1,"""Asia""" +2023-11-08,3840,7123,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1036.98,"{\""loyalty\"": \""16%\""}",113085,1,"""South America""" +2023-04-02,3841,6765,"[\""Tablet\"", \""Phone\""]",3071.11,{},207147,1,"""South America""" +2024-09-28,3842,4409,"[\""Keyboard\"", \""Wireless Mouse\""]",4882.53,{},48309,0,"""Europe""" +2024-06-14,3843,2362,"[\""Laptop\""]",4533.81,"{\""promo\"": \""20%\""}",223734,1,"""Europe""" +2024-10-03,3844,1011,"[\""Phone\"", \""Tablet\""]",1795.19,"{\""seasonal\"": \""8%\""}",251556,1,"""Africa""" +2023-10-10,3845,786,"[\""Phone\"", \""Tablet\""]",830.34,{},241702,1,"""South America""" +2023-02-06,3846,8796,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1456.32,"{\"": \""18%\""}",102919,0,"""Africa""" +2023-04-20,3847,199,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4479.74,{},289998,1,"""South America""" +2023-03-06,3848,172,"[\""Tablet\""]",2338.47,"{\"": \""16%\""}",29364,0,"""North America""" +2023-03-22,3849,2207,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3239.08,"{\""seasonal\"": \""21%\""}",175569,1,"""Africa""" +2023-02-13,3850,9721,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2949.76,{},33870,1,"""South America""" +2024-06-17,3851,1484,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3340.75,{},77225,1,"""North America""" +2023-12-06,3852,4943,"[\""Monitor\""]",4859.33,{},15935,0,"""Asia""" +2024-02-02,3853,8098,"[\""Phone\"", \""Tablet\""]",4709.37,{},143332,1,"""North America""" +2023-11-22,3854,7006,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4169.46,"{\""loyalty\"": \""14%\""}",11714,1,"""South America""" +2023-07-29,3855,8843,"[\""Charger\"", \""Monitor\""]",2086.09,"{\"": \""15%\""}",155251,1,"""Asia""" +2024-12-06,3856,7684,"[\""Wireless Mouse\""]",4511.63,"{\""promo\"": \""24%\""}",268516,0,"""South America""" +2023-11-19,3857,1243,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1086.92,"{\""promo\"": \""7%\""}",97689,0,"""Asia""" +2024-12-29,3858,503,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1130.34,"{\""loyalty\"": \""14%\""}",160548,0,"""North America""" +2023-01-17,3859,1185,"[\""Wireless Mouse\""]",2777.72,"{\""seasonal\"": \""25%\""}",47198,0,"""South America""" +2024-07-28,3860,3224,"[\""Charger\"", \""Wireless Mouse\""]",4701.67,"{\""seasonal\"": \""28%\""}",186087,0,"""South America""" +2023-01-11,3861,9777,"[\""Tablet\""]",1438.08,{},33606,0,"""Europe""" +2024-03-12,3862,6078,"[\""Tablet\"", \""Keyboard\""]",1835.47,{},211388,1,"""Asia""" +2024-08-05,3863,6416,"[\""Charger\"", \""Laptop\""]",4170.74,{},175848,0,"""South America""" +2024-04-09,3864,4254,"[\""Charger\""]",2126.76,{},99041,1,"""Europe""" +2023-01-17,3865,7276,"[\""Keyboard\""]",1027.54,"{\""promo\"": \""20%\""}",287490,1,"""North America""" +2023-02-04,3866,9832,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1067.41,{},258133,1,"""North America""" +2023-11-25,3867,4329,"[\""Laptop\""]",851.82,"{\"": \""5%\""}",209881,1,"""Asia""" +2023-07-12,3868,5876,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1038.42,{},233704,0,"""South America""" +2024-07-22,3869,6299,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",577.15,"{\"": \""29%\""}",164078,1,"""North America""" +2023-08-21,3870,1051,"[\""Charger\""]",2615.93,"{\""seasonal\"": \""5%\""}",184672,1,"""Africa""" +2023-12-29,3871,5657,"[\""Monitor\"", \""Keyboard\""]",3548.34,"{\""loyalty\"": \""15%\""}",111705,0,"""Africa""" +2024-07-12,3872,8989,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2658.2,"{\"": \""21%\""}",193117,0,"""South America""" +2024-06-20,3873,3364,"[\""Wireless Mouse\"", \""Monitor\""]",918.18,"{\""promo\"": \""5%\""}",191760,0,"""North America""" +2024-03-27,3874,9128,"[\""Wireless Mouse\"", \""Phone\""]",823.06,"{\""loyalty\"": \""5%\""}",234919,0,"""North America""" +2023-02-13,3875,1466,"[\""Tablet\""]",3777.4,"{\"": \""28%\""}",145887,1,"""South America""" +2024-04-23,3876,2614,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1821.15,{},253929,0,"""South America""" +2024-05-08,3877,6368,"[\""Laptop\""]",802.45,{},252059,0,"""Europe""" +2023-10-05,3878,5614,"[\""Wireless Mouse\""]",1800.76,"{\""seasonal\"": \""10%\""}",295867,0,"""Asia""" +2023-10-19,3879,9490,"[\""Keyboard\""]",3975.4,"{\"": \""14%\""}",150906,0,"""Africa""" +2024-01-24,3880,8993,"[\""Wireless Mouse\"", \""Monitor\""]",3311.14,{},68906,1,"""South America""" +2023-10-12,3881,7425,"[\""Charger\""]",4564.94,{},293644,0,"""North America""" +2023-06-27,3882,1537,"[\""Headphones\"", \""Monitor\""]",1455.45,"{\""seasonal\"": \""13%\""}",24185,1,"""Asia""" +2023-11-20,3883,3305,"[\""Phone\""]",3946.85,"{\"": \""12%\""}",276976,1,"""South America""" +2023-10-10,3884,3977,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4673.59,{},59645,0,"""Asia""" +2024-06-02,3885,8964,"[\""Wireless Mouse\""]",3022.63,{},98559,0,"""Asia""" +2024-09-02,3886,2391,"[\""Charger\"", \""Monitor\""]",2850.37,"{\""promo\"": \""30%\""}",132437,1,"""South America""" +2024-02-14,3887,1645,"[\""Laptop\""]",2702.83,"{\"": \""14%\""}",251696,0,"""Asia""" +2023-03-28,3888,6815,"[\""Laptop\""]",442.04,{},260311,0,"""Asia""" +2024-04-21,3889,1753,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3941.09,"{\""loyalty\"": \""28%\""}",89359,0,"""Europe""" +2023-03-20,3890,3209,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4939.9,{},16657,0,"""Africa""" +2024-07-02,3891,974,"[\""Phone\""]",2096.76,{},226938,0,"""Africa""" +2023-06-05,3892,2017,"[\""Phone\""]",2451.54,{},289535,0,"""Asia""" +2024-12-31,3893,9027,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1740.12,"{\""promo\"": \""25%\""}",226184,0,"""North America""" +2023-06-11,3894,5261,"[\""Wireless Mouse\""]",1208.73,{},291084,1,"""Asia""" +2024-09-03,3895,370,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",541.8,{},273106,0,"""Africa""" +2024-01-13,3896,9694,"[\""Monitor\"", \""Phone\""]",1130.64,{},30624,1,"""Asia""" +2023-03-31,3897,7560,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",522.27,"{\"": \""25%\""}",138883,1,"""North America""" +2024-10-21,3898,112,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",207.95,"{\""seasonal\"": \""21%\""}",189484,0,"""Europe""" +2024-05-14,3899,1742,"[\""Monitor\""]",1808.58,{},29015,0,"""North America""" +2023-08-22,3900,8627,"[\""Laptop\""]",2276.22,{},230977,0,"""North America""" +2023-09-20,3901,6938,"[\""Tablet\"", \""Keyboard\""]",2565.06,"{\"": \""6%\""}",11158,1,"""Europe""" +2023-03-21,3902,6147,"[\""Wireless Mouse\"", \""Keyboard\""]",391.24,{},17617,0,"""South America""" +2023-10-25,3903,5041,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3213.77,"{\""seasonal\"": \""25%\""}",158165,0,"""South America""" +2023-12-14,3904,2132,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",476.93,{},268278,1,"""South America""" +2024-06-14,3905,1468,"[\""Phone\""]",1500.51,{},42292,0,"""Asia""" +2024-11-24,3906,3903,"[\""Keyboard\"", \""Phone\""]",895.29,"{\""seasonal\"": \""16%\""}",227931,0,"""North America""" +2024-04-02,3907,1708,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4948.16,{},206890,1,"""Asia""" +2024-04-08,3908,5597,"[\""Monitor\"", \""Charger\""]",845.98,"{\""seasonal\"": \""9%\""}",218118,0,"""North America""" +2024-01-13,3909,2962,"[\""Headphones\"", \""Laptop\""]",1086.18,"{\""promo\"": \""22%\""}",131865,1,"""North America""" +2023-05-11,3910,6207,"[\""Tablet\"", \""Headphones\""]",510.44,"{\""promo\"": \""23%\""}",121094,1,"""Asia""" +2023-10-18,3911,7657,"[\""Headphones\""]",1350.96,{},296047,0,"""Europe""" +2024-09-19,3912,3676,"[\""Wireless Mouse\""]",1880.6,"{\""promo\"": \""13%\""}",237904,1,"""Europe""" +2024-06-24,3913,547,"[\""Keyboard\"", \""Tablet\""]",265.23,{},9308,1,"""Europe""" +2023-02-02,3914,5113,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1270.31,{},100782,0,"""South America""" +2024-04-07,3915,7540,"[\""Tablet\"", \""Monitor\""]",1197.04,{},48673,1,"""Asia""" +2024-06-30,3916,6504,"[\""Phone\""]",2181.52,{},98242,1,"""North America""" +2023-10-07,3917,4555,"[\""Charger\"", \""Headphones\""]",2319.61,"{\""seasonal\"": \""23%\""}",229646,1,"""Asia""" +2024-09-24,3918,5538,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3850.45,"{\""promo\"": \""9%\""}",134846,1,"""Asia""" +2024-02-17,3919,4645,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3225.21,"{\""seasonal\"": \""24%\""}",88361,1,"""North America""" +2023-01-01,3920,1284,"[\""Monitor\""]",913.5,{},121116,0,"""North America""" +2024-01-08,3921,8879,"[\""Tablet\""]",1835.17,"{\"": \""8%\""}",62513,0,"""North America""" +2023-06-27,3922,1509,"[\""Laptop\"", \""Monitor\""]",386.2,"{\""seasonal\"": \""30%\""}",51362,0,"""North America""" +2023-10-16,3923,7314,"[\""Laptop\"", \""Headphones\""]",3843.69,"{\""promo\"": \""23%\""}",20484,1,"""Asia""" +2023-01-17,3924,2123,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3302.38,{},296845,0,"""Asia""" +2024-01-26,3925,6906,"[\""Monitor\"", \""Charger\""]",3728.94,"{\"": \""14%\""}",130983,0,"""South America""" +2024-03-08,3926,7161,"[\""Charger\""]",609.55,{},96494,0,"""Europe""" +2023-01-10,3927,2683,"[\""Wireless Mouse\"", \""Phone\""]",4336.79,{},137073,0,"""North America""" +2023-12-21,3928,3852,"[\""Tablet\""]",1772.26,"{\""loyalty\"": \""28%\""}",33265,1,"""North America""" +2023-08-26,3929,3232,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2414.13,{},179519,1,"""Europe""" +2023-06-12,3930,1186,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",905.95,"{\""promo\"": \""8%\""}",95646,0,"""North America""" +2024-09-09,3931,5671,"[\""Tablet\"", \""Wireless Mouse\""]",3809.39,{},191929,1,"""Africa""" +2024-02-29,3932,1633,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1740.67,"{\""loyalty\"": \""27%\""}",148762,1,"""Africa""" +2023-12-24,3933,762,"[\""Charger\""]",3328.01,{},217813,1,"""Asia""" +2024-12-14,3934,696,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",656.29,"{\""seasonal\"": \""25%\""}",165188,0,"""Africa""" +2024-06-01,3935,4798,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1596.56,"{\""seasonal\"": \""13%\""}",254063,1,"""Africa""" +2023-05-09,3936,8265,"[\""Monitor\"", \""Charger\""]",1963.64,"{\""promo\"": \""25%\""}",291871,1,"""Africa""" +2024-03-03,3937,4542,"[\""Laptop\"", \""Monitor\""]",1387.35,"{\"": \""17%\""}",135286,0,"""South America""" +2024-09-16,3938,3733,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",112.58,"{\""loyalty\"": \""7%\""}",27084,0,"""Asia""" +2023-04-15,3939,2907,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",399.61,"{\"": \""20%\""}",211608,0,"""Asia""" +2023-04-09,3940,4000,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1272.25,"{\""promo\"": \""30%\""}",95834,1,"""North America""" +2024-06-26,3941,5793,"[\""Phone\"", \""Tablet\""]",961.94,{},115048,1,"""Europe""" +2023-07-14,3942,5901,"[\""Charger\"", \""Headphones\""]",1330.55,{},204431,0,"""Africa""" +2023-05-20,3943,9929,"[\""Charger\""]",128.04,"{\""seasonal\"": \""30%\""}",78538,0,"""Africa""" +2024-06-09,3944,5189,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4596.42,"{\""promo\"": \""22%\""}",122664,0,"""Europe""" +2024-01-31,3945,6064,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4143.95,{},211665,1,"""North America""" +2023-08-24,3946,1705,"[\""Phone\"", \""Laptop\""]",4605.82,"{\""promo\"": \""14%\""}",182287,1,"""North America""" +2024-11-09,3947,9812,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",557.55,"{\"": \""10%\""}",95957,0,"""South America""" +2024-09-26,3948,3224,"[\""Monitor\"", \""Keyboard\""]",3449.58,{},259396,0,"""Africa""" +2024-03-06,3949,4447,"[\""Tablet\""]",3335.99,"{\"": \""9%\""}",85016,1,"""Europe""" +2023-05-11,3950,4085,"[\""Tablet\""]",2286.51,"{\""seasonal\"": \""14%\""}",119249,1,"""Europe""" +2023-11-07,3951,4337,"[\""Headphones\"", \""Phone\""]",4329.99,"{\""seasonal\"": \""21%\""}",152477,1,"""North America""" +2024-08-27,3952,9097,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",375.19,{},211436,0,"""South America""" +2023-03-04,3953,3381,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1299.61,{},215148,0,"""North America""" +2023-02-02,3954,918,"[\""Charger\""]",3777.53,{},15431,0,"""Africa""" +2023-01-27,3955,2445,"[\""Wireless Mouse\"", \""Headphones\""]",4375.33,{},112020,1,"""South America""" +2023-02-22,3956,1460,"[\""Tablet\""]",3641.36,"{\""loyalty\"": \""13%\""}",178813,0,"""North America""" +2024-02-15,3957,2970,"[\""Phone\""]",2837.21,{},155567,1,"""South America""" +2023-05-04,3958,2080,"[\""Tablet\"", \""Monitor\""]",4444.38,{},211139,1,"""Asia""" +2024-06-18,3959,1273,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1842.93,{},69346,1,"""Africa""" +2023-06-02,3960,9775,"[\""Wireless Mouse\"", \""Charger\""]",467.86,"{\""seasonal\"": \""14%\""}",252749,1,"""North America""" +2023-10-06,3961,5511,"[\""Laptop\""]",398.91,{},231071,0,"""North America""" +2023-11-19,3962,8173,"[\""Monitor\"", \""Phone\""]",1083.09,{},211676,1,"""South America""" +2024-06-03,3963,3099,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4546.54,{},111724,0,"""Europe""" +2023-12-05,3964,7281,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",376.63,"{\"": \""24%\""}",86508,0,"""South America""" +2024-09-22,3965,1817,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4567.97,"{\"": \""11%\""}",262210,0,"""South America""" +2024-11-27,3966,2125,"[\""Monitor\"", \""Headphones\""]",1107.65,{},269259,1,"""Africa""" +2023-02-04,3967,5568,"[\""Laptop\"", \""Wireless Mouse\""]",1922.71,{},196513,1,"""Europe""" +2023-12-09,3968,1273,"[\""Keyboard\""]",3703.88,{},277109,1,"""Europe""" +2024-09-29,3969,6115,"[\""Laptop\"", \""Charger\""]",4641.08,{},141708,1,"""Africa""" +2023-08-16,3970,9465,"[\""Monitor\"", \""Laptop\""]",2048.49,"{\""seasonal\"": \""21%\""}",13914,1,"""South America""" +2024-09-28,3971,5251,"[\""Charger\""]",241.15,{},209909,0,"""Asia""" +2024-11-21,3972,3558,"[\""Phone\""]",3109.56,{},117126,1,"""Asia""" +2024-09-03,3973,1567,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3745.27,"{\""seasonal\"": \""14%\""}",252969,1,"""Europe""" +2023-07-09,3974,2598,"[\""Monitor\"", \""Headphones\""]",2617.83,"{\"": \""5%\""}",43476,0,"""Africa""" +2024-09-24,3975,5001,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1618.81,"{\""seasonal\"": \""5%\""}",240793,1,"""North America""" +2024-01-19,3976,8,"[\""Keyboard\"", \""Phone\""]",3449.25,"{\""promo\"": \""6%\""}",199226,0,"""Asia""" +2024-03-07,3977,1763,"[\""Laptop\"", \""Charger\""]",4279.44,"{\"": \""7%\""}",188424,1,"""North America""" +2024-05-27,3978,4614,"[\""Keyboard\""]",118.95,{},203068,1,"""Europe""" +2024-09-03,3979,4359,"[\""Laptop\""]",1023.45,"{\"": \""14%\""}",279380,1,"""Asia""" +2024-04-25,3980,1931,"[\""Tablet\"", \""Monitor\""]",2217.75,{},155168,0,"""Africa""" +2024-09-04,3981,514,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2064.25,{},291553,1,"""Asia""" +2023-11-01,3982,8841,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2798.37,{},78813,1,"""North America""" +2024-12-04,3983,7730,"[\""Keyboard\""]",2042.25,{},203136,1,"""Europe""" +2024-11-01,3984,2083,"[\""Charger\""]",1506.08,"{\""seasonal\"": \""29%\""}",187038,0,"""South America""" +2024-11-17,3985,1673,"[\""Monitor\"", \""Tablet\""]",4023.26,{},265151,0,"""Africa""" +2024-10-26,3986,914,"[\""Headphones\"", \""Tablet\""]",768.06,{},242284,1,"""North America""" +2024-09-12,3987,9627,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",797.27,"{\""loyalty\"": \""23%\""}",71059,1,"""North America""" +2023-06-12,3988,895,"[\""Charger\""]",4902.29,{},124632,0,"""Africa""" +2024-12-11,3989,5506,"[\""Laptop\""]",2545.09,{},54460,1,"""North America""" +2024-10-13,3990,4185,"[\""Headphones\""]",438.98,{},181059,1,"""North America""" +2023-06-16,3991,791,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3553.61,"{\""promo\"": \""16%\""}",27044,1,"""Africa""" +2023-08-23,3992,4217,"[\""Keyboard\"", \""Charger\""]",1517.91,"{\""loyalty\"": \""26%\""}",297017,0,"""Europe""" +2024-04-15,3993,8026,"[\""Headphones\""]",1645.68,"{\"": \""9%\""}",293979,0,"""South America""" +2024-12-03,3994,3883,"[\""Wireless Mouse\""]",574.21,{},21136,0,"""Africa""" +2024-10-14,3995,2303,"[\""Phone\"", \""Charger\""]",4274.86,{},271453,0,"""South America""" +2023-01-07,3996,8095,"[\""Laptop\"", \""Monitor\""]",369.06,"{\""loyalty\"": \""12%\""}",186213,1,"""North America""" +2023-12-02,3997,533,"[\""Keyboard\""]",1474.06,"{\""seasonal\"": \""9%\""}",15024,1,"""Africa""" +2023-10-28,3998,2317,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4597.06,"{\""loyalty\"": \""22%\""}",222274,1,"""North America""" +2024-01-09,3999,4123,"[\""Wireless Mouse\""]",4523.64,"{\""loyalty\"": \""17%\""}",192751,1,"""Europe""" +2023-05-22,4000,6628,"[\""Wireless Mouse\""]",208.01,"{\""seasonal\"": \""9%\""}",54019,1,"""Europe""" +2023-04-10,4001,2851,"[\""Laptop\"", \""Tablet\""]",3052.87,"{\""loyalty\"": \""11%\""}",52110,0,"""Europe""" +2023-10-21,4002,5791,"[\""Laptop\""]",997.65,{},80235,1,"""North America""" +2023-10-10,4003,3376,"[\""Headphones\"", \""Charger\""]",4759.29,"{\""seasonal\"": \""13%\""}",277927,1,"""Europe""" +2023-02-12,4004,5666,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2053.87,{},67414,1,"""South America""" +2023-11-04,4005,1028,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4926.86,"{\""promo\"": \""15%\""}",242966,1,"""North America""" +2023-03-27,4006,6022,"[\""Tablet\"", \""Laptop\""]",2458.52,"{\"": \""19%\""}",90299,0,"""Europe""" +2023-10-25,4007,5261,"[\""Charger\"", \""Tablet\""]",4829.88,"{\""loyalty\"": \""22%\""}",96659,1,"""Europe""" +2024-09-20,4008,1315,"[\""Headphones\""]",1479.24,{},238363,1,"""Asia""" +2023-06-25,4009,7877,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2959.46,{},12259,0,"""Europe""" +2023-01-03,4010,163,"[\""Tablet\""]",2316.0,"{\"": \""7%\""}",267179,0,"""Europe""" +2024-12-10,4011,7775,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2922.87,{},17044,1,"""South America""" +2024-04-19,4012,7575,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3366.32,"{\""seasonal\"": \""30%\""}",26195,0,"""Asia""" +2023-09-28,4013,1307,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",692.37,"{\"": \""26%\""}",112866,1,"""North America""" +2024-10-29,4014,675,"[\""Charger\"", \""Phone\""]",3184.2,"{\""loyalty\"": \""30%\""}",36844,0,"""Africa""" +2024-06-15,4015,6680,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1897.0,{},70179,0,"""Africa""" +2023-01-23,4016,7178,"[\""Tablet\"", \""Laptop\""]",1681.66,"{\""loyalty\"": \""30%\""}",64970,1,"""North America""" +2024-06-04,4017,2150,"[\""Headphones\"", \""Wireless Mouse\""]",2647.64,{},238535,1,"""Asia""" +2023-04-17,4018,314,"[\""Wireless Mouse\"", \""Charger\""]",1546.67,"{\""seasonal\"": \""30%\""}",184623,0,"""Europe""" +2023-11-25,4019,7592,"[\""Keyboard\"", \""Laptop\""]",2057.85,{},231036,0,"""South America""" +2024-03-02,4020,426,"[\""Wireless Mouse\"", \""Headphones\""]",3151.8,"{\""seasonal\"": \""29%\""}",288065,1,"""North America""" +2024-05-31,4021,7344,"[\""Phone\""]",1933.59,{},88401,1,"""Africa""" +2023-08-21,4022,157,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1447.41,"{\""loyalty\"": \""26%\""}",165651,1,"""North America""" +2023-01-10,4023,8428,"[\""Keyboard\"", \""Charger\""]",1010.52,{},48698,1,"""Africa""" +2024-12-21,4024,1804,"[\""Headphones\"", \""Monitor\""]",4150.63,"{\"": \""30%\""}",272982,0,"""Europe""" +2024-10-14,4025,2276,"[\""Keyboard\"", \""Headphones\""]",2685.25,{},171015,0,"""North America""" +2023-09-11,4026,5940,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2004.93,"{\""promo\"": \""8%\""}",95988,0,"""Europe""" +2023-10-24,4027,3102,"[\""Charger\""]",2159.79,"{\"": \""5%\""}",17349,0,"""Europe""" +2024-09-25,4028,5135,"[\""Phone\"", \""Keyboard\""]",3141.88,{},47487,0,"""Asia""" +2024-04-01,4029,6825,"[\""Phone\"", \""Keyboard\""]",1376.71,{},283101,0,"""Asia""" +2023-09-25,4030,8051,"[\""Phone\""]",1095.75,"{\""loyalty\"": \""26%\""}",138227,1,"""South America""" +2024-11-02,4031,2752,"[\""Phone\""]",354.76,"{\"": \""6%\""}",199818,0,"""Europe""" +2024-03-11,4032,9855,"[\""Wireless Mouse\""]",4913.52,{},104984,0,"""Africa""" +2024-09-01,4033,8157,"[\""Laptop\"", \""Charger\""]",1532.09,"{\"": \""22%\""}",168158,1,"""Asia""" +2023-02-01,4034,3730,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1166.32,"{\"": \""6%\""}",260621,1,"""Asia""" +2024-05-10,4035,2905,"[\""Tablet\"", \""Monitor\""]",2307.05,"{\"": \""23%\""}",266937,0,"""North America""" +2023-03-18,4036,4401,"[\""Keyboard\"", \""Phone\""]",3429.1,"{\""loyalty\"": \""5%\""}",185276,0,"""Europe""" +2024-02-18,4037,6168,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",640.68,"{\""loyalty\"": \""6%\""}",91408,0,"""Asia""" +2024-01-28,4038,3467,"[\""Wireless Mouse\""]",2791.56,{},215472,0,"""North America""" +2024-07-31,4039,6082,"[\""Headphones\"", \""Keyboard\""]",4593.47,"{\"": \""20%\""}",208738,0,"""South America""" +2024-07-26,4040,6384,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",876.96,{},180299,0,"""North America""" +2024-07-16,4041,691,"[\""Monitor\""]",1756.65,{},299679,1,"""Africa""" +2024-02-01,4042,3544,"[\""Headphones\""]",224.3,"{\""loyalty\"": \""9%\""}",82195,0,"""South America""" +2023-07-18,4043,124,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2934.4,"{\""promo\"": \""13%\""}",298257,0,"""Asia""" +2023-07-24,4044,5157,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4315.83,"{\""promo\"": \""25%\""}",228947,0,"""South America""" +2023-04-07,4045,7426,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3026.89,{},29007,0,"""Europe""" +2024-10-11,4046,2019,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4707.5,{},110698,1,"""North America""" +2023-11-29,4047,414,"[\""Tablet\"", \""Keyboard\""]",3790.52,"{\""seasonal\"": \""6%\""}",297722,1,"""North America""" +2023-09-03,4048,7134,"[\""Keyboard\""]",1583.57,"{\"": \""7%\""}",146849,1,"""North America""" +2024-08-02,4049,4669,"[\""Charger\""]",563.58,{},86120,0,"""South America""" +2023-04-09,4050,3876,"[\""Phone\"", \""Headphones\""]",2146.93,{},127057,0,"""Europe""" +2024-03-04,4051,3497,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",471.11,"{\""seasonal\"": \""13%\""}",84059,0,"""Africa""" +2023-08-08,4052,6415,"[\""Charger\""]",3740.9,{},189635,1,"""North America""" +2023-09-26,4053,4928,"[\""Headphones\"", \""Monitor\""]",3715.9,"{\""promo\"": \""26%\""}",292673,1,"""Africa""" +2024-09-15,4054,9360,"[\""Phone\"", \""Charger\""]",2128.94,{},283488,0,"""Europe""" +2023-11-19,4055,1468,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1323.23,"{\""promo\"": \""9%\""}",56951,0,"""South America""" +2024-05-05,4056,3940,"[\""Wireless Mouse\"", \""Monitor\""]",2627.33,"{\"": \""6%\""}",141714,0,"""Asia""" +2024-09-16,4057,4369,"[\""Charger\""]",3546.72,"{\""promo\"": \""16%\""}",78216,0,"""North America""" +2024-06-02,4058,3948,"[\""Phone\""]",2764.69,{},88347,0,"""Europe""" +2024-05-04,4059,4231,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1876.23,"{\"": \""23%\""}",131673,1,"""Europe""" +2024-01-11,4060,5683,"[\""Phone\""]",3637.83,{},178632,1,"""Asia""" +2023-11-27,4061,4351,"[\""Tablet\""]",1977.42,"{\""seasonal\"": \""27%\""}",199982,0,"""Africa""" +2023-02-20,4062,6133,"[\""Wireless Mouse\"", \""Charger\""]",918.64,"{\"": \""10%\""}",34266,1,"""Africa""" +2024-09-28,4063,2615,"[\""Wireless Mouse\"", \""Phone\""]",4844.59,"{\""loyalty\"": \""12%\""}",248186,1,"""Asia""" +2023-08-01,4064,3775,"[\""Charger\"", \""Laptop\""]",4001.29,"{\"": \""11%\""}",235377,1,"""Africa""" +2023-05-01,4065,4382,"[\""Wireless Mouse\"", \""Monitor\""]",2640.84,"{\"": \""14%\""}",227069,0,"""Africa""" +2024-04-14,4066,6456,"[\""Tablet\""]",1902.08,"{\""promo\"": \""19%\""}",126943,0,"""Europe""" +2024-05-24,4067,6473,"[\""Wireless Mouse\""]",1192.24,{},228368,1,"""North America""" +2024-08-06,4068,5907,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2980.19,{},61397,0,"""North America""" +2023-12-09,4069,4577,"[\""Keyboard\""]",4017.08,"{\""seasonal\"": \""17%\""}",14170,0,"""South America""" +2023-05-19,4070,9058,"[\""Tablet\"", \""Charger\""]",4222.91,{},257877,0,"""Asia""" +2024-12-26,4071,4777,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2297.22,"{\"": \""17%\""}",153408,0,"""Africa""" +2024-11-12,4072,891,"[\""Monitor\"", \""Keyboard\""]",2500.76,"{\""loyalty\"": \""16%\""}",80169,0,"""Europe""" +2024-03-25,4073,4886,"[\""Headphones\"", \""Monitor\""]",1173.22,"{\""promo\"": \""19%\""}",106994,0,"""Asia""" +2023-06-10,4074,7107,"[\""Wireless Mouse\""]",1333.43,"{\""seasonal\"": \""23%\""}",29321,1,"""South America""" +2023-07-04,4075,4981,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2727.12,"{\"": \""27%\""}",108502,1,"""Africa""" +2024-07-04,4076,3161,"[\""Charger\""]",4361.98,"{\""loyalty\"": \""24%\""}",272947,1,"""North America""" +2024-06-19,4077,6689,"[\""Monitor\"", \""Keyboard\""]",4467.94,{},267382,0,"""South America""" +2023-07-08,4078,303,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",734.57,{},207098,0,"""Europe""" +2024-01-26,4079,6819,"[\""Charger\"", \""Laptop\""]",3641.18,{},283585,0,"""Asia""" +2023-09-03,4080,3052,"[\""Headphones\""]",714.1,{},241414,1,"""North America""" +2023-12-08,4081,9707,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",117.04,"{\""promo\"": \""5%\""}",133456,1,"""South America""" +2023-12-30,4082,598,"[\""Tablet\"", \""Phone\""]",1076.96,{},47046,0,"""South America""" +2023-10-02,4083,7285,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2603.44,{},49931,1,"""Europe""" +2024-05-30,4084,3970,"[\""Tablet\""]",2510.29,"{\""promo\"": \""16%\""}",173178,0,"""Europe""" +2023-05-09,4085,2819,"[\""Phone\"", \""Laptop\""]",3814.99,{},177753,0,"""South America""" +2023-02-06,4086,9445,"[\""Headphones\""]",3945.87,{},70025,0,"""Europe""" +2023-05-05,4087,5664,"[\""Phone\"", \""Headphones\""]",1006.55,"{\""loyalty\"": \""16%\""}",42029,1,"""Africa""" +2023-07-04,4088,8362,"[\""Wireless Mouse\"", \""Phone\""]",2463.69,{},1553,1,"""Africa""" +2023-08-18,4089,1094,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2426.5,{},290873,1,"""Europe""" +2023-01-20,4090,6398,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4481.39,{},272758,1,"""Europe""" +2023-10-13,4091,6074,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",632.25,{},29258,1,"""North America""" +2023-01-11,4092,6424,"[\""Laptop\""]",3059.48,{},259533,0,"""Asia""" +2023-03-30,4093,3603,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",448.06,{},268881,1,"""Asia""" +2023-10-15,4094,7283,"[\""Headphones\""]",1360.74,"{\"": \""24%\""}",79046,0,"""Asia""" +2023-11-14,4095,2456,"[\""Phone\"", \""Keyboard\""]",4500.83,{},159758,0,"""North America""" +2023-10-03,4096,8647,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4596.31,{},250304,0,"""Asia""" +2024-08-22,4097,4240,"[\""Wireless Mouse\"", \""Charger\""]",963.65,{},152662,0,"""Africa""" +2023-12-01,4098,9679,"[\""Tablet\"", \""Keyboard\""]",1974.47,"{\"": \""23%\""}",79363,1,"""Africa""" +2023-06-25,4099,6726,"[\""Phone\"", \""Monitor\""]",816.01,"{\""loyalty\"": \""7%\""}",226394,0,"""Europe""" +2023-01-08,4100,2100,"[\""Headphones\"", \""Wireless Mouse\""]",3027.63,{},273965,0,"""Asia""" +2023-09-12,4101,3906,"[\""Laptop\"", \""Charger\""]",3076.73,{},139375,1,"""North America""" +2023-01-17,4102,8534,"[\""Phone\"", \""Tablet\""]",1086.11,{},118882,1,"""Africa""" +2023-08-18,4103,4832,"[\""Phone\""]",2726.13,{},36103,0,"""North America""" +2024-01-21,4104,7893,"[\""Laptop\""]",1765.97,{},203972,0,"""Asia""" +2023-03-19,4105,7953,"[\""Wireless Mouse\""]",3456.91,{},122232,1,"""South America""" +2023-05-08,4106,20,"[\""Keyboard\""]",1406.26,"{\""seasonal\"": \""16%\""}",106942,1,"""South America""" +2024-12-25,4107,4002,"[\""Phone\""]",3678.66,"{\""promo\"": \""11%\""}",79668,0,"""North America""" +2024-02-18,4108,1541,"[\""Tablet\""]",1740.54,{},197036,1,"""Asia""" +2023-10-14,4109,4495,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4343.84,"{\""promo\"": \""20%\""}",77254,1,"""South America""" +2023-10-17,4110,3613,"[\""Wireless Mouse\"", \""Monitor\""]",2424.64,"{\""loyalty\"": \""10%\""}",71788,1,"""Africa""" +2024-03-13,4111,969,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3181.62,{},212920,1,"""Africa""" +2024-03-07,4112,1960,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",931.53,"{\""loyalty\"": \""28%\""}",153885,1,"""Europe""" +2024-04-22,4113,8111,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3637.07,{},173526,1,"""Africa""" +2024-02-16,4114,9709,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",856.47,"{\"": \""24%\""}",167204,1,"""Africa""" +2024-08-17,4115,2419,"[\""Tablet\""]",522.71,{},31095,1,"""South America""" +2024-02-20,4116,2092,"[\""Charger\"", \""Wireless Mouse\""]",2166.94,"{\""promo\"": \""19%\""}",75411,1,"""Europe""" +2024-11-04,4117,2569,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",219.07,"{\""loyalty\"": \""12%\""}",53915,0,"""South America""" +2023-08-25,4118,3516,"[\""Charger\"", \""Keyboard\""]",1684.71,{},220712,1,"""North America""" +2023-12-22,4119,4751,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2712.88,"{\""seasonal\"": \""14%\""}",173290,0,"""Africa""" +2023-05-02,4120,7712,"[\""Charger\""]",4900.11,"{\""seasonal\"": \""28%\""}",143443,0,"""Europe""" +2024-02-04,4121,6652,"[\""Wireless Mouse\""]",2718.5,{},106279,1,"""Europe""" +2024-08-23,4122,7107,"[\""Laptop\""]",3211.07,"{\"": \""12%\""}",163656,1,"""Asia""" +2023-10-20,4123,8490,"[\""Headphones\""]",513.9,"{\""loyalty\"": \""6%\""}",132938,0,"""North America""" +2023-01-13,4124,2272,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1110.04,"{\"": \""11%\""}",281885,0,"""South America""" +2024-08-17,4125,6583,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3754.5,"{\""seasonal\"": \""24%\""}",123902,0,"""South America""" +2024-12-30,4126,9835,"[\""Monitor\"", \""Laptop\""]",575.99,"{\"": \""26%\""}",35939,0,"""North America""" +2024-12-06,4127,9355,"[\""Wireless Mouse\""]",526.38,{},167613,1,"""Africa""" +2023-11-25,4128,5162,"[\""Charger\"", \""Wireless Mouse\""]",1372.28,{},270690,0,"""Asia""" +2024-05-17,4129,6812,"[\""Charger\""]",3644.65,{},78561,0,"""Europe""" +2023-05-22,4130,295,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4811.17,"{\""promo\"": \""14%\""}",235690,1,"""Europe""" +2023-01-23,4131,1232,"[\""Tablet\"", \""Monitor\""]",4473.0,{},288468,1,"""North America""" +2023-09-22,4132,7585,"[\""Keyboard\""]",4910.35,"{\""loyalty\"": \""16%\""}",287581,1,"""Asia""" +2024-12-11,4133,2261,"[\""Headphones\""]",375.96,"{\""seasonal\"": \""27%\""}",58867,0,"""Africa""" +2024-08-24,4134,7148,"[\""Charger\""]",4800.25,"{\""promo\"": \""17%\""}",265582,0,"""Africa""" +2024-01-22,4135,7364,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",988.27,{},154602,1,"""South America""" +2023-12-21,4136,2816,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1217.16,{},32572,0,"""North America""" +2024-05-09,4137,1146,"[\""Phone\"", \""Monitor\""]",3366.37,"{\""promo\"": \""15%\""}",280266,1,"""Africa""" +2023-04-11,4138,3325,"[\""Tablet\"", \""Wireless Mouse\""]",888.79,"{\"": \""12%\""}",111534,1,"""Asia""" +2024-02-14,4139,7170,"[\""Charger\""]",3746.02,"{\""promo\"": \""22%\""}",164692,1,"""Africa""" +2024-09-02,4140,8063,"[\""Laptop\"", \""Keyboard\""]",758.17,"{\""loyalty\"": \""20%\""}",67147,1,"""South America""" +2023-02-20,4141,4914,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2376.42,"{\""loyalty\"": \""28%\""}",22127,0,"""Europe""" +2023-09-27,4142,5670,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",546.55,"{\"": \""24%\""}",243063,0,"""Europe""" +2024-01-19,4143,7873,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",980.0,{},277593,0,"""South America""" +2024-08-08,4144,571,"[\""Laptop\"", \""Tablet\""]",1093.92,{},193681,0,"""Europe""" +2024-12-13,4145,9966,"[\""Keyboard\"", \""Wireless Mouse\""]",154.92,{},261605,1,"""Africa""" +2023-07-21,4146,1079,"[\""Laptop\"", \""Monitor\""]",4441.44,"{\""seasonal\"": \""15%\""}",10360,1,"""South America""" +2024-07-07,4147,1497,"[\""Keyboard\"", \""Phone\""]",996.34,"{\"": \""27%\""}",180697,0,"""North America""" +2024-08-24,4148,9554,"[\""Charger\"", \""Headphones\""]",677.11,{},171209,1,"""South America""" +2023-08-12,4149,847,"[\""Laptop\"", \""Charger\""]",295.98,{},215271,1,"""Africa""" +2024-02-29,4150,4790,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2110.2,"{\"": \""21%\""}",119444,1,"""Africa""" +2023-12-26,4151,8503,"[\""Phone\""]",903.27,{},262129,1,"""Europe""" +2023-03-10,4152,2349,"[\""Headphones\"", \""Laptop\""]",1675.49,{},12305,1,"""North America""" +2024-06-01,4153,8048,"[\""Wireless Mouse\""]",702.33,"{\"": \""30%\""}",227822,1,"""North America""" +2023-05-13,4154,7878,"[\""Monitor\"", \""Wireless Mouse\""]",892.44,{},172719,1,"""Europe""" +2024-08-14,4155,6455,"[\""Phone\"", \""Keyboard\""]",3615.94,"{\"": \""7%\""}",15788,1,"""Europe""" +2023-03-25,4156,706,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4137.63,"{\""loyalty\"": \""30%\""}",57718,0,"""Europe""" +2023-06-19,4157,3092,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",195.84,{},181828,1,"""Africa""" +2023-04-02,4158,4329,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4089.74,"{\""promo\"": \""18%\""}",146895,1,"""Europe""" +2023-10-26,4159,985,"[\""Phone\"", \""Keyboard\""]",967.25,"{\""promo\"": \""17%\""}",233144,0,"""Europe""" +2023-12-21,4160,6838,"[\""Keyboard\"", \""Monitor\""]",703.48,{},226073,1,"""Asia""" +2024-12-08,4161,6988,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3449.66,{},244560,0,"""North America""" +2023-12-14,4162,6191,"[\""Laptop\""]",2710.39,"{\""seasonal\"": \""17%\""}",82797,1,"""North America""" +2024-06-17,4163,5294,"[\""Monitor\""]",4166.14,"{\""loyalty\"": \""19%\""}",46912,0,"""Africa""" +2023-05-17,4164,9365,"[\""Keyboard\"", \""Headphones\""]",4332.65,{},131305,0,"""Asia""" +2024-02-01,4165,3967,"[\""Tablet\"", \""Keyboard\""]",514.19,{},235835,1,"""North America""" +2024-05-23,4166,3525,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2461.71,"{\"": \""7%\""}",232473,1,"""Africa""" +2024-04-02,4167,4412,"[\""Monitor\""]",4525.59,"{\"": \""14%\""}",294412,1,"""North America""" +2023-05-12,4168,9913,"[\""Headphones\"", \""Monitor\""]",1496.0,"{\""promo\"": \""11%\""}",230499,0,"""North America""" +2024-03-26,4169,4294,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",320.41,{},91827,1,"""Asia""" +2024-03-07,4170,9221,"[\""Laptop\"", \""Charger\""]",2237.16,{},274531,0,"""Europe""" +2023-05-11,4171,2834,"[\""Laptop\""]",4301.83,"{\"": \""8%\""}",259493,1,"""Europe""" +2024-09-24,4172,3350,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2527.69,"{\"": \""11%\""}",39828,0,"""Asia""" +2023-10-18,4173,4888,"[\""Keyboard\""]",1963.34,{},133084,0,"""Africa""" +2024-04-26,4174,1500,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3269.4,{},10454,1,"""Europe""" +2023-08-02,4175,2289,"[\""Wireless Mouse\""]",1901.31,"{\""seasonal\"": \""16%\""}",252731,1,"""Europe""" +2024-07-27,4176,8910,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2635.61,{},291532,0,"""Europe""" +2024-08-06,4177,4319,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1632.27,{},165016,0,"""Asia""" +2024-02-25,4178,3839,"[\""Wireless Mouse\""]",3593.93,"{\""promo\"": \""7%\""}",189621,0,"""South America""" +2023-01-20,4179,3794,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",327.72,{},193341,1,"""Africa""" +2023-05-16,4180,3622,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",450.22,{},217656,0,"""Europe""" +2023-10-24,4181,9394,"[\""Headphones\"", \""Monitor\""]",2350.18,"{\""promo\"": \""11%\""}",65334,0,"""Asia""" +2024-01-04,4182,2730,"[\""Keyboard\""]",3391.5,"{\""seasonal\"": \""7%\""}",48686,0,"""Asia""" +2023-07-06,4183,6739,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1098.49,"{\""promo\"": \""30%\""}",174866,1,"""South America""" +2023-11-16,4184,944,"[\""Monitor\""]",249.4,{},185308,0,"""Asia""" +2023-05-26,4185,5977,"[\""Headphones\"", \""Laptop\""]",1720.75,{},224879,0,"""Africa""" +2024-03-18,4186,6949,"[\""Laptop\""]",2835.02,"{\""seasonal\"": \""25%\""}",266703,0,"""Europe""" +2023-04-02,4187,225,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1996.44,{},201666,1,"""Europe""" +2023-08-22,4188,1920,"[\""Keyboard\"", \""Headphones\""]",2395.63,{},150754,0,"""Europe""" +2023-12-03,4189,7386,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2612.81,{},134140,0,"""South America""" +2024-01-25,4190,1829,"[\""Monitor\""]",4489.1,{},171757,1,"""Europe""" +2024-04-21,4191,9368,"[\""Laptop\"", \""Headphones\""]",4168.92,{},205754,1,"""Europe""" +2024-05-22,4192,2261,"[\""Laptop\""]",1240.08,{},180643,1,"""Asia""" +2024-02-28,4193,2158,"[\""Charger\""]",4354.61,"{\""promo\"": \""12%\""}",41593,0,"""Asia""" +2023-11-13,4194,6699,"[\""Keyboard\"", \""Tablet\""]",3393.42,{},120781,0,"""North America""" +2023-04-10,4195,3681,"[\""Tablet\""]",1952.56,{},268737,0,"""North America""" +2024-03-26,4196,4018,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1916.56,{},181580,0,"""Africa""" +2023-10-07,4197,2883,"[\""Keyboard\"", \""Monitor\""]",4763.58,"{\""loyalty\"": \""11%\""}",192964,1,"""Europe""" +2023-03-20,4198,9634,"[\""Charger\"", \""Laptop\""]",1978.48,{},8522,0,"""Europe""" +2024-10-27,4199,9727,"[\""Charger\""]",4243.36,"{\""seasonal\"": \""26%\""}",156680,1,"""South America""" +2023-04-16,4200,5497,"[\""Monitor\"", \""Headphones\""]",417.8,"{\"": \""7%\""}",125868,1,"""Europe""" +2024-12-21,4201,3845,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2482.57,"{\""seasonal\"": \""30%\""}",89398,0,"""Africa""" +2024-10-24,4202,5148,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2225.39,"{\""seasonal\"": \""15%\""}",282301,1,"""Africa""" +2024-10-04,4203,7458,"[\""Laptop\"", \""Headphones\""]",4785.35,"{\""loyalty\"": \""8%\""}",119897,0,"""North America""" +2023-04-07,4204,5440,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2488.15,{},143339,1,"""South America""" +2023-05-28,4205,3118,"[\""Headphones\"", \""Monitor\""]",2899.67,{},297996,1,"""North America""" +2024-02-27,4206,5050,"[\""Keyboard\""]",2731.85,"{\""promo\"": \""14%\""}",150115,1,"""South America""" +2024-04-03,4207,1388,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2493.8,"{\"": \""24%\""}",178798,1,"""Asia""" +2023-09-05,4208,7049,"[\""Charger\""]",2503.38,"{\""promo\"": \""19%\""}",57345,0,"""Asia""" +2023-03-07,4209,34,"[\""Monitor\"", \""Charger\""]",1006.71,"{\""seasonal\"": \""11%\""}",157717,0,"""Africa""" +2023-02-26,4210,220,"[\""Headphones\"", \""Phone\""]",1400.11,{},220637,0,"""North America""" +2024-10-18,4211,1876,"[\""Monitor\""]",4933.5,"{\""loyalty\"": \""21%\""}",288736,0,"""Asia""" +2024-06-25,4212,687,"[\""Headphones\"", \""Keyboard\""]",2386.95,{},177973,1,"""Europe""" +2023-02-25,4213,7472,"[\""Keyboard\""]",2733.65,"{\"": \""30%\""}",158537,1,"""Asia""" +2024-11-29,4214,7029,"[\""Tablet\"", \""Keyboard\""]",4353.43,"{\""seasonal\"": \""13%\""}",112254,1,"""Asia""" +2024-09-08,4215,3486,"[\""Charger\"", \""Headphones\""]",352.32,{},270786,1,"""Asia""" +2023-09-04,4216,3574,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2017.91,{},208265,0,"""North America""" +2024-02-07,4217,7265,"[\""Monitor\"", \""Phone\""]",1747.85,"{\""seasonal\"": \""16%\""}",275233,1,"""Asia""" +2024-09-17,4218,1836,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4913.72,{},49108,0,"""North America""" +2024-06-25,4219,7846,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2187.16,{},61995,0,"""Asia""" +2023-12-06,4220,9592,"[\""Headphones\""]",1090.01,"{\""seasonal\"": \""18%\""}",142523,0,"""North America""" +2023-07-02,4221,8325,"[\""Phone\""]",1625.91,{},46143,1,"""North America""" +2024-01-03,4222,9859,"[\""Wireless Mouse\""]",3572.83,"{\""loyalty\"": \""25%\""}",187148,0,"""Europe""" +2023-08-02,4223,2102,"[\""Phone\""]",4899.71,{},10176,0,"""Europe""" +2023-02-19,4224,3245,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3499.7,{},136780,0,"""South America""" +2023-06-02,4225,7977,"[\""Monitor\""]",3313.43,{},191057,1,"""North America""" +2023-08-05,4226,823,"[\""Keyboard\""]",2445.13,{},164166,0,"""South America""" +2024-10-25,4227,4537,"[\""Phone\"", \""Wireless Mouse\""]",1533.09,"{\""promo\"": \""10%\""}",50726,1,"""Asia""" +2024-09-18,4228,462,"[\""Headphones\"", \""Phone\""]",2872.92,"{\""promo\"": \""11%\""}",264924,0,"""Africa""" +2023-09-04,4229,2610,"[\""Keyboard\""]",2599.2,"{\"": \""27%\""}",160200,0,"""Africa""" +2023-01-06,4230,8929,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",124.86,"{\""loyalty\"": \""12%\""}",121590,0,"""Europe""" +2024-05-13,4231,3891,"[\""Wireless Mouse\""]",525.48,"{\""promo\"": \""13%\""}",278666,0,"""South America""" +2024-09-28,4232,3729,"[\""Phone\""]",3482.76,"{\""loyalty\"": \""18%\""}",140779,1,"""Asia""" +2024-03-05,4233,3444,"[\""Keyboard\"", \""Charger\""]",1522.23,"{\""promo\"": \""7%\""}",141519,0,"""Europe""" +2024-10-19,4234,8504,"[\""Laptop\""]",2622.48,"{\""promo\"": \""19%\""}",272702,0,"""Asia""" +2024-12-13,4235,1646,"[\""Monitor\""]",1652.18,{},174367,0,"""Africa""" +2024-12-12,4236,9433,"[\""Keyboard\""]",597.54,{},103714,1,"""Africa""" +2024-09-09,4237,5768,"[\""Monitor\""]",206.57,"{\"": \""15%\""}",77385,0,"""Europe""" +2023-01-15,4238,8927,"[\""Phone\"", \""Monitor\""]",1682.25,{},248452,1,"""Africa""" +2023-08-30,4239,946,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3369.15,"{\""seasonal\"": \""28%\""}",271021,0,"""Asia""" +2024-08-04,4240,7987,"[\""Monitor\""]",2913.91,{},187578,1,"""Africa""" +2024-03-19,4241,7495,"[\""Laptop\""]",4786.87,{},295956,1,"""South America""" +2023-03-31,4242,9455,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4313.62,"{\""seasonal\"": \""11%\""}",6782,0,"""North America""" +2024-05-14,4243,5287,"[\""Charger\""]",4286.89,"{\""seasonal\"": \""24%\""}",116319,1,"""North America""" +2023-12-08,4244,813,"[\""Keyboard\"", \""Laptop\""]",2661.87,"{\""promo\"": \""27%\""}",83186,1,"""South America""" +2024-04-21,4245,4789,"[\""Laptop\""]",1512.19,{},122793,1,"""Africa""" +2024-12-27,4246,6414,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3940.76,"{\"": \""18%\""}",288138,0,"""South America""" +2023-10-29,4247,6579,"[\""Headphones\"", \""Charger\""]",3411.23,{},241773,0,"""Europe""" +2023-02-03,4248,9222,"[\""Charger\""]",4542.48,"{\""seasonal\"": \""17%\""}",80225,1,"""Africa""" +2024-10-06,4249,4711,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2244.8,{},14467,1,"""South America""" +2023-06-13,4250,4003,"[\""Charger\""]",87.83,"{\""loyalty\"": \""15%\""}",187081,0,"""South America""" +2024-04-18,4251,8602,"[\""Headphones\""]",442.19,{},259463,1,"""Europe""" +2024-03-16,4252,3098,"[\""Laptop\"", \""Tablet\""]",2499.01,{},244394,0,"""Africa""" +2024-07-07,4253,5372,"[\""Laptop\""]",1872.42,"{\""loyalty\"": \""15%\""}",47545,0,"""South America""" +2024-04-26,4254,1943,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1336.33,{},162926,0,"""Europe""" +2024-06-20,4255,6771,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",768.27,"{\""seasonal\"": \""13%\""}",154903,1,"""South America""" +2023-09-18,4256,893,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",647.45,"{\""seasonal\"": \""25%\""}",37883,1,"""South America""" +2023-02-20,4257,7168,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1041.93,"{\"": \""27%\""}",219189,0,"""North America""" +2024-08-07,4258,1072,"[\""Keyboard\""]",1834.09,"{\""loyalty\"": \""28%\""}",269562,1,"""Europe""" +2023-08-19,4259,5783,"[\""Phone\"", \""Tablet\""]",4255.31,{},44511,1,"""Asia""" +2024-01-14,4260,4168,"[\""Keyboard\""]",1899.48,{},122256,0,"""North America""" +2024-11-20,4261,7425,"[\""Charger\""]",114.37,"{\""loyalty\"": \""25%\""}",80101,1,"""Europe""" +2023-07-14,4262,8754,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2145.77,"{\""loyalty\"": \""29%\""}",16670,1,"""Asia""" +2023-02-09,4263,7712,"[\""Wireless Mouse\"", \""Keyboard\""]",4647.03,"{\"": \""29%\""}",13767,1,"""South America""" +2023-05-21,4264,7973,"[\""Phone\""]",582.08,"{\""promo\"": \""26%\""}",76260,0,"""Africa""" +2023-02-17,4265,5451,"[\""Keyboard\""]",3213.38,"{\""seasonal\"": \""29%\""}",97637,0,"""Europe""" +2024-01-23,4266,6673,"[\""Keyboard\"", \""Laptop\""]",1284.06,"{\""promo\"": \""12%\""}",188718,0,"""North America""" +2024-10-27,4267,432,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4339.72,{},11425,1,"""South America""" +2023-04-30,4268,653,"[\""Laptop\"", \""Wireless Mouse\""]",3273.33,{},181900,1,"""Europe""" +2023-02-06,4269,5037,"[\""Monitor\""]",2729.19,"{\""promo\"": \""6%\""}",2573,0,"""Africa""" +2023-04-03,4270,5005,"[\""Charger\"", \""Phone\"", \""Monitor\""]",570.02,"{\"": \""20%\""}",60305,0,"""Asia""" +2023-11-05,4271,2801,"[\""Tablet\"", \""Keyboard\""]",140.72,{},213495,1,"""Africa""" +2023-08-28,4272,856,"[\""Monitor\"", \""Wireless Mouse\""]",4247.8,"{\""promo\"": \""28%\""}",87588,0,"""North America""" +2023-01-05,4273,4528,"[\""Keyboard\""]",2052.22,{},74123,1,"""Asia""" +2024-08-20,4274,3478,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2201.23,{},146421,0,"""North America""" +2024-10-02,4275,2907,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1333.2,"{\""seasonal\"": \""30%\""}",93375,0,"""Europe""" +2023-06-18,4276,2447,"[\""Keyboard\"", \""Charger\""]",3360.63,{},230686,0,"""Europe""" +2024-10-25,4277,7955,"[\""Headphones\"", \""Charger\""]",714.19,{},263547,1,"""North America""" +2024-05-03,4278,2232,"[\""Wireless Mouse\"", \""Monitor\""]",2682.1,"{\""seasonal\"": \""18%\""}",255490,1,"""Asia""" +2024-06-16,4279,3158,"[\""Laptop\""]",544.14,{},137094,1,"""Africa""" +2024-10-06,4280,1957,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1926.02,"{\"": \""5%\""}",224829,0,"""North America""" +2023-12-25,4281,469,"[\""Tablet\"", \""Laptop\""]",689.33,"{\""loyalty\"": \""6%\""}",174756,0,"""North America""" +2024-06-17,4282,2919,"[\""Headphones\""]",2175.32,{},104135,0,"""Europe""" +2023-02-06,4283,498,"[\""Keyboard\""]",2489.91,"{\"": \""27%\""}",233749,0,"""Asia""" +2024-06-13,4284,2665,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4478.55,{},99887,0,"""Europe""" +2024-01-08,4285,8686,"[\""Monitor\""]",424.0,{},68329,1,"""North America""" +2024-04-12,4286,6515,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4773.29,{},7701,1,"""Asia""" +2024-08-21,4287,2669,"[\""Headphones\"", \""Phone\""]",1922.06,{},187980,0,"""Asia""" +2023-07-02,4288,5629,"[\""Headphones\"", \""Phone\""]",4368.36,{},43272,0,"""North America""" +2024-10-07,4289,2360,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2395.01,"{\""promo\"": \""6%\""}",188018,0,"""Asia""" +2023-03-13,4290,2167,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2782.91,{},146741,0,"""Europe""" +2024-01-12,4291,5548,"[\""Tablet\""]",4036.17,"{\"": \""15%\""}",181719,0,"""North America""" +2023-11-14,4292,9345,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4340.3,{},114966,0,"""Asia""" +2023-08-17,4293,1081,"[\""Headphones\""]",4006.92,{},153838,0,"""Africa""" +2024-02-09,4294,7276,"[\""Keyboard\"", \""Headphones\""]",1014.63,{},280052,1,"""South America""" +2024-06-27,4295,1619,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",476.07,{},118595,0,"""Asia""" +2024-10-26,4296,3207,"[\""Tablet\""]",398.9,"{\""seasonal\"": \""26%\""}",88508,1,"""Africa""" +2024-07-11,4297,2429,"[\""Wireless Mouse\""]",4824.51,{},249677,0,"""North America""" +2024-10-01,4298,5756,"[\""Charger\""]",4814.59,"{\"": \""8%\""}",89308,1,"""Europe""" +2024-12-09,4299,7931,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2884.11,"{\""seasonal\"": \""28%\""}",124980,0,"""Asia""" +2023-05-28,4300,9220,"[\""Wireless Mouse\"", \""Laptop\""]",2758.37,{},86017,1,"""North America""" +2024-07-14,4301,2979,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4917.68,{},221093,1,"""South America""" +2023-09-19,4302,2731,"[\""Laptop\"", \""Tablet\""]",2301.16,{},17202,1,"""South America""" +2023-08-13,4303,2249,"[\""Monitor\"", \""Headphones\""]",1675.02,{},245136,1,"""North America""" +2024-01-23,4304,1852,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3375.16,{},265463,0,"""Europe""" +2024-04-28,4305,9025,"[\""Laptop\"", \""Wireless Mouse\""]",636.46,"{\""loyalty\"": \""30%\""}",145544,0,"""North America""" +2023-11-11,4306,6746,"[\""Laptop\""]",3857.54,{},290580,0,"""Africa""" +2024-10-02,4307,9300,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1469.84,{},68066,0,"""South America""" +2024-11-11,4308,938,"[\""Wireless Mouse\""]",4398.39,{},23740,1,"""Europe""" +2023-11-10,4309,6797,"[\""Headphones\"", \""Keyboard\""]",3996.41,"{\""seasonal\"": \""5%\""}",256040,0,"""Europe""" +2023-10-08,4310,871,"[\""Headphones\""]",3163.19,{},5995,0,"""North America""" +2024-07-23,4311,6442,"[\""Phone\""]",368.81,"{\"": \""9%\""}",112009,1,"""Africa""" +2023-03-09,4312,7623,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4365.88,"{\""seasonal\"": \""26%\""}",37073,1,"""South America""" +2023-04-10,4313,1972,"[\""Phone\"", \""Headphones\""]",2929.63,"{\""promo\"": \""29%\""}",24886,1,"""Europe""" +2024-10-03,4314,5045,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",102.23,"{\""promo\"": \""25%\""}",74638,0,"""Europe""" +2024-08-07,4315,9483,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",81.8,{},45737,1,"""North America""" +2024-06-21,4316,4870,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3383.32,"{\""promo\"": \""6%\""}",252854,1,"""South America""" +2023-05-16,4317,1473,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1132.4,{},151433,0,"""Africa""" +2023-07-09,4318,7838,"[\""Headphones\""]",2577.03,"{\"": \""11%\""}",24157,0,"""Europe""" +2023-05-30,4319,2850,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2989.8,{},14518,0,"""Asia""" +2023-12-12,4320,8085,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1628.21,"{\""promo\"": \""5%\""}",213104,1,"""South America""" +2024-04-22,4321,53,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3487.0,"{\""loyalty\"": \""19%\""}",281956,1,"""Asia""" +2024-08-05,4322,2929,"[\""Laptop\""]",2807.69,"{\""loyalty\"": \""24%\""}",58734,0,"""Africa""" +2023-06-06,4323,8915,"[\""Tablet\""]",2479.82,{},118276,1,"""North America""" +2024-10-01,4324,8960,"[\""Charger\"", \""Laptop\""]",3703.27,{},80794,0,"""South America""" +2024-04-02,4325,1365,"[\""Monitor\"", \""Phone\""]",1785.92,"{\""promo\"": \""8%\""}",114662,0,"""South America""" +2023-07-29,4326,9491,"[\""Tablet\""]",3330.43,{},61904,1,"""South America""" +2023-09-04,4327,7437,"[\""Phone\"", \""Monitor\""]",1423.98,"{\""promo\"": \""25%\""}",61963,1,"""South America""" +2024-03-22,4328,2462,"[\""Charger\"", \""Laptop\""]",3006.62,{},82079,1,"""South America""" +2023-05-02,4329,4786,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4905.23,{},153872,0,"""South America""" +2024-12-26,4330,2632,"[\""Laptop\""]",1237.82,"{\"": \""9%\""}",78042,1,"""Europe""" +2024-03-26,4331,4566,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4193.54,"{\""promo\"": \""28%\""}",176404,0,"""Africa""" +2024-02-24,4332,4885,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4826.81,"{\""seasonal\"": \""23%\""}",265117,1,"""Europe""" +2023-05-23,4333,8808,"[\""Monitor\"", \""Tablet\""]",2916.42,{},29494,1,"""South America""" +2024-07-02,4334,7959,"[\""Tablet\"", \""Headphones\""]",1541.73,"{\""promo\"": \""26%\""}",172540,0,"""North America""" +2023-07-19,4335,6038,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",303.65,"{\""promo\"": \""23%\""}",265147,1,"""Asia""" +2024-12-03,4336,9128,"[\""Tablet\"", \""Headphones\""]",2658.45,"{\""loyalty\"": \""17%\""}",228944,0,"""North America""" +2023-03-13,4337,6753,"[\""Wireless Mouse\"", \""Headphones\""]",1550.41,"{\""seasonal\"": \""24%\""}",13898,0,"""South America""" +2023-04-12,4338,7067,"[\""Laptop\"", \""Phone\""]",1302.45,{},4754,1,"""Europe""" +2023-12-30,4339,2264,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4862.99,"{\""promo\"": \""21%\""}",150714,1,"""North America""" +2024-08-22,4340,722,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1124.87,{},191733,1,"""South America""" +2023-11-20,4341,7416,"[\""Headphones\"", \""Keyboard\""]",3193.88,{},38215,1,"""South America""" +2023-02-17,4342,6383,"[\""Wireless Mouse\""]",4132.95,"{\""promo\"": \""10%\""}",116405,1,"""Africa""" +2024-12-15,4343,9175,"[\""Laptop\""]",415.89,"{\""promo\"": \""8%\""}",187518,1,"""North America""" +2023-09-27,4344,4719,"[\""Monitor\"", \""Tablet\""]",552.67,"{\""seasonal\"": \""7%\""}",82294,1,"""Europe""" +2023-08-28,4345,33,"[\""Phone\""]",2140.69,{},166427,0,"""South America""" +2023-01-30,4346,8743,"[\""Monitor\""]",2937.13,{},62091,0,"""Africa""" +2024-03-12,4347,1180,"[\""Phone\"", \""Charger\""]",4682.22,{},33483,1,"""North America""" +2024-03-26,4348,6925,"[\""Monitor\"", \""Tablet\""]",2021.74,{},295167,1,"""Asia""" +2023-09-03,4349,2261,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3159.62,"{\""promo\"": \""23%\""}",50494,0,"""Europe""" +2023-06-01,4350,9388,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3808.37,{},231784,0,"""Asia""" +2023-08-07,4351,7566,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2336.36,"{\""seasonal\"": \""13%\""}",96407,1,"""South America""" +2024-02-09,4352,7935,"[\""Headphones\""]",765.74,"{\""promo\"": \""23%\""}",191238,1,"""Asia""" +2023-11-17,4353,3150,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2746.84,"{\""promo\"": \""19%\""}",253532,1,"""Africa""" +2023-04-17,4354,9560,"[\""Laptop\""]",4020.37,{},297285,1,"""Europe""" +2023-10-11,4355,3361,"[\""Tablet\""]",1347.18,{},192796,0,"""Africa""" +2023-07-14,4356,3299,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",804.56,{},164249,1,"""North America""" +2024-04-26,4357,7179,"[\""Monitor\"", \""Laptop\""]",3032.58,{},109884,1,"""North America""" +2023-11-26,4358,9720,"[\""Phone\""]",881.16,"{\""seasonal\"": \""14%\""}",70642,1,"""Europe""" +2024-02-15,4359,2887,"[\""Phone\"", \""Wireless Mouse\""]",2076.19,"{\""seasonal\"": \""29%\""}",132437,0,"""North America""" +2023-12-23,4360,1246,"[\""Laptop\""]",3811.18,"{\"": \""29%\""}",39024,0,"""Asia""" +2023-06-03,4361,2459,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4600.8,{},287599,1,"""South America""" +2023-12-11,4362,1625,"[\""Tablet\""]",4344.45,"{\""loyalty\"": \""6%\""}",283547,1,"""Africa""" +2024-06-16,4363,2136,"[\""Headphones\""]",3258.27,"{\"": \""27%\""}",247899,0,"""Asia""" +2024-09-30,4364,539,"[\""Keyboard\""]",3236.63,{},33443,1,"""Africa""" +2023-04-21,4365,946,"[\""Keyboard\"", \""Headphones\""]",3738.0,"{\""promo\"": \""22%\""}",160205,1,"""South America""" +2024-07-01,4366,4597,"[\""Monitor\"", \""Charger\""]",2590.27,{},256962,1,"""Asia""" +2024-01-24,4367,8030,"[\""Keyboard\"", \""Laptop\""]",4443.44,{},157687,0,"""Europe""" +2023-07-08,4368,8782,"[\""Charger\""]",2555.29,{},252791,1,"""Africa""" +2024-01-12,4369,3684,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",769.99,{},102537,0,"""Europe""" +2024-07-31,4370,1933,"[\""Tablet\"", \""Headphones\""]",3071.11,{},144301,0,"""North America""" +2023-03-05,4371,1625,"[\""Monitor\""]",3087.39,{},154003,1,"""Africa""" +2023-09-11,4372,7518,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1732.39,"{\""loyalty\"": \""19%\""}",267342,1,"""Europe""" +2023-08-11,4373,1275,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1423.4,"{\"": \""7%\""}",133995,0,"""South America""" +2023-06-17,4374,906,"[\""Headphones\"", \""Tablet\""]",2676.04,"{\""seasonal\"": \""29%\""}",87517,1,"""Asia""" +2023-08-27,4375,2378,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2223.5,{},7321,1,"""Europe""" +2023-02-18,4376,9003,"[\""Phone\"", \""Laptop\""]",971.82,"{\""loyalty\"": \""16%\""}",264708,1,"""Asia""" +2024-09-14,4377,4988,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3563.79,{},208985,0,"""Africa""" +2024-07-25,4378,906,"[\""Keyboard\"", \""Laptop\""]",3604.74,"{\""seasonal\"": \""27%\""}",71804,1,"""Asia""" +2024-03-13,4379,1559,"[\""Headphones\"", \""Monitor\""]",4964.21,{},122526,1,"""Africa""" +2024-11-06,4380,2291,"[\""Laptop\""]",3810.27,{},67382,0,"""Europe""" +2023-05-19,4381,9643,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",941.76,{},266273,0,"""North America""" +2024-12-24,4382,2696,"[\""Phone\"", \""Monitor\""]",4610.37,{},146691,1,"""Europe""" +2023-03-11,4383,5066,"[\""Keyboard\""]",3384.52,{},128434,0,"""Asia""" +2023-11-22,4384,9411,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",479.82,{},44906,0,"""Europe""" +2023-06-19,4385,928,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2660.59,"{\""seasonal\"": \""5%\""}",134281,0,"""Asia""" +2024-01-16,4386,4821,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1758.83,{},25247,1,"""North America""" +2023-08-14,4387,3167,"[\""Phone\""]",4501.27,"{\""promo\"": \""28%\""}",114401,1,"""South America""" +2023-05-31,4388,7041,"[\""Headphones\"", \""Tablet\""]",4702.52,"{\"": \""10%\""}",102779,1,"""South America""" +2024-02-07,4389,5151,"[\""Laptop\"", \""Phone\""]",491.81,"{\"": \""7%\""}",66717,1,"""Asia""" +2023-05-14,4390,764,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2930.13,{},291812,1,"""Africa""" +2023-08-21,4391,653,"[\""Wireless Mouse\""]",4287.26,{},17369,1,"""Asia""" +2024-11-08,4392,3549,"[\""Laptop\"", \""Tablet\""]",3852.7,{},201147,0,"""Africa""" +2024-11-30,4393,4399,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1379.68,"{\""promo\"": \""29%\""}",200430,0,"""Europe""" +2024-02-17,4394,4464,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2944.35,"{\""promo\"": \""27%\""}",299351,1,"""North America""" +2024-11-17,4395,2918,"[\""Headphones\"", \""Wireless Mouse\""]",3665.59,"{\""seasonal\"": \""28%\""}",128944,1,"""North America""" +2023-02-20,4396,6410,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3309.29,"{\""loyalty\"": \""25%\""}",257223,1,"""North America""" +2023-03-16,4397,7828,"[\""Laptop\"", \""Tablet\""]",2995.9,"{\""promo\"": \""28%\""}",98639,1,"""Africa""" +2023-03-14,4398,7282,"[\""Wireless Mouse\"", \""Monitor\""]",651.26,{},2246,0,"""Asia""" +2023-03-11,4399,7854,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3060.66,"{\""seasonal\"": \""26%\""}",164734,1,"""Asia""" +2024-11-11,4400,1869,"[\""Charger\""]",383.21,{},281221,0,"""Africa""" +2023-09-06,4401,1984,"[\""Wireless Mouse\""]",369.25,{},61043,0,"""South America""" +2024-10-03,4402,8897,"[\""Tablet\"", \""Keyboard\""]",2611.98,"{\"": \""15%\""}",46911,1,"""Europe""" +2023-03-04,4403,7485,"[\""Keyboard\""]",1652.93,"{\""promo\"": \""15%\""}",92642,1,"""Africa""" +2024-11-09,4404,4981,"[\""Tablet\"", \""Laptop\""]",4969.68,{},29348,1,"""North America""" +2024-07-13,4405,2525,"[\""Phone\"", \""Keyboard\""]",3234.27,{},149892,1,"""South America""" +2023-02-19,4406,4467,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",776.14,"{\""seasonal\"": \""17%\""}",47091,0,"""South America""" +2024-02-22,4407,9652,"[\""Wireless Mouse\""]",1247.11,"{\"": \""14%\""}",113930,1,"""South America""" +2024-02-02,4408,8161,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4244.95,"{\""loyalty\"": \""30%\""}",107663,1,"""Africa""" +2023-03-02,4409,8024,"[\""Wireless Mouse\""]",2436.74,{},2762,0,"""Asia""" +2023-05-08,4410,5026,"[\""Keyboard\"", \""Laptop\""]",4156.17,"{\""promo\"": \""30%\""}",81269,0,"""Asia""" +2024-05-12,4411,5506,"[\""Tablet\""]",2002.36,{},262278,1,"""North America""" +2023-08-15,4412,8928,"[\""Phone\""]",4536.06,"{\""promo\"": \""19%\""}",128798,0,"""Europe""" +2024-01-23,4413,6043,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4739.86,{},299731,1,"""South America""" +2024-12-12,4414,3329,"[\""Keyboard\"", \""Headphones\""]",4857.58,"{\""seasonal\"": \""23%\""}",117562,1,"""Asia""" +2023-04-04,4415,1826,"[\""Laptop\"", \""Wireless Mouse\""]",3997.38,{},252544,0,"""Europe""" +2023-03-21,4416,3925,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4879.35,"{\""promo\"": \""12%\""}",69163,0,"""South America""" +2024-03-26,4417,3330,"[\""Wireless Mouse\"", \""Charger\""]",4208.97,{},232656,1,"""Africa""" +2024-03-14,4418,7860,"[\""Charger\"", \""Headphones\""]",1625.42,{},255616,1,"""Europe""" +2024-10-30,4419,8783,"[\""Charger\""]",3641.77,{},174931,1,"""North America""" +2023-05-07,4420,5205,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2525.12,"{\"": \""8%\""}",214493,0,"""North America""" +2024-01-21,4421,8972,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2389.3,{},152019,0,"""Asia""" +2023-08-13,4422,5095,"[\""Keyboard\""]",239.41,{},77057,1,"""Africa""" +2023-06-19,4423,2344,"[\""Keyboard\""]",4557.9,{},87403,0,"""Europe""" +2023-07-23,4424,1825,"[\""Laptop\""]",4569.41,"{\""seasonal\"": \""27%\""}",74265,0,"""Africa""" +2023-02-03,4425,5277,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3215.92,"{\""loyalty\"": \""20%\""}",298618,1,"""South America""" +2023-08-04,4426,5375,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",651.77,{},173825,0,"""Asia""" +2024-07-29,4427,8966,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1381.02,{},239077,1,"""North America""" +2024-04-05,4428,5221,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3750.6,{},47533,1,"""Asia""" +2024-04-06,4429,8559,"[\""Wireless Mouse\""]",1060.52,{},182694,0,"""South America""" +2023-03-26,4430,4852,"[\""Laptop\""]",72.68,{},153447,0,"""South America""" +2023-03-17,4431,8925,"[\""Laptop\"", \""Tablet\""]",4000.5,"{\"": \""14%\""}",228476,1,"""Europe""" +2023-05-19,4432,1346,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4480.36,{},187505,1,"""Africa""" +2024-07-07,4433,9060,"[\""Laptop\""]",3542.14,{},172274,1,"""North America""" +2024-07-29,4434,9329,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2894.44,{},158176,1,"""Africa""" +2023-12-18,4435,5595,"[\""Laptop\""]",2019.44,{},104724,0,"""Asia""" +2023-04-28,4436,5786,"[\""Phone\"", \""Tablet\""]",1910.53,"{\""loyalty\"": \""25%\""}",110556,1,"""North America""" +2023-12-18,4437,5632,"[\""Laptop\""]",3503.77,{},212212,1,"""South America""" +2023-06-14,4438,5145,"[\""Tablet\"", \""Wireless Mouse\""]",2342.09,{},96283,1,"""South America""" +2024-11-21,4439,1751,"[\""Monitor\""]",1369.51,"{\""seasonal\"": \""19%\""}",178166,0,"""South America""" +2024-08-06,4440,5883,"[\""Charger\"", \""Monitor\""]",3177.72,{},185265,0,"""Europe""" +2024-11-28,4441,7430,"[\""Monitor\"", \""Keyboard\""]",1869.42,{},56625,0,"""North America""" +2024-06-18,4442,7322,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4052.15,"{\""loyalty\"": \""28%\""}",246889,0,"""Asia""" +2023-09-11,4443,6772,"[\""Keyboard\"", \""Wireless Mouse\""]",4989.12,"{\""loyalty\"": \""29%\""}",75880,1,"""North America""" +2024-06-21,4444,858,"[\""Charger\"", \""Monitor\""]",2994.84,"{\""loyalty\"": \""17%\""}",9574,1,"""Europe""" +2023-05-27,4445,6985,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1004.01,{},139559,1,"""North America""" +2023-03-27,4446,4166,"[\""Headphones\"", \""Keyboard\""]",1946.24,{},80178,0,"""Asia""" +2023-06-06,4447,5242,"[\""Monitor\"", \""Keyboard\""]",2746.75,"{\""promo\"": \""16%\""}",197961,1,"""South America""" +2024-12-15,4448,6544,"[\""Laptop\""]",1107.61,"{\""promo\"": \""8%\""}",38367,1,"""Europe""" +2023-03-31,4449,3203,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1761.74,{},237881,1,"""North America""" +2024-01-22,4450,1035,"[\""Laptop\"", \""Wireless Mouse\""]",2053.23,"{\"": \""5%\""}",70469,0,"""North America""" +2024-10-05,4451,4743,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4135.71,"{\""loyalty\"": \""29%\""}",28301,1,"""Europe""" +2023-06-29,4452,1026,"[\""Tablet\""]",2278.97,{},20816,0,"""Africa""" +2024-05-28,4453,3179,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1940.65,{},280801,1,"""South America""" +2023-03-21,4454,2950,"[\""Charger\"", \""Tablet\""]",3564.19,"{\""seasonal\"": \""29%\""}",125692,1,"""South America""" +2024-12-25,4455,7513,"[\""Keyboard\""]",1768.43,"{\"": \""16%\""}",3551,0,"""Africa""" +2023-03-17,4456,1734,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",576.41,"{\""seasonal\"": \""7%\""}",199583,0,"""Africa""" +2024-06-14,4457,1635,"[\""Wireless Mouse\""]",880.45,"{\""loyalty\"": \""6%\""}",195743,1,"""Europe""" +2024-07-28,4458,3072,"[\""Headphones\""]",909.95,{},207135,0,"""South America""" +2024-05-26,4459,1508,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3629.11,{},58577,0,"""Asia""" +2024-05-12,4460,8583,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4973.17,"{\""loyalty\"": \""7%\""}",232184,0,"""North America""" +2024-05-03,4461,4640,"[\""Headphones\"", \""Monitor\""]",3637.85,{},30508,0,"""South America""" +2024-08-05,4462,5975,"[\""Monitor\""]",79.66,{},263763,0,"""Africa""" +2023-11-13,4463,9039,"[\""Charger\"", \""Wireless Mouse\""]",1203.91,{},23062,0,"""Europe""" +2023-05-14,4464,4223,"[\""Phone\""]",1349.87,{},50655,0,"""Europe""" +2024-01-16,4465,112,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3017.94,{},60247,0,"""Europe""" +2023-11-04,4466,2886,"[\""Laptop\""]",2130.1,"{\""loyalty\"": \""6%\""}",64371,0,"""South America""" +2023-06-19,4467,3190,"[\""Keyboard\""]",2403.74,"{\""loyalty\"": \""14%\""}",283279,1,"""Europe""" +2024-02-12,4468,9602,"[\""Charger\"", \""Headphones\""]",1308.0,{},280757,1,"""Asia""" +2024-11-02,4469,3021,"[\""Monitor\""]",53.95,"{\""seasonal\"": \""28%\""}",290407,0,"""North America""" +2024-06-23,4470,5082,"[\""Wireless Mouse\""]",2565.39,"{\""promo\"": \""13%\""}",217289,1,"""Africa""" +2023-06-28,4471,2641,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3102.88,{},236406,1,"""Asia""" +2024-03-04,4472,9044,"[\""Keyboard\"", \""Monitor\""]",1512.88,"{\""promo\"": \""13%\""}",141278,0,"""Asia""" +2023-06-05,4473,3919,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4416.52,{},218997,1,"""North America""" +2024-02-11,4474,2259,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",558.69,{},98037,0,"""North America""" +2024-04-05,4475,4067,"[\""Phone\"", \""Monitor\""]",1004.55,"{\"": \""7%\""}",115400,0,"""North America""" +2023-05-12,4476,8937,"[\""Tablet\""]",4767.55,"{\""loyalty\"": \""18%\""}",50350,0,"""Asia""" +2023-08-22,4477,2154,"[\""Headphones\"", \""Charger\""]",3788.59,{},13672,1,"""South America""" +2023-02-26,4478,595,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1873.64,"{\""promo\"": \""21%\""}",271013,0,"""Africa""" +2024-09-20,4479,167,"[\""Headphones\"", \""Tablet\""]",4322.22,{},151988,0,"""South America""" +2024-05-17,4480,9210,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2122.07,"{\""loyalty\"": \""17%\""}",21142,1,"""Africa""" +2024-08-16,4481,3693,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3701.69,"{\""promo\"": \""30%\""}",125361,0,"""Europe""" +2024-11-06,4482,4580,"[\""Tablet\"", \""Laptop\""]",214.18,"{\"": \""24%\""}",32103,1,"""Europe""" +2023-07-05,4483,1974,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3759.3,{},239223,0,"""Europe""" +2023-12-30,4484,4539,"[\""Laptop\"", \""Headphones\""]",1379.93,{},276908,1,"""North America""" +2024-02-05,4485,112,"[\""Tablet\"", \""Headphones\""]",2643.99,"{\""seasonal\"": \""17%\""}",124545,1,"""North America""" +2024-10-15,4486,1424,"[\""Charger\"", \""Headphones\""]",4311.16,"{\""loyalty\"": \""30%\""}",191114,1,"""North America""" +2024-03-03,4487,260,"[\""Wireless Mouse\""]",1517.93,{},46163,1,"""South America""" +2024-01-30,4488,4871,"[\""Keyboard\"", \""Monitor\""]",3805.91,{},160656,0,"""Asia""" +2024-04-20,4489,3824,"[\""Keyboard\"", \""Headphones\""]",1258.37,"{\""promo\"": \""17%\""}",1799,1,"""Africa""" +2023-07-12,4490,8756,"[\""Monitor\"", \""Laptop\""]",2015.43,"{\"": \""5%\""}",65005,0,"""North America""" +2024-05-11,4491,689,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2527.65,"{\"": \""12%\""}",133885,0,"""Africa""" +2023-03-28,4492,7305,"[\""Laptop\"", \""Charger\""]",2936.82,"{\"": \""6%\""}",184177,1,"""South America""" +2024-06-26,4493,3584,"[\""Keyboard\"", \""Laptop\""]",3399.15,"{\""loyalty\"": \""24%\""}",132495,1,"""South America""" +2023-08-05,4494,7038,"[\""Monitor\""]",3016.96,{},145235,0,"""Europe""" +2024-03-15,4495,8302,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2685.84,"{\"": \""21%\""}",127723,1,"""Asia""" +2023-04-23,4496,3863,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2872.55,{},169295,1,"""Europe""" +2024-05-05,4497,4427,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4830.43,"{\""promo\"": \""25%\""}",250200,1,"""North America""" +2023-02-12,4498,3529,"[\""Charger\""]",1408.89,"{\"": \""28%\""}",147653,1,"""South America""" +2024-10-31,4499,7109,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1019.02,"{\""loyalty\"": \""22%\""}",92645,0,"""Europe""" +2024-06-07,4500,6323,"[\""Charger\""]",2002.36,{},75641,0,"""Asia""" +2024-05-29,4501,9574,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4311.76,{},105167,0,"""South America""" +2024-01-04,4502,2144,"[\""Wireless Mouse\""]",4380.34,{},255463,0,"""Africa""" +2024-02-18,4503,2082,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3940.24,"{\""promo\"": \""7%\""}",9974,1,"""Africa""" +2024-04-12,4504,879,"[\""Keyboard\"", \""Phone\""]",4929.62,{},47261,0,"""North America""" +2024-11-18,4505,9027,"[\""Monitor\"", \""Tablet\""]",2296.76,{},163140,1,"""Asia""" +2023-04-08,4506,1026,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4969.41,"{\""loyalty\"": \""27%\""}",126781,1,"""Asia""" +2023-01-13,4507,2623,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1202.48,"{\""promo\"": \""19%\""}",22820,1,"""Europe""" +2024-08-02,4508,7625,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3508.77,"{\""seasonal\"": \""12%\""}",29742,0,"""North America""" +2023-08-28,4509,1503,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2901.62,"{\""loyalty\"": \""24%\""}",115343,1,"""Asia""" +2023-06-19,4510,9049,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4734.3,"{\"": \""6%\""}",85880,1,"""South America""" +2024-06-15,4511,5975,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3254.07,{},281405,1,"""Africa""" +2024-03-06,4512,3325,"[\""Charger\""]",2717.04,{},220914,1,"""North America""" +2024-05-20,4513,1401,"[\""Tablet\""]",296.6,{},55220,1,"""Europe""" +2024-06-05,4514,7760,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",243.76,{},236258,0,"""Asia""" +2024-05-14,4515,312,"[\""Headphones\""]",2032.54,"{\""promo\"": \""22%\""}",270569,0,"""Asia""" +2023-09-19,4516,9055,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1062.77,{},230720,0,"""South America""" +2024-01-06,4517,9281,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3768.33,{},271577,0,"""North America""" +2023-01-25,4518,7337,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4193.76,{},32911,1,"""Europe""" +2024-06-13,4519,3550,"[\""Phone\""]",1368.64,{},3734,0,"""Europe""" +2023-11-10,4520,6423,"[\""Tablet\"", \""Headphones\""]",4772.67,"{\""seasonal\"": \""19%\""}",242014,0,"""South America""" +2023-12-17,4521,906,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1611.11,{},183043,1,"""South America""" +2024-06-25,4522,1288,"[\""Keyboard\"", \""Charger\""]",984.51,"{\""loyalty\"": \""16%\""}",77448,1,"""Asia""" +2024-08-20,4523,6675,"[\""Keyboard\"", \""Monitor\""]",1374.82,"{\""promo\"": \""19%\""}",155793,1,"""South America""" +2023-07-08,4524,6402,"[\""Laptop\""]",2428.2,"{\"": \""27%\""}",78549,1,"""South America""" +2023-10-26,4525,5905,"[\""Wireless Mouse\""]",4304.14,{},143506,1,"""Africa""" +2023-07-14,4526,6878,"[\""Monitor\"", \""Headphones\""]",2565.51,{},133812,0,"""South America""" +2023-08-20,4527,2626,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4782.74,{},73763,0,"""Europe""" +2024-08-11,4528,6594,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2301.64,"{\""promo\"": \""8%\""}",239882,0,"""South America""" +2023-11-07,4529,7854,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4915.1,{},13689,1,"""Europe""" +2023-01-01,4530,2217,"[\""Headphones\""]",2421.88,"{\"": \""27%\""}",71645,0,"""Asia""" +2023-01-24,4531,3957,"[\""Headphones\"", \""Wireless Mouse\""]",1820.97,{},53688,1,"""North America""" +2023-11-14,4532,915,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",776.54,"{\""seasonal\"": \""13%\""}",232862,0,"""North America""" +2023-05-14,4533,4232,"[\""Monitor\"", \""Headphones\""]",1401.19,{},74316,1,"""South America""" +2024-09-19,4534,5386,"[\""Phone\"", \""Tablet\""]",3714.64,"{\""promo\"": \""13%\""}",286568,0,"""South America""" +2024-10-08,4535,180,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4111.48,"{\""promo\"": \""24%\""}",233784,1,"""Asia""" +2023-06-27,4536,7316,"[\""Monitor\"", \""Charger\""]",3403.07,{},148084,0,"""South America""" +2024-12-18,4537,7289,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2942.6,{},188519,0,"""South America""" +2024-01-13,4538,3147,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",933.35,"{\"": \""14%\""}",117220,0,"""Europe""" +2023-05-27,4539,693,"[\""Wireless Mouse\""]",3805.17,{},37916,0,"""Europe""" +2023-01-27,4540,6914,"[\""Laptop\""]",2118.43,{},284650,1,"""North America""" +2024-02-23,4541,5375,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",117.53,"{\""promo\"": \""30%\""}",27171,0,"""North America""" +2023-10-08,4542,1683,"[\""Phone\"", \""Laptop\""]",889.67,{},251438,0,"""Europe""" +2023-02-10,4543,9619,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4803.18,"{\""seasonal\"": \""12%\""}",215165,0,"""North America""" +2023-03-16,4544,7008,"[\""Keyboard\"", \""Monitor\""]",2535.99,{},211738,1,"""North America""" +2023-06-24,4545,1068,"[\""Keyboard\""]",3928.01,{},258734,0,"""Asia""" +2024-02-13,4546,383,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4766.87,"{\""seasonal\"": \""22%\""}",41151,0,"""Asia""" +2023-05-08,4547,5372,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1326.14,"{\""promo\"": \""7%\""}",151371,0,"""North America""" +2024-04-26,4548,9820,"[\""Laptop\"", \""Monitor\""]",1359.07,{},221360,0,"""Africa""" +2024-09-04,4549,4100,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1334.87,{},177111,1,"""Africa""" +2023-10-27,4550,209,"[\""Keyboard\""]",2222.66,{},221722,0,"""Asia""" +2023-11-22,4551,9910,"[\""Tablet\"", \""Laptop\""]",4798.51,{},168864,0,"""South America""" +2023-04-14,4552,6215,"[\""Charger\""]",795.84,"{\""loyalty\"": \""27%\""}",65041,0,"""South America""" +2023-07-25,4553,2701,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2584.24,"{\""loyalty\"": \""26%\""}",263622,0,"""Asia""" +2023-03-05,4554,4741,"[\""Charger\""]",2233.01,{},240783,0,"""Europe""" +2023-12-22,4555,8778,"[\""Phone\""]",1645.29,{},186081,0,"""Europe""" +2023-03-01,4556,9033,"[\""Monitor\""]",4615.51,{},224966,1,"""North America""" +2024-11-27,4557,1827,"[\""Tablet\""]",1242.27,"{\""seasonal\"": \""28%\""}",69747,1,"""North America""" +2023-10-09,4558,1687,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2891.62,{},87679,1,"""Asia""" +2024-02-05,4559,8824,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3699.29,{},104146,1,"""North America""" +2024-09-10,4560,6504,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",306.33,{},130639,1,"""North America""" +2024-06-30,4561,7484,"[\""Charger\""]",3041.2,"{\"": \""19%\""}",5231,0,"""South America""" +2023-11-23,4562,5958,"[\""Monitor\""]",91.63,{},156360,0,"""Europe""" +2024-05-14,4563,640,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2741.64,"{\""promo\"": \""11%\""}",197946,1,"""Europe""" +2023-03-04,4564,1121,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3422.39,{},64853,1,"""South America""" +2024-05-31,4565,8751,"[\""Charger\"", \""Headphones\""]",4262.44,"{\""seasonal\"": \""10%\""}",245471,0,"""Asia""" +2023-05-26,4566,4596,"[\""Keyboard\""]",707.73,{},35319,1,"""Europe""" +2024-11-19,4567,3332,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3537.24,{},133865,0,"""South America""" +2023-04-12,4568,9963,"[\""Phone\"", \""Laptop\""]",1970.58,{},227684,1,"""North America""" +2024-10-25,4569,3731,"[\""Laptop\""]",626.45,{},153296,1,"""Asia""" +2023-04-25,4570,3315,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",638.34,{},4842,0,"""Africa""" +2023-04-10,4571,6443,"[\""Charger\""]",2025.25,{},121276,1,"""South America""" +2023-01-02,4572,4739,"[\""Tablet\"", \""Wireless Mouse\""]",1452.14,{},121291,0,"""South America""" +2024-07-21,4573,8054,"[\""Keyboard\""]",3859.62,"{\""loyalty\"": \""28%\""}",219887,1,"""Asia""" +2024-07-25,4574,3997,"[\""Charger\"", \""Tablet\"", \""Phone\""]",713.7,"{\"": \""15%\""}",178163,0,"""Africa""" +2023-02-21,4575,6120,"[\""Keyboard\"", \""Wireless Mouse\""]",3598.49,"{\""promo\"": \""6%\""}",260418,0,"""Europe""" +2023-01-02,4576,694,"[\""Headphones\""]",731.6,"{\""loyalty\"": \""16%\""}",171705,1,"""North America""" +2024-07-24,4577,1826,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4415.55,{},148947,1,"""Asia""" +2023-07-23,4578,1889,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4371.06,{},44199,0,"""South America""" +2024-03-10,4579,7269,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2320.96,{},73793,1,"""North America""" +2024-03-13,4580,1594,"[\""Laptop\"", \""Monitor\""]",1606.58,{},33102,1,"""Asia""" +2023-03-15,4581,6986,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1257.52,{},60021,1,"""Europe""" +2023-04-13,4582,3078,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2416.81,{},153167,0,"""Europe""" +2023-02-28,4583,6023,"[\""Laptop\""]",845.35,"{\""promo\"": \""25%\""}",135792,0,"""North America""" +2024-04-15,4584,6507,"[\""Charger\""]",2266.41,{},67086,0,"""Africa""" +2023-03-17,4585,5393,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3460.57,{},131335,1,"""South America""" +2024-12-17,4586,1595,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2512.61,"{\""promo\"": \""6%\""}",54747,0,"""South America""" +2023-02-06,4587,1857,"[\""Phone\"", \""Keyboard\""]",2247.43,{},84812,1,"""Africa""" +2023-02-10,4588,6472,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2406.87,"{\""loyalty\"": \""10%\""}",80679,0,"""Africa""" +2024-12-21,4589,4301,"[\""Laptop\""]",4082.32,{},180208,1,"""North America""" +2024-05-26,4590,4375,"[\""Monitor\"", \""Headphones\""]",4571.45,{},189128,1,"""Africa""" +2024-06-17,4591,2572,"[\""Headphones\""]",4375.21,"{\"": \""6%\""}",77854,1,"""Asia""" +2024-11-02,4592,2984,"[\""Headphones\"", \""Wireless Mouse\""]",2110.99,"{\""promo\"": \""26%\""}",8696,1,"""North America""" +2024-10-25,4593,8429,"[\""Monitor\"", \""Headphones\""]",2171.67,"{\""seasonal\"": \""25%\""}",91843,0,"""Europe""" +2024-05-10,4594,8796,"[\""Phone\""]",2317.5,"{\""loyalty\"": \""7%\""}",231683,1,"""Africa""" +2024-01-08,4595,3634,"[\""Keyboard\"", \""Phone\""]",2395.39,"{\"": \""28%\""}",273249,0,"""Europe""" +2023-01-04,4596,7667,"[\""Laptop\""]",1951.13,{},77506,1,"""Africa""" +2024-10-04,4597,1763,"[\""Monitor\"", \""Keyboard\""]",215.49,{},248427,1,"""South America""" +2023-05-30,4598,5379,"[\""Tablet\""]",578.36,"{\"": \""28%\""}",101763,1,"""Europe""" +2023-05-22,4599,8241,"[\""Laptop\"", \""Wireless Mouse\""]",2878.72,{},88447,0,"""Asia""" +2023-09-04,4600,9147,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3163.25,{},66876,1,"""Africa""" +2023-07-30,4601,1881,"[\""Laptop\"", \""Headphones\""]",3142.87,"{\"": \""7%\""}",236539,1,"""South America""" +2024-03-30,4602,4867,"[\""Charger\"", \""Keyboard\""]",2521.1,"{\"": \""28%\""}",178343,0,"""South America""" +2024-10-02,4603,5616,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4241.62,{},19630,1,"""Asia""" +2024-07-18,4604,6248,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",872.39,{},208476,1,"""North America""" +2024-10-10,4605,5708,"[\""Laptop\""]",2545.47,{},139733,0,"""Asia""" +2023-01-18,4606,4296,"[\""Laptop\"", \""Phone\""]",973.28,{},161302,0,"""North America""" +2023-10-09,4607,4373,"[\""Monitor\""]",380.1,"{\"": \""28%\""}",226046,0,"""Europe""" +2023-03-17,4608,8444,"[\""Monitor\""]",2571.68,"{\"": \""30%\""}",182770,0,"""Asia""" +2023-09-18,4609,5782,"[\""Wireless Mouse\""]",1361.97,{},72763,1,"""Africa""" +2024-04-08,4610,4654,"[\""Wireless Mouse\""]",3982.86,{},298106,0,"""Africa""" +2024-05-05,4611,9470,"[\""Headphones\"", \""Monitor\""]",949.87,"{\"": \""12%\""}",88021,1,"""Asia""" +2024-10-30,4612,9725,"[\""Monitor\""]",1623.14,"{\""promo\"": \""14%\""}",33333,0,"""South America""" +2023-04-08,4613,9184,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",60.48,{},275011,1,"""Europe""" +2023-07-31,4614,2162,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1725.35,"{\""loyalty\"": \""25%\""}",18450,1,"""South America""" +2023-09-25,4615,988,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4271.54,{},51950,1,"""North America""" +2024-11-16,4616,2348,"[\""Keyboard\"", \""Wireless Mouse\""]",1105.03,{},153515,0,"""South America""" +2023-04-18,4617,5334,"[\""Wireless Mouse\"", \""Keyboard\""]",4467.29,"{\"": \""19%\""}",146128,0,"""Europe""" +2024-08-26,4618,8555,"[\""Wireless Mouse\""]",2739.58,"{\""seasonal\"": \""27%\""}",115153,1,"""North America""" +2023-08-02,4619,902,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4935.59,"{\""loyalty\"": \""12%\""}",166000,0,"""Africa""" +2024-04-26,4620,7871,"[\""Charger\"", \""Headphones\"", \""Phone\""]",315.86,{},62761,0,"""Africa""" +2023-07-08,4621,6873,"[\""Charger\""]",2698.99,{},3643,0,"""South America""" +2023-12-07,4622,7950,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3077.48,{},83193,1,"""South America""" +2024-10-27,4623,6952,"[\""Monitor\""]",1624.55,{},233654,1,"""Africa""" +2023-06-01,4624,8363,"[\""Keyboard\"", \""Laptop\""]",2230.75,"{\"": \""21%\""}",180444,0,"""Africa""" +2024-05-17,4625,2500,"[\""Phone\"", \""Charger\""]",3459.38,{},141568,1,"""South America""" +2023-05-06,4626,2776,"[\""Phone\"", \""Keyboard\""]",3762.51,"{\""loyalty\"": \""13%\""}",36240,1,"""Europe""" +2024-02-29,4627,7416,"[\""Charger\"", \""Phone\""]",4734.08,"{\""seasonal\"": \""21%\""}",123591,1,"""North America""" +2024-05-15,4628,2496,"[\""Monitor\""]",1054.51,"{\""seasonal\"": \""8%\""}",278153,0,"""Asia""" +2024-12-29,4629,755,"[\""Phone\"", \""Headphones\""]",4135.46,"{\""promo\"": \""27%\""}",73849,1,"""Africa""" +2024-03-14,4630,5221,"[\""Wireless Mouse\""]",2155.17,{},72720,0,"""North America""" +2023-10-02,4631,4030,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2824.52,"{\""seasonal\"": \""29%\""}",174809,0,"""South America""" +2023-10-12,4632,7327,"[\""Charger\"", \""Monitor\""]",4851.99,"{\""promo\"": \""9%\""}",53395,1,"""Africa""" +2023-11-24,4633,3840,"[\""Phone\"", \""Keyboard\""]",3994.02,"{\"": \""10%\""}",257910,1,"""Europe""" +2023-01-05,4634,5005,"[\""Phone\""]",3974.14,{},195693,0,"""Africa""" +2024-04-23,4635,4711,"[\""Tablet\"", \""Wireless Mouse\""]",2273.43,"{\"": \""11%\""}",87768,0,"""Asia""" +2023-08-29,4636,1960,"[\""Wireless Mouse\"", \""Charger\""]",1423.39,"{\""loyalty\"": \""17%\""}",200090,1,"""Asia""" +2023-04-18,4637,843,"[\""Tablet\"", \""Laptop\""]",3819.88,{},6402,0,"""North America""" +2023-12-20,4638,2639,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2744.52,"{\"": \""21%\""}",177903,0,"""Africa""" +2024-01-11,4639,3615,"[\""Headphones\""]",3802.06,"{\""loyalty\"": \""14%\""}",278493,0,"""North America""" +2024-01-10,4640,9840,"[\""Headphones\""]",3739.31,{},125501,0,"""North America""" +2023-10-15,4641,84,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4908.84,{},164943,0,"""Africa""" +2023-09-29,4642,9145,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4087.83,"{\""seasonal\"": \""22%\""}",40866,0,"""North America""" +2023-07-10,4643,6112,"[\""Keyboard\""]",4988.52,{},236749,0,"""North America""" +2023-06-01,4644,6724,"[\""Laptop\""]",297.94,"{\""loyalty\"": \""18%\""}",257359,0,"""Europe""" +2024-02-21,4645,4879,"[\""Keyboard\"", \""Wireless Mouse\""]",1579.63,{},265014,1,"""Europe""" +2023-05-07,4646,7837,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1788.86,"{\""promo\"": \""27%\""}",49830,0,"""Europe""" +2023-04-16,4647,1438,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",975.97,"{\""promo\"": \""21%\""}",38649,1,"""North America""" +2024-12-05,4648,8456,"[\""Laptop\""]",4638.89,{},57346,1,"""Europe""" +2024-07-27,4649,9956,"[\""Tablet\""]",3757.28,"{\""loyalty\"": \""5%\""}",21862,0,"""Asia""" +2023-10-21,4650,4071,"[\""Tablet\"", \""Monitor\""]",1498.43,{},278092,1,"""Africa""" +2023-01-07,4651,746,"[\""Headphones\"", \""Tablet\""]",3300.58,"{\""seasonal\"": \""28%\""}",251976,0,"""Asia""" +2023-12-22,4652,9881,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",359.22,"{\""promo\"": \""7%\""}",151019,1,"""North America""" +2024-05-29,4653,9630,"[\""Keyboard\"", \""Tablet\""]",1640.59,"{\""loyalty\"": \""24%\""}",22432,1,"""Europe""" +2023-07-16,4654,6352,"[\""Tablet\"", \""Keyboard\""]",3667.02,{},26433,1,"""Africa""" +2023-03-25,4655,9604,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3544.08,{},100379,0,"""Europe""" +2024-04-21,4656,9906,"[\""Monitor\"", \""Wireless Mouse\""]",3228.18,"{\"": \""16%\""}",127620,0,"""North America""" +2023-04-25,4657,2296,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4545.29,{},65949,0,"""Africa""" +2023-12-22,4658,1130,"[\""Charger\"", \""Tablet\""]",3261.99,"{\""seasonal\"": \""19%\""}",215650,0,"""South America""" +2024-03-24,4659,3146,"[\""Monitor\""]",964.7,"{\""promo\"": \""22%\""}",190505,0,"""Europe""" +2024-01-07,4660,1373,"[\""Keyboard\"", \""Wireless Mouse\""]",54.97,{},29128,0,"""Asia""" +2024-02-22,4661,5106,"[\""Wireless Mouse\""]",3534.64,"{\""loyalty\"": \""27%\""}",207628,1,"""North America""" +2023-03-24,4662,2060,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3396.08,"{\""promo\"": \""15%\""}",137811,1,"""Europe""" +2024-04-12,4663,1944,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4347.27,{},181523,1,"""Africa""" +2024-02-14,4664,8586,"[\""Headphones\""]",4720.79,{},286912,0,"""North America""" +2024-12-08,4665,1485,"[\""Wireless Mouse\"", \""Charger\""]",3168.76,"{\"": \""20%\""}",99873,1,"""Europe""" +2023-12-17,4666,6026,"[\""Laptop\"", \""Wireless Mouse\""]",2121.76,"{\""seasonal\"": \""17%\""}",28870,0,"""Africa""" +2023-06-17,4667,5319,"[\""Tablet\""]",3071.98,{},165544,1,"""North America""" +2023-02-10,4668,8644,"[\""Charger\""]",1825.46,"{\""promo\"": \""24%\""}",238984,1,"""North America""" +2024-07-03,4669,4577,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1438.64,"{\"": \""25%\""}",116761,1,"""Asia""" +2023-01-27,4670,9575,"[\""Phone\"", \""Headphones\""]",773.06,"{\""loyalty\"": \""16%\""}",198237,0,"""Africa""" +2024-09-07,4671,7818,"[\""Wireless Mouse\"", \""Phone\""]",663.14,{},215586,1,"""North America""" +2024-10-04,4672,6912,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1676.57,"{\""promo\"": \""20%\""}",274802,0,"""Asia""" +2023-01-08,4673,6042,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4428.67,{},235927,1,"""Asia""" +2023-02-07,4674,4756,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3819.75,{},165080,0,"""Europe""" +2024-01-28,4675,1187,"[\""Charger\"", \""Tablet\""]",897.31,{},21860,0,"""North America""" +2024-06-07,4676,2876,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2394.17,{},98922,1,"""North America""" +2024-03-20,4677,3286,"[\""Charger\"", \""Phone\""]",2996.08,{},37479,1,"""North America""" +2024-07-03,4678,8819,"[\""Keyboard\"", \""Laptop\""]",1076.04,{},21077,0,"""Europe""" +2023-09-26,4679,4681,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4023.37,{},21557,0,"""Europe""" +2023-01-29,4680,4670,"[\""Keyboard\"", \""Phone\""]",4413.82,{},76213,0,"""South America""" +2024-04-27,4681,7471,"[\""Charger\""]",4391.39,{},99214,0,"""South America""" +2023-09-16,4682,5476,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2378.52,{},30430,0,"""South America""" +2023-01-18,4683,6398,"[\""Headphones\"", \""Wireless Mouse\""]",193.55,"{\""seasonal\"": \""15%\""}",191318,1,"""Africa""" +2024-03-31,4684,7464,"[\""Phone\"", \""Monitor\""]",1700.42,{},202752,1,"""Africa""" +2024-07-29,4685,8078,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1875.52,{},70405,1,"""North America""" +2024-05-19,4686,4777,"[\""Phone\"", \""Wireless Mouse\""]",4294.64,"{\""loyalty\"": \""30%\""}",63045,0,"""Europe""" +2023-01-07,4687,1428,"[\""Keyboard\"", \""Monitor\""]",571.3,{},231209,0,"""Asia""" +2023-06-23,4688,9695,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",125.62,{},24385,0,"""North America""" +2024-08-27,4689,9592,"[\""Headphones\""]",4236.26,"{\""promo\"": \""30%\""}",275584,1,"""Europe""" +2024-01-27,4690,1134,"[\""Monitor\"", \""Laptop\""]",3311.73,"{\""promo\"": \""20%\""}",277105,1,"""Europe""" +2023-09-16,4691,1341,"[\""Laptop\"", \""Keyboard\""]",2000.58,{},134585,0,"""Africa""" +2024-04-24,4692,9078,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1622.95,{},296939,0,"""North America""" +2023-01-27,4693,2238,"[\""Tablet\""]",570.55,{},14477,1,"""Asia""" +2024-12-08,4694,4144,"[\""Phone\"", \""Tablet\""]",3642.9,{},284487,0,"""Europe""" +2023-08-24,4695,7646,"[\""Monitor\""]",1988.22,{},226318,0,"""North America""" +2023-09-14,4696,4241,"[\""Charger\""]",3340.75,{},35640,1,"""North America""" +2023-01-22,4697,5157,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2038.14,"{\"": \""26%\""}",252437,1,"""Asia""" +2024-06-03,4698,7823,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",145.85,"{\""promo\"": \""8%\""}",167084,1,"""Asia""" +2023-09-23,4699,5670,"[\""Charger\""]",1243.33,{},77204,0,"""South America""" +2024-01-15,4700,8660,"[\""Wireless Mouse\""]",4252.89,"{\""seasonal\"": \""19%\""}",123810,1,"""South America""" +2024-04-30,4701,1683,"[\""Tablet\""]",2093.31,{},54986,0,"""North America""" +2023-04-08,4702,7268,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1640.06,{},207007,0,"""South America""" +2024-11-20,4703,1181,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4503.77,"{\"": \""29%\""}",65706,1,"""South America""" +2023-01-17,4704,9846,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",652.11,"{\""seasonal\"": \""11%\""}",257694,1,"""Africa""" +2024-03-22,4705,6967,"[\""Wireless Mouse\"", \""Keyboard\""]",3791.24,{},263829,1,"""South America""" +2024-05-15,4706,1737,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4882.16,"{\""seasonal\"": \""27%\""}",143288,0,"""Asia""" +2024-11-25,4707,9963,"[\""Headphones\""]",2883.01,{},142771,1,"""Africa""" +2023-09-13,4708,5589,"[\""Wireless Mouse\""]",4549.94,{},162819,1,"""South America""" +2024-08-03,4709,1151,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3180.08,{},148544,1,"""Africa""" +2023-12-25,4710,1993,"[\""Phone\"", \""Keyboard\""]",4236.56,{},99468,1,"""Asia""" +2023-12-04,4711,9127,"[\""Laptop\""]",1318.47,"{\"": \""14%\""}",199456,1,"""Africa""" +2024-07-30,4712,1747,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2807.85,{},33940,0,"""South America""" +2024-07-29,4713,5830,"[\""Keyboard\""]",4562.0,"{\""promo\"": \""5%\""}",184475,0,"""Asia""" +2024-03-24,4714,8910,"[\""Phone\""]",3339.54,"{\""loyalty\"": \""22%\""}",237954,1,"""Europe""" +2023-02-21,4715,225,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3976.1,{},43340,0,"""Europe""" +2023-03-05,4716,3023,"[\""Charger\"", \""Monitor\""]",524.07,"{\"": \""15%\""}",139463,1,"""South America""" +2024-08-07,4717,9511,"[\""Phone\""]",2981.81,"{\""promo\"": \""7%\""}",115179,0,"""Europe""" +2024-12-14,4718,4771,"[\""Charger\""]",2847.55,{},173727,1,"""North America""" +2024-10-25,4719,1293,"[\""Monitor\""]",1121.95,{},144873,0,"""North America""" +2024-01-01,4720,5473,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4266.1,{},50191,1,"""Europe""" +2023-02-12,4721,7757,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3050.56,"{\"": \""8%\""}",202137,0,"""North America""" +2024-08-11,4722,9594,"[\""Phone\"", \""Wireless Mouse\""]",1903.27,"{\"": \""29%\""}",36873,1,"""Europe""" +2024-10-22,4723,1497,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3596.17,"{\""promo\"": \""5%\""}",227625,0,"""North America""" +2024-03-24,4724,1883,"[\""Headphones\""]",743.34,"{\""seasonal\"": \""15%\""}",183567,1,"""Asia""" +2023-02-23,4725,1143,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4731.8,"{\""promo\"": \""29%\""}",188705,0,"""South America""" +2024-06-13,4726,1357,"[\""Phone\""]",1429.2,{},218401,1,"""Africa""" +2023-04-17,4727,9237,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",98.25,{},127551,0,"""Europe""" +2024-10-01,4728,1998,"[\""Keyboard\""]",3187.14,"{\""promo\"": \""30%\""}",162932,1,"""Europe""" +2024-08-21,4729,1201,"[\""Headphones\"", \""Tablet\""]",1414.57,"{\""seasonal\"": \""18%\""}",197178,1,"""South America""" +2023-02-18,4730,5029,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4859.67,"{\""seasonal\"": \""25%\""}",144486,0,"""Asia""" +2024-02-13,4731,1904,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4511.54,"{\""promo\"": \""24%\""}",135854,0,"""South America""" +2023-04-29,4732,4337,"[\""Headphones\"", \""Laptop\""]",4026.92,"{\""promo\"": \""25%\""}",59608,1,"""North America""" +2023-12-20,4733,1069,"[\""Keyboard\""]",4834.66,"{\""promo\"": \""22%\""}",184680,0,"""North America""" +2023-04-28,4734,2804,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1704.15,{},48785,1,"""South America""" +2023-01-18,4735,4536,"[\""Headphones\"", \""Laptop\""]",170.21,"{\""promo\"": \""12%\""}",27778,1,"""Europe""" +2024-01-25,4736,4761,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",753.46,"{\"": \""10%\""}",181054,0,"""Asia""" +2023-04-29,4737,9491,"[\""Keyboard\"", \""Headphones\""]",2765.14,{},47494,0,"""North America""" +2024-10-05,4738,5355,"[\""Headphones\""]",3440.02,{},43187,0,"""South America""" +2023-03-06,4739,392,"[\""Tablet\"", \""Monitor\""]",1668.3,"{\""promo\"": \""24%\""}",229604,0,"""Asia""" +2024-11-25,4740,9040,"[\""Laptop\""]",1624.34,{},7106,0,"""South America""" +2023-04-21,4741,1729,"[\""Keyboard\""]",1440.73,{},257170,1,"""Europe""" +2023-02-03,4742,2121,"[\""Charger\"", \""Keyboard\""]",2465.77,"{\""seasonal\"": \""11%\""}",9195,1,"""Africa""" +2024-11-11,4743,3654,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2771.82,{},297686,0,"""Africa""" +2023-02-02,4744,1068,"[\""Laptop\""]",190.57,"{\""loyalty\"": \""19%\""}",231531,1,"""South America""" +2024-04-06,4745,3509,"[\""Laptop\"", \""Keyboard\""]",1931.65,"{\""promo\"": \""16%\""}",46933,0,"""Asia""" +2024-05-25,4746,6905,"[\""Headphones\""]",1541.41,"{\""loyalty\"": \""18%\""}",108129,0,"""Asia""" +2024-09-09,4747,9221,"[\""Headphones\""]",2171.01,{},282839,0,"""South America""" +2023-10-04,4748,5166,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2637.38,{},218753,0,"""Africa""" +2023-10-18,4749,7626,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1226.13,{},49842,0,"""North America""" +2024-08-29,4750,4375,"[\""Charger\""]",1875.9,"{\""seasonal\"": \""10%\""}",79043,1,"""North America""" +2023-05-17,4751,5607,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",659.44,"{\""seasonal\"": \""21%\""}",160467,1,"""Europe""" +2023-08-01,4752,6240,"[\""Phone\""]",1017.83,{},28071,0,"""Asia""" +2023-01-30,4753,8952,"[\""Phone\"", \""Wireless Mouse\""]",3047.24,{},151194,0,"""South America""" +2024-08-16,4754,8488,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1164.89,{},38025,1,"""North America""" +2023-04-14,4755,5940,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2964.99,"{\"": \""20%\""}",148322,0,"""North America""" +2023-06-06,4756,945,"[\""Keyboard\""]",865.65,{},6698,1,"""Europe""" +2023-06-30,4757,2673,"[\""Phone\"", \""Charger\""]",1838.71,"{\""promo\"": \""24%\""}",227056,1,"""Africa""" +2024-12-08,4758,5209,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",951.52,"{\""promo\"": \""17%\""}",177943,0,"""Asia""" +2024-01-05,4759,1168,"[\""Keyboard\""]",2538.59,{},84898,0,"""Africa""" +2023-03-24,4760,2666,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2466.54,"{\""loyalty\"": \""26%\""}",214283,1,"""Africa""" +2023-09-08,4761,2789,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",262.64,{},218749,0,"""Asia""" +2024-03-31,4762,1387,"[\""Laptop\"", \""Phone\""]",2827.74,"{\"": \""27%\""}",193860,1,"""Asia""" +2023-01-13,4763,3204,"[\""Monitor\"", \""Phone\""]",1271.68,"{\""promo\"": \""24%\""}",80630,0,"""Africa""" +2023-09-08,4764,1942,"[\""Phone\"", \""Keyboard\""]",3851.27,"{\""loyalty\"": \""29%\""}",57821,0,"""Asia""" +2024-03-18,4765,6214,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2558.93,{},197207,0,"""Africa""" +2023-01-05,4766,8644,"[\""Phone\""]",2248.82,{},262247,0,"""Asia""" +2024-12-05,4767,9247,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3580.77,"{\"": \""8%\""}",150424,1,"""Asia""" +2024-02-12,4768,6150,"[\""Monitor\"", \""Keyboard\""]",2577.24,"{\"": \""24%\""}",80963,1,"""Africa""" +2023-02-19,4769,3624,"[\""Headphones\"", \""Monitor\""]",1809.42,{},25172,1,"""Europe""" +2024-08-03,4770,3233,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2449.13,{},5478,0,"""Africa""" +2023-04-20,4771,6995,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2788.19,"{\""promo\"": \""7%\""}",72782,1,"""Europe""" +2024-07-22,4772,12,"[\""Monitor\"", \""Wireless Mouse\""]",843.65,{},49609,0,"""South America""" +2024-01-28,4773,6384,"[\""Charger\""]",3139.36,"{\""loyalty\"": \""11%\""}",267107,1,"""South America""" +2024-09-10,4774,2524,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",589.92,"{\""promo\"": \""11%\""}",204713,0,"""North America""" +2023-03-25,4775,3107,"[\""Headphones\""]",4972.84,{},135411,1,"""Africa""" +2023-11-22,4776,2328,"[\""Keyboard\""]",3734.49,"{\"": \""12%\""}",233350,1,"""South America""" +2024-11-26,4777,5438,"[\""Wireless Mouse\"", \""Phone\""]",2509.35,"{\""loyalty\"": \""6%\""}",280740,0,"""North America""" +2023-06-30,4778,8663,"[\""Keyboard\"", \""Laptop\""]",972.45,"{\""seasonal\"": \""5%\""}",204248,1,"""Europe""" +2023-07-01,4779,7584,"[\""Monitor\"", \""Headphones\""]",1422.69,"{\""promo\"": \""7%\""}",114617,1,"""Asia""" +2024-11-13,4780,8631,"[\""Laptop\""]",2658.03,{},262284,1,"""Europe""" +2024-11-26,4781,5634,"[\""Wireless Mouse\"", \""Monitor\""]",3698.05,"{\""loyalty\"": \""15%\""}",61280,1,"""Africa""" +2023-12-30,4782,1294,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4380.52,{},77582,0,"""Africa""" +2023-01-09,4783,5443,"[\""Monitor\"", \""Laptop\""]",782.66,"{\""seasonal\"": \""9%\""}",77882,0,"""Asia""" +2023-07-18,4784,7527,"[\""Wireless Mouse\""]",4404.46,"{\""loyalty\"": \""17%\""}",72171,0,"""Africa""" +2024-02-22,4785,1140,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1118.92,"{\""seasonal\"": \""22%\""}",124862,1,"""Asia""" +2024-09-25,4786,3214,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2310.54,{},293962,1,"""Europe""" +2024-12-14,4787,5397,"[\""Wireless Mouse\""]",690.2,{},193562,1,"""Asia""" +2024-07-18,4788,1211,"[\""Laptop\""]",3991.6,{},204546,0,"""Asia""" +2024-04-22,4789,7893,"[\""Charger\"", \""Keyboard\""]",1721.06,{},102294,0,"""Asia""" +2024-07-09,4790,5562,"[\""Keyboard\""]",2216.58,"{\""promo\"": \""29%\""}",287261,1,"""Africa""" +2023-07-11,4791,7669,"[\""Wireless Mouse\"", \""Monitor\""]",1613.68,{},5147,1,"""South America""" +2024-12-29,4792,6120,"[\""Headphones\"", \""Laptop\""]",1730.96,"{\"": \""13%\""}",218418,0,"""Asia""" +2023-09-23,4793,9062,"[\""Tablet\"", \""Keyboard\""]",59.12,"{\""seasonal\"": \""22%\""}",10513,1,"""Europe""" +2024-11-07,4794,7868,"[\""Monitor\""]",4976.88,"{\""promo\"": \""17%\""}",240778,1,"""Europe""" +2024-08-27,4795,7064,"[\""Laptop\""]",2948.94,{},202768,0,"""Europe""" +2024-10-09,4796,5512,"[\""Headphones\"", \""Monitor\""]",4749.16,{},191261,1,"""Africa""" +2023-03-06,4797,4589,"[\""Charger\"", \""Phone\""]",159.25,{},202761,0,"""Africa""" +2024-04-06,4798,7163,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4565.59,{},224859,0,"""North America""" +2023-09-05,4799,775,"[\""Tablet\""]",4472.16,{},19185,1,"""Africa""" +2024-04-04,4800,9896,"[\""Keyboard\"", \""Tablet\""]",4249.06,{},236301,0,"""South America""" +2024-05-18,4801,9777,"[\""Monitor\""]",1774.1,"{\""promo\"": \""26%\""}",237110,1,"""South America""" +2024-06-13,4802,6708,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3034.01,"{\""seasonal\"": \""6%\""}",209362,0,"""South America""" +2023-01-18,4803,3607,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2180.75,"{\""seasonal\"": \""13%\""}",185936,1,"""Europe""" +2024-11-19,4804,9593,"[\""Charger\"", \""Wireless Mouse\""]",4647.89,"{\""seasonal\"": \""18%\""}",47567,1,"""South America""" +2023-08-14,4805,2786,"[\""Headphones\"", \""Monitor\""]",3725.09,{},263414,0,"""Africa""" +2024-10-28,4806,6492,"[\""Wireless Mouse\""]",3685.94,{},171561,0,"""Europe""" +2024-07-19,4807,1494,"[\""Wireless Mouse\""]",196.57,"{\""promo\"": \""25%\""}",95001,0,"""South America""" +2023-07-30,4808,437,"[\""Monitor\""]",528.53,{},132440,1,"""Africa""" +2023-08-31,4809,2884,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2291.99,{},265952,0,"""Africa""" +2023-04-10,4810,2888,"[\""Monitor\"", \""Wireless Mouse\""]",1561.92,{},198199,0,"""Asia""" +2023-12-23,4811,6228,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",905.1,"{\""seasonal\"": \""20%\""}",220087,1,"""Asia""" +2023-01-07,4812,4273,"[\""Keyboard\"", \""Charger\""]",2270.46,{},70327,1,"""Asia""" +2024-09-05,4813,5132,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3068.12,"{\""loyalty\"": \""9%\""}",35775,1,"""North America""" +2023-05-15,4814,6234,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",226.14,{},179911,1,"""North America""" +2023-06-15,4815,1829,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3799.5,"{\""seasonal\"": \""18%\""}",200669,1,"""Asia""" +2023-04-24,4816,9268,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4730.39,{},6361,0,"""Africa""" +2023-09-01,4817,1558,"[\""Monitor\""]",1389.52,{},194592,0,"""Asia""" +2024-01-15,4818,2517,"[\""Monitor\""]",1369.48,"{\""loyalty\"": \""29%\""}",133000,0,"""Asia""" +2023-03-13,4819,1097,"[\""Phone\"", \""Headphones\""]",4593.89,"{\""seasonal\"": \""11%\""}",5090,0,"""South America""" +2024-08-28,4820,7177,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1106.47,{},90677,1,"""Asia""" +2024-06-11,4821,3781,"[\""Laptop\"", \""Keyboard\""]",286.49,{},114007,0,"""North America""" +2024-01-03,4822,2778,"[\""Headphones\""]",4251.73,{},135768,0,"""Europe""" +2024-11-01,4823,7264,"[\""Charger\"", \""Tablet\""]",3872.67,{},172190,1,"""Africa""" +2024-09-01,4824,1796,"[\""Monitor\""]",3605.93,"{\""promo\"": \""15%\""}",240803,1,"""North America""" +2023-09-28,4825,9342,"[\""Charger\"", \""Phone\""]",3235.62,"{\""loyalty\"": \""26%\""}",17345,1,"""Africa""" +2023-05-05,4826,3485,"[\""Monitor\""]",794.71,{},103319,0,"""Asia""" +2023-12-28,4827,6733,"[\""Keyboard\""]",3417.43,"{\""loyalty\"": \""14%\""}",103500,1,"""South America""" +2023-02-27,4828,5899,"[\""Laptop\"", \""Tablet\""]",1514.11,"{\"": \""21%\""}",272362,1,"""North America""" +2023-03-22,4829,5456,"[\""Phone\"", \""Monitor\""]",1134.2,{},174724,0,"""Europe""" +2023-09-01,4830,3973,"[\""Headphones\""]",2181.2,"{\"": \""29%\""}",119613,0,"""South America""" +2024-09-09,4831,9145,"[\""Phone\""]",484.61,"{\""seasonal\"": \""11%\""}",39526,1,"""Asia""" +2024-08-06,4832,6743,"[\""Monitor\"", \""Headphones\""]",947.95,"{\""loyalty\"": \""15%\""}",117407,0,"""Europe""" +2024-01-29,4833,1377,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4804.31,"{\"": \""16%\""}",39043,1,"""South America""" +2023-12-31,4834,7875,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",161.72,"{\"": \""5%\""}",69631,0,"""South America""" +2024-11-02,4835,1722,"[\""Tablet\""]",2566.46,{},193569,1,"""Africa""" +2023-01-30,4836,3286,"[\""Laptop\"", \""Keyboard\""]",883.09,"{\""loyalty\"": \""19%\""}",169177,1,"""Asia""" +2024-03-30,4837,6150,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4630.57,"{\""promo\"": \""27%\""}",25907,0,"""South America""" +2023-03-09,4838,9199,"[\""Keyboard\"", \""Laptop\""]",3825.21,"{\""seasonal\"": \""18%\""}",182672,1,"""Asia""" +2023-02-12,4839,9057,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",562.48,"{\"": \""24%\""}",227633,0,"""Africa""" +2024-04-04,4840,6192,"[\""Tablet\"", \""Monitor\""]",885.03,{},79980,0,"""North America""" +2023-03-08,4841,7071,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1787.0,{},220570,1,"""Africa""" +2023-11-14,4842,1201,"[\""Tablet\""]",3258.11,"{\""seasonal\"": \""11%\""}",232962,1,"""North America""" +2023-04-05,4843,1937,"[\""Tablet\""]",276.25,{},255086,1,"""Africa""" +2023-08-14,4844,4188,"[\""Tablet\""]",1220.19,{},299077,0,"""Asia""" +2024-12-23,4845,2973,"[\""Keyboard\""]",593.76,"{\""promo\"": \""7%\""}",270776,1,"""Africa""" +2024-11-07,4846,5018,"[\""Wireless Mouse\"", \""Charger\""]",2961.23,{},13583,1,"""Europe""" +2023-12-10,4847,135,"[\""Wireless Mouse\""]",486.37,{},151999,1,"""Asia""" +2023-09-26,4848,3309,"[\""Wireless Mouse\"", \""Headphones\""]",891.82,"{\""loyalty\"": \""29%\""}",247820,1,"""Europe""" +2023-06-29,4849,9512,"[\""Tablet\"", \""Phone\""]",1962.33,{},63530,1,"""Africa""" +2024-10-19,4850,7158,"[\""Headphones\"", \""Tablet\""]",4512.99,"{\""promo\"": \""6%\""}",61422,1,"""Asia""" +2023-12-20,4851,5250,"[\""Phone\"", \""Wireless Mouse\""]",4784.78,{},199428,0,"""South America""" +2024-05-29,4852,6571,"[\""Monitor\""]",3984.26,{},18112,0,"""South America""" +2023-06-10,4853,856,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1755.42,{},107263,1,"""Asia""" +2023-06-26,4854,2672,"[\""Keyboard\"", \""Laptop\""]",967.28,"{\""loyalty\"": \""20%\""}",171795,1,"""North America""" +2023-06-16,4855,5075,"[\""Headphones\"", \""Keyboard\""]",70.49,"{\""seasonal\"": \""5%\""}",90756,0,"""South America""" +2023-07-30,4856,8162,"[\""Headphones\""]",3560.27,"{\""promo\"": \""23%\""}",107281,0,"""Asia""" +2024-12-29,4857,7220,"[\""Keyboard\"", \""Tablet\""]",4877.18,{},166814,1,"""Africa""" +2024-12-29,4858,9117,"[\""Phone\""]",3409.77,"{\""promo\"": \""19%\""}",41599,1,"""South America""" +2023-09-15,4859,3807,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",962.08,"{\""loyalty\"": \""8%\""}",125440,0,"""Europe""" +2023-04-08,4860,8935,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4780.25,{},266922,0,"""Africa""" +2023-03-04,4861,1605,"[\""Keyboard\"", \""Tablet\""]",225.66,{},226468,1,"""Europe""" +2023-06-04,4862,5663,"[\""Monitor\"", \""Keyboard\""]",3454.15,"{\""loyalty\"": \""11%\""}",11436,0,"""North America""" +2024-09-21,4863,6258,"[\""Laptop\"", \""Keyboard\""]",4736.44,{},197015,0,"""South America""" +2023-02-06,4864,9234,"[\""Laptop\"", \""Charger\""]",4311.85,{},273285,1,"""Europe""" +2024-07-11,4865,2105,"[\""Laptop\"", \""Monitor\""]",1698.72,{},13010,0,"""North America""" +2024-10-26,4866,2818,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",231.67,"{\"": \""26%\""}",15646,1,"""North America""" +2023-07-08,4867,4641,"[\""Headphones\"", \""Laptop\""]",2874.63,{},243365,1,"""Asia""" +2023-09-28,4868,179,"[\""Tablet\""]",3428.26,{},179491,1,"""North America""" +2023-07-08,4869,2444,"[\""Tablet\""]",3890.17,"{\""promo\"": \""25%\""}",28500,0,"""Asia""" +2023-05-26,4870,8669,"[\""Phone\"", \""Tablet\""]",4056.98,"{\""loyalty\"": \""15%\""}",262393,0,"""South America""" +2023-09-20,4871,4342,"[\""Headphones\"", \""Tablet\""]",650.96,"{\""seasonal\"": \""5%\""}",246449,1,"""Asia""" +2024-03-22,4872,4919,"[\""Laptop\""]",2803.17,{},67621,0,"""Africa""" +2023-09-21,4873,7523,"[\""Headphones\""]",2121.58,"{\""loyalty\"": \""19%\""}",173656,1,"""North America""" +2023-08-17,4874,9152,"[\""Monitor\""]",1780.18,{},258137,0,"""South America""" +2024-01-16,4875,7172,"[\""Phone\"", \""Wireless Mouse\""]",336.28,{},57257,1,"""North America""" +2023-03-06,4876,9248,"[\""Laptop\"", \""Phone\""]",1292.44,"{\""promo\"": \""23%\""}",95918,1,"""Africa""" +2024-10-31,4877,189,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3721.62,{},253227,0,"""North America""" +2023-12-04,4878,7976,"[\""Wireless Mouse\""]",2781.44,{},170082,1,"""Europe""" +2023-07-15,4879,8597,"[\""Tablet\""]",2667.43,{},92675,1,"""Europe""" +2023-06-06,4880,3172,"[\""Laptop\""]",4926.04,"{\"": \""14%\""}",78618,1,"""Africa""" +2023-11-09,4881,1368,"[\""Wireless Mouse\"", \""Charger\""]",1657.54,{},33383,0,"""Africa""" +2023-03-03,4882,2263,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3542.99,"{\""seasonal\"": \""11%\""}",299037,0,"""North America""" +2024-02-24,4883,3169,"[\""Laptop\"", \""Charger\""]",1615.54,"{\""loyalty\"": \""30%\""}",233110,1,"""North America""" +2023-08-16,4884,4094,"[\""Charger\""]",1673.2,{},176450,0,"""Europe""" +2023-08-22,4885,7112,"[\""Monitor\"", \""Wireless Mouse\""]",845.77,{},7346,0,"""South America""" +2023-10-12,4886,4348,"[\""Wireless Mouse\"", \""Phone\""]",3770.14,"{\""promo\"": \""16%\""}",273846,0,"""Africa""" +2023-06-08,4887,7762,"[\""Phone\""]",2049.34,"{\""promo\"": \""19%\""}",33423,0,"""Europe""" +2023-03-12,4888,2938,"[\""Laptop\""]",4745.91,{},276435,1,"""South America""" +2024-02-18,4889,9037,"[\""Headphones\"", \""Tablet\""]",1546.03,"{\""seasonal\"": \""15%\""}",153432,1,"""South America""" +2024-06-02,4890,8045,"[\""Phone\"", \""Headphones\""]",2858.65,"{\""loyalty\"": \""8%\""}",85195,1,"""Africa""" +2023-07-07,4891,532,"[\""Headphones\"", \""Keyboard\""]",4384.78,"{\""seasonal\"": \""19%\""}",30214,1,"""Asia""" +2024-01-10,4892,9073,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1074.88,"{\""seasonal\"": \""12%\""}",53826,0,"""Europe""" +2024-03-03,4893,3071,"[\""Wireless Mouse\""]",1827.51,"{\""loyalty\"": \""28%\""}",69512,0,"""Europe""" +2023-10-28,4894,6589,"[\""Wireless Mouse\""]",2280.18,{},176852,1,"""Asia""" +2024-08-06,4895,4047,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",920.1,{},180410,1,"""Africa""" +2024-10-28,4896,1788,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2306.79,{},31527,1,"""Asia""" +2024-11-24,4897,3516,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1366.91,{},147413,0,"""South America""" +2023-06-28,4898,2068,"[\""Wireless Mouse\""]",4355.48,"{\""promo\"": \""25%\""}",67315,1,"""Asia""" +2023-11-14,4899,7584,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2420.15,"{\"": \""22%\""}",20266,0,"""South America""" +2023-03-27,4900,1070,"[\""Wireless Mouse\""]",2226.09,{},266443,0,"""South America""" +2024-05-31,4901,4173,"[\""Wireless Mouse\"", \""Phone\""]",2293.04,"{\""promo\"": \""27%\""}",261909,0,"""South America""" +2024-05-20,4902,5561,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2405.12,{},11748,0,"""Africa""" +2024-06-16,4903,226,"[\""Tablet\""]",304.66,"{\""promo\"": \""24%\""}",275471,1,"""North America""" +2024-08-02,4904,5790,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",201.98,"{\""seasonal\"": \""21%\""}",9030,0,"""Asia""" +2023-10-12,4905,9504,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1466.02,"{\""promo\"": \""13%\""}",141187,0,"""Europe""" +2023-02-25,4906,4011,"[\""Wireless Mouse\"", \""Phone\""]",4748.52,"{\""seasonal\"": \""26%\""}",120136,1,"""North America""" +2023-11-13,4907,5345,"[\""Keyboard\""]",4521.75,{},188351,0,"""South America""" +2023-07-11,4908,5090,"[\""Monitor\""]",3748.54,{},148538,0,"""Asia""" +2023-03-20,4909,2189,"[\""Tablet\""]",137.32,{},272247,1,"""Asia""" +2023-04-21,4910,6978,"[\""Laptop\""]",858.59,{},171764,1,"""South America""" +2023-12-02,4911,7412,"[\""Headphones\""]",4440.96,"{\""loyalty\"": \""28%\""}",78890,0,"""Europe""" +2024-07-31,4912,9744,"[\""Phone\"", \""Headphones\""]",3408.04,{},90683,0,"""North America""" +2023-06-20,4913,4093,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3282.14,{},74399,0,"""Europe""" +2023-09-08,4914,2838,"[\""Laptop\"", \""Phone\""]",3205.31,{},220587,0,"""Africa""" +2024-04-22,4915,3568,"[\""Tablet\"", \""Laptop\""]",3017.88,{},171393,0,"""Africa""" +2024-10-11,4916,7290,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1985.78,{},131685,1,"""Africa""" +2023-06-20,4917,4861,"[\""Monitor\""]",918.53,{},114679,0,"""South America""" +2024-08-14,4918,6326,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4909.44,{},288282,1,"""North America""" +2024-01-06,4919,6919,"[\""Charger\"", \""Keyboard\""]",1888.72,{},221223,1,"""South America""" +2023-02-23,4920,3992,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",297.32,"{\""loyalty\"": \""16%\""}",246985,1,"""South America""" +2023-10-21,4921,4226,"[\""Charger\""]",4745.72,{},239444,1,"""North America""" +2024-02-14,4922,3242,"[\""Tablet\"", \""Headphones\""]",3257.64,{},199034,0,"""Africa""" +2023-12-09,4923,2661,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3299.86,"{\"": \""22%\""}",44519,1,"""North America""" +2023-03-23,4924,5518,"[\""Phone\"", \""Tablet\""]",1843.79,{},57361,0,"""Asia""" +2024-10-12,4925,8277,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",997.57,{},53902,0,"""Africa""" +2024-06-11,4926,9277,"[\""Charger\"", \""Phone\"", \""Monitor\""]",592.41,{},116714,1,"""South America""" +2023-04-08,4927,4422,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2793.48,{},152226,0,"""South America""" +2024-10-15,4928,1665,"[\""Tablet\"", \""Laptop\""]",1689.93,{},249787,0,"""Africa""" +2023-05-14,4929,1378,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4977.76,{},111458,0,"""Africa""" +2024-12-27,4930,1569,"[\""Wireless Mouse\"", \""Tablet\""]",2608.28,{},27117,1,"""Asia""" +2023-09-27,4931,3232,"[\""Monitor\""]",2502.59,{},239368,1,"""Europe""" +2024-01-22,4932,8961,"[\""Monitor\"", \""Headphones\""]",1164.24,{},180213,0,"""North America""" +2024-02-15,4933,353,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2572.73,"{\"": \""8%\""}",222601,1,"""North America""" +2024-07-30,4934,6110,"[\""Headphones\""]",1763.47,"{\"": \""12%\""}",215702,1,"""Africa""" +2024-12-07,4935,601,"[\""Wireless Mouse\""]",3049.74,{},121854,0,"""Africa""" +2023-06-20,4936,6735,"[\""Monitor\"", \""Laptop\""]",2633.07,"{\""seasonal\"": \""11%\""}",154977,0,"""Europe""" +2024-08-27,4937,4918,"[\""Wireless Mouse\""]",2175.63,{},271882,0,"""Africa""" +2024-02-16,4938,3978,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1067.07,{},265287,0,"""South America""" +2023-12-08,4939,8829,"[\""Monitor\"", \""Wireless Mouse\""]",4074.2,"{\""promo\"": \""8%\""}",201617,1,"""Africa""" +2024-03-28,4940,3716,"[\""Keyboard\""]",1343.11,"{\""promo\"": \""26%\""}",21775,1,"""Asia""" +2024-09-05,4941,377,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3917.37,"{\""seasonal\"": \""26%\""}",157707,1,"""Asia""" +2024-06-14,4942,7769,"[\""Phone\"", \""Tablet\""]",3187.51,"{\""seasonal\"": \""7%\""}",51430,0,"""South America""" +2023-12-28,4943,8416,"[\""Wireless Mouse\""]",4494.6,{},25664,0,"""North America""" +2024-10-27,4944,1112,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3242.56,"{\""seasonal\"": \""13%\""}",192115,0,"""North America""" +2023-10-14,4945,4553,"[\""Headphones\""]",3029.67,{},126744,1,"""Africa""" +2023-05-04,4946,6017,"[\""Wireless Mouse\"", \""Laptop\""]",4878.58,"{\""promo\"": \""9%\""}",50305,0,"""Europe""" +2023-10-04,4947,2983,"[\""Laptop\"", \""Headphones\""]",3808.74,"{\""promo\"": \""8%\""}",110892,0,"""South America""" +2024-01-01,4948,4740,"[\""Laptop\""]",551.94,{},25648,0,"""Asia""" +2024-01-04,4949,3648,"[\""Tablet\""]",1051.52,"{\"": \""10%\""}",14556,0,"""Europe""" +2023-07-10,4950,1749,"[\""Charger\""]",4608.27,"{\""loyalty\"": \""26%\""}",190848,0,"""North America""" +2023-08-05,4951,192,"[\""Keyboard\"", \""Tablet\""]",117.49,"{\""seasonal\"": \""30%\""}",121652,0,"""North America""" +2023-09-16,4952,6190,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1554.97,"{\""loyalty\"": \""12%\""}",209614,0,"""Asia""" +2024-08-16,4953,5666,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4562.56,{},291342,0,"""North America""" +2023-08-30,4954,7448,"[\""Charger\""]",3258.76,{},199600,0,"""South America""" +2023-11-25,4955,9336,"[\""Monitor\""]",1147.64,{},121315,1,"""Europe""" +2024-05-01,4956,9749,"[\""Keyboard\""]",1790.49,"{\""loyalty\"": \""19%\""}",100524,0,"""South America""" +2024-01-30,4957,1164,"[\""Laptop\"", \""Charger\""]",444.04,"{\""promo\"": \""19%\""}",108154,1,"""South America""" +2023-04-05,4958,9804,"[\""Headphones\"", \""Phone\""]",2359.53,"{\""promo\"": \""16%\""}",117671,1,"""Europe""" +2023-04-16,4959,1152,"[\""Headphones\""]",3664.17,"{\""seasonal\"": \""14%\""}",52333,1,"""North America""" +2023-07-29,4960,3945,"[\""Phone\""]",906.04,"{\""seasonal\"": \""9%\""}",213797,1,"""Africa""" +2024-09-05,4961,6000,"[\""Headphones\"", \""Keyboard\""]",2322.42,{},17358,0,"""South America""" +2024-09-12,4962,8973,"[\""Tablet\""]",771.61,"{\""loyalty\"": \""11%\""}",79040,1,"""South America""" +2024-07-24,4963,5347,"[\""Phone\""]",2761.59,{},65710,0,"""Asia""" +2023-05-06,4964,9086,"[\""Wireless Mouse\""]",3219.78,"{\"": \""12%\""}",191217,1,"""South America""" +2023-05-24,4965,4942,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1979.03,"{\"": \""27%\""}",149347,0,"""Asia""" +2023-02-08,4966,6971,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2605.85,{},174452,0,"""Africa""" +2023-07-18,4967,8414,"[\""Charger\"", \""Monitor\""]",649.95,{},64237,1,"""Europe""" +2024-08-02,4968,9399,"[\""Monitor\""]",553.1,"{\"": \""9%\""}",181579,1,"""Asia""" +2023-11-29,4969,5555,"[\""Charger\""]",1121.27,{},258511,0,"""North America""" +2023-12-18,4970,4558,"[\""Wireless Mouse\"", \""Phone\""]",2410.44,{},147506,0,"""North America""" +2023-03-09,4971,1665,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4140.44,"{\""seasonal\"": \""27%\""}",156944,0,"""North America""" +2024-01-24,4972,3351,"[\""Wireless Mouse\"", \""Laptop\""]",3363.87,{},130329,0,"""Europe""" +2023-03-18,4973,3578,"[\""Phone\"", \""Keyboard\""]",1006.84,"{\""promo\"": \""25%\""}",173321,1,"""North America""" +2023-12-29,4974,8039,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1669.78,{},40052,0,"""North America""" +2023-03-05,4975,5617,"[\""Charger\"", \""Wireless Mouse\""]",4708.13,"{\"": \""8%\""}",171849,0,"""Africa""" +2023-08-21,4976,8532,"[\""Phone\"", \""Monitor\""]",4569.51,{},129259,0,"""Europe""" +2024-12-04,4977,5799,"[\""Keyboard\""]",4833.53,"{\""loyalty\"": \""5%\""}",237075,1,"""South America""" +2023-05-09,4978,4091,"[\""Tablet\""]",821.63,{},290840,0,"""North America""" +2023-07-25,4979,8165,"[\""Tablet\"", \""Charger\""]",2153.24,{},139796,1,"""Asia""" +2024-09-06,4980,9043,"[\""Wireless Mouse\"", \""Phone\""]",1817.41,{},86943,0,"""Asia""" +2023-03-16,4981,8188,"[\""Monitor\"", \""Phone\""]",1740.13,"{\""seasonal\"": \""9%\""}",127054,1,"""Africa""" +2023-10-09,4982,3787,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4588.84,"{\""loyalty\"": \""6%\""}",141171,1,"""Europe""" +2024-05-25,4983,7215,"[\""Tablet\"", \""Monitor\""]",857.23,"{\""loyalty\"": \""8%\""}",43470,0,"""Europe""" +2024-04-09,4984,4400,"[\""Charger\""]",470.39,"{\""seasonal\"": \""19%\""}",27972,0,"""Asia""" +2023-12-10,4985,5496,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",799.99,{},70246,1,"""Europe""" +2024-04-04,4986,4310,"[\""Wireless Mouse\"", \""Headphones\""]",3001.32,{},100531,1,"""Africa""" +2023-09-25,4987,8684,"[\""Headphones\"", \""Tablet\""]",811.14,"{\"": \""20%\""}",69901,0,"""North America""" +2024-05-16,4988,2724,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1346.83,{},71283,0,"""Asia""" +2024-03-20,4989,5095,"[\""Charger\"", \""Tablet\"", \""Phone\""]",269.69,{},202678,1,"""Europe""" +2024-11-19,4990,79,"[\""Tablet\""]",108.15,"{\""loyalty\"": \""15%\""}",273814,1,"""Asia""" +2024-05-25,4991,513,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1476.69,{},72545,1,"""South America""" +2024-06-23,4992,6352,"[\""Laptop\""]",3180.6,"{\""loyalty\"": \""17%\""}",207507,0,"""Africa""" +2024-01-08,4993,1637,"[\""Laptop\"", \""Monitor\""]",1506.82,{},187583,0,"""Europe""" +2024-03-17,4994,9176,"[\""Wireless Mouse\"", \""Keyboard\""]",3754.63,"{\"": \""16%\""}",277462,0,"""South America""" +2023-11-21,4995,1089,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4712.04,"{\""loyalty\"": \""10%\""}",236079,1,"""Asia""" +2023-09-01,4996,1661,"[\""Monitor\""]",4902.32,{},96038,1,"""Asia""" +2024-12-23,4997,2904,"[\""Charger\""]",4192.88,"{\""promo\"": \""13%\""}",10694,0,"""Asia""" +2023-01-10,4998,6836,"[\""Tablet\""]",2543.81,{},78482,1,"""South America""" +2023-08-22,4999,1408,"[\""Wireless Mouse\""]",3421.17,{},52529,0,"""Africa""" +2023-11-02,5000,7241,"[\""Phone\""]",2435.95,{},36958,0,"""South America""" +2023-10-25,5001,3923,"[\""Monitor\"", \""Tablet\""]",3267.84,{},84967,0,"""Europe""" +2024-03-05,5002,7423,"[\""Monitor\""]",1368.09,{},215630,1,"""North America""" +2023-08-04,5003,8737,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",215.14,"{\""loyalty\"": \""13%\""}",105108,1,"""North America""" +2024-08-09,5004,987,"[\""Charger\"", \""Tablet\""]",249.1,"{\""promo\"": \""26%\""}",241580,1,"""South America""" +2024-10-18,5005,8896,"[\""Wireless Mouse\""]",3887.15,{},85195,0,"""Africa""" +2023-11-03,5006,7368,"[\""Headphones\"", \""Phone\""]",4621.16,"{\""loyalty\"": \""22%\""}",158949,1,"""Europe""" +2023-10-09,5007,1157,"[\""Tablet\"", \""Monitor\""]",3730.4,{},294877,0,"""North America""" +2023-02-27,5008,2674,"[\""Phone\"", \""Keyboard\""]",3753.26,"{\""promo\"": \""28%\""}",233975,0,"""Europe""" +2024-02-29,5009,7337,"[\""Headphones\"", \""Wireless Mouse\""]",3506.77,"{\""loyalty\"": \""23%\""}",274090,0,"""Europe""" +2024-05-27,5010,9545,"[\""Phone\"", \""Wireless Mouse\""]",3981.69,"{\""promo\"": \""22%\""}",268719,1,"""Africa""" +2023-11-27,5011,3810,"[\""Tablet\"", \""Wireless Mouse\""]",2851.15,{},32207,1,"""South America""" +2023-11-14,5012,5686,"[\""Laptop\""]",369.07,"{\""loyalty\"": \""6%\""}",199616,1,"""Europe""" +2024-09-23,5013,1698,"[\""Keyboard\"", \""Tablet\""]",3295.28,{},125254,1,"""South America""" +2023-07-11,5014,637,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3586.59,{},105498,1,"""Europe""" +2023-02-08,5015,958,"[\""Keyboard\"", \""Laptop\""]",2449.17,"{\"": \""28%\""}",232399,0,"""South America""" +2023-07-07,5016,5588,"[\""Monitor\"", \""Keyboard\""]",4775.25,{},259530,1,"""Europe""" +2024-03-30,5017,2777,"[\""Wireless Mouse\""]",3799.84,{},257772,1,"""North America""" +2024-09-11,5018,1095,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",784.98,"{\""seasonal\"": \""12%\""}",27878,1,"""Europe""" +2024-04-29,5019,2681,"[\""Phone\"", \""Charger\""]",940.33,{},190005,0,"""South America""" +2024-02-07,5020,3116,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4336.33,{},76943,0,"""North America""" +2024-06-06,5021,4019,"[\""Wireless Mouse\""]",252.33,"{\""seasonal\"": \""17%\""}",20069,0,"""South America""" +2023-02-10,5022,296,"[\""Phone\""]",2077.42,{},254350,1,"""North America""" +2024-07-25,5023,5910,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",516.02,{},253991,0,"""Europe""" +2024-01-12,5024,7371,"[\""Charger\""]",1903.32,"{\""loyalty\"": \""28%\""}",136757,1,"""North America""" +2024-10-09,5025,2353,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4153.73,"{\"": \""30%\""}",55650,1,"""Asia""" +2024-06-19,5026,5370,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1428.37,"{\""loyalty\"": \""15%\""}",1838,1,"""Europe""" +2024-07-12,5027,5813,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4747.32,{},252946,0,"""Africa""" +2023-08-24,5028,4026,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4592.03,{},116830,0,"""North America""" +2024-02-16,5029,4128,"[\""Tablet\""]",4951.71,"{\""loyalty\"": \""30%\""}",85085,0,"""North America""" +2024-08-17,5030,6626,"[\""Phone\""]",148.65,{},179328,1,"""Asia""" +2023-01-27,5031,3456,"[\""Monitor\""]",3299.45,"{\""promo\"": \""11%\""}",267127,0,"""Europe""" +2024-07-23,5032,1592,"[\""Charger\"", \""Laptop\""]",653.19,"{\"": \""10%\""}",168988,1,"""North America""" +2023-02-18,5033,7352,"[\""Charger\"", \""Tablet\""]",1361.36,"{\"": \""23%\""}",101432,1,"""South America""" +2023-08-29,5034,8846,"[\""Charger\"", \""Tablet\""]",2033.93,{},208387,1,"""Europe""" +2024-03-23,5035,792,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4381.24,"{\""seasonal\"": \""11%\""}",102592,0,"""North America""" +2024-09-20,5036,6776,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4956.72,"{\"": \""10%\""}",155692,1,"""North America""" +2023-08-08,5037,4102,"[\""Headphones\""]",1536.87,{},222782,0,"""Europe""" +2024-02-09,5038,3,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3352.96,{},26519,0,"""North America""" +2024-11-28,5039,4849,"[\""Charger\"", \""Phone\""]",2562.37,"{\""promo\"": \""5%\""}",102119,0,"""North America""" +2023-08-15,5040,7179,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1345.15,"{\""loyalty\"": \""27%\""}",216836,0,"""North America""" +2024-05-19,5041,4288,"[\""Tablet\""]",1899.94,{},119701,1,"""Africa""" +2024-10-30,5042,2973,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3331.33,{},67243,1,"""Europe""" +2023-08-14,5043,9693,"[\""Wireless Mouse\"", \""Headphones\""]",2510.32,"{\""loyalty\"": \""26%\""}",189409,0,"""North America""" +2024-10-09,5044,2559,"[\""Charger\""]",3698.38,{},278439,1,"""Asia""" +2023-07-18,5045,6505,"[\""Phone\""]",3242.44,"{\""loyalty\"": \""23%\""}",13656,1,"""Europe""" +2023-07-01,5046,5619,"[\""Keyboard\"", \""Headphones\""]",3713.45,"{\""loyalty\"": \""13%\""}",113860,0,"""North America""" +2024-03-05,5047,3629,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1945.37,{},196342,0,"""North America""" +2023-09-01,5048,9286,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1503.99,{},202352,0,"""South America""" +2024-01-22,5049,4586,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4013.92,{},169699,0,"""South America""" +2023-11-25,5050,967,"[\""Wireless Mouse\""]",1520.88,"{\""loyalty\"": \""21%\""}",36030,0,"""Europe""" +2023-12-30,5051,78,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4242.85,"{\"": \""28%\""}",195581,1,"""Africa""" +2023-04-23,5052,490,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",881.48,{},38060,1,"""South America""" +2023-03-17,5053,2813,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",796.55,"{\""seasonal\"": \""11%\""}",93622,1,"""Asia""" +2024-04-07,5054,712,"[\""Tablet\"", \""Charger\"", \""Phone\""]",635.48,"{\""loyalty\"": \""8%\""}",205509,0,"""Africa""" +2023-04-24,5055,8999,"[\""Laptop\""]",78.51,"{\""promo\"": \""20%\""}",215464,1,"""Europe""" +2024-09-03,5056,9465,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1314.07,{},214461,0,"""Asia""" +2024-07-31,5057,7572,"[\""Laptop\"", \""Monitor\""]",2929.74,{},221649,0,"""North America""" +2023-12-10,5058,8069,"[\""Wireless Mouse\""]",3883.9,"{\""promo\"": \""21%\""}",249539,0,"""Africa""" +2023-06-23,5059,1374,"[\""Keyboard\""]",4097.19,"{\""promo\"": \""26%\""}",266536,0,"""North America""" +2023-09-20,5060,4192,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1875.39,{},247844,1,"""Africa""" +2023-11-24,5061,2544,"[\""Tablet\""]",571.58,"{\""promo\"": \""20%\""}",54307,1,"""South America""" +2023-07-22,5062,9148,"[\""Keyboard\"", \""Headphones\""]",196.32,{},116484,0,"""North America""" +2023-10-09,5063,5470,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1093.6,"{\""promo\"": \""15%\""}",65086,1,"""South America""" +2024-07-14,5064,2718,"[\""Headphones\""]",3186.04,{},163882,1,"""Asia""" +2023-01-04,5065,2591,"[\""Headphones\""]",710.93,{},182762,0,"""South America""" +2023-07-27,5066,6941,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3886.02,{},249413,1,"""Africa""" +2024-11-30,5067,6874,"[\""Keyboard\""]",1544.43,"{\""seasonal\"": \""11%\""}",105809,1,"""Asia""" +2023-10-28,5068,7253,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2733.18,{},158717,1,"""Asia""" +2023-04-09,5069,7429,"[\""Tablet\"", \""Charger\""]",3865.34,"{\""seasonal\"": \""30%\""}",28236,0,"""South America""" +2023-10-10,5070,79,"[\""Wireless Mouse\"", \""Charger\""]",3353.27,{},162345,1,"""South America""" +2024-12-25,5071,2067,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2992.97,{},166261,0,"""Africa""" +2024-12-01,5072,8647,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1107.13,"{\""seasonal\"": \""30%\""}",236202,0,"""North America""" +2024-01-31,5073,6086,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3277.89,{},292679,1,"""Asia""" +2023-06-17,5074,9629,"[\""Phone\""]",821.32,"{\""promo\"": \""5%\""}",157230,1,"""Africa""" +2024-01-02,5075,8284,"[\""Charger\""]",3487.27,"{\""loyalty\"": \""17%\""}",183390,1,"""South America""" +2024-03-13,5076,3118,"[\""Headphones\""]",3267.76,"{\""promo\"": \""7%\""}",261768,1,"""South America""" +2023-11-20,5077,7918,"[\""Charger\""]",4853.08,{},182760,1,"""Europe""" +2023-01-12,5078,5051,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4893.41,{},126780,0,"""Europe""" +2024-12-19,5079,8181,"[\""Laptop\""]",3643.54,"{\""promo\"": \""25%\""}",36918,0,"""South America""" +2024-02-01,5080,6828,"[\""Tablet\""]",1361.48,{},107511,1,"""South America""" +2023-07-02,5081,3848,"[\""Wireless Mouse\"", \""Headphones\""]",321.79,"{\""seasonal\"": \""13%\""}",46852,1,"""Europe""" +2024-12-22,5082,3151,"[\""Tablet\""]",1431.37,{},21789,0,"""South America""" +2023-10-24,5083,1148,"[\""Phone\"", \""Wireless Mouse\""]",780.42,{},272999,1,"""South America""" +2023-07-24,5084,1255,"[\""Tablet\""]",170.61,{},250836,0,"""Europe""" +2024-11-07,5085,364,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3373.22,{},257149,0,"""North America""" +2024-10-03,5086,8915,"[\""Keyboard\""]",822.92,{},293407,1,"""South America""" +2024-06-27,5087,9663,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",999.98,"{\""seasonal\"": \""27%\""}",207020,0,"""Asia""" +2023-01-11,5088,4396,"[\""Wireless Mouse\""]",2474.55,"{\""seasonal\"": \""8%\""}",250224,1,"""North America""" +2023-04-15,5089,4563,"[\""Tablet\"", \""Laptop\""]",561.34,"{\"": \""19%\""}",62647,1,"""South America""" +2023-01-26,5090,6756,"[\""Headphones\""]",3372.3,"{\""loyalty\"": \""19%\""}",82659,0,"""North America""" +2024-10-18,5091,3754,"[\""Monitor\"", \""Phone\""]",1502.61,{},261011,0,"""Asia""" +2023-06-09,5092,7716,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4586.91,{},158009,0,"""South America""" +2023-09-04,5093,1448,"[\""Phone\"", \""Headphones\""]",4686.47,{},76949,0,"""South America""" +2024-08-02,5094,2811,"[\""Monitor\""]",4886.49,{},68616,0,"""Asia""" +2024-11-09,5095,3590,"[\""Wireless Mouse\"", \""Headphones\""]",2152.62,{},274859,0,"""North America""" +2023-01-09,5096,1223,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4477.27,"{\""seasonal\"": \""11%\""}",76872,0,"""Europe""" +2024-08-16,5097,9459,"[\""Monitor\"", \""Charger\""]",1471.93,{},147383,1,"""South America""" +2024-09-10,5098,1825,"[\""Phone\"", \""Laptop\""]",753.42,{},40014,0,"""South America""" +2024-11-20,5099,5674,"[\""Headphones\""]",523.55,{},289182,0,"""South America""" +2024-09-23,5100,5220,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3816.58,"{\""loyalty\"": \""7%\""}",87789,1,"""North America""" +2024-01-27,5101,4703,"[\""Monitor\""]",4120.78,"{\""promo\"": \""27%\""}",253161,0,"""Asia""" +2023-11-03,5102,6194,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3983.04,"{\"": \""30%\""}",214212,1,"""Africa""" +2023-04-14,5103,2105,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",610.42,"{\""promo\"": \""18%\""}",175105,1,"""South America""" +2024-01-25,5104,9193,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3139.54,{},76313,1,"""South America""" +2024-01-27,5105,2993,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",781.3,"{\""promo\"": \""5%\""}",224040,0,"""South America""" +2024-05-01,5106,1794,"[\""Charger\"", \""Keyboard\""]",4448.69,{},216050,1,"""South America""" +2023-11-30,5107,7827,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4644.12,"{\""promo\"": \""30%\""}",177549,1,"""Africa""" +2024-08-17,5108,3112,"[\""Wireless Mouse\""]",3086.17,{},239627,1,"""Europe""" +2023-11-03,5109,7858,"[\""Phone\"", \""Laptop\""]",3878.83,{},203767,0,"""Africa""" +2024-04-22,5110,7549,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3500.41,"{\""promo\"": \""16%\""}",81920,1,"""Africa""" +2024-04-23,5111,3967,"[\""Keyboard\"", \""Laptop\""]",2307.39,{},59682,0,"""Europe""" +2024-05-06,5112,2887,"[\""Headphones\""]",4014.56,"{\""seasonal\"": \""19%\""}",140007,1,"""Africa""" +2024-10-12,5113,8673,"[\""Phone\"", \""Charger\""]",3444.5,"{\""promo\"": \""20%\""}",197606,0,"""North America""" +2024-03-05,5114,2437,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",503.55,"{\""loyalty\"": \""25%\""}",66635,0,"""North America""" +2024-05-06,5115,3059,"[\""Charger\"", \""Headphones\""]",758.19,{},41593,1,"""North America""" +2023-04-30,5116,4814,"[\""Charger\""]",3757.44,"{\""loyalty\"": \""16%\""}",219707,0,"""Europe""" +2023-10-23,5117,9038,"[\""Laptop\""]",118.76,{},140030,0,"""North America""" +2024-10-30,5118,596,"[\""Headphones\"", \""Monitor\""]",2475.76,{},259698,1,"""Africa""" +2024-07-27,5119,7488,"[\""Charger\""]",952.92,"{\""seasonal\"": \""22%\""}",169008,1,"""Europe""" +2024-04-22,5120,5974,"[\""Headphones\""]",791.13,"{\""promo\"": \""17%\""}",204517,1,"""Asia""" +2024-04-16,5121,2595,"[\""Phone\""]",4457.13,{},146362,0,"""Europe""" +2023-04-06,5122,2342,"[\""Wireless Mouse\""]",1169.31,"{\"": \""5%\""}",113937,0,"""Europe""" +2023-04-04,5123,8005,"[\""Tablet\"", \""Phone\""]",2464.97,"{\""promo\"": \""23%\""}",74816,1,"""Asia""" +2024-06-05,5124,8348,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3681.26,{},157220,1,"""Africa""" +2024-04-18,5125,3019,"[\""Wireless Mouse\""]",3407.5,"{\""seasonal\"": \""30%\""}",33101,1,"""Asia""" +2024-12-31,5126,3887,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4260.1,"{\""seasonal\"": \""26%\""}",243171,0,"""North America""" +2024-08-20,5127,6080,"[\""Phone\"", \""Wireless Mouse\""]",2314.86,"{\""promo\"": \""23%\""}",114337,1,"""South America""" +2024-09-01,5128,7616,"[\""Laptop\"", \""Charger\""]",1485.59,"{\"": \""21%\""}",77612,1,"""Europe""" +2023-03-03,5129,9384,"[\""Phone\"", \""Wireless Mouse\""]",2971.7,"{\""promo\"": \""21%\""}",248289,1,"""North America""" +2024-09-24,5130,4208,"[\""Phone\""]",1198.81,"{\"": \""25%\""}",188871,0,"""South America""" +2024-04-04,5131,9776,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",258.6,{},111759,0,"""Europe""" +2024-01-31,5132,4715,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2400.63,"{\""loyalty\"": \""13%\""}",8279,0,"""Europe""" +2023-12-07,5133,1946,"[\""Wireless Mouse\"", \""Phone\""]",4728.25,{},153502,0,"""North America""" +2024-03-16,5134,5792,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4765.27,{},117214,1,"""North America""" +2023-04-19,5135,9404,"[\""Tablet\""]",3142.17,"{\""promo\"": \""12%\""}",297706,0,"""Africa""" +2023-05-03,5136,4902,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",838.49,"{\""promo\"": \""23%\""}",237424,0,"""Africa""" +2023-12-10,5137,7889,"[\""Monitor\""]",2934.76,{},206000,0,"""Europe""" +2024-05-13,5138,1184,"[\""Tablet\""]",3309.66,{},106876,0,"""Africa""" +2023-09-02,5139,3780,"[\""Tablet\""]",361.53,"{\"": \""9%\""}",213222,1,"""North America""" +2024-11-03,5140,6057,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3144.14,{},149595,0,"""North America""" +2023-08-26,5141,6457,"[\""Tablet\"", \""Headphones\""]",4733.73,"{\""promo\"": \""24%\""}",216676,0,"""Asia""" +2023-06-16,5142,9108,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",971.68,{},212901,0,"""South America""" +2024-01-31,5143,2118,"[\""Phone\"", \""Keyboard\""]",767.77,"{\""promo\"": \""13%\""}",241903,1,"""Asia""" +2024-08-06,5144,762,"[\""Charger\"", \""Phone\""]",4829.69,{},285238,0,"""Africa""" +2024-11-27,5145,1794,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3106.78,"{\""seasonal\"": \""14%\""}",249703,1,"""North America""" +2023-07-01,5146,5466,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2701.3,{},57101,0,"""Asia""" +2023-11-01,5147,834,"[\""Wireless Mouse\""]",1725.2,"{\""seasonal\"": \""24%\""}",84506,1,"""North America""" +2023-04-04,5148,381,"[\""Keyboard\"", \""Phone\""]",784.17,"{\""loyalty\"": \""20%\""}",178725,0,"""Asia""" +2024-12-05,5149,5238,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4779.14,{},202016,1,"""North America""" +2023-07-22,5150,318,"[\""Tablet\""]",3245.06,{},217195,1,"""Europe""" +2023-05-29,5151,6840,"[\""Tablet\"", \""Keyboard\""]",4710.08,"{\""promo\"": \""13%\""}",170064,1,"""Africa""" +2024-07-12,5152,4964,"[\""Wireless Mouse\"", \""Tablet\""]",1851.3,{},256087,0,"""Europe""" +2024-08-28,5153,4131,"[\""Phone\""]",3459.99,{},165309,1,"""Europe""" +2024-07-05,5154,4837,"[\""Charger\""]",4191.32,"{\""seasonal\"": \""14%\""}",122835,0,"""North America""" +2024-02-17,5155,2689,"[\""Laptop\""]",1919.54,{},112159,0,"""North America""" +2024-01-01,5156,2334,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1628.1,{},152275,0,"""North America""" +2024-08-17,5157,2615,"[\""Wireless Mouse\""]",221.19,{},126250,0,"""North America""" +2023-01-17,5158,3838,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2685.0,"{\"": \""20%\""}",32677,0,"""Europe""" +2024-10-02,5159,1204,"[\""Phone\"", \""Tablet\""]",1388.23,{},44387,0,"""South America""" +2023-06-06,5160,5281,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1555.67,"{\""promo\"": \""21%\""}",127956,0,"""Africa""" +2023-08-28,5161,6491,"[\""Charger\"", \""Headphones\""]",724.69,{},197101,0,"""Europe""" +2023-04-07,5162,512,"[\""Tablet\"", \""Phone\""]",3303.56,"{\""loyalty\"": \""14%\""}",80273,0,"""South America""" +2024-10-16,5163,6342,"[\""Laptop\"", \""Monitor\""]",915.57,{},297335,1,"""Africa""" +2023-10-06,5164,4088,"[\""Monitor\""]",680.7,"{\""seasonal\"": \""20%\""}",233815,1,"""Europe""" +2023-12-28,5165,6443,"[\""Keyboard\"", \""Phone\""]",1194.59,{},60285,1,"""North America""" +2023-05-15,5166,6375,"[\""Laptop\""]",211.87,{},250316,1,"""South America""" +2024-08-19,5167,4764,"[\""Phone\""]",2876.42,"{\""promo\"": \""5%\""}",5481,1,"""North America""" +2024-07-18,5168,8322,"[\""Wireless Mouse\""]",929.62,"{\"": \""20%\""}",120912,0,"""Africa""" +2024-07-11,5169,5759,"[\""Headphones\"", \""Keyboard\""]",2753.38,"{\""seasonal\"": \""13%\""}",230413,0,"""Europe""" +2023-01-18,5170,9552,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3909.09,"{\"": \""8%\""}",25065,1,"""Europe""" +2023-06-08,5171,5275,"[\""Phone\"", \""Tablet\""]",3199.65,"{\""loyalty\"": \""29%\""}",119593,1,"""Africa""" +2024-04-13,5172,7900,"[\""Headphones\"", \""Wireless Mouse\""]",4334.33,"{\""seasonal\"": \""9%\""}",202428,0,"""Europe""" +2023-12-02,5173,1707,"[\""Monitor\"", \""Keyboard\""]",493.83,{},92178,0,"""Asia""" +2023-12-06,5174,6800,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2908.24,"{\""seasonal\"": \""23%\""}",183765,0,"""Europe""" +2023-05-22,5175,8728,"[\""Keyboard\""]",1809.24,"{\""seasonal\"": \""27%\""}",43887,0,"""South America""" +2023-07-18,5176,6608,"[\""Headphones\""]",1884.17,{},129519,0,"""Asia""" +2023-08-06,5177,556,"[\""Keyboard\""]",129.35,{},12312,1,"""North America""" +2024-01-31,5178,3440,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",504.85,"{\""seasonal\"": \""8%\""}",135199,0,"""Asia""" +2023-07-16,5179,7699,"[\""Monitor\"", \""Tablet\""]",2963.65,{},251156,0,"""South America""" +2023-02-11,5180,346,"[\""Tablet\"", \""Keyboard\""]",909.81,{},225180,0,"""South America""" +2023-04-09,5181,3615,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4653.56,{},185350,1,"""Europe""" +2024-12-14,5182,3612,"[\""Tablet\""]",4903.68,"{\"": \""27%\""}",252082,0,"""Africa""" +2023-08-04,5183,2196,"[\""Wireless Mouse\""]",1716.97,"{\""loyalty\"": \""19%\""}",57149,1,"""Europe""" +2024-07-02,5184,9816,"[\""Keyboard\""]",4320.44,{},225187,1,"""Asia""" +2023-01-06,5185,4057,"[\""Keyboard\""]",4971.19,{},180007,1,"""South America""" +2024-03-08,5186,4940,"[\""Tablet\""]",4880.15,{},163592,1,"""Europe""" +2023-02-28,5187,5653,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",717.2,{},111575,0,"""Asia""" +2024-11-16,5188,4108,"[\""Phone\"", \""Charger\""]",3008.35,"{\""seasonal\"": \""9%\""}",128902,0,"""South America""" +2023-07-23,5189,1060,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1764.03,{},196638,1,"""Africa""" +2023-12-07,5190,5274,"[\""Charger\"", \""Phone\""]",1623.0,"{\"": \""14%\""}",265251,1,"""Africa""" +2024-05-27,5191,5231,"[\""Keyboard\"", \""Monitor\""]",406.0,{},16252,0,"""Africa""" +2023-11-08,5192,8608,"[\""Charger\""]",3187.79,{},45125,1,"""Africa""" +2023-08-02,5193,5186,"[\""Charger\""]",1449.96,{},78049,0,"""Asia""" +2023-10-08,5194,3550,"[\""Wireless Mouse\""]",1545.77,"{\""seasonal\"": \""8%\""}",168246,1,"""Asia""" +2024-01-01,5195,6339,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2058.38,"{\"": \""24%\""}",298573,1,"""Africa""" +2024-09-11,5196,9117,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3546.65,{},154725,1,"""Africa""" +2024-12-16,5197,5425,"[\""Charger\""]",844.24,"{\""loyalty\"": \""16%\""}",31069,0,"""Africa""" +2024-10-05,5198,4677,"[\""Laptop\""]",3556.25,"{\""seasonal\"": \""14%\""}",228630,1,"""Europe""" +2023-07-21,5199,1829,"[\""Charger\"", \""Monitor\""]",1648.0,"{\""seasonal\"": \""25%\""}",163981,1,"""Asia""" +2024-07-12,5200,2960,"[\""Keyboard\"", \""Phone\""]",2373.49,{},131036,1,"""South America""" +2024-06-26,5201,6764,"[\""Laptop\"", \""Wireless Mouse\""]",1137.21,"{\""seasonal\"": \""19%\""}",185472,0,"""North America""" +2023-02-06,5202,1621,"[\""Charger\"", \""Tablet\""]",911.37,"{\""promo\"": \""29%\""}",117787,0,"""Asia""" +2023-07-12,5203,6204,"[\""Monitor\""]",210.01,{},4983,0,"""Africa""" +2023-10-14,5204,6526,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4469.66,"{\""promo\"": \""17%\""}",111663,1,"""North America""" +2024-07-23,5205,2206,"[\""Monitor\"", \""Headphones\""]",3946.97,{},278951,0,"""North America""" +2024-05-31,5206,2675,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1388.76,{},181539,0,"""South America""" +2023-12-18,5207,5807,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3188.97,"{\""promo\"": \""11%\""}",16558,0,"""Europe""" +2023-12-06,5208,5858,"[\""Tablet\"", \""Keyboard\""]",2773.62,{},56575,1,"""Asia""" +2023-06-11,5209,7342,"[\""Monitor\"", \""Charger\""]",4039.56,"{\""seasonal\"": \""24%\""}",3431,0,"""Africa""" +2024-10-15,5210,7785,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",968.88,{},166794,0,"""North America""" +2024-09-16,5211,6419,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",392.2,{},217649,1,"""Asia""" +2023-01-28,5212,2610,"[\""Tablet\"", \""Monitor\""]",1075.57,{},62653,1,"""North America""" +2023-04-28,5213,897,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2614.2,"{\""promo\"": \""16%\""}",164569,1,"""North America""" +2023-06-11,5214,4606,"[\""Charger\"", \""Wireless Mouse\""]",4068.67,"{\""loyalty\"": \""6%\""}",269334,0,"""Europe""" +2024-01-04,5215,4693,"[\""Monitor\""]",4207.1,"{\""loyalty\"": \""16%\""}",174534,1,"""South America""" +2023-07-06,5216,5182,"[\""Charger\"", \""Phone\""]",3653.86,"{\""promo\"": \""15%\""}",60932,1,"""Asia""" +2024-10-02,5217,4135,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4305.12,{},2160,0,"""North America""" +2024-03-07,5218,8932,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3191.12,{},231258,0,"""Asia""" +2023-10-27,5219,3699,"[\""Charger\""]",4617.69,{},175395,0,"""Africa""" +2024-03-04,5220,7749,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3907.25,"{\""seasonal\"": \""21%\""}",141589,0,"""Europe""" +2024-09-26,5221,3503,"[\""Laptop\""]",4763.71,"{\""seasonal\"": \""9%\""}",105395,0,"""Asia""" +2024-08-01,5222,9661,"[\""Headphones\""]",426.94,{},164047,0,"""Africa""" +2023-12-02,5223,9738,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",552.43,{},49936,0,"""South America""" +2024-10-09,5224,3403,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2979.54,{},260293,1,"""Asia""" +2024-02-21,5225,3042,"[\""Laptop\"", \""Phone\""]",2034.13,{},74977,0,"""Asia""" +2024-06-08,5226,4312,"[\""Laptop\""]",3055.75,"{\""loyalty\"": \""15%\""}",51136,1,"""Europe""" +2024-06-16,5227,3372,"[\""Laptop\"", \""Charger\""]",1972.77,{},188653,1,"""South America""" +2024-11-24,5228,259,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1246.58,"{\""seasonal\"": \""27%\""}",3470,1,"""Europe""" +2024-05-15,5229,71,"[\""Tablet\"", \""Headphones\""]",4937.07,{},91080,1,"""Asia""" +2023-11-22,5230,2361,"[\""Wireless Mouse\""]",2775.22,{},235148,0,"""South America""" +2024-06-26,5231,389,"[\""Tablet\"", \""Phone\""]",71.26,"{\""loyalty\"": \""30%\""}",42465,0,"""Europe""" +2024-09-02,5232,3688,"[\""Phone\""]",938.54,{},286455,0,"""South America""" +2024-07-11,5233,8419,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4649.16,{},59183,1,"""Africa""" +2023-12-24,5234,8791,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1771.12,"{\""seasonal\"": \""21%\""}",243372,1,"""Asia""" +2024-09-05,5235,6499,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3964.13,{},15837,1,"""Europe""" +2024-10-06,5236,6850,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",797.49,"{\""loyalty\"": \""21%\""}",87514,1,"""Africa""" +2023-08-19,5237,3136,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",711.35,{},121569,0,"""South America""" +2023-05-28,5238,9148,"[\""Keyboard\""]",295.44,"{\""promo\"": \""26%\""}",215686,1,"""Asia""" +2023-06-12,5239,4136,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",668.88,{},196288,1,"""South America""" +2024-01-13,5240,1362,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4190.9,"{\""promo\"": \""21%\""}",176065,1,"""North America""" +2024-09-30,5241,528,"[\""Laptop\"", \""Headphones\""]",1487.62,"{\""promo\"": \""5%\""}",273401,1,"""South America""" +2023-02-03,5242,9540,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4439.99,{},125032,0,"""Europe""" +2023-10-11,5243,8974,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3460.34,{},198507,1,"""North America""" +2023-04-28,5244,8942,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2658.54,"{\""loyalty\"": \""28%\""}",109767,0,"""North America""" +2023-05-22,5245,2003,"[\""Keyboard\"", \""Wireless Mouse\""]",1115.28,{},149322,0,"""South America""" +2024-09-12,5246,7986,"[\""Monitor\""]",3054.42,"{\""seasonal\"": \""8%\""}",19514,1,"""Europe""" +2024-11-22,5247,2996,"[\""Charger\"", \""Headphones\""]",3155.78,"{\"": \""8%\""}",37133,1,"""South America""" +2023-02-26,5248,6025,"[\""Laptop\"", \""Wireless Mouse\""]",4959.98,{},167770,0,"""North America""" +2023-10-30,5249,6258,"[\""Headphones\""]",1845.09,"{\""promo\"": \""20%\""}",57096,0,"""South America""" +2024-07-02,5250,7764,"[\""Laptop\""]",3311.84,"{\""promo\"": \""28%\""}",108204,0,"""Africa""" +2023-10-26,5251,673,"[\""Monitor\"", \""Keyboard\""]",4634.47,{},140652,1,"""North America""" +2023-11-14,5252,3566,"[\""Tablet\"", \""Monitor\""]",4478.62,{},12090,1,"""Europe""" +2023-09-01,5253,739,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",214.81,{},228810,1,"""Asia""" +2023-04-11,5254,4402,"[\""Phone\""]",1035.61,{},169262,0,"""Europe""" +2023-06-19,5255,7349,"[\""Monitor\""]",4977.33,{},261378,0,"""Asia""" +2024-11-04,5256,8316,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3134.93,{},296567,0,"""Asia""" +2024-08-05,5257,9129,"[\""Wireless Mouse\"", \""Headphones\""]",903.13,"{\"": \""23%\""}",28693,1,"""Asia""" +2023-02-08,5258,6427,"[\""Tablet\"", \""Keyboard\""]",2169.18,"{\""promo\"": \""23%\""}",210559,1,"""Africa""" +2023-08-27,5259,4518,"[\""Headphones\""]",2351.84,{},74543,0,"""Asia""" +2024-06-17,5260,4562,"[\""Wireless Mouse\"", \""Charger\""]",2952.55,{},186230,0,"""Africa""" +2024-05-22,5261,4331,"[\""Phone\""]",3609.6,{},67395,0,"""Europe""" +2024-01-16,5262,9624,"[\""Laptop\"", \""Monitor\""]",1499.99,"{\""promo\"": \""17%\""}",110683,0,"""South America""" +2023-02-17,5263,5001,"[\""Monitor\""]",3888.06,"{\""loyalty\"": \""18%\""}",86036,0,"""Europe""" +2024-04-12,5264,1062,"[\""Wireless Mouse\""]",4099.08,"{\""loyalty\"": \""17%\""}",157161,1,"""Asia""" +2023-07-06,5265,225,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2964.74,"{\""seasonal\"": \""7%\""}",171979,0,"""North America""" +2024-08-26,5266,2678,"[\""Phone\""]",1754.99,{},240498,1,"""North America""" +2023-12-27,5267,2495,"[\""Phone\"", \""Wireless Mouse\""]",1505.66,"{\""promo\"": \""17%\""}",89753,1,"""Europe""" +2023-03-23,5268,8697,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1868.76,{},268293,1,"""Africa""" +2023-02-01,5269,1539,"[\""Keyboard\""]",3191.28,"{\""seasonal\"": \""7%\""}",98695,1,"""Asia""" +2023-09-17,5270,263,"[\""Tablet\"", \""Laptop\""]",2999.01,{},56973,1,"""Europe""" +2023-07-12,5271,5363,"[\""Wireless Mouse\""]",1778.59,{},175230,1,"""South America""" +2024-06-19,5272,6625,"[\""Phone\""]",461.3,"{\""seasonal\"": \""27%\""}",112810,0,"""North America""" +2024-10-23,5273,3623,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3716.66,"{\"": \""29%\""}",48580,0,"""Europe""" +2023-03-23,5274,4233,"[\""Tablet\""]",2239.53,"{\""seasonal\"": \""23%\""}",209149,0,"""Europe""" +2024-08-13,5275,9170,"[\""Monitor\""]",3733.09,"{\""promo\"": \""28%\""}",106187,0,"""Africa""" +2024-06-15,5276,4644,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3133.46,"{\""seasonal\"": \""14%\""}",271677,0,"""North America""" +2024-07-26,5277,5527,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4139.8,"{\""loyalty\"": \""27%\""}",247899,1,"""Asia""" +2024-11-14,5278,1416,"[\""Laptop\""]",4360.23,{},193431,0,"""North America""" +2024-08-22,5279,8870,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2451.78,"{\""seasonal\"": \""13%\""}",145158,1,"""Asia""" +2024-02-02,5280,2999,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1479.39,{},231416,0,"""Europe""" +2024-12-18,5281,3679,"[\""Phone\""]",3361.76,"{\"": \""21%\""}",142240,0,"""Europe""" +2023-05-21,5282,889,"[\""Tablet\"", \""Wireless Mouse\""]",4213.23,{},17825,1,"""Asia""" +2024-05-20,5283,1603,"[\""Charger\"", \""Wireless Mouse\""]",2206.24,"{\""loyalty\"": \""30%\""}",34118,1,"""South America""" +2024-11-04,5284,4882,"[\""Charger\"", \""Tablet\""]",3936.02,{},227977,1,"""Africa""" +2024-09-11,5285,2615,"[\""Charger\"", \""Laptop\""]",1035.25,"{\""seasonal\"": \""28%\""}",2661,0,"""Africa""" +2024-09-21,5286,4634,"[\""Monitor\""]",3695.8,"{\""loyalty\"": \""22%\""}",196699,0,"""South America""" +2024-12-08,5287,3978,"[\""Monitor\"", \""Tablet\""]",3300.18,"{\""promo\"": \""12%\""}",187591,0,"""North America""" +2024-10-27,5288,7411,"[\""Charger\""]",1070.29,{},105160,1,"""North America""" +2023-10-11,5289,7315,"[\""Charger\"", \""Tablet\""]",3480.46,"{\""promo\"": \""26%\""}",112827,0,"""Africa""" +2024-07-08,5290,3795,"[\""Headphones\"", \""Keyboard\""]",66.61,{},201848,1,"""Africa""" +2023-01-15,5291,1713,"[\""Keyboard\""]",4750.43,{},224810,1,"""Asia""" +2024-05-16,5292,2098,"[\""Phone\"", \""Laptop\"", \""Charger\""]",635.12,{},218819,0,"""North America""" +2023-11-04,5293,1275,"[\""Wireless Mouse\"", \""Laptop\""]",3356.06,"{\""seasonal\"": \""20%\""}",38717,0,"""Asia""" +2024-02-29,5294,2713,"[\""Tablet\"", \""Headphones\""]",1860.83,"{\""loyalty\"": \""24%\""}",266562,1,"""Asia""" +2024-12-06,5295,549,"[\""Wireless Mouse\"", \""Laptop\""]",1899.2,{},290525,1,"""South America""" +2024-09-09,5296,6536,"[\""Keyboard\""]",4933.7,"{\""promo\"": \""26%\""}",133081,1,"""Africa""" +2024-07-14,5297,2249,"[\""Laptop\""]",2886.46,{},251614,0,"""Africa""" +2024-06-05,5298,2515,"[\""Charger\"", \""Monitor\"", \""Phone\""]",102.53,"{\""loyalty\"": \""13%\""}",246655,0,"""Asia""" +2024-08-22,5299,2147,"[\""Laptop\""]",3605.69,{},61546,0,"""Asia""" +2023-12-15,5300,7506,"[\""Headphones\"", \""Keyboard\""]",734.94,{},117687,0,"""Europe""" +2024-11-14,5301,6571,"[\""Charger\"", \""Tablet\""]",4639.85,{},261908,1,"""Asia""" +2024-09-13,5302,438,"[\""Phone\""]",1127.46,"{\"": \""28%\""}",257645,1,"""Asia""" +2024-07-21,5303,3006,"[\""Headphones\"", \""Charger\""]",3973.82,{},271766,0,"""South America""" +2024-05-09,5304,3105,"[\""Phone\""]",4830.2,{},3313,0,"""Africa""" +2024-06-09,5305,7710,"[\""Wireless Mouse\"", \""Tablet\""]",2467.7,{},235777,1,"""South America""" +2023-12-30,5306,9910,"[\""Wireless Mouse\""]",4593.62,{},177720,1,"""Africa""" +2024-03-06,5307,8348,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4011.9,"{\"": \""7%\""}",183264,0,"""Asia""" +2024-11-22,5308,8124,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2205.94,"{\"": \""14%\""}",183009,1,"""North America""" +2023-06-11,5309,7143,"[\""Wireless Mouse\""]",2983.37,"{\""seasonal\"": \""10%\""}",140864,0,"""North America""" +2023-04-06,5310,7645,"[\""Wireless Mouse\""]",3994.55,{},5529,0,"""South America""" +2023-06-21,5311,5379,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2270.05,{},79733,1,"""Africa""" +2023-03-29,5312,8785,"[\""Headphones\""]",2447.36,{},130137,1,"""Asia""" +2023-01-08,5313,4109,"[\""Headphones\""]",1168.76,"{\"": \""22%\""}",212612,1,"""North America""" +2023-07-31,5314,8750,"[\""Tablet\"", \""Wireless Mouse\""]",1155.03,{},53999,0,"""Africa""" +2024-07-02,5315,8666,"[\""Charger\""]",2599.64,"{\""loyalty\"": \""28%\""}",170931,0,"""Africa""" +2024-08-05,5316,5409,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",615.77,{},61568,0,"""Africa""" +2024-05-28,5317,4016,"[\""Wireless Mouse\""]",880.69,{},222546,0,"""Asia""" +2023-06-09,5318,7784,"[\""Keyboard\""]",1824.06,{},113660,0,"""North America""" +2024-09-04,5319,7817,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4587.95,{},169289,0,"""South America""" +2024-06-01,5320,8808,"[\""Wireless Mouse\"", \""Headphones\""]",3202.48,{},154866,0,"""Africa""" +2024-09-26,5321,5170,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4100.0,"{\""promo\"": \""19%\""}",157255,1,"""South America""" +2024-09-12,5322,5288,"[\""Headphones\""]",76.7,{},254417,1,"""South America""" +2023-02-12,5323,9267,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2636.59,"{\"": \""5%\""}",237566,1,"""Europe""" +2024-03-13,5324,4525,"[\""Keyboard\""]",785.18,{},147411,0,"""Asia""" +2024-06-04,5325,8824,"[\""Headphones\"", \""Tablet\""]",2568.13,{},90779,1,"""South America""" +2024-03-17,5326,4515,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3691.06,"{\"": \""17%\""}",96243,1,"""South America""" +2023-08-24,5327,383,"[\""Charger\""]",171.09,{},210766,1,"""Europe""" +2023-12-12,5328,2798,"[\""Tablet\""]",2811.11,{},207704,1,"""South America""" +2024-10-27,5329,4657,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3668.92,{},157299,0,"""North America""" +2023-06-26,5330,9235,"[\""Charger\""]",1250.3,{},77459,1,"""Europe""" +2023-02-02,5331,4608,"[\""Headphones\"", \""Wireless Mouse\""]",2857.74,"{\"": \""20%\""}",181740,1,"""Africa""" +2023-05-06,5332,4514,"[\""Charger\"", \""Tablet\""]",4033.38,{},248578,1,"""Asia""" +2023-06-01,5333,9417,"[\""Tablet\""]",1056.15,"{\"": \""12%\""}",157213,1,"""South America""" +2023-02-17,5334,628,"[\""Monitor\""]",3347.25,{},152090,1,"""South America""" +2023-02-17,5335,2222,"[\""Monitor\"", \""Charger\""]",4102.44,{},101606,0,"""South America""" +2023-08-26,5336,6722,"[\""Laptop\"", \""Monitor\""]",3629.3,{},96363,0,"""Asia""" +2024-01-31,5337,4089,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2549.93,"{\""seasonal\"": \""13%\""}",6178,1,"""North America""" +2024-12-07,5338,2212,"[\""Tablet\""]",4875.56,"{\""promo\"": \""16%\""}",191734,1,"""Africa""" +2023-12-15,5339,2436,"[\""Monitor\"", \""Tablet\""]",4473.07,"{\""promo\"": \""30%\""}",237602,1,"""Asia""" +2024-12-25,5340,2236,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",146.26,{},31610,0,"""Europe""" +2024-03-12,5341,5709,"[\""Wireless Mouse\"", \""Tablet\""]",4981.57,{},33150,1,"""Africa""" +2024-12-22,5342,9530,"[\""Keyboard\""]",713.61,"{\""seasonal\"": \""9%\""}",107592,0,"""South America""" +2024-08-12,5343,2974,"[\""Keyboard\"", \""Monitor\""]",2949.84,{},129442,1,"""Africa""" +2024-02-03,5344,6629,"[\""Charger\""]",4532.51,{},191056,1,"""South America""" +2024-11-21,5345,8650,"[\""Tablet\"", \""Keyboard\""]",169.82,"{\"": \""14%\""}",164768,0,"""Africa""" +2024-05-08,5346,6658,"[\""Phone\"", \""Tablet\""]",306.48,"{\""loyalty\"": \""7%\""}",96505,0,"""Africa""" +2023-05-31,5347,3268,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",652.93,"{\""seasonal\"": \""25%\""}",10233,1,"""Asia""" +2024-09-14,5348,8040,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",284.47,"{\"": \""20%\""}",10114,0,"""Africa""" +2023-11-12,5349,8720,"[\""Laptop\""]",4866.54,{},166098,0,"""Asia""" +2024-08-29,5350,3790,"[\""Phone\""]",2943.82,{},56316,1,"""Europe""" +2023-09-12,5351,4380,"[\""Keyboard\""]",1787.84,{},28757,0,"""South America""" +2023-11-23,5352,815,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1476.33,"{\"": \""11%\""}",12175,1,"""Europe""" +2024-03-16,5353,2492,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2831.53,"{\""promo\"": \""28%\""}",191581,0,"""Asia""" +2023-09-18,5354,2355,"[\""Phone\"", \""Laptop\""]",954.58,"{\""loyalty\"": \""19%\""}",221802,0,"""Asia""" +2023-04-03,5355,6457,"[\""Headphones\""]",4848.2,"{\""loyalty\"": \""20%\""}",13227,1,"""North America""" +2024-02-16,5356,9007,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2252.79,{},44364,1,"""Asia""" +2024-12-23,5357,2761,"[\""Laptop\"", \""Phone\""]",890.61,{},166851,0,"""South America""" +2023-06-27,5358,4588,"[\""Phone\""]",4232.67,"{\""seasonal\"": \""14%\""}",238226,1,"""North America""" +2023-06-19,5359,8700,"[\""Keyboard\"", \""Phone\""]",3747.64,{},39192,0,"""South America""" +2023-10-06,5360,9432,"[\""Wireless Mouse\"", \""Tablet\""]",3072.07,{},291389,0,"""Asia""" +2023-03-02,5361,298,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1106.22,"{\""seasonal\"": \""16%\""}",68765,0,"""Europe""" +2023-05-28,5362,951,"[\""Charger\""]",4002.5,"{\""loyalty\"": \""9%\""}",187756,1,"""South America""" +2023-08-01,5363,7758,"[\""Phone\""]",3503.82,{},285160,0,"""Africa""" +2024-05-30,5364,809,"[\""Keyboard\"", \""Laptop\""]",2209.27,"{\""loyalty\"": \""18%\""}",211055,0,"""Europe""" +2023-06-03,5365,5615,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4087.94,{},284651,1,"""Europe""" +2024-10-07,5366,9159,"[\""Wireless Mouse\"", \""Laptop\""]",4962.47,"{\""promo\"": \""17%\""}",268829,1,"""North America""" +2024-02-04,5367,2619,"[\""Monitor\"", \""Keyboard\""]",2059.77,"{\""seasonal\"": \""5%\""}",210279,0,"""Asia""" +2024-04-19,5368,148,"[\""Headphones\"", \""Keyboard\""]",2360.79,"{\""promo\"": \""17%\""}",15179,0,"""Europe""" +2024-08-11,5369,1256,"[\""Monitor\"", \""Wireless Mouse\""]",2308.57,{},193368,0,"""Asia""" +2023-03-29,5370,4127,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1576.79,"{\""promo\"": \""12%\""}",3773,0,"""Africa""" +2023-02-14,5371,5323,"[\""Tablet\""]",2795.13,"{\""promo\"": \""28%\""}",56814,0,"""Europe""" +2024-07-17,5372,3342,"[\""Headphones\"", \""Charger\""]",1725.13,"{\""seasonal\"": \""13%\""}",249188,1,"""Europe""" +2023-01-01,5373,1449,"[\""Headphones\""]",591.17,{},5789,1,"""South America""" +2023-06-23,5374,5137,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3657.67,{},284979,0,"""North America""" +2023-03-12,5375,1614,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3927.77,{},51212,1,"""Europe""" +2024-04-29,5376,8623,"[\""Keyboard\"", \""Monitor\""]",797.82,{},86158,0,"""Asia""" +2023-05-30,5377,6784,"[\""Phone\"", \""Tablet\""]",2443.01,{},102615,1,"""Europe""" +2023-03-14,5378,7486,"[\""Keyboard\""]",864.16,{},279962,0,"""Africa""" +2024-11-14,5379,486,"[\""Monitor\""]",1848.24,{},19895,1,"""Africa""" +2024-06-11,5380,8547,"[\""Monitor\"", \""Keyboard\""]",1336.24,{},113067,0,"""Europe""" +2023-10-03,5381,138,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1454.21,{},156256,1,"""South America""" +2023-03-24,5382,86,"[\""Phone\""]",2527.34,"{\""promo\"": \""14%\""}",65460,0,"""Asia""" +2023-02-22,5383,8965,"[\""Charger\""]",4850.05,"{\""seasonal\"": \""28%\""}",176904,0,"""North America""" +2024-03-30,5384,4378,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3187.92,{},52988,0,"""Asia""" +2024-05-17,5385,6085,"[\""Wireless Mouse\"", \""Monitor\""]",2391.7,{},17037,0,"""Asia""" +2024-12-04,5386,5469,"[\""Wireless Mouse\"", \""Keyboard\""]",1264.8,{},32688,0,"""Africa""" +2023-11-02,5387,9250,"[\""Phone\"", \""Charger\""]",2083.54,"{\""promo\"": \""25%\""}",225362,1,"""Asia""" +2023-06-26,5388,802,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2579.71,"{\""promo\"": \""24%\""}",198892,1,"""North America""" +2024-08-04,5389,6117,"[\""Laptop\""]",1474.44,{},177287,1,"""South America""" +2024-11-19,5390,167,"[\""Laptop\"", \""Tablet\""]",3824.82,{},119438,1,"""South America""" +2024-06-12,5391,3090,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",457.49,{},224944,0,"""Europe""" +2023-12-07,5392,3326,"[\""Charger\"", \""Wireless Mouse\""]",4304.8,{},29248,0,"""Asia""" +2024-03-08,5393,4697,"[\""Wireless Mouse\""]",1931.75,{},239342,0,"""Europe""" +2023-03-31,5394,7437,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",562.02,"{\""seasonal\"": \""27%\""}",139657,1,"""Asia""" +2023-04-20,5395,7314,"[\""Tablet\"", \""Wireless Mouse\""]",1190.41,"{\""seasonal\"": \""25%\""}",298286,1,"""Europe""" +2023-10-27,5396,9408,"[\""Keyboard\""]",4389.48,{},294962,1,"""Europe""" +2023-08-01,5397,911,"[\""Monitor\""]",2741.41,"{\""promo\"": \""20%\""}",59075,0,"""North America""" +2024-07-17,5398,5788,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1810.74,"{\""loyalty\"": \""11%\""}",205567,0,"""Asia""" +2024-03-02,5399,258,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4719.8,{},156518,1,"""Asia""" +2023-12-27,5400,1173,"[\""Keyboard\""]",3070.14,"{\""seasonal\"": \""10%\""}",159662,1,"""North America""" +2024-10-19,5401,5002,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",327.44,{},178842,1,"""Africa""" +2023-06-11,5402,4705,"[\""Charger\""]",4172.47,"{\""promo\"": \""28%\""}",213729,0,"""South America""" +2024-06-07,5403,9080,"[\""Phone\"", \""Laptop\""]",1949.76,{},125967,1,"""Africa""" +2023-04-02,5404,1176,"[\""Keyboard\"", \""Tablet\""]",3782.42,"{\"": \""17%\""}",94191,1,"""Africa""" +2024-09-12,5405,464,"[\""Monitor\"", \""Keyboard\""]",2835.66,"{\""promo\"": \""7%\""}",188484,0,"""Europe""" +2023-11-01,5406,901,"[\""Laptop\"", \""Tablet\""]",3559.71,"{\"": \""21%\""}",83602,1,"""Europe""" +2023-02-05,5407,9565,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3799.76,"{\""seasonal\"": \""24%\""}",166755,1,"""Africa""" +2024-02-07,5408,633,"[\""Phone\""]",3726.67,{},234099,1,"""South America""" +2024-03-22,5409,4675,"[\""Headphones\"", \""Keyboard\""]",3899.82,"{\""seasonal\"": \""10%\""}",243536,1,"""Africa""" +2024-12-27,5410,8130,"[\""Phone\""]",2691.27,"{\""promo\"": \""29%\""}",99168,1,"""Europe""" +2024-05-17,5411,9383,"[\""Keyboard\"", \""Laptop\""]",3381.62,"{\""seasonal\"": \""21%\""}",213731,1,"""North America""" +2023-02-09,5412,8283,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4803.35,{},288560,0,"""Africa""" +2023-01-11,5413,308,"[\""Wireless Mouse\"", \""Charger\""]",4217.65,"{\""loyalty\"": \""15%\""}",62532,0,"""South America""" +2024-12-26,5414,3175,"[\""Wireless Mouse\""]",1324.96,"{\""loyalty\"": \""24%\""}",113058,0,"""Africa""" +2023-03-28,5415,5098,"[\""Laptop\"", \""Monitor\""]",783.13,{},221789,0,"""Africa""" +2024-07-02,5416,1841,"[\""Wireless Mouse\""]",1897.68,{},79655,1,"""South America""" +2024-02-10,5417,650,"[\""Keyboard\""]",4925.0,"{\""seasonal\"": \""19%\""}",44883,0,"""North America""" +2023-11-04,5418,8879,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4912.49,"{\"": \""7%\""}",45231,0,"""South America""" +2024-11-22,5419,7992,"[\""Keyboard\""]",3495.28,"{\"": \""18%\""}",95158,0,"""Africa""" +2023-10-12,5420,8119,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4688.63,{},198817,1,"""Asia""" +2023-12-19,5421,1330,"[\""Tablet\"", \""Monitor\""]",429.2,{},298565,1,"""Asia""" +2023-03-18,5422,115,"[\""Headphones\""]",4258.03,"{\""loyalty\"": \""27%\""}",183400,1,"""South America""" +2024-02-22,5423,7626,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1916.76,{},116647,1,"""Europe""" +2023-03-03,5424,2219,"[\""Charger\"", \""Phone\""]",746.01,{},279104,0,"""South America""" +2024-02-20,5425,855,"[\""Headphones\"", \""Phone\""]",1376.19,"{\""promo\"": \""15%\""}",164904,0,"""North America""" +2023-02-21,5426,2144,"[\""Tablet\"", \""Phone\""]",2611.8,{},56280,1,"""Asia""" +2024-02-23,5427,4750,"[\""Tablet\""]",856.94,"{\""seasonal\"": \""24%\""}",80535,1,"""Africa""" +2024-05-28,5428,2108,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",659.1,"{\"": \""8%\""}",253465,0,"""North America""" +2023-12-19,5429,4904,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1872.9,{},164808,1,"""North America""" +2024-09-20,5430,1769,"[\""Headphones\""]",2960.23,{},149141,0,"""Africa""" +2023-09-26,5431,9248,"[\""Wireless Mouse\""]",3686.82,"{\"": \""13%\""}",227925,1,"""North America""" +2023-12-04,5432,6588,"[\""Headphones\"", \""Keyboard\""]",4052.14,{},227156,1,"""South America""" +2023-05-14,5433,8049,"[\""Phone\"", \""Monitor\""]",4815.45,"{\""promo\"": \""21%\""}",168471,0,"""Africa""" +2023-07-22,5434,7730,"[\""Wireless Mouse\""]",2124.68,{},29467,1,"""North America""" +2023-07-17,5435,6236,"[\""Charger\""]",2434.21,{},160182,0,"""North America""" +2023-05-03,5436,3189,"[\""Tablet\""]",3236.35,{},28455,0,"""South America""" +2023-06-21,5437,7640,"[\""Keyboard\"", \""Headphones\""]",573.49,"{\"": \""29%\""}",185302,1,"""Asia""" +2023-12-12,5438,5149,"[\""Headphones\""]",376.96,{},119300,1,"""Africa""" +2024-10-13,5439,2734,"[\""Charger\"", \""Tablet\""]",2647.41,{},10470,1,"""North America""" +2023-12-15,5440,2054,"[\""Charger\"", \""Monitor\""]",1206.1,"{\""loyalty\"": \""13%\""}",165945,1,"""North America""" +2023-03-25,5441,4378,"[\""Tablet\"", \""Wireless Mouse\""]",4914.38,"{\""seasonal\"": \""21%\""}",279374,1,"""North America""" +2023-07-15,5442,8273,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2562.42,"{\""promo\"": \""30%\""}",46547,1,"""South America""" +2024-05-29,5443,4409,"[\""Laptop\""]",1967.31,{},255544,0,"""Asia""" +2023-04-26,5444,815,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1891.25,{},166329,0,"""North America""" +2024-10-05,5445,7461,"[\""Keyboard\""]",4331.71,"{\""promo\"": \""5%\""}",88053,0,"""Asia""" +2024-09-13,5446,2226,"[\""Tablet\"", \""Phone\""]",4257.04,{},94512,1,"""Europe""" +2024-05-19,5447,917,"[\""Laptop\"", \""Wireless Mouse\""]",2418.47,{},120820,1,"""South America""" +2023-03-05,5448,3010,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3423.64,{},20132,0,"""Africa""" +2023-02-19,5449,2136,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3875.95,{},173943,1,"""Europe""" +2024-06-12,5450,5714,"[\""Keyboard\"", \""Phone\""]",3603.33,"{\"": \""19%\""}",82732,1,"""South America""" +2024-07-25,5451,7433,"[\""Headphones\"", \""Wireless Mouse\""]",2024.86,{},46149,1,"""South America""" +2023-10-07,5452,4471,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1642.17,"{\""loyalty\"": \""16%\""}",216785,1,"""Africa""" +2024-10-19,5453,9544,"[\""Charger\"", \""Wireless Mouse\""]",2924.39,{},146265,0,"""Europe""" +2024-06-04,5454,8959,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",782.06,{},211786,0,"""South America""" +2023-06-15,5455,6669,"[\""Laptop\""]",1682.37,{},141096,1,"""Europe""" +2024-10-10,5456,1217,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",358.24,{},242331,0,"""North America""" +2024-02-23,5457,6098,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4488.98,"{\""promo\"": \""11%\""}",278338,1,"""South America""" +2024-10-31,5458,4249,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",171.51,{},233711,1,"""Asia""" +2024-03-19,5459,6923,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1196.48,"{\""promo\"": \""7%\""}",228098,0,"""North America""" +2024-11-27,5460,863,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",244.86,{},118448,1,"""Africa""" +2023-08-28,5461,966,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3398.04,"{\""seasonal\"": \""28%\""}",294664,1,"""Africa""" +2023-07-08,5462,9074,"[\""Tablet\""]",4936.61,{},86924,0,"""North America""" +2024-05-13,5463,1749,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3265.74,{},75407,1,"""Asia""" +2024-02-07,5464,545,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4000.85,"{\""loyalty\"": \""26%\""}",290966,1,"""Asia""" +2023-06-17,5465,6101,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2436.55,{},62451,1,"""Africa""" +2024-06-15,5466,7692,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2427.79,"{\""seasonal\"": \""27%\""}",93525,1,"""Europe""" +2023-09-28,5467,2294,"[\""Charger\""]",2629.82,{},127683,0,"""Africa""" +2024-08-13,5468,1898,"[\""Laptop\""]",980.11,{},107882,1,"""Asia""" +2024-10-17,5469,1347,"[\""Keyboard\""]",1230.77,{},37260,0,"""Asia""" +2024-08-17,5470,945,"[\""Keyboard\"", \""Tablet\""]",1157.47,{},38735,1,"""Asia""" +2024-10-20,5471,2992,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4706.67,{},277606,0,"""South America""" +2023-09-02,5472,3949,"[\""Keyboard\"", \""Monitor\""]",233.81,"{\"": \""19%\""}",1113,0,"""Europe""" +2024-06-12,5473,109,"[\""Wireless Mouse\""]",3259.18,{},76203,0,"""Asia""" +2023-10-18,5474,3675,"[\""Phone\""]",4945.35,"{\""seasonal\"": \""29%\""}",10291,0,"""Africa""" +2024-04-30,5475,3532,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2720.21,"{\""promo\"": \""21%\""}",283840,1,"""Europe""" +2024-07-15,5476,5993,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3299.69,{},61771,1,"""South America""" +2023-08-18,5477,6910,"[\""Tablet\"", \""Laptop\""]",309.33,{},285854,0,"""Asia""" +2024-08-12,5478,188,"[\""Phone\"", \""Headphones\""]",176.45,"{\""seasonal\"": \""29%\""}",253124,1,"""South America""" +2023-02-08,5479,2784,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1199.04,"{\""loyalty\"": \""7%\""}",238870,1,"""North America""" +2024-09-09,5480,3688,"[\""Monitor\""]",640.24,"{\""loyalty\"": \""19%\""}",250462,1,"""Africa""" +2024-03-30,5481,826,"[\""Headphones\"", \""Wireless Mouse\""]",4322.22,{},267882,1,"""Europe""" +2023-10-13,5482,9585,"[\""Wireless Mouse\"", \""Keyboard\""]",748.36,{},22055,0,"""North America""" +2024-05-01,5483,9994,"[\""Headphones\""]",2306.61,{},94807,1,"""Europe""" +2024-03-06,5484,294,"[\""Monitor\"", \""Wireless Mouse\""]",1352.85,{},144421,0,"""South America""" +2023-04-08,5485,3823,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3175.8,{},237244,1,"""South America""" +2023-06-13,5486,162,"[\""Keyboard\"", \""Monitor\""]",3036.15,"{\""loyalty\"": \""19%\""}",182764,0,"""South America""" +2023-03-11,5487,1990,"[\""Wireless Mouse\""]",2151.49,"{\"": \""23%\""}",167642,1,"""Africa""" +2023-09-01,5488,1739,"[\""Headphones\"", \""Keyboard\""]",3744.38,{},266775,1,"""Europe""" +2024-03-18,5489,7865,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3456.99,"{\"": \""17%\""}",119541,1,"""Africa""" +2023-07-16,5490,8907,"[\""Charger\""]",866.25,"{\"": \""7%\""}",143802,1,"""Africa""" +2023-03-04,5491,3998,"[\""Monitor\"", \""Phone\""]",4063.87,{},110841,0,"""North America""" +2024-09-24,5492,2147,"[\""Monitor\""]",4685.91,{},119768,0,"""Asia""" +2023-05-07,5493,8481,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1418.69,{},64415,0,"""Africa""" +2024-06-14,5494,8864,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4832.92,"{\""seasonal\"": \""16%\""}",62667,1,"""North America""" +2024-11-02,5495,4,"[\""Monitor\"", \""Tablet\""]",2625.82,"{\""loyalty\"": \""25%\""}",260312,1,"""Asia""" +2023-12-06,5496,5085,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4106.2,"{\""seasonal\"": \""19%\""}",36100,1,"""Africa""" +2024-10-27,5497,1919,"[\""Wireless Mouse\""]",2911.56,{},163416,1,"""Asia""" +2023-01-19,5498,4671,"[\""Charger\"", \""Phone\""]",1306.87,"{\""loyalty\"": \""11%\""}",69510,0,"""South America""" +2023-01-22,5499,2348,"[\""Keyboard\"", \""Tablet\""]",4980.68,{},59696,1,"""Africa""" +2023-12-23,5500,894,"[\""Charger\""]",2578.35,{},296366,0,"""Africa""" +2024-04-21,5501,1712,"[\""Phone\""]",1732.27,{},283339,1,"""North America""" +2024-11-26,5502,8236,"[\""Tablet\""]",1615.48,{},160227,1,"""Africa""" +2023-11-11,5503,213,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2869.66,{},176680,1,"""Africa""" +2023-07-28,5504,6314,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",688.17,"{\""loyalty\"": \""25%\""}",268795,1,"""South America""" +2023-07-25,5505,3345,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3204.7,"{\"": \""11%\""}",25958,1,"""Asia""" +2024-01-27,5506,7174,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4053.77,{},208822,1,"""Europe""" +2024-08-15,5507,7645,"[\""Phone\""]",3564.63,"{\""promo\"": \""10%\""}",128185,0,"""North America""" +2024-03-22,5508,3012,"[\""Monitor\""]",1101.52,{},231453,1,"""Europe""" +2024-09-01,5509,9367,"[\""Charger\"", \""Laptop\""]",1266.75,{},22523,0,"""North America""" +2024-06-05,5510,8499,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3600.38,"{\""seasonal\"": \""24%\""}",239489,1,"""North America""" +2024-11-11,5511,9402,"[\""Headphones\"", \""Phone\""]",1942.93,"{\"": \""25%\""}",272871,0,"""Asia""" +2023-10-09,5512,1922,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2721.16,{},190817,0,"""Africa""" +2023-01-04,5513,9411,"[\""Wireless Mouse\"", \""Charger\""]",1989.96,"{\""loyalty\"": \""23%\""}",6114,1,"""South America""" +2024-04-02,5514,3233,"[\""Charger\"", \""Tablet\""]",2030.84,{},109130,0,"""South America""" +2024-01-24,5515,270,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4509.02,{},154172,1,"""North America""" +2024-12-20,5516,9897,"[\""Charger\""]",4977.65,{},90560,1,"""South America""" +2023-09-07,5517,7506,"[\""Tablet\""]",4769.21,{},264413,1,"""Asia""" +2024-10-21,5518,598,"[\""Headphones\""]",171.87,{},102416,0,"""Europe""" +2024-04-20,5519,551,"[\""Headphones\""]",1194.83,{},195216,1,"""South America""" +2023-08-20,5520,4642,"[\""Laptop\""]",4083.93,{},153415,0,"""Europe""" +2024-01-09,5521,3611,"[\""Keyboard\"", \""Laptop\""]",3693.23,{},288452,0,"""Europe""" +2023-09-12,5522,9652,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",955.52,"{\""promo\"": \""22%\""}",60667,1,"""Asia""" +2023-01-28,5523,8389,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4730.22,"{\""loyalty\"": \""23%\""}",7159,0,"""Africa""" +2023-10-20,5524,6261,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4074.36,{},254114,0,"""Africa""" +2024-11-14,5525,8983,"[\""Wireless Mouse\"", \""Monitor\""]",4687.91,"{\""seasonal\"": \""5%\""}",248673,1,"""Asia""" +2024-11-19,5526,3515,"[\""Headphones\""]",2046.03,"{\""loyalty\"": \""17%\""}",278458,0,"""Europe""" +2024-01-16,5527,7402,"[\""Charger\"", \""Wireless Mouse\""]",4598.51,"{\""promo\"": \""24%\""}",60119,0,"""Europe""" +2023-05-13,5528,4927,"[\""Headphones\"", \""Tablet\""]",3736.86,{},63184,1,"""North America""" +2024-06-22,5529,2867,"[\""Laptop\"", \""Keyboard\""]",4344.63,"{\""seasonal\"": \""12%\""}",87586,0,"""Asia""" +2023-04-05,5530,9827,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2763.04,"{\""promo\"": \""6%\""}",197793,1,"""North America""" +2024-01-02,5531,4670,"[\""Headphones\""]",2235.53,"{\""seasonal\"": \""19%\""}",171674,0,"""Europe""" +2024-09-07,5532,2255,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",884.81,"{\""promo\"": \""13%\""}",207654,1,"""Asia""" +2024-10-22,5533,9558,"[\""Phone\"", \""Laptop\""]",2156.51,{},42166,1,"""Europe""" +2024-03-21,5534,8452,"[\""Monitor\"", \""Laptop\""]",1764.98,"{\""promo\"": \""23%\""}",111972,1,"""South America""" +2024-06-09,5535,4368,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",542.01,"{\""promo\"": \""16%\""}",131235,1,"""Africa""" +2024-07-30,5536,4794,"[\""Monitor\""]",200.57,{},53671,0,"""North America""" +2024-05-13,5537,7029,"[\""Wireless Mouse\"", \""Monitor\""]",4365.26,{},289556,1,"""South America""" +2023-11-23,5538,9780,"[\""Monitor\"", \""Charger\""]",1945.88,{},51024,1,"""North America""" +2023-01-07,5539,646,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4430.62,{},282555,0,"""Africa""" +2023-07-19,5540,9134,"[\""Phone\""]",3855.37,{},13503,1,"""South America""" +2024-09-05,5541,6808,"[\""Phone\"", \""Tablet\""]",3370.71,{},67994,0,"""Asia""" +2023-11-30,5542,9864,"[\""Charger\""]",3242.21,"{\""seasonal\"": \""14%\""}",230785,0,"""Africa""" +2024-01-12,5543,4290,"[\""Phone\""]",988.6,"{\""seasonal\"": \""24%\""}",248627,0,"""Europe""" +2023-12-07,5544,5319,"[\""Headphones\"", \""Tablet\""]",2118.76,"{\""seasonal\"": \""18%\""}",36585,1,"""Europe""" +2024-10-20,5545,6353,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",51.34,"{\"": \""17%\""}",118335,1,"""Europe""" +2024-04-20,5546,225,"[\""Keyboard\""]",942.41,{},71730,1,"""North America""" +2023-10-23,5547,933,"[\""Wireless Mouse\""]",2436.59,"{\""loyalty\"": \""7%\""}",10496,0,"""Europe""" +2023-06-01,5548,2164,"[\""Headphones\"", \""Tablet\""]",697.19,"{\""seasonal\"": \""21%\""}",256955,0,"""North America""" +2024-02-24,5549,4211,"[\""Phone\"", \""Laptop\""]",645.17,{},17675,0,"""Asia""" +2024-08-12,5550,7360,"[\""Tablet\"", \""Phone\""]",3574.36,"{\"": \""7%\""}",75501,1,"""North America""" +2023-09-19,5551,7820,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4602.39,"{\""seasonal\"": \""10%\""}",140105,0,"""Asia""" +2024-10-09,5552,5409,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4874.46,{},217695,0,"""South America""" +2024-06-22,5553,1661,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2395.76,"{\""loyalty\"": \""26%\""}",19940,1,"""Africa""" +2023-06-10,5554,7841,"[\""Laptop\"", \""Phone\""]",4656.35,{},56489,1,"""Africa""" +2023-08-22,5555,1844,"[\""Headphones\""]",1987.42,{},90085,1,"""Europe""" +2024-02-17,5556,4395,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4701.12,{},206232,1,"""Africa""" +2023-10-02,5557,3653,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3424.36,{},111225,1,"""Europe""" +2023-10-19,5558,7792,"[\""Charger\"", \""Tablet\""]",1311.81,"{\""loyalty\"": \""11%\""}",254326,1,"""South America""" +2023-12-18,5559,7789,"[\""Phone\""]",1584.92,"{\""loyalty\"": \""27%\""}",65682,1,"""Africa""" +2023-12-30,5560,1350,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4839.61,"{\""loyalty\"": \""19%\""}",147488,1,"""North America""" +2023-09-19,5561,6760,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3836.83,{},172121,1,"""Africa""" +2024-11-20,5562,4485,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",826.06,{},41813,1,"""North America""" +2023-10-16,5563,3755,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3061.81,"{\""loyalty\"": \""22%\""}",233682,1,"""North America""" +2023-04-08,5564,8679,"[\""Laptop\""]",2727.79,{},286006,1,"""North America""" +2023-02-25,5565,4803,"[\""Headphones\""]",1843.79,"{\"": \""23%\""}",253886,0,"""Europe""" +2024-12-14,5566,1867,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1344.95,"{\""promo\"": \""21%\""}",53087,1,"""South America""" +2024-01-20,5567,872,"[\""Headphones\""]",1109.58,"{\""seasonal\"": \""16%\""}",141614,0,"""Europe""" +2024-12-26,5568,5918,"[\""Monitor\""]",3609.13,{},6731,0,"""Asia""" +2024-02-04,5569,4373,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",444.69,"{\""seasonal\"": \""12%\""}",129354,1,"""North America""" +2024-01-19,5570,7947,"[\""Charger\"", \""Phone\""]",3104.48,{},284210,0,"""Asia""" +2023-09-08,5571,2752,"[\""Headphones\"", \""Wireless Mouse\""]",751.51,{},157841,1,"""North America""" +2023-05-04,5572,9206,"[\""Charger\"", \""Monitor\""]",1707.61,"{\""loyalty\"": \""16%\""}",165290,0,"""Africa""" +2024-06-21,5573,7835,"[\""Monitor\""]",117.16,{},232547,0,"""Asia""" +2023-08-23,5574,2348,"[\""Laptop\""]",4946.35,{},94358,0,"""Africa""" +2023-07-28,5575,8334,"[\""Tablet\"", \""Headphones\""]",1887.35,"{\""promo\"": \""21%\""}",214418,1,"""South America""" +2024-10-16,5576,1719,"[\""Monitor\""]",2866.7,{},125317,0,"""Europe""" +2023-11-26,5577,3960,"[\""Laptop\""]",2892.84,"{\"": \""25%\""}",204476,1,"""North America""" +2024-11-15,5578,8205,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",231.25,"{\""loyalty\"": \""15%\""}",151310,1,"""Africa""" +2023-09-04,5579,4528,"[\""Wireless Mouse\"", \""Monitor\""]",1550.9,{},6867,0,"""Africa""" +2023-04-13,5580,1003,"[\""Keyboard\"", \""Wireless Mouse\""]",2586.53,{},219251,0,"""Europe""" +2023-12-07,5581,5702,"[\""Monitor\"", \""Phone\""]",4140.36,{},77213,0,"""Africa""" +2023-04-09,5582,2935,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2867.09,"{\""loyalty\"": \""16%\""}",198828,1,"""Asia""" +2023-12-16,5583,8825,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",398.08,{},36889,0,"""North America""" +2023-09-08,5584,9694,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1417.7,{},248771,0,"""North America""" +2023-11-03,5585,8236,"[\""Charger\"", \""Monitor\""]",4603.61,"{\"": \""11%\""}",44905,0,"""Africa""" +2024-11-28,5586,3738,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2231.66,"{\""loyalty\"": \""23%\""}",23305,0,"""South America""" +2023-09-20,5587,9198,"[\""Tablet\""]",4778.67,"{\""promo\"": \""30%\""}",52008,0,"""Asia""" +2024-05-23,5588,899,"[\""Phone\"", \""Laptop\""]",3943.53,{},137039,1,"""Europe""" +2024-12-13,5589,8481,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2470.15,"{\"": \""14%\""}",248077,1,"""North America""" +2023-04-04,5590,2918,"[\""Wireless Mouse\"", \""Monitor\""]",2567.73,"{\"": \""19%\""}",215533,0,"""South America""" +2023-08-02,5591,172,"[\""Phone\""]",66.64,"{\""loyalty\"": \""30%\""}",215474,0,"""South America""" +2023-03-09,5592,4525,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2351.94,{},166940,0,"""Africa""" +2023-07-13,5593,8516,"[\""Keyboard\""]",3006.36,{},96320,1,"""Africa""" +2024-02-23,5594,8182,"[\""Keyboard\""]",3849.58,"{\""promo\"": \""11%\""}",136672,0,"""Africa""" +2024-10-01,5595,3436,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3875.11,"{\""loyalty\"": \""23%\""}",173542,1,"""Europe""" +2024-10-26,5596,4886,"[\""Tablet\""]",4264.44,{},114475,1,"""South America""" +2023-06-26,5597,4469,"[\""Charger\"", \""Headphones\""]",3471.37,"{\"": \""20%\""}",249897,0,"""Europe""" +2023-04-07,5598,6050,"[\""Wireless Mouse\""]",3297.88,{},236528,1,"""South America""" +2023-01-02,5599,9170,"[\""Monitor\""]",2828.14,"{\""loyalty\"": \""9%\""}",275882,1,"""Europe""" +2023-08-30,5600,6760,"[\""Headphones\"", \""Tablet\""]",1800.58,"{\"": \""5%\""}",227825,1,"""South America""" +2024-08-31,5601,6127,"[\""Laptop\"", \""Charger\""]",293.91,{},22701,1,"""South America""" +2023-07-22,5602,3656,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3296.9,"{\""loyalty\"": \""25%\""}",229230,0,"""North America""" +2024-07-28,5603,2456,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1135.89,"{\""promo\"": \""13%\""}",108118,1,"""South America""" +2023-11-18,5604,852,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4866.86,{},259937,0,"""Africa""" +2023-03-26,5605,1413,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1413.27,"{\""loyalty\"": \""17%\""}",176198,1,"""Africa""" +2024-03-24,5606,6415,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3843.85,"{\""loyalty\"": \""14%\""}",134979,0,"""Europe""" +2024-01-18,5607,7193,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3435.39,"{\""loyalty\"": \""22%\""}",132174,0,"""Asia""" +2023-04-14,5608,9897,"[\""Charger\""]",2334.24,{},76853,0,"""Asia""" +2023-09-16,5609,3895,"[\""Monitor\"", \""Phone\""]",3244.97,{},185637,0,"""Asia""" +2023-12-25,5610,1617,"[\""Laptop\"", \""Headphones\""]",1827.06,{},182848,0,"""Africa""" +2024-08-27,5611,6758,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",283.31,"{\"": \""6%\""}",86951,1,"""Africa""" +2024-05-08,5612,1070,"[\""Headphones\"", \""Monitor\""]",3549.91,{},211429,0,"""North America""" +2024-03-29,5613,730,"[\""Keyboard\""]",4327.59,{},207261,1,"""South America""" +2023-04-30,5614,1411,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3225.31,{},18361,1,"""South America""" +2023-08-02,5615,7888,"[\""Laptop\""]",4951.17,"{\"": \""25%\""}",293068,1,"""Asia""" +2024-09-22,5616,4580,"[\""Phone\"", \""Tablet\""]",4431.88,"{\""loyalty\"": \""12%\""}",132037,1,"""Europe""" +2023-12-19,5617,7103,"[\""Monitor\""]",789.64,{},239915,1,"""South America""" +2023-06-17,5618,2985,"[\""Laptop\"", \""Monitor\""]",1106.64,{},105432,1,"""Europe""" +2024-05-04,5619,7072,"[\""Keyboard\""]",913.99,{},292259,1,"""Asia""" +2023-12-17,5620,9376,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4859.49,"{\""promo\"": \""23%\""}",44744,0,"""South America""" +2023-01-10,5621,7832,"[\""Wireless Mouse\"", \""Laptop\""]",2014.5,{},279734,1,"""Africa""" +2024-10-08,5622,1189,"[\""Charger\"", \""Tablet\""]",2797.19,"{\"": \""12%\""}",117827,0,"""South America""" +2023-07-21,5623,7673,"[\""Laptop\"", \""Keyboard\""]",629.49,"{\"": \""20%\""}",34459,1,"""North America""" +2024-09-25,5624,204,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3140.38,"{\""seasonal\"": \""25%\""}",116761,1,"""Asia""" +2024-07-03,5625,2766,"[\""Monitor\"", \""Wireless Mouse\""]",2590.09,"{\""promo\"": \""13%\""}",237920,1,"""Europe""" +2024-08-13,5626,1634,"[\""Headphones\"", \""Tablet\""]",147.49,{},179500,1,"""Asia""" +2024-05-25,5627,1544,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2028.25,"{\""seasonal\"": \""10%\""}",138638,0,"""Europe""" +2024-09-04,5628,5020,"[\""Monitor\""]",420.35,{},129259,0,"""Asia""" +2023-04-12,5629,556,"[\""Keyboard\""]",1433.8,"{\""loyalty\"": \""16%\""}",291363,0,"""Asia""" +2023-08-29,5630,4450,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3666.14,{},249962,0,"""Africa""" +2023-07-24,5631,925,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4090.34,{},183107,0,"""Europe""" +2024-06-09,5632,1732,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1748.58,{},109401,0,"""Europe""" +2024-05-17,5633,2999,"[\""Monitor\"", \""Charger\""]",2506.01,"{\""promo\"": \""28%\""}",57097,1,"""South America""" +2024-01-11,5634,5680,"[\""Monitor\"", \""Keyboard\""]",4645.68,"{\"": \""14%\""}",66561,0,"""South America""" +2023-04-04,5635,2137,"[\""Keyboard\""]",4167.85,"{\"": \""21%\""}",94684,0,"""Africa""" +2023-10-04,5636,5839,"[\""Wireless Mouse\"", \""Laptop\""]",4095.67,{},12210,0,"""North America""" +2023-09-03,5637,7358,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4307.59,"{\""loyalty\"": \""29%\""}",261373,1,"""South America""" +2024-05-18,5638,6515,"[\""Monitor\"", \""Laptop\""]",2263.57,{},86873,1,"""North America""" +2024-07-14,5639,5548,"[\""Phone\"", \""Laptop\""]",3694.57,"{\""loyalty\"": \""28%\""}",41644,1,"""North America""" +2023-11-18,5640,8484,"[\""Tablet\"", \""Keyboard\""]",1539.28,"{\""promo\"": \""29%\""}",264560,0,"""North America""" +2023-08-30,5641,4145,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4497.37,{},261963,0,"""Europe""" +2023-06-17,5642,5471,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",145.3,"{\""seasonal\"": \""26%\""}",273231,1,"""Europe""" +2023-06-09,5643,4820,"[\""Wireless Mouse\""]",3125.07,{},61530,0,"""Asia""" +2024-07-01,5644,1049,"[\""Tablet\"", \""Charger\""]",347.21,{},150678,0,"""South America""" +2023-04-19,5645,3271,"[\""Phone\"", \""Headphones\""]",1366.09,"{\""promo\"": \""13%\""}",46624,1,"""South America""" +2024-10-31,5646,228,"[\""Monitor\"", \""Phone\""]",4966.37,"{\""loyalty\"": \""10%\""}",167813,1,"""Africa""" +2023-10-01,5647,5019,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3503.29,{},97261,1,"""Africa""" +2024-07-04,5648,9921,"[\""Laptop\"", \""Headphones\""]",4983.18,"{\"": \""27%\""}",121397,0,"""Asia""" +2024-03-07,5649,8027,"[\""Monitor\"", \""Phone\""]",4213.91,{},96999,0,"""North America""" +2024-06-13,5650,8436,"[\""Wireless Mouse\"", \""Phone\""]",3842.01,"{\""promo\"": \""22%\""}",269061,0,"""Asia""" +2024-10-02,5651,9541,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4281.5,"{\""loyalty\"": \""18%\""}",163805,0,"""Africa""" +2023-08-14,5652,1073,"[\""Charger\""]",108.67,"{\"": \""19%\""}",233929,1,"""Europe""" +2024-04-12,5653,3679,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3868.42,{},142908,1,"""South America""" +2023-11-09,5654,5379,"[\""Laptop\""]",3044.64,"{\"": \""28%\""}",119859,1,"""Africa""" +2024-07-10,5655,9047,"[\""Laptop\""]",754.62,{},257825,1,"""South America""" +2023-12-20,5656,9216,"[\""Charger\"", \""Headphones\""]",4696.33,"{\""promo\"": \""8%\""}",34893,0,"""Europe""" +2023-03-24,5657,5264,"[\""Tablet\"", \""Laptop\""]",2332.76,"{\""seasonal\"": \""14%\""}",259392,0,"""Africa""" +2024-07-19,5658,7988,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3972.31,"{\""seasonal\"": \""16%\""}",101354,0,"""South America""" +2024-10-21,5659,9140,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4597.81,"{\""promo\"": \""26%\""}",46674,0,"""North America""" +2024-04-23,5660,5282,"[\""Keyboard\"", \""Laptop\""]",234.65,"{\""promo\"": \""30%\""}",11805,0,"""Africa""" +2023-10-10,5661,7512,"[\""Wireless Mouse\""]",2186.75,{},162601,0,"""South America""" +2024-07-15,5662,3823,"[\""Tablet\""]",1281.13,{},189947,1,"""Europe""" +2023-01-17,5663,6817,"[\""Monitor\""]",2920.52,{},25919,1,"""Africa""" +2024-01-29,5664,8734,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",237.14,{},59651,0,"""North America""" +2023-05-29,5665,8648,"[\""Wireless Mouse\"", \""Monitor\""]",2737.54,"{\""seasonal\"": \""25%\""}",299151,0,"""North America""" +2023-11-26,5666,929,"[\""Laptop\"", \""Tablet\""]",2698.76,{},142061,0,"""North America""" +2024-02-10,5667,3112,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4220.83,{},141384,1,"""Europe""" +2024-11-29,5668,2345,"[\""Laptop\"", \""Keyboard\""]",3647.92,"{\""promo\"": \""18%\""}",239133,1,"""South America""" +2023-06-26,5669,3191,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1353.26,"{\""seasonal\"": \""26%\""}",138996,0,"""North America""" +2023-06-20,5670,658,"[\""Tablet\"", \""Phone\""]",3071.59,"{\""seasonal\"": \""21%\""}",37052,1,"""North America""" +2023-09-11,5671,3931,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4381.67,{},121335,0,"""South America""" +2023-07-11,5672,7222,"[\""Monitor\"", \""Charger\""]",1849.82,{},52986,0,"""Europe""" +2024-08-06,5673,822,"[\""Monitor\""]",4304.74,{},255843,0,"""Africa""" +2024-05-31,5674,2356,"[\""Laptop\"", \""Charger\""]",3791.15,{},115399,0,"""North America""" +2024-12-08,5675,6336,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",949.38,"{\"": \""8%\""}",35582,0,"""South America""" +2024-09-29,5676,6130,"[\""Wireless Mouse\"", \""Headphones\""]",3108.36,{},223803,1,"""Asia""" +2023-10-01,5677,8618,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3261.45,"{\""loyalty\"": \""9%\""}",71850,0,"""Asia""" +2023-12-28,5678,7446,"[\""Headphones\""]",2468.91,{},287021,0,"""Africa""" +2023-03-20,5679,8799,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",740.23,"{\""loyalty\"": \""25%\""}",291987,1,"""North America""" +2024-01-29,5680,3177,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1490.37,"{\""seasonal\"": \""5%\""}",247009,0,"""Africa""" +2023-12-16,5681,1403,"[\""Tablet\"", \""Charger\""]",2387.18,"{\""loyalty\"": \""24%\""}",134267,1,"""Europe""" +2024-10-02,5682,9899,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3906.7,"{\""promo\"": \""11%\""}",84022,0,"""Asia""" +2024-05-24,5683,1351,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1453.86,{},204008,1,"""Africa""" +2023-05-22,5684,2243,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3948.18,{},12011,0,"""South America""" +2023-01-18,5685,4787,"[\""Charger\""]",2379.96,"{\""loyalty\"": \""27%\""}",191657,1,"""North America""" +2024-08-15,5686,8220,"[\""Laptop\"", \""Headphones\""]",1462.22,{},59307,0,"""South America""" +2024-09-28,5687,2684,"[\""Headphones\""]",792.51,{},279264,1,"""Europe""" +2024-04-06,5688,6414,"[\""Headphones\"", \""Laptop\""]",1513.56,"{\""promo\"": \""25%\""}",99904,1,"""Europe""" +2023-04-19,5689,2490,"[\""Keyboard\""]",1854.29,{},50310,1,"""Europe""" +2024-10-08,5690,3458,"[\""Wireless Mouse\"", \""Tablet\""]",1128.08,{},35541,1,"""North America""" +2023-04-17,5691,2010,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",274.63,"{\""loyalty\"": \""11%\""}",241503,0,"""Africa""" +2023-12-07,5692,1086,"[\""Headphones\""]",808.79,"{\"": \""23%\""}",127434,0,"""Asia""" +2023-12-19,5693,5928,"[\""Keyboard\""]",3483.87,"{\"": \""10%\""}",5047,0,"""Europe""" +2023-12-10,5694,3299,"[\""Wireless Mouse\""]",2298.0,{},90623,0,"""South America""" +2024-01-06,5695,2131,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2849.88,"{\""seasonal\"": \""19%\""}",136993,1,"""North America""" +2023-03-09,5696,7082,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",354.28,{},285021,0,"""Asia""" +2023-12-19,5697,208,"[\""Wireless Mouse\"", \""Laptop\""]",1426.15,{},82369,1,"""South America""" +2023-07-07,5698,2307,"[\""Wireless Mouse\"", \""Headphones\""]",2240.02,{},18502,1,"""Africa""" +2023-06-29,5699,3786,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2893.63,{},10432,0,"""Asia""" +2023-07-11,5700,1851,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1064.62,"{\""loyalty\"": \""9%\""}",29079,1,"""Africa""" +2024-03-17,5701,970,"[\""Headphones\""]",3596.06,{},98527,0,"""North America""" +2023-07-14,5702,6053,"[\""Laptop\""]",981.32,"{\""loyalty\"": \""24%\""}",67425,1,"""South America""" +2024-06-03,5703,3198,"[\""Phone\""]",3318.62,"{\""seasonal\"": \""21%\""}",34570,0,"""North America""" +2023-02-15,5704,6961,"[\""Phone\""]",869.94,{},180004,1,"""Europe""" +2023-01-01,5705,3178,"[\""Laptop\"", \""Wireless Mouse\""]",3901.79,{},251807,0,"""South America""" +2024-02-18,5706,4313,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2695.57,{},173440,0,"""South America""" +2024-11-25,5707,7300,"[\""Wireless Mouse\"", \""Charger\""]",4086.85,"{\"": \""21%\""}",284942,0,"""South America""" +2023-09-09,5708,8380,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3147.11,"{\""seasonal\"": \""10%\""}",182317,0,"""South America""" +2024-09-30,5709,8978,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2116.69,"{\"": \""12%\""}",35670,1,"""Europe""" +2023-03-01,5710,9211,"[\""Charger\"", \""Laptop\""]",4307.45,"{\"": \""6%\""}",231404,1,"""North America""" +2023-08-16,5711,4532,"[\""Headphones\"", \""Laptop\""]",1512.24,"{\""loyalty\"": \""15%\""}",144955,1,"""South America""" +2023-11-24,5712,9945,"[\""Monitor\""]",4136.52,{},268432,1,"""Africa""" +2024-03-09,5713,2332,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2863.15,"{\""seasonal\"": \""24%\""}",35951,1,"""Asia""" +2024-03-22,5714,1947,"[\""Phone\""]",4588.43,"{\""promo\"": \""20%\""}",69667,0,"""South America""" +2023-12-06,5715,6625,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4676.29,"{\""loyalty\"": \""12%\""}",232619,1,"""North America""" +2023-05-04,5716,2026,"[\""Charger\"", \""Laptop\""]",318.71,"{\""seasonal\"": \""29%\""}",267710,1,"""Europe""" +2023-12-29,5717,4298,"[\""Charger\""]",1087.89,{},81965,1,"""South America""" +2023-07-02,5718,4049,"[\""Tablet\""]",3446.85,"{\""promo\"": \""5%\""}",219695,1,"""Africa""" +2023-02-25,5719,2880,"[\""Laptop\"", \""Tablet\""]",837.38,"{\""loyalty\"": \""19%\""}",44046,1,"""Asia""" +2023-01-19,5720,1246,"[\""Charger\"", \""Phone\""]",3606.24,"{\"": \""16%\""}",72545,1,"""Asia""" +2023-04-24,5721,5663,"[\""Monitor\""]",4419.44,"{\"": \""18%\""}",170580,1,"""North America""" +2023-03-13,5722,2071,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3904.6,{},19759,1,"""South America""" +2023-01-06,5723,2142,"[\""Monitor\""]",3452.87,{},241837,0,"""Europe""" +2023-05-27,5724,5110,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4948.97,"{\""seasonal\"": \""29%\""}",190665,1,"""Asia""" +2023-11-14,5725,9077,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",101.39,{},248038,1,"""Africa""" +2023-01-13,5726,4291,"[\""Tablet\""]",4633.61,"{\"": \""21%\""}",251754,0,"""Asia""" +2024-05-22,5727,3528,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",72.31,{},146788,0,"""South America""" +2023-04-29,5728,8165,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3447.85,{},209977,0,"""South America""" +2024-07-08,5729,581,"[\""Headphones\"", \""Phone\""]",4739.61,"{\""loyalty\"": \""27%\""}",10557,0,"""Africa""" +2024-01-23,5730,6830,"[\""Headphones\""]",1875.34,{},262439,1,"""Europe""" +2023-07-12,5731,4300,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2302.11,{},26036,1,"""North America""" +2023-08-13,5732,101,"[\""Wireless Mouse\"", \""Headphones\""]",647.08,"{\""seasonal\"": \""12%\""}",116518,1,"""Asia""" +2024-08-31,5733,7342,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1586.46,"{\""loyalty\"": \""25%\""}",287879,1,"""North America""" +2023-04-11,5734,1631,"[\""Tablet\""]",3017.41,"{\""seasonal\"": \""28%\""}",65460,1,"""South America""" +2023-07-15,5735,8824,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3485.08,{},44809,1,"""South America""" +2023-12-26,5736,2113,"[\""Keyboard\"", \""Laptop\""]",4423.83,"{\""loyalty\"": \""20%\""}",48575,0,"""South America""" +2024-10-29,5737,3206,"[\""Laptop\"", \""Tablet\""]",502.4,"{\""loyalty\"": \""30%\""}",111589,0,"""South America""" +2023-11-30,5738,2882,"[\""Monitor\""]",1692.66,"{\""promo\"": \""27%\""}",216188,1,"""North America""" +2024-09-30,5739,3095,"[\""Phone\""]",3588.51,"{\"": \""14%\""}",23971,0,"""Europe""" +2024-11-17,5740,5060,"[\""Wireless Mouse\""]",4025.59,{},31047,0,"""Africa""" +2024-01-07,5741,2023,"[\""Phone\""]",4261.3,{},131848,0,"""Europe""" +2024-01-23,5742,2064,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1259.8,"{\"": \""20%\""}",201026,1,"""North America""" +2024-02-14,5743,669,"[\""Wireless Mouse\""]",1686.0,"{\""promo\"": \""24%\""}",17806,1,"""Europe""" +2023-04-20,5744,1528,"[\""Charger\""]",2295.77,{},181678,1,"""Asia""" +2024-02-02,5745,9727,"[\""Laptop\""]",1394.0,{},170785,0,"""Europe""" +2023-02-26,5746,3845,"[\""Wireless Mouse\""]",1759.41,{},46960,1,"""North America""" +2023-03-07,5747,31,"[\""Wireless Mouse\""]",1573.88,{},119265,1,"""Europe""" +2023-07-08,5748,4122,"[\""Headphones\""]",3500.27,{},285332,0,"""Africa""" +2023-12-06,5749,2362,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3839.49,"{\""promo\"": \""16%\""}",79283,1,"""Europe""" +2023-04-25,5750,2757,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1118.59,"{\""seasonal\"": \""23%\""}",85033,0,"""Africa""" +2024-06-21,5751,9246,"[\""Tablet\""]",1692.24,"{\""seasonal\"": \""24%\""}",283431,0,"""Africa""" +2024-01-15,5752,2396,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3180.7,"{\""promo\"": \""10%\""}",205489,0,"""Europe""" +2023-02-04,5753,791,"[\""Wireless Mouse\""]",2988.77,"{\""seasonal\"": \""12%\""}",294465,0,"""Asia""" +2024-08-09,5754,8181,"[\""Laptop\""]",1857.19,{},88559,1,"""Europe""" +2024-09-20,5755,6955,"[\""Wireless Mouse\""]",347.98,"{\"": \""16%\""}",96747,1,"""Asia""" +2023-07-11,5756,9479,"[\""Tablet\""]",3681.95,"{\""promo\"": \""23%\""}",185622,0,"""South America""" +2023-02-14,5757,6198,"[\""Phone\"", \""Keyboard\""]",1724.66,{},270536,0,"""North America""" +2024-02-26,5758,5031,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",806.41,"{\""seasonal\"": \""26%\""}",144752,0,"""North America""" +2024-12-07,5759,6112,"[\""Tablet\""]",4934.63,{},46163,0,"""Europe""" +2023-08-18,5760,2562,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2020.69,{},205570,1,"""Asia""" +2024-08-07,5761,3147,"[\""Keyboard\""]",1869.94,"{\"": \""22%\""}",38552,1,"""Europe""" +2024-06-20,5762,4905,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",399.08,"{\""promo\"": \""16%\""}",146491,0,"""Asia""" +2024-03-16,5763,8634,"[\""Laptop\"", \""Phone\""]",603.7,"{\""seasonal\"": \""26%\""}",188260,1,"""South America""" +2023-09-05,5764,6859,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",458.12,{},104127,1,"""North America""" +2024-07-21,5765,6074,"[\""Phone\""]",343.93,"{\"": \""22%\""}",96338,0,"""South America""" +2024-08-15,5766,4442,"[\""Phone\""]",4218.8,"{\""seasonal\"": \""30%\""}",56629,1,"""South America""" +2023-05-28,5767,8001,"[\""Phone\"", \""Monitor\""]",2798.56,"{\""loyalty\"": \""26%\""}",205460,1,"""Asia""" +2023-05-05,5768,5381,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",815.79,{},86391,0,"""South America""" +2023-08-28,5769,2917,"[\""Charger\""]",4274.63,"{\""loyalty\"": \""21%\""}",52836,0,"""Europe""" +2024-08-20,5770,799,"[\""Monitor\"", \""Keyboard\""]",3919.2,{},17501,1,"""Asia""" +2023-06-14,5771,1741,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4757.91,{},266372,0,"""South America""" +2023-06-26,5772,9576,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1361.86,{},94065,1,"""North America""" +2024-08-10,5773,7080,"[\""Monitor\""]",634.53,{},278568,1,"""South America""" +2024-05-10,5774,7375,"[\""Headphones\""]",4982.05,{},114099,0,"""Europe""" +2023-02-24,5775,2551,"[\""Tablet\""]",2144.13,"{\"": \""5%\""}",191741,0,"""Africa""" +2023-05-01,5776,1888,"[\""Charger\"", \""Monitor\""]",3607.09,"{\"": \""6%\""}",138054,0,"""Africa""" +2024-01-29,5777,6152,"[\""Phone\""]",551.81,{},42861,0,"""Europe""" +2024-12-05,5778,5155,"[\""Laptop\"", \""Keyboard\""]",273.7,"{\""seasonal\"": \""12%\""}",275003,1,"""South America""" +2023-06-21,5779,190,"[\""Phone\"", \""Charger\""]",1913.66,{},61405,0,"""North America""" +2023-08-02,5780,9511,"[\""Headphones\"", \""Keyboard\""]",3418.58,"{\""promo\"": \""11%\""}",110441,0,"""North America""" +2024-08-17,5781,8546,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2714.55,"{\""promo\"": \""11%\""}",69870,1,"""Asia""" +2024-01-01,5782,2421,"[\""Laptop\"", \""Monitor\""]",1929.05,{},42789,0,"""Asia""" +2024-04-26,5783,2268,"[\""Wireless Mouse\"", \""Tablet\""]",900.4,{},281395,0,"""Europe""" +2023-06-01,5784,6811,"[\""Monitor\""]",1453.64,"{\""loyalty\"": \""14%\""}",211143,1,"""Asia""" +2024-10-15,5785,8723,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4544.29,"{\""loyalty\"": \""8%\""}",10135,0,"""North America""" +2023-12-02,5786,4063,"[\""Wireless Mouse\""]",3476.93,{},181988,1,"""Europe""" +2023-06-18,5787,3267,"[\""Keyboard\""]",2722.88,"{\""seasonal\"": \""20%\""}",187695,0,"""North America""" +2024-06-08,5788,4797,"[\""Keyboard\""]",900.54,"{\""seasonal\"": \""20%\""}",283760,1,"""Europe""" +2024-05-17,5789,7877,"[\""Laptop\"", \""Tablet\""]",3333.68,"{\"": \""15%\""}",208072,1,"""South America""" +2023-08-11,5790,4826,"[\""Wireless Mouse\"", \""Monitor\""]",339.73,{},53302,0,"""Asia""" +2023-12-25,5791,3047,"[\""Phone\""]",4274.51,{},38956,0,"""Asia""" +2023-07-22,5792,7153,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4537.13,{},160994,1,"""Asia""" +2024-07-14,5793,9270,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2420.17,"{\""promo\"": \""12%\""}",220186,1,"""Africa""" +2023-12-11,5794,9858,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",698.3,"{\""loyalty\"": \""27%\""}",271634,1,"""Asia""" +2024-03-03,5795,6891,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1747.96,{},16454,1,"""Asia""" +2024-03-20,5796,1007,"[\""Phone\""]",1582.52,"{\""seasonal\"": \""5%\""}",253999,0,"""North America""" +2024-02-09,5797,9047,"[\""Wireless Mouse\"", \""Keyboard\""]",2439.4,{},120358,1,"""South America""" +2024-11-26,5798,3818,"[\""Keyboard\""]",4951.98,"{\""seasonal\"": \""29%\""}",238834,1,"""Europe""" +2023-09-11,5799,7841,"[\""Headphones\""]",3314.49,"{\"": \""15%\""}",188665,1,"""North America""" +2024-01-26,5800,7755,"[\""Tablet\"", \""Monitor\""]",3308.75,{},271854,0,"""South America""" +2023-12-10,5801,3154,"[\""Tablet\""]",1187.5,"{\""seasonal\"": \""29%\""}",118809,0,"""Europe""" +2024-01-02,5802,4309,"[\""Wireless Mouse\"", \""Charger\""]",2826.27,"{\""loyalty\"": \""24%\""}",208648,1,"""South America""" +2024-11-26,5803,1221,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1147.73,{},170153,1,"""South America""" +2023-02-01,5804,8279,"[\""Phone\""]",2144.24,{},113700,1,"""North America""" +2024-08-17,5805,8157,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3474.82,{},296787,1,"""South America""" +2024-10-26,5806,6829,"[\""Keyboard\"", \""Monitor\""]",4394.27,{},34255,0,"""Europe""" +2023-03-26,5807,6018,"[\""Charger\""]",3694.57,{},85485,0,"""Asia""" +2023-03-02,5808,4769,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3299.46,"{\"": \""30%\""}",61478,1,"""Europe""" +2024-07-20,5809,8936,"[\""Keyboard\""]",4885.71,{},266438,0,"""North America""" +2024-04-03,5810,224,"[\""Tablet\"", \""Headphones\""]",81.69,"{\""seasonal\"": \""13%\""}",21429,0,"""North America""" +2024-04-02,5811,360,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",691.34,"{\""seasonal\"": \""12%\""}",55309,0,"""Europe""" +2023-04-10,5812,8347,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",598.13,{},73142,1,"""Asia""" +2024-01-02,5813,1359,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1656.73,{},299435,1,"""Asia""" +2024-08-08,5814,4398,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1163.11,"{\""seasonal\"": \""27%\""}",121037,0,"""Africa""" +2023-09-20,5815,1356,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",101.78,"{\""loyalty\"": \""11%\""}",154958,1,"""North America""" +2023-07-24,5816,1940,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2656.78,"{\""loyalty\"": \""25%\""}",203816,0,"""Europe""" +2024-08-04,5817,6546,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",774.64,{},47390,0,"""South America""" +2023-12-13,5818,2825,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1917.18,{},138947,0,"""Africa""" +2023-07-24,5819,688,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1128.34,{},63644,1,"""Africa""" +2024-11-05,5820,4174,"[\""Phone\""]",3927.62,{},107676,0,"""Europe""" +2023-04-26,5821,2910,"[\""Headphones\"", \""Wireless Mouse\""]",1837.6,"{\""loyalty\"": \""10%\""}",103986,0,"""Africa""" +2023-06-01,5822,5488,"[\""Phone\""]",2328.77,{},172209,0,"""Europe""" +2023-12-24,5823,550,"[\""Tablet\"", \""Charger\""]",1277.67,{},102333,1,"""Europe""" +2024-11-15,5824,542,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3690.02,"{\""promo\"": \""27%\""}",248808,1,"""Asia""" +2024-10-06,5825,9123,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1215.17,"{\"": \""28%\""}",222808,1,"""Africa""" +2024-05-26,5826,1496,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4733.23,"{\""seasonal\"": \""18%\""}",19195,1,"""North America""" +2023-11-18,5827,5958,"[\""Wireless Mouse\"", \""Laptop\""]",1114.62,{},114071,0,"""Africa""" +2023-01-04,5828,9699,"[\""Keyboard\""]",2126.52,{},67318,0,"""Africa""" +2024-12-13,5829,5990,"[\""Headphones\""]",1854.7,"{\"": \""10%\""}",11952,0,"""South America""" +2023-02-10,5830,2850,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2316.86,{},162427,1,"""Asia""" +2023-06-20,5831,2851,"[\""Keyboard\"", \""Headphones\""]",4951.96,{},288806,0,"""Africa""" +2023-03-22,5832,5361,"[\""Charger\""]",650.09,"{\""promo\"": \""17%\""}",245687,0,"""South America""" +2024-11-15,5833,6378,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2445.49,{},162284,1,"""Asia""" +2023-09-15,5834,4218,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",245.54,{},145503,0,"""South America""" +2023-01-15,5835,7711,"[\""Charger\""]",4176.94,"{\""promo\"": \""6%\""}",148423,1,"""South America""" +2023-04-04,5836,971,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",562.86,"{\""promo\"": \""18%\""}",234650,1,"""South America""" +2023-12-22,5837,1055,"[\""Headphones\""]",2467.83,"{\""promo\"": \""24%\""}",190932,0,"""Europe""" +2024-03-10,5838,3053,"[\""Wireless Mouse\""]",1740.27,{},216725,1,"""Africa""" +2024-05-30,5839,4565,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4490.56,{},147036,0,"""Africa""" +2023-04-20,5840,8904,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2560.24,{},78440,0,"""Asia""" +2023-01-31,5841,2940,"[\""Wireless Mouse\""]",2651.52,"{\""promo\"": \""15%\""}",154876,0,"""Europe""" +2023-02-01,5842,9395,"[\""Phone\""]",1352.17,"{\""loyalty\"": \""7%\""}",210478,0,"""South America""" +2024-10-18,5843,2663,"[\""Wireless Mouse\""]",1665.21,{},103438,1,"""Africa""" +2024-07-23,5844,6840,"[\""Wireless Mouse\"", \""Keyboard\""]",3820.12,"{\""loyalty\"": \""19%\""}",182227,1,"""Europe""" +2024-11-24,5845,6373,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2318.81,"{\""seasonal\"": \""22%\""}",284356,0,"""North America""" +2024-07-22,5846,7751,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3602.6,"{\""promo\"": \""14%\""}",141319,1,"""Asia""" +2024-11-06,5847,5695,"[\""Headphones\"", \""Keyboard\""]",3562.78,{},63972,0,"""South America""" +2023-07-15,5848,8696,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1006.89,{},164948,0,"""South America""" +2023-05-30,5849,701,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3676.37,{},66352,0,"""North America""" +2024-01-30,5850,5248,"[\""Laptop\"", \""Phone\""]",387.67,"{\"": \""13%\""}",263385,1,"""North America""" +2023-11-15,5851,7089,"[\""Tablet\""]",3545.94,{},7961,0,"""Europe""" +2023-01-31,5852,411,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2606.64,"{\""seasonal\"": \""26%\""}",174210,0,"""Europe""" +2023-01-16,5853,9925,"[\""Charger\""]",2487.39,{},27900,0,"""North America""" +2024-07-12,5854,8362,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4493.13,"{\""seasonal\"": \""29%\""}",174170,0,"""South America""" +2024-06-04,5855,5785,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1443.89,{},46241,1,"""Europe""" +2023-07-23,5856,3451,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3962.71,"{\""promo\"": \""30%\""}",30390,1,"""Africa""" +2023-10-28,5857,1679,"[\""Keyboard\""]",1131.14,"{\"": \""8%\""}",103778,1,"""Asia""" +2024-07-21,5858,974,"[\""Tablet\""]",4507.44,{},233364,1,"""Asia""" +2023-06-02,5859,6296,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4323.43,{},237589,1,"""North America""" +2023-07-02,5860,8078,"[\""Charger\"", \""Wireless Mouse\""]",3959.88,"{\""loyalty\"": \""23%\""}",102221,0,"""South America""" +2023-07-29,5861,1192,"[\""Phone\""]",3782.32,"{\""loyalty\"": \""12%\""}",29474,0,"""South America""" +2024-02-05,5862,4446,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2430.22,{},148321,1,"""Europe""" +2024-11-23,5863,8801,"[\""Laptop\""]",289.49,{},220124,1,"""Europe""" +2024-06-18,5864,259,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3221.93,{},115350,0,"""Europe""" +2023-09-19,5865,9823,"[\""Charger\"", \""Headphones\""]",3961.7,{},179607,1,"""Europe""" +2023-12-03,5866,5086,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4193.82,"{\""loyalty\"": \""25%\""}",208904,0,"""North America""" +2024-03-29,5867,4233,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2975.11,"{\""loyalty\"": \""18%\""}",5635,1,"""Africa""" +2023-04-27,5868,2714,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4259.05,{},11305,0,"""Europe""" +2024-12-12,5869,437,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3968.5,{},84338,0,"""North America""" +2023-04-03,5870,8660,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",270.03,"{\""seasonal\"": \""29%\""}",110488,0,"""Africa""" +2024-06-26,5871,2284,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4640.03,"{\""loyalty\"": \""14%\""}",271641,1,"""Europe""" +2023-09-17,5872,6114,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1780.28,"{\"": \""26%\""}",266304,1,"""Africa""" +2023-04-06,5873,3492,"[\""Headphones\"", \""Laptop\""]",4405.02,{},101832,0,"""Asia""" +2023-12-19,5874,299,"[\""Laptop\""]",349.88,{},126309,1,"""North America""" +2024-08-25,5875,4320,"[\""Monitor\"", \""Charger\""]",133.98,"{\""loyalty\"": \""15%\""}",192386,1,"""Europe""" +2023-07-23,5876,8652,"[\""Tablet\""]",615.43,{},87313,0,"""Europe""" +2023-08-20,5877,2520,"[\""Headphones\""]",4263.62,"{\""loyalty\"": \""14%\""}",91531,1,"""North America""" +2024-03-23,5878,4963,"[\""Charger\"", \""Monitor\""]",3457.89,{},164325,0,"""Europe""" +2024-01-04,5879,5850,"[\""Keyboard\"", \""Tablet\""]",4913.7,{},11527,1,"""Africa""" +2024-02-18,5880,2508,"[\""Headphones\""]",4519.74,{},217318,0,"""Europe""" +2024-11-21,5881,8892,"[\""Keyboard\""]",4837.04,{},183561,0,"""Europe""" +2024-07-15,5882,2559,"[\""Charger\"", \""Tablet\""]",1713.17,{},114571,0,"""Europe""" +2024-04-25,5883,4178,"[\""Phone\"", \""Wireless Mouse\""]",4846.83,{},253791,1,"""Africa""" +2024-09-09,5884,1573,"[\""Wireless Mouse\""]",1420.35,"{\""seasonal\"": \""28%\""}",106917,1,"""North America""" +2024-01-09,5885,785,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1770.65,{},239544,1,"""North America""" +2024-08-25,5886,8867,"[\""Headphones\""]",696.13,"{\""seasonal\"": \""27%\""}",75334,1,"""Africa""" +2024-03-06,5887,4780,"[\""Keyboard\""]",4200.03,"{\""loyalty\"": \""28%\""}",278440,0,"""Europe""" +2024-07-14,5888,190,"[\""Wireless Mouse\"", \""Charger\""]",1022.44,{},120655,0,"""Asia""" +2024-12-30,5889,4821,"[\""Headphones\""]",1162.83,"{\""promo\"": \""10%\""}",59591,1,"""South America""" +2024-05-15,5890,9833,"[\""Headphones\""]",1267.11,{},65978,1,"""South America""" +2024-11-22,5891,2670,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2283.26,"{\""loyalty\"": \""29%\""}",167572,1,"""Asia""" +2024-05-19,5892,1655,"[\""Keyboard\""]",4226.81,{},160165,1,"""Europe""" +2024-02-02,5893,5624,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1311.91,"{\""seasonal\"": \""15%\""}",19404,0,"""North America""" +2024-04-22,5894,4489,"[\""Headphones\""]",3382.13,"{\""promo\"": \""9%\""}",260249,1,"""South America""" +2024-04-22,5895,8499,"[\""Tablet\""]",3058.03,"{\"": \""19%\""}",195641,0,"""Africa""" +2023-06-11,5896,8558,"[\""Wireless Mouse\""]",1002.01,"{\""seasonal\"": \""25%\""}",295958,0,"""Africa""" +2024-04-05,5897,4088,"[\""Monitor\""]",4139.45,{},33280,0,"""Asia""" +2023-09-09,5898,2493,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2156.61,"{\""promo\"": \""23%\""}",84734,1,"""Europe""" +2024-10-27,5899,9726,"[\""Monitor\""]",3455.33,{},27967,0,"""South America""" +2024-01-14,5900,7720,"[\""Charger\"", \""Monitor\""]",1556.38,"{\"": \""18%\""}",164347,0,"""Europe""" +2023-02-02,5901,6803,"[\""Charger\""]",1418.99,"{\""promo\"": \""21%\""}",194526,0,"""Europe""" +2024-06-15,5902,5797,"[\""Keyboard\""]",4138.16,{},174049,0,"""Asia""" +2023-10-27,5903,216,"[\""Keyboard\""]",4579.73,"{\""loyalty\"": \""9%\""}",59256,1,"""Asia""" +2024-08-07,5904,2410,"[\""Tablet\""]",1982.67,{},88323,1,"""Europe""" +2024-09-09,5905,5008,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1950.98,{},16418,1,"""South America""" +2024-07-05,5906,6607,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",405.0,"{\""loyalty\"": \""8%\""}",50668,0,"""Asia""" +2023-04-12,5907,6785,"[\""Tablet\""]",2493.92,{},204998,1,"""Europe""" +2024-05-11,5908,8111,"[\""Wireless Mouse\"", \""Charger\""]",476.97,{},133077,0,"""Europe""" +2023-03-12,5909,1784,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3610.89,{},297681,1,"""North America""" +2024-02-27,5910,4134,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3720.34,"{\"": \""11%\""}",219843,1,"""Europe""" +2024-07-18,5911,2955,"[\""Tablet\""]",2242.79,{},67887,0,"""North America""" +2023-10-20,5912,2354,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",664.02,"{\"": \""14%\""}",206057,1,"""South America""" +2023-02-18,5913,7491,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1610.06,"{\""loyalty\"": \""16%\""}",282777,1,"""Asia""" +2024-09-03,5914,6013,"[\""Monitor\"", \""Laptop\""]",517.31,"{\"": \""24%\""}",103629,1,"""Africa""" +2024-09-18,5915,8147,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",442.68,"{\"": \""22%\""}",63598,1,"""Africa""" +2024-01-20,5916,8179,"[\""Phone\""]",1414.88,{},240032,0,"""Africa""" +2024-03-19,5917,5637,"[\""Headphones\"", \""Wireless Mouse\""]",516.52,{},210742,0,"""South America""" +2023-01-16,5918,2778,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4946.5,{},50832,1,"""Asia""" +2024-11-14,5919,3296,"[\""Charger\""]",92.06,"{\"": \""18%\""}",253495,1,"""North America""" +2024-09-30,5920,6341,"[\""Phone\""]",3474.95,"{\""seasonal\"": \""7%\""}",63363,1,"""Europe""" +2023-01-24,5921,7429,"[\""Tablet\"", \""Charger\""]",3524.43,{},203608,0,"""Africa""" +2023-02-13,5922,8577,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2024.97,"{\""loyalty\"": \""27%\""}",175365,1,"""North America""" +2023-07-04,5923,1296,"[\""Headphones\"", \""Monitor\""]",1925.53,{},73823,1,"""Asia""" +2023-11-18,5924,2735,"[\""Laptop\""]",1041.97,"{\"": \""13%\""}",177081,1,"""Asia""" +2024-01-21,5925,388,"[\""Laptop\"", \""Charger\""]",174.84,"{\""loyalty\"": \""20%\""}",272878,0,"""North America""" +2023-11-12,5926,8558,"[\""Laptop\""]",1817.62,"{\""seasonal\"": \""12%\""}",113212,1,"""South America""" +2023-08-01,5927,7589,"[\""Tablet\""]",3248.79,{},283013,0,"""North America""" +2024-05-20,5928,9284,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",936.24,{},288352,1,"""South America""" +2023-04-06,5929,7373,"[\""Tablet\"", \""Monitor\""]",1070.8,"{\""seasonal\"": \""20%\""}",223792,0,"""Europe""" +2024-09-10,5930,6420,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2623.61,{},134425,1,"""North America""" +2024-11-02,5931,4872,"[\""Monitor\""]",1133.83,{},294258,1,"""Asia""" +2023-10-26,5932,2733,"[\""Charger\"", \""Keyboard\""]",3744.5,"{\""seasonal\"": \""23%\""}",262219,1,"""Asia""" +2023-08-17,5933,9575,"[\""Tablet\""]",1144.16,{},270494,0,"""South America""" +2024-11-27,5934,2175,"[\""Wireless Mouse\""]",1888.32,{},65001,1,"""Europe""" +2024-01-16,5935,6462,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4561.35,"{\"": \""24%\""}",155803,1,"""South America""" +2024-01-17,5936,1859,"[\""Wireless Mouse\""]",1694.24,{},17080,1,"""Europe""" +2024-07-06,5937,7849,"[\""Tablet\"", \""Headphones\""]",4414.05,{},282223,1,"""Africa""" +2024-07-26,5938,6774,"[\""Phone\"", \""Keyboard\""]",1931.04,"{\""seasonal\"": \""21%\""}",123642,1,"""Africa""" +2024-10-30,5939,6147,"[\""Laptop\"", \""Headphones\""]",4635.93,{},284394,1,"""Asia""" +2024-04-23,5940,8106,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3453.85,"{\"": \""17%\""}",225688,0,"""South America""" +2024-08-08,5941,8052,"[\""Phone\"", \""Wireless Mouse\""]",1461.69,{},32884,1,"""Europe""" +2023-03-31,5942,4577,"[\""Tablet\""]",1555.03,{},287075,1,"""South America""" +2024-12-21,5943,678,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1458.27,{},268016,1,"""Asia""" +2024-09-30,5944,7107,"[\""Charger\"", \""Monitor\""]",1465.41,{},22977,0,"""Asia""" +2024-07-13,5945,5190,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3281.74,"{\""promo\"": \""6%\""}",92822,1,"""Europe""" +2024-09-10,5946,2487,"[\""Phone\"", \""Keyboard\""]",3217.17,"{\"": \""10%\""}",92696,1,"""Africa""" +2024-11-10,5947,9092,"[\""Laptop\""]",1056.03,"{\""loyalty\"": \""6%\""}",53666,0,"""Asia""" +2024-09-13,5948,6179,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2837.42,"{\""seasonal\"": \""19%\""}",130433,1,"""North America""" +2023-11-09,5949,5355,"[\""Phone\""]",3739.06,"{\""seasonal\"": \""26%\""}",124678,1,"""North America""" +2024-08-05,5950,4781,"[\""Wireless Mouse\"", \""Tablet\""]",929.13,"{\""seasonal\"": \""16%\""}",272859,0,"""Asia""" +2023-09-21,5951,5220,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2108.26,{},214531,0,"""Africa""" +2024-02-11,5952,7149,"[\""Wireless Mouse\"", \""Laptop\""]",1178.24,"{\"": \""23%\""}",219007,1,"""North America""" +2023-11-09,5953,9978,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1199.87,"{\""promo\"": \""17%\""}",12979,1,"""Asia""" +2024-02-10,5954,4366,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4262.38,{},131954,0,"""South America""" +2024-08-09,5955,6900,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3095.92,{},89938,0,"""Africa""" +2024-03-15,5956,9856,"[\""Laptop\""]",1860.79,{},88248,1,"""North America""" +2024-07-20,5957,5239,"[\""Wireless Mouse\""]",1016.83,"{\""seasonal\"": \""16%\""}",166881,1,"""Africa""" +2023-03-06,5958,2975,"[\""Monitor\""]",4545.65,"{\""loyalty\"": \""27%\""}",27626,0,"""Europe""" +2024-01-04,5959,3044,"[\""Laptop\""]",246.17,"{\"": \""11%\""}",179867,1,"""Asia""" +2023-04-29,5960,9930,"[\""Tablet\""]",928.33,{},137662,1,"""Africa""" +2024-06-21,5961,3913,"[\""Monitor\"", \""Charger\""]",1023.13,{},61040,1,"""North America""" +2024-12-14,5962,2983,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1005.14,{},106314,0,"""Africa""" +2024-02-14,5963,8150,"[\""Phone\"", \""Laptop\""]",4309.01,"{\""loyalty\"": \""20%\""}",26052,0,"""Africa""" +2024-04-10,5964,3379,"[\""Charger\""]",1136.38,{},236389,1,"""South America""" +2024-12-30,5965,8435,"[\""Phone\""]",1537.75,"{\""loyalty\"": \""28%\""}",215264,0,"""Europe""" +2023-10-22,5966,3502,"[\""Monitor\""]",2276.88,"{\""promo\"": \""13%\""}",43841,1,"""Africa""" +2024-05-02,5967,3405,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3792.26,{},47225,1,"""North America""" +2024-11-15,5968,2398,"[\""Tablet\""]",4433.43,{},202462,0,"""North America""" +2023-09-13,5969,3171,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4509.51,"{\""loyalty\"": \""30%\""}",126408,0,"""Africa""" +2023-04-19,5970,5654,"[\""Phone\""]",4740.71,{},261292,1,"""South America""" +2023-06-08,5971,297,"[\""Tablet\""]",2821.37,{},42402,1,"""North America""" +2024-01-01,5972,3212,"[\""Keyboard\""]",166.28,"{\""seasonal\"": \""27%\""}",8559,1,"""South America""" +2024-05-22,5973,7419,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3192.79,{},281247,1,"""Asia""" +2024-03-14,5974,5362,"[\""Laptop\""]",211.1,{},123866,1,"""Asia""" +2023-03-19,5975,1644,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1696.17,"{\""seasonal\"": \""10%\""}",295295,0,"""South America""" +2024-02-07,5976,1653,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",936.01,"{\""promo\"": \""17%\""}",149839,0,"""Asia""" +2024-04-01,5977,1454,"[\""Headphones\"", \""Charger\""]",836.76,"{\""promo\"": \""22%\""}",78561,0,"""Africa""" +2023-02-13,5978,1589,"[\""Tablet\"", \""Headphones\""]",1122.29,"{\""loyalty\"": \""20%\""}",295942,0,"""Europe""" +2023-01-05,5979,9265,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2079.01,"{\""seasonal\"": \""20%\""}",234325,1,"""Africa""" +2023-11-30,5980,2182,"[\""Keyboard\"", \""Laptop\""]",791.68,{},292863,0,"""Africa""" +2024-02-24,5981,9902,"[\""Wireless Mouse\""]",2803.76,{},91460,1,"""North America""" +2023-12-20,5982,1491,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2696.28,"{\""promo\"": \""15%\""}",43581,0,"""North America""" +2024-05-06,5983,3548,"[\""Wireless Mouse\""]",2044.9,"{\"": \""24%\""}",176146,0,"""South America""" +2024-11-15,5984,9564,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1150.71,"{\""seasonal\"": \""24%\""}",264003,0,"""North America""" +2024-07-07,5985,7161,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1790.94,{},271389,1,"""Africa""" +2024-08-21,5986,2882,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3777.37,{},21242,0,"""Africa""" +2023-12-31,5987,5982,"[\""Monitor\"", \""Wireless Mouse\""]",1793.57,"{\"": \""11%\""}",277520,1,"""Europe""" +2024-08-01,5988,5832,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4820.56,"{\""seasonal\"": \""18%\""}",200959,0,"""Europe""" +2024-03-07,5989,8133,"[\""Tablet\"", \""Monitor\""]",2168.68,{},103387,1,"""Europe""" +2024-03-31,5990,9864,"[\""Headphones\""]",4277.14,{},130636,0,"""North America""" +2023-05-05,5991,3988,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",772.71,"{\""promo\"": \""7%\""}",51239,0,"""North America""" +2024-04-07,5992,5714,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1131.31,"{\""loyalty\"": \""15%\""}",224689,1,"""Europe""" +2023-04-03,5993,9999,"[\""Monitor\"", \""Charger\""]",1519.59,{},38471,1,"""South America""" +2024-05-12,5994,6953,"[\""Phone\"", \""Keyboard\""]",261.38,"{\""promo\"": \""23%\""}",20805,0,"""Europe""" +2023-12-09,5995,2677,"[\""Monitor\""]",2352.56,"{\""promo\"": \""27%\""}",6997,0,"""South America""" +2023-10-03,5996,7368,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1669.04,{},113205,1,"""Europe""" +2024-10-17,5997,65,"[\""Monitor\""]",4366.04,{},273144,0,"""Africa""" +2023-05-05,5998,8857,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3188.19,"{\""promo\"": \""6%\""}",154534,1,"""North America""" +2024-07-17,5999,1675,"[\""Headphones\""]",3901.23,"{\""seasonal\"": \""21%\""}",150051,0,"""South America""" +2023-01-16,6000,5655,"[\""Tablet\""]",1766.19,{},87867,1,"""Africa""" +2024-01-21,6001,1691,"[\""Phone\"", \""Tablet\""]",3320.15,"{\"": \""9%\""}",84104,0,"""South America""" +2024-10-04,6002,822,"[\""Phone\"", \""Monitor\""]",1283.77,"{\""loyalty\"": \""22%\""}",92087,0,"""Asia""" +2024-01-18,6003,8220,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4252.37,{},282367,1,"""Asia""" +2023-03-02,6004,6097,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1334.38,{},127548,1,"""North America""" +2024-10-13,6005,902,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1709.87,"{\""loyalty\"": \""16%\""}",11334,1,"""Europe""" +2023-05-02,6006,4411,"[\""Charger\""]",3778.14,{},197111,1,"""Africa""" +2023-08-11,6007,8036,"[\""Tablet\"", \""Charger\""]",2909.97,"{\""promo\"": \""14%\""}",105116,1,"""Africa""" +2024-05-02,6008,4610,"[\""Charger\""]",566.71,"{\""loyalty\"": \""5%\""}",12859,0,"""Asia""" +2023-10-06,6009,7595,"[\""Phone\""]",994.37,{},229721,1,"""North America""" +2024-10-07,6010,4990,"[\""Headphones\"", \""Keyboard\""]",1590.53,"{\""loyalty\"": \""16%\""}",90771,0,"""North America""" +2023-07-23,6011,4736,"[\""Headphones\"", \""Keyboard\""]",256.08,{},157306,1,"""South America""" +2024-05-29,6012,5959,"[\""Wireless Mouse\""]",4646.84,{},266898,0,"""Africa""" +2024-06-22,6013,5321,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",120.48,{},73139,0,"""North America""" +2024-05-04,6014,5462,"[\""Phone\""]",3202.38,{},44818,1,"""Asia""" +2023-08-25,6015,6413,"[\""Wireless Mouse\""]",296.55,"{\""promo\"": \""26%\""}",82178,1,"""Europe""" +2024-06-12,6016,4344,"[\""Headphones\"", \""Charger\""]",4158.65,"{\""loyalty\"": \""30%\""}",143348,0,"""Europe""" +2023-10-20,6017,3904,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3328.82,"{\""promo\"": \""7%\""}",74486,1,"""North America""" +2024-06-27,6018,5779,"[\""Charger\""]",3482.3,"{\""loyalty\"": \""30%\""}",110813,1,"""Africa""" +2024-08-16,6019,1736,"[\""Charger\""]",3684.66,"{\""seasonal\"": \""21%\""}",178222,0,"""South America""" +2023-05-11,6020,9394,"[\""Laptop\"", \""Headphones\""]",796.6,"{\""loyalty\"": \""22%\""}",115963,1,"""Africa""" +2023-02-04,6021,4224,"[\""Keyboard\""]",1774.26,"{\""seasonal\"": \""22%\""}",2377,0,"""North America""" +2023-10-31,6022,1551,"[\""Monitor\""]",2457.24,{},147882,1,"""Africa""" +2024-05-15,6023,5237,"[\""Wireless Mouse\"", \""Keyboard\""]",4289.72,{},12305,1,"""Europe""" +2023-03-07,6024,5828,"[\""Laptop\"", \""Tablet\""]",4846.82,{},95358,1,"""South America""" +2023-07-12,6025,917,"[\""Charger\"", \""Keyboard\""]",2606.36,{},30586,0,"""Europe""" +2024-12-19,6026,9308,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4203.95,{},170067,1,"""Africa""" +2024-06-11,6027,6232,"[\""Tablet\"", \""Wireless Mouse\""]",4544.03,"{\""promo\"": \""11%\""}",117125,0,"""Africa""" +2023-08-02,6028,7902,"[\""Headphones\"", \""Laptop\""]",590.36,{},259969,0,"""Asia""" +2024-11-28,6029,7810,"[\""Keyboard\""]",3758.04,{},36744,1,"""Europe""" +2023-10-01,6030,7508,"[\""Headphones\""]",4148.11,{},276330,1,"""Africa""" +2024-07-16,6031,6483,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4507.21,{},127750,0,"""Asia""" +2023-04-03,6032,8454,"[\""Keyboard\""]",4209.91,{},122795,1,"""North America""" +2024-10-20,6033,3540,"[\""Monitor\"", \""Laptop\""]",2820.97,{},158323,1,"""North America""" +2023-10-28,6034,4783,"[\""Headphones\""]",1324.75,{},239592,0,"""Europe""" +2024-06-02,6035,7619,"[\""Keyboard\"", \""Laptop\""]",393.76,"{\"": \""26%\""}",172844,0,"""Europe""" +2024-08-04,6036,100,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4472.92,{},91623,1,"""Asia""" +2023-10-20,6037,4440,"[\""Laptop\"", \""Monitor\""]",4145.52,{},88954,1,"""Europe""" +2023-08-03,6038,3806,"[\""Phone\""]",210.28,"{\"": \""29%\""}",191633,1,"""Europe""" +2023-12-29,6039,3521,"[\""Wireless Mouse\"", \""Charger\""]",3096.8,{},265226,0,"""South America""" +2024-05-11,6040,8156,"[\""Keyboard\""]",4594.55,"{\"": \""22%\""}",49736,0,"""South America""" +2023-09-17,6041,2422,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",663.17,"{\""seasonal\"": \""13%\""}",138608,1,"""Asia""" +2024-04-01,6042,1790,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1747.41,"{\""promo\"": \""13%\""}",102328,0,"""North America""" +2023-07-31,6043,2945,"[\""Keyboard\"", \""Headphones\""]",2379.75,{},67058,1,"""Europe""" +2023-07-05,6044,6116,"[\""Phone\"", \""Monitor\""]",1619.3,"{\"": \""10%\""}",248886,0,"""North America""" +2023-05-18,6045,3967,"[\""Headphones\"", \""Wireless Mouse\""]",4786.01,"{\""loyalty\"": \""13%\""}",224373,1,"""Asia""" +2023-06-14,6046,7325,"[\""Wireless Mouse\"", \""Keyboard\""]",159.56,{},54053,1,"""Europe""" +2024-09-15,6047,6626,"[\""Charger\""]",2160.47,"{\""seasonal\"": \""7%\""}",109941,1,"""Africa""" +2024-02-01,6048,9537,"[\""Monitor\""]",1115.05,"{\""loyalty\"": \""8%\""}",66901,0,"""South America""" +2024-06-25,6049,1444,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1609.0,"{\""promo\"": \""26%\""}",267408,1,"""Africa""" +2023-05-03,6050,2172,"[\""Charger\"", \""Wireless Mouse\""]",1029.64,"{\""promo\"": \""15%\""}",276093,1,"""Africa""" +2024-03-16,6051,1491,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",352.31,{},257071,1,"""Africa""" +2024-07-18,6052,8369,"[\""Phone\"", \""Headphones\""]",2024.18,{},265209,1,"""Africa""" +2023-09-14,6053,9979,"[\""Wireless Mouse\"", \""Headphones\""]",577.93,"{\""promo\"": \""20%\""}",213774,1,"""Africa""" +2023-05-31,6054,9734,"[\""Charger\""]",4115.57,{},292544,0,"""Europe""" +2023-12-17,6055,4132,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1555.94,{},213435,0,"""Europe""" +2024-06-28,6056,8493,"[\""Charger\""]",1269.63,"{\"": \""5%\""}",72257,0,"""South America""" +2023-07-09,6057,7228,"[\""Charger\"", \""Laptop\""]",911.81,{},295172,1,"""North America""" +2023-04-13,6058,8835,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4652.04,"{\""loyalty\"": \""10%\""}",68625,0,"""North America""" +2023-01-19,6059,789,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",737.12,"{\""promo\"": \""5%\""}",121199,0,"""South America""" +2023-12-08,6060,8658,"[\""Headphones\""]",3908.93,{},206868,0,"""North America""" +2023-06-28,6061,3899,"[\""Phone\"", \""Keyboard\""]",2097.77,{},6925,1,"""Europe""" +2024-05-06,6062,1963,"[\""Wireless Mouse\""]",3695.96,"{\""promo\"": \""10%\""}",106157,0,"""Asia""" +2023-03-02,6063,5415,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4848.47,"{\"": \""29%\""}",95297,0,"""South America""" +2023-10-16,6064,1802,"[\""Laptop\"", \""Phone\""]",229.61,{},109940,1,"""South America""" +2024-07-02,6065,8146,"[\""Phone\"", \""Headphones\""]",1128.33,{},121477,1,"""South America""" +2024-09-05,6066,3599,"[\""Phone\"", \""Monitor\""]",1382.65,{},223220,1,"""Asia""" +2023-12-06,6067,5720,"[\""Laptop\"", \""Tablet\""]",159.26,{},184292,0,"""North America""" +2024-12-13,6068,7640,"[\""Wireless Mouse\""]",2415.29,{},229083,1,"""Asia""" +2024-06-26,6069,3553,"[\""Wireless Mouse\"", \""Laptop\""]",3605.47,{},103566,0,"""South America""" +2023-03-30,6070,7270,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1980.37,"{\""promo\"": \""14%\""}",5945,1,"""South America""" +2023-03-19,6071,6093,"[\""Monitor\"", \""Phone\""]",1422.56,"{\""seasonal\"": \""14%\""}",152151,0,"""South America""" +2023-05-26,6072,7130,"[\""Wireless Mouse\"", \""Charger\""]",2453.61,"{\""seasonal\"": \""26%\""}",67574,1,"""North America""" +2024-09-01,6073,1074,"[\""Wireless Mouse\""]",1624.7,{},151469,1,"""Asia""" +2023-11-09,6074,398,"[\""Tablet\"", \""Phone\"", \""Charger\""]",801.43,{},247059,0,"""South America""" +2024-09-01,6075,4480,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2225.24,"{\"": \""28%\""}",242774,0,"""North America""" +2023-08-22,6076,5719,"[\""Headphones\"", \""Wireless Mouse\""]",4001.03,"{\""promo\"": \""28%\""}",196838,1,"""North America""" +2023-02-25,6077,2827,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3984.1,{},251992,1,"""Africa""" +2024-09-12,6078,511,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3128.49,{},1136,1,"""Asia""" +2023-10-03,6079,9069,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2725.23,"{\""promo\"": \""10%\""}",234104,0,"""South America""" +2023-05-22,6080,503,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3992.67,"{\""seasonal\"": \""6%\""}",267426,1,"""South America""" +2024-06-22,6081,9808,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4929.28,{},194640,0,"""Africa""" +2023-09-23,6082,5160,"[\""Keyboard\"", \""Monitor\""]",3728.68,"{\""seasonal\"": \""18%\""}",91879,1,"""South America""" +2023-11-04,6083,7091,"[\""Charger\"", \""Wireless Mouse\""]",587.33,"{\""seasonal\"": \""22%\""}",144995,0,"""South America""" +2024-10-26,6084,8218,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1119.84,{},48163,1,"""North America""" +2023-11-18,6085,7565,"[\""Keyboard\"", \""Tablet\""]",567.05,{},256830,1,"""Europe""" +2023-06-29,6086,610,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4059.31,{},90839,0,"""South America""" +2024-10-06,6087,4904,"[\""Laptop\"", \""Phone\""]",3637.92,"{\""loyalty\"": \""12%\""}",252752,0,"""South America""" +2024-09-20,6088,2222,"[\""Keyboard\""]",2178.07,"{\"": \""12%\""}",229003,0,"""South America""" +2024-04-30,6089,6287,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4747.8,"{\""seasonal\"": \""30%\""}",52460,0,"""South America""" +2023-01-15,6090,2509,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2751.98,{},216617,0,"""North America""" +2023-04-14,6091,5650,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4126.12,"{\""loyalty\"": \""11%\""}",228179,1,"""Africa""" +2024-09-01,6092,4612,"[\""Monitor\"", \""Laptop\""]",4361.8,"{\""loyalty\"": \""12%\""}",108833,0,"""Africa""" +2023-12-22,6093,6578,"[\""Monitor\""]",4189.78,"{\"": \""24%\""}",284181,1,"""Asia""" +2023-03-23,6094,5057,"[\""Charger\""]",4881.38,{},251741,1,"""South America""" +2024-03-28,6095,9789,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2588.34,"{\""seasonal\"": \""16%\""}",269160,0,"""Europe""" +2023-04-11,6096,9912,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1695.7,"{\"": \""18%\""}",10071,0,"""Africa""" +2024-04-05,6097,1694,"[\""Laptop\""]",1921.3,"{\""seasonal\"": \""15%\""}",55217,0,"""Europe""" +2023-08-26,6098,7605,"[\""Headphones\""]",2863.04,{},235986,0,"""Africa""" +2023-07-30,6099,7374,"[\""Keyboard\""]",1186.04,{},50146,1,"""North America""" +2024-05-06,6100,5661,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2231.26,"{\""promo\"": \""5%\""}",73996,1,"""Africa""" +2023-06-26,6101,8131,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4698.82,{},195787,1,"""Africa""" +2024-09-15,6102,5453,"[\""Monitor\"", \""Wireless Mouse\""]",127.53,"{\"": \""14%\""}",186624,1,"""North America""" +2024-12-11,6103,2117,"[\""Charger\"", \""Tablet\""]",2346.71,"{\""loyalty\"": \""9%\""}",41639,0,"""South America""" +2024-11-09,6104,8459,"[\""Keyboard\""]",294.99,"{\""promo\"": \""20%\""}",121885,0,"""Europe""" +2023-07-19,6105,782,"[\""Tablet\""]",163.68,{},266509,0,"""North America""" +2024-10-09,6106,7397,"[\""Laptop\"", \""Headphones\""]",1705.07,{},132462,0,"""South America""" +2023-04-09,6107,1736,"[\""Monitor\""]",1022.77,{},114466,1,"""North America""" +2023-12-29,6108,7121,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2212.35,{},218449,1,"""Africa""" +2024-05-20,6109,8268,"[\""Monitor\"", \""Charger\""]",422.12,{},152030,0,"""North America""" +2024-10-03,6110,7037,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4817.26,"{\"": \""20%\""}",277460,1,"""Africa""" +2023-12-14,6111,1881,"[\""Keyboard\""]",2517.81,"{\"": \""21%\""}",245598,0,"""South America""" +2024-09-04,6112,1945,"[\""Headphones\"", \""Monitor\""]",4560.88,"{\"": \""18%\""}",17740,0,"""North America""" +2024-05-12,6113,9360,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3410.38,"{\""seasonal\"": \""13%\""}",240264,1,"""Asia""" +2023-03-03,6114,8907,"[\""Headphones\"", \""Tablet\""]",217.85,"{\""loyalty\"": \""5%\""}",101912,1,"""Africa""" +2023-06-03,6115,3684,"[\""Tablet\""]",3578.59,"{\""loyalty\"": \""25%\""}",230194,0,"""South America""" +2023-04-23,6116,9406,"[\""Monitor\""]",2708.89,"{\""loyalty\"": \""7%\""}",22290,1,"""North America""" +2023-10-09,6117,2935,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3278.8,"{\""loyalty\"": \""14%\""}",237343,0,"""North America""" +2024-06-21,6118,7798,"[\""Tablet\"", \""Keyboard\""]",3542.57,{},260921,1,"""North America""" +2024-12-21,6119,1229,"[\""Keyboard\""]",3412.36,{},132863,0,"""Asia""" +2023-11-25,6120,354,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1590.59,{},149405,1,"""Asia""" +2023-07-20,6121,7826,"[\""Tablet\"", \""Wireless Mouse\""]",3145.33,{},200764,1,"""North America""" +2023-11-18,6122,9625,"[\""Tablet\""]",1361.05,"{\"": \""17%\""}",223738,0,"""Asia""" +2023-01-27,6123,4878,"[\""Wireless Mouse\"", \""Laptop\""]",278.13,{},57249,0,"""Europe""" +2023-01-09,6124,922,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",187.83,"{\""promo\"": \""6%\""}",208114,1,"""Asia""" +2024-11-16,6125,1735,"[\""Keyboard\"", \""Headphones\""]",3372.74,{},209341,1,"""Europe""" +2023-01-13,6126,9975,"[\""Wireless Mouse\""]",2560.19,{},29800,1,"""Africa""" +2024-03-19,6127,9074,"[\""Wireless Mouse\""]",4593.74,{},223347,0,"""North America""" +2023-06-28,6128,6340,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3105.0,"{\"": \""18%\""}",57830,1,"""Europe""" +2023-02-06,6129,2987,"[\""Keyboard\"", \""Headphones\""]",2629.53,{},241027,1,"""Europe""" +2023-02-19,6130,8701,"[\""Phone\""]",721.55,"{\"": \""17%\""}",278303,1,"""North America""" +2024-10-26,6131,9826,"[\""Phone\""]",2905.54,"{\""seasonal\"": \""27%\""}",135809,1,"""Europe""" +2023-08-10,6132,2739,"[\""Keyboard\""]",1480.85,"{\""seasonal\"": \""13%\""}",287966,1,"""Europe""" +2023-05-20,6133,3893,"[\""Wireless Mouse\""]",2570.45,{},7896,1,"""Asia""" +2023-01-26,6134,9583,"[\""Headphones\""]",708.58,{},190594,1,"""Asia""" +2024-05-07,6135,5254,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3259.68,"{\"": \""8%\""}",233058,1,"""Asia""" +2023-10-26,6136,3038,"[\""Laptop\""]",4604.81,"{\""seasonal\"": \""23%\""}",178394,0,"""Europe""" +2023-08-20,6137,9961,"[\""Laptop\""]",2310.43,{},41096,1,"""Asia""" +2024-12-23,6138,7536,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1035.92,{},235487,1,"""Europe""" +2023-12-31,6139,2946,"[\""Phone\""]",4260.82,{},53437,0,"""North America""" +2023-08-03,6140,2219,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3361.62,"{\"": \""25%\""}",145480,0,"""Europe""" +2024-09-13,6141,1685,"[\""Phone\"", \""Tablet\""]",2272.49,{},248463,0,"""Africa""" +2023-12-26,6142,9457,"[\""Headphones\"", \""Laptop\""]",3773.79,"{\""loyalty\"": \""27%\""}",27446,0,"""Asia""" +2023-11-18,6143,2288,"[\""Laptop\""]",3368.41,"{\""loyalty\"": \""11%\""}",21543,0,"""South America""" +2023-06-15,6144,6526,"[\""Phone\""]",4515.44,{},128184,0,"""North America""" +2023-02-10,6145,8241,"[\""Charger\"", \""Wireless Mouse\""]",2843.71,{},237153,1,"""North America""" +2024-04-26,6146,5201,"[\""Tablet\"", \""Monitor\""]",2703.44,{},57442,1,"""South America""" +2024-05-25,6147,5503,"[\""Monitor\""]",4617.79,{},20662,0,"""South America""" +2024-05-17,6148,7725,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3805.06,{},137453,0,"""North America""" +2024-12-31,6149,3841,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",793.04,"{\""seasonal\"": \""23%\""}",17760,1,"""Africa""" +2024-09-18,6150,547,"[\""Tablet\""]",1313.21,"{\""promo\"": \""15%\""}",172715,1,"""South America""" +2024-06-23,6151,8713,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4634.53,"{\""loyalty\"": \""13%\""}",76951,1,"""South America""" +2024-10-06,6152,5502,"[\""Phone\"", \""Laptop\""]",1572.34,{},80882,1,"""North America""" +2023-12-13,6153,4632,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3493.39,"{\""seasonal\"": \""12%\""}",219372,0,"""Europe""" +2023-05-25,6154,5574,"[\""Keyboard\"", \""Monitor\""]",410.48,{},116066,1,"""Africa""" +2024-04-05,6155,6722,"[\""Phone\""]",1845.95,"{\"": \""11%\""}",61078,0,"""South America""" +2023-05-23,6156,6461,"[\""Wireless Mouse\""]",4535.74,{},258932,0,"""South America""" +2024-01-19,6157,9388,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4555.75,{},80448,0,"""South America""" +2023-09-04,6158,3208,"[\""Charger\"", \""Monitor\""]",4378.1,{},246187,1,"""Asia""" +2024-10-11,6159,4488,"[\""Wireless Mouse\"", \""Laptop\""]",3874.49,{},162286,0,"""South America""" +2024-04-09,6160,7673,"[\""Monitor\"", \""Headphones\""]",1899.88,{},111705,1,"""Europe""" +2024-04-02,6161,3800,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1755.61,{},155152,0,"""North America""" +2023-01-12,6162,3803,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3396.75,{},6006,0,"""Africa""" +2023-11-09,6163,6601,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2276.3,"{\""seasonal\"": \""17%\""}",239691,1,"""Europe""" +2023-05-26,6164,9371,"[\""Wireless Mouse\"", \""Monitor\""]",1268.19,"{\""seasonal\"": \""9%\""}",216144,0,"""South America""" +2024-05-15,6165,2355,"[\""Charger\"", \""Headphones\""]",337.55,"{\""promo\"": \""8%\""}",61606,1,"""South America""" +2023-01-05,6166,4158,"[\""Tablet\"", \""Wireless Mouse\""]",2942.15,"{\""promo\"": \""13%\""}",66853,0,"""Africa""" +2023-05-29,6167,9940,"[\""Charger\""]",3145.62,"{\"": \""19%\""}",129013,1,"""South America""" +2024-05-25,6168,934,"[\""Phone\""]",2777.05,{},80167,0,"""South America""" +2024-07-31,6169,6558,"[\""Phone\"", \""Wireless Mouse\""]",3768.42,"{\""seasonal\"": \""29%\""}",192754,1,"""Africa""" +2024-05-14,6170,4181,"[\""Phone\"", \""Charger\""]",82.53,{},160381,1,"""Africa""" +2024-08-18,6171,7720,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",379.1,"{\""loyalty\"": \""19%\""}",112834,0,"""Africa""" +2024-07-01,6172,3119,"[\""Headphones\"", \""Tablet\""]",627.64,{},290721,0,"""Africa""" +2024-02-03,6173,2922,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3591.37,{},66380,0,"""Asia""" +2024-04-11,6174,5600,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1984.78,"{\""promo\"": \""29%\""}",42562,0,"""South America""" +2024-08-25,6175,200,"[\""Keyboard\"", \""Charger\""]",4525.5,"{\""loyalty\"": \""20%\""}",85198,1,"""Asia""" +2024-01-13,6176,5444,"[\""Headphones\""]",2439.14,{},280180,1,"""Africa""" +2024-03-12,6177,3712,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1886.11,"{\""seasonal\"": \""9%\""}",275785,1,"""North America""" +2024-10-11,6178,9235,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3820.01,{},150859,1,"""Asia""" +2023-06-25,6179,2525,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4230.73,{},67662,1,"""Asia""" +2023-11-26,6180,5443,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3839.58,"{\""promo\"": \""5%\""}",161234,1,"""North America""" +2023-05-17,6181,3131,"[\""Headphones\"", \""Monitor\""]",166.81,"{\""loyalty\"": \""15%\""}",74830,1,"""North America""" +2024-04-24,6182,7051,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",979.54,{},43243,1,"""Europe""" +2024-10-30,6183,5167,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3423.6,"{\""promo\"": \""15%\""}",13085,1,"""Europe""" +2023-09-11,6184,372,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2246.78,{},60663,0,"""Europe""" +2023-02-06,6185,3223,"[\""Monitor\"", \""Charger\""]",386.62,"{\"": \""30%\""}",227563,0,"""Europe""" +2024-11-18,6186,8084,"[\""Charger\"", \""Keyboard\""]",1327.37,{},95725,1,"""South America""" +2023-07-17,6187,2951,"[\""Headphones\""]",3393.75,"{\""loyalty\"": \""21%\""}",223744,1,"""Europe""" +2024-07-21,6188,7895,"[\""Phone\"", \""Headphones\""]",3484.77,{},231561,1,"""South America""" +2024-05-06,6189,34,"[\""Phone\"", \""Monitor\""]",1484.19,"{\""loyalty\"": \""16%\""}",125385,0,"""Europe""" +2024-07-26,6190,8791,"[\""Laptop\""]",3041.46,"{\"": \""28%\""}",136659,1,"""Asia""" +2023-12-19,6191,7043,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",567.97,{},263960,1,"""South America""" +2024-01-04,6192,6969,"[\""Charger\"", \""Tablet\""]",2752.63,"{\""seasonal\"": \""15%\""}",125199,1,"""Africa""" +2023-03-24,6193,9673,"[\""Keyboard\"", \""Charger\""]",375.68,{},29652,0,"""Asia""" +2023-10-25,6194,141,"[\""Tablet\""]",2911.17,{},16632,0,"""North America""" +2024-10-20,6195,3101,"[\""Tablet\"", \""Monitor\""]",1104.92,{},195883,1,"""North America""" +2023-07-13,6196,6279,"[\""Laptop\""]",197.97,"{\""seasonal\"": \""11%\""}",84120,1,"""South America""" +2023-04-19,6197,5258,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4668.92,{},140208,1,"""Asia""" +2023-04-16,6198,3818,"[\""Charger\""]",2666.16,"{\""loyalty\"": \""30%\""}",62491,1,"""Asia""" +2024-06-10,6199,4276,"[\""Wireless Mouse\""]",178.85,"{\""promo\"": \""29%\""}",78432,0,"""Africa""" +2023-10-30,6200,1,"[\""Charger\""]",3612.91,"{\""promo\"": \""11%\""}",230542,0,"""North America""" +2023-11-15,6201,3603,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4856.95,{},196751,1,"""South America""" +2024-03-09,6202,6925,"[\""Monitor\"", \""Tablet\""]",4440.56,{},170443,1,"""Africa""" +2023-10-27,6203,7941,"[\""Phone\""]",2793.28,{},113435,1,"""Asia""" +2024-01-13,6204,7756,"[\""Wireless Mouse\"", \""Headphones\""]",478.98,{},162009,1,"""Asia""" +2024-06-15,6205,9056,"[\""Charger\"", \""Phone\"", \""Headphones\""]",863.54,"{\"": \""16%\""}",92419,0,"""Europe""" +2023-11-06,6206,46,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1191.89,{},251059,1,"""Africa""" +2023-12-15,6207,9052,"[\""Phone\"", \""Laptop\""]",4361.16,"{\""seasonal\"": \""5%\""}",180304,0,"""Asia""" +2024-10-14,6208,6133,"[\""Charger\""]",3403.19,"{\"": \""14%\""}",204499,0,"""Asia""" +2023-06-26,6209,9032,"[\""Monitor\""]",99.89,{},269513,0,"""Europe""" +2024-05-18,6210,8660,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4390.02,"{\""seasonal\"": \""6%\""}",38872,0,"""Asia""" +2023-07-10,6211,5699,"[\""Tablet\"", \""Phone\""]",1550.28,"{\""seasonal\"": \""19%\""}",217520,0,"""Europe""" +2023-06-21,6212,7343,"[\""Monitor\""]",3661.66,"{\""seasonal\"": \""23%\""}",32989,1,"""Africa""" +2023-08-01,6213,2381,"[\""Phone\"", \""Charger\""]",3748.54,"{\""promo\"": \""29%\""}",128291,0,"""Europe""" +2023-07-26,6214,2828,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3030.0,"{\""promo\"": \""20%\""}",160395,0,"""North America""" +2023-06-04,6215,758,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1703.46,{},81141,1,"""Europe""" +2023-06-02,6216,9899,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3778.58,"{\"": \""23%\""}",49990,0,"""South America""" +2023-10-01,6217,7781,"[\""Laptop\"", \""Tablet\""]",4747.48,"{\""loyalty\"": \""30%\""}",275373,1,"""Europe""" +2024-01-03,6218,5390,"[\""Keyboard\"", \""Phone\""]",301.22,"{\""promo\"": \""8%\""}",263455,1,"""Africa""" +2023-09-14,6219,6403,"[\""Phone\"", \""Keyboard\""]",1127.25,"{\"": \""27%\""}",62924,1,"""Europe""" +2024-02-17,6220,6500,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3068.06,"{\"": \""15%\""}",94352,1,"""Asia""" +2023-11-05,6221,3902,"[\""Keyboard\"", \""Monitor\""]",2002.84,{},272609,0,"""Asia""" +2024-05-18,6222,7899,"[\""Charger\""]",3198.87,{},262802,1,"""Asia""" +2024-10-08,6223,4777,"[\""Monitor\"", \""Tablet\""]",2769.51,"{\""seasonal\"": \""21%\""}",69915,1,"""North America""" +2023-09-16,6224,9694,"[\""Monitor\"", \""Phone\""]",3126.53,{},123444,0,"""Africa""" +2024-07-30,6225,4750,"[\""Keyboard\""]",553.12,"{\""loyalty\"": \""7%\""}",293392,1,"""Africa""" +2023-05-24,6226,6158,"[\""Keyboard\"", \""Wireless Mouse\""]",764.32,{},230289,0,"""South America""" +2023-08-20,6227,1663,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",94.89,{},108337,0,"""North America""" +2023-05-21,6228,666,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2121.27,{},171941,0,"""Asia""" +2024-10-20,6229,1169,"[\""Laptop\""]",4749.61,"{\"": \""21%\""}",198449,1,"""South America""" +2024-05-13,6230,3168,"[\""Charger\"", \""Tablet\""]",3874.26,{},144582,0,"""Africa""" +2023-02-05,6231,7078,"[\""Tablet\"", \""Laptop\""]",4738.91,"{\"": \""25%\""}",30029,1,"""South America""" +2024-09-15,6232,1439,"[\""Keyboard\"", \""Monitor\""]",1625.06,{},35740,1,"""South America""" +2023-09-26,6233,4620,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4488.9,{},55791,0,"""Europe""" +2024-03-03,6234,9695,"[\""Monitor\"", \""Tablet\""]",2747.08,"{\""loyalty\"": \""27%\""}",71491,0,"""Africa""" +2023-12-08,6235,3169,"[\""Tablet\"", \""Keyboard\""]",3143.65,{},4052,0,"""South America""" +2023-06-28,6236,2460,"[\""Phone\""]",3472.03,"{\"": \""15%\""}",69026,1,"""Africa""" +2024-09-18,6237,2510,"[\""Headphones\""]",2145.9,{},51694,1,"""Africa""" +2024-04-19,6238,2077,"[\""Wireless Mouse\"", \""Charger\""]",3289.49,{},21062,1,"""Asia""" +2023-02-02,6239,6397,"[\""Keyboard\"", \""Laptop\""]",578.06,{},272066,0,"""North America""" +2024-08-25,6240,162,"[\""Monitor\""]",3005.18,{},16492,1,"""North America""" +2023-09-05,6241,6656,"[\""Wireless Mouse\"", \""Phone\""]",4186.33,"{\""loyalty\"": \""24%\""}",293600,0,"""Europe""" +2024-08-08,6242,3074,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2473.92,"{\""promo\"": \""5%\""}",194842,0,"""North America""" +2024-04-23,6243,7228,"[\""Phone\""]",1798.56,{},273532,0,"""South America""" +2024-05-29,6244,9525,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3853.0,{},98132,1,"""South America""" +2024-02-08,6245,6517,"[\""Tablet\""]",353.47,"{\""loyalty\"": \""12%\""}",92960,1,"""South America""" +2024-08-24,6246,6197,"[\""Tablet\""]",4709.01,{},207137,1,"""Europe""" +2024-02-15,6247,3460,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1337.83,"{\""loyalty\"": \""11%\""}",20673,0,"""Asia""" +2024-11-22,6248,3839,"[\""Laptop\"", \""Headphones\""]",4337.73,"{\""seasonal\"": \""9%\""}",227642,1,"""Asia""" +2024-04-17,6249,2923,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3259.19,{},141608,0,"""North America""" +2024-01-14,6250,7802,"[\""Wireless Mouse\""]",1865.98,"{\""seasonal\"": \""18%\""}",22383,1,"""Europe""" +2023-06-28,6251,7971,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1202.9,"{\"": \""14%\""}",18740,0,"""Africa""" +2024-05-15,6252,9672,"[\""Monitor\""]",4796.84,{},79402,1,"""Europe""" +2023-06-24,6253,7280,"[\""Tablet\"", \""Monitor\""]",2299.72,"{\""loyalty\"": \""11%\""}",190204,0,"""Africa""" +2023-12-23,6254,4293,"[\""Phone\"", \""Keyboard\""]",4064.97,"{\""seasonal\"": \""30%\""}",240595,0,"""Asia""" +2023-01-03,6255,8568,"[\""Phone\"", \""Monitor\""]",1409.97,"{\"": \""27%\""}",65945,1,"""Europe""" +2024-10-28,6256,2017,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3611.41,"{\""seasonal\"": \""12%\""}",213020,1,"""Europe""" +2024-10-09,6257,8803,"[\""Keyboard\"", \""Monitor\""]",389.53,{},143150,1,"""Europe""" +2024-01-28,6258,7419,"[\""Monitor\""]",2550.25,"{\""promo\"": \""19%\""}",49561,0,"""North America""" +2023-10-17,6259,788,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2364.67,"{\"": \""21%\""}",104082,0,"""North America""" +2024-03-18,6260,2813,"[\""Phone\""]",2360.93,"{\"": \""7%\""}",269029,0,"""Asia""" +2023-04-19,6261,7116,"[\""Keyboard\""]",4742.52,"{\""promo\"": \""17%\""}",42886,0,"""Asia""" +2023-02-18,6262,6042,"[\""Charger\"", \""Phone\"", \""Headphones\""]",64.67,{},15454,1,"""North America""" +2023-09-23,6263,7821,"[\""Monitor\"", \""Charger\""]",3950.95,"{\""seasonal\"": \""5%\""}",230047,0,"""North America""" +2024-06-27,6264,5761,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4291.12,"{\"": \""20%\""}",296531,0,"""South America""" +2023-02-25,6265,8508,"[\""Laptop\"", \""Keyboard\""]",57.03,{},36337,0,"""South America""" +2024-03-01,6266,875,"[\""Monitor\""]",1148.14,"{\""seasonal\"": \""29%\""}",188671,1,"""Asia""" +2024-04-17,6267,8697,"[\""Tablet\""]",2936.64,{},121631,1,"""North America""" +2023-08-01,6268,946,"[\""Keyboard\""]",1160.61,"{\""loyalty\"": \""8%\""}",181607,1,"""Asia""" +2024-11-07,6269,1305,"[\""Monitor\""]",4056.29,{},172257,1,"""Asia""" +2024-07-31,6270,6763,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3122.68,{},131646,1,"""Asia""" +2024-08-21,6271,2929,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3524.73,{},7940,0,"""Europe""" +2023-01-07,6272,3345,"[\""Phone\""]",4546.24,"{\""seasonal\"": \""22%\""}",48629,0,"""Europe""" +2024-03-06,6273,9415,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",732.31,{},71358,0,"""Asia""" +2024-04-06,6274,3325,"[\""Tablet\"", \""Headphones\""]",1326.41,"{\""loyalty\"": \""5%\""}",212246,1,"""North America""" +2023-10-02,6275,7531,"[\""Laptop\""]",1703.56,"{\""seasonal\"": \""7%\""}",254187,1,"""South America""" +2023-03-21,6276,7501,"[\""Charger\""]",1039.89,"{\""promo\"": \""18%\""}",11260,1,"""Asia""" +2023-06-05,6277,9267,"[\""Laptop\""]",685.56,{},288157,0,"""Africa""" +2023-05-05,6278,5272,"[\""Headphones\""]",342.37,"{\"": \""16%\""}",255220,1,"""South America""" +2024-01-11,6279,7743,"[\""Charger\""]",144.57,"{\""loyalty\"": \""23%\""}",11296,0,"""Europe""" +2023-07-03,6280,193,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3486.95,"{\""loyalty\"": \""23%\""}",191540,0,"""Asia""" +2024-05-05,6281,5472,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4138.79,"{\"": \""24%\""}",6008,0,"""Africa""" +2024-12-25,6282,5951,"[\""Charger\""]",4916.56,{},11799,1,"""Africa""" +2024-01-11,6283,2086,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3005.01,"{\"": \""26%\""}",63604,0,"""North America""" +2023-12-01,6284,8841,"[\""Tablet\""]",3533.92,"{\"": \""21%\""}",87462,1,"""Africa""" +2023-01-05,6285,2517,"[\""Headphones\"", \""Charger\""]",2853.39,"{\""seasonal\"": \""29%\""}",290935,0,"""Asia""" +2023-07-02,6286,1494,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3557.53,{},145116,0,"""Asia""" +2024-06-09,6287,2178,"[\""Tablet\""]",4320.8,"{\"": \""11%\""}",184984,0,"""North America""" +2024-10-26,6288,8824,"[\""Headphones\""]",2660.04,"{\""promo\"": \""8%\""}",283470,0,"""Asia""" +2024-04-20,6289,3809,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2800.25,{},19850,1,"""Europe""" +2024-11-06,6290,7833,"[\""Monitor\"", \""Tablet\""]",2598.65,"{\""promo\"": \""24%\""}",72592,0,"""South America""" +2023-08-28,6291,71,"[\""Headphones\""]",1740.14,{},125316,0,"""North America""" +2023-08-11,6292,4983,"[\""Tablet\"", \""Keyboard\""]",3142.34,{},136544,0,"""North America""" +2024-09-29,6293,7411,"[\""Laptop\""]",1151.12,"{\""loyalty\"": \""7%\""}",162894,0,"""Africa""" +2023-02-04,6294,9504,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4834.36,{},58964,0,"""South America""" +2023-10-01,6295,9704,"[\""Phone\""]",818.39,"{\""promo\"": \""21%\""}",281190,1,"""Africa""" +2023-07-24,6296,980,"[\""Laptop\"", \""Keyboard\""]",479.15,{},245837,1,"""North America""" +2023-03-28,6297,2881,"[\""Charger\"", \""Tablet\""]",1145.81,{},213947,0,"""Europe""" +2023-04-25,6298,2766,"[\""Keyboard\""]",378.18,{},117269,0,"""North America""" +2024-06-12,6299,323,"[\""Headphones\"", \""Wireless Mouse\""]",2238.64,{},239176,0,"""Africa""" +2024-06-23,6300,4144,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3137.78,"{\"": \""6%\""}",238361,0,"""Africa""" +2023-06-08,6301,1914,"[\""Keyboard\"", \""Tablet\""]",3428.65,"{\""loyalty\"": \""15%\""}",227307,1,"""Asia""" +2024-01-05,6302,7916,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4271.41,"{\""seasonal\"": \""19%\""}",250972,1,"""South America""" +2023-09-03,6303,8819,"[\""Tablet\""]",1531.32,"{\""loyalty\"": \""5%\""}",219263,1,"""South America""" +2023-05-01,6304,5678,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4215.52,{},247538,0,"""North America""" +2023-06-09,6305,2856,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3308.23,"{\""loyalty\"": \""28%\""}",130033,1,"""Asia""" +2024-08-11,6306,3683,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4937.5,{},221103,1,"""Asia""" +2024-02-26,6307,274,"[\""Keyboard\""]",3003.97,"{\""seasonal\"": \""22%\""}",144749,0,"""North America""" +2023-04-14,6308,6156,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1039.84,"{\""loyalty\"": \""7%\""}",112244,0,"""Europe""" +2023-12-06,6309,6684,"[\""Phone\""]",2328.71,"{\""seasonal\"": \""11%\""}",208602,1,"""Asia""" +2024-02-28,6310,9752,"[\""Keyboard\""]",3374.52,{},51169,0,"""Africa""" +2023-01-08,6311,3650,"[\""Tablet\""]",528.77,{},224181,1,"""Europe""" +2023-02-08,6312,8081,"[\""Headphones\""]",1003.71,{},175623,0,"""South America""" +2024-01-13,6313,1633,"[\""Phone\""]",378.51,{},4375,1,"""Asia""" +2023-01-05,6314,1324,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",806.96,"{\""loyalty\"": \""27%\""}",61291,1,"""North America""" +2024-02-01,6315,3077,"[\""Charger\""]",4394.47,"{\""promo\"": \""19%\""}",58516,0,"""North America""" +2024-10-31,6316,9607,"[\""Laptop\"", \""Tablet\""]",2574.83,{},262338,0,"""South America""" +2023-03-02,6317,8373,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",818.52,"{\""promo\"": \""16%\""}",257591,1,"""Africa""" +2024-02-03,6318,7512,"[\""Charger\"", \""Monitor\""]",3184.58,"{\""loyalty\"": \""12%\""}",275057,1,"""South America""" +2023-02-19,6319,3483,"[\""Phone\""]",1432.23,"{\"": \""25%\""}",52589,1,"""Europe""" +2024-10-08,6320,6483,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",323.43,"{\""seasonal\"": \""14%\""}",135895,1,"""Africa""" +2024-04-29,6321,5417,"[\""Keyboard\""]",4264.89,{},221504,1,"""Europe""" +2024-02-16,6322,7084,"[\""Laptop\"", \""Keyboard\""]",815.79,"{\""seasonal\"": \""24%\""}",285279,0,"""South America""" +2023-10-18,6323,9105,"[\""Laptop\""]",4316.09,"{\""promo\"": \""28%\""}",284746,0,"""Europe""" +2024-08-12,6324,4103,"[\""Wireless Mouse\""]",1861.54,{},283555,1,"""North America""" +2024-11-09,6325,6310,"[\""Wireless Mouse\""]",1920.44,"{\""promo\"": \""9%\""}",281873,1,"""South America""" +2024-12-01,6326,3447,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1687.98,"{\""promo\"": \""16%\""}",136308,0,"""Africa""" +2023-03-08,6327,2265,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3380.71,{},280821,0,"""North America""" +2023-06-20,6328,361,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4971.35,{},90307,0,"""Africa""" +2023-12-31,6329,1750,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3961.06,"{\""promo\"": \""14%\""}",19776,0,"""Europe""" +2024-05-20,6330,6844,"[\""Monitor\"", \""Tablet\""]",4704.9,{},36565,1,"""Africa""" +2024-09-07,6331,199,"[\""Tablet\""]",4334.19,"{\""seasonal\"": \""17%\""}",52190,1,"""Europe""" +2024-09-10,6332,1384,"[\""Monitor\""]",2381.25,{},135662,1,"""Europe""" +2023-01-22,6333,6532,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",177.43,"{\""loyalty\"": \""20%\""}",99099,1,"""Asia""" +2023-03-12,6334,6655,"[\""Monitor\""]",1190.04,{},244065,1,"""Africa""" +2024-08-25,6335,9965,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3601.87,{},118720,0,"""South America""" +2024-04-30,6336,8754,"[\""Phone\""]",4077.25,"{\""seasonal\"": \""15%\""}",143843,1,"""Europe""" +2023-06-03,6337,2329,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1476.87,{},144073,0,"""Africa""" +2023-04-30,6338,6468,"[\""Keyboard\"", \""Wireless Mouse\""]",4539.86,"{\""promo\"": \""17%\""}",176210,1,"""Africa""" +2024-10-22,6339,891,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1689.14,{},181898,0,"""Africa""" +2023-06-21,6340,6295,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",819.01,{},26561,1,"""North America""" +2023-08-29,6341,3134,"[\""Laptop\""]",2834.26,"{\""promo\"": \""24%\""}",19955,1,"""Europe""" +2024-11-14,6342,6078,"[\""Charger\"", \""Wireless Mouse\""]",1498.87,"{\""promo\"": \""25%\""}",96800,0,"""Europe""" +2024-08-06,6343,8737,"[\""Laptop\""]",2601.05,"{\""seasonal\"": \""14%\""}",141988,1,"""Asia""" +2023-03-12,6344,121,"[\""Keyboard\"", \""Laptop\""]",2669.69,"{\""promo\"": \""11%\""}",196145,1,"""Europe""" +2023-10-09,6345,7382,"[\""Laptop\"", \""Keyboard\""]",675.65,"{\""loyalty\"": \""9%\""}",257377,1,"""South America""" +2024-09-03,6346,6497,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1689.72,{},131691,0,"""Africa""" +2024-10-16,6347,1337,"[\""Tablet\""]",4005.54,"{\""promo\"": \""22%\""}",139314,1,"""Asia""" +2024-06-14,6348,8357,"[\""Phone\""]",4392.09,"{\""loyalty\"": \""15%\""}",236815,0,"""Africa""" +2024-01-03,6349,404,"[\""Headphones\"", \""Phone\""]",3734.0,{},55142,0,"""Asia""" +2024-07-04,6350,5127,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",420.21,"{\""promo\"": \""20%\""}",260325,0,"""North America""" +2023-11-12,6351,6278,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3376.71,"{\""loyalty\"": \""22%\""}",142035,0,"""North America""" +2023-08-14,6352,1875,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2760.65,"{\""promo\"": \""30%\""}",89508,0,"""South America""" +2023-06-26,6353,7472,"[\""Headphones\""]",4944.97,{},223853,1,"""South America""" +2024-06-24,6354,2797,"[\""Laptop\""]",4360.15,"{\""promo\"": \""9%\""}",46340,0,"""North America""" +2024-09-08,6355,1016,"[\""Tablet\"", \""Monitor\""]",1979.96,{},207803,0,"""Africa""" +2023-05-01,6356,9389,"[\""Laptop\"", \""Phone\""]",1661.94,"{\""seasonal\"": \""27%\""}",281256,1,"""Asia""" +2024-09-24,6357,1719,"[\""Tablet\""]",4575.17,{},149784,1,"""North America""" +2023-05-06,6358,187,"[\""Charger\"", \""Keyboard\""]",1002.53,{},3443,0,"""North America""" +2024-10-15,6359,7758,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1216.73,"{\""promo\"": \""11%\""}",39633,1,"""Asia""" +2023-10-17,6360,7245,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2518.17,{},10439,1,"""South America""" +2023-03-15,6361,8320,"[\""Laptop\""]",4561.59,{},20111,1,"""Africa""" +2023-11-11,6362,8006,"[\""Charger\""]",4230.69,{},147477,0,"""Europe""" +2024-01-27,6363,7245,"[\""Phone\"", \""Tablet\""]",3504.07,{},272155,1,"""South America""" +2023-01-09,6364,6346,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4376.44,"{\"": \""26%\""}",197248,1,"""Europe""" +2024-08-13,6365,2970,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3683.29,"{\""loyalty\"": \""19%\""}",285040,1,"""Asia""" +2023-06-02,6366,5330,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4708.21,{},275079,0,"""Europe""" +2024-07-03,6367,3221,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2782.22,{},96287,1,"""South America""" +2024-05-12,6368,4570,"[\""Charger\""]",4041.32,{},200664,0,"""Europe""" +2024-11-10,6369,7117,"[\""Laptop\""]",1355.33,{},106400,0,"""Europe""" +2023-05-05,6370,5816,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2640.72,{},40163,1,"""Europe""" +2023-03-10,6371,2697,"[\""Charger\""]",214.26,"{\"": \""30%\""}",219344,1,"""Asia""" +2024-05-28,6372,2466,"[\""Keyboard\"", \""Charger\""]",3541.72,{},269130,1,"""Europe""" +2024-12-11,6373,6276,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1159.43,{},14798,0,"""North America""" +2023-04-14,6374,1152,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4833.32,{},23079,0,"""Asia""" +2023-01-08,6375,9105,"[\""Wireless Mouse\""]",2339.51,{},118373,1,"""South America""" +2023-09-18,6376,7159,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3310.88,{},74154,1,"""Africa""" +2023-06-10,6377,9699,"[\""Wireless Mouse\"", \""Phone\""]",2005.66,{},4250,0,"""North America""" +2023-10-16,6378,1845,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1717.12,"{\"": \""20%\""}",232572,0,"""Asia""" +2024-04-20,6379,9685,"[\""Headphones\""]",2848.1,"{\""promo\"": \""16%\""}",282047,1,"""Asia""" +2023-06-19,6380,3418,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2001.92,{},61846,0,"""Africa""" +2024-10-18,6381,7133,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",913.35,"{\""loyalty\"": \""11%\""}",63686,0,"""Africa""" +2024-02-12,6382,233,"[\""Keyboard\""]",4172.12,{},65804,0,"""Africa""" +2023-12-10,6383,9973,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",669.7,"{\""seasonal\"": \""30%\""}",42428,1,"""Europe""" +2024-01-21,6384,6855,"[\""Laptop\"", \""Headphones\""]",3791.6,"{\""loyalty\"": \""13%\""}",193082,0,"""North America""" +2023-06-02,6385,564,"[\""Tablet\""]",2722.21,"{\""seasonal\"": \""8%\""}",215366,0,"""North America""" +2023-12-07,6386,5177,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1422.49,{},4559,0,"""Africa""" +2023-01-07,6387,4842,"[\""Monitor\"", \""Wireless Mouse\""]",920.27,{},238118,0,"""Asia""" +2023-06-24,6388,7504,"[\""Laptop\"", \""Monitor\""]",1594.88,{},46903,0,"""South America""" +2023-02-03,6389,3821,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4500.58,{},92190,0,"""South America""" +2024-06-08,6390,4030,"[\""Phone\""]",2255.05,"{\""loyalty\"": \""27%\""}",215940,1,"""Africa""" +2023-09-30,6391,8370,"[\""Wireless Mouse\""]",3104.73,"{\""promo\"": \""20%\""}",209529,0,"""North America""" +2023-04-02,6392,7612,"[\""Wireless Mouse\""]",3652.82,{},233497,0,"""North America""" +2023-09-02,6393,6941,"[\""Keyboard\""]",3580.0,{},91649,0,"""Europe""" +2024-04-28,6394,7701,"[\""Monitor\"", \""Charger\""]",736.03,{},264411,1,"""Africa""" +2024-06-20,6395,5706,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4786.67,{},293168,0,"""South America""" +2023-11-07,6396,8136,"[\""Phone\"", \""Tablet\""]",2511.02,"{\""loyalty\"": \""27%\""}",260665,1,"""Europe""" +2023-06-02,6397,5659,"[\""Headphones\""]",2986.7,{},209099,0,"""North America""" +2024-03-03,6398,46,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4598.1,{},251051,1,"""Asia""" +2024-09-03,6399,3227,"[\""Phone\""]",3650.06,"{\"": \""19%\""}",131375,1,"""Asia""" +2023-09-04,6400,3003,"[\""Wireless Mouse\""]",4795.06,{},172619,0,"""South America""" +2024-07-18,6401,4650,"[\""Tablet\""]",858.42,{},142360,1,"""Africa""" +2023-11-13,6402,8991,"[\""Phone\"", \""Keyboard\""]",3238.47,"{\""promo\"": \""18%\""}",243262,1,"""Africa""" +2024-01-08,6403,7501,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2036.33,{},240449,1,"""Asia""" +2024-04-20,6404,888,"[\""Headphones\"", \""Laptop\""]",2850.3,{},73765,0,"""North America""" +2023-05-30,6405,756,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4800.72,"{\"": \""18%\""}",88859,0,"""South America""" +2023-02-12,6406,436,"[\""Keyboard\""]",1889.07,{},136236,1,"""Asia""" +2024-05-23,6407,9104,"[\""Wireless Mouse\""]",3652.08,"{\"": \""16%\""}",173868,0,"""Asia""" +2024-03-20,6408,2066,"[\""Headphones\""]",4979.0,"{\""loyalty\"": \""7%\""}",209440,1,"""Asia""" +2023-08-02,6409,5062,"[\""Charger\"", \""Tablet\""]",1472.09,{},288768,1,"""South America""" +2024-01-12,6410,1269,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2432.66,{},241958,0,"""North America""" +2023-10-29,6411,7936,"[\""Wireless Mouse\""]",73.91,"{\"": \""5%\""}",234951,0,"""Asia""" +2024-12-17,6412,3889,"[\""Keyboard\"", \""Phone\""]",996.85,"{\""promo\"": \""25%\""}",250513,1,"""Asia""" +2023-12-12,6413,8097,"[\""Charger\""]",2798.67,{},24742,0,"""Asia""" +2024-11-27,6414,2564,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1826.52,{},56683,0,"""South America""" +2023-04-03,6415,7998,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4710.62,"{\"": \""28%\""}",196272,0,"""Europe""" +2023-01-10,6416,9778,"[\""Tablet\""]",617.74,{},232031,1,"""Asia""" +2024-04-18,6417,1898,"[\""Tablet\""]",4537.08,"{\""seasonal\"": \""21%\""}",192283,0,"""Europe""" +2024-06-14,6418,8565,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",779.43,"{\""promo\"": \""15%\""}",123149,0,"""North America""" +2023-10-27,6419,2721,"[\""Keyboard\""]",601.87,"{\""loyalty\"": \""26%\""}",249746,0,"""South America""" +2024-04-29,6420,3966,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3506.78,"{\""loyalty\"": \""25%\""}",49325,0,"""Asia""" +2023-09-17,6421,9537,"[\""Charger\"", \""Monitor\""]",496.77,{},34327,0,"""Asia""" +2024-06-28,6422,7768,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1127.6,{},269463,1,"""Asia""" +2024-02-08,6423,2902,"[\""Phone\"", \""Keyboard\""]",3149.16,{},77404,0,"""South America""" +2024-01-15,6424,3143,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1921.35,{},288784,1,"""Europe""" +2024-04-08,6425,3276,"[\""Tablet\""]",924.91,"{\""loyalty\"": \""23%\""}",38342,1,"""Europe""" +2024-04-17,6426,2008,"[\""Tablet\"", \""Charger\""]",850.53,"{\"": \""8%\""}",75293,0,"""North America""" +2024-01-05,6427,9274,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2670.79,"{\""loyalty\"": \""21%\""}",45188,1,"""Europe""" +2023-03-06,6428,5204,"[\""Phone\""]",4613.0,{},107265,0,"""North America""" +2024-02-16,6429,7640,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",848.94,{},194095,0,"""North America""" +2023-02-24,6430,4244,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2320.53,{},273631,1,"""Europe""" +2023-11-10,6431,652,"[\""Monitor\"", \""Tablet\""]",2665.38,{},64793,1,"""Africa""" +2023-06-08,6432,3994,"[\""Keyboard\""]",3653.42,{},47965,1,"""South America""" +2024-10-26,6433,6058,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2147.46,{},44258,0,"""Europe""" +2024-08-10,6434,640,"[\""Wireless Mouse\"", \""Charger\""]",1698.92,"{\""seasonal\"": \""21%\""}",277810,0,"""Africa""" +2024-12-25,6435,9176,"[\""Tablet\""]",2625.39,{},284188,0,"""Africa""" +2024-03-06,6436,8473,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4976.56,{},252893,1,"""South America""" +2024-07-21,6437,5608,"[\""Charger\""]",1039.58,{},274929,0,"""Africa""" +2023-04-15,6438,2743,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1654.57,{},123904,0,"""South America""" +2024-03-06,6439,7647,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2845.11,"{\"": \""8%\""}",189173,0,"""Europe""" +2023-11-11,6440,4354,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3247.39,{},288922,1,"""Europe""" +2023-03-16,6441,9593,"[\""Keyboard\"", \""Laptop\""]",1524.89,"{\""loyalty\"": \""15%\""}",168440,1,"""South America""" +2023-11-18,6442,6218,"[\""Headphones\"", \""Wireless Mouse\""]",1484.38,{},242319,1,"""Asia""" +2024-05-15,6443,7907,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1497.19,"{\""promo\"": \""5%\""}",53807,1,"""South America""" +2023-02-28,6444,5040,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4577.13,{},177566,1,"""South America""" +2023-08-22,6445,8350,"[\""Laptop\"", \""Wireless Mouse\""]",542.28,{},274079,0,"""Asia""" +2023-03-25,6446,3115,"[\""Keyboard\"", \""Tablet\""]",1318.88,{},199965,0,"""Europe""" +2023-05-22,6447,9412,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",444.18,{},198112,0,"""Europe""" +2023-11-16,6448,6395,"[\""Headphones\""]",2862.9,{},182713,0,"""South America""" +2024-01-19,6449,8256,"[\""Laptop\"", \""Charger\""]",1837.57,{},178551,1,"""Asia""" +2023-12-08,6450,4883,"[\""Keyboard\"", \""Wireless Mouse\""]",3791.62,"{\"": \""17%\""}",49835,0,"""North America""" +2024-01-16,6451,9698,"[\""Laptop\""]",1907.23,{},173358,0,"""South America""" +2024-10-12,6452,3395,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",50.02,{},170059,1,"""South America""" +2023-05-10,6453,7335,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1136.07,"{\""loyalty\"": \""15%\""}",66246,0,"""South America""" +2024-09-08,6454,9827,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",419.86,"{\""loyalty\"": \""23%\""}",284215,1,"""Europe""" +2023-09-04,6455,8673,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2319.4,{},126947,1,"""Africa""" +2023-10-10,6456,6344,"[\""Charger\"", \""Keyboard\""]",1866.14,"{\""promo\"": \""13%\""}",156630,1,"""North America""" +2023-11-13,6457,4670,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",773.49,"{\"": \""27%\""}",141529,0,"""Europe""" +2024-03-08,6458,2283,"[\""Phone\"", \""Wireless Mouse\""]",3248.67,{},260704,0,"""Africa""" +2024-05-11,6459,6180,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4201.54,{},236598,1,"""Asia""" +2024-01-05,6460,4119,"[\""Keyboard\""]",2584.15,"{\"": \""18%\""}",257291,0,"""Europe""" +2024-09-18,6461,3916,"[\""Headphones\""]",2987.26,{},28432,1,"""South America""" +2023-02-24,6462,9098,"[\""Headphones\"", \""Charger\""]",448.35,{},272893,0,"""Europe""" +2024-01-20,6463,9676,"[\""Monitor\""]",2110.79,{},202023,1,"""Europe""" +2024-03-12,6464,1136,"[\""Keyboard\"", \""Wireless Mouse\""]",3196.13,{},296621,0,"""South America""" +2023-07-26,6465,5645,"[\""Keyboard\"", \""Tablet\""]",3119.85,{},54575,0,"""North America""" +2023-06-05,6466,7804,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2054.6,"{\""loyalty\"": \""24%\""}",261493,0,"""Africa""" +2023-09-22,6467,388,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4526.34,{},261375,0,"""Asia""" +2023-09-22,6468,3759,"[\""Wireless Mouse\""]",4607.87,"{\""seasonal\"": \""15%\""}",154782,1,"""Africa""" +2023-02-26,6469,4215,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3567.66,"{\""seasonal\"": \""30%\""}",214187,0,"""Asia""" +2024-02-25,6470,1833,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4081.25,{},19012,1,"""North America""" +2023-05-13,6471,1800,"[\""Monitor\"", \""Charger\""]",1117.52,{},45951,0,"""Europe""" +2024-04-17,6472,4064,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2405.26,{},165417,1,"""North America""" +2024-01-24,6473,9784,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4111.43,{},216929,1,"""South America""" +2023-06-24,6474,9157,"[\""Headphones\""]",1234.45,"{\""loyalty\"": \""30%\""}",178896,1,"""South America""" +2023-10-31,6475,4802,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3114.47,{},216820,0,"""Europe""" +2024-05-01,6476,2105,"[\""Phone\"", \""Keyboard\""]",1182.56,{},248158,1,"""North America""" +2023-03-08,6477,4595,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2773.56,"{\"": \""19%\""}",299892,1,"""North America""" +2024-12-30,6478,355,"[\""Wireless Mouse\""]",114.94,{},169369,0,"""Africa""" +2023-03-27,6479,1051,"[\""Monitor\""]",3668.84,{},284966,1,"""South America""" +2024-04-26,6480,3106,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4775.41,"{\""seasonal\"": \""8%\""}",262163,0,"""Europe""" +2023-05-13,6481,7695,"[\""Keyboard\"", \""Laptop\""]",4369.62,{},140167,0,"""Asia""" +2023-12-13,6482,2329,"[\""Laptop\"", \""Phone\""]",2901.2,{},80629,1,"""Africa""" +2024-05-29,6483,2414,"[\""Charger\""]",2794.05,"{\""loyalty\"": \""10%\""}",165980,0,"""Africa""" +2023-06-22,6484,1619,"[\""Wireless Mouse\""]",3150.49,{},125991,0,"""South America""" +2023-07-10,6485,3464,"[\""Laptop\"", \""Charger\""]",2196.3,"{\""seasonal\"": \""22%\""}",28755,0,"""North America""" +2024-09-17,6486,7538,"[\""Phone\"", \""Keyboard\""]",989.77,{},140419,0,"""Europe""" +2024-01-26,6487,2393,"[\""Charger\"", \""Wireless Mouse\""]",3019.52,"{\""loyalty\"": \""16%\""}",21549,0,"""Asia""" +2023-01-12,6488,6231,"[\""Charger\""]",3517.98,"{\""promo\"": \""13%\""}",38975,1,"""North America""" +2023-08-14,6489,5164,"[\""Keyboard\"", \""Phone\""]",4829.21,{},78859,1,"""South America""" +2024-03-21,6490,8221,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2874.64,{},290809,0,"""Africa""" +2023-11-19,6491,4983,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1226.25,"{\"": \""21%\""}",240107,1,"""Africa""" +2024-04-11,6492,3957,"[\""Headphones\""]",4055.79,"{\""seasonal\"": \""29%\""}",120471,0,"""South America""" +2024-11-02,6493,4044,"[\""Laptop\"", \""Monitor\""]",4860.9,"{\"": \""17%\""}",143489,1,"""Africa""" +2024-01-27,6494,4502,"[\""Headphones\""]",915.56,"{\""promo\"": \""21%\""}",121330,0,"""South America""" +2023-07-17,6495,9790,"[\""Monitor\""]",4398.77,{},110836,0,"""South America""" +2024-10-01,6496,7015,"[\""Laptop\""]",1344.44,"{\""seasonal\"": \""28%\""}",154587,1,"""Asia""" +2024-04-20,6497,6160,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1339.65,"{\"": \""20%\""}",290769,1,"""Europe""" +2023-02-20,6498,346,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1353.15,"{\""promo\"": \""6%\""}",224946,1,"""North America""" +2023-05-15,6499,5984,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4900.1,{},101697,0,"""South America""" +2024-01-25,6500,3443,"[\""Headphones\"", \""Laptop\""]",691.46,"{\""promo\"": \""29%\""}",46512,0,"""North America""" +2024-02-10,6501,8360,"[\""Phone\"", \""Charger\""]",2976.29,{},58533,1,"""Asia""" +2023-11-18,6502,1418,"[\""Wireless Mouse\""]",1286.02,{},14013,1,"""North America""" +2024-10-27,6503,9172,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3592.69,"{\""loyalty\"": \""25%\""}",62883,1,"""Africa""" +2024-04-04,6504,1895,"[\""Tablet\"", \""Wireless Mouse\""]",514.31,{},228069,0,"""South America""" +2024-10-11,6505,8664,"[\""Monitor\""]",1670.52,"{\""seasonal\"": \""20%\""}",1205,1,"""Asia""" +2023-04-15,6506,2190,"[\""Charger\"", \""Phone\""]",1379.25,"{\"": \""30%\""}",149515,0,"""North America""" +2024-07-21,6507,982,"[\""Keyboard\""]",141.88,{},54317,1,"""South America""" +2024-09-20,6508,295,"[\""Headphones\""]",2442.44,{},294339,1,"""North America""" +2023-04-16,6509,2831,"[\""Tablet\""]",4072.44,{},197663,0,"""Asia""" +2024-08-27,6510,5245,"[\""Tablet\"", \""Charger\""]",4059.9,{},105785,1,"""Africa""" +2023-06-12,6511,4105,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3320.43,"{\""promo\"": \""26%\""}",77229,0,"""Europe""" +2023-04-17,6512,4889,"[\""Headphones\""]",3122.25,"{\""seasonal\"": \""10%\""}",12876,0,"""Africa""" +2024-01-07,6513,5149,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",538.69,"{\""loyalty\"": \""13%\""}",249301,0,"""Europe""" +2023-03-03,6514,7655,"[\""Phone\"", \""Headphones\""]",3336.58,{},234252,1,"""Asia""" +2024-10-14,6515,9757,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4005.27,{},287774,0,"""Europe""" +2023-12-27,6516,542,"[\""Keyboard\""]",573.5,"{\""seasonal\"": \""14%\""}",242661,0,"""South America""" +2024-03-19,6517,1850,"[\""Headphones\"", \""Charger\""]",332.99,"{\""promo\"": \""5%\""}",2398,1,"""South America""" +2023-01-09,6518,6369,"[\""Charger\""]",1679.17,"{\""loyalty\"": \""7%\""}",220602,0,"""Asia""" +2023-12-25,6519,7476,"[\""Monitor\""]",3595.09,"{\""loyalty\"": \""11%\""}",107896,1,"""Africa""" +2024-05-29,6520,7075,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3917.11,{},175589,0,"""Asia""" +2023-03-31,6521,6281,"[\""Phone\"", \""Keyboard\""]",2243.3,{},46019,1,"""South America""" +2023-03-04,6522,3892,"[\""Phone\"", \""Tablet\""]",352.73,{},160834,0,"""Asia""" +2023-05-24,6523,3561,"[\""Laptop\""]",2571.27,"{\""loyalty\"": \""8%\""}",68165,0,"""Europe""" +2023-09-09,6524,5904,"[\""Monitor\""]",2832.17,{},1219,0,"""North America""" +2023-03-26,6525,6637,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",157.74,{},18013,1,"""Asia""" +2024-07-22,6526,5301,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1094.51,{},226970,1,"""North America""" +2024-09-13,6527,4191,"[\""Phone\"", \""Tablet\""]",4663.83,"{\""loyalty\"": \""11%\""}",130596,1,"""Europe""" +2024-08-17,6528,1546,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1928.96,{},15843,0,"""Asia""" +2024-08-11,6529,7717,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",150.85,{},231616,1,"""Asia""" +2023-08-08,6530,9434,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4583.32,{},157690,1,"""Asia""" +2023-01-26,6531,7483,"[\""Tablet\""]",282.8,{},64742,0,"""Africa""" +2024-10-08,6532,1349,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",806.46,{},127918,0,"""Africa""" +2023-03-21,6533,3492,"[\""Laptop\"", \""Monitor\""]",4102.54,{},97485,1,"""North America""" +2023-03-02,6534,3756,"[\""Keyboard\""]",2503.49,{},219718,1,"""South America""" +2024-08-22,6535,3807,"[\""Phone\""]",4790.58,"{\""loyalty\"": \""30%\""}",266273,1,"""Asia""" +2024-02-04,6536,425,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3314.04,"{\""loyalty\"": \""14%\""}",139540,1,"""Africa""" +2023-04-05,6537,7407,"[\""Monitor\""]",4960.9,"{\"": \""14%\""}",129996,0,"""North America""" +2024-04-02,6538,6729,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2105.0,{},51344,1,"""North America""" +2023-09-13,6539,9012,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4328.42,"{\""loyalty\"": \""30%\""}",145062,0,"""Asia""" +2024-08-10,6540,5314,"[\""Monitor\"", \""Headphones\""]",2059.61,"{\""loyalty\"": \""18%\""}",252565,1,"""Europe""" +2024-12-26,6541,5163,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3978.69,{},89296,0,"""Asia""" +2023-12-27,6542,2480,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",582.29,{},138286,0,"""Africa""" +2024-04-09,6543,1315,"[\""Headphones\"", \""Phone\""]",1671.51,{},269242,1,"""Asia""" +2024-10-27,6544,7549,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1308.38,"{\""seasonal\"": \""14%\""}",41228,0,"""Africa""" +2024-02-11,6545,6901,"[\""Phone\"", \""Headphones\""]",4053.46,{},131763,1,"""Asia""" +2024-12-29,6546,2886,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3588.9,{},219254,0,"""Africa""" +2024-06-12,6547,4472,"[\""Wireless Mouse\""]",3716.1,"{\""loyalty\"": \""29%\""}",105693,0,"""South America""" +2024-08-18,6548,3512,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2093.12,{},218021,0,"""Asia""" +2023-09-23,6549,57,"[\""Charger\"", \""Wireless Mouse\""]",1799.77,{},265849,0,"""North America""" +2024-12-02,6550,889,"[\""Phone\""]",2819.41,{},298003,1,"""North America""" +2024-03-24,6551,7092,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2689.96,"{\"": \""8%\""}",276569,1,"""North America""" +2024-09-23,6552,8430,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4079.34,"{\"": \""26%\""}",52218,0,"""Africa""" +2024-02-21,6553,9729,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1989.68,"{\""loyalty\"": \""25%\""}",254087,1,"""Africa""" +2023-07-29,6554,1098,"[\""Monitor\"", \""Laptop\""]",3030.54,"{\"": \""8%\""}",52752,0,"""Europe""" +2023-11-29,6555,5182,"[\""Wireless Mouse\""]",256.85,{},62603,0,"""Asia""" +2024-03-23,6556,5116,"[\""Tablet\""]",734.0,"{\""promo\"": \""7%\""}",203096,0,"""North America""" +2024-10-18,6557,1148,"[\""Headphones\"", \""Keyboard\""]",1629.23,"{\""loyalty\"": \""29%\""}",111327,0,"""North America""" +2023-04-18,6558,4317,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4669.25,{},253958,1,"""Africa""" +2024-11-24,6559,94,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3626.68,{},199437,0,"""Asia""" +2024-09-21,6560,5833,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3419.58,"{\""loyalty\"": \""10%\""}",37836,1,"""South America""" +2024-03-02,6561,3172,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2103.76,{},287019,0,"""Asia""" +2023-09-17,6562,3007,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",160.47,{},252333,1,"""Europe""" +2023-02-21,6563,5298,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1557.58,{},102914,1,"""Europe""" +2024-12-16,6564,2555,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",628.08,"{\""loyalty\"": \""14%\""}",132080,1,"""South America""" +2024-03-22,6565,7380,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",477.09,{},147706,0,"""North America""" +2023-03-21,6566,2167,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2678.76,"{\""seasonal\"": \""10%\""}",267991,0,"""Europe""" +2023-09-22,6567,7671,"[\""Wireless Mouse\"", \""Tablet\""]",2628.3,{},102984,1,"""Asia""" +2023-09-20,6568,9527,"[\""Tablet\""]",863.69,"{\""promo\"": \""25%\""}",295321,0,"""Africa""" +2024-06-16,6569,2519,"[\""Charger\"", \""Laptop\""]",4893.02,{},229667,0,"""Asia""" +2024-06-22,6570,7535,"[\""Headphones\""]",1598.04,"{\"": \""22%\""}",45973,1,"""Asia""" +2023-03-31,6571,5582,"[\""Phone\""]",163.97,"{\"": \""25%\""}",165469,1,"""North America""" +2024-07-26,6572,3785,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4216.48,{},50452,1,"""Africa""" +2024-10-30,6573,436,"[\""Monitor\"", \""Keyboard\""]",2657.59,{},128599,1,"""North America""" +2024-12-24,6574,867,"[\""Wireless Mouse\"", \""Keyboard\""]",3741.97,{},60653,1,"""North America""" +2023-12-12,6575,913,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2568.1,"{\""seasonal\"": \""9%\""}",52854,0,"""Europe""" +2023-09-15,6576,2728,"[\""Headphones\""]",3334.21,"{\""loyalty\"": \""28%\""}",138529,1,"""North America""" +2024-10-08,6577,8706,"[\""Monitor\""]",3100.9,{},299440,1,"""Asia""" +2024-09-05,6578,3,"[\""Laptop\"", \""Tablet\""]",2956.07,{},5080,1,"""Asia""" +2023-10-14,6579,785,"[\""Monitor\""]",3220.02,"{\"": \""12%\""}",96703,1,"""South America""" +2024-06-21,6580,3234,"[\""Phone\"", \""Tablet\""]",2104.74,{},7782,1,"""Asia""" +2023-05-22,6581,2949,"[\""Laptop\"", \""Headphones\""]",4098.37,"{\""promo\"": \""6%\""}",277370,1,"""Asia""" +2024-08-19,6582,7419,"[\""Wireless Mouse\"", \""Keyboard\""]",2527.6,"{\""promo\"": \""22%\""}",216495,1,"""Asia""" +2023-11-01,6583,6130,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",391.99,"{\"": \""11%\""}",164231,0,"""Africa""" +2023-03-29,6584,630,"[\""Headphones\""]",1715.03,"{\""seasonal\"": \""29%\""}",7517,0,"""Africa""" +2023-01-21,6585,6448,"[\""Laptop\""]",993.3,"{\""loyalty\"": \""11%\""}",118964,0,"""South America""" +2024-05-11,6586,1517,"[\""Keyboard\""]",2012.06,"{\"": \""24%\""}",239098,0,"""Asia""" +2024-06-10,6587,2213,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1505.64,{},25008,1,"""Europe""" +2024-01-17,6588,2648,"[\""Wireless Mouse\"", \""Monitor\""]",3592.07,{},34645,0,"""North America""" +2024-08-08,6589,2095,"[\""Wireless Mouse\"", \""Charger\""]",2862.94,{},165758,1,"""South America""" +2023-01-11,6590,3380,"[\""Monitor\"", \""Keyboard\""]",1546.49,{},107938,1,"""Asia""" +2023-01-13,6591,2082,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",617.69,"{\"": \""12%\""}",290128,1,"""North America""" +2024-08-01,6592,2543,"[\""Monitor\"", \""Keyboard\""]",3882.33,"{\""loyalty\"": \""13%\""}",131840,0,"""Africa""" +2023-04-22,6593,7350,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4884.52,{},2451,0,"""Africa""" +2023-06-09,6594,7092,"[\""Wireless Mouse\"", \""Charger\""]",3319.59,{},181873,1,"""Africa""" +2024-12-21,6595,2659,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1993.07,"{\""promo\"": \""10%\""}",153934,0,"""Africa""" +2024-03-27,6596,8620,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1203.79,{},205945,1,"""Africa""" +2024-07-17,6597,436,"[\""Charger\"", \""Tablet\""]",3533.26,{},20728,1,"""Europe""" +2024-08-08,6598,5946,"[\""Monitor\""]",1119.67,"{\""promo\"": \""6%\""}",228044,0,"""Europe""" +2024-07-11,6599,2501,"[\""Headphones\""]",2591.6,"{\""loyalty\"": \""11%\""}",133029,1,"""Asia""" +2024-10-14,6600,8374,"[\""Tablet\""]",3261.93,"{\""loyalty\"": \""23%\""}",4216,1,"""North America""" +2023-12-22,6601,55,"[\""Phone\""]",4410.53,{},195899,1,"""Africa""" +2024-04-30,6602,2537,"[\""Laptop\"", \""Charger\""]",4879.64,"{\"": \""20%\""}",276645,1,"""Africa""" +2023-08-05,6603,4403,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2801.27,"{\""seasonal\"": \""30%\""}",214128,1,"""Asia""" +2023-07-09,6604,1633,"[\""Laptop\"", \""Headphones\""]",3786.76,{},161683,1,"""Europe""" +2024-01-12,6605,388,"[\""Headphones\""]",1432.69,{},238854,0,"""South America""" +2023-08-05,6606,377,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4393.73,{},254025,1,"""North America""" +2023-01-13,6607,197,"[\""Tablet\""]",4886.23,"{\""loyalty\"": \""21%\""}",199055,0,"""North America""" +2023-12-29,6608,8557,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",480.65,{},153422,0,"""North America""" +2023-02-03,6609,471,"[\""Phone\"", \""Tablet\""]",3189.8,"{\""loyalty\"": \""25%\""}",143756,1,"""South America""" +2024-12-06,6610,772,"[\""Phone\""]",2169.83,{},214000,0,"""Asia""" +2023-10-10,6611,8489,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3079.21,"{\""loyalty\"": \""22%\""}",281725,0,"""South America""" +2023-07-31,6612,483,"[\""Charger\"", \""Monitor\""]",2964.81,{},196950,1,"""Asia""" +2023-04-03,6613,3930,"[\""Tablet\"", \""Charger\""]",4275.5,"{\""seasonal\"": \""30%\""}",284412,1,"""Africa""" +2023-11-05,6614,4750,"[\""Keyboard\"", \""Charger\""]",4169.14,"{\""promo\"": \""8%\""}",86344,1,"""North America""" +2023-11-03,6615,4336,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",146.95,{},176907,0,"""North America""" +2023-04-08,6616,800,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3842.8,"{\""loyalty\"": \""30%\""}",109370,1,"""Asia""" +2023-09-06,6617,2535,"[\""Laptop\"", \""Keyboard\""]",2938.75,{},101359,0,"""Europe""" +2023-12-06,6618,9738,"[\""Headphones\"", \""Keyboard\""]",860.07,"{\""seasonal\"": \""30%\""}",198275,0,"""South America""" +2023-02-11,6619,122,"[\""Headphones\""]",1150.0,{},161153,0,"""Europe""" +2024-10-31,6620,5218,"[\""Charger\"", \""Tablet\""]",4303.91,"{\""seasonal\"": \""8%\""}",37091,0,"""North America""" +2024-06-23,6621,621,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4212.29,"{\""promo\"": \""23%\""}",183290,1,"""Asia""" +2023-08-23,6622,8163,"[\""Keyboard\""]",3511.43,"{\"": \""28%\""}",136959,0,"""North America""" +2024-11-30,6623,3262,"[\""Wireless Mouse\""]",4914.32,{},166200,1,"""South America""" +2023-12-22,6624,6239,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4329.95,{},137916,1,"""North America""" +2023-06-05,6625,1869,"[\""Charger\"", \""Wireless Mouse\""]",1580.58,"{\""loyalty\"": \""5%\""}",50519,0,"""South America""" +2023-06-23,6626,8425,"[\""Wireless Mouse\"", \""Tablet\""]",2802.63,{},247855,1,"""Asia""" +2023-12-10,6627,5346,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1420.11,"{\""seasonal\"": \""24%\""}",170575,1,"""Africa""" +2023-10-05,6628,786,"[\""Keyboard\""]",3460.71,"{\"": \""9%\""}",80085,1,"""Asia""" +2023-09-01,6629,3785,"[\""Wireless Mouse\""]",3693.48,{},75794,1,"""South America""" +2023-05-01,6630,8359,"[\""Phone\""]",4350.88,"{\"": \""28%\""}",180469,1,"""Africa""" +2023-10-13,6631,5787,"[\""Keyboard\"", \""Monitor\""]",1577.52,{},99419,1,"""Asia""" +2024-01-20,6632,7933,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",59.66,"{\""promo\"": \""16%\""}",62178,1,"""Africa""" +2023-01-31,6633,2339,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3538.64,{},83915,0,"""Europe""" +2023-12-25,6634,6922,"[\""Phone\"", \""Wireless Mouse\""]",244.55,{},212127,0,"""Africa""" +2024-08-18,6635,8259,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4152.69,{},274858,0,"""South America""" +2023-08-15,6636,5867,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2647.77,"{\""loyalty\"": \""17%\""}",157818,0,"""Europe""" +2024-04-06,6637,5342,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1111.11,"{\""loyalty\"": \""9%\""}",94304,1,"""Europe""" +2024-11-09,6638,4407,"[\""Monitor\"", \""Keyboard\""]",2953.63,"{\""promo\"": \""7%\""}",123256,0,"""Europe""" +2024-05-03,6639,4036,"[\""Wireless Mouse\"", \""Keyboard\""]",2296.01,"{\""loyalty\"": \""5%\""}",201344,1,"""Asia""" +2023-06-03,6640,2553,"[\""Headphones\"", \""Laptop\""]",2606.83,{},100949,0,"""South America""" +2024-07-26,6641,2208,"[\""Headphones\""]",1516.6,{},298150,1,"""South America""" +2024-12-15,6642,9887,"[\""Tablet\"", \""Headphones\""]",396.49,{},223001,1,"""Africa""" +2023-03-01,6643,6348,"[\""Headphones\""]",1833.4,"{\"": \""11%\""}",190311,1,"""Africa""" +2023-05-30,6644,4695,"[\""Monitor\"", \""Phone\""]",1996.39,{},82171,1,"""Asia""" +2024-08-05,6645,9209,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3862.31,"{\""loyalty\"": \""24%\""}",192213,0,"""Europe""" +2024-06-23,6646,4634,"[\""Tablet\"", \""Charger\""]",2187.88,{},39846,0,"""North America""" +2024-08-01,6647,2065,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1409.16,"{\""loyalty\"": \""18%\""}",249011,0,"""South America""" +2024-11-28,6648,4091,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1698.42,"{\""promo\"": \""19%\""}",149458,0,"""Asia""" +2024-05-11,6649,7464,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4850.57,"{\""promo\"": \""19%\""}",225710,1,"""Asia""" +2023-05-14,6650,7311,"[\""Wireless Mouse\""]",3443.97,{},2202,0,"""South America""" +2024-05-13,6651,5219,"[\""Wireless Mouse\"", \""Phone\""]",3803.28,{},233460,0,"""North America""" +2023-02-20,6652,9273,"[\""Tablet\""]",900.78,{},299408,0,"""Europe""" +2023-08-18,6653,5004,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1968.8,{},14904,1,"""South America""" +2023-09-28,6654,2989,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1614.56,{},277420,0,"""South America""" +2023-08-31,6655,2945,"[\""Laptop\""]",2212.76,{},296007,1,"""Europe""" +2024-02-14,6656,2284,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2889.11,"{\""loyalty\"": \""9%\""}",277009,0,"""Africa""" +2024-05-31,6657,4594,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3558.76,{},25954,0,"""North America""" +2023-02-25,6658,7703,"[\""Charger\"", \""Wireless Mouse\""]",2602.84,"{\""promo\"": \""25%\""}",241850,0,"""North America""" +2024-05-01,6659,744,"[\""Headphones\""]",4156.44,"{\""seasonal\"": \""8%\""}",211161,1,"""Europe""" +2023-06-21,6660,4095,"[\""Phone\""]",3361.4,"{\""loyalty\"": \""25%\""}",151903,1,"""North America""" +2024-04-28,6661,9945,"[\""Phone\""]",3117.3,"{\"": \""17%\""}",122120,0,"""Africa""" +2023-11-28,6662,1113,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1893.28,{},136343,0,"""Africa""" +2024-12-23,6663,1440,"[\""Wireless Mouse\"", \""Charger\""]",2098.73,"{\""seasonal\"": \""29%\""}",259764,1,"""Asia""" +2024-08-21,6664,4166,"[\""Laptop\""]",3242.67,{},92063,0,"""Asia""" +2024-04-13,6665,7249,"[\""Charger\""]",423.56,"{\""seasonal\"": \""11%\""}",192245,1,"""Europe""" +2024-06-01,6666,9315,"[\""Monitor\"", \""Keyboard\""]",503.92,{},276364,1,"""Africa""" +2024-04-18,6667,6415,"[\""Monitor\"", \""Tablet\""]",4835.08,"{\""seasonal\"": \""18%\""}",261583,1,"""South America""" +2023-11-06,6668,3103,"[\""Charger\""]",335.41,"{\""seasonal\"": \""10%\""}",214984,1,"""Europe""" +2023-04-16,6669,2189,"[\""Headphones\""]",1251.47,"{\""seasonal\"": \""28%\""}",141279,0,"""Asia""" +2023-09-13,6670,9908,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3256.72,"{\""promo\"": \""6%\""}",77101,1,"""Europe""" +2023-10-16,6671,161,"[\""Laptop\"", \""Tablet\""]",763.61,{},109938,0,"""South America""" +2024-10-03,6672,8350,"[\""Wireless Mouse\"", \""Monitor\""]",4395.42,{},92682,0,"""North America""" +2024-10-17,6673,4511,"[\""Keyboard\"", \""Laptop\""]",3107.29,"{\""seasonal\"": \""20%\""}",223894,0,"""Asia""" +2023-01-12,6674,7305,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2254.86,"{\"": \""13%\""}",84562,0,"""North America""" +2023-03-06,6675,4714,"[\""Wireless Mouse\""]",2865.96,"{\""loyalty\"": \""12%\""}",50916,1,"""Europe""" +2024-04-26,6676,2127,"[\""Keyboard\""]",3540.03,{},63911,0,"""Europe""" +2024-01-17,6677,6333,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3220.96,{},145146,1,"""Asia""" +2024-09-30,6678,8618,"[\""Charger\""]",2035.19,{},218249,1,"""Europe""" +2023-09-03,6679,4403,"[\""Phone\"", \""Charger\""]",3239.21,"{\""loyalty\"": \""27%\""}",285625,0,"""South America""" +2023-07-12,6680,2442,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",88.57,"{\"": \""17%\""}",235356,0,"""North America""" +2023-11-19,6681,886,"[\""Charger\""]",2440.57,{},123494,0,"""Asia""" +2023-04-06,6682,2385,"[\""Phone\""]",1080.49,{},283881,0,"""Europe""" +2023-01-28,6683,8779,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",525.48,{},163247,0,"""Europe""" +2024-01-14,6684,9140,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1152.63,{},255663,0,"""Africa""" +2023-06-18,6685,4608,"[\""Laptop\"", \""Monitor\""]",2767.98,{},73513,0,"""Asia""" +2024-04-07,6686,1167,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1236.53,{},36168,1,"""Europe""" +2024-12-02,6687,8495,"[\""Tablet\""]",4623.82,"{\""loyalty\"": \""29%\""}",94170,0,"""Europe""" +2024-09-25,6688,9766,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4084.79,"{\"": \""16%\""}",208050,0,"""Asia""" +2024-06-08,6689,3150,"[\""Monitor\""]",4728.75,{},227154,1,"""North America""" +2023-11-27,6690,803,"[\""Monitor\"", \""Phone\""]",1702.24,{},183454,0,"""South America""" +2024-10-18,6691,8548,"[\""Phone\"", \""Charger\""]",1760.0,"{\"": \""5%\""}",167367,0,"""Africa""" +2023-09-01,6692,9791,"[\""Laptop\"", \""Headphones\""]",2550.93,"{\""loyalty\"": \""14%\""}",265306,0,"""Asia""" +2023-05-04,6693,8142,"[\""Monitor\""]",1207.49,"{\""seasonal\"": \""19%\""}",14732,1,"""North America""" +2024-07-29,6694,9413,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1750.81,{},245219,0,"""Europe""" +2024-09-19,6695,7909,"[\""Phone\"", \""Keyboard\""]",3557.65,"{\"": \""14%\""}",117460,0,"""North America""" +2023-03-04,6696,8146,"[\""Headphones\""]",708.79,"{\"": \""26%\""}",97500,1,"""Europe""" +2023-05-19,6697,8191,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2631.31,"{\""loyalty\"": \""19%\""}",25197,0,"""Africa""" +2024-08-17,6698,3091,"[\""Laptop\"", \""Headphones\""]",3505.84,{},210346,1,"""Europe""" +2023-11-21,6699,7329,"[\""Monitor\"", \""Phone\""]",4636.88,{},294240,1,"""South America""" +2024-01-31,6700,144,"[\""Keyboard\""]",661.5,{},176457,0,"""Europe""" +2024-08-24,6701,2033,"[\""Charger\""]",1967.21,{},90661,1,"""North America""" +2023-07-12,6702,3434,"[\""Laptop\"", \""Tablet\""]",2328.22,"{\""promo\"": \""20%\""}",285916,1,"""Europe""" +2024-09-15,6703,3275,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4696.55,{},191897,1,"""South America""" +2023-10-26,6704,9340,"[\""Laptop\""]",1571.64,{},102063,0,"""North America""" +2024-04-03,6705,568,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3840.07,{},3221,1,"""Africa""" +2023-11-05,6706,6277,"[\""Charger\"", \""Headphones\""]",2103.55,"{\""promo\"": \""7%\""}",84098,1,"""South America""" +2023-06-15,6707,8645,"[\""Charger\"", \""Keyboard\""]",1410.5,"{\""promo\"": \""10%\""}",85255,0,"""Europe""" +2024-05-08,6708,577,"[\""Wireless Mouse\"", \""Monitor\""]",435.83,{},118450,1,"""Europe""" +2024-02-28,6709,5174,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2347.44,{},144631,1,"""South America""" +2024-05-23,6710,1087,"[\""Tablet\""]",1200.08,{},91799,0,"""North America""" +2024-05-01,6711,7667,"[\""Wireless Mouse\"", \""Keyboard\""]",2833.73,{},11890,1,"""Asia""" +2024-06-25,6712,1582,"[\""Monitor\""]",1619.32,"{\""promo\"": \""12%\""}",275861,1,"""Africa""" +2023-05-27,6713,632,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",542.05,"{\""seasonal\"": \""12%\""}",167586,0,"""South America""" +2024-05-25,6714,6279,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",254.8,"{\""loyalty\"": \""5%\""}",36586,1,"""Europe""" +2023-05-28,6715,8060,"[\""Keyboard\"", \""Headphones\""]",852.03,{},241431,1,"""North America""" +2024-07-30,6716,8074,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2307.06,"{\""promo\"": \""9%\""}",36605,1,"""Europe""" +2023-03-26,6717,5302,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4334.45,"{\""promo\"": \""8%\""}",105160,1,"""Africa""" +2024-07-06,6718,6977,"[\""Headphones\""]",3177.18,{},168838,0,"""Europe""" +2024-04-20,6719,2536,"[\""Keyboard\"", \""Tablet\""]",4704.24,{},56356,1,"""Europe""" +2023-02-24,6720,9843,"[\""Keyboard\"", \""Tablet\""]",421.18,"{\""promo\"": \""22%\""}",230723,1,"""Asia""" +2023-08-13,6721,6368,"[\""Phone\"", \""Keyboard\""]",381.81,"{\""promo\"": \""9%\""}",198145,0,"""North America""" +2023-08-16,6722,9210,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1900.01,"{\"": \""7%\""}",46405,1,"""North America""" +2023-01-14,6723,9239,"[\""Headphones\"", \""Keyboard\""]",2546.04,"{\""loyalty\"": \""17%\""}",122422,1,"""Africa""" +2024-08-25,6724,861,"[\""Tablet\"", \""Charger\""]",839.4,"{\""promo\"": \""30%\""}",237804,1,"""Europe""" +2024-03-20,6725,9775,"[\""Headphones\"", \""Laptop\""]",2026.88,"{\""promo\"": \""15%\""}",289907,1,"""Asia""" +2024-10-10,6726,8968,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3551.11,{},287638,0,"""Africa""" +2024-04-29,6727,1520,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1054.1,"{\""seasonal\"": \""9%\""}",168849,0,"""Africa""" +2023-08-08,6728,6382,"[\""Phone\""]",2203.64,"{\""promo\"": \""10%\""}",254629,0,"""Asia""" +2024-08-21,6729,4455,"[\""Keyboard\"", \""Headphones\""]",3720.25,"{\""loyalty\"": \""12%\""}",188294,1,"""North America""" +2023-09-24,6730,5381,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1769.72,{},4177,1,"""South America""" +2023-10-21,6731,9562,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4217.68,{},1692,1,"""Europe""" +2023-10-06,6732,5607,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",640.99,{},212636,1,"""Asia""" +2023-01-01,6733,5096,"[\""Laptop\""]",1511.16,"{\""seasonal\"": \""29%\""}",132953,1,"""Asia""" +2024-10-14,6734,7549,"[\""Monitor\"", \""Wireless Mouse\""]",3233.3,"{\""loyalty\"": \""7%\""}",293791,1,"""Europe""" +2024-02-24,6735,1888,"[\""Tablet\"", \""Charger\""]",3468.4,{},222905,0,"""Europe""" +2024-07-18,6736,6150,"[\""Headphones\""]",1969.32,{},67562,0,"""Europe""" +2023-05-10,6737,5260,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1054.66,"{\""loyalty\"": \""5%\""}",251124,0,"""North America""" +2024-07-28,6738,7986,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3832.05,"{\""promo\"": \""15%\""}",256937,1,"""Asia""" +2023-10-10,6739,854,"[\""Keyboard\""]",3619.06,{},88687,1,"""South America""" +2023-12-17,6740,2959,"[\""Keyboard\"", \""Charger\""]",1378.68,"{\"": \""20%\""}",200381,0,"""Europe""" +2024-03-08,6741,4425,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3776.84,{},36686,1,"""Asia""" +2024-11-07,6742,6811,"[\""Headphones\""]",699.49,"{\""promo\"": \""8%\""}",286572,1,"""Africa""" +2024-10-03,6743,8169,"[\""Phone\"", \""Laptop\""]",1393.42,"{\""seasonal\"": \""15%\""}",48337,1,"""Europe""" +2024-07-09,6744,8612,"[\""Tablet\""]",3444.6,{},284612,0,"""Africa""" +2023-01-05,6745,3424,"[\""Laptop\"", \""Charger\""]",2730.4,"{\""loyalty\"": \""17%\""}",102207,0,"""South America""" +2024-06-23,6746,5928,"[\""Keyboard\""]",1281.51,{},298363,1,"""South America""" +2023-08-22,6747,4554,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4315.47,{},112335,0,"""Africa""" +2024-03-13,6748,9555,"[\""Keyboard\"", \""Monitor\""]",598.13,"{\""loyalty\"": \""11%\""}",41010,1,"""Europe""" +2024-11-10,6749,7565,"[\""Wireless Mouse\"", \""Tablet\""]",4873.1,"{\"": \""21%\""}",47167,1,"""Asia""" +2024-10-19,6750,5068,"[\""Laptop\""]",1436.6,{},238845,1,"""South America""" +2024-01-06,6751,4644,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4913.59,{},244464,0,"""Africa""" +2024-08-08,6752,9011,"[\""Wireless Mouse\"", \""Phone\""]",1674.95,"{\"": \""13%\""}",118895,0,"""Europe""" +2024-10-23,6753,1734,"[\""Laptop\""]",4396.14,"{\""promo\"": \""6%\""}",275345,1,"""Asia""" +2024-11-17,6754,749,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2149.98,"{\""promo\"": \""9%\""}",121979,1,"""Europe""" +2023-07-23,6755,2961,"[\""Keyboard\"", \""Monitor\""]",1388.71,"{\""seasonal\"": \""26%\""}",22997,1,"""North America""" +2023-04-18,6756,6478,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2564.69,{},93022,0,"""Africa""" +2023-07-25,6757,7266,"[\""Phone\""]",2732.77,{},85591,1,"""Asia""" +2023-05-11,6758,7774,"[\""Headphones\"", \""Laptop\""]",2964.34,"{\"": \""18%\""}",121327,0,"""North America""" +2023-02-25,6759,7636,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4258.14,"{\""seasonal\"": \""10%\""}",207856,1,"""North America""" +2024-12-01,6760,7745,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1959.3,{},283472,1,"""North America""" +2023-04-08,6761,374,"[\""Headphones\"", \""Tablet\""]",1374.9,{},137963,0,"""Europe""" +2024-08-05,6762,6173,"[\""Tablet\""]",287.38,{},203750,0,"""North America""" +2024-11-19,6763,6152,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1398.16,"{\"": \""16%\""}",295101,0,"""Asia""" +2023-09-25,6764,2963,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4322.55,"{\""promo\"": \""29%\""}",89817,1,"""North America""" +2023-04-09,6765,6612,"[\""Headphones\""]",3710.08,"{\""promo\"": \""24%\""}",283748,0,"""North America""" +2024-02-21,6766,8602,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3493.14,{},176312,0,"""Europe""" +2024-01-10,6767,9492,"[\""Laptop\""]",181.49,"{\""promo\"": \""15%\""}",21415,0,"""Asia""" +2023-01-29,6768,4813,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1169.39,{},116655,0,"""North America""" +2024-01-24,6769,2903,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3169.53,"{\"": \""5%\""}",194725,0,"""South America""" +2023-10-25,6770,6930,"[\""Phone\""]",4278.23,"{\"": \""15%\""}",270348,0,"""Asia""" +2024-07-23,6771,6572,"[\""Monitor\"", \""Laptop\""]",562.63,{},295483,1,"""Asia""" +2024-03-24,6772,2587,"[\""Headphones\"", \""Monitor\""]",2131.74,"{\""loyalty\"": \""15%\""}",15677,1,"""North America""" +2023-06-23,6773,7481,"[\""Headphones\""]",4370.58,{},133797,1,"""Africa""" +2024-03-30,6774,4502,"[\""Monitor\"", \""Headphones\""]",4670.93,"{\""promo\"": \""10%\""}",282109,0,"""South America""" +2023-04-26,6775,3146,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3158.2,{},258702,0,"""Asia""" +2024-07-14,6776,4326,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4258.92,{},103724,0,"""South America""" +2023-05-13,6777,3918,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4390.5,"{\"": \""28%\""}",202183,0,"""South America""" +2023-02-09,6778,775,"[\""Laptop\""]",1221.72,{},55877,1,"""North America""" +2023-02-23,6779,667,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2921.26,{},34781,0,"""South America""" +2024-05-02,6780,6418,"[\""Laptop\""]",2016.61,{},48608,1,"""Africa""" +2023-02-22,6781,1247,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",814.48,"{\""loyalty\"": \""12%\""}",136126,1,"""North America""" +2023-10-07,6782,7203,"[\""Tablet\"", \""Wireless Mouse\""]",4194.58,{},248425,0,"""Africa""" +2024-04-03,6783,6335,"[\""Wireless Mouse\""]",654.9,"{\""seasonal\"": \""20%\""}",208253,1,"""Asia""" +2023-04-29,6784,7597,"[\""Phone\"", \""Charger\""]",2929.33,"{\""loyalty\"": \""6%\""}",297006,1,"""North America""" +2023-12-23,6785,8755,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4655.32,{},272152,1,"""Europe""" +2024-02-05,6786,225,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2803.03,"{\""loyalty\"": \""7%\""}",208201,1,"""Asia""" +2023-10-05,6787,5415,"[\""Monitor\""]",3341.15,{},30103,1,"""North America""" +2023-01-23,6788,8611,"[\""Charger\""]",1918.08,"{\""loyalty\"": \""20%\""}",290250,1,"""Africa""" +2024-09-24,6789,1791,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4793.81,"{\""loyalty\"": \""19%\""}",276654,0,"""North America""" +2024-08-25,6790,4657,"[\""Phone\""]",1638.73,{},66897,1,"""Europe""" +2023-07-12,6791,7896,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2549.56,"{\"": \""18%\""}",54798,1,"""South America""" +2024-08-31,6792,8753,"[\""Phone\"", \""Headphones\""]",4198.23,{},106967,1,"""Africa""" +2023-02-05,6793,5478,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4023.22,{},158161,1,"""Europe""" +2023-02-23,6794,3052,"[\""Tablet\""]",1528.55,{},171036,1,"""Asia""" +2024-04-02,6795,4472,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4464.92,{},233885,0,"""Africa""" +2024-03-06,6796,664,"[\""Tablet\""]",674.79,{},285920,0,"""Asia""" +2024-06-29,6797,7291,"[\""Phone\"", \""Headphones\""]",4138.55,"{\"": \""17%\""}",30759,1,"""Africa""" +2023-04-05,6798,3506,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2596.01,"{\"": \""24%\""}",29877,1,"""Africa""" +2024-10-30,6799,4524,"[\""Charger\"", \""Headphones\""]",3960.09,"{\""seasonal\"": \""30%\""}",277089,1,"""North America""" +2023-09-21,6800,2326,"[\""Wireless Mouse\"", \""Laptop\""]",53.06,"{\"": \""12%\""}",217100,0,"""Africa""" +2024-10-11,6801,8368,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",862.31,{},76788,1,"""Asia""" +2023-08-23,6802,3546,"[\""Charger\""]",753.72,{},11612,0,"""North America""" +2024-07-23,6803,7748,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1936.9,"{\""promo\"": \""19%\""}",235717,1,"""Asia""" +2023-02-18,6804,6349,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1385.13,{},258523,1,"""Africa""" +2024-03-25,6805,9594,"[\""Tablet\""]",2133.87,"{\""loyalty\"": \""5%\""}",228451,0,"""Africa""" +2024-04-15,6806,6051,"[\""Phone\""]",1830.46,"{\""promo\"": \""13%\""}",179581,0,"""Asia""" +2023-03-03,6807,8548,"[\""Monitor\""]",471.43,"{\"": \""23%\""}",62858,1,"""Asia""" +2023-01-01,6808,5320,"[\""Keyboard\"", \""Headphones\""]",3443.24,{},218283,1,"""South America""" +2024-08-07,6809,7405,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1958.93,{},188957,0,"""South America""" +2024-06-13,6810,5621,"[\""Tablet\"", \""Keyboard\""]",2052.85,"{\""loyalty\"": \""26%\""}",82593,0,"""North America""" +2023-12-18,6811,4526,"[\""Tablet\"", \""Laptop\""]",1391.22,{},49620,1,"""Asia""" +2023-08-04,6812,318,"[\""Phone\"", \""Keyboard\""]",4419.44,{},297148,1,"""Asia""" +2024-04-27,6813,7393,"[\""Monitor\""]",169.77,"{\"": \""21%\""}",288042,0,"""Asia""" +2023-06-26,6814,9444,"[\""Wireless Mouse\"", \""Monitor\""]",4797.8,{},240577,1,"""Asia""" +2023-09-14,6815,2234,"[\""Monitor\""]",3431.36,{},216564,0,"""Africa""" +2024-07-20,6816,6535,"[\""Monitor\"", \""Headphones\""]",1116.16,{},200789,0,"""Europe""" +2023-06-26,6817,237,"[\""Wireless Mouse\"", \""Laptop\""]",530.66,"{\"": \""9%\""}",277273,0,"""Asia""" +2023-07-24,6818,7809,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2793.47,"{\""seasonal\"": \""29%\""}",109431,0,"""Africa""" +2024-06-09,6819,9826,"[\""Headphones\"", \""Charger\""]",2554.75,{},5309,1,"""Europe""" +2024-03-21,6820,5886,"[\""Laptop\""]",860.53,{},200869,0,"""South America""" +2023-05-10,6821,1591,"[\""Charger\"", \""Monitor\""]",4255.01,{},41534,0,"""Africa""" +2024-04-06,6822,7557,"[\""Tablet\""]",1121.53,"{\""seasonal\"": \""29%\""}",39744,0,"""Europe""" +2023-09-06,6823,4201,"[\""Monitor\""]",3435.98,{},228526,1,"""Europe""" +2024-04-05,6824,3664,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4123.45,"{\""seasonal\"": \""17%\""}",267728,1,"""Europe""" +2023-07-08,6825,66,"[\""Headphones\"", \""Monitor\""]",1599.22,"{\""loyalty\"": \""27%\""}",49388,1,"""Asia""" +2023-07-31,6826,5780,"[\""Wireless Mouse\""]",4131.38,"{\"": \""18%\""}",230256,1,"""Africa""" +2023-07-29,6827,1439,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",147.31,"{\"": \""26%\""}",57011,0,"""South America""" +2023-10-02,6828,6578,"[\""Keyboard\""]",3545.84,"{\""promo\"": \""7%\""}",71115,1,"""South America""" +2023-04-19,6829,8170,"[\""Keyboard\"", \""Laptop\""]",2240.66,"{\""promo\"": \""29%\""}",123204,0,"""Europe""" +2023-04-29,6830,8922,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4818.5,"{\""promo\"": \""6%\""}",229132,1,"""Africa""" +2023-05-18,6831,1321,"[\""Charger\""]",3110.75,"{\"": \""18%\""}",55670,1,"""Asia""" +2023-08-23,6832,2676,"[\""Laptop\"", \""Headphones\""]",2509.58,{},17424,1,"""North America""" +2023-11-03,6833,5353,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4684.42,{},193247,0,"""Asia""" +2023-01-30,6834,6880,"[\""Phone\"", \""Charger\""]",4938.84,{},276125,1,"""North America""" +2024-01-01,6835,9510,"[\""Charger\"", \""Monitor\""]",4355.93,{},293644,0,"""Asia""" +2024-04-24,6836,5315,"[\""Phone\""]",1549.91,"{\"": \""22%\""}",260981,0,"""Asia""" +2023-08-28,6837,2314,"[\""Keyboard\""]",2002.09,{},105143,1,"""Europe""" +2024-08-06,6838,2860,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4202.21,{},188122,0,"""North America""" +2024-08-29,6839,980,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3687.9,{},170062,0,"""Europe""" +2023-03-09,6840,5752,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4029.39,"{\"": \""29%\""}",60808,0,"""Africa""" +2024-06-03,6841,7282,"[\""Phone\""]",2612.63,"{\""loyalty\"": \""6%\""}",9578,0,"""South America""" +2024-09-09,6842,7925,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3800.03,{},231653,1,"""Europe""" +2023-08-27,6843,2744,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1072.4,"{\""promo\"": \""28%\""}",44023,0,"""Asia""" +2024-02-28,6844,8995,"[\""Laptop\""]",4234.5,"{\""loyalty\"": \""14%\""}",219784,0,"""North America""" +2023-02-08,6845,6429,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4748.13,{},269124,0,"""South America""" +2024-05-16,6846,4827,"[\""Laptop\""]",80.63,{},233539,0,"""South America""" +2024-11-14,6847,686,"[\""Keyboard\""]",4669.25,"{\""loyalty\"": \""22%\""}",266319,0,"""South America""" +2024-11-08,6848,8047,"[\""Wireless Mouse\"", \""Phone\""]",602.95,{},13278,0,"""Africa""" +2023-07-26,6849,1408,"[\""Phone\"", \""Monitor\""]",1045.27,"{\"": \""26%\""}",194059,1,"""Africa""" +2023-03-30,6850,6591,"[\""Laptop\""]",2674.13,"{\""seasonal\"": \""5%\""}",268052,1,"""Africa""" +2023-07-16,6851,5760,"[\""Monitor\""]",3394.39,"{\"": \""25%\""}",94314,0,"""Europe""" +2024-03-22,6852,2102,"[\""Monitor\"", \""Keyboard\""]",3649.9,{},33780,0,"""Asia""" +2023-01-26,6853,6570,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",84.87,"{\""promo\"": \""28%\""}",222839,1,"""Africa""" +2023-11-09,6854,9190,"[\""Monitor\""]",3769.46,"{\""loyalty\"": \""22%\""}",225455,0,"""North America""" +2023-10-29,6855,8989,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4789.52,"{\""seasonal\"": \""17%\""}",11689,1,"""Asia""" +2023-03-20,6856,7782,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1851.5,"{\""seasonal\"": \""18%\""}",224945,1,"""North America""" +2023-07-28,6857,6481,"[\""Laptop\"", \""Wireless Mouse\""]",2222.02,{},55578,0,"""North America""" +2024-06-11,6858,2512,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3804.61,"{\""loyalty\"": \""14%\""}",63311,0,"""South America""" +2023-07-02,6859,234,"[\""Charger\""]",2571.89,"{\""seasonal\"": \""21%\""}",299011,1,"""Asia""" +2023-09-21,6860,2786,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",283.43,"{\""seasonal\"": \""25%\""}",113903,1,"""Asia""" +2023-07-11,6861,371,"[\""Monitor\""]",614.65,{},195147,1,"""Asia""" +2023-01-12,6862,9638,"[\""Tablet\"", \""Phone\""]",3371.51,{},145316,0,"""North America""" +2024-07-28,6863,6033,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4618.36,{},12044,1,"""Africa""" +2023-04-12,6864,7231,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1052.9,"{\""promo\"": \""7%\""}",26340,0,"""Asia""" +2024-02-13,6865,5134,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1597.27,{},19785,0,"""South America""" +2024-01-11,6866,5215,"[\""Charger\"", \""Tablet\""]",4476.76,"{\""promo\"": \""5%\""}",170474,1,"""North America""" +2024-06-02,6867,6871,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3141.8,{},4727,0,"""Asia""" +2023-01-24,6868,2139,"[\""Charger\""]",1326.09,{},144551,1,"""North America""" +2023-04-09,6869,6628,"[\""Tablet\"", \""Phone\""]",4185.29,"{\""seasonal\"": \""24%\""}",61130,1,"""Africa""" +2024-08-18,6870,9510,"[\""Laptop\"", \""Charger\""]",2772.35,{},157903,1,"""Asia""" +2024-11-05,6871,7374,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4612.72,"{\""loyalty\"": \""12%\""}",63821,1,"""South America""" +2023-10-04,6872,8014,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",931.12,{},195053,1,"""North America""" +2024-08-18,6873,8482,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2482.92,"{\""loyalty\"": \""9%\""}",93971,0,"""Europe""" +2023-03-29,6874,6847,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1472.54,"{\""promo\"": \""12%\""}",239291,1,"""Africa""" +2023-11-24,6875,7629,"[\""Keyboard\"", \""Phone\""]",3716.68,"{\""promo\"": \""25%\""}",132354,1,"""Asia""" +2024-10-08,6876,1262,"[\""Headphones\"", \""Monitor\""]",4383.48,{},124046,0,"""North America""" +2023-11-20,6877,8327,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4001.98,{},219367,0,"""North America""" +2024-08-06,6878,132,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1729.83,"{\""seasonal\"": \""10%\""}",165042,0,"""Asia""" +2024-12-21,6879,7273,"[\""Tablet\"", \""Charger\""]",4284.77,"{\"": \""21%\""}",244943,1,"""North America""" +2023-04-02,6880,1651,"[\""Wireless Mouse\"", \""Tablet\""]",1258.24,{},101614,0,"""North America""" +2024-10-18,6881,9429,"[\""Tablet\""]",1736.06,"{\""promo\"": \""27%\""}",139322,1,"""South America""" +2023-04-09,6882,6610,"[\""Headphones\"", \""Tablet\""]",3168.51,"{\""promo\"": \""16%\""}",38318,0,"""North America""" +2024-09-20,6883,4249,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1882.81,{},139120,0,"""Europe""" +2024-07-11,6884,2876,"[\""Wireless Mouse\""]",888.04,{},242931,0,"""Asia""" +2023-07-15,6885,543,"[\""Keyboard\""]",1171.59,"{\"": \""23%\""}",288857,1,"""Europe""" +2023-04-12,6886,5083,"[\""Tablet\""]",4430.19,"{\""seasonal\"": \""11%\""}",294209,0,"""North America""" +2024-01-29,6887,5115,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2868.35,"{\"": \""18%\""}",219837,0,"""Europe""" +2024-02-05,6888,3491,"[\""Charger\"", \""Headphones\""]",1914.28,{},116502,1,"""Europe""" +2023-09-11,6889,5026,"[\""Laptop\""]",482.4,"{\"": \""30%\""}",46165,1,"""South America""" +2024-10-27,6890,6626,"[\""Charger\"", \""Keyboard\""]",2107.47,{},9806,0,"""Europe""" +2023-05-03,6891,5631,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4881.3,"{\"": \""11%\""}",205307,1,"""South America""" +2024-02-04,6892,3381,"[\""Phone\""]",872.94,"{\"": \""9%\""}",261099,0,"""Africa""" +2023-05-30,6893,5122,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3660.7,{},110732,1,"""Europe""" +2024-11-13,6894,5854,"[\""Headphones\""]",4992.98,"{\""seasonal\"": \""10%\""}",48840,1,"""South America""" +2024-12-02,6895,7269,"[\""Wireless Mouse\""]",4664.36,"{\""promo\"": \""7%\""}",276644,0,"""North America""" +2023-05-10,6896,241,"[\""Charger\""]",1164.96,{},178286,0,"""Europe""" +2024-10-30,6897,2285,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1298.29,{},23884,1,"""South America""" +2024-05-08,6898,1088,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",258.88,{},224214,1,"""Asia""" +2024-01-09,6899,2391,"[\""Wireless Mouse\""]",3009.06,{},156099,0,"""North America""" +2023-03-05,6900,2966,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",326.2,{},272382,0,"""North America""" +2023-10-22,6901,8717,"[\""Monitor\""]",615.76,"{\""promo\"": \""20%\""}",9194,1,"""North America""" +2024-02-09,6902,6296,"[\""Tablet\"", \""Phone\""]",4800.48,{},258986,0,"""Europe""" +2023-10-18,6903,5834,"[\""Laptop\""]",3626.13,"{\""promo\"": \""6%\""}",40320,1,"""South America""" +2024-11-22,6904,9515,"[\""Laptop\""]",1147.81,"{\""loyalty\"": \""28%\""}",174510,1,"""South America""" +2023-04-26,6905,980,"[\""Phone\""]",175.0,{},21526,1,"""Africa""" +2023-10-24,6906,9303,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1373.46,{},153684,1,"""North America""" +2024-04-25,6907,2514,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3605.65,"{\""promo\"": \""16%\""}",32257,0,"""Europe""" +2023-02-28,6908,884,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2933.69,"{\""seasonal\"": \""10%\""}",6196,0,"""South America""" +2023-04-23,6909,8816,"[\""Keyboard\""]",2472.49,{},251627,0,"""Asia""" +2024-10-09,6910,8223,"[\""Keyboard\""]",3022.61,{},159098,0,"""Asia""" +2023-07-27,6911,3843,"[\""Monitor\""]",2425.42,{},232856,0,"""Asia""" +2023-08-21,6912,7490,"[\""Monitor\""]",2389.92,"{\""promo\"": \""9%\""}",258345,0,"""Africa""" +2024-10-04,6913,4579,"[\""Monitor\""]",833.29,"{\""loyalty\"": \""23%\""}",75911,1,"""South America""" +2024-04-13,6914,2215,"[\""Monitor\"", \""Tablet\""]",1877.18,"{\""promo\"": \""5%\""}",38893,1,"""North America""" +2024-07-15,6915,7592,"[\""Phone\""]",3060.44,{},130125,1,"""Africa""" +2024-04-08,6916,8208,"[\""Wireless Mouse\""]",3867.45,"{\""seasonal\"": \""28%\""}",163645,1,"""South America""" +2024-07-27,6917,8799,"[\""Tablet\""]",4493.01,"{\""seasonal\"": \""23%\""}",269132,0,"""South America""" +2023-01-19,6918,6409,"[\""Wireless Mouse\"", \""Tablet\""]",2691.57,"{\""promo\"": \""8%\""}",92288,1,"""South America""" +2023-12-10,6919,5924,"[\""Charger\""]",4728.02,"{\"": \""16%\""}",168340,0,"""Asia""" +2023-01-16,6920,7217,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",845.22,{},61854,0,"""South America""" +2023-02-12,6921,1286,"[\""Keyboard\"", \""Laptop\""]",2228.47,{},287996,1,"""Asia""" +2024-10-31,6922,8136,"[\""Laptop\"", \""Tablet\""]",1642.74,{},163121,0,"""South America""" +2023-04-26,6923,6897,"[\""Keyboard\"", \""Phone\""]",1956.55,{},82513,1,"""Asia""" +2023-07-10,6924,5308,"[\""Tablet\"", \""Laptop\""]",1673.2,{},55974,0,"""South America""" +2024-11-18,6925,7619,"[\""Laptop\""]",4259.98,{},142930,0,"""Europe""" +2023-02-08,6926,4471,"[\""Laptop\"", \""Charger\""]",3777.8,"{\""promo\"": \""7%\""}",89060,0,"""Africa""" +2024-03-27,6927,4871,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4152.75,"{\"": \""10%\""}",220933,1,"""Europe""" +2024-11-15,6928,4118,"[\""Headphones\"", \""Tablet\""]",416.62,{},189448,0,"""Asia""" +2024-01-29,6929,9229,"[\""Wireless Mouse\"", \""Headphones\""]",2935.46,{},225656,1,"""Asia""" +2024-08-02,6930,9021,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3863.14,"{\""loyalty\"": \""21%\""}",163788,1,"""Africa""" +2023-12-27,6931,4061,"[\""Phone\""]",3326.2,"{\""loyalty\"": \""11%\""}",125090,0,"""Africa""" +2023-08-11,6932,3151,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2747.43,{},269705,1,"""North America""" +2023-04-30,6933,6653,"[\""Keyboard\""]",1185.68,"{\""loyalty\"": \""23%\""}",63931,0,"""South America""" +2024-08-11,6934,4794,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",427.99,"{\""loyalty\"": \""8%\""}",84337,0,"""Asia""" +2024-08-12,6935,824,"[\""Phone\""]",4405.31,{},219438,0,"""Asia""" +2024-09-06,6936,370,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",879.78,"{\"": \""30%\""}",243068,0,"""Asia""" +2023-03-08,6937,3896,"[\""Keyboard\"", \""Laptop\""]",108.0,{},157228,0,"""Asia""" +2024-01-13,6938,9809,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",508.18,"{\""seasonal\"": \""30%\""}",247341,0,"""South America""" +2023-08-14,6939,2446,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2990.35,{},13040,0,"""Asia""" +2023-08-06,6940,3764,"[\""Phone\"", \""Monitor\""]",727.02,"{\""promo\"": \""23%\""}",197727,1,"""North America""" +2024-03-28,6941,8096,"[\""Keyboard\"", \""Headphones\""]",4267.43,{},143565,1,"""North America""" +2024-03-30,6942,4142,"[\""Laptop\"", \""Tablet\""]",1696.28,{},263657,0,"""North America""" +2023-04-05,6943,8148,"[\""Charger\"", \""Tablet\""]",1039.44,{},277501,1,"""Africa""" +2023-03-08,6944,2323,"[\""Monitor\""]",2533.69,{},91159,1,"""Europe""" +2024-08-18,6945,9495,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1189.25,"{\"": \""28%\""}",105147,1,"""Europe""" +2024-04-09,6946,4652,"[\""Tablet\"", \""Keyboard\""]",4038.64,"{\""seasonal\"": \""6%\""}",105236,1,"""Europe""" +2024-07-31,6947,6459,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4950.61,"{\""seasonal\"": \""27%\""}",30154,1,"""Asia""" +2024-06-15,6948,4654,"[\""Tablet\""]",4077.24,"{\""promo\"": \""28%\""}",127298,0,"""Europe""" +2023-04-21,6949,3478,"[\""Headphones\"", \""Laptop\""]",2579.61,{},104624,0,"""Africa""" +2024-08-15,6950,8506,"[\""Monitor\""]",1946.39,{},220978,1,"""Africa""" +2024-04-04,6951,6115,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2538.83,{},228986,0,"""Europe""" +2024-08-18,6952,2539,"[\""Phone\""]",3754.9,{},167188,1,"""Africa""" +2023-03-14,6953,3452,"[\""Phone\""]",1308.59,"{\""seasonal\"": \""10%\""}",18753,1,"""South America""" +2023-05-17,6954,1166,"[\""Phone\""]",3036.0,{},281095,1,"""Asia""" +2024-03-05,6955,145,"[\""Phone\""]",3750.1,{},1972,1,"""North America""" +2023-02-04,6956,1923,"[\""Charger\""]",2529.67,{},146615,1,"""Asia""" +2024-12-30,6957,9583,"[\""Laptop\"", \""Charger\""]",4157.18,"{\""promo\"": \""28%\""}",99653,0,"""Asia""" +2024-08-21,6958,1388,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3982.03,"{\""promo\"": \""7%\""}",39255,0,"""North America""" +2024-10-13,6959,2225,"[\""Charger\"", \""Tablet\""]",4438.41,{},112489,0,"""Africa""" +2023-11-24,6960,9504,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",974.74,"{\""seasonal\"": \""7%\""}",162679,0,"""Europe""" +2024-08-04,6961,2664,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1342.74,"{\""seasonal\"": \""20%\""}",35536,0,"""North America""" +2024-07-20,6962,4234,"[\""Laptop\"", \""Keyboard\""]",2934.63,"{\""promo\"": \""23%\""}",196304,0,"""South America""" +2024-11-19,6963,6668,"[\""Wireless Mouse\""]",4649.25,"{\"": \""28%\""}",279116,0,"""Asia""" +2023-05-07,6964,9159,"[\""Phone\"", \""Keyboard\""]",940.2,{},43748,0,"""Africa""" +2023-07-15,6965,6916,"[\""Headphones\""]",3965.8,"{\"": \""21%\""}",49995,1,"""Europe""" +2023-03-07,6966,1968,"[\""Wireless Mouse\"", \""Tablet\""]",2043.86,{},232515,1,"""Europe""" +2024-04-25,6967,406,"[\""Wireless Mouse\"", \""Monitor\""]",3386.89,{},104263,1,"""South America""" +2023-07-16,6968,2397,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2803.18,"{\""loyalty\"": \""19%\""}",8503,0,"""South America""" +2023-02-10,6969,7680,"[\""Charger\"", \""Tablet\""]",2221.78,{},1202,1,"""Africa""" +2024-10-03,6970,3773,"[\""Tablet\""]",247.7,"{\"": \""6%\""}",175847,1,"""Europe""" +2024-03-25,6971,593,"[\""Wireless Mouse\"", \""Phone\""]",1449.99,"{\""promo\"": \""14%\""}",116696,0,"""Asia""" +2023-03-23,6972,4590,"[\""Phone\""]",3300.91,"{\""promo\"": \""19%\""}",202257,1,"""North America""" +2024-06-30,6973,1229,"[\""Headphones\"", \""Laptop\""]",3671.74,"{\""loyalty\"": \""14%\""}",208646,1,"""Asia""" +2023-09-02,6974,6537,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4866.42,{},244903,1,"""Africa""" +2024-04-05,6975,6850,"[\""Headphones\""]",4414.75,"{\"": \""29%\""}",149612,0,"""South America""" +2024-01-19,6976,7348,"[\""Headphones\""]",4206.28,"{\""loyalty\"": \""9%\""}",111913,1,"""South America""" +2023-01-24,6977,3129,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3238.1,{},296195,1,"""North America""" +2023-05-09,6978,6126,"[\""Keyboard\"", \""Wireless Mouse\""]",2312.86,"{\""loyalty\"": \""16%\""}",286798,0,"""Africa""" +2023-06-26,6979,8889,"[\""Laptop\"", \""Phone\""]",2752.61,{},161861,1,"""Asia""" +2024-03-04,6980,5326,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2561.67,"{\""seasonal\"": \""7%\""}",98903,1,"""South America""" +2024-06-02,6981,448,"[\""Keyboard\""]",3223.3,{},297436,1,"""North America""" +2023-09-02,6982,5664,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2012.48,"{\""promo\"": \""17%\""}",170118,1,"""Asia""" +2023-01-15,6983,3553,"[\""Tablet\"", \""Keyboard\""]",4620.9,{},131689,1,"""South America""" +2023-11-03,6984,3417,"[\""Monitor\"", \""Tablet\""]",1253.75,{},131547,1,"""Africa""" +2023-11-15,6985,9644,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3194.99,"{\""seasonal\"": \""14%\""}",256933,0,"""North America""" +2024-10-20,6986,2279,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",100.48,{},46436,0,"""North America""" +2024-08-12,6987,3806,"[\""Tablet\"", \""Wireless Mouse\""]",4973.12,"{\""promo\"": \""14%\""}",148849,0,"""South America""" +2023-12-05,6988,6616,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2233.23,{},189494,0,"""South America""" +2023-04-21,6989,5020,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4860.24,{},25396,0,"""Asia""" +2023-07-28,6990,1599,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3703.06,"{\"": \""12%\""}",225553,1,"""Europe""" +2023-06-25,6991,4572,"[\""Headphones\""]",3019.94,"{\""promo\"": \""12%\""}",80264,1,"""North America""" +2023-11-17,6992,7312,"[\""Phone\"", \""Headphones\""]",1470.95,{},292737,1,"""South America""" +2024-02-20,6993,9379,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1933.16,{},226380,0,"""South America""" +2023-05-05,6994,5107,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2236.86,{},211732,0,"""Africa""" +2024-06-09,6995,9333,"[\""Wireless Mouse\""]",864.66,"{\""promo\"": \""22%\""}",43135,1,"""South America""" +2023-05-11,6996,3606,"[\""Laptop\""]",3908.92,{},231443,1,"""Europe""" +2023-04-20,6997,1652,"[\""Wireless Mouse\""]",4605.43,"{\""seasonal\"": \""23%\""}",144717,1,"""Asia""" +2024-03-31,6998,9795,"[\""Keyboard\""]",655.54,"{\""seasonal\"": \""8%\""}",77929,0,"""North America""" +2024-04-26,6999,2015,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3928.35,"{\""seasonal\"": \""24%\""}",15686,0,"""Asia""" +2024-12-02,7000,7113,"[\""Wireless Mouse\""]",3088.5,{},27582,1,"""Africa""" +2023-07-17,7001,1409,"[\""Wireless Mouse\""]",1177.3,{},283748,0,"""Africa""" +2024-07-28,7002,2250,"[\""Tablet\""]",3895.7,{},289898,0,"""Africa""" +2024-05-22,7003,6166,"[\""Tablet\""]",3794.78,"{\"": \""23%\""}",20139,0,"""Europe""" +2024-07-13,7004,3258,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",523.11,"{\""loyalty\"": \""22%\""}",274491,1,"""North America""" +2023-10-20,7005,718,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3806.06,{},175725,0,"""Africa""" +2024-03-13,7006,511,"[\""Phone\"", \""Monitor\""]",3946.56,"{\""seasonal\"": \""27%\""}",47565,1,"""South America""" +2023-07-30,7007,9459,"[\""Laptop\"", \""Tablet\""]",4140.53,"{\""promo\"": \""5%\""}",135263,1,"""South America""" +2024-07-02,7008,5221,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1865.21,{},206102,0,"""Asia""" +2024-11-05,7009,1203,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",135.97,"{\""seasonal\"": \""23%\""}",76743,1,"""South America""" +2024-02-14,7010,4276,"[\""Phone\"", \""Monitor\"", \""Charger\""]",821.48,{},171362,1,"""North America""" +2023-11-20,7011,6286,"[\""Keyboard\"", \""Charger\""]",4435.61,"{\""promo\"": \""10%\""}",209749,0,"""Europe""" +2023-11-14,7012,8311,"[\""Laptop\"", \""Monitor\""]",2556.19,"{\""promo\"": \""5%\""}",55741,0,"""Asia""" +2024-06-19,7013,8158,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1170.67,{},182883,0,"""Africa""" +2023-08-02,7014,9689,"[\""Wireless Mouse\"", \""Laptop\""]",2136.5,"{\"": \""9%\""}",110268,0,"""Africa""" +2024-10-12,7015,2767,"[\""Tablet\"", \""Charger\""]",3089.39,{},286591,1,"""Europe""" +2024-06-26,7016,4903,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2174.24,"{\""promo\"": \""27%\""}",161804,1,"""Asia""" +2023-02-12,7017,6110,"[\""Keyboard\"", \""Wireless Mouse\""]",4075.18,"{\""seasonal\"": \""18%\""}",22586,1,"""Europe""" +2023-04-11,7018,4900,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2092.76,{},289624,0,"""South America""" +2023-03-26,7019,8895,"[\""Wireless Mouse\"", \""Laptop\""]",2245.98,{},139699,1,"""Europe""" +2023-01-11,7020,7346,"[\""Keyboard\"", \""Tablet\""]",1756.61,{},209234,1,"""Africa""" +2024-08-27,7021,5001,"[\""Keyboard\"", \""Laptop\""]",116.97,"{\""loyalty\"": \""27%\""}",30240,1,"""Asia""" +2023-01-27,7022,1010,"[\""Keyboard\"", \""Phone\""]",2142.57,{},279577,1,"""North America""" +2023-02-18,7023,8436,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1861.9,{},239623,0,"""South America""" +2024-10-03,7024,9138,"[\""Charger\"", \""Headphones\""]",1853.8,"{\""promo\"": \""7%\""}",191141,0,"""North America""" +2024-10-23,7025,6389,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1564.78,"{\""loyalty\"": \""19%\""}",237674,0,"""Europe""" +2024-07-15,7026,7632,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1583.98,"{\"": \""15%\""}",84401,0,"""Europe""" +2023-06-28,7027,1959,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4966.08,"{\"": \""23%\""}",191220,1,"""Asia""" +2024-07-23,7028,9348,"[\""Wireless Mouse\"", \""Monitor\""]",1721.45,{},186500,0,"""Asia""" +2024-06-23,7029,3473,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2948.87,{},245347,0,"""North America""" +2024-09-11,7030,9847,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1855.98,{},172803,0,"""South America""" +2024-07-02,7031,1130,"[\""Keyboard\"", \""Laptop\""]",1483.85,"{\""promo\"": \""20%\""}",240549,1,"""South America""" +2024-01-31,7032,7471,"[\""Tablet\""]",1620.8,{},172755,1,"""Africa""" +2024-05-29,7033,511,"[\""Wireless Mouse\""]",3294.54,{},98344,1,"""Europe""" +2023-10-30,7034,5514,"[\""Monitor\"", \""Laptop\""]",1337.47,{},125461,0,"""South America""" +2023-02-17,7035,1748,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",985.39,{},254328,1,"""North America""" +2023-04-19,7036,8261,"[\""Keyboard\""]",3412.18,{},15644,1,"""Asia""" +2024-07-26,7037,1029,"[\""Headphones\"", \""Monitor\""]",2711.86,"{\"": \""25%\""}",168369,1,"""Africa""" +2024-06-10,7038,7929,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2504.29,{},63428,1,"""Europe""" +2023-11-11,7039,6099,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3043.44,{},230570,0,"""Asia""" +2024-10-11,7040,5994,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2339.25,{},124050,1,"""Asia""" +2024-02-14,7041,5149,"[\""Laptop\"", \""Headphones\""]",985.25,"{\""promo\"": \""29%\""}",190604,0,"""Africa""" +2023-11-15,7042,4001,"[\""Laptop\"", \""Phone\""]",4736.84,"{\""seasonal\"": \""8%\""}",181471,0,"""Africa""" +2024-06-19,7043,6943,"[\""Keyboard\"", \""Monitor\""]",1792.86,"{\""loyalty\"": \""16%\""}",135476,1,"""Africa""" +2024-08-05,7044,3303,"[\""Tablet\"", \""Charger\""]",1349.87,"{\""loyalty\"": \""30%\""}",191564,0,"""Asia""" +2024-01-28,7045,12,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3442.69,"{\"": \""22%\""}",186497,1,"""Europe""" +2024-12-26,7046,797,"[\""Headphones\"", \""Wireless Mouse\""]",4573.1,"{\""promo\"": \""24%\""}",41435,0,"""Europe""" +2024-12-02,7047,2181,"[\""Headphones\""]",3768.11,"{\""loyalty\"": \""21%\""}",218853,1,"""North America""" +2024-08-18,7048,8371,"[\""Laptop\""]",1019.61,"{\""promo\"": \""11%\""}",21388,1,"""North America""" +2023-01-14,7049,692,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2605.03,"{\""seasonal\"": \""26%\""}",223259,0,"""Asia""" +2024-05-24,7050,8587,"[\""Tablet\"", \""Laptop\""]",3084.63,{},237648,0,"""South America""" +2023-10-24,7051,189,"[\""Wireless Mouse\""]",3116.08,{},5073,1,"""South America""" +2023-03-31,7052,4530,"[\""Wireless Mouse\"", \""Charger\""]",2389.41,{},242540,1,"""South America""" +2024-09-30,7053,3014,"[\""Monitor\""]",3083.71,"{\""promo\"": \""6%\""}",7409,0,"""North America""" +2023-12-25,7054,7936,"[\""Charger\""]",646.36,{},249808,1,"""Africa""" +2023-07-29,7055,3945,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2403.0,"{\"": \""29%\""}",11321,0,"""North America""" +2024-11-04,7056,7992,"[\""Charger\""]",4107.56,{},32934,1,"""North America""" +2024-07-18,7057,4257,"[\""Laptop\""]",285.06,{},92589,0,"""Asia""" +2024-10-26,7058,6036,"[\""Laptop\"", \""Wireless Mouse\""]",3022.02,{},86662,1,"""Africa""" +2023-02-18,7059,2001,"[\""Keyboard\""]",3324.65,"{\"": \""15%\""}",266450,0,"""South America""" +2023-11-24,7060,4273,"[\""Phone\""]",4735.58,"{\""promo\"": \""24%\""}",109449,0,"""South America""" +2023-12-05,7061,3995,"[\""Headphones\"", \""Tablet\""]",860.76,"{\"": \""13%\""}",45234,0,"""Africa""" +2023-12-29,7062,4084,"[\""Wireless Mouse\"", \""Headphones\""]",4022.43,"{\""promo\"": \""19%\""}",27140,1,"""North America""" +2024-08-30,7063,3195,"[\""Keyboard\"", \""Wireless Mouse\""]",2231.26,{},208370,1,"""Asia""" +2023-04-04,7064,6779,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2880.33,{},217103,1,"""North America""" +2023-12-05,7065,1229,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1271.17,{},203437,0,"""Asia""" +2024-07-06,7066,5684,"[\""Charger\"", \""Monitor\""]",326.5,{},16059,1,"""Europe""" +2023-03-05,7067,6521,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2123.39,"{\"": \""19%\""}",79092,1,"""Asia""" +2023-03-16,7068,3442,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",848.24,"{\""promo\"": \""18%\""}",104137,1,"""Africa""" +2024-12-19,7069,6397,"[\""Headphones\"", \""Wireless Mouse\""]",536.02,"{\""loyalty\"": \""27%\""}",126465,0,"""Africa""" +2023-04-27,7070,1599,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",465.85,"{\""seasonal\"": \""8%\""}",187038,1,"""Asia""" +2024-03-09,7071,1772,"[\""Phone\"", \""Charger\""]",2924.62,"{\""seasonal\"": \""29%\""}",226625,0,"""South America""" +2023-10-26,7072,5149,"[\""Monitor\""]",4989.15,{},58781,0,"""Europe""" +2023-08-22,7073,5056,"[\""Headphones\""]",2372.15,{},116821,0,"""Africa""" +2024-03-20,7074,5593,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4873.09,{},190497,0,"""North America""" +2023-04-07,7075,400,"[\""Headphones\"", \""Wireless Mouse\""]",4182.87,"{\""promo\"": \""11%\""}",32071,0,"""North America""" +2023-01-12,7076,969,"[\""Laptop\"", \""Monitor\""]",1303.76,"{\""promo\"": \""30%\""}",57699,0,"""North America""" +2023-04-09,7077,4669,"[\""Tablet\""]",4892.9,"{\""promo\"": \""20%\""}",271209,0,"""South America""" +2023-05-02,7078,1478,"[\""Monitor\""]",1282.12,{},132111,0,"""South America""" +2023-04-08,7079,9676,"[\""Monitor\"", \""Laptop\""]",241.08,{},241458,1,"""South America""" +2023-12-13,7080,814,"[\""Charger\"", \""Keyboard\""]",4181.1,{},289571,0,"""Africa""" +2024-10-19,7081,5304,"[\""Keyboard\""]",1928.97,{},140081,0,"""South America""" +2023-10-06,7082,6424,"[\""Laptop\""]",4413.73,{},67778,1,"""South America""" +2024-02-16,7083,4691,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3206.47,{},250228,0,"""Europe""" +2023-06-14,7084,4566,"[\""Monitor\""]",3618.13,"{\"": \""7%\""}",68440,0,"""Asia""" +2023-04-10,7085,4542,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1304.89,{},80690,0,"""South America""" +2023-01-17,7086,5543,"[\""Wireless Mouse\""]",4898.17,"{\"": \""16%\""}",148876,0,"""Europe""" +2024-08-03,7087,7865,"[\""Monitor\"", \""Keyboard\""]",1068.18,{},66843,0,"""Asia""" +2024-07-06,7088,6220,"[\""Charger\"", \""Headphones\"", \""Phone\""]",368.26,{},166286,1,"""Europe""" +2024-06-25,7089,9394,"[\""Charger\"", \""Laptop\""]",4908.37,{},112625,1,"""Asia""" +2023-06-16,7090,6408,"[\""Charger\"", \""Tablet\""]",4134.59,"{\""loyalty\"": \""11%\""}",208249,1,"""North America""" +2023-08-09,7091,1063,"[\""Phone\""]",4843.99,{},153432,1,"""South America""" +2024-11-16,7092,8932,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2209.14,{},29304,1,"""Europe""" +2024-10-10,7093,3797,"[\""Charger\""]",1735.24,{},220826,0,"""Asia""" +2023-08-10,7094,6314,"[\""Tablet\"", \""Phone\""]",2666.97,"{\""loyalty\"": \""5%\""}",126647,0,"""Africa""" +2023-03-01,7095,1495,"[\""Tablet\""]",1603.83,{},44603,1,"""Europe""" +2024-02-26,7096,9498,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3297.19,{},208975,1,"""South America""" +2023-12-13,7097,753,"[\""Wireless Mouse\"", \""Monitor\""]",167.66,{},115329,0,"""North America""" +2024-08-14,7098,7192,"[\""Keyboard\""]",329.65,"{\"": \""6%\""}",297551,1,"""North America""" +2024-06-11,7099,5590,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4909.63,{},167660,1,"""Africa""" +2023-07-06,7100,8063,"[\""Wireless Mouse\""]",3290.92,"{\""promo\"": \""23%\""}",231985,0,"""Africa""" +2024-08-22,7101,434,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2111.93,{},25422,0,"""Africa""" +2024-01-04,7102,6116,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2808.06,{},269042,0,"""Africa""" +2023-02-25,7103,5870,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1452.8,{},216127,0,"""Asia""" +2023-04-17,7104,3737,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1569.11,{},38411,0,"""Asia""" +2023-06-10,7105,4426,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4594.05,"{\""seasonal\"": \""13%\""}",11022,1,"""Africa""" +2023-04-26,7106,3742,"[\""Headphones\"", \""Monitor\""]",579.28,"{\""promo\"": \""10%\""}",50107,1,"""Europe""" +2024-05-22,7107,3865,"[\""Phone\"", \""Headphones\""]",4603.62,{},104725,1,"""Asia""" +2023-09-13,7108,3399,"[\""Headphones\""]",476.39,"{\""seasonal\"": \""18%\""}",18754,1,"""Asia""" +2023-09-15,7109,9744,"[\""Laptop\"", \""Wireless Mouse\""]",1978.93,"{\""loyalty\"": \""20%\""}",85955,1,"""Asia""" +2023-12-13,7110,8285,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2350.16,{},147159,1,"""Asia""" +2023-12-13,7111,318,"[\""Keyboard\""]",1427.51,{},247604,0,"""South America""" +2023-06-03,7112,1289,"[\""Monitor\""]",3300.28,"{\""promo\"": \""13%\""}",221429,0,"""South America""" +2024-03-29,7113,9755,"[\""Wireless Mouse\""]",2420.92,{},239771,0,"""North America""" +2023-05-27,7114,6411,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3452.77,{},142639,1,"""Europe""" +2024-02-18,7115,3090,"[\""Keyboard\"", \""Phone\""]",3868.03,{},187670,0,"""North America""" +2023-05-04,7116,3435,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3769.96,{},48313,0,"""Asia""" +2024-11-01,7117,2705,"[\""Headphones\"", \""Laptop\""]",1541.77,{},232168,1,"""Africa""" +2023-07-22,7118,3196,"[\""Headphones\""]",1771.26,"{\"": \""15%\""}",185985,1,"""North America""" +2023-11-24,7119,859,"[\""Keyboard\""]",1183.6,"{\""seasonal\"": \""29%\""}",254858,1,"""Europe""" +2024-12-14,7120,749,"[\""Headphones\"", \""Tablet\""]",3565.06,"{\"": \""24%\""}",266994,1,"""Asia""" +2023-11-21,7121,9955,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",366.16,{},281031,1,"""Asia""" +2024-02-18,7122,3896,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3128.49,"{\""seasonal\"": \""17%\""}",69557,1,"""South America""" +2024-08-07,7123,2822,"[\""Laptop\""]",1797.26,{},95219,1,"""North America""" +2024-12-11,7124,1946,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4721.38,"{\""loyalty\"": \""29%\""}",211598,0,"""Europe""" +2024-06-10,7125,4382,"[\""Headphones\""]",1008.76,{},9117,1,"""South America""" +2024-12-28,7126,2497,"[\""Phone\""]",1504.25,{},179871,0,"""North America""" +2024-07-21,7127,9117,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1122.67,{},143502,0,"""Asia""" +2024-02-25,7128,865,"[\""Headphones\""]",2864.76,{},92235,0,"""Europe""" +2023-12-14,7129,7837,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2452.21,"{\""loyalty\"": \""25%\""}",121188,1,"""Africa""" +2024-01-09,7130,6426,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",493.6,{},257722,1,"""South America""" +2023-03-17,7131,3646,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3397.93,"{\""seasonal\"": \""23%\""}",46868,1,"""Asia""" +2023-11-14,7132,5697,"[\""Monitor\""]",1976.12,{},3656,1,"""South America""" +2024-05-21,7133,145,"[\""Wireless Mouse\"", \""Monitor\""]",4083.32,{},210307,0,"""South America""" +2023-03-08,7134,8411,"[\""Monitor\"", \""Wireless Mouse\""]",1125.38,{},232633,1,"""North America""" +2023-09-04,7135,5778,"[\""Phone\"", \""Wireless Mouse\""]",2380.12,{},28991,0,"""Africa""" +2023-11-16,7136,3022,"[\""Phone\""]",4441.6,"{\""seasonal\"": \""18%\""}",139317,0,"""North America""" +2023-05-04,7137,5704,"[\""Monitor\"", \""Charger\""]",3691.03,{},263330,1,"""North America""" +2023-10-21,7138,9244,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2575.06,{},17103,1,"""Africa""" +2023-07-03,7139,3685,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",101.78,"{\""promo\"": \""7%\""}",216446,1,"""South America""" +2024-12-26,7140,2324,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",896.53,{},167498,0,"""North America""" +2023-10-24,7141,4527,"[\""Monitor\""]",2085.44,{},8916,0,"""Europe""" +2023-09-16,7142,8266,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4357.95,"{\""promo\"": \""14%\""}",96068,0,"""South America""" +2024-10-25,7143,1003,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3501.33,{},197808,0,"""South America""" +2024-01-16,7144,8398,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",119.96,{},125706,0,"""North America""" +2024-11-13,7145,2212,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3325.61,{},69631,1,"""Africa""" +2024-08-13,7146,6468,"[\""Wireless Mouse\""]",2275.78,"{\""loyalty\"": \""9%\""}",243781,0,"""North America""" +2023-09-11,7147,858,"[\""Headphones\"", \""Monitor\""]",4518.24,{},7756,0,"""North America""" +2023-12-29,7148,32,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4882.39,{},118607,0,"""Asia""" +2024-12-18,7149,2958,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1715.52,"{\"": \""6%\""}",168687,0,"""Africa""" +2023-08-24,7150,5384,"[\""Tablet\"", \""Charger\""]",4503.4,{},68275,1,"""North America""" +2024-09-29,7151,3405,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4134.18,{},255259,1,"""North America""" +2024-11-20,7152,7772,"[\""Laptop\""]",762.27,{},257542,1,"""North America""" +2024-11-21,7153,4200,"[\""Wireless Mouse\""]",3121.45,"{\""promo\"": \""26%\""}",38845,1,"""Africa""" +2023-08-16,7154,3404,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1547.87,{},254980,1,"""Asia""" +2024-06-29,7155,1808,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4744.97,"{\"": \""14%\""}",120814,1,"""Europe""" +2023-10-18,7156,3352,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4160.12,{},3848,1,"""North America""" +2023-12-07,7157,7406,"[\""Laptop\"", \""Phone\""]",3832.3,"{\""seasonal\"": \""28%\""}",243076,1,"""Europe""" +2024-08-16,7158,3898,"[\""Wireless Mouse\""]",4152.04,"{\""promo\"": \""26%\""}",79687,0,"""North America""" +2023-03-25,7159,5771,"[\""Headphones\"", \""Keyboard\""]",1371.44,"{\""promo\"": \""18%\""}",196469,1,"""North America""" +2023-02-11,7160,5655,"[\""Monitor\"", \""Charger\""]",1525.68,{},191604,1,"""Africa""" +2023-05-09,7161,7543,"[\""Wireless Mouse\""]",1874.87,"{\""promo\"": \""28%\""}",89086,0,"""Europe""" +2023-10-16,7162,4168,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4707.1,"{\""loyalty\"": \""9%\""}",108794,1,"""Europe""" +2023-02-12,7163,3701,"[\""Tablet\""]",206.46,{},253988,0,"""Africa""" +2023-06-12,7164,6227,"[\""Headphones\""]",1417.85,{},18523,1,"""North America""" +2024-05-25,7165,3519,"[\""Keyboard\"", \""Phone\""]",1698.03,"{\""promo\"": \""8%\""}",60607,0,"""Europe""" +2023-10-22,7166,3424,"[\""Monitor\""]",1327.16,{},234911,0,"""Asia""" +2023-09-20,7167,8151,"[\""Keyboard\"", \""Wireless Mouse\""]",1993.4,{},118794,1,"""South America""" +2024-08-10,7168,1431,"[\""Headphones\"", \""Charger\""]",781.95,"{\"": \""18%\""}",8658,0,"""Europe""" +2023-04-24,7169,9327,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1482.12,"{\""seasonal\"": \""29%\""}",101787,1,"""South America""" +2023-06-28,7170,3347,"[\""Wireless Mouse\""]",1859.4,"{\""promo\"": \""14%\""}",175418,1,"""Europe""" +2023-02-11,7171,7257,"[\""Tablet\""]",3385.32,{},204651,0,"""North America""" +2023-03-24,7172,4141,"[\""Laptop\"", \""Wireless Mouse\""]",2538.62,{},32270,0,"""Europe""" +2024-01-30,7173,7172,"[\""Tablet\"", \""Charger\""]",2250.51,{},92233,0,"""Africa""" +2024-11-20,7174,9673,"[\""Laptop\""]",3257.83,{},199778,0,"""North America""" +2024-05-05,7175,6801,"[\""Headphones\"", \""Tablet\""]",1239.98,{},85604,1,"""Europe""" +2024-09-14,7176,5751,"[\""Wireless Mouse\""]",382.41,"{\""loyalty\"": \""26%\""}",12696,0,"""South America""" +2024-06-29,7177,9339,"[\""Headphones\""]",2046.32,"{\""promo\"": \""18%\""}",166640,1,"""South America""" +2023-02-07,7178,6262,"[\""Charger\""]",60.99,"{\""loyalty\"": \""11%\""}",155722,0,"""Asia""" +2024-02-06,7179,3699,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4029.7,"{\""promo\"": \""25%\""}",253284,1,"""Asia""" +2024-12-08,7180,1816,"[\""Phone\"", \""Charger\""]",3398.92,"{\""loyalty\"": \""27%\""}",182010,0,"""Africa""" +2024-05-20,7181,2509,"[\""Monitor\"", \""Laptop\""]",2681.34,{},179718,1,"""Africa""" +2023-12-07,7182,2985,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4989.76,{},111980,0,"""South America""" +2024-11-17,7183,8011,"[\""Monitor\"", \""Headphones\""]",3363.54,"{\""promo\"": \""16%\""}",193870,0,"""Europe""" +2023-07-02,7184,2696,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2554.47,{},66794,0,"""South America""" +2024-01-27,7185,5188,"[\""Charger\""]",586.53,"{\""promo\"": \""20%\""}",243649,1,"""Europe""" +2024-09-04,7186,596,"[\""Keyboard\""]",100.48,"{\""promo\"": \""19%\""}",180886,0,"""Asia""" +2024-04-04,7187,8546,"[\""Monitor\"", \""Headphones\""]",4595.47,{},138010,1,"""Europe""" +2024-02-22,7188,4793,"[\""Wireless Mouse\"", \""Monitor\""]",3799.69,{},167816,0,"""North America""" +2023-01-07,7189,1658,"[\""Phone\""]",1952.41,"{\""promo\"": \""16%\""}",118020,1,"""Europe""" +2023-01-01,7190,7359,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2847.26,"{\"": \""12%\""}",191268,1,"""South America""" +2023-12-29,7191,7044,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1629.19,"{\"": \""22%\""}",244221,1,"""North America""" +2024-07-31,7192,2443,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1382.85,"{\""seasonal\"": \""28%\""}",223247,0,"""South America""" +2024-01-04,7193,267,"[\""Keyboard\"", \""Headphones\""]",4073.09,"{\""seasonal\"": \""22%\""}",158455,0,"""South America""" +2024-11-09,7194,1580,"[\""Charger\"", \""Laptop\""]",4574.29,"{\""loyalty\"": \""12%\""}",246741,1,"""Asia""" +2024-01-07,7195,4512,"[\""Phone\""]",4324.93,"{\""promo\"": \""28%\""}",50628,0,"""Europe""" +2023-05-31,7196,1254,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3403.88,"{\""promo\"": \""11%\""}",295982,0,"""South America""" +2023-03-11,7197,4930,"[\""Headphones\""]",3699.14,{},268459,0,"""Africa""" +2024-03-11,7198,7405,"[\""Headphones\"", \""Laptop\""]",3766.19,"{\"": \""19%\""}",191531,0,"""South America""" +2024-04-02,7199,3809,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2016.12,"{\""loyalty\"": \""19%\""}",260189,0,"""Europe""" +2024-09-17,7200,6829,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",274.83,"{\"": \""19%\""}",229717,1,"""North America""" +2023-07-06,7201,31,"[\""Charger\""]",533.94,{},225226,1,"""South America""" +2023-02-24,7202,311,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3714.16,{},109343,1,"""Europe""" +2023-10-11,7203,298,"[\""Keyboard\""]",4136.6,{},121548,1,"""Africa""" +2023-05-09,7204,2044,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2093.82,"{\""promo\"": \""10%\""}",213056,1,"""South America""" +2024-01-16,7205,8504,"[\""Charger\"", \""Phone\"", \""Laptop\""]",833.01,{},22985,1,"""Asia""" +2023-03-24,7206,3330,"[\""Monitor\"", \""Wireless Mouse\""]",1830.86,{},111869,0,"""Africa""" +2023-10-22,7207,7835,"[\""Wireless Mouse\""]",3551.85,{},13466,1,"""Asia""" +2024-05-20,7208,2739,"[\""Laptop\""]",452.02,"{\""seasonal\"": \""25%\""}",181102,0,"""Asia""" +2024-02-18,7209,5894,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1899.89,"{\""loyalty\"": \""19%\""}",108546,1,"""North America""" +2023-10-17,7210,9560,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3016.48,{},36228,0,"""South America""" +2023-01-25,7211,494,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4857.4,{},153730,0,"""North America""" +2024-04-19,7212,1965,"[\""Phone\"", \""Tablet\"", \""Charger\""]",189.4,{},212866,0,"""Africa""" +2023-04-18,7213,2057,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4019.6,"{\""promo\"": \""21%\""}",10053,0,"""Africa""" +2023-10-05,7214,4797,"[\""Monitor\"", \""Tablet\""]",353.41,"{\""loyalty\"": \""11%\""}",224433,1,"""North America""" +2023-12-23,7215,9635,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2799.86,"{\"": \""22%\""}",30556,1,"""Europe""" +2023-08-20,7216,4188,"[\""Tablet\"", \""Charger\""]",3370.71,{},224525,0,"""Europe""" +2024-01-28,7217,8668,"[\""Keyboard\""]",3492.37,"{\""seasonal\"": \""24%\""}",50459,1,"""North America""" +2024-03-17,7218,7755,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2950.13,"{\"": \""20%\""}",141365,0,"""Europe""" +2024-07-20,7219,8611,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2296.63,"{\""seasonal\"": \""27%\""}",293932,1,"""South America""" +2023-08-27,7220,8002,"[\""Laptop\""]",2064.41,{},268969,1,"""Europe""" +2023-06-07,7221,9287,"[\""Tablet\"", \""Laptop\""]",3948.25,{},269446,1,"""Asia""" +2024-07-31,7222,8959,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1528.28,{},13292,0,"""Africa""" +2023-03-04,7223,9749,"[\""Headphones\"", \""Keyboard\""]",914.01,{},164974,1,"""North America""" +2023-08-20,7224,8475,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4434.72,{},260219,0,"""Asia""" +2023-02-19,7225,7203,"[\""Laptop\"", \""Tablet\""]",4497.24,{},219442,0,"""Asia""" +2024-10-12,7226,4122,"[\""Headphones\""]",4812.57,"{\"": \""27%\""}",97349,0,"""South America""" +2024-01-14,7227,9218,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2997.42,{},61110,1,"""Asia""" +2023-02-28,7228,6719,"[\""Phone\"", \""Headphones\""]",4509.65,"{\""seasonal\"": \""13%\""}",204698,1,"""Asia""" +2024-01-22,7229,8472,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1497.66,"{\""seasonal\"": \""22%\""}",89200,0,"""South America""" +2024-04-26,7230,2267,"[\""Headphones\"", \""Keyboard\""]",2204.94,"{\""seasonal\"": \""24%\""}",287442,0,"""North America""" +2024-03-27,7231,2134,"[\""Monitor\""]",3232.35,{},7757,1,"""Asia""" +2024-04-26,7232,8213,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",928.49,{},78858,1,"""Asia""" +2023-02-02,7233,8225,"[\""Phone\""]",738.12,{},286822,1,"""Europe""" +2024-11-21,7234,658,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4645.15,"{\""promo\"": \""15%\""}",30573,1,"""Africa""" +2023-07-19,7235,4172,"[\""Monitor\""]",4195.19,{},236249,0,"""Europe""" +2024-05-19,7236,61,"[\""Wireless Mouse\""]",1866.08,"{\""seasonal\"": \""6%\""}",157329,1,"""South America""" +2024-06-03,7237,9693,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2019.01,{},12818,1,"""North America""" +2023-09-19,7238,1827,"[\""Headphones\"", \""Tablet\""]",848.86,"{\"": \""13%\""}",179025,1,"""Europe""" +2024-02-12,7239,1989,"[\""Tablet\""]",970.77,{},288422,0,"""Europe""" +2023-09-13,7240,782,"[\""Keyboard\""]",788.86,"{\""promo\"": \""12%\""}",286296,1,"""North America""" +2023-05-07,7241,5838,"[\""Phone\""]",1802.37,{},47720,1,"""Europe""" +2024-12-31,7242,8059,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2153.22,"{\""loyalty\"": \""18%\""}",120444,0,"""Asia""" +2024-08-26,7243,1008,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4897.52,"{\""promo\"": \""19%\""}",15660,1,"""North America""" +2024-10-25,7244,3215,"[\""Wireless Mouse\""]",885.53,"{\"": \""11%\""}",71869,0,"""South America""" +2024-01-22,7245,3197,"[\""Phone\""]",2420.91,{},77805,1,"""Asia""" +2023-11-27,7246,7046,"[\""Tablet\""]",1827.58,{},116089,1,"""Europe""" +2023-09-10,7247,4228,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4817.88,"{\""seasonal\"": \""12%\""}",63181,1,"""Europe""" +2024-06-22,7248,2110,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",572.3,{},258432,0,"""Africa""" +2024-02-04,7249,636,"[\""Wireless Mouse\""]",4298.82,{},272435,0,"""North America""" +2023-03-28,7250,2091,"[\""Monitor\"", \""Keyboard\""]",3570.34,{},264981,0,"""Asia""" +2023-09-26,7251,966,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",709.86,"{\""loyalty\"": \""10%\""}",50429,0,"""Asia""" +2023-08-28,7252,6280,"[\""Laptop\""]",3455.05,{},133904,1,"""Africa""" +2024-01-03,7253,5162,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3067.56,{},256131,1,"""North America""" +2024-09-08,7254,4286,"[\""Phone\"", \""Tablet\""]",2865.84,{},172705,0,"""Asia""" +2023-04-29,7255,1812,"[\""Keyboard\"", \""Phone\""]",3572.86,"{\""promo\"": \""12%\""}",297769,1,"""North America""" +2023-10-26,7256,992,"[\""Phone\""]",4406.99,"{\""seasonal\"": \""26%\""}",146489,0,"""Asia""" +2024-12-24,7257,996,"[\""Laptop\"", \""Charger\""]",4726.7,"{\""promo\"": \""26%\""}",198580,1,"""North America""" +2023-04-14,7258,2603,"[\""Tablet\"", \""Monitor\""]",1108.14,"{\""seasonal\"": \""14%\""}",13671,0,"""Africa""" +2023-12-10,7259,3845,"[\""Laptop\""]",3771.42,{},294371,0,"""Europe""" +2024-06-23,7260,1372,"[\""Charger\""]",3324.82,"{\""seasonal\"": \""29%\""}",85919,0,"""Europe""" +2023-04-11,7261,3655,"[\""Laptop\"", \""Keyboard\""]",419.63,"{\""promo\"": \""25%\""}",4867,0,"""North America""" +2023-08-11,7262,8311,"[\""Wireless Mouse\""]",926.66,{},178153,0,"""South America""" +2023-08-26,7263,9717,"[\""Headphones\"", \""Monitor\""]",1272.05,"{\"": \""18%\""}",143038,1,"""North America""" +2023-07-13,7264,6697,"[\""Keyboard\"", \""Headphones\""]",341.49,"{\""loyalty\"": \""23%\""}",47844,1,"""Asia""" +2024-08-07,7265,1450,"[\""Keyboard\""]",3484.07,{},116654,0,"""Europe""" +2024-04-03,7266,6729,"[\""Headphones\"", \""Keyboard\""]",1188.24,"{\""seasonal\"": \""26%\""}",163215,0,"""Asia""" +2023-05-19,7267,575,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3029.98,"{\""seasonal\"": \""21%\""}",4379,1,"""Africa""" +2024-10-08,7268,4505,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2337.61,{},185206,1,"""Europe""" +2024-02-19,7269,1990,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4747.12,{},159999,1,"""Asia""" +2024-07-28,7270,9874,"[\""Monitor\""]",1198.86,"{\""promo\"": \""6%\""}",280884,1,"""South America""" +2023-02-20,7271,1187,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",763.25,{},285727,0,"""Africa""" +2024-06-30,7272,4041,"[\""Tablet\"", \""Headphones\""]",564.37,{},120574,0,"""Europe""" +2024-03-28,7273,859,"[\""Tablet\"", \""Charger\""]",541.21,"{\""loyalty\"": \""9%\""}",45743,1,"""North America""" +2023-10-16,7274,3163,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3252.87,{},14064,0,"""Europe""" +2023-04-17,7275,3739,"[\""Charger\"", \""Tablet\"", \""Phone\""]",771.06,{},70390,0,"""Asia""" +2024-10-12,7276,5972,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4288.92,"{\""promo\"": \""26%\""}",60875,0,"""Europe""" +2024-02-15,7277,7127,"[\""Monitor\""]",2564.79,"{\""promo\"": \""17%\""}",176894,1,"""Asia""" +2023-09-17,7278,4024,"[\""Charger\"", \""Monitor\""]",1800.96,{},280492,0,"""Europe""" +2024-10-18,7279,5623,"[\""Keyboard\"", \""Headphones\""]",3664.42,{},18445,0,"""North America""" +2023-05-05,7280,737,"[\""Tablet\""]",1141.95,{},280263,1,"""Africa""" +2024-07-09,7281,73,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1937.8,{},280279,1,"""North America""" +2023-04-20,7282,1772,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3362.42,{},66554,0,"""South America""" +2023-08-18,7283,9725,"[\""Laptop\"", \""Tablet\""]",4514.12,{},242484,0,"""North America""" +2024-06-29,7284,9680,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3563.2,"{\"": \""23%\""}",270601,0,"""Africa""" +2023-07-21,7285,1767,"[\""Headphones\""]",2242.21,"{\"": \""7%\""}",142034,1,"""Asia""" +2024-11-04,7286,1726,"[\""Phone\""]",2969.01,{},208883,0,"""Europe""" +2023-12-12,7287,3265,"[\""Phone\"", \""Tablet\""]",3360.35,"{\""loyalty\"": \""28%\""}",209653,0,"""South America""" +2023-09-15,7288,6649,"[\""Phone\"", \""Laptop\""]",2808.75,{},294219,0,"""Africa""" +2023-06-24,7289,4133,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3031.2,"{\""seasonal\"": \""25%\""}",127342,1,"""Europe""" +2023-10-20,7290,4885,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1414.56,{},108059,1,"""Asia""" +2024-01-12,7291,2198,"[\""Headphones\""]",3788.63,"{\""loyalty\"": \""18%\""}",55492,0,"""South America""" +2024-10-30,7292,5100,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1051.51,"{\""promo\"": \""14%\""}",52216,1,"""Europe""" +2023-09-06,7293,7109,"[\""Charger\""]",131.21,{},73163,0,"""Africa""" +2023-04-02,7294,7047,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3190.66,"{\""loyalty\"": \""23%\""}",188633,0,"""Africa""" +2024-10-22,7295,7285,"[\""Laptop\"", \""Headphones\""]",1214.3,{},37585,0,"""Europe""" +2023-01-22,7296,8022,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2851.74,"{\""loyalty\"": \""26%\""}",245929,1,"""South America""" +2023-05-31,7297,5695,"[\""Keyboard\"", \""Wireless Mouse\""]",1626.87,"{\"": \""18%\""}",90491,1,"""North America""" +2023-03-18,7298,7228,"[\""Phone\"", \""Tablet\""]",1280.21,{},120559,1,"""South America""" +2023-07-26,7299,9576,"[\""Headphones\""]",1955.57,"{\""promo\"": \""6%\""}",231879,0,"""Asia""" +2024-11-27,7300,736,"[\""Phone\"", \""Charger\"", \""Laptop\""]",349.99,{},54721,1,"""North America""" +2024-04-01,7301,6767,"[\""Laptop\""]",4245.32,"{\""promo\"": \""13%\""}",187043,1,"""Asia""" +2024-05-26,7302,9166,"[\""Wireless Mouse\""]",3784.72,{},214172,1,"""Europe""" +2023-06-19,7303,9921,"[\""Phone\"", \""Keyboard\""]",1529.96,{},119291,1,"""South America""" +2023-10-30,7304,7142,"[\""Keyboard\""]",575.02,{},255257,0,"""Africa""" +2024-08-29,7305,9812,"[\""Tablet\""]",4011.91,{},148668,1,"""Asia""" +2023-12-17,7306,5836,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2138.06,"{\""promo\"": \""17%\""}",165431,1,"""Europe""" +2024-07-05,7307,2424,"[\""Wireless Mouse\""]",212.25,{},191394,1,"""South America""" +2024-01-23,7308,2398,"[\""Tablet\""]",1197.68,"{\""loyalty\"": \""28%\""}",90574,0,"""North America""" +2023-09-27,7309,4607,"[\""Wireless Mouse\"", \""Keyboard\""]",2398.67,"{\""seasonal\"": \""26%\""}",286763,1,"""Europe""" +2024-07-02,7310,9703,"[\""Headphones\""]",2572.13,{},188431,0,"""Asia""" +2023-02-07,7311,4425,"[\""Monitor\""]",3979.28,{},162908,0,"""Europe""" +2023-12-05,7312,8606,"[\""Laptop\""]",1608.13,{},232286,1,"""Asia""" +2023-05-01,7313,3853,"[\""Keyboard\"", \""Tablet\""]",1871.33,{},218860,1,"""South America""" +2024-09-13,7314,3561,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",457.51,"{\"": \""28%\""}",34954,0,"""North America""" +2023-02-01,7315,2043,"[\""Charger\""]",3889.49,{},191036,0,"""North America""" +2023-12-09,7316,678,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",146.95,{},76322,0,"""Europe""" +2023-03-18,7317,481,"[\""Headphones\""]",3127.53,{},273211,1,"""Africa""" +2024-07-24,7318,6555,"[\""Wireless Mouse\"", \""Tablet\""]",121.59,"{\"": \""15%\""}",17825,0,"""Asia""" +2023-04-13,7319,8378,"[\""Laptop\""]",57.06,{},93140,1,"""Europe""" +2024-10-30,7320,125,"[\""Phone\"", \""Headphones\""]",1498.82,{},1743,0,"""Europe""" +2023-09-28,7321,55,"[\""Wireless Mouse\"", \""Headphones\""]",4687.65,{},291822,1,"""North America""" +2024-12-14,7322,6577,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",817.4,"{\""seasonal\"": \""14%\""}",72310,0,"""Asia""" +2024-10-26,7323,7139,"[\""Headphones\""]",693.98,"{\"": \""30%\""}",184584,1,"""Europe""" +2024-07-01,7324,5839,"[\""Wireless Mouse\"", \""Phone\""]",3343.05,{},228498,0,"""South America""" +2023-08-18,7325,7390,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3935.85,{},288137,1,"""Africa""" +2024-08-22,7326,3378,"[\""Monitor\""]",779.1,"{\""seasonal\"": \""18%\""}",212050,1,"""Europe""" +2024-09-11,7327,2926,"[\""Tablet\""]",4927.84,{},15134,1,"""Europe""" +2023-01-12,7328,1429,"[\""Monitor\""]",2762.28,"{\""seasonal\"": \""23%\""}",107290,1,"""Asia""" +2024-02-29,7329,8165,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2193.74,{},144592,1,"""South America""" +2024-04-18,7330,751,"[\""Headphones\"", \""Laptop\""]",3784.22,"{\""seasonal\"": \""22%\""}",146602,0,"""Asia""" +2024-04-28,7331,1088,"[\""Charger\""]",2761.11,"{\""seasonal\"": \""11%\""}",35033,0,"""North America""" +2023-06-05,7332,8637,"[\""Headphones\""]",2167.74,"{\""promo\"": \""18%\""}",173814,0,"""Asia""" +2024-05-12,7333,5079,"[\""Tablet\""]",2241.1,"{\""seasonal\"": \""19%\""}",78476,1,"""Europe""" +2024-11-15,7334,5684,"[\""Charger\"", \""Keyboard\""]",2400.37,"{\""seasonal\"": \""18%\""}",158928,1,"""Asia""" +2023-06-24,7335,1426,"[\""Phone\""]",1648.06,"{\"": \""8%\""}",136631,0,"""Europe""" +2023-05-31,7336,1947,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3949.27,"{\""seasonal\"": \""11%\""}",72375,0,"""Europe""" +2024-03-19,7337,5371,"[\""Headphones\"", \""Phone\""]",4766.49,"{\""promo\"": \""27%\""}",8895,1,"""Asia""" +2024-08-11,7338,2467,"[\""Monitor\"", \""Phone\""]",419.43,"{\""seasonal\"": \""25%\""}",250449,1,"""South America""" +2024-10-29,7339,3812,"[\""Wireless Mouse\"", \""Headphones\""]",1208.08,{},106556,0,"""Africa""" +2024-07-29,7340,5639,"[\""Monitor\"", \""Keyboard\""]",2215.84,"{\""loyalty\"": \""20%\""}",49620,1,"""Asia""" +2023-04-15,7341,465,"[\""Laptop\"", \""Keyboard\""]",4152.74,"{\""seasonal\"": \""15%\""}",72771,1,"""Africa""" +2024-12-21,7342,6415,"[\""Laptop\""]",3312.48,{},204235,1,"""South America""" +2024-11-24,7343,2702,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4723.77,{},253753,0,"""Africa""" +2023-04-05,7344,9284,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1173.98,"{\""seasonal\"": \""30%\""}",8914,1,"""North America""" +2023-11-22,7345,9610,"[\""Phone\""]",4491.21,"{\"": \""21%\""}",199494,0,"""Europe""" +2024-03-13,7346,6409,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2820.34,{},260177,1,"""South America""" +2024-01-19,7347,7240,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4291.85,{},202271,0,"""South America""" +2023-03-09,7348,860,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4847.55,{},109826,1,"""South America""" +2024-10-04,7349,2303,"[\""Laptop\"", \""Charger\""]",2709.95,"{\""seasonal\"": \""21%\""}",260133,1,"""Asia""" +2024-10-28,7350,4111,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3306.56,"{\""promo\"": \""28%\""}",293216,1,"""North America""" +2023-03-06,7351,9939,"[\""Laptop\""]",2330.6,"{\""promo\"": \""11%\""}",137668,0,"""Europe""" +2024-09-04,7352,4908,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1859.11,"{\"": \""19%\""}",199372,1,"""North America""" +2024-12-25,7353,8359,"[\""Phone\"", \""Monitor\""]",2507.44,"{\""loyalty\"": \""21%\""}",184969,1,"""South America""" +2024-03-17,7354,1435,"[\""Laptop\""]",4748.96,"{\""seasonal\"": \""10%\""}",102485,0,"""Asia""" +2024-06-16,7355,5341,"[\""Monitor\"", \""Wireless Mouse\""]",2610.29,"{\""promo\"": \""27%\""}",185462,1,"""South America""" +2023-11-19,7356,8960,"[\""Headphones\"", \""Charger\""]",695.56,"{\""seasonal\"": \""30%\""}",154128,1,"""Asia""" +2023-05-22,7357,5077,"[\""Charger\"", \""Monitor\""]",2784.39,{},186233,1,"""Europe""" +2024-06-04,7358,3544,"[\""Tablet\"", \""Phone\"", \""Charger\""]",952.36,"{\""seasonal\"": \""22%\""}",92144,1,"""North America""" +2024-08-11,7359,3713,"[\""Monitor\"", \""Phone\""]",4466.91,{},263422,1,"""North America""" +2023-11-05,7360,3397,"[\""Laptop\"", \""Phone\""]",4529.69,{},284467,1,"""Africa""" +2023-04-20,7361,3713,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3249.07,{},108545,0,"""Europe""" +2024-11-19,7362,6508,"[\""Tablet\""]",1910.91,"{\""promo\"": \""25%\""}",255530,0,"""North America""" +2024-03-19,7363,3791,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2708.11,{},141249,0,"""Europe""" +2024-09-28,7364,3823,"[\""Phone\"", \""Headphones\""]",911.62,{},187714,1,"""Africa""" +2023-07-01,7365,5818,"[\""Charger\"", \""Keyboard\""]",4379.11,{},197979,1,"""Africa""" +2024-12-21,7366,397,"[\""Headphones\"", \""Tablet\""]",3029.96,"{\""loyalty\"": \""29%\""}",224874,1,"""Asia""" +2024-10-15,7367,5916,"[\""Tablet\""]",2421.47,"{\""loyalty\"": \""21%\""}",131301,1,"""Asia""" +2024-06-08,7368,6392,"[\""Headphones\"", \""Phone\""]",1437.79,{},124789,1,"""Africa""" +2023-12-01,7369,2487,"[\""Wireless Mouse\"", \""Phone\""]",3887.69,{},127654,0,"""North America""" +2024-08-06,7370,5085,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",952.26,{},254225,0,"""Europe""" +2024-01-14,7371,5799,"[\""Tablet\"", \""Phone\""]",4739.26,{},271946,0,"""Africa""" +2024-12-19,7372,2548,"[\""Charger\""]",1552.96,{},30258,1,"""Asia""" +2024-05-14,7373,4609,"[\""Wireless Mouse\"", \""Laptop\""]",477.37,"{\""seasonal\"": \""26%\""}",54932,0,"""North America""" +2024-07-19,7374,636,"[\""Charger\"", \""Phone\""]",2473.61,{},179039,0,"""Africa""" +2023-11-19,7375,6144,"[\""Tablet\"", \""Charger\""]",2981.39,{},166554,0,"""Europe""" +2024-01-07,7376,8015,"[\""Charger\"", \""Keyboard\""]",1508.97,{},272572,0,"""South America""" +2023-09-20,7377,3678,"[\""Tablet\""]",1136.63,{},75904,0,"""Asia""" +2023-10-08,7378,4482,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3174.12,"{\""promo\"": \""29%\""}",276508,0,"""South America""" +2023-09-10,7379,577,"[\""Charger\""]",1662.99,{},203849,1,"""Africa""" +2023-03-17,7380,527,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4832.95,{},184042,0,"""Asia""" +2023-12-15,7381,993,"[\""Monitor\""]",2077.98,"{\""loyalty\"": \""20%\""}",270455,1,"""Asia""" +2024-02-16,7382,4290,"[\""Tablet\"", \""Phone\""]",3073.66,"{\""seasonal\"": \""26%\""}",68824,1,"""Asia""" +2023-01-29,7383,4219,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4049.39,{},200978,0,"""North America""" +2023-04-06,7384,1605,"[\""Charger\""]",617.32,"{\""loyalty\"": \""9%\""}",102915,1,"""Asia""" +2023-07-28,7385,2507,"[\""Monitor\"", \""Wireless Mouse\""]",1437.26,"{\""seasonal\"": \""20%\""}",190515,1,"""Asia""" +2024-05-10,7386,2338,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3671.01,"{\""seasonal\"": \""18%\""}",19166,1,"""Asia""" +2024-09-03,7387,9706,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2105.02,{},151589,0,"""North America""" +2023-07-24,7388,6173,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3109.7,"{\""promo\"": \""16%\""}",48901,0,"""North America""" +2024-03-27,7389,6148,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4017.55,{},127535,0,"""South America""" +2023-12-19,7390,5505,"[\""Headphones\"", \""Wireless Mouse\""]",3331.54,{},221165,1,"""Asia""" +2024-08-23,7391,8937,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2457.17,{},230223,0,"""Europe""" +2023-05-14,7392,2038,"[\""Wireless Mouse\""]",3299.11,"{\""seasonal\"": \""30%\""}",254629,1,"""Asia""" +2023-12-17,7393,8611,"[\""Monitor\""]",1867.21,"{\""promo\"": \""6%\""}",109944,1,"""Europe""" +2024-05-25,7394,7384,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1808.89,{},160139,1,"""Europe""" +2023-01-29,7395,1206,"[\""Laptop\"", \""Keyboard\""]",2534.67,"{\""loyalty\"": \""28%\""}",238617,1,"""Asia""" +2024-02-13,7396,5877,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4101.63,{},185905,1,"""South America""" +2024-10-26,7397,2591,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3576.16,"{\""promo\"": \""21%\""}",189312,1,"""South America""" +2024-05-05,7398,2305,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1453.6,"{\"": \""23%\""}",37347,0,"""Africa""" +2023-02-25,7399,8241,"[\""Tablet\"", \""Laptop\""]",4681.24,"{\""promo\"": \""11%\""}",292850,0,"""Europe""" +2024-12-29,7400,5338,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3865.66,"{\"": \""8%\""}",221749,1,"""South America""" +2024-07-22,7401,8077,"[\""Headphones\""]",4212.51,{},298769,1,"""Asia""" +2023-03-05,7402,1792,"[\""Keyboard\"", \""Tablet\""]",3082.37,{},56421,1,"""Africa""" +2024-07-08,7403,6171,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2099.87,{},180791,0,"""South America""" +2023-04-27,7404,7512,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4120.81,{},68637,1,"""South America""" +2024-10-15,7405,1030,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3725.11,{},219325,0,"""Africa""" +2024-05-20,7406,7198,"[\""Headphones\"", \""Phone\""]",629.79,"{\""promo\"": \""10%\""}",8406,0,"""Asia""" +2023-07-19,7407,3541,"[\""Keyboard\""]",2510.27,{},78728,0,"""Africa""" +2024-02-27,7408,8207,"[\""Headphones\""]",1358.06,"{\""promo\"": \""19%\""}",268703,0,"""South America""" +2024-05-17,7409,5016,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2390.24,{},65115,0,"""Asia""" +2023-09-09,7410,4016,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",603.07,"{\""promo\"": \""7%\""}",225972,1,"""Asia""" +2024-02-24,7411,2013,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",543.13,"{\"": \""16%\""}",123894,0,"""South America""" +2023-07-11,7412,4453,"[\""Monitor\"", \""Phone\""]",673.18,"{\"": \""19%\""}",233108,1,"""North America""" +2024-12-10,7413,6968,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4331.12,{},261054,1,"""Africa""" +2023-10-17,7414,4480,"[\""Monitor\""]",4270.25,{},217184,0,"""Europe""" +2024-04-19,7415,7178,"[\""Phone\"", \""Tablet\""]",4489.26,{},44310,1,"""Africa""" +2024-07-23,7416,1730,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3358.86,"{\""loyalty\"": \""26%\""}",106631,1,"""Africa""" +2024-12-24,7417,5684,"[\""Charger\""]",144.9,{},168530,1,"""Europe""" +2024-10-26,7418,9527,"[\""Charger\""]",4067.39,{},106335,1,"""Africa""" +2024-08-02,7419,8063,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",101.69,{},41343,1,"""Asia""" +2023-12-24,7420,337,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3615.21,"{\""seasonal\"": \""12%\""}",174491,0,"""Asia""" +2023-10-13,7421,7959,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3347.46,"{\""promo\"": \""30%\""}",184560,1,"""Asia""" +2023-04-12,7422,1413,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2734.78,{},85348,1,"""Europe""" +2023-12-15,7423,6564,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",935.55,"{\""seasonal\"": \""25%\""}",210687,1,"""Europe""" +2024-05-01,7424,4007,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",371.16,{},68995,1,"""Europe""" +2023-08-23,7425,6752,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1294.25,{},165056,0,"""Asia""" +2024-03-02,7426,5275,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2879.86,"{\""seasonal\"": \""19%\""}",49653,0,"""North America""" +2023-01-26,7427,4312,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2414.04,{},172946,1,"""South America""" +2024-04-06,7428,2101,"[\""Monitor\"", \""Charger\""]",4663.45,{},47750,0,"""South America""" +2024-06-13,7429,1937,"[\""Keyboard\""]",916.59,{},120465,0,"""Asia""" +2024-08-03,7430,1098,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",663.02,{},168607,0,"""Europe""" +2023-02-22,7431,5202,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2127.24,{},36595,1,"""North America""" +2024-12-18,7432,7104,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3187.3,{},35459,0,"""Asia""" +2024-01-28,7433,1650,"[\""Phone\""]",3332.54,{},283334,1,"""Africa""" +2023-12-23,7434,8571,"[\""Phone\"", \""Headphones\""]",4734.36,"{\"": \""18%\""}",61686,1,"""Europe""" +2023-10-08,7435,8175,"[\""Charger\""]",2283.04,{},169477,0,"""South America""" +2024-06-22,7436,2866,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",193.94,{},236319,0,"""Africa""" +2023-09-08,7437,1216,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1111.0,"{\""loyalty\"": \""15%\""}",162396,0,"""Europe""" +2024-06-10,7438,1353,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",200.98,"{\"": \""6%\""}",192800,0,"""Africa""" +2023-07-28,7439,709,"[\""Wireless Mouse\""]",4734.23,"{\""promo\"": \""5%\""}",180289,1,"""Europe""" +2023-04-28,7440,7640,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",152.95,{},113292,1,"""North America""" +2024-12-02,7441,3887,"[\""Tablet\""]",3442.07,"{\""seasonal\"": \""26%\""}",187587,0,"""Africa""" +2023-12-18,7442,4683,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3116.46,{},86064,0,"""Africa""" +2023-01-12,7443,6136,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",135.26,{},107414,0,"""South America""" +2024-03-07,7444,4889,"[\""Phone\""]",4344.32,{},170608,0,"""North America""" +2024-06-19,7445,8536,"[\""Phone\""]",3538.23,"{\"": \""16%\""}",91054,1,"""Europe""" +2023-04-18,7446,1019,"[\""Laptop\"", \""Monitor\""]",3622.45,"{\""promo\"": \""28%\""}",188837,1,"""Europe""" +2024-01-07,7447,2563,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1282.73,{},133116,0,"""Africa""" +2024-09-11,7448,3757,"[\""Tablet\""]",1769.84,"{\""loyalty\"": \""16%\""}",149133,0,"""Asia""" +2023-10-29,7449,8014,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1841.54,{},285272,0,"""Europe""" +2023-03-22,7450,2971,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4311.05,{},218457,0,"""Europe""" +2023-01-09,7451,7156,"[\""Monitor\""]",3112.69,{},98306,1,"""Africa""" +2023-01-08,7452,8424,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3998.25,{},28123,0,"""South America""" +2024-03-22,7453,3480,"[\""Monitor\""]",4849.45,"{\""promo\"": \""15%\""}",32167,1,"""Europe""" +2023-11-01,7454,8247,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3865.97,{},87519,1,"""North America""" +2024-02-27,7455,5242,"[\""Wireless Mouse\"", \""Monitor\""]",1250.38,"{\""seasonal\"": \""10%\""}",178947,0,"""Asia""" +2023-06-08,7456,9482,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1118.38,{},243873,0,"""North America""" +2024-09-23,7457,1112,"[\""Headphones\"", \""Phone\""]",4689.73,"{\"": \""6%\""}",257166,1,"""Europe""" +2023-06-25,7458,8927,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4615.28,{},87081,0,"""North America""" +2023-12-03,7459,1125,"[\""Headphones\"", \""Phone\""]",2604.62,{},49774,0,"""Africa""" +2024-07-26,7460,4192,"[\""Phone\""]",863.92,{},68910,1,"""Europe""" +2024-03-10,7461,7895,"[\""Keyboard\""]",350.6,"{\""loyalty\"": \""7%\""}",117905,0,"""Asia""" +2024-11-09,7462,3614,"[\""Tablet\"", \""Laptop\""]",2637.19,"{\"": \""7%\""}",96175,0,"""Africa""" +2024-08-03,7463,3216,"[\""Keyboard\""]",792.97,"{\""loyalty\"": \""19%\""}",41656,1,"""North America""" +2023-01-19,7464,122,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",352.59,"{\"": \""30%\""}",161005,1,"""South America""" +2024-11-22,7465,9137,"[\""Keyboard\"", \""Headphones\""]",4737.59,"{\""promo\"": \""25%\""}",67877,1,"""Asia""" +2023-12-27,7466,8098,"[\""Phone\"", \""Monitor\""]",3870.74,{},51301,0,"""Europe""" +2023-12-02,7467,6036,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",127.09,{},254005,1,"""Europe""" +2024-02-03,7468,5304,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4375.9,{},268936,1,"""Europe""" +2023-09-11,7469,2698,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2886.23,"{\""promo\"": \""7%\""}",243228,0,"""Asia""" +2024-04-24,7470,6369,"[\""Laptop\"", \""Keyboard\""]",3450.06,{},90386,0,"""North America""" +2023-07-22,7471,7023,"[\""Laptop\""]",1308.9,"{\""loyalty\"": \""29%\""}",118329,1,"""South America""" +2023-06-15,7472,6559,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",750.34,{},80312,1,"""North America""" +2023-12-29,7473,68,"[\""Keyboard\"", \""Tablet\""]",4140.15,{},66905,0,"""North America""" +2024-01-28,7474,5619,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1778.65,"{\""seasonal\"": \""14%\""}",165199,1,"""North America""" +2023-06-28,7475,4727,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2339.98,"{\""loyalty\"": \""24%\""}",124688,1,"""South America""" +2024-06-29,7476,8318,"[\""Wireless Mouse\"", \""Phone\""]",1860.36,"{\""promo\"": \""5%\""}",23177,0,"""South America""" +2024-10-16,7477,8426,"[\""Monitor\"", \""Phone\""]",3203.9,{},219303,0,"""South America""" +2023-07-29,7478,1598,"[\""Charger\""]",4823.24,"{\""promo\"": \""18%\""}",148603,1,"""Asia""" +2024-09-22,7479,6493,"[\""Keyboard\""]",891.38,"{\""seasonal\"": \""8%\""}",271794,1,"""North America""" +2023-10-30,7480,3368,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3082.44,"{\""loyalty\"": \""5%\""}",116364,0,"""North America""" +2023-03-20,7481,5546,"[\""Headphones\""]",2916.5,"{\""promo\"": \""27%\""}",72695,0,"""Asia""" +2024-08-01,7482,1376,"[\""Monitor\"", \""Charger\""]",1047.85,{},14593,1,"""Asia""" +2023-01-17,7483,2132,"[\""Keyboard\"", \""Monitor\""]",2919.06,{},108135,1,"""South America""" +2023-06-20,7484,8706,"[\""Monitor\"", \""Headphones\""]",3368.09,"{\""promo\"": \""27%\""}",42950,0,"""Europe""" +2023-12-19,7485,6420,"[\""Phone\"", \""Wireless Mouse\""]",4589.24,"{\"": \""6%\""}",118350,1,"""Asia""" +2023-08-25,7486,6901,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1273.55,"{\"": \""19%\""}",268741,0,"""Asia""" +2023-10-09,7487,7990,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3210.31,"{\""promo\"": \""19%\""}",145179,0,"""Asia""" +2024-09-15,7488,9405,"[\""Keyboard\"", \""Monitor\""]",4256.36,"{\""seasonal\"": \""6%\""}",178271,0,"""South America""" +2024-03-15,7489,2691,"[\""Laptop\"", \""Monitor\""]",2482.72,"{\""seasonal\"": \""13%\""}",128365,0,"""Asia""" +2024-12-31,7490,3063,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",925.57,"{\""loyalty\"": \""17%\""}",226401,1,"""North America""" +2024-09-19,7491,6080,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",386.61,"{\"": \""17%\""}",106423,0,"""South America""" +2024-07-07,7492,3482,"[\""Tablet\"", \""Keyboard\""]",3393.04,{},35568,1,"""North America""" +2024-12-29,7493,7422,"[\""Keyboard\"", \""Tablet\""]",554.31,"{\""seasonal\"": \""21%\""}",55781,1,"""South America""" +2024-09-11,7494,7828,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1477.83,"{\""loyalty\"": \""13%\""}",26076,0,"""Europe""" +2023-07-19,7495,5931,"[\""Keyboard\"", \""Charger\""]",559.87,"{\""loyalty\"": \""27%\""}",205515,0,"""Africa""" +2023-11-10,7496,5511,"[\""Phone\"", \""Monitor\""]",4873.82,{},174362,1,"""Africa""" +2024-08-02,7497,74,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3015.72,"{\""seasonal\"": \""16%\""}",276554,0,"""Asia""" +2024-12-16,7498,5279,"[\""Keyboard\""]",1901.47,{},197331,1,"""North America""" +2023-12-22,7499,7872,"[\""Wireless Mouse\"", \""Laptop\""]",513.2,{},21415,1,"""South America""" +2023-08-12,7500,948,"[\""Monitor\""]",142.5,"{\""seasonal\"": \""10%\""}",26090,1,"""South America""" +2024-02-16,7501,1387,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4660.23,{},278310,0,"""Europe""" +2023-07-29,7502,1721,"[\""Tablet\"", \""Laptop\""]",382.54,"{\""promo\"": \""16%\""}",228053,0,"""South America""" +2024-12-20,7503,3829,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1288.44,"{\""seasonal\"": \""26%\""}",94628,0,"""South America""" +2023-06-21,7504,9836,"[\""Wireless Mouse\""]",2955.9,"{\""seasonal\"": \""10%\""}",151028,1,"""South America""" +2024-07-25,7505,6397,"[\""Headphones\""]",92.51,{},127952,0,"""Europe""" +2023-10-13,7506,8511,"[\""Tablet\""]",4652.93,{},58489,1,"""Asia""" +2024-01-24,7507,5667,"[\""Tablet\""]",3779.94,"{\""promo\"": \""25%\""}",88431,0,"""South America""" +2024-05-05,7508,6113,"[\""Monitor\"", \""Headphones\""]",293.07,"{\""seasonal\"": \""5%\""}",191249,0,"""Asia""" +2023-10-08,7509,7876,"[\""Monitor\"", \""Headphones\""]",2483.48,"{\""promo\"": \""25%\""}",152102,0,"""Europe""" +2024-03-02,7510,7437,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2988.04,{},76689,1,"""South America""" +2024-12-08,7511,5963,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2822.18,"{\""seasonal\"": \""24%\""}",201230,0,"""South America""" +2023-04-12,7512,5525,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",712.26,{},194716,1,"""Asia""" +2024-09-10,7513,9889,"[\""Monitor\""]",1167.88,{},43302,1,"""Asia""" +2024-07-07,7514,140,"[\""Keyboard\""]",1326.58,{},77953,0,"""North America""" +2024-10-17,7515,9783,"[\""Monitor\""]",1186.42,"{\""loyalty\"": \""13%\""}",224789,1,"""North America""" +2023-08-17,7516,6984,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3450.58,{},58775,0,"""Asia""" +2023-05-02,7517,71,"[\""Phone\"", \""Monitor\""]",2775.63,{},38992,0,"""Europe""" +2023-12-06,7518,4577,"[\""Tablet\""]",4596.72,"{\""loyalty\"": \""12%\""}",27864,0,"""Africa""" +2024-11-12,7519,9615,"[\""Headphones\""]",2709.92,{},49616,0,"""Africa""" +2024-12-22,7520,7359,"[\""Phone\""]",182.75,{},253801,1,"""South America""" +2024-09-03,7521,5793,"[\""Headphones\"", \""Charger\""]",2222.84,{},126941,1,"""North America""" +2023-12-13,7522,2467,"[\""Laptop\"", \""Tablet\""]",1651.36,"{\""loyalty\"": \""17%\""}",155231,0,"""Africa""" +2023-12-17,7523,2328,"[\""Phone\""]",865.87,{},292272,0,"""North America""" +2024-09-11,7524,3269,"[\""Phone\""]",3875.45,"{\"": \""13%\""}",41497,0,"""South America""" +2024-09-16,7525,6881,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1632.77,{},125769,0,"""Europe""" +2023-01-22,7526,257,"[\""Laptop\"", \""Charger\""]",1489.53,{},189955,0,"""Europe""" +2023-03-02,7527,773,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3875.92,{},24687,1,"""North America""" +2023-12-10,7528,3505,"[\""Tablet\""]",1957.62,{},41104,0,"""North America""" +2023-06-10,7529,1843,"[\""Monitor\"", \""Phone\""]",3378.83,{},55584,1,"""Asia""" +2024-10-24,7530,1457,"[\""Keyboard\""]",314.06,{},94373,1,"""Africa""" +2023-04-13,7531,7415,"[\""Tablet\""]",1771.86,"{\"": \""24%\""}",232167,1,"""Europe""" +2023-08-30,7532,8079,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1702.53,"{\""seasonal\"": \""22%\""}",126144,0,"""Africa""" +2023-10-18,7533,6175,"[\""Wireless Mouse\"", \""Keyboard\""]",3682.46,{},201156,1,"""Africa""" +2024-10-05,7534,7473,"[\""Phone\""]",3621.88,{},252274,0,"""North America""" +2024-04-27,7535,2493,"[\""Headphones\""]",4730.21,"{\""promo\"": \""29%\""}",233901,1,"""South America""" +2023-06-18,7536,4050,"[\""Headphones\"", \""Phone\""]",4006.46,"{\""seasonal\"": \""23%\""}",208123,1,"""Africa""" +2024-11-02,7537,4345,"[\""Charger\""]",1282.14,{},138791,0,"""North America""" +2023-01-21,7538,5767,"[\""Tablet\"", \""Wireless Mouse\""]",3960.45,{},215267,0,"""Europe""" +2023-07-06,7539,6220,"[\""Charger\"", \""Wireless Mouse\""]",4741.86,"{\""seasonal\"": \""21%\""}",60982,1,"""North America""" +2024-12-18,7540,9805,"[\""Tablet\""]",3890.3,{},215580,0,"""North America""" +2023-09-18,7541,2655,"[\""Wireless Mouse\""]",2142.45,"{\""loyalty\"": \""8%\""}",208692,0,"""South America""" +2024-04-25,7542,4750,"[\""Laptop\"", \""Wireless Mouse\""]",1638.11,"{\""seasonal\"": \""18%\""}",55075,1,"""Asia""" +2024-01-13,7543,6366,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2389.81,"{\""loyalty\"": \""14%\""}",89866,1,"""North America""" +2023-08-04,7544,7377,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",797.62,{},139928,1,"""Africa""" +2023-05-13,7545,6399,"[\""Charger\""]",3699.76,{},190010,1,"""South America""" +2023-06-14,7546,9518,"[\""Phone\"", \""Wireless Mouse\""]",1820.38,"{\""loyalty\"": \""26%\""}",32825,0,"""North America""" +2024-02-25,7547,195,"[\""Tablet\"", \""Charger\""]",1086.95,{},192110,0,"""South America""" +2024-07-13,7548,2458,"[\""Keyboard\"", \""Charger\""]",90.25,"{\"": \""30%\""}",90013,1,"""Africa""" +2023-06-03,7549,4731,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4917.7,{},165335,0,"""South America""" +2024-05-06,7550,4519,"[\""Monitor\"", \""Keyboard\""]",1458.93,{},101932,1,"""North America""" +2023-04-14,7551,2745,"[\""Laptop\""]",1506.41,{},161699,1,"""South America""" +2024-07-02,7552,2942,"[\""Phone\"", \""Wireless Mouse\""]",2264.68,{},168274,0,"""Africa""" +2024-03-08,7553,5189,"[\""Laptop\""]",3135.51,"{\""seasonal\"": \""29%\""}",238321,1,"""Europe""" +2024-08-20,7554,3573,"[\""Keyboard\"", \""Tablet\""]",4998.89,"{\""loyalty\"": \""8%\""}",84672,0,"""Europe""" +2023-12-22,7555,680,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4743.29,{},219431,0,"""Africa""" +2023-09-21,7556,6330,"[\""Phone\"", \""Tablet\""]",3951.81,{},22446,0,"""Europe""" +2024-11-06,7557,8632,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3814.68,{},156019,0,"""North America""" +2023-01-16,7558,2076,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3048.67,{},96958,0,"""Asia""" +2024-07-27,7559,435,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4183.84,"{\""loyalty\"": \""30%\""}",98566,0,"""South America""" +2023-01-26,7560,6906,"[\""Monitor\""]",3662.78,"{\""seasonal\"": \""18%\""}",168661,0,"""South America""" +2023-07-11,7561,3990,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4702.21,{},139581,0,"""Europe""" +2023-03-21,7562,1253,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2702.53,"{\"": \""7%\""}",208484,0,"""North America""" +2024-01-17,7563,758,"[\""Tablet\""]",3865.33,{},98374,1,"""Africa""" +2024-01-11,7564,280,"[\""Monitor\""]",710.42,"{\""loyalty\"": \""12%\""}",77346,1,"""North America""" +2024-01-08,7565,6943,"[\""Laptop\""]",3875.02,{},55647,1,"""Africa""" +2023-07-14,7566,4266,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",519.55,{},227246,1,"""Asia""" +2024-07-28,7567,5319,"[\""Monitor\""]",2330.81,{},196869,0,"""Africa""" +2024-09-21,7568,9520,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4915.53,"{\""promo\"": \""22%\""}",225986,1,"""South America""" +2024-08-10,7569,521,"[\""Tablet\""]",2566.1,{},188020,0,"""Africa""" +2024-06-10,7570,38,"[\""Monitor\"", \""Wireless Mouse\""]",828.11,{},290002,1,"""Asia""" +2023-02-04,7571,328,"[\""Headphones\"", \""Tablet\""]",3260.83,"{\""promo\"": \""25%\""}",72734,0,"""South America""" +2024-12-26,7572,279,"[\""Tablet\"", \""Phone\""]",647.12,"{\"": \""11%\""}",197972,1,"""North America""" +2023-08-29,7573,3203,"[\""Tablet\""]",3897.58,"{\"": \""23%\""}",80784,0,"""Europe""" +2023-08-24,7574,3941,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2893.66,"{\""seasonal\"": \""27%\""}",22641,1,"""Africa""" +2024-12-13,7575,302,"[\""Headphones\"", \""Tablet\""]",4958.14,{},89946,1,"""Africa""" +2023-03-05,7576,3308,"[\""Headphones\""]",171.92,"{\""promo\"": \""29%\""}",145184,0,"""Asia""" +2024-10-13,7577,4159,"[\""Headphones\""]",1967.23,"{\""seasonal\"": \""13%\""}",170546,1,"""Africa""" +2023-03-16,7578,6885,"[\""Laptop\""]",3318.73,{},141054,1,"""Europe""" +2024-09-11,7579,2554,"[\""Tablet\"", \""Charger\""]",2274.65,"{\""loyalty\"": \""11%\""}",82842,0,"""Africa""" +2023-06-15,7580,5065,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2617.63,{},211224,1,"""North America""" +2024-09-09,7581,138,"[\""Charger\""]",1256.33,"{\""loyalty\"": \""9%\""}",73330,0,"""Europe""" +2023-05-13,7582,7507,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4654.71,"{\"": \""21%\""}",96327,1,"""Europe""" +2024-08-09,7583,3934,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4177.16,{},224023,1,"""Europe""" +2024-12-13,7584,1381,"[\""Laptop\""]",3714.66,{},145872,0,"""Europe""" +2023-07-22,7585,719,"[\""Charger\""]",1647.84,{},80970,0,"""Africa""" +2023-06-13,7586,4707,"[\""Phone\"", \""Keyboard\""]",3355.73,{},99028,0,"""North America""" +2023-10-13,7587,2007,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2431.5,"{\""loyalty\"": \""6%\""}",139683,1,"""Africa""" +2023-08-19,7588,7166,"[\""Headphones\""]",3863.67,{},75386,0,"""Europe""" +2023-02-27,7589,5103,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1025.02,"{\"": \""10%\""}",216049,0,"""Europe""" +2024-12-02,7590,4288,"[\""Charger\""]",3930.51,"{\""promo\"": \""15%\""}",290084,0,"""Asia""" +2023-02-03,7591,2382,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3422.97,{},134038,0,"""South America""" +2024-05-10,7592,1625,"[\""Keyboard\"", \""Charger\""]",1715.14,{},281621,1,"""Europe""" +2023-10-23,7593,201,"[\""Wireless Mouse\""]",4600.15,{},161997,0,"""Europe""" +2024-04-17,7594,5594,"[\""Headphones\""]",1945.86,"{\""loyalty\"": \""15%\""}",265450,1,"""South America""" +2023-11-15,7595,2271,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3711.43,"{\"": \""5%\""}",253095,1,"""South America""" +2023-03-27,7596,6948,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3008.14,"{\""seasonal\"": \""23%\""}",141671,0,"""Africa""" +2024-08-28,7597,4543,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1156.94,"{\""seasonal\"": \""7%\""}",199313,0,"""Asia""" +2023-12-09,7598,643,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2857.58,"{\"": \""11%\""}",67472,1,"""Europe""" +2024-03-14,7599,2164,"[\""Tablet\"", \""Charger\""]",71.77,{},46270,1,"""Europe""" +2024-05-22,7600,4781,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",67.18,{},220630,0,"""Europe""" +2024-07-30,7601,2046,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",392.72,"{\"": \""23%\""}",74461,0,"""South America""" +2024-03-20,7602,4752,"[\""Charger\"", \""Keyboard\""]",2654.62,"{\"": \""12%\""}",246137,0,"""South America""" +2024-01-02,7603,3080,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3661.31,"{\"": \""18%\""}",211631,0,"""South America""" +2024-07-13,7604,3605,"[\""Tablet\""]",4704.23,"{\"": \""7%\""}",267826,0,"""Asia""" +2023-07-25,7605,5060,"[\""Charger\""]",1754.89,{},254600,0,"""South America""" +2024-01-23,7606,6770,"[\""Phone\""]",3631.0,{},252242,1,"""Europe""" +2023-06-17,7607,2261,"[\""Headphones\""]",3227.68,{},90973,0,"""South America""" +2024-02-26,7608,1425,"[\""Tablet\""]",2685.4,{},12577,1,"""Africa""" +2024-08-16,7609,2504,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2934.06,{},170229,1,"""Africa""" +2024-04-06,7610,6806,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1222.09,{},114887,1,"""North America""" +2024-08-28,7611,4901,"[\""Keyboard\""]",3272.08,{},239335,1,"""South America""" +2024-01-03,7612,738,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",838.69,"{\"": \""28%\""}",289201,0,"""Africa""" +2024-11-10,7613,1336,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4367.83,"{\""promo\"": \""26%\""}",268249,0,"""Africa""" +2023-05-26,7614,9122,"[\""Keyboard\"", \""Phone\""]",2724.1,{},30088,1,"""South America""" +2024-10-10,7615,3269,"[\""Keyboard\""]",214.98,{},145035,0,"""Africa""" +2023-01-04,7616,6340,"[\""Headphones\""]",1535.0,{},8458,1,"""South America""" +2023-11-17,7617,2694,"[\""Keyboard\"", \""Phone\""]",4339.31,"{\""promo\"": \""18%\""}",97348,1,"""Asia""" +2023-12-02,7618,1162,"[\""Monitor\"", \""Laptop\""]",797.64,{},3574,1,"""Asia""" +2023-10-28,7619,6912,"[\""Laptop\""]",94.52,"{\""seasonal\"": \""17%\""}",267129,0,"""Europe""" +2023-08-29,7620,8310,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1120.58,{},243684,1,"""Europe""" +2023-05-16,7621,6797,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3368.55,"{\""seasonal\"": \""16%\""}",185193,0,"""Asia""" +2024-07-11,7622,3104,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",759.15,"{\""loyalty\"": \""29%\""}",122927,1,"""South America""" +2024-08-16,7623,2962,"[\""Keyboard\""]",923.07,"{\""loyalty\"": \""13%\""}",48908,0,"""Africa""" +2024-03-01,7624,2482,"[\""Headphones\"", \""Wireless Mouse\""]",412.2,{},13866,1,"""South America""" +2024-11-30,7625,2203,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3258.35,{},8269,0,"""Europe""" +2023-01-22,7626,253,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4006.97,{},39177,1,"""Africa""" +2024-02-18,7627,9316,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2014.52,"{\""loyalty\"": \""9%\""}",239832,1,"""North America""" +2023-05-02,7628,3163,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",810.53,"{\""seasonal\"": \""15%\""}",12064,1,"""South America""" +2024-09-14,7629,7886,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4967.98,{},50095,1,"""Europe""" +2023-12-23,7630,1001,"[\""Laptop\"", \""Monitor\""]",3781.26,{},262525,0,"""South America""" +2023-12-21,7631,6543,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3797.4,"{\""seasonal\"": \""30%\""}",40246,1,"""Europe""" +2024-11-20,7632,3458,"[\""Phone\""]",4210.54,{},114308,0,"""Europe""" +2024-10-28,7633,350,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1631.92,{},287436,0,"""Europe""" +2024-08-03,7634,9392,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",949.45,"{\""loyalty\"": \""9%\""}",160695,0,"""Europe""" +2023-06-17,7635,2313,"[\""Phone\"", \""Headphones\""]",2073.37,{},258744,0,"""North America""" +2023-02-13,7636,5666,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3807.24,"{\""promo\"": \""8%\""}",220679,0,"""Africa""" +2024-12-27,7637,5354,"[\""Tablet\"", \""Charger\""]",4053.67,"{\""loyalty\"": \""16%\""}",286163,0,"""North America""" +2024-06-12,7638,5799,"[\""Laptop\""]",1041.56,"{\"": \""20%\""}",65927,0,"""South America""" +2023-08-29,7639,2667,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",471.85,"{\""promo\"": \""8%\""}",230247,1,"""Europe""" +2024-07-23,7640,1342,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1900.16,{},121153,0,"""Asia""" +2024-01-16,7641,8950,"[\""Monitor\""]",2499.1,"{\""loyalty\"": \""23%\""}",113841,1,"""Europe""" +2024-11-18,7642,8911,"[\""Headphones\"", \""Monitor\""]",4352.27,"{\"": \""17%\""}",154773,0,"""South America""" +2024-10-30,7643,3780,"[\""Phone\""]",4702.07,"{\""seasonal\"": \""7%\""}",71750,1,"""South America""" +2023-12-29,7644,7360,"[\""Laptop\""]",1373.6,{},239744,0,"""Europe""" +2023-06-21,7645,7731,"[\""Phone\"", \""Monitor\""]",566.68,{},121456,1,"""Europe""" +2024-04-21,7646,591,"[\""Keyboard\"", \""Laptop\""]",2775.14,"{\""promo\"": \""6%\""}",162864,1,"""Asia""" +2024-01-27,7647,1652,"[\""Laptop\"", \""Tablet\""]",818.55,{},168100,1,"""Africa""" +2024-06-26,7648,8133,"[\""Keyboard\""]",1642.41,{},82995,0,"""Africa""" +2023-07-19,7649,1629,"[\""Monitor\"", \""Charger\""]",2280.92,"{\""loyalty\"": \""15%\""}",38725,1,"""Asia""" +2024-04-15,7650,5031,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",941.86,"{\""loyalty\"": \""15%\""}",182978,0,"""North America""" +2023-12-20,7651,4462,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1657.68,{},293607,1,"""South America""" +2024-01-21,7652,7071,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2525.57,"{\"": \""17%\""}",113949,0,"""Africa""" +2024-06-26,7653,2771,"[\""Phone\""]",2324.44,{},84305,0,"""Africa""" +2023-01-08,7654,4344,"[\""Phone\""]",2480.27,{},185640,0,"""Asia""" +2024-03-21,7655,1284,"[\""Laptop\""]",4317.33,"{\""seasonal\"": \""19%\""}",3305,1,"""Africa""" +2024-06-19,7656,8252,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3034.31,"{\"": \""13%\""}",71023,0,"""Europe""" +2024-12-21,7657,1237,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2594.29,{},191355,0,"""Asia""" +2024-01-23,7658,8511,"[\""Laptop\"", \""Phone\""]",1844.03,{},13980,1,"""Europe""" +2023-06-10,7659,5291,"[\""Headphones\""]",1495.29,{},84428,1,"""South America""" +2024-11-23,7660,5944,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4694.9,"{\""promo\"": \""29%\""}",31665,1,"""Asia""" +2024-01-22,7661,6627,"[\""Monitor\"", \""Keyboard\""]",3267.88,{},169044,1,"""Africa""" +2023-12-08,7662,308,"[\""Laptop\"", \""Wireless Mouse\""]",2893.92,"{\""promo\"": \""22%\""}",263956,1,"""North America""" +2024-05-01,7663,936,"[\""Phone\"", \""Laptop\""]",104.72,{},267055,1,"""Africa""" +2023-03-12,7664,5195,"[\""Tablet\""]",205.54,{},282410,0,"""South America""" +2024-05-18,7665,9376,"[\""Headphones\"", \""Phone\""]",2520.85,{},125133,1,"""Europe""" +2024-07-17,7666,2730,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4494.46,{},256652,0,"""North America""" +2024-01-13,7667,48,"[\""Tablet\"", \""Charger\""]",3986.12,{},111399,0,"""Europe""" +2024-05-30,7668,6866,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4253.41,"{\""seasonal\"": \""28%\""}",119219,0,"""South America""" +2024-11-18,7669,6248,"[\""Wireless Mouse\"", \""Phone\""]",3563.66,{},8365,0,"""South America""" +2024-08-26,7670,9596,"[\""Wireless Mouse\""]",4261.52,"{\""loyalty\"": \""14%\""}",260209,0,"""Africa""" +2023-09-06,7671,4160,"[\""Charger\""]",4378.91,{},137676,0,"""South America""" +2024-06-25,7672,4797,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",523.64,"{\""promo\"": \""20%\""}",21901,0,"""North America""" +2023-05-22,7673,2395,"[\""Charger\"", \""Laptop\""]",4876.88,{},7912,1,"""North America""" +2024-01-14,7674,2847,"[\""Keyboard\"", \""Phone\""]",1472.94,"{\"": \""17%\""}",73188,1,"""Africa""" +2024-11-16,7675,3646,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3592.79,{},225466,0,"""North America""" +2023-11-27,7676,7816,"[\""Headphones\""]",3166.15,{},142110,1,"""Asia""" +2024-12-25,7677,374,"[\""Laptop\""]",1851.65,{},125068,1,"""Africa""" +2023-03-29,7678,6956,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2255.95,{},184756,0,"""Asia""" +2023-09-20,7679,4441,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2978.97,"{\""loyalty\"": \""26%\""}",236687,1,"""Asia""" +2023-06-22,7680,8288,"[\""Monitor\"", \""Phone\""]",1117.7,{},178081,0,"""Asia""" +2023-04-07,7681,7407,"[\""Monitor\""]",3245.76,{},29060,0,"""North America""" +2023-02-04,7682,6358,"[\""Charger\"", \""Headphones\"", \""Phone\""]",935.28,"{\""promo\"": \""20%\""}",17306,0,"""South America""" +2023-02-06,7683,7205,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4025.06,{},287796,1,"""Africa""" +2024-12-09,7684,8516,"[\""Headphones\"", \""Laptop\""]",4607.61,{},28343,0,"""Asia""" +2024-11-03,7685,2839,"[\""Tablet\""]",609.6,{},1638,1,"""Asia""" +2024-11-16,7686,155,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1769.68,"{\""loyalty\"": \""30%\""}",224285,0,"""Africa""" +2024-03-14,7687,177,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1791.53,{},262300,1,"""Africa""" +2024-07-18,7688,3889,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4989.71,"{\""loyalty\"": \""24%\""}",130423,1,"""Europe""" +2023-07-19,7689,6095,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1746.54,"{\"": \""19%\""}",241531,0,"""Africa""" +2023-11-07,7690,3119,"[\""Monitor\"", \""Keyboard\""]",503.48,{},72652,1,"""North America""" +2023-08-27,7691,9731,"[\""Keyboard\"", \""Phone\""]",621.38,"{\"": \""5%\""}",192979,0,"""North America""" +2023-01-21,7692,2475,"[\""Headphones\""]",1319.92,"{\""seasonal\"": \""8%\""}",52866,1,"""North America""" +2023-04-15,7693,2811,"[\""Keyboard\"", \""Laptop\""]",1442.53,"{\""seasonal\"": \""30%\""}",290993,1,"""Europe""" +2023-09-21,7694,6188,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1554.72,{},218599,1,"""South America""" +2024-05-06,7695,6415,"[\""Keyboard\""]",2862.32,"{\""promo\"": \""16%\""}",233613,1,"""North America""" +2023-11-28,7696,3557,"[\""Laptop\"", \""Tablet\""]",181.51,"{\""promo\"": \""5%\""}",286298,1,"""Asia""" +2023-01-17,7697,7970,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1330.81,{},219796,1,"""Europe""" +2023-02-07,7698,3488,"[\""Charger\""]",3928.82,{},62303,0,"""South America""" +2023-02-08,7699,8577,"[\""Wireless Mouse\"", \""Laptop\""]",1011.78,"{\"": \""13%\""}",136986,1,"""Asia""" +2024-04-04,7700,6202,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3194.86,{},56692,0,"""Europe""" +2023-08-13,7701,4460,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",959.0,"{\""seasonal\"": \""18%\""}",174386,1,"""Africa""" +2024-02-17,7702,1261,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3950.93,"{\"": \""6%\""}",221778,1,"""North America""" +2023-12-16,7703,3937,"[\""Headphones\"", \""Laptop\""]",4099.65,"{\""loyalty\"": \""11%\""}",66726,0,"""South America""" +2023-10-02,7704,1837,"[\""Phone\""]",1560.4,{},115673,1,"""Africa""" +2024-12-31,7705,8344,"[\""Monitor\"", \""Phone\""]",2197.68,"{\""promo\"": \""24%\""}",280676,1,"""South America""" +2023-01-03,7706,11,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",792.64,"{\""promo\"": \""9%\""}",162435,1,"""Europe""" +2023-01-02,7707,2145,"[\""Laptop\"", \""Tablet\""]",480.23,{},272311,1,"""South America""" +2024-11-26,7708,3665,"[\""Wireless Mouse\""]",3679.49,{},88556,0,"""Africa""" +2023-12-31,7709,5513,"[\""Headphones\""]",1670.45,{},27491,0,"""North America""" +2023-12-28,7710,6341,"[\""Wireless Mouse\""]",463.28,"{\""promo\"": \""5%\""}",169548,0,"""South America""" +2024-11-11,7711,6789,"[\""Monitor\"", \""Laptop\""]",3386.06,"{\""seasonal\"": \""5%\""}",139443,1,"""Asia""" +2023-07-14,7712,1121,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3815.17,"{\""seasonal\"": \""12%\""}",229974,0,"""Africa""" +2024-01-13,7713,8964,"[\""Phone\"", \""Tablet\""]",3332.22,{},70998,0,"""North America""" +2023-05-01,7714,7546,"[\""Monitor\"", \""Phone\""]",52.9,"{\""loyalty\"": \""23%\""}",53115,0,"""Asia""" +2024-03-30,7715,7039,"[\""Tablet\""]",104.53,"{\""loyalty\"": \""26%\""}",224756,0,"""South America""" +2024-02-06,7716,6729,"[\""Tablet\"", \""Headphones\""]",3986.34,{},41776,1,"""South America""" +2023-10-29,7717,7986,"[\""Headphones\""]",1282.47,"{\""promo\"": \""19%\""}",208235,0,"""North America""" +2023-02-17,7718,3603,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4369.19,{},169807,1,"""North America""" +2023-10-14,7719,7371,"[\""Phone\""]",3947.91,{},247311,1,"""Africa""" +2023-12-27,7720,7909,"[\""Monitor\"", \""Keyboard\""]",2759.85,"{\""loyalty\"": \""10%\""}",95899,0,"""North America""" +2024-11-08,7721,106,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4241.77,{},119481,0,"""Asia""" +2023-05-21,7722,461,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",558.48,{},76638,1,"""Asia""" +2024-07-15,7723,6215,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1753.37,"{\""seasonal\"": \""12%\""}",46983,1,"""Africa""" +2024-03-13,7724,3483,"[\""Phone\"", \""Monitor\""]",506.75,{},86491,1,"""South America""" +2023-03-31,7725,6009,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1934.78,"{\""seasonal\"": \""8%\""}",135401,1,"""South America""" +2024-08-04,7726,7474,"[\""Monitor\"", \""Keyboard\""]",2746.81,{},207510,1,"""South America""" +2023-05-02,7727,5828,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3439.2,{},23296,0,"""North America""" +2023-05-15,7728,7866,"[\""Headphones\""]",3359.59,{},122981,1,"""South America""" +2023-04-01,7729,6928,"[\""Headphones\""]",1444.98,{},119555,0,"""South America""" +2023-09-09,7730,6806,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2457.5,{},35951,1,"""North America""" +2023-03-26,7731,8672,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2765.38,{},68612,0,"""North America""" +2023-05-01,7732,242,"[\""Charger\"", \""Tablet\""]",1530.35,"{\"": \""29%\""}",115632,1,"""South America""" +2024-10-18,7733,9335,"[\""Phone\""]",912.93,"{\""promo\"": \""7%\""}",130679,0,"""South America""" +2024-06-16,7734,5266,"[\""Tablet\"", \""Charger\""]",273.76,{},47560,0,"""Asia""" +2023-05-28,7735,7999,"[\""Charger\""]",3726.94,{},241612,1,"""South America""" +2023-05-13,7736,6546,"[\""Keyboard\""]",1053.85,{},19123,1,"""Africa""" +2024-02-19,7737,4867,"[\""Phone\""]",2058.52,"{\"": \""15%\""}",152232,0,"""North America""" +2024-10-30,7738,7130,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4753.47,{},200879,0,"""North America""" +2023-11-14,7739,7599,"[\""Tablet\"", \""Laptop\""]",2608.06,{},45698,1,"""Africa""" +2024-10-21,7740,3512,"[\""Charger\"", \""Headphones\""]",4965.19,"{\"": \""30%\""}",85773,0,"""Asia""" +2023-07-24,7741,890,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2500.69,{},72187,1,"""Africa""" +2024-02-29,7742,2838,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1977.88,{},192850,0,"""Africa""" +2024-12-21,7743,4742,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2090.5,{},182046,0,"""Asia""" +2023-11-14,7744,3272,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3485.0,"{\""promo\"": \""21%\""}",242081,0,"""Europe""" +2023-09-11,7745,8665,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2767.78,{},173708,0,"""North America""" +2023-09-09,7746,9842,"[\""Laptop\"", \""Headphones\""]",631.8,{},52209,0,"""South America""" +2024-10-11,7747,7981,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3537.04,"{\""seasonal\"": \""21%\""}",22052,1,"""Asia""" +2024-07-07,7748,1985,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3547.65,{},275697,0,"""North America""" +2024-04-19,7749,6174,"[\""Phone\"", \""Tablet\""]",3963.89,{},281644,0,"""Africa""" +2024-08-28,7750,9555,"[\""Wireless Mouse\"", \""Charger\""]",2435.78,"{\""seasonal\"": \""13%\""}",140170,1,"""North America""" +2024-09-04,7751,9195,"[\""Monitor\"", \""Laptop\""]",2640.31,{},58782,0,"""Asia""" +2023-01-17,7752,9741,"[\""Charger\"", \""Monitor\""]",1944.26,"{\""promo\"": \""20%\""}",113719,1,"""South America""" +2024-06-19,7753,6975,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",145.12,{},138129,0,"""Asia""" +2023-01-16,7754,5771,"[\""Wireless Mouse\"", \""Tablet\""]",3689.94,{},58508,0,"""South America""" +2023-12-25,7755,5168,"[\""Laptop\"", \""Charger\""]",3082.61,"{\""seasonal\"": \""16%\""}",12586,1,"""North America""" +2024-04-03,7756,1546,"[\""Charger\""]",3432.19,"{\""promo\"": \""11%\""}",96162,0,"""Asia""" +2024-06-28,7757,4631,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2006.8,"{\""seasonal\"": \""12%\""}",91505,1,"""Africa""" +2024-05-29,7758,6112,"[\""Laptop\"", \""Wireless Mouse\""]",1961.59,"{\""loyalty\"": \""27%\""}",276410,0,"""Asia""" +2024-02-28,7759,2465,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4101.78,{},282710,1,"""South America""" +2023-12-16,7760,4948,"[\""Monitor\"", \""Keyboard\""]",4222.34,"{\""promo\"": \""6%\""}",131962,1,"""South America""" +2023-06-19,7761,8958,"[\""Tablet\""]",2578.17,{},145707,1,"""South America""" +2023-02-17,7762,7595,"[\""Charger\"", \""Wireless Mouse\""]",4515.09,{},188530,0,"""Africa""" +2023-03-05,7763,1641,"[\""Charger\""]",4100.42,"{\""promo\"": \""19%\""}",86770,0,"""North America""" +2024-01-21,7764,8809,"[\""Keyboard\"", \""Headphones\""]",3195.05,"{\""seasonal\"": \""7%\""}",131007,0,"""Europe""" +2024-02-28,7765,553,"[\""Monitor\"", \""Wireless Mouse\""]",4796.36,"{\""seasonal\"": \""13%\""}",77683,1,"""Europe""" +2024-06-30,7766,4463,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",451.99,{},218341,1,"""South America""" +2023-04-14,7767,4685,"[\""Wireless Mouse\"", \""Phone\""]",4947.31,"{\""loyalty\"": \""29%\""}",124276,0,"""North America""" +2023-05-21,7768,1140,"[\""Wireless Mouse\"", \""Keyboard\""]",1534.99,"{\""promo\"": \""17%\""}",36097,0,"""North America""" +2024-02-07,7769,1164,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1126.49,"{\""seasonal\"": \""9%\""}",68340,1,"""Asia""" +2023-06-13,7770,5259,"[\""Laptop\""]",2657.49,{},151053,0,"""Africa""" +2023-07-19,7771,9280,"[\""Keyboard\""]",4319.13,{},33821,1,"""Asia""" +2024-04-15,7772,4675,"[\""Keyboard\"", \""Laptop\""]",1025.99,{},237580,1,"""Asia""" +2023-08-15,7773,4698,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1825.19,{},181540,1,"""North America""" +2023-11-03,7774,8267,"[\""Tablet\""]",1073.91,"{\"": \""24%\""}",76137,0,"""Africa""" +2023-10-28,7775,9333,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1467.95,{},266330,0,"""Africa""" +2023-08-06,7776,846,"[\""Phone\""]",4302.25,"{\""loyalty\"": \""7%\""}",88548,1,"""North America""" +2024-08-06,7777,6791,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3292.8,"{\""promo\"": \""18%\""}",32695,0,"""Asia""" +2024-02-24,7778,7882,"[\""Keyboard\""]",95.26,"{\""seasonal\"": \""12%\""}",34635,1,"""Africa""" +2023-11-05,7779,8220,"[\""Headphones\"", \""Tablet\""]",4266.12,{},276041,1,"""North America""" +2024-09-21,7780,671,"[\""Phone\"", \""Wireless Mouse\""]",935.98,{},61645,1,"""North America""" +2023-08-16,7781,9099,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",321.1,{},215869,1,"""North America""" +2024-04-24,7782,7672,"[\""Wireless Mouse\"", \""Headphones\""]",3370.05,"{\""promo\"": \""30%\""}",70792,1,"""North America""" +2024-01-04,7783,1878,"[\""Charger\"", \""Keyboard\""]",2414.81,{},50978,0,"""Asia""" +2024-10-25,7784,1026,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2573.84,"{\"": \""23%\""}",74685,0,"""Asia""" +2024-04-07,7785,6266,"[\""Phone\"", \""Tablet\""]",3270.84,"{\""loyalty\"": \""19%\""}",289799,1,"""South America""" +2023-01-27,7786,2771,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4266.17,"{\""loyalty\"": \""27%\""}",34809,0,"""South America""" +2024-12-07,7787,6103,"[\""Headphones\""]",3038.7,"{\""seasonal\"": \""14%\""}",259481,1,"""Europe""" +2024-01-05,7788,4958,"[\""Wireless Mouse\"", \""Laptop\""]",4921.29,"{\""loyalty\"": \""20%\""}",6719,0,"""Africa""" +2023-07-19,7789,5390,"[\""Phone\"", \""Keyboard\""]",3940.04,"{\""seasonal\"": \""13%\""}",124769,0,"""Africa""" +2024-05-27,7790,7458,"[\""Monitor\""]",4294.49,"{\"": \""18%\""}",142997,0,"""South America""" +2024-01-22,7791,5169,"[\""Wireless Mouse\""]",2644.8,{},169407,1,"""Europe""" +2023-04-14,7792,3770,"[\""Laptop\""]",258.29,"{\""loyalty\"": \""13%\""}",101906,1,"""South America""" +2024-12-22,7793,9393,"[\""Monitor\""]",4187.39,"{\""loyalty\"": \""23%\""}",74656,0,"""Europe""" +2024-08-16,7794,4538,"[\""Wireless Mouse\"", \""Laptop\""]",4530.37,"{\"": \""21%\""}",119931,0,"""North America""" +2024-09-16,7795,1183,"[\""Keyboard\""]",2910.61,"{\""seasonal\"": \""18%\""}",144512,0,"""North America""" +2023-08-11,7796,3841,"[\""Charger\""]",4484.13,"{\""loyalty\"": \""30%\""}",196166,0,"""South America""" +2023-05-14,7797,4784,"[\""Charger\""]",1924.54,{},289771,1,"""South America""" +2023-10-18,7798,5574,"[\""Wireless Mouse\""]",3309.61,{},268787,0,"""Europe""" +2024-10-29,7799,1824,"[\""Phone\"", \""Tablet\""]",3908.91,{},129308,1,"""Asia""" +2023-06-02,7800,2545,"[\""Charger\""]",1764.7,{},214713,0,"""North America""" +2024-10-10,7801,3789,"[\""Tablet\"", \""Laptop\""]",4881.2,{},232133,0,"""Europe""" +2023-01-25,7802,8825,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3091.92,"{\"": \""25%\""}",113754,0,"""Asia""" +2024-11-25,7803,6376,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2512.52,{},10819,0,"""South America""" +2023-11-01,7804,5109,"[\""Charger\""]",2200.07,"{\""seasonal\"": \""15%\""}",153205,1,"""North America""" +2024-05-07,7805,7345,"[\""Headphones\"", \""Wireless Mouse\""]",814.58,"{\"": \""25%\""}",209911,0,"""South America""" +2023-09-04,7806,247,"[\""Laptop\"", \""Wireless Mouse\""]",4044.78,"{\""promo\"": \""30%\""}",49730,0,"""Europe""" +2024-03-05,7807,6619,"[\""Monitor\"", \""Phone\""]",3845.54,"{\""seasonal\"": \""24%\""}",124887,1,"""Europe""" +2024-12-20,7808,5663,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1531.89,"{\"": \""24%\""}",267789,1,"""South America""" +2024-02-14,7809,3181,"[\""Keyboard\"", \""Charger\""]",2969.51,"{\""promo\"": \""14%\""}",294228,0,"""North America""" +2024-03-18,7810,2112,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4602.83,"{\""promo\"": \""28%\""}",134407,1,"""North America""" +2024-11-26,7811,7373,"[\""Charger\""]",3529.83,{},10048,1,"""Europe""" +2023-01-23,7812,4431,"[\""Phone\"", \""Headphones\""]",4080.31,{},66854,0,"""Asia""" +2024-09-29,7813,4463,"[\""Laptop\"", \""Headphones\""]",379.92,"{\""loyalty\"": \""28%\""}",56625,0,"""Europe""" +2024-07-10,7814,2846,"[\""Headphones\""]",4047.67,{},279707,1,"""Asia""" +2024-09-06,7815,2680,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2203.84,{},204494,1,"""Africa""" +2024-11-20,7816,1197,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4828.97,{},291519,1,"""North America""" +2023-02-06,7817,9282,"[\""Charger\"", \""Phone\""]",4513.82,"{\""seasonal\"": \""13%\""}",205612,1,"""Europe""" +2024-05-20,7818,6228,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3068.11,{},130135,0,"""North America""" +2024-09-20,7819,6239,"[\""Charger\""]",4848.39,{},170497,1,"""South America""" +2024-10-18,7820,5047,"[\""Phone\""]",1244.18,"{\""seasonal\"": \""24%\""}",27426,0,"""North America""" +2024-12-06,7821,9368,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1438.18,"{\"": \""26%\""}",123511,1,"""Asia""" +2024-11-29,7822,2827,"[\""Tablet\"", \""Keyboard\""]",1591.63,{},71500,1,"""Asia""" +2023-07-12,7823,602,"[\""Phone\""]",4410.96,"{\""seasonal\"": \""11%\""}",35761,0,"""Africa""" +2024-07-27,7824,9126,"[\""Phone\""]",2601.04,"{\""loyalty\"": \""7%\""}",255858,1,"""Asia""" +2024-07-06,7825,8478,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",84.0,{},267283,0,"""South America""" +2024-02-02,7826,584,"[\""Tablet\""]",1168.85,{},68409,1,"""Asia""" +2024-11-08,7827,1364,"[\""Keyboard\"", \""Monitor\""]",270.07,{},217229,0,"""Europe""" +2023-03-19,7828,9646,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3002.46,"{\""loyalty\"": \""11%\""}",73776,0,"""Asia""" +2024-11-23,7829,3790,"[\""Wireless Mouse\"", \""Phone\""]",540.86,{},149062,0,"""Asia""" +2024-07-22,7830,9432,"[\""Charger\"", \""Laptop\""]",2566.22,"{\""seasonal\"": \""20%\""}",290894,1,"""Asia""" +2024-07-25,7831,2810,"[\""Tablet\"", \""Headphones\""]",3232.61,{},291040,0,"""Asia""" +2023-09-07,7832,4464,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4148.44,{},37106,0,"""South America""" +2023-10-10,7833,2016,"[\""Monitor\""]",2183.78,"{\""promo\"": \""14%\""}",271092,1,"""Africa""" +2024-09-10,7834,8792,"[\""Laptop\""]",4262.73,"{\""promo\"": \""16%\""}",269340,0,"""Europe""" +2023-02-05,7835,8376,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",258.63,"{\""seasonal\"": \""12%\""}",86281,0,"""Africa""" +2023-06-26,7836,8668,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2532.66,"{\""loyalty\"": \""28%\""}",80043,1,"""South America""" +2024-11-02,7837,5448,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4590.87,{},184189,0,"""Africa""" +2024-08-09,7838,8525,"[\""Charger\"", \""Laptop\""]",3522.29,{},22861,1,"""South America""" +2024-07-29,7839,3121,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",76.52,"{\"": \""22%\""}",286974,1,"""North America""" +2023-06-13,7840,8381,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1601.76,"{\""loyalty\"": \""7%\""}",215604,0,"""North America""" +2023-04-27,7841,7893,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2562.92,{},194837,1,"""South America""" +2023-05-24,7842,6123,"[\""Monitor\""]",3994.3,{},170711,1,"""Africa""" +2024-03-10,7843,4457,"[\""Charger\""]",2674.32,{},142622,0,"""North America""" +2023-09-06,7844,5552,"[\""Wireless Mouse\"", \""Keyboard\""]",2404.02,{},143435,1,"""Asia""" +2024-05-18,7845,6913,"[\""Charger\"", \""Wireless Mouse\""]",642.43,{},144301,1,"""North America""" +2023-03-24,7846,3485,"[\""Keyboard\"", \""Headphones\""]",3304.14,{},14335,0,"""Africa""" +2023-07-08,7847,5066,"[\""Charger\"", \""Headphones\""]",490.71,{},229428,1,"""South America""" +2023-02-20,7848,2530,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3335.68,"{\""promo\"": \""29%\""}",117831,0,"""Europe""" +2024-12-21,7849,4111,"[\""Keyboard\"", \""Wireless Mouse\""]",1211.9,{},270976,1,"""South America""" +2024-11-11,7850,2318,"[\""Wireless Mouse\""]",1115.42,"{\""promo\"": \""13%\""}",184781,1,"""North America""" +2023-08-04,7851,2226,"[\""Tablet\"", \""Monitor\""]",4863.83,"{\""promo\"": \""5%\""}",64105,1,"""Asia""" +2023-06-29,7852,4369,"[\""Monitor\""]",1830.54,"{\""seasonal\"": \""20%\""}",226384,1,"""Asia""" +2024-07-07,7853,5056,"[\""Charger\"", \""Tablet\""]",226.63,"{\""loyalty\"": \""6%\""}",172050,1,"""Africa""" +2023-07-05,7854,3880,"[\""Laptop\"", \""Tablet\""]",4621.53,"{\"": \""5%\""}",261569,1,"""South America""" +2024-03-01,7855,1371,"[\""Headphones\""]",596.22,"{\""seasonal\"": \""23%\""}",32752,1,"""Asia""" +2024-01-04,7856,7845,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1633.3,{},108294,0,"""North America""" +2023-05-17,7857,8579,"[\""Monitor\"", \""Laptop\""]",248.71,{},292580,1,"""North America""" +2023-12-29,7858,8362,"[\""Monitor\""]",1438.49,{},7522,0,"""Africa""" +2024-01-26,7859,4296,"[\""Keyboard\""]",1003.24,{},237941,1,"""Africa""" +2023-01-21,7860,1691,"[\""Phone\"", \""Tablet\""]",3043.36,"{\""loyalty\"": \""26%\""}",231564,0,"""Europe""" +2023-03-18,7861,3990,"[\""Phone\""]",4341.82,"{\""loyalty\"": \""22%\""}",186256,0,"""South America""" +2024-04-27,7862,4094,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3169.99,"{\""seasonal\"": \""16%\""}",265126,1,"""Asia""" +2024-03-04,7863,2346,"[\""Tablet\""]",4331.56,{},20720,0,"""Africa""" +2023-08-24,7864,5285,"[\""Tablet\""]",110.07,"{\""loyalty\"": \""6%\""}",71887,0,"""South America""" +2024-03-17,7865,755,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4216.95,"{\""loyalty\"": \""11%\""}",299354,0,"""Africa""" +2023-07-25,7866,541,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",757.69,"{\"": \""22%\""}",76039,0,"""Europe""" +2024-10-18,7867,5405,"[\""Tablet\"", \""Keyboard\""]",1545.25,"{\""loyalty\"": \""5%\""}",97206,0,"""Africa""" +2023-05-30,7868,735,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",395.64,"{\""promo\"": \""20%\""}",53462,0,"""Africa""" +2024-10-24,7869,6214,"[\""Charger\""]",4888.82,{},85300,1,"""Africa""" +2023-04-16,7870,2572,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3188.28,"{\""seasonal\"": \""6%\""}",45873,0,"""South America""" +2024-07-25,7871,7708,"[\""Laptop\"", \""Headphones\""]",3344.41,{},45282,0,"""Asia""" +2024-12-17,7872,1015,"[\""Keyboard\""]",3711.68,"{\""promo\"": \""12%\""}",50150,1,"""North America""" +2024-12-22,7873,4153,"[\""Phone\"", \""Headphones\""]",3835.58,"{\"": \""20%\""}",124482,1,"""Asia""" +2024-05-11,7874,2663,"[\""Tablet\""]",1798.29,"{\""seasonal\"": \""26%\""}",50017,1,"""South America""" +2023-03-02,7875,6686,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3075.01,"{\""seasonal\"": \""23%\""}",12563,0,"""Asia""" +2024-11-28,7876,1856,"[\""Tablet\"", \""Laptop\""]",1924.92,"{\""seasonal\"": \""13%\""}",274024,1,"""Asia""" +2024-06-28,7877,995,"[\""Phone\"", \""Wireless Mouse\""]",2473.19,"{\""seasonal\"": \""24%\""}",172428,0,"""Africa""" +2024-03-29,7878,4622,"[\""Phone\"", \""Monitor\"", \""Charger\""]",63.95,{},50067,1,"""Europe""" +2023-03-11,7879,2214,"[\""Laptop\"", \""Wireless Mouse\""]",4613.92,{},121125,1,"""Africa""" +2023-12-25,7880,4289,"[\""Headphones\"", \""Laptop\""]",3672.6,{},4046,1,"""South America""" +2023-02-20,7881,7569,"[\""Charger\"", \""Monitor\""]",1776.8,{},69952,0,"""Asia""" +2024-12-31,7882,42,"[\""Tablet\"", \""Monitor\""]",479.85,"{\""promo\"": \""15%\""}",244348,1,"""Europe""" +2023-04-28,7883,155,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2896.83,{},70072,0,"""Europe""" +2023-01-08,7884,7138,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4147.86,"{\"": \""26%\""}",136697,1,"""South America""" +2023-09-22,7885,931,"[\""Headphones\""]",3960.49,{},278202,1,"""Europe""" +2024-01-12,7886,2063,"[\""Keyboard\"", \""Laptop\""]",971.55,{},72130,1,"""Asia""" +2023-10-22,7887,5634,"[\""Wireless Mouse\"", \""Phone\""]",4851.08,"{\""seasonal\"": \""8%\""}",110901,0,"""North America""" +2024-04-10,7888,9491,"[\""Keyboard\"", \""Laptop\""]",2856.33,{},45562,0,"""North America""" +2023-10-02,7889,9747,"[\""Monitor\""]",1420.45,"{\""seasonal\"": \""22%\""}",142056,0,"""North America""" +2023-06-10,7890,4819,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3396.52,{},269319,1,"""Africa""" +2023-06-01,7891,4513,"[\""Tablet\"", \""Monitor\""]",4915.81,{},212599,0,"""North America""" +2023-05-16,7892,8442,"[\""Tablet\""]",4827.24,"{\""seasonal\"": \""20%\""}",273583,0,"""Africa""" +2024-09-10,7893,3700,"[\""Monitor\""]",736.12,{},231659,0,"""Europe""" +2023-11-12,7894,1698,"[\""Wireless Mouse\""]",2114.67,"{\""promo\"": \""11%\""}",270047,1,"""Asia""" +2024-11-13,7895,1401,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4055.39,"{\""seasonal\"": \""13%\""}",286836,0,"""Asia""" +2024-11-29,7896,1155,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3465.46,{},256602,0,"""Africa""" +2023-12-11,7897,4347,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2571.59,{},259010,1,"""South America""" +2024-05-24,7898,4376,"[\""Laptop\""]",309.11,{},24300,1,"""North America""" +2024-09-17,7899,1987,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1520.89,{},72162,0,"""South America""" +2024-10-23,7900,6406,"[\""Phone\"", \""Keyboard\""]",3517.35,{},128475,1,"""North America""" +2023-08-23,7901,8401,"[\""Headphones\"", \""Tablet\""]",2476.14,"{\""promo\"": \""24%\""}",162912,0,"""Africa""" +2023-09-18,7902,6085,"[\""Phone\"", \""Monitor\""]",4213.14,{},21551,0,"""Europe""" +2024-05-27,7903,4521,"[\""Monitor\"", \""Wireless Mouse\""]",4508.25,{},90276,1,"""Asia""" +2023-01-13,7904,2682,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3638.0,{},115557,0,"""Africa""" +2024-06-06,7905,5862,"[\""Charger\"", \""Phone\"", \""Monitor\""]",266.68,{},79727,0,"""Europe""" +2023-09-28,7906,8975,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2326.72,{},225408,1,"""Africa""" +2024-09-08,7907,8085,"[\""Tablet\"", \""Wireless Mouse\""]",2977.97,"{\""loyalty\"": \""20%\""}",216297,0,"""Europe""" +2024-02-10,7908,5974,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",123.88,"{\"": \""16%\""}",161018,0,"""Asia""" +2023-06-24,7909,7650,"[\""Laptop\"", \""Tablet\""]",3028.97,{},191071,1,"""Asia""" +2024-10-15,7910,5314,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4546.09,"{\""promo\"": \""8%\""}",239632,0,"""Africa""" +2024-01-21,7911,710,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2364.07,{},126222,1,"""Europe""" +2024-04-29,7912,4942,"[\""Tablet\"", \""Monitor\""]",362.04,"{\"": \""28%\""}",202663,1,"""Asia""" +2023-03-22,7913,9490,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4520.81,"{\"": \""10%\""}",179361,1,"""Africa""" +2023-09-09,7914,7727,"[\""Headphones\""]",174.96,"{\""promo\"": \""26%\""}",23972,0,"""Asia""" +2024-07-21,7915,5418,"[\""Laptop\"", \""Headphones\""]",1236.29,"{\"": \""14%\""}",21826,1,"""Europe""" +2024-12-19,7916,7531,"[\""Wireless Mouse\""]",499.63,{},25767,0,"""Africa""" +2023-10-29,7917,4381,"[\""Charger\"", \""Headphones\""]",1076.28,{},183890,0,"""Asia""" +2023-03-03,7918,5026,"[\""Keyboard\"", \""Tablet\""]",3877.28,{},260942,0,"""Africa""" +2023-09-05,7919,5854,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1495.33,"{\""loyalty\"": \""27%\""}",136645,1,"""Asia""" +2023-12-12,7920,2312,"[\""Laptop\"", \""Phone\""]",2160.37,"{\""seasonal\"": \""17%\""}",288618,1,"""Asia""" +2023-10-15,7921,8667,"[\""Keyboard\""]",1840.78,{},160379,1,"""South America""" +2023-11-09,7922,6502,"[\""Tablet\"", \""Charger\""]",4615.56,"{\""seasonal\"": \""25%\""}",59125,1,"""Africa""" +2023-09-05,7923,2571,"[\""Laptop\""]",4362.89,{},290553,1,"""Africa""" +2024-10-21,7924,6789,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4021.74,"{\"": \""23%\""}",80037,1,"""Asia""" +2023-07-16,7925,8915,"[\""Phone\""]",4029.72,{},198663,0,"""Europe""" +2023-07-01,7926,27,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",706.33,{},235189,1,"""South America""" +2023-07-13,7927,6468,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2893.39,{},208217,0,"""Europe""" +2023-09-25,7928,4714,"[\""Laptop\""]",2032.11,{},233093,1,"""Asia""" +2024-07-28,7929,892,"[\""Headphones\"", \""Monitor\""]",3544.59,"{\""seasonal\"": \""9%\""}",94954,1,"""Africa""" +2024-02-14,7930,4581,"[\""Headphones\""]",1566.78,"{\""loyalty\"": \""15%\""}",9421,0,"""Africa""" +2024-11-20,7931,8738,"[\""Headphones\"", \""Keyboard\""]",1950.52,{},14015,0,"""Africa""" +2024-08-01,7932,9950,"[\""Charger\"", \""Phone\""]",2021.6,"{\""promo\"": \""18%\""}",67601,1,"""Africa""" +2023-08-13,7933,3075,"[\""Laptop\""]",1623.28,"{\""promo\"": \""12%\""}",242610,1,"""Asia""" +2023-10-08,7934,5664,"[\""Wireless Mouse\""]",2757.9,{},242863,1,"""South America""" +2023-10-07,7935,2907,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4429.76,"{\""seasonal\"": \""6%\""}",256548,1,"""Europe""" +2024-04-05,7936,329,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1887.46,{},12695,1,"""South America""" +2024-12-28,7937,9737,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",203.84,{},163635,1,"""Europe""" +2023-03-23,7938,5062,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4181.99,{},180909,1,"""Europe""" +2024-08-16,7939,8963,"[\""Tablet\""]",4150.96,{},208618,0,"""Europe""" +2024-07-23,7940,8731,"[\""Charger\""]",4844.81,"{\""promo\"": \""15%\""}",48925,0,"""South America""" +2023-09-09,7941,382,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2409.92,{},196128,0,"""Asia""" +2024-07-30,7942,7553,"[\""Keyboard\"", \""Monitor\""]",117.23,{},115037,0,"""South America""" +2023-11-26,7943,6663,"[\""Charger\"", \""Wireless Mouse\""]",3064.5,"{\"": \""20%\""}",95960,0,"""Asia""" +2024-09-25,7944,8076,"[\""Monitor\"", \""Phone\""]",3568.32,{},294442,0,"""South America""" +2024-03-24,7945,4458,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2616.95,{},171350,0,"""Asia""" +2023-03-22,7946,9858,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",560.99,"{\""loyalty\"": \""18%\""}",205002,1,"""South America""" +2023-01-05,7947,1193,"[\""Phone\"", \""Monitor\""]",1043.3,"{\""promo\"": \""11%\""}",8344,1,"""Africa""" +2023-07-05,7948,8361,"[\""Phone\""]",474.84,"{\""promo\"": \""8%\""}",173021,0,"""South America""" +2023-08-09,7949,7460,"[\""Charger\"", \""Monitor\""]",1631.77,"{\""seasonal\"": \""10%\""}",111566,1,"""Asia""" +2024-09-12,7950,7229,"[\""Monitor\"", \""Laptop\""]",305.83,{},235173,1,"""North America""" +2023-03-03,7951,6270,"[\""Charger\""]",838.17,{},120421,1,"""Africa""" +2024-09-16,7952,2844,"[\""Keyboard\""]",4853.47,"{\"": \""13%\""}",188876,1,"""Africa""" +2024-02-25,7953,4099,"[\""Keyboard\""]",4892.38,{},213291,1,"""South America""" +2023-10-23,7954,3894,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3505.89,{},60740,0,"""North America""" +2024-05-12,7955,6914,"[\""Headphones\"", \""Phone\""]",2042.72,{},5312,0,"""Europe""" +2024-05-31,7956,6982,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",116.62,{},75579,1,"""Europe""" +2023-01-27,7957,7617,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1332.13,{},253561,1,"""Asia""" +2023-06-01,7958,6495,"[\""Laptop\""]",4949.67,{},89188,0,"""Europe""" +2023-12-19,7959,2755,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1145.19,"{\"": \""20%\""}",98612,1,"""Asia""" +2023-02-28,7960,3345,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",485.25,"{\""promo\"": \""22%\""}",23443,1,"""Europe""" +2023-10-21,7961,3331,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",127.62,{},122026,1,"""Europe""" +2024-06-02,7962,2765,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",115.73,"{\"": \""6%\""}",105009,1,"""Europe""" +2024-10-04,7963,9271,"[\""Headphones\"", \""Keyboard\""]",1470.25,"{\"": \""16%\""}",65580,1,"""South America""" +2024-10-09,7964,5066,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4867.34,{},219377,0,"""Africa""" +2024-07-30,7965,5863,"[\""Keyboard\""]",1930.65,{},72206,0,"""Asia""" +2023-02-10,7966,8458,"[\""Monitor\"", \""Laptop\""]",3229.13,"{\"": \""30%\""}",231665,0,"""North America""" +2023-05-07,7967,2700,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3767.16,{},14873,0,"""Asia""" +2024-11-17,7968,2773,"[\""Keyboard\"", \""Monitor\""]",3301.46,"{\""seasonal\"": \""28%\""}",176434,0,"""South America""" +2024-12-08,7969,9509,"[\""Tablet\"", \""Headphones\""]",2335.14,{},259910,1,"""Asia""" +2024-12-22,7970,3053,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4759.57,{},176672,0,"""North America""" +2024-04-13,7971,2729,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4895.45,{},279237,1,"""Europe""" +2023-04-27,7972,8295,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1865.04,"{\""seasonal\"": \""5%\""}",74400,0,"""South America""" +2024-05-05,7973,3961,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",132.9,"{\"": \""20%\""}",43161,0,"""Asia""" +2024-11-06,7974,4294,"[\""Laptop\"", \""Keyboard\""]",3882.34,"{\""promo\"": \""30%\""}",22709,1,"""Africa""" +2024-12-31,7975,133,"[\""Wireless Mouse\"", \""Monitor\""]",2358.24,{},51484,1,"""Africa""" +2024-04-19,7976,5351,"[\""Tablet\""]",1057.32,"{\"": \""19%\""}",266483,1,"""Africa""" +2024-10-19,7977,3214,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1684.43,{},88919,0,"""Asia""" +2023-06-22,7978,2380,"[\""Monitor\"", \""Tablet\""]",1754.69,{},41497,0,"""South America""" +2024-05-24,7979,9989,"[\""Wireless Mouse\"", \""Phone\""]",3705.49,{},99805,1,"""Asia""" +2024-04-29,7980,6697,"[\""Charger\"", \""Tablet\""]",4032.83,"{\""seasonal\"": \""27%\""}",226519,1,"""Africa""" +2024-09-13,7981,1798,"[\""Wireless Mouse\"", \""Headphones\""]",3011.18,{},79894,0,"""South America""" +2024-06-15,7982,980,"[\""Laptop\"", \""Tablet\""]",4186.89,"{\"": \""23%\""}",212859,0,"""South America""" +2023-12-14,7983,7501,"[\""Tablet\""]",4776.68,"{\""seasonal\"": \""29%\""}",235710,0,"""North America""" +2024-01-19,7984,213,"[\""Headphones\""]",1109.04,{},229802,0,"""Asia""" +2024-01-23,7985,5276,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",655.62,{},184114,0,"""Asia""" +2024-02-16,7986,9077,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",481.12,{},59030,0,"""Europe""" +2024-01-16,7987,3542,"[\""Laptop\""]",3250.84,"{\""seasonal\"": \""17%\""}",173831,0,"""North America""" +2023-02-20,7988,2169,"[\""Keyboard\"", \""Phone\""]",3700.14,"{\"": \""12%\""}",91843,0,"""North America""" +2024-12-24,7989,6021,"[\""Charger\"", \""Monitor\""]",1797.0,"{\""promo\"": \""9%\""}",273810,0,"""North America""" +2023-03-11,7990,4173,"[\""Wireless Mouse\""]",728.94,{},37468,0,"""Asia""" +2024-12-24,7991,5514,"[\""Phone\"", \""Monitor\""]",3748.75,{},27900,1,"""South America""" +2024-01-18,7992,4051,"[\""Monitor\""]",4619.48,"{\""promo\"": \""7%\""}",114025,1,"""South America""" +2024-02-15,7993,5689,"[\""Phone\"", \""Headphones\""]",2744.37,{},114493,0,"""Europe""" +2023-01-13,7994,2149,"[\""Headphones\"", \""Wireless Mouse\""]",2044.03,"{\""promo\"": \""7%\""}",79130,0,"""Europe""" +2023-01-08,7995,1806,"[\""Tablet\""]",1442.12,{},208006,0,"""Africa""" +2023-11-28,7996,9611,"[\""Tablet\""]",1775.53,"{\""seasonal\"": \""25%\""}",234511,0,"""South America""" +2023-07-10,7997,5397,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2130.36,"{\"": \""16%\""}",161124,1,"""South America""" +2023-02-05,7998,1554,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3255.16,{},200764,1,"""North America""" +2024-06-30,7999,9314,"[\""Charger\""]",2843.66,{},242890,1,"""Asia""" +2023-03-17,8000,8428,"[\""Laptop\""]",4826.32,"{\""promo\"": \""10%\""}",216115,0,"""South America""" +2024-04-01,8001,6097,"[\""Laptop\""]",512.07,{},65237,0,"""Asia""" +2023-09-22,8002,3937,"[\""Wireless Mouse\""]",1491.12,"{\""loyalty\"": \""13%\""}",172164,1,"""South America""" +2023-07-12,8003,6705,"[\""Keyboard\""]",2384.93,{},64565,0,"""North America""" +2023-02-02,8004,9705,"[\""Wireless Mouse\"", \""Monitor\""]",3664.88,{},41100,0,"""North America""" +2024-11-09,8005,8738,"[\""Charger\""]",2158.8,"{\"": \""26%\""}",159298,1,"""Africa""" +2024-03-11,8006,9525,"[\""Monitor\"", \""Keyboard\""]",1397.09,"{\""seasonal\"": \""30%\""}",140170,0,"""Asia""" +2024-12-08,8007,3508,"[\""Charger\""]",2679.45,{},124640,1,"""Asia""" +2024-10-19,8008,8752,"[\""Tablet\""]",609.17,{},73305,1,"""Africa""" +2024-07-03,8009,8054,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2650.72,"{\""promo\"": \""13%\""}",63544,0,"""Africa""" +2023-08-31,8010,3106,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3277.76,"{\""promo\"": \""19%\""}",281785,0,"""Europe""" +2023-03-26,8011,5504,"[\""Tablet\"", \""Charger\""]",188.14,{},115262,0,"""Europe""" +2023-07-28,8012,2536,"[\""Laptop\"", \""Tablet\""]",2076.35,"{\""seasonal\"": \""18%\""}",133738,0,"""Africa""" +2023-08-04,8013,683,"[\""Tablet\"", \""Laptop\""]",1471.74,"{\""seasonal\"": \""19%\""}",131249,1,"""South America""" +2023-09-24,8014,1030,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3706.02,"{\""seasonal\"": \""20%\""}",171217,1,"""Europe""" +2023-07-27,8015,4762,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",529.03,"{\"": \""30%\""}",81634,0,"""South America""" +2024-06-06,8016,6313,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1524.79,"{\"": \""17%\""}",157231,0,"""Asia""" +2024-05-22,8017,6344,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1934.49,{},91727,0,"""Asia""" +2023-04-09,8018,7439,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3194.56,{},273683,1,"""Asia""" +2023-05-10,8019,8926,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1042.34,{},248266,0,"""Europe""" +2024-01-18,8020,6984,"[\""Tablet\"", \""Phone\""]",449.74,{},247567,1,"""North America""" +2023-01-17,8021,2304,"[\""Wireless Mouse\"", \""Monitor\""]",2768.21,"{\""promo\"": \""15%\""}",8382,0,"""Europe""" +2024-10-23,8022,4816,"[\""Wireless Mouse\"", \""Tablet\""]",3074.36,"{\""promo\"": \""15%\""}",12692,1,"""Europe""" +2023-03-21,8023,4635,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2257.7,"{\""loyalty\"": \""27%\""}",292013,1,"""Europe""" +2024-03-10,8024,2197,"[\""Charger\""]",2045.07,"{\""promo\"": \""29%\""}",56969,0,"""South America""" +2023-01-09,8025,5811,"[\""Wireless Mouse\"", \""Phone\""]",4038.74,{},11844,0,"""North America""" +2024-01-02,8026,5390,"[\""Keyboard\"", \""Charger\""]",3774.81,"{\""promo\"": \""25%\""}",77584,1,"""Africa""" +2024-10-24,8027,3181,"[\""Keyboard\"", \""Tablet\""]",1370.74,"{\""seasonal\"": \""30%\""}",175255,0,"""North America""" +2023-10-21,8028,5604,"[\""Monitor\""]",3951.19,{},60157,1,"""Europe""" +2023-12-30,8029,3183,"[\""Laptop\"", \""Tablet\""]",933.84,{},293665,1,"""Asia""" +2024-07-27,8030,3026,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",773.36,"{\"": \""18%\""}",90611,1,"""South America""" +2024-05-02,8031,1152,"[\""Tablet\""]",1391.3,{},289160,1,"""South America""" +2024-05-03,8032,1623,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",90.5,"{\""seasonal\"": \""17%\""}",6980,1,"""Africa""" +2024-08-03,8033,6127,"[\""Phone\""]",3669.37,"{\"": \""11%\""}",20992,1,"""Europe""" +2023-11-06,8034,8512,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2498.31,{},112469,0,"""Europe""" +2024-01-26,8035,1489,"[\""Headphones\""]",4418.39,{},252337,0,"""Asia""" +2023-01-12,8036,3107,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4194.36,{},226855,1,"""North America""" +2024-02-07,8037,7748,"[\""Keyboard\"", \""Tablet\""]",99.52,"{\""promo\"": \""16%\""}",172560,1,"""Asia""" +2024-04-27,8038,6853,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",267.63,{},139683,0,"""Europe""" +2024-08-04,8039,2284,"[\""Monitor\""]",434.72,"{\""seasonal\"": \""21%\""}",234731,1,"""South America""" +2024-02-22,8040,2625,"[\""Laptop\"", \""Headphones\""]",3468.78,{},40370,0,"""South America""" +2024-03-19,8041,5565,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3000.1,"{\"": \""30%\""}",49684,0,"""Europe""" +2023-07-15,8042,3426,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1903.4,{},90722,1,"""Europe""" +2023-11-04,8043,6559,"[\""Tablet\""]",376.75,{},21514,0,"""Africa""" +2024-04-01,8044,9231,"[\""Tablet\"", \""Charger\""]",2026.66,{},22599,1,"""North America""" +2023-01-14,8045,2277,"[\""Keyboard\""]",1353.56,"{\""seasonal\"": \""27%\""}",29111,1,"""Asia""" +2023-10-02,8046,2583,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3682.96,"{\"": \""18%\""}",223565,1,"""North America""" +2023-04-19,8047,9269,"[\""Phone\"", \""Charger\""]",1948.24,"{\""loyalty\"": \""14%\""}",10788,0,"""Africa""" +2023-06-28,8048,372,"[\""Laptop\"", \""Keyboard\""]",407.72,"{\""promo\"": \""8%\""}",192959,0,"""North America""" +2023-08-03,8049,3061,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",248.67,"{\"": \""9%\""}",164649,1,"""Asia""" +2024-07-23,8050,6763,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1990.36,"{\"": \""28%\""}",71470,0,"""North America""" +2023-06-27,8051,3893,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1695.98,"{\"": \""20%\""}",41431,0,"""Africa""" +2023-05-01,8052,6551,"[\""Keyboard\""]",2830.57,{},274047,1,"""Europe""" +2024-11-08,8053,6405,"[\""Laptop\"", \""Tablet\""]",4536.94,{},114173,1,"""Asia""" +2023-03-19,8054,4413,"[\""Wireless Mouse\"", \""Charger\""]",309.07,{},223974,0,"""Africa""" +2024-12-18,8055,2987,"[\""Charger\""]",2857.0,{},142689,0,"""Asia""" +2024-07-08,8056,5919,"[\""Headphones\"", \""Charger\""]",3737.87,{},74094,0,"""North America""" +2024-02-27,8057,9420,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1411.76,{},82388,0,"""North America""" +2024-03-25,8058,4992,"[\""Tablet\""]",2553.81,{},295307,1,"""South America""" +2024-06-04,8059,1336,"[\""Headphones\"", \""Charger\""]",4803.1,{},78794,1,"""North America""" +2024-07-17,8060,4094,"[\""Laptop\""]",3506.98,{},250835,0,"""South America""" +2023-07-12,8061,4562,"[\""Charger\"", \""Phone\""]",533.0,{},227701,1,"""Europe""" +2024-01-22,8062,4170,"[\""Laptop\""]",1077.24,"{\""promo\"": \""5%\""}",57762,1,"""Europe""" +2024-02-16,8063,1752,"[\""Phone\"", \""Charger\""]",4434.48,{},141490,1,"""Europe""" +2024-02-27,8064,218,"[\""Headphones\""]",3858.86,"{\""promo\"": \""20%\""}",235666,0,"""Europe""" +2024-05-07,8065,8578,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",321.33,"{\""seasonal\"": \""20%\""}",276353,1,"""Europe""" +2023-03-17,8066,9746,"[\""Tablet\""]",4724.63,"{\""loyalty\"": \""28%\""}",46286,1,"""Asia""" +2023-06-17,8067,1279,"[\""Wireless Mouse\""]",4778.88,"{\""loyalty\"": \""30%\""}",131691,1,"""North America""" +2023-04-05,8068,5854,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3686.63,"{\""loyalty\"": \""17%\""}",170194,1,"""North America""" +2024-11-29,8069,7733,"[\""Wireless Mouse\""]",4017.45,"{\""loyalty\"": \""11%\""}",198341,1,"""North America""" +2023-02-09,8070,9212,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3960.09,{},16357,0,"""Africa""" +2023-02-09,8071,7370,"[\""Phone\"", \""Keyboard\""]",287.36,{},148736,0,"""South America""" +2024-09-12,8072,1861,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4759.14,"{\""loyalty\"": \""24%\""}",151167,1,"""Europe""" +2023-03-27,8073,3690,"[\""Laptop\"", \""Monitor\""]",974.46,{},239290,0,"""Asia""" +2023-11-22,8074,1521,"[\""Charger\"", \""Headphones\""]",1653.03,"{\"": \""11%\""}",171283,1,"""Asia""" +2023-11-13,8075,7222,"[\""Laptop\""]",4032.76,"{\""loyalty\"": \""17%\""}",266633,1,"""Asia""" +2024-08-09,8076,9016,"[\""Tablet\"", \""Charger\""]",1628.7,"{\""seasonal\"": \""12%\""}",226501,0,"""Europe""" +2024-04-14,8077,6621,"[\""Keyboard\""]",110.87,"{\""promo\"": \""27%\""}",28492,0,"""North America""" +2023-10-11,8078,6337,"[\""Keyboard\""]",4263.82,"{\"": \""5%\""}",184793,1,"""Asia""" +2024-04-18,8079,3400,"[\""Tablet\"", \""Monitor\""]",2577.84,{},26816,0,"""Europe""" +2023-11-03,8080,5174,"[\""Laptop\"", \""Phone\""]",2324.88,"{\""loyalty\"": \""30%\""}",137128,0,"""South America""" +2024-11-16,8081,8276,"[\""Charger\""]",3425.22,"{\""seasonal\"": \""10%\""}",196303,0,"""North America""" +2024-07-16,8082,3859,"[\""Charger\"", \""Tablet\""]",4589.3,{},172723,0,"""Asia""" +2023-08-22,8083,7690,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4908.48,{},262924,0,"""South America""" +2024-11-07,8084,4782,"[\""Keyboard\""]",2184.71,{},165719,0,"""Europe""" +2023-03-20,8085,4224,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2151.18,"{\""promo\"": \""9%\""}",235231,0,"""South America""" +2023-07-18,8086,8990,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",378.04,"{\"": \""28%\""}",86630,0,"""Asia""" +2023-05-25,8087,7654,"[\""Laptop\""]",2723.67,{},43066,1,"""North America""" +2023-11-28,8088,6432,"[\""Tablet\""]",1454.02,{},189643,0,"""South America""" +2023-04-27,8089,8147,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2925.98,"{\"": \""5%\""}",101732,0,"""Asia""" +2024-04-29,8090,3961,"[\""Laptop\"", \""Headphones\""]",4801.61,{},80482,1,"""Africa""" +2024-05-26,8091,8064,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4436.24,{},268962,1,"""Asia""" +2024-05-01,8092,974,"[\""Monitor\""]",3799.69,{},175063,0,"""South America""" +2023-03-02,8093,5868,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3050.18,{},9883,0,"""Asia""" +2024-03-12,8094,9928,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",463.05,{},261515,1,"""Asia""" +2023-11-06,8095,8225,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2425.42,{},58087,0,"""North America""" +2023-05-05,8096,5395,"[\""Tablet\"", \""Wireless Mouse\""]",2040.74,"{\""promo\"": \""10%\""}",192921,0,"""Europe""" +2024-06-26,8097,7767,"[\""Headphones\""]",2482.5,"{\"": \""30%\""}",221311,1,"""Europe""" +2024-04-28,8098,6722,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4583.39,{},11584,0,"""Africa""" +2023-03-17,8099,1392,"[\""Phone\""]",842.47,{},80209,0,"""South America""" +2024-06-23,8100,2525,"[\""Keyboard\""]",818.15,{},141322,1,"""Europe""" +2023-11-09,8101,3650,"[\""Keyboard\"", \""Phone\""]",3993.98,{},56582,1,"""Africa""" +2023-12-01,8102,8181,"[\""Charger\"", \""Tablet\""]",2584.73,{},110021,0,"""Asia""" +2023-11-05,8103,6459,"[\""Charger\""]",1273.01,"{\""loyalty\"": \""22%\""}",115019,1,"""Europe""" +2024-11-18,8104,1931,"[\""Wireless Mouse\"", \""Tablet\""]",1748.26,{},45527,0,"""Africa""" +2024-07-18,8105,6493,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4568.64,{},17449,0,"""South America""" +2024-09-26,8106,2298,"[\""Monitor\"", \""Laptop\""]",1819.89,"{\""seasonal\"": \""25%\""}",45553,0,"""Europe""" +2024-09-17,8107,2111,"[\""Keyboard\"", \""Laptop\""]",2345.48,{},63508,1,"""North America""" +2023-12-10,8108,2019,"[\""Keyboard\"", \""Monitor\""]",1669.73,"{\""seasonal\"": \""29%\""}",150678,0,"""Europe""" +2024-03-22,8109,3749,"[\""Wireless Mouse\"", \""Laptop\""]",4935.86,{},42656,1,"""North America""" +2024-11-18,8110,4982,"[\""Phone\"", \""Tablet\""]",4845.87,"{\""loyalty\"": \""15%\""}",144187,0,"""Asia""" +2023-12-20,8111,5617,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3992.18,"{\"": \""19%\""}",32267,1,"""South America""" +2024-03-03,8112,8094,"[\""Headphones\"", \""Wireless Mouse\""]",3790.04,{},215333,0,"""Africa""" +2023-07-11,8113,3788,"[\""Charger\"", \""Phone\""]",3704.41,{},85161,0,"""South America""" +2024-09-26,8114,2499,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1504.38,"{\"": \""28%\""}",97209,1,"""Africa""" +2023-06-11,8115,3559,"[\""Charger\"", \""Tablet\""]",945.09,{},67979,1,"""Africa""" +2024-02-16,8116,6690,"[\""Keyboard\"", \""Wireless Mouse\""]",535.31,{},277558,0,"""Asia""" +2023-08-21,8117,6382,"[\""Monitor\""]",4112.07,{},252825,1,"""South America""" +2024-07-23,8118,616,"[\""Keyboard\"", \""Monitor\""]",2093.67,{},31499,1,"""Europe""" +2024-02-27,8119,8013,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",223.87,{},288377,1,"""North America""" +2023-10-14,8120,1601,"[\""Tablet\"", \""Keyboard\""]",3209.85,"{\""loyalty\"": \""29%\""}",112652,1,"""Europe""" +2023-12-16,8121,106,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4370.0,{},117807,1,"""North America""" +2023-06-23,8122,9894,"[\""Wireless Mouse\"", \""Tablet\""]",948.23,{},273088,1,"""Europe""" +2023-06-26,8123,2698,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1463.33,{},146561,1,"""Africa""" +2023-02-03,8124,1809,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4872.61,{},108278,1,"""Asia""" +2024-09-08,8125,5406,"[\""Laptop\"", \""Charger\""]",1426.53,"{\""loyalty\"": \""22%\""}",189630,1,"""North America""" +2024-06-19,8126,6772,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1957.67,{},119397,1,"""Europe""" +2024-03-02,8127,7196,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",159.91,{},175700,0,"""Africa""" +2024-03-13,8128,5642,"[\""Laptop\""]",197.29,"{\""loyalty\"": \""6%\""}",151300,0,"""Europe""" +2023-08-29,8129,3538,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4941.82,{},201947,1,"""North America""" +2024-01-04,8130,3824,"[\""Headphones\""]",4503.55,{},171849,0,"""Asia""" +2023-12-09,8131,2559,"[\""Phone\"", \""Wireless Mouse\""]",711.16,"{\""promo\"": \""16%\""}",24249,1,"""Africa""" +2024-12-09,8132,4687,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4808.37,"{\""promo\"": \""20%\""}",61485,1,"""South America""" +2024-11-21,8133,9887,"[\""Phone\"", \""Laptop\""]",2477.5,{},299144,1,"""North America""" +2024-07-06,8134,2302,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1929.57,{},17881,0,"""Europe""" +2023-05-29,8135,5428,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3327.75,"{\"": \""7%\""}",246669,0,"""Europe""" +2024-07-30,8136,4522,"[\""Keyboard\""]",2700.21,{},247712,0,"""South America""" +2023-02-15,8137,4306,"[\""Keyboard\""]",345.06,{},289233,0,"""Asia""" +2024-04-27,8138,4947,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1110.07,"{\"": \""9%\""}",62983,0,"""Africa""" +2023-01-24,8139,7607,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3500.45,"{\""promo\"": \""17%\""}",60732,0,"""North America""" +2023-05-17,8140,2177,"[\""Wireless Mouse\""]",1856.36,"{\""seasonal\"": \""23%\""}",214975,0,"""Africa""" +2024-01-21,8141,6384,"[\""Headphones\"", \""Wireless Mouse\""]",2464.6,{},156658,0,"""Asia""" +2024-08-06,8142,9671,"[\""Monitor\"", \""Tablet\""]",4270.26,"{\""promo\"": \""11%\""}",171682,1,"""Asia""" +2024-07-30,8143,7216,"[\""Tablet\"", \""Wireless Mouse\""]",2590.7,{},100243,1,"""South America""" +2023-12-11,8144,3213,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3825.25,"{\""loyalty\"": \""28%\""}",110291,1,"""Europe""" +2023-01-06,8145,4491,"[\""Tablet\""]",629.29,{},174336,0,"""Europe""" +2024-10-17,8146,3952,"[\""Headphones\""]",2897.39,{},176582,0,"""Africa""" +2024-05-21,8147,3297,"[\""Monitor\""]",3304.16,{},102143,1,"""North America""" +2023-01-08,8148,8036,"[\""Tablet\"", \""Keyboard\""]",4605.81,"{\"": \""28%\""}",15898,0,"""South America""" +2023-12-06,8149,4701,"[\""Tablet\""]",2209.53,{},91963,0,"""Africa""" +2024-11-29,8150,8352,"[\""Monitor\"", \""Tablet\""]",4997.61,"{\""promo\"": \""17%\""}",10121,1,"""Africa""" +2023-10-21,8151,4461,"[\""Tablet\"", \""Headphones\""]",4261.39,"{\""seasonal\"": \""27%\""}",49237,0,"""Africa""" +2023-11-17,8152,4462,"[\""Phone\""]",191.12,{},154333,0,"""North America""" +2023-05-15,8153,7307,"[\""Phone\""]",1417.01,"{\""seasonal\"": \""21%\""}",27544,1,"""South America""" +2023-11-06,8154,9691,"[\""Laptop\"", \""Charger\""]",1165.97,"{\""seasonal\"": \""20%\""}",92499,1,"""South America""" +2023-05-11,8155,6944,"[\""Keyboard\""]",3417.9,{},53594,1,"""North America""" +2024-04-28,8156,1459,"[\""Charger\""]",4730.86,{},258774,1,"""Europe""" +2024-01-02,8157,6095,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2215.6,{},217318,0,"""North America""" +2024-05-12,8158,4104,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1925.51,{},258335,0,"""South America""" +2023-06-08,8159,7596,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1464.17,"{\""promo\"": \""10%\""}",21359,0,"""Africa""" +2024-08-07,8160,6020,"[\""Tablet\"", \""Monitor\""]",4248.44,"{\""promo\"": \""25%\""}",211572,0,"""South America""" +2024-05-31,8161,8308,"[\""Monitor\"", \""Laptop\""]",2766.02,{},81892,0,"""South America""" +2023-02-26,8162,9717,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",257.5,"{\""loyalty\"": \""7%\""}",262469,0,"""North America""" +2023-11-08,8163,7568,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3603.69,{},246049,1,"""Europe""" +2023-05-22,8164,4832,"[\""Wireless Mouse\"", \""Monitor\""]",4390.72,{},9169,1,"""North America""" +2024-11-30,8165,4219,"[\""Tablet\"", \""Monitor\""]",4537.67,"{\"": \""27%\""}",121369,0,"""Africa""" +2024-03-17,8166,2711,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3106.63,"{\"": \""23%\""}",181882,0,"""South America""" +2024-01-27,8167,5462,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3218.12,"{\""loyalty\"": \""29%\""}",103387,1,"""Africa""" +2024-12-29,8168,6767,"[\""Monitor\""]",4922.37,{},233266,0,"""Africa""" +2023-03-19,8169,3023,"[\""Keyboard\"", \""Monitor\""]",897.42,{},73971,1,"""South America""" +2023-01-30,8170,2093,"[\""Keyboard\""]",2597.02,{},57567,1,"""Africa""" +2023-06-08,8171,1319,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",189.86,"{\""loyalty\"": \""30%\""}",151586,0,"""Africa""" +2023-12-12,8172,3153,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2901.16,{},186603,1,"""Asia""" +2024-10-05,8173,1762,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3336.21,{},206690,0,"""Asia""" +2023-04-27,8174,8475,"[\""Charger\"", \""Laptop\""]",984.65,{},90986,1,"""North America""" +2024-06-24,8175,2620,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4276.02,{},35363,0,"""Asia""" +2023-03-07,8176,2113,"[\""Keyboard\"", \""Monitor\""]",3838.49,"{\""seasonal\"": \""6%\""}",27848,0,"""Africa""" +2023-08-01,8177,2230,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2318.97,"{\""seasonal\"": \""8%\""}",7888,0,"""Asia""" +2024-03-21,8178,2791,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1352.2,{},292607,0,"""Africa""" +2023-10-01,8179,3399,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1689.61,{},92291,0,"""Europe""" +2023-05-15,8180,3880,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2920.46,{},229786,0,"""South America""" +2024-10-12,8181,1226,"[\""Phone\"", \""Laptop\""]",779.39,{},67783,0,"""Asia""" +2024-12-07,8182,2250,"[\""Charger\"", \""Headphones\""]",892.34,{},206015,1,"""Europe""" +2023-03-06,8183,485,"[\""Wireless Mouse\""]",1276.25,"{\""loyalty\"": \""13%\""}",144483,0,"""Africa""" +2023-02-27,8184,7232,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2177.66,"{\""seasonal\"": \""21%\""}",279222,0,"""Africa""" +2023-07-03,8185,4209,"[\""Laptop\"", \""Phone\""]",2314.55,"{\""seasonal\"": \""24%\""}",125378,1,"""Africa""" +2023-09-13,8186,7301,"[\""Charger\"", \""Tablet\""]",3032.23,{},149836,1,"""Europe""" +2023-12-20,8187,6118,"[\""Charger\""]",267.77,{},217330,1,"""Africa""" +2024-06-02,8188,397,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",487.58,{},86695,1,"""North America""" +2024-12-26,8189,5592,"[\""Phone\""]",444.11,{},89880,1,"""Europe""" +2023-01-01,8190,1344,"[\""Headphones\"", \""Phone\""]",2239.14,{},124664,1,"""North America""" +2023-07-09,8191,4241,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2425.06,{},7467,1,"""Europe""" +2023-06-16,8192,3286,"[\""Tablet\"", \""Headphones\""]",767.61,{},215550,0,"""South America""" +2023-02-10,8193,3228,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1449.11,{},35747,1,"""Europe""" +2024-07-04,8194,4078,"[\""Tablet\""]",2652.51,{},113486,1,"""North America""" +2023-05-25,8195,9507,"[\""Monitor\""]",2403.23,{},288438,1,"""Asia""" +2023-10-22,8196,5955,"[\""Phone\"", \""Charger\""]",1901.53,"{\""loyalty\"": \""27%\""}",12636,0,"""Europe""" +2024-04-12,8197,7026,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1016.81,{},156337,0,"""South America""" +2024-05-07,8198,2082,"[\""Monitor\""]",4568.66,"{\""promo\"": \""12%\""}",165348,0,"""South America""" +2024-03-18,8199,7003,"[\""Monitor\"", \""Headphones\""]",905.65,"{\""promo\"": \""19%\""}",147862,1,"""Europe""" +2024-02-07,8200,5637,"[\""Wireless Mouse\""]",2103.39,{},74947,0,"""South America""" +2023-07-03,8201,4838,"[\""Monitor\""]",733.65,"{\""loyalty\"": \""22%\""}",94581,0,"""Africa""" +2023-08-14,8202,4897,"[\""Laptop\""]",2300.94,"{\""loyalty\"": \""8%\""}",18549,1,"""South America""" +2024-05-06,8203,6931,"[\""Keyboard\""]",581.6,{},155082,0,"""South America""" +2024-11-14,8204,3211,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2919.67,"{\""loyalty\"": \""21%\""}",188061,0,"""Europe""" +2024-05-15,8205,7958,"[\""Laptop\"", \""Headphones\""]",1471.85,{},194250,0,"""South America""" +2024-03-15,8206,6864,"[\""Phone\""]",4449.69,"{\""promo\"": \""20%\""}",100008,0,"""South America""" +2023-06-16,8207,9762,"[\""Headphones\"", \""Laptop\""]",985.74,"{\""loyalty\"": \""26%\""}",231892,0,"""South America""" +2023-06-16,8208,1501,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",64.48,"{\"": \""6%\""}",99003,0,"""South America""" +2023-02-24,8209,258,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2754.63,{},186407,0,"""South America""" +2023-11-03,8210,83,"[\""Phone\"", \""Tablet\""]",1908.73,"{\"": \""27%\""}",59485,1,"""South America""" +2023-09-08,8211,4628,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",85.38,"{\"": \""24%\""}",101115,0,"""South America""" +2024-09-23,8212,9350,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3742.53,"{\""seasonal\"": \""18%\""}",91659,0,"""North America""" +2024-03-30,8213,6850,"[\""Phone\"", \""Wireless Mouse\""]",3514.34,{},133209,0,"""Asia""" +2023-03-06,8214,5209,"[\""Tablet\"", \""Laptop\""]",1511.62,{},259931,1,"""North America""" +2024-10-21,8215,7023,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3972.9,"{\""promo\"": \""24%\""}",277059,0,"""Africa""" +2024-03-26,8216,8021,"[\""Laptop\""]",4646.9,{},145533,1,"""South America""" +2023-11-06,8217,1027,"[\""Laptop\"", \""Tablet\""]",3476.76,"{\"": \""8%\""}",228720,1,"""South America""" +2023-09-18,8218,3083,"[\""Wireless Mouse\""]",2820.23,"{\""loyalty\"": \""12%\""}",138715,0,"""Asia""" +2023-04-12,8219,9875,"[\""Monitor\""]",2436.24,{},244624,1,"""Africa""" +2024-01-20,8220,2957,"[\""Keyboard\""]",4234.24,"{\""promo\"": \""22%\""}",48144,0,"""Asia""" +2023-08-20,8221,3348,"[\""Monitor\"", \""Laptop\""]",3773.88,"{\"": \""23%\""}",208664,1,"""Africa""" +2023-04-01,8222,1801,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",620.96,{},226058,1,"""Africa""" +2024-11-19,8223,3255,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",78.54,{},10005,0,"""Europe""" +2024-05-02,8224,8775,"[\""Tablet\""]",4538.49,"{\"": \""16%\""}",225944,0,"""Asia""" +2024-01-30,8225,9732,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",456.0,"{\""promo\"": \""23%\""}",141596,1,"""South America""" +2023-08-08,8226,939,"[\""Laptop\"", \""Monitor\""]",2688.68,{},246340,0,"""South America""" +2023-10-21,8227,6632,"[\""Headphones\""]",523.3,{},206895,1,"""Europe""" +2024-06-05,8228,9983,"[\""Phone\"", \""Headphones\""]",2701.47,"{\""promo\"": \""8%\""}",107424,0,"""Asia""" +2024-01-29,8229,9330,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2632.97,"{\""promo\"": \""27%\""}",159606,1,"""Africa""" +2024-02-20,8230,3823,"[\""Laptop\"", \""Charger\""]",2637.88,{},99818,0,"""South America""" +2024-02-16,8231,6492,"[\""Wireless Mouse\""]",2990.4,"{\""seasonal\"": \""10%\""}",147697,0,"""Europe""" +2024-10-20,8232,2299,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3414.25,"{\""promo\"": \""10%\""}",107015,1,"""North America""" +2023-08-14,8233,1761,"[\""Phone\""]",1581.82,{},251526,0,"""South America""" +2024-03-09,8234,3802,"[\""Headphones\"", \""Charger\""]",3381.86,"{\"": \""6%\""}",141835,0,"""Europe""" +2023-12-19,8235,4628,"[\""Keyboard\""]",2752.74,"{\""promo\"": \""13%\""}",287387,1,"""Asia""" +2023-01-31,8236,5013,"[\""Keyboard\"", \""Charger\""]",1688.96,{},84156,0,"""South America""" +2023-01-31,8237,8835,"[\""Charger\""]",4522.79,"{\""promo\"": \""16%\""}",244483,1,"""South America""" +2024-10-18,8238,5228,"[\""Keyboard\"", \""Phone\""]",3277.75,"{\"": \""27%\""}",159970,0,"""South America""" +2024-12-22,8239,6115,"[\""Laptop\""]",820.65,"{\"": \""10%\""}",84063,1,"""North America""" +2024-11-20,8240,1727,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4157.22,"{\""seasonal\"": \""25%\""}",122513,1,"""South America""" +2023-11-27,8241,2014,"[\""Charger\""]",4700.49,"{\""promo\"": \""21%\""}",154879,0,"""South America""" +2023-02-07,8242,9570,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2422.2,"{\"": \""27%\""}",65363,0,"""Asia""" +2023-01-09,8243,4099,"[\""Tablet\""]",1763.98,"{\""seasonal\"": \""30%\""}",269420,1,"""Asia""" +2024-07-15,8244,2569,"[\""Tablet\""]",2273.45,"{\""promo\"": \""19%\""}",231960,1,"""Asia""" +2024-07-22,8245,7457,"[\""Wireless Mouse\"", \""Phone\""]",524.96,"{\""loyalty\"": \""8%\""}",247878,1,"""North America""" +2023-04-24,8246,6824,"[\""Tablet\""]",1152.42,{},54214,1,"""Asia""" +2023-12-14,8247,572,"[\""Tablet\""]",438.37,"{\""promo\"": \""16%\""}",21516,0,"""Europe""" +2024-09-10,8248,3523,"[\""Charger\""]",1134.52,{},222653,1,"""Europe""" +2023-01-21,8249,6144,"[\""Tablet\"", \""Phone\""]",4837.23,{},220387,1,"""Africa""" +2023-10-27,8250,2375,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1766.84,{},157846,1,"""North America""" +2024-11-04,8251,8085,"[\""Wireless Mouse\""]",3408.69,{},56685,1,"""Asia""" +2024-11-07,8252,3562,"[\""Tablet\""]",4653.83,"{\"": \""18%\""}",31893,0,"""South America""" +2023-05-12,8253,9134,"[\""Monitor\"", \""Keyboard\""]",2814.46,"{\""seasonal\"": \""9%\""}",225178,0,"""Africa""" +2023-09-17,8254,2217,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3740.66,{},138772,0,"""South America""" +2024-07-28,8255,5947,"[\""Laptop\""]",2847.98,"{\""promo\"": \""9%\""}",32879,0,"""North America""" +2024-10-26,8256,2517,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3364.68,{},9643,0,"""Asia""" +2024-10-14,8257,945,"[\""Keyboard\"", \""Headphones\""]",3918.24,{},293724,1,"""North America""" +2023-07-23,8258,7615,"[\""Charger\""]",1069.22,{},198459,0,"""Africa""" +2024-10-04,8259,3589,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4248.35,{},107947,1,"""South America""" +2023-11-28,8260,1282,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2665.79,"{\"": \""25%\""}",56964,0,"""South America""" +2024-02-27,8261,4394,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",198.48,{},130832,0,"""South America""" +2024-04-17,8262,6775,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1786.23,{},179372,0,"""Asia""" +2023-12-21,8263,9294,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",310.37,"{\"": \""24%\""}",176545,0,"""Europe""" +2023-05-29,8264,348,"[\""Wireless Mouse\"", \""Phone\""]",4177.89,{},47702,1,"""Asia""" +2023-12-29,8265,6737,"[\""Keyboard\""]",2830.09,"{\""seasonal\"": \""5%\""}",165739,0,"""Africa""" +2023-12-02,8266,2334,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4540.24,{},26706,1,"""South America""" +2023-12-29,8267,5480,"[\""Headphones\"", \""Wireless Mouse\""]",1333.52,{},231114,1,"""Europe""" +2024-06-10,8268,2590,"[\""Wireless Mouse\""]",4424.57,{},151326,0,"""Asia""" +2024-03-22,8269,3802,"[\""Charger\"", \""Tablet\""]",1309.04,{},76243,0,"""Asia""" +2024-04-25,8270,1510,"[\""Headphones\""]",91.81,{},149949,0,"""South America""" +2024-09-29,8271,2561,"[\""Tablet\"", \""Charger\""]",1244.49,"{\""seasonal\"": \""25%\""}",13692,0,"""Europe""" +2023-05-07,8272,3162,"[\""Wireless Mouse\"", \""Headphones\""]",4424.41,"{\""seasonal\"": \""14%\""}",231591,1,"""Europe""" +2023-06-08,8273,4214,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4185.15,{},64229,0,"""North America""" +2024-07-20,8274,4717,"[\""Monitor\""]",3159.6,"{\""loyalty\"": \""15%\""}",227103,0,"""North America""" +2023-02-09,8275,9580,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1092.11,"{\""seasonal\"": \""11%\""}",171429,0,"""Africa""" +2023-10-23,8276,1091,"[\""Keyboard\"", \""Phone\""]",1859.36,"{\"": \""26%\""}",46278,1,"""North America""" +2024-06-23,8277,4172,"[\""Wireless Mouse\""]",872.94,{},89115,1,"""South America""" +2023-08-25,8278,1580,"[\""Headphones\"", \""Tablet\""]",4450.25,{},148593,0,"""Africa""" +2024-04-13,8279,1719,"[\""Charger\"", \""Keyboard\""]",947.08,"{\""promo\"": \""28%\""}",42782,1,"""Europe""" +2023-05-26,8280,9167,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1070.69,"{\""loyalty\"": \""11%\""}",130207,0,"""Asia""" +2024-03-22,8281,4439,"[\""Tablet\"", \""Headphones\""]",1456.48,"{\""loyalty\"": \""9%\""}",178391,0,"""Asia""" +2024-01-11,8282,3354,"[\""Monitor\"", \""Laptop\""]",3487.88,{},8565,0,"""Africa""" +2023-06-09,8283,4965,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1618.59,{},275496,0,"""Asia""" +2024-06-21,8284,4370,"[\""Tablet\""]",3406.88,"{\""seasonal\"": \""30%\""}",68122,0,"""Europe""" +2024-04-18,8285,1754,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3578.44,{},6458,1,"""Africa""" +2024-03-12,8286,133,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",398.7,"{\"": \""30%\""}",262152,0,"""Europe""" +2023-08-19,8287,8243,"[\""Keyboard\"", \""Laptop\""]",1508.42,{},283697,0,"""Asia""" +2023-03-01,8288,2683,"[\""Tablet\"", \""Monitor\""]",854.05,"{\"": \""18%\""}",237207,0,"""Europe""" +2023-06-05,8289,385,"[\""Keyboard\""]",726.43,"{\"": \""13%\""}",79848,1,"""Europe""" +2024-10-30,8290,330,"[\""Phone\"", \""Tablet\""]",329.31,"{\""loyalty\"": \""13%\""}",282988,0,"""Europe""" +2024-01-31,8291,2542,"[\""Tablet\"", \""Headphones\""]",1900.22,"{\"": \""30%\""}",282709,1,"""North America""" +2023-05-17,8292,5772,"[\""Wireless Mouse\"", \""Headphones\""]",2291.0,"{\""seasonal\"": \""6%\""}",187950,1,"""Europe""" +2024-04-05,8293,5640,"[\""Laptop\"", \""Phone\""]",4402.83,{},229414,0,"""Africa""" +2023-07-18,8294,8619,"[\""Wireless Mouse\""]",2627.51,{},251400,0,"""North America""" +2024-06-03,8295,9300,"[\""Keyboard\"", \""Monitor\""]",2015.42,"{\"": \""28%\""}",204482,1,"""Europe""" +2024-02-17,8296,1668,"[\""Wireless Mouse\""]",1114.76,{},146936,1,"""Asia""" +2024-03-09,8297,4946,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4704.53,"{\"": \""9%\""}",265178,1,"""Asia""" +2023-12-04,8298,5424,"[\""Charger\"", \""Tablet\""]",3734.94,{},78280,1,"""Asia""" +2023-03-07,8299,1582,"[\""Keyboard\"", \""Laptop\""]",315.83,{},58536,1,"""South America""" +2023-01-14,8300,9644,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4352.43,"{\""seasonal\"": \""12%\""}",277723,1,"""Europe""" +2024-04-29,8301,7324,"[\""Wireless Mouse\"", \""Headphones\""]",315.97,{},256353,0,"""South America""" +2023-06-05,8302,4533,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",608.21,"{\"": \""8%\""}",97870,1,"""Asia""" +2023-04-01,8303,3727,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4078.67,{},58119,1,"""South America""" +2024-05-06,8304,7543,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1926.51,"{\""seasonal\"": \""20%\""}",49864,0,"""South America""" +2024-08-16,8305,7466,"[\""Tablet\"", \""Headphones\""]",4472.41,"{\""promo\"": \""10%\""}",150496,0,"""North America""" +2024-01-16,8306,6925,"[\""Tablet\"", \""Wireless Mouse\""]",3023.22,{},63851,1,"""Asia""" +2023-10-31,8307,9279,"[\""Monitor\"", \""Phone\""]",2322.8,{},19168,1,"""Europe""" +2024-11-10,8308,801,"[\""Keyboard\"", \""Laptop\""]",2475.27,{},247299,1,"""Africa""" +2023-09-14,8309,4415,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3367.56,"{\""loyalty\"": \""8%\""}",219115,1,"""South America""" +2024-06-27,8310,7265,"[\""Monitor\""]",4939.15,{},93089,0,"""South America""" +2023-05-24,8311,1447,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",992.59,{},78045,0,"""Asia""" +2024-07-23,8312,5224,"[\""Laptop\"", \""Charger\""]",4109.46,"{\""loyalty\"": \""22%\""}",258527,0,"""North America""" +2024-04-28,8313,2261,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1542.38,"{\"": \""20%\""}",2612,0,"""Africa""" +2024-05-07,8314,326,"[\""Keyboard\"", \""Phone\""]",2788.73,{},22646,0,"""Asia""" +2024-01-27,8315,8921,"[\""Monitor\"", \""Charger\""]",235.31,"{\""seasonal\"": \""28%\""}",287207,1,"""North America""" +2024-05-05,8316,5810,"[\""Headphones\""]",4141.88,{},121498,1,"""South America""" +2023-04-06,8317,9841,"[\""Phone\""]",2948.18,"{\""loyalty\"": \""30%\""}",287944,0,"""South America""" +2024-06-17,8318,7276,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3157.61,"{\""seasonal\"": \""15%\""}",259033,0,"""North America""" +2023-09-09,8319,2696,"[\""Phone\"", \""Wireless Mouse\""]",4961.94,{},285699,1,"""Asia""" +2024-02-22,8320,3178,"[\""Tablet\"", \""Keyboard\""]",3032.61,{},233999,1,"""Europe""" +2024-10-13,8321,3093,"[\""Monitor\"", \""Phone\""]",3277.36,{},110146,1,"""South America""" +2024-03-30,8322,5188,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",510.69,{},17271,0,"""South America""" +2024-11-30,8323,4269,"[\""Laptop\""]",363.75,{},1408,0,"""Europe""" +2024-07-31,8324,7727,"[\""Wireless Mouse\"", \""Laptop\""]",4099.28,{},93938,0,"""Europe""" +2023-06-09,8325,379,"[\""Phone\"", \""Keyboard\""]",917.43,"{\"": \""27%\""}",173127,1,"""Africa""" +2024-05-04,8326,8059,"[\""Headphones\"", \""Charger\""]",1795.77,"{\""seasonal\"": \""12%\""}",232669,1,"""North America""" +2023-08-02,8327,2851,"[\""Monitor\""]",2305.38,"{\"": \""19%\""}",36557,1,"""South America""" +2024-03-07,8328,7107,"[\""Tablet\"", \""Phone\""]",4880.04,"{\""loyalty\"": \""26%\""}",163581,0,"""South America""" +2023-03-07,8329,1718,"[\""Wireless Mouse\"", \""Headphones\""]",3188.91,{},148455,1,"""Asia""" +2023-08-11,8330,7782,"[\""Tablet\"", \""Charger\""]",3272.3,"{\"": \""5%\""}",1088,1,"""Europe""" +2023-03-03,8331,9160,"[\""Charger\""]",1135.5,"{\""promo\"": \""15%\""}",23967,0,"""North America""" +2024-09-10,8332,1217,"[\""Laptop\""]",584.18,"{\""loyalty\"": \""27%\""}",198757,0,"""Europe""" +2024-10-25,8333,3977,"[\""Tablet\""]",487.86,"{\"": \""15%\""}",84293,1,"""North America""" +2023-11-30,8334,4715,"[\""Charger\"", \""Monitor\""]",684.09,{},164156,1,"""Europe""" +2024-06-15,8335,6182,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",452.85,{},160205,1,"""North America""" +2024-09-22,8336,7404,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3387.5,{},80082,1,"""Asia""" +2023-01-22,8337,2497,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2238.04,"{\""seasonal\"": \""21%\""}",34719,1,"""Africa""" +2024-12-16,8338,2030,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4873.94,"{\"": \""17%\""}",242472,0,"""South America""" +2024-12-07,8339,2400,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1255.91,"{\"": \""6%\""}",172695,0,"""Asia""" +2023-07-27,8340,2277,"[\""Phone\"", \""Laptop\""]",522.36,"{\""seasonal\"": \""18%\""}",264070,0,"""Asia""" +2023-09-04,8341,5446,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2159.88,{},25282,1,"""South America""" +2024-04-22,8342,8727,"[\""Tablet\""]",4001.6,"{\""promo\"": \""5%\""}",181938,0,"""North America""" +2024-08-13,8343,9786,"[\""Keyboard\"", \""Charger\""]",750.98,"{\""promo\"": \""23%\""}",147896,1,"""Africa""" +2023-05-05,8344,7180,"[\""Headphones\""]",4875.46,"{\"": \""15%\""}",198336,0,"""Europe""" +2024-04-11,8345,9469,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4271.8,"{\""seasonal\"": \""19%\""}",23397,1,"""Europe""" +2023-04-20,8346,1388,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",825.84,"{\"": \""23%\""}",203776,0,"""Asia""" +2023-08-30,8347,1371,"[\""Laptop\"", \""Charger\""]",434.11,"{\""loyalty\"": \""11%\""}",183693,1,"""South America""" +2024-01-29,8348,828,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",164.82,{},211874,0,"""South America""" +2023-10-13,8349,3838,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",258.39,"{\""seasonal\"": \""9%\""}",190953,1,"""South America""" +2023-08-06,8350,2683,"[\""Monitor\"", \""Laptop\""]",4471.94,{},213969,0,"""Europe""" +2023-10-24,8351,4164,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3496.48,{},3952,1,"""North America""" +2024-11-15,8352,4928,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2284.91,"{\""seasonal\"": \""17%\""}",125839,1,"""Africa""" +2023-03-02,8353,4625,"[\""Charger\"", \""Headphones\""]",2603.23,{},133476,1,"""South America""" +2024-12-31,8354,5289,"[\""Wireless Mouse\"", \""Phone\""]",1220.85,{},147131,0,"""North America""" +2023-08-14,8355,3124,"[\""Headphones\"", \""Keyboard\""]",446.49,"{\""promo\"": \""13%\""}",232636,0,"""Africa""" +2023-11-10,8356,4458,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1835.93,"{\"": \""9%\""}",175082,0,"""Asia""" +2024-04-17,8357,669,"[\""Monitor\""]",385.08,{},8410,1,"""Asia""" +2024-11-26,8358,5937,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",200.7,{},233002,1,"""Africa""" +2023-04-05,8359,5064,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1245.14,"{\"": \""7%\""}",22947,1,"""Europe""" +2023-02-28,8360,9053,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4284.35,"{\""seasonal\"": \""20%\""}",65881,1,"""South America""" +2023-08-21,8361,4926,"[\""Monitor\"", \""Keyboard\""]",2774.03,"{\""promo\"": \""5%\""}",146822,0,"""Asia""" +2024-01-24,8362,9093,"[\""Laptop\""]",3085.28,{},277405,0,"""Africa""" +2024-08-22,8363,2507,"[\""Monitor\"", \""Keyboard\""]",2691.38,"{\""promo\"": \""21%\""}",209257,1,"""Europe""" +2023-12-20,8364,8528,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3296.8,{},118418,0,"""Africa""" +2023-03-27,8365,9656,"[\""Headphones\"", \""Keyboard\""]",3825.8,"{\""loyalty\"": \""27%\""}",39617,1,"""North America""" +2023-06-11,8366,7773,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4504.34,"{\""loyalty\"": \""6%\""}",6270,0,"""South America""" +2024-10-07,8367,1137,"[\""Phone\""]",459.54,"{\""seasonal\"": \""25%\""}",127684,1,"""Africa""" +2024-10-26,8368,9935,"[\""Phone\""]",526.21,"{\""promo\"": \""28%\""}",92561,1,"""South America""" +2023-04-17,8369,1264,"[\""Monitor\"", \""Phone\""]",3343.64,{},59774,0,"""Europe""" +2024-07-24,8370,2678,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2087.98,{},139660,0,"""South America""" +2023-05-05,8371,9212,"[\""Headphones\""]",4723.27,"{\"": \""20%\""}",81443,0,"""North America""" +2024-04-09,8372,3406,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3735.55,"{\""seasonal\"": \""28%\""}",132643,1,"""Asia""" +2024-01-06,8373,3497,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4569.05,"{\""seasonal\"": \""14%\""}",278708,1,"""Europe""" +2023-03-30,8374,934,"[\""Monitor\""]",3908.98,"{\"": \""17%\""}",65208,1,"""Asia""" +2024-01-08,8375,3447,"[\""Phone\""]",2366.38,"{\""seasonal\"": \""19%\""}",299886,1,"""Asia""" +2024-11-07,8376,9990,"[\""Charger\""]",422.45,"{\""loyalty\"": \""21%\""}",66567,1,"""Africa""" +2023-04-29,8377,2355,"[\""Headphones\"", \""Phone\""]",3289.64,"{\"": \""7%\""}",30488,0,"""Europe""" +2024-02-27,8378,2046,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2083.22,{},230525,1,"""South America""" +2024-10-11,8379,3431,"[\""Keyboard\""]",2167.12,"{\""loyalty\"": \""6%\""}",48928,0,"""South America""" +2024-04-06,8380,5591,"[\""Charger\""]",530.8,"{\""promo\"": \""7%\""}",84758,0,"""Africa""" +2023-09-19,8381,5589,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1631.94,"{\""seasonal\"": \""7%\""}",259437,1,"""Europe""" +2023-10-05,8382,2600,"[\""Laptop\""]",1335.41,{},109980,1,"""Africa""" +2024-02-07,8383,7030,"[\""Charger\""]",4088.37,{},207963,0,"""North America""" +2024-02-04,8384,3112,"[\""Phone\""]",1620.35,{},151578,1,"""Africa""" +2024-05-06,8385,3311,"[\""Headphones\""]",2859.82,{},271900,0,"""Africa""" +2023-04-17,8386,5920,"[\""Charger\"", \""Phone\"", \""Laptop\""]",555.62,"{\""promo\"": \""23%\""}",26969,1,"""Asia""" +2024-09-28,8387,4279,"[\""Monitor\"", \""Charger\""]",3744.75,"{\""seasonal\"": \""19%\""}",274275,0,"""Europe""" +2024-05-08,8388,5182,"[\""Phone\""]",4820.37,"{\""loyalty\"": \""5%\""}",78296,0,"""Asia""" +2024-11-17,8389,4332,"[\""Laptop\""]",453.22,{},231000,1,"""Asia""" +2023-12-16,8390,3311,"[\""Monitor\"", \""Keyboard\""]",1630.16,"{\""promo\"": \""9%\""}",298284,0,"""Africa""" +2024-08-24,8391,6666,"[\""Phone\"", \""Wireless Mouse\""]",4930.67,"{\""loyalty\"": \""19%\""}",2184,0,"""Africa""" +2024-02-22,8392,2049,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3265.01,"{\""loyalty\"": \""15%\""}",65505,1,"""Africa""" +2023-11-01,8393,1744,"[\""Laptop\""]",4701.8,{},276497,0,"""North America""" +2024-11-15,8394,2160,"[\""Phone\""]",1028.93,{},210407,0,"""Africa""" +2024-10-24,8395,415,"[\""Headphones\"", \""Monitor\""]",3939.52,"{\""seasonal\"": \""28%\""}",232196,0,"""South America""" +2024-03-28,8396,2964,"[\""Laptop\"", \""Keyboard\""]",1861.26,{},162252,0,"""North America""" +2023-08-02,8397,6998,"[\""Tablet\"", \""Monitor\""]",521.03,"{\"": \""5%\""}",176802,1,"""Europe""" +2023-11-02,8398,3700,"[\""Wireless Mouse\""]",92.34,"{\""loyalty\"": \""6%\""}",206821,1,"""North America""" +2023-04-21,8399,8870,"[\""Tablet\"", \""Monitor\""]",3396.21,{},123124,1,"""South America""" +2023-04-27,8400,5461,"[\""Charger\""]",4081.94,{},244842,0,"""Africa""" +2024-11-02,8401,7873,"[\""Wireless Mouse\""]",2768.32,{},281918,0,"""Asia""" +2023-10-16,8402,7045,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1355.69,{},56451,1,"""Africa""" +2024-03-16,8403,3299,"[\""Charger\"", \""Headphones\""]",2598.98,"{\"": \""27%\""}",91914,1,"""Africa""" +2023-03-23,8404,402,"[\""Phone\""]",1693.9,"{\""seasonal\"": \""17%\""}",16647,1,"""South America""" +2023-06-06,8405,7771,"[\""Phone\"", \""Tablet\""]",3312.61,"{\""promo\"": \""7%\""}",34298,0,"""North America""" +2023-04-23,8406,8913,"[\""Monitor\"", \""Wireless Mouse\""]",4520.39,{},251830,0,"""North America""" +2024-04-26,8407,8277,"[\""Phone\""]",2244.82,"{\"": \""16%\""}",128574,1,"""Europe""" +2024-11-25,8408,5968,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1065.8,{},124147,1,"""Africa""" +2024-01-31,8409,1326,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",902.1,{},63217,1,"""Africa""" +2023-03-27,8410,9748,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1705.45,"{\"": \""24%\""}",192265,1,"""Asia""" +2023-12-17,8411,3641,"[\""Laptop\"", \""Phone\""]",2956.07,"{\"": \""26%\""}",178532,1,"""Asia""" +2023-09-06,8412,5675,"[\""Tablet\"", \""Monitor\""]",4378.18,"{\""seasonal\"": \""30%\""}",155102,0,"""Europe""" +2024-04-22,8413,6494,"[\""Laptop\"", \""Keyboard\""]",2356.72,{},112843,0,"""Asia""" +2024-03-31,8414,6817,"[\""Headphones\"", \""Wireless Mouse\""]",3446.15,{},267691,1,"""North America""" +2024-04-15,8415,260,"[\""Wireless Mouse\"", \""Charger\""]",722.77,{},35695,0,"""Europe""" +2024-01-11,8416,7103,"[\""Phone\""]",2333.61,"{\""loyalty\"": \""22%\""}",89822,1,"""Europe""" +2023-01-19,8417,9973,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4936.24,"{\"": \""28%\""}",185647,1,"""Europe""" +2024-05-13,8418,9748,"[\""Headphones\""]",1552.08,{},228843,1,"""Europe""" +2023-11-07,8419,1601,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3056.02,"{\""loyalty\"": \""26%\""}",132627,0,"""Africa""" +2023-08-17,8420,2642,"[\""Headphones\"", \""Phone\""]",3109.52,{},191950,0,"""North America""" +2024-12-19,8421,5772,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1467.07,"{\""loyalty\"": \""9%\""}",194741,0,"""Africa""" +2024-07-14,8422,8640,"[\""Tablet\""]",4050.62,"{\""loyalty\"": \""22%\""}",119764,1,"""Africa""" +2024-12-16,8423,6811,"[\""Phone\""]",151.09,{},274866,0,"""Africa""" +2024-03-08,8424,2789,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4720.17,"{\""promo\"": \""30%\""}",85556,1,"""North America""" +2024-02-17,8425,9322,"[\""Monitor\"", \""Keyboard\""]",2194.8,{},2910,1,"""South America""" +2024-12-21,8426,4741,"[\""Headphones\""]",3239.53,{},113721,1,"""Europe""" +2023-02-03,8427,7315,"[\""Wireless Mouse\""]",1589.5,"{\""loyalty\"": \""21%\""}",132596,1,"""South America""" +2023-06-25,8428,5031,"[\""Monitor\"", \""Wireless Mouse\""]",2739.43,"{\""seasonal\"": \""27%\""}",253513,0,"""North America""" +2024-01-28,8429,4291,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1437.78,{},236642,1,"""Asia""" +2024-04-14,8430,5733,"[\""Wireless Mouse\"", \""Monitor\""]",2027.89,{},102460,1,"""North America""" +2024-04-15,8431,7702,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3956.41,{},258317,0,"""Asia""" +2023-03-23,8432,1781,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4445.92,{},82690,0,"""Asia""" +2024-04-10,8433,2980,"[\""Phone\""]",3169.61,"{\"": \""15%\""}",209007,0,"""North America""" +2023-07-14,8434,5058,"[\""Laptop\""]",2420.75,"{\""seasonal\"": \""23%\""}",249438,1,"""South America""" +2024-06-03,8435,7945,"[\""Wireless Mouse\"", \""Laptop\""]",4993.07,{},256349,0,"""Asia""" +2024-09-03,8436,949,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3254.02,{},230872,1,"""Europe""" +2023-03-11,8437,7606,"[\""Monitor\""]",4758.22,"{\"": \""9%\""}",196051,0,"""North America""" +2023-06-10,8438,640,"[\""Keyboard\"", \""Phone\""]",3197.73,"{\""promo\"": \""15%\""}",25276,1,"""Africa""" +2024-05-13,8439,3375,"[\""Charger\"", \""Wireless Mouse\""]",1605.97,{},270159,0,"""South America""" +2024-02-07,8440,7525,"[\""Wireless Mouse\""]",4497.08,{},7087,1,"""Europe""" +2023-12-17,8441,6541,"[\""Wireless Mouse\"", \""Monitor\""]",4351.93,{},258879,0,"""Asia""" +2023-12-30,8442,6250,"[\""Monitor\"", \""Phone\""]",582.55,{},182853,1,"""North America""" +2024-05-17,8443,1870,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1572.29,{},276120,1,"""South America""" +2024-03-20,8444,4397,"[\""Keyboard\""]",174.75,"{\""loyalty\"": \""23%\""}",16231,1,"""Europe""" +2024-11-28,8445,7347,"[\""Monitor\""]",1537.98,{},235969,0,"""North America""" +2024-03-16,8446,8415,"[\""Keyboard\"", \""Tablet\""]",2683.25,"{\""loyalty\"": \""8%\""}",148872,0,"""North America""" +2023-11-21,8447,1613,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",954.14,{},170850,0,"""Africa""" +2023-11-02,8448,8285,"[\""Monitor\""]",4746.18,"{\""loyalty\"": \""10%\""}",129127,0,"""Europe""" +2023-06-16,8449,9748,"[\""Charger\""]",1336.86,"{\""seasonal\"": \""16%\""}",293443,0,"""South America""" +2023-11-25,8450,800,"[\""Laptop\""]",1288.41,"{\""seasonal\"": \""28%\""}",88341,1,"""Africa""" +2024-10-11,8451,4534,"[\""Phone\"", \""Wireless Mouse\""]",3596.61,"{\""seasonal\"": \""7%\""}",214168,1,"""North America""" +2023-02-04,8452,3063,"[\""Charger\""]",4031.48,{},143915,0,"""North America""" +2024-02-26,8453,5877,"[\""Keyboard\"", \""Monitor\""]",1294.96,{},137818,0,"""South America""" +2024-06-23,8454,7191,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",152.1,{},253861,1,"""North America""" +2024-07-15,8455,8796,"[\""Wireless Mouse\"", \""Headphones\""]",889.78,"{\"": \""14%\""}",200148,1,"""South America""" +2024-06-17,8456,9180,"[\""Headphones\"", \""Tablet\""]",1536.76,{},86830,0,"""Africa""" +2024-05-03,8457,4074,"[\""Keyboard\"", \""Charger\""]",946.48,{},154335,0,"""Africa""" +2024-03-05,8458,774,"[\""Wireless Mouse\"", \""Laptop\""]",4248.26,"{\""promo\"": \""21%\""}",36837,0,"""Africa""" +2023-11-12,8459,3948,"[\""Phone\""]",4266.81,{},269456,1,"""Europe""" +2023-06-22,8460,6389,"[\""Wireless Mouse\""]",4864.36,{},40416,0,"""Africa""" +2023-09-03,8461,5251,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3100.3,{},56767,0,"""Europe""" +2024-10-29,8462,2781,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4823.74,{},271068,0,"""South America""" +2024-07-27,8463,3298,"[\""Tablet\""]",1983.9,{},145086,0,"""Africa""" +2023-06-17,8464,6076,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",844.44,"{\""seasonal\"": \""10%\""}",14128,0,"""South America""" +2023-11-11,8465,147,"[\""Tablet\""]",4517.21,{},114409,1,"""Asia""" +2024-05-05,8466,4625,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4177.99,{},25069,0,"""North America""" +2023-04-23,8467,7203,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4735.17,"{\""seasonal\"": \""27%\""}",281522,0,"""Europe""" +2024-05-25,8468,3926,"[\""Monitor\""]",1662.53,{},68694,1,"""South America""" +2023-09-13,8469,3809,"[\""Tablet\""]",3936.37,{},120987,1,"""North America""" +2024-04-30,8470,8406,"[\""Tablet\""]",2882.14,{},224480,0,"""South America""" +2023-05-27,8471,1100,"[\""Charger\"", \""Wireless Mouse\""]",3639.77,"{\""loyalty\"": \""12%\""}",266236,0,"""Africa""" +2023-04-14,8472,6620,"[\""Tablet\""]",2784.76,"{\""loyalty\"": \""30%\""}",235631,0,"""Asia""" +2023-10-10,8473,9684,"[\""Wireless Mouse\"", \""Phone\""]",2963.1,"{\""promo\"": \""20%\""}",226396,1,"""Europe""" +2024-10-07,8474,8532,"[\""Laptop\""]",4302.98,"{\""seasonal\"": \""18%\""}",250500,1,"""Asia""" +2023-11-23,8475,5945,"[\""Keyboard\""]",2906.99,"{\""loyalty\"": \""18%\""}",161586,0,"""South America""" +2023-10-18,8476,8158,"[\""Tablet\"", \""Headphones\""]",1534.29,"{\""promo\"": \""30%\""}",8327,1,"""Africa""" +2024-07-01,8477,707,"[\""Charger\"", \""Wireless Mouse\""]",3592.29,{},93920,1,"""Africa""" +2024-12-23,8478,9077,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4568.96,"{\"": \""29%\""}",54827,1,"""Africa""" +2023-11-01,8479,6620,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2780.75,"{\""loyalty\"": \""20%\""}",51010,0,"""Asia""" +2023-01-07,8480,8395,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",238.31,{},266940,1,"""Africa""" +2024-10-08,8481,5509,"[\""Headphones\""]",3055.92,"{\""loyalty\"": \""6%\""}",225930,0,"""Africa""" +2023-11-20,8482,6511,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2734.07,"{\""seasonal\"": \""23%\""}",245504,0,"""South America""" +2023-11-18,8483,2591,"[\""Charger\"", \""Monitor\""]",3521.01,{},223703,0,"""Europe""" +2024-07-06,8484,776,"[\""Wireless Mouse\"", \""Laptop\""]",4043.12,{},188932,0,"""Europe""" +2023-04-29,8485,6602,"[\""Charger\""]",2262.12,{},91716,1,"""Europe""" +2024-06-03,8486,5604,"[\""Phone\""]",4308.17,{},10937,1,"""South America""" +2024-04-08,8487,1217,"[\""Monitor\"", \""Headphones\""]",4047.75,{},114540,0,"""Africa""" +2024-09-01,8488,1719,"[\""Tablet\""]",446.33,"{\"": \""27%\""}",30514,1,"""North America""" +2024-07-15,8489,495,"[\""Laptop\"", \""Phone\""]",2648.48,{},286723,0,"""Asia""" +2024-11-01,8490,5148,"[\""Monitor\""]",2268.28,"{\""loyalty\"": \""7%\""}",165789,0,"""Africa""" +2024-08-15,8491,4259,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4314.37,"{\""loyalty\"": \""17%\""}",29162,1,"""Europe""" +2024-02-20,8492,9350,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1763.67,{},218324,0,"""Europe""" +2023-12-02,8493,3460,"[\""Headphones\"", \""Wireless Mouse\""]",4139.02,{},9109,0,"""Europe""" +2023-07-23,8494,784,"[\""Charger\""]",2409.19,{},184052,0,"""Asia""" +2023-06-18,8495,5232,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1675.2,{},75766,0,"""Europe""" +2023-05-19,8496,4768,"[\""Monitor\"", \""Charger\""]",920.17,{},149785,0,"""Europe""" +2023-04-26,8497,1002,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2235.29,"{\""promo\"": \""14%\""}",124744,0,"""Asia""" +2024-11-08,8498,125,"[\""Headphones\""]",4493.69,{},126208,0,"""South America""" +2023-06-20,8499,7165,"[\""Keyboard\""]",700.93,{},101460,0,"""Asia""" +2023-06-21,8500,4118,"[\""Wireless Mouse\""]",4138.44,"{\""loyalty\"": \""8%\""}",143804,1,"""Europe""" +2024-05-08,8501,4048,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2597.32,{},134920,0,"""North America""" +2023-12-19,8502,741,"[\""Headphones\"", \""Keyboard\""]",3530.89,{},141967,0,"""Europe""" +2024-08-29,8503,9327,"[\""Charger\"", \""Keyboard\""]",648.13,"{\""seasonal\"": \""9%\""}",283736,0,"""Asia""" +2024-01-11,8504,6144,"[\""Keyboard\"", \""Headphones\""]",2876.7,"{\""promo\"": \""30%\""}",48607,1,"""South America""" +2023-10-14,8505,9710,"[\""Monitor\""]",3182.93,"{\"": \""29%\""}",228180,0,"""Africa""" +2023-01-09,8506,1411,"[\""Keyboard\"", \""Headphones\""]",4003.93,{},14286,1,"""Africa""" +2023-03-29,8507,1789,"[\""Monitor\""]",2519.85,"{\""loyalty\"": \""17%\""}",259471,1,"""North America""" +2023-11-01,8508,8552,"[\""Monitor\""]",975.12,{},250926,1,"""North America""" +2023-05-04,8509,2324,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2618.71,{},120987,0,"""Africa""" +2024-08-09,8510,4733,"[\""Headphones\"", \""Wireless Mouse\""]",1840.8,"{\""loyalty\"": \""30%\""}",141389,1,"""Asia""" +2023-08-13,8511,1545,"[\""Monitor\""]",2942.65,{},95532,0,"""North America""" +2024-05-30,8512,2305,"[\""Laptop\"", \""Monitor\""]",3710.81,{},115264,1,"""North America""" +2023-11-09,8513,599,"[\""Phone\"", \""Keyboard\""]",3604.98,{},11255,0,"""North America""" +2024-03-18,8514,5858,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2582.32,{},251002,1,"""Asia""" +2023-09-14,8515,6711,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4846.28,{},43460,0,"""North America""" +2024-08-31,8516,477,"[\""Tablet\"", \""Keyboard\""]",1652.19,{},180222,1,"""North America""" +2023-07-12,8517,873,"[\""Tablet\""]",4437.36,{},97107,1,"""Africa""" +2024-11-30,8518,5626,"[\""Keyboard\""]",2709.2,{},9561,1,"""South America""" +2024-09-15,8519,7848,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4582.57,{},88157,0,"""Asia""" +2023-10-04,8520,1953,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3901.85,{},156386,0,"""Asia""" +2023-01-31,8521,7278,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2852.81,"{\""promo\"": \""21%\""}",188431,0,"""North America""" +2023-03-13,8522,5446,"[\""Headphones\"", \""Wireless Mouse\""]",3302.7,{},6580,0,"""North America""" +2023-04-12,8523,4345,"[\""Charger\""]",166.25,{},167830,1,"""Asia""" +2023-10-27,8524,3411,"[\""Monitor\"", \""Phone\""]",4858.33,"{\""promo\"": \""19%\""}",130305,1,"""North America""" +2024-12-31,8525,8590,"[\""Laptop\"", \""Monitor\""]",3859.52,"{\""promo\"": \""15%\""}",132383,1,"""South America""" +2024-09-01,8526,9105,"[\""Tablet\""]",2136.91,{},195858,1,"""Asia""" +2024-10-19,8527,6794,"[\""Charger\"", \""Phone\""]",3608.93,"{\""seasonal\"": \""7%\""}",260691,1,"""Europe""" +2023-07-21,8528,7654,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4447.26,"{\"": \""17%\""}",269085,0,"""Europe""" +2023-11-02,8529,1917,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1482.59,{},112133,1,"""Asia""" +2023-08-19,8530,2049,"[\""Keyboard\"", \""Tablet\""]",1500.81,"{\""seasonal\"": \""28%\""}",180062,0,"""Europe""" +2024-11-26,8531,5387,"[\""Charger\"", \""Laptop\""]",825.01,"{\""loyalty\"": \""25%\""}",111077,0,"""South America""" +2023-05-15,8532,3695,"[\""Charger\"", \""Wireless Mouse\""]",921.38,"{\""promo\"": \""27%\""}",133965,1,"""North America""" +2023-07-01,8533,1055,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",339.85,"{\""seasonal\"": \""9%\""}",64854,0,"""South America""" +2023-09-11,8534,1215,"[\""Tablet\""]",2226.56,{},171772,0,"""Asia""" +2023-01-28,8535,1963,"[\""Laptop\""]",2015.24,"{\""seasonal\"": \""5%\""}",173695,1,"""Asia""" +2024-06-26,8536,1419,"[\""Tablet\""]",2842.27,{},28542,1,"""South America""" +2024-08-24,8537,3785,"[\""Monitor\""]",1455.41,{},268973,0,"""Asia""" +2023-10-06,8538,6746,"[\""Monitor\"", \""Wireless Mouse\""]",2319.81,"{\""seasonal\"": \""11%\""}",273717,1,"""South America""" +2024-06-17,8539,3749,"[\""Charger\"", \""Tablet\""]",4540.82,"{\""loyalty\"": \""13%\""}",274593,1,"""Europe""" +2023-03-29,8540,171,"[\""Headphones\"", \""Charger\""]",1034.91,{},291690,0,"""Africa""" +2024-08-06,8541,4326,"[\""Tablet\""]",3820.02,"{\"": \""22%\""}",112310,1,"""Africa""" +2023-12-28,8542,7537,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4841.41,"{\""seasonal\"": \""24%\""}",269400,1,"""South America""" +2024-07-26,8543,2848,"[\""Headphones\"", \""Monitor\""]",3811.42,"{\""promo\"": \""13%\""}",53814,0,"""Africa""" +2024-06-27,8544,8822,"[\""Charger\"", \""Laptop\""]",3277.77,{},297876,1,"""South America""" +2023-01-01,8545,1106,"[\""Wireless Mouse\"", \""Laptop\""]",401.21,{},289608,1,"""Europe""" +2023-09-14,8546,1979,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4860.84,{},102188,1,"""Europe""" +2024-08-02,8547,759,"[\""Monitor\"", \""Headphones\""]",4488.01,{},14598,0,"""Asia""" +2023-07-12,8548,8417,"[\""Tablet\""]",797.95,"{\""loyalty\"": \""6%\""}",287870,1,"""Africa""" +2024-04-27,8549,2170,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1064.87,"{\""loyalty\"": \""25%\""}",257269,0,"""South America""" +2024-03-03,8550,6159,"[\""Charger\""]",560.93,{},230994,1,"""Europe""" +2023-09-05,8551,2193,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4695.83,"{\""promo\"": \""7%\""}",18723,1,"""Africa""" +2024-11-05,8552,2044,"[\""Monitor\"", \""Laptop\""]",672.57,"{\"": \""18%\""}",106067,0,"""South America""" +2023-08-02,8553,7143,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3994.65,"{\""promo\"": \""10%\""}",229701,1,"""Europe""" +2024-05-14,8554,8941,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1813.81,"{\"": \""12%\""}",291899,1,"""Europe""" +2024-09-28,8555,3748,"[\""Headphones\"", \""Wireless Mouse\""]",3321.97,{},180788,1,"""Africa""" +2023-02-25,8556,7970,"[\""Phone\""]",1041.61,{},281221,1,"""South America""" +2023-07-05,8557,4245,"[\""Headphones\""]",3739.46,{},298097,0,"""Asia""" +2024-07-31,8558,1032,"[\""Charger\"", \""Keyboard\""]",1221.36,{},37948,1,"""Africa""" +2024-10-08,8559,4234,"[\""Phone\""]",3125.5,"{\""loyalty\"": \""24%\""}",12136,0,"""North America""" +2023-06-07,8560,5069,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",575.16,"{\"": \""14%\""}",224281,1,"""South America""" +2023-05-25,8561,3013,"[\""Headphones\""]",1261.98,{},109159,1,"""South America""" +2023-06-11,8562,2226,"[\""Wireless Mouse\"", \""Charger\""]",2897.47,"{\""promo\"": \""7%\""}",254222,0,"""Asia""" +2024-01-08,8563,5329,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1518.39,"{\""promo\"": \""25%\""}",150965,1,"""Europe""" +2023-05-10,8564,4652,"[\""Monitor\"", \""Phone\""]",2411.93,"{\""seasonal\"": \""26%\""}",19264,1,"""Africa""" +2024-05-20,8565,7524,"[\""Headphones\""]",488.84,"{\"": \""18%\""}",106863,1,"""Europe""" +2024-03-23,8566,4803,"[\""Tablet\"", \""Laptop\""]",422.67,{},230704,1,"""Asia""" +2024-03-12,8567,8365,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4299.49,"{\"": \""8%\""}",278117,1,"""Asia""" +2024-06-01,8568,8053,"[\""Keyboard\"", \""Headphones\""]",3972.38,"{\""loyalty\"": \""5%\""}",104668,0,"""North America""" +2023-01-29,8569,2753,"[\""Charger\""]",4863.16,{},291294,1,"""North America""" +2023-04-29,8570,5614,"[\""Headphones\""]",4667.0,{},82389,1,"""Asia""" +2023-11-10,8571,6389,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4114.96,{},275582,0,"""Asia""" +2023-09-26,8572,4802,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",53.24,"{\""loyalty\"": \""24%\""}",232652,0,"""South America""" +2024-06-22,8573,2368,"[\""Monitor\""]",2542.97,"{\""loyalty\"": \""5%\""}",296439,1,"""Africa""" +2023-04-07,8574,9484,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1587.48,"{\""loyalty\"": \""15%\""}",151407,0,"""Asia""" +2023-07-15,8575,8155,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1352.15,{},49503,0,"""North America""" +2023-09-03,8576,2582,"[\""Tablet\"", \""Wireless Mouse\""]",505.82,"{\""promo\"": \""29%\""}",297895,0,"""Africa""" +2023-03-15,8577,3910,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2410.17,{},299405,0,"""Europe""" +2024-08-27,8578,3400,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2271.8,"{\"": \""17%\""}",10183,1,"""Asia""" +2023-11-14,8579,5656,"[\""Laptop\""]",3710.86,"{\""promo\"": \""26%\""}",51604,1,"""Asia""" +2024-06-12,8580,3858,"[\""Wireless Mouse\""]",1827.76,"{\""loyalty\"": \""18%\""}",145522,0,"""Africa""" +2024-03-03,8581,4014,"[\""Headphones\"", \""Tablet\""]",3732.89,{},157132,0,"""Africa""" +2023-03-27,8582,8000,"[\""Headphones\"", \""Monitor\""]",3538.73,{},86329,1,"""Africa""" +2024-08-28,8583,4643,"[\""Headphones\"", \""Tablet\""]",572.71,"{\""promo\"": \""15%\""}",57214,1,"""North America""" +2024-03-11,8584,9886,"[\""Wireless Mouse\""]",4393.51,{},103121,0,"""South America""" +2023-02-10,8585,4857,"[\""Tablet\"", \""Charger\""]",2901.11,"{\"": \""8%\""}",98150,1,"""Africa""" +2023-05-07,8586,558,"[\""Monitor\""]",2861.93,"{\""loyalty\"": \""8%\""}",242138,0,"""Asia""" +2023-06-19,8587,58,"[\""Wireless Mouse\""]",1288.23,{},194022,1,"""South America""" +2024-03-06,8588,8826,"[\""Phone\""]",2994.83,"{\""loyalty\"": \""29%\""}",162086,0,"""South America""" +2024-11-30,8589,5009,"[\""Monitor\"", \""Keyboard\""]",2921.6,"{\""loyalty\"": \""6%\""}",133240,0,"""Europe""" +2023-11-15,8590,5020,"[\""Keyboard\"", \""Headphones\""]",578.28,{},2324,0,"""North America""" +2024-01-16,8591,9857,"[\""Phone\""]",3020.14,"{\""loyalty\"": \""15%\""}",111084,0,"""Africa""" +2023-03-10,8592,9848,"[\""Headphones\"", \""Charger\""]",4617.76,{},135846,1,"""North America""" +2023-12-11,8593,9942,"[\""Headphones\""]",3314.98,"{\"": \""10%\""}",35263,0,"""Africa""" +2024-05-08,8594,792,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2430.12,"{\"": \""14%\""}",255367,0,"""Africa""" +2023-09-13,8595,3345,"[\""Keyboard\"", \""Tablet\""]",2648.73,{},258386,1,"""Africa""" +2023-06-29,8596,2173,"[\""Charger\""]",991.14,"{\""seasonal\"": \""28%\""}",267700,0,"""South America""" +2024-12-12,8597,1737,"[\""Keyboard\""]",2472.7,{},81665,1,"""Africa""" +2023-10-01,8598,7173,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3015.93,{},149465,1,"""North America""" +2024-11-22,8599,2543,"[\""Tablet\""]",825.08,{},140597,0,"""North America""" +2023-02-26,8600,6984,"[\""Wireless Mouse\"", \""Laptop\""]",2033.58,{},94511,0,"""Africa""" +2024-09-28,8601,1373,"[\""Phone\"", \""Keyboard\""]",1115.93,{},91737,1,"""Africa""" +2023-08-10,8602,2099,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3579.94,"{\""seasonal\"": \""19%\""}",173721,1,"""North America""" +2024-10-24,8603,8528,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3301.69,{},195186,0,"""Europe""" +2023-01-05,8604,1198,"[\""Keyboard\""]",661.57,"{\""seasonal\"": \""26%\""}",89177,0,"""Europe""" +2023-09-13,8605,8229,"[\""Laptop\""]",3391.15,{},105838,1,"""Africa""" +2023-01-25,8606,6742,"[\""Wireless Mouse\""]",2672.5,{},51205,0,"""North America""" +2024-01-25,8607,9054,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4022.56,"{\""promo\"": \""9%\""}",220374,0,"""Europe""" +2023-06-02,8608,295,"[\""Phone\"", \""Headphones\""]",2156.65,{},53263,1,"""North America""" +2023-05-10,8609,8918,"[\""Charger\""]",2115.65,{},243417,1,"""Asia""" +2023-06-01,8610,9436,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4918.44,{},103880,1,"""Africa""" +2024-12-15,8611,2862,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2934.91,"{\"": \""11%\""}",157896,0,"""Asia""" +2023-03-14,8612,9514,"[\""Headphones\""]",2132.59,"{\""seasonal\"": \""7%\""}",45867,1,"""Europe""" +2023-04-15,8613,9991,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4241.37,{},269993,1,"""Asia""" +2023-05-19,8614,8021,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3814.3,{},32725,1,"""Asia""" +2023-09-22,8615,6304,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1381.52,"{\"": \""21%\""}",287098,1,"""North America""" +2024-05-13,8616,5598,"[\""Laptop\""]",2821.72,{},157640,0,"""North America""" +2023-07-05,8617,7092,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2629.76,{},55565,1,"""South America""" +2023-11-12,8618,2082,"[\""Headphones\"", \""Phone\""]",2800.9,"{\"": \""10%\""}",187834,0,"""Asia""" +2023-12-04,8619,3567,"[\""Keyboard\""]",4332.75,{},210752,0,"""North America""" +2023-10-20,8620,5933,"[\""Headphones\"", \""Wireless Mouse\""]",4251.43,{},10072,1,"""Europe""" +2023-04-08,8621,3286,"[\""Charger\""]",1448.41,{},146701,1,"""North America""" +2024-12-11,8622,7899,"[\""Monitor\"", \""Keyboard\""]",4314.17,"{\""loyalty\"": \""9%\""}",268681,1,"""Africa""" +2023-04-06,8623,3501,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4800.04,"{\""seasonal\"": \""23%\""}",64410,0,"""North America""" +2023-06-02,8624,6531,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2888.46,"{\""seasonal\"": \""29%\""}",252413,1,"""Asia""" +2024-01-07,8625,6583,"[\""Charger\"", \""Phone\"", \""Laptop\""]",321.95,"{\""loyalty\"": \""29%\""}",224589,0,"""Asia""" +2023-02-23,8626,5125,"[\""Laptop\""]",4515.94,"{\""loyalty\"": \""24%\""}",106086,1,"""Africa""" +2024-01-22,8627,8338,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1979.98,"{\""loyalty\"": \""15%\""}",68282,1,"""Asia""" +2024-01-04,8628,9878,"[\""Phone\"", \""Laptop\""]",318.55,{},298342,0,"""North America""" +2024-01-12,8629,4316,"[\""Monitor\""]",4217.84,{},275999,1,"""North America""" +2023-03-25,8630,5226,"[\""Phone\"", \""Laptop\""]",575.25,{},261384,0,"""North America""" +2024-04-25,8631,2854,"[\""Headphones\""]",525.98,{},89580,0,"""South America""" +2023-11-03,8632,6325,"[\""Tablet\"", \""Charger\""]",1054.6,"{\""promo\"": \""16%\""}",93507,0,"""North America""" +2023-04-02,8633,6677,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1286.61,"{\""seasonal\"": \""28%\""}",57835,1,"""Europe""" +2023-02-09,8634,6447,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4579.68,{},193780,0,"""Europe""" +2023-01-29,8635,4533,"[\""Laptop\""]",379.56,"{\""loyalty\"": \""11%\""}",85618,1,"""South America""" +2023-02-26,8636,6764,"[\""Headphones\""]",4349.1,{},151692,0,"""Asia""" +2024-03-06,8637,4038,"[\""Laptop\""]",1855.03,"{\""promo\"": \""23%\""}",99830,0,"""North America""" +2023-12-11,8638,4140,"[\""Headphones\"", \""Laptop\""]",2689.9,"{\"": \""9%\""}",66914,1,"""South America""" +2023-02-19,8639,8295,"[\""Phone\""]",3800.7,{},27137,1,"""Africa""" +2024-11-03,8640,5490,"[\""Charger\""]",981.35,{},228850,0,"""Africa""" +2024-04-09,8641,858,"[\""Headphones\""]",4688.56,"{\""loyalty\"": \""13%\""}",255565,0,"""South America""" +2023-05-29,8642,8310,"[\""Tablet\""]",4859.08,{},1059,1,"""Africa""" +2023-03-19,8643,7551,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",495.32,{},42509,0,"""South America""" +2024-10-14,8644,5089,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4023.71,"{\"": \""16%\""}",251560,0,"""Asia""" +2024-11-25,8645,8197,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2198.41,{},282161,0,"""Europe""" +2023-02-01,8646,5407,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4005.0,{},37972,1,"""North America""" +2024-02-11,8647,3711,"[\""Tablet\""]",4976.18,{},196968,0,"""North America""" +2024-09-25,8648,4713,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1582.05,{},290064,1,"""South America""" +2024-01-02,8649,690,"[\""Laptop\"", \""Monitor\""]",4704.1,{},102531,1,"""North America""" +2024-04-18,8650,7716,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3344.27,"{\""seasonal\"": \""15%\""}",31126,0,"""Asia""" +2024-07-25,8651,118,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1145.8,"{\""seasonal\"": \""18%\""}",168253,1,"""North America""" +2023-08-27,8652,5771,"[\""Laptop\""]",4562.39,{},211248,1,"""South America""" +2024-06-08,8653,6824,"[\""Monitor\""]",2221.17,"{\""seasonal\"": \""12%\""}",199373,0,"""Asia""" +2023-05-26,8654,3304,"[\""Keyboard\""]",3145.15,"{\""promo\"": \""9%\""}",205264,1,"""North America""" +2024-12-12,8655,1571,"[\""Charger\"", \""Keyboard\""]",1645.82,"{\""promo\"": \""24%\""}",212206,1,"""Europe""" +2023-11-21,8656,459,"[\""Headphones\"", \""Wireless Mouse\""]",787.62,"{\""loyalty\"": \""7%\""}",9412,0,"""Europe""" +2023-09-07,8657,5469,"[\""Monitor\""]",3001.53,{},86925,0,"""Europe""" +2023-02-24,8658,8860,"[\""Headphones\""]",4433.76,"{\""loyalty\"": \""15%\""}",160462,1,"""Africa""" +2023-06-29,8659,6257,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",227.85,{},87768,1,"""Africa""" +2023-11-19,8660,3294,"[\""Phone\""]",2916.73,"{\""seasonal\"": \""7%\""}",148949,0,"""South America""" +2023-06-19,8661,5039,"[\""Laptop\""]",2521.53,"{\"": \""8%\""}",188843,0,"""Asia""" +2024-05-27,8662,6838,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1181.27,{},64917,1,"""South America""" +2023-09-12,8663,4570,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3232.84,"{\""seasonal\"": \""14%\""}",24700,0,"""Asia""" +2024-06-16,8664,2198,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1337.59,{},105886,0,"""South America""" +2023-10-12,8665,2282,"[\""Keyboard\"", \""Tablet\""]",3086.99,{},27560,0,"""Africa""" +2024-10-05,8666,2775,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2898.46,"{\""promo\"": \""16%\""}",77755,1,"""Asia""" +2023-01-09,8667,4149,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2205.61,"{\""seasonal\"": \""28%\""}",20670,1,"""Africa""" +2024-09-22,8668,4257,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",426.15,{},292616,0,"""Africa""" +2024-08-11,8669,7377,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4800.67,{},152466,0,"""Europe""" +2024-05-13,8670,8251,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3435.54,{},225573,1,"""Africa""" +2023-01-25,8671,7550,"[\""Wireless Mouse\"", \""Charger\""]",528.54,{},202729,0,"""Asia""" +2024-09-15,8672,5075,"[\""Tablet\"", \""Monitor\""]",1890.69,{},64915,1,"""South America""" +2024-12-30,8673,528,"[\""Headphones\""]",1059.01,"{\""promo\"": \""5%\""}",204965,0,"""Europe""" +2023-09-13,8674,254,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3759.23,{},269486,1,"""South America""" +2024-09-10,8675,9944,"[\""Monitor\""]",1204.34,"{\""seasonal\"": \""8%\""}",128776,1,"""Africa""" +2024-04-04,8676,1938,"[\""Phone\""]",4448.18,{},68674,0,"""Asia""" +2023-08-31,8677,5793,"[\""Wireless Mouse\"", \""Charger\""]",1518.96,"{\"": \""12%\""}",129314,1,"""North America""" +2023-12-17,8678,3997,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4644.23,{},97860,0,"""Africa""" +2024-08-18,8679,8574,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4474.46,"{\"": \""16%\""}",48196,0,"""South America""" +2024-05-05,8680,796,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",925.49,{},168526,1,"""Europe""" +2023-09-26,8681,5793,"[\""Tablet\"", \""Wireless Mouse\""]",4841.47,"{\""promo\"": \""11%\""}",50708,0,"""Asia""" +2024-09-25,8682,8917,"[\""Laptop\""]",2036.56,{},86222,1,"""Asia""" +2023-02-07,8683,6311,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",401.41,{},14481,0,"""South America""" +2023-08-31,8684,1572,"[\""Keyboard\""]",4777.9,{},8987,1,"""Africa""" +2023-11-07,8685,3145,"[\""Phone\"", \""Tablet\""]",3656.36,{},216808,0,"""North America""" +2024-07-13,8686,5996,"[\""Monitor\""]",851.46,"{\""promo\"": \""24%\""}",6669,1,"""South America""" +2023-10-05,8687,5956,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2669.96,{},50848,1,"""Africa""" +2023-01-24,8688,3733,"[\""Tablet\""]",1597.1,"{\""seasonal\"": \""29%\""}",23779,1,"""Asia""" +2023-05-17,8689,9872,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",515.06,{},281200,1,"""North America""" +2024-05-31,8690,6381,"[\""Charger\"", \""Tablet\""]",1249.31,{},246495,1,"""South America""" +2024-04-23,8691,9263,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3522.3,{},229715,1,"""Europe""" +2023-01-08,8692,1624,"[\""Phone\"", \""Monitor\""]",568.27,"{\""loyalty\"": \""9%\""}",220989,0,"""North America""" +2024-02-06,8693,5382,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4348.96,"{\""seasonal\"": \""9%\""}",174942,0,"""Asia""" +2024-01-20,8694,5499,"[\""Headphones\"", \""Tablet\""]",3483.32,"{\"": \""25%\""}",59333,1,"""South America""" +2023-01-03,8695,837,"[\""Tablet\"", \""Laptop\""]",1658.99,{},218634,0,"""Europe""" +2023-10-23,8696,2585,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1248.66,{},221565,0,"""Europe""" +2023-11-12,8697,4208,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3067.06,{},260125,0,"""North America""" +2024-07-30,8698,228,"[\""Keyboard\""]",413.8,{},119528,0,"""Africa""" +2024-05-06,8699,9429,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1746.41,"{\""loyalty\"": \""18%\""}",66817,1,"""North America""" +2024-06-06,8700,8639,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4138.87,{},216901,1,"""North America""" +2024-02-05,8701,6053,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1464.03,{},210784,1,"""North America""" +2024-01-27,8702,3579,"[\""Monitor\""]",4539.72,{},138663,0,"""North America""" +2023-07-16,8703,8868,"[\""Charger\""]",4740.78,"{\"": \""11%\""}",112097,0,"""North America""" +2024-04-12,8704,7806,"[\""Headphones\""]",4770.55,{},103777,0,"""Asia""" +2023-07-14,8705,5069,"[\""Tablet\""]",2229.82,{},152903,0,"""Europe""" +2023-11-01,8706,811,"[\""Headphones\""]",4177.41,{},141276,1,"""South America""" +2024-04-18,8707,435,"[\""Laptop\""]",4522.78,"{\""promo\"": \""18%\""}",213250,1,"""Asia""" +2023-11-13,8708,1461,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2176.34,{},179373,0,"""Africa""" +2023-12-05,8709,229,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4222.75,"{\"": \""18%\""}",91834,0,"""South America""" +2023-07-21,8710,8525,"[\""Keyboard\"", \""Phone\""]",1746.46,{},262303,0,"""North America""" +2024-01-15,8711,6175,"[\""Charger\""]",697.7,{},181117,0,"""North America""" +2023-03-26,8712,6482,"[\""Charger\""]",1346.8,"{\""loyalty\"": \""10%\""}",46106,0,"""South America""" +2024-09-10,8713,7557,"[\""Charger\"", \""Phone\""]",4458.94,{},138175,0,"""Europe""" +2023-02-19,8714,9430,"[\""Headphones\""]",657.1,{},179251,1,"""Africa""" +2024-05-14,8715,2451,"[\""Phone\"", \""Headphones\""]",215.85,{},272808,1,"""Europe""" +2024-07-06,8716,2133,"[\""Charger\"", \""Tablet\""]",699.1,"{\""promo\"": \""20%\""}",25059,1,"""South America""" +2024-03-27,8717,4732,"[\""Keyboard\""]",4001.37,"{\""seasonal\"": \""25%\""}",58125,0,"""Asia""" +2023-11-20,8718,7138,"[\""Laptop\"", \""Monitor\""]",1227.65,"{\""loyalty\"": \""24%\""}",290251,1,"""North America""" +2024-11-30,8719,6067,"[\""Tablet\"", \""Laptop\""]",869.26,{},134474,1,"""North America""" +2024-03-01,8720,2030,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4762.6,{},84664,0,"""South America""" +2024-08-03,8721,3099,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2241.69,{},75493,0,"""Europe""" +2023-04-13,8722,7294,"[\""Charger\""]",1471.12,"{\""seasonal\"": \""6%\""}",232469,1,"""Europe""" +2023-11-05,8723,7063,"[\""Keyboard\""]",1724.93,{},258756,1,"""Europe""" +2024-04-07,8724,7233,"[\""Monitor\"", \""Tablet\""]",701.87,{},12217,0,"""Asia""" +2023-07-06,8725,8978,"[\""Phone\""]",2291.39,"{\""promo\"": \""21%\""}",122132,1,"""Asia""" +2024-01-16,8726,3879,"[\""Keyboard\"", \""Monitor\""]",4517.17,{},290808,0,"""Africa""" +2023-03-06,8727,1575,"[\""Charger\""]",3737.83,"{\""seasonal\"": \""25%\""}",207642,1,"""South America""" +2024-01-17,8728,6880,"[\""Keyboard\"", \""Charger\""]",3343.08,{},50211,1,"""Asia""" +2024-05-15,8729,5117,"[\""Phone\"", \""Wireless Mouse\""]",3769.23,{},19803,0,"""Asia""" +2024-10-06,8730,7915,"[\""Phone\""]",2259.22,"{\""seasonal\"": \""30%\""}",104861,0,"""Africa""" +2024-10-03,8731,3415,"[\""Wireless Mouse\"", \""Charger\""]",1387.81,{},31393,1,"""Africa""" +2023-11-23,8732,869,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3982.53,{},37738,1,"""South America""" +2023-06-07,8733,4682,"[\""Monitor\""]",2020.64,"{\""loyalty\"": \""18%\""}",262100,0,"""Asia""" +2023-05-30,8734,6739,"[\""Keyboard\""]",642.29,{},243827,0,"""North America""" +2024-03-02,8735,8310,"[\""Headphones\""]",804.39,{},161895,0,"""South America""" +2023-05-31,8736,268,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",868.36,{},142140,0,"""South America""" +2023-05-15,8737,7315,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",365.32,{},196754,0,"""Asia""" +2024-08-13,8738,5087,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4863.96,{},251686,0,"""Africa""" +2024-08-04,8739,5561,"[\""Wireless Mouse\"", \""Tablet\""]",400.27,{},95846,1,"""North America""" +2024-12-26,8740,1140,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2417.22,{},202227,1,"""South America""" +2024-11-08,8741,1487,"[\""Phone\"", \""Keyboard\""]",4331.99,{},119146,1,"""Europe""" +2023-01-01,8742,177,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1298.14,{},94448,0,"""Asia""" +2023-03-14,8743,8022,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4938.49,"{\""seasonal\"": \""13%\""}",267509,0,"""South America""" +2024-03-24,8744,5980,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4838.12,{},61524,0,"""South America""" +2023-04-07,8745,7338,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",67.19,{},65336,0,"""Europe""" +2024-06-21,8746,5257,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1725.33,{},15543,1,"""Asia""" +2024-09-24,8747,7091,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1765.43,"{\"": \""10%\""}",95388,0,"""North America""" +2024-07-06,8748,1018,"[\""Tablet\""]",3029.74,{},150368,1,"""Asia""" +2023-09-11,8749,999,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4257.3,"{\""seasonal\"": \""6%\""}",162008,0,"""Africa""" +2024-06-29,8750,1567,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3777.6,"{\""loyalty\"": \""12%\""}",5371,0,"""Asia""" +2023-09-01,8751,1210,"[\""Phone\""]",1279.82,"{\""promo\"": \""19%\""}",189307,1,"""North America""" +2024-09-26,8752,207,"[\""Headphones\"", \""Tablet\""]",2003.57,"{\"": \""21%\""}",71074,1,"""North America""" +2024-02-02,8753,5325,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3319.08,"{\""loyalty\"": \""16%\""}",224018,1,"""Africa""" +2024-07-02,8754,2941,"[\""Headphones\"", \""Charger\""]",4789.8,{},15352,0,"""South America""" +2024-09-23,8755,8230,"[\""Tablet\"", \""Phone\""]",3117.01,"{\""seasonal\"": \""26%\""}",179372,0,"""North America""" +2023-10-20,8756,3195,"[\""Keyboard\""]",778.01,{},183817,1,"""North America""" +2024-04-25,8757,4710,"[\""Monitor\""]",4017.54,{},184194,0,"""Asia""" +2024-12-02,8758,505,"[\""Charger\"", \""Headphones\""]",2317.71,"{\""seasonal\"": \""20%\""}",189111,0,"""Africa""" +2023-05-14,8759,7061,"[\""Laptop\""]",3326.21,{},271243,1,"""Asia""" +2023-01-30,8760,7830,"[\""Wireless Mouse\""]",265.75,"{\""loyalty\"": \""23%\""}",82461,1,"""North America""" +2024-12-31,8761,9726,"[\""Charger\"", \""Keyboard\""]",2669.67,{},5778,0,"""Europe""" +2023-03-26,8762,7518,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3458.69,{},86480,1,"""Europe""" +2023-04-29,8763,5712,"[\""Wireless Mouse\""]",1642.77,"{\""loyalty\"": \""28%\""}",23272,0,"""North America""" +2023-10-26,8764,1613,"[\""Tablet\"", \""Monitor\""]",757.51,{},200807,1,"""Asia""" +2023-02-24,8765,7533,"[\""Tablet\"", \""Laptop\""]",886.62,"{\""promo\"": \""10%\""}",140376,1,"""Europe""" +2024-08-01,8766,503,"[\""Monitor\"", \""Wireless Mouse\""]",2392.55,{},294898,1,"""Europe""" +2024-06-09,8767,5098,"[\""Wireless Mouse\"", \""Phone\""]",4863.26,{},57081,1,"""Africa""" +2023-12-31,8768,7687,"[\""Monitor\"", \""Tablet\""]",1524.57,"{\""promo\"": \""21%\""}",186041,1,"""Asia""" +2024-03-13,8769,9658,"[\""Laptop\"", \""Tablet\""]",1072.62,"{\""seasonal\"": \""27%\""}",10409,1,"""Europe""" +2024-08-13,8770,736,"[\""Charger\"", \""Tablet\""]",2984.75,"{\""loyalty\"": \""9%\""}",140044,0,"""North America""" +2024-05-23,8771,8835,"[\""Phone\""]",576.98,"{\""promo\"": \""16%\""}",28313,0,"""North America""" +2024-05-09,8772,3226,"[\""Monitor\"", \""Laptop\""]",2698.92,{},139481,0,"""Africa""" +2024-09-20,8773,8088,"[\""Keyboard\""]",2613.16,"{\""loyalty\"": \""23%\""}",44749,0,"""Asia""" +2024-05-25,8774,3998,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",601.55,"{\""seasonal\"": \""25%\""}",201493,0,"""South America""" +2024-08-05,8775,1662,"[\""Charger\"", \""Monitor\""]",703.11,"{\""promo\"": \""7%\""}",120265,1,"""Europe""" +2023-05-08,8776,8279,"[\""Wireless Mouse\""]",1447.94,"{\""promo\"": \""9%\""}",247685,0,"""North America""" +2024-09-22,8777,5406,"[\""Phone\"", \""Keyboard\""]",2214.77,"{\""seasonal\"": \""27%\""}",21836,1,"""Europe""" +2023-03-06,8778,988,"[\""Keyboard\""]",561.6,"{\""seasonal\"": \""14%\""}",180910,1,"""Africa""" +2023-08-02,8779,5886,"[\""Monitor\""]",1921.68,{},248492,0,"""North America""" +2023-06-26,8780,3171,"[\""Tablet\"", \""Keyboard\""]",2893.15,"{\""seasonal\"": \""26%\""}",102907,0,"""Asia""" +2024-05-15,8781,1555,"[\""Wireless Mouse\"", \""Keyboard\""]",3633.31,"{\""loyalty\"": \""28%\""}",202529,0,"""Europe""" +2023-05-26,8782,2588,"[\""Headphones\"", \""Monitor\""]",3536.55,{},264916,0,"""Asia""" +2023-12-19,8783,9924,"[\""Headphones\""]",4146.96,{},199144,1,"""Europe""" +2024-01-10,8784,4968,"[\""Laptop\"", \""Tablet\""]",4337.89,"{\""promo\"": \""8%\""}",155692,1,"""South America""" +2024-05-01,8785,163,"[\""Phone\"", \""Charger\""]",2301.03,{},218625,1,"""South America""" +2024-09-28,8786,9494,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",519.8,{},282907,1,"""South America""" +2024-01-02,8787,8651,"[\""Phone\"", \""Tablet\""]",2423.98,{},137804,0,"""Asia""" +2023-07-01,8788,7798,"[\""Wireless Mouse\"", \""Monitor\""]",3085.12,{},81102,1,"""North America""" +2023-08-08,8789,8088,"[\""Keyboard\""]",4511.54,"{\"": \""8%\""}",147066,0,"""Europe""" +2023-11-05,8790,2439,"[\""Keyboard\"", \""Headphones\""]",2029.19,{},184224,1,"""North America""" +2023-07-11,8791,5127,"[\""Phone\"", \""Headphones\""]",1552.52,"{\""loyalty\"": \""22%\""}",162158,1,"""Europe""" +2023-09-27,8792,5398,"[\""Keyboard\""]",3651.16,"{\""promo\"": \""29%\""}",108563,1,"""North America""" +2024-07-25,8793,8060,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4344.32,{},291916,1,"""North America""" +2024-10-27,8794,1065,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2522.77,{},138920,0,"""Europe""" +2023-12-02,8795,9693,"[\""Headphones\""]",4631.25,"{\""loyalty\"": \""21%\""}",79526,1,"""Africa""" +2023-05-07,8796,9011,"[\""Keyboard\""]",3380.22,{},147776,0,"""South America""" +2023-04-29,8797,8077,"[\""Headphones\""]",1424.29,{},199824,1,"""South America""" +2023-01-23,8798,7091,"[\""Charger\""]",3328.24,{},173651,0,"""South America""" +2023-03-08,8799,2681,"[\""Wireless Mouse\""]",3379.6,{},236596,1,"""Europe""" +2023-11-08,8800,3841,"[\""Laptop\"", \""Charger\""]",2582.52,"{\""loyalty\"": \""18%\""}",205451,1,"""Asia""" +2023-03-08,8801,2359,"[\""Phone\""]",3420.88,"{\""seasonal\"": \""28%\""}",280852,1,"""Africa""" +2023-03-12,8802,4791,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1480.55,{},160742,0,"""North America""" +2023-05-20,8803,1791,"[\""Wireless Mouse\"", \""Keyboard\""]",179.76,{},77315,0,"""North America""" +2024-05-28,8804,6628,"[\""Headphones\""]",4238.51,{},59340,0,"""Africa""" +2024-04-17,8805,7018,"[\""Phone\""]",4194.59,{},37870,1,"""South America""" +2023-10-23,8806,4533,"[\""Headphones\""]",3004.26,{},210433,0,"""South America""" +2023-11-05,8807,1801,"[\""Tablet\""]",1904.19,"{\"": \""22%\""}",86598,1,"""North America""" +2023-02-10,8808,7418,"[\""Charger\"", \""Tablet\""]",4348.53,"{\"": \""16%\""}",43983,0,"""Africa""" +2023-11-13,8809,1757,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",446.71,{},220549,1,"""South America""" +2024-09-11,8810,4464,"[\""Phone\""]",3712.01,{},257509,1,"""Africa""" +2023-08-12,8811,641,"[\""Headphones\""]",2588.03,"{\"": \""6%\""}",286245,1,"""South America""" +2023-07-07,8812,5565,"[\""Keyboard\""]",1805.78,"{\"": \""25%\""}",145156,0,"""North America""" +2024-04-21,8813,496,"[\""Headphones\"", \""Keyboard\""]",3606.49,{},131609,1,"""Europe""" +2024-12-20,8814,9218,"[\""Wireless Mouse\""]",1021.69,"{\"": \""20%\""}",275024,0,"""Asia""" +2024-08-20,8815,7244,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1185.97,"{\""seasonal\"": \""25%\""}",185612,1,"""Africa""" +2024-09-17,8816,7913,"[\""Monitor\"", \""Laptop\""]",1956.55,{},155119,1,"""Europe""" +2024-07-07,8817,9145,"[\""Tablet\"", \""Wireless Mouse\""]",99.97,"{\""seasonal\"": \""16%\""}",295338,1,"""Europe""" +2023-01-09,8818,2463,"[\""Phone\"", \""Charger\""]",134.08,"{\"": \""15%\""}",89803,1,"""South America""" +2023-05-21,8819,8564,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3832.54,{},167934,1,"""North America""" +2024-02-13,8820,2666,"[\""Headphones\""]",2786.55,"{\"": \""10%\""}",256232,1,"""Africa""" +2024-10-05,8821,8964,"[\""Wireless Mouse\""]",3232.82,{},203266,0,"""Africa""" +2024-09-01,8822,4115,"[\""Monitor\""]",3906.67,{},147389,1,"""South America""" +2024-11-02,8823,5370,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4323.08,"{\""loyalty\"": \""26%\""}",83638,0,"""Europe""" +2024-05-01,8824,5520,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3725.69,{},220995,1,"""Africa""" +2023-02-26,8825,1424,"[\""Phone\"", \""Wireless Mouse\""]",4627.29,{},268891,1,"""Asia""" +2024-02-29,8826,9539,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1009.82,"{\"": \""30%\""}",295297,1,"""Africa""" +2024-04-11,8827,3606,"[\""Headphones\""]",846.07,"{\""promo\"": \""6%\""}",246012,1,"""Asia""" +2023-06-07,8828,1686,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2995.45,"{\""loyalty\"": \""8%\""}",231610,1,"""North America""" +2024-12-13,8829,57,"[\""Monitor\""]",4451.8,{},220270,0,"""Africa""" +2024-07-02,8830,8834,"[\""Monitor\""]",4160.1,"{\""promo\"": \""27%\""}",98052,1,"""South America""" +2024-09-19,8831,9369,"[\""Headphones\"", \""Charger\""]",2115.75,{},10858,1,"""Africa""" +2023-03-20,8832,6145,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1406.67,"{\"": \""20%\""}",268300,1,"""North America""" +2023-10-28,8833,4990,"[\""Charger\""]",2445.14,{},226983,1,"""Europe""" +2024-11-06,8834,5365,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3342.1,"{\""promo\"": \""24%\""}",285780,1,"""South America""" +2023-12-14,8835,6484,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2729.87,{},285434,1,"""Europe""" +2023-07-30,8836,3744,"[\""Tablet\""]",2656.85,"{\"": \""20%\""}",27723,0,"""Asia""" +2024-07-03,8837,5728,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1176.69,"{\""promo\"": \""12%\""}",173365,0,"""Asia""" +2024-10-13,8838,5861,"[\""Monitor\"", \""Headphones\""]",3977.97,{},278770,0,"""Africa""" +2023-12-31,8839,1158,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3811.78,{},152885,1,"""Europe""" +2024-08-03,8840,9899,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",830.48,"{\""loyalty\"": \""11%\""}",30749,1,"""Asia""" +2024-05-18,8841,5144,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4471.52,{},167847,1,"""Asia""" +2023-12-14,8842,3988,"[\""Tablet\""]",3933.74,{},235991,1,"""Africa""" +2024-04-04,8843,7404,"[\""Headphones\""]",4547.46,"{\""loyalty\"": \""19%\""}",39792,1,"""Asia""" +2023-12-30,8844,5661,"[\""Wireless Mouse\"", \""Laptop\""]",400.05,{},99853,0,"""Africa""" +2024-08-21,8845,1997,"[\""Monitor\""]",2255.86,"{\""seasonal\"": \""11%\""}",118703,0,"""Asia""" +2023-10-08,8846,29,"[\""Headphones\"", \""Laptop\""]",3433.75,"{\""seasonal\"": \""25%\""}",119198,1,"""Africa""" +2024-09-14,8847,1892,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",444.79,"{\""loyalty\"": \""22%\""}",112275,1,"""Europe""" +2024-09-19,8848,6080,"[\""Charger\""]",2015.16,{},41964,0,"""North America""" +2024-01-04,8849,2676,"[\""Headphones\"", \""Keyboard\""]",282.67,{},89601,1,"""North America""" +2023-01-27,8850,7227,"[\""Keyboard\"", \""Laptop\""]",1657.76,{},248437,0,"""Africa""" +2024-06-05,8851,1500,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3008.93,{},90914,0,"""South America""" +2023-08-27,8852,8228,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4077.73,"{\""seasonal\"": \""20%\""}",166041,0,"""Asia""" +2023-09-16,8853,7384,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3897.68,"{\""seasonal\"": \""18%\""}",129524,0,"""Europe""" +2024-06-07,8854,1977,"[\""Phone\"", \""Keyboard\""]",3088.06,"{\""promo\"": \""14%\""}",140004,0,"""Europe""" +2024-08-11,8855,6355,"[\""Wireless Mouse\"", \""Monitor\""]",87.75,{},216037,0,"""Africa""" +2023-01-21,8856,6360,"[\""Keyboard\""]",4302.64,{},64507,0,"""South America""" +2023-10-28,8857,2286,"[\""Phone\"", \""Headphones\""]",3227.35,"{\""loyalty\"": \""15%\""}",262192,1,"""North America""" +2023-04-11,8858,4611,"[\""Phone\""]",3774.09,{},271013,1,"""Asia""" +2024-04-07,8859,9662,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1226.51,"{\""seasonal\"": \""12%\""}",84060,1,"""Africa""" +2023-03-04,8860,3062,"[\""Headphones\"", \""Laptop\""]",4341.0,{},280409,0,"""Africa""" +2023-04-02,8861,8599,"[\""Keyboard\""]",381.07,"{\""loyalty\"": \""24%\""}",79934,0,"""South America""" +2023-10-08,8862,2640,"[\""Tablet\""]",2103.68,{},296907,1,"""Europe""" +2023-07-09,8863,714,"[\""Monitor\""]",752.65,"{\"": \""21%\""}",45512,0,"""Africa""" +2023-03-21,8864,2978,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1020.43,{},284565,0,"""North America""" +2023-01-01,8865,9217,"[\""Keyboard\"", \""Tablet\""]",2071.12,{},261802,0,"""South America""" +2023-06-13,8866,9650,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1040.19,{},115968,1,"""Asia""" +2023-06-29,8867,3893,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3724.11,"{\"": \""26%\""}",114466,1,"""Asia""" +2023-06-27,8868,3,"[\""Phone\""]",1466.25,"{\""promo\"": \""12%\""}",234295,1,"""South America""" +2024-08-05,8869,7152,"[\""Headphones\""]",280.0,"{\""seasonal\"": \""13%\""}",37316,1,"""North America""" +2024-08-12,8870,2325,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1626.03,{},35024,1,"""North America""" +2023-12-01,8871,2521,"[\""Charger\""]",3247.13,"{\""promo\"": \""19%\""}",201982,1,"""South America""" +2023-03-25,8872,8142,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3814.31,{},130012,1,"""Europe""" +2023-01-24,8873,4182,"[\""Laptop\"", \""Wireless Mouse\""]",1053.24,{},215914,1,"""North America""" +2023-04-21,8874,2301,"[\""Headphones\"", \""Wireless Mouse\""]",1793.86,"{\""seasonal\"": \""13%\""}",294518,0,"""South America""" +2024-09-27,8875,417,"[\""Laptop\""]",3633.0,{},248011,1,"""Asia""" +2024-11-06,8876,4657,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3060.22,"{\""seasonal\"": \""22%\""}",86091,1,"""Africa""" +2024-04-03,8877,4416,"[\""Tablet\"", \""Laptop\""]",2340.47,"{\"": \""29%\""}",127680,0,"""South America""" +2024-05-31,8878,8229,"[\""Keyboard\"", \""Monitor\""]",995.88,{},210551,1,"""South America""" +2023-10-31,8879,7535,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1773.39,"{\""seasonal\"": \""22%\""}",232898,1,"""South America""" +2024-07-24,8880,1889,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",90.77,"{\""seasonal\"": \""19%\""}",127894,1,"""Africa""" +2024-12-05,8881,152,"[\""Charger\""]",1409.59,{},85605,1,"""Asia""" +2024-06-01,8882,9405,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3620.39,"{\""loyalty\"": \""21%\""}",75830,0,"""Asia""" +2023-06-01,8883,3537,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2833.68,"{\""loyalty\"": \""17%\""}",205470,0,"""Europe""" +2023-12-07,8884,8474,"[\""Keyboard\""]",1930.63,"{\""promo\"": \""30%\""}",99406,1,"""Asia""" +2023-10-13,8885,1398,"[\""Monitor\"", \""Charger\""]",219.07,"{\"": \""26%\""}",173905,0,"""South America""" +2023-05-18,8886,9701,"[\""Laptop\"", \""Tablet\""]",3205.02,{},294802,1,"""North America""" +2024-01-30,8887,1104,"[\""Headphones\""]",1941.18,"{\""seasonal\"": \""10%\""}",8141,0,"""Asia""" +2024-09-24,8888,8120,"[\""Tablet\""]",958.46,{},112125,0,"""Asia""" +2024-06-13,8889,6849,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",57.86,"{\""loyalty\"": \""10%\""}",22573,0,"""South America""" +2023-01-07,8890,8379,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4517.55,{},277610,0,"""North America""" +2023-03-21,8891,3681,"[\""Charger\"", \""Tablet\""]",3895.8,"{\""promo\"": \""6%\""}",287996,1,"""Europe""" +2024-04-18,8892,5957,"[\""Wireless Mouse\"", \""Tablet\""]",311.91,"{\""loyalty\"": \""27%\""}",148648,0,"""Europe""" +2024-01-08,8893,4652,"[\""Headphones\"", \""Monitor\""]",3332.05,"{\""loyalty\"": \""18%\""}",118083,0,"""Europe""" +2024-09-13,8894,9953,"[\""Phone\"", \""Charger\""]",575.29,{},236551,1,"""Africa""" +2024-03-09,8895,498,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1567.63,"{\""loyalty\"": \""18%\""}",113577,1,"""North America""" +2024-03-12,8896,3707,"[\""Phone\"", \""Tablet\""]",1402.06,"{\""loyalty\"": \""27%\""}",49495,0,"""Asia""" +2024-08-22,8897,2876,"[\""Keyboard\"", \""Phone\""]",639.31,{},79485,1,"""Africa""" +2024-09-19,8898,2842,"[\""Headphones\"", \""Tablet\""]",2103.18,{},226427,0,"""Africa""" +2023-03-16,8899,1621,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1787.91,"{\""promo\"": \""24%\""}",94533,1,"""North America""" +2024-12-19,8900,718,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4121.76,{},47947,1,"""Asia""" +2023-08-08,8901,6531,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3984.55,"{\""promo\"": \""12%\""}",149441,0,"""Asia""" +2023-09-06,8902,261,"[\""Tablet\"", \""Wireless Mouse\""]",4974.89,"{\""seasonal\"": \""5%\""}",55080,1,"""North America""" +2024-05-05,8903,4039,"[\""Keyboard\"", \""Headphones\""]",4514.62,"{\""loyalty\"": \""11%\""}",152710,1,"""South America""" +2024-04-05,8904,4665,"[\""Laptop\""]",1174.6,"{\""seasonal\"": \""18%\""}",284757,1,"""Africa""" +2024-09-27,8905,6703,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2858.79,"{\"": \""6%\""}",180845,0,"""Africa""" +2024-02-21,8906,2995,"[\""Tablet\"", \""Charger\""]",3468.74,"{\""promo\"": \""22%\""}",293616,0,"""North America""" +2024-11-26,8907,1052,"[\""Wireless Mouse\"", \""Keyboard\""]",2365.63,{},236097,0,"""South America""" +2023-03-19,8908,1410,"[\""Charger\"", \""Wireless Mouse\""]",3086.26,"{\""promo\"": \""27%\""}",90068,1,"""Africa""" +2023-09-16,8909,5025,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",513.99,"{\"": \""12%\""}",41620,0,"""Africa""" +2023-12-04,8910,4051,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4419.29,"{\""seasonal\"": \""10%\""}",125042,1,"""Asia""" +2023-03-15,8911,313,"[\""Wireless Mouse\"", \""Phone\""]",3595.9,{},117704,1,"""North America""" +2024-11-15,8912,9770,"[\""Monitor\"", \""Charger\""]",1835.23,"{\""promo\"": \""7%\""}",176170,1,"""Europe""" +2023-08-19,8913,6967,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1673.68,{},236671,1,"""South America""" +2023-07-06,8914,6064,"[\""Charger\"", \""Tablet\""]",2631.07,{},142076,1,"""South America""" +2024-03-24,8915,44,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3808.98,"{\"": \""25%\""}",173820,0,"""Europe""" +2023-05-12,8916,3222,"[\""Monitor\"", \""Laptop\""]",3470.96,{},175399,1,"""Asia""" +2024-10-29,8917,4397,"[\""Wireless Mouse\"", \""Charger\""]",2341.49,"{\""loyalty\"": \""17%\""}",103060,0,"""South America""" +2023-01-01,8918,5579,"[\""Tablet\"", \""Monitor\""]",4211.57,{},15355,0,"""Africa""" +2023-09-03,8919,5163,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3850.33,{},209424,1,"""Asia""" +2024-09-27,8920,134,"[\""Wireless Mouse\"", \""Tablet\""]",4460.94,"{\"": \""11%\""}",18979,0,"""Africa""" +2023-07-25,8921,3243,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2332.33,"{\"": \""7%\""}",64955,0,"""North America""" +2023-05-18,8922,6621,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",307.86,{},181456,0,"""South America""" +2024-07-13,8923,5055,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1396.34,{},83706,1,"""North America""" +2024-03-26,8924,3397,"[\""Monitor\"", \""Tablet\""]",1060.29,"{\""loyalty\"": \""7%\""}",49328,1,"""North America""" +2024-07-02,8925,7847,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3786.83,{},260879,1,"""Europe""" +2023-11-09,8926,9175,"[\""Tablet\""]",4946.37,{},90451,0,"""Africa""" +2024-09-21,8927,5052,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4922.17,{},129804,0,"""North America""" +2023-05-03,8928,4205,"[\""Phone\""]",4200.81,{},206911,1,"""North America""" +2023-05-01,8929,624,"[\""Charger\"", \""Tablet\""]",2603.8,"{\""seasonal\"": \""8%\""}",123045,1,"""Europe""" +2023-01-12,8930,9994,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4083.87,"{\""seasonal\"": \""16%\""}",244885,0,"""Africa""" +2023-12-15,8931,5860,"[\""Tablet\""]",3539.39,"{\""promo\"": \""19%\""}",3325,1,"""North America""" +2024-04-13,8932,9063,"[\""Monitor\""]",2866.66,{},113329,1,"""Africa""" +2023-07-19,8933,7399,"[\""Headphones\"", \""Tablet\""]",3846.86,"{\""loyalty\"": \""10%\""}",132067,1,"""South America""" +2023-03-03,8934,1432,"[\""Phone\"", \""Charger\""]",3542.59,"{\"": \""22%\""}",208699,0,"""South America""" +2023-11-03,8935,9228,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4642.35,"{\""seasonal\"": \""29%\""}",48393,0,"""South America""" +2024-11-20,8936,2322,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1441.0,{},287371,1,"""Europe""" +2024-05-24,8937,5993,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2241.1,"{\""loyalty\"": \""8%\""}",133338,0,"""North America""" +2023-10-25,8938,4524,"[\""Wireless Mouse\"", \""Headphones\""]",1589.58,{},3096,0,"""Asia""" +2023-10-01,8939,6157,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4887.79,"{\""loyalty\"": \""6%\""}",63557,1,"""Asia""" +2023-02-15,8940,122,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",193.57,"{\""seasonal\"": \""19%\""}",66885,1,"""North America""" +2023-01-05,8941,389,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4482.34,"{\""seasonal\"": \""20%\""}",11412,1,"""South America""" +2023-12-18,8942,8696,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1498.41,{},112706,0,"""North America""" +2023-09-14,8943,5184,"[\""Keyboard\"", \""Tablet\""]",2816.57,"{\""seasonal\"": \""6%\""}",124940,0,"""Africa""" +2023-10-06,8944,6001,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2281.64,{},29738,0,"""Africa""" +2024-04-18,8945,498,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4480.17,"{\""seasonal\"": \""30%\""}",41545,1,"""South America""" +2024-07-26,8946,736,"[\""Charger\"", \""Headphones\""]",693.43,{},106909,1,"""South America""" +2023-11-22,8947,4766,"[\""Headphones\"", \""Laptop\""]",2588.53,"{\""loyalty\"": \""10%\""}",158495,1,"""Asia""" +2023-08-04,8948,4174,"[\""Keyboard\"", \""Phone\""]",566.17,{},222142,0,"""North America""" +2024-08-09,8949,9370,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1438.59,"{\""promo\"": \""5%\""}",297517,1,"""Africa""" +2024-02-05,8950,7627,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3244.14,{},28303,0,"""South America""" +2024-04-13,8951,187,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3080.42,{},112435,0,"""South America""" +2023-05-26,8952,3750,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2343.21,{},272301,0,"""Africa""" +2023-11-29,8953,6026,"[\""Monitor\"", \""Charger\"", \""Phone\""]",545.49,"{\""promo\"": \""8%\""}",78924,0,"""Europe""" +2023-07-11,8954,7361,"[\""Phone\""]",2591.8,"{\""seasonal\"": \""23%\""}",274423,1,"""Africa""" +2023-08-01,8955,1764,"[\""Charger\"", \""Phone\""]",845.59,{},156020,0,"""Africa""" +2023-06-19,8956,9101,"[\""Tablet\""]",4750.95,{},189409,1,"""North America""" +2024-02-09,8957,489,"[\""Tablet\""]",788.29,"{\""seasonal\"": \""6%\""}",16804,1,"""South America""" +2023-07-16,8958,6088,"[\""Headphones\""]",2653.78,{},90470,0,"""Africa""" +2024-11-20,8959,8936,"[\""Charger\""]",3551.25,"{\"": \""28%\""}",22822,1,"""Europe""" +2023-11-04,8960,2504,"[\""Keyboard\"", \""Tablet\""]",4047.67,{},155668,0,"""South America""" +2024-01-07,8961,8131,"[\""Headphones\"", \""Phone\""]",4157.1,{},135772,1,"""South America""" +2023-05-02,8962,2596,"[\""Monitor\""]",2862.15,"{\""loyalty\"": \""25%\""}",166018,1,"""Africa""" +2023-05-07,8963,4273,"[\""Monitor\"", \""Headphones\""]",3716.29,{},53494,0,"""Africa""" +2023-02-10,8964,9566,"[\""Headphones\"", \""Laptop\""]",291.01,"{\""promo\"": \""17%\""}",265195,1,"""North America""" +2024-03-30,8965,1393,"[\""Laptop\""]",2683.08,"{\""loyalty\"": \""28%\""}",233670,1,"""Europe""" +2024-02-21,8966,3508,"[\""Tablet\""]",3260.26,"{\"": \""25%\""}",281021,1,"""South America""" +2024-03-26,8967,6478,"[\""Keyboard\"", \""Headphones\""]",2250.12,{},187016,1,"""North America""" +2024-12-21,8968,905,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2751.98,"{\""promo\"": \""30%\""}",188664,0,"""Africa""" +2023-02-04,8969,8089,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3539.18,{},223047,0,"""South America""" +2023-08-13,8970,7925,"[\""Tablet\""]",127.03,"{\""loyalty\"": \""8%\""}",235211,1,"""Africa""" +2023-08-02,8971,4868,"[\""Tablet\"", \""Headphones\""]",2296.39,{},106578,1,"""North America""" +2024-08-26,8972,7050,"[\""Wireless Mouse\""]",1450.68,{},255663,1,"""Asia""" +2023-02-03,8973,9532,"[\""Monitor\"", \""Headphones\""]",3887.87,{},6108,0,"""South America""" +2023-12-23,8974,3133,"[\""Monitor\"", \""Tablet\""]",3664.45,"{\"": \""8%\""}",77103,0,"""Africa""" +2024-12-18,8975,9735,"[\""Phone\""]",3632.16,"{\""seasonal\"": \""15%\""}",267648,1,"""Asia""" +2023-11-03,8976,5118,"[\""Headphones\"", \""Tablet\""]",2855.09,{},8400,1,"""Asia""" +2024-04-22,8977,4915,"[\""Tablet\"", \""Laptop\""]",71.58,{},16490,0,"""North America""" +2023-05-12,8978,1558,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",665.21,{},227103,0,"""Africa""" +2023-07-09,8979,3090,"[\""Headphones\""]",1827.3,{},153207,0,"""Europe""" +2023-06-19,8980,3253,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4650.63,{},153333,1,"""South America""" +2023-02-18,8981,7149,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4179.59,"{\"": \""24%\""}",106509,1,"""South America""" +2023-04-26,8982,5258,"[\""Headphones\""]",1095.73,"{\"": \""8%\""}",253267,0,"""Asia""" +2023-03-26,8983,9885,"[\""Charger\"", \""Phone\""]",1434.32,"{\"": \""20%\""}",162023,1,"""North America""" +2024-09-06,8984,2919,"[\""Tablet\""]",3972.54,{},236278,1,"""Asia""" +2023-02-18,8985,4956,"[\""Laptop\""]",611.4,"{\""loyalty\"": \""27%\""}",53178,1,"""Europe""" +2024-12-20,8986,9427,"[\""Tablet\"", \""Wireless Mouse\""]",3725.64,{},108376,0,"""Asia""" +2023-02-27,8987,3667,"[\""Phone\"", \""Monitor\""]",4478.13,"{\""seasonal\"": \""11%\""}",261456,0,"""Asia""" +2024-03-19,8988,1345,"[\""Tablet\""]",4609.33,{},184490,0,"""South America""" +2024-02-11,8989,8896,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2567.24,{},251738,0,"""North America""" +2024-06-22,8990,1033,"[\""Keyboard\""]",1805.4,"{\""seasonal\"": \""21%\""}",88382,1,"""Europe""" +2024-01-20,8991,380,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1618.91,"{\""loyalty\"": \""17%\""}",38399,1,"""North America""" +2023-08-05,8992,2240,"[\""Tablet\"", \""Phone\""]",4140.75,{},102457,1,"""Europe""" +2023-09-04,8993,3956,"[\""Wireless Mouse\""]",1425.44,"{\"": \""8%\""}",91623,0,"""Africa""" +2023-03-05,8994,2377,"[\""Monitor\""]",820.42,{},250100,0,"""North America""" +2024-12-10,8995,4853,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2864.48,"{\""seasonal\"": \""18%\""}",274078,0,"""Asia""" +2023-08-26,8996,6115,"[\""Laptop\"", \""Keyboard\""]",3869.32,"{\"": \""19%\""}",242980,1,"""Africa""" +2023-03-09,8997,7214,"[\""Phone\"", \""Wireless Mouse\""]",4106.98,{},89986,0,"""Asia""" +2023-02-12,8998,7542,"[\""Headphones\"", \""Keyboard\""]",1170.67,"{\""promo\"": \""17%\""}",220660,0,"""South America""" +2023-10-22,8999,5067,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1496.25,"{\""promo\"": \""20%\""}",77825,1,"""North America""" +2023-03-25,9000,4204,"[\""Charger\"", \""Keyboard\""]",1212.89,{},173006,1,"""Asia""" +2023-11-01,9001,5917,"[\""Tablet\"", \""Laptop\""]",2409.69,"{\""promo\"": \""22%\""}",249959,1,"""North America""" +2023-02-24,9002,5894,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1926.95,{},62062,1,"""Asia""" +2024-06-22,9003,9080,"[\""Tablet\""]",4599.77,{},288990,1,"""Asia""" +2023-05-26,9004,6441,"[\""Laptop\"", \""Headphones\""]",487.55,"{\""seasonal\"": \""25%\""}",28313,1,"""Africa""" +2024-12-23,9005,7492,"[\""Laptop\""]",3476.05,{},274557,0,"""Europe""" +2024-10-27,9006,4347,"[\""Tablet\""]",3745.56,"{\""promo\"": \""10%\""}",180367,0,"""Europe""" +2024-03-29,9007,3083,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2882.71,"{\"": \""14%\""}",9226,1,"""North America""" +2023-06-27,9008,2056,"[\""Charger\"", \""Phone\""]",2468.49,"{\"": \""16%\""}",212368,1,"""Africa""" +2024-08-31,9009,5439,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2196.76,"{\""seasonal\"": \""13%\""}",259331,0,"""Europe""" +2024-12-16,9010,7885,"[\""Keyboard\""]",443.32,{},61748,1,"""Asia""" +2023-06-09,9011,2424,"[\""Tablet\""]",377.67,{},256993,1,"""South America""" +2024-02-28,9012,8367,"[\""Keyboard\""]",1384.76,"{\"": \""22%\""}",254873,1,"""Asia""" +2024-10-22,9013,4540,"[\""Laptop\""]",1304.14,{},125805,0,"""Africa""" +2024-10-08,9014,2650,"[\""Headphones\"", \""Phone\""]",253.83,"{\""promo\"": \""8%\""}",154687,0,"""South America""" +2023-01-14,9015,8648,"[\""Keyboard\""]",4300.91,"{\""loyalty\"": \""6%\""}",18241,1,"""Africa""" +2024-09-20,9016,1292,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1682.96,"{\"": \""29%\""}",103110,1,"""Europe""" +2024-12-05,9017,1811,"[\""Headphones\"", \""Phone\""]",559.61,"{\""loyalty\"": \""17%\""}",210978,1,"""North America""" +2024-08-10,9018,6208,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1365.09,"{\""seasonal\"": \""19%\""}",28244,0,"""South America""" +2024-06-23,9019,2011,"[\""Phone\""]",431.07,{},64553,0,"""Africa""" +2023-09-11,9020,2160,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1572.27,"{\""loyalty\"": \""10%\""}",299907,1,"""Africa""" +2023-10-27,9021,4324,"[\""Headphones\""]",2888.04,"{\"": \""26%\""}",32939,0,"""South America""" +2023-04-24,9022,302,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2787.19,{},161038,1,"""Africa""" +2024-02-09,9023,325,"[\""Charger\""]",3317.95,"{\""promo\"": \""21%\""}",224850,1,"""North America""" +2024-07-17,9024,1764,"[\""Phone\"", \""Charger\""]",2141.35,{},116738,1,"""Asia""" +2024-02-23,9025,1665,"[\""Keyboard\"", \""Charger\""]",1950.22,"{\""loyalty\"": \""23%\""}",38690,0,"""Asia""" +2023-10-24,9026,9588,"[\""Keyboard\"", \""Wireless Mouse\""]",4643.35,"{\""promo\"": \""5%\""}",117991,1,"""Europe""" +2024-03-18,9027,673,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",391.66,{},44600,1,"""Africa""" +2024-03-10,9028,8787,"[\""Phone\"", \""Charger\""]",4329.15,{},115489,0,"""Africa""" +2024-04-12,9029,1524,"[\""Keyboard\"", \""Wireless Mouse\""]",2297.05,"{\""seasonal\"": \""7%\""}",218398,0,"""Africa""" +2024-09-03,9030,8629,"[\""Charger\"", \""Tablet\""]",4528.42,{},221895,1,"""North America""" +2023-11-25,9031,1649,"[\""Charger\""]",2562.38,"{\""loyalty\"": \""6%\""}",152216,1,"""South America""" +2024-12-02,9032,1051,"[\""Phone\""]",4904.64,"{\""promo\"": \""30%\""}",28832,0,"""North America""" +2024-04-29,9033,1689,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4853.36,{},92799,0,"""Europe""" +2023-02-23,9034,8794,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1762.23,"{\""loyalty\"": \""22%\""}",268475,1,"""North America""" +2024-10-02,9035,4089,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2513.14,"{\"": \""5%\""}",101071,0,"""South America""" +2024-04-05,9036,3320,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3520.15,"{\""promo\"": \""6%\""}",25099,1,"""North America""" +2023-02-03,9037,1891,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1676.45,{},294236,1,"""Asia""" +2023-05-19,9038,741,"[\""Phone\"", \""Monitor\""]",963.65,{},214494,0,"""North America""" +2023-04-10,9039,6579,"[\""Keyboard\""]",4446.02,"{\""seasonal\"": \""28%\""}",106987,1,"""North America""" +2023-06-17,9040,8929,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1925.73,"{\""promo\"": \""18%\""}",101025,0,"""North America""" +2024-11-28,9041,3488,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3193.36,{},219260,1,"""North America""" +2024-12-10,9042,4517,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4735.1,{},188957,0,"""Africa""" +2024-03-05,9043,1454,"[\""Tablet\"", \""Monitor\""]",3224.56,{},231026,1,"""Europe""" +2024-10-09,9044,9115,"[\""Monitor\"", \""Phone\""]",1871.61,"{\""promo\"": \""30%\""}",265226,1,"""Africa""" +2024-11-29,9045,5829,"[\""Charger\""]",1832.06,{},31468,0,"""South America""" +2024-07-10,9046,427,"[\""Laptop\""]",563.98,"{\""loyalty\"": \""10%\""}",34381,1,"""Africa""" +2024-03-16,9047,8046,"[\""Charger\""]",2088.55,"{\"": \""12%\""}",102411,1,"""South America""" +2023-10-01,9048,3330,"[\""Phone\"", \""Tablet\""]",3105.67,"{\""promo\"": \""12%\""}",167420,0,"""Europe""" +2024-01-17,9049,5394,"[\""Wireless Mouse\"", \""Keyboard\""]",4161.82,"{\""promo\"": \""11%\""}",290348,0,"""Asia""" +2023-07-31,9050,5758,"[\""Laptop\"", \""Headphones\""]",1190.52,"{\"": \""19%\""}",205120,1,"""North America""" +2024-01-21,9051,4599,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1020.97,"{\""seasonal\"": \""18%\""}",232890,1,"""Africa""" +2023-04-04,9052,1178,"[\""Wireless Mouse\"", \""Tablet\""]",2643.82,"{\"": \""30%\""}",284817,1,"""South America""" +2024-04-16,9053,9813,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2670.77,"{\""loyalty\"": \""26%\""}",294020,1,"""Asia""" +2023-06-27,9054,975,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3715.04,"{\""seasonal\"": \""7%\""}",158443,1,"""South America""" +2023-03-22,9055,9710,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",779.05,"{\"": \""27%\""}",188028,1,"""North America""" +2024-01-08,9056,7608,"[\""Phone\"", \""Tablet\""]",3740.75,"{\""seasonal\"": \""15%\""}",103394,0,"""Europe""" +2023-10-23,9057,6307,"[\""Monitor\"", \""Phone\""]",4864.27,{},290981,0,"""Europe""" +2024-06-17,9058,8295,"[\""Phone\""]",65.5,"{\""loyalty\"": \""30%\""}",299424,1,"""North America""" +2023-06-08,9059,6465,"[\""Charger\""]",1911.72,"{\""loyalty\"": \""25%\""}",251384,0,"""Africa""" +2023-04-28,9060,7122,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1283.81,{},198055,0,"""South America""" +2024-02-11,9061,26,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2848.85,{},279394,0,"""South America""" +2023-11-21,9062,3430,"[\""Keyboard\"", \""Headphones\""]",127.79,{},118111,1,"""Africa""" +2023-05-28,9063,887,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1002.7,"{\""loyalty\"": \""29%\""}",22916,1,"""South America""" +2024-10-31,9064,6949,"[\""Phone\""]",4689.16,"{\""promo\"": \""22%\""}",49788,1,"""North America""" +2023-08-30,9065,2006,"[\""Keyboard\"", \""Monitor\""]",4421.5,{},253879,0,"""Africa""" +2024-02-13,9066,4595,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",325.58,"{\""seasonal\"": \""18%\""}",201827,1,"""South America""" +2024-08-16,9067,7021,"[\""Charger\""]",3280.29,"{\"": \""7%\""}",129137,0,"""South America""" +2023-10-20,9068,4794,"[\""Tablet\"", \""Wireless Mouse\""]",2479.4,"{\""loyalty\"": \""23%\""}",36030,0,"""Asia""" +2024-01-20,9069,3473,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",411.9,{},36155,0,"""Africa""" +2024-12-08,9070,5701,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3513.92,"{\"": \""17%\""}",196529,1,"""Asia""" +2024-08-21,9071,8440,"[\""Monitor\"", \""Laptop\""]",1013.05,{},207972,1,"""Asia""" +2024-11-17,9072,8116,"[\""Wireless Mouse\"", \""Monitor\""]",4845.22,{},84343,1,"""Europe""" +2024-06-12,9073,6804,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2199.56,{},31341,0,"""Africa""" +2024-03-07,9074,1970,"[\""Wireless Mouse\""]",332.89,{},39620,0,"""Africa""" +2023-01-13,9075,7268,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4968.2,"{\""loyalty\"": \""15%\""}",103972,1,"""Africa""" +2024-09-04,9076,4789,"[\""Headphones\"", \""Phone\""]",1114.22,"{\"": \""22%\""}",50475,0,"""North America""" +2023-04-06,9077,221,"[\""Charger\""]",1485.92,{},237515,1,"""Asia""" +2023-11-13,9078,6100,"[\""Laptop\"", \""Charger\""]",813.7,"{\"": \""19%\""}",239010,0,"""South America""" +2024-02-09,9079,9274,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2164.08,{},36491,0,"""North America""" +2024-05-26,9080,1837,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1817.14,{},91468,0,"""Africa""" +2024-02-29,9081,5084,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1260.23,{},14086,0,"""Europe""" +2023-08-15,9082,6817,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2218.73,"{\""loyalty\"": \""23%\""}",259385,1,"""South America""" +2024-10-03,9083,4587,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3321.95,{},189917,0,"""Europe""" +2024-07-15,9084,1057,"[\""Phone\"", \""Keyboard\""]",301.86,"{\""loyalty\"": \""11%\""}",278593,1,"""Africa""" +2023-10-09,9085,6064,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2177.12,"{\""promo\"": \""19%\""}",268724,1,"""Africa""" +2024-11-24,9086,9775,"[\""Phone\""]",1029.5,"{\""loyalty\"": \""11%\""}",191097,1,"""North America""" +2023-03-25,9087,6502,"[\""Headphones\"", \""Laptop\""]",669.77,{},89245,1,"""South America""" +2023-10-09,9088,2205,"[\""Charger\"", \""Tablet\""]",259.38,{},45748,0,"""North America""" +2023-11-20,9089,6395,"[\""Tablet\"", \""Headphones\""]",351.92,{},134143,1,"""South America""" +2024-06-23,9090,9198,"[\""Charger\"", \""Phone\""]",782.93,"{\""promo\"": \""27%\""}",280838,0,"""Asia""" +2023-09-08,9091,6768,"[\""Headphones\""]",4758.39,"{\"": \""18%\""}",135049,0,"""Europe""" +2023-04-15,9092,2386,"[\""Laptop\"", \""Wireless Mouse\""]",3789.25,"{\""seasonal\"": \""8%\""}",164871,1,"""South America""" +2023-05-03,9093,611,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2774.71,"{\""promo\"": \""8%\""}",213512,1,"""Europe""" +2024-03-01,9094,2061,"[\""Wireless Mouse\""]",4520.38,"{\""loyalty\"": \""8%\""}",149652,1,"""South America""" +2024-02-09,9095,4213,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1271.06,{},241839,1,"""Europe""" +2024-06-16,9096,1171,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1622.13,"{\"": \""20%\""}",273013,0,"""South America""" +2023-11-02,9097,8057,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",79.38,{},251968,0,"""Africa""" +2024-12-21,9098,5533,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2701.53,"{\""seasonal\"": \""11%\""}",224939,0,"""Asia""" +2023-11-13,9099,5954,"[\""Keyboard\""]",4860.17,{},161360,1,"""North America""" +2023-10-16,9100,5696,"[\""Headphones\"", \""Monitor\""]",1548.23,"{\""seasonal\"": \""23%\""}",149585,0,"""South America""" +2023-11-20,9101,4406,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2170.59,{},171084,0,"""Africa""" +2023-09-08,9102,3118,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2319.39,"{\""seasonal\"": \""15%\""}",283864,0,"""Asia""" +2024-08-06,9103,7185,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",476.47,"{\""loyalty\"": \""5%\""}",67598,0,"""South America""" +2024-07-28,9104,6069,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1328.59,"{\""seasonal\"": \""13%\""}",182811,0,"""South America""" +2023-10-15,9105,1386,"[\""Phone\"", \""Laptop\""]",3857.46,{},30387,0,"""North America""" +2023-11-21,9106,5904,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1199.99,{},147388,0,"""South America""" +2023-01-22,9107,7946,"[\""Tablet\""]",1166.79,{},124894,1,"""Africa""" +2024-07-10,9108,1309,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1878.69,"{\""seasonal\"": \""12%\""}",150768,0,"""Europe""" +2024-06-06,9109,1399,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4743.49,{},60195,0,"""Africa""" +2023-11-15,9110,8069,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2188.06,{},95434,1,"""South America""" +2023-09-14,9111,5681,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4418.95,"{\""promo\"": \""26%\""}",279132,1,"""Europe""" +2023-09-11,9112,6504,"[\""Monitor\"", \""Phone\""]",3378.76,"{\""loyalty\"": \""25%\""}",81783,1,"""North America""" +2024-06-03,9113,3974,"[\""Laptop\""]",1288.01,"{\""seasonal\"": \""22%\""}",285737,0,"""North America""" +2023-07-25,9114,7305,"[\""Tablet\""]",2756.16,"{\"": \""6%\""}",276798,0,"""Asia""" +2024-03-09,9115,8477,"[\""Laptop\"", \""Phone\""]",3454.53,{},24166,1,"""Asia""" +2023-09-03,9116,4273,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2773.78,{},14767,0,"""South America""" +2023-12-16,9117,6605,"[\""Wireless Mouse\"", \""Monitor\""]",4858.08,{},284296,1,"""North America""" +2024-07-18,9118,9467,"[\""Tablet\"", \""Headphones\""]",997.05,{},80653,0,"""South America""" +2024-06-20,9119,5822,"[\""Charger\"", \""Tablet\""]",760.58,"{\""seasonal\"": \""25%\""}",171381,0,"""Europe""" +2024-09-01,9120,8639,"[\""Laptop\"", \""Keyboard\""]",1149.79,"{\""promo\"": \""26%\""}",294357,1,"""North America""" +2024-07-22,9121,9005,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1153.25,{},49947,1,"""Asia""" +2024-07-22,9122,2545,"[\""Tablet\""]",1746.02,{},217609,1,"""Europe""" +2023-04-24,9123,3111,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1663.37,"{\""seasonal\"": \""11%\""}",46461,1,"""Europe""" +2023-04-06,9124,8474,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3385.94,"{\""promo\"": \""17%\""}",235590,1,"""Europe""" +2023-12-02,9125,5312,"[\""Tablet\"", \""Laptop\""]",612.45,"{\""loyalty\"": \""10%\""}",97082,0,"""Asia""" +2024-03-16,9126,4385,"[\""Charger\"", \""Headphones\""]",3548.05,{},10733,1,"""Europe""" +2024-08-14,9127,8532,"[\""Monitor\"", \""Headphones\""]",1746.29,{},251802,1,"""South America""" +2023-10-11,9128,8328,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2673.02,"{\""seasonal\"": \""15%\""}",32630,0,"""South America""" +2023-12-29,9129,9058,"[\""Keyboard\"", \""Wireless Mouse\""]",83.94,{},213105,0,"""North America""" +2023-09-09,9130,9787,"[\""Laptop\"", \""Tablet\""]",759.88,"{\""loyalty\"": \""25%\""}",254646,1,"""Africa""" +2023-03-11,9131,8861,"[\""Tablet\"", \""Laptop\""]",2289.12,"{\""seasonal\"": \""7%\""}",36862,0,"""South America""" +2023-02-10,9132,8946,"[\""Monitor\"", \""Headphones\""]",2795.89,"{\""loyalty\"": \""24%\""}",4307,1,"""Asia""" +2023-05-17,9133,8166,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4285.4,{},277308,1,"""Africa""" +2023-07-14,9134,2423,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3090.55,"{\""seasonal\"": \""29%\""}",53364,1,"""Africa""" +2024-10-24,9135,8361,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1309.58,"{\""seasonal\"": \""5%\""}",20425,1,"""Asia""" +2023-01-16,9136,9482,"[\""Headphones\""]",3714.32,{},255675,1,"""South America""" +2023-06-02,9137,6660,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1382.03,"{\""loyalty\"": \""7%\""}",35545,0,"""Europe""" +2023-12-22,9138,7218,"[\""Wireless Mouse\""]",466.44,"{\""seasonal\"": \""28%\""}",86041,1,"""Africa""" +2023-09-23,9139,4696,"[\""Headphones\""]",3974.11,{},45570,0,"""South America""" +2024-11-27,9140,2527,"[\""Phone\""]",4457.04,"{\""promo\"": \""30%\""}",225635,0,"""Africa""" +2023-10-01,9141,3672,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3151.38,"{\""loyalty\"": \""25%\""}",88999,1,"""Africa""" +2023-12-11,9142,2006,"[\""Headphones\"", \""Keyboard\""]",3627.26,{},151872,0,"""Africa""" +2024-01-01,9143,4265,"[\""Charger\""]",4942.61,{},140931,0,"""South America""" +2024-02-17,9144,6415,"[\""Keyboard\""]",4347.96,"{\""loyalty\"": \""6%\""}",9619,0,"""North America""" +2023-01-06,9145,1964,"[\""Keyboard\"", \""Tablet\""]",3321.18,"{\""seasonal\"": \""21%\""}",223324,1,"""South America""" +2024-07-19,9146,8802,"[\""Laptop\""]",2108.18,"{\""seasonal\"": \""17%\""}",120391,1,"""Asia""" +2024-10-22,9147,9727,"[\""Keyboard\"", \""Headphones\""]",4298.19,"{\""promo\"": \""21%\""}",98680,0,"""Asia""" +2024-01-03,9148,5402,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1246.04,"{\""loyalty\"": \""16%\""}",193271,0,"""Europe""" +2023-05-07,9149,171,"[\""Keyboard\""]",3389.42,{},233831,1,"""Europe""" +2023-07-24,9150,6441,"[\""Charger\""]",4301.16,"{\""seasonal\"": \""24%\""}",246036,0,"""North America""" +2024-05-13,9151,8862,"[\""Laptop\""]",4164.68,"{\""promo\"": \""29%\""}",202197,1,"""Asia""" +2024-08-05,9152,1492,"[\""Laptop\"", \""Wireless Mouse\""]",4952.14,"{\""loyalty\"": \""29%\""}",274251,1,"""Europe""" +2024-06-27,9153,6030,"[\""Phone\""]",1130.61,{},148944,1,"""South America""" +2024-09-05,9154,5759,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3166.43,{},26269,0,"""North America""" +2024-02-26,9155,2375,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1139.62,{},167808,1,"""Africa""" +2024-06-12,9156,9065,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2998.5,"{\"": \""9%\""}",48590,1,"""Africa""" +2024-11-11,9157,6506,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3624.25,{},253624,1,"""South America""" +2023-01-05,9158,296,"[\""Headphones\""]",548.45,{},147355,1,"""Africa""" +2024-09-23,9159,8786,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2912.55,{},193197,0,"""North America""" +2024-02-23,9160,2059,"[\""Wireless Mouse\"", \""Laptop\""]",4337.97,{},193635,1,"""Asia""" +2023-03-03,9161,202,"[\""Wireless Mouse\""]",1315.49,{},248027,1,"""Asia""" +2023-01-24,9162,6345,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4004.29,"{\""seasonal\"": \""14%\""}",13517,0,"""Asia""" +2024-08-31,9163,134,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1194.08,"{\"": \""27%\""}",53663,0,"""North America""" +2023-09-22,9164,958,"[\""Laptop\"", \""Wireless Mouse\""]",1866.42,{},75630,1,"""South America""" +2024-11-28,9165,1338,"[\""Wireless Mouse\""]",3921.54,"{\""loyalty\"": \""21%\""}",187728,1,"""Europe""" +2024-01-18,9166,8912,"[\""Headphones\"", \""Wireless Mouse\""]",4463.41,"{\""promo\"": \""17%\""}",68976,1,"""North America""" +2024-10-26,9167,7015,"[\""Keyboard\""]",3890.22,{},243869,0,"""North America""" +2023-06-14,9168,4867,"[\""Tablet\""]",2429.3,{},119419,1,"""Asia""" +2024-04-24,9169,4592,"[\""Keyboard\""]",4384.87,"{\""loyalty\"": \""12%\""}",67242,0,"""North America""" +2024-11-20,9170,9902,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",71.24,{},155210,1,"""Africa""" +2024-04-25,9171,9981,"[\""Charger\""]",713.9,{},51220,1,"""Africa""" +2023-06-26,9172,8753,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",64.42,{},223203,0,"""Asia""" +2024-07-22,9173,9993,"[\""Monitor\""]",2730.81,{},203526,1,"""Africa""" +2023-04-15,9174,3147,"[\""Tablet\"", \""Keyboard\""]",2179.02,{},53216,1,"""Asia""" +2024-11-06,9175,6600,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3441.79,"{\""promo\"": \""26%\""}",279483,1,"""Europe""" +2024-01-30,9176,3053,"[\""Keyboard\"", \""Tablet\""]",3397.48,"{\""promo\"": \""13%\""}",1800,1,"""South America""" +2023-12-16,9177,5617,"[\""Monitor\"", \""Wireless Mouse\""]",1247.37,"{\"": \""15%\""}",224862,0,"""Europe""" +2024-07-30,9178,3708,"[\""Phone\""]",2799.12,"{\""seasonal\"": \""14%\""}",97512,0,"""Africa""" +2023-01-30,9179,9223,"[\""Charger\""]",856.81,{},25125,0,"""Asia""" +2024-10-02,9180,3809,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",890.49,{},98442,0,"""Asia""" +2024-04-11,9181,71,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4391.34,"{\""seasonal\"": \""7%\""}",141144,1,"""Europe""" +2024-07-06,9182,1996,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",106.4,{},157478,0,"""North America""" +2023-04-24,9183,5796,"[\""Wireless Mouse\""]",4773.45,{},106151,0,"""North America""" +2023-01-17,9184,5165,"[\""Phone\"", \""Tablet\""]",4927.56,"{\""promo\"": \""11%\""}",205762,1,"""Africa""" +2023-05-09,9185,8236,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3331.28,{},151695,1,"""Europe""" +2023-06-30,9186,2943,"[\""Headphones\""]",2803.89,{},22873,1,"""Africa""" +2024-11-09,9187,8171,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3804.96,"{\""promo\"": \""13%\""}",43353,1,"""Asia""" +2023-09-11,9188,9030,"[\""Wireless Mouse\""]",3196.24,{},249146,1,"""Europe""" +2023-02-12,9189,2392,"[\""Phone\""]",4335.52,{},43729,0,"""Africa""" +2024-02-17,9190,1155,"[\""Laptop\"", \""Keyboard\""]",587.75,{},246682,0,"""South America""" +2024-01-28,9191,7267,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3200.99,"{\""loyalty\"": \""21%\""}",94278,0,"""Europe""" +2023-01-10,9192,1172,"[\""Headphones\""]",484.49,{},260186,1,"""Africa""" +2024-04-05,9193,9703,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2909.86,{},203261,0,"""Africa""" +2024-06-30,9194,7046,"[\""Wireless Mouse\""]",462.82,"{\""promo\"": \""10%\""}",61919,1,"""Africa""" +2023-02-01,9195,3059,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2364.27,{},224784,0,"""North America""" +2024-08-09,9196,5522,"[\""Laptop\"", \""Wireless Mouse\""]",2430.71,{},10292,0,"""Europe""" +2023-05-24,9197,4960,"[\""Laptop\""]",263.98,{},79361,0,"""Africa""" +2024-03-09,9198,1494,"[\""Laptop\"", \""Phone\""]",2641.92,"{\""loyalty\"": \""27%\""}",246723,0,"""Africa""" +2024-03-15,9199,9260,"[\""Headphones\"", \""Phone\""]",740.36,"{\"": \""6%\""}",166071,1,"""Asia""" +2023-06-19,9200,3789,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1908.0,"{\""promo\"": \""19%\""}",67750,0,"""Asia""" +2023-12-17,9201,1392,"[\""Keyboard\"", \""Laptop\""]",2222.85,{},41239,1,"""North America""" +2024-07-15,9202,8358,"[\""Monitor\""]",965.07,"{\""seasonal\"": \""5%\""}",90195,0,"""Europe""" +2023-05-07,9203,7741,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4220.41,"{\"": \""29%\""}",131965,1,"""Europe""" +2023-03-22,9204,5610,"[\""Monitor\"", \""Tablet\""]",3371.16,"{\""loyalty\"": \""5%\""}",94160,1,"""Europe""" +2024-02-11,9205,3656,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1624.69,{},283702,1,"""Africa""" +2024-09-02,9206,9968,"[\""Laptop\""]",3495.03,{},101859,1,"""Europe""" +2024-07-01,9207,5183,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2938.87,"{\""seasonal\"": \""11%\""}",283728,0,"""South America""" +2023-04-24,9208,7280,"[\""Laptop\""]",2160.18,{},246803,0,"""South America""" +2024-07-01,9209,2985,"[\""Charger\"", \""Tablet\""]",1636.42,{},291250,1,"""South America""" +2023-07-22,9210,1524,"[\""Keyboard\"", \""Phone\""]",512.57,"{\""promo\"": \""13%\""}",32332,0,"""North America""" +2024-11-12,9211,5840,"[\""Tablet\"", \""Charger\""]",3495.37,{},223425,0,"""South America""" +2023-11-11,9212,1677,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4715.66,{},140629,0,"""North America""" +2024-06-10,9213,7211,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4669.52,"{\"": \""27%\""}",13840,0,"""Asia""" +2024-09-28,9214,940,"[\""Keyboard\"", \""Wireless Mouse\""]",3154.25,"{\""seasonal\"": \""9%\""}",267203,1,"""Africa""" +2024-10-06,9215,6037,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1067.6,{},198577,0,"""Asia""" +2024-07-21,9216,5827,"[\""Monitor\"", \""Phone\""]",3289.69,"{\""promo\"": \""12%\""}",280726,0,"""South America""" +2023-05-29,9217,7138,"[\""Laptop\""]",2677.0,"{\""seasonal\"": \""24%\""}",161018,0,"""Europe""" +2024-08-27,9218,7061,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1916.5,"{\"": \""16%\""}",115330,1,"""Africa""" +2023-02-28,9219,830,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3534.47,"{\"": \""27%\""}",123906,0,"""South America""" +2024-09-29,9220,6698,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3905.87,{},56600,1,"""North America""" +2024-02-24,9221,3892,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",721.84,{},26656,0,"""South America""" +2024-11-27,9222,9451,"[\""Tablet\""]",370.46,{},68174,1,"""Europe""" +2023-11-01,9223,9953,"[\""Phone\""]",1435.3,"{\"": \""24%\""}",179292,0,"""North America""" +2023-08-07,9224,3677,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2059.56,{},143701,0,"""North America""" +2023-08-01,9225,2849,"[\""Monitor\"", \""Keyboard\""]",2073.25,"{\""loyalty\"": \""30%\""}",225264,1,"""Asia""" +2024-05-16,9226,7322,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4945.7,{},179529,1,"""North America""" +2024-12-01,9227,6096,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",464.44,"{\"": \""5%\""}",147017,0,"""North America""" +2024-09-02,9228,8211,"[\""Headphones\"", \""Laptop\""]",3996.98,"{\"": \""26%\""}",125988,0,"""Asia""" +2023-05-23,9229,8345,"[\""Laptop\""]",2137.01,"{\""promo\"": \""12%\""}",103608,1,"""Africa""" +2024-03-18,9230,2974,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",297.67,{},295381,1,"""Europe""" +2023-12-25,9231,3028,"[\""Keyboard\"", \""Wireless Mouse\""]",1485.78,"{\"": \""18%\""}",293514,0,"""South America""" +2024-07-20,9232,2469,"[\""Tablet\"", \""Laptop\""]",1308.14,"{\""loyalty\"": \""18%\""}",197353,1,"""North America""" +2023-06-15,9233,1545,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",737.33,"{\""promo\"": \""12%\""}",85359,1,"""North America""" +2024-04-23,9234,5340,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1119.95,"{\""promo\"": \""16%\""}",125279,1,"""Europe""" +2024-04-10,9235,9551,"[\""Wireless Mouse\"", \""Tablet\""]",1934.59,"{\"": \""24%\""}",67131,0,"""North America""" +2023-11-08,9236,4399,"[\""Keyboard\"", \""Tablet\""]",378.79,"{\""promo\"": \""21%\""}",183833,0,"""Africa""" +2024-05-20,9237,4327,"[\""Headphones\""]",1998.45,{},191580,0,"""South America""" +2023-06-28,9238,5189,"[\""Phone\""]",1549.82,"{\""seasonal\"": \""27%\""}",54165,1,"""Asia""" +2023-03-20,9239,2245,"[\""Charger\"", \""Phone\""]",1786.32,"{\""loyalty\"": \""15%\""}",80970,0,"""Asia""" +2024-05-01,9240,1110,"[\""Wireless Mouse\"", \""Laptop\""]",4935.58,"{\""loyalty\"": \""24%\""}",269331,0,"""North America""" +2023-08-04,9241,1268,"[\""Monitor\""]",4580.0,{},75116,0,"""Asia""" +2023-03-28,9242,6444,"[\""Tablet\"", \""Phone\""]",1073.04,{},282154,0,"""South America""" +2023-05-12,9243,8527,"[\""Tablet\"", \""Laptop\""]",1331.44,"{\""promo\"": \""30%\""}",47295,0,"""North America""" +2023-09-13,9244,4593,"[\""Keyboard\"", \""Laptop\""]",2671.88,"{\"": \""13%\""}",38878,0,"""Europe""" +2023-02-18,9245,1895,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3620.52,"{\""seasonal\"": \""6%\""}",265905,0,"""Asia""" +2023-07-22,9246,1845,"[\""Headphones\"", \""Monitor\""]",3160.8,"{\""promo\"": \""29%\""}",36333,1,"""Africa""" +2023-10-09,9247,643,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",639.43,"{\""seasonal\"": \""11%\""}",299424,0,"""Europe""" +2024-01-06,9248,5423,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4821.54,{},110157,1,"""Africa""" +2023-12-19,9249,1406,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3416.69,{},143535,1,"""Africa""" +2023-10-04,9250,6702,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2597.04,"{\""seasonal\"": \""22%\""}",178852,1,"""Europe""" +2023-10-07,9251,4219,"[\""Phone\"", \""Keyboard\""]",367.68,"{\""loyalty\"": \""29%\""}",45950,1,"""Europe""" +2024-06-13,9252,1346,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3887.77,{},232729,0,"""North America""" +2023-03-10,9253,1244,"[\""Keyboard\""]",857.02,"{\""seasonal\"": \""7%\""}",142285,1,"""North America""" +2024-04-04,9254,9144,"[\""Tablet\"", \""Keyboard\""]",4121.08,{},25971,1,"""North America""" +2023-04-12,9255,8192,"[\""Headphones\"", \""Phone\""]",3917.66,"{\""promo\"": \""19%\""}",244340,0,"""North America""" +2024-02-10,9256,6049,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3408.1,{},8775,0,"""North America""" +2023-01-29,9257,2153,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1988.37,"{\""loyalty\"": \""30%\""}",201263,0,"""Asia""" +2023-08-30,9258,8511,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",218.52,{},87753,0,"""North America""" +2024-10-02,9259,1542,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2191.52,{},241520,1,"""Europe""" +2023-03-05,9260,7600,"[\""Laptop\"", \""Tablet\""]",2221.01,{},52959,1,"""Europe""" +2023-11-01,9261,7470,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",772.14,{},77177,0,"""Asia""" +2023-11-09,9262,8712,"[\""Keyboard\"", \""Headphones\""]",234.49,"{\"": \""18%\""}",26164,0,"""Africa""" +2023-02-10,9263,3757,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1491.59,{},29761,1,"""Africa""" +2024-09-30,9264,1420,"[\""Laptop\"", \""Keyboard\""]",4844.43,"{\"": \""21%\""}",251214,1,"""South America""" +2024-08-04,9265,2226,"[\""Monitor\""]",4687.26,"{\""loyalty\"": \""29%\""}",76226,1,"""Europe""" +2024-09-12,9266,2103,"[\""Monitor\""]",147.19,"{\"": \""18%\""}",60123,1,"""Europe""" +2023-01-06,9267,538,"[\""Keyboard\"", \""Laptop\""]",4925.36,"{\""seasonal\"": \""14%\""}",197217,0,"""Europe""" +2023-04-24,9268,320,"[\""Laptop\"", \""Monitor\""]",3616.23,"{\"": \""11%\""}",84168,0,"""South America""" +2023-02-25,9269,3671,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4123.49,{},167137,0,"""Europe""" +2023-09-24,9270,9009,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4633.34,"{\""promo\"": \""27%\""}",107016,0,"""South America""" +2023-05-27,9271,3771,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4347.45,"{\""seasonal\"": \""20%\""}",48080,0,"""Asia""" +2023-11-09,9272,7245,"[\""Headphones\"", \""Laptop\""]",191.36,{},153832,0,"""North America""" +2024-02-18,9273,1009,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2122.92,"{\""promo\"": \""20%\""}",29523,0,"""Europe""" +2024-03-06,9274,2734,"[\""Tablet\""]",4044.56,"{\"": \""28%\""}",33738,0,"""South America""" +2024-09-17,9275,7670,"[\""Keyboard\""]",4233.03,"{\"": \""9%\""}",232098,0,"""Asia""" +2023-03-17,9276,1995,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4244.21,"{\"": \""30%\""}",104759,0,"""Africa""" +2024-08-11,9277,9579,"[\""Phone\"", \""Headphones\""]",4076.92,"{\""loyalty\"": \""9%\""}",118538,0,"""Asia""" +2024-01-31,9278,7842,"[\""Keyboard\""]",2289.42,{},40525,1,"""South America""" +2023-10-14,9279,9876,"[\""Monitor\""]",208.91,"{\""seasonal\"": \""9%\""}",122615,1,"""Europe""" +2023-10-06,9280,9678,"[\""Tablet\""]",2851.74,{},134671,1,"""Europe""" +2024-06-09,9281,3099,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1041.56,"{\""seasonal\"": \""8%\""}",118224,1,"""Asia""" +2023-01-01,9282,8971,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1704.3,"{\"": \""5%\""}",274030,0,"""Asia""" +2023-03-08,9283,4120,"[\""Phone\""]",195.17,{},11217,1,"""Africa""" +2023-04-03,9284,4115,"[\""Keyboard\""]",4914.94,"{\"": \""27%\""}",82932,1,"""South America""" +2024-01-30,9285,8762,"[\""Monitor\""]",3042.23,{},140496,0,"""Asia""" +2023-08-27,9286,8287,"[\""Monitor\""]",2665.26,"{\""seasonal\"": \""22%\""}",251600,0,"""Africa""" +2024-09-12,9287,9321,"[\""Laptop\""]",2453.03,"{\"": \""6%\""}",77197,1,"""South America""" +2024-09-29,9288,5100,"[\""Laptop\"", \""Keyboard\""]",113.67,"{\"": \""21%\""}",64809,0,"""South America""" +2024-03-28,9289,5333,"[\""Keyboard\""]",2583.21,"{\""promo\"": \""29%\""}",293911,1,"""South America""" +2024-02-07,9290,4847,"[\""Laptop\""]",2051.08,"{\""loyalty\"": \""11%\""}",39008,1,"""North America""" +2023-05-16,9291,5659,"[\""Monitor\""]",223.03,"{\""seasonal\"": \""15%\""}",43953,0,"""Europe""" +2024-05-10,9292,2809,"[\""Charger\""]",1959.12,"{\""loyalty\"": \""13%\""}",34296,0,"""South America""" +2023-01-22,9293,6103,"[\""Wireless Mouse\""]",583.78,"{\"": \""7%\""}",91571,1,"""Africa""" +2024-04-08,9294,2538,"[\""Wireless Mouse\"", \""Monitor\""]",1217.73,"{\""loyalty\"": \""25%\""}",56247,0,"""South America""" +2023-05-28,9295,5928,"[\""Headphones\""]",4753.46,{},237728,0,"""Asia""" +2023-02-15,9296,2496,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",516.17,"{\"": \""21%\""}",210080,0,"""Asia""" +2023-09-27,9297,61,"[\""Charger\"", \""Keyboard\""]",689.53,"{\""loyalty\"": \""18%\""}",182506,1,"""Europe""" +2023-02-01,9298,1163,"[\""Monitor\"", \""Laptop\""]",2425.01,"{\""loyalty\"": \""18%\""}",113675,0,"""Asia""" +2023-02-11,9299,2829,"[\""Phone\"", \""Laptop\""]",2690.33,"{\""promo\"": \""11%\""}",230475,0,"""South America""" +2024-04-30,9300,2758,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4892.68,{},147688,1,"""South America""" +2024-05-06,9301,9860,"[\""Wireless Mouse\""]",609.21,"{\""loyalty\"": \""16%\""}",28693,1,"""Asia""" +2024-03-23,9302,1713,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2425.24,{},106393,0,"""Asia""" +2023-05-20,9303,7304,"[\""Monitor\""]",2022.83,{},159489,1,"""North America""" +2023-10-13,9304,6268,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4242.05,{},7815,0,"""North America""" +2023-07-31,9305,830,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3894.26,"{\""loyalty\"": \""10%\""}",237412,1,"""Asia""" +2024-05-01,9306,3603,"[\""Wireless Mouse\"", \""Headphones\""]",1010.43,"{\""promo\"": \""5%\""}",119276,0,"""North America""" +2024-07-24,9307,2143,"[\""Keyboard\""]",3581.57,"{\""loyalty\"": \""17%\""}",282711,1,"""Europe""" +2024-09-07,9308,245,"[\""Wireless Mouse\"", \""Headphones\""]",2933.89,"{\""promo\"": \""16%\""}",120995,0,"""South America""" +2024-03-16,9309,1538,"[\""Monitor\""]",2189.2,{},129372,1,"""Europe""" +2024-10-07,9310,719,"[\""Charger\"", \""Phone\""]",2592.75,{},251214,1,"""Europe""" +2023-04-06,9311,7804,"[\""Charger\"", \""Wireless Mouse\""]",3448.85,{},93498,0,"""North America""" +2023-08-11,9312,6603,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3202.49,{},79442,0,"""Africa""" +2023-03-16,9313,352,"[\""Headphones\""]",1252.35,{},142712,1,"""Asia""" +2023-04-14,9314,983,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4747.18,"{\""seasonal\"": \""17%\""}",112941,0,"""Asia""" +2023-01-23,9315,7921,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",283.58,{},70645,1,"""South America""" +2023-12-20,9316,7847,"[\""Laptop\""]",3982.67,"{\"": \""28%\""}",210910,1,"""Europe""" +2023-07-22,9317,5808,"[\""Monitor\""]",845.88,"{\"": \""9%\""}",281412,0,"""North America""" +2023-02-17,9318,70,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2326.33,"{\""loyalty\"": \""21%\""}",15049,1,"""North America""" +2024-08-26,9319,2486,"[\""Tablet\""]",1275.5,"{\""seasonal\"": \""7%\""}",251027,0,"""Asia""" +2023-10-21,9320,3997,"[\""Charger\"", \""Tablet\""]",4335.83,"{\""promo\"": \""12%\""}",152745,1,"""Europe""" +2023-08-13,9321,8133,"[\""Phone\"", \""Keyboard\""]",121.79,{},138966,1,"""Europe""" +2023-03-19,9322,3102,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",279.38,"{\"": \""15%\""}",226829,1,"""North America""" +2024-05-05,9323,1632,"[\""Tablet\"", \""Laptop\""]",3065.97,"{\""promo\"": \""29%\""}",45973,1,"""Africa""" +2023-10-25,9324,348,"[\""Laptop\""]",3174.97,{},114617,1,"""Asia""" +2024-08-14,9325,8919,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",83.76,"{\""loyalty\"": \""28%\""}",115379,0,"""Africa""" +2024-10-21,9326,2415,"[\""Phone\""]",4989.75,"{\""promo\"": \""30%\""}",274194,1,"""South America""" +2024-11-10,9327,8154,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",745.3,{},261709,0,"""Africa""" +2023-08-28,9328,3768,"[\""Headphones\""]",771.14,{},243475,1,"""South America""" +2024-02-19,9329,230,"[\""Charger\""]",3099.78,"{\"": \""19%\""}",297057,1,"""Europe""" +2024-01-26,9330,2185,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4895.96,{},221291,1,"""South America""" +2023-06-24,9331,1091,"[\""Keyboard\""]",4517.43,"{\""promo\"": \""29%\""}",239811,0,"""North America""" +2024-06-18,9332,4082,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1727.15,{},139572,1,"""Africa""" +2024-07-28,9333,7303,"[\""Keyboard\""]",168.73,"{\""loyalty\"": \""17%\""}",277127,0,"""Europe""" +2024-07-14,9334,3628,"[\""Tablet\""]",1920.26,{},279257,1,"""Europe""" +2024-10-17,9335,3080,"[\""Phone\"", \""Wireless Mouse\""]",3051.58,"{\""seasonal\"": \""13%\""}",134966,1,"""North America""" +2024-11-09,9336,5491,"[\""Headphones\""]",273.4,{},215560,1,"""North America""" +2024-07-22,9337,1650,"[\""Tablet\""]",167.57,{},163177,1,"""South America""" +2023-01-25,9338,4668,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",896.88,{},207042,0,"""South America""" +2023-07-01,9339,4916,"[\""Monitor\""]",1398.8,{},35111,1,"""South America""" +2023-02-09,9340,5642,"[\""Tablet\"", \""Monitor\""]",509.14,{},210416,0,"""North America""" +2023-09-05,9341,2666,"[\""Headphones\""]",4009.59,{},76470,1,"""South America""" +2024-12-06,9342,7747,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1943.53,{},18241,0,"""North America""" +2023-07-03,9343,3416,"[\""Phone\""]",4419.74,"{\""promo\"": \""16%\""}",86345,1,"""North America""" +2024-04-12,9344,6644,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3137.43,{},127880,0,"""South America""" +2023-04-08,9345,4071,"[\""Tablet\""]",4465.36,"{\""seasonal\"": \""7%\""}",296930,1,"""Asia""" +2023-06-14,9346,6356,"[\""Charger\""]",4165.18,{},156550,0,"""South America""" +2023-10-13,9347,3166,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4951.85,{},7678,1,"""North America""" +2023-09-17,9348,1929,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4470.86,"{\""loyalty\"": \""19%\""}",76696,1,"""South America""" +2024-11-23,9349,3912,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3128.13,{},179789,0,"""North America""" +2023-02-21,9350,2578,"[\""Monitor\""]",1425.73,{},178176,1,"""Europe""" +2024-12-05,9351,4687,"[\""Charger\"", \""Wireless Mouse\""]",2545.66,{},246832,0,"""South America""" +2024-06-22,9352,8550,"[\""Keyboard\""]",2807.01,{},27383,0,"""Africa""" +2023-06-03,9353,4748,"[\""Keyboard\"", \""Phone\""]",3319.01,{},124688,1,"""Africa""" +2024-03-30,9354,1460,"[\""Monitor\""]",4951.81,"{\""loyalty\"": \""25%\""}",60389,1,"""Europe""" +2024-03-12,9355,2983,"[\""Headphones\"", \""Monitor\""]",2856.73,"{\""promo\"": \""14%\""}",194261,0,"""Africa""" +2024-06-09,9356,9602,"[\""Headphones\""]",1295.88,"{\"": \""30%\""}",157827,1,"""North America""" +2023-04-25,9357,2257,"[\""Phone\""]",2101.99,"{\""promo\"": \""14%\""}",45450,0,"""Europe""" +2023-10-02,9358,5699,"[\""Monitor\"", \""Headphones\""]",3630.6,{},282349,1,"""Asia""" +2024-07-24,9359,5769,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3356.62,{},101048,1,"""Asia""" +2023-12-26,9360,6848,"[\""Laptop\"", \""Charger\""]",1771.15,{},36452,1,"""Europe""" +2023-11-08,9361,8381,"[\""Keyboard\"", \""Headphones\""]",4159.2,{},121042,0,"""North America""" +2024-04-05,9362,9813,"[\""Headphones\""]",2638.86,"{\""seasonal\"": \""12%\""}",53757,0,"""Europe""" +2024-05-03,9363,9491,"[\""Phone\""]",1222.5,"{\""seasonal\"": \""12%\""}",117247,1,"""North America""" +2024-12-13,9364,360,"[\""Wireless Mouse\""]",4659.47,"{\""promo\"": \""20%\""}",239988,0,"""Europe""" +2024-05-18,9365,5150,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3594.18,"{\"": \""7%\""}",32159,0,"""Africa""" +2024-01-17,9366,1982,"[\""Headphones\""]",1019.44,{},159532,1,"""Africa""" +2024-08-04,9367,1621,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",504.98,{},37181,0,"""South America""" +2024-12-06,9368,7930,"[\""Laptop\""]",2082.34,"{\"": \""28%\""}",79383,1,"""Asia""" +2023-10-03,9369,193,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3963.23,"{\""promo\"": \""22%\""}",298128,0,"""Europe""" +2023-03-11,9370,7240,"[\""Phone\"", \""Monitor\""]",2004.38,{},112447,1,"""South America""" +2024-03-26,9371,1555,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4242.8,{},220925,1,"""Europe""" +2023-11-19,9372,9843,"[\""Monitor\""]",4699.94,"{\""loyalty\"": \""26%\""}",94174,1,"""Africa""" +2023-11-15,9373,2627,"[\""Laptop\"", \""Charger\""]",4238.13,"{\""loyalty\"": \""20%\""}",277082,0,"""North America""" +2024-03-23,9374,5763,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",709.6,"{\"": \""6%\""}",114566,0,"""Europe""" +2024-03-01,9375,5285,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2254.06,{},189626,0,"""North America""" +2024-02-22,9376,709,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1495.87,"{\""seasonal\"": \""14%\""}",194390,1,"""Europe""" +2023-03-20,9377,7553,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3251.47,{},229668,0,"""North America""" +2023-03-28,9378,4650,"[\""Phone\""]",759.94,{},152553,1,"""Asia""" +2024-03-02,9379,5283,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1930.62,"{\""promo\"": \""26%\""}",240941,1,"""Africa""" +2023-01-30,9380,9825,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2847.43,{},78434,1,"""North America""" +2024-01-06,9381,7756,"[\""Tablet\""]",405.99,"{\""loyalty\"": \""11%\""}",267554,1,"""Africa""" +2023-05-26,9382,5233,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2928.15,"{\""seasonal\"": \""16%\""}",245680,0,"""Africa""" +2024-03-15,9383,5927,"[\""Laptop\""]",4873.69,{},239937,1,"""South America""" +2024-03-13,9384,7463,"[\""Laptop\"", \""Headphones\""]",4288.79,{},23068,0,"""Europe""" +2023-01-06,9385,5566,"[\""Wireless Mouse\"", \""Headphones\""]",1634.6,"{\""seasonal\"": \""27%\""}",273914,1,"""Asia""" +2023-04-28,9386,2659,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",144.47,{},46663,0,"""South America""" +2024-10-18,9387,4608,"[\""Keyboard\""]",2704.8,"{\""promo\"": \""15%\""}",79023,0,"""South America""" +2024-06-14,9388,679,"[\""Laptop\""]",2653.18,{},35617,0,"""Africa""" +2024-01-29,9389,1473,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2463.72,"{\""promo\"": \""16%\""}",242431,1,"""North America""" +2023-01-09,9390,3816,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3494.97,"{\""promo\"": \""10%\""}",203255,1,"""Africa""" +2024-02-20,9391,236,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4960.57,{},153459,1,"""Europe""" +2023-06-14,9392,1927,"[\""Wireless Mouse\""]",4999.52,"{\"": \""8%\""}",242257,0,"""South America""" +2023-05-19,9393,9218,"[\""Tablet\""]",3547.19,"{\"": \""14%\""}",233633,0,"""North America""" +2024-03-13,9394,5337,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3546.37,{},229192,1,"""Africa""" +2023-07-10,9395,4995,"[\""Charger\""]",1632.62,{},129013,1,"""Asia""" +2024-09-19,9396,326,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3643.55,{},174017,0,"""Africa""" +2023-04-01,9397,4600,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3193.82,{},34657,0,"""South America""" +2024-04-21,9398,283,"[\""Monitor\"", \""Tablet\""]",2041.15,{},82300,0,"""Africa""" +2024-10-19,9399,3926,"[\""Tablet\""]",1367.26,"{\""seasonal\"": \""19%\""}",257462,0,"""North America""" +2024-08-11,9400,3542,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3588.18,"{\"": \""30%\""}",171260,0,"""Asia""" +2023-02-01,9401,3330,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2617.59,"{\""loyalty\"": \""5%\""}",276784,1,"""Europe""" +2023-12-05,9402,5318,"[\""Monitor\"", \""Tablet\""]",592.56,"{\""promo\"": \""6%\""}",96713,0,"""South America""" +2024-07-05,9403,3782,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4260.78,{},11756,1,"""Europe""" +2024-07-28,9404,5887,"[\""Headphones\"", \""Wireless Mouse\""]",2736.33,"{\""promo\"": \""9%\""}",253047,1,"""Asia""" +2024-06-24,9405,9118,"[\""Wireless Mouse\"", \""Laptop\""]",2233.73,"{\""loyalty\"": \""15%\""}",90945,1,"""North America""" +2024-02-15,9406,7214,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2223.21,"{\"": \""13%\""}",19385,1,"""Africa""" +2024-03-10,9407,3392,"[\""Phone\"", \""Headphones\""]",667.77,"{\""seasonal\"": \""13%\""}",61701,1,"""South America""" +2024-01-11,9408,7083,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1946.62,"{\""loyalty\"": \""15%\""}",166162,0,"""Africa""" +2023-12-03,9409,6733,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2661.84,"{\""loyalty\"": \""14%\""}",23240,1,"""North America""" +2024-07-06,9410,2556,"[\""Phone\""]",1469.68,{},213697,0,"""Africa""" +2023-11-26,9411,917,"[\""Tablet\"", \""Wireless Mouse\""]",1149.82,"{\"": \""26%\""}",12426,0,"""Europe""" +2023-01-20,9412,1668,"[\""Phone\""]",1445.81,{},151178,0,"""Europe""" +2024-07-06,9413,8109,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1693.36,"{\""loyalty\"": \""24%\""}",267058,1,"""Asia""" +2023-08-16,9414,1537,"[\""Monitor\""]",1621.95,{},174600,0,"""South America""" +2023-05-14,9415,2947,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",985.5,{},137551,0,"""Europe""" +2024-07-02,9416,9323,"[\""Tablet\"", \""Wireless Mouse\""]",4668.34,{},138198,0,"""North America""" +2023-12-20,9417,103,"[\""Wireless Mouse\"", \""Headphones\""]",1414.3,{},121448,1,"""South America""" +2023-10-01,9418,3102,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3052.31,"{\""loyalty\"": \""23%\""}",50075,0,"""Africa""" +2023-10-23,9419,6720,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1298.89,{},33525,1,"""Europe""" +2023-12-31,9420,596,"[\""Monitor\"", \""Tablet\""]",3521.54,{},78896,1,"""Africa""" +2023-07-15,9421,5957,"[\""Phone\""]",4825.17,{},73315,0,"""North America""" +2023-06-29,9422,3178,"[\""Charger\""]",676.83,"{\""seasonal\"": \""12%\""}",252712,1,"""Africa""" +2023-07-09,9423,2365,"[\""Wireless Mouse\""]",4984.2,{},135504,1,"""Asia""" +2024-10-20,9424,2798,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",521.45,"{\""promo\"": \""29%\""}",79260,1,"""Europe""" +2023-08-03,9425,7381,"[\""Laptop\""]",4609.23,"{\"": \""7%\""}",41993,0,"""Asia""" +2024-03-14,9426,7235,"[\""Phone\"", \""Laptop\""]",514.12,{},187971,0,"""Africa""" +2024-01-27,9427,2380,"[\""Phone\""]",1461.13,"{\""loyalty\"": \""7%\""}",72928,0,"""Europe""" +2023-11-29,9428,7923,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4317.1,"{\""loyalty\"": \""20%\""}",246545,1,"""South America""" +2023-07-03,9429,3583,"[\""Laptop\""]",2756.59,{},1324,1,"""Africa""" +2024-10-10,9430,8626,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1478.8,"{\""seasonal\"": \""16%\""}",38140,1,"""North America""" +2024-01-07,9431,188,"[\""Tablet\""]",4817.98,{},51079,1,"""Europe""" +2023-12-11,9432,3267,"[\""Wireless Mouse\"", \""Tablet\""]",4344.46,{},61990,1,"""North America""" +2023-06-29,9433,1156,"[\""Keyboard\"", \""Laptop\""]",3762.68,{},208212,1,"""North America""" +2023-12-01,9434,947,"[\""Charger\""]",1827.27,"{\"": \""12%\""}",168007,1,"""Europe""" +2023-09-30,9435,1391,"[\""Keyboard\"", \""Monitor\""]",1786.27,{},194827,1,"""Asia""" +2024-12-08,9436,2400,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3985.37,"{\""seasonal\"": \""6%\""}",106402,1,"""Africa""" +2024-12-28,9437,9572,"[\""Charger\"", \""Monitor\""]",4185.62,"{\"": \""15%\""}",135724,1,"""Asia""" +2024-06-18,9438,6642,"[\""Charger\"", \""Headphones\""]",4210.35,{},190619,0,"""Africa""" +2023-06-06,9439,828,"[\""Charger\"", \""Tablet\""]",2611.97,{},130751,0,"""Europe""" +2023-07-05,9440,7573,"[\""Headphones\"", \""Phone\""]",2336.08,"{\""promo\"": \""21%\""}",98370,1,"""Africa""" +2023-06-01,9441,7700,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3614.35,{},218254,0,"""South America""" +2023-07-13,9442,8122,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3209.43,{},292634,1,"""Asia""" +2023-09-18,9443,1702,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2430.12,"{\""loyalty\"": \""25%\""}",138418,0,"""Asia""" +2023-09-27,9444,1407,"[\""Charger\""]",1998.01,{},162514,0,"""South America""" +2023-04-17,9445,2019,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",383.53,"{\""loyalty\"": \""11%\""}",108401,1,"""North America""" +2023-01-16,9446,3959,"[\""Tablet\""]",2933.17,{},136901,1,"""South America""" +2024-11-21,9447,1163,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1340.96,"{\""promo\"": \""16%\""}",217506,1,"""South America""" +2023-11-16,9448,8157,"[\""Laptop\"", \""Tablet\""]",1757.78,"{\""seasonal\"": \""14%\""}",212399,0,"""Europe""" +2023-07-14,9449,5048,"[\""Phone\"", \""Headphones\""]",2160.92,"{\""seasonal\"": \""25%\""}",82595,0,"""Africa""" +2023-12-13,9450,3659,"[\""Wireless Mouse\""]",3582.74,{},132634,0,"""North America""" +2024-07-06,9451,2736,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",530.51,{},49472,0,"""Europe""" +2023-04-14,9452,4566,"[\""Wireless Mouse\"", \""Charger\""]",2463.0,{},231302,0,"""Asia""" +2023-12-15,9453,4995,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3956.07,"{\""seasonal\"": \""22%\""}",24017,0,"""South America""" +2023-11-16,9454,9891,"[\""Keyboard\""]",3435.02,"{\""loyalty\"": \""9%\""}",247332,0,"""South America""" +2024-07-04,9455,3582,"[\""Laptop\"", \""Tablet\""]",2653.44,"{\""loyalty\"": \""5%\""}",30690,1,"""North America""" +2023-11-17,9456,4863,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",815.62,"{\"": \""10%\""}",91514,0,"""Asia""" +2023-04-26,9457,3855,"[\""Phone\""]",3563.09,"{\"": \""22%\""}",190353,1,"""Europe""" +2023-05-20,9458,4203,"[\""Phone\"", \""Laptop\""]",2249.23,{},278626,1,"""Africa""" +2024-04-26,9459,9977,"[\""Laptop\""]",1759.61,"{\""seasonal\"": \""7%\""}",239436,0,"""Africa""" +2024-02-29,9460,8677,"[\""Charger\""]",1260.15,"{\""seasonal\"": \""21%\""}",3809,0,"""Asia""" +2024-09-18,9461,6791,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1534.44,"{\""seasonal\"": \""26%\""}",130531,1,"""Europe""" +2023-12-17,9462,3806,"[\""Laptop\"", \""Wireless Mouse\""]",4317.75,{},85021,1,"""South America""" +2024-12-12,9463,4657,"[\""Phone\"", \""Monitor\""]",4940.75,{},182216,1,"""South America""" +2024-09-14,9464,6862,"[\""Keyboard\"", \""Phone\""]",1467.03,{},250857,0,"""Europe""" +2023-04-24,9465,4072,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",791.34,"{\"": \""12%\""}",234870,0,"""South America""" +2024-01-27,9466,6900,"[\""Headphones\""]",4579.71,"{\"": \""26%\""}",36829,1,"""Asia""" +2023-09-01,9467,308,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4253.42,"{\""seasonal\"": \""21%\""}",53675,0,"""Africa""" +2023-07-30,9468,9878,"[\""Headphones\"", \""Wireless Mouse\""]",3261.03,"{\"": \""29%\""}",194615,1,"""Africa""" +2023-01-08,9469,8347,"[\""Charger\""]",4366.08,{},184417,1,"""North America""" +2024-10-31,9470,2828,"[\""Laptop\""]",3378.57,{},162618,1,"""South America""" +2023-01-18,9471,5379,"[\""Monitor\""]",3086.18,"{\""seasonal\"": \""17%\""}",98671,1,"""South America""" +2023-01-14,9472,3036,"[\""Laptop\""]",4601.04,{},45353,1,"""Asia""" +2023-12-15,9473,734,"[\""Tablet\"", \""Headphones\""]",4493.12,{},177256,1,"""South America""" +2024-03-03,9474,9437,"[\""Charger\"", \""Monitor\""]",1243.53,{},231089,0,"""North America""" +2024-09-20,9475,103,"[\""Phone\"", \""Tablet\""]",4594.93,"{\""seasonal\"": \""16%\""}",33888,0,"""Asia""" +2023-03-21,9476,7484,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2633.19,{},113732,0,"""Asia""" +2023-07-12,9477,565,"[\""Tablet\""]",4556.58,{},24873,1,"""North America""" +2024-07-20,9478,2480,"[\""Phone\"", \""Keyboard\""]",3739.71,"{\""loyalty\"": \""8%\""}",110697,0,"""Europe""" +2024-07-16,9479,8198,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2129.88,"{\""promo\"": \""27%\""}",74416,1,"""Africa""" +2023-02-02,9480,3865,"[\""Tablet\""]",3694.32,{},127505,0,"""South America""" +2024-07-04,9481,714,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1471.21,"{\""loyalty\"": \""27%\""}",223199,0,"""South America""" +2024-04-25,9482,9260,"[\""Phone\"", \""Tablet\""]",4147.17,{},182988,1,"""Europe""" +2023-03-21,9483,5094,"[\""Phone\"", \""Keyboard\""]",2882.96,"{\"": \""11%\""}",235536,0,"""South America""" +2024-01-13,9484,7923,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4325.25,{},221521,1,"""South America""" +2024-10-09,9485,7539,"[\""Keyboard\"", \""Headphones\""]",3788.81,{},253094,1,"""Europe""" +2024-10-07,9486,5051,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3981.17,"{\""loyalty\"": \""16%\""}",23756,0,"""Europe""" +2024-02-08,9487,3601,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",769.0,"{\""loyalty\"": \""20%\""}",217019,0,"""Europe""" +2023-12-29,9488,4399,"[\""Laptop\"", \""Charger\""]",1719.83,{},9837,0,"""Asia""" +2024-11-02,9489,8255,"[\""Tablet\""]",4960.23,"{\""seasonal\"": \""15%\""}",251113,1,"""North America""" +2023-12-03,9490,7351,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",733.88,"{\""seasonal\"": \""12%\""}",130894,1,"""Africa""" +2024-01-16,9491,1721,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1954.56,"{\""loyalty\"": \""14%\""}",160963,0,"""Asia""" +2023-03-30,9492,6775,"[\""Keyboard\""]",4459.13,"{\""promo\"": \""10%\""}",50019,0,"""Europe""" +2024-08-27,9493,1147,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4201.83,{},217278,1,"""Europe""" +2023-05-22,9494,8809,"[\""Headphones\"", \""Tablet\""]",4870.37,"{\""loyalty\"": \""5%\""}",254049,0,"""North America""" +2023-06-06,9495,5743,"[\""Laptop\"", \""Wireless Mouse\""]",4125.03,{},137364,0,"""South America""" +2024-09-05,9496,6755,"[\""Laptop\""]",1877.94,{},89986,1,"""Asia""" +2023-02-07,9497,9208,"[\""Phone\"", \""Tablet\""]",2688.42,{},102702,1,"""Africa""" +2023-07-01,9498,3642,"[\""Keyboard\"", \""Tablet\""]",730.75,"{\""seasonal\"": \""30%\""}",130638,0,"""North America""" +2023-08-30,9499,7493,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1891.5,{},26313,1,"""South America""" +2024-10-27,9500,7696,"[\""Monitor\"", \""Wireless Mouse\""]",2689.55,"{\""loyalty\"": \""24%\""}",201830,1,"""North America""" +2023-05-05,9501,9738,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4944.39,{},172982,0,"""South America""" +2023-12-11,9502,8369,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4576.19,"{\""loyalty\"": \""18%\""}",63458,1,"""Asia""" +2024-10-17,9503,9322,"[\""Charger\""]",3772.83,"{\""seasonal\"": \""29%\""}",235639,0,"""North America""" +2023-09-28,9504,409,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",472.57,"{\""loyalty\"": \""22%\""}",30065,1,"""Africa""" +2023-07-06,9505,5840,"[\""Tablet\"", \""Phone\""]",611.52,"{\"": \""7%\""}",266204,0,"""Africa""" +2023-03-04,9506,2389,"[\""Phone\"", \""Tablet\""]",4097.54,"{\""promo\"": \""26%\""}",180864,0,"""South America""" +2024-05-23,9507,9542,"[\""Charger\""]",3355.87,{},22633,1,"""Asia""" +2024-09-02,9508,2441,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2733.22,"{\""loyalty\"": \""9%\""}",30263,0,"""Asia""" +2024-06-17,9509,5136,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4998.06,{},41316,0,"""Asia""" +2024-12-22,9510,5222,"[\""Phone\""]",981.47,"{\""loyalty\"": \""9%\""}",143625,0,"""North America""" +2024-04-02,9511,8803,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1816.16,{},291561,0,"""South America""" +2024-03-12,9512,4937,"[\""Laptop\""]",3005.37,{},249127,1,"""South America""" +2024-06-13,9513,8239,"[\""Keyboard\""]",2820.68,{},149375,1,"""Europe""" +2024-05-29,9514,2215,"[\""Keyboard\"", \""Laptop\""]",2280.53,{},241632,1,"""Asia""" +2024-06-07,9515,4692,"[\""Phone\"", \""Charger\""]",1760.96,{},28457,0,"""Asia""" +2024-01-31,9516,9504,"[\""Laptop\"", \""Headphones\""]",1139.96,"{\""seasonal\"": \""5%\""}",231518,0,"""Europe""" +2023-11-04,9517,1678,"[\""Headphones\""]",2354.53,{},238222,1,"""Europe""" +2023-02-28,9518,1542,"[\""Charger\""]",747.63,"{\""promo\"": \""23%\""}",220145,1,"""North America""" +2024-09-21,9519,988,"[\""Headphones\"", \""Wireless Mouse\""]",795.28,"{\""promo\"": \""9%\""}",53497,1,"""North America""" +2024-02-24,9520,6872,"[\""Headphones\""]",3387.22,"{\"": \""8%\""}",37623,1,"""Africa""" +2024-08-24,9521,7083,"[\""Phone\"", \""Monitor\""]",1543.91,{},243448,0,"""Europe""" +2023-09-18,9522,6013,"[\""Wireless Mouse\""]",148.16,{},18085,1,"""South America""" +2024-01-31,9523,7910,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3857.21,"{\""promo\"": \""18%\""}",177650,0,"""South America""" +2024-11-10,9524,2840,"[\""Tablet\"", \""Monitor\""]",4623.45,"{\""seasonal\"": \""22%\""}",50371,1,"""South America""" +2023-06-23,9525,5380,"[\""Headphones\"", \""Phone\""]",1734.66,"{\""promo\"": \""16%\""}",142805,0,"""Europe""" +2023-12-17,9526,8881,"[\""Wireless Mouse\"", \""Tablet\""]",2597.55,"{\""loyalty\"": \""15%\""}",238033,1,"""South America""" +2023-01-01,9527,7825,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2062.87,"{\"": \""20%\""}",288205,0,"""North America""" +2023-05-01,9528,1955,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4802.89,"{\""promo\"": \""27%\""}",8510,0,"""South America""" +2024-07-29,9529,6020,"[\""Monitor\""]",2176.91,{},147202,0,"""North America""" +2023-07-26,9530,8128,"[\""Laptop\""]",1993.48,"{\"": \""24%\""}",161720,1,"""Africa""" +2024-06-06,9531,790,"[\""Keyboard\"", \""Laptop\""]",1897.9,"{\"": \""14%\""}",115529,0,"""Africa""" +2024-04-07,9532,7162,"[\""Laptop\""]",3053.74,{},20825,1,"""North America""" +2023-10-26,9533,4176,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3176.52,{},248970,1,"""North America""" +2023-05-21,9534,5628,"[\""Tablet\"", \""Monitor\""]",4905.58,"{\""loyalty\"": \""12%\""}",298823,0,"""North America""" +2024-07-18,9535,3805,"[\""Tablet\"", \""Charger\""]",88.52,{},118945,0,"""South America""" +2023-01-29,9536,6975,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2492.16,{},162152,0,"""South America""" +2023-09-19,9537,6981,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3823.86,"{\""seasonal\"": \""10%\""}",202922,0,"""North America""" +2023-10-13,9538,4615,"[\""Monitor\"", \""Headphones\""]",1460.97,"{\""promo\"": \""23%\""}",50478,1,"""South America""" +2024-04-22,9539,9817,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",686.04,"{\""loyalty\"": \""20%\""}",255448,0,"""North America""" +2023-06-26,9540,1312,"[\""Monitor\""]",2223.05,"{\"": \""30%\""}",298117,0,"""Europe""" +2024-07-19,9541,8230,"[\""Wireless Mouse\""]",267.89,{},265847,0,"""South America""" +2024-08-20,9542,2989,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3498.5,"{\""promo\"": \""20%\""}",147593,1,"""South America""" +2023-01-05,9543,2053,"[\""Headphones\"", \""Monitor\""]",2336.08,{},51302,1,"""Asia""" +2024-04-09,9544,8121,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1660.25,"{\"": \""13%\""}",109017,0,"""Africa""" +2024-09-19,9545,6091,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1843.95,"{\""promo\"": \""29%\""}",195224,0,"""Asia""" +2023-04-07,9546,3329,"[\""Tablet\"", \""Wireless Mouse\""]",1430.2,{},80157,0,"""Europe""" +2023-01-24,9547,2408,"[\""Keyboard\""]",1013.0,{},108940,0,"""North America""" +2023-04-04,9548,2370,"[\""Monitor\"", \""Headphones\""]",113.85,"{\""loyalty\"": \""24%\""}",55456,0,"""Africa""" +2024-05-11,9549,7207,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4145.98,{},123296,1,"""South America""" +2023-11-08,9550,530,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4478.88,"{\""promo\"": \""6%\""}",270452,0,"""Africa""" +2023-04-08,9551,9743,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1541.49,"{\""promo\"": \""8%\""}",182467,0,"""Europe""" +2024-10-11,9552,3129,"[\""Wireless Mouse\""]",4111.39,"{\""seasonal\"": \""7%\""}",39268,1,"""Africa""" +2023-08-09,9553,4479,"[\""Wireless Mouse\"", \""Laptop\""]",2288.3,"{\""promo\"": \""20%\""}",64732,1,"""Europe""" +2023-02-04,9554,1176,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2199.99,{},266884,0,"""Asia""" +2023-07-05,9555,6287,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1145.88,{},138677,0,"""North America""" +2023-08-17,9556,668,"[\""Monitor\""]",2033.75,{},282178,1,"""Europe""" +2024-01-10,9557,8531,"[\""Laptop\"", \""Tablet\""]",1772.19,{},297654,0,"""Africa""" +2024-12-17,9558,8032,"[\""Keyboard\"", \""Tablet\""]",1731.04,{},220893,1,"""Africa""" +2023-12-27,9559,9770,"[\""Tablet\"", \""Laptop\""]",3822.82,"{\""loyalty\"": \""17%\""}",185759,1,"""North America""" +2024-03-08,9560,8962,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1168.2,{},13312,0,"""Africa""" +2023-04-12,9561,4797,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4787.14,{},68947,1,"""Europe""" +2024-07-10,9562,5455,"[\""Monitor\""]",2994.61,{},155124,1,"""North America""" +2024-03-23,9563,6964,"[\""Wireless Mouse\"", \""Monitor\""]",366.45,"{\""seasonal\"": \""17%\""}",89447,1,"""Africa""" +2023-02-24,9564,9399,"[\""Keyboard\"", \""Laptop\""]",3051.87,{},117316,0,"""Africa""" +2024-11-07,9565,378,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1670.64,{},4784,0,"""Asia""" +2023-10-02,9566,5620,"[\""Monitor\""]",4224.75,{},288095,0,"""Asia""" +2023-10-22,9567,1402,"[\""Phone\"", \""Keyboard\""]",4332.51,{},250992,0,"""Asia""" +2023-11-27,9568,7275,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3808.2,{},24355,1,"""North America""" +2023-01-12,9569,8810,"[\""Tablet\"", \""Laptop\""]",1659.57,{},131083,0,"""North America""" +2024-09-04,9570,7202,"[\""Monitor\"", \""Charger\""]",1612.77,"{\""loyalty\"": \""11%\""}",249770,1,"""North America""" +2024-04-02,9571,8677,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3491.24,"{\""loyalty\"": \""25%\""}",146797,1,"""North America""" +2024-09-07,9572,7741,"[\""Charger\"", \""Laptop\""]",3533.65,"{\""seasonal\"": \""23%\""}",256484,0,"""Africa""" +2023-05-02,9573,9947,"[\""Laptop\""]",954.44,{},269746,0,"""North America""" +2024-02-11,9574,3927,"[\""Phone\"", \""Headphones\""]",1496.28,{},287318,0,"""Asia""" +2023-07-02,9575,7833,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1465.03,{},157529,0,"""Asia""" +2024-01-16,9576,1616,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3106.4,"{\""promo\"": \""11%\""}",246306,0,"""North America""" +2024-11-17,9577,5863,"[\""Monitor\""]",1324.73,"{\""promo\"": \""19%\""}",22384,1,"""Europe""" +2024-10-14,9578,7810,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1508.43,{},175149,1,"""Africa""" +2024-02-01,9579,7275,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2224.29,"{\"": \""22%\""}",250490,1,"""North America""" +2023-07-23,9580,6358,"[\""Tablet\"", \""Laptop\""]",2553.92,{},277674,0,"""South America""" +2024-05-02,9581,142,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4051.22,"{\""loyalty\"": \""16%\""}",282340,1,"""North America""" +2023-09-15,9582,3233,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",893.11,"{\""promo\"": \""25%\""}",200585,0,"""Asia""" +2024-12-27,9583,287,"[\""Keyboard\""]",3031.71,"{\""loyalty\"": \""19%\""}",271072,1,"""South America""" +2023-11-07,9584,5282,"[\""Laptop\"", \""Charger\""]",3944.27,{},11901,0,"""Europe""" +2024-12-01,9585,7726,"[\""Monitor\"", \""Wireless Mouse\""]",1132.27,"{\""loyalty\"": \""9%\""}",288653,0,"""Asia""" +2024-01-27,9586,148,"[\""Phone\"", \""Keyboard\""]",4528.76,{},275871,0,"""Asia""" +2024-12-09,9587,2759,"[\""Monitor\""]",1300.16,{},63697,1,"""Africa""" +2023-02-02,9588,8123,"[\""Tablet\""]",4317.05,{},126881,1,"""Africa""" +2024-07-04,9589,6667,"[\""Laptop\""]",4117.25,{},74856,0,"""Africa""" +2024-08-05,9590,8931,"[\""Headphones\""]",3213.41,{},76342,1,"""South America""" +2023-08-25,9591,4378,"[\""Charger\""]",4326.67,{},170062,0,"""Asia""" +2023-02-23,9592,6464,"[\""Headphones\""]",3280.98,{},136534,0,"""Asia""" +2024-09-19,9593,4466,"[\""Keyboard\""]",1765.47,"{\""promo\"": \""9%\""}",102278,0,"""Europe""" +2023-12-26,9594,780,"[\""Monitor\"", \""Tablet\""]",1463.68,"{\""loyalty\"": \""9%\""}",294828,1,"""Europe""" +2023-12-24,9595,4409,"[\""Wireless Mouse\"", \""Charger\""]",1722.29,"{\"": \""17%\""}",207816,0,"""Asia""" +2024-09-02,9596,8360,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",447.43,{},191835,1,"""North America""" +2023-11-07,9597,5885,"[\""Laptop\"", \""Charger\""]",968.12,{},143921,0,"""Europe""" +2023-11-08,9598,3395,"[\""Keyboard\""]",4032.9,"{\""loyalty\"": \""25%\""}",231007,1,"""North America""" +2024-03-28,9599,6369,"[\""Charger\"", \""Laptop\""]",4471.54,{},257464,0,"""Asia""" +2024-06-18,9600,1295,"[\""Headphones\""]",1129.44,{},236406,1,"""North America""" +2024-09-11,9601,3056,"[\""Monitor\"", \""Charger\""]",3296.78,{},111215,1,"""Asia""" +2024-02-13,9602,8161,"[\""Headphones\""]",1612.42,{},16334,0,"""South America""" +2024-04-23,9603,3695,"[\""Laptop\""]",342.69,{},66011,0,"""North America""" +2023-10-14,9604,7827,"[\""Laptop\"", \""Charger\""]",1635.41,"{\""promo\"": \""14%\""}",71523,0,"""Europe""" +2024-11-07,9605,9463,"[\""Wireless Mouse\""]",150.91,{},37706,1,"""Europe""" +2023-03-09,9606,820,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",156.57,{},238663,1,"""Africa""" +2023-03-21,9607,568,"[\""Tablet\"", \""Phone\""]",1108.77,{},208040,1,"""Europe""" +2023-01-01,9608,2286,"[\""Charger\"", \""Keyboard\""]",4377.17,"{\""promo\"": \""9%\""}",62482,1,"""Africa""" +2024-07-27,9609,9976,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",917.07,"{\""promo\"": \""16%\""}",46154,1,"""Africa""" +2023-12-12,9610,3167,"[\""Tablet\""]",633.61,"{\""seasonal\"": \""15%\""}",185928,1,"""Africa""" +2023-12-23,9611,3778,"[\""Laptop\""]",1206.52,{},175336,0,"""North America""" +2024-08-23,9612,3216,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2248.92,{},288852,1,"""Asia""" +2023-12-24,9613,1496,"[\""Charger\"", \""Keyboard\""]",3259.44,"{\""promo\"": \""11%\""}",135996,1,"""North America""" +2023-07-11,9614,7924,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4058.47,{},269525,0,"""North America""" +2023-09-20,9615,4486,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2264.56,"{\""seasonal\"": \""28%\""}",39596,1,"""Africa""" +2023-04-16,9616,1705,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2136.56,"{\""loyalty\"": \""26%\""}",54504,0,"""North America""" +2023-01-08,9617,8181,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2403.28,{},189348,1,"""Asia""" +2024-07-06,9618,6309,"[\""Charger\""]",2293.22,"{\""promo\"": \""16%\""}",165693,0,"""South America""" +2024-09-07,9619,6783,"[\""Headphones\""]",4612.33,"{\""loyalty\"": \""10%\""}",157623,0,"""North America""" +2023-06-09,9620,402,"[\""Wireless Mouse\""]",1388.28,{},144194,0,"""Europe""" +2024-10-30,9621,7090,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3796.72,{},273408,1,"""North America""" +2023-04-21,9622,4757,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",772.17,"{\"": \""14%\""}",160453,1,"""Europe""" +2024-05-01,9623,8000,"[\""Keyboard\""]",2778.48,{},101307,1,"""South America""" +2024-06-11,9624,966,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4760.16,"{\"": \""15%\""}",49568,1,"""Africa""" +2024-05-16,9625,5886,"[\""Keyboard\""]",2097.48,{},246339,0,"""Europe""" +2023-03-04,9626,3324,"[\""Keyboard\""]",4552.86,{},150722,0,"""Africa""" +2024-04-05,9627,6883,"[\""Monitor\""]",411.46,"{\""seasonal\"": \""30%\""}",54032,0,"""Europe""" +2023-02-05,9628,3427,"[\""Monitor\""]",770.38,"{\""promo\"": \""23%\""}",147231,1,"""Asia""" +2024-12-31,9629,3195,"[\""Headphones\"", \""Charger\""]",2910.69,{},276879,0,"""Europe""" +2023-05-20,9630,3649,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4298.86,"{\""promo\"": \""28%\""}",190207,1,"""Africa""" +2024-06-02,9631,7324,"[\""Phone\""]",2410.33,{},38547,0,"""South America""" +2024-12-25,9632,8093,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4677.49,{},159645,1,"""South America""" +2023-12-30,9633,3277,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1591.4,{},33409,1,"""North America""" +2024-07-16,9634,8485,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4980.35,{},204852,0,"""Africa""" +2023-02-16,9635,5731,"[\""Keyboard\""]",942.16,{},12436,0,"""Asia""" +2024-10-08,9636,3751,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3345.18,"{\""seasonal\"": \""10%\""}",168324,1,"""North America""" +2024-09-01,9637,1373,"[\""Monitor\""]",2568.36,{},116626,1,"""Africa""" +2023-06-06,9638,7278,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3062.51,"{\""seasonal\"": \""16%\""}",66477,0,"""Europe""" +2023-06-11,9639,7610,"[\""Monitor\"", \""Phone\""]",1042.88,{},81472,0,"""Europe""" +2023-10-02,9640,246,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4208.59,{},107607,1,"""Asia""" +2024-12-25,9641,2227,"[\""Wireless Mouse\""]",1380.78,"{\""promo\"": \""8%\""}",273669,1,"""Europe""" +2024-04-26,9642,9244,"[\""Tablet\"", \""Charger\""]",3213.77,"{\""promo\"": \""24%\""}",234758,1,"""Europe""" +2024-09-18,9643,392,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1136.82,"{\"": \""27%\""}",102349,1,"""Africa""" +2023-01-30,9644,9489,"[\""Charger\"", \""Phone\""]",1233.4,{},285291,1,"""Asia""" +2024-03-12,9645,2531,"[\""Keyboard\"", \""Laptop\""]",3405.11,{},50948,1,"""South America""" +2024-10-28,9646,5376,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1723.58,"{\""promo\"": \""10%\""}",133522,0,"""North America""" +2024-06-19,9647,1700,"[\""Charger\"", \""Laptop\""]",4276.51,{},193373,0,"""Europe""" +2023-10-28,9648,4661,"[\""Phone\""]",1168.35,{},226438,1,"""Africa""" +2023-07-31,9649,5598,"[\""Charger\""]",3049.86,"{\""seasonal\"": \""11%\""}",144657,1,"""Asia""" +2023-12-23,9650,8382,"[\""Monitor\"", \""Charger\""]",4782.58,{},193836,1,"""North America""" +2023-12-08,9651,7071,"[\""Monitor\"", \""Keyboard\""]",882.61,"{\""promo\"": \""13%\""}",63844,1,"""South America""" +2023-06-22,9652,168,"[\""Phone\"", \""Monitor\""]",3514.1,"{\""promo\"": \""15%\""}",131361,0,"""North America""" +2024-07-10,9653,3221,"[\""Laptop\""]",1945.03,{},198789,0,"""North America""" +2023-10-27,9654,6478,"[\""Keyboard\"", \""Laptop\""]",771.01,"{\""seasonal\"": \""25%\""}",169058,1,"""Europe""" +2023-04-07,9655,7912,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",759.15,"{\""seasonal\"": \""10%\""}",181130,1,"""Europe""" +2023-11-23,9656,8176,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",816.69,{},292723,1,"""North America""" +2024-12-04,9657,6887,"[\""Keyboard\"", \""Headphones\""]",893.63,"{\""seasonal\"": \""30%\""}",254599,1,"""South America""" +2024-11-05,9658,4648,"[\""Keyboard\"", \""Laptop\""]",1767.69,"{\""seasonal\"": \""26%\""}",223656,0,"""Europe""" +2024-01-27,9659,2943,"[\""Laptop\"", \""Phone\""]",4854.06,"{\""loyalty\"": \""5%\""}",198463,0,"""South America""" +2023-06-04,9660,822,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4944.54,{},49849,1,"""Europe""" +2024-08-26,9661,4757,"[\""Headphones\"", \""Wireless Mouse\""]",556.24,{},195391,0,"""Africa""" +2024-03-04,9662,8235,"[\""Monitor\"", \""Tablet\""]",3570.36,{},295126,1,"""Europe""" +2023-01-01,9663,8104,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3875.57,"{\""seasonal\"": \""8%\""}",121333,0,"""Africa""" +2024-07-25,9664,2829,"[\""Charger\"", \""Wireless Mouse\""]",2491.15,{},82344,0,"""Asia""" +2023-12-26,9665,6800,"[\""Charger\"", \""Phone\"", \""Tablet\""]",230.97,{},268161,1,"""South America""" +2023-02-24,9666,3146,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4793.74,{},58365,1,"""North America""" +2023-06-30,9667,5067,"[\""Laptop\"", \""Wireless Mouse\""]",2091.22,{},266653,1,"""Europe""" +2024-07-10,9668,7264,"[\""Monitor\"", \""Charger\""]",1894.46,{},291468,1,"""North America""" +2024-10-01,9669,123,"[\""Keyboard\""]",2286.96,{},290458,1,"""Africa""" +2023-02-11,9670,8233,"[\""Phone\"", \""Charger\""]",2787.47,{},162858,1,"""Europe""" +2024-11-20,9671,8498,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3561.6,"{\""seasonal\"": \""12%\""}",27963,1,"""South America""" +2023-03-04,9672,2432,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1290.57,{},97170,1,"""Africa""" +2023-01-15,9673,3399,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3568.51,{},24188,1,"""Europe""" +2023-01-28,9674,9953,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2205.53,"{\"": \""20%\""}",153071,0,"""Africa""" +2024-04-03,9675,3803,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4103.6,{},152933,1,"""Europe""" +2024-05-13,9676,6388,"[\""Charger\""]",1721.02,{},73148,1,"""North America""" +2023-10-10,9677,725,"[\""Monitor\""]",4257.13,"{\""loyalty\"": \""28%\""}",137958,0,"""Europe""" +2023-08-13,9678,7434,"[\""Keyboard\""]",3501.03,"{\""loyalty\"": \""30%\""}",271356,0,"""North America""" +2024-09-18,9679,7762,"[\""Headphones\""]",3080.21,"{\"": \""12%\""}",205408,1,"""Asia""" +2023-10-04,9680,4449,"[\""Laptop\"", \""Headphones\""]",2032.86,{},200821,0,"""South America""" +2024-07-22,9681,2713,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3597.3,"{\""loyalty\"": \""30%\""}",249666,0,"""Asia""" +2023-08-29,9682,1969,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3355.36,{},217624,1,"""Africa""" +2023-07-04,9683,6730,"[\""Keyboard\"", \""Laptop\""]",4363.03,"{\"": \""9%\""}",244008,0,"""South America""" +2024-04-24,9684,1046,"[\""Headphones\"", \""Tablet\""]",4803.78,{},239394,0,"""Europe""" +2024-10-27,9685,8743,"[\""Tablet\""]",4757.73,{},77087,1,"""South America""" +2024-11-01,9686,8389,"[\""Headphones\""]",80.88,"{\""loyalty\"": \""14%\""}",25213,0,"""Europe""" +2023-05-10,9687,8286,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4821.13,"{\"": \""20%\""}",56341,0,"""Africa""" +2023-12-11,9688,474,"[\""Monitor\""]",370.42,"{\""seasonal\"": \""22%\""}",122032,0,"""Africa""" +2023-08-13,9689,9906,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",895.56,{},5530,1,"""South America""" +2023-07-15,9690,8491,"[\""Monitor\"", \""Charger\""]",2604.8,"{\""promo\"": \""30%\""}",147266,1,"""South America""" +2023-05-15,9691,24,"[\""Monitor\""]",3639.55,"{\""promo\"": \""9%\""}",76311,1,"""Europe""" +2023-08-03,9692,5033,"[\""Phone\""]",4250.24,{},268314,1,"""Asia""" +2024-09-23,9693,5849,"[\""Phone\"", \""Charger\""]",1673.13,"{\"": \""26%\""}",64156,1,"""South America""" +2023-10-21,9694,6580,"[\""Tablet\""]",1669.01,{},219839,1,"""Asia""" +2024-03-14,9695,1165,"[\""Keyboard\""]",3187.57,{},151470,1,"""South America""" +2024-04-05,9696,6006,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1247.42,"{\""seasonal\"": \""28%\""}",101808,1,"""Asia""" +2024-06-12,9697,5782,"[\""Monitor\"", \""Tablet\""]",4322.98,"{\""loyalty\"": \""7%\""}",210411,1,"""Europe""" +2024-01-23,9698,1098,"[\""Phone\"", \""Laptop\""]",2659.94,{},137650,1,"""Europe""" +2024-11-06,9699,2873,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3390.2,{},92299,1,"""Africa""" +2023-08-24,9700,5864,"[\""Laptop\"", \""Keyboard\""]",553.14,{},98224,1,"""Europe""" +2024-08-06,9701,6155,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",377.17,{},244500,1,"""Africa""" +2023-01-12,9702,8567,"[\""Laptop\""]",1391.92,{},61077,1,"""Europe""" +2024-05-05,9703,8081,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2393.24,"{\""seasonal\"": \""24%\""}",208464,0,"""Europe""" +2023-01-12,9704,6195,"[\""Laptop\""]",649.51,{},234842,0,"""Africa""" +2023-08-11,9705,3032,"[\""Monitor\""]",3031.01,{},205056,0,"""Africa""" +2023-06-16,9706,7197,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4684.86,"{\""seasonal\"": \""25%\""}",145196,0,"""Europe""" +2024-05-21,9707,1680,"[\""Laptop\""]",626.31,"{\""promo\"": \""11%\""}",12406,1,"""North America""" +2024-05-25,9708,7274,"[\""Keyboard\""]",3131.81,"{\""loyalty\"": \""9%\""}",177150,0,"""Europe""" +2024-12-27,9709,6836,"[\""Tablet\""]",850.7,"{\""promo\"": \""15%\""}",196059,0,"""Asia""" +2023-11-22,9710,6949,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4848.46,"{\"": \""21%\""}",211161,1,"""North America""" +2023-01-15,9711,2604,"[\""Keyboard\"", \""Phone\""]",2159.04,"{\""loyalty\"": \""21%\""}",13614,1,"""North America""" +2023-10-04,9712,2439,"[\""Keyboard\""]",2360.62,{},76132,1,"""Asia""" +2023-09-29,9713,7855,"[\""Laptop\"", \""Tablet\""]",4694.69,{},289198,1,"""Africa""" +2024-01-16,9714,6030,"[\""Monitor\"", \""Keyboard\""]",73.63,{},20080,1,"""Asia""" +2023-10-15,9715,9107,"[\""Headphones\""]",4203.8,{},262370,0,"""Asia""" +2024-09-07,9716,3015,"[\""Phone\"", \""Keyboard\""]",3550.2,{},13613,1,"""Africa""" +2024-10-28,9717,5286,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1120.9,"{\""loyalty\"": \""27%\""}",69376,0,"""Europe""" +2024-12-06,9718,9478,"[\""Wireless Mouse\"", \""Monitor\""]",1131.48,"{\""promo\"": \""15%\""}",187899,0,"""South America""" +2024-07-18,9719,6482,"[\""Monitor\"", \""Keyboard\""]",1095.77,"{\"": \""17%\""}",80676,1,"""South America""" +2024-12-01,9720,7977,"[\""Tablet\""]",1820.35,"{\""promo\"": \""22%\""}",184819,0,"""South America""" +2023-02-14,9721,675,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4966.98,{},19915,1,"""Africa""" +2024-12-19,9722,5881,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1915.75,"{\"": \""25%\""}",2441,1,"""North America""" +2023-11-14,9723,4500,"[\""Keyboard\""]",333.88,"{\"": \""14%\""}",196700,0,"""Europe""" +2024-03-25,9724,8455,"[\""Keyboard\"", \""Headphones\""]",827.56,{},225495,1,"""North America""" +2023-10-25,9725,4583,"[\""Charger\""]",2148.23,{},271837,0,"""Africa""" +2023-06-10,9726,5394,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3688.62,"{\""seasonal\"": \""11%\""}",112057,0,"""Europe""" +2024-12-06,9727,7778,"[\""Wireless Mouse\"", \""Tablet\""]",2940.7,"{\""promo\"": \""15%\""}",271816,1,"""Asia""" +2024-12-12,9728,459,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",488.62,"{\""seasonal\"": \""5%\""}",225624,1,"""North America""" +2024-03-01,9729,7349,"[\""Laptop\""]",3066.12,"{\""loyalty\"": \""18%\""}",261518,0,"""Europe""" +2023-12-28,9730,4043,"[\""Phone\""]",4566.16,"{\""promo\"": \""24%\""}",63790,0,"""Asia""" +2023-05-25,9731,8588,"[\""Monitor\""]",2502.21,"{\"": \""12%\""}",298158,1,"""Africa""" +2023-05-23,9732,427,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2878.11,"{\"": \""7%\""}",182066,1,"""Europe""" +2023-07-05,9733,2878,"[\""Wireless Mouse\"", \""Phone\""]",2979.73,"{\""seasonal\"": \""30%\""}",277738,1,"""North America""" +2023-09-05,9734,7924,"[\""Phone\"", \""Wireless Mouse\""]",3508.78,{},200473,1,"""North America""" +2024-03-28,9735,355,"[\""Headphones\"", \""Laptop\""]",4366.15,"{\""promo\"": \""17%\""}",203529,1,"""Africa""" +2024-11-26,9736,3009,"[\""Headphones\""]",3954.69,{},132054,0,"""Europe""" +2023-04-17,9737,8754,"[\""Keyboard\""]",1918.31,"{\""seasonal\"": \""24%\""}",37508,1,"""Africa""" +2024-02-11,9738,9639,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3750.23,"{\""promo\"": \""18%\""}",196400,1,"""Asia""" +2023-05-26,9739,6847,"[\""Charger\"", \""Tablet\""]",4370.74,"{\""loyalty\"": \""29%\""}",72563,1,"""Europe""" +2024-08-15,9740,3928,"[\""Monitor\""]",3101.38,{},71983,0,"""Asia""" +2024-12-22,9741,2140,"[\""Monitor\""]",4650.54,"{\"": \""24%\""}",142869,0,"""Europe""" +2023-03-02,9742,7204,"[\""Tablet\"", \""Charger\""]",3994.58,"{\""seasonal\"": \""10%\""}",54608,0,"""Africa""" +2024-05-31,9743,5394,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3940.42,"{\"": \""21%\""}",85002,1,"""Europe""" +2023-07-13,9744,2150,"[\""Wireless Mouse\"", \""Headphones\""]",955.68,{},1528,0,"""North America""" +2023-06-12,9745,6198,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2959.95,"{\""promo\"": \""5%\""}",67779,0,"""Europe""" +2024-06-24,9746,5234,"[\""Keyboard\""]",2420.81,{},21203,0,"""Asia""" +2024-07-30,9747,2336,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3123.05,"{\""seasonal\"": \""26%\""}",44773,1,"""Asia""" +2024-03-26,9748,3705,"[\""Phone\"", \""Headphones\""]",4634.94,{},252471,1,"""Europe""" +2023-04-01,9749,3517,"[\""Wireless Mouse\"", \""Charger\""]",4805.05,{},180820,0,"""Asia""" +2024-12-13,9750,1845,"[\""Keyboard\"", \""Charger\""]",2763.93,"{\""promo\"": \""22%\""}",94204,1,"""South America""" +2023-12-18,9751,5386,"[\""Wireless Mouse\"", \""Monitor\""]",3002.17,"{\""seasonal\"": \""19%\""}",26207,1,"""South America""" +2024-12-19,9752,4677,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",256.07,{},4603,0,"""Europe""" +2023-07-23,9753,17,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4573.41,"{\"": \""16%\""}",99206,0,"""South America""" +2023-07-24,9754,4702,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",128.79,{},165541,1,"""Africa""" +2024-02-20,9755,5633,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4056.07,"{\"": \""12%\""}",35348,0,"""Africa""" +2023-07-05,9756,5323,"[\""Phone\""]",4833.71,{},254172,1,"""North America""" +2023-02-14,9757,6568,"[\""Phone\"", \""Tablet\""]",714.75,{},15610,0,"""Africa""" +2023-09-09,9758,3898,"[\""Headphones\""]",4691.78,{},241351,1,"""North America""" +2023-01-09,9759,8652,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4585.6,{},232751,0,"""Africa""" +2023-07-03,9760,582,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1746.33,"{\""seasonal\"": \""17%\""}",176107,1,"""Africa""" +2024-06-09,9761,3625,"[\""Charger\""]",3413.18,"{\"": \""27%\""}",207780,0,"""Europe""" +2024-12-09,9762,1974,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1129.22,{},276815,1,"""South America""" +2023-04-24,9763,9782,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2939.52,{},23201,1,"""Asia""" +2023-10-20,9764,6608,"[\""Wireless Mouse\""]",3629.06,"{\""promo\"": \""7%\""}",65870,0,"""Europe""" +2024-07-27,9765,4722,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1795.59,"{\""promo\"": \""23%\""}",128364,0,"""North America""" +2023-03-14,9766,1736,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2961.43,{},123483,1,"""Europe""" +2023-06-02,9767,7384,"[\""Headphones\""]",2439.28,"{\""promo\"": \""11%\""}",29444,1,"""Africa""" +2024-02-09,9768,5940,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",709.19,"{\""promo\"": \""20%\""}",202264,1,"""Africa""" +2024-05-17,9769,4685,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2704.82,"{\"": \""24%\""}",123559,1,"""Asia""" +2023-06-23,9770,1118,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4715.08,"{\""promo\"": \""30%\""}",98493,1,"""South America""" +2023-03-09,9771,412,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4527.33,{},246427,0,"""Africa""" +2023-06-28,9772,5344,"[\""Tablet\""]",2475.61,"{\"": \""21%\""}",43255,0,"""North America""" +2024-08-12,9773,4169,"[\""Headphones\""]",1407.53,{},178279,0,"""Europe""" +2024-03-27,9774,3954,"[\""Charger\""]",1117.98,{},93824,1,"""Europe""" +2023-08-10,9775,4185,"[\""Headphones\"", \""Phone\""]",1146.12,"{\""loyalty\"": \""9%\""}",148491,1,"""North America""" +2023-05-26,9776,9643,"[\""Wireless Mouse\"", \""Monitor\""]",1585.63,"{\""promo\"": \""22%\""}",230224,0,"""South America""" +2023-03-05,9777,3028,"[\""Charger\"", \""Headphones\""]",4541.65,"{\""seasonal\"": \""26%\""}",88823,0,"""North America""" +2023-11-27,9778,5790,"[\""Wireless Mouse\"", \""Keyboard\""]",869.69,{},172136,0,"""Asia""" +2024-10-10,9779,2455,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4463.04,"{\"": \""7%\""}",236682,0,"""Europe""" +2023-06-06,9780,7112,"[\""Tablet\""]",620.67,{},120643,1,"""South America""" +2024-12-02,9781,2431,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4419.35,"{\""promo\"": \""28%\""}",215041,0,"""Asia""" +2023-02-11,9782,9651,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2236.2,"{\""seasonal\"": \""14%\""}",171011,0,"""Africa""" +2023-11-30,9783,867,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3830.77,{},282394,0,"""Europe""" +2024-09-05,9784,4706,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2283.55,{},296157,0,"""North America""" +2023-10-25,9785,2638,"[\""Phone\""]",278.21,"{\""loyalty\"": \""10%\""}",145007,0,"""Asia""" +2023-04-15,9786,1009,"[\""Phone\"", \""Laptop\""]",4929.9,{},20895,1,"""North America""" +2023-08-03,9787,1407,"[\""Wireless Mouse\""]",2689.79,"{\""loyalty\"": \""24%\""}",66081,1,"""South America""" +2023-03-05,9788,8213,"[\""Laptop\"", \""Headphones\""]",2724.25,"{\""seasonal\"": \""22%\""}",85647,1,"""Asia""" +2023-07-15,9789,1069,"[\""Headphones\"", \""Phone\""]",2378.16,"{\""promo\"": \""25%\""}",144724,1,"""Africa""" +2023-09-18,9790,4010,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",580.82,{},269527,1,"""South America""" +2023-11-06,9791,2713,"[\""Headphones\""]",3893.42,"{\""seasonal\"": \""12%\""}",177651,1,"""Asia""" +2024-01-21,9792,3230,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4190.24,{},95654,1,"""Europe""" +2024-10-02,9793,3764,"[\""Monitor\""]",4253.53,{},26763,0,"""North America""" +2023-05-23,9794,1370,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4025.54,{},41918,1,"""Europe""" +2024-11-05,9795,9840,"[\""Charger\"", \""Keyboard\""]",460.88,{},53846,0,"""Asia""" +2023-03-23,9796,5865,"[\""Monitor\"", \""Phone\""]",497.97,{},128031,0,"""Africa""" +2024-10-01,9797,3420,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4184.21,"{\""seasonal\"": \""9%\""}",240177,1,"""North America""" +2024-12-05,9798,2689,"[\""Phone\""]",2429.79,"{\"": \""14%\""}",228105,0,"""South America""" +2023-01-04,9799,3752,"[\""Keyboard\"", \""Wireless Mouse\""]",1493.29,"{\""loyalty\"": \""15%\""}",59887,0,"""Asia""" +2023-08-09,9800,8702,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2483.5,{},275534,0,"""Asia""" +2024-07-03,9801,3088,"[\""Wireless Mouse\""]",3674.59,{},155353,0,"""North America""" +2023-06-16,9802,1514,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2212.25,"{\""loyalty\"": \""6%\""}",72304,0,"""Asia""" +2024-09-22,9803,7972,"[\""Tablet\"", \""Wireless Mouse\""]",2256.74,{},81034,0,"""Africa""" +2024-12-20,9804,6495,"[\""Keyboard\""]",2109.09,{},150848,1,"""North America""" +2024-07-31,9805,9076,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1303.86,{},197374,0,"""South America""" +2024-05-27,9806,4636,"[\""Laptop\""]",4345.57,{},201994,1,"""Africa""" +2023-11-18,9807,2597,"[\""Tablet\""]",1018.1,{},29744,1,"""Asia""" +2023-05-14,9808,4481,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2767.61,{},57508,1,"""Africa""" +2024-02-12,9809,9562,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2570.91,"{\""loyalty\"": \""27%\""}",6917,1,"""South America""" +2023-07-16,9810,8410,"[\""Keyboard\"", \""Wireless Mouse\""]",143.81,{},260464,1,"""South America""" +2024-08-01,9811,7882,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2829.99,"{\""promo\"": \""16%\""}",241074,0,"""Asia""" +2023-02-19,9812,302,"[\""Tablet\"", \""Headphones\""]",1401.55,{},132391,1,"""South America""" +2024-09-11,9813,3019,"[\""Headphones\"", \""Phone\""]",534.23,{},278610,1,"""South America""" +2023-06-01,9814,4668,"[\""Charger\"", \""Monitor\""]",4175.5,"{\""seasonal\"": \""30%\""}",152975,1,"""Africa""" +2023-06-18,9815,9824,"[\""Headphones\""]",4510.77,"{\""promo\"": \""13%\""}",240085,0,"""South America""" +2023-04-14,9816,4547,"[\""Keyboard\""]",2006.71,"{\""promo\"": \""28%\""}",272767,1,"""North America""" +2024-08-31,9817,3988,"[\""Charger\""]",363.99,{},261081,0,"""South America""" +2024-01-21,9818,600,"[\""Tablet\""]",2209.2,{},13232,0,"""Asia""" +2024-04-02,9819,5736,"[\""Wireless Mouse\""]",2703.37,{},226876,0,"""North America""" +2024-01-18,9820,2941,"[\""Wireless Mouse\"", \""Charger\""]",4024.89,{},178603,0,"""North America""" +2023-05-20,9821,585,"[\""Laptop\"", \""Keyboard\""]",4012.38,"{\""loyalty\"": \""15%\""}",6203,1,"""Europe""" +2024-03-30,9822,9700,"[\""Tablet\"", \""Headphones\""]",4433.8,"{\""seasonal\"": \""14%\""}",105440,1,"""Europe""" +2023-01-30,9823,6256,"[\""Tablet\""]",4821.49,"{\""seasonal\"": \""22%\""}",9619,0,"""Asia""" +2023-12-10,9824,2010,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2402.94,"{\"": \""24%\""}",287090,1,"""North America""" +2023-04-13,9825,7809,"[\""Charger\""]",623.4,{},278270,1,"""Asia""" +2023-11-07,9826,2349,"[\""Headphones\""]",4040.28,"{\""seasonal\"": \""20%\""}",177365,1,"""North America""" +2023-06-07,9827,2297,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4533.48,"{\"": \""14%\""}",51891,1,"""North America""" +2023-08-06,9828,7589,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3171.43,{},32297,0,"""Asia""" +2024-08-01,9829,4850,"[\""Headphones\"", \""Phone\""]",2069.33,"{\""seasonal\"": \""15%\""}",265970,1,"""South America""" +2024-06-05,9830,5149,"[\""Keyboard\"", \""Wireless Mouse\""]",1803.47,"{\""loyalty\"": \""14%\""}",81259,1,"""Africa""" +2024-08-17,9831,8678,"[\""Monitor\"", \""Tablet\""]",4936.64,"{\""loyalty\"": \""9%\""}",143531,0,"""Asia""" +2023-03-09,9832,3092,"[\""Wireless Mouse\""]",3502.35,"{\"": \""17%\""}",111283,0,"""Africa""" +2023-06-07,9833,7200,"[\""Keyboard\"", \""Tablet\""]",4598.2,"{\""loyalty\"": \""15%\""}",178987,1,"""Europe""" +2024-10-03,9834,4504,"[\""Tablet\"", \""Monitor\""]",4051.19,"{\"": \""6%\""}",286193,1,"""North America""" +2024-08-24,9835,3088,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4740.8,{},14310,0,"""North America""" +2024-06-25,9836,5082,"[\""Charger\""]",664.12,{},259280,0,"""Africa""" +2024-05-03,9837,7719,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4200.7,"{\"": \""14%\""}",173517,1,"""South America""" +2023-05-27,9838,8123,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2395.44,"{\""loyalty\"": \""17%\""}",248069,0,"""Europe""" +2024-07-12,9839,2475,"[\""Phone\""]",2916.6,{},170187,1,"""Asia""" +2023-03-28,9840,1047,"[\""Headphones\"", \""Charger\""]",1643.64,{},211886,0,"""Asia""" +2023-01-11,9841,3152,"[\""Phone\""]",2833.99,{},6498,1,"""Europe""" +2023-11-15,9842,3157,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4020.06,"{\"": \""10%\""}",102860,0,"""North America""" +2024-11-02,9843,5877,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4974.03,"{\""seasonal\"": \""14%\""}",32226,1,"""Europe""" +2024-02-25,9844,8280,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1988.16,{},260798,0,"""Europe""" +2024-01-07,9845,5868,"[\""Tablet\""]",3539.86,"{\""promo\"": \""21%\""}",248650,1,"""Africa""" +2024-10-04,9846,6028,"[\""Tablet\"", \""Laptop\""]",1545.41,"{\""seasonal\"": \""18%\""}",29022,1,"""North America""" +2024-04-10,9847,7707,"[\""Monitor\""]",1922.39,"{\""loyalty\"": \""12%\""}",239611,0,"""Europe""" +2023-09-17,9848,8901,"[\""Headphones\"", \""Tablet\""]",4254.32,"{\""promo\"": \""19%\""}",53044,0,"""Asia""" +2024-08-08,9849,7134,"[\""Wireless Mouse\""]",2018.54,"{\""promo\"": \""15%\""}",140921,0,"""Europe""" +2023-04-03,9850,3615,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3797.12,"{\"": \""14%\""}",213526,0,"""North America""" +2023-06-12,9851,3022,"[\""Charger\"", \""Wireless Mouse\""]",676.16,{},130621,1,"""Asia""" +2024-06-02,9852,3697,"[\""Laptop\""]",2486.57,{},239863,0,"""Europe""" +2024-03-26,9853,6166,"[\""Charger\"", \""Laptop\""]",3855.58,{},220216,1,"""Asia""" +2024-04-02,9854,432,"[\""Wireless Mouse\""]",212.47,{},89181,0,"""Europe""" +2024-06-21,9855,374,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4085.97,"{\""seasonal\"": \""5%\""}",211701,1,"""Asia""" +2023-10-07,9856,675,"[\""Wireless Mouse\""]",2686.81,{},251383,1,"""North America""" +2023-09-05,9857,9889,"[\""Tablet\"", \""Headphones\""]",2010.21,{},268597,1,"""North America""" +2024-03-04,9858,4840,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1663.54,"{\"": \""30%\""}",95256,1,"""South America""" +2024-05-04,9859,2869,"[\""Monitor\"", \""Tablet\""]",2592.23,{},93141,0,"""Africa""" +2024-11-16,9860,6327,"[\""Tablet\"", \""Headphones\""]",3595.97,{},46473,0,"""North America""" +2023-02-17,9861,9260,"[\""Laptop\"", \""Monitor\""]",364.22,"{\""promo\"": \""22%\""}",37418,1,"""Africa""" +2024-03-11,9862,4193,"[\""Keyboard\""]",1411.01,"{\""seasonal\"": \""5%\""}",218332,0,"""Europe""" +2024-03-12,9863,4386,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3450.01,"{\""promo\"": \""21%\""}",49559,1,"""North America""" +2024-09-28,9864,6652,"[\""Keyboard\""]",927.78,{},154773,0,"""South America""" +2024-11-17,9865,5167,"[\""Monitor\""]",3747.47,"{\""loyalty\"": \""10%\""}",173339,0,"""North America""" +2024-03-28,9866,6669,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4948.38,{},24961,1,"""South America""" +2024-08-22,9867,3500,"[\""Charger\""]",779.65,"{\""loyalty\"": \""13%\""}",72417,1,"""South America""" +2024-07-10,9868,1839,"[\""Monitor\""]",4979.37,{},299980,1,"""North America""" +2023-06-28,9869,5966,"[\""Monitor\""]",1038.62,{},126253,0,"""Europe""" +2023-01-09,9870,132,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4522.57,{},245599,0,"""Asia""" +2024-10-05,9871,5500,"[\""Monitor\""]",3144.04,"{\"": \""19%\""}",38527,0,"""Asia""" +2023-03-18,9872,5188,"[\""Laptop\""]",3869.34,{},38357,1,"""North America""" +2023-01-16,9873,5556,"[\""Phone\""]",4555.82,"{\"": \""24%\""}",257159,0,"""North America""" +2023-07-26,9874,452,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",63.39,{},104459,0,"""Asia""" +2023-06-25,9875,5411,"[\""Laptop\"", \""Monitor\""]",958.95,{},41277,0,"""South America""" +2023-10-17,9876,5223,"[\""Monitor\"", \""Headphones\""]",3053.29,"{\""loyalty\"": \""30%\""}",1613,1,"""Africa""" +2024-06-28,9877,5355,"[\""Phone\""]",2588.15,{},49000,0,"""Africa""" +2024-04-07,9878,3761,"[\""Charger\""]",3854.85,{},232350,0,"""South America""" +2024-08-08,9879,2546,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",328.43,"{\""promo\"": \""10%\""}",99586,1,"""Asia""" +2024-08-07,9880,2157,"[\""Keyboard\""]",3458.71,"{\""seasonal\"": \""9%\""}",148715,1,"""Europe""" +2023-06-19,9881,9747,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1975.48,"{\""seasonal\"": \""24%\""}",281137,1,"""South America""" +2023-05-26,9882,808,"[\""Monitor\"", \""Tablet\""]",2403.69,{},107933,0,"""South America""" +2024-06-28,9883,1109,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3443.85,"{\""promo\"": \""27%\""}",183049,0,"""Africa""" +2023-02-19,9884,9368,"[\""Keyboard\"", \""Wireless Mouse\""]",3609.54,"{\""seasonal\"": \""25%\""}",95507,1,"""South America""" +2024-06-17,9885,903,"[\""Headphones\""]",2503.05,{},252663,0,"""Africa""" +2024-08-20,9886,7626,"[\""Tablet\"", \""Headphones\""]",835.51,{},92038,1,"""North America""" +2024-10-16,9887,3979,"[\""Wireless Mouse\"", \""Tablet\""]",704.48,"{\""promo\"": \""11%\""}",246797,1,"""North America""" +2024-09-14,9888,3897,"[\""Monitor\""]",4292.1,"{\""seasonal\"": \""24%\""}",215338,0,"""Asia""" +2024-05-27,9889,7664,"[\""Charger\"", \""Keyboard\""]",355.64,"{\""loyalty\"": \""20%\""}",107226,1,"""South America""" +2024-01-14,9890,3160,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1242.64,"{\""seasonal\"": \""13%\""}",84370,1,"""South America""" +2023-05-12,9891,7807,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1557.77,"{\""loyalty\"": \""26%\""}",46197,0,"""Europe""" +2024-06-03,9892,9555,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4732.09,{},109730,1,"""Africa""" +2023-09-04,9893,8901,"[\""Wireless Mouse\""]",2819.1,"{\""promo\"": \""7%\""}",199794,1,"""South America""" +2024-11-11,9894,5809,"[\""Laptop\""]",4165.8,"{\""promo\"": \""27%\""}",233520,1,"""North America""" +2024-09-20,9895,881,"[\""Charger\"", \""Laptop\""]",4094.66,{},282380,1,"""North America""" +2024-03-17,9896,5477,"[\""Phone\"", \""Wireless Mouse\""]",1099.66,"{\""loyalty\"": \""14%\""}",294176,0,"""Africa""" +2024-07-20,9897,1240,"[\""Charger\"", \""Monitor\""]",1514.56,{},11314,1,"""Europe""" +2024-03-04,9898,1163,"[\""Laptop\""]",3966.07,"{\""loyalty\"": \""5%\""}",191358,1,"""North America""" +2023-12-15,9899,9763,"[\""Monitor\"", \""Keyboard\""]",3535.22,{},47498,1,"""Asia""" +2024-11-22,9900,8533,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1020.45,{},82185,1,"""Europe""" +2023-12-25,9901,43,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1978.32,{},285105,1,"""Europe""" +2023-05-13,9902,6461,"[\""Tablet\"", \""Headphones\""]",4335.48,"{\"": \""18%\""}",165259,0,"""Africa""" +2024-12-02,9903,5688,"[\""Wireless Mouse\"", \""Monitor\""]",4099.79,{},14791,0,"""Asia""" +2024-07-28,9904,4680,"[\""Charger\"", \""Headphones\""]",2778.31,{},36581,0,"""Africa""" +2024-11-17,9905,4211,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",905.54,{},13229,1,"""Europe""" +2023-02-08,9906,8216,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2207.48,{},282495,1,"""Europe""" +2023-10-24,9907,2151,"[\""Laptop\"", \""Tablet\""]",4712.79,{},268654,0,"""Asia""" +2023-10-23,9908,1137,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4705.75,"{\""seasonal\"": \""18%\""}",26439,0,"""Asia""" +2024-10-21,9909,3646,"[\""Keyboard\""]",4511.0,"{\"": \""19%\""}",277766,0,"""Africa""" +2024-11-14,9910,5351,"[\""Wireless Mouse\""]",2754.15,{},265121,0,"""North America""" +2023-12-13,9911,7810,"[\""Monitor\""]",2544.28,{},102088,0,"""Asia""" +2023-04-08,9912,1450,"[\""Laptop\"", \""Monitor\""]",3203.69,"{\"": \""25%\""}",261172,0,"""North America""" +2023-06-30,9913,2849,"[\""Wireless Mouse\"", \""Laptop\""]",3858.82,"{\""loyalty\"": \""18%\""}",38785,0,"""North America""" +2024-03-15,9914,3577,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",492.08,"{\""promo\"": \""30%\""}",142721,1,"""Europe""" +2024-01-02,9915,5735,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2326.56,"{\"": \""19%\""}",39534,1,"""Europe""" +2024-11-12,9916,7534,"[\""Headphones\""]",3040.0,{},232838,1,"""South America""" +2023-11-03,9917,2003,"[\""Keyboard\"", \""Tablet\""]",2823.19,"{\""seasonal\"": \""15%\""}",288577,1,"""North America""" +2024-02-03,9918,3845,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1045.66,{},271501,1,"""South America""" +2024-06-22,9919,7590,"[\""Laptop\""]",4774.87,{},69046,1,"""South America""" +2023-07-27,9920,744,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2304.29,"{\""promo\"": \""5%\""}",241355,1,"""South America""" +2023-02-28,9921,6324,"[\""Laptop\"", \""Tablet\""]",3024.14,{},44319,1,"""Europe""" +2023-04-25,9922,8096,"[\""Charger\""]",4253.39,"{\""promo\"": \""17%\""}",273352,0,"""Europe""" +2023-08-28,9923,6193,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2957.32,"{\""loyalty\"": \""24%\""}",112781,0,"""South America""" +2024-02-14,9924,694,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",343.26,{},126855,0,"""North America""" +2024-11-22,9925,9415,"[\""Monitor\""]",1955.88,"{\""seasonal\"": \""23%\""}",52212,0,"""Asia""" +2023-07-20,9926,1183,"[\""Headphones\"", \""Wireless Mouse\""]",2869.8,"{\"": \""12%\""}",165789,0,"""South America""" +2023-08-07,9927,1107,"[\""Keyboard\""]",508.92,"{\""promo\"": \""27%\""}",294525,0,"""Asia""" +2024-05-27,9928,5470,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4740.37,"{\"": \""13%\""}",102100,0,"""Asia""" +2024-12-07,9929,6839,"[\""Tablet\"", \""Monitor\""]",223.85,"{\""promo\"": \""16%\""}",280077,1,"""Africa""" +2023-05-17,9930,7428,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1498.24,{},290894,1,"""South America""" +2023-05-29,9931,9178,"[\""Monitor\""]",2393.26,"{\"": \""27%\""}",191740,0,"""Africa""" +2024-01-02,9932,1631,"[\""Monitor\"", \""Charger\""]",2219.2,{},238880,1,"""Asia""" +2023-03-31,9933,6833,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3863.38,"{\""loyalty\"": \""19%\""}",126258,0,"""Europe""" +2024-01-08,9934,9690,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2245.96,"{\""promo\"": \""19%\""}",22451,1,"""North America""" +2023-04-28,9935,2851,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2796.39,{},208788,1,"""Europe""" +2023-09-24,9936,2233,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3895.55,"{\"": \""16%\""}",212357,1,"""North America""" +2023-12-31,9937,2367,"[\""Tablet\"", \""Keyboard\""]",3709.28,"{\"": \""15%\""}",284503,1,"""Asia""" +2023-03-23,9938,4471,"[\""Phone\""]",667.22,{},119617,0,"""South America""" +2024-04-26,9939,7449,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4587.66,{},237812,0,"""Asia""" +2023-10-02,9940,2676,"[\""Phone\""]",2392.77,{},246897,1,"""Africa""" +2024-06-07,9941,1476,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3615.92,{},280726,1,"""North America""" +2024-12-03,9942,8550,"[\""Tablet\""]",4473.15,{},119176,1,"""South America""" +2023-07-08,9943,8815,"[\""Wireless Mouse\"", \""Monitor\""]",1153.97,{},184009,1,"""Asia""" +2024-06-28,9944,8684,"[\""Charger\"", \""Headphones\""]",3158.31,"{\"": \""16%\""}",257922,1,"""South America""" +2024-01-17,9945,814,"[\""Keyboard\""]",2555.43,{},97625,0,"""South America""" +2024-05-02,9946,6417,"[\""Keyboard\"", \""Laptop\""]",788.58,"{\""promo\"": \""21%\""}",9673,1,"""Asia""" +2024-01-03,9947,4269,"[\""Headphones\""]",1004.33,"{\"": \""28%\""}",89510,0,"""Europe""" +2024-09-06,9948,8724,"[\""Charger\""]",2962.67,{},12300,1,"""Asia""" +2024-05-06,9949,28,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2958.92,"{\""promo\"": \""15%\""}",260348,0,"""Asia""" +2023-09-02,9950,5950,"[\""Phone\"", \""Charger\""]",4561.04,"{\"": \""27%\""}",114567,0,"""Asia""" +2023-03-01,9951,2729,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2587.42,{},125651,1,"""Europe""" +2024-06-24,9952,7481,"[\""Wireless Mouse\"", \""Charger\""]",1465.15,"{\""seasonal\"": \""22%\""}",299793,0,"""North America""" +2023-04-17,9953,2931,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2454.49,"{\""loyalty\"": \""6%\""}",189220,1,"""South America""" +2024-10-10,9954,8804,"[\""Headphones\"", \""Charger\""]",4592.61,"{\""seasonal\"": \""5%\""}",106710,0,"""Asia""" +2023-05-08,9955,2447,"[\""Laptop\""]",2101.75,"{\""seasonal\"": \""6%\""}",18928,0,"""Africa""" +2023-07-15,9956,8338,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1453.08,"{\""seasonal\"": \""27%\""}",224106,0,"""South America""" +2024-05-22,9957,3994,"[\""Monitor\""]",4367.25,"{\""seasonal\"": \""20%\""}",54182,0,"""North America""" +2024-09-05,9958,9072,"[\""Tablet\"", \""Laptop\""]",2070.86,"{\""loyalty\"": \""25%\""}",280086,1,"""North America""" +2024-01-13,9959,9106,"[\""Headphones\""]",4155.68,{},243449,1,"""Europe""" +2023-03-24,9960,4098,"[\""Laptop\"", \""Phone\""]",3110.4,{},38549,0,"""North America""" +2023-04-07,9961,9934,"[\""Monitor\""]",582.47,{},139339,0,"""Asia""" +2024-10-14,9962,4691,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1277.8,"{\""promo\"": \""9%\""}",63573,1,"""North America""" +2023-11-08,9963,1802,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3746.34,"{\""promo\"": \""19%\""}",236658,0,"""Europe""" +2024-12-10,9964,7096,"[\""Wireless Mouse\"", \""Monitor\""]",590.25,"{\"": \""14%\""}",168270,1,"""North America""" +2023-02-04,9965,9834,"[\""Laptop\"", \""Charger\""]",768.07,{},57049,1,"""Europe""" +2024-03-09,9966,2580,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2664.42,{},192241,1,"""Africa""" +2024-09-21,9967,4288,"[\""Tablet\"", \""Monitor\""]",159.96,"{\""loyalty\"": \""28%\""}",81084,1,"""Europe""" +2024-11-29,9968,8889,"[\""Headphones\""]",1650.54,"{\""seasonal\"": \""24%\""}",167956,1,"""North America""" +2023-09-28,9969,8515,"[\""Wireless Mouse\"", \""Monitor\""]",2541.34,{},168331,1,"""Asia""" +2024-09-28,9970,9672,"[\""Charger\"", \""Tablet\""]",2680.19,{},229093,1,"""North America""" +2023-10-15,9971,6755,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2877.27,"{\""loyalty\"": \""23%\""}",24265,0,"""South America""" +2024-07-03,9972,5418,"[\""Monitor\""]",2661.72,"{\""loyalty\"": \""9%\""}",184347,0,"""North America""" +2023-06-09,9973,1756,"[\""Wireless Mouse\""]",2417.45,"{\""loyalty\"": \""9%\""}",198942,0,"""North America""" +2024-03-03,9974,2825,"[\""Keyboard\"", \""Charger\""]",729.77,{},42523,0,"""Africa""" +2024-10-27,9975,9473,"[\""Tablet\""]",3150.33,{},194487,0,"""Europe""" +2023-03-09,9976,2293,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4212.8,"{\"": \""15%\""}",148549,0,"""Europe""" +2023-11-21,9977,5308,"[\""Phone\"", \""Tablet\""]",245.23,{},226752,0,"""Europe""" +2023-08-03,9978,8137,"[\""Monitor\""]",1463.23,{},129101,0,"""Europe""" +2023-09-23,9979,1510,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2320.04,"{\""loyalty\"": \""24%\""}",47883,1,"""North America""" +2023-10-12,9980,4217,"[\""Charger\""]",1522.59,{},179742,1,"""Asia""" +2024-02-28,9981,2569,"[\""Headphones\"", \""Monitor\""]",251.29,"{\""seasonal\"": \""10%\""}",279989,1,"""South America""" +2024-05-04,9982,6293,"[\""Charger\"", \""Headphones\""]",4864.35,"{\""promo\"": \""22%\""}",51657,0,"""Europe""" +2023-06-21,9983,6862,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4955.46,{},126384,1,"""Asia""" +2024-03-03,9984,4568,"[\""Monitor\""]",4597.2,{},203223,0,"""South America""" +2023-09-18,9985,9360,"[\""Monitor\""]",3716.26,"{\""loyalty\"": \""24%\""}",70223,1,"""North America""" +2024-04-25,9986,3946,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3764.18,"{\""promo\"": \""19%\""}",24074,0,"""Europe""" +2023-11-17,9987,2043,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1742.62,{},163081,0,"""Asia""" +2023-08-18,9988,8574,"[\""Wireless Mouse\"", \""Monitor\""]",2605.7,"{\""seasonal\"": \""23%\""}",223893,0,"""Africa""" +2024-06-11,9989,8974,"[\""Headphones\""]",950.27,{},87794,0,"""South America""" +2024-12-30,9990,5114,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4033.79,"{\""loyalty\"": \""14%\""}",135379,0,"""Asia""" +2024-02-04,9991,8870,"[\""Keyboard\"", \""Monitor\""]",968.7,"{\""seasonal\"": \""14%\""}",87321,0,"""Africa""" +2024-09-22,9992,880,"[\""Headphones\""]",605.0,{},27772,1,"""Europe""" +2023-02-18,9993,1289,"[\""Phone\"", \""Wireless Mouse\""]",751.87,{},107205,1,"""Africa""" +2024-09-10,9994,9898,"[\""Charger\"", \""Laptop\""]",3104.45,{},96739,1,"""Europe""" +2024-03-18,9995,8026,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3627.37,"{\""loyalty\"": \""19%\""}",183030,1,"""North America""" +2024-04-13,9996,9339,"[\""Monitor\""]",3255.45,"{\""loyalty\"": \""19%\""}",79685,0,"""South America""" +2024-12-03,9997,1328,"[\""Tablet\""]",308.23,{},246922,1,"""Africa""" +2024-01-24,9998,405,"[\""Tablet\"", \""Laptop\""]",3673.05,{},195296,0,"""South America""" +2024-07-09,9999,6857,"[\""Tablet\""]",3481.15,{},260791,0,"""Asia""" +2023-07-23,10000,4129,"[\""Phone\"", \""Wireless Mouse\""]",649.23,"{\"": \""22%\""}",186514,1,"""Africa""" +2024-12-12,10001,3282,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",82.23,{},38917,1,"""Africa""" +2023-07-25,10002,2358,"[\""Monitor\""]",1925.72,"{\""promo\"": \""13%\""}",291343,1,"""Asia""" +2023-04-14,10003,5150,"[\""Wireless Mouse\""]",4789.89,"{\""loyalty\"": \""23%\""}",213019,0,"""Asia""" +2024-04-09,10004,1176,"[\""Phone\"", \""Tablet\""]",1536.13,"{\""promo\"": \""26%\""}",28664,0,"""Europe""" +2023-07-09,10005,2248,"[\""Monitor\""]",3460.1,{},165910,0,"""Europe""" +2023-09-15,10006,2397,"[\""Charger\"", \""Tablet\""]",3488.41,{},264698,0,"""South America""" +2024-11-16,10007,5582,"[\""Laptop\""]",2148.78,"{\""loyalty\"": \""23%\""}",172500,1,"""Asia""" +2023-04-12,10008,9079,"[\""Keyboard\""]",4479.97,{},93416,1,"""Asia""" +2024-03-19,10009,3232,"[\""Headphones\""]",4847.71,{},261978,1,"""Asia""" +2024-10-28,10010,8657,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3414.16,"{\""loyalty\"": \""28%\""}",21153,0,"""South America""" +2024-03-15,10011,8404,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",310.97,{},5184,0,"""Europe""" +2023-11-01,10012,5048,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3648.08,{},124701,0,"""South America""" +2024-06-20,10013,5793,"[\""Headphones\""]",4444.57,{},182250,0,"""Europe""" +2023-09-30,10014,431,"[\""Monitor\""]",4974.41,{},45332,0,"""Europe""" +2023-02-07,10015,4358,"[\""Laptop\"", \""Charger\""]",4000.33,{},281683,0,"""South America""" +2023-10-19,10016,441,"[\""Wireless Mouse\""]",4645.45,{},76663,1,"""North America""" +2024-08-27,10017,384,"[\""Phone\"", \""Wireless Mouse\""]",2635.46,{},3223,1,"""South America""" +2023-11-22,10018,477,"[\""Tablet\"", \""Charger\""]",3123.51,{},12329,0,"""Africa""" +2024-01-09,10019,7514,"[\""Wireless Mouse\""]",732.19,{},8379,0,"""Europe""" +2023-11-04,10020,8592,"[\""Monitor\"", \""Headphones\""]",4873.18,"{\""seasonal\"": \""5%\""}",249817,1,"""Africa""" +2023-12-27,10021,6861,"[\""Phone\"", \""Tablet\""]",157.36,"{\"": \""15%\""}",85896,0,"""South America""" +2023-10-11,10022,4779,"[\""Monitor\""]",2297.32,"{\""loyalty\"": \""23%\""}",72649,0,"""Asia""" +2023-03-05,10023,590,"[\""Monitor\"", \""Headphones\""]",2769.65,"{\"": \""7%\""}",164122,1,"""Africa""" +2023-07-26,10024,3829,"[\""Tablet\""]",3141.12,"{\""seasonal\"": \""26%\""}",268586,1,"""Asia""" +2024-06-22,10025,504,"[\""Phone\""]",2397.71,{},68647,0,"""Africa""" +2024-03-12,10026,2022,"[\""Keyboard\""]",4480.25,{},130248,0,"""Asia""" +2023-07-27,10027,463,"[\""Phone\""]",1658.43,"{\"": \""25%\""}",165751,1,"""Africa""" +2024-03-21,10028,5484,"[\""Wireless Mouse\"", \""Headphones\""]",99.02,"{\""loyalty\"": \""10%\""}",229498,1,"""Africa""" +2023-08-26,10029,7637,"[\""Phone\""]",401.92,"{\""loyalty\"": \""30%\""}",273081,0,"""Africa""" +2023-08-10,10030,2923,"[\""Tablet\"", \""Phone\""]",4630.17,"{\"": \""18%\""}",214143,1,"""Asia""" +2023-10-12,10031,1164,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2561.98,{},180004,0,"""Africa""" +2023-12-17,10032,5290,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4191.43,"{\"": \""12%\""}",222569,0,"""Africa""" +2023-10-24,10033,8757,"[\""Keyboard\""]",900.5,{},265173,1,"""South America""" +2024-05-21,10034,9936,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",211.08,{},60472,1,"""North America""" +2023-07-23,10035,9778,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2986.59,{},270806,0,"""North America""" +2024-07-20,10036,346,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",60.89,{},56364,1,"""South America""" +2024-10-25,10037,6906,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3774.38,{},147847,1,"""Asia""" +2024-10-05,10038,1889,"[\""Phone\"", \""Laptop\""]",3397.17,"{\"": \""9%\""}",77780,1,"""Asia""" +2024-12-25,10039,5320,"[\""Monitor\""]",2089.41,{},124650,1,"""Asia""" +2023-09-27,10040,2888,"[\""Wireless Mouse\""]",507.14,"{\""seasonal\"": \""24%\""}",223451,1,"""Europe""" +2024-07-17,10041,4236,"[\""Laptop\""]",2324.78,{},57455,1,"""Africa""" +2023-08-30,10042,3955,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4253.87,"{\""loyalty\"": \""29%\""}",104145,1,"""North America""" +2023-12-22,10043,1039,"[\""Monitor\""]",826.21,"{\""loyalty\"": \""27%\""}",50427,0,"""Africa""" +2024-06-11,10044,3863,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2021.02,"{\"": \""10%\""}",231453,0,"""Europe""" +2023-02-11,10045,4210,"[\""Keyboard\""]",4943.78,"{\""seasonal\"": \""12%\""}",79722,1,"""North America""" +2024-03-27,10046,7724,"[\""Tablet\""]",2412.32,{},127460,1,"""Africa""" +2024-02-01,10047,6328,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",744.91,"{\""loyalty\"": \""16%\""}",30098,1,"""South America""" +2024-02-22,10048,5602,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2935.58,"{\"": \""24%\""}",277567,0,"""Asia""" +2023-10-10,10049,7311,"[\""Laptop\""]",1529.25,"{\""promo\"": \""8%\""}",122043,1,"""South America""" +2024-10-10,10050,6969,"[\""Wireless Mouse\"", \""Laptop\""]",3460.3,"{\""seasonal\"": \""13%\""}",220616,0,"""Asia""" +2023-10-08,10051,4081,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2687.45,"{\""loyalty\"": \""12%\""}",141953,0,"""North America""" +2023-07-20,10052,3531,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4661.36,"{\"": \""10%\""}",28962,0,"""Asia""" +2024-03-26,10053,3426,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3102.69,{},283419,1,"""South America""" +2024-01-08,10054,4370,"[\""Phone\""]",2230.3,"{\""seasonal\"": \""11%\""}",270110,1,"""Asia""" +2023-08-16,10055,6044,"[\""Wireless Mouse\"", \""Laptop\""]",1848.46,"{\""seasonal\"": \""27%\""}",65065,0,"""Europe""" +2024-05-10,10056,6340,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2207.24,{},287146,0,"""North America""" +2024-10-13,10057,3036,"[\""Headphones\"", \""Laptop\""]",273.12,"{\""promo\"": \""7%\""}",297716,1,"""North America""" +2023-03-27,10058,6090,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2422.98,{},162533,0,"""Africa""" +2024-03-30,10059,3850,"[\""Monitor\""]",2759.07,"{\""seasonal\"": \""18%\""}",227197,0,"""Asia""" +2024-01-05,10060,1628,"[\""Headphones\""]",269.39,{},279054,0,"""Africa""" +2023-11-30,10061,7937,"[\""Headphones\""]",3497.22,"{\""seasonal\"": \""30%\""}",43326,0,"""Asia""" +2023-10-01,10062,7564,"[\""Monitor\"", \""Headphones\""]",2786.74,{},43166,1,"""Africa""" +2023-07-07,10063,5722,"[\""Wireless Mouse\"", \""Laptop\""]",2719.24,"{\""seasonal\"": \""11%\""}",88510,1,"""North America""" +2023-03-03,10064,7294,"[\""Laptop\""]",4340.98,"{\"": \""13%\""}",106865,0,"""South America""" +2024-08-12,10065,5285,"[\""Tablet\""]",3438.94,{},71222,0,"""Europe""" +2023-08-10,10066,9519,"[\""Phone\""]",2206.06,"{\""promo\"": \""11%\""}",185545,1,"""North America""" +2023-07-16,10067,7739,"[\""Monitor\"", \""Tablet\""]",1107.29,"{\"": \""18%\""}",242408,1,"""Africa""" +2024-06-29,10068,4596,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3965.02,"{\""loyalty\"": \""13%\""}",5419,0,"""Europe""" +2024-11-22,10069,5969,"[\""Wireless Mouse\""]",212.14,"{\"": \""16%\""}",39510,1,"""Europe""" +2023-01-25,10070,9842,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3303.11,"{\""seasonal\"": \""25%\""}",4290,0,"""Asia""" +2023-06-10,10071,1756,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3937.55,{},100865,1,"""Europe""" +2024-09-14,10072,7288,"[\""Phone\"", \""Monitor\""]",4681.66,{},275863,0,"""Asia""" +2023-04-04,10073,2254,"[\""Tablet\"", \""Headphones\""]",1935.41,{},297932,1,"""South America""" +2023-05-11,10074,2658,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",437.49,"{\""promo\"": \""7%\""}",44629,0,"""South America""" +2024-05-28,10075,9981,"[\""Headphones\"", \""Phone\""]",2253.92,"{\""promo\"": \""18%\""}",170945,1,"""North America""" +2023-08-22,10076,6657,"[\""Charger\""]",758.5,{},214878,0,"""Europe""" +2023-01-26,10077,1004,"[\""Keyboard\"", \""Headphones\""]",2187.34,{},64800,1,"""Europe""" +2023-03-12,10078,5650,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2903.37,"{\""promo\"": \""28%\""}",223222,1,"""North America""" +2023-05-29,10079,2118,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4910.82,{},209062,0,"""South America""" +2024-08-10,10080,9439,"[\""Wireless Mouse\""]",3706.9,{},162164,1,"""South America""" +2023-03-06,10081,3285,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",583.24,{},15260,1,"""Africa""" +2023-06-07,10082,7785,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3242.5,{},153631,1,"""Asia""" +2023-04-28,10083,9830,"[\""Keyboard\""]",1951.68,{},274967,1,"""North America""" +2024-08-05,10084,5155,"[\""Laptop\""]",3075.91,"{\"": \""21%\""}",239031,1,"""Asia""" +2023-11-05,10085,7992,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3724.93,"{\""seasonal\"": \""23%\""}",161474,1,"""Africa""" +2024-01-26,10086,4112,"[\""Keyboard\""]",3900.61,"{\""seasonal\"": \""29%\""}",105531,1,"""South America""" +2024-11-25,10087,3569,"[\""Charger\"", \""Wireless Mouse\""]",3163.18,"{\""loyalty\"": \""7%\""}",234365,1,"""North America""" +2023-06-18,10088,1352,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1598.53,{},101508,0,"""Europe""" +2023-11-08,10089,8953,"[\""Charger\""]",1154.08,"{\""loyalty\"": \""11%\""}",48419,1,"""North America""" +2024-04-14,10090,3857,"[\""Laptop\"", \""Keyboard\""]",485.99,"{\""loyalty\"": \""6%\""}",120410,0,"""North America""" +2024-06-27,10091,6253,"[\""Charger\""]",1405.23,"{\""promo\"": \""8%\""}",66369,1,"""Asia""" +2024-06-09,10092,9741,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1513.88,"{\""loyalty\"": \""11%\""}",177605,1,"""Africa""" +2024-08-27,10093,942,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3508.85,"{\""promo\"": \""26%\""}",154722,0,"""South America""" +2023-04-12,10094,3193,"[\""Charger\"", \""Laptop\""]",3896.44,"{\""seasonal\"": \""10%\""}",278254,1,"""South America""" +2024-10-03,10095,943,"[\""Headphones\""]",416.66,"{\"": \""5%\""}",79821,0,"""North America""" +2024-12-01,10096,5907,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4480.3,{},102662,0,"""Europe""" +2023-05-17,10097,4431,"[\""Wireless Mouse\""]",1515.16,"{\"": \""26%\""}",135818,1,"""Europe""" +2023-03-28,10098,5131,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",275.8,{},271136,1,"""South America""" +2024-07-11,10099,1895,"[\""Monitor\"", \""Wireless Mouse\""]",3044.73,"{\""promo\"": \""25%\""}",22848,0,"""North America""" +2023-07-07,10100,6247,"[\""Monitor\"", \""Laptop\""]",3825.62,{},227034,1,"""North America""" +2024-08-03,10101,9930,"[\""Headphones\""]",1067.63,"{\"": \""19%\""}",36774,0,"""Africa""" +2024-05-12,10102,7820,"[\""Wireless Mouse\""]",874.85,{},202226,1,"""Asia""" +2023-06-16,10103,7631,"[\""Phone\""]",3861.63,"{\"": \""17%\""}",261870,1,"""Europe""" +2024-12-06,10104,6886,"[\""Tablet\"", \""Keyboard\""]",422.53,"{\""loyalty\"": \""17%\""}",29879,0,"""Asia""" +2024-05-25,10105,7175,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4028.38,"{\""seasonal\"": \""8%\""}",61558,1,"""Africa""" +2024-11-29,10106,4881,"[\""Monitor\""]",3632.53,{},64672,0,"""Asia""" +2024-05-27,10107,987,"[\""Charger\"", \""Tablet\""]",3397.97,"{\"": \""14%\""}",97936,0,"""Africa""" +2023-07-25,10108,6382,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4740.39,"{\""promo\"": \""23%\""}",190926,0,"""North America""" +2024-04-02,10109,262,"[\""Laptop\"", \""Charger\""]",4934.63,"{\""promo\"": \""26%\""}",276099,1,"""Africa""" +2024-11-20,10110,4775,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1754.14,{},29005,1,"""Europe""" +2024-03-12,10111,7955,"[\""Tablet\"", \""Headphones\""]",3739.2,{},195774,0,"""South America""" +2023-06-23,10112,7177,"[\""Laptop\""]",3142.37,{},51674,1,"""Europe""" +2024-11-16,10113,937,"[\""Phone\""]",4126.06,"{\""promo\"": \""5%\""}",208488,0,"""South America""" +2023-10-22,10114,4324,"[\""Charger\"", \""Laptop\""]",4656.09,{},220913,0,"""Asia""" +2024-04-08,10115,3138,"[\""Phone\"", \""Monitor\""]",2346.7,{},201034,0,"""Europe""" +2023-05-11,10116,4955,"[\""Laptop\""]",3153.37,"{\""seasonal\"": \""14%\""}",71042,1,"""South America""" +2024-09-09,10117,3201,"[\""Wireless Mouse\"", \""Laptop\""]",1498.61,{},32907,0,"""Europe""" +2024-06-05,10118,3405,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",539.66,"{\""promo\"": \""27%\""}",207237,1,"""South America""" +2024-03-18,10119,2894,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1952.22,"{\""loyalty\"": \""28%\""}",8403,1,"""South America""" +2024-06-22,10120,973,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3361.27,"{\""loyalty\"": \""30%\""}",155354,0,"""North America""" +2023-01-18,10121,6626,"[\""Headphones\""]",4418.64,{},163789,0,"""Europe""" +2023-11-25,10122,9360,"[\""Keyboard\"", \""Laptop\""]",4701.46,{},203468,0,"""Africa""" +2023-07-02,10123,1940,"[\""Charger\""]",2654.22,{},242557,1,"""South America""" +2024-03-07,10124,1426,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",473.77,{},31224,1,"""Europe""" +2023-12-01,10125,7485,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3685.04,{},274774,0,"""North America""" +2023-08-10,10126,7758,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",831.22,{},78650,0,"""Asia""" +2024-09-05,10127,7503,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2187.34,"{\"": \""14%\""}",161275,0,"""Europe""" +2024-06-16,10128,4213,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3658.57,{},120977,0,"""Europe""" +2023-02-10,10129,8782,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1593.74,"{\""seasonal\"": \""20%\""}",65554,0,"""Asia""" +2023-04-11,10130,9789,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4538.49,"{\""loyalty\"": \""9%\""}",208145,1,"""Asia""" +2023-07-09,10131,464,"[\""Wireless Mouse\""]",1009.28,{},106229,0,"""Europe""" +2023-06-16,10132,8501,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1587.99,"{\""seasonal\"": \""11%\""}",198928,1,"""South America""" +2023-12-29,10133,5349,"[\""Laptop\"", \""Tablet\""]",4190.08,"{\""loyalty\"": \""15%\""}",185856,1,"""South America""" +2023-01-12,10134,5820,"[\""Keyboard\""]",4045.58,"{\"": \""27%\""}",38949,1,"""Asia""" +2023-12-15,10135,4189,"[\""Charger\"", \""Phone\""]",4737.08,{},155590,1,"""South America""" +2023-12-13,10136,4922,"[\""Headphones\"", \""Tablet\""]",4762.69,{},291286,0,"""Africa""" +2023-12-12,10137,6104,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3157.05,{},39403,1,"""South America""" +2024-01-04,10138,9867,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4202.26,"{\""seasonal\"": \""28%\""}",199455,0,"""Asia""" +2023-12-10,10139,9711,"[\""Tablet\""]",1935.31,"{\""loyalty\"": \""10%\""}",145553,0,"""Asia""" +2024-02-04,10140,3642,"[\""Wireless Mouse\"", \""Charger\""]",849.93,"{\""promo\"": \""13%\""}",116296,1,"""Africa""" +2024-03-08,10141,7562,"[\""Headphones\"", \""Charger\""]",4450.03,"{\""seasonal\"": \""23%\""}",234407,1,"""Africa""" +2024-09-10,10142,7760,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2758.76,{},120058,1,"""South America""" +2023-08-22,10143,9112,"[\""Charger\"", \""Tablet\""]",1250.1,"{\"": \""22%\""}",207581,1,"""South America""" +2023-11-26,10144,2244,"[\""Wireless Mouse\"", \""Phone\""]",4217.48,{},283697,0,"""Africa""" +2023-08-20,10145,9958,"[\""Phone\"", \""Headphones\""]",272.49,"{\""loyalty\"": \""19%\""}",73385,0,"""Europe""" +2024-08-24,10146,3779,"[\""Laptop\""]",287.99,{},262884,0,"""North America""" +2023-10-09,10147,4378,"[\""Wireless Mouse\""]",4850.05,"{\""seasonal\"": \""7%\""}",42836,0,"""Africa""" +2024-06-17,10148,6492,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1868.43,"{\""seasonal\"": \""27%\""}",279951,0,"""Asia""" +2023-08-10,10149,2590,"[\""Monitor\"", \""Headphones\""]",4565.58,"{\""seasonal\"": \""5%\""}",134876,0,"""Europe""" +2023-05-13,10150,7840,"[\""Laptop\""]",2266.63,{},24371,0,"""North America""" +2024-07-31,10151,6317,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",256.97,{},178721,1,"""Africa""" +2023-04-29,10152,4117,"[\""Headphones\""]",1021.83,"{\"": \""28%\""}",110332,0,"""North America""" +2023-07-23,10153,787,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4504.08,"{\""loyalty\"": \""12%\""}",250096,1,"""South America""" +2023-06-16,10154,3344,"[\""Monitor\""]",3589.46,{},145317,1,"""Europe""" +2023-07-24,10155,7913,"[\""Charger\""]",1029.46,{},159441,0,"""South America""" +2024-12-30,10156,6822,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3444.59,"{\""seasonal\"": \""15%\""}",69730,1,"""South America""" +2023-12-29,10157,8908,"[\""Wireless Mouse\""]",4289.48,"{\"": \""11%\""}",263188,1,"""Asia""" +2023-09-02,10158,5118,"[\""Keyboard\"", \""Charger\""]",1378.38,"{\"": \""21%\""}",54801,0,"""Europe""" +2024-05-03,10159,5786,"[\""Headphones\"", \""Phone\""]",4728.53,{},234013,0,"""South America""" +2023-04-12,10160,3734,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",75.26,"{\""seasonal\"": \""29%\""}",22920,1,"""Europe""" +2024-10-14,10161,7263,"[\""Headphones\""]",4749.86,"{\""loyalty\"": \""5%\""}",225798,0,"""North America""" +2023-04-27,10162,1780,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2379.52,"{\""seasonal\"": \""19%\""}",127898,1,"""Asia""" +2024-02-23,10163,495,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4329.53,{},107326,1,"""Europe""" +2023-08-23,10164,1506,"[\""Headphones\""]",282.88,"{\""seasonal\"": \""14%\""}",147843,0,"""North America""" +2024-09-04,10165,9757,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2525.56,{},53505,1,"""North America""" +2024-05-27,10166,8064,"[\""Wireless Mouse\"", \""Laptop\""]",2761.44,"{\"": \""14%\""}",212583,0,"""Asia""" +2024-11-11,10167,5302,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",498.67,{},156967,0,"""Africa""" +2023-01-15,10168,4663,"[\""Laptop\""]",313.59,{},95047,1,"""Europe""" +2023-08-03,10169,6340,"[\""Monitor\""]",2671.24,{},202967,1,"""Africa""" +2024-08-31,10170,1849,"[\""Tablet\"", \""Headphones\""]",670.59,"{\"": \""20%\""}",32617,0,"""South America""" +2023-02-19,10171,3028,"[\""Phone\"", \""Headphones\"", \""Charger\""]",225.14,"{\"": \""8%\""}",56204,0,"""North America""" +2023-10-26,10172,511,"[\""Phone\""]",4582.16,"{\""promo\"": \""15%\""}",80422,0,"""South America""" +2023-11-26,10173,2345,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",601.04,{},17307,0,"""Africa""" +2024-09-28,10174,7573,"[\""Monitor\""]",1534.94,"{\""promo\"": \""26%\""}",22086,1,"""Europe""" +2024-05-26,10175,4583,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2672.71,"{\"": \""8%\""}",124868,0,"""Africa""" +2024-10-11,10176,5466,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",88.04,{},290988,1,"""Africa""" +2024-08-22,10177,885,"[\""Laptop\"", \""Keyboard\""]",4724.67,"{\""seasonal\"": \""23%\""}",175979,1,"""North America""" +2024-01-10,10178,4091,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4950.59,{},196005,1,"""Asia""" +2024-10-29,10179,694,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1973.15,"{\""promo\"": \""16%\""}",286511,1,"""Africa""" +2023-07-06,10180,2930,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4286.6,"{\""loyalty\"": \""14%\""}",50764,0,"""Asia""" +2024-09-07,10181,3375,"[\""Monitor\"", \""Laptop\""]",2029.02,"{\""promo\"": \""18%\""}",53064,0,"""Africa""" +2024-06-17,10182,2834,"[\""Headphones\"", \""Keyboard\""]",1938.3,"{\""loyalty\"": \""7%\""}",297206,1,"""North America""" +2024-07-19,10183,3805,"[\""Charger\"", \""Phone\""]",1517.68,{},213887,1,"""Africa""" +2024-06-30,10184,7564,"[\""Monitor\""]",812.52,{},211636,0,"""Africa""" +2024-05-01,10185,6465,"[\""Charger\""]",338.11,{},271631,0,"""Africa""" +2023-04-12,10186,405,"[\""Wireless Mouse\""]",2419.81,"{\""promo\"": \""20%\""}",192536,1,"""Asia""" +2023-05-08,10187,7170,"[\""Phone\""]",998.54,"{\""promo\"": \""5%\""}",263814,0,"""Asia""" +2023-11-02,10188,4288,"[\""Tablet\""]",2952.98,{},183383,1,"""South America""" +2023-09-02,10189,9628,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4331.14,"{\"": \""27%\""}",115660,1,"""Asia""" +2024-06-13,10190,9435,"[\""Headphones\"", \""Monitor\""]",3019.56,{},32473,0,"""Africa""" +2024-03-10,10191,3693,"[\""Headphones\""]",2235.45,{},215425,0,"""Europe""" +2023-06-20,10192,6037,"[\""Laptop\""]",4536.99,"{\""seasonal\"": \""25%\""}",259620,1,"""South America""" +2024-09-28,10193,4864,"[\""Wireless Mouse\"", \""Tablet\""]",3024.33,"{\"": \""17%\""}",64968,0,"""South America""" +2024-07-10,10194,6227,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3984.15,{},64232,0,"""Europe""" +2023-08-09,10195,8514,"[\""Charger\""]",4642.96,{},3228,0,"""Africa""" +2023-02-28,10196,4240,"[\""Wireless Mouse\""]",3321.28,{},42834,0,"""Africa""" +2023-03-23,10197,2565,"[\""Charger\""]",1156.37,"{\"": \""15%\""}",215233,0,"""Europe""" +2023-08-12,10198,661,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4644.38,"{\""loyalty\"": \""19%\""}",159598,0,"""North America""" +2024-05-03,10199,9168,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4347.07,{},64089,0,"""Asia""" +2023-11-18,10200,5593,"[\""Wireless Mouse\"", \""Tablet\""]",820.33,"{\""seasonal\"": \""24%\""}",86432,0,"""South America""" +2023-06-23,10201,9414,"[\""Charger\""]",3325.85,"{\""promo\"": \""15%\""}",110922,1,"""South America""" +2023-01-27,10202,9064,"[\""Tablet\"", \""Monitor\""]",3303.68,{},264336,0,"""Africa""" +2024-06-01,10203,21,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",709.14,{},52610,0,"""North America""" +2024-04-24,10204,1854,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2176.06,"{\""seasonal\"": \""27%\""}",172124,0,"""South America""" +2024-05-27,10205,7098,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3265.63,"{\""loyalty\"": \""5%\""}",222461,1,"""Asia""" +2024-08-27,10206,8426,"[\""Headphones\""]",2357.82,"{\""loyalty\"": \""25%\""}",58929,0,"""South America""" +2023-08-02,10207,4170,"[\""Tablet\"", \""Laptop\""]",1218.48,{},268724,1,"""North America""" +2023-03-22,10208,8734,"[\""Keyboard\"", \""Monitor\""]",137.39,"{\""loyalty\"": \""18%\""}",146793,1,"""North America""" +2024-05-10,10209,9198,"[\""Monitor\""]",3823.16,{},219146,1,"""Europe""" +2024-06-18,10210,5069,"[\""Keyboard\"", \""Monitor\""]",3598.8,"{\""promo\"": \""30%\""}",222162,0,"""South America""" +2023-06-15,10211,7048,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",364.14,{},40741,0,"""Africa""" +2024-04-06,10212,1468,"[\""Monitor\""]",589.71,"{\""loyalty\"": \""19%\""}",244553,0,"""Asia""" +2023-08-11,10213,4159,"[\""Charger\"", \""Wireless Mouse\""]",3958.41,{},273012,0,"""Africa""" +2023-08-28,10214,3227,"[\""Keyboard\"", \""Headphones\""]",879.23,"{\""promo\"": \""29%\""}",210380,1,"""Europe""" +2023-08-24,10215,2512,"[\""Monitor\""]",3107.29,{},256193,1,"""Europe""" +2023-03-26,10216,2302,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2164.18,"{\""loyalty\"": \""11%\""}",190338,1,"""Asia""" +2023-02-07,10217,6700,"[\""Headphones\"", \""Monitor\""]",1083.41,"{\""promo\"": \""18%\""}",98211,1,"""Africa""" +2024-05-19,10218,1796,"[\""Phone\"", \""Tablet\""]",2954.98,"{\""promo\"": \""18%\""}",112892,1,"""Africa""" +2023-09-18,10219,8883,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2400.97,"{\""seasonal\"": \""27%\""}",159015,1,"""Europe""" +2023-03-20,10220,1483,"[\""Monitor\""]",973.07,"{\""promo\"": \""6%\""}",230073,1,"""Asia""" +2023-12-16,10221,320,"[\""Laptop\""]",2874.42,"{\""loyalty\"": \""12%\""}",229265,1,"""North America""" +2024-01-06,10222,2840,"[\""Tablet\"", \""Charger\""]",4600.09,{},199462,0,"""Asia""" +2023-08-10,10223,5945,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3004.38,{},92196,1,"""Africa""" +2023-07-07,10224,8096,"[\""Wireless Mouse\""]",759.2,"{\""seasonal\"": \""28%\""}",75757,1,"""Europe""" +2023-06-05,10225,8187,"[\""Charger\""]",3639.41,{},113680,1,"""North America""" +2024-12-02,10226,1564,"[\""Keyboard\""]",3513.06,"{\""loyalty\"": \""8%\""}",153128,1,"""Asia""" +2023-12-21,10227,6670,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",451.64,"{\"": \""6%\""}",65625,1,"""Europe""" +2023-12-29,10228,6000,"[\""Monitor\""]",4561.62,{},4157,1,"""Europe""" +2023-10-28,10229,5580,"[\""Monitor\""]",2107.8,"{\""seasonal\"": \""23%\""}",50131,1,"""Asia""" +2024-11-21,10230,11,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4246.24,{},90979,1,"""Asia""" +2023-12-28,10231,5929,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2082.11,{},19991,1,"""Europe""" +2023-10-07,10232,4999,"[\""Wireless Mouse\"", \""Monitor\""]",1016.46,"{\"": \""29%\""}",153049,1,"""South America""" +2024-05-17,10233,3798,"[\""Laptop\"", \""Wireless Mouse\""]",761.25,"{\""seasonal\"": \""25%\""}",152702,0,"""North America""" +2024-03-19,10234,3247,"[\""Monitor\"", \""Keyboard\""]",1785.97,{},188299,1,"""Africa""" +2024-10-08,10235,8957,"[\""Laptop\""]",1865.27,{},63712,0,"""Africa""" +2023-12-13,10236,4147,"[\""Keyboard\""]",2995.28,"{\""seasonal\"": \""28%\""}",201054,1,"""Europe""" +2023-08-23,10237,456,"[\""Tablet\""]",3143.99,{},27117,0,"""Europe""" +2024-04-13,10238,6452,"[\""Phone\"", \""Keyboard\""]",2306.81,"{\""seasonal\"": \""23%\""}",67012,1,"""Asia""" +2024-07-22,10239,4210,"[\""Headphones\""]",2202.87,{},266790,1,"""North America""" +2024-07-30,10240,6999,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3172.32,{},42531,1,"""Europe""" +2024-09-07,10241,6910,"[\""Wireless Mouse\"", \""Charger\""]",138.74,"{\"": \""27%\""}",208675,1,"""Asia""" +2024-04-16,10242,4661,"[\""Laptop\"", \""Monitor\""]",2965.16,{},22685,0,"""Asia""" +2023-04-14,10243,5692,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3904.41,"{\""seasonal\"": \""17%\""}",164835,1,"""Asia""" +2024-05-03,10244,8191,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",594.72,"{\""loyalty\"": \""26%\""}",15590,1,"""North America""" +2023-06-04,10245,1782,"[\""Phone\""]",2271.59,"{\""loyalty\"": \""13%\""}",249269,1,"""South America""" +2023-11-18,10246,3989,"[\""Charger\"", \""Monitor\""]",3337.47,"{\""promo\"": \""27%\""}",72473,1,"""North America""" +2023-04-27,10247,8652,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4870.73,{},131122,1,"""South America""" +2023-03-27,10248,7866,"[\""Laptop\""]",3638.11,{},187831,0,"""North America""" +2023-01-28,10249,1846,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4286.74,"{\""promo\"": \""25%\""}",105903,0,"""South America""" +2024-05-15,10250,8120,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2597.45,"{\""promo\"": \""17%\""}",46915,0,"""North America""" +2023-05-22,10251,2318,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4626.62,{},280500,1,"""Europe""" +2024-05-06,10252,9024,"[\""Headphones\""]",1286.91,"{\""loyalty\"": \""30%\""}",123903,1,"""Africa""" +2023-03-28,10253,5883,"[\""Wireless Mouse\"", \""Charger\""]",254.51,{},97585,1,"""South America""" +2023-09-28,10254,2940,"[\""Charger\"", \""Wireless Mouse\""]",1516.04,"{\"": \""11%\""}",155278,1,"""North America""" +2023-01-14,10255,8376,"[\""Tablet\""]",1305.85,"{\""loyalty\"": \""25%\""}",80575,1,"""Africa""" +2023-02-11,10256,5347,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2759.05,"{\""seasonal\"": \""11%\""}",298873,1,"""Europe""" +2023-02-05,10257,5695,"[\""Charger\""]",186.67,{},136999,1,"""South America""" +2023-10-27,10258,6190,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",934.85,{},150349,1,"""South America""" +2024-11-07,10259,1941,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1482.58,"{\""promo\"": \""18%\""}",216685,1,"""Africa""" +2023-06-14,10260,6033,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4097.38,"{\"": \""7%\""}",34999,1,"""Asia""" +2024-06-05,10261,9980,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1102.13,{},62684,1,"""South America""" +2023-05-16,10262,5794,"[\""Tablet\"", \""Charger\""]",531.16,{},229734,1,"""South America""" +2024-09-13,10263,1520,"[\""Wireless Mouse\"", \""Headphones\""]",248.9,{},159143,0,"""South America""" +2023-02-06,10264,4958,"[\""Monitor\""]",4425.41,{},174142,1,"""Africa""" +2023-03-02,10265,7807,"[\""Charger\"", \""Headphones\""]",946.28,{},210478,1,"""Africa""" +2024-06-10,10266,2646,"[\""Monitor\""]",4534.47,"{\""loyalty\"": \""30%\""}",142802,0,"""South America""" +2024-06-24,10267,4826,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1700.14,{},278687,1,"""Europe""" +2023-07-04,10268,839,"[\""Monitor\"", \""Tablet\""]",4682.63,"{\""seasonal\"": \""19%\""}",140397,1,"""Europe""" +2023-02-07,10269,3489,"[\""Wireless Mouse\""]",1619.93,{},174811,1,"""North America""" +2024-08-22,10270,9286,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2203.24,"{\""promo\"": \""14%\""}",150235,0,"""Africa""" +2023-12-13,10271,4613,"[\""Keyboard\""]",4877.02,"{\""loyalty\"": \""28%\""}",80393,0,"""Asia""" +2024-12-17,10272,1382,"[\""Phone\""]",1567.35,"{\""loyalty\"": \""25%\""}",85772,1,"""Africa""" +2023-07-10,10273,214,"[\""Charger\"", \""Monitor\""]",359.74,"{\""promo\"": \""18%\""}",14336,0,"""North America""" +2023-07-30,10274,6118,"[\""Charger\""]",3247.33,"{\"": \""23%\""}",175894,1,"""South America""" +2024-08-03,10275,4827,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4976.73,"{\""loyalty\"": \""14%\""}",167550,0,"""Africa""" +2024-03-24,10276,9662,"[\""Charger\""]",428.88,"{\"": \""6%\""}",268947,0,"""Asia""" +2024-01-16,10277,6254,"[\""Keyboard\""]",3812.84,"{\""promo\"": \""7%\""}",47152,0,"""Africa""" +2024-02-18,10278,7694,"[\""Wireless Mouse\"", \""Laptop\""]",1411.4,{},224879,0,"""North America""" +2023-09-25,10279,6438,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4198.93,"{\""loyalty\"": \""22%\""}",279102,1,"""Europe""" +2024-07-23,10280,4896,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2303.4,{},294982,1,"""Europe""" +2023-03-25,10281,4302,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3685.25,{},280045,1,"""Asia""" +2024-02-06,10282,8251,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4229.85,{},90130,0,"""Asia""" +2024-03-08,10283,1488,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3508.51,"{\"": \""5%\""}",282869,1,"""Africa""" +2024-03-14,10284,6783,"[\""Headphones\""]",1937.73,"{\"": \""25%\""}",64964,1,"""Europe""" +2023-01-06,10285,2721,"[\""Charger\"", \""Wireless Mouse\""]",1246.06,{},37941,0,"""Europe""" +2024-09-28,10286,4395,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3024.79,"{\""promo\"": \""5%\""}",136767,1,"""North America""" +2024-01-21,10287,9491,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3385.6,"{\""promo\"": \""23%\""}",128029,1,"""South America""" +2023-12-17,10288,516,"[\""Phone\""]",3001.62,{},226833,1,"""South America""" +2024-08-16,10289,6682,"[\""Keyboard\""]",442.28,"{\""seasonal\"": \""23%\""}",236557,1,"""Africa""" +2023-11-05,10290,6294,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1220.28,"{\""promo\"": \""6%\""}",67990,1,"""North America""" +2024-01-11,10291,7769,"[\""Phone\"", \""Charger\""]",1646.11,"{\""promo\"": \""18%\""}",155337,1,"""Europe""" +2023-05-30,10292,7667,"[\""Wireless Mouse\""]",4366.79,{},170200,0,"""South America""" +2023-04-28,10293,7607,"[\""Charger\"", \""Headphones\""]",1455.74,"{\""loyalty\"": \""12%\""}",202965,0,"""Africa""" +2024-12-28,10294,4109,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3181.67,"{\""loyalty\"": \""9%\""}",106537,1,"""Europe""" +2023-07-17,10295,3193,"[\""Monitor\"", \""Tablet\""]",4549.1,"{\""promo\"": \""13%\""}",167845,0,"""South America""" +2023-10-13,10296,4336,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3776.84,{},223725,1,"""Africa""" +2024-12-14,10297,4469,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2384.05,{},128705,1,"""North America""" +2023-03-10,10298,2418,"[\""Keyboard\"", \""Headphones\""]",4116.27,"{\""loyalty\"": \""14%\""}",189690,1,"""North America""" +2023-01-26,10299,2292,"[\""Charger\"", \""Headphones\""]",4233.71,"{\""promo\"": \""12%\""}",296214,1,"""Europe""" +2024-02-24,10300,3632,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1201.9,{},230882,1,"""Africa""" +2023-05-28,10301,8098,"[\""Laptop\""]",1821.82,{},264669,0,"""Europe""" +2023-02-16,10302,6478,"[\""Charger\"", \""Headphones\""]",308.15,"{\""seasonal\"": \""14%\""}",12539,0,"""Europe""" +2024-08-08,10303,863,"[\""Laptop\"", \""Monitor\""]",1853.08,{},157000,0,"""Asia""" +2023-03-15,10304,5069,"[\""Charger\""]",1001.73,"{\""promo\"": \""10%\""}",106242,1,"""Asia""" +2024-04-07,10305,3514,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1970.22,{},58829,0,"""South America""" +2024-04-17,10306,3751,"[\""Wireless Mouse\""]",3997.07,"{\""promo\"": \""16%\""}",132088,0,"""Africa""" +2024-02-09,10307,6994,"[\""Wireless Mouse\""]",3847.64,"{\""promo\"": \""19%\""}",63265,0,"""North America""" +2023-10-19,10308,7881,"[\""Charger\"", \""Tablet\""]",1476.51,{},117567,0,"""South America""" +2023-12-15,10309,3416,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3727.71,{},139537,0,"""Europe""" +2023-05-28,10310,9918,"[\""Charger\"", \""Headphones\""]",4962.82,"{\"": \""26%\""}",219187,0,"""Africa""" +2023-11-03,10311,2477,"[\""Phone\"", \""Keyboard\""]",1310.21,{},267690,0,"""Europe""" +2024-09-18,10312,6063,"[\""Charger\""]",4598.3,"{\""promo\"": \""15%\""}",141764,1,"""South America""" +2023-06-21,10313,7202,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1334.13,"{\"": \""7%\""}",171404,0,"""Africa""" +2023-06-26,10314,4977,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2160.4,{},65372,1,"""North America""" +2024-09-07,10315,8459,"[\""Headphones\"", \""Charger\""]",2378.67,"{\"": \""18%\""}",120790,1,"""South America""" +2024-01-08,10316,7494,"[\""Phone\"", \""Wireless Mouse\""]",724.5,"{\""promo\"": \""22%\""}",292009,1,"""Asia""" +2023-05-17,10317,7536,"[\""Keyboard\""]",1141.06,"{\""loyalty\"": \""30%\""}",87582,0,"""Africa""" +2024-06-02,10318,4167,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",549.26,"{\""loyalty\"": \""14%\""}",89802,1,"""Europe""" +2024-04-17,10319,299,"[\""Laptop\"", \""Phone\""]",302.18,"{\""promo\"": \""21%\""}",239924,0,"""South America""" +2023-02-16,10320,1382,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",807.1,"{\""seasonal\"": \""17%\""}",186913,0,"""Asia""" +2023-02-17,10321,9468,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4364.23,{},203057,1,"""Asia""" +2023-06-04,10322,5103,"[\""Monitor\""]",4299.49,{},243373,0,"""South America""" +2024-11-25,10323,2245,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",130.45,"{\""seasonal\"": \""26%\""}",96954,1,"""South America""" +2023-07-14,10324,8547,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2125.31,{},162127,1,"""Europe""" +2023-06-03,10325,2367,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1820.93,{},271238,0,"""Asia""" +2024-09-28,10326,7173,"[\""Headphones\""]",1016.54,"{\""seasonal\"": \""20%\""}",91357,0,"""Europe""" +2024-07-16,10327,509,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",207.55,{},64424,0,"""North America""" +2024-06-25,10328,5948,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3510.19,"{\"": \""5%\""}",298355,1,"""North America""" +2024-04-12,10329,7876,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",589.16,{},267400,0,"""South America""" +2023-10-13,10330,1161,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3920.48,{},33713,0,"""Europe""" +2024-05-30,10331,2474,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3917.21,"{\""seasonal\"": \""25%\""}",45093,0,"""Europe""" +2024-10-03,10332,2867,"[\""Wireless Mouse\""]",291.07,"{\""seasonal\"": \""25%\""}",60552,0,"""North America""" +2023-01-22,10333,7194,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2244.06,"{\"": \""15%\""}",220528,1,"""Europe""" +2024-04-27,10334,1504,"[\""Charger\""]",2283.33,{},184429,0,"""Asia""" +2024-08-15,10335,9614,"[\""Headphones\"", \""Laptop\""]",3517.75,"{\"": \""29%\""}",184698,1,"""South America""" +2023-08-24,10336,1905,"[\""Laptop\"", \""Headphones\""]",3873.31,"{\"": \""18%\""}",50339,0,"""North America""" +2024-07-25,10337,5266,"[\""Tablet\""]",3295.94,{},299231,1,"""South America""" +2023-03-29,10338,6227,"[\""Phone\"", \""Monitor\""]",3923.82,{},235175,0,"""Europe""" +2024-01-02,10339,5691,"[\""Tablet\""]",3503.3,"{\"": \""23%\""}",154385,1,"""Africa""" +2023-09-08,10340,8548,"[\""Tablet\""]",4886.43,"{\""seasonal\"": \""30%\""}",65911,1,"""Asia""" +2024-06-25,10341,233,"[\""Laptop\""]",2340.6,"{\"": \""30%\""}",25522,1,"""Asia""" +2023-06-23,10342,4811,"[\""Charger\"", \""Keyboard\""]",4671.51,{},231434,0,"""South America""" +2024-03-26,10343,2185,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4182.67,{},72612,1,"""South America""" +2023-01-30,10344,5503,"[\""Keyboard\""]",1376.22,"{\""seasonal\"": \""15%\""}",123717,1,"""Europe""" +2024-08-09,10345,7093,"[\""Headphones\"", \""Charger\""]",3713.56,{},155186,0,"""Europe""" +2023-04-11,10346,3662,"[\""Tablet\"", \""Monitor\""]",2233.32,"{\"": \""16%\""}",162983,0,"""South America""" +2023-09-25,10347,8832,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3430.43,"{\""loyalty\"": \""6%\""}",225225,0,"""Europe""" +2023-03-18,10348,2878,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3819.49,{},299551,0,"""North America""" +2024-12-15,10349,4840,"[\""Headphones\"", \""Phone\""]",4291.23,"{\"": \""22%\""}",61839,1,"""North America""" +2023-11-26,10350,6634,"[\""Tablet\""]",3789.43,"{\"": \""14%\""}",51194,1,"""Europe""" +2023-07-15,10351,7903,"[\""Headphones\""]",2489.23,"{\""promo\"": \""17%\""}",194685,0,"""South America""" +2023-11-12,10352,2439,"[\""Tablet\"", \""Laptop\""]",4986.71,{},273175,0,"""Asia""" +2023-04-02,10353,6192,"[\""Laptop\""]",4964.95,{},256285,1,"""Europe""" +2024-11-21,10354,4705,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1333.71,"{\""promo\"": \""9%\""}",218364,0,"""Asia""" +2023-09-06,10355,2975,"[\""Monitor\"", \""Phone\""]",3274.77,"{\""seasonal\"": \""19%\""}",113583,1,"""Africa""" +2023-04-06,10356,7041,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1484.53,"{\"": \""25%\""}",164639,0,"""Asia""" +2024-09-07,10357,8898,"[\""Keyboard\"", \""Wireless Mouse\""]",118.17,{},197518,0,"""Europe""" +2024-08-03,10358,7484,"[\""Monitor\""]",2898.41,"{\""promo\"": \""8%\""}",277181,1,"""Africa""" +2024-02-08,10359,6313,"[\""Laptop\"", \""Phone\""]",1053.1,"{\""seasonal\"": \""16%\""}",93985,1,"""Africa""" +2023-03-13,10360,8863,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",254.5,{},226703,1,"""North America""" +2024-08-17,10361,5619,"[\""Keyboard\""]",4158.3,"{\""seasonal\"": \""11%\""}",63737,1,"""Africa""" +2023-01-06,10362,112,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1983.69,"{\""promo\"": \""29%\""}",150443,1,"""Africa""" +2024-02-04,10363,7103,"[\""Headphones\"", \""Monitor\""]",2724.3,"{\""loyalty\"": \""7%\""}",202494,1,"""Africa""" +2024-04-02,10364,6932,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3340.98,{},79733,0,"""Europe""" +2023-07-19,10365,9982,"[\""Keyboard\""]",2542.67,{},210855,1,"""North America""" +2024-01-03,10366,7819,"[\""Laptop\"", \""Keyboard\""]",97.6,{},256487,1,"""Europe""" +2023-03-02,10367,9120,"[\""Laptop\""]",113.55,{},129147,0,"""North America""" +2024-07-08,10368,9777,"[\""Monitor\""]",643.3,"{\"": \""22%\""}",46901,0,"""Asia""" +2024-08-20,10369,9985,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4569.84,"{\""promo\"": \""22%\""}",32105,1,"""Asia""" +2023-08-08,10370,3389,"[\""Monitor\""]",4708.1,{},76454,1,"""Europe""" +2024-06-27,10371,6920,"[\""Tablet\"", \""Wireless Mouse\""]",3431.2,{},45517,1,"""Africa""" +2024-09-15,10372,4931,"[\""Phone\"", \""Monitor\""]",3503.55,"{\""loyalty\"": \""25%\""}",226320,0,"""North America""" +2024-01-31,10373,971,"[\""Monitor\"", \""Charger\""]",3628.64,"{\""loyalty\"": \""9%\""}",46952,0,"""Europe""" +2023-10-28,10374,5386,"[\""Phone\"", \""Keyboard\""]",3854.01,"{\"": \""19%\""}",51099,0,"""South America""" +2023-01-01,10375,1596,"[\""Tablet\""]",2534.12,"{\""seasonal\"": \""21%\""}",270534,0,"""North America""" +2023-01-13,10376,3491,"[\""Wireless Mouse\""]",2986.05,{},69379,0,"""North America""" +2023-03-09,10377,8354,"[\""Wireless Mouse\""]",2158.48,"{\"": \""12%\""}",9292,1,"""Europe""" +2023-03-05,10378,7866,"[\""Headphones\"", \""Monitor\""]",3186.99,{},190864,1,"""Asia""" +2023-07-03,10379,4195,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",557.35,{},90842,1,"""North America""" +2023-04-15,10380,347,"[\""Monitor\""]",1571.07,{},185021,0,"""Europe""" +2024-09-07,10381,4979,"[\""Headphones\"", \""Monitor\""]",3683.79,"{\""loyalty\"": \""28%\""}",100239,1,"""Asia""" +2023-05-17,10382,9788,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",438.84,"{\"": \""29%\""}",111877,1,"""South America""" +2023-12-16,10383,7165,"[\""Keyboard\"", \""Wireless Mouse\""]",3777.64,"{\"": \""28%\""}",109702,1,"""Europe""" +2023-10-07,10384,1782,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3215.77,"{\""loyalty\"": \""23%\""}",190072,0,"""Europe""" +2023-09-24,10385,3000,"[\""Phone\"", \""Tablet\""]",4916.52,{},124264,0,"""Asia""" +2023-10-13,10386,6116,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1255.3,{},208796,1,"""Asia""" +2024-02-11,10387,1617,"[\""Headphones\"", \""Wireless Mouse\""]",1297.37,"{\""loyalty\"": \""30%\""}",139386,0,"""Africa""" +2023-02-19,10388,710,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3193.57,"{\""promo\"": \""24%\""}",257575,0,"""North America""" +2023-05-08,10389,1550,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3777.86,"{\"": \""6%\""}",34405,0,"""Asia""" +2023-03-01,10390,4195,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",849.16,{},20719,0,"""North America""" +2023-02-02,10391,5258,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1824.1,"{\""seasonal\"": \""28%\""}",8053,0,"""North America""" +2023-08-05,10392,4740,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1432.48,"{\""promo\"": \""9%\""}",170990,1,"""Asia""" +2023-01-02,10393,2367,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2120.18,"{\"": \""8%\""}",292701,0,"""North America""" +2024-05-12,10394,1336,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4730.29,{},87882,0,"""Asia""" +2024-10-30,10395,276,"[\""Wireless Mouse\""]",981.11,{},123673,0,"""Africa""" +2024-04-26,10396,4326,"[\""Monitor\""]",4727.3,{},209808,1,"""Africa""" +2024-02-12,10397,5388,"[\""Phone\"", \""Tablet\""]",1556.61,"{\"": \""22%\""}",212022,0,"""Africa""" +2023-02-09,10398,9771,"[\""Laptop\""]",353.82,"{\"": \""19%\""}",177455,1,"""South America""" +2024-09-16,10399,1901,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1245.68,{},247661,1,"""Africa""" +2023-10-04,10400,6573,"[\""Headphones\"", \""Laptop\""]",2996.37,{},237671,0,"""Africa""" +2024-09-17,10401,2695,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",432.72,"{\""loyalty\"": \""28%\""}",173216,0,"""North America""" +2024-09-17,10402,8617,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1018.91,"{\""loyalty\"": \""25%\""}",79450,0,"""Africa""" +2023-05-25,10403,600,"[\""Laptop\""]",3238.91,{},283310,1,"""North America""" +2024-06-29,10404,3224,"[\""Laptop\""]",3932.32,"{\""loyalty\"": \""7%\""}",271055,0,"""Africa""" +2024-11-24,10405,5741,"[\""Laptop\"", \""Monitor\""]",199.06,"{\"": \""6%\""}",230900,0,"""North America""" +2023-03-28,10406,123,"[\""Tablet\"", \""Headphones\""]",529.59,"{\""seasonal\"": \""30%\""}",260580,0,"""North America""" +2023-03-12,10407,6327,"[\""Laptop\"", \""Wireless Mouse\""]",4101.9,{},217882,0,"""South America""" +2024-01-20,10408,8990,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4920.6,"{\""promo\"": \""14%\""}",195682,0,"""Africa""" +2023-11-03,10409,4558,"[\""Monitor\""]",163.26,"{\"": \""15%\""}",119387,1,"""Asia""" +2024-08-01,10410,8940,"[\""Charger\"", \""Monitor\""]",1738.65,"{\"": \""23%\""}",118057,0,"""Africa""" +2024-11-05,10411,8314,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4289.05,{},243689,0,"""Europe""" +2024-02-05,10412,5282,"[\""Charger\""]",4997.53,{},282241,1,"""Africa""" +2024-03-19,10413,8676,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3887.07,{},16357,0,"""Asia""" +2023-11-29,10414,6875,"[\""Tablet\"", \""Charger\""]",671.45,{},220683,0,"""Africa""" +2023-01-30,10415,5822,"[\""Wireless Mouse\"", \""Headphones\""]",561.72,"{\"": \""24%\""}",127498,1,"""South America""" +2023-11-17,10416,5127,"[\""Wireless Mouse\""]",699.65,{},54931,1,"""Africa""" +2023-12-30,10417,1039,"[\""Keyboard\""]",345.59,"{\""seasonal\"": \""16%\""}",278378,0,"""North America""" +2023-08-29,10418,9857,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2177.84,{},285291,1,"""North America""" +2024-06-28,10419,1112,"[\""Charger\""]",3259.45,"{\""seasonal\"": \""21%\""}",61036,0,"""Africa""" +2024-12-16,10420,2046,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1487.8,{},182461,0,"""North America""" +2024-07-05,10421,5326,"[\""Wireless Mouse\""]",2637.55,{},273399,0,"""Africa""" +2023-11-20,10422,3284,"[\""Headphones\"", \""Charger\""]",4619.53,"{\""loyalty\"": \""11%\""}",289619,1,"""Asia""" +2024-12-27,10423,792,"[\""Headphones\""]",1381.4,"{\"": \""29%\""}",122750,0,"""South America""" +2023-11-12,10424,5607,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",663.6,"{\""promo\"": \""30%\""}",112901,0,"""North America""" +2024-01-09,10425,8665,"[\""Keyboard\"", \""Monitor\""]",2908.67,{},46087,1,"""Africa""" +2023-07-11,10426,7297,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3770.26,{},195193,0,"""Europe""" +2024-11-10,10427,127,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4588.86,"{\"": \""13%\""}",244788,1,"""Asia""" +2024-04-25,10428,2499,"[\""Wireless Mouse\"", \""Monitor\""]",2252.62,"{\"": \""8%\""}",129216,1,"""South America""" +2024-04-03,10429,90,"[\""Wireless Mouse\"", \""Laptop\""]",3579.56,"{\"": \""20%\""}",284123,1,"""South America""" +2023-03-08,10430,7034,"[\""Wireless Mouse\""]",3516.96,{},154081,0,"""North America""" +2023-07-15,10431,7523,"[\""Charger\"", \""Monitor\""]",1151.8,{},68322,1,"""Africa""" +2024-12-04,10432,2416,"[\""Wireless Mouse\"", \""Keyboard\""]",3589.15,{},269483,0,"""Africa""" +2024-05-31,10433,6453,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",620.79,{},8599,1,"""Africa""" +2024-08-01,10434,2875,"[\""Phone\""]",3752.36,"{\""seasonal\"": \""13%\""}",133088,0,"""South America""" +2023-07-21,10435,4786,"[\""Tablet\"", \""Headphones\""]",4399.18,"{\"": \""26%\""}",183488,0,"""North America""" +2024-09-21,10436,6692,"[\""Headphones\""]",1646.07,"{\""promo\"": \""10%\""}",177657,0,"""South America""" +2024-04-25,10437,29,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4620.6,"{\""promo\"": \""26%\""}",11938,0,"""South America""" +2024-12-30,10438,6786,"[\""Phone\"", \""Headphones\""]",4635.72,{},170195,0,"""Europe""" +2023-10-06,10439,4245,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3443.7,{},35123,0,"""Asia""" +2023-01-23,10440,35,"[\""Headphones\"", \""Keyboard\""]",4057.59,"{\""promo\"": \""7%\""}",188661,0,"""Asia""" +2024-09-11,10441,6835,"[\""Charger\"", \""Keyboard\""]",3389.49,{},227315,0,"""Europe""" +2023-09-05,10442,6332,"[\""Wireless Mouse\"", \""Tablet\""]",2810.04,{},199044,0,"""Asia""" +2024-09-03,10443,8012,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1531.39,"{\""loyalty\"": \""5%\""}",108859,1,"""Europe""" +2024-08-13,10444,3966,"[\""Tablet\""]",2573.31,{},263931,1,"""Africa""" +2023-12-07,10445,7242,"[\""Phone\""]",635.3,"{\""seasonal\"": \""6%\""}",128284,1,"""Africa""" +2023-12-15,10446,8874,"[\""Charger\"", \""Wireless Mouse\""]",3460.48,{},98378,1,"""Africa""" +2023-08-18,10447,8766,"[\""Headphones\""]",363.73,"{\"": \""21%\""}",82967,0,"""Asia""" +2023-07-21,10448,6113,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3118.03,"{\""seasonal\"": \""9%\""}",72762,1,"""Africa""" +2023-07-26,10449,1833,"[\""Charger\""]",3402.0,{},98403,0,"""Asia""" +2023-10-19,10450,3750,"[\""Charger\"", \""Headphones\""]",4215.49,{},133102,1,"""South America""" +2023-12-29,10451,8079,"[\""Charger\"", \""Tablet\""]",3917.82,{},258569,0,"""South America""" +2023-07-20,10452,4426,"[\""Headphones\""]",691.45,{},175638,1,"""Asia""" +2024-06-01,10453,3046,"[\""Keyboard\"", \""Phone\""]",1588.82,"{\""loyalty\"": \""28%\""}",37068,0,"""Europe""" +2023-12-22,10454,4196,"[\""Monitor\"", \""Headphones\""]",3577.69,{},126905,1,"""Asia""" +2024-10-09,10455,6576,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",365.03,{},114580,0,"""South America""" +2024-02-15,10456,5528,"[\""Laptop\""]",2076.07,{},35322,1,"""Asia""" +2023-09-25,10457,335,"[\""Tablet\""]",4544.97,"{\"": \""7%\""}",54575,1,"""North America""" +2024-12-14,10458,401,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2935.2,"{\""seasonal\"": \""6%\""}",151450,1,"""Europe""" +2023-01-28,10459,3823,"[\""Phone\"", \""Tablet\""]",1093.64,{},129215,0,"""South America""" +2023-02-17,10460,5873,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2886.06,"{\""seasonal\"": \""16%\""}",46184,1,"""Asia""" +2024-03-14,10461,5947,"[\""Phone\""]",2844.16,{},242535,1,"""Asia""" +2024-04-19,10462,1531,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4943.51,"{\""seasonal\"": \""21%\""}",26591,1,"""South America""" +2024-10-30,10463,9904,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",284.85,"{\""seasonal\"": \""27%\""}",126613,0,"""North America""" +2024-06-28,10464,4649,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4946.17,{},206023,0,"""North America""" +2024-03-02,10465,4087,"[\""Wireless Mouse\"", \""Headphones\""]",2631.08,"{\"": \""26%\""}",48709,0,"""Asia""" +2023-06-17,10466,4861,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3211.56,{},118966,1,"""South America""" +2023-03-07,10467,5465,"[\""Laptop\"", \""Phone\""]",4376.78,"{\""seasonal\"": \""22%\""}",210671,1,"""Africa""" +2024-03-18,10468,4078,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3402.54,"{\""seasonal\"": \""27%\""}",168628,1,"""Europe""" +2024-03-14,10469,7049,"[\""Wireless Mouse\"", \""Tablet\""]",1080.47,"{\""loyalty\"": \""29%\""}",56708,1,"""Africa""" +2023-10-06,10470,7659,"[\""Tablet\"", \""Monitor\""]",2918.18,{},171637,1,"""Asia""" +2024-06-16,10471,6950,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4359.04,"{\""loyalty\"": \""24%\""}",178357,0,"""Europe""" +2024-01-10,10472,15,"[\""Charger\""]",1400.72,{},92930,0,"""Europe""" +2024-04-14,10473,7700,"[\""Tablet\"", \""Monitor\""]",4380.1,{},237770,0,"""Europe""" +2024-11-06,10474,7102,"[\""Headphones\""]",623.99,{},73438,0,"""Asia""" +2023-03-08,10475,4476,"[\""Keyboard\"", \""Monitor\""]",883.81,"{\"": \""16%\""}",30255,1,"""North America""" +2024-12-02,10476,5231,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2725.39,{},74244,1,"""Asia""" +2024-12-24,10477,2077,"[\""Tablet\""]",1572.99,{},252425,1,"""Asia""" +2023-01-20,10478,8765,"[\""Tablet\""]",418.05,"{\""promo\"": \""21%\""}",89840,0,"""South America""" +2023-10-15,10479,1008,"[\""Monitor\""]",2336.82,{},125454,1,"""South America""" +2024-01-17,10480,5290,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1416.32,"{\""loyalty\"": \""6%\""}",278023,1,"""Asia""" +2023-03-07,10481,6723,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4947.46,"{\""loyalty\"": \""22%\""}",204457,0,"""Asia""" +2023-01-13,10482,1687,"[\""Headphones\"", \""Wireless Mouse\""]",2283.29,{},81736,0,"""North America""" +2024-01-29,10483,5999,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2418.32,{},113199,0,"""Asia""" +2023-05-09,10484,5192,"[\""Wireless Mouse\""]",678.88,{},251059,1,"""Europe""" +2023-05-03,10485,5246,"[\""Charger\""]",4584.29,{},242421,1,"""South America""" +2024-10-29,10486,6350,"[\""Wireless Mouse\""]",1370.64,"{\""promo\"": \""20%\""}",294758,0,"""Europe""" +2024-10-15,10487,3412,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4672.7,{},197056,1,"""Africa""" +2024-04-20,10488,2559,"[\""Keyboard\""]",1993.19,"{\""promo\"": \""23%\""}",65934,1,"""Asia""" +2024-10-07,10489,4648,"[\""Keyboard\""]",679.08,"{\"": \""17%\""}",259862,0,"""Africa""" +2023-01-20,10490,7086,"[\""Keyboard\""]",1143.8,"{\""loyalty\"": \""5%\""}",265745,0,"""North America""" +2024-06-02,10491,6384,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3237.87,{},91543,0,"""North America""" +2024-01-07,10492,9877,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",77.51,"{\"": \""25%\""}",174752,1,"""North America""" +2023-04-10,10493,2983,"[\""Monitor\""]",3443.02,"{\""promo\"": \""9%\""}",105851,0,"""North America""" +2023-11-09,10494,83,"[\""Charger\""]",2194.75,"{\""promo\"": \""18%\""}",14296,1,"""Europe""" +2024-08-02,10495,8250,"[\""Keyboard\""]",1311.01,{},218288,0,"""Africa""" +2024-07-06,10496,718,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4400.4,{},215727,0,"""Asia""" +2024-01-11,10497,4907,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4104.77,"{\""promo\"": \""27%\""}",209543,0,"""Europe""" +2024-01-20,10498,9440,"[\""Monitor\"", \""Tablet\""]",4159.53,"{\""promo\"": \""5%\""}",126992,0,"""Europe""" +2024-12-09,10499,3135,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1496.67,{},1813,0,"""South America""" +2024-10-16,10500,733,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2128.45,{},204771,0,"""North America""" +2024-09-16,10501,1712,"[\""Charger\""]",349.79,"{\""promo\"": \""13%\""}",132295,0,"""Europe""" +2024-06-19,10502,79,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",759.92,{},42229,0,"""South America""" +2024-11-06,10503,3759,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1202.68,"{\""loyalty\"": \""10%\""}",231490,1,"""Africa""" +2024-10-17,10504,1511,"[\""Wireless Mouse\"", \""Keyboard\""]",2127.33,{},34814,0,"""Asia""" +2023-09-29,10505,5349,"[\""Tablet\""]",4068.13,"{\"": \""25%\""}",198956,0,"""North America""" +2024-07-18,10506,7827,"[\""Tablet\""]",3232.64,"{\""loyalty\"": \""18%\""}",171322,0,"""South America""" +2024-01-18,10507,7590,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",618.64,{},133128,0,"""Europe""" +2023-03-27,10508,6655,"[\""Wireless Mouse\""]",1816.2,"{\""seasonal\"": \""16%\""}",78702,0,"""South America""" +2023-10-25,10509,4127,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2367.41,{},33918,1,"""Europe""" +2024-06-01,10510,6422,"[\""Wireless Mouse\""]",1704.12,{},59909,1,"""Africa""" +2024-11-12,10511,6980,"[\""Laptop\""]",1664.7,"{\""seasonal\"": \""28%\""}",165960,0,"""Asia""" +2023-05-09,10512,5111,"[\""Wireless Mouse\"", \""Laptop\""]",159.12,{},34239,0,"""Africa""" +2023-04-30,10513,8045,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2251.3,{},254877,1,"""Europe""" +2023-10-11,10514,3239,"[\""Charger\"", \""Tablet\""]",2233.22,{},253460,1,"""North America""" +2024-01-20,10515,9731,"[\""Laptop\"", \""Charger\""]",284.27,{},130955,0,"""Africa""" +2023-12-01,10516,5155,"[\""Laptop\"", \""Wireless Mouse\""]",4814.05,{},157451,1,"""Africa""" +2023-09-25,10517,709,"[\""Charger\"", \""Keyboard\""]",1492.96,"{\"": \""12%\""}",228888,1,"""Africa""" +2023-09-02,10518,7887,"[\""Wireless Mouse\"", \""Tablet\""]",379.89,"{\""seasonal\"": \""11%\""}",38292,1,"""North America""" +2024-09-18,10519,6250,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2528.91,{},143258,0,"""Asia""" +2024-11-17,10520,4821,"[\""Tablet\"", \""Monitor\""]",125.34,"{\""promo\"": \""18%\""}",153921,0,"""North America""" +2023-07-22,10521,3309,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3716.77,{},119475,0,"""Africa""" +2024-11-10,10522,6502,"[\""Keyboard\""]",3359.91,{},214836,0,"""Africa""" +2024-07-27,10523,5247,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",310.45,{},37265,1,"""Asia""" +2023-07-29,10524,6991,"[\""Phone\""]",123.01,{},263615,0,"""South America""" +2024-01-29,10525,2323,"[\""Phone\""]",2206.15,"{\""promo\"": \""8%\""}",173155,0,"""Europe""" +2024-07-26,10526,9916,"[\""Keyboard\""]",1236.3,"{\"": \""21%\""}",87401,0,"""South America""" +2024-10-22,10527,3734,"[\""Monitor\""]",203.16,{},243514,1,"""South America""" +2023-04-23,10528,7223,"[\""Wireless Mouse\""]",4483.12,"{\""seasonal\"": \""14%\""}",53277,0,"""South America""" +2024-08-06,10529,102,"[\""Keyboard\"", \""Headphones\""]",4155.23,"{\""promo\"": \""17%\""}",127360,1,"""Africa""" +2024-10-30,10530,1042,"[\""Keyboard\"", \""Phone\""]",3582.29,"{\""seasonal\"": \""25%\""}",11843,1,"""North America""" +2023-07-29,10531,6290,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2885.21,"{\""seasonal\"": \""18%\""}",190161,1,"""North America""" +2024-10-21,10532,7697,"[\""Headphones\"", \""Phone\""]",2990.96,{},141993,0,"""Europe""" +2024-04-06,10533,9518,"[\""Phone\""]",2126.78,"{\""loyalty\"": \""5%\""}",85215,0,"""Asia""" +2024-02-04,10534,6147,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2310.0,"{\"": \""24%\""}",268732,1,"""Asia""" +2023-06-21,10535,9242,"[\""Phone\""]",3218.98,{},83721,0,"""North America""" +2023-03-06,10536,4744,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4921.43,"{\"": \""16%\""}",107359,0,"""Asia""" +2024-04-09,10537,3564,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2676.72,{},255623,1,"""Europe""" +2024-11-21,10538,9429,"[\""Charger\""]",3738.1,{},138205,1,"""Asia""" +2023-05-28,10539,448,"[\""Phone\"", \""Wireless Mouse\""]",4697.25,"{\""promo\"": \""9%\""}",88985,1,"""North America""" +2023-04-27,10540,2235,"[\""Monitor\"", \""Charger\""]",881.28,"{\"": \""13%\""}",65397,1,"""South America""" +2023-03-23,10541,5592,"[\""Tablet\""]",4802.98,{},114699,0,"""Asia""" +2024-05-13,10542,1471,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2896.5,{},151726,1,"""South America""" +2023-07-03,10543,2500,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",848.89,{},141734,0,"""Europe""" +2023-12-12,10544,5383,"[\""Wireless Mouse\"", \""Headphones\""]",4597.18,{},255912,0,"""North America""" +2023-04-27,10545,1595,"[\""Charger\"", \""Laptop\""]",2707.32,{},170607,1,"""Africa""" +2024-12-19,10546,4200,"[\""Tablet\""]",1045.66,"{\""seasonal\"": \""10%\""}",261012,0,"""Europe""" +2024-06-23,10547,7822,"[\""Monitor\"", \""Phone\""]",4429.84,{},143708,0,"""Africa""" +2023-05-01,10548,5973,"[\""Keyboard\""]",192.33,{},87750,1,"""South America""" +2024-06-05,10549,3032,"[\""Keyboard\"", \""Headphones\""]",3248.23,{},275887,0,"""Europe""" +2024-04-24,10550,3105,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",67.83,"{\""promo\"": \""15%\""}",145085,1,"""Europe""" +2024-10-10,10551,2747,"[\""Headphones\""]",665.29,"{\""seasonal\"": \""27%\""}",86267,1,"""Europe""" +2024-09-30,10552,9851,"[\""Keyboard\""]",992.42,{},180676,0,"""Africa""" +2023-09-16,10553,6486,"[\""Phone\"", \""Keyboard\""]",73.63,{},295185,0,"""North America""" +2024-12-31,10554,7923,"[\""Wireless Mouse\""]",4064.15,"{\""promo\"": \""8%\""}",90908,1,"""Asia""" +2024-05-13,10555,3467,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1948.52,{},83082,0,"""Africa""" +2023-09-23,10556,8191,"[\""Phone\""]",1211.24,"{\""seasonal\"": \""23%\""}",112703,1,"""North America""" +2023-08-15,10557,5071,"[\""Laptop\""]",3151.58,"{\""loyalty\"": \""10%\""}",167510,1,"""South America""" +2024-10-15,10558,1065,"[\""Keyboard\"", \""Headphones\""]",674.88,{},231735,0,"""Asia""" +2024-09-19,10559,3519,"[\""Wireless Mouse\""]",2434.81,"{\""loyalty\"": \""18%\""}",251580,0,"""Africa""" +2024-07-04,10560,3087,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4098.37,"{\""loyalty\"": \""29%\""}",154533,1,"""Africa""" +2024-06-18,10561,9022,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2612.41,"{\"": \""6%\""}",238157,0,"""Africa""" +2023-09-26,10562,2513,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3416.06,{},75755,1,"""Asia""" +2023-03-28,10563,3857,"[\""Headphones\"", \""Laptop\""]",4398.61,"{\"": \""21%\""}",89029,0,"""Europe""" +2024-01-25,10564,6403,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1971.95,{},280036,1,"""Europe""" +2023-03-28,10565,6886,"[\""Headphones\""]",2539.92,{},106996,1,"""Africa""" +2023-06-29,10566,932,"[\""Laptop\"", \""Charger\""]",4376.49,"{\""promo\"": \""30%\""}",292708,0,"""Europe""" +2023-09-24,10567,3204,"[\""Tablet\"", \""Laptop\""]",1486.46,"{\""promo\"": \""6%\""}",297378,1,"""North America""" +2023-06-06,10568,7630,"[\""Headphones\""]",4406.39,"{\""loyalty\"": \""29%\""}",212157,1,"""Asia""" +2023-11-05,10569,1133,"[\""Keyboard\""]",2321.73,{},224608,1,"""Asia""" +2024-08-07,10570,3143,"[\""Wireless Mouse\"", \""Monitor\""]",2338.27,{},130968,0,"""Asia""" +2024-06-05,10571,69,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1559.81,"{\"": \""25%\""}",256985,1,"""Europe""" +2024-05-28,10572,482,"[\""Phone\""]",1633.73,{},50350,0,"""North America""" +2023-01-07,10573,5951,"[\""Charger\"", \""Headphones\""]",3821.95,"{\""loyalty\"": \""28%\""}",114380,0,"""Africa""" +2024-06-12,10574,2549,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",130.84,"{\"": \""12%\""}",272155,0,"""North America""" +2023-06-17,10575,9524,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4653.88,"{\""loyalty\"": \""19%\""}",43658,0,"""Europe""" +2023-09-01,10576,3360,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1252.26,"{\""loyalty\"": \""7%\""}",32302,1,"""Asia""" +2023-10-16,10577,5448,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2759.83,{},217559,0,"""North America""" +2023-06-03,10578,884,"[\""Tablet\""]",220.33,"{\""promo\"": \""19%\""}",101181,1,"""Africa""" +2023-11-08,10579,1463,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4606.3,{},63841,0,"""North America""" +2024-10-23,10580,3506,"[\""Tablet\""]",3984.15,{},191270,0,"""Europe""" +2023-03-01,10581,7031,"[\""Tablet\""]",3651.29,"{\""loyalty\"": \""17%\""}",39947,1,"""Europe""" +2023-07-08,10582,2429,"[\""Laptop\"", \""Phone\""]",2462.74,"{\""promo\"": \""24%\""}",165889,1,"""South America""" +2024-12-03,10583,4098,"[\""Laptop\""]",515.62,{},136283,1,"""South America""" +2024-09-11,10584,4147,"[\""Monitor\""]",4196.99,"{\""loyalty\"": \""7%\""}",287880,0,"""Asia""" +2023-02-03,10585,2415,"[\""Monitor\"", \""Wireless Mouse\""]",4101.36,"{\"": \""10%\""}",194353,0,"""Africa""" +2024-11-17,10586,8230,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",396.54,{},296771,0,"""South America""" +2023-01-12,10587,5955,"[\""Headphones\""]",1087.18,"{\""seasonal\"": \""28%\""}",33873,1,"""South America""" +2024-10-29,10588,5092,"[\""Tablet\"", \""Laptop\""]",334.02,{},252301,0,"""Europe""" +2024-07-30,10589,5335,"[\""Monitor\"", \""Phone\""]",4648.0,{},51479,0,"""Africa""" +2023-12-30,10590,7298,"[\""Wireless Mouse\"", \""Keyboard\""]",3138.27,"{\"": \""6%\""}",6790,0,"""South America""" +2024-03-18,10591,1519,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3715.31,"{\""seasonal\"": \""13%\""}",246449,1,"""South America""" +2024-03-17,10592,5751,"[\""Laptop\""]",1624.77,"{\""loyalty\"": \""29%\""}",190456,1,"""Africa""" +2024-04-01,10593,1531,"[\""Tablet\"", \""Headphones\""]",2041.07,"{\""loyalty\"": \""21%\""}",144479,1,"""Europe""" +2023-02-14,10594,9098,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4383.02,{},271340,1,"""Asia""" +2023-04-23,10595,5479,"[\""Wireless Mouse\"", \""Laptop\""]",3906.65,{},22369,1,"""Europe""" +2024-01-19,10596,1361,"[\""Headphones\"", \""Charger\""]",4845.58,{},213951,0,"""Africa""" +2023-08-09,10597,6200,"[\""Phone\"", \""Charger\""]",2818.84,"{\""seasonal\"": \""29%\""}",85202,0,"""Asia""" +2023-06-26,10598,2599,"[\""Headphones\""]",2080.48,{},17255,1,"""Europe""" +2024-11-04,10599,9030,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",805.44,"{\""promo\"": \""18%\""}",5681,1,"""Asia""" +2023-03-17,10600,4553,"[\""Laptop\"", \""Headphones\""]",158.82,"{\""loyalty\"": \""9%\""}",284935,0,"""North America""" +2024-06-17,10601,6841,"[\""Charger\"", \""Wireless Mouse\""]",3967.04,{},61413,1,"""North America""" +2023-11-12,10602,6037,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2097.94,{},31320,0,"""Africa""" +2023-04-07,10603,3962,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3862.23,"{\""seasonal\"": \""11%\""}",132995,0,"""Africa""" +2024-06-29,10604,6106,"[\""Wireless Mouse\"", \""Headphones\""]",614.46,{},151896,1,"""South America""" +2024-06-18,10605,9315,"[\""Keyboard\""]",1193.38,{},146606,0,"""South America""" +2024-05-15,10606,7379,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4496.04,{},98440,1,"""Europe""" +2024-01-13,10607,7608,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",507.7,"{\"": \""12%\""}",219638,0,"""Europe""" +2023-04-07,10608,1332,"[\""Headphones\""]",2817.98,"{\""promo\"": \""20%\""}",10653,1,"""North America""" +2024-07-10,10609,9404,"[\""Charger\""]",1889.21,{},156667,0,"""Africa""" +2024-09-09,10610,2310,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4586.66,{},51669,1,"""Africa""" +2023-09-13,10611,5641,"[\""Wireless Mouse\""]",3680.84,{},80617,0,"""Asia""" +2024-03-11,10612,7875,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2689.72,"{\""seasonal\"": \""22%\""}",246508,1,"""North America""" +2024-09-19,10613,8836,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3250.73,"{\"": \""24%\""}",27452,0,"""South America""" +2023-09-11,10614,9142,"[\""Keyboard\""]",4767.63,{},129988,1,"""Europe""" +2023-05-01,10615,9233,"[\""Keyboard\""]",2345.22,"{\""seasonal\"": \""27%\""}",82523,0,"""North America""" +2024-09-07,10616,9244,"[\""Wireless Mouse\""]",4369.98,"{\""promo\"": \""20%\""}",103762,1,"""Europe""" +2023-10-08,10617,2817,"[\""Monitor\"", \""Wireless Mouse\""]",1353.94,{},134825,0,"""Europe""" +2023-06-17,10618,1219,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2413.08,"{\""seasonal\"": \""13%\""}",109306,0,"""North America""" +2023-09-27,10619,4831,"[\""Headphones\""]",496.9,"{\""promo\"": \""5%\""}",99485,1,"""North America""" +2024-03-09,10620,8502,"[\""Phone\""]",2361.78,"{\""seasonal\"": \""26%\""}",178566,0,"""Asia""" +2023-07-30,10621,372,"[\""Wireless Mouse\"", \""Phone\""]",916.23,"{\""loyalty\"": \""16%\""}",239602,0,"""North America""" +2023-06-29,10622,2872,"[\""Phone\"", \""Charger\"", \""Monitor\""]",350.17,{},107389,0,"""Asia""" +2024-10-24,10623,8891,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2404.08,"{\""loyalty\"": \""20%\""}",109590,1,"""Europe""" +2023-07-14,10624,326,"[\""Headphones\"", \""Keyboard\""]",161.56,{},129342,1,"""Asia""" +2024-12-18,10625,5215,"[\""Tablet\""]",2165.76,{},202794,1,"""Asia""" +2023-11-06,10626,1255,"[\""Wireless Mouse\"", \""Charger\""]",4733.47,{},203099,1,"""North America""" +2023-09-18,10627,2414,"[\""Keyboard\""]",2343.04,"{\"": \""21%\""}",240095,1,"""Africa""" +2024-06-09,10628,3193,"[\""Charger\""]",2341.22,{},233109,1,"""South America""" +2024-06-28,10629,6306,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2922.17,{},294738,1,"""South America""" +2023-03-25,10630,1542,"[\""Headphones\"", \""Tablet\""]",1333.79,"{\"": \""16%\""}",5560,0,"""North America""" +2024-01-03,10631,8932,"[\""Laptop\"", \""Headphones\""]",3406.95,{},118948,0,"""Africa""" +2023-09-01,10632,7779,"[\""Phone\"", \""Laptop\""]",1534.39,"{\""seasonal\"": \""13%\""}",268117,1,"""Europe""" +2023-11-03,10633,1137,"[\""Phone\""]",1758.47,"{\""loyalty\"": \""16%\""}",84071,0,"""Asia""" +2024-02-17,10634,1143,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2885.29,{},112230,0,"""Africa""" +2023-08-23,10635,9397,"[\""Monitor\"", \""Wireless Mouse\""]",1933.56,{},167683,1,"""North America""" +2023-04-21,10636,7908,"[\""Tablet\"", \""Phone\""]",654.7,"{\"": \""19%\""}",41268,1,"""Africa""" +2024-05-06,10637,203,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",486.29,"{\"": \""16%\""}",189508,1,"""South America""" +2023-03-15,10638,8335,"[\""Tablet\"", \""Laptop\""]",4259.83,{},52862,0,"""North America""" +2023-01-01,10639,6477,"[\""Monitor\"", \""Wireless Mouse\""]",4994.62,{},266307,0,"""North America""" +2023-04-28,10640,6909,"[\""Headphones\"", \""Keyboard\""]",3519.26,"{\""seasonal\"": \""19%\""}",58506,0,"""Africa""" +2024-11-29,10641,9298,"[\""Phone\""]",2157.77,{},149041,1,"""North America""" +2023-05-22,10642,8151,"[\""Tablet\""]",3955.02,{},46253,1,"""Asia""" +2023-04-25,10643,3010,"[\""Laptop\"", \""Wireless Mouse\""]",891.66,{},122612,1,"""Africa""" +2024-03-16,10644,1440,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3158.51,"{\""loyalty\"": \""15%\""}",86168,1,"""Africa""" +2024-01-21,10645,5567,"[\""Monitor\"", \""Headphones\""]",2707.14,{},3257,1,"""South America""" +2024-04-16,10646,9306,"[\""Monitor\"", \""Charger\""]",2376.44,{},77969,0,"""Europe""" +2023-04-05,10647,3971,"[\""Laptop\""]",103.21,"{\""promo\"": \""12%\""}",63143,1,"""North America""" +2024-03-12,10648,3977,"[\""Wireless Mouse\"", \""Monitor\""]",3632.34,"{\""loyalty\"": \""30%\""}",80695,1,"""Africa""" +2023-05-05,10649,1091,"[\""Wireless Mouse\"", \""Tablet\""]",3764.74,"{\""promo\"": \""30%\""}",34633,1,"""Asia""" +2024-01-27,10650,9069,"[\""Wireless Mouse\""]",162.62,{},132292,1,"""South America""" +2023-09-25,10651,1341,"[\""Laptop\""]",2729.39,"{\"": \""10%\""}",85108,0,"""North America""" +2023-04-01,10652,6543,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2262.41,"{\""promo\"": \""16%\""}",251305,0,"""North America""" +2024-11-10,10653,9403,"[\""Charger\""]",4356.67,"{\""seasonal\"": \""13%\""}",115876,0,"""North America""" +2023-10-18,10654,2783,"[\""Phone\""]",3889.12,{},238934,1,"""North America""" +2024-07-21,10655,8222,"[\""Monitor\""]",1573.68,"{\""promo\"": \""28%\""}",166278,1,"""North America""" +2023-10-31,10656,4263,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",515.75,{},181872,0,"""South America""" +2024-08-31,10657,6304,"[\""Monitor\"", \""Tablet\""]",3542.19,"{\""seasonal\"": \""6%\""}",4156,0,"""Europe""" +2024-02-04,10658,2446,"[\""Laptop\"", \""Monitor\""]",4945.6,"{\""promo\"": \""18%\""}",40575,1,"""Africa""" +2024-03-19,10659,3124,"[\""Charger\""]",2193.99,"{\""promo\"": \""8%\""}",7125,0,"""Asia""" +2023-02-24,10660,1562,"[\""Wireless Mouse\""]",3881.34,"{\""loyalty\"": \""12%\""}",164685,0,"""North America""" +2024-02-01,10661,9739,"[\""Monitor\"", \""Headphones\""]",2803.12,"{\""loyalty\"": \""16%\""}",54417,0,"""South America""" +2023-10-27,10662,7574,"[\""Laptop\"", \""Keyboard\""]",3091.8,"{\""seasonal\"": \""5%\""}",13382,0,"""Europe""" +2023-10-23,10663,5334,"[\""Wireless Mouse\"", \""Headphones\""]",3562.89,{},241958,1,"""Europe""" +2024-07-03,10664,7597,"[\""Keyboard\""]",2835.49,{},143161,1,"""North America""" +2023-11-04,10665,9878,"[\""Headphones\"", \""Laptop\""]",678.55,{},40377,1,"""Asia""" +2023-04-04,10666,5581,"[\""Headphones\"", \""Charger\""]",2841.56,{},153087,0,"""Asia""" +2023-10-02,10667,9611,"[\""Keyboard\"", \""Wireless Mouse\""]",4261.96,"{\""loyalty\"": \""30%\""}",223400,0,"""Africa""" +2023-05-09,10668,9953,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4804.67,"{\""loyalty\"": \""29%\""}",198748,0,"""North America""" +2024-12-10,10669,7128,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2841.2,"{\""promo\"": \""27%\""}",138460,1,"""Europe""" +2024-07-29,10670,9094,"[\""Headphones\""]",3656.53,"{\""promo\"": \""19%\""}",178958,1,"""Europe""" +2023-12-13,10671,4129,"[\""Keyboard\"", \""Monitor\""]",986.7,{},64215,0,"""South America""" +2023-06-19,10672,6830,"[\""Laptop\""]",1495.05,"{\"": \""10%\""}",171315,0,"""Africa""" +2023-03-24,10673,8858,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2519.66,"{\""promo\"": \""21%\""}",81165,1,"""South America""" +2024-10-23,10674,7704,"[\""Headphones\"", \""Tablet\""]",1807.44,{},90940,1,"""Africa""" +2023-05-26,10675,9561,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1743.68,"{\""promo\"": \""25%\""}",4026,1,"""South America""" +2024-08-25,10676,7161,"[\""Monitor\"", \""Phone\""]",117.14,"{\"": \""13%\""}",105762,1,"""Asia""" +2024-04-27,10677,4769,"[\""Monitor\"", \""Phone\""]",1128.22,{},244891,1,"""South America""" +2024-03-06,10678,3680,"[\""Headphones\"", \""Laptop\""]",3637.46,{},89403,1,"""Europe""" +2023-12-21,10679,1335,"[\""Charger\"", \""Headphones\""]",226.11,"{\""seasonal\"": \""20%\""}",224957,0,"""Africa""" +2024-10-12,10680,6674,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3077.67,"{\""seasonal\"": \""25%\""}",182992,0,"""South America""" +2024-12-18,10681,1249,"[\""Charger\"", \""Keyboard\""]",3806.01,{},84291,0,"""South America""" +2023-06-29,10682,3766,"[\""Headphones\""]",2454.37,"{\""promo\"": \""30%\""}",81734,1,"""South America""" +2024-08-03,10683,1978,"[\""Phone\"", \""Wireless Mouse\""]",4493.97,{},163733,0,"""North America""" +2024-02-14,10684,611,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4148.22,"{\""seasonal\"": \""27%\""}",73743,0,"""Africa""" +2024-04-17,10685,4164,"[\""Tablet\"", \""Wireless Mouse\""]",2033.09,{},255218,0,"""South America""" +2024-11-10,10686,1115,"[\""Monitor\"", \""Tablet\""]",3346.66,"{\""loyalty\"": \""12%\""}",85188,1,"""Asia""" +2023-05-26,10687,1285,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4223.26,"{\"": \""8%\""}",276183,1,"""North America""" +2023-05-24,10688,7822,"[\""Tablet\""]",1197.1,{},87972,0,"""Asia""" +2024-05-14,10689,6850,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4712.64,{},68592,1,"""North America""" +2024-09-24,10690,6211,"[\""Charger\""]",1491.24,"{\""loyalty\"": \""9%\""}",294513,1,"""Asia""" +2024-03-16,10691,9853,"[\""Charger\""]",707.14,"{\""loyalty\"": \""24%\""}",81201,0,"""South America""" +2023-03-08,10692,7074,"[\""Charger\""]",272.9,"{\""seasonal\"": \""13%\""}",15116,1,"""Africa""" +2023-11-27,10693,2027,"[\""Monitor\"", \""Charger\""]",1095.05,"{\""seasonal\"": \""19%\""}",97126,0,"""Europe""" +2024-01-03,10694,6183,"[\""Phone\"", \""Charger\""]",947.76,"{\""loyalty\"": \""15%\""}",153322,1,"""Asia""" +2024-07-22,10695,5654,"[\""Headphones\"", \""Phone\""]",3525.95,{},146465,0,"""North America""" +2023-02-21,10696,3963,"[\""Tablet\""]",1456.73,{},87087,0,"""Africa""" +2024-09-17,10697,6079,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1098.66,{},115249,1,"""Europe""" +2024-08-09,10698,466,"[\""Monitor\"", \""Phone\""]",4567.96,{},295020,1,"""Europe""" +2024-11-15,10699,4886,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3544.41,"{\""loyalty\"": \""30%\""}",155344,1,"""Asia""" +2024-05-16,10700,9659,"[\""Monitor\""]",1692.8,{},91000,1,"""Africa""" +2023-10-12,10701,6333,"[\""Laptop\""]",1245.37,{},262841,0,"""North America""" +2023-03-19,10702,548,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3502.13,"{\""loyalty\"": \""28%\""}",257355,1,"""South America""" +2023-09-07,10703,4525,"[\""Phone\"", \""Keyboard\""]",242.58,{},43433,1,"""Africa""" +2023-12-07,10704,467,"[\""Charger\"", \""Monitor\""]",807.82,{},196856,0,"""Asia""" +2024-03-25,10705,2703,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3205.83,{},268412,0,"""Asia""" +2024-11-03,10706,2844,"[\""Headphones\"", \""Tablet\""]",3288.85,"{\"": \""20%\""}",181833,1,"""Europe""" +2024-04-11,10707,70,"[\""Wireless Mouse\"", \""Phone\""]",4721.27,"{\""promo\"": \""16%\""}",171453,0,"""Asia""" +2023-02-02,10708,6286,"[\""Headphones\"", \""Wireless Mouse\""]",1339.79,{},241437,1,"""Asia""" +2024-11-23,10709,870,"[\""Phone\""]",1018.65,"{\""loyalty\"": \""19%\""}",14715,1,"""South America""" +2024-05-08,10710,8352,"[\""Phone\""]",4243.94,{},259905,1,"""Europe""" +2023-12-24,10711,2548,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3361.72,"{\""seasonal\"": \""8%\""}",212473,0,"""South America""" +2023-03-11,10712,9578,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3904.74,{},218278,0,"""North America""" +2024-11-20,10713,6698,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2924.56,{},213363,0,"""North America""" +2024-08-13,10714,6331,"[\""Charger\""]",1333.69,"{\""seasonal\"": \""8%\""}",289785,0,"""North America""" +2023-03-24,10715,2905,"[\""Charger\"", \""Phone\""]",2594.66,"{\""promo\"": \""19%\""}",256445,0,"""South America""" +2023-10-28,10716,4381,"[\""Monitor\""]",2430.82,"{\""seasonal\"": \""16%\""}",274196,1,"""Europe""" +2023-03-26,10717,952,"[\""Keyboard\"", \""Phone\""]",1645.1,"{\""loyalty\"": \""12%\""}",121123,0,"""Asia""" +2023-12-12,10718,2202,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1193.42,"{\""loyalty\"": \""16%\""}",149867,1,"""Africa""" +2023-08-11,10719,4568,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1999.34,"{\""loyalty\"": \""14%\""}",19886,0,"""Africa""" +2024-04-24,10720,9774,"[\""Headphones\"", \""Monitor\""]",178.22,"{\""loyalty\"": \""5%\""}",139192,1,"""North America""" +2023-11-16,10721,643,"[\""Phone\"", \""Wireless Mouse\""]",4623.5,"{\"": \""21%\""}",223155,1,"""North America""" +2023-12-02,10722,8228,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4358.09,"{\""loyalty\"": \""18%\""}",172613,0,"""North America""" +2024-03-13,10723,7491,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4928.66,"{\""loyalty\"": \""26%\""}",275302,1,"""Europe""" +2023-09-02,10724,3071,"[\""Monitor\"", \""Tablet\""]",1324.44,"{\""seasonal\"": \""10%\""}",214546,0,"""Europe""" +2024-05-14,10725,8839,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",232.58,{},236514,1,"""Asia""" +2023-11-14,10726,1621,"[\""Wireless Mouse\"", \""Laptop\""]",3845.67,"{\"": \""14%\""}",109608,0,"""Europe""" +2024-09-29,10727,3362,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1244.07,{},158920,1,"""North America""" +2023-12-24,10728,297,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1318.89,{},53214,1,"""South America""" +2024-08-27,10729,8566,"[\""Monitor\"", \""Phone\""]",2779.07,{},106926,1,"""Africa""" +2023-03-18,10730,8128,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",434.88,"{\""promo\"": \""23%\""}",219909,1,"""Africa""" +2024-12-27,10731,7837,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3249.19,{},139495,1,"""North America""" +2024-09-25,10732,7416,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4914.73,"{\""promo\"": \""27%\""}",14704,0,"""Asia""" +2023-02-27,10733,4696,"[\""Wireless Mouse\"", \""Monitor\""]",2228.7,"{\""promo\"": \""6%\""}",106787,1,"""Africa""" +2023-09-26,10734,3596,"[\""Phone\"", \""Monitor\""]",2182.49,"{\""loyalty\"": \""21%\""}",252042,0,"""Europe""" +2023-09-26,10735,1253,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3560.54,"{\""loyalty\"": \""18%\""}",157046,0,"""North America""" +2024-05-21,10736,5016,"[\""Monitor\""]",3814.22,{},115689,1,"""Asia""" +2024-02-07,10737,4707,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4041.7,{},67334,1,"""Europe""" +2024-09-07,10738,456,"[\""Headphones\"", \""Keyboard\""]",4506.57,{},138430,0,"""Europe""" +2023-06-08,10739,6555,"[\""Charger\"", \""Tablet\""]",3683.37,"{\"": \""10%\""}",71739,1,"""North America""" +2024-11-22,10740,8498,"[\""Keyboard\"", \""Wireless Mouse\""]",3384.2,"{\""loyalty\"": \""27%\""}",13173,1,"""South America""" +2024-07-01,10741,9962,"[\""Monitor\""]",1311.13,"{\""loyalty\"": \""5%\""}",77852,1,"""Asia""" +2023-06-18,10742,3864,"[\""Phone\""]",4470.54,{},104908,0,"""Africa""" +2023-08-13,10743,7791,"[\""Wireless Mouse\"", \""Monitor\""]",2498.87,"{\""loyalty\"": \""10%\""}",99437,0,"""Africa""" +2024-08-18,10744,2139,"[\""Laptop\""]",2611.65,{},36189,1,"""North America""" +2024-09-07,10745,6457,"[\""Charger\""]",641.96,{},259394,1,"""Africa""" +2024-05-04,10746,1016,"[\""Wireless Mouse\""]",3388.82,"{\""loyalty\"": \""8%\""}",30465,0,"""South America""" +2023-03-30,10747,8501,"[\""Headphones\""]",582.41,"{\"": \""6%\""}",169063,0,"""Europe""" +2024-02-11,10748,5156,"[\""Phone\"", \""Wireless Mouse\""]",1642.76,{},247120,1,"""Europe""" +2023-08-28,10749,9199,"[\""Laptop\"", \""Tablet\""]",4815.02,{},276290,1,"""South America""" +2023-10-15,10750,7841,"[\""Headphones\"", \""Laptop\""]",4268.22,{},141021,1,"""Europe""" +2023-02-06,10751,5331,"[\""Keyboard\""]",2835.02,"{\""seasonal\"": \""6%\""}",32047,0,"""North America""" +2023-03-10,10752,7397,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2870.76,{},240867,1,"""Asia""" +2023-05-18,10753,7617,"[\""Headphones\"", \""Tablet\""]",1359.91,"{\""seasonal\"": \""17%\""}",91259,1,"""Asia""" +2023-07-10,10754,5602,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2211.58,{},240077,1,"""Asia""" +2023-05-06,10755,5245,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3212.79,"{\""promo\"": \""8%\""}",193630,1,"""North America""" +2023-10-21,10756,5335,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2743.21,"{\""loyalty\"": \""16%\""}",196139,0,"""Asia""" +2023-05-19,10757,6006,"[\""Charger\"", \""Phone\""]",4266.44,"{\"": \""11%\""}",109283,1,"""North America""" +2024-03-17,10758,3950,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2405.8,"{\"": \""7%\""}",258097,1,"""North America""" +2024-07-02,10759,1410,"[\""Laptop\"", \""Charger\""]",1758.06,"{\"": \""29%\""}",114202,0,"""Europe""" +2024-07-09,10760,955,"[\""Charger\""]",3844.4,"{\""promo\"": \""24%\""}",161404,0,"""South America""" +2023-02-20,10761,7783,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",911.2,{},82657,1,"""Africa""" +2023-05-05,10762,650,"[\""Keyboard\""]",887.28,{},167664,0,"""North America""" +2023-04-30,10763,7953,"[\""Tablet\"", \""Phone\""]",3347.86,{},252697,0,"""Africa""" +2024-02-08,10764,9867,"[\""Charger\""]",1786.06,"{\""seasonal\"": \""17%\""}",160147,0,"""South America""" +2024-06-30,10765,3618,"[\""Headphones\""]",509.73,"{\""promo\"": \""18%\""}",272992,0,"""Africa""" +2023-10-15,10766,8449,"[\""Charger\"", \""Phone\""]",2194.64,{},187987,0,"""Europe""" +2023-08-15,10767,153,"[\""Headphones\"", \""Charger\"", \""Phone\""]",472.08,{},88069,0,"""Asia""" +2024-12-21,10768,5164,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1323.61,"{\""seasonal\"": \""10%\""}",156934,0,"""Europe""" +2024-09-13,10769,5038,"[\""Monitor\"", \""Tablet\""]",4115.64,"{\""loyalty\"": \""6%\""}",16326,0,"""Europe""" +2023-04-09,10770,372,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2287.63,{},77314,0,"""North America""" +2024-06-04,10771,5447,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2952.31,{},276068,0,"""Asia""" +2024-10-01,10772,8615,"[\""Laptop\""]",4630.19,{},107367,1,"""North America""" +2024-10-21,10773,6090,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",252.67,{},116987,1,"""Africa""" +2024-11-03,10774,9809,"[\""Wireless Mouse\""]",3534.98,{},47663,1,"""South America""" +2024-03-30,10775,7170,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4235.41,{},254790,0,"""North America""" +2024-11-21,10776,3697,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",705.64,{},83335,1,"""Africa""" +2023-04-26,10777,214,"[\""Charger\"", \""Monitor\""]",995.1,"{\""seasonal\"": \""26%\""}",122373,1,"""North America""" +2024-07-12,10778,2818,"[\""Headphones\"", \""Wireless Mouse\""]",2750.28,"{\""promo\"": \""5%\""}",209867,0,"""Africa""" +2023-05-22,10779,5387,"[\""Phone\""]",1727.87,"{\""loyalty\"": \""30%\""}",68124,1,"""South America""" +2023-12-10,10780,9726,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4212.82,{},292490,1,"""South America""" +2023-08-19,10781,6676,"[\""Headphones\"", \""Laptop\""]",1722.47,"{\"": \""12%\""}",98348,0,"""South America""" +2023-11-07,10782,3383,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1515.77,{},76696,0,"""Asia""" +2024-12-06,10783,5162,"[\""Tablet\"", \""Keyboard\""]",3496.73,{},7045,1,"""Europe""" +2023-10-01,10784,7077,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3981.12,"{\""seasonal\"": \""21%\""}",274727,0,"""South America""" +2023-04-22,10785,5198,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4345.27,{},37077,1,"""Europe""" +2023-05-29,10786,8404,"[\""Charger\""]",548.1,{},277441,1,"""Asia""" +2023-12-04,10787,4015,"[\""Keyboard\"", \""Phone\""]",4415.27,"{\""seasonal\"": \""5%\""}",61973,0,"""Africa""" +2024-09-11,10788,2932,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",420.94,"{\"": \""30%\""}",105852,0,"""Africa""" +2023-11-10,10789,9660,"[\""Headphones\""]",276.2,"{\"": \""29%\""}",172299,0,"""Africa""" +2023-12-19,10790,7267,"[\""Wireless Mouse\""]",3078.76,"{\"": \""14%\""}",68969,0,"""Asia""" +2024-07-25,10791,8156,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",320.82,"{\"": \""10%\""}",280764,0,"""North America""" +2023-01-13,10792,7953,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",368.22,{},234387,1,"""South America""" +2023-04-24,10793,7369,"[\""Keyboard\""]",4460.09,{},136186,0,"""North America""" +2024-11-21,10794,8046,"[\""Tablet\"", \""Wireless Mouse\""]",2687.59,{},153436,0,"""Europe""" +2024-11-11,10795,815,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2168.97,"{\""seasonal\"": \""14%\""}",174293,0,"""South America""" +2024-06-17,10796,2732,"[\""Wireless Mouse\""]",1946.79,{},12771,1,"""South America""" +2023-08-02,10797,5554,"[\""Headphones\"", \""Charger\""]",1585.86,"{\"": \""29%\""}",247905,1,"""Europe""" +2024-02-16,10798,9204,"[\""Keyboard\"", \""Charger\""]",3273.09,"{\""loyalty\"": \""5%\""}",49675,0,"""Europe""" +2023-12-13,10799,6287,"[\""Charger\"", \""Monitor\""]",3738.49,"{\"": \""28%\""}",132487,1,"""Europe""" +2023-07-12,10800,5602,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3016.25,{},77528,0,"""Africa""" +2024-03-16,10801,7942,"[\""Charger\"", \""Headphones\""]",2091.17,"{\""loyalty\"": \""19%\""}",7832,1,"""Africa""" +2023-12-30,10802,1069,"[\""Wireless Mouse\""]",505.54,{},256799,1,"""South America""" +2023-03-16,10803,8418,"[\""Laptop\"", \""Tablet\""]",2175.23,"{\"": \""19%\""}",122485,0,"""Africa""" +2023-08-19,10804,99,"[\""Laptop\"", \""Keyboard\""]",1466.34,{},251457,1,"""Africa""" +2024-09-09,10805,5058,"[\""Phone\""]",3064.33,{},271689,0,"""Europe""" +2024-03-24,10806,5533,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2916.96,"{\""seasonal\"": \""10%\""}",86217,1,"""South America""" +2023-01-28,10807,6683,"[\""Keyboard\"", \""Charger\""]",2153.96,{},244881,0,"""Asia""" +2023-08-29,10808,9026,"[\""Phone\""]",1908.08,{},158779,0,"""Asia""" +2023-06-07,10809,7159,"[\""Laptop\""]",568.91,"{\"": \""15%\""}",74329,1,"""Africa""" +2023-04-15,10810,985,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3489.1,"{\""loyalty\"": \""27%\""}",163671,0,"""South America""" +2024-08-17,10811,422,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3737.06,"{\""loyalty\"": \""13%\""}",113080,1,"""Asia""" +2023-03-02,10812,7012,"[\""Charger\""]",1203.33,"{\""seasonal\"": \""23%\""}",194862,1,"""Asia""" +2023-04-12,10813,2604,"[\""Wireless Mouse\""]",3931.55,"{\""promo\"": \""25%\""}",42921,0,"""North America""" +2023-02-15,10814,339,"[\""Laptop\""]",54.6,{},111827,1,"""Europe""" +2024-04-01,10815,9531,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1522.22,{},65647,0,"""Africa""" +2023-06-03,10816,3338,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3999.76,"{\""promo\"": \""5%\""}",123057,1,"""North America""" +2024-10-20,10817,958,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2676.8,{},251803,0,"""Asia""" +2023-12-12,10818,25,"[\""Laptop\"", \""Headphones\""]",3277.79,"{\""seasonal\"": \""19%\""}",125476,1,"""North America""" +2023-05-07,10819,2555,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3520.87,{},38684,0,"""Africa""" +2023-01-06,10820,2668,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3999.87,{},179652,0,"""Europe""" +2023-08-22,10821,8250,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3033.09,"{\""promo\"": \""25%\""}",244146,1,"""Europe""" +2024-02-26,10822,1743,"[\""Keyboard\""]",1324.87,{},280238,0,"""South America""" +2024-08-26,10823,721,"[\""Tablet\"", \""Wireless Mouse\""]",2745.8,{},146832,0,"""South America""" +2023-11-02,10824,9861,"[\""Tablet\""]",57.3,"{\""loyalty\"": \""16%\""}",269498,1,"""Africa""" +2024-02-01,10825,8739,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",493.8,{},199274,1,"""South America""" +2023-12-17,10826,58,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1978.43,"{\""loyalty\"": \""27%\""}",146292,0,"""North America""" +2023-10-09,10827,7983,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1363.1,"{\""promo\"": \""16%\""}",182062,1,"""Europe""" +2023-11-02,10828,3039,"[\""Headphones\"", \""Tablet\""]",953.7,"{\"": \""25%\""}",210192,0,"""Asia""" +2023-03-20,10829,9432,"[\""Wireless Mouse\""]",4860.6,{},296547,0,"""Europe""" +2024-01-03,10830,5952,"[\""Tablet\""]",3766.02,"{\"": \""17%\""}",223048,1,"""Asia""" +2024-10-21,10831,3601,"[\""Headphones\"", \""Monitor\""]",3111.96,{},264338,0,"""Africa""" +2023-11-24,10832,3682,"[\""Charger\"", \""Laptop\""]",407.84,"{\""seasonal\"": \""5%\""}",231130,1,"""Asia""" +2023-01-07,10833,158,"[\""Monitor\"", \""Headphones\""]",1712.76,"{\""seasonal\"": \""23%\""}",160604,1,"""Europe""" +2023-11-09,10834,429,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1775.77,"{\""loyalty\"": \""22%\""}",145864,0,"""Europe""" +2024-12-05,10835,2259,"[\""Monitor\""]",3641.08,"{\"": \""23%\""}",52567,0,"""Asia""" +2023-02-23,10836,6848,"[\""Phone\""]",3687.01,"{\""seasonal\"": \""20%\""}",161977,1,"""North America""" +2024-08-05,10837,7946,"[\""Keyboard\""]",2522.91,"{\""seasonal\"": \""15%\""}",191706,0,"""Africa""" +2024-11-13,10838,2946,"[\""Charger\"", \""Phone\""]",2203.99,"{\""promo\"": \""27%\""}",291411,0,"""North America""" +2023-01-04,10839,7364,"[\""Headphones\"", \""Phone\""]",2808.57,"{\""promo\"": \""18%\""}",130686,0,"""South America""" +2024-09-15,10840,4284,"[\""Tablet\""]",4910.87,{},181157,1,"""North America""" +2024-03-09,10841,8083,"[\""Keyboard\""]",3986.98,"{\""seasonal\"": \""23%\""}",34081,1,"""South America""" +2024-09-22,10842,3715,"[\""Keyboard\""]",869.67,{},127917,1,"""South America""" +2023-01-31,10843,2744,"[\""Headphones\""]",3548.0,"{\""loyalty\"": \""13%\""}",159594,1,"""Asia""" +2024-04-14,10844,4207,"[\""Wireless Mouse\""]",1231.84,{},223636,0,"""Europe""" +2023-05-12,10845,6560,"[\""Charger\""]",1620.66,"{\"": \""23%\""}",81049,1,"""North America""" +2023-07-25,10846,4561,"[\""Monitor\"", \""Laptop\""]",4385.23,{},93363,0,"""Africa""" +2024-11-04,10847,4494,"[\""Laptop\"", \""Tablet\""]",2924.93,{},2846,0,"""Africa""" +2024-02-19,10848,3640,"[\""Tablet\"", \""Monitor\""]",1531.82,"{\"": \""7%\""}",262441,1,"""Africa""" +2024-03-15,10849,5276,"[\""Monitor\"", \""Keyboard\""]",2644.66,{},201006,0,"""Asia""" +2023-05-30,10850,9222,"[\""Charger\""]",794.27,"{\""loyalty\"": \""26%\""}",190750,1,"""South America""" +2024-10-27,10851,952,"[\""Headphones\"", \""Tablet\""]",4880.02,{},190169,1,"""Europe""" +2024-05-16,10852,6974,"[\""Phone\""]",2956.59,"{\""seasonal\"": \""30%\""}",203860,1,"""South America""" +2024-11-21,10853,4316,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3640.83,{},245621,0,"""South America""" +2024-08-24,10854,5666,"[\""Monitor\"", \""Wireless Mouse\""]",4703.42,"{\""seasonal\"": \""23%\""}",106631,0,"""Asia""" +2023-08-07,10855,925,"[\""Charger\"", \""Tablet\""]",4354.92,"{\""loyalty\"": \""21%\""}",257344,1,"""Africa""" +2023-06-04,10856,6063,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",676.99,{},34118,0,"""Europe""" +2023-10-17,10857,8454,"[\""Headphones\""]",3293.68,"{\""seasonal\"": \""12%\""}",203342,1,"""South America""" +2023-12-15,10858,4060,"[\""Keyboard\"", \""Wireless Mouse\""]",2012.08,"{\""loyalty\"": \""7%\""}",36489,0,"""Europe""" +2024-12-12,10859,7914,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2506.17,{},56434,1,"""Asia""" +2024-05-09,10860,9051,"[\""Phone\"", \""Headphones\""]",3879.26,"{\""loyalty\"": \""27%\""}",281580,0,"""Africa""" +2024-08-10,10861,2174,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3178.64,{},215931,1,"""Asia""" +2024-03-12,10862,629,"[\""Headphones\"", \""Phone\""]",992.07,{},173279,1,"""South America""" +2023-11-20,10863,138,"[\""Monitor\"", \""Wireless Mouse\""]",2270.86,{},94645,1,"""Europe""" +2024-09-12,10864,1056,"[\""Laptop\"", \""Headphones\""]",2390.15,"{\"": \""24%\""}",6307,1,"""North America""" +2023-02-17,10865,3257,"[\""Monitor\"", \""Keyboard\""]",434.23,{},210850,0,"""Africa""" +2023-10-18,10866,8419,"[\""Headphones\"", \""Monitor\""]",147.92,{},161757,0,"""South America""" +2023-08-02,10867,6861,"[\""Charger\"", \""Headphones\""]",3687.1,"{\""loyalty\"": \""11%\""}",219940,1,"""South America""" +2023-10-01,10868,5575,"[\""Laptop\"", \""Keyboard\""]",3342.61,"{\""loyalty\"": \""17%\""}",217562,0,"""North America""" +2024-09-04,10869,8577,"[\""Charger\"", \""Laptop\""]",4076.04,{},190128,0,"""South America""" +2023-03-18,10870,6743,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3000.69,{},99019,1,"""Africa""" +2024-09-12,10871,5959,"[\""Tablet\""]",2157.49,"{\""seasonal\"": \""25%\""}",105626,0,"""Asia""" +2023-04-20,10872,9055,"[\""Keyboard\"", \""Laptop\""]",1128.83,{},151784,0,"""Africa""" +2024-05-29,10873,2290,"[\""Phone\"", \""Keyboard\""]",3674.93,{},107342,0,"""North America""" +2024-11-01,10874,9904,"[\""Laptop\"", \""Wireless Mouse\""]",4997.76,"{\""seasonal\"": \""10%\""}",213358,0,"""North America""" +2023-02-12,10875,1136,"[\""Charger\""]",4175.57,{},152047,0,"""South America""" +2023-01-06,10876,1711,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",921.57,"{\""loyalty\"": \""5%\""}",244231,1,"""Asia""" +2024-06-27,10877,4584,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",327.17,{},29960,0,"""North America""" +2023-01-01,10878,6555,"[\""Monitor\""]",2862.51,"{\"": \""19%\""}",15977,1,"""South America""" +2024-04-11,10879,1604,"[\""Monitor\"", \""Phone\""]",1799.44,{},151071,0,"""South America""" +2023-11-25,10880,8996,"[\""Phone\"", \""Tablet\""]",1845.58,{},38865,0,"""Asia""" +2024-03-07,10881,6421,"[\""Keyboard\"", \""Headphones\""]",310.64,{},20708,1,"""South America""" +2024-12-13,10882,6556,"[\""Laptop\""]",4565.08,"{\"": \""27%\""}",184734,1,"""Africa""" +2024-02-09,10883,7163,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4191.43,"{\""promo\"": \""14%\""}",178437,1,"""South America""" +2023-03-05,10884,9540,"[\""Monitor\"", \""Headphones\""]",375.73,{},201142,1,"""Africa""" +2024-10-04,10885,2657,"[\""Laptop\""]",4513.49,{},170364,1,"""South America""" +2024-10-16,10886,8767,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2664.74,"{\""promo\"": \""17%\""}",92770,0,"""North America""" +2024-06-09,10887,9467,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",206.35,{},64926,0,"""Asia""" +2023-03-27,10888,145,"[\""Monitor\""]",2380.49,"{\""loyalty\"": \""9%\""}",192564,0,"""North America""" +2024-08-12,10889,2929,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",611.19,"{\""promo\"": \""19%\""}",14195,0,"""Asia""" +2024-02-24,10890,3403,"[\""Headphones\"", \""Charger\""]",1011.97,{},48750,0,"""Europe""" +2024-08-21,10891,1193,"[\""Wireless Mouse\""]",4490.58,"{\"": \""29%\""}",15406,0,"""Africa""" +2024-05-26,10892,705,"[\""Tablet\""]",3768.5,{},147471,1,"""Asia""" +2024-06-23,10893,5986,"[\""Keyboard\""]",3796.16,"{\""promo\"": \""11%\""}",83104,0,"""South America""" +2024-06-05,10894,5977,"[\""Monitor\""]",2743.66,{},175015,1,"""Africa""" +2023-01-10,10895,5223,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2438.82,{},246981,1,"""Asia""" +2024-06-06,10896,8633,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4055.0,{},224066,1,"""South America""" +2024-09-03,10897,4066,"[\""Headphones\""]",1288.79,{},140870,0,"""South America""" +2024-10-21,10898,3131,"[\""Keyboard\"", \""Tablet\""]",3947.16,"{\""promo\"": \""28%\""}",198723,1,"""Europe""" +2024-08-30,10899,9060,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4843.46,{},74432,1,"""Africa""" +2023-11-07,10900,7316,"[\""Laptop\""]",4078.08,"{\""loyalty\"": \""25%\""}",52191,1,"""Asia""" +2024-03-31,10901,4666,"[\""Headphones\""]",602.72,"{\""promo\"": \""25%\""}",40507,0,"""Asia""" +2024-04-29,10902,7845,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1772.75,"{\"": \""7%\""}",181296,1,"""North America""" +2024-08-22,10903,8845,"[\""Keyboard\"", \""Laptop\""]",3538.98,{},64504,1,"""North America""" +2024-11-09,10904,4636,"[\""Phone\""]",858.79,{},239404,0,"""Europe""" +2023-12-10,10905,8068,"[\""Tablet\"", \""Wireless Mouse\""]",841.03,{},203569,1,"""Asia""" +2024-11-24,10906,3278,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1746.7,{},156226,0,"""Africa""" +2023-07-13,10907,9758,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4465.15,{},90442,1,"""Africa""" +2023-07-06,10908,1397,"[\""Phone\"", \""Tablet\""]",710.33,{},72617,1,"""South America""" +2023-11-10,10909,1551,"[\""Laptop\"", \""Monitor\""]",320.34,"{\""seasonal\"": \""22%\""}",156423,0,"""South America""" +2023-01-14,10910,4096,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3144.01,"{\"": \""18%\""}",27511,0,"""Asia""" +2023-03-11,10911,2313,"[\""Phone\""]",1928.33,"{\""promo\"": \""14%\""}",254746,0,"""South America""" +2023-05-30,10912,1975,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1387.7,"{\"": \""12%\""}",4746,1,"""South America""" +2024-12-16,10913,8148,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2101.7,{},277869,1,"""South America""" +2023-05-09,10914,6567,"[\""Phone\"", \""Monitor\""]",566.49,"{\""seasonal\"": \""28%\""}",6684,1,"""Asia""" +2023-08-28,10915,7659,"[\""Phone\"", \""Laptop\""]",502.87,"{\""loyalty\"": \""11%\""}",222614,1,"""Asia""" +2023-01-02,10916,7440,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4572.71,{},128532,1,"""Africa""" +2024-02-08,10917,208,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",692.76,{},134481,1,"""Africa""" +2024-12-05,10918,9310,"[\""Keyboard\""]",4756.34,"{\""loyalty\"": \""21%\""}",172578,0,"""South America""" +2023-02-05,10919,7967,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2147.04,"{\""loyalty\"": \""5%\""}",254166,0,"""Europe""" +2024-07-09,10920,3059,"[\""Phone\"", \""Monitor\""]",2861.64,"{\""loyalty\"": \""29%\""}",288650,0,"""North America""" +2023-11-03,10921,899,"[\""Tablet\""]",3087.05,"{\""loyalty\"": \""12%\""}",274402,0,"""Africa""" +2024-11-09,10922,8887,"[\""Keyboard\""]",3124.1,"{\""promo\"": \""9%\""}",159582,0,"""Europe""" +2024-09-16,10923,9401,"[\""Phone\"", \""Headphones\""]",3603.53,{},250913,1,"""Africa""" +2024-12-31,10924,7491,"[\""Wireless Mouse\""]",3912.12,{},292621,0,"""Asia""" +2023-04-06,10925,529,"[\""Monitor\"", \""Charger\""]",3760.42,"{\""seasonal\"": \""28%\""}",58599,1,"""Asia""" +2024-06-28,10926,241,"[\""Monitor\"", \""Tablet\""]",92.82,{},102893,1,"""Asia""" +2023-06-12,10927,9757,"[\""Keyboard\""]",3200.11,{},67892,1,"""Europe""" +2023-05-24,10928,6237,"[\""Keyboard\""]",4643.24,"{\""loyalty\"": \""11%\""}",192288,1,"""South America""" +2024-09-18,10929,2204,"[\""Charger\""]",1772.63,{},88509,0,"""South America""" +2024-05-31,10930,6144,"[\""Charger\"", \""Phone\""]",2650.69,"{\""seasonal\"": \""27%\""}",16455,1,"""South America""" +2024-08-20,10931,9254,"[\""Charger\"", \""Laptop\""]",4561.69,"{\""loyalty\"": \""18%\""}",131461,0,"""Asia""" +2023-04-10,10932,6105,"[\""Monitor\""]",1705.32,{},294322,1,"""Asia""" +2023-08-14,10933,9139,"[\""Phone\""]",54.72,"{\""loyalty\"": \""26%\""}",81561,1,"""North America""" +2023-04-01,10934,4807,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1057.19,"{\""promo\"": \""9%\""}",156491,1,"""Africa""" +2024-05-11,10935,7431,"[\""Charger\""]",1956.11,{},183925,0,"""South America""" +2024-03-13,10936,1444,"[\""Laptop\""]",542.21,"{\""seasonal\"": \""15%\""}",27864,0,"""Africa""" +2024-02-22,10937,3525,"[\""Laptop\"", \""Wireless Mouse\""]",2765.57,{},151866,1,"""Africa""" +2024-05-07,10938,4369,"[\""Headphones\""]",3464.63,"{\""loyalty\"": \""23%\""}",172428,1,"""Europe""" +2024-04-28,10939,6008,"[\""Wireless Mouse\""]",2376.44,"{\"": \""13%\""}",44370,1,"""Asia""" +2023-06-05,10940,7126,"[\""Laptop\"", \""Phone\""]",4576.66,{},40737,1,"""South America""" +2024-10-22,10941,7866,"[\""Charger\"", \""Tablet\""]",3900.45,{},275687,0,"""Asia""" +2024-06-26,10942,4139,"[\""Charger\""]",4559.55,{},226559,1,"""South America""" +2023-06-17,10943,8702,"[\""Charger\""]",4147.92,{},61583,0,"""Asia""" +2023-11-05,10944,1314,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3347.92,{},100545,0,"""Asia""" +2023-04-28,10945,703,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4907.31,"{\"": \""30%\""}",139805,0,"""Asia""" +2024-12-13,10946,9266,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4585.43,"{\""seasonal\"": \""12%\""}",85562,0,"""South America""" +2024-10-20,10947,7786,"[\""Charger\"", \""Headphones\""]",145.14,"{\"": \""24%\""}",239041,0,"""North America""" +2024-03-26,10948,7978,"[\""Phone\"", \""Wireless Mouse\""]",4927.82,"{\""loyalty\"": \""10%\""}",230508,1,"""Europe""" +2024-09-05,10949,1068,"[\""Keyboard\"", \""Wireless Mouse\""]",1121.1,{},43725,0,"""North America""" +2023-04-06,10950,1297,"[\""Tablet\"", \""Wireless Mouse\""]",4233.42,"{\""seasonal\"": \""8%\""}",148844,0,"""South America""" +2024-12-25,10951,8069,"[\""Keyboard\""]",3964.15,"{\""promo\"": \""30%\""}",179009,1,"""Europe""" +2024-07-25,10952,9862,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",262.34,"{\"": \""21%\""}",70691,1,"""North America""" +2024-08-11,10953,9061,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2519.99,"{\""seasonal\"": \""15%\""}",191325,0,"""North America""" +2024-04-03,10954,9784,"[\""Charger\""]",1136.79,"{\""promo\"": \""6%\""}",71554,0,"""Asia""" +2024-10-18,10955,4787,"[\""Keyboard\""]",4519.86,{},113698,0,"""North America""" +2023-04-23,10956,9970,"[\""Laptop\""]",3506.17,"{\""promo\"": \""13%\""}",70917,0,"""Africa""" +2024-04-28,10957,1361,"[\""Keyboard\""]",2273.65,{},151577,0,"""North America""" +2024-04-22,10958,8104,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3264.63,"{\""promo\"": \""22%\""}",134780,0,"""Asia""" +2023-10-06,10959,254,"[\""Charger\"", \""Wireless Mouse\""]",2298.23,"{\""loyalty\"": \""27%\""}",88274,1,"""Asia""" +2023-08-09,10960,2371,"[\""Monitor\"", \""Phone\""]",1788.27,{},43294,0,"""South America""" +2023-10-03,10961,4069,"[\""Laptop\""]",3080.12,{},78501,0,"""Africa""" +2024-11-29,10962,1334,"[\""Tablet\"", \""Keyboard\""]",2685.54,{},44362,0,"""Africa""" +2023-02-16,10963,4139,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4179.21,{},290837,0,"""Asia""" +2024-10-19,10964,8995,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3702.4,{},30528,1,"""North America""" +2023-02-28,10965,9741,"[\""Tablet\""]",954.62,"{\""seasonal\"": \""8%\""}",186635,0,"""Asia""" +2024-03-28,10966,9313,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",740.36,{},136962,0,"""Europe""" +2023-09-05,10967,5750,"[\""Wireless Mouse\"", \""Laptop\""]",1757.51,"{\""seasonal\"": \""10%\""}",104840,1,"""North America""" +2023-06-02,10968,3382,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3868.75,"{\""seasonal\"": \""17%\""}",139457,0,"""Africa""" +2024-01-18,10969,9211,"[\""Monitor\"", \""Wireless Mouse\""]",1038.24,"{\"": \""27%\""}",227025,1,"""North America""" +2023-05-13,10970,6368,"[\""Keyboard\""]",961.32,"{\"": \""25%\""}",270193,0,"""Africa""" +2024-01-03,10971,6836,"[\""Headphones\""]",4212.31,"{\""loyalty\"": \""13%\""}",115447,1,"""North America""" +2023-11-15,10972,1717,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3646.71,"{\""loyalty\"": \""15%\""}",190911,0,"""South America""" +2023-05-23,10973,5517,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2561.56,"{\""seasonal\"": \""25%\""}",264515,0,"""Africa""" +2024-03-24,10974,5255,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3916.02,"{\"": \""10%\""}",185364,1,"""Africa""" +2024-08-18,10975,4087,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2735.07,"{\"": \""29%\""}",212424,0,"""Europe""" +2023-12-30,10976,9304,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2951.91,"{\""promo\"": \""11%\""}",267487,1,"""South America""" +2024-03-23,10977,4281,"[\""Tablet\""]",3254.61,"{\""promo\"": \""6%\""}",72231,1,"""South America""" +2023-08-22,10978,9,"[\""Phone\"", \""Monitor\""]",4995.97,"{\"": \""15%\""}",289590,1,"""South America""" +2023-04-08,10979,2698,"[\""Keyboard\""]",1271.96,{},77369,1,"""Europe""" +2023-04-13,10980,559,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1801.78,{},167252,1,"""Africa""" +2024-07-16,10981,1665,"[\""Charger\""]",4485.46,"{\"": \""10%\""}",257426,1,"""South America""" +2024-06-28,10982,196,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",620.77,{},193503,0,"""Africa""" +2023-04-18,10983,2857,"[\""Headphones\""]",4752.71,"{\"": \""8%\""}",62172,1,"""Asia""" +2024-01-05,10984,7664,"[\""Charger\"", \""Phone\""]",1692.35,"{\""seasonal\"": \""8%\""}",147735,0,"""North America""" +2024-05-27,10985,7876,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",266.93,"{\""loyalty\"": \""11%\""}",266277,1,"""Asia""" +2024-04-06,10986,845,"[\""Keyboard\""]",3190.55,{},184828,0,"""Europe""" +2023-08-10,10987,5825,"[\""Tablet\""]",538.04,{},193821,0,"""Africa""" +2023-07-04,10988,3331,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",753.29,"{\""seasonal\"": \""14%\""}",268964,0,"""Asia""" +2023-10-15,10989,3822,"[\""Phone\"", \""Monitor\""]",1598.82,{},293790,1,"""Africa""" +2024-03-23,10990,364,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3233.69,"{\""loyalty\"": \""5%\""}",296660,0,"""Africa""" +2023-08-18,10991,6935,"[\""Headphones\""]",1061.61,"{\""promo\"": \""21%\""}",254551,1,"""South America""" +2023-12-18,10992,810,"[\""Headphones\""]",433.5,{},97281,0,"""Asia""" +2024-03-30,10993,5103,"[\""Phone\""]",159.94,{},225333,1,"""Africa""" +2024-10-26,10994,4592,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2238.62,{},174099,1,"""South America""" +2024-01-24,10995,8420,"[\""Phone\"", \""Wireless Mouse\""]",1881.1,{},223995,1,"""Africa""" +2023-04-20,10996,4742,"[\""Headphones\"", \""Laptop\""]",734.58,"{\""promo\"": \""25%\""}",298423,0,"""Asia""" +2023-07-13,10997,8066,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1744.63,"{\"": \""24%\""}",245132,0,"""Asia""" +2023-03-27,10998,1124,"[\""Keyboard\"", \""Charger\""]",1716.18,"{\""loyalty\"": \""10%\""}",121737,1,"""Africa""" +2023-11-28,10999,7820,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",272.76,"{\"": \""7%\""}",183888,1,"""Europe""" +2024-12-02,11000,4488,"[\""Tablet\""]",1046.14,"{\""seasonal\"": \""24%\""}",71594,1,"""South America""" +2024-04-20,11001,2357,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",713.03,{},261600,1,"""Africa""" +2024-02-22,11002,7017,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3453.51,"{\""seasonal\"": \""21%\""}",153639,0,"""North America""" +2024-03-05,11003,1345,"[\""Wireless Mouse\""]",4032.06,{},247426,1,"""Europe""" +2024-05-31,11004,3737,"[\""Monitor\""]",2178.49,"{\""loyalty\"": \""27%\""}",67462,1,"""South America""" +2023-08-23,11005,8061,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1665.53,"{\""promo\"": \""6%\""}",162352,1,"""Europe""" +2024-11-18,11006,6011,"[\""Phone\""]",4575.96,"{\""seasonal\"": \""23%\""}",116835,0,"""North America""" +2024-08-20,11007,5571,"[\""Keyboard\""]",2890.82,"{\"": \""28%\""}",110101,0,"""Asia""" +2024-05-06,11008,2011,"[\""Tablet\""]",3719.14,"{\""seasonal\"": \""24%\""}",162741,1,"""Europe""" +2024-05-05,11009,1741,"[\""Phone\""]",3068.59,"{\"": \""19%\""}",226258,0,"""North America""" +2023-12-14,11010,1343,"[\""Charger\"", \""Headphones\""]",1111.22,"{\""seasonal\"": \""30%\""}",264341,1,"""Asia""" +2024-01-09,11011,6902,"[\""Laptop\"", \""Headphones\""]",3982.47,{},100979,0,"""Africa""" +2023-07-20,11012,5696,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3407.1,"{\""loyalty\"": \""28%\""}",76850,0,"""South America""" +2023-09-21,11013,476,"[\""Monitor\""]",4883.08,{},95963,0,"""Asia""" +2023-03-09,11014,1576,"[\""Wireless Mouse\""]",1822.98,"{\"": \""14%\""}",52949,1,"""Africa""" +2024-08-17,11015,7531,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2658.28,{},155774,0,"""Africa""" +2023-03-02,11016,838,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4716.42,"{\""seasonal\"": \""15%\""}",211076,1,"""South America""" +2023-09-28,11017,6523,"[\""Charger\"", \""Wireless Mouse\""]",4856.97,"{\""seasonal\"": \""30%\""}",149121,1,"""North America""" +2023-11-22,11018,1586,"[\""Phone\""]",2112.78,"{\"": \""16%\""}",112595,0,"""Europe""" +2024-10-02,11019,706,"[\""Phone\"", \""Laptop\""]",930.9,"{\""loyalty\"": \""19%\""}",221883,0,"""Africa""" +2024-12-21,11020,7104,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",321.96,"{\""seasonal\"": \""8%\""}",189040,0,"""South America""" +2023-06-29,11021,5196,"[\""Monitor\""]",71.73,{},70043,1,"""Asia""" +2023-01-02,11022,3827,"[\""Charger\"", \""Phone\""]",4921.93,{},257343,1,"""Africa""" +2023-11-04,11023,8801,"[\""Phone\"", \""Charger\""]",2641.56,"{\"": \""12%\""}",32006,1,"""South America""" +2023-11-24,11024,7365,"[\""Headphones\""]",1239.55,"{\""loyalty\"": \""18%\""}",74711,0,"""South America""" +2024-06-03,11025,1578,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1008.23,{},229052,0,"""South America""" +2023-12-29,11026,457,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",615.03,"{\"": \""19%\""}",214711,1,"""Asia""" +2023-01-07,11027,2847,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3622.13,{},139861,0,"""North America""" +2023-01-14,11028,5545,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3323.52,"{\""seasonal\"": \""7%\""}",47022,1,"""South America""" +2023-09-18,11029,2310,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3426.78,{},94276,0,"""South America""" +2024-10-26,11030,4790,"[\""Charger\""]",3557.2,{},127069,1,"""Asia""" +2023-08-25,11031,2125,"[\""Monitor\"", \""Wireless Mouse\""]",382.06,"{\"": \""21%\""}",160213,0,"""Europe""" +2023-03-19,11032,7912,"[\""Wireless Mouse\"", \""Tablet\""]",1040.55,{},183456,0,"""North America""" +2023-08-31,11033,8972,"[\""Headphones\""]",2531.25,{},160688,0,"""North America""" +2023-06-28,11034,7764,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2537.73,{},24875,0,"""Africa""" +2024-02-21,11035,4499,"[\""Keyboard\""]",815.91,"{\""seasonal\"": \""20%\""}",135540,1,"""Europe""" +2024-07-02,11036,5495,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3539.57,{},168990,1,"""Asia""" +2023-10-21,11037,9770,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2461.77,"{\""seasonal\"": \""9%\""}",286800,1,"""North America""" +2024-07-01,11038,4238,"[\""Monitor\"", \""Charger\""]",527.96,"{\""loyalty\"": \""11%\""}",134658,1,"""Europe""" +2024-07-10,11039,263,"[\""Keyboard\""]",4422.37,{},253278,1,"""North America""" +2024-06-07,11040,9545,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",447.44,{},15538,0,"""North America""" +2024-12-19,11041,3157,"[\""Headphones\"", \""Charger\""]",3452.55,{},61863,1,"""Asia""" +2023-04-09,11042,4598,"[\""Headphones\""]",354.23,"{\""promo\"": \""10%\""}",260165,0,"""Africa""" +2023-12-13,11043,67,"[\""Laptop\""]",3037.14,"{\""loyalty\"": \""16%\""}",86501,1,"""North America""" +2023-05-23,11044,1715,"[\""Monitor\"", \""Laptop\""]",2136.62,"{\""seasonal\"": \""25%\""}",170548,0,"""Europe""" +2023-07-14,11045,7060,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1284.02,{},161431,1,"""North America""" +2023-11-18,11046,2662,"[\""Keyboard\"", \""Headphones\""]",982.43,{},168851,0,"""Africa""" +2024-09-17,11047,8922,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1061.48,{},266873,1,"""Europe""" +2024-01-20,11048,2975,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3969.57,{},9154,0,"""South America""" +2024-06-04,11049,8724,"[\""Monitor\"", \""Laptop\""]",3105.85,"{\""promo\"": \""13%\""}",182062,1,"""North America""" +2023-03-20,11050,1971,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",852.94,"{\"": \""23%\""}",194223,1,"""South America""" +2024-03-27,11051,1596,"[\""Tablet\"", \""Wireless Mouse\""]",3159.27,{},92881,1,"""Europe""" +2024-02-11,11052,8142,"[\""Phone\""]",84.28,"{\""seasonal\"": \""7%\""}",171841,0,"""Europe""" +2023-10-04,11053,7423,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1135.32,"{\"": \""20%\""}",283893,1,"""Europe""" +2024-12-29,11054,2593,"[\""Wireless Mouse\"", \""Headphones\""]",1051.6,{},7484,1,"""Asia""" +2024-10-06,11055,8168,"[\""Laptop\"", \""Monitor\""]",4785.41,"{\""seasonal\"": \""12%\""}",27055,0,"""South America""" +2023-02-17,11056,6782,"[\""Phone\""]",1148.51,{},275196,1,"""South America""" +2024-05-30,11057,9376,"[\""Phone\"", \""Charger\""]",3806.57,{},240034,1,"""North America""" +2023-05-29,11058,3961,"[\""Wireless Mouse\"", \""Laptop\""]",669.03,"{\""seasonal\"": \""5%\""}",195640,0,"""South America""" +2024-03-12,11059,5051,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4226.03,{},268708,1,"""Asia""" +2023-05-19,11060,1115,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2518.66,{},270510,1,"""Africa""" +2024-10-13,11061,3042,"[\""Monitor\"", \""Phone\""]",2038.76,{},169550,0,"""South America""" +2023-02-02,11062,4779,"[\""Phone\"", \""Charger\""]",4015.48,{},299803,1,"""Asia""" +2024-11-28,11063,1695,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",804.28,"{\""seasonal\"": \""22%\""}",99209,0,"""Africa""" +2024-08-14,11064,8692,"[\""Phone\""]",1563.25,"{\""seasonal\"": \""17%\""}",53109,1,"""South America""" +2023-08-06,11065,7639,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2529.63,{},175145,0,"""Europe""" +2024-11-11,11066,4091,"[\""Phone\"", \""Monitor\""]",3595.23,{},85754,1,"""Asia""" +2023-12-15,11067,8859,"[\""Monitor\"", \""Tablet\""]",4063.5,"{\""seasonal\"": \""12%\""}",163538,0,"""North America""" +2023-04-27,11068,350,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4007.73,{},239675,1,"""North America""" +2024-06-02,11069,7681,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3376.17,{},256508,0,"""North America""" +2024-05-06,11070,7460,"[\""Headphones\""]",2857.02,{},278676,1,"""North America""" +2024-08-31,11071,3774,"[\""Monitor\"", \""Phone\""]",4927.96,{},242067,1,"""Europe""" +2023-11-01,11072,4501,"[\""Keyboard\"", \""Tablet\""]",2009.49,"{\""seasonal\"": \""29%\""}",73167,1,"""South America""" +2024-07-12,11073,4837,"[\""Charger\"", \""Tablet\""]",3634.7,"{\"": \""11%\""}",14017,1,"""South America""" +2024-04-01,11074,5500,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3206.37,"{\""loyalty\"": \""28%\""}",161193,0,"""Africa""" +2023-06-01,11075,7278,"[\""Charger\""]",4286.03,{},28794,0,"""South America""" +2024-04-27,11076,9088,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2470.31,{},290367,1,"""Africa""" +2023-05-07,11077,3157,"[\""Charger\""]",373.09,"{\"": \""13%\""}",168268,1,"""Europe""" +2023-03-19,11078,1947,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2996.19,{},68818,0,"""Europe""" +2024-05-10,11079,4747,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4121.81,{},140239,1,"""Africa""" +2023-03-20,11080,7798,"[\""Headphones\"", \""Tablet\""]",1672.53,"{\"": \""5%\""}",57171,0,"""Africa""" +2023-12-24,11081,4356,"[\""Phone\""]",4605.26,{},33954,0,"""South America""" +2023-09-19,11082,4260,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1311.37,"{\""loyalty\"": \""23%\""}",217112,0,"""South America""" +2024-04-15,11083,5596,"[\""Phone\""]",232.32,"{\"": \""19%\""}",41446,0,"""Asia""" +2024-11-11,11084,2543,"[\""Headphones\"", \""Charger\""]",2671.0,{},119484,1,"""Europe""" +2024-01-14,11085,1685,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3605.61,"{\""loyalty\"": \""26%\""}",97882,1,"""Africa""" +2023-08-29,11086,6467,"[\""Tablet\"", \""Keyboard\""]",4194.67,"{\"": \""7%\""}",23219,0,"""Asia""" +2023-06-19,11087,4267,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",417.59,"{\"": \""22%\""}",150231,0,"""South America""" +2023-01-02,11088,1796,"[\""Headphones\"", \""Phone\""]",4637.82,"{\""promo\"": \""18%\""}",34440,0,"""Africa""" +2024-12-13,11089,7061,"[\""Keyboard\"", \""Phone\""]",2663.89,"{\""seasonal\"": \""8%\""}",167494,0,"""Asia""" +2023-04-17,11090,9763,"[\""Tablet\"", \""Monitor\""]",2024.12,"{\""promo\"": \""17%\""}",200714,0,"""Europe""" +2023-01-15,11091,5509,"[\""Charger\""]",3737.09,"{\""promo\"": \""24%\""}",150434,1,"""Asia""" +2023-03-31,11092,6744,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4118.66,{},240710,0,"""South America""" +2024-08-06,11093,7200,"[\""Phone\""]",3830.65,"{\"": \""9%\""}",43804,1,"""Asia""" +2024-06-13,11094,7844,"[\""Tablet\""]",805.95,"{\"": \""20%\""}",5515,0,"""Europe""" +2024-02-15,11095,2853,"[\""Phone\""]",3041.04,"{\""promo\"": \""8%\""}",222914,0,"""Europe""" +2024-02-28,11096,2672,"[\""Laptop\""]",2346.06,"{\""seasonal\"": \""17%\""}",35418,0,"""North America""" +2024-10-08,11097,1483,"[\""Tablet\""]",4848.76,{},140897,0,"""South America""" +2023-09-21,11098,6387,"[\""Charger\"", \""Phone\""]",4429.58,"{\""promo\"": \""11%\""}",61832,0,"""Europe""" +2023-12-01,11099,8183,"[\""Keyboard\""]",2238.65,"{\""loyalty\"": \""27%\""}",29080,1,"""South America""" +2024-02-17,11100,3278,"[\""Tablet\"", \""Wireless Mouse\""]",1727.14,{},110034,1,"""Africa""" +2024-03-29,11101,5482,"[\""Keyboard\""]",4577.18,{},86973,0,"""Europe""" +2023-01-03,11102,3889,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3008.71,"{\""seasonal\"": \""19%\""}",226145,0,"""North America""" +2024-10-24,11103,4080,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3925.49,"{\"": \""8%\""}",126221,1,"""Europe""" +2024-09-29,11104,2672,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1273.59,"{\"": \""26%\""}",193194,1,"""Africa""" +2024-12-20,11105,9771,"[\""Keyboard\""]",2394.45,"{\""loyalty\"": \""7%\""}",137160,1,"""Africa""" +2023-05-30,11106,3114,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",731.58,{},166010,0,"""Europe""" +2023-11-26,11107,3218,"[\""Tablet\""]",4968.26,{},58172,1,"""Europe""" +2023-05-01,11108,2263,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1452.55,{},213579,1,"""North America""" +2024-06-21,11109,6401,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4658.68,{},209161,1,"""Asia""" +2023-12-01,11110,2912,"[\""Charger\""]",2464.77,{},19790,1,"""South America""" +2023-09-21,11111,5563,"[\""Laptop\"", \""Wireless Mouse\""]",270.36,{},76724,1,"""Asia""" +2024-07-13,11112,355,"[\""Charger\""]",2287.16,"{\""seasonal\"": \""12%\""}",208654,1,"""Asia""" +2023-03-09,11113,3711,"[\""Wireless Mouse\""]",2546.81,{},190479,1,"""Asia""" +2024-08-23,11114,9837,"[\""Keyboard\""]",4499.17,"{\"": \""15%\""}",183661,1,"""Europe""" +2024-05-31,11115,8091,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1323.1,{},71012,1,"""North America""" +2023-07-29,11116,7332,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3681.7,{},292417,1,"""North America""" +2023-11-22,11117,6765,"[\""Headphones\""]",4077.78,"{\""promo\"": \""14%\""}",54379,1,"""Asia""" +2023-01-29,11118,2365,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4090.85,{},263233,1,"""Africa""" +2024-11-28,11119,1823,"[\""Wireless Mouse\""]",1985.88,"{\""loyalty\"": \""24%\""}",298069,1,"""Europe""" +2023-05-29,11120,1355,"[\""Tablet\""]",4675.14,{},86106,1,"""Europe""" +2024-04-18,11121,2137,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3524.01,"{\""seasonal\"": \""17%\""}",71878,0,"""Asia""" +2024-09-14,11122,9015,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4512.91,{},220439,1,"""South America""" +2024-11-25,11123,7873,"[\""Headphones\"", \""Phone\""]",156.62,{},138876,0,"""South America""" +2023-11-13,11124,1161,"[\""Headphones\"", \""Phone\""]",2429.42,{},160487,1,"""South America""" +2023-09-17,11125,7638,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2114.07,{},224746,0,"""Europe""" +2024-03-29,11126,9913,"[\""Wireless Mouse\"", \""Monitor\""]",2960.16,{},82265,1,"""South America""" +2024-11-19,11127,3734,"[\""Wireless Mouse\"", \""Tablet\""]",4424.44,"{\"": \""14%\""}",127421,1,"""Africa""" +2024-01-17,11128,4215,"[\""Keyboard\"", \""Wireless Mouse\""]",1295.09,"{\""loyalty\"": \""30%\""}",25165,0,"""North America""" +2024-07-17,11129,638,"[\""Keyboard\"", \""Phone\""]",4423.95,"{\""seasonal\"": \""15%\""}",10105,0,"""North America""" +2023-10-02,11130,814,"[\""Keyboard\"", \""Wireless Mouse\""]",986.2,{},194950,0,"""Africa""" +2024-08-05,11131,8456,"[\""Charger\"", \""Keyboard\""]",2815.47,{},173616,1,"""Asia""" +2024-02-12,11132,3285,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",892.46,{},17217,1,"""Europe""" +2023-04-02,11133,4588,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4056.72,{},285936,1,"""Asia""" +2024-03-23,11134,2600,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3621.11,{},41613,1,"""North America""" +2024-06-05,11135,861,"[\""Laptop\"", \""Phone\"", \""Charger\""]",210.71,{},286471,0,"""Africa""" +2024-07-09,11136,8793,"[\""Phone\""]",4837.38,"{\""seasonal\"": \""8%\""}",99434,0,"""Asia""" +2023-11-25,11137,4754,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3309.61,{},214558,0,"""Africa""" +2024-06-04,11138,7661,"[\""Tablet\"", \""Wireless Mouse\""]",2043.32,{},251097,1,"""Asia""" +2024-07-08,11139,8644,"[\""Charger\""]",2974.14,"{\"": \""17%\""}",54944,1,"""North America""" +2024-07-09,11140,3256,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3714.83,{},261897,1,"""Asia""" +2023-05-19,11141,229,"[\""Monitor\"", \""Headphones\""]",3750.91,"{\""loyalty\"": \""9%\""}",149371,0,"""Asia""" +2024-11-07,11142,9050,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2197.6,{},258464,1,"""Europe""" +2024-04-09,11143,6205,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2769.08,{},173202,0,"""South America""" +2023-10-07,11144,5239,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2989.88,{},287873,1,"""Asia""" +2024-02-09,11145,9038,"[\""Monitor\"", \""Tablet\""]",2788.58,"{\""promo\"": \""9%\""}",79140,1,"""Africa""" +2023-07-12,11146,1098,"[\""Tablet\""]",3070.2,{},153954,0,"""South America""" +2024-11-16,11147,8604,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4667.17,"{\""loyalty\"": \""27%\""}",85707,1,"""North America""" +2023-01-22,11148,4427,"[\""Monitor\"", \""Keyboard\""]",154.92,"{\"": \""15%\""}",71242,0,"""South America""" +2023-03-08,11149,5637,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",672.12,{},235133,1,"""Europe""" +2023-03-29,11150,460,"[\""Laptop\"", \""Keyboard\""]",2757.07,{},30407,0,"""Europe""" +2023-12-18,11151,5176,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3501.01,{},212346,1,"""Europe""" +2024-03-29,11152,1636,"[\""Tablet\"", \""Wireless Mouse\""]",1948.45,{},17587,1,"""North America""" +2024-05-21,11153,3082,"[\""Headphones\""]",3275.7,{},254985,0,"""Africa""" +2023-06-06,11154,440,"[\""Laptop\"", \""Keyboard\""]",711.34,"{\""promo\"": \""8%\""}",67762,1,"""Africa""" +2024-06-15,11155,5038,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2207.6,{},48618,1,"""Asia""" +2023-09-25,11156,1256,"[\""Wireless Mouse\""]",3565.81,"{\""loyalty\"": \""10%\""}",136796,0,"""Africa""" +2024-11-27,11157,2734,"[\""Monitor\"", \""Wireless Mouse\""]",653.59,"{\""promo\"": \""13%\""}",238993,0,"""Africa""" +2023-09-10,11158,9709,"[\""Wireless Mouse\"", \""Laptop\""]",1030.1,{},50876,1,"""North America""" +2023-10-06,11159,5862,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2623.88,"{\""seasonal\"": \""8%\""}",198210,0,"""Asia""" +2023-02-03,11160,7147,"[\""Laptop\""]",2598.37,"{\""loyalty\"": \""10%\""}",294072,0,"""Asia""" +2023-09-10,11161,1223,"[\""Wireless Mouse\"", \""Laptop\""]",3830.98,{},168246,1,"""Africa""" +2024-03-09,11162,9628,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2124.9,{},231243,0,"""Africa""" +2023-10-21,11163,4486,"[\""Tablet\""]",4801.32,"{\""promo\"": \""14%\""}",30204,1,"""Asia""" +2024-03-17,11164,5259,"[\""Phone\"", \""Keyboard\""]",2827.07,"{\"": \""18%\""}",181084,0,"""Europe""" +2023-07-24,11165,1311,"[\""Headphones\"", \""Laptop\""]",4435.39,"{\""seasonal\"": \""16%\""}",281931,1,"""North America""" +2024-03-22,11166,4621,"[\""Charger\""]",2577.74,{},262159,1,"""Africa""" +2024-11-24,11167,5080,"[\""Tablet\""]",4384.52,{},117594,0,"""Europe""" +2024-12-17,11168,3435,"[\""Charger\""]",2820.19,"{\""seasonal\"": \""12%\""}",87356,1,"""South America""" +2023-09-16,11169,9728,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",99.68,{},265986,0,"""South America""" +2023-03-13,11170,1307,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2521.44,{},143901,1,"""Europe""" +2023-07-13,11171,8174,"[\""Headphones\"", \""Monitor\""]",3058.6,{},201662,0,"""Europe""" +2024-09-14,11172,8210,"[\""Keyboard\""]",4390.14,"{\""loyalty\"": \""14%\""}",210087,0,"""North America""" +2024-08-05,11173,1849,"[\""Phone\"", \""Headphones\""]",218.13,"{\"": \""19%\""}",224139,0,"""South America""" +2023-12-24,11174,7271,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4574.38,"{\""seasonal\"": \""9%\""}",191552,1,"""North America""" +2023-05-23,11175,5914,"[\""Tablet\"", \""Laptop\""]",3274.6,"{\"": \""28%\""}",256180,1,"""South America""" +2023-09-15,11176,9467,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2048.28,{},170222,1,"""North America""" +2024-01-01,11177,6981,"[\""Laptop\""]",2563.32,{},156783,0,"""North America""" +2023-07-04,11178,2031,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",202.96,{},10321,1,"""North America""" +2023-10-15,11179,6540,"[\""Laptop\""]",4259.71,{},243942,0,"""South America""" +2024-05-11,11180,476,"[\""Wireless Mouse\""]",1790.2,{},207167,0,"""North America""" +2023-04-28,11181,1409,"[\""Headphones\"", \""Wireless Mouse\""]",3443.64,{},277325,0,"""Europe""" +2024-11-10,11182,6076,"[\""Headphones\""]",283.99,"{\"": \""19%\""}",198315,0,"""Europe""" +2023-03-11,11183,8241,"[\""Phone\""]",4085.57,{},105266,1,"""Asia""" +2024-01-03,11184,9123,"[\""Keyboard\"", \""Headphones\""]",912.99,"{\""promo\"": \""22%\""}",6153,0,"""Africa""" +2024-10-01,11185,2584,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3157.94,"{\""loyalty\"": \""21%\""}",109544,0,"""Asia""" +2023-08-06,11186,3252,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1259.15,"{\""seasonal\"": \""6%\""}",99428,1,"""Europe""" +2023-12-24,11187,4648,"[\""Wireless Mouse\"", \""Charger\""]",3489.42,{},171314,0,"""Europe""" +2024-10-12,11188,6235,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",867.71,{},18051,1,"""Africa""" +2023-12-17,11189,1840,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2082.92,{},120200,1,"""Asia""" +2023-12-06,11190,8829,"[\""Charger\"", \""Keyboard\""]",2540.44,"{\""promo\"": \""20%\""}",193214,1,"""South America""" +2024-11-09,11191,7140,"[\""Charger\""]",3962.7,"{\""promo\"": \""14%\""}",78234,0,"""North America""" +2024-05-15,11192,9851,"[\""Keyboard\"", \""Monitor\""]",1360.92,{},123520,0,"""South America""" +2024-08-14,11193,5441,"[\""Wireless Mouse\"", \""Tablet\""]",4340.27,{},274401,1,"""Europe""" +2023-01-06,11194,541,"[\""Headphones\""]",1107.92,"{\"": \""15%\""}",167509,1,"""Asia""" +2023-07-01,11195,2857,"[\""Charger\""]",3016.02,"{\"": \""22%\""}",245604,0,"""South America""" +2024-05-21,11196,1640,"[\""Wireless Mouse\""]",787.97,"{\""promo\"": \""17%\""}",124809,1,"""Africa""" +2023-05-17,11197,7896,"[\""Tablet\""]",2385.52,{},96704,0,"""Europe""" +2024-03-21,11198,2486,"[\""Keyboard\""]",1977.53,{},201870,1,"""South America""" +2024-01-17,11199,1064,"[\""Laptop\"", \""Monitor\""]",2555.35,{},165877,0,"""Europe""" +2023-07-07,11200,3697,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2680.31,{},61019,1,"""Asia""" +2024-03-19,11201,6136,"[\""Laptop\"", \""Keyboard\""]",522.68,"{\""loyalty\"": \""14%\""}",117099,1,"""North America""" +2024-07-08,11202,9559,"[\""Laptop\"", \""Charger\""]",4426.8,"{\"": \""16%\""}",108726,1,"""North America""" +2024-05-18,11203,8490,"[\""Keyboard\""]",1149.0,"{\""promo\"": \""13%\""}",92812,1,"""Africa""" +2023-03-03,11204,8862,"[\""Monitor\"", \""Phone\""]",2559.35,{},265660,0,"""Europe""" +2024-05-08,11205,376,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",173.27,{},123479,1,"""North America""" +2024-11-03,11206,4666,"[\""Charger\""]",4770.82,{},185950,0,"""South America""" +2024-06-27,11207,3272,"[\""Phone\""]",3802.17,{},166695,1,"""South America""" +2023-11-10,11208,4173,"[\""Keyboard\""]",1096.59,"{\"": \""12%\""}",210793,0,"""Asia""" +2023-07-22,11209,715,"[\""Charger\""]",201.39,"{\""loyalty\"": \""29%\""}",17026,1,"""Africa""" +2023-12-23,11210,3405,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4115.27,"{\"": \""25%\""}",174680,0,"""North America""" +2024-01-07,11211,5982,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2629.21,"{\""promo\"": \""21%\""}",218745,1,"""Africa""" +2024-10-20,11212,3253,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2970.46,{},223752,0,"""Europe""" +2024-08-19,11213,6403,"[\""Keyboard\"", \""Charger\""]",2925.0,"{\""seasonal\"": \""25%\""}",127014,1,"""Africa""" +2024-06-04,11214,2366,"[\""Tablet\""]",3969.28,{},92939,1,"""North America""" +2023-05-27,11215,7124,"[\""Headphones\""]",3466.3,{},128838,0,"""Asia""" +2023-08-22,11216,6250,"[\""Monitor\""]",1647.18,{},18840,1,"""Asia""" +2024-10-08,11217,21,"[\""Monitor\""]",2645.96,{},136478,1,"""South America""" +2024-10-07,11218,7436,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1669.61,{},193383,1,"""Europe""" +2024-02-18,11219,3807,"[\""Laptop\""]",3001.47,{},122566,0,"""South America""" +2023-08-16,11220,7716,"[\""Keyboard\"", \""Charger\""]",2377.96,"{\"": \""28%\""}",135401,0,"""South America""" +2024-09-14,11221,8458,"[\""Laptop\""]",1711.83,"{\""loyalty\"": \""26%\""}",135184,1,"""South America""" +2024-05-14,11222,9751,"[\""Tablet\""]",2065.76,"{\"": \""29%\""}",280602,1,"""South America""" +2023-09-22,11223,6755,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2813.24,{},42093,1,"""South America""" +2024-09-02,11224,1829,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3329.27,{},214868,1,"""North America""" +2023-03-24,11225,4685,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4645.23,"{\""seasonal\"": \""7%\""}",46255,0,"""North America""" +2023-06-29,11226,9437,"[\""Headphones\"", \""Tablet\""]",2559.51,"{\"": \""19%\""}",44619,1,"""Europe""" +2024-02-11,11227,2080,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4521.3,"{\"": \""19%\""}",268531,0,"""Europe""" +2023-07-13,11228,4495,"[\""Tablet\""]",3408.28,{},54599,1,"""South America""" +2023-01-16,11229,6086,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2752.34,"{\""loyalty\"": \""5%\""}",194204,1,"""Europe""" +2023-01-22,11230,7649,"[\""Tablet\"", \""Laptop\""]",3506.12,"{\""seasonal\"": \""14%\""}",80741,1,"""Asia""" +2024-08-10,11231,6176,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2186.81,{},99187,1,"""Asia""" +2023-07-25,11232,1087,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4981.58,{},273876,0,"""North America""" +2024-09-11,11233,2095,"[\""Wireless Mouse\""]",1998.37,"{\"": \""21%\""}",266870,0,"""South America""" +2023-10-16,11234,874,"[\""Charger\""]",4184.64,"{\"": \""15%\""}",18386,0,"""North America""" +2024-12-23,11235,3297,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1026.92,"{\""loyalty\"": \""5%\""}",269462,0,"""South America""" +2023-09-20,11236,4917,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1813.63,"{\""seasonal\"": \""9%\""}",203978,0,"""Asia""" +2024-07-09,11237,521,"[\""Keyboard\"", \""Charger\""]",270.72,{},57059,0,"""Asia""" +2024-09-07,11238,2606,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",806.79,{},283258,0,"""Asia""" +2024-07-27,11239,3757,"[\""Tablet\""]",644.1,"{\""seasonal\"": \""10%\""}",29386,0,"""Europe""" +2023-05-10,11240,6201,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1492.08,"{\""seasonal\"": \""20%\""}",264031,1,"""Asia""" +2024-10-20,11241,3106,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1194.55,{},193124,0,"""Europe""" +2024-02-11,11242,5925,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4491.19,{},51715,0,"""North America""" +2023-10-14,11243,993,"[\""Wireless Mouse\"", \""Charger\""]",2918.75,{},76458,1,"""South America""" +2023-05-23,11244,5556,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2631.26,{},261094,0,"""Asia""" +2024-09-15,11245,2700,"[\""Keyboard\"", \""Laptop\""]",2551.12,"{\""loyalty\"": \""26%\""}",100104,1,"""Europe""" +2024-09-25,11246,9617,"[\""Monitor\""]",1134.66,"{\""seasonal\"": \""20%\""}",132854,1,"""Asia""" +2023-03-10,11247,807,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2489.92,{},183556,0,"""Africa""" +2023-08-17,11248,2958,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",436.62,"{\"": \""11%\""}",55769,0,"""North America""" +2024-10-10,11249,6697,"[\""Headphones\""]",4167.06,{},77356,1,"""Asia""" +2023-02-10,11250,332,"[\""Headphones\""]",1219.9,"{\"": \""9%\""}",99952,0,"""South America""" +2023-01-04,11251,2730,"[\""Tablet\"", \""Phone\""]",1052.89,{},86974,0,"""South America""" +2024-09-06,11252,7929,"[\""Monitor\"", \""Wireless Mouse\""]",2689.42,{},178275,1,"""Africa""" +2024-05-24,11253,7631,"[\""Charger\"", \""Keyboard\""]",1282.73,{},71223,0,"""Asia""" +2023-02-15,11254,1994,"[\""Keyboard\""]",375.76,{},256709,1,"""Africa""" +2023-08-03,11255,7423,"[\""Headphones\"", \""Monitor\""]",433.83,{},258323,1,"""Africa""" +2023-05-04,11256,3357,"[\""Laptop\""]",4295.97,"{\""promo\"": \""22%\""}",253041,0,"""Africa""" +2024-09-09,11257,1099,"[\""Charger\""]",705.64,"{\"": \""22%\""}",202820,1,"""Europe""" +2024-10-09,11258,8305,"[\""Keyboard\"", \""Headphones\""]",3983.85,"{\""loyalty\"": \""14%\""}",253702,1,"""Africa""" +2023-11-25,11259,5938,"[\""Headphones\"", \""Keyboard\""]",4689.85,{},8443,1,"""North America""" +2023-08-15,11260,1961,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1083.46,"{\""seasonal\"": \""29%\""}",129643,1,"""Africa""" +2023-07-07,11261,4949,"[\""Charger\""]",1010.07,{},247343,1,"""Europe""" +2023-06-10,11262,8188,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2395.87,{},152969,1,"""Asia""" +2024-07-22,11263,5155,"[\""Wireless Mouse\"", \""Laptop\""]",1272.29,"{\""loyalty\"": \""13%\""}",261551,1,"""Europe""" +2024-05-13,11264,6689,"[\""Tablet\"", \""Monitor\""]",63.74,"{\"": \""8%\""}",140171,0,"""North America""" +2024-01-07,11265,4812,"[\""Tablet\""]",4218.11,{},33996,1,"""Asia""" +2024-03-13,11266,4963,"[\""Keyboard\""]",3769.94,{},47405,1,"""Europe""" +2024-03-27,11267,8455,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",73.98,"{\"": \""21%\""}",271703,0,"""Asia""" +2024-07-14,11268,5827,"[\""Keyboard\"", \""Laptop\""]",3313.29,"{\""promo\"": \""15%\""}",71707,0,"""Asia""" +2023-02-28,11269,9451,"[\""Headphones\""]",1527.53,{},42581,0,"""North America""" +2023-05-29,11270,3278,"[\""Keyboard\"", \""Headphones\""]",2843.01,"{\""promo\"": \""10%\""}",242308,0,"""South America""" +2024-07-02,11271,567,"[\""Wireless Mouse\""]",4308.24,{},24167,0,"""Africa""" +2023-04-29,11272,2017,"[\""Laptop\"", \""Phone\""]",4399.83,"{\""promo\"": \""10%\""}",57986,1,"""North America""" +2024-09-29,11273,8841,"[\""Phone\"", \""Monitor\""]",1532.12,{},78843,0,"""Europe""" +2023-08-13,11274,2744,"[\""Headphones\""]",4920.32,{},176343,1,"""Europe""" +2023-05-07,11275,7498,"[\""Laptop\"", \""Phone\""]",1302.64,{},260966,0,"""Africa""" +2024-05-27,11276,1550,"[\""Headphones\"", \""Laptop\""]",3875.44,"{\""loyalty\"": \""13%\""}",87643,0,"""Europe""" +2023-02-21,11277,6697,"[\""Monitor\"", \""Laptop\""]",2190.37,{},118875,0,"""Asia""" +2024-03-31,11278,1965,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3759.13,"{\""seasonal\"": \""25%\""}",25303,0,"""North America""" +2023-08-08,11279,1231,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4510.85,{},217884,0,"""Africa""" +2024-05-29,11280,5145,"[\""Wireless Mouse\""]",3552.09,{},36742,0,"""Asia""" +2024-06-10,11281,7433,"[\""Wireless Mouse\""]",2405.62,"{\""seasonal\"": \""24%\""}",93565,1,"""Europe""" +2023-06-03,11282,4949,"[\""Phone\"", \""Headphones\""]",71.61,"{\""seasonal\"": \""23%\""}",71498,1,"""Europe""" +2024-01-14,11283,1126,"[\""Tablet\""]",3568.88,"{\"": \""22%\""}",155513,1,"""South America""" +2023-01-30,11284,3892,"[\""Charger\"", \""Keyboard\""]",797.98,"{\""seasonal\"": \""13%\""}",70327,0,"""Europe""" +2024-02-13,11285,907,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1099.06,"{\"": \""7%\""}",17220,0,"""Europe""" +2023-04-11,11286,2408,"[\""Tablet\""]",2751.46,"{\""promo\"": \""5%\""}",194652,0,"""Europe""" +2024-05-12,11287,9130,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1368.77,{},229073,0,"""South America""" +2024-03-16,11288,1849,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",289.09,"{\""seasonal\"": \""16%\""}",166041,0,"""Europe""" +2024-07-28,11289,7911,"[\""Laptop\""]",206.31,"{\""promo\"": \""20%\""}",228530,1,"""Asia""" +2024-08-21,11290,5981,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2331.93,{},2963,1,"""South America""" +2023-03-18,11291,6829,"[\""Wireless Mouse\""]",3233.86,"{\""promo\"": \""26%\""}",125271,1,"""Africa""" +2023-03-27,11292,896,"[\""Tablet\""]",1603.52,"{\""loyalty\"": \""24%\""}",111755,1,"""Europe""" +2024-09-09,11293,9292,"[\""Monitor\""]",3176.85,"{\"": \""10%\""}",113288,0,"""Africa""" +2024-08-18,11294,5345,"[\""Laptop\"", \""Monitor\""]",660.63,"{\""seasonal\"": \""5%\""}",298714,0,"""Asia""" +2023-07-18,11295,9407,"[\""Charger\"", \""Headphones\""]",549.58,{},89055,1,"""Europe""" +2024-02-01,11296,5154,"[\""Monitor\"", \""Wireless Mouse\""]",2563.59,"{\""loyalty\"": \""19%\""}",295067,1,"""Asia""" +2024-07-10,11297,1303,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2675.62,{},267202,0,"""Asia""" +2023-07-03,11298,2649,"[\""Monitor\"", \""Laptop\""]",2035.85,"{\""loyalty\"": \""7%\""}",45561,0,"""Europe""" +2024-04-04,11299,2674,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4997.62,{},41037,0,"""Africa""" +2023-05-03,11300,8694,"[\""Tablet\"", \""Monitor\""]",769.74,{},104658,1,"""South America""" +2024-03-28,11301,4750,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1083.38,"{\""promo\"": \""15%\""}",23692,0,"""Europe""" +2024-01-20,11302,6247,"[\""Monitor\"", \""Wireless Mouse\""]",4819.49,{},125268,0,"""South America""" +2024-05-27,11303,6601,"[\""Monitor\""]",2309.21,{},211370,1,"""South America""" +2024-09-25,11304,8587,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",411.71,"{\""loyalty\"": \""24%\""}",34394,0,"""Europe""" +2024-03-01,11305,5386,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3490.87,"{\""seasonal\"": \""8%\""}",263717,0,"""Europe""" +2023-10-13,11306,9203,"[\""Headphones\""]",3059.43,"{\""loyalty\"": \""9%\""}",271090,1,"""Asia""" +2024-03-07,11307,3336,"[\""Laptop\""]",4900.3,"{\""loyalty\"": \""25%\""}",22531,1,"""South America""" +2023-07-03,11308,4718,"[\""Laptop\"", \""Keyboard\""]",3672.89,"{\""loyalty\"": \""27%\""}",244288,1,"""Europe""" +2023-07-13,11309,7769,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4713.96,{},153121,1,"""North America""" +2024-10-07,11310,6011,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2291.57,"{\"": \""5%\""}",279371,1,"""South America""" +2024-05-27,11311,8269,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",693.37,{},175898,1,"""Asia""" +2024-05-06,11312,392,"[\""Headphones\""]",4515.24,"{\""promo\"": \""26%\""}",206115,0,"""Africa""" +2024-09-26,11313,4035,"[\""Laptop\""]",1941.58,"{\"": \""20%\""}",198509,0,"""North America""" +2024-05-20,11314,8969,"[\""Tablet\"", \""Phone\""]",4796.78,{},34144,1,"""Africa""" +2024-01-14,11315,9744,"[\""Tablet\""]",1168.36,{},19741,1,"""Europe""" +2024-06-26,11316,928,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2011.9,"{\""seasonal\"": \""23%\""}",14236,0,"""South America""" +2024-12-24,11317,9701,"[\""Keyboard\"", \""Headphones\""]",131.1,{},292788,1,"""South America""" +2024-08-12,11318,8098,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",559.72,"{\""loyalty\"": \""28%\""}",71567,0,"""Asia""" +2024-11-20,11319,2141,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4791.29,{},207669,1,"""Africa""" +2024-10-04,11320,9940,"[\""Keyboard\"", \""Laptop\""]",4998.37,"{\""loyalty\"": \""28%\""}",282141,0,"""Europe""" +2023-08-29,11321,5273,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2756.14,{},217593,1,"""North America""" +2024-12-09,11322,4085,"[\""Laptop\"", \""Tablet\""]",871.1,"{\""promo\"": \""19%\""}",87505,0,"""North America""" +2024-07-20,11323,8324,"[\""Phone\"", \""Charger\""]",3933.62,{},251794,1,"""South America""" +2024-02-24,11324,7441,"[\""Wireless Mouse\"", \""Phone\""]",373.44,"{\""promo\"": \""17%\""}",63328,0,"""Europe""" +2023-01-17,11325,6735,"[\""Tablet\""]",1794.19,"{\""seasonal\"": \""12%\""}",253778,1,"""Asia""" +2023-05-02,11326,1871,"[\""Charger\""]",599.96,{},60947,1,"""South America""" +2023-03-29,11327,7292,"[\""Headphones\""]",3662.6,{},6048,0,"""Europe""" +2024-03-18,11328,7557,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3259.6,{},205782,0,"""Asia""" +2024-04-06,11329,3798,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2669.74,"{\""seasonal\"": \""14%\""}",157227,0,"""Africa""" +2024-03-27,11330,8571,"[\""Laptop\""]",3981.01,"{\""promo\"": \""30%\""}",258733,1,"""Asia""" +2023-09-09,11331,2484,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",505.71,"{\"": \""21%\""}",190236,0,"""Africa""" +2023-06-25,11332,7525,"[\""Tablet\""]",4080.11,{},290642,1,"""Africa""" +2024-05-25,11333,7494,"[\""Tablet\""]",3026.47,{},299945,1,"""Africa""" +2023-10-09,11334,4640,"[\""Headphones\""]",4605.67,{},2259,1,"""Asia""" +2023-07-11,11335,8290,"[\""Wireless Mouse\"", \""Charger\""]",2386.21,{},243116,0,"""Asia""" +2023-10-18,11336,6154,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1211.43,"{\""loyalty\"": \""11%\""}",102228,0,"""North America""" +2024-09-01,11337,8585,"[\""Wireless Mouse\"", \""Charger\""]",4408.51,"{\""loyalty\"": \""14%\""}",196025,1,"""North America""" +2023-09-08,11338,2099,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",587.53,{},241048,1,"""South America""" +2024-09-30,11339,5230,"[\""Charger\""]",3810.6,"{\""seasonal\"": \""12%\""}",40266,0,"""South America""" +2024-02-06,11340,2630,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4448.53,"{\"": \""20%\""}",108740,1,"""South America""" +2024-03-31,11341,633,"[\""Laptop\""]",2531.29,"{\""loyalty\"": \""5%\""}",111267,0,"""Africa""" +2023-07-02,11342,8788,"[\""Charger\""]",2112.24,"{\"": \""23%\""}",291720,1,"""Europe""" +2023-05-07,11343,7862,"[\""Tablet\"", \""Laptop\""]",1617.71,{},19561,0,"""Europe""" +2024-11-12,11344,8209,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",621.27,{},120297,0,"""Europe""" +2024-11-17,11345,9709,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2015.85,{},66188,0,"""South America""" +2024-04-24,11346,2113,"[\""Laptop\"", \""Wireless Mouse\""]",2011.07,"{\""promo\"": \""6%\""}",110108,0,"""Africa""" +2024-11-04,11347,8463,"[\""Keyboard\"", \""Headphones\""]",4994.42,{},253475,0,"""North America""" +2023-01-23,11348,192,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3557.56,{},129186,0,"""South America""" +2024-05-06,11349,6554,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2163.21,{},288624,0,"""South America""" +2023-01-18,11350,3296,"[\""Laptop\"", \""Phone\""]",927.13,{},286598,0,"""Asia""" +2023-11-13,11351,4439,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4926.53,"{\""loyalty\"": \""18%\""}",295024,0,"""Africa""" +2024-10-24,11352,8436,"[\""Charger\""]",1777.95,"{\"": \""22%\""}",256192,0,"""Asia""" +2024-06-21,11353,4426,"[\""Charger\"", \""Laptop\""]",3568.97,"{\""promo\"": \""29%\""}",107685,0,"""Africa""" +2024-08-02,11354,9617,"[\""Headphones\""]",2755.82,"{\"": \""5%\""}",19727,1,"""North America""" +2023-07-25,11355,9201,"[\""Laptop\""]",699.11,{},290899,1,"""North America""" +2023-12-21,11356,5537,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1757.33,"{\""seasonal\"": \""8%\""}",21162,1,"""South America""" +2023-08-19,11357,5866,"[\""Tablet\""]",1711.13,{},78165,1,"""South America""" +2024-03-31,11358,9761,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4105.17,"{\""seasonal\"": \""12%\""}",264659,1,"""Europe""" +2024-12-19,11359,4454,"[\""Tablet\""]",1381.62,"{\""promo\"": \""6%\""}",270233,1,"""Africa""" +2023-12-28,11360,9664,"[\""Keyboard\""]",3850.53,{},3489,0,"""South America""" +2024-02-07,11361,2568,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2037.36,{},152591,1,"""Africa""" +2023-03-27,11362,5058,"[\""Laptop\"", \""Monitor\""]",4621.37,"{\""seasonal\"": \""21%\""}",297870,1,"""Africa""" +2024-04-22,11363,9111,"[\""Laptop\""]",998.6,"{\"": \""11%\""}",216001,0,"""Asia""" +2024-10-16,11364,869,"[\""Wireless Mouse\""]",1937.88,{},233528,0,"""Europe""" +2024-04-08,11365,9853,"[\""Headphones\""]",232.6,"{\""promo\"": \""10%\""}",33622,0,"""South America""" +2024-11-03,11366,5207,"[\""Charger\"", \""Keyboard\""]",3269.51,"{\""loyalty\"": \""14%\""}",50716,1,"""South America""" +2023-12-04,11367,4392,"[\""Headphones\"", \""Monitor\""]",2593.27,{},202961,1,"""North America""" +2024-08-24,11368,2120,"[\""Keyboard\"", \""Tablet\""]",4261.93,{},155828,0,"""Africa""" +2024-06-29,11369,5084,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3002.15,"{\""promo\"": \""30%\""}",254944,1,"""Africa""" +2024-11-12,11370,155,"[\""Monitor\""]",2517.73,"{\""loyalty\"": \""30%\""}",149387,0,"""Africa""" +2024-07-02,11371,5799,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4733.29,{},256616,1,"""North America""" +2023-09-18,11372,4534,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3503.69,"{\""loyalty\"": \""20%\""}",171439,0,"""South America""" +2024-04-19,11373,5566,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",402.36,"{\"": \""18%\""}",277156,0,"""Europe""" +2023-07-20,11374,7405,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4817.59,"{\"": \""20%\""}",138121,0,"""Asia""" +2024-08-10,11375,1809,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2451.84,"{\""promo\"": \""5%\""}",143990,0,"""North America""" +2024-10-14,11376,5070,"[\""Monitor\""]",2026.91,{},195677,1,"""North America""" +2023-09-20,11377,5914,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1731.32,{},235122,1,"""North America""" +2024-01-31,11378,8311,"[\""Phone\""]",2614.56,"{\"": \""22%\""}",45613,0,"""South America""" +2023-10-24,11379,1136,"[\""Keyboard\"", \""Wireless Mouse\""]",642.17,"{\""loyalty\"": \""17%\""}",298524,0,"""South America""" +2023-02-18,11380,5643,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4082.88,"{\""loyalty\"": \""11%\""}",243922,1,"""Europe""" +2024-12-09,11381,7519,"[\""Phone\"", \""Tablet\""]",3204.95,"{\""promo\"": \""19%\""}",294001,0,"""Africa""" +2024-06-05,11382,3640,"[\""Charger\""]",2090.68,"{\""promo\"": \""13%\""}",181254,1,"""South America""" +2023-11-09,11383,7363,"[\""Laptop\""]",4906.57,"{\""seasonal\"": \""29%\""}",166600,1,"""Africa""" +2024-06-15,11384,383,"[\""Phone\""]",3691.44,"{\"": \""11%\""}",178966,0,"""North America""" +2023-07-08,11385,2040,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2203.32,{},294737,0,"""North America""" +2024-04-22,11386,3187,"[\""Tablet\""]",4739.85,"{\"": \""24%\""}",136280,0,"""Asia""" +2024-06-06,11387,1135,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2938.35,{},272068,1,"""Europe""" +2024-02-27,11388,4834,"[\""Monitor\"", \""Keyboard\""]",1120.96,{},228141,0,"""North America""" +2023-01-31,11389,8198,"[\""Keyboard\"", \""Laptop\""]",1161.3,{},287915,0,"""Africa""" +2023-01-01,11390,5214,"[\""Charger\""]",583.46,"{\"": \""12%\""}",231073,0,"""North America""" +2024-06-02,11391,1408,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2446.43,"{\""seasonal\"": \""5%\""}",137186,1,"""North America""" +2024-01-18,11392,4602,"[\""Laptop\"", \""Wireless Mouse\""]",4046.41,"{\""promo\"": \""6%\""}",296133,0,"""Europe""" +2023-07-20,11393,3716,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3649.39,{},181624,0,"""Asia""" +2023-09-22,11394,608,"[\""Charger\""]",4845.15,{},86471,0,"""Europe""" +2024-04-17,11395,5366,"[\""Tablet\"", \""Wireless Mouse\""]",2330.1,"{\"": \""11%\""}",57251,1,"""North America""" +2024-10-22,11396,6910,"[\""Laptop\""]",4966.62,"{\""promo\"": \""27%\""}",77243,0,"""Africa""" +2024-04-29,11397,8924,"[\""Laptop\"", \""Charger\""]",4079.29,{},218649,1,"""Asia""" +2024-05-23,11398,2812,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4523.55,{},39547,0,"""South America""" +2023-09-21,11399,861,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",673.76,"{\""promo\"": \""15%\""}",44055,1,"""Asia""" +2023-06-18,11400,4955,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2790.09,"{\"": \""20%\""}",284669,1,"""South America""" +2023-01-15,11401,6792,"[\""Wireless Mouse\"", \""Monitor\""]",1006.57,{},276933,0,"""Africa""" +2024-04-26,11402,282,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3578.45,{},82906,0,"""North America""" +2023-09-04,11403,5290,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3885.66,{},79933,1,"""Europe""" +2023-12-14,11404,9869,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",267.96,{},150739,0,"""South America""" +2024-09-13,11405,2897,"[\""Laptop\"", \""Keyboard\""]",3281.58,"{\""loyalty\"": \""24%\""}",103749,1,"""Africa""" +2024-08-28,11406,1280,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4411.51,{},10197,1,"""Asia""" +2024-04-22,11407,4636,"[\""Charger\""]",752.3,"{\""seasonal\"": \""30%\""}",233491,0,"""Asia""" +2024-08-22,11408,8739,"[\""Monitor\"", \""Phone\""]",1345.13,{},135121,0,"""Africa""" +2023-02-09,11409,2773,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",893.63,"{\""seasonal\"": \""6%\""}",155299,1,"""North America""" +2023-07-26,11410,3980,"[\""Headphones\""]",3315.14,"{\"": \""22%\""}",88896,0,"""Asia""" +2023-12-20,11411,769,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3491.75,{},182882,1,"""North America""" +2024-08-06,11412,8917,"[\""Phone\""]",1418.92,"{\""promo\"": \""6%\""}",147952,0,"""North America""" +2023-09-01,11413,5615,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3662.78,"{\""seasonal\"": \""6%\""}",245001,1,"""Africa""" +2024-09-05,11414,6898,"[\""Laptop\""]",1973.76,"{\""loyalty\"": \""20%\""}",293526,0,"""Africa""" +2023-10-16,11415,2171,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4799.05,{},246747,1,"""North America""" +2023-11-29,11416,9729,"[\""Tablet\"", \""Keyboard\""]",3889.47,{},190985,0,"""South America""" +2024-06-28,11417,8467,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3941.6,{},3664,0,"""Africa""" +2023-01-16,11418,5987,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1690.06,"{\""loyalty\"": \""21%\""}",198299,0,"""Africa""" +2024-09-05,11419,1659,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4879.73,"{\"": \""17%\""}",6443,1,"""North America""" +2024-07-29,11420,524,"[\""Monitor\""]",2432.69,{},176537,0,"""Europe""" +2023-06-06,11421,8919,"[\""Keyboard\""]",4197.32,"{\""promo\"": \""16%\""}",71723,1,"""Europe""" +2024-09-15,11422,4234,"[\""Keyboard\"", \""Phone\""]",2486.44,{},117198,1,"""Europe""" +2023-06-13,11423,6447,"[\""Wireless Mouse\"", \""Charger\""]",623.22,"{\""loyalty\"": \""27%\""}",265103,1,"""Africa""" +2023-05-10,11424,7026,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1617.75,"{\"": \""10%\""}",114320,0,"""Africa""" +2024-05-28,11425,1424,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4565.75,{},193715,1,"""South America""" +2023-09-14,11426,2555,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2835.31,"{\""loyalty\"": \""17%\""}",268400,0,"""Europe""" +2023-12-26,11427,1963,"[\""Keyboard\""]",1610.79,{},11109,0,"""Africa""" +2024-07-13,11428,2716,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4361.69,"{\""promo\"": \""28%\""}",233054,0,"""Europe""" +2024-11-18,11429,6738,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",567.69,{},292463,0,"""Asia""" +2023-06-14,11430,5016,"[\""Tablet\"", \""Phone\""]",3940.81,"{\""seasonal\"": \""12%\""}",117404,1,"""North America""" +2024-08-18,11431,3567,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3273.34,"{\""seasonal\"": \""13%\""}",242308,0,"""Africa""" +2023-12-07,11432,1347,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",55.79,"{\""loyalty\"": \""19%\""}",138708,0,"""Asia""" +2024-02-21,11433,7243,"[\""Headphones\"", \""Wireless Mouse\""]",3245.32,"{\"": \""13%\""}",53087,0,"""Africa""" +2024-10-29,11434,2896,"[\""Charger\"", \""Phone\""]",4553.17,{},146869,0,"""Africa""" +2023-08-12,11435,4651,"[\""Keyboard\""]",4004.07,"{\""seasonal\"": \""17%\""}",263288,1,"""Africa""" +2024-10-04,11436,8052,"[\""Headphones\"", \""Phone\""]",2435.87,{},244730,0,"""Europe""" +2023-03-05,11437,9279,"[\""Phone\"", \""Wireless Mouse\""]",2942.77,{},274089,0,"""North America""" +2024-12-10,11438,5089,"[\""Headphones\""]",3519.06,"{\""seasonal\"": \""13%\""}",183153,1,"""North America""" +2024-12-01,11439,3182,"[\""Keyboard\"", \""Tablet\""]",3310.88,{},81880,1,"""South America""" +2023-04-10,11440,9587,"[\""Laptop\"", \""Charger\""]",1189.08,"{\""promo\"": \""29%\""}",173698,1,"""South America""" +2024-02-01,11441,8525,"[\""Laptop\""]",2392.5,"{\""promo\"": \""28%\""}",85654,1,"""Europe""" +2023-11-18,11442,3932,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4381.46,{},151183,0,"""South America""" +2024-12-16,11443,1202,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2850.21,{},33499,1,"""South America""" +2024-02-17,11444,3676,"[\""Headphones\"", \""Tablet\""]",1457.26,{},33379,1,"""South America""" +2024-08-20,11445,9065,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",796.7,{},286669,1,"""Asia""" +2023-06-04,11446,67,"[\""Phone\""]",472.32,{},76266,1,"""Europe""" +2024-07-24,11447,1312,"[\""Tablet\""]",964.27,{},207671,1,"""Europe""" +2024-10-07,11448,8057,"[\""Tablet\""]",3311.53,"{\""loyalty\"": \""6%\""}",29737,0,"""South America""" +2023-07-18,11449,830,"[\""Headphones\"", \""Charger\""]",3968.17,{},273997,0,"""Africa""" +2023-05-01,11450,1724,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4375.7,"{\""loyalty\"": \""26%\""}",126104,1,"""Asia""" +2023-01-14,11451,6448,"[\""Wireless Mouse\"", \""Keyboard\""]",4704.7,"{\""loyalty\"": \""12%\""}",12253,1,"""Africa""" +2024-05-02,11452,7620,"[\""Wireless Mouse\"", \""Monitor\""]",4826.02,{},143110,1,"""Asia""" +2024-04-09,11453,7401,"[\""Charger\"", \""Wireless Mouse\""]",243.79,{},125203,1,"""Asia""" +2023-05-10,11454,9087,"[\""Headphones\"", \""Wireless Mouse\""]",2399.04,{},125052,0,"""North America""" +2024-03-15,11455,1363,"[\""Tablet\"", \""Laptop\""]",2125.96,"{\"": \""24%\""}",280213,1,"""Europe""" +2023-03-10,11456,4358,"[\""Tablet\"", \""Wireless Mouse\""]",2880.68,{},142660,1,"""South America""" +2024-06-29,11457,680,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1856.21,"{\"": \""5%\""}",245549,0,"""Africa""" +2024-12-27,11458,5864,"[\""Phone\"", \""Charger\""]",2942.14,{},248519,1,"""Africa""" +2024-06-05,11459,3459,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1942.66,{},202825,1,"""Europe""" +2023-07-31,11460,10000,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3137.04,{},8283,1,"""Europe""" +2024-11-12,11461,3538,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1732.86,"{\""promo\"": \""13%\""}",240557,0,"""Europe""" +2024-11-09,11462,5308,"[\""Wireless Mouse\""]",4640.36,"{\"": \""10%\""}",39804,1,"""Europe""" +2024-06-21,11463,5116,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4970.28,"{\""seasonal\"": \""14%\""}",82621,0,"""North America""" +2023-07-21,11464,559,"[\""Headphones\"", \""Tablet\""]",3758.39,{},175381,0,"""Africa""" +2024-09-17,11465,953,"[\""Monitor\""]",1545.02,{},161701,1,"""Asia""" +2024-09-13,11466,6510,"[\""Tablet\"", \""Keyboard\""]",4095.87,"{\""promo\"": \""12%\""}",182607,0,"""Africa""" +2023-04-11,11467,4092,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4972.13,{},299886,1,"""Africa""" +2024-09-28,11468,3543,"[\""Laptop\"", \""Phone\""]",2282.18,"{\""loyalty\"": \""14%\""}",105774,1,"""South America""" +2024-07-09,11469,3817,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4099.83,"{\""loyalty\"": \""6%\""}",1613,0,"""South America""" +2023-03-08,11470,7958,"[\""Keyboard\""]",3616.47,{},44249,0,"""Africa""" +2023-05-26,11471,5774,"[\""Monitor\""]",4355.97,{},90772,1,"""Africa""" +2024-02-22,11472,5360,"[\""Tablet\""]",3251.39,{},134457,0,"""Europe""" +2024-12-08,11473,9053,"[\""Keyboard\"", \""Monitor\""]",1839.6,"{\""loyalty\"": \""21%\""}",67852,1,"""South America""" +2024-12-03,11474,413,"[\""Charger\""]",3678.75,{},149070,1,"""Europe""" +2024-07-19,11475,2783,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4635.82,"{\""seasonal\"": \""19%\""}",113670,0,"""Europe""" +2024-08-24,11476,7162,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2138.56,{},8119,1,"""Asia""" +2024-03-13,11477,7287,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2349.92,{},22314,1,"""Africa""" +2024-04-21,11478,8860,"[\""Headphones\"", \""Phone\""]",358.75,{},287750,1,"""South America""" +2023-05-31,11479,7929,"[\""Keyboard\"", \""Charger\""]",2744.9,{},158275,0,"""Africa""" +2023-02-12,11480,9698,"[\""Charger\""]",1545.54,"{\""seasonal\"": \""29%\""}",240264,1,"""South America""" +2023-02-12,11481,6170,"[\""Charger\"", \""Headphones\""]",1008.47,{},134497,0,"""North America""" +2023-12-08,11482,9001,"[\""Phone\"", \""Wireless Mouse\""]",2553.91,{},54394,1,"""Europe""" +2024-10-13,11483,2030,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2154.98,{},36028,0,"""Africa""" +2023-05-19,11484,575,"[\""Wireless Mouse\""]",2993.13,{},235682,1,"""Africa""" +2024-12-26,11485,3124,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4133.0,"{\""seasonal\"": \""19%\""}",245282,0,"""South America""" +2024-01-16,11486,5008,"[\""Headphones\"", \""Tablet\""]",1349.49,{},164053,1,"""Africa""" +2024-08-11,11487,1258,"[\""Monitor\""]",2541.05,{},52603,0,"""Asia""" +2024-02-18,11488,3891,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1863.33,{},278138,0,"""Asia""" +2024-12-12,11489,5042,"[\""Laptop\"", \""Charger\""]",625.64,{},92154,1,"""Africa""" +2023-01-14,11490,1619,"[\""Phone\""]",2851.48,"{\""promo\"": \""28%\""}",163043,0,"""Asia""" +2023-07-13,11491,6918,"[\""Phone\""]",2605.26,"{\""loyalty\"": \""8%\""}",166475,1,"""Asia""" +2023-01-07,11492,1093,"[\""Monitor\""]",3392.48,{},282641,1,"""Africa""" +2024-05-29,11493,5213,"[\""Tablet\"", \""Headphones\""]",1427.49,"{\""loyalty\"": \""25%\""}",20479,1,"""Asia""" +2023-02-24,11494,7506,"[\""Tablet\"", \""Keyboard\""]",627.5,{},96242,1,"""South America""" +2023-08-15,11495,9639,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3957.4,"{\"": \""16%\""}",107090,0,"""North America""" +2024-01-11,11496,9597,"[\""Phone\""]",4227.81,{},49654,1,"""Asia""" +2024-10-30,11497,7224,"[\""Wireless Mouse\"", \""Monitor\""]",4202.18,{},50089,1,"""Africa""" +2023-07-04,11498,8412,"[\""Keyboard\""]",4440.25,"{\""seasonal\"": \""5%\""}",249462,1,"""North America""" +2023-03-10,11499,8063,"[\""Headphones\"", \""Wireless Mouse\""]",1103.62,"{\""seasonal\"": \""24%\""}",285732,0,"""Africa""" +2024-10-28,11500,5914,"[\""Monitor\"", \""Laptop\""]",749.02,{},229182,0,"""Asia""" +2024-07-01,11501,2953,"[\""Phone\""]",1508.33,"{\""loyalty\"": \""7%\""}",199641,0,"""Europe""" +2024-05-13,11502,3267,"[\""Phone\""]",2810.88,"{\"": \""21%\""}",9629,0,"""North America""" +2023-07-12,11503,2191,"[\""Tablet\""]",2165.18,{},132600,0,"""Europe""" +2024-10-21,11504,6455,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3474.86,"{\""seasonal\"": \""29%\""}",259383,0,"""South America""" +2024-06-25,11505,260,"[\""Laptop\"", \""Tablet\""]",3652.68,{},74856,1,"""South America""" +2024-05-14,11506,2177,"[\""Monitor\"", \""Phone\""]",4235.62,{},172002,1,"""Europe""" +2024-04-01,11507,2363,"[\""Tablet\""]",315.86,{},51780,1,"""Asia""" +2024-02-21,11508,3734,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1402.94,"{\""loyalty\"": \""19%\""}",134760,1,"""Africa""" +2024-09-22,11509,7997,"[\""Charger\""]",2160.75,"{\"": \""16%\""}",45475,1,"""South America""" +2023-09-18,11510,7882,"[\""Keyboard\""]",4716.69,{},162106,0,"""Africa""" +2024-07-29,11511,4858,"[\""Wireless Mouse\""]",4176.49,"{\""seasonal\"": \""29%\""}",106043,1,"""North America""" +2024-11-12,11512,432,"[\""Keyboard\"", \""Laptop\""]",1518.66,{},165012,0,"""Asia""" +2024-03-23,11513,3013,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4336.12,"{\""promo\"": \""15%\""}",86929,1,"""Europe""" +2023-06-11,11514,4609,"[\""Headphones\"", \""Laptop\""]",443.02,"{\"": \""16%\""}",264877,1,"""North America""" +2024-12-22,11515,7874,"[\""Phone\"", \""Charger\""]",4884.08,{},88841,0,"""Europe""" +2023-04-09,11516,4909,"[\""Laptop\""]",1320.78,{},238329,0,"""Asia""" +2023-12-04,11517,3305,"[\""Laptop\"", \""Headphones\""]",4933.72,"{\"": \""24%\""}",117817,1,"""Africa""" +2023-09-07,11518,5283,"[\""Headphones\""]",4152.1,{},153913,1,"""North America""" +2023-06-16,11519,9933,"[\""Phone\""]",202.93,{},202678,0,"""Africa""" +2023-03-21,11520,3332,"[\""Laptop\""]",1186.75,{},65131,1,"""Africa""" +2024-06-30,11521,7298,"[\""Wireless Mouse\"", \""Charger\""]",4901.65,{},231974,1,"""Europe""" +2024-11-21,11522,5059,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1532.36,{},143086,1,"""North America""" +2023-07-24,11523,8088,"[\""Charger\"", \""Headphones\""]",237.43,"{\""seasonal\"": \""14%\""}",44353,0,"""South America""" +2024-11-03,11524,9158,"[\""Headphones\"", \""Phone\""]",2323.2,{},104243,1,"""South America""" +2024-12-11,11525,5658,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1342.41,{},82539,0,"""Africa""" +2023-07-23,11526,4598,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2523.33,"{\""seasonal\"": \""21%\""}",133102,0,"""South America""" +2024-02-13,11527,4339,"[\""Laptop\"", \""Tablet\""]",3855.61,{},250163,0,"""North America""" +2024-01-23,11528,9862,"[\""Headphones\""]",2826.21,{},52264,0,"""Asia""" +2024-10-28,11529,5305,"[\""Keyboard\""]",460.08,"{\""loyalty\"": \""12%\""}",276232,0,"""North America""" +2024-01-29,11530,1887,"[\""Tablet\""]",4606.43,"{\""loyalty\"": \""16%\""}",47906,0,"""Europe""" +2024-08-09,11531,4090,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1025.16,"{\""promo\"": \""10%\""}",192806,0,"""Africa""" +2024-09-15,11532,3781,"[\""Laptop\""]",1776.38,"{\""seasonal\"": \""27%\""}",60338,0,"""Asia""" +2023-03-21,11533,6264,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4369.2,"{\""promo\"": \""23%\""}",102626,0,"""South America""" +2023-12-03,11534,3238,"[\""Wireless Mouse\"", \""Headphones\""]",3639.96,"{\""promo\"": \""15%\""}",19699,1,"""Europe""" +2024-08-27,11535,4443,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",698.76,{},117745,1,"""North America""" +2024-09-07,11536,4824,"[\""Monitor\"", \""Tablet\""]",1742.55,"{\""promo\"": \""15%\""}",297901,1,"""South America""" +2024-03-01,11537,3841,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3267.8,{},33136,0,"""Europe""" +2024-11-01,11538,9045,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3377.43,"{\""seasonal\"": \""5%\""}",154370,1,"""Asia""" +2023-11-02,11539,5248,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2906.78,"{\""promo\"": \""22%\""}",19942,0,"""South America""" +2023-08-10,11540,2652,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3233.31,"{\""loyalty\"": \""21%\""}",128209,0,"""Europe""" +2023-08-09,11541,3763,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2426.33,"{\""promo\"": \""28%\""}",299975,0,"""South America""" +2023-03-17,11542,6451,"[\""Headphones\"", \""Wireless Mouse\""]",4423.89,{},49172,1,"""Asia""" +2024-09-10,11543,745,"[\""Headphones\"", \""Tablet\""]",3123.22,"{\"": \""13%\""}",140105,0,"""North America""" +2023-12-28,11544,2653,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2948.47,{},115765,1,"""Asia""" +2024-01-11,11545,335,"[\""Tablet\"", \""Laptop\""]",2926.94,{},273778,1,"""Europe""" +2023-07-30,11546,9105,"[\""Monitor\"", \""Phone\""]",4516.6,"{\"": \""13%\""}",155015,0,"""Africa""" +2023-07-20,11547,370,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2573.33,{},272069,0,"""Asia""" +2023-10-09,11548,3390,"[\""Keyboard\"", \""Tablet\""]",1339.99,"{\""promo\"": \""12%\""}",117777,0,"""Europe""" +2023-03-17,11549,2886,"[\""Monitor\"", \""Laptop\""]",4542.18,"{\"": \""10%\""}",223388,1,"""Europe""" +2024-02-09,11550,8228,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",814.33,{},273437,1,"""South America""" +2024-04-24,11551,6797,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2610.53,{},109007,1,"""Africa""" +2024-08-25,11552,1449,"[\""Headphones\"", \""Charger\""]",2405.15,{},298069,1,"""Asia""" +2023-05-28,11553,4220,"[\""Phone\""]",1032.03,{},47562,1,"""Europe""" +2024-06-05,11554,1990,"[\""Keyboard\"", \""Tablet\""]",3926.04,"{\""loyalty\"": \""25%\""}",50343,1,"""Europe""" +2023-06-27,11555,798,"[\""Phone\"", \""Wireless Mouse\""]",2235.36,{},281434,0,"""Europe""" +2023-02-02,11556,5424,"[\""Wireless Mouse\"", \""Keyboard\""]",2848.72,{},208412,1,"""Africa""" +2023-08-30,11557,7802,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2360.53,"{\""loyalty\"": \""17%\""}",254154,1,"""South America""" +2023-02-18,11558,7594,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4628.58,{},237960,0,"""Asia""" +2024-12-04,11559,4782,"[\""Laptop\""]",3410.01,{},5366,1,"""Europe""" +2023-07-16,11560,9231,"[\""Headphones\"", \""Phone\""]",2215.89,"{\""seasonal\"": \""11%\""}",169033,0,"""Africa""" +2023-09-02,11561,7536,"[\""Keyboard\""]",2689.91,{},15781,0,"""Africa""" +2024-05-01,11562,693,"[\""Wireless Mouse\"", \""Headphones\""]",1257.2,"{\""seasonal\"": \""23%\""}",247587,0,"""Africa""" +2024-01-18,11563,2885,"[\""Tablet\"", \""Monitor\""]",1670.37,"{\""seasonal\"": \""24%\""}",12636,1,"""North America""" +2023-12-21,11564,9248,"[\""Headphones\"", \""Charger\""]",2145.16,{},127224,1,"""South America""" +2023-12-23,11565,2904,"[\""Tablet\"", \""Charger\""]",236.69,"{\""promo\"": \""30%\""}",164793,0,"""Europe""" +2023-08-21,11566,377,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3004.94,{},5137,0,"""Africa""" +2023-03-07,11567,5217,"[\""Wireless Mouse\""]",4295.95,{},124944,1,"""Europe""" +2023-08-06,11568,8867,"[\""Phone\""]",1372.09,"{\""seasonal\"": \""5%\""}",51893,0,"""Africa""" +2023-11-30,11569,9662,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1602.23,{},156667,1,"""Europe""" +2023-10-04,11570,1783,"[\""Phone\"", \""Keyboard\""]",1925.3,{},167101,1,"""North America""" +2024-09-06,11571,6530,"[\""Wireless Mouse\"", \""Keyboard\""]",2526.08,"{\""seasonal\"": \""28%\""}",196994,0,"""North America""" +2024-05-03,11572,703,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1597.0,{},5042,1,"""Africa""" +2023-04-01,11573,3109,"[\""Wireless Mouse\"", \""Keyboard\""]",3173.82,{},283945,1,"""North America""" +2023-04-14,11574,4084,"[\""Headphones\""]",4321.14,"{\""promo\"": \""17%\""}",70553,0,"""North America""" +2024-12-05,11575,56,"[\""Headphones\"", \""Wireless Mouse\""]",515.35,"{\""seasonal\"": \""19%\""}",202470,0,"""Africa""" +2023-05-22,11576,7659,"[\""Tablet\""]",647.0,"{\""promo\"": \""28%\""}",186335,0,"""Europe""" +2023-08-15,11577,5679,"[\""Wireless Mouse\""]",3999.0,{},49350,1,"""Africa""" +2024-10-06,11578,1494,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",205.32,{},280197,0,"""South America""" +2024-01-26,11579,9386,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3118.62,{},189638,1,"""Europe""" +2023-05-11,11580,2209,"[\""Wireless Mouse\""]",4795.01,"{\""loyalty\"": \""10%\""}",112244,1,"""Africa""" +2023-03-23,11581,2070,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1824.53,"{\""loyalty\"": \""26%\""}",181978,0,"""South America""" +2023-11-21,11582,7928,"[\""Laptop\"", \""Charger\""]",3993.66,"{\""promo\"": \""5%\""}",157814,1,"""North America""" +2023-01-17,11583,2971,"[\""Keyboard\"", \""Wireless Mouse\""]",4188.09,"{\"": \""28%\""}",296510,1,"""Africa""" +2024-06-06,11584,1036,"[\""Headphones\"", \""Monitor\""]",2659.83,{},98846,0,"""Africa""" +2024-06-03,11585,9562,"[\""Charger\"", \""Wireless Mouse\""]",498.97,"{\"": \""5%\""}",96855,0,"""North America""" +2023-05-13,11586,7983,"[\""Phone\"", \""Keyboard\""]",3760.16,"{\""seasonal\"": \""27%\""}",184421,1,"""Africa""" +2023-02-21,11587,402,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4352.12,{},63124,1,"""Europe""" +2023-06-25,11588,7145,"[\""Tablet\""]",322.31,"{\"": \""13%\""}",146500,0,"""North America""" +2024-12-16,11589,7863,"[\""Tablet\"", \""Monitor\""]",2588.75,{},51097,1,"""Africa""" +2024-01-13,11590,9070,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3921.6,"{\""promo\"": \""23%\""}",127524,1,"""Asia""" +2023-03-15,11591,6900,"[\""Monitor\"", \""Charger\""]",3502.7,"{\""loyalty\"": \""30%\""}",65765,1,"""Europe""" +2024-05-12,11592,9430,"[\""Keyboard\"", \""Laptop\""]",1512.7,"{\""seasonal\"": \""24%\""}",278832,1,"""North America""" +2023-08-13,11593,1944,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2011.11,{},139885,1,"""Asia""" +2023-03-02,11594,2336,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",599.12,{},27432,1,"""North America""" +2024-10-23,11595,7272,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2910.44,"{\""seasonal\"": \""26%\""}",132333,1,"""Africa""" +2023-03-26,11596,8169,"[\""Headphones\"", \""Charger\""]",1847.25,{},285658,1,"""Asia""" +2024-01-16,11597,9615,"[\""Monitor\""]",842.37,{},78770,0,"""North America""" +2024-02-04,11598,6417,"[\""Charger\""]",4269.65,"{\"": \""19%\""}",106017,1,"""Asia""" +2023-10-30,11599,3724,"[\""Headphones\"", \""Charger\""]",1030.35,"{\""promo\"": \""26%\""}",167323,1,"""North America""" +2024-10-01,11600,5012,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3096.69,"{\""loyalty\"": \""22%\""}",73460,1,"""Africa""" +2023-12-16,11601,6455,"[\""Laptop\""]",2734.36,"{\""promo\"": \""12%\""}",66632,0,"""North America""" +2024-11-27,11602,7966,"[\""Keyboard\""]",1777.29,"{\""seasonal\"": \""19%\""}",250871,0,"""Asia""" +2024-04-18,11603,7716,"[\""Phone\""]",3279.17,"{\"": \""10%\""}",128043,1,"""Europe""" +2024-02-11,11604,297,"[\""Keyboard\"", \""Headphones\""]",1434.75,"{\""promo\"": \""23%\""}",201183,0,"""Africa""" +2024-12-01,11605,6064,"[\""Laptop\""]",3084.51,{},45617,1,"""Europe""" +2023-05-04,11606,8115,"[\""Phone\""]",1968.71,{},247393,0,"""South America""" +2024-10-26,11607,2617,"[\""Keyboard\""]",2961.31,"{\""seasonal\"": \""23%\""}",45792,0,"""South America""" +2024-04-26,11608,4481,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1573.61,"{\""promo\"": \""19%\""}",142149,1,"""Asia""" +2023-03-29,11609,3722,"[\""Headphones\"", \""Phone\""]",1080.29,{},207459,0,"""Europe""" +2024-05-17,11610,8348,"[\""Phone\"", \""Monitor\""]",4408.74,{},97188,0,"""Africa""" +2024-11-30,11611,8707,"[\""Phone\"", \""Monitor\""]",4759.01,{},271133,1,"""Africa""" +2024-12-03,11612,151,"[\""Monitor\"", \""Tablet\""]",356.91,"{\""loyalty\"": \""12%\""}",268922,0,"""Asia""" +2023-09-27,11613,9323,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1945.35,"{\""promo\"": \""19%\""}",65946,1,"""Asia""" +2024-04-22,11614,4978,"[\""Wireless Mouse\""]",3765.17,{},180418,0,"""Europe""" +2023-10-10,11615,9818,"[\""Charger\""]",1059.75,{},57550,1,"""Africa""" +2023-09-20,11616,2370,"[\""Phone\""]",2918.56,"{\""promo\"": \""30%\""}",78384,0,"""South America""" +2023-09-11,11617,5745,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",852.87,"{\""promo\"": \""8%\""}",1194,0,"""Africa""" +2024-09-24,11618,2932,"[\""Wireless Mouse\""]",173.86,"{\"": \""28%\""}",211483,1,"""North America""" +2024-06-12,11619,2526,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4142.22,"{\""seasonal\"": \""30%\""}",229612,1,"""Europe""" +2024-08-12,11620,2518,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4806.96,{},139212,1,"""Europe""" +2023-03-04,11621,128,"[\""Laptop\""]",526.44,"{\""seasonal\"": \""6%\""}",256276,0,"""North America""" +2023-09-15,11622,1675,"[\""Keyboard\""]",327.98,"{\""seasonal\"": \""9%\""}",128264,1,"""Africa""" +2024-10-18,11623,7814,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2561.21,"{\""seasonal\"": \""22%\""}",222043,0,"""Europe""" +2024-08-21,11624,6070,"[\""Monitor\"", \""Wireless Mouse\""]",1020.96,"{\"": \""28%\""}",242102,0,"""Asia""" +2024-11-29,11625,2946,"[\""Headphones\"", \""Charger\""]",4709.44,{},242264,1,"""South America""" +2024-10-25,11626,3195,"[\""Tablet\"", \""Wireless Mouse\""]",4403.67,"{\""promo\"": \""8%\""}",189761,0,"""Africa""" +2024-09-15,11627,5223,"[\""Headphones\""]",3218.85,"{\""loyalty\"": \""22%\""}",216252,1,"""North America""" +2023-07-21,11628,1060,"[\""Wireless Mouse\"", \""Phone\""]",697.18,{},261808,0,"""North America""" +2024-02-23,11629,581,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4189.96,"{\""seasonal\"": \""7%\""}",49944,0,"""Europe""" +2024-11-10,11630,3603,"[\""Laptop\"", \""Headphones\""]",2548.98,"{\""seasonal\"": \""19%\""}",177621,1,"""Europe""" +2024-08-12,11631,5555,"[\""Phone\"", \""Tablet\""]",1126.4,{},150608,1,"""South America""" +2023-03-05,11632,3386,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",925.83,"{\""promo\"": \""18%\""}",199721,1,"""North America""" +2024-05-07,11633,3774,"[\""Tablet\""]",974.48,{},141238,1,"""Europe""" +2023-09-26,11634,2770,"[\""Phone\""]",296.41,"{\""loyalty\"": \""17%\""}",53141,0,"""North America""" +2023-01-11,11635,1342,"[\""Laptop\""]",1419.65,{},46969,1,"""Asia""" +2024-09-22,11636,4113,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3934.95,"{\"": \""18%\""}",45490,1,"""Europe""" +2024-02-14,11637,2186,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4967.72,"{\""seasonal\"": \""12%\""}",142057,0,"""South America""" +2024-03-20,11638,6176,"[\""Monitor\""]",3811.72,{},137405,1,"""Africa""" +2024-12-28,11639,1557,"[\""Wireless Mouse\""]",1601.98,{},245185,0,"""North America""" +2023-09-28,11640,3987,"[\""Phone\"", \""Monitor\""]",4488.38,{},144018,0,"""Africa""" +2024-01-09,11641,6809,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3444.91,"{\"": \""20%\""}",59433,1,"""Europe""" +2024-08-14,11642,7461,"[\""Laptop\""]",4452.87,"{\""promo\"": \""11%\""}",77944,1,"""South America""" +2024-01-26,11643,5154,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1813.18,{},152421,1,"""Africa""" +2024-02-27,11644,7581,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3902.03,{},253843,1,"""Asia""" +2023-03-08,11645,8143,"[\""Phone\"", \""Wireless Mouse\""]",2053.33,"{\""seasonal\"": \""22%\""}",86110,0,"""North America""" +2023-02-23,11646,7221,"[\""Headphones\"", \""Charger\""]",2793.88,"{\""seasonal\"": \""14%\""}",289515,1,"""North America""" +2023-05-29,11647,3121,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4410.02,{},174299,1,"""Africa""" +2024-08-02,11648,3031,"[\""Keyboard\""]",1869.86,"{\""seasonal\"": \""8%\""}",268447,0,"""Africa""" +2023-01-10,11649,6853,"[\""Laptop\"", \""Wireless Mouse\""]",2170.67,"{\""promo\"": \""9%\""}",139987,0,"""Europe""" +2024-12-26,11650,4034,"[\""Wireless Mouse\"", \""Laptop\""]",1575.93,{},203916,0,"""South America""" +2023-01-17,11651,4306,"[\""Laptop\""]",4639.17,{},188810,1,"""Europe""" +2024-11-17,11652,9623,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3516.51,{},66296,1,"""South America""" +2023-10-09,11653,5563,"[\""Tablet\""]",1365.95,{},17238,1,"""North America""" +2023-05-21,11654,6542,"[\""Charger\""]",1739.61,{},253073,1,"""Asia""" +2023-01-31,11655,2662,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3372.76,"{\""loyalty\"": \""11%\""}",117376,1,"""Africa""" +2024-09-29,11656,2798,"[\""Wireless Mouse\""]",2491.3,"{\""seasonal\"": \""7%\""}",177692,0,"""Europe""" +2024-07-11,11657,9376,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3782.99,"{\""loyalty\"": \""10%\""}",194809,0,"""North America""" +2023-12-15,11658,5381,"[\""Tablet\""]",1458.06,"{\"": \""10%\""}",159594,0,"""Asia""" +2023-12-31,11659,4904,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",814.08,{},184038,0,"""Africa""" +2023-10-10,11660,3816,"[\""Laptop\""]",3746.96,{},228483,0,"""Africa""" +2023-02-19,11661,7681,"[\""Tablet\"", \""Headphones\""]",2264.66,{},137389,0,"""Africa""" +2023-05-31,11662,7256,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4407.01,"{\""promo\"": \""18%\""}",95538,1,"""South America""" +2024-08-11,11663,5038,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3221.01,"{\""loyalty\"": \""9%\""}",149053,1,"""North America""" +2024-02-28,11664,8475,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1725.03,"{\""seasonal\"": \""13%\""}",214390,0,"""South America""" +2023-04-20,11665,2283,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1859.82,{},250954,1,"""Europe""" +2023-05-28,11666,7434,"[\""Wireless Mouse\""]",1395.61,"{\""loyalty\"": \""24%\""}",126964,0,"""South America""" +2024-05-18,11667,2726,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",523.6,"{\""promo\"": \""11%\""}",134537,1,"""North America""" +2023-01-01,11668,5962,"[\""Charger\"", \""Laptop\""]",3288.23,{},108465,1,"""North America""" +2023-06-28,11669,584,"[\""Tablet\""]",2460.55,"{\""loyalty\"": \""26%\""}",176633,0,"""South America""" +2023-08-17,11670,1849,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2859.1,{},290778,1,"""Europe""" +2023-05-15,11671,4370,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3274.33,"{\"": \""14%\""}",131204,0,"""North America""" +2023-08-03,11672,3237,"[\""Phone\""]",3120.32,{},41290,0,"""Africa""" +2024-12-05,11673,2641,"[\""Wireless Mouse\""]",2761.43,{},130497,0,"""South America""" +2023-02-28,11674,5476,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",757.5,"{\""promo\"": \""16%\""}",276690,0,"""South America""" +2023-12-09,11675,14,"[\""Keyboard\"", \""Laptop\""]",604.22,{},176014,1,"""North America""" +2024-01-23,11676,9771,"[\""Phone\"", \""Wireless Mouse\""]",4385.7,"{\""loyalty\"": \""8%\""}",215276,1,"""South America""" +2024-03-27,11677,5712,"[\""Wireless Mouse\""]",4629.52,"{\""promo\"": \""7%\""}",170504,0,"""Asia""" +2024-11-06,11678,9939,"[\""Phone\"", \""Charger\""]",1466.48,{},9768,1,"""Africa""" +2023-06-11,11679,4361,"[\""Keyboard\""]",1079.29,{},159869,0,"""North America""" +2023-07-13,11680,8190,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3680.03,{},145628,1,"""South America""" +2023-11-26,11681,5721,"[\""Laptop\"", \""Charger\""]",4374.02,{},91956,1,"""South America""" +2024-03-11,11682,4265,"[\""Laptop\"", \""Tablet\""]",1500.21,{},32835,1,"""Europe""" +2023-02-16,11683,1513,"[\""Monitor\""]",3974.38,"{\""promo\"": \""7%\""}",191634,1,"""South America""" +2024-11-02,11684,375,"[\""Monitor\"", \""Wireless Mouse\""]",4441.07,{},41342,0,"""Africa""" +2023-01-19,11685,3165,"[\""Phone\"", \""Headphones\""]",2383.87,"{\""seasonal\"": \""20%\""}",292890,1,"""Europe""" +2024-12-14,11686,1047,"[\""Keyboard\"", \""Charger\""]",1054.23,"{\""loyalty\"": \""18%\""}",251890,0,"""South America""" +2023-08-17,11687,1098,"[\""Headphones\""]",854.44,{},95750,0,"""Europe""" +2024-02-13,11688,9411,"[\""Tablet\"", \""Laptop\""]",3382.49,{},26519,1,"""Asia""" +2023-02-03,11689,3567,"[\""Charger\""]",4517.08,"{\""loyalty\"": \""22%\""}",104994,0,"""Asia""" +2023-07-17,11690,3295,"[\""Headphones\"", \""Keyboard\""]",1741.81,{},203339,1,"""South America""" +2024-04-30,11691,8001,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3116.6,"{\""seasonal\"": \""16%\""}",206170,1,"""Europe""" +2024-06-04,11692,7370,"[\""Wireless Mouse\"", \""Keyboard\""]",501.9,"{\""seasonal\"": \""30%\""}",109395,0,"""Asia""" +2023-07-17,11693,737,"[\""Tablet\""]",2095.48,"{\""loyalty\"": \""30%\""}",41890,1,"""Europe""" +2023-12-11,11694,9262,"[\""Phone\""]",2929.14,{},103808,1,"""Europe""" +2024-02-05,11695,3596,"[\""Phone\"", \""Charger\""]",553.86,{},255755,0,"""Asia""" +2023-07-07,11696,4526,"[\""Tablet\"", \""Laptop\""]",2860.45,"{\""loyalty\"": \""13%\""}",194596,1,"""North America""" +2023-04-04,11697,6057,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3076.01,{},54980,0,"""South America""" +2023-10-01,11698,1060,"[\""Charger\"", \""Keyboard\""]",4961.58,"{\""loyalty\"": \""21%\""}",21288,0,"""North America""" +2023-05-21,11699,5571,"[\""Keyboard\""]",4510.42,"{\""loyalty\"": \""6%\""}",130359,0,"""South America""" +2023-12-18,11700,7750,"[\""Headphones\"", \""Phone\""]",1025.63,{},242818,1,"""South America""" +2023-12-22,11701,2728,"[\""Headphones\"", \""Monitor\""]",608.81,"{\""seasonal\"": \""29%\""}",194431,0,"""Asia""" +2023-05-31,11702,3549,"[\""Tablet\""]",3255.96,"{\""loyalty\"": \""10%\""}",23077,0,"""Asia""" +2024-06-28,11703,4201,"[\""Headphones\""]",1234.29,"{\"": \""18%\""}",216538,0,"""Asia""" +2024-10-15,11704,3620,"[\""Headphones\"", \""Tablet\""]",4222.65,"{\""seasonal\"": \""24%\""}",275343,1,"""Africa""" +2024-03-23,11705,3351,"[\""Tablet\"", \""Keyboard\""]",2226.73,{},169837,0,"""Europe""" +2023-02-12,11706,9146,"[\""Phone\""]",4592.94,{},8212,1,"""Europe""" +2023-03-16,11707,3232,"[\""Charger\""]",2425.05,{},91880,1,"""Asia""" +2024-05-15,11708,4910,"[\""Wireless Mouse\""]",1000.28,"{\""loyalty\"": \""29%\""}",95024,1,"""Africa""" +2023-03-01,11709,2050,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2894.88,{},291054,0,"""Africa""" +2024-03-04,11710,66,"[\""Tablet\"", \""Headphones\""]",390.63,{},197767,1,"""Europe""" +2024-07-24,11711,4724,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4249.68,"{\""seasonal\"": \""29%\""}",81619,0,"""North America""" +2023-02-06,11712,6051,"[\""Laptop\""]",828.38,{},68244,1,"""Africa""" +2023-05-23,11713,5300,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1470.66,"{\""loyalty\"": \""25%\""}",230587,0,"""Africa""" +2024-04-28,11714,3945,"[\""Monitor\""]",547.93,"{\""loyalty\"": \""30%\""}",6443,1,"""Asia""" +2023-01-22,11715,9218,"[\""Wireless Mouse\""]",4204.9,"{\"": \""21%\""}",228502,1,"""North America""" +2024-12-13,11716,829,"[\""Laptop\"", \""Keyboard\""]",2868.54,{},169518,0,"""North America""" +2024-04-20,11717,2085,"[\""Wireless Mouse\""]",2392.6,"{\"": \""16%\""}",259199,0,"""Europe""" +2024-07-21,11718,9036,"[\""Monitor\"", \""Tablet\""]",2724.63,"{\"": \""27%\""}",233864,1,"""North America""" +2023-05-21,11719,9233,"[\""Phone\""]",2233.73,"{\""seasonal\"": \""6%\""}",17108,0,"""North America""" +2023-08-26,11720,3021,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2968.45,"{\"": \""14%\""}",30767,0,"""Europe""" +2023-11-02,11721,5306,"[\""Phone\""]",1417.66,"{\""loyalty\"": \""19%\""}",52965,1,"""North America""" +2024-02-27,11722,818,"[\""Charger\"", \""Headphones\""]",3446.12,"{\""loyalty\"": \""30%\""}",88071,0,"""Africa""" +2023-05-05,11723,3121,"[\""Charger\"", \""Phone\"", \""Laptop\""]",610.91,{},233691,0,"""Europe""" +2024-03-30,11724,9003,"[\""Keyboard\""]",160.79,"{\""promo\"": \""6%\""}",286223,0,"""Asia""" +2023-08-19,11725,2265,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4918.36,"{\""seasonal\"": \""29%\""}",240096,1,"""North America""" +2024-04-20,11726,4262,"[\""Phone\"", \""Tablet\""]",1804.69,{},164051,0,"""South America""" +2023-11-14,11727,2592,"[\""Keyboard\""]",1578.46,"{\""loyalty\"": \""8%\""}",3558,1,"""Asia""" +2024-06-06,11728,4618,"[\""Headphones\""]",194.21,{},130616,0,"""South America""" +2024-09-01,11729,9164,"[\""Phone\""]",3791.07,"{\""promo\"": \""14%\""}",25781,0,"""Europe""" +2023-03-03,11730,9096,"[\""Monitor\""]",4792.38,"{\""promo\"": \""7%\""}",100666,0,"""Africa""" +2024-09-04,11731,2087,"[\""Monitor\""]",3223.41,"{\"": \""21%\""}",35776,0,"""Africa""" +2023-08-05,11732,6786,"[\""Phone\"", \""Monitor\""]",4560.49,"{\""promo\"": \""7%\""}",123032,0,"""Europe""" +2024-07-26,11733,3148,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1715.1,{},71298,0,"""Africa""" +2024-08-04,11734,7655,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4674.23,"{\""promo\"": \""17%\""}",104515,1,"""South America""" +2024-05-22,11735,816,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3214.36,{},246906,1,"""Africa""" +2024-12-06,11736,7164,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2295.9,{},19191,1,"""Asia""" +2024-12-11,11737,1630,"[\""Headphones\""]",2646.47,"{\""seasonal\"": \""21%\""}",184854,0,"""Africa""" +2023-08-01,11738,7267,"[\""Keyboard\"", \""Laptop\""]",448.99,{},94981,1,"""Africa""" +2023-03-15,11739,1374,"[\""Phone\""]",1495.62,{},292834,0,"""South America""" +2024-06-10,11740,1002,"[\""Monitor\""]",2378.33,"{\""loyalty\"": \""5%\""}",275074,0,"""Asia""" +2023-04-01,11741,515,"[\""Laptop\"", \""Keyboard\""]",1099.76,{},3835,1,"""Africa""" +2024-01-07,11742,1325,"[\""Tablet\""]",2080.83,"{\""loyalty\"": \""6%\""}",189209,0,"""Asia""" +2023-02-27,11743,6762,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3600.66,{},91302,1,"""Europe""" +2023-03-07,11744,3008,"[\""Laptop\"", \""Keyboard\""]",3652.66,"{\""promo\"": \""11%\""}",131294,0,"""North America""" +2024-04-09,11745,1576,"[\""Headphones\""]",3281.08,"{\""loyalty\"": \""5%\""}",225131,1,"""South America""" +2024-03-23,11746,2013,"[\""Phone\""]",2554.15,{},289525,0,"""Africa""" +2023-02-17,11747,8634,"[\""Phone\""]",2371.44,"{\""loyalty\"": \""5%\""}",5308,0,"""Africa""" +2023-08-08,11748,7569,"[\""Headphones\"", \""Laptop\""]",4379.37,{},287357,0,"""Europe""" +2023-03-19,11749,6599,"[\""Phone\"", \""Charger\""]",3063.0,"{\""loyalty\"": \""16%\""}",171945,1,"""North America""" +2024-07-22,11750,4165,"[\""Phone\""]",4207.56,"{\""promo\"": \""26%\""}",260069,1,"""Asia""" +2023-10-07,11751,8079,"[\""Laptop\""]",3917.15,"{\""seasonal\"": \""17%\""}",230837,1,"""Europe""" +2024-05-29,11752,6431,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4344.6,"{\""promo\"": \""30%\""}",119334,0,"""North America""" +2023-08-06,11753,414,"[\""Keyboard\"", \""Monitor\""]",3201.73,{},209132,0,"""Asia""" +2023-02-13,11754,4362,"[\""Headphones\"", \""Keyboard\""]",2139.87,"{\""seasonal\"": \""15%\""}",255131,1,"""Europe""" +2023-04-15,11755,8928,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",737.93,{},86652,1,"""South America""" +2024-10-06,11756,1407,"[\""Wireless Mouse\""]",1012.99,"{\"": \""13%\""}",106968,1,"""North America""" +2024-02-08,11757,7620,"[\""Monitor\"", \""Tablet\""]",4464.2,"{\""promo\"": \""28%\""}",24876,1,"""North America""" +2024-05-25,11758,8469,"[\""Headphones\""]",3960.67,{},111770,1,"""Asia""" +2023-07-14,11759,9308,"[\""Charger\"", \""Laptop\""]",4030.67,{},188288,1,"""Europe""" +2023-01-22,11760,1896,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4070.14,{},196703,1,"""Asia""" +2024-01-05,11761,7549,"[\""Monitor\""]",2629.68,"{\"": \""8%\""}",46332,0,"""South America""" +2023-05-22,11762,9916,"[\""Headphones\"", \""Laptop\""]",3631.48,"{\""loyalty\"": \""26%\""}",271012,0,"""South America""" +2023-05-02,11763,889,"[\""Keyboard\"", \""Laptop\""]",340.46,{},281880,1,"""North America""" +2023-08-25,11764,763,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4328.1,"{\"": \""30%\""}",56134,1,"""Europe""" +2023-04-23,11765,6275,"[\""Wireless Mouse\"", \""Keyboard\""]",4894.59,{},189340,1,"""Africa""" +2023-02-04,11766,1603,"[\""Charger\"", \""Tablet\""]",3589.47,"{\""loyalty\"": \""30%\""}",129583,0,"""Asia""" +2023-01-13,11767,9298,"[\""Headphones\""]",3328.1,"{\""loyalty\"": \""28%\""}",249327,1,"""Europe""" +2024-02-03,11768,8280,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2354.56,"{\""promo\"": \""23%\""}",266610,0,"""North America""" +2024-09-20,11769,781,"[\""Charger\"", \""Phone\""]",1956.47,"{\""seasonal\"": \""11%\""}",257796,1,"""North America""" +2024-03-21,11770,3894,"[\""Laptop\""]",2317.37,{},121802,1,"""North America""" +2023-11-04,11771,4031,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3092.46,"{\""seasonal\"": \""8%\""}",229659,0,"""Africa""" +2024-06-30,11772,2937,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",277.98,"{\"": \""14%\""}",191532,1,"""Africa""" +2024-09-01,11773,20,"[\""Keyboard\""]",3360.92,"{\""seasonal\"": \""30%\""}",202064,1,"""Africa""" +2023-01-05,11774,6478,"[\""Laptop\"", \""Wireless Mouse\""]",3607.78,{},1190,0,"""Asia""" +2024-12-21,11775,1120,"[\""Charger\""]",102.93,{},222672,1,"""Africa""" +2023-10-19,11776,9105,"[\""Headphones\""]",684.83,{},207311,0,"""South America""" +2023-11-23,11777,7960,"[\""Monitor\"", \""Laptop\""]",2942.0,{},142462,1,"""South America""" +2024-05-11,11778,6784,"[\""Tablet\"", \""Phone\""]",2273.59,"{\""loyalty\"": \""6%\""}",91396,0,"""Europe""" +2024-02-12,11779,2048,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4077.03,"{\""promo\"": \""23%\""}",284632,1,"""South America""" +2024-01-17,11780,728,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3237.88,"{\""promo\"": \""6%\""}",215837,1,"""Africa""" +2024-12-31,11781,8548,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",445.13,{},18690,1,"""South America""" +2023-12-31,11782,870,"[\""Laptop\"", \""Phone\""]",3360.58,{},65767,1,"""South America""" +2024-06-13,11783,5981,"[\""Wireless Mouse\"", \""Keyboard\""]",3306.01,{},40883,1,"""Europe""" +2024-06-01,11784,6079,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4842.22,"{\""promo\"": \""23%\""}",133660,0,"""South America""" +2024-04-09,11785,8961,"[\""Tablet\""]",1449.29,"{\""seasonal\"": \""29%\""}",241050,0,"""Europe""" +2024-06-22,11786,3197,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4628.05,{},298319,0,"""Asia""" +2024-02-18,11787,9506,"[\""Laptop\"", \""Headphones\""]",2008.36,{},99830,0,"""Asia""" +2024-01-03,11788,8731,"[\""Laptop\"", \""Keyboard\""]",3754.77,"{\""loyalty\"": \""14%\""}",253864,0,"""North America""" +2024-08-12,11789,3295,"[\""Charger\""]",3630.95,{},293526,0,"""Africa""" +2023-07-14,11790,6070,"[\""Laptop\"", \""Phone\""]",4026.99,{},291532,1,"""South America""" +2024-04-13,11791,337,"[\""Monitor\"", \""Charger\""]",4541.36,"{\""seasonal\"": \""14%\""}",191378,1,"""North America""" +2023-09-09,11792,9157,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3201.04,{},73340,1,"""Europe""" +2024-04-26,11793,7809,"[\""Keyboard\""]",4643.28,"{\""loyalty\"": \""29%\""}",94704,0,"""North America""" +2023-04-05,11794,6908,"[\""Laptop\"", \""Keyboard\""]",1788.64,{},235294,1,"""South America""" +2024-07-02,11795,3821,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3991.12,"{\""seasonal\"": \""15%\""}",32228,1,"""Europe""" +2023-04-15,11796,3036,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3092.7,{},144247,0,"""North America""" +2023-04-08,11797,2738,"[\""Wireless Mouse\""]",1086.61,"{\"": \""7%\""}",297468,0,"""Europe""" +2024-12-01,11798,6759,"[\""Wireless Mouse\""]",2624.68,"{\""promo\"": \""13%\""}",52847,1,"""North America""" +2023-11-02,11799,4296,"[\""Phone\"", \""Tablet\""]",1018.97,{},92299,0,"""Europe""" +2024-07-14,11800,3710,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3533.05,"{\""loyalty\"": \""18%\""}",186566,0,"""Asia""" +2024-11-14,11801,4593,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1042.39,"{\""promo\"": \""6%\""}",138885,0,"""North America""" +2023-02-11,11802,1061,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",573.66,"{\""seasonal\"": \""29%\""}",295601,0,"""Africa""" +2023-05-22,11803,4620,"[\""Monitor\"", \""Phone\"", \""Charger\""]",107.81,"{\""loyalty\"": \""21%\""}",145149,0,"""Asia""" +2024-02-24,11804,5492,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4452.98,{},159481,1,"""Asia""" +2023-08-25,11805,5324,"[\""Laptop\"", \""Tablet\""]",2515.39,"{\""loyalty\"": \""10%\""}",151297,1,"""Africa""" +2024-02-14,11806,3573,"[\""Headphones\""]",1917.39,{},295410,0,"""Europe""" +2024-03-18,11807,6579,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",193.78,{},195473,0,"""Europe""" +2024-05-06,11808,74,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",992.24,"{\""seasonal\"": \""14%\""}",218284,0,"""Europe""" +2023-03-21,11809,8675,"[\""Tablet\""]",652.84,"{\""promo\"": \""17%\""}",279484,1,"""Africa""" +2024-06-20,11810,6490,"[\""Keyboard\""]",2277.71,{},183279,1,"""Africa""" +2023-04-27,11811,7130,"[\""Keyboard\"", \""Headphones\""]",4692.79,"{\""promo\"": \""21%\""}",175124,1,"""Asia""" +2023-07-20,11812,3265,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2801.14,{},121666,0,"""Africa""" +2023-03-27,11813,7239,"[\""Keyboard\"", \""Laptop\""]",4088.34,{},267784,1,"""Africa""" +2024-04-04,11814,7057,"[\""Tablet\""]",2350.74,"{\""promo\"": \""9%\""}",244815,0,"""Europe""" +2024-06-28,11815,600,"[\""Monitor\"", \""Laptop\""]",1811.81,"{\"": \""6%\""}",56750,1,"""Asia""" +2023-09-10,11816,486,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3649.1,{},289997,0,"""Europe""" +2024-07-25,11817,8286,"[\""Headphones\""]",4294.48,{},83182,0,"""Asia""" +2023-07-21,11818,438,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4316.96,{},216404,0,"""North America""" +2023-06-28,11819,5395,"[\""Headphones\""]",4993.68,"{\""loyalty\"": \""6%\""}",200485,1,"""Europe""" +2023-04-17,11820,8594,"[\""Tablet\"", \""Laptop\""]",4750.09,"{\""seasonal\"": \""6%\""}",105073,1,"""North America""" +2024-04-25,11821,1914,"[\""Monitor\""]",3860.67,{},63381,1,"""Asia""" +2023-12-11,11822,4530,"[\""Tablet\"", \""Keyboard\""]",2274.83,"{\""promo\"": \""26%\""}",45285,1,"""Africa""" +2023-06-17,11823,9393,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2284.66,{},205467,1,"""South America""" +2024-10-04,11824,5010,"[\""Phone\""]",2006.01,"{\""promo\"": \""15%\""}",296076,1,"""Asia""" +2023-07-28,11825,5952,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4063.12,"{\""promo\"": \""24%\""}",135437,1,"""Asia""" +2024-01-18,11826,8187,"[\""Wireless Mouse\""]",1626.97,"{\""promo\"": \""15%\""}",202199,0,"""South America""" +2023-01-15,11827,8971,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4077.38,{},278197,1,"""Asia""" +2023-04-29,11828,8782,"[\""Laptop\"", \""Keyboard\""]",4214.8,{},279811,0,"""Africa""" +2023-04-22,11829,8552,"[\""Laptop\"", \""Charger\""]",3074.77,{},101140,0,"""Europe""" +2023-03-12,11830,247,"[\""Phone\"", \""Keyboard\""]",962.06,"{\""loyalty\"": \""7%\""}",233373,1,"""Africa""" +2023-06-04,11831,3440,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2329.47,"{\"": \""21%\""}",84114,1,"""Europe""" +2023-05-14,11832,7994,"[\""Laptop\"", \""Charger\""]",2523.6,{},144790,1,"""Europe""" +2023-08-29,11833,8004,"[\""Wireless Mouse\""]",2517.85,{},42549,0,"""South America""" +2024-04-18,11834,9457,"[\""Phone\"", \""Wireless Mouse\""]",4286.06,{},223656,0,"""South America""" +2024-11-29,11835,3910,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3316.83,{},192873,0,"""North America""" +2024-05-30,11836,4610,"[\""Phone\""]",3766.87,"{\""promo\"": \""16%\""}",210624,1,"""Europe""" +2023-07-14,11837,7013,"[\""Monitor\""]",4107.33,"{\""loyalty\"": \""7%\""}",10864,0,"""Africa""" +2023-08-22,11838,1476,"[\""Headphones\"", \""Keyboard\""]",258.72,"{\"": \""5%\""}",193875,0,"""South America""" +2024-09-28,11839,7960,"[\""Wireless Mouse\"", \""Phone\""]",4984.42,{},279051,0,"""North America""" +2024-02-17,11840,2488,"[\""Headphones\""]",1023.51,"{\"": \""12%\""}",46290,1,"""Asia""" +2023-12-13,11841,8861,"[\""Tablet\""]",2417.07,{},216127,0,"""Europe""" +2023-01-30,11842,4358,"[\""Monitor\"", \""Wireless Mouse\""]",1509.85,{},214945,0,"""Europe""" +2024-04-06,11843,3898,"[\""Monitor\""]",2233.38,{},7815,0,"""Asia""" +2023-08-28,11844,7151,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4470.99,"{\"": \""19%\""}",14826,1,"""Africa""" +2023-05-24,11845,2775,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2658.63,"{\""promo\"": \""20%\""}",288123,1,"""Asia""" +2024-06-11,11846,9327,"[\""Phone\"", \""Keyboard\""]",4377.08,"{\""promo\"": \""11%\""}",229428,0,"""Europe""" +2023-06-14,11847,9671,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3734.6,"{\""loyalty\"": \""13%\""}",236200,1,"""North America""" +2024-09-17,11848,1791,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3286.24,"{\"": \""15%\""}",101680,0,"""North America""" +2024-08-26,11849,583,"[\""Phone\"", \""Charger\"", \""Tablet\""]",544.61,"{\""seasonal\"": \""28%\""}",112774,0,"""Europe""" +2023-03-18,11850,6985,"[\""Keyboard\"", \""Monitor\""]",580.03,{},204751,0,"""Europe""" +2023-11-19,11851,4127,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2088.41,"{\""seasonal\"": \""13%\""}",184022,1,"""Asia""" +2023-09-16,11852,8632,"[\""Laptop\"", \""Tablet\""]",4972.07,"{\""promo\"": \""15%\""}",46072,1,"""Europe""" +2024-06-04,11853,1842,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2652.87,"{\"": \""24%\""}",26660,0,"""Asia""" +2023-05-08,11854,2707,"[\""Headphones\""]",3666.65,{},294625,0,"""Africa""" +2023-05-24,11855,7526,"[\""Laptop\"", \""Charger\""]",102.47,{},259204,1,"""Asia""" +2023-12-22,11856,9585,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4004.53,"{\""promo\"": \""18%\""}",287646,1,"""South America""" +2023-11-24,11857,1893,"[\""Charger\"", \""Phone\""]",1933.1,"{\""promo\"": \""10%\""}",6070,1,"""Africa""" +2024-05-20,11858,4369,"[\""Headphones\"", \""Laptop\""]",2311.95,"{\""promo\"": \""27%\""}",87296,0,"""Asia""" +2024-10-13,11859,5570,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",115.03,{},33711,0,"""Africa""" +2023-11-12,11860,880,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4200.67,"{\""loyalty\"": \""19%\""}",297433,0,"""North America""" +2023-10-04,11861,8581,"[\""Wireless Mouse\""]",2776.64,"{\""seasonal\"": \""14%\""}",275042,0,"""Africa""" +2024-09-17,11862,1506,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3841.08,"{\""seasonal\"": \""10%\""}",46876,1,"""Africa""" +2023-07-15,11863,1438,"[\""Laptop\"", \""Headphones\""]",344.08,"{\"": \""8%\""}",176929,1,"""Europe""" +2023-05-27,11864,6402,"[\""Wireless Mouse\"", \""Tablet\""]",2747.97,{},71547,0,"""Asia""" +2023-11-18,11865,3950,"[\""Tablet\""]",1635.73,{},178135,0,"""Europe""" +2023-01-06,11866,6332,"[\""Wireless Mouse\""]",2811.8,"{\""promo\"": \""19%\""}",52093,0,"""Africa""" +2024-11-29,11867,7586,"[\""Wireless Mouse\"", \""Monitor\""]",2200.66,{},128250,0,"""Asia""" +2023-02-02,11868,1020,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3923.66,"{\""loyalty\"": \""21%\""}",177576,1,"""North America""" +2023-08-27,11869,4674,"[\""Monitor\"", \""Phone\""]",4795.35,{},152973,1,"""South America""" +2024-12-20,11870,9552,"[\""Headphones\""]",1423.01,{},113255,1,"""Asia""" +2023-12-14,11871,2013,"[\""Headphones\""]",3152.23,{},164647,1,"""South America""" +2024-07-09,11872,36,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",656.7,"{\""loyalty\"": \""11%\""}",283096,1,"""Asia""" +2023-12-22,11873,7582,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1265.48,"{\""promo\"": \""28%\""}",69141,1,"""North America""" +2023-08-13,11874,3378,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1590.53,{},206160,1,"""North America""" +2023-07-23,11875,1426,"[\""Wireless Mouse\"", \""Laptop\""]",3402.74,"{\""promo\"": \""30%\""}",36734,0,"""South America""" +2024-01-17,11876,9518,"[\""Monitor\""]",4805.82,{},139214,1,"""South America""" +2023-01-11,11877,3438,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1803.3,{},129499,0,"""Africa""" +2023-02-16,11878,3911,"[\""Wireless Mouse\""]",1401.22,"{\"": \""28%\""}",134310,0,"""South America""" +2023-03-02,11879,2796,"[\""Laptop\"", \""Headphones\""]",382.52,"{\""seasonal\"": \""30%\""}",2511,1,"""South America""" +2024-07-01,11880,5714,"[\""Wireless Mouse\"", \""Laptop\""]",2032.46,{},61350,0,"""South America""" +2023-07-29,11881,8656,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3380.08,{},258351,0,"""Europe""" +2024-05-23,11882,6395,"[\""Phone\""]",1945.15,"{\""seasonal\"": \""30%\""}",270171,1,"""Europe""" +2024-10-08,11883,9339,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1643.13,"{\"": \""7%\""}",25426,1,"""Africa""" +2023-06-19,11884,406,"[\""Phone\"", \""Laptop\""]",2339.01,{},206151,0,"""Africa""" +2023-09-07,11885,6157,"[\""Monitor\"", \""Laptop\""]",457.65,{},60502,0,"""Asia""" +2023-06-25,11886,9306,"[\""Keyboard\"", \""Laptop\""]",4208.03,{},6301,0,"""Africa""" +2024-12-01,11887,1414,"[\""Wireless Mouse\""]",2605.78,"{\""seasonal\"": \""7%\""}",94375,1,"""Europe""" +2024-05-02,11888,4216,"[\""Keyboard\""]",2109.87,{},8088,0,"""Europe""" +2024-05-22,11889,3625,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1493.6,"{\""seasonal\"": \""14%\""}",114056,1,"""Africa""" +2023-05-31,11890,5573,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2233.66,"{\""loyalty\"": \""22%\""}",83288,1,"""Europe""" +2024-10-01,11891,5547,"[\""Laptop\"", \""Charger\""]",179.83,"{\"": \""16%\""}",214444,1,"""Africa""" +2023-07-29,11892,3322,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4635.94,"{\""loyalty\"": \""27%\""}",249043,1,"""Europe""" +2024-01-10,11893,2612,"[\""Wireless Mouse\""]",3855.74,"{\""loyalty\"": \""24%\""}",12093,1,"""Europe""" +2023-03-24,11894,8268,"[\""Charger\""]",314.2,{},100644,0,"""North America""" +2024-08-17,11895,3881,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1216.0,{},137819,1,"""Europe""" +2024-10-07,11896,4902,"[\""Wireless Mouse\"", \""Phone\""]",4284.7,"{\"": \""9%\""}",17294,0,"""South America""" +2024-09-20,11897,6496,"[\""Laptop\"", \""Charger\""]",1184.63,{},77502,0,"""Asia""" +2024-04-01,11898,6485,"[\""Tablet\""]",1718.59,"{\""seasonal\"": \""9%\""}",72495,1,"""South America""" +2023-12-10,11899,4970,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3332.27,"{\""loyalty\"": \""17%\""}",225860,1,"""North America""" +2024-01-21,11900,3595,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",520.35,{},292494,0,"""Asia""" +2023-12-02,11901,3092,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1455.07,"{\""promo\"": \""10%\""}",172270,1,"""North America""" +2024-06-23,11902,8129,"[\""Laptop\"", \""Keyboard\""]",2481.5,"{\""seasonal\"": \""25%\""}",295810,1,"""Europe""" +2023-01-01,11903,5097,"[\""Monitor\"", \""Keyboard\""]",439.11,{},66963,0,"""South America""" +2024-09-27,11904,3818,"[\""Monitor\""]",2541.25,"{\""seasonal\"": \""18%\""}",28550,1,"""Asia""" +2024-07-05,11905,4658,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1330.74,"{\""seasonal\"": \""9%\""}",141713,0,"""Asia""" +2024-08-14,11906,1660,"[\""Monitor\"", \""Headphones\""]",4454.85,{},151780,0,"""South America""" +2024-08-26,11907,4542,"[\""Tablet\""]",2442.83,{},108594,0,"""North America""" +2024-12-05,11908,2999,"[\""Phone\""]",2923.28,"{\""seasonal\"": \""22%\""}",291525,1,"""Asia""" +2024-10-08,11909,8117,"[\""Wireless Mouse\""]",578.34,"{\""loyalty\"": \""15%\""}",232145,1,"""North America""" +2023-08-30,11910,1053,"[\""Headphones\"", \""Keyboard\""]",3226.56,"{\""loyalty\"": \""26%\""}",235979,0,"""Africa""" +2023-07-15,11911,1888,"[\""Phone\""]",771.24,"{\""loyalty\"": \""21%\""}",273243,1,"""South America""" +2024-01-31,11912,1371,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1225.35,{},20004,1,"""North America""" +2024-07-22,11913,7280,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2245.13,"{\""seasonal\"": \""15%\""}",235846,1,"""Africa""" +2024-02-14,11914,3680,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2421.03,{},30408,1,"""North America""" +2024-05-27,11915,1513,"[\""Tablet\"", \""Monitor\""]",602.15,"{\""promo\"": \""20%\""}",41575,0,"""South America""" +2023-10-13,11916,7959,"[\""Monitor\""]",4326.88,{},164888,0,"""Africa""" +2023-07-01,11917,1126,"[\""Laptop\"", \""Tablet\""]",2033.88,"{\""seasonal\"": \""19%\""}",244284,0,"""North America""" +2023-12-01,11918,5216,"[\""Keyboard\""]",591.86,{},13211,1,"""Africa""" +2024-08-03,11919,9762,"[\""Phone\"", \""Laptop\""]",4109.16,{},115100,1,"""South America""" +2023-02-10,11920,7269,"[\""Keyboard\"", \""Tablet\""]",881.1,{},84106,0,"""South America""" +2024-08-21,11921,6301,"[\""Wireless Mouse\"", \""Tablet\""]",529.18,"{\""loyalty\"": \""26%\""}",180072,1,"""South America""" +2023-08-21,11922,4234,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1995.72,"{\""loyalty\"": \""20%\""}",281066,0,"""North America""" +2024-02-16,11923,1280,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3643.75,"{\""loyalty\"": \""6%\""}",83198,1,"""Asia""" +2023-03-09,11924,1981,"[\""Tablet\"", \""Headphones\""]",3806.11,{},93947,0,"""North America""" +2024-11-02,11925,4994,"[\""Monitor\"", \""Phone\""]",4407.47,"{\""loyalty\"": \""26%\""}",143276,0,"""Europe""" +2024-07-21,11926,5068,"[\""Monitor\"", \""Charger\"", \""Phone\""]",638.83,"{\""promo\"": \""27%\""}",88549,0,"""Africa""" +2023-05-02,11927,3590,"[\""Monitor\"", \""Keyboard\""]",3491.27,"{\""seasonal\"": \""19%\""}",64503,0,"""Europe""" +2023-08-20,11928,2991,"[\""Keyboard\"", \""Wireless Mouse\""]",2292.4,"{\""seasonal\"": \""13%\""}",64439,0,"""North America""" +2024-11-01,11929,4065,"[\""Charger\"", \""Tablet\""]",3319.56,{},177952,1,"""Africa""" +2024-05-02,11930,611,"[\""Charger\""]",4191.34,{},94329,1,"""Africa""" +2024-01-13,11931,1797,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",384.23,"{\"": \""28%\""}",210946,0,"""Asia""" +2024-09-14,11932,2597,"[\""Keyboard\"", \""Wireless Mouse\""]",1808.84,{},75872,0,"""South America""" +2024-10-08,11933,575,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4738.8,{},175733,0,"""Europe""" +2023-06-01,11934,2259,"[\""Wireless Mouse\"", \""Keyboard\""]",2821.43,"{\""promo\"": \""11%\""}",273101,0,"""South America""" +2023-07-29,11935,4745,"[\""Wireless Mouse\""]",1616.44,{},257405,1,"""Africa""" +2023-11-17,11936,3592,"[\""Charger\""]",1453.73,{},74433,1,"""Europe""" +2023-08-12,11937,2324,"[\""Laptop\""]",2419.56,"{\""loyalty\"": \""12%\""}",242374,1,"""South America""" +2024-12-25,11938,4642,"[\""Tablet\"", \""Phone\""]",2782.23,{},276777,1,"""Europe""" +2023-08-26,11939,3402,"[\""Keyboard\"", \""Monitor\""]",4799.09,"{\""promo\"": \""5%\""}",22221,1,"""Africa""" +2024-05-17,11940,2232,"[\""Charger\"", \""Monitor\""]",1668.32,"{\""seasonal\"": \""9%\""}",59870,1,"""Asia""" +2024-10-13,11941,1613,"[\""Headphones\""]",830.99,"{\""promo\"": \""27%\""}",202691,0,"""South America""" +2023-11-24,11942,6478,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2663.63,"{\""seasonal\"": \""7%\""}",284048,0,"""Asia""" +2024-04-09,11943,1004,"[\""Phone\"", \""Keyboard\""]",3207.85,"{\""loyalty\"": \""30%\""}",134952,1,"""Asia""" +2024-01-22,11944,2449,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1554.46,"{\""seasonal\"": \""30%\""}",97913,1,"""Europe""" +2023-12-13,11945,7446,"[\""Tablet\""]",2242.6,"{\""loyalty\"": \""30%\""}",252540,0,"""South America""" +2023-03-05,11946,1253,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2997.49,{},191453,0,"""Asia""" +2023-09-12,11947,8293,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",131.44,"{\""seasonal\"": \""13%\""}",296736,1,"""North America""" +2023-12-29,11948,2352,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3990.36,{},112125,0,"""Africa""" +2024-04-13,11949,3461,"[\""Monitor\""]",4588.41,{},81336,0,"""Africa""" +2024-04-10,11950,9977,"[\""Headphones\""]",1427.27,"{\"": \""21%\""}",16390,1,"""Africa""" +2024-03-31,11951,3045,"[\""Charger\"", \""Laptop\"", \""Phone\""]",835.45,"{\"": \""18%\""}",289921,0,"""Africa""" +2024-08-15,11952,8157,"[\""Tablet\""]",1979.39,{},185077,0,"""Europe""" +2023-01-25,11953,1462,"[\""Headphones\"", \""Laptop\""]",3725.89,{},291649,1,"""South America""" +2023-07-23,11954,6767,"[\""Headphones\""]",4030.58,"{\""loyalty\"": \""27%\""}",153723,0,"""South America""" +2024-12-04,11955,467,"[\""Monitor\"", \""Phone\""]",286.61,{},172335,1,"""North America""" +2023-06-05,11956,9661,"[\""Monitor\"", \""Tablet\""]",1585.81,"{\""loyalty\"": \""12%\""}",206399,1,"""Asia""" +2024-05-28,11957,6827,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4830.21,"{\""loyalty\"": \""24%\""}",25613,1,"""South America""" +2023-04-19,11958,384,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2908.79,{},107308,0,"""Asia""" +2024-07-24,11959,82,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",81.99,"{\""seasonal\"": \""25%\""}",221560,1,"""North America""" +2023-07-11,11960,8211,"[\""Laptop\"", \""Monitor\""]",3740.09,{},131956,0,"""Europe""" +2023-03-23,11961,9096,"[\""Charger\""]",2564.93,"{\""seasonal\"": \""19%\""}",181332,0,"""Europe""" +2023-09-02,11962,7489,"[\""Phone\"", \""Monitor\""]",651.8,{},102663,1,"""Asia""" +2024-12-15,11963,5354,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3356.67,"{\""seasonal\"": \""9%\""}",119990,1,"""South America""" +2024-07-22,11964,6075,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2358.66,{},154645,1,"""Europe""" +2024-11-04,11965,1549,"[\""Headphones\""]",1998.63,{},169730,0,"""Europe""" +2024-10-13,11966,3402,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",277.24,"{\""seasonal\"": \""25%\""}",158813,0,"""Asia""" +2023-11-24,11967,1229,"[\""Wireless Mouse\""]",3095.9,{},157166,0,"""North America""" +2023-02-01,11968,6159,"[\""Phone\"", \""Headphones\""]",3624.98,{},181864,0,"""Asia""" +2023-09-08,11969,7076,"[\""Wireless Mouse\"", \""Phone\""]",997.24,{},279154,0,"""Africa""" +2024-02-01,11970,6959,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1189.64,{},58735,1,"""Europe""" +2024-12-10,11971,1683,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2392.27,"{\""promo\"": \""12%\""}",72506,1,"""North America""" +2023-01-02,11972,2618,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3495.26,"{\""promo\"": \""21%\""}",243913,1,"""Asia""" +2023-01-08,11973,20,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4381.3,"{\"": \""20%\""}",126853,1,"""North America""" +2024-06-26,11974,2442,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1109.28,"{\""loyalty\"": \""18%\""}",105208,0,"""South America""" +2024-09-01,11975,287,"[\""Wireless Mouse\"", \""Charger\""]",1708.75,{},155615,1,"""North America""" +2023-03-02,11976,4534,"[\""Wireless Mouse\""]",867.06,{},74050,0,"""South America""" +2024-12-11,11977,5955,"[\""Headphones\"", \""Charger\""]",3145.84,{},68974,1,"""Europe""" +2024-04-03,11978,7136,"[\""Charger\"", \""Laptop\""]",145.58,{},276210,0,"""Africa""" +2023-12-21,11979,5649,"[\""Wireless Mouse\""]",2454.47,"{\""loyalty\"": \""18%\""}",287879,0,"""South America""" +2024-08-20,11980,6859,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2279.69,{},29104,1,"""Asia""" +2023-03-02,11981,6984,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3205.47,{},153691,0,"""North America""" +2024-08-03,11982,8373,"[\""Keyboard\""]",332.15,{},202266,1,"""Asia""" +2023-04-04,11983,7046,"[\""Tablet\""]",2376.27,"{\""seasonal\"": \""21%\""}",275924,0,"""Asia""" +2024-06-01,11984,7984,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4616.83,"{\""loyalty\"": \""13%\""}",229239,1,"""South America""" +2024-06-08,11985,866,"[\""Laptop\"", \""Monitor\""]",4466.25,"{\""seasonal\"": \""18%\""}",117058,0,"""Europe""" +2023-02-11,11986,9443,"[\""Wireless Mouse\"", \""Phone\""]",3771.42,"{\""seasonal\"": \""13%\""}",23026,1,"""North America""" +2023-07-03,11987,409,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1641.46,"{\""promo\"": \""6%\""}",293080,1,"""Africa""" +2024-04-22,11988,3601,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4899.33,"{\"": \""29%\""}",203072,1,"""Asia""" +2024-10-03,11989,4460,"[\""Wireless Mouse\""]",3759.32,{},137981,1,"""South America""" +2023-06-08,11990,62,"[\""Keyboard\"", \""Charger\""]",2521.95,"{\""loyalty\"": \""24%\""}",210864,1,"""South America""" +2024-06-06,11991,9377,"[\""Headphones\""]",4438.58,{},132507,1,"""Africa""" +2023-04-04,11992,321,"[\""Keyboard\""]",777.25,"{\"": \""6%\""}",279819,0,"""North America""" +2023-09-10,11993,5911,"[\""Keyboard\""]",1559.35,{},143433,0,"""South America""" +2023-08-04,11994,9930,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",129.74,"{\""seasonal\"": \""24%\""}",218360,1,"""Asia""" +2023-10-17,11995,4565,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",204.3,"{\""loyalty\"": \""5%\""}",11260,0,"""South America""" +2023-09-22,11996,5853,"[\""Charger\"", \""Wireless Mouse\""]",738.69,{},86628,0,"""South America""" +2023-10-05,11997,5711,"[\""Laptop\""]",4319.81,{},201645,1,"""Europe""" +2023-07-12,11998,865,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2691.85,"{\""loyalty\"": \""17%\""}",205454,0,"""Asia""" +2024-08-10,11999,4866,"[\""Charger\"", \""Phone\"", \""Headphones\""]",932.8,"{\""seasonal\"": \""9%\""}",253641,0,"""Asia""" +2023-11-30,12000,9195,"[\""Laptop\""]",3833.35,"{\""seasonal\"": \""15%\""}",152717,0,"""Europe""" +2023-10-11,12001,7144,"[\""Charger\""]",1994.71,{},239902,0,"""Asia""" +2024-05-09,12002,2521,"[\""Keyboard\"", \""Headphones\""]",4654.73,{},133968,0,"""Asia""" +2023-07-24,12003,3545,"[\""Keyboard\""]",2564.58,"{\""loyalty\"": \""22%\""}",257027,0,"""Asia""" +2024-08-27,12004,1133,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4129.64,"{\""loyalty\"": \""23%\""}",266386,0,"""North America""" +2023-07-10,12005,8988,"[\""Wireless Mouse\""]",4143.03,"{\"": \""11%\""}",22955,0,"""South America""" +2024-05-06,12006,9168,"[\""Monitor\"", \""Headphones\""]",3156.57,"{\"": \""22%\""}",108684,0,"""North America""" +2024-02-20,12007,1270,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3205.51,{},151782,0,"""Africa""" +2024-03-25,12008,441,"[\""Tablet\"", \""Laptop\""]",689.06,{},45915,1,"""Asia""" +2023-09-15,12009,8808,"[\""Monitor\""]",787.31,{},133983,0,"""North America""" +2024-09-29,12010,8310,"[\""Laptop\""]",3439.78,{},287219,0,"""North America""" +2024-09-04,12011,1593,"[\""Keyboard\"", \""Charger\""]",3224.7,"{\""seasonal\"": \""7%\""}",215180,0,"""Asia""" +2024-08-31,12012,8189,"[\""Charger\""]",2449.02,"{\""seasonal\"": \""15%\""}",231760,1,"""Asia""" +2024-10-29,12013,3474,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4798.66,{},223822,0,"""North America""" +2023-06-07,12014,685,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3786.62,{},188380,1,"""Asia""" +2023-12-07,12015,3412,"[\""Phone\"", \""Wireless Mouse\""]",2719.68,"{\""seasonal\"": \""18%\""}",230181,0,"""Asia""" +2023-08-08,12016,4397,"[\""Wireless Mouse\""]",2563.85,{},242222,1,"""South America""" +2024-09-22,12017,5309,"[\""Monitor\""]",2739.38,{},176316,0,"""Asia""" +2024-07-17,12018,4036,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4901.79,{},162694,0,"""Europe""" +2023-12-21,12019,3795,"[\""Headphones\""]",1576.98,{},112758,0,"""Asia""" +2023-02-25,12020,275,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",344.04,"{\""promo\"": \""24%\""}",66667,0,"""Asia""" +2023-03-29,12021,640,"[\""Wireless Mouse\""]",3725.92,{},138214,0,"""South America""" +2024-12-06,12022,3513,"[\""Charger\""]",4458.5,"{\"": \""8%\""}",260420,0,"""Asia""" +2023-06-11,12023,1931,"[\""Tablet\""]",1584.5,{},259993,1,"""Asia""" +2024-01-19,12024,4959,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",759.12,{},122350,1,"""North America""" +2024-06-28,12025,1762,"[\""Tablet\"", \""Wireless Mouse\""]",3533.88,"{\""loyalty\"": \""14%\""}",79682,1,"""Europe""" +2024-08-20,12026,7006,"[\""Keyboard\""]",1895.58,"{\""loyalty\"": \""12%\""}",267473,1,"""South America""" +2023-02-01,12027,2691,"[\""Laptop\""]",1806.08,"{\"": \""28%\""}",44086,1,"""Asia""" +2023-07-08,12028,1404,"[\""Tablet\""]",505.87,"{\""seasonal\"": \""8%\""}",196096,0,"""Asia""" +2023-12-11,12029,3551,"[\""Keyboard\"", \""Charger\""]",4970.7,"{\""seasonal\"": \""8%\""}",178111,0,"""North America""" +2023-07-31,12030,7693,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",489.59,{},273370,0,"""Africa""" +2024-10-08,12031,2549,"[\""Tablet\""]",3478.61,{},22235,1,"""Europe""" +2024-11-22,12032,378,"[\""Laptop\""]",1832.5,{},234002,0,"""Africa""" +2023-08-30,12033,4868,"[\""Tablet\"", \""Headphones\""]",2136.66,{},175393,1,"""Africa""" +2024-12-15,12034,6360,"[\""Laptop\""]",584.01,{},149684,0,"""Asia""" +2024-08-07,12035,8369,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3626.41,"{\""promo\"": \""30%\""}",209854,1,"""Europe""" +2024-09-30,12036,417,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4995.38,{},214333,1,"""North America""" +2024-04-19,12037,2172,"[\""Headphones\""]",4967.92,"{\""seasonal\"": \""5%\""}",44315,1,"""Europe""" +2024-03-02,12038,4157,"[\""Monitor\""]",2245.57,{},9457,0,"""Asia""" +2023-08-11,12039,2144,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1099.03,{},5678,0,"""Africa""" +2023-08-11,12040,1575,"[\""Wireless Mouse\"", \""Tablet\""]",1661.88,"{\""promo\"": \""28%\""}",284292,0,"""Europe""" +2023-10-08,12041,154,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3700.83,{},118887,1,"""Europe""" +2024-12-06,12042,1350,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1156.35,{},33404,0,"""Asia""" +2023-05-30,12043,4555,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1424.43,"{\""seasonal\"": \""21%\""}",63582,0,"""South America""" +2024-09-13,12044,1178,"[\""Monitor\""]",1035.41,"{\"": \""16%\""}",255399,1,"""Europe""" +2024-08-11,12045,5953,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4587.65,{},246502,0,"""North America""" +2024-07-24,12046,9233,"[\""Tablet\"", \""Charger\""]",2143.62,{},211338,1,"""Europe""" +2023-08-09,12047,2597,"[\""Charger\"", \""Wireless Mouse\""]",2416.01,{},31099,0,"""Africa""" +2023-01-27,12048,9817,"[\""Keyboard\"", \""Wireless Mouse\""]",2192.07,"{\"": \""21%\""}",84695,1,"""Africa""" +2023-02-23,12049,3778,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",358.75,"{\"": \""6%\""}",31264,1,"""Asia""" +2024-09-01,12050,30,"[\""Wireless Mouse\"", \""Phone\""]",4770.76,"{\""loyalty\"": \""25%\""}",287706,1,"""North America""" +2024-03-14,12051,3766,"[\""Phone\"", \""Charger\""]",3339.4,{},77908,0,"""North America""" +2024-04-13,12052,1515,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2137.12,"{\""loyalty\"": \""18%\""}",25699,0,"""Europe""" +2023-09-19,12053,2705,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",791.69,"{\"": \""16%\""}",181902,1,"""South America""" +2024-01-27,12054,9968,"[\""Charger\""]",4557.34,{},46178,0,"""Europe""" +2023-02-24,12055,7746,"[\""Headphones\"", \""Wireless Mouse\""]",304.68,{},121252,0,"""North America""" +2023-08-05,12056,3385,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3122.39,{},7522,0,"""South America""" +2023-04-06,12057,2485,"[\""Headphones\""]",280.6,{},178702,1,"""Africa""" +2024-11-02,12058,942,"[\""Phone\""]",2931.64,{},291288,1,"""South America""" +2023-09-02,12059,7265,"[\""Keyboard\""]",1346.39,"{\""seasonal\"": \""25%\""}",247293,0,"""South America""" +2024-04-02,12060,9867,"[\""Monitor\"", \""Charger\""]",1581.4,{},260254,0,"""North America""" +2023-01-31,12061,3750,"[\""Phone\""]",916.45,{},282481,0,"""North America""" +2024-07-01,12062,2731,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3520.17,{},282481,1,"""South America""" +2024-09-07,12063,4179,"[\""Tablet\"", \""Laptop\""]",376.72,{},94169,1,"""Asia""" +2024-06-23,12064,2959,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2433.53,"{\""loyalty\"": \""5%\""}",74006,0,"""North America""" +2023-10-29,12065,7429,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",187.92,"{\""loyalty\"": \""19%\""}",27505,0,"""Europe""" +2023-10-31,12066,3083,"[\""Phone\""]",4047.61,"{\""seasonal\"": \""7%\""}",188289,1,"""South America""" +2023-01-13,12067,7672,"[\""Wireless Mouse\""]",958.48,"{\""seasonal\"": \""14%\""}",23020,0,"""South America""" +2023-11-25,12068,4486,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4899.59,{},227795,0,"""Europe""" +2024-07-30,12069,8959,"[\""Tablet\""]",2032.22,{},102566,1,"""Asia""" +2024-10-17,12070,272,"[\""Laptop\"", \""Monitor\""]",1649.88,"{\"": \""13%\""}",121454,1,"""Europe""" +2023-02-23,12071,7562,"[\""Wireless Mouse\"", \""Charger\""]",2324.36,{},293426,0,"""Europe""" +2023-01-30,12072,3735,"[\""Wireless Mouse\"", \""Tablet\""]",2812.9,"{\""seasonal\"": \""20%\""}",212147,0,"""North America""" +2024-08-20,12073,7993,"[\""Keyboard\""]",630.71,{},201091,1,"""Asia""" +2023-10-23,12074,2863,"[\""Laptop\""]",1850.04,{},99362,0,"""Asia""" +2024-08-15,12075,912,"[\""Tablet\"", \""Monitor\""]",2721.16,{},153205,1,"""Europe""" +2024-10-17,12076,3422,"[\""Tablet\"", \""Headphones\""]",982.85,{},297128,0,"""Asia""" +2023-12-19,12077,3917,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2595.33,{},247153,1,"""Africa""" +2024-03-14,12078,5974,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",624.12,{},171917,1,"""Europe""" +2023-12-24,12079,9610,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1802.3,{},10081,0,"""Asia""" +2023-10-18,12080,6983,"[\""Charger\"", \""Phone\""]",2642.14,"{\""loyalty\"": \""24%\""}",225561,0,"""South America""" +2023-04-24,12081,4288,"[\""Keyboard\"", \""Headphones\""]",166.16,{},261396,0,"""North America""" +2024-02-20,12082,9000,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3285.75,"{\""seasonal\"": \""20%\""}",203489,1,"""Europe""" +2024-12-29,12083,3998,"[\""Keyboard\"", \""Headphones\""]",412.26,"{\""loyalty\"": \""16%\""}",288974,0,"""Asia""" +2023-02-26,12084,7318,"[\""Phone\"", \""Charger\""]",4224.06,"{\""loyalty\"": \""23%\""}",90028,0,"""South America""" +2024-06-24,12085,5929,"[\""Monitor\""]",1969.15,"{\""seasonal\"": \""11%\""}",189593,1,"""South America""" +2023-02-05,12086,6093,"[\""Keyboard\""]",4387.33,"{\""loyalty\"": \""28%\""}",82019,0,"""Europe""" +2023-03-19,12087,6843,"[\""Charger\""]",2811.5,"{\"": \""30%\""}",222947,0,"""South America""" +2024-06-01,12088,2179,"[\""Wireless Mouse\""]",4112.29,{},48412,1,"""South America""" +2024-09-11,12089,3317,"[\""Wireless Mouse\"", \""Phone\""]",2773.47,"{\""seasonal\"": \""25%\""}",102273,0,"""Africa""" +2023-08-05,12090,1915,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",103.34,{},125134,0,"""Africa""" +2024-05-07,12091,4727,"[\""Tablet\""]",3409.04,"{\""loyalty\"": \""26%\""}",99701,1,"""South America""" +2024-05-11,12092,5983,"[\""Charger\""]",1092.43,{},43985,1,"""South America""" +2024-12-01,12093,1018,"[\""Charger\""]",1365.49,"{\""seasonal\"": \""20%\""}",215007,0,"""Africa""" +2023-04-20,12094,8277,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2985.6,{},299310,0,"""Africa""" +2024-05-22,12095,5185,"[\""Wireless Mouse\""]",3624.72,"{\""promo\"": \""26%\""}",37605,0,"""South America""" +2023-08-04,12096,496,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3160.17,"{\""seasonal\"": \""18%\""}",289934,1,"""Africa""" +2024-12-20,12097,6775,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3876.28,"{\""loyalty\"": \""13%\""}",146939,0,"""Europe""" +2023-07-31,12098,6291,"[\""Phone\""]",1778.53,{},84693,1,"""Africa""" +2024-09-03,12099,7529,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3441.96,"{\"": \""26%\""}",28235,0,"""North America""" +2023-06-07,12100,2855,"[\""Monitor\""]",4178.08,"{\""seasonal\"": \""21%\""}",232836,0,"""Asia""" +2024-02-28,12101,1515,"[\""Keyboard\"", \""Monitor\""]",4629.2,{},210696,1,"""Asia""" +2024-04-03,12102,2450,"[\""Monitor\"", \""Laptop\""]",3329.96,"{\""loyalty\"": \""24%\""}",256597,0,"""Europe""" +2024-07-18,12103,109,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4086.26,{},275063,0,"""Asia""" +2023-03-07,12104,8266,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",946.78,"{\""seasonal\"": \""17%\""}",254078,1,"""Europe""" +2023-03-04,12105,5148,"[\""Laptop\"", \""Tablet\""]",2414.25,"{\""loyalty\"": \""8%\""}",1382,1,"""Africa""" +2024-03-21,12106,5739,"[\""Keyboard\"", \""Phone\""]",1493.43,{},126679,0,"""Africa""" +2024-09-08,12107,388,"[\""Monitor\"", \""Phone\""]",2277.43,"{\""loyalty\"": \""25%\""}",95720,1,"""South America""" +2024-04-15,12108,3623,"[\""Charger\"", \""Headphones\""]",742.56,{},235364,1,"""North America""" +2023-07-28,12109,2157,"[\""Tablet\"", \""Headphones\""]",2296.74,{},224248,0,"""Africa""" +2024-06-23,12110,3978,"[\""Monitor\"", \""Tablet\""]",103.95,"{\""loyalty\"": \""9%\""}",262965,0,"""Asia""" +2024-02-02,12111,6944,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1901.56,{},205488,1,"""Africa""" +2024-08-05,12112,4500,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4542.25,{},173353,1,"""Asia""" +2023-10-02,12113,966,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3609.79,"{\""promo\"": \""23%\""}",32459,1,"""North America""" +2024-07-19,12114,7993,"[\""Keyboard\""]",1556.37,{},169660,0,"""South America""" +2024-08-01,12115,8526,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4270.6,"{\""promo\"": \""5%\""}",219599,0,"""Africa""" +2023-01-18,12116,7428,"[\""Keyboard\"", \""Tablet\""]",3082.62,{},169827,0,"""South America""" +2024-09-13,12117,5823,"[\""Headphones\"", \""Charger\""]",2173.73,{},250515,0,"""Africa""" +2023-01-20,12118,8261,"[\""Tablet\""]",4669.52,"{\"": \""23%\""}",184891,1,"""Asia""" +2024-04-19,12119,8060,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2035.79,{},296920,1,"""North America""" +2024-09-09,12120,8068,"[\""Tablet\""]",2689.82,"{\""loyalty\"": \""25%\""}",20201,0,"""Asia""" +2023-10-12,12121,9577,"[\""Headphones\""]",1201.44,{},278778,1,"""Asia""" +2024-11-08,12122,7545,"[\""Tablet\""]",2874.09,{},266647,0,"""North America""" +2023-01-02,12123,6297,"[\""Tablet\""]",496.64,{},228814,0,"""Europe""" +2023-05-20,12124,8745,"[\""Wireless Mouse\"", \""Charger\""]",3635.56,{},219985,1,"""Europe""" +2023-11-05,12125,7269,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3883.91,{},171380,1,"""North America""" +2023-05-27,12126,1623,"[\""Phone\""]",1392.24,{},283574,0,"""Europe""" +2023-12-14,12127,5387,"[\""Tablet\""]",1676.94,"{\"": \""13%\""}",185883,0,"""Europe""" +2023-07-25,12128,3739,"[\""Laptop\""]",328.17,{},48921,1,"""Africa""" +2023-03-25,12129,1256,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3356.83,"{\"": \""18%\""}",8781,1,"""North America""" +2024-11-06,12130,3535,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1875.25,{},51907,1,"""Europe""" +2024-04-21,12131,8932,"[\""Phone\"", \""Wireless Mouse\""]",4469.8,{},126680,1,"""Africa""" +2023-07-18,12132,736,"[\""Charger\""]",3838.32,{},56363,1,"""South America""" +2024-07-16,12133,677,"[\""Phone\"", \""Tablet\""]",1962.84,{},162420,1,"""Europe""" +2023-09-28,12134,5484,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4766.82,"{\"": \""18%\""}",46180,1,"""Asia""" +2024-09-21,12135,5499,"[\""Keyboard\"", \""Wireless Mouse\""]",637.29,{},97666,1,"""Europe""" +2024-05-21,12136,9104,"[\""Wireless Mouse\"", \""Phone\""]",1176.43,{},129173,1,"""Africa""" +2023-07-20,12137,7567,"[\""Charger\"", \""Wireless Mouse\""]",951.11,"{\""loyalty\"": \""5%\""}",123121,0,"""Europe""" +2024-07-02,12138,6930,"[\""Laptop\"", \""Charger\""]",3617.47,{},249299,1,"""South America""" +2023-12-17,12139,1370,"[\""Laptop\""]",324.86,"{\""loyalty\"": \""13%\""}",90890,1,"""Asia""" +2024-01-02,12140,543,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3419.98,{},72908,0,"""South America""" +2023-11-28,12141,8505,"[\""Wireless Mouse\""]",1061.74,{},270681,1,"""Europe""" +2023-08-08,12142,5900,"[\""Phone\""]",751.65,"{\""seasonal\"": \""24%\""}",88771,0,"""South America""" +2023-03-03,12143,1046,"[\""Laptop\"", \""Tablet\""]",1120.86,{},119254,0,"""North America""" +2024-06-07,12144,7250,"[\""Monitor\""]",3712.63,{},162155,0,"""Asia""" +2023-05-01,12145,7064,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4170.8,{},168387,1,"""Europe""" +2023-04-17,12146,4471,"[\""Headphones\"", \""Laptop\""]",4781.88,{},65730,1,"""North America""" +2023-04-11,12147,1869,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1273.46,"{\""seasonal\"": \""28%\""}",266131,1,"""Asia""" +2024-02-08,12148,9781,"[\""Charger\""]",2100.78,"{\""promo\"": \""11%\""}",78972,1,"""Africa""" +2024-09-07,12149,9928,"[\""Headphones\"", \""Laptop\""]",4576.98,{},102480,1,"""South America""" +2023-07-16,12150,4257,"[\""Laptop\"", \""Charger\""]",4942.7,"{\""seasonal\"": \""30%\""}",284573,0,"""Europe""" +2024-10-20,12151,5762,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3217.11,"{\""loyalty\"": \""11%\""}",289929,1,"""North America""" +2024-12-05,12152,7541,"[\""Tablet\""]",3289.59,{},53827,0,"""Africa""" +2023-12-12,12153,9269,"[\""Phone\"", \""Monitor\""]",2971.36,{},87590,1,"""South America""" +2024-04-16,12154,5414,"[\""Wireless Mouse\"", \""Tablet\""]",1437.54,{},234277,1,"""Europe""" +2024-09-04,12155,3542,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4263.67,"{\"": \""25%\""}",146647,1,"""North America""" +2023-06-16,12156,463,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3135.15,{},24967,1,"""Asia""" +2023-07-05,12157,1166,"[\""Headphones\"", \""Keyboard\""]",3368.89,"{\"": \""9%\""}",6690,0,"""Africa""" +2023-02-26,12158,4753,"[\""Monitor\""]",1984.03,{},49025,1,"""Europe""" +2023-09-28,12159,9648,"[\""Laptop\""]",2266.86,"{\""promo\"": \""17%\""}",153011,0,"""Africa""" +2023-08-11,12160,9025,"[\""Laptop\""]",2716.8,{},220505,1,"""South America""" +2024-07-14,12161,4468,"[\""Wireless Mouse\""]",3914.09,{},37430,0,"""South America""" +2024-06-20,12162,8065,"[\""Keyboard\""]",2708.08,"{\"": \""22%\""}",20785,1,"""South America""" +2023-04-26,12163,5417,"[\""Keyboard\"", \""Laptop\""]",1339.38,"{\""loyalty\"": \""28%\""}",168512,1,"""Africa""" +2024-10-27,12164,8680,"[\""Tablet\""]",4593.01,"{\""loyalty\"": \""8%\""}",26796,0,"""Europe""" +2024-05-30,12165,7949,"[\""Laptop\"", \""Headphones\""]",736.37,{},120572,1,"""Europe""" +2024-01-24,12166,3082,"[\""Keyboard\""]",3381.66,{},127543,0,"""Europe""" +2023-07-18,12167,7948,"[\""Keyboard\""]",3715.18,{},42343,0,"""Europe""" +2024-04-08,12168,9456,"[\""Headphones\""]",4047.35,{},65731,0,"""North America""" +2023-01-30,12169,7382,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4361.65,"{\"": \""26%\""}",97488,0,"""Europe""" +2024-03-20,12170,9963,"[\""Phone\""]",3498.41,"{\"": \""11%\""}",174990,0,"""South America""" +2024-11-18,12171,7218,"[\""Monitor\"", \""Laptop\""]",1905.9,{},24571,1,"""South America""" +2024-11-02,12172,7129,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",980.53,{},38853,0,"""Asia""" +2024-12-03,12173,6707,"[\""Phone\"", \""Charger\""]",3063.02,{},32643,0,"""South America""" +2023-10-11,12174,6547,"[\""Monitor\""]",1823.98,{},174901,1,"""North America""" +2023-07-14,12175,2664,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2691.23,{},172805,0,"""Europe""" +2024-08-05,12176,9781,"[\""Keyboard\""]",646.51,{},52019,1,"""North America""" +2024-01-25,12177,8029,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",50.71,{},210071,1,"""Africa""" +2023-10-07,12178,2074,"[\""Charger\"", \""Tablet\""]",4557.32,"{\""loyalty\"": \""8%\""}",1283,0,"""Europe""" +2023-11-24,12179,4208,"[\""Laptop\""]",457.35,{},62517,1,"""North America""" +2023-05-26,12180,4372,"[\""Laptop\""]",2734.88,"{\""seasonal\"": \""23%\""}",248229,0,"""North America""" +2024-10-06,12181,3125,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3435.76,{},215739,0,"""Europe""" +2023-12-21,12182,4469,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3858.3,{},248407,1,"""North America""" +2023-01-28,12183,7619,"[\""Tablet\"", \""Charger\""]",2199.37,{},95549,1,"""Africa""" +2024-10-28,12184,961,"[\""Phone\"", \""Wireless Mouse\""]",159.98,"{\""seasonal\"": \""25%\""}",258272,1,"""Asia""" +2024-01-22,12185,6431,"[\""Phone\"", \""Monitor\""]",2947.68,"{\""seasonal\"": \""26%\""}",239226,0,"""Asia""" +2024-08-25,12186,8193,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2512.31,"{\""promo\"": \""10%\""}",52625,0,"""Europe""" +2023-09-08,12187,3931,"[\""Charger\"", \""Phone\""]",3207.78,{},111497,0,"""Europe""" +2023-08-08,12188,2072,"[\""Tablet\""]",4749.84,{},233804,1,"""Asia""" +2023-12-26,12189,4475,"[\""Wireless Mouse\""]",671.31,{},248353,0,"""South America""" +2023-05-03,12190,4052,"[\""Laptop\""]",3775.98,"{\"": \""20%\""}",236600,0,"""Asia""" +2024-08-04,12191,6986,"[\""Headphones\"", \""Charger\""]",4287.02,"{\""loyalty\"": \""10%\""}",210713,1,"""South America""" +2023-01-13,12192,4994,"[\""Charger\"", \""Monitor\""]",4151.72,{},227545,1,"""Africa""" +2024-09-09,12193,7106,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4672.52,{},35076,1,"""North America""" +2023-08-08,12194,5766,"[\""Keyboard\""]",3976.41,{},208654,1,"""Europe""" +2023-11-15,12195,9998,"[\""Headphones\""]",686.81,{},99916,0,"""Africa""" +2023-01-03,12196,3475,"[\""Headphones\"", \""Charger\"", \""Phone\""]",158.03,{},29990,0,"""Europe""" +2024-06-01,12197,3640,"[\""Charger\"", \""Phone\""]",4222.61,{},220950,1,"""North America""" +2024-07-24,12198,3553,"[\""Phone\""]",211.08,"{\"": \""17%\""}",69622,1,"""South America""" +2023-03-17,12199,7236,"[\""Monitor\"", \""Charger\""]",3382.42,"{\""loyalty\"": \""22%\""}",164263,0,"""Asia""" +2023-01-21,12200,3695,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3331.39,"{\""loyalty\"": \""13%\""}",210024,0,"""South America""" +2023-12-23,12201,8401,"[\""Tablet\"", \""Charger\""]",4580.72,{},195586,0,"""North America""" +2024-01-23,12202,6249,"[\""Headphones\"", \""Charger\""]",4032.79,"{\"": \""29%\""}",187631,0,"""North America""" +2024-04-24,12203,936,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1859.93,"{\""seasonal\"": \""19%\""}",206584,1,"""Europe""" +2024-03-20,12204,6392,"[\""Laptop\""]",4847.89,"{\"": \""11%\""}",270273,1,"""Asia""" +2023-08-18,12205,4188,"[\""Wireless Mouse\"", \""Headphones\""]",3389.43,"{\""seasonal\"": \""18%\""}",80278,1,"""Europe""" +2024-04-28,12206,9831,"[\""Charger\"", \""Headphones\""]",3241.16,"{\""promo\"": \""18%\""}",74587,0,"""South America""" +2023-11-09,12207,6117,"[\""Phone\"", \""Charger\""]",2332.07,{},73445,1,"""Asia""" +2024-05-10,12208,5921,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2716.4,"{\""seasonal\"": \""9%\""}",204681,1,"""Asia""" +2024-08-07,12209,8104,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1028.25,{},81283,0,"""North America""" +2024-11-12,12210,1119,"[\""Headphones\""]",4895.64,{},214750,1,"""Europe""" +2024-03-27,12211,3611,"[\""Headphones\"", \""Keyboard\""]",232.26,{},207811,0,"""Africa""" +2023-04-02,12212,7317,"[\""Headphones\""]",1469.39,"{\"": \""20%\""}",191618,0,"""Asia""" +2023-02-27,12213,9979,"[\""Keyboard\""]",2925.33,{},147721,1,"""Asia""" +2023-01-31,12214,1133,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4156.38,"{\""promo\"": \""15%\""}",100912,1,"""Asia""" +2024-04-30,12215,4415,"[\""Tablet\"", \""Laptop\""]",4797.69,"{\""loyalty\"": \""21%\""}",236011,0,"""Asia""" +2024-05-04,12216,2301,"[\""Keyboard\"", \""Charger\""]",3559.64,"{\"": \""15%\""}",21607,0,"""Asia""" +2024-12-04,12217,2551,"[\""Headphones\"", \""Phone\""]",3846.03,{},266486,1,"""Asia""" +2023-02-14,12218,3306,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3620.29,"{\""promo\"": \""15%\""}",30018,0,"""North America""" +2023-04-01,12219,4284,"[\""Headphones\"", \""Phone\""]",4906.13,"{\"": \""30%\""}",96163,1,"""Asia""" +2023-02-26,12220,1021,"[\""Headphones\""]",3733.92,"{\""promo\"": \""14%\""}",289195,0,"""Africa""" +2024-07-19,12221,1744,"[\""Charger\""]",2729.49,"{\""seasonal\"": \""30%\""}",18742,1,"""South America""" +2024-04-20,12222,838,"[\""Phone\"", \""Headphones\""]",2653.66,{},258880,1,"""Europe""" +2024-12-30,12223,1118,"[\""Wireless Mouse\"", \""Keyboard\""]",1325.45,{},247504,0,"""South America""" +2024-07-12,12224,9062,"[\""Keyboard\"", \""Wireless Mouse\""]",4430.05,"{\""seasonal\"": \""14%\""}",169954,0,"""South America""" +2023-07-30,12225,7328,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2268.26,"{\"": \""17%\""}",196770,0,"""Asia""" +2023-08-27,12226,6819,"[\""Monitor\"", \""Tablet\""]",2404.3,"{\""seasonal\"": \""23%\""}",149105,1,"""North America""" +2023-06-27,12227,4503,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1873.44,"{\""loyalty\"": \""20%\""}",152899,1,"""South America""" +2023-04-05,12228,5571,"[\""Headphones\"", \""Charger\""]",4530.89,"{\"": \""18%\""}",134142,1,"""South America""" +2024-04-05,12229,8429,"[\""Charger\""]",4764.55,{},192678,1,"""North America""" +2023-02-06,12230,2197,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3725.54,"{\"": \""13%\""}",184427,0,"""South America""" +2024-08-02,12231,5135,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1992.68,"{\""promo\"": \""5%\""}",263749,0,"""Africa""" +2023-06-20,12232,3816,"[\""Headphones\"", \""Phone\""]",875.01,"{\"": \""30%\""}",100236,0,"""Africa""" +2024-01-29,12233,5415,"[\""Keyboard\"", \""Charger\""]",390.68,{},125618,1,"""Europe""" +2023-08-19,12234,2375,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4225.25,"{\"": \""21%\""}",93980,1,"""North America""" +2023-04-24,12235,2228,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4800.22,"{\""promo\"": \""8%\""}",37667,1,"""Africa""" +2023-04-09,12236,7644,"[\""Phone\"", \""Keyboard\""]",1615.67,{},139382,1,"""South America""" +2023-03-02,12237,3501,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2241.95,{},286642,0,"""Asia""" +2023-01-10,12238,5515,"[\""Tablet\""]",4768.68,{},2101,1,"""South America""" +2024-02-28,12239,3716,"[\""Headphones\"", \""Keyboard\""]",4915.66,{},51445,1,"""Europe""" +2024-05-12,12240,8848,"[\""Tablet\"", \""Wireless Mouse\""]",2530.89,{},162678,0,"""North America""" +2024-03-11,12241,5108,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4005.33,{},205406,1,"""Africa""" +2024-04-12,12242,7032,"[\""Charger\"", \""Headphones\"", \""Phone\""]",654.83,{},32455,1,"""Europe""" +2024-10-21,12243,9792,"[\""Phone\""]",4022.7,{},107704,0,"""North America""" +2024-02-29,12244,4155,"[\""Headphones\""]",3145.37,"{\""promo\"": \""20%\""}",164489,0,"""Europe""" +2024-10-17,12245,7610,"[\""Wireless Mouse\""]",1267.75,{},229155,0,"""South America""" +2023-03-11,12246,2379,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3062.41,{},78145,1,"""South America""" +2023-12-11,12247,6153,"[\""Monitor\""]",4973.96,{},148571,1,"""North America""" +2023-11-28,12248,641,"[\""Keyboard\"", \""Monitor\""]",2823.74,{},106457,0,"""Europe""" +2024-03-04,12249,8793,"[\""Laptop\"", \""Charger\""]",2918.86,{},183764,0,"""South America""" +2023-06-15,12250,7101,"[\""Laptop\"", \""Keyboard\""]",639.3,"{\""seasonal\"": \""22%\""}",148059,1,"""Europe""" +2023-03-11,12251,4563,"[\""Laptop\""]",3549.2,"{\""seasonal\"": \""24%\""}",125354,1,"""North America""" +2024-12-10,12252,5616,"[\""Headphones\"", \""Phone\""]",1661.52,{},116317,1,"""South America""" +2023-07-19,12253,6240,"[\""Keyboard\""]",3628.15,"{\"": \""19%\""}",129338,1,"""Asia""" +2024-10-21,12254,7685,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3667.5,"{\"": \""12%\""}",28008,0,"""Asia""" +2024-05-25,12255,9798,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2435.51,{},57602,1,"""Asia""" +2024-04-05,12256,6047,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3802.9,{},201768,0,"""Europe""" +2024-12-05,12257,1957,"[\""Charger\""]",2242.95,{},133221,0,"""North America""" +2023-10-07,12258,4741,"[\""Tablet\""]",4396.77,"{\"": \""27%\""}",289373,0,"""North America""" +2024-05-17,12259,2761,"[\""Wireless Mouse\""]",2546.29,"{\""seasonal\"": \""7%\""}",275212,1,"""South America""" +2024-05-07,12260,8221,"[\""Laptop\"", \""Tablet\""]",1032.74,"{\"": \""21%\""}",297489,1,"""Africa""" +2024-04-07,12261,7949,"[\""Tablet\"", \""Wireless Mouse\""]",912.77,{},32467,1,"""Asia""" +2023-04-26,12262,4062,"[\""Keyboard\""]",789.19,"{\""promo\"": \""18%\""}",128038,1,"""Europe""" +2024-04-21,12263,3070,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2185.93,"{\""promo\"": \""9%\""}",36350,1,"""Europe""" +2024-09-18,12264,2409,"[\""Charger\"", \""Tablet\""]",2786.04,{},52138,1,"""Europe""" +2024-02-12,12265,3378,"[\""Keyboard\""]",316.77,{},152088,0,"""North America""" +2023-12-26,12266,1388,"[\""Keyboard\"", \""Laptop\""]",3672.87,"{\""loyalty\"": \""14%\""}",243594,1,"""Asia""" +2024-08-15,12267,2564,"[\""Laptop\""]",4429.51,"{\"": \""17%\""}",48183,1,"""North America""" +2024-02-27,12268,3765,"[\""Keyboard\"", \""Tablet\""]",2450.69,{},89851,0,"""Africa""" +2024-09-25,12269,8215,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",837.54,"{\""loyalty\"": \""26%\""}",48150,0,"""Europe""" +2023-12-25,12270,6331,"[\""Tablet\""]",3084.34,"{\""seasonal\"": \""10%\""}",117072,0,"""North America""" +2024-12-03,12271,9398,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3620.97,{},36955,1,"""Africa""" +2024-06-15,12272,1504,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1790.38,"{\"": \""24%\""}",178839,0,"""South America""" +2023-12-31,12273,7532,"[\""Monitor\"", \""Charger\""]",2811.11,{},251418,1,"""Africa""" +2024-04-07,12274,2470,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2063.16,{},290322,1,"""Asia""" +2024-02-02,12275,3861,"[\""Wireless Mouse\"", \""Monitor\""]",683.71,"{\""loyalty\"": \""8%\""}",25486,0,"""Africa""" +2024-10-12,12276,3406,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2869.33,"{\""loyalty\"": \""20%\""}",190080,1,"""South America""" +2024-02-29,12277,3117,"[\""Tablet\"", \""Monitor\""]",1662.62,"{\""promo\"": \""6%\""}",61323,0,"""Asia""" +2023-04-27,12278,1438,"[\""Keyboard\"", \""Charger\""]",4344.41,{},148429,1,"""Africa""" +2023-10-12,12279,4369,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4450.99,{},260742,1,"""Asia""" +2024-10-12,12280,4714,"[\""Monitor\""]",4249.3,"{\""loyalty\"": \""12%\""}",145638,1,"""North America""" +2024-06-03,12281,8980,"[\""Tablet\"", \""Wireless Mouse\""]",3963.3,{},72964,1,"""North America""" +2024-12-11,12282,4801,"[\""Monitor\"", \""Phone\""]",3496.74,"{\""seasonal\"": \""9%\""}",128463,0,"""North America""" +2023-03-05,12283,8850,"[\""Monitor\"", \""Tablet\""]",1438.95,"{\""promo\"": \""24%\""}",169985,1,"""South America""" +2024-02-17,12284,6669,"[\""Tablet\""]",2144.23,"{\""loyalty\"": \""25%\""}",239223,0,"""South America""" +2024-07-15,12285,2378,"[\""Tablet\"", \""Phone\""]",1806.56,"{\"": \""22%\""}",21863,0,"""Africa""" +2023-02-06,12286,6294,"[\""Wireless Mouse\""]",3850.67,{},102454,1,"""Africa""" +2023-08-14,12287,5563,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",623.4,"{\""seasonal\"": \""14%\""}",97930,1,"""North America""" +2023-09-18,12288,8055,"[\""Tablet\"", \""Phone\""]",3444.37,{},126326,1,"""Europe""" +2024-01-10,12289,2152,"[\""Laptop\"", \""Wireless Mouse\""]",4679.98,"{\"": \""30%\""}",276897,1,"""North America""" +2023-12-20,12290,8955,"[\""Keyboard\""]",4262.07,{},285983,0,"""Africa""" +2023-04-09,12291,5490,"[\""Wireless Mouse\""]",1761.2,{},252054,0,"""South America""" +2024-03-22,12292,1958,"[\""Monitor\"", \""Keyboard\""]",1111.25,{},5598,0,"""Africa""" +2024-09-07,12293,9697,"[\""Wireless Mouse\"", \""Charger\""]",57.32,"{\""promo\"": \""23%\""}",299817,0,"""North America""" +2023-01-08,12294,1543,"[\""Laptop\"", \""Wireless Mouse\""]",4082.39,{},17303,1,"""North America""" +2023-10-28,12295,6672,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2569.96,{},212909,0,"""Africa""" +2023-10-09,12296,2564,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",173.44,{},236077,0,"""Europe""" +2023-09-06,12297,1973,"[\""Wireless Mouse\""]",225.11,{},143905,1,"""Asia""" +2024-07-08,12298,4674,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1244.62,{},232297,0,"""South America""" +2023-02-26,12299,7664,"[\""Tablet\""]",2160.5,"{\""promo\"": \""25%\""}",297311,0,"""North America""" +2024-01-14,12300,6787,"[\""Monitor\"", \""Laptop\""]",3787.66,"{\""promo\"": \""22%\""}",281592,0,"""North America""" +2024-11-23,12301,335,"[\""Charger\"", \""Tablet\""]",820.41,"{\""seasonal\"": \""6%\""}",21172,1,"""South America""" +2023-03-04,12302,2640,"[\""Charger\"", \""Keyboard\""]",2744.7,{},288918,1,"""North America""" +2023-08-23,12303,1915,"[\""Monitor\""]",1218.39,{},213563,0,"""South America""" +2023-08-08,12304,7919,"[\""Keyboard\"", \""Tablet\""]",263.79,"{\""loyalty\"": \""14%\""}",60264,1,"""Asia""" +2024-09-22,12305,652,"[\""Monitor\""]",1301.55,"{\""seasonal\"": \""16%\""}",212935,1,"""South America""" +2023-10-25,12306,5114,"[\""Headphones\""]",2567.43,{},200015,0,"""Asia""" +2024-09-06,12307,5782,"[\""Phone\"", \""Keyboard\""]",185.19,{},188618,1,"""South America""" +2024-09-20,12308,3913,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1275.09,{},99844,1,"""North America""" +2023-10-03,12309,8037,"[\""Wireless Mouse\""]",835.7,{},222914,1,"""Africa""" +2024-01-22,12310,6519,"[\""Charger\"", \""Headphones\""]",3923.25,{},233383,0,"""North America""" +2023-07-20,12311,6081,"[\""Charger\"", \""Phone\""]",4259.95,"{\""seasonal\"": \""21%\""}",196609,1,"""North America""" +2023-06-16,12312,7181,"[\""Headphones\""]",4379.79,{},144660,0,"""Europe""" +2024-12-25,12313,3350,"[\""Tablet\""]",445.11,"{\"": \""18%\""}",10018,0,"""Europe""" +2023-09-22,12314,7499,"[\""Charger\"", \""Tablet\""]",2235.01,"{\"": \""6%\""}",30979,0,"""Europe""" +2023-09-09,12315,525,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2875.46,"{\"": \""22%\""}",236750,1,"""North America""" +2023-12-29,12316,4573,"[\""Wireless Mouse\""]",1174.94,{},299593,1,"""South America""" +2023-12-13,12317,5686,"[\""Laptop\"", \""Wireless Mouse\""]",3714.12,"{\""loyalty\"": \""17%\""}",233696,0,"""Europe""" +2024-06-12,12318,2218,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4719.96,{},39313,0,"""North America""" +2023-06-27,12319,8079,"[\""Laptop\""]",1060.74,"{\""loyalty\"": \""7%\""}",276320,0,"""Africa""" +2024-05-08,12320,5581,"[\""Wireless Mouse\"", \""Charger\""]",2518.24,{},144647,1,"""Africa""" +2023-05-28,12321,3786,"[\""Headphones\"", \""Charger\""]",3767.94,"{\""loyalty\"": \""13%\""}",248773,0,"""Asia""" +2024-06-30,12322,9979,"[\""Laptop\"", \""Phone\""]",3402.05,"{\"": \""5%\""}",69596,1,"""North America""" +2024-08-13,12323,3791,"[\""Wireless Mouse\""]",3398.7,{},158245,0,"""Asia""" +2023-05-31,12324,3839,"[\""Charger\""]",4808.0,{},112220,1,"""South America""" +2024-03-08,12325,1996,"[\""Monitor\"", \""Wireless Mouse\""]",123.4,{},74502,1,"""Africa""" +2023-04-12,12326,4446,"[\""Wireless Mouse\""]",1448.93,"{\""seasonal\"": \""25%\""}",117366,0,"""North America""" +2023-04-22,12327,4303,"[\""Keyboard\""]",2850.38,{},292141,0,"""Europe""" +2023-04-24,12328,6000,"[\""Monitor\""]",3885.49,{},105610,1,"""Europe""" +2023-10-15,12329,8984,"[\""Wireless Mouse\""]",3926.31,{},293027,0,"""Europe""" +2023-02-19,12330,7152,"[\""Charger\""]",894.5,{},66926,0,"""North America""" +2023-11-01,12331,7548,"[\""Monitor\""]",1446.59,"{\""loyalty\"": \""14%\""}",86495,1,"""Europe""" +2023-09-26,12332,5186,"[\""Monitor\"", \""Phone\""]",1720.01,"{\""promo\"": \""5%\""}",259780,0,"""North America""" +2023-11-04,12333,5546,"[\""Wireless Mouse\"", \""Charger\""]",1012.96,{},206388,1,"""South America""" +2024-01-01,12334,4037,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",442.63,"{\""promo\"": \""10%\""}",113748,1,"""South America""" +2024-04-30,12335,455,"[\""Wireless Mouse\""]",4351.38,{},111632,0,"""North America""" +2024-03-07,12336,275,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2127.86,{},110383,0,"""Asia""" +2023-05-22,12337,5155,"[\""Keyboard\"", \""Phone\""]",4752.2,"{\"": \""22%\""}",295642,0,"""Asia""" +2024-05-03,12338,711,"[\""Monitor\""]",4264.74,"{\""loyalty\"": \""20%\""}",270068,0,"""Europe""" +2024-09-19,12339,3339,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2984.78,{},12756,0,"""Africa""" +2024-05-23,12340,6898,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2189.39,{},170673,0,"""Europe""" +2023-10-24,12341,728,"[\""Keyboard\""]",1303.76,{},135091,0,"""Europe""" +2023-08-31,12342,4263,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1665.97,"{\""loyalty\"": \""5%\""}",121187,1,"""South America""" +2023-10-29,12343,2681,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2246.92,"{\""loyalty\"": \""11%\""}",262659,0,"""Asia""" +2024-03-21,12344,8095,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",796.31,"{\"": \""12%\""}",289296,0,"""North America""" +2023-07-19,12345,6852,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4554.31,{},91692,1,"""Asia""" +2024-04-07,12346,1489,"[\""Laptop\"", \""Headphones\""]",2856.66,"{\""seasonal\"": \""10%\""}",209459,1,"""Asia""" +2023-03-18,12347,1970,"[\""Phone\""]",670.57,"{\""loyalty\"": \""5%\""}",170959,1,"""Europe""" +2023-11-13,12348,8712,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2241.6,{},192986,0,"""Europe""" +2023-08-14,12349,4864,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2086.16,"{\"": \""20%\""}",169518,1,"""North America""" +2024-11-10,12350,8209,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4637.56,{},94225,1,"""Asia""" +2024-11-29,12351,1766,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",305.17,{},8540,1,"""Asia""" +2024-06-10,12352,7448,"[\""Headphones\""]",4217.51,{},154541,0,"""Africa""" +2024-07-23,12353,769,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2227.53,{},60524,1,"""South America""" +2023-07-15,12354,3346,"[\""Keyboard\""]",4745.16,"{\""promo\"": \""29%\""}",268624,0,"""Asia""" +2023-08-31,12355,5919,"[\""Wireless Mouse\"", \""Laptop\""]",2471.64,"{\""loyalty\"": \""29%\""}",275136,1,"""Europe""" +2024-03-07,12356,6447,"[\""Phone\""]",1415.83,"{\"": \""6%\""}",172240,0,"""Asia""" +2024-01-21,12357,2551,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3261.67,{},170511,0,"""North America""" +2024-11-20,12358,3885,"[\""Keyboard\"", \""Tablet\""]",87.85,{},23917,1,"""South America""" +2023-12-27,12359,7329,"[\""Phone\"", \""Monitor\""]",3311.18,"{\"": \""29%\""}",222883,1,"""Africa""" +2024-11-26,12360,8730,"[\""Phone\""]",4956.43,"{\""loyalty\"": \""28%\""}",107121,1,"""South America""" +2023-12-16,12361,4589,"[\""Keyboard\"", \""Tablet\""]",1514.26,"{\""seasonal\"": \""6%\""}",149543,0,"""Asia""" +2023-10-29,12362,8320,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",585.55,{},160674,0,"""North America""" +2023-11-25,12363,2636,"[\""Laptop\""]",366.02,{},167990,0,"""Europe""" +2023-12-30,12364,2831,"[\""Keyboard\""]",3991.76,"{\""loyalty\"": \""10%\""}",128772,0,"""Asia""" +2024-06-23,12365,285,"[\""Phone\""]",4285.52,"{\"": \""28%\""}",168314,1,"""Europe""" +2023-05-17,12366,1939,"[\""Laptop\"", \""Phone\""]",4733.23,"{\""loyalty\"": \""30%\""}",260848,1,"""Asia""" +2023-01-18,12367,5435,"[\""Monitor\""]",3152.86,{},282076,1,"""Europe""" +2024-01-19,12368,3368,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3861.36,"{\""seasonal\"": \""16%\""}",274574,1,"""Asia""" +2024-11-03,12369,2643,"[\""Tablet\"", \""Charger\""]",808.83,"{\""seasonal\"": \""23%\""}",37437,1,"""South America""" +2024-07-27,12370,5434,"[\""Phone\""]",3876.37,"{\""promo\"": \""20%\""}",294632,1,"""North America""" +2024-09-14,12371,9108,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3974.87,"{\""promo\"": \""11%\""}",130158,0,"""Asia""" +2024-10-01,12372,4520,"[\""Keyboard\""]",3392.48,{},160120,0,"""Africa""" +2023-05-09,12373,7069,"[\""Wireless Mouse\""]",410.93,{},219728,1,"""Asia""" +2024-02-29,12374,4271,"[\""Monitor\"", \""Keyboard\""]",4744.23,{},49964,0,"""Europe""" +2024-05-23,12375,7682,"[\""Monitor\"", \""Tablet\""]",4811.39,{},108612,1,"""South America""" +2023-10-19,12376,1324,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1636.4,"{\""loyalty\"": \""21%\""}",131883,1,"""North America""" +2024-05-09,12377,2381,"[\""Monitor\"", \""Phone\""]",3619.28,"{\""loyalty\"": \""19%\""}",283201,0,"""North America""" +2023-04-27,12378,6522,"[\""Tablet\"", \""Charger\""]",4720.85,{},246419,0,"""Africa""" +2024-07-20,12379,3090,"[\""Charger\""]",2474.46,"{\""promo\"": \""10%\""}",289309,1,"""North America""" +2024-03-22,12380,593,"[\""Tablet\"", \""Charger\""]",2214.84,{},99891,1,"""South America""" +2023-12-19,12381,8796,"[\""Phone\""]",2560.86,"{\""seasonal\"": \""5%\""}",249220,0,"""Europe""" +2023-07-16,12382,2587,"[\""Monitor\""]",331.61,{},14875,1,"""South America""" +2024-02-23,12383,2661,"[\""Laptop\""]",806.11,{},253604,0,"""South America""" +2024-06-03,12384,5519,"[\""Monitor\"", \""Wireless Mouse\""]",888.27,{},185448,0,"""Africa""" +2024-08-17,12385,8192,"[\""Phone\"", \""Wireless Mouse\""]",2518.14,{},107467,0,"""Europe""" +2024-08-30,12386,2817,"[\""Keyboard\"", \""Wireless Mouse\""]",1421.4,{},51687,0,"""Europe""" +2023-11-29,12387,9479,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",869.82,"{\"": \""8%\""}",28621,1,"""North America""" +2024-06-02,12388,3756,"[\""Charger\"", \""Headphones\""]",4399.45,"{\""loyalty\"": \""21%\""}",291870,1,"""Asia""" +2024-02-25,12389,9855,"[\""Tablet\"", \""Headphones\""]",541.02,"{\""seasonal\"": \""9%\""}",159976,1,"""North America""" +2023-02-01,12390,972,"[\""Keyboard\""]",704.64,"{\""seasonal\"": \""24%\""}",134000,0,"""South America""" +2023-02-05,12391,1118,"[\""Wireless Mouse\""]",801.78,{},275619,0,"""South America""" +2024-12-12,12392,972,"[\""Phone\""]",1504.04,"{\""seasonal\"": \""8%\""}",45519,0,"""Asia""" +2024-12-14,12393,4058,"[\""Tablet\""]",2386.72,"{\""promo\"": \""8%\""}",271718,0,"""South America""" +2023-07-06,12394,5288,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",769.82,{},96870,1,"""Africa""" +2023-05-13,12395,7574,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4003.57,"{\""loyalty\"": \""24%\""}",34117,0,"""North America""" +2023-06-23,12396,2301,"[\""Charger\""]",1062.38,"{\""loyalty\"": \""18%\""}",167643,0,"""South America""" +2024-11-02,12397,8004,"[\""Monitor\""]",1741.18,"{\""seasonal\"": \""22%\""}",297392,1,"""Asia""" +2024-05-30,12398,687,"[\""Tablet\""]",3787.03,"{\""loyalty\"": \""28%\""}",218413,1,"""Europe""" +2023-05-11,12399,2402,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3586.46,{},118038,1,"""North America""" +2023-03-03,12400,836,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1387.54,{},210429,1,"""Europe""" +2023-09-11,12401,2080,"[\""Tablet\"", \""Headphones\""]",3488.33,"{\""promo\"": \""9%\""}",298824,1,"""South America""" +2024-05-29,12402,6699,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1833.26,{},156475,1,"""Asia""" +2023-11-21,12403,6683,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4245.48,"{\"": \""23%\""}",245222,1,"""Asia""" +2023-06-09,12404,1659,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1358.22,"{\""seasonal\"": \""10%\""}",197589,0,"""South America""" +2024-03-26,12405,107,"[\""Monitor\"", \""Charger\""]",399.6,"{\""promo\"": \""22%\""}",23636,0,"""North America""" +2023-05-02,12406,1718,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3753.07,{},157034,0,"""North America""" +2024-09-21,12407,9250,"[\""Charger\"", \""Laptop\""]",815.85,{},1486,0,"""Europe""" +2024-09-26,12408,7377,"[\""Charger\""]",4317.16,{},202298,0,"""Asia""" +2023-06-12,12409,6094,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3502.81,{},180377,1,"""Africa""" +2024-09-16,12410,6035,"[\""Headphones\"", \""Keyboard\""]",2471.07,"{\"": \""6%\""}",169513,1,"""Africa""" +2023-10-23,12411,8573,"[\""Phone\""]",4186.9,{},119367,0,"""Asia""" +2024-07-14,12412,8824,"[\""Phone\""]",4662.15,{},3745,1,"""Asia""" +2024-05-24,12413,3119,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3485.9,"{\""loyalty\"": \""24%\""}",118058,0,"""Europe""" +2023-08-17,12414,2543,"[\""Charger\""]",319.47,{},9642,1,"""Africa""" +2024-03-09,12415,5566,"[\""Keyboard\""]",3190.66,{},107130,0,"""North America""" +2023-04-11,12416,1047,"[\""Monitor\""]",3139.63,{},81184,0,"""Asia""" +2023-08-03,12417,6995,"[\""Tablet\"", \""Monitor\""]",208.07,"{\""seasonal\"": \""20%\""}",124283,1,"""Asia""" +2024-12-23,12418,1711,"[\""Monitor\"", \""Wireless Mouse\""]",3143.08,"{\""promo\"": \""6%\""}",225791,0,"""North America""" +2023-04-27,12419,4682,"[\""Keyboard\""]",3588.45,"{\""seasonal\"": \""29%\""}",250754,1,"""South America""" +2023-06-28,12420,2027,"[\""Wireless Mouse\""]",4004.8,{},216224,1,"""South America""" +2024-06-07,12421,8118,"[\""Wireless Mouse\""]",2241.68,"{\""promo\"": \""25%\""}",190785,0,"""Europe""" +2024-09-25,12422,8329,"[\""Keyboard\""]",1638.23,"{\"": \""12%\""}",91609,0,"""Africa""" +2023-12-13,12423,5113,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1452.2,"{\"": \""8%\""}",238772,0,"""Asia""" +2024-10-29,12424,8633,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2255.34,"{\""loyalty\"": \""27%\""}",17377,1,"""Africa""" +2023-10-22,12425,7658,"[\""Wireless Mouse\""]",2022.29,{},281948,1,"""Africa""" +2024-10-02,12426,3573,"[\""Monitor\""]",3871.57,"{\""loyalty\"": \""30%\""}",140681,1,"""Africa""" +2023-07-12,12427,952,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",220.1,{},231779,1,"""Africa""" +2023-04-26,12428,4083,"[\""Tablet\"", \""Keyboard\""]",4081.48,{},289512,0,"""Africa""" +2024-02-25,12429,1743,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",645.28,"{\""loyalty\"": \""15%\""}",189203,1,"""Asia""" +2023-02-02,12430,7702,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",933.55,{},143704,1,"""North America""" +2023-09-29,12431,8294,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",999.0,"{\""loyalty\"": \""12%\""}",156591,0,"""South America""" +2023-03-17,12432,2831,"[\""Charger\"", \""Laptop\""]",383.59,{},267915,1,"""North America""" +2023-07-11,12433,4899,"[\""Charger\""]",4025.27,"{\""loyalty\"": \""18%\""}",60147,0,"""South America""" +2023-07-14,12434,3434,"[\""Wireless Mouse\""]",4357.1,{},283024,1,"""Asia""" +2023-12-28,12435,3652,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1571.91,{},186836,0,"""Africa""" +2023-02-17,12436,4019,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3163.89,"{\""loyalty\"": \""28%\""}",30193,0,"""North America""" +2023-10-18,12437,789,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",919.75,"{\"": \""24%\""}",38836,1,"""Asia""" +2024-01-16,12438,3916,"[\""Charger\"", \""Monitor\""]",2279.73,{},101682,1,"""Europe""" +2023-02-01,12439,4660,"[\""Laptop\""]",1937.4,{},96132,0,"""Asia""" +2023-03-08,12440,9954,"[\""Charger\"", \""Wireless Mouse\""]",614.5,"{\""seasonal\"": \""18%\""}",238638,0,"""Europe""" +2024-04-17,12441,4565,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4030.38,{},283353,1,"""Africa""" +2023-02-20,12442,7134,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1736.37,"{\""loyalty\"": \""13%\""}",99441,0,"""Asia""" +2024-09-07,12443,7375,"[\""Headphones\"", \""Laptop\""]",2686.46,{},86876,0,"""Asia""" +2024-11-12,12444,1356,"[\""Charger\"", \""Wireless Mouse\""]",4811.3,"{\""seasonal\"": \""28%\""}",236137,1,"""South America""" +2024-09-12,12445,5253,"[\""Tablet\"", \""Wireless Mouse\""]",962.6,{},10058,0,"""Africa""" +2023-11-18,12446,5638,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",544.32,{},234653,0,"""Europe""" +2023-10-03,12447,9092,"[\""Laptop\""]",1774.67,{},8530,0,"""South America""" +2023-01-25,12448,9853,"[\""Tablet\"", \""Monitor\""]",436.7,"{\""seasonal\"": \""27%\""}",169000,0,"""South America""" +2023-09-28,12449,6493,"[\""Monitor\""]",1051.87,{},21921,1,"""South America""" +2023-02-01,12450,8452,"[\""Wireless Mouse\""]",766.01,{},238130,1,"""Asia""" +2023-06-18,12451,4127,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",737.87,"{\""loyalty\"": \""15%\""}",295730,0,"""North America""" +2024-01-11,12452,1866,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2865.21,"{\""seasonal\"": \""6%\""}",63984,0,"""Asia""" +2024-06-30,12453,6348,"[\""Keyboard\"", \""Monitor\""]",2712.83,{},75174,0,"""Europe""" +2024-09-14,12454,8361,"[\""Wireless Mouse\"", \""Headphones\""]",4512.01,{},158678,1,"""North America""" +2024-01-03,12455,7673,"[\""Wireless Mouse\"", \""Keyboard\""]",4587.84,{},67665,0,"""North America""" +2024-07-14,12456,5026,"[\""Monitor\""]",4827.13,{},50872,1,"""Africa""" +2023-06-05,12457,3861,"[\""Laptop\"", \""Tablet\""]",2232.21,"{\""loyalty\"": \""23%\""}",297810,0,"""South America""" +2023-01-21,12458,4908,"[\""Phone\"", \""Headphones\""]",1221.98,"{\""promo\"": \""7%\""}",125077,1,"""Europe""" +2024-09-20,12459,6373,"[\""Tablet\""]",1859.76,{},205839,0,"""North America""" +2024-08-01,12460,5088,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1223.63,{},11817,0,"""Africa""" +2024-09-24,12461,6638,"[\""Laptop\""]",2630.65,{},97863,0,"""North America""" +2023-02-20,12462,7613,"[\""Charger\""]",3454.56,"{\""promo\"": \""26%\""}",1037,0,"""North America""" +2023-10-24,12463,1684,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1137.73,{},212467,0,"""Europe""" +2023-03-15,12464,4554,"[\""Monitor\"", \""Charger\""]",3654.78,{},265577,1,"""Africa""" +2024-06-05,12465,3101,"[\""Charger\"", \""Phone\""]",3377.66,{},24342,0,"""North America""" +2024-07-13,12466,6671,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3432.36,"{\"": \""8%\""}",204612,1,"""Africa""" +2024-07-04,12467,4907,"[\""Wireless Mouse\"", \""Headphones\""]",4865.42,"{\""loyalty\"": \""8%\""}",268681,1,"""South America""" +2024-08-10,12468,3181,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4447.7,{},108402,0,"""Asia""" +2023-08-03,12469,8144,"[\""Wireless Mouse\"", \""Laptop\""]",1652.69,{},227857,0,"""Asia""" +2023-06-16,12470,4967,"[\""Charger\""]",1538.79,{},84022,1,"""Africa""" +2023-07-23,12471,7330,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",769.7,"{\"": \""19%\""}",208029,0,"""Africa""" +2024-04-04,12472,5777,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4494.78,"{\"": \""12%\""}",109876,0,"""North America""" +2023-02-17,12473,545,"[\""Keyboard\""]",3180.78,"{\""loyalty\"": \""27%\""}",124077,0,"""Europe""" +2023-10-13,12474,5649,"[\""Wireless Mouse\""]",4884.34,"{\""seasonal\"": \""28%\""}",105192,1,"""South America""" +2024-01-21,12475,6155,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1700.6,"{\"": \""14%\""}",62600,0,"""Africa""" +2024-03-23,12476,2323,"[\""Laptop\""]",3179.98,{},69568,1,"""Africa""" +2024-08-26,12477,3188,"[\""Phone\"", \""Laptop\""]",4734.25,"{\"": \""24%\""}",129025,1,"""Asia""" +2023-07-06,12478,7651,"[\""Monitor\"", \""Wireless Mouse\""]",2865.59,"{\""promo\"": \""13%\""}",19869,1,"""Asia""" +2023-04-15,12479,5549,"[\""Headphones\""]",4870.61,{},115289,1,"""Asia""" +2023-03-12,12480,725,"[\""Phone\""]",1222.22,"{\""seasonal\"": \""14%\""}",153951,1,"""North America""" +2024-03-20,12481,6401,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3525.64,{},66666,1,"""Asia""" +2023-10-14,12482,35,"[\""Wireless Mouse\"", \""Laptop\""]",4956.28,"{\""loyalty\"": \""18%\""}",62294,1,"""Africa""" +2023-10-31,12483,6618,"[\""Headphones\""]",479.65,{},101999,1,"""Africa""" +2023-07-16,12484,2146,"[\""Monitor\"", \""Phone\""]",2994.66,"{\""promo\"": \""5%\""}",212901,1,"""Europe""" +2024-10-21,12485,2488,"[\""Headphones\""]",453.12,{},38550,1,"""South America""" +2024-02-05,12486,4322,"[\""Tablet\"", \""Charger\""]",3370.17,{},259895,1,"""South America""" +2024-01-09,12487,7147,"[\""Tablet\"", \""Headphones\""]",937.89,{},98071,0,"""South America""" +2024-07-29,12488,4815,"[\""Phone\""]",4977.27,{},264796,1,"""South America""" +2024-07-15,12489,7788,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4919.43,{},235541,0,"""Europe""" +2024-09-12,12490,6192,"[\""Headphones\""]",4537.64,"{\""seasonal\"": \""23%\""}",176994,0,"""Africa""" +2024-11-06,12491,9577,"[\""Monitor\""]",1948.66,{},105927,1,"""Europe""" +2023-05-05,12492,539,"[\""Laptop\""]",4118.51,"{\"": \""26%\""}",127339,1,"""North America""" +2023-07-18,12493,9867,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3351.45,"{\"": \""5%\""}",200901,1,"""South America""" +2024-12-23,12494,3376,"[\""Phone\""]",2708.22,{},233777,1,"""North America""" +2023-09-25,12495,4702,"[\""Wireless Mouse\""]",1053.06,{},92474,0,"""Asia""" +2024-12-01,12496,6996,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3487.62,"{\""seasonal\"": \""20%\""}",187963,0,"""South America""" +2024-05-08,12497,9245,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4926.1,{},151522,1,"""South America""" +2023-05-13,12498,8590,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2919.79,"{\"": \""10%\""}",285066,0,"""Africa""" +2023-09-07,12499,2691,"[\""Keyboard\""]",2756.45,{},50268,1,"""South America""" +2024-09-30,12500,8711,"[\""Laptop\""]",4207.59,"{\""promo\"": \""10%\""}",259920,0,"""Asia""" +2024-05-24,12501,6619,"[\""Monitor\"", \""Laptop\""]",216.38,{},6953,0,"""Europe""" +2024-11-22,12502,6626,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",105.79,"{\""seasonal\"": \""18%\""}",295219,1,"""Africa""" +2023-02-16,12503,1150,"[\""Keyboard\"", \""Laptop\""]",51.63,{},28492,0,"""South America""" +2023-12-13,12504,3498,"[\""Keyboard\""]",844.04,{},248994,1,"""Asia""" +2023-03-21,12505,6659,"[\""Laptop\""]",201.24,{},228052,0,"""South America""" +2024-10-09,12506,217,"[\""Keyboard\""]",2464.76,{},22717,1,"""North America""" +2023-09-04,12507,5043,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4842.0,{},299009,1,"""Asia""" +2024-11-17,12508,8886,"[\""Wireless Mouse\"", \""Laptop\""]",4680.13,{},155050,0,"""Europe""" +2024-08-29,12509,7352,"[\""Wireless Mouse\""]",1194.61,{},275764,1,"""Africa""" +2023-09-16,12510,7556,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",345.14,{},164323,1,"""South America""" +2023-04-14,12511,2781,"[\""Laptop\""]",2879.36,{},299025,0,"""Asia""" +2024-10-04,12512,2949,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1173.48,"{\"": \""14%\""}",286801,1,"""North America""" +2024-02-26,12513,6403,"[\""Phone\"", \""Keyboard\""]",1242.83,"{\""promo\"": \""27%\""}",167725,0,"""Africa""" +2023-02-13,12514,5866,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2163.51,{},48987,0,"""Africa""" +2023-05-11,12515,367,"[\""Laptop\""]",4878.73,"{\""seasonal\"": \""24%\""}",271905,0,"""Europe""" +2024-12-18,12516,8664,"[\""Charger\""]",2525.52,"{\""seasonal\"": \""29%\""}",70920,0,"""Africa""" +2023-10-08,12517,2427,"[\""Monitor\""]",118.14,"{\""promo\"": \""17%\""}",291289,0,"""North America""" +2023-08-02,12518,8756,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2400.83,"{\""promo\"": \""28%\""}",118330,0,"""Asia""" +2024-01-06,12519,9059,"[\""Keyboard\""]",2243.8,"{\""loyalty\"": \""22%\""}",220683,1,"""South America""" +2023-04-04,12520,989,"[\""Tablet\"", \""Wireless Mouse\""]",688.46,{},126994,1,"""South America""" +2023-11-16,12521,8702,"[\""Tablet\""]",1484.68,"{\"": \""15%\""}",148538,1,"""Asia""" +2023-05-01,12522,1445,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",332.84,"{\""promo\"": \""8%\""}",218132,0,"""Europe""" +2023-12-23,12523,5830,"[\""Monitor\"", \""Phone\""]",1946.52,"{\""seasonal\"": \""29%\""}",28890,1,"""Europe""" +2023-07-30,12524,9678,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3676.88,"{\""loyalty\"": \""10%\""}",142700,1,"""North America""" +2024-03-13,12525,9474,"[\""Charger\""]",3481.82,"{\""promo\"": \""30%\""}",2956,1,"""Asia""" +2024-05-29,12526,9380,"[\""Laptop\"", \""Tablet\""]",1320.33,{},6487,0,"""Africa""" +2023-05-09,12527,4683,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3837.44,"{\""seasonal\"": \""21%\""}",178293,1,"""South America""" +2023-03-17,12528,1215,"[\""Phone\""]",4959.23,"{\""loyalty\"": \""25%\""}",129580,0,"""North America""" +2023-07-17,12529,6051,"[\""Phone\"", \""Charger\""]",3415.75,"{\"": \""29%\""}",195531,1,"""Asia""" +2024-12-22,12530,8248,"[\""Keyboard\""]",2094.27,"{\""seasonal\"": \""7%\""}",148883,1,"""Asia""" +2023-10-26,12531,2060,"[\""Headphones\""]",4654.27,"{\"": \""6%\""}",262984,1,"""North America""" +2023-12-25,12532,5247,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2029.67,{},76175,0,"""Europe""" +2023-08-11,12533,6473,"[\""Monitor\""]",447.61,"{\""loyalty\"": \""15%\""}",244621,0,"""North America""" +2024-05-26,12534,878,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1283.63,{},47400,1,"""Asia""" +2024-01-15,12535,8249,"[\""Headphones\""]",3818.36,{},29994,0,"""Africa""" +2023-08-26,12536,9028,"[\""Monitor\"", \""Keyboard\""]",2716.59,{},281171,1,"""Africa""" +2023-08-27,12537,4501,"[\""Tablet\""]",4894.28,"{\"": \""26%\""}",35047,1,"""Africa""" +2024-12-08,12538,5643,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2728.13,{},97102,1,"""South America""" +2023-06-09,12539,2861,"[\""Charger\"", \""Wireless Mouse\""]",1763.22,"{\""seasonal\"": \""27%\""}",293745,0,"""Asia""" +2024-07-26,12540,2013,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3677.15,{},256761,1,"""South America""" +2024-02-19,12541,1510,"[\""Monitor\"", \""Charger\""]",1389.3,"{\""promo\"": \""22%\""}",195216,0,"""Europe""" +2024-12-15,12542,1516,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2485.88,{},287389,0,"""Europe""" +2023-09-18,12543,9447,"[\""Headphones\""]",2458.75,{},200636,1,"""Europe""" +2023-09-23,12544,2112,"[\""Tablet\"", \""Laptop\""]",1499.12,"{\"": \""30%\""}",48147,1,"""North America""" +2024-06-20,12545,8051,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1523.87,"{\""seasonal\"": \""14%\""}",231291,1,"""Asia""" +2023-01-10,12546,9159,"[\""Headphones\"", \""Phone\""]",567.91,{},21272,1,"""South America""" +2024-09-11,12547,8505,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1551.0,{},28180,1,"""Europe""" +2023-05-07,12548,6183,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",445.42,"{\""seasonal\"": \""5%\""}",279047,1,"""Africa""" +2024-02-28,12549,2552,"[\""Keyboard\""]",2221.79,{},223373,1,"""Africa""" +2024-06-21,12550,5564,"[\""Tablet\""]",294.76,{},144662,1,"""Africa""" +2023-08-03,12551,8961,"[\""Charger\""]",4909.36,{},264152,1,"""South America""" +2024-09-08,12552,8237,"[\""Charger\"", \""Headphones\""]",2291.02,"{\""seasonal\"": \""30%\""}",36060,0,"""Africa""" +2023-10-06,12553,4177,"[\""Laptop\"", \""Monitor\""]",1678.98,{},184964,0,"""Asia""" +2024-06-17,12554,1685,"[\""Tablet\"", \""Monitor\""]",2804.68,{},209972,1,"""Africa""" +2023-03-25,12555,8353,"[\""Phone\"", \""Monitor\""]",547.01,{},199354,0,"""Europe""" +2024-12-13,12556,6165,"[\""Monitor\"", \""Wireless Mouse\""]",4593.31,{},200056,1,"""Asia""" +2024-02-09,12557,6576,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4494.24,"{\""promo\"": \""12%\""}",40190,1,"""North America""" +2023-01-16,12558,8116,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2765.67,"{\""promo\"": \""9%\""}",140454,0,"""North America""" +2024-06-04,12559,8336,"[\""Phone\"", \""Monitor\"", \""Charger\""]",192.69,{},207457,1,"""Europe""" +2024-06-21,12560,6542,"[\""Tablet\""]",3215.13,{},139575,1,"""Africa""" +2023-03-19,12561,2808,"[\""Wireless Mouse\"", \""Headphones\""]",3678.82,"{\""loyalty\"": \""20%\""}",278815,1,"""North America""" +2023-06-29,12562,8085,"[\""Charger\"", \""Phone\""]",813.08,"{\""seasonal\"": \""29%\""}",141237,0,"""Europe""" +2023-05-31,12563,4079,"[\""Keyboard\""]",2972.72,{},47428,1,"""Europe""" +2024-04-09,12564,780,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1270.56,{},224990,1,"""Asia""" +2024-06-21,12565,937,"[\""Wireless Mouse\""]",3404.73,"{\"": \""11%\""}",84716,0,"""South America""" +2023-09-17,12566,6107,"[\""Keyboard\"", \""Headphones\""]",1281.47,{},146899,0,"""South America""" +2024-06-02,12567,2563,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3525.83,{},278519,1,"""Africa""" +2024-09-23,12568,7151,"[\""Headphones\""]",3133.27,"{\""seasonal\"": \""13%\""}",50826,0,"""Europe""" +2023-11-15,12569,5264,"[\""Laptop\"", \""Charger\""]",97.1,"{\""loyalty\"": \""28%\""}",61279,0,"""Europe""" +2023-04-18,12570,9314,"[\""Wireless Mouse\"", \""Laptop\""]",3449.14,{},23121,0,"""Asia""" +2024-07-21,12571,8660,"[\""Keyboard\"", \""Wireless Mouse\""]",975.48,{},74379,0,"""Europe""" +2024-05-24,12572,8752,"[\""Phone\"", \""Tablet\""]",1075.29,{},212891,0,"""North America""" +2023-09-01,12573,4682,"[\""Charger\"", \""Keyboard\""]",809.45,{},244006,1,"""South America""" +2023-06-18,12574,6260,"[\""Wireless Mouse\"", \""Laptop\""]",2239.07,"{\""seasonal\"": \""12%\""}",233832,1,"""Africa""" +2024-11-26,12575,8898,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1154.8,"{\"": \""14%\""}",138107,0,"""South America""" +2023-11-23,12576,6513,"[\""Wireless Mouse\""]",764.77,{},131926,0,"""South America""" +2023-11-11,12577,7968,"[\""Charger\""]",3009.92,{},273630,0,"""Europe""" +2024-04-13,12578,7625,"[\""Charger\"", \""Tablet\""]",2589.57,"{\"": \""16%\""}",154864,1,"""Asia""" +2024-07-01,12579,2497,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1442.68,"{\"": \""7%\""}",84213,0,"""Africa""" +2023-03-16,12580,7908,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3486.36,{},167077,1,"""South America""" +2024-08-31,12581,9183,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4094.73,{},38722,0,"""South America""" +2024-09-28,12582,3053,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3482.82,"{\""promo\"": \""20%\""}",241792,0,"""Europe""" +2024-07-13,12583,4991,"[\""Tablet\""]",290.8,{},82704,1,"""South America""" +2023-11-03,12584,4018,"[\""Keyboard\"", \""Laptop\""]",3087.19,{},170298,1,"""Asia""" +2024-05-01,12585,9697,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",963.1,{},220884,0,"""North America""" +2024-05-23,12586,5779,"[\""Laptop\"", \""Keyboard\""]",3501.73,{},142551,1,"""Europe""" +2023-10-29,12587,127,"[\""Laptop\""]",310.97,"{\""seasonal\"": \""11%\""}",24150,1,"""South America""" +2023-06-12,12588,6098,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2864.99,{},214616,0,"""Europe""" +2024-11-29,12589,1347,"[\""Wireless Mouse\""]",1735.82,{},231967,0,"""Africa""" +2023-08-19,12590,1247,"[\""Monitor\"", \""Charger\""]",3101.85,"{\"": \""19%\""}",82480,0,"""Asia""" +2023-09-29,12591,2570,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4124.62,{},159929,1,"""Europe""" +2024-02-23,12592,2597,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4388.29,"{\""seasonal\"": \""20%\""}",17189,0,"""Europe""" +2024-03-11,12593,2833,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3540.77,"{\"": \""16%\""}",153604,0,"""South America""" +2024-07-31,12594,1840,"[\""Charger\""]",490.62,"{\""promo\"": \""30%\""}",33827,1,"""North America""" +2023-01-13,12595,117,"[\""Wireless Mouse\""]",3774.52,{},126765,1,"""Asia""" +2023-01-29,12596,8734,"[\""Tablet\""]",3322.79,"{\""seasonal\"": \""18%\""}",136990,0,"""South America""" +2024-05-20,12597,35,"[\""Monitor\""]",1244.04,"{\""seasonal\"": \""15%\""}",22128,0,"""Asia""" +2024-08-09,12598,1084,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4740.27,"{\"": \""14%\""}",8808,0,"""Europe""" +2023-01-25,12599,2003,"[\""Phone\"", \""Monitor\""]",271.44,{},137723,0,"""Europe""" +2024-03-24,12600,27,"[\""Phone\""]",1174.18,"{\""promo\"": \""23%\""}",159513,1,"""Asia""" +2023-06-08,12601,9839,"[\""Wireless Mouse\""]",2204.65,"{\""loyalty\"": \""14%\""}",267716,0,"""South America""" +2023-05-01,12602,4060,"[\""Wireless Mouse\""]",60.93,{},151008,0,"""Europe""" +2023-01-21,12603,9012,"[\""Laptop\""]",2513.43,{},89093,1,"""North America""" +2024-04-22,12604,4923,"[\""Phone\""]",3377.11,"{\""promo\"": \""5%\""}",43360,0,"""Africa""" +2023-11-11,12605,3983,"[\""Wireless Mouse\"", \""Charger\""]",2986.93,{},111584,0,"""Europe""" +2024-11-14,12606,7306,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",607.57,{},126313,0,"""Europe""" +2024-03-10,12607,9070,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4784.4,{},39774,0,"""Europe""" +2024-05-10,12608,6221,"[\""Headphones\"", \""Tablet\""]",4532.1,{},230692,0,"""Africa""" +2024-08-17,12609,8369,"[\""Monitor\""]",1660.66,{},178653,0,"""South America""" +2024-05-27,12610,7275,"[\""Laptop\""]",1095.42,{},242836,1,"""Europe""" +2024-06-29,12611,507,"[\""Wireless Mouse\"", \""Tablet\""]",736.94,{},45965,1,"""South America""" +2024-07-07,12612,1554,"[\""Phone\"", \""Charger\""]",2520.54,{},255785,0,"""South America""" +2023-05-07,12613,1341,"[\""Phone\""]",3466.29,{},76177,1,"""Europe""" +2023-06-24,12614,2714,"[\""Phone\"", \""Laptop\""]",1462.38,{},283693,1,"""Europe""" +2023-05-27,12615,4131,"[\""Headphones\"", \""Tablet\""]",2044.92,{},9655,0,"""South America""" +2023-11-08,12616,2758,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3904.84,"{\""seasonal\"": \""16%\""}",186324,1,"""Europe""" +2023-08-25,12617,3886,"[\""Wireless Mouse\""]",4109.27,"{\""seasonal\"": \""7%\""}",290562,0,"""South America""" +2024-05-18,12618,4253,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",685.76,{},18809,0,"""Africa""" +2023-01-11,12619,747,"[\""Headphones\"", \""Phone\""]",1949.31,{},227253,0,"""Asia""" +2023-09-14,12620,9215,"[\""Headphones\"", \""Charger\""]",2507.24,"{\""promo\"": \""14%\""}",44029,1,"""North America""" +2023-04-12,12621,438,"[\""Wireless Mouse\"", \""Phone\""]",3239.28,"{\""promo\"": \""27%\""}",268890,1,"""Africa""" +2023-05-20,12622,35,"[\""Charger\""]",1702.66,{},139554,1,"""Asia""" +2024-01-05,12623,1997,"[\""Laptop\""]",3446.07,"{\""seasonal\"": \""29%\""}",44229,0,"""Europe""" +2023-10-04,12624,1775,"[\""Phone\"", \""Wireless Mouse\""]",3312.48,{},37704,0,"""South America""" +2023-06-22,12625,6186,"[\""Laptop\"", \""Charger\""]",2894.71,"{\"": \""25%\""}",26255,0,"""Europe""" +2023-03-15,12626,2511,"[\""Laptop\"", \""Headphones\""]",198.76,"{\""promo\"": \""27%\""}",158761,0,"""South America""" +2023-10-06,12627,8640,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1331.9,{},118475,1,"""Africa""" +2023-02-11,12628,460,"[\""Laptop\"", \""Wireless Mouse\""]",1374.29,"{\""loyalty\"": \""11%\""}",195084,1,"""South America""" +2023-03-11,12629,9377,"[\""Monitor\"", \""Wireless Mouse\""]",4003.77,"{\"": \""26%\""}",142897,1,"""South America""" +2024-10-02,12630,200,"[\""Tablet\""]",471.3,{},138521,1,"""Africa""" +2024-03-22,12631,2450,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",993.34,{},1280,0,"""South America""" +2023-08-06,12632,4424,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4527.55,{},256378,0,"""Africa""" +2023-01-12,12633,1842,"[\""Laptop\"", \""Charger\""]",2370.83,"{\""loyalty\"": \""18%\""}",114492,1,"""South America""" +2024-05-19,12634,5908,"[\""Keyboard\"", \""Laptop\""]",2666.25,"{\""seasonal\"": \""22%\""}",127893,1,"""South America""" +2024-10-24,12635,4347,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2214.5,{},278492,1,"""Asia""" +2024-04-03,12636,2457,"[\""Wireless Mouse\"", \""Laptop\""]",1965.06,{},66661,1,"""Asia""" +2023-05-20,12637,3117,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3186.94,{},96221,1,"""South America""" +2024-09-07,12638,2229,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2292.0,"{\""loyalty\"": \""30%\""}",117623,1,"""Asia""" +2024-04-04,12639,6347,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2557.76,{},186500,0,"""South America""" +2024-10-31,12640,6886,"[\""Headphones\""]",3487.23,{},17915,0,"""South America""" +2023-02-08,12641,2446,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4415.24,{},131083,0,"""Europe""" +2024-02-22,12642,1121,"[\""Headphones\"", \""Monitor\""]",3648.99,"{\""promo\"": \""23%\""}",123621,1,"""South America""" +2024-10-19,12643,8856,"[\""Tablet\"", \""Wireless Mouse\""]",4118.88,{},67309,0,"""North America""" +2024-01-28,12644,691,"[\""Tablet\"", \""Headphones\""]",3041.79,"{\""seasonal\"": \""9%\""}",289747,1,"""Europe""" +2024-11-29,12645,3611,"[\""Wireless Mouse\""]",216.74,{},77923,0,"""South America""" +2024-11-02,12646,5478,"[\""Tablet\""]",245.14,{},133884,1,"""Africa""" +2023-04-18,12647,2874,"[\""Charger\""]",2194.37,{},109264,0,"""North America""" +2023-11-21,12648,6409,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3631.51,{},147907,1,"""Asia""" +2024-09-18,12649,359,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3738.37,{},15797,1,"""Africa""" +2024-03-30,12650,2284,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",806.92,{},15685,0,"""Africa""" +2023-12-13,12651,575,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",300.59,{},60918,1,"""North America""" +2024-02-15,12652,6154,"[\""Keyboard\""]",2612.15,{},61468,1,"""North America""" +2023-06-03,12653,3030,"[\""Laptop\"", \""Monitor\""]",2192.89,{},116982,0,"""Asia""" +2024-08-20,12654,666,"[\""Headphones\"", \""Monitor\""]",2919.05,{},20410,0,"""South America""" +2023-05-26,12655,3718,"[\""Keyboard\"", \""Laptop\""]",3372.77,"{\""promo\"": \""25%\""}",209003,0,"""North America""" +2023-10-21,12656,6124,"[\""Keyboard\"", \""Charger\""]",1199.27,{},108561,0,"""South America""" +2023-03-02,12657,5778,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4027.11,"{\""seasonal\"": \""14%\""}",233953,1,"""South America""" +2023-05-11,12658,3026,"[\""Laptop\"", \""Wireless Mouse\""]",335.01,"{\""promo\"": \""18%\""}",21647,1,"""Europe""" +2024-07-21,12659,4655,"[\""Phone\"", \""Wireless Mouse\""]",2557.48,"{\""loyalty\"": \""5%\""}",118803,1,"""North America""" +2023-09-09,12660,156,"[\""Monitor\""]",3088.0,{},188829,0,"""Europe""" +2024-03-02,12661,6449,"[\""Monitor\""]",1664.72,"{\""loyalty\"": \""12%\""}",150804,0,"""Asia""" +2023-09-04,12662,2289,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3810.11,"{\"": \""27%\""}",41500,0,"""North America""" +2024-05-12,12663,2927,"[\""Wireless Mouse\""]",105.31,{},228355,1,"""Asia""" +2024-08-10,12664,9090,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",572.21,"{\""promo\"": \""10%\""}",202607,1,"""Europe""" +2024-02-10,12665,7500,"[\""Keyboard\"", \""Headphones\""]",931.77,"{\""seasonal\"": \""13%\""}",287910,0,"""Asia""" +2024-06-25,12666,7182,"[\""Wireless Mouse\""]",4076.25,{},9492,0,"""Africa""" +2023-05-17,12667,3154,"[\""Headphones\"", \""Wireless Mouse\""]",508.12,{},170856,1,"""North America""" +2024-05-14,12668,9728,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1820.15,{},140746,0,"""Asia""" +2023-08-03,12669,2884,"[\""Phone\"", \""Wireless Mouse\""]",3453.23,"{\"": \""21%\""}",189949,0,"""South America""" +2023-09-23,12670,2794,"[\""Wireless Mouse\""]",4506.62,{},171453,0,"""Europe""" +2024-04-18,12671,5971,"[\""Monitor\"", \""Laptop\""]",3448.71,"{\"": \""24%\""}",107508,1,"""Europe""" +2023-02-02,12672,8406,"[\""Laptop\"", \""Tablet\""]",1057.7,{},216520,0,"""Asia""" +2024-10-13,12673,1113,"[\""Keyboard\"", \""Headphones\""]",2002.48,{},291473,0,"""Europe""" +2023-07-26,12674,3533,"[\""Laptop\"", \""Tablet\""]",2397.74,"{\"": \""17%\""}",190220,0,"""Asia""" +2024-11-02,12675,1650,"[\""Charger\"", \""Tablet\""]",227.12,"{\"": \""23%\""}",80874,1,"""Asia""" +2024-07-21,12676,7163,"[\""Tablet\""]",825.92,{},264167,1,"""Asia""" +2024-01-03,12677,5793,"[\""Phone\""]",1270.07,"{\""loyalty\"": \""25%\""}",223160,0,"""North America""" +2023-11-06,12678,675,"[\""Charger\""]",2683.77,"{\""loyalty\"": \""16%\""}",238065,0,"""Asia""" +2023-04-14,12679,8712,"[\""Tablet\"", \""Keyboard\""]",320.35,{},189514,0,"""South America""" +2024-02-01,12680,6998,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",55.05,"{\""promo\"": \""21%\""}",225993,0,"""North America""" +2023-02-13,12681,4762,"[\""Tablet\"", \""Keyboard\""]",1715.09,{},192817,1,"""North America""" +2023-01-06,12682,5044,"[\""Tablet\""]",615.29,{},185433,0,"""North America""" +2023-05-28,12683,6997,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1584.83,{},203872,1,"""Europe""" +2024-02-11,12684,5331,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",618.98,"{\""loyalty\"": \""13%\""}",71568,1,"""Africa""" +2023-08-18,12685,2010,"[\""Tablet\""]",359.49,"{\""seasonal\"": \""10%\""}",11009,0,"""Africa""" +2024-03-05,12686,5531,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4114.41,{},293680,0,"""Africa""" +2024-11-28,12687,5557,"[\""Phone\"", \""Laptop\""]",53.99,"{\"": \""16%\""}",116934,0,"""South America""" +2024-10-24,12688,5188,"[\""Headphones\"", \""Charger\""]",3074.34,"{\""promo\"": \""22%\""}",192166,1,"""South America""" +2023-03-22,12689,9892,"[\""Keyboard\"", \""Monitor\""]",165.01,"{\"": \""21%\""}",298302,0,"""Asia""" +2024-01-05,12690,2306,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",366.64,"{\"": \""8%\""}",165499,1,"""South America""" +2023-07-09,12691,5485,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2236.81,"{\""promo\"": \""18%\""}",221522,1,"""Asia""" +2023-12-20,12692,7914,"[\""Phone\""]",203.03,{},48529,1,"""South America""" +2023-02-08,12693,2577,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3222.92,{},83770,1,"""Europe""" +2023-07-08,12694,6763,"[\""Tablet\"", \""Monitor\""]",4954.86,"{\""loyalty\"": \""23%\""}",175372,1,"""Africa""" +2023-08-07,12695,5452,"[\""Headphones\""]",4055.9,{},187047,1,"""Asia""" +2024-08-24,12696,4874,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1646.12,{},30926,0,"""Europe""" +2024-04-14,12697,8918,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4080.39,"{\"": \""23%\""}",230352,1,"""South America""" +2024-07-15,12698,9587,"[\""Monitor\"", \""Tablet\""]",404.83,{},286648,1,"""Africa""" +2024-06-22,12699,3062,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",480.68,{},181553,0,"""Europe""" +2024-02-03,12700,2320,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3194.8,{},182094,1,"""North America""" +2024-06-29,12701,2034,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4862.75,"{\"": \""25%\""}",181000,1,"""North America""" +2023-02-11,12702,3965,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",92.63,"{\""promo\"": \""7%\""}",268039,1,"""Africa""" +2024-10-17,12703,8718,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4720.58,{},246817,0,"""Africa""" +2024-05-05,12704,1453,"[\""Wireless Mouse\""]",2833.26,"{\"": \""18%\""}",230571,1,"""North America""" +2024-04-22,12705,8629,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1755.89,"{\""seasonal\"": \""29%\""}",66785,1,"""South America""" +2023-10-03,12706,4471,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",272.67,"{\""promo\"": \""27%\""}",272043,1,"""South America""" +2023-11-10,12707,2526,"[\""Headphones\""]",4530.22,{},77247,1,"""Europe""" +2023-10-30,12708,4524,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4100.15,"{\""seasonal\"": \""18%\""}",82924,0,"""Africa""" +2023-02-06,12709,9833,"[\""Keyboard\""]",1973.87,{},136800,1,"""South America""" +2024-05-05,12710,2436,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4351.15,{},245322,1,"""Africa""" +2024-02-02,12711,8437,"[\""Phone\"", \""Wireless Mouse\""]",4968.61,"{\""seasonal\"": \""27%\""}",154970,1,"""Africa""" +2023-10-17,12712,712,"[\""Phone\"", \""Keyboard\""]",2797.68,"{\""promo\"": \""12%\""}",187795,1,"""North America""" +2023-03-24,12713,979,"[\""Phone\""]",1295.87,"{\""loyalty\"": \""13%\""}",280441,0,"""North America""" +2024-05-12,12714,1572,"[\""Monitor\"", \""Phone\""]",3233.84,{},174598,1,"""North America""" +2023-03-13,12715,5628,"[\""Keyboard\""]",3620.06,"{\"": \""13%\""}",244226,0,"""Africa""" +2023-08-07,12716,7383,"[\""Laptop\"", \""Wireless Mouse\""]",1944.04,"{\"": \""14%\""}",50998,1,"""Africa""" +2023-10-30,12717,2412,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4103.43,"{\""seasonal\"": \""15%\""}",107203,1,"""Asia""" +2023-06-22,12718,760,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3053.33,{},216996,1,"""Europe""" +2023-11-06,12719,3775,"[\""Wireless Mouse\"", \""Laptop\""]",2954.74,"{\"": \""25%\""}",214351,0,"""Europe""" +2023-03-06,12720,1555,"[\""Keyboard\""]",224.06,"{\"": \""10%\""}",143398,0,"""Africa""" +2024-05-14,12721,6552,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4763.11,{},7805,1,"""Africa""" +2024-08-04,12722,314,"[\""Headphones\"", \""Phone\""]",2096.78,{},138747,1,"""Asia""" +2024-02-09,12723,6376,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3394.38,"{\""loyalty\"": \""16%\""}",38527,0,"""North America""" +2024-02-04,12724,7936,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4942.68,{},48502,0,"""Africa""" +2023-03-05,12725,5182,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",315.8,{},142470,0,"""North America""" +2023-06-19,12726,9861,"[\""Charger\""]",3940.52,"{\"": \""24%\""}",209165,1,"""South America""" +2023-12-03,12727,3253,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4500.67,"{\""loyalty\"": \""29%\""}",143622,1,"""Asia""" +2024-11-21,12728,9268,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",246.64,{},261351,1,"""Europe""" +2023-02-06,12729,1706,"[\""Headphones\""]",3322.45,"{\""promo\"": \""23%\""}",210475,1,"""Africa""" +2023-07-02,12730,4697,"[\""Keyboard\""]",107.18,{},206297,1,"""Europe""" +2024-09-06,12731,4553,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2499.01,{},252417,0,"""Europe""" +2023-10-24,12732,4014,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3698.5,"{\""loyalty\"": \""9%\""}",148600,0,"""Asia""" +2024-08-31,12733,1599,"[\""Laptop\""]",4944.92,"{\""loyalty\"": \""8%\""}",233962,1,"""Asia""" +2024-10-13,12734,7993,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2719.18,{},257202,0,"""South America""" +2024-08-20,12735,1904,"[\""Charger\""]",1016.17,{},62695,1,"""Africa""" +2024-09-27,12736,6672,"[\""Charger\""]",4617.56,{},90320,0,"""North America""" +2023-10-09,12737,9843,"[\""Monitor\"", \""Tablet\""]",238.39,"{\""loyalty\"": \""24%\""}",266529,1,"""Africa""" +2024-01-06,12738,4668,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4861.36,{},19216,0,"""North America""" +2023-08-16,12739,8520,"[\""Monitor\""]",175.9,{},242142,0,"""Africa""" +2023-08-31,12740,7856,"[\""Monitor\""]",1464.38,"{\"": \""17%\""}",75086,0,"""South America""" +2024-06-20,12741,9681,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4132.85,"{\""seasonal\"": \""12%\""}",217167,1,"""South America""" +2023-02-27,12742,205,"[\""Tablet\""]",1910.61,{},47103,1,"""Europe""" +2023-02-16,12743,2529,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4325.63,{},144087,1,"""South America""" +2024-06-10,12744,312,"[\""Keyboard\"", \""Laptop\""]",3035.83,"{\""promo\"": \""14%\""}",221271,0,"""South America""" +2024-01-09,12745,9209,"[\""Monitor\""]",769.43,{},128945,0,"""North America""" +2024-09-14,12746,7365,"[\""Headphones\"", \""Monitor\""]",718.52,"{\""promo\"": \""9%\""}",22986,1,"""North America""" +2024-04-27,12747,3764,"[\""Headphones\""]",3343.97,"{\"": \""10%\""}",17886,0,"""Africa""" +2024-05-29,12748,1823,"[\""Headphones\"", \""Charger\""]",2389.8,"{\""seasonal\"": \""17%\""}",172228,1,"""Africa""" +2023-04-25,12749,6242,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3009.37,{},240721,1,"""South America""" +2024-11-11,12750,8262,"[\""Keyboard\""]",3313.98,"{\""promo\"": \""11%\""}",202131,0,"""Africa""" +2024-11-25,12751,6289,"[\""Wireless Mouse\"", \""Headphones\""]",1877.71,"{\"": \""24%\""}",63986,0,"""North America""" +2024-12-24,12752,7388,"[\""Laptop\"", \""Phone\""]",3174.26,"{\""seasonal\"": \""30%\""}",9052,0,"""North America""" +2024-12-16,12753,7111,"[\""Keyboard\"", \""Charger\""]",2944.83,{},194174,0,"""Asia""" +2024-01-15,12754,8359,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3826.06,{},53544,0,"""South America""" +2023-11-20,12755,6964,"[\""Tablet\"", \""Phone\""]",3679.06,{},124163,0,"""Africa""" +2023-06-21,12756,3388,"[\""Charger\""]",4661.58,{},95205,1,"""South America""" +2023-05-04,12757,3878,"[\""Phone\""]",862.06,{},46390,1,"""Asia""" +2024-07-29,12758,3460,"[\""Headphones\"", \""Phone\""]",2285.46,{},190456,1,"""Africa""" +2023-06-11,12759,7051,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4709.84,"{\"": \""26%\""}",143310,0,"""South America""" +2023-08-19,12760,9766,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3680.74,"{\""seasonal\"": \""18%\""}",289468,0,"""North America""" +2024-11-27,12761,724,"[\""Phone\""]",808.73,"{\"": \""8%\""}",189655,1,"""South America""" +2024-08-24,12762,9092,"[\""Tablet\""]",4276.88,{},187734,1,"""Europe""" +2023-06-29,12763,5680,"[\""Tablet\"", \""Laptop\""]",4284.73,"{\""loyalty\"": \""15%\""}",276768,0,"""Europe""" +2024-04-27,12764,14,"[\""Laptop\""]",2603.45,"{\""promo\"": \""19%\""}",18003,1,"""South America""" +2023-08-16,12765,3496,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1514.77,"{\"": \""9%\""}",57516,1,"""Europe""" +2023-03-12,12766,9859,"[\""Keyboard\""]",2147.24,"{\""promo\"": \""28%\""}",207111,1,"""Africa""" +2024-03-21,12767,4976,"[\""Charger\"", \""Keyboard\""]",2198.5,"{\"": \""11%\""}",223990,0,"""North America""" +2023-08-08,12768,7018,"[\""Keyboard\"", \""Monitor\""]",3077.91,"{\"": \""5%\""}",4364,0,"""South America""" +2024-09-27,12769,1323,"[\""Keyboard\"", \""Charger\""]",2408.6,"{\""loyalty\"": \""10%\""}",83280,0,"""Africa""" +2023-01-30,12770,5324,"[\""Tablet\""]",4282.0,{},6778,0,"""North America""" +2024-05-25,12771,9684,"[\""Tablet\"", \""Phone\""]",4105.52,{},187123,0,"""North America""" +2024-08-09,12772,2594,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2001.99,"{\""loyalty\"": \""13%\""}",221596,0,"""Africa""" +2023-06-01,12773,5902,"[\""Headphones\"", \""Keyboard\""]",3465.33,"{\""loyalty\"": \""30%\""}",113104,0,"""South America""" +2023-01-22,12774,6530,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4812.03,"{\""promo\"": \""10%\""}",73466,1,"""South America""" +2024-06-12,12775,9764,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1698.73,"{\""promo\"": \""14%\""}",255491,0,"""Asia""" +2023-06-24,12776,4196,"[\""Wireless Mouse\""]",2395.0,{},11459,1,"""North America""" +2023-10-26,12777,6729,"[\""Wireless Mouse\""]",4174.28,{},76686,0,"""Europe""" +2023-07-17,12778,222,"[\""Tablet\""]",4381.38,"{\""loyalty\"": \""17%\""}",178978,0,"""Europe""" +2023-05-19,12779,7024,"[\""Keyboard\"", \""Tablet\""]",1349.27,{},54279,1,"""South America""" +2024-08-17,12780,2750,"[\""Headphones\""]",4370.09,"{\""promo\"": \""7%\""}",204583,1,"""North America""" +2024-03-10,12781,1854,"[\""Wireless Mouse\""]",2043.21,{},281782,0,"""Africa""" +2023-07-17,12782,5315,"[\""Tablet\"", \""Monitor\""]",1395.32,"{\"": \""16%\""}",224622,1,"""South America""" +2023-03-07,12783,5906,"[\""Monitor\""]",2924.77,{},89217,0,"""Africa""" +2023-05-25,12784,2254,"[\""Headphones\""]",2257.66,"{\"": \""10%\""}",193215,1,"""Europe""" +2023-10-22,12785,4294,"[\""Tablet\""]",3376.01,"{\""seasonal\"": \""5%\""}",40870,1,"""South America""" +2024-07-11,12786,7619,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2617.45,"{\"": \""10%\""}",73733,0,"""Europe""" +2023-02-07,12787,3619,"[\""Tablet\""]",359.84,{},131425,0,"""North America""" +2024-04-23,12788,7743,"[\""Wireless Mouse\"", \""Laptop\""]",851.81,{},254766,1,"""Africa""" +2024-05-21,12789,8342,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2892.6,{},89021,1,"""Africa""" +2024-06-22,12790,8081,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3065.37,{},32581,1,"""Africa""" +2024-09-17,12791,1854,"[\""Wireless Mouse\"", \""Tablet\""]",2977.1,{},243440,0,"""South America""" +2024-11-16,12792,5007,"[\""Headphones\"", \""Charger\""]",2241.82,{},202380,0,"""Europe""" +2024-03-23,12793,6265,"[\""Wireless Mouse\"", \""Charger\""]",3524.05,"{\""promo\"": \""8%\""}",52126,0,"""Asia""" +2024-11-06,12794,2090,"[\""Headphones\"", \""Phone\"", \""Charger\""]",670.7,"{\""loyalty\"": \""23%\""}",42988,1,"""Asia""" +2023-03-23,12795,8054,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4700.91,"{\""loyalty\"": \""19%\""}",66929,1,"""South America""" +2024-04-13,12796,3518,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3376.27,{},253759,1,"""South America""" +2023-10-24,12797,9468,"[\""Monitor\"", \""Keyboard\""]",3904.0,"{\""loyalty\"": \""14%\""}",267799,0,"""South America""" +2023-05-02,12798,2515,"[\""Laptop\""]",1888.19,{},97127,1,"""Europe""" +2024-10-31,12799,7484,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1535.23,"{\""seasonal\"": \""23%\""}",241425,0,"""North America""" +2024-10-13,12800,8353,"[\""Charger\"", \""Keyboard\""]",4417.26,{},102201,0,"""Africa""" +2023-01-26,12801,3533,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3931.94,"{\""seasonal\"": \""20%\""}",171332,1,"""North America""" +2023-06-04,12802,3101,"[\""Headphones\""]",4608.03,"{\""promo\"": \""22%\""}",231648,1,"""Asia""" +2024-06-26,12803,5872,"[\""Charger\"", \""Monitor\""]",4013.5,{},252835,1,"""South America""" +2024-12-13,12804,7688,"[\""Tablet\"", \""Monitor\""]",100.37,"{\"": \""24%\""}",83097,0,"""South America""" +2023-12-17,12805,8446,"[\""Monitor\""]",2444.48,"{\"": \""26%\""}",274145,0,"""South America""" +2024-07-08,12806,8038,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1315.2,"{\"": \""19%\""}",12512,1,"""South America""" +2024-06-09,12807,4347,"[\""Charger\""]",1602.85,"{\""loyalty\"": \""7%\""}",70832,1,"""South America""" +2023-08-28,12808,6985,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",223.79,"{\"": \""18%\""}",26615,1,"""South America""" +2024-03-05,12809,8194,"[\""Charger\""]",2299.02,"{\""seasonal\"": \""26%\""}",145650,1,"""Asia""" +2023-12-18,12810,273,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2748.03,"{\""promo\"": \""19%\""}",39972,0,"""North America""" +2024-02-03,12811,7224,"[\""Headphones\"", \""Monitor\""]",2678.55,"{\""loyalty\"": \""25%\""}",153397,1,"""Europe""" +2024-09-08,12812,6590,"[\""Monitor\"", \""Laptop\""]",763.68,{},192453,1,"""Asia""" +2024-05-07,12813,3799,"[\""Monitor\"", \""Tablet\""]",4780.84,"{\"": \""12%\""}",232766,0,"""North America""" +2024-09-27,12814,3941,"[\""Phone\""]",3598.97,"{\""loyalty\"": \""13%\""}",217834,1,"""South America""" +2023-12-14,12815,5844,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4602.44,{},251340,1,"""Asia""" +2024-04-18,12816,337,"[\""Charger\"", \""Keyboard\""]",739.91,"{\""loyalty\"": \""20%\""}",23693,0,"""Asia""" +2023-10-19,12817,2818,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2450.49,"{\""loyalty\"": \""30%\""}",53212,0,"""South America""" +2023-04-20,12818,6370,"[\""Keyboard\""]",2082.99,"{\"": \""14%\""}",55005,0,"""Asia""" +2023-10-05,12819,4138,"[\""Headphones\"", \""Wireless Mouse\""]",2181.6,"{\""loyalty\"": \""18%\""}",87561,1,"""North America""" +2024-07-24,12820,4549,"[\""Monitor\"", \""Tablet\""]",4301.49,"{\""loyalty\"": \""16%\""}",89165,0,"""Asia""" +2023-04-08,12821,4414,"[\""Headphones\""]",4070.59,"{\""loyalty\"": \""20%\""}",46981,0,"""South America""" +2023-01-14,12822,4959,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4440.68,"{\"": \""23%\""}",129703,0,"""Asia""" +2023-04-28,12823,8363,"[\""Phone\""]",1037.23,{},241346,1,"""Asia""" +2023-02-21,12824,4903,"[\""Charger\"", \""Monitor\""]",143.34,"{\""promo\"": \""23%\""}",31597,1,"""North America""" +2023-10-01,12825,8209,"[\""Monitor\""]",1016.19,"{\""promo\"": \""12%\""}",61458,0,"""Europe""" +2023-02-19,12826,461,"[\""Wireless Mouse\""]",3303.58,{},30345,1,"""Asia""" +2023-05-01,12827,3766,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2036.47,"{\""seasonal\"": \""26%\""}",293899,0,"""Africa""" +2023-08-15,12828,4419,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4778.73,{},270584,1,"""Asia""" +2023-06-18,12829,8711,"[\""Tablet\"", \""Charger\""]",4759.4,"{\""loyalty\"": \""24%\""}",101412,0,"""Asia""" +2023-03-30,12830,9689,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4671.07,{},18223,0,"""Asia""" +2024-01-22,12831,3806,"[\""Laptop\""]",1669.54,{},272141,1,"""North America""" +2023-02-22,12832,1769,"[\""Monitor\"", \""Wireless Mouse\""]",1046.29,"{\"": \""27%\""}",89472,0,"""South America""" +2023-03-14,12833,7655,"[\""Laptop\""]",4017.29,{},158993,0,"""Europe""" +2024-06-11,12834,4399,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4730.42,"{\""loyalty\"": \""13%\""}",248056,1,"""Asia""" +2024-12-25,12835,678,"[\""Monitor\"", \""Tablet\""]",3633.95,{},143055,0,"""South America""" +2024-04-20,12836,5690,"[\""Phone\""]",490.73,"{\""seasonal\"": \""7%\""}",172586,1,"""Europe""" +2023-04-26,12837,1887,"[\""Tablet\"", \""Keyboard\""]",2207.55,"{\""loyalty\"": \""11%\""}",245896,1,"""South America""" +2023-12-14,12838,1517,"[\""Tablet\"", \""Laptop\""]",1424.94,"{\""promo\"": \""8%\""}",3735,0,"""South America""" +2023-12-10,12839,8362,"[\""Phone\"", \""Monitor\""]",3029.3,{},58213,1,"""South America""" +2024-01-31,12840,4921,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",695.81,"{\""seasonal\"": \""29%\""}",54559,1,"""South America""" +2024-10-11,12841,4859,"[\""Phone\"", \""Laptop\""]",748.33,{},236090,0,"""Asia""" +2023-05-30,12842,5848,"[\""Charger\"", \""Laptop\""]",4187.32,"{\""promo\"": \""12%\""}",85213,0,"""South America""" +2024-04-14,12843,7563,"[\""Headphones\""]",1719.81,"{\"": \""8%\""}",169020,0,"""North America""" +2023-03-08,12844,9909,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3310.6,"{\""seasonal\"": \""28%\""}",5799,1,"""Africa""" +2023-09-24,12845,5518,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3682.62,"{\""promo\"": \""19%\""}",70182,1,"""Africa""" +2023-09-28,12846,5438,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1422.62,{},145537,0,"""North America""" +2024-05-14,12847,875,"[\""Tablet\""]",442.87,{},228613,1,"""Africa""" +2023-05-06,12848,1223,"[\""Charger\""]",1281.98,"{\""seasonal\"": \""14%\""}",67580,0,"""Europe""" +2024-11-27,12849,5211,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1658.43,"{\""loyalty\"": \""20%\""}",220263,0,"""North America""" +2023-02-20,12850,5759,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4749.91,"{\""loyalty\"": \""21%\""}",178012,0,"""Africa""" +2024-12-28,12851,5885,"[\""Laptop\"", \""Monitor\""]",3462.45,{},33560,0,"""Africa""" +2023-08-12,12852,6163,"[\""Monitor\""]",1079.57,"{\"": \""22%\""}",164778,1,"""North America""" +2023-03-19,12853,8806,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1908.94,"{\""loyalty\"": \""8%\""}",208257,1,"""Asia""" +2023-02-28,12854,2146,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2904.26,{},295936,0,"""Asia""" +2023-03-11,12855,6558,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1795.04,{},131644,0,"""North America""" +2023-11-14,12856,5900,"[\""Laptop\"", \""Tablet\""]",408.64,{},205804,1,"""South America""" +2024-06-15,12857,9076,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3161.76,{},118097,0,"""Asia""" +2023-04-01,12858,75,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",803.61,{},263422,0,"""South America""" +2023-04-12,12859,9392,"[\""Monitor\"", \""Phone\""]",4820.12,"{\""loyalty\"": \""7%\""}",137743,1,"""North America""" +2023-09-25,12860,3203,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3336.63,"{\"": \""24%\""}",180865,1,"""Asia""" +2024-02-19,12861,5999,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",269.52,{},284222,0,"""North America""" +2023-02-03,12862,221,"[\""Phone\"", \""Headphones\""]",1811.95,"{\""promo\"": \""18%\""}",92738,1,"""North America""" +2023-04-29,12863,909,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4628.88,"{\""seasonal\"": \""13%\""}",160591,0,"""North America""" +2023-03-31,12864,2049,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2558.04,"{\""promo\"": \""29%\""}",158600,1,"""Asia""" +2024-01-03,12865,6170,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4940.59,"{\""seasonal\"": \""18%\""}",148598,1,"""North America""" +2024-12-31,12866,3797,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1121.18,"{\"": \""22%\""}",14872,0,"""South America""" +2023-08-02,12867,42,"[\""Wireless Mouse\""]",1721.25,"{\""promo\"": \""17%\""}",38852,1,"""Africa""" +2024-07-20,12868,7597,"[\""Phone\""]",3623.66,{},50291,1,"""Africa""" +2024-10-07,12869,3172,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2233.91,"{\""loyalty\"": \""30%\""}",71600,0,"""North America""" +2024-10-06,12870,9273,"[\""Keyboard\"", \""Headphones\""]",3132.78,{},229995,1,"""Europe""" +2024-12-22,12871,7266,"[\""Headphones\"", \""Charger\""]",488.4,{},30474,0,"""Europe""" +2023-02-28,12872,9697,"[\""Tablet\"", \""Keyboard\""]",1740.83,{},11164,1,"""North America""" +2023-05-23,12873,9176,"[\""Laptop\"", \""Keyboard\""]",4694.37,"{\""loyalty\"": \""17%\""}",15748,0,"""Asia""" +2023-04-07,12874,2491,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",99.46,"{\""promo\"": \""18%\""}",55667,1,"""South America""" +2023-10-11,12875,7778,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2419.55,{},80000,1,"""Europe""" +2023-04-11,12876,6444,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4016.91,{},105167,0,"""North America""" +2024-10-20,12877,7492,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3730.98,"{\"": \""28%\""}",271624,1,"""Asia""" +2024-12-21,12878,5045,"[\""Monitor\"", \""Headphones\""]",822.56,{},9374,0,"""Europe""" +2023-06-15,12879,1553,"[\""Phone\"", \""Tablet\""]",3300.28,{},52793,1,"""Europe""" +2024-03-16,12880,2167,"[\""Tablet\"", \""Wireless Mouse\""]",899.75,{},113596,1,"""Africa""" +2023-12-21,12881,2617,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4559.08,"{\""promo\"": \""26%\""}",269220,1,"""Africa""" +2023-11-07,12882,7366,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1818.91,"{\"": \""16%\""}",76458,1,"""Africa""" +2024-09-08,12883,24,"[\""Laptop\"", \""Keyboard\""]",2264.34,{},249432,0,"""North America""" +2023-01-25,12884,1880,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4811.46,{},23543,1,"""North America""" +2024-06-13,12885,4300,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",142.6,{},241124,0,"""Asia""" +2023-03-19,12886,9796,"[\""Keyboard\"", \""Laptop\""]",4348.74,{},29515,0,"""North America""" +2024-08-03,12887,5013,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",205.58,{},72175,1,"""Africa""" +2024-07-21,12888,391,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1071.98,{},101190,0,"""South America""" +2023-03-25,12889,2117,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3983.21,{},297984,1,"""South America""" +2024-02-22,12890,4501,"[\""Headphones\"", \""Tablet\""]",4250.41,"{\""promo\"": \""20%\""}",280512,1,"""North America""" +2023-05-30,12891,2859,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",220.07,"{\""seasonal\"": \""29%\""}",143985,1,"""Asia""" +2023-11-04,12892,5845,"[\""Headphones\""]",163.23,{},22293,1,"""Africa""" +2023-05-24,12893,7884,"[\""Wireless Mouse\"", \""Phone\""]",2735.67,"{\""seasonal\"": \""12%\""}",176532,1,"""Asia""" +2024-08-21,12894,3292,"[\""Wireless Mouse\"", \""Keyboard\""]",4614.5,{},234623,0,"""Africa""" +2023-10-31,12895,3421,"[\""Wireless Mouse\""]",4427.9,{},164557,1,"""Asia""" +2023-04-30,12896,2038,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4027.43,{},257371,0,"""North America""" +2024-09-06,12897,4699,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3038.74,{},9101,1,"""Africa""" +2023-10-27,12898,170,"[\""Keyboard\"", \""Tablet\""]",4249.07,{},293167,0,"""Europe""" +2024-09-30,12899,9625,"[\""Phone\"", \""Keyboard\""]",1050.96,"{\""seasonal\"": \""13%\""}",283758,1,"""Europe""" +2024-03-23,12900,9999,"[\""Wireless Mouse\""]",4378.95,"{\""loyalty\"": \""18%\""}",287438,0,"""South America""" +2023-07-01,12901,9644,"[\""Charger\""]",1522.64,"{\""seasonal\"": \""14%\""}",165018,1,"""Europe""" +2024-06-24,12902,9845,"[\""Headphones\"", \""Phone\""]",342.49,"{\"": \""27%\""}",173940,1,"""Asia""" +2024-01-11,12903,7993,"[\""Wireless Mouse\"", \""Charger\""]",683.3,"{\"": \""16%\""}",241157,0,"""Europe""" +2023-03-24,12904,5288,"[\""Laptop\""]",2323.78,{},82509,1,"""Asia""" +2024-10-03,12905,7628,"[\""Laptop\"", \""Wireless Mouse\""]",901.07,"{\"": \""12%\""}",203982,1,"""Europe""" +2024-03-01,12906,6465,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",293.0,{},197012,0,"""North America""" +2024-05-23,12907,1541,"[\""Headphones\""]",1429.24,"{\""seasonal\"": \""7%\""}",4638,0,"""Africa""" +2024-05-23,12908,526,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1787.34,"{\"": \""7%\""}",93389,0,"""Asia""" +2024-01-20,12909,4586,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2841.45,{},119166,0,"""Europe""" +2023-06-23,12910,8769,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1137.51,"{\"": \""24%\""}",31582,1,"""Asia""" +2023-02-14,12911,2266,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",418.56,{},33511,1,"""South America""" +2023-04-14,12912,1083,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1697.22,{},254265,0,"""South America""" +2024-12-11,12913,8837,"[\""Keyboard\"", \""Monitor\""]",2272.82,{},182624,1,"""South America""" +2024-12-25,12914,5597,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1008.22,"{\""loyalty\"": \""14%\""}",129495,1,"""South America""" +2024-12-14,12915,597,"[\""Tablet\""]",3018.58,{},193745,0,"""North America""" +2024-11-16,12916,6161,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",94.38,"{\"": \""13%\""}",279531,0,"""Europe""" +2023-02-25,12917,276,"[\""Monitor\"", \""Laptop\""]",2932.59,"{\""loyalty\"": \""21%\""}",79204,1,"""Asia""" +2024-04-08,12918,6356,"[\""Headphones\"", \""Phone\""]",4618.55,{},214158,0,"""Africa""" +2024-04-27,12919,5457,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1919.58,"{\""seasonal\"": \""16%\""}",266965,0,"""Europe""" +2024-06-07,12920,6125,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4978.71,{},63870,1,"""Europe""" +2023-10-18,12921,6906,"[\""Charger\""]",283.52,{},7735,1,"""North America""" +2023-08-20,12922,9344,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3473.34,"{\"": \""18%\""}",46838,0,"""Asia""" +2023-11-30,12923,7474,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",56.08,"{\"": \""8%\""}",19566,1,"""Asia""" +2023-10-29,12924,7506,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2456.15,{},123276,0,"""South America""" +2024-09-21,12925,9422,"[\""Monitor\""]",2701.69,{},111703,1,"""Africa""" +2023-07-15,12926,7476,"[\""Charger\""]",3449.56,"{\""promo\"": \""26%\""}",292067,1,"""Africa""" +2023-08-22,12927,7179,"[\""Headphones\""]",686.32,{},175168,0,"""Africa""" +2024-05-07,12928,8620,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4865.06,{},263847,0,"""South America""" +2023-02-06,12929,2248,"[\""Tablet\""]",1151.93,{},274893,1,"""South America""" +2023-06-14,12930,622,"[\""Monitor\""]",4913.31,"{\""promo\"": \""5%\""}",98493,1,"""Africa""" +2024-08-18,12931,7325,"[\""Headphones\""]",2459.05,{},209968,1,"""South America""" +2023-08-05,12932,1568,"[\""Monitor\""]",3688.28,"{\""loyalty\"": \""28%\""}",191249,0,"""Africa""" +2024-03-02,12933,4805,"[\""Wireless Mouse\"", \""Monitor\""]",3995.11,"{\""promo\"": \""6%\""}",82811,1,"""Asia""" +2023-11-27,12934,2335,"[\""Phone\""]",3085.84,{},175004,1,"""Africa""" +2024-10-17,12935,4956,"[\""Monitor\"", \""Phone\""]",4454.48,{},250792,1,"""North America""" +2023-01-13,12936,6490,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",147.5,{},43037,1,"""Asia""" +2023-07-24,12937,2382,"[\""Wireless Mouse\""]",2956.38,{},158622,1,"""Asia""" +2023-08-27,12938,3044,"[\""Monitor\""]",2200.82,{},110269,1,"""Africa""" +2024-03-23,12939,6853,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1394.14,{},299504,1,"""Africa""" +2023-06-08,12940,9406,"[\""Wireless Mouse\"", \""Keyboard\""]",1409.0,"{\""promo\"": \""11%\""}",113991,0,"""Africa""" +2023-03-20,12941,2871,"[\""Phone\""]",4925.23,{},200495,1,"""North America""" +2024-05-06,12942,8410,"[\""Keyboard\""]",1311.13,"{\""seasonal\"": \""26%\""}",56846,0,"""Europe""" +2024-08-14,12943,3405,"[\""Wireless Mouse\""]",2219.18,{},183156,1,"""Europe""" +2024-08-09,12944,315,"[\""Keyboard\"", \""Charger\""]",2886.81,{},121317,0,"""Asia""" +2023-06-27,12945,8632,"[\""Phone\""]",2287.35,{},271878,1,"""Europe""" +2023-04-02,12946,1031,"[\""Monitor\""]",4228.98,"{\""loyalty\"": \""27%\""}",95198,0,"""South America""" +2024-11-02,12947,11,"[\""Tablet\""]",2024.96,"{\""loyalty\"": \""28%\""}",71506,1,"""Africa""" +2024-07-04,12948,6642,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2466.38,{},33356,0,"""Asia""" +2024-05-21,12949,6247,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1385.37,{},39449,1,"""Asia""" +2023-08-28,12950,9099,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2440.92,{},8861,0,"""Asia""" +2024-10-16,12951,9253,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4347.56,{},184266,0,"""Asia""" +2023-06-11,12952,5334,"[\""Monitor\"", \""Charger\""]",3128.74,{},81119,1,"""Asia""" +2023-03-01,12953,4478,"[\""Wireless Mouse\"", \""Phone\""]",2390.94,{},54986,1,"""South America""" +2024-03-10,12954,8349,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4539.6,{},127039,0,"""South America""" +2024-06-02,12955,3235,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3577.53,{},299830,1,"""South America""" +2023-11-15,12956,7640,"[\""Tablet\""]",3345.87,{},11294,1,"""Europe""" +2023-03-17,12957,8853,"[\""Monitor\"", \""Phone\""]",3807.2,{},265378,1,"""Asia""" +2024-02-22,12958,2539,"[\""Wireless Mouse\""]",3010.82,{},240364,1,"""North America""" +2023-01-24,12959,3760,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3199.0,{},102841,0,"""Africa""" +2023-11-08,12960,4001,"[\""Tablet\"", \""Headphones\""]",666.23,"{\""promo\"": \""8%\""}",33775,1,"""Europe""" +2024-08-19,12961,8320,"[\""Headphones\""]",2453.79,"{\"": \""12%\""}",12545,1,"""Asia""" +2023-01-25,12962,5537,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1569.23,"{\""promo\"": \""18%\""}",140224,0,"""Europe""" +2024-09-18,12963,5717,"[\""Tablet\""]",4392.97,"{\""seasonal\"": \""16%\""}",172509,0,"""Africa""" +2024-01-09,12964,8131,"[\""Keyboard\"", \""Headphones\""]",2927.83,{},178541,0,"""Asia""" +2023-02-17,12965,1645,"[\""Phone\""]",4110.2,{},235275,0,"""Africa""" +2023-05-26,12966,6787,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1489.01,{},244164,1,"""Africa""" +2024-10-11,12967,4625,"[\""Monitor\""]",2554.15,{},158409,0,"""Europe""" +2024-01-06,12968,4648,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4308.13,"{\""loyalty\"": \""13%\""}",68941,1,"""Africa""" +2024-09-18,12969,5784,"[\""Monitor\""]",4047.13,{},262348,0,"""Europe""" +2023-03-14,12970,2660,"[\""Laptop\""]",4538.93,"{\""promo\"": \""7%\""}",4699,1,"""Europe""" +2024-11-30,12971,3310,"[\""Charger\""]",2235.88,{},247987,0,"""South America""" +2024-01-01,12972,768,"[\""Keyboard\"", \""Wireless Mouse\""]",4199.72,"{\"": \""9%\""}",13240,1,"""South America""" +2023-11-29,12973,3226,"[\""Charger\"", \""Wireless Mouse\""]",892.88,"{\""loyalty\"": \""5%\""}",64271,1,"""Africa""" +2024-07-20,12974,336,"[\""Phone\""]",2781.25,"{\""promo\"": \""30%\""}",159691,0,"""Africa""" +2024-02-04,12975,4205,"[\""Keyboard\""]",3604.27,{},235504,0,"""North America""" +2023-03-20,12976,197,"[\""Monitor\"", \""Laptop\""]",3979.46,{},1891,1,"""Africa""" +2024-07-31,12977,1440,"[\""Keyboard\"", \""Headphones\""]",713.57,"{\""loyalty\"": \""22%\""}",111184,0,"""South America""" +2023-11-24,12978,1651,"[\""Headphones\"", \""Tablet\""]",515.06,{},162773,1,"""North America""" +2023-05-19,12979,3226,"[\""Tablet\"", \""Phone\""]",79.95,{},69843,0,"""Asia""" +2024-05-01,12980,1647,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3253.71,"{\""seasonal\"": \""25%\""}",281430,0,"""Asia""" +2024-12-08,12981,35,"[\""Keyboard\""]",1023.83,"{\""loyalty\"": \""26%\""}",37276,1,"""Asia""" +2024-05-19,12982,5638,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",519.09,{},133523,1,"""North America""" +2024-06-02,12983,7318,"[\""Phone\"", \""Headphones\""]",318.43,{},116124,0,"""Europe""" +2024-04-07,12984,9631,"[\""Phone\"", \""Headphones\""]",4075.33,{},137524,0,"""Europe""" +2023-12-01,12985,4861,"[\""Laptop\"", \""Tablet\""]",881.73,"{\"": \""21%\""}",106043,1,"""South America""" +2024-11-02,12986,5565,"[\""Phone\""]",2759.27,"{\""promo\"": \""28%\""}",171695,0,"""Europe""" +2023-05-13,12987,3113,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1602.99,"{\""promo\"": \""27%\""}",9452,1,"""Europe""" +2024-04-17,12988,2930,"[\""Phone\"", \""Wireless Mouse\""]",185.7,{},56666,0,"""Africa""" +2024-07-16,12989,9641,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",244.31,"{\"": \""11%\""}",132392,0,"""Africa""" +2023-10-12,12990,7881,"[\""Headphones\"", \""Keyboard\""]",558.89,"{\""seasonal\"": \""28%\""}",47598,0,"""Asia""" +2023-04-06,12991,7992,"[\""Charger\"", \""Wireless Mouse\""]",4793.66,"{\"": \""13%\""}",127070,1,"""Europe""" +2023-12-21,12992,9522,"[\""Wireless Mouse\""]",4592.47,"{\""seasonal\"": \""27%\""}",153856,1,"""South America""" +2024-11-16,12993,7880,"[\""Monitor\""]",3974.81,"{\""promo\"": \""21%\""}",157549,1,"""Europe""" +2024-05-21,12994,3679,"[\""Headphones\""]",2751.74,"{\""loyalty\"": \""11%\""}",24628,1,"""South America""" +2024-07-07,12995,2553,"[\""Charger\""]",4428.39,"{\""loyalty\"": \""29%\""}",169924,1,"""Africa""" +2023-01-24,12996,8456,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4778.08,"{\""promo\"": \""27%\""}",244479,0,"""South America""" +2023-03-26,12997,2860,"[\""Monitor\""]",1532.03,{},138461,1,"""Europe""" +2023-09-04,12998,1745,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2325.08,{},263966,0,"""North America""" +2024-07-06,12999,918,"[\""Headphones\""]",2371.49,{},92047,1,"""South America""" +2024-09-04,13000,3704,"[\""Tablet\""]",4949.87,"{\""loyalty\"": \""6%\""}",260256,1,"""Asia""" +2024-06-17,13001,6847,"[\""Phone\""]",2786.21,"{\""promo\"": \""7%\""}",199417,0,"""Europe""" +2024-12-05,13002,2912,"[\""Phone\"", \""Keyboard\""]",3958.21,"{\""promo\"": \""11%\""}",42615,0,"""Europe""" +2023-09-30,13003,9611,"[\""Wireless Mouse\"", \""Keyboard\""]",3991.78,{},182205,0,"""North America""" +2024-07-08,13004,5323,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",232.95,"{\""loyalty\"": \""7%\""}",272396,0,"""Europe""" +2024-11-23,13005,9081,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",610.43,"{\""promo\"": \""28%\""}",102894,0,"""North America""" +2024-01-02,13006,7418,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",469.91,{},44189,1,"""Asia""" +2024-10-22,13007,3449,"[\""Charger\""]",3418.75,{},149326,0,"""Asia""" +2023-11-24,13008,4767,"[\""Laptop\"", \""Charger\""]",3441.89,{},29262,0,"""North America""" +2023-01-04,13009,3483,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2208.12,"{\""seasonal\"": \""27%\""}",260196,1,"""North America""" +2024-12-28,13010,8962,"[\""Tablet\"", \""Keyboard\""]",418.3,{},215083,1,"""Europe""" +2023-04-26,13011,3391,"[\""Phone\""]",2594.58,"{\"": \""16%\""}",91469,0,"""South America""" +2023-09-29,13012,4109,"[\""Laptop\"", \""Wireless Mouse\""]",238.95,"{\"": \""30%\""}",279213,0,"""Asia""" +2023-11-04,13013,5452,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3988.48,{},95122,0,"""North America""" +2023-03-17,13014,556,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1261.4,{},143611,1,"""South America""" +2024-04-23,13015,2666,"[\""Laptop\"", \""Charger\""]",2861.72,"{\"": \""14%\""}",75494,1,"""South America""" +2024-12-25,13016,3800,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4260.48,"{\""seasonal\"": \""14%\""}",275403,1,"""Africa""" +2024-07-30,13017,3998,"[\""Phone\"", \""Tablet\""]",4383.22,{},5843,0,"""Africa""" +2023-12-27,13018,7553,"[\""Monitor\"", \""Laptop\""]",252.88,{},271166,0,"""South America""" +2023-12-15,13019,2514,"[\""Keyboard\""]",2539.42,"{\""loyalty\"": \""10%\""}",126497,0,"""South America""" +2024-12-23,13020,3216,"[\""Headphones\""]",2965.81,"{\""seasonal\"": \""5%\""}",280901,0,"""Asia""" +2024-05-05,13021,1078,"[\""Laptop\""]",4339.2,{},135194,0,"""North America""" +2024-08-05,13022,1288,"[\""Charger\"", \""Tablet\""]",1007.19,"{\""loyalty\"": \""8%\""}",299135,0,"""Asia""" +2024-05-02,13023,8805,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",92.49,"{\"": \""24%\""}",197409,1,"""North America""" +2023-11-18,13024,8311,"[\""Laptop\""]",3861.49,"{\""loyalty\"": \""6%\""}",133643,1,"""South America""" +2023-12-02,13025,2424,"[\""Headphones\""]",2114.84,"{\""promo\"": \""22%\""}",52736,0,"""Africa""" +2023-11-29,13026,3385,"[\""Tablet\""]",4455.09,{},98179,0,"""South America""" +2024-05-09,13027,1194,"[\""Tablet\""]",257.44,{},30534,1,"""Asia""" +2023-08-12,13028,8954,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3209.78,"{\"": \""29%\""}",158384,0,"""Africa""" +2024-07-01,13029,1872,"[\""Headphones\""]",799.15,{},152091,0,"""South America""" +2024-02-27,13030,4274,"[\""Tablet\""]",767.7,{},222580,1,"""Asia""" +2023-06-07,13031,2320,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4121.85,"{\""seasonal\"": \""24%\""}",101490,1,"""Africa""" +2023-12-11,13032,632,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4537.2,"{\""promo\"": \""18%\""}",24147,0,"""Africa""" +2024-03-27,13033,5260,"[\""Monitor\"", \""Keyboard\""]",1912.38,{},179165,1,"""Europe""" +2024-12-26,13034,4463,"[\""Phone\""]",2829.42,"{\""loyalty\"": \""26%\""}",90520,0,"""South America""" +2024-07-12,13035,2006,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1785.13,"{\""loyalty\"": \""22%\""}",266129,1,"""Europe""" +2024-04-01,13036,700,"[\""Monitor\""]",1052.28,{},244833,1,"""North America""" +2024-05-11,13037,4137,"[\""Monitor\""]",1905.67,{},40547,1,"""Africa""" +2023-04-18,13038,6680,"[\""Keyboard\"", \""Phone\""]",1504.37,"{\"": \""13%\""}",99935,0,"""Europe""" +2024-01-24,13039,9003,"[\""Phone\"", \""Laptop\""]",351.22,{},127085,1,"""Europe""" +2023-01-21,13040,3798,"[\""Laptop\"", \""Wireless Mouse\""]",236.42,{},98855,1,"""Africa""" +2023-03-16,13041,4903,"[\""Wireless Mouse\""]",2332.75,{},210374,1,"""South America""" +2024-05-05,13042,4633,"[\""Tablet\"", \""Keyboard\""]",4226.52,{},89587,1,"""Europe""" +2024-05-01,13043,2584,"[\""Phone\""]",4305.54,"{\""seasonal\"": \""28%\""}",270031,1,"""South America""" +2023-01-11,13044,7776,"[\""Laptop\""]",2424.61,{},158675,1,"""Asia""" +2023-02-04,13045,9027,"[\""Charger\"", \""Wireless Mouse\""]",3405.19,"{\""seasonal\"": \""9%\""}",256052,0,"""South America""" +2023-08-29,13046,1323,"[\""Keyboard\""]",334.85,{},184293,1,"""Europe""" +2023-06-16,13047,2260,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1026.69,"{\"": \""19%\""}",17390,0,"""Europe""" +2024-02-24,13048,7768,"[\""Keyboard\""]",4284.88,"{\""promo\"": \""26%\""}",85440,1,"""Europe""" +2023-05-09,13049,2060,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4724.52,{},144745,1,"""Asia""" +2024-10-24,13050,6565,"[\""Monitor\"", \""Laptop\""]",712.36,"{\""promo\"": \""29%\""}",164638,0,"""Africa""" +2024-10-18,13051,7768,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3664.89,"{\""promo\"": \""15%\""}",123042,1,"""Asia""" +2023-06-26,13052,973,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",880.2,{},111556,1,"""North America""" +2024-03-30,13053,9596,"[\""Keyboard\"", \""Headphones\""]",4287.27,"{\"": \""22%\""}",124522,0,"""Asia""" +2024-07-10,13054,8876,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4747.96,{},172589,1,"""Africa""" +2023-10-13,13055,1899,"[\""Phone\""]",4968.79,"{\""loyalty\"": \""25%\""}",283300,1,"""Europe""" +2023-08-15,13056,2579,"[\""Laptop\""]",2744.69,"{\""promo\"": \""5%\""}",242263,0,"""Africa""" +2024-01-26,13057,6098,"[\""Keyboard\""]",209.9,{},137716,1,"""South America""" +2023-10-04,13058,9147,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2714.64,{},296645,1,"""Europe""" +2024-09-05,13059,3533,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4746.77,{},115454,0,"""South America""" +2024-09-20,13060,7108,"[\""Keyboard\"", \""Charger\""]",4174.1,"{\""seasonal\"": \""15%\""}",202201,1,"""Europe""" +2023-05-26,13061,20,"[\""Monitor\""]",1192.21,"{\""loyalty\"": \""6%\""}",212539,1,"""Asia""" +2024-11-04,13062,8004,"[\""Charger\"", \""Keyboard\""]",4969.52,{},173566,1,"""Asia""" +2023-09-20,13063,1741,"[\""Charger\""]",2285.22,{},226930,0,"""Asia""" +2023-09-11,13064,8043,"[\""Monitor\"", \""Headphones\""]",2068.12,{},170066,0,"""Europe""" +2023-11-19,13065,5989,"[\""Monitor\"", \""Tablet\""]",1253.48,"{\"": \""14%\""}",30153,0,"""Africa""" +2024-05-16,13066,8488,"[\""Laptop\"", \""Charger\""]",4403.78,{},211633,0,"""Europe""" +2023-04-11,13067,9825,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1095.68,{},218057,0,"""South America""" +2023-06-06,13068,1472,"[\""Headphones\"", \""Monitor\""]",3032.57,"{\""loyalty\"": \""19%\""}",142715,1,"""Asia""" +2024-08-07,13069,3914,"[\""Keyboard\"", \""Wireless Mouse\""]",2679.43,"{\""promo\"": \""23%\""}",145562,0,"""Africa""" +2024-09-29,13070,300,"[\""Headphones\""]",205.67,"{\""loyalty\"": \""19%\""}",152311,1,"""South America""" +2024-05-24,13071,9273,"[\""Phone\"", \""Tablet\""]",748.05,{},114794,1,"""Europe""" +2024-03-16,13072,3728,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",80.81,{},250855,1,"""Africa""" +2023-04-21,13073,7424,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2427.13,{},264006,0,"""South America""" +2023-11-23,13074,2374,"[\""Laptop\"", \""Charger\""]",3365.3,{},241711,1,"""South America""" +2024-07-14,13075,6578,"[\""Tablet\""]",3817.36,{},254568,0,"""Europe""" +2023-01-13,13076,8496,"[\""Phone\""]",4545.94,"{\""promo\"": \""29%\""}",30994,1,"""South America""" +2024-07-04,13077,4239,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",93.05,"{\""seasonal\"": \""14%\""}",14688,1,"""Asia""" +2023-04-02,13078,4467,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3397.52,{},63581,1,"""South America""" +2023-04-30,13079,1526,"[\""Laptop\""]",2439.72,{},218059,1,"""South America""" +2024-05-16,13080,4403,"[\""Tablet\""]",2496.27,{},298932,1,"""Europe""" +2024-12-05,13081,8813,"[\""Wireless Mouse\""]",2840.19,"{\""seasonal\"": \""10%\""}",211101,0,"""South America""" +2023-10-29,13082,7164,"[\""Headphones\""]",4134.5,{},266394,1,"""North America""" +2023-09-03,13083,9521,"[\""Keyboard\""]",139.9,{},272760,1,"""Europe""" +2024-12-10,13084,6572,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2838.19,{},76124,1,"""Asia""" +2024-07-03,13085,3678,"[\""Phone\"", \""Monitor\""]",2713.73,{},50193,0,"""South America""" +2023-11-15,13086,2596,"[\""Monitor\""]",880.82,{},255922,1,"""North America""" +2023-02-03,13087,1054,"[\""Tablet\"", \""Charger\""]",3386.16,{},266396,1,"""North America""" +2023-08-01,13088,6971,"[\""Headphones\""]",923.94,"{\""loyalty\"": \""28%\""}",80917,0,"""South America""" +2023-05-13,13089,9862,"[\""Laptop\"", \""Phone\""]",4839.46,{},155093,0,"""Asia""" +2024-05-28,13090,1458,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",74.8,"{\""loyalty\"": \""9%\""}",221375,1,"""North America""" +2024-05-21,13091,4120,"[\""Monitor\""]",4326.24,{},146486,1,"""South America""" +2023-11-19,13092,7629,"[\""Phone\""]",4322.19,{},190407,1,"""Europe""" +2023-07-26,13093,9164,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3947.36,{},130829,1,"""Asia""" +2024-04-06,13094,3805,"[\""Charger\""]",3962.61,{},131050,1,"""South America""" +2023-01-13,13095,83,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1776.36,"{\""seasonal\"": \""16%\""}",153339,0,"""Asia""" +2024-06-29,13096,4706,"[\""Tablet\""]",3146.25,{},43720,0,"""South America""" +2023-03-06,13097,8491,"[\""Wireless Mouse\"", \""Headphones\""]",1065.46,{},12653,0,"""Europe""" +2024-08-30,13098,2923,"[\""Laptop\""]",2019.76,"{\""seasonal\"": \""6%\""}",265831,0,"""Europe""" +2024-11-26,13099,2517,"[\""Headphones\"", \""Keyboard\""]",3030.3,"{\""promo\"": \""9%\""}",206386,0,"""North America""" +2024-02-22,13100,4941,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1188.45,"{\""promo\"": \""9%\""}",258021,0,"""Asia""" +2024-05-03,13101,3892,"[\""Laptop\""]",2168.79,{},92076,1,"""North America""" +2023-07-04,13102,4689,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4161.42,{},24840,0,"""South America""" +2024-01-31,13103,3003,"[\""Phone\""]",684.47,"{\"": \""9%\""}",88704,0,"""South America""" +2023-12-23,13104,3269,"[\""Headphones\"", \""Charger\""]",2850.81,{},244592,1,"""North America""" +2023-03-28,13105,1442,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2709.96,"{\""promo\"": \""22%\""}",139783,1,"""North America""" +2024-01-28,13106,1510,"[\""Wireless Mouse\"", \""Tablet\""]",3135.27,"{\"": \""8%\""}",128412,1,"""Africa""" +2024-08-28,13107,5261,"[\""Phone\""]",4794.47,"{\"": \""9%\""}",19347,1,"""Africa""" +2023-10-22,13108,3606,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",764.64,{},65532,0,"""Europe""" +2024-12-14,13109,2818,"[\""Wireless Mouse\"", \""Phone\""]",3625.51,"{\""seasonal\"": \""24%\""}",185778,0,"""North America""" +2024-01-27,13110,4960,"[\""Laptop\""]",4203.63,"{\""loyalty\"": \""26%\""}",174523,0,"""Africa""" +2024-08-26,13111,3783,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4464.12,{},263524,1,"""South America""" +2024-02-04,13112,5297,"[\""Phone\""]",1267.01,{},283716,0,"""Europe""" +2024-05-02,13113,5930,"[\""Wireless Mouse\""]",1293.12,{},159321,1,"""Africa""" +2023-08-10,13114,3217,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2416.71,{},267621,0,"""North America""" +2024-04-13,13115,6418,"[\""Headphones\"", \""Keyboard\""]",1705.22,"{\""promo\"": \""27%\""}",13077,1,"""Africa""" +2024-11-24,13116,6112,"[\""Laptop\""]",3082.77,{},87380,1,"""Africa""" +2024-02-07,13117,1977,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1809.98,"{\""seasonal\"": \""28%\""}",125906,0,"""Europe""" +2024-03-11,13118,8081,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3611.18,{},155708,0,"""Asia""" +2023-09-14,13119,5249,"[\""Keyboard\""]",2676.29,"{\"": \""30%\""}",218954,0,"""South America""" +2024-02-17,13120,3475,"[\""Laptop\"", \""Tablet\""]",1393.12,{},209377,1,"""Asia""" +2023-09-06,13121,1419,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",842.52,{},43326,1,"""South America""" +2024-11-21,13122,5810,"[\""Tablet\""]",2139.53,"{\"": \""28%\""}",164437,1,"""Africa""" +2024-07-08,13123,6632,"[\""Keyboard\"", \""Tablet\""]",121.89,"{\"": \""15%\""}",213357,1,"""Asia""" +2024-08-23,13124,6226,"[\""Monitor\"", \""Charger\""]",4567.49,"{\"": \""22%\""}",296878,0,"""Europe""" +2024-05-20,13125,5910,"[\""Tablet\""]",4958.61,"{\"": \""23%\""}",128398,0,"""South America""" +2024-11-02,13126,5813,"[\""Phone\""]",3395.02,{},113690,0,"""Asia""" +2024-10-19,13127,6135,"[\""Laptop\"", \""Charger\"", \""Phone\""]",756.11,{},4773,0,"""Africa""" +2023-02-01,13128,1160,"[\""Headphones\"", \""Keyboard\""]",3020.37,"{\""loyalty\"": \""26%\""}",77803,0,"""Asia""" +2024-09-18,13129,3337,"[\""Keyboard\""]",4068.57,{},248312,1,"""Asia""" +2023-12-22,13130,696,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2713.06,{},40651,0,"""Europe""" +2024-08-05,13131,4768,"[\""Tablet\""]",3852.46,{},8820,1,"""Asia""" +2023-01-21,13132,4627,"[\""Monitor\"", \""Keyboard\""]",1482.3,{},283005,0,"""Africa""" +2023-11-16,13133,8186,"[\""Wireless Mouse\""]",4471.71,"{\""promo\"": \""10%\""}",79078,0,"""South America""" +2024-02-08,13134,5904,"[\""Wireless Mouse\""]",4580.27,"{\""seasonal\"": \""15%\""}",275938,0,"""Asia""" +2024-09-05,13135,9445,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1884.91,{},244766,0,"""Europe""" +2023-10-25,13136,785,"[\""Charger\"", \""Headphones\""]",408.2,{},16762,1,"""Asia""" +2024-10-13,13137,3281,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1888.24,{},213805,1,"""Asia""" +2023-11-06,13138,253,"[\""Laptop\""]",3781.7,{},270046,0,"""North America""" +2024-10-03,13139,2365,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4430.26,"{\"": \""19%\""}",246104,0,"""South America""" +2024-05-24,13140,36,"[\""Keyboard\"", \""Monitor\""]",1850.76,"{\""seasonal\"": \""21%\""}",107419,0,"""South America""" +2023-03-19,13141,2221,"[\""Monitor\"", \""Charger\""]",1213.02,"{\""seasonal\"": \""19%\""}",203636,0,"""Africa""" +2023-11-20,13142,2125,"[\""Phone\"", \""Monitor\""]",2136.85,"{\"": \""7%\""}",73802,0,"""Europe""" +2024-04-22,13143,7368,"[\""Wireless Mouse\"", \""Headphones\""]",1179.89,"{\""loyalty\"": \""16%\""}",179955,1,"""South America""" +2024-12-09,13144,5064,"[\""Monitor\"", \""Tablet\""]",3591.3,"{\"": \""23%\""}",213144,1,"""Asia""" +2023-10-28,13145,2489,"[\""Phone\"", \""Keyboard\""]",2584.3,"{\"": \""26%\""}",268694,1,"""North America""" +2023-08-02,13146,3593,"[\""Keyboard\"", \""Monitor\""]",1875.42,"{\""loyalty\"": \""18%\""}",248970,0,"""Africa""" +2023-04-07,13147,5446,"[\""Wireless Mouse\"", \""Headphones\""]",2441.07,{},176213,1,"""Asia""" +2024-03-26,13148,9042,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4200.66,{},86578,0,"""Europe""" +2023-09-27,13149,2053,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1890.07,"{\""seasonal\"": \""22%\""}",288029,0,"""Europe""" +2024-09-11,13150,32,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4649.68,"{\""seasonal\"": \""7%\""}",220011,1,"""North America""" +2023-08-16,13151,6605,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3681.83,"{\""loyalty\"": \""25%\""}",161205,0,"""Asia""" +2023-11-26,13152,2131,"[\""Phone\""]",82.48,{},100138,0,"""North America""" +2024-08-18,13153,8835,"[\""Phone\""]",2911.54,"{\"": \""23%\""}",177233,1,"""South America""" +2024-06-16,13154,2182,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4015.66,{},30240,1,"""Europe""" +2023-03-05,13155,7576,"[\""Headphones\"", \""Charger\""]",4128.07,"{\"": \""23%\""}",70046,1,"""Asia""" +2024-07-23,13156,2325,"[\""Keyboard\""]",4851.57,{},88013,1,"""South America""" +2023-09-14,13157,3118,"[\""Monitor\"", \""Tablet\""]",3787.0,{},58932,0,"""South America""" +2024-10-10,13158,5652,"[\""Monitor\"", \""Tablet\""]",3433.87,{},233993,0,"""Asia""" +2023-11-08,13159,9115,"[\""Wireless Mouse\"", \""Charger\""]",3627.84,"{\""loyalty\"": \""13%\""}",194908,0,"""Europe""" +2023-07-20,13160,2852,"[\""Headphones\"", \""Keyboard\""]",3228.39,"{\""seasonal\"": \""23%\""}",95131,0,"""Europe""" +2024-09-09,13161,2764,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1935.0,"{\""loyalty\"": \""5%\""}",134883,0,"""South America""" +2024-03-07,13162,1204,"[\""Charger\"", \""Tablet\""]",3323.75,"{\""loyalty\"": \""23%\""}",121712,1,"""Africa""" +2023-12-21,13163,7886,"[\""Keyboard\"", \""Headphones\""]",3726.56,{},33987,0,"""Europe""" +2023-11-21,13164,1511,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1964.94,{},34174,0,"""North America""" +2023-12-29,13165,2868,"[\""Wireless Mouse\""]",4413.24,"{\"": \""15%\""}",15471,0,"""North America""" +2023-09-22,13166,3498,"[\""Wireless Mouse\"", \""Laptop\""]",2657.67,{},219752,1,"""Africa""" +2024-11-10,13167,4619,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3694.16,"{\""loyalty\"": \""28%\""}",83037,1,"""Europe""" +2024-10-21,13168,9046,"[\""Monitor\""]",4736.18,"{\""promo\"": \""20%\""}",108812,1,"""Asia""" +2024-11-19,13169,5265,"[\""Keyboard\"", \""Charger\""]",1693.9,"{\""promo\"": \""28%\""}",87028,0,"""South America""" +2024-08-04,13170,9916,"[\""Tablet\"", \""Charger\""]",434.37,{},125151,0,"""South America""" +2024-03-09,13171,6126,"[\""Laptop\"", \""Tablet\""]",2538.14,{},210655,0,"""Africa""" +2024-03-29,13172,1280,"[\""Tablet\"", \""Wireless Mouse\""]",1020.82,"{\""promo\"": \""30%\""}",57856,1,"""Europe""" +2023-02-13,13173,6097,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3993.41,{},296392,0,"""North America""" +2023-06-23,13174,6174,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3883.59,"{\""promo\"": \""26%\""}",178004,1,"""Europe""" +2024-03-22,13175,6023,"[\""Tablet\"", \""Phone\""]",643.93,"{\""seasonal\"": \""20%\""}",238649,1,"""Asia""" +2024-04-18,13176,4532,"[\""Laptop\"", \""Phone\""]",4543.72,"{\""loyalty\"": \""17%\""}",83559,0,"""Africa""" +2023-07-06,13177,831,"[\""Monitor\""]",2732.56,{},79902,0,"""Africa""" +2024-09-17,13178,1746,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1223.71,{},232925,0,"""Europe""" +2024-08-15,13179,3538,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4740.11,"{\"": \""12%\""}",127680,0,"""South America""" +2024-06-21,13180,1046,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4219.56,{},126846,1,"""South America""" +2024-07-21,13181,7538,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4648.35,{},244944,1,"""Asia""" +2023-03-28,13182,832,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4977.8,{},275472,0,"""Europe""" +2023-05-03,13183,5831,"[\""Tablet\""]",2339.09,"{\""promo\"": \""20%\""}",213068,1,"""Asia""" +2024-01-21,13184,5469,"[\""Keyboard\"", \""Monitor\""]",221.38,{},153771,0,"""North America""" +2024-01-29,13185,5914,"[\""Keyboard\"", \""Phone\""]",4488.89,"{\""seasonal\"": \""19%\""}",101251,0,"""South America""" +2023-02-24,13186,4318,"[\""Headphones\"", \""Charger\""]",386.39,"{\""loyalty\"": \""9%\""}",243524,0,"""North America""" +2023-03-24,13187,7491,"[\""Charger\""]",3175.4,{},132738,1,"""Asia""" +2024-06-16,13188,7232,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1353.31,{},148634,0,"""Africa""" +2024-02-25,13189,3521,"[\""Tablet\""]",337.85,{},71188,1,"""South America""" +2024-06-05,13190,4210,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",573.17,{},114139,0,"""South America""" +2024-06-18,13191,2667,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",564.63,{},25362,0,"""North America""" +2023-11-26,13192,952,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3388.08,"{\""seasonal\"": \""12%\""}",24447,0,"""Africa""" +2023-03-07,13193,7688,"[\""Charger\""]",3614.37,"{\""loyalty\"": \""18%\""}",131130,0,"""South America""" +2024-12-30,13194,5451,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1387.3,{},33760,1,"""Europe""" +2023-06-02,13195,1017,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1476.02,{},110053,1,"""Europe""" +2023-08-22,13196,1386,"[\""Monitor\"", \""Phone\""]",2252.73,{},157219,0,"""Africa""" +2024-03-14,13197,1881,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1668.81,{},126034,1,"""Asia""" +2023-06-12,13198,2245,"[\""Headphones\""]",2231.59,"{\""promo\"": \""30%\""}",48518,1,"""Africa""" +2023-11-10,13199,9751,"[\""Charger\""]",3419.21,{},144994,0,"""Africa""" +2023-05-24,13200,6697,"[\""Wireless Mouse\"", \""Phone\""]",3815.39,"{\""loyalty\"": \""28%\""}",159154,1,"""North America""" +2024-07-08,13201,1758,"[\""Tablet\"", \""Headphones\""]",997.05,"{\""loyalty\"": \""11%\""}",118432,1,"""Europe""" +2024-01-05,13202,6273,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3914.5,{},220377,1,"""Europe""" +2023-09-12,13203,3681,"[\""Headphones\"", \""Monitor\""]",4865.34,"{\""promo\"": \""15%\""}",108970,1,"""North America""" +2023-12-10,13204,7778,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",833.8,"{\""loyalty\"": \""19%\""}",84690,1,"""North America""" +2023-10-19,13205,6070,"[\""Phone\"", \""Keyboard\""]",1353.59,{},235259,0,"""South America""" +2024-12-17,13206,9317,"[\""Phone\"", \""Tablet\""]",4929.94,{},168586,1,"""Europe""" +2023-02-19,13207,4840,"[\""Charger\"", \""Laptop\""]",4228.09,{},111158,0,"""Asia""" +2024-06-17,13208,3581,"[\""Charger\"", \""Phone\""]",592.42,{},54521,1,"""Asia""" +2024-09-23,13209,3220,"[\""Monitor\"", \""Wireless Mouse\""]",4287.55,{},50883,0,"""South America""" +2024-12-15,13210,9950,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",857.47,{},125254,0,"""Europe""" +2024-03-14,13211,5431,"[\""Monitor\"", \""Phone\""]",3694.97,"{\""seasonal\"": \""30%\""}",156643,0,"""South America""" +2024-02-25,13212,309,"[\""Wireless Mouse\""]",62.62,"{\""seasonal\"": \""11%\""}",192269,0,"""Africa""" +2023-05-14,13213,4045,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2800.53,{},256731,1,"""Africa""" +2023-01-18,13214,7899,"[\""Keyboard\"", \""Headphones\""]",503.74,{},40427,0,"""South America""" +2023-04-06,13215,4206,"[\""Tablet\""]",991.61,"{\""seasonal\"": \""28%\""}",32173,0,"""Asia""" +2024-08-06,13216,7761,"[\""Phone\"", \""Tablet\""]",4131.06,"{\""loyalty\"": \""22%\""}",20226,0,"""Asia""" +2023-11-30,13217,8942,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2343.32,"{\""loyalty\"": \""18%\""}",97296,1,"""Africa""" +2023-01-21,13218,2880,"[\""Laptop\""]",3904.59,{},277931,0,"""Africa""" +2023-05-22,13219,1218,"[\""Wireless Mouse\"", \""Laptop\""]",448.03,"{\"": \""28%\""}",290377,1,"""Africa""" +2023-11-18,13220,6279,"[\""Monitor\"", \""Headphones\""]",4054.61,"{\""promo\"": \""27%\""}",202733,1,"""South America""" +2023-05-08,13221,6579,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4511.97,{},130400,1,"""Europe""" +2024-11-15,13222,2333,"[\""Keyboard\"", \""Charger\""]",3448.28,{},239016,0,"""South America""" +2023-09-25,13223,8148,"[\""Charger\""]",2673.37,{},11910,1,"""Europe""" +2023-01-05,13224,1504,"[\""Keyboard\""]",2272.61,{},150364,0,"""Africa""" +2023-03-07,13225,7330,"[\""Wireless Mouse\""]",1404.08,"{\""loyalty\"": \""19%\""}",158839,0,"""South America""" +2024-07-07,13226,768,"[\""Laptop\""]",1729.65,{},212290,1,"""Europe""" +2024-08-05,13227,3338,"[\""Tablet\""]",2507.17,"{\"": \""29%\""}",269519,0,"""Europe""" +2023-04-09,13228,2111,"[\""Wireless Mouse\""]",2144.36,{},61944,0,"""North America""" +2024-10-01,13229,5651,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3782.57,"{\"": \""26%\""}",2719,1,"""Asia""" +2024-10-17,13230,2421,"[\""Phone\""]",139.32,{},248653,0,"""North America""" +2024-09-07,13231,2669,"[\""Tablet\"", \""Laptop\""]",274.08,{},238490,1,"""North America""" +2023-06-14,13232,1201,"[\""Wireless Mouse\"", \""Tablet\""]",965.12,"{\""loyalty\"": \""10%\""}",259120,0,"""Europe""" +2024-04-02,13233,1254,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1701.53,{},203171,1,"""South America""" +2023-03-25,13234,6921,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",628.97,{},129703,1,"""South America""" +2024-09-04,13235,1031,"[\""Monitor\""]",677.61,{},227481,0,"""Europe""" +2023-05-06,13236,1330,"[\""Charger\"", \""Wireless Mouse\""]",3006.55,"{\""loyalty\"": \""7%\""}",37786,1,"""Europe""" +2024-06-07,13237,4543,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",421.59,"{\""loyalty\"": \""12%\""}",41319,1,"""North America""" +2024-05-19,13238,772,"[\""Wireless Mouse\"", \""Phone\""]",1283.91,"{\"": \""18%\""}",256563,0,"""Europe""" +2024-12-21,13239,5322,"[\""Phone\""]",2400.9,"{\""promo\"": \""28%\""}",170223,1,"""Asia""" +2023-11-05,13240,1696,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3000.23,{},111258,1,"""Asia""" +2024-11-04,13241,9350,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4243.2,"{\""seasonal\"": \""30%\""}",228067,1,"""Africa""" +2023-04-08,13242,3093,"[\""Monitor\"", \""Tablet\""]",3138.99,{},146293,0,"""North America""" +2024-02-13,13243,641,"[\""Tablet\""]",2974.02,"{\""seasonal\"": \""6%\""}",278913,0,"""Africa""" +2024-03-25,13244,2468,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3871.05,{},197596,0,"""North America""" +2024-11-16,13245,8398,"[\""Monitor\"", \""Tablet\""]",2300.29,{},153492,0,"""North America""" +2023-12-31,13246,4846,"[\""Tablet\""]",3116.72,{},229468,1,"""Africa""" +2023-03-11,13247,7484,"[\""Wireless Mouse\""]",3908.34,"{\""promo\"": \""25%\""}",142384,0,"""Europe""" +2023-03-12,13248,7944,"[\""Wireless Mouse\"", \""Charger\""]",571.23,"{\""seasonal\"": \""24%\""}",33707,0,"""Africa""" +2024-03-09,13249,3775,"[\""Phone\""]",1319.78,{},27341,1,"""Africa""" +2024-01-07,13250,9774,"[\""Keyboard\"", \""Wireless Mouse\""]",2571.77,"{\""seasonal\"": \""23%\""}",38021,1,"""North America""" +2023-08-26,13251,7579,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3292.8,"{\"": \""11%\""}",132974,0,"""Africa""" +2023-03-06,13252,1373,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",102.37,"{\"": \""20%\""}",222330,1,"""South America""" +2024-08-02,13253,1593,"[\""Monitor\"", \""Keyboard\""]",804.15,{},7148,1,"""North America""" +2024-03-30,13254,1917,"[\""Headphones\"", \""Wireless Mouse\""]",527.78,{},211385,1,"""Europe""" +2023-08-22,13255,2575,"[\""Charger\""]",2123.28,{},216595,0,"""South America""" +2024-03-07,13256,7150,"[\""Headphones\"", \""Tablet\""]",3765.34,"{\""seasonal\"": \""16%\""}",203850,0,"""South America""" +2023-02-20,13257,1814,"[\""Charger\"", \""Monitor\""]",1986.05,{},218039,0,"""Asia""" +2024-07-21,13258,4310,"[\""Keyboard\"", \""Charger\""]",2474.14,"{\""loyalty\"": \""13%\""}",26762,0,"""Africa""" +2024-12-24,13259,1040,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4516.61,"{\""promo\"": \""9%\""}",175264,0,"""Europe""" +2024-10-14,13260,2184,"[\""Keyboard\""]",2284.32,"{\""seasonal\"": \""20%\""}",137515,1,"""South America""" +2024-05-26,13261,2641,"[\""Phone\""]",2003.6,"{\""loyalty\"": \""9%\""}",208942,0,"""Europe""" +2024-09-02,13262,7140,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",968.43,{},32409,0,"""South America""" +2023-04-29,13263,9848,"[\""Charger\"", \""Tablet\""]",463.9,"{\""promo\"": \""27%\""}",92912,0,"""South America""" +2023-06-01,13264,7099,"[\""Wireless Mouse\"", \""Headphones\""]",2502.72,{},173603,1,"""Europe""" +2024-01-13,13265,8010,"[\""Keyboard\"", \""Laptop\""]",3526.42,"{\""loyalty\"": \""18%\""}",183402,0,"""Europe""" +2024-12-06,13266,5361,"[\""Wireless Mouse\""]",2606.43,{},167708,0,"""Asia""" +2023-10-24,13267,9473,"[\""Headphones\"", \""Phone\""]",2276.52,{},193786,1,"""Africa""" +2024-09-13,13268,10000,"[\""Keyboard\""]",4799.01,{},178006,1,"""Europe""" +2023-10-26,13269,4385,"[\""Phone\""]",2022.15,{},251798,0,"""Asia""" +2024-02-01,13270,333,"[\""Laptop\"", \""Charger\""]",1044.3,"{\""loyalty\"": \""21%\""}",122501,1,"""South America""" +2023-12-18,13271,6423,"[\""Laptop\""]",2294.71,{},63187,1,"""North America""" +2024-12-21,13272,2726,"[\""Monitor\"", \""Headphones\""]",4617.0,"{\""seasonal\"": \""6%\""}",61066,0,"""North America""" +2024-06-10,13273,1344,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2616.03,"{\""seasonal\"": \""14%\""}",78493,1,"""North America""" +2023-04-04,13274,195,"[\""Tablet\""]",317.62,"{\"": \""16%\""}",153714,0,"""Africa""" +2024-08-21,13275,2468,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1227.11,"{\""promo\"": \""11%\""}",208826,1,"""North America""" +2023-01-29,13276,2186,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2689.59,"{\""loyalty\"": \""30%\""}",24380,1,"""South America""" +2024-02-04,13277,7573,"[\""Charger\""]",4616.17,{},272044,0,"""Europe""" +2024-10-25,13278,8323,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3583.76,"{\"": \""13%\""}",296696,0,"""South America""" +2024-05-30,13279,3809,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",953.38,{},40164,0,"""Africa""" +2023-10-29,13280,8138,"[\""Wireless Mouse\"", \""Phone\""]",1262.82,{},90517,1,"""North America""" +2024-10-05,13281,9842,"[\""Monitor\""]",1497.11,"{\"": \""14%\""}",184252,1,"""South America""" +2023-10-09,13282,8537,"[\""Monitor\""]",724.46,"{\""loyalty\"": \""11%\""}",87918,1,"""Asia""" +2024-12-08,13283,1855,"[\""Tablet\""]",4090.31,"{\""promo\"": \""12%\""}",55168,1,"""Europe""" +2024-06-23,13284,900,"[\""Keyboard\"", \""Headphones\""]",2789.3,{},98343,0,"""Asia""" +2024-02-27,13285,3194,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3964.15,"{\""promo\"": \""11%\""}",292755,0,"""South America""" +2023-11-30,13286,8142,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2147.11,{},120672,0,"""North America""" +2024-08-26,13287,6379,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3296.56,{},90145,1,"""Europe""" +2024-10-21,13288,4199,"[\""Charger\""]",1997.2,"{\"": \""19%\""}",114827,1,"""Africa""" +2024-09-06,13289,3798,"[\""Charger\"", \""Tablet\""]",3239.99,{},95659,0,"""South America""" +2023-09-21,13290,2057,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3676.63,"{\"": \""11%\""}",158733,0,"""South America""" +2023-06-22,13291,1050,"[\""Tablet\"", \""Monitor\""]",656.95,"{\""loyalty\"": \""28%\""}",15081,1,"""Asia""" +2024-01-31,13292,8270,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3810.75,{},255392,0,"""Asia""" +2024-02-03,13293,6845,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",505.52,{},223906,1,"""Asia""" +2024-09-22,13294,9379,"[\""Wireless Mouse\""]",2779.14,"{\"": \""23%\""}",108810,1,"""North America""" +2023-05-28,13295,6339,"[\""Headphones\"", \""Wireless Mouse\""]",580.21,"{\""seasonal\"": \""13%\""}",193926,0,"""South America""" +2023-02-21,13296,8986,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2487.67,{},57963,1,"""South America""" +2024-11-23,13297,1584,"[\""Laptop\""]",3516.22,{},264978,1,"""North America""" +2024-12-19,13298,4523,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2814.67,{},134347,0,"""Asia""" +2023-10-12,13299,3698,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4642.35,"{\""promo\"": \""26%\""}",136571,0,"""Europe""" +2024-10-28,13300,8929,"[\""Keyboard\""]",966.56,{},53152,1,"""Africa""" +2024-06-26,13301,1756,"[\""Phone\"", \""Tablet\""]",4384.53,"{\"": \""28%\""}",64328,1,"""South America""" +2023-05-18,13302,3549,"[\""Keyboard\"", \""Tablet\""]",1240.35,{},218665,1,"""North America""" +2023-09-05,13303,8027,"[\""Wireless Mouse\""]",2097.3,{},47901,1,"""Asia""" +2024-09-26,13304,8428,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4890.96,{},65185,0,"""South America""" +2023-08-06,13305,536,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2646.15,{},179878,0,"""Asia""" +2023-10-13,13306,570,"[\""Phone\"", \""Laptop\""]",1838.33,{},181358,0,"""Asia""" +2024-11-12,13307,103,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1693.15,{},249007,0,"""Asia""" +2024-10-20,13308,3841,"[\""Phone\"", \""Tablet\""]",288.17,"{\"": \""19%\""}",270909,1,"""South America""" +2023-09-04,13309,1654,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1609.14,{},237006,0,"""North America""" +2024-12-28,13310,9945,"[\""Monitor\""]",2829.84,"{\""seasonal\"": \""12%\""}",153438,1,"""North America""" +2024-04-26,13311,8153,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4856.31,{},208916,1,"""North America""" +2023-04-11,13312,8603,"[\""Laptop\""]",277.31,"{\""promo\"": \""27%\""}",176095,0,"""Africa""" +2024-06-08,13313,4523,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",674.55,"{\""seasonal\"": \""22%\""}",187043,1,"""South America""" +2024-09-14,13314,2279,"[\""Tablet\""]",1382.82,{},92636,0,"""Africa""" +2023-06-16,13315,1144,"[\""Headphones\"", \""Monitor\""]",1870.94,{},162431,0,"""Africa""" +2023-03-31,13316,4626,"[\""Wireless Mouse\"", \""Laptop\""]",2389.22,"{\""loyalty\"": \""23%\""}",153115,1,"""North America""" +2023-05-04,13317,8287,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3423.48,{},9303,1,"""Asia""" +2023-03-04,13318,5924,"[\""Phone\"", \""Tablet\""]",941.76,"{\"": \""11%\""}",1395,0,"""South America""" +2023-05-02,13319,8342,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2766.03,"{\""promo\"": \""7%\""}",69563,0,"""Africa""" +2023-03-19,13320,97,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1441.23,{},220723,1,"""Europe""" +2024-11-17,13321,5580,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3207.59,"{\""loyalty\"": \""9%\""}",139910,0,"""South America""" +2023-02-20,13322,2326,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3373.98,{},141025,0,"""North America""" +2024-01-24,13323,2910,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4415.0,"{\""seasonal\"": \""15%\""}",60657,0,"""Africa""" +2023-02-17,13324,1356,"[\""Phone\"", \""Laptop\""]",3891.77,"{\"": \""20%\""}",188348,0,"""North America""" +2023-11-26,13325,9969,"[\""Phone\""]",569.85,{},235004,1,"""Asia""" +2024-10-21,13326,7961,"[\""Tablet\""]",2220.71,{},166958,1,"""South America""" +2023-08-10,13327,5254,"[\""Tablet\"", \""Wireless Mouse\""]",4424.63,{},246308,1,"""South America""" +2023-09-01,13328,1421,"[\""Headphones\""]",2809.97,{},281729,1,"""Europe""" +2023-04-30,13329,4061,"[\""Laptop\"", \""Headphones\""]",2559.34,{},120129,1,"""South America""" +2024-12-27,13330,5257,"[\""Wireless Mouse\""]",811.94,"{\"": \""7%\""}",72786,0,"""Europe""" +2023-10-21,13331,3497,"[\""Keyboard\""]",2143.72,{},24339,0,"""South America""" +2024-03-12,13332,7560,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1348.0,{},97387,0,"""Europe""" +2024-11-27,13333,5380,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2917.07,{},125671,0,"""Europe""" +2024-01-09,13334,7415,"[\""Phone\"", \""Tablet\""]",2048.89,"{\""loyalty\"": \""27%\""}",283206,0,"""Europe""" +2024-07-20,13335,4183,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4933.03,"{\""seasonal\"": \""17%\""}",294626,1,"""South America""" +2023-08-14,13336,9939,"[\""Charger\"", \""Phone\""]",119.81,{},123268,0,"""Asia""" +2023-09-06,13337,3397,"[\""Phone\""]",4012.87,"{\""promo\"": \""17%\""}",149696,1,"""Africa""" +2023-05-21,13338,3698,"[\""Keyboard\""]",2470.96,"{\""loyalty\"": \""30%\""}",21366,0,"""Europe""" +2024-08-26,13339,1527,"[\""Headphones\"", \""Laptop\""]",1394.69,{},238289,0,"""North America""" +2023-12-21,13340,4372,"[\""Headphones\"", \""Keyboard\""]",3783.75,{},163590,1,"""Asia""" +2024-01-10,13341,5622,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4786.63,"{\""loyalty\"": \""11%\""}",14891,1,"""South America""" +2024-03-11,13342,9749,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2664.05,"{\""seasonal\"": \""9%\""}",223452,1,"""North America""" +2024-08-29,13343,3899,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3385.52,{},186403,0,"""North America""" +2023-05-29,13344,720,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4416.1,"{\""seasonal\"": \""23%\""}",47355,0,"""South America""" +2023-11-05,13345,6100,"[\""Phone\"", \""Charger\""]",4566.34,{},291604,1,"""South America""" +2023-10-09,13346,1450,"[\""Keyboard\""]",4672.94,{},180982,0,"""Africa""" +2023-04-23,13347,1549,"[\""Laptop\"", \""Tablet\""]",1928.92,"{\""promo\"": \""12%\""}",58416,1,"""North America""" +2023-05-13,13348,1675,"[\""Monitor\""]",2337.2,"{\""seasonal\"": \""30%\""}",16646,0,"""South America""" +2023-01-28,13349,139,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2424.55,"{\"": \""12%\""}",15168,1,"""Europe""" +2024-05-11,13350,9904,"[\""Tablet\""]",540.87,{},156506,0,"""Africa""" +2023-05-22,13351,2541,"[\""Laptop\"", \""Tablet\""]",4515.64,{},258998,1,"""Europe""" +2024-09-30,13352,643,"[\""Keyboard\"", \""Phone\""]",4881.97,{},202202,1,"""South America""" +2024-08-11,13353,1497,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4694.01,{},211635,1,"""Africa""" +2023-07-15,13354,9041,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",643.94,"{\""promo\"": \""26%\""}",166920,0,"""South America""" +2023-03-22,13355,4974,"[\""Charger\""]",4545.93,"{\"": \""14%\""}",238648,0,"""North America""" +2024-11-15,13356,2533,"[\""Laptop\"", \""Keyboard\""]",1531.49,"{\"": \""29%\""}",158744,0,"""Europe""" +2023-04-10,13357,3053,"[\""Phone\""]",527.63,{},236123,0,"""Asia""" +2024-08-28,13358,5776,"[\""Phone\""]",2111.51,"{\"": \""11%\""}",278720,1,"""Europe""" +2024-10-10,13359,6844,"[\""Keyboard\""]",4885.44,{},74810,1,"""Africa""" +2024-07-29,13360,3984,"[\""Wireless Mouse\""]",2192.95,"{\""seasonal\"": \""11%\""}",69838,0,"""North America""" +2023-06-21,13361,2025,"[\""Headphones\"", \""Monitor\""]",91.54,{},3398,1,"""Europe""" +2023-01-22,13362,9938,"[\""Keyboard\"", \""Headphones\""]",1462.77,"{\""loyalty\"": \""6%\""}",192214,0,"""South America""" +2024-07-09,13363,8847,"[\""Laptop\"", \""Wireless Mouse\""]",2274.63,{},72359,0,"""Europe""" +2024-06-29,13364,7779,"[\""Wireless Mouse\""]",4274.48,{},57922,0,"""North America""" +2024-06-03,13365,5850,"[\""Monitor\""]",1890.51,{},216096,1,"""Asia""" +2024-08-14,13366,8745,"[\""Tablet\""]",2034.46,{},83602,0,"""North America""" +2023-08-02,13367,5883,"[\""Keyboard\""]",2265.61,{},270249,1,"""Africa""" +2024-12-15,13368,5903,"[\""Phone\"", \""Monitor\""]",2567.47,"{\"": \""13%\""}",41499,0,"""Europe""" +2023-12-08,13369,2866,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3902.65,{},121453,1,"""Africa""" +2024-01-07,13370,7096,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2632.33,{},145824,1,"""North America""" +2024-08-08,13371,9143,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3941.91,{},241337,1,"""Africa""" +2024-04-03,13372,7480,"[\""Tablet\""]",3415.55,{},265269,1,"""Africa""" +2024-01-30,13373,1566,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4843.41,{},222936,0,"""South America""" +2023-12-11,13374,8003,"[\""Phone\"", \""Monitor\""]",841.67,{},133095,1,"""Asia""" +2023-03-24,13375,9653,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3467.72,{},163635,1,"""Europe""" +2023-11-04,13376,1098,"[\""Charger\""]",2821.19,{},267020,0,"""South America""" +2024-05-27,13377,4978,"[\""Keyboard\"", \""Tablet\""]",2365.11,"{\""promo\"": \""23%\""}",246511,0,"""South America""" +2023-12-05,13378,7997,"[\""Laptop\""]",4848.52,{},291117,0,"""South America""" +2023-01-20,13379,3563,"[\""Tablet\""]",720.95,"{\""seasonal\"": \""27%\""}",60319,0,"""Europe""" +2024-12-01,13380,1232,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4592.39,{},153624,1,"""Africa""" +2023-02-15,13381,1932,"[\""Monitor\""]",858.75,{},235715,1,"""Africa""" +2024-12-19,13382,5277,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",535.67,"{\"": \""8%\""}",108231,1,"""South America""" +2023-09-12,13383,2959,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4925.39,{},245458,1,"""Europe""" +2024-11-28,13384,559,"[\""Charger\"", \""Monitor\""]",4235.24,"{\""promo\"": \""29%\""}",138426,0,"""South America""" +2024-11-03,13385,3718,"[\""Wireless Mouse\""]",1944.39,"{\""loyalty\"": \""28%\""}",281422,0,"""Africa""" +2023-05-12,13386,5095,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1618.24,"{\"": \""7%\""}",267430,0,"""Africa""" +2023-04-26,13387,4658,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4233.67,"{\""loyalty\"": \""12%\""}",21611,0,"""Asia""" +2023-03-06,13388,6458,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2368.34,{},281287,0,"""Africa""" +2024-09-24,13389,3321,"[\""Monitor\""]",2940.27,{},63948,0,"""Asia""" +2024-03-04,13390,3917,"[\""Headphones\""]",2538.24,{},112023,0,"""Africa""" +2023-08-30,13391,8303,"[\""Monitor\""]",1495.81,"{\""seasonal\"": \""21%\""}",280777,1,"""Asia""" +2024-10-01,13392,6671,"[\""Phone\"", \""Keyboard\""]",3836.51,"{\""loyalty\"": \""21%\""}",196609,1,"""North America""" +2023-11-28,13393,9831,"[\""Charger\""]",4112.13,{},122414,0,"""Asia""" +2023-07-29,13394,9914,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3293.45,"{\""loyalty\"": \""29%\""}",61632,1,"""Africa""" +2024-08-26,13395,3933,"[\""Keyboard\""]",1237.8,{},277940,1,"""North America""" +2023-03-16,13396,8595,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1965.23,"{\""loyalty\"": \""5%\""}",80043,1,"""Europe""" +2023-07-10,13397,71,"[\""Charger\""]",2831.86,{},235630,1,"""Asia""" +2024-09-28,13398,2308,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4426.28,{},145835,1,"""North America""" +2023-05-21,13399,5679,"[\""Monitor\""]",426.92,"{\""promo\"": \""17%\""}",227545,0,"""Africa""" +2023-12-30,13400,8462,"[\""Tablet\""]",2299.63,"{\""seasonal\"": \""10%\""}",36318,0,"""Europe""" +2023-06-04,13401,1247,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",166.27,"{\""seasonal\"": \""24%\""}",1268,0,"""South America""" +2024-12-29,13402,5290,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2135.28,"{\"": \""13%\""}",50467,1,"""North America""" +2023-03-22,13403,4358,"[\""Monitor\"", \""Keyboard\""]",1545.55,{},253040,1,"""Africa""" +2023-01-15,13404,7114,"[\""Charger\""]",2478.2,"{\""loyalty\"": \""7%\""}",218873,1,"""South America""" +2024-07-09,13405,5507,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1767.38,"{\""promo\"": \""17%\""}",13733,0,"""Africa""" +2024-08-23,13406,9873,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2426.25,{},77193,1,"""South America""" +2024-09-13,13407,6433,"[\""Wireless Mouse\""]",4764.25,{},119467,1,"""Africa""" +2024-02-26,13408,8116,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2110.6,"{\""promo\"": \""26%\""}",129749,0,"""South America""" +2023-07-14,13409,8725,"[\""Headphones\""]",775.51,"{\"": \""30%\""}",151994,1,"""Asia""" +2023-11-15,13410,127,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4190.11,"{\""seasonal\"": \""10%\""}",63944,0,"""North America""" +2024-08-29,13411,3445,"[\""Phone\"", \""Charger\""]",2691.58,{},248668,0,"""North America""" +2023-06-02,13412,7711,"[\""Monitor\""]",3096.51,"{\""seasonal\"": \""28%\""}",290605,1,"""Asia""" +2023-09-04,13413,1467,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1452.18,"{\""seasonal\"": \""16%\""}",1807,0,"""North America""" +2024-08-13,13414,9143,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3678.51,"{\"": \""20%\""}",63199,0,"""North America""" +2024-01-09,13415,7550,"[\""Wireless Mouse\""]",4223.54,{},201034,1,"""Asia""" +2024-08-20,13416,5704,"[\""Laptop\""]",2516.3,{},108783,1,"""Europe""" +2023-10-21,13417,8029,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4984.15,"{\""loyalty\"": \""25%\""}",52619,1,"""Europe""" +2024-12-14,13418,6645,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3985.82,"{\""promo\"": \""29%\""}",171013,1,"""Africa""" +2024-02-10,13419,3867,"[\""Monitor\""]",1339.83,"{\""loyalty\"": \""28%\""}",269332,1,"""North America""" +2024-08-01,13420,2990,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1967.98,"{\""seasonal\"": \""12%\""}",295091,0,"""South America""" +2024-06-08,13421,1611,"[\""Wireless Mouse\""]",4062.46,"{\""loyalty\"": \""6%\""}",26062,0,"""South America""" +2023-06-17,13422,3391,"[\""Charger\"", \""Tablet\""]",363.3,"{\""promo\"": \""9%\""}",178961,1,"""Asia""" +2024-01-07,13423,1533,"[\""Charger\""]",4324.63,"{\"": \""17%\""}",82828,1,"""Asia""" +2024-01-12,13424,3297,"[\""Tablet\""]",1971.83,{},225726,1,"""South America""" +2024-08-21,13425,4658,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",178.01,{},102152,0,"""South America""" +2024-06-01,13426,4544,"[\""Phone\""]",4534.42,{},112919,1,"""South America""" +2024-03-31,13427,9243,"[\""Phone\"", \""Laptop\""]",3521.21,"{\""loyalty\"": \""10%\""}",105906,0,"""Asia""" +2024-06-20,13428,4649,"[\""Charger\"", \""Laptop\""]",1600.99,{},245550,0,"""Europe""" +2023-06-05,13429,4721,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",634.56,"{\""promo\"": \""18%\""}",156659,0,"""Asia""" +2023-11-10,13430,9085,"[\""Headphones\"", \""Tablet\""]",4205.09,{},194865,1,"""North America""" +2024-12-28,13431,5572,"[\""Laptop\""]",4264.05,"{\"": \""19%\""}",166960,1,"""Africa""" +2024-01-10,13432,8098,"[\""Laptop\"", \""Monitor\""]",4529.77,{},98243,0,"""Europe""" +2024-07-20,13433,8200,"[\""Tablet\"", \""Keyboard\""]",179.31,{},7951,0,"""North America""" +2024-04-08,13434,8705,"[\""Headphones\""]",4579.23,"{\"": \""21%\""}",260753,0,"""Europe""" +2023-05-30,13435,8053,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",113.56,"{\""loyalty\"": \""25%\""}",234994,0,"""North America""" +2023-07-19,13436,5567,"[\""Tablet\"", \""Phone\""]",1475.9,{},169747,1,"""Europe""" +2023-08-16,13437,209,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",701.57,"{\""promo\"": \""23%\""}",182983,1,"""Europe""" +2023-12-17,13438,4280,"[\""Laptop\"", \""Tablet\""]",1610.93,"{\""promo\"": \""10%\""}",64408,1,"""Africa""" +2024-02-21,13439,8424,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3196.42,{},227059,0,"""Africa""" +2024-08-08,13440,2088,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3023.72,{},220661,1,"""South America""" +2024-05-06,13441,1321,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2462.58,{},105637,0,"""South America""" +2023-02-13,13442,7546,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2358.25,{},87972,0,"""Africa""" +2024-11-16,13443,3789,"[\""Wireless Mouse\""]",4777.65,"{\"": \""15%\""}",194301,0,"""South America""" +2024-01-02,13444,6376,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4460.67,"{\""promo\"": \""20%\""}",146699,0,"""Europe""" +2024-04-01,13445,8678,"[\""Wireless Mouse\"", \""Charger\""]",4678.47,"{\"": \""22%\""}",63735,0,"""Asia""" +2024-04-27,13446,9251,"[\""Keyboard\"", \""Wireless Mouse\""]",3332.78,"{\""loyalty\"": \""20%\""}",157853,0,"""Asia""" +2024-03-13,13447,2042,"[\""Monitor\"", \""Charger\""]",1488.9,{},126160,1,"""Europe""" +2023-04-07,13448,5588,"[\""Phone\""]",2779.8,{},140253,1,"""South America""" +2023-08-23,13449,8802,"[\""Phone\""]",2508.24,"{\"": \""15%\""}",253431,1,"""Africa""" +2023-12-02,13450,2942,"[\""Monitor\"", \""Keyboard\""]",2143.46,"{\""seasonal\"": \""24%\""}",179933,1,"""Europe""" +2023-12-04,13451,3554,"[\""Charger\""]",2450.92,{},72950,0,"""South America""" +2023-11-28,13452,9475,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4809.54,"{\""promo\"": \""17%\""}",208118,0,"""South America""" +2024-07-03,13453,3236,"[\""Tablet\"", \""Headphones\""]",3564.04,{},159507,1,"""North America""" +2024-07-13,13454,8435,"[\""Phone\"", \""Headphones\""]",2229.13,"{\""seasonal\"": \""9%\""}",95948,1,"""Europe""" +2024-04-03,13455,2888,"[\""Laptop\""]",1831.13,{},155488,0,"""Africa""" +2023-09-12,13456,3376,"[\""Tablet\""]",3970.91,"{\"": \""7%\""}",140087,0,"""Africa""" +2023-04-20,13457,5793,"[\""Tablet\""]",3120.32,{},37996,1,"""Africa""" +2023-06-17,13458,3652,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2952.73,{},19554,1,"""Africa""" +2024-01-13,13459,6801,"[\""Keyboard\""]",1984.22,{},285921,0,"""South America""" +2023-06-04,13460,2527,"[\""Keyboard\""]",3324.8,"{\""loyalty\"": \""16%\""}",147152,1,"""Asia""" +2023-04-17,13461,9518,"[\""Laptop\""]",4440.03,{},142325,0,"""Africa""" +2023-06-05,13462,4961,"[\""Monitor\"", \""Phone\""]",2894.86,{},232721,0,"""Europe""" +2023-12-09,13463,1915,"[\""Charger\""]",309.44,"{\""loyalty\"": \""26%\""}",30369,0,"""North America""" +2024-11-23,13464,9474,"[\""Wireless Mouse\""]",4677.34,"{\""loyalty\"": \""27%\""}",12063,1,"""North America""" +2023-03-30,13465,4679,"[\""Headphones\"", \""Wireless Mouse\""]",611.88,{},137179,1,"""Asia""" +2024-11-19,13466,739,"[\""Monitor\""]",1677.61,{},58568,0,"""Europe""" +2024-04-20,13467,153,"[\""Tablet\""]",880.68,"{\""seasonal\"": \""23%\""}",36306,0,"""Europe""" +2024-06-10,13468,8450,"[\""Tablet\""]",4626.84,"{\""seasonal\"": \""12%\""}",92027,1,"""Africa""" +2024-06-08,13469,898,"[\""Laptop\""]",424.98,{},65063,0,"""Asia""" +2023-11-11,13470,7852,"[\""Monitor\"", \""Charger\""]",2944.2,"{\""loyalty\"": \""18%\""}",66159,1,"""Asia""" +2023-01-22,13471,1094,"[\""Headphones\""]",2208.1,"{\""promo\"": \""15%\""}",263386,1,"""Africa""" +2023-07-28,13472,9885,"[\""Monitor\""]",612.24,{},85471,1,"""North America""" +2023-10-27,13473,7997,"[\""Keyboard\""]",683.08,{},70272,0,"""South America""" +2023-01-14,13474,8290,"[\""Charger\"", \""Tablet\""]",977.58,{},139755,1,"""Africa""" +2023-02-18,13475,9074,"[\""Keyboard\""]",3822.91,"{\"": \""11%\""}",192339,1,"""Africa""" +2024-01-08,13476,7173,"[\""Wireless Mouse\"", \""Keyboard\""]",1513.79,"{\""seasonal\"": \""18%\""}",195257,1,"""Europe""" +2024-09-05,13477,786,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2194.96,"{\""loyalty\"": \""17%\""}",257460,1,"""South America""" +2024-01-29,13478,9574,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1630.21,"{\""promo\"": \""14%\""}",14191,0,"""Europe""" +2023-10-09,13479,6487,"[\""Headphones\"", \""Keyboard\""]",4970.48,{},118532,0,"""Asia""" +2024-01-16,13480,667,"[\""Laptop\""]",1739.35,"{\"": \""19%\""}",52547,0,"""South America""" +2024-09-26,13481,4648,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3143.63,{},145305,1,"""Asia""" +2023-01-11,13482,5733,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3976.3,{},92636,1,"""South America""" +2023-10-06,13483,4340,"[\""Phone\""]",1247.55,{},223492,0,"""North America""" +2023-10-24,13484,3737,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",137.79,"{\""loyalty\"": \""15%\""}",139502,1,"""Africa""" +2024-02-17,13485,3423,"[\""Tablet\"", \""Keyboard\""]",2613.03,{},192319,0,"""North America""" +2023-06-24,13486,2583,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3470.68,"{\"": \""19%\""}",107698,0,"""South America""" +2024-02-07,13487,8135,"[\""Headphones\"", \""Monitor\""]",2934.31,{},47635,1,"""South America""" +2024-12-03,13488,8833,"[\""Monitor\"", \""Charger\""]",1393.46,{},270222,1,"""North America""" +2024-09-23,13489,6584,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",276.92,"{\""seasonal\"": \""20%\""}",210944,1,"""North America""" +2023-08-02,13490,5760,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2216.76,{},18741,1,"""Europe""" +2024-12-01,13491,2124,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1727.21,{},49824,1,"""Europe""" +2024-07-28,13492,7240,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4525.01,"{\""loyalty\"": \""19%\""}",231886,1,"""Europe""" +2024-04-03,13493,3713,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",911.22,"{\"": \""12%\""}",280936,0,"""Asia""" +2023-04-06,13494,7028,"[\""Wireless Mouse\""]",1934.08,{},252619,1,"""Africa""" +2023-06-27,13495,6007,"[\""Wireless Mouse\""]",4919.9,"{\""seasonal\"": \""13%\""}",196409,0,"""Europe""" +2023-06-26,13496,8237,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2848.62,"{\""promo\"": \""15%\""}",63805,1,"""Asia""" +2023-03-10,13497,4038,"[\""Tablet\"", \""Laptop\""]",470.81,{},298230,1,"""Asia""" +2024-11-28,13498,2598,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4890.72,{},238697,1,"""North America""" +2023-12-24,13499,1247,"[\""Tablet\""]",645.17,{},107551,0,"""South America""" +2024-01-31,13500,3808,"[\""Wireless Mouse\"", \""Headphones\""]",2913.73,{},40002,0,"""Africa""" +2023-12-14,13501,3833,"[\""Monitor\""]",4039.83,"{\""loyalty\"": \""23%\""}",76822,1,"""Europe""" +2023-10-23,13502,563,"[\""Charger\""]",1506.92,{},127726,1,"""North America""" +2023-06-18,13503,8648,"[\""Monitor\"", \""Laptop\""]",4908.22,{},277063,0,"""North America""" +2024-04-08,13504,7999,"[\""Headphones\""]",2694.95,{},298233,0,"""Europe""" +2024-05-11,13505,1119,"[\""Laptop\"", \""Headphones\""]",4375.71,"{\"": \""11%\""}",255125,0,"""Europe""" +2024-08-17,13506,1815,"[\""Laptop\""]",547.59,{},267441,1,"""Asia""" +2024-05-15,13507,2288,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4828.14,{},167757,0,"""Europe""" +2023-04-20,13508,3195,"[\""Phone\"", \""Laptop\""]",2840.64,{},237227,1,"""Africa""" +2024-08-01,13509,3988,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4786.64,{},216131,1,"""Africa""" +2024-12-09,13510,2610,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3250.5,"{\""promo\"": \""11%\""}",282173,0,"""Europe""" +2023-08-24,13511,3044,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3328.84,"{\""promo\"": \""25%\""}",272474,1,"""Africa""" +2024-03-14,13512,321,"[\""Laptop\""]",4413.99,{},40710,0,"""South America""" +2024-03-10,13513,4545,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2180.59,{},99274,0,"""North America""" +2023-12-07,13514,6605,"[\""Tablet\""]",1024.33,"{\""loyalty\"": \""8%\""}",295455,0,"""Asia""" +2023-01-31,13515,3083,"[\""Charger\"", \""Headphones\""]",3696.98,"{\""loyalty\"": \""8%\""}",275678,0,"""North America""" +2023-10-05,13516,7775,"[\""Tablet\"", \""Charger\""]",654.92,"{\"": \""16%\""}",90046,1,"""Africa""" +2024-11-06,13517,2538,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4873.67,{},24863,0,"""Europe""" +2024-07-29,13518,9355,"[\""Headphones\""]",4110.32,{},14225,1,"""Africa""" +2023-01-13,13519,6622,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2389.87,{},148100,0,"""South America""" +2024-10-16,13520,2584,"[\""Charger\"", \""Laptop\""]",1217.36,{},133083,0,"""Asia""" +2023-09-26,13521,2501,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",734.95,"{\""seasonal\"": \""7%\""}",3684,1,"""South America""" +2023-10-10,13522,550,"[\""Laptop\"", \""Wireless Mouse\""]",4973.33,"{\"": \""15%\""}",204162,1,"""North America""" +2024-08-19,13523,9195,"[\""Laptop\""]",3846.6,"{\""loyalty\"": \""13%\""}",271591,1,"""South America""" +2023-01-03,13524,7434,"[\""Tablet\"", \""Monitor\""]",2758.9,"{\""seasonal\"": \""28%\""}",250648,1,"""Europe""" +2024-03-31,13525,1024,"[\""Tablet\""]",4338.16,"{\""loyalty\"": \""11%\""}",182868,0,"""Europe""" +2023-11-14,13526,6400,"[\""Laptop\"", \""Charger\""]",2797.91,"{\""promo\"": \""20%\""}",243134,0,"""Europe""" +2023-11-06,13527,9887,"[\""Laptop\""]",3166.28,{},292856,0,"""Africa""" +2023-05-24,13528,9799,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",164.88,"{\""loyalty\"": \""28%\""}",291115,0,"""Europe""" +2023-03-10,13529,6584,"[\""Laptop\""]",3577.04,{},12469,0,"""Africa""" +2023-10-27,13530,6419,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2474.85,{},96250,0,"""North America""" +2023-09-07,13531,9480,"[\""Charger\""]",3109.56,{},294928,0,"""Africa""" +2024-06-06,13532,9328,"[\""Monitor\"", \""Tablet\""]",2152.72,{},116375,1,"""Asia""" +2023-03-21,13533,6983,"[\""Phone\""]",1248.37,{},209105,0,"""North America""" +2023-03-09,13534,8441,"[\""Laptop\""]",1791.16,"{\""promo\"": \""26%\""}",106119,1,"""Asia""" +2023-06-03,13535,3475,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2220.01,"{\""loyalty\"": \""7%\""}",91695,0,"""Europe""" +2023-04-08,13536,6057,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1477.16,"{\"": \""7%\""}",29041,0,"""South America""" +2024-11-18,13537,3446,"[\""Phone\""]",1490.71,{},280674,0,"""South America""" +2024-04-17,13538,6775,"[\""Laptop\"", \""Monitor\""]",1348.93,{},123175,0,"""Africa""" +2024-04-05,13539,5142,"[\""Monitor\"", \""Wireless Mouse\""]",2200.52,"{\""loyalty\"": \""14%\""}",213980,1,"""North America""" +2024-05-20,13540,9628,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2776.36,"{\""loyalty\"": \""5%\""}",228784,1,"""Europe""" +2024-12-16,13541,2352,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2723.11,{},12063,0,"""Asia""" +2023-03-17,13542,7055,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2104.62,{},258910,1,"""Europe""" +2023-12-21,13543,4935,"[\""Tablet\""]",1538.48,{},45338,1,"""North America""" +2023-12-24,13544,5012,"[\""Headphones\"", \""Wireless Mouse\""]",4525.63,{},115362,0,"""North America""" +2023-04-05,13545,5017,"[\""Keyboard\""]",390.1,"{\""promo\"": \""5%\""}",140810,1,"""Asia""" +2023-05-09,13546,6607,"[\""Charger\"", \""Phone\""]",4708.55,"{\""loyalty\"": \""12%\""}",192798,1,"""Africa""" +2023-08-29,13547,7076,"[\""Laptop\"", \""Tablet\""]",1636.4,{},217367,1,"""Africa""" +2024-01-23,13548,8805,"[\""Phone\"", \""Charger\""]",716.76,"{\""promo\"": \""6%\""}",124456,1,"""South America""" +2024-08-14,13549,6542,"[\""Charger\""]",4951.33,"{\""promo\"": \""13%\""}",109071,0,"""Asia""" +2023-10-08,13550,2523,"[\""Laptop\"", \""Charger\""]",129.49,"{\""promo\"": \""26%\""}",10625,1,"""North America""" +2023-03-30,13551,3342,"[\""Charger\""]",3625.42,"{\""seasonal\"": \""11%\""}",105437,1,"""Asia""" +2023-02-03,13552,6035,"[\""Monitor\"", \""Phone\""]",4521.49,{},296770,0,"""South America""" +2023-09-16,13553,7563,"[\""Laptop\"", \""Monitor\""]",2903.39,"{\""seasonal\"": \""10%\""}",275256,0,"""North America""" +2023-04-26,13554,985,"[\""Tablet\"", \""Phone\""]",2192.52,{},44694,1,"""North America""" +2023-05-26,13555,6408,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",640.14,{},73865,0,"""North America""" +2023-05-04,13556,9685,"[\""Wireless Mouse\""]",939.99,"{\""loyalty\"": \""23%\""}",28267,1,"""North America""" +2024-02-15,13557,5496,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2817.84,{},276643,1,"""Europe""" +2023-03-21,13558,5225,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2230.79,"{\""promo\"": \""10%\""}",17962,1,"""Europe""" +2023-07-04,13559,2847,"[\""Charger\""]",961.19,"{\""loyalty\"": \""16%\""}",298869,0,"""Africa""" +2024-10-22,13560,349,"[\""Phone\""]",1469.38,"{\"": \""20%\""}",28649,1,"""Europe""" +2024-07-15,13561,3273,"[\""Laptop\"", \""Charger\""]",4024.6,{},43601,1,"""North America""" +2023-05-06,13562,8472,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1072.26,{},118402,0,"""South America""" +2024-07-18,13563,6250,"[\""Keyboard\"", \""Charger\""]",681.75,{},236928,1,"""South America""" +2024-11-20,13564,450,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4729.76,{},134246,1,"""Africa""" +2024-04-19,13565,3283,"[\""Phone\"", \""Headphones\""]",2908.86,{},5396,0,"""Africa""" +2023-04-26,13566,1943,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3502.38,"{\""seasonal\"": \""13%\""}",196799,1,"""Europe""" +2024-10-19,13567,3362,"[\""Keyboard\""]",4402.5,"{\"": \""29%\""}",96222,0,"""North America""" +2024-12-29,13568,1198,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1848.98,"{\""loyalty\"": \""20%\""}",105109,0,"""North America""" +2023-12-09,13569,1124,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1557.71,{},73012,1,"""Asia""" +2023-01-25,13570,7285,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2928.86,"{\""seasonal\"": \""13%\""}",125576,1,"""Africa""" +2023-07-12,13571,5714,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1151.63,"{\""promo\"": \""15%\""}",213349,1,"""Europe""" +2023-06-16,13572,2962,"[\""Keyboard\"", \""Wireless Mouse\""]",1876.37,{},72610,0,"""North America""" +2023-09-17,13573,1348,"[\""Laptop\""]",4712.15,"{\""promo\"": \""24%\""}",13530,1,"""Africa""" +2023-05-23,13574,6579,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3392.52,{},102404,0,"""North America""" +2023-02-23,13575,3841,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",696.65,"{\""seasonal\"": \""13%\""}",139966,0,"""Europe""" +2023-07-27,13576,7879,"[\""Keyboard\""]",796.85,"{\"": \""15%\""}",203704,1,"""Asia""" +2023-12-29,13577,2134,"[\""Headphones\"", \""Keyboard\""]",4409.03,{},160007,0,"""South America""" +2023-05-21,13578,355,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1397.32,{},185461,0,"""North America""" +2023-04-12,13579,3920,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1207.09,"{\"": \""8%\""}",126341,1,"""Asia""" +2024-06-23,13580,8896,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",206.66,"{\"": \""13%\""}",154080,0,"""North America""" +2024-08-17,13581,892,"[\""Laptop\"", \""Wireless Mouse\""]",2083.34,"{\""seasonal\"": \""16%\""}",140290,1,"""Asia""" +2024-05-19,13582,1738,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3860.14,"{\""loyalty\"": \""15%\""}",203163,0,"""South America""" +2023-09-10,13583,4936,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4897.35,"{\""loyalty\"": \""6%\""}",219950,0,"""Asia""" +2024-06-10,13584,8377,"[\""Keyboard\"", \""Tablet\""]",4165.96,"{\""seasonal\"": \""27%\""}",180590,0,"""Asia""" +2024-06-11,13585,9272,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3289.38,"{\""loyalty\"": \""15%\""}",1629,1,"""Asia""" +2023-02-21,13586,3789,"[\""Keyboard\""]",3497.71,{},116815,0,"""South America""" +2024-09-16,13587,8545,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1079.69,{},135727,0,"""Asia""" +2024-02-28,13588,1179,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4589.46,{},175688,1,"""South America""" +2024-07-26,13589,5668,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",291.47,"{\"": \""14%\""}",294689,1,"""Asia""" +2023-06-15,13590,5523,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2135.16,"{\""promo\"": \""13%\""}",102815,0,"""North America""" +2024-10-27,13591,740,"[\""Headphones\""]",1166.89,"{\""seasonal\"": \""11%\""}",39996,0,"""North America""" +2023-04-25,13592,3329,"[\""Laptop\"", \""Headphones\""]",4527.37,"{\""seasonal\"": \""27%\""}",266702,1,"""Asia""" +2023-09-13,13593,7800,"[\""Charger\""]",3293.22,{},152822,0,"""South America""" +2023-07-27,13594,7276,"[\""Headphones\"", \""Wireless Mouse\""]",2992.47,{},144112,0,"""Asia""" +2024-11-11,13595,9898,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1026.61,"{\""loyalty\"": \""18%\""}",31226,1,"""Europe""" +2024-08-27,13596,8039,"[\""Keyboard\""]",3291.47,"{\""seasonal\"": \""30%\""}",18029,0,"""North America""" +2023-04-17,13597,5003,"[\""Laptop\""]",2111.58,{},102925,1,"""South America""" +2023-11-17,13598,5958,"[\""Phone\""]",4057.17,{},279471,1,"""North America""" +2024-04-25,13599,1781,"[\""Keyboard\""]",3594.02,{},219307,0,"""Africa""" +2024-06-12,13600,5056,"[\""Laptop\"", \""Wireless Mouse\""]",4327.91,{},240690,0,"""North America""" +2024-07-12,13601,1659,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3606.25,"{\"": \""26%\""}",166409,0,"""North America""" +2024-06-21,13602,7583,"[\""Wireless Mouse\"", \""Phone\""]",4761.41,{},15174,1,"""Asia""" +2024-03-27,13603,2670,"[\""Tablet\"", \""Headphones\""]",1216.24,{},281129,1,"""Africa""" +2023-10-12,13604,4293,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1320.42,"{\""seasonal\"": \""17%\""}",144650,1,"""Asia""" +2023-06-07,13605,9232,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",222.34,"{\"": \""26%\""}",215004,1,"""North America""" +2024-02-26,13606,2349,"[\""Headphones\""]",1438.37,{},263406,1,"""Africa""" +2024-01-04,13607,7499,"[\""Phone\"", \""Laptop\""]",2118.51,{},224347,0,"""Asia""" +2023-01-10,13608,8316,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2044.97,"{\""loyalty\"": \""20%\""}",253744,0,"""North America""" +2023-11-22,13609,1810,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3944.63,"{\""promo\"": \""22%\""}",110037,1,"""Asia""" +2024-05-11,13610,5879,"[\""Tablet\""]",559.09,"{\""loyalty\"": \""21%\""}",129059,1,"""Asia""" +2023-03-02,13611,4043,"[\""Wireless Mouse\"", \""Charger\""]",2390.85,{},184949,0,"""North America""" +2023-11-11,13612,2309,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2542.68,{},296872,1,"""North America""" +2023-01-05,13613,6347,"[\""Monitor\"", \""Laptop\""]",3648.76,"{\""promo\"": \""26%\""}",50740,0,"""Asia""" +2023-03-20,13614,785,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3611.93,"{\""seasonal\"": \""28%\""}",40088,0,"""Asia""" +2024-04-20,13615,1880,"[\""Keyboard\"", \""Charger\""]",1324.86,{},115461,0,"""North America""" +2023-01-24,13616,5249,"[\""Tablet\"", \""Laptop\""]",597.97,{},277460,1,"""Asia""" +2024-01-27,13617,5906,"[\""Headphones\"", \""Laptop\""]",2269.79,{},217367,0,"""North America""" +2023-05-20,13618,1353,"[\""Headphones\""]",2349.0,{},25987,1,"""North America""" +2023-01-04,13619,4397,"[\""Tablet\"", \""Phone\""]",3271.23,{},53837,0,"""Africa""" +2023-08-10,13620,4236,"[\""Headphones\""]",927.44,{},271870,0,"""Africa""" +2024-08-23,13621,2652,"[\""Wireless Mouse\"", \""Keyboard\""]",2413.76,"{\"": \""27%\""}",48664,1,"""Europe""" +2024-01-27,13622,616,"[\""Keyboard\"", \""Tablet\""]",287.88,"{\"": \""28%\""}",227648,0,"""South America""" +2023-02-21,13623,6697,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4711.14,{},191627,0,"""South America""" +2023-02-26,13624,9558,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1066.05,"{\""promo\"": \""16%\""}",137334,1,"""Europe""" +2024-01-01,13625,7439,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1941.13,"{\"": \""16%\""}",55666,0,"""Asia""" +2024-08-05,13626,2240,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1579.75,{},78403,1,"""Africa""" +2024-04-02,13627,7015,"[\""Monitor\""]",4170.39,{},72291,1,"""Africa""" +2024-10-02,13628,564,"[\""Keyboard\"", \""Charger\""]",2514.44,"{\""loyalty\"": \""6%\""}",81688,1,"""South America""" +2024-03-29,13629,1988,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2677.87,"{\""seasonal\"": \""18%\""}",124587,1,"""North America""" +2024-05-24,13630,8235,"[\""Laptop\"", \""Phone\""]",2495.37,{},57119,1,"""Europe""" +2023-01-06,13631,4542,"[\""Keyboard\"", \""Laptop\""]",4857.18,"{\"": \""8%\""}",261534,1,"""Europe""" +2023-08-02,13632,5881,"[\""Wireless Mouse\""]",3360.02,"{\"": \""20%\""}",281239,0,"""South America""" +2024-06-10,13633,7533,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1059.29,{},13151,0,"""Asia""" +2024-03-06,13634,7840,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4035.95,{},2592,1,"""Asia""" +2023-01-16,13635,6373,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1248.66,{},19818,0,"""Africa""" +2023-04-29,13636,4151,"[\""Phone\""]",3016.92,"{\""promo\"": \""11%\""}",132291,0,"""Africa""" +2023-01-15,13637,2515,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1630.63,{},261794,1,"""Europe""" +2024-02-28,13638,9191,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",967.81,"{\""seasonal\"": \""16%\""}",115715,0,"""Asia""" +2023-06-13,13639,4717,"[\""Monitor\"", \""Keyboard\""]",360.73,"{\"": \""11%\""}",55492,0,"""South America""" +2024-08-09,13640,8502,"[\""Monitor\""]",3378.2,{},102056,0,"""North America""" +2024-01-28,13641,8256,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1736.23,"{\""promo\"": \""25%\""}",151104,0,"""North America""" +2023-09-14,13642,6261,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4815.59,"{\""seasonal\"": \""17%\""}",276156,0,"""Europe""" +2023-11-13,13643,2944,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4979.14,{},11421,1,"""Africa""" +2024-06-14,13644,3777,"[\""Charger\"", \""Keyboard\""]",3164.19,"{\"": \""30%\""}",232454,1,"""South America""" +2024-09-19,13645,1066,"[\""Monitor\"", \""Laptop\""]",4064.95,"{\"": \""24%\""}",223087,1,"""Africa""" +2023-06-24,13646,5002,"[\""Monitor\"", \""Charger\""]",4689.69,"{\""seasonal\"": \""24%\""}",211249,0,"""Africa""" +2023-05-17,13647,7793,"[\""Monitor\"", \""Wireless Mouse\""]",953.86,{},204780,1,"""Africa""" +2024-12-14,13648,7024,"[\""Laptop\"", \""Phone\""]",4519.72,{},277376,1,"""Europe""" +2023-10-28,13649,5710,"[\""Headphones\"", \""Keyboard\""]",3836.21,{},276830,1,"""Europe""" +2023-05-04,13650,2909,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1099.39,{},238564,0,"""Europe""" +2024-01-19,13651,2171,"[\""Phone\""]",1090.83,"{\""loyalty\"": \""24%\""}",182657,0,"""North America""" +2024-06-23,13652,2274,"[\""Tablet\"", \""Laptop\""]",2989.07,{},78132,0,"""Europe""" +2023-01-15,13653,5930,"[\""Keyboard\""]",569.94,"{\""loyalty\"": \""22%\""}",15760,1,"""South America""" +2024-05-11,13654,4936,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3743.24,"{\"": \""27%\""}",57304,1,"""Asia""" +2023-12-24,13655,6507,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2034.58,"{\""loyalty\"": \""25%\""}",109386,0,"""Africa""" +2023-03-18,13656,3289,"[\""Tablet\""]",928.5,{},244120,1,"""Europe""" +2023-02-20,13657,7496,"[\""Keyboard\"", \""Phone\""]",4724.87,{},140127,1,"""Africa""" +2024-04-03,13658,5184,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2104.47,{},186058,0,"""North America""" +2023-05-23,13659,8797,"[\""Monitor\""]",3579.95,"{\"": \""6%\""}",1225,0,"""North America""" +2023-04-28,13660,9298,"[\""Laptop\""]",4004.71,{},107149,1,"""Europe""" +2023-03-07,13661,9818,"[\""Charger\"", \""Headphones\""]",2609.32,"{\"": \""24%\""}",178698,1,"""Asia""" +2024-06-21,13662,770,"[\""Headphones\""]",4639.52,"{\"": \""19%\""}",283917,0,"""Europe""" +2024-12-23,13663,2923,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1240.01,{},266907,1,"""Africa""" +2023-09-11,13664,7625,"[\""Keyboard\"", \""Monitor\""]",298.71,{},272036,1,"""Europe""" +2024-08-11,13665,3479,"[\""Tablet\"", \""Laptop\""]",1220.33,"{\""promo\"": \""5%\""}",234097,0,"""Africa""" +2023-06-29,13666,4528,"[\""Tablet\""]",755.4,{},232386,1,"""Europe""" +2024-05-11,13667,4207,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1556.25,"{\""loyalty\"": \""10%\""}",209390,0,"""North America""" +2023-12-17,13668,7,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2161.63,"{\"": \""30%\""}",141909,1,"""South America""" +2023-09-14,13669,5830,"[\""Laptop\"", \""Tablet\""]",1713.2,"{\"": \""14%\""}",286525,1,"""Asia""" +2023-10-20,13670,1779,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1460.56,{},90410,1,"""Africa""" +2024-09-14,13671,7583,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2149.43,{},114601,1,"""North America""" +2023-04-29,13672,3337,"[\""Laptop\""]",253.12,"{\""loyalty\"": \""16%\""}",119090,1,"""Europe""" +2023-09-11,13673,1578,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3856.21,"{\""promo\"": \""19%\""}",281461,0,"""South America""" +2023-10-18,13674,1398,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",967.88,{},194722,1,"""South America""" +2023-04-22,13675,5011,"[\""Charger\"", \""Keyboard\""]",2777.99,{},29649,1,"""South America""" +2023-08-12,13676,3044,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4233.06,"{\"": \""18%\""}",15570,1,"""South America""" +2024-05-31,13677,1809,"[\""Charger\""]",4769.08,{},265440,0,"""Africa""" +2023-11-12,13678,6192,"[\""Phone\"", \""Keyboard\""]",4527.02,{},88365,0,"""Europe""" +2024-07-10,13679,876,"[\""Headphones\"", \""Charger\""]",1702.16,"{\"": \""21%\""}",131960,0,"""Asia""" +2023-12-09,13680,1656,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4252.48,{},174320,0,"""North America""" +2024-12-28,13681,6452,"[\""Tablet\"", \""Phone\""]",3813.99,{},270038,1,"""North America""" +2024-03-31,13682,7353,"[\""Phone\"", \""Headphones\""]",3896.6,"{\""seasonal\"": \""24%\""}",262184,1,"""Europe""" +2023-12-27,13683,1127,"[\""Monitor\"", \""Tablet\""]",4622.88,"{\""seasonal\"": \""27%\""}",98121,1,"""Asia""" +2023-11-02,13684,3625,"[\""Phone\""]",2127.68,"{\""loyalty\"": \""13%\""}",171202,0,"""South America""" +2024-10-30,13685,9643,"[\""Monitor\""]",3694.13,"{\""loyalty\"": \""26%\""}",72316,1,"""Africa""" +2024-07-03,13686,8835,"[\""Wireless Mouse\""]",1440.36,{},285133,1,"""Europe""" +2023-11-23,13687,3255,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4118.55,"{\""promo\"": \""22%\""}",270415,1,"""North America""" +2024-08-01,13688,9269,"[\""Charger\""]",960.43,"{\""promo\"": \""13%\""}",77760,1,"""South America""" +2023-07-19,13689,9747,"[\""Laptop\"", \""Tablet\""]",3130.77,{},93799,0,"""Europe""" +2023-11-20,13690,5866,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3527.46,{},82222,0,"""Europe""" +2024-12-07,13691,5466,"[\""Wireless Mouse\""]",1236.14,"{\"": \""14%\""}",232918,0,"""North America""" +2023-12-11,13692,1693,"[\""Laptop\"", \""Headphones\""]",889.15,{},186563,0,"""Asia""" +2024-10-04,13693,687,"[\""Monitor\""]",3825.43,{},184365,0,"""North America""" +2024-11-26,13694,489,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1964.09,"{\""promo\"": \""22%\""}",253362,0,"""North America""" +2024-06-11,13695,5938,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1083.6,"{\""loyalty\"": \""24%\""}",180960,0,"""Europe""" +2024-10-26,13696,7601,"[\""Monitor\""]",4200.85,"{\""promo\"": \""14%\""}",73152,0,"""Europe""" +2023-06-13,13697,4238,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3195.76,{},12100,0,"""Europe""" +2024-11-01,13698,4051,"[\""Phone\"", \""Tablet\""]",4089.7,{},60259,0,"""Africa""" +2023-09-27,13699,6075,"[\""Monitor\"", \""Wireless Mouse\""]",1801.37,"{\""seasonal\"": \""11%\""}",183422,1,"""North America""" +2023-06-17,13700,9173,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1313.58,"{\""promo\"": \""11%\""}",245517,0,"""Africa""" +2023-01-11,13701,1921,"[\""Monitor\""]",3389.19,{},107344,1,"""Asia""" +2023-01-28,13702,4578,"[\""Headphones\""]",4504.46,{},298445,1,"""Europe""" +2024-09-04,13703,7448,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4848.4,"{\"": \""14%\""}",95749,0,"""Africa""" +2023-12-15,13704,2046,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4860.04,{},220631,1,"""South America""" +2023-09-28,13705,7009,"[\""Monitor\""]",3899.97,{},173720,0,"""Europe""" +2023-03-30,13706,4176,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",191.23,"{\""loyalty\"": \""23%\""}",73753,1,"""South America""" +2024-06-04,13707,3012,"[\""Headphones\""]",750.47,"{\""promo\"": \""12%\""}",214726,1,"""Europe""" +2024-09-29,13708,3630,"[\""Charger\"", \""Wireless Mouse\""]",1494.53,"{\""seasonal\"": \""10%\""}",60274,1,"""Europe""" +2023-12-28,13709,602,"[\""Wireless Mouse\""]",1767.02,"{\""seasonal\"": \""28%\""}",237207,0,"""North America""" +2023-01-21,13710,360,"[\""Charger\""]",4036.94,{},175580,1,"""North America""" +2023-10-12,13711,6984,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3269.16,"{\""promo\"": \""14%\""}",62239,1,"""South America""" +2024-12-27,13712,8364,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3508.1,"{\""promo\"": \""9%\""}",28117,1,"""Asia""" +2024-03-01,13713,7645,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3592.72,"{\"": \""10%\""}",289020,0,"""North America""" +2024-06-01,13714,5619,"[\""Headphones\"", \""Laptop\""]",2808.27,{},222295,1,"""Africa""" +2024-07-04,13715,2128,"[\""Monitor\""]",4679.23,"{\""promo\"": \""30%\""}",127812,0,"""North America""" +2024-10-01,13716,6392,"[\""Laptop\"", \""Tablet\""]",3723.79,{},254934,1,"""Asia""" +2024-10-17,13717,3673,"[\""Tablet\"", \""Headphones\""]",1181.99,"{\""promo\"": \""8%\""}",109727,1,"""North America""" +2024-10-03,13718,4544,"[\""Wireless Mouse\""]",2981.48,{},36733,0,"""South America""" +2023-08-20,13719,6580,"[\""Laptop\"", \""Wireless Mouse\""]",2544.76,"{\"": \""22%\""}",20513,1,"""Africa""" +2023-04-10,13720,4124,"[\""Monitor\"", \""Keyboard\""]",4656.68,{},293472,1,"""Europe""" +2024-08-27,13721,62,"[\""Phone\""]",521.69,{},24632,0,"""North America""" +2023-05-27,13722,3588,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",356.48,"{\""promo\"": \""7%\""}",84753,0,"""South America""" +2023-09-21,13723,5364,"[\""Wireless Mouse\""]",3812.02,{},39232,0,"""Europe""" +2024-12-02,13724,6661,"[\""Laptop\"", \""Monitor\""]",2113.43,"{\"": \""23%\""}",235379,0,"""Asia""" +2023-09-12,13725,8845,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2705.33,"{\"": \""6%\""}",22410,1,"""Europe""" +2023-05-20,13726,2803,"[\""Keyboard\""]",722.37,{},241354,0,"""Asia""" +2024-12-27,13727,6520,"[\""Tablet\"", \""Keyboard\""]",2822.23,{},251609,1,"""North America""" +2024-05-20,13728,4923,"[\""Monitor\""]",128.5,"{\""loyalty\"": \""29%\""}",199316,1,"""North America""" +2024-06-29,13729,9725,"[\""Tablet\""]",318.35,"{\""promo\"": \""23%\""}",173337,1,"""Europe""" +2024-08-14,13730,3368,"[\""Phone\"", \""Tablet\""]",1109.81,"{\""seasonal\"": \""14%\""}",63826,1,"""North America""" +2024-05-22,13731,4350,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3354.39,"{\""promo\"": \""19%\""}",294458,1,"""Asia""" +2024-02-25,13732,8452,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1227.35,"{\""seasonal\"": \""15%\""}",170429,0,"""Africa""" +2024-05-20,13733,6070,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",268.02,"{\""promo\"": \""11%\""}",249791,1,"""Asia""" +2023-02-18,13734,6788,"[\""Keyboard\""]",1143.91,"{\""seasonal\"": \""16%\""}",6075,1,"""Europe""" +2024-03-14,13735,2262,"[\""Headphones\"", \""Phone\""]",2104.84,{},290535,0,"""North America""" +2023-02-06,13736,2943,"[\""Headphones\""]",4355.55,{},242182,0,"""Europe""" +2023-12-02,13737,4386,"[\""Laptop\"", \""Keyboard\""]",4168.88,{},96877,0,"""Africa""" +2023-03-20,13738,5698,"[\""Laptop\""]",4001.72,"{\"": \""5%\""}",247606,0,"""South America""" +2023-12-14,13739,4144,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",477.89,"{\""loyalty\"": \""12%\""}",19523,1,"""Europe""" +2023-08-14,13740,8666,"[\""Tablet\"", \""Keyboard\""]",1891.95,{},117819,0,"""Asia""" +2024-04-04,13741,2960,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",264.05,"{\"": \""25%\""}",245976,1,"""Asia""" +2024-10-30,13742,3348,"[\""Charger\"", \""Phone\""]",3954.32,{},230279,0,"""Europe""" +2023-04-06,13743,9697,"[\""Wireless Mouse\""]",4733.4,{},1497,0,"""Africa""" +2023-02-10,13744,9384,"[\""Wireless Mouse\"", \""Headphones\""]",1385.58,{},52481,1,"""Africa""" +2024-11-20,13745,6289,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4348.1,"{\""loyalty\"": \""24%\""}",235103,0,"""North America""" +2023-08-22,13746,2610,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4155.04,"{\""promo\"": \""23%\""}",177336,1,"""North America""" +2023-04-30,13747,3746,"[\""Charger\""]",1565.99,{},235713,0,"""Asia""" +2023-06-05,13748,3395,"[\""Wireless Mouse\"", \""Monitor\""]",3180.27,"{\""seasonal\"": \""29%\""}",208012,0,"""South America""" +2024-03-17,13749,4247,"[\""Phone\""]",4384.76,{},122515,1,"""North America""" +2023-01-15,13750,896,"[\""Laptop\"", \""Tablet\""]",4631.86,"{\""loyalty\"": \""18%\""}",86576,1,"""Africa""" +2023-07-06,13751,8932,"[\""Monitor\""]",868.03,{},265828,0,"""North America""" +2024-06-27,13752,9859,"[\""Keyboard\"", \""Phone\""]",4749.6,"{\""promo\"": \""7%\""}",79780,1,"""Europe""" +2024-03-10,13753,5386,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1101.03,"{\""promo\"": \""16%\""}",209181,1,"""North America""" +2023-11-24,13754,2391,"[\""Laptop\"", \""Keyboard\""]",487.6,"{\"": \""30%\""}",173978,1,"""Europe""" +2024-02-10,13755,3709,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2663.37,"{\""loyalty\"": \""13%\""}",152597,1,"""Africa""" +2024-04-21,13756,986,"[\""Wireless Mouse\"", \""Monitor\""]",3873.84,"{\""promo\"": \""23%\""}",284900,0,"""Asia""" +2024-08-14,13757,9423,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4823.06,{},180476,0,"""Africa""" +2024-04-14,13758,8508,"[\""Monitor\""]",2943.55,"{\""seasonal\"": \""11%\""}",96560,1,"""Asia""" +2024-09-17,13759,5183,"[\""Monitor\""]",1051.18,{},70178,1,"""Europe""" +2024-02-09,13760,2848,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2359.9,{},93870,0,"""South America""" +2024-11-22,13761,1637,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1550.15,{},277192,0,"""South America""" +2024-08-07,13762,2693,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3205.36,{},148059,1,"""South America""" +2024-02-04,13763,111,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2848.27,"{\""promo\"": \""9%\""}",106359,0,"""Europe""" +2023-07-25,13764,8549,"[\""Laptop\""]",3904.53,{},296961,0,"""Asia""" +2024-07-28,13765,1651,"[\""Phone\""]",4727.55,"{\""promo\"": \""6%\""}",35031,1,"""North America""" +2024-05-24,13766,2321,"[\""Keyboard\"", \""Monitor\""]",4342.28,{},127397,1,"""Asia""" +2023-12-19,13767,8649,"[\""Wireless Mouse\""]",513.36,{},197090,0,"""Africa""" +2023-07-28,13768,728,"[\""Tablet\"", \""Laptop\""]",2928.45,{},299565,1,"""Africa""" +2023-09-17,13769,2957,"[\""Headphones\"", \""Phone\""]",689.23,{},3449,0,"""Asia""" +2024-03-20,13770,2001,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2589.13,{},255877,1,"""Africa""" +2024-04-13,13771,9984,"[\""Headphones\"", \""Monitor\""]",3808.13,"{\""promo\"": \""12%\""}",129866,1,"""Asia""" +2024-03-10,13772,1801,"[\""Tablet\""]",1343.61,"{\""seasonal\"": \""22%\""}",241635,0,"""North America""" +2023-12-28,13773,1319,"[\""Tablet\"", \""Wireless Mouse\""]",4602.06,{},208806,0,"""Africa""" +2024-01-22,13774,8228,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1582.22,{},265300,1,"""Europe""" +2023-11-07,13775,2814,"[\""Wireless Mouse\"", \""Monitor\""]",343.84,{},26261,0,"""Asia""" +2024-12-22,13776,6577,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2048.43,{},14800,1,"""North America""" +2024-12-03,13777,6646,"[\""Headphones\"", \""Laptop\""]",2585.0,{},136919,1,"""South America""" +2023-03-29,13778,2322,"[\""Laptop\""]",875.74,"{\""promo\"": \""18%\""}",62578,0,"""South America""" +2024-09-13,13779,9361,"[\""Tablet\"", \""Laptop\""]",4406.03,"{\"": \""21%\""}",191619,1,"""Asia""" +2024-07-07,13780,122,"[\""Laptop\""]",191.56,{},88765,1,"""South America""" +2024-05-23,13781,7453,"[\""Phone\""]",1674.78,"{\""seasonal\"": \""26%\""}",143884,0,"""Europe""" +2024-11-10,13782,9108,"[\""Wireless Mouse\"", \""Monitor\""]",1999.29,"{\""seasonal\"": \""28%\""}",250098,1,"""South America""" +2024-05-31,13783,2274,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1357.26,"{\"": \""14%\""}",60436,1,"""South America""" +2023-06-04,13784,6800,"[\""Tablet\"", \""Headphones\""]",4292.74,{},199265,0,"""Africa""" +2023-12-02,13785,6056,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2313.09,{},276510,1,"""North America""" +2024-02-14,13786,4801,"[\""Charger\"", \""Laptop\""]",1792.49,"{\""loyalty\"": \""28%\""}",65760,0,"""Africa""" +2023-07-15,13787,8461,"[\""Laptop\""]",3670.08,{},95422,0,"""North America""" +2023-02-19,13788,4999,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2497.19,"{\""seasonal\"": \""29%\""}",121846,0,"""Europe""" +2023-11-13,13789,4013,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4558.12,{},148012,0,"""North America""" +2024-09-18,13790,4263,"[\""Monitor\""]",2218.58,"{\""seasonal\"": \""26%\""}",4732,0,"""North America""" +2024-07-12,13791,2782,"[\""Laptop\"", \""Phone\""]",3550.8,"{\""seasonal\"": \""30%\""}",26774,0,"""Europe""" +2023-11-27,13792,1316,"[\""Phone\""]",4428.95,{},50282,1,"""Europe""" +2023-09-05,13793,1427,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3442.11,{},283833,0,"""North America""" +2023-01-27,13794,5845,"[\""Wireless Mouse\""]",904.55,{},145080,0,"""Africa""" +2024-05-30,13795,763,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1749.98,"{\""seasonal\"": \""6%\""}",226975,0,"""South America""" +2023-12-23,13796,9429,"[\""Phone\""]",2872.93,"{\""seasonal\"": \""20%\""}",44391,1,"""Asia""" +2023-10-06,13797,2643,"[\""Monitor\"", \""Charger\""]",2497.42,{},82399,1,"""Africa""" +2024-04-23,13798,9434,"[\""Keyboard\""]",1108.77,"{\"": \""9%\""}",256038,1,"""Europe""" +2024-05-13,13799,2280,"[\""Phone\""]",783.05,{},128697,1,"""Africa""" +2024-07-04,13800,6861,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3172.49,"{\""loyalty\"": \""17%\""}",126536,0,"""Europe""" +2024-09-08,13801,9246,"[\""Laptop\""]",4039.91,{},151758,0,"""Africa""" +2024-01-15,13802,4744,"[\""Laptop\"", \""Monitor\""]",2346.65,"{\""promo\"": \""6%\""}",100573,0,"""Africa""" +2024-04-07,13803,6126,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2380.57,"{\"": \""27%\""}",267135,1,"""Africa""" +2024-12-02,13804,4114,"[\""Keyboard\""]",4961.94,"{\""seasonal\"": \""21%\""}",211275,1,"""Asia""" +2023-08-21,13805,2433,"[\""Monitor\"", \""Wireless Mouse\""]",1112.31,{},167634,1,"""Asia""" +2023-06-02,13806,1364,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",700.94,{},84300,1,"""North America""" +2024-12-05,13807,8203,"[\""Laptop\"", \""Keyboard\""]",870.38,{},89821,0,"""Asia""" +2023-08-22,13808,7573,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",833.74,"{\""seasonal\"": \""29%\""}",2693,1,"""Asia""" +2024-05-10,13809,8617,"[\""Headphones\"", \""Laptop\""]",4513.15,"{\""loyalty\"": \""23%\""}",259835,1,"""Africa""" +2024-12-10,13810,4533,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2637.36,"{\"": \""26%\""}",260308,0,"""Asia""" +2023-07-24,13811,6936,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4734.86,"{\"": \""16%\""}",150077,0,"""Europe""" +2023-03-16,13812,6724,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1592.09,"{\""seasonal\"": \""22%\""}",63836,1,"""Asia""" +2023-01-28,13813,5138,"[\""Monitor\""]",4138.79,{},118141,0,"""Europe""" +2023-04-21,13814,183,"[\""Tablet\""]",800.54,{},135627,0,"""North America""" +2024-07-15,13815,3663,"[\""Phone\""]",572.62,"{\""seasonal\"": \""8%\""}",250132,1,"""North America""" +2024-08-04,13816,8555,"[\""Keyboard\"", \""Tablet\""]",1281.04,{},252645,0,"""Africa""" +2024-08-07,13817,1386,"[\""Wireless Mouse\""]",1411.79,{},228189,1,"""Europe""" +2023-04-14,13818,2465,"[\""Monitor\"", \""Headphones\""]",2707.68,"{\"": \""10%\""}",44971,1,"""North America""" +2023-12-20,13819,2239,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3596.88,{},57593,1,"""Africa""" +2024-10-29,13820,377,"[\""Wireless Mouse\"", \""Phone\""]",1100.15,{},33164,0,"""Asia""" +2023-02-06,13821,8679,"[\""Phone\""]",901.39,{},80510,0,"""Asia""" +2024-01-05,13822,2299,"[\""Wireless Mouse\""]",1911.63,"{\""loyalty\"": \""20%\""}",231426,0,"""North America""" +2023-02-13,13823,4954,"[\""Phone\"", \""Laptop\""]",2733.01,"{\""loyalty\"": \""12%\""}",76443,1,"""Africa""" +2023-05-06,13824,202,"[\""Phone\""]",4093.61,{},190906,0,"""Africa""" +2024-06-14,13825,4849,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",88.25,"{\""loyalty\"": \""23%\""}",262946,0,"""South America""" +2023-05-10,13826,6243,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",844.04,{},243702,1,"""Asia""" +2024-08-20,13827,3748,"[\""Keyboard\""]",3595.92,"{\""seasonal\"": \""7%\""}",168767,0,"""Africa""" +2024-08-12,13828,278,"[\""Keyboard\""]",1100.46,{},208288,0,"""Asia""" +2024-05-01,13829,3362,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",215.5,"{\"": \""17%\""}",166294,1,"""South America""" +2023-06-20,13830,2812,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2669.89,"{\""promo\"": \""18%\""}",103933,1,"""South America""" +2024-12-13,13831,22,"[\""Headphones\""]",1566.46,"{\""promo\"": \""25%\""}",164228,0,"""Europe""" +2024-07-21,13832,222,"[\""Monitor\"", \""Charger\""]",2260.6,{},152159,0,"""North America""" +2024-03-05,13833,9950,"[\""Monitor\"", \""Laptop\""]",403.08,{},132665,0,"""North America""" +2023-03-26,13834,8840,"[\""Phone\""]",2646.04,{},94209,0,"""South America""" +2023-10-18,13835,8224,"[\""Laptop\"", \""Monitor\""]",3973.08,"{\""loyalty\"": \""19%\""}",8080,0,"""Europe""" +2023-11-05,13836,5848,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",677.43,{},110098,1,"""North America""" +2024-02-28,13837,7764,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4472.68,"{\""loyalty\"": \""6%\""}",210643,0,"""South America""" +2023-10-04,13838,7325,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",721.13,"{\""loyalty\"": \""29%\""}",243325,1,"""North America""" +2023-05-20,13839,918,"[\""Wireless Mouse\"", \""Charger\""]",3414.53,"{\"": \""13%\""}",149833,1,"""Africa""" +2024-10-26,13840,7734,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4588.22,{},161087,0,"""Africa""" +2024-08-23,13841,9341,"[\""Wireless Mouse\""]",3146.74,"{\""seasonal\"": \""30%\""}",176921,1,"""Europe""" +2023-03-07,13842,6575,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4044.0,{},191196,0,"""South America""" +2024-07-23,13843,9179,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3161.32,{},50559,1,"""South America""" +2024-10-04,13844,1300,"[\""Tablet\"", \""Laptop\""]",4221.79,"{\""seasonal\"": \""14%\""}",262423,1,"""South America""" +2023-02-17,13845,5277,"[\""Keyboard\""]",3065.36,"{\""seasonal\"": \""14%\""}",230384,0,"""Asia""" +2024-06-21,13846,8187,"[\""Wireless Mouse\""]",1654.34,"{\""promo\"": \""9%\""}",144678,0,"""North America""" +2023-10-14,13847,7110,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4985.41,"{\""loyalty\"": \""30%\""}",59264,1,"""Asia""" +2023-04-26,13848,4736,"[\""Laptop\""]",3379.06,{},204862,1,"""Asia""" +2023-08-07,13849,6023,"[\""Headphones\"", \""Keyboard\""]",1070.67,"{\""seasonal\"": \""12%\""}",213285,1,"""Africa""" +2023-05-11,13850,1283,"[\""Phone\""]",4805.94,"{\""seasonal\"": \""6%\""}",60668,1,"""Asia""" +2023-10-26,13851,6624,"[\""Tablet\"", \""Keyboard\""]",2181.58,{},73748,0,"""South America""" +2023-12-09,13852,8856,"[\""Phone\"", \""Wireless Mouse\""]",2033.62,"{\""promo\"": \""6%\""}",157633,1,"""North America""" +2023-06-27,13853,8306,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3629.61,"{\""loyalty\"": \""9%\""}",218365,1,"""Asia""" +2024-09-21,13854,793,"[\""Laptop\""]",1931.39,"{\""promo\"": \""25%\""}",223728,1,"""Europe""" +2024-12-20,13855,269,"[\""Charger\"", \""Headphones\""]",729.05,{},149396,1,"""Asia""" +2024-07-15,13856,4454,"[\""Headphones\""]",4841.49,{},204760,1,"""Europe""" +2024-03-04,13857,8540,"[\""Charger\""]",4458.95,"{\""promo\"": \""23%\""}",261366,1,"""Europe""" +2023-12-23,13858,8804,"[\""Tablet\""]",872.08,{},114610,1,"""Asia""" +2024-05-27,13859,9101,"[\""Charger\"", \""Laptop\""]",2725.28,"{\""promo\"": \""21%\""}",154409,0,"""South America""" +2023-01-14,13860,6249,"[\""Monitor\""]",4230.63,"{\""promo\"": \""15%\""}",37153,1,"""Africa""" +2023-11-21,13861,796,"[\""Monitor\""]",3994.04,{},198416,0,"""North America""" +2023-10-09,13862,2665,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4711.01,"{\""loyalty\"": \""11%\""}",152717,1,"""North America""" +2023-08-31,13863,3399,"[\""Phone\""]",294.4,"{\""seasonal\"": \""7%\""}",161056,0,"""Europe""" +2024-12-01,13864,6724,"[\""Headphones\""]",3095.21,{},144599,1,"""South America""" +2024-05-03,13865,6157,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3209.05,{},149671,1,"""Africa""" +2023-11-25,13866,1888,"[\""Monitor\""]",508.17,"{\"": \""23%\""}",207938,1,"""Africa""" +2023-06-06,13867,6334,"[\""Charger\"", \""Wireless Mouse\""]",538.75,{},21300,0,"""North America""" +2023-01-07,13868,7717,"[\""Headphones\"", \""Wireless Mouse\""]",4771.44,"{\""promo\"": \""12%\""}",201539,1,"""South America""" +2023-03-01,13869,6868,"[\""Phone\""]",118.31,{},90804,1,"""North America""" +2024-11-16,13870,5337,"[\""Tablet\"", \""Headphones\""]",4950.83,{},34052,1,"""North America""" +2023-12-25,13871,3023,"[\""Tablet\""]",108.85,"{\"": \""5%\""}",167767,0,"""North America""" +2023-07-12,13872,897,"[\""Charger\"", \""Phone\""]",4266.31,"{\""seasonal\"": \""19%\""}",183911,1,"""South America""" +2023-12-19,13873,9388,"[\""Charger\"", \""Monitor\""]",1331.78,"{\""seasonal\"": \""14%\""}",13315,1,"""North America""" +2023-06-09,13874,5743,"[\""Keyboard\"", \""Phone\""]",2542.95,{},86634,1,"""Asia""" +2023-10-20,13875,3948,"[\""Tablet\""]",1461.05,{},117404,1,"""North America""" +2023-06-30,13876,9230,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2566.59,"{\""promo\"": \""12%\""}",168376,0,"""South America""" +2023-12-30,13877,3383,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3395.33,"{\""seasonal\"": \""16%\""}",7452,0,"""Europe""" +2023-07-01,13878,5189,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1406.29,"{\""seasonal\"": \""27%\""}",195161,0,"""Asia""" +2024-05-03,13879,2040,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3443.26,"{\""loyalty\"": \""26%\""}",188398,0,"""Europe""" +2023-06-29,13880,7601,"[\""Keyboard\""]",2931.76,"{\""seasonal\"": \""11%\""}",135396,1,"""South America""" +2023-10-30,13881,6094,"[\""Wireless Mouse\"", \""Charger\""]",3589.19,{},199822,0,"""South America""" +2024-07-09,13882,3344,"[\""Charger\"", \""Tablet\""]",1820.98,"{\""loyalty\"": \""11%\""}",211328,0,"""North America""" +2024-12-15,13883,4455,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4034.79,{},35318,1,"""Africa""" +2023-04-23,13884,3704,"[\""Keyboard\"", \""Charger\""]",2941.48,"{\""seasonal\"": \""16%\""}",87749,0,"""Europe""" +2023-08-30,13885,232,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2786.18,{},47252,1,"""Europe""" +2024-07-14,13886,4642,"[\""Wireless Mouse\""]",2997.33,{},33599,0,"""Europe""" +2023-03-24,13887,179,"[\""Keyboard\"", \""Charger\""]",4853.98,"{\""promo\"": \""8%\""}",71792,1,"""Africa""" +2023-01-16,13888,9917,"[\""Headphones\"", \""Laptop\""]",2661.18,"{\""loyalty\"": \""26%\""}",267410,1,"""Asia""" +2023-04-14,13889,8019,"[\""Phone\""]",1231.25,"{\"": \""5%\""}",46091,0,"""Asia""" +2023-07-07,13890,9939,"[\""Phone\""]",273.13,{},185678,1,"""North America""" +2023-05-23,13891,2179,"[\""Tablet\""]",2920.14,{},185870,1,"""North America""" +2023-02-25,13892,1865,"[\""Headphones\"", \""Charger\""]",1380.62,{},53707,1,"""North America""" +2023-05-02,13893,4573,"[\""Keyboard\""]",4903.64,{},143904,0,"""North America""" +2023-10-10,13894,2489,"[\""Monitor\""]",4227.45,{},55069,1,"""South America""" +2023-08-31,13895,5799,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2158.74,{},236946,1,"""Africa""" +2023-10-13,13896,5404,"[\""Monitor\"", \""Headphones\""]",3759.96,"{\""loyalty\"": \""8%\""}",44041,0,"""Africa""" +2023-10-08,13897,1737,"[\""Wireless Mouse\""]",260.44,{},263177,1,"""Asia""" +2023-02-24,13898,954,"[\""Tablet\"", \""Headphones\""]",525.3,"{\""loyalty\"": \""29%\""}",208707,1,"""South America""" +2024-12-28,13899,7675,"[\""Wireless Mouse\"", \""Phone\""]",1537.16,"{\"": \""10%\""}",38584,0,"""North America""" +2023-07-17,13900,9830,"[\""Headphones\""]",388.75,"{\""promo\"": \""9%\""}",175863,0,"""South America""" +2023-01-31,13901,6569,"[\""Keyboard\"", \""Headphones\""]",3357.73,"{\""promo\"": \""20%\""}",68887,1,"""South America""" +2023-01-22,13902,2135,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4613.38,{},16165,0,"""Africa""" +2024-06-13,13903,4155,"[\""Keyboard\"", \""Tablet\""]",3046.14,"{\"": \""6%\""}",210107,0,"""Asia""" +2023-09-13,13904,8595,"[\""Wireless Mouse\""]",2361.38,{},164218,1,"""Asia""" +2024-06-16,13905,2301,"[\""Keyboard\"", \""Headphones\""]",3180.74,"{\""seasonal\"": \""8%\""}",273484,0,"""Asia""" +2023-08-24,13906,9993,"[\""Charger\"", \""Headphones\""]",1507.5,"{\""promo\"": \""25%\""}",106396,0,"""South America""" +2023-11-25,13907,9107,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",573.04,"{\""promo\"": \""17%\""}",106739,0,"""South America""" +2023-09-04,13908,9446,"[\""Headphones\""]",1925.8,"{\""loyalty\"": \""18%\""}",259410,0,"""North America""" +2024-04-23,13909,8167,"[\""Charger\""]",2764.97,"{\"": \""17%\""}",53066,1,"""Asia""" +2024-10-05,13910,7185,"[\""Phone\"", \""Wireless Mouse\""]",734.86,{},16017,1,"""North America""" +2023-12-02,13911,304,"[\""Tablet\"", \""Headphones\""]",3350.71,"{\""loyalty\"": \""17%\""}",91548,0,"""Africa""" +2023-07-28,13912,9096,"[\""Keyboard\""]",1194.63,{},9028,1,"""North America""" +2024-11-07,13913,8055,"[\""Wireless Mouse\""]",204.93,"{\"": \""26%\""}",26818,1,"""North America""" +2023-05-07,13914,1110,"[\""Phone\""]",2316.97,{},195402,1,"""Asia""" +2023-02-17,13915,4629,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3828.25,"{\"": \""20%\""}",88460,1,"""Africa""" +2024-12-11,13916,3907,"[\""Headphones\""]",480.89,"{\""promo\"": \""14%\""}",16979,1,"""North America""" +2024-11-25,13917,9425,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2961.13,"{\""seasonal\"": \""27%\""}",258015,0,"""Africa""" +2024-08-13,13918,3716,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",587.43,{},195813,0,"""Africa""" +2024-05-03,13919,4954,"[\""Tablet\""]",487.42,"{\""seasonal\"": \""25%\""}",139753,0,"""Europe""" +2023-12-18,13920,7944,"[\""Headphones\"", \""Keyboard\""]",1623.77,{},233944,1,"""Africa""" +2024-04-27,13921,5250,"[\""Charger\"", \""Keyboard\""]",2960.28,"{\""loyalty\"": \""22%\""}",239684,0,"""Asia""" +2024-08-14,13922,6165,"[\""Headphones\"", \""Monitor\""]",601.15,{},23307,0,"""Asia""" +2023-11-22,13923,9891,"[\""Headphones\"", \""Monitor\""]",3640.75,"{\""loyalty\"": \""15%\""}",10894,0,"""Europe""" +2023-05-30,13924,4521,"[\""Wireless Mouse\"", \""Monitor\""]",4959.02,{},47959,1,"""Asia""" +2023-01-12,13925,4831,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3435.87,"{\""seasonal\"": \""7%\""}",23408,1,"""Africa""" +2023-08-13,13926,5343,"[\""Phone\"", \""Monitor\""]",2010.95,{},76667,0,"""North America""" +2023-09-16,13927,9725,"[\""Tablet\""]",633.89,"{\""loyalty\"": \""9%\""}",110519,1,"""Asia""" +2023-08-27,13928,1207,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3789.16,{},259889,0,"""South America""" +2023-12-24,13929,1554,"[\""Keyboard\""]",4965.76,"{\""seasonal\"": \""6%\""}",78740,1,"""Asia""" +2024-10-04,13930,3291,"[\""Wireless Mouse\""]",4005.96,{},275252,0,"""North America""" +2024-08-06,13931,7295,"[\""Keyboard\""]",1538.83,"{\"": \""8%\""}",147164,1,"""South America""" +2024-04-16,13932,873,"[\""Headphones\"", \""Monitor\""]",4214.58,"{\""promo\"": \""8%\""}",10594,0,"""South America""" +2024-07-06,13933,5836,"[\""Headphones\""]",1376.24,"{\""loyalty\"": \""27%\""}",205289,1,"""North America""" +2024-07-13,13934,1804,"[\""Tablet\""]",1564.6,{},181103,0,"""South America""" +2023-11-10,13935,7995,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",134.43,{},91493,1,"""Europe""" +2023-11-11,13936,7024,"[\""Laptop\"", \""Keyboard\""]",3684.78,{},156799,0,"""Europe""" +2024-09-14,13937,8881,"[\""Phone\"", \""Keyboard\""]",3541.71,{},146483,0,"""South America""" +2023-09-12,13938,9145,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1901.28,{},34789,1,"""Asia""" +2024-12-22,13939,3707,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2995.62,"{\""promo\"": \""28%\""}",214284,0,"""Africa""" +2023-04-27,13940,694,"[\""Wireless Mouse\""]",4483.65,"{\""seasonal\"": \""16%\""}",138800,0,"""North America""" +2024-05-22,13941,2230,"[\""Tablet\""]",4624.17,{},112156,1,"""Asia""" +2023-03-26,13942,7093,"[\""Phone\"", \""Charger\""]",124.71,"{\""seasonal\"": \""8%\""}",246679,1,"""Europe""" +2024-05-20,13943,5233,"[\""Monitor\""]",2904.41,{},188426,1,"""Asia""" +2024-09-30,13944,3252,"[\""Wireless Mouse\"", \""Monitor\""]",4791.0,"{\""loyalty\"": \""6%\""}",286394,1,"""Africa""" +2023-04-23,13945,5366,"[\""Headphones\""]",2834.26,"{\""seasonal\"": \""7%\""}",196736,0,"""South America""" +2023-08-21,13946,6914,"[\""Tablet\""]",2304.23,{},61719,1,"""Africa""" +2024-09-05,13947,9770,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3569.4,{},76585,1,"""North America""" +2024-01-06,13948,8640,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2542.9,"{\""loyalty\"": \""26%\""}",221609,0,"""North America""" +2024-06-27,13949,7726,"[\""Laptop\"", \""Wireless Mouse\""]",4525.73,"{\""seasonal\"": \""12%\""}",185990,1,"""South America""" +2024-07-06,13950,4324,"[\""Laptop\"", \""Headphones\""]",1023.36,{},272717,0,"""Africa""" +2023-10-11,13951,3964,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",865.48,"{\""seasonal\"": \""5%\""}",223772,0,"""Africa""" +2024-03-23,13952,4948,"[\""Wireless Mouse\"", \""Monitor\""]",1598.12,{},290459,1,"""South America""" +2024-08-06,13953,5182,"[\""Tablet\"", \""Headphones\""]",457.21,{},233449,0,"""North America""" +2023-05-06,13954,2814,"[\""Wireless Mouse\""]",3992.93,{},249961,1,"""Africa""" +2023-04-17,13955,651,"[\""Charger\""]",2575.19,{},105294,0,"""Europe""" +2023-02-10,13956,8911,"[\""Headphones\""]",969.95,{},250755,1,"""Africa""" +2023-07-16,13957,2024,"[\""Keyboard\"", \""Monitor\""]",4050.55,"{\""seasonal\"": \""20%\""}",160989,0,"""North America""" +2024-01-25,13958,9771,"[\""Wireless Mouse\"", \""Tablet\""]",1498.75,{},25030,0,"""Europe""" +2023-06-19,13959,8803,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1326.18,{},289435,0,"""North America""" +2024-01-25,13960,845,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3674.03,{},158794,0,"""Asia""" +2024-09-04,13961,6439,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2388.77,"{\""loyalty\"": \""28%\""}",135468,0,"""Europe""" +2024-03-25,13962,5979,"[\""Monitor\"", \""Phone\""]",4282.42,{},207443,1,"""Asia""" +2024-12-05,13963,4636,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",736.22,{},268560,0,"""South America""" +2023-01-25,13964,7439,"[\""Headphones\"", \""Keyboard\""]",2290.41,"{\""seasonal\"": \""14%\""}",98274,1,"""North America""" +2024-05-16,13965,208,"[\""Keyboard\""]",554.8,"{\""seasonal\"": \""7%\""}",204284,0,"""Europe""" +2024-10-07,13966,3013,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1956.21,"{\""promo\"": \""10%\""}",166896,0,"""North America""" +2023-08-31,13967,676,"[\""Tablet\"", \""Charger\""]",2757.8,"{\""seasonal\"": \""7%\""}",31371,0,"""South America""" +2023-08-20,13968,9841,"[\""Keyboard\"", \""Monitor\""]",1260.24,"{\""loyalty\"": \""20%\""}",230066,0,"""Europe""" +2023-03-30,13969,2288,"[\""Phone\""]",2465.68,"{\""promo\"": \""20%\""}",33830,0,"""Asia""" +2023-11-05,13970,5421,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4557.62,{},85047,1,"""Africa""" +2024-01-24,13971,7561,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2714.79,{},153362,1,"""Asia""" +2023-02-25,13972,74,"[\""Keyboard\""]",3013.93,"{\""seasonal\"": \""18%\""}",97097,1,"""Europe""" +2024-07-06,13973,3408,"[\""Phone\""]",2336.38,{},149766,0,"""South America""" +2023-04-29,13974,4206,"[\""Phone\"", \""Laptop\""]",2672.8,"{\""seasonal\"": \""26%\""}",163861,1,"""Asia""" +2023-08-13,13975,2515,"[\""Headphones\""]",750.95,"{\""seasonal\"": \""29%\""}",203907,1,"""South America""" +2023-04-11,13976,1026,"[\""Headphones\""]",2583.37,{},174875,1,"""Asia""" +2023-07-30,13977,3152,"[\""Keyboard\""]",1281.33,{},142248,1,"""North America""" +2023-07-21,13978,7154,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4819.58,"{\"": \""16%\""}",220886,1,"""South America""" +2023-12-16,13979,329,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3261.63,"{\""seasonal\"": \""25%\""}",284208,0,"""North America""" +2024-12-30,13980,733,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2556.26,"{\""loyalty\"": \""11%\""}",157732,1,"""South America""" +2024-02-09,13981,1465,"[\""Wireless Mouse\""]",3714.71,{},173943,0,"""North America""" +2023-02-02,13982,6236,"[\""Monitor\"", \""Laptop\""]",2391.12,"{\""promo\"": \""9%\""}",194237,1,"""North America""" +2023-01-09,13983,9247,"[\""Monitor\"", \""Keyboard\""]",3004.7,"{\""promo\"": \""6%\""}",256895,0,"""Africa""" +2023-06-23,13984,3648,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",750.45,{},177138,0,"""Europe""" +2024-06-18,13985,8581,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",191.54,"{\""promo\"": \""21%\""}",59505,0,"""Asia""" +2023-11-03,13986,6761,"[\""Keyboard\"", \""Headphones\""]",1031.72,"{\""promo\"": \""22%\""}",74312,0,"""Europe""" +2024-05-21,13987,5606,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4979.22,"{\""promo\"": \""18%\""}",152960,0,"""South America""" +2024-07-11,13988,845,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1944.54,{},203342,0,"""Asia""" +2024-08-01,13989,5795,"[\""Monitor\"", \""Keyboard\""]",4696.9,"{\""loyalty\"": \""20%\""}",36859,0,"""Africa""" +2023-11-14,13990,9070,"[\""Laptop\"", \""Charger\"", \""Phone\""]",426.66,"{\""promo\"": \""17%\""}",53410,1,"""Asia""" +2023-05-31,13991,3451,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2270.78,{},274200,0,"""Europe""" +2023-02-21,13992,3561,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2546.85,"{\""promo\"": \""21%\""}",263062,0,"""South America""" +2024-01-10,13993,7010,"[\""Monitor\""]",2785.21,"{\"": \""9%\""}",236898,1,"""Asia""" +2024-06-24,13994,9676,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4212.49,"{\""promo\"": \""24%\""}",179449,0,"""Asia""" +2024-12-16,13995,5365,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4662.34,{},169355,1,"""Africa""" +2023-10-01,13996,4182,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1256.08,"{\""promo\"": \""8%\""}",34118,1,"""Europe""" +2023-01-30,13997,4068,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4277.28,{},51824,1,"""Africa""" +2024-11-10,13998,5804,"[\""Monitor\""]",1178.79,"{\""loyalty\"": \""13%\""}",36924,1,"""Africa""" +2023-01-15,13999,1331,"[\""Keyboard\""]",2195.45,"{\""promo\"": \""8%\""}",267157,0,"""South America""" +2024-08-22,14000,221,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3723.81,{},98467,1,"""Africa""" +2023-03-27,14001,5259,"[\""Charger\"", \""Wireless Mouse\""]",3177.28,{},147614,1,"""South America""" +2024-01-07,14002,9783,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2041.6,"{\""seasonal\"": \""22%\""}",123622,0,"""Africa""" +2024-06-24,14003,6038,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2638.71,"{\""loyalty\"": \""22%\""}",197196,0,"""Europe""" +2023-12-27,14004,1912,"[\""Monitor\"", \""Keyboard\""]",2948.56,{},180471,0,"""South America""" +2024-05-27,14005,9311,"[\""Keyboard\""]",2108.46,{},190484,1,"""Africa""" +2023-05-01,14006,9841,"[\""Charger\"", \""Laptop\""]",2287.18,"{\""promo\"": \""15%\""}",211281,1,"""North America""" +2024-01-14,14007,5710,"[\""Laptop\""]",379.98,{},197146,1,"""Europe""" +2024-01-21,14008,4092,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",646.25,{},53999,1,"""South America""" +2024-02-12,14009,4391,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4662.01,"{\""loyalty\"": \""9%\""}",251393,1,"""Africa""" +2023-02-06,14010,5927,"[\""Charger\""]",1297.84,"{\""promo\"": \""28%\""}",59452,1,"""Africa""" +2023-07-09,14011,9070,"[\""Headphones\"", \""Charger\""]",3973.69,"{\"": \""25%\""}",174279,0,"""North America""" +2023-05-19,14012,533,"[\""Charger\"", \""Laptop\""]",4294.08,"{\""seasonal\"": \""14%\""}",54269,1,"""Europe""" +2023-01-24,14013,5501,"[\""Tablet\""]",4453.29,"{\""promo\"": \""16%\""}",206398,1,"""South America""" +2024-10-31,14014,1279,"[\""Tablet\"", \""Charger\""]",638.59,"{\""seasonal\"": \""10%\""}",8869,1,"""Africa""" +2023-05-12,14015,6706,"[\""Charger\"", \""Tablet\""]",940.94,"{\"": \""14%\""}",244631,1,"""Asia""" +2024-02-08,14016,7300,"[\""Charger\"", \""Headphones\""]",3402.73,"{\""seasonal\"": \""20%\""}",224404,0,"""Europe""" +2023-10-05,14017,1422,"[\""Tablet\"", \""Wireless Mouse\""]",801.93,"{\""loyalty\"": \""30%\""}",79813,0,"""South America""" +2024-08-01,14018,1903,"[\""Monitor\""]",4512.92,{},5922,0,"""South America""" +2024-07-03,14019,9741,"[\""Laptop\""]",4354.83,{},184982,1,"""South America""" +2024-03-16,14020,9022,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4027.66,{},224902,1,"""South America""" +2024-01-03,14021,3089,"[\""Phone\"", \""Charger\""]",834.93,"{\""promo\"": \""25%\""}",157321,1,"""Europe""" +2023-10-11,14022,488,"[\""Tablet\""]",1766.6,{},206194,0,"""Asia""" +2023-12-15,14023,2113,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2766.29,{},222638,0,"""Europe""" +2024-12-03,14024,863,"[\""Headphones\"", \""Phone\""]",4195.83,"{\""promo\"": \""24%\""}",206957,0,"""South America""" +2023-09-17,14025,7677,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3836.16,"{\""seasonal\"": \""27%\""}",15043,0,"""North America""" +2023-06-24,14026,5136,"[\""Keyboard\"", \""Tablet\""]",4265.13,{},198268,0,"""Africa""" +2024-10-11,14027,8634,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1044.32,{},83030,1,"""South America""" +2024-05-01,14028,6815,"[\""Charger\"", \""Tablet\""]",3208.85,"{\""loyalty\"": \""19%\""}",222930,1,"""Asia""" +2024-10-14,14029,2678,"[\""Keyboard\"", \""Laptop\""]",2313.63,"{\""seasonal\"": \""5%\""}",236794,0,"""Europe""" +2023-08-04,14030,4608,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2855.22,"{\"": \""14%\""}",260675,1,"""Africa""" +2024-09-22,14031,6569,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4009.88,"{\"": \""6%\""}",159188,1,"""Africa""" +2024-04-28,14032,4262,"[\""Wireless Mouse\""]",4127.43,{},10198,1,"""Africa""" +2024-07-22,14033,6246,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4341.35,"{\""seasonal\"": \""11%\""}",60319,0,"""Europe""" +2024-03-24,14034,4527,"[\""Keyboard\""]",937.61,"{\""promo\"": \""18%\""}",279957,1,"""Asia""" +2024-11-13,14035,4462,"[\""Phone\"", \""Tablet\""]",4515.88,{},230733,0,"""Asia""" +2024-07-28,14036,2714,"[\""Headphones\""]",4400.71,{},199572,0,"""North America""" +2024-08-11,14037,1676,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4628.52,"{\""seasonal\"": \""23%\""}",248691,1,"""Europe""" +2023-01-05,14038,4316,"[\""Laptop\"", \""Keyboard\""]",1285.79,"{\""loyalty\"": \""26%\""}",267776,0,"""Asia""" +2024-10-19,14039,1548,"[\""Charger\""]",2214.73,{},58854,0,"""Africa""" +2024-01-02,14040,1901,"[\""Wireless Mouse\""]",1569.64,{},293590,0,"""Europe""" +2024-05-19,14041,2469,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1254.34,"{\"": \""16%\""}",299696,0,"""North America""" +2023-05-21,14042,7304,"[\""Headphones\"", \""Tablet\""]",4671.08,"{\"": \""17%\""}",158444,1,"""North America""" +2023-06-03,14043,2229,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3631.3,{},163145,1,"""Europe""" +2024-03-17,14044,8470,"[\""Monitor\""]",426.82,{},112085,0,"""Europe""" +2023-04-16,14045,7655,"[\""Laptop\"", \""Tablet\""]",4110.55,{},54946,1,"""Asia""" +2024-09-05,14046,697,"[\""Wireless Mouse\"", \""Laptop\""]",4980.46,{},174657,0,"""Asia""" +2023-03-20,14047,374,"[\""Keyboard\""]",2021.15,{},138983,1,"""Asia""" +2024-10-02,14048,4246,"[\""Phone\"", \""Keyboard\""]",4753.01,{},131668,1,"""Europe""" +2024-09-21,14049,5060,"[\""Charger\""]",4183.82,"{\""promo\"": \""28%\""}",215259,1,"""North America""" +2023-08-27,14050,8817,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",828.9,{},197787,0,"""Africa""" +2023-06-22,14051,5429,"[\""Phone\"", \""Keyboard\""]",3457.32,{},131158,1,"""South America""" +2024-07-30,14052,5290,"[\""Phone\"", \""Monitor\""]",401.74,{},163264,0,"""Europe""" +2023-07-25,14053,3523,"[\""Laptop\"", \""Phone\""]",1949.44,"{\""seasonal\"": \""18%\""}",130283,1,"""Europe""" +2024-02-13,14054,6951,"[\""Charger\"", \""Phone\"", \""Laptop\""]",870.16,{},161666,0,"""South America""" +2024-05-10,14055,4333,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3089.22,{},280663,0,"""North America""" +2023-08-08,14056,2635,"[\""Tablet\""]",4605.59,{},206558,0,"""Europe""" +2024-08-04,14057,735,"[\""Headphones\"", \""Tablet\""]",2222.69,{},293791,1,"""North America""" +2023-06-02,14058,1866,"[\""Charger\""]",300.07,{},230940,0,"""Europe""" +2023-06-28,14059,6550,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",708.11,"{\""promo\"": \""30%\""}",52386,0,"""Europe""" +2024-01-14,14060,2081,"[\""Headphones\"", \""Charger\""]",1148.8,{},239279,1,"""Europe""" +2023-01-14,14061,6276,"[\""Keyboard\"", \""Monitor\""]",3752.85,"{\""seasonal\"": \""9%\""}",71810,0,"""North America""" +2024-03-26,14062,4916,"[\""Keyboard\""]",2235.24,{},129102,1,"""Africa""" +2023-11-06,14063,8575,"[\""Keyboard\"", \""Headphones\""]",4550.62,{},275849,0,"""North America""" +2023-07-30,14064,5352,"[\""Laptop\"", \""Monitor\""]",554.98,"{\"": \""22%\""}",284394,0,"""Europe""" +2023-11-29,14065,1630,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",464.46,"{\""seasonal\"": \""7%\""}",155763,0,"""North America""" +2024-04-02,14066,9938,"[\""Keyboard\"", \""Tablet\""]",2545.45,"{\""seasonal\"": \""17%\""}",1141,0,"""Asia""" +2023-04-15,14067,6981,"[\""Laptop\"", \""Tablet\""]",4626.14,{},54733,1,"""Europe""" +2024-05-06,14068,5541,"[\""Laptop\""]",1896.61,{},205396,0,"""Asia""" +2023-11-02,14069,6155,"[\""Tablet\"", \""Headphones\""]",3133.02,{},218227,0,"""North America""" +2024-04-04,14070,4008,"[\""Phone\"", \""Monitor\""]",1400.22,"{\""loyalty\"": \""5%\""}",104427,1,"""Europe""" +2023-06-16,14071,4779,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2761.79,"{\""seasonal\"": \""15%\""}",62795,0,"""Europe""" +2023-03-08,14072,2550,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1659.76,{},12307,0,"""Africa""" +2023-05-02,14073,1689,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1481.02,"{\""seasonal\"": \""18%\""}",255467,0,"""South America""" +2024-03-13,14074,5053,"[\""Keyboard\""]",1868.08,{},104534,0,"""Africa""" +2024-06-07,14075,9984,"[\""Charger\""]",847.09,"{\""seasonal\"": \""9%\""}",201536,0,"""Africa""" +2023-06-25,14076,1677,"[\""Headphones\""]",2355.07,{},156433,1,"""North America""" +2024-11-23,14077,9053,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",425.8,"{\""loyalty\"": \""27%\""}",24455,1,"""Africa""" +2024-09-22,14078,1317,"[\""Laptop\"", \""Charger\""]",640.48,"{\""loyalty\"": \""6%\""}",172966,1,"""South America""" +2024-12-04,14079,4534,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2147.97,{},163269,0,"""Europe""" +2023-11-11,14080,3047,"[\""Keyboard\"", \""Monitor\""]",2713.5,"{\""loyalty\"": \""11%\""}",260995,0,"""Africa""" +2023-02-20,14081,1773,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1934.59,{},54101,0,"""South America""" +2024-09-26,14082,8588,"[\""Monitor\"", \""Headphones\""]",2755.92,{},24765,1,"""Europe""" +2023-09-09,14083,8925,"[\""Wireless Mouse\""]",1097.0,"{\""seasonal\"": \""6%\""}",114876,1,"""Asia""" +2024-10-10,14084,3136,"[\""Charger\"", \""Tablet\""]",456.75,{},100317,1,"""Europe""" +2024-05-22,14085,11,"[\""Phone\"", \""Charger\""]",1495.36,"{\""loyalty\"": \""26%\""}",147499,0,"""Asia""" +2024-05-30,14086,2327,"[\""Keyboard\""]",229.97,"{\""promo\"": \""19%\""}",109992,1,"""Africa""" +2024-03-02,14087,2185,"[\""Keyboard\"", \""Tablet\""]",1246.92,"{\"": \""17%\""}",285323,1,"""Asia""" +2023-07-16,14088,2612,"[\""Wireless Mouse\"", \""Monitor\""]",2207.64,"{\""seasonal\"": \""10%\""}",252954,1,"""North America""" +2023-02-17,14089,4605,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4040.35,{},100546,0,"""Africa""" +2023-01-05,14090,2438,"[\""Tablet\"", \""Monitor\""]",3728.2,{},57204,1,"""South America""" +2023-11-29,14091,2152,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4101.99,{},174963,0,"""Europe""" +2024-12-10,14092,2587,"[\""Tablet\"", \""Headphones\""]",1393.45,"{\""seasonal\"": \""21%\""}",89099,1,"""South America""" +2024-05-20,14093,3842,"[\""Tablet\"", \""Charger\""]",2013.1,{},153420,1,"""Asia""" +2023-08-30,14094,9759,"[\""Headphones\"", \""Charger\""]",3075.79,{},44551,1,"""South America""" +2024-01-19,14095,7235,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2954.81,{},88658,0,"""Asia""" +2024-11-27,14096,722,"[\""Charger\""]",1053.4,"{\""seasonal\"": \""19%\""}",69302,0,"""South America""" +2024-12-30,14097,1660,"[\""Headphones\""]",4581.65,{},270605,0,"""Europe""" +2023-11-21,14098,2902,"[\""Headphones\""]",1247.64,{},107401,1,"""Asia""" +2024-01-14,14099,5883,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",876.88,{},187013,0,"""North America""" +2024-12-07,14100,1408,"[\""Wireless Mouse\""]",4126.62,"{\""loyalty\"": \""30%\""}",145903,1,"""Asia""" +2023-09-06,14101,1146,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4370.05,{},103706,0,"""North America""" +2023-10-25,14102,8015,"[\""Monitor\""]",2029.19,"{\""promo\"": \""27%\""}",178546,0,"""Europe""" +2023-06-05,14103,6821,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2001.89,{},208081,0,"""North America""" +2023-11-15,14104,5910,"[\""Monitor\""]",2828.53,"{\"": \""13%\""}",128756,0,"""Asia""" +2023-08-28,14105,7324,"[\""Wireless Mouse\""]",2836.15,{},186936,0,"""Asia""" +2024-03-26,14106,3603,"[\""Laptop\""]",3938.28,"{\""seasonal\"": \""14%\""}",280877,1,"""North America""" +2023-07-05,14107,3022,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",72.46,{},255065,1,"""South America""" +2023-12-15,14108,6024,"[\""Phone\"", \""Charger\""]",2819.43,"{\""loyalty\"": \""22%\""}",298625,1,"""Africa""" +2023-07-17,14109,9899,"[\""Tablet\"", \""Phone\""]",1582.18,"{\""seasonal\"": \""23%\""}",240205,0,"""Europe""" +2023-08-14,14110,2003,"[\""Laptop\""]",3779.53,{},133622,0,"""Europe""" +2023-11-23,14111,8221,"[\""Keyboard\""]",542.12,"{\"": \""15%\""}",176490,1,"""North America""" +2024-04-05,14112,9728,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",679.85,"{\""promo\"": \""8%\""}",257507,0,"""Africa""" +2024-09-23,14113,2611,"[\""Tablet\"", \""Wireless Mouse\""]",3223.76,{},198740,0,"""Asia""" +2023-10-28,14114,3230,"[\""Keyboard\"", \""Laptop\""]",4086.88,"{\""promo\"": \""17%\""}",164608,1,"""North America""" +2024-02-12,14115,6615,"[\""Monitor\"", \""Charger\""]",4724.73,{},262093,0,"""Africa""" +2024-09-10,14116,1487,"[\""Phone\""]",3559.02,{},118170,1,"""South America""" +2023-07-29,14117,2556,"[\""Charger\"", \""Tablet\""]",2571.31,"{\""promo\"": \""24%\""}",246578,1,"""Africa""" +2024-09-19,14118,8169,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2740.93,"{\"": \""27%\""}",51404,0,"""South America""" +2024-03-04,14119,7049,"[\""Laptop\"", \""Monitor\""]",2228.74,"{\""loyalty\"": \""18%\""}",98198,1,"""South America""" +2024-06-03,14120,1291,"[\""Tablet\""]",919.48,{},125364,1,"""North America""" +2023-02-18,14121,3929,"[\""Monitor\""]",350.89,{},231293,1,"""Africa""" +2024-05-22,14122,4424,"[\""Phone\"", \""Laptop\""]",4613.59,{},222394,0,"""South America""" +2024-08-09,14123,148,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",89.26,"{\"": \""14%\""}",232580,0,"""Europe""" +2024-06-18,14124,7268,"[\""Keyboard\""]",4010.92,{},113556,0,"""Asia""" +2024-02-06,14125,2938,"[\""Wireless Mouse\"", \""Monitor\""]",2504.19,{},275966,0,"""Asia""" +2023-03-20,14126,4291,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1869.43,{},43404,1,"""South America""" +2024-07-23,14127,211,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",278.63,"{\"": \""11%\""}",209806,1,"""Africa""" +2024-05-05,14128,3069,"[\""Monitor\""]",600.76,{},188591,0,"""Europe""" +2024-04-02,14129,2876,"[\""Charger\"", \""Tablet\""]",2657.23,{},128373,1,"""South America""" +2024-02-28,14130,1709,"[\""Monitor\"", \""Charger\""]",2819.94,"{\""loyalty\"": \""21%\""}",182738,0,"""South America""" +2024-03-21,14131,2811,"[\""Tablet\"", \""Laptop\""]",3109.58,{},242408,0,"""Asia""" +2023-04-28,14132,3290,"[\""Phone\"", \""Tablet\""]",65.77,"{\""seasonal\"": \""24%\""}",200101,1,"""Africa""" +2024-08-26,14133,9046,"[\""Charger\""]",3497.33,{},190227,1,"""North America""" +2023-05-21,14134,1869,"[\""Keyboard\"", \""Headphones\""]",4171.6,"{\""loyalty\"": \""16%\""}",296575,0,"""South America""" +2023-12-13,14135,763,"[\""Wireless Mouse\""]",3417.72,{},279271,1,"""North America""" +2023-07-20,14136,1455,"[\""Charger\""]",4203.8,"{\""promo\"": \""17%\""}",222023,0,"""Europe""" +2023-01-04,14137,8831,"[\""Wireless Mouse\"", \""Keyboard\""]",4870.36,"{\""promo\"": \""13%\""}",11859,0,"""Africa""" +2024-01-01,14138,4321,"[\""Monitor\"", \""Laptop\""]",3600.64,"{\""loyalty\"": \""28%\""}",294827,0,"""Europe""" +2023-04-26,14139,2590,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4934.92,"{\""loyalty\"": \""9%\""}",212795,0,"""South America""" +2024-02-08,14140,7586,"[\""Keyboard\"", \""Wireless Mouse\""]",2863.05,"{\""loyalty\"": \""12%\""}",118630,0,"""North America""" +2024-10-21,14141,3558,"[\""Phone\"", \""Charger\""]",1798.2,"{\"": \""9%\""}",247586,1,"""Africa""" +2024-02-28,14142,3492,"[\""Headphones\"", \""Monitor\""]",1169.6,{},257437,0,"""North America""" +2023-02-07,14143,4437,"[\""Monitor\""]",1629.66,"{\""seasonal\"": \""11%\""}",188851,0,"""Asia""" +2023-08-29,14144,8867,"[\""Phone\"", \""Tablet\""]",3289.47,"{\""seasonal\"": \""21%\""}",223348,0,"""Asia""" +2024-12-22,14145,907,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",489.03,"{\"": \""24%\""}",4634,0,"""Africa""" +2024-02-29,14146,9030,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4682.17,"{\"": \""28%\""}",205112,0,"""Africa""" +2023-08-01,14147,1578,"[\""Laptop\"", \""Wireless Mouse\""]",557.5,"{\"": \""28%\""}",230163,0,"""Africa""" +2023-07-20,14148,8255,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4886.78,{},33775,1,"""South America""" +2023-02-13,14149,781,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4140.4,"{\""promo\"": \""9%\""}",162681,0,"""South America""" +2023-03-05,14150,8018,"[\""Tablet\""]",2728.57,{},204890,0,"""North America""" +2024-02-15,14151,9009,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2571.9,{},9425,0,"""North America""" +2024-09-11,14152,2517,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2543.64,{},238565,1,"""South America""" +2024-08-20,14153,5396,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3380.55,{},108597,0,"""Africa""" +2023-08-18,14154,3173,"[\""Keyboard\"", \""Headphones\""]",4127.26,"{\""promo\"": \""16%\""}",48324,1,"""North America""" +2024-11-28,14155,1780,"[\""Monitor\"", \""Phone\""]",2857.09,{},48285,0,"""Asia""" +2024-08-20,14156,5635,"[\""Phone\""]",147.06,{},30749,1,"""Europe""" +2024-08-31,14157,6845,"[\""Keyboard\""]",3621.57,{},268184,1,"""South America""" +2024-12-27,14158,1012,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",903.66,{},170095,1,"""Europe""" +2023-11-18,14159,9432,"[\""Charger\""]",1393.23,{},213778,1,"""North America""" +2023-03-05,14160,1632,"[\""Charger\""]",3668.45,{},81757,0,"""North America""" +2024-05-10,14161,1790,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2732.91,"{\""seasonal\"": \""24%\""}",205643,0,"""Africa""" +2023-05-29,14162,2577,"[\""Monitor\""]",975.87,{},158280,1,"""Europe""" +2024-03-19,14163,2305,"[\""Wireless Mouse\""]",2534.22,"{\""seasonal\"": \""12%\""}",124586,1,"""Asia""" +2023-12-29,14164,849,"[\""Headphones\""]",3460.42,{},246538,1,"""North America""" +2023-10-06,14165,2283,"[\""Charger\"", \""Wireless Mouse\""]",1658.43,"{\""loyalty\"": \""24%\""}",218300,1,"""North America""" +2024-05-31,14166,4606,"[\""Wireless Mouse\"", \""Tablet\""]",4306.41,"{\""loyalty\"": \""22%\""}",6200,1,"""Asia""" +2023-04-16,14167,9833,"[\""Headphones\""]",1950.46,"{\""promo\"": \""26%\""}",205562,1,"""Asia""" +2023-12-15,14168,6482,"[\""Monitor\""]",4206.39,{},213931,1,"""North America""" +2024-05-17,14169,3384,"[\""Charger\""]",3486.68,{},84368,1,"""South America""" +2023-06-26,14170,3518,"[\""Keyboard\""]",1078.97,{},189005,0,"""Africa""" +2023-09-10,14171,1801,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3006.77,{},73271,1,"""North America""" +2024-12-06,14172,4309,"[\""Headphones\"", \""Monitor\""]",1652.41,"{\""promo\"": \""30%\""}",56723,0,"""Asia""" +2024-05-23,14173,5569,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2203.56,"{\""loyalty\"": \""6%\""}",48109,1,"""Africa""" +2024-04-21,14174,7823,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2477.0,"{\""loyalty\"": \""16%\""}",96530,0,"""Europe""" +2023-12-20,14175,2841,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",754.41,"{\""seasonal\"": \""18%\""}",211777,1,"""South America""" +2024-02-16,14176,3672,"[\""Laptop\""]",2389.48,"{\""promo\"": \""13%\""}",259290,0,"""Europe""" +2024-05-15,14177,4855,"[\""Monitor\""]",4035.4,{},17153,0,"""North America""" +2024-08-03,14178,35,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2527.37,"{\"": \""28%\""}",91849,0,"""Europe""" +2023-10-12,14179,2867,"[\""Wireless Mouse\""]",2607.32,"{\""loyalty\"": \""9%\""}",76339,1,"""Africa""" +2023-09-09,14180,2994,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3090.29,{},104781,1,"""North America""" +2023-02-12,14181,4295,"[\""Charger\"", \""Monitor\""]",619.92,"{\""seasonal\"": \""28%\""}",137888,0,"""Asia""" +2023-12-02,14182,2117,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4770.74,"{\""loyalty\"": \""12%\""}",92947,0,"""South America""" +2024-06-22,14183,2766,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3294.14,{},7181,1,"""Africa""" +2024-11-03,14184,4658,"[\""Charger\"", \""Laptop\""]",784.28,"{\"": \""27%\""}",159049,1,"""Europe""" +2023-11-03,14185,3293,"[\""Wireless Mouse\""]",2149.1,{},50984,1,"""South America""" +2023-02-20,14186,8590,"[\""Tablet\"", \""Wireless Mouse\""]",1068.64,"{\""loyalty\"": \""29%\""}",33965,0,"""Africa""" +2024-07-19,14187,4991,"[\""Headphones\""]",3500.7,"{\""loyalty\"": \""25%\""}",272247,0,"""Europe""" +2024-06-22,14188,5675,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4147.14,{},131266,0,"""Europe""" +2024-01-14,14189,7066,"[\""Keyboard\""]",2185.61,{},286208,1,"""Asia""" +2023-03-21,14190,7615,"[\""Charger\""]",260.39,"{\""loyalty\"": \""29%\""}",293022,0,"""Africa""" +2023-11-13,14191,6959,"[\""Wireless Mouse\"", \""Headphones\""]",1757.86,{},243828,0,"""Europe""" +2023-12-26,14192,8242,"[\""Monitor\"", \""Wireless Mouse\""]",4936.01,{},163123,1,"""North America""" +2023-09-16,14193,8546,"[\""Headphones\"", \""Wireless Mouse\""]",3144.15,{},135589,0,"""Africa""" +2024-12-04,14194,3835,"[\""Keyboard\"", \""Headphones\""]",3629.37,{},166867,1,"""Europe""" +2024-10-21,14195,9536,"[\""Tablet\"", \""Headphones\""]",1891.51,"{\""promo\"": \""28%\""}",228104,1,"""North America""" +2023-06-23,14196,1935,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3555.73,"{\""loyalty\"": \""25%\""}",179617,1,"""North America""" +2023-06-16,14197,3957,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3257.23,{},160294,1,"""Europe""" +2023-12-19,14198,6385,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",639.07,"{\""loyalty\"": \""11%\""}",285574,0,"""Europe""" +2023-02-21,14199,4822,"[\""Tablet\"", \""Charger\""]",3256.16,"{\""loyalty\"": \""22%\""}",160080,1,"""North America""" +2024-12-15,14200,3691,"[\""Monitor\"", \""Wireless Mouse\""]",1791.27,{},35644,1,"""South America""" +2024-08-11,14201,8424,"[\""Charger\""]",2693.18,{},53253,0,"""North America""" +2023-05-24,14202,8073,"[\""Charger\""]",881.7,{},253466,1,"""Asia""" +2023-07-14,14203,963,"[\""Monitor\""]",4916.09,"{\""seasonal\"": \""16%\""}",27476,0,"""South America""" +2024-06-29,14204,9783,"[\""Tablet\"", \""Monitor\""]",745.89,"{\""promo\"": \""13%\""}",183323,1,"""North America""" +2024-04-27,14205,2100,"[\""Headphones\""]",3596.52,{},278609,1,"""South America""" +2024-09-08,14206,83,"[\""Laptop\"", \""Monitor\""]",4635.38,{},71640,0,"""Africa""" +2023-05-20,14207,420,"[\""Wireless Mouse\""]",4322.01,"{\""seasonal\"": \""23%\""}",293889,1,"""North America""" +2023-08-30,14208,6950,"[\""Headphones\"", \""Monitor\""]",4648.64,"{\""loyalty\"": \""8%\""}",256559,0,"""Africa""" +2024-01-08,14209,9659,"[\""Keyboard\"", \""Wireless Mouse\""]",1430.11,{},69058,0,"""Africa""" +2023-10-10,14210,2018,"[\""Tablet\""]",3531.51,"{\""promo\"": \""13%\""}",295063,0,"""North America""" +2024-05-11,14211,6808,"[\""Wireless Mouse\""]",3624.23,"{\""promo\"": \""12%\""}",255756,1,"""Europe""" +2023-07-25,14212,2349,"[\""Tablet\""]",1367.64,{},17649,1,"""North America""" +2023-01-02,14213,7144,"[\""Phone\"", \""Tablet\"", \""Charger\""]",474.78,"{\""promo\"": \""15%\""}",6904,0,"""South America""" +2024-02-07,14214,6988,"[\""Laptop\""]",4896.19,{},94090,0,"""Asia""" +2024-09-14,14215,597,"[\""Tablet\""]",2124.67,"{\""seasonal\"": \""5%\""}",125993,0,"""Africa""" +2023-02-18,14216,6351,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3923.01,{},119067,1,"""South America""" +2023-10-31,14217,2371,"[\""Wireless Mouse\""]",1627.94,{},263515,1,"""South America""" +2023-07-13,14218,62,"[\""Keyboard\""]",4183.76,"{\""promo\"": \""8%\""}",9076,0,"""South America""" +2023-06-06,14219,9664,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3269.53,"{\""loyalty\"": \""19%\""}",266078,0,"""Africa""" +2023-05-23,14220,2078,"[\""Laptop\"", \""Monitor\""]",3350.79,{},164563,0,"""Asia""" +2024-10-30,14221,5534,"[\""Headphones\""]",2202.82,{},137063,1,"""North America""" +2024-01-13,14222,4121,"[\""Phone\""]",1226.48,"{\"": \""23%\""}",90269,1,"""Europe""" +2024-08-22,14223,3158,"[\""Headphones\"", \""Wireless Mouse\""]",2662.66,{},113487,1,"""South America""" +2024-08-02,14224,1612,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2227.73,{},156674,0,"""Africa""" +2024-10-02,14225,9178,"[\""Monitor\""]",4547.19,{},27746,1,"""Africa""" +2024-05-23,14226,6638,"[\""Wireless Mouse\"", \""Phone\""]",1436.32,"{\""seasonal\"": \""13%\""}",39513,0,"""Asia""" +2023-09-23,14227,6318,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",508.62,"{\""seasonal\"": \""6%\""}",202161,1,"""Europe""" +2023-05-29,14228,1006,"[\""Laptop\"", \""Phone\""]",4207.18,"{\"": \""29%\""}",281774,0,"""Europe""" +2024-08-16,14229,6871,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3516.42,"{\""promo\"": \""8%\""}",178505,0,"""Africa""" +2024-11-14,14230,1340,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",170.8,"{\"": \""9%\""}",159987,0,"""South America""" +2023-09-12,14231,9488,"[\""Charger\"", \""Wireless Mouse\""]",124.88,"{\"": \""24%\""}",284363,0,"""Africa""" +2023-10-20,14232,8697,"[\""Phone\""]",3050.97,"{\""promo\"": \""10%\""}",193379,1,"""Africa""" +2024-10-31,14233,7573,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",714.49,"{\"": \""11%\""}",115455,1,"""Europe""" +2024-07-25,14234,9823,"[\""Phone\"", \""Laptop\""]",1225.32,"{\""seasonal\"": \""16%\""}",44527,0,"""Asia""" +2023-12-25,14235,6417,"[\""Laptop\"", \""Wireless Mouse\""]",4420.84,{},198614,0,"""South America""" +2023-07-23,14236,475,"[\""Wireless Mouse\""]",394.14,"{\"": \""9%\""}",294895,1,"""Europe""" +2023-05-29,14237,4471,"[\""Wireless Mouse\"", \""Monitor\""]",4260.82,{},192379,0,"""North America""" +2024-03-14,14238,2942,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1760.86,"{\""loyalty\"": \""15%\""}",165706,1,"""Europe""" +2024-09-03,14239,3011,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2553.27,{},269347,1,"""North America""" +2024-04-25,14240,9842,"[\""Wireless Mouse\""]",4915.25,{},136248,1,"""Africa""" +2023-07-27,14241,6164,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2536.26,"{\""loyalty\"": \""16%\""}",24555,0,"""North America""" +2023-09-15,14242,2971,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",658.91,{},141682,1,"""Europe""" +2024-10-28,14243,4213,"[\""Headphones\""]",2526.59,{},41724,0,"""North America""" +2024-03-14,14244,2349,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4913.17,{},74751,1,"""North America""" +2024-03-10,14245,4944,"[\""Laptop\"", \""Charger\""]",3086.6,{},94899,1,"""Africa""" +2024-05-14,14246,3485,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4690.65,"{\""promo\"": \""23%\""}",158547,0,"""Europe""" +2023-08-13,14247,8408,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4005.99,"{\""seasonal\"": \""26%\""}",146958,1,"""Africa""" +2023-09-11,14248,4528,"[\""Keyboard\""]",4565.94,"{\""seasonal\"": \""21%\""}",235551,1,"""Europe""" +2023-05-12,14249,1006,"[\""Phone\"", \""Keyboard\""]",512.97,"{\"": \""5%\""}",110050,1,"""North America""" +2023-08-31,14250,1208,"[\""Headphones\"", \""Charger\""]",3512.89,"{\""loyalty\"": \""29%\""}",237330,0,"""Asia""" +2023-09-10,14251,8269,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3791.44,"{\""seasonal\"": \""22%\""}",84617,0,"""North America""" +2023-05-25,14252,7307,"[\""Phone\"", \""Headphones\""]",2057.74,"{\""seasonal\"": \""11%\""}",189412,0,"""Asia""" +2024-11-24,14253,5654,"[\""Phone\""]",1375.63,{},129009,1,"""Asia""" +2024-10-27,14254,4060,"[\""Laptop\"", \""Charger\""]",1624.17,"{\"": \""21%\""}",27302,0,"""Africa""" +2024-06-20,14255,2935,"[\""Keyboard\""]",2317.63,"{\"": \""21%\""}",25227,1,"""Africa""" +2024-01-08,14256,6032,"[\""Monitor\"", \""Phone\""]",3748.03,{},265083,0,"""Africa""" +2023-10-17,14257,1959,"[\""Charger\""]",105.57,"{\""seasonal\"": \""5%\""}",43239,1,"""Asia""" +2024-08-26,14258,9482,"[\""Headphones\""]",2317.64,"{\""loyalty\"": \""28%\""}",182952,1,"""Asia""" +2024-06-14,14259,7451,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3938.53,"{\"": \""11%\""}",273154,0,"""Asia""" +2024-02-19,14260,3558,"[\""Wireless Mouse\""]",3841.91,{},255219,1,"""South America""" +2023-09-24,14261,4707,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",895.91,{},219960,1,"""North America""" +2024-04-09,14262,8463,"[\""Charger\""]",1537.25,{},173535,0,"""Africa""" +2024-05-02,14263,7397,"[\""Headphones\"", \""Laptop\""]",3976.92,{},281260,0,"""Africa""" +2024-07-21,14264,5170,"[\""Laptop\"", \""Monitor\""]",3530.44,{},242278,0,"""North America""" +2024-01-21,14265,8005,"[\""Wireless Mouse\""]",4821.86,{},125659,1,"""South America""" +2024-09-08,14266,6221,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3771.86,{},199381,0,"""South America""" +2024-11-03,14267,2004,"[\""Laptop\"", \""Phone\""]",2269.46,{},290983,0,"""North America""" +2024-12-11,14268,3083,"[\""Phone\"", \""Wireless Mouse\""]",396.3,{},125972,0,"""Europe""" +2023-09-07,14269,9028,"[\""Laptop\"", \""Keyboard\""]",3536.2,"{\"": \""20%\""}",235371,1,"""Asia""" +2023-12-17,14270,3552,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3365.25,{},31184,1,"""Africa""" +2023-09-09,14271,9350,"[\""Monitor\"", \""Headphones\""]",1885.87,{},277191,1,"""Africa""" +2024-03-23,14272,369,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3986.41,{},144183,1,"""Africa""" +2023-05-16,14273,2322,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2624.7,"{\""promo\"": \""9%\""}",96065,1,"""South America""" +2023-09-18,14274,4531,"[\""Laptop\""]",200.36,"{\""promo\"": \""18%\""}",268944,1,"""Asia""" +2023-05-03,14275,8501,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2933.93,"{\"": \""20%\""}",63645,0,"""North America""" +2023-11-16,14276,8326,"[\""Laptop\""]",3490.13,"{\""promo\"": \""27%\""}",199955,1,"""Asia""" +2023-07-16,14277,1728,"[\""Phone\""]",186.81,{},215839,1,"""South America""" +2023-05-30,14278,7259,"[\""Laptop\"", \""Charger\""]",3310.32,{},70258,1,"""North America""" +2023-04-01,14279,5856,"[\""Monitor\"", \""Wireless Mouse\""]",3108.88,{},129623,1,"""South America""" +2024-09-18,14280,6979,"[\""Phone\""]",746.88,"{\""seasonal\"": \""14%\""}",66805,0,"""Africa""" +2024-07-31,14281,4314,"[\""Charger\"", \""Wireless Mouse\""]",2762.58,{},175927,1,"""North America""" +2024-06-03,14282,3164,"[\""Laptop\"", \""Phone\""]",4127.15,"{\""loyalty\"": \""20%\""}",154041,1,"""North America""" +2023-01-11,14283,1008,"[\""Phone\"", \""Wireless Mouse\""]",61.03,{},204150,1,"""Africa""" +2024-07-05,14284,2453,"[\""Laptop\""]",319.68,{},84938,0,"""South America""" +2023-11-23,14285,6959,"[\""Keyboard\""]",2821.48,"{\"": \""6%\""}",20076,0,"""Asia""" +2023-02-07,14286,6933,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3157.46,{},45686,1,"""Europe""" +2023-06-11,14287,6559,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",70.32,"{\""loyalty\"": \""17%\""}",73446,1,"""Africa""" +2023-04-17,14288,3657,"[\""Headphones\"", \""Charger\""]",2384.3,{},218328,0,"""Europe""" +2023-08-10,14289,9760,"[\""Keyboard\"", \""Charger\""]",127.61,{},287411,1,"""North America""" +2024-10-27,14290,5646,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",866.09,"{\""promo\"": \""30%\""}",177054,1,"""Africa""" +2023-11-30,14291,434,"[\""Headphones\""]",3641.62,{},122895,1,"""Europe""" +2024-07-11,14292,2536,"[\""Wireless Mouse\""]",4031.1,"{\""promo\"": \""28%\""}",182566,0,"""Africa""" +2024-02-21,14293,1896,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2955.63,{},13412,0,"""North America""" +2024-03-18,14294,434,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3754.73,{},293050,0,"""South America""" +2023-01-29,14295,469,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3242.59,{},160426,0,"""Africa""" +2023-06-05,14296,8196,"[\""Keyboard\"", \""Headphones\""]",2222.56,"{\""seasonal\"": \""21%\""}",93479,1,"""North America""" +2024-01-17,14297,8902,"[\""Wireless Mouse\"", \""Headphones\""]",1419.18,"{\""loyalty\"": \""25%\""}",296180,0,"""Asia""" +2024-08-18,14298,8633,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3198.99,{},34272,0,"""North America""" +2024-05-02,14299,8047,"[\""Laptop\"", \""Monitor\""]",421.01,"{\""seasonal\"": \""19%\""}",269177,0,"""Africa""" +2024-06-05,14300,5062,"[\""Headphones\""]",3749.36,{},239016,1,"""North America""" +2023-03-13,14301,4160,"[\""Charger\""]",2009.38,{},102367,1,"""North America""" +2024-10-21,14302,5687,"[\""Charger\"", \""Wireless Mouse\""]",86.96,"{\""promo\"": \""14%\""}",290741,1,"""North America""" +2023-04-26,14303,6228,"[\""Laptop\""]",3613.9,"{\"": \""28%\""}",108421,1,"""Asia""" +2024-09-14,14304,3967,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2812.57,{},46487,0,"""Africa""" +2024-10-02,14305,1684,"[\""Wireless Mouse\""]",344.18,{},187664,0,"""South America""" +2023-09-20,14306,7620,"[\""Keyboard\"", \""Charger\""]",2381.16,{},202057,0,"""South America""" +2024-09-07,14307,9761,"[\""Tablet\""]",202.85,{},262681,1,"""South America""" +2023-12-22,14308,3034,"[\""Headphones\"", \""Phone\""]",3161.9,"{\""promo\"": \""11%\""}",217855,0,"""North America""" +2023-12-09,14309,6834,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2253.55,{},40803,0,"""Europe""" +2024-06-24,14310,8100,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2674.02,{},265791,0,"""Africa""" +2024-01-10,14311,166,"[\""Monitor\"", \""Keyboard\""]",2782.24,"{\""promo\"": \""18%\""}",294315,0,"""Europe""" +2023-06-26,14312,6264,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4994.94,"{\""seasonal\"": \""27%\""}",251757,1,"""Asia""" +2023-09-12,14313,4580,"[\""Headphones\"", \""Phone\""]",2272.1,"{\""promo\"": \""30%\""}",7482,1,"""Europe""" +2024-09-25,14314,4810,"[\""Laptop\"", \""Charger\""]",2885.16,{},150611,0,"""Europe""" +2023-03-16,14315,1095,"[\""Tablet\""]",1178.54,"{\"": \""29%\""}",237412,1,"""Europe""" +2023-02-01,14316,9223,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",595.39,{},74006,0,"""North America""" +2024-08-21,14317,5510,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3657.88,{},164994,0,"""Africa""" +2024-08-23,14318,3412,"[\""Keyboard\"", \""Phone\""]",4214.32,"{\"": \""29%\""}",158684,0,"""North America""" +2023-11-13,14319,5074,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2101.7,"{\""seasonal\"": \""24%\""}",54163,1,"""Asia""" +2024-09-30,14320,96,"[\""Wireless Mouse\"", \""Tablet\""]",752.97,"{\""seasonal\"": \""5%\""}",218117,0,"""Asia""" +2024-09-11,14321,5912,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2846.98,{},168731,0,"""Asia""" +2024-08-18,14322,316,"[\""Charger\"", \""Tablet\""]",2101.31,{},209399,1,"""Africa""" +2024-11-30,14323,1356,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2279.48,{},201472,0,"""Asia""" +2023-08-04,14324,965,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1480.6,{},55608,1,"""Africa""" +2024-01-29,14325,4398,"[\""Charger\"", \""Phone\""]",3085.36,{},234453,0,"""Asia""" +2024-11-14,14326,1006,"[\""Monitor\"", \""Tablet\""]",3330.41,{},264653,1,"""South America""" +2024-06-13,14327,8531,"[\""Headphones\"", \""Keyboard\""]",2950.76,"{\"": \""11%\""}",199452,1,"""Asia""" +2024-02-05,14328,7392,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4320.44,{},176156,0,"""Asia""" +2023-04-27,14329,1136,"[\""Wireless Mouse\"", \""Keyboard\""]",1376.57,{},234298,0,"""Europe""" +2023-12-10,14330,195,"[\""Headphones\""]",428.29,"{\"": \""21%\""}",146445,1,"""South America""" +2023-11-29,14331,5152,"[\""Charger\""]",3988.87,"{\"": \""17%\""}",124834,1,"""Africa""" +2023-03-30,14332,2869,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2026.75,{},188639,1,"""Africa""" +2024-08-26,14333,2421,"[\""Phone\""]",2666.07,"{\""promo\"": \""28%\""}",154210,0,"""North America""" +2023-08-18,14334,253,"[\""Monitor\"", \""Charger\""]",737.3,{},258677,0,"""South America""" +2023-01-21,14335,6995,"[\""Charger\"", \""Phone\""]",4015.98,{},112583,1,"""North America""" +2023-12-16,14336,6230,"[\""Headphones\"", \""Laptop\""]",4206.74,{},159171,1,"""Europe""" +2024-09-24,14337,1288,"[\""Headphones\""]",4548.67,"{\""seasonal\"": \""6%\""}",239314,0,"""Asia""" +2023-10-13,14338,5265,"[\""Monitor\""]",2577.55,"{\"": \""29%\""}",147002,0,"""South America""" +2024-12-12,14339,9289,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2424.3,{},106158,0,"""South America""" +2024-06-21,14340,4141,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",772.49,{},247278,1,"""Asia""" +2023-08-21,14341,4129,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2425.41,"{\""seasonal\"": \""16%\""}",174093,1,"""Africa""" +2024-02-23,14342,5016,"[\""Charger\""]",1042.15,{},210441,1,"""Asia""" +2023-03-08,14343,531,"[\""Keyboard\""]",103.36,{},206796,0,"""Europe""" +2024-04-11,14344,6558,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4037.86,{},43801,0,"""North America""" +2024-09-06,14345,4930,"[\""Wireless Mouse\"", \""Phone\""]",2872.33,"{\""seasonal\"": \""27%\""}",81470,0,"""Africa""" +2023-01-29,14346,3433,"[\""Headphones\""]",4103.3,{},179201,0,"""Asia""" +2024-11-13,14347,8864,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",942.22,{},122183,1,"""Africa""" +2024-11-30,14348,4103,"[\""Monitor\""]",303.47,{},10777,0,"""Europe""" +2023-10-17,14349,3463,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4599.89,{},275316,0,"""Africa""" +2023-02-25,14350,191,"[\""Charger\"", \""Wireless Mouse\""]",2113.47,"{\"": \""30%\""}",178565,1,"""Europe""" +2024-12-06,14351,3242,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2677.63,{},211742,0,"""South America""" +2024-02-04,14352,790,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4904.24,"{\""seasonal\"": \""27%\""}",288379,0,"""Europe""" +2024-09-10,14353,9024,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3414.86,"{\""seasonal\"": \""23%\""}",146228,0,"""Europe""" +2023-06-19,14354,2088,"[\""Tablet\""]",1865.37,"{\"": \""22%\""}",268306,0,"""South America""" +2024-10-21,14355,9376,"[\""Laptop\"", \""Headphones\""]",3813.22,"{\""loyalty\"": \""17%\""}",5783,0,"""Asia""" +2024-04-26,14356,650,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4189.0,"{\"": \""18%\""}",73867,0,"""North America""" +2024-10-29,14357,3433,"[\""Headphones\""]",3175.55,{},273741,0,"""North America""" +2024-11-12,14358,3098,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1818.86,{},68860,0,"""North America""" +2023-06-07,14359,7561,"[\""Monitor\""]",601.03,"{\""promo\"": \""6%\""}",278983,1,"""North America""" +2023-05-31,14360,6940,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1770.44,"{\""loyalty\"": \""30%\""}",105216,0,"""South America""" +2024-09-12,14361,5551,"[\""Keyboard\"", \""Charger\""]",1411.17,{},277615,0,"""South America""" +2024-02-01,14362,4956,"[\""Phone\""]",4897.92,"{\""loyalty\"": \""11%\""}",23602,0,"""North America""" +2023-03-29,14363,6833,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1601.52,{},253903,1,"""South America""" +2024-03-16,14364,186,"[\""Monitor\""]",3663.69,"{\""promo\"": \""10%\""}",189016,1,"""South America""" +2024-11-07,14365,2267,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2253.29,"{\""loyalty\"": \""24%\""}",178014,0,"""Europe""" +2024-04-01,14366,388,"[\""Monitor\""]",4037.84,"{\"": \""5%\""}",57768,0,"""Asia""" +2024-09-26,14367,310,"[\""Laptop\""]",2229.92,{},49830,1,"""Asia""" +2023-10-01,14368,798,"[\""Wireless Mouse\"", \""Monitor\""]",125.6,{},132635,1,"""South America""" +2024-11-02,14369,2939,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1679.66,{},91187,1,"""North America""" +2024-05-16,14370,5946,"[\""Wireless Mouse\"", \""Charger\""]",3212.19,"{\""promo\"": \""16%\""}",218359,0,"""Asia""" +2023-12-14,14371,4889,"[\""Headphones\""]",1861.7,"{\""promo\"": \""18%\""}",241464,0,"""North America""" +2024-11-04,14372,2367,"[\""Laptop\""]",1068.52,{},93063,0,"""South America""" +2024-02-22,14373,726,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4642.99,{},52500,1,"""Asia""" +2023-10-10,14374,1869,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4675.65,"{\"": \""29%\""}",178213,1,"""Africa""" +2023-11-16,14375,4795,"[\""Charger\"", \""Wireless Mouse\""]",705.8,"{\""loyalty\"": \""5%\""}",71571,1,"""Africa""" +2023-05-28,14376,6404,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2734.44,"{\"": \""8%\""}",92028,0,"""North America""" +2024-08-12,14377,6369,"[\""Laptop\"", \""Monitor\""]",3408.07,{},248565,1,"""Asia""" +2024-12-18,14378,2946,"[\""Monitor\""]",4240.93,"{\""loyalty\"": \""10%\""}",260413,0,"""South America""" +2024-05-09,14379,959,"[\""Tablet\"", \""Phone\""]",1535.3,{},139120,1,"""Asia""" +2024-01-04,14380,9579,"[\""Wireless Mouse\""]",1525.26,"{\""loyalty\"": \""7%\""}",174574,1,"""Europe""" +2024-02-28,14381,3976,"[\""Laptop\""]",4156.43,"{\""loyalty\"": \""10%\""}",7327,0,"""North America""" +2024-11-26,14382,8433,"[\""Keyboard\"", \""Wireless Mouse\""]",1419.83,{},95991,0,"""Europe""" +2024-11-17,14383,4918,"[\""Wireless Mouse\"", \""Headphones\""]",3365.34,"{\""seasonal\"": \""10%\""}",289347,0,"""Asia""" +2023-10-18,14384,6761,"[\""Laptop\"", \""Headphones\""]",3026.6,{},55679,0,"""North America""" +2023-07-22,14385,7734,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3732.85,"{\""seasonal\"": \""23%\""}",59280,1,"""North America""" +2024-07-29,14386,8196,"[\""Charger\""]",274.28,"{\""loyalty\"": \""14%\""}",94702,1,"""Europe""" +2023-02-15,14387,9773,"[\""Laptop\"", \""Phone\""]",1339.55,"{\""promo\"": \""14%\""}",296269,1,"""Africa""" +2023-06-28,14388,6074,"[\""Monitor\"", \""Charger\""]",2236.29,"{\"": \""29%\""}",269812,0,"""Africa""" +2024-04-07,14389,7177,"[\""Wireless Mouse\""]",1122.54,{},19040,1,"""Asia""" +2023-01-09,14390,5936,"[\""Phone\""]",4485.66,"{\""loyalty\"": \""28%\""}",173913,0,"""South America""" +2023-07-09,14391,99,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2688.17,{},53821,1,"""North America""" +2024-10-10,14392,8624,"[\""Laptop\"", \""Charger\""]",4578.73,{},143967,1,"""Europe""" +2023-02-14,14393,9537,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1912.74,{},289409,0,"""Africa""" +2024-01-13,14394,6389,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1466.35,{},159102,1,"""Europe""" +2024-03-22,14395,5867,"[\""Keyboard\"", \""Monitor\""]",796.61,{},240684,1,"""South America""" +2024-11-04,14396,1362,"[\""Charger\""]",1896.36,{},100394,0,"""Africa""" +2024-04-05,14397,1474,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4493.69,{},88081,0,"""South America""" +2023-08-13,14398,4921,"[\""Headphones\"", \""Wireless Mouse\""]",3774.61,{},136315,1,"""South America""" +2023-09-06,14399,9154,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1840.95,{},35983,0,"""South America""" +2023-11-15,14400,3032,"[\""Wireless Mouse\"", \""Phone\""]",950.9,"{\"": \""14%\""}",211302,1,"""North America""" +2023-11-13,14401,1916,"[\""Laptop\"", \""Keyboard\""]",747.01,{},231018,0,"""Africa""" +2024-04-09,14402,3603,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2039.37,{},223618,1,"""Asia""" +2023-05-21,14403,1129,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",54.63,"{\"": \""8%\""}",269049,1,"""North America""" +2024-09-17,14404,9079,"[\""Laptop\"", \""Wireless Mouse\""]",3398.17,"{\""seasonal\"": \""9%\""}",151301,1,"""South America""" +2023-10-13,14405,6602,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1244.84,{},214921,1,"""South America""" +2023-06-26,14406,1105,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",135.3,"{\""promo\"": \""16%\""}",56728,1,"""Europe""" +2023-01-02,14407,1266,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2571.03,"{\"": \""5%\""}",125565,1,"""Africa""" +2023-05-13,14408,3684,"[\""Laptop\""]",2667.33,"{\"": \""14%\""}",45889,0,"""South America""" +2023-05-26,14409,5722,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4259.07,"{\"": \""18%\""}",178638,0,"""Asia""" +2023-08-18,14410,1867,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",480.13,{},276706,1,"""Africa""" +2024-01-25,14411,5934,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",460.66,{},248426,0,"""Asia""" +2023-08-29,14412,6982,"[\""Monitor\"", \""Phone\""]",4964.58,{},27558,1,"""Europe""" +2023-03-16,14413,1000,"[\""Tablet\"", \""Keyboard\""]",3309.76,"{\""seasonal\"": \""11%\""}",130585,1,"""Africa""" +2023-12-18,14414,3299,"[\""Keyboard\"", \""Wireless Mouse\""]",4043.84,"{\""loyalty\"": \""12%\""}",64434,0,"""Europe""" +2023-12-28,14415,2941,"[\""Wireless Mouse\"", \""Tablet\""]",690.82,"{\""promo\"": \""14%\""}",18971,0,"""Europe""" +2024-06-09,14416,296,"[\""Charger\""]",1155.27,"{\"": \""17%\""}",14155,1,"""South America""" +2024-01-12,14417,7407,"[\""Monitor\""]",4753.08,{},280620,0,"""Europe""" +2024-05-17,14418,6005,"[\""Charger\"", \""Monitor\""]",2496.06,{},92274,0,"""Asia""" +2023-04-15,14419,6571,"[\""Charger\""]",4683.5,{},241832,1,"""Asia""" +2023-07-02,14420,3150,"[\""Tablet\""]",2641.3,"{\""loyalty\"": \""30%\""}",23361,1,"""South America""" +2023-11-23,14421,7709,"[\""Keyboard\""]",3893.56,{},119713,0,"""Europe""" +2023-12-11,14422,5053,"[\""Keyboard\""]",3938.91,"{\"": \""23%\""}",141449,0,"""South America""" +2024-05-16,14423,9471,"[\""Wireless Mouse\"", \""Tablet\""]",512.89,{},6648,0,"""Europe""" +2024-11-28,14424,1004,"[\""Wireless Mouse\""]",1682.82,{},299506,0,"""North America""" +2024-01-14,14425,5716,"[\""Laptop\"", \""Tablet\""]",4361.9,{},132041,0,"""South America""" +2024-10-06,14426,6581,"[\""Tablet\""]",3566.15,{},273464,0,"""South America""" +2023-03-08,14427,4233,"[\""Charger\"", \""Monitor\""]",1895.5,{},16598,0,"""Asia""" +2023-01-07,14428,8618,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2409.87,"{\""loyalty\"": \""25%\""}",199827,0,"""South America""" +2023-02-28,14429,3726,"[\""Charger\"", \""Laptop\""]",384.96,"{\""loyalty\"": \""8%\""}",173471,0,"""Africa""" +2023-04-19,14430,974,"[\""Charger\"", \""Wireless Mouse\""]",566.58,"{\""promo\"": \""12%\""}",288862,0,"""Africa""" +2024-01-15,14431,3889,"[\""Keyboard\""]",1646.0,{},36147,0,"""Europe""" +2024-09-28,14432,8651,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1554.47,"{\""promo\"": \""16%\""}",169001,0,"""Asia""" +2024-10-19,14433,8682,"[\""Laptop\"", \""Phone\""]",2890.53,"{\""loyalty\"": \""14%\""}",4042,0,"""South America""" +2024-10-29,14434,2541,"[\""Monitor\"", \""Tablet\""]",4055.38,"{\""loyalty\"": \""19%\""}",181393,0,"""South America""" +2023-10-15,14435,1616,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2025.1,{},150594,0,"""Asia""" +2023-06-24,14436,4586,"[\""Tablet\"", \""Phone\""]",4376.33,"{\""seasonal\"": \""20%\""}",83285,1,"""Africa""" +2024-09-10,14437,684,"[\""Phone\""]",3682.8,"{\"": \""30%\""}",83984,1,"""South America""" +2023-04-12,14438,1288,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",198.73,"{\""promo\"": \""12%\""}",37439,0,"""Africa""" +2024-12-07,14439,4374,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4256.66,{},26650,0,"""Europe""" +2023-06-16,14440,8059,"[\""Monitor\""]",4217.94,{},64103,0,"""South America""" +2024-07-11,14441,5215,"[\""Headphones\"", \""Keyboard\""]",2696.77,{},81051,1,"""Africa""" +2023-07-04,14442,3600,"[\""Laptop\"", \""Tablet\""]",3167.78,"{\""promo\"": \""22%\""}",46687,0,"""North America""" +2024-06-27,14443,8731,"[\""Phone\""]",223.86,"{\""promo\"": \""19%\""}",182250,1,"""North America""" +2024-11-26,14444,893,"[\""Laptop\"", \""Wireless Mouse\""]",2960.43,{},41013,0,"""South America""" +2024-07-30,14445,6660,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",769.78,"{\""seasonal\"": \""14%\""}",80225,1,"""North America""" +2024-11-06,14446,9197,"[\""Tablet\""]",3047.02,"{\""loyalty\"": \""10%\""}",191723,1,"""North America""" +2024-03-04,14447,368,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",764.56,"{\"": \""29%\""}",39667,0,"""Africa""" +2023-03-13,14448,3482,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",980.12,"{\""seasonal\"": \""12%\""}",81238,1,"""Africa""" +2023-03-27,14449,1889,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3609.61,"{\""seasonal\"": \""14%\""}",160908,0,"""North America""" +2023-02-22,14450,4090,"[\""Monitor\""]",1098.27,{},160935,1,"""North America""" +2023-11-19,14451,9666,"[\""Wireless Mouse\""]",3804.26,{},186536,0,"""Africa""" +2024-09-07,14452,9747,"[\""Charger\"", \""Wireless Mouse\""]",813.62,"{\""seasonal\"": \""25%\""}",81215,1,"""Africa""" +2024-09-20,14453,1064,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1862.07,"{\""promo\"": \""9%\""}",54777,1,"""Asia""" +2023-09-12,14454,3722,"[\""Wireless Mouse\""]",4196.7,{},54704,1,"""North America""" +2023-08-04,14455,6557,"[\""Headphones\"", \""Phone\""]",2222.61,{},176950,1,"""Europe""" +2023-01-14,14456,3971,"[\""Headphones\"", \""Monitor\""]",1775.81,{},119848,1,"""Africa""" +2023-06-19,14457,727,"[\""Charger\"", \""Headphones\""]",3013.03,"{\"": \""28%\""}",47171,1,"""North America""" +2023-03-18,14458,8684,"[\""Laptop\""]",3522.09,"{\""seasonal\"": \""15%\""}",224927,1,"""Asia""" +2023-09-05,14459,6427,"[\""Charger\""]",4654.57,{},23990,0,"""Europe""" +2023-09-29,14460,5609,"[\""Headphones\""]",638.34,"{\""loyalty\"": \""20%\""}",8309,0,"""North America""" +2023-08-22,14461,2660,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",816.13,"{\"": \""29%\""}",153967,1,"""South America""" +2024-11-04,14462,3511,"[\""Headphones\"", \""Charger\""]",3118.58,{},8614,1,"""South America""" +2024-08-07,14463,5927,"[\""Phone\""]",3344.66,{},168216,1,"""South America""" +2023-07-13,14464,613,"[\""Phone\"", \""Monitor\""]",1694.83,{},202574,0,"""South America""" +2024-06-25,14465,9549,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2471.96,"{\"": \""8%\""}",217193,1,"""North America""" +2024-09-22,14466,9848,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1180.61,{},7546,1,"""Europe""" +2023-02-16,14467,5331,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4896.62,{},218844,0,"""South America""" +2023-06-24,14468,375,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",963.65,"{\""loyalty\"": \""20%\""}",273667,0,"""Africa""" +2024-05-10,14469,3267,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4549.51,{},286736,1,"""South America""" +2023-10-23,14470,2678,"[\""Charger\""]",2173.41,{},269464,0,"""South America""" +2023-12-18,14471,6119,"[\""Monitor\"", \""Phone\""]",3683.07,"{\""promo\"": \""10%\""}",67972,1,"""Asia""" +2024-07-31,14472,6650,"[\""Tablet\"", \""Headphones\""]",4012.27,"{\""promo\"": \""30%\""}",196445,0,"""Asia""" +2023-08-23,14473,6326,"[\""Headphones\""]",3862.06,"{\""promo\"": \""19%\""}",97301,1,"""Asia""" +2024-02-17,14474,2843,"[\""Tablet\"", \""Phone\""]",871.83,{},290879,0,"""Asia""" +2024-11-30,14475,8100,"[\""Phone\""]",3768.1,"{\""seasonal\"": \""11%\""}",115555,1,"""Asia""" +2023-09-07,14476,8148,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3106.82,{},291879,0,"""Africa""" +2023-06-02,14477,207,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",761.93,"{\""promo\"": \""10%\""}",158225,1,"""Europe""" +2023-02-20,14478,3298,"[\""Keyboard\""]",4513.23,"{\""loyalty\"": \""13%\""}",164146,0,"""Europe""" +2023-05-11,14479,1264,"[\""Monitor\"", \""Headphones\""]",2942.54,{},266819,1,"""Africa""" +2023-05-27,14480,1697,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2860.05,{},6913,0,"""Asia""" +2023-10-04,14481,4084,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4022.08,{},23572,0,"""North America""" +2023-07-26,14482,5260,"[\""Charger\"", \""Phone\""]",1470.07,{},292071,1,"""South America""" +2023-10-14,14483,1418,"[\""Charger\"", \""Tablet\""]",4636.49,"{\""promo\"": \""7%\""}",218602,0,"""Europe""" +2024-01-20,14484,5839,"[\""Wireless Mouse\"", \""Laptop\""]",2040.56,"{\""seasonal\"": \""15%\""}",281553,0,"""Africa""" +2024-12-06,14485,8557,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1398.15,"{\"": \""29%\""}",210407,1,"""Europe""" +2024-07-31,14486,2117,"[\""Charger\""]",2158.71,{},239499,0,"""North America""" +2024-02-13,14487,5603,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1766.46,"{\"": \""17%\""}",22899,1,"""South America""" +2024-12-21,14488,4241,"[\""Keyboard\""]",2872.9,{},138162,1,"""North America""" +2023-01-08,14489,826,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2248.78,"{\"": \""18%\""}",277923,1,"""Europe""" +2024-10-06,14490,7016,"[\""Phone\"", \""Laptop\""]",1497.24,{},250497,0,"""North America""" +2024-04-01,14491,9698,"[\""Tablet\"", \""Laptop\""]",1481.43,"{\""promo\"": \""26%\""}",77439,1,"""North America""" +2023-03-19,14492,9937,"[\""Headphones\""]",2648.11,{},200368,1,"""South America""" +2023-10-29,14493,7513,"[\""Keyboard\""]",1351.56,{},129922,0,"""North America""" +2023-09-06,14494,2690,"[\""Headphones\"", \""Monitor\""]",2633.34,{},103962,1,"""Europe""" +2023-09-22,14495,9542,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1315.79,{},4945,1,"""South America""" +2024-10-28,14496,5457,"[\""Tablet\"", \""Charger\""]",3237.18,"{\"": \""14%\""}",257533,1,"""Africa""" +2024-06-17,14497,7239,"[\""Tablet\""]",1296.43,"{\""loyalty\"": \""24%\""}",131464,0,"""Africa""" +2024-02-04,14498,6048,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1031.83,"{\"": \""8%\""}",83930,1,"""Africa""" +2023-09-15,14499,9312,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1557.25,"{\""seasonal\"": \""17%\""}",191574,0,"""North America""" +2023-07-09,14500,2077,"[\""Wireless Mouse\"", \""Charger\""]",1639.48,{},65638,0,"""South America""" +2024-05-12,14501,7373,"[\""Keyboard\"", \""Charger\""]",4354.76,{},46150,0,"""North America""" +2024-10-04,14502,3318,"[\""Tablet\"", \""Phone\""]",4230.81,"{\""loyalty\"": \""13%\""}",50017,0,"""Europe""" +2024-01-23,14503,9651,"[\""Monitor\""]",2605.25,"{\""promo\"": \""14%\""}",124298,0,"""Europe""" +2023-04-19,14504,3654,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2467.06,{},46140,1,"""Europe""" +2023-09-26,14505,1963,"[\""Laptop\""]",4689.87,{},163705,1,"""North America""" +2023-03-16,14506,5561,"[\""Charger\""]",3216.76,"{\"": \""17%\""}",203916,1,"""Europe""" +2024-05-16,14507,2045,"[\""Tablet\""]",87.96,"{\"": \""12%\""}",207399,0,"""North America""" +2023-07-19,14508,1887,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3581.97,"{\"": \""8%\""}",144922,1,"""Europe""" +2023-06-10,14509,6441,"[\""Phone\"", \""Keyboard\""]",4997.2,{},57812,1,"""Europe""" +2024-11-10,14510,1425,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4498.66,{},105442,0,"""Europe""" +2023-07-06,14511,5605,"[\""Laptop\"", \""Headphones\""]",1801.4,{},278138,1,"""Asia""" +2024-03-16,14512,1956,"[\""Keyboard\""]",451.61,"{\""loyalty\"": \""19%\""}",252386,0,"""Africa""" +2023-08-30,14513,7926,"[\""Keyboard\"", \""Tablet\""]",490.91,{},263858,0,"""South America""" +2023-12-17,14514,8573,"[\""Keyboard\""]",4499.44,{},185453,0,"""South America""" +2024-08-12,14515,9679,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1011.78,"{\""seasonal\"": \""13%\""}",181624,0,"""Europe""" +2023-03-19,14516,530,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2916.06,{},43332,0,"""Africa""" +2023-06-12,14517,5939,"[\""Monitor\""]",3998.57,"{\""loyalty\"": \""18%\""}",150225,0,"""North America""" +2023-10-02,14518,952,"[\""Wireless Mouse\""]",508.95,"{\""promo\"": \""5%\""}",263307,0,"""Africa""" +2024-10-05,14519,5105,"[\""Keyboard\""]",306.75,{},136536,1,"""Africa""" +2023-03-30,14520,1762,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1941.66,{},7033,1,"""North America""" +2023-04-15,14521,9028,"[\""Charger\"", \""Laptop\""]",2545.07,{},129871,0,"""Africa""" +2023-04-03,14522,8175,"[\""Monitor\"", \""Laptop\""]",3822.78,{},185958,1,"""South America""" +2023-02-11,14523,7684,"[\""Wireless Mouse\""]",3874.0,{},99626,1,"""Europe""" +2024-06-17,14524,2331,"[\""Phone\""]",1035.71,{},145105,0,"""Asia""" +2023-06-16,14525,1764,"[\""Tablet\"", \""Phone\""]",2668.32,{},129249,0,"""Africa""" +2023-07-27,14526,7275,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2335.71,{},176958,0,"""North America""" +2024-01-23,14527,1687,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2846.95,"{\""seasonal\"": \""26%\""}",175099,1,"""South America""" +2023-09-03,14528,7424,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3950.42,"{\""promo\"": \""25%\""}",258401,1,"""North America""" +2024-11-10,14529,463,"[\""Laptop\"", \""Tablet\""]",4543.71,{},56865,1,"""Asia""" +2023-03-26,14530,6639,"[\""Headphones\"", \""Keyboard\""]",1367.6,{},33818,0,"""Asia""" +2024-06-13,14531,6739,"[\""Wireless Mouse\"", \""Phone\""]",4423.8,{},167416,0,"""Europe""" +2023-09-08,14532,4218,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",370.47,"{\"": \""22%\""}",207117,0,"""South America""" +2024-07-13,14533,5950,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",711.35,"{\""promo\"": \""21%\""}",299966,1,"""Africa""" +2024-07-21,14534,8368,"[\""Charger\""]",1702.96,"{\""seasonal\"": \""5%\""}",46538,1,"""Africa""" +2023-07-28,14535,8298,"[\""Laptop\""]",2134.52,{},244482,1,"""Africa""" +2023-11-09,14536,1108,"[\""Keyboard\""]",1192.71,"{\"": \""12%\""}",204702,1,"""North America""" +2024-04-02,14537,3864,"[\""Monitor\"", \""Keyboard\""]",4802.54,{},79678,0,"""South America""" +2024-04-20,14538,4605,"[\""Headphones\""]",1638.99,{},164001,0,"""Europe""" +2023-10-24,14539,6040,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",457.91,"{\""promo\"": \""7%\""}",262231,1,"""Asia""" +2023-05-29,14540,6860,"[\""Tablet\"", \""Wireless Mouse\""]",674.85,{},194126,1,"""Europe""" +2023-02-18,14541,2641,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2224.3,{},180396,0,"""North America""" +2023-12-02,14542,9001,"[\""Phone\"", \""Laptop\""]",3037.56,"{\""loyalty\"": \""17%\""}",4994,1,"""Europe""" +2023-09-04,14543,8596,"[\""Charger\"", \""Wireless Mouse\""]",2937.09,{},158301,1,"""Africa""" +2023-02-22,14544,8814,"[\""Keyboard\"", \""Phone\""]",3365.18,"{\""seasonal\"": \""19%\""}",189250,0,"""North America""" +2024-12-17,14545,1859,"[\""Monitor\"", \""Wireless Mouse\""]",1596.0,"{\""loyalty\"": \""10%\""}",167091,0,"""North America""" +2023-12-26,14546,7551,"[\""Headphones\""]",1793.02,"{\"": \""15%\""}",123311,1,"""North America""" +2024-07-13,14547,7818,"[\""Laptop\"", \""Keyboard\""]",4851.24,{},273393,0,"""South America""" +2024-06-01,14548,2107,"[\""Laptop\"", \""Tablet\""]",2057.4,"{\""promo\"": \""5%\""}",86713,1,"""North America""" +2024-08-14,14549,616,"[\""Wireless Mouse\""]",2803.06,{},145429,0,"""South America""" +2023-07-11,14550,7168,"[\""Phone\"", \""Tablet\""]",205.37,{},138740,1,"""Asia""" +2024-01-03,14551,64,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",199.51,"{\""promo\"": \""7%\""}",277901,1,"""Asia""" +2024-05-20,14552,8119,"[\""Keyboard\"", \""Wireless Mouse\""]",338.33,"{\""loyalty\"": \""20%\""}",144347,1,"""Asia""" +2024-10-09,14553,2187,"[\""Charger\"", \""Monitor\""]",3347.11,"{\""seasonal\"": \""25%\""}",76562,0,"""Europe""" +2024-10-28,14554,5473,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",250.57,"{\""loyalty\"": \""5%\""}",290268,1,"""Europe""" +2023-10-28,14555,2679,"[\""Wireless Mouse\"", \""Charger\""]",4703.92,{},292731,0,"""Africa""" +2023-08-05,14556,1411,"[\""Monitor\"", \""Phone\""]",4253.82,"{\"": \""17%\""}",228481,1,"""South America""" +2023-01-26,14557,4404,"[\""Phone\"", \""Headphones\""]",2219.7,"{\"": \""27%\""}",236089,1,"""South America""" +2023-08-01,14558,9536,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4226.79,{},188575,0,"""Africa""" +2023-05-15,14559,8603,"[\""Headphones\""]",4941.55,{},195548,1,"""South America""" +2024-11-20,14560,9215,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",842.61,"{\""promo\"": \""7%\""}",34774,0,"""Africa""" +2023-11-12,14561,5023,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4915.69,"{\""promo\"": \""23%\""}",267705,1,"""Africa""" +2024-06-21,14562,1700,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2343.93,{},233754,1,"""Europe""" +2023-06-30,14563,9072,"[\""Monitor\""]",330.25,"{\""loyalty\"": \""5%\""}",187099,1,"""Europe""" +2023-03-09,14564,3669,"[\""Monitor\"", \""Tablet\""]",4710.03,{},28622,0,"""Europe""" +2024-05-23,14565,6242,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4967.58,{},225705,1,"""South America""" +2023-04-14,14566,4002,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2227.06,"{\""seasonal\"": \""25%\""}",13598,0,"""North America""" +2023-12-26,14567,208,"[\""Headphones\""]",1527.77,"{\""loyalty\"": \""16%\""}",165286,1,"""South America""" +2023-09-06,14568,9715,"[\""Phone\""]",2939.53,"{\""loyalty\"": \""26%\""}",167560,1,"""Africa""" +2024-07-21,14569,7894,"[\""Phone\"", \""Laptop\""]",4504.6,{},224547,0,"""North America""" +2023-08-13,14570,7106,"[\""Keyboard\""]",1248.09,"{\""seasonal\"": \""10%\""}",47162,1,"""Africa""" +2024-12-14,14571,5930,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2795.48,{},26715,1,"""Asia""" +2023-09-03,14572,8661,"[\""Laptop\""]",4757.51,"{\""loyalty\"": \""9%\""}",214957,0,"""South America""" +2024-01-27,14573,981,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3231.74,"{\"": \""5%\""}",25265,1,"""South America""" +2024-01-07,14574,2715,"[\""Charger\"", \""Tablet\""]",3175.96,{},241125,1,"""North America""" +2023-07-26,14575,328,"[\""Wireless Mouse\"", \""Keyboard\""]",4035.56,"{\""loyalty\"": \""14%\""}",295831,0,"""Europe""" +2023-09-26,14576,7468,"[\""Charger\""]",2334.43,"{\""seasonal\"": \""8%\""}",206084,1,"""Asia""" +2024-01-25,14577,7504,"[\""Tablet\""]",844.23,"{\""seasonal\"": \""5%\""}",188506,1,"""Africa""" +2023-02-15,14578,7730,"[\""Monitor\""]",1913.09,{},145090,1,"""Asia""" +2023-06-01,14579,6671,"[\""Wireless Mouse\"", \""Keyboard\""]",1928.76,{},119066,0,"""South America""" +2023-11-08,14580,7451,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1183.99,{},234754,0,"""North America""" +2023-06-09,14581,9344,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3937.7,"{\""loyalty\"": \""29%\""}",202006,1,"""Asia""" +2023-07-15,14582,1255,"[\""Headphones\""]",2028.93,{},293771,0,"""Asia""" +2024-09-19,14583,3770,"[\""Tablet\""]",3414.21,"{\"": \""17%\""}",151160,1,"""Asia""" +2024-10-12,14584,343,"[\""Tablet\"", \""Headphones\""]",1247.44,"{\"": \""15%\""}",190536,0,"""North America""" +2024-04-04,14585,8845,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3828.03,"{\"": \""8%\""}",296088,0,"""North America""" +2024-09-12,14586,6004,"[\""Phone\""]",2787.59,{},78681,0,"""Africa""" +2024-10-22,14587,9453,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1544.02,{},67147,1,"""Europe""" +2024-07-29,14588,2626,"[\""Charger\"", \""Phone\"", \""Headphones\""]",785.81,{},200622,1,"""Europe""" +2023-07-26,14589,9618,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1871.3,"{\"": \""9%\""}",162980,1,"""Africa""" +2024-02-24,14590,9621,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2633.39,"{\""promo\"": \""22%\""}",243611,0,"""South America""" +2023-09-02,14591,7602,"[\""Phone\"", \""Charger\""]",3622.01,{},17277,0,"""North America""" +2023-03-12,14592,5139,"[\""Laptop\"", \""Tablet\""]",4895.42,{},15074,1,"""South America""" +2024-11-01,14593,9724,"[\""Tablet\""]",802.82,{},7615,1,"""South America""" +2024-03-09,14594,6612,"[\""Monitor\"", \""Keyboard\""]",3502.5,{},36608,1,"""Asia""" +2023-11-23,14595,8533,"[\""Charger\"", \""Headphones\""]",4792.01,{},258666,1,"""Asia""" +2024-03-05,14596,3534,"[\""Keyboard\"", \""Tablet\""]",3642.05,"{\"": \""16%\""}",238156,0,"""South America""" +2024-05-25,14597,757,"[\""Charger\"", \""Headphones\""]",4508.49,{},158759,1,"""South America""" +2023-06-14,14598,3207,"[\""Keyboard\"", \""Monitor\""]",1861.83,{},176085,0,"""Africa""" +2023-11-17,14599,3145,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2726.86,{},80003,0,"""North America""" +2024-04-09,14600,8586,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2494.83,{},137098,1,"""North America""" +2023-01-07,14601,8512,"[\""Keyboard\""]",4659.93,{},116014,0,"""Europe""" +2024-08-30,14602,2479,"[\""Keyboard\""]",2379.77,"{\""loyalty\"": \""28%\""}",173925,0,"""Europe""" +2024-10-01,14603,7335,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1643.93,"{\"": \""19%\""}",172651,0,"""Asia""" +2023-10-09,14604,5132,"[\""Headphones\"", \""Phone\""]",697.87,{},58102,0,"""North America""" +2023-04-13,14605,3089,"[\""Charger\""]",523.17,{},216423,1,"""Asia""" +2024-04-10,14606,4469,"[\""Charger\""]",2042.22,"{\""seasonal\"": \""15%\""}",266002,0,"""North America""" +2023-06-19,14607,501,"[\""Charger\""]",2552.4,{},174798,1,"""North America""" +2023-09-03,14608,7316,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",420.65,{},260454,1,"""South America""" +2024-07-19,14609,3044,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",470.27,{},178945,1,"""South America""" +2023-03-13,14610,605,"[\""Keyboard\"", \""Phone\""]",128.32,"{\"": \""10%\""}",85366,0,"""North America""" +2023-02-24,14611,1995,"[\""Wireless Mouse\""]",1756.56,{},270386,0,"""Europe""" +2023-01-08,14612,9945,"[\""Laptop\""]",1133.25,{},71082,0,"""North America""" +2024-05-02,14613,8498,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",880.2,"{\""promo\"": \""24%\""}",45175,0,"""South America""" +2024-07-01,14614,6228,"[\""Headphones\"", \""Laptop\""]",3964.73,"{\""seasonal\"": \""11%\""}",171859,1,"""Africa""" +2024-10-16,14615,3949,"[\""Wireless Mouse\"", \""Charger\""]",2245.22,{},52436,0,"""Europe""" +2023-11-02,14616,6806,"[\""Headphones\"", \""Tablet\""]",1651.96,"{\""loyalty\"": \""11%\""}",108161,1,"""South America""" +2024-02-08,14617,9378,"[\""Phone\"", \""Monitor\""]",3733.39,{},151730,0,"""South America""" +2024-09-15,14618,8957,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2497.81,{},189408,0,"""North America""" +2024-10-23,14619,9641,"[\""Keyboard\""]",2178.7,{},278590,1,"""North America""" +2023-08-09,14620,5094,"[\""Charger\""]",2654.69,"{\"": \""26%\""}",240431,0,"""Europe""" +2023-10-06,14621,5233,"[\""Charger\"", \""Phone\""]",1731.39,{},210390,0,"""Asia""" +2024-06-06,14622,2160,"[\""Phone\""]",2125.62,{},147194,0,"""Europe""" +2023-09-20,14623,7510,"[\""Headphones\"", \""Charger\""]",2323.67,"{\""loyalty\"": \""5%\""}",98905,0,"""Europe""" +2024-05-31,14624,4391,"[\""Wireless Mouse\"", \""Monitor\""]",1523.6,{},67345,1,"""Europe""" +2023-10-11,14625,9165,"[\""Charger\""]",2033.59,"{\""loyalty\"": \""5%\""}",18939,1,"""South America""" +2024-10-03,14626,4725,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",246.62,{},277726,1,"""Europe""" +2023-10-29,14627,5256,"[\""Charger\"", \""Keyboard\""]",3179.59,{},4902,0,"""North America""" +2023-09-08,14628,2910,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2524.13,"{\""seasonal\"": \""30%\""}",28320,1,"""Asia""" +2023-03-08,14629,8777,"[\""Headphones\""]",2853.56,{},121596,0,"""North America""" +2023-11-23,14630,2982,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4142.55,{},206910,0,"""Asia""" +2024-07-17,14631,2880,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3786.44,"{\""loyalty\"": \""30%\""}",298111,1,"""South America""" +2024-01-09,14632,1354,"[\""Headphones\"", \""Wireless Mouse\""]",4048.28,{},271360,0,"""South America""" +2023-08-05,14633,3940,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4603.23,{},6985,1,"""South America""" +2024-08-25,14634,3437,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3858.53,"{\""loyalty\"": \""28%\""}",217154,0,"""North America""" +2024-10-01,14635,1672,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2579.79,{},166524,1,"""Europe""" +2024-07-21,14636,4168,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",838.85,"{\""loyalty\"": \""18%\""}",11448,1,"""South America""" +2023-12-21,14637,6877,"[\""Phone\""]",1719.74,{},26368,1,"""Asia""" +2023-06-17,14638,505,"[\""Wireless Mouse\""]",249.96,{},250624,0,"""South America""" +2023-01-28,14639,2451,"[\""Phone\"", \""Tablet\""]",4340.01,{},113798,1,"""Europe""" +2023-08-04,14640,8091,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2759.27,"{\""promo\"": \""13%\""}",108142,1,"""Asia""" +2024-12-12,14641,561,"[\""Tablet\"", \""Charger\""]",1696.61,"{\"": \""5%\""}",69469,1,"""South America""" +2024-12-17,14642,331,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4235.65,"{\""promo\"": \""23%\""}",247101,0,"""South America""" +2024-03-24,14643,8750,"[\""Charger\""]",3837.42,{},83153,0,"""Asia""" +2024-02-27,14644,3895,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3706.69,"{\""promo\"": \""25%\""}",13130,0,"""South America""" +2023-08-16,14645,8180,"[\""Tablet\"", \""Charger\""]",354.7,{},233652,0,"""South America""" +2023-09-22,14646,1753,"[\""Wireless Mouse\""]",3588.53,"{\""promo\"": \""7%\""}",1591,1,"""Asia""" +2023-07-03,14647,2070,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4636.52,"{\""seasonal\"": \""14%\""}",231612,0,"""Africa""" +2023-03-21,14648,3656,"[\""Keyboard\""]",1396.74,{},2824,1,"""Africa""" +2023-09-23,14649,9238,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",688.71,"{\""promo\"": \""13%\""}",23288,0,"""South America""" +2023-08-29,14650,723,"[\""Headphones\""]",2614.24,"{\""seasonal\"": \""10%\""}",160192,0,"""Europe""" +2023-06-16,14651,8662,"[\""Monitor\"", \""Wireless Mouse\""]",576.38,"{\""loyalty\"": \""14%\""}",242717,0,"""North America""" +2023-09-10,14652,9325,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",417.09,{},286674,1,"""Africa""" +2023-05-04,14653,7662,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3142.3,{},100705,0,"""Africa""" +2024-10-01,14654,6410,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3904.34,{},88086,1,"""Europe""" +2024-06-03,14655,2135,"[\""Charger\"", \""Phone\""]",3068.35,"{\"": \""27%\""}",22218,1,"""South America""" +2023-10-02,14656,2413,"[\""Headphones\"", \""Charger\""]",4738.86,"{\""loyalty\"": \""11%\""}",242294,1,"""North America""" +2024-11-06,14657,8408,"[\""Charger\"", \""Monitor\""]",3394.05,"{\""loyalty\"": \""22%\""}",231543,0,"""Asia""" +2024-07-19,14658,6652,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3910.05,{},78359,0,"""Africa""" +2023-06-21,14659,2119,"[\""Laptop\""]",4045.34,"{\""loyalty\"": \""19%\""}",289629,1,"""North America""" +2023-04-21,14660,323,"[\""Tablet\"", \""Monitor\""]",396.83,"{\""seasonal\"": \""6%\""}",146134,1,"""Africa""" +2023-09-09,14661,7211,"[\""Wireless Mouse\""]",783.11,"{\""seasonal\"": \""9%\""}",224683,0,"""Europe""" +2024-12-14,14662,5564,"[\""Phone\"", \""Headphones\""]",2779.98,"{\"": \""29%\""}",174762,1,"""South America""" +2023-10-11,14663,8921,"[\""Wireless Mouse\"", \""Laptop\""]",3873.14,{},35654,0,"""Asia""" +2023-04-26,14664,2937,"[\""Charger\"", \""Keyboard\""]",1971.22,{},79954,1,"""Europe""" +2024-06-22,14665,4651,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4303.5,"{\""seasonal\"": \""29%\""}",69679,1,"""North America""" +2024-12-17,14666,7174,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1348.07,{},227072,1,"""South America""" +2024-08-08,14667,9631,"[\""Monitor\""]",684.76,"{\""promo\"": \""27%\""}",4498,1,"""South America""" +2023-10-03,14668,1858,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",499.19,"{\""loyalty\"": \""16%\""}",220086,1,"""Asia""" +2024-07-22,14669,6155,"[\""Keyboard\"", \""Phone\""]",3976.91,{},47917,0,"""North America""" +2023-12-23,14670,9286,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3715.6,"{\""loyalty\"": \""22%\""}",60754,0,"""Europe""" +2023-03-26,14671,5511,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",557.27,{},16771,0,"""Europe""" +2024-09-08,14672,6047,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2864.26,"{\""loyalty\"": \""16%\""}",92504,1,"""North America""" +2024-08-28,14673,7851,"[\""Wireless Mouse\""]",2121.77,{},16521,0,"""Asia""" +2024-07-10,14674,770,"[\""Laptop\"", \""Charger\""]",4237.18,"{\"": \""19%\""}",235916,1,"""North America""" +2024-07-12,14675,9377,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4786.77,"{\"": \""14%\""}",81672,0,"""Africa""" +2023-05-01,14676,1545,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3479.14,"{\""promo\"": \""10%\""}",277257,1,"""North America""" +2023-10-01,14677,1054,"[\""Keyboard\"", \""Tablet\""]",1670.73,"{\"": \""15%\""}",96354,1,"""Asia""" +2023-03-01,14678,135,"[\""Wireless Mouse\"", \""Phone\""]",3099.34,{},238189,0,"""Africa""" +2024-06-30,14679,9626,"[\""Wireless Mouse\""]",4906.58,{},125060,0,"""Europe""" +2024-06-01,14680,7258,"[\""Monitor\""]",2455.12,{},222153,1,"""South America""" +2023-02-01,14681,9588,"[\""Laptop\"", \""Headphones\""]",1000.78,"{\""promo\"": \""6%\""}",144816,1,"""Europe""" +2024-09-18,14682,7669,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",987.26,{},65748,0,"""Europe""" +2024-12-09,14683,8355,"[\""Tablet\""]",3593.68,{},40653,0,"""Europe""" +2024-04-28,14684,4207,"[\""Keyboard\""]",2664.85,"{\"": \""10%\""}",210606,1,"""Africa""" +2024-02-05,14685,2749,"[\""Headphones\"", \""Phone\""]",1043.8,{},16102,0,"""Asia""" +2023-03-30,14686,8748,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",323.3,"{\""loyalty\"": \""27%\""}",184455,1,"""Europe""" +2024-01-01,14687,5055,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1114.71,"{\""promo\"": \""12%\""}",214402,0,"""North America""" +2024-06-24,14688,1936,"[\""Monitor\"", \""Wireless Mouse\""]",4755.67,{},181854,0,"""Africa""" +2024-09-05,14689,3743,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3588.65,"{\""loyalty\"": \""10%\""}",102315,1,"""North America""" +2024-02-02,14690,8947,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4646.06,{},95542,1,"""Asia""" +2023-07-10,14691,9452,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1267.27,{},32697,1,"""South America""" +2024-06-29,14692,8172,"[\""Keyboard\""]",4370.77,{},38948,1,"""Africa""" +2023-11-20,14693,1116,"[\""Keyboard\"", \""Charger\""]",3662.98,{},42165,0,"""South America""" +2024-08-19,14694,7555,"[\""Tablet\"", \""Keyboard\""]",138.14,{},21119,0,"""South America""" +2023-12-11,14695,4980,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1998.34,"{\""promo\"": \""29%\""}",150283,0,"""South America""" +2023-12-18,14696,1197,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3559.25,"{\""loyalty\"": \""22%\""}",204697,0,"""Asia""" +2024-07-05,14697,9034,"[\""Headphones\""]",3883.85,"{\"": \""21%\""}",29408,1,"""Asia""" +2023-10-24,14698,9100,"[\""Tablet\"", \""Phone\""]",940.32,"{\""loyalty\"": \""19%\""}",201064,0,"""South America""" +2023-04-09,14699,844,"[\""Wireless Mouse\"", \""Keyboard\""]",3332.64,{},20036,1,"""Africa""" +2024-08-07,14700,3654,"[\""Keyboard\""]",3291.95,"{\"": \""23%\""}",289919,1,"""North America""" +2023-11-29,14701,4704,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3535.19,{},41352,0,"""North America""" +2023-02-15,14702,7364,"[\""Monitor\"", \""Tablet\""]",3917.79,"{\""promo\"": \""30%\""}",148557,0,"""Asia""" +2023-12-08,14703,4890,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",311.56,{},294474,0,"""Asia""" +2023-01-20,14704,6939,"[\""Monitor\"", \""Wireless Mouse\""]",383.18,{},256731,0,"""Asia""" +2023-01-13,14705,6854,"[\""Keyboard\""]",3877.92,{},244986,0,"""North America""" +2024-03-08,14706,8367,"[\""Charger\"", \""Laptop\""]",1610.95,"{\""loyalty\"": \""24%\""}",207428,0,"""Europe""" +2023-09-14,14707,9725,"[\""Laptop\"", \""Monitor\""]",2385.56,{},108432,1,"""North America""" +2024-11-04,14708,1144,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3123.78,"{\""seasonal\"": \""29%\""}",130284,1,"""North America""" +2024-09-27,14709,5100,"[\""Laptop\""]",1694.15,"{\"": \""19%\""}",47920,1,"""Europe""" +2023-03-10,14710,892,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2762.49,"{\"": \""12%\""}",27354,0,"""North America""" +2023-01-27,14711,174,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4277.06,{},9442,0,"""Europe""" +2023-05-05,14712,3679,"[\""Laptop\""]",4466.51,{},48775,1,"""North America""" +2024-08-06,14713,8931,"[\""Wireless Mouse\"", \""Charger\""]",3574.76,"{\""loyalty\"": \""21%\""}",231251,0,"""South America""" +2024-08-27,14714,5864,"[\""Phone\""]",4951.43,"{\""promo\"": \""10%\""}",171886,1,"""Africa""" +2023-10-08,14715,83,"[\""Phone\"", \""Laptop\""]",3839.49,"{\""loyalty\"": \""9%\""}",40800,0,"""Europe""" +2023-04-13,14716,8950,"[\""Wireless Mouse\"", \""Monitor\""]",2069.12,{},1562,1,"""South America""" +2024-03-11,14717,761,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1202.81,{},61570,0,"""South America""" +2023-07-12,14718,632,"[\""Monitor\""]",4768.05,{},98688,0,"""Asia""" +2024-09-28,14719,9433,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",203.56,{},76649,0,"""Africa""" +2024-06-03,14720,265,"[\""Wireless Mouse\"", \""Keyboard\""]",2565.91,{},278632,0,"""Asia""" +2023-07-05,14721,3081,"[\""Tablet\""]",983.23,{},289901,0,"""Europe""" +2024-10-12,14722,4571,"[\""Tablet\""]",806.29,"{\""promo\"": \""5%\""}",249308,1,"""Asia""" +2024-06-05,14723,2172,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1575.34,{},189194,1,"""North America""" +2024-04-25,14724,4528,"[\""Monitor\"", \""Phone\""]",3308.14,"{\""promo\"": \""10%\""}",75930,0,"""South America""" +2024-04-04,14725,269,"[\""Wireless Mouse\"", \""Phone\""]",429.47,"{\""promo\"": \""19%\""}",52856,0,"""North America""" +2023-08-27,14726,3849,"[\""Wireless Mouse\""]",120.87,{},129963,1,"""North America""" +2024-09-08,14727,3436,"[\""Wireless Mouse\"", \""Laptop\""]",4326.95,"{\""promo\"": \""13%\""}",274819,0,"""Asia""" +2024-09-02,14728,2523,"[\""Tablet\"", \""Phone\""]",511.61,{},22098,0,"""Asia""" +2023-09-29,14729,7959,"[\""Keyboard\""]",2096.72,"{\""seasonal\"": \""24%\""}",293661,1,"""North America""" +2024-04-17,14730,537,"[\""Wireless Mouse\"", \""Headphones\""]",1860.31,{},161391,0,"""North America""" +2023-06-09,14731,2909,"[\""Monitor\""]",3879.71,"{\""loyalty\"": \""16%\""}",30269,1,"""Asia""" +2024-02-08,14732,6069,"[\""Charger\""]",4233.0,{},123496,1,"""Europe""" +2023-12-17,14733,1740,"[\""Tablet\""]",4281.02,{},11759,1,"""Europe""" +2024-02-20,14734,5467,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2251.67,"{\""promo\"": \""15%\""}",10939,1,"""Europe""" +2023-05-11,14735,7332,"[\""Tablet\"", \""Charger\""]",1614.31,"{\""seasonal\"": \""6%\""}",47074,1,"""Asia""" +2023-08-21,14736,5536,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1564.02,"{\""promo\"": \""25%\""}",279148,1,"""North America""" +2024-06-14,14737,1963,"[\""Laptop\""]",3830.54,"{\""promo\"": \""11%\""}",167294,0,"""Europe""" +2024-12-03,14738,7567,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4198.36,{},190115,1,"""South America""" +2023-12-05,14739,5747,"[\""Tablet\""]",409.53,{},154484,1,"""South America""" +2024-03-27,14740,4697,"[\""Laptop\"", \""Phone\""]",1879.72,"{\""seasonal\"": \""23%\""}",33809,0,"""Africa""" +2024-09-30,14741,1977,"[\""Laptop\"", \""Phone\""]",307.69,{},200164,1,"""Africa""" +2024-03-03,14742,7818,"[\""Phone\"", \""Keyboard\""]",2042.42,{},182154,1,"""Asia""" +2023-10-01,14743,3067,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3662.73,{},28791,0,"""North America""" +2023-07-31,14744,2297,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4432.81,{},221854,0,"""Asia""" +2023-08-27,14745,9743,"[\""Wireless Mouse\"", \""Phone\""]",2042.07,"{\""promo\"": \""6%\""}",283100,0,"""Africa""" +2023-10-13,14746,5437,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3240.27,{},262016,0,"""Europe""" +2023-09-09,14747,7883,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4032.29,"{\"": \""15%\""}",255303,1,"""North America""" +2023-01-25,14748,3576,"[\""Laptop\"", \""Keyboard\""]",771.17,"{\"": \""27%\""}",115938,1,"""North America""" +2024-08-08,14749,4246,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3365.95,{},116622,1,"""Europe""" +2024-06-25,14750,8815,"[\""Monitor\"", \""Charger\""]",2069.13,"{\"": \""15%\""}",186928,1,"""Europe""" +2024-09-16,14751,2294,"[\""Tablet\""]",1715.43,{},78733,1,"""South America""" +2023-06-28,14752,2454,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3496.97,"{\""seasonal\"": \""23%\""}",119348,0,"""Europe""" +2023-02-03,14753,1984,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3628.03,{},293616,0,"""Africa""" +2023-09-21,14754,6515,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2535.59,{},190422,1,"""Europe""" +2023-03-03,14755,4870,"[\""Keyboard\""]",1653.92,"{\""seasonal\"": \""7%\""}",175687,0,"""Europe""" +2023-03-28,14756,7033,"[\""Laptop\""]",4336.47,{},217802,1,"""Africa""" +2023-08-08,14757,689,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",704.05,{},138439,0,"""Asia""" +2023-10-19,14758,8058,"[\""Tablet\""]",4701.57,"{\"": \""13%\""}",243480,1,"""North America""" +2024-03-20,14759,515,"[\""Charger\"", \""Keyboard\""]",4227.16,{},17196,1,"""Africa""" +2023-02-07,14760,9290,"[\""Laptop\""]",1227.89,{},139562,1,"""Europe""" +2023-05-07,14761,2523,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4365.17,"{\"": \""10%\""}",174554,1,"""Asia""" +2024-08-12,14762,9624,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3241.71,{},246942,1,"""North America""" +2024-02-29,14763,6630,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3736.56,"{\""seasonal\"": \""10%\""}",143398,1,"""Africa""" +2023-04-27,14764,2483,"[\""Monitor\""]",4423.67,"{\""seasonal\"": \""9%\""}",6444,1,"""Europe""" +2024-02-23,14765,7960,"[\""Charger\"", \""Wireless Mouse\""]",1344.28,"{\""loyalty\"": \""20%\""}",31032,0,"""Asia""" +2023-12-25,14766,2241,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2981.49,{},215912,0,"""North America""" +2023-01-01,14767,5290,"[\""Headphones\"", \""Wireless Mouse\""]",1885.83,"{\"": \""25%\""}",79358,1,"""South America""" +2023-06-28,14768,5768,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3891.89,"{\"": \""23%\""}",155418,0,"""Asia""" +2024-11-06,14769,2565,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2350.61,"{\"": \""25%\""}",47431,0,"""Asia""" +2024-06-27,14770,3722,"[\""Laptop\""]",285.27,"{\""seasonal\"": \""14%\""}",248460,0,"""South America""" +2024-10-08,14771,4427,"[\""Charger\""]",3691.1,"{\""seasonal\"": \""29%\""}",77181,0,"""South America""" +2023-01-18,14772,7347,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",892.45,"{\""promo\"": \""17%\""}",28311,1,"""Europe""" +2023-10-11,14773,3216,"[\""Charger\"", \""Headphones\""]",198.41,{},4336,1,"""Asia""" +2023-06-10,14774,7057,"[\""Monitor\""]",3040.95,{},221971,0,"""South America""" +2023-11-22,14775,9997,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",269.21,{},271442,0,"""Europe""" +2024-05-31,14776,8204,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2692.35,{},132718,1,"""North America""" +2023-06-09,14777,866,"[\""Laptop\""]",2749.92,{},27278,1,"""Europe""" +2024-10-24,14778,7289,"[\""Charger\"", \""Headphones\""]",2777.68,"{\""seasonal\"": \""16%\""}",50562,1,"""Europe""" +2024-01-22,14779,8923,"[\""Monitor\""]",4252.97,"{\""promo\"": \""28%\""}",184399,1,"""Africa""" +2024-09-03,14780,2604,"[\""Tablet\""]",3340.97,{},249277,0,"""South America""" +2023-08-28,14781,3883,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",50.61,{},25685,0,"""Europe""" +2024-03-11,14782,126,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4821.48,"{\"": \""30%\""}",169413,0,"""South America""" +2024-07-14,14783,3145,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1641.91,"{\""seasonal\"": \""26%\""}",126170,0,"""South America""" +2023-03-09,14784,347,"[\""Keyboard\"", \""Monitor\""]",4758.82,"{\""promo\"": \""19%\""}",210965,0,"""Europe""" +2023-03-07,14785,6029,"[\""Keyboard\""]",93.62,"{\""seasonal\"": \""29%\""}",272421,1,"""South America""" +2023-01-08,14786,4194,"[\""Headphones\""]",2772.3,{},119719,0,"""Africa""" +2023-09-06,14787,6558,"[\""Charger\"", \""Tablet\""]",987.15,{},51142,0,"""Europe""" +2023-05-20,14788,656,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1813.65,"{\""seasonal\"": \""22%\""}",186121,1,"""North America""" +2023-10-30,14789,7185,"[\""Laptop\"", \""Headphones\""]",3942.43,{},17186,0,"""South America""" +2023-12-05,14790,9971,"[\""Monitor\""]",4152.87,{},292269,0,"""South America""" +2024-07-14,14791,3786,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4669.97,{},202654,0,"""Africa""" +2023-10-18,14792,9652,"[\""Keyboard\""]",1608.26,"{\"": \""17%\""}",67000,1,"""Europe""" +2023-07-01,14793,1461,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1124.14,{},47888,0,"""North America""" +2023-11-28,14794,1607,"[\""Headphones\"", \""Charger\""]",4966.81,{},80106,0,"""North America""" +2023-07-27,14795,9149,"[\""Wireless Mouse\"", \""Phone\""]",3220.94,"{\""seasonal\"": \""11%\""}",247009,0,"""Africa""" +2024-06-28,14796,3110,"[\""Tablet\"", \""Laptop\""]",3750.7,"{\"": \""27%\""}",162520,0,"""North America""" +2024-12-22,14797,1167,"[\""Charger\"", \""Laptop\""]",1179.79,{},131854,1,"""Asia""" +2024-08-21,14798,5229,"[\""Wireless Mouse\""]",3893.95,{},251514,0,"""Africa""" +2024-01-12,14799,7483,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",459.23,{},105053,1,"""Africa""" +2023-05-17,14800,8579,"[\""Phone\""]",3605.29,"{\""seasonal\"": \""20%\""}",51276,0,"""Europe""" +2024-12-15,14801,9485,"[\""Charger\""]",4668.78,{},36036,0,"""Europe""" +2023-03-24,14802,6195,"[\""Headphones\"", \""Monitor\""]",558.12,"{\"": \""16%\""}",251935,1,"""South America""" +2024-06-01,14803,5654,"[\""Headphones\""]",712.94,"{\""seasonal\"": \""8%\""}",34418,1,"""Asia""" +2023-02-15,14804,3251,"[\""Wireless Mouse\"", \""Monitor\""]",1920.87,{},191644,0,"""South America""" +2023-10-06,14805,7186,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4699.11,{},258004,0,"""North America""" +2024-05-10,14806,3309,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1079.41,"{\"": \""7%\""}",16412,1,"""Asia""" +2023-09-18,14807,5675,"[\""Tablet\"", \""Wireless Mouse\""]",3203.59,{},263267,1,"""Europe""" +2024-07-27,14808,8010,"[\""Tablet\""]",213.18,{},16482,1,"""Asia""" +2023-04-05,14809,5891,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1188.12,"{\"": \""7%\""}",231412,0,"""Africa""" +2023-08-12,14810,3804,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1635.16,"{\"": \""8%\""}",249365,0,"""South America""" +2024-08-09,14811,6771,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3190.8,{},82450,0,"""South America""" +2023-01-16,14812,2227,"[\""Wireless Mouse\""]",2471.49,{},55241,1,"""Asia""" +2023-02-24,14813,6646,"[\""Monitor\"", \""Phone\""]",3508.16,"{\""loyalty\"": \""26%\""}",166538,1,"""Europe""" +2024-04-21,14814,8243,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2119.9,{},265093,1,"""Asia""" +2023-06-11,14815,6888,"[\""Monitor\"", \""Tablet\""]",329.34,"{\""loyalty\"": \""5%\""}",111053,1,"""Africa""" +2023-10-16,14816,6239,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1807.99,{},116079,0,"""Europe""" +2023-01-23,14817,5636,"[\""Laptop\""]",1903.72,"{\""promo\"": \""20%\""}",233995,1,"""North America""" +2023-10-28,14818,3221,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",991.18,"{\""seasonal\"": \""22%\""}",111866,1,"""Asia""" +2023-06-10,14819,3391,"[\""Monitor\"", \""Charger\""]",2886.71,{},257518,0,"""Africa""" +2023-07-10,14820,845,"[\""Wireless Mouse\"", \""Laptop\""]",4888.13,"{\""seasonal\"": \""12%\""}",57314,0,"""South America""" +2024-11-07,14821,9289,"[\""Laptop\"", \""Keyboard\""]",4145.28,{},29117,1,"""South America""" +2023-03-05,14822,6643,"[\""Monitor\"", \""Phone\""]",3692.67,{},282953,1,"""Asia""" +2023-10-08,14823,9142,"[\""Charger\""]",2085.93,{},115791,0,"""North America""" +2023-12-21,14824,3485,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2884.7,{},177072,0,"""Asia""" +2024-08-15,14825,4680,"[\""Tablet\"", \""Monitor\""]",3018.16,"{\""promo\"": \""29%\""}",67846,0,"""Africa""" +2023-04-27,14826,7515,"[\""Charger\"", \""Wireless Mouse\""]",233.33,"{\""promo\"": \""19%\""}",8233,1,"""Asia""" +2024-05-23,14827,6652,"[\""Wireless Mouse\"", \""Laptop\""]",958.99,"{\""seasonal\"": \""24%\""}",71492,0,"""Africa""" +2023-08-24,14828,3718,"[\""Keyboard\"", \""Headphones\""]",2193.85,{},124573,1,"""Europe""" +2023-11-10,14829,4865,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1404.41,"{\""promo\"": \""9%\""}",53907,0,"""North America""" +2023-01-30,14830,1400,"[\""Charger\""]",3497.53,{},53357,1,"""Africa""" +2023-04-24,14831,4451,"[\""Charger\"", \""Keyboard\""]",1408.03,{},255308,0,"""North America""" +2024-11-17,14832,2173,"[\""Keyboard\"", \""Phone\""]",1040.82,{},26041,1,"""Europe""" +2024-04-18,14833,1044,"[\""Charger\""]",4439.54,{},93150,0,"""Europe""" +2024-08-07,14834,5134,"[\""Phone\"", \""Wireless Mouse\""]",2103.57,"{\""loyalty\"": \""15%\""}",177590,1,"""South America""" +2024-07-08,14835,9144,"[\""Charger\""]",1561.86,"{\""promo\"": \""12%\""}",116423,1,"""Asia""" +2023-11-13,14836,1033,"[\""Phone\"", \""Monitor\""]",83.83,{},187795,0,"""Africa""" +2023-08-21,14837,5463,"[\""Charger\"", \""Wireless Mouse\""]",1642.14,{},243341,1,"""North America""" +2024-02-23,14838,7454,"[\""Laptop\""]",2873.62,{},1720,1,"""South America""" +2024-12-13,14839,6064,"[\""Charger\""]",530.8,"{\""seasonal\"": \""7%\""}",254843,1,"""Europe""" +2024-04-07,14840,6482,"[\""Keyboard\"", \""Tablet\""]",3564.09,"{\"": \""22%\""}",142067,0,"""Asia""" +2023-09-30,14841,1671,"[\""Charger\""]",2179.69,"{\"": \""5%\""}",6284,1,"""Africa""" +2024-12-12,14842,6557,"[\""Phone\""]",1184.69,"{\""loyalty\"": \""21%\""}",225289,0,"""Africa""" +2023-06-18,14843,5304,"[\""Laptop\"", \""Keyboard\""]",3515.43,"{\""loyalty\"": \""29%\""}",122142,1,"""Asia""" +2024-11-20,14844,6146,"[\""Headphones\"", \""Monitor\""]",1788.63,"{\""promo\"": \""28%\""}",281382,1,"""North America""" +2023-05-03,14845,6636,"[\""Phone\"", \""Charger\""]",3414.06,{},158031,0,"""North America""" +2023-10-21,14846,3852,"[\""Charger\"", \""Laptop\""]",2502.88,"{\""seasonal\"": \""16%\""}",154617,1,"""Asia""" +2023-10-04,14847,3687,"[\""Wireless Mouse\""]",4492.99,"{\"": \""28%\""}",22731,0,"""Africa""" +2023-11-30,14848,7451,"[\""Tablet\"", \""Charger\""]",4388.45,{},167912,1,"""North America""" +2023-12-10,14849,9743,"[\""Keyboard\""]",4476.46,{},233712,0,"""Asia""" +2023-10-13,14850,6754,"[\""Wireless Mouse\"", \""Keyboard\""]",4292.26,{},204611,0,"""Asia""" +2024-05-15,14851,6698,"[\""Monitor\"", \""Phone\""]",1676.98,"{\""loyalty\"": \""9%\""}",59868,1,"""Asia""" +2023-10-11,14852,5816,"[\""Keyboard\""]",3683.15,"{\""seasonal\"": \""27%\""}",235007,0,"""Europe""" +2023-04-05,14853,3390,"[\""Monitor\""]",4925.31,"{\""loyalty\"": \""15%\""}",5383,0,"""South America""" +2023-10-05,14854,3385,"[\""Headphones\"", \""Keyboard\""]",657.94,{},66037,0,"""Africa""" +2023-04-09,14855,5065,"[\""Laptop\"", \""Monitor\""]",579.77,"{\""loyalty\"": \""28%\""}",179874,1,"""Asia""" +2024-03-24,14856,3086,"[\""Charger\"", \""Phone\""]",432.28,"{\""seasonal\"": \""11%\""}",249175,0,"""North America""" +2023-09-07,14857,1635,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3087.27,"{\"": \""9%\""}",104173,1,"""Europe""" +2023-09-23,14858,6768,"[\""Headphones\"", \""Monitor\""]",212.31,"{\"": \""21%\""}",21454,1,"""South America""" +2023-10-07,14859,3133,"[\""Headphones\"", \""Tablet\""]",2130.62,{},184276,0,"""North America""" +2024-03-17,14860,8923,"[\""Wireless Mouse\""]",962.02,"{\""seasonal\"": \""8%\""}",47836,0,"""Europe""" +2024-02-19,14861,9482,"[\""Tablet\"", \""Wireless Mouse\""]",1837.34,{},284420,0,"""North America""" +2023-11-07,14862,9352,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2332.0,"{\""promo\"": \""12%\""}",260684,0,"""Africa""" +2023-03-25,14863,9847,"[\""Headphones\"", \""Tablet\""]",3222.51,"{\"": \""9%\""}",138541,1,"""North America""" +2024-09-22,14864,7056,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",96.58,"{\""loyalty\"": \""16%\""}",258742,0,"""Europe""" +2023-05-28,14865,5068,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4521.41,{},219445,1,"""Europe""" +2023-11-17,14866,4457,"[\""Headphones\""]",2336.53,"{\""loyalty\"": \""15%\""}",107125,0,"""South America""" +2023-08-17,14867,5628,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3569.87,"{\""seasonal\"": \""12%\""}",184309,0,"""Asia""" +2024-05-04,14868,2495,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1057.8,"{\""loyalty\"": \""8%\""}",157433,0,"""South America""" +2023-11-28,14869,6276,"[\""Wireless Mouse\""]",470.45,{},116846,1,"""North America""" +2023-12-28,14870,2320,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3179.0,"{\""loyalty\"": \""25%\""}",284318,0,"""South America""" +2023-11-23,14871,4871,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",916.36,"{\""loyalty\"": \""18%\""}",44019,0,"""Asia""" +2024-06-28,14872,9814,"[\""Keyboard\"", \""Tablet\""]",1391.33,"{\""promo\"": \""23%\""}",273200,1,"""South America""" +2024-06-12,14873,2008,"[\""Phone\""]",2665.3,"{\"": \""19%\""}",53890,1,"""Asia""" +2023-06-12,14874,1532,"[\""Keyboard\"", \""Headphones\""]",4473.53,{},277343,1,"""Asia""" +2023-03-06,14875,3940,"[\""Charger\"", \""Headphones\""]",622.04,{},129457,1,"""North America""" +2024-03-04,14876,4431,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",906.65,"{\""promo\"": \""18%\""}",124364,0,"""Europe""" +2024-11-08,14877,3065,"[\""Charger\""]",1328.5,{},30260,1,"""Asia""" +2024-10-20,14878,8699,"[\""Laptop\""]",4853.15,"{\""loyalty\"": \""29%\""}",42662,1,"""South America""" +2024-12-17,14879,410,"[\""Laptop\""]",2330.8,"{\""seasonal\"": \""5%\""}",171372,1,"""Asia""" +2024-04-11,14880,392,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3935.38,"{\""loyalty\"": \""9%\""}",175543,1,"""Asia""" +2023-11-10,14881,924,"[\""Phone\""]",3863.75,{},253417,1,"""South America""" +2023-04-16,14882,5899,"[\""Phone\""]",617.95,"{\"": \""26%\""}",113845,0,"""Africa""" +2023-01-17,14883,7413,"[\""Monitor\""]",3957.68,"{\"": \""19%\""}",91394,0,"""Africa""" +2023-10-22,14884,7072,"[\""Headphones\"", \""Phone\""]",3357.72,"{\""promo\"": \""25%\""}",41457,1,"""Europe""" +2024-04-23,14885,2015,"[\""Wireless Mouse\"", \""Keyboard\""]",647.92,"{\"": \""20%\""}",262653,0,"""Africa""" +2024-06-01,14886,2960,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4784.76,"{\""seasonal\"": \""23%\""}",207746,0,"""Africa""" +2023-12-07,14887,3393,"[\""Charger\""]",4942.8,{},121578,1,"""North America""" +2023-05-17,14888,4316,"[\""Wireless Mouse\"", \""Laptop\""]",2266.14,"{\""seasonal\"": \""17%\""}",57103,0,"""Europe""" +2023-05-19,14889,2660,"[\""Headphones\""]",4333.7,{},236345,0,"""Africa""" +2023-07-22,14890,3398,"[\""Keyboard\"", \""Headphones\""]",4977.45,"{\""loyalty\"": \""6%\""}",222590,0,"""North America""" +2023-08-28,14891,3880,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3920.2,{},224061,0,"""Europe""" +2023-11-28,14892,9672,"[\""Phone\"", \""Monitor\""]",2881.24,"{\""seasonal\"": \""14%\""}",11517,0,"""Africa""" +2024-09-26,14893,9058,"[\""Phone\""]",151.96,{},83563,0,"""South America""" +2024-01-24,14894,1270,"[\""Monitor\""]",409.46,"{\""loyalty\"": \""12%\""}",30403,1,"""South America""" +2023-12-28,14895,9917,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",92.65,{},128989,1,"""Asia""" +2023-08-14,14896,6184,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1121.24,"{\""loyalty\"": \""17%\""}",272407,1,"""Europe""" +2024-11-11,14897,9697,"[\""Monitor\""]",1035.09,"{\""promo\"": \""26%\""}",16885,1,"""Asia""" +2024-07-27,14898,7250,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3160.9,"{\"": \""5%\""}",6586,1,"""Africa""" +2023-11-19,14899,8491,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",685.04,"{\""loyalty\"": \""19%\""}",28723,0,"""South America""" +2024-01-26,14900,3928,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3418.81,"{\"": \""22%\""}",186555,1,"""Europe""" +2024-04-19,14901,7164,"[\""Monitor\""]",3309.26,{},210896,1,"""South America""" +2024-10-30,14902,479,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1050.24,"{\""loyalty\"": \""30%\""}",251998,1,"""Europe""" +2023-01-17,14903,4154,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3690.35,"{\"": \""8%\""}",20092,0,"""South America""" +2024-07-10,14904,3968,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4058.91,{},91243,1,"""South America""" +2023-07-20,14905,5739,"[\""Laptop\""]",2886.25,{},212633,0,"""South America""" +2023-05-03,14906,6570,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4488.01,{},209165,1,"""Africa""" +2023-01-21,14907,8702,"[\""Headphones\""]",1614.46,{},114454,0,"""Africa""" +2023-09-04,14908,7951,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2465.16,"{\""loyalty\"": \""23%\""}",47072,1,"""Africa""" +2024-11-12,14909,8665,"[\""Keyboard\"", \""Wireless Mouse\""]",1691.99,"{\""loyalty\"": \""15%\""}",18347,1,"""North America""" +2023-11-17,14910,6770,"[\""Wireless Mouse\""]",572.67,{},29625,0,"""Asia""" +2024-04-01,14911,2607,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1764.06,"{\""promo\"": \""19%\""}",199869,1,"""Europe""" +2023-03-31,14912,2150,"[\""Headphones\"", \""Keyboard\""]",844.83,"{\""promo\"": \""7%\""}",209258,0,"""Asia""" +2023-05-26,14913,6480,"[\""Monitor\"", \""Keyboard\""]",3214.56,{},292164,0,"""North America""" +2023-11-28,14914,495,"[\""Tablet\"", \""Phone\""]",3650.99,"{\""promo\"": \""21%\""}",112608,0,"""Europe""" +2023-07-23,14915,6167,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4660.43,"{\""loyalty\"": \""20%\""}",43528,0,"""Europe""" +2023-12-18,14916,7169,"[\""Laptop\""]",3486.51,{},6544,1,"""Asia""" +2023-02-03,14917,2995,"[\""Laptop\"", \""Headphones\""]",3055.17,"{\""promo\"": \""18%\""}",225064,1,"""Africa""" +2024-10-12,14918,2723,"[\""Monitor\""]",3400.2,"{\"": \""5%\""}",290973,0,"""Europe""" +2023-11-08,14919,7824,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2456.38,{},170882,0,"""North America""" +2024-12-14,14920,5710,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1412.36,{},163422,1,"""North America""" +2023-05-23,14921,5487,"[\""Laptop\"", \""Keyboard\""]",3224.4,{},229200,0,"""North America""" +2024-04-15,14922,6441,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",316.1,{},155712,1,"""South America""" +2023-12-22,14923,2208,"[\""Monitor\"", \""Laptop\""]",2264.19,{},147345,0,"""Asia""" +2024-10-28,14924,7073,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2696.97,"{\""loyalty\"": \""15%\""}",211723,0,"""South America""" +2023-09-14,14925,9473,"[\""Laptop\""]",2355.29,"{\"": \""14%\""}",185248,1,"""South America""" +2023-03-30,14926,7531,"[\""Charger\"", \""Tablet\""]",204.28,"{\""seasonal\"": \""12%\""}",62031,1,"""Africa""" +2024-04-08,14927,6274,"[\""Keyboard\"", \""Headphones\""]",2792.22,"{\"": \""6%\""}",192047,0,"""South America""" +2024-03-01,14928,2370,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3832.87,"{\"": \""13%\""}",150446,1,"""Europe""" +2023-10-28,14929,1000,"[\""Laptop\"", \""Tablet\""]",2216.12,{},295234,1,"""Asia""" +2024-10-21,14930,5663,"[\""Charger\""]",4775.22,"{\""loyalty\"": \""10%\""}",217966,0,"""Asia""" +2024-02-03,14931,4197,"[\""Laptop\""]",3345.63,"{\""promo\"": \""24%\""}",261796,0,"""South America""" +2024-12-16,14932,5730,"[\""Headphones\"", \""Tablet\""]",4736.82,{},38609,0,"""Europe""" +2024-10-06,14933,8736,"[\""Wireless Mouse\""]",1863.94,"{\"": \""29%\""}",237748,1,"""South America""" +2024-09-16,14934,3548,"[\""Phone\"", \""Wireless Mouse\""]",4200.26,"{\""promo\"": \""11%\""}",159199,0,"""South America""" +2024-01-21,14935,6693,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3908.68,"{\"": \""9%\""}",297606,1,"""Africa""" +2024-02-12,14936,5433,"[\""Laptop\"", \""Headphones\""]",2899.08,"{\""loyalty\"": \""28%\""}",80327,1,"""South America""" +2023-06-12,14937,690,"[\""Wireless Mouse\"", \""Keyboard\""]",3922.51,{},59972,0,"""North America""" +2024-12-19,14938,5071,"[\""Headphones\"", \""Laptop\""]",3109.84,"{\""promo\"": \""29%\""}",281609,1,"""South America""" +2023-09-28,14939,525,"[\""Tablet\""]",4303.39,"{\""seasonal\"": \""20%\""}",106593,0,"""North America""" +2024-03-20,14940,6247,"[\""Wireless Mouse\""]",4822.34,"{\""loyalty\"": \""16%\""}",289249,1,"""South America""" +2024-09-19,14941,7372,"[\""Wireless Mouse\""]",4287.24,{},30752,0,"""South America""" +2024-09-27,14942,2022,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4589.32,{},224484,0,"""South America""" +2023-09-09,14943,8341,"[\""Wireless Mouse\""]",4136.59,{},107938,1,"""Asia""" +2024-08-15,14944,8917,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4472.49,"{\""promo\"": \""30%\""}",76575,1,"""Asia""" +2024-08-17,14945,2972,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3985.43,{},200851,0,"""South America""" +2023-12-08,14946,2598,"[\""Phone\""]",1465.68,{},104238,0,"""Europe""" +2023-04-29,14947,6630,"[\""Tablet\""]",1877.5,{},110767,1,"""Europe""" +2023-11-22,14948,6486,"[\""Phone\"", \""Laptop\""]",3803.05,{},296831,1,"""Africa""" +2023-04-18,14949,8462,"[\""Wireless Mouse\"", \""Phone\""]",4647.53,{},258906,0,"""South America""" +2023-08-31,14950,1165,"[\""Monitor\""]",243.63,{},252801,0,"""Europe""" +2023-06-15,14951,594,"[\""Phone\"", \""Monitor\""]",70.58,{},268089,0,"""Europe""" +2024-06-07,14952,688,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",393.63,"{\""loyalty\"": \""24%\""}",76460,0,"""North America""" +2023-06-26,14953,5430,"[\""Monitor\"", \""Wireless Mouse\""]",896.39,{},225169,1,"""Asia""" +2023-05-18,14954,9599,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3309.46,{},44212,1,"""Asia""" +2024-01-07,14955,182,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3237.12,{},31693,0,"""North America""" +2024-02-13,14956,2907,"[\""Charger\""]",840.93,{},34193,1,"""Africa""" +2024-03-15,14957,6410,"[\""Phone\""]",4016.39,"{\"": \""7%\""}",167245,1,"""North America""" +2024-06-29,14958,7117,"[\""Laptop\""]",3356.86,"{\""loyalty\"": \""16%\""}",233510,1,"""Asia""" +2024-12-12,14959,2532,"[\""Charger\"", \""Tablet\""]",4765.09,{},153721,1,"""Europe""" +2024-09-04,14960,223,"[\""Charger\""]",3463.68,{},169926,1,"""South America""" +2023-09-05,14961,7437,"[\""Headphones\""]",4359.99,"{\""loyalty\"": \""22%\""}",4210,1,"""Europe""" +2023-11-14,14962,1170,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4215.27,"{\""loyalty\"": \""29%\""}",275145,1,"""Europe""" +2024-03-10,14963,1969,"[\""Tablet\""]",2799.38,"{\"": \""16%\""}",95520,1,"""North America""" +2023-02-12,14964,3547,"[\""Laptop\""]",2744.7,{},2159,0,"""Europe""" +2023-03-24,14965,6655,"[\""Laptop\"", \""Tablet\""]",1491.07,"{\"": \""26%\""}",214183,0,"""Asia""" +2024-12-11,14966,2383,"[\""Charger\"", \""Wireless Mouse\""]",72.85,{},245478,1,"""Africa""" +2023-12-30,14967,7856,"[\""Keyboard\"", \""Tablet\""]",1156.68,"{\""promo\"": \""9%\""}",218471,0,"""South America""" +2024-05-08,14968,8106,"[\""Monitor\"", \""Phone\""]",1336.57,"{\""promo\"": \""27%\""}",76360,1,"""South America""" +2024-10-03,14969,3039,"[\""Phone\""]",2857.47,{},77254,0,"""South America""" +2023-12-01,14970,1149,"[\""Laptop\""]",4903.73,{},132073,1,"""Asia""" +2024-07-04,14971,5491,"[\""Headphones\""]",4480.34,"{\""seasonal\"": \""5%\""}",88868,0,"""Europe""" +2024-01-30,14972,5794,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2861.24,"{\"": \""5%\""}",52487,0,"""Europe""" +2024-08-24,14973,3692,"[\""Phone\"", \""Headphones\""]",2601.49,{},130511,1,"""North America""" +2024-10-18,14974,947,"[\""Phone\""]",784.95,"{\""promo\"": \""27%\""}",147271,1,"""Europe""" +2023-04-17,14975,3476,"[\""Wireless Mouse\""]",3135.72,{},11538,0,"""Africa""" +2024-02-20,14976,7503,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",784.13,"{\""promo\"": \""12%\""}",107308,1,"""Africa""" +2024-09-22,14977,2824,"[\""Headphones\"", \""Phone\""]",2895.49,"{\""loyalty\"": \""9%\""}",180108,1,"""Asia""" +2024-07-30,14978,6224,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2012.16,"{\""promo\"": \""5%\""}",21197,0,"""South America""" +2024-03-22,14979,9855,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",252.07,{},258444,1,"""North America""" +2024-06-23,14980,7728,"[\""Keyboard\""]",4013.59,{},71983,0,"""South America""" +2024-10-13,14981,2730,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",648.56,"{\""loyalty\"": \""18%\""}",231807,0,"""South America""" +2024-09-18,14982,9473,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",926.01,"{\""promo\"": \""19%\""}",87064,0,"""South America""" +2024-07-16,14983,5239,"[\""Keyboard\"", \""Headphones\""]",2293.44,"{\""promo\"": \""27%\""}",268669,1,"""Asia""" +2023-03-22,14984,9282,"[\""Charger\"", \""Monitor\""]",1792.68,"{\"": \""13%\""}",100363,0,"""Asia""" +2023-03-26,14985,4004,"[\""Tablet\"", \""Wireless Mouse\""]",1264.48,{},23840,0,"""Asia""" +2024-07-12,14986,954,"[\""Monitor\"", \""Charger\""]",2165.5,{},157342,0,"""North America""" +2024-11-05,14987,3336,"[\""Headphones\""]",2033.39,{},166070,0,"""North America""" +2024-11-11,14988,7386,"[\""Headphones\""]",4422.66,"{\""loyalty\"": \""20%\""}",69122,0,"""North America""" +2024-01-31,14989,6997,"[\""Charger\"", \""Keyboard\""]",1937.59,{},6661,0,"""Europe""" +2024-10-05,14990,7977,"[\""Charger\"", \""Laptop\""]",2853.54,{},25393,0,"""Africa""" +2023-09-23,14991,827,"[\""Keyboard\"", \""Charger\""]",2501.39,"{\"": \""10%\""}",243864,1,"""Europe""" +2023-02-12,14992,7653,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",244.05,"{\""seasonal\"": \""13%\""}",2495,1,"""Africa""" +2024-11-11,14993,8410,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1787.38,"{\""seasonal\"": \""29%\""}",237733,0,"""Asia""" +2024-11-06,14994,6403,"[\""Laptop\""]",4128.13,{},77063,0,"""Africa""" +2023-05-10,14995,727,"[\""Headphones\"", \""Phone\""]",4889.16,{},127895,0,"""Europe""" +2023-01-15,14996,3463,"[\""Laptop\"", \""Phone\"", \""Charger\""]",131.55,"{\""promo\"": \""18%\""}",248077,1,"""Africa""" +2024-11-18,14997,2098,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3036.15,{},153226,0,"""South America""" +2023-06-04,14998,2323,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1592.44,"{\""promo\"": \""22%\""}",42761,1,"""Europe""" +2023-12-13,14999,3284,"[\""Tablet\""]",2418.85,"{\""loyalty\"": \""25%\""}",19753,0,"""North America""" +2023-09-15,15000,6614,"[\""Charger\"", \""Tablet\"", \""Phone\""]",457.94,"{\""loyalty\"": \""28%\""}",121982,0,"""Europe""" +2023-09-19,15001,6207,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3991.94,"{\""promo\"": \""18%\""}",295631,0,"""Africa""" +2023-09-27,15002,5318,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1674.35,{},261816,1,"""Africa""" +2023-12-03,15003,5231,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1102.31,{},223012,1,"""Europe""" +2024-09-29,15004,4906,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4251.76,"{\"": \""28%\""}",218744,0,"""North America""" +2024-10-11,15005,6466,"[\""Keyboard\"", \""Charger\""]",2634.15,{},234385,0,"""Africa""" +2024-04-15,15006,2955,"[\""Charger\""]",656.01,{},130582,1,"""Europe""" +2024-05-23,15007,2506,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3308.48,"{\"": \""12%\""}",197723,1,"""Europe""" +2024-02-22,15008,8316,"[\""Laptop\""]",4358.06,"{\""loyalty\"": \""30%\""}",50960,0,"""Europe""" +2023-11-15,15009,4522,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",732.79,"{\""promo\"": \""14%\""}",196377,1,"""North America""" +2024-04-01,15010,4380,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4523.07,{},189308,0,"""Africa""" +2023-12-06,15011,9477,"[\""Wireless Mouse\""]",4771.54,{},62282,1,"""Asia""" +2023-05-12,15012,4894,"[\""Monitor\"", \""Charger\""]",871.22,"{\""seasonal\"": \""7%\""}",6672,1,"""Africa""" +2023-10-27,15013,6568,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1805.5,{},207693,0,"""South America""" +2024-05-06,15014,8680,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1824.15,{},274723,1,"""Asia""" +2023-02-01,15015,8571,"[\""Tablet\"", \""Wireless Mouse\""]",4136.06,{},78021,1,"""South America""" +2023-12-12,15016,7930,"[\""Headphones\"", \""Charger\""]",2535.91,"{\"": \""23%\""}",53860,1,"""Europe""" +2023-05-21,15017,1026,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4742.46,{},60456,1,"""Asia""" +2023-03-27,15018,4990,"[\""Laptop\"", \""Headphones\""]",323.67,"{\""seasonal\"": \""8%\""}",84468,0,"""Africa""" +2024-10-21,15019,5176,"[\""Tablet\""]",3513.7,"{\""promo\"": \""9%\""}",202991,1,"""South America""" +2024-10-21,15020,9769,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1536.22,"{\""promo\"": \""25%\""}",151887,0,"""Asia""" +2023-06-24,15021,2222,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1955.45,{},181280,1,"""North America""" +2023-04-04,15022,1328,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4558.07,{},21427,0,"""North America""" +2024-08-22,15023,5872,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2730.26,"{\"": \""18%\""}",129457,1,"""North America""" +2023-05-05,15024,4422,"[\""Headphones\""]",2546.17,"{\""promo\"": \""26%\""}",150372,1,"""Europe""" +2023-08-13,15025,4645,"[\""Phone\""]",1408.34,{},37062,0,"""South America""" +2023-08-27,15026,2469,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",215.17,"{\""loyalty\"": \""24%\""}",227602,1,"""South America""" +2023-07-06,15027,1010,"[\""Tablet\""]",579.43,"{\""promo\"": \""21%\""}",221027,1,"""South America""" +2024-04-06,15028,3503,"[\""Keyboard\""]",4757.71,"{\""loyalty\"": \""24%\""}",90996,1,"""North America""" +2023-04-21,15029,5949,"[\""Wireless Mouse\""]",3278.12,"{\"": \""30%\""}",252345,1,"""Africa""" +2023-01-10,15030,5442,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3780.58,{},297016,0,"""Asia""" +2023-09-18,15031,1792,"[\""Charger\"", \""Keyboard\""]",696.59,{},108237,0,"""South America""" +2024-02-23,15032,5318,"[\""Wireless Mouse\"", \""Tablet\""]",4376.18,"{\""seasonal\"": \""5%\""}",210241,0,"""North America""" +2024-12-27,15033,8935,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",237.23,{},124439,0,"""Europe""" +2024-10-29,15034,8502,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1872.64,"{\""promo\"": \""6%\""}",199926,1,"""South America""" +2023-01-16,15035,3274,"[\""Wireless Mouse\""]",1218.16,{},65748,1,"""South America""" +2024-02-26,15036,6339,"[\""Wireless Mouse\"", \""Headphones\""]",1082.98,"{\""loyalty\"": \""11%\""}",52963,1,"""North America""" +2024-03-18,15037,7369,"[\""Charger\"", \""Headphones\""]",4087.83,"{\""loyalty\"": \""29%\""}",145404,0,"""Africa""" +2023-09-19,15038,6817,"[\""Tablet\""]",4179.47,"{\""seasonal\"": \""28%\""}",27362,0,"""Asia""" +2024-08-22,15039,7563,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4057.98,"{\""promo\"": \""16%\""}",240383,1,"""Europe""" +2024-10-13,15040,7240,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2363.99,{},134786,1,"""Africa""" +2023-10-02,15041,7324,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1076.39,"{\"": \""14%\""}",209643,1,"""Europe""" +2023-10-09,15042,2921,"[\""Phone\"", \""Charger\""]",2128.97,"{\""seasonal\"": \""6%\""}",241067,0,"""South America""" +2023-10-11,15043,3643,"[\""Phone\""]",3570.27,"{\"": \""10%\""}",56337,0,"""Africa""" +2024-07-28,15044,4744,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",376.14,{},96251,0,"""Africa""" +2023-05-26,15045,7726,"[\""Wireless Mouse\"", \""Tablet\""]",4210.1,{},37040,0,"""Africa""" +2024-01-17,15046,7153,"[\""Phone\"", \""Charger\""]",429.51,"{\""promo\"": \""27%\""}",249881,0,"""Asia""" +2024-10-10,15047,3755,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2827.15,{},195935,1,"""South America""" +2023-10-31,15048,6495,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",825.29,"{\""loyalty\"": \""26%\""}",78191,1,"""Europe""" +2023-07-07,15049,9020,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",665.8,{},292532,1,"""Asia""" +2023-06-11,15050,620,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3278.35,{},185534,0,"""Africa""" +2023-02-04,15051,7175,"[\""Keyboard\""]",3219.04,"{\""seasonal\"": \""8%\""}",95766,0,"""Africa""" +2023-02-13,15052,7017,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",503.78,"{\""seasonal\"": \""5%\""}",283031,0,"""North America""" +2023-06-13,15053,9265,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1418.75,{},110616,0,"""North America""" +2024-06-13,15054,1013,"[\""Monitor\"", \""Charger\""]",2252.71,{},111470,0,"""Asia""" +2023-09-03,15055,6349,"[\""Keyboard\""]",3528.71,"{\""loyalty\"": \""14%\""}",232881,1,"""Africa""" +2023-09-21,15056,6202,"[\""Charger\""]",1332.68,{},19833,0,"""Africa""" +2023-08-02,15057,4219,"[\""Phone\"", \""Headphones\""]",3654.21,{},22697,0,"""Europe""" +2024-11-12,15058,5865,"[\""Charger\""]",1527.73,{},127779,0,"""Europe""" +2024-09-11,15059,1502,"[\""Tablet\"", \""Headphones\""]",3803.73,{},90459,1,"""Asia""" +2023-07-20,15060,8869,"[\""Headphones\"", \""Phone\""]",1820.59,"{\""loyalty\"": \""26%\""}",283175,1,"""North America""" +2023-05-24,15061,5562,"[\""Keyboard\"", \""Phone\""]",1987.52,{},251878,1,"""South America""" +2023-08-31,15062,2805,"[\""Charger\"", \""Headphones\""]",4349.3,"{\"": \""8%\""}",89180,0,"""Europe""" +2023-10-07,15063,2862,"[\""Wireless Mouse\""]",2950.48,{},73062,1,"""North America""" +2024-10-15,15064,7839,"[\""Monitor\""]",3963.33,"{\""loyalty\"": \""22%\""}",119876,0,"""Africa""" +2023-03-20,15065,4860,"[\""Charger\""]",2418.15,"{\""seasonal\"": \""16%\""}",20834,0,"""Europe""" +2024-12-22,15066,3662,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2442.57,{},277500,1,"""Asia""" +2024-12-25,15067,7943,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3466.69,{},70071,0,"""Africa""" +2024-05-22,15068,6210,"[\""Laptop\""]",4621.8,"{\""promo\"": \""29%\""}",22293,0,"""Asia""" +2024-01-11,15069,2296,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2204.97,"{\""loyalty\"": \""22%\""}",289777,1,"""South America""" +2023-06-02,15070,8105,"[\""Keyboard\""]",4074.68,{},107563,1,"""Africa""" +2023-06-20,15071,2585,"[\""Charger\"", \""Keyboard\""]",1633.98,"{\""seasonal\"": \""21%\""}",119477,1,"""Africa""" +2023-12-15,15072,7970,"[\""Charger\"", \""Monitor\""]",1595.87,"{\""seasonal\"": \""5%\""}",128315,0,"""Africa""" +2024-09-18,15073,9115,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3736.76,{},148286,1,"""North America""" +2023-11-30,15074,5689,"[\""Phone\"", \""Charger\""]",2453.52,{},79253,0,"""Asia""" +2023-10-23,15075,1864,"[\""Phone\""]",4390.61,"{\""loyalty\"": \""8%\""}",139280,0,"""North America""" +2023-08-15,15076,5115,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3427.48,"{\""promo\"": \""13%\""}",28595,0,"""Africa""" +2024-07-05,15077,9612,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",714.27,{},276334,1,"""South America""" +2023-02-16,15078,9961,"[\""Headphones\""]",119.73,"{\""seasonal\"": \""17%\""}",263544,1,"""Africa""" +2023-01-13,15079,1672,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1626.29,{},172784,1,"""Africa""" +2023-04-07,15080,8812,"[\""Headphones\""]",1583.62,"{\""loyalty\"": \""16%\""}",87823,1,"""North America""" +2023-07-13,15081,3474,"[\""Charger\""]",2850.23,{},28529,0,"""North America""" +2023-08-28,15082,8573,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2997.53,"{\""promo\"": \""20%\""}",206004,1,"""South America""" +2023-07-15,15083,1366,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2061.96,"{\""loyalty\"": \""6%\""}",200550,0,"""North America""" +2023-03-06,15084,6245,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",709.66,{},72540,0,"""Africa""" +2023-04-17,15085,6340,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1513.27,"{\""loyalty\"": \""17%\""}",35278,0,"""Africa""" +2024-10-09,15086,4046,"[\""Wireless Mouse\"", \""Laptop\""]",1956.76,"{\""loyalty\"": \""30%\""}",102859,0,"""Europe""" +2023-05-08,15087,6569,"[\""Headphones\""]",519.75,"{\"": \""11%\""}",72772,1,"""Africa""" +2023-11-20,15088,4868,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3672.94,{},286752,0,"""Africa""" +2024-04-23,15089,6651,"[\""Wireless Mouse\""]",2992.84,{},219765,0,"""Asia""" +2024-01-06,15090,687,"[\""Keyboard\""]",1882.74,"{\"": \""22%\""}",78251,1,"""North America""" +2024-01-30,15091,8977,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3488.01,"{\""promo\"": \""7%\""}",98843,0,"""Asia""" +2023-11-27,15092,2795,"[\""Phone\""]",1798.07,{},287824,0,"""North America""" +2023-01-24,15093,8039,"[\""Wireless Mouse\"", \""Phone\""]",3513.22,"{\""loyalty\"": \""8%\""}",135860,0,"""Africa""" +2023-10-20,15094,9963,"[\""Monitor\""]",3873.23,"{\""seasonal\"": \""7%\""}",171974,0,"""North America""" +2023-04-08,15095,8673,"[\""Headphones\"", \""Charger\""]",2806.21,{},42428,0,"""Europe""" +2023-06-14,15096,7134,"[\""Phone\""]",4372.97,"{\""seasonal\"": \""27%\""}",195586,0,"""Africa""" +2024-03-31,15097,8063,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",284.46,"{\""loyalty\"": \""11%\""}",215039,1,"""Europe""" +2024-01-26,15098,6994,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4930.05,"{\""seasonal\"": \""17%\""}",187042,0,"""South America""" +2024-10-21,15099,3402,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3849.88,{},24010,1,"""Europe""" +2023-04-14,15100,4392,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4588.2,{},157442,0,"""North America""" +2024-08-13,15101,4258,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4049.51,{},129282,0,"""Asia""" +2024-06-08,15102,2822,"[\""Tablet\"", \""Monitor\""]",3587.39,"{\""promo\"": \""18%\""}",196423,0,"""Asia""" +2023-07-05,15103,2447,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2184.15,"{\"": \""23%\""}",253446,1,"""North America""" +2024-04-12,15104,7397,"[\""Monitor\"", \""Laptop\""]",3481.56,"{\"": \""25%\""}",164925,1,"""South America""" +2023-11-21,15105,842,"[\""Wireless Mouse\""]",3778.97,"{\""promo\"": \""13%\""}",48689,0,"""South America""" +2023-02-02,15106,558,"[\""Headphones\""]",3629.44,"{\""promo\"": \""9%\""}",260961,0,"""South America""" +2024-07-08,15107,7812,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4605.42,"{\""promo\"": \""24%\""}",15369,0,"""South America""" +2024-01-28,15108,4746,"[\""Laptop\"", \""Wireless Mouse\""]",738.64,"{\""promo\"": \""23%\""}",252986,0,"""North America""" +2023-02-22,15109,771,"[\""Headphones\"", \""Phone\""]",3708.3,"{\"": \""25%\""}",112283,1,"""North America""" +2023-05-03,15110,1914,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1316.64,{},43841,1,"""Asia""" +2024-07-21,15111,6718,"[\""Keyboard\"", \""Charger\""]",1648.05,{},208597,0,"""Africa""" +2023-07-26,15112,8291,"[\""Wireless Mouse\"", \""Keyboard\""]",3267.91,"{\""seasonal\"": \""28%\""}",138769,0,"""North America""" +2023-04-14,15113,8181,"[\""Tablet\"", \""Laptop\""]",2934.6,"{\"": \""10%\""}",233829,0,"""South America""" +2024-08-28,15114,7676,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4335.64,{},47051,1,"""Africa""" +2023-02-19,15115,1265,"[\""Charger\"", \""Monitor\""]",2506.02,"{\""loyalty\"": \""24%\""}",58973,1,"""Europe""" +2023-01-03,15116,1103,"[\""Laptop\"", \""Tablet\""]",3465.94,"{\"": \""14%\""}",253918,1,"""Africa""" +2024-06-05,15117,184,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",825.68,{},42504,1,"""North America""" +2023-10-23,15118,1424,"[\""Monitor\""]",4915.69,"{\""loyalty\"": \""7%\""}",82033,1,"""Asia""" +2023-05-15,15119,7884,"[\""Monitor\""]",320.77,"{\""seasonal\"": \""5%\""}",230433,1,"""North America""" +2024-04-27,15120,2744,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",373.34,"{\"": \""8%\""}",48803,0,"""North America""" +2023-07-13,15121,8244,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3705.3,{},208660,1,"""South America""" +2023-07-22,15122,2417,"[\""Laptop\"", \""Monitor\""]",2750.91,{},263945,1,"""Europe""" +2023-06-15,15123,1980,"[\""Headphones\""]",2830.64,"{\""loyalty\"": \""19%\""}",267494,0,"""North America""" +2024-07-18,15124,8824,"[\""Tablet\"", \""Charger\""]",957.35,"{\"": \""22%\""}",78282,1,"""Africa""" +2024-08-06,15125,687,"[\""Tablet\"", \""Laptop\""]",2110.69,"{\""loyalty\"": \""25%\""}",236119,0,"""South America""" +2024-02-15,15126,4866,"[\""Keyboard\"", \""Monitor\""]",2503.37,"{\"": \""29%\""}",277366,0,"""South America""" +2024-09-11,15127,1910,"[\""Keyboard\"", \""Monitor\""]",1765.88,{},75175,0,"""North America""" +2023-03-29,15128,4586,"[\""Keyboard\"", \""Tablet\""]",2311.9,{},127763,1,"""Asia""" +2024-07-30,15129,7809,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3604.76,{},189782,1,"""South America""" +2023-06-18,15130,8698,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",481.21,{},148493,1,"""Africa""" +2023-07-09,15131,8336,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1879.49,"{\""loyalty\"": \""23%\""}",177709,0,"""Europe""" +2024-12-23,15132,8068,"[\""Tablet\""]",4174.55,"{\""promo\"": \""7%\""}",49857,0,"""South America""" +2024-09-23,15133,8635,"[\""Phone\"", \""Charger\""]",4556.54,{},121176,0,"""Asia""" +2023-10-11,15134,784,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2426.31,{},83003,1,"""North America""" +2024-05-22,15135,2418,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1244.31,{},169498,1,"""Asia""" +2024-09-25,15136,301,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2206.8,{},158780,1,"""South America""" +2023-10-16,15137,7806,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1915.86,{},70297,0,"""Africa""" +2023-03-09,15138,3735,"[\""Monitor\"", \""Charger\""]",1909.81,{},176557,0,"""Africa""" +2023-03-29,15139,5646,"[\""Phone\""]",3598.72,"{\""loyalty\"": \""12%\""}",29529,1,"""South America""" +2023-08-17,15140,9057,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1074.64,"{\""seasonal\"": \""18%\""}",37500,0,"""Africa""" +2023-02-02,15141,1637,"[\""Phone\""]",3786.15,"{\""promo\"": \""12%\""}",253001,0,"""South America""" +2023-03-30,15142,7900,"[\""Wireless Mouse\""]",1057.15,{},147133,1,"""Asia""" +2024-03-04,15143,3396,"[\""Charger\"", \""Phone\""]",452.23,{},99680,0,"""Africa""" +2023-05-11,15144,1248,"[\""Laptop\""]",3515.91,{},203647,0,"""Europe""" +2023-03-07,15145,7120,"[\""Monitor\""]",4036.01,{},154384,0,"""Asia""" +2023-09-19,15146,6769,"[\""Tablet\"", \""Monitor\""]",4170.87,{},66826,1,"""South America""" +2024-01-30,15147,3430,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4804.54,{},268542,1,"""North America""" +2024-11-20,15148,893,"[\""Phone\"", \""Laptop\""]",475.77,"{\""seasonal\"": \""15%\""}",163307,1,"""North America""" +2024-08-06,15149,497,"[\""Wireless Mouse\""]",3132.72,{},230322,0,"""Europe""" +2024-02-12,15150,4010,"[\""Keyboard\""]",2532.41,"{\""loyalty\"": \""7%\""}",209376,0,"""Asia""" +2024-11-27,15151,7431,"[\""Headphones\"", \""Charger\""]",4111.12,"{\""loyalty\"": \""27%\""}",200198,0,"""Asia""" +2024-10-11,15152,8711,"[\""Phone\""]",2362.88,"{\""loyalty\"": \""18%\""}",229106,1,"""South America""" +2023-03-21,15153,733,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4733.1,{},203200,1,"""North America""" +2024-06-13,15154,7060,"[\""Keyboard\"", \""Monitor\""]",2664.12,{},92065,1,"""Africa""" +2023-12-05,15155,8328,"[\""Monitor\"", \""Tablet\""]",4412.21,"{\""promo\"": \""22%\""}",150163,0,"""South America""" +2024-07-02,15156,8240,"[\""Keyboard\"", \""Charger\""]",3606.4,"{\"": \""30%\""}",116175,0,"""North America""" +2023-05-25,15157,8729,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4935.37,"{\""loyalty\"": \""7%\""}",18104,0,"""Africa""" +2023-01-26,15158,9955,"[\""Wireless Mouse\"", \""Laptop\""]",1586.32,{},126438,1,"""Europe""" +2023-02-19,15159,2596,"[\""Keyboard\"", \""Wireless Mouse\""]",260.09,"{\""promo\"": \""11%\""}",212857,0,"""North America""" +2024-01-19,15160,48,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4368.98,"{\""seasonal\"": \""15%\""}",286465,0,"""South America""" +2024-06-27,15161,7200,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2766.09,{},100113,0,"""Europe""" +2024-04-04,15162,8358,"[\""Wireless Mouse\"", \""Monitor\""]",3931.09,"{\""seasonal\"": \""15%\""}",191668,1,"""South America""" +2023-01-08,15163,9879,"[\""Phone\""]",2209.78,{},261526,1,"""Europe""" +2023-10-22,15164,2634,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4455.38,{},286661,1,"""Africa""" +2024-01-11,15165,201,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4753.18,"{\""loyalty\"": \""26%\""}",86012,1,"""Africa""" +2024-01-24,15166,5638,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4019.99,{},1694,1,"""Europe""" +2023-04-26,15167,2915,"[\""Headphones\""]",2674.14,{},10813,1,"""Europe""" +2023-01-21,15168,583,"[\""Keyboard\"", \""Phone\""]",3644.8,{},195463,1,"""Asia""" +2024-11-03,15169,7116,"[\""Wireless Mouse\"", \""Monitor\""]",495.62,"{\""promo\"": \""29%\""}",176717,1,"""Asia""" +2023-09-16,15170,9279,"[\""Charger\""]",2009.13,"{\""loyalty\"": \""9%\""}",111048,0,"""Africa""" +2023-03-19,15171,7096,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",318.33,{},258409,1,"""North America""" +2024-02-26,15172,9201,"[\""Tablet\""]",519.45,{},93031,0,"""Europe""" +2024-08-01,15173,7015,"[\""Tablet\""]",2782.63,{},219032,1,"""Africa""" +2024-06-03,15174,9737,"[\""Wireless Mouse\""]",674.88,{},264051,0,"""Africa""" +2024-07-02,15175,237,"[\""Headphones\""]",570.91,"{\""loyalty\"": \""30%\""}",205604,1,"""Africa""" +2024-02-03,15176,8035,"[\""Phone\"", \""Monitor\""]",1491.04,{},207791,1,"""North America""" +2024-08-05,15177,1951,"[\""Headphones\"", \""Laptop\""]",4497.51,{},54477,0,"""North America""" +2023-03-21,15178,6419,"[\""Monitor\""]",538.95,{},3059,1,"""South America""" +2023-07-05,15179,9486,"[\""Monitor\""]",243.7,{},202916,0,"""South America""" +2023-05-16,15180,983,"[\""Wireless Mouse\"", \""Headphones\""]",2576.78,"{\"": \""8%\""}",175412,0,"""Africa""" +2024-02-12,15181,717,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",591.76,"{\""promo\"": \""28%\""}",196416,0,"""South America""" +2023-01-14,15182,1961,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3162.98,"{\"": \""10%\""}",224841,0,"""Africa""" +2024-06-19,15183,9743,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1963.43,"{\""loyalty\"": \""17%\""}",151220,1,"""Asia""" +2024-04-08,15184,6563,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3707.5,"{\""seasonal\"": \""12%\""}",55830,1,"""South America""" +2023-01-08,15185,8904,"[\""Keyboard\""]",2244.05,"{\"": \""25%\""}",198644,0,"""South America""" +2023-08-02,15186,5950,"[\""Headphones\""]",1116.51,"{\""loyalty\"": \""11%\""}",225572,1,"""South America""" +2023-01-03,15187,7432,"[\""Keyboard\"", \""Laptop\""]",2949.59,"{\""promo\"": \""9%\""}",148436,0,"""Africa""" +2024-09-08,15188,6696,"[\""Wireless Mouse\"", \""Phone\""]",3743.82,"{\""seasonal\"": \""13%\""}",184467,1,"""Africa""" +2024-01-27,15189,7308,"[\""Laptop\"", \""Headphones\""]",4944.43,"{\""loyalty\"": \""27%\""}",296316,0,"""Africa""" +2023-08-18,15190,654,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2283.51,"{\""seasonal\"": \""9%\""}",111329,0,"""Europe""" +2024-07-19,15191,2491,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1067.63,"{\""promo\"": \""28%\""}",233205,1,"""North America""" +2024-10-04,15192,8386,"[\""Monitor\"", \""Phone\""]",3852.9,"{\""promo\"": \""11%\""}",38794,0,"""Africa""" +2023-09-16,15193,7760,"[\""Tablet\""]",611.49,{},296116,0,"""South America""" +2023-06-01,15194,3883,"[\""Headphones\"", \""Charger\""]",3040.95,"{\""loyalty\"": \""17%\""}",203994,0,"""Europe""" +2024-08-28,15195,352,"[\""Headphones\""]",2169.51,"{\""loyalty\"": \""9%\""}",69507,1,"""North America""" +2023-07-19,15196,33,"[\""Phone\""]",4345.76,"{\""seasonal\"": \""25%\""}",66590,0,"""Africa""" +2023-12-20,15197,2012,"[\""Phone\"", \""Charger\"", \""Laptop\""]",68.89,{},92321,0,"""North America""" +2024-08-30,15198,7655,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2968.37,{},165388,0,"""Asia""" +2023-05-12,15199,371,"[\""Headphones\"", \""Tablet\""]",2786.0,"{\"": \""18%\""}",49403,0,"""North America""" +2024-08-24,15200,7493,"[\""Headphones\"", \""Keyboard\""]",2146.02,{},171438,1,"""Africa""" +2023-10-08,15201,8239,"[\""Keyboard\""]",158.05,{},102240,1,"""North America""" +2023-02-24,15202,3471,"[\""Monitor\"", \""Phone\""]",658.27,{},115970,0,"""Europe""" +2024-08-22,15203,3393,"[\""Charger\""]",1411.17,{},196154,1,"""Europe""" +2023-07-22,15204,5748,"[\""Headphones\""]",456.14,"{\""seasonal\"": \""27%\""}",126610,0,"""Africa""" +2024-03-12,15205,6456,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4925.71,{},1303,0,"""North America""" +2023-04-17,15206,5270,"[\""Tablet\"", \""Headphones\""]",2843.48,"{\""seasonal\"": \""6%\""}",103997,0,"""Africa""" +2023-01-02,15207,7227,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4503.08,{},230520,0,"""Asia""" +2024-10-22,15208,3572,"[\""Charger\""]",2403.39,{},164998,0,"""Asia""" +2023-09-23,15209,9713,"[\""Wireless Mouse\"", \""Headphones\""]",2611.03,"{\""loyalty\"": \""8%\""}",214884,1,"""North America""" +2024-10-15,15210,6974,"[\""Keyboard\"", \""Tablet\""]",164.68,{},54174,1,"""Asia""" +2023-08-26,15211,348,"[\""Wireless Mouse\""]",1671.54,"{\""seasonal\"": \""26%\""}",149967,0,"""South America""" +2024-09-18,15212,3360,"[\""Monitor\"", \""Laptop\""]",4072.7,"{\""seasonal\"": \""14%\""}",118142,1,"""Europe""" +2024-03-21,15213,8575,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3103.78,{},23154,1,"""Africa""" +2023-03-02,15214,7475,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3476.53,{},242426,0,"""Asia""" +2024-03-13,15215,3910,"[\""Headphones\""]",392.86,{},256830,0,"""Asia""" +2024-07-15,15216,2800,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4842.02,"{\""seasonal\"": \""20%\""}",270671,1,"""Europe""" +2023-11-04,15217,574,"[\""Phone\"", \""Charger\""]",3115.22,"{\"": \""29%\""}",194857,0,"""Europe""" +2024-03-19,15218,5439,"[\""Charger\""]",123.16,{},188583,1,"""South America""" +2024-09-29,15219,2634,"[\""Keyboard\"", \""Phone\""]",4509.32,{},222762,1,"""Africa""" +2024-02-25,15220,9054,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1417.24,{},187091,1,"""Africa""" +2023-12-19,15221,7637,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4463.54,"{\""promo\"": \""17%\""}",199085,0,"""Asia""" +2023-02-15,15222,7461,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",843.56,"{\"": \""24%\""}",90799,0,"""Asia""" +2023-09-06,15223,5412,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4983.0,"{\""seasonal\"": \""6%\""}",173770,0,"""South America""" +2023-03-14,15224,1005,"[\""Keyboard\""]",1736.29,{},186322,0,"""Europe""" +2023-03-29,15225,7096,"[\""Wireless Mouse\""]",4816.83,{},282489,1,"""South America""" +2023-03-10,15226,4808,"[\""Laptop\"", \""Wireless Mouse\""]",3852.95,{},25797,1,"""Europe""" +2024-06-01,15227,7008,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3985.31,{},182696,1,"""Africa""" +2024-04-27,15228,5513,"[\""Monitor\"", \""Headphones\""]",600.24,"{\""loyalty\"": \""14%\""}",120753,0,"""North America""" +2024-09-10,15229,5997,"[\""Wireless Mouse\""]",1172.08,{},230763,1,"""Africa""" +2023-02-25,15230,606,"[\""Wireless Mouse\""]",2696.96,{},104093,0,"""Africa""" +2023-01-07,15231,1452,"[\""Wireless Mouse\"", \""Charger\""]",851.76,{},271247,0,"""Asia""" +2023-05-13,15232,8470,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3908.05,"{\""loyalty\"": \""30%\""}",23998,0,"""Asia""" +2023-03-05,15233,3398,"[\""Tablet\"", \""Monitor\""]",953.83,"{\""promo\"": \""13%\""}",125071,1,"""Asia""" +2024-08-27,15234,6396,"[\""Monitor\"", \""Wireless Mouse\""]",2355.55,"{\""seasonal\"": \""15%\""}",81362,1,"""Europe""" +2024-12-11,15235,5522,"[\""Phone\""]",1097.87,"{\""loyalty\"": \""27%\""}",205247,0,"""South America""" +2024-06-03,15236,6498,"[\""Charger\"", \""Laptop\""]",4802.65,"{\""promo\"": \""12%\""}",111985,1,"""South America""" +2024-05-02,15237,5347,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3549.62,"{\""seasonal\"": \""22%\""}",19701,0,"""South America""" +2023-09-08,15238,5195,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",58.72,{},58190,1,"""South America""" +2024-05-26,15239,1477,"[\""Tablet\"", \""Wireless Mouse\""]",2186.6,"{\""seasonal\"": \""20%\""}",186082,1,"""Africa""" +2024-05-30,15240,4374,"[\""Keyboard\"", \""Charger\""]",613.73,"{\""promo\"": \""13%\""}",72054,1,"""Africa""" +2023-02-10,15241,1717,"[\""Headphones\"", \""Keyboard\""]",3536.66,{},157704,0,"""Asia""" +2024-09-22,15242,2083,"[\""Monitor\"", \""Keyboard\""]",2476.89,{},29477,0,"""Africa""" +2024-02-26,15243,7579,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1244.46,"{\""seasonal\"": \""29%\""}",76824,1,"""Asia""" +2024-11-13,15244,3890,"[\""Laptop\""]",4169.67,"{\""promo\"": \""27%\""}",46108,1,"""Africa""" +2024-07-23,15245,2747,"[\""Tablet\""]",1371.26,"{\""loyalty\"": \""16%\""}",200433,1,"""South America""" +2024-08-14,15246,1740,"[\""Charger\"", \""Tablet\""]",1821.9,"{\"": \""23%\""}",199367,0,"""Europe""" +2023-05-05,15247,3877,"[\""Headphones\"", \""Tablet\""]",2808.83,{},148595,1,"""Africa""" +2024-04-27,15248,8677,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3746.18,"{\""loyalty\"": \""18%\""}",274195,0,"""South America""" +2023-03-23,15249,7801,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2921.02,{},203610,1,"""North America""" +2023-12-07,15250,7404,"[\""Keyboard\"", \""Headphones\""]",2293.11,{},241873,1,"""Europe""" +2024-12-31,15251,929,"[\""Headphones\""]",4016.88,{},270930,1,"""North America""" +2024-03-05,15252,1820,"[\""Headphones\"", \""Wireless Mouse\""]",1247.58,"{\""seasonal\"": \""11%\""}",88242,1,"""South America""" +2024-07-04,15253,2870,"[\""Keyboard\""]",4781.99,"{\""seasonal\"": \""25%\""}",75369,1,"""South America""" +2023-02-21,15254,1454,"[\""Charger\"", \""Tablet\""]",692.16,{},27942,0,"""Africa""" +2024-09-28,15255,7221,"[\""Charger\""]",3938.74,{},78979,0,"""Africa""" +2024-11-04,15256,1717,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1249.24,"{\""promo\"": \""11%\""}",48524,1,"""North America""" +2023-06-07,15257,8688,"[\""Headphones\""]",4252.34,"{\"": \""8%\""}",177214,0,"""Asia""" +2023-03-30,15258,5970,"[\""Keyboard\"", \""Monitor\""]",3195.91,{},179625,1,"""Africa""" +2024-11-03,15259,5897,"[\""Wireless Mouse\"", \""Charger\""]",3541.18,{},82870,0,"""Africa""" +2023-11-01,15260,7742,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3622.91,"{\""seasonal\"": \""16%\""}",293451,1,"""South America""" +2024-07-09,15261,3037,"[\""Phone\""]",506.3,"{\""promo\"": \""30%\""}",133227,0,"""North America""" +2024-08-06,15262,2197,"[\""Charger\"", \""Monitor\""]",4530.75,{},291515,1,"""Africa""" +2023-09-19,15263,8924,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",352.63,"{\"": \""29%\""}",123733,0,"""South America""" +2024-04-08,15264,7798,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3517.94,"{\"": \""10%\""}",29037,1,"""South America""" +2023-04-24,15265,4748,"[\""Tablet\""]",2417.99,"{\"": \""29%\""}",189017,1,"""North America""" +2023-07-30,15266,5035,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2806.73,"{\"": \""11%\""}",95784,1,"""Asia""" +2024-04-28,15267,8497,"[\""Phone\"", \""Keyboard\""]",4567.56,"{\""promo\"": \""23%\""}",206634,1,"""South America""" +2023-02-24,15268,626,"[\""Charger\"", \""Laptop\""]",1287.26,"{\"": \""24%\""}",219706,0,"""South America""" +2024-01-09,15269,3887,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",547.92,"{\""promo\"": \""30%\""}",230356,0,"""Asia""" +2024-10-09,15270,8343,"[\""Monitor\"", \""Tablet\""]",2013.6,{},288854,0,"""Asia""" +2024-08-17,15271,8140,"[\""Wireless Mouse\""]",4265.91,"{\""seasonal\"": \""5%\""}",108096,0,"""North America""" +2023-11-09,15272,137,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1558.18,"{\""loyalty\"": \""14%\""}",130857,1,"""North America""" +2023-09-08,15273,736,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",461.02,{},53770,0,"""Europe""" +2024-06-29,15274,6224,"[\""Charger\"", \""Laptop\""]",99.45,"{\""promo\"": \""9%\""}",275207,0,"""Europe""" +2023-01-18,15275,5925,"[\""Wireless Mouse\"", \""Charger\""]",4075.12,{},170823,1,"""Asia""" +2023-04-22,15276,6545,"[\""Laptop\""]",4868.0,"{\""loyalty\"": \""23%\""}",292650,1,"""South America""" +2024-01-17,15277,7720,"[\""Phone\""]",2645.9,"{\"": \""11%\""}",66764,0,"""Europe""" +2024-07-17,15278,7761,"[\""Charger\"", \""Tablet\""]",148.46,{},222821,0,"""North America""" +2023-09-18,15279,9151,"[\""Keyboard\"", \""Tablet\""]",200.16,"{\""promo\"": \""13%\""}",20657,1,"""Europe""" +2023-07-16,15280,3013,"[\""Laptop\"", \""Headphones\""]",4816.73,"{\""seasonal\"": \""22%\""}",57603,1,"""North America""" +2023-10-31,15281,5330,"[\""Charger\"", \""Keyboard\""]",1961.88,"{\""seasonal\"": \""5%\""}",66935,1,"""North America""" +2024-06-22,15282,3037,"[\""Wireless Mouse\"", \""Keyboard\""]",2418.89,"{\"": \""14%\""}",225065,1,"""Africa""" +2024-10-17,15283,7658,"[\""Tablet\""]",2038.94,{},270185,0,"""North America""" +2024-10-10,15284,6962,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4831.22,{},19186,0,"""Europe""" +2023-09-27,15285,5612,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3804.45,{},159276,1,"""Asia""" +2024-02-10,15286,6174,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1099.32,{},137917,0,"""Africa""" +2024-02-20,15287,8221,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",323.96,"{\""promo\"": \""17%\""}",239856,1,"""Asia""" +2023-04-08,15288,6539,"[\""Headphones\""]",2142.74,"{\""loyalty\"": \""6%\""}",278985,1,"""North America""" +2023-11-21,15289,2286,"[\""Keyboard\"", \""Charger\""]",2006.08,{},163669,0,"""Asia""" +2023-07-03,15290,3507,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2014.56,{},117294,1,"""South America""" +2024-11-21,15291,8072,"[\""Wireless Mouse\""]",400.84,{},292810,1,"""Africa""" +2023-10-30,15292,8872,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3224.99,"{\"": \""24%\""}",155097,1,"""Africa""" +2023-06-27,15293,3684,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",818.37,"{\""promo\"": \""19%\""}",34935,0,"""North America""" +2023-03-31,15294,7998,"[\""Headphones\""]",3017.04,{},6218,1,"""Europe""" +2023-02-05,15295,2985,"[\""Monitor\"", \""Laptop\""]",3970.63,"{\"": \""10%\""}",287565,1,"""North America""" +2024-06-30,15296,4381,"[\""Charger\""]",1779.02,{},284740,0,"""North America""" +2023-09-04,15297,6372,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3680.6,"{\""seasonal\"": \""6%\""}",139854,0,"""Asia""" +2023-09-02,15298,6279,"[\""Phone\"", \""Monitor\"", \""Charger\""]",218.2,{},40864,1,"""Europe""" +2023-12-19,15299,6914,"[\""Laptop\"", \""Tablet\""]",4191.14,"{\""seasonal\"": \""14%\""}",286777,1,"""Asia""" +2024-06-01,15300,8185,"[\""Monitor\"", \""Laptop\""]",391.85,"{\""promo\"": \""7%\""}",122575,0,"""Africa""" +2023-12-15,15301,3724,"[\""Phone\"", \""Keyboard\""]",2443.25,"{\""seasonal\"": \""5%\""}",183215,0,"""Europe""" +2024-12-14,15302,7721,"[\""Headphones\"", \""Wireless Mouse\""]",2496.92,{},68365,1,"""Europe""" +2024-12-11,15303,2102,"[\""Keyboard\""]",2546.97,"{\""seasonal\"": \""11%\""}",146870,0,"""South America""" +2023-04-06,15304,8910,"[\""Phone\"", \""Keyboard\""]",315.78,{},31660,1,"""Africa""" +2024-08-21,15305,1376,"[\""Tablet\"", \""Charger\""]",713.42,"{\""promo\"": \""24%\""}",161157,1,"""Africa""" +2024-01-18,15306,3747,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3216.22,"{\""promo\"": \""15%\""}",25779,1,"""North America""" +2023-03-23,15307,3472,"[\""Wireless Mouse\""]",4133.25,{},7482,1,"""Asia""" +2023-11-02,15308,6699,"[\""Charger\"", \""Headphones\""]",1438.69,{},207806,1,"""Europe""" +2023-11-27,15309,7790,"[\""Tablet\""]",1437.79,{},112056,0,"""Europe""" +2024-01-20,15310,3139,"[\""Headphones\"", \""Wireless Mouse\""]",2192.27,"{\""promo\"": \""5%\""}",170906,0,"""North America""" +2023-01-02,15311,3655,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4158.26,{},276411,1,"""South America""" +2023-04-20,15312,3878,"[\""Headphones\""]",1659.47,"{\"": \""24%\""}",50317,0,"""South America""" +2024-01-23,15313,7642,"[\""Monitor\""]",1739.41,{},181957,1,"""Africa""" +2024-03-09,15314,8769,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4710.86,{},62247,1,"""Asia""" +2024-01-15,15315,8187,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",551.64,{},57267,0,"""Europe""" +2023-01-10,15316,3327,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1926.44,"{\""loyalty\"": \""10%\""}",271463,0,"""Asia""" +2024-01-13,15317,1425,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4672.8,"{\""seasonal\"": \""16%\""}",20999,0,"""Europe""" +2023-05-11,15318,5179,"[\""Headphones\"", \""Monitor\""]",595.65,"{\""loyalty\"": \""18%\""}",50442,1,"""Europe""" +2023-11-04,15319,7829,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1343.77,"{\""seasonal\"": \""22%\""}",39495,0,"""Asia""" +2024-05-25,15320,7885,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2582.69,"{\"": \""13%\""}",260639,0,"""Asia""" +2024-12-20,15321,6374,"[\""Keyboard\""]",3018.73,{},66671,0,"""Asia""" +2024-01-15,15322,1851,"[\""Keyboard\"", \""Wireless Mouse\""]",532.68,{},229451,1,"""Europe""" +2023-12-12,15323,1574,"[\""Keyboard\"", \""Wireless Mouse\""]",4549.62,"{\""promo\"": \""16%\""}",292858,1,"""Europe""" +2024-11-21,15324,8537,"[\""Headphones\""]",945.95,"{\""loyalty\"": \""14%\""}",109714,0,"""North America""" +2023-09-05,15325,2786,"[\""Headphones\""]",268.22,"{\""promo\"": \""11%\""}",237066,0,"""Europe""" +2023-04-04,15326,9873,"[\""Headphones\""]",73.66,{},190290,0,"""Europe""" +2023-01-31,15327,1623,"[\""Keyboard\"", \""Charger\""]",2266.38,{},291602,1,"""North America""" +2023-12-18,15328,1857,"[\""Headphones\"", \""Tablet\""]",831.11,"{\""seasonal\"": \""24%\""}",152676,1,"""Asia""" +2024-10-13,15329,4525,"[\""Headphones\"", \""Phone\""]",1308.47,{},131782,1,"""Africa""" +2023-05-24,15330,3128,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",244.77,{},237841,0,"""Europe""" +2024-08-21,15331,4872,"[\""Tablet\"", \""Monitor\""]",4187.75,"{\""promo\"": \""10%\""}",176379,1,"""South America""" +2024-03-28,15332,6443,"[\""Tablet\"", \""Headphones\""]",2956.4,{},47100,1,"""South America""" +2023-04-13,15333,9074,"[\""Monitor\""]",1184.72,"{\""loyalty\"": \""19%\""}",235001,0,"""Asia""" +2024-01-24,15334,7648,"[\""Tablet\"", \""Charger\""]",3637.84,"{\""loyalty\"": \""12%\""}",273833,0,"""South America""" +2023-10-12,15335,5819,"[\""Headphones\""]",3764.48,{},164501,0,"""Asia""" +2023-10-24,15336,4704,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1113.98,"{\""promo\"": \""16%\""}",186012,1,"""Europe""" +2023-01-09,15337,4856,"[\""Laptop\"", \""Charger\""]",727.44,"{\"": \""8%\""}",110326,0,"""Asia""" +2023-01-03,15338,8599,"[\""Laptop\""]",3747.51,"{\""seasonal\"": \""11%\""}",88869,0,"""Europe""" +2023-03-23,15339,483,"[\""Keyboard\""]",4268.59,{},169055,1,"""South America""" +2023-01-11,15340,7008,"[\""Charger\"", \""Wireless Mouse\""]",641.86,{},88260,0,"""Asia""" +2023-06-15,15341,78,"[\""Laptop\""]",4407.07,{},3207,1,"""Europe""" +2024-11-10,15342,1035,"[\""Tablet\"", \""Monitor\""]",738.93,"{\""loyalty\"": \""26%\""}",152482,1,"""Asia""" +2024-12-23,15343,8951,"[\""Tablet\"", \""Phone\""]",308.06,"{\""seasonal\"": \""20%\""}",119585,0,"""Europe""" +2023-06-04,15344,6052,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2204.32,"{\""promo\"": \""5%\""}",211849,1,"""Asia""" +2023-10-25,15345,2573,"[\""Monitor\"", \""Wireless Mouse\""]",3996.35,"{\"": \""10%\""}",46767,0,"""Asia""" +2023-10-02,15346,7252,"[\""Charger\"", \""Phone\""]",3178.94,"{\""loyalty\"": \""21%\""}",200588,1,"""Africa""" +2024-05-02,15347,9895,"[\""Tablet\""]",4780.26,"{\""loyalty\"": \""6%\""}",71795,0,"""North America""" +2023-10-07,15348,7757,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4467.67,{},134546,1,"""Africa""" +2024-08-21,15349,7013,"[\""Phone\""]",2916.41,{},197886,1,"""South America""" +2023-03-10,15350,1427,"[\""Monitor\""]",1877.83,"{\""seasonal\"": \""5%\""}",35984,0,"""Asia""" +2023-05-07,15351,5606,"[\""Headphones\"", \""Wireless Mouse\""]",3050.46,"{\""promo\"": \""7%\""}",205569,1,"""North America""" +2024-02-08,15352,3180,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4326.28,"{\""seasonal\"": \""30%\""}",189408,0,"""North America""" +2023-02-28,15353,3415,"[\""Phone\"", \""Laptop\""]",2963.64,"{\""loyalty\"": \""11%\""}",248436,1,"""South America""" +2023-09-16,15354,2849,"[\""Monitor\"", \""Tablet\""]",1333.65,"{\""promo\"": \""7%\""}",222236,1,"""Africa""" +2023-10-15,15355,9105,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1476.67,"{\""seasonal\"": \""10%\""}",23417,1,"""North America""" +2023-05-30,15356,3762,"[\""Monitor\"", \""Laptop\""]",2508.8,{},197557,1,"""Africa""" +2024-08-26,15357,1884,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3803.74,{},148894,1,"""North America""" +2024-03-25,15358,3145,"[\""Keyboard\""]",3428.07,"{\"": \""24%\""}",80767,0,"""South America""" +2024-03-30,15359,1026,"[\""Headphones\""]",591.71,{},163415,0,"""North America""" +2023-04-11,15360,8665,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3821.06,{},35037,0,"""South America""" +2024-11-24,15361,4408,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4051.61,{},141001,1,"""Asia""" +2023-06-14,15362,9827,"[\""Charger\""]",4576.24,{},65462,0,"""Europe""" +2023-02-10,15363,704,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3222.15,"{\""promo\"": \""7%\""}",277503,1,"""South America""" +2024-02-14,15364,8523,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2575.48,"{\"": \""28%\""}",156362,0,"""Asia""" +2024-02-08,15365,7204,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",962.15,"{\""loyalty\"": \""20%\""}",142352,0,"""North America""" +2024-06-20,15366,7968,"[\""Wireless Mouse\"", \""Headphones\""]",4621.75,{},146004,0,"""Europe""" +2023-04-29,15367,2763,"[\""Headphones\"", \""Keyboard\""]",1052.43,"{\"": \""6%\""}",239818,1,"""Asia""" +2023-08-24,15368,3953,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2418.95,{},141657,1,"""North America""" +2023-04-08,15369,1837,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2676.77,"{\""loyalty\"": \""28%\""}",259532,1,"""Asia""" +2024-09-13,15370,7582,"[\""Keyboard\"", \""Headphones\""]",4384.2,"{\"": \""8%\""}",136217,0,"""South America""" +2024-09-14,15371,8521,"[\""Monitor\""]",1507.68,{},287105,0,"""North America""" +2024-12-30,15372,173,"[\""Wireless Mouse\""]",2447.79,"{\""loyalty\"": \""24%\""}",181038,0,"""Europe""" +2024-10-04,15373,9539,"[\""Tablet\"", \""Keyboard\""]",2097.91,"{\""seasonal\"": \""9%\""}",62053,0,"""Europe""" +2024-09-09,15374,9737,"[\""Wireless Mouse\""]",3613.02,{},237225,0,"""Asia""" +2024-08-02,15375,2288,"[\""Keyboard\"", \""Headphones\""]",2855.79,"{\""loyalty\"": \""10%\""}",256534,0,"""Asia""" +2024-11-25,15376,1497,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3377.03,{},140645,1,"""Europe""" +2023-12-19,15377,9173,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2222.0,{},270594,1,"""North America""" +2023-11-11,15378,1358,"[\""Wireless Mouse\"", \""Keyboard\""]",1419.97,{},10775,0,"""Europe""" +2024-04-16,15379,6052,"[\""Keyboard\"", \""Wireless Mouse\""]",4796.92,"{\"": \""25%\""}",147916,1,"""Africa""" +2023-01-13,15380,2810,"[\""Headphones\""]",4989.39,"{\"": \""19%\""}",146351,0,"""Europe""" +2023-04-24,15381,310,"[\""Charger\""]",2941.74,{},222607,1,"""Asia""" +2024-06-06,15382,3658,"[\""Tablet\""]",2891.36,{},295421,1,"""South America""" +2023-06-30,15383,7867,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1624.66,"{\""seasonal\"": \""14%\""}",42569,1,"""Europe""" +2023-05-12,15384,6705,"[\""Monitor\"", \""Keyboard\""]",3937.9,"{\"": \""18%\""}",148037,1,"""South America""" +2023-02-27,15385,527,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",327.16,{},62905,1,"""Africa""" +2024-05-04,15386,8282,"[\""Laptop\""]",4327.03,{},46217,0,"""North America""" +2024-11-19,15387,4258,"[\""Wireless Mouse\"", \""Phone\""]",2048.82,"{\""loyalty\"": \""28%\""}",65306,1,"""Europe""" +2024-08-27,15388,3149,"[\""Laptop\""]",534.71,"{\""promo\"": \""16%\""}",285612,1,"""Europe""" +2024-01-25,15389,7956,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4359.38,"{\""loyalty\"": \""30%\""}",154920,1,"""South America""" +2023-03-10,15390,7112,"[\""Phone\"", \""Laptop\""]",1507.86,{},194749,1,"""South America""" +2024-11-09,15391,6434,"[\""Tablet\"", \""Laptop\""]",1982.58,{},197070,0,"""North America""" +2024-12-17,15392,9954,"[\""Tablet\""]",2819.27,{},24029,1,"""Asia""" +2023-10-27,15393,1825,"[\""Phone\""]",3355.85,"{\"": \""10%\""}",145305,1,"""Asia""" +2023-04-09,15394,2695,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4705.28,"{\"": \""23%\""}",151214,0,"""South America""" +2024-04-01,15395,6445,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4470.57,{},135271,0,"""North America""" +2023-11-30,15396,4752,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",892.93,{},123614,1,"""Europe""" +2024-11-21,15397,5020,"[\""Charger\""]",3288.21,{},14719,0,"""Africa""" +2023-04-05,15398,2920,"[\""Monitor\"", \""Headphones\""]",4947.19,{},162907,0,"""North America""" +2024-11-11,15399,4992,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1669.43,"{\""loyalty\"": \""5%\""}",144366,0,"""Asia""" +2023-11-17,15400,5422,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4265.59,{},36489,1,"""Africa""" +2024-10-06,15401,9026,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1279.54,{},219487,1,"""Asia""" +2023-10-22,15402,3106,"[\""Monitor\"", \""Phone\""]",2941.79,{},287208,0,"""South America""" +2024-06-06,15403,8966,"[\""Wireless Mouse\""]",4168.12,"{\"": \""16%\""}",40021,0,"""Asia""" +2024-08-01,15404,4959,"[\""Headphones\"", \""Charger\""]",1614.63,"{\""promo\"": \""10%\""}",7012,1,"""South America""" +2024-09-10,15405,701,"[\""Monitor\"", \""Laptop\""]",500.59,"{\""promo\"": \""6%\""}",284683,0,"""Europe""" +2024-09-26,15406,8457,"[\""Keyboard\""]",4752.39,{},262696,0,"""North America""" +2023-09-10,15407,3968,"[\""Keyboard\"", \""Tablet\""]",3773.8,"{\""promo\"": \""24%\""}",42211,0,"""Africa""" +2024-08-30,15408,2407,"[\""Monitor\"", \""Phone\""]",2643.35,"{\""loyalty\"": \""10%\""}",113608,1,"""North America""" +2024-09-12,15409,1616,"[\""Tablet\"", \""Charger\""]",4605.16,"{\""seasonal\"": \""22%\""}",183204,1,"""South America""" +2023-07-24,15410,8545,"[\""Headphones\"", \""Phone\""]",3344.19,"{\"": \""13%\""}",148300,1,"""South America""" +2023-06-24,15411,2104,"[\""Headphones\""]",3706.23,"{\""seasonal\"": \""6%\""}",141165,1,"""South America""" +2024-01-30,15412,8897,"[\""Monitor\""]",4920.38,"{\""seasonal\"": \""23%\""}",278856,0,"""South America""" +2024-06-24,15413,1231,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2496.93,"{\"": \""19%\""}",287989,0,"""Europe""" +2024-08-14,15414,4807,"[\""Charger\""]",3984.82,"{\""promo\"": \""27%\""}",22677,0,"""Europe""" +2024-09-22,15415,5680,"[\""Headphones\"", \""Laptop\""]",1010.28,{},105704,0,"""Asia""" +2024-12-22,15416,5366,"[\""Headphones\""]",4660.95,"{\""loyalty\"": \""29%\""}",246719,1,"""Europe""" +2023-04-01,15417,8725,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",765.49,"{\"": \""16%\""}",2101,1,"""Africa""" +2024-04-12,15418,4503,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1673.1,"{\"": \""11%\""}",279690,1,"""Europe""" +2024-09-05,15419,5752,"[\""Charger\""]",316.54,{},117067,0,"""Africa""" +2023-02-03,15420,6894,"[\""Tablet\""]",1523.31,{},77364,0,"""Africa""" +2023-03-05,15421,6976,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3718.97,"{\""loyalty\"": \""17%\""}",258494,1,"""North America""" +2024-06-11,15422,1077,"[\""Phone\""]",4726.97,{},236006,0,"""Asia""" +2024-08-23,15423,8999,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",344.08,{},115842,0,"""North America""" +2023-10-18,15424,1202,"[\""Headphones\"", \""Phone\""]",3381.85,"{\""promo\"": \""15%\""}",162232,1,"""Europe""" +2023-11-07,15425,3102,"[\""Wireless Mouse\""]",2836.47,"{\""loyalty\"": \""25%\""}",128821,1,"""Europe""" +2023-03-20,15426,4974,"[\""Charger\""]",3863.22,{},118358,0,"""Africa""" +2023-09-24,15427,3169,"[\""Wireless Mouse\"", \""Tablet\""]",4654.12,"{\""promo\"": \""30%\""}",266910,0,"""Asia""" +2024-02-18,15428,4345,"[\""Tablet\"", \""Headphones\""]",3977.84,"{\""promo\"": \""8%\""}",286271,1,"""South America""" +2023-02-10,15429,4166,"[\""Keyboard\"", \""Headphones\""]",3080.0,{},57466,0,"""Africa""" +2023-03-03,15430,5231,"[\""Wireless Mouse\""]",3558.58,"{\"": \""8%\""}",248260,0,"""North America""" +2023-11-12,15431,4615,"[\""Keyboard\"", \""Tablet\""]",3243.57,{},30466,0,"""South America""" +2023-10-26,15432,2687,"[\""Tablet\""]",1363.19,{},168253,1,"""Africa""" +2023-12-19,15433,5591,"[\""Phone\""]",1865.36,"{\""promo\"": \""30%\""}",208209,1,"""North America""" +2024-03-04,15434,4838,"[\""Charger\"", \""Laptop\""]",1365.94,"{\""promo\"": \""16%\""}",19166,1,"""North America""" +2024-12-05,15435,6043,"[\""Charger\""]",1136.46,{},129744,1,"""South America""" +2024-01-18,15436,3839,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2218.58,"{\""promo\"": \""5%\""}",19063,1,"""Europe""" +2023-08-15,15437,1710,"[\""Headphones\""]",3254.15,{},211058,1,"""Asia""" +2024-02-10,15438,1148,"[\""Phone\"", \""Wireless Mouse\""]",2924.49,{},148799,0,"""Europe""" +2023-02-16,15439,9031,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3056.05,"{\""promo\"": \""12%\""}",118244,1,"""Europe""" +2023-04-29,15440,6155,"[\""Monitor\"", \""Tablet\""]",4845.94,"{\""promo\"": \""10%\""}",137596,1,"""Europe""" +2023-10-05,15441,8392,"[\""Laptop\""]",2851.16,"{\""seasonal\"": \""23%\""}",139456,1,"""Europe""" +2023-09-23,15442,6154,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4817.96,{},6382,1,"""North America""" +2023-09-13,15443,2978,"[\""Wireless Mouse\"", \""Tablet\""]",3911.59,"{\""promo\"": \""25%\""}",218036,1,"""North America""" +2024-02-04,15444,1501,"[\""Charger\"", \""Tablet\""]",3312.7,"{\""loyalty\"": \""13%\""}",142620,1,"""South America""" +2023-01-21,15445,5782,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1068.91,{},66634,1,"""Europe""" +2024-01-22,15446,6659,"[\""Headphones\""]",458.81,{},178749,0,"""Africa""" +2024-05-16,15447,1545,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2812.69,{},162822,1,"""South America""" +2023-03-27,15448,3607,"[\""Laptop\"", \""Charger\""]",1121.43,"{\""loyalty\"": \""11%\""}",275634,0,"""Europe""" +2024-10-09,15449,2440,"[\""Tablet\""]",2923.93,"{\""seasonal\"": \""18%\""}",255448,0,"""Europe""" +2023-05-11,15450,7481,"[\""Monitor\""]",1137.64,{},125690,1,"""Europe""" +2024-09-07,15451,1769,"[\""Monitor\""]",4208.42,"{\""seasonal\"": \""12%\""}",217684,0,"""Europe""" +2024-04-14,15452,5271,"[\""Wireless Mouse\""]",4757.41,{},16259,1,"""North America""" +2023-12-18,15453,6205,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3700.95,{},139189,0,"""Africa""" +2023-10-11,15454,3460,"[\""Phone\""]",58.7,{},203656,0,"""Europe""" +2023-02-19,15455,9550,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4961.22,{},264696,1,"""Asia""" +2024-04-23,15456,8845,"[\""Charger\"", \""Laptop\""]",797.48,"{\""seasonal\"": \""24%\""}",299855,0,"""South America""" +2023-11-04,15457,7018,"[\""Charger\"", \""Wireless Mouse\""]",200.51,"{\""loyalty\"": \""30%\""}",164769,1,"""Asia""" +2023-02-06,15458,5266,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",692.35,{},188172,1,"""Europe""" +2023-12-27,15459,8630,"[\""Laptop\"", \""Phone\""]",4984.37,{},85919,1,"""Africa""" +2024-11-13,15460,6358,"[\""Headphones\"", \""Keyboard\""]",1133.53,"{\"": \""20%\""}",187735,0,"""North America""" +2023-09-17,15461,6189,"[\""Headphones\""]",3567.54,"{\""promo\"": \""23%\""}",262360,0,"""South America""" +2023-02-22,15462,2198,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4999.77,{},12835,1,"""Africa""" +2023-09-27,15463,470,"[\""Laptop\""]",3582.4,{},26920,1,"""Africa""" +2024-01-12,15464,6016,"[\""Tablet\"", \""Laptop\""]",4139.63,"{\"": \""18%\""}",13856,1,"""North America""" +2024-10-19,15465,4709,"[\""Laptop\""]",1089.22,"{\"": \""19%\""}",285336,0,"""Asia""" +2024-03-03,15466,1449,"[\""Phone\""]",4301.44,{},273153,1,"""Africa""" +2023-11-20,15467,7697,"[\""Tablet\""]",2272.93,{},69329,1,"""Asia""" +2023-06-30,15468,8873,"[\""Monitor\"", \""Phone\""]",3962.27,{},276645,1,"""Europe""" +2023-05-29,15469,2787,"[\""Keyboard\""]",2261.71,{},114797,0,"""North America""" +2024-06-24,15470,9052,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1196.66,"{\""promo\"": \""24%\""}",38979,0,"""North America""" +2023-06-27,15471,9521,"[\""Wireless Mouse\""]",1961.57,"{\"": \""10%\""}",43990,0,"""South America""" +2023-06-29,15472,93,"[\""Keyboard\"", \""Tablet\""]",1295.83,"{\""promo\"": \""26%\""}",219394,0,"""Asia""" +2024-11-13,15473,3478,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4330.27,"{\"": \""22%\""}",80821,0,"""South America""" +2024-04-15,15474,5418,"[\""Phone\"", \""Tablet\""]",432.59,"{\"": \""25%\""}",221533,1,"""Africa""" +2024-11-26,15475,6434,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1480.35,"{\"": \""23%\""}",281462,0,"""South America""" +2024-08-10,15476,7434,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",657.39,{},64702,0,"""Europe""" +2023-04-15,15477,8480,"[\""Phone\""]",4098.47,"{\"": \""9%\""}",269095,0,"""Asia""" +2024-04-24,15478,8035,"[\""Headphones\""]",3122.86,{},167713,1,"""South America""" +2023-06-03,15479,2161,"[\""Keyboard\"", \""Charger\""]",4180.2,{},225117,1,"""Europe""" +2024-12-25,15480,7467,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1253.97,"{\"": \""25%\""}",65289,0,"""Europe""" +2023-07-28,15481,7863,"[\""Monitor\""]",4002.81,{},98605,1,"""Europe""" +2024-10-02,15482,8796,"[\""Tablet\""]",1350.05,{},197248,1,"""Asia""" +2023-02-27,15483,8041,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3066.28,{},73202,0,"""South America""" +2023-08-23,15484,5165,"[\""Headphones\"", \""Phone\"", \""Charger\""]",283.75,"{\""loyalty\"": \""23%\""}",210676,1,"""Asia""" +2024-05-01,15485,2454,"[\""Laptop\"", \""Monitor\""]",2956.03,{},6989,1,"""Asia""" +2023-06-17,15486,7642,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4884.96,"{\""promo\"": \""30%\""}",46924,0,"""Asia""" +2023-11-27,15487,9344,"[\""Headphones\"", \""Phone\""]",3072.7,"{\""seasonal\"": \""18%\""}",248573,0,"""Asia""" +2024-10-29,15488,6855,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4484.36,{},58002,1,"""Africa""" +2024-07-17,15489,9737,"[\""Monitor\""]",845.75,{},166217,0,"""Africa""" +2023-07-19,15490,1030,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4674.26,{},298161,0,"""Asia""" +2024-01-22,15491,4752,"[\""Keyboard\""]",4456.49,"{\""promo\"": \""5%\""}",125523,0,"""Asia""" +2024-12-07,15492,8859,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3687.93,"{\""loyalty\"": \""8%\""}",220331,0,"""South America""" +2024-03-21,15493,3088,"[\""Tablet\""]",3614.48,{},156436,0,"""Africa""" +2023-10-08,15494,270,"[\""Charger\"", \""Headphones\""]",4462.31,{},34615,0,"""South America""" +2023-11-26,15495,6442,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2540.45,{},247797,1,"""Africa""" +2023-06-07,15496,4489,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3892.0,"{\""promo\"": \""26%\""}",178810,1,"""South America""" +2023-02-21,15497,8492,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2148.62,{},267279,1,"""Africa""" +2023-10-19,15498,2194,"[\""Monitor\""]",3034.73,"{\""promo\"": \""29%\""}",210809,0,"""South America""" +2024-09-04,15499,6984,"[\""Charger\""]",3810.46,{},53401,0,"""Asia""" +2024-04-11,15500,874,"[\""Keyboard\"", \""Headphones\""]",3381.53,{},13613,0,"""North America""" +2024-03-31,15501,105,"[\""Monitor\"", \""Headphones\""]",3313.46,"{\""loyalty\"": \""23%\""}",243553,0,"""Asia""" +2024-09-30,15502,3587,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4626.5,"{\""promo\"": \""8%\""}",299944,0,"""Africa""" +2023-01-31,15503,7878,"[\""Monitor\"", \""Laptop\""]",1061.03,{},209848,0,"""Europe""" +2024-07-06,15504,739,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3045.79,"{\""promo\"": \""9%\""}",156575,0,"""Africa""" +2024-06-30,15505,1926,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3299.88,{},179137,0,"""Europe""" +2023-08-28,15506,9505,"[\""Wireless Mouse\"", \""Monitor\""]",1338.77,"{\""promo\"": \""16%\""}",268400,1,"""Europe""" +2023-06-17,15507,8191,"[\""Keyboard\"", \""Charger\""]",4478.62,{},288467,1,"""Asia""" +2024-04-05,15508,2384,"[\""Headphones\"", \""Tablet\""]",4515.63,"{\""loyalty\"": \""26%\""}",258822,1,"""North America""" +2024-06-08,15509,5471,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4012.8,"{\""seasonal\"": \""29%\""}",288706,0,"""Africa""" +2023-01-17,15510,2538,"[\""Laptop\"", \""Charger\""]",4699.66,"{\""promo\"": \""24%\""}",103695,0,"""North America""" +2023-01-24,15511,4337,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",835.02,{},243447,0,"""South America""" +2024-12-09,15512,6848,"[\""Tablet\"", \""Keyboard\""]",2824.0,{},287164,1,"""Africa""" +2024-10-02,15513,8149,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1670.28,"{\"": \""11%\""}",39030,0,"""Africa""" +2024-03-09,15514,5668,"[\""Wireless Mouse\""]",4949.14,"{\"": \""15%\""}",17980,0,"""Africa""" +2024-02-21,15515,8256,"[\""Wireless Mouse\""]",1948.03,"{\""promo\"": \""10%\""}",36412,1,"""Europe""" +2023-05-30,15516,2479,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4046.74,{},166114,0,"""Africa""" +2024-02-03,15517,9447,"[\""Monitor\"", \""Phone\""]",3584.61,"{\""loyalty\"": \""18%\""}",273995,0,"""Asia""" +2024-07-05,15518,6505,"[\""Laptop\"", \""Phone\""]",1631.3,"{\""seasonal\"": \""9%\""}",115617,0,"""Europe""" +2024-04-03,15519,9462,"[\""Monitor\""]",3001.7,"{\"": \""12%\""}",256575,0,"""Asia""" +2023-07-07,15520,9100,"[\""Monitor\""]",3292.75,"{\""loyalty\"": \""28%\""}",293209,1,"""Africa""" +2024-10-12,15521,2519,"[\""Monitor\""]",4489.81,"{\"": \""6%\""}",245130,0,"""Africa""" +2024-07-22,15522,451,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2086.72,{},202304,0,"""North America""" +2024-09-24,15523,9906,"[\""Tablet\"", \""Headphones\""]",1190.94,"{\"": \""28%\""}",104121,0,"""North America""" +2023-12-16,15524,4173,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4204.5,"{\""loyalty\"": \""22%\""}",59402,1,"""South America""" +2024-02-16,15525,5281,"[\""Laptop\"", \""Keyboard\""]",1867.21,{},63427,1,"""Africa""" +2023-03-23,15526,3254,"[\""Laptop\""]",1914.35,{},29126,0,"""Asia""" +2023-10-23,15527,3555,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4104.96,"{\""loyalty\"": \""7%\""}",60587,1,"""Asia""" +2024-04-21,15528,6858,"[\""Headphones\"", \""Tablet\""]",1405.53,{},99895,1,"""Africa""" +2023-04-23,15529,6034,"[\""Monitor\"", \""Laptop\""]",2339.39,"{\""loyalty\"": \""14%\""}",257113,1,"""South America""" +2024-09-10,15530,6025,"[\""Laptop\"", \""Phone\""]",1173.74,{},69580,0,"""Asia""" +2024-01-31,15531,9845,"[\""Keyboard\""]",347.56,"{\"": \""25%\""}",104493,0,"""North America""" +2024-05-01,15532,4274,"[\""Wireless Mouse\""]",1849.03,"{\""loyalty\"": \""20%\""}",236770,1,"""Asia""" +2023-12-04,15533,5520,"[\""Tablet\"", \""Laptop\""]",1319.01,"{\""seasonal\"": \""8%\""}",4463,1,"""Europe""" +2024-09-12,15534,2317,"[\""Monitor\""]",457.71,{},127676,1,"""Europe""" +2023-09-07,15535,8209,"[\""Monitor\""]",3374.92,{},243399,0,"""South America""" +2023-05-15,15536,5143,"[\""Wireless Mouse\""]",4236.87,"{\""promo\"": \""7%\""}",43046,1,"""South America""" +2023-02-17,15537,8593,"[\""Keyboard\"", \""Phone\""]",2804.42,"{\""promo\"": \""20%\""}",114463,1,"""Africa""" +2024-08-06,15538,8450,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1112.96,"{\""loyalty\"": \""18%\""}",165980,1,"""Africa""" +2024-01-19,15539,9543,"[\""Wireless Mouse\"", \""Monitor\""]",4807.67,{},183160,1,"""Africa""" +2024-03-26,15540,6377,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1555.4,{},170442,0,"""South America""" +2023-06-08,15541,3227,"[\""Wireless Mouse\""]",4136.03,"{\""seasonal\"": \""17%\""}",5232,1,"""South America""" +2023-10-10,15542,2193,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1828.18,{},124083,1,"""North America""" +2023-09-06,15543,5536,"[\""Headphones\""]",571.0,{},201968,1,"""Africa""" +2024-09-23,15544,6079,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1235.08,"{\""promo\"": \""28%\""}",268552,0,"""North America""" +2023-06-18,15545,1708,"[\""Keyboard\""]",4173.51,"{\""loyalty\"": \""26%\""}",297431,1,"""Africa""" +2023-09-17,15546,246,"[\""Charger\""]",1687.72,"{\""seasonal\"": \""13%\""}",247822,0,"""Asia""" +2023-03-27,15547,4364,"[\""Charger\""]",593.04,{},258831,1,"""South America""" +2023-07-28,15548,5201,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",687.12,"{\""seasonal\"": \""7%\""}",221228,0,"""Africa""" +2024-06-22,15549,7228,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3817.8,"{\""seasonal\"": \""30%\""}",6633,1,"""South America""" +2024-10-16,15550,7922,"[\""Wireless Mouse\"", \""Tablet\""]",1139.27,{},175788,0,"""Asia""" +2024-08-29,15551,3004,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2256.1,"{\""promo\"": \""21%\""}",291585,0,"""South America""" +2023-05-01,15552,7196,"[\""Monitor\"", \""Phone\""]",1872.28,"{\""loyalty\"": \""9%\""}",209149,0,"""Africa""" +2024-01-03,15553,7595,"[\""Phone\"", \""Monitor\""]",3022.48,{},246712,1,"""Asia""" +2024-06-01,15554,9064,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1204.8,"{\"": \""5%\""}",55652,1,"""Africa""" +2023-03-19,15555,3137,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1229.67,{},136129,0,"""Africa""" +2023-11-07,15556,1516,"[\""Tablet\""]",4289.81,{},108496,0,"""North America""" +2024-06-28,15557,5248,"[\""Wireless Mouse\"", \""Charger\""]",3890.11,{},166730,0,"""Europe""" +2023-10-27,15558,7556,"[\""Headphones\""]",345.81,"{\""promo\"": \""15%\""}",80978,1,"""Africa""" +2024-05-25,15559,2080,"[\""Monitor\""]",430.2,"{\"": \""18%\""}",63538,0,"""Asia""" +2023-05-30,15560,3719,"[\""Headphones\"", \""Charger\""]",2799.82,{},214812,0,"""Africa""" +2023-12-26,15561,1080,"[\""Phone\"", \""Wireless Mouse\""]",829.08,{},294133,0,"""South America""" +2024-09-03,15562,360,"[\""Monitor\""]",3192.53,"{\""loyalty\"": \""23%\""}",28345,1,"""North America""" +2023-07-29,15563,8505,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3199.29,"{\""loyalty\"": \""10%\""}",6229,1,"""Asia""" +2024-12-14,15564,5173,"[\""Charger\"", \""Tablet\""]",1585.2,"{\""promo\"": \""9%\""}",299352,0,"""Asia""" +2024-05-21,15565,8362,"[\""Phone\"", \""Wireless Mouse\""]",2776.28,"{\""seasonal\"": \""30%\""}",149929,1,"""Africa""" +2024-10-01,15566,1711,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",623.97,"{\""seasonal\"": \""9%\""}",278039,1,"""Europe""" +2024-02-07,15567,9150,"[\""Laptop\"", \""Wireless Mouse\""]",2613.82,{},276456,0,"""North America""" +2023-08-25,15568,3362,"[\""Wireless Mouse\"", \""Headphones\""]",3913.02,{},147791,0,"""Africa""" +2023-06-11,15569,9132,"[\""Monitor\""]",1445.22,"{\""seasonal\"": \""5%\""}",266912,0,"""South America""" +2024-02-21,15570,3362,"[\""Tablet\"", \""Charger\""]",4901.82,"{\""promo\"": \""18%\""}",71900,0,"""Africa""" +2024-08-26,15571,5639,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4620.28,{},102404,1,"""Africa""" +2024-06-20,15572,3466,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3681.19,"{\""promo\"": \""21%\""}",247565,1,"""North America""" +2024-08-19,15573,4856,"[\""Headphones\""]",3921.68,{},12530,1,"""Asia""" +2024-01-09,15574,1557,"[\""Keyboard\"", \""Phone\""]",1749.23,"{\""loyalty\"": \""17%\""}",205510,0,"""South America""" +2024-05-29,15575,1031,"[\""Monitor\"", \""Charger\""]",4422.5,"{\""promo\"": \""30%\""}",294922,1,"""North America""" +2023-03-12,15576,8454,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4019.21,{},58996,0,"""Africa""" +2023-02-21,15577,5782,"[\""Headphones\"", \""Phone\""]",3371.06,"{\""seasonal\"": \""5%\""}",179756,0,"""South America""" +2023-06-20,15578,5770,"[\""Laptop\"", \""Monitor\""]",1003.21,"{\""loyalty\"": \""14%\""}",53851,0,"""Europe""" +2023-02-01,15579,5796,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",288.43,"{\"": \""9%\""}",220223,0,"""North America""" +2024-04-06,15580,4534,"[\""Phone\"", \""Monitor\""]",1055.31,{},245518,0,"""Europe""" +2024-07-02,15581,4632,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",707.8,{},259052,1,"""South America""" +2024-12-17,15582,1156,"[\""Headphones\""]",1985.16,{},58453,0,"""North America""" +2023-04-24,15583,3807,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4519.38,{},245176,0,"""Africa""" +2024-11-10,15584,1899,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2215.57,"{\""promo\"": \""18%\""}",90104,1,"""Asia""" +2023-12-07,15585,2498,"[\""Laptop\"", \""Monitor\""]",2043.41,"{\"": \""9%\""}",57426,1,"""North America""" +2024-09-21,15586,2247,"[\""Charger\"", \""Phone\""]",1493.27,{},192680,0,"""Asia""" +2024-05-26,15587,1753,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1651.93,"{\""promo\"": \""10%\""}",56204,0,"""Europe""" +2024-11-21,15588,2195,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",440.2,{},10593,1,"""Africa""" +2023-12-27,15589,95,"[\""Headphones\"", \""Laptop\""]",2448.15,{},125753,0,"""Asia""" +2024-02-09,15590,4,"[\""Monitor\"", \""Keyboard\""]",3310.29,"{\""promo\"": \""5%\""}",188269,0,"""Asia""" +2024-05-26,15591,8307,"[\""Keyboard\""]",2464.09,{},152146,0,"""Europe""" +2023-04-08,15592,214,"[\""Laptop\""]",4615.58,{},122255,0,"""Asia""" +2024-06-13,15593,2851,"[\""Headphones\"", \""Tablet\""]",4110.45,{},280982,0,"""North America""" +2023-05-13,15594,6596,"[\""Charger\""]",3222.26,{},73807,1,"""South America""" +2024-08-08,15595,6030,"[\""Headphones\"", \""Charger\""]",1188.83,{},15720,0,"""Africa""" +2023-08-15,15596,8133,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",169.17,"{\"": \""30%\""}",129535,0,"""Africa""" +2024-03-10,15597,1865,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2510.24,"{\""promo\"": \""9%\""}",291424,1,"""Africa""" +2024-01-19,15598,1625,"[\""Monitor\"", \""Headphones\""]",231.15,{},20584,0,"""Europe""" +2023-10-16,15599,4298,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3944.04,"{\""promo\"": \""17%\""}",119381,1,"""Africa""" +2024-10-08,15600,7541,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3081.49,{},208581,1,"""Asia""" +2024-02-19,15601,1370,"[\""Headphones\"", \""Phone\""]",3542.44,"{\""promo\"": \""9%\""}",239977,0,"""North America""" +2023-07-02,15602,7128,"[\""Headphones\"", \""Keyboard\""]",222.04,{},95904,0,"""South America""" +2024-07-23,15603,3168,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4778.36,"{\""loyalty\"": \""5%\""}",267496,0,"""Europe""" +2023-03-12,15604,6678,"[\""Wireless Mouse\"", \""Headphones\""]",1835.58,{},19275,0,"""Asia""" +2024-05-26,15605,5413,"[\""Charger\"", \""Wireless Mouse\""]",1480.14,{},92519,0,"""Europe""" +2024-08-18,15606,8669,"[\""Headphones\""]",786.03,"{\""loyalty\"": \""28%\""}",177237,1,"""Asia""" +2023-06-14,15607,7382,"[\""Laptop\"", \""Tablet\""]",3096.5,{},283091,0,"""Asia""" +2023-09-25,15608,7761,"[\""Tablet\"", \""Phone\""]",3501.23,"{\""seasonal\"": \""9%\""}",119367,0,"""Europe""" +2023-03-01,15609,4450,"[\""Keyboard\""]",4201.6,{},111261,0,"""Europe""" +2023-04-20,15610,7443,"[\""Laptop\""]",3378.76,"{\""promo\"": \""25%\""}",286719,0,"""South America""" +2023-06-05,15611,3107,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2812.88,{},270493,1,"""North America""" +2024-10-24,15612,1289,"[\""Laptop\"", \""Phone\""]",478.83,"{\""seasonal\"": \""10%\""}",109107,0,"""North America""" +2024-07-01,15613,5544,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3974.95,"{\""promo\"": \""17%\""}",95435,1,"""South America""" +2023-06-08,15614,5882,"[\""Headphones\"", \""Wireless Mouse\""]",4012.61,{},192012,1,"""Asia""" +2024-12-26,15615,3080,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",629.87,{},272169,1,"""Asia""" +2023-02-17,15616,851,"[\""Tablet\""]",3498.1,{},170127,0,"""South America""" +2024-05-10,15617,4960,"[\""Headphones\""]",693.29,"{\""loyalty\"": \""30%\""}",81005,1,"""North America""" +2024-11-30,15618,3868,"[\""Keyboard\""]",2659.55,{},143825,1,"""Africa""" +2023-09-30,15619,86,"[\""Wireless Mouse\"", \""Charger\""]",3468.49,{},122539,1,"""Africa""" +2024-11-06,15620,9269,"[\""Phone\""]",1034.58,"{\""loyalty\"": \""13%\""}",26039,0,"""Africa""" +2023-09-28,15621,344,"[\""Charger\""]",1271.95,{},133143,0,"""North America""" +2023-11-26,15622,6983,"[\""Phone\""]",1326.67,"{\"": \""21%\""}",162258,0,"""Europe""" +2023-08-25,15623,6694,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2804.04,"{\"": \""9%\""}",264609,1,"""South America""" +2024-01-22,15624,6812,"[\""Keyboard\"", \""Monitor\""]",4332.58,"{\""loyalty\"": \""10%\""}",290153,1,"""Africa""" +2023-11-14,15625,2237,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2065.11,"{\""promo\"": \""23%\""}",200537,0,"""Europe""" +2023-05-24,15626,9113,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3437.12,"{\""seasonal\"": \""18%\""}",99899,1,"""Africa""" +2024-02-03,15627,3900,"[\""Tablet\""]",2895.08,"{\""seasonal\"": \""8%\""}",164715,1,"""South America""" +2023-02-02,15628,9239,"[\""Laptop\"", \""Tablet\""]",4063.41,"{\""promo\"": \""29%\""}",45315,0,"""North America""" +2023-09-03,15629,960,"[\""Laptop\""]",1668.32,"{\""seasonal\"": \""8%\""}",4025,0,"""Asia""" +2023-08-09,15630,2038,"[\""Laptop\""]",1572.11,{},61632,0,"""Africa""" +2024-02-29,15631,4267,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2081.35,{},81264,0,"""Asia""" +2024-04-16,15632,5686,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4534.08,"{\""promo\"": \""6%\""}",139123,0,"""North America""" +2023-09-26,15633,4613,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4319.55,"{\"": \""27%\""}",1480,0,"""South America""" +2023-07-03,15634,7251,"[\""Charger\""]",4127.0,"{\""promo\"": \""14%\""}",268538,1,"""Asia""" +2023-01-18,15635,5274,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3715.85,{},275279,0,"""North America""" +2024-11-30,15636,2530,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2646.74,"{\""promo\"": \""17%\""}",105856,1,"""Africa""" +2023-03-22,15637,3117,"[\""Keyboard\"", \""Charger\""]",1631.71,{},63518,1,"""South America""" +2024-01-20,15638,1761,"[\""Tablet\""]",3736.53,{},275749,1,"""Europe""" +2024-05-17,15639,5864,"[\""Tablet\"", \""Monitor\""]",1454.74,{},240716,1,"""Africa""" +2023-04-04,15640,4598,"[\""Tablet\""]",2643.41,{},225298,1,"""Asia""" +2023-09-29,15641,4359,"[\""Charger\""]",3095.16,{},97029,0,"""Africa""" +2023-09-10,15642,4048,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2817.77,"{\""seasonal\"": \""27%\""}",185292,1,"""Asia""" +2023-12-30,15643,435,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3083.0,"{\""promo\"": \""19%\""}",44580,1,"""South America""" +2023-03-28,15644,9808,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4216.01,"{\"": \""17%\""}",290279,1,"""Africa""" +2023-04-14,15645,8337,"[\""Tablet\""]",843.16,{},125636,1,"""North America""" +2024-09-05,15646,9858,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",613.36,{},56811,0,"""Africa""" +2024-06-02,15647,9897,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3476.1,"{\""promo\"": \""8%\""}",64564,0,"""Africa""" +2023-06-08,15648,1402,"[\""Tablet\"", \""Laptop\""]",1490.93,"{\""promo\"": \""22%\""}",186111,0,"""South America""" +2024-05-31,15649,4796,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3047.73,{},17929,0,"""Europe""" +2024-01-25,15650,8876,"[\""Keyboard\"", \""Laptop\""]",113.65,"{\""loyalty\"": \""5%\""}",283175,1,"""Asia""" +2023-09-02,15651,7759,"[\""Tablet\"", \""Phone\""]",1913.76,"{\"": \""11%\""}",212091,0,"""Africa""" +2023-08-14,15652,6839,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2745.28,{},156263,1,"""Asia""" +2023-07-02,15653,1229,"[\""Wireless Mouse\"", \""Keyboard\""]",1463.21,"{\""loyalty\"": \""15%\""}",271667,0,"""North America""" +2023-09-22,15654,2401,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2308.04,{},249961,0,"""Europe""" +2024-11-28,15655,8072,"[\""Laptop\""]",261.83,"{\""loyalty\"": \""25%\""}",278443,0,"""South America""" +2024-11-21,15656,4844,"[\""Phone\""]",3027.33,"{\""loyalty\"": \""27%\""}",287720,1,"""Asia""" +2024-08-19,15657,4114,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",68.24,"{\""seasonal\"": \""14%\""}",139809,1,"""North America""" +2023-05-21,15658,1965,"[\""Laptop\"", \""Headphones\""]",1954.08,"{\""promo\"": \""17%\""}",172721,1,"""Europe""" +2023-03-25,15659,1455,"[\""Monitor\"", \""Charger\""]",1325.99,{},267080,1,"""Africa""" +2023-06-14,15660,7609,"[\""Tablet\""]",1765.45,{},188297,0,"""Europe""" +2024-01-01,15661,2777,"[\""Monitor\"", \""Headphones\""]",4774.7,"{\""seasonal\"": \""9%\""}",191016,0,"""North America""" +2023-12-22,15662,2977,"[\""Laptop\""]",477.95,"{\""promo\"": \""6%\""}",260347,0,"""Asia""" +2024-08-02,15663,4152,"[\""Tablet\""]",2319.88,{},75163,1,"""North America""" +2023-08-12,15664,5433,"[\""Phone\""]",1128.29,"{\""seasonal\"": \""16%\""}",18056,0,"""Africa""" +2023-01-14,15665,7454,"[\""Tablet\""]",2651.2,"{\""promo\"": \""9%\""}",246541,0,"""North America""" +2023-01-19,15666,9290,"[\""Phone\""]",4213.93,{},231403,1,"""Africa""" +2023-04-13,15667,6329,"[\""Tablet\"", \""Phone\""]",1884.92,{},131925,1,"""Europe""" +2023-11-26,15668,7884,"[\""Headphones\"", \""Laptop\""]",595.15,"{\""loyalty\"": \""15%\""}",130304,0,"""North America""" +2023-01-17,15669,6600,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",765.08,"{\"": \""7%\""}",259478,0,"""Africa""" +2024-06-08,15670,5365,"[\""Charger\"", \""Wireless Mouse\""]",1958.33,"{\""seasonal\"": \""19%\""}",47434,1,"""Europe""" +2023-09-10,15671,5050,"[\""Keyboard\"", \""Charger\""]",4133.69,"{\"": \""18%\""}",120301,1,"""Europe""" +2023-07-07,15672,6955,"[\""Charger\"", \""Wireless Mouse\""]",1803.8,"{\""seasonal\"": \""29%\""}",198039,1,"""Asia""" +2024-05-25,15673,4595,"[\""Laptop\""]",4384.59,{},91905,0,"""Africa""" +2024-07-22,15674,8402,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",732.52,{},95281,1,"""North America""" +2024-11-03,15675,1010,"[\""Phone\""]",3016.8,{},123215,0,"""South America""" +2023-11-13,15676,7866,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3569.75,"{\""loyalty\"": \""22%\""}",174982,1,"""Asia""" +2023-06-13,15677,4741,"[\""Tablet\""]",4120.41,"{\""promo\"": \""15%\""}",9672,1,"""South America""" +2023-10-28,15678,1268,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1987.74,"{\"": \""20%\""}",21608,1,"""Africa""" +2023-05-27,15679,7879,"[\""Tablet\""]",2530.77,"{\"": \""10%\""}",164160,0,"""South America""" +2024-08-03,15680,311,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2123.0,"{\""promo\"": \""13%\""}",170226,1,"""South America""" +2023-03-23,15681,4470,"[\""Wireless Mouse\""]",2973.18,{},144415,1,"""Europe""" +2023-11-20,15682,4314,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3039.62,{},54634,1,"""Europe""" +2024-07-24,15683,3485,"[\""Keyboard\"", \""Phone\""]",1817.99,"{\""promo\"": \""17%\""}",248982,0,"""Asia""" +2024-12-06,15684,1515,"[\""Monitor\"", \""Wireless Mouse\""]",3110.44,"{\""seasonal\"": \""14%\""}",191886,1,"""Africa""" +2023-12-27,15685,9276,"[\""Tablet\"", \""Phone\""]",3195.26,{},210968,1,"""Europe""" +2023-10-01,15686,2906,"[\""Phone\"", \""Charger\""]",2481.74,"{\""loyalty\"": \""21%\""}",73845,0,"""South America""" +2024-12-28,15687,771,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2819.8,"{\""loyalty\"": \""27%\""}",170489,0,"""Asia""" +2024-12-14,15688,2167,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2757.8,{},24586,0,"""Asia""" +2024-06-15,15689,3145,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2635.97,{},193251,1,"""Africa""" +2024-11-12,15690,7035,"[\""Charger\""]",3805.59,"{\""loyalty\"": \""27%\""}",57101,0,"""Europe""" +2024-05-20,15691,2219,"[\""Headphones\""]",483.67,"{\""loyalty\"": \""16%\""}",208337,0,"""Europe""" +2023-11-28,15692,7179,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",215.78,"{\""promo\"": \""20%\""}",224760,0,"""Africa""" +2024-11-28,15693,914,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",214.34,{},254339,1,"""Asia""" +2024-06-28,15694,4956,"[\""Wireless Mouse\"", \""Tablet\""]",970.12,{},148333,0,"""South America""" +2023-07-10,15695,1393,"[\""Charger\"", \""Headphones\""]",2021.13,"{\""promo\"": \""6%\""}",264285,1,"""Africa""" +2023-07-02,15696,4808,"[\""Wireless Mouse\""]",579.82,"{\"": \""26%\""}",280139,0,"""North America""" +2024-09-16,15697,1637,"[\""Wireless Mouse\""]",615.26,{},181558,0,"""South America""" +2024-04-21,15698,3504,"[\""Headphones\"", \""Phone\""]",242.42,"{\""loyalty\"": \""16%\""}",205727,0,"""North America""" +2024-06-11,15699,6033,"[\""Wireless Mouse\""]",4246.58,{},21389,1,"""Europe""" +2024-04-19,15700,4727,"[\""Keyboard\""]",2986.62,{},278743,1,"""Africa""" +2023-02-20,15701,8953,"[\""Charger\"", \""Wireless Mouse\""]",1462.66,"{\""promo\"": \""22%\""}",123539,1,"""Europe""" +2024-02-08,15702,6714,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3354.2,{},120595,0,"""Europe""" +2023-03-17,15703,5624,"[\""Headphones\"", \""Monitor\""]",700.83,{},290590,0,"""South America""" +2024-08-14,15704,5138,"[\""Wireless Mouse\"", \""Charger\""]",4216.7,"{\""loyalty\"": \""23%\""}",50732,0,"""Asia""" +2023-02-16,15705,2365,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1600.53,{},183635,1,"""South America""" +2023-11-24,15706,7929,"[\""Tablet\"", \""Headphones\""]",1843.55,{},9091,0,"""South America""" +2023-02-01,15707,5909,"[\""Monitor\""]",1892.25,{},82651,1,"""Africa""" +2023-10-30,15708,591,"[\""Headphones\"", \""Laptop\""]",104.09,{},1255,0,"""South America""" +2024-09-24,15709,1234,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1677.34,{},150314,1,"""North America""" +2023-05-17,15710,5895,"[\""Charger\"", \""Phone\""]",3575.25,{},3616,0,"""Asia""" +2023-12-10,15711,7091,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",769.12,{},12154,0,"""Africa""" +2024-11-07,15712,6198,"[\""Tablet\""]",1065.96,"{\""promo\"": \""20%\""}",184454,0,"""Europe""" +2023-02-17,15713,8459,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",604.85,"{\""seasonal\"": \""18%\""}",115857,1,"""North America""" +2023-07-14,15714,1297,"[\""Phone\"", \""Laptop\""]",682.4,{},120065,1,"""North America""" +2023-08-17,15715,4087,"[\""Keyboard\""]",1004.25,{},181961,1,"""Asia""" +2023-03-29,15716,3914,"[\""Phone\"", \""Wireless Mouse\""]",3778.15,{},265231,0,"""South America""" +2023-06-09,15717,3341,"[\""Phone\"", \""Keyboard\""]",2321.96,{},184403,1,"""Africa""" +2024-11-12,15718,6169,"[\""Monitor\"", \""Charger\""]",3695.8,"{\"": \""21%\""}",242660,0,"""Asia""" +2024-03-15,15719,807,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",628.65,{},190017,1,"""Asia""" +2023-02-19,15720,9511,"[\""Charger\""]",1948.01,"{\""seasonal\"": \""27%\""}",25298,1,"""Asia""" +2023-11-16,15721,3337,"[\""Wireless Mouse\""]",272.8,{},220578,0,"""Africa""" +2024-01-28,15722,1639,"[\""Headphones\"", \""Charger\""]",3365.28,{},1685,0,"""Africa""" +2024-12-22,15723,3704,"[\""Monitor\""]",2562.39,"{\""seasonal\"": \""23%\""}",44371,1,"""Europe""" +2024-02-17,15724,3727,"[\""Wireless Mouse\"", \""Keyboard\""]",3357.42,{},258005,0,"""South America""" +2024-05-28,15725,777,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4434.72,"{\""promo\"": \""18%\""}",144105,0,"""Africa""" +2023-12-31,15726,4146,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2529.13,"{\"": \""21%\""}",212396,1,"""Europe""" +2024-08-23,15727,4886,"[\""Charger\""]",2818.63,{},58558,1,"""South America""" +2023-05-05,15728,8393,"[\""Keyboard\"", \""Tablet\""]",2132.5,{},163696,0,"""South America""" +2023-12-09,15729,7160,"[\""Headphones\""]",775.82,"{\"": \""23%\""}",8104,0,"""Africa""" +2023-10-23,15730,5604,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3804.9,{},106006,1,"""South America""" +2024-04-19,15731,3598,"[\""Keyboard\"", \""Wireless Mouse\""]",2812.76,{},173741,1,"""Africa""" +2024-01-03,15732,3607,"[\""Monitor\"", \""Laptop\""]",4401.6,{},144435,0,"""Africa""" +2023-10-02,15733,8672,"[\""Monitor\""]",1952.91,{},262239,0,"""Europe""" +2023-08-26,15734,249,"[\""Laptop\""]",3194.31,{},25915,0,"""Europe""" +2023-01-31,15735,7899,"[\""Laptop\"", \""Wireless Mouse\""]",3124.1,{},69526,1,"""Africa""" +2023-07-13,15736,6656,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",204.21,{},246935,1,"""Asia""" +2023-06-16,15737,4546,"[\""Charger\"", \""Phone\""]",2892.18,"{\""loyalty\"": \""28%\""}",214448,0,"""North America""" +2024-12-14,15738,5720,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",301.93,"{\""seasonal\"": \""18%\""}",87818,0,"""Africa""" +2024-08-23,15739,8404,"[\""Headphones\""]",4064.93,"{\""loyalty\"": \""9%\""}",103660,0,"""North America""" +2023-12-13,15740,6617,"[\""Phone\""]",4702.34,{},151565,0,"""North America""" +2024-02-02,15741,3978,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3222.88,{},184111,0,"""North America""" +2024-02-19,15742,2890,"[\""Tablet\""]",4058.58,"{\""promo\"": \""14%\""}",240505,1,"""Africa""" +2023-04-03,15743,450,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1036.0,{},3145,0,"""North America""" +2024-05-03,15744,1990,"[\""Keyboard\""]",2831.25,"{\""promo\"": \""30%\""}",133183,0,"""Africa""" +2023-07-23,15745,1143,"[\""Headphones\"", \""Laptop\""]",4090.12,"{\"": \""28%\""}",156193,1,"""South America""" +2024-05-17,15746,7122,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2964.24,{},242102,0,"""North America""" +2024-06-07,15747,7533,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2306.91,{},50780,0,"""North America""" +2023-07-08,15748,6270,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4604.52,{},84564,1,"""Asia""" +2023-07-10,15749,6481,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1972.11,"{\""seasonal\"": \""16%\""}",197395,1,"""Asia""" +2023-05-08,15750,380,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1454.76,{},43306,1,"""Africa""" +2023-11-14,15751,7170,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3782.89,"{\""loyalty\"": \""19%\""}",85331,0,"""Asia""" +2023-01-22,15752,3032,"[\""Keyboard\"", \""Headphones\""]",3714.88,{},161972,1,"""Africa""" +2024-01-19,15753,8424,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2751.4,{},293535,1,"""Asia""" +2023-09-22,15754,2666,"[\""Keyboard\""]",293.4,"{\""promo\"": \""17%\""}",140244,1,"""Asia""" +2023-03-31,15755,5212,"[\""Tablet\""]",1709.84,{},183124,1,"""Europe""" +2023-10-01,15756,2094,"[\""Phone\""]",3321.85,"{\""promo\"": \""26%\""}",254190,1,"""North America""" +2024-10-15,15757,7327,"[\""Charger\"", \""Keyboard\""]",2722.55,{},172785,1,"""Asia""" +2023-01-03,15758,9600,"[\""Wireless Mouse\""]",4213.09,{},207030,0,"""South America""" +2023-10-04,15759,1322,"[\""Keyboard\""]",1304.71,"{\""seasonal\"": \""18%\""}",181908,0,"""Asia""" +2023-04-15,15760,1078,"[\""Charger\"", \""Monitor\""]",4023.61,{},245313,0,"""North America""" +2024-07-09,15761,8277,"[\""Monitor\""]",1432.99,"{\""loyalty\"": \""17%\""}",161103,1,"""Asia""" +2024-05-13,15762,2358,"[\""Keyboard\""]",787.56,{},267793,1,"""North America""" +2024-01-22,15763,5993,"[\""Monitor\"", \""Laptop\""]",3462.05,{},35903,1,"""South America""" +2024-01-07,15764,6249,"[\""Tablet\""]",1258.57,"{\""seasonal\"": \""18%\""}",48146,1,"""Asia""" +2023-05-13,15765,7849,"[\""Wireless Mouse\"", \""Tablet\""]",2248.87,{},245917,1,"""South America""" +2023-08-21,15766,6531,"[\""Charger\""]",1860.32,{},183446,1,"""Asia""" +2024-02-09,15767,6073,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1822.62,"{\"": \""10%\""}",128421,0,"""Africa""" +2023-02-15,15768,1166,"[\""Keyboard\""]",2895.54,{},33934,1,"""Asia""" +2023-05-16,15769,9114,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1398.41,{},37302,0,"""South America""" +2023-09-29,15770,4544,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1748.7,{},104987,1,"""Africa""" +2024-11-12,15771,7305,"[\""Phone\""]",1178.27,{},48633,1,"""Asia""" +2023-07-17,15772,5172,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2172.74,"{\""loyalty\"": \""21%\""}",253939,1,"""Asia""" +2023-11-06,15773,74,"[\""Phone\"", \""Charger\""]",3403.79,{},194853,0,"""Africa""" +2023-01-19,15774,1758,"[\""Tablet\"", \""Monitor\""]",3524.18,"{\""seasonal\"": \""8%\""}",214677,1,"""South America""" +2023-05-05,15775,1746,"[\""Headphones\"", \""Laptop\""]",1820.75,"{\"": \""8%\""}",90696,1,"""Asia""" +2023-08-26,15776,6043,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1164.73,"{\""seasonal\"": \""26%\""}",160062,0,"""Asia""" +2024-04-23,15777,916,"[\""Headphones\"", \""Charger\""]",1825.17,{},251928,0,"""Asia""" +2024-09-15,15778,3316,"[\""Tablet\"", \""Keyboard\""]",163.51,{},58751,1,"""South America""" +2024-04-12,15779,8299,"[\""Charger\""]",4363.14,"{\"": \""29%\""}",11667,0,"""Africa""" +2024-05-27,15780,9469,"[\""Monitor\"", \""Phone\""]",3707.72,"{\""loyalty\"": \""26%\""}",5207,0,"""North America""" +2023-02-25,15781,4880,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3398.65,"{\""promo\"": \""30%\""}",215252,0,"""North America""" +2023-01-23,15782,2639,"[\""Monitor\""]",4603.75,{},199966,1,"""Europe""" +2023-02-19,15783,9655,"[\""Laptop\""]",1478.86,{},143827,1,"""Europe""" +2023-04-21,15784,7516,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4325.29,{},185376,0,"""North America""" +2024-10-15,15785,4737,"[\""Charger\"", \""Phone\""]",3872.94,{},9870,0,"""Asia""" +2024-09-05,15786,8786,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2537.16,{},135919,1,"""North America""" +2024-12-07,15787,2493,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1081.62,"{\"": \""15%\""}",156607,0,"""Asia""" +2023-06-23,15788,488,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4830.85,{},214988,0,"""Africa""" +2023-01-09,15789,811,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1618.57,{},203790,1,"""Asia""" +2023-08-30,15790,9462,"[\""Tablet\""]",2575.59,"{\"": \""22%\""}",294529,0,"""Africa""" +2023-05-09,15791,6624,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3950.06,"{\""seasonal\"": \""14%\""}",57681,0,"""Africa""" +2024-08-14,15792,4248,"[\""Charger\""]",4273.72,"{\""promo\"": \""19%\""}",186740,1,"""North America""" +2024-03-08,15793,8007,"[\""Tablet\""]",574.66,"{\""promo\"": \""20%\""}",200338,1,"""Africa""" +2023-11-27,15794,5400,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2844.73,{},4957,0,"""North America""" +2023-05-04,15795,4525,"[\""Laptop\""]",751.05,"{\"": \""13%\""}",278486,1,"""South America""" +2023-08-31,15796,7144,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",177.71,"{\""promo\"": \""30%\""}",242539,1,"""Africa""" +2023-04-29,15797,7137,"[\""Tablet\""]",4753.26,"{\""seasonal\"": \""29%\""}",109765,1,"""Africa""" +2024-09-02,15798,3797,"[\""Monitor\"", \""Charger\""]",2949.16,{},119233,0,"""Europe""" +2023-06-20,15799,4028,"[\""Charger\""]",3934.47,"{\""promo\"": \""23%\""}",257662,0,"""Europe""" +2024-03-30,15800,5575,"[\""Keyboard\"", \""Charger\""]",2751.38,{},142367,0,"""North America""" +2023-06-13,15801,2962,"[\""Phone\"", \""Laptop\""]",188.04,{},33459,0,"""Europe""" +2024-09-15,15802,8863,"[\""Headphones\"", \""Wireless Mouse\""]",2498.35,{},255607,0,"""North America""" +2024-10-04,15803,5290,"[\""Wireless Mouse\"", \""Tablet\""]",4856.43,"{\"": \""21%\""}",170128,0,"""Europe""" +2023-06-09,15804,7003,"[\""Tablet\""]",2832.83,"{\""loyalty\"": \""29%\""}",273353,0,"""Africa""" +2023-01-20,15805,3163,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3961.4,"{\""seasonal\"": \""8%\""}",57375,0,"""North America""" +2024-09-20,15806,162,"[\""Tablet\"", \""Headphones\""]",2486.73,"{\"": \""17%\""}",251754,1,"""Asia""" +2024-12-05,15807,9522,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",932.07,{},113141,1,"""Africa""" +2024-12-24,15808,418,"[\""Charger\"", \""Phone\""]",3292.46,"{\"": \""11%\""}",202468,1,"""Europe""" +2023-12-30,15809,4300,"[\""Headphones\"", \""Keyboard\""]",4206.98,"{\"": \""14%\""}",270949,1,"""North America""" +2024-08-30,15810,8371,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2115.85,{},122090,0,"""Asia""" +2023-07-24,15811,6342,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3602.47,{},178201,0,"""Europe""" +2023-07-11,15812,1917,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3808.61,"{\""loyalty\"": \""23%\""}",50281,0,"""Asia""" +2023-09-18,15813,3840,"[\""Phone\"", \""Charger\""]",3171.68,"{\""promo\"": \""25%\""}",163179,0,"""South America""" +2023-06-30,15814,9966,"[\""Tablet\"", \""Phone\""]",2147.73,{},281562,0,"""Africa""" +2023-06-02,15815,1991,"[\""Wireless Mouse\"", \""Monitor\""]",161.58,"{\""promo\"": \""28%\""}",192580,1,"""Africa""" +2023-01-23,15816,7286,"[\""Monitor\"", \""Wireless Mouse\""]",2784.84,{},133433,0,"""Africa""" +2024-02-11,15817,56,"[\""Phone\""]",350.08,"{\""loyalty\"": \""16%\""}",119854,1,"""South America""" +2024-03-05,15818,3554,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3748.43,"{\"": \""29%\""}",176228,0,"""Europe""" +2023-11-02,15819,955,"[\""Headphones\"", \""Keyboard\""]",4859.37,"{\"": \""13%\""}",155719,0,"""South America""" +2023-11-05,15820,2179,"[\""Laptop\"", \""Monitor\""]",4978.74,{},266077,1,"""South America""" +2024-09-17,15821,4151,"[\""Tablet\""]",1991.07,"{\""loyalty\"": \""27%\""}",105788,0,"""Africa""" +2023-04-22,15822,4135,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1466.2,"{\"": \""12%\""}",92751,0,"""Africa""" +2023-11-24,15823,5777,"[\""Keyboard\""]",3191.58,{},129414,1,"""North America""" +2023-03-17,15824,1519,"[\""Phone\"", \""Laptop\""]",195.95,{},50915,0,"""North America""" +2024-10-19,15825,2289,"[\""Charger\""]",680.49,"{\""promo\"": \""9%\""}",105441,1,"""North America""" +2024-10-26,15826,7442,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",202.92,"{\"": \""14%\""}",169708,0,"""Africa""" +2023-07-19,15827,646,"[\""Wireless Mouse\""]",179.93,{},118936,0,"""Asia""" +2024-02-24,15828,5798,"[\""Charger\""]",1720.88,{},177081,1,"""North America""" +2024-08-05,15829,8050,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",126.89,"{\"": \""9%\""}",116326,1,"""South America""" +2023-05-01,15830,1824,"[\""Laptop\""]",1233.34,"{\""seasonal\"": \""7%\""}",259793,1,"""Europe""" +2024-02-09,15831,7605,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1994.16,{},122657,0,"""Africa""" +2023-09-29,15832,4088,"[\""Tablet\""]",1740.77,"{\""promo\"": \""14%\""}",187135,0,"""Europe""" +2023-04-17,15833,5654,"[\""Laptop\""]",3206.24,{},5555,0,"""Europe""" +2023-07-29,15834,2637,"[\""Laptop\"", \""Tablet\""]",1427.91,"{\""loyalty\"": \""16%\""}",59003,0,"""Europe""" +2024-10-15,15835,2189,"[\""Charger\""]",4240.1,"{\"": \""14%\""}",70457,0,"""South America""" +2023-05-25,15836,7919,"[\""Monitor\"", \""Phone\""]",2128.05,"{\""promo\"": \""28%\""}",240244,0,"""North America""" +2023-02-04,15837,2911,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2496.0,{},16456,0,"""Europe""" +2023-03-29,15838,7289,"[\""Wireless Mouse\"", \""Headphones\""]",887.4,{},258892,0,"""Europe""" +2024-04-28,15839,1109,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3285.01,{},17599,0,"""North America""" +2024-01-09,15840,9243,"[\""Phone\"", \""Laptop\""]",2005.91,{},152926,1,"""Asia""" +2023-05-19,15841,6232,"[\""Tablet\"", \""Phone\""]",1192.58,"{\""promo\"": \""29%\""}",170218,0,"""Asia""" +2023-06-07,15842,5800,"[\""Phone\"", \""Charger\""]",2567.06,"{\""seasonal\"": \""27%\""}",128699,1,"""Africa""" +2024-10-19,15843,1153,"[\""Wireless Mouse\"", \""Charger\""]",3163.74,"{\""seasonal\"": \""22%\""}",164020,0,"""North America""" +2024-08-20,15844,6290,"[\""Monitor\"", \""Phone\""]",2701.34,"{\""seasonal\"": \""5%\""}",270078,0,"""North America""" +2023-06-24,15845,257,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3326.39,{},82196,1,"""Europe""" +2023-07-10,15846,8734,"[\""Charger\"", \""Keyboard\""]",2202.66,{},52983,1,"""South America""" +2024-12-15,15847,183,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3520.19,"{\""promo\"": \""22%\""}",274142,1,"""South America""" +2024-04-22,15848,3600,"[\""Wireless Mouse\""]",2644.6,{},200647,1,"""South America""" +2023-08-31,15849,9380,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4635.34,{},261786,1,"""Europe""" +2023-07-15,15850,9715,"[\""Tablet\""]",3356.32,"{\""loyalty\"": \""13%\""}",9706,1,"""South America""" +2024-09-24,15851,823,"[\""Monitor\""]",760.19,"{\"": \""12%\""}",158507,1,"""North America""" +2024-11-05,15852,5455,"[\""Charger\""]",4526.93,{},296799,0,"""Europe""" +2023-04-13,15853,2748,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3097.31,"{\"": \""8%\""}",298881,0,"""Asia""" +2024-01-11,15854,8130,"[\""Wireless Mouse\""]",4185.27,{},10515,0,"""Africa""" +2024-06-27,15855,5558,"[\""Phone\""]",4029.88,"{\""promo\"": \""25%\""}",266594,1,"""Asia""" +2023-09-07,15856,3960,"[\""Charger\""]",2181.32,{},134447,1,"""Europe""" +2024-08-18,15857,6076,"[\""Monitor\""]",4488.81,"{\""loyalty\"": \""13%\""}",96051,0,"""Asia""" +2024-08-12,15858,8746,"[\""Headphones\""]",3886.24,{},185996,0,"""Europe""" +2024-11-11,15859,6979,"[\""Monitor\""]",345.42,{},247252,0,"""Asia""" +2023-01-06,15860,9440,"[\""Laptop\""]",4209.95,"{\""loyalty\"": \""23%\""}",25563,0,"""Asia""" +2023-09-24,15861,9103,"[\""Phone\""]",4242.74,{},237825,1,"""North America""" +2024-02-11,15862,6975,"[\""Tablet\"", \""Monitor\""]",2444.78,"{\""seasonal\"": \""14%\""}",212983,0,"""South America""" +2023-01-01,15863,579,"[\""Keyboard\""]",2808.66,{},209453,1,"""Asia""" +2024-07-01,15864,5891,"[\""Charger\""]",1376.95,"{\""seasonal\"": \""10%\""}",278404,0,"""North America""" +2023-05-05,15865,5572,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4018.07,{},29013,0,"""Asia""" +2023-07-17,15866,9601,"[\""Keyboard\""]",2050.83,"{\""promo\"": \""17%\""}",225686,1,"""Europe""" +2024-02-28,15867,9022,"[\""Laptop\""]",2863.99,{},295706,1,"""Asia""" +2023-12-30,15868,1320,"[\""Headphones\"", \""Tablet\""]",209.63,"{\""loyalty\"": \""28%\""}",259984,1,"""Europe""" +2023-12-23,15869,8090,"[\""Headphones\""]",3167.59,"{\""loyalty\"": \""14%\""}",231651,1,"""Africa""" +2023-11-02,15870,1978,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3122.66,{},124735,1,"""South America""" +2023-07-24,15871,7801,"[\""Charger\"", \""Monitor\""]",2420.68,{},168499,1,"""North America""" +2023-09-18,15872,3248,"[\""Phone\"", \""Laptop\""]",502.71,{},185196,1,"""North America""" +2023-02-03,15873,5495,"[\""Keyboard\""]",1696.35,"{\""promo\"": \""25%\""}",210053,1,"""Asia""" +2023-05-07,15874,7893,"[\""Laptop\"", \""Tablet\""]",914.52,{},86918,1,"""Europe""" +2023-05-05,15875,4843,"[\""Monitor\""]",3299.78,{},98637,1,"""Asia""" +2023-01-01,15876,8057,"[\""Tablet\"", \""Monitor\""]",440.58,"{\"": \""9%\""}",7586,1,"""Europe""" +2024-12-24,15877,9644,"[\""Phone\"", \""Charger\""]",4870.67,{},291761,1,"""North America""" +2024-04-01,15878,4624,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4082.82,"{\""promo\"": \""11%\""}",2699,0,"""Africa""" +2023-04-05,15879,4067,"[\""Phone\"", \""Wireless Mouse\""]",3488.45,{},9248,1,"""Africa""" +2023-10-08,15880,5922,"[\""Tablet\""]",1843.39,{},281494,1,"""Europe""" +2024-11-07,15881,3558,"[\""Laptop\"", \""Phone\""]",86.0,"{\""loyalty\"": \""18%\""}",171464,1,"""Europe""" +2023-11-30,15882,6499,"[\""Laptop\""]",2177.45,"{\""loyalty\"": \""27%\""}",207889,0,"""South America""" +2023-03-08,15883,4739,"[\""Keyboard\""]",1023.36,{},95194,0,"""Africa""" +2023-03-02,15884,9465,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1263.69,{},188934,0,"""Europe""" +2023-07-28,15885,9656,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3174.85,"{\""seasonal\"": \""13%\""}",147658,0,"""Asia""" +2023-09-30,15886,6925,"[\""Headphones\""]",4252.37,{},154963,0,"""South America""" +2024-07-28,15887,9276,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",372.0,{},94992,1,"""North America""" +2024-10-30,15888,3789,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",530.51,{},66987,1,"""Europe""" +2024-12-20,15889,8986,"[\""Headphones\"", \""Tablet\""]",4380.14,{},248206,0,"""Europe""" +2024-05-12,15890,1181,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",871.18,{},194376,0,"""North America""" +2023-10-06,15891,8628,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",839.61,"{\""seasonal\"": \""13%\""}",41784,1,"""North America""" +2023-03-27,15892,9787,"[\""Monitor\""]",3509.14,"{\""seasonal\"": \""18%\""}",268030,0,"""South America""" +2023-01-02,15893,6800,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1431.5,{},189506,0,"""North America""" +2024-08-01,15894,2364,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1585.77,"{\""promo\"": \""27%\""}",135418,0,"""Asia""" +2024-07-17,15895,7486,"[\""Keyboard\""]",1546.66,{},295663,0,"""North America""" +2024-09-15,15896,103,"[\""Laptop\""]",655.05,"{\""loyalty\"": \""9%\""}",193885,0,"""South America""" +2024-07-28,15897,8742,"[\""Wireless Mouse\"", \""Laptop\""]",3192.52,{},153393,1,"""Africa""" +2024-12-04,15898,7519,"[\""Tablet\"", \""Monitor\""]",595.89,"{\""promo\"": \""17%\""}",201003,0,"""South America""" +2023-12-16,15899,3003,"[\""Keyboard\""]",2540.17,"{\""promo\"": \""19%\""}",194392,0,"""Europe""" +2023-03-24,15900,2255,"[\""Headphones\"", \""Monitor\""]",2257.66,"{\""loyalty\"": \""27%\""}",252965,1,"""Africa""" +2023-12-01,15901,7083,"[\""Monitor\"", \""Laptop\""]",3031.71,{},159827,0,"""North America""" +2024-05-19,15902,9468,"[\""Headphones\"", \""Laptop\""]",623.26,{},253169,0,"""South America""" +2023-04-16,15903,7667,"[\""Laptop\"", \""Charger\""]",2369.94,{},184464,0,"""North America""" +2023-09-01,15904,594,"[\""Keyboard\""]",4275.76,"{\"": \""15%\""}",285986,0,"""Africa""" +2023-09-19,15905,3782,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4030.34,"{\""loyalty\"": \""9%\""}",134776,0,"""North America""" +2024-04-20,15906,1814,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",341.86,{},30841,1,"""Asia""" +2023-09-05,15907,4723,"[\""Laptop\""]",1664.85,"{\"": \""18%\""}",174994,1,"""North America""" +2023-01-01,15908,1579,"[\""Tablet\""]",1766.87,{},42475,0,"""Europe""" +2024-01-04,15909,5116,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1346.01,{},26311,0,"""Europe""" +2024-11-03,15910,2984,"[\""Phone\"", \""Headphones\""]",3393.87,"{\"": \""26%\""}",9720,0,"""North America""" +2024-12-14,15911,1916,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",803.49,{},125561,0,"""Africa""" +2024-09-23,15912,5354,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4628.15,"{\"": \""21%\""}",6581,1,"""Asia""" +2023-03-03,15913,5536,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1282.64,"{\""promo\"": \""14%\""}",21201,1,"""Asia""" +2023-05-08,15914,8485,"[\""Monitor\"", \""Tablet\""]",4831.7,{},163082,0,"""Europe""" +2024-08-16,15915,9162,"[\""Headphones\"", \""Wireless Mouse\""]",2570.1,{},130157,0,"""Europe""" +2023-06-18,15916,6972,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",392.94,"{\""promo\"": \""28%\""}",208189,0,"""Europe""" +2023-05-29,15917,3976,"[\""Monitor\""]",531.94,"{\""seasonal\"": \""28%\""}",10629,1,"""North America""" +2024-09-11,15918,4078,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",626.47,"{\""seasonal\"": \""24%\""}",121232,1,"""Europe""" +2024-08-26,15919,683,"[\""Charger\"", \""Wireless Mouse\""]",4963.38,{},54738,0,"""Europe""" +2023-03-02,15920,6772,"[\""Charger\"", \""Tablet\""]",3059.92,"{\""promo\"": \""28%\""}",288198,1,"""North America""" +2023-04-01,15921,5386,"[\""Tablet\""]",2257.17,"{\"": \""28%\""}",10571,0,"""South America""" +2023-06-16,15922,8466,"[\""Monitor\""]",4945.03,"{\"": \""13%\""}",124681,1,"""Africa""" +2023-12-04,15923,9436,"[\""Phone\"", \""Tablet\""]",1713.74,{},281803,0,"""Africa""" +2023-11-08,15924,6801,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4224.53,{},99254,0,"""Africa""" +2023-10-08,15925,390,"[\""Laptop\""]",591.6,"{\""promo\"": \""8%\""}",202166,0,"""Africa""" +2024-12-29,15926,6417,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",163.16,"{\""seasonal\"": \""17%\""}",51668,0,"""Africa""" +2023-01-20,15927,3321,"[\""Phone\"", \""Charger\""]",200.7,"{\""promo\"": \""29%\""}",205913,1,"""Europe""" +2023-09-26,15928,6294,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",733.43,{},132165,0,"""Europe""" +2023-02-22,15929,7482,"[\""Headphones\""]",4964.76,"{\"": \""19%\""}",157649,1,"""North America""" +2024-03-06,15930,3736,"[\""Headphones\"", \""Keyboard\""]",521.19,{},21215,0,"""Europe""" +2024-05-15,15931,9260,"[\""Tablet\""]",3065.91,"{\"": \""28%\""}",241855,0,"""North America""" +2023-03-12,15932,1210,"[\""Phone\"", \""Keyboard\""]",4434.9,"{\""promo\"": \""17%\""}",267913,1,"""Europe""" +2023-01-07,15933,4606,"[\""Charger\""]",2888.82,{},156325,0,"""South America""" +2024-11-11,15934,6730,"[\""Charger\""]",775.77,"{\""seasonal\"": \""8%\""}",147086,0,"""Europe""" +2023-12-07,15935,3067,"[\""Phone\""]",2982.94,{},297476,1,"""Asia""" +2024-08-02,15936,5251,"[\""Charger\"", \""Monitor\""]",3973.37,"{\""seasonal\"": \""17%\""}",244291,0,"""South America""" +2023-12-20,15937,3321,"[\""Headphones\"", \""Wireless Mouse\""]",4618.27,{},19095,1,"""Asia""" +2024-10-11,15938,6074,"[\""Phone\"", \""Monitor\""]",4695.82,{},296375,1,"""Africa""" +2023-09-23,15939,2506,"[\""Keyboard\"", \""Phone\""]",2966.31,"{\"": \""6%\""}",3793,0,"""Europe""" +2023-05-28,15940,3064,"[\""Phone\"", \""Tablet\""]",1909.52,"{\""promo\"": \""21%\""}",86611,0,"""South America""" +2024-08-11,15941,495,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4344.62,{},32038,1,"""Asia""" +2024-02-24,15942,7463,"[\""Keyboard\""]",1001.86,"{\""seasonal\"": \""21%\""}",48458,0,"""South America""" +2023-04-13,15943,1283,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",886.37,{},30740,0,"""Africa""" +2023-07-30,15944,5050,"[\""Laptop\"", \""Charger\""]",1787.33,{},148024,0,"""Asia""" +2024-12-16,15945,3354,"[\""Tablet\""]",1422.61,{},173462,1,"""Europe""" +2024-11-09,15946,5027,"[\""Monitor\"", \""Laptop\""]",3445.55,"{\""loyalty\"": \""21%\""}",158338,0,"""Africa""" +2023-08-01,15947,9883,"[\""Keyboard\""]",1861.67,"{\""promo\"": \""20%\""}",198406,0,"""Europe""" +2023-09-07,15948,2369,"[\""Phone\""]",2762.32,{},69537,1,"""Africa""" +2023-03-23,15949,5984,"[\""Charger\"", \""Monitor\""]",2425.87,"{\""loyalty\"": \""8%\""}",205345,1,"""North America""" +2023-09-19,15950,8988,"[\""Charger\"", \""Monitor\""]",3472.76,"{\""loyalty\"": \""23%\""}",15952,1,"""Asia""" +2024-06-18,15951,3856,"[\""Monitor\""]",3915.73,{},70371,0,"""Asia""" +2024-03-08,15952,5924,"[\""Headphones\"", \""Laptop\""]",2615.79,{},145972,1,"""North America""" +2024-01-23,15953,6788,"[\""Headphones\"", \""Wireless Mouse\""]",2267.88,"{\""seasonal\"": \""26%\""}",80605,1,"""Africa""" +2024-04-11,15954,2128,"[\""Tablet\""]",1240.7,"{\""promo\"": \""16%\""}",76163,1,"""Africa""" +2024-12-30,15955,6948,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2492.0,{},19332,0,"""Asia""" +2024-08-27,15956,6136,"[\""Keyboard\""]",1763.12,{},275668,1,"""Asia""" +2024-12-24,15957,615,"[\""Charger\"", \""Phone\""]",3492.36,{},282965,1,"""North America""" +2023-01-22,15958,2315,"[\""Keyboard\""]",2472.2,"{\""seasonal\"": \""10%\""}",84441,0,"""Africa""" +2024-07-01,15959,4132,"[\""Headphones\""]",3603.75,{},137714,1,"""North America""" +2024-12-03,15960,4142,"[\""Laptop\"", \""Tablet\""]",359.98,{},238179,1,"""South America""" +2023-11-14,15961,2730,"[\""Keyboard\"", \""Phone\""]",298.85,"{\"": \""8%\""}",11552,0,"""North America""" +2023-02-17,15962,1593,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4928.09,{},277141,0,"""Europe""" +2024-04-01,15963,5253,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2767.71,"{\"": \""26%\""}",20818,1,"""Europe""" +2023-12-15,15964,9796,"[\""Laptop\"", \""Phone\""]",1974.64,{},217357,0,"""South America""" +2023-02-21,15965,8010,"[\""Keyboard\"", \""Monitor\""]",1214.52,{},274714,0,"""Africa""" +2024-11-06,15966,9113,"[\""Phone\"", \""Headphones\""]",2671.01,{},17995,0,"""South America""" +2023-05-12,15967,8935,"[\""Monitor\""]",3563.53,{},82675,1,"""Africa""" +2024-04-01,15968,2092,"[\""Phone\""]",4129.76,"{\""seasonal\"": \""24%\""}",240904,0,"""Asia""" +2024-10-07,15969,1213,"[\""Keyboard\""]",2654.57,{},41730,0,"""Asia""" +2023-09-12,15970,5965,"[\""Phone\""]",1666.1,"{\""promo\"": \""6%\""}",126487,1,"""North America""" +2024-08-12,15971,8673,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3251.98,{},111466,0,"""South America""" +2024-12-10,15972,1325,"[\""Monitor\"", \""Keyboard\""]",427.94,{},240990,0,"""South America""" +2024-09-19,15973,2389,"[\""Monitor\"", \""Wireless Mouse\""]",3401.38,"{\""seasonal\"": \""13%\""}",288642,1,"""Europe""" +2024-10-06,15974,8299,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2795.97,{},117688,1,"""Europe""" +2023-12-03,15975,8666,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1566.37,"{\"": \""16%\""}",277904,0,"""Europe""" +2024-09-21,15976,8667,"[\""Headphones\"", \""Charger\""]",824.51,{},34465,0,"""Europe""" +2023-06-28,15977,3022,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4179.46,{},299220,0,"""South America""" +2024-06-25,15978,3186,"[\""Wireless Mouse\"", \""Charger\""]",4735.57,"{\"": \""5%\""}",108397,1,"""North America""" +2023-03-04,15979,6916,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3297.94,{},265216,1,"""Asia""" +2023-02-23,15980,3787,"[\""Tablet\"", \""Headphones\""]",457.34,{},125783,0,"""Africa""" +2024-12-30,15981,8872,"[\""Tablet\"", \""Charger\""]",2585.92,"{\"": \""27%\""}",276970,1,"""South America""" +2023-11-06,15982,2615,"[\""Headphones\""]",2054.17,{},221849,1,"""Europe""" +2024-09-11,15983,7212,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2736.93,"{\""loyalty\"": \""15%\""}",157270,0,"""North America""" +2023-09-13,15984,3578,"[\""Laptop\"", \""Tablet\""]",3318.15,"{\"": \""16%\""}",154931,1,"""Africa""" +2023-07-29,15985,2707,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4440.74,"{\""promo\"": \""16%\""}",67385,1,"""North America""" +2023-05-07,15986,5848,"[\""Headphones\""]",2712.34,{},193723,1,"""North America""" +2024-10-25,15987,909,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3187.7,"{\""loyalty\"": \""13%\""}",131408,1,"""South America""" +2023-04-06,15988,5824,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4960.0,{},33423,1,"""North America""" +2023-11-13,15989,4575,"[\""Headphones\""]",990.72,{},112663,1,"""Europe""" +2023-02-12,15990,6271,"[\""Laptop\"", \""Wireless Mouse\""]",3084.22,{},125828,1,"""South America""" +2024-06-03,15991,8736,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",535.44,{},101916,0,"""Asia""" +2024-12-27,15992,1257,"[\""Keyboard\"", \""Wireless Mouse\""]",2962.12,{},154541,0,"""Asia""" +2023-02-19,15993,9796,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4079.78,{},256661,1,"""Europe""" +2024-06-24,15994,4572,"[\""Laptop\""]",1781.06,"{\""promo\"": \""28%\""}",205691,0,"""South America""" +2023-02-20,15995,9738,"[\""Laptop\"", \""Monitor\""]",2534.13,{},230829,1,"""Asia""" +2023-09-06,15996,868,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4009.09,"{\""promo\"": \""14%\""}",210044,0,"""Europe""" +2023-12-02,15997,7452,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3603.29,"{\""promo\"": \""15%\""}",133866,0,"""Africa""" +2024-03-16,15998,5076,"[\""Monitor\"", \""Phone\""]",3370.14,{},199659,0,"""North America""" +2024-08-10,15999,4634,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3062.22,"{\""seasonal\"": \""25%\""}",138567,0,"""Africa""" +2024-12-28,16000,8870,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1188.47,"{\""loyalty\"": \""15%\""}",229604,0,"""South America""" +2024-09-20,16001,5225,"[\""Keyboard\""]",1741.91,"{\""promo\"": \""28%\""}",243561,0,"""Europe""" +2023-03-02,16002,3012,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2583.68,"{\""promo\"": \""29%\""}",49793,0,"""Africa""" +2024-11-03,16003,6768,"[\""Phone\""]",1704.0,{},255675,1,"""North America""" +2023-07-28,16004,4045,"[\""Charger\""]",2439.7,{},107487,0,"""Africa""" +2024-10-14,16005,2452,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4474.34,{},105811,1,"""South America""" +2023-02-05,16006,5764,"[\""Wireless Mouse\"", \""Charger\""]",758.02,{},133492,1,"""Asia""" +2023-10-21,16007,8396,"[\""Phone\"", \""Keyboard\""]",2468.5,"{\""promo\"": \""11%\""}",167162,0,"""Europe""" +2023-06-28,16008,3596,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3826.37,"{\""seasonal\"": \""21%\""}",131226,1,"""Asia""" +2024-01-25,16009,6075,"[\""Tablet\""]",2829.16,{},178005,0,"""South America""" +2024-11-18,16010,7721,"[\""Keyboard\"", \""Wireless Mouse\""]",1163.99,"{\""promo\"": \""14%\""}",169163,1,"""Europe""" +2024-11-12,16011,3162,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4495.34,{},136566,1,"""Africa""" +2023-10-22,16012,4139,"[\""Keyboard\""]",2966.97,{},17174,0,"""Africa""" +2023-09-01,16013,6142,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3250.25,{},209629,1,"""Africa""" +2024-06-13,16014,6129,"[\""Tablet\""]",424.85,"{\""seasonal\"": \""21%\""}",37720,1,"""North America""" +2024-10-17,16015,3371,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3560.66,"{\""loyalty\"": \""29%\""}",280766,1,"""Asia""" +2023-09-24,16016,1536,"[\""Phone\"", \""Keyboard\""]",1744.68,{},181124,1,"""Asia""" +2024-02-15,16017,365,"[\""Tablet\"", \""Monitor\""]",1050.89,"{\""promo\"": \""30%\""}",58562,1,"""Africa""" +2024-06-11,16018,7147,"[\""Phone\""]",4184.3,{},72063,0,"""Asia""" +2023-02-04,16019,4873,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4835.6,"{\""promo\"": \""5%\""}",173665,0,"""North America""" +2024-08-09,16020,8357,"[\""Laptop\"", \""Monitor\""]",3781.55,"{\"": \""21%\""}",142848,0,"""South America""" +2023-11-04,16021,6941,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2906.71,{},37419,0,"""South America""" +2024-03-16,16022,8935,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1791.32,"{\"": \""10%\""}",199456,0,"""Asia""" +2023-08-30,16023,5472,"[\""Laptop\"", \""Monitor\""]",3355.14,"{\""seasonal\"": \""18%\""}",73767,1,"""Africa""" +2023-08-23,16024,158,"[\""Wireless Mouse\""]",1685.87,{},282256,1,"""Asia""" +2023-01-09,16025,6855,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1789.67,{},49334,0,"""South America""" +2023-08-07,16026,8580,"[\""Phone\"", \""Monitor\""]",4804.15,"{\"": \""21%\""}",139518,0,"""Asia""" +2023-11-16,16027,1576,"[\""Charger\""]",2858.22,{},238850,1,"""Africa""" +2023-06-16,16028,8331,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",555.27,{},102053,1,"""North America""" +2024-01-29,16029,8911,"[\""Phone\"", \""Monitor\""]",134.15,{},10658,0,"""Asia""" +2024-01-14,16030,4480,"[\""Wireless Mouse\"", \""Phone\""]",2238.12,"{\""promo\"": \""23%\""}",89110,0,"""Africa""" +2023-03-20,16031,5833,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2703.33,{},247291,0,"""Europe""" +2023-12-16,16032,2062,"[\""Laptop\""]",796.36,"{\""loyalty\"": \""20%\""}",207984,1,"""South America""" +2023-08-22,16033,2402,"[\""Monitor\""]",1626.24,{},115220,1,"""Africa""" +2024-02-10,16034,5806,"[\""Monitor\"", \""Headphones\""]",879.39,{},149832,1,"""South America""" +2024-08-31,16035,6585,"[\""Charger\"", \""Keyboard\""]",1141.3,{},254136,0,"""Asia""" +2024-03-20,16036,8252,"[\""Phone\""]",1834.12,{},115586,0,"""Europe""" +2023-07-22,16037,4197,"[\""Tablet\""]",1970.87,{},185438,1,"""Europe""" +2024-05-23,16038,289,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2798.99,{},191736,0,"""Africa""" +2023-06-05,16039,600,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3608.23,"{\""promo\"": \""7%\""}",218152,0,"""North America""" +2024-12-04,16040,7257,"[\""Headphones\"", \""Wireless Mouse\""]",3625.22,{},68799,1,"""South America""" +2024-03-04,16041,1009,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3576.67,"{\""seasonal\"": \""6%\""}",44408,0,"""Europe""" +2023-12-30,16042,1739,"[\""Phone\""]",3742.92,{},38299,0,"""Europe""" +2023-07-03,16043,1435,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2677.52,{},179662,1,"""Europe""" +2023-09-25,16044,7385,"[\""Laptop\"", \""Monitor\""]",4648.48,"{\""promo\"": \""14%\""}",210925,0,"""North America""" +2024-11-19,16045,9252,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2613.33,"{\"": \""23%\""}",194170,0,"""Africa""" +2024-01-25,16046,1746,"[\""Monitor\""]",1690.47,"{\""loyalty\"": \""24%\""}",274022,0,"""Asia""" +2023-05-28,16047,4422,"[\""Keyboard\""]",3555.22,{},105398,1,"""Asia""" +2023-08-30,16048,8295,"[\""Headphones\""]",2260.92,"{\"": \""17%\""}",287097,1,"""Africa""" +2024-02-07,16049,8223,"[\""Phone\""]",4198.54,"{\""promo\"": \""15%\""}",147626,1,"""South America""" +2023-05-18,16050,7765,"[\""Monitor\"", \""Charger\""]",3946.3,"{\""seasonal\"": \""24%\""}",130781,1,"""North America""" +2023-09-24,16051,6185,"[\""Laptop\"", \""Tablet\""]",3136.42,"{\"": \""14%\""}",259836,0,"""Africa""" +2024-04-05,16052,7740,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2653.35,"{\""promo\"": \""28%\""}",103684,0,"""South America""" +2024-09-26,16053,3625,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4443.66,"{\""loyalty\"": \""28%\""}",219174,0,"""South America""" +2024-10-07,16054,1372,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2299.31,"{\""loyalty\"": \""25%\""}",40647,0,"""Europe""" +2023-08-07,16055,4134,"[\""Laptop\""]",3748.97,"{\""seasonal\"": \""8%\""}",215874,1,"""South America""" +2023-03-27,16056,6010,"[\""Charger\"", \""Wireless Mouse\""]",1315.43,"{\"": \""27%\""}",248211,1,"""Asia""" +2023-09-27,16057,8213,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",137.13,"{\""seasonal\"": \""16%\""}",252066,1,"""South America""" +2023-03-21,16058,5210,"[\""Tablet\""]",2186.47,{},86274,0,"""South America""" +2023-09-13,16059,415,"[\""Charger\"", \""Keyboard\""]",118.41,"{\""promo\"": \""23%\""}",149798,1,"""South America""" +2023-08-03,16060,3574,"[\""Wireless Mouse\""]",3862.76,"{\""seasonal\"": \""7%\""}",279429,0,"""Asia""" +2024-12-26,16061,4400,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",584.31,{},82598,1,"""Africa""" +2023-03-05,16062,970,"[\""Headphones\""]",2926.0,"{\""seasonal\"": \""29%\""}",105601,1,"""Asia""" +2023-07-02,16063,155,"[\""Monitor\""]",4001.74,{},233127,0,"""Africa""" +2024-12-17,16064,8785,"[\""Keyboard\""]",3179.38,{},143287,1,"""South America""" +2024-07-18,16065,6142,"[\""Wireless Mouse\""]",3117.45,{},80266,0,"""Africa""" +2023-06-12,16066,9432,"[\""Laptop\"", \""Wireless Mouse\""]",3248.81,{},26715,0,"""Asia""" +2023-11-12,16067,3549,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1715.07,"{\""loyalty\"": \""21%\""}",7133,0,"""North America""" +2023-05-07,16068,256,"[\""Headphones\"", \""Wireless Mouse\""]",980.12,"{\""loyalty\"": \""9%\""}",191710,0,"""North America""" +2023-10-19,16069,7235,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1872.83,"{\""seasonal\"": \""23%\""}",224506,0,"""South America""" +2024-03-29,16070,1603,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2753.16,"{\""promo\"": \""7%\""}",130219,0,"""South America""" +2024-02-03,16071,467,"[\""Monitor\""]",661.09,"{\"": \""16%\""}",245510,1,"""South America""" +2024-06-14,16072,939,"[\""Keyboard\""]",2006.65,"{\"": \""11%\""}",70415,1,"""Europe""" +2023-02-05,16073,6982,"[\""Headphones\""]",1542.15,"{\""seasonal\"": \""16%\""}",126408,0,"""South America""" +2023-10-25,16074,9018,"[\""Keyboard\""]",4399.78,{},275383,1,"""Europe""" +2023-04-05,16075,1269,"[\""Charger\"", \""Tablet\""]",4067.44,"{\""loyalty\"": \""7%\""}",183494,0,"""South America""" +2024-01-01,16076,454,"[\""Headphones\""]",858.73,{},5438,1,"""Asia""" +2023-05-17,16077,7180,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2646.1,"{\"": \""13%\""}",30902,1,"""South America""" +2023-09-23,16078,1536,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3097.99,{},29688,1,"""Asia""" +2024-01-27,16079,7101,"[\""Tablet\"", \""Phone\""]",1287.9,{},153006,1,"""South America""" +2024-02-06,16080,6609,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",276.38,{},36288,1,"""Europe""" +2024-12-31,16081,8500,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",129.53,"{\""promo\"": \""23%\""}",144240,0,"""Africa""" +2023-08-31,16082,7655,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1195.09,{},280129,0,"""Asia""" +2024-04-24,16083,195,"[\""Phone\""]",4923.87,{},139775,0,"""Africa""" +2024-12-16,16084,53,"[\""Wireless Mouse\""]",538.69,"{\""loyalty\"": \""12%\""}",113706,0,"""Africa""" +2024-03-28,16085,4147,"[\""Monitor\"", \""Phone\""]",3579.45,{},6496,0,"""Asia""" +2023-03-25,16086,7584,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3704.49,"{\"": \""29%\""}",23360,0,"""Africa""" +2024-07-22,16087,7160,"[\""Charger\""]",4882.63,{},118698,1,"""Africa""" +2023-05-11,16088,9889,"[\""Charger\"", \""Keyboard\""]",4055.87,"{\""promo\"": \""10%\""}",24174,1,"""South America""" +2023-10-28,16089,1183,"[\""Monitor\"", \""Tablet\""]",285.19,"{\""promo\"": \""21%\""}",96221,0,"""South America""" +2023-03-17,16090,1483,"[\""Charger\""]",2572.02,{},153122,0,"""South America""" +2024-06-14,16091,521,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2731.1,{},246800,1,"""North America""" +2023-10-29,16092,4477,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4356.09,{},282567,1,"""Asia""" +2023-09-23,16093,411,"[\""Laptop\"", \""Monitor\""]",4763.66,"{\""promo\"": \""7%\""}",161260,1,"""South America""" +2024-04-02,16094,7516,"[\""Monitor\""]",2680.74,{},296313,0,"""Africa""" +2024-03-17,16095,1333,"[\""Tablet\"", \""Laptop\""]",4440.64,{},216908,1,"""Asia""" +2024-05-15,16096,5188,"[\""Laptop\""]",2758.34,"{\""loyalty\"": \""25%\""}",48092,1,"""North America""" +2023-04-14,16097,8360,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1348.67,"{\""loyalty\"": \""19%\""}",179137,1,"""North America""" +2024-10-26,16098,8687,"[\""Tablet\"", \""Monitor\""]",3276.23,{},294060,1,"""Africa""" +2023-08-24,16099,2244,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4138.76,"{\""promo\"": \""24%\""}",115744,1,"""Africa""" +2023-07-13,16100,9630,"[\""Monitor\"", \""Keyboard\""]",2183.28,{},88297,1,"""Africa""" +2023-12-07,16101,5733,"[\""Charger\"", \""Wireless Mouse\""]",474.94,"{\"": \""5%\""}",266835,1,"""North America""" +2023-06-23,16102,8849,"[\""Headphones\"", \""Tablet\""]",1689.88,{},170583,0,"""Africa""" +2023-01-01,16103,5945,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3777.68,{},208491,1,"""South America""" +2023-04-28,16104,1113,"[\""Phone\""]",3005.87,{},297711,1,"""South America""" +2024-12-12,16105,5693,"[\""Keyboard\""]",3378.87,{},29667,1,"""North America""" +2023-11-20,16106,839,"[\""Keyboard\"", \""Laptop\""]",1735.71,"{\""loyalty\"": \""30%\""}",175393,0,"""Europe""" +2023-03-15,16107,3669,"[\""Charger\"", \""Laptop\""]",4031.21,"{\""promo\"": \""5%\""}",122297,0,"""South America""" +2023-10-16,16108,1092,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",713.2,"{\""promo\"": \""20%\""}",286648,1,"""Europe""" +2023-07-08,16109,5850,"[\""Laptop\""]",3011.08,"{\"": \""6%\""}",233374,1,"""South America""" +2023-06-14,16110,1370,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3369.84,{},138300,0,"""Asia""" +2024-11-27,16111,3083,"[\""Tablet\""]",4892.82,{},144263,1,"""South America""" +2024-06-04,16112,3215,"[\""Headphones\"", \""Tablet\""]",3836.12,{},291951,1,"""Europe""" +2024-07-22,16113,662,"[\""Monitor\"", \""Charger\""]",2326.12,"{\""seasonal\"": \""17%\""}",98662,1,"""South America""" +2024-08-14,16114,3902,"[\""Tablet\""]",1165.21,"{\""seasonal\"": \""25%\""}",123827,1,"""Africa""" +2023-11-02,16115,9311,"[\""Tablet\""]",549.26,"{\"": \""25%\""}",66333,0,"""North America""" +2024-04-03,16116,176,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2769.75,"{\"": \""18%\""}",223917,1,"""Asia""" +2024-08-29,16117,5841,"[\""Phone\""]",3193.03,"{\"": \""10%\""}",206060,1,"""Asia""" +2024-11-16,16118,1212,"[\""Charger\""]",3680.06,"{\""promo\"": \""24%\""}",117049,1,"""South America""" +2024-07-17,16119,9344,"[\""Wireless Mouse\"", \""Laptop\""]",433.0,{},246118,1,"""Africa""" +2024-06-09,16120,6814,"[\""Tablet\"", \""Charger\""]",2776.29,"{\""seasonal\"": \""16%\""}",231045,0,"""South America""" +2023-07-08,16121,2358,"[\""Laptop\""]",1760.63,"{\""loyalty\"": \""28%\""}",70329,1,"""Europe""" +2024-11-20,16122,1365,"[\""Wireless Mouse\""]",3819.58,"{\""loyalty\"": \""29%\""}",284778,0,"""Asia""" +2023-07-16,16123,3517,"[\""Wireless Mouse\""]",4260.13,"{\"": \""18%\""}",40087,0,"""Asia""" +2024-09-05,16124,6286,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4859.16,{},181004,1,"""North America""" +2023-10-14,16125,5563,"[\""Keyboard\"", \""Tablet\""]",4055.22,"{\"": \""16%\""}",290586,0,"""North America""" +2024-02-22,16126,9918,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3849.99,"{\""promo\"": \""26%\""}",19060,1,"""Africa""" +2024-11-11,16127,1077,"[\""Wireless Mouse\"", \""Charger\""]",4697.09,{},298283,1,"""South America""" +2023-08-09,16128,4347,"[\""Headphones\""]",1874.64,{},210186,0,"""Asia""" +2024-03-09,16129,1993,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4244.99,{},122464,0,"""South America""" +2024-08-05,16130,2058,"[\""Monitor\""]",3529.1,{},161081,1,"""Asia""" +2024-05-01,16131,7231,"[\""Laptop\""]",1330.62,{},235620,0,"""North America""" +2024-10-20,16132,1697,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4764.89,{},56983,1,"""Europe""" +2024-06-25,16133,4977,"[\""Laptop\"", \""Monitor\""]",1519.53,"{\""loyalty\"": \""28%\""}",196854,0,"""Europe""" +2024-09-30,16134,151,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",818.01,"{\""seasonal\"": \""11%\""}",219143,1,"""North America""" +2023-03-14,16135,1461,"[\""Monitor\""]",2243.23,"{\""loyalty\"": \""27%\""}",181226,1,"""North America""" +2024-04-26,16136,5754,"[\""Headphones\""]",2549.31,{},286387,1,"""South America""" +2024-07-26,16137,3340,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3384.3,"{\""promo\"": \""11%\""}",196871,0,"""North America""" +2024-10-14,16138,8378,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2414.0,{},239460,0,"""South America""" +2023-04-21,16139,7017,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1958.37,"{\""seasonal\"": \""7%\""}",174451,0,"""Asia""" +2024-04-20,16140,4470,"[\""Laptop\"", \""Keyboard\""]",2985.68,{},249938,1,"""North America""" +2024-11-22,16141,6427,"[\""Laptop\""]",3316.43,"{\""promo\"": \""11%\""}",58493,1,"""Africa""" +2023-08-09,16142,1021,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1805.34,"{\""promo\"": \""27%\""}",273873,0,"""Asia""" +2023-01-09,16143,8005,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",141.88,{},150001,1,"""Asia""" +2023-03-25,16144,220,"[\""Phone\"", \""Charger\""]",3829.25,"{\""seasonal\"": \""13%\""}",247837,0,"""South America""" +2023-12-03,16145,8805,"[\""Headphones\"", \""Keyboard\""]",1529.08,{},245976,0,"""Asia""" +2023-10-21,16146,8236,"[\""Keyboard\"", \""Headphones\""]",3375.12,{},144398,1,"""South America""" +2023-09-06,16147,2216,"[\""Laptop\""]",841.77,{},101446,0,"""South America""" +2024-11-06,16148,8255,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3244.74,{},89782,1,"""Asia""" +2024-03-07,16149,8960,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4406.26,{},199239,0,"""Europe""" +2024-04-27,16150,2494,"[\""Keyboard\"", \""Tablet\""]",3070.4,"{\""loyalty\"": \""6%\""}",74632,1,"""Europe""" +2024-12-02,16151,3884,"[\""Laptop\"", \""Wireless Mouse\""]",4069.48,"{\"": \""15%\""}",269075,0,"""North America""" +2023-04-22,16152,1750,"[\""Keyboard\"", \""Headphones\""]",3126.11,"{\""seasonal\"": \""13%\""}",35127,0,"""North America""" +2024-09-10,16153,8355,"[\""Wireless Mouse\"", \""Phone\""]",4160.44,"{\"": \""17%\""}",128066,0,"""Africa""" +2023-08-27,16154,4487,"[\""Phone\""]",1753.14,"{\""loyalty\"": \""27%\""}",221347,0,"""Africa""" +2023-08-02,16155,9541,"[\""Monitor\""]",3202.69,"{\""promo\"": \""17%\""}",69322,0,"""Asia""" +2024-11-10,16156,3572,"[\""Wireless Mouse\""]",361.7,"{\""seasonal\"": \""24%\""}",164572,1,"""Europe""" +2024-10-20,16157,154,"[\""Wireless Mouse\"", \""Charger\""]",3447.84,{},260201,0,"""Asia""" +2023-05-17,16158,2818,"[\""Charger\"", \""Tablet\""]",2868.84,{},149126,0,"""Asia""" +2024-03-27,16159,9511,"[\""Keyboard\"", \""Tablet\""]",3525.44,{},144271,0,"""Africa""" +2024-04-20,16160,5119,"[\""Phone\""]",4126.72,{},25553,1,"""South America""" +2023-11-11,16161,862,"[\""Laptop\""]",4887.9,"{\""seasonal\"": \""29%\""}",65609,0,"""Europe""" +2023-06-18,16162,8936,"[\""Keyboard\"", \""Charger\""]",4930.31,{},183055,0,"""Africa""" +2024-11-15,16163,5477,"[\""Keyboard\""]",1476.66,{},73513,0,"""Africa""" +2024-01-06,16164,3161,"[\""Keyboard\"", \""Wireless Mouse\""]",4309.28,"{\""promo\"": \""24%\""}",245394,0,"""Africa""" +2024-06-29,16165,9324,"[\""Tablet\"", \""Charger\""]",803.92,"{\""seasonal\"": \""20%\""}",233571,0,"""Africa""" +2023-12-14,16166,2488,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2967.33,"{\""promo\"": \""20%\""}",183041,0,"""North America""" +2024-07-31,16167,4641,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2861.27,"{\""loyalty\"": \""15%\""}",183744,0,"""Africa""" +2023-01-30,16168,3002,"[\""Laptop\"", \""Phone\""]",1770.42,"{\"": \""19%\""}",62718,0,"""Asia""" +2023-06-09,16169,1656,"[\""Phone\"", \""Tablet\""]",2528.39,{},207821,0,"""South America""" +2024-07-24,16170,7141,"[\""Laptop\""]",2289.89,{},255307,1,"""South America""" +2024-05-15,16171,1185,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2925.37,"{\"": \""20%\""}",97127,1,"""South America""" +2023-05-12,16172,265,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3474.48,{},48862,1,"""North America""" +2024-07-01,16173,5850,"[\""Keyboard\""]",185.33,"{\""loyalty\"": \""26%\""}",207347,0,"""South America""" +2023-08-13,16174,1798,"[\""Wireless Mouse\""]",177.44,"{\""promo\"": \""10%\""}",227685,1,"""Europe""" +2024-02-05,16175,7107,"[\""Laptop\""]",3341.69,"{\"": \""16%\""}",123868,0,"""Africa""" +2024-07-17,16176,6656,"[\""Headphones\"", \""Laptop\""]",130.4,"{\"": \""21%\""}",265566,0,"""Europe""" +2024-10-10,16177,629,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1373.39,"{\""seasonal\"": \""5%\""}",274229,0,"""Europe""" +2024-02-10,16178,7342,"[\""Keyboard\"", \""Laptop\""]",3148.24,"{\""loyalty\"": \""18%\""}",223173,1,"""Europe""" +2023-02-07,16179,7380,"[\""Monitor\""]",1638.93,"{\""promo\"": \""9%\""}",148299,0,"""North America""" +2023-08-15,16180,5855,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1282.86,{},159212,1,"""Europe""" +2023-05-14,16181,5004,"[\""Tablet\"", \""Charger\""]",2122.37,{},84831,1,"""Africa""" +2023-09-08,16182,136,"[\""Charger\"", \""Laptop\""]",594.64,"{\"": \""16%\""}",279996,0,"""Africa""" +2023-02-13,16183,9004,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2849.39,{},58519,0,"""Asia""" +2023-02-28,16184,3143,"[\""Wireless Mouse\"", \""Headphones\""]",1806.6,"{\""loyalty\"": \""12%\""}",102807,0,"""South America""" +2024-03-29,16185,3559,"[\""Phone\""]",4209.06,"{\""loyalty\"": \""10%\""}",274793,0,"""Europe""" +2024-05-05,16186,7880,"[\""Headphones\"", \""Phone\""]",1300.59,{},270751,0,"""North America""" +2023-08-23,16187,1132,"[\""Laptop\""]",916.03,"{\""seasonal\"": \""13%\""}",269234,1,"""North America""" +2024-09-02,16188,7724,"[\""Charger\"", \""Monitor\""]",2226.83,"{\""promo\"": \""24%\""}",53478,1,"""Asia""" +2024-08-24,16189,8340,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3462.95,{},72586,0,"""South America""" +2024-07-03,16190,2947,"[\""Phone\"", \""Monitor\""]",3826.38,"{\""loyalty\"": \""24%\""}",33383,0,"""Europe""" +2023-05-26,16191,3954,"[\""Charger\"", \""Monitor\""]",562.44,"{\"": \""12%\""}",120530,0,"""Asia""" +2024-07-29,16192,2135,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4805.59,"{\""seasonal\"": \""8%\""}",165689,0,"""Africa""" +2024-08-05,16193,8872,"[\""Keyboard\"", \""Wireless Mouse\""]",3073.17,{},299409,0,"""North America""" +2024-07-12,16194,5578,"[\""Wireless Mouse\""]",1294.54,"{\""seasonal\"": \""21%\""}",291728,1,"""Europe""" +2024-08-09,16195,6218,"[\""Laptop\""]",4066.0,{},193443,1,"""Europe""" +2024-08-28,16196,6822,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1905.68,"{\""promo\"": \""21%\""}",194087,0,"""North America""" +2024-11-22,16197,3349,"[\""Laptop\"", \""Monitor\""]",4645.87,{},248842,0,"""South America""" +2024-05-29,16198,4255,"[\""Wireless Mouse\""]",2895.53,"{\""promo\"": \""27%\""}",138749,1,"""Africa""" +2024-04-14,16199,7995,"[\""Phone\"", \""Keyboard\""]",2296.2,{},291821,1,"""South America""" +2023-02-07,16200,4870,"[\""Headphones\"", \""Laptop\""]",3346.64,{},163932,0,"""Africa""" +2023-04-06,16201,7614,"[\""Charger\""]",2091.03,"{\""loyalty\"": \""11%\""}",137671,1,"""Asia""" +2024-10-18,16202,8872,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2800.73,"{\""loyalty\"": \""13%\""}",213386,0,"""Europe""" +2023-10-06,16203,8938,"[\""Tablet\""]",4194.31,"{\"": \""7%\""}",43376,1,"""Asia""" +2023-01-10,16204,9873,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2225.18,"{\""loyalty\"": \""23%\""}",28998,0,"""Africa""" +2024-12-24,16205,7319,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4376.19,"{\"": \""13%\""}",20821,1,"""Asia""" +2024-05-03,16206,6662,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2101.14,{},286619,1,"""Asia""" +2023-01-03,16207,7275,"[\""Phone\""]",628.39,{},203080,1,"""North America""" +2023-08-29,16208,7641,"[\""Monitor\"", \""Keyboard\""]",3959.85,{},191703,1,"""North America""" +2024-01-05,16209,5257,"[\""Tablet\"", \""Laptop\""]",3431.75,{},7901,1,"""Europe""" +2024-07-13,16210,972,"[\""Headphones\""]",4104.3,"{\"": \""19%\""}",134993,0,"""Africa""" +2023-09-28,16211,9298,"[\""Monitor\"", \""Wireless Mouse\""]",3857.72,{},194293,1,"""North America""" +2024-03-07,16212,6040,"[\""Charger\"", \""Phone\""]",3848.11,{},20174,1,"""Europe""" +2023-11-30,16213,9318,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",504.19,{},23445,0,"""Asia""" +2023-09-07,16214,3031,"[\""Headphones\"", \""Wireless Mouse\""]",4823.51,{},274280,0,"""Europe""" +2023-03-08,16215,5768,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",262.68,"{\""loyalty\"": \""10%\""}",255548,0,"""North America""" +2024-08-18,16216,2801,"[\""Phone\"", \""Charger\""]",2575.4,"{\""loyalty\"": \""13%\""}",230285,1,"""Africa""" +2024-11-15,16217,1608,"[\""Monitor\"", \""Charger\""]",2681.13,"{\"": \""14%\""}",182866,1,"""Africa""" +2023-09-04,16218,6052,"[\""Headphones\"", \""Phone\""]",4073.46,"{\""loyalty\"": \""25%\""}",60320,0,"""North America""" +2023-05-13,16219,2767,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3453.97,{},75467,1,"""Asia""" +2024-01-08,16220,7945,"[\""Monitor\"", \""Tablet\""]",3239.06,{},187756,0,"""North America""" +2023-10-15,16221,8344,"[\""Wireless Mouse\""]",3750.83,{},141649,0,"""Europe""" +2024-04-13,16222,5864,"[\""Tablet\"", \""Wireless Mouse\""]",3362.55,{},161562,1,"""South America""" +2024-09-21,16223,1096,"[\""Laptop\"", \""Keyboard\""]",1974.11,"{\""seasonal\"": \""28%\""}",83048,0,"""Asia""" +2024-02-04,16224,7018,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4022.41,"{\"": \""8%\""}",79430,0,"""North America""" +2023-12-11,16225,1544,"[\""Monitor\""]",3174.12,"{\""seasonal\"": \""5%\""}",270110,1,"""Asia""" +2024-08-26,16226,4581,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3348.36,"{\""loyalty\"": \""30%\""}",101998,1,"""Africa""" +2023-01-22,16227,1788,"[\""Phone\""]",2301.35,"{\""loyalty\"": \""13%\""}",170612,1,"""Europe""" +2024-11-11,16228,5518,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4122.08,"{\""promo\"": \""6%\""}",45304,0,"""Asia""" +2024-08-23,16229,730,"[\""Tablet\""]",1825.35,{},256785,1,"""South America""" +2023-10-20,16230,832,"[\""Laptop\"", \""Charger\""]",3853.76,"{\""promo\"": \""20%\""}",68289,0,"""North America""" +2023-11-18,16231,8750,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4558.48,{},78800,0,"""North America""" +2024-08-20,16232,1024,"[\""Charger\""]",2337.94,"{\""loyalty\"": \""12%\""}",291393,0,"""North America""" +2023-07-06,16233,8159,"[\""Headphones\"", \""Wireless Mouse\""]",2756.6,{},26390,0,"""Asia""" +2024-08-31,16234,7937,"[\""Charger\"", \""Keyboard\""]",3329.83,{},69963,1,"""Asia""" +2024-09-29,16235,2909,"[\""Phone\""]",1340.29,{},193129,0,"""Europe""" +2023-10-21,16236,3923,"[\""Headphones\"", \""Laptop\""]",2811.96,"{\""loyalty\"": \""17%\""}",220297,1,"""Europe""" +2024-06-11,16237,9531,"[\""Headphones\"", \""Charger\""]",3554.91,{},217235,0,"""Africa""" +2023-04-19,16238,6357,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1714.15,{},217713,1,"""South America""" +2023-07-05,16239,5560,"[\""Tablet\"", \""Keyboard\""]",4291.5,{},194642,0,"""Europe""" +2024-11-21,16240,9129,"[\""Headphones\""]",2380.96,{},295952,0,"""Asia""" +2023-04-21,16241,738,"[\""Headphones\"", \""Phone\""]",3558.96,"{\""loyalty\"": \""22%\""}",39996,0,"""Africa""" +2023-10-23,16242,3213,"[\""Wireless Mouse\"", \""Phone\""]",498.64,{},211108,1,"""North America""" +2023-09-04,16243,739,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3500.15,"{\""seasonal\"": \""5%\""}",267625,1,"""Asia""" +2024-06-17,16244,2245,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",245.1,"{\""seasonal\"": \""19%\""}",237655,1,"""South America""" +2024-06-29,16245,9213,"[\""Keyboard\""]",1565.34,"{\""loyalty\"": \""6%\""}",117924,0,"""Asia""" +2023-08-21,16246,9904,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1735.91,{},28949,0,"""North America""" +2023-07-20,16247,1664,"[\""Tablet\"", \""Monitor\""]",4250.26,"{\""promo\"": \""15%\""}",56403,0,"""South America""" +2024-02-23,16248,2814,"[\""Phone\""]",4294.85,"{\"": \""15%\""}",141827,1,"""Asia""" +2024-10-01,16249,4774,"[\""Laptop\""]",326.42,"{\""loyalty\"": \""10%\""}",134889,1,"""Asia""" +2024-08-01,16250,1773,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",842.1,"{\"": \""24%\""}",239521,1,"""Europe""" +2024-01-16,16251,9305,"[\""Headphones\""]",3806.24,{},62971,1,"""Europe""" +2023-03-31,16252,5564,"[\""Laptop\"", \""Keyboard\""]",3730.29,{},198454,1,"""Asia""" +2024-12-20,16253,2780,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1162.28,"{\""promo\"": \""9%\""}",135594,1,"""Europe""" +2024-08-12,16254,363,"[\""Phone\""]",2462.97,"{\""promo\"": \""11%\""}",58285,1,"""Asia""" +2024-10-06,16255,587,"[\""Tablet\""]",4154.07,{},276981,0,"""North America""" +2023-09-21,16256,707,"[\""Charger\""]",3771.08,"{\""loyalty\"": \""19%\""}",131475,1,"""Africa""" +2023-07-20,16257,2422,"[\""Tablet\"", \""Keyboard\""]",2673.68,"{\""promo\"": \""20%\""}",35566,1,"""South America""" +2024-10-04,16258,1665,"[\""Monitor\""]",290.83,{},17143,0,"""North America""" +2024-01-01,16259,2078,"[\""Laptop\"", \""Charger\""]",2327.5,"{\""seasonal\"": \""27%\""}",295407,0,"""South America""" +2023-12-18,16260,9201,"[\""Headphones\""]",4879.8,{},64003,0,"""South America""" +2024-08-10,16261,2958,"[\""Headphones\""]",3015.29,"{\""promo\"": \""13%\""}",26757,1,"""Asia""" +2023-11-15,16262,892,"[\""Charger\""]",4548.93,"{\"": \""10%\""}",108364,1,"""Europe""" +2023-04-03,16263,8081,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3738.16,{},81702,1,"""South America""" +2023-07-14,16264,8866,"[\""Wireless Mouse\"", \""Charger\""]",1280.0,{},12677,0,"""Africa""" +2023-03-18,16265,7804,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3985.61,{},157628,0,"""South America""" +2024-01-18,16266,6730,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3177.65,{},164536,0,"""Europe""" +2024-09-21,16267,5067,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2537.57,{},209160,1,"""South America""" +2023-08-26,16268,7450,"[\""Wireless Mouse\""]",89.43,"{\""loyalty\"": \""24%\""}",217261,0,"""South America""" +2023-03-07,16269,1146,"[\""Phone\"", \""Tablet\""]",3263.21,{},203485,0,"""North America""" +2024-09-18,16270,3342,"[\""Tablet\"", \""Monitor\""]",3575.06,{},260730,1,"""Europe""" +2023-09-07,16271,7831,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1429.29,{},111938,1,"""Europe""" +2023-09-06,16272,3245,"[\""Laptop\""]",3464.05,{},20490,1,"""Asia""" +2023-07-30,16273,8900,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1874.62,{},233073,1,"""Europe""" +2023-11-29,16274,6743,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1950.43,{},58049,0,"""North America""" +2023-12-20,16275,2697,"[\""Tablet\"", \""Headphones\""]",222.3,"{\""seasonal\"": \""30%\""}",109197,0,"""Asia""" +2024-08-21,16276,2187,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1085.24,"{\""loyalty\"": \""14%\""}",5470,0,"""Africa""" +2023-09-03,16277,2221,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",309.56,{},194079,1,"""South America""" +2023-09-02,16278,5723,"[\""Phone\"", \""Charger\""]",4540.79,{},24874,0,"""South America""" +2024-05-21,16279,2190,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2804.86,{},80117,0,"""Europe""" +2023-12-07,16280,674,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",559.04,"{\""loyalty\"": \""6%\""}",221162,1,"""South America""" +2024-07-27,16281,6991,"[\""Charger\""]",3408.58,{},8780,1,"""Europe""" +2024-02-29,16282,2876,"[\""Monitor\"", \""Tablet\""]",4766.37,{},152745,0,"""Africa""" +2024-11-06,16283,5939,"[\""Monitor\"", \""Wireless Mouse\""]",3997.89,"{\"": \""14%\""}",184372,0,"""North America""" +2024-01-06,16284,2797,"[\""Headphones\""]",3895.66,"{\""seasonal\"": \""22%\""}",205906,0,"""North America""" +2023-07-02,16285,4616,"[\""Monitor\""]",170.42,{},20956,1,"""North America""" +2024-06-21,16286,6458,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1232.73,{},18254,1,"""Asia""" +2023-06-01,16287,481,"[\""Monitor\""]",3444.75,"{\""seasonal\"": \""21%\""}",28176,0,"""Africa""" +2023-05-11,16288,394,"[\""Keyboard\""]",3289.74,{},269496,1,"""Asia""" +2024-12-24,16289,6317,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",978.44,{},61479,1,"""North America""" +2024-09-28,16290,6661,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2729.1,{},274377,0,"""North America""" +2023-09-17,16291,95,"[\""Monitor\""]",3907.17,"{\""seasonal\"": \""12%\""}",295348,1,"""Asia""" +2024-12-16,16292,9701,"[\""Phone\"", \""Headphones\""]",639.07,{},122193,0,"""South America""" +2024-11-30,16293,4650,"[\""Monitor\""]",2519.29,{},247733,0,"""Asia""" +2024-02-19,16294,9253,"[\""Monitor\"", \""Tablet\""]",1801.93,{},47225,1,"""South America""" +2023-12-27,16295,8998,"[\""Monitor\""]",1858.92,{},9060,1,"""South America""" +2024-06-08,16296,267,"[\""Monitor\""]",2002.66,{},93254,0,"""Europe""" +2024-12-18,16297,8918,"[\""Charger\""]",4002.99,{},132987,1,"""Africa""" +2023-07-18,16298,8303,"[\""Keyboard\""]",1932.35,{},14636,0,"""Asia""" +2023-05-07,16299,3659,"[\""Tablet\""]",3280.37,{},220370,1,"""South America""" +2023-08-27,16300,9839,"[\""Laptop\"", \""Monitor\""]",4093.91,"{\""seasonal\"": \""9%\""}",33865,0,"""Asia""" +2024-06-14,16301,7401,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3198.26,"{\""seasonal\"": \""14%\""}",18973,1,"""North America""" +2024-06-21,16302,3359,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",868.06,{},194935,0,"""Europe""" +2024-04-10,16303,3402,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4226.66,{},241784,0,"""North America""" +2024-07-25,16304,7501,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4710.91,{},113322,1,"""South America""" +2024-07-14,16305,7495,"[\""Laptop\""]",2664.36,"{\""loyalty\"": \""14%\""}",61457,0,"""Europe""" +2024-04-13,16306,6280,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",157.24,{},130285,0,"""Africa""" +2023-08-25,16307,3952,"[\""Wireless Mouse\""]",3799.81,{},247267,1,"""Asia""" +2023-04-30,16308,3862,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3378.08,{},210997,0,"""North America""" +2024-11-28,16309,9020,"[\""Headphones\""]",1044.89,"{\""promo\"": \""25%\""}",237287,0,"""Europe""" +2023-03-27,16310,6354,"[\""Headphones\""]",1610.32,"{\""promo\"": \""23%\""}",171608,1,"""Asia""" +2024-01-05,16311,2007,"[\""Laptop\"", \""Tablet\""]",4715.09,{},208114,0,"""Europe""" +2024-06-11,16312,7160,"[\""Monitor\"", \""Laptop\""]",4369.16,"{\""promo\"": \""12%\""}",3810,1,"""Europe""" +2024-05-18,16313,5994,"[\""Laptop\"", \""Keyboard\""]",4633.49,{},167691,1,"""South America""" +2024-01-19,16314,5111,"[\""Charger\""]",3497.4,"{\"": \""12%\""}",231370,0,"""South America""" +2024-08-20,16315,2813,"[\""Tablet\""]",4537.05,{},6099,1,"""Asia""" +2024-10-06,16316,7451,"[\""Charger\""]",943.22,"{\"": \""26%\""}",176565,1,"""Africa""" +2024-12-27,16317,5500,"[\""Headphones\""]",2916.52,"{\""promo\"": \""9%\""}",21325,0,"""Europe""" +2023-03-02,16318,5927,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4941.45,{},113367,1,"""Asia""" +2024-05-18,16319,5960,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4733.57,{},34424,1,"""Africa""" +2023-10-29,16320,2894,"[\""Charger\"", \""Wireless Mouse\""]",1872.89,"{\""loyalty\"": \""12%\""}",96086,0,"""Europe""" +2024-04-04,16321,3347,"[\""Headphones\"", \""Monitor\""]",2367.78,{},69325,0,"""Europe""" +2024-06-29,16322,7677,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2548.29,"{\""promo\"": \""9%\""}",4034,1,"""South America""" +2023-01-19,16323,6372,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",880.57,"{\""loyalty\"": \""16%\""}",141847,1,"""North America""" +2024-11-02,16324,2243,"[\""Charger\""]",2755.0,{},13768,0,"""Asia""" +2023-09-18,16325,6948,"[\""Tablet\"", \""Phone\""]",1502.15,"{\""seasonal\"": \""11%\""}",36162,1,"""Europe""" +2023-06-11,16326,2468,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2824.02,"{\""loyalty\"": \""15%\""}",192615,1,"""Europe""" +2024-06-17,16327,8477,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4603.85,{},280695,0,"""Asia""" +2024-02-17,16328,6227,"[\""Laptop\""]",3750.19,{},229227,0,"""South America""" +2023-12-31,16329,5887,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1293.3,{},216395,1,"""South America""" +2024-07-24,16330,9701,"[\""Monitor\"", \""Keyboard\""]",1249.25,{},49343,1,"""Europe""" +2023-12-10,16331,2851,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1149.67,{},203111,1,"""Asia""" +2024-09-08,16332,7325,"[\""Charger\""]",3136.87,{},157716,1,"""South America""" +2024-10-06,16333,5186,"[\""Tablet\"", \""Keyboard\""]",4739.63,"{\"": \""30%\""}",231429,0,"""South America""" +2024-01-10,16334,4487,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3602.5,"{\""promo\"": \""7%\""}",69103,0,"""South America""" +2023-07-28,16335,5045,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2269.87,"{\""promo\"": \""16%\""}",214039,0,"""South America""" +2024-03-14,16336,7493,"[\""Keyboard\""]",1573.74,{},260035,0,"""Europe""" +2024-05-05,16337,6795,"[\""Wireless Mouse\""]",3690.89,"{\""promo\"": \""12%\""}",179649,0,"""North America""" +2023-12-16,16338,7319,"[\""Monitor\""]",2806.26,"{\"": \""29%\""}",82236,0,"""North America""" +2023-07-12,16339,8028,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4056.47,"{\""seasonal\"": \""18%\""}",9948,1,"""Africa""" +2024-09-01,16340,1587,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4097.0,"{\""loyalty\"": \""9%\""}",279050,1,"""Europe""" +2023-12-13,16341,1740,"[\""Keyboard\""]",3317.61,{},15216,0,"""Africa""" +2024-04-11,16342,7848,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",592.06,"{\"": \""27%\""}",108518,1,"""Africa""" +2023-09-24,16343,1645,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3405.7,{},198314,1,"""Europe""" +2024-07-24,16344,7958,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3232.71,"{\"": \""23%\""}",170324,0,"""Asia""" +2023-02-06,16345,7666,"[\""Phone\""]",3430.08,{},233023,1,"""Asia""" +2024-02-10,16346,5135,"[\""Headphones\"", \""Keyboard\""]",2719.98,{},226143,0,"""Europe""" +2024-03-30,16347,6688,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3332.59,"{\"": \""16%\""}",221062,1,"""Asia""" +2024-11-05,16348,6068,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2861.96,{},137170,1,"""South America""" +2024-09-18,16349,79,"[\""Laptop\"", \""Phone\""]",2589.51,{},239376,1,"""North America""" +2023-08-26,16350,4219,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3898.17,"{\""loyalty\"": \""24%\""}",157670,0,"""South America""" +2023-02-09,16351,3028,"[\""Wireless Mouse\"", \""Laptop\""]",1244.28,"{\""loyalty\"": \""8%\""}",277069,0,"""South America""" +2024-08-23,16352,3660,"[\""Charger\""]",3926.58,"{\"": \""5%\""}",233317,0,"""Asia""" +2024-06-17,16353,6842,"[\""Charger\"", \""Keyboard\""]",1543.31,"{\""promo\"": \""20%\""}",106261,0,"""North America""" +2024-03-23,16354,7478,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1308.79,{},155324,0,"""Europe""" +2024-07-29,16355,5498,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1746.8,{},157493,1,"""Africa""" +2024-12-10,16356,6623,"[\""Tablet\""]",693.38,"{\""promo\"": \""5%\""}",98525,1,"""North America""" +2023-02-06,16357,1912,"[\""Wireless Mouse\""]",2854.95,{},88078,1,"""North America""" +2023-04-07,16358,5796,"[\""Monitor\""]",3805.34,{},168359,1,"""South America""" +2024-07-08,16359,4392,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2307.29,{},150314,1,"""South America""" +2023-10-10,16360,799,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3267.41,{},243168,0,"""North America""" +2024-07-20,16361,6500,"[\""Charger\""]",4559.74,"{\"": \""5%\""}",75044,0,"""Europe""" +2024-11-29,16362,44,"[\""Headphones\"", \""Phone\""]",4469.68,"{\""loyalty\"": \""30%\""}",80368,1,"""Africa""" +2023-03-12,16363,5361,"[\""Laptop\""]",62.6,{},126212,1,"""Africa""" +2023-10-25,16364,8599,"[\""Keyboard\"", \""Headphones\""]",1993.97,"{\""promo\"": \""24%\""}",238978,1,"""Asia""" +2023-10-14,16365,1836,"[\""Tablet\"", \""Headphones\""]",2139.3,"{\""seasonal\"": \""21%\""}",298333,0,"""Asia""" +2024-11-20,16366,7326,"[\""Laptop\""]",3203.34,"{\""seasonal\"": \""11%\""}",133670,1,"""North America""" +2023-03-19,16367,7307,"[\""Monitor\""]",146.28,"{\""seasonal\"": \""20%\""}",278185,0,"""Africa""" +2024-11-14,16368,7695,"[\""Phone\"", \""Keyboard\""]",2767.63,{},35388,0,"""Africa""" +2024-12-26,16369,5837,"[\""Keyboard\"", \""Charger\""]",3037.18,{},65628,0,"""Africa""" +2024-04-07,16370,564,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2449.77,"{\""seasonal\"": \""27%\""}",244028,0,"""South America""" +2024-04-26,16371,2654,"[\""Tablet\"", \""Charger\""]",1017.11,"{\""loyalty\"": \""7%\""}",154915,0,"""South America""" +2023-06-15,16372,8162,"[\""Monitor\"", \""Keyboard\""]",143.09,"{\""seasonal\"": \""21%\""}",33246,1,"""North America""" +2024-02-25,16373,268,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",136.97,"{\""promo\"": \""6%\""}",268101,1,"""Asia""" +2023-05-23,16374,6566,"[\""Monitor\"", \""Charger\""]",4203.62,{},74394,0,"""Asia""" +2024-04-01,16375,705,"[\""Headphones\""]",474.02,"{\""seasonal\"": \""17%\""}",288362,1,"""Africa""" +2023-04-10,16376,9295,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4700.18,"{\"": \""8%\""}",8114,0,"""Asia""" +2024-09-20,16377,6342,"[\""Keyboard\""]",169.01,"{\""loyalty\"": \""10%\""}",103404,1,"""North America""" +2024-02-01,16378,7471,"[\""Wireless Mouse\""]",3401.23,"{\""promo\"": \""27%\""}",232509,1,"""North America""" +2024-04-01,16379,7121,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3483.53,"{\""loyalty\"": \""12%\""}",138647,0,"""Asia""" +2024-03-10,16380,5991,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3699.92,{},135810,1,"""Asia""" +2023-10-23,16381,9089,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1947.92,{},220604,0,"""Europe""" +2024-07-10,16382,4090,"[\""Tablet\"", \""Laptop\""]",1751.01,"{\"": \""19%\""}",215360,0,"""North America""" +2024-07-23,16383,3075,"[\""Charger\""]",4205.1,{},104166,0,"""Africa""" +2024-01-11,16384,7845,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4808.94,{},1217,1,"""Europe""" +2024-02-16,16385,518,"[\""Keyboard\""]",4981.12,"{\""loyalty\"": \""24%\""}",71473,1,"""North America""" +2023-06-20,16386,6254,"[\""Laptop\"", \""Phone\""]",1520.41,"{\""loyalty\"": \""6%\""}",267885,0,"""Africa""" +2024-05-22,16387,1535,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1699.51,{},123470,1,"""Asia""" +2024-09-06,16388,7087,"[\""Laptop\"", \""Phone\""]",2365.13,{},174367,0,"""Europe""" +2023-11-29,16389,1159,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",695.25,"{\""seasonal\"": \""23%\""}",56423,0,"""Europe""" +2024-03-13,16390,749,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3396.28,"{\""seasonal\"": \""17%\""}",6288,1,"""Europe""" +2023-05-12,16391,2857,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3535.72,{},152388,0,"""Africa""" +2023-07-16,16392,256,"[\""Headphones\""]",3531.11,"{\""seasonal\"": \""11%\""}",198879,1,"""Africa""" +2024-04-10,16393,3038,"[\""Wireless Mouse\"", \""Monitor\""]",4537.42,"{\"": \""18%\""}",205874,1,"""Africa""" +2023-07-04,16394,4651,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",529.15,{},77332,1,"""South America""" +2023-06-09,16395,1339,"[\""Monitor\"", \""Tablet\""]",263.98,{},149648,0,"""South America""" +2024-10-25,16396,6608,"[\""Keyboard\"", \""Laptop\""]",2908.77,"{\""seasonal\"": \""17%\""}",29450,1,"""Africa""" +2023-09-30,16397,9850,"[\""Monitor\""]",317.86,"{\""promo\"": \""15%\""}",213389,1,"""North America""" +2024-11-15,16398,9783,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4072.15,"{\""seasonal\"": \""8%\""}",298488,0,"""Europe""" +2024-03-19,16399,4040,"[\""Charger\"", \""Headphones\""]",4145.78,"{\""promo\"": \""8%\""}",69703,1,"""Africa""" +2023-02-14,16400,6299,"[\""Headphones\"", \""Tablet\""]",4346.53,{},92890,1,"""Africa""" +2024-11-29,16401,1763,"[\""Keyboard\"", \""Tablet\""]",3216.17,"{\"": \""20%\""}",38328,0,"""South America""" +2024-09-24,16402,7524,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4214.71,{},7092,0,"""South America""" +2023-01-29,16403,6114,"[\""Laptop\"", \""Monitor\""]",1530.92,"{\""seasonal\"": \""17%\""}",226296,0,"""North America""" +2024-03-11,16404,8382,"[\""Wireless Mouse\""]",3041.36,"{\""loyalty\"": \""24%\""}",231954,0,"""North America""" +2023-08-06,16405,7930,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",761.56,"{\""seasonal\"": \""27%\""}",209979,0,"""South America""" +2023-07-25,16406,4418,"[\""Monitor\""]",73.41,"{\""promo\"": \""13%\""}",174026,0,"""Asia""" +2023-04-09,16407,9034,"[\""Keyboard\"", \""Charger\""]",2643.06,{},4768,0,"""South America""" +2023-10-22,16408,4598,"[\""Monitor\""]",2391.84,{},262020,0,"""North America""" +2023-12-25,16409,3750,"[\""Headphones\"", \""Laptop\""]",4668.13,{},211040,1,"""North America""" +2024-01-27,16410,2304,"[\""Wireless Mouse\""]",4026.35,{},24978,1,"""Europe""" +2024-10-29,16411,4519,"[\""Charger\"", \""Keyboard\""]",1873.78,"{\""loyalty\"": \""20%\""}",86692,0,"""Asia""" +2024-04-20,16412,4956,"[\""Tablet\"", \""Wireless Mouse\""]",2673.61,{},289068,1,"""Asia""" +2024-12-01,16413,4472,"[\""Charger\"", \""Phone\""]",4031.39,"{\""loyalty\"": \""28%\""}",241093,1,"""South America""" +2023-07-31,16414,8505,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1472.73,"{\""loyalty\"": \""25%\""}",217936,0,"""North America""" +2023-11-19,16415,1901,"[\""Headphones\""]",4014.83,{},185596,1,"""South America""" +2024-05-24,16416,8377,"[\""Wireless Mouse\""]",1052.11,"{\""promo\"": \""9%\""}",61422,1,"""Africa""" +2024-08-06,16417,8747,"[\""Wireless Mouse\""]",3948.81,{},166068,1,"""Europe""" +2023-09-15,16418,4192,"[\""Laptop\"", \""Tablet\""]",1056.19,"{\""loyalty\"": \""28%\""}",102014,0,"""Europe""" +2024-04-15,16419,7534,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1708.29,"{\"": \""24%\""}",185319,1,"""Europe""" +2024-11-30,16420,9637,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3308.64,{},187627,1,"""Asia""" +2023-08-31,16421,8338,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3610.41,"{\"": \""12%\""}",161667,1,"""Africa""" +2024-07-14,16422,5376,"[\""Headphones\""]",297.72,"{\""promo\"": \""22%\""}",150793,0,"""Europe""" +2024-03-02,16423,9444,"[\""Phone\"", \""Monitor\""]",4767.46,{},98055,1,"""Asia""" +2024-08-23,16424,442,"[\""Charger\""]",1361.99,"{\""loyalty\"": \""12%\""}",186893,0,"""Europe""" +2024-06-06,16425,3592,"[\""Laptop\""]",3350.87,{},172755,1,"""Europe""" +2023-03-27,16426,826,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3318.28,{},148372,0,"""Africa""" +2023-11-28,16427,7315,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3561.2,{},239464,1,"""South America""" +2024-02-22,16428,2628,"[\""Keyboard\"", \""Wireless Mouse\""]",1301.49,"{\"": \""29%\""}",225568,0,"""North America""" +2024-07-27,16429,1519,"[\""Keyboard\""]",676.61,{},32027,1,"""Europe""" +2023-04-18,16430,6925,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4184.07,"{\""promo\"": \""15%\""}",96159,1,"""Africa""" +2024-11-29,16431,6724,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1086.34,"{\""seasonal\"": \""16%\""}",271834,0,"""Europe""" +2023-11-01,16432,6067,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1783.19,{},15661,0,"""Africa""" +2024-02-11,16433,9452,"[\""Monitor\"", \""Wireless Mouse\""]",4349.13,"{\"": \""8%\""}",68663,1,"""North America""" +2023-10-18,16434,7109,"[\""Keyboard\"", \""Monitor\""]",2688.43,{},27324,0,"""North America""" +2023-12-21,16435,6042,"[\""Keyboard\""]",1947.78,"{\""promo\"": \""18%\""}",35984,0,"""Asia""" +2024-06-25,16436,9623,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4546.94,{},173688,1,"""Europe""" +2023-12-04,16437,7067,"[\""Laptop\"", \""Monitor\""]",1505.24,{},169913,1,"""Asia""" +2024-08-29,16438,7820,"[\""Headphones\"", \""Monitor\""]",2502.92,"{\"": \""27%\""}",215824,0,"""South America""" +2024-02-13,16439,426,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2243.24,{},63091,1,"""South America""" +2024-05-05,16440,4038,"[\""Charger\"", \""Wireless Mouse\""]",4189.14,{},157747,0,"""Africa""" +2023-04-21,16441,293,"[\""Phone\""]",712.1,"{\""seasonal\"": \""11%\""}",234871,1,"""South America""" +2024-01-10,16442,5973,"[\""Laptop\"", \""Charger\""]",740.75,{},150834,1,"""Africa""" +2023-01-11,16443,635,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2663.45,{},2142,0,"""Africa""" +2023-10-30,16444,9226,"[\""Laptop\""]",58.31,"{\""promo\"": \""6%\""}",71514,0,"""Europe""" +2024-06-17,16445,4246,"[\""Wireless Mouse\""]",4387.85,"{\""loyalty\"": \""5%\""}",111422,0,"""Africa""" +2023-10-29,16446,6548,"[\""Phone\"", \""Keyboard\""]",2434.46,{},40264,1,"""Africa""" +2024-04-04,16447,3028,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3680.77,{},22485,1,"""Europe""" +2024-04-11,16448,9507,"[\""Phone\"", \""Monitor\""]",1739.1,"{\""seasonal\"": \""27%\""}",160905,1,"""Africa""" +2023-04-13,16449,4863,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3608.29,"{\"": \""22%\""}",45230,0,"""Europe""" +2024-12-24,16450,1888,"[\""Charger\"", \""Keyboard\""]",1117.76,{},208432,0,"""South America""" +2023-10-08,16451,1703,"[\""Tablet\""]",2877.82,{},291783,0,"""South America""" +2023-04-27,16452,323,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",670.29,{},67638,0,"""Asia""" +2024-08-15,16453,5070,"[\""Charger\"", \""Headphones\""]",4881.59,"{\""loyalty\"": \""6%\""}",282632,0,"""North America""" +2024-12-31,16454,9019,"[\""Keyboard\""]",220.35,"{\"": \""24%\""}",107730,1,"""Asia""" +2023-07-25,16455,3570,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",558.93,"{\""loyalty\"": \""15%\""}",254141,1,"""South America""" +2024-06-13,16456,5138,"[\""Charger\""]",3390.07,{},127861,0,"""Europe""" +2023-09-15,16457,4429,"[\""Charger\"", \""Wireless Mouse\""]",4176.63,{},78455,1,"""Africa""" +2023-12-24,16458,5251,"[\""Tablet\"", \""Monitor\""]",4759.59,{},17374,1,"""South America""" +2024-11-27,16459,1267,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",761.3,"{\"": \""24%\""}",270653,0,"""Asia""" +2023-12-14,16460,6461,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",612.97,{},204024,1,"""South America""" +2023-12-10,16461,9505,"[\""Phone\"", \""Charger\""]",4261.98,{},182787,0,"""North America""" +2024-10-26,16462,1664,"[\""Headphones\"", \""Keyboard\""]",3771.04,"{\""promo\"": \""8%\""}",53982,1,"""Asia""" +2023-11-02,16463,1071,"[\""Wireless Mouse\""]",2529.37,{},77309,1,"""Europe""" +2024-01-07,16464,9188,"[\""Keyboard\""]",121.52,{},261104,0,"""South America""" +2023-05-24,16465,7800,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",990.82,"{\"": \""28%\""}",265810,0,"""Asia""" +2024-05-06,16466,6363,"[\""Wireless Mouse\"", \""Laptop\""]",4365.55,{},145319,1,"""North America""" +2023-02-16,16467,5198,"[\""Charger\""]",2900.24,{},29583,0,"""South America""" +2023-10-11,16468,3519,"[\""Laptop\"", \""Charger\""]",1135.91,{},180471,0,"""Europe""" +2024-01-24,16469,8669,"[\""Laptop\""]",2917.5,"{\""loyalty\"": \""7%\""}",167893,0,"""Africa""" +2024-03-16,16470,638,"[\""Monitor\""]",813.52,"{\""seasonal\"": \""18%\""}",69520,0,"""Africa""" +2024-03-29,16471,7537,"[\""Headphones\"", \""Laptop\""]",2429.68,{},145495,1,"""Asia""" +2024-12-13,16472,7871,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1595.59,{},252584,0,"""Europe""" +2023-12-27,16473,4106,"[\""Charger\"", \""Phone\""]",2621.84,"{\""loyalty\"": \""7%\""}",134360,1,"""North America""" +2024-05-12,16474,6199,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3649.25,"{\""seasonal\"": \""8%\""}",93606,1,"""North America""" +2024-01-17,16475,108,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4760.5,"{\""promo\"": \""14%\""}",28296,1,"""North America""" +2024-10-11,16476,5957,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3891.67,"{\""seasonal\"": \""11%\""}",242546,0,"""North America""" +2023-10-16,16477,4366,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3560.1,{},245636,0,"""North America""" +2023-05-16,16478,1988,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1234.56,{},21469,1,"""South America""" +2023-03-02,16479,9706,"[\""Wireless Mouse\""]",2537.31,{},61204,1,"""Africa""" +2023-10-01,16480,5599,"[\""Phone\"", \""Monitor\""]",3654.44,"{\"": \""7%\""}",56650,0,"""Europe""" +2023-01-18,16481,2919,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2209.86,{},131789,0,"""North America""" +2023-09-14,16482,6286,"[\""Keyboard\""]",4502.68,"{\""loyalty\"": \""30%\""}",149090,1,"""North America""" +2024-05-10,16483,2163,"[\""Tablet\"", \""Laptop\""]",2622.46,{},193813,1,"""South America""" +2024-07-16,16484,7416,"[\""Wireless Mouse\""]",1557.41,{},92122,1,"""South America""" +2023-01-03,16485,83,"[\""Monitor\""]",3727.13,"{\""seasonal\"": \""13%\""}",216096,1,"""Europe""" +2024-05-01,16486,789,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1518.57,{},100662,1,"""Africa""" +2023-05-27,16487,492,"[\""Charger\""]",152.83,"{\""loyalty\"": \""13%\""}",138960,0,"""Asia""" +2023-05-21,16488,8077,"[\""Charger\"", \""Tablet\""]",1741.16,"{\"": \""24%\""}",178291,1,"""South America""" +2024-09-24,16489,1251,"[\""Laptop\"", \""Charger\""]",402.8,{},265021,1,"""Europe""" +2024-03-10,16490,720,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1632.46,{},188004,1,"""North America""" +2024-10-16,16491,807,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4006.4,{},74721,1,"""Africa""" +2024-04-28,16492,6973,"[\""Monitor\"", \""Charger\"", \""Phone\""]",653.63,{},114064,1,"""Africa""" +2023-09-02,16493,9850,"[\""Headphones\""]",2081.5,{},8944,1,"""Africa""" +2023-02-05,16494,997,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1127.49,"{\""seasonal\"": \""7%\""}",239868,1,"""Asia""" +2023-03-04,16495,9501,"[\""Laptop\""]",3878.12,"{\""seasonal\"": \""22%\""}",130602,0,"""South America""" +2023-12-24,16496,8162,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4873.29,"{\""promo\"": \""17%\""}",74213,1,"""Europe""" +2023-07-25,16497,9442,"[\""Wireless Mouse\"", \""Tablet\""]",723.71,{},212849,0,"""Europe""" +2024-11-28,16498,3875,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1180.75,"{\""loyalty\"": \""12%\""}",271257,1,"""South America""" +2023-06-10,16499,7799,"[\""Keyboard\"", \""Laptop\""]",118.52,{},19845,0,"""South America""" +2024-12-10,16500,1397,"[\""Monitor\"", \""Headphones\""]",2337.09,{},79700,1,"""Africa""" +2024-03-27,16501,6870,"[\""Monitor\""]",3863.34,"{\"": \""30%\""}",202504,1,"""Africa""" +2023-01-02,16502,6968,"[\""Headphones\""]",2131.72,"{\""loyalty\"": \""18%\""}",233290,0,"""South America""" +2023-02-19,16503,9056,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2198.79,{},90541,1,"""South America""" +2024-07-18,16504,6396,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4829.38,"{\""loyalty\"": \""22%\""}",107106,0,"""South America""" +2023-05-01,16505,5230,"[\""Charger\"", \""Monitor\""]",2761.9,"{\""seasonal\"": \""6%\""}",260097,1,"""Asia""" +2023-08-16,16506,8749,"[\""Monitor\""]",1096.27,{},9710,1,"""Asia""" +2023-10-22,16507,6087,"[\""Tablet\""]",3272.28,{},22289,0,"""Asia""" +2024-06-10,16508,5457,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",389.04,{},45962,1,"""Europe""" +2023-01-13,16509,5159,"[\""Monitor\""]",1260.44,{},282999,0,"""Africa""" +2024-05-05,16510,8334,"[\""Charger\""]",4847.62,"{\"": \""28%\""}",88194,0,"""Europe""" +2024-10-25,16511,9330,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3186.91,{},96285,0,"""Europe""" +2023-10-27,16512,4058,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3970.35,{},138684,1,"""Europe""" +2023-12-24,16513,6105,"[\""Wireless Mouse\""]",1255.37,{},70299,1,"""North America""" +2024-07-05,16514,2220,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2409.92,{},1360,0,"""North America""" +2024-05-14,16515,5382,"[\""Headphones\"", \""Tablet\""]",2693.75,"{\""promo\"": \""23%\""}",110631,1,"""Asia""" +2024-10-13,16516,8245,"[\""Monitor\""]",1334.84,{},277276,0,"""North America""" +2023-08-04,16517,542,"[\""Laptop\"", \""Tablet\""]",3716.98,{},47197,1,"""South America""" +2023-11-05,16518,8771,"[\""Charger\""]",3304.91,{},118897,1,"""Africa""" +2024-03-13,16519,51,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4525.02,{},39546,1,"""North America""" +2024-09-14,16520,3158,"[\""Laptop\""]",4837.57,{},29249,0,"""South America""" +2023-05-15,16521,6720,"[\""Keyboard\"", \""Phone\""]",3412.05,{},127268,1,"""South America""" +2024-12-02,16522,1533,"[\""Wireless Mouse\"", \""Laptop\""]",1871.88,{},82331,0,"""North America""" +2023-07-26,16523,1647,"[\""Wireless Mouse\""]",4810.94,"{\""loyalty\"": \""7%\""}",54279,0,"""Europe""" +2023-08-07,16524,9806,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4528.04,"{\""loyalty\"": \""19%\""}",189509,1,"""Europe""" +2023-03-15,16525,1083,"[\""Tablet\"", \""Charger\""]",2668.58,{},163882,0,"""North America""" +2023-04-15,16526,5391,"[\""Headphones\""]",1641.77,{},80425,0,"""Africa""" +2024-06-08,16527,1517,"[\""Keyboard\""]",1439.84,"{\""loyalty\"": \""23%\""}",81538,0,"""Africa""" +2024-04-12,16528,7953,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4200.59,{},231694,0,"""North America""" +2024-10-16,16529,9741,"[\""Wireless Mouse\"", \""Headphones\""]",613.65,{},197725,1,"""South America""" +2024-08-24,16530,7372,"[\""Laptop\"", \""Tablet\""]",3317.7,"{\"": \""28%\""}",60613,0,"""South America""" +2024-07-17,16531,8314,"[\""Wireless Mouse\""]",3375.49,"{\""promo\"": \""10%\""}",111233,0,"""Europe""" +2024-06-28,16532,3752,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2155.83,{},196214,1,"""Africa""" +2024-10-24,16533,6695,"[\""Monitor\"", \""Wireless Mouse\""]",2854.91,{},249611,0,"""Europe""" +2024-09-17,16534,9439,"[\""Monitor\""]",4056.01,{},220562,0,"""Europe""" +2024-02-20,16535,6855,"[\""Charger\""]",4409.28,{},142461,0,"""Africa""" +2023-01-18,16536,745,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2670.97,{},251526,1,"""North America""" +2023-07-26,16537,4032,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2269.89,{},259872,1,"""North America""" +2024-09-24,16538,7784,"[\""Laptop\""]",1666.26,{},186617,1,"""Asia""" +2024-04-16,16539,730,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3010.28,"{\""seasonal\"": \""10%\""}",96138,1,"""Asia""" +2023-05-20,16540,9014,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2818.44,{},36770,0,"""South America""" +2024-01-27,16541,7458,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2489.98,{},116284,0,"""Europe""" +2024-04-16,16542,6365,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2903.24,"{\""loyalty\"": \""25%\""}",243752,1,"""Africa""" +2023-10-04,16543,3991,"[\""Wireless Mouse\""]",1766.09,{},126660,1,"""South America""" +2023-01-03,16544,8572,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4249.38,{},145455,1,"""South America""" +2023-07-05,16545,491,"[\""Tablet\""]",2311.05,"{\""seasonal\"": \""17%\""}",216672,1,"""North America""" +2023-07-22,16546,5575,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3240.61,{},46122,0,"""Africa""" +2023-09-24,16547,7365,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1439.31,"{\""seasonal\"": \""22%\""}",122836,1,"""Africa""" +2023-06-11,16548,8242,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2987.91,{},72268,0,"""Asia""" +2024-10-25,16549,245,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3260.75,{},34875,1,"""Africa""" +2024-12-26,16550,7094,"[\""Wireless Mouse\"", \""Tablet\""]",1379.5,{},175543,1,"""North America""" +2024-06-27,16551,4170,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3534.31,{},169309,1,"""Africa""" +2024-01-06,16552,6241,"[\""Keyboard\""]",2291.63,{},9631,1,"""Europe""" +2023-08-15,16553,7297,"[\""Laptop\""]",1819.2,{},48617,0,"""Asia""" +2024-11-08,16554,7299,"[\""Phone\""]",2636.04,{},149637,0,"""South America""" +2023-04-27,16555,4919,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2810.88,{},280376,1,"""Asia""" +2024-05-27,16556,9556,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",309.18,{},233142,0,"""South America""" +2024-03-28,16557,4038,"[\""Monitor\""]",1790.91,{},108037,0,"""Africa""" +2024-03-31,16558,2406,"[\""Keyboard\""]",1476.84,"{\""loyalty\"": \""15%\""}",164401,1,"""Europe""" +2023-08-08,16559,2410,"[\""Phone\"", \""Wireless Mouse\""]",3131.11,{},192163,0,"""Europe""" +2024-12-13,16560,4082,"[\""Monitor\""]",4619.64,{},206831,0,"""North America""" +2023-09-08,16561,938,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3812.02,{},255418,1,"""South America""" +2023-08-31,16562,295,"[\""Phone\""]",1023.12,{},108436,1,"""Europe""" +2023-10-21,16563,3224,"[\""Headphones\"", \""Monitor\""]",4131.8,"{\""promo\"": \""19%\""}",65447,1,"""North America""" +2023-05-03,16564,9317,"[\""Phone\"", \""Keyboard\""]",2928.15,"{\""promo\"": \""5%\""}",7128,1,"""Africa""" +2024-05-13,16565,8306,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3918.3,"{\""promo\"": \""5%\""}",158155,0,"""North America""" +2024-12-16,16566,1128,"[\""Tablet\"", \""Wireless Mouse\""]",4902.76,"{\"": \""15%\""}",62060,1,"""Asia""" +2023-02-03,16567,6086,"[\""Charger\"", \""Headphones\""]",2489.04,"{\"": \""29%\""}",145508,0,"""North America""" +2024-12-18,16568,4660,"[\""Keyboard\"", \""Laptop\""]",4115.5,"{\""loyalty\"": \""16%\""}",161761,1,"""Asia""" +2024-04-22,16569,5163,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2278.44,{},231469,1,"""Asia""" +2023-11-24,16570,5990,"[\""Monitor\""]",2834.65,{},108115,0,"""Africa""" +2024-12-07,16571,2676,"[\""Tablet\""]",4199.26,{},71447,1,"""Africa""" +2023-09-04,16572,2541,"[\""Phone\"", \""Wireless Mouse\""]",79.0,{},172233,0,"""Europe""" +2023-11-25,16573,3448,"[\""Headphones\"", \""Monitor\""]",3968.76,"{\"": \""11%\""}",22797,0,"""North America""" +2024-03-18,16574,112,"[\""Monitor\"", \""Wireless Mouse\""]",2568.17,{},279768,0,"""South America""" +2024-10-27,16575,9594,"[\""Keyboard\""]",2878.73,{},173279,1,"""Europe""" +2023-11-05,16576,5570,"[\""Monitor\""]",2688.71,{},66250,1,"""North America""" +2023-08-06,16577,5561,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2614.25,{},252743,0,"""Africa""" +2023-05-09,16578,8796,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2211.29,{},217384,1,"""Europe""" +2023-11-07,16579,3394,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1338.48,{},247289,0,"""North America""" +2023-12-27,16580,197,"[\""Tablet\"", \""Keyboard\""]",4379.61,"{\"": \""23%\""}",32804,1,"""Africa""" +2024-05-04,16581,9777,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4986.94,{},134653,0,"""Europe""" +2023-05-12,16582,9959,"[\""Monitor\""]",678.84,"{\""loyalty\"": \""9%\""}",145883,1,"""North America""" +2024-09-17,16583,6662,"[\""Phone\"", \""Keyboard\""]",1465.35,"{\"": \""15%\""}",286164,1,"""Africa""" +2023-07-28,16584,4061,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",186.26,{},265355,1,"""Africa""" +2024-05-06,16585,739,"[\""Keyboard\"", \""Wireless Mouse\""]",4861.25,"{\"": \""28%\""}",275170,1,"""Asia""" +2023-01-29,16586,604,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4466.16,{},257647,0,"""Asia""" +2023-09-03,16587,3119,"[\""Wireless Mouse\"", \""Phone\""]",4181.03,{},261996,0,"""Africa""" +2023-12-20,16588,9382,"[\""Headphones\"", \""Laptop\""]",479.01,"{\""seasonal\"": \""28%\""}",11829,1,"""North America""" +2023-08-27,16589,2760,"[\""Headphones\""]",1349.66,"{\""loyalty\"": \""11%\""}",115205,0,"""South America""" +2023-01-04,16590,9010,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3965.73,{},272058,1,"""Africa""" +2024-03-14,16591,5971,"[\""Monitor\""]",4776.07,"{\""loyalty\"": \""20%\""}",9662,1,"""South America""" +2023-01-11,16592,5833,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2340.43,"{\""promo\"": \""21%\""}",246104,0,"""Asia""" +2024-01-10,16593,6281,"[\""Charger\"", \""Wireless Mouse\""]",4671.23,"{\""loyalty\"": \""15%\""}",194113,1,"""Africa""" +2023-05-18,16594,7852,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",63.24,{},115488,1,"""North America""" +2024-11-11,16595,9069,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1203.93,"{\""seasonal\"": \""24%\""}",171181,1,"""Asia""" +2024-07-04,16596,4498,"[\""Tablet\""]",1919.44,{},282597,0,"""North America""" +2023-02-25,16597,9166,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2846.63,"{\""loyalty\"": \""13%\""}",36557,0,"""South America""" +2023-03-31,16598,2959,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1978.45,{},191339,1,"""South America""" +2024-10-02,16599,2944,"[\""Phone\"", \""Headphones\""]",3040.12,{},38258,1,"""Europe""" +2024-04-07,16600,747,"[\""Keyboard\""]",170.4,"{\""seasonal\"": \""9%\""}",165479,0,"""Asia""" +2024-09-27,16601,8597,"[\""Charger\"", \""Wireless Mouse\""]",2084.59,{},182415,1,"""Europe""" +2023-05-04,16602,2458,"[\""Laptop\"", \""Tablet\""]",1753.76,"{\"": \""13%\""}",99998,1,"""South America""" +2023-04-01,16603,5620,"[\""Monitor\""]",1418.25,{},170760,1,"""Europe""" +2024-08-30,16604,1794,"[\""Charger\""]",750.12,"{\""seasonal\"": \""24%\""}",199648,0,"""North America""" +2024-09-28,16605,6834,"[\""Tablet\"", \""Phone\""]",1475.07,"{\"": \""24%\""}",124728,0,"""Africa""" +2024-01-20,16606,6369,"[\""Monitor\"", \""Tablet\""]",2311.36,"{\""promo\"": \""24%\""}",66021,1,"""North America""" +2023-01-13,16607,5966,"[\""Phone\"", \""Keyboard\""]",2397.4,"{\""promo\"": \""15%\""}",92737,1,"""Europe""" +2023-04-04,16608,2502,"[\""Laptop\""]",1757.05,"{\""promo\"": \""5%\""}",72654,0,"""Europe""" +2023-01-01,16609,8258,"[\""Monitor\""]",2016.38,"{\""promo\"": \""6%\""}",69589,1,"""Europe""" +2024-10-17,16610,7039,"[\""Charger\""]",442.35,"{\"": \""15%\""}",29628,0,"""Europe""" +2024-09-21,16611,4977,"[\""Tablet\"", \""Monitor\""]",2503.94,{},163441,0,"""North America""" +2023-04-13,16612,3525,"[\""Phone\"", \""Charger\""]",1363.14,"{\""seasonal\"": \""14%\""}",165760,1,"""North America""" +2023-02-08,16613,7631,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3607.41,"{\"": \""15%\""}",269874,1,"""Africa""" +2023-12-23,16614,1165,"[\""Charger\"", \""Monitor\""]",1897.56,{},149566,0,"""Europe""" +2023-07-26,16615,6860,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3313.29,{},260336,1,"""North America""" +2024-12-29,16616,3607,"[\""Monitor\""]",631.66,"{\""promo\"": \""23%\""}",193035,0,"""Asia""" +2023-10-06,16617,5547,"[\""Phone\"", \""Tablet\""]",2657.66,{},237913,0,"""South America""" +2024-05-14,16618,15,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",769.05,"{\""promo\"": \""5%\""}",102274,1,"""Europe""" +2023-11-01,16619,4826,"[\""Charger\""]",419.4,{},233435,1,"""Asia""" +2024-06-12,16620,5082,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4930.7,"{\""loyalty\"": \""27%\""}",30704,0,"""Asia""" +2024-04-19,16621,8186,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",480.88,{},133140,0,"""Europe""" +2024-02-10,16622,4104,"[\""Keyboard\""]",4977.12,{},211802,1,"""Asia""" +2024-02-20,16623,1663,"[\""Laptop\"", \""Monitor\""]",2374.48,"{\""promo\"": \""30%\""}",83762,1,"""Europe""" +2023-09-29,16624,9510,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3269.56,"{\""loyalty\"": \""14%\""}",135862,0,"""Asia""" +2023-06-08,16625,7326,"[\""Phone\""]",4068.88,{},245802,0,"""Africa""" +2024-04-18,16626,4065,"[\""Charger\""]",3577.56,"{\""seasonal\"": \""24%\""}",254628,1,"""North America""" +2023-11-21,16627,1974,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3822.27,{},36617,1,"""Africa""" +2023-05-07,16628,5687,"[\""Wireless Mouse\"", \""Laptop\""]",2583.23,"{\""promo\"": \""7%\""}",114567,0,"""Africa""" +2023-06-23,16629,5756,"[\""Charger\"", \""Tablet\"", \""Phone\""]",367.06,{},141540,1,"""Europe""" +2024-05-10,16630,1432,"[\""Headphones\"", \""Phone\""]",1932.35,{},70651,0,"""Asia""" +2023-02-09,16631,87,"[\""Charger\""]",1271.09,{},194590,1,"""South America""" +2024-04-06,16632,5360,"[\""Phone\""]",1135.62,{},159202,0,"""North America""" +2024-04-08,16633,7650,"[\""Keyboard\"", \""Headphones\""]",3146.53,{},129645,0,"""North America""" +2024-08-27,16634,9230,"[\""Laptop\""]",3168.79,{},136745,1,"""Asia""" +2024-12-07,16635,9845,"[\""Laptop\""]",3603.58,"{\""loyalty\"": \""6%\""}",244887,0,"""Asia""" +2024-06-28,16636,3036,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4906.66,"{\""seasonal\"": \""18%\""}",241005,1,"""North America""" +2024-12-24,16637,6640,"[\""Wireless Mouse\"", \""Monitor\""]",4871.91,"{\""promo\"": \""29%\""}",61537,0,"""North America""" +2024-11-20,16638,4369,"[\""Phone\"", \""Keyboard\""]",2502.53,{},59128,0,"""Asia""" +2023-12-26,16639,4316,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2006.22,"{\""loyalty\"": \""15%\""}",122715,1,"""North America""" +2024-04-10,16640,8118,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1317.31,"{\""loyalty\"": \""5%\""}",188559,0,"""Europe""" +2024-07-09,16641,4778,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3652.09,"{\"": \""12%\""}",29714,0,"""South America""" +2024-06-30,16642,1610,"[\""Laptop\""]",4639.93,"{\""loyalty\"": \""19%\""}",12160,1,"""Africa""" +2023-07-03,16643,7862,"[\""Phone\"", \""Monitor\""]",2569.76,"{\""loyalty\"": \""26%\""}",226462,0,"""Asia""" +2024-01-04,16644,3382,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2500.86,"{\""seasonal\"": \""14%\""}",203259,0,"""Africa""" +2023-01-15,16645,6182,"[\""Tablet\"", \""Charger\""]",1222.51,{},42183,0,"""Africa""" +2023-08-08,16646,1642,"[\""Laptop\""]",3115.77,"{\""loyalty\"": \""28%\""}",162495,0,"""Africa""" +2024-07-31,16647,5658,"[\""Monitor\"", \""Wireless Mouse\""]",1720.98,"{\""loyalty\"": \""10%\""}",95497,0,"""Europe""" +2023-01-30,16648,4173,"[\""Monitor\"", \""Laptop\""]",2530.51,"{\""promo\"": \""12%\""}",146217,0,"""Europe""" +2024-05-05,16649,750,"[\""Charger\"", \""Keyboard\""]",1339.25,"{\""promo\"": \""25%\""}",66752,0,"""Africa""" +2023-01-23,16650,719,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",706.69,{},238579,1,"""North America""" +2023-06-29,16651,8200,"[\""Wireless Mouse\"", \""Charger\""]",832.66,"{\""loyalty\"": \""18%\""}",108235,1,"""North America""" +2024-02-02,16652,292,"[\""Charger\""]",355.99,"{\"": \""20%\""}",66854,1,"""South America""" +2023-11-12,16653,452,"[\""Charger\"", \""Headphones\""]",156.96,"{\""seasonal\"": \""28%\""}",16297,1,"""South America""" +2024-12-15,16654,3102,"[\""Charger\""]",2933.98,"{\""loyalty\"": \""6%\""}",186184,1,"""Africa""" +2024-04-02,16655,3826,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",984.5,{},88106,1,"""Europe""" +2023-04-20,16656,5733,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3452.32,"{\""loyalty\"": \""26%\""}",247902,1,"""Europe""" +2023-06-16,16657,7133,"[\""Phone\""]",4044.48,{},235532,0,"""Africa""" +2023-07-09,16658,8127,"[\""Wireless Mouse\""]",3021.41,{},22395,1,"""South America""" +2023-02-12,16659,1495,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1780.32,{},283976,0,"""Europe""" +2024-11-16,16660,2846,"[\""Wireless Mouse\"", \""Keyboard\""]",4106.67,"{\""promo\"": \""27%\""}",69280,1,"""Africa""" +2023-07-29,16661,9581,"[\""Phone\""]",3076.11,"{\""loyalty\"": \""29%\""}",162878,1,"""North America""" +2024-08-01,16662,2355,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",151.04,"{\""seasonal\"": \""22%\""}",141217,0,"""Africa""" +2023-06-25,16663,6168,"[\""Phone\"", \""Headphones\""]",2207.86,{},123112,1,"""South America""" +2024-11-11,16664,4720,"[\""Headphones\""]",4165.53,"{\"": \""30%\""}",144217,1,"""South America""" +2023-09-02,16665,2313,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3592.32,"{\""loyalty\"": \""24%\""}",114383,1,"""Asia""" +2024-07-29,16666,1084,"[\""Charger\""]",2522.78,{},98503,0,"""Europe""" +2024-05-28,16667,6160,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4763.99,{},38322,1,"""Europe""" +2023-04-03,16668,1884,"[\""Laptop\""]",3932.42,"{\"": \""26%\""}",127067,0,"""South America""" +2023-01-15,16669,3213,"[\""Keyboard\"", \""Wireless Mouse\""]",3606.88,{},224833,0,"""Europe""" +2024-08-07,16670,3482,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3107.71,{},8213,0,"""South America""" +2023-04-21,16671,473,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2157.23,{},5346,0,"""South America""" +2023-12-19,16672,6549,"[\""Monitor\"", \""Laptop\""]",2748.53,"{\""loyalty\"": \""18%\""}",57723,1,"""North America""" +2024-10-31,16673,6706,"[\""Charger\""]",1777.91,{},99286,0,"""Africa""" +2024-03-02,16674,6764,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1504.76,"{\""seasonal\"": \""8%\""}",296791,0,"""North America""" +2024-06-24,16675,8872,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2933.64,"{\""seasonal\"": \""30%\""}",95395,0,"""South America""" +2023-12-24,16676,5756,"[\""Charger\"", \""Keyboard\""]",453.56,{},103220,1,"""North America""" +2024-06-05,16677,2623,"[\""Laptop\""]",2241.48,"{\"": \""15%\""}",174918,0,"""Europe""" +2024-01-29,16678,2411,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4056.77,{},229192,0,"""Asia""" +2023-07-01,16679,6084,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3032.98,{},118653,0,"""North America""" +2024-02-15,16680,7231,"[\""Tablet\"", \""Headphones\""]",2070.56,{},35661,0,"""North America""" +2023-09-26,16681,4519,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1279.66,{},72426,1,"""Africa""" +2024-02-20,16682,8533,"[\""Phone\"", \""Monitor\""]",3443.36,"{\""loyalty\"": \""9%\""}",218633,1,"""Europe""" +2024-08-24,16683,2983,"[\""Charger\"", \""Phone\"", \""Monitor\""]",670.75,{},103985,0,"""North America""" +2023-01-04,16684,4170,"[\""Headphones\""]",3013.63,{},243863,1,"""Europe""" +2024-03-06,16685,9990,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4202.24,"{\""promo\"": \""29%\""}",96093,0,"""North America""" +2024-11-04,16686,6520,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3161.7,"{\""promo\"": \""22%\""}",269643,0,"""South America""" +2023-10-13,16687,8957,"[\""Phone\"", \""Keyboard\""]",368.46,{},2338,1,"""North America""" +2024-09-07,16688,7280,"[\""Phone\"", \""Wireless Mouse\""]",2420.51,{},41542,1,"""Europe""" +2024-05-01,16689,3701,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",92.41,{},192178,1,"""South America""" +2024-08-22,16690,1120,"[\""Laptop\""]",1349.2,"{\"": \""22%\""}",189375,0,"""South America""" +2024-02-12,16691,2794,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1146.15,"{\"": \""5%\""}",83463,0,"""North America""" +2023-03-16,16692,5709,"[\""Headphones\"", \""Tablet\""]",3842.49,{},82132,0,"""Asia""" +2024-04-23,16693,4106,"[\""Keyboard\""]",4585.66,{},79901,1,"""South America""" +2024-09-27,16694,2209,"[\""Headphones\"", \""Monitor\""]",1967.09,{},280641,0,"""Asia""" +2023-10-17,16695,2672,"[\""Phone\"", \""Tablet\""]",4871.35,"{\""seasonal\"": \""19%\""}",280561,0,"""Africa""" +2023-03-28,16696,8086,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2683.08,"{\"": \""28%\""}",288271,1,"""North America""" +2024-04-14,16697,6312,"[\""Charger\""]",2294.23,{},108115,0,"""Europe""" +2023-04-19,16698,2888,"[\""Headphones\"", \""Wireless Mouse\""]",2009.63,{},61541,1,"""Asia""" +2024-02-10,16699,838,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3325.29,"{\"": \""6%\""}",227335,0,"""Asia""" +2023-12-06,16700,3077,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1806.93,{},206366,1,"""South America""" +2023-11-02,16701,4686,"[\""Laptop\"", \""Wireless Mouse\""]",3411.54,"{\""promo\"": \""18%\""}",290102,0,"""Asia""" +2023-01-31,16702,4563,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",562.82,"{\""seasonal\"": \""11%\""}",101448,1,"""Africa""" +2023-10-01,16703,6471,"[\""Keyboard\""]",1898.52,{},229081,1,"""South America""" +2023-03-28,16704,816,"[\""Phone\""]",4521.5,{},69390,0,"""Africa""" +2023-01-30,16705,1130,"[\""Charger\"", \""Phone\""]",4043.33,"{\""seasonal\"": \""28%\""}",254795,0,"""Africa""" +2023-11-27,16706,1911,"[\""Keyboard\"", \""Headphones\""]",2559.47,"{\""seasonal\"": \""11%\""}",283044,0,"""Europe""" +2023-03-27,16707,1296,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4065.83,{},152310,0,"""Asia""" +2024-12-07,16708,7446,"[\""Monitor\""]",3232.43,{},20057,1,"""Asia""" +2023-03-08,16709,4990,"[\""Headphones\"", \""Charger\""]",3553.35,"{\""seasonal\"": \""6%\""}",152323,0,"""Africa""" +2023-11-20,16710,3087,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",626.32,{},90926,1,"""Asia""" +2023-05-21,16711,2369,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",389.32,{},99191,1,"""Europe""" +2024-09-12,16712,7032,"[\""Laptop\""]",1652.47,{},91780,1,"""Asia""" +2023-03-05,16713,3501,"[\""Wireless Mouse\"", \""Charger\""]",278.02,"{\""seasonal\"": \""8%\""}",97777,1,"""Europe""" +2024-10-24,16714,335,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1956.08,{},55570,1,"""North America""" +2023-01-20,16715,805,"[\""Wireless Mouse\"", \""Charger\""]",4061.33,"{\""loyalty\"": \""30%\""}",242183,1,"""South America""" +2023-01-22,16716,342,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",775.35,{},202110,1,"""Asia""" +2024-11-04,16717,8932,"[\""Headphones\"", \""Wireless Mouse\""]",1857.63,{},175575,1,"""South America""" +2023-10-05,16718,1376,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2472.87,{},54176,1,"""North America""" +2023-04-02,16719,8109,"[\""Wireless Mouse\""]",569.96,"{\"": \""19%\""}",27521,0,"""Asia""" +2024-07-05,16720,2282,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",574.44,{},167593,0,"""Europe""" +2023-04-03,16721,4813,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2877.29,{},279642,0,"""Asia""" +2023-01-23,16722,8467,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4135.62,{},262311,0,"""North America""" +2024-08-29,16723,199,"[\""Headphones\""]",4492.72,"{\"": \""24%\""}",123431,1,"""North America""" +2023-12-02,16724,3660,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1027.6,"{\""promo\"": \""25%\""}",145807,0,"""North America""" +2023-08-28,16725,3483,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",671.72,{},165567,1,"""South America""" +2023-05-29,16726,85,"[\""Phone\""]",2130.47,{},65904,0,"""North America""" +2023-03-26,16727,1549,"[\""Phone\""]",1904.35,{},152077,0,"""North America""" +2024-05-26,16728,2758,"[\""Laptop\""]",861.28,{},107512,0,"""North America""" +2024-10-07,16729,7132,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3903.79,{},176551,1,"""Africa""" +2024-02-21,16730,2411,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3042.88,"{\""seasonal\"": \""21%\""}",127258,1,"""South America""" +2024-06-24,16731,3572,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3504.43,"{\""seasonal\"": \""10%\""}",112523,0,"""South America""" +2023-11-18,16732,5372,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3491.99,"{\""seasonal\"": \""26%\""}",281227,0,"""North America""" +2024-08-13,16733,9190,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2043.09,"{\""promo\"": \""28%\""}",247927,0,"""North America""" +2023-09-16,16734,3735,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4351.2,{},74219,1,"""South America""" +2024-06-17,16735,4152,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1967.99,{},20098,1,"""Europe""" +2024-07-27,16736,9149,"[\""Headphones\""]",2413.75,{},128304,0,"""North America""" +2024-06-06,16737,4841,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2729.44,{},146423,1,"""Europe""" +2023-02-27,16738,994,"[\""Charger\"", \""Phone\""]",1920.95,"{\"": \""9%\""}",107950,1,"""Africa""" +2023-12-22,16739,3269,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1321.37,{},194412,1,"""Africa""" +2024-02-28,16740,5804,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2172.14,"{\""promo\"": \""17%\""}",101747,1,"""North America""" +2023-11-06,16741,6549,"[\""Laptop\""]",1985.97,{},66024,1,"""Asia""" +2023-12-05,16742,9005,"[\""Keyboard\""]",2120.34,"{\""promo\"": \""12%\""}",124017,1,"""North America""" +2024-04-11,16743,7425,"[\""Phone\""]",314.74,{},79720,1,"""Asia""" +2024-10-05,16744,5893,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4418.73,"{\""loyalty\"": \""13%\""}",262691,0,"""North America""" +2023-12-14,16745,9393,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4036.56,{},136162,1,"""South America""" +2024-09-28,16746,7768,"[\""Laptop\"", \""Headphones\""]",2629.0,"{\""promo\"": \""28%\""}",250355,1,"""Asia""" +2023-06-05,16747,5824,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",385.82,{},114975,0,"""South America""" +2024-12-18,16748,5330,"[\""Monitor\"", \""Phone\""]",884.07,{},103862,1,"""Asia""" +2024-08-22,16749,2651,"[\""Monitor\""]",3618.17,{},31164,0,"""South America""" +2024-08-18,16750,794,"[\""Phone\""]",4066.38,"{\""seasonal\"": \""30%\""}",262825,1,"""Africa""" +2023-07-14,16751,874,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4197.77,"{\""seasonal\"": \""25%\""}",78737,1,"""Asia""" +2023-04-07,16752,5178,"[\""Headphones\"", \""Phone\""]",3710.39,{},41943,0,"""Europe""" +2023-03-16,16753,5490,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2947.09,"{\""promo\"": \""6%\""}",240070,0,"""North America""" +2023-10-16,16754,2727,"[\""Tablet\"", \""Keyboard\""]",792.8,"{\""seasonal\"": \""19%\""}",189008,1,"""Europe""" +2023-03-13,16755,8839,"[\""Charger\""]",3241.0,"{\""loyalty\"": \""21%\""}",35996,1,"""Asia""" +2023-06-28,16756,4635,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4137.82,"{\""seasonal\"": \""17%\""}",194652,0,"""Europe""" +2023-11-03,16757,8347,"[\""Phone\"", \""Keyboard\""]",3152.33,{},99240,1,"""North America""" +2024-06-26,16758,1404,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3636.85,"{\""promo\"": \""5%\""}",206688,1,"""Europe""" +2024-06-05,16759,4194,"[\""Charger\""]",1838.0,"{\"": \""13%\""}",218433,0,"""North America""" +2023-10-22,16760,2453,"[\""Wireless Mouse\""]",747.01,"{\""promo\"": \""20%\""}",230793,1,"""South America""" +2024-07-30,16761,1293,"[\""Headphones\""]",742.05,{},185142,1,"""Africa""" +2023-06-21,16762,6461,"[\""Headphones\""]",4203.98,"{\""loyalty\"": \""26%\""}",235921,1,"""Europe""" +2024-09-27,16763,3883,"[\""Laptop\""]",4638.15,"{\""promo\"": \""10%\""}",173268,0,"""Africa""" +2024-06-06,16764,8760,"[\""Laptop\"", \""Charger\""]",4764.53,{},290454,0,"""North America""" +2024-12-07,16765,4467,"[\""Monitor\"", \""Headphones\""]",1495.3,"{\""promo\"": \""18%\""}",286102,1,"""Asia""" +2023-09-10,16766,921,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3812.54,"{\"": \""16%\""}",199971,1,"""North America""" +2023-01-27,16767,4688,"[\""Charger\""]",3709.22,{},267901,0,"""North America""" +2023-07-26,16768,4651,"[\""Monitor\""]",1106.11,{},237933,1,"""North America""" +2023-07-22,16769,2517,"[\""Keyboard\""]",1487.02,{},230501,0,"""Europe""" +2023-10-03,16770,2468,"[\""Monitor\""]",671.35,"{\"": \""29%\""}",148121,0,"""Asia""" +2023-07-20,16771,1567,"[\""Charger\""]",1939.19,"{\""seasonal\"": \""14%\""}",282460,1,"""South America""" +2024-04-11,16772,690,"[\""Phone\"", \""Monitor\""]",1240.44,{},181796,1,"""Asia""" +2023-09-24,16773,298,"[\""Charger\"", \""Headphones\""]",2529.19,{},263851,0,"""Africa""" +2023-10-02,16774,3794,"[\""Laptop\""]",4472.38,{},240584,0,"""North America""" +2023-07-28,16775,9066,"[\""Wireless Mouse\""]",4357.02,{},195164,0,"""Asia""" +2024-10-23,16776,1097,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1827.92,"{\""seasonal\"": \""27%\""}",4638,1,"""Europe""" +2024-12-09,16777,9933,"[\""Charger\"", \""Headphones\""]",3994.3,"{\""loyalty\"": \""23%\""}",123628,1,"""Asia""" +2024-02-03,16778,9306,"[\""Keyboard\"", \""Tablet\""]",676.29,{},182891,1,"""Asia""" +2024-04-07,16779,9232,"[\""Tablet\""]",1510.85,{},71836,1,"""Africa""" +2024-07-17,16780,8946,"[\""Charger\"", \""Headphones\""]",4450.59,"{\"": \""19%\""}",286212,1,"""Africa""" +2023-12-24,16781,5098,"[\""Phone\""]",238.94,"{\""loyalty\"": \""17%\""}",66421,1,"""Asia""" +2024-09-03,16782,5520,"[\""Headphones\""]",1617.84,{},79802,1,"""North America""" +2023-08-27,16783,2957,"[\""Keyboard\""]",1848.96,{},270018,0,"""Africa""" +2024-10-03,16784,2182,"[\""Phone\""]",471.35,{},169015,0,"""South America""" +2024-02-06,16785,9520,"[\""Tablet\""]",3927.43,"{\""promo\"": \""19%\""}",296983,0,"""Africa""" +2023-09-07,16786,8470,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3330.72,{},272460,1,"""Africa""" +2023-05-07,16787,3114,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1903.94,{},33334,1,"""South America""" +2023-01-14,16788,2843,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4614.69,"{\"": \""17%\""}",273766,1,"""North America""" +2024-06-12,16789,2681,"[\""Wireless Mouse\"", \""Headphones\""]",4924.49,"{\""loyalty\"": \""22%\""}",133072,1,"""Africa""" +2023-01-04,16790,4135,"[\""Tablet\"", \""Headphones\""]",2722.47,{},282694,1,"""South America""" +2023-11-28,16791,9196,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4327.37,{},227944,1,"""Africa""" +2023-05-27,16792,6235,"[\""Laptop\"", \""Headphones\""]",4754.89,{},146784,0,"""North America""" +2023-03-05,16793,7405,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1431.59,"{\""loyalty\"": \""19%\""}",46610,0,"""Africa""" +2023-06-11,16794,6321,"[\""Laptop\""]",3978.25,"{\""seasonal\"": \""14%\""}",12156,0,"""North America""" +2023-09-24,16795,568,"[\""Headphones\""]",553.9,"{\""loyalty\"": \""23%\""}",198431,0,"""Europe""" +2023-09-05,16796,7968,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",754.57,"{\"": \""25%\""}",258145,0,"""Asia""" +2023-04-15,16797,9701,"[\""Charger\"", \""Keyboard\""]",1706.21,{},97529,0,"""Europe""" +2023-01-10,16798,4185,"[\""Tablet\"", \""Monitor\""]",2711.54,{},269240,1,"""South America""" +2023-05-06,16799,7430,"[\""Laptop\"", \""Keyboard\""]",2202.84,{},124837,0,"""Asia""" +2024-05-16,16800,1118,"[\""Tablet\"", \""Headphones\""]",4882.57,"{\""loyalty\"": \""26%\""}",241482,0,"""South America""" +2024-08-31,16801,916,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4972.18,"{\""seasonal\"": \""12%\""}",103495,0,"""Asia""" +2024-10-30,16802,3150,"[\""Headphones\""]",4322.23,{},241516,0,"""North America""" +2023-11-30,16803,7235,"[\""Wireless Mouse\""]",1285.93,"{\""loyalty\"": \""9%\""}",197217,1,"""South America""" +2024-06-20,16804,2384,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2310.11,{},155162,1,"""North America""" +2023-06-20,16805,1328,"[\""Laptop\""]",2994.44,"{\""promo\"": \""25%\""}",245765,1,"""Africa""" +2023-09-28,16806,2673,"[\""Phone\""]",2233.52,"{\""loyalty\"": \""14%\""}",283597,1,"""South America""" +2024-01-27,16807,2707,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3279.29,"{\""promo\"": \""9%\""}",148037,1,"""Europe""" +2023-10-29,16808,2216,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1028.52,"{\"": \""11%\""}",231695,0,"""Europe""" +2023-08-15,16809,5493,"[\""Wireless Mouse\"", \""Tablet\""]",2381.03,{},42215,1,"""South America""" +2023-06-23,16810,3565,"[\""Charger\"", \""Monitor\""]",2018.62,{},135894,1,"""North America""" +2023-06-29,16811,6304,"[\""Phone\"", \""Charger\""]",1360.38,{},168525,0,"""Europe""" +2023-02-21,16812,7299,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4905.6,"{\""promo\"": \""27%\""}",223126,1,"""Europe""" +2024-06-09,16813,5264,"[\""Headphones\"", \""Charger\""]",4756.84,{},227845,1,"""Africa""" +2024-10-18,16814,5978,"[\""Keyboard\""]",81.15,{},223938,1,"""North America""" +2024-08-31,16815,480,"[\""Keyboard\"", \""Tablet\""]",600.87,{},261827,0,"""Europe""" +2023-11-12,16816,9544,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3334.05,{},219467,0,"""North America""" +2023-05-31,16817,6228,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3962.38,{},12854,0,"""South America""" +2023-12-14,16818,966,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3520.9,{},34481,0,"""Asia""" +2023-10-23,16819,6781,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3471.66,{},67783,0,"""Europe""" +2023-04-04,16820,279,"[\""Laptop\""]",1337.59,{},235504,1,"""Asia""" +2024-07-21,16821,2147,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2475.72,{},256601,1,"""South America""" +2024-03-19,16822,3928,"[\""Wireless Mouse\"", \""Tablet\""]",1338.44,"{\"": \""15%\""}",254503,1,"""Africa""" +2023-07-28,16823,6144,"[\""Wireless Mouse\"", \""Tablet\""]",650.86,{},57306,1,"""South America""" +2024-05-01,16824,3965,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",532.38,"{\""seasonal\"": \""12%\""}",152155,1,"""South America""" +2024-07-12,16825,2551,"[\""Wireless Mouse\"", \""Tablet\""]",2660.18,"{\"": \""20%\""}",297724,1,"""Africa""" +2023-09-06,16826,6419,"[\""Laptop\"", \""Wireless Mouse\""]",2194.26,{},15786,1,"""Asia""" +2024-08-23,16827,538,"[\""Phone\"", \""Monitor\""]",432.25,"{\""seasonal\"": \""12%\""}",180819,1,"""Asia""" +2024-04-06,16828,9967,"[\""Tablet\""]",3020.36,{},2417,1,"""Africa""" +2024-07-28,16829,3342,"[\""Charger\""]",3412.69,{},187118,0,"""South America""" +2024-12-13,16830,5274,"[\""Keyboard\""]",1988.62,{},282183,1,"""South America""" +2024-05-30,16831,3917,"[\""Charger\"", \""Phone\""]",684.28,{},201015,0,"""Asia""" +2024-03-20,16832,3196,"[\""Laptop\""]",1498.2,"{\""promo\"": \""21%\""}",56466,1,"""North America""" +2023-03-26,16833,6981,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2291.73,"{\""seasonal\"": \""9%\""}",96007,1,"""Asia""" +2024-03-07,16834,5062,"[\""Wireless Mouse\""]",1458.9,{},205269,1,"""Africa""" +2023-08-30,16835,7120,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3253.14,"{\""seasonal\"": \""17%\""}",295325,0,"""North America""" +2023-09-06,16836,4473,"[\""Laptop\""]",3396.62,"{\""seasonal\"": \""13%\""}",64294,0,"""Asia""" +2023-10-03,16837,81,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3007.93,{},75928,0,"""Asia""" +2024-07-27,16838,3736,"[\""Monitor\"", \""Keyboard\""]",2709.66,"{\""promo\"": \""20%\""}",199170,0,"""North America""" +2024-01-27,16839,6539,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4442.97,{},39076,1,"""Asia""" +2023-01-25,16840,8410,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2180.68,{},117404,1,"""Europe""" +2023-04-25,16841,6728,"[\""Laptop\"", \""Phone\""]",144.05,"{\"": \""29%\""}",26355,1,"""North America""" +2023-04-21,16842,6095,"[\""Headphones\"", \""Monitor\""]",4599.65,"{\"": \""24%\""}",7910,1,"""Africa""" +2023-12-01,16843,6458,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2611.02,"{\""loyalty\"": \""29%\""}",287286,0,"""Africa""" +2023-11-14,16844,3012,"[\""Laptop\""]",3307.37,{},294818,1,"""North America""" +2023-06-09,16845,5366,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",313.25,"{\""promo\"": \""7%\""}",183492,1,"""South America""" +2023-03-17,16846,9544,"[\""Phone\"", \""Charger\"", \""Tablet\""]",900.01,"{\"": \""30%\""}",40593,1,"""Europe""" +2024-04-05,16847,6212,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1556.23,"{\""promo\"": \""13%\""}",159191,1,"""North America""" +2024-09-22,16848,8497,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4925.26,"{\"": \""22%\""}",118044,0,"""North America""" +2024-07-26,16849,5549,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1838.56,{},23076,0,"""Asia""" +2023-03-08,16850,7389,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",186.58,{},138171,0,"""Europe""" +2024-04-27,16851,2138,"[\""Monitor\"", \""Charger\""]",750.59,{},9248,1,"""Asia""" +2024-03-02,16852,3566,"[\""Headphones\""]",1895.75,{},199995,1,"""Africa""" +2024-06-10,16853,5413,"[\""Phone\"", \""Wireless Mouse\""]",4268.87,"{\""loyalty\"": \""26%\""}",1232,1,"""Africa""" +2023-07-29,16854,2447,"[\""Headphones\""]",1187.45,"{\""loyalty\"": \""23%\""}",283958,1,"""South America""" +2023-02-21,16855,5450,"[\""Phone\""]",2888.84,{},2562,1,"""South America""" +2024-10-25,16856,8862,"[\""Wireless Mouse\"", \""Monitor\""]",3253.66,{},225687,1,"""Asia""" +2024-07-12,16857,1948,"[\""Headphones\"", \""Wireless Mouse\""]",360.41,"{\"": \""14%\""}",211313,0,"""Africa""" +2024-10-02,16858,1052,"[\""Laptop\""]",3645.96,{},236891,0,"""South America""" +2023-07-03,16859,2642,"[\""Charger\"", \""Tablet\""]",731.07,"{\""loyalty\"": \""28%\""}",115737,1,"""Europe""" +2024-06-19,16860,1849,"[\""Keyboard\""]",2027.85,"{\""promo\"": \""8%\""}",35497,0,"""Africa""" +2023-12-20,16861,7659,"[\""Phone\"", \""Laptop\""]",3213.28,"{\"": \""18%\""}",158348,1,"""Asia""" +2023-08-23,16862,957,"[\""Wireless Mouse\"", \""Headphones\""]",71.24,{},217828,0,"""North America""" +2024-11-18,16863,5812,"[\""Laptop\""]",1904.71,"{\""seasonal\"": \""27%\""}",155576,0,"""Africa""" +2023-09-11,16864,7418,"[\""Tablet\""]",1054.47,{},73552,1,"""South America""" +2024-09-26,16865,3596,"[\""Monitor\"", \""Phone\""]",1801.24,"{\""loyalty\"": \""9%\""}",108200,1,"""Asia""" +2023-07-02,16866,7646,"[\""Keyboard\""]",3704.12,{},162622,1,"""Europe""" +2024-07-31,16867,7197,"[\""Tablet\"", \""Wireless Mouse\""]",1725.92,{},77834,0,"""Europe""" +2024-11-02,16868,2553,"[\""Phone\"", \""Keyboard\""]",3704.94,{},73003,0,"""Africa""" +2024-08-13,16869,9810,"[\""Tablet\""]",2164.33,"{\""promo\"": \""22%\""}",250756,1,"""South America""" +2023-04-11,16870,720,"[\""Tablet\"", \""Wireless Mouse\""]",2634.68,"{\""seasonal\"": \""17%\""}",156262,1,"""Europe""" +2024-09-18,16871,1392,"[\""Tablet\""]",415.13,{},135520,1,"""North America""" +2023-10-05,16872,6671,"[\""Phone\"", \""Tablet\""]",2356.14,{},86460,0,"""South America""" +2023-09-28,16873,7898,"[\""Headphones\""]",4212.89,"{\"": \""6%\""}",68182,1,"""South America""" +2023-09-21,16874,2478,"[\""Headphones\"", \""Laptop\""]",2981.23,"{\""loyalty\"": \""20%\""}",118931,0,"""Asia""" +2023-01-01,16875,1628,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2517.91,{},224046,0,"""South America""" +2024-08-14,16876,6383,"[\""Keyboard\"", \""Wireless Mouse\""]",1154.6,{},56594,0,"""Asia""" +2024-02-22,16877,8234,"[\""Wireless Mouse\""]",488.59,{},196139,0,"""Asia""" +2024-03-17,16878,7307,"[\""Keyboard\""]",4142.76,{},24134,0,"""South America""" +2023-04-23,16879,5813,"[\""Keyboard\"", \""Monitor\""]",2040.43,"{\""loyalty\"": \""22%\""}",223171,0,"""Asia""" +2023-05-31,16880,899,"[\""Monitor\""]",2609.47,{},276828,1,"""Africa""" +2024-11-24,16881,5358,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2234.08,{},138091,1,"""Africa""" +2023-01-03,16882,8085,"[\""Laptop\""]",2732.27,"{\""promo\"": \""19%\""}",233210,1,"""Africa""" +2023-01-15,16883,4002,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",158.98,{},42309,0,"""Africa""" +2024-08-07,16884,6270,"[\""Laptop\"", \""Headphones\""]",932.39,"{\""seasonal\"": \""17%\""}",54864,0,"""Europe""" +2024-07-23,16885,2407,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2596.24,"{\""promo\"": \""19%\""}",23785,1,"""Africa""" +2023-12-21,16886,5187,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3964.91,"{\""loyalty\"": \""26%\""}",269485,1,"""South America""" +2023-10-02,16887,9530,"[\""Keyboard\""]",70.24,"{\""promo\"": \""13%\""}",94936,1,"""Asia""" +2023-03-05,16888,9374,"[\""Laptop\"", \""Tablet\""]",1567.91,"{\"": \""18%\""}",195501,0,"""North America""" +2023-03-22,16889,9752,"[\""Monitor\""]",464.19,{},106130,1,"""Europe""" +2023-04-09,16890,5772,"[\""Tablet\"", \""Laptop\""]",967.74,{},219181,0,"""Africa""" +2024-06-26,16891,386,"[\""Charger\""]",3078.64,{},7215,0,"""Asia""" +2024-02-12,16892,5745,"[\""Wireless Mouse\""]",4295.21,"{\""loyalty\"": \""10%\""}",284712,0,"""North America""" +2024-11-09,16893,9748,"[\""Tablet\""]",864.35,"{\"": \""21%\""}",236674,1,"""Europe""" +2023-11-05,16894,4506,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3447.13,"{\""promo\"": \""16%\""}",53969,0,"""Europe""" +2023-08-02,16895,8339,"[\""Headphones\"", \""Keyboard\""]",290.85,{},258106,1,"""Europe""" +2023-04-15,16896,388,"[\""Headphones\""]",766.08,"{\""promo\"": \""21%\""}",247813,0,"""Europe""" +2023-06-12,16897,300,"[\""Laptop\"", \""Headphones\""]",4214.46,"{\""seasonal\"": \""21%\""}",270938,0,"""South America""" +2024-03-05,16898,1361,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3786.86,{},46078,0,"""Africa""" +2023-03-10,16899,113,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1480.68,{},69195,1,"""Europe""" +2024-06-08,16900,5530,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1289.71,"{\""seasonal\"": \""5%\""}",153635,1,"""Europe""" +2023-08-17,16901,769,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3617.47,{},299607,0,"""Asia""" +2024-03-06,16902,4252,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2132.25,"{\""loyalty\"": \""20%\""}",181437,0,"""South America""" +2023-01-16,16903,5062,"[\""Headphones\"", \""Charger\""]",1339.77,{},79933,1,"""Europe""" +2024-09-22,16904,8714,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2968.79,{},247988,1,"""North America""" +2024-09-24,16905,5575,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3794.77,"{\"": \""11%\""}",82107,0,"""Africa""" +2024-04-09,16906,8183,"[\""Monitor\"", \""Charger\""]",537.01,{},288383,0,"""South America""" +2023-07-04,16907,1481,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",511.24,{},59759,1,"""North America""" +2023-04-21,16908,2545,"[\""Charger\"", \""Headphones\""]",1403.37,"{\""promo\"": \""11%\""}",215186,0,"""South America""" +2024-05-07,16909,8663,"[\""Laptop\"", \""Tablet\""]",767.46,"{\""seasonal\"": \""16%\""}",43772,0,"""North America""" +2024-02-15,16910,6086,"[\""Wireless Mouse\"", \""Phone\""]",2350.15,{},55856,0,"""Europe""" +2023-11-08,16911,3008,"[\""Monitor\"", \""Phone\""]",123.07,{},194433,0,"""Africa""" +2024-10-13,16912,2985,"[\""Phone\""]",4702.02,"{\""promo\"": \""30%\""}",138096,0,"""South America""" +2024-02-06,16913,786,"[\""Headphones\""]",573.13,"{\"": \""11%\""}",96706,0,"""North America""" +2023-04-23,16914,1592,"[\""Monitor\"", \""Laptop\""]",3236.61,{},2297,1,"""South America""" +2023-05-04,16915,441,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4289.72,"{\""seasonal\"": \""5%\""}",253147,0,"""Asia""" +2024-11-17,16916,8941,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2566.3,{},295526,1,"""Africa""" +2024-06-15,16917,5074,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3039.24,"{\"": \""15%\""}",259938,1,"""South America""" +2024-05-09,16918,1837,"[\""Keyboard\""]",4580.1,{},46852,1,"""Asia""" +2024-06-29,16919,1067,"[\""Laptop\""]",1494.3,"{\""loyalty\"": \""17%\""}",57883,0,"""South America""" +2024-03-17,16920,5183,"[\""Monitor\""]",3426.61,"{\""seasonal\"": \""5%\""}",222044,0,"""South America""" +2023-09-15,16921,1180,"[\""Wireless Mouse\"", \""Tablet\""]",480.45,"{\""promo\"": \""5%\""}",168865,0,"""North America""" +2024-08-31,16922,5134,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2627.88,"{\""seasonal\"": \""17%\""}",29802,0,"""Europe""" +2024-04-07,16923,4707,"[\""Wireless Mouse\""]",4465.23,"{\""promo\"": \""30%\""}",83712,0,"""Europe""" +2023-12-04,16924,1474,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4329.84,{},11831,1,"""Europe""" +2023-09-16,16925,7375,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3461.61,"{\"": \""23%\""}",146174,1,"""Asia""" +2023-09-27,16926,3638,"[\""Tablet\""]",2967.43,"{\""promo\"": \""6%\""}",248857,0,"""Europe""" +2023-07-14,16927,9358,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3890.65,"{\""promo\"": \""9%\""}",232911,0,"""North America""" +2023-02-27,16928,285,"[\""Wireless Mouse\"", \""Phone\""]",4281.09,{},78407,1,"""South America""" +2023-11-15,16929,3653,"[\""Keyboard\"", \""Wireless Mouse\""]",268.01,"{\"": \""13%\""}",6383,0,"""Asia""" +2024-06-03,16930,5155,"[\""Monitor\"", \""Laptop\""]",195.2,{},241254,1,"""Africa""" +2024-12-21,16931,4329,"[\""Wireless Mouse\"", \""Phone\""]",564.43,"{\""promo\"": \""9%\""}",69619,0,"""South America""" +2023-12-31,16932,4169,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2730.74,{},261213,0,"""North America""" +2024-03-01,16933,7878,"[\""Tablet\"", \""Wireless Mouse\""]",2892.22,{},278426,1,"""Europe""" +2023-06-24,16934,9005,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4238.24,"{\""seasonal\"": \""19%\""}",47082,1,"""Africa""" +2024-09-07,16935,166,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3562.68,{},29838,1,"""Asia""" +2024-08-11,16936,6405,"[\""Tablet\""]",1557.62,"{\""loyalty\"": \""28%\""}",277952,0,"""Europe""" +2023-04-11,16937,1641,"[\""Phone\"", \""Tablet\""]",3686.66,"{\""seasonal\"": \""30%\""}",239453,1,"""Europe""" +2024-05-06,16938,9968,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",808.56,{},126839,0,"""Africa""" +2023-01-20,16939,98,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",472.09,{},94305,1,"""North America""" +2023-09-19,16940,2751,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2956.57,{},214567,1,"""South America""" +2023-10-08,16941,3155,"[\""Tablet\""]",3326.35,"{\""promo\"": \""6%\""}",215965,0,"""Asia""" +2023-05-26,16942,9940,"[\""Headphones\"", \""Monitor\""]",978.94,{},83889,1,"""North America""" +2023-04-03,16943,9042,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3646.56,"{\"": \""21%\""}",67128,1,"""Asia""" +2024-09-07,16944,2587,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2045.29,{},67951,1,"""North America""" +2024-05-27,16945,5045,"[\""Keyboard\"", \""Monitor\""]",204.38,{},179255,0,"""South America""" +2023-12-16,16946,9875,"[\""Monitor\""]",4454.41,{},252830,0,"""Europe""" +2023-09-23,16947,3626,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1786.96,{},15041,1,"""Asia""" +2024-04-20,16948,7258,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4610.92,"{\""loyalty\"": \""8%\""}",104898,1,"""Africa""" +2024-04-04,16949,2618,"[\""Charger\""]",2378.68,{},229317,0,"""Asia""" +2024-04-07,16950,660,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2270.12,{},240368,1,"""Asia""" +2023-10-15,16951,8475,"[\""Keyboard\"", \""Headphones\""]",1073.78,{},60526,1,"""South America""" +2024-12-12,16952,7561,"[\""Tablet\"", \""Keyboard\""]",4157.25,"{\""seasonal\"": \""6%\""}",120287,0,"""Africa""" +2024-04-12,16953,5097,"[\""Charger\""]",1325.9,{},170529,0,"""South America""" +2024-06-21,16954,4188,"[\""Keyboard\"", \""Laptop\""]",2119.38,"{\""seasonal\"": \""5%\""}",104387,1,"""Africa""" +2024-04-26,16955,3134,"[\""Headphones\""]",492.67,"{\""promo\"": \""8%\""}",14958,0,"""North America""" +2023-07-26,16956,1947,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2286.17,"{\"": \""23%\""}",175957,0,"""North America""" +2024-04-18,16957,7616,"[\""Monitor\"", \""Headphones\""]",1761.9,{},171034,0,"""South America""" +2023-03-24,16958,4772,"[\""Headphones\"", \""Charger\""]",990.53,{},24143,1,"""Asia""" +2024-01-28,16959,7375,"[\""Headphones\""]",1203.67,"{\""promo\"": \""15%\""}",173626,0,"""Europe""" +2024-05-21,16960,1186,"[\""Monitor\""]",2055.39,"{\""seasonal\"": \""6%\""}",204373,1,"""Europe""" +2024-02-27,16961,2537,"[\""Phone\"", \""Charger\""]",1346.81,{},261426,0,"""Africa""" +2024-01-16,16962,2364,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",643.28,{},268922,1,"""North America""" +2023-12-03,16963,7685,"[\""Headphones\""]",1549.74,"{\""loyalty\"": \""26%\""}",112525,1,"""Asia""" +2024-10-08,16964,4854,"[\""Wireless Mouse\""]",3063.72,{},96418,0,"""Africa""" +2024-02-03,16965,4628,"[\""Headphones\"", \""Laptop\""]",1056.74,{},40756,1,"""Africa""" +2024-12-21,16966,2367,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1219.95,{},263814,0,"""South America""" +2024-04-03,16967,5126,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2044.1,{},239010,0,"""Europe""" +2023-03-16,16968,6209,"[\""Tablet\"", \""Headphones\""]",2424.62,"{\""promo\"": \""21%\""}",255732,1,"""North America""" +2024-07-20,16969,2689,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4568.26,{},115886,0,"""South America""" +2024-05-07,16970,7850,"[\""Tablet\""]",1929.84,"{\""loyalty\"": \""29%\""}",25798,0,"""North America""" +2024-09-01,16971,2881,"[\""Headphones\""]",3238.75,"{\"": \""8%\""}",184313,1,"""Europe""" +2024-10-08,16972,1756,"[\""Charger\""]",2206.3,"{\""seasonal\"": \""6%\""}",279774,0,"""Africa""" +2024-01-23,16973,7125,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4714.05,"{\"": \""5%\""}",211800,1,"""Africa""" +2023-05-29,16974,5944,"[\""Wireless Mouse\""]",1077.19,"{\""promo\"": \""18%\""}",141966,0,"""North America""" +2024-05-19,16975,7372,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4116.77,{},74448,0,"""Africa""" +2024-02-07,16976,1117,"[\""Laptop\"", \""Phone\""]",4976.41,"{\"": \""20%\""}",212157,1,"""South America""" +2024-04-25,16977,4076,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4941.18,"{\""promo\"": \""11%\""}",40871,0,"""Africa""" +2024-03-17,16978,2525,"[\""Laptop\"", \""Charger\""]",1166.01,{},294353,1,"""Asia""" +2023-12-05,16979,1164,"[\""Headphones\""]",3045.09,"{\""promo\"": \""14%\""}",66690,0,"""Africa""" +2024-06-30,16980,3704,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",499.42,{},279414,1,"""North America""" +2023-09-03,16981,668,"[\""Keyboard\""]",344.29,{},186845,0,"""Asia""" +2024-02-22,16982,3686,"[\""Phone\""]",1689.95,{},116048,1,"""Asia""" +2023-08-28,16983,49,"[\""Laptop\""]",3945.58,"{\""promo\"": \""18%\""}",100760,0,"""South America""" +2024-09-26,16984,3283,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4981.09,"{\""seasonal\"": \""25%\""}",235269,1,"""North America""" +2023-02-15,16985,7099,"[\""Charger\""]",1392.05,"{\""promo\"": \""21%\""}",80936,1,"""Asia""" +2024-04-18,16986,8464,"[\""Wireless Mouse\""]",2165.24,{},95652,0,"""Europe""" +2024-06-09,16987,8798,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1993.4,{},255973,0,"""Asia""" +2024-03-13,16988,5425,"[\""Laptop\"", \""Headphones\""]",642.82,{},139541,1,"""Europe""" +2024-08-12,16989,2054,"[\""Phone\"", \""Keyboard\""]",810.8,"{\""seasonal\"": \""14%\""}",200997,0,"""South America""" +2024-01-24,16990,3531,"[\""Headphones\"", \""Keyboard\""]",3791.08,"{\""seasonal\"": \""15%\""}",225376,0,"""Asia""" +2024-12-01,16991,7189,"[\""Wireless Mouse\""]",4048.74,"{\""promo\"": \""8%\""}",32075,0,"""Asia""" +2023-05-16,16992,9985,"[\""Wireless Mouse\"", \""Tablet\""]",2677.39,"{\""promo\"": \""23%\""}",243760,0,"""Europe""" +2024-01-25,16993,7694,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3268.65,{},101290,0,"""North America""" +2023-08-24,16994,5448,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2575.33,{},3047,1,"""South America""" +2023-10-26,16995,810,"[\""Laptop\"", \""Tablet\""]",1884.01,{},128033,0,"""Europe""" +2023-12-11,16996,4755,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3398.1,{},140312,1,"""North America""" +2024-06-21,16997,2122,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3897.63,{},183840,0,"""Africa""" +2024-01-17,16998,6219,"[\""Charger\""]",3593.9,{},55987,1,"""Europe""" +2024-10-11,16999,6613,"[\""Laptop\"", \""Tablet\""]",1374.73,"{\""loyalty\"": \""10%\""}",154162,1,"""Asia""" +2024-07-28,17000,2925,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3433.52,{},163019,1,"""Europe""" +2024-03-22,17001,8526,"[\""Tablet\"", \""Wireless Mouse\""]",2098.92,{},284296,1,"""Asia""" +2024-09-15,17002,5597,"[\""Tablet\""]",120.82,{},203011,1,"""North America""" +2023-10-19,17003,3402,"[\""Monitor\""]",4013.38,{},294616,1,"""North America""" +2024-05-07,17004,8767,"[\""Charger\""]",2733.34,"{\"": \""6%\""}",275995,1,"""Africa""" +2023-08-16,17005,2515,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",875.32,"{\""promo\"": \""25%\""}",140560,0,"""South America""" +2024-10-28,17006,1306,"[\""Monitor\"", \""Keyboard\""]",4676.38,"{\""promo\"": \""17%\""}",9427,0,"""Africa""" +2024-02-09,17007,8994,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2342.51,"{\""seasonal\"": \""29%\""}",252779,0,"""South America""" +2024-08-02,17008,128,"[\""Phone\""]",2858.34,{},101679,0,"""Africa""" +2023-06-16,17009,4793,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3164.17,"{\""promo\"": \""28%\""}",227676,1,"""Asia""" +2023-10-24,17010,8960,"[\""Phone\""]",3001.68,"{\"": \""30%\""}",59961,0,"""North America""" +2024-12-02,17011,1748,"[\""Keyboard\"", \""Monitor\""]",2490.5,"{\""seasonal\"": \""20%\""}",255219,1,"""Asia""" +2024-07-12,17012,250,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3925.47,"{\""promo\"": \""13%\""}",196163,1,"""Europe""" +2023-12-30,17013,2298,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",969.67,"{\""promo\"": \""21%\""}",106954,0,"""Europe""" +2023-09-23,17014,719,"[\""Headphones\""]",3763.87,{},15611,1,"""South America""" +2024-02-04,17015,4617,"[\""Charger\"", \""Tablet\""]",1275.68,{},255340,0,"""Asia""" +2023-12-08,17016,9899,"[\""Wireless Mouse\"", \""Phone\""]",4822.91,"{\""seasonal\"": \""30%\""}",220320,1,"""Asia""" +2024-06-29,17017,2900,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4617.23,"{\""promo\"": \""28%\""}",242840,0,"""North America""" +2024-11-14,17018,2723,"[\""Keyboard\""]",3843.46,{},228542,1,"""North America""" +2024-11-26,17019,9444,"[\""Keyboard\"", \""Monitor\""]",3093.36,"{\""promo\"": \""8%\""}",142942,1,"""Africa""" +2024-09-26,17020,3713,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",724.88,{},134232,0,"""Africa""" +2023-05-18,17021,3985,"[\""Wireless Mouse\""]",876.86,{},290173,1,"""Asia""" +2023-08-20,17022,9204,"[\""Tablet\""]",1552.49,{},157897,0,"""Africa""" +2023-12-04,17023,5650,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1602.36,"{\"": \""6%\""}",160457,1,"""Asia""" +2023-02-26,17024,2648,"[\""Charger\""]",1969.52,"{\""promo\"": \""11%\""}",249457,1,"""Asia""" +2024-01-03,17025,9414,"[\""Tablet\""]",2492.82,{},76838,1,"""Africa""" +2024-01-16,17026,3825,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",394.58,{},293817,0,"""South America""" +2024-08-19,17027,9593,"[\""Laptop\""]",2622.79,{},83600,0,"""North America""" +2023-09-02,17028,6605,"[\""Phone\""]",1138.67,{},282874,0,"""Africa""" +2024-05-01,17029,8089,"[\""Keyboard\"", \""Phone\""]",844.77,"{\"": \""21%\""}",282556,1,"""North America""" +2024-03-11,17030,9226,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3107.32,{},210236,1,"""Europe""" +2023-12-18,17031,4825,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",614.39,{},292543,0,"""South America""" +2024-07-25,17032,4734,"[\""Tablet\""]",3967.99,"{\""seasonal\"": \""16%\""}",219995,0,"""South America""" +2024-11-09,17033,646,"[\""Tablet\""]",1409.61,{},166708,0,"""North America""" +2023-01-26,17034,3190,"[\""Tablet\"", \""Phone\""]",4668.94,{},173132,1,"""South America""" +2024-10-30,17035,6553,"[\""Headphones\"", \""Keyboard\""]",214.49,"{\""loyalty\"": \""27%\""}",200208,0,"""South America""" +2023-08-04,17036,5393,"[\""Tablet\"", \""Monitor\""]",2182.73,{},98156,0,"""Africa""" +2024-10-08,17037,7683,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2507.22,{},21799,1,"""Africa""" +2023-06-19,17038,7210,"[\""Keyboard\"", \""Charger\""]",1962.21,{},72035,0,"""Africa""" +2024-09-09,17039,4487,"[\""Wireless Mouse\""]",3984.65,{},260594,1,"""Africa""" +2023-07-29,17040,5772,"[\""Laptop\"", \""Keyboard\""]",430.94,"{\""promo\"": \""6%\""}",269049,0,"""Africa""" +2024-09-13,17041,6225,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4699.52,{},74911,0,"""North America""" +2024-07-19,17042,255,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3910.44,"{\""promo\"": \""18%\""}",281846,0,"""North America""" +2023-12-14,17043,3808,"[\""Charger\"", \""Laptop\""]",433.83,{},110143,0,"""Europe""" +2023-03-11,17044,997,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1395.0,"{\""loyalty\"": \""17%\""}",260228,1,"""North America""" +2023-10-25,17045,8453,"[\""Monitor\""]",2429.51,"{\"": \""15%\""}",136570,0,"""Africa""" +2024-06-03,17046,2747,"[\""Keyboard\"", \""Tablet\""]",4800.64,{},183369,0,"""Africa""" +2024-03-17,17047,1623,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2586.93,"{\""loyalty\"": \""11%\""}",105544,1,"""Asia""" +2023-06-08,17048,3141,"[\""Wireless Mouse\""]",2625.18,{},223695,1,"""North America""" +2023-06-18,17049,3440,"[\""Tablet\""]",2583.12,{},176334,1,"""North America""" +2024-07-04,17050,188,"[\""Laptop\""]",4815.24,{},162260,0,"""Asia""" +2023-09-13,17051,8650,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2929.13,"{\""loyalty\"": \""23%\""}",44137,1,"""Africa""" +2023-01-26,17052,2469,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1082.36,{},166540,0,"""South America""" +2023-07-14,17053,2516,"[\""Monitor\""]",520.87,"{\""loyalty\"": \""12%\""}",207534,0,"""Europe""" +2024-08-07,17054,100,"[\""Phone\"", \""Charger\""]",3273.14,"{\""promo\"": \""12%\""}",81764,0,"""Africa""" +2024-02-12,17055,8076,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3893.78,{},236052,0,"""Asia""" +2024-01-09,17056,6769,"[\""Tablet\""]",794.26,{},61458,1,"""Africa""" +2023-04-20,17057,8318,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2829.52,{},23307,0,"""North America""" +2023-03-14,17058,711,"[\""Monitor\""]",2370.82,"{\"": \""24%\""}",193568,1,"""Africa""" +2023-06-23,17059,5148,"[\""Laptop\"", \""Keyboard\""]",3684.97,"{\"": \""23%\""}",38687,0,"""Africa""" +2024-11-22,17060,8201,"[\""Wireless Mouse\""]",4110.52,"{\""loyalty\"": \""29%\""}",280816,1,"""Asia""" +2024-02-15,17061,2382,"[\""Monitor\"", \""Keyboard\""]",2571.28,{},280662,0,"""Asia""" +2024-11-23,17062,8048,"[\""Monitor\""]",873.07,"{\"": \""23%\""}",168655,0,"""South America""" +2023-05-18,17063,5723,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",550.81,"{\""promo\"": \""9%\""}",146311,1,"""Asia""" +2024-06-22,17064,5776,"[\""Keyboard\""]",2252.05,{},100121,1,"""Africa""" +2024-12-11,17065,6707,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4876.65,{},78112,0,"""Asia""" +2023-03-01,17066,742,"[\""Tablet\""]",3694.88,"{\""promo\"": \""7%\""}",109560,0,"""South America""" +2023-07-25,17067,2903,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",668.29,"{\""seasonal\"": \""18%\""}",171980,0,"""Africa""" +2023-11-21,17068,1673,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2478.43,{},224334,0,"""South America""" +2024-10-13,17069,1524,"[\""Wireless Mouse\"", \""Tablet\""]",3579.95,{},167011,1,"""Asia""" +2024-01-30,17070,8488,"[\""Tablet\"", \""Wireless Mouse\""]",2624.99,{},260755,0,"""North America""" +2024-08-01,17071,4614,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3218.33,{},18941,1,"""Europe""" +2024-02-22,17072,6963,"[\""Headphones\"", \""Charger\""]",3255.52,{},110830,1,"""Europe""" +2023-07-02,17073,2443,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2751.69,{},29731,1,"""North America""" +2024-05-09,17074,5850,"[\""Charger\"", \""Wireless Mouse\""]",4121.49,{},53761,0,"""Africa""" +2023-02-25,17075,4136,"[\""Headphones\"", \""Monitor\""]",840.14,"{\"": \""21%\""}",23118,1,"""Africa""" +2023-03-30,17076,6062,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1755.63,"{\"": \""19%\""}",26440,0,"""Europe""" +2023-07-29,17077,675,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3148.77,"{\"": \""17%\""}",258923,0,"""Asia""" +2023-07-08,17078,140,"[\""Laptop\"", \""Phone\""]",1489.09,"{\""seasonal\"": \""7%\""}",293282,1,"""Asia""" +2024-03-08,17079,5450,"[\""Keyboard\""]",4567.02,{},226514,0,"""South America""" +2024-07-15,17080,4411,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4040.99,{},290279,1,"""Africa""" +2024-03-24,17081,7693,"[\""Charger\""]",234.25,"{\""loyalty\"": \""29%\""}",141206,1,"""South America""" +2023-08-01,17082,8168,"[\""Laptop\""]",2246.32,"{\""loyalty\"": \""16%\""}",278171,0,"""Europe""" +2023-10-08,17083,435,"[\""Tablet\""]",3642.19,"{\"": \""29%\""}",292736,0,"""South America""" +2024-09-29,17084,6143,"[\""Phone\""]",3077.53,{},95639,1,"""Asia""" +2023-05-01,17085,1053,"[\""Charger\""]",3459.66,"{\""promo\"": \""15%\""}",209788,1,"""Africa""" +2023-04-22,17086,519,"[\""Phone\"", \""Keyboard\""]",2126.63,{},189938,1,"""Europe""" +2023-02-09,17087,4186,"[\""Keyboard\""]",4268.05,"{\""promo\"": \""27%\""}",136353,0,"""Africa""" +2024-03-02,17088,4888,"[\""Laptop\"", \""Monitor\""]",236.16,"{\""seasonal\"": \""28%\""}",285120,0,"""South America""" +2023-09-01,17089,9006,"[\""Monitor\"", \""Laptop\""]",251.21,"{\""seasonal\"": \""10%\""}",177087,1,"""Africa""" +2023-12-04,17090,1755,"[\""Headphones\"", \""Tablet\""]",3486.85,"{\""promo\"": \""10%\""}",195182,0,"""Asia""" +2023-06-15,17091,8185,"[\""Headphones\""]",2936.39,{},140877,1,"""Africa""" +2023-09-25,17092,1068,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3543.61,{},251644,0,"""Africa""" +2024-05-12,17093,9897,"[\""Tablet\""]",4390.76,{},228982,0,"""Europe""" +2023-10-25,17094,5731,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1733.83,{},240332,0,"""Africa""" +2023-02-11,17095,413,"[\""Phone\"", \""Wireless Mouse\""]",4926.75,{},203453,1,"""Asia""" +2023-03-27,17096,2971,"[\""Laptop\""]",2299.86,{},174918,1,"""South America""" +2023-03-20,17097,2373,"[\""Charger\""]",1576.16,{},100506,1,"""Asia""" +2023-12-20,17098,2623,"[\""Laptop\""]",1417.08,"{\""loyalty\"": \""7%\""}",122906,1,"""Asia""" +2024-05-02,17099,8836,"[\""Charger\"", \""Phone\""]",4058.87,{},209615,0,"""South America""" +2023-10-05,17100,3269,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3527.37,{},100206,1,"""Africa""" +2024-04-02,17101,510,"[\""Keyboard\"", \""Tablet\""]",3082.91,"{\""seasonal\"": \""20%\""}",133211,0,"""Europe""" +2023-10-07,17102,579,"[\""Tablet\""]",2977.7,"{\""seasonal\"": \""14%\""}",153340,1,"""Africa""" +2023-03-17,17103,2798,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4071.88,{},104702,1,"""North America""" +2024-10-19,17104,9556,"[\""Charger\"", \""Tablet\""]",3784.67,"{\""seasonal\"": \""16%\""}",216365,0,"""Africa""" +2024-11-11,17105,3709,"[\""Monitor\""]",4749.05,"{\"": \""14%\""}",66694,0,"""Africa""" +2024-01-24,17106,6573,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2364.66,"{\""promo\"": \""19%\""}",186459,1,"""North America""" +2024-11-04,17107,9846,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4798.52,"{\""loyalty\"": \""24%\""}",170764,1,"""North America""" +2023-05-22,17108,8176,"[\""Phone\""]",1350.06,{},142579,0,"""South America""" +2023-11-18,17109,646,"[\""Tablet\""]",1995.93,{},274381,0,"""Europe""" +2023-12-03,17110,5481,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4300.72,{},151484,0,"""Africa""" +2024-05-22,17111,7176,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4254.6,{},41109,0,"""Europe""" +2024-08-15,17112,9343,"[\""Monitor\"", \""Charger\""]",2783.07,"{\""loyalty\"": \""11%\""}",298935,1,"""Asia""" +2023-10-14,17113,5930,"[\""Monitor\""]",1144.05,{},121165,0,"""Africa""" +2023-10-12,17114,3558,"[\""Monitor\""]",2844.08,"{\""promo\"": \""29%\""}",66419,0,"""South America""" +2024-08-01,17115,7910,"[\""Phone\"", \""Keyboard\""]",1092.65,{},72663,0,"""South America""" +2024-12-12,17116,9219,"[\""Phone\""]",3221.0,"{\""seasonal\"": \""5%\""}",172513,1,"""North America""" +2023-03-29,17117,5311,"[\""Monitor\""]",3767.47,"{\""loyalty\"": \""15%\""}",16778,0,"""North America""" +2023-10-04,17118,1168,"[\""Wireless Mouse\""]",4227.62,"{\""loyalty\"": \""16%\""}",145167,0,"""Africa""" +2023-02-06,17119,8872,"[\""Charger\""]",3036.51,{},171923,0,"""North America""" +2024-07-18,17120,5294,"[\""Headphones\""]",4413.79,{},27575,0,"""Europe""" +2024-07-02,17121,7571,"[\""Tablet\"", \""Phone\""]",4045.29,"{\""promo\"": \""29%\""}",87750,0,"""South America""" +2024-04-29,17122,2884,"[\""Headphones\"", \""Laptop\""]",3065.55,"{\""loyalty\"": \""6%\""}",227262,1,"""South America""" +2024-12-03,17123,522,"[\""Tablet\"", \""Wireless Mouse\""]",2039.51,{},255055,0,"""North America""" +2023-07-12,17124,554,"[\""Wireless Mouse\""]",3755.9,"{\""promo\"": \""24%\""}",58691,0,"""South America""" +2024-11-06,17125,504,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4214.36,"{\""loyalty\"": \""9%\""}",2666,0,"""North America""" +2023-06-18,17126,768,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4298.01,"{\""seasonal\"": \""13%\""}",284082,0,"""North America""" +2024-06-12,17127,5699,"[\""Headphones\"", \""Monitor\""]",4580.57,{},190068,1,"""Europe""" +2024-05-04,17128,4723,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3902.17,{},290733,1,"""Europe""" +2024-06-18,17129,9470,"[\""Phone\"", \""Headphones\""]",2140.01,{},42213,0,"""South America""" +2023-07-13,17130,3822,"[\""Wireless Mouse\""]",3013.86,"{\""promo\"": \""30%\""}",184628,1,"""Asia""" +2023-01-27,17131,3097,"[\""Laptop\""]",2249.48,"{\""promo\"": \""24%\""}",299655,0,"""North America""" +2023-05-13,17132,6354,"[\""Tablet\"", \""Laptop\""]",4426.69,{},66423,1,"""South America""" +2023-04-13,17133,1348,"[\""Monitor\""]",3883.93,"{\"": \""28%\""}",298419,1,"""South America""" +2024-02-03,17134,6204,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3769.92,{},138671,0,"""Africa""" +2024-04-26,17135,4952,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3079.7,{},182877,1,"""North America""" +2024-05-27,17136,5274,"[\""Monitor\"", \""Laptop\""]",2263.94,"{\"": \""21%\""}",246364,0,"""Europe""" +2024-12-18,17137,8646,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1684.63,{},207080,0,"""North America""" +2023-03-08,17138,3477,"[\""Keyboard\""]",1137.54,{},181743,0,"""North America""" +2023-01-18,17139,4618,"[\""Wireless Mouse\""]",1606.17,"{\""promo\"": \""21%\""}",28717,0,"""Europe""" +2023-06-22,17140,5709,"[\""Wireless Mouse\"", \""Phone\""]",480.08,"{\"": \""12%\""}",260601,1,"""Asia""" +2023-10-14,17141,2538,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2056.13,{},23445,0,"""North America""" +2023-03-18,17142,3531,"[\""Laptop\"", \""Charger\""]",2556.01,{},248423,0,"""South America""" +2023-11-01,17143,7862,"[\""Monitor\"", \""Charger\""]",1074.16,{},160316,0,"""Asia""" +2023-10-24,17144,5495,"[\""Wireless Mouse\""]",1685.07,{},283994,1,"""South America""" +2024-04-02,17145,1066,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2979.61,"{\""promo\"": \""9%\""}",107156,0,"""Africa""" +2024-12-23,17146,9608,"[\""Keyboard\"", \""Wireless Mouse\""]",423.86,"{\""promo\"": \""14%\""}",68699,0,"""Asia""" +2024-02-21,17147,5921,"[\""Keyboard\""]",4698.18,"{\""seasonal\"": \""13%\""}",60979,1,"""Africa""" +2023-03-25,17148,48,"[\""Keyboard\""]",1183.94,{},266356,1,"""South America""" +2024-05-12,17149,6850,"[\""Charger\"", \""Headphones\""]",3065.65,{},294028,0,"""South America""" +2024-12-30,17150,1881,"[\""Laptop\"", \""Headphones\""]",3892.08,{},246095,1,"""Asia""" +2023-01-24,17151,196,"[\""Wireless Mouse\""]",1937.78,"{\""promo\"": \""28%\""}",37933,0,"""Asia""" +2023-03-19,17152,1625,"[\""Laptop\""]",4446.12,{},254596,1,"""Africa""" +2024-01-02,17153,829,"[\""Wireless Mouse\"", \""Charger\""]",3631.16,{},221569,0,"""South America""" +2023-08-17,17154,6202,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4855.1,{},173937,0,"""North America""" +2023-08-26,17155,2562,"[\""Laptop\""]",203.72,"{\""seasonal\"": \""29%\""}",279065,0,"""South America""" +2024-05-10,17156,7357,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4483.5,"{\""seasonal\"": \""19%\""}",157234,1,"""Africa""" +2024-09-29,17157,5707,"[\""Tablet\"", \""Headphones\""]",977.47,{},2653,1,"""Africa""" +2023-03-31,17158,6029,"[\""Tablet\""]",234.43,"{\""seasonal\"": \""14%\""}",173938,0,"""Africa""" +2024-04-27,17159,8132,"[\""Phone\"", \""Keyboard\""]",4545.99,"{\"": \""10%\""}",80312,0,"""Asia""" +2023-04-11,17160,4844,"[\""Headphones\"", \""Charger\""]",4602.4,{},150697,0,"""South America""" +2023-01-24,17161,44,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4866.48,{},185616,0,"""North America""" +2023-03-31,17162,29,"[\""Keyboard\"", \""Headphones\""]",1056.2,"{\""seasonal\"": \""27%\""}",35083,0,"""North America""" +2023-07-12,17163,5760,"[\""Wireless Mouse\"", \""Phone\""]",4558.32,"{\""seasonal\"": \""19%\""}",9017,0,"""Africa""" +2024-03-03,17164,1996,"[\""Headphones\"", \""Charger\""]",1616.25,"{\""promo\"": \""17%\""}",181526,1,"""Asia""" +2023-08-16,17165,4490,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",630.93,{},114772,1,"""Europe""" +2023-05-09,17166,8611,"[\""Headphones\"", \""Keyboard\""]",4063.27,{},251272,1,"""North America""" +2023-06-08,17167,4849,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1979.86,"{\""seasonal\"": \""19%\""}",248931,1,"""South America""" +2023-12-13,17168,9115,"[\""Tablet\""]",2235.62,{},137286,0,"""South America""" +2023-06-08,17169,4558,"[\""Headphones\""]",1706.19,{},81168,0,"""South America""" +2023-10-04,17170,1622,"[\""Laptop\"", \""Monitor\""]",3790.02,"{\""promo\"": \""5%\""}",2737,0,"""Asia""" +2023-10-21,17171,1653,"[\""Wireless Mouse\""]",2021.39,"{\"": \""27%\""}",207652,1,"""Asia""" +2024-11-10,17172,2852,"[\""Laptop\""]",3980.72,"{\""promo\"": \""25%\""}",32457,1,"""Asia""" +2023-06-15,17173,6083,"[\""Phone\""]",3226.18,"{\""seasonal\"": \""14%\""}",262590,1,"""South America""" +2024-08-11,17174,7028,"[\""Monitor\"", \""Headphones\""]",196.16,"{\""promo\"": \""28%\""}",199522,0,"""South America""" +2024-12-27,17175,9926,"[\""Headphones\"", \""Laptop\""]",764.63,"{\""seasonal\"": \""8%\""}",184587,1,"""Europe""" +2024-02-25,17176,5558,"[\""Wireless Mouse\""]",2786.52,{},282157,1,"""Asia""" +2024-09-12,17177,9966,"[\""Phone\""]",4895.6,{},194708,1,"""Asia""" +2024-03-08,17178,656,"[\""Tablet\"", \""Charger\""]",2999.46,"{\""loyalty\"": \""18%\""}",52791,1,"""Africa""" +2024-01-11,17179,1958,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1090.14,{},119619,0,"""Asia""" +2024-04-11,17180,4575,"[\""Keyboard\""]",1117.12,"{\""promo\"": \""26%\""}",135548,1,"""North America""" +2023-11-11,17181,7215,"[\""Laptop\"", \""Phone\""]",2665.46,"{\"": \""29%\""}",106796,1,"""South America""" +2023-07-27,17182,3802,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",512.71,"{\""loyalty\"": \""5%\""}",104549,0,"""Africa""" +2024-05-17,17183,8019,"[\""Phone\"", \""Keyboard\""]",2909.45,{},6251,0,"""South America""" +2024-06-30,17184,7775,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4371.87,"{\"": \""6%\""}",79529,0,"""Asia""" +2023-11-08,17185,6511,"[\""Monitor\""]",3468.15,{},140456,1,"""North America""" +2024-04-13,17186,1103,"[\""Monitor\"", \""Keyboard\""]",2800.52,{},134719,0,"""North America""" +2023-02-25,17187,3725,"[\""Wireless Mouse\"", \""Keyboard\""]",456.59,{},46514,1,"""North America""" +2023-12-03,17188,3641,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",819.1,"{\""seasonal\"": \""12%\""}",150760,1,"""Asia""" +2023-05-04,17189,7246,"[\""Tablet\"", \""Laptop\""]",2276.82,{},266838,0,"""Africa""" +2024-09-07,17190,4696,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",774.04,{},193960,0,"""Africa""" +2024-10-05,17191,869,"[\""Keyboard\""]",299.35,{},172044,1,"""Asia""" +2023-12-17,17192,9951,"[\""Laptop\""]",3427.3,"{\"": \""28%\""}",70623,1,"""Africa""" +2024-01-08,17193,8740,"[\""Wireless Mouse\""]",1130.47,"{\""seasonal\"": \""27%\""}",43709,1,"""Asia""" +2024-08-18,17194,1922,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3761.38,"{\""seasonal\"": \""5%\""}",252703,0,"""North America""" +2024-12-29,17195,4684,"[\""Wireless Mouse\""]",4143.55,{},138970,1,"""Asia""" +2023-02-02,17196,8665,"[\""Phone\""]",4781.87,"{\""seasonal\"": \""30%\""}",116516,1,"""South America""" +2024-12-03,17197,8454,"[\""Charger\""]",885.85,"{\""promo\"": \""14%\""}",171458,0,"""Africa""" +2023-06-14,17198,3653,"[\""Tablet\""]",532.19,"{\""loyalty\"": \""12%\""}",103868,1,"""South America""" +2023-04-13,17199,3274,"[\""Tablet\""]",4274.58,"{\""loyalty\"": \""19%\""}",257855,1,"""Asia""" +2024-05-06,17200,792,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3876.12,{},295340,1,"""South America""" +2024-12-03,17201,8371,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1823.87,"{\""seasonal\"": \""26%\""}",146943,0,"""North America""" +2024-01-05,17202,6646,"[\""Phone\"", \""Monitor\""]",2632.43,{},98573,0,"""South America""" +2023-04-15,17203,1962,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4948.55,"{\""loyalty\"": \""25%\""}",284678,0,"""Asia""" +2024-05-12,17204,2755,"[\""Laptop\""]",1930.32,{},140190,1,"""Africa""" +2023-09-11,17205,9278,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",53.83,"{\""seasonal\"": \""23%\""}",186295,0,"""Asia""" +2023-10-20,17206,7150,"[\""Laptop\"", \""Headphones\""]",2087.95,{},224928,1,"""Africa""" +2023-03-29,17207,7483,"[\""Monitor\"", \""Phone\""]",4819.21,"{\"": \""21%\""}",111340,0,"""North America""" +2023-01-29,17208,6369,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1831.06,"{\""seasonal\"": \""14%\""}",182600,1,"""Europe""" +2024-10-31,17209,7593,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3315.23,"{\""loyalty\"": \""13%\""}",263188,1,"""Asia""" +2024-04-02,17210,1462,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4851.34,{},37380,1,"""Europe""" +2023-04-24,17211,1742,"[\""Monitor\"", \""Laptop\""]",3995.85,"{\"": \""9%\""}",37507,0,"""North America""" +2024-11-30,17212,4809,"[\""Phone\"", \""Monitor\""]",304.17,{},154734,0,"""Europe""" +2023-06-11,17213,1007,"[\""Phone\"", \""Laptop\""]",4843.89,"{\""promo\"": \""6%\""}",43654,1,"""North America""" +2024-07-10,17214,6273,"[\""Monitor\""]",3684.1,"{\""loyalty\"": \""28%\""}",131323,0,"""Europe""" +2023-11-04,17215,2234,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4569.05,{},225021,0,"""North America""" +2023-12-24,17216,5427,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1404.79,"{\""seasonal\"": \""28%\""}",275297,1,"""South America""" +2024-07-14,17217,6916,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4943.71,"{\""promo\"": \""23%\""}",72188,0,"""Africa""" +2023-10-30,17218,2417,"[\""Monitor\""]",455.2,"{\""seasonal\"": \""24%\""}",85063,0,"""North America""" +2023-06-07,17219,6774,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1024.77,{},149208,0,"""Europe""" +2024-11-17,17220,3799,"[\""Laptop\""]",1460.39,"{\""promo\"": \""25%\""}",154558,0,"""Africa""" +2023-11-17,17221,4704,"[\""Headphones\""]",2114.1,{},36282,0,"""South America""" +2023-04-16,17222,5368,"[\""Phone\""]",339.76,{},169452,1,"""Africa""" +2023-04-18,17223,7055,"[\""Laptop\""]",1064.56,"{\""promo\"": \""11%\""}",98507,1,"""South America""" +2023-07-12,17224,540,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4358.31,"{\"": \""13%\""}",65896,0,"""Asia""" +2024-10-08,17225,8264,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3389.44,"{\"": \""11%\""}",137277,0,"""Africa""" +2023-05-06,17226,1658,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3091.57,{},244240,0,"""Asia""" +2023-07-12,17227,5338,"[\""Keyboard\""]",3406.36,"{\""promo\"": \""15%\""}",104422,1,"""North America""" +2023-11-19,17228,9435,"[\""Charger\""]",1029.3,"{\""promo\"": \""21%\""}",278554,0,"""Asia""" +2023-02-10,17229,7944,"[\""Headphones\""]",3021.06,{},200535,1,"""North America""" +2023-10-16,17230,8358,"[\""Wireless Mouse\"", \""Charger\""]",2684.69,{},18926,1,"""Africa""" +2023-03-17,17231,4416,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1263.71,"{\""seasonal\"": \""30%\""}",193329,1,"""South America""" +2023-04-15,17232,476,"[\""Monitor\""]",4028.31,"{\""loyalty\"": \""19%\""}",121743,0,"""Europe""" +2023-04-17,17233,29,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3648.48,"{\"": \""10%\""}",106382,0,"""South America""" +2023-06-01,17234,768,"[\""Phone\""]",2449.08,{},63208,0,"""North America""" +2024-08-04,17235,3383,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4624.83,"{\""seasonal\"": \""17%\""}",162784,0,"""North America""" +2023-04-14,17236,3303,"[\""Charger\""]",3901.85,{},8090,1,"""Europe""" +2023-04-20,17237,8097,"[\""Headphones\"", \""Tablet\""]",3163.35,"{\""loyalty\"": \""24%\""}",216481,0,"""North America""" +2024-06-20,17238,283,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4157.16,"{\""seasonal\"": \""6%\""}",230965,0,"""North America""" +2024-01-11,17239,2039,"[\""Headphones\"", \""Charger\""]",3479.27,"{\""seasonal\"": \""15%\""}",291006,0,"""Europe""" +2023-02-21,17240,4492,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4562.24,"{\""seasonal\"": \""17%\""}",208107,1,"""Africa""" +2024-05-23,17241,1045,"[\""Charger\"", \""Tablet\""]",4948.74,"{\"": \""17%\""}",211970,1,"""North America""" +2023-07-22,17242,9075,"[\""Keyboard\"", \""Tablet\""]",92.18,{},40311,0,"""Africa""" +2024-12-14,17243,1148,"[\""Laptop\"", \""Tablet\""]",4477.56,{},173817,0,"""Africa""" +2024-05-24,17244,8510,"[\""Monitor\""]",156.56,"{\""loyalty\"": \""17%\""}",187310,0,"""South America""" +2024-08-11,17245,7774,"[\""Wireless Mouse\""]",474.87,"{\""seasonal\"": \""21%\""}",247314,0,"""North America""" +2023-02-14,17246,3388,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3937.55,{},260832,1,"""Africa""" +2023-11-12,17247,1059,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4030.41,{},266675,1,"""North America""" +2024-09-07,17248,842,"[\""Headphones\"", \""Wireless Mouse\""]",4710.83,"{\""seasonal\"": \""22%\""}",55331,0,"""Africa""" +2024-02-21,17249,6499,"[\""Charger\""]",3677.04,{},28528,1,"""Africa""" +2023-04-16,17250,5190,"[\""Monitor\"", \""Charger\""]",3417.65,{},258839,0,"""Africa""" +2024-09-27,17251,2344,"[\""Phone\""]",3571.3,{},276852,1,"""North America""" +2024-06-22,17252,7238,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1946.18,"{\""seasonal\"": \""17%\""}",144223,0,"""South America""" +2024-12-10,17253,7151,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4123.58,"{\""promo\"": \""16%\""}",120324,1,"""North America""" +2024-10-04,17254,6083,"[\""Keyboard\""]",3644.93,{},51131,0,"""Europe""" +2024-07-08,17255,6347,"[\""Keyboard\"", \""Charger\""]",579.86,"{\""seasonal\"": \""29%\""}",139282,0,"""Europe""" +2023-06-19,17256,2203,"[\""Phone\""]",754.86,"{\""promo\"": \""22%\""}",265431,0,"""Africa""" +2023-06-01,17257,2979,"[\""Wireless Mouse\""]",849.38,"{\""seasonal\"": \""20%\""}",127614,1,"""North America""" +2024-08-14,17258,2527,"[\""Phone\""]",1907.28,{},208800,0,"""Asia""" +2023-11-13,17259,1419,"[\""Charger\"", \""Tablet\""]",2575.31,"{\""seasonal\"": \""21%\""}",265179,0,"""Europe""" +2024-01-19,17260,5928,"[\""Laptop\""]",4730.67,"{\"": \""28%\""}",174137,0,"""Asia""" +2023-12-15,17261,4430,"[\""Headphones\""]",996.64,"{\""seasonal\"": \""20%\""}",44361,1,"""Asia""" +2023-07-22,17262,3010,"[\""Laptop\"", \""Wireless Mouse\""]",4360.55,{},253275,0,"""Africa""" +2023-08-07,17263,4101,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4510.23,{},19051,1,"""Europe""" +2023-09-10,17264,7986,"[\""Phone\"", \""Monitor\""]",3552.31,"{\"": \""14%\""}",80523,0,"""South America""" +2023-01-20,17265,3030,"[\""Monitor\""]",2220.16,"{\""loyalty\"": \""22%\""}",102250,0,"""South America""" +2024-08-23,17266,4666,"[\""Laptop\""]",2517.11,{},215077,1,"""Europe""" +2023-03-01,17267,4318,"[\""Wireless Mouse\"", \""Laptop\""]",3462.36,"{\""promo\"": \""24%\""}",62459,1,"""South America""" +2024-12-16,17268,8390,"[\""Tablet\""]",4882.3,"{\""promo\"": \""6%\""}",292180,0,"""Africa""" +2023-04-21,17269,6870,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3871.71,{},73746,0,"""South America""" +2023-11-05,17270,8400,"[\""Monitor\""]",4267.18,"{\""promo\"": \""14%\""}",231462,1,"""South America""" +2023-07-19,17271,3343,"[\""Keyboard\""]",916.48,{},230860,0,"""Asia""" +2024-04-30,17272,1690,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",579.69,"{\""seasonal\"": \""22%\""}",60510,1,"""South America""" +2024-10-13,17273,316,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2785.64,"{\"": \""27%\""}",203402,1,"""Asia""" +2023-04-16,17274,8651,"[\""Tablet\"", \""Keyboard\""]",346.19,{},267702,0,"""South America""" +2023-08-30,17275,283,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2260.91,{},9466,1,"""North America""" +2024-07-25,17276,7519,"[\""Laptop\""]",4136.49,{},178159,1,"""Asia""" +2023-11-01,17277,3042,"[\""Phone\"", \""Charger\""]",3285.32,"{\"": \""24%\""}",271301,0,"""Europe""" +2024-01-13,17278,7497,"[\""Keyboard\""]",1841.63,{},57727,1,"""North America""" +2024-09-15,17279,4200,"[\""Laptop\"", \""Wireless Mouse\""]",792.35,{},80801,0,"""North America""" +2023-06-23,17280,9859,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3477.68,"{\"": \""14%\""}",259065,0,"""Europe""" +2023-05-17,17281,2581,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2291.64,{},256328,0,"""Africa""" +2024-08-17,17282,8260,"[\""Charger\"", \""Tablet\""]",1300.8,{},264078,0,"""North America""" +2024-05-26,17283,6823,"[\""Charger\""]",832.18,{},15542,1,"""North America""" +2023-08-07,17284,4029,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3533.86,"{\""seasonal\"": \""30%\""}",233875,1,"""Africa""" +2023-10-01,17285,3343,"[\""Charger\"", \""Tablet\""]",1632.2,{},85558,0,"""South America""" +2024-06-26,17286,9477,"[\""Headphones\"", \""Wireless Mouse\""]",3901.89,{},33765,1,"""Africa""" +2023-05-08,17287,3862,"[\""Headphones\""]",4797.91,{},183901,1,"""North America""" +2023-10-20,17288,6822,"[\""Monitor\"", \""Phone\""]",3614.57,"{\""seasonal\"": \""18%\""}",125948,0,"""Asia""" +2024-01-07,17289,1942,"[\""Charger\"", \""Headphones\""]",1549.99,{},220012,0,"""South America""" +2023-05-05,17290,6979,"[\""Charger\""]",1243.24,"{\"": \""13%\""}",89032,0,"""Asia""" +2024-01-20,17291,8572,"[\""Headphones\""]",2849.85,"{\""seasonal\"": \""6%\""}",226457,0,"""South America""" +2023-09-14,17292,3902,"[\""Wireless Mouse\"", \""Monitor\""]",3417.7,{},198342,1,"""Europe""" +2023-09-20,17293,1561,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4139.02,"{\""promo\"": \""8%\""}",69987,0,"""North America""" +2024-08-20,17294,5142,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3633.11,"{\""seasonal\"": \""22%\""}",264963,1,"""South America""" +2023-01-01,17295,1266,"[\""Phone\"", \""Monitor\""]",2208.62,{},212478,1,"""Asia""" +2023-03-31,17296,9846,"[\""Headphones\"", \""Tablet\""]",2550.03,"{\"": \""6%\""}",98342,1,"""Europe""" +2024-10-31,17297,1083,"[\""Phone\""]",3782.19,"{\""promo\"": \""8%\""}",143502,1,"""South America""" +2024-10-06,17298,6717,"[\""Wireless Mouse\"", \""Keyboard\""]",2343.72,"{\"": \""17%\""}",116854,0,"""Europe""" +2023-12-08,17299,8423,"[\""Monitor\"", \""Keyboard\""]",4218.75,{},190150,1,"""Africa""" +2023-12-26,17300,587,"[\""Monitor\"", \""Headphones\""]",326.43,{},220822,0,"""Asia""" +2024-09-02,17301,6345,"[\""Laptop\"", \""Keyboard\""]",1320.27,"{\""promo\"": \""15%\""}",50958,1,"""Asia""" +2023-05-09,17302,4619,"[\""Wireless Mouse\"", \""Laptop\""]",2110.3,{},107483,0,"""Europe""" +2024-08-23,17303,9863,"[\""Tablet\"", \""Charger\""]",3746.97,{},52272,0,"""North America""" +2024-10-07,17304,4372,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2100.98,"{\""promo\"": \""8%\""}",181544,1,"""North America""" +2023-07-29,17305,3114,"[\""Wireless Mouse\""]",3298.48,"{\""promo\"": \""14%\""}",132875,1,"""North America""" +2024-09-10,17306,2961,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4385.7,"{\""loyalty\"": \""25%\""}",101583,0,"""Africa""" +2023-08-06,17307,2337,"[\""Phone\"", \""Headphones\""]",1755.27,"{\""seasonal\"": \""29%\""}",147771,1,"""Asia""" +2023-11-28,17308,8382,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3770.14,{},60869,1,"""Asia""" +2023-11-26,17309,5447,"[\""Laptop\"", \""Phone\""]",2487.13,"{\""promo\"": \""15%\""}",186851,0,"""Europe""" +2023-08-12,17310,1310,"[\""Headphones\""]",4603.14,"{\""loyalty\"": \""5%\""}",245623,1,"""South America""" +2023-11-07,17311,379,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4426.31,"{\"": \""29%\""}",120817,1,"""Europe""" +2024-05-09,17312,2577,"[\""Phone\""]",2495.12,"{\""loyalty\"": \""29%\""}",9817,0,"""North America""" +2024-02-11,17313,8454,"[\""Laptop\"", \""Headphones\""]",1888.87,"{\""promo\"": \""18%\""}",205582,1,"""North America""" +2023-03-28,17314,1635,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4790.16,"{\"": \""21%\""}",236217,0,"""Europe""" +2024-08-06,17315,5432,"[\""Phone\"", \""Monitor\""]",4994.52,{},72391,0,"""North America""" +2024-07-21,17316,8388,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3189.09,"{\""seasonal\"": \""29%\""}",294495,1,"""South America""" +2023-03-08,17317,8029,"[\""Headphones\"", \""Monitor\""]",4274.16,"{\""seasonal\"": \""7%\""}",167502,1,"""Africa""" +2023-10-22,17318,2192,"[\""Headphones\"", \""Monitor\""]",2057.44,"{\""loyalty\"": \""17%\""}",110706,1,"""South America""" +2023-03-07,17319,4029,"[\""Monitor\""]",3329.42,"{\""loyalty\"": \""14%\""}",46971,0,"""North America""" +2024-12-29,17320,5018,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1648.21,"{\""loyalty\"": \""10%\""}",287650,0,"""Africa""" +2024-08-26,17321,979,"[\""Keyboard\"", \""Laptop\""]",4033.01,"{\""loyalty\"": \""20%\""}",36700,1,"""South America""" +2024-05-27,17322,4552,"[\""Monitor\""]",1896.27,{},11155,0,"""South America""" +2024-01-15,17323,2687,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1426.1,"{\""promo\"": \""22%\""}",59705,0,"""North America""" +2024-11-04,17324,4940,"[\""Headphones\""]",2674.22,"{\""promo\"": \""20%\""}",187433,0,"""Africa""" +2024-10-19,17325,8003,"[\""Wireless Mouse\"", \""Keyboard\""]",1911.38,{},31632,0,"""Europe""" +2024-03-21,17326,2518,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",642.91,{},242334,1,"""Africa""" +2023-04-29,17327,2461,"[\""Monitor\"", \""Wireless Mouse\""]",3278.75,{},175173,1,"""North America""" +2023-11-15,17328,2206,"[\""Keyboard\"", \""Monitor\""]",2415.07,{},97267,1,"""North America""" +2024-05-17,17329,2387,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3868.78,{},130614,0,"""Africa""" +2024-09-01,17330,3324,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4450.02,{},88024,1,"""South America""" +2023-10-03,17331,459,"[\""Charger\"", \""Monitor\""]",751.78,{},193495,0,"""South America""" +2023-11-04,17332,3162,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4047.31,"{\""seasonal\"": \""8%\""}",58971,1,"""North America""" +2024-09-21,17333,1509,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4580.24,{},222990,1,"""North America""" +2023-09-03,17334,5840,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",125.56,{},123546,0,"""South America""" +2023-09-28,17335,5661,"[\""Headphones\""]",4166.0,"{\""loyalty\"": \""12%\""}",29861,1,"""Asia""" +2023-07-18,17336,2646,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",213.44,"{\""promo\"": \""18%\""}",220913,0,"""Europe""" +2024-12-24,17337,7297,"[\""Tablet\""]",4558.73,"{\"": \""7%\""}",134418,0,"""South America""" +2023-09-29,17338,5894,"[\""Wireless Mouse\"", \""Charger\""]",1609.94,"{\""loyalty\"": \""25%\""}",228237,0,"""Europe""" +2023-02-10,17339,6072,"[\""Laptop\"", \""Keyboard\""]",195.29,"{\""loyalty\"": \""30%\""}",9299,0,"""Africa""" +2024-06-12,17340,443,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",417.62,{},55134,1,"""Africa""" +2023-12-27,17341,6659,"[\""Phone\""]",2936.29,{},223186,1,"""Europe""" +2024-08-12,17342,6369,"[\""Monitor\"", \""Laptop\""]",3285.51,{},53776,0,"""South America""" +2024-12-01,17343,8580,"[\""Tablet\""]",1331.7,"{\""seasonal\"": \""21%\""}",53039,0,"""Africa""" +2024-01-07,17344,8493,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",823.74,"{\""loyalty\"": \""9%\""}",202479,1,"""North America""" +2023-02-04,17345,353,"[\""Headphones\"", \""Monitor\""]",1520.49,{},165560,1,"""Asia""" +2023-01-07,17346,2218,"[\""Headphones\""]",2127.87,{},217698,0,"""Europe""" +2023-04-08,17347,9802,"[\""Phone\"", \""Keyboard\""]",4847.68,"{\""loyalty\"": \""15%\""}",66754,1,"""North America""" +2023-10-18,17348,9090,"[\""Headphones\"", \""Keyboard\""]",3645.18,"{\"": \""24%\""}",131852,0,"""Asia""" +2024-03-31,17349,5109,"[\""Headphones\"", \""Phone\""]",2317.02,"{\""loyalty\"": \""26%\""}",147302,0,"""Asia""" +2024-12-03,17350,7875,"[\""Phone\""]",851.01,"{\""seasonal\"": \""20%\""}",99785,1,"""Asia""" +2023-08-19,17351,1626,"[\""Wireless Mouse\""]",3035.72,"{\"": \""28%\""}",157799,0,"""Africa""" +2023-01-24,17352,4667,"[\""Tablet\"", \""Laptop\""]",730.52,"{\""seasonal\"": \""24%\""}",206035,0,"""Europe""" +2023-02-27,17353,6472,"[\""Keyboard\""]",3737.63,"{\""loyalty\"": \""22%\""}",113424,1,"""Europe""" +2024-12-29,17354,7200,"[\""Keyboard\"", \""Laptop\""]",2973.2,"{\""loyalty\"": \""10%\""}",125992,0,"""Europe""" +2024-05-24,17355,6944,"[\""Laptop\"", \""Monitor\""]",3218.58,"{\""loyalty\"": \""21%\""}",237374,0,"""Europe""" +2023-10-28,17356,5079,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2900.16,"{\""promo\"": \""13%\""}",234585,1,"""Europe""" +2023-08-31,17357,6361,"[\""Keyboard\""]",509.4,{},298443,1,"""North America""" +2024-05-06,17358,759,"[\""Keyboard\"", \""Monitor\""]",796.14,"{\""seasonal\"": \""30%\""}",1553,1,"""North America""" +2023-01-10,17359,6071,"[\""Charger\""]",1678.31,{},86232,1,"""Asia""" +2024-01-19,17360,7125,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3683.58,{},77840,1,"""Europe""" +2023-12-23,17361,681,"[\""Monitor\"", \""Charger\""]",1144.0,{},202266,0,"""Africa""" +2024-03-29,17362,1706,"[\""Charger\"", \""Tablet\""]",4377.25,{},108091,1,"""North America""" +2024-06-14,17363,9056,"[\""Headphones\""]",1004.98,"{\"": \""26%\""}",67450,0,"""Asia""" +2024-06-29,17364,2358,"[\""Phone\"", \""Tablet\""]",2642.48,{},74998,0,"""Africa""" +2024-12-27,17365,3215,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2862.08,{},237918,0,"""South America""" +2024-04-25,17366,6307,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1776.4,{},282099,0,"""North America""" +2023-05-31,17367,6312,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1343.87,{},134287,1,"""Asia""" +2023-04-16,17368,7584,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",258.72,{},18671,0,"""South America""" +2023-08-04,17369,1337,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2152.1,"{\""promo\"": \""5%\""}",56541,0,"""Africa""" +2023-03-07,17370,6763,"[\""Headphones\""]",4590.28,{},145541,0,"""Asia""" +2024-07-02,17371,8855,"[\""Keyboard\""]",805.72,{},113480,0,"""Asia""" +2023-12-19,17372,3079,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3652.98,{},9210,0,"""Asia""" +2023-05-02,17373,6640,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2271.18,{},184224,0,"""Africa""" +2023-02-17,17374,109,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",72.84,{},158895,1,"""South America""" +2024-04-06,17375,5748,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4178.68,"{\""seasonal\"": \""20%\""}",101069,0,"""Europe""" +2023-04-13,17376,7661,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3274.17,{},16261,0,"""Africa""" +2024-07-31,17377,6329,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4858.42,{},119924,1,"""Europe""" +2024-01-09,17378,8097,"[\""Charger\"", \""Monitor\""]",1683.25,{},177203,0,"""South America""" +2023-09-05,17379,7188,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2878.89,{},290750,0,"""Europe""" +2023-12-02,17380,3537,"[\""Monitor\""]",1904.59,"{\""promo\"": \""15%\""}",159688,1,"""South America""" +2024-11-07,17381,8473,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1882.43,"{\""loyalty\"": \""10%\""}",242745,1,"""Europe""" +2023-02-26,17382,3051,"[\""Headphones\""]",865.8,"{\"": \""14%\""}",133459,1,"""Europe""" +2023-12-18,17383,2109,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",750.19,{},54356,0,"""North America""" +2024-10-30,17384,8407,"[\""Phone\""]",2958.37,{},258580,1,"""South America""" +2024-02-12,17385,7356,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1749.83,"{\"": \""15%\""}",86574,0,"""South America""" +2024-01-29,17386,7794,"[\""Tablet\""]",1369.33,"{\""seasonal\"": \""12%\""}",79097,1,"""South America""" +2023-01-31,17387,7786,"[\""Wireless Mouse\"", \""Headphones\""]",1061.84,"{\""seasonal\"": \""15%\""}",125723,0,"""Europe""" +2023-12-30,17388,2565,"[\""Monitor\""]",2478.64,{},219159,0,"""Europe""" +2023-04-09,17389,420,"[\""Headphones\"", \""Phone\""]",2414.26,"{\"": \""18%\""}",58902,0,"""South America""" +2023-09-30,17390,5795,"[\""Phone\"", \""Charger\""]",3714.81,"{\"": \""22%\""}",185586,0,"""North America""" +2024-07-05,17391,8672,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",865.6,"{\""seasonal\"": \""24%\""}",187798,1,"""Africa""" +2024-05-04,17392,1688,"[\""Headphones\"", \""Wireless Mouse\""]",2644.88,{},3308,1,"""Asia""" +2024-02-27,17393,2884,"[\""Keyboard\""]",3771.55,"{\""promo\"": \""5%\""}",188139,0,"""Asia""" +2024-10-19,17394,7592,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",318.22,"{\""promo\"": \""17%\""}",52338,1,"""Africa""" +2024-06-09,17395,5611,"[\""Wireless Mouse\""]",2918.3,"{\""loyalty\"": \""17%\""}",62438,1,"""Europe""" +2024-12-05,17396,829,"[\""Monitor\"", \""Wireless Mouse\""]",4187.71,{},64640,1,"""Europe""" +2023-05-11,17397,809,"[\""Tablet\""]",3510.37,{},133956,1,"""North America""" +2024-04-03,17398,6242,"[\""Keyboard\"", \""Laptop\""]",1372.73,{},31312,1,"""Asia""" +2023-12-02,17399,4038,"[\""Headphones\"", \""Wireless Mouse\""]",379.65,{},10848,0,"""South America""" +2024-06-20,17400,6301,"[\""Charger\""]",3819.42,"{\""promo\"": \""10%\""}",153602,1,"""Africa""" +2024-01-25,17401,9986,"[\""Laptop\""]",2149.22,"{\""promo\"": \""22%\""}",174727,0,"""North America""" +2024-05-23,17402,3166,"[\""Headphones\""]",1178.52,{},22547,1,"""Africa""" +2023-08-30,17403,3279,"[\""Monitor\"", \""Wireless Mouse\""]",1541.49,"{\"": \""26%\""}",163135,1,"""South America""" +2024-02-11,17404,5698,"[\""Wireless Mouse\""]",1014.04,{},280826,0,"""North America""" +2023-12-03,17405,2068,"[\""Wireless Mouse\""]",3188.34,{},28085,1,"""Africa""" +2023-10-13,17406,9145,"[\""Monitor\"", \""Keyboard\""]",4598.66,"{\"": \""16%\""}",123353,1,"""Europe""" +2024-03-12,17407,8432,"[\""Wireless Mouse\""]",199.54,"{\""promo\"": \""29%\""}",267834,1,"""Europe""" +2024-01-15,17408,3904,"[\""Headphones\"", \""Keyboard\""]",1791.68,{},33041,0,"""North America""" +2023-08-16,17409,6535,"[\""Phone\""]",3762.26,{},221821,1,"""North America""" +2024-08-19,17410,8512,"[\""Keyboard\"", \""Wireless Mouse\""]",1766.91,"{\""loyalty\"": \""22%\""}",21556,0,"""North America""" +2024-04-04,17411,5136,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",80.78,"{\""seasonal\"": \""10%\""}",20006,1,"""Africa""" +2023-11-05,17412,502,"[\""Laptop\"", \""Headphones\""]",2611.18,{},133686,1,"""North America""" +2024-02-28,17413,3209,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4167.28,{},250048,1,"""Africa""" +2023-06-06,17414,6353,"[\""Charger\"", \""Laptop\""]",3878.22,"{\""promo\"": \""9%\""}",147154,1,"""Europe""" +2024-05-23,17415,605,"[\""Wireless Mouse\"", \""Tablet\""]",4419.76,"{\""seasonal\"": \""5%\""}",204343,1,"""Europe""" +2024-12-14,17416,6098,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4204.77,"{\""seasonal\"": \""8%\""}",254487,1,"""Asia""" +2024-01-14,17417,6367,"[\""Laptop\""]",4322.43,{},187698,1,"""North America""" +2023-10-30,17418,2373,"[\""Laptop\""]",2912.14,"{\""seasonal\"": \""21%\""}",211471,1,"""Europe""" +2023-04-18,17419,7265,"[\""Keyboard\"", \""Monitor\""]",4582.92,{},167716,1,"""Europe""" +2023-08-04,17420,3553,"[\""Charger\""]",472.23,{},76439,0,"""Europe""" +2024-12-26,17421,3207,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4942.64,"{\""seasonal\"": \""10%\""}",13809,1,"""South America""" +2023-10-12,17422,3816,"[\""Wireless Mouse\""]",4622.34,{},34379,0,"""Asia""" +2023-12-22,17423,1563,"[\""Headphones\"", \""Monitor\""]",3569.39,{},64533,0,"""Europe""" +2024-11-23,17424,3059,"[\""Charger\"", \""Wireless Mouse\""]",4663.75,"{\""loyalty\"": \""8%\""}",27345,0,"""Africa""" +2023-07-29,17425,9531,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4634.55,{},247371,1,"""Africa""" +2023-09-03,17426,5166,"[\""Headphones\""]",2797.24,"{\"": \""23%\""}",244733,1,"""North America""" +2024-01-23,17427,1656,"[\""Tablet\"", \""Headphones\""]",1620.52,"{\""seasonal\"": \""11%\""}",142402,1,"""Asia""" +2023-12-26,17428,6247,"[\""Phone\"", \""Monitor\""]",4673.04,{},68105,1,"""Africa""" +2024-11-26,17429,2946,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3081.54,"{\""promo\"": \""20%\""}",203271,1,"""Asia""" +2024-08-06,17430,8066,"[\""Phone\"", \""Laptop\""]",4984.49,"{\"": \""29%\""}",231881,1,"""North America""" +2023-04-21,17431,2373,"[\""Phone\""]",1194.66,"{\""promo\"": \""9%\""}",260223,1,"""Africa""" +2023-10-12,17432,3699,"[\""Phone\"", \""Monitor\""]",1604.48,{},154123,1,"""Asia""" +2024-09-26,17433,5551,"[\""Charger\""]",738.85,{},145830,0,"""Asia""" +2023-10-09,17434,2386,"[\""Laptop\"", \""Tablet\""]",4779.29,"{\""promo\"": \""10%\""}",107861,1,"""South America""" +2023-01-03,17435,9926,"[\""Phone\""]",2493.49,"{\""loyalty\"": \""16%\""}",151489,1,"""South America""" +2023-12-28,17436,6890,"[\""Charger\"", \""Laptop\""]",1854.45,{},43985,0,"""Asia""" +2023-03-05,17437,9843,"[\""Laptop\""]",2551.09,{},280011,1,"""Europe""" +2024-07-15,17438,8091,"[\""Monitor\"", \""Headphones\""]",1818.02,{},285585,0,"""North America""" +2023-06-18,17439,6125,"[\""Charger\""]",1828.9,"{\""promo\"": \""12%\""}",19944,0,"""Africa""" +2023-09-10,17440,1696,"[\""Charger\""]",763.92,"{\"": \""20%\""}",209394,0,"""North America""" +2023-04-08,17441,3400,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1929.88,{},146215,1,"""Europe""" +2023-01-10,17442,6691,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",353.69,"{\""loyalty\"": \""27%\""}",70588,1,"""Europe""" +2023-09-03,17443,6151,"[\""Tablet\""]",3094.71,{},175633,0,"""Europe""" +2024-02-21,17444,267,"[\""Wireless Mouse\""]",4981.97,"{\""loyalty\"": \""12%\""}",156278,1,"""North America""" +2024-07-07,17445,1805,"[\""Phone\""]",979.45,{},187644,1,"""North America""" +2023-02-23,17446,9367,"[\""Keyboard\""]",2252.08,{},218861,1,"""South America""" +2024-07-04,17447,7230,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1410.77,"{\""seasonal\"": \""6%\""}",254485,1,"""Africa""" +2023-06-18,17448,1798,"[\""Headphones\""]",2837.66,"{\""promo\"": \""12%\""}",78798,0,"""Europe""" +2024-11-30,17449,299,"[\""Tablet\"", \""Monitor\""]",2166.5,{},177649,1,"""Europe""" +2023-08-17,17450,1077,"[\""Charger\""]",3478.81,"{\""seasonal\"": \""25%\""}",171356,0,"""North America""" +2023-08-23,17451,9967,"[\""Headphones\"", \""Monitor\""]",2454.96,{},244205,1,"""Europe""" +2023-12-30,17452,1158,"[\""Tablet\"", \""Charger\""]",2606.0,{},138680,1,"""North America""" +2023-11-26,17453,6548,"[\""Wireless Mouse\"", \""Laptop\""]",2183.14,"{\"": \""12%\""}",40886,0,"""North America""" +2024-05-02,17454,2324,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2927.43,{},253056,1,"""North America""" +2024-03-28,17455,5133,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",733.36,"{\""promo\"": \""6%\""}",241800,1,"""South America""" +2023-01-01,17456,3195,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1671.0,{},158751,0,"""North America""" +2023-07-21,17457,7713,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",690.69,{},297392,0,"""South America""" +2023-01-13,17458,2193,"[\""Charger\"", \""Laptop\""]",4071.81,"{\"": \""17%\""}",13626,0,"""North America""" +2023-11-07,17459,190,"[\""Headphones\"", \""Laptop\""]",2802.46,{},173500,0,"""Europe""" +2024-06-26,17460,5065,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4260.66,"{\"": \""28%\""}",181665,1,"""North America""" +2023-10-02,17461,2212,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1361.82,{},67881,0,"""Africa""" +2024-11-17,17462,6270,"[\""Tablet\"", \""Laptop\""]",531.98,"{\""loyalty\"": \""14%\""}",133801,0,"""South America""" +2023-08-05,17463,3308,"[\""Monitor\""]",3349.88,{},1480,0,"""Asia""" +2023-07-09,17464,8451,"[\""Headphones\""]",495.04,"{\""seasonal\"": \""28%\""}",36744,1,"""North America""" +2023-06-04,17465,5620,"[\""Laptop\"", \""Wireless Mouse\""]",992.47,{},173266,0,"""South America""" +2023-03-14,17466,7578,"[\""Monitor\""]",4595.41,"{\""loyalty\"": \""7%\""}",45008,1,"""Africa""" +2023-12-26,17467,8860,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",645.51,{},238283,0,"""Europe""" +2023-04-30,17468,7853,"[\""Keyboard\""]",4017.47,{},135911,1,"""North America""" +2024-02-12,17469,6277,"[\""Phone\"", \""Wireless Mouse\""]",4685.58,{},115518,1,"""Africa""" +2023-11-16,17470,192,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1492.57,"{\""promo\"": \""27%\""}",66269,1,"""South America""" +2023-11-17,17471,1750,"[\""Tablet\""]",1225.58,"{\""loyalty\"": \""10%\""}",138504,1,"""Africa""" +2024-09-09,17472,6291,"[\""Keyboard\""]",687.38,"{\""loyalty\"": \""12%\""}",255177,0,"""Africa""" +2024-03-24,17473,8530,"[\""Phone\"", \""Wireless Mouse\""]",2078.93,"{\""promo\"": \""7%\""}",263296,1,"""Asia""" +2024-02-10,17474,4990,"[\""Phone\""]",3083.96,{},7613,0,"""North America""" +2023-08-29,17475,183,"[\""Wireless Mouse\"", \""Charger\""]",3837.0,{},286090,1,"""Africa""" +2023-09-13,17476,3460,"[\""Tablet\"", \""Laptop\""]",1250.72,{},228034,1,"""Asia""" +2024-08-24,17477,1257,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1042.3,"{\"": \""15%\""}",145634,1,"""Asia""" +2023-04-27,17478,1713,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",464.98,"{\"": \""11%\""}",65098,1,"""Africa""" +2024-10-03,17479,7509,"[\""Headphones\""]",2167.21,{},267813,0,"""Europe""" +2024-02-04,17480,1065,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2583.55,"{\""seasonal\"": \""22%\""}",130028,0,"""Europe""" +2024-12-08,17481,7906,"[\""Wireless Mouse\""]",4694.85,{},54285,1,"""Africa""" +2023-08-28,17482,5884,"[\""Monitor\""]",2901.94,"{\"": \""10%\""}",176030,1,"""Asia""" +2024-01-05,17483,4379,"[\""Headphones\"", \""Wireless Mouse\""]",1734.21,"{\""seasonal\"": \""30%\""}",157852,1,"""North America""" +2023-08-01,17484,5155,"[\""Wireless Mouse\"", \""Tablet\""]",4168.53,"{\""seasonal\"": \""6%\""}",76870,1,"""Europe""" +2023-07-12,17485,6123,"[\""Keyboard\""]",2467.91,{},21260,1,"""Asia""" +2024-07-10,17486,5663,"[\""Laptop\""]",2466.66,"{\"": \""14%\""}",76836,1,"""South America""" +2023-09-27,17487,4844,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3454.64,"{\"": \""15%\""}",38963,1,"""South America""" +2023-01-09,17488,8569,"[\""Phone\""]",2508.83,{},189506,0,"""Asia""" +2024-10-29,17489,8369,"[\""Wireless Mouse\"", \""Headphones\""]",3935.36,"{\""promo\"": \""13%\""}",46126,0,"""Europe""" +2023-12-08,17490,6539,"[\""Charger\"", \""Phone\""]",2162.18,{},222512,1,"""Europe""" +2024-07-22,17491,7803,"[\""Charger\""]",1463.29,"{\"": \""8%\""}",141582,1,"""North America""" +2024-11-10,17492,7066,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3654.67,{},259352,1,"""Africa""" +2024-07-07,17493,9440,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4244.89,"{\"": \""22%\""}",199959,1,"""Africa""" +2024-11-05,17494,9823,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1607.66,"{\""seasonal\"": \""20%\""}",255206,1,"""South America""" +2024-08-06,17495,2640,"[\""Charger\""]",2785.91,"{\""loyalty\"": \""23%\""}",152070,1,"""North America""" +2024-11-15,17496,3253,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",74.99,"{\"": \""13%\""}",72348,1,"""North America""" +2024-08-12,17497,7052,"[\""Monitor\""]",4320.89,"{\"": \""28%\""}",60009,0,"""South America""" +2023-10-13,17498,1188,"[\""Keyboard\"", \""Laptop\""]",4673.02,"{\""promo\"": \""5%\""}",250037,0,"""Asia""" +2023-01-07,17499,3907,"[\""Laptop\""]",2956.77,"{\""promo\"": \""8%\""}",68075,1,"""South America""" +2024-10-02,17500,1135,"[\""Keyboard\""]",3391.33,{},79275,1,"""Asia""" +2023-11-04,17501,5262,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",521.79,{},42481,1,"""Africa""" +2023-09-06,17502,1294,"[\""Charger\""]",539.63,{},226690,1,"""Asia""" +2023-02-21,17503,3614,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2550.35,{},235249,1,"""Europe""" +2024-05-30,17504,1747,"[\""Phone\"", \""Wireless Mouse\""]",961.78,{},104439,1,"""Europe""" +2023-04-16,17505,9449,"[\""Wireless Mouse\""]",2547.39,"{\""promo\"": \""14%\""}",118256,0,"""Europe""" +2024-06-27,17506,6852,"[\""Laptop\"", \""Keyboard\""]",835.9,{},11792,1,"""Asia""" +2023-04-17,17507,9272,"[\""Keyboard\"", \""Monitor\""]",3937.02,"{\""promo\"": \""29%\""}",151289,0,"""South America""" +2023-03-22,17508,632,"[\""Monitor\""]",1242.61,{},162665,1,"""Asia""" +2023-02-16,17509,6528,"[\""Laptop\""]",4461.27,"{\"": \""19%\""}",144740,1,"""Africa""" +2023-06-29,17510,1615,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4634.21,{},262346,1,"""Asia""" +2024-04-06,17511,5270,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",742.62,{},92215,1,"""Africa""" +2024-12-14,17512,9546,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",649.18,"{\""seasonal\"": \""23%\""}",202507,1,"""Europe""" +2023-10-19,17513,3762,"[\""Monitor\"", \""Tablet\""]",2399.42,"{\""seasonal\"": \""13%\""}",21077,1,"""Europe""" +2023-10-20,17514,3069,"[\""Headphones\"", \""Tablet\""]",4623.17,"{\""loyalty\"": \""18%\""}",237988,1,"""Asia""" +2023-03-03,17515,3016,"[\""Charger\"", \""Headphones\""]",303.08,{},220992,0,"""North America""" +2023-10-11,17516,2390,"[\""Wireless Mouse\""]",2888.1,"{\""promo\"": \""5%\""}",235652,0,"""Africa""" +2024-02-16,17517,8982,"[\""Wireless Mouse\""]",3021.45,{},56917,1,"""South America""" +2023-11-06,17518,9215,"[\""Phone\"", \""Charger\""]",300.56,"{\""seasonal\"": \""24%\""}",277912,0,"""South America""" +2023-10-19,17519,325,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4142.52,{},143038,0,"""Africa""" +2024-12-30,17520,6475,"[\""Charger\"", \""Headphones\""]",3156.26,{},137226,0,"""Europe""" +2024-05-10,17521,7411,"[\""Phone\""]",3657.17,"{\"": \""24%\""}",293717,0,"""Europe""" +2023-11-21,17522,5594,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2784.22,"{\""loyalty\"": \""5%\""}",143801,0,"""North America""" +2024-03-18,17523,7622,"[\""Headphones\""]",1325.4,"{\""promo\"": \""11%\""}",278116,1,"""Europe""" +2024-06-25,17524,6278,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2146.96,{},27526,0,"""Africa""" +2024-09-03,17525,2070,"[\""Keyboard\"", \""Phone\""]",2133.49,"{\"": \""15%\""}",111488,0,"""North America""" +2023-05-14,17526,8786,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",168.75,"{\""promo\"": \""9%\""}",119234,1,"""North America""" +2024-11-27,17527,1034,"[\""Charger\"", \""Monitor\""]",3364.57,{},164127,0,"""Asia""" +2024-12-18,17528,9185,"[\""Wireless Mouse\"", \""Charger\""]",1619.97,"{\""promo\"": \""24%\""}",149577,1,"""Asia""" +2024-03-29,17529,9149,"[\""Wireless Mouse\"", \""Laptop\""]",4490.09,{},41732,1,"""South America""" +2023-07-04,17530,3204,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",780.27,"{\""promo\"": \""8%\""}",153257,0,"""South America""" +2023-03-31,17531,1946,"[\""Laptop\""]",2711.21,"{\""seasonal\"": \""13%\""}",86663,1,"""South America""" +2023-03-18,17532,4234,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",607.24,{},109198,1,"""Africa""" +2023-01-22,17533,6679,"[\""Phone\""]",1201.84,"{\""seasonal\"": \""24%\""}",26386,1,"""Asia""" +2023-06-13,17534,260,"[\""Monitor\"", \""Headphones\""]",2226.52,{},90484,1,"""Asia""" +2023-10-08,17535,2322,"[\""Headphones\""]",3685.17,"{\""loyalty\"": \""25%\""}",55239,0,"""Africa""" +2023-05-17,17536,6354,"[\""Wireless Mouse\""]",2079.13,"{\"": \""7%\""}",71519,0,"""Europe""" +2024-07-02,17537,2638,"[\""Phone\""]",4804.54,"{\""loyalty\"": \""13%\""}",174472,0,"""North America""" +2023-12-18,17538,4201,"[\""Charger\""]",1683.04,{},256032,1,"""Asia""" +2023-09-05,17539,2490,"[\""Phone\""]",1453.71,"{\""seasonal\"": \""18%\""}",107396,0,"""Asia""" +2023-09-15,17540,7644,"[\""Wireless Mouse\""]",2356.85,"{\""seasonal\"": \""5%\""}",135036,0,"""Asia""" +2023-05-28,17541,6523,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1576.52,"{\"": \""29%\""}",214372,0,"""Europe""" +2024-05-06,17542,4238,"[\""Laptop\"", \""Charger\""]",4777.22,{},68606,1,"""North America""" +2023-10-27,17543,4018,"[\""Wireless Mouse\"", \""Headphones\""]",2345.1,"{\""promo\"": \""12%\""}",209739,1,"""Asia""" +2024-07-17,17544,4783,"[\""Laptop\"", \""Monitor\""]",3459.04,"{\""promo\"": \""26%\""}",125155,0,"""Europe""" +2023-08-10,17545,1882,"[\""Headphones\"", \""Phone\""]",1356.31,{},167279,1,"""North America""" +2024-06-21,17546,7544,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3272.44,{},205019,0,"""Europe""" +2023-03-17,17547,4096,"[\""Monitor\""]",3547.51,{},36237,0,"""Europe""" +2023-07-28,17548,486,"[\""Charger\""]",1716.94,"{\"": \""12%\""}",19062,0,"""Africa""" +2023-06-17,17549,2351,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3184.54,"{\""loyalty\"": \""30%\""}",147690,0,"""South America""" +2023-11-20,17550,540,"[\""Headphones\"", \""Laptop\""]",3795.55,"{\"": \""27%\""}",265561,0,"""South America""" +2023-01-11,17551,3016,"[\""Charger\"", \""Wireless Mouse\""]",3475.68,"{\""promo\"": \""27%\""}",164194,0,"""Europe""" +2024-01-25,17552,1368,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4837.72,{},178642,1,"""South America""" +2024-12-28,17553,4435,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4709.67,{},252851,1,"""Asia""" +2023-07-24,17554,7229,"[\""Monitor\""]",4532.25,"{\""seasonal\"": \""17%\""}",84648,0,"""North America""" +2024-05-10,17555,61,"[\""Keyboard\"", \""Wireless Mouse\""]",4739.8,"{\""seasonal\"": \""6%\""}",260902,0,"""Africa""" +2023-06-02,17556,235,"[\""Tablet\""]",236.26,"{\"": \""10%\""}",81326,1,"""South America""" +2023-12-09,17557,7423,"[\""Keyboard\"", \""Charger\""]",2907.09,"{\""promo\"": \""27%\""}",61317,1,"""Africa""" +2023-12-16,17558,9777,"[\""Tablet\""]",907.46,{},225330,0,"""Africa""" +2023-03-30,17559,1474,"[\""Keyboard\""]",777.81,{},71279,1,"""South America""" +2024-05-15,17560,7396,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1853.81,{},58128,0,"""Asia""" +2024-07-25,17561,2085,"[\""Headphones\"", \""Monitor\""]",4753.03,"{\""seasonal\"": \""13%\""}",174434,0,"""Europe""" +2023-06-11,17562,4275,"[\""Wireless Mouse\"", \""Phone\""]",722.01,{},288518,0,"""South America""" +2024-11-13,17563,7514,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4941.83,{},59672,1,"""North America""" +2024-03-29,17564,378,"[\""Laptop\""]",2584.77,{},132123,0,"""Africa""" +2024-11-05,17565,8937,"[\""Tablet\"", \""Charger\""]",4348.37,{},102305,1,"""Asia""" +2023-05-24,17566,4869,"[\""Wireless Mouse\"", \""Laptop\""]",2510.73,"{\""loyalty\"": \""18%\""}",251180,1,"""North America""" +2023-04-21,17567,7229,"[\""Monitor\"", \""Phone\""]",4500.91,"{\""seasonal\"": \""8%\""}",103547,1,"""Asia""" +2024-04-14,17568,7401,"[\""Wireless Mouse\"", \""Headphones\""]",4783.4,{},54860,1,"""Asia""" +2023-10-27,17569,1059,"[\""Keyboard\""]",1651.89,{},221444,0,"""Europe""" +2023-12-03,17570,6502,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",933.34,"{\"": \""28%\""}",219583,1,"""Asia""" +2024-09-08,17571,621,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2120.45,"{\""seasonal\"": \""7%\""}",277760,0,"""Africa""" +2024-07-17,17572,4767,"[\""Phone\"", \""Wireless Mouse\""]",1160.87,"{\"": \""17%\""}",214057,0,"""Europe""" +2023-11-27,17573,6722,"[\""Keyboard\"", \""Laptop\""]",3621.05,"{\"": \""19%\""}",203697,1,"""Asia""" +2024-03-27,17574,3448,"[\""Charger\""]",4092.24,{},181718,1,"""Africa""" +2023-03-07,17575,5193,"[\""Laptop\"", \""Tablet\""]",4127.41,{},173655,0,"""South America""" +2024-12-07,17576,1610,"[\""Keyboard\""]",4751.7,"{\""seasonal\"": \""7%\""}",194892,1,"""North America""" +2023-08-20,17577,6455,"[\""Charger\"", \""Phone\""]",3627.62,"{\""promo\"": \""15%\""}",205467,0,"""North America""" +2023-05-22,17578,9642,"[\""Keyboard\""]",4196.31,{},67014,1,"""Africa""" +2023-04-27,17579,5657,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3780.34,"{\""loyalty\"": \""22%\""}",237358,1,"""Africa""" +2024-02-01,17580,4669,"[\""Charger\""]",1686.95,"{\""loyalty\"": \""8%\""}",156867,0,"""Asia""" +2024-01-29,17581,573,"[\""Charger\""]",932.38,"{\"": \""7%\""}",12094,0,"""Africa""" +2023-02-02,17582,8384,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2414.85,"{\""loyalty\"": \""25%\""}",232272,0,"""South America""" +2023-03-25,17583,3289,"[\""Phone\"", \""Wireless Mouse\""]",4782.4,"{\""loyalty\"": \""24%\""}",57342,1,"""North America""" +2023-01-23,17584,5844,"[\""Wireless Mouse\"", \""Headphones\""]",620.88,{},98788,0,"""Asia""" +2024-01-05,17585,8215,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4918.23,"{\""loyalty\"": \""16%\""}",245552,1,"""Europe""" +2023-09-13,17586,5452,"[\""Headphones\""]",230.91,{},148336,0,"""North America""" +2023-10-05,17587,142,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1429.87,{},238845,1,"""South America""" +2023-08-25,17588,2368,"[\""Headphones\""]",1154.5,"{\""loyalty\"": \""17%\""}",226931,1,"""Africa""" +2024-08-28,17589,6641,"[\""Phone\"", \""Headphones\""]",1935.73,{},244471,1,"""South America""" +2024-02-18,17590,9363,"[\""Headphones\""]",4280.08,"{\""promo\"": \""20%\""}",48554,1,"""Europe""" +2024-03-31,17591,2087,"[\""Charger\""]",2814.18,"{\"": \""29%\""}",1349,0,"""Europe""" +2023-06-07,17592,9996,"[\""Monitor\"", \""Charger\""]",3218.36,"{\""seasonal\"": \""5%\""}",249495,0,"""Asia""" +2024-04-20,17593,6431,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",980.84,"{\"": \""21%\""}",118577,0,"""Asia""" +2024-05-20,17594,2004,"[\""Phone\"", \""Laptop\""]",3140.69,"{\""seasonal\"": \""8%\""}",140338,1,"""Europe""" +2023-02-09,17595,6726,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2938.5,{},2298,0,"""South America""" +2024-03-04,17596,6014,"[\""Wireless Mouse\""]",497.44,{},258415,0,"""South America""" +2024-08-09,17597,5860,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1626.74,{},244439,1,"""North America""" +2024-06-05,17598,5492,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2934.7,"{\""loyalty\"": \""15%\""}",80918,0,"""Europe""" +2023-10-04,17599,6732,"[\""Phone\"", \""Laptop\""]",4372.16,"{\""seasonal\"": \""19%\""}",38040,0,"""Asia""" +2024-06-14,17600,1647,"[\""Wireless Mouse\""]",4118.92,"{\""promo\"": \""7%\""}",51196,0,"""South America""" +2023-04-05,17601,2121,"[\""Laptop\""]",1610.53,"{\""loyalty\"": \""26%\""}",135638,1,"""Asia""" +2023-10-18,17602,5682,"[\""Headphones\""]",4669.4,"{\""promo\"": \""5%\""}",112038,0,"""Europe""" +2024-12-16,17603,4396,"[\""Laptop\""]",4652.81,"{\""loyalty\"": \""18%\""}",196094,0,"""North America""" +2024-03-31,17604,3468,"[\""Laptop\""]",1637.85,{},71759,0,"""South America""" +2024-10-31,17605,8699,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",551.6,{},176233,0,"""Europe""" +2024-01-05,17606,2097,"[\""Laptop\""]",98.87,"{\"": \""7%\""}",210736,0,"""South America""" +2023-11-03,17607,1971,"[\""Keyboard\""]",3211.53,"{\"": \""15%\""}",30458,0,"""South America""" +2023-09-24,17608,1358,"[\""Keyboard\"", \""Tablet\""]",1465.61,"{\"": \""23%\""}",158952,0,"""Europe""" +2023-05-29,17609,7489,"[\""Wireless Mouse\""]",951.43,"{\"": \""12%\""}",37128,1,"""North America""" +2023-01-24,17610,1859,"[\""Keyboard\"", \""Laptop\""]",2761.95,{},6803,1,"""Europe""" +2024-04-21,17611,5339,"[\""Phone\""]",1466.76,{},278927,1,"""Europe""" +2023-11-02,17612,1323,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3820.22,{},232830,0,"""Asia""" +2024-07-12,17613,9208,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3530.63,{},256185,0,"""Europe""" +2024-09-30,17614,1422,"[\""Wireless Mouse\""]",3770.67,"{\""seasonal\"": \""30%\""}",109446,0,"""Asia""" +2023-05-14,17615,6073,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1247.59,"{\""loyalty\"": \""8%\""}",19070,1,"""Africa""" +2023-07-19,17616,7209,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2883.52,"{\""loyalty\"": \""21%\""}",196784,0,"""Africa""" +2024-05-03,17617,7768,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3292.28,{},277355,0,"""North America""" +2023-03-24,17618,7269,"[\""Laptop\"", \""Keyboard\""]",1421.09,{},131275,1,"""Africa""" +2024-09-15,17619,3078,"[\""Tablet\""]",1368.88,"{\""promo\"": \""16%\""}",268054,1,"""South America""" +2023-10-14,17620,3195,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2032.23,"{\""seasonal\"": \""27%\""}",270081,1,"""Europe""" +2023-04-29,17621,2248,"[\""Phone\""]",426.72,"{\"": \""11%\""}",250535,1,"""Europe""" +2024-10-19,17622,3562,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",173.98,{},85370,0,"""Africa""" +2024-04-02,17623,8807,"[\""Charger\""]",1463.18,{},263908,1,"""Asia""" +2024-10-17,17624,1290,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3928.07,{},246147,0,"""Europe""" +2024-05-25,17625,7284,"[\""Headphones\""]",4276.71,{},230479,1,"""North America""" +2023-01-15,17626,3373,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2913.0,{},106033,1,"""North America""" +2023-07-26,17627,2275,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2887.84,"{\"": \""23%\""}",127174,0,"""North America""" +2023-05-14,17628,9412,"[\""Phone\"", \""Tablet\""]",2571.53,{},270964,0,"""Europe""" +2024-11-29,17629,854,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4774.07,{},230571,1,"""Asia""" +2023-05-03,17630,9338,"[\""Laptop\"", \""Monitor\""]",2886.88,{},108778,0,"""North America""" +2024-12-03,17631,5698,"[\""Keyboard\""]",3987.48,{},247327,1,"""South America""" +2023-09-12,17632,9123,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2238.1,{},104505,0,"""Europe""" +2024-02-27,17633,35,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1572.46,{},85631,0,"""South America""" +2024-02-27,17634,6495,"[\""Headphones\"", \""Laptop\""]",1375.36,"{\""loyalty\"": \""16%\""}",70390,0,"""Africa""" +2023-02-08,17635,6689,"[\""Monitor\""]",4160.54,{},54832,1,"""South America""" +2023-08-24,17636,144,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1836.98,"{\""promo\"": \""27%\""}",179069,1,"""Asia""" +2024-08-21,17637,5617,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3613.6,{},81524,0,"""South America""" +2024-03-05,17638,3318,"[\""Laptop\""]",4480.86,{},174599,0,"""North America""" +2023-05-22,17639,1223,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1871.37,"{\""loyalty\"": \""13%\""}",86534,0,"""Asia""" +2023-07-08,17640,8188,"[\""Laptop\""]",1382.52,"{\""seasonal\"": \""27%\""}",254498,1,"""North America""" +2023-01-28,17641,4992,"[\""Tablet\"", \""Charger\""]",3642.3,{},73532,0,"""Africa""" +2024-04-01,17642,8994,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",941.21,"{\""promo\"": \""22%\""}",214382,1,"""North America""" +2023-03-17,17643,8173,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4234.04,{},19435,0,"""North America""" +2024-08-31,17644,4250,"[\""Phone\"", \""Keyboard\""]",1455.68,{},131008,0,"""Asia""" +2023-05-04,17645,6152,"[\""Headphones\"", \""Laptop\""]",1055.16,{},57838,0,"""North America""" +2024-12-22,17646,359,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3780.31,{},182696,1,"""North America""" +2023-01-09,17647,5926,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2691.4,{},276968,0,"""Europe""" +2023-07-14,17648,9275,"[\""Keyboard\"", \""Monitor\""]",4011.7,"{\"": \""10%\""}",162704,0,"""Europe""" +2023-11-30,17649,7521,"[\""Tablet\"", \""Keyboard\""]",2849.3,"{\"": \""9%\""}",116709,0,"""Africa""" +2024-12-24,17650,52,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",824.43,{},78655,0,"""South America""" +2023-06-18,17651,7791,"[\""Headphones\""]",2659.9,"{\""seasonal\"": \""19%\""}",254671,0,"""North America""" +2024-02-24,17652,7525,"[\""Keyboard\""]",892.19,{},35768,1,"""North America""" +2023-10-03,17653,5081,"[\""Charger\""]",560.97,"{\""seasonal\"": \""11%\""}",242300,0,"""Europe""" +2023-04-20,17654,2989,"[\""Laptop\"", \""Charger\""]",531.4,"{\"": \""7%\""}",294570,1,"""Africa""" +2024-05-30,17655,5000,"[\""Charger\"", \""Wireless Mouse\""]",865.88,"{\""loyalty\"": \""28%\""}",171660,0,"""North America""" +2024-02-07,17656,231,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2011.1,{},290292,1,"""Africa""" +2024-12-22,17657,3704,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",551.59,"{\""loyalty\"": \""20%\""}",294351,1,"""Asia""" +2023-07-28,17658,7645,"[\""Wireless Mouse\""]",1891.24,{},282547,0,"""Europe""" +2024-09-06,17659,3814,"[\""Laptop\""]",3367.56,{},43376,1,"""North America""" +2023-08-17,17660,5199,"[\""Headphones\"", \""Wireless Mouse\""]",4958.63,{},36888,1,"""Asia""" +2024-04-19,17661,6001,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1741.73,{},201386,1,"""Asia""" +2023-01-04,17662,4222,"[\""Wireless Mouse\""]",1394.93,{},12388,1,"""Europe""" +2024-06-18,17663,4053,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1608.99,{},58781,1,"""Africa""" +2024-08-21,17664,8111,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2195.94,"{\""loyalty\"": \""28%\""}",61986,0,"""South America""" +2023-01-01,17665,4601,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4744.23,"{\""loyalty\"": \""12%\""}",179865,0,"""Asia""" +2023-09-07,17666,4654,"[\""Tablet\""]",1230.73,"{\"": \""11%\""}",227745,1,"""Africa""" +2024-07-11,17667,3532,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3795.85,"{\"": \""7%\""}",238701,1,"""Asia""" +2024-08-31,17668,5803,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2874.64,"{\""loyalty\"": \""10%\""}",158301,1,"""South America""" +2024-08-20,17669,3447,"[\""Keyboard\"", \""Tablet\""]",3716.0,{},258606,0,"""North America""" +2024-12-16,17670,2431,"[\""Phone\"", \""Charger\""]",3142.13,"{\""promo\"": \""25%\""}",265441,0,"""North America""" +2024-08-21,17671,7723,"[\""Headphones\"", \""Monitor\""]",343.93,"{\"": \""28%\""}",76479,0,"""Asia""" +2024-06-11,17672,5931,"[\""Laptop\"", \""Wireless Mouse\""]",1452.88,"{\""seasonal\"": \""16%\""}",127308,1,"""Europe""" +2023-08-17,17673,8605,"[\""Phone\""]",2101.01,"{\""promo\"": \""18%\""}",41654,1,"""Europe""" +2024-10-07,17674,7942,"[\""Charger\"", \""Headphones\""]",4525.71,"{\""seasonal\"": \""5%\""}",188921,0,"""North America""" +2024-01-30,17675,5823,"[\""Monitor\""]",813.61,{},28564,1,"""Europe""" +2023-05-30,17676,7584,"[\""Keyboard\"", \""Charger\""]",2409.39,"{\"": \""7%\""}",259274,1,"""South America""" +2024-02-10,17677,7282,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1162.33,"{\""seasonal\"": \""18%\""}",21603,0,"""South America""" +2023-02-14,17678,315,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",193.53,"{\""loyalty\"": \""16%\""}",257989,0,"""South America""" +2023-07-30,17679,6635,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4136.16,{},159418,0,"""North America""" +2023-02-13,17680,4629,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3385.21,"{\""seasonal\"": \""15%\""}",59203,1,"""South America""" +2024-03-08,17681,352,"[\""Headphones\"", \""Laptop\""]",4694.59,{},114589,1,"""South America""" +2023-02-03,17682,8827,"[\""Keyboard\""]",3235.45,"{\""seasonal\"": \""7%\""}",167222,1,"""North America""" +2024-04-07,17683,5198,"[\""Charger\"", \""Laptop\""]",3012.57,"{\""loyalty\"": \""20%\""}",123860,1,"""Europe""" +2023-04-04,17684,5162,"[\""Headphones\"", \""Tablet\""]",116.15,"{\""seasonal\"": \""20%\""}",262453,0,"""South America""" +2023-02-16,17685,5382,"[\""Tablet\""]",1462.25,"{\""promo\"": \""13%\""}",92855,1,"""North America""" +2024-10-18,17686,5955,"[\""Headphones\"", \""Laptop\""]",4657.19,{},234044,0,"""Africa""" +2024-12-29,17687,8871,"[\""Phone\"", \""Monitor\""]",2652.8,"{\""loyalty\"": \""18%\""}",228772,0,"""North America""" +2023-07-19,17688,2164,"[\""Tablet\""]",249.56,{},281655,0,"""South America""" +2023-03-13,17689,520,"[\""Charger\"", \""Headphones\""]",4340.21,{},241510,0,"""Asia""" +2023-03-17,17690,3935,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",871.7,"{\"": \""17%\""}",114700,1,"""Asia""" +2024-02-02,17691,9352,"[\""Phone\""]",2172.81,"{\"": \""22%\""}",204188,1,"""South America""" +2024-04-25,17692,1810,"[\""Wireless Mouse\""]",2184.0,"{\"": \""21%\""}",293043,0,"""South America""" +2024-04-01,17693,8878,"[\""Tablet\"", \""Headphones\""]",4779.5,"{\""loyalty\"": \""8%\""}",133127,1,"""Asia""" +2023-01-05,17694,8938,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1936.88,"{\""seasonal\"": \""13%\""}",235674,1,"""Africa""" +2024-04-30,17695,9770,"[\""Monitor\"", \""Headphones\""]",3490.68,{},34862,0,"""North America""" +2023-04-14,17696,4696,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",159.7,{},279613,1,"""Asia""" +2024-01-14,17697,562,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4206.34,"{\""promo\"": \""14%\""}",123790,0,"""Asia""" +2023-03-09,17698,8170,"[\""Charger\"", \""Monitor\""]",582.03,"{\""loyalty\"": \""11%\""}",217942,0,"""Africa""" +2023-06-07,17699,1911,"[\""Headphones\""]",4051.62,{},199149,1,"""Africa""" +2024-11-09,17700,9155,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4310.68,{},165814,0,"""North America""" +2024-11-18,17701,9879,"[\""Charger\""]",4509.6,{},177798,0,"""North America""" +2023-02-13,17702,7123,"[\""Wireless Mouse\"", \""Headphones\""]",1754.0,"{\""promo\"": \""30%\""}",185844,0,"""Africa""" +2024-04-04,17703,119,"[\""Charger\"", \""Headphones\""]",680.41,"{\""promo\"": \""12%\""}",246557,0,"""Asia""" +2024-06-07,17704,6438,"[\""Phone\"", \""Laptop\"", \""Charger\""]",774.14,{},153152,0,"""Asia""" +2023-06-27,17705,8901,"[\""Keyboard\"", \""Charger\""]",2417.64,"{\""loyalty\"": \""10%\""}",199296,0,"""North America""" +2024-03-24,17706,9232,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2114.79,{},226539,0,"""North America""" +2023-12-19,17707,1887,"[\""Phone\"", \""Charger\""]",3731.89,{},199238,1,"""Europe""" +2024-05-31,17708,738,"[\""Headphones\"", \""Laptop\""]",2035.3,"{\"": \""10%\""}",184380,0,"""North America""" +2023-04-09,17709,1910,"[\""Phone\"", \""Laptop\""]",3932.2,"{\""loyalty\"": \""5%\""}",244490,1,"""North America""" +2023-09-16,17710,7917,"[\""Headphones\""]",4927.55,"{\""loyalty\"": \""14%\""}",99959,0,"""South America""" +2023-10-04,17711,8239,"[\""Phone\"", \""Charger\""]",2395.43,"{\""promo\"": \""15%\""}",198600,0,"""Europe""" +2024-06-27,17712,9202,"[\""Charger\""]",224.59,"{\""loyalty\"": \""6%\""}",251628,0,"""North America""" +2024-02-12,17713,6209,"[\""Phone\"", \""Laptop\""]",2204.76,"{\""promo\"": \""23%\""}",295587,1,"""North America""" +2024-04-01,17714,9680,"[\""Phone\"", \""Charger\"", \""Laptop\""]",539.7,"{\"": \""30%\""}",196420,1,"""Africa""" +2024-03-05,17715,3281,"[\""Charger\"", \""Tablet\""]",1988.03,{},16723,0,"""South America""" +2024-10-31,17716,9168,"[\""Headphones\""]",4392.64,{},70484,0,"""North America""" +2023-09-12,17717,9432,"[\""Wireless Mouse\"", \""Charger\""]",2325.49,"{\""loyalty\"": \""22%\""}",81675,0,"""Asia""" +2023-09-24,17718,4961,"[\""Monitor\""]",2047.84,"{\""seasonal\"": \""30%\""}",126532,1,"""Africa""" +2023-05-01,17719,1322,"[\""Keyboard\"", \""Wireless Mouse\""]",4049.71,"{\""loyalty\"": \""28%\""}",107404,1,"""Europe""" +2023-04-11,17720,3883,"[\""Headphones\"", \""Tablet\""]",80.44,{},296488,0,"""Africa""" +2024-09-30,17721,4830,"[\""Monitor\""]",3424.77,{},221315,1,"""Europe""" +2024-09-16,17722,3670,"[\""Laptop\""]",3445.49,{},202313,1,"""South America""" +2024-03-28,17723,7955,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",450.1,"{\""loyalty\"": \""26%\""}",34712,1,"""South America""" +2023-04-07,17724,6189,"[\""Keyboard\""]",2562.05,{},117690,0,"""North America""" +2023-02-15,17725,6186,"[\""Laptop\""]",173.26,"{\""seasonal\"": \""17%\""}",101981,1,"""North America""" +2023-11-10,17726,2644,"[\""Wireless Mouse\"", \""Phone\""]",2335.27,"{\""seasonal\"": \""9%\""}",8058,1,"""North America""" +2023-09-17,17727,150,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2339.34,{},251617,0,"""Africa""" +2023-12-06,17728,1375,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3587.16,{},230753,1,"""Asia""" +2024-02-21,17729,2917,"[\""Monitor\""]",666.65,"{\""promo\"": \""16%\""}",177136,1,"""Asia""" +2024-01-31,17730,6478,"[\""Headphones\""]",2453.59,{},60492,1,"""North America""" +2024-02-26,17731,3475,"[\""Charger\""]",2483.32,{},240545,0,"""South America""" +2023-08-25,17732,3342,"[\""Monitor\""]",167.56,{},158174,0,"""South America""" +2024-04-05,17733,5585,"[\""Monitor\"", \""Laptop\""]",3754.21,{},292084,0,"""Africa""" +2023-06-28,17734,9125,"[\""Tablet\""]",2544.18,"{\""promo\"": \""15%\""}",195869,1,"""Europe""" +2023-09-12,17735,3188,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",620.11,"{\"": \""27%\""}",233973,0,"""Africa""" +2024-02-03,17736,1011,"[\""Headphones\"", \""Charger\""]",1387.74,"{\""loyalty\"": \""24%\""}",299218,1,"""Africa""" +2023-08-26,17737,4548,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3170.6,{},243001,0,"""Asia""" +2024-09-09,17738,8010,"[\""Tablet\""]",4862.54,{},5646,0,"""Asia""" +2024-06-08,17739,186,"[\""Phone\"", \""Tablet\""]",2491.74,{},141367,0,"""North America""" +2023-04-27,17740,6954,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4973.98,{},175284,1,"""Asia""" +2023-06-20,17741,2681,"[\""Laptop\""]",126.9,{},258003,0,"""Africa""" +2024-05-19,17742,4169,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2032.8,"{\"": \""29%\""}",62511,1,"""North America""" +2024-10-03,17743,4421,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",305.2,{},232017,0,"""North America""" +2023-03-20,17744,460,"[\""Tablet\"", \""Wireless Mouse\""]",3188.56,"{\""seasonal\"": \""29%\""}",148263,1,"""Europe""" +2023-01-31,17745,6486,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4149.02,{},209666,0,"""Africa""" +2023-05-10,17746,7882,"[\""Monitor\"", \""Charger\""]",3531.2,{},81221,1,"""Asia""" +2023-05-17,17747,9502,"[\""Headphones\""]",221.8,{},187331,0,"""Africa""" +2023-04-06,17748,1692,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4336.0,{},139414,0,"""North America""" +2023-08-09,17749,6144,"[\""Phone\""]",1565.38,"{\""seasonal\"": \""30%\""}",138225,0,"""North America""" +2024-06-21,17750,1674,"[\""Wireless Mouse\"", \""Laptop\""]",4372.45,{},25378,1,"""North America""" +2023-05-09,17751,200,"[\""Tablet\""]",4387.1,{},290856,0,"""Asia""" +2024-02-17,17752,9370,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3639.38,{},53132,0,"""Europe""" +2023-01-01,17753,4238,"[\""Tablet\"", \""Headphones\""]",4698.21,"{\"": \""11%\""}",107135,0,"""Europe""" +2024-01-09,17754,842,"[\""Tablet\"", \""Wireless Mouse\""]",3824.49,{},91020,0,"""Europe""" +2024-10-09,17755,19,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",266.78,"{\""loyalty\"": \""9%\""}",125912,1,"""North America""" +2023-01-31,17756,5438,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2777.73,{},121504,1,"""Africa""" +2023-08-22,17757,5465,"[\""Charger\"", \""Headphones\""]",4204.71,"{\""promo\"": \""18%\""}",129290,1,"""North America""" +2023-11-22,17758,2636,"[\""Headphones\""]",2458.02,"{\""promo\"": \""29%\""}",258102,1,"""Africa""" +2024-03-10,17759,4165,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1562.73,{},277578,0,"""Asia""" +2024-06-25,17760,9714,"[\""Monitor\"", \""Laptop\""]",3565.46,{},282853,1,"""Africa""" +2024-10-31,17761,4734,"[\""Charger\""]",2910.99,"{\""promo\"": \""18%\""}",149068,0,"""Europe""" +2024-01-26,17762,180,"[\""Charger\"", \""Laptop\""]",451.62,"{\""seasonal\"": \""23%\""}",129151,1,"""Africa""" +2024-09-21,17763,1990,"[\""Monitor\"", \""Tablet\""]",4308.67,{},5112,1,"""Asia""" +2024-08-14,17764,8586,"[\""Monitor\""]",1097.21,{},9096,1,"""Asia""" +2023-08-07,17765,7970,"[\""Headphones\"", \""Laptop\""]",1391.33,{},81045,1,"""Africa""" +2024-05-18,17766,806,"[\""Wireless Mouse\""]",3294.23,{},212673,1,"""South America""" +2023-04-21,17767,5683,"[\""Laptop\""]",3585.6,"{\"": \""23%\""}",286601,0,"""Europe""" +2023-05-24,17768,6066,"[\""Headphones\""]",2202.4,"{\""promo\"": \""14%\""}",146563,1,"""Africa""" +2023-06-24,17769,1630,"[\""Laptop\"", \""Wireless Mouse\""]",3663.07,"{\"": \""23%\""}",44295,0,"""Africa""" +2024-04-05,17770,4466,"[\""Tablet\"", \""Laptop\""]",4861.04,{},167312,1,"""North America""" +2023-01-04,17771,7008,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3011.98,"{\""loyalty\"": \""12%\""}",151453,0,"""Europe""" +2024-04-13,17772,2758,"[\""Tablet\"", \""Headphones\""]",4976.86,{},199616,0,"""Asia""" +2024-06-11,17773,7862,"[\""Charger\""]",1296.65,"{\""seasonal\"": \""28%\""}",54062,1,"""North America""" +2023-07-20,17774,8519,"[\""Laptop\"", \""Keyboard\""]",3038.37,"{\""loyalty\"": \""28%\""}",15776,1,"""North America""" +2024-04-21,17775,9968,"[\""Wireless Mouse\""]",3224.93,"{\""promo\"": \""21%\""}",278320,1,"""North America""" +2023-07-04,17776,1073,"[\""Phone\""]",499.89,"{\"": \""13%\""}",24675,0,"""Africa""" +2023-04-29,17777,4449,"[\""Charger\""]",798.2,{},99196,1,"""Asia""" +2023-09-12,17778,5381,"[\""Wireless Mouse\"", \""Tablet\""]",3618.83,"{\""loyalty\"": \""18%\""}",18574,1,"""Africa""" +2023-06-07,17779,9244,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4705.35,{},43124,1,"""Europe""" +2023-03-26,17780,8770,"[\""Tablet\""]",4005.93,{},75896,0,"""Africa""" +2023-10-21,17781,859,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4985.09,{},222195,1,"""North America""" +2023-01-09,17782,6253,"[\""Charger\""]",4059.73,"{\"": \""23%\""}",105491,0,"""Europe""" +2024-03-29,17783,6139,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",695.94,"{\""promo\"": \""24%\""}",154633,0,"""North America""" +2024-03-16,17784,8473,"[\""Headphones\""]",1720.82,{},253918,1,"""South America""" +2023-09-24,17785,3356,"[\""Wireless Mouse\""]",4410.86,{},146322,1,"""Europe""" +2024-09-12,17786,385,"[\""Charger\""]",3433.91,"{\""promo\"": \""6%\""}",48631,1,"""Asia""" +2023-05-16,17787,7801,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3240.45,{},176798,0,"""Africa""" +2023-04-10,17788,7893,"[\""Monitor\""]",1415.1,{},103582,1,"""South America""" +2024-10-14,17789,5886,"[\""Keyboard\""]",3344.02,{},292171,1,"""South America""" +2023-06-25,17790,2647,"[\""Wireless Mouse\""]",1165.72,"{\""loyalty\"": \""13%\""}",276899,1,"""North America""" +2023-03-05,17791,1932,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2058.45,{},190591,1,"""Africa""" +2024-09-08,17792,2523,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3067.01,{},193382,0,"""North America""" +2023-01-26,17793,8392,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",646.4,"{\"": \""24%\""}",197490,0,"""North America""" +2024-08-06,17794,6338,"[\""Keyboard\"", \""Headphones\""]",4709.11,"{\""loyalty\"": \""28%\""}",76394,1,"""North America""" +2023-10-06,17795,4399,"[\""Monitor\""]",4875.13,{},120349,0,"""Europe""" +2023-04-07,17796,7035,"[\""Phone\"", \""Tablet\""]",142.12,"{\""promo\"": \""6%\""}",211615,0,"""Africa""" +2024-03-12,17797,836,"[\""Charger\"", \""Keyboard\""]",537.35,{},141275,1,"""Africa""" +2023-02-03,17798,3340,"[\""Laptop\""]",3466.33,"{\""promo\"": \""24%\""}",102490,1,"""Asia""" +2023-11-12,17799,2249,"[\""Tablet\""]",3828.37,{},134990,1,"""Europe""" +2023-04-28,17800,8424,"[\""Phone\""]",497.31,{},139484,1,"""Europe""" +2023-01-25,17801,4122,"[\""Keyboard\"", \""Tablet\""]",1661.45,"{\"": \""18%\""}",258979,0,"""Europe""" +2023-07-22,17802,5567,"[\""Wireless Mouse\""]",4038.73,{},78847,1,"""Africa""" +2024-10-04,17803,9266,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3239.92,{},69724,0,"""Europe""" +2024-08-01,17804,4965,"[\""Tablet\""]",2289.42,"{\"": \""25%\""}",128171,0,"""Africa""" +2023-04-16,17805,8432,"[\""Phone\"", \""Monitor\""]",3469.03,"{\""promo\"": \""23%\""}",275793,1,"""Asia""" +2024-06-21,17806,9019,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",848.65,{},86040,1,"""North America""" +2024-11-10,17807,8324,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1634.01,{},178764,0,"""Africa""" +2024-04-07,17808,2325,"[\""Tablet\"", \""Wireless Mouse\""]",679.27,{},197467,0,"""North America""" +2024-07-15,17809,7982,"[\""Phone\"", \""Charger\""]",2166.93,"{\""loyalty\"": \""16%\""}",7832,0,"""North America""" +2023-08-08,17810,6156,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",366.23,"{\"": \""23%\""}",14795,1,"""Europe""" +2023-11-27,17811,7955,"[\""Charger\""]",1224.08,{},107786,0,"""Europe""" +2023-08-09,17812,8108,"[\""Wireless Mouse\"", \""Keyboard\""]",2330.73,{},245810,1,"""Asia""" +2023-08-19,17813,3121,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",476.22,{},290028,0,"""Asia""" +2024-06-11,17814,7157,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2521.7,"{\""seasonal\"": \""21%\""}",272174,0,"""North America""" +2023-07-26,17815,6852,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3501.87,"{\""loyalty\"": \""24%\""}",65211,1,"""Asia""" +2023-09-24,17816,4708,"[\""Tablet\""]",1898.35,"{\""loyalty\"": \""27%\""}",59478,0,"""South America""" +2024-01-16,17817,7932,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3798.11,"{\""seasonal\"": \""12%\""}",119379,0,"""Asia""" +2024-10-02,17818,5346,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",641.36,"{\""promo\"": \""30%\""}",45198,1,"""Asia""" +2024-12-07,17819,5235,"[\""Wireless Mouse\"", \""Laptop\""]",2845.19,{},255422,1,"""Asia""" +2023-11-23,17820,7586,"[\""Keyboard\"", \""Laptop\""]",2691.82,{},8413,0,"""Asia""" +2024-03-02,17821,3925,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3620.15,"{\""loyalty\"": \""22%\""}",89922,0,"""Africa""" +2023-05-03,17822,8036,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2923.96,{},254446,1,"""Asia""" +2023-11-28,17823,7649,"[\""Tablet\""]",56.14,"{\""loyalty\"": \""19%\""}",42943,0,"""North America""" +2023-08-20,17824,9450,"[\""Wireless Mouse\"", \""Phone\""]",780.01,"{\""seasonal\"": \""12%\""}",218661,0,"""South America""" +2024-10-27,17825,1800,"[\""Tablet\""]",3908.8,"{\""loyalty\"": \""6%\""}",151407,1,"""Africa""" +2024-08-03,17826,6058,"[\""Keyboard\""]",212.98,{},287106,0,"""South America""" +2023-01-13,17827,3581,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",161.15,"{\""promo\"": \""15%\""}",289699,0,"""Africa""" +2024-02-02,17828,2512,"[\""Wireless Mouse\""]",2742.16,{},71984,1,"""South America""" +2024-10-25,17829,4362,"[\""Phone\"", \""Wireless Mouse\""]",1118.81,{},64877,1,"""Africa""" +2024-05-28,17830,5070,"[\""Wireless Mouse\""]",949.27,"{\""promo\"": \""17%\""}",280179,0,"""Africa""" +2024-05-11,17831,5690,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1610.35,"{\""seasonal\"": \""7%\""}",177961,0,"""Europe""" +2024-10-27,17832,2756,"[\""Wireless Mouse\""]",1479.76,{},92082,1,"""Asia""" +2023-09-22,17833,1306,"[\""Headphones\""]",4941.9,{},145709,0,"""Europe""" +2024-08-20,17834,2514,"[\""Keyboard\"", \""Monitor\""]",3108.06,{},89574,1,"""South America""" +2024-05-27,17835,7952,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2363.02,{},196025,0,"""Africa""" +2023-01-25,17836,1715,"[\""Wireless Mouse\""]",2610.32,"{\""seasonal\"": \""22%\""}",260714,1,"""Asia""" +2023-07-31,17837,3746,"[\""Monitor\"", \""Charger\""]",4769.81,"{\""seasonal\"": \""28%\""}",66909,0,"""Asia""" +2024-04-01,17838,671,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3821.64,"{\""promo\"": \""21%\""}",261046,1,"""Asia""" +2023-01-05,17839,3147,"[\""Laptop\"", \""Charger\""]",2337.7,{},204064,0,"""Asia""" +2024-01-23,17840,6263,"[\""Charger\""]",3716.16,"{\""promo\"": \""21%\""}",74687,1,"""North America""" +2023-02-03,17841,4232,"[\""Monitor\""]",1857.69,{},200593,0,"""Africa""" +2023-02-18,17842,7013,"[\""Headphones\""]",834.25,"{\""loyalty\"": \""28%\""}",89847,0,"""Africa""" +2024-03-13,17843,2387,"[\""Keyboard\""]",2640.3,"{\"": \""9%\""}",219001,0,"""South America""" +2024-10-04,17844,3177,"[\""Laptop\"", \""Headphones\""]",3259.69,{},179449,1,"""Africa""" +2023-05-22,17845,779,"[\""Phone\"", \""Monitor\""]",3411.67,"{\""promo\"": \""6%\""}",101758,0,"""Europe""" +2023-04-17,17846,7387,"[\""Phone\"", \""Laptop\""]",3887.1,"{\""seasonal\"": \""10%\""}",86127,0,"""North America""" +2023-04-12,17847,6536,"[\""Phone\""]",498.82,{},43237,0,"""Europe""" +2023-08-31,17848,7106,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2493.82,{},70652,0,"""Asia""" +2024-06-26,17849,2060,"[\""Monitor\""]",3797.43,{},246299,1,"""Africa""" +2023-03-24,17850,8109,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4557.14,{},216142,0,"""Europe""" +2023-09-10,17851,3688,"[\""Wireless Mouse\"", \""Phone\""]",619.13,{},118674,0,"""Asia""" +2024-06-26,17852,4304,"[\""Monitor\"", \""Keyboard\""]",972.71,{},98414,1,"""North America""" +2024-10-31,17853,3992,"[\""Phone\"", \""Monitor\""]",4395.09,"{\""promo\"": \""19%\""}",112070,1,"""North America""" +2023-05-25,17854,4751,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4866.35,"{\"": \""22%\""}",286406,1,"""South America""" +2023-08-22,17855,4005,"[\""Charger\"", \""Monitor\""]",2756.08,"{\"": \""20%\""}",32572,0,"""Asia""" +2024-08-11,17856,1095,"[\""Wireless Mouse\"", \""Phone\""]",1270.54,{},90985,0,"""Asia""" +2023-02-05,17857,8085,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3762.73,"{\""loyalty\"": \""6%\""}",3607,0,"""Europe""" +2024-01-25,17858,5513,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3500.25,{},272845,1,"""Africa""" +2023-12-30,17859,9590,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3377.71,{},253829,0,"""North America""" +2023-08-28,17860,9403,"[\""Keyboard\"", \""Laptop\""]",3139.87,{},179731,1,"""Europe""" +2024-01-02,17861,2464,"[\""Keyboard\""]",481.39,"{\""seasonal\"": \""6%\""}",157766,1,"""Africa""" +2023-09-27,17862,4619,"[\""Charger\""]",3127.25,"{\"": \""17%\""}",73357,0,"""Asia""" +2024-05-02,17863,5207,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2282.37,"{\""loyalty\"": \""11%\""}",116592,0,"""Europe""" +2023-04-10,17864,3741,"[\""Laptop\"", \""Wireless Mouse\""]",4193.77,"{\""seasonal\"": \""14%\""}",154315,0,"""South America""" +2023-05-03,17865,5298,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2202.79,"{\""seasonal\"": \""5%\""}",156524,0,"""South America""" +2024-01-05,17866,6154,"[\""Headphones\"", \""Tablet\""]",3200.37,{},202901,1,"""South America""" +2023-07-31,17867,2501,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4052.96,{},76226,1,"""North America""" +2024-02-26,17868,3376,"[\""Tablet\"", \""Headphones\""]",4579.77,"{\"": \""5%\""}",174887,1,"""South America""" +2023-01-17,17869,2264,"[\""Charger\"", \""Wireless Mouse\""]",3181.57,"{\""promo\"": \""23%\""}",186731,1,"""Africa""" +2023-12-04,17870,3905,"[\""Headphones\"", \""Keyboard\""]",4923.5,{},167087,1,"""North America""" +2024-03-03,17871,4872,"[\""Laptop\""]",4450.7,{},88131,0,"""Africa""" +2024-06-30,17872,3979,"[\""Charger\"", \""Monitor\""]",2387.42,"{\""loyalty\"": \""20%\""}",225139,0,"""Europe""" +2024-07-03,17873,8026,"[\""Phone\"", \""Tablet\""]",3247.89,{},21943,0,"""South America""" +2023-03-05,17874,8203,"[\""Headphones\""]",1611.0,{},12474,0,"""Africa""" +2023-04-05,17875,5442,"[\""Tablet\"", \""Keyboard\""]",2395.09,{},166840,0,"""Asia""" +2024-04-18,17876,1786,"[\""Keyboard\"", \""Charger\""]",1147.0,{},143421,0,"""Europe""" +2024-01-23,17877,2545,"[\""Wireless Mouse\"", \""Phone\""]",1620.51,{},151950,0,"""Europe""" +2024-10-18,17878,9744,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3773.44,"{\""loyalty\"": \""17%\""}",128949,0,"""South America""" +2023-07-25,17879,1550,"[\""Headphones\"", \""Laptop\""]",3247.63,"{\""seasonal\"": \""17%\""}",13948,0,"""Europe""" +2023-12-08,17880,1306,"[\""Phone\""]",2121.62,"{\""loyalty\"": \""7%\""}",291147,0,"""North America""" +2023-09-14,17881,8371,"[\""Tablet\"", \""Charger\""]",3979.84,"{\""loyalty\"": \""8%\""}",202833,1,"""North America""" +2023-08-30,17882,1233,"[\""Keyboard\""]",4794.16,{},192105,1,"""North America""" +2023-07-22,17883,6435,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3431.64,"{\""loyalty\"": \""11%\""}",270969,1,"""Africa""" +2023-06-12,17884,7790,"[\""Laptop\"", \""Phone\""]",1410.06,{},32071,0,"""Africa""" +2023-05-06,17885,6567,"[\""Tablet\"", \""Wireless Mouse\""]",637.33,"{\"": \""12%\""}",129816,1,"""South America""" +2023-03-22,17886,798,"[\""Keyboard\"", \""Headphones\""]",2723.11,"{\"": \""29%\""}",49950,0,"""Africa""" +2023-06-21,17887,9157,"[\""Headphones\"", \""Monitor\""]",2042.77,"{\""loyalty\"": \""18%\""}",231550,0,"""North America""" +2024-02-09,17888,5704,"[\""Charger\""]",4731.78,{},273754,1,"""South America""" +2023-01-07,17889,3483,"[\""Charger\"", \""Headphones\""]",922.28,"{\""promo\"": \""14%\""}",234258,1,"""Asia""" +2024-03-21,17890,6845,"[\""Keyboard\"", \""Tablet\""]",3236.64,"{\""seasonal\"": \""17%\""}",207215,1,"""South America""" +2023-10-01,17891,8396,"[\""Wireless Mouse\"", \""Tablet\""]",2151.88,{},29381,1,"""Europe""" +2024-08-16,17892,4625,"[\""Wireless Mouse\"", \""Laptop\""]",3125.23,"{\""loyalty\"": \""25%\""}",48403,1,"""Africa""" +2023-04-29,17893,4282,"[\""Charger\""]",928.4,{},244071,0,"""Africa""" +2023-04-18,17894,9646,"[\""Headphones\""]",3940.78,{},124100,0,"""South America""" +2024-02-14,17895,1331,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",411.33,{},176355,0,"""Africa""" +2023-08-15,17896,8392,"[\""Phone\""]",894.36,"{\""loyalty\"": \""8%\""}",200379,0,"""South America""" +2023-09-22,17897,4706,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",127.84,"{\""seasonal\"": \""12%\""}",191881,1,"""South America""" +2023-06-11,17898,3829,"[\""Keyboard\"", \""Monitor\""]",2875.19,"{\""promo\"": \""14%\""}",34347,0,"""Europe""" +2024-10-20,17899,6645,"[\""Keyboard\""]",3282.18,"{\""promo\"": \""24%\""}",134302,0,"""South America""" +2023-08-08,17900,3656,"[\""Phone\"", \""Charger\""]",4432.38,{},187128,0,"""Europe""" +2024-03-23,17901,7448,"[\""Wireless Mouse\"", \""Monitor\""]",3258.51,"{\""loyalty\"": \""8%\""}",79018,1,"""Asia""" +2023-03-24,17902,2696,"[\""Laptop\"", \""Wireless Mouse\""]",4242.56,"{\""loyalty\"": \""25%\""}",127731,0,"""Asia""" +2024-06-04,17903,7624,"[\""Wireless Mouse\""]",61.72,{},89207,1,"""South America""" +2023-11-09,17904,6194,"[\""Tablet\""]",2102.05,{},299534,1,"""South America""" +2023-10-12,17905,7784,"[\""Headphones\""]",2001.32,"{\"": \""18%\""}",236585,0,"""North America""" +2023-11-08,17906,4636,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4343.54,"{\""promo\"": \""16%\""}",8644,0,"""North America""" +2023-06-30,17907,1751,"[\""Charger\""]",3268.78,"{\""seasonal\"": \""9%\""}",71039,1,"""Asia""" +2023-01-14,17908,2386,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3878.79,"{\""loyalty\"": \""27%\""}",188917,0,"""Europe""" +2023-04-27,17909,5137,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4149.97,{},200391,1,"""Asia""" +2024-06-22,17910,3285,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",259.27,"{\""loyalty\"": \""10%\""}",223647,0,"""Asia""" +2023-09-13,17911,2353,"[\""Wireless Mouse\""]",4822.36,"{\""promo\"": \""7%\""}",136614,1,"""Africa""" +2023-11-03,17912,2129,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2804.11,{},234661,0,"""Africa""" +2024-01-20,17913,582,"[\""Headphones\""]",3566.61,{},143887,0,"""Africa""" +2023-12-24,17914,258,"[\""Keyboard\""]",2642.16,{},273646,1,"""Africa""" +2023-05-15,17915,2344,"[\""Monitor\""]",1930.97,{},253011,0,"""Asia""" +2024-12-22,17916,621,"[\""Charger\"", \""Headphones\""]",407.79,{},220586,1,"""North America""" +2023-11-11,17917,4390,"[\""Headphones\""]",381.52,{},238794,0,"""Asia""" +2023-12-21,17918,6405,"[\""Headphones\"", \""Keyboard\""]",2988.7,{},91128,0,"""South America""" +2024-04-06,17919,5367,"[\""Keyboard\""]",1859.77,"{\""seasonal\"": \""13%\""}",32025,1,"""South America""" +2023-07-23,17920,7238,"[\""Wireless Mouse\""]",1547.27,"{\""promo\"": \""13%\""}",276223,1,"""Europe""" +2023-07-09,17921,295,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4847.36,"{\"": \""30%\""}",248466,0,"""North America""" +2024-10-15,17922,7713,"[\""Keyboard\""]",3809.06,"{\""loyalty\"": \""30%\""}",196448,0,"""North America""" +2024-10-14,17923,7796,"[\""Headphones\""]",658.48,{},149786,1,"""Europe""" +2024-03-03,17924,6300,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1373.4,"{\"": \""18%\""}",145322,0,"""Europe""" +2024-01-01,17925,6910,"[\""Wireless Mouse\"", \""Tablet\""]",1108.8,{},81822,0,"""South America""" +2023-04-21,17926,1467,"[\""Headphones\"", \""Monitor\""]",4171.55,{},193744,1,"""Africa""" +2024-04-18,17927,3489,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3327.96,"{\""seasonal\"": \""18%\""}",86932,1,"""North America""" +2024-12-26,17928,5570,"[\""Charger\"", \""Monitor\""]",3436.8,"{\"": \""22%\""}",138625,0,"""Europe""" +2023-12-27,17929,3331,"[\""Wireless Mouse\"", \""Phone\""]",2836.13,{},181276,0,"""Europe""" +2024-11-28,17930,8385,"[\""Laptop\""]",2418.09,{},265248,0,"""Africa""" +2024-08-08,17931,7334,"[\""Laptop\""]",4001.05,{},34481,1,"""Africa""" +2024-10-05,17932,130,"[\""Headphones\"", \""Wireless Mouse\""]",2768.26,{},116012,0,"""Europe""" +2023-12-22,17933,3598,"[\""Laptop\"", \""Charger\""]",2278.05,{},221630,0,"""South America""" +2023-03-26,17934,9545,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2413.52,{},34342,1,"""Asia""" +2024-03-11,17935,8277,"[\""Charger\""]",4390.3,{},97049,0,"""North America""" +2023-07-01,17936,7510,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1082.22,"{\""loyalty\"": \""24%\""}",14662,0,"""Africa""" +2023-12-17,17937,885,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",268.59,{},222780,1,"""Europe""" +2024-03-15,17938,1090,"[\""Tablet\""]",4942.75,"{\""promo\"": \""27%\""}",203723,0,"""North America""" +2023-04-16,17939,879,"[\""Keyboard\""]",4767.93,{},167937,0,"""North America""" +2024-03-12,17940,1262,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1107.58,"{\"": \""20%\""}",268710,1,"""South America""" +2024-03-05,17941,3995,"[\""Monitor\""]",2721.96,{},168288,1,"""North America""" +2024-05-09,17942,6244,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1162.73,"{\""promo\"": \""25%\""}",16566,1,"""North America""" +2023-02-18,17943,8808,"[\""Headphones\""]",1277.03,"{\"": \""19%\""}",181286,1,"""Africa""" +2023-02-01,17944,4680,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2315.04,"{\"": \""27%\""}",157322,0,"""Europe""" +2023-08-13,17945,6415,"[\""Headphones\""]",4586.85,{},63552,1,"""Asia""" +2023-11-24,17946,997,"[\""Charger\""]",3254.35,"{\""loyalty\"": \""8%\""}",132815,1,"""Africa""" +2023-07-28,17947,6021,"[\""Headphones\"", \""Phone\""]",245.13,"{\""loyalty\"": \""8%\""}",187850,1,"""Africa""" +2024-10-24,17948,2866,"[\""Wireless Mouse\""]",3936.11,{},237195,1,"""Europe""" +2024-06-28,17949,7239,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4859.92,"{\""promo\"": \""9%\""}",163714,0,"""Asia""" +2024-10-24,17950,2757,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2048.0,"{\""seasonal\"": \""18%\""}",151012,0,"""Asia""" +2023-10-13,17951,790,"[\""Headphones\"", \""Laptop\""]",4373.7,"{\"": \""23%\""}",131164,1,"""Europe""" +2024-09-28,17952,2560,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3270.92,{},131536,0,"""South America""" +2023-05-24,17953,9534,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3487.93,{},163381,1,"""North America""" +2024-12-22,17954,2120,"[\""Keyboard\"", \""Tablet\""]",1032.65,"{\"": \""27%\""}",172096,1,"""Europe""" +2024-08-14,17955,268,"[\""Laptop\"", \""Charger\""]",3267.75,"{\""seasonal\"": \""18%\""}",126891,0,"""South America""" +2023-01-12,17956,3578,"[\""Phone\""]",1095.69,{},85867,1,"""Africa""" +2024-08-16,17957,9376,"[\""Charger\"", \""Keyboard\""]",3502.91,{},168828,0,"""Asia""" +2023-12-21,17958,3484,"[\""Wireless Mouse\""]",1679.54,"{\""promo\"": \""11%\""}",7619,1,"""Africa""" +2024-05-22,17959,2691,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",110.29,{},221439,1,"""Asia""" +2023-08-16,17960,7393,"[\""Tablet\""]",3057.39,"{\"": \""12%\""}",252264,0,"""Africa""" +2023-06-12,17961,7831,"[\""Phone\""]",4368.93,"{\"": \""19%\""}",19288,1,"""Asia""" +2023-04-21,17962,6394,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3698.04,{},269922,1,"""North America""" +2023-02-07,17963,8391,"[\""Tablet\"", \""Headphones\""]",3817.43,"{\"": \""9%\""}",214778,1,"""Africa""" +2023-03-01,17964,4237,"[\""Headphones\"", \""Wireless Mouse\""]",4463.22,{},123939,0,"""North America""" +2024-05-18,17965,5314,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2395.54,"{\"": \""13%\""}",275818,0,"""Europe""" +2023-06-28,17966,3654,"[\""Laptop\""]",457.06,"{\"": \""14%\""}",147940,0,"""Africa""" +2024-08-09,17967,5217,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4141.21,"{\""loyalty\"": \""5%\""}",5372,0,"""North America""" +2023-08-08,17968,3174,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2772.53,{},95633,0,"""Africa""" +2023-10-04,17969,2514,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1672.39,{},181089,1,"""North America""" +2023-03-19,17970,4299,"[\""Monitor\"", \""Tablet\""]",4142.78,"{\""promo\"": \""22%\""}",177137,0,"""North America""" +2023-03-10,17971,6948,"[\""Keyboard\"", \""Laptop\""]",3409.14,{},65253,0,"""Asia""" +2023-09-04,17972,7631,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2453.52,"{\""loyalty\"": \""9%\""}",239829,1,"""North America""" +2024-04-18,17973,6671,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2043.27,{},229347,1,"""Europe""" +2024-03-18,17974,9844,"[\""Laptop\"", \""Headphones\""]",443.83,"{\""seasonal\"": \""17%\""}",258739,1,"""Africa""" +2024-10-12,17975,1440,"[\""Wireless Mouse\"", \""Monitor\""]",3620.83,{},178421,1,"""Europe""" +2024-02-08,17976,1220,"[\""Phone\""]",2113.25,{},220406,0,"""Asia""" +2023-02-23,17977,4063,"[\""Keyboard\""]",675.43,{},130602,1,"""South America""" +2023-07-02,17978,7635,"[\""Keyboard\""]",2085.9,{},296440,1,"""North America""" +2023-06-05,17979,5362,"[\""Monitor\""]",2730.74,"{\""loyalty\"": \""29%\""}",8668,0,"""North America""" +2024-05-30,17980,1861,"[\""Monitor\""]",2391.01,"{\""promo\"": \""29%\""}",92346,1,"""Asia""" +2024-10-17,17981,5981,"[\""Headphones\"", \""Tablet\""]",143.54,{},290742,1,"""Asia""" +2024-06-06,17982,3145,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1556.64,"{\"": \""24%\""}",152923,0,"""Europe""" +2023-09-27,17983,9865,"[\""Laptop\""]",1143.26,{},164539,1,"""Europe""" +2023-11-26,17984,8052,"[\""Keyboard\""]",4262.22,"{\"": \""7%\""}",268813,0,"""Europe""" +2023-02-11,17985,2133,"[\""Tablet\""]",1997.41,{},201292,0,"""Asia""" +2023-06-19,17986,2859,"[\""Phone\""]",3877.74,{},171703,1,"""Africa""" +2024-10-08,17987,6400,"[\""Wireless Mouse\""]",2650.66,{},114622,0,"""Asia""" +2024-02-04,17988,4162,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1332.68,"{\""promo\"": \""26%\""}",151969,1,"""North America""" +2024-11-17,17989,8552,"[\""Monitor\"", \""Laptop\""]",1778.44,{},260638,0,"""North America""" +2023-10-11,17990,6637,"[\""Monitor\"", \""Phone\""]",2211.94,{},156505,0,"""Europe""" +2024-05-19,17991,9352,"[\""Phone\"", \""Charger\""]",177.07,{},120491,0,"""South America""" +2024-07-29,17992,9944,"[\""Tablet\""]",4035.11,{},294885,1,"""Asia""" +2023-06-11,17993,4056,"[\""Charger\"", \""Wireless Mouse\""]",1473.01,"{\""seasonal\"": \""11%\""}",263331,0,"""Africa""" +2023-06-13,17994,4050,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4003.12,"{\""promo\"": \""9%\""}",19449,1,"""South America""" +2024-03-05,17995,6467,"[\""Wireless Mouse\""]",2394.91,{},117386,0,"""Europe""" +2023-05-12,17996,930,"[\""Tablet\"", \""Monitor\""]",1960.42,"{\""seasonal\"": \""8%\""}",260401,1,"""North America""" +2024-08-11,17997,2509,"[\""Laptop\"", \""Phone\""]",1684.19,{},166668,1,"""Africa""" +2024-02-12,17998,9703,"[\""Tablet\"", \""Laptop\""]",1154.39,"{\""loyalty\"": \""15%\""}",242392,0,"""Europe""" +2024-06-23,17999,5308,"[\""Phone\""]",1458.96,{},76452,0,"""South America""" +2023-12-06,18000,6114,"[\""Monitor\""]",4987.55,"{\""loyalty\"": \""17%\""}",182455,0,"""North America""" +2023-05-25,18001,5314,"[\""Keyboard\"", \""Tablet\""]",2336.66,"{\""seasonal\"": \""30%\""}",294497,0,"""Europe""" +2023-07-12,18002,5317,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4659.53,"{\""seasonal\"": \""5%\""}",16563,1,"""Europe""" +2023-12-18,18003,2995,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1565.48,{},228014,0,"""Asia""" +2024-07-06,18004,73,"[\""Monitor\"", \""Phone\""]",2840.66,"{\""seasonal\"": \""13%\""}",248617,0,"""Africa""" +2023-10-13,18005,4550,"[\""Tablet\""]",63.3,{},242505,1,"""Asia""" +2024-10-12,18006,4574,"[\""Charger\""]",2260.61,"{\""promo\"": \""8%\""}",216088,1,"""Europe""" +2024-05-07,18007,4469,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4955.09,"{\""seasonal\"": \""29%\""}",198608,0,"""Asia""" +2024-10-02,18008,3576,"[\""Charger\""]",2237.95,"{\""seasonal\"": \""10%\""}",76912,0,"""South America""" +2024-11-12,18009,5822,"[\""Monitor\""]",968.38,"{\""promo\"": \""12%\""}",183742,1,"""South America""" +2024-12-18,18010,1725,"[\""Tablet\""]",2060.56,{},246310,0,"""North America""" +2024-03-29,18011,6037,"[\""Tablet\"", \""Monitor\""]",2885.21,{},143590,1,"""North America""" +2023-06-05,18012,6445,"[\""Keyboard\"", \""Monitor\""]",2086.93,{},192644,1,"""Africa""" +2023-06-13,18013,4069,"[\""Monitor\""]",2370.83,{},285816,1,"""Asia""" +2023-02-22,18014,617,"[\""Tablet\""]",4970.3,{},22644,1,"""Europe""" +2023-02-21,18015,5516,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3697.78,"{\""promo\"": \""7%\""}",242799,0,"""North America""" +2024-11-16,18016,7,"[\""Charger\""]",3013.3,"{\""promo\"": \""15%\""}",296843,0,"""Africa""" +2024-01-12,18017,7821,"[\""Headphones\"", \""Phone\""]",3103.43,"{\""seasonal\"": \""17%\""}",179248,0,"""North America""" +2024-01-05,18018,297,"[\""Charger\""]",2715.23,"{\"": \""10%\""}",125602,1,"""North America""" +2023-03-16,18019,1220,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",237.65,"{\"": \""9%\""}",290490,0,"""Africa""" +2023-03-19,18020,7567,"[\""Monitor\"", \""Tablet\""]",2014.48,{},39466,1,"""Africa""" +2023-11-27,18021,4099,"[\""Wireless Mouse\"", \""Laptop\""]",4496.02,"{\"": \""11%\""}",100562,0,"""Africa""" +2023-08-24,18022,9378,"[\""Headphones\"", \""Laptop\""]",3697.45,"{\"": \""19%\""}",220491,1,"""Africa""" +2023-01-17,18023,6136,"[\""Headphones\"", \""Phone\""]",4250.3,"{\""loyalty\"": \""21%\""}",4299,0,"""Asia""" +2023-11-29,18024,3727,"[\""Laptop\""]",3766.75,{},32073,0,"""Europe""" +2023-12-16,18025,5571,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4266.34,"{\""promo\"": \""6%\""}",39853,0,"""South America""" +2024-04-28,18026,9427,"[\""Monitor\"", \""Headphones\""]",3172.24,"{\""seasonal\"": \""17%\""}",110680,0,"""Europe""" +2024-03-28,18027,1153,"[\""Monitor\""]",2167.43,"{\"": \""12%\""}",109569,0,"""South America""" +2024-08-07,18028,2862,"[\""Tablet\""]",1878.91,"{\""promo\"": \""11%\""}",86333,0,"""North America""" +2024-06-24,18029,9116,"[\""Phone\""]",1245.67,{},61586,1,"""Africa""" +2023-02-07,18030,2587,"[\""Charger\""]",3003.58,"{\""promo\"": \""13%\""}",72840,1,"""North America""" +2024-09-22,18031,3677,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4358.15,{},264775,1,"""Africa""" +2023-04-23,18032,8497,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1583.71,{},31448,0,"""Europe""" +2024-04-29,18033,4831,"[\""Tablet\""]",2445.99,"{\""loyalty\"": \""12%\""}",221774,1,"""Africa""" +2023-07-03,18034,202,"[\""Headphones\"", \""Laptop\""]",4391.87,"{\""loyalty\"": \""30%\""}",168385,0,"""North America""" +2024-01-04,18035,6393,"[\""Monitor\""]",3042.12,{},5972,0,"""North America""" +2023-08-08,18036,2393,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3345.49,{},244472,1,"""Asia""" +2023-03-21,18037,3993,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2056.68,{},111164,0,"""Africa""" +2024-08-27,18038,4926,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4124.83,{},203330,0,"""South America""" +2024-05-13,18039,1408,"[\""Keyboard\"", \""Laptop\""]",3525.06,"{\""promo\"": \""29%\""}",36746,0,"""Europe""" +2024-01-26,18040,6008,"[\""Headphones\"", \""Tablet\""]",4498.02,{},149659,0,"""Europe""" +2023-11-24,18041,4518,"[\""Wireless Mouse\""]",511.62,{},285710,0,"""North America""" +2023-05-29,18042,9706,"[\""Laptop\""]",149.85,"{\""promo\"": \""29%\""}",153823,1,"""North America""" +2023-04-08,18043,6079,"[\""Wireless Mouse\""]",3534.33,"{\"": \""24%\""}",33701,0,"""Europe""" +2023-05-15,18044,1848,"[\""Tablet\"", \""Headphones\""]",2498.41,"{\""promo\"": \""28%\""}",178938,0,"""South America""" +2024-09-12,18045,5621,"[\""Wireless Mouse\"", \""Headphones\""]",94.43,{},74985,1,"""Asia""" +2024-05-02,18046,1746,"[\""Headphones\"", \""Monitor\""]",803.0,"{\""seasonal\"": \""13%\""}",261854,0,"""Asia""" +2024-01-25,18047,9624,"[\""Wireless Mouse\""]",4574.66,{},17801,0,"""North America""" +2024-09-17,18048,7727,"[\""Phone\""]",1912.06,"{\"": \""7%\""}",282046,0,"""Asia""" +2024-02-25,18049,1345,"[\""Charger\""]",3612.45,{},48171,1,"""Africa""" +2024-08-13,18050,9984,"[\""Keyboard\""]",4091.43,"{\""seasonal\"": \""5%\""}",272359,0,"""Asia""" +2024-04-22,18051,393,"[\""Monitor\"", \""Tablet\""]",4024.06,{},266550,0,"""South America""" +2024-04-09,18052,1216,"[\""Wireless Mouse\"", \""Charger\""]",4932.67,{},36744,0,"""North America""" +2024-09-14,18053,3583,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",442.57,{},295371,0,"""North America""" +2024-04-07,18054,8414,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4635.03,{},241968,0,"""North America""" +2023-09-17,18055,6032,"[\""Laptop\""]",1069.31,{},85942,0,"""South America""" +2023-10-14,18056,1972,"[\""Headphones\""]",1310.91,{},107431,1,"""South America""" +2023-01-14,18057,9199,"[\""Headphones\""]",3371.26,"{\""seasonal\"": \""15%\""}",266658,1,"""Europe""" +2024-04-14,18058,5994,"[\""Keyboard\"", \""Headphones\""]",2308.29,{},34958,1,"""Europe""" +2024-02-25,18059,9234,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4553.1,"{\""loyalty\"": \""20%\""}",3429,1,"""Africa""" +2024-09-18,18060,2865,"[\""Keyboard\""]",3065.85,{},5171,0,"""North America""" +2023-07-23,18061,6956,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4702.01,{},54017,1,"""Europe""" +2023-12-20,18062,9386,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2069.88,{},69497,0,"""Africa""" +2024-04-10,18063,4936,"[\""Keyboard\"", \""Charger\""]",2084.19,"{\""loyalty\"": \""25%\""}",116686,1,"""Africa""" +2024-04-01,18064,4342,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4266.4,{},158170,0,"""North America""" +2024-05-15,18065,1670,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",233.28,"{\"": \""11%\""}",230830,0,"""Europe""" +2024-08-11,18066,8754,"[\""Monitor\""]",2569.86,{},219084,0,"""North America""" +2023-02-13,18067,4244,"[\""Wireless Mouse\""]",3048.19,"{\""promo\"": \""19%\""}",40958,0,"""Europe""" +2024-10-17,18068,2843,"[\""Headphones\"", \""Charger\""]",735.35,{},168622,1,"""Africa""" +2024-10-27,18069,913,"[\""Laptop\""]",4731.53,{},250672,0,"""North America""" +2024-09-14,18070,3744,"[\""Monitor\"", \""Phone\""]",4447.7,"{\""seasonal\"": \""13%\""}",17852,1,"""Asia""" +2023-01-24,18071,238,"[\""Charger\""]",1338.27,"{\""seasonal\"": \""30%\""}",160321,0,"""Europe""" +2024-07-26,18072,3005,"[\""Tablet\""]",3616.77,{},289710,1,"""South America""" +2024-09-23,18073,1977,"[\""Headphones\""]",3160.41,{},121896,0,"""North America""" +2023-11-17,18074,7561,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2621.17,{},135411,0,"""Europe""" +2023-10-30,18075,436,"[\""Monitor\""]",759.6,"{\"": \""30%\""}",229422,1,"""Asia""" +2024-10-08,18076,6637,"[\""Monitor\"", \""Tablet\""]",374.76,{},238864,1,"""Asia""" +2024-01-27,18077,3434,"[\""Monitor\"", \""Charger\""]",1834.4,{},118948,1,"""Africa""" +2023-05-30,18078,2753,"[\""Charger\""]",431.62,"{\"": \""13%\""}",227593,0,"""South America""" +2023-06-20,18079,2900,"[\""Keyboard\""]",1931.22,{},249657,1,"""North America""" +2024-08-25,18080,5202,"[\""Phone\""]",937.54,{},146231,0,"""North America""" +2023-07-22,18081,3971,"[\""Laptop\""]",989.53,{},288226,0,"""Asia""" +2024-03-26,18082,1741,"[\""Headphones\"", \""Laptop\""]",3123.33,{},35056,0,"""South America""" +2023-05-10,18083,5376,"[\""Headphones\""]",4017.97,"{\""loyalty\"": \""10%\""}",32268,1,"""Asia""" +2023-01-27,18084,9581,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",252.21,"{\""loyalty\"": \""11%\""}",281497,1,"""South America""" +2024-01-03,18085,7921,"[\""Keyboard\""]",1404.85,"{\"": \""23%\""}",145550,0,"""Europe""" +2024-07-13,18086,1653,"[\""Wireless Mouse\""]",1097.0,{},151106,1,"""Europe""" +2023-06-02,18087,8946,"[\""Keyboard\"", \""Charger\""]",1399.61,"{\""loyalty\"": \""9%\""}",72147,0,"""Africa""" +2024-02-29,18088,4093,"[\""Tablet\""]",2412.36,"{\""loyalty\"": \""23%\""}",255866,1,"""North America""" +2024-04-25,18089,4719,"[\""Wireless Mouse\""]",1561.32,"{\""loyalty\"": \""17%\""}",215380,1,"""Europe""" +2023-09-03,18090,4893,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",541.25,"{\"": \""15%\""}",50638,1,"""South America""" +2024-09-19,18091,6836,"[\""Tablet\"", \""Headphones\""]",2085.5,{},159239,0,"""Asia""" +2023-06-07,18092,6792,"[\""Keyboard\"", \""Phone\""]",2390.28,"{\"": \""16%\""}",72645,1,"""Asia""" +2023-04-29,18093,6975,"[\""Charger\""]",2496.24,{},97997,0,"""Asia""" +2024-04-12,18094,7751,"[\""Phone\"", \""Keyboard\""]",3388.13,{},165116,1,"""Europe""" +2023-06-06,18095,2688,"[\""Tablet\""]",927.99,"{\""loyalty\"": \""14%\""}",133569,0,"""South America""" +2024-08-31,18096,8296,"[\""Wireless Mouse\"", \""Tablet\""]",531.96,{},96581,0,"""North America""" +2024-11-05,18097,3801,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",459.71,"{\"": \""16%\""}",266520,0,"""Europe""" +2024-10-06,18098,2315,"[\""Tablet\"", \""Monitor\""]",790.81,{},99384,1,"""South America""" +2024-06-25,18099,7159,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2687.66,{},176475,1,"""Europe""" +2024-06-12,18100,5058,"[\""Wireless Mouse\"", \""Tablet\""]",3922.58,{},50785,0,"""Asia""" +2024-03-05,18101,9572,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2684.27,{},74883,1,"""Asia""" +2023-04-28,18102,6767,"[\""Charger\"", \""Phone\""]",2384.37,"{\""promo\"": \""27%\""}",158959,0,"""Europe""" +2024-05-05,18103,8417,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3714.37,"{\"": \""15%\""}",5077,1,"""Asia""" +2023-01-31,18104,3071,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1807.86,{},261971,1,"""South America""" +2024-01-25,18105,3282,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4588.5,{},247865,0,"""Asia""" +2023-09-08,18106,1180,"[\""Tablet\""]",526.05,"{\"": \""17%\""}",244574,1,"""Asia""" +2023-03-18,18107,2336,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4597.7,{},279024,1,"""North America""" +2023-11-19,18108,463,"[\""Wireless Mouse\""]",2244.21,{},212984,1,"""South America""" +2023-04-20,18109,4918,"[\""Wireless Mouse\""]",4842.66,{},39204,1,"""South America""" +2024-02-25,18110,9085,"[\""Charger\""]",4751.05,"{\""loyalty\"": \""16%\""}",50230,0,"""Europe""" +2024-10-12,18111,3140,"[\""Phone\""]",2729.27,"{\""loyalty\"": \""19%\""}",101928,1,"""North America""" +2024-02-13,18112,7592,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3694.61,{},76609,1,"""Europe""" +2024-09-11,18113,404,"[\""Charger\"", \""Keyboard\""]",1612.77,{},16101,1,"""North America""" +2023-07-05,18114,2587,"[\""Charger\""]",161.71,{},290689,0,"""Asia""" +2023-12-17,18115,3432,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2392.04,{},153068,1,"""Africa""" +2023-04-12,18116,6980,"[\""Charger\""]",115.87,{},148357,1,"""Asia""" +2023-04-01,18117,1274,"[\""Keyboard\"", \""Charger\""]",3084.09,"{\"": \""7%\""}",101367,0,"""Asia""" +2023-09-11,18118,4525,"[\""Charger\"", \""Laptop\""]",4361.92,"{\"": \""8%\""}",130658,0,"""South America""" +2024-09-08,18119,2755,"[\""Monitor\"", \""Phone\""]",1276.84,{},42297,1,"""South America""" +2024-10-17,18120,2391,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3473.82,"{\""loyalty\"": \""20%\""}",161754,1,"""Europe""" +2023-12-30,18121,7705,"[\""Monitor\""]",1417.02,{},14370,1,"""North America""" +2023-06-04,18122,9790,"[\""Phone\""]",4704.48,{},59044,1,"""Europe""" +2023-09-12,18123,8220,"[\""Wireless Mouse\"", \""Phone\""]",3534.39,{},140696,1,"""North America""" +2023-06-12,18124,3615,"[\""Charger\""]",1423.58,"{\""seasonal\"": \""30%\""}",142883,1,"""Asia""" +2023-09-14,18125,6804,"[\""Monitor\"", \""Tablet\""]",1598.17,{},175438,0,"""Europe""" +2023-05-31,18126,8640,"[\""Laptop\""]",271.29,"{\""seasonal\"": \""19%\""}",18787,1,"""North America""" +2023-05-27,18127,7240,"[\""Phone\""]",671.05,{},164249,0,"""Europe""" +2024-07-24,18128,7518,"[\""Headphones\""]",980.18,"{\""seasonal\"": \""29%\""}",257504,0,"""Asia""" +2024-05-13,18129,8557,"[\""Laptop\"", \""Headphones\""]",4550.5,{},103101,1,"""Asia""" +2023-03-25,18130,6258,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3321.7,{},63132,1,"""Africa""" +2023-05-08,18131,1202,"[\""Charger\""]",2227.17,"{\""loyalty\"": \""19%\""}",68203,1,"""Asia""" +2023-05-30,18132,3625,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4352.19,"{\""seasonal\"": \""30%\""}",59348,0,"""North America""" +2024-10-29,18133,4037,"[\""Headphones\"", \""Wireless Mouse\""]",1846.26,"{\""seasonal\"": \""25%\""}",200888,1,"""Asia""" +2023-10-23,18134,1899,"[\""Headphones\""]",442.9,"{\"": \""15%\""}",104827,0,"""Asia""" +2023-07-25,18135,5544,"[\""Wireless Mouse\""]",3303.07,"{\""seasonal\"": \""26%\""}",215402,0,"""Asia""" +2024-09-24,18136,1577,"[\""Phone\""]",469.35,"{\"": \""24%\""}",294603,0,"""Africa""" +2024-06-12,18137,7031,"[\""Phone\"", \""Charger\"", \""Laptop\""]",304.31,{},119038,1,"""North America""" +2023-10-04,18138,5167,"[\""Phone\""]",2877.68,{},22798,1,"""Asia""" +2023-11-16,18139,3858,"[\""Phone\"", \""Monitor\""]",4998.72,"{\""loyalty\"": \""15%\""}",187954,1,"""Asia""" +2024-07-07,18140,5702,"[\""Wireless Mouse\"", \""Headphones\""]",1759.36,{},107807,1,"""Europe""" +2023-04-10,18141,3877,"[\""Keyboard\"", \""Charger\""]",955.46,{},111409,0,"""South America""" +2024-08-11,18142,3219,"[\""Keyboard\"", \""Laptop\""]",4846.43,{},223743,0,"""South America""" +2024-01-07,18143,6069,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2090.92,"{\"": \""15%\""}",136614,0,"""North America""" +2023-04-24,18144,7265,"[\""Laptop\""]",1122.89,{},58687,1,"""South America""" +2023-02-02,18145,4038,"[\""Laptop\""]",577.33,{},48974,1,"""Europe""" +2024-08-09,18146,9294,"[\""Tablet\""]",2318.41,"{\""loyalty\"": \""28%\""}",120505,1,"""Europe""" +2024-07-12,18147,6060,"[\""Phone\"", \""Monitor\"", \""Charger\""]",885.03,"{\""seasonal\"": \""12%\""}",8722,1,"""South America""" +2023-10-26,18148,4115,"[\""Headphones\"", \""Wireless Mouse\""]",4472.58,"{\"": \""28%\""}",36251,1,"""Africa""" +2023-12-31,18149,6112,"[\""Charger\""]",1437.08,"{\""promo\"": \""16%\""}",13173,1,"""Europe""" +2024-01-15,18150,4376,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3048.94,"{\""loyalty\"": \""16%\""}",76369,0,"""Europe""" +2023-07-19,18151,3730,"[\""Wireless Mouse\""]",1376.82,{},121982,1,"""North America""" +2023-12-17,18152,5856,"[\""Tablet\""]",2080.54,{},132451,1,"""Europe""" +2024-09-20,18153,7221,"[\""Laptop\""]",1737.09,"{\""seasonal\"": \""10%\""}",192044,1,"""Africa""" +2024-07-30,18154,395,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",243.28,"{\""seasonal\"": \""19%\""}",56814,1,"""Europe""" +2023-03-12,18155,210,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",64.56,{},19732,0,"""South America""" +2024-08-11,18156,7016,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4114.37,{},251540,0,"""Europe""" +2024-10-18,18157,8595,"[\""Headphones\""]",875.9,{},164649,1,"""Asia""" +2024-08-01,18158,8518,"[\""Phone\""]",2952.43,{},44641,1,"""North America""" +2024-05-24,18159,5111,"[\""Phone\"", \""Laptop\""]",4954.81,{},56555,1,"""Asia""" +2024-03-05,18160,6848,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3547.29,"{\"": \""28%\""}",48841,1,"""South America""" +2023-03-07,18161,2293,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3392.36,"{\""promo\"": \""17%\""}",30687,1,"""Asia""" +2024-06-10,18162,5474,"[\""Keyboard\"", \""Tablet\""]",2875.43,{},277910,1,"""Europe""" +2024-10-18,18163,9262,"[\""Headphones\"", \""Tablet\""]",2706.39,{},163539,0,"""Europe""" +2024-11-25,18164,1040,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4217.37,{},35278,1,"""South America""" +2023-12-15,18165,9433,"[\""Wireless Mouse\""]",4202.43,{},61639,0,"""Africa""" +2023-12-15,18166,7356,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2299.84,{},163706,1,"""Africa""" +2023-05-10,18167,8194,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3427.34,{},244069,1,"""South America""" +2024-01-12,18168,4783,"[\""Tablet\""]",4921.79,"{\"": \""9%\""}",269706,1,"""Asia""" +2024-03-03,18169,2953,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3891.19,{},28485,1,"""Europe""" +2024-09-28,18170,434,"[\""Wireless Mouse\""]",4070.6,{},164687,1,"""South America""" +2024-03-13,18171,3275,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3260.0,{},140941,1,"""North America""" +2024-01-21,18172,1904,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",125.44,"{\""loyalty\"": \""29%\""}",14868,0,"""Europe""" +2024-04-17,18173,5734,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3407.57,{},97532,1,"""Africa""" +2023-04-30,18174,38,"[\""Keyboard\"", \""Monitor\""]",4138.63,{},53486,1,"""Asia""" +2023-12-16,18175,6707,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4387.23,{},143126,1,"""North America""" +2023-07-30,18176,9734,"[\""Keyboard\"", \""Laptop\""]",2842.6,"{\"": \""19%\""}",165242,0,"""Asia""" +2023-01-28,18177,4006,"[\""Laptop\"", \""Monitor\""]",3139.7,"{\""loyalty\"": \""27%\""}",197371,0,"""Europe""" +2023-08-18,18178,5301,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2015.18,"{\""seasonal\"": \""27%\""}",7132,0,"""Europe""" +2024-11-25,18179,3919,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4613.59,"{\""loyalty\"": \""6%\""}",11506,1,"""Africa""" +2024-05-29,18180,9439,"[\""Monitor\"", \""Charger\""]",1198.01,{},74767,1,"""Europe""" +2024-11-03,18181,550,"[\""Charger\""]",2390.14,"{\""seasonal\"": \""30%\""}",197210,0,"""Europe""" +2023-08-26,18182,1739,"[\""Tablet\""]",310.85,"{\"": \""14%\""}",288053,0,"""Africa""" +2023-07-25,18183,65,"[\""Keyboard\"", \""Monitor\""]",772.04,{},52634,0,"""Europe""" +2023-03-12,18184,3969,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4614.12,{},268551,0,"""Asia""" +2024-05-01,18185,1664,"[\""Wireless Mouse\""]",4794.33,{},51448,1,"""Africa""" +2023-11-18,18186,4985,"[\""Monitor\""]",3423.58,"{\""seasonal\"": \""23%\""}",55750,1,"""South America""" +2024-09-12,18187,4412,"[\""Laptop\"", \""Wireless Mouse\""]",2488.67,"{\""loyalty\"": \""11%\""}",153332,0,"""Asia""" +2023-08-15,18188,5209,"[\""Wireless Mouse\""]",4208.5,"{\"": \""23%\""}",206166,1,"""South America""" +2023-04-03,18189,9537,"[\""Wireless Mouse\"", \""Headphones\""]",1887.48,"{\""seasonal\"": \""29%\""}",95757,1,"""Asia""" +2023-08-13,18190,5596,"[\""Laptop\""]",3377.26,{},275216,1,"""Africa""" +2023-03-22,18191,6808,"[\""Wireless Mouse\""]",3170.18,{},225911,1,"""North America""" +2024-12-06,18192,929,"[\""Charger\"", \""Tablet\""]",1437.68,{},148743,1,"""Africa""" +2024-10-31,18193,3455,"[\""Keyboard\""]",893.23,"{\""promo\"": \""6%\""}",160498,1,"""South America""" +2023-06-10,18194,7346,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4669.57,"{\""promo\"": \""19%\""}",30947,1,"""Asia""" +2023-01-20,18195,6573,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4393.97,"{\""promo\"": \""7%\""}",235682,1,"""Europe""" +2023-06-04,18196,85,"[\""Phone\""]",1998.08,{},178169,1,"""South America""" +2024-09-03,18197,3563,"[\""Laptop\"", \""Tablet\""]",4080.63,{},112499,0,"""Africa""" +2024-05-16,18198,2632,"[\""Headphones\""]",4893.76,{},40806,1,"""South America""" +2024-09-24,18199,9542,"[\""Wireless Mouse\""]",3431.11,{},299467,0,"""South America""" +2023-03-15,18200,2858,"[\""Keyboard\"", \""Monitor\""]",4194.06,"{\""loyalty\"": \""14%\""}",193437,1,"""North America""" +2023-09-10,18201,2638,"[\""Keyboard\"", \""Wireless Mouse\""]",551.99,"{\""seasonal\"": \""9%\""}",52685,0,"""Europe""" +2023-01-17,18202,157,"[\""Wireless Mouse\"", \""Phone\""]",3238.54,"{\"": \""20%\""}",128134,1,"""Africa""" +2024-08-28,18203,2686,"[\""Monitor\""]",635.37,{},187670,1,"""North America""" +2024-10-14,18204,1141,"[\""Keyboard\"", \""Phone\""]",935.2,"{\"": \""6%\""}",181149,1,"""Europe""" +2023-06-06,18205,5363,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1179.11,{},18092,0,"""South America""" +2024-08-01,18206,7855,"[\""Phone\""]",3881.2,"{\""promo\"": \""24%\""}",18891,1,"""Africa""" +2024-12-21,18207,6035,"[\""Laptop\"", \""Charger\""]",2606.46,"{\""promo\"": \""5%\""}",108401,1,"""Europe""" +2024-01-04,18208,5196,"[\""Keyboard\""]",172.37,"{\""seasonal\"": \""13%\""}",178857,1,"""Africa""" +2023-06-07,18209,3301,"[\""Keyboard\""]",2542.73,{},110086,0,"""Asia""" +2023-07-09,18210,2166,"[\""Phone\"", \""Tablet\"", \""Charger\""]",665.96,{},87393,1,"""South America""" +2024-05-26,18211,3496,"[\""Laptop\""]",4742.61,"{\"": \""18%\""}",61872,0,"""Asia""" +2024-11-01,18212,6533,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4973.86,{},231898,1,"""South America""" +2023-12-28,18213,644,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",865.67,{},191684,0,"""Africa""" +2024-10-04,18214,4361,"[\""Headphones\"", \""Phone\""]",4662.51,"{\""promo\"": \""21%\""}",271897,1,"""South America""" +2024-04-16,18215,5173,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3002.46,{},223389,1,"""South America""" +2023-05-09,18216,1267,"[\""Keyboard\""]",2782.05,"{\""seasonal\"": \""11%\""}",73112,1,"""Europe""" +2023-04-06,18217,1835,"[\""Wireless Mouse\"", \""Headphones\""]",3990.47,"{\""loyalty\"": \""26%\""}",2206,1,"""South America""" +2024-03-03,18218,2614,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4322.24,"{\""seasonal\"": \""17%\""}",188637,1,"""Africa""" +2023-12-31,18219,5232,"[\""Phone\"", \""Charger\""]",1904.68,{},16973,1,"""Europe""" +2024-04-20,18220,9938,"[\""Wireless Mouse\""]",1765.54,"{\"": \""11%\""}",65740,0,"""North America""" +2023-01-23,18221,5499,"[\""Keyboard\"", \""Headphones\""]",2251.19,"{\""seasonal\"": \""24%\""}",253020,1,"""Africa""" +2024-03-29,18222,5967,"[\""Keyboard\""]",4766.07,"{\""promo\"": \""26%\""}",49988,1,"""Africa""" +2024-01-08,18223,8035,"[\""Tablet\"", \""Charger\""]",3246.85,{},228882,0,"""Asia""" +2024-11-09,18224,9103,"[\""Keyboard\"", \""Monitor\""]",2801.69,"{\""promo\"": \""24%\""}",184125,0,"""North America""" +2023-06-11,18225,3290,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3965.27,"{\""promo\"": \""14%\""}",282802,1,"""North America""" +2023-01-02,18226,9322,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3975.07,{},107339,0,"""South America""" +2023-10-20,18227,1388,"[\""Laptop\""]",88.86,{},277206,1,"""Asia""" +2023-10-08,18228,4038,"[\""Charger\"", \""Wireless Mouse\""]",2204.65,{},120390,0,"""Europe""" +2023-06-30,18229,620,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4998.41,{},52768,1,"""Africa""" +2024-08-06,18230,645,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3298.88,"{\"": \""27%\""}",34783,0,"""Asia""" +2023-07-12,18231,6850,"[\""Tablet\"", \""Phone\""]",2063.47,{},136898,0,"""Asia""" +2024-08-02,18232,2252,"[\""Monitor\"", \""Tablet\""]",4795.58,"{\""loyalty\"": \""26%\""}",140550,0,"""North America""" +2024-01-03,18233,920,"[\""Laptop\""]",494.47,"{\""promo\"": \""17%\""}",74040,0,"""Europe""" +2023-10-20,18234,9473,"[\""Charger\"", \""Keyboard\""]",1770.9,{},135482,1,"""Asia""" +2024-12-28,18235,264,"[\""Phone\"", \""Charger\""]",4301.51,{},207206,1,"""Asia""" +2023-07-03,18236,3798,"[\""Monitor\""]",2497.98,{},239912,1,"""North America""" +2024-04-07,18237,541,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3031.96,"{\"": \""13%\""}",104337,0,"""South America""" +2024-11-01,18238,3830,"[\""Charger\"", \""Monitor\""]",4665.45,"{\""loyalty\"": \""7%\""}",7609,0,"""Africa""" +2023-01-20,18239,8776,"[\""Charger\""]",1412.87,{},78098,0,"""Asia""" +2024-04-18,18240,6091,"[\""Tablet\""]",1121.92,"{\""promo\"": \""28%\""}",278039,0,"""Africa""" +2024-04-06,18241,7247,"[\""Phone\""]",3182.14,{},277477,0,"""South America""" +2024-04-03,18242,4689,"[\""Laptop\""]",4345.13,"{\""promo\"": \""21%\""}",136273,0,"""South America""" +2024-06-05,18243,310,"[\""Laptop\"", \""Monitor\""]",3862.66,"{\""seasonal\"": \""26%\""}",111366,0,"""South America""" +2023-10-17,18244,8504,"[\""Monitor\""]",145.5,"{\""seasonal\"": \""14%\""}",183224,0,"""South America""" +2024-11-12,18245,4373,"[\""Headphones\""]",4333.26,"{\""seasonal\"": \""22%\""}",104955,1,"""South America""" +2023-11-28,18246,8207,"[\""Headphones\""]",4244.7,{},183494,0,"""South America""" +2024-06-03,18247,2880,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1187.31,{},252501,1,"""Africa""" +2023-07-24,18248,4413,"[\""Laptop\""]",603.65,"{\""loyalty\"": \""10%\""}",8490,0,"""Europe""" +2024-12-16,18249,1057,"[\""Headphones\"", \""Wireless Mouse\""]",385.69,"{\""seasonal\"": \""21%\""}",57210,1,"""South America""" +2024-02-03,18250,9309,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4616.01,"{\""loyalty\"": \""10%\""}",123685,0,"""North America""" +2023-08-01,18251,7491,"[\""Phone\""]",4163.62,"{\""loyalty\"": \""30%\""}",145235,0,"""Europe""" +2023-06-23,18252,9073,"[\""Keyboard\""]",3741.9,{},207060,0,"""Africa""" +2024-06-12,18253,840,"[\""Headphones\"", \""Keyboard\""]",232.34,"{\""seasonal\"": \""23%\""}",111409,1,"""Africa""" +2023-06-14,18254,5106,"[\""Headphones\"", \""Charger\""]",4591.54,"{\"": \""24%\""}",271341,1,"""North America""" +2023-01-25,18255,9681,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2231.35,{},34561,0,"""Europe""" +2023-11-13,18256,2231,"[\""Wireless Mouse\"", \""Charger\""]",4832.84,{},57634,0,"""North America""" +2024-06-17,18257,5529,"[\""Laptop\"", \""Tablet\""]",4152.34,"{\""loyalty\"": \""29%\""}",219096,1,"""Europe""" +2024-12-27,18258,7217,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1648.98,{},163607,0,"""Asia""" +2023-05-08,18259,6968,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4245.54,"{\""loyalty\"": \""9%\""}",240049,0,"""North America""" +2023-10-19,18260,3946,"[\""Tablet\"", \""Phone\"", \""Charger\""]",664.31,{},231826,1,"""South America""" +2023-05-06,18261,5858,"[\""Keyboard\""]",1660.08,"{\""promo\"": \""11%\""}",8194,1,"""South America""" +2024-11-05,18262,1702,"[\""Keyboard\""]",3957.24,"{\"": \""23%\""}",41376,1,"""Europe""" +2023-03-21,18263,7065,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1906.27,"{\"": \""27%\""}",172229,1,"""Europe""" +2023-05-08,18264,3232,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4274.12,"{\""seasonal\"": \""26%\""}",49590,0,"""Africa""" +2024-12-24,18265,2582,"[\""Headphones\"", \""Laptop\""]",3449.03,"{\"": \""16%\""}",231193,1,"""Europe""" +2023-07-31,18266,9739,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4502.46,{},4424,1,"""North America""" +2023-01-08,18267,8004,"[\""Monitor\""]",1100.05,{},176334,0,"""North America""" +2023-12-20,18268,1727,"[\""Charger\""]",2651.37,{},160596,1,"""Europe""" +2023-05-13,18269,8207,"[\""Headphones\"", \""Charger\""]",4001.31,{},227404,0,"""Africa""" +2023-03-17,18270,7617,"[\""Headphones\"", \""Laptop\""]",4309.24,"{\"": \""17%\""}",243096,1,"""North America""" +2024-06-07,18271,5403,"[\""Headphones\""]",1305.09,"{\""loyalty\"": \""18%\""}",179602,1,"""North America""" +2024-08-09,18272,2273,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4326.57,"{\"": \""28%\""}",47619,0,"""South America""" +2024-10-11,18273,3772,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4002.32,"{\""seasonal\"": \""24%\""}",140046,0,"""South America""" +2024-05-26,18274,7606,"[\""Laptop\""]",331.57,"{\""seasonal\"": \""30%\""}",5261,1,"""North America""" +2024-04-12,18275,5708,"[\""Laptop\"", \""Wireless Mouse\""]",2196.19,{},14813,0,"""South America""" +2024-01-19,18276,4246,"[\""Phone\""]",533.0,{},242912,1,"""North America""" +2024-12-27,18277,4509,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4035.36,{},70383,1,"""Europe""" +2023-05-15,18278,1024,"[\""Wireless Mouse\"", \""Monitor\""]",4853.75,{},86435,1,"""South America""" +2023-09-12,18279,3130,"[\""Headphones\""]",231.75,{},121641,1,"""North America""" +2024-07-17,18280,2487,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4130.72,"{\""loyalty\"": \""30%\""}",4929,1,"""Africa""" +2023-05-16,18281,4232,"[\""Monitor\""]",3210.57,"{\""seasonal\"": \""28%\""}",157476,0,"""Asia""" +2023-05-19,18282,6308,"[\""Phone\"", \""Keyboard\""]",2234.52,"{\""seasonal\"": \""29%\""}",42777,1,"""Europe""" +2024-07-04,18283,5163,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",454.57,"{\""loyalty\"": \""25%\""}",236898,0,"""Asia""" +2024-01-13,18284,2087,"[\""Keyboard\"", \""Headphones\""]",1934.6,{},293395,1,"""Europe""" +2023-08-29,18285,4080,"[\""Wireless Mouse\""]",1286.05,{},72795,1,"""Africa""" +2023-07-30,18286,5220,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2221.13,"{\""loyalty\"": \""5%\""}",269271,0,"""Africa""" +2024-10-20,18287,2965,"[\""Charger\"", \""Laptop\""]",653.6,{},240063,0,"""Europe""" +2023-07-12,18288,8311,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3395.84,"{\"": \""16%\""}",54672,1,"""Africa""" +2023-11-09,18289,8042,"[\""Tablet\"", \""Phone\""]",820.94,"{\""seasonal\"": \""30%\""}",255330,0,"""Asia""" +2023-10-03,18290,992,"[\""Headphones\""]",4018.35,{},256875,0,"""Europe""" +2024-05-24,18291,2426,"[\""Monitor\""]",1969.47,{},191359,0,"""Africa""" +2024-11-16,18292,1722,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1971.92,"{\""seasonal\"": \""17%\""}",176395,0,"""Europe""" +2023-08-07,18293,4014,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",714.47,{},202460,0,"""Africa""" +2023-12-28,18294,2286,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2207.85,{},93069,0,"""Asia""" +2024-11-07,18295,7602,"[\""Wireless Mouse\"", \""Monitor\""]",1028.36,{},285496,1,"""Asia""" +2024-05-14,18296,9242,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1656.53,{},226789,0,"""Africa""" +2023-03-27,18297,8041,"[\""Phone\""]",1208.98,{},24130,1,"""Europe""" +2023-12-27,18298,1877,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3377.24,{},149287,0,"""North America""" +2024-04-15,18299,4893,"[\""Charger\""]",3868.58,"{\""seasonal\"": \""17%\""}",163278,0,"""North America""" +2024-11-20,18300,3894,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3990.17,"{\"": \""18%\""}",84758,1,"""Africa""" +2024-04-22,18301,257,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1186.95,{},54624,0,"""Asia""" +2024-06-30,18302,3208,"[\""Charger\""]",1961.84,{},246216,1,"""North America""" +2024-05-14,18303,9589,"[\""Keyboard\""]",1992.3,{},215886,0,"""Africa""" +2024-09-03,18304,2155,"[\""Phone\""]",4336.95,"{\"": \""24%\""}",124933,0,"""Asia""" +2024-04-12,18305,1624,"[\""Headphones\"", \""Wireless Mouse\""]",542.24,"{\"": \""20%\""}",120286,1,"""Europe""" +2024-02-24,18306,9713,"[\""Phone\""]",4071.85,{},227845,0,"""North America""" +2023-08-04,18307,2585,"[\""Monitor\"", \""Headphones\""]",2866.32,"{\""promo\"": \""16%\""}",141928,1,"""North America""" +2024-01-21,18308,6771,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",105.47,{},106727,0,"""South America""" +2024-01-31,18309,6615,"[\""Charger\"", \""Phone\""]",2826.91,"{\""promo\"": \""5%\""}",12618,1,"""Europe""" +2024-04-21,18310,7157,"[\""Headphones\"", \""Phone\""]",3700.37,"{\""promo\"": \""23%\""}",187315,1,"""Asia""" +2024-09-08,18311,6396,"[\""Charger\""]",3142.59,"{\"": \""8%\""}",250686,1,"""Asia""" +2023-12-07,18312,807,"[\""Wireless Mouse\""]",965.93,{},121615,1,"""Africa""" +2023-10-11,18313,4112,"[\""Wireless Mouse\"", \""Phone\""]",4033.68,{},158347,0,"""Asia""" +2024-09-23,18314,9092,"[\""Monitor\""]",2212.09,"{\""promo\"": \""25%\""}",244475,1,"""Europe""" +2023-08-15,18315,6843,"[\""Headphones\"", \""Phone\""]",1556.3,"{\""seasonal\"": \""16%\""}",175846,1,"""Asia""" +2023-06-01,18316,4227,"[\""Keyboard\"", \""Tablet\""]",3662.63,{},7388,0,"""Europe""" +2023-10-11,18317,1982,"[\""Keyboard\"", \""Monitor\""]",1584.8,{},188933,0,"""Africa""" +2024-07-22,18318,9317,"[\""Headphones\""]",4208.42,{},288914,0,"""Africa""" +2024-03-09,18319,3374,"[\""Phone\"", \""Monitor\""]",1007.97,"{\""promo\"": \""14%\""}",220860,1,"""Asia""" +2024-04-30,18320,8517,"[\""Phone\""]",3717.15,"{\""loyalty\"": \""23%\""}",171764,1,"""Europe""" +2024-07-01,18321,7866,"[\""Phone\""]",4490.95,{},263876,0,"""North America""" +2024-06-28,18322,5859,"[\""Keyboard\"", \""Wireless Mouse\""]",1458.6,{},131473,0,"""Europe""" +2023-10-31,18323,4909,"[\""Phone\"", \""Headphones\""]",252.86,"{\""promo\"": \""29%\""}",224111,1,"""Europe""" +2024-06-11,18324,7310,"[\""Charger\"", \""Keyboard\""]",1253.49,"{\"": \""10%\""}",245154,1,"""North America""" +2023-08-19,18325,7933,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4458.47,{},86022,1,"""Africa""" +2024-11-25,18326,8848,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1506.75,"{\""promo\"": \""29%\""}",294248,1,"""Africa""" +2023-05-31,18327,2445,"[\""Headphones\""]",632.62,"{\""loyalty\"": \""29%\""}",180722,1,"""Asia""" +2023-11-03,18328,4765,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3516.63,{},146254,0,"""Europe""" +2024-08-16,18329,6051,"[\""Headphones\"", \""Phone\""]",4914.41,{},47792,0,"""Africa""" +2023-05-13,18330,4987,"[\""Laptop\""]",4777.51,"{\""promo\"": \""7%\""}",104555,1,"""North America""" +2024-06-21,18331,3211,"[\""Monitor\""]",4380.14,{},227994,1,"""South America""" +2024-10-04,18332,5558,"[\""Tablet\""]",2385.85,{},179984,0,"""North America""" +2024-11-07,18333,3605,"[\""Wireless Mouse\"", \""Charger\""]",4629.14,"{\""loyalty\"": \""9%\""}",157635,1,"""North America""" +2023-10-24,18334,85,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4867.01,"{\""loyalty\"": \""27%\""}",150691,1,"""Europe""" +2023-01-08,18335,8600,"[\""Tablet\""]",975.71,{},125446,0,"""South America""" +2023-05-24,18336,3340,"[\""Wireless Mouse\""]",3358.98,{},61308,1,"""Asia""" +2024-07-16,18337,2314,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",866.52,"{\""seasonal\"": \""26%\""}",207885,0,"""Asia""" +2024-09-28,18338,577,"[\""Headphones\""]",400.42,"{\"": \""25%\""}",59812,0,"""Europe""" +2023-06-21,18339,3936,"[\""Headphones\""]",1402.27,{},273748,1,"""Europe""" +2023-11-18,18340,8489,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",874.11,"{\"": \""9%\""}",207827,0,"""South America""" +2023-08-05,18341,2487,"[\""Keyboard\""]",3005.42,"{\"": \""16%\""}",283756,1,"""Europe""" +2024-06-06,18342,4862,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3607.25,"{\""seasonal\"": \""21%\""}",139088,0,"""Africa""" +2024-06-12,18343,996,"[\""Tablet\"", \""Headphones\""]",1895.59,{},65436,0,"""Asia""" +2023-02-06,18344,9239,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1718.06,{},51568,1,"""South America""" +2024-08-17,18345,8008,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",670.25,{},102439,0,"""Asia""" +2023-03-07,18346,4860,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3665.9,{},256671,1,"""North America""" +2024-09-13,18347,5709,"[\""Phone\""]",2752.01,{},14230,0,"""Europe""" +2023-02-15,18348,9480,"[\""Keyboard\""]",1989.63,{},296505,0,"""Africa""" +2023-12-17,18349,5208,"[\""Charger\"", \""Headphones\""]",2975.78,"{\""promo\"": \""25%\""}",31940,0,"""Africa""" +2023-08-11,18350,7487,"[\""Wireless Mouse\""]",2915.14,"{\""seasonal\"": \""5%\""}",176258,1,"""Asia""" +2023-09-25,18351,469,"[\""Monitor\""]",3772.37,{},229485,0,"""Asia""" +2024-10-06,18352,7399,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",869.97,"{\""loyalty\"": \""16%\""}",70418,1,"""Asia""" +2024-03-24,18353,3395,"[\""Phone\"", \""Tablet\""]",2396.47,"{\""seasonal\"": \""6%\""}",288618,1,"""Europe""" +2024-08-27,18354,9792,"[\""Keyboard\""]",4530.86,{},144239,1,"""Asia""" +2024-06-30,18355,5294,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2365.03,"{\""loyalty\"": \""7%\""}",296988,0,"""Africa""" +2024-03-30,18356,635,"[\""Phone\"", \""Keyboard\""]",2617.39,"{\""seasonal\"": \""19%\""}",138971,0,"""South America""" +2024-04-05,18357,5607,"[\""Headphones\""]",1868.64,"{\"": \""26%\""}",196257,0,"""North America""" +2023-08-22,18358,4870,"[\""Keyboard\"", \""Monitor\""]",152.29,"{\""loyalty\"": \""23%\""}",54467,1,"""South America""" +2024-01-27,18359,6231,"[\""Headphones\""]",459.59,{},262264,1,"""Europe""" +2023-04-06,18360,1189,"[\""Keyboard\""]",2428.52,{},82955,1,"""Africa""" +2024-10-09,18361,4925,"[\""Phone\"", \""Laptop\""]",889.41,{},297068,0,"""Asia""" +2024-01-17,18362,9887,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2568.06,"{\""promo\"": \""25%\""}",123613,0,"""Europe""" +2023-07-27,18363,8173,"[\""Tablet\""]",2746.38,"{\""loyalty\"": \""17%\""}",141664,1,"""Europe""" +2023-09-01,18364,7410,"[\""Laptop\""]",3511.29,{},269058,0,"""Europe""" +2023-04-21,18365,9426,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1982.73,{},180244,0,"""Asia""" +2023-04-22,18366,695,"[\""Headphones\""]",2489.58,"{\""promo\"": \""14%\""}",78764,0,"""Europe""" +2023-07-15,18367,4334,"[\""Charger\"", \""Monitor\""]",616.77,{},115359,1,"""Europe""" +2023-10-09,18368,4220,"[\""Phone\"", \""Tablet\""]",615.5,"{\"": \""9%\""}",77905,0,"""Europe""" +2023-06-02,18369,3260,"[\""Phone\""]",4988.37,"{\""promo\"": \""9%\""}",126328,1,"""Europe""" +2023-06-08,18370,3617,"[\""Phone\"", \""Headphones\""]",1010.98,"{\""loyalty\"": \""7%\""}",168809,1,"""Europe""" +2023-12-05,18371,7299,"[\""Charger\"", \""Laptop\""]",4979.51,{},18550,1,"""Europe""" +2024-05-26,18372,3986,"[\""Headphones\"", \""Tablet\""]",3318.75,{},97460,0,"""Europe""" +2023-10-19,18373,5144,"[\""Keyboard\""]",185.84,"{\"": \""27%\""}",128316,1,"""Asia""" +2024-02-08,18374,2709,"[\""Tablet\""]",4952.17,{},41614,0,"""Africa""" +2024-11-02,18375,4092,"[\""Laptop\""]",3365.79,"{\""seasonal\"": \""22%\""}",59125,0,"""Asia""" +2023-12-05,18376,3609,"[\""Monitor\""]",4166.74,{},210495,0,"""Europe""" +2023-04-13,18377,9600,"[\""Tablet\"", \""Keyboard\""]",3507.68,"{\""promo\"": \""5%\""}",30196,0,"""Europe""" +2024-11-29,18378,2697,"[\""Wireless Mouse\"", \""Phone\""]",3964.6,"{\"": \""15%\""}",246891,0,"""South America""" +2024-04-07,18379,7926,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4852.8,{},28499,0,"""North America""" +2024-06-30,18380,7154,"[\""Phone\"", \""Monitor\""]",1221.25,"{\""seasonal\"": \""10%\""}",181777,0,"""South America""" +2024-09-28,18381,3414,"[\""Keyboard\"", \""Headphones\""]",1961.52,"{\""seasonal\"": \""11%\""}",223718,1,"""Asia""" +2023-04-14,18382,421,"[\""Headphones\""]",3174.67,{},47663,1,"""South America""" +2023-06-02,18383,6547,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3883.58,{},133274,1,"""Europe""" +2024-01-27,18384,7067,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1934.49,"{\""promo\"": \""14%\""}",97619,0,"""North America""" +2024-11-06,18385,3061,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",254.12,"{\""seasonal\"": \""28%\""}",48212,1,"""South America""" +2024-12-27,18386,1031,"[\""Keyboard\""]",979.02,{},107858,0,"""South America""" +2024-02-17,18387,3051,"[\""Tablet\""]",1265.52,{},40128,0,"""Asia""" +2023-07-16,18388,9474,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3238.0,{},288693,1,"""North America""" +2024-06-22,18389,3265,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2213.15,{},194306,1,"""Asia""" +2024-03-31,18390,5912,"[\""Charger\""]",3409.25,{},5825,0,"""South America""" +2024-07-30,18391,7979,"[\""Keyboard\"", \""Laptop\""]",3558.61,{},37379,0,"""Europe""" +2023-07-30,18392,8807,"[\""Charger\"", \""Wireless Mouse\""]",3105.29,{},253869,1,"""South America""" +2023-04-22,18393,6635,"[\""Tablet\"", \""Keyboard\""]",3168.47,{},181706,1,"""North America""" +2024-04-22,18394,5878,"[\""Charger\""]",1906.86,"{\""promo\"": \""5%\""}",108290,0,"""Asia""" +2023-04-19,18395,4963,"[\""Tablet\"", \""Charger\""]",2323.41,"{\""seasonal\"": \""12%\""}",252761,0,"""Africa""" +2024-06-06,18396,8410,"[\""Tablet\""]",2760.03,"{\"": \""23%\""}",39160,0,"""North America""" +2024-05-28,18397,1288,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1317.96,{},45424,1,"""North America""" +2024-09-02,18398,4096,"[\""Monitor\"", \""Tablet\""]",2981.2,"{\"": \""20%\""}",297083,1,"""Asia""" +2023-09-21,18399,8918,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",417.96,{},124502,1,"""North America""" +2023-08-07,18400,3759,"[\""Laptop\""]",2026.18,"{\""seasonal\"": \""21%\""}",245124,0,"""Asia""" +2023-01-06,18401,7996,"[\""Headphones\"", \""Wireless Mouse\""]",514.05,"{\""seasonal\"": \""6%\""}",272407,0,"""Asia""" +2023-05-19,18402,8562,"[\""Monitor\"", \""Headphones\""]",4943.83,{},277416,0,"""Asia""" +2023-08-21,18403,9503,"[\""Headphones\"", \""Tablet\""]",3263.9,{},121158,0,"""Asia""" +2023-06-13,18404,359,"[\""Monitor\""]",2645.36,{},238356,1,"""Asia""" +2023-03-14,18405,3365,"[\""Keyboard\""]",108.12,"{\""loyalty\"": \""18%\""}",65771,0,"""North America""" +2023-08-14,18406,7282,"[\""Charger\""]",4100.35,"{\""loyalty\"": \""23%\""}",247043,1,"""South America""" +2024-05-15,18407,9536,"[\""Monitor\"", \""Wireless Mouse\""]",3611.16,{},254182,0,"""Europe""" +2023-11-21,18408,8021,"[\""Keyboard\"", \""Phone\""]",1351.12,{},76924,1,"""Africa""" +2023-09-13,18409,8509,"[\""Tablet\""]",4311.44,{},177306,0,"""Africa""" +2023-01-29,18410,8763,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3420.29,{},88290,1,"""South America""" +2024-01-16,18411,5823,"[\""Keyboard\""]",4105.6,{},148627,1,"""Africa""" +2024-09-12,18412,9293,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4026.2,{},82644,1,"""South America""" +2024-04-06,18413,2430,"[\""Tablet\"", \""Keyboard\""]",2979.83,{},277756,1,"""Africa""" +2024-04-11,18414,7653,"[\""Monitor\""]",4582.36,{},247006,1,"""Europe""" +2023-10-17,18415,5136,"[\""Charger\""]",1760.3,"{\""loyalty\"": \""11%\""}",30484,0,"""South America""" +2024-01-28,18416,557,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4954.55,{},257856,1,"""Africa""" +2023-01-05,18417,1893,"[\""Laptop\""]",3773.78,"{\"": \""11%\""}",200992,0,"""North America""" +2023-07-13,18418,853,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4945.63,{},211098,1,"""North America""" +2024-07-15,18419,9983,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3801.04,{},271604,1,"""North America""" +2024-07-09,18420,7011,"[\""Tablet\"", \""Headphones\""]",2405.53,"{\""loyalty\"": \""30%\""}",170766,0,"""Europe""" +2024-04-15,18421,2634,"[\""Phone\""]",2760.59,{},237327,1,"""South America""" +2024-07-09,18422,1103,"[\""Headphones\""]",1465.86,"{\""promo\"": \""14%\""}",256703,1,"""South America""" +2023-04-27,18423,6703,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3513.45,{},126700,0,"""Asia""" +2024-03-25,18424,6766,"[\""Monitor\""]",816.45,{},86369,1,"""North America""" +2024-06-20,18425,6429,"[\""Wireless Mouse\"", \""Phone\""]",1258.49,"{\"": \""26%\""}",4872,1,"""Africa""" +2023-08-09,18426,1381,"[\""Keyboard\""]",1641.99,"{\""seasonal\"": \""19%\""}",237226,0,"""South America""" +2023-12-06,18427,262,"[\""Phone\""]",2710.45,{},35623,0,"""North America""" +2024-06-10,18428,112,"[\""Wireless Mouse\""]",3572.4,"{\"": \""24%\""}",137601,1,"""South America""" +2024-07-19,18429,345,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4663.16,{},59171,0,"""Africa""" +2024-09-11,18430,6808,"[\""Tablet\""]",596.69,"{\""loyalty\"": \""11%\""}",52285,1,"""South America""" +2023-01-10,18431,1784,"[\""Wireless Mouse\""]",3063.03,"{\"": \""18%\""}",100106,1,"""South America""" +2023-12-16,18432,2870,"[\""Monitor\"", \""Charger\""]",4141.53,"{\""promo\"": \""25%\""}",166441,1,"""South America""" +2024-11-09,18433,9065,"[\""Headphones\""]",4058.8,{},98175,1,"""Africa""" +2023-04-20,18434,2786,"[\""Tablet\""]",4144.96,"{\""loyalty\"": \""7%\""}",125908,1,"""Europe""" +2023-11-17,18435,7224,"[\""Headphones\""]",3367.1,{},183189,1,"""Africa""" +2024-11-08,18436,6118,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4843.54,{},92557,1,"""Europe""" +2023-09-18,18437,2683,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",224.82,"{\"": \""27%\""}",270755,1,"""South America""" +2024-10-01,18438,5207,"[\""Phone\"", \""Charger\""]",2450.46,"{\""loyalty\"": \""24%\""}",271743,1,"""Africa""" +2024-07-28,18439,8036,"[\""Laptop\"", \""Monitor\""]",4542.3,{},55718,0,"""Europe""" +2024-10-23,18440,6660,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2457.34,"{\""seasonal\"": \""28%\""}",291075,1,"""North America""" +2023-01-08,18441,2248,"[\""Keyboard\"", \""Monitor\""]",1536.35,"{\"": \""15%\""}",72161,1,"""Europe""" +2023-10-29,18442,1133,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4893.22,"{\"": \""22%\""}",47304,1,"""North America""" +2024-07-02,18443,621,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4716.64,{},276946,0,"""Europe""" +2024-10-07,18444,7883,"[\""Headphones\""]",527.2,{},8033,1,"""South America""" +2023-02-13,18445,7970,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1690.3,"{\""seasonal\"": \""20%\""}",118425,1,"""Europe""" +2023-11-10,18446,6374,"[\""Keyboard\""]",3009.36,"{\""promo\"": \""22%\""}",273574,1,"""Asia""" +2023-02-25,18447,3941,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3958.85,"{\""promo\"": \""11%\""}",230201,0,"""Africa""" +2024-04-17,18448,1829,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3969.69,{},193968,1,"""Africa""" +2024-04-25,18449,4715,"[\""Monitor\""]",4429.42,{},203088,0,"""South America""" +2023-08-19,18450,3466,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3129.41,{},103166,0,"""South America""" +2024-08-21,18451,7133,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2063.76,"{\""seasonal\"": \""8%\""}",145216,1,"""South America""" +2023-02-26,18452,9009,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1047.48,{},42064,0,"""South America""" +2023-05-09,18453,4175,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",154.78,"{\""loyalty\"": \""26%\""}",195150,1,"""North America""" +2023-09-06,18454,2010,"[\""Headphones\""]",1805.49,"{\""loyalty\"": \""28%\""}",268429,1,"""Africa""" +2023-04-19,18455,2950,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2973.44,{},186498,0,"""North America""" +2024-08-03,18456,136,"[\""Tablet\"", \""Monitor\""]",2236.67,{},151658,1,"""South America""" +2023-11-18,18457,5891,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2355.83,"{\"": \""16%\""}",246499,0,"""Asia""" +2023-12-20,18458,4761,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1145.83,{},157617,1,"""Asia""" +2024-06-26,18459,6426,"[\""Keyboard\""]",1262.76,{},97285,1,"""Europe""" +2024-07-21,18460,2650,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3037.48,{},182713,1,"""South America""" +2023-10-19,18461,8587,"[\""Wireless Mouse\""]",4026.78,"{\""loyalty\"": \""12%\""}",62497,1,"""South America""" +2023-02-11,18462,8606,"[\""Laptop\""]",2765.65,"{\""promo\"": \""5%\""}",29001,1,"""Europe""" +2023-04-02,18463,1964,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3406.35,"{\""seasonal\"": \""16%\""}",257148,1,"""South America""" +2024-02-29,18464,5327,"[\""Wireless Mouse\"", \""Phone\""]",196.66,{},29364,0,"""North America""" +2024-04-17,18465,5442,"[\""Monitor\"", \""Charger\""]",4415.72,"{\"": \""17%\""}",192438,1,"""North America""" +2023-08-17,18466,3250,"[\""Phone\"", \""Keyboard\""]",2685.21,{},257833,1,"""Africa""" +2023-05-24,18467,3419,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1082.61,"{\""promo\"": \""9%\""}",210057,1,"""South America""" +2023-12-13,18468,5360,"[\""Headphones\""]",113.78,"{\""loyalty\"": \""25%\""}",259966,0,"""Europe""" +2024-10-12,18469,4952,"[\""Monitor\"", \""Keyboard\""]",1044.11,"{\""loyalty\"": \""15%\""}",24078,1,"""North America""" +2023-02-01,18470,3702,"[\""Tablet\"", \""Charger\""]",84.33,{},164535,0,"""Europe""" +2023-07-06,18471,4778,"[\""Charger\""]",120.16,"{\""promo\"": \""28%\""}",54428,0,"""Asia""" +2024-01-30,18472,1344,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1714.31,{},116385,0,"""South America""" +2023-11-27,18473,7323,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4837.13,{},261570,1,"""Asia""" +2024-03-20,18474,6167,"[\""Phone\""]",1727.38,"{\""promo\"": \""15%\""}",228326,1,"""South America""" +2024-11-13,18475,7376,"[\""Laptop\""]",2982.68,"{\""seasonal\"": \""15%\""}",152212,0,"""Europe""" +2023-03-10,18476,933,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",189.69,"{\""loyalty\"": \""28%\""}",18109,1,"""South America""" +2023-01-22,18477,3737,"[\""Phone\"", \""Wireless Mouse\""]",1793.36,"{\""promo\"": \""6%\""}",246679,1,"""Africa""" +2023-05-04,18478,2873,"[\""Phone\"", \""Headphones\""]",1798.51,{},80467,1,"""Europe""" +2023-10-28,18479,430,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3322.28,{},262873,0,"""North America""" +2023-11-06,18480,4602,"[\""Keyboard\"", \""Charger\""]",3456.99,"{\""promo\"": \""6%\""}",7111,0,"""North America""" +2024-03-21,18481,5155,"[\""Wireless Mouse\""]",4353.44,"{\""loyalty\"": \""22%\""}",238438,1,"""North America""" +2023-09-05,18482,2316,"[\""Charger\""]",1442.29,"{\""loyalty\"": \""22%\""}",220470,0,"""Europe""" +2024-08-12,18483,5986,"[\""Tablet\"", \""Laptop\""]",1293.09,{},55467,1,"""Africa""" +2024-06-16,18484,3628,"[\""Phone\"", \""Keyboard\""]",4132.31,{},238650,0,"""Asia""" +2024-06-18,18485,3352,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2939.19,{},97598,0,"""Africa""" +2024-12-05,18486,317,"[\""Phone\"", \""Monitor\""]",4497.76,{},50213,0,"""South America""" +2023-06-28,18487,901,"[\""Tablet\""]",165.24,{},118046,0,"""Europe""" +2024-03-30,18488,7970,"[\""Tablet\""]",1986.81,{},225468,1,"""Africa""" +2024-05-10,18489,4338,"[\""Tablet\""]",989.35,"{\""promo\"": \""15%\""}",252037,1,"""North America""" +2023-09-24,18490,6112,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2183.95,"{\""seasonal\"": \""23%\""}",221462,0,"""Asia""" +2023-02-13,18491,7967,"[\""Laptop\""]",1553.24,"{\""promo\"": \""18%\""}",102069,0,"""Asia""" +2023-10-30,18492,2378,"[\""Phone\"", \""Tablet\""]",3021.65,"{\"": \""22%\""}",179924,1,"""North America""" +2023-10-27,18493,4769,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2119.27,"{\""loyalty\"": \""8%\""}",163617,1,"""Africa""" +2023-05-31,18494,9169,"[\""Phone\"", \""Keyboard\""]",4416.94,"{\""loyalty\"": \""17%\""}",21460,1,"""Europe""" +2023-08-30,18495,1298,"[\""Laptop\"", \""Phone\""]",4909.96,{},178533,1,"""North America""" +2024-06-23,18496,4310,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4130.35,{},76890,1,"""Asia""" +2023-04-27,18497,4490,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1922.35,{},292650,0,"""South America""" +2024-05-28,18498,9140,"[\""Tablet\"", \""Laptop\""]",773.23,"{\"": \""23%\""}",294858,1,"""Europe""" +2023-07-07,18499,6124,"[\""Phone\""]",1023.34,{},123931,1,"""Africa""" +2024-05-20,18500,4362,"[\""Tablet\"", \""Monitor\""]",3787.18,{},237624,0,"""North America""" +2023-05-16,18501,8289,"[\""Wireless Mouse\""]",1258.24,"{\"": \""27%\""}",156467,0,"""Europe""" +2023-09-15,18502,6017,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3671.29,{},102092,1,"""Europe""" +2024-06-12,18503,2125,"[\""Headphones\""]",941.44,{},147849,0,"""Europe""" +2024-01-09,18504,7844,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4489.6,"{\""loyalty\"": \""29%\""}",116941,0,"""Africa""" +2024-05-10,18505,3475,"[\""Wireless Mouse\"", \""Phone\""]",1524.31,{},61473,1,"""Africa""" +2023-03-01,18506,590,"[\""Monitor\""]",1347.62,"{\""seasonal\"": \""15%\""}",280291,0,"""Europe""" +2023-10-29,18507,9290,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",861.65,{},291949,1,"""Africa""" +2024-07-18,18508,2712,"[\""Monitor\""]",381.08,{},242161,1,"""North America""" +2024-07-07,18509,7857,"[\""Headphones\"", \""Tablet\""]",3629.12,"{\""loyalty\"": \""9%\""}",285589,1,"""Africa""" +2024-07-09,18510,4331,"[\""Keyboard\""]",2801.22,"{\""loyalty\"": \""23%\""}",7907,0,"""Asia""" +2023-12-08,18511,4629,"[\""Phone\""]",2468.16,{},63359,0,"""South America""" +2023-11-10,18512,4098,"[\""Phone\"", \""Laptop\""]",1244.91,{},287938,1,"""Asia""" +2024-08-12,18513,4446,"[\""Headphones\"", \""Tablet\""]",4635.53,"{\"": \""8%\""}",16157,0,"""Europe""" +2023-05-17,18514,9221,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2992.69,"{\""seasonal\"": \""27%\""}",117597,1,"""Africa""" +2024-04-17,18515,4922,"[\""Charger\""]",213.16,{},210876,0,"""Europe""" +2023-04-11,18516,4636,"[\""Keyboard\"", \""Tablet\""]",598.03,"{\"": \""30%\""}",279980,0,"""Africa""" +2023-07-11,18517,4322,"[\""Headphones\"", \""Monitor\""]",1909.9,"{\""promo\"": \""21%\""}",80560,1,"""North America""" +2024-02-17,18518,4664,"[\""Headphones\""]",4320.32,"{\""seasonal\"": \""7%\""}",19191,1,"""North America""" +2023-11-21,18519,8913,"[\""Keyboard\""]",2597.26,{},83688,0,"""South America""" +2024-06-15,18520,7494,"[\""Laptop\"", \""Keyboard\""]",2359.66,{},136875,0,"""North America""" +2024-05-29,18521,8357,"[\""Headphones\""]",4787.77,{},10763,0,"""North America""" +2023-07-07,18522,7006,"[\""Tablet\""]",3796.21,"{\""promo\"": \""10%\""}",288042,0,"""South America""" +2023-10-05,18523,1913,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2272.44,{},181199,1,"""Europe""" +2024-08-26,18524,916,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1648.62,"{\""seasonal\"": \""17%\""}",105332,1,"""Africa""" +2024-02-21,18525,234,"[\""Keyboard\""]",3279.3,{},169443,1,"""Asia""" +2024-07-19,18526,6778,"[\""Phone\"", \""Keyboard\""]",2838.34,"{\""promo\"": \""18%\""}",64084,1,"""North America""" +2024-12-16,18527,4472,"[\""Monitor\"", \""Charger\""]",976.32,{},68918,1,"""Europe""" +2023-03-17,18528,4434,"[\""Keyboard\""]",111.83,"{\""promo\"": \""28%\""}",280258,0,"""Europe""" +2024-11-20,18529,3602,"[\""Charger\""]",2178.79,"{\""seasonal\"": \""8%\""}",110490,0,"""Asia""" +2024-10-28,18530,7998,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1905.49,{},210554,1,"""Africa""" +2024-05-26,18531,3472,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4239.43,"{\"": \""15%\""}",19521,0,"""South America""" +2024-12-16,18532,6619,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1035.0,"{\""promo\"": \""26%\""}",221209,1,"""Europe""" +2023-10-20,18533,5829,"[\""Keyboard\""]",264.12,{},287315,0,"""North America""" +2024-03-07,18534,224,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2894.5,"{\""promo\"": \""14%\""}",239870,0,"""Europe""" +2024-07-23,18535,4596,"[\""Laptop\""]",3714.09,{},7867,1,"""Asia""" +2023-08-29,18536,9453,"[\""Charger\"", \""Monitor\""]",2933.12,{},226227,0,"""Asia""" +2023-12-18,18537,3497,"[\""Headphones\""]",1435.77,"{\""loyalty\"": \""13%\""}",244971,0,"""Africa""" +2023-07-14,18538,8925,"[\""Monitor\""]",4816.86,"{\"": \""24%\""}",275919,1,"""South America""" +2023-06-12,18539,498,"[\""Charger\""]",2247.77,"{\""loyalty\"": \""17%\""}",240924,0,"""North America""" +2024-07-01,18540,9564,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2085.55,{},145695,1,"""Africa""" +2024-01-17,18541,8586,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2316.99,"{\""loyalty\"": \""17%\""}",264234,0,"""Africa""" +2023-11-01,18542,4715,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3214.85,{},59974,1,"""Africa""" +2023-06-14,18543,3456,"[\""Laptop\""]",1317.57,"{\""loyalty\"": \""22%\""}",222566,1,"""Asia""" +2023-03-15,18544,5556,"[\""Monitor\""]",2574.73,{},174186,0,"""Africa""" +2024-09-14,18545,2568,"[\""Charger\""]",827.61,"{\""loyalty\"": \""12%\""}",159620,0,"""Asia""" +2024-01-11,18546,7372,"[\""Keyboard\""]",1788.74,{},126244,1,"""Europe""" +2023-04-03,18547,9230,"[\""Laptop\"", \""Wireless Mouse\""]",552.01,{},88952,1,"""Africa""" +2024-05-19,18548,9519,"[\""Wireless Mouse\""]",3741.47,{},272502,1,"""South America""" +2023-09-06,18549,6564,"[\""Phone\"", \""Monitor\""]",3397.98,{},114571,1,"""North America""" +2023-10-20,18550,7171,"[\""Keyboard\"", \""Charger\""]",1246.62,{},12779,1,"""South America""" +2023-02-05,18551,6813,"[\""Headphones\""]",3793.94,{},101627,0,"""Africa""" +2023-09-08,18552,962,"[\""Phone\"", \""Tablet\""]",4545.11,"{\""seasonal\"": \""18%\""}",113594,1,"""North America""" +2024-09-19,18553,8577,"[\""Monitor\""]",346.05,"{\""seasonal\"": \""25%\""}",51463,0,"""Africa""" +2024-08-20,18554,8708,"[\""Phone\"", \""Laptop\""]",1419.02,"{\""promo\"": \""5%\""}",280800,1,"""Asia""" +2023-08-30,18555,3828,"[\""Charger\"", \""Keyboard\""]",52.11,{},26689,1,"""South America""" +2023-11-07,18556,7697,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3216.07,"{\""seasonal\"": \""8%\""}",89614,1,"""Europe""" +2023-02-23,18557,7840,"[\""Phone\"", \""Laptop\""]",4630.85,"{\""seasonal\"": \""8%\""}",253576,1,"""South America""" +2023-10-30,18558,9618,"[\""Tablet\"", \""Wireless Mouse\""]",2529.65,{},232829,0,"""North America""" +2023-05-04,18559,953,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2632.58,{},93822,0,"""Europe""" +2023-09-11,18560,9119,"[\""Charger\"", \""Tablet\""]",4343.87,"{\"": \""28%\""}",31205,1,"""Europe""" +2023-07-28,18561,5113,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2342.58,{},153093,0,"""Africa""" +2023-09-03,18562,2062,"[\""Wireless Mouse\""]",1819.37,{},95766,1,"""Europe""" +2023-05-05,18563,5257,"[\""Wireless Mouse\"", \""Laptop\""]",1846.57,{},22580,1,"""Europe""" +2024-07-13,18564,454,"[\""Monitor\""]",2436.4,"{\"": \""15%\""}",114562,1,"""North America""" +2023-06-15,18565,9023,"[\""Keyboard\"", \""Wireless Mouse\""]",2174.99,"{\"": \""17%\""}",13303,0,"""Europe""" +2024-04-09,18566,164,"[\""Charger\"", \""Laptop\"", \""Phone\""]",932.7,"{\"": \""30%\""}",188728,1,"""South America""" +2023-02-26,18567,772,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",939.87,{},67772,0,"""South America""" +2024-06-14,18568,8845,"[\""Charger\""]",1519.27,"{\""loyalty\"": \""14%\""}",144050,0,"""North America""" +2024-06-01,18569,4826,"[\""Keyboard\"", \""Headphones\""]",1316.77,"{\""loyalty\"": \""18%\""}",32818,0,"""Europe""" +2024-01-01,18570,7100,"[\""Laptop\"", \""Charger\""]",3888.76,{},237340,1,"""Asia""" +2023-10-08,18571,6995,"[\""Wireless Mouse\""]",4480.13,"{\""loyalty\"": \""29%\""}",123028,0,"""Europe""" +2023-12-02,18572,4507,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",367.84,"{\""loyalty\"": \""7%\""}",198059,1,"""South America""" +2023-05-08,18573,2738,"[\""Charger\""]",4762.64,"{\""promo\"": \""16%\""}",299349,1,"""South America""" +2024-08-24,18574,729,"[\""Laptop\"", \""Tablet\""]",2083.93,{},10179,1,"""South America""" +2024-05-28,18575,9546,"[\""Monitor\"", \""Tablet\""]",4706.12,"{\""seasonal\"": \""22%\""}",107738,0,"""Europe""" +2024-05-10,18576,3673,"[\""Tablet\""]",865.55,"{\""promo\"": \""10%\""}",220063,1,"""Asia""" +2024-01-26,18577,9061,"[\""Headphones\"", \""Monitor\""]",4651.26,"{\""loyalty\"": \""9%\""}",145191,1,"""Europe""" +2023-04-06,18578,5158,"[\""Wireless Mouse\""]",3604.38,{},260440,0,"""Africa""" +2024-02-24,18579,4015,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2386.62,{},206452,1,"""North America""" +2023-11-18,18580,7185,"[\""Headphones\""]",339.51,{},288944,0,"""Europe""" +2024-11-26,18581,3444,"[\""Tablet\""]",528.55,{},112275,1,"""North America""" +2024-06-04,18582,4569,"[\""Headphones\""]",4778.13,{},192708,1,"""North America""" +2024-12-11,18583,7259,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4131.69,"{\""loyalty\"": \""8%\""}",98881,0,"""Asia""" +2024-04-16,18584,9120,"[\""Keyboard\"", \""Tablet\""]",1130.84,"{\""loyalty\"": \""24%\""}",150165,1,"""Africa""" +2023-02-27,18585,4339,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",484.79,"{\""promo\"": \""13%\""}",282157,1,"""North America""" +2023-06-15,18586,6083,"[\""Wireless Mouse\"", \""Laptop\""]",1560.53,{},74221,0,"""South America""" +2024-04-22,18587,618,"[\""Laptop\""]",4892.03,{},64977,1,"""Europe""" +2024-07-16,18588,368,"[\""Phone\"", \""Wireless Mouse\""]",1253.16,"{\""seasonal\"": \""22%\""}",210363,0,"""Asia""" +2024-11-11,18589,2704,"[\""Charger\""]",2066.84,{},81814,0,"""Asia""" +2023-02-16,18590,913,"[\""Charger\"", \""Wireless Mouse\""]",3756.87,"{\""seasonal\"": \""23%\""}",141581,0,"""Europe""" +2023-06-14,18591,8329,"[\""Monitor\"", \""Tablet\""]",468.0,{},84595,0,"""Asia""" +2024-02-18,18592,7264,"[\""Wireless Mouse\"", \""Monitor\""]",1906.16,"{\""loyalty\"": \""12%\""}",151344,1,"""Europe""" +2023-12-14,18593,4797,"[\""Keyboard\""]",2462.93,{},93921,0,"""Asia""" +2024-03-04,18594,3806,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2091.2,{},81116,1,"""Europe""" +2024-08-06,18595,842,"[\""Charger\""]",1863.83,"{\"": \""25%\""}",41181,0,"""Europe""" +2024-02-10,18596,9860,"[\""Charger\""]",4211.11,"{\"": \""28%\""}",107389,0,"""North America""" +2023-05-23,18597,2383,"[\""Tablet\""]",1750.38,{},93593,1,"""Europe""" +2024-07-23,18598,4672,"[\""Headphones\"", \""Wireless Mouse\""]",470.0,{},79181,1,"""Africa""" +2023-10-19,18599,9536,"[\""Monitor\"", \""Keyboard\""]",4468.3,{},192875,1,"""Africa""" +2023-05-10,18600,3928,"[\""Keyboard\"", \""Phone\""]",578.67,{},201079,1,"""Asia""" +2024-01-08,18601,2039,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",489.91,{},23302,0,"""Asia""" +2023-10-18,18602,1749,"[\""Headphones\""]",2487.76,{},63305,1,"""South America""" +2024-04-10,18603,8531,"[\""Wireless Mouse\""]",4005.6,{},240986,0,"""Asia""" +2023-11-15,18604,4508,"[\""Keyboard\""]",4408.87,"{\""seasonal\"": \""22%\""}",242620,1,"""Asia""" +2024-06-03,18605,7557,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1347.61,{},200486,0,"""Asia""" +2024-05-25,18606,9898,"[\""Phone\""]",2988.69,"{\"": \""11%\""}",175769,1,"""North America""" +2023-11-15,18607,8841,"[\""Tablet\""]",4026.9,{},73391,0,"""Europe""" +2024-02-22,18608,3626,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2224.14,{},184119,1,"""Asia""" +2024-05-23,18609,6480,"[\""Wireless Mouse\""]",55.68,"{\""loyalty\"": \""18%\""}",224103,0,"""Africa""" +2024-04-23,18610,8494,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",143.18,"{\""loyalty\"": \""5%\""}",85204,0,"""Africa""" +2024-11-17,18611,5314,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2843.96,{},217618,0,"""Africa""" +2023-01-25,18612,1929,"[\""Charger\""]",3386.58,"{\"": \""28%\""}",298003,0,"""Europe""" +2023-06-18,18613,3793,"[\""Monitor\"", \""Phone\""]",3407.03,"{\""promo\"": \""28%\""}",131241,0,"""Europe""" +2023-10-01,18614,677,"[\""Keyboard\"", \""Monitor\""]",4293.96,"{\""seasonal\"": \""27%\""}",123897,1,"""Europe""" +2024-04-18,18615,6830,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1860.99,"{\"": \""11%\""}",123404,0,"""Europe""" +2024-09-07,18616,6247,"[\""Monitor\"", \""Phone\""]",3130.91,{},244515,1,"""North America""" +2024-07-07,18617,647,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3020.35,{},83106,0,"""South America""" +2024-03-23,18618,5805,"[\""Headphones\"", \""Tablet\""]",148.69,"{\""promo\"": \""13%\""}",164396,1,"""Europe""" +2023-11-21,18619,751,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",730.13,"{\""loyalty\"": \""6%\""}",20510,1,"""Asia""" +2024-07-04,18620,8686,"[\""Charger\"", \""Tablet\""]",4945.82,"{\"": \""17%\""}",289761,0,"""Africa""" +2023-11-03,18621,1644,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3760.06,"{\""seasonal\"": \""11%\""}",74473,0,"""South America""" +2024-08-06,18622,3576,"[\""Laptop\"", \""Monitor\""]",55.78,"{\""promo\"": \""18%\""}",270203,0,"""Europe""" +2023-02-18,18623,4281,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3800.74,{},104622,0,"""Asia""" +2024-02-23,18624,3570,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4024.27,"{\""promo\"": \""6%\""}",98492,0,"""Asia""" +2024-03-14,18625,3791,"[\""Charger\"", \""Laptop\""]",4913.28,{},235525,1,"""Asia""" +2024-01-08,18626,1341,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2709.21,{},164998,1,"""North America""" +2024-02-13,18627,7926,"[\""Monitor\"", \""Wireless Mouse\""]",1923.76,"{\""loyalty\"": \""15%\""}",86896,1,"""Africa""" +2023-11-18,18628,833,"[\""Charger\""]",3134.05,{},19416,0,"""North America""" +2024-07-30,18629,3914,"[\""Headphones\""]",4741.91,"{\""promo\"": \""6%\""}",186813,1,"""Europe""" +2024-03-21,18630,9531,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3675.49,"{\""promo\"": \""12%\""}",284533,1,"""Europe""" +2024-01-17,18631,3877,"[\""Tablet\"", \""Charger\""]",4465.13,"{\""loyalty\"": \""26%\""}",142533,1,"""Europe""" +2024-11-21,18632,1475,"[\""Charger\"", \""Keyboard\""]",4687.43,{},262159,0,"""North America""" +2023-06-18,18633,9211,"[\""Wireless Mouse\"", \""Phone\""]",3655.24,{},190598,0,"""Asia""" +2023-09-24,18634,262,"[\""Wireless Mouse\"", \""Tablet\""]",790.53,"{\"": \""5%\""}",244616,1,"""North America""" +2024-09-11,18635,6933,"[\""Monitor\""]",3661.47,{},240927,0,"""South America""" +2023-11-17,18636,7578,"[\""Charger\""]",3004.68,{},46462,1,"""Europe""" +2023-05-08,18637,9048,"[\""Phone\"", \""Wireless Mouse\""]",3540.19,"{\"": \""6%\""}",243645,0,"""South America""" +2023-10-20,18638,1569,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1571.66,{},289660,1,"""North America""" +2024-05-27,18639,893,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1676.78,{},261630,0,"""South America""" +2024-04-24,18640,7556,"[\""Monitor\"", \""Charger\""]",3564.14,{},30919,0,"""South America""" +2023-08-16,18641,6275,"[\""Laptop\""]",4950.03,"{\"": \""24%\""}",169833,0,"""Europe""" +2023-04-14,18642,2607,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3206.77,{},2304,1,"""Europe""" +2024-05-27,18643,2035,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2698.94,"{\""promo\"": \""24%\""}",229535,0,"""Africa""" +2024-04-07,18644,1154,"[\""Monitor\""]",3433.99,{},282942,1,"""Africa""" +2024-04-01,18645,9663,"[\""Charger\""]",550.16,"{\"": \""11%\""}",48306,1,"""Europe""" +2023-12-04,18646,7926,"[\""Headphones\""]",4541.63,"{\""seasonal\"": \""25%\""}",55907,0,"""Europe""" +2024-03-28,18647,5900,"[\""Laptop\""]",4768.41,{},167188,0,"""Asia""" +2023-10-27,18648,3282,"[\""Charger\"", \""Laptop\""]",782.57,{},125105,1,"""Europe""" +2023-08-03,18649,7506,"[\""Keyboard\"", \""Laptop\""]",132.45,"{\"": \""17%\""}",117379,1,"""Europe""" +2024-03-16,18650,9834,"[\""Charger\"", \""Monitor\""]",1809.22,"{\""loyalty\"": \""22%\""}",202589,0,"""South America""" +2024-12-03,18651,4766,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3319.2,{},267822,1,"""Africa""" +2023-02-13,18652,4747,"[\""Headphones\"", \""Tablet\""]",808.6,"{\""promo\"": \""22%\""}",110471,0,"""North America""" +2023-04-21,18653,9052,"[\""Keyboard\""]",1364.46,{},176311,0,"""Africa""" +2023-04-13,18654,548,"[\""Charger\"", \""Headphones\""]",4904.45,"{\"": \""11%\""}",98812,1,"""Europe""" +2023-06-25,18655,2280,"[\""Wireless Mouse\""]",175.82,{},213864,0,"""South America""" +2023-09-29,18656,6668,"[\""Tablet\"", \""Wireless Mouse\""]",4641.16,{},64121,1,"""South America""" +2024-06-04,18657,3491,"[\""Monitor\"", \""Keyboard\""]",4968.41,{},262948,1,"""Africa""" +2023-02-22,18658,1556,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4479.79,"{\"": \""29%\""}",66665,1,"""Africa""" +2023-05-22,18659,3779,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4129.35,"{\""promo\"": \""27%\""}",22229,1,"""Europe""" +2024-05-13,18660,9483,"[\""Charger\""]",4413.97,"{\""loyalty\"": \""27%\""}",170467,1,"""Europe""" +2024-08-23,18661,2645,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2942.48,{},299306,1,"""Africa""" +2024-01-10,18662,1609,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1413.21,"{\""loyalty\"": \""10%\""}",97130,1,"""South America""" +2023-06-26,18663,9322,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",673.27,"{\""loyalty\"": \""25%\""}",224872,1,"""Asia""" +2024-11-11,18664,2180,"[\""Tablet\""]",2705.83,{},134989,1,"""Africa""" +2023-10-28,18665,2379,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1915.77,{},129133,0,"""Europe""" +2024-09-08,18666,9622,"[\""Monitor\""]",2692.82,"{\""promo\"": \""17%\""}",105199,0,"""North America""" +2023-03-05,18667,8086,"[\""Monitor\"", \""Wireless Mouse\""]",3845.26,{},153876,1,"""Africa""" +2024-10-16,18668,5111,"[\""Tablet\""]",1990.65,{},282165,1,"""South America""" +2023-04-04,18669,9175,"[\""Headphones\""]",2546.31,{},263265,1,"""South America""" +2024-12-26,18670,5504,"[\""Headphones\""]",4504.71,{},110273,0,"""Asia""" +2023-02-17,18671,7654,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1498.61,{},277676,0,"""Asia""" +2024-05-14,18672,6174,"[\""Tablet\""]",4016.37,{},295160,0,"""Africa""" +2024-11-22,18673,6485,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",873.02,{},63155,1,"""Africa""" +2024-12-20,18674,7486,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1614.69,{},289852,1,"""South America""" +2023-03-30,18675,8568,"[\""Headphones\"", \""Wireless Mouse\""]",915.28,{},28246,0,"""South America""" +2023-01-19,18676,4370,"[\""Headphones\""]",1372.72,"{\""promo\"": \""20%\""}",113411,1,"""Africa""" +2023-02-18,18677,2437,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1353.1,"{\""seasonal\"": \""8%\""}",291427,0,"""South America""" +2024-04-15,18678,5245,"[\""Charger\"", \""Phone\""]",4430.98,{},164780,1,"""South America""" +2024-08-26,18679,3035,"[\""Charger\"", \""Keyboard\""]",371.04,"{\""seasonal\"": \""18%\""}",220154,0,"""South America""" +2023-05-29,18680,5635,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",540.05,"{\""loyalty\"": \""15%\""}",139381,0,"""Asia""" +2024-10-31,18681,7287,"[\""Tablet\""]",1527.48,{},59909,1,"""South America""" +2023-02-01,18682,8073,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4956.94,{},83625,1,"""Europe""" +2023-10-11,18683,9484,"[\""Keyboard\"", \""Tablet\""]",2402.27,"{\""promo\"": \""9%\""}",36628,0,"""North America""" +2023-01-19,18684,6187,"[\""Tablet\"", \""Laptop\""]",3114.49,{},168477,0,"""Africa""" +2024-09-08,18685,3511,"[\""Keyboard\"", \""Headphones\""]",3778.48,{},169094,0,"""North America""" +2024-10-27,18686,7495,"[\""Laptop\""]",3161.93,{},224821,1,"""Asia""" +2024-10-02,18687,1003,"[\""Wireless Mouse\""]",1255.87,{},209578,1,"""Africa""" +2024-08-02,18688,3786,"[\""Monitor\""]",1574.12,"{\""seasonal\"": \""26%\""}",171777,1,"""Africa""" +2024-03-29,18689,5456,"[\""Keyboard\""]",487.32,"{\""promo\"": \""19%\""}",109520,1,"""Asia""" +2023-01-20,18690,5506,"[\""Monitor\"", \""Laptop\""]",2782.53,"{\""promo\"": \""19%\""}",197664,0,"""Africa""" +2023-01-14,18691,4371,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",55.16,{},292202,1,"""Europe""" +2024-01-17,18692,6003,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2212.32,"{\""loyalty\"": \""8%\""}",162790,0,"""Asia""" +2023-12-13,18693,3780,"[\""Wireless Mouse\"", \""Headphones\""]",4374.81,"{\"": \""20%\""}",120713,0,"""Europe""" +2024-12-17,18694,1554,"[\""Monitor\"", \""Wireless Mouse\""]",329.24,"{\"": \""5%\""}",87338,1,"""North America""" +2023-08-16,18695,5582,"[\""Wireless Mouse\"", \""Charger\""]",463.28,"{\""promo\"": \""24%\""}",123650,1,"""Asia""" +2024-04-02,18696,5194,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3889.43,"{\""loyalty\"": \""10%\""}",237540,0,"""North America""" +2024-09-11,18697,7708,"[\""Monitor\""]",4204.56,"{\""promo\"": \""27%\""}",103295,0,"""North America""" +2024-12-04,18698,9895,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2411.22,{},162734,0,"""Asia""" +2024-10-31,18699,5600,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2360.36,{},80872,0,"""Africa""" +2024-01-12,18700,2760,"[\""Headphones\"", \""Laptop\""]",350.22,{},115313,1,"""South America""" +2024-11-11,18701,752,"[\""Monitor\"", \""Wireless Mouse\""]",2393.95,{},251030,1,"""Europe""" +2024-01-17,18702,755,"[\""Wireless Mouse\""]",780.49,"{\""promo\"": \""10%\""}",12931,1,"""South America""" +2023-09-22,18703,2815,"[\""Keyboard\"", \""Phone\""]",1557.02,{},89873,0,"""North America""" +2024-06-17,18704,6789,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1992.19,{},214460,0,"""North America""" +2023-06-17,18705,5684,"[\""Tablet\"", \""Wireless Mouse\""]",735.35,{},218151,0,"""South America""" +2023-05-27,18706,3696,"[\""Charger\"", \""Tablet\""]",1109.98,"{\""promo\"": \""25%\""}",42531,0,"""South America""" +2024-10-09,18707,3764,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3782.68,{},198897,0,"""Asia""" +2023-08-03,18708,4742,"[\""Wireless Mouse\""]",379.9,"{\""loyalty\"": \""22%\""}",228819,1,"""South America""" +2023-04-20,18709,2270,"[\""Charger\"", \""Phone\""]",2129.87,"{\""promo\"": \""10%\""}",168048,1,"""Europe""" +2023-02-14,18710,3310,"[\""Monitor\"", \""Phone\""]",3286.76,"{\""seasonal\"": \""30%\""}",170793,1,"""Europe""" +2024-03-19,18711,5900,"[\""Phone\"", \""Charger\""]",4414.72,"{\""loyalty\"": \""14%\""}",88393,0,"""Europe""" +2023-04-26,18712,5269,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1783.77,{},140876,0,"""North America""" +2023-03-20,18713,6842,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4941.47,{},89569,0,"""Africa""" +2023-08-18,18714,5637,"[\""Phone\""]",3096.6,"{\""seasonal\"": \""12%\""}",172035,1,"""Europe""" +2023-11-04,18715,4894,"[\""Laptop\"", \""Keyboard\""]",1539.91,{},118818,1,"""Asia""" +2024-03-18,18716,5251,"[\""Keyboard\"", \""Headphones\""]",2775.39,{},15493,0,"""South America""" +2024-11-16,18717,9399,"[\""Charger\""]",4137.19,"{\""seasonal\"": \""18%\""}",19564,0,"""South America""" +2024-04-10,18718,4548,"[\""Tablet\""]",4413.83,"{\""promo\"": \""27%\""}",231485,0,"""Asia""" +2023-08-24,18719,6057,"[\""Tablet\"", \""Wireless Mouse\""]",1038.11,"{\""promo\"": \""28%\""}",108447,1,"""Asia""" +2024-07-28,18720,363,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1574.34,"{\""loyalty\"": \""10%\""}",106040,1,"""South America""" +2024-04-29,18721,2306,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3519.06,{},2820,1,"""North America""" +2024-06-03,18722,1554,"[\""Phone\"", \""Keyboard\""]",4015.63,{},240264,1,"""Asia""" +2024-09-10,18723,443,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1256.49,{},14075,0,"""North America""" +2024-11-04,18724,9770,"[\""Monitor\"", \""Phone\""]",2717.5,{},233887,1,"""South America""" +2023-12-14,18725,5262,"[\""Charger\""]",4898.53,{},208457,1,"""North America""" +2024-05-30,18726,8340,"[\""Monitor\"", \""Keyboard\""]",4843.4,{},109701,1,"""Asia""" +2024-10-14,18727,5576,"[\""Monitor\"", \""Headphones\""]",2303.86,{},148292,1,"""Europe""" +2023-01-13,18728,9245,"[\""Phone\"", \""Charger\""]",2610.03,{},111558,0,"""South America""" +2024-12-08,18729,6138,"[\""Laptop\"", \""Charger\""]",3584.91,"{\"": \""10%\""}",266957,1,"""Europe""" +2024-04-24,18730,5475,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1395.11,{},292339,0,"""Africa""" +2024-10-09,18731,8596,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",658.95,"{\""promo\"": \""26%\""}",155726,0,"""North America""" +2024-01-07,18732,4166,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1846.54,"{\""loyalty\"": \""21%\""}",60066,1,"""Europe""" +2024-04-16,18733,2641,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1543.88,{},104282,0,"""Asia""" +2023-03-08,18734,5292,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3340.95,{},146097,0,"""South America""" +2023-03-31,18735,7433,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3680.02,"{\"": \""21%\""}",294559,0,"""Europe""" +2024-10-31,18736,944,"[\""Tablet\"", \""Wireless Mouse\""]",4780.38,"{\""seasonal\"": \""15%\""}",265817,1,"""Asia""" +2024-03-26,18737,7913,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2332.87,"{\""promo\"": \""30%\""}",101193,1,"""Europe""" +2024-10-12,18738,9806,"[\""Monitor\"", \""Wireless Mouse\""]",1051.59,{},177489,1,"""Europe""" +2023-07-10,18739,8809,"[\""Tablet\""]",2071.0,{},209553,0,"""North America""" +2024-07-30,18740,4323,"[\""Wireless Mouse\"", \""Keyboard\""]",2627.21,{},236695,1,"""North America""" +2024-10-08,18741,5770,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2826.53,{},175957,1,"""North America""" +2023-02-13,18742,4048,"[\""Phone\"", \""Keyboard\""]",3608.03,"{\""promo\"": \""9%\""}",259524,0,"""Europe""" +2024-02-01,18743,3383,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4251.66,{},216488,0,"""Africa""" +2023-12-19,18744,5137,"[\""Keyboard\"", \""Monitor\""]",1163.6,"{\"": \""17%\""}",33152,1,"""Africa""" +2024-06-06,18745,8676,"[\""Headphones\""]",2332.69,"{\""loyalty\"": \""13%\""}",224068,1,"""Africa""" +2023-08-15,18746,5034,"[\""Laptop\""]",4778.08,"{\""seasonal\"": \""19%\""}",290445,0,"""South America""" +2024-01-25,18747,7972,"[\""Laptop\""]",1107.75,{},80687,1,"""Europe""" +2023-12-16,18748,9646,"[\""Wireless Mouse\"", \""Charger\""]",2298.33,"{\""promo\"": \""11%\""}",29624,0,"""South America""" +2023-01-31,18749,1045,"[\""Phone\""]",4478.77,{},111983,1,"""North America""" +2024-11-15,18750,6344,"[\""Monitor\""]",3547.53,{},237524,0,"""North America""" +2024-10-01,18751,6762,"[\""Wireless Mouse\""]",2774.01,{},276418,1,"""Europe""" +2023-05-12,18752,5238,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2900.57,"{\""seasonal\"": \""18%\""}",267245,0,"""Asia""" +2023-08-27,18753,7036,"[\""Headphones\""]",2470.61,{},33008,0,"""South America""" +2024-09-11,18754,796,"[\""Headphones\""]",2692.46,{},49505,0,"""Asia""" +2023-01-24,18755,7665,"[\""Keyboard\""]",3365.76,"{\""promo\"": \""5%\""}",91866,0,"""North America""" +2023-12-16,18756,4156,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2830.1,{},227263,1,"""Europe""" +2024-12-21,18757,6658,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1850.29,{},65729,0,"""Africa""" +2024-01-23,18758,719,"[\""Tablet\""]",4064.5,"{\""seasonal\"": \""10%\""}",280290,0,"""Europe""" +2023-08-15,18759,7021,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2809.83,{},277855,1,"""North America""" +2023-04-11,18760,2041,"[\""Laptop\"", \""Charger\""]",3468.99,{},69664,1,"""North America""" +2023-03-10,18761,7624,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2829.87,"{\""loyalty\"": \""27%\""}",199498,0,"""Europe""" +2023-12-17,18762,8598,"[\""Monitor\""]",4856.66,"{\"": \""17%\""}",277232,1,"""Africa""" +2024-08-25,18763,3086,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3985.73,{},262803,0,"""South America""" +2024-12-16,18764,3681,"[\""Laptop\"", \""Headphones\""]",2970.07,"{\""seasonal\"": \""5%\""}",241456,0,"""Africa""" +2024-10-03,18765,8063,"[\""Monitor\"", \""Wireless Mouse\""]",981.86,{},224145,1,"""Europe""" +2024-01-01,18766,3544,"[\""Headphones\"", \""Charger\""]",2821.7,{},246003,1,"""Africa""" +2023-12-06,18767,1775,"[\""Phone\""]",2820.34,"{\""seasonal\"": \""19%\""}",156764,1,"""Europe""" +2023-01-17,18768,5151,"[\""Laptop\"", \""Headphones\""]",319.35,{},288118,0,"""Africa""" +2023-06-08,18769,5329,"[\""Monitor\""]",1775.38,"{\""seasonal\"": \""19%\""}",62339,1,"""South America""" +2024-02-07,18770,5589,"[\""Headphones\"", \""Keyboard\""]",265.6,"{\""loyalty\"": \""17%\""}",144103,1,"""Asia""" +2023-03-05,18771,6609,"[\""Laptop\""]",786.68,{},173486,1,"""South America""" +2023-12-08,18772,1647,"[\""Keyboard\""]",2973.01,"{\""seasonal\"": \""15%\""}",278885,1,"""South America""" +2023-01-08,18773,116,"[\""Charger\"", \""Tablet\""]",2224.12,{},182100,0,"""South America""" +2023-09-10,18774,3014,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2622.94,"{\""seasonal\"": \""10%\""}",221587,0,"""Africa""" +2023-01-14,18775,8926,"[\""Keyboard\"", \""Phone\""]",355.8,{},298195,1,"""South America""" +2023-08-12,18776,8488,"[\""Phone\""]",1368.86,{},273306,1,"""Asia""" +2024-09-04,18777,4518,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4228.29,"{\""seasonal\"": \""27%\""}",129261,1,"""South America""" +2023-03-29,18778,3772,"[\""Monitor\""]",2986.78,{},37710,1,"""South America""" +2023-06-20,18779,220,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1519.07,"{\""promo\"": \""20%\""}",2732,1,"""Europe""" +2023-01-30,18780,476,"[\""Wireless Mouse\"", \""Headphones\""]",4779.14,{},75750,1,"""North America""" +2024-01-15,18781,1608,"[\""Phone\"", \""Tablet\""]",3244.83,"{\""promo\"": \""30%\""}",152493,0,"""North America""" +2023-10-17,18782,3906,"[\""Tablet\"", \""Headphones\""]",934.76,{},129931,1,"""North America""" +2023-11-12,18783,3822,"[\""Charger\"", \""Wireless Mouse\""]",4688.82,"{\""seasonal\"": \""24%\""}",79807,1,"""Africa""" +2024-10-08,18784,3674,"[\""Monitor\""]",134.42,"{\""loyalty\"": \""27%\""}",138242,0,"""Europe""" +2024-10-04,18785,906,"[\""Monitor\"", \""Headphones\""]",700.09,{},230990,1,"""Europe""" +2024-07-29,18786,324,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1119.24,{},98626,1,"""Asia""" +2023-05-24,18787,3489,"[\""Monitor\"", \""Headphones\""]",1936.02,"{\"": \""15%\""}",233557,1,"""South America""" +2024-11-16,18788,1975,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3795.44,"{\"": \""19%\""}",200559,0,"""Asia""" +2024-09-20,18789,9890,"[\""Keyboard\"", \""Phone\""]",1896.92,"{\""promo\"": \""26%\""}",223227,0,"""South America""" +2024-11-03,18790,5573,"[\""Phone\"", \""Headphones\""]",2674.28,"{\""promo\"": \""9%\""}",174439,0,"""Africa""" +2024-03-19,18791,8605,"[\""Charger\""]",2928.22,"{\""seasonal\"": \""15%\""}",198571,0,"""North America""" +2023-08-22,18792,4319,"[\""Headphones\"", \""Monitor\""]",3816.54,"{\""promo\"": \""24%\""}",186504,1,"""Asia""" +2023-06-20,18793,7618,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",919.64,"{\""loyalty\"": \""8%\""}",164163,1,"""Europe""" +2024-05-09,18794,5803,"[\""Laptop\"", \""Tablet\""]",1883.24,"{\""seasonal\"": \""18%\""}",154877,0,"""Europe""" +2024-01-18,18795,6158,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2297.49,{},191237,1,"""Africa""" +2023-11-10,18796,453,"[\""Wireless Mouse\""]",3233.9,{},123504,1,"""Africa""" +2023-12-21,18797,159,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4426.89,"{\""seasonal\"": \""8%\""}",99734,0,"""Asia""" +2023-04-19,18798,3475,"[\""Tablet\"", \""Laptop\""]",4131.99,"{\""seasonal\"": \""26%\""}",179748,1,"""South America""" +2024-09-14,18799,5594,"[\""Headphones\"", \""Wireless Mouse\""]",4259.36,"{\""seasonal\"": \""12%\""}",128911,1,"""Asia""" +2023-03-16,18800,8288,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4170.89,{},202809,1,"""Asia""" +2023-06-08,18801,5864,"[\""Monitor\"", \""Headphones\""]",3347.25,{},120624,0,"""North America""" +2024-07-29,18802,9091,"[\""Wireless Mouse\""]",276.18,{},37897,0,"""South America""" +2023-12-26,18803,4635,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",319.51,"{\""seasonal\"": \""20%\""}",166446,0,"""Africa""" +2023-03-04,18804,1859,"[\""Wireless Mouse\""]",1077.88,{},83946,0,"""Europe""" +2024-07-11,18805,4081,"[\""Phone\"", \""Wireless Mouse\""]",754.06,"{\""seasonal\"": \""6%\""}",128006,0,"""Africa""" +2024-04-01,18806,5234,"[\""Tablet\"", \""Wireless Mouse\""]",4209.98,"{\""promo\"": \""24%\""}",240728,0,"""Europe""" +2024-08-23,18807,3387,"[\""Phone\"", \""Laptop\""]",2300.85,"{\""loyalty\"": \""9%\""}",196930,1,"""North America""" +2024-07-17,18808,2190,"[\""Monitor\""]",1037.46,"{\"": \""30%\""}",134439,1,"""Asia""" +2024-08-04,18809,3642,"[\""Laptop\""]",4682.78,{},270566,1,"""Europe""" +2024-11-13,18810,3975,"[\""Tablet\"", \""Charger\""]",3318.05,"{\"": \""19%\""}",226752,0,"""Asia""" +2023-02-23,18811,55,"[\""Headphones\"", \""Wireless Mouse\""]",4084.24,"{\""seasonal\"": \""16%\""}",146067,0,"""Europe""" +2024-08-18,18812,408,"[\""Laptop\"", \""Keyboard\""]",656.94,"{\"": \""10%\""}",96614,1,"""North America""" +2024-04-05,18813,7557,"[\""Phone\"", \""Charger\""]",1451.5,"{\"": \""10%\""}",75883,0,"""Europe""" +2023-09-30,18814,1711,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4770.37,{},101541,1,"""South America""" +2023-02-05,18815,1363,"[\""Monitor\"", \""Wireless Mouse\""]",837.03,"{\""seasonal\"": \""21%\""}",211818,1,"""Europe""" +2023-05-03,18816,8264,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3992.49,"{\""seasonal\"": \""20%\""}",148713,1,"""Asia""" +2023-10-30,18817,2847,"[\""Headphones\"", \""Monitor\""]",4611.13,"{\""seasonal\"": \""22%\""}",14996,0,"""South America""" +2023-02-09,18818,863,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4209.59,{},40090,1,"""Asia""" +2024-06-11,18819,897,"[\""Laptop\"", \""Tablet\""]",417.85,"{\""promo\"": \""12%\""}",73441,0,"""South America""" +2024-02-01,18820,6171,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1071.28,"{\""promo\"": \""9%\""}",259702,0,"""North America""" +2023-02-20,18821,4365,"[\""Phone\"", \""Laptop\""]",4452.43,"{\"": \""7%\""}",126846,1,"""South America""" +2024-09-23,18822,5190,"[\""Laptop\"", \""Charger\""]",2551.81,{},202815,0,"""Asia""" +2023-10-06,18823,7984,"[\""Headphones\"", \""Monitor\""]",3663.75,{},3136,0,"""North America""" +2023-04-01,18824,1622,"[\""Charger\""]",3583.33,{},85953,0,"""Africa""" +2024-10-18,18825,2490,"[\""Keyboard\""]",3424.53,{},108942,1,"""Asia""" +2023-04-06,18826,3121,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2582.42,{},84805,0,"""Europe""" +2023-09-15,18827,4986,"[\""Wireless Mouse\""]",3915.28,{},63387,0,"""Europe""" +2024-07-28,18828,2509,"[\""Wireless Mouse\""]",3800.74,"{\"": \""30%\""}",148659,1,"""South America""" +2024-03-07,18829,5142,"[\""Charger\"", \""Headphones\""]",1585.3,"{\""promo\"": \""9%\""}",180939,1,"""South America""" +2023-02-12,18830,7449,"[\""Wireless Mouse\""]",706.16,"{\""loyalty\"": \""13%\""}",282542,0,"""Africa""" +2023-09-20,18831,5176,"[\""Headphones\"", \""Charger\""]",1953.85,{},257061,0,"""Africa""" +2023-07-25,18832,4099,"[\""Keyboard\"", \""Headphones\""]",4705.12,"{\""seasonal\"": \""27%\""}",6445,0,"""Africa""" +2023-04-08,18833,4947,"[\""Tablet\""]",1189.67,"{\""promo\"": \""29%\""}",193228,1,"""Europe""" +2023-09-26,18834,511,"[\""Monitor\"", \""Phone\""]",483.45,"{\"": \""25%\""}",177212,1,"""Africa""" +2023-02-11,18835,7460,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2218.04,{},144147,0,"""Europe""" +2023-06-07,18836,1866,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",452.49,"{\""seasonal\"": \""5%\""}",171496,0,"""Asia""" +2024-05-11,18837,1854,"[\""Tablet\""]",671.55,{},198637,0,"""Asia""" +2024-10-21,18838,6079,"[\""Wireless Mouse\"", \""Headphones\""]",2231.18,{},149983,1,"""South America""" +2024-10-03,18839,6057,"[\""Keyboard\"", \""Laptop\""]",993.39,"{\"": \""19%\""}",169632,1,"""Africa""" +2023-03-16,18840,2137,"[\""Keyboard\"", \""Wireless Mouse\""]",4022.83,"{\"": \""21%\""}",71460,0,"""South America""" +2023-12-15,18841,9743,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",546.63,"{\""promo\"": \""25%\""}",222863,0,"""North America""" +2023-05-26,18842,916,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3502.05,{},46557,0,"""North America""" +2024-01-09,18843,9201,"[\""Phone\"", \""Wireless Mouse\""]",4769.38,{},11479,1,"""North America""" +2024-04-15,18844,5600,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2480.93,{},240743,0,"""Asia""" +2023-01-24,18845,26,"[\""Monitor\""]",3781.19,{},230913,0,"""Asia""" +2024-08-27,18846,600,"[\""Tablet\""]",4655.78,{},220116,0,"""Europe""" +2023-06-01,18847,8945,"[\""Phone\"", \""Laptop\""]",4893.61,{},199664,1,"""Asia""" +2023-11-01,18848,2617,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4006.99,{},131534,0,"""Europe""" +2024-05-18,18849,7155,"[\""Laptop\""]",1193.09,{},223620,1,"""South America""" +2023-03-24,18850,4299,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2927.16,"{\"": \""20%\""}",214997,1,"""South America""" +2024-03-04,18851,6008,"[\""Phone\"", \""Headphones\""]",1842.49,{},172669,1,"""South America""" +2024-09-13,18852,7543,"[\""Wireless Mouse\"", \""Charger\""]",2209.9,"{\""promo\"": \""6%\""}",166329,1,"""Asia""" +2023-01-14,18853,416,"[\""Headphones\"", \""Charger\""]",2865.68,{},275727,0,"""South America""" +2023-03-27,18854,7201,"[\""Keyboard\""]",1300.65,"{\""promo\"": \""9%\""}",19736,0,"""Africa""" +2023-08-26,18855,8550,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3921.88,"{\"": \""24%\""}",8534,0,"""Asia""" +2024-08-06,18856,6834,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",914.12,{},109155,1,"""Europe""" +2023-10-22,18857,7241,"[\""Keyboard\"", \""Phone\""]",2315.82,"{\""loyalty\"": \""16%\""}",55659,1,"""North America""" +2023-11-22,18858,702,"[\""Phone\"", \""Monitor\""]",1050.39,{},107727,1,"""North America""" +2023-02-11,18859,141,"[\""Keyboard\""]",4761.0,{},288527,1,"""North America""" +2023-07-11,18860,3442,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3308.42,"{\"": \""12%\""}",146520,0,"""Asia""" +2023-04-24,18861,9150,"[\""Charger\""]",4897.13,"{\""promo\"": \""28%\""}",186112,0,"""North America""" +2023-10-19,18862,2041,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",196.07,"{\""loyalty\"": \""8%\""}",189577,1,"""Africa""" +2023-05-30,18863,9010,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3168.08,"{\""promo\"": \""16%\""}",57362,1,"""Asia""" +2024-03-18,18864,2572,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",940.44,{},218091,1,"""South America""" +2023-05-08,18865,8667,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4234.47,{},80790,1,"""North America""" +2023-12-03,18866,7855,"[\""Wireless Mouse\"", \""Tablet\""]",2329.42,{},265203,1,"""North America""" +2024-09-16,18867,4379,"[\""Phone\""]",4621.98,{},100380,1,"""Asia""" +2023-12-06,18868,7378,"[\""Phone\"", \""Headphones\""]",218.52,"{\""promo\"": \""13%\""}",136917,0,"""North America""" +2024-03-10,18869,780,"[\""Keyboard\""]",1930.7,{},110909,1,"""Asia""" +2024-12-23,18870,2095,"[\""Laptop\"", \""Phone\""]",4408.29,"{\""promo\"": \""24%\""}",69203,0,"""North America""" +2024-05-22,18871,3922,"[\""Tablet\""]",2014.96,{},100612,0,"""Africa""" +2023-01-31,18872,451,"[\""Laptop\"", \""Tablet\""]",2837.9,{},1577,1,"""Asia""" +2024-10-16,18873,1944,"[\""Charger\"", \""Monitor\""]",2655.27,"{\""seasonal\"": \""12%\""}",43068,0,"""North America""" +2024-06-28,18874,506,"[\""Keyboard\"", \""Laptop\""]",3362.71,{},44750,0,"""Europe""" +2023-08-14,18875,7196,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2708.74,{},189337,0,"""South America""" +2023-09-03,18876,8265,"[\""Tablet\"", \""Charger\""]",1450.0,"{\""loyalty\"": \""24%\""}",37540,1,"""North America""" +2024-06-23,18877,5573,"[\""Tablet\""]",3214.4,"{\"": \""29%\""}",188512,0,"""Europe""" +2023-04-27,18878,1967,"[\""Wireless Mouse\""]",1967.93,{},58006,0,"""Europe""" +2024-06-01,18879,5545,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1292.1,"{\"": \""14%\""}",96421,1,"""South America""" +2023-09-18,18880,7712,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",291.96,"{\""loyalty\"": \""23%\""}",149884,1,"""South America""" +2023-09-26,18881,3355,"[\""Charger\"", \""Phone\""]",1444.11,"{\""loyalty\"": \""27%\""}",96680,1,"""Asia""" +2024-11-19,18882,204,"[\""Phone\""]",4858.13,{},163294,0,"""Africa""" +2023-07-11,18883,510,"[\""Headphones\"", \""Laptop\""]",3908.61,"{\""loyalty\"": \""24%\""}",216636,1,"""South America""" +2023-06-17,18884,5603,"[\""Headphones\""]",978.06,"{\""promo\"": \""5%\""}",53366,0,"""Asia""" +2024-12-01,18885,3719,"[\""Charger\""]",1508.69,"{\""seasonal\"": \""10%\""}",72250,1,"""Asia""" +2024-12-20,18886,7108,"[\""Phone\"", \""Charger\""]",1215.52,{},233481,0,"""Europe""" +2024-04-01,18887,2043,"[\""Monitor\""]",1479.4,"{\""loyalty\"": \""25%\""}",48065,1,"""South America""" +2024-12-25,18888,4491,"[\""Headphones\""]",1936.44,{},176786,1,"""North America""" +2023-06-06,18889,8324,"[\""Keyboard\"", \""Laptop\""]",1736.27,{},220885,1,"""Europe""" +2024-10-30,18890,5762,"[\""Phone\""]",992.04,{},132004,0,"""South America""" +2023-06-12,18891,9160,"[\""Keyboard\""]",71.02,{},46171,1,"""South America""" +2023-11-09,18892,9699,"[\""Monitor\"", \""Phone\""]",1852.46,"{\""seasonal\"": \""19%\""}",292780,0,"""South America""" +2023-12-16,18893,3828,"[\""Tablet\"", \""Wireless Mouse\""]",4268.51,"{\""loyalty\"": \""6%\""}",118665,1,"""Asia""" +2023-07-03,18894,6733,"[\""Charger\""]",2004.61,{},191618,1,"""Europe""" +2023-07-12,18895,9204,"[\""Charger\"", \""Keyboard\""]",4647.47,{},16290,0,"""North America""" +2023-12-24,18896,5836,"[\""Phone\""]",664.2,"{\""seasonal\"": \""28%\""}",133287,1,"""Europe""" +2024-12-15,18897,2616,"[\""Charger\"", \""Phone\""]",3240.85,"{\""seasonal\"": \""25%\""}",194326,1,"""South America""" +2023-01-05,18898,7869,"[\""Tablet\"", \""Keyboard\""]",3142.8,"{\""loyalty\"": \""20%\""}",276549,1,"""North America""" +2023-02-21,18899,5368,"[\""Tablet\"", \""Headphones\""]",1000.66,{},28387,0,"""North America""" +2024-12-27,18900,8837,"[\""Charger\"", \""Monitor\""]",4256.03,"{\"": \""27%\""}",181964,1,"""South America""" +2023-11-05,18901,953,"[\""Headphones\"", \""Monitor\""]",2272.32,{},159313,0,"""Africa""" +2023-10-26,18902,5880,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",520.86,"{\"": \""5%\""}",141397,0,"""Europe""" +2024-08-24,18903,6280,"[\""Monitor\""]",2878.49,"{\""seasonal\"": \""13%\""}",258845,1,"""Africa""" +2023-08-10,18904,2591,"[\""Headphones\"", \""Keyboard\""]",4783.22,{},76169,0,"""Africa""" +2024-06-06,18905,4449,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1514.16,"{\""promo\"": \""24%\""}",208101,1,"""South America""" +2023-04-17,18906,8775,"[\""Monitor\"", \""Laptop\""]",1023.34,{},162744,0,"""South America""" +2023-03-12,18907,584,"[\""Charger\"", \""Laptop\""]",3473.53,"{\""loyalty\"": \""18%\""}",275075,1,"""Asia""" +2024-03-23,18908,1179,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4161.18,{},68404,0,"""Asia""" +2024-01-31,18909,7522,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2782.76,{},284009,1,"""North America""" +2023-11-16,18910,68,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4139.2,"{\"": \""22%\""}",14746,1,"""South America""" +2024-10-18,18911,4354,"[\""Tablet\"", \""Charger\""]",3882.09,"{\""loyalty\"": \""11%\""}",162417,1,"""Africa""" +2024-06-07,18912,8127,"[\""Headphones\""]",2858.0,{},3671,1,"""South America""" +2023-10-28,18913,2140,"[\""Charger\"", \""Monitor\""]",599.98,{},166138,1,"""Asia""" +2023-01-02,18914,4074,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",162.44,{},161395,1,"""North America""" +2024-07-21,18915,7008,"[\""Phone\""]",1934.32,{},223210,1,"""North America""" +2024-07-29,18916,1592,"[\""Keyboard\"", \""Tablet\""]",3615.17,{},45371,0,"""Africa""" +2024-02-24,18917,5347,"[\""Laptop\"", \""Monitor\""]",540.89,"{\""promo\"": \""18%\""}",130685,1,"""Africa""" +2023-05-19,18918,2867,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4937.89,"{\""loyalty\"": \""9%\""}",17703,0,"""Africa""" +2023-12-04,18919,2224,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1721.52,{},32232,0,"""Asia""" +2023-08-29,18920,6126,"[\""Keyboard\""]",1279.9,"{\"": \""25%\""}",82224,0,"""Europe""" +2024-12-26,18921,2817,"[\""Monitor\"", \""Tablet\""]",591.83,{},39530,1,"""Africa""" +2023-04-19,18922,9781,"[\""Headphones\""]",2347.34,"{\""promo\"": \""29%\""}",139101,1,"""North America""" +2024-08-19,18923,6196,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4801.78,{},196586,1,"""Europe""" +2024-06-08,18924,5674,"[\""Charger\""]",1183.61,{},204919,0,"""North America""" +2023-11-19,18925,9019,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",277.47,"{\""loyalty\"": \""20%\""}",86455,0,"""North America""" +2023-02-03,18926,1416,"[\""Keyboard\"", \""Tablet\""]",2147.23,{},31252,0,"""Europe""" +2024-04-14,18927,379,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1800.66,"{\""seasonal\"": \""16%\""}",16660,0,"""Asia""" +2024-03-31,18928,9943,"[\""Keyboard\""]",3892.31,{},237086,1,"""Europe""" +2024-10-31,18929,3830,"[\""Tablet\""]",4967.8,{},104271,0,"""South America""" +2023-08-14,18930,6149,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4691.59,"{\""seasonal\"": \""17%\""}",59645,0,"""North America""" +2024-02-21,18931,4921,"[\""Monitor\""]",440.95,"{\""loyalty\"": \""27%\""}",195114,0,"""Asia""" +2023-10-27,18932,3109,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1100.05,{},192865,0,"""Europe""" +2024-04-28,18933,7175,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3304.1,{},30240,1,"""South America""" +2023-02-15,18934,5057,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1552.88,{},64675,1,"""Asia""" +2024-01-17,18935,5055,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1088.85,{},157614,0,"""North America""" +2024-04-11,18936,6758,"[\""Wireless Mouse\""]",643.61,"{\""loyalty\"": \""26%\""}",172211,1,"""Asia""" +2024-03-22,18937,7362,"[\""Wireless Mouse\""]",2784.56,{},181262,0,"""Asia""" +2024-10-01,18938,6536,"[\""Wireless Mouse\"", \""Headphones\""]",4952.28,{},22343,0,"""Asia""" +2024-12-05,18939,6628,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1752.71,"{\""loyalty\"": \""29%\""}",169324,0,"""North America""" +2024-04-04,18940,8902,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4955.93,"{\""loyalty\"": \""18%\""}",180330,0,"""Africa""" +2024-09-09,18941,9058,"[\""Monitor\"", \""Phone\""]",537.17,{},299990,0,"""Asia""" +2023-05-28,18942,5929,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3749.48,"{\""loyalty\"": \""18%\""}",174979,0,"""North America""" +2024-12-18,18943,6725,"[\""Keyboard\"", \""Laptop\""]",1521.12,{},252089,0,"""South America""" +2023-01-13,18944,6277,"[\""Laptop\""]",4404.38,{},147611,0,"""South America""" +2023-01-22,18945,1134,"[\""Monitor\"", \""Laptop\""]",975.3,{},250349,1,"""Asia""" +2023-07-12,18946,5621,"[\""Wireless Mouse\"", \""Monitor\""]",210.02,"{\""seasonal\"": \""20%\""}",294619,1,"""Africa""" +2024-03-02,18947,3290,"[\""Keyboard\"", \""Wireless Mouse\""]",1116.98,{},217922,1,"""South America""" +2023-10-19,18948,1369,"[\""Charger\""]",2332.64,{},149298,0,"""South America""" +2023-07-01,18949,138,"[\""Charger\""]",113.64,"{\""seasonal\"": \""13%\""}",10597,1,"""Asia""" +2024-07-01,18950,8296,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4637.84,{},103901,0,"""North America""" +2024-03-30,18951,3390,"[\""Laptop\""]",1583.07,{},240764,0,"""South America""" +2023-08-25,18952,5960,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1259.95,{},4920,1,"""South America""" +2023-03-24,18953,1311,"[\""Monitor\"", \""Charger\""]",113.38,"{\""seasonal\"": \""20%\""}",265789,1,"""Europe""" +2024-04-17,18954,1837,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",710.85,"{\""loyalty\"": \""8%\""}",176903,1,"""Europe""" +2023-05-05,18955,7679,"[\""Keyboard\"", \""Laptop\""]",1013.97,"{\""promo\"": \""13%\""}",58636,1,"""North America""" +2024-06-07,18956,5121,"[\""Keyboard\"", \""Headphones\""]",1727.2,"{\"": \""16%\""}",44363,0,"""Asia""" +2024-06-27,18957,9791,"[\""Tablet\"", \""Wireless Mouse\""]",3267.04,"{\"": \""9%\""}",266039,0,"""South America""" +2023-12-09,18958,855,"[\""Phone\""]",2279.94,{},77255,1,"""Asia""" +2024-12-16,18959,2987,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1945.78,"{\""seasonal\"": \""20%\""}",15998,1,"""Asia""" +2024-01-22,18960,3983,"[\""Laptop\"", \""Monitor\""]",4470.04,"{\"": \""5%\""}",16680,1,"""Asia""" +2024-04-23,18961,1378,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3194.05,"{\""loyalty\"": \""27%\""}",266061,0,"""Asia""" +2024-07-05,18962,8661,"[\""Wireless Mouse\""]",1920.01,"{\""seasonal\"": \""15%\""}",124227,1,"""Asia""" +2024-11-24,18963,5166,"[\""Phone\""]",1674.57,"{\""seasonal\"": \""29%\""}",246211,1,"""Africa""" +2024-08-25,18964,9164,"[\""Tablet\""]",261.27,{},237602,1,"""Africa""" +2024-06-30,18965,8910,"[\""Laptop\""]",132.18,{},59925,1,"""Asia""" +2023-10-13,18966,218,"[\""Tablet\"", \""Charger\""]",268.75,"{\"": \""25%\""}",224579,1,"""Africa""" +2023-03-27,18967,7761,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3564.67,"{\"": \""13%\""}",117809,1,"""Africa""" +2023-09-04,18968,2937,"[\""Laptop\"", \""Monitor\""]",4186.58,"{\""loyalty\"": \""23%\""}",193120,0,"""North America""" +2023-12-11,18969,9680,"[\""Charger\""]",2619.77,"{\""promo\"": \""9%\""}",39967,0,"""Asia""" +2023-08-12,18970,8427,"[\""Tablet\""]",782.48,{},85748,0,"""North America""" +2024-06-20,18971,5933,"[\""Wireless Mouse\"", \""Headphones\""]",1942.17,"{\""loyalty\"": \""17%\""}",135230,0,"""Asia""" +2023-12-01,18972,285,"[\""Charger\"", \""Tablet\""]",526.61,"{\""seasonal\"": \""5%\""}",190577,0,"""Africa""" +2023-11-17,18973,2766,"[\""Charger\"", \""Monitor\""]",2153.99,{},127005,1,"""Europe""" +2023-12-05,18974,4457,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3800.84,"{\""seasonal\"": \""5%\""}",47526,0,"""Asia""" +2023-08-17,18975,5232,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3943.69,{},55485,1,"""Europe""" +2023-02-27,18976,2935,"[\""Wireless Mouse\"", \""Phone\""]",4325.78,"{\""promo\"": \""11%\""}",263102,1,"""Europe""" +2024-04-02,18977,8044,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4362.19,{},112657,1,"""North America""" +2023-02-25,18978,4169,"[\""Charger\""]",2496.79,"{\"": \""15%\""}",12489,0,"""Europe""" +2024-03-01,18979,2806,"[\""Laptop\""]",1268.7,"{\""promo\"": \""10%\""}",48246,0,"""South America""" +2023-02-25,18980,5757,"[\""Wireless Mouse\""]",157.3,"{\"": \""12%\""}",77960,1,"""North America""" +2024-03-22,18981,7374,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4206.43,{},220754,0,"""Asia""" +2023-06-08,18982,4472,"[\""Keyboard\""]",4551.22,{},175029,0,"""Africa""" +2024-01-27,18983,6854,"[\""Wireless Mouse\""]",2950.64,{},42991,1,"""Africa""" +2024-12-12,18984,625,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4729.42,{},228604,1,"""South America""" +2024-06-23,18985,2136,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1175.27,"{\""seasonal\"": \""24%\""}",236543,0,"""Africa""" +2023-07-16,18986,7223,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2171.77,"{\""promo\"": \""22%\""}",194777,1,"""Europe""" +2024-10-21,18987,6595,"[\""Phone\""]",1873.73,"{\"": \""18%\""}",109850,0,"""Asia""" +2023-08-21,18988,2062,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4614.46,"{\""promo\"": \""22%\""}",22817,1,"""South America""" +2024-01-28,18989,2238,"[\""Charger\"", \""Wireless Mouse\""]",4039.56,"{\""seasonal\"": \""16%\""}",228124,1,"""Europe""" +2023-05-21,18990,1807,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3506.56,"{\""loyalty\"": \""11%\""}",159385,1,"""South America""" +2024-04-07,18991,9910,"[\""Wireless Mouse\""]",2466.92,"{\"": \""23%\""}",160723,0,"""Europe""" +2024-06-21,18992,1177,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2226.79,"{\""loyalty\"": \""29%\""}",143096,0,"""Asia""" +2023-04-07,18993,1958,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3674.94,{},159337,1,"""Europe""" +2023-08-04,18994,3729,"[\""Keyboard\""]",4505.79,{},181440,1,"""South America""" +2023-01-05,18995,3297,"[\""Wireless Mouse\"", \""Phone\""]",1733.13,"{\"": \""6%\""}",237304,1,"""Asia""" +2024-02-01,18996,7515,"[\""Wireless Mouse\"", \""Laptop\""]",571.95,{},241965,0,"""South America""" +2023-05-04,18997,3360,"[\""Phone\""]",1823.15,{},286633,1,"""Asia""" +2024-07-20,18998,1054,"[\""Monitor\""]",832.91,"{\""loyalty\"": \""26%\""}",72430,1,"""North America""" +2024-08-13,18999,6857,"[\""Charger\""]",2884.87,"{\""seasonal\"": \""10%\""}",21998,1,"""Asia""" +2024-10-06,19000,3351,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1413.33,{},174656,0,"""South America""" +2023-07-16,19001,8764,"[\""Charger\"", \""Headphones\""]",404.77,"{\""promo\"": \""12%\""}",229553,0,"""Europe""" +2023-05-13,19002,8325,"[\""Keyboard\"", \""Wireless Mouse\""]",3534.98,{},226143,1,"""Europe""" +2023-10-29,19003,9147,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",116.75,{},257615,0,"""South America""" +2024-03-21,19004,3078,"[\""Charger\""]",1476.09,{},21169,1,"""Europe""" +2023-11-28,19005,3476,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1626.19,{},153658,0,"""Asia""" +2023-12-10,19006,6708,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3795.54,{},103186,1,"""North America""" +2023-04-09,19007,5709,"[\""Headphones\""]",2875.41,{},116347,0,"""Europe""" +2023-04-21,19008,9504,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4682.45,{},2461,1,"""Africa""" +2024-06-17,19009,7161,"[\""Wireless Mouse\""]",1028.39,{},283527,0,"""South America""" +2024-08-17,19010,104,"[\""Keyboard\"", \""Phone\""]",3370.94,{},166981,1,"""Europe""" +2023-03-04,19011,9089,"[\""Keyboard\"", \""Tablet\""]",3641.87,"{\""promo\"": \""6%\""}",106251,1,"""Asia""" +2024-10-05,19012,8754,"[\""Charger\"", \""Phone\"", \""Laptop\""]",406.39,{},243583,0,"""Africa""" +2024-06-08,19013,4209,"[\""Wireless Mouse\""]",1654.14,{},237979,1,"""Asia""" +2024-12-02,19014,2891,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2652.76,"{\""seasonal\"": \""24%\""}",20135,1,"""Europe""" +2023-01-24,19015,4728,"[\""Headphones\"", \""Keyboard\""]",2692.14,{},150184,0,"""South America""" +2024-10-05,19016,3082,"[\""Monitor\"", \""Wireless Mouse\""]",263.92,"{\""loyalty\"": \""8%\""}",201708,1,"""South America""" +2023-03-24,19017,5920,"[\""Headphones\"", \""Phone\""]",2301.87,"{\""loyalty\"": \""8%\""}",199167,0,"""Asia""" +2023-04-15,19018,8666,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4231.81,{},59236,1,"""Europe""" +2024-07-18,19019,8083,"[\""Laptop\""]",471.2,"{\""loyalty\"": \""25%\""}",13904,1,"""Europe""" +2023-01-29,19020,9139,"[\""Wireless Mouse\"", \""Phone\""]",1588.43,"{\"": \""18%\""}",285627,1,"""South America""" +2024-01-17,19021,1822,"[\""Headphones\""]",727.66,{},158838,1,"""Europe""" +2024-07-03,19022,4583,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",520.98,"{\""seasonal\"": \""12%\""}",84005,1,"""Africa""" +2024-10-15,19023,6691,"[\""Charger\"", \""Wireless Mouse\""]",729.9,{},262067,0,"""North America""" +2023-09-11,19024,3116,"[\""Tablet\""]",2108.69,{},290736,1,"""Europe""" +2024-03-19,19025,6448,"[\""Laptop\"", \""Wireless Mouse\""]",2598.27,"{\""loyalty\"": \""16%\""}",62938,0,"""Africa""" +2024-03-04,19026,4118,"[\""Charger\""]",2758.07,{},159293,1,"""North America""" +2023-07-26,19027,8938,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",221.47,"{\""seasonal\"": \""13%\""}",167924,1,"""Europe""" +2024-11-11,19028,1275,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",509.77,{},54118,1,"""Europe""" +2023-01-24,19029,1526,"[\""Charger\""]",3496.71,{},294505,0,"""Africa""" +2023-11-15,19030,3414,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3916.31,"{\""loyalty\"": \""18%\""}",90563,0,"""South America""" +2023-10-24,19031,1383,"[\""Wireless Mouse\"", \""Keyboard\""]",828.68,"{\""seasonal\"": \""14%\""}",289983,0,"""South America""" +2024-04-17,19032,782,"[\""Wireless Mouse\""]",669.3,"{\""promo\"": \""28%\""}",62484,0,"""Asia""" +2023-09-09,19033,6430,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3971.5,{},108347,1,"""North America""" +2024-10-08,19034,8678,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3551.8,{},109187,1,"""South America""" +2023-06-13,19035,9419,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2000.2,"{\"": \""13%\""}",64278,0,"""Africa""" +2024-02-24,19036,5801,"[\""Phone\""]",3592.3,{},269037,0,"""South America""" +2023-09-10,19037,9201,"[\""Monitor\""]",4590.52,{},17261,1,"""Africa""" +2023-11-02,19038,3062,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2007.59,{},226499,0,"""Europe""" +2023-05-22,19039,6948,"[\""Phone\"", \""Laptop\""]",3431.64,{},111918,0,"""Africa""" +2024-09-22,19040,9763,"[\""Keyboard\""]",305.81,{},11288,1,"""Africa""" +2024-06-13,19041,5605,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4108.83,{},240054,0,"""South America""" +2023-12-17,19042,6145,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1811.43,"{\"": \""18%\""}",78268,1,"""Africa""" +2023-08-18,19043,6294,"[\""Laptop\"", \""Charger\""]",3699.18,{},172630,0,"""Africa""" +2024-05-05,19044,2146,"[\""Monitor\"", \""Headphones\""]",1981.46,"{\""promo\"": \""30%\""}",16139,1,"""Africa""" +2024-10-21,19045,9165,"[\""Laptop\""]",57.71,"{\""seasonal\"": \""16%\""}",45705,1,"""South America""" +2024-04-10,19046,5272,"[\""Charger\""]",1247.13,"{\""seasonal\"": \""13%\""}",250359,0,"""Africa""" +2023-04-20,19047,3672,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",818.58,{},4605,1,"""Asia""" +2024-11-01,19048,2660,"[\""Laptop\""]",2096.27,"{\""promo\"": \""14%\""}",201702,0,"""Europe""" +2023-03-17,19049,7286,"[\""Headphones\"", \""Keyboard\""]",1547.42,{},176029,0,"""Asia""" +2024-11-05,19050,8583,"[\""Monitor\"", \""Charger\""]",3750.87,{},108185,0,"""Europe""" +2023-01-24,19051,4289,"[\""Tablet\"", \""Laptop\""]",306.02,"{\""seasonal\"": \""14%\""}",84256,0,"""Africa""" +2023-11-24,19052,6846,"[\""Phone\"", \""Wireless Mouse\""]",2441.51,"{\"": \""11%\""}",4096,0,"""South America""" +2023-11-23,19053,7138,"[\""Tablet\""]",3137.68,"{\""loyalty\"": \""30%\""}",77041,0,"""Asia""" +2023-06-20,19054,8519,"[\""Headphones\"", \""Laptop\""]",2232.41,{},262393,1,"""Asia""" +2023-01-19,19055,4741,"[\""Monitor\""]",3475.83,{},103089,1,"""Europe""" +2023-06-16,19056,828,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2922.42,{},121205,0,"""Africa""" +2024-07-27,19057,5272,"[\""Phone\""]",4097.64,"{\"": \""7%\""}",180421,0,"""North America""" +2024-08-23,19058,2128,"[\""Wireless Mouse\""]",1290.76,{},105762,1,"""South America""" +2023-08-26,19059,6440,"[\""Headphones\""]",1677.38,{},18345,1,"""Europe""" +2024-04-29,19060,847,"[\""Phone\""]",2162.13,{},83824,1,"""Asia""" +2023-08-05,19061,2419,"[\""Tablet\"", \""Charger\""]",4035.83,"{\""loyalty\"": \""26%\""}",11725,0,"""South America""" +2024-04-10,19062,1712,"[\""Headphones\""]",2767.89,"{\""promo\"": \""24%\""}",94282,0,"""Africa""" +2024-02-19,19063,2034,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2996.06,{},199395,0,"""Asia""" +2023-07-08,19064,9778,"[\""Keyboard\"", \""Tablet\""]",1967.02,{},179836,1,"""South America""" +2023-12-17,19065,5464,"[\""Charger\"", \""Wireless Mouse\""]",2077.12,"{\"": \""18%\""}",39147,1,"""Europe""" +2024-11-18,19066,9763,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4622.17,"{\"": \""7%\""}",291914,0,"""Asia""" +2023-01-15,19067,116,"[\""Monitor\""]",688.91,{},39840,1,"""South America""" +2024-10-17,19068,9204,"[\""Phone\"", \""Laptop\""]",2203.05,{},19997,0,"""Asia""" +2023-10-20,19069,5851,"[\""Wireless Mouse\"", \""Phone\""]",1818.82,{},23232,1,"""North America""" +2023-12-23,19070,5288,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2308.91,{},14888,1,"""Africa""" +2023-05-13,19071,8014,"[\""Laptop\"", \""Monitor\""]",2474.17,{},191640,1,"""South America""" +2023-10-26,19072,1336,"[\""Wireless Mouse\""]",4126.22,{},121225,0,"""North America""" +2023-12-25,19073,862,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",289.86,"{\""promo\"": \""12%\""}",95518,1,"""Asia""" +2024-04-09,19074,7662,"[\""Monitor\""]",1100.1,"{\""seasonal\"": \""28%\""}",132220,0,"""North America""" +2023-09-05,19075,2126,"[\""Phone\""]",289.96,{},38807,0,"""Africa""" +2023-06-08,19076,6303,"[\""Headphones\""]",3949.93,"{\""loyalty\"": \""20%\""}",172044,1,"""Africa""" +2023-08-27,19077,4232,"[\""Monitor\""]",2159.19,{},157761,1,"""North America""" +2023-01-04,19078,4768,"[\""Wireless Mouse\""]",2476.84,"{\""loyalty\"": \""10%\""}",46266,0,"""North America""" +2024-01-25,19079,7335,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2831.33,"{\""promo\"": \""5%\""}",99447,1,"""Africa""" +2024-02-11,19080,9874,"[\""Headphones\""]",4699.85,"{\""promo\"": \""21%\""}",45258,1,"""Asia""" +2023-03-21,19081,7150,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",778.51,{},78837,1,"""Asia""" +2023-04-01,19082,2482,"[\""Headphones\"", \""Phone\""]",870.59,"{\"": \""30%\""}",51503,1,"""Africa""" +2024-01-23,19083,6764,"[\""Keyboard\""]",1025.84,"{\""seasonal\"": \""30%\""}",202026,0,"""Africa""" +2024-08-27,19084,7360,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2606.39,{},256366,1,"""South America""" +2024-04-24,19085,1008,"[\""Headphones\""]",1649.26,{},182290,0,"""South America""" +2024-04-13,19086,4819,"[\""Tablet\"", \""Phone\""]",4165.96,"{\"": \""20%\""}",95335,0,"""North America""" +2023-11-29,19087,6470,"[\""Wireless Mouse\""]",3919.41,"{\""seasonal\"": \""11%\""}",3304,1,"""North America""" +2024-06-28,19088,3352,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",723.48,{},109408,1,"""South America""" +2024-04-12,19089,3794,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3352.77,"{\""promo\"": \""5%\""}",243590,0,"""North America""" +2024-08-22,19090,2050,"[\""Keyboard\""]",2448.04,"{\""promo\"": \""16%\""}",232819,1,"""Europe""" +2023-10-04,19091,7797,"[\""Laptop\"", \""Tablet\""]",597.6,"{\"": \""16%\""}",225250,1,"""South America""" +2024-11-25,19092,4741,"[\""Keyboard\""]",133.59,"{\""promo\"": \""18%\""}",244876,0,"""Africa""" +2023-05-23,19093,7471,"[\""Monitor\""]",3809.89,{},32232,0,"""Africa""" +2024-11-28,19094,6305,"[\""Wireless Mouse\""]",2807.36,"{\""loyalty\"": \""18%\""}",274054,1,"""Europe""" +2024-01-18,19095,8466,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4686.22,"{\""seasonal\"": \""5%\""}",215590,1,"""Europe""" +2024-01-03,19096,6184,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2618.44,{},155436,0,"""South America""" +2023-08-24,19097,8113,"[\""Monitor\""]",4487.36,{},103874,1,"""South America""" +2023-02-27,19098,5375,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",534.43,{},82642,0,"""South America""" +2023-12-26,19099,9594,"[\""Headphones\""]",3505.77,"{\""seasonal\"": \""23%\""}",281060,0,"""Africa""" +2023-09-21,19100,7316,"[\""Wireless Mouse\""]",3077.19,"{\"": \""16%\""}",195425,1,"""Europe""" +2023-09-17,19101,3302,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4408.95,{},43741,1,"""Europe""" +2024-04-15,19102,8005,"[\""Phone\""]",1437.45,{},17920,1,"""North America""" +2024-02-20,19103,6836,"[\""Monitor\""]",4421.99,"{\""seasonal\"": \""24%\""}",289125,1,"""Europe""" +2023-04-21,19104,8850,"[\""Monitor\""]",4455.56,"{\""loyalty\"": \""12%\""}",245466,0,"""North America""" +2024-09-17,19105,4776,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4699.84,{},90129,0,"""Africa""" +2023-10-30,19106,2065,"[\""Charger\""]",2276.25,{},189918,1,"""Asia""" +2024-06-05,19107,834,"[\""Keyboard\"", \""Monitor\""]",2879.35,"{\"": \""11%\""}",245150,1,"""North America""" +2024-04-16,19108,4659,"[\""Keyboard\"", \""Laptop\""]",266.51,{},83042,0,"""North America""" +2023-10-12,19109,6376,"[\""Headphones\"", \""Charger\""]",1888.76,{},60546,0,"""Africa""" +2024-09-03,19110,3023,"[\""Monitor\"", \""Headphones\""]",4427.22,{},129169,0,"""North America""" +2024-08-03,19111,7383,"[\""Phone\""]",3854.35,"{\"": \""13%\""}",73985,0,"""North America""" +2024-02-10,19112,6795,"[\""Headphones\""]",2501.66,"{\"": \""22%\""}",215730,0,"""Africa""" +2023-04-04,19113,1575,"[\""Keyboard\"", \""Laptop\""]",1592.09,"{\""seasonal\"": \""16%\""}",183922,0,"""Asia""" +2023-02-11,19114,1896,"[\""Monitor\"", \""Tablet\""]",3621.05,"{\""loyalty\"": \""20%\""}",133023,1,"""Europe""" +2024-09-18,19115,4447,"[\""Charger\""]",1595.29,{},282151,0,"""Africa""" +2024-07-21,19116,6361,"[\""Wireless Mouse\""]",3187.2,"{\""loyalty\"": \""7%\""}",229774,1,"""South America""" +2024-06-09,19117,6216,"[\""Keyboard\""]",270.11,"{\""seasonal\"": \""6%\""}",138727,1,"""North America""" +2023-10-31,19118,4175,"[\""Laptop\""]",3614.08,{},175691,1,"""Africa""" +2023-11-30,19119,6106,"[\""Laptop\"", \""Phone\""]",1413.37,"{\"": \""15%\""}",201459,1,"""Asia""" +2024-02-11,19120,3194,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1154.78,{},73490,1,"""North America""" +2023-01-20,19121,750,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1973.96,{},249784,1,"""North America""" +2024-11-17,19122,1988,"[\""Headphones\"", \""Tablet\""]",4610.18,{},152076,0,"""Asia""" +2024-09-14,19123,5642,"[\""Charger\"", \""Headphones\""]",4916.66,"{\""seasonal\"": \""25%\""}",176292,1,"""Africa""" +2023-05-09,19124,455,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3018.82,{},60065,1,"""Africa""" +2023-09-20,19125,7755,"[\""Laptop\""]",4496.02,{},86334,1,"""South America""" +2023-05-03,19126,6844,"[\""Wireless Mouse\""]",714.53,"{\""seasonal\"": \""13%\""}",98144,0,"""Asia""" +2024-11-09,19127,970,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3640.77,"{\""loyalty\"": \""13%\""}",217464,1,"""South America""" +2023-05-18,19128,9650,"[\""Wireless Mouse\""]",2061.71,{},189249,0,"""Europe""" +2024-10-16,19129,9675,"[\""Keyboard\""]",1796.8,{},42942,1,"""North America""" +2023-02-25,19130,1056,"[\""Charger\"", \""Headphones\""]",4107.31,"{\""seasonal\"": \""18%\""}",109429,0,"""Africa""" +2023-03-12,19131,3727,"[\""Laptop\""]",4861.83,"{\""loyalty\"": \""14%\""}",23575,1,"""Africa""" +2023-06-26,19132,3815,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3584.91,"{\""seasonal\"": \""29%\""}",82537,0,"""Africa""" +2023-12-21,19133,381,"[\""Laptop\""]",534.9,"{\""promo\"": \""8%\""}",235595,1,"""Europe""" +2023-11-13,19134,1097,"[\""Laptop\""]",288.07,"{\""loyalty\"": \""30%\""}",161848,0,"""North America""" +2023-04-10,19135,7854,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2232.92,"{\""loyalty\"": \""14%\""}",198056,0,"""South America""" +2024-09-24,19136,3535,"[\""Tablet\"", \""Phone\""]",4047.44,{},43069,0,"""South America""" +2023-03-01,19137,8583,"[\""Tablet\"", \""Keyboard\""]",3946.0,"{\""loyalty\"": \""9%\""}",264933,1,"""Asia""" +2024-05-29,19138,769,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",951.03,"{\"": \""28%\""}",202425,1,"""Africa""" +2024-05-24,19139,1140,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1604.61,{},172034,0,"""Africa""" +2023-04-22,19140,1146,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3218.05,{},2357,0,"""Europe""" +2024-06-27,19141,521,"[\""Headphones\""]",3229.96,{},115406,1,"""Africa""" +2023-06-06,19142,6092,"[\""Keyboard\""]",3304.08,{},173630,1,"""Africa""" +2023-05-21,19143,194,"[\""Laptop\""]",425.07,{},21843,0,"""Africa""" +2024-11-01,19144,2296,"[\""Monitor\""]",1751.99,{},289142,0,"""Africa""" +2024-12-25,19145,7356,"[\""Phone\"", \""Headphones\""]",2885.54,{},257865,0,"""South America""" +2023-11-23,19146,1401,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1688.07,"{\"": \""5%\""}",126959,0,"""Africa""" +2024-05-09,19147,2099,"[\""Laptop\"", \""Tablet\""]",4642.91,{},225057,0,"""South America""" +2024-10-16,19148,6273,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3750.22,"{\"": \""15%\""}",208160,1,"""South America""" +2023-12-10,19149,347,"[\""Monitor\""]",1910.16,"{\""seasonal\"": \""5%\""}",101966,0,"""North America""" +2023-10-09,19150,6114,"[\""Monitor\"", \""Headphones\""]",2071.43,"{\"": \""7%\""}",183673,1,"""Africa""" +2023-03-01,19151,9742,"[\""Tablet\""]",1919.99,{},24729,1,"""Europe""" +2024-04-20,19152,214,"[\""Laptop\"", \""Keyboard\""]",54.88,{},228881,1,"""North America""" +2024-06-17,19153,6315,"[\""Laptop\""]",349.24,"{\"": \""25%\""}",131305,1,"""Africa""" +2024-09-08,19154,4333,"[\""Headphones\"", \""Phone\""]",529.27,"{\""promo\"": \""16%\""}",288208,1,"""Africa""" +2023-09-11,19155,1047,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1406.61,{},249261,0,"""South America""" +2023-11-24,19156,3514,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2926.62,"{\""loyalty\"": \""7%\""}",219972,1,"""Africa""" +2024-03-22,19157,3326,"[\""Tablet\"", \""Monitor\""]",165.62,{},256821,0,"""Asia""" +2024-05-01,19158,6687,"[\""Keyboard\""]",2309.7,{},126778,1,"""Asia""" +2023-06-09,19159,6588,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2823.19,"{\""seasonal\"": \""25%\""}",53441,1,"""South America""" +2023-06-15,19160,6664,"[\""Monitor\"", \""Charger\""]",1019.0,"{\""promo\"": \""14%\""}",261257,1,"""Asia""" +2023-11-11,19161,2654,"[\""Keyboard\"", \""Tablet\""]",934.53,{},92396,0,"""North America""" +2023-02-17,19162,7169,"[\""Phone\""]",3669.04,{},155786,1,"""Asia""" +2023-08-18,19163,5821,"[\""Keyboard\"", \""Headphones\""]",1797.02,"{\""seasonal\"": \""19%\""}",28506,1,"""North America""" +2024-09-25,19164,2279,"[\""Charger\"", \""Headphones\""]",242.06,{},37850,1,"""Africa""" +2023-10-07,19165,5079,"[\""Phone\""]",69.83,"{\""loyalty\"": \""17%\""}",194435,1,"""North America""" +2023-01-31,19166,743,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",650.0,"{\"": \""8%\""}",23337,0,"""South America""" +2023-04-08,19167,1413,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3383.64,"{\""loyalty\"": \""11%\""}",86186,0,"""South America""" +2023-02-11,19168,1440,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4240.81,"{\""loyalty\"": \""20%\""}",192129,1,"""Africa""" +2024-04-02,19169,5042,"[\""Headphones\""]",958.09,"{\"": \""7%\""}",295517,0,"""Europe""" +2024-12-03,19170,4683,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",953.96,"{\""promo\"": \""22%\""}",134640,0,"""Asia""" +2023-03-20,19171,6477,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2994.16,"{\""promo\"": \""8%\""}",63918,1,"""South America""" +2023-08-07,19172,6881,"[\""Charger\"", \""Tablet\""]",672.08,"{\""seasonal\"": \""9%\""}",159989,1,"""South America""" +2023-03-16,19173,2637,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4531.46,"{\""promo\"": \""9%\""}",176364,1,"""Africa""" +2023-04-28,19174,1594,"[\""Laptop\""]",2952.25,{},116481,1,"""North America""" +2023-12-20,19175,9763,"[\""Laptop\"", \""Charger\"", \""Phone\""]",347.98,"{\""promo\"": \""24%\""}",110337,1,"""Asia""" +2023-11-04,19176,2146,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4424.62,"{\""promo\"": \""28%\""}",226726,0,"""South America""" +2023-11-29,19177,2112,"[\""Charger\"", \""Phone\""]",3593.86,"{\""loyalty\"": \""24%\""}",251613,0,"""Africa""" +2024-08-02,19178,8118,"[\""Tablet\""]",2829.48,"{\"": \""15%\""}",2196,0,"""Asia""" +2023-06-29,19179,1540,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3584.36,{},79323,0,"""Europe""" +2024-02-14,19180,9471,"[\""Monitor\"", \""Tablet\""]",2737.07,{},162864,1,"""Africa""" +2024-06-17,19181,9763,"[\""Keyboard\""]",806.76,"{\"": \""29%\""}",109397,0,"""Europe""" +2024-01-10,19182,1130,"[\""Wireless Mouse\"", \""Laptop\""]",3728.02,"{\""loyalty\"": \""5%\""}",112132,0,"""South America""" +2024-06-10,19183,9697,"[\""Charger\"", \""Tablet\""]",3013.48,"{\""seasonal\"": \""27%\""}",247120,0,"""Asia""" +2024-12-04,19184,1140,"[\""Keyboard\""]",2193.37,"{\""promo\"": \""11%\""}",125299,1,"""Asia""" +2024-07-19,19185,9776,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1788.75,"{\""loyalty\"": \""19%\""}",25674,1,"""Asia""" +2024-11-20,19186,4047,"[\""Phone\""]",189.16,"{\""promo\"": \""17%\""}",5061,1,"""South America""" +2024-04-24,19187,8457,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",236.95,{},212547,1,"""Asia""" +2024-12-12,19188,4146,"[\""Keyboard\"", \""Headphones\""]",1561.13,"{\""seasonal\"": \""27%\""}",273721,1,"""North America""" +2024-07-29,19189,958,"[\""Monitor\""]",4719.8,{},229049,1,"""Europe""" +2024-05-06,19190,8662,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2280.56,{},107241,0,"""Asia""" +2023-06-23,19191,2281,"[\""Keyboard\"", \""Headphones\""]",3552.85,{},73486,0,"""Europe""" +2024-12-01,19192,4909,"[\""Keyboard\""]",767.09,"{\""promo\"": \""17%\""}",264227,0,"""Africa""" +2024-11-19,19193,2623,"[\""Headphones\"", \""Keyboard\""]",4413.0,{},150755,1,"""South America""" +2023-10-26,19194,4061,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1206.05,"{\""loyalty\"": \""17%\""}",93384,1,"""North America""" +2024-09-29,19195,9136,"[\""Tablet\""]",1806.53,"{\"": \""26%\""}",192580,1,"""North America""" +2023-04-09,19196,4688,"[\""Phone\""]",1707.23,"{\""seasonal\"": \""11%\""}",7167,1,"""North America""" +2024-08-31,19197,4689,"[\""Tablet\"", \""Laptop\""]",1428.91,{},145431,1,"""North America""" +2024-06-07,19198,7590,"[\""Monitor\""]",2187.77,"{\""loyalty\"": \""26%\""}",25000,0,"""Asia""" +2024-02-19,19199,6810,"[\""Tablet\"", \""Laptop\""]",3124.09,"{\"": \""9%\""}",39024,0,"""Asia""" +2024-06-05,19200,1756,"[\""Monitor\""]",1915.89,{},79708,1,"""Asia""" +2023-03-21,19201,2272,"[\""Headphones\"", \""Tablet\""]",4755.93,"{\""seasonal\"": \""24%\""}",263240,0,"""South America""" +2024-11-24,19202,4367,"[\""Monitor\""]",1509.98,{},98813,1,"""North America""" +2023-12-01,19203,2026,"[\""Wireless Mouse\"", \""Charger\""]",991.5,"{\""promo\"": \""26%\""}",251483,0,"""Asia""" +2024-01-27,19204,5294,"[\""Headphones\""]",1834.91,{},180372,1,"""Europe""" +2023-05-04,19205,7550,"[\""Keyboard\"", \""Wireless Mouse\""]",115.27,"{\""loyalty\"": \""12%\""}",212574,0,"""Africa""" +2024-11-16,19206,3199,"[\""Monitor\""]",4205.72,"{\""loyalty\"": \""10%\""}",277257,0,"""South America""" +2023-06-25,19207,9861,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",580.3,{},11735,0,"""South America""" +2023-10-25,19208,8478,"[\""Wireless Mouse\""]",585.74,{},285891,0,"""North America""" +2024-01-18,19209,5621,"[\""Headphones\"", \""Monitor\""]",4363.98,"{\""seasonal\"": \""13%\""}",11354,0,"""Asia""" +2024-07-17,19210,5357,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3489.05,{},254854,0,"""South America""" +2023-05-14,19211,2977,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4430.45,{},199363,0,"""Africa""" +2024-08-06,19212,4952,"[\""Keyboard\""]",1666.8,"{\"": \""29%\""}",81910,0,"""Europe""" +2024-05-20,19213,1995,"[\""Monitor\""]",4241.88,"{\"": \""29%\""}",245305,1,"""Europe""" +2024-12-29,19214,5685,"[\""Headphones\""]",2219.52,"{\""promo\"": \""14%\""}",164391,1,"""Africa""" +2024-02-10,19215,7337,"[\""Wireless Mouse\""]",2320.28,{},67786,0,"""Africa""" +2023-08-08,19216,5645,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1538.35,"{\"": \""15%\""}",103837,1,"""Africa""" +2023-04-16,19217,3861,"[\""Laptop\""]",1599.0,"{\""promo\"": \""15%\""}",98177,1,"""South America""" +2023-07-24,19218,5090,"[\""Wireless Mouse\"", \""Laptop\""]",3116.05,"{\"": \""24%\""}",192811,0,"""South America""" +2023-10-01,19219,8215,"[\""Laptop\""]",3796.67,{},130001,0,"""Europe""" +2024-08-23,19220,9349,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2743.77,{},14471,1,"""South America""" +2024-02-01,19221,3412,"[\""Wireless Mouse\""]",3700.86,{},13702,1,"""North America""" +2023-07-12,19222,7905,"[\""Headphones\""]",2537.45,"{\""promo\"": \""12%\""}",234075,1,"""Europe""" +2024-07-15,19223,531,"[\""Tablet\"", \""Headphones\""]",2433.96,{},145881,0,"""South America""" +2023-02-07,19224,6693,"[\""Laptop\"", \""Charger\""]",1899.42,"{\""seasonal\"": \""17%\""}",211116,1,"""South America""" +2024-06-19,19225,8664,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2241.43,{},100791,0,"""Europe""" +2024-08-16,19226,9807,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1162.37,{},209226,0,"""Asia""" +2024-10-11,19227,4337,"[\""Tablet\""]",1511.1,"{\""seasonal\"": \""6%\""}",236668,1,"""Asia""" +2023-03-06,19228,4906,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2666.71,{},23949,1,"""Africa""" +2023-05-26,19229,4339,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3854.03,{},214424,1,"""Asia""" +2024-03-22,19230,8566,"[\""Headphones\""]",3433.11,"{\""loyalty\"": \""7%\""}",159588,1,"""Europe""" +2024-02-10,19231,9475,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1200.23,{},49790,0,"""Asia""" +2024-04-15,19232,4890,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",261.27,{},245621,0,"""Asia""" +2024-02-02,19233,7454,"[\""Keyboard\"", \""Phone\""]",2140.82,"{\""seasonal\"": \""8%\""}",60032,0,"""Europe""" +2024-11-19,19234,5295,"[\""Charger\""]",3198.09,{},70821,0,"""Africa""" +2024-02-14,19235,1973,"[\""Tablet\""]",1807.43,"{\""loyalty\"": \""29%\""}",66439,0,"""Europe""" +2023-02-19,19236,2574,"[\""Wireless Mouse\""]",3376.23,{},25273,0,"""South America""" +2024-10-23,19237,5189,"[\""Charger\""]",4954.92,"{\""loyalty\"": \""5%\""}",275026,1,"""South America""" +2023-11-25,19238,9466,"[\""Phone\"", \""Laptop\""]",1061.15,"{\""seasonal\"": \""23%\""}",117425,1,"""Asia""" +2023-12-11,19239,5619,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1276.57,"{\"": \""12%\""}",94489,1,"""Africa""" +2023-04-25,19240,4967,"[\""Charger\""]",1057.76,"{\""loyalty\"": \""30%\""}",57957,0,"""Asia""" +2023-01-15,19241,9884,"[\""Phone\"", \""Charger\""]",866.87,{},182915,0,"""Africa""" +2023-03-10,19242,311,"[\""Wireless Mouse\""]",3533.97,{},254338,0,"""Asia""" +2023-11-02,19243,7727,"[\""Phone\"", \""Headphones\""]",3438.08,"{\""loyalty\"": \""10%\""}",2336,1,"""Africa""" +2024-07-07,19244,7171,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2121.6,{},18982,1,"""North America""" +2023-05-16,19245,6375,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",798.13,{},2251,1,"""South America""" +2023-07-14,19246,9420,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4309.78,"{\""loyalty\"": \""21%\""}",224524,1,"""Asia""" +2023-10-05,19247,2208,"[\""Phone\"", \""Tablet\""]",3140.9,{},230990,0,"""Africa""" +2024-10-03,19248,7980,"[\""Headphones\""]",3252.42,{},165028,0,"""Asia""" +2023-01-28,19249,4593,"[\""Keyboard\"", \""Laptop\""]",4191.35,"{\""seasonal\"": \""24%\""}",113633,1,"""Europe""" +2024-04-26,19250,4458,"[\""Monitor\""]",2476.85,"{\""seasonal\"": \""18%\""}",159828,1,"""Asia""" +2023-07-14,19251,4342,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1739.65,"{\""seasonal\"": \""7%\""}",53545,1,"""Europe""" +2024-04-28,19252,4232,"[\""Phone\""]",283.67,{},82785,1,"""Africa""" +2024-12-24,19253,4533,"[\""Keyboard\""]",3605.93,{},7602,1,"""Asia""" +2023-10-05,19254,1362,"[\""Headphones\"", \""Keyboard\""]",1390.24,{},6992,1,"""Europe""" +2023-11-05,19255,268,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1392.41,"{\""promo\"": \""25%\""}",118003,1,"""North America""" +2024-08-18,19256,2180,"[\""Laptop\"", \""Keyboard\""]",4826.33,{},280801,1,"""North America""" +2024-12-14,19257,110,"[\""Headphones\"", \""Wireless Mouse\""]",1086.03,{},229478,0,"""South America""" +2024-04-05,19258,6359,"[\""Charger\""]",3224.66,{},174937,0,"""Africa""" +2023-05-22,19259,8185,"[\""Charger\""]",3512.64,{},69875,1,"""South America""" +2023-10-18,19260,2694,"[\""Headphones\""]",2202.04,{},290867,1,"""South America""" +2024-01-23,19261,3915,"[\""Headphones\""]",4726.77,{},104277,1,"""Africa""" +2023-10-05,19262,4512,"[\""Phone\"", \""Tablet\""]",4759.86,"{\""promo\"": \""24%\""}",136437,0,"""Asia""" +2023-01-21,19263,2407,"[\""Keyboard\""]",1650.18,"{\""seasonal\"": \""11%\""}",259995,1,"""North America""" +2023-12-08,19264,4804,"[\""Phone\"", \""Laptop\""]",481.69,{},30082,0,"""South America""" +2023-07-10,19265,625,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",514.5,{},173509,1,"""Africa""" +2023-05-01,19266,9696,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2010.75,"{\""promo\"": \""21%\""}",32909,0,"""South America""" +2024-10-26,19267,9252,"[\""Wireless Mouse\"", \""Monitor\""]",1713.75,{},131128,1,"""Europe""" +2024-10-24,19268,3071,"[\""Charger\""]",277.75,"{\""loyalty\"": \""30%\""}",294706,1,"""Europe""" +2023-08-30,19269,5992,"[\""Wireless Mouse\""]",1698.34,"{\""promo\"": \""15%\""}",267773,0,"""Europe""" +2023-08-23,19270,4115,"[\""Phone\""]",1730.95,"{\""loyalty\"": \""16%\""}",125005,1,"""Africa""" +2024-04-25,19271,4717,"[\""Charger\""]",941.46,{},249625,1,"""Europe""" +2024-11-06,19272,3870,"[\""Keyboard\""]",4260.68,"{\""promo\"": \""7%\""}",11826,0,"""South America""" +2023-05-23,19273,780,"[\""Laptop\"", \""Tablet\""]",3753.37,{},31472,0,"""South America""" +2023-09-29,19274,3158,"[\""Keyboard\"", \""Tablet\""]",4081.88,{},89977,0,"""Asia""" +2023-10-24,19275,2526,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",643.2,"{\""loyalty\"": \""11%\""}",13153,1,"""South America""" +2023-10-09,19276,4476,"[\""Laptop\""]",2058.22,{},93269,0,"""South America""" +2023-06-05,19277,7224,"[\""Headphones\"", \""Charger\""]",356.51,{},50140,0,"""Asia""" +2023-12-27,19278,3014,"[\""Headphones\""]",1587.22,"{\"": \""6%\""}",291045,0,"""Asia""" +2024-05-03,19279,8252,"[\""Charger\""]",3963.17,{},171295,0,"""Asia""" +2024-02-26,19280,7818,"[\""Charger\"", \""Wireless Mouse\""]",4322.59,"{\""seasonal\"": \""20%\""}",109964,0,"""North America""" +2023-03-25,19281,8891,"[\""Phone\""]",4010.08,"{\""seasonal\"": \""28%\""}",225773,1,"""Asia""" +2023-05-24,19282,8415,"[\""Keyboard\"", \""Tablet\""]",4791.68,"{\""seasonal\"": \""14%\""}",13533,1,"""North America""" +2024-03-31,19283,6846,"[\""Laptop\""]",2190.76,{},260030,0,"""Africa""" +2023-08-23,19284,158,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2975.94,{},159504,1,"""South America""" +2023-07-25,19285,9091,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3706.76,"{\""seasonal\"": \""13%\""}",293923,0,"""South America""" +2024-03-03,19286,7771,"[\""Charger\""]",475.0,{},62670,1,"""North America""" +2023-03-18,19287,8451,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4122.55,{},125340,0,"""South America""" +2023-08-01,19288,2581,"[\""Tablet\"", \""Keyboard\""]",1269.58,{},251048,1,"""Africa""" +2023-03-12,19289,3061,"[\""Phone\""]",2455.31,{},176489,0,"""Africa""" +2024-07-11,19290,7305,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2442.39,{},296430,0,"""Europe""" +2023-10-14,19291,5799,"[\""Phone\""]",674.67,"{\""promo\"": \""9%\""}",127291,1,"""Europe""" +2023-01-23,19292,8625,"[\""Wireless Mouse\"", \""Phone\""]",1063.06,"{\""promo\"": \""6%\""}",90240,0,"""Asia""" +2023-06-29,19293,4228,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3724.96,{},282502,1,"""North America""" +2023-12-17,19294,6448,"[\""Laptop\"", \""Wireless Mouse\""]",3685.93,{},36408,1,"""North America""" +2023-08-09,19295,5769,"[\""Headphones\"", \""Monitor\""]",3445.26,{},3846,0,"""North America""" +2023-07-02,19296,113,"[\""Headphones\""]",1233.33,{},84500,1,"""South America""" +2024-02-04,19297,3340,"[\""Monitor\"", \""Headphones\""]",3282.81,"{\""loyalty\"": \""9%\""}",199332,0,"""Europe""" +2024-06-17,19298,8596,"[\""Phone\""]",1385.98,{},117631,1,"""South America""" +2023-12-29,19299,7247,"[\""Headphones\""]",1216.12,"{\""promo\"": \""23%\""}",62995,0,"""North America""" +2024-10-13,19300,5683,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4985.85,{},41462,0,"""Asia""" +2024-05-30,19301,4548,"[\""Tablet\"", \""Phone\""]",2838.64,"{\""loyalty\"": \""15%\""}",192735,1,"""Europe""" +2024-07-01,19302,8193,"[\""Phone\""]",995.59,{},260076,1,"""Asia""" +2023-09-15,19303,193,"[\""Tablet\"", \""Phone\""]",4231.01,"{\""loyalty\"": \""30%\""}",14582,1,"""Africa""" +2024-10-05,19304,1389,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3444.03,{},226348,0,"""South America""" +2024-09-02,19305,5376,"[\""Headphones\""]",1495.91,{},188168,0,"""North America""" +2023-10-18,19306,8851,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3099.52,{},181989,0,"""North America""" +2024-04-20,19307,402,"[\""Charger\"", \""Laptop\""]",466.13,{},124891,0,"""North America""" +2023-10-06,19308,7291,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4884.38,"{\"": \""19%\""}",201890,0,"""South America""" +2024-10-13,19309,2344,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3750.91,{},285712,0,"""Asia""" +2023-12-02,19310,8063,"[\""Monitor\"", \""Headphones\""]",3125.16,{},262084,0,"""Asia""" +2024-01-12,19311,2189,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3967.76,{},139946,1,"""Europe""" +2024-12-18,19312,6727,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1336.64,{},114944,0,"""Africa""" +2023-04-29,19313,8071,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1624.21,"{\""seasonal\"": \""19%\""}",139115,1,"""Europe""" +2023-05-05,19314,6645,"[\""Keyboard\"", \""Tablet\""]",1054.94,{},159912,0,"""South America""" +2024-09-27,19315,4183,"[\""Phone\"", \""Laptop\""]",2517.26,"{\""seasonal\"": \""25%\""}",52294,1,"""Asia""" +2024-10-17,19316,8767,"[\""Headphones\""]",2808.71,{},130889,0,"""South America""" +2024-10-13,19317,278,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3136.84,{},294682,1,"""Asia""" +2024-01-27,19318,3947,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2387.36,"{\""promo\"": \""24%\""}",102232,1,"""North America""" +2024-03-22,19319,8224,"[\""Headphones\""]",4260.98,"{\""loyalty\"": \""21%\""}",113353,1,"""North America""" +2024-05-26,19320,7409,"[\""Laptop\""]",3685.36,{},235373,0,"""Asia""" +2024-02-10,19321,4562,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3823.28,{},42134,1,"""South America""" +2024-10-28,19322,5888,"[\""Tablet\""]",4284.35,{},45788,1,"""Africa""" +2024-04-01,19323,3107,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2565.55,{},82215,1,"""Asia""" +2024-02-19,19324,9610,"[\""Headphones\""]",4981.43,{},108042,0,"""South America""" +2024-12-23,19325,7620,"[\""Charger\"", \""Phone\""]",1209.49,"{\""seasonal\"": \""18%\""}",256942,0,"""South America""" +2023-07-31,19326,5769,"[\""Charger\"", \""Laptop\""]",2825.66,{},185981,0,"""South America""" +2023-03-02,19327,2441,"[\""Laptop\""]",100.95,"{\""promo\"": \""11%\""}",86863,1,"""Europe""" +2024-04-03,19328,9834,"[\""Laptop\"", \""Phone\""]",228.68,"{\""loyalty\"": \""23%\""}",111165,0,"""North America""" +2024-12-31,19329,2417,"[\""Headphones\"", \""Phone\""]",3930.73,"{\""seasonal\"": \""19%\""}",292575,1,"""Europe""" +2023-01-30,19330,1229,"[\""Charger\"", \""Monitor\""]",1270.81,{},143309,0,"""Africa""" +2023-12-08,19331,3476,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4634.44,{},287480,0,"""Africa""" +2024-07-02,19332,9859,"[\""Monitor\"", \""Keyboard\""]",505.49,"{\""promo\"": \""8%\""}",214341,1,"""South America""" +2023-11-13,19333,82,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1297.56,{},66654,0,"""Asia""" +2024-12-14,19334,2071,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1993.88,"{\"": \""16%\""}",182876,1,"""Europe""" +2024-05-24,19335,9712,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",859.53,{},109229,0,"""Asia""" +2023-07-03,19336,8410,"[\""Phone\""]",1850.42,"{\"": \""12%\""}",254636,1,"""Asia""" +2023-12-02,19337,7065,"[\""Phone\""]",663.23,{},21057,1,"""Africa""" +2024-10-01,19338,9071,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4286.5,"{\"": \""6%\""}",67497,0,"""Asia""" +2023-11-02,19339,9336,"[\""Laptop\"", \""Phone\""]",4727.54,"{\""promo\"": \""27%\""}",64506,0,"""South America""" +2023-09-30,19340,1134,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2763.03,"{\""loyalty\"": \""5%\""}",73090,0,"""North America""" +2024-07-01,19341,911,"[\""Charger\""]",535.58,{},53873,0,"""Europe""" +2023-06-25,19342,8089,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3879.97,{},59869,0,"""Europe""" +2024-07-26,19343,4486,"[\""Headphones\"", \""Laptop\""]",1781.38,"{\"": \""13%\""}",127093,0,"""Asia""" +2023-09-17,19344,4308,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4413.22,{},194788,0,"""South America""" +2023-10-01,19345,1715,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",276.64,"{\"": \""8%\""}",145004,0,"""Africa""" +2024-01-28,19346,809,"[\""Tablet\"", \""Headphones\""]",305.88,{},21627,1,"""Europe""" +2024-08-31,19347,9669,"[\""Phone\"", \""Tablet\""]",2013.87,"{\"": \""15%\""}",271049,1,"""South America""" +2024-08-27,19348,8259,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",910.59,"{\"": \""15%\""}",51160,1,"""South America""" +2023-04-07,19349,5575,"[\""Keyboard\""]",2801.14,"{\""loyalty\"": \""12%\""}",72279,1,"""North America""" +2024-10-09,19350,301,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4094.54,{},52116,0,"""Europe""" +2023-05-14,19351,2184,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3921.61,{},158293,0,"""Europe""" +2023-01-15,19352,4114,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4023.89,"{\""promo\"": \""11%\""}",151217,0,"""North America""" +2023-12-15,19353,8998,"[\""Keyboard\"", \""Charger\""]",4778.5,"{\"": \""6%\""}",232739,1,"""South America""" +2024-06-05,19354,4622,"[\""Tablet\""]",277.73,"{\"": \""25%\""}",37248,1,"""Europe""" +2023-04-01,19355,8741,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",388.73,{},56795,0,"""Africa""" +2024-06-21,19356,5039,"[\""Charger\""]",3263.76,{},16096,0,"""North America""" +2024-01-28,19357,9833,"[\""Monitor\"", \""Laptop\""]",137.76,"{\""loyalty\"": \""19%\""}",173914,1,"""Asia""" +2023-01-03,19358,5632,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4446.87,"{\"": \""25%\""}",224659,0,"""Africa""" +2023-04-25,19359,1406,"[\""Laptop\""]",345.97,{},274556,1,"""Asia""" +2023-11-05,19360,2100,"[\""Wireless Mouse\"", \""Charger\""]",2968.22,"{\""seasonal\"": \""18%\""}",243233,1,"""Africa""" +2023-07-08,19361,6056,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3305.63,"{\""promo\"": \""22%\""}",165608,0,"""North America""" +2024-03-10,19362,6338,"[\""Tablet\""]",872.58,"{\""promo\"": \""22%\""}",48986,0,"""Africa""" +2023-02-28,19363,6974,"[\""Monitor\""]",3862.25,"{\"": \""25%\""}",289286,0,"""South America""" +2023-11-08,19364,7477,"[\""Monitor\"", \""Headphones\""]",3463.78,{},230215,0,"""South America""" +2024-02-13,19365,876,"[\""Headphones\""]",3330.29,{},199506,0,"""Europe""" +2023-12-09,19366,7209,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2389.58,{},235932,0,"""Asia""" +2024-04-07,19367,3015,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",720.1,"{\""loyalty\"": \""16%\""}",232716,0,"""Europe""" +2023-09-25,19368,5884,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",250.91,{},244674,1,"""South America""" +2024-02-16,19369,4815,"[\""Tablet\""]",2970.71,"{\""seasonal\"": \""21%\""}",178072,0,"""South America""" +2023-05-10,19370,1672,"[\""Charger\""]",1889.46,"{\"": \""20%\""}",277635,0,"""Africa""" +2023-03-04,19371,7842,"[\""Tablet\""]",1685.93,"{\""seasonal\"": \""16%\""}",185027,0,"""Africa""" +2024-01-09,19372,6480,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1853.16,"{\""promo\"": \""14%\""}",166869,1,"""Asia""" +2023-12-09,19373,8618,"[\""Monitor\"", \""Wireless Mouse\""]",1086.45,{},78339,1,"""Europe""" +2023-01-13,19374,6544,"[\""Monitor\"", \""Laptop\""]",1819.68,"{\""promo\"": \""14%\""}",183375,1,"""Africa""" +2024-12-19,19375,7244,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4535.56,"{\""loyalty\"": \""25%\""}",74641,1,"""Asia""" +2024-04-09,19376,9063,"[\""Phone\"", \""Headphones\""]",570.4,{},46569,1,"""South America""" +2023-09-14,19377,3689,"[\""Laptop\"", \""Phone\""]",3654.11,{},141039,0,"""Africa""" +2024-07-31,19378,2596,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",755.53,"{\""seasonal\"": \""11%\""}",240010,0,"""South America""" +2023-10-09,19379,943,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1047.78,"{\""loyalty\"": \""26%\""}",194951,0,"""Europe""" +2024-04-20,19380,9546,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3678.82,{},244566,0,"""Africa""" +2023-01-31,19381,2452,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2826.09,{},81614,0,"""Asia""" +2024-09-14,19382,8580,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1970.03,"{\""promo\"": \""24%\""}",218477,1,"""Asia""" +2024-04-17,19383,2974,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",303.28,"{\""promo\"": \""27%\""}",142299,0,"""Europe""" +2024-05-12,19384,1972,"[\""Monitor\""]",3043.93,"{\""promo\"": \""20%\""}",9275,0,"""North America""" +2024-08-16,19385,2145,"[\""Wireless Mouse\""]",660.9,"{\""seasonal\"": \""22%\""}",122819,1,"""Africa""" +2024-10-07,19386,7254,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4751.38,"{\""loyalty\"": \""29%\""}",38381,1,"""Asia""" +2023-04-18,19387,6581,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4940.1,{},117168,0,"""South America""" +2024-08-06,19388,4198,"[\""Tablet\"", \""Headphones\""]",2681.98,{},39374,0,"""South America""" +2023-04-07,19389,3579,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3809.18,{},10681,0,"""Africa""" +2024-01-31,19390,9665,"[\""Laptop\"", \""Keyboard\""]",1801.96,"{\""loyalty\"": \""27%\""}",141314,0,"""Asia""" +2023-10-08,19391,1258,"[\""Wireless Mouse\"", \""Phone\""]",4588.38,"{\""loyalty\"": \""10%\""}",153462,1,"""Africa""" +2023-01-23,19392,9696,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2017.38,"{\""loyalty\"": \""6%\""}",193515,1,"""Africa""" +2023-12-03,19393,7612,"[\""Charger\"", \""Headphones\""]",4047.27,{},146626,1,"""Europe""" +2023-01-19,19394,3815,"[\""Keyboard\""]",3048.05,"{\""loyalty\"": \""16%\""}",227097,1,"""North America""" +2024-01-19,19395,6863,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",191.37,{},70949,0,"""South America""" +2023-03-11,19396,71,"[\""Charger\""]",4300.85,{},296217,1,"""South America""" +2023-02-22,19397,6832,"[\""Wireless Mouse\""]",2935.07,{},9681,0,"""South America""" +2024-04-28,19398,8091,"[\""Monitor\""]",3180.91,"{\""promo\"": \""14%\""}",224048,0,"""Africa""" +2023-09-09,19399,4053,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2561.82,{},294569,0,"""South America""" +2024-04-12,19400,7983,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",103.3,"{\""loyalty\"": \""10%\""}",77707,1,"""North America""" +2023-06-30,19401,9232,"[\""Charger\"", \""Monitor\""]",1764.58,"{\""loyalty\"": \""17%\""}",148403,0,"""Africa""" +2024-08-14,19402,806,"[\""Keyboard\"", \""Laptop\""]",4490.08,{},291702,0,"""North America""" +2024-07-24,19403,8284,"[\""Monitor\"", \""Laptop\""]",1179.39,"{\""seasonal\"": \""18%\""}",91737,1,"""South America""" +2024-11-28,19404,5275,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",449.15,{},52710,1,"""North America""" +2023-01-11,19405,2996,"[\""Laptop\"", \""Keyboard\""]",4425.44,"{\""promo\"": \""6%\""}",233859,0,"""Africa""" +2024-10-02,19406,3775,"[\""Wireless Mouse\"", \""Laptop\""]",778.88,"{\""seasonal\"": \""19%\""}",107399,1,"""Europe""" +2023-05-02,19407,8124,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2069.85,"{\""promo\"": \""26%\""}",173292,1,"""North America""" +2023-08-12,19408,4016,"[\""Keyboard\""]",1943.21,"{\""promo\"": \""10%\""}",151549,0,"""Africa""" +2023-04-04,19409,6710,"[\""Monitor\"", \""Keyboard\""]",2975.59,{},249994,1,"""Europe""" +2024-11-04,19410,3509,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",171.45,"{\""promo\"": \""7%\""}",293015,1,"""South America""" +2023-09-19,19411,7548,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4890.9,"{\"": \""28%\""}",247261,1,"""North America""" +2023-10-03,19412,9614,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",574.91,"{\""loyalty\"": \""9%\""}",166056,0,"""Asia""" +2023-04-16,19413,5812,"[\""Charger\"", \""Wireless Mouse\""]",2559.22,{},108366,1,"""Africa""" +2024-07-02,19414,3213,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",972.4,{},11205,0,"""Africa""" +2023-08-18,19415,5221,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1405.58,{},49767,0,"""North America""" +2024-01-19,19416,4229,"[\""Phone\"", \""Charger\"", \""Tablet\""]",68.93,"{\"": \""9%\""}",293683,0,"""North America""" +2024-03-13,19417,7585,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4242.71,"{\"": \""11%\""}",66248,1,"""Europe""" +2024-10-30,19418,4768,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",977.83,"{\"": \""17%\""}",281058,0,"""South America""" +2024-02-11,19419,6387,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",164.71,"{\""promo\"": \""9%\""}",126137,0,"""North America""" +2024-04-23,19420,6372,"[\""Monitor\"", \""Headphones\""]",1499.63,{},256225,1,"""South America""" +2024-12-19,19421,8433,"[\""Headphones\""]",1401.99,{},175285,1,"""North America""" +2024-04-27,19422,6080,"[\""Monitor\""]",1800.85,"{\""seasonal\"": \""30%\""}",204890,1,"""Asia""" +2024-04-13,19423,2922,"[\""Headphones\"", \""Charger\""]",3229.53,{},112607,1,"""South America""" +2024-06-19,19424,6983,"[\""Laptop\""]",4085.16,"{\""seasonal\"": \""19%\""}",138775,0,"""South America""" +2024-03-14,19425,2887,"[\""Phone\""]",4451.47,{},59000,1,"""North America""" +2023-09-09,19426,1398,"[\""Charger\""]",2184.45,{},150021,0,"""Asia""" +2024-09-02,19427,7790,"[\""Headphones\""]",3881.56,{},56965,0,"""Africa""" +2024-12-31,19428,8137,"[\""Wireless Mouse\""]",603.23,{},213353,1,"""North America""" +2024-06-15,19429,2195,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4198.4,{},166245,0,"""North America""" +2023-05-25,19430,2075,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1905.35,{},162957,0,"""North America""" +2023-06-18,19431,7837,"[\""Headphones\"", \""Wireless Mouse\""]",3039.26,{},64008,1,"""Africa""" +2023-04-18,19432,3023,"[\""Keyboard\"", \""Headphones\""]",3801.81,"{\""seasonal\"": \""24%\""}",149720,0,"""North America""" +2024-02-14,19433,2454,"[\""Headphones\""]",738.36,"{\""seasonal\"": \""16%\""}",159377,1,"""North America""" +2023-06-06,19434,4686,"[\""Wireless Mouse\"", \""Keyboard\""]",2430.25,"{\""promo\"": \""28%\""}",4636,1,"""Asia""" +2024-06-10,19435,7460,"[\""Keyboard\""]",271.77,{},150806,0,"""South America""" +2024-10-01,19436,738,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2094.83,{},3780,0,"""North America""" +2023-04-28,19437,217,"[\""Charger\""]",3768.02,"{\""seasonal\"": \""14%\""}",70089,1,"""South America""" +2023-01-27,19438,7436,"[\""Headphones\""]",4866.92,"{\""seasonal\"": \""8%\""}",73047,1,"""Europe""" +2024-01-28,19439,7177,"[\""Laptop\"", \""Tablet\""]",3624.82,"{\""promo\"": \""25%\""}",111749,0,"""Asia""" +2024-03-31,19440,2202,"[\""Tablet\"", \""Monitor\""]",3200.6,{},100431,0,"""South America""" +2023-08-29,19441,2020,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2347.41,{},186213,1,"""South America""" +2024-02-14,19442,1470,"[\""Phone\""]",2689.7,"{\"": \""11%\""}",60230,0,"""Asia""" +2023-08-17,19443,9040,"[\""Tablet\""]",4218.78,"{\""loyalty\"": \""16%\""}",28595,0,"""South America""" +2023-12-20,19444,693,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",591.88,{},169826,0,"""Asia""" +2024-08-13,19445,4237,"[\""Laptop\"", \""Monitor\""]",3945.82,{},156631,0,"""Africa""" +2024-08-18,19446,7582,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3573.75,{},200158,1,"""North America""" +2023-02-01,19447,8873,"[\""Headphones\"", \""Phone\""]",471.93,"{\""promo\"": \""25%\""}",223359,1,"""Africa""" +2024-04-02,19448,3339,"[\""Tablet\"", \""Monitor\""]",3465.73,"{\""promo\"": \""17%\""}",178554,0,"""Europe""" +2023-12-23,19449,1529,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1033.02,{},93452,0,"""South America""" +2023-01-25,19450,9010,"[\""Phone\"", \""Monitor\""]",4504.93,"{\"": \""27%\""}",107926,1,"""Europe""" +2023-12-15,19451,4061,"[\""Charger\""]",4842.77,{},268793,0,"""Africa""" +2024-03-03,19452,7002,"[\""Wireless Mouse\""]",4513.0,{},87251,0,"""Europe""" +2024-08-30,19453,2920,"[\""Keyboard\""]",1545.83,{},208661,1,"""North America""" +2024-08-31,19454,5523,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3310.35,"{\""seasonal\"": \""22%\""}",87834,1,"""Asia""" +2023-11-11,19455,2872,"[\""Phone\"", \""Headphones\""]",1354.82,"{\"": \""8%\""}",96944,1,"""Africa""" +2023-08-29,19456,661,"[\""Tablet\""]",2740.81,"{\""loyalty\"": \""14%\""}",210179,0,"""South America""" +2024-01-31,19457,8883,"[\""Phone\""]",463.35,"{\"": \""19%\""}",108823,0,"""Asia""" +2023-08-13,19458,903,"[\""Monitor\""]",2346.13,{},5136,0,"""Europe""" +2024-02-14,19459,9966,"[\""Headphones\"", \""Monitor\""]",2829.48,{},197986,1,"""Africa""" +2024-03-07,19460,9011,"[\""Monitor\"", \""Charger\""]",2946.09,"{\""loyalty\"": \""23%\""}",49607,0,"""Africa""" +2024-02-22,19461,8717,"[\""Tablet\"", \""Headphones\""]",3425.59,"{\""seasonal\"": \""8%\""}",214472,0,"""Europe""" +2023-04-22,19462,7685,"[\""Phone\"", \""Wireless Mouse\""]",2264.51,{},37728,0,"""South America""" +2024-08-27,19463,4526,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",291.3,"{\""promo\"": \""17%\""}",278979,1,"""North America""" +2024-09-17,19464,6334,"[\""Phone\"", \""Tablet\""]",4529.64,"{\""promo\"": \""7%\""}",68899,0,"""Asia""" +2023-12-31,19465,1621,"[\""Tablet\""]",460.74,{},94579,1,"""Europe""" +2023-11-14,19466,2470,"[\""Charger\""]",916.81,"{\""loyalty\"": \""9%\""}",95195,1,"""North America""" +2024-06-14,19467,6360,"[\""Phone\"", \""Wireless Mouse\""]",1800.43,{},284700,1,"""Africa""" +2023-03-04,19468,5910,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2266.32,{},263193,0,"""North America""" +2023-02-21,19469,7110,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3929.43,"{\""seasonal\"": \""11%\""}",178973,1,"""South America""" +2023-05-08,19470,2213,"[\""Laptop\""]",3389.68,{},225053,0,"""Europe""" +2023-03-30,19471,8813,"[\""Headphones\"", \""Monitor\""]",1994.89,"{\""promo\"": \""28%\""}",125073,0,"""South America""" +2023-09-02,19472,2044,"[\""Laptop\"", \""Wireless Mouse\""]",2081.02,{},8192,1,"""Asia""" +2024-04-28,19473,295,"[\""Phone\""]",4456.7,{},168348,0,"""Africa""" +2024-07-25,19474,6202,"[\""Tablet\""]",1416.03,{},20372,1,"""South America""" +2023-09-04,19475,9126,"[\""Keyboard\"", \""Wireless Mouse\""]",302.76,{},230700,0,"""Africa""" +2024-02-26,19476,9248,"[\""Wireless Mouse\""]",4868.96,{},228606,1,"""South America""" +2024-06-14,19477,9167,"[\""Keyboard\""]",1130.87,"{\""loyalty\"": \""18%\""}",194517,0,"""South America""" +2023-07-29,19478,1601,"[\""Monitor\"", \""Tablet\""]",2307.01,"{\""loyalty\"": \""17%\""}",33198,0,"""South America""" +2023-12-28,19479,906,"[\""Monitor\""]",860.59,{},38367,1,"""North America""" +2024-07-11,19480,4221,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1996.67,"{\"": \""28%\""}",16010,0,"""South America""" +2023-04-08,19481,3069,"[\""Keyboard\""]",3672.99,{},203548,0,"""Europe""" +2024-01-01,19482,4721,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",157.76,"{\""loyalty\"": \""25%\""}",116510,0,"""South America""" +2023-04-06,19483,7771,"[\""Wireless Mouse\"", \""Phone\""]",526.76,{},195129,1,"""South America""" +2023-01-22,19484,7292,"[\""Laptop\""]",395.19,{},193971,1,"""Europe""" +2023-05-08,19485,736,"[\""Monitor\""]",843.47,"{\""loyalty\"": \""25%\""}",51232,1,"""South America""" +2024-02-11,19486,332,"[\""Phone\"", \""Headphones\""]",3963.33,"{\""promo\"": \""20%\""}",263287,0,"""Europe""" +2024-11-28,19487,2099,"[\""Phone\"", \""Charger\""]",2905.18,"{\"": \""5%\""}",259030,0,"""Europe""" +2023-02-28,19488,5624,"[\""Monitor\"", \""Wireless Mouse\""]",4432.14,"{\""seasonal\"": \""30%\""}",139897,0,"""North America""" +2023-11-25,19489,3744,"[\""Laptop\"", \""Keyboard\""]",460.43,{},117698,1,"""South America""" +2024-11-30,19490,5404,"[\""Laptop\"", \""Headphones\""]",3347.63,"{\""seasonal\"": \""14%\""}",148885,0,"""Asia""" +2024-05-31,19491,8259,"[\""Laptop\"", \""Phone\""]",4919.2,{},118925,1,"""Europe""" +2023-11-01,19492,9674,"[\""Headphones\"", \""Monitor\""]",4408.31,"{\"": \""5%\""}",148861,0,"""Africa""" +2024-08-12,19493,9379,"[\""Monitor\"", \""Phone\""]",416.34,{},245525,0,"""Europe""" +2023-12-21,19494,9018,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3413.83,"{\""loyalty\"": \""14%\""}",264884,1,"""Asia""" +2024-07-13,19495,1357,"[\""Wireless Mouse\""]",810.81,{},56792,0,"""Africa""" +2024-12-01,19496,2393,"[\""Headphones\""]",100.87,{},195870,1,"""North America""" +2024-04-03,19497,9930,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",819.64,{},167676,0,"""South America""" +2024-11-26,19498,1989,"[\""Phone\""]",2852.67,"{\"": \""18%\""}",227946,0,"""Europe""" +2024-03-14,19499,9991,"[\""Laptop\"", \""Wireless Mouse\""]",3360.93,"{\""loyalty\"": \""23%\""}",264756,1,"""South America""" +2023-10-13,19500,7136,"[\""Headphones\"", \""Tablet\""]",2127.24,"{\""promo\"": \""25%\""}",202347,1,"""South America""" +2023-07-16,19501,9197,"[\""Monitor\""]",550.06,{},160092,0,"""North America""" +2024-06-05,19502,5206,"[\""Wireless Mouse\"", \""Monitor\""]",3758.18,{},164727,1,"""Asia""" +2023-12-27,19503,1316,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",993.54,"{\""promo\"": \""10%\""}",238442,1,"""North America""" +2023-03-19,19504,6552,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1358.23,{},183439,1,"""Asia""" +2023-07-04,19505,5129,"[\""Wireless Mouse\""]",802.34,{},140427,1,"""Africa""" +2023-06-20,19506,429,"[\""Wireless Mouse\""]",4964.22,{},37700,1,"""Asia""" +2023-08-08,19507,6745,"[\""Tablet\""]",2079.44,"{\""loyalty\"": \""6%\""}",253705,0,"""Europe""" +2024-08-16,19508,5987,"[\""Monitor\""]",4407.01,{},212393,0,"""North America""" +2024-03-16,19509,3311,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3664.66,{},100894,0,"""South America""" +2023-11-19,19510,4977,"[\""Phone\""]",408.66,{},155297,0,"""Europe""" +2024-06-14,19511,6205,"[\""Laptop\""]",2898.72,{},57460,1,"""North America""" +2023-12-26,19512,5561,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2668.38,{},84782,0,"""Europe""" +2024-12-13,19513,8495,"[\""Tablet\"", \""Headphones\""]",2109.83,"{\""loyalty\"": \""21%\""}",106933,0,"""Africa""" +2024-09-24,19514,3413,"[\""Keyboard\"", \""Monitor\""]",1815.65,"{\""seasonal\"": \""12%\""}",262137,1,"""Europe""" +2023-11-03,19515,2236,"[\""Headphones\"", \""Phone\""]",4527.26,"{\""seasonal\"": \""23%\""}",141143,1,"""Europe""" +2024-04-06,19516,4300,"[\""Phone\"", \""Laptop\""]",4193.57,{},227016,0,"""Europe""" +2024-06-25,19517,7050,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3781.77,"{\""promo\"": \""5%\""}",89933,0,"""South America""" +2024-06-30,19518,9179,"[\""Headphones\"", \""Keyboard\""]",2069.42,"{\""loyalty\"": \""18%\""}",241671,1,"""Europe""" +2024-01-05,19519,7639,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",115.36,"{\""promo\"": \""29%\""}",23003,1,"""North America""" +2024-11-17,19520,788,"[\""Monitor\""]",2399.3,{},246536,1,"""South America""" +2024-03-05,19521,9035,"[\""Phone\"", \""Monitor\"", \""Charger\""]",464.43,"{\""loyalty\"": \""17%\""}",288807,1,"""South America""" +2024-06-27,19522,4372,"[\""Keyboard\"", \""Monitor\""]",258.1,{},277623,1,"""Europe""" +2024-12-12,19523,8039,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3472.29,{},122477,1,"""South America""" +2024-02-21,19524,3080,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1046.06,{},34910,1,"""Asia""" +2023-10-24,19525,7151,"[\""Monitor\""]",2786.49,{},174313,1,"""South America""" +2023-07-10,19526,1874,"[\""Laptop\""]",3472.17,"{\""loyalty\"": \""19%\""}",215871,1,"""Africa""" +2023-03-13,19527,5363,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",140.24,"{\""promo\"": \""20%\""}",255180,0,"""South America""" +2024-10-31,19528,7573,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",666.73,{},286270,1,"""Asia""" +2023-06-13,19529,8196,"[\""Charger\""]",3084.7,{},158976,1,"""Africa""" +2023-03-23,19530,6741,"[\""Keyboard\""]",3990.7,"{\""seasonal\"": \""20%\""}",244049,0,"""Europe""" +2024-11-20,19531,6818,"[\""Charger\""]",167.06,"{\"": \""29%\""}",234639,1,"""Europe""" +2024-01-25,19532,4781,"[\""Charger\"", \""Tablet\""]",3269.32,"{\""seasonal\"": \""12%\""}",45451,0,"""Africa""" +2024-06-02,19533,6606,"[\""Charger\""]",2287.11,"{\""loyalty\"": \""24%\""}",290806,0,"""Asia""" +2024-08-03,19534,5116,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2036.59,{},166667,0,"""Africa""" +2024-11-05,19535,3764,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3383.44,"{\""loyalty\"": \""15%\""}",143071,0,"""South America""" +2024-09-27,19536,9420,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2143.61,"{\""seasonal\"": \""24%\""}",250538,0,"""Africa""" +2024-12-14,19537,6052,"[\""Tablet\""]",3552.71,"{\""seasonal\"": \""26%\""}",88898,0,"""Europe""" +2024-03-08,19538,1422,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3876.16,{},230108,1,"""Africa""" +2024-07-29,19539,138,"[\""Wireless Mouse\"", \""Charger\""]",176.65,{},188548,1,"""South America""" +2023-12-25,19540,4718,"[\""Headphones\""]",3367.45,"{\"": \""6%\""}",271470,1,"""North America""" +2023-05-05,19541,8717,"[\""Laptop\""]",1105.54,{},13442,1,"""Asia""" +2023-09-01,19542,6540,"[\""Monitor\"", \""Laptop\""]",4611.02,"{\""seasonal\"": \""16%\""}",25273,1,"""Africa""" +2023-07-08,19543,3459,"[\""Wireless Mouse\"", \""Charger\""]",4561.85,{},186343,0,"""North America""" +2023-10-07,19544,5,"[\""Headphones\""]",4292.01,"{\"": \""6%\""}",64566,1,"""South America""" +2024-02-15,19545,8589,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",449.64,{},242457,0,"""South America""" +2024-10-16,19546,8324,"[\""Headphones\""]",1742.71,"{\""loyalty\"": \""30%\""}",68696,1,"""Africa""" +2023-06-10,19547,513,"[\""Headphones\"", \""Phone\""]",3588.55,"{\""promo\"": \""17%\""}",251597,0,"""Europe""" +2023-05-26,19548,3664,"[\""Tablet\""]",2105.83,{},203186,0,"""Africa""" +2024-08-25,19549,6256,"[\""Wireless Mouse\"", \""Monitor\""]",3606.87,"{\""promo\"": \""5%\""}",64219,0,"""Africa""" +2023-12-09,19550,5048,"[\""Headphones\""]",1711.9,"{\""promo\"": \""22%\""}",53374,0,"""North America""" +2024-01-05,19551,4356,"[\""Headphones\"", \""Wireless Mouse\""]",4786.72,"{\""seasonal\"": \""13%\""}",227557,0,"""Africa""" +2024-12-26,19552,40,"[\""Charger\"", \""Laptop\""]",2500.66,{},294637,0,"""Africa""" +2024-02-24,19553,7160,"[\""Headphones\""]",3446.62,"{\""promo\"": \""19%\""}",105625,0,"""North America""" +2024-03-21,19554,2792,"[\""Keyboard\""]",2916.89,"{\""seasonal\"": \""10%\""}",200686,0,"""North America""" +2024-10-06,19555,7820,"[\""Keyboard\"", \""Phone\""]",1031.99,"{\""loyalty\"": \""14%\""}",139766,1,"""Europe""" +2023-05-30,19556,1138,"[\""Headphones\"", \""Wireless Mouse\""]",3936.17,"{\""loyalty\"": \""12%\""}",55261,1,"""Asia""" +2024-10-31,19557,6535,"[\""Headphones\""]",2413.88,{},86864,0,"""Africa""" +2023-03-27,19558,6395,"[\""Laptop\"", \""Phone\""]",679.52,{},280419,0,"""South America""" +2024-01-11,19559,185,"[\""Wireless Mouse\""]",2472.53,{},84434,0,"""North America""" +2024-04-21,19560,6896,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4525.06,"{\""seasonal\"": \""24%\""}",2028,1,"""South America""" +2023-04-18,19561,411,"[\""Laptop\"", \""Wireless Mouse\""]",184.3,"{\""seasonal\"": \""5%\""}",44112,0,"""North America""" +2024-10-14,19562,6769,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3198.75,{},200395,1,"""Africa""" +2023-03-15,19563,5432,"[\""Headphones\""]",924.82,"{\""seasonal\"": \""11%\""}",150666,1,"""Africa""" +2024-02-20,19564,4711,"[\""Laptop\""]",440.57,{},25087,0,"""South America""" +2024-01-25,19565,3192,"[\""Charger\"", \""Wireless Mouse\""]",4617.04,{},56380,1,"""North America""" +2024-03-15,19566,4561,"[\""Phone\""]",3140.01,"{\""loyalty\"": \""6%\""}",185428,1,"""South America""" +2024-02-12,19567,220,"[\""Keyboard\"", \""Headphones\""]",2435.77,"{\""promo\"": \""12%\""}",86755,0,"""Africa""" +2023-11-04,19568,5995,"[\""Tablet\"", \""Wireless Mouse\""]",2368.85,{},254544,1,"""Europe""" +2023-11-26,19569,503,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2862.67,{},251251,0,"""Europe""" +2023-09-29,19570,2667,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1554.19,{},266193,0,"""Europe""" +2023-02-25,19571,1135,"[\""Tablet\""]",515.43,{},33514,1,"""Asia""" +2024-05-17,19572,4800,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4699.2,"{\"": \""19%\""}",53646,1,"""Africa""" +2024-03-07,19573,196,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",844.75,"{\""seasonal\"": \""5%\""}",61097,0,"""North America""" +2024-10-07,19574,2051,"[\""Wireless Mouse\"", \""Phone\""]",3934.48,{},1963,1,"""North America""" +2023-08-11,19575,9227,"[\""Charger\"", \""Keyboard\""]",2645.91,"{\"": \""30%\""}",35157,0,"""Asia""" +2023-09-23,19576,3963,"[\""Tablet\"", \""Headphones\""]",2824.43,"{\""seasonal\"": \""7%\""}",117824,1,"""Europe""" +2023-08-03,19577,4915,"[\""Keyboard\"", \""Tablet\""]",1142.99,{},57833,1,"""North America""" +2023-03-26,19578,7500,"[\""Tablet\"", \""Phone\""]",1529.25,{},284192,0,"""Asia""" +2023-01-19,19579,9605,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4659.2,"{\"": \""25%\""}",257400,0,"""Africa""" +2024-07-18,19580,3977,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3161.07,{},36565,1,"""Africa""" +2023-07-19,19581,1203,"[\""Keyboard\""]",269.65,"{\""promo\"": \""16%\""}",255972,1,"""North America""" +2024-09-11,19582,1953,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4656.7,{},5668,1,"""South America""" +2024-12-13,19583,3325,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4733.61,{},72495,0,"""Asia""" +2023-06-24,19584,9002,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3177.08,"{\""seasonal\"": \""29%\""}",81454,0,"""Europe""" +2024-11-09,19585,378,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",811.71,"{\""seasonal\"": \""20%\""}",200199,0,"""North America""" +2023-09-27,19586,1279,"[\""Phone\""]",131.44,"{\"": \""6%\""}",297279,1,"""Asia""" +2023-05-21,19587,2815,"[\""Laptop\"", \""Headphones\""]",2950.62,"{\""promo\"": \""11%\""}",19623,0,"""South America""" +2023-05-19,19588,2236,"[\""Laptop\""]",814.73,"{\""loyalty\"": \""24%\""}",137998,0,"""Europe""" +2023-05-25,19589,3776,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1072.6,{},246471,1,"""Asia""" +2023-05-01,19590,1566,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4946.99,"{\""promo\"": \""28%\""}",172202,0,"""Africa""" +2023-05-23,19591,3922,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2044.48,"{\"": \""10%\""}",283410,1,"""Asia""" +2024-10-10,19592,7549,"[\""Monitor\"", \""Headphones\""]",1075.56,{},149224,0,"""Europe""" +2024-09-11,19593,2604,"[\""Tablet\""]",1665.21,"{\""promo\"": \""30%\""}",278117,0,"""Europe""" +2023-01-17,19594,7512,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1845.47,"{\""loyalty\"": \""14%\""}",253614,1,"""Asia""" +2023-11-23,19595,4223,"[\""Headphones\"", \""Monitor\""]",3383.05,"{\""promo\"": \""24%\""}",279535,1,"""Asia""" +2023-10-08,19596,3166,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1954.74,{},52758,0,"""Europe""" +2023-03-15,19597,5715,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3719.23,{},49620,1,"""Europe""" +2024-10-20,19598,1394,"[\""Laptop\"", \""Wireless Mouse\""]",1043.56,{},104916,1,"""South America""" +2023-03-28,19599,4371,"[\""Wireless Mouse\"", \""Headphones\""]",4163.5,{},297528,0,"""South America""" +2023-08-30,19600,4434,"[\""Charger\"", \""Headphones\""]",936.44,"{\""loyalty\"": \""19%\""}",293423,0,"""Africa""" +2024-05-11,19601,990,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4755.47,"{\""seasonal\"": \""8%\""}",282486,0,"""Africa""" +2023-04-07,19602,7938,"[\""Charger\""]",1318.25,"{\"": \""23%\""}",192997,1,"""Africa""" +2023-08-10,19603,7482,"[\""Headphones\"", \""Monitor\""]",268.78,{},50236,1,"""Africa""" +2024-07-24,19604,4414,"[\""Charger\""]",3016.46,{},141909,1,"""Europe""" +2024-02-11,19605,5643,"[\""Phone\""]",2330.01,"{\""promo\"": \""23%\""}",7991,0,"""Asia""" +2023-11-27,19606,3519,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2619.18,"{\""seasonal\"": \""21%\""}",229633,1,"""South America""" +2023-07-01,19607,6135,"[\""Keyboard\"", \""Laptop\""]",2487.08,"{\""seasonal\"": \""22%\""}",164588,0,"""North America""" +2024-10-27,19608,4703,"[\""Keyboard\"", \""Wireless Mouse\""]",371.8,"{\""loyalty\"": \""11%\""}",167079,1,"""Asia""" +2024-12-15,19609,7716,"[\""Headphones\"", \""Keyboard\""]",1998.96,{},2781,0,"""Europe""" +2023-12-10,19610,3281,"[\""Tablet\""]",323.09,"{\""promo\"": \""21%\""}",157074,1,"""Asia""" +2023-09-17,19611,8455,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",618.42,{},288630,1,"""Asia""" +2023-02-11,19612,2880,"[\""Tablet\"", \""Keyboard\""]",3702.19,"{\""loyalty\"": \""5%\""}",214117,1,"""Europe""" +2024-08-27,19613,9991,"[\""Monitor\"", \""Wireless Mouse\""]",2236.46,{},137681,0,"""South America""" +2023-08-04,19614,649,"[\""Headphones\""]",2970.52,"{\""seasonal\"": \""21%\""}",223645,1,"""Asia""" +2024-04-22,19615,873,"[\""Charger\"", \""Phone\""]",2002.99,{},173200,1,"""South America""" +2023-11-03,19616,5839,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3878.44,"{\"": \""18%\""}",182010,1,"""South America""" +2023-03-25,19617,4041,"[\""Headphones\""]",4738.73,"{\"": \""7%\""}",10010,1,"""Africa""" +2023-11-04,19618,2191,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1771.82,{},265556,0,"""Africa""" +2023-03-04,19619,2994,"[\""Tablet\""]",2593.73,"{\""promo\"": \""19%\""}",108800,0,"""South America""" +2024-07-24,19620,3090,"[\""Laptop\"", \""Phone\""]",1654.83,"{\""seasonal\"": \""13%\""}",221469,1,"""Europe""" +2023-01-05,19621,51,"[\""Charger\""]",1100.99,"{\"": \""6%\""}",217049,1,"""South America""" +2023-11-05,19622,2236,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3975.66,"{\"": \""12%\""}",23633,0,"""Asia""" +2023-10-31,19623,3774,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",520.72,"{\""promo\"": \""26%\""}",27296,0,"""North America""" +2024-12-03,19624,6631,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",628.32,"{\"": \""18%\""}",7958,1,"""South America""" +2023-03-21,19625,2526,"[\""Keyboard\""]",3094.23,"{\"": \""22%\""}",46628,0,"""Europe""" +2023-10-27,19626,8264,"[\""Tablet\"", \""Charger\""]",1134.42,{},282671,0,"""Asia""" +2024-02-23,19627,853,"[\""Wireless Mouse\""]",2696.26,{},60620,1,"""Asia""" +2024-03-10,19628,2836,"[\""Charger\""]",766.04,"{\""loyalty\"": \""21%\""}",70421,1,"""North America""" +2024-06-20,19629,515,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2680.78,"{\"": \""21%\""}",271541,0,"""South America""" +2023-11-27,19630,7871,"[\""Keyboard\""]",611.92,{},278333,1,"""North America""" +2023-08-29,19631,8173,"[\""Wireless Mouse\""]",3378.6,{},233264,1,"""Asia""" +2024-07-09,19632,5822,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1776.52,"{\""loyalty\"": \""25%\""}",50558,0,"""Europe""" +2024-02-10,19633,2534,"[\""Charger\""]",4070.82,{},5165,1,"""Africa""" +2024-01-20,19634,5231,"[\""Phone\""]",3830.7,"{\""loyalty\"": \""22%\""}",186958,1,"""South America""" +2024-10-21,19635,399,"[\""Keyboard\"", \""Laptop\""]",4684.36,{},297019,0,"""North America""" +2023-01-07,19636,2189,"[\""Headphones\"", \""Tablet\""]",3278.18,{},19362,0,"""Europe""" +2023-11-09,19637,446,"[\""Charger\""]",900.78,"{\"": \""18%\""}",15803,1,"""Asia""" +2023-03-23,19638,1569,"[\""Charger\""]",2006.21,"{\"": \""29%\""}",89405,0,"""Asia""" +2024-01-04,19639,2004,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3692.26,"{\"": \""18%\""}",215254,1,"""Europe""" +2024-09-02,19640,6547,"[\""Headphones\"", \""Keyboard\""]",4005.7,{},122252,0,"""Africa""" +2024-03-25,19641,3454,"[\""Charger\""]",1276.91,"{\""promo\"": \""5%\""}",263840,0,"""Asia""" +2024-11-30,19642,8765,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1290.97,"{\"": \""6%\""}",297314,1,"""North America""" +2023-08-28,19643,994,"[\""Wireless Mouse\"", \""Keyboard\""]",3305.1,{},138430,0,"""Europe""" +2024-09-11,19644,7496,"[\""Headphones\"", \""Laptop\""]",2655.35,"{\""seasonal\"": \""30%\""}",98155,0,"""North America""" +2023-06-23,19645,5134,"[\""Headphones\""]",3580.1,{},164107,0,"""North America""" +2023-06-04,19646,2242,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1785.14,{},56627,1,"""Asia""" +2024-11-27,19647,9852,"[\""Keyboard\"", \""Headphones\""]",4263.5,"{\""loyalty\"": \""18%\""}",154261,1,"""South America""" +2024-11-14,19648,4969,"[\""Laptop\"", \""Keyboard\""]",2325.35,{},237758,0,"""Africa""" +2024-04-22,19649,6687,"[\""Wireless Mouse\""]",890.49,"{\"": \""26%\""}",103548,0,"""Africa""" +2023-01-08,19650,4440,"[\""Monitor\""]",4622.44,{},53677,0,"""South America""" +2023-11-07,19651,9380,"[\""Wireless Mouse\"", \""Laptop\""]",2303.43,{},25127,1,"""North America""" +2023-01-07,19652,5357,"[\""Headphones\"", \""Tablet\""]",272.0,{},95717,0,"""Europe""" +2023-12-28,19653,3959,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4573.77,{},14042,1,"""Europe""" +2023-11-10,19654,4421,"[\""Charger\"", \""Wireless Mouse\""]",3880.33,"{\""loyalty\"": \""17%\""}",82231,0,"""South America""" +2023-09-02,19655,6533,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4776.62,"{\""loyalty\"": \""28%\""}",286954,1,"""South America""" +2024-12-03,19656,1279,"[\""Tablet\""]",2261.12,{},180998,1,"""Europe""" +2024-05-17,19657,6441,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2544.1,{},177390,1,"""Africa""" +2024-05-12,19658,4718,"[\""Laptop\"", \""Keyboard\""]",3424.17,"{\""seasonal\"": \""28%\""}",202711,0,"""Asia""" +2023-04-11,19659,8255,"[\""Laptop\"", \""Wireless Mouse\""]",2586.96,{},188786,0,"""South America""" +2023-02-11,19660,5301,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",213.74,"{\""loyalty\"": \""19%\""}",277007,1,"""South America""" +2024-07-13,19661,6459,"[\""Headphones\"", \""Tablet\""]",3063.88,"{\""seasonal\"": \""28%\""}",277986,0,"""North America""" +2024-04-05,19662,2772,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3902.42,"{\""loyalty\"": \""19%\""}",70252,1,"""Asia""" +2024-06-29,19663,7327,"[\""Wireless Mouse\"", \""Charger\""]",2797.77,{},271020,1,"""Europe""" +2024-11-18,19664,4722,"[\""Charger\""]",1282.44,"{\""promo\"": \""16%\""}",70939,0,"""North America""" +2023-08-02,19665,5295,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3964.99,"{\""loyalty\"": \""25%\""}",223400,1,"""Europe""" +2024-01-22,19666,7998,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3234.43,"{\"": \""15%\""}",55918,1,"""Asia""" +2023-08-10,19667,376,"[\""Phone\""]",3450.5,"{\"": \""9%\""}",289304,0,"""Europe""" +2023-03-21,19668,3410,"[\""Phone\""]",1812.32,{},218218,1,"""North America""" +2023-08-10,19669,788,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",347.38,{},8617,0,"""Africa""" +2024-10-16,19670,8627,"[\""Charger\""]",4715.03,"{\"": \""19%\""}",94686,1,"""Africa""" +2023-11-05,19671,48,"[\""Phone\""]",804.14,{},245440,0,"""Europe""" +2024-10-23,19672,2118,"[\""Tablet\""]",2429.74,{},156467,0,"""South America""" +2024-12-20,19673,1830,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3344.35,{},36554,1,"""North America""" +2023-03-03,19674,2480,"[\""Keyboard\"", \""Phone\""]",2559.21,"{\""seasonal\"": \""16%\""}",294167,1,"""South America""" +2024-11-14,19675,98,"[\""Laptop\""]",2543.18,"{\"": \""10%\""}",241785,1,"""South America""" +2023-06-08,19676,2571,"[\""Wireless Mouse\""]",4065.15,"{\""promo\"": \""18%\""}",149787,1,"""South America""" +2024-10-12,19677,5107,"[\""Tablet\""]",321.52,{},57086,0,"""North America""" +2024-12-11,19678,3648,"[\""Monitor\"", \""Wireless Mouse\""]",4010.81,{},272453,0,"""South America""" +2023-02-25,19679,3995,"[\""Headphones\"", \""Monitor\""]",1921.66,{},81817,1,"""South America""" +2024-03-24,19680,203,"[\""Keyboard\""]",1239.19,"{\""promo\"": \""20%\""}",205232,1,"""South America""" +2024-08-30,19681,6164,"[\""Wireless Mouse\""]",2923.65,"{\""seasonal\"": \""24%\""}",216450,1,"""Asia""" +2024-08-15,19682,7917,"[\""Wireless Mouse\""]",3760.35,{},143486,0,"""Africa""" +2023-02-20,19683,7640,"[\""Keyboard\""]",297.47,{},219811,1,"""North America""" +2024-03-28,19684,1061,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1172.2,{},221540,0,"""Europe""" +2023-02-25,19685,6455,"[\""Monitor\"", \""Wireless Mouse\""]",2771.71,{},164345,1,"""Asia""" +2024-05-26,19686,8026,"[\""Charger\""]",1038.62,{},115518,0,"""Europe""" +2023-09-12,19687,1176,"[\""Monitor\""]",1797.25,"{\""seasonal\"": \""20%\""}",132663,1,"""North America""" +2023-03-03,19688,1248,"[\""Wireless Mouse\""]",277.53,"{\""seasonal\"": \""10%\""}",89566,1,"""Asia""" +2024-10-10,19689,7152,"[\""Monitor\""]",917.88,"{\""seasonal\"": \""10%\""}",117314,1,"""Africa""" +2023-02-12,19690,8544,"[\""Phone\"", \""Keyboard\""]",524.07,{},171914,0,"""Europe""" +2024-02-24,19691,8756,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1692.17,{},241860,0,"""North America""" +2024-09-17,19692,9791,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2347.94,"{\""seasonal\"": \""29%\""}",13529,0,"""Africa""" +2024-07-09,19693,7162,"[\""Charger\""]",588.01,{},188774,1,"""Africa""" +2024-12-09,19694,3020,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1596.52,"{\""promo\"": \""20%\""}",260037,1,"""Asia""" +2024-04-17,19695,4350,"[\""Keyboard\"", \""Tablet\""]",1114.59,{},2996,1,"""South America""" +2023-07-15,19696,7297,"[\""Charger\"", \""Monitor\""]",2205.37,"{\""seasonal\"": \""25%\""}",102974,1,"""South America""" +2023-02-11,19697,9471,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3939.07,"{\""seasonal\"": \""17%\""}",120263,0,"""South America""" +2024-11-12,19698,6046,"[\""Tablet\""]",3199.93,{},10305,1,"""South America""" +2024-04-16,19699,7914,"[\""Laptop\""]",1888.01,{},174629,0,"""South America""" +2023-09-04,19700,766,"[\""Headphones\"", \""Keyboard\""]",3600.29,"{\""seasonal\"": \""20%\""}",280079,1,"""Africa""" +2023-05-30,19701,8738,"[\""Laptop\""]",836.47,"{\"": \""10%\""}",133072,1,"""North America""" +2023-06-08,19702,4108,"[\""Charger\""]",3349.87,"{\""seasonal\"": \""23%\""}",26436,0,"""Asia""" +2023-11-24,19703,9979,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3513.93,"{\""loyalty\"": \""24%\""}",237716,0,"""Africa""" +2023-06-23,19704,625,"[\""Keyboard\""]",57.02,{},200476,1,"""Africa""" +2024-02-03,19705,9375,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1542.32,{},254149,0,"""Asia""" +2023-06-04,19706,2138,"[\""Charger\"", \""Tablet\""]",895.35,"{\""loyalty\"": \""14%\""}",63093,1,"""Europe""" +2023-05-28,19707,1693,"[\""Laptop\""]",1612.5,{},261381,1,"""South America""" +2024-10-03,19708,1817,"[\""Phone\""]",4589.42,{},265119,1,"""Africa""" +2024-06-12,19709,7811,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3226.63,{},283889,1,"""Europe""" +2024-07-20,19710,6615,"[\""Charger\"", \""Phone\""]",868.85,"{\""loyalty\"": \""27%\""}",5870,0,"""Europe""" +2023-08-06,19711,7739,"[\""Tablet\"", \""Laptop\""]",1348.0,"{\""loyalty\"": \""24%\""}",10230,1,"""Europe""" +2024-11-06,19712,2028,"[\""Tablet\"", \""Monitor\""]",2610.11,{},246276,1,"""South America""" +2023-04-19,19713,2902,"[\""Headphones\"", \""Tablet\""]",4439.88,"{\""seasonal\"": \""8%\""}",67755,1,"""North America""" +2023-04-26,19714,7695,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2616.87,{},166791,1,"""Europe""" +2023-06-17,19715,2154,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3721.56,"{\""promo\"": \""8%\""}",39447,0,"""North America""" +2024-09-21,19716,5058,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2291.45,"{\""promo\"": \""27%\""}",127798,1,"""South America""" +2024-05-01,19717,9687,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2318.23,"{\""promo\"": \""22%\""}",160972,1,"""North America""" +2024-01-05,19718,5350,"[\""Keyboard\""]",4171.14,{},178832,0,"""South America""" +2024-09-02,19719,7193,"[\""Monitor\"", \""Phone\""]",3881.22,"{\""seasonal\"": \""22%\""}",171461,0,"""Africa""" +2024-03-11,19720,6590,"[\""Monitor\""]",383.12,{},102548,1,"""South America""" +2024-04-29,19721,1129,"[\""Tablet\"", \""Keyboard\""]",209.88,"{\"": \""7%\""}",98166,0,"""Asia""" +2024-07-05,19722,5975,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3399.05,{},170674,0,"""Europe""" +2023-10-15,19723,2544,"[\""Headphones\"", \""Tablet\""]",185.1,{},153772,1,"""North America""" +2024-08-18,19724,113,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4837.76,{},233564,0,"""Asia""" +2023-07-27,19725,2409,"[\""Phone\""]",2757.4,"{\""seasonal\"": \""11%\""}",200977,1,"""Europe""" +2023-01-16,19726,9421,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4405.17,{},8191,1,"""Asia""" +2024-10-10,19727,3838,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",284.46,"{\""seasonal\"": \""16%\""}",277831,0,"""Africa""" +2023-07-04,19728,3192,"[\""Headphones\""]",4217.45,"{\""promo\"": \""12%\""}",218437,1,"""Africa""" +2023-05-18,19729,4692,"[\""Charger\"", \""Laptop\""]",1315.88,"{\""seasonal\"": \""23%\""}",155395,1,"""Africa""" +2024-07-30,19730,5301,"[\""Laptop\""]",4807.48,{},299497,0,"""South America""" +2023-01-22,19731,7227,"[\""Charger\"", \""Phone\""]",4397.82,{},76460,0,"""Asia""" +2024-09-02,19732,7777,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",934.7,"{\"": \""14%\""}",76320,1,"""Europe""" +2024-12-22,19733,5192,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1157.44,"{\""loyalty\"": \""8%\""}",151835,0,"""Africa""" +2024-09-24,19734,5777,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",479.95,{},33699,1,"""Europe""" +2023-05-04,19735,4203,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1741.25,"{\""seasonal\"": \""30%\""}",84267,0,"""Africa""" +2024-04-01,19736,7031,"[\""Headphones\"", \""Laptop\""]",4549.66,{},100043,1,"""Europe""" +2023-05-06,19737,2590,"[\""Monitor\"", \""Headphones\""]",3364.98,{},249413,0,"""Asia""" +2023-12-12,19738,6342,"[\""Wireless Mouse\"", \""Tablet\""]",257.98,{},125281,1,"""Africa""" +2024-01-19,19739,2951,"[\""Monitor\"", \""Laptop\""]",3964.46,"{\""loyalty\"": \""12%\""}",215954,1,"""South America""" +2024-09-19,19740,4956,"[\""Wireless Mouse\"", \""Monitor\""]",1382.4,{},210981,0,"""North America""" +2024-01-28,19741,6373,"[\""Tablet\""]",1277.73,{},123165,1,"""North America""" +2023-10-31,19742,5076,"[\""Tablet\"", \""Wireless Mouse\""]",425.81,"{\""loyalty\"": \""7%\""}",257293,0,"""Asia""" +2023-02-01,19743,1859,"[\""Monitor\"", \""Tablet\""]",939.97,{},13579,0,"""North America""" +2024-01-16,19744,9975,"[\""Monitor\"", \""Headphones\""]",3900.04,"{\""loyalty\"": \""12%\""}",215876,0,"""Europe""" +2024-01-01,19745,2232,"[\""Tablet\"", \""Keyboard\""]",1269.59,{},35657,0,"""South America""" +2023-09-21,19746,450,"[\""Tablet\"", \""Keyboard\""]",3494.45,"{\"": \""7%\""}",142322,0,"""South America""" +2024-10-02,19747,8122,"[\""Keyboard\""]",1312.72,{},60894,0,"""Asia""" +2024-01-01,19748,3702,"[\""Tablet\""]",3521.92,{},249836,0,"""North America""" +2024-12-02,19749,3604,"[\""Keyboard\""]",56.39,"{\"": \""15%\""}",108912,1,"""North America""" +2023-04-12,19750,2712,"[\""Charger\"", \""Phone\""]",4751.33,{},51801,1,"""South America""" +2023-08-14,19751,1891,"[\""Phone\""]",4121.1,"{\"": \""19%\""}",169543,0,"""North America""" +2024-09-02,19752,9951,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2411.09,{},214268,1,"""South America""" +2024-01-25,19753,21,"[\""Headphones\""]",488.26,{},33254,0,"""Asia""" +2023-04-24,19754,7000,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2268.66,"{\""seasonal\"": \""8%\""}",291172,1,"""South America""" +2024-07-05,19755,7581,"[\""Phone\""]",3604.42,{},203938,0,"""Asia""" +2023-10-05,19756,4363,"[\""Laptop\""]",1251.75,"{\""loyalty\"": \""28%\""}",171715,0,"""Asia""" +2024-04-28,19757,6218,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3079.93,{},61056,1,"""North America""" +2024-12-19,19758,5481,"[\""Wireless Mouse\""]",4788.13,"{\""loyalty\"": \""12%\""}",92066,0,"""Europe""" +2024-05-20,19759,1240,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2596.61,{},78867,1,"""Africa""" +2023-12-23,19760,8314,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1953.43,"{\""seasonal\"": \""29%\""}",71696,1,"""Africa""" +2024-02-26,19761,4361,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2110.19,{},216048,0,"""Europe""" +2023-12-06,19762,450,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3404.93,"{\""loyalty\"": \""6%\""}",163181,1,"""North America""" +2024-03-27,19763,1802,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2132.32,{},271975,0,"""North America""" +2024-07-08,19764,4018,"[\""Keyboard\""]",1377.96,"{\""promo\"": \""12%\""}",90961,0,"""Africa""" +2023-01-17,19765,6875,"[\""Wireless Mouse\""]",4429.61,"{\""seasonal\"": \""11%\""}",240412,0,"""Africa""" +2024-08-04,19766,3085,"[\""Charger\"", \""Headphones\""]",4856.67,"{\""loyalty\"": \""25%\""}",66039,0,"""Africa""" +2024-08-06,19767,6045,"[\""Phone\""]",3057.7,"{\"": \""19%\""}",296081,1,"""South America""" +2024-02-01,19768,5807,"[\""Monitor\""]",1043.66,{},85317,1,"""North America""" +2023-05-29,19769,158,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3093.2,{},140477,1,"""Europe""" +2024-01-25,19770,3942,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3408.1,"{\""promo\"": \""26%\""}",299560,0,"""Africa""" +2023-12-10,19771,2565,"[\""Keyboard\""]",3160.15,{},213574,1,"""North America""" +2023-06-22,19772,6359,"[\""Phone\""]",1223.06,{},168630,0,"""Asia""" +2024-04-16,19773,3792,"[\""Laptop\"", \""Charger\""]",1446.08,{},52071,0,"""South America""" +2024-12-30,19774,3598,"[\""Wireless Mouse\""]",2574.01,{},12927,1,"""Europe""" +2023-10-06,19775,6067,"[\""Phone\"", \""Monitor\""]",4778.19,{},140744,0,"""Africa""" +2023-06-22,19776,3038,"[\""Wireless Mouse\"", \""Headphones\""]",557.69,{},201282,1,"""Africa""" +2023-08-23,19777,6356,"[\""Headphones\""]",2008.41,{},42328,0,"""North America""" +2024-11-07,19778,7928,"[\""Phone\""]",629.96,{},195362,0,"""Asia""" +2024-12-15,19779,7372,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3064.51,{},25444,1,"""Europe""" +2023-07-27,19780,9319,"[\""Phone\"", \""Charger\""]",4930.14,{},162653,0,"""North America""" +2024-12-29,19781,8451,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4088.58,"{\""loyalty\"": \""5%\""}",236654,0,"""Europe""" +2024-09-11,19782,4627,"[\""Monitor\""]",1899.36,"{\"": \""22%\""}",48540,0,"""Europe""" +2024-09-14,19783,1176,"[\""Wireless Mouse\"", \""Charger\""]",2068.61,"{\"": \""10%\""}",263473,0,"""South America""" +2023-08-31,19784,4331,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3205.02,{},181868,0,"""Africa""" +2024-01-15,19785,4682,"[\""Wireless Mouse\"", \""Laptop\""]",2364.68,{},92364,1,"""Africa""" +2024-12-27,19786,9320,"[\""Headphones\""]",4741.44,{},262621,0,"""Europe""" +2023-10-09,19787,8481,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",861.06,{},114569,0,"""South America""" +2023-07-12,19788,153,"[\""Laptop\"", \""Phone\""]",4709.37,{},163466,0,"""Africa""" +2023-05-30,19789,8489,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",493.87,"{\""promo\"": \""24%\""}",183563,1,"""North America""" +2023-03-22,19790,7279,"[\""Charger\"", \""Monitor\""]",1725.62,"{\""promo\"": \""20%\""}",240665,1,"""Asia""" +2023-04-11,19791,7987,"[\""Wireless Mouse\"", \""Tablet\""]",413.18,{},286500,0,"""South America""" +2023-02-05,19792,6817,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2707.13,{},35263,0,"""South America""" +2024-08-21,19793,8479,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4773.85,{},145705,0,"""North America""" +2023-02-05,19794,1253,"[\""Charger\"", \""Monitor\""]",2147.15,{},229603,0,"""North America""" +2024-05-12,19795,5707,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",429.72,{},68471,1,"""Africa""" +2024-07-11,19796,8509,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1781.37,{},118365,0,"""North America""" +2024-07-04,19797,8922,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",265.27,{},127717,1,"""North America""" +2024-05-20,19798,2782,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2239.1,{},50785,1,"""South America""" +2023-09-24,19799,1163,"[\""Keyboard\"", \""Charger\""]",2182.77,{},237780,0,"""Europe""" +2024-10-17,19800,5277,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3231.43,{},166912,0,"""North America""" +2024-02-27,19801,4759,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1848.28,{},203534,0,"""Africa""" +2023-12-20,19802,7535,"[\""Laptop\""]",3690.03,{},253842,1,"""Europe""" +2024-02-17,19803,9316,"[\""Keyboard\""]",3726.26,"{\""seasonal\"": \""10%\""}",244238,1,"""Africa""" +2024-07-02,19804,5904,"[\""Keyboard\"", \""Charger\""]",1366.68,{},168184,1,"""Europe""" +2023-09-09,19805,7117,"[\""Wireless Mouse\"", \""Keyboard\""]",399.29,"{\""promo\"": \""26%\""}",159657,1,"""North America""" +2023-09-16,19806,9214,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1810.8,"{\""seasonal\"": \""27%\""}",56040,0,"""Asia""" +2023-06-18,19807,3411,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",828.26,"{\""loyalty\"": \""28%\""}",272916,1,"""Africa""" +2023-04-14,19808,2145,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1204.25,{},166444,0,"""South America""" +2023-10-26,19809,9457,"[\""Tablet\"", \""Laptop\""]",2713.65,"{\"": \""17%\""}",87388,0,"""Europe""" +2023-03-22,19810,1089,"[\""Monitor\""]",246.88,{},28014,1,"""South America""" +2024-02-02,19811,6505,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3356.7,"{\"": \""7%\""}",257801,1,"""Europe""" +2023-10-17,19812,7204,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1622.06,{},2024,1,"""Africa""" +2024-10-20,19813,8085,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1759.36,"{\""promo\"": \""11%\""}",204072,0,"""Asia""" +2023-03-04,19814,1406,"[\""Monitor\""]",118.45,"{\""promo\"": \""6%\""}",119833,0,"""Africa""" +2024-06-17,19815,9794,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4130.44,"{\""loyalty\"": \""15%\""}",186724,1,"""South America""" +2023-05-29,19816,2027,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",55.81,"{\""seasonal\"": \""30%\""}",93850,1,"""North America""" +2023-04-27,19817,2462,"[\""Wireless Mouse\""]",4001.39,"{\""loyalty\"": \""22%\""}",209213,0,"""Africa""" +2023-09-19,19818,7478,"[\""Charger\"", \""Phone\""]",2310.74,{},231212,1,"""Africa""" +2024-09-27,19819,6360,"[\""Tablet\"", \""Charger\""]",1194.29,"{\"": \""20%\""}",13178,0,"""Africa""" +2023-07-27,19820,5647,"[\""Headphones\"", \""Phone\""]",3772.37,"{\""loyalty\"": \""20%\""}",50183,0,"""South America""" +2024-08-31,19821,2281,"[\""Tablet\""]",2336.19,{},97909,1,"""South America""" +2024-03-25,19822,1058,"[\""Headphones\""]",1453.49,"{\"": \""10%\""}",192403,0,"""North America""" +2023-01-23,19823,6856,"[\""Headphones\""]",2078.41,"{\""loyalty\"": \""28%\""}",106008,1,"""Asia""" +2023-03-07,19824,4211,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",923.29,{},48442,0,"""South America""" +2024-05-08,19825,2353,"[\""Monitor\""]",1341.76,{},291477,0,"""Asia""" +2023-11-08,19826,9480,"[\""Monitor\""]",3528.82,"{\""seasonal\"": \""30%\""}",150912,1,"""Europe""" +2023-01-03,19827,4592,"[\""Phone\""]",4169.94,"{\""seasonal\"": \""14%\""}",34207,1,"""Europe""" +2023-09-22,19828,4959,"[\""Laptop\"", \""Monitor\""]",4762.45,"{\""loyalty\"": \""11%\""}",44306,1,"""Asia""" +2024-01-04,19829,5974,"[\""Headphones\""]",4906.55,"{\""seasonal\"": \""29%\""}",228485,1,"""Africa""" +2024-02-01,19830,9134,"[\""Keyboard\""]",4430.59,"{\""loyalty\"": \""6%\""}",206244,0,"""North America""" +2024-12-04,19831,2531,"[\""Phone\""]",1367.42,{},112349,1,"""North America""" +2024-12-19,19832,1904,"[\""Phone\""]",4277.37,{},109619,1,"""North America""" +2023-05-12,19833,1,"[\""Keyboard\"", \""Wireless Mouse\""]",3772.47,"{\"": \""25%\""}",158197,1,"""Asia""" +2023-09-05,19834,4961,"[\""Phone\"", \""Laptop\""]",3297.72,"{\"": \""28%\""}",224939,0,"""North America""" +2024-01-29,19835,5182,"[\""Laptop\""]",457.96,"{\""loyalty\"": \""16%\""}",44829,0,"""Europe""" +2023-01-23,19836,7076,"[\""Monitor\""]",389.42,{},164653,1,"""Europe""" +2023-10-03,19837,7066,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2861.82,{},55122,0,"""North America""" +2023-02-11,19838,6000,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1829.54,{},274707,0,"""Europe""" +2023-11-26,19839,5583,"[\""Tablet\"", \""Phone\""]",1907.13,{},283734,1,"""Asia""" +2024-05-24,19840,1345,"[\""Laptop\"", \""Monitor\""]",693.06,{},276338,1,"""North America""" +2024-01-24,19841,5874,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",272.9,"{\""loyalty\"": \""6%\""}",232513,0,"""North America""" +2023-04-17,19842,167,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2962.24,"{\"": \""14%\""}",226382,1,"""Asia""" +2023-06-24,19843,714,"[\""Laptop\""]",4614.08,{},99817,1,"""North America""" +2023-09-28,19844,312,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3627.45,"{\""seasonal\"": \""5%\""}",10724,1,"""Africa""" +2024-10-14,19845,6223,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2300.82,"{\"": \""14%\""}",138261,0,"""Europe""" +2024-04-03,19846,9954,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3002.79,"{\"": \""10%\""}",197880,0,"""Africa""" +2024-10-24,19847,6000,"[\""Keyboard\"", \""Headphones\""]",993.25,"{\""promo\"": \""25%\""}",294724,0,"""North America""" +2024-11-09,19848,5715,"[\""Laptop\"", \""Monitor\""]",3170.72,{},276223,0,"""Africa""" +2023-07-15,19849,6543,"[\""Phone\""]",4061.61,{},189691,0,"""Asia""" +2024-05-02,19850,9731,"[\""Wireless Mouse\"", \""Laptop\""]",3396.98,"{\""seasonal\"": \""23%\""}",7149,1,"""South America""" +2024-07-21,19851,7063,"[\""Headphones\"", \""Monitor\""]",4027.55,"{\""promo\"": \""7%\""}",50951,0,"""South America""" +2023-10-11,19852,9622,"[\""Tablet\""]",4997.31,{},57288,1,"""Europe""" +2024-04-09,19853,1484,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",774.4,"{\""loyalty\"": \""7%\""}",36277,1,"""North America""" +2024-08-24,19854,2654,"[\""Phone\""]",1469.83,"{\""seasonal\"": \""26%\""}",186749,0,"""South America""" +2024-06-27,19855,9144,"[\""Charger\"", \""Wireless Mouse\""]",4061.23,{},61693,0,"""North America""" +2023-07-22,19856,224,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2168.41,"{\""seasonal\"": \""8%\""}",158138,1,"""North America""" +2023-05-11,19857,4958,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4630.82,{},98466,1,"""North America""" +2023-03-01,19858,8521,"[\""Monitor\""]",2062.01,{},268486,1,"""Europe""" +2023-02-09,19859,6220,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2939.38,{},185752,1,"""Asia""" +2024-09-07,19860,1657,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4503.52,"{\""seasonal\"": \""29%\""}",109367,0,"""Asia""" +2024-09-25,19861,5186,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",573.89,{},101803,1,"""South America""" +2024-11-01,19862,3846,"[\""Phone\""]",2071.02,"{\""seasonal\"": \""26%\""}",232284,0,"""Asia""" +2023-04-14,19863,9971,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4605.07,"{\"": \""10%\""}",181228,0,"""South America""" +2023-12-25,19864,3840,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1529.78,"{\""seasonal\"": \""12%\""}",213421,1,"""Europe""" +2023-02-17,19865,5458,"[\""Monitor\"", \""Charger\""]",2445.13,"{\""seasonal\"": \""10%\""}",194256,0,"""Africa""" +2024-11-09,19866,3044,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1135.52,"{\""seasonal\"": \""18%\""}",202637,0,"""North America""" +2023-11-25,19867,217,"[\""Headphones\"", \""Laptop\""]",1032.92,"{\""promo\"": \""18%\""}",148786,0,"""South America""" +2024-05-16,19868,7676,"[\""Monitor\""]",1758.42,{},264814,0,"""North America""" +2024-07-09,19869,6003,"[\""Phone\""]",317.76,{},172653,1,"""Africa""" +2024-05-10,19870,3480,"[\""Wireless Mouse\""]",1340.01,"{\""seasonal\"": \""27%\""}",196214,1,"""South America""" +2024-05-04,19871,9643,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3101.01,{},104133,0,"""Europe""" +2023-04-04,19872,901,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2847.27,"{\""promo\"": \""11%\""}",102849,1,"""North America""" +2024-11-10,19873,4666,"[\""Tablet\"", \""Phone\""]",4658.49,"{\""seasonal\"": \""21%\""}",281405,1,"""Africa""" +2024-09-02,19874,6325,"[\""Keyboard\""]",3352.55,{},85927,0,"""North America""" +2023-04-17,19875,3229,"[\""Charger\""]",1697.18,"{\""seasonal\"": \""10%\""}",63784,1,"""Africa""" +2024-01-17,19876,733,"[\""Tablet\"", \""Laptop\""]",131.14,{},21042,0,"""Asia""" +2023-04-27,19877,7470,"[\""Laptop\"", \""Monitor\""]",3857.33,{},230172,1,"""Europe""" +2024-03-22,19878,9529,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2630.19,"{\"": \""14%\""}",137694,1,"""Europe""" +2024-05-26,19879,7733,"[\""Keyboard\""]",904.82,{},11119,0,"""Asia""" +2023-12-11,19880,4673,"[\""Tablet\"", \""Headphones\""]",1612.43,{},174980,0,"""North America""" +2023-11-28,19881,4032,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",631.42,"{\""promo\"": \""10%\""}",9012,0,"""Asia""" +2024-11-06,19882,4887,"[\""Keyboard\"", \""Monitor\""]",929.92,"{\"": \""10%\""}",186440,1,"""Africa""" +2024-03-02,19883,5508,"[\""Phone\""]",2908.83,"{\"": \""23%\""}",89733,0,"""South America""" +2024-08-10,19884,8944,"[\""Keyboard\""]",1625.12,"{\""seasonal\"": \""6%\""}",109925,0,"""North America""" +2023-12-30,19885,8646,"[\""Laptop\""]",3844.29,"{\""loyalty\"": \""25%\""}",76684,0,"""South America""" +2023-11-08,19886,4552,"[\""Laptop\"", \""Monitor\""]",299.83,"{\""loyalty\"": \""20%\""}",107543,0,"""Europe""" +2023-06-24,19887,7044,"[\""Phone\""]",802.19,"{\""loyalty\"": \""9%\""}",241444,1,"""North America""" +2024-05-13,19888,6034,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2018.65,"{\""seasonal\"": \""15%\""}",287739,0,"""South America""" +2024-12-16,19889,7708,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",606.04,{},158628,1,"""Africa""" +2024-03-07,19890,4933,"[\""Tablet\"", \""Wireless Mouse\""]",1143.38,{},73000,1,"""South America""" +2024-10-11,19891,9155,"[\""Wireless Mouse\"", \""Monitor\""]",1918.65,"{\""promo\"": \""24%\""}",31721,1,"""South America""" +2024-03-21,19892,5660,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2997.18,{},115489,1,"""Africa""" +2024-11-19,19893,5640,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4703.81,"{\""promo\"": \""29%\""}",201140,1,"""Europe""" +2023-04-03,19894,2973,"[\""Charger\""]",4373.2,"{\""promo\"": \""8%\""}",78640,0,"""Europe""" +2024-01-12,19895,8432,"[\""Laptop\"", \""Keyboard\""]",3939.34,"{\"": \""11%\""}",181372,0,"""South America""" +2024-08-14,19896,4626,"[\""Wireless Mouse\"", \""Charger\""]",1435.43,{},18434,0,"""South America""" +2024-03-25,19897,8770,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2199.83,{},59468,1,"""Asia""" +2023-08-08,19898,4479,"[\""Laptop\"", \""Charger\""]",2397.28,"{\""seasonal\"": \""19%\""}",124135,1,"""North America""" +2023-03-12,19899,850,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3429.15,{},37559,0,"""Africa""" +2024-09-07,19900,8106,"[\""Monitor\"", \""Laptop\""]",1129.93,{},229086,0,"""South America""" +2024-04-07,19901,7241,"[\""Keyboard\""]",3209.88,"{\""loyalty\"": \""16%\""}",40329,0,"""North America""" +2024-07-30,19902,8430,"[\""Keyboard\"", \""Laptop\""]",2325.46,{},244960,1,"""Asia""" +2023-03-01,19903,4389,"[\""Wireless Mouse\"", \""Charger\""]",2053.58,{},277316,1,"""Europe""" +2024-02-02,19904,6011,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1035.58,{},159696,0,"""North America""" +2024-08-17,19905,1412,"[\""Monitor\"", \""Headphones\""]",3486.52,{},41782,1,"""Asia""" +2023-12-11,19906,1486,"[\""Keyboard\"", \""Phone\""]",4175.7,{},107064,1,"""Asia""" +2024-08-10,19907,8756,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3573.54,"{\""loyalty\"": \""7%\""}",100631,1,"""Asia""" +2023-09-24,19908,534,"[\""Keyboard\""]",2080.86,{},3481,1,"""Africa""" +2024-09-23,19909,9485,"[\""Keyboard\""]",885.52,{},297813,0,"""South America""" +2023-10-26,19910,292,"[\""Laptop\"", \""Monitor\""]",829.67,"{\""seasonal\"": \""14%\""}",187961,0,"""North America""" +2024-04-27,19911,2756,"[\""Laptop\"", \""Headphones\""]",900.43,"{\""seasonal\"": \""12%\""}",81255,1,"""Europe""" +2024-09-06,19912,3346,"[\""Monitor\"", \""Headphones\""]",2440.23,"{\""seasonal\"": \""13%\""}",225915,0,"""Asia""" +2024-08-27,19913,7220,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4852.11,{},63674,0,"""North America""" +2024-01-20,19914,2215,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2746.34,"{\""loyalty\"": \""5%\""}",55765,0,"""North America""" +2024-03-18,19915,5186,"[\""Keyboard\"", \""Charger\""]",2547.61,"{\""promo\"": \""14%\""}",58914,1,"""Europe""" +2024-06-27,19916,9393,"[\""Keyboard\""]",479.73,{},59696,1,"""Europe""" +2024-07-01,19917,3132,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3933.26,"{\""promo\"": \""13%\""}",107569,1,"""Asia""" +2024-11-25,19918,2743,"[\""Charger\"", \""Wireless Mouse\""]",1644.95,"{\""promo\"": \""10%\""}",104905,1,"""Europe""" +2024-06-14,19919,703,"[\""Phone\""]",2220.43,{},193838,1,"""South America""" +2024-08-25,19920,7889,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",285.94,{},228443,0,"""North America""" +2023-03-04,19921,1656,"[\""Keyboard\""]",271.45,{},259190,1,"""Africa""" +2023-05-06,19922,800,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1078.04,"{\""seasonal\"": \""21%\""}",281097,0,"""North America""" +2024-05-16,19923,6632,"[\""Charger\""]",1872.55,{},35049,0,"""Asia""" +2023-09-29,19924,770,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",329.38,{},97604,1,"""Europe""" +2023-03-05,19925,6122,"[\""Wireless Mouse\"", \""Keyboard\""]",4447.09,{},269482,1,"""North America""" +2023-01-30,19926,682,"[\""Keyboard\""]",2178.58,{},223966,1,"""North America""" +2024-01-27,19927,8488,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4226.0,{},100625,1,"""Asia""" +2023-03-17,19928,2988,"[\""Laptop\"", \""Headphones\""]",4598.35,"{\""loyalty\"": \""15%\""}",76847,1,"""North America""" +2023-07-05,19929,7353,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1423.64,"{\""promo\"": \""23%\""}",19430,0,"""Asia""" +2024-12-21,19930,8940,"[\""Phone\""]",1093.76,"{\"": \""13%\""}",127644,1,"""South America""" +2024-01-25,19931,4565,"[\""Headphones\"", \""Laptop\""]",2402.26,{},182446,0,"""Europe""" +2023-09-15,19932,6861,"[\""Phone\"", \""Monitor\""]",3966.94,"{\"": \""8%\""}",54401,1,"""Africa""" +2024-05-18,19933,6343,"[\""Monitor\""]",4154.82,"{\"": \""7%\""}",126681,0,"""Africa""" +2024-02-26,19934,6331,"[\""Headphones\""]",3623.6,"{\"": \""24%\""}",285940,0,"""South America""" +2023-10-13,19935,6086,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3603.53,{},205614,1,"""South America""" +2024-12-09,19936,2112,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",195.77,{},288115,1,"""Europe""" +2024-04-02,19937,8514,"[\""Wireless Mouse\"", \""Charger\""]",784.55,"{\""promo\"": \""23%\""}",54902,1,"""Asia""" +2024-11-24,19938,9039,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3406.11,"{\""promo\"": \""16%\""}",145672,0,"""South America""" +2023-08-17,19939,2904,"[\""Tablet\""]",779.53,"{\"": \""24%\""}",163421,1,"""Asia""" +2024-07-18,19940,6181,"[\""Tablet\"", \""Headphones\""]",118.83,"{\"": \""24%\""}",232978,0,"""North America""" +2023-12-16,19941,6377,"[\""Monitor\""]",3044.57,"{\""promo\"": \""26%\""}",18991,1,"""Africa""" +2023-07-11,19942,2947,"[\""Headphones\""]",346.41,{},284718,1,"""Africa""" +2023-08-30,19943,7738,"[\""Laptop\""]",3268.71,{},110979,1,"""South America""" +2024-03-14,19944,8334,"[\""Laptop\"", \""Headphones\""]",1602.24,{},222494,0,"""Europe""" +2024-08-09,19945,4914,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4322.41,"{\""promo\"": \""17%\""}",126847,0,"""Africa""" +2024-08-19,19946,2927,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2850.12,"{\"": \""6%\""}",13567,1,"""Asia""" +2023-03-04,19947,3880,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2327.07,{},260418,1,"""Asia""" +2024-10-17,19948,2574,"[\""Charger\""]",4931.52,"{\""loyalty\"": \""23%\""}",31854,1,"""Europe""" +2023-06-24,19949,6567,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3188.81,{},167573,1,"""Asia""" +2023-08-25,19950,8605,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",420.85,{},27899,1,"""Europe""" +2023-11-14,19951,8660,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3050.35,"{\"": \""16%\""}",215897,1,"""South America""" +2024-02-13,19952,7849,"[\""Keyboard\""]",3167.7,"{\""loyalty\"": \""25%\""}",49130,0,"""Europe""" +2024-04-09,19953,7531,"[\""Laptop\"", \""Phone\""]",2116.77,"{\""loyalty\"": \""17%\""}",140663,0,"""North America""" +2023-07-28,19954,7707,"[\""Laptop\""]",1384.36,"{\""promo\"": \""11%\""}",3307,0,"""South America""" +2023-02-01,19955,3253,"[\""Tablet\""]",1813.84,"{\""promo\"": \""10%\""}",231672,1,"""North America""" +2024-01-16,19956,476,"[\""Tablet\""]",4957.9,{},295048,0,"""North America""" +2024-05-10,19957,7864,"[\""Tablet\""]",1046.73,{},170987,0,"""South America""" +2024-12-18,19958,3716,"[\""Phone\"", \""Laptop\""]",3783.78,{},142463,0,"""South America""" +2023-08-30,19959,7105,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2130.79,{},191581,1,"""South America""" +2024-11-23,19960,6950,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4442.49,{},137684,1,"""North America""" +2023-04-10,19961,1432,"[\""Tablet\""]",2178.22,{},111753,0,"""Asia""" +2023-01-01,19962,3943,"[\""Keyboard\""]",3189.37,{},71273,1,"""South America""" +2024-12-05,19963,6926,"[\""Tablet\"", \""Monitor\""]",428.42,{},33015,0,"""Africa""" +2023-06-01,19964,8286,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4674.01,{},77087,1,"""South America""" +2024-04-20,19965,3365,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",614.33,"{\""seasonal\"": \""5%\""}",70552,1,"""Europe""" +2024-03-08,19966,4836,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",120.33,{},139776,0,"""South America""" +2023-09-24,19967,4382,"[\""Keyboard\""]",4308.45,"{\""loyalty\"": \""16%\""}",31391,0,"""South America""" +2024-12-06,19968,6409,"[\""Headphones\"", \""Charger\""]",3583.66,"{\""promo\"": \""6%\""}",157104,0,"""South America""" +2024-01-20,19969,9413,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4732.95,"{\""promo\"": \""10%\""}",198417,1,"""Africa""" +2024-07-25,19970,6713,"[\""Wireless Mouse\"", \""Tablet\""]",4302.24,{},5374,1,"""Europe""" +2023-09-08,19971,3716,"[\""Wireless Mouse\""]",3304.12,"{\""promo\"": \""7%\""}",290848,0,"""Asia""" +2023-11-28,19972,7243,"[\""Tablet\"", \""Keyboard\""]",3042.4,{},204668,0,"""Asia""" +2023-10-05,19973,6705,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4520.5,"{\""loyalty\"": \""16%\""}",128252,1,"""Europe""" +2023-03-24,19974,7405,"[\""Monitor\""]",1255.54,"{\""loyalty\"": \""21%\""}",133079,0,"""South America""" +2023-01-17,19975,1755,"[\""Tablet\""]",1292.75,{},160518,0,"""North America""" +2024-12-29,19976,5330,"[\""Keyboard\""]",815.76,{},7300,1,"""Africa""" +2023-04-16,19977,5349,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3736.83,"{\""loyalty\"": \""6%\""}",143927,0,"""Europe""" +2023-12-05,19978,4171,"[\""Wireless Mouse\""]",1296.17,{},142917,1,"""South America""" +2024-06-08,19979,4316,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4531.44,{},104499,0,"""Europe""" +2023-10-15,19980,4868,"[\""Monitor\"", \""Phone\""]",746.44,{},69127,0,"""South America""" +2023-10-07,19981,8448,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",179.88,{},296222,0,"""Asia""" +2023-02-01,19982,2953,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4527.4,"{\""promo\"": \""6%\""}",63479,0,"""Asia""" +2024-11-29,19983,7256,"[\""Phone\""]",2847.35,"{\"": \""30%\""}",198569,0,"""South America""" +2023-04-01,19984,5230,"[\""Laptop\"", \""Wireless Mouse\""]",3870.87,"{\"": \""20%\""}",287022,1,"""North America""" +2024-02-18,19985,2359,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2837.63,"{\"": \""5%\""}",62310,0,"""Asia""" +2024-02-19,19986,1548,"[\""Headphones\"", \""Keyboard\""]",3469.47,{},68432,1,"""South America""" +2023-04-20,19987,462,"[\""Phone\"", \""Charger\""]",223.67,"{\""promo\"": \""26%\""}",158288,1,"""Asia""" +2023-08-17,19988,9814,"[\""Laptop\"", \""Keyboard\""]",4803.19,{},160615,0,"""South America""" +2023-04-03,19989,1084,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3749.86,"{\""promo\"": \""9%\""}",29016,0,"""Africa""" +2023-05-21,19990,3112,"[\""Laptop\""]",4265.44,{},137563,0,"""North America""" +2023-10-08,19991,9133,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1595.6,{},144497,1,"""South America""" +2023-12-08,19992,726,"[\""Keyboard\""]",3850.0,{},235131,0,"""Asia""" +2023-10-16,19993,298,"[\""Laptop\"", \""Monitor\""]",4229.85,"{\""seasonal\"": \""17%\""}",118504,1,"""South America""" +2023-09-28,19994,2108,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3891.62,"{\""loyalty\"": \""22%\""}",132761,1,"""Africa""" +2023-09-20,19995,8724,"[\""Charger\"", \""Wireless Mouse\""]",3920.5,{},127482,1,"""North America""" +2023-01-24,19996,862,"[\""Keyboard\""]",1084.82,{},85749,0,"""South America""" +2024-10-15,19997,9134,"[\""Wireless Mouse\"", \""Tablet\""]",2977.55,"{\""promo\"": \""9%\""}",105567,0,"""Asia""" +2024-01-17,19998,6491,"[\""Wireless Mouse\"", \""Keyboard\""]",3429.15,{},250705,0,"""Africa""" +2024-02-13,19999,276,"[\""Tablet\"", \""Keyboard\""]",290.81,{},299164,1,"""South America""" +2023-06-27,20000,742,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4557.33,{},11216,0,"""North America""" +2023-02-19,20001,8709,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4746.91,{},263543,1,"""Asia""" +2024-07-29,20002,107,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1489.01,"{\""promo\"": \""19%\""}",187827,0,"""Asia""" +2024-01-04,20003,9974,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1592.53,{},11437,1,"""South America""" +2024-05-06,20004,6777,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4914.44,{},282573,0,"""Asia""" +2024-10-22,20005,3528,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2127.44,"{\""seasonal\"": \""10%\""}",78620,0,"""South America""" +2024-09-29,20006,5700,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4146.75,"{\""seasonal\"": \""11%\""}",270051,0,"""Europe""" +2023-12-14,20007,4186,"[\""Monitor\""]",4177.07,{},54045,0,"""Europe""" +2023-01-31,20008,3725,"[\""Phone\""]",2542.46,{},118896,1,"""South America""" +2024-12-24,20009,7797,"[\""Laptop\""]",3983.46,"{\""seasonal\"": \""26%\""}",274769,0,"""Asia""" +2023-11-20,20010,6511,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2379.55,"{\"": \""27%\""}",68082,1,"""North America""" +2023-04-28,20011,3232,"[\""Tablet\"", \""Laptop\""]",2196.96,{},218669,0,"""Asia""" +2024-10-12,20012,5604,"[\""Wireless Mouse\""]",4749.83,"{\""promo\"": \""12%\""}",30361,1,"""Europe""" +2024-02-17,20013,2996,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2770.92,{},74723,1,"""Africa""" +2024-11-23,20014,8046,"[\""Monitor\"", \""Keyboard\""]",3938.32,"{\""seasonal\"": \""5%\""}",239679,1,"""Africa""" +2024-10-13,20015,4434,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1192.57,{},123231,1,"""South America""" +2023-07-07,20016,1575,"[\""Tablet\"", \""Keyboard\""]",3998.3,{},152143,1,"""South America""" +2024-06-26,20017,4931,"[\""Headphones\""]",143.75,"{\""promo\"": \""19%\""}",255649,0,"""Asia""" +2024-08-11,20018,1338,"[\""Monitor\"", \""Wireless Mouse\""]",515.67,{},176509,0,"""Asia""" +2023-11-21,20019,5680,"[\""Wireless Mouse\""]",2394.74,"{\""seasonal\"": \""19%\""}",167383,1,"""Africa""" +2023-04-07,20020,1678,"[\""Charger\""]",2248.61,{},280732,1,"""Africa""" +2023-03-10,20021,3448,"[\""Headphones\"", \""Tablet\""]",4193.46,"{\""loyalty\"": \""23%\""}",80882,1,"""Africa""" +2024-02-27,20022,5823,"[\""Tablet\"", \""Keyboard\""]",4888.59,"{\""promo\"": \""24%\""}",77928,0,"""Africa""" +2023-03-13,20023,3905,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2849.17,{},77518,0,"""South America""" +2024-10-16,20024,9666,"[\""Laptop\"", \""Tablet\""]",1369.39,{},67893,1,"""Africa""" +2023-04-08,20025,9984,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3953.25,{},180501,0,"""Africa""" +2023-11-22,20026,2767,"[\""Charger\"", \""Monitor\""]",4142.74,{},231526,1,"""North America""" +2023-08-27,20027,9654,"[\""Wireless Mouse\"", \""Charger\""]",2017.49,"{\"": \""14%\""}",191395,1,"""Africa""" +2023-04-24,20028,5653,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1802.6,{},6517,1,"""North America""" +2023-09-02,20029,1261,"[\""Charger\""]",4622.68,"{\"": \""20%\""}",5594,1,"""North America""" +2023-05-03,20030,4879,"[\""Keyboard\"", \""Laptop\""]",4324.93,{},9914,0,"""Asia""" +2024-05-21,20031,519,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",872.47,{},244029,1,"""Europe""" +2024-03-12,20032,790,"[\""Laptop\""]",2946.26,"{\""loyalty\"": \""21%\""}",277049,1,"""Africa""" +2023-08-30,20033,4729,"[\""Phone\""]",2331.27,"{\""promo\"": \""13%\""}",73571,1,"""Asia""" +2023-10-17,20034,5000,"[\""Phone\""]",977.1,"{\""promo\"": \""15%\""}",1948,0,"""South America""" +2023-08-08,20035,5210,"[\""Charger\""]",931.04,"{\""loyalty\"": \""22%\""}",244421,0,"""North America""" +2024-01-08,20036,872,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4201.9,{},18676,0,"""Africa""" +2023-07-25,20037,9795,"[\""Charger\""]",3646.04,"{\""loyalty\"": \""24%\""}",251537,1,"""Europe""" +2024-08-27,20038,6362,"[\""Phone\"", \""Tablet\""]",877.91,{},220886,1,"""Africa""" +2024-07-04,20039,9824,"[\""Keyboard\""]",373.22,"{\""seasonal\"": \""7%\""}",113610,0,"""South America""" +2024-02-26,20040,4943,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2777.45,"{\""promo\"": \""13%\""}",278624,0,"""South America""" +2023-08-11,20041,1600,"[\""Headphones\"", \""Wireless Mouse\""]",3103.17,{},289315,1,"""Asia""" +2024-04-11,20042,7164,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2673.31,"{\"": \""14%\""}",70565,1,"""South America""" +2024-01-12,20043,8976,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4745.36,{},293564,1,"""Europe""" +2023-10-19,20044,1003,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2042.17,{},239425,1,"""Europe""" +2024-06-13,20045,8680,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1530.59,"{\"": \""25%\""}",67714,1,"""Asia""" +2023-01-24,20046,4237,"[\""Keyboard\"", \""Phone\""]",4677.59,"{\"": \""9%\""}",23584,1,"""North America""" +2023-01-14,20047,5357,"[\""Keyboard\""]",2674.13,"{\""seasonal\"": \""26%\""}",15753,1,"""Asia""" +2024-06-06,20048,571,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",760.24,{},198436,1,"""South America""" +2024-08-13,20049,1539,"[\""Phone\"", \""Monitor\""]",2912.61,{},264450,0,"""North America""" +2023-07-05,20050,5121,"[\""Wireless Mouse\"", \""Tablet\""]",4467.75,{},185282,1,"""Africa""" +2023-05-07,20051,6317,"[\""Laptop\""]",2982.58,{},293239,0,"""South America""" +2024-08-11,20052,676,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1677.3,{},137955,1,"""North America""" +2024-12-08,20053,4065,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4971.19,"{\""loyalty\"": \""20%\""}",213038,1,"""Africa""" +2023-03-24,20054,1958,"[\""Headphones\"", \""Tablet\""]",4598.77,{},191758,0,"""Africa""" +2024-02-22,20055,2710,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2717.71,{},202379,1,"""South America""" +2023-07-28,20056,3901,"[\""Tablet\""]",865.82,{},214462,0,"""Asia""" +2023-07-28,20057,320,"[\""Charger\""]",3710.37,{},27735,0,"""Africa""" +2023-10-19,20058,136,"[\""Phone\"", \""Keyboard\""]",2407.99,"{\""loyalty\"": \""15%\""}",13241,0,"""Africa""" +2023-01-12,20059,2384,"[\""Laptop\"", \""Wireless Mouse\""]",3219.05,{},41438,0,"""North America""" +2023-01-14,20060,9604,"[\""Laptop\"", \""Wireless Mouse\""]",4933.06,"{\""seasonal\"": \""16%\""}",31711,0,"""Asia""" +2023-08-14,20061,4375,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4015.0,{},186002,0,"""Asia""" +2024-11-04,20062,5344,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4302.66,"{\"": \""15%\""}",133679,1,"""North America""" +2023-03-20,20063,6931,"[\""Monitor\""]",313.54,"{\""loyalty\"": \""21%\""}",85243,0,"""North America""" +2023-06-13,20064,1127,"[\""Wireless Mouse\"", \""Laptop\""]",182.19,{},62029,1,"""Asia""" +2023-12-08,20065,2707,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1573.64,{},291059,1,"""Africa""" +2024-07-12,20066,208,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",594.94,"{\""loyalty\"": \""16%\""}",14137,1,"""Africa""" +2024-06-29,20067,6433,"[\""Headphones\""]",4541.28,"{\""loyalty\"": \""21%\""}",273382,1,"""North America""" +2023-08-05,20068,8935,"[\""Phone\"", \""Charger\"", \""Headphones\""]",960.47,{},178514,1,"""Europe""" +2023-03-30,20069,925,"[\""Keyboard\""]",4045.27,"{\"": \""29%\""}",234263,0,"""Asia""" +2023-03-27,20070,6929,"[\""Wireless Mouse\"", \""Headphones\""]",2935.0,{},97356,1,"""Europe""" +2023-03-25,20071,7663,"[\""Phone\"", \""Monitor\"", \""Charger\""]",270.4,"{\"": \""14%\""}",4512,1,"""North America""" +2024-06-23,20072,9283,"[\""Laptop\""]",588.14,"{\""promo\"": \""7%\""}",270533,1,"""Africa""" +2024-02-29,20073,8360,"[\""Wireless Mouse\"", \""Laptop\""]",1534.24,"{\""seasonal\"": \""5%\""}",99259,1,"""Europe""" +2024-07-16,20074,2314,"[\""Keyboard\"", \""Phone\""]",4722.6,{},146399,1,"""South America""" +2024-01-30,20075,6672,"[\""Wireless Mouse\""]",4127.06,{},70744,1,"""North America""" +2024-11-13,20076,3247,"[\""Laptop\"", \""Wireless Mouse\""]",4409.69,"{\""seasonal\"": \""12%\""}",264108,1,"""South America""" +2024-03-07,20077,5122,"[\""Keyboard\""]",833.24,{},139137,1,"""South America""" +2024-01-25,20078,9990,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",814.09,{},113712,0,"""Africa""" +2023-01-04,20079,9083,"[\""Phone\""]",329.99,"{\""promo\"": \""17%\""}",274477,0,"""North America""" +2024-03-29,20080,4896,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3475.26,"{\"": \""30%\""}",271814,1,"""South America""" +2024-11-07,20081,9814,"[\""Phone\""]",875.67,{},266511,0,"""South America""" +2024-05-30,20082,9597,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4108.33,"{\""promo\"": \""17%\""}",210745,0,"""Europe""" +2024-01-13,20083,4272,"[\""Laptop\"", \""Keyboard\""]",794.22,"{\"": \""5%\""}",49194,0,"""Africa""" +2024-11-06,20084,8738,"[\""Wireless Mouse\""]",861.96,"{\""loyalty\"": \""24%\""}",258834,1,"""Africa""" +2023-11-24,20085,3006,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",460.97,"{\""promo\"": \""15%\""}",286136,1,"""Africa""" +2023-12-17,20086,8625,"[\""Laptop\""]",4282.29,{},268071,1,"""South America""" +2024-02-07,20087,6829,"[\""Headphones\"", \""Wireless Mouse\""]",4833.13,"{\""loyalty\"": \""19%\""}",44940,0,"""North America""" +2024-03-10,20088,7549,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",874.33,{},69578,0,"""Africa""" +2024-04-18,20089,1900,"[\""Laptop\"", \""Keyboard\""]",4617.18,{},216173,1,"""South America""" +2023-07-14,20090,7113,"[\""Keyboard\""]",2998.56,"{\""loyalty\"": \""13%\""}",132240,1,"""Europe""" +2024-10-11,20091,2297,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1628.99,{},147721,1,"""Europe""" +2023-05-24,20092,3874,"[\""Headphones\"", \""Charger\""]",2779.66,{},132083,1,"""Africa""" +2024-12-15,20093,6406,"[\""Wireless Mouse\""]",1007.26,"{\""loyalty\"": \""18%\""}",283685,0,"""Europe""" +2024-03-12,20094,3076,"[\""Charger\""]",3075.32,"{\""seasonal\"": \""18%\""}",75186,1,"""Africa""" +2024-09-15,20095,6747,"[\""Wireless Mouse\"", \""Headphones\""]",2678.24,{},276501,1,"""South America""" +2024-06-14,20096,2481,"[\""Wireless Mouse\""]",4271.88,"{\""loyalty\"": \""22%\""}",26234,1,"""North America""" +2023-04-21,20097,4489,"[\""Wireless Mouse\"", \""Headphones\""]",3865.75,"{\""seasonal\"": \""7%\""}",254909,0,"""South America""" +2024-12-08,20098,5073,"[\""Phone\""]",2849.2,"{\""seasonal\"": \""18%\""}",202415,1,"""North America""" +2024-06-17,20099,410,"[\""Phone\""]",4461.1,"{\"": \""20%\""}",65783,0,"""Asia""" +2024-10-03,20100,8979,"[\""Headphones\""]",3174.07,{},43730,0,"""South America""" +2023-05-19,20101,7588,"[\""Charger\""]",3443.27,"{\""promo\"": \""7%\""}",74815,1,"""Europe""" +2023-03-13,20102,5017,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4814.33,"{\""promo\"": \""13%\""}",161673,1,"""South America""" +2024-02-05,20103,6976,"[\""Keyboard\"", \""Headphones\""]",238.2,{},209174,1,"""North America""" +2023-08-02,20104,653,"[\""Laptop\""]",3488.3,{},144633,1,"""Europe""" +2024-09-27,20105,2556,"[\""Headphones\""]",1170.39,{},4158,0,"""South America""" +2024-02-28,20106,1756,"[\""Charger\"", \""Phone\""]",4498.66,"{\""loyalty\"": \""5%\""}",220560,0,"""Asia""" +2024-10-06,20107,6545,"[\""Wireless Mouse\""]",1214.39,"{\""loyalty\"": \""16%\""}",80464,0,"""South America""" +2024-01-01,20108,1024,"[\""Headphones\"", \""Phone\""]",1311.76,"{\"": \""6%\""}",210158,0,"""North America""" +2024-07-01,20109,6195,"[\""Monitor\"", \""Laptop\""]",3079.19,"{\""loyalty\"": \""15%\""}",159727,1,"""Asia""" +2024-02-02,20110,3866,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2902.2,{},29814,0,"""South America""" +2023-08-26,20111,8729,"[\""Headphones\"", \""Monitor\""]",2117.51,{},100309,0,"""North America""" +2024-02-29,20112,3498,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1901.43,{},219157,1,"""South America""" +2024-02-12,20113,146,"[\""Monitor\""]",2018.68,"{\""promo\"": \""9%\""}",100545,1,"""South America""" +2024-02-03,20114,397,"[\""Laptop\""]",1018.8,{},160707,1,"""Europe""" +2023-10-07,20115,42,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3762.61,{},33463,1,"""Asia""" +2023-04-23,20116,3435,"[\""Charger\"", \""Wireless Mouse\""]",2824.32,"{\""promo\"": \""14%\""}",153405,1,"""Asia""" +2023-07-04,20117,3335,"[\""Keyboard\"", \""Charger\""]",3209.16,"{\""loyalty\"": \""19%\""}",281877,0,"""South America""" +2023-10-28,20118,3010,"[\""Tablet\""]",1592.43,"{\"": \""19%\""}",176387,1,"""Asia""" +2024-03-02,20119,4547,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3374.19,"{\""promo\"": \""21%\""}",210005,0,"""Asia""" +2023-03-06,20120,3826,"[\""Laptop\"", \""Monitor\""]",3745.43,{},243955,0,"""Asia""" +2024-10-22,20121,434,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3712.24,"{\""loyalty\"": \""7%\""}",190220,1,"""Europe""" +2023-12-08,20122,3190,"[\""Laptop\""]",2281.94,"{\""loyalty\"": \""27%\""}",76976,0,"""Asia""" +2024-07-10,20123,9345,"[\""Laptop\""]",3697.53,{},237875,1,"""North America""" +2024-02-12,20124,5446,"[\""Laptop\""]",4873.15,"{\"": \""22%\""}",69199,0,"""Europe""" +2024-10-10,20125,6930,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",274.7,"{\""loyalty\"": \""5%\""}",295546,1,"""South America""" +2024-01-09,20126,4194,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1947.43,"{\"": \""9%\""}",181207,0,"""Asia""" +2023-06-01,20127,5668,"[\""Tablet\"", \""Laptop\""]",3740.79,{},223401,0,"""Asia""" +2024-04-04,20128,8730,"[\""Charger\"", \""Laptop\""]",4210.98,{},196141,1,"""Asia""" +2023-05-08,20129,1730,"[\""Keyboard\""]",1039.08,{},192582,0,"""Asia""" +2023-06-13,20130,9296,"[\""Phone\"", \""Keyboard\""]",1709.76,"{\"": \""21%\""}",163876,1,"""South America""" +2023-08-28,20131,565,"[\""Headphones\""]",2573.94,"{\""seasonal\"": \""22%\""}",130787,1,"""North America""" +2023-11-24,20132,9368,"[\""Keyboard\"", \""Headphones\""]",173.54,"{\""seasonal\"": \""7%\""}",276470,1,"""Europe""" +2023-08-27,20133,2104,"[\""Phone\""]",4061.16,"{\""seasonal\"": \""29%\""}",33952,0,"""Africa""" +2024-10-13,20134,8508,"[\""Phone\""]",3705.63,{},64988,0,"""North America""" +2024-07-16,20135,3814,"[\""Headphones\"", \""Laptop\""]",3337.3,"{\""loyalty\"": \""5%\""}",295771,1,"""Europe""" +2024-04-05,20136,3658,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4776.42,{},161406,1,"""Africa""" +2023-06-12,20137,918,"[\""Wireless Mouse\""]",809.98,{},296153,0,"""Europe""" +2024-02-14,20138,6566,"[\""Wireless Mouse\"", \""Monitor\""]",809.08,{},289866,0,"""South America""" +2023-04-19,20139,7948,"[\""Laptop\"", \""Keyboard\""]",459.02,{},122512,0,"""South America""" +2023-10-10,20140,3245,"[\""Tablet\""]",4101.6,"{\""promo\"": \""13%\""}",286744,1,"""Africa""" +2024-09-06,20141,3472,"[\""Headphones\"", \""Laptop\""]",2544.07,"{\""promo\"": \""15%\""}",138002,0,"""Europe""" +2023-12-02,20142,9027,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2807.48,"{\""seasonal\"": \""29%\""}",75451,1,"""South America""" +2023-10-19,20143,8693,"[\""Phone\"", \""Monitor\""]",1597.88,{},294626,1,"""Africa""" +2023-07-17,20144,5443,"[\""Laptop\""]",4052.93,{},217254,0,"""North America""" +2024-10-07,20145,184,"[\""Headphones\""]",2104.53,"{\""loyalty\"": \""26%\""}",145547,0,"""North America""" +2024-04-30,20146,7479,"[\""Phone\""]",2499.17,"{\""promo\"": \""11%\""}",187771,1,"""Europe""" +2023-08-26,20147,1967,"[\""Monitor\"", \""Headphones\""]",4924.65,"{\""seasonal\"": \""10%\""}",53545,1,"""Africa""" +2024-05-06,20148,7785,"[\""Wireless Mouse\"", \""Tablet\""]",981.34,"{\""promo\"": \""12%\""}",170549,0,"""Asia""" +2024-08-12,20149,8243,"[\""Wireless Mouse\"", \""Headphones\""]",3672.47,{},284738,1,"""Asia""" +2023-01-06,20150,7462,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2243.86,{},39208,0,"""Asia""" +2023-07-18,20151,7712,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4356.75,"{\""loyalty\"": \""19%\""}",24079,0,"""North America""" +2024-11-15,20152,5860,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4387.27,"{\"": \""8%\""}",183072,0,"""South America""" +2024-05-12,20153,3508,"[\""Keyboard\""]",308.22,"{\""loyalty\"": \""18%\""}",165414,0,"""South America""" +2023-08-02,20154,7667,"[\""Tablet\"", \""Keyboard\""]",3078.16,{},175201,1,"""Europe""" +2024-08-26,20155,4421,"[\""Phone\""]",2728.79,{},173858,1,"""South America""" +2024-05-10,20156,1326,"[\""Headphones\"", \""Charger\""]",1326.69,"{\""loyalty\"": \""8%\""}",292028,1,"""South America""" +2023-03-07,20157,5035,"[\""Tablet\"", \""Wireless Mouse\""]",2868.55,"{\""seasonal\"": \""16%\""}",64862,0,"""Asia""" +2024-06-24,20158,5289,"[\""Charger\"", \""Phone\"", \""Headphones\""]",364.13,"{\""loyalty\"": \""20%\""}",290352,1,"""South America""" +2023-12-02,20159,1146,"[\""Keyboard\"", \""Wireless Mouse\""]",4518.83,"{\""loyalty\"": \""5%\""}",243803,0,"""South America""" +2024-04-07,20160,9031,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4310.58,{},68356,0,"""North America""" +2023-01-03,20161,3028,"[\""Tablet\""]",3327.37,"{\"": \""5%\""}",65793,1,"""South America""" +2023-05-09,20162,1966,"[\""Tablet\""]",796.08,"{\""loyalty\"": \""10%\""}",249799,1,"""South America""" +2024-09-01,20163,5873,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4769.09,{},108436,0,"""Africa""" +2023-04-21,20164,7331,"[\""Keyboard\""]",3526.87,{},6176,0,"""Asia""" +2023-01-20,20165,1263,"[\""Wireless Mouse\"", \""Keyboard\""]",2467.79,{},105364,1,"""Europe""" +2023-12-12,20166,7799,"[\""Tablet\"", \""Headphones\""]",3990.7,{},163887,0,"""Africa""" +2024-05-02,20167,3134,"[\""Laptop\""]",841.95,"{\""loyalty\"": \""5%\""}",105978,1,"""Europe""" +2023-04-02,20168,9235,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1349.27,{},61379,1,"""North America""" +2024-05-15,20169,6107,"[\""Keyboard\""]",2783.14,"{\"": \""14%\""}",96180,0,"""Asia""" +2023-12-31,20170,1414,"[\""Laptop\"", \""Phone\"", \""Charger\""]",234.93,"{\""loyalty\"": \""7%\""}",290360,1,"""Europe""" +2024-08-25,20171,4665,"[\""Charger\""]",2934.13,"{\""loyalty\"": \""24%\""}",42819,1,"""Africa""" +2024-12-07,20172,9524,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4911.32,"{\""seasonal\"": \""6%\""}",191111,1,"""North America""" +2024-06-25,20173,249,"[\""Wireless Mouse\""]",3436.03,"{\""loyalty\"": \""23%\""}",88502,1,"""Asia""" +2023-04-11,20174,1832,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2436.14,"{\""seasonal\"": \""15%\""}",59300,0,"""North America""" +2024-05-05,20175,7271,"[\""Monitor\"", \""Headphones\""]",3917.11,{},53763,1,"""North America""" +2023-05-09,20176,5160,"[\""Laptop\""]",4780.45,"{\""loyalty\"": \""15%\""}",276475,1,"""Asia""" +2023-04-10,20177,227,"[\""Headphones\"", \""Keyboard\""]",571.48,{},240658,1,"""South America""" +2024-06-02,20178,96,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",134.21,{},183611,0,"""Africa""" +2023-04-21,20179,189,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1490.42,"{\""promo\"": \""5%\""}",96623,0,"""Asia""" +2024-09-11,20180,5384,"[\""Monitor\"", \""Keyboard\""]",4570.46,{},161932,0,"""South America""" +2023-11-14,20181,5651,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3733.51,{},9830,0,"""North America""" +2024-11-14,20182,4429,"[\""Laptop\"", \""Monitor\""]",2426.45,{},116829,1,"""Africa""" +2024-08-11,20183,6945,"[\""Headphones\""]",2342.78,"{\"": \""26%\""}",269431,0,"""Asia""" +2024-08-29,20184,6591,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2333.94,{},85462,1,"""Asia""" +2023-06-19,20185,4811,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2950.6,"{\""promo\"": \""23%\""}",11879,0,"""Africa""" +2023-11-05,20186,9562,"[\""Phone\"", \""Wireless Mouse\""]",143.0,{},245785,0,"""South America""" +2023-01-25,20187,434,"[\""Charger\"", \""Monitor\""]",2082.24,"{\""promo\"": \""23%\""}",56010,1,"""North America""" +2024-03-16,20188,6023,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4460.41,"{\""promo\"": \""22%\""}",142328,1,"""Europe""" +2024-03-04,20189,9908,"[\""Phone\""]",817.3,{},248134,1,"""Asia""" +2023-06-17,20190,4421,"[\""Tablet\"", \""Charger\""]",222.62,"{\""seasonal\"": \""22%\""}",75621,0,"""Africa""" +2024-04-16,20191,1768,"[\""Keyboard\"", \""Laptop\""]",1111.21,"{\""loyalty\"": \""19%\""}",263105,1,"""Asia""" +2023-09-07,20192,9088,"[\""Headphones\"", \""Phone\""]",2557.65,"{\""seasonal\"": \""10%\""}",83443,1,"""Europe""" +2024-01-11,20193,9355,"[\""Tablet\"", \""Charger\""]",3545.3,{},274294,0,"""Asia""" +2024-07-03,20194,8335,"[\""Headphones\"", \""Wireless Mouse\""]",4044.36,{},115054,1,"""South America""" +2023-08-02,20195,7825,"[\""Monitor\"", \""Tablet\""]",2253.51,{},142948,1,"""South America""" +2024-01-14,20196,3872,"[\""Keyboard\"", \""Monitor\""]",717.24,{},178017,1,"""Africa""" +2023-08-15,20197,6831,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2775.63,"{\"": \""11%\""}",156028,0,"""North America""" +2023-05-26,20198,6488,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1293.27,"{\""seasonal\"": \""30%\""}",226343,0,"""South America""" +2023-09-04,20199,4554,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2133.32,{},286622,0,"""Africa""" +2023-10-07,20200,5754,"[\""Wireless Mouse\"", \""Charger\""]",4009.18,{},44231,1,"""South America""" +2023-04-29,20201,1097,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3559.31,"{\"": \""23%\""}",51315,1,"""Europe""" +2023-02-23,20202,9074,"[\""Tablet\""]",2098.56,"{\""loyalty\"": \""12%\""}",288891,0,"""South America""" +2024-10-16,20203,5887,"[\""Tablet\""]",3068.74,{},142763,0,"""North America""" +2023-07-21,20204,2121,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1042.43,{},121668,0,"""Asia""" +2024-07-03,20205,2954,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1749.61,{},228826,0,"""Africa""" +2023-09-10,20206,792,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",741.47,{},299819,0,"""Asia""" +2024-03-18,20207,8273,"[\""Laptop\"", \""Charger\""]",4683.37,{},248702,0,"""Africa""" +2023-10-09,20208,2781,"[\""Headphones\"", \""Tablet\""]",2420.15,{},227635,0,"""South America""" +2024-08-09,20209,9423,"[\""Monitor\"", \""Keyboard\""]",3859.24,"{\""loyalty\"": \""12%\""}",120830,1,"""North America""" +2024-11-05,20210,891,"[\""Laptop\"", \""Keyboard\""]",1272.34,{},151488,1,"""Europe""" +2023-06-29,20211,4384,"[\""Charger\"", \""Keyboard\""]",2907.31,{},106281,1,"""Europe""" +2024-01-03,20212,2533,"[\""Monitor\"", \""Phone\""]",1706.3,"{\"": \""10%\""}",27048,0,"""Africa""" +2024-01-06,20213,2607,"[\""Charger\""]",3827.33,"{\""promo\"": \""14%\""}",86342,1,"""South America""" +2023-06-30,20214,6512,"[\""Headphones\"", \""Keyboard\""]",805.58,{},244551,0,"""Asia""" +2024-01-13,20215,7885,"[\""Charger\""]",4605.13,{},298567,1,"""South America""" +2023-08-17,20216,6082,"[\""Laptop\"", \""Tablet\""]",3531.0,{},168684,1,"""Europe""" +2024-03-04,20217,9200,"[\""Phone\""]",2848.71,"{\""loyalty\"": \""6%\""}",138928,0,"""Asia""" +2024-06-29,20218,5180,"[\""Wireless Mouse\""]",2141.79,{},153503,0,"""Africa""" +2023-03-04,20219,7186,"[\""Keyboard\"", \""Tablet\""]",4386.45,{},131885,0,"""Africa""" +2024-07-08,20220,8674,"[\""Phone\""]",3160.71,{},129239,1,"""North America""" +2024-02-10,20221,6630,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",840.7,{},263659,1,"""Africa""" +2023-06-14,20222,5507,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4934.15,"{\"": \""28%\""}",38407,0,"""Africa""" +2024-12-21,20223,5023,"[\""Tablet\"", \""Monitor\""]",1983.68,{},255004,1,"""North America""" +2024-03-14,20224,8448,"[\""Charger\"", \""Wireless Mouse\""]",4741.64,"{\""seasonal\"": \""24%\""}",27447,1,"""Europe""" +2023-01-15,20225,6640,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3843.42,"{\""promo\"": \""15%\""}",227267,1,"""Africa""" +2024-11-11,20226,8007,"[\""Keyboard\"", \""Tablet\""]",4274.41,"{\""seasonal\"": \""19%\""}",128412,0,"""North America""" +2023-07-22,20227,1753,"[\""Tablet\""]",201.88,{},237601,1,"""Asia""" +2024-10-04,20228,4735,"[\""Headphones\""]",4344.98,"{\""promo\"": \""13%\""}",219116,0,"""North America""" +2024-05-30,20229,913,"[\""Monitor\"", \""Keyboard\""]",842.23,{},66995,0,"""North America""" +2023-05-01,20230,5881,"[\""Headphones\"", \""Monitor\""]",4535.6,"{\""loyalty\"": \""18%\""}",280715,0,"""North America""" +2024-11-01,20231,3351,"[\""Tablet\""]",2430.13,"{\"": \""6%\""}",83436,1,"""North America""" +2024-03-29,20232,1405,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4906.01,{},214550,1,"""Africa""" +2023-10-12,20233,1331,"[\""Laptop\"", \""Phone\""]",1875.5,{},137710,1,"""South America""" +2023-06-10,20234,5191,"[\""Tablet\""]",3628.89,"{\""promo\"": \""27%\""}",186685,0,"""Africa""" +2023-12-06,20235,9857,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",750.33,"{\""loyalty\"": \""18%\""}",5986,1,"""Asia""" +2024-08-11,20236,9017,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4863.03,"{\""seasonal\"": \""29%\""}",27507,1,"""Europe""" +2023-09-29,20237,8317,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1941.22,{},258593,1,"""Europe""" +2023-02-20,20238,5889,"[\""Wireless Mouse\""]",4461.16,"{\""loyalty\"": \""19%\""}",120154,0,"""Asia""" +2023-06-29,20239,2401,"[\""Monitor\""]",435.38,"{\""seasonal\"": \""17%\""}",261756,0,"""North America""" +2024-06-13,20240,9574,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4476.94,{},211490,1,"""Europe""" +2023-10-15,20241,6264,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",506.57,{},168590,1,"""Europe""" +2023-09-12,20242,3448,"[\""Charger\"", \""Phone\""]",1191.36,{},29363,1,"""Asia""" +2023-08-20,20243,3667,"[\""Charger\"", \""Tablet\""]",4906.73,"{\""promo\"": \""15%\""}",9171,0,"""North America""" +2023-07-13,20244,1693,"[\""Laptop\"", \""Tablet\""]",2833.02,"{\"": \""19%\""}",99718,0,"""Europe""" +2024-05-03,20245,272,"[\""Headphones\""]",1496.98,{},115329,0,"""Asia""" +2024-01-15,20246,8849,"[\""Phone\"", \""Tablet\""]",96.46,{},274962,1,"""Europe""" +2024-07-07,20247,7962,"[\""Phone\"", \""Tablet\""]",2916.86,{},55542,1,"""North America""" +2023-11-22,20248,4612,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4865.67,"{\""promo\"": \""26%\""}",285871,1,"""North America""" +2024-08-14,20249,6038,"[\""Keyboard\""]",3420.45,"{\"": \""11%\""}",28377,1,"""Asia""" +2023-03-20,20250,8651,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2580.24,"{\"": \""13%\""}",85138,0,"""North America""" +2023-12-24,20251,3022,"[\""Monitor\"", \""Laptop\""]",2777.87,"{\""promo\"": \""26%\""}",196408,1,"""Africa""" +2024-10-06,20252,1089,"[\""Charger\""]",4363.68,{},50419,0,"""Europe""" +2023-03-24,20253,2806,"[\""Wireless Mouse\""]",3788.68,{},54365,1,"""Europe""" +2023-02-01,20254,7710,"[\""Headphones\""]",1690.8,{},142211,0,"""Asia""" +2024-12-03,20255,805,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1719.35,"{\"": \""30%\""}",281168,1,"""North America""" +2024-06-27,20256,6908,"[\""Laptop\""]",3100.99,"{\""seasonal\"": \""9%\""}",129403,0,"""South America""" +2024-05-08,20257,8294,"[\""Charger\""]",2056.73,{},203403,1,"""Asia""" +2023-03-09,20258,7660,"[\""Laptop\"", \""Wireless Mouse\""]",2816.85,"{\""promo\"": \""16%\""}",40031,0,"""Asia""" +2023-11-17,20259,9377,"[\""Laptop\""]",851.42,{},157384,1,"""North America""" +2024-04-12,20260,657,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1144.68,{},76747,0,"""North America""" +2023-08-30,20261,1981,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4439.82,{},262615,0,"""Europe""" +2024-05-15,20262,1835,"[\""Tablet\""]",254.22,{},55934,0,"""Africa""" +2023-10-25,20263,1950,"[\""Keyboard\"", \""Tablet\""]",1223.88,{},41190,0,"""Africa""" +2024-11-28,20264,7008,"[\""Monitor\""]",2889.21,{},30378,0,"""South America""" +2024-04-20,20265,8700,"[\""Monitor\""]",3189.65,"{\""loyalty\"": \""12%\""}",209157,0,"""Africa""" +2023-02-15,20266,8673,"[\""Headphones\"", \""Tablet\""]",4790.35,"{\"": \""27%\""}",95377,1,"""Asia""" +2023-05-31,20267,7879,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4397.1,"{\"": \""14%\""}",144418,1,"""North America""" +2024-08-30,20268,4154,"[\""Monitor\"", \""Headphones\""]",3594.11,{},210660,1,"""North America""" +2024-03-25,20269,6692,"[\""Tablet\""]",2448.09,{},154232,0,"""Africa""" +2023-04-02,20270,3068,"[\""Tablet\""]",4855.8,{},239593,1,"""Africa""" +2023-11-08,20271,5177,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2973.48,{},161187,0,"""South America""" +2023-04-08,20272,8193,"[\""Phone\""]",4385.69,{},189855,1,"""Africa""" +2023-07-02,20273,3447,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4595.69,{},72143,0,"""Africa""" +2023-09-29,20274,2653,"[\""Headphones\"", \""Laptop\""]",4854.14,{},85953,1,"""South America""" +2024-12-27,20275,3272,"[\""Keyboard\"", \""Charger\""]",930.16,{},123592,0,"""South America""" +2024-05-09,20276,4042,"[\""Laptop\""]",4944.16,{},15051,0,"""Europe""" +2024-07-22,20277,3690,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",311.67,"{\"": \""25%\""}",139210,1,"""South America""" +2024-05-19,20278,378,"[\""Laptop\"", \""Charger\""]",4664.32,"{\""loyalty\"": \""19%\""}",94634,0,"""South America""" +2024-05-30,20279,1391,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2918.29,"{\""loyalty\"": \""7%\""}",261887,1,"""Africa""" +2024-06-03,20280,7414,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",944.08,{},291459,1,"""Africa""" +2024-09-22,20281,8205,"[\""Phone\""]",2613.72,{},63938,0,"""North America""" +2023-04-11,20282,6750,"[\""Keyboard\""]",3842.84,"{\""loyalty\"": \""29%\""}",100814,1,"""Asia""" +2024-10-11,20283,6892,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4054.79,{},110710,0,"""Africa""" +2024-03-10,20284,3739,"[\""Headphones\""]",1110.77,{},118676,1,"""Africa""" +2023-05-23,20285,838,"[\""Monitor\"", \""Wireless Mouse\""]",832.94,"{\""loyalty\"": \""22%\""}",253274,1,"""Africa""" +2024-04-17,20286,8400,"[\""Wireless Mouse\"", \""Tablet\""]",379.74,{},30415,0,"""Africa""" +2023-09-20,20287,2332,"[\""Keyboard\"", \""Charger\""]",3325.71,"{\""promo\"": \""9%\""}",180113,1,"""Europe""" +2023-02-24,20288,1816,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3649.34,{},138143,0,"""South America""" +2024-06-24,20289,370,"[\""Phone\""]",307.55,"{\""seasonal\"": \""23%\""}",81045,1,"""Asia""" +2024-04-07,20290,372,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4523.61,{},269130,0,"""Europe""" +2023-03-09,20291,4583,"[\""Keyboard\""]",3672.06,{},258127,0,"""North America""" +2024-04-02,20292,394,"[\""Laptop\""]",4902.59,{},252787,1,"""North America""" +2023-04-23,20293,7349,"[\""Laptop\""]",3566.59,{},185239,0,"""North America""" +2024-06-29,20294,684,"[\""Laptop\""]",1928.16,"{\""loyalty\"": \""17%\""}",225745,0,"""Europe""" +2024-11-19,20295,1656,"[\""Laptop\""]",279.86,"{\""seasonal\"": \""15%\""}",202004,1,"""Africa""" +2024-12-19,20296,6822,"[\""Wireless Mouse\""]",2013.68,{},263084,1,"""North America""" +2023-11-25,20297,9383,"[\""Keyboard\""]",4317.51,{},272753,1,"""Europe""" +2024-10-05,20298,6013,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4463.39,"{\""promo\"": \""27%\""}",161776,1,"""Europe""" +2024-09-27,20299,2561,"[\""Wireless Mouse\"", \""Tablet\""]",75.32,{},75346,1,"""South America""" +2024-09-26,20300,6584,"[\""Monitor\""]",3538.89,"{\"": \""6%\""}",223944,0,"""North America""" +2023-01-23,20301,3635,"[\""Charger\""]",935.71,{},119221,1,"""Asia""" +2023-03-07,20302,3763,"[\""Keyboard\"", \""Headphones\""]",2266.8,"{\"": \""30%\""}",68980,1,"""Europe""" +2023-03-22,20303,3365,"[\""Phone\"", \""Monitor\""]",1284.09,"{\""promo\"": \""20%\""}",83793,1,"""South America""" +2024-03-11,20304,2906,"[\""Wireless Mouse\""]",1114.36,{},188328,0,"""South America""" +2023-07-03,20305,3353,"[\""Laptop\""]",3964.91,"{\"": \""11%\""}",37516,1,"""North America""" +2023-03-04,20306,1614,"[\""Laptop\""]",121.2,{},289116,0,"""Asia""" +2024-02-02,20307,6952,"[\""Monitor\""]",3641.28,{},120344,1,"""Europe""" +2024-12-07,20308,706,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3454.97,{},295789,1,"""North America""" +2023-10-03,20309,9185,"[\""Keyboard\""]",3969.42,"{\"": \""23%\""}",248383,0,"""Asia""" +2023-06-26,20310,6035,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2689.5,{},68550,1,"""Europe""" +2023-04-07,20311,1778,"[\""Charger\"", \""Headphones\""]",3612.26,{},3313,0,"""Asia""" +2023-02-23,20312,1522,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3935.19,"{\"": \""29%\""}",138089,0,"""South America""" +2023-05-02,20313,5771,"[\""Laptop\""]",4219.97,{},65243,0,"""Africa""" +2023-06-22,20314,1186,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2401.64,{},146262,0,"""Asia""" +2024-06-07,20315,2756,"[\""Headphones\""]",1276.32,{},42859,1,"""Africa""" +2024-03-06,20316,3160,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",535.05,{},197800,1,"""North America""" +2023-07-06,20317,4929,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1696.29,{},23620,1,"""Europe""" +2023-06-06,20318,8895,"[\""Laptop\"", \""Wireless Mouse\""]",1511.28,{},206030,1,"""Africa""" +2023-09-29,20319,923,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4450.54,{},124590,0,"""Europe""" +2023-07-01,20320,7194,"[\""Headphones\"", \""Laptop\""]",500.7,{},250177,1,"""Africa""" +2023-12-23,20321,9537,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",217.79,{},111593,1,"""South America""" +2024-09-26,20322,3645,"[\""Keyboard\""]",2970.06,"{\""promo\"": \""25%\""}",170462,0,"""Europe""" +2023-08-20,20323,3420,"[\""Wireless Mouse\"", \""Charger\""]",1076.47,"{\""loyalty\"": \""9%\""}",29776,0,"""Europe""" +2023-11-02,20324,2417,"[\""Laptop\""]",2011.81,{},51050,0,"""South America""" +2023-07-20,20325,9087,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4649.78,{},111059,0,"""Asia""" +2023-10-06,20326,2608,"[\""Headphones\""]",1520.3,{},31724,1,"""Europe""" +2023-01-31,20327,4756,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2045.28,{},6506,1,"""Europe""" +2024-04-05,20328,9321,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4243.4,"{\""seasonal\"": \""12%\""}",235244,1,"""Asia""" +2024-08-31,20329,6560,"[\""Wireless Mouse\""]",3537.53,{},135027,1,"""Africa""" +2023-02-15,20330,2251,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4850.62,{},254256,1,"""South America""" +2023-07-05,20331,4843,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",123.71,"{\""promo\"": \""19%\""}",224745,0,"""Europe""" +2024-09-09,20332,1149,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2484.23,"{\""promo\"": \""28%\""}",196709,1,"""South America""" +2023-02-17,20333,1751,"[\""Monitor\"", \""Tablet\""]",1209.5,"{\""promo\"": \""13%\""}",107479,0,"""Asia""" +2024-06-26,20334,5887,"[\""Phone\""]",1094.56,"{\""promo\"": \""18%\""}",5231,1,"""North America""" +2023-04-28,20335,3639,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3911.28,"{\""seasonal\"": \""16%\""}",228518,1,"""Africa""" +2024-02-03,20336,7783,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1988.11,{},171987,1,"""South America""" +2024-05-10,20337,5117,"[\""Tablet\""]",3602.81,"{\""loyalty\"": \""12%\""}",57006,1,"""South America""" +2023-11-12,20338,8678,"[\""Laptop\"", \""Monitor\""]",3853.75,{},76176,1,"""Asia""" +2023-09-08,20339,7408,"[\""Wireless Mouse\""]",3974.3,{},71838,0,"""South America""" +2024-05-21,20340,8489,"[\""Headphones\""]",153.29,{},113075,1,"""Asia""" +2023-11-13,20341,4607,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2776.66,{},53816,0,"""North America""" +2023-08-29,20342,1709,"[\""Laptop\"", \""Charger\""]",2355.94,"{\""promo\"": \""20%\""}",156167,0,"""South America""" +2023-06-08,20343,1444,"[\""Wireless Mouse\"", \""Charger\""]",4743.1,{},215972,1,"""South America""" +2023-03-17,20344,8847,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",322.06,"{\""promo\"": \""26%\""}",89841,1,"""Europe""" +2024-10-23,20345,4843,"[\""Charger\""]",4162.54,"{\""loyalty\"": \""17%\""}",21794,1,"""South America""" +2023-05-26,20346,9658,"[\""Keyboard\"", \""Tablet\""]",4217.03,"{\""loyalty\"": \""17%\""}",48302,1,"""Asia""" +2023-06-13,20347,3113,"[\""Keyboard\""]",2064.09,{},229351,0,"""Europe""" +2023-02-06,20348,2868,"[\""Charger\"", \""Laptop\""]",3801.32,{},249866,0,"""South America""" +2024-09-19,20349,443,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2611.44,{},64830,0,"""South America""" +2023-03-27,20350,6648,"[\""Charger\""]",4315.98,"{\"": \""22%\""}",13744,0,"""South America""" +2023-04-07,20351,7776,"[\""Headphones\"", \""Charger\""]",1831.13,"{\""loyalty\"": \""26%\""}",206781,0,"""North America""" +2024-07-12,20352,9605,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4743.52,"{\"": \""26%\""}",288260,1,"""Europe""" +2023-12-18,20353,4063,"[\""Wireless Mouse\""]",3080.84,{},98606,0,"""South America""" +2023-02-22,20354,5356,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4640.32,{},46789,1,"""Asia""" +2023-05-01,20355,5788,"[\""Keyboard\""]",2527.28,"{\""loyalty\"": \""17%\""}",79668,0,"""South America""" +2023-09-30,20356,1512,"[\""Monitor\""]",3440.08,{},196609,1,"""Africa""" +2023-12-25,20357,9928,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2870.05,{},19188,0,"""South America""" +2023-12-27,20358,9316,"[\""Tablet\"", \""Charger\""]",3119.98,"{\""seasonal\"": \""8%\""}",119628,1,"""Asia""" +2023-04-29,20359,8192,"[\""Charger\""]",3674.11,"{\"": \""13%\""}",256380,1,"""South America""" +2024-03-22,20360,1747,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",903.18,{},287671,0,"""Africa""" +2023-05-28,20361,9055,"[\""Phone\"", \""Laptop\""]",4380.78,{},7380,1,"""South America""" +2023-06-28,20362,5668,"[\""Tablet\"", \""Laptop\""]",4186.31,{},239674,1,"""Europe""" +2024-11-25,20363,2340,"[\""Charger\""]",270.11,"{\""seasonal\"": \""23%\""}",52192,0,"""Africa""" +2023-05-02,20364,1192,"[\""Keyboard\"", \""Tablet\""]",2518.81,"{\"": \""11%\""}",92338,0,"""Asia""" +2023-07-24,20365,3058,"[\""Monitor\""]",2884.16,{},140578,1,"""Europe""" +2023-07-23,20366,9462,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",924.24,{},216167,0,"""North America""" +2023-11-17,20367,6330,"[\""Charger\"", \""Tablet\""]",3283.21,"{\""seasonal\"": \""9%\""}",190422,1,"""Europe""" +2023-04-14,20368,7867,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3521.22,{},7093,1,"""Africa""" +2023-03-13,20369,4744,"[\""Phone\""]",458.68,{},60304,0,"""South America""" +2023-08-03,20370,9063,"[\""Charger\""]",1216.86,"{\""promo\"": \""18%\""}",221582,1,"""South America""" +2024-12-22,20371,8137,"[\""Keyboard\""]",2881.98,{},292520,0,"""Europe""" +2023-05-11,20372,89,"[\""Laptop\"", \""Phone\""]",149.52,{},28252,1,"""Asia""" +2024-08-12,20373,2772,"[\""Monitor\""]",4035.91,{},65193,1,"""Africa""" +2023-08-18,20374,2937,"[\""Laptop\"", \""Monitor\""]",2882.84,"{\""seasonal\"": \""16%\""}",293869,0,"""Europe""" +2023-04-17,20375,8153,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4500.1,{},133242,1,"""Africa""" +2024-01-26,20376,9342,"[\""Phone\"", \""Monitor\""]",3888.01,"{\""promo\"": \""6%\""}",221105,0,"""Europe""" +2024-04-27,20377,6577,"[\""Phone\""]",3366.58,"{\"": \""22%\""}",186024,0,"""Europe""" +2024-09-14,20378,5845,"[\""Laptop\"", \""Tablet\""]",1974.56,"{\""seasonal\"": \""18%\""}",10616,1,"""South America""" +2023-12-22,20379,3338,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",875.84,"{\""promo\"": \""29%\""}",281517,0,"""South America""" +2024-09-03,20380,2319,"[\""Headphones\""]",896.16,{},189846,0,"""Europe""" +2023-01-22,20381,8178,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2211.29,{},59819,0,"""South America""" +2023-05-20,20382,7415,"[\""Keyboard\""]",3523.24,{},165140,0,"""Europe""" +2023-05-02,20383,5919,"[\""Headphones\""]",3504.61,"{\""loyalty\"": \""21%\""}",290757,1,"""South America""" +2024-12-04,20384,7106,"[\""Phone\"", \""Headphones\"", \""Charger\""]",628.65,"{\""loyalty\"": \""10%\""}",229244,1,"""Europe""" +2023-09-29,20385,7855,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",363.97,"{\""seasonal\"": \""12%\""}",207994,1,"""Europe""" +2024-02-22,20386,781,"[\""Monitor\"", \""Laptop\""]",3502.18,"{\""seasonal\"": \""7%\""}",263395,0,"""South America""" +2023-06-21,20387,3213,"[\""Charger\"", \""Wireless Mouse\""]",1662.65,{},287700,1,"""North America""" +2023-11-29,20388,38,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4244.97,"{\"": \""21%\""}",293378,1,"""Africa""" +2023-12-01,20389,5524,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1178.91,{},251736,1,"""Africa""" +2023-04-07,20390,2589,"[\""Headphones\""]",1782.41,{},23367,0,"""Asia""" +2023-03-14,20391,898,"[\""Charger\"", \""Keyboard\""]",2214.67,"{\""loyalty\"": \""27%\""}",242437,1,"""North America""" +2023-07-11,20392,3219,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1840.25,{},141623,1,"""Europe""" +2024-09-22,20393,8238,"[\""Charger\""]",3019.59,{},111676,0,"""Africa""" +2024-10-22,20394,1892,"[\""Laptop\"", \""Headphones\""]",764.19,{},76977,1,"""Europe""" +2023-06-18,20395,2500,"[\""Headphones\"", \""Phone\""]",2040.56,{},289192,1,"""South America""" +2024-04-19,20396,5961,"[\""Tablet\""]",2248.09,"{\""promo\"": \""29%\""}",2343,1,"""Africa""" +2023-07-24,20397,6364,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2905.93,{},41998,0,"""North America""" +2024-07-01,20398,5717,"[\""Monitor\""]",3314.15,{},192103,1,"""Africa""" +2024-01-13,20399,2077,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",142.92,"{\"": \""12%\""}",126774,0,"""Asia""" +2024-07-07,20400,9035,"[\""Monitor\"", \""Wireless Mouse\""]",4140.29,{},130614,0,"""Europe""" +2023-09-05,20401,2355,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3005.98,{},267037,1,"""South America""" +2023-01-06,20402,1568,"[\""Monitor\"", \""Keyboard\""]",3013.48,{},1881,0,"""Asia""" +2024-08-26,20403,9762,"[\""Wireless Mouse\"", \""Phone\""]",1792.1,"{\""promo\"": \""15%\""}",177889,0,"""North America""" +2024-01-19,20404,635,"[\""Monitor\"", \""Phone\""]",2546.01,"{\"": \""13%\""}",192230,0,"""Asia""" +2023-04-04,20405,9937,"[\""Keyboard\""]",2993.2,{},104470,1,"""Africa""" +2024-03-30,20406,1722,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4991.47,{},49758,1,"""North America""" +2024-11-06,20407,5345,"[\""Headphones\""]",1869.52,"{\""promo\"": \""8%\""}",1639,0,"""Europe""" +2024-08-10,20408,2534,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2868.62,{},253155,0,"""Asia""" +2024-04-22,20409,4036,"[\""Tablet\"", \""Wireless Mouse\""]",3964.03,"{\""loyalty\"": \""21%\""}",236154,0,"""Asia""" +2024-10-11,20410,7088,"[\""Tablet\"", \""Wireless Mouse\""]",4513.14,"{\""seasonal\"": \""22%\""}",129504,0,"""Europe""" +2023-04-25,20411,8000,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",880.3,{},145127,0,"""North America""" +2023-07-02,20412,1091,"[\""Wireless Mouse\"", \""Headphones\""]",4970.69,{},153166,1,"""Asia""" +2024-01-30,20413,942,"[\""Laptop\""]",3168.44,"{\""loyalty\"": \""21%\""}",84220,1,"""Asia""" +2023-05-01,20414,6627,"[\""Monitor\""]",2766.68,{},170457,0,"""Asia""" +2023-05-09,20415,2523,"[\""Wireless Mouse\"", \""Charger\""]",4381.18,{},284709,0,"""Africa""" +2023-03-17,20416,5475,"[\""Monitor\"", \""Phone\""]",1787.89,"{\"": \""26%\""}",274063,1,"""Africa""" +2024-04-14,20417,7719,"[\""Keyboard\""]",1713.53,{},161111,1,"""North America""" +2023-01-28,20418,5840,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1584.46,{},220996,0,"""South America""" +2023-03-02,20419,4215,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4315.65,"{\""seasonal\"": \""17%\""}",186269,1,"""Africa""" +2024-03-20,20420,3415,"[\""Wireless Mouse\""]",4847.08,{},130318,1,"""South America""" +2024-04-07,20421,6262,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3184.72,"{\""seasonal\"": \""13%\""}",17222,1,"""Europe""" +2023-04-29,20422,5350,"[\""Laptop\"", \""Charger\""]",3107.08,{},24007,1,"""Africa""" +2024-08-25,20423,3307,"[\""Phone\""]",2111.63,"{\""loyalty\"": \""9%\""}",248405,1,"""South America""" +2023-05-01,20424,8157,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1522.2,{},248181,1,"""South America""" +2023-12-27,20425,3993,"[\""Tablet\""]",3490.06,"{\""promo\"": \""9%\""}",36728,1,"""Africa""" +2024-04-17,20426,4620,"[\""Keyboard\"", \""Phone\""]",3886.06,"{\""seasonal\"": \""26%\""}",203539,1,"""Africa""" +2023-08-06,20427,5000,"[\""Charger\""]",1717.59,"{\""loyalty\"": \""12%\""}",271220,1,"""South America""" +2024-11-26,20428,732,"[\""Monitor\""]",3599.15,{},206557,1,"""Europe""" +2023-08-25,20429,9097,"[\""Wireless Mouse\""]",3636.75,{},135495,0,"""South America""" +2023-08-25,20430,1778,"[\""Headphones\""]",2233.69,{},194681,1,"""South America""" +2023-01-21,20431,1231,"[\""Tablet\"", \""Charger\""]",2729.26,{},158012,0,"""North America""" +2023-01-01,20432,9137,"[\""Phone\""]",3970.22,{},99516,0,"""South America""" +2024-03-26,20433,697,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2205.64,{},72918,1,"""North America""" +2024-07-22,20434,8534,"[\""Tablet\""]",4652.89,{},281836,1,"""Africa""" +2024-04-22,20435,7725,"[\""Charger\"", \""Laptop\""]",2590.24,{},164657,0,"""Asia""" +2024-09-18,20436,3710,"[\""Phone\""]",1558.78,{},90291,0,"""South America""" +2023-05-25,20437,7870,"[\""Charger\""]",1978.78,"{\""promo\"": \""9%\""}",74216,0,"""North America""" +2024-09-26,20438,1357,"[\""Laptop\"", \""Charger\""]",2817.96,"{\""loyalty\"": \""17%\""}",63501,1,"""North America""" +2024-04-28,20439,81,"[\""Phone\"", \""Wireless Mouse\""]",3042.56,"{\"": \""20%\""}",258232,0,"""Africa""" +2023-03-12,20440,7791,"[\""Wireless Mouse\"", \""Phone\""]",4923.62,"{\""promo\"": \""27%\""}",205166,1,"""South America""" +2024-05-10,20441,3155,"[\""Laptop\"", \""Keyboard\""]",1072.62,"{\"": \""6%\""}",262385,1,"""South America""" +2023-10-24,20442,2652,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3282.96,{},57872,1,"""North America""" +2023-11-26,20443,3344,"[\""Wireless Mouse\""]",799.07,"{\""seasonal\"": \""12%\""}",213489,1,"""Europe""" +2023-12-24,20444,9930,"[\""Phone\""]",2670.86,"{\"": \""13%\""}",271819,0,"""South America""" +2023-04-15,20445,5297,"[\""Monitor\"", \""Charger\""]",4758.5,{},295206,1,"""Africa""" +2024-11-24,20446,1193,"[\""Wireless Mouse\""]",3745.15,"{\""promo\"": \""30%\""}",252516,0,"""Europe""" +2024-01-05,20447,4789,"[\""Keyboard\"", \""Wireless Mouse\""]",3132.12,{},222631,0,"""Europe""" +2023-11-05,20448,7103,"[\""Keyboard\"", \""Monitor\""]",435.39,{},281551,0,"""Europe""" +2023-10-22,20449,9732,"[\""Tablet\"", \""Headphones\""]",135.92,{},28569,1,"""Asia""" +2024-04-24,20450,8723,"[\""Tablet\""]",3513.6,"{\""seasonal\"": \""20%\""}",87462,1,"""Europe""" +2024-07-04,20451,2032,"[\""Charger\"", \""Phone\""]",2401.33,{},247852,1,"""Asia""" +2024-05-22,20452,4096,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3250.98,"{\""seasonal\"": \""24%\""}",18273,1,"""Europe""" +2024-03-15,20453,7198,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4127.04,{},125288,0,"""Europe""" +2023-08-14,20454,7226,"[\""Wireless Mouse\""]",661.36,"{\""loyalty\"": \""12%\""}",138696,1,"""South America""" +2024-11-23,20455,5684,"[\""Phone\"", \""Laptop\""]",92.28,"{\""loyalty\"": \""28%\""}",235518,0,"""Asia""" +2024-09-18,20456,8762,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",827.03,{},284179,1,"""Africa""" +2024-12-25,20457,5960,"[\""Charger\""]",2653.57,{},80181,1,"""South America""" +2023-08-04,20458,7381,"[\""Wireless Mouse\"", \""Monitor\""]",4741.17,{},113102,0,"""Asia""" +2023-06-17,20459,4200,"[\""Phone\"", \""Charger\"", \""Laptop\""]",557.91,{},180884,1,"""Asia""" +2024-11-18,20460,22,"[\""Tablet\"", \""Laptop\""]",495.67,{},13253,1,"""South America""" +2023-07-08,20461,4153,"[\""Keyboard\""]",4349.13,"{\""seasonal\"": \""12%\""}",16343,1,"""Africa""" +2024-03-26,20462,7964,"[\""Keyboard\"", \""Phone\""]",1883.41,"{\"": \""25%\""}",259825,0,"""South America""" +2024-04-09,20463,3420,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",971.16,{},19555,0,"""Europe""" +2023-10-06,20464,3176,"[\""Monitor\""]",3586.44,{},212735,1,"""Africa""" +2023-12-21,20465,6201,"[\""Headphones\"", \""Keyboard\""]",2570.32,{},218597,1,"""Africa""" +2023-04-21,20466,1408,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3556.28,{},215479,1,"""North America""" +2023-01-15,20467,2773,"[\""Wireless Mouse\""]",1951.47,"{\""promo\"": \""5%\""}",124154,0,"""Africa""" +2023-11-15,20468,1424,"[\""Wireless Mouse\"", \""Laptop\""]",1994.82,"{\""loyalty\"": \""23%\""}",129199,0,"""South America""" +2023-07-19,20469,3081,"[\""Headphones\""]",2411.3,{},80910,1,"""Asia""" +2023-10-09,20470,2569,"[\""Laptop\"", \""Monitor\""]",4140.26,{},297192,1,"""Asia""" +2023-07-27,20471,183,"[\""Headphones\""]",239.37,{},234757,1,"""Asia""" +2023-08-23,20472,8571,"[\""Wireless Mouse\"", \""Headphones\""]",3508.14,"{\""seasonal\"": \""16%\""}",157511,1,"""Asia""" +2024-04-24,20473,4528,"[\""Phone\"", \""Laptop\""]",3411.59,"{\""promo\"": \""25%\""}",242056,0,"""North America""" +2024-02-14,20474,6347,"[\""Phone\"", \""Laptop\""]",1965.17,{},18871,1,"""Europe""" +2023-11-12,20475,8651,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2913.51,"{\""loyalty\"": \""11%\""}",244295,0,"""Europe""" +2023-12-28,20476,3165,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2422.02,"{\""promo\"": \""16%\""}",276197,1,"""Asia""" +2024-09-01,20477,305,"[\""Wireless Mouse\""]",2066.51,"{\""promo\"": \""22%\""}",4900,0,"""Europe""" +2024-04-24,20478,250,"[\""Keyboard\""]",3603.66,{},167040,1,"""South America""" +2023-02-25,20479,787,"[\""Headphones\"", \""Keyboard\""]",2490.15,{},135276,0,"""South America""" +2023-02-23,20480,8535,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4549.57,"{\""seasonal\"": \""18%\""}",82519,0,"""Asia""" +2023-11-26,20481,9597,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3225.39,"{\"": \""22%\""}",220788,1,"""Europe""" +2024-04-04,20482,7472,"[\""Monitor\"", \""Charger\""]",2007.07,{},187058,1,"""South America""" +2023-12-06,20483,3778,"[\""Laptop\""]",2423.84,{},259177,0,"""North America""" +2023-04-04,20484,4811,"[\""Tablet\"", \""Monitor\""]",3028.37,{},280242,1,"""Europe""" +2023-03-24,20485,1322,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",513.19,"{\""seasonal\"": \""14%\""}",102237,0,"""Asia""" +2024-01-02,20486,5796,"[\""Charger\"", \""Phone\""]",990.69,{},140971,1,"""Europe""" +2024-09-16,20487,2937,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3040.75,"{\""loyalty\"": \""7%\""}",56993,0,"""Europe""" +2024-06-11,20488,1492,"[\""Phone\""]",4776.55,{},14173,1,"""Africa""" +2024-08-23,20489,8191,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1686.65,"{\""seasonal\"": \""25%\""}",260395,1,"""South America""" +2023-07-30,20490,1556,"[\""Wireless Mouse\""]",1066.74,"{\""loyalty\"": \""14%\""}",131849,1,"""South America""" +2024-06-18,20491,3350,"[\""Charger\"", \""Headphones\""]",3469.02,"{\"": \""23%\""}",125005,1,"""South America""" +2024-10-11,20492,8387,"[\""Keyboard\"", \""Charger\""]",4431.08,{},60567,1,"""Asia""" +2023-04-02,20493,459,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",579.77,{},206825,0,"""South America""" +2023-02-22,20494,6168,"[\""Charger\"", \""Tablet\""]",1804.69,{},63450,1,"""Europe""" +2023-12-08,20495,2319,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2901.28,"{\""promo\"": \""15%\""}",131901,1,"""Africa""" +2024-03-01,20496,2659,"[\""Wireless Mouse\"", \""Tablet\""]",975.99,{},93303,0,"""North America""" +2023-01-31,20497,5988,"[\""Tablet\""]",2670.8,{},62753,1,"""Africa""" +2024-09-19,20498,4717,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1154.98,"{\""promo\"": \""22%\""}",75032,1,"""Africa""" +2023-02-23,20499,8763,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",206.94,"{\""promo\"": \""6%\""}",211585,1,"""Europe""" +2024-12-04,20500,3274,"[\""Headphones\"", \""Wireless Mouse\""]",1064.3,"{\"": \""15%\""}",26101,0,"""South America""" +2023-10-03,20501,996,"[\""Laptop\""]",2029.85,"{\""promo\"": \""14%\""}",195572,1,"""Europe""" +2023-02-25,20502,2764,"[\""Tablet\"", \""Keyboard\""]",3267.6,{},227213,0,"""Europe""" +2023-08-18,20503,1867,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2255.35,{},39835,0,"""North America""" +2023-08-29,20504,2549,"[\""Monitor\""]",4986.87,{},69202,1,"""Asia""" +2024-12-15,20505,3261,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2299.37,{},30374,0,"""Africa""" +2023-09-15,20506,4149,"[\""Charger\"", \""Tablet\""]",2032.2,{},101558,0,"""Europe""" +2023-01-06,20507,7051,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2536.7,"{\""seasonal\"": \""21%\""}",106412,0,"""South America""" +2023-01-01,20508,6508,"[\""Laptop\""]",4955.46,"{\""seasonal\"": \""9%\""}",32604,0,"""Asia""" +2024-01-31,20509,7914,"[\""Headphones\""]",2822.29,{},134283,1,"""Africa""" +2024-01-31,20510,7688,"[\""Charger\""]",1527.67,"{\""loyalty\"": \""14%\""}",60577,1,"""Africa""" +2024-06-22,20511,6423,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2412.08,{},188678,1,"""Africa""" +2024-04-13,20512,1351,"[\""Tablet\"", \""Phone\""]",2970.3,"{\"": \""9%\""}",42945,1,"""South America""" +2023-05-23,20513,6790,"[\""Monitor\""]",2137.2,{},137120,1,"""Europe""" +2024-08-19,20514,1521,"[\""Monitor\""]",1635.19,{},286575,1,"""Europe""" +2023-07-28,20515,9858,"[\""Headphones\"", \""Phone\""]",1751.95,"{\""seasonal\"": \""17%\""}",58163,1,"""North America""" +2023-01-25,20516,9639,"[\""Phone\"", \""Monitor\""]",216.03,"{\""promo\"": \""29%\""}",210730,0,"""Asia""" +2023-06-13,20517,8813,"[\""Laptop\"", \""Phone\""]",3267.38,{},87970,1,"""Africa""" +2024-05-16,20518,2871,"[\""Headphones\""]",742.48,"{\""loyalty\"": \""14%\""}",195047,0,"""North America""" +2023-03-18,20519,2907,"[\""Laptop\""]",693.69,{},238788,0,"""South America""" +2023-11-20,20520,3318,"[\""Laptop\""]",1448.14,{},256288,0,"""North America""" +2024-02-12,20521,9568,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3257.86,{},118425,1,"""Africa""" +2023-06-06,20522,7548,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2112.21,{},288317,1,"""Asia""" +2023-11-28,20523,3178,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1380.41,{},296170,1,"""Europe""" +2023-10-30,20524,6499,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3516.95,{},222351,1,"""Asia""" +2024-12-10,20525,9265,"[\""Wireless Mouse\""]",2461.15,{},254816,1,"""South America""" +2023-03-05,20526,5583,"[\""Laptop\""]",3562.48,{},85627,1,"""Africa""" +2024-07-17,20527,4818,"[\""Wireless Mouse\"", \""Keyboard\""]",1600.64,"{\""loyalty\"": \""19%\""}",97087,0,"""North America""" +2024-07-28,20528,910,"[\""Keyboard\"", \""Phone\""]",65.8,"{\""promo\"": \""22%\""}",255129,0,"""South America""" +2024-07-11,20529,1093,"[\""Wireless Mouse\""]",3697.09,{},2644,0,"""North America""" +2023-03-26,20530,4618,"[\""Keyboard\""]",2431.98,"{\""seasonal\"": \""11%\""}",147927,0,"""South America""" +2024-01-23,20531,9543,"[\""Charger\"", \""Monitor\""]",4541.13,"{\"": \""14%\""}",144095,1,"""South America""" +2024-07-12,20532,7444,"[\""Keyboard\"", \""Tablet\""]",4822.0,{},282493,1,"""South America""" +2023-12-04,20533,6522,"[\""Headphones\""]",4134.31,"{\""seasonal\"": \""20%\""}",137749,0,"""Asia""" +2023-08-23,20534,2654,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4409.22,{},236775,1,"""Europe""" +2024-09-03,20535,2534,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4069.3,{},45255,1,"""North America""" +2023-10-30,20536,7557,"[\""Keyboard\"", \""Laptop\""]",1105.72,{},189224,0,"""Europe""" +2023-04-06,20537,7867,"[\""Laptop\"", \""Wireless Mouse\""]",945.65,"{\""loyalty\"": \""14%\""}",162433,1,"""Africa""" +2024-12-12,20538,2437,"[\""Wireless Mouse\""]",3392.45,"{\""promo\"": \""7%\""}",193662,0,"""Africa""" +2024-05-17,20539,8818,"[\""Wireless Mouse\"", \""Laptop\""]",3180.15,"{\"": \""23%\""}",155096,1,"""South America""" +2024-04-16,20540,4139,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",501.66,{},148557,1,"""Asia""" +2023-03-04,20541,5164,"[\""Keyboard\""]",2267.11,{},132712,1,"""Europe""" +2024-04-24,20542,5074,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",924.55,{},55490,1,"""Africa""" +2023-05-04,20543,8634,"[\""Monitor\""]",613.57,{},169368,0,"""South America""" +2024-09-12,20544,4334,"[\""Wireless Mouse\"", \""Tablet\""]",3234.72,"{\""loyalty\"": \""24%\""}",206378,1,"""North America""" +2023-12-20,20545,549,"[\""Laptop\"", \""Headphones\""]",4957.08,{},256064,1,"""Asia""" +2023-04-15,20546,547,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1646.83,{},110585,1,"""South America""" +2024-03-01,20547,3234,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2864.9,"{\""loyalty\"": \""22%\""}",17345,1,"""Asia""" +2023-11-13,20548,2575,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4162.07,"{\""promo\"": \""13%\""}",185703,0,"""Europe""" +2023-04-08,20549,8188,"[\""Monitor\""]",96.03,"{\""promo\"": \""14%\""}",250175,1,"""Europe""" +2023-04-01,20550,8529,"[\""Phone\""]",1953.27,{},198563,1,"""South America""" +2024-12-09,20551,2059,"[\""Phone\"", \""Charger\""]",1100.64,"{\""loyalty\"": \""15%\""}",237325,0,"""Asia""" +2024-02-13,20552,8013,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4354.06,{},1578,0,"""Asia""" +2023-10-17,20553,2927,"[\""Headphones\""]",4040.68,"{\""seasonal\"": \""5%\""}",35059,0,"""Europe""" +2024-10-07,20554,2695,"[\""Headphones\"", \""Phone\""]",680.28,{},131416,0,"""Africa""" +2023-03-25,20555,8572,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1145.19,{},146879,0,"""Africa""" +2024-11-17,20556,4384,"[\""Charger\""]",1132.81,"{\""promo\"": \""27%\""}",154271,0,"""North America""" +2023-08-20,20557,5870,"[\""Tablet\"", \""Phone\""]",4443.81,{},116130,1,"""South America""" +2024-02-20,20558,792,"[\""Phone\""]",2885.14,"{\""seasonal\"": \""30%\""}",36274,1,"""South America""" +2023-04-26,20559,8971,"[\""Charger\""]",1111.05,{},96370,1,"""North America""" +2024-09-07,20560,1764,"[\""Wireless Mouse\""]",4814.91,"{\"": \""12%\""}",188006,1,"""Asia""" +2024-11-09,20561,7711,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2551.97,{},206625,1,"""Africa""" +2024-05-24,20562,5107,"[\""Headphones\""]",1974.51,"{\""promo\"": \""24%\""}",88774,1,"""Asia""" +2024-02-18,20563,8941,"[\""Headphones\"", \""Laptop\""]",2728.78,"{\"": \""20%\""}",169252,0,"""Asia""" +2023-09-22,20564,924,"[\""Keyboard\""]",1828.52,"{\""loyalty\"": \""11%\""}",189534,0,"""Africa""" +2024-11-25,20565,7,"[\""Headphones\"", \""Charger\""]",2381.42,{},38428,1,"""Europe""" +2024-05-08,20566,140,"[\""Wireless Mouse\"", \""Laptop\""]",4450.17,{},67177,1,"""North America""" +2023-01-15,20567,2189,"[\""Headphones\"", \""Laptop\""]",4386.36,{},128020,1,"""Africa""" +2024-08-30,20568,5403,"[\""Monitor\"", \""Phone\""]",1180.41,"{\""promo\"": \""28%\""}",41652,0,"""Africa""" +2024-12-28,20569,3519,"[\""Phone\"", \""Headphones\""]",2754.01,"{\"": \""17%\""}",55480,1,"""South America""" +2023-06-07,20570,4301,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4692.45,"{\""seasonal\"": \""12%\""}",109791,0,"""North America""" +2023-01-14,20571,4146,"[\""Phone\"", \""Keyboard\""]",3991.07,{},292678,1,"""Africa""" +2023-11-17,20572,2616,"[\""Phone\""]",3504.75,{},94217,1,"""South America""" +2023-10-20,20573,9928,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3649.36,{},42272,0,"""Europe""" +2023-12-27,20574,5631,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1163.78,"{\""loyalty\"": \""7%\""}",146492,0,"""Asia""" +2024-07-15,20575,2977,"[\""Laptop\"", \""Headphones\""]",2754.57,{},187434,0,"""Asia""" +2024-09-28,20576,9588,"[\""Keyboard\""]",3288.32,"{\"": \""23%\""}",140838,0,"""Asia""" +2023-05-11,20577,47,"[\""Wireless Mouse\""]",4858.27,"{\"": \""12%\""}",139264,1,"""Africa""" +2024-02-17,20578,4593,"[\""Phone\"", \""Tablet\""]",675.89,"{\""seasonal\"": \""19%\""}",197576,1,"""Europe""" +2024-11-22,20579,9164,"[\""Headphones\"", \""Laptop\""]",3529.08,"{\""promo\"": \""26%\""}",134224,0,"""Europe""" +2024-03-28,20580,8326,"[\""Laptop\"", \""Tablet\""]",3818.51,{},175356,0,"""Europe""" +2023-05-29,20581,9003,"[\""Tablet\""]",2360.69,"{\""promo\"": \""7%\""}",297410,1,"""Asia""" +2024-11-26,20582,5008,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4543.41,{},130825,0,"""Europe""" +2023-10-08,20583,5994,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2929.93,"{\""seasonal\"": \""22%\""}",253807,0,"""North America""" +2023-12-29,20584,2356,"[\""Monitor\""]",3016.87,{},22726,1,"""Asia""" +2023-04-06,20585,4645,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2466.65,"{\"": \""7%\""}",250413,0,"""Africa""" +2023-07-14,20586,4898,"[\""Headphones\"", \""Laptop\""]",4254.69,{},41480,0,"""Africa""" +2023-04-20,20587,6880,"[\""Tablet\"", \""Phone\""]",4603.11,"{\""seasonal\"": \""12%\""}",233431,1,"""Asia""" +2023-03-24,20588,9535,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4334.06,{},107191,0,"""Africa""" +2023-06-20,20589,8987,"[\""Tablet\""]",4714.16,"{\""seasonal\"": \""28%\""}",236753,1,"""North America""" +2024-02-26,20590,4299,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3963.66,"{\""promo\"": \""17%\""}",128405,0,"""Africa""" +2024-01-12,20591,7438,"[\""Phone\""]",4086.7,"{\""seasonal\"": \""7%\""}",133782,1,"""North America""" +2023-10-26,20592,9991,"[\""Headphones\""]",1639.47,"{\"": \""14%\""}",195587,1,"""Europe""" +2024-06-09,20593,5901,"[\""Headphones\"", \""Wireless Mouse\""]",4884.9,{},176516,0,"""Europe""" +2024-01-23,20594,6437,"[\""Keyboard\""]",2248.96,"{\"": \""21%\""}",106684,0,"""South America""" +2023-12-19,20595,9154,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1949.06,{},170156,0,"""Asia""" +2023-04-19,20596,8662,"[\""Phone\""]",578.85,"{\"": \""12%\""}",211914,1,"""South America""" +2024-01-19,20597,5291,"[\""Tablet\""]",1739.1,"{\""seasonal\"": \""16%\""}",214143,1,"""South America""" +2024-11-18,20598,1091,"[\""Charger\"", \""Tablet\""]",4935.37,"{\""promo\"": \""11%\""}",35288,0,"""North America""" +2023-06-12,20599,1387,"[\""Charger\""]",2908.29,"{\""loyalty\"": \""8%\""}",268120,0,"""North America""" +2024-12-01,20600,641,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3529.74,"{\""loyalty\"": \""19%\""}",76750,0,"""Europe""" +2023-01-01,20601,4292,"[\""Wireless Mouse\""]",1885.04,"{\"": \""10%\""}",239481,1,"""Europe""" +2023-04-17,20602,6975,"[\""Monitor\""]",309.4,"{\""loyalty\"": \""17%\""}",151178,0,"""Europe""" +2023-09-14,20603,1111,"[\""Phone\"", \""Monitor\""]",850.66,{},73219,0,"""North America""" +2024-04-18,20604,811,"[\""Wireless Mouse\""]",2131.35,"{\""promo\"": \""19%\""}",297861,0,"""South America""" +2023-11-06,20605,2059,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4922.74,{},244044,1,"""North America""" +2024-10-21,20606,1906,"[\""Headphones\""]",898.26,"{\"": \""19%\""}",59862,0,"""Europe""" +2024-05-25,20607,4191,"[\""Wireless Mouse\""]",2834.99,"{\""promo\"": \""19%\""}",162104,1,"""South America""" +2024-02-25,20608,9143,"[\""Wireless Mouse\"", \""Charger\""]",2360.88,{},4595,1,"""North America""" +2023-05-29,20609,5532,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3895.45,{},160102,1,"""North America""" +2023-09-29,20610,9675,"[\""Headphones\""]",3256.77,{},205524,1,"""Europe""" +2024-01-27,20611,889,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3882.81,"{\""promo\"": \""24%\""}",81718,0,"""Asia""" +2023-07-26,20612,3827,"[\""Tablet\""]",2570.04,"{\""promo\"": \""5%\""}",17933,0,"""Europe""" +2024-07-02,20613,7752,"[\""Tablet\"", \""Headphones\""]",3240.94,{},217614,0,"""Europe""" +2024-07-10,20614,4261,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2763.45,"{\""loyalty\"": \""9%\""}",265663,0,"""Europe""" +2024-03-28,20615,1270,"[\""Laptop\""]",2890.39,{},103578,1,"""Africa""" +2023-02-07,20616,2376,"[\""Monitor\""]",3698.9,"{\""loyalty\"": \""27%\""}",101449,0,"""Asia""" +2024-06-26,20617,5233,"[\""Laptop\"", \""Wireless Mouse\""]",2202.91,"{\""loyalty\"": \""18%\""}",168183,1,"""Europe""" +2023-04-19,20618,3750,"[\""Monitor\""]",2642.54,{},134332,0,"""Asia""" +2024-03-11,20619,6530,"[\""Keyboard\""]",1197.78,{},76216,1,"""Asia""" +2024-03-17,20620,3857,"[\""Tablet\""]",2513.22,"{\""promo\"": \""17%\""}",210634,1,"""Europe""" +2024-07-28,20621,296,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1129.75,{},214943,1,"""Africa""" +2024-06-21,20622,4575,"[\""Headphones\"", \""Monitor\""]",2096.44,{},157187,0,"""North America""" +2024-09-09,20623,2107,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3787.3,"{\""promo\"": \""13%\""}",205650,1,"""Africa""" +2023-01-06,20624,883,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4741.77,"{\"": \""12%\""}",124854,0,"""Asia""" +2024-02-06,20625,4317,"[\""Tablet\""]",4544.13,"{\""promo\"": \""27%\""}",257988,0,"""North America""" +2023-10-06,20626,8062,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2371.98,"{\"": \""25%\""}",150471,1,"""South America""" +2024-04-27,20627,8803,"[\""Phone\""]",2079.38,"{\""promo\"": \""15%\""}",163977,1,"""Africa""" +2023-10-28,20628,2014,"[\""Keyboard\""]",2405.11,{},294642,0,"""South America""" +2024-11-08,20629,7331,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",273.73,{},18239,0,"""North America""" +2023-08-01,20630,7447,"[\""Monitor\"", \""Headphones\""]",1661.83,"{\""seasonal\"": \""17%\""}",289904,0,"""Asia""" +2024-12-02,20631,4132,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",361.97,{},79488,0,"""Asia""" +2024-10-19,20632,9044,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3088.39,{},273277,0,"""Europe""" +2024-01-20,20633,3716,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1404.52,"{\""promo\"": \""20%\""}",291262,0,"""South America""" +2023-10-31,20634,2135,"[\""Laptop\""]",3373.08,"{\"": \""6%\""}",45225,0,"""North America""" +2023-04-28,20635,1396,"[\""Keyboard\""]",1901.04,{},14052,0,"""Africa""" +2024-03-20,20636,9960,"[\""Keyboard\"", \""Phone\""]",3679.58,{},287070,1,"""South America""" +2024-04-06,20637,4538,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3806.41,{},12919,0,"""Africa""" +2024-09-05,20638,7965,"[\""Laptop\""]",4849.06,{},72485,1,"""South America""" +2023-12-24,20639,5858,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4928.32,"{\""promo\"": \""23%\""}",207253,0,"""Europe""" +2023-02-09,20640,1801,"[\""Keyboard\"", \""Laptop\""]",686.55,{},235791,0,"""Europe""" +2024-10-09,20641,4661,"[\""Charger\""]",1807.46,{},99546,0,"""Europe""" +2023-09-04,20642,4919,"[\""Keyboard\"", \""Phone\""]",1846.09,{},20454,1,"""Europe""" +2023-06-28,20643,2010,"[\""Phone\"", \""Tablet\""]",4580.75,"{\"": \""25%\""}",162175,1,"""Europe""" +2024-03-13,20644,8875,"[\""Monitor\""]",4752.45,{},281912,1,"""Africa""" +2024-05-30,20645,6233,"[\""Monitor\""]",4739.23,{},207027,0,"""South America""" +2023-03-20,20646,354,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1510.0,"{\""loyalty\"": \""10%\""}",49875,0,"""Europe""" +2024-05-04,20647,1769,"[\""Charger\""]",1291.59,{},282146,0,"""South America""" +2023-02-27,20648,71,"[\""Keyboard\""]",1396.19,{},145530,1,"""South America""" +2024-02-18,20649,2122,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2193.1,"{\""promo\"": \""30%\""}",183086,1,"""South America""" +2023-04-14,20650,757,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3775.41,{},211458,0,"""Europe""" +2023-08-23,20651,5509,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4777.51,{},144411,0,"""South America""" +2024-01-31,20652,5088,"[\""Keyboard\""]",3348.94,{},205733,1,"""Africa""" +2023-03-02,20653,7917,"[\""Tablet\"", \""Charger\""]",2513.06,{},84507,0,"""Europe""" +2023-08-10,20654,32,"[\""Headphones\"", \""Charger\""]",3002.69,{},171072,1,"""South America""" +2024-11-24,20655,157,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3042.88,{},156231,0,"""North America""" +2023-04-05,20656,3099,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2302.86,"{\""loyalty\"": \""26%\""}",246169,0,"""Asia""" +2024-10-16,20657,1053,"[\""Tablet\"", \""Charger\""]",2714.89,{},102444,0,"""Europe""" +2023-08-29,20658,2337,"[\""Headphones\""]",123.98,"{\""loyalty\"": \""27%\""}",232810,1,"""Africa""" +2023-08-03,20659,1874,"[\""Monitor\""]",2302.17,{},36422,0,"""Africa""" +2024-07-14,20660,3617,"[\""Keyboard\""]",1511.4,"{\""seasonal\"": \""26%\""}",170832,1,"""South America""" +2024-03-29,20661,7034,"[\""Wireless Mouse\"", \""Charger\""]",3518.93,{},109799,1,"""Africa""" +2023-06-08,20662,9165,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4291.51,"{\"": \""13%\""}",280195,0,"""Asia""" +2023-01-07,20663,2586,"[\""Charger\"", \""Wireless Mouse\""]",4866.05,"{\""loyalty\"": \""10%\""}",194348,1,"""North America""" +2023-08-20,20664,5249,"[\""Keyboard\"", \""Wireless Mouse\""]",2721.1,{},294012,0,"""Europe""" +2023-12-08,20665,1537,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1316.28,"{\""seasonal\"": \""25%\""}",171233,0,"""Africa""" +2023-08-01,20666,6057,"[\""Charger\""]",4969.08,"{\""promo\"": \""18%\""}",260503,0,"""South America""" +2023-03-19,20667,4281,"[\""Monitor\""]",2211.16,"{\""seasonal\"": \""9%\""}",196763,1,"""Europe""" +2024-02-12,20668,4770,"[\""Monitor\""]",759.46,{},266575,0,"""Europe""" +2023-02-01,20669,3560,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3030.51,{},270058,0,"""Africa""" +2024-10-11,20670,7942,"[\""Charger\"", \""Wireless Mouse\""]",657.15,{},231785,1,"""Asia""" +2024-11-12,20671,4394,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4202.74,{},163254,0,"""South America""" +2024-10-18,20672,5947,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",785.03,{},172960,1,"""North America""" +2024-03-08,20673,3029,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1508.88,"{\""loyalty\"": \""8%\""}",87342,0,"""Asia""" +2023-12-29,20674,8431,"[\""Laptop\""]",1751.04,"{\""loyalty\"": \""22%\""}",7921,0,"""Africa""" +2023-05-29,20675,9240,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",255.29,{},294202,0,"""Africa""" +2024-12-06,20676,4936,"[\""Wireless Mouse\""]",1538.96,{},65820,0,"""South America""" +2024-09-07,20677,4650,"[\""Tablet\""]",4337.9,{},57829,0,"""North America""" +2023-09-04,20678,689,"[\""Laptop\"", \""Monitor\""]",2876.65,{},166422,0,"""Asia""" +2023-12-28,20679,2941,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3031.48,"{\""loyalty\"": \""12%\""}",75062,1,"""Africa""" +2023-09-20,20680,9406,"[\""Wireless Mouse\"", \""Tablet\""]",4600.1,"{\""promo\"": \""25%\""}",82662,1,"""North America""" +2024-08-04,20681,1680,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",655.85,{},207583,0,"""North America""" +2024-12-22,20682,7361,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",58.02,{},242610,0,"""North America""" +2024-10-12,20683,4988,"[\""Wireless Mouse\""]",3425.05,{},103964,0,"""South America""" +2024-08-03,20684,1318,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3132.62,"{\""loyalty\"": \""10%\""}",265310,1,"""Asia""" +2023-10-30,20685,7712,"[\""Headphones\"", \""Keyboard\""]",3303.3,"{\"": \""24%\""}",137852,0,"""North America""" +2024-05-29,20686,9318,"[\""Wireless Mouse\"", \""Monitor\""]",267.29,{},267445,1,"""Asia""" +2024-02-12,20687,4416,"[\""Keyboard\"", \""Tablet\""]",1097.32,{},49682,0,"""Africa""" +2024-08-19,20688,4315,"[\""Laptop\""]",1196.41,"{\""promo\"": \""30%\""}",148795,1,"""Asia""" +2024-08-12,20689,1545,"[\""Keyboard\"", \""Phone\""]",3483.89,{},134636,1,"""Asia""" +2023-05-22,20690,7897,"[\""Headphones\""]",2295.19,{},93455,1,"""Asia""" +2024-04-27,20691,8199,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1548.18,{},57806,1,"""Asia""" +2024-04-09,20692,5092,"[\""Charger\""]",3872.24,"{\""promo\"": \""18%\""}",68795,0,"""North America""" +2023-03-06,20693,5413,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2833.33,{},247666,0,"""North America""" +2024-11-08,20694,1250,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1983.73,"{\""seasonal\"": \""28%\""}",254056,0,"""Africa""" +2024-08-07,20695,9768,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2560.9,{},287692,0,"""Europe""" +2024-02-29,20696,4545,"[\""Monitor\""]",2324.45,{},28663,1,"""Africa""" +2023-04-14,20697,7363,"[\""Phone\"", \""Monitor\""]",4991.55,{},299365,1,"""Europe""" +2023-04-28,20698,9050,"[\""Headphones\"", \""Keyboard\""]",4080.43,"{\""seasonal\"": \""25%\""}",127508,0,"""Europe""" +2024-03-06,20699,4505,"[\""Wireless Mouse\"", \""Headphones\""]",4046.25,"{\""loyalty\"": \""22%\""}",150156,0,"""South America""" +2023-06-23,20700,6458,"[\""Wireless Mouse\"", \""Headphones\""]",4296.43,{},133715,0,"""Africa""" +2024-10-11,20701,8612,"[\""Phone\"", \""Headphones\""]",1000.02,"{\""promo\"": \""22%\""}",191335,1,"""North America""" +2023-07-14,20702,735,"[\""Wireless Mouse\""]",2811.29,"{\"": \""11%\""}",285929,1,"""Asia""" +2024-10-11,20703,1251,"[\""Keyboard\""]",4740.78,"{\""loyalty\"": \""22%\""}",97286,0,"""Asia""" +2023-02-21,20704,5882,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1160.43,{},110084,0,"""Asia""" +2023-04-16,20705,1985,"[\""Laptop\""]",936.15,"{\""loyalty\"": \""20%\""}",81372,0,"""South America""" +2023-02-17,20706,2222,"[\""Charger\""]",2633.39,{},90679,0,"""North America""" +2023-06-03,20707,1906,"[\""Monitor\"", \""Keyboard\""]",1795.39,{},95601,0,"""Asia""" +2023-04-18,20708,943,"[\""Monitor\"", \""Headphones\""]",2789.08,{},295506,0,"""Europe""" +2023-01-26,20709,3663,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3044.88,{},190906,1,"""Asia""" +2023-09-13,20710,2379,"[\""Keyboard\"", \""Monitor\""]",4798.22,{},143848,0,"""North America""" +2024-06-02,20711,3062,"[\""Phone\""]",4740.04,"{\"": \""20%\""}",44937,0,"""Europe""" +2024-01-10,20712,4006,"[\""Charger\"", \""Laptop\""]",4223.02,"{\""loyalty\"": \""14%\""}",7795,0,"""Africa""" +2023-05-21,20713,2178,"[\""Tablet\""]",174.69,"{\""seasonal\"": \""12%\""}",65573,0,"""North America""" +2024-03-15,20714,2954,"[\""Phone\""]",1722.01,{},222395,1,"""Europe""" +2024-09-24,20715,9459,"[\""Wireless Mouse\"", \""Charger\""]",2343.43,"{\""loyalty\"": \""7%\""}",153909,1,"""North America""" +2024-11-06,20716,9333,"[\""Laptop\"", \""Monitor\""]",450.08,{},121723,0,"""Asia""" +2024-11-02,20717,4279,"[\""Phone\"", \""Laptop\""]",1097.89,{},88871,1,"""South America""" +2023-03-09,20718,8273,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",260.23,"{\""seasonal\"": \""5%\""}",99241,0,"""Asia""" +2024-11-23,20719,9863,"[\""Keyboard\"", \""Headphones\""]",1362.21,{},298922,0,"""Africa""" +2024-08-15,20720,1654,"[\""Phone\"", \""Wireless Mouse\""]",327.36,{},218254,1,"""Europe""" +2023-12-21,20721,3305,"[\""Charger\""]",2789.68,{},199875,0,"""Africa""" +2024-12-17,20722,3460,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4017.6,"{\""loyalty\"": \""25%\""}",7311,1,"""North America""" +2024-02-17,20723,9068,"[\""Phone\""]",578.85,"{\"": \""15%\""}",294365,1,"""Europe""" +2023-05-26,20724,1651,"[\""Laptop\""]",572.94,"{\""loyalty\"": \""23%\""}",297193,0,"""Asia""" +2024-09-19,20725,6271,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4254.26,"{\""loyalty\"": \""14%\""}",49295,1,"""South America""" +2023-12-11,20726,6836,"[\""Tablet\""]",2964.26,{},162597,0,"""South America""" +2024-12-07,20727,4950,"[\""Monitor\"", \""Keyboard\""]",4294.84,"{\""seasonal\"": \""9%\""}",209931,1,"""Africa""" +2023-04-15,20728,1412,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3958.23,{},288326,0,"""Africa""" +2023-07-30,20729,1449,"[\""Tablet\""]",531.77,{},133881,1,"""South America""" +2023-01-19,20730,3887,"[\""Keyboard\"", \""Phone\""]",2985.66,{},180976,0,"""Europe""" +2024-01-15,20731,6812,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3432.17,{},83546,0,"""North America""" +2023-11-17,20732,5597,"[\""Monitor\""]",2574.02,{},194300,0,"""Europe""" +2024-04-30,20733,2089,"[\""Laptop\""]",1616.39,{},19788,0,"""North America""" +2023-02-13,20734,7001,"[\""Tablet\""]",2353.92,"{\""loyalty\"": \""21%\""}",88784,0,"""Africa""" +2024-05-31,20735,5511,"[\""Headphones\""]",1517.62,"{\""loyalty\"": \""11%\""}",284042,1,"""South America""" +2024-09-25,20736,5884,"[\""Charger\""]",2427.22,"{\""loyalty\"": \""28%\""}",295777,0,"""North America""" +2024-02-08,20737,5858,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2863.92,{},278213,0,"""Africa""" +2024-05-11,20738,30,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3260.06,{},1638,1,"""Europe""" +2024-09-11,20739,2210,"[\""Wireless Mouse\""]",3527.41,{},96401,0,"""Africa""" +2023-06-17,20740,4581,"[\""Monitor\"", \""Keyboard\""]",2595.79,{},175558,0,"""Asia""" +2023-10-17,20741,6624,"[\""Keyboard\"", \""Charger\""]",999.47,{},69635,1,"""Africa""" +2023-07-10,20742,9009,"[\""Monitor\""]",540.61,"{\"": \""11%\""}",173768,0,"""Europe""" +2024-11-10,20743,3654,"[\""Monitor\"", \""Headphones\""]",1755.46,{},105374,0,"""Asia""" +2024-05-24,20744,399,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",840.87,"{\"": \""10%\""}",5551,0,"""Asia""" +2024-02-06,20745,9297,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4508.46,"{\""seasonal\"": \""22%\""}",230203,0,"""Asia""" +2023-08-12,20746,6511,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1578.01,{},94053,1,"""Europe""" +2024-04-27,20747,707,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",901.17,"{\""seasonal\"": \""11%\""}",81241,1,"""South America""" +2024-04-22,20748,1407,"[\""Laptop\""]",2319.99,"{\"": \""22%\""}",92372,1,"""South America""" +2023-09-30,20749,1940,"[\""Headphones\""]",2556.7,"{\""loyalty\"": \""24%\""}",264004,0,"""Europe""" +2024-09-01,20750,4531,"[\""Headphones\""]",3883.37,"{\"": \""13%\""}",197938,0,"""Asia""" +2024-04-22,20751,7535,"[\""Keyboard\""]",3572.72,{},3625,0,"""South America""" +2024-07-28,20752,3197,"[\""Keyboard\"", \""Phone\""]",4503.77,{},15676,0,"""Europe""" +2024-02-22,20753,6575,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1314.03,{},266851,0,"""Africa""" +2023-06-27,20754,4082,"[\""Headphones\""]",4433.19,"{\""loyalty\"": \""5%\""}",156881,0,"""Africa""" +2024-01-06,20755,2331,"[\""Headphones\"", \""Monitor\""]",4131.76,{},90538,1,"""Asia""" +2023-11-02,20756,186,"[\""Charger\""]",1677.6,"{\"": \""5%\""}",33065,0,"""Europe""" +2023-08-20,20757,1817,"[\""Monitor\""]",3969.06,{},253497,1,"""North America""" +2024-07-07,20758,8461,"[\""Tablet\""]",2914.93,"{\""loyalty\"": \""16%\""}",231118,0,"""North America""" +2023-11-12,20759,6814,"[\""Headphones\""]",1380.74,"{\"": \""13%\""}",271133,1,"""North America""" +2024-07-01,20760,6937,"[\""Wireless Mouse\""]",1897.91,"{\""loyalty\"": \""11%\""}",94856,0,"""Europe""" +2023-11-05,20761,3441,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4214.04,"{\"": \""24%\""}",37994,0,"""Africa""" +2024-09-06,20762,2511,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4602.96,"{\""loyalty\"": \""28%\""}",81706,1,"""North America""" +2023-03-14,20763,7630,"[\""Keyboard\"", \""Tablet\""]",1356.93,{},35783,0,"""Asia""" +2024-04-26,20764,4218,"[\""Charger\""]",4959.29,{},195797,1,"""South America""" +2023-02-15,20765,5011,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3736.86,"{\""promo\"": \""19%\""}",265928,0,"""Africa""" +2023-03-09,20766,1402,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4790.03,"{\""seasonal\"": \""26%\""}",66073,1,"""North America""" +2024-09-19,20767,3137,"[\""Keyboard\"", \""Phone\""]",2603.71,"{\"": \""7%\""}",82528,1,"""North America""" +2023-04-16,20768,5046,"[\""Monitor\""]",1637.61,{},195239,0,"""South America""" +2024-07-19,20769,6989,"[\""Headphones\"", \""Phone\""]",2826.24,{},2335,0,"""Europe""" +2024-04-04,20770,4552,"[\""Keyboard\""]",3005.89,{},28844,0,"""North America""" +2024-07-15,20771,7711,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4536.43,"{\""seasonal\"": \""5%\""}",25932,0,"""South America""" +2024-02-08,20772,9225,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4986.32,"{\""loyalty\"": \""18%\""}",223978,0,"""Africa""" +2023-04-26,20773,2999,"[\""Tablet\""]",2027.35,"{\""loyalty\"": \""11%\""}",292166,0,"""Asia""" +2023-10-21,20774,3174,"[\""Tablet\""]",4765.82,{},82412,0,"""Asia""" +2023-08-02,20775,8940,"[\""Headphones\"", \""Monitor\""]",1502.98,"{\"": \""12%\""}",230360,1,"""South America""" +2024-02-18,20776,8399,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4905.96,"{\"": \""14%\""}",90938,0,"""Asia""" +2023-04-14,20777,8122,"[\""Keyboard\"", \""Monitor\""]",86.95,"{\""loyalty\"": \""24%\""}",104857,1,"""South America""" +2024-10-07,20778,8923,"[\""Laptop\""]",3910.79,"{\""promo\"": \""26%\""}",277251,1,"""Asia""" +2024-07-25,20779,9958,"[\""Tablet\"", \""Charger\""]",174.93,{},36134,1,"""Asia""" +2024-02-26,20780,1663,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1837.36,"{\""promo\"": \""7%\""}",57854,1,"""Europe""" +2023-02-26,20781,4850,"[\""Laptop\""]",3536.58,{},186919,0,"""Asia""" +2023-02-07,20782,6762,"[\""Laptop\"", \""Headphones\""]",3603.0,{},4709,0,"""Europe""" +2024-06-09,20783,8578,"[\""Keyboard\""]",4085.32,{},57739,1,"""South America""" +2024-03-31,20784,2085,"[\""Wireless Mouse\"", \""Headphones\""]",3600.18,"{\""seasonal\"": \""9%\""}",142830,0,"""Europe""" +2024-10-06,20785,8408,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4469.51,"{\"": \""29%\""}",53837,0,"""Asia""" +2023-07-31,20786,1548,"[\""Wireless Mouse\""]",2167.81,"{\""promo\"": \""7%\""}",242525,1,"""South America""" +2023-12-24,20787,8135,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3351.58,"{\""loyalty\"": \""5%\""}",164170,1,"""Asia""" +2023-06-19,20788,2183,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2052.15,"{\"": \""29%\""}",151895,1,"""North America""" +2024-12-19,20789,5122,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3262.28,"{\""seasonal\"": \""14%\""}",216201,0,"""Asia""" +2024-01-16,20790,5229,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1022.39,"{\"": \""22%\""}",246863,1,"""Europe""" +2023-09-27,20791,9595,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4306.24,"{\""seasonal\"": \""11%\""}",214438,1,"""North America""" +2024-02-07,20792,4071,"[\""Phone\""]",3113.3,"{\""promo\"": \""16%\""}",112621,1,"""South America""" +2023-04-12,20793,7737,"[\""Headphones\"", \""Laptop\""]",1324.94,"{\"": \""20%\""}",289894,1,"""South America""" +2024-03-28,20794,9537,"[\""Monitor\"", \""Keyboard\""]",4371.19,"{\""loyalty\"": \""23%\""}",92181,0,"""Asia""" +2023-05-17,20795,691,"[\""Keyboard\""]",3032.52,{},47326,1,"""North America""" +2023-08-30,20796,5195,"[\""Keyboard\""]",2109.52,{},118124,1,"""Africa""" +2024-02-25,20797,2327,"[\""Keyboard\""]",3973.85,"{\""promo\"": \""25%\""}",246844,0,"""Europe""" +2023-07-11,20798,1406,"[\""Laptop\""]",2376.24,{},251796,0,"""South America""" +2023-06-14,20799,2226,"[\""Wireless Mouse\""]",1725.59,"{\"": \""26%\""}",104152,1,"""Asia""" +2024-02-26,20800,8081,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3517.67,{},244985,0,"""Europe""" +2023-12-01,20801,7193,"[\""Headphones\""]",94.04,"{\""promo\"": \""29%\""}",280575,1,"""North America""" +2023-07-06,20802,2145,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2488.49,{},48822,0,"""Europe""" +2023-03-06,20803,9622,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1593.31,"{\""seasonal\"": \""24%\""}",174594,0,"""Europe""" +2024-03-03,20804,192,"[\""Charger\""]",1914.32,"{\""promo\"": \""26%\""}",71049,0,"""North America""" +2023-08-17,20805,660,"[\""Monitor\"", \""Charger\""]",4868.64,"{\"": \""28%\""}",106714,1,"""Africa""" +2023-05-19,20806,1973,"[\""Tablet\"", \""Monitor\""]",1602.57,"{\"": \""7%\""}",256018,1,"""Africa""" +2024-10-27,20807,4944,"[\""Wireless Mouse\"", \""Tablet\""]",4473.0,{},29801,0,"""Asia""" +2024-07-23,20808,8910,"[\""Laptop\""]",2450.79,"{\""seasonal\"": \""29%\""}",33897,0,"""Asia""" +2024-01-25,20809,9703,"[\""Keyboard\"", \""Headphones\""]",829.46,"{\""promo\"": \""8%\""}",135124,1,"""North America""" +2024-11-04,20810,9395,"[\""Laptop\""]",3204.16,"{\""promo\"": \""25%\""}",252203,0,"""Africa""" +2023-05-21,20811,7381,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4265.88,{},219953,0,"""North America""" +2023-03-03,20812,2018,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2545.75,{},217618,0,"""South America""" +2023-10-16,20813,1647,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",848.47,"{\""seasonal\"": \""20%\""}",205472,0,"""North America""" +2024-01-21,20814,3973,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2624.57,{},45216,0,"""North America""" +2023-05-07,20815,3968,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1356.67,"{\""loyalty\"": \""10%\""}",239166,0,"""Europe""" +2024-12-06,20816,1716,"[\""Tablet\""]",3344.86,{},77115,1,"""South America""" +2023-06-05,20817,6058,"[\""Charger\"", \""Headphones\""]",1223.05,"{\""promo\"": \""6%\""}",206740,0,"""South America""" +2023-07-19,20818,4084,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4572.83,"{\"": \""20%\""}",293351,0,"""Africa""" +2024-03-08,20819,5200,"[\""Headphones\"", \""Monitor\""]",1863.54,{},171200,1,"""Asia""" +2023-05-23,20820,9352,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3086.28,"{\"": \""28%\""}",147019,1,"""North America""" +2023-10-05,20821,6031,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1262.87,"{\""promo\"": \""12%\""}",112037,0,"""North America""" +2024-09-21,20822,5653,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",795.52,{},70891,1,"""Africa""" +2023-01-19,20823,8342,"[\""Phone\"", \""Tablet\""]",158.42,"{\""promo\"": \""9%\""}",216734,0,"""North America""" +2024-07-30,20824,9998,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",281.46,"{\""loyalty\"": \""18%\""}",134240,0,"""Asia""" +2023-10-05,20825,724,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",751.54,"{\""seasonal\"": \""14%\""}",141049,0,"""Europe""" +2024-02-12,20826,1013,"[\""Keyboard\"", \""Laptop\""]",4355.61,"{\""seasonal\"": \""17%\""}",147575,0,"""Asia""" +2024-09-18,20827,5952,"[\""Headphones\"", \""Phone\""]",2925.02,{},91727,1,"""South America""" +2023-01-13,20828,4126,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3205.35,{},126624,0,"""South America""" +2024-10-31,20829,2197,"[\""Monitor\""]",4141.55,"{\""loyalty\"": \""10%\""}",151509,0,"""Europe""" +2023-05-27,20830,1881,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",916.31,{},28166,0,"""North America""" +2023-12-20,20831,1279,"[\""Keyboard\""]",3163.22,{},53977,1,"""South America""" +2024-08-14,20832,8266,"[\""Wireless Mouse\"", \""Laptop\""]",2471.55,{},245088,1,"""Africa""" +2024-12-28,20833,5980,"[\""Tablet\""]",3729.96,{},297268,1,"""Africa""" +2023-07-01,20834,2357,"[\""Wireless Mouse\"", \""Phone\""]",561.43,"{\""seasonal\"": \""17%\""}",203903,1,"""Africa""" +2024-01-03,20835,3678,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2553.77,{},187990,0,"""North America""" +2024-05-13,20836,5095,"[\""Monitor\""]",2949.51,"{\"": \""10%\""}",285940,1,"""Africa""" +2024-06-24,20837,2135,"[\""Monitor\"", \""Wireless Mouse\""]",3081.1,"{\""loyalty\"": \""22%\""}",203966,0,"""Asia""" +2024-11-02,20838,1314,"[\""Monitor\""]",3142.64,"{\""promo\"": \""11%\""}",111740,1,"""Africa""" +2024-10-20,20839,502,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1062.55,{},274709,1,"""North America""" +2024-11-02,20840,6808,"[\""Keyboard\""]",1365.67,{},181351,1,"""South America""" +2024-01-04,20841,4596,"[\""Headphones\"", \""Laptop\""]",2328.38,{},296091,1,"""Europe""" +2024-10-11,20842,490,"[\""Laptop\""]",3099.83,{},163745,0,"""Europe""" +2024-06-27,20843,4939,"[\""Charger\"", \""Wireless Mouse\""]",3753.85,"{\""promo\"": \""28%\""}",61888,0,"""Africa""" +2023-05-24,20844,1957,"[\""Wireless Mouse\""]",4095.98,"{\""loyalty\"": \""17%\""}",168403,1,"""North America""" +2023-12-28,20845,8832,"[\""Charger\"", \""Monitor\""]",3263.72,{},190929,1,"""North America""" +2023-01-14,20846,6270,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2247.14,{},243919,1,"""Europe""" +2024-07-07,20847,2834,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",609.6,{},251002,1,"""Asia""" +2024-07-01,20848,3184,"[\""Laptop\"", \""Wireless Mouse\""]",962.93,{},163322,1,"""Europe""" +2024-07-06,20849,7446,"[\""Tablet\""]",4975.5,"{\""loyalty\"": \""24%\""}",236131,1,"""Europe""" +2024-06-28,20850,9381,"[\""Monitor\""]",1212.41,"{\""promo\"": \""10%\""}",10825,0,"""Asia""" +2024-01-28,20851,1756,"[\""Monitor\"", \""Phone\""]",3308.57,{},120974,0,"""North America""" +2023-08-07,20852,9080,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1526.4,"{\""seasonal\"": \""23%\""}",268954,1,"""South America""" +2023-01-01,20853,2201,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",585.68,{},286970,0,"""Africa""" +2024-11-26,20854,4816,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1946.82,{},18406,0,"""Africa""" +2024-07-01,20855,1350,"[\""Laptop\""]",3890.45,{},265991,0,"""Europe""" +2024-01-29,20856,5499,"[\""Monitor\"", \""Wireless Mouse\""]",1443.89,"{\""promo\"": \""20%\""}",9237,0,"""Europe""" +2024-03-26,20857,2720,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3230.27,"{\""loyalty\"": \""17%\""}",182310,1,"""North America""" +2024-07-23,20858,9538,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2421.36,{},56347,0,"""Asia""" +2024-12-21,20859,7069,"[\""Charger\"", \""Tablet\""]",748.9,"{\""loyalty\"": \""17%\""}",247437,0,"""Europe""" +2024-01-30,20860,2368,"[\""Phone\""]",4487.8,"{\""seasonal\"": \""26%\""}",289461,1,"""North America""" +2024-12-23,20861,7278,"[\""Tablet\"", \""Laptop\""]",343.54,{},17292,0,"""Asia""" +2024-05-28,20862,8246,"[\""Wireless Mouse\"", \""Laptop\""]",1826.96,{},235629,0,"""South America""" +2023-08-05,20863,3201,"[\""Phone\""]",2752.42,"{\""promo\"": \""26%\""}",64904,0,"""South America""" +2024-02-24,20864,6660,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2898.08,{},84134,0,"""Africa""" +2023-11-25,20865,9034,"[\""Keyboard\"", \""Tablet\""]",1821.15,{},197147,1,"""Africa""" +2024-06-29,20866,5738,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2621.77,{},51672,0,"""Africa""" +2024-08-01,20867,6788,"[\""Keyboard\"", \""Charger\""]",1572.6,"{\""seasonal\"": \""18%\""}",166618,0,"""North America""" +2024-12-27,20868,1747,"[\""Monitor\""]",1590.67,{},260823,1,"""Europe""" +2023-03-03,20869,168,"[\""Monitor\""]",3801.64,"{\""loyalty\"": \""25%\""}",118977,1,"""Africa""" +2023-09-09,20870,5063,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1981.03,{},83301,1,"""Africa""" +2023-03-10,20871,523,"[\""Headphones\"", \""Laptop\""]",1617.1,{},193821,0,"""Asia""" +2023-01-16,20872,7074,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3541.97,{},222870,1,"""North America""" +2024-09-30,20873,2099,"[\""Charger\"", \""Wireless Mouse\""]",2789.19,{},137926,0,"""Europe""" +2024-10-15,20874,7314,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1112.1,"{\"": \""9%\""}",67789,1,"""Africa""" +2023-05-04,20875,7494,"[\""Phone\"", \""Laptop\""]",3454.28,{},220908,0,"""North America""" +2023-11-24,20876,6658,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3549.7,"{\""seasonal\"": \""5%\""}",99145,0,"""Asia""" +2024-01-28,20877,5010,"[\""Headphones\""]",4487.2,{},166312,0,"""South America""" +2024-10-07,20878,7273,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1640.13,"{\""loyalty\"": \""18%\""}",269493,1,"""North America""" +2023-10-19,20879,5932,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1684.17,"{\""seasonal\"": \""24%\""}",201029,0,"""Asia""" +2024-04-03,20880,2065,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",367.31,"{\""seasonal\"": \""22%\""}",200941,0,"""Europe""" +2024-05-21,20881,6314,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2016.18,{},146778,0,"""Asia""" +2024-06-19,20882,7752,"[\""Wireless Mouse\"", \""Tablet\""]",2223.14,"{\"": \""19%\""}",257972,0,"""Europe""" +2023-05-06,20883,7450,"[\""Phone\"", \""Keyboard\""]",3775.77,{},58450,1,"""Europe""" +2023-09-23,20884,1848,"[\""Laptop\""]",2528.91,"{\""seasonal\"": \""24%\""}",67851,0,"""North America""" +2024-11-23,20885,8640,"[\""Wireless Mouse\""]",4733.21,"{\""promo\"": \""10%\""}",196429,0,"""South America""" +2023-01-10,20886,2698,"[\""Wireless Mouse\"", \""Charger\""]",3492.85,{},89224,0,"""Europe""" +2024-11-22,20887,519,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2027.74,{},263475,0,"""South America""" +2024-12-02,20888,5710,"[\""Tablet\"", \""Wireless Mouse\""]",3380.0,"{\"": \""7%\""}",288174,0,"""South America""" +2024-03-22,20889,5658,"[\""Laptop\"", \""Phone\""]",1954.35,"{\"": \""20%\""}",239773,0,"""Europe""" +2023-05-28,20890,8435,"[\""Monitor\"", \""Laptop\""]",1088.59,{},5725,0,"""Europe""" +2023-12-20,20891,5543,"[\""Wireless Mouse\"", \""Tablet\""]",4399.65,"{\""seasonal\"": \""23%\""}",142906,0,"""North America""" +2023-11-26,20892,1396,"[\""Tablet\"", \""Monitor\""]",1013.72,{},203695,1,"""Europe""" +2024-05-22,20893,845,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2487.12,{},41341,1,"""South America""" +2023-03-09,20894,9592,"[\""Tablet\""]",858.25,{},50157,1,"""Europe""" +2023-11-29,20895,4053,"[\""Keyboard\"", \""Tablet\""]",1546.09,{},216765,0,"""North America""" +2024-05-29,20896,6259,"[\""Charger\"", \""Laptop\""]",3305.85,{},79399,1,"""Europe""" +2023-10-13,20897,5255,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",716.55,"{\"": \""22%\""}",72618,1,"""Africa""" +2023-09-04,20898,5826,"[\""Keyboard\"", \""Tablet\""]",622.2,"{\""promo\"": \""15%\""}",295721,0,"""North America""" +2024-06-06,20899,4686,"[\""Keyboard\""]",402.51,{},43321,0,"""Asia""" +2023-07-04,20900,1144,"[\""Phone\"", \""Wireless Mouse\""]",4364.17,"{\""seasonal\"": \""11%\""}",257075,1,"""Europe""" +2024-01-29,20901,8496,"[\""Monitor\"", \""Headphones\""]",3130.53,"{\""seasonal\"": \""24%\""}",200975,1,"""South America""" +2023-03-10,20902,1535,"[\""Laptop\""]",2812.87,{},130441,0,"""Europe""" +2024-01-18,20903,5633,"[\""Wireless Mouse\"", \""Charger\""]",618.86,"{\""seasonal\"": \""11%\""}",211371,0,"""Africa""" +2024-05-04,20904,9643,"[\""Phone\"", \""Tablet\""]",1782.96,{},114931,0,"""North America""" +2023-08-10,20905,6689,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2410.4,{},158582,0,"""Europe""" +2024-03-15,20906,1259,"[\""Monitor\"", \""Headphones\""]",1942.77,"{\"": \""7%\""}",286635,1,"""South America""" +2024-02-03,20907,1649,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3244.63,{},148918,1,"""North America""" +2024-12-24,20908,5424,"[\""Monitor\""]",4644.9,{},299540,0,"""North America""" +2023-12-28,20909,8000,"[\""Phone\"", \""Monitor\""]",2753.66,"{\""seasonal\"": \""12%\""}",37583,0,"""Africa""" +2024-05-23,20910,2891,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2223.53,{},284836,1,"""Europe""" +2024-06-18,20911,3413,"[\""Phone\""]",2584.51,{},4634,1,"""North America""" +2023-05-24,20912,3713,"[\""Charger\"", \""Wireless Mouse\""]",1274.4,{},225388,0,"""Asia""" +2024-05-17,20913,3724,"[\""Laptop\"", \""Tablet\""]",3347.69,{},170837,1,"""Europe""" +2024-02-20,20914,9174,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4777.84,{},59976,0,"""North America""" +2024-02-08,20915,7004,"[\""Laptop\"", \""Monitor\""]",3562.47,{},256395,0,"""Europe""" +2024-01-11,20916,2515,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3330.28,{},146883,1,"""Africa""" +2023-11-28,20917,9104,"[\""Tablet\"", \""Laptop\""]",3060.45,{},57827,0,"""South America""" +2024-09-27,20918,4433,"[\""Laptop\"", \""Monitor\""]",4239.18,{},12516,0,"""South America""" +2023-01-24,20919,1315,"[\""Tablet\""]",3990.91,"{\""promo\"": \""10%\""}",150974,1,"""Europe""" +2023-10-30,20920,1169,"[\""Monitor\"", \""Charger\""]",624.44,{},196208,1,"""Europe""" +2023-06-17,20921,6694,"[\""Tablet\"", \""Laptop\""]",983.66,{},174128,1,"""Asia""" +2024-01-06,20922,3438,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3095.82,{},120206,0,"""Africa""" +2024-08-09,20923,8963,"[\""Monitor\"", \""Charger\""]",3402.43,{},157547,0,"""North America""" +2023-01-26,20924,8755,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2644.6,{},241712,1,"""South America""" +2023-04-07,20925,5361,"[\""Wireless Mouse\"", \""Headphones\""]",4190.84,{},267509,0,"""Asia""" +2024-10-26,20926,5023,"[\""Laptop\"", \""Monitor\""]",1118.97,{},108905,0,"""Europe""" +2024-08-11,20927,673,"[\""Keyboard\""]",3546.14,"{\"": \""15%\""}",49501,0,"""North America""" +2023-04-13,20928,2631,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",730.66,{},194457,0,"""Europe""" +2024-11-05,20929,1548,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2837.66,"{\""loyalty\"": \""19%\""}",221422,0,"""Africa""" +2024-11-21,20930,4454,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4277.56,"{\""seasonal\"": \""14%\""}",262388,1,"""Asia""" +2023-01-17,20931,2489,"[\""Charger\"", \""Monitor\""]",2291.99,{},74294,1,"""Europe""" +2024-10-29,20932,2208,"[\""Wireless Mouse\""]",68.56,{},260769,0,"""Europe""" +2024-09-29,20933,2684,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1876.39,{},253585,0,"""Europe""" +2023-08-21,20934,5510,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2658.4,{},293335,1,"""North America""" +2023-01-03,20935,4234,"[\""Wireless Mouse\"", \""Charger\""]",4530.01,{},244797,0,"""South America""" +2024-01-12,20936,2364,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3863.72,{},164060,0,"""South America""" +2023-11-21,20937,4829,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",347.29,"{\"": \""28%\""}",52138,0,"""Africa""" +2024-08-08,20938,1140,"[\""Headphones\"", \""Phone\""]",2101.48,"{\"": \""25%\""}",66740,0,"""North America""" +2024-04-27,20939,4578,"[\""Charger\"", \""Phone\""]",1957.92,{},37652,0,"""South America""" +2023-09-04,20940,3490,"[\""Keyboard\"", \""Headphones\""]",1933.14,{},64958,0,"""Africa""" +2024-01-25,20941,7132,"[\""Laptop\"", \""Monitor\""]",2378.1,{},75621,0,"""Europe""" +2024-07-08,20942,9135,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2536.33,"{\""seasonal\"": \""11%\""}",56182,1,"""Asia""" +2024-05-23,20943,5138,"[\""Headphones\""]",734.52,"{\""loyalty\"": \""5%\""}",96446,0,"""North America""" +2023-11-18,20944,1612,"[\""Keyboard\"", \""Phone\""]",798.03,{},176316,1,"""Asia""" +2023-10-26,20945,1390,"[\""Phone\""]",1487.47,"{\""promo\"": \""29%\""}",76341,0,"""Europe""" +2023-05-03,20946,8203,"[\""Phone\"", \""Laptop\""]",3069.19,"{\""promo\"": \""20%\""}",259600,1,"""Asia""" +2023-06-04,20947,9370,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3492.75,{},184584,1,"""North America""" +2024-04-14,20948,8697,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4032.66,"{\""loyalty\"": \""6%\""}",43335,0,"""Africa""" +2023-04-18,20949,3793,"[\""Tablet\"", \""Charger\""]",2171.21,"{\"": \""19%\""}",121902,0,"""Africa""" +2023-07-04,20950,5123,"[\""Tablet\""]",371.42,"{\"": \""19%\""}",216640,1,"""Africa""" +2023-10-31,20951,3483,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4874.66,"{\""seasonal\"": \""23%\""}",183488,0,"""Europe""" +2024-10-28,20952,7777,"[\""Charger\""]",1291.79,"{\""promo\"": \""24%\""}",105544,0,"""Asia""" +2023-02-17,20953,6733,"[\""Headphones\""]",2798.09,{},230330,0,"""Asia""" +2023-10-24,20954,3169,"[\""Headphones\"", \""Charger\"", \""Phone\""]",689.39,{},86010,1,"""Africa""" +2023-06-21,20955,2270,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",969.24,{},180290,0,"""South America""" +2023-10-07,20956,6286,"[\""Charger\""]",2543.36,{},208476,0,"""Africa""" +2023-01-30,20957,9189,"[\""Phone\"", \""Laptop\""]",678.89,"{\""seasonal\"": \""25%\""}",58352,1,"""South America""" +2023-11-21,20958,5189,"[\""Charger\"", \""Tablet\""]",4843.78,"{\""loyalty\"": \""21%\""}",132219,1,"""North America""" +2023-06-19,20959,9172,"[\""Headphones\"", \""Monitor\""]",4304.22,{},282678,0,"""South America""" +2024-11-05,20960,3738,"[\""Phone\"", \""Headphones\""]",4201.73,"{\"": \""6%\""}",230455,0,"""Europe""" +2023-06-10,20961,8742,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",343.25,"{\""loyalty\"": \""15%\""}",117041,1,"""Asia""" +2023-12-05,20962,9299,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4383.49,"{\"": \""8%\""}",129239,1,"""Africa""" +2023-02-15,20963,8786,"[\""Monitor\""]",502.11,"{\""loyalty\"": \""30%\""}",17163,0,"""Africa""" +2023-02-04,20964,1323,"[\""Tablet\"", \""Headphones\""]",427.08,{},161666,1,"""Europe""" +2024-08-13,20965,768,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4570.67,{},187478,0,"""Africa""" +2023-10-06,20966,5218,"[\""Keyboard\"", \""Phone\""]",4288.07,"{\""loyalty\"": \""30%\""}",131513,0,"""North America""" +2023-06-20,20967,502,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4602.71,"{\""loyalty\"": \""16%\""}",242287,1,"""Europe""" +2023-10-03,20968,2283,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1147.43,{},27555,0,"""Africa""" +2024-12-31,20969,1247,"[\""Keyboard\"", \""Laptop\""]",2531.16,"{\"": \""13%\""}",78541,0,"""Africa""" +2023-07-25,20970,6570,"[\""Wireless Mouse\""]",740.6,{},70055,0,"""Europe""" +2024-12-03,20971,7136,"[\""Keyboard\"", \""Wireless Mouse\""]",3059.09,{},126724,0,"""South America""" +2023-02-28,20972,6432,"[\""Laptop\"", \""Phone\""]",1768.18,"{\""seasonal\"": \""11%\""}",268442,1,"""North America""" +2023-03-06,20973,827,"[\""Laptop\""]",533.11,"{\"": \""29%\""}",21813,1,"""South America""" +2023-10-08,20974,2156,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3566.49,{},30809,1,"""South America""" +2024-03-19,20975,6730,"[\""Wireless Mouse\"", \""Charger\""]",4208.03,"{\""seasonal\"": \""29%\""}",274855,1,"""South America""" +2024-05-10,20976,4645,"[\""Keyboard\"", \""Charger\""]",4448.41,"{\""promo\"": \""25%\""}",118598,0,"""Europe""" +2023-11-25,20977,7910,"[\""Headphones\"", \""Wireless Mouse\""]",4333.97,"{\""promo\"": \""6%\""}",32788,0,"""North America""" +2023-08-16,20978,6511,"[\""Keyboard\""]",2957.76,{},73344,0,"""North America""" +2023-03-02,20979,6034,"[\""Headphones\"", \""Keyboard\""]",451.51,{},139693,0,"""Europe""" +2023-04-18,20980,3276,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",762.26,"{\"": \""25%\""}",101560,1,"""South America""" +2023-12-04,20981,9762,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4779.89,{},224621,1,"""South America""" +2024-07-29,20982,6299,"[\""Monitor\"", \""Wireless Mouse\""]",73.3,{},294456,1,"""Africa""" +2024-05-02,20983,5695,"[\""Wireless Mouse\""]",63.57,{},76316,0,"""Europe""" +2024-12-05,20984,3045,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4759.43,{},153702,1,"""Europe""" +2023-05-14,20985,6489,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4158.83,"{\""seasonal\"": \""16%\""}",286120,0,"""Europe""" +2023-02-21,20986,3858,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3331.42,{},161155,1,"""Asia""" +2023-06-19,20987,4508,"[\""Keyboard\"", \""Headphones\""]",4492.38,{},26293,0,"""Asia""" +2024-11-23,20988,8027,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1904.48,{},287947,1,"""Europe""" +2023-07-15,20989,38,"[\""Keyboard\"", \""Monitor\""]",4843.35,{},295574,0,"""Asia""" +2023-11-26,20990,1784,"[\""Tablet\""]",3102.26,{},128102,0,"""South America""" +2024-07-28,20991,1524,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1928.23,"{\""loyalty\"": \""15%\""}",164853,1,"""Africa""" +2023-09-30,20992,9790,"[\""Keyboard\"", \""Charger\""]",1979.98,{},140143,0,"""South America""" +2024-01-19,20993,4690,"[\""Laptop\""]",586.6,"{\""loyalty\"": \""16%\""}",215302,0,"""Asia""" +2024-12-08,20994,8091,"[\""Phone\""]",3895.65,"{\""loyalty\"": \""18%\""}",162516,1,"""South America""" +2023-09-17,20995,8655,"[\""Headphones\""]",3998.95,"{\""loyalty\"": \""19%\""}",207585,1,"""Africa""" +2023-03-07,20996,9863,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",362.44,"{\""promo\"": \""22%\""}",123889,0,"""Asia""" +2024-07-05,20997,9395,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1587.48,{},258164,0,"""Asia""" +2023-05-17,20998,7298,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2032.58,{},199301,0,"""Asia""" +2024-01-21,20999,7147,"[\""Headphones\"", \""Keyboard\""]",4002.65,"{\""promo\"": \""5%\""}",200029,1,"""Europe""" +2023-08-25,21000,3852,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3614.81,{},75106,1,"""South America""" +2024-06-29,21001,567,"[\""Headphones\"", \""Monitor\""]",3987.39,{},201007,1,"""Europe""" +2024-04-26,21002,5024,"[\""Keyboard\"", \""Charger\""]",569.98,{},27606,1,"""Asia""" +2023-01-19,21003,587,"[\""Phone\""]",2441.56,"{\""loyalty\"": \""9%\""}",16045,0,"""Africa""" +2023-06-20,21004,8889,"[\""Phone\""]",1030.17,{},94844,0,"""Africa""" +2023-09-28,21005,9138,"[\""Charger\""]",1541.86,"{\""seasonal\"": \""29%\""}",218321,0,"""Asia""" +2024-02-24,21006,5790,"[\""Keyboard\"", \""Tablet\""]",2542.54,"{\""promo\"": \""18%\""}",162938,0,"""South America""" +2024-04-06,21007,9458,"[\""Monitor\""]",276.62,{},244125,1,"""Asia""" +2024-05-22,21008,6922,"[\""Tablet\""]",848.57,{},252717,1,"""Asia""" +2024-01-13,21009,7710,"[\""Laptop\""]",4791.01,{},153432,0,"""North America""" +2024-08-25,21010,7919,"[\""Keyboard\""]",651.18,{},273789,0,"""Asia""" +2024-03-30,21011,752,"[\""Monitor\"", \""Laptop\""]",4642.01,{},6348,0,"""North America""" +2023-10-02,21012,8771,"[\""Tablet\""]",1599.5,{},177612,0,"""North America""" +2023-10-13,21013,5213,"[\""Headphones\""]",1884.83,"{\"": \""24%\""}",188507,0,"""Europe""" +2024-08-15,21014,8828,"[\""Tablet\"", \""Phone\""]",3969.94,{},167845,1,"""South America""" +2024-03-15,21015,3989,"[\""Charger\""]",3106.61,"{\""seasonal\"": \""15%\""}",73928,0,"""South America""" +2023-08-23,21016,6672,"[\""Charger\""]",704.87,{},10529,0,"""North America""" +2024-02-09,21017,8835,"[\""Tablet\"", \""Wireless Mouse\""]",3684.58,{},173275,1,"""North America""" +2023-05-23,21018,5274,"[\""Laptop\""]",4833.09,{},153977,0,"""Africa""" +2023-04-05,21019,9765,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1049.01,"{\""promo\"": \""15%\""}",291138,0,"""North America""" +2024-11-11,21020,2814,"[\""Monitor\""]",2151.0,{},232383,0,"""North America""" +2024-02-18,21021,8362,"[\""Monitor\"", \""Headphones\""]",1071.38,{},141997,1,"""South America""" +2023-03-11,21022,8042,"[\""Phone\""]",3511.15,"{\""seasonal\"": \""27%\""}",60243,1,"""South America""" +2024-09-07,21023,8409,"[\""Keyboard\"", \""Phone\""]",1484.25,"{\"": \""29%\""}",253257,1,"""Europe""" +2023-11-11,21024,1766,"[\""Charger\"", \""Headphones\""]",3331.45,{},113091,1,"""South America""" +2023-02-04,21025,7837,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1990.25,"{\""promo\"": \""5%\""}",281244,1,"""Africa""" +2024-03-11,21026,5974,"[\""Phone\""]",2037.77,{},122915,0,"""Africa""" +2024-12-05,21027,7327,"[\""Tablet\"", \""Laptop\""]",4720.75,"{\"": \""22%\""}",243979,0,"""Asia""" +2024-12-30,21028,6632,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",613.13,"{\"": \""14%\""}",208551,0,"""Europe""" +2023-02-18,21029,1185,"[\""Headphones\""]",2194.13,{},89851,1,"""Africa""" +2024-05-23,21030,5677,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4518.41,{},133278,0,"""North America""" +2023-03-30,21031,8510,"[\""Phone\"", \""Headphones\""]",2538.33,{},164798,0,"""Africa""" +2023-11-29,21032,1779,"[\""Laptop\""]",2885.5,"{\"": \""19%\""}",134276,1,"""North America""" +2023-07-25,21033,8931,"[\""Wireless Mouse\"", \""Phone\""]",3088.3,"{\""seasonal\"": \""9%\""}",105973,0,"""North America""" +2023-04-26,21034,6883,"[\""Keyboard\""]",2436.03,{},20879,1,"""Europe""" +2024-02-17,21035,5775,"[\""Charger\"", \""Wireless Mouse\""]",2647.24,{},190486,1,"""North America""" +2024-03-29,21036,7909,"[\""Laptop\""]",3918.12,"{\""loyalty\"": \""29%\""}",296239,0,"""Africa""" +2024-09-14,21037,4607,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4449.11,"{\"": \""18%\""}",268326,1,"""North America""" +2023-12-22,21038,6376,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3194.92,{},47885,1,"""Africa""" +2024-01-27,21039,7011,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4467.47,"{\""loyalty\"": \""9%\""}",181494,0,"""Africa""" +2023-08-05,21040,5053,"[\""Wireless Mouse\"", \""Monitor\""]",1929.61,"{\""promo\"": \""10%\""}",172566,1,"""North America""" +2023-04-08,21041,2969,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",450.27,"{\""loyalty\"": \""29%\""}",93010,0,"""Africa""" +2024-05-09,21042,2138,"[\""Headphones\"", \""Laptop\""]",327.5,{},113362,1,"""Africa""" +2024-05-22,21043,4390,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3600.17,"{\""promo\"": \""24%\""}",258006,1,"""South America""" +2024-08-01,21044,1353,"[\""Charger\"", \""Keyboard\""]",2014.16,{},83375,1,"""Asia""" +2024-10-28,21045,5852,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2508.16,"{\""loyalty\"": \""17%\""}",129447,1,"""Europe""" +2024-02-10,21046,9991,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",348.16,{},18596,0,"""Europe""" +2024-04-18,21047,3616,"[\""Keyboard\"", \""Charger\""]",2218.46,"{\""loyalty\"": \""17%\""}",221275,0,"""Asia""" +2023-10-06,21048,516,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",217.34,{},298858,0,"""Africa""" +2023-03-15,21049,9317,"[\""Headphones\"", \""Wireless Mouse\""]",114.78,"{\""seasonal\"": \""18%\""}",133287,0,"""South America""" +2023-12-15,21050,6100,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3521.62,"{\""seasonal\"": \""23%\""}",171897,1,"""North America""" +2023-05-31,21051,7821,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2365.73,{},223069,0,"""Asia""" +2024-02-08,21052,2889,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",625.9,"{\""seasonal\"": \""22%\""}",137816,0,"""South America""" +2024-04-29,21053,3595,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3132.01,{},211216,1,"""South America""" +2024-07-02,21054,7694,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1692.47,{},121993,0,"""Europe""" +2024-09-29,21055,8702,"[\""Keyboard\""]",4042.21,{},66096,1,"""North America""" +2024-01-03,21056,1019,"[\""Monitor\""]",4942.48,"{\""loyalty\"": \""23%\""}",99661,0,"""North America""" +2024-02-12,21057,9677,"[\""Wireless Mouse\""]",1644.23,"{\""promo\"": \""15%\""}",178956,1,"""North America""" +2023-05-23,21058,7092,"[\""Tablet\""]",2240.47,{},180364,0,"""Africa""" +2023-08-17,21059,2246,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",300.1,{},129245,1,"""North America""" +2024-11-15,21060,4487,"[\""Monitor\"", \""Headphones\""]",2737.86,{},31188,0,"""Africa""" +2023-02-04,21061,4229,"[\""Charger\"", \""Laptop\""]",4906.89,{},138753,0,"""Asia""" +2023-01-03,21062,783,"[\""Laptop\"", \""Charger\""]",2206.06,{},225083,0,"""Africa""" +2023-10-20,21063,4551,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4091.09,{},255399,0,"""Asia""" +2024-02-19,21064,9048,"[\""Laptop\"", \""Wireless Mouse\""]",2630.88,{},256371,0,"""South America""" +2024-07-27,21065,8625,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2541.61,{},13126,1,"""South America""" +2023-06-15,21066,2369,"[\""Charger\""]",1413.62,{},133418,0,"""North America""" +2024-10-29,21067,1907,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4313.22,{},260870,0,"""South America""" +2023-11-10,21068,5575,"[\""Tablet\"", \""Monitor\""]",105.93,{},10469,0,"""Africa""" +2024-11-24,21069,872,"[\""Wireless Mouse\"", \""Tablet\""]",4355.21,{},296565,0,"""Asia""" +2024-04-18,21070,9191,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3843.34,"{\""seasonal\"": \""23%\""}",288458,0,"""North America""" +2023-01-07,21071,4872,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2505.65,{},223108,1,"""North America""" +2024-08-03,21072,8066,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2996.98,"{\""loyalty\"": \""22%\""}",266402,1,"""South America""" +2023-08-18,21073,7440,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",560.95,{},214276,0,"""South America""" +2024-08-03,21074,3339,"[\""Keyboard\"", \""Charger\""]",850.35,{},150111,1,"""South America""" +2023-05-31,21075,96,"[\""Tablet\"", \""Phone\""]",78.2,{},149588,0,"""North America""" +2024-10-03,21076,5936,"[\""Charger\"", \""Headphones\"", \""Phone\""]",215.29,{},101692,0,"""North America""" +2023-07-12,21077,151,"[\""Headphones\""]",3700.69,"{\""promo\"": \""21%\""}",156537,1,"""Asia""" +2023-03-19,21078,1260,"[\""Charger\"", \""Monitor\""]",2531.59,"{\""promo\"": \""16%\""}",51487,1,"""Africa""" +2024-10-26,21079,412,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1869.86,"{\""seasonal\"": \""13%\""}",79325,0,"""North America""" +2024-08-19,21080,6308,"[\""Wireless Mouse\"", \""Headphones\""]",766.42,"{\"": \""7%\""}",161682,0,"""Asia""" +2023-10-30,21081,6000,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1152.88,"{\"": \""18%\""}",34293,1,"""Africa""" +2023-10-26,21082,6475,"[\""Keyboard\""]",2386.14,{},187530,1,"""South America""" +2023-05-06,21083,2718,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1875.65,{},100539,0,"""Asia""" +2023-03-14,21084,1066,"[\""Wireless Mouse\""]",550.12,"{\""promo\"": \""26%\""}",190797,0,"""Europe""" +2023-04-25,21085,8578,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",707.96,"{\""promo\"": \""22%\""}",135660,0,"""North America""" +2023-09-09,21086,9024,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3007.62,"{\""loyalty\"": \""28%\""}",60977,0,"""Africa""" +2024-11-02,21087,1394,"[\""Wireless Mouse\"", \""Keyboard\""]",379.41,"{\""seasonal\"": \""24%\""}",171861,0,"""Asia""" +2023-07-20,21088,8872,"[\""Monitor\""]",3471.44,"{\"": \""25%\""}",126479,1,"""Europe""" +2023-11-06,21089,7495,"[\""Phone\""]",2621.4,{},91581,0,"""North America""" +2024-01-23,21090,4688,"[\""Wireless Mouse\"", \""Phone\""]",1026.12,{},145415,0,"""Africa""" +2024-08-03,21091,9533,"[\""Charger\"", \""Tablet\""]",4763.82,{},248616,1,"""Asia""" +2023-02-05,21092,5301,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4763.21,{},209192,1,"""South America""" +2024-02-25,21093,5928,"[\""Phone\"", \""Headphones\""]",4529.05,{},290855,0,"""Africa""" +2023-06-06,21094,9302,"[\""Laptop\"", \""Phone\""]",570.56,{},164270,0,"""Africa""" +2024-12-14,21095,9508,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3410.28,{},277238,0,"""Europe""" +2024-05-09,21096,202,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2215.63,{},150722,0,"""Asia""" +2024-12-24,21097,8469,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4887.6,"{\"": \""30%\""}",108901,0,"""Africa""" +2023-12-05,21098,6807,"[\""Tablet\""]",1543.12,{},170235,0,"""South America""" +2024-03-29,21099,1818,"[\""Wireless Mouse\""]",87.36,"{\""promo\"": \""25%\""}",127329,0,"""Africa""" +2024-12-09,21100,943,"[\""Phone\""]",1760.62,{},174710,0,"""Africa""" +2023-09-17,21101,5884,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",636.71,"{\""loyalty\"": \""19%\""}",148095,1,"""North America""" +2024-06-08,21102,2437,"[\""Wireless Mouse\""]",3390.21,{},124931,0,"""Asia""" +2023-05-10,21103,6214,"[\""Phone\"", \""Monitor\""]",78.39,"{\""loyalty\"": \""30%\""}",77333,0,"""South America""" +2024-02-09,21104,182,"[\""Laptop\"", \""Wireless Mouse\""]",487.54,{},130244,0,"""Asia""" +2024-01-24,21105,6018,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",279.1,"{\"": \""21%\""}",249544,0,"""Africa""" +2023-05-09,21106,4788,"[\""Monitor\""]",3257.17,{},69959,1,"""South America""" +2023-05-25,21107,4330,"[\""Keyboard\""]",2209.54,{},241255,0,"""North America""" +2023-10-08,21108,6334,"[\""Phone\""]",3753.02,{},172312,0,"""North America""" +2023-11-12,21109,6061,"[\""Phone\"", \""Laptop\""]",3779.67,{},157074,1,"""Africa""" +2024-02-20,21110,9170,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4238.58,"{\""loyalty\"": \""16%\""}",207629,0,"""Asia""" +2023-09-26,21111,5707,"[\""Tablet\""]",2836.21,"{\""promo\"": \""24%\""}",138424,1,"""Europe""" +2024-10-30,21112,4709,"[\""Charger\"", \""Headphones\""]",1463.24,"{\"": \""12%\""}",297998,0,"""Europe""" +2023-10-26,21113,6261,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2009.2,{},57915,1,"""Africa""" +2024-11-01,21114,1568,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",445.3,{},78936,1,"""Africa""" +2023-01-08,21115,4189,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2030.93,"{\""loyalty\"": \""9%\""}",249068,1,"""Africa""" +2023-03-23,21116,6375,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4651.03,{},103418,1,"""Europe""" +2024-06-24,21117,5917,"[\""Monitor\"", \""Phone\""]",2423.66,{},153376,1,"""South America""" +2024-02-22,21118,2794,"[\""Keyboard\"", \""Charger\""]",474.99,{},156222,0,"""Africa""" +2024-07-18,21119,6259,"[\""Phone\""]",2502.15,{},173153,0,"""Africa""" +2024-02-23,21120,8658,"[\""Phone\"", \""Monitor\""]",4389.28,{},209919,1,"""Africa""" +2024-10-05,21121,9310,"[\""Tablet\"", \""Laptop\""]",2264.46,"{\""promo\"": \""22%\""}",174387,1,"""Africa""" +2024-11-13,21122,9503,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4602.82,"{\""promo\"": \""14%\""}",168122,0,"""North America""" +2023-11-03,21123,9432,"[\""Charger\""]",3850.98,"{\""seasonal\"": \""7%\""}",271294,1,"""North America""" +2024-07-10,21124,5268,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1411.04,{},137317,1,"""Europe""" +2023-01-08,21125,8481,"[\""Keyboard\"", \""Phone\""]",2429.9,"{\""seasonal\"": \""8%\""}",233671,1,"""North America""" +2023-03-24,21126,3297,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2711.18,{},58222,1,"""North America""" +2023-06-10,21127,949,"[\""Laptop\""]",54.29,"{\""loyalty\"": \""13%\""}",107891,0,"""Europe""" +2024-01-09,21128,3589,"[\""Laptop\"", \""Monitor\""]",2218.46,"{\"": \""21%\""}",196467,1,"""Africa""" +2024-07-08,21129,537,"[\""Phone\"", \""Keyboard\""]",3575.9,"{\"": \""28%\""}",147635,0,"""Africa""" +2023-02-09,21130,9293,"[\""Tablet\"", \""Keyboard\""]",1893.11,{},255782,0,"""Asia""" +2024-03-24,21131,1914,"[\""Monitor\""]",3740.07,{},174081,1,"""Africa""" +2024-03-10,21132,5171,"[\""Charger\""]",2541.03,{},140108,0,"""North America""" +2024-08-01,21133,3329,"[\""Headphones\"", \""Monitor\""]",4629.1,"{\""loyalty\"": \""15%\""}",144308,0,"""North America""" +2024-10-22,21134,6599,"[\""Keyboard\"", \""Wireless Mouse\""]",190.58,{},137837,1,"""North America""" +2024-09-22,21135,5811,"[\""Laptop\""]",3960.74,"{\""loyalty\"": \""25%\""}",296793,1,"""South America""" +2023-12-13,21136,8032,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",65.4,{},6048,0,"""Europe""" +2023-09-07,21137,2247,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",485.85,"{\""seasonal\"": \""19%\""}",85502,0,"""Africa""" +2024-08-21,21138,365,"[\""Keyboard\"", \""Tablet\""]",1223.23,{},219395,0,"""South America""" +2023-08-03,21139,4227,"[\""Charger\"", \""Phone\""]",470.19,"{\""loyalty\"": \""22%\""}",61221,1,"""Asia""" +2024-06-02,21140,9287,"[\""Charger\""]",4127.14,"{\""loyalty\"": \""15%\""}",253057,0,"""North America""" +2024-04-09,21141,2864,"[\""Tablet\""]",3138.69,{},128348,0,"""Europe""" +2024-11-29,21142,6050,"[\""Wireless Mouse\""]",1941.3,"{\""loyalty\"": \""20%\""}",108846,0,"""Africa""" +2023-10-03,21143,6901,"[\""Monitor\"", \""Headphones\""]",2926.45,"{\""promo\"": \""14%\""}",129507,0,"""Europe""" +2023-02-04,21144,5340,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3121.92,"{\""loyalty\"": \""5%\""}",188588,0,"""South America""" +2024-12-30,21145,8972,"[\""Laptop\""]",4170.44,"{\""loyalty\"": \""28%\""}",208783,1,"""North America""" +2024-07-14,21146,1263,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4689.47,"{\""loyalty\"": \""22%\""}",261006,1,"""South America""" +2024-07-15,21147,4185,"[\""Laptop\""]",3574.66,"{\""promo\"": \""22%\""}",64333,0,"""Asia""" +2023-09-29,21148,7090,"[\""Charger\"", \""Phone\""]",3503.65,"{\"": \""16%\""}",117803,1,"""Asia""" +2023-01-28,21149,1426,"[\""Headphones\"", \""Monitor\""]",3843.36,"{\""seasonal\"": \""16%\""}",226775,1,"""Europe""" +2023-02-03,21150,6935,"[\""Headphones\""]",4753.33,{},289260,1,"""Africa""" +2024-09-13,21151,4813,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2014.57,{},166479,1,"""Africa""" +2024-01-11,21152,9062,"[\""Phone\""]",3814.96,"{\"": \""18%\""}",135502,0,"""Asia""" +2024-01-19,21153,3416,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4438.73,"{\""loyalty\"": \""23%\""}",5279,1,"""North America""" +2024-04-13,21154,540,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3848.62,{},106979,0,"""Asia""" +2023-10-21,21155,5090,"[\""Tablet\"", \""Charger\""]",2783.35,{},37239,0,"""Africa""" +2023-07-28,21156,6088,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1347.08,"{\""seasonal\"": \""28%\""}",173967,1,"""Europe""" +2024-11-13,21157,3294,"[\""Tablet\"", \""Laptop\""]",4619.27,"{\""seasonal\"": \""18%\""}",259989,0,"""Africa""" +2023-08-19,21158,8066,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4598.69,"{\""seasonal\"": \""6%\""}",207282,1,"""Europe""" +2024-12-12,21159,7718,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4276.22,"{\"": \""15%\""}",27556,0,"""Asia""" +2023-08-14,21160,9823,"[\""Tablet\"", \""Laptop\""]",529.97,{},185776,0,"""Asia""" +2023-11-18,21161,7970,"[\""Wireless Mouse\""]",4433.08,{},262639,0,"""Asia""" +2023-09-17,21162,6982,"[\""Tablet\"", \""Wireless Mouse\""]",3930.41,"{\""promo\"": \""18%\""}",135288,1,"""South America""" +2023-03-15,21163,2946,"[\""Tablet\""]",3318.66,"{\""promo\"": \""23%\""}",258969,0,"""Africa""" +2024-02-15,21164,506,"[\""Tablet\""]",266.56,{},29190,1,"""South America""" +2023-08-28,21165,9739,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4129.95,"{\"": \""6%\""}",116281,1,"""Europe""" +2023-02-13,21166,1786,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2518.58,"{\""loyalty\"": \""29%\""}",156349,0,"""Africa""" +2023-05-19,21167,1064,"[\""Monitor\""]",1892.88,"{\""seasonal\"": \""26%\""}",293258,1,"""Africa""" +2023-01-09,21168,7895,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1962.12,{},261213,0,"""Asia""" +2024-09-19,21169,4697,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2980.54,{},143600,1,"""Europe""" +2024-05-08,21170,2351,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",413.58,{},279698,0,"""South America""" +2024-05-12,21171,5965,"[\""Monitor\"", \""Wireless Mouse\""]",3769.85,"{\""seasonal\"": \""19%\""}",130301,0,"""Europe""" +2024-09-30,21172,7060,"[\""Phone\"", \""Laptop\""]",1068.13,{},74498,0,"""Europe""" +2023-06-16,21173,7011,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",107.77,{},224462,1,"""South America""" +2023-05-19,21174,3340,"[\""Keyboard\"", \""Charger\""]",3250.69,{},93296,1,"""North America""" +2023-04-07,21175,4749,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",735.98,"{\"": \""29%\""}",17074,1,"""Europe""" +2023-01-20,21176,6294,"[\""Tablet\""]",4465.63,{},28243,0,"""Europe""" +2024-08-25,21177,7281,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",553.77,"{\""loyalty\"": \""18%\""}",127807,0,"""Asia""" +2023-11-18,21178,6414,"[\""Laptop\"", \""Wireless Mouse\""]",2002.56,{},40014,1,"""North America""" +2024-04-23,21179,1709,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4581.67,{},188061,1,"""Europe""" +2023-07-12,21180,7630,"[\""Phone\""]",1969.86,{},61095,1,"""Europe""" +2023-09-16,21181,5570,"[\""Wireless Mouse\""]",4879.0,{},86257,0,"""South America""" +2024-04-21,21182,5683,"[\""Wireless Mouse\"", \""Tablet\""]",2984.38,"{\""loyalty\"": \""30%\""}",152502,0,"""South America""" +2024-07-14,21183,2059,"[\""Headphones\"", \""Keyboard\""]",2325.15,"{\""seasonal\"": \""16%\""}",70831,1,"""Africa""" +2024-05-30,21184,532,"[\""Laptop\"", \""Charger\""]",4704.91,"{\""seasonal\"": \""30%\""}",259228,1,"""Africa""" +2024-06-10,21185,5985,"[\""Laptop\"", \""Headphones\""]",4484.41,"{\""promo\"": \""14%\""}",111886,1,"""Asia""" +2024-06-19,21186,7771,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3147.02,{},143245,1,"""Asia""" +2023-06-05,21187,5530,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",408.19,{},136745,1,"""South America""" +2023-06-29,21188,1219,"[\""Headphones\"", \""Wireless Mouse\""]",2004.6,"{\""promo\"": \""24%\""}",6844,1,"""South America""" +2023-03-29,21189,1528,"[\""Monitor\"", \""Wireless Mouse\""]",3623.52,"{\"": \""30%\""}",32957,0,"""Asia""" +2023-10-27,21190,2648,"[\""Laptop\""]",954.45,"{\""loyalty\"": \""11%\""}",150351,0,"""Europe""" +2024-08-29,21191,8675,"[\""Phone\"", \""Keyboard\""]",3792.24,"{\""promo\"": \""29%\""}",147593,1,"""South America""" +2023-11-12,21192,8327,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3315.96,"{\"": \""8%\""}",202436,1,"""Asia""" +2023-08-25,21193,7229,"[\""Tablet\"", \""Phone\""]",3448.24,{},234326,1,"""South America""" +2023-10-18,21194,4902,"[\""Tablet\"", \""Keyboard\""]",4671.23,"{\""loyalty\"": \""12%\""}",102492,0,"""Asia""" +2023-09-04,21195,293,"[\""Tablet\"", \""Charger\""]",3859.29,{},293618,0,"""North America""" +2023-04-27,21196,8470,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3245.85,{},258015,1,"""North America""" +2024-11-29,21197,8728,"[\""Wireless Mouse\""]",350.22,"{\""loyalty\"": \""19%\""}",37195,1,"""Africa""" +2024-01-02,21198,6226,"[\""Charger\"", \""Keyboard\""]",1155.92,"{\""loyalty\"": \""23%\""}",144551,0,"""Europe""" +2023-01-04,21199,5007,"[\""Phone\"", \""Wireless Mouse\""]",4548.65,"{\""loyalty\"": \""12%\""}",40473,0,"""South America""" +2024-09-08,21200,4674,"[\""Laptop\""]",2675.44,"{\""promo\"": \""18%\""}",208724,1,"""Europe""" +2023-06-11,21201,9589,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2747.04,{},168520,0,"""Africa""" +2024-08-24,21202,2057,"[\""Charger\""]",4960.61,"{\""loyalty\"": \""30%\""}",76528,0,"""Africa""" +2023-08-01,21203,1269,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4024.19,"{\""promo\"": \""16%\""}",47653,1,"""Europe""" +2024-10-11,21204,9981,"[\""Phone\""]",2803.87,{},131001,1,"""Europe""" +2023-03-01,21205,6513,"[\""Monitor\"", \""Wireless Mouse\""]",4934.63,"{\""loyalty\"": \""23%\""}",63210,0,"""Africa""" +2024-09-18,21206,6244,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",143.45,"{\""loyalty\"": \""13%\""}",89537,1,"""Asia""" +2023-07-26,21207,9677,"[\""Phone\"", \""Keyboard\""]",3581.83,"{\""loyalty\"": \""28%\""}",171220,1,"""Europe""" +2023-05-15,21208,8224,"[\""Wireless Mouse\"", \""Phone\""]",1194.67,"{\""loyalty\"": \""24%\""}",214013,0,"""Africa""" +2023-05-05,21209,9644,"[\""Charger\"", \""Keyboard\""]",4737.89,{},252389,0,"""Africa""" +2024-05-01,21210,9359,"[\""Wireless Mouse\""]",770.28,{},166488,1,"""Asia""" +2023-08-03,21211,1827,"[\""Laptop\""]",4744.67,"{\"": \""20%\""}",40308,1,"""Africa""" +2024-06-25,21212,3839,"[\""Headphones\"", \""Keyboard\""]",497.95,"{\""promo\"": \""18%\""}",139116,1,"""Europe""" +2023-10-23,21213,7195,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4570.08,"{\""promo\"": \""24%\""}",95856,0,"""North America""" +2023-08-05,21214,3714,"[\""Wireless Mouse\""]",888.1,"{\""promo\"": \""27%\""}",290860,0,"""Europe""" +2023-09-14,21215,4689,"[\""Phone\"", \""Charger\""]",2545.16,{},277720,1,"""Africa""" +2023-04-01,21216,9816,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2576.68,"{\""loyalty\"": \""8%\""}",286179,1,"""Asia""" +2023-05-25,21217,9784,"[\""Headphones\""]",618.95,{},268200,0,"""South America""" +2024-10-21,21218,1340,"[\""Phone\"", \""Tablet\""]",1232.14,{},120557,1,"""Asia""" +2024-05-12,21219,506,"[\""Keyboard\"", \""Wireless Mouse\""]",4038.4,"{\"": \""24%\""}",169617,0,"""Asia""" +2023-04-08,21220,4324,"[\""Tablet\""]",2137.84,"{\""seasonal\"": \""25%\""}",85241,0,"""North America""" +2023-12-21,21221,4203,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4995.45,{},105284,1,"""Africa""" +2024-06-29,21222,9434,"[\""Charger\"", \""Wireless Mouse\""]",1165.36,"{\""loyalty\"": \""30%\""}",236733,1,"""South America""" +2023-03-23,21223,9521,"[\""Phone\"", \""Headphones\""]",917.25,{},150679,1,"""South America""" +2024-04-28,21224,9047,"[\""Headphones\""]",2365.35,{},167368,0,"""Europe""" +2023-03-18,21225,2915,"[\""Wireless Mouse\""]",2033.72,"{\""promo\"": \""10%\""}",59573,0,"""Africa""" +2023-05-23,21226,4261,"[\""Wireless Mouse\"", \""Tablet\""]",2022.25,"{\""seasonal\"": \""13%\""}",228521,0,"""Africa""" +2023-12-10,21227,3518,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4448.53,"{\""seasonal\"": \""21%\""}",240628,0,"""North America""" +2024-06-21,21228,918,"[\""Keyboard\"", \""Tablet\""]",3977.42,{},193868,0,"""Asia""" +2023-12-13,21229,6644,"[\""Phone\""]",3520.34,"{\"": \""8%\""}",7287,0,"""Asia""" +2024-08-09,21230,1221,"[\""Charger\"", \""Phone\"", \""Tablet\""]",445.46,{},136314,1,"""Africa""" +2024-04-25,21231,5024,"[\""Laptop\""]",2706.3,{},107607,1,"""Africa""" +2023-12-18,21232,4421,"[\""Monitor\"", \""Charger\""]",2426.4,"{\""seasonal\"": \""19%\""}",115566,0,"""South America""" +2024-12-17,21233,9453,"[\""Laptop\"", \""Headphones\""]",1171.52,"{\"": \""24%\""}",269784,0,"""South America""" +2023-05-22,21234,6673,"[\""Charger\"", \""Headphones\""]",1983.82,"{\""seasonal\"": \""26%\""}",49054,0,"""South America""" +2023-06-09,21235,3791,"[\""Keyboard\"", \""Laptop\""]",4930.59,"{\"": \""23%\""}",227990,1,"""Africa""" +2024-07-21,21236,3400,"[\""Phone\"", \""Headphones\""]",1517.67,{},195847,1,"""South America""" +2024-06-10,21237,8870,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1586.6,"{\"": \""12%\""}",91918,1,"""North America""" +2023-11-23,21238,871,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3652.92,"{\""promo\"": \""9%\""}",68726,0,"""North America""" +2024-06-13,21239,7649,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",78.63,"{\""seasonal\"": \""24%\""}",112638,1,"""Europe""" +2023-03-08,21240,2418,"[\""Tablet\"", \""Headphones\""]",2016.38,{},104560,1,"""Asia""" +2023-09-02,21241,3431,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3568.96,"{\"": \""8%\""}",95104,1,"""Europe""" +2023-03-25,21242,1384,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3814.02,"{\""loyalty\"": \""30%\""}",166920,1,"""Europe""" +2024-12-25,21243,6289,"[\""Laptop\"", \""Wireless Mouse\""]",1960.5,"{\"": \""25%\""}",193978,1,"""Asia""" +2024-09-29,21244,1961,"[\""Wireless Mouse\""]",1975.77,"{\""promo\"": \""18%\""}",126745,0,"""Asia""" +2023-05-07,21245,599,"[\""Tablet\""]",4556.57,{},167839,0,"""Europe""" +2024-03-08,21246,7525,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1049.4,{},22381,1,"""Europe""" +2024-04-24,21247,6737,"[\""Headphones\""]",1666.9,{},271946,1,"""South America""" +2023-03-11,21248,1573,"[\""Keyboard\""]",2112.43,{},200408,1,"""North America""" +2024-07-01,21249,3100,"[\""Tablet\"", \""Phone\""]",4700.0,{},131156,0,"""Africa""" +2024-02-16,21250,5180,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",858.89,"{\""promo\"": \""27%\""}",113410,0,"""North America""" +2023-01-17,21251,8811,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4446.87,{},189503,1,"""Asia""" +2023-03-03,21252,7259,"[\""Wireless Mouse\"", \""Laptop\""]",1969.33,"{\""seasonal\"": \""6%\""}",41166,0,"""South America""" +2024-02-08,21253,2430,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3199.01,"{\""promo\"": \""7%\""}",238254,0,"""Africa""" +2024-03-14,21254,2795,"[\""Keyboard\"", \""Laptop\""]",3602.56,"{\""loyalty\"": \""30%\""}",288598,1,"""Africa""" +2023-02-03,21255,837,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1017.73,{},166035,1,"""Asia""" +2024-10-23,21256,2786,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4455.84,"{\""seasonal\"": \""21%\""}",278215,1,"""Asia""" +2023-08-29,21257,2479,"[\""Tablet\"", \""Monitor\""]",3758.21,{},47878,1,"""North America""" +2024-08-21,21258,701,"[\""Wireless Mouse\""]",1712.74,{},287736,0,"""North America""" +2023-08-15,21259,5781,"[\""Phone\""]",4117.5,{},77579,1,"""South America""" +2024-06-11,21260,8027,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",101.38,"{\""promo\"": \""23%\""}",161977,0,"""Europe""" +2024-02-03,21261,3666,"[\""Charger\""]",212.96,"{\""loyalty\"": \""17%\""}",46258,1,"""Europe""" +2023-10-19,21262,4527,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2164.9,"{\""promo\"": \""22%\""}",78236,1,"""Asia""" +2024-02-14,21263,5406,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1654.17,{},184764,0,"""Europe""" +2024-04-22,21264,9232,"[\""Laptop\""]",1561.58,{},13453,0,"""North America""" +2024-12-23,21265,9779,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3133.73,"{\""seasonal\"": \""29%\""}",180898,1,"""South America""" +2024-10-11,21266,4729,"[\""Monitor\"", \""Charger\""]",4326.58,{},76917,0,"""Europe""" +2023-05-06,21267,3211,"[\""Keyboard\""]",1577.54,"{\""seasonal\"": \""29%\""}",63647,0,"""Africa""" +2024-02-28,21268,8504,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",351.92,{},197560,1,"""North America""" +2024-10-06,21269,8762,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1920.55,"{\"": \""8%\""}",295072,0,"""Europe""" +2024-04-27,21270,2078,"[\""Monitor\"", \""Keyboard\""]",3263.07,"{\"": \""16%\""}",152855,0,"""North America""" +2024-09-06,21271,8744,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3188.43,"{\""loyalty\"": \""17%\""}",113111,1,"""Europe""" +2023-11-10,21272,8983,"[\""Headphones\""]",539.41,{},225549,1,"""North America""" +2023-09-30,21273,9954,"[\""Monitor\"", \""Wireless Mouse\""]",679.64,{},79060,1,"""South America""" +2023-01-25,21274,149,"[\""Wireless Mouse\""]",4747.1,"{\""loyalty\"": \""15%\""}",82933,0,"""North America""" +2023-01-05,21275,8574,"[\""Laptop\""]",4902.61,"{\"": \""9%\""}",138350,0,"""North America""" +2024-08-23,21276,3674,"[\""Charger\""]",4060.76,"{\""seasonal\"": \""22%\""}",243590,0,"""North America""" +2024-03-30,21277,9277,"[\""Wireless Mouse\"", \""Tablet\""]",4142.56,"{\""seasonal\"": \""14%\""}",230878,0,"""Africa""" +2024-10-19,21278,8878,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3363.72,"{\""seasonal\"": \""18%\""}",273226,0,"""Africa""" +2023-03-30,21279,9475,"[\""Headphones\""]",1958.64,{},269667,0,"""Europe""" +2024-07-29,21280,968,"[\""Headphones\""]",949.06,"{\""seasonal\"": \""12%\""}",200898,1,"""Asia""" +2023-05-31,21281,1407,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2115.42,"{\""loyalty\"": \""6%\""}",95232,1,"""South America""" +2024-06-27,21282,2518,"[\""Tablet\"", \""Laptop\""]",2519.33,{},255305,1,"""South America""" +2023-05-06,21283,9105,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",213.43,"{\""seasonal\"": \""11%\""}",197983,1,"""South America""" +2023-02-03,21284,9052,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",561.7,"{\"": \""12%\""}",146750,0,"""North America""" +2024-12-17,21285,2944,"[\""Laptop\""]",1449.43,{},240774,0,"""Africa""" +2023-04-17,21286,5763,"[\""Laptop\""]",949.65,"{\""promo\"": \""12%\""}",113177,1,"""North America""" +2024-06-22,21287,3068,"[\""Tablet\""]",2331.43,"{\""seasonal\"": \""19%\""}",232888,1,"""Asia""" +2024-02-14,21288,2060,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2731.54,{},134945,0,"""South America""" +2023-01-07,21289,8363,"[\""Monitor\"", \""Tablet\""]",1850.16,{},62639,0,"""South America""" +2024-02-05,21290,7950,"[\""Tablet\"", \""Charger\""]",179.07,"{\""seasonal\"": \""23%\""}",22467,0,"""Africa""" +2023-05-28,21291,5080,"[\""Headphones\""]",4974.4,"{\""seasonal\"": \""5%\""}",192794,1,"""Asia""" +2023-06-16,21292,6082,"[\""Tablet\"", \""Charger\""]",3496.0,{},120249,1,"""South America""" +2024-11-03,21293,6627,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1907.16,{},248869,1,"""Africa""" +2023-04-17,21294,4615,"[\""Laptop\""]",1763.33,{},75160,0,"""Europe""" +2024-04-16,21295,5090,"[\""Headphones\"", \""Tablet\""]",4249.99,{},196344,1,"""Europe""" +2023-04-26,21296,6852,"[\""Phone\""]",4201.52,"{\""promo\"": \""24%\""}",96057,0,"""North America""" +2023-08-18,21297,7464,"[\""Headphones\""]",2951.69,{},95365,0,"""South America""" +2024-08-12,21298,2367,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3054.43,"{\""promo\"": \""14%\""}",264791,1,"""South America""" +2024-05-25,21299,2054,"[\""Headphones\"", \""Laptop\""]",1452.33,{},195803,0,"""North America""" +2023-02-07,21300,5519,"[\""Keyboard\"", \""Tablet\""]",2665.6,{},67295,1,"""North America""" +2023-03-14,21301,3179,"[\""Phone\""]",141.95,{},286513,0,"""Europe""" +2023-01-15,21302,2291,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1411.22,{},245098,0,"""North America""" +2024-05-03,21303,7549,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1700.3,"{\""promo\"": \""30%\""}",285566,0,"""Asia""" +2024-11-11,21304,2494,"[\""Phone\""]",1520.04,{},93193,0,"""South America""" +2023-09-13,21305,7713,"[\""Wireless Mouse\""]",469.1,"{\"": \""13%\""}",171986,1,"""Africa""" +2023-05-22,21306,1073,"[\""Phone\"", \""Wireless Mouse\""]",1377.96,"{\"": \""6%\""}",267029,1,"""North America""" +2024-12-15,21307,5144,"[\""Tablet\""]",4142.7,{},238076,0,"""Africa""" +2024-02-06,21308,1235,"[\""Tablet\"", \""Keyboard\""]",2116.91,{},237792,1,"""Europe""" +2023-04-08,21309,9999,"[\""Keyboard\"", \""Phone\""]",1784.87,"{\""loyalty\"": \""21%\""}",126686,1,"""Africa""" +2023-08-05,21310,4794,"[\""Wireless Mouse\"", \""Charger\""]",4808.83,{},229467,0,"""South America""" +2023-03-02,21311,8477,"[\""Laptop\"", \""Phone\""]",1499.08,"{\"": \""18%\""}",291877,1,"""Europe""" +2023-06-11,21312,2090,"[\""Monitor\""]",1071.03,{},173215,0,"""Asia""" +2023-12-16,21313,6926,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4380.16,"{\""promo\"": \""6%\""}",283306,1,"""Asia""" +2024-05-23,21314,3691,"[\""Headphones\""]",3421.0,"{\""promo\"": \""21%\""}",8807,1,"""Africa""" +2024-09-19,21315,8572,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2781.43,"{\""loyalty\"": \""19%\""}",40677,1,"""South America""" +2023-01-29,21316,7372,"[\""Keyboard\"", \""Laptop\""]",4427.76,"{\"": \""13%\""}",127316,1,"""North America""" +2023-12-13,21317,4057,"[\""Monitor\"", \""Phone\""]",659.55,{},46190,1,"""North America""" +2023-12-23,21318,4107,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2643.81,{},281020,1,"""Africa""" +2023-03-14,21319,1686,"[\""Headphones\"", \""Laptop\""]",522.67,{},72269,0,"""Africa""" +2023-12-20,21320,9642,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2755.02,{},273133,0,"""Africa""" +2024-05-02,21321,9655,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1243.79,{},227942,1,"""South America""" +2024-01-07,21322,6971,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2813.55,"{\""promo\"": \""11%\""}",255000,1,"""North America""" +2023-04-13,21323,9283,"[\""Monitor\""]",2540.61,"{\""seasonal\"": \""17%\""}",122048,1,"""Asia""" +2024-07-07,21324,4892,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1996.95,{},76768,0,"""South America""" +2023-12-17,21325,2576,"[\""Laptop\""]",1827.6,"{\""promo\"": \""7%\""}",180392,0,"""Africa""" +2024-02-14,21326,9823,"[\""Monitor\"", \""Charger\""]",2217.1,"{\""loyalty\"": \""7%\""}",204803,1,"""Europe""" +2024-04-30,21327,3292,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4134.87,{},183458,1,"""North America""" +2023-06-29,21328,6924,"[\""Tablet\""]",4716.37,"{\""loyalty\"": \""20%\""}",49374,0,"""South America""" +2023-06-29,21329,7348,"[\""Wireless Mouse\""]",2862.18,{},186952,0,"""South America""" +2024-12-23,21330,2510,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1626.71,"{\""loyalty\"": \""22%\""}",80347,1,"""South America""" +2023-11-05,21331,6717,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",149.15,{},142003,0,"""Europe""" +2023-02-03,21332,5937,"[\""Monitor\"", \""Tablet\""]",280.75,{},229243,0,"""Asia""" +2024-09-16,21333,9444,"[\""Tablet\"", \""Keyboard\""]",813.66,"{\""loyalty\"": \""23%\""}",194616,0,"""Asia""" +2023-01-22,21334,7698,"[\""Headphones\"", \""Charger\""]",905.19,{},276249,1,"""Africa""" +2024-01-09,21335,8862,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",286.86,{},100643,0,"""Africa""" +2023-03-07,21336,8646,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4893.61,{},221318,1,"""Africa""" +2024-05-05,21337,951,"[\""Headphones\"", \""Tablet\""]",727.05,"{\""promo\"": \""11%\""}",39357,0,"""North America""" +2024-06-28,21338,9011,"[\""Phone\"", \""Headphones\""]",913.64,{},19926,1,"""Europe""" +2023-11-20,21339,7752,"[\""Tablet\""]",1590.22,"{\""loyalty\"": \""25%\""}",207539,1,"""Asia""" +2023-08-05,21340,3756,"[\""Tablet\"", \""Laptop\""]",1945.11,{},182080,1,"""Asia""" +2024-11-03,21341,9052,"[\""Monitor\"", \""Wireless Mouse\""]",1541.02,"{\""seasonal\"": \""12%\""}",251859,1,"""Europe""" +2023-12-30,21342,8943,"[\""Tablet\"", \""Keyboard\""]",3176.38,"{\""loyalty\"": \""20%\""}",68428,1,"""South America""" +2024-01-30,21343,5259,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",911.58,"{\"": \""11%\""}",192174,0,"""Africa""" +2024-11-03,21344,5094,"[\""Wireless Mouse\"", \""Keyboard\""]",1001.09,"{\"": \""28%\""}",279854,0,"""North America""" +2024-07-07,21345,7544,"[\""Monitor\""]",4518.73,{},231908,0,"""Africa""" +2024-08-06,21346,1210,"[\""Monitor\"", \""Laptop\""]",467.49,{},164962,1,"""North America""" +2024-10-17,21347,6592,"[\""Tablet\"", \""Laptop\""]",3024.96,{},85859,0,"""Africa""" +2023-09-13,21348,8090,"[\""Phone\""]",4571.88,"{\""loyalty\"": \""17%\""}",180389,1,"""Europe""" +2023-04-06,21349,3404,"[\""Keyboard\"", \""Laptop\""]",2464.4,{},224426,1,"""North America""" +2023-01-17,21350,5742,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2926.12,"{\""loyalty\"": \""15%\""}",34108,0,"""Africa""" +2023-09-18,21351,9950,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2681.27,{},74612,0,"""Europe""" +2023-08-20,21352,1748,"[\""Keyboard\""]",1747.92,"{\""loyalty\"": \""19%\""}",280964,1,"""Africa""" +2024-05-22,21353,6115,"[\""Tablet\""]",923.81,{},88036,0,"""Africa""" +2024-04-30,21354,1486,"[\""Headphones\"", \""Tablet\""]",2763.65,{},267036,1,"""Asia""" +2024-06-01,21355,7873,"[\""Phone\"", \""Charger\""]",3688.62,"{\""promo\"": \""25%\""}",297955,0,"""North America""" +2024-10-19,21356,7354,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1771.5,"{\""seasonal\"": \""5%\""}",219830,1,"""North America""" +2023-01-19,21357,8572,"[\""Tablet\""]",3969.92,{},27756,1,"""Asia""" +2023-04-21,21358,1867,"[\""Wireless Mouse\"", \""Laptop\""]",2071.14,"{\""promo\"": \""21%\""}",54888,1,"""South America""" +2024-11-28,21359,1010,"[\""Headphones\"", \""Phone\""]",2246.53,"{\""loyalty\"": \""16%\""}",263275,1,"""Asia""" +2023-02-22,21360,8103,"[\""Keyboard\""]",4132.46,{},148313,1,"""Africa""" +2024-02-20,21361,5905,"[\""Phone\"", \""Monitor\""]",2389.37,{},4549,1,"""Africa""" +2024-04-24,21362,9469,"[\""Tablet\"", \""Keyboard\""]",1489.87,"{\""loyalty\"": \""20%\""}",199913,1,"""Africa""" +2024-03-27,21363,8049,"[\""Charger\"", \""Keyboard\""]",1674.16,"{\""promo\"": \""20%\""}",201637,1,"""Asia""" +2024-03-04,21364,1032,"[\""Wireless Mouse\"", \""Charger\""]",2981.51,{},274716,1,"""Europe""" +2024-06-09,21365,4957,"[\""Phone\"", \""Tablet\""]",4018.88,"{\""loyalty\"": \""30%\""}",122569,0,"""North America""" +2023-01-22,21366,7920,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2040.46,"{\"": \""9%\""}",163482,0,"""Asia""" +2024-03-15,21367,8316,"[\""Charger\""]",1156.22,{},238362,1,"""Africa""" +2024-11-06,21368,866,"[\""Charger\""]",3621.31,"{\""seasonal\"": \""10%\""}",271093,1,"""Africa""" +2023-10-22,21369,2327,"[\""Tablet\"", \""Phone\""]",841.16,{},268907,1,"""Africa""" +2023-01-21,21370,1589,"[\""Phone\"", \""Keyboard\""]",4456.47,{},291962,0,"""Africa""" +2024-01-08,21371,9382,"[\""Headphones\"", \""Charger\""]",4439.88,"{\""promo\"": \""5%\""}",218315,0,"""North America""" +2024-10-19,21372,4016,"[\""Monitor\"", \""Laptop\""]",3052.54,{},9733,0,"""North America""" +2023-09-17,21373,7522,"[\""Laptop\""]",3269.87,"{\""loyalty\"": \""7%\""}",201581,1,"""North America""" +2023-10-27,21374,1897,"[\""Wireless Mouse\"", \""Headphones\""]",114.52,"{\"": \""29%\""}",136625,1,"""Europe""" +2024-09-02,21375,1414,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4323.74,"{\""promo\"": \""25%\""}",66381,1,"""South America""" +2023-08-29,21376,4945,"[\""Laptop\"", \""Phone\"", \""Charger\""]",212.97,"{\""seasonal\"": \""19%\""}",248408,1,"""Asia""" +2024-11-22,21377,7862,"[\""Keyboard\""]",3305.51,"{\"": \""5%\""}",205402,1,"""North America""" +2024-08-21,21378,6866,"[\""Phone\"", \""Wireless Mouse\""]",207.47,"{\""promo\"": \""21%\""}",58344,0,"""Asia""" +2024-10-23,21379,921,"[\""Monitor\"", \""Headphones\""]",1154.83,{},299966,0,"""Europe""" +2024-03-12,21380,9129,"[\""Tablet\""]",3460.58,{},287888,1,"""North America""" +2023-09-26,21381,6669,"[\""Keyboard\""]",4247.16,{},153594,1,"""Africa""" +2023-12-30,21382,4145,"[\""Charger\"", \""Wireless Mouse\""]",1198.8,{},225762,0,"""North America""" +2024-08-09,21383,2204,"[\""Charger\"", \""Keyboard\""]",1203.96,"{\""promo\"": \""17%\""}",137294,1,"""Asia""" +2024-05-09,21384,9620,"[\""Wireless Mouse\"", \""Laptop\""]",301.71,{},217162,1,"""Asia""" +2024-12-16,21385,8631,"[\""Laptop\""]",2158.8,{},146436,1,"""Asia""" +2024-10-05,21386,3621,"[\""Headphones\""]",3507.96,{},59961,1,"""North America""" +2024-02-19,21387,6642,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1256.88,"{\""seasonal\"": \""11%\""}",3917,1,"""Africa""" +2023-01-15,21388,5877,"[\""Headphones\"", \""Keyboard\""]",1372.4,{},227852,0,"""Europe""" +2024-05-10,21389,3971,"[\""Headphones\""]",381.3,{},88817,0,"""Asia""" +2023-09-05,21390,5782,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",877.87,"{\"": \""24%\""}",11396,0,"""South America""" +2024-06-10,21391,4909,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2557.59,"{\""loyalty\"": \""20%\""}",92334,0,"""Asia""" +2024-09-13,21392,2347,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1248.31,{},295441,0,"""North America""" +2024-11-11,21393,4721,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4313.83,{},276896,1,"""Asia""" +2024-02-14,21394,8616,"[\""Phone\""]",2683.6,"{\""loyalty\"": \""27%\""}",181767,1,"""South America""" +2024-01-10,21395,1501,"[\""Wireless Mouse\""]",4564.18,"{\""promo\"": \""15%\""}",83635,1,"""Africa""" +2024-06-22,21396,816,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3062.34,{},280079,1,"""Europe""" +2024-12-12,21397,2285,"[\""Charger\""]",2310.15,"{\""promo\"": \""18%\""}",98654,0,"""Africa""" +2024-04-11,21398,8833,"[\""Wireless Mouse\""]",3166.8,{},156825,0,"""South America""" +2023-07-30,21399,8363,"[\""Phone\"", \""Headphones\""]",1594.11,"{\""loyalty\"": \""8%\""}",279607,1,"""North America""" +2024-03-01,21400,1511,"[\""Laptop\"", \""Wireless Mouse\""]",1237.9,{},249987,1,"""Europe""" +2024-06-17,21401,5275,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1002.84,{},166880,0,"""Africa""" +2024-05-15,21402,3103,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3247.07,{},21559,1,"""Africa""" +2024-05-22,21403,2207,"[\""Wireless Mouse\"", \""Tablet\""]",4866.83,"{\""seasonal\"": \""19%\""}",293360,0,"""Asia""" +2023-04-23,21404,1484,"[\""Charger\"", \""Keyboard\""]",4904.13,{},53651,0,"""Asia""" +2024-07-31,21405,7179,"[\""Charger\"", \""Phone\""]",1332.84,"{\""loyalty\"": \""10%\""}",290520,0,"""Asia""" +2024-12-09,21406,3245,"[\""Phone\"", \""Headphones\""]",2337.1,"{\""loyalty\"": \""22%\""}",271817,0,"""South America""" +2023-12-27,21407,204,"[\""Phone\"", \""Keyboard\""]",536.8,"{\""loyalty\"": \""12%\""}",147017,0,"""North America""" +2024-06-11,21408,8429,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4715.51,{},64347,1,"""South America""" +2023-06-03,21409,6519,"[\""Charger\""]",2827.2,"{\""promo\"": \""22%\""}",22887,1,"""Africa""" +2023-10-19,21410,8948,"[\""Headphones\""]",511.72,{},222655,1,"""North America""" +2023-09-03,21411,8959,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3304.79,"{\""seasonal\"": \""14%\""}",141621,1,"""Europe""" +2023-06-15,21412,5698,"[\""Tablet\""]",3350.28,"{\""seasonal\"": \""25%\""}",193174,0,"""North America""" +2023-04-26,21413,5574,"[\""Keyboard\""]",2386.88,"{\""loyalty\"": \""25%\""}",77395,1,"""Africa""" +2024-04-30,21414,4427,"[\""Monitor\"", \""Wireless Mouse\""]",3329.2,"{\""promo\"": \""26%\""}",221094,1,"""Europe""" +2023-10-16,21415,3469,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",778.17,{},214220,1,"""South America""" +2024-12-14,21416,6002,"[\""Keyboard\"", \""Wireless Mouse\""]",305.56,"{\""loyalty\"": \""9%\""}",161183,1,"""Asia""" +2023-08-06,21417,7672,"[\""Laptop\""]",504.91,"{\""loyalty\"": \""26%\""}",249936,1,"""North America""" +2024-01-12,21418,6090,"[\""Charger\"", \""Phone\""]",3929.83,{},180002,1,"""South America""" +2024-11-11,21419,1158,"[\""Charger\""]",1699.85,"{\""promo\"": \""7%\""}",71000,0,"""Europe""" +2023-09-07,21420,4572,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3508.92,{},98373,0,"""Europe""" +2023-11-26,21421,8956,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1897.46,"{\""seasonal\"": \""18%\""}",8676,0,"""Africa""" +2024-05-21,21422,970,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4651.49,{},74717,0,"""Asia""" +2023-12-05,21423,7556,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",482.25,"{\""seasonal\"": \""25%\""}",90652,0,"""South America""" +2024-10-02,21424,7135,"[\""Monitor\"", \""Keyboard\""]",2618.0,{},223284,1,"""Africa""" +2023-01-08,21425,7826,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3236.58,{},287162,0,"""North America""" +2023-08-22,21426,6818,"[\""Tablet\""]",2951.34,"{\""seasonal\"": \""15%\""}",98517,1,"""Africa""" +2023-06-14,21427,1857,"[\""Laptop\""]",2384.69,"{\""promo\"": \""30%\""}",200358,0,"""Europe""" +2024-04-10,21428,6099,"[\""Keyboard\"", \""Headphones\""]",740.34,"{\""loyalty\"": \""21%\""}",60667,0,"""North America""" +2023-09-14,21429,5397,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1964.85,"{\""seasonal\"": \""29%\""}",78303,1,"""Africa""" +2024-06-23,21430,1352,"[\""Wireless Mouse\"", \""Charger\""]",1947.43,"{\""promo\"": \""6%\""}",16529,1,"""Africa""" +2024-06-30,21431,5780,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3466.07,"{\""seasonal\"": \""24%\""}",59154,0,"""South America""" +2023-01-21,21432,8986,"[\""Charger\""]",1073.67,{},204071,1,"""Africa""" +2024-12-02,21433,9031,"[\""Phone\"", \""Monitor\""]",2330.33,"{\""seasonal\"": \""16%\""}",23161,0,"""North America""" +2024-01-15,21434,3030,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2933.46,"{\"": \""9%\""}",14756,1,"""Asia""" +2023-06-21,21435,5035,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2211.9,{},196256,0,"""Europe""" +2023-03-29,21436,8093,"[\""Wireless Mouse\"", \""Monitor\""]",464.65,{},184075,0,"""North America""" +2023-03-28,21437,7074,"[\""Monitor\""]",2579.01,{},84520,1,"""Africa""" +2023-12-31,21438,2228,"[\""Headphones\"", \""Monitor\""]",2589.27,{},164189,0,"""Asia""" +2024-05-04,21439,3869,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4400.93,{},121648,1,"""South America""" +2023-04-25,21440,5272,"[\""Wireless Mouse\""]",930.49,{},122367,0,"""Asia""" +2023-11-04,21441,6378,"[\""Monitor\""]",4699.31,{},26653,1,"""Africa""" +2023-04-16,21442,1404,"[\""Wireless Mouse\"", \""Phone\""]",3439.5,{},221195,1,"""Europe""" +2024-11-27,21443,1310,"[\""Keyboard\"", \""Wireless Mouse\""]",865.06,"{\"": \""15%\""}",113045,1,"""South America""" +2023-10-18,21444,9725,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",643.16,{},289080,0,"""Asia""" +2023-02-14,21445,7716,"[\""Charger\"", \""Wireless Mouse\""]",4209.46,{},168082,0,"""Asia""" +2023-10-11,21446,3317,"[\""Headphones\"", \""Wireless Mouse\""]",1652.4,"{\"": \""13%\""}",208336,1,"""North America""" +2023-02-19,21447,6502,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4891.29,{},109556,0,"""Asia""" +2024-01-19,21448,4141,"[\""Keyboard\""]",3208.23,"{\""promo\"": \""8%\""}",123965,1,"""Asia""" +2024-03-30,21449,7518,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3995.09,"{\""promo\"": \""26%\""}",251396,0,"""Europe""" +2023-06-26,21450,1161,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2357.65,{},176716,1,"""South America""" +2024-08-19,21451,3282,"[\""Phone\""]",993.46,{},10159,1,"""Africa""" +2023-09-10,21452,5093,"[\""Tablet\"", \""Monitor\""]",1519.16,"{\"": \""19%\""}",223643,0,"""Asia""" +2024-12-10,21453,7011,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2517.54,{},74099,0,"""Asia""" +2024-03-20,21454,190,"[\""Phone\""]",4802.27,{},256138,0,"""North America""" +2024-10-26,21455,7146,"[\""Tablet\""]",1520.88,"{\""promo\"": \""21%\""}",20486,0,"""Asia""" +2023-01-03,21456,3689,"[\""Laptop\""]",3878.8,"{\""seasonal\"": \""26%\""}",257995,1,"""Europe""" +2023-06-22,21457,1402,"[\""Charger\"", \""Laptop\""]",1638.86,"{\"": \""19%\""}",40450,1,"""Europe""" +2024-02-19,21458,1726,"[\""Phone\""]",3121.18,{},195743,0,"""Africa""" +2023-06-07,21459,9593,"[\""Wireless Mouse\"", \""Laptop\""]",3409.12,"{\""seasonal\"": \""8%\""}",19736,0,"""South America""" +2023-07-07,21460,8886,"[\""Wireless Mouse\""]",1039.25,{},161956,1,"""North America""" +2024-10-23,21461,9377,"[\""Monitor\""]",631.26,{},79999,1,"""North America""" +2024-11-11,21462,9301,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4374.9,"{\""promo\"": \""8%\""}",137842,0,"""Asia""" +2024-07-06,21463,8168,"[\""Phone\"", \""Laptop\""]",3919.81,{},218421,1,"""Asia""" +2024-01-05,21464,89,"[\""Monitor\"", \""Tablet\""]",3994.8,"{\""promo\"": \""15%\""}",160326,0,"""Africa""" +2024-01-10,21465,6818,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3219.87,{},46520,0,"""Europe""" +2024-05-24,21466,5087,"[\""Tablet\""]",2812.64,{},272323,1,"""Asia""" +2024-04-27,21467,5320,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2221.26,"{\""loyalty\"": \""24%\""}",111415,1,"""Europe""" +2024-11-03,21468,8324,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4330.22,"{\""seasonal\"": \""17%\""}",101108,1,"""Europe""" +2023-04-08,21469,4650,"[\""Charger\"", \""Phone\""]",381.99,"{\""seasonal\"": \""7%\""}",166745,1,"""Africa""" +2023-07-10,21470,4440,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1669.81,"{\""promo\"": \""6%\""}",119922,0,"""South America""" +2024-09-22,21471,6762,"[\""Phone\""]",2914.47,{},287228,1,"""Asia""" +2024-12-10,21472,6103,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1932.62,{},235879,1,"""Europe""" +2023-02-13,21473,9391,"[\""Phone\""]",3670.09,"{\""seasonal\"": \""11%\""}",4397,1,"""North America""" +2024-10-28,21474,662,"[\""Phone\""]",4465.64,{},118678,1,"""Asia""" +2024-08-11,21475,3907,"[\""Laptop\""]",1336.52,{},291410,0,"""North America""" +2024-05-21,21476,4675,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",996.02,"{\""loyalty\"": \""6%\""}",216561,1,"""Asia""" +2024-12-22,21477,5472,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1555.65,{},158850,0,"""North America""" +2024-03-29,21478,5068,"[\""Phone\""]",4679.81,{},122832,1,"""Europe""" +2023-12-14,21479,6959,"[\""Tablet\""]",4247.08,{},86906,1,"""North America""" +2024-10-08,21480,8927,"[\""Wireless Mouse\"", \""Laptop\""]",450.61,"{\"": \""15%\""}",227036,0,"""Europe""" +2024-08-22,21481,9756,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4690.22,{},250861,0,"""Europe""" +2024-03-16,21482,6361,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3596.87,{},122403,1,"""Europe""" +2024-12-13,21483,3706,"[\""Tablet\"", \""Headphones\""]",593.78,"{\""loyalty\"": \""25%\""}",184388,0,"""Asia""" +2023-07-02,21484,5742,"[\""Phone\""]",3181.51,"{\"": \""7%\""}",256974,0,"""Africa""" +2024-05-03,21485,4072,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4416.76,"{\""loyalty\"": \""18%\""}",92479,1,"""Africa""" +2024-05-04,21486,1446,"[\""Laptop\""]",3831.38,"{\""loyalty\"": \""30%\""}",174739,0,"""Africa""" +2024-12-26,21487,8949,"[\""Wireless Mouse\""]",4526.91,"{\"": \""11%\""}",288205,1,"""Africa""" +2023-06-16,21488,4502,"[\""Keyboard\""]",3211.5,"{\""promo\"": \""29%\""}",275459,0,"""Europe""" +2023-08-02,21489,3525,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3673.28,"{\""promo\"": \""18%\""}",19314,1,"""Africa""" +2023-05-25,21490,3636,"[\""Keyboard\""]",4827.17,{},278707,0,"""Asia""" +2024-01-05,21491,8939,"[\""Keyboard\""]",1178.06,{},17808,1,"""North America""" +2024-01-19,21492,3032,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2234.8,{},148621,1,"""North America""" +2024-03-13,21493,282,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3595.79,"{\"": \""5%\""}",102062,0,"""North America""" +2024-10-17,21494,1861,"[\""Headphones\""]",1137.04,{},239726,0,"""Europe""" +2024-07-22,21495,6498,"[\""Charger\""]",3448.33,{},189784,1,"""North America""" +2023-04-16,21496,7201,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3519.36,"{\""seasonal\"": \""9%\""}",63046,1,"""Asia""" +2024-07-22,21497,4113,"[\""Monitor\"", \""Phone\""]",3445.54,{},54420,0,"""South America""" +2024-04-11,21498,9397,"[\""Headphones\"", \""Monitor\""]",1214.15,"{\""seasonal\"": \""18%\""}",43168,1,"""Africa""" +2023-10-14,21499,348,"[\""Monitor\"", \""Charger\""]",1400.24,"{\""promo\"": \""13%\""}",271087,1,"""North America""" +2023-08-31,21500,3193,"[\""Laptop\"", \""Headphones\""]",2237.27,{},4918,1,"""Europe""" +2023-06-24,21501,2234,"[\""Wireless Mouse\"", \""Phone\""]",822.44,"{\""seasonal\"": \""17%\""}",263552,1,"""North America""" +2023-04-27,21502,2188,"[\""Charger\""]",350.33,"{\"": \""23%\""}",26086,1,"""Asia""" +2023-09-08,21503,684,"[\""Headphones\"", \""Monitor\""]",1730.31,"{\""loyalty\"": \""23%\""}",285770,0,"""South America""" +2024-05-31,21504,3031,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3772.18,"{\""loyalty\"": \""28%\""}",111869,0,"""Europe""" +2024-07-04,21505,8771,"[\""Phone\""]",1400.52,{},88941,1,"""Europe""" +2023-11-24,21506,3498,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2052.87,{},279529,1,"""Asia""" +2024-11-06,21507,7129,"[\""Laptop\"", \""Wireless Mouse\""]",4522.66,{},128638,0,"""Africa""" +2023-01-02,21508,1122,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3637.53,"{\""seasonal\"": \""21%\""}",185510,1,"""South America""" +2023-10-14,21509,6972,"[\""Monitor\"", \""Phone\""]",1174.74,{},51362,0,"""North America""" +2024-03-09,21510,9346,"[\""Wireless Mouse\""]",188.81,"{\""seasonal\"": \""11%\""}",72805,1,"""Asia""" +2023-08-11,21511,74,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2839.68,{},150987,0,"""South America""" +2023-12-20,21512,4676,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4686.02,"{\""loyalty\"": \""15%\""}",178088,1,"""Asia""" +2023-10-19,21513,4323,"[\""Laptop\"", \""Phone\""]",65.86,{},266651,1,"""Europe""" +2024-01-20,21514,4563,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",463.51,"{\""promo\"": \""7%\""}",237427,1,"""Asia""" +2024-01-11,21515,8188,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",519.76,"{\""loyalty\"": \""9%\""}",23993,0,"""Asia""" +2023-06-12,21516,9731,"[\""Laptop\"", \""Headphones\""]",3066.28,"{\"": \""11%\""}",155663,0,"""Africa""" +2023-01-22,21517,2017,"[\""Tablet\"", \""Phone\""]",730.92,"{\""promo\"": \""15%\""}",76193,1,"""Asia""" +2023-12-06,21518,9899,"[\""Keyboard\""]",3602.32,"{\""seasonal\"": \""10%\""}",262505,1,"""Europe""" +2023-08-14,21519,785,"[\""Keyboard\""]",3465.88,{},78231,0,"""South America""" +2023-04-02,21520,4405,"[\""Wireless Mouse\""]",2402.93,"{\""loyalty\"": \""12%\""}",154416,1,"""North America""" +2024-10-01,21521,5123,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4163.43,{},201351,0,"""Africa""" +2024-12-17,21522,1164,"[\""Charger\"", \""Keyboard\""]",4669.97,{},272297,1,"""Asia""" +2023-06-27,21523,620,"[\""Wireless Mouse\"", \""Keyboard\""]",1805.25,"{\"": \""12%\""}",178599,1,"""Asia""" +2023-03-23,21524,4635,"[\""Charger\"", \""Headphones\""]",4834.69,"{\""promo\"": \""17%\""}",60206,0,"""North America""" +2024-07-19,21525,3426,"[\""Wireless Mouse\"", \""Keyboard\""]",3489.32,{},204516,1,"""North America""" +2024-05-04,21526,8333,"[\""Charger\"", \""Wireless Mouse\""]",346.66,"{\""loyalty\"": \""9%\""}",276709,1,"""Asia""" +2023-08-06,21527,2523,"[\""Charger\""]",2439.09,{},270412,0,"""Europe""" +2023-10-19,21528,6086,"[\""Wireless Mouse\"", \""Monitor\""]",1556.35,"{\"": \""28%\""}",257459,1,"""North America""" +2024-09-09,21529,2610,"[\""Monitor\"", \""Phone\""]",2788.35,{},133701,1,"""North America""" +2023-01-10,21530,5242,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4453.53,"{\"": \""24%\""}",147659,1,"""Africa""" +2023-12-22,21531,4829,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",330.41,{},240417,0,"""Europe""" +2023-02-16,21532,5912,"[\""Laptop\""]",3090.26,"{\""seasonal\"": \""23%\""}",235294,0,"""Africa""" +2024-11-14,21533,7551,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4054.57,{},218061,0,"""Asia""" +2024-02-25,21534,5033,"[\""Tablet\"", \""Headphones\""]",1316.93,"{\"": \""11%\""}",4859,0,"""North America""" +2023-12-23,21535,7331,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1535.92,{},165583,0,"""Europe""" +2023-11-10,21536,685,"[\""Wireless Mouse\""]",1993.92,{},58319,1,"""Africa""" +2023-02-22,21537,8097,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1837.74,{},274830,0,"""North America""" +2023-04-11,21538,7734,"[\""Headphones\"", \""Monitor\""]",2962.7,"{\""seasonal\"": \""6%\""}",37381,0,"""South America""" +2024-10-20,21539,4975,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4192.08,{},112433,0,"""Africa""" +2023-08-25,21540,8786,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2922.18,{},268366,0,"""Africa""" +2024-01-03,21541,4234,"[\""Wireless Mouse\""]",2243.32,{},140464,1,"""North America""" +2023-05-13,21542,8742,"[\""Monitor\""]",977.6,"{\"": \""5%\""}",210539,0,"""Asia""" +2024-04-08,21543,555,"[\""Monitor\"", \""Headphones\""]",3289.93,"{\""promo\"": \""21%\""}",78018,0,"""Asia""" +2023-03-26,21544,6830,"[\""Monitor\""]",3072.24,"{\"": \""22%\""}",139212,1,"""North America""" +2023-03-31,21545,479,"[\""Phone\""]",3761.99,{},9485,1,"""South America""" +2023-02-25,21546,3833,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1149.46,{},116305,1,"""Asia""" +2023-04-02,21547,5215,"[\""Laptop\"", \""Charger\""]",879.24,"{\""promo\"": \""27%\""}",273937,1,"""North America""" +2024-05-17,21548,111,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2694.8,{},211004,0,"""Africa""" +2023-05-03,21549,7200,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3400.46,{},93122,1,"""South America""" +2023-07-20,21550,9587,"[\""Tablet\""]",1016.33,"{\""promo\"": \""25%\""}",88202,1,"""Europe""" +2024-06-04,21551,8798,"[\""Tablet\"", \""Headphones\""]",4602.62,{},82728,1,"""Europe""" +2023-02-20,21552,8870,"[\""Charger\"", \""Laptop\""]",2063.23,{},250788,1,"""North America""" +2024-10-04,21553,5982,"[\""Wireless Mouse\""]",4494.36,"{\""promo\"": \""25%\""}",218896,0,"""South America""" +2023-03-27,21554,9069,"[\""Headphones\"", \""Tablet\""]",2660.79,"{\""seasonal\"": \""12%\""}",116171,1,"""North America""" +2024-09-04,21555,7808,"[\""Tablet\"", \""Keyboard\""]",1558.97,{},151711,0,"""South America""" +2024-11-20,21556,8160,"[\""Monitor\"", \""Laptop\""]",2723.43,{},25270,1,"""Asia""" +2023-06-22,21557,8614,"[\""Phone\""]",2582.48,{},184034,0,"""Africa""" +2024-08-30,21558,4062,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",821.39,{},4371,0,"""North America""" +2024-08-19,21559,9310,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4579.12,"{\""promo\"": \""12%\""}",7883,1,"""North America""" +2024-02-22,21560,2624,"[\""Wireless Mouse\"", \""Laptop\""]",1602.56,"{\""promo\"": \""8%\""}",203628,0,"""Asia""" +2023-04-22,21561,783,"[\""Headphones\""]",4800.73,"{\""promo\"": \""16%\""}",295624,1,"""South America""" +2024-02-26,21562,5875,"[\""Phone\"", \""Wireless Mouse\""]",2641.92,"{\""loyalty\"": \""30%\""}",128751,1,"""Asia""" +2024-07-28,21563,2715,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2567.09,"{\"": \""7%\""}",293428,1,"""Asia""" +2024-06-24,21564,5237,"[\""Headphones\"", \""Monitor\""]",2223.5,{},128854,1,"""North America""" +2024-08-18,21565,6680,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2997.48,"{\""loyalty\"": \""13%\""}",273341,1,"""South America""" +2023-11-29,21566,8986,"[\""Monitor\""]",1593.47,"{\""seasonal\"": \""14%\""}",276687,1,"""North America""" +2023-11-11,21567,2068,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3584.06,{},265385,0,"""Europe""" +2023-03-29,21568,402,"[\""Monitor\"", \""Laptop\""]",4838.82,{},293456,1,"""Asia""" +2024-02-27,21569,701,"[\""Keyboard\"", \""Charger\""]",1678.81,{},112659,1,"""Asia""" +2024-08-15,21570,2828,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1323.31,{},78708,0,"""North America""" +2023-02-05,21571,4986,"[\""Wireless Mouse\""]",1127.81,"{\""promo\"": \""14%\""}",288585,1,"""Asia""" +2023-03-18,21572,3936,"[\""Keyboard\"", \""Phone\""]",3381.83,{},87114,1,"""Asia""" +2023-03-19,21573,8618,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4681.47,{},39026,0,"""Asia""" +2024-05-16,21574,5153,"[\""Laptop\""]",2271.04,{},38003,1,"""Asia""" +2024-12-28,21575,5150,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1445.47,"{\"": \""19%\""}",282239,1,"""Asia""" +2024-03-31,21576,1673,"[\""Charger\"", \""Monitor\""]",4889.89,"{\"": \""22%\""}",179751,0,"""Europe""" +2023-08-30,21577,4709,"[\""Keyboard\"", \""Laptop\""]",142.86,{},118412,1,"""North America""" +2023-03-29,21578,8474,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3386.89,"{\"": \""25%\""}",171634,0,"""Africa""" +2023-07-17,21579,2400,"[\""Wireless Mouse\""]",610.69,{},292637,0,"""North America""" +2023-02-01,21580,5354,"[\""Monitor\""]",2515.06,"{\""seasonal\"": \""29%\""}",271090,0,"""South America""" +2023-01-24,21581,1053,"[\""Headphones\""]",3794.82,{},177301,1,"""Asia""" +2023-03-26,21582,7497,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2109.53,{},76992,1,"""Asia""" +2023-03-11,21583,5689,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4491.34,{},62608,1,"""Asia""" +2023-11-22,21584,6902,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1843.17,{},180500,1,"""Asia""" +2023-04-20,21585,9442,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3078.17,"{\"": \""26%\""}",75847,0,"""Africa""" +2023-12-06,21586,5373,"[\""Charger\""]",4190.84,"{\""loyalty\"": \""22%\""}",71131,0,"""Africa""" +2023-03-23,21587,4014,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2899.39,"{\""loyalty\"": \""22%\""}",17410,1,"""Asia""" +2024-04-05,21588,3823,"[\""Keyboard\"", \""Phone\""]",1578.58,"{\""promo\"": \""13%\""}",263481,0,"""North America""" +2024-09-19,21589,7784,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1247.68,"{\"": \""19%\""}",81457,1,"""South America""" +2023-07-25,21590,924,"[\""Monitor\""]",2554.22,"{\"": \""23%\""}",117931,0,"""Europe""" +2024-03-19,21591,498,"[\""Tablet\"", \""Charger\""]",1978.53,"{\""seasonal\"": \""24%\""}",80159,0,"""Europe""" +2023-11-02,21592,5816,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",947.26,{},293129,1,"""Asia""" +2023-03-18,21593,7246,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1235.59,"{\"": \""27%\""}",217098,0,"""Africa""" +2024-09-19,21594,3372,"[\""Headphones\"", \""Laptop\""]",123.82,{},40915,0,"""Africa""" +2023-06-27,21595,6878,"[\""Charger\"", \""Keyboard\""]",619.75,{},12422,1,"""South America""" +2024-06-16,21596,5141,"[\""Wireless Mouse\""]",4685.45,{},58446,1,"""Africa""" +2023-04-21,21597,7297,"[\""Phone\""]",858.87,{},46845,0,"""Europe""" +2023-06-27,21598,9785,"[\""Charger\"", \""Headphones\""]",390.08,{},86808,1,"""Europe""" +2024-11-03,21599,3236,"[\""Charger\""]",4450.47,"{\""seasonal\"": \""19%\""}",224245,0,"""Europe""" +2023-10-27,21600,5214,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1603.68,"{\""seasonal\"": \""16%\""}",78753,0,"""Europe""" +2024-01-04,21601,3521,"[\""Phone\""]",2204.48,{},201942,0,"""Africa""" +2024-06-02,21602,635,"[\""Wireless Mouse\""]",2162.82,"{\""promo\"": \""7%\""}",165086,0,"""Africa""" +2024-07-17,21603,5328,"[\""Charger\""]",1481.91,{},221415,0,"""North America""" +2023-05-27,21604,8407,"[\""Keyboard\"", \""Headphones\""]",4639.17,{},132716,1,"""Europe""" +2024-07-23,21605,2513,"[\""Charger\"", \""Tablet\""]",3989.31,"{\""loyalty\"": \""11%\""}",148753,0,"""South America""" +2024-05-21,21606,958,"[\""Tablet\"", \""Keyboard\""]",1899.13,"{\""promo\"": \""21%\""}",269498,0,"""Africa""" +2024-11-26,21607,5515,"[\""Headphones\""]",3749.24,"{\""seasonal\"": \""17%\""}",287863,1,"""Asia""" +2023-08-13,21608,3522,"[\""Tablet\""]",376.69,"{\""seasonal\"": \""10%\""}",147298,1,"""Asia""" +2023-01-26,21609,4456,"[\""Laptop\""]",525.69,{},41879,1,"""North America""" +2023-06-20,21610,1767,"[\""Charger\"", \""Laptop\""]",1470.82,"{\"": \""25%\""}",248135,1,"""Africa""" +2023-07-01,21611,4357,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1866.74,"{\"": \""6%\""}",280246,1,"""Africa""" +2023-01-01,21612,9245,"[\""Headphones\""]",3186.86,"{\""loyalty\"": \""29%\""}",131594,0,"""Asia""" +2024-12-13,21613,113,"[\""Monitor\""]",2744.1,"{\""loyalty\"": \""30%\""}",40553,0,"""Africa""" +2023-07-03,21614,8096,"[\""Wireless Mouse\""]",3171.84,"{\""seasonal\"": \""7%\""}",58433,1,"""South America""" +2023-11-14,21615,3268,"[\""Keyboard\"", \""Phone\""]",3683.88,"{\""promo\"": \""18%\""}",162453,0,"""Europe""" +2024-07-28,21616,424,"[\""Laptop\""]",2150.2,{},212628,0,"""Africa""" +2024-01-03,21617,8224,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3807.84,"{\""loyalty\"": \""24%\""}",105835,0,"""Africa""" +2023-11-12,21618,3628,"[\""Monitor\"", \""Wireless Mouse\""]",1177.08,"{\"": \""18%\""}",117583,0,"""South America""" +2023-10-18,21619,1231,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2160.26,"{\""seasonal\"": \""26%\""}",120251,1,"""Africa""" +2023-01-22,21620,8010,"[\""Wireless Mouse\"", \""Phone\""]",4276.26,"{\"": \""16%\""}",182068,0,"""Africa""" +2024-04-19,21621,8426,"[\""Headphones\""]",2881.29,"{\""promo\"": \""18%\""}",137353,1,"""North America""" +2024-01-27,21622,8844,"[\""Monitor\"", \""Charger\""]",377.87,{},36861,1,"""North America""" +2023-06-25,21623,2775,"[\""Tablet\""]",2117.65,{},132539,0,"""North America""" +2024-07-19,21624,3986,"[\""Charger\""]",2548.38,{},174210,1,"""South America""" +2024-01-30,21625,2957,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3710.77,"{\""seasonal\"": \""7%\""}",135216,1,"""North America""" +2023-02-03,21626,2645,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3976.13,"{\""loyalty\"": \""14%\""}",10628,0,"""Europe""" +2024-01-26,21627,1807,"[\""Keyboard\"", \""Laptop\""]",339.75,{},49399,1,"""Africa""" +2024-05-01,21628,727,"[\""Laptop\"", \""Headphones\""]",3435.43,{},81202,1,"""Europe""" +2024-02-12,21629,657,"[\""Wireless Mouse\"", \""Monitor\""]",1012.98,{},144232,1,"""Africa""" +2023-12-22,21630,9251,"[\""Phone\"", \""Laptop\""]",1885.6,{},235694,1,"""South America""" +2023-01-17,21631,3678,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3106.29,"{\""promo\"": \""28%\""}",282963,1,"""North America""" +2024-10-24,21632,3087,"[\""Laptop\""]",2972.84,"{\""loyalty\"": \""5%\""}",239519,0,"""South America""" +2024-12-25,21633,4091,"[\""Laptop\""]",2163.31,{},245741,1,"""North America""" +2023-05-10,21634,5110,"[\""Laptop\""]",2279.8,{},70387,0,"""Asia""" +2024-01-13,21635,4534,"[\""Charger\"", \""Tablet\""]",2099.54,"{\"": \""15%\""}",221982,1,"""Europe""" +2023-11-07,21636,7592,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4041.41,"{\""promo\"": \""22%\""}",112456,0,"""South America""" +2024-12-14,21637,650,"[\""Keyboard\"", \""Monitor\""]",111.06,{},133352,1,"""North America""" +2023-03-07,21638,6511,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2550.21,"{\""seasonal\"": \""17%\""}",109938,1,"""Europe""" +2024-07-21,21639,1586,"[\""Wireless Mouse\""]",3788.33,"{\""loyalty\"": \""19%\""}",103772,0,"""Europe""" +2023-08-07,21640,1634,"[\""Tablet\"", \""Headphones\""]",1613.12,"{\""promo\"": \""17%\""}",229667,1,"""Asia""" +2024-04-07,21641,9466,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3007.86,"{\""seasonal\"": \""15%\""}",275672,0,"""Africa""" +2024-06-25,21642,3976,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",835.43,"{\"": \""25%\""}",82199,1,"""North America""" +2024-04-28,21643,7756,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1006.96,"{\""loyalty\"": \""16%\""}",227818,0,"""North America""" +2023-08-30,21644,578,"[\""Charger\"", \""Headphones\""]",1372.8,"{\""seasonal\"": \""10%\""}",189929,1,"""Europe""" +2024-03-15,21645,8988,"[\""Keyboard\"", \""Laptop\""]",1797.27,{},19157,0,"""North America""" +2024-02-10,21646,6035,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3415.26,{},48761,1,"""Europe""" +2024-05-26,21647,4301,"[\""Tablet\"", \""Keyboard\""]",4301.76,"{\"": \""24%\""}",198302,0,"""South America""" +2024-12-11,21648,1088,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3406.02,{},209890,1,"""Asia""" +2024-11-04,21649,8576,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4145.27,{},141665,0,"""North America""" +2023-06-10,21650,8142,"[\""Wireless Mouse\""]",4243.05,"{\""promo\"": \""28%\""}",137440,0,"""Africa""" +2023-07-02,21651,3137,"[\""Headphones\""]",4210.68,"{\""promo\"": \""7%\""}",249133,0,"""South America""" +2024-04-09,21652,3657,"[\""Tablet\""]",3844.43,{},47236,1,"""Europe""" +2023-09-04,21653,8302,"[\""Phone\"", \""Laptop\""]",975.71,{},91219,0,"""South America""" +2023-04-10,21654,3708,"[\""Laptop\"", \""Keyboard\""]",2943.1,"{\""seasonal\"": \""6%\""}",180567,1,"""South America""" +2024-08-09,21655,1430,"[\""Monitor\"", \""Headphones\""]",4177.22,{},193396,1,"""Africa""" +2023-02-14,21656,7324,"[\""Phone\""]",2573.94,{},111064,1,"""South America""" +2024-03-14,21657,7362,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4255.67,{},82856,0,"""South America""" +2023-09-10,21658,1647,"[\""Wireless Mouse\"", \""Headphones\""]",2523.02,{},244673,0,"""Asia""" +2023-01-27,21659,9615,"[\""Charger\"", \""Phone\""]",4638.11,"{\""promo\"": \""11%\""}",229200,1,"""North America""" +2023-07-15,21660,898,"[\""Laptop\""]",1983.81,{},282208,0,"""South America""" +2024-05-24,21661,5200,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2030.03,"{\""loyalty\"": \""17%\""}",113488,0,"""Asia""" +2023-09-23,21662,346,"[\""Tablet\"", \""Headphones\""]",3320.29,{},213583,0,"""Europe""" +2023-07-05,21663,512,"[\""Laptop\""]",752.05,"{\"": \""30%\""}",10189,1,"""Europe""" +2023-08-03,21664,3823,"[\""Monitor\""]",2023.87,"{\""promo\"": \""21%\""}",51095,1,"""Europe""" +2023-08-08,21665,2504,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",120.2,"{\""promo\"": \""12%\""}",111970,0,"""North America""" +2023-04-12,21666,8504,"[\""Charger\"", \""Keyboard\""]",1600.07,{},201950,1,"""South America""" +2023-07-24,21667,6691,"[\""Keyboard\""]",3115.38,{},140591,0,"""North America""" +2023-08-31,21668,4474,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3270.21,"{\"": \""22%\""}",94979,0,"""Europe""" +2023-03-17,21669,3946,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",176.99,"{\""promo\"": \""19%\""}",50468,1,"""North America""" +2024-10-17,21670,2340,"[\""Headphones\"", \""Keyboard\""]",375.03,"{\"": \""24%\""}",126160,1,"""South America""" +2024-04-03,21671,2773,"[\""Tablet\""]",4514.28,{},59348,1,"""Europe""" +2024-09-29,21672,7257,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1439.47,"{\""seasonal\"": \""15%\""}",103778,1,"""Africa""" +2023-01-30,21673,2074,"[\""Charger\"", \""Tablet\""]",1587.81,"{\""seasonal\"": \""21%\""}",189347,1,"""North America""" +2023-09-21,21674,7358,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",783.36,{},130860,1,"""South America""" +2024-09-02,21675,2684,"[\""Headphones\""]",2981.35,"{\""loyalty\"": \""27%\""}",218018,1,"""South America""" +2024-04-29,21676,5709,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",282.91,"{\""seasonal\"": \""28%\""}",69005,0,"""Asia""" +2024-12-29,21677,6482,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1897.19,{},108252,1,"""Europe""" +2024-02-14,21678,9126,"[\""Wireless Mouse\""]",4908.57,{},287851,1,"""South America""" +2023-02-19,21679,682,"[\""Tablet\""]",1813.56,{},196067,1,"""Asia""" +2023-12-24,21680,3031,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3498.07,"{\""loyalty\"": \""19%\""}",128688,1,"""Asia""" +2024-08-25,21681,8418,"[\""Wireless Mouse\"", \""Laptop\""]",4818.79,{},147108,0,"""Africa""" +2023-01-25,21682,650,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1506.59,"{\"": \""5%\""}",187649,1,"""Africa""" +2024-06-30,21683,155,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2566.48,{},273705,0,"""South America""" +2023-04-02,21684,9661,"[\""Headphones\""]",187.41,{},244366,1,"""Asia""" +2024-06-18,21685,1276,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1930.64,{},142291,0,"""South America""" +2024-02-19,21686,8867,"[\""Laptop\"", \""Monitor\""]",4354.02,"{\""loyalty\"": \""29%\""}",182915,0,"""Asia""" +2024-08-26,21687,1538,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4350.24,"{\"": \""11%\""}",22882,0,"""North America""" +2023-11-29,21688,9128,"[\""Monitor\"", \""Laptop\""]",4633.24,"{\""seasonal\"": \""30%\""}",96018,0,"""Europe""" +2023-10-25,21689,3236,"[\""Wireless Mouse\"", \""Keyboard\""]",3319.08,{},274350,0,"""Africa""" +2024-06-30,21690,1557,"[\""Headphones\""]",2224.46,{},192722,0,"""North America""" +2024-09-02,21691,6210,"[\""Tablet\"", \""Laptop\""]",3708.44,{},180773,1,"""North America""" +2023-07-15,21692,7943,"[\""Laptop\""]",2195.01,{},297991,1,"""Europe""" +2023-10-15,21693,2584,"[\""Keyboard\""]",701.1,{},259635,1,"""Asia""" +2023-01-06,21694,9805,"[\""Laptop\""]",3015.04,"{\""promo\"": \""26%\""}",128513,0,"""North America""" +2023-05-19,21695,6571,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3578.75,"{\"": \""15%\""}",226535,0,"""Africa""" +2023-05-04,21696,7303,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4080.75,{},259696,1,"""Europe""" +2024-09-16,21697,4260,"[\""Charger\"", \""Keyboard\""]",2605.58,{},72914,1,"""North America""" +2023-01-23,21698,4061,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4910.54,"{\""seasonal\"": \""6%\""}",288903,0,"""Europe""" +2023-04-23,21699,3254,"[\""Charger\"", \""Monitor\""]",333.58,"{\""loyalty\"": \""13%\""}",70884,0,"""Africa""" +2024-11-13,21700,2120,"[\""Laptop\"", \""Keyboard\""]",3936.27,"{\""loyalty\"": \""25%\""}",71922,0,"""Asia""" +2023-04-28,21701,9378,"[\""Phone\"", \""Charger\""]",3985.85,{},177441,0,"""Asia""" +2023-04-18,21702,1095,"[\""Headphones\""]",3631.15,{},158380,1,"""Asia""" +2023-07-06,21703,1499,"[\""Phone\""]",448.87,{},292096,1,"""Africa""" +2023-03-19,21704,6290,"[\""Wireless Mouse\""]",4385.88,{},220820,0,"""Asia""" +2023-05-20,21705,6601,"[\""Keyboard\"", \""Laptop\""]",3257.49,"{\""seasonal\"": \""28%\""}",74548,0,"""Europe""" +2023-01-04,21706,1297,"[\""Wireless Mouse\""]",502.56,{},172291,1,"""Africa""" +2024-10-27,21707,2890,"[\""Laptop\"", \""Phone\""]",4727.92,"{\""loyalty\"": \""23%\""}",196190,0,"""North America""" +2023-05-21,21708,9683,"[\""Phone\"", \""Laptop\""]",2501.02,{},295466,0,"""Europe""" +2023-03-01,21709,669,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4730.71,"{\""seasonal\"": \""13%\""}",118077,1,"""Africa""" +2024-10-11,21710,2951,"[\""Laptop\""]",2538.33,{},224843,0,"""Asia""" +2023-02-11,21711,3832,"[\""Charger\"", \""Headphones\""]",1702.19,"{\"": \""5%\""}",236236,1,"""Europe""" +2024-01-24,21712,9915,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2489.34,"{\""seasonal\"": \""27%\""}",238949,0,"""Europe""" +2023-06-20,21713,3634,"[\""Laptop\""]",3707.64,{},250872,1,"""Asia""" +2024-05-15,21714,5995,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4361.0,"{\""loyalty\"": \""17%\""}",229459,1,"""North America""" +2023-08-11,21715,6172,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2678.29,"{\""seasonal\"": \""9%\""}",135404,1,"""Africa""" +2023-01-31,21716,4833,"[\""Headphones\"", \""Tablet\""]",1330.78,"{\""promo\"": \""16%\""}",218332,0,"""South America""" +2024-04-30,21717,7038,"[\""Phone\""]",4278.99,{},79581,1,"""Africa""" +2023-09-19,21718,1039,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3477.61,"{\"": \""24%\""}",11880,0,"""Africa""" +2024-03-20,21719,8892,"[\""Wireless Mouse\""]",3922.78,"{\""promo\"": \""21%\""}",155208,0,"""Europe""" +2024-04-12,21720,6010,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1772.58,{},190402,0,"""North America""" +2024-06-12,21721,1326,"[\""Keyboard\""]",216.78,{},293819,1,"""Africa""" +2023-12-17,21722,8280,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2246.12,"{\""promo\"": \""8%\""}",62601,1,"""North America""" +2024-03-17,21723,9918,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1036.97,"{\"": \""15%\""}",88115,1,"""North America""" +2024-01-15,21724,9855,"[\""Wireless Mouse\"", \""Phone\""]",736.99,{},168930,0,"""Europe""" +2023-02-05,21725,9613,"[\""Monitor\"", \""Wireless Mouse\""]",1183.41,{},197609,1,"""Africa""" +2023-05-17,21726,3408,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3184.35,{},227971,1,"""Asia""" +2023-02-14,21727,9085,"[\""Laptop\"", \""Wireless Mouse\""]",669.87,"{\""promo\"": \""29%\""}",89296,1,"""Europe""" +2023-09-15,21728,6339,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4303.27,"{\"": \""16%\""}",226133,1,"""Europe""" +2024-03-03,21729,8883,"[\""Wireless Mouse\""]",942.17,"{\""promo\"": \""19%\""}",286663,0,"""Africa""" +2024-06-30,21730,6345,"[\""Laptop\"", \""Tablet\""]",2680.85,{},114156,1,"""South America""" +2023-05-02,21731,4396,"[\""Wireless Mouse\""]",1294.66,{},154399,0,"""Europe""" +2024-11-30,21732,7137,"[\""Charger\""]",3408.34,"{\""seasonal\"": \""27%\""}",246620,0,"""Africa""" +2024-01-20,21733,4343,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2781.69,{},76817,0,"""South America""" +2024-06-14,21734,2334,"[\""Wireless Mouse\""]",4550.95,"{\"": \""9%\""}",188531,1,"""Asia""" +2023-03-17,21735,9925,"[\""Laptop\""]",2873.64,{},89416,1,"""Europe""" +2024-02-10,21736,4726,"[\""Laptop\""]",1564.29,"{\""promo\"": \""9%\""}",231992,1,"""Europe""" +2024-08-27,21737,881,"[\""Phone\""]",3479.9,"{\""promo\"": \""11%\""}",231042,1,"""Europe""" +2024-09-08,21738,491,"[\""Headphones\""]",2656.59,"{\""loyalty\"": \""16%\""}",44106,1,"""Europe""" +2023-09-16,21739,3840,"[\""Tablet\""]",3321.9,{},78023,0,"""Asia""" +2024-05-25,21740,5685,"[\""Headphones\""]",3720.68,{},244804,0,"""North America""" +2024-08-16,21741,6901,"[\""Keyboard\""]",1884.93,{},65271,0,"""South America""" +2024-03-02,21742,4015,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4144.13,"{\""seasonal\"": \""12%\""}",194436,1,"""South America""" +2024-07-22,21743,5558,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3880.93,{},275987,0,"""South America""" +2024-04-22,21744,3356,"[\""Tablet\""]",1059.99,"{\""promo\"": \""19%\""}",44499,0,"""Europe""" +2023-07-30,21745,5149,"[\""Wireless Mouse\"", \""Monitor\""]",3889.05,{},136965,1,"""Africa""" +2023-01-08,21746,2828,"[\""Keyboard\""]",1989.54,"{\""promo\"": \""29%\""}",66105,1,"""North America""" +2023-07-18,21747,7377,"[\""Headphones\"", \""Keyboard\""]",2381.68,"{\""seasonal\"": \""26%\""}",95073,0,"""South America""" +2024-12-09,21748,2460,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2980.46,"{\"": \""20%\""}",123964,0,"""North America""" +2024-02-17,21749,104,"[\""Monitor\""]",749.62,"{\"": \""28%\""}",124266,0,"""Asia""" +2024-10-27,21750,901,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2011.54,{},33524,1,"""South America""" +2023-08-13,21751,4237,"[\""Laptop\"", \""Tablet\""]",543.81,"{\""seasonal\"": \""8%\""}",122961,1,"""South America""" +2024-11-09,21752,5915,"[\""Keyboard\"", \""Charger\""]",1678.3,{},75291,0,"""South America""" +2024-09-04,21753,9129,"[\""Tablet\""]",2854.3,{},47883,1,"""Europe""" +2024-05-08,21754,546,"[\""Monitor\""]",108.07,{},290100,0,"""Europe""" +2024-03-27,21755,4485,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4321.46,"{\"": \""18%\""}",101426,0,"""Europe""" +2024-11-15,21756,3442,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3710.48,{},205233,0,"""Asia""" +2023-08-15,21757,4225,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1564.18,{},33214,0,"""Africa""" +2024-08-28,21758,1445,"[\""Keyboard\"", \""Charger\""]",679.38,"{\""promo\"": \""12%\""}",206189,0,"""Africa""" +2024-04-08,21759,1821,"[\""Tablet\"", \""Monitor\""]",2783.73,"{\""seasonal\"": \""22%\""}",269508,0,"""Asia""" +2024-05-01,21760,8420,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3082.83,"{\""seasonal\"": \""23%\""}",256805,0,"""Europe""" +2023-11-05,21761,4923,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1286.63,"{\""seasonal\"": \""28%\""}",20319,0,"""South America""" +2024-06-03,21762,6796,"[\""Monitor\"", \""Headphones\""]",997.01,{},151856,1,"""Asia""" +2024-11-30,21763,427,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2064.1,{},83193,1,"""Africa""" +2023-03-14,21764,2158,"[\""Tablet\""]",4216.38,{},180135,0,"""South America""" +2024-10-12,21765,8195,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2847.22,"{\"": \""28%\""}",232068,0,"""Europe""" +2024-06-11,21766,2286,"[\""Phone\""]",1421.64,{},6956,1,"""South America""" +2024-07-19,21767,6025,"[\""Wireless Mouse\"", \""Laptop\""]",3828.39,"{\""seasonal\"": \""29%\""}",115234,0,"""Europe""" +2024-10-27,21768,7061,"[\""Monitor\"", \""Tablet\""]",4455.5,"{\""promo\"": \""16%\""}",80748,0,"""Europe""" +2024-03-23,21769,8964,"[\""Laptop\"", \""Phone\""]",4020.83,"{\""loyalty\"": \""12%\""}",170200,0,"""South America""" +2024-10-30,21770,3831,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4959.9,{},183143,0,"""South America""" +2024-06-02,21771,2683,"[\""Phone\""]",4443.54,"{\""loyalty\"": \""11%\""}",220787,0,"""Europe""" +2024-04-20,21772,5705,"[\""Monitor\""]",593.71,{},62829,1,"""South America""" +2023-04-08,21773,2987,"[\""Phone\"", \""Charger\""]",911.34,{},67216,1,"""South America""" +2023-03-05,21774,2133,"[\""Wireless Mouse\""]",554.83,"{\""loyalty\"": \""10%\""}",173577,1,"""Africa""" +2023-03-22,21775,8405,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2499.54,{},224828,0,"""South America""" +2024-03-22,21776,7914,"[\""Phone\"", \""Headphones\""]",2445.22,{},191364,0,"""Asia""" +2024-02-12,21777,3283,"[\""Keyboard\"", \""Laptop\""]",3862.54,"{\"": \""23%\""}",1858,0,"""Asia""" +2024-08-08,21778,124,"[\""Wireless Mouse\""]",934.47,{},176235,0,"""Europe""" +2023-05-26,21779,5235,"[\""Phone\"", \""Wireless Mouse\""]",1589.5,"{\"": \""22%\""}",279376,0,"""Asia""" +2024-06-29,21780,1926,"[\""Keyboard\"", \""Phone\""]",268.72,"{\""seasonal\"": \""25%\""}",106665,1,"""Asia""" +2024-02-01,21781,2504,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4997.71,"{\""loyalty\"": \""23%\""}",139635,1,"""Europe""" +2024-05-24,21782,2068,"[\""Headphones\""]",3867.52,"{\""loyalty\"": \""28%\""}",32426,0,"""Asia""" +2024-05-09,21783,5716,"[\""Tablet\"", \""Laptop\""]",2708.55,{},17930,1,"""Africa""" +2024-02-04,21784,2827,"[\""Tablet\""]",3113.06,"{\""loyalty\"": \""26%\""}",80461,0,"""South America""" +2023-11-02,21785,2886,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3202.97,{},283308,1,"""Africa""" +2023-03-30,21786,901,"[\""Phone\"", \""Laptop\""]",4906.09,{},36787,1,"""Africa""" +2023-07-13,21787,7242,"[\""Laptop\"", \""Tablet\""]",4797.62,"{\"": \""18%\""}",33078,1,"""North America""" +2024-01-29,21788,3211,"[\""Phone\""]",1594.08,"{\"": \""27%\""}",227620,0,"""Europe""" +2023-11-16,21789,4352,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2292.0,{},75567,1,"""Europe""" +2023-03-13,21790,5847,"[\""Laptop\""]",2305.55,"{\""loyalty\"": \""7%\""}",174042,1,"""Africa""" +2023-02-14,21791,9893,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",972.34,"{\""seasonal\"": \""30%\""}",35188,1,"""North America""" +2024-10-11,21792,7889,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2462.8,{},25660,1,"""Europe""" +2023-07-20,21793,1531,"[\""Tablet\"", \""Laptop\""]",4664.54,{},188006,1,"""Asia""" +2024-02-25,21794,1464,"[\""Keyboard\"", \""Tablet\""]",1108.36,{},125899,1,"""Europe""" +2023-10-01,21795,4871,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2976.56,{},139745,1,"""Africa""" +2024-06-04,21796,8055,"[\""Tablet\"", \""Headphones\""]",2589.7,"{\""loyalty\"": \""8%\""}",182245,1,"""South America""" +2023-05-18,21797,7464,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1099.16,"{\""promo\"": \""9%\""}",59376,1,"""North America""" +2024-08-07,21798,1502,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1025.01,{},119269,1,"""Asia""" +2024-07-16,21799,5404,"[\""Tablet\""]",3700.31,"{\""loyalty\"": \""25%\""}",139534,1,"""Asia""" +2023-08-06,21800,1097,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1754.0,{},164674,1,"""Asia""" +2024-03-08,21801,5607,"[\""Wireless Mouse\""]",4025.81,"{\""seasonal\"": \""19%\""}",192015,1,"""North America""" +2024-06-28,21802,7455,"[\""Keyboard\""]",1105.87,"{\""seasonal\"": \""27%\""}",189508,1,"""South America""" +2023-03-07,21803,2354,"[\""Charger\"", \""Wireless Mouse\""]",4964.84,{},61936,1,"""Asia""" +2023-07-20,21804,8871,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3231.16,{},50805,0,"""North America""" +2023-05-13,21805,7978,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2750.86,"{\""loyalty\"": \""22%\""}",72245,1,"""Africa""" +2023-04-26,21806,7601,"[\""Tablet\""]",1912.75,{},106878,0,"""North America""" +2024-06-19,21807,6047,"[\""Laptop\""]",83.13,"{\""promo\"": \""21%\""}",42529,0,"""North America""" +2023-05-25,21808,7559,"[\""Charger\""]",2838.61,"{\"": \""25%\""}",100669,1,"""Asia""" +2023-07-10,21809,7748,"[\""Headphones\""]",2890.27,{},207861,0,"""North America""" +2023-07-08,21810,107,"[\""Tablet\""]",2766.06,"{\""promo\"": \""7%\""}",240478,1,"""Africa""" +2023-07-30,21811,4470,"[\""Charger\""]",2853.21,{},264106,0,"""North America""" +2024-01-04,21812,1374,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1142.16,"{\""seasonal\"": \""9%\""}",280157,1,"""North America""" +2024-04-23,21813,606,"[\""Monitor\"", \""Headphones\""]",3354.52,{},283691,0,"""Africa""" +2023-08-03,21814,1474,"[\""Tablet\"", \""Phone\""]",1504.6,"{\""loyalty\"": \""22%\""}",128017,0,"""South America""" +2024-07-17,21815,3455,"[\""Laptop\""]",1729.84,"{\"": \""25%\""}",151850,0,"""Europe""" +2023-02-27,21816,8335,"[\""Charger\""]",4337.67,{},32438,0,"""Asia""" +2024-09-14,21817,2836,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4929.79,"{\""promo\"": \""19%\""}",228130,1,"""Asia""" +2024-12-14,21818,8517,"[\""Laptop\"", \""Charger\""]",960.29,"{\"": \""27%\""}",67830,0,"""South America""" +2024-02-16,21819,5681,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3988.41,"{\""loyalty\"": \""23%\""}",106475,1,"""Africa""" +2023-05-09,21820,1725,"[\""Wireless Mouse\"", \""Monitor\""]",2612.15,{},296197,1,"""North America""" +2024-07-08,21821,5595,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3831.82,{},125790,1,"""Asia""" +2024-05-17,21822,9486,"[\""Laptop\"", \""Monitor\""]",1783.64,{},133025,0,"""South America""" +2023-09-28,21823,3664,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",247.44,{},220140,1,"""Africa""" +2024-11-20,21824,3842,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4620.1,"{\"": \""5%\""}",136048,1,"""Africa""" +2023-12-07,21825,3425,"[\""Monitor\""]",1852.92,"{\""seasonal\"": \""19%\""}",234914,0,"""North America""" +2024-05-04,21826,6003,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4130.24,"{\"": \""25%\""}",25498,0,"""South America""" +2024-05-15,21827,6355,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3520.22,{},92550,0,"""South America""" +2023-07-08,21828,4368,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3998.04,"{\"": \""15%\""}",17421,1,"""Europe""" +2024-09-10,21829,4991,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4280.08,{},265205,0,"""Asia""" +2024-05-17,21830,1736,"[\""Headphones\"", \""Monitor\""]",2609.4,"{\"": \""25%\""}",244497,1,"""North America""" +2024-08-24,21831,7496,"[\""Laptop\""]",3157.12,"{\"": \""10%\""}",114906,1,"""Africa""" +2023-05-29,21832,8259,"[\""Wireless Mouse\""]",3686.33,"{\""seasonal\"": \""29%\""}",21938,0,"""Asia""" +2024-10-13,21833,9821,"[\""Monitor\"", \""Phone\""]",205.88,"{\""promo\"": \""12%\""}",279893,0,"""South America""" +2024-08-31,21834,7807,"[\""Charger\""]",563.57,{},14426,0,"""North America""" +2023-06-19,21835,5850,"[\""Keyboard\"", \""Wireless Mouse\""]",1014.93,"{\"": \""21%\""}",273834,0,"""Europe""" +2024-02-28,21836,7337,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",350.09,{},98987,1,"""South America""" +2023-06-03,21837,7063,"[\""Phone\"", \""Charger\""]",2106.51,"{\""loyalty\"": \""19%\""}",59472,1,"""Europe""" +2024-03-02,21838,6081,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2963.16,{},183193,0,"""Europe""" +2024-09-21,21839,9934,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2804.52,"{\"": \""10%\""}",215100,0,"""Asia""" +2023-07-17,21840,279,"[\""Tablet\""]",2494.34,{},230329,0,"""Europe""" +2023-03-16,21841,7365,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4917.31,{},220458,1,"""Europe""" +2024-08-21,21842,3201,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",414.03,"{\""loyalty\"": \""5%\""}",24953,1,"""North America""" +2024-05-05,21843,2385,"[\""Charger\"", \""Keyboard\""]",3868.53,"{\""seasonal\"": \""27%\""}",258773,0,"""Africa""" +2024-07-31,21844,5889,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1172.79,"{\""loyalty\"": \""6%\""}",79187,0,"""Asia""" +2024-03-18,21845,9917,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2418.06,"{\"": \""21%\""}",172055,0,"""Africa""" +2023-06-25,21846,9355,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3677.79,"{\""loyalty\"": \""6%\""}",125660,1,"""Africa""" +2024-08-27,21847,4576,"[\""Headphones\""]",3278.68,{},248952,1,"""North America""" +2024-12-01,21848,4244,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3936.27,"{\""promo\"": \""12%\""}",18702,0,"""Europe""" +2023-01-22,21849,1555,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4110.08,"{\""loyalty\"": \""20%\""}",26079,0,"""Africa""" +2023-06-29,21850,1464,"[\""Phone\"", \""Keyboard\""]",1968.98,"{\""seasonal\"": \""24%\""}",25192,0,"""Africa""" +2023-11-14,21851,3929,"[\""Keyboard\"", \""Tablet\""]",901.05,"{\""promo\"": \""28%\""}",149539,1,"""Asia""" +2024-12-13,21852,4834,"[\""Phone\"", \""Tablet\""]",1466.76,{},68345,0,"""North America""" +2023-09-27,21853,9289,"[\""Monitor\""]",77.8,"{\""loyalty\"": \""30%\""}",116930,0,"""Europe""" +2023-05-07,21854,6523,"[\""Laptop\""]",697.56,{},12723,0,"""Asia""" +2023-02-07,21855,4864,"[\""Wireless Mouse\""]",3995.99,"{\""promo\"": \""6%\""}",17640,0,"""Africa""" +2023-07-23,21856,806,"[\""Headphones\""]",1542.15,{},119597,1,"""Europe""" +2024-06-24,21857,5058,"[\""Monitor\""]",3012.05,{},251692,0,"""South America""" +2024-11-15,21858,4824,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4118.08,{},32541,0,"""South America""" +2023-01-23,21859,5521,"[\""Laptop\""]",2137.14,{},82241,1,"""Africa""" +2023-10-04,21860,2528,"[\""Charger\""]",4682.77,"{\""promo\"": \""23%\""}",201960,1,"""Asia""" +2024-03-11,21861,8488,"[\""Monitor\""]",1568.58,{},47980,0,"""Africa""" +2023-12-04,21862,5801,"[\""Keyboard\"", \""Monitor\""]",448.83,{},295549,0,"""Europe""" +2024-07-07,21863,6790,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",751.82,"{\""promo\"": \""24%\""}",130019,0,"""Africa""" +2023-03-17,21864,5,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",599.89,{},39871,0,"""Africa""" +2024-02-02,21865,3274,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1315.88,{},174059,1,"""Africa""" +2023-03-14,21866,736,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2911.41,"{\""promo\"": \""17%\""}",140238,1,"""Europe""" +2023-03-25,21867,1917,"[\""Tablet\""]",4651.0,"{\""loyalty\"": \""22%\""}",50928,1,"""Europe""" +2023-02-09,21868,6232,"[\""Phone\"", \""Tablet\""]",4476.47,{},70200,0,"""Asia""" +2024-07-07,21869,885,"[\""Wireless Mouse\""]",3737.57,"{\""seasonal\"": \""27%\""}",98778,0,"""Europe""" +2023-04-20,21870,7817,"[\""Keyboard\""]",3178.26,"{\""loyalty\"": \""26%\""}",197875,1,"""Asia""" +2024-03-04,21871,7521,"[\""Charger\""]",2136.14,"{\"": \""8%\""}",9776,0,"""South America""" +2023-09-29,21872,5195,"[\""Charger\""]",3428.31,"{\""promo\"": \""27%\""}",162147,1,"""South America""" +2024-02-15,21873,2347,"[\""Monitor\"", \""Laptop\""]",3332.2,{},185310,0,"""Africa""" +2023-12-28,21874,8122,"[\""Monitor\""]",820.43,"{\""promo\"": \""20%\""}",218879,1,"""Africa""" +2024-07-31,21875,6190,"[\""Charger\""]",4976.79,{},254470,1,"""South America""" +2023-03-06,21876,6713,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1823.56,{},21831,1,"""Asia""" +2024-12-18,21877,5073,"[\""Wireless Mouse\"", \""Tablet\""]",4039.0,{},80147,0,"""South America""" +2024-04-10,21878,3439,"[\""Headphones\""]",651.3,"{\"": \""6%\""}",74444,1,"""Asia""" +2024-09-06,21879,4222,"[\""Headphones\""]",2218.38,"{\"": \""27%\""}",196927,1,"""Europe""" +2024-01-09,21880,455,"[\""Laptop\""]",3171.99,"{\""promo\"": \""9%\""}",233235,1,"""Africa""" +2023-09-27,21881,4388,"[\""Headphones\""]",1251.86,{},41483,0,"""Africa""" +2023-02-07,21882,967,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3089.98,{},103214,0,"""Europe""" +2023-08-15,21883,7831,"[\""Wireless Mouse\"", \""Headphones\""]",716.24,{},133378,1,"""Asia""" +2024-04-03,21884,6408,"[\""Tablet\"", \""Phone\""]",1523.08,{},56242,1,"""North America""" +2023-06-17,21885,1752,"[\""Charger\""]",3816.29,"{\""loyalty\"": \""8%\""}",274058,1,"""North America""" +2024-08-08,21886,551,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",59.94,"{\"": \""5%\""}",71032,1,"""Asia""" +2023-04-04,21887,3325,"[\""Phone\"", \""Laptop\"", \""Charger\""]",141.21,{},45333,1,"""North America""" +2023-11-28,21888,1656,"[\""Monitor\""]",1827.16,{},169241,1,"""South America""" +2023-09-05,21889,9640,"[\""Wireless Mouse\"", \""Headphones\""]",4851.16,{},244850,1,"""Asia""" +2024-03-08,21890,7678,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3965.85,{},176954,0,"""South America""" +2024-02-22,21891,9694,"[\""Phone\""]",2480.39,{},146009,1,"""Europe""" +2023-10-16,21892,8018,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",126.61,"{\""promo\"": \""18%\""}",87272,1,"""North America""" +2024-05-02,21893,3124,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",379.14,{},50679,0,"""North America""" +2024-04-03,21894,9008,"[\""Headphones\""]",2538.54,{},158979,1,"""South America""" +2023-11-10,21895,3602,"[\""Wireless Mouse\""]",64.78,{},195498,1,"""North America""" +2024-12-04,21896,470,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2648.23,"{\""loyalty\"": \""9%\""}",163541,1,"""North America""" +2024-09-01,21897,9532,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2898.46,"{\""promo\"": \""22%\""}",164062,1,"""Africa""" +2024-12-24,21898,9757,"[\""Monitor\""]",4313.3,"{\""seasonal\"": \""13%\""}",87007,0,"""Africa""" +2024-06-16,21899,8588,"[\""Laptop\"", \""Keyboard\""]",582.26,{},103279,1,"""South America""" +2023-04-04,21900,1072,"[\""Headphones\"", \""Charger\""]",549.95,"{\""seasonal\"": \""7%\""}",159320,1,"""North America""" +2023-09-14,21901,6260,"[\""Phone\""]",4769.38,"{\"": \""21%\""}",253736,0,"""Asia""" +2024-02-10,21902,9098,"[\""Monitor\""]",4450.52,{},189781,1,"""South America""" +2023-05-17,21903,9949,"[\""Laptop\"", \""Headphones\""]",758.33,{},117171,1,"""North America""" +2023-02-24,21904,6249,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1559.33,{},262503,0,"""North America""" +2023-03-20,21905,9685,"[\""Phone\"", \""Charger\""]",928.03,{},233817,1,"""Europe""" +2023-12-11,21906,3832,"[\""Keyboard\"", \""Phone\""]",3268.53,{},120526,1,"""Africa""" +2024-03-13,21907,4742,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4567.21,"{\"": \""27%\""}",12497,0,"""Europe""" +2024-03-19,21908,8302,"[\""Keyboard\""]",3857.54,"{\""promo\"": \""16%\""}",239608,0,"""Africa""" +2024-07-30,21909,8465,"[\""Keyboard\""]",4232.04,"{\"": \""28%\""}",282594,1,"""Asia""" +2023-12-31,21910,7673,"[\""Monitor\"", \""Keyboard\""]",4148.1,"{\""promo\"": \""10%\""}",271543,0,"""Asia""" +2024-09-17,21911,7259,"[\""Keyboard\""]",3767.84,"{\""loyalty\"": \""21%\""}",127475,0,"""North America""" +2024-01-14,21912,5580,"[\""Tablet\"", \""Keyboard\""]",1491.36,{},101072,0,"""Africa""" +2024-02-15,21913,7331,"[\""Tablet\"", \""Monitor\""]",4194.36,"{\""seasonal\"": \""25%\""}",29133,0,"""Europe""" +2023-03-08,21914,1605,"[\""Monitor\""]",4346.49,{},92525,0,"""Europe""" +2024-03-27,21915,8883,"[\""Wireless Mouse\"", \""Phone\""]",2054.76,{},38156,0,"""Asia""" +2024-12-26,21916,9503,"[\""Phone\"", \""Wireless Mouse\""]",3663.09,"{\""seasonal\"": \""26%\""}",160126,0,"""North America""" +2024-10-19,21917,4235,"[\""Monitor\""]",2444.88,{},65548,0,"""Europe""" +2023-10-05,21918,3002,"[\""Wireless Mouse\"", \""Keyboard\""]",495.52,"{\""loyalty\"": \""28%\""}",279489,1,"""South America""" +2024-11-05,21919,8881,"[\""Keyboard\"", \""Tablet\""]",904.22,{},271939,0,"""Asia""" +2024-04-26,21920,40,"[\""Tablet\""]",1429.81,{},14211,0,"""North America""" +2023-07-29,21921,8548,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3173.66,{},135393,0,"""South America""" +2023-12-18,21922,7615,"[\""Headphones\"", \""Tablet\""]",4602.64,"{\""promo\"": \""21%\""}",81258,0,"""Europe""" +2023-07-11,21923,5585,"[\""Headphones\"", \""Keyboard\""]",1941.01,{},77883,0,"""North America""" +2023-10-10,21924,6288,"[\""Keyboard\"", \""Wireless Mouse\""]",3278.63,"{\""seasonal\"": \""28%\""}",245997,1,"""Africa""" +2024-03-08,21925,2733,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3774.06,{},78755,1,"""South America""" +2024-05-26,21926,8598,"[\""Phone\""]",2010.68,"{\"": \""20%\""}",150455,1,"""South America""" +2024-03-09,21927,1010,"[\""Keyboard\""]",568.73,"{\""promo\"": \""15%\""}",36364,1,"""Asia""" +2024-01-29,21928,2985,"[\""Laptop\"", \""Tablet\""]",4152.79,"{\""seasonal\"": \""23%\""}",191321,0,"""Asia""" +2023-10-12,21929,1847,"[\""Monitor\"", \""Tablet\""]",2600.78,"{\""loyalty\"": \""17%\""}",78614,1,"""North America""" +2024-06-05,21930,5130,"[\""Phone\"", \""Charger\""]",181.97,"{\""seasonal\"": \""24%\""}",120928,0,"""Europe""" +2023-03-10,21931,1272,"[\""Laptop\"", \""Charger\""]",3719.99,{},258493,1,"""North America""" +2024-05-27,21932,2332,"[\""Charger\"", \""Phone\""]",4682.64,"{\""promo\"": \""16%\""}",107167,0,"""Africa""" +2023-10-06,21933,6446,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4506.64,"{\""promo\"": \""14%\""}",6828,0,"""Europe""" +2024-10-03,21934,2152,"[\""Keyboard\""]",2989.39,"{\""promo\"": \""11%\""}",197477,1,"""Africa""" +2023-02-05,21935,3473,"[\""Headphones\"", \""Keyboard\""]",2832.8,"{\""loyalty\"": \""8%\""}",297698,0,"""Europe""" +2024-04-05,21936,2581,"[\""Tablet\"", \""Wireless Mouse\""]",3655.05,{},76292,0,"""Asia""" +2024-10-18,21937,2499,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3520.47,"{\""seasonal\"": \""12%\""}",65643,1,"""Asia""" +2023-12-05,21938,6305,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2807.28,{},150938,1,"""South America""" +2024-07-27,21939,2632,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3259.52,{},279830,1,"""Asia""" +2023-03-13,21940,2809,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3774.71,{},130521,1,"""North America""" +2024-05-27,21941,3114,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1217.57,{},83140,0,"""Europe""" +2024-10-13,21942,8726,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3062.51,{},188531,0,"""Europe""" +2023-01-06,21943,3960,"[\""Phone\"", \""Charger\"", \""Tablet\""]",227.24,"{\""loyalty\"": \""18%\""}",164107,1,"""Europe""" +2023-01-30,21944,2207,"[\""Charger\""]",2093.83,"{\""seasonal\"": \""28%\""}",82266,1,"""Africa""" +2024-09-07,21945,2965,"[\""Phone\""]",2531.79,"{\"": \""27%\""}",54098,1,"""North America""" +2024-07-20,21946,9854,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4816.07,{},90887,1,"""South America""" +2023-06-18,21947,5179,"[\""Phone\""]",3651.25,{},83410,1,"""Asia""" +2024-07-14,21948,7470,"[\""Keyboard\""]",1354.48,"{\"": \""5%\""}",291288,1,"""Africa""" +2023-02-13,21949,7098,"[\""Keyboard\""]",3251.54,{},132341,1,"""Asia""" +2024-04-10,21950,7378,"[\""Laptop\""]",3633.06,"{\""seasonal\"": \""11%\""}",129448,1,"""Europe""" +2024-05-15,21951,2979,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",877.09,{},48826,0,"""Asia""" +2024-10-26,21952,2600,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2029.05,"{\""loyalty\"": \""17%\""}",277671,0,"""Africa""" +2023-12-14,21953,5466,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",775.55,"{\""seasonal\"": \""13%\""}",246538,1,"""Europe""" +2024-10-18,21954,3925,"[\""Laptop\"", \""Phone\""]",3746.25,"{\""loyalty\"": \""16%\""}",182460,1,"""Europe""" +2023-11-24,21955,9965,"[\""Monitor\"", \""Phone\""]",242.42,{},143836,1,"""South America""" +2024-10-20,21956,580,"[\""Phone\"", \""Monitor\""]",1756.69,{},215337,1,"""Africa""" +2023-02-05,21957,7769,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2092.4,{},273132,0,"""Asia""" +2024-10-06,21958,314,"[\""Headphones\""]",301.54,"{\""loyalty\"": \""27%\""}",155067,0,"""Africa""" +2024-09-03,21959,8853,"[\""Headphones\""]",3437.93,"{\""seasonal\"": \""6%\""}",194015,1,"""North America""" +2023-06-17,21960,9896,"[\""Monitor\"", \""Phone\""]",3026.72,"{\"": \""17%\""}",117123,0,"""North America""" +2024-11-30,21961,6627,"[\""Tablet\""]",2648.91,"{\""promo\"": \""24%\""}",95404,1,"""South America""" +2024-08-24,21962,1905,"[\""Phone\"", \""Headphones\""]",1325.19,"{\""promo\"": \""29%\""}",10571,1,"""South America""" +2023-12-31,21963,4573,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",100.49,{},188944,0,"""South America""" +2024-01-06,21964,2228,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3370.83,"{\""seasonal\"": \""27%\""}",81624,0,"""Asia""" +2024-08-07,21965,6517,"[\""Wireless Mouse\"", \""Keyboard\""]",111.71,{},170810,0,"""Europe""" +2023-08-06,21966,1780,"[\""Monitor\"", \""Phone\""]",2205.27,{},266566,1,"""Africa""" +2023-07-24,21967,1421,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4646.01,{},182136,1,"""Africa""" +2024-04-24,21968,5158,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2849.46,"{\""seasonal\"": \""17%\""}",96601,1,"""North America""" +2024-11-20,21969,72,"[\""Charger\"", \""Phone\"", \""Headphones\""]",484.27,"{\"": \""21%\""}",126186,0,"""Asia""" +2023-07-08,21970,3682,"[\""Headphones\""]",867.84,{},155729,1,"""North America""" +2023-12-08,21971,7445,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1694.31,{},245494,1,"""South America""" +2024-01-28,21972,6083,"[\""Phone\""]",1249.67,{},135076,1,"""North America""" +2023-05-02,21973,96,"[\""Phone\"", \""Charger\""]",1243.55,{},18322,0,"""Africa""" +2023-04-17,21974,2170,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1530.3,"{\"": \""20%\""}",284216,1,"""Asia""" +2023-05-14,21975,3262,"[\""Headphones\"", \""Phone\""]",3228.43,"{\""promo\"": \""26%\""}",119014,1,"""North America""" +2024-01-23,21976,6777,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4437.19,"{\""seasonal\"": \""14%\""}",260803,1,"""Europe""" +2023-10-04,21977,9426,"[\""Keyboard\"", \""Tablet\""]",1207.85,{},176579,0,"""Asia""" +2024-08-12,21978,3314,"[\""Laptop\""]",3685.84,"{\""promo\"": \""16%\""}",112383,1,"""Europe""" +2024-09-30,21979,5448,"[\""Headphones\""]",3568.26,"{\""promo\"": \""20%\""}",14698,0,"""Asia""" +2023-07-07,21980,9122,"[\""Laptop\""]",4348.87,"{\""promo\"": \""16%\""}",82621,1,"""Asia""" +2023-10-23,21981,6515,"[\""Headphones\"", \""Monitor\""]",2856.53,"{\""seasonal\"": \""8%\""}",105457,1,"""Europe""" +2024-08-05,21982,7432,"[\""Laptop\"", \""Keyboard\""]",3180.43,{},86963,0,"""Asia""" +2024-12-29,21983,5963,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3222.0,"{\""promo\"": \""9%\""}",281253,1,"""Asia""" +2023-08-15,21984,6788,"[\""Tablet\""]",853.59,{},199479,0,"""Africa""" +2023-05-05,21985,495,"[\""Headphones\""]",4296.06,{},179350,0,"""Asia""" +2024-10-24,21986,9762,"[\""Charger\"", \""Tablet\""]",979.79,{},214943,1,"""Europe""" +2024-01-04,21987,6316,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",920.14,"{\""loyalty\"": \""15%\""}",38415,1,"""North America""" +2023-07-31,21988,7751,"[\""Headphones\""]",3445.13,{},279113,0,"""North America""" +2023-08-06,21989,5096,"[\""Tablet\""]",2377.61,{},181336,0,"""Africa""" +2023-12-07,21990,9352,"[\""Monitor\"", \""Tablet\""]",236.16,"{\""promo\"": \""6%\""}",261267,1,"""South America""" +2024-08-24,21991,8246,"[\""Keyboard\"", \""Headphones\""]",1262.03,{},246356,0,"""Europe""" +2023-04-14,21992,2982,"[\""Wireless Mouse\"", \""Charger\""]",1442.01,{},60731,0,"""Europe""" +2023-02-16,21993,249,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1554.66,{},217134,1,"""South America""" +2024-07-27,21994,2301,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4398.38,{},176513,0,"""Asia""" +2023-08-19,21995,6362,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",566.25,{},11331,1,"""South America""" +2024-12-18,21996,4524,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2189.89,"{\""seasonal\"": \""28%\""}",13555,1,"""Europe""" +2023-04-12,21997,271,"[\""Laptop\"", \""Wireless Mouse\""]",2590.54,"{\""loyalty\"": \""21%\""}",295897,1,"""Africa""" +2024-05-10,21998,339,"[\""Keyboard\"", \""Phone\""]",1139.15,{},121090,1,"""North America""" +2023-01-08,21999,1606,"[\""Phone\"", \""Monitor\""]",119.97,{},82742,1,"""Asia""" +2023-10-29,22000,9054,"[\""Keyboard\"", \""Charger\""]",821.92,{},158924,1,"""South America""" +2024-03-15,22001,8772,"[\""Laptop\""]",4016.24,{},27416,0,"""Africa""" +2023-01-08,22002,5900,"[\""Keyboard\""]",669.73,{},120572,0,"""Africa""" +2023-10-01,22003,1686,"[\""Phone\""]",753.47,{},265543,0,"""Europe""" +2023-07-01,22004,4676,"[\""Wireless Mouse\""]",687.15,{},141873,1,"""Africa""" +2023-04-20,22005,5171,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4979.01,{},87355,0,"""South America""" +2024-04-08,22006,7978,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",289.33,{},22845,0,"""Africa""" +2024-11-09,22007,3082,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3258.1,{},37063,1,"""Asia""" +2023-04-10,22008,7482,"[\""Charger\"", \""Phone\""]",1773.55,"{\""promo\"": \""9%\""}",274633,0,"""Asia""" +2023-11-21,22009,8040,"[\""Keyboard\""]",4534.59,"{\""loyalty\"": \""8%\""}",155404,1,"""South America""" +2024-10-28,22010,8360,"[\""Headphones\"", \""Phone\""]",4568.32,{},263014,1,"""Africa""" +2024-10-08,22011,6387,"[\""Phone\"", \""Laptop\""]",2439.95,"{\""promo\"": \""25%\""}",133227,1,"""South America""" +2023-01-20,22012,7183,"[\""Headphones\""]",4775.4,"{\"": \""29%\""}",172202,1,"""Asia""" +2024-11-20,22013,4367,"[\""Laptop\"", \""Wireless Mouse\""]",2260.81,{},204837,1,"""North America""" +2023-07-28,22014,867,"[\""Laptop\"", \""Keyboard\""]",1747.58,"{\""loyalty\"": \""23%\""}",148811,1,"""Europe""" +2023-10-27,22015,3897,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1817.24,{},245827,0,"""North America""" +2024-06-10,22016,365,"[\""Keyboard\""]",2578.44,{},134452,0,"""North America""" +2023-08-30,22017,8017,"[\""Phone\""]",1488.58,"{\""promo\"": \""26%\""}",58610,1,"""Africa""" +2024-01-10,22018,4383,"[\""Headphones\""]",2331.27,{},93861,1,"""North America""" +2023-08-15,22019,3317,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",445.52,"{\""seasonal\"": \""7%\""}",278198,0,"""Africa""" +2024-09-20,22020,4687,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2662.07,"{\"": \""12%\""}",78806,1,"""Europe""" +2023-02-19,22021,2034,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3598.74,{},163270,1,"""North America""" +2023-01-09,22022,553,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",418.48,{},255547,1,"""Europe""" +2023-04-20,22023,6142,"[\""Keyboard\"", \""Phone\""]",4283.02,{},187183,1,"""South America""" +2024-11-06,22024,9385,"[\""Wireless Mouse\"", \""Keyboard\""]",4148.61,"{\""seasonal\"": \""28%\""}",43336,1,"""South America""" +2024-02-08,22025,4843,"[\""Monitor\"", \""Wireless Mouse\""]",3965.79,"{\"": \""29%\""}",7164,0,"""Europe""" +2023-03-04,22026,6340,"[\""Phone\"", \""Headphones\""]",2347.53,"{\""seasonal\"": \""23%\""}",53679,1,"""Asia""" +2024-01-05,22027,468,"[\""Keyboard\""]",1427.62,"{\""seasonal\"": \""24%\""}",243466,0,"""South America""" +2024-10-23,22028,1193,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1225.09,"{\"": \""19%\""}",236998,1,"""North America""" +2024-04-11,22029,5180,"[\""Charger\""]",223.97,"{\""promo\"": \""5%\""}",203070,0,"""Europe""" +2023-12-30,22030,2090,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3653.58,"{\""loyalty\"": \""20%\""}",50617,0,"""Asia""" +2023-05-03,22031,5545,"[\""Headphones\""]",3111.28,{},261756,0,"""Africa""" +2024-06-25,22032,38,"[\""Wireless Mouse\"", \""Headphones\""]",3080.43,"{\""loyalty\"": \""8%\""}",56684,1,"""South America""" +2023-02-08,22033,8280,"[\""Wireless Mouse\""]",2292.48,"{\"": \""30%\""}",294672,1,"""Europe""" +2023-01-31,22034,7989,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2665.3,"{\""promo\"": \""10%\""}",202942,0,"""Europe""" +2024-09-12,22035,328,"[\""Laptop\"", \""Tablet\""]",709.89,"{\""seasonal\"": \""15%\""}",148617,1,"""Asia""" +2024-04-29,22036,6255,"[\""Headphones\"", \""Keyboard\""]",1552.54,{},250133,0,"""North America""" +2023-04-05,22037,7837,"[\""Phone\"", \""Charger\"", \""Laptop\""]",371.13,{},192419,0,"""North America""" +2023-06-22,22038,4594,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1271.67,"{\""loyalty\"": \""23%\""}",43856,1,"""North America""" +2023-11-25,22039,5800,"[\""Monitor\"", \""Headphones\""]",3543.79,{},80053,0,"""North America""" +2024-02-01,22040,4127,"[\""Phone\""]",3716.42,{},1192,1,"""Africa""" +2023-03-01,22041,52,"[\""Keyboard\""]",2287.55,{},45538,1,"""North America""" +2023-10-13,22042,2495,"[\""Headphones\"", \""Wireless Mouse\""]",4541.79,"{\"": \""6%\""}",273128,1,"""Africa""" +2023-06-28,22043,4901,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3421.14,{},82357,0,"""Europe""" +2024-12-18,22044,1115,"[\""Laptop\""]",998.53,"{\""promo\"": \""25%\""}",273119,0,"""North America""" +2024-01-27,22045,2850,"[\""Headphones\"", \""Tablet\""]",1764.38,{},254507,0,"""Asia""" +2024-08-19,22046,8219,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1526.04,"{\"": \""17%\""}",295074,0,"""Europe""" +2023-10-09,22047,9964,"[\""Headphones\"", \""Laptop\""]",2066.61,"{\""seasonal\"": \""14%\""}",71486,1,"""Asia""" +2024-11-16,22048,5324,"[\""Wireless Mouse\"", \""Laptop\""]",4398.36,"{\""loyalty\"": \""28%\""}",116318,0,"""Africa""" +2023-04-10,22049,1688,"[\""Monitor\""]",2492.13,"{\""promo\"": \""23%\""}",75562,1,"""Europe""" +2023-05-28,22050,2784,"[\""Wireless Mouse\""]",4229.94,"{\"": \""14%\""}",49546,1,"""Asia""" +2023-08-23,22051,3613,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4105.79,"{\""loyalty\"": \""18%\""}",124603,1,"""Europe""" +2024-08-13,22052,5697,"[\""Laptop\"", \""Charger\""]",2340.59,{},270625,1,"""Asia""" +2023-04-29,22053,2740,"[\""Laptop\""]",4451.69,{},186803,0,"""Africa""" +2024-12-23,22054,270,"[\""Charger\""]",1702.13,"{\""loyalty\"": \""20%\""}",239717,1,"""Asia""" +2024-11-10,22055,3830,"[\""Headphones\"", \""Wireless Mouse\""]",3003.78,{},253069,0,"""Africa""" +2024-03-05,22056,7526,"[\""Monitor\""]",4655.35,"{\""loyalty\"": \""9%\""}",297880,0,"""Europe""" +2023-07-15,22057,8326,"[\""Monitor\""]",3385.41,{},40278,0,"""Europe""" +2023-12-31,22058,3701,"[\""Charger\""]",2022.05,{},99253,1,"""Europe""" +2023-07-30,22059,7491,"[\""Laptop\"", \""Headphones\""]",905.75,"{\"": \""8%\""}",165091,1,"""North America""" +2024-08-31,22060,8890,"[\""Headphones\""]",2245.39,"{\"": \""20%\""}",48942,0,"""Asia""" +2023-02-28,22061,5264,"[\""Monitor\"", \""Charger\""]",4754.99,"{\"": \""5%\""}",103688,1,"""Europe""" +2023-10-22,22062,3935,"[\""Laptop\""]",1264.8,{},177218,1,"""North America""" +2024-04-09,22063,3568,"[\""Monitor\""]",822.94,"{\"": \""14%\""}",136237,0,"""North America""" +2023-02-28,22064,6648,"[\""Headphones\"", \""Tablet\""]",210.38,{},17537,1,"""Africa""" +2023-09-17,22065,7967,"[\""Headphones\""]",2213.69,"{\"": \""19%\""}",253456,1,"""Africa""" +2023-04-13,22066,2281,"[\""Headphones\""]",3714.04,{},263930,0,"""Asia""" +2024-05-17,22067,1571,"[\""Wireless Mouse\"", \""Headphones\""]",1174.88,"{\""loyalty\"": \""14%\""}",124094,1,"""Africa""" +2024-07-14,22068,6516,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4303.58,{},279317,0,"""North America""" +2024-12-11,22069,2620,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3905.54,"{\""seasonal\"": \""12%\""}",48121,1,"""South America""" +2024-02-09,22070,688,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4912.29,{},223136,0,"""North America""" +2024-10-23,22071,2483,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1740.97,{},96523,1,"""Europe""" +2023-09-27,22072,7536,"[\""Tablet\"", \""Wireless Mouse\""]",2959.42,"{\""loyalty\"": \""14%\""}",287347,0,"""South America""" +2023-08-17,22073,3290,"[\""Keyboard\"", \""Wireless Mouse\""]",3472.33,{},180471,1,"""Asia""" +2024-08-11,22074,6150,"[\""Keyboard\"", \""Phone\""]",2293.98,{},103780,1,"""Africa""" +2024-02-02,22075,9149,"[\""Monitor\"", \""Wireless Mouse\""]",2270.72,"{\"": \""21%\""}",8677,1,"""Europe""" +2024-05-26,22076,8069,"[\""Tablet\""]",1324.07,{},83587,1,"""Africa""" +2024-03-18,22077,9905,"[\""Keyboard\"", \""Tablet\""]",2366.46,{},232973,1,"""Asia""" +2024-05-16,22078,8598,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4798.79,"{\""loyalty\"": \""8%\""}",256318,1,"""Asia""" +2024-10-30,22079,4374,"[\""Laptop\"", \""Keyboard\""]",1357.44,"{\""seasonal\"": \""19%\""}",216280,1,"""North America""" +2023-01-24,22080,1642,"[\""Phone\""]",3122.45,{},50466,1,"""North America""" +2023-12-24,22081,428,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4595.23,"{\""seasonal\"": \""25%\""}",79505,0,"""Asia""" +2024-06-24,22082,7730,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4842.25,"{\""seasonal\"": \""21%\""}",87677,0,"""South America""" +2024-01-17,22083,2535,"[\""Keyboard\""]",1238.11,{},99774,1,"""Asia""" +2024-09-13,22084,4969,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3154.51,{},21772,1,"""South America""" +2023-12-17,22085,2548,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",534.13,"{\""loyalty\"": \""15%\""}",81655,1,"""Africa""" +2023-04-18,22086,9582,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2096.2,{},250454,1,"""South America""" +2023-04-08,22087,9707,"[\""Wireless Mouse\""]",126.49,{},198946,0,"""Asia""" +2024-03-27,22088,7741,"[\""Phone\""]",1517.43,"{\""promo\"": \""23%\""}",56780,1,"""South America""" +2023-10-20,22089,9517,"[\""Wireless Mouse\"", \""Laptop\""]",476.7,{},14701,1,"""Europe""" +2024-12-28,22090,6504,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3092.45,{},200439,0,"""South America""" +2024-03-18,22091,4564,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3458.97,{},74964,0,"""Europe""" +2024-02-28,22092,4252,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2042.18,{},65689,0,"""North America""" +2023-12-18,22093,8072,"[\""Monitor\"", \""Laptop\""]",4440.83,{},246985,0,"""Africa""" +2023-12-24,22094,6700,"[\""Phone\"", \""Charger\""]",1681.18,{},281167,1,"""Africa""" +2024-11-24,22095,6363,"[\""Wireless Mouse\""]",3362.57,"{\"": \""24%\""}",137270,0,"""Asia""" +2024-08-22,22096,5563,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",293.82,{},138075,1,"""North America""" +2023-09-11,22097,8146,"[\""Monitor\""]",111.4,{},159901,1,"""Asia""" +2023-01-31,22098,3603,"[\""Wireless Mouse\""]",205.71,"{\""promo\"": \""28%\""}",231968,1,"""North America""" +2024-04-14,22099,6290,"[\""Tablet\"", \""Headphones\""]",824.14,{},201315,0,"""Africa""" +2023-10-18,22100,9085,"[\""Charger\"", \""Phone\""]",2778.4,"{\""loyalty\"": \""18%\""}",65191,1,"""Africa""" +2023-01-11,22101,386,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1527.26,"{\""seasonal\"": \""19%\""}",268237,0,"""South America""" +2024-01-23,22102,5022,"[\""Headphones\"", \""Monitor\""]",2701.95,"{\"": \""11%\""}",215831,0,"""South America""" +2024-05-25,22103,33,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3576.48,"{\""seasonal\"": \""8%\""}",165514,0,"""North America""" +2023-04-07,22104,5852,"[\""Headphones\""]",2059.42,"{\""seasonal\"": \""11%\""}",79661,1,"""North America""" +2024-05-12,22105,7046,"[\""Tablet\"", \""Monitor\""]",4297.44,"{\""seasonal\"": \""12%\""}",63881,0,"""South America""" +2024-05-21,22106,3195,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2871.43,{},254572,0,"""South America""" +2024-04-30,22107,9172,"[\""Tablet\""]",3385.36,{},238570,1,"""North America""" +2024-07-02,22108,144,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4409.42,"{\""loyalty\"": \""15%\""}",214179,0,"""South America""" +2023-09-13,22109,136,"[\""Wireless Mouse\"", \""Laptop\""]",1193.73,{},93003,1,"""Africa""" +2023-08-31,22110,5121,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2164.88,"{\"": \""26%\""}",192043,0,"""Europe""" +2023-02-08,22111,1790,"[\""Monitor\"", \""Headphones\""]",3226.35,{},264553,0,"""South America""" +2024-06-13,22112,8652,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2107.18,"{\""seasonal\"": \""22%\""}",250644,0,"""North America""" +2023-09-09,22113,3860,"[\""Laptop\"", \""Tablet\""]",1223.21,"{\"": \""19%\""}",67753,0,"""Europe""" +2024-02-26,22114,1644,"[\""Keyboard\""]",1047.37,"{\"": \""5%\""}",246216,0,"""Africa""" +2023-06-17,22115,7058,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3152.44,"{\""seasonal\"": \""19%\""}",150533,1,"""Asia""" +2023-06-13,22116,8277,"[\""Tablet\"", \""Phone\""]",966.37,{},90840,1,"""North America""" +2024-01-16,22117,5726,"[\""Tablet\""]",3082.03,"{\"": \""6%\""}",176871,0,"""Europe""" +2023-02-05,22118,5639,"[\""Headphones\""]",1717.79,{},47097,1,"""Asia""" +2023-06-28,22119,5465,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",250.71,"{\""promo\"": \""18%\""}",247157,1,"""Africa""" +2023-12-31,22120,331,"[\""Keyboard\""]",3694.5,"{\""promo\"": \""7%\""}",53849,1,"""North America""" +2024-11-07,22121,9017,"[\""Monitor\""]",4017.59,"{\""seasonal\"": \""20%\""}",113297,1,"""North America""" +2024-01-14,22122,4411,"[\""Phone\""]",2454.84,{},298599,1,"""Europe""" +2023-10-22,22123,1410,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3811.49,"{\"": \""26%\""}",175840,0,"""Africa""" +2023-12-18,22124,4361,"[\""Monitor\""]",2480.66,"{\""loyalty\"": \""21%\""}",125642,1,"""Europe""" +2023-06-17,22125,4167,"[\""Monitor\"", \""Headphones\""]",4191.16,"{\""promo\"": \""18%\""}",293117,1,"""Asia""" +2023-12-11,22126,9569,"[\""Tablet\"", \""Monitor\""]",3334.5,{},19930,1,"""South America""" +2024-04-07,22127,6041,"[\""Keyboard\""]",2550.63,{},144156,1,"""South America""" +2024-06-06,22128,4178,"[\""Laptop\"", \""Keyboard\""]",2068.01,"{\""promo\"": \""22%\""}",109324,1,"""North America""" +2024-05-27,22129,5939,"[\""Keyboard\"", \""Tablet\""]",4356.72,"{\"": \""26%\""}",137110,0,"""South America""" +2024-04-08,22130,1217,"[\""Wireless Mouse\""]",3483.94,{},76166,0,"""South America""" +2023-05-24,22131,430,"[\""Wireless Mouse\""]",3268.88,{},143742,1,"""Asia""" +2024-07-17,22132,2590,"[\""Keyboard\"", \""Monitor\""]",4107.24,"{\""promo\"": \""18%\""}",224770,0,"""Europe""" +2024-05-19,22133,6166,"[\""Keyboard\""]",153.67,{},285307,1,"""North America""" +2024-11-14,22134,6059,"[\""Charger\"", \""Headphones\""]",3467.94,"{\""promo\"": \""30%\""}",277934,0,"""Africa""" +2023-02-16,22135,4797,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",296.07,"{\"": \""28%\""}",220944,0,"""North America""" +2024-12-23,22136,1149,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2002.34,"{\""loyalty\"": \""30%\""}",154886,1,"""South America""" +2024-05-29,22137,3754,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1937.65,"{\""seasonal\"": \""30%\""}",135233,1,"""Asia""" +2024-09-18,22138,1822,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2526.96,{},155000,0,"""South America""" +2024-09-18,22139,7873,"[\""Charger\"", \""Tablet\""]",3026.6,{},5014,0,"""North America""" +2024-07-15,22140,9292,"[\""Phone\"", \""Headphones\""]",1312.9,"{\""seasonal\"": \""22%\""}",276317,0,"""Asia""" +2024-10-26,22141,6280,"[\""Tablet\""]",4228.25,{},230025,0,"""South America""" +2023-11-28,22142,4194,"[\""Keyboard\""]",919.59,"{\""promo\"": \""25%\""}",238095,0,"""South America""" +2023-09-17,22143,8103,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1024.69,{},237372,1,"""Europe""" +2023-10-04,22144,1334,"[\""Monitor\""]",4660.96,{},257471,0,"""Europe""" +2023-05-12,22145,1181,"[\""Headphones\"", \""Wireless Mouse\""]",1568.69,{},261887,1,"""Asia""" +2023-09-24,22146,6724,"[\""Wireless Mouse\"", \""Monitor\""]",2269.32,"{\""promo\"": \""11%\""}",49477,1,"""Africa""" +2023-11-05,22147,1599,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",367.8,"{\"": \""27%\""}",158350,0,"""Africa""" +2024-01-22,22148,1847,"[\""Keyboard\""]",3865.01,"{\""seasonal\"": \""30%\""}",261418,0,"""Europe""" +2023-06-13,22149,7933,"[\""Monitor\""]",3611.78,"{\"": \""24%\""}",235236,0,"""South America""" +2024-05-23,22150,8243,"[\""Laptop\""]",1304.02,"{\""loyalty\"": \""15%\""}",215899,0,"""South America""" +2023-12-06,22151,7351,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2964.89,{},273085,0,"""Europe""" +2024-01-08,22152,6433,"[\""Wireless Mouse\"", \""Monitor\""]",627.24,"{\"": \""14%\""}",128285,0,"""Africa""" +2023-05-28,22153,7646,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1898.54,{},274894,1,"""Asia""" +2024-06-09,22154,2754,"[\""Keyboard\"", \""Charger\""]",2028.44,{},178296,0,"""South America""" +2024-04-04,22155,7811,"[\""Tablet\""]",2634.86,"{\""loyalty\"": \""17%\""}",128442,1,"""Europe""" +2024-03-28,22156,9731,"[\""Tablet\""]",674.15,"{\""loyalty\"": \""7%\""}",153817,0,"""Africa""" +2024-04-04,22157,7017,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",615.11,{},130219,1,"""South America""" +2024-10-11,22158,542,"[\""Laptop\""]",3715.93,{},240735,1,"""North America""" +2024-07-30,22159,572,"[\""Keyboard\"", \""Charger\""]",2079.14,{},11689,1,"""South America""" +2023-02-21,22160,6206,"[\""Phone\"", \""Monitor\""]",2413.62,"{\""seasonal\"": \""26%\""}",169021,0,"""Africa""" +2023-07-17,22161,9572,"[\""Keyboard\"", \""Tablet\""]",3419.18,"{\""promo\"": \""6%\""}",192820,0,"""North America""" +2024-01-09,22162,6294,"[\""Monitor\""]",2851.53,"{\""seasonal\"": \""24%\""}",259198,1,"""Africa""" +2024-12-27,22163,9813,"[\""Tablet\"", \""Laptop\""]",1440.52,{},299093,1,"""Africa""" +2024-05-14,22164,6519,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1882.94,{},114847,0,"""Africa""" +2023-05-23,22165,5597,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3558.05,"{\""seasonal\"": \""25%\""}",259022,0,"""Europe""" +2024-09-25,22166,1162,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2272.22,"{\""seasonal\"": \""24%\""}",83941,0,"""Europe""" +2023-02-09,22167,8913,"[\""Keyboard\""]",4418.43,{},73247,1,"""Europe""" +2024-03-06,22168,7841,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1250.45,"{\""loyalty\"": \""20%\""}",117729,0,"""Asia""" +2023-02-21,22169,8339,"[\""Laptop\"", \""Headphones\""]",4941.76,{},235590,0,"""Africa""" +2023-10-05,22170,5365,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4198.85,"{\""seasonal\"": \""10%\""}",227934,0,"""Europe""" +2024-11-29,22171,9208,"[\""Charger\""]",825.94,{},165172,1,"""Asia""" +2024-10-26,22172,1944,"[\""Wireless Mouse\"", \""Phone\""]",1574.53,"{\""loyalty\"": \""14%\""}",24315,0,"""Africa""" +2024-06-03,22173,8013,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3652.37,{},198801,0,"""North America""" +2024-08-21,22174,6683,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",701.54,{},292537,0,"""South America""" +2024-09-18,22175,8538,"[\""Laptop\""]",3139.65,"{\""loyalty\"": \""23%\""}",176170,1,"""Africa""" +2023-08-11,22176,1109,"[\""Keyboard\""]",4687.0,{},153175,0,"""Asia""" +2024-07-16,22177,5303,"[\""Keyboard\"", \""Monitor\""]",1333.97,"{\""promo\"": \""6%\""}",298813,0,"""Africa""" +2024-12-03,22178,5312,"[\""Laptop\""]",4334.47,"{\"": \""14%\""}",45351,1,"""Asia""" +2023-06-04,22179,584,"[\""Charger\"", \""Keyboard\""]",2735.26,"{\""promo\"": \""16%\""}",68118,1,"""Europe""" +2024-09-08,22180,7392,"[\""Monitor\""]",2017.2,"{\"": \""28%\""}",228810,1,"""Asia""" +2023-10-10,22181,549,"[\""Monitor\""]",2518.35,{},105334,1,"""South America""" +2024-06-12,22182,5349,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1835.2,"{\""loyalty\"": \""13%\""}",185342,0,"""South America""" +2023-09-21,22183,4130,"[\""Phone\""]",3876.18,{},193434,0,"""Africa""" +2023-06-02,22184,5404,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3527.46,"{\""promo\"": \""8%\""}",105341,1,"""South America""" +2023-05-10,22185,4777,"[\""Charger\"", \""Laptop\""]",2581.94,{},67176,0,"""South America""" +2023-09-10,22186,67,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4555.08,"{\""loyalty\"": \""23%\""}",107778,1,"""Africa""" +2023-06-13,22187,5065,"[\""Headphones\""]",2821.59,"{\"": \""10%\""}",248502,0,"""South America""" +2024-02-19,22188,7331,"[\""Wireless Mouse\""]",1222.2,{},118524,1,"""North America""" +2024-01-28,22189,9230,"[\""Keyboard\""]",3390.02,{},104539,1,"""North America""" +2023-06-29,22190,2827,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4902.36,"{\""loyalty\"": \""19%\""}",47207,0,"""Asia""" +2023-04-13,22191,653,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1631.34,{},106959,1,"""Africa""" +2024-10-08,22192,4616,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2481.69,"{\""seasonal\"": \""18%\""}",274424,1,"""Africa""" +2024-11-12,22193,4346,"[\""Headphones\"", \""Laptop\""]",3449.05,{},29083,0,"""Asia""" +2023-09-04,22194,1490,"[\""Keyboard\""]",70.23,{},213172,1,"""South America""" +2023-10-29,22195,7118,"[\""Headphones\"", \""Laptop\""]",3477.25,"{\"": \""19%\""}",123128,0,"""South America""" +2023-03-08,22196,7480,"[\""Monitor\""]",4761.63,{},264908,0,"""Africa""" +2023-11-22,22197,497,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",849.32,{},267480,1,"""Europe""" +2023-03-28,22198,2293,"[\""Headphones\""]",4376.84,"{\""promo\"": \""16%\""}",66557,0,"""Asia""" +2024-10-14,22199,4496,"[\""Charger\"", \""Monitor\""]",2603.32,{},23190,0,"""South America""" +2023-02-23,22200,3924,"[\""Tablet\""]",4033.74,{},292932,1,"""Asia""" +2024-10-24,22201,8358,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",103.74,"{\""loyalty\"": \""5%\""}",85419,0,"""South America""" +2023-08-22,22202,8399,"[\""Phone\"", \""Keyboard\""]",767.41,{},136694,0,"""South America""" +2024-11-06,22203,5697,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",247.04,{},98174,0,"""Africa""" +2023-04-03,22204,9832,"[\""Keyboard\""]",3234.54,"{\""promo\"": \""24%\""}",21652,1,"""North America""" +2023-12-31,22205,8389,"[\""Laptop\""]",864.03,{},266131,1,"""Asia""" +2023-08-11,22206,3355,"[\""Phone\"", \""Charger\"", \""Headphones\""]",796.65,{},153164,0,"""North America""" +2024-08-18,22207,5906,"[\""Charger\""]",4344.48,"{\"": \""18%\""}",36435,0,"""North America""" +2024-02-20,22208,3833,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3459.71,"{\""promo\"": \""6%\""}",48696,0,"""Africa""" +2023-11-29,22209,6535,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3335.43,{},102405,0,"""Asia""" +2023-11-26,22210,7843,"[\""Wireless Mouse\"", \""Tablet\""]",4481.46,"{\""promo\"": \""27%\""}",274990,1,"""Asia""" +2024-04-28,22211,3634,"[\""Headphones\"", \""Charger\""]",4633.33,"{\""promo\"": \""26%\""}",242858,1,"""Asia""" +2024-07-12,22212,3969,"[\""Headphones\"", \""Laptop\""]",3367.88,{},173906,1,"""Europe""" +2023-08-24,22213,7594,"[\""Phone\"", \""Wireless Mouse\""]",2378.17,{},136896,1,"""Asia""" +2023-11-20,22214,675,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4594.72,{},59182,1,"""Asia""" +2024-11-02,22215,1276,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",611.28,"{\""seasonal\"": \""6%\""}",293750,1,"""North America""" +2023-06-08,22216,606,"[\""Keyboard\""]",1649.45,"{\""loyalty\"": \""7%\""}",136565,0,"""Asia""" +2023-07-05,22217,4414,"[\""Tablet\"", \""Phone\""]",1436.69,"{\""loyalty\"": \""23%\""}",84739,0,"""North America""" +2024-03-26,22218,2658,"[\""Laptop\""]",2522.35,{},166860,1,"""North America""" +2023-06-01,22219,9098,"[\""Headphones\"", \""Monitor\""]",1601.54,{},110368,1,"""North America""" +2024-10-12,22220,6727,"[\""Keyboard\"", \""Headphones\""]",4372.83,"{\""promo\"": \""28%\""}",150945,0,"""Asia""" +2024-06-16,22221,4198,"[\""Tablet\""]",2612.32,{},80697,0,"""South America""" +2023-11-15,22222,6790,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4133.27,{},129959,1,"""North America""" +2024-05-20,22223,5547,"[\""Laptop\"", \""Tablet\""]",2172.08,{},263101,1,"""Asia""" +2023-01-07,22224,7367,"[\""Phone\""]",3223.01,"{\""promo\"": \""30%\""}",86799,0,"""North America""" +2023-01-31,22225,8346,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3091.47,{},164050,1,"""Asia""" +2023-07-30,22226,1140,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4274.5,{},216979,1,"""Africa""" +2023-07-01,22227,1302,"[\""Headphones\""]",1024.05,"{\""loyalty\"": \""23%\""}",108468,0,"""Asia""" +2023-03-10,22228,2861,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2279.2,"{\""loyalty\"": \""26%\""}",198234,0,"""Europe""" +2023-12-05,22229,8098,"[\""Phone\""]",590.19,{},79711,0,"""North America""" +2023-07-17,22230,5254,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3701.55,{},22336,0,"""Asia""" +2023-11-28,22231,8595,"[\""Tablet\"", \""Laptop\""]",3219.97,"{\""seasonal\"": \""19%\""}",30408,1,"""South America""" +2024-10-07,22232,7290,"[\""Charger\"", \""Tablet\""]",4542.23,"{\"": \""28%\""}",236839,1,"""Asia""" +2024-02-27,22233,6135,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",867.18,"{\"": \""17%\""}",137982,0,"""Africa""" +2023-10-20,22234,8538,"[\""Tablet\"", \""Wireless Mouse\""]",3764.04,"{\""promo\"": \""5%\""}",106373,0,"""North America""" +2023-12-16,22235,9515,"[\""Monitor\"", \""Keyboard\""]",2176.93,{},33443,0,"""South America""" +2023-05-15,22236,1472,"[\""Wireless Mouse\""]",3916.98,"{\""seasonal\"": \""29%\""}",143234,0,"""North America""" +2023-01-18,22237,4613,"[\""Monitor\"", \""Headphones\""]",4439.64,{},257232,1,"""Africa""" +2024-10-18,22238,1265,"[\""Monitor\""]",2795.86,"{\"": \""24%\""}",2226,0,"""North America""" +2024-11-05,22239,2547,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1116.06,{},289628,1,"""Asia""" +2023-07-18,22240,8551,"[\""Headphones\""]",1485.54,{},196632,1,"""Asia""" +2024-05-26,22241,1241,"[\""Tablet\"", \""Charger\""]",4517.4,{},193346,1,"""South America""" +2024-03-09,22242,1790,"[\""Wireless Mouse\"", \""Phone\""]",377.2,"{\""promo\"": \""29%\""}",289139,0,"""North America""" +2024-08-01,22243,6585,"[\""Keyboard\""]",2915.31,{},23442,1,"""Europe""" +2024-04-21,22244,9520,"[\""Laptop\""]",4242.01,{},293869,1,"""Europe""" +2024-08-13,22245,2975,"[\""Charger\""]",1921.98,{},151555,1,"""North America""" +2024-12-24,22246,8550,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2247.98,"{\""promo\"": \""28%\""}",36907,0,"""Europe""" +2024-05-08,22247,5983,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2813.44,"{\"": \""15%\""}",136337,0,"""North America""" +2024-10-21,22248,7862,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2572.27,"{\""loyalty\"": \""16%\""}",222505,0,"""North America""" +2023-01-28,22249,8403,"[\""Phone\""]",3970.59,"{\"": \""19%\""}",10178,1,"""Africa""" +2024-07-31,22250,4470,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3875.38,"{\""promo\"": \""16%\""}",47762,1,"""Asia""" +2023-12-26,22251,3683,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3619.07,"{\""promo\"": \""15%\""}",21562,0,"""North America""" +2024-03-21,22252,6256,"[\""Laptop\""]",4436.27,{},186296,0,"""Africa""" +2024-07-24,22253,8374,"[\""Headphones\"", \""Monitor\""]",2974.71,{},63496,1,"""Africa""" +2023-07-24,22254,2894,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2471.51,{},149913,0,"""South America""" +2024-04-11,22255,2261,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3164.21,"{\"": \""22%\""}",259686,1,"""North America""" +2024-04-13,22256,9769,"[\""Wireless Mouse\"", \""Charger\""]",3778.7,{},151066,0,"""Africa""" +2024-03-28,22257,5655,"[\""Laptop\"", \""Phone\""]",4732.35,"{\""promo\"": \""20%\""}",203280,0,"""Europe""" +2024-12-24,22258,4170,"[\""Wireless Mouse\"", \""Headphones\""]",3440.55,"{\""seasonal\"": \""23%\""}",136415,1,"""North America""" +2023-08-29,22259,8380,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1563.7,"{\""promo\"": \""25%\""}",82833,1,"""Africa""" +2024-08-21,22260,7247,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2244.37,"{\""seasonal\"": \""26%\""}",49675,1,"""Asia""" +2024-01-09,22261,270,"[\""Headphones\""]",1163.7,{},127133,1,"""Asia""" +2023-10-31,22262,625,"[\""Wireless Mouse\""]",2070.87,{},98041,0,"""Asia""" +2024-05-14,22263,7648,"[\""Keyboard\""]",3583.13,{},243738,1,"""Asia""" +2023-12-17,22264,700,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",402.09,{},263474,1,"""South America""" +2024-10-28,22265,26,"[\""Keyboard\"", \""Monitor\""]",723.91,{},91563,0,"""Europe""" +2023-09-21,22266,3956,"[\""Charger\"", \""Monitor\""]",4216.62,"{\""seasonal\"": \""19%\""}",73425,0,"""Europe""" +2023-11-18,22267,6943,"[\""Laptop\"", \""Monitor\""]",727.6,{},60401,1,"""Africa""" +2023-01-30,22268,7129,"[\""Laptop\"", \""Headphones\""]",1064.2,"{\""seasonal\"": \""27%\""}",93790,0,"""North America""" +2024-03-17,22269,452,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",183.96,"{\""seasonal\"": \""5%\""}",86153,1,"""North America""" +2024-06-25,22270,5746,"[\""Charger\""]",3376.03,"{\""promo\"": \""6%\""}",51189,0,"""North America""" +2023-08-20,22271,4112,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4135.6,{},286934,0,"""South America""" +2024-07-31,22272,5708,"[\""Headphones\"", \""Phone\""]",4511.11,"{\""promo\"": \""16%\""}",211715,0,"""South America""" +2024-07-18,22273,4983,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2292.46,{},166482,0,"""Europe""" +2024-10-29,22274,646,"[\""Laptop\"", \""Phone\""]",4307.8,{},48287,1,"""Asia""" +2024-01-20,22275,4240,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4144.9,{},58214,0,"""Africa""" +2024-06-06,22276,1862,"[\""Phone\"", \""Tablet\""]",3529.78,"{\""promo\"": \""27%\""}",63136,1,"""Asia""" +2024-06-25,22277,3905,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3241.41,"{\""seasonal\"": \""14%\""}",116659,1,"""Europe""" +2023-04-27,22278,5187,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4136.52,"{\""seasonal\"": \""30%\""}",139226,0,"""Europe""" +2023-04-11,22279,9262,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3478.96,"{\""seasonal\"": \""6%\""}",120853,1,"""Europe""" +2023-11-27,22280,1332,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4481.29,{},188862,1,"""Europe""" +2023-03-18,22281,187,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1761.19,"{\""seasonal\"": \""12%\""}",287709,0,"""Africa""" +2023-03-30,22282,821,"[\""Phone\"", \""Tablet\""]",4891.28,"{\""promo\"": \""10%\""}",155651,1,"""Africa""" +2024-09-30,22283,7863,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2499.6,"{\""loyalty\"": \""7%\""}",158978,0,"""Africa""" +2024-08-16,22284,9384,"[\""Monitor\""]",838.08,"{\""promo\"": \""8%\""}",245411,1,"""Asia""" +2023-09-18,22285,1658,"[\""Tablet\""]",2975.52,"{\""seasonal\"": \""29%\""}",187724,0,"""South America""" +2023-10-10,22286,7501,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2530.81,"{\"": \""11%\""}",30497,0,"""Asia""" +2024-09-16,22287,5753,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4396.2,"{\""seasonal\"": \""7%\""}",214986,1,"""South America""" +2023-03-05,22288,5577,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1681.3,"{\""loyalty\"": \""30%\""}",296539,0,"""Asia""" +2023-01-02,22289,7058,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",960.07,"{\""seasonal\"": \""7%\""}",110747,1,"""Europe""" +2023-09-17,22290,4370,"[\""Keyboard\"", \""Wireless Mouse\""]",4300.06,"{\""loyalty\"": \""16%\""}",268303,1,"""Asia""" +2024-03-22,22291,1194,"[\""Keyboard\""]",4777.57,{},185538,1,"""Asia""" +2023-02-22,22292,7915,"[\""Phone\""]",2158.78,"{\""loyalty\"": \""23%\""}",262552,0,"""Europe""" +2023-02-05,22293,5478,"[\""Tablet\"", \""Laptop\""]",4119.76,{},22046,0,"""South America""" +2024-04-12,22294,8871,"[\""Keyboard\"", \""Phone\""]",2404.33,{},99332,0,"""Asia""" +2024-10-20,22295,2920,"[\""Phone\""]",434.35,{},76747,1,"""North America""" +2023-07-06,22296,1805,"[\""Wireless Mouse\"", \""Tablet\""]",1696.34,"{\"": \""30%\""}",102605,1,"""South America""" +2024-02-10,22297,5350,"[\""Keyboard\""]",3490.63,{},291172,1,"""South America""" +2023-02-05,22298,4502,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",584.2,"{\"": \""27%\""}",230196,1,"""North America""" +2024-05-03,22299,2590,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1726.79,{},91621,0,"""North America""" +2024-11-19,22300,375,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1101.05,"{\""loyalty\"": \""7%\""}",52261,1,"""South America""" +2023-06-22,22301,7136,"[\""Keyboard\"", \""Headphones\""]",130.41,{},159580,1,"""South America""" +2024-06-11,22302,2420,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",117.47,{},172596,1,"""Asia""" +2023-03-03,22303,3179,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2318.87,{},15532,0,"""South America""" +2023-07-26,22304,7562,"[\""Monitor\"", \""Phone\"", \""Charger\""]",315.73,"{\"": \""14%\""}",162199,0,"""Asia""" +2023-10-03,22305,6795,"[\""Monitor\"", \""Headphones\""]",3404.09,"{\""loyalty\"": \""5%\""}",28368,0,"""Europe""" +2024-09-02,22306,2836,"[\""Keyboard\"", \""Headphones\""]",2245.06,{},21632,1,"""Africa""" +2023-04-18,22307,2849,"[\""Keyboard\""]",1347.75,"{\"": \""12%\""}",234297,0,"""Africa""" +2024-07-27,22308,43,"[\""Keyboard\"", \""Laptop\""]",3968.72,{},40784,0,"""North America""" +2024-11-14,22309,3422,"[\""Phone\"", \""Headphones\""]",4314.8,"{\"": \""18%\""}",141485,1,"""Europe""" +2023-05-15,22310,256,"[\""Laptop\"", \""Headphones\""]",3577.65,{},254891,1,"""Europe""" +2023-12-23,22311,6579,"[\""Tablet\""]",3818.23,"{\""loyalty\"": \""9%\""}",168009,1,"""Europe""" +2023-02-19,22312,1507,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4226.13,"{\""promo\"": \""11%\""}",15862,1,"""South America""" +2023-12-18,22313,6697,"[\""Headphones\""]",3172.75,"{\""promo\"": \""30%\""}",151776,1,"""North America""" +2024-05-09,22314,823,"[\""Headphones\"", \""Phone\""]",1421.1,{},180039,1,"""South America""" +2024-06-08,22315,3179,"[\""Headphones\"", \""Charger\""]",508.58,{},129551,1,"""Asia""" +2023-05-25,22316,2851,"[\""Monitor\""]",1802.91,"{\""promo\"": \""6%\""}",89278,0,"""Europe""" +2024-12-14,22317,4212,"[\""Charger\""]",2245.03,"{\""promo\"": \""17%\""}",212144,1,"""Asia""" +2023-06-06,22318,799,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4619.6,{},139989,0,"""North America""" +2024-08-25,22319,8506,"[\""Tablet\"", \""Wireless Mouse\""]",4121.98,{},164570,0,"""South America""" +2024-01-14,22320,5255,"[\""Keyboard\"", \""Monitor\""]",2189.76,{},262529,0,"""South America""" +2024-12-14,22321,4985,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4588.68,"{\""loyalty\"": \""22%\""}",80783,1,"""North America""" +2024-03-31,22322,5133,"[\""Tablet\"", \""Charger\""]",4980.95,{},273183,0,"""North America""" +2023-12-30,22323,9724,"[\""Wireless Mouse\""]",482.87,"{\"": \""23%\""}",146975,1,"""North America""" +2024-10-15,22324,2079,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3702.43,{},136507,0,"""North America""" +2023-01-28,22325,9694,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1276.7,"{\""seasonal\"": \""25%\""}",190393,1,"""Africa""" +2023-04-11,22326,1759,"[\""Phone\"", \""Headphones\""]",394.81,"{\"": \""29%\""}",153369,0,"""Africa""" +2023-04-17,22327,8689,"[\""Phone\"", \""Keyboard\""]",4762.86,{},50951,0,"""Europe""" +2024-02-16,22328,1336,"[\""Keyboard\""]",2674.02,"{\""promo\"": \""26%\""}",139736,1,"""Africa""" +2024-05-07,22329,3547,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",190.08,{},114527,1,"""Europe""" +2024-07-27,22330,4940,"[\""Tablet\"", \""Phone\""]",4995.68,"{\""seasonal\"": \""18%\""}",189853,1,"""North America""" +2023-03-09,22331,7282,"[\""Wireless Mouse\""]",4844.1,{},52774,1,"""Africa""" +2023-08-15,22332,5428,"[\""Phone\"", \""Tablet\""]",2873.42,"{\""promo\"": \""5%\""}",69801,0,"""Europe""" +2024-09-24,22333,9798,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2118.96,"{\""promo\"": \""24%\""}",79932,0,"""Europe""" +2023-09-26,22334,8007,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3912.78,"{\"": \""25%\""}",195405,0,"""Africa""" +2024-02-27,22335,2939,"[\""Phone\""]",1022.34,{},167819,1,"""Asia""" +2024-04-22,22336,2811,"[\""Wireless Mouse\"", \""Keyboard\""]",824.08,"{\""seasonal\"": \""28%\""}",63020,0,"""North America""" +2024-10-07,22337,8034,"[\""Tablet\"", \""Headphones\""]",2525.93,{},3571,0,"""South America""" +2024-03-24,22338,384,"[\""Laptop\"", \""Monitor\""]",3768.98,{},35545,0,"""South America""" +2023-01-01,22339,9104,"[\""Headphones\"", \""Charger\""]",2711.13,{},258468,0,"""North America""" +2023-03-16,22340,1255,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4788.1,"{\"": \""22%\""}",8760,1,"""Europe""" +2024-11-11,22341,5907,"[\""Wireless Mouse\""]",1676.47,{},248321,1,"""South America""" +2024-01-25,22342,852,"[\""Keyboard\""]",4815.31,{},95689,0,"""Europe""" +2023-01-15,22343,2225,"[\""Phone\"", \""Charger\""]",2091.21,{},71462,1,"""North America""" +2023-01-25,22344,1359,"[\""Keyboard\"", \""Phone\""]",896.82,"{\""loyalty\"": \""28%\""}",234501,1,"""North America""" +2023-07-03,22345,1655,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",660.94,{},61625,0,"""South America""" +2024-06-27,22346,9761,"[\""Keyboard\"", \""Monitor\""]",998.91,{},144256,0,"""Asia""" +2024-03-18,22347,1244,"[\""Headphones\"", \""Phone\""]",1032.31,"{\""seasonal\"": \""26%\""}",195421,1,"""Europe""" +2024-01-22,22348,8951,"[\""Monitor\"", \""Charger\""]",2821.0,{},262042,0,"""Asia""" +2024-09-30,22349,3919,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1579.84,"{\""loyalty\"": \""6%\""}",127839,0,"""Africa""" +2024-03-06,22350,5511,"[\""Keyboard\"", \""Phone\""]",2010.66,"{\""seasonal\"": \""23%\""}",116411,0,"""Europe""" +2023-02-15,22351,4689,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1050.03,"{\""loyalty\"": \""24%\""}",293790,1,"""North America""" +2023-11-30,22352,9680,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3653.51,{},256315,1,"""Europe""" +2023-01-16,22353,5500,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1180.98,"{\""seasonal\"": \""27%\""}",285625,1,"""Europe""" +2024-07-17,22354,5520,"[\""Phone\"", \""Tablet\""]",3055.65,{},261627,1,"""Asia""" +2024-04-07,22355,2065,"[\""Headphones\"", \""Charger\""]",920.02,{},201580,0,"""Asia""" +2024-03-03,22356,2519,"[\""Laptop\"", \""Monitor\""]",966.79,{},220187,1,"""Europe""" +2023-08-01,22357,2442,"[\""Headphones\""]",2564.91,{},118389,0,"""Asia""" +2024-05-05,22358,8539,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",395.8,{},101233,0,"""Africa""" +2023-02-09,22359,9988,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2023.18,"{\""promo\"": \""14%\""}",160713,1,"""North America""" +2024-02-26,22360,7661,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1945.57,"{\""promo\"": \""28%\""}",182078,0,"""Asia""" +2024-08-24,22361,2476,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3856.96,"{\"": \""21%\""}",82734,1,"""South America""" +2024-01-19,22362,4309,"[\""Monitor\"", \""Charger\""]",3220.01,"{\""loyalty\"": \""5%\""}",4892,1,"""Africa""" +2023-06-10,22363,506,"[\""Tablet\""]",4648.83,"{\""loyalty\"": \""5%\""}",72519,1,"""Europe""" +2023-08-15,22364,6424,"[\""Keyboard\"", \""Phone\""]",2389.86,{},69281,0,"""South America""" +2024-11-27,22365,1185,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4016.59,"{\""loyalty\"": \""11%\""}",236922,1,"""North America""" +2023-02-17,22366,8550,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4688.48,"{\""promo\"": \""17%\""}",292529,0,"""Europe""" +2024-03-16,22367,9520,"[\""Phone\""]",551.5,{},44494,0,"""North America""" +2023-10-22,22368,4229,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2690.07,{},184642,1,"""Asia""" +2023-05-15,22369,6000,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2717.11,{},166036,1,"""South America""" +2024-04-13,22370,2454,"[\""Laptop\""]",1797.83,{},220641,1,"""North America""" +2024-10-07,22371,4137,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3128.63,{},26925,0,"""South America""" +2024-10-09,22372,2129,"[\""Monitor\"", \""Headphones\""]",1852.64,"{\""promo\"": \""10%\""}",255695,1,"""South America""" +2024-12-17,22373,6108,"[\""Keyboard\""]",1163.03,{},200141,1,"""Europe""" +2023-08-05,22374,4691,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4601.58,{},105191,1,"""Asia""" +2024-08-08,22375,4839,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2954.76,"{\""seasonal\"": \""16%\""}",7587,1,"""Asia""" +2024-09-04,22376,6970,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2664.74,{},123454,0,"""Asia""" +2024-07-02,22377,7731,"[\""Charger\"", \""Keyboard\""]",3329.45,"{\""seasonal\"": \""22%\""}",264993,0,"""Africa""" +2024-09-13,22378,7873,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2664.54,"{\""seasonal\"": \""14%\""}",278273,0,"""Europe""" +2023-06-01,22379,1495,"[\""Monitor\"", \""Phone\""]",243.74,{},273087,1,"""North America""" +2024-10-10,22380,4988,"[\""Monitor\""]",2271.12,"{\"": \""7%\""}",245187,1,"""Africa""" +2024-03-13,22381,7730,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",305.61,{},279634,0,"""North America""" +2024-12-17,22382,5615,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3606.81,{},41897,0,"""North America""" +2023-03-24,22383,8759,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1040.79,{},261126,1,"""Europe""" +2024-06-04,22384,2755,"[\""Wireless Mouse\"", \""Monitor\""]",1966.21,"{\""seasonal\"": \""22%\""}",13650,1,"""Europe""" +2024-03-22,22385,667,"[\""Keyboard\"", \""Wireless Mouse\""]",879.09,"{\""promo\"": \""13%\""}",188820,1,"""South America""" +2024-05-08,22386,6622,"[\""Wireless Mouse\"", \""Charger\""]",4653.79,"{\""loyalty\"": \""20%\""}",170280,1,"""Africa""" +2024-01-12,22387,5601,"[\""Laptop\""]",2635.21,"{\""loyalty\"": \""6%\""}",146488,0,"""Africa""" +2024-05-22,22388,1070,"[\""Headphones\"", \""Wireless Mouse\""]",3283.7,{},165996,0,"""North America""" +2024-11-27,22389,4102,"[\""Headphones\"", \""Phone\""]",691.96,"{\""seasonal\"": \""25%\""}",109265,0,"""North America""" +2023-06-11,22390,9426,"[\""Charger\""]",3020.3,"{\""promo\"": \""25%\""}",27182,0,"""South America""" +2024-12-16,22391,6280,"[\""Tablet\""]",52.66,{},66904,1,"""Africa""" +2023-06-10,22392,1871,"[\""Monitor\""]",2887.4,"{\""promo\"": \""27%\""}",131872,0,"""North America""" +2023-11-04,22393,9144,"[\""Headphones\"", \""Laptop\""]",3257.8,"{\""loyalty\"": \""26%\""}",149034,0,"""South America""" +2024-01-23,22394,7082,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4734.84,"{\""seasonal\"": \""23%\""}",99847,0,"""Asia""" +2023-07-09,22395,5192,"[\""Wireless Mouse\""]",3879.78,"{\""promo\"": \""16%\""}",257618,1,"""Asia""" +2023-06-03,22396,2377,"[\""Keyboard\"", \""Laptop\""]",968.62,"{\""promo\"": \""24%\""}",272133,0,"""Asia""" +2023-05-20,22397,8429,"[\""Tablet\""]",3759.38,{},12417,0,"""South America""" +2024-07-10,22398,3529,"[\""Charger\""]",3239.23,{},273966,0,"""South America""" +2024-03-07,22399,6018,"[\""Headphones\"", \""Tablet\""]",4161.02,"{\""seasonal\"": \""22%\""}",94326,0,"""Asia""" +2023-05-24,22400,1584,"[\""Charger\""]",4648.79,{},296768,0,"""South America""" +2023-11-06,22401,7637,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2701.02,{},115577,0,"""South America""" +2023-10-01,22402,4919,"[\""Keyboard\""]",3799.65,"{\"": \""10%\""}",261627,0,"""Africa""" +2024-11-21,22403,2731,"[\""Monitor\"", \""Headphones\""]",4356.81,"{\"": \""22%\""}",78121,1,"""South America""" +2023-07-23,22404,3990,"[\""Tablet\"", \""Laptop\""]",4967.61,{},116343,1,"""South America""" +2023-08-23,22405,2868,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",367.27,{},194939,1,"""Asia""" +2023-11-01,22406,4532,"[\""Charger\"", \""Laptop\""]",3611.27,"{\""seasonal\"": \""28%\""}",99719,0,"""South America""" +2023-02-26,22407,1777,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4612.62,"{\"": \""10%\""}",131683,1,"""South America""" +2023-11-10,22408,4437,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4690.57,{},288673,1,"""Europe""" +2024-06-27,22409,7012,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1816.79,{},53542,1,"""Europe""" +2024-02-10,22410,3650,"[\""Monitor\"", \""Headphones\""]",3324.69,"{\"": \""6%\""}",108727,1,"""North America""" +2024-10-10,22411,1898,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3137.12,"{\""loyalty\"": \""23%\""}",216763,0,"""North America""" +2024-07-27,22412,7709,"[\""Monitor\""]",4944.35,{},51211,1,"""Africa""" +2023-07-08,22413,6329,"[\""Charger\""]",1641.9,"{\"": \""29%\""}",280832,1,"""South America""" +2023-09-11,22414,9010,"[\""Keyboard\"", \""Charger\""]",3203.71,{},190218,0,"""Europe""" +2024-07-20,22415,4172,"[\""Wireless Mouse\"", \""Phone\""]",232.56,"{\""promo\"": \""14%\""}",70085,0,"""North America""" +2024-09-01,22416,3403,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",829.45,{},138432,1,"""Africa""" +2024-12-04,22417,2926,"[\""Charger\""]",1688.35,{},107401,0,"""South America""" +2024-01-17,22418,6355,"[\""Charger\"", \""Laptop\""]",611.7,"{\"": \""19%\""}",114026,0,"""North America""" +2023-08-22,22419,6488,"[\""Laptop\"", \""Keyboard\""]",2528.76,"{\""promo\"": \""6%\""}",89266,0,"""South America""" +2024-06-08,22420,9964,"[\""Keyboard\""]",4587.09,{},114180,0,"""South America""" +2024-06-05,22421,3613,"[\""Phone\""]",2906.86,{},246059,1,"""South America""" +2023-12-30,22422,6540,"[\""Tablet\""]",386.1,"{\""promo\"": \""7%\""}",256601,0,"""Europe""" +2023-01-28,22423,7610,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",857.01,{},82239,0,"""South America""" +2023-08-03,22424,8026,"[\""Headphones\""]",2338.35,{},265147,0,"""Asia""" +2024-01-27,22425,7040,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1092.39,"{\""loyalty\"": \""7%\""}",255170,0,"""Europe""" +2024-04-24,22426,9399,"[\""Tablet\""]",1442.88,{},68424,0,"""Asia""" +2024-07-29,22427,3357,"[\""Headphones\"", \""Tablet\""]",4569.01,{},167721,1,"""North America""" +2023-11-15,22428,2152,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",652.37,"{\""loyalty\"": \""10%\""}",29391,1,"""Africa""" +2023-08-02,22429,6098,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4100.43,"{\""seasonal\"": \""29%\""}",289320,1,"""Europe""" +2023-08-26,22430,2779,"[\""Wireless Mouse\""]",691.13,"{\""promo\"": \""8%\""}",298317,0,"""North America""" +2024-12-02,22431,8035,"[\""Wireless Mouse\""]",3786.45,{},2597,0,"""Europe""" +2023-01-28,22432,2948,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1651.95,"{\""loyalty\"": \""21%\""}",222052,1,"""South America""" +2024-06-13,22433,59,"[\""Tablet\""]",325.79,"{\"": \""16%\""}",275458,0,"""Asia""" +2023-05-01,22434,2743,"[\""Tablet\"", \""Charger\""]",2785.56,"{\""promo\"": \""22%\""}",259863,1,"""North America""" +2024-07-19,22435,5221,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1030.74,"{\""loyalty\"": \""24%\""}",14670,0,"""Europe""" +2023-11-25,22436,4037,"[\""Charger\""]",4097.82,"{\""loyalty\"": \""14%\""}",91992,0,"""South America""" +2023-03-18,22437,784,"[\""Charger\""]",3899.99,"{\""promo\"": \""7%\""}",178693,0,"""Europe""" +2023-09-22,22438,3574,"[\""Headphones\""]",1242.87,{},33315,1,"""Europe""" +2023-05-23,22439,7013,"[\""Tablet\""]",2523.9,"{\"": \""20%\""}",59961,1,"""South America""" +2023-06-13,22440,8504,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1583.66,"{\""promo\"": \""20%\""}",75306,0,"""South America""" +2024-10-23,22441,4078,"[\""Laptop\"", \""Monitor\""]",3719.75,"{\""promo\"": \""24%\""}",12964,1,"""Asia""" +2023-07-07,22442,7206,"[\""Wireless Mouse\""]",205.55,{},93630,0,"""Asia""" +2023-01-02,22443,7604,"[\""Monitor\"", \""Keyboard\""]",3749.34,{},122093,0,"""Asia""" +2024-04-03,22444,7532,"[\""Keyboard\"", \""Monitor\""]",844.21,"{\""promo\"": \""13%\""}",124508,0,"""Africa""" +2023-03-18,22445,3392,"[\""Phone\"", \""Wireless Mouse\""]",930.2,{},158514,0,"""Asia""" +2024-02-20,22446,8978,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4723.42,"{\""seasonal\"": \""12%\""}",47936,0,"""Africa""" +2024-12-29,22447,4712,"[\""Tablet\"", \""Keyboard\""]",2667.86,"{\""seasonal\"": \""21%\""}",40075,0,"""North America""" +2023-05-08,22448,8869,"[\""Phone\"", \""Headphones\""]",1351.0,{},155635,1,"""Europe""" +2023-10-23,22449,5266,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4716.29,"{\""promo\"": \""30%\""}",278445,0,"""North America""" +2024-11-02,22450,5860,"[\""Wireless Mouse\"", \""Charger\""]",4871.85,{},38055,0,"""Africa""" +2024-03-19,22451,8436,"[\""Charger\"", \""Laptop\""]",987.7,"{\"": \""11%\""}",239465,1,"""South America""" +2023-11-26,22452,4714,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1952.21,{},234130,1,"""Asia""" +2023-12-13,22453,7472,"[\""Keyboard\"", \""Wireless Mouse\""]",3935.0,{},189121,0,"""Africa""" +2023-08-09,22454,1356,"[\""Tablet\"", \""Wireless Mouse\""]",649.43,{},15324,1,"""South America""" +2024-03-17,22455,1792,"[\""Headphones\""]",216.48,{},132607,1,"""Asia""" +2023-06-07,22456,5350,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4322.92,{},256044,1,"""Europe""" +2023-06-24,22457,2975,"[\""Wireless Mouse\"", \""Keyboard\""]",3671.12,"{\"": \""19%\""}",73598,0,"""Europe""" +2024-04-28,22458,5766,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4191.52,{},42910,0,"""South America""" +2023-05-20,22459,5179,"[\""Phone\""]",4238.86,"{\""seasonal\"": \""13%\""}",106661,1,"""South America""" +2023-02-01,22460,3546,"[\""Headphones\""]",168.73,"{\"": \""5%\""}",106667,1,"""Europe""" +2024-01-28,22461,7771,"[\""Charger\"", \""Laptop\""]",3405.16,"{\""seasonal\"": \""26%\""}",223543,0,"""South America""" +2024-04-28,22462,4886,"[\""Headphones\"", \""Phone\""]",4220.35,{},288652,0,"""Europe""" +2024-04-13,22463,8138,"[\""Headphones\""]",2013.38,"{\""loyalty\"": \""11%\""}",22214,1,"""Europe""" +2024-05-25,22464,7241,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3819.03,{},65109,0,"""South America""" +2023-11-25,22465,8576,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1327.62,{},111952,1,"""North America""" +2024-12-10,22466,8174,"[\""Wireless Mouse\"", \""Charger\""]",2708.62,"{\"": \""25%\""}",132841,1,"""North America""" +2024-02-06,22467,2387,"[\""Keyboard\"", \""Headphones\""]",807.11,"{\""loyalty\"": \""16%\""}",23447,0,"""North America""" +2024-03-27,22468,5727,"[\""Wireless Mouse\""]",2574.94,{},19502,0,"""Africa""" +2023-10-10,22469,8618,"[\""Tablet\"", \""Wireless Mouse\""]",525.21,{},93240,1,"""Africa""" +2023-09-30,22470,7088,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3674.24,"{\""loyalty\"": \""29%\""}",17777,0,"""South America""" +2023-08-30,22471,634,"[\""Headphones\"", \""Keyboard\""]",4246.16,{},201576,0,"""North America""" +2023-05-21,22472,3311,"[\""Charger\"", \""Phone\""]",3656.83,{},139696,0,"""North America""" +2024-02-26,22473,7531,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2161.28,{},179304,0,"""Africa""" +2023-04-20,22474,7603,"[\""Wireless Mouse\"", \""Monitor\""]",1558.06,"{\""promo\"": \""19%\""}",166806,1,"""North America""" +2023-06-27,22475,5745,"[\""Charger\""]",1321.66,{},150304,0,"""Africa""" +2023-11-20,22476,8728,"[\""Monitor\"", \""Charger\""]",495.98,"{\""seasonal\"": \""22%\""}",196548,0,"""Africa""" +2024-05-16,22477,6482,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2386.48,{},6362,0,"""North America""" +2023-03-03,22478,3344,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2306.47,"{\"": \""11%\""}",6956,1,"""North America""" +2024-02-13,22479,1432,"[\""Charger\""]",4803.46,{},165499,0,"""South America""" +2024-05-22,22480,9335,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3287.32,"{\""promo\"": \""12%\""}",169762,1,"""South America""" +2024-11-11,22481,3953,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4055.39,{},165061,0,"""South America""" +2024-02-27,22482,7234,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",484.9,{},140387,0,"""North America""" +2023-09-05,22483,801,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4926.6,"{\"": \""9%\""}",43014,1,"""Europe""" +2023-03-10,22484,8399,"[\""Charger\""]",4755.74,{},13268,0,"""South America""" +2024-04-04,22485,5221,"[\""Monitor\""]",2519.57,{},290899,1,"""Europe""" +2023-01-15,22486,4946,"[\""Wireless Mouse\""]",3100.52,{},201637,0,"""Europe""" +2024-09-19,22487,9442,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1855.5,{},25345,0,"""Asia""" +2023-12-10,22488,3903,"[\""Headphones\"", \""Wireless Mouse\""]",148.54,{},77467,0,"""Europe""" +2024-03-17,22489,8449,"[\""Phone\""]",1097.72,"{\"": \""16%\""}",100708,0,"""Africa""" +2024-05-21,22490,1291,"[\""Laptop\""]",4744.04,{},46295,0,"""North America""" +2023-07-27,22491,4306,"[\""Monitor\"", \""Laptop\""]",4099.45,{},53143,0,"""Europe""" +2024-07-04,22492,2054,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3216.26,{},24974,0,"""South America""" +2024-01-09,22493,8674,"[\""Tablet\""]",4785.92,{},287105,1,"""South America""" +2023-09-06,22494,5192,"[\""Charger\"", \""Laptop\""]",2498.17,{},38908,1,"""North America""" +2023-10-04,22495,5301,"[\""Tablet\""]",4245.68,{},13592,1,"""Asia""" +2024-08-07,22496,5015,"[\""Phone\"", \""Keyboard\""]",4026.12,{},127820,0,"""South America""" +2024-01-10,22497,7933,"[\""Wireless Mouse\""]",4905.97,"{\"": \""27%\""}",31731,1,"""North America""" +2024-04-21,22498,881,"[\""Monitor\"", \""Laptop\""]",1228.87,{},251413,0,"""North America""" +2023-08-06,22499,5251,"[\""Tablet\"", \""Phone\""]",3273.01,{},207578,0,"""Africa""" +2023-01-20,22500,9953,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3258.82,{},237591,0,"""North America""" +2023-08-19,22501,842,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1212.99,{},61362,1,"""Europe""" +2023-06-29,22502,9588,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2952.74,"{\"": \""30%\""}",173965,1,"""Asia""" +2024-03-20,22503,8261,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4001.82,{},283039,0,"""Europe""" +2023-07-09,22504,3127,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3754.92,{},13816,1,"""Asia""" +2024-06-22,22505,6548,"[\""Keyboard\"", \""Charger\""]",2222.4,{},102115,0,"""South America""" +2024-12-29,22506,5456,"[\""Headphones\"", \""Laptop\""]",738.44,{},274945,0,"""Asia""" +2024-11-12,22507,8008,"[\""Headphones\""]",821.55,"{\"": \""14%\""}",60534,1,"""North America""" +2024-12-17,22508,5940,"[\""Laptop\"", \""Phone\""]",4747.64,{},146680,1,"""Europe""" +2023-01-25,22509,1523,"[\""Headphones\""]",4302.85,{},155524,0,"""Europe""" +2024-11-01,22510,6640,"[\""Keyboard\"", \""Charger\""]",3082.74,{},154582,1,"""Africa""" +2024-06-04,22511,8401,"[\""Tablet\"", \""Wireless Mouse\""]",1063.76,{},211721,1,"""South America""" +2023-10-29,22512,567,"[\""Tablet\"", \""Laptop\""]",2821.22,{},202559,0,"""South America""" +2024-06-02,22513,7975,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2212.36,"{\""seasonal\"": \""27%\""}",64195,0,"""Asia""" +2023-04-05,22514,2272,"[\""Tablet\"", \""Phone\""]",886.25,{},175326,0,"""North America""" +2024-04-26,22515,1369,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",800.11,{},285635,1,"""Africa""" +2023-05-23,22516,6063,"[\""Keyboard\"", \""Tablet\""]",2999.61,"{\""seasonal\"": \""23%\""}",149484,0,"""North America""" +2024-10-31,22517,3636,"[\""Phone\"", \""Monitor\""]",1032.93,"{\""seasonal\"": \""21%\""}",242794,1,"""Asia""" +2023-02-13,22518,7686,"[\""Charger\""]",1314.28,"{\""loyalty\"": \""19%\""}",287656,1,"""North America""" +2023-01-13,22519,1886,"[\""Wireless Mouse\"", \""Headphones\""]",4258.35,{},31459,0,"""South America""" +2023-05-30,22520,9444,"[\""Headphones\"", \""Wireless Mouse\""]",2154.34,{},32890,0,"""Asia""" +2023-05-01,22521,4741,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",700.23,{},244552,0,"""North America""" +2023-03-02,22522,5592,"[\""Phone\"", \""Keyboard\""]",2065.51,{},232567,0,"""Europe""" +2024-11-17,22523,6985,"[\""Laptop\""]",3310.11,{},111400,1,"""North America""" +2023-01-23,22524,5975,"[\""Monitor\"", \""Keyboard\""]",1835.5,"{\"": \""29%\""}",174399,1,"""Africa""" +2024-09-07,22525,8518,"[\""Keyboard\"", \""Phone\""]",2883.03,{},27732,1,"""Asia""" +2023-05-30,22526,494,"[\""Charger\"", \""Monitor\""]",2030.88,"{\""seasonal\"": \""8%\""}",168052,1,"""Europe""" +2024-02-16,22527,4602,"[\""Phone\"", \""Monitor\""]",2740.54,"{\""loyalty\"": \""7%\""}",196105,1,"""South America""" +2024-05-15,22528,4156,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4704.04,"{\""seasonal\"": \""18%\""}",185803,1,"""Africa""" +2023-03-06,22529,6145,"[\""Laptop\"", \""Headphones\""]",3590.91,"{\""promo\"": \""6%\""}",41646,0,"""South America""" +2023-09-06,22530,1048,"[\""Laptop\""]",298.56,"{\"": \""10%\""}",123315,0,"""North America""" +2023-03-03,22531,5353,"[\""Tablet\"", \""Keyboard\""]",3218.47,{},78246,0,"""Europe""" +2024-10-16,22532,8243,"[\""Charger\""]",1242.39,"{\""seasonal\"": \""26%\""}",201950,1,"""Asia""" +2023-11-28,22533,9378,"[\""Phone\""]",3174.19,"{\""promo\"": \""21%\""}",244393,1,"""North America""" +2024-04-07,22534,6040,"[\""Headphones\""]",645.73,"{\""seasonal\"": \""8%\""}",264855,1,"""Asia""" +2024-01-09,22535,2304,"[\""Monitor\""]",2393.33,{},206091,0,"""South America""" +2023-01-23,22536,5688,"[\""Charger\"", \""Tablet\""]",3127.35,"{\""loyalty\"": \""7%\""}",211461,1,"""Europe""" +2024-10-15,22537,4908,"[\""Monitor\""]",4073.72,"{\""loyalty\"": \""26%\""}",181118,0,"""Europe""" +2024-06-21,22538,5325,"[\""Laptop\"", \""Tablet\""]",2764.24,{},115988,1,"""North America""" +2024-11-02,22539,8836,"[\""Phone\""]",3992.55,"{\""seasonal\"": \""26%\""}",168080,1,"""Africa""" +2023-06-10,22540,7027,"[\""Wireless Mouse\"", \""Charger\""]",538.46,{},21791,1,"""Europe""" +2024-03-25,22541,9209,"[\""Wireless Mouse\""]",1505.22,{},200197,0,"""Asia""" +2024-05-12,22542,4434,"[\""Headphones\"", \""Charger\""]",1120.79,{},223468,1,"""Africa""" +2023-05-27,22543,931,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3718.89,{},86321,1,"""Africa""" +2023-12-20,22544,145,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1191.64,{},282170,0,"""North America""" +2023-08-10,22545,6870,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2137.86,"{\""seasonal\"": \""24%\""}",17932,0,"""Europe""" +2023-08-25,22546,8135,"[\""Phone\""]",4446.09,{},228748,1,"""Europe""" +2024-12-24,22547,29,"[\""Wireless Mouse\""]",1403.77,{},50243,0,"""Europe""" +2023-07-12,22548,3264,"[\""Laptop\""]",1973.03,"{\"": \""19%\""}",299392,1,"""South America""" +2024-05-15,22549,3294,"[\""Phone\"", \""Monitor\""]",4250.67,{},143478,1,"""Europe""" +2024-11-24,22550,3850,"[\""Tablet\""]",1107.78,{},244342,1,"""South America""" +2024-06-13,22551,288,"[\""Laptop\"", \""Charger\""]",2398.45,{},187523,0,"""Asia""" +2024-10-10,22552,2159,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1698.53,{},221305,0,"""Europe""" +2024-08-11,22553,9262,"[\""Tablet\"", \""Keyboard\""]",777.93,{},18081,0,"""South America""" +2024-04-07,22554,5918,"[\""Laptop\""]",1658.76,"{\""seasonal\"": \""21%\""}",18619,1,"""North America""" +2024-12-25,22555,6468,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1574.76,"{\""seasonal\"": \""21%\""}",117387,0,"""North America""" +2024-06-07,22556,4886,"[\""Laptop\"", \""Phone\""]",1841.57,{},285813,1,"""Europe""" +2023-10-02,22557,7862,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4732.76,"{\""promo\"": \""14%\""}",116659,0,"""South America""" +2024-07-23,22558,5359,"[\""Wireless Mouse\"", \""Monitor\""]",1754.06,"{\""promo\"": \""10%\""}",157863,0,"""Europe""" +2023-12-13,22559,2821,"[\""Keyboard\"", \""Monitor\""]",4214.46,{},46128,0,"""South America""" +2024-02-03,22560,5394,"[\""Headphones\"", \""Keyboard\""]",531.82,"{\""promo\"": \""29%\""}",172795,0,"""Europe""" +2024-04-23,22561,2235,"[\""Tablet\""]",2341.4,"{\"": \""8%\""}",169707,0,"""South America""" +2024-02-19,22562,8244,"[\""Headphones\""]",126.34,{},286414,1,"""Africa""" +2024-09-28,22563,2059,"[\""Headphones\""]",1956.94,{},262492,1,"""South America""" +2024-02-17,22564,4678,"[\""Laptop\""]",4203.99,{},197036,0,"""Asia""" +2023-12-27,22565,6285,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4545.42,{},147017,0,"""Africa""" +2023-05-03,22566,122,"[\""Wireless Mouse\"", \""Monitor\""]",2327.84,{},28472,0,"""Europe""" +2023-10-20,22567,1613,"[\""Monitor\"", \""Charger\""]",4486.83,{},9119,1,"""Africa""" +2024-05-01,22568,609,"[\""Headphones\"", \""Tablet\""]",4098.83,{},278895,0,"""Europe""" +2023-11-19,22569,4929,"[\""Charger\""]",3754.43,"{\""promo\"": \""17%\""}",111582,0,"""Asia""" +2023-07-18,22570,9577,"[\""Keyboard\"", \""Charger\""]",4062.77,"{\""seasonal\"": \""7%\""}",21781,0,"""Asia""" +2024-01-08,22571,9300,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1139.02,"{\""promo\"": \""22%\""}",195195,0,"""South America""" +2024-02-23,22572,3912,"[\""Laptop\"", \""Headphones\""]",1121.51,"{\"": \""7%\""}",294031,0,"""Asia""" +2024-10-07,22573,5205,"[\""Keyboard\""]",4232.52,"{\"": \""16%\""}",109028,1,"""Asia""" +2024-05-24,22574,303,"[\""Phone\""]",1041.24,{},90101,1,"""South America""" +2023-12-26,22575,4321,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1460.19,{},250038,0,"""Asia""" +2024-06-18,22576,2008,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2984.83,{},280847,1,"""Asia""" +2024-02-13,22577,9426,"[\""Charger\""]",2389.0,{},123366,0,"""South America""" +2023-10-03,22578,2776,"[\""Phone\""]",1712.53,{},38436,1,"""South America""" +2023-02-18,22579,6445,"[\""Laptop\""]",650.03,"{\""loyalty\"": \""23%\""}",29772,0,"""Asia""" +2023-01-18,22580,7008,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3253.79,{},95871,0,"""Europe""" +2023-04-24,22581,9238,"[\""Wireless Mouse\""]",1561.92,{},15063,1,"""South America""" +2023-06-11,22582,394,"[\""Monitor\"", \""Laptop\""]",2921.69,"{\""promo\"": \""30%\""}",30012,0,"""Africa""" +2023-06-01,22583,4695,"[\""Headphones\""]",2230.68,{},154409,1,"""Asia""" +2023-12-15,22584,607,"[\""Keyboard\"", \""Wireless Mouse\""]",2735.45,{},84048,1,"""North America""" +2023-07-16,22585,5544,"[\""Tablet\""]",2259.74,{},287699,1,"""North America""" +2023-10-14,22586,6600,"[\""Tablet\"", \""Laptop\""]",4760.99,{},272131,1,"""North America""" +2024-03-29,22587,9109,"[\""Phone\""]",4676.89,"{\""seasonal\"": \""12%\""}",133251,1,"""South America""" +2023-05-06,22588,2437,"[\""Tablet\""]",4967.04,"{\""promo\"": \""18%\""}",14471,0,"""Africa""" +2023-10-09,22589,4220,"[\""Headphones\""]",4747.53,"{\""seasonal\"": \""13%\""}",70524,0,"""Asia""" +2024-04-16,22590,848,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1612.98,{},106870,1,"""Asia""" +2023-11-06,22591,281,"[\""Tablet\""]",2672.75,"{\"": \""11%\""}",40044,0,"""North America""" +2023-06-18,22592,7172,"[\""Phone\""]",1720.23,"{\""loyalty\"": \""26%\""}",28914,1,"""Africa""" +2023-08-20,22593,1337,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2230.11,{},214454,1,"""South America""" +2024-06-19,22594,7724,"[\""Keyboard\"", \""Monitor\""]",4798.09,{},189437,1,"""Africa""" +2023-01-02,22595,1269,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2755.47,{},235087,0,"""Africa""" +2024-02-14,22596,8146,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3862.21,{},213762,0,"""North America""" +2024-11-30,22597,1554,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4832.92,"{\""loyalty\"": \""13%\""}",200119,0,"""Europe""" +2024-01-19,22598,5026,"[\""Wireless Mouse\"", \""Charger\""]",2418.72,"{\""promo\"": \""7%\""}",46467,1,"""South America""" +2023-08-07,22599,9649,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",144.92,"{\""loyalty\"": \""7%\""}",15276,0,"""North America""" +2024-12-22,22600,7506,"[\""Phone\"", \""Wireless Mouse\""]",1943.74,{},144139,0,"""North America""" +2024-08-15,22601,2420,"[\""Headphones\"", \""Charger\""]",2043.08,"{\""promo\"": \""6%\""}",271803,0,"""North America""" +2024-05-02,22602,5868,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3116.38,{},158351,0,"""North America""" +2023-10-03,22603,8193,"[\""Headphones\""]",4840.93,{},255869,0,"""Asia""" +2023-06-22,22604,6873,"[\""Keyboard\""]",325.42,{},172076,1,"""Asia""" +2024-10-18,22605,3164,"[\""Laptop\""]",1566.14,"{\""loyalty\"": \""15%\""}",189704,0,"""North America""" +2023-12-02,22606,5923,"[\""Keyboard\""]",1846.8,{},125100,0,"""Europe""" +2023-10-13,22607,4786,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4186.72,{},204959,1,"""Europe""" +2023-09-03,22608,3910,"[\""Laptop\""]",2727.94,{},6677,1,"""Europe""" +2024-03-06,22609,101,"[\""Wireless Mouse\"", \""Tablet\""]",3032.04,{},176201,0,"""South America""" +2023-02-24,22610,1000,"[\""Headphones\""]",4945.42,{},289974,1,"""South America""" +2024-03-13,22611,5456,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3468.04,"{\""seasonal\"": \""22%\""}",40834,0,"""South America""" +2024-04-02,22612,4541,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1063.97,"{\""loyalty\"": \""27%\""}",132253,0,"""Asia""" +2024-04-13,22613,5737,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4799.69,{},23251,0,"""North America""" +2023-03-16,22614,2638,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1933.02,"{\""seasonal\"": \""18%\""}",273863,0,"""North America""" +2024-11-18,22615,7133,"[\""Phone\""]",2750.44,{},134895,1,"""North America""" +2024-09-17,22616,8146,"[\""Tablet\"", \""Laptop\""]",966.67,"{\""loyalty\"": \""21%\""}",76583,1,"""Africa""" +2024-05-01,22617,223,"[\""Headphones\"", \""Wireless Mouse\""]",3733.55,"{\"": \""7%\""}",172941,1,"""Asia""" +2023-10-16,22618,2999,"[\""Laptop\""]",4334.35,"{\""promo\"": \""11%\""}",70716,1,"""Asia""" +2023-04-13,22619,7142,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4288.75,"{\""promo\"": \""5%\""}",26044,0,"""Africa""" +2024-07-08,22620,220,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4852.08,"{\""promo\"": \""29%\""}",155913,0,"""South America""" +2024-01-12,22621,6461,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3544.63,"{\""promo\"": \""11%\""}",159108,1,"""North America""" +2023-08-28,22622,3700,"[\""Keyboard\""]",1269.83,{},237825,1,"""Europe""" +2024-10-28,22623,753,"[\""Charger\"", \""Phone\""]",125.24,{},232842,0,"""North America""" +2023-07-16,22624,5643,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4716.53,{},253638,1,"""North America""" +2023-01-01,22625,465,"[\""Keyboard\""]",3130.76,"{\""promo\"": \""12%\""}",187529,0,"""North America""" +2023-04-30,22626,1623,"[\""Headphones\""]",303.56,{},132539,1,"""Asia""" +2024-01-06,22627,7127,"[\""Headphones\""]",2721.37,{},174847,0,"""North America""" +2023-07-28,22628,1173,"[\""Headphones\"", \""Tablet\""]",2258.55,"{\""seasonal\"": \""26%\""}",261903,1,"""Asia""" +2024-03-26,22629,2191,"[\""Wireless Mouse\"", \""Headphones\""]",257.16,"{\"": \""27%\""}",125752,0,"""Europe""" +2023-08-27,22630,2722,"[\""Wireless Mouse\"", \""Keyboard\""]",1009.38,"{\""promo\"": \""12%\""}",77538,1,"""Europe""" +2024-06-09,22631,6080,"[\""Keyboard\"", \""Tablet\""]",4618.06,{},190280,1,"""South America""" +2024-05-04,22632,3304,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1140.48,{},127308,0,"""Europe""" +2023-06-18,22633,2663,"[\""Headphones\""]",3753.68,{},122489,0,"""North America""" +2024-06-02,22634,457,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",634.27,{},185662,1,"""South America""" +2023-03-07,22635,6974,"[\""Tablet\""]",2404.79,{},122466,1,"""Africa""" +2023-05-24,22636,8534,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3483.25,"{\""loyalty\"": \""17%\""}",231140,0,"""Africa""" +2024-06-16,22637,3685,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4069.08,"{\""promo\"": \""27%\""}",87932,0,"""Europe""" +2023-07-27,22638,5509,"[\""Headphones\""]",318.69,"{\""promo\"": \""13%\""}",54951,1,"""North America""" +2023-09-16,22639,2699,"[\""Wireless Mouse\"", \""Headphones\""]",1928.75,{},23905,1,"""North America""" +2023-02-05,22640,9789,"[\""Headphones\"", \""Charger\""]",3101.7,{},71246,1,"""North America""" +2023-10-20,22641,2668,"[\""Laptop\""]",4441.26,{},67244,0,"""Africa""" +2024-01-20,22642,9830,"[\""Monitor\"", \""Laptop\""]",2284.32,{},175070,1,"""Africa""" +2023-01-10,22643,2250,"[\""Headphones\""]",743.44,{},287941,1,"""North America""" +2024-07-10,22644,2575,"[\""Keyboard\"", \""Phone\""]",4041.59,{},94417,0,"""Asia""" +2023-01-02,22645,6238,"[\""Tablet\"", \""Charger\""]",1909.43,"{\"": \""7%\""}",72334,1,"""Asia""" +2023-05-15,22646,5255,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4528.67,"{\""loyalty\"": \""26%\""}",198207,0,"""Asia""" +2024-12-12,22647,3063,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1548.5,"{\""promo\"": \""14%\""}",181823,0,"""North America""" +2024-01-23,22648,6510,"[\""Phone\""]",273.2,"{\"": \""24%\""}",44177,1,"""South America""" +2023-10-29,22649,6107,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3005.5,{},294544,0,"""Africa""" +2023-11-08,22650,3780,"[\""Laptop\""]",388.1,"{\""seasonal\"": \""28%\""}",195713,0,"""North America""" +2024-04-21,22651,9819,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2504.44,{},190679,0,"""North America""" +2024-07-21,22652,8388,"[\""Monitor\"", \""Phone\""]",1194.36,{},252613,1,"""Asia""" +2024-04-23,22653,997,"[\""Laptop\""]",2088.97,"{\""seasonal\"": \""17%\""}",47774,1,"""Africa""" +2024-12-26,22654,7820,"[\""Keyboard\""]",4839.61,"{\""promo\"": \""24%\""}",108003,0,"""North America""" +2024-07-20,22655,3529,"[\""Tablet\""]",2751.21,"{\""promo\"": \""23%\""}",139524,1,"""Asia""" +2024-05-13,22656,3778,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3883.64,{},139403,1,"""Europe""" +2023-02-24,22657,7835,"[\""Tablet\""]",3889.61,{},299703,1,"""South America""" +2023-11-10,22658,7371,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1283.79,{},193174,0,"""Africa""" +2024-05-13,22659,7586,"[\""Laptop\""]",1437.87,"{\""seasonal\"": \""19%\""}",279907,1,"""North America""" +2023-10-16,22660,4463,"[\""Phone\"", \""Keyboard\""]",695.19,{},93780,0,"""South America""" +2023-09-08,22661,8139,"[\""Keyboard\""]",3573.39,"{\""seasonal\"": \""23%\""}",101247,1,"""Europe""" +2023-08-30,22662,2245,"[\""Wireless Mouse\"", \""Monitor\""]",2089.06,{},238670,0,"""Africa""" +2023-11-13,22663,7010,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",695.0,"{\""seasonal\"": \""19%\""}",50601,0,"""Europe""" +2024-03-27,22664,6659,"[\""Monitor\"", \""Laptop\""]",1114.25,{},151640,1,"""North America""" +2024-04-10,22665,2717,"[\""Wireless Mouse\"", \""Headphones\""]",2549.46,{},17074,0,"""Asia""" +2024-01-31,22666,447,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1147.38,"{\""promo\"": \""5%\""}",154010,0,"""North America""" +2024-03-19,22667,2360,"[\""Keyboard\""]",4691.38,{},166218,1,"""Africa""" +2023-11-22,22668,3191,"[\""Tablet\""]",1253.27,"{\""loyalty\"": \""22%\""}",145048,0,"""Africa""" +2023-10-23,22669,8677,"[\""Monitor\"", \""Keyboard\""]",2026.4,"{\""loyalty\"": \""24%\""}",63346,0,"""North America""" +2024-08-05,22670,2660,"[\""Wireless Mouse\""]",2078.3,{},52290,0,"""North America""" +2023-01-24,22671,3054,"[\""Charger\""]",3601.75,"{\""loyalty\"": \""30%\""}",254940,1,"""Europe""" +2023-04-29,22672,1457,"[\""Laptop\""]",2170.23,{},17629,0,"""Africa""" +2023-08-26,22673,3576,"[\""Wireless Mouse\""]",4930.85,"{\"": \""7%\""}",282370,1,"""South America""" +2024-10-09,22674,2368,"[\""Laptop\"", \""Tablet\""]",1148.16,"{\""promo\"": \""11%\""}",8420,1,"""North America""" +2023-07-22,22675,1486,"[\""Charger\"", \""Wireless Mouse\""]",534.04,{},119376,0,"""North America""" +2023-12-18,22676,4413,"[\""Wireless Mouse\"", \""Monitor\""]",922.33,{},175874,1,"""Africa""" +2023-09-28,22677,6012,"[\""Charger\"", \""Wireless Mouse\""]",2435.26,"{\""promo\"": \""20%\""}",112266,0,"""North America""" +2024-09-03,22678,6056,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1875.39,{},190611,0,"""North America""" +2024-09-18,22679,7652,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4544.88,{},254283,1,"""South America""" +2023-02-05,22680,8369,"[\""Laptop\""]",2803.85,{},30522,0,"""North America""" +2023-02-21,22681,5328,"[\""Wireless Mouse\""]",625.45,{},278829,0,"""Europe""" +2023-11-11,22682,1156,"[\""Keyboard\"", \""Headphones\""]",515.11,{},15527,0,"""Africa""" +2023-12-31,22683,9696,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2933.09,"{\""seasonal\"": \""23%\""}",159229,1,"""Europe""" +2024-08-17,22684,537,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4982.91,{},26753,1,"""North America""" +2024-05-24,22685,4383,"[\""Monitor\"", \""Wireless Mouse\""]",1014.92,{},20718,0,"""Europe""" +2024-06-15,22686,948,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2021.18,{},55095,0,"""North America""" +2024-11-26,22687,555,"[\""Monitor\"", \""Keyboard\""]",2391.82,{},248668,0,"""North America""" +2023-05-22,22688,8867,"[\""Keyboard\""]",4077.86,{},205925,0,"""North America""" +2024-03-03,22689,6215,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2458.28,{},21246,1,"""South America""" +2024-02-15,22690,5170,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1001.06,"{\""loyalty\"": \""17%\""}",137068,0,"""Africa""" +2023-02-15,22691,206,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4236.18,"{\"": \""6%\""}",117407,1,"""Africa""" +2023-03-30,22692,5361,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4257.33,"{\""loyalty\"": \""11%\""}",220295,1,"""Asia""" +2024-09-27,22693,2324,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2503.91,"{\""loyalty\"": \""19%\""}",99207,0,"""Africa""" +2023-04-23,22694,5292,"[\""Keyboard\""]",2941.95,"{\""seasonal\"": \""13%\""}",234412,0,"""Asia""" +2023-09-13,22695,5052,"[\""Charger\""]",310.31,"{\""promo\"": \""17%\""}",141766,1,"""North America""" +2024-06-01,22696,3154,"[\""Wireless Mouse\"", \""Charger\""]",1190.91,{},258778,0,"""Europe""" +2024-12-05,22697,1312,"[\""Charger\""]",1951.73,{},62143,1,"""Africa""" +2023-05-06,22698,4789,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2336.3,{},175028,1,"""Africa""" +2023-05-06,22699,7210,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3224.25,"{\""loyalty\"": \""27%\""}",179228,0,"""North America""" +2023-03-21,22700,6889,"[\""Keyboard\"", \""Laptop\""]",2187.77,"{\""promo\"": \""13%\""}",173391,1,"""Asia""" +2023-09-02,22701,2103,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4556.8,"{\""promo\"": \""6%\""}",33205,1,"""North America""" +2023-11-13,22702,8135,"[\""Wireless Mouse\""]",2817.77,{},288766,0,"""Asia""" +2023-11-27,22703,6716,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3134.1,{},145099,0,"""Asia""" +2023-04-10,22704,2808,"[\""Headphones\"", \""Keyboard\""]",367.39,{},257648,1,"""North America""" +2023-10-22,22705,7651,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",945.0,{},262659,0,"""Africa""" +2024-03-28,22706,3307,"[\""Phone\"", \""Keyboard\""]",4541.68,"{\"": \""5%\""}",115587,1,"""Asia""" +2024-03-18,22707,4006,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1530.68,"{\"": \""21%\""}",171631,0,"""North America""" +2024-08-29,22708,8346,"[\""Wireless Mouse\""]",260.51,"{\""seasonal\"": \""5%\""}",142660,1,"""South America""" +2023-09-25,22709,8962,"[\""Laptop\"", \""Monitor\""]",2934.64,"{\""promo\"": \""16%\""}",226228,0,"""Africa""" +2023-10-31,22710,2321,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4933.08,"{\""seasonal\"": \""21%\""}",88796,0,"""Africa""" +2024-08-13,22711,4745,"[\""Monitor\""]",4005.47,"{\""promo\"": \""15%\""}",295536,1,"""Africa""" +2024-03-15,22712,8386,"[\""Phone\"", \""Wireless Mouse\""]",3945.36,"{\"": \""9%\""}",194940,1,"""Europe""" +2023-04-04,22713,1305,"[\""Tablet\""]",154.22,"{\""promo\"": \""9%\""}",278377,0,"""Africa""" +2024-07-11,22714,7534,"[\""Headphones\"", \""Tablet\""]",957.38,"{\""seasonal\"": \""27%\""}",87339,1,"""Europe""" +2024-10-27,22715,591,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3776.89,"{\""promo\"": \""26%\""}",35742,1,"""Europe""" +2024-10-10,22716,7204,"[\""Phone\"", \""Keyboard\""]",3689.79,{},130409,1,"""Africa""" +2024-08-11,22717,8990,"[\""Monitor\"", \""Wireless Mouse\""]",4584.01,"{\""seasonal\"": \""22%\""}",213447,1,"""Africa""" +2023-03-19,22718,9023,"[\""Phone\""]",2180.92,{},53056,1,"""Africa""" +2023-11-04,22719,6214,"[\""Phone\""]",3196.54,"{\""seasonal\"": \""24%\""}",53569,1,"""Asia""" +2023-05-12,22720,4987,"[\""Phone\""]",602.91,{},257629,1,"""Asia""" +2023-07-31,22721,6857,"[\""Headphones\""]",3066.5,{},170377,0,"""Europe""" +2023-02-10,22722,9957,"[\""Monitor\"", \""Headphones\""]",1935.08,{},70060,1,"""North America""" +2023-01-10,22723,2243,"[\""Laptop\"", \""Tablet\""]",2765.76,"{\"": \""8%\""}",146752,1,"""Africa""" +2024-02-18,22724,1511,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1430.3,{},277191,0,"""Europe""" +2023-10-09,22725,1970,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2059.44,{},33036,0,"""North America""" +2023-10-16,22726,5640,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2434.4,{},69100,0,"""North America""" +2023-03-06,22727,7435,"[\""Tablet\"", \""Wireless Mouse\""]",2073.02,{},49123,0,"""Africa""" +2023-09-17,22728,1288,"[\""Phone\"", \""Wireless Mouse\""]",1133.67,{},220802,1,"""Africa""" +2023-08-06,22729,8765,"[\""Headphones\""]",3373.47,"{\""loyalty\"": \""19%\""}",53445,1,"""Asia""" +2024-11-17,22730,9646,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3748.46,{},83704,0,"""Europe""" +2023-12-26,22731,1772,"[\""Headphones\"", \""Laptop\""]",4921.5,"{\""promo\"": \""27%\""}",260256,0,"""Asia""" +2024-08-05,22732,3053,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",340.52,"{\""loyalty\"": \""17%\""}",176532,0,"""Asia""" +2024-05-08,22733,9135,"[\""Charger\"", \""Tablet\""]",4044.69,{},56260,1,"""Asia""" +2024-01-26,22734,7428,"[\""Charger\"", \""Tablet\""]",715.53,"{\"": \""10%\""}",132238,0,"""Europe""" +2024-10-08,22735,1845,"[\""Laptop\""]",3018.9,{},53509,0,"""Asia""" +2024-11-03,22736,4342,"[\""Keyboard\"", \""Monitor\""]",1743.96,{},6445,1,"""North America""" +2023-10-19,22737,5826,"[\""Tablet\""]",1280.93,{},196061,0,"""Europe""" +2024-05-31,22738,364,"[\""Laptop\""]",2651.17,"{\""promo\"": \""13%\""}",180640,0,"""North America""" +2024-04-28,22739,2796,"[\""Wireless Mouse\"", \""Phone\""]",469.8,{},165437,0,"""Europe""" +2024-04-26,22740,5044,"[\""Headphones\"", \""Charger\""]",1835.46,"{\""seasonal\"": \""11%\""}",243842,1,"""North America""" +2023-07-25,22741,4567,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1382.0,"{\""seasonal\"": \""8%\""}",207056,1,"""South America""" +2023-06-01,22742,1623,"[\""Charger\""]",2246.3,{},205601,1,"""South America""" +2023-09-16,22743,2558,"[\""Headphones\"", \""Phone\""]",2250.74,{},132441,1,"""Asia""" +2024-06-15,22744,4287,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2460.86,"{\""seasonal\"": \""9%\""}",123360,1,"""Europe""" +2023-05-18,22745,3086,"[\""Headphones\""]",2485.6,{},84457,1,"""Africa""" +2024-12-18,22746,1363,"[\""Headphones\""]",76.11,"{\""promo\"": \""11%\""}",113892,1,"""Asia""" +2023-05-03,22747,3346,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3328.85,{},241242,1,"""Europe""" +2023-04-27,22748,4333,"[\""Tablet\"", \""Phone\""]",2191.89,"{\"": \""13%\""}",186725,1,"""Africa""" +2023-04-30,22749,1477,"[\""Wireless Mouse\"", \""Tablet\""]",4008.81,{},164288,1,"""South America""" +2024-02-01,22750,5236,"[\""Keyboard\""]",3454.35,"{\""seasonal\"": \""13%\""}",54562,1,"""Europe""" +2024-05-11,22751,4550,"[\""Tablet\""]",487.79,"{\""promo\"": \""8%\""}",205824,0,"""South America""" +2023-11-17,22752,4460,"[\""Wireless Mouse\"", \""Monitor\""]",3868.95,{},166761,0,"""Africa""" +2023-09-24,22753,4944,"[\""Phone\""]",3180.28,{},24306,0,"""North America""" +2023-08-04,22754,6739,"[\""Monitor\"", \""Headphones\""]",1649.64,"{\""seasonal\"": \""5%\""}",228144,1,"""North America""" +2023-10-24,22755,1489,"[\""Laptop\"", \""Headphones\""]",648.7,{},150472,1,"""South America""" +2024-11-20,22756,7188,"[\""Monitor\""]",4976.63,"{\"": \""28%\""}",219950,0,"""North America""" +2023-08-11,22757,714,"[\""Wireless Mouse\"", \""Monitor\""]",4447.9,{},87337,0,"""Europe""" +2023-12-04,22758,5605,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1605.06,{},27946,1,"""Europe""" +2024-11-01,22759,8093,"[\""Charger\"", \""Tablet\""]",294.27,{},259106,0,"""South America""" +2024-11-22,22760,7370,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3517.47,"{\""seasonal\"": \""15%\""}",105226,0,"""Asia""" +2023-03-10,22761,1418,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3572.96,{},127566,0,"""Africa""" +2023-07-20,22762,2928,"[\""Keyboard\"", \""Tablet\""]",2008.67,{},156012,1,"""Europe""" +2024-12-15,22763,2624,"[\""Monitor\"", \""Tablet\""]",4261.04,{},138806,0,"""Asia""" +2023-05-25,22764,6260,"[\""Laptop\"", \""Tablet\""]",3237.97,"{\""loyalty\"": \""8%\""}",159150,0,"""Africa""" +2023-06-19,22765,2382,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4566.5,"{\""promo\"": \""22%\""}",138159,0,"""North America""" +2023-05-16,22766,3320,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1370.37,"{\""seasonal\"": \""6%\""}",236295,1,"""North America""" +2023-07-28,22767,5895,"[\""Laptop\""]",2704.26,"{\""loyalty\"": \""6%\""}",275676,0,"""Europe""" +2023-01-13,22768,322,"[\""Laptop\"", \""Keyboard\""]",2749.8,"{\""seasonal\"": \""30%\""}",172957,0,"""North America""" +2023-10-30,22769,8118,"[\""Headphones\""]",1986.02,"{\""loyalty\"": \""8%\""}",272013,0,"""Africa""" +2023-05-09,22770,8810,"[\""Headphones\""]",3965.39,"{\""seasonal\"": \""27%\""}",6107,1,"""Africa""" +2024-01-01,22771,5527,"[\""Phone\""]",3596.69,{},152592,0,"""Africa""" +2024-10-02,22772,4841,"[\""Tablet\""]",704.62,"{\""seasonal\"": \""30%\""}",204050,0,"""South America""" +2023-01-31,22773,6242,"[\""Keyboard\""]",1215.71,"{\""promo\"": \""12%\""}",280984,1,"""Europe""" +2024-05-13,22774,816,"[\""Charger\"", \""Laptop\""]",2088.63,"{\""seasonal\"": \""26%\""}",234225,0,"""Africa""" +2023-09-22,22775,9499,"[\""Monitor\"", \""Headphones\""]",137.71,"{\""seasonal\"": \""6%\""}",46283,1,"""North America""" +2023-09-26,22776,1762,"[\""Keyboard\""]",454.92,"{\""loyalty\"": \""18%\""}",284400,1,"""South America""" +2023-03-11,22777,492,"[\""Headphones\""]",3497.63,"{\""seasonal\"": \""28%\""}",244844,1,"""South America""" +2023-08-06,22778,6050,"[\""Tablet\"", \""Wireless Mouse\""]",3256.95,"{\""seasonal\"": \""25%\""}",296436,1,"""Asia""" +2024-06-04,22779,9689,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3303.34,"{\""seasonal\"": \""19%\""}",251150,0,"""Asia""" +2023-04-16,22780,226,"[\""Keyboard\""]",350.71,"{\""loyalty\"": \""14%\""}",1042,1,"""Europe""" +2023-09-30,22781,3542,"[\""Headphones\"", \""Tablet\""]",4000.49,"{\"": \""25%\""}",264086,0,"""North America""" +2024-11-13,22782,9894,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3361.39,"{\""loyalty\"": \""15%\""}",264543,0,"""North America""" +2023-08-19,22783,6945,"[\""Headphones\""]",3044.03,"{\""seasonal\"": \""25%\""}",96319,0,"""Europe""" +2023-07-09,22784,2108,"[\""Headphones\""]",4655.18,{},75204,0,"""Europe""" +2023-09-05,22785,3840,"[\""Headphones\""]",3209.36,"{\""seasonal\"": \""23%\""}",243619,0,"""Asia""" +2023-09-30,22786,6563,"[\""Headphones\"", \""Tablet\""]",2732.81,"{\""loyalty\"": \""23%\""}",259149,1,"""South America""" +2024-04-14,22787,8890,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1525.3,{},72023,0,"""Asia""" +2024-10-17,22788,3185,"[\""Tablet\""]",421.35,"{\"": \""8%\""}",188141,1,"""North America""" +2023-11-30,22789,9889,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",134.73,"{\""seasonal\"": \""17%\""}",192427,0,"""South America""" +2024-09-19,22790,8809,"[\""Monitor\""]",2322.12,"{\""seasonal\"": \""5%\""}",132821,1,"""North America""" +2023-06-18,22791,5926,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3746.06,"{\""loyalty\"": \""16%\""}",32928,1,"""North America""" +2023-09-04,22792,9308,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",493.31,{},292998,1,"""Africa""" +2023-08-02,22793,9793,"[\""Charger\""]",2024.82,{},207938,1,"""Asia""" +2024-12-12,22794,8743,"[\""Monitor\""]",2842.65,"{\""seasonal\"": \""21%\""}",139092,0,"""Asia""" +2024-05-03,22795,1002,"[\""Headphones\""]",2875.36,{},270350,1,"""Europe""" +2024-12-04,22796,7166,"[\""Charger\"", \""Tablet\""]",3495.79,"{\""loyalty\"": \""29%\""}",173678,1,"""South America""" +2024-12-15,22797,7745,"[\""Charger\""]",657.47,"{\""loyalty\"": \""6%\""}",87833,1,"""Europe""" +2023-01-08,22798,566,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1730.81,"{\""promo\"": \""8%\""}",210136,1,"""Asia""" +2024-01-01,22799,4961,"[\""Wireless Mouse\"", \""Monitor\""]",4055.36,{},207928,1,"""South America""" +2023-03-12,22800,6896,"[\""Charger\"", \""Wireless Mouse\""]",1830.22,{},262293,0,"""Asia""" +2024-02-04,22801,1334,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2944.28,"{\""promo\"": \""27%\""}",71317,0,"""Asia""" +2023-01-15,22802,6698,"[\""Tablet\""]",1601.98,{},138050,1,"""Africa""" +2023-01-09,22803,246,"[\""Phone\"", \""Monitor\""]",1457.37,{},54749,0,"""Africa""" +2023-12-03,22804,1988,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",791.09,"{\""loyalty\"": \""14%\""}",33858,1,"""Africa""" +2024-03-14,22805,8729,"[\""Laptop\"", \""Monitor\""]",683.11,"{\""seasonal\"": \""26%\""}",216454,0,"""Africa""" +2024-03-14,22806,2073,"[\""Tablet\""]",707.53,"{\""seasonal\"": \""20%\""}",296476,0,"""North America""" +2023-06-28,22807,1855,"[\""Keyboard\"", \""Charger\""]",4554.51,"{\""promo\"": \""8%\""}",80948,0,"""Africa""" +2023-07-26,22808,1122,"[\""Monitor\"", \""Headphones\""]",4722.91,{},43089,0,"""North America""" +2024-08-21,22809,3330,"[\""Laptop\""]",1385.57,"{\""seasonal\"": \""20%\""}",169513,1,"""Africa""" +2024-10-13,22810,9099,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3934.02,"{\""seasonal\"": \""5%\""}",244833,0,"""Europe""" +2023-05-17,22811,2210,"[\""Tablet\"", \""Charger\""]",3873.77,{},250037,0,"""Africa""" +2024-04-24,22812,999,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",208.51,"{\""promo\"": \""5%\""}",153745,1,"""Europe""" +2023-08-21,22813,3839,"[\""Monitor\"", \""Headphones\""]",2851.85,"{\""promo\"": \""11%\""}",207033,1,"""North America""" +2023-12-07,22814,6673,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",557.71,{},211904,1,"""Europe""" +2023-10-25,22815,8373,"[\""Charger\"", \""Headphones\""]",1317.33,"{\""promo\"": \""29%\""}",149346,0,"""Asia""" +2024-02-04,22816,7848,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",276.37,"{\""seasonal\"": \""25%\""}",141662,1,"""Africa""" +2023-08-22,22817,4919,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4152.77,{},202736,1,"""Africa""" +2023-09-20,22818,2244,"[\""Charger\""]",4094.81,{},93303,1,"""South America""" +2023-06-23,22819,6926,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",800.77,{},165306,0,"""Africa""" +2023-05-22,22820,8500,"[\""Headphones\""]",265.88,{},228929,0,"""North America""" +2023-02-27,22821,9551,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2352.86,"{\""loyalty\"": \""23%\""}",14159,1,"""South America""" +2023-07-02,22822,2430,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4794.64,"{\"": \""7%\""}",7454,0,"""Africa""" +2023-05-20,22823,3303,"[\""Phone\""]",588.88,"{\""promo\"": \""8%\""}",175568,0,"""North America""" +2023-05-24,22824,687,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3817.48,{},35707,1,"""Europe""" +2024-10-26,22825,3133,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",997.84,{},15678,0,"""Africa""" +2023-10-10,22826,5066,"[\""Wireless Mouse\"", \""Phone\""]",302.63,"{\""seasonal\"": \""30%\""}",123584,0,"""Europe""" +2024-09-15,22827,7095,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3981.44,{},190982,0,"""Europe""" +2023-10-29,22828,5047,"[\""Tablet\"", \""Laptop\""]",1340.77,"{\""loyalty\"": \""20%\""}",135687,0,"""Europe""" +2024-03-11,22829,1245,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3346.38,{},23246,1,"""South America""" +2023-05-12,22830,3297,"[\""Wireless Mouse\""]",3632.1,"{\""promo\"": \""22%\""}",9426,0,"""South America""" +2024-12-04,22831,2782,"[\""Charger\"", \""Keyboard\""]",4097.22,"{\""seasonal\"": \""12%\""}",230531,0,"""North America""" +2024-07-15,22832,3592,"[\""Tablet\"", \""Wireless Mouse\""]",3131.23,"{\""loyalty\"": \""11%\""}",206796,1,"""Asia""" +2024-02-12,22833,1738,"[\""Phone\""]",4034.14,{},116333,1,"""South America""" +2024-01-31,22834,4277,"[\""Laptop\"", \""Headphones\""]",3116.54,"{\""seasonal\"": \""29%\""}",26831,0,"""South America""" +2023-08-08,22835,4389,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2438.34,{},102845,1,"""South America""" +2023-10-13,22836,8295,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2679.05,"{\"": \""24%\""}",88092,0,"""Europe""" +2023-09-26,22837,9013,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4548.84,{},192588,1,"""Europe""" +2024-06-05,22838,7716,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4758.06,{},195537,0,"""Africa""" +2023-06-18,22839,57,"[\""Charger\""]",3212.55,"{\"": \""12%\""}",221530,1,"""North America""" +2023-07-01,22840,785,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4600.22,"{\"": \""16%\""}",56548,1,"""Africa""" +2023-05-20,22841,7455,"[\""Keyboard\""]",2526.24,"{\""loyalty\"": \""10%\""}",105894,0,"""Europe""" +2024-09-03,22842,4630,"[\""Tablet\"", \""Phone\""]",4607.65,{},188127,0,"""Africa""" +2024-09-13,22843,4395,"[\""Monitor\"", \""Charger\""]",4223.8,"{\""loyalty\"": \""16%\""}",260933,0,"""Asia""" +2023-09-15,22844,8192,"[\""Charger\""]",4396.49,{},136081,0,"""Asia""" +2023-09-04,22845,5551,"[\""Monitor\""]",1213.33,"{\"": \""11%\""}",49673,1,"""Europe""" +2023-02-15,22846,3163,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2688.55,"{\"": \""20%\""}",192416,1,"""Africa""" +2023-02-17,22847,6370,"[\""Headphones\""]",1026.88,"{\"": \""28%\""}",72210,1,"""North America""" +2024-05-08,22848,8584,"[\""Charger\"", \""Keyboard\""]",2233.53,"{\"": \""13%\""}",148213,1,"""Europe""" +2024-12-30,22849,7345,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",873.76,{},165450,0,"""Africa""" +2024-10-25,22850,6205,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1439.41,"{\"": \""19%\""}",217478,1,"""North America""" +2024-06-02,22851,8809,"[\""Wireless Mouse\"", \""Headphones\""]",1800.52,{},248352,0,"""Asia""" +2024-11-07,22852,9663,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4214.48,{},292836,0,"""Asia""" +2024-05-10,22853,5560,"[\""Charger\""]",4386.68,"{\""loyalty\"": \""5%\""}",174132,1,"""Africa""" +2023-09-17,22854,7808,"[\""Headphones\""]",4408.26,"{\"": \""27%\""}",7758,1,"""South America""" +2023-03-28,22855,3885,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",904.82,{},21386,1,"""South America""" +2024-02-14,22856,1981,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4070.99,"{\""loyalty\"": \""17%\""}",98365,1,"""Europe""" +2023-07-03,22857,2443,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2290.06,{},186898,1,"""South America""" +2023-12-15,22858,305,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4140.02,"{\"": \""16%\""}",186995,0,"""Asia""" +2023-08-31,22859,3916,"[\""Laptop\"", \""Monitor\""]",3169.48,"{\"": \""14%\""}",111696,0,"""South America""" +2024-01-08,22860,4843,"[\""Phone\""]",90.59,{},264053,1,"""Europe""" +2024-10-07,22861,8771,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2285.42,"{\"": \""14%\""}",191827,0,"""North America""" +2023-07-26,22862,9443,"[\""Keyboard\""]",1524.42,"{\"": \""15%\""}",58971,1,"""North America""" +2024-05-17,22863,6025,"[\""Wireless Mouse\""]",3820.17,"{\"": \""9%\""}",87422,1,"""South America""" +2024-10-29,22864,7066,"[\""Wireless Mouse\"", \""Tablet\""]",1624.7,"{\""loyalty\"": \""6%\""}",219415,1,"""Asia""" +2023-07-01,22865,5190,"[\""Charger\""]",2154.44,{},110241,0,"""Asia""" +2023-09-08,22866,3047,"[\""Tablet\"", \""Keyboard\""]",1235.7,"{\""promo\"": \""21%\""}",292639,1,"""Europe""" +2023-03-24,22867,412,"[\""Laptop\"", \""Headphones\""]",507.81,{},80219,1,"""South America""" +2023-02-11,22868,2684,"[\""Wireless Mouse\""]",3525.58,{},97616,0,"""Europe""" +2023-09-11,22869,9046,"[\""Monitor\"", \""Laptop\""]",492.45,{},258068,0,"""Asia""" +2024-12-15,22870,3548,"[\""Tablet\""]",4823.5,{},91905,0,"""Africa""" +2023-07-17,22871,5364,"[\""Monitor\""]",1496.16,{},109310,0,"""Europe""" +2024-05-29,22872,1249,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4631.68,"{\""seasonal\"": \""28%\""}",107623,1,"""Asia""" +2024-05-28,22873,7266,"[\""Tablet\"", \""Charger\""]",2135.05,{},220184,1,"""North America""" +2024-08-11,22874,1023,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2315.56,"{\""loyalty\"": \""16%\""}",60587,0,"""Asia""" +2023-07-19,22875,4931,"[\""Phone\"", \""Laptop\""]",4491.41,{},255846,1,"""Asia""" +2023-07-23,22876,6517,"[\""Wireless Mouse\""]",905.86,"{\""loyalty\"": \""9%\""}",241054,1,"""North America""" +2023-07-28,22877,2729,"[\""Wireless Mouse\""]",1278.58,{},224192,0,"""Africa""" +2024-06-04,22878,2467,"[\""Keyboard\"", \""Phone\""]",2165.42,"{\""promo\"": \""24%\""}",223783,1,"""Africa""" +2024-05-12,22879,5182,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1184.64,{},49224,1,"""South America""" +2023-11-03,22880,2064,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",874.96,{},156090,1,"""South America""" +2023-05-07,22881,9308,"[\""Tablet\""]",2723.66,"{\""promo\"": \""19%\""}",193486,1,"""Africa""" +2023-01-21,22882,9223,"[\""Tablet\"", \""Keyboard\""]",3720.29,{},58087,1,"""Europe""" +2023-05-13,22883,9433,"[\""Charger\"", \""Tablet\""]",4135.72,"{\""seasonal\"": \""13%\""}",66637,1,"""Africa""" +2023-05-08,22884,7461,"[\""Keyboard\""]",3262.12,{},49867,1,"""Asia""" +2024-06-06,22885,512,"[\""Charger\"", \""Keyboard\""]",3634.9,"{\""seasonal\"": \""14%\""}",113151,1,"""Africa""" +2024-09-15,22886,4961,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1148.5,"{\""loyalty\"": \""7%\""}",147812,0,"""South America""" +2023-07-24,22887,9482,"[\""Keyboard\""]",4202.79,"{\""seasonal\"": \""11%\""}",103889,0,"""Europe""" +2023-06-01,22888,7885,"[\""Keyboard\""]",3651.76,{},169099,0,"""North America""" +2024-03-28,22889,1270,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",511.15,"{\""loyalty\"": \""12%\""}",148734,0,"""South America""" +2024-08-23,22890,9329,"[\""Charger\""]",1439.62,{},72503,1,"""North America""" +2023-01-17,22891,7457,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1511.96,{},108650,0,"""Europe""" +2023-02-21,22892,1369,"[\""Headphones\"", \""Phone\""]",2331.62,"{\""seasonal\"": \""15%\""}",50381,0,"""Africa""" +2024-11-10,22893,3692,"[\""Laptop\"", \""Keyboard\""]",667.03,"{\""loyalty\"": \""9%\""}",7396,0,"""Asia""" +2024-03-03,22894,2987,"[\""Headphones\""]",2502.34,{},297356,0,"""North America""" +2024-05-26,22895,2611,"[\""Tablet\""]",3418.08,"{\""seasonal\"": \""18%\""}",289725,1,"""Europe""" +2023-10-04,22896,4143,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1381.23,"{\"": \""17%\""}",257611,0,"""Europe""" +2023-08-27,22897,4348,"[\""Headphones\""]",625.57,{},129894,0,"""South America""" +2024-11-28,22898,5494,"[\""Wireless Mouse\"", \""Headphones\""]",2589.67,{},4840,1,"""North America""" +2024-01-02,22899,3651,"[\""Phone\"", \""Wireless Mouse\""]",4610.24,"{\""loyalty\"": \""10%\""}",297067,0,"""Europe""" +2023-07-17,22900,500,"[\""Phone\"", \""Wireless Mouse\""]",3957.9,{},91612,0,"""North America""" +2023-01-03,22901,6420,"[\""Charger\""]",4074.29,"{\"": \""23%\""}",47052,0,"""South America""" +2023-04-05,22902,7181,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4227.93,{},162490,0,"""Asia""" +2024-10-13,22903,7180,"[\""Laptop\"", \""Phone\""]",3626.57,"{\""seasonal\"": \""11%\""}",92095,1,"""North America""" +2024-07-09,22904,8558,"[\""Phone\""]",1058.98,{},165880,0,"""Africa""" +2024-01-16,22905,5850,"[\""Phone\""]",1219.68,{},178250,0,"""Europe""" +2023-04-25,22906,5135,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",748.29,{},189858,1,"""Asia""" +2024-11-10,22907,8955,"[\""Charger\"", \""Phone\""]",4196.65,"{\""loyalty\"": \""16%\""}",41711,0,"""Asia""" +2023-05-16,22908,9547,"[\""Headphones\"", \""Charger\""]",2724.71,{},43780,1,"""South America""" +2024-12-28,22909,9441,"[\""Monitor\""]",1262.51,"{\""promo\"": \""21%\""}",63056,1,"""Europe""" +2023-12-29,22910,6642,"[\""Headphones\"", \""Charger\""]",4777.13,"{\""promo\"": \""26%\""}",157277,1,"""Africa""" +2024-05-17,22911,1217,"[\""Wireless Mouse\""]",3512.04,{},32185,0,"""North America""" +2023-01-09,22912,9147,"[\""Monitor\""]",612.14,"{\""seasonal\"": \""25%\""}",100808,0,"""Europe""" +2024-12-19,22913,4974,"[\""Headphones\"", \""Tablet\""]",4424.12,{},136731,0,"""Asia""" +2024-01-05,22914,3217,"[\""Headphones\"", \""Keyboard\""]",3379.8,"{\""loyalty\"": \""7%\""}",27887,0,"""Africa""" +2023-05-12,22915,242,"[\""Wireless Mouse\""]",1024.18,"{\"": \""26%\""}",299706,0,"""Europe""" +2023-12-31,22916,4654,"[\""Phone\"", \""Headphones\""]",2006.45,{},30793,1,"""North America""" +2024-01-03,22917,6233,"[\""Headphones\"", \""Wireless Mouse\""]",4132.04,"{\""seasonal\"": \""11%\""}",258899,1,"""South America""" +2023-01-14,22918,5605,"[\""Charger\""]",544.64,{},169755,1,"""Asia""" +2024-05-02,22919,351,"[\""Keyboard\""]",4994.33,"{\""seasonal\"": \""21%\""}",200964,0,"""Europe""" +2023-04-24,22920,6276,"[\""Monitor\"", \""Charger\""]",3544.72,{},190974,0,"""Africa""" +2024-11-28,22921,9773,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",114.44,{},284884,1,"""Africa""" +2024-08-22,22922,1142,"[\""Laptop\""]",3622.56,{},222581,0,"""Asia""" +2024-11-13,22923,3892,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2836.59,"{\""promo\"": \""27%\""}",35708,1,"""North America""" +2024-03-20,22924,63,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3256.64,"{\""loyalty\"": \""6%\""}",90567,0,"""North America""" +2023-02-18,22925,5262,"[\""Monitor\""]",2223.93,"{\""loyalty\"": \""15%\""}",37368,1,"""Asia""" +2024-07-29,22926,8592,"[\""Keyboard\""]",170.5,{},180971,1,"""Africa""" +2023-07-27,22927,5863,"[\""Charger\""]",3748.82,{},289174,0,"""South America""" +2023-12-11,22928,2015,"[\""Headphones\"", \""Wireless Mouse\""]",3766.06,"{\""promo\"": \""14%\""}",189850,1,"""South America""" +2024-11-28,22929,9553,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4555.41,{},89222,1,"""Europe""" +2024-02-02,22930,2424,"[\""Tablet\""]",640.68,{},284775,0,"""North America""" +2023-03-23,22931,893,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4941.31,{},110290,0,"""North America""" +2024-08-27,22932,5457,"[\""Charger\"", \""Phone\""]",1210.88,{},96041,1,"""South America""" +2023-12-24,22933,6883,"[\""Wireless Mouse\""]",2887.78,{},278633,0,"""North America""" +2024-10-19,22934,2239,"[\""Laptop\"", \""Wireless Mouse\""]",807.71,"{\"": \""30%\""}",263161,0,"""Europe""" +2023-08-27,22935,9524,"[\""Charger\"", \""Keyboard\""]",4837.87,"{\""promo\"": \""23%\""}",158487,0,"""South America""" +2023-11-08,22936,6426,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3247.85,{},10671,0,"""Africa""" +2024-11-03,22937,9844,"[\""Wireless Mouse\""]",697.54,"{\""promo\"": \""6%\""}",286663,1,"""Europe""" +2023-08-15,22938,5329,"[\""Headphones\""]",3431.67,{},276035,0,"""Africa""" +2024-06-20,22939,5312,"[\""Monitor\""]",2651.01,{},285392,0,"""Europe""" +2024-08-06,22940,2886,"[\""Laptop\""]",4032.21,"{\""seasonal\"": \""8%\""}",254968,1,"""Africa""" +2023-09-12,22941,161,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4675.24,"{\""loyalty\"": \""22%\""}",210625,0,"""Europe""" +2024-12-03,22942,7455,"[\""Monitor\"", \""Headphones\""]",1340.11,{},1048,0,"""Africa""" +2024-01-23,22943,2265,"[\""Keyboard\""]",2405.59,"{\""promo\"": \""11%\""}",26171,1,"""South America""" +2024-10-16,22944,4197,"[\""Wireless Mouse\""]",1677.48,"{\""seasonal\"": \""18%\""}",210741,0,"""Europe""" +2023-11-23,22945,7800,"[\""Phone\"", \""Keyboard\""]",3280.45,{},205830,0,"""Europe""" +2024-12-22,22946,8230,"[\""Charger\"", \""Wireless Mouse\""]",3466.74,{},104683,1,"""North America""" +2023-07-28,22947,2543,"[\""Monitor\""]",2445.7,"{\""loyalty\"": \""14%\""}",195444,0,"""North America""" +2024-04-14,22948,4284,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",371.16,{},57837,1,"""North America""" +2024-04-16,22949,2581,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2475.33,"{\"": \""30%\""}",99859,1,"""Asia""" +2023-12-15,22950,8715,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2123.01,{},105074,1,"""Asia""" +2024-03-02,22951,9255,"[\""Headphones\"", \""Monitor\""]",2257.47,"{\""seasonal\"": \""24%\""}",214850,0,"""Asia""" +2024-05-15,22952,2332,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1881.19,{},6012,0,"""North America""" +2024-06-26,22953,8329,"[\""Phone\""]",4571.21,"{\"": \""11%\""}",16749,1,"""Africa""" +2023-03-07,22954,4147,"[\""Monitor\"", \""Charger\""]",2828.89,"{\"": \""12%\""}",43996,0,"""North America""" +2023-01-08,22955,2558,"[\""Wireless Mouse\""]",1015.89,"{\""loyalty\"": \""13%\""}",230604,1,"""North America""" +2023-10-09,22956,1087,"[\""Tablet\""]",2835.24,{},259953,0,"""Africa""" +2023-04-21,22957,2060,"[\""Keyboard\"", \""Wireless Mouse\""]",350.28,{},79865,1,"""Africa""" +2024-11-05,22958,4847,"[\""Phone\"", \""Tablet\""]",1988.48,{},141574,0,"""Europe""" +2024-11-19,22959,933,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1746.13,{},98172,0,"""Europe""" +2023-11-06,22960,1234,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3364.83,"{\""promo\"": \""14%\""}",157221,1,"""North America""" +2024-03-22,22961,5712,"[\""Phone\""]",480.72,"{\""loyalty\"": \""16%\""}",266451,0,"""Europe""" +2023-03-26,22962,833,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3746.75,"{\""promo\"": \""14%\""}",270062,0,"""North America""" +2023-08-15,22963,4463,"[\""Headphones\"", \""Wireless Mouse\""]",4319.61,"{\""loyalty\"": \""8%\""}",270853,0,"""Asia""" +2023-04-20,22964,8063,"[\""Monitor\"", \""Phone\""]",4875.07,"{\"": \""22%\""}",279299,0,"""Europe""" +2024-01-23,22965,6604,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",539.24,"{\""seasonal\"": \""6%\""}",128414,0,"""South America""" +2023-03-18,22966,8968,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",722.52,{},61376,1,"""Asia""" +2023-04-23,22967,2963,"[\""Phone\""]",3338.23,"{\""seasonal\"": \""19%\""}",49648,1,"""South America""" +2024-04-02,22968,3546,"[\""Wireless Mouse\""]",1443.09,{},150952,1,"""North America""" +2024-03-14,22969,5168,"[\""Tablet\"", \""Wireless Mouse\""]",730.6,{},66323,0,"""South America""" +2024-08-09,22970,3499,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4277.26,"{\""loyalty\"": \""30%\""}",277074,1,"""South America""" +2024-07-28,22971,5188,"[\""Headphones\"", \""Laptop\""]",3177.16,{},38066,1,"""Africa""" +2024-09-11,22972,8343,"[\""Monitor\""]",4402.01,"{\"": \""21%\""}",132390,1,"""South America""" +2023-08-26,22973,246,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1192.71,{},257159,0,"""North America""" +2023-02-19,22974,6207,"[\""Charger\"", \""Laptop\""]",3421.1,"{\""loyalty\"": \""30%\""}",219077,1,"""Asia""" +2024-01-28,22975,62,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1419.59,{},12655,1,"""Europe""" +2024-07-18,22976,4452,"[\""Laptop\"", \""Charger\""]",858.92,{},80093,0,"""Europe""" +2023-03-04,22977,3972,"[\""Charger\""]",1906.23,{},212042,1,"""Africa""" +2023-11-23,22978,3655,"[\""Charger\"", \""Wireless Mouse\""]",1633.4,"{\"": \""20%\""}",258378,0,"""Asia""" +2024-07-05,22979,4859,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2155.3,"{\"": \""6%\""}",275138,1,"""Asia""" +2023-12-06,22980,6482,"[\""Headphones\""]",2336.7,"{\"": \""25%\""}",86381,0,"""Europe""" +2023-12-10,22981,5256,"[\""Laptop\""]",1941.56,"{\""loyalty\"": \""29%\""}",269619,1,"""Africa""" +2024-07-18,22982,4806,"[\""Wireless Mouse\"", \""Keyboard\""]",1638.31,{},147787,0,"""Asia""" +2024-03-12,22983,1653,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3061.29,{},215568,0,"""Asia""" +2023-04-28,22984,5380,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4533.34,{},228311,0,"""Asia""" +2023-10-08,22985,2468,"[\""Tablet\"", \""Headphones\""]",4128.43,"{\""loyalty\"": \""27%\""}",76492,0,"""Europe""" +2024-04-02,22986,8617,"[\""Monitor\""]",4481.71,"{\""seasonal\"": \""9%\""}",28193,0,"""Asia""" +2023-12-27,22987,9636,"[\""Keyboard\"", \""Headphones\""]",4576.11,{},263699,0,"""South America""" +2023-02-28,22988,7430,"[\""Charger\""]",4411.22,{},14901,1,"""Africa""" +2024-07-30,22989,4103,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3123.17,"{\""loyalty\"": \""25%\""}",143793,0,"""North America""" +2024-03-28,22990,6578,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2877.3,{},203323,1,"""Africa""" +2023-03-01,22991,4264,"[\""Monitor\"", \""Wireless Mouse\""]",1361.32,{},185073,1,"""Africa""" +2024-06-01,22992,7470,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2749.25,"{\""loyalty\"": \""10%\""}",195175,0,"""Europe""" +2024-06-05,22993,3918,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",300.7,{},162502,0,"""Asia""" +2023-03-26,22994,2036,"[\""Keyboard\""]",3123.95,{},229021,0,"""Africa""" +2024-06-19,22995,6360,"[\""Keyboard\""]",2551.32,{},84729,1,"""Europe""" +2023-11-26,22996,1019,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4750.27,"{\""loyalty\"": \""7%\""}",58036,1,"""North America""" +2024-02-19,22997,6868,"[\""Monitor\""]",2555.99,{},121053,1,"""South America""" +2024-08-10,22998,1817,"[\""Wireless Mouse\""]",4832.41,{},70543,0,"""Africa""" +2024-10-12,22999,5251,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2058.46,{},179955,0,"""Africa""" +2023-04-26,23000,2483,"[\""Tablet\"", \""Phone\""]",878.84,{},108585,1,"""Europe""" +2024-10-24,23001,2096,"[\""Tablet\""]",1823.43,"{\""promo\"": \""9%\""}",144766,1,"""Europe""" +2024-07-04,23002,6730,"[\""Charger\""]",1691.22,"{\""loyalty\"": \""12%\""}",161451,0,"""Asia""" +2024-01-06,23003,3918,"[\""Keyboard\"", \""Monitor\""]",2145.72,{},133982,0,"""North America""" +2023-09-20,23004,8401,"[\""Phone\""]",2164.95,{},212770,1,"""Africa""" +2023-04-11,23005,5850,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",672.99,"{\""promo\"": \""26%\""}",51691,1,"""North America""" +2024-11-07,23006,7728,"[\""Charger\""]",4078.34,{},97240,1,"""Asia""" +2024-09-18,23007,2243,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4443.9,"{\""seasonal\"": \""11%\""}",95622,0,"""Europe""" +2023-08-30,23008,2108,"[\""Laptop\""]",2677.02,"{\"": \""12%\""}",280441,0,"""North America""" +2023-09-20,23009,4096,"[\""Laptop\""]",3112.01,{},207553,0,"""Asia""" +2024-10-13,23010,5240,"[\""Tablet\"", \""Headphones\""]",1894.59,"{\""promo\"": \""29%\""}",223324,0,"""Asia""" +2023-12-10,23011,327,"[\""Charger\""]",1081.73,"{\""promo\"": \""22%\""}",136004,1,"""North America""" +2024-07-20,23012,7575,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4202.11,"{\"": \""11%\""}",203572,0,"""Asia""" +2023-01-27,23013,6742,"[\""Monitor\"", \""Tablet\""]",260.35,"{\"": \""26%\""}",143885,1,"""Africa""" +2023-01-15,23014,8865,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",277.15,"{\""seasonal\"": \""28%\""}",143399,1,"""Africa""" +2023-03-03,23015,4376,"[\""Laptop\"", \""Keyboard\""]",4268.41,"{\""loyalty\"": \""29%\""}",235830,0,"""South America""" +2024-04-11,23016,5588,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4898.26,{},219200,1,"""South America""" +2024-04-21,23017,7277,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2509.91,{},112808,1,"""Asia""" +2024-05-13,23018,5029,"[\""Laptop\""]",1238.52,"{\"": \""25%\""}",162401,0,"""North America""" +2024-05-24,23019,2421,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1607.84,"{\""loyalty\"": \""6%\""}",159400,1,"""Africa""" +2023-05-18,23020,8446,"[\""Tablet\""]",1913.07,{},192423,0,"""Europe""" +2024-01-25,23021,7568,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4151.25,"{\""promo\"": \""13%\""}",179936,0,"""Europe""" +2024-04-14,23022,2525,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",804.37,{},154213,0,"""Asia""" +2024-04-19,23023,8495,"[\""Wireless Mouse\""]",2018.08,{},207885,1,"""North America""" +2023-06-09,23024,389,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",269.62,"{\""seasonal\"": \""5%\""}",94892,1,"""Europe""" +2024-06-22,23025,8009,"[\""Monitor\"", \""Keyboard\""]",2377.24,{},141197,1,"""Europe""" +2023-08-27,23026,6555,"[\""Keyboard\"", \""Laptop\""]",1344.23,{},170499,0,"""South America""" +2024-02-13,23027,7370,"[\""Charger\""]",1406.82,"{\""seasonal\"": \""9%\""}",10327,0,"""Africa""" +2023-04-15,23028,657,"[\""Tablet\""]",785.28,{},29129,0,"""Asia""" +2023-04-25,23029,3941,"[\""Headphones\""]",4858.6,{},125888,1,"""South America""" +2024-06-08,23030,4455,"[\""Keyboard\"", \""Charger\""]",1848.41,{},49472,0,"""South America""" +2024-12-05,23031,8407,"[\""Laptop\""]",4085.3,"{\""seasonal\"": \""6%\""}",22334,0,"""Asia""" +2023-07-22,23032,4735,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4321.48,{},222760,1,"""South America""" +2023-08-06,23033,5049,"[\""Laptop\"", \""Keyboard\""]",1346.0,"{\""promo\"": \""9%\""}",251035,0,"""North America""" +2024-06-12,23034,8429,"[\""Monitor\"", \""Headphones\""]",4606.92,"{\""promo\"": \""9%\""}",271352,1,"""North America""" +2024-08-28,23035,6501,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",345.61,{},242577,0,"""Europe""" +2024-03-29,23036,9498,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3878.64,{},48650,1,"""Africa""" +2023-04-18,23037,9283,"[\""Headphones\""]",1640.57,{},287510,1,"""Africa""" +2024-03-05,23038,6651,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3921.58,"{\""seasonal\"": \""18%\""}",183876,1,"""Asia""" +2023-06-09,23039,1704,"[\""Headphones\""]",2721.8,"{\""loyalty\"": \""8%\""}",41387,1,"""North America""" +2023-12-10,23040,9215,"[\""Wireless Mouse\""]",3163.34,{},216681,1,"""Africa""" +2023-07-04,23041,275,"[\""Charger\"", \""Laptop\""]",3293.45,{},10275,0,"""North America""" +2024-06-30,23042,1903,"[\""Keyboard\"", \""Laptop\""]",4730.99,"{\"": \""15%\""}",249940,1,"""Africa""" +2024-08-19,23043,6141,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3206.53,{},295905,1,"""Asia""" +2023-08-21,23044,7278,"[\""Tablet\"", \""Wireless Mouse\""]",4422.67,"{\""loyalty\"": \""27%\""}",236141,1,"""Europe""" +2024-11-20,23045,5473,"[\""Keyboard\"", \""Monitor\""]",3123.47,"{\""loyalty\"": \""28%\""}",233323,0,"""Asia""" +2023-06-24,23046,5432,"[\""Keyboard\"", \""Charger\""]",1017.65,{},31860,1,"""Africa""" +2024-03-27,23047,773,"[\""Charger\""]",2789.74,"{\""promo\"": \""18%\""}",70717,0,"""South America""" +2024-05-13,23048,8095,"[\""Wireless Mouse\"", \""Monitor\""]",3620.88,"{\"": \""23%\""}",171829,0,"""Europe""" +2024-11-11,23049,7899,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1117.58,"{\""promo\"": \""29%\""}",261168,0,"""Asia""" +2023-10-31,23050,3390,"[\""Laptop\""]",1491.5,{},271376,1,"""South America""" +2023-05-23,23051,9716,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",478.28,{},108524,1,"""Africa""" +2024-11-21,23052,2957,"[\""Keyboard\""]",864.59,"{\""seasonal\"": \""18%\""}",25572,1,"""South America""" +2023-05-12,23053,9859,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4629.11,{},266803,1,"""Europe""" +2024-05-14,23054,6800,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4125.62,"{\""loyalty\"": \""18%\""}",217292,0,"""Africa""" +2023-07-31,23055,1954,"[\""Monitor\""]",255.51,"{\""promo\"": \""10%\""}",189935,0,"""Asia""" +2023-05-19,23056,6212,"[\""Charger\""]",1780.74,{},25334,1,"""North America""" +2023-12-24,23057,9075,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",85.38,"{\""loyalty\"": \""19%\""}",83993,1,"""South America""" +2023-11-20,23058,3896,"[\""Keyboard\""]",2208.07,"{\"": \""9%\""}",68894,1,"""North America""" +2023-06-18,23059,4567,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2694.37,"{\""loyalty\"": \""20%\""}",296719,0,"""North America""" +2024-10-07,23060,1392,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2342.14,"{\""loyalty\"": \""18%\""}",285693,1,"""Asia""" +2023-07-10,23061,4158,"[\""Wireless Mouse\"", \""Headphones\""]",3274.13,{},280653,0,"""South America""" +2024-07-18,23062,6564,"[\""Monitor\"", \""Tablet\""]",639.13,{},156473,0,"""Europe""" +2023-10-12,23063,4371,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1605.19,"{\""seasonal\"": \""16%\""}",298564,1,"""Asia""" +2023-08-22,23064,7635,"[\""Tablet\""]",1265.03,"{\"": \""19%\""}",155089,1,"""Europe""" +2023-02-22,23065,2179,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",107.92,{},79636,1,"""Asia""" +2023-02-10,23066,6838,"[\""Wireless Mouse\""]",4837.24,{},229261,1,"""South America""" +2023-07-29,23067,5610,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2920.4,{},51399,0,"""Africa""" +2023-07-16,23068,7003,"[\""Headphones\""]",2187.51,{},122176,0,"""Europe""" +2024-04-18,23069,3561,"[\""Charger\"", \""Keyboard\""]",1323.38,"{\"": \""16%\""}",9362,0,"""North America""" +2023-02-24,23070,7324,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3738.83,{},270636,1,"""South America""" +2024-06-30,23071,2548,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1544.94,"{\""seasonal\"": \""8%\""}",194187,1,"""South America""" +2024-05-22,23072,9969,"[\""Laptop\""]",2694.47,"{\""seasonal\"": \""14%\""}",63752,1,"""North America""" +2023-03-15,23073,3139,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1538.41,{},48965,0,"""Africa""" +2023-08-27,23074,1272,"[\""Monitor\""]",3065.96,{},170418,0,"""South America""" +2024-06-14,23075,6331,"[\""Keyboard\"", \""Monitor\""]",4684.0,"{\""loyalty\"": \""11%\""}",225851,0,"""South America""" +2023-02-17,23076,5094,"[\""Wireless Mouse\"", \""Keyboard\""]",4312.65,"{\""loyalty\"": \""24%\""}",134899,1,"""Asia""" +2024-11-05,23077,2508,"[\""Charger\"", \""Wireless Mouse\""]",1288.49,{},141028,1,"""South America""" +2023-08-21,23078,8121,"[\""Phone\""]",2301.65,{},216301,0,"""North America""" +2023-02-03,23079,2605,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2024.73,"{\""seasonal\"": \""10%\""}",63239,1,"""Asia""" +2024-11-05,23080,2998,"[\""Phone\""]",872.06,{},179431,1,"""Asia""" +2023-11-04,23081,33,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",334.0,"{\""promo\"": \""19%\""}",222021,0,"""Europe""" +2024-05-28,23082,4056,"[\""Charger\"", \""Headphones\""]",3321.15,{},158240,1,"""Asia""" +2024-01-25,23083,4332,"[\""Tablet\""]",3517.6,{},63449,1,"""North America""" +2024-04-27,23084,415,"[\""Headphones\""]",3399.89,"{\"": \""26%\""}",94474,1,"""North America""" +2023-07-31,23085,8825,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2599.07,"{\""promo\"": \""18%\""}",204806,0,"""Asia""" +2023-06-28,23086,9829,"[\""Monitor\""]",2259.08,"{\""seasonal\"": \""29%\""}",162534,1,"""Europe""" +2023-06-24,23087,1570,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2140.33,"{\""loyalty\"": \""26%\""}",150710,0,"""North America""" +2023-04-29,23088,3326,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3105.03,{},80887,1,"""Africa""" +2023-01-22,23089,7611,"[\""Keyboard\""]",2802.52,{},67990,1,"""Europe""" +2023-05-16,23090,5523,"[\""Tablet\""]",3108.31,"{\"": \""25%\""}",243502,0,"""North America""" +2024-06-11,23091,8603,"[\""Keyboard\"", \""Phone\""]",2114.83,{},293384,1,"""North America""" +2023-11-26,23092,1926,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1608.08,"{\""loyalty\"": \""5%\""}",213243,1,"""South America""" +2024-10-27,23093,6030,"[\""Monitor\"", \""Laptop\""]",1325.27,{},61802,0,"""Asia""" +2023-07-08,23094,5101,"[\""Wireless Mouse\""]",2109.07,{},254844,1,"""Asia""" +2023-04-13,23095,3389,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4852.95,{},59031,0,"""Europe""" +2023-10-11,23096,4609,"[\""Phone\"", \""Wireless Mouse\""]",167.83,"{\""promo\"": \""25%\""}",100734,1,"""South America""" +2024-03-03,23097,8211,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1277.96,{},166984,0,"""Asia""" +2024-01-24,23098,7790,"[\""Charger\""]",1146.26,{},23018,0,"""North America""" +2024-06-15,23099,4344,"[\""Keyboard\"", \""Laptop\""]",1085.4,"{\""seasonal\"": \""29%\""}",88341,1,"""Europe""" +2024-04-05,23100,1433,"[\""Headphones\"", \""Laptop\""]",4672.94,{},29295,1,"""Africa""" +2024-01-16,23101,310,"[\""Wireless Mouse\"", \""Phone\""]",3833.68,"{\"": \""9%\""}",169489,0,"""Asia""" +2024-09-18,23102,3583,"[\""Wireless Mouse\""]",2125.72,"{\""promo\"": \""13%\""}",34322,1,"""Europe""" +2024-09-08,23103,8110,"[\""Laptop\""]",3739.75,{},127107,1,"""Europe""" +2023-02-18,23104,2020,"[\""Headphones\"", \""Wireless Mouse\""]",3123.91,"{\""promo\"": \""20%\""}",42084,1,"""Europe""" +2023-12-13,23105,5420,"[\""Laptop\"", \""Headphones\""]",3153.43,{},41708,0,"""North America""" +2024-04-21,23106,64,"[\""Monitor\"", \""Wireless Mouse\""]",196.55,"{\""seasonal\"": \""23%\""}",186939,1,"""South America""" +2023-11-05,23107,9667,"[\""Monitor\""]",674.31,"{\"": \""16%\""}",67945,0,"""Africa""" +2023-05-21,23108,8287,"[\""Charger\""]",2962.59,"{\"": \""25%\""}",71857,1,"""Asia""" +2024-02-13,23109,4368,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4013.0,"{\""promo\"": \""12%\""}",49963,1,"""Africa""" +2023-06-01,23110,9465,"[\""Charger\""]",4717.21,{},256464,1,"""Asia""" +2024-12-29,23111,3968,"[\""Monitor\""]",502.3,{},76046,1,"""South America""" +2024-03-07,23112,8887,"[\""Phone\"", \""Keyboard\""]",1973.04,{},192201,1,"""South America""" +2023-12-13,23113,5004,"[\""Headphones\""]",647.71,"{\""loyalty\"": \""20%\""}",164012,1,"""Africa""" +2023-05-02,23114,2684,"[\""Charger\"", \""Wireless Mouse\""]",1845.48,"{\""loyalty\"": \""25%\""}",130460,0,"""South America""" +2023-08-20,23115,9944,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",766.18,{},68491,0,"""Europe""" +2023-02-07,23116,7994,"[\""Charger\""]",4699.84,"{\""promo\"": \""17%\""}",245183,0,"""Asia""" +2023-10-27,23117,2736,"[\""Monitor\""]",2033.75,{},263973,0,"""Europe""" +2024-09-10,23118,745,"[\""Monitor\"", \""Charger\""]",577.33,"{\"": \""8%\""}",175245,1,"""South America""" +2024-03-07,23119,307,"[\""Phone\""]",4793.26,{},66206,0,"""North America""" +2024-11-23,23120,4888,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2055.94,{},117344,1,"""North America""" +2024-11-26,23121,6707,"[\""Wireless Mouse\"", \""Headphones\""]",2711.13,"{\""seasonal\"": \""22%\""}",219373,1,"""North America""" +2023-06-21,23122,2794,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3212.43,"{\""loyalty\"": \""18%\""}",217320,0,"""North America""" +2024-07-10,23123,8241,"[\""Wireless Mouse\""]",859.42,{},228926,1,"""South America""" +2024-02-06,23124,4090,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2169.0,{},127873,1,"""North America""" +2023-10-23,23125,5949,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2400.58,"{\""loyalty\"": \""13%\""}",200996,0,"""Africa""" +2024-11-03,23126,6897,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3369.1,"{\""promo\"": \""20%\""}",93258,0,"""Africa""" +2024-08-03,23127,4746,"[\""Keyboard\""]",4299.41,{},221191,0,"""Asia""" +2024-09-02,23128,3545,"[\""Monitor\"", \""Wireless Mouse\""]",1574.77,{},252747,1,"""Europe""" +2023-11-14,23129,8942,"[\""Laptop\"", \""Keyboard\""]",4708.01,{},83447,1,"""North America""" +2023-05-28,23130,8956,"[\""Laptop\""]",792.11,"{\""seasonal\"": \""24%\""}",277676,1,"""Africa""" +2023-08-15,23131,7208,"[\""Monitor\"", \""Charger\""]",2536.56,"{\""seasonal\"": \""28%\""}",246530,1,"""Europe""" +2024-03-17,23132,8165,"[\""Keyboard\""]",3994.94,{},37674,0,"""South America""" +2023-10-03,23133,2447,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",93.36,"{\""seasonal\"": \""25%\""}",296437,0,"""Africa""" +2023-12-31,23134,410,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1956.78,"{\"": \""20%\""}",121306,1,"""South America""" +2023-12-22,23135,973,"[\""Phone\"", \""Charger\""]",1767.85,{},195079,1,"""Asia""" +2024-06-01,23136,4039,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3524.2,{},245001,0,"""Europe""" +2024-04-20,23137,8906,"[\""Charger\"", \""Phone\""]",638.97,{},207080,1,"""South America""" +2023-07-07,23138,5410,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",218.69,"{\""promo\"": \""21%\""}",60977,0,"""Europe""" +2023-08-02,23139,1920,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1000.85,"{\""seasonal\"": \""18%\""}",84964,0,"""Asia""" +2023-11-07,23140,7048,"[\""Laptop\"", \""Phone\""]",2899.06,{},175518,0,"""Africa""" +2024-05-11,23141,513,"[\""Headphones\"", \""Laptop\""]",1112.26,"{\""loyalty\"": \""7%\""}",113252,0,"""Europe""" +2024-07-30,23142,4001,"[\""Keyboard\""]",3832.86,"{\""promo\"": \""14%\""}",59155,1,"""Africa""" +2024-03-05,23143,5363,"[\""Keyboard\"", \""Tablet\""]",891.72,"{\""seasonal\"": \""30%\""}",51257,1,"""South America""" +2023-06-04,23144,3147,"[\""Laptop\"", \""Wireless Mouse\""]",1244.22,{},8028,0,"""Europe""" +2024-04-29,23145,4028,"[\""Keyboard\""]",4981.77,{},201638,0,"""North America""" +2024-02-21,23146,5125,"[\""Headphones\""]",4317.96,{},238186,1,"""Asia""" +2024-04-30,23147,8383,"[\""Phone\""]",184.75,"{\""promo\"": \""8%\""}",267079,0,"""South America""" +2023-05-21,23148,8634,"[\""Tablet\""]",2860.85,"{\""seasonal\"": \""18%\""}",230810,1,"""Africa""" +2024-03-23,23149,424,"[\""Monitor\""]",4166.48,"{\""seasonal\"": \""16%\""}",240761,1,"""Asia""" +2024-07-09,23150,7581,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1880.86,{},204897,0,"""Africa""" +2024-09-20,23151,8325,"[\""Headphones\""]",2667.32,{},149664,0,"""Europe""" +2023-04-09,23152,7224,"[\""Monitor\""]",2537.08,"{\""loyalty\"": \""8%\""}",55304,1,"""Europe""" +2024-01-19,23153,1975,"[\""Wireless Mouse\""]",2207.3,"{\""loyalty\"": \""5%\""}",152921,1,"""Europe""" +2023-06-14,23154,6137,"[\""Phone\"", \""Charger\""]",3666.18,{},74661,0,"""Asia""" +2024-03-17,23155,1709,"[\""Phone\"", \""Wireless Mouse\""]",2592.35,{},39081,0,"""Africa""" +2023-06-17,23156,8941,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4237.6,{},201221,0,"""Africa""" +2023-05-09,23157,7433,"[\""Keyboard\"", \""Tablet\""]",68.35,{},152225,0,"""Europe""" +2024-03-30,23158,1374,"[\""Headphones\""]",2128.84,{},194275,1,"""Asia""" +2023-12-21,23159,5628,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2722.3,{},20000,1,"""South America""" +2024-01-04,23160,6079,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1024.22,"{\""seasonal\"": \""16%\""}",170218,0,"""Africa""" +2024-07-30,23161,1940,"[\""Headphones\"", \""Monitor\""]",365.04,{},261680,0,"""Asia""" +2023-01-07,23162,6078,"[\""Charger\"", \""Monitor\""]",1338.14,"{\"": \""30%\""}",212223,1,"""North America""" +2024-11-29,23163,1493,"[\""Charger\""]",2128.91,{},164607,1,"""Africa""" +2023-06-12,23164,259,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",218.93,{},150784,0,"""Africa""" +2024-03-14,23165,51,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",345.85,{},146216,1,"""North America""" +2023-08-20,23166,1671,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4240.36,"{\""promo\"": \""17%\""}",168228,1,"""Europe""" +2024-03-23,23167,3350,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",648.84,{},53270,1,"""Africa""" +2023-05-09,23168,2255,"[\""Phone\""]",1647.79,"{\""seasonal\"": \""14%\""}",97934,1,"""Africa""" +2023-07-02,23169,1015,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3951.02,{},235827,1,"""South America""" +2024-08-07,23170,238,"[\""Phone\""]",3523.24,{},168890,1,"""North America""" +2024-11-03,23171,3388,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4091.12,"{\""seasonal\"": \""9%\""}",210583,1,"""Africa""" +2023-11-18,23172,1880,"[\""Monitor\"", \""Headphones\""]",3359.92,{},147203,0,"""Europe""" +2023-10-19,23173,40,"[\""Tablet\""]",2804.26,"{\""seasonal\"": \""29%\""}",157064,0,"""Europe""" +2023-02-14,23174,2679,"[\""Phone\""]",984.36,{},232379,1,"""South America""" +2023-09-20,23175,7662,"[\""Tablet\"", \""Wireless Mouse\""]",1517.91,"{\""loyalty\"": \""21%\""}",196066,0,"""Asia""" +2024-04-18,23176,763,"[\""Wireless Mouse\""]",4346.97,{},290731,0,"""North America""" +2024-09-20,23177,7580,"[\""Headphones\""]",2877.91,{},230629,0,"""Europe""" +2024-03-12,23178,2739,"[\""Tablet\"", \""Charger\""]",1756.35,{},294650,1,"""Africa""" +2023-01-31,23179,6853,"[\""Keyboard\"", \""Charger\""]",4977.05,"{\""promo\"": \""6%\""}",283247,0,"""South America""" +2023-01-17,23180,5076,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3289.42,{},44333,1,"""North America""" +2023-01-15,23181,4724,"[\""Headphones\"", \""Keyboard\""]",294.79,"{\""loyalty\"": \""11%\""}",140386,0,"""South America""" +2023-06-03,23182,8448,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2324.06,"{\""promo\"": \""20%\""}",275462,0,"""Asia""" +2024-10-18,23183,520,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1371.64,"{\""promo\"": \""24%\""}",57670,1,"""North America""" +2023-12-07,23184,6337,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1613.96,{},296156,0,"""Asia""" +2024-01-08,23185,993,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2698.63,{},290735,1,"""Africa""" +2024-06-13,23186,9522,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2842.51,{},128191,0,"""South America""" +2023-07-24,23187,3891,"[\""Tablet\""]",4153.32,"{\""seasonal\"": \""28%\""}",236923,0,"""Asia""" +2023-04-06,23188,6207,"[\""Phone\"", \""Wireless Mouse\""]",3545.85,{},72666,0,"""Asia""" +2023-07-13,23189,1107,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",248.6,"{\"": \""6%\""}",114560,0,"""Europe""" +2024-04-12,23190,8761,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2426.43,"{\""seasonal\"": \""7%\""}",273560,1,"""Europe""" +2023-02-15,23191,3995,"[\""Headphones\"", \""Wireless Mouse\""]",4776.68,{},291442,0,"""Asia""" +2024-02-12,23192,1837,"[\""Phone\"", \""Headphones\""]",4855.77,"{\"": \""28%\""}",189809,1,"""South America""" +2023-12-04,23193,5497,"[\""Charger\"", \""Headphones\""]",4917.52,"{\""loyalty\"": \""28%\""}",114469,1,"""North America""" +2023-03-17,23194,1863,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",696.74,{},76569,0,"""North America""" +2024-09-13,23195,5727,"[\""Laptop\""]",916.37,{},81270,1,"""Asia""" +2023-04-19,23196,9804,"[\""Wireless Mouse\"", \""Tablet\""]",2197.54,"{\""promo\"": \""18%\""}",205622,0,"""South America""" +2023-12-03,23197,7371,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2431.97,{},79779,1,"""South America""" +2024-07-11,23198,3254,"[\""Charger\"", \""Monitor\""]",2102.02,{},272209,0,"""North America""" +2023-09-06,23199,1361,"[\""Wireless Mouse\""]",3992.63,{},215378,0,"""South America""" +2024-02-19,23200,908,"[\""Keyboard\""]",2219.87,"{\""promo\"": \""5%\""}",129737,0,"""Europe""" +2023-01-05,23201,6874,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",904.9,{},30750,0,"""Africa""" +2023-03-11,23202,6698,"[\""Tablet\""]",2847.3,"{\""promo\"": \""7%\""}",59996,0,"""Asia""" +2024-03-29,23203,337,"[\""Keyboard\""]",3046.42,{},118485,1,"""Europe""" +2023-08-31,23204,9883,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4667.21,"{\""seasonal\"": \""11%\""}",205270,1,"""Europe""" +2024-07-02,23205,5773,"[\""Headphones\"", \""Phone\""]",316.23,{},26670,1,"""South America""" +2024-09-20,23206,5691,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2287.14,{},140772,1,"""Europe""" +2024-06-19,23207,9371,"[\""Charger\""]",1867.41,"{\""loyalty\"": \""28%\""}",127560,0,"""Africa""" +2024-08-02,23208,2961,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3025.24,{},231015,0,"""South America""" +2023-01-03,23209,5825,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4126.19,"{\"": \""12%\""}",79032,1,"""North America""" +2024-09-06,23210,5505,"[\""Headphones\""]",966.22,"{\""loyalty\"": \""14%\""}",141478,1,"""Asia""" +2023-09-01,23211,9651,"[\""Keyboard\"", \""Wireless Mouse\""]",198.51,{},87234,1,"""Asia""" +2023-08-24,23212,1343,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3203.96,{},156569,1,"""Africa""" +2023-03-28,23213,9799,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1508.92,"{\""seasonal\"": \""8%\""}",37919,0,"""Asia""" +2023-03-02,23214,7862,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3244.63,"{\""promo\"": \""7%\""}",219342,0,"""Asia""" +2023-10-06,23215,5941,"[\""Wireless Mouse\"", \""Keyboard\""]",106.59,{},231808,1,"""Europe""" +2023-03-23,23216,6404,"[\""Monitor\"", \""Wireless Mouse\""]",3414.83,"{\""loyalty\"": \""19%\""}",101772,0,"""Europe""" +2024-07-25,23217,9216,"[\""Wireless Mouse\""]",1264.27,{},235520,1,"""South America""" +2023-05-17,23218,5166,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1722.21,{},203046,0,"""Europe""" +2023-07-10,23219,7611,"[\""Phone\"", \""Headphones\""]",4862.01,"{\""seasonal\"": \""22%\""}",238719,1,"""Asia""" +2024-06-16,23220,1806,"[\""Headphones\""]",3876.04,"{\""seasonal\"": \""21%\""}",263766,0,"""Asia""" +2024-11-17,23221,4084,"[\""Headphones\""]",3499.11,"{\""loyalty\"": \""12%\""}",212299,0,"""North America""" +2023-02-06,23222,3334,"[\""Wireless Mouse\"", \""Keyboard\""]",1023.79,"{\"": \""10%\""}",70807,1,"""North America""" +2024-03-15,23223,402,"[\""Laptop\""]",2867.47,{},164337,0,"""Europe""" +2024-07-11,23224,6084,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",132.74,"{\""promo\"": \""28%\""}",295400,1,"""Europe""" +2023-05-10,23225,7198,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",423.57,"{\""promo\"": \""25%\""}",19521,1,"""Africa""" +2023-05-12,23226,2248,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",336.82,"{\"": \""12%\""}",249756,0,"""Europe""" +2023-02-15,23227,8988,"[\""Monitor\"", \""Tablet\""]",3335.2,"{\""seasonal\"": \""22%\""}",47061,1,"""North America""" +2023-08-10,23228,5248,"[\""Wireless Mouse\""]",1234.88,"{\""loyalty\"": \""25%\""}",9029,1,"""Africa""" +2023-06-24,23229,4573,"[\""Laptop\"", \""Headphones\""]",3426.32,{},24919,1,"""Africa""" +2024-05-27,23230,8742,"[\""Phone\"", \""Charger\""]",4959.81,{},81389,0,"""Europe""" +2024-05-15,23231,1644,"[\""Monitor\""]",4711.03,"{\""promo\"": \""7%\""}",244390,0,"""South America""" +2023-06-22,23232,2599,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1853.49,{},273770,1,"""North America""" +2023-10-10,23233,280,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2425.38,"{\"": \""14%\""}",75109,1,"""North America""" +2023-12-24,23234,8546,"[\""Monitor\""]",2810.74,"{\"": \""6%\""}",166516,0,"""Africa""" +2024-11-30,23235,5072,"[\""Phone\"", \""Tablet\""]",4108.84,{},65336,1,"""Asia""" +2024-05-19,23236,5694,"[\""Monitor\""]",2298.44,"{\""seasonal\"": \""19%\""}",118952,1,"""Asia""" +2024-06-24,23237,531,"[\""Monitor\""]",1505.66,{},266082,1,"""Africa""" +2024-09-09,23238,8226,"[\""Headphones\"", \""Laptop\""]",2948.42,{},109762,0,"""Asia""" +2023-12-20,23239,8377,"[\""Charger\"", \""Keyboard\""]",721.53,{},197308,1,"""Asia""" +2023-06-28,23240,6113,"[\""Monitor\""]",2727.97,{},217586,0,"""Africa""" +2023-03-23,23241,1535,"[\""Keyboard\"", \""Charger\""]",3640.03,{},90125,1,"""Africa""" +2023-04-17,23242,1220,"[\""Headphones\"", \""Phone\""]",3098.46,{},130730,1,"""Africa""" +2023-06-05,23243,4436,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2172.55,{},126719,1,"""North America""" +2024-03-27,23244,5641,"[\""Monitor\""]",3779.24,{},87978,1,"""Europe""" +2023-06-13,23245,5053,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1982.39,{},277992,1,"""Europe""" +2023-10-19,23246,2200,"[\""Tablet\"", \""Laptop\""]",4158.67,"{\"": \""8%\""}",279602,0,"""South America""" +2024-08-14,23247,6518,"[\""Wireless Mouse\""]",3190.24,"{\""promo\"": \""11%\""}",158516,1,"""Africa""" +2023-10-21,23248,4753,"[\""Charger\""]",4361.15,"{\""seasonal\"": \""30%\""}",124885,1,"""North America""" +2024-08-02,23249,7439,"[\""Monitor\"", \""Wireless Mouse\""]",2175.16,{},137004,1,"""Asia""" +2023-06-09,23250,1511,"[\""Phone\""]",1226.3,{},37367,1,"""South America""" +2023-01-13,23251,4750,"[\""Laptop\""]",323.7,"{\""promo\"": \""20%\""}",209100,0,"""Asia""" +2024-06-16,23252,4313,"[\""Tablet\""]",3950.47,{},125153,1,"""South America""" +2023-06-13,23253,5702,"[\""Tablet\"", \""Laptop\""]",4838.23,"{\""seasonal\"": \""10%\""}",46172,1,"""Europe""" +2023-04-02,23254,9029,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3490.56,{},64706,1,"""North America""" +2024-06-23,23255,4080,"[\""Laptop\"", \""Monitor\""]",355.64,"{\"": \""23%\""}",85735,0,"""Asia""" +2024-04-19,23256,6294,"[\""Tablet\""]",732.02,"{\"": \""24%\""}",220937,1,"""Europe""" +2023-09-08,23257,5119,"[\""Charger\""]",864.81,"{\""loyalty\"": \""7%\""}",251087,1,"""Europe""" +2023-09-28,23258,417,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2865.38,{},11811,0,"""Asia""" +2024-07-01,23259,6366,"[\""Monitor\"", \""Wireless Mouse\""]",427.57,"{\""promo\"": \""19%\""}",235287,1,"""North America""" +2024-11-13,23260,7155,"[\""Charger\"", \""Monitor\""]",2720.71,{},275496,1,"""North America""" +2023-04-05,23261,471,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4028.03,{},184725,1,"""Asia""" +2024-07-09,23262,8900,"[\""Phone\""]",4561.72,{},64261,0,"""Europe""" +2023-08-10,23263,8922,"[\""Laptop\"", \""Tablet\""]",516.57,"{\""seasonal\"": \""11%\""}",40160,0,"""North America""" +2023-05-22,23264,2673,"[\""Laptop\""]",2406.01,{},18087,1,"""Europe""" +2023-01-25,23265,7278,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1733.54,{},136124,1,"""Africa""" +2024-06-13,23266,5384,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1443.94,{},186093,0,"""Europe""" +2023-02-05,23267,9528,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1978.18,{},159985,1,"""South America""" +2024-03-06,23268,7880,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3358.37,"{\"": \""23%\""}",81108,1,"""Europe""" +2024-01-23,23269,3315,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2788.53,{},134711,1,"""Asia""" +2023-07-24,23270,5582,"[\""Charger\"", \""Wireless Mouse\""]",3743.82,"{\"": \""23%\""}",69237,1,"""Europe""" +2023-08-17,23271,4172,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1497.46,{},1732,1,"""South America""" +2023-05-20,23272,1056,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4661.74,"{\""seasonal\"": \""5%\""}",52143,1,"""South America""" +2023-02-12,23273,6052,"[\""Wireless Mouse\""]",787.99,"{\""promo\"": \""18%\""}",208813,0,"""Africa""" +2024-05-18,23274,4941,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1287.56,"{\""promo\"": \""18%\""}",260568,0,"""Africa""" +2024-08-30,23275,3334,"[\""Tablet\"", \""Wireless Mouse\""]",899.68,{},51364,1,"""South America""" +2023-12-29,23276,2434,"[\""Monitor\"", \""Keyboard\""]",3442.21,{},80731,1,"""Asia""" +2024-12-09,23277,6692,"[\""Charger\""]",4407.79,{},88097,0,"""Africa""" +2023-05-04,23278,7004,"[\""Keyboard\"", \""Phone\""]",2718.96,"{\""promo\"": \""15%\""}",32224,0,"""Africa""" +2023-05-16,23279,9099,"[\""Wireless Mouse\""]",4064.49,"{\""loyalty\"": \""8%\""}",119659,1,"""Africa""" +2024-07-24,23280,8850,"[\""Wireless Mouse\"", \""Laptop\""]",4886.35,{},167165,0,"""South America""" +2023-11-26,23281,8410,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2127.17,"{\""seasonal\"": \""28%\""}",180857,1,"""North America""" +2024-09-01,23282,1485,"[\""Charger\""]",2756.46,"{\""seasonal\"": \""23%\""}",80549,1,"""South America""" +2023-08-16,23283,6472,"[\""Headphones\"", \""Laptop\""]",966.47,"{\""seasonal\"": \""6%\""}",136100,1,"""North America""" +2023-11-28,23284,5651,"[\""Wireless Mouse\"", \""Keyboard\""]",3690.73,{},144153,1,"""Asia""" +2024-06-03,23285,4673,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",204.8,"{\""loyalty\"": \""16%\""}",76204,1,"""Asia""" +2024-02-28,23286,6818,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4551.0,{},24360,1,"""Asia""" +2024-05-09,23287,7050,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",943.32,"{\"": \""26%\""}",94839,1,"""Europe""" +2024-08-31,23288,4561,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3147.87,{},289325,1,"""Europe""" +2024-07-30,23289,9440,"[\""Phone\"", \""Charger\""]",3873.61,{},142973,1,"""Africa""" +2024-10-31,23290,6483,"[\""Tablet\""]",2134.63,"{\"": \""18%\""}",197182,0,"""North America""" +2024-07-05,23291,5691,"[\""Phone\""]",93.61,{},134909,0,"""Africa""" +2023-11-24,23292,345,"[\""Phone\"", \""Tablet\""]",3334.92,{},28044,0,"""Africa""" +2024-03-09,23293,3279,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2148.93,"{\"": \""21%\""}",184403,1,"""Africa""" +2024-07-25,23294,9144,"[\""Charger\""]",2321.14,"{\""seasonal\"": \""9%\""}",112896,0,"""North America""" +2023-11-24,23295,7255,"[\""Tablet\""]",443.84,{},297658,1,"""Africa""" +2024-02-12,23296,6760,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",902.22,"{\"": \""12%\""}",25183,0,"""North America""" +2023-03-27,23297,2384,"[\""Keyboard\"", \""Laptop\""]",2055.76,"{\""loyalty\"": \""21%\""}",194937,0,"""North America""" +2023-12-14,23298,1562,"[\""Phone\""]",2573.54,"{\""seasonal\"": \""9%\""}",164380,1,"""Asia""" +2023-12-16,23299,9876,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1743.37,"{\"": \""18%\""}",17518,1,"""North America""" +2024-11-30,23300,1721,"[\""Phone\""]",4832.79,"{\"": \""7%\""}",135812,0,"""South America""" +2023-03-10,23301,8311,"[\""Tablet\""]",1408.21,"{\""promo\"": \""15%\""}",59664,1,"""Europe""" +2024-03-26,23302,8484,"[\""Charger\""]",4355.47,"{\""promo\"": \""20%\""}",59912,0,"""Africa""" +2024-04-10,23303,3535,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",470.19,"{\""seasonal\"": \""9%\""}",43221,0,"""South America""" +2024-12-22,23304,2485,"[\""Headphones\""]",2661.53,{},78247,0,"""Europe""" +2023-07-12,23305,4873,"[\""Tablet\""]",1541.17,{},202321,1,"""South America""" +2024-01-30,23306,5606,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4334.79,{},98353,0,"""Africa""" +2024-09-07,23307,4522,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3703.43,"{\""seasonal\"": \""8%\""}",109762,0,"""Asia""" +2023-06-11,23308,4502,"[\""Charger\""]",3885.29,{},182167,1,"""Africa""" +2024-02-19,23309,6944,"[\""Tablet\"", \""Keyboard\""]",4384.38,"{\""promo\"": \""26%\""}",226569,0,"""Africa""" +2024-04-27,23310,543,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1063.05,"{\""seasonal\"": \""17%\""}",69371,0,"""Asia""" +2024-12-28,23311,2357,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4431.86,"{\""loyalty\"": \""19%\""}",211872,1,"""Europe""" +2024-11-10,23312,622,"[\""Laptop\"", \""Phone\""]",4664.58,{},21847,1,"""South America""" +2023-02-15,23313,7297,"[\""Charger\"", \""Wireless Mouse\""]",1230.72,{},203201,0,"""North America""" +2023-12-02,23314,2886,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3047.47,"{\"": \""20%\""}",90047,0,"""Africa""" +2023-10-18,23315,9093,"[\""Keyboard\""]",904.34,"{\""loyalty\"": \""18%\""}",226350,0,"""Asia""" +2023-11-16,23316,5390,"[\""Headphones\"", \""Phone\""]",2399.74,"{\"": \""10%\""}",160632,0,"""Europe""" +2024-07-20,23317,2092,"[\""Phone\"", \""Keyboard\""]",4110.49,{},49661,0,"""Asia""" +2023-09-12,23318,6860,"[\""Wireless Mouse\"", \""Headphones\""]",2531.69,"{\""seasonal\"": \""12%\""}",124870,1,"""Asia""" +2024-05-17,23319,3403,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3607.71,{},202742,0,"""North America""" +2024-07-18,23320,5454,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",312.33,{},97910,0,"""South America""" +2023-12-11,23321,6545,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2905.06,"{\""loyalty\"": \""20%\""}",144163,1,"""North America""" +2024-11-26,23322,6047,"[\""Phone\"", \""Keyboard\""]",3285.73,"{\"": \""14%\""}",119485,1,"""Europe""" +2024-09-26,23323,6037,"[\""Tablet\""]",3804.64,"{\"": \""10%\""}",48736,0,"""Africa""" +2024-06-30,23324,5275,"[\""Headphones\""]",551.68,{},53289,1,"""North America""" +2023-03-15,23325,1461,"[\""Laptop\"", \""Keyboard\""]",4124.38,{},233975,0,"""Asia""" +2023-09-09,23326,2434,"[\""Headphones\""]",2179.57,{},122576,0,"""Europe""" +2024-01-17,23327,4971,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3524.26,"{\"": \""20%\""}",33693,1,"""Europe""" +2023-04-26,23328,6376,"[\""Laptop\""]",3281.19,"{\""seasonal\"": \""23%\""}",260128,0,"""Africa""" +2023-01-29,23329,6728,"[\""Tablet\""]",1357.97,{},199244,0,"""Asia""" +2024-10-24,23330,3516,"[\""Monitor\""]",3530.99,"{\""seasonal\"": \""22%\""}",236651,1,"""Europe""" +2024-05-15,23331,3019,"[\""Phone\""]",4132.34,{},13577,0,"""Africa""" +2023-04-21,23332,2737,"[\""Keyboard\""]",2541.19,{},6930,1,"""North America""" +2023-06-22,23333,6906,"[\""Keyboard\""]",3690.73,{},162024,1,"""Asia""" +2024-03-23,23334,4023,"[\""Keyboard\"", \""Headphones\""]",3731.63,{},106241,0,"""North America""" +2023-12-04,23335,4114,"[\""Phone\"", \""Laptop\""]",2615.42,"{\""seasonal\"": \""9%\""}",82540,1,"""South America""" +2024-03-27,23336,2388,"[\""Charger\""]",608.79,{},23513,0,"""Africa""" +2023-01-16,23337,5150,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4265.78,"{\""promo\"": \""21%\""}",168861,1,"""Africa""" +2024-10-07,23338,1884,"[\""Phone\"", \""Keyboard\""]",3745.17,"{\""promo\"": \""15%\""}",273529,0,"""Africa""" +2023-06-04,23339,409,"[\""Monitor\"", \""Tablet\""]",3886.91,{},228651,0,"""North America""" +2024-11-10,23340,7341,"[\""Headphones\"", \""Wireless Mouse\""]",369.37,"{\""loyalty\"": \""16%\""}",72888,1,"""South America""" +2024-04-17,23341,74,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1365.52,{},39295,1,"""South America""" +2024-05-01,23342,5018,"[\""Phone\""]",2189.16,"{\""seasonal\"": \""16%\""}",54456,1,"""Africa""" +2024-04-05,23343,5755,"[\""Laptop\"", \""Tablet\""]",250.52,{},201832,0,"""North America""" +2024-01-02,23344,1455,"[\""Monitor\""]",4174.88,"{\""seasonal\"": \""6%\""}",12839,0,"""South America""" +2024-07-27,23345,7665,"[\""Monitor\"", \""Laptop\""]",4758.77,{},147076,0,"""South America""" +2024-05-07,23346,3443,"[\""Wireless Mouse\""]",1165.23,"{\""loyalty\"": \""10%\""}",108005,0,"""South America""" +2023-06-14,23347,1321,"[\""Laptop\""]",3036.43,{},102149,1,"""South America""" +2024-08-21,23348,8525,"[\""Wireless Mouse\""]",948.06,{},84275,1,"""Africa""" +2024-11-26,23349,9292,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3294.93,{},272058,0,"""Asia""" +2023-10-09,23350,9317,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2508.54,"{\"": \""29%\""}",190337,0,"""Europe""" +2023-08-30,23351,9776,"[\""Keyboard\""]",1684.84,{},86620,0,"""North America""" +2024-10-15,23352,892,"[\""Wireless Mouse\"", \""Tablet\""]",2391.31,{},156989,1,"""Asia""" +2023-11-19,23353,5304,"[\""Wireless Mouse\""]",1375.2,{},143731,0,"""North America""" +2023-02-15,23354,3983,"[\""Tablet\"", \""Charger\""]",3624.1,"{\"": \""30%\""}",296970,0,"""Europe""" +2023-09-29,23355,4614,"[\""Headphones\""]",1737.55,"{\""loyalty\"": \""9%\""}",40044,0,"""Asia""" +2023-12-14,23356,3769,"[\""Wireless Mouse\""]",4983.29,{},65903,1,"""Asia""" +2023-05-04,23357,4516,"[\""Laptop\""]",3312.54,{},287557,1,"""Asia""" +2024-02-21,23358,8209,"[\""Laptop\"", \""Keyboard\""]",2833.04,{},279600,1,"""Asia""" +2023-10-06,23359,8215,"[\""Phone\"", \""Wireless Mouse\""]",539.65,{},103539,0,"""Africa""" +2024-03-03,23360,7041,"[\""Keyboard\"", \""Laptop\""]",4282.67,{},75632,1,"""Asia""" +2024-10-23,23361,6721,"[\""Tablet\""]",1814.02,"{\""seasonal\"": \""12%\""}",145614,1,"""Europe""" +2024-04-25,23362,2111,"[\""Keyboard\"", \""Headphones\""]",267.05,"{\"": \""21%\""}",105704,1,"""Europe""" +2024-03-23,23363,3392,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4544.03,{},163099,0,"""Africa""" +2024-01-12,23364,4577,"[\""Phone\""]",1845.15,"{\""seasonal\"": \""25%\""}",169787,0,"""Africa""" +2023-02-26,23365,3158,"[\""Tablet\""]",4523.79,"{\""seasonal\"": \""21%\""}",44100,1,"""Europe""" +2023-06-08,23366,1009,"[\""Headphones\""]",4011.22,"{\""promo\"": \""17%\""}",235052,0,"""Europe""" +2024-08-02,23367,2961,"[\""Phone\"", \""Keyboard\""]",3415.72,"{\""loyalty\"": \""21%\""}",97206,0,"""Africa""" +2023-11-21,23368,987,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4798.59,{},91661,1,"""Africa""" +2024-01-20,23369,3157,"[\""Charger\"", \""Monitor\""]",1131.28,"{\""promo\"": \""12%\""}",116656,0,"""North America""" +2023-02-11,23370,6981,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4868.58,{},4430,1,"""Asia""" +2024-08-06,23371,337,"[\""Wireless Mouse\"", \""Tablet\""]",3474.6,"{\""loyalty\"": \""25%\""}",26019,1,"""North America""" +2024-04-03,23372,7613,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1979.18,{},241135,0,"""South America""" +2023-11-13,23373,5130,"[\""Wireless Mouse\"", \""Charger\""]",1251.78,{},245565,0,"""South America""" +2023-05-13,23374,8453,"[\""Keyboard\""]",3497.44,{},40548,0,"""Europe""" +2024-09-17,23375,7649,"[\""Phone\"", \""Laptop\""]",1282.71,"{\""loyalty\"": \""6%\""}",223273,1,"""South America""" +2023-07-01,23376,550,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1979.58,{},50656,1,"""Africa""" +2023-01-24,23377,6613,"[\""Keyboard\""]",4813.04,{},265690,0,"""Europe""" +2023-06-08,23378,9230,"[\""Wireless Mouse\"", \""Keyboard\""]",2884.16,"{\""loyalty\"": \""23%\""}",100965,0,"""Europe""" +2024-02-28,23379,1299,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",404.05,{},255516,1,"""Asia""" +2024-02-02,23380,5098,"[\""Wireless Mouse\""]",991.68,"{\""loyalty\"": \""26%\""}",105718,0,"""South America""" +2023-02-16,23381,5794,"[\""Keyboard\""]",2494.42,"{\""loyalty\"": \""13%\""}",161221,0,"""North America""" +2023-07-05,23382,1830,"[\""Phone\"", \""Laptop\""]",498.42,{},63164,1,"""Asia""" +2024-03-12,23383,3549,"[\""Phone\""]",4781.89,"{\""promo\"": \""13%\""}",28560,1,"""Asia""" +2023-06-11,23384,8107,"[\""Monitor\"", \""Headphones\""]",3480.57,{},87910,0,"""Africa""" +2024-01-17,23385,3869,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1472.98,"{\""loyalty\"": \""23%\""}",206854,1,"""South America""" +2024-11-22,23386,2271,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1398.84,{},238907,0,"""Africa""" +2023-09-29,23387,4654,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3966.54,{},228932,1,"""North America""" +2024-12-04,23388,7841,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3693.21,"{\"": \""30%\""}",47929,1,"""North America""" +2023-09-27,23389,4225,"[\""Tablet\""]",1760.27,{},251146,1,"""Europe""" +2024-07-03,23390,2136,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4989.36,"{\"": \""21%\""}",183803,0,"""South America""" +2024-02-24,23391,2280,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2131.27,{},216155,0,"""Africa""" +2024-10-22,23392,4706,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1510.92,{},6315,1,"""North America""" +2024-11-10,23393,2386,"[\""Monitor\"", \""Laptop\""]",2881.49,{},163219,1,"""Africa""" +2024-01-09,23394,5897,"[\""Laptop\"", \""Charger\""]",372.55,{},179839,1,"""Asia""" +2023-01-25,23395,6891,"[\""Wireless Mouse\""]",4512.68,{},109474,1,"""South America""" +2024-03-19,23396,9551,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1308.99,{},237706,1,"""North America""" +2024-06-22,23397,7162,"[\""Headphones\"", \""Monitor\""]",3218.34,"{\"": \""24%\""}",252509,0,"""South America""" +2023-08-20,23398,8179,"[\""Wireless Mouse\""]",2336.45,"{\"": \""29%\""}",169665,1,"""Europe""" +2024-05-10,23399,1071,"[\""Charger\"", \""Phone\""]",4967.53,"{\""seasonal\"": \""29%\""}",259194,1,"""North America""" +2023-04-06,23400,8285,"[\""Headphones\""]",4522.0,{},94626,1,"""Asia""" +2024-01-22,23401,7350,"[\""Keyboard\""]",326.72,{},21753,1,"""North America""" +2024-10-14,23402,3141,"[\""Monitor\"", \""Laptop\""]",1072.98,{},189731,0,"""Africa""" +2023-12-22,23403,9855,"[\""Phone\""]",1443.89,{},106250,1,"""Europe""" +2024-04-06,23404,6073,"[\""Tablet\"", \""Wireless Mouse\""]",2083.44,"{\""seasonal\"": \""6%\""}",299359,1,"""Africa""" +2024-11-22,23405,660,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4738.92,"{\""loyalty\"": \""11%\""}",184438,0,"""Africa""" +2023-12-30,23406,420,"[\""Tablet\"", \""Laptop\""]",1878.51,"{\""loyalty\"": \""5%\""}",124143,1,"""Asia""" +2023-01-04,23407,1403,"[\""Wireless Mouse\"", \""Charger\""]",3020.65,{},187838,1,"""Europe""" +2024-08-31,23408,1607,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1917.37,{},140699,0,"""Europe""" +2023-06-07,23409,7864,"[\""Laptop\"", \""Charger\""]",1448.62,"{\""seasonal\"": \""19%\""}",288329,0,"""Africa""" +2024-10-27,23410,3024,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4199.23,"{\""promo\"": \""29%\""}",211163,1,"""South America""" +2024-10-26,23411,6940,"[\""Phone\"", \""Headphones\""]",70.97,"{\""loyalty\"": \""13%\""}",246453,0,"""Asia""" +2023-04-22,23412,9288,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1268.46,"{\""promo\"": \""20%\""}",179970,1,"""Asia""" +2023-12-19,23413,1636,"[\""Tablet\""]",204.58,"{\"": \""22%\""}",94895,1,"""Asia""" +2023-12-06,23414,9530,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4427.53,{},240498,1,"""Europe""" +2023-04-19,23415,6587,"[\""Phone\""]",1801.59,"{\""seasonal\"": \""30%\""}",101228,0,"""Asia""" +2024-10-18,23416,3113,"[\""Charger\""]",723.91,{},138597,0,"""North America""" +2023-04-27,23417,687,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4743.95,"{\""promo\"": \""11%\""}",100922,1,"""Africa""" +2023-09-07,23418,8395,"[\""Charger\"", \""Tablet\""]",4603.35,{},10543,1,"""North America""" +2024-09-25,23419,7160,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2713.41,{},52359,1,"""North America""" +2023-03-10,23420,5500,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2557.43,{},155375,1,"""Europe""" +2024-01-05,23421,2006,"[\""Tablet\"", \""Headphones\""]",1311.88,{},233674,1,"""South America""" +2024-10-21,23422,2320,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1421.5,{},65896,1,"""Asia""" +2024-06-26,23423,2599,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3602.95,{},182256,1,"""Europe""" +2023-07-30,23424,7442,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1512.06,{},174449,0,"""Europe""" +2023-09-25,23425,2384,"[\""Headphones\""]",2816.72,{},210940,0,"""North America""" +2023-11-09,23426,4445,"[\""Laptop\""]",3988.35,{},84550,1,"""Africa""" +2024-11-06,23427,8332,"[\""Charger\"", \""Monitor\""]",1738.59,{},133104,0,"""South America""" +2024-03-06,23428,7710,"[\""Headphones\""]",4155.66,{},36609,1,"""South America""" +2023-12-05,23429,31,"[\""Tablet\""]",547.18,"{\"": \""20%\""}",128779,0,"""South America""" +2023-06-03,23430,1216,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1976.58,{},219162,0,"""Africa""" +2024-08-27,23431,2101,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4656.38,{},282583,1,"""Europe""" +2024-01-09,23432,833,"[\""Charger\""]",2434.68,{},167990,0,"""Africa""" +2023-09-23,23433,9804,"[\""Laptop\""]",3570.57,{},205827,0,"""South America""" +2023-02-08,23434,9206,"[\""Monitor\"", \""Tablet\""]",1681.92,"{\""loyalty\"": \""14%\""}",114203,1,"""Africa""" +2024-09-16,23435,8315,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3185.94,{},26114,1,"""Europe""" +2023-12-09,23436,1554,"[\""Wireless Mouse\""]",390.84,{},30619,0,"""Asia""" +2023-12-31,23437,6862,"[\""Monitor\"", \""Keyboard\""]",2626.33,"{\""loyalty\"": \""29%\""}",294543,0,"""Asia""" +2023-01-07,23438,4176,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",98.09,"{\"": \""26%\""}",268333,0,"""North America""" +2024-09-26,23439,3757,"[\""Keyboard\"", \""Tablet\""]",4978.77,{},274333,0,"""Asia""" +2023-12-04,23440,9660,"[\""Headphones\"", \""Tablet\""]",2691.24,"{\"": \""9%\""}",149562,0,"""South America""" +2023-02-07,23441,5975,"[\""Tablet\""]",4958.69,"{\""seasonal\"": \""23%\""}",29153,1,"""North America""" +2024-02-07,23442,9254,"[\""Headphones\"", \""Wireless Mouse\""]",3183.33,{},278848,0,"""South America""" +2023-06-03,23443,5549,"[\""Charger\""]",2017.68,"{\""seasonal\"": \""12%\""}",146095,0,"""South America""" +2023-04-17,23444,9338,"[\""Phone\""]",74.91,{},87275,0,"""Europe""" +2024-01-25,23445,1479,"[\""Keyboard\"", \""Wireless Mouse\""]",4027.05,"{\""loyalty\"": \""27%\""}",225283,1,"""Europe""" +2023-06-10,23446,3140,"[\""Laptop\"", \""Phone\""]",1917.13,{},21742,0,"""Asia""" +2023-12-24,23447,9321,"[\""Laptop\""]",2815.03,{},70464,0,"""Africa""" +2023-06-21,23448,4359,"[\""Keyboard\""]",2435.68,"{\""seasonal\"": \""19%\""}",124971,0,"""Asia""" +2023-11-15,23449,6728,"[\""Tablet\""]",3327.52,{},197803,0,"""Africa""" +2024-01-12,23450,9998,"[\""Wireless Mouse\""]",665.4,{},174985,0,"""Africa""" +2023-01-12,23451,9932,"[\""Laptop\""]",4611.28,{},209085,1,"""Asia""" +2023-11-08,23452,2326,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",151.05,"{\""promo\"": \""11%\""}",237350,0,"""Europe""" +2024-02-15,23453,6859,"[\""Tablet\""]",812.47,{},222762,0,"""Asia""" +2023-01-08,23454,5065,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",414.22,"{\""seasonal\"": \""20%\""}",26379,0,"""North America""" +2023-02-09,23455,8084,"[\""Charger\""]",4083.08,"{\""loyalty\"": \""27%\""}",190781,1,"""North America""" +2024-02-24,23456,9292,"[\""Tablet\"", \""Wireless Mouse\""]",4104.09,{},195799,1,"""South America""" +2024-06-22,23457,6646,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4095.84,"{\""loyalty\"": \""13%\""}",125725,0,"""South America""" +2024-11-19,23458,868,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1428.98,{},4914,1,"""South America""" +2023-12-01,23459,6293,"[\""Monitor\"", \""Charger\""]",1456.53,"{\""promo\"": \""23%\""}",35777,0,"""Asia""" +2023-09-06,23460,9710,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1916.32,"{\"": \""26%\""}",164008,0,"""Asia""" +2024-10-01,23461,7520,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",512.66,{},197844,1,"""Europe""" +2023-08-13,23462,3214,"[\""Tablet\"", \""Phone\""]",234.93,"{\""loyalty\"": \""30%\""}",290405,1,"""Africa""" +2023-02-26,23463,6418,"[\""Keyboard\""]",1975.67,{},34235,0,"""Europe""" +2023-08-21,23464,160,"[\""Keyboard\"", \""Tablet\""]",373.11,{},232961,1,"""South America""" +2024-10-04,23465,7693,"[\""Phone\""]",549.99,"{\""loyalty\"": \""27%\""}",6600,1,"""South America""" +2023-03-24,23466,5165,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1385.47,"{\""seasonal\"": \""22%\""}",126548,1,"""Europe""" +2024-11-13,23467,3198,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3425.43,"{\""seasonal\"": \""27%\""}",86313,0,"""Asia""" +2023-10-28,23468,2441,"[\""Wireless Mouse\""]",3881.87,"{\""promo\"": \""17%\""}",98722,1,"""North America""" +2024-05-18,23469,6657,"[\""Phone\"", \""Keyboard\""]",4077.42,{},141087,1,"""Europe""" +2023-01-13,23470,4647,"[\""Laptop\""]",858.58,{},148900,1,"""North America""" +2024-06-14,23471,6409,"[\""Charger\"", \""Headphones\""]",638.24,{},35790,1,"""Asia""" +2023-12-10,23472,7462,"[\""Monitor\"", \""Phone\""]",2712.47,"{\""loyalty\"": \""12%\""}",178779,1,"""North America""" +2024-06-15,23473,4294,"[\""Phone\"", \""Headphones\""]",2747.8,"{\"": \""21%\""}",110258,0,"""Asia""" +2024-01-30,23474,2873,"[\""Tablet\"", \""Phone\""]",758.78,{},124120,1,"""North America""" +2023-11-16,23475,9815,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1233.69,{},276873,1,"""Europe""" +2023-07-21,23476,3548,"[\""Laptop\""]",2995.95,{},75101,0,"""North America""" +2023-12-23,23477,9807,"[\""Headphones\""]",4687.72,"{\""loyalty\"": \""20%\""}",41940,1,"""Europe""" +2024-07-18,23478,569,"[\""Phone\"", \""Keyboard\""]",2910.0,"{\""loyalty\"": \""13%\""}",60147,1,"""Africa""" +2024-07-18,23479,2193,"[\""Laptop\""]",422.41,{},183991,1,"""Africa""" +2024-05-01,23480,8019,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1246.61,{},33922,0,"""Africa""" +2024-01-26,23481,829,"[\""Keyboard\"", \""Monitor\""]",2361.95,"{\""promo\"": \""25%\""}",189500,0,"""Africa""" +2023-02-02,23482,4604,"[\""Headphones\"", \""Charger\""]",595.89,{},179875,1,"""Europe""" +2024-06-29,23483,2911,"[\""Charger\""]",810.33,{},44661,0,"""North America""" +2023-03-30,23484,6160,"[\""Wireless Mouse\""]",4898.98,{},270582,1,"""Europe""" +2024-03-19,23485,9214,"[\""Tablet\"", \""Monitor\""]",3792.35,"{\""seasonal\"": \""6%\""}",199937,1,"""Asia""" +2024-08-01,23486,8440,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1555.72,"{\""promo\"": \""11%\""}",271227,0,"""North America""" +2024-04-20,23487,6983,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1036.97,"{\""promo\"": \""7%\""}",76391,1,"""North America""" +2024-06-10,23488,3032,"[\""Laptop\"", \""Charger\""]",3614.7,"{\""seasonal\"": \""15%\""}",38605,0,"""Europe""" +2023-06-26,23489,9438,"[\""Wireless Mouse\""]",2641.93,{},70722,0,"""Africa""" +2024-04-11,23490,4463,"[\""Monitor\""]",2895.12,"{\""seasonal\"": \""16%\""}",114503,1,"""Europe""" +2023-01-09,23491,4027,"[\""Phone\""]",3283.62,"{\"": \""27%\""}",137334,0,"""North America""" +2024-03-01,23492,6941,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3561.41,{},128956,0,"""Africa""" +2023-06-02,23493,7830,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4396.51,"{\""loyalty\"": \""28%\""}",220243,0,"""Europe""" +2024-07-14,23494,3883,"[\""Keyboard\""]",3620.85,{},72703,1,"""South America""" +2023-07-22,23495,9503,"[\""Tablet\"", \""Wireless Mouse\""]",1426.96,{},132022,0,"""Asia""" +2024-01-11,23496,6426,"[\""Headphones\""]",4557.99,"{\""promo\"": \""12%\""}",28836,1,"""Europe""" +2024-09-08,23497,4641,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4290.06,{},224525,0,"""Europe""" +2023-02-03,23498,5997,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1500.33,"{\"": \""21%\""}",181893,0,"""Europe""" +2024-03-18,23499,3401,"[\""Monitor\""]",3559.59,"{\""seasonal\"": \""30%\""}",125389,1,"""Europe""" +2024-09-25,23500,7527,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3819.29,"{\"": \""8%\""}",163470,0,"""Asia""" +2024-03-29,23501,1147,"[\""Phone\"", \""Tablet\""]",3179.37,"{\""promo\"": \""20%\""}",101989,1,"""Asia""" +2023-08-15,23502,4864,"[\""Tablet\""]",4260.34,"{\"": \""17%\""}",122244,0,"""South America""" +2024-12-25,23503,4175,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",472.99,"{\"": \""18%\""}",9183,0,"""Europe""" +2024-11-17,23504,8107,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",458.93,{},285006,1,"""Africa""" +2024-06-03,23505,5639,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1194.79,{},189431,1,"""South America""" +2023-10-18,23506,1616,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1252.58,{},16512,1,"""South America""" +2023-05-28,23507,1435,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",911.49,"{\""promo\"": \""27%\""}",118969,0,"""Asia""" +2024-12-24,23508,7904,"[\""Charger\"", \""Phone\""]",4064.41,"{\""promo\"": \""8%\""}",117834,1,"""Africa""" +2024-10-19,23509,1267,"[\""Phone\""]",890.08,{},274058,1,"""Europe""" +2024-02-14,23510,4508,"[\""Keyboard\""]",2149.53,{},14881,0,"""North America""" +2023-11-19,23511,3130,"[\""Tablet\"", \""Phone\""]",1897.02,{},205840,1,"""Asia""" +2024-06-15,23512,9049,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2436.72,"{\""seasonal\"": \""21%\""}",127204,1,"""North America""" +2024-12-26,23513,3080,"[\""Keyboard\"", \""Phone\""]",798.81,"{\""seasonal\"": \""22%\""}",238930,1,"""Africa""" +2023-12-27,23514,8792,"[\""Charger\""]",1015.81,{},204780,1,"""Europe""" +2023-01-16,23515,815,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1762.57,{},264812,1,"""North America""" +2023-11-15,23516,7609,"[\""Tablet\"", \""Laptop\""]",875.46,"{\""seasonal\"": \""23%\""}",226250,0,"""South America""" +2023-12-25,23517,8640,"[\""Charger\""]",4493.28,{},279307,1,"""Asia""" +2024-09-04,23518,2253,"[\""Monitor\""]",4514.15,{},141604,0,"""North America""" +2024-05-19,23519,6647,"[\""Charger\""]",2248.81,{},140654,0,"""South America""" +2024-01-05,23520,4853,"[\""Laptop\"", \""Wireless Mouse\""]",3313.34,"{\""promo\"": \""23%\""}",55331,0,"""South America""" +2023-12-30,23521,8283,"[\""Laptop\"", \""Wireless Mouse\""]",2591.35,"{\"": \""22%\""}",134112,0,"""Asia""" +2023-02-10,23522,8075,"[\""Charger\"", \""Tablet\""]",2684.47,"{\""seasonal\"": \""10%\""}",276620,1,"""Africa""" +2023-08-25,23523,7112,"[\""Tablet\"", \""Phone\""]",328.9,{},232366,0,"""Asia""" +2024-11-01,23524,5656,"[\""Monitor\"", \""Charger\""]",2994.54,"{\"": \""17%\""}",150101,0,"""North America""" +2024-06-29,23525,1013,"[\""Tablet\""]",4073.95,{},257830,0,"""Europe""" +2023-12-30,23526,923,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",521.71,"{\""promo\"": \""9%\""}",79964,1,"""South America""" +2023-09-18,23527,9969,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4960.96,"{\""seasonal\"": \""23%\""}",253489,1,"""North America""" +2024-07-19,23528,9579,"[\""Charger\""]",1252.61,"{\"": \""10%\""}",6073,1,"""Europe""" +2024-12-05,23529,1524,"[\""Phone\"", \""Monitor\""]",2641.54,{},190903,1,"""South America""" +2023-06-26,23530,9476,"[\""Monitor\"", \""Phone\""]",3677.02,"{\""loyalty\"": \""23%\""}",181895,0,"""South America""" +2024-03-26,23531,8608,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1229.72,{},169629,0,"""Europe""" +2023-10-27,23532,6388,"[\""Charger\""]",4369.46,{},228471,1,"""South America""" +2024-08-17,23533,5013,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3664.91,{},34785,1,"""Africa""" +2024-09-28,23534,6961,"[\""Laptop\"", \""Phone\""]",2152.71,{},59409,1,"""South America""" +2023-01-19,23535,5008,"[\""Laptop\""]",1448.17,{},201166,1,"""Asia""" +2024-10-23,23536,9547,"[\""Charger\""]",4717.9,"{\""loyalty\"": \""30%\""}",104653,0,"""South America""" +2023-06-01,23537,1610,"[\""Phone\"", \""Wireless Mouse\""]",1890.4,{},25903,1,"""South America""" +2023-03-16,23538,2067,"[\""Laptop\""]",97.64,"{\"": \""23%\""}",276955,1,"""North America""" +2024-11-25,23539,480,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4718.9,{},47289,0,"""North America""" +2023-05-19,23540,4932,"[\""Charger\"", \""Headphones\""]",446.21,{},169409,1,"""Africa""" +2024-05-05,23541,5763,"[\""Keyboard\""]",3673.68,"{\""seasonal\"": \""19%\""}",177959,1,"""Asia""" +2024-01-30,23542,9250,"[\""Keyboard\""]",385.94,{},242238,1,"""Europe""" +2024-12-21,23543,9754,"[\""Monitor\"", \""Laptop\""]",1981.44,"{\"": \""21%\""}",134785,0,"""Asia""" +2024-09-14,23544,907,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3262.4,{},292694,0,"""Africa""" +2024-10-13,23545,48,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2084.67,"{\""loyalty\"": \""29%\""}",164735,1,"""Africa""" +2024-02-16,23546,4648,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3806.89,{},155698,0,"""Asia""" +2024-09-08,23547,8350,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",256.94,{},138832,0,"""Europe""" +2023-07-19,23548,539,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4394.5,"{\""loyalty\"": \""24%\""}",21821,0,"""North America""" +2023-09-07,23549,3025,"[\""Charger\""]",2028.4,"{\""seasonal\"": \""26%\""}",259452,0,"""Asia""" +2024-10-24,23550,3832,"[\""Monitor\""]",4444.06,{},119378,0,"""Europe""" +2024-10-01,23551,2356,"[\""Wireless Mouse\""]",2074.33,"{\"": \""17%\""}",95039,1,"""Asia""" +2023-11-01,23552,4002,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3521.61,"{\""promo\"": \""27%\""}",36258,0,"""Africa""" +2023-06-17,23553,8232,"[\""Phone\"", \""Headphones\"", \""Charger\""]",882.96,"{\""promo\"": \""24%\""}",131842,1,"""South America""" +2023-03-07,23554,5469,"[\""Wireless Mouse\""]",443.56,"{\"": \""12%\""}",262342,0,"""Asia""" +2024-02-20,23555,7928,"[\""Monitor\"", \""Headphones\""]",1779.22,"{\""loyalty\"": \""7%\""}",215551,1,"""Europe""" +2024-11-26,23556,2183,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1191.64,"{\""seasonal\"": \""13%\""}",198273,0,"""Africa""" +2023-04-13,23557,9587,"[\""Phone\"", \""Wireless Mouse\""]",3292.89,{},134751,0,"""Africa""" +2024-11-26,23558,1727,"[\""Keyboard\"", \""Tablet\""]",3549.61,{},9418,1,"""Africa""" +2023-05-27,23559,9279,"[\""Phone\""]",511.52,{},121954,0,"""Africa""" +2023-10-12,23560,9655,"[\""Tablet\""]",817.44,"{\""promo\"": \""14%\""}",110805,1,"""Asia""" +2023-03-08,23561,5308,"[\""Wireless Mouse\"", \""Laptop\""]",2567.11,"{\""loyalty\"": \""7%\""}",189869,1,"""Europe""" +2024-04-13,23562,6561,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1061.12,"{\""loyalty\"": \""12%\""}",124575,1,"""Asia""" +2024-08-22,23563,1243,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2291.52,"{\""promo\"": \""10%\""}",149691,1,"""Asia""" +2024-10-31,23564,3360,"[\""Charger\"", \""Tablet\""]",1235.89,"{\""loyalty\"": \""24%\""}",175837,1,"""Africa""" +2024-09-05,23565,5463,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4042.35,"{\""promo\"": \""12%\""}",261294,1,"""Asia""" +2023-04-02,23566,6372,"[\""Tablet\""]",4807.74,{},241879,0,"""Africa""" +2023-06-12,23567,1605,"[\""Tablet\""]",4826.82,{},267620,0,"""South America""" +2024-07-15,23568,830,"[\""Phone\"", \""Keyboard\""]",780.26,"{\"": \""19%\""}",28710,0,"""Europe""" +2024-06-10,23569,7796,"[\""Monitor\""]",3171.99,"{\""promo\"": \""16%\""}",250319,0,"""Asia""" +2023-07-11,23570,3223,"[\""Phone\""]",1160.53,{},52351,0,"""South America""" +2023-05-18,23571,2231,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3019.84,"{\"": \""29%\""}",177341,0,"""Asia""" +2023-09-16,23572,8087,"[\""Headphones\"", \""Keyboard\""]",3904.42,"{\""loyalty\"": \""13%\""}",224273,0,"""Asia""" +2024-02-26,23573,4335,"[\""Wireless Mouse\""]",2196.35,"{\""seasonal\"": \""13%\""}",118100,1,"""Europe""" +2023-01-08,23574,4261,"[\""Keyboard\"", \""Charger\""]",120.49,"{\""seasonal\"": \""16%\""}",261942,0,"""Europe""" +2023-09-01,23575,6383,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1511.39,{},173486,0,"""North America""" +2024-06-08,23576,63,"[\""Headphones\"", \""Phone\""]",1448.53,{},94555,0,"""Asia""" +2023-03-01,23577,9300,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1895.82,{},100192,0,"""Europe""" +2024-06-24,23578,4605,"[\""Charger\""]",2866.52,{},49646,0,"""Africa""" +2023-07-17,23579,8709,"[\""Monitor\""]",427.98,{},262996,1,"""North America""" +2023-06-09,23580,4985,"[\""Laptop\""]",2060.53,"{\""seasonal\"": \""16%\""}",9414,0,"""Europe""" +2023-07-22,23581,3941,"[\""Laptop\""]",1809.27,"{\""loyalty\"": \""28%\""}",216215,0,"""South America""" +2023-01-10,23582,3395,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4670.52,{},94271,1,"""Africa""" +2024-04-05,23583,2108,"[\""Phone\"", \""Laptop\""]",4797.97,{},226605,0,"""Asia""" +2023-02-08,23584,1074,"[\""Tablet\"", \""Keyboard\""]",4392.94,"{\""promo\"": \""8%\""}",96749,1,"""South America""" +2023-07-06,23585,3596,"[\""Monitor\""]",698.45,"{\"": \""25%\""}",152335,0,"""North America""" +2024-03-05,23586,7757,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4392.76,"{\""loyalty\"": \""12%\""}",33937,0,"""Africa""" +2024-01-05,23587,8867,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3752.31,{},294187,0,"""South America""" +2024-03-21,23588,2997,"[\""Laptop\"", \""Monitor\""]",1152.12,{},41085,0,"""Asia""" +2023-08-04,23589,2397,"[\""Phone\"", \""Laptop\""]",3982.18,{},219284,1,"""Europe""" +2023-01-15,23590,2158,"[\""Phone\"", \""Tablet\"", \""Charger\""]",82.5,"{\""seasonal\"": \""25%\""}",292633,0,"""South America""" +2023-12-05,23591,7608,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1437.13,"{\""promo\"": \""27%\""}",37622,1,"""South America""" +2024-08-23,23592,7873,"[\""Monitor\""]",3620.37,"{\""loyalty\"": \""15%\""}",283964,0,"""North America""" +2023-04-20,23593,5790,"[\""Headphones\""]",4609.04,{},203035,0,"""Asia""" +2024-01-31,23594,2769,"[\""Tablet\"", \""Phone\""]",742.07,"{\""promo\"": \""11%\""}",166415,1,"""South America""" +2023-11-19,23595,4210,"[\""Phone\"", \""Monitor\""]",976.96,"{\""loyalty\"": \""24%\""}",182330,1,"""South America""" +2023-02-24,23596,951,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",233.25,{},1771,1,"""Europe""" +2023-02-09,23597,131,"[\""Headphones\"", \""Keyboard\""]",3551.5,"{\""loyalty\"": \""23%\""}",77420,1,"""North America""" +2023-01-30,23598,2040,"[\""Headphones\"", \""Keyboard\""]",1663.7,{},8241,1,"""Africa""" +2023-11-01,23599,745,"[\""Laptop\""]",3042.44,"{\"": \""19%\""}",264514,0,"""North America""" +2023-05-28,23600,1485,"[\""Phone\"", \""Headphones\""]",3196.31,"{\"": \""9%\""}",298737,1,"""South America""" +2023-04-18,23601,3389,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2792.04,"{\"": \""29%\""}",249860,1,"""Africa""" +2024-07-27,23602,5235,"[\""Monitor\""]",3618.17,"{\"": \""5%\""}",131675,1,"""Asia""" +2024-02-16,23603,1556,"[\""Charger\"", \""Phone\""]",2162.03,{},54633,0,"""North America""" +2024-03-18,23604,8606,"[\""Laptop\""]",2174.54,"{\"": \""6%\""}",15093,0,"""Europe""" +2024-02-10,23605,930,"[\""Headphones\"", \""Keyboard\""]",3919.02,{},71989,1,"""Africa""" +2024-05-17,23606,5050,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2215.93,"{\""loyalty\"": \""18%\""}",83174,1,"""South America""" +2023-08-24,23607,9573,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3454.35,"{\""promo\"": \""17%\""}",161192,1,"""Europe""" +2024-12-02,23608,8870,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4970.51,"{\""promo\"": \""26%\""}",245245,0,"""Europe""" +2024-12-11,23609,4146,"[\""Wireless Mouse\""]",608.64,"{\""seasonal\"": \""18%\""}",193932,0,"""North America""" +2024-03-07,23610,6517,"[\""Laptop\"", \""Keyboard\""]",3656.6,"{\"": \""5%\""}",24983,0,"""Africa""" +2023-07-28,23611,4761,"[\""Wireless Mouse\""]",4546.83,"{\"": \""20%\""}",98722,0,"""North America""" +2023-08-03,23612,2269,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1556.28,{},113330,1,"""Europe""" +2024-03-06,23613,4832,"[\""Monitor\"", \""Phone\""]",340.99,{},152450,1,"""North America""" +2023-10-12,23614,7568,"[\""Wireless Mouse\"", \""Keyboard\""]",1109.37,{},204146,1,"""North America""" +2023-11-21,23615,5726,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1260.92,{},202800,1,"""Africa""" +2024-10-20,23616,155,"[\""Monitor\"", \""Charger\""]",388.47,"{\""seasonal\"": \""24%\""}",78960,1,"""Africa""" +2024-09-14,23617,1538,"[\""Laptop\""]",2490.42,{},169876,1,"""Europe""" +2023-01-26,23618,1601,"[\""Keyboard\""]",937.05,"{\"": \""7%\""}",164989,1,"""Europe""" +2024-07-08,23619,5530,"[\""Headphones\"", \""Laptop\""]",2941.59,"{\""seasonal\"": \""19%\""}",267085,1,"""North America""" +2023-12-29,23620,1766,"[\""Charger\"", \""Wireless Mouse\""]",1398.35,{},63446,0,"""Asia""" +2024-10-03,23621,1647,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3903.78,{},210259,1,"""Asia""" +2024-09-21,23622,7780,"[\""Charger\"", \""Wireless Mouse\""]",247.72,{},19075,0,"""Asia""" +2023-02-04,23623,7619,"[\""Tablet\"", \""Headphones\""]",4156.53,"{\""promo\"": \""14%\""}",137869,1,"""Africa""" +2023-03-18,23624,7107,"[\""Monitor\""]",2702.6,"{\""seasonal\"": \""27%\""}",166474,0,"""Asia""" +2024-02-02,23625,8691,"[\""Keyboard\""]",2699.47,"{\""promo\"": \""23%\""}",45745,0,"""Asia""" +2024-03-04,23626,6738,"[\""Charger\"", \""Monitor\""]",1611.36,{},203764,1,"""South America""" +2024-12-25,23627,717,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3323.71,"{\""promo\"": \""29%\""}",75581,1,"""Asia""" +2023-07-21,23628,5560,"[\""Laptop\""]",4301.97,{},127278,0,"""Europe""" +2024-10-16,23629,7583,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3010.15,"{\""loyalty\"": \""20%\""}",287540,1,"""South America""" +2023-03-16,23630,2218,"[\""Phone\""]",803.76,{},28339,0,"""Europe""" +2024-02-14,23631,4084,"[\""Wireless Mouse\""]",3580.49,{},198873,1,"""North America""" +2023-02-13,23632,4880,"[\""Charger\"", \""Wireless Mouse\""]",3678.5,{},115537,0,"""South America""" +2024-11-03,23633,1237,"[\""Wireless Mouse\"", \""Monitor\""]",2575.28,"{\""loyalty\"": \""10%\""}",167041,0,"""Asia""" +2024-01-04,23634,389,"[\""Phone\"", \""Laptop\""]",4750.98,{},61514,1,"""Europe""" +2024-12-30,23635,2214,"[\""Tablet\""]",3853.79,{},217999,0,"""North America""" +2024-02-03,23636,1660,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3668.93,"{\""promo\"": \""30%\""}",207834,0,"""Europe""" +2024-02-25,23637,4602,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2090.41,"{\""loyalty\"": \""17%\""}",56003,1,"""Asia""" +2024-11-17,23638,4566,"[\""Headphones\"", \""Laptop\""]",2148.9,"{\""promo\"": \""10%\""}",25804,0,"""Africa""" +2023-02-01,23639,7181,"[\""Phone\""]",938.6,"{\"": \""13%\""}",107178,0,"""North America""" +2024-03-22,23640,9830,"[\""Phone\"", \""Monitor\""]",1746.82,"{\"": \""9%\""}",15521,0,"""Europe""" +2023-10-31,23641,1129,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1311.78,"{\"": \""9%\""}",195592,0,"""North America""" +2024-09-02,23642,3878,"[\""Keyboard\"", \""Wireless Mouse\""]",1088.19,{},248298,1,"""Africa""" +2024-09-06,23643,2176,"[\""Laptop\"", \""Wireless Mouse\""]",3871.58,{},78896,1,"""Europe""" +2024-01-24,23644,1168,"[\""Headphones\"", \""Keyboard\""]",617.41,"{\""promo\"": \""15%\""}",7706,1,"""Europe""" +2024-10-17,23645,6502,"[\""Wireless Mouse\"", \""Monitor\""]",4168.17,{},241070,1,"""North America""" +2023-03-23,23646,2471,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3054.2,{},195765,1,"""South America""" +2024-06-19,23647,9882,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4507.55,"{\""seasonal\"": \""9%\""}",96444,1,"""Europe""" +2024-09-10,23648,4120,"[\""Laptop\""]",2162.21,{},134522,1,"""Africa""" +2023-05-17,23649,9235,"[\""Keyboard\""]",4908.29,{},153801,1,"""North America""" +2023-08-04,23650,1235,"[\""Tablet\""]",713.32,{},18346,0,"""Europe""" +2024-12-24,23651,257,"[\""Headphones\"", \""Monitor\""]",3841.02,"{\""promo\"": \""12%\""}",293583,0,"""North America""" +2023-12-27,23652,8071,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4843.6,"{\"": \""23%\""}",52071,0,"""North America""" +2023-12-16,23653,3743,"[\""Headphones\""]",1833.56,"{\""promo\"": \""28%\""}",92814,1,"""Asia""" +2023-05-20,23654,424,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3288.16,"{\""seasonal\"": \""11%\""}",153821,0,"""South America""" +2024-12-21,23655,4955,"[\""Wireless Mouse\"", \""Headphones\""]",1880.73,"{\"": \""22%\""}",37436,0,"""South America""" +2024-10-11,23656,9883,"[\""Monitor\"", \""Phone\""]",167.65,{},46029,0,"""North America""" +2024-03-01,23657,6172,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2715.22,{},150001,0,"""Europe""" +2024-01-14,23658,2704,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1375.2,"{\"": \""16%\""}",229991,1,"""Asia""" +2023-03-05,23659,1070,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3210.93,{},108620,1,"""North America""" +2024-01-05,23660,2688,"[\""Phone\""]",2529.21,{},258119,1,"""Africa""" +2023-09-27,23661,4795,"[\""Headphones\""]",3623.26,"{\"": \""18%\""}",261211,0,"""Africa""" +2024-09-26,23662,3343,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2312.13,"{\""promo\"": \""29%\""}",140167,0,"""South America""" +2023-02-15,23663,5192,"[\""Monitor\"", \""Phone\""]",4453.79,"{\""promo\"": \""28%\""}",292926,1,"""Asia""" +2024-11-02,23664,7602,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3588.2,{},79873,1,"""Asia""" +2023-06-11,23665,390,"[\""Charger\"", \""Keyboard\""]",3289.04,{},135735,0,"""Europe""" +2024-05-20,23666,6641,"[\""Headphones\""]",3746.14,{},16656,0,"""Africa""" +2023-10-17,23667,5751,"[\""Tablet\""]",468.02,"{\"": \""28%\""}",115619,0,"""Asia""" +2023-08-22,23668,6880,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3015.34,{},288044,1,"""South America""" +2023-12-29,23669,3717,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4917.39,"{\""loyalty\"": \""12%\""}",112156,1,"""North America""" +2023-06-08,23670,3119,"[\""Keyboard\""]",886.87,"{\""loyalty\"": \""7%\""}",157357,1,"""Africa""" +2024-02-03,23671,9129,"[\""Tablet\""]",768.74,{},50917,1,"""Africa""" +2024-06-24,23672,8647,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2881.78,{},119297,0,"""North America""" +2023-08-24,23673,3859,"[\""Phone\""]",642.79,{},23794,1,"""South America""" +2024-01-05,23674,7685,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",762.79,"{\""loyalty\"": \""27%\""}",167429,1,"""North America""" +2023-09-09,23675,2823,"[\""Wireless Mouse\""]",3171.01,{},79188,1,"""Africa""" +2023-12-25,23676,5215,"[\""Keyboard\""]",1166.32,{},108763,1,"""Africa""" +2023-05-14,23677,6937,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3619.02,{},40850,0,"""Asia""" +2024-02-06,23678,962,"[\""Tablet\""]",2230.53,"{\""promo\"": \""22%\""}",196504,1,"""Asia""" +2023-11-01,23679,6202,"[\""Laptop\"", \""Tablet\""]",4598.56,{},192858,1,"""Asia""" +2024-11-23,23680,3829,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2247.4,"{\""seasonal\"": \""28%\""}",225195,1,"""Asia""" +2024-03-23,23681,1650,"[\""Laptop\""]",4264.61,"{\""seasonal\"": \""11%\""}",67823,1,"""Asia""" +2023-04-10,23682,361,"[\""Monitor\""]",560.01,"{\""seasonal\"": \""11%\""}",64557,1,"""Asia""" +2024-06-03,23683,3148,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2230.46,{},156378,1,"""Asia""" +2024-09-10,23684,5626,"[\""Headphones\""]",3939.87,"{\""promo\"": \""22%\""}",56039,1,"""Asia""" +2024-11-28,23685,3054,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2220.99,{},71229,1,"""South America""" +2023-03-30,23686,8634,"[\""Laptop\""]",3920.1,"{\"": \""22%\""}",246224,1,"""Europe""" +2024-01-16,23687,4219,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3123.63,"{\""promo\"": \""19%\""}",256670,1,"""South America""" +2024-06-21,23688,8160,"[\""Wireless Mouse\""]",1723.38,"{\""loyalty\"": \""6%\""}",14406,1,"""North America""" +2024-02-23,23689,5119,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3684.3,{},132612,0,"""Europe""" +2024-06-14,23690,9418,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",88.39,{},264629,0,"""Africa""" +2023-11-22,23691,3482,"[\""Phone\"", \""Headphones\""]",2060.32,{},100292,0,"""South America""" +2023-01-24,23692,226,"[\""Phone\"", \""Charger\""]",3736.87,"{\""promo\"": \""26%\""}",27108,0,"""South America""" +2024-09-23,23693,8882,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4674.26,"{\"": \""10%\""}",177272,1,"""Africa""" +2024-08-16,23694,3406,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1230.96,{},103667,0,"""South America""" +2023-04-09,23695,5426,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",494.55,"{\"": \""16%\""}",98648,0,"""Europe""" +2024-07-14,23696,8236,"[\""Phone\""]",562.03,{},275506,0,"""Asia""" +2023-11-22,23697,8806,"[\""Wireless Mouse\"", \""Phone\""]",1776.96,{},267924,1,"""Africa""" +2023-10-13,23698,1279,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2876.59,{},64547,1,"""North America""" +2024-08-01,23699,979,"[\""Headphones\"", \""Phone\""]",1203.29,"{\""promo\"": \""7%\""}",44529,0,"""Asia""" +2024-07-08,23700,3030,"[\""Phone\""]",4854.97,"{\"": \""30%\""}",132584,1,"""Asia""" +2023-01-23,23701,2229,"[\""Wireless Mouse\"", \""Phone\""]",3999.49,"{\""seasonal\"": \""7%\""}",112818,0,"""South America""" +2023-06-02,23702,2566,"[\""Phone\""]",878.86,{},273551,0,"""Europe""" +2023-06-07,23703,7483,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1216.04,"{\""promo\"": \""9%\""}",71966,1,"""South America""" +2023-03-18,23704,9238,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2979.8,"{\"": \""12%\""}",125852,0,"""Africa""" +2023-02-24,23705,4179,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4928.06,"{\""loyalty\"": \""12%\""}",258159,0,"""Asia""" +2024-05-01,23706,4744,"[\""Headphones\""]",890.79,{},254232,1,"""North America""" +2023-05-14,23707,7008,"[\""Keyboard\"", \""Tablet\""]",4405.82,"{\""seasonal\"": \""27%\""}",244496,1,"""South America""" +2024-06-19,23708,7045,"[\""Monitor\""]",1212.2,{},183229,0,"""Europe""" +2023-09-22,23709,2488,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2556.89,"{\""loyalty\"": \""14%\""}",254950,0,"""North America""" +2023-08-03,23710,4218,"[\""Phone\""]",1993.13,"{\""promo\"": \""29%\""}",165892,0,"""Asia""" +2023-09-24,23711,5077,"[\""Keyboard\""]",1748.56,{},280099,0,"""South America""" +2024-07-22,23712,6623,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",76.57,"{\""loyalty\"": \""13%\""}",100240,0,"""North America""" +2024-09-01,23713,4403,"[\""Tablet\""]",2690.15,"{\""promo\"": \""19%\""}",197192,0,"""North America""" +2024-02-19,23714,1490,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",238.15,"{\"": \""26%\""}",135338,1,"""Africa""" +2023-11-29,23715,4004,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2882.09,{},129842,0,"""Asia""" +2024-07-29,23716,2847,"[\""Charger\"", \""Wireless Mouse\""]",1029.28,{},59218,0,"""South America""" +2023-11-27,23717,430,"[\""Monitor\"", \""Keyboard\""]",4330.87,{},227504,1,"""Africa""" +2023-01-22,23718,1024,"[\""Laptop\"", \""Monitor\""]",2638.19,"{\""promo\"": \""11%\""}",127075,0,"""North America""" +2023-06-28,23719,6307,"[\""Phone\"", \""Wireless Mouse\""]",3308.67,{},70994,0,"""Asia""" +2024-07-30,23720,3557,"[\""Headphones\"", \""Laptop\""]",3575.68,{},207439,0,"""Africa""" +2024-03-16,23721,2362,"[\""Monitor\""]",145.1,{},286904,0,"""Asia""" +2023-12-22,23722,4207,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1955.71,"{\"": \""25%\""}",250232,0,"""Africa""" +2023-04-11,23723,5542,"[\""Laptop\""]",1792.08,"{\"": \""9%\""}",256836,0,"""South America""" +2023-05-11,23724,3749,"[\""Phone\"", \""Laptop\""]",486.67,"{\""seasonal\"": \""15%\""}",51256,1,"""North America""" +2024-10-22,23725,1511,"[\""Headphones\"", \""Monitor\""]",2453.63,{},73981,0,"""Africa""" +2023-02-28,23726,3197,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2594.91,{},146522,0,"""North America""" +2023-03-16,23727,206,"[\""Charger\"", \""Tablet\""]",1373.17,"{\""promo\"": \""7%\""}",137417,1,"""North America""" +2023-02-16,23728,442,"[\""Headphones\""]",4912.16,"{\""promo\"": \""15%\""}",119998,1,"""Asia""" +2023-05-24,23729,3724,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2326.98,{},152876,1,"""South America""" +2024-05-05,23730,9503,"[\""Tablet\"", \""Keyboard\""]",4040.97,{},152560,0,"""Europe""" +2024-06-09,23731,1054,"[\""Tablet\"", \""Keyboard\""]",256.08,"{\"": \""25%\""}",36390,0,"""North America""" +2024-02-07,23732,7122,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3272.63,{},187017,1,"""Asia""" +2024-06-23,23733,8834,"[\""Wireless Mouse\"", \""Keyboard\""]",107.58,"{\""promo\"": \""11%\""}",294457,1,"""South America""" +2024-07-20,23734,4978,"[\""Laptop\"", \""Wireless Mouse\""]",2774.33,"{\""loyalty\"": \""18%\""}",265720,1,"""North America""" +2023-03-13,23735,1915,"[\""Monitor\""]",3725.73,{},130319,1,"""Europe""" +2023-09-23,23736,662,"[\""Phone\""]",1961.18,"{\""seasonal\"": \""26%\""}",170422,1,"""South America""" +2023-10-06,23737,1530,"[\""Phone\"", \""Headphones\""]",819.88,"{\"": \""13%\""}",141044,0,"""North America""" +2023-05-12,23738,1402,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3856.63,{},82155,1,"""Asia""" +2024-11-13,23739,9047,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1621.26,"{\""promo\"": \""24%\""}",101057,0,"""North America""" +2023-07-01,23740,9669,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",634.87,"{\""promo\"": \""19%\""}",69502,0,"""Europe""" +2024-07-05,23741,1426,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1710.55,{},176679,0,"""Africa""" +2024-08-18,23742,8498,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",756.54,{},199954,0,"""Asia""" +2023-02-25,23743,2989,"[\""Monitor\"", \""Charger\""]",1375.57,"{\"": \""28%\""}",289187,0,"""Africa""" +2023-08-21,23744,63,"[\""Phone\""]",4942.43,{},12332,0,"""North America""" +2024-01-20,23745,6835,"[\""Phone\"", \""Monitor\""]",3122.8,"{\""loyalty\"": \""30%\""}",48747,0,"""North America""" +2024-06-02,23746,6149,"[\""Monitor\"", \""Laptop\""]",3082.55,{},155629,0,"""North America""" +2024-02-27,23747,2914,"[\""Headphones\"", \""Tablet\""]",584.75,"{\""promo\"": \""9%\""}",230948,0,"""Europe""" +2024-09-18,23748,7727,"[\""Charger\"", \""Laptop\""]",4067.72,"{\""seasonal\"": \""24%\""}",58964,0,"""North America""" +2024-05-04,23749,9324,"[\""Monitor\"", \""Keyboard\""]",4254.39,{},108005,0,"""North America""" +2024-02-07,23750,947,"[\""Charger\""]",2273.64,{},28758,0,"""North America""" +2024-01-10,23751,6662,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2457.35,"{\"": \""24%\""}",242544,1,"""South America""" +2024-09-05,23752,9920,"[\""Headphones\"", \""Wireless Mouse\""]",3285.03,{},133987,1,"""Africa""" +2023-01-29,23753,1744,"[\""Charger\""]",3786.67,{},164965,0,"""Europe""" +2023-01-21,23754,267,"[\""Charger\""]",1099.41,"{\""promo\"": \""18%\""}",50114,1,"""North America""" +2023-04-01,23755,6216,"[\""Wireless Mouse\""]",1773.58,"{\""promo\"": \""20%\""}",164484,0,"""Asia""" +2024-11-26,23756,3331,"[\""Laptop\"", \""Phone\""]",4515.71,"{\""seasonal\"": \""30%\""}",203167,1,"""North America""" +2023-04-07,23757,9680,"[\""Phone\""]",1460.43,{},232886,0,"""Asia""" +2024-03-24,23758,3363,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4569.22,{},255080,0,"""Africa""" +2024-02-15,23759,1545,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3441.19,{},154636,1,"""South America""" +2023-11-10,23760,7693,"[\""Laptop\""]",1846.68,{},47174,1,"""South America""" +2024-10-25,23761,9928,"[\""Charger\""]",3268.02,{},72678,1,"""Africa""" +2024-12-22,23762,7826,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3934.03,{},121842,1,"""North America""" +2023-08-09,23763,8807,"[\""Headphones\""]",2725.57,"{\""promo\"": \""25%\""}",226947,0,"""Europe""" +2024-03-04,23764,4654,"[\""Wireless Mouse\"", \""Laptop\""]",197.51,{},165785,1,"""Asia""" +2024-07-31,23765,1068,"[\""Keyboard\""]",2486.19,{},281299,0,"""Europe""" +2024-01-28,23766,3980,"[\""Phone\""]",2119.3,"{\""loyalty\"": \""11%\""}",20219,0,"""South America""" +2024-06-17,23767,6668,"[\""Tablet\""]",323.77,{},191454,1,"""South America""" +2024-09-11,23768,698,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3123.66,"{\""loyalty\"": \""18%\""}",104747,1,"""North America""" +2024-02-18,23769,390,"[\""Phone\""]",3012.89,{},185842,1,"""Asia""" +2023-12-13,23770,3082,"[\""Charger\""]",3428.97,"{\""promo\"": \""22%\""}",194379,0,"""South America""" +2024-12-01,23771,482,"[\""Phone\"", \""Headphones\""]",342.35,{},2367,0,"""South America""" +2023-04-12,23772,7362,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",986.02,{},132155,0,"""South America""" +2024-03-03,23773,935,"[\""Phone\""]",2410.33,"{\"": \""13%\""}",32642,0,"""South America""" +2024-05-11,23774,2684,"[\""Phone\""]",1581.15,{},77449,1,"""Asia""" +2024-09-07,23775,7659,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",147.9,{},86457,0,"""South America""" +2024-09-24,23776,918,"[\""Tablet\""]",2636.11,"{\"": \""13%\""}",145300,0,"""North America""" +2024-10-25,23777,7980,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2989.3,"{\""seasonal\"": \""13%\""}",268819,1,"""Africa""" +2023-10-31,23778,2821,"[\""Phone\"", \""Charger\""]",2975.76,"{\""promo\"": \""16%\""}",126123,1,"""South America""" +2023-06-02,23779,8118,"[\""Charger\""]",4719.02,{},52561,1,"""Africa""" +2024-05-09,23780,3488,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",422.14,"{\""seasonal\"": \""26%\""}",3143,0,"""Asia""" +2023-09-13,23781,7205,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2190.28,{},122740,1,"""Europe""" +2023-07-22,23782,8532,"[\""Monitor\""]",3051.12,{},271012,1,"""Europe""" +2024-01-27,23783,1965,"[\""Wireless Mouse\""]",1593.39,{},271631,1,"""Europe""" +2023-08-06,23784,2534,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3595.53,{},72843,1,"""Asia""" +2024-03-16,23785,1900,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4262.73,{},189430,0,"""South America""" +2023-08-14,23786,3348,"[\""Phone\""]",2936.8,{},148773,0,"""Europe""" +2023-03-25,23787,2641,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3704.61,{},247541,0,"""North America""" +2023-03-20,23788,2599,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4875.34,"{\"": \""27%\""}",203547,1,"""Europe""" +2023-09-18,23789,6697,"[\""Charger\"", \""Phone\""]",3445.21,"{\""seasonal\"": \""19%\""}",178110,0,"""North America""" +2024-03-31,23790,6258,"[\""Phone\"", \""Headphones\""]",1844.54,{},120699,1,"""South America""" +2023-07-01,23791,6712,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3128.23,"{\""promo\"": \""26%\""}",36052,0,"""Africa""" +2023-08-13,23792,3127,"[\""Laptop\"", \""Monitor\""]",375.04,{},117431,1,"""South America""" +2023-01-31,23793,7061,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",422.57,{},163697,0,"""North America""" +2024-01-05,23794,9371,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3428.91,"{\""promo\"": \""11%\""}",161336,1,"""Africa""" +2024-02-28,23795,4046,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4080.44,"{\""loyalty\"": \""16%\""}",124401,0,"""South America""" +2024-01-06,23796,8307,"[\""Headphones\""]",2763.27,"{\""promo\"": \""17%\""}",230849,1,"""Europe""" +2023-09-21,23797,1471,"[\""Wireless Mouse\"", \""Tablet\""]",1999.39,{},146047,1,"""Europe""" +2024-09-22,23798,825,"[\""Tablet\"", \""Headphones\""]",565.49,"{\"": \""16%\""}",122325,0,"""Asia""" +2023-11-03,23799,10000,"[\""Charger\"", \""Tablet\""]",252.01,{},241332,1,"""North America""" +2024-10-05,23800,6150,"[\""Headphones\"", \""Wireless Mouse\""]",432.08,{},19544,1,"""Asia""" +2023-07-17,23801,9068,"[\""Phone\"", \""Laptop\""]",1166.95,"{\""promo\"": \""7%\""}",37953,1,"""Africa""" +2024-10-03,23802,4696,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4949.26,{},181507,1,"""Asia""" +2023-09-10,23803,1884,"[\""Monitor\"", \""Tablet\""]",4506.16,{},276854,0,"""Asia""" +2024-12-16,23804,8877,"[\""Laptop\"", \""Keyboard\""]",1521.97,{},108026,0,"""Asia""" +2024-02-05,23805,8552,"[\""Phone\"", \""Headphones\""]",902.31,{},195405,1,"""North America""" +2023-02-14,23806,8118,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1770.36,"{\""loyalty\"": \""13%\""}",277911,1,"""South America""" +2024-04-14,23807,2311,"[\""Wireless Mouse\"", \""Charger\""]",4547.65,"{\"": \""25%\""}",247095,1,"""South America""" +2024-01-27,23808,9920,"[\""Monitor\"", \""Phone\""]",1283.82,"{\""loyalty\"": \""28%\""}",180073,0,"""North America""" +2023-03-11,23809,6739,"[\""Headphones\"", \""Charger\""]",1899.96,"{\""seasonal\"": \""24%\""}",22179,0,"""Europe""" +2024-10-27,23810,9863,"[\""Laptop\""]",1196.49,"{\""seasonal\"": \""18%\""}",49060,0,"""South America""" +2024-07-30,23811,858,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2646.17,"{\""loyalty\"": \""11%\""}",125629,1,"""Europe""" +2023-01-31,23812,6555,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1167.22,"{\""promo\"": \""8%\""}",259749,1,"""Europe""" +2024-01-05,23813,5891,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1839.05,{},138805,1,"""Europe""" +2023-11-16,23814,1612,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1170.16,{},36716,1,"""Asia""" +2024-06-11,23815,1773,"[\""Monitor\""]",4137.93,{},196499,0,"""North America""" +2023-07-16,23816,1852,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4914.01,{},77390,1,"""South America""" +2024-01-12,23817,6091,"[\""Keyboard\""]",3335.75,{},13461,1,"""Africa""" +2023-12-07,23818,439,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2234.69,{},249809,0,"""South America""" +2023-11-11,23819,543,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",651.78,{},84757,1,"""Asia""" +2023-05-15,23820,2473,"[\""Wireless Mouse\"", \""Headphones\""]",2004.85,{},154362,1,"""South America""" +2024-04-20,23821,6493,"[\""Monitor\""]",1288.09,"{\""seasonal\"": \""17%\""}",66690,0,"""Africa""" +2024-11-29,23822,6874,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4649.75,"{\""seasonal\"": \""11%\""}",168263,0,"""Asia""" +2023-12-28,23823,263,"[\""Phone\"", \""Tablet\""]",3532.84,"{\""loyalty\"": \""12%\""}",242627,1,"""South America""" +2024-04-23,23824,1052,"[\""Tablet\"", \""Keyboard\""]",743.65,{},84786,0,"""South America""" +2024-01-14,23825,357,"[\""Charger\"", \""Monitor\""]",1612.52,"{\""promo\"": \""12%\""}",138997,1,"""Asia""" +2023-05-21,23826,5482,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1489.54,"{\""loyalty\"": \""27%\""}",39156,1,"""South America""" +2023-05-20,23827,2852,"[\""Wireless Mouse\"", \""Laptop\""]",4897.33,{},142517,1,"""Africa""" +2024-08-24,23828,5303,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3123.03,"{\""promo\"": \""11%\""}",158390,1,"""South America""" +2024-08-23,23829,3868,"[\""Monitor\""]",3225.32,"{\""loyalty\"": \""28%\""}",39970,1,"""Europe""" +2024-02-20,23830,818,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2137.03,{},100001,1,"""Europe""" +2023-04-12,23831,9039,"[\""Monitor\""]",1432.62,"{\""promo\"": \""11%\""}",65970,0,"""Asia""" +2023-12-23,23832,1268,"[\""Headphones\"", \""Phone\""]",2013.97,{},289230,0,"""Africa""" +2023-12-23,23833,9036,"[\""Monitor\"", \""Charger\""]",935.62,"{\""seasonal\"": \""13%\""}",155099,0,"""Africa""" +2023-10-19,23834,8807,"[\""Headphones\"", \""Laptop\""]",2437.56,{},120197,0,"""North America""" +2024-04-08,23835,4277,"[\""Monitor\""]",3640.21,{},49071,0,"""South America""" +2024-11-27,23836,5343,"[\""Charger\"", \""Laptop\""]",2818.95,{},157868,0,"""South America""" +2023-02-08,23837,2390,"[\""Monitor\""]",3834.21,{},124826,1,"""Africa""" +2023-04-17,23838,2613,"[\""Keyboard\"", \""Laptop\""]",1843.41,"{\""seasonal\"": \""18%\""}",158809,0,"""Asia""" +2023-01-04,23839,6866,"[\""Laptop\""]",4428.65,"{\""promo\"": \""8%\""}",204808,0,"""Africa""" +2023-05-27,23840,7817,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3338.83,"{\"": \""23%\""}",224940,0,"""Africa""" +2024-07-01,23841,6579,"[\""Laptop\"", \""Phone\""]",1944.26,{},115720,1,"""North America""" +2024-08-02,23842,4170,"[\""Monitor\""]",1974.64,"{\""seasonal\"": \""15%\""}",174476,0,"""South America""" +2024-01-28,23843,3094,"[\""Monitor\"", \""Tablet\""]",2284.07,{},182991,1,"""North America""" +2023-05-25,23844,9096,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3145.46,{},95486,0,"""Asia""" +2024-09-09,23845,8221,"[\""Laptop\"", \""Wireless Mouse\""]",3869.82,{},32166,1,"""Europe""" +2024-05-03,23846,5878,"[\""Phone\"", \""Headphones\""]",608.33,{},261875,1,"""Asia""" +2024-07-02,23847,231,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",736.17,"{\""seasonal\"": \""28%\""}",190849,1,"""Africa""" +2023-10-31,23848,7371,"[\""Phone\"", \""Wireless Mouse\""]",3757.89,{},191551,1,"""North America""" +2024-07-30,23849,1814,"[\""Charger\"", \""Tablet\""]",1152.77,"{\""promo\"": \""13%\""}",286566,0,"""Asia""" +2023-01-23,23850,6023,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2376.75,{},166539,0,"""Europe""" +2023-09-02,23851,7803,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4385.85,"{\""seasonal\"": \""22%\""}",117989,0,"""North America""" +2023-09-12,23852,6724,"[\""Monitor\""]",960.8,{},270442,1,"""North America""" +2023-08-14,23853,553,"[\""Wireless Mouse\"", \""Phone\""]",1595.71,{},279877,0,"""Asia""" +2024-08-24,23854,9781,"[\""Tablet\""]",80.13,{},275700,0,"""Asia""" +2024-08-20,23855,6910,"[\""Tablet\""]",2944.79,{},112984,0,"""Africa""" +2023-12-22,23856,6123,"[\""Monitor\""]",4795.26,"{\""seasonal\"": \""29%\""}",247289,0,"""South America""" +2024-07-13,23857,5757,"[\""Charger\"", \""Monitor\""]",853.06,{},35570,1,"""Europe""" +2024-07-04,23858,2375,"[\""Monitor\""]",138.33,"{\""seasonal\"": \""5%\""}",154080,1,"""Europe""" +2023-11-24,23859,815,"[\""Phone\"", \""Laptop\""]",323.77,{},260645,0,"""Europe""" +2024-01-11,23860,2169,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",107.13,"{\"": \""13%\""}",273962,0,"""South America""" +2023-06-10,23861,6337,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4511.1,"{\""promo\"": \""16%\""}",222956,0,"""Europe""" +2024-08-10,23862,3302,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2759.73,{},298464,0,"""Asia""" +2024-05-11,23863,7323,"[\""Headphones\"", \""Monitor\""]",1088.95,{},25204,1,"""Africa""" +2024-05-09,23864,159,"[\""Charger\"", \""Wireless Mouse\""]",4257.38,{},19951,0,"""North America""" +2023-06-18,23865,4248,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",937.47,"{\"": \""19%\""}",29048,1,"""South America""" +2023-07-26,23866,7532,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",708.46,"{\"": \""7%\""}",183010,0,"""South America""" +2024-10-16,23867,3340,"[\""Wireless Mouse\"", \""Keyboard\""]",2293.83,{},40713,1,"""North America""" +2024-12-20,23868,5760,"[\""Keyboard\"", \""Headphones\""]",2019.06,"{\""promo\"": \""16%\""}",46095,0,"""North America""" +2024-07-03,23869,9202,"[\""Laptop\""]",4907.08,"{\""loyalty\"": \""11%\""}",242619,0,"""Asia""" +2024-06-14,23870,2459,"[\""Tablet\"", \""Wireless Mouse\""]",1213.02,"{\""promo\"": \""27%\""}",80463,1,"""North America""" +2024-07-07,23871,4529,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",988.61,{},234768,0,"""North America""" +2024-10-03,23872,1253,"[\""Laptop\"", \""Tablet\""]",4683.43,{},210087,1,"""Asia""" +2024-07-28,23873,5621,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1777.41,"{\"": \""19%\""}",196277,1,"""Africa""" +2023-03-22,23874,1004,"[\""Headphones\"", \""Keyboard\""]",2700.12,"{\""seasonal\"": \""22%\""}",172587,1,"""Asia""" +2023-08-16,23875,1598,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3390.77,{},137983,1,"""Asia""" +2023-11-23,23876,611,"[\""Tablet\"", \""Wireless Mouse\""]",1675.43,"{\"": \""30%\""}",242485,0,"""Africa""" +2023-02-07,23877,190,"[\""Wireless Mouse\""]",4851.79,"{\""seasonal\"": \""23%\""}",25616,1,"""Africa""" +2023-11-28,23878,3766,"[\""Monitor\"", \""Headphones\""]",1188.6,{},134391,0,"""North America""" +2023-11-22,23879,8034,"[\""Monitor\"", \""Headphones\""]",1783.19,"{\""seasonal\"": \""10%\""}",41631,1,"""North America""" +2023-06-01,23880,8277,"[\""Wireless Mouse\"", \""Charger\""]",4406.23,{},14975,1,"""South America""" +2024-01-26,23881,2236,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",188.8,"{\""promo\"": \""17%\""}",13843,0,"""Europe""" +2023-12-17,23882,5433,"[\""Headphones\""]",2637.81,"{\""loyalty\"": \""8%\""}",52772,0,"""Asia""" +2024-11-06,23883,6193,"[\""Tablet\"", \""Headphones\""]",3128.79,"{\""promo\"": \""7%\""}",230727,1,"""Asia""" +2023-01-16,23884,8841,"[\""Charger\"", \""Headphones\""]",4365.41,{},83570,1,"""Africa""" +2024-11-12,23885,7596,"[\""Charger\""]",2147.11,{},285430,0,"""Asia""" +2023-07-19,23886,6231,"[\""Laptop\"", \""Charger\""]",1712.33,"{\""promo\"": \""20%\""}",41886,0,"""North America""" +2024-12-29,23887,3237,"[\""Phone\"", \""Headphones\""]",3766.34,{},231374,0,"""Africa""" +2023-08-06,23888,6799,"[\""Laptop\""]",2248.81,"{\""promo\"": \""13%\""}",278921,0,"""South America""" +2023-10-28,23889,4643,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2043.69,"{\""loyalty\"": \""20%\""}",92624,0,"""North America""" +2024-06-09,23890,8902,"[\""Phone\"", \""Headphones\""]",3314.37,{},149953,0,"""Asia""" +2024-08-04,23891,2999,"[\""Phone\"", \""Monitor\""]",689.0,"{\""seasonal\"": \""22%\""}",246104,1,"""Europe""" +2023-03-03,23892,1471,"[\""Laptop\"", \""Wireless Mouse\""]",1729.37,{},25512,1,"""Europe""" +2024-09-03,23893,5506,"[\""Tablet\"", \""Wireless Mouse\""]",300.46,"{\""loyalty\"": \""23%\""}",242370,0,"""Africa""" +2023-10-30,23894,9359,"[\""Phone\"", \""Headphones\"", \""Charger\""]",596.43,"{\"": \""19%\""}",110371,1,"""Asia""" +2024-07-12,23895,2101,"[\""Phone\"", \""Headphones\""]",2984.52,"{\"": \""24%\""}",149254,0,"""North America""" +2024-08-26,23896,1493,"[\""Headphones\""]",2374.6,"{\"": \""5%\""}",235502,0,"""Africa""" +2024-08-19,23897,4966,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",995.36,"{\""loyalty\"": \""24%\""}",180938,0,"""North America""" +2024-03-08,23898,4365,"[\""Charger\"", \""Tablet\""]",3178.76,{},266547,1,"""Asia""" +2024-07-29,23899,1973,"[\""Keyboard\""]",1963.6,"{\""seasonal\"": \""12%\""}",223459,1,"""Europe""" +2024-10-24,23900,4838,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3981.29,"{\""promo\"": \""22%\""}",25370,1,"""North America""" +2024-12-07,23901,45,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3764.47,"{\"": \""28%\""}",19905,0,"""Africa""" +2023-12-24,23902,9708,"[\""Wireless Mouse\"", \""Laptop\""]",4734.91,"{\"": \""9%\""}",187568,1,"""South America""" +2024-04-08,23903,8172,"[\""Monitor\"", \""Tablet\""]",1163.74,"{\""loyalty\"": \""14%\""}",126781,1,"""Asia""" +2023-05-15,23904,3232,"[\""Laptop\"", \""Keyboard\""]",4106.74,"{\""loyalty\"": \""18%\""}",11632,1,"""Asia""" +2023-03-13,23905,4450,"[\""Monitor\""]",135.25,"{\""promo\"": \""13%\""}",242816,0,"""Africa""" +2023-10-08,23906,3956,"[\""Phone\""]",2949.38,{},73211,1,"""Asia""" +2023-08-27,23907,4550,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1508.37,"{\""loyalty\"": \""16%\""}",225759,0,"""North America""" +2024-11-05,23908,1187,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",980.87,"{\""promo\"": \""12%\""}",249841,0,"""Africa""" +2023-07-19,23909,569,"[\""Phone\"", \""Tablet\""]",1386.58,{},238854,1,"""Asia""" +2024-03-17,23910,8248,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3913.62,{},29633,0,"""Europe""" +2023-12-04,23911,4824,"[\""Keyboard\""]",2976.75,"{\""loyalty\"": \""16%\""}",222974,0,"""Europe""" +2023-02-01,23912,6510,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4775.95,"{\""promo\"": \""11%\""}",39509,0,"""South America""" +2023-07-01,23913,6857,"[\""Wireless Mouse\"", \""Keyboard\""]",3443.35,"{\""loyalty\"": \""8%\""}",138786,1,"""Europe""" +2024-05-24,23914,3719,"[\""Charger\"", \""Headphones\""]",1986.86,"{\""seasonal\"": \""8%\""}",120937,1,"""Africa""" +2024-10-27,23915,2186,"[\""Laptop\""]",1857.93,{},43011,0,"""Africa""" +2023-03-06,23916,4351,"[\""Monitor\""]",1392.12,{},169145,0,"""Europe""" +2024-01-19,23917,1219,"[\""Monitor\"", \""Phone\""]",1049.83,"{\""seasonal\"": \""14%\""}",143733,0,"""Asia""" +2023-07-27,23918,3130,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1617.03,{},172363,0,"""South America""" +2023-02-24,23919,2581,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",589.58,"{\""seasonal\"": \""23%\""}",282730,1,"""South America""" +2023-05-27,23920,1961,"[\""Keyboard\"", \""Phone\""]",3089.16,"{\""seasonal\"": \""10%\""}",138633,1,"""South America""" +2023-12-11,23921,7543,"[\""Monitor\""]",4866.99,"{\""loyalty\"": \""27%\""}",237693,1,"""North America""" +2024-07-26,23922,8260,"[\""Tablet\""]",2254.67,{},297448,1,"""Asia""" +2023-09-02,23923,4905,"[\""Wireless Mouse\"", \""Monitor\""]",1405.17,"{\""loyalty\"": \""12%\""}",44552,0,"""South America""" +2024-02-13,23924,5754,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1458.37,{},103656,1,"""North America""" +2023-05-22,23925,8292,"[\""Wireless Mouse\"", \""Keyboard\""]",175.02,{},251605,0,"""North America""" +2023-07-22,23926,5305,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",546.67,{},219614,0,"""North America""" +2023-12-04,23927,1145,"[\""Headphones\""]",2931.96,"{\"": \""15%\""}",243898,1,"""Europe""" +2024-08-01,23928,1104,"[\""Wireless Mouse\""]",4608.84,{},145849,0,"""South America""" +2024-03-27,23929,5350,"[\""Keyboard\"", \""Laptop\""]",1987.91,{},16599,0,"""South America""" +2024-03-02,23930,4635,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",837.56,"{\""loyalty\"": \""8%\""}",167380,1,"""Africa""" +2024-05-22,23931,3096,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1220.07,"{\""loyalty\"": \""9%\""}",29733,1,"""North America""" +2023-11-08,23932,3469,"[\""Phone\"", \""Wireless Mouse\""]",3685.91,{},51295,0,"""Africa""" +2024-10-08,23933,1861,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1253.3,"{\""seasonal\"": \""13%\""}",173316,1,"""Africa""" +2024-09-19,23934,6653,"[\""Monitor\""]",3234.02,{},269325,0,"""North America""" +2024-07-29,23935,5157,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",111.83,"{\""promo\"": \""22%\""}",105074,0,"""Asia""" +2024-08-06,23936,8013,"[\""Charger\""]",3361.97,{},202437,1,"""North America""" +2024-10-30,23937,3740,"[\""Phone\""]",4920.07,"{\""seasonal\"": \""20%\""}",102942,1,"""Europe""" +2024-05-15,23938,7994,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",53.99,{},41478,1,"""Europe""" +2023-12-04,23939,1744,"[\""Tablet\"", \""Charger\""]",1185.06,{},119672,0,"""South America""" +2023-04-30,23940,2338,"[\""Monitor\""]",403.57,{},211395,1,"""Asia""" +2023-03-20,23941,1919,"[\""Charger\"", \""Phone\""]",4600.62,{},22751,0,"""North America""" +2024-07-11,23942,9437,"[\""Wireless Mouse\""]",2291.16,"{\""seasonal\"": \""10%\""}",27842,0,"""Europe""" +2023-08-02,23943,3622,"[\""Charger\""]",3460.01,{},186915,1,"""Asia""" +2024-04-25,23944,654,"[\""Monitor\""]",2770.27,"{\""promo\"": \""29%\""}",58185,0,"""North America""" +2024-04-26,23945,3676,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2523.55,"{\"": \""18%\""}",53879,1,"""Africa""" +2023-03-10,23946,9610,"[\""Tablet\"", \""Wireless Mouse\""]",823.08,{},101773,0,"""North America""" +2023-01-04,23947,6634,"[\""Monitor\"", \""Charger\""]",2979.37,{},254083,0,"""Asia""" +2024-05-08,23948,4308,"[\""Laptop\"", \""Headphones\""]",4121.35,"{\""loyalty\"": \""13%\""}",43938,0,"""Asia""" +2024-05-25,23949,158,"[\""Laptop\""]",153.66,"{\""promo\"": \""21%\""}",266952,0,"""Asia""" +2024-05-27,23950,3812,"[\""Laptop\"", \""Charger\""]",4805.28,"{\"": \""28%\""}",115363,1,"""Asia""" +2024-09-19,23951,7199,"[\""Tablet\"", \""Keyboard\""]",2488.46,{},179783,1,"""Asia""" +2024-05-12,23952,1248,"[\""Keyboard\""]",2893.86,{},48505,0,"""Asia""" +2023-03-13,23953,9982,"[\""Tablet\""]",3618.1,{},199291,0,"""North America""" +2023-05-04,23954,230,"[\""Headphones\""]",3503.87,{},71097,1,"""Africa""" +2023-10-04,23955,1558,"[\""Wireless Mouse\""]",3031.62,"{\""seasonal\"": \""27%\""}",179107,1,"""Asia""" +2023-08-01,23956,3389,"[\""Wireless Mouse\"", \""Phone\""]",4130.0,{},153533,0,"""South America""" +2024-02-18,23957,3389,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",254.83,{},133802,1,"""Europe""" +2024-06-18,23958,2764,"[\""Charger\"", \""Headphones\""]",1543.75,{},154498,0,"""Asia""" +2024-12-23,23959,7867,"[\""Keyboard\""]",3338.16,"{\""promo\"": \""21%\""}",123594,1,"""Africa""" +2023-11-26,23960,9237,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4454.14,{},7733,1,"""Africa""" +2023-12-18,23961,3066,"[\""Headphones\"", \""Tablet\""]",2864.77,"{\"": \""27%\""}",171849,0,"""Asia""" +2024-02-28,23962,1485,"[\""Laptop\""]",633.58,"{\"": \""27%\""}",96276,0,"""North America""" +2023-12-05,23963,9053,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3885.04,{},114601,1,"""Europe""" +2023-10-12,23964,6222,"[\""Monitor\"", \""Tablet\""]",1025.93,"{\"": \""17%\""}",298521,1,"""Europe""" +2024-05-26,23965,203,"[\""Headphones\"", \""Keyboard\""]",3494.98,{},2429,1,"""South America""" +2024-03-19,23966,2922,"[\""Charger\""]",3742.43,{},157009,1,"""Europe""" +2023-03-04,23967,8703,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4126.24,{},100931,0,"""South America""" +2024-05-05,23968,7509,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1205.45,{},269000,1,"""South America""" +2023-03-01,23969,9490,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2284.55,{},202326,0,"""South America""" +2024-12-08,23970,350,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",525.33,"{\"": \""6%\""}",107289,0,"""Africa""" +2024-08-13,23971,8888,"[\""Monitor\"", \""Charger\""]",3126.97,"{\""loyalty\"": \""10%\""}",230811,0,"""North America""" +2024-09-21,23972,8159,"[\""Charger\"", \""Headphones\""]",905.9,{},291799,0,"""North America""" +2023-05-20,23973,1828,"[\""Keyboard\"", \""Wireless Mouse\""]",1085.06,"{\"": \""15%\""}",180815,0,"""Asia""" +2024-02-15,23974,6815,"[\""Phone\""]",820.76,{},222912,0,"""Asia""" +2023-06-01,23975,6054,"[\""Charger\"", \""Tablet\""]",1733.29,{},234146,1,"""Asia""" +2023-06-21,23976,3068,"[\""Monitor\"", \""Headphones\""]",4045.59,"{\""promo\"": \""28%\""}",35158,0,"""Europe""" +2023-01-03,23977,793,"[\""Monitor\"", \""Wireless Mouse\""]",3680.23,"{\""promo\"": \""19%\""}",214082,1,"""Africa""" +2023-07-11,23978,5434,"[\""Laptop\""]",4837.04,{},249342,0,"""South America""" +2024-10-02,23979,7754,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2657.5,{},206461,0,"""South America""" +2024-07-26,23980,3441,"[\""Keyboard\""]",2134.61,"{\""loyalty\"": \""9%\""}",178627,0,"""South America""" +2023-03-11,23981,9674,"[\""Headphones\"", \""Keyboard\""]",4468.26,{},33446,0,"""South America""" +2024-07-03,23982,6424,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2257.93,{},277362,1,"""Africa""" +2024-11-03,23983,4008,"[\""Keyboard\""]",2642.91,"{\"": \""30%\""}",187419,0,"""North America""" +2023-10-08,23984,8945,"[\""Wireless Mouse\""]",882.46,"{\"": \""24%\""}",160501,1,"""South America""" +2023-04-30,23985,2469,"[\""Keyboard\"", \""Wireless Mouse\""]",735.9,{},241569,0,"""Asia""" +2023-05-26,23986,305,"[\""Laptop\""]",135.16,{},90512,0,"""South America""" +2023-09-01,23987,1979,"[\""Laptop\""]",3308.6,"{\""promo\"": \""17%\""}",20895,1,"""South America""" +2024-06-12,23988,6585,"[\""Keyboard\"", \""Phone\""]",1175.91,"{\""promo\"": \""12%\""}",24212,0,"""Africa""" +2024-03-14,23989,5647,"[\""Tablet\""]",941.45,"{\"": \""9%\""}",274578,1,"""Asia""" +2024-10-16,23990,7692,"[\""Wireless Mouse\"", \""Phone\""]",286.66,"{\""loyalty\"": \""5%\""}",155541,0,"""Asia""" +2023-10-08,23991,9332,"[\""Wireless Mouse\""]",2411.86,"{\""loyalty\"": \""30%\""}",98177,0,"""South America""" +2023-04-03,23992,1658,"[\""Laptop\"", \""Wireless Mouse\""]",4856.07,"{\"": \""16%\""}",81599,0,"""Africa""" +2024-05-03,23993,8520,"[\""Phone\"", \""Tablet\""]",1055.88,{},187493,1,"""Asia""" +2024-08-29,23994,1163,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4111.2,"{\""promo\"": \""28%\""}",199717,0,"""Africa""" +2023-08-08,23995,8584,"[\""Laptop\""]",1091.01,"{\""promo\"": \""10%\""}",269651,1,"""Africa""" +2023-01-10,23996,6466,"[\""Phone\""]",2156.81,"{\""promo\"": \""25%\""}",21281,1,"""South America""" +2023-06-14,23997,8963,"[\""Monitor\""]",2276.58,{},157461,0,"""North America""" +2023-01-11,23998,3858,"[\""Laptop\"", \""Headphones\""]",2367.19,{},45721,0,"""North America""" +2024-03-17,23999,8266,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4143.18,{},271461,0,"""South America""" +2023-04-28,24000,7403,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2768.54,{},164382,1,"""South America""" +2023-08-10,24001,6372,"[\""Phone\"", \""Wireless Mouse\""]",3828.0,"{\""loyalty\"": \""5%\""}",108393,1,"""South America""" +2024-11-16,24002,531,"[\""Headphones\"", \""Laptop\""]",3793.78,{},8698,1,"""North America""" +2024-06-13,24003,4213,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",433.91,"{\""seasonal\"": \""29%\""}",164322,1,"""Asia""" +2024-03-20,24004,3993,"[\""Charger\""]",3840.27,{},256253,0,"""Europe""" +2024-02-26,24005,9302,"[\""Tablet\""]",162.89,"{\"": \""7%\""}",249053,0,"""Europe""" +2024-07-17,24006,7631,"[\""Laptop\""]",3290.59,{},85218,1,"""Europe""" +2024-10-11,24007,101,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4632.98,"{\""loyalty\"": \""6%\""}",98324,1,"""South America""" +2023-06-20,24008,8512,"[\""Tablet\"", \""Monitor\""]",2975.48,{},74889,0,"""North America""" +2024-04-23,24009,1460,"[\""Monitor\""]",2966.19,"{\"": \""16%\""}",89542,1,"""Africa""" +2023-03-13,24010,4921,"[\""Headphones\"", \""Charger\""]",3049.01,"{\""loyalty\"": \""30%\""}",268848,1,"""Africa""" +2024-07-04,24011,3184,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4071.29,"{\""seasonal\"": \""8%\""}",83133,0,"""Europe""" +2024-08-02,24012,2278,"[\""Wireless Mouse\"", \""Headphones\""]",3082.65,"{\""loyalty\"": \""8%\""}",279366,1,"""South America""" +2024-07-15,24013,8780,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",893.59,{},290571,0,"""Europe""" +2024-12-31,24014,6506,"[\""Phone\""]",667.28,{},278444,1,"""Africa""" +2024-12-02,24015,9872,"[\""Headphones\"", \""Laptop\""]",2189.27,"{\"": \""28%\""}",70074,1,"""Europe""" +2023-03-28,24016,4940,"[\""Monitor\"", \""Headphones\""]",1836.85,{},127774,0,"""Africa""" +2024-11-21,24017,781,"[\""Phone\"", \""Charger\""]",2191.18,{},262040,0,"""Europe""" +2023-06-03,24018,2925,"[\""Charger\""]",3695.78,"{\""loyalty\"": \""20%\""}",138723,0,"""Africa""" +2024-08-09,24019,5445,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",767.8,{},246253,0,"""North America""" +2024-06-14,24020,3099,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3309.57,{},90121,1,"""South America""" +2023-05-18,24021,9070,"[\""Phone\""]",1745.84,{},161769,1,"""South America""" +2024-09-21,24022,8456,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4228.72,"{\"": \""30%\""}",89173,1,"""North America""" +2024-08-30,24023,222,"[\""Monitor\""]",243.94,"{\""loyalty\"": \""18%\""}",236378,0,"""Africa""" +2023-05-25,24024,7565,"[\""Monitor\"", \""Keyboard\""]",2234.72,{},293212,1,"""North America""" +2023-03-14,24025,4428,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3486.98,"{\""promo\"": \""21%\""}",10477,0,"""Africa""" +2023-06-27,24026,7498,"[\""Headphones\"", \""Phone\""]",2260.71,{},174230,0,"""North America""" +2024-06-08,24027,744,"[\""Keyboard\"", \""Tablet\""]",1093.63,"{\""promo\"": \""7%\""}",229094,1,"""North America""" +2024-01-05,24028,126,"[\""Monitor\""]",3657.04,"{\""loyalty\"": \""9%\""}",157371,0,"""Asia""" +2024-03-19,24029,6125,"[\""Tablet\""]",686.43,{},160133,1,"""Africa""" +2024-01-10,24030,6320,"[\""Phone\""]",3958.82,{},159760,1,"""Europe""" +2024-06-08,24031,9531,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2912.89,{},262243,0,"""Asia""" +2023-12-22,24032,1375,"[\""Monitor\"", \""Keyboard\""]",3375.82,"{\""promo\"": \""14%\""}",61557,0,"""Asia""" +2024-01-13,24033,4083,"[\""Headphones\"", \""Keyboard\""]",4400.14,{},167138,1,"""South America""" +2024-02-09,24034,6327,"[\""Monitor\""]",1555.69,"{\""loyalty\"": \""18%\""}",230661,1,"""Asia""" +2024-01-27,24035,6944,"[\""Monitor\""]",2225.85,"{\""seasonal\"": \""8%\""}",201471,1,"""Asia""" +2024-04-24,24036,9700,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3169.61,{},90916,0,"""Africa""" +2023-07-06,24037,6900,"[\""Charger\"", \""Wireless Mouse\""]",172.8,{},92521,1,"""Europe""" +2024-04-05,24038,2300,"[\""Headphones\""]",1807.86,{},219784,1,"""North America""" +2023-12-05,24039,7751,"[\""Phone\"", \""Laptop\""]",2131.06,{},227410,1,"""Europe""" +2023-05-30,24040,9664,"[\""Phone\""]",434.62,"{\""seasonal\"": \""11%\""}",114267,1,"""South America""" +2024-02-10,24041,1574,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3770.09,{},248206,1,"""Asia""" +2024-10-15,24042,4912,"[\""Monitor\"", \""Headphones\""]",4472.49,{},243841,1,"""South America""" +2024-04-03,24043,2519,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4175.94,"{\""seasonal\"": \""22%\""}",210555,0,"""South America""" +2024-05-24,24044,5895,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",219.71,{},208953,0,"""South America""" +2024-09-13,24045,7709,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4088.83,"{\""loyalty\"": \""25%\""}",136538,0,"""Africa""" +2024-03-31,24046,1529,"[\""Charger\""]",1426.75,{},88023,1,"""North America""" +2023-12-21,24047,646,"[\""Charger\"", \""Laptop\""]",3037.89,"{\"": \""28%\""}",4029,1,"""Europe""" +2023-01-21,24048,3795,"[\""Laptop\"", \""Phone\""]",4733.6,"{\""loyalty\"": \""10%\""}",22153,0,"""Asia""" +2023-09-17,24049,5609,"[\""Phone\"", \""Monitor\""]",2263.56,{},130322,0,"""South America""" +2024-09-25,24050,8808,"[\""Laptop\"", \""Monitor\""]",4346.54,{},201997,1,"""North America""" +2024-01-23,24051,2433,"[\""Phone\"", \""Charger\""]",2168.69,"{\""loyalty\"": \""24%\""}",164718,0,"""North America""" +2024-02-06,24052,3206,"[\""Monitor\"", \""Phone\""]",1225.91,{},273545,0,"""South America""" +2023-05-02,24053,6403,"[\""Phone\""]",3951.95,"{\"": \""16%\""}",212036,1,"""Asia""" +2024-04-06,24054,4068,"[\""Charger\"", \""Tablet\""]",114.95,"{\"": \""15%\""}",4278,0,"""Europe""" +2024-05-16,24055,1212,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4055.52,{},285396,1,"""South America""" +2023-11-20,24056,5783,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1544.87,"{\""promo\"": \""21%\""}",197750,0,"""Africa""" +2024-06-06,24057,9949,"[\""Charger\"", \""Keyboard\""]",3132.39,{},271569,1,"""Europe""" +2024-06-22,24058,6394,"[\""Headphones\"", \""Wireless Mouse\""]",275.27,{},183195,1,"""North America""" +2023-07-04,24059,3500,"[\""Phone\""]",3589.32,{},232263,1,"""Europe""" +2023-03-15,24060,4105,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4339.03,{},60271,1,"""Asia""" +2023-03-17,24061,3303,"[\""Tablet\"", \""Charger\""]",1818.65,{},147926,0,"""Asia""" +2023-03-15,24062,3785,"[\""Tablet\"", \""Laptop\""]",4131.61,{},60011,0,"""Africa""" +2023-04-12,24063,1537,"[\""Keyboard\"", \""Headphones\""]",774.38,"{\"": \""23%\""}",156139,1,"""South America""" +2024-02-20,24064,6469,"[\""Monitor\""]",203.76,{},292641,1,"""Africa""" +2023-07-12,24065,201,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2300.56,"{\""seasonal\"": \""6%\""}",195009,1,"""Africa""" +2023-02-02,24066,1560,"[\""Monitor\"", \""Keyboard\""]",1269.45,{},252249,0,"""Europe""" +2023-05-05,24067,3615,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",900.37,"{\""loyalty\"": \""11%\""}",241015,0,"""North America""" +2024-04-19,24068,6126,"[\""Wireless Mouse\"", \""Charger\""]",3956.98,{},5543,1,"""South America""" +2024-04-29,24069,2667,"[\""Charger\"", \""Wireless Mouse\""]",1221.1,"{\""promo\"": \""30%\""}",125259,1,"""South America""" +2024-03-06,24070,5879,"[\""Laptop\"", \""Keyboard\""]",628.76,{},176309,1,"""South America""" +2023-01-14,24071,925,"[\""Laptop\"", \""Keyboard\""]",4371.06,"{\""loyalty\"": \""29%\""}",113945,0,"""South America""" +2024-10-15,24072,150,"[\""Tablet\"", \""Headphones\""]",2269.01,"{\"": \""7%\""}",165252,0,"""South America""" +2023-01-01,24073,3096,"[\""Wireless Mouse\"", \""Laptop\""]",2685.0,"{\""seasonal\"": \""21%\""}",232557,0,"""South America""" +2024-05-28,24074,2205,"[\""Tablet\""]",677.94,"{\""loyalty\"": \""21%\""}",299841,0,"""Asia""" +2023-01-11,24075,7471,"[\""Laptop\"", \""Phone\""]",2540.93,"{\""loyalty\"": \""22%\""}",49944,0,"""South America""" +2023-09-11,24076,3212,"[\""Keyboard\"", \""Phone\""]",1329.13,{},50822,1,"""Europe""" +2023-04-25,24077,3610,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2588.6,"{\""seasonal\"": \""24%\""}",173540,1,"""Asia""" +2024-09-30,24078,3788,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",579.15,{},176269,0,"""Europe""" +2024-11-13,24079,9956,"[\""Keyboard\"", \""Headphones\""]",188.16,"{\""promo\"": \""14%\""}",190346,1,"""Africa""" +2024-09-22,24080,2215,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3377.84,{},125784,0,"""South America""" +2023-01-04,24081,9004,"[\""Headphones\""]",4173.99,{},36178,1,"""Europe""" +2023-01-13,24082,7441,"[\""Charger\"", \""Monitor\""]",3180.07,"{\"": \""8%\""}",57809,1,"""Africa""" +2023-05-18,24083,8572,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4324.39,"{\"": \""8%\""}",235671,0,"""Africa""" +2023-06-06,24084,7568,"[\""Tablet\"", \""Phone\""]",4953.49,{},182350,0,"""South America""" +2024-05-19,24085,9523,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1644.06,{},121652,1,"""South America""" +2024-09-09,24086,6512,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3889.7,{},256354,1,"""North America""" +2023-04-22,24087,1263,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",607.48,{},263221,0,"""North America""" +2023-09-14,24088,6847,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1980.11,{},147700,0,"""Asia""" +2023-10-18,24089,3060,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2205.05,"{\""loyalty\"": \""8%\""}",30594,1,"""South America""" +2024-04-29,24090,5785,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3267.46,{},219725,0,"""Asia""" +2023-11-22,24091,6993,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2162.09,"{\""promo\"": \""27%\""}",170604,0,"""Asia""" +2024-04-13,24092,2684,"[\""Phone\""]",2151.6,{},80277,1,"""Asia""" +2023-10-23,24093,4604,"[\""Headphones\""]",2858.38,"{\"": \""6%\""}",12510,0,"""South America""" +2023-05-29,24094,7045,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4711.91,"{\""promo\"": \""22%\""}",1992,1,"""Asia""" +2023-01-17,24095,6308,"[\""Monitor\"", \""Keyboard\""]",4638.12,{},211907,0,"""North America""" +2023-12-22,24096,559,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",678.34,{},208293,1,"""North America""" +2024-02-06,24097,5717,"[\""Charger\"", \""Monitor\""]",88.31,"{\""promo\"": \""28%\""}",99069,0,"""Europe""" +2024-07-02,24098,5819,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1792.67,{},114802,0,"""Africa""" +2023-11-13,24099,4908,"[\""Keyboard\"", \""Charger\""]",4476.78,{},146940,0,"""Asia""" +2024-01-03,24100,1167,"[\""Laptop\"", \""Tablet\""]",4901.13,{},198910,1,"""South America""" +2024-04-29,24101,2278,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3024.51,"{\""promo\"": \""11%\""}",183290,0,"""Europe""" +2023-05-31,24102,9080,"[\""Headphones\""]",2969.4,{},175119,1,"""Europe""" +2023-06-15,24103,3383,"[\""Keyboard\"", \""Tablet\""]",2274.09,{},58776,0,"""Europe""" +2024-11-19,24104,1087,"[\""Headphones\""]",2418.48,"{\""promo\"": \""13%\""}",147402,1,"""South America""" +2024-01-24,24105,5453,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4677.43,"{\""seasonal\"": \""7%\""}",147166,1,"""Europe""" +2024-08-08,24106,2646,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3397.46,{},208011,0,"""Europe""" +2023-11-18,24107,2039,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4016.03,"{\""promo\"": \""22%\""}",3130,0,"""Asia""" +2024-09-25,24108,6442,"[\""Laptop\""]",209.55,{},39261,1,"""South America""" +2024-03-02,24109,3893,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4361.67,"{\""seasonal\"": \""24%\""}",215926,1,"""Europe""" +2023-01-17,24110,6714,"[\""Wireless Mouse\"", \""Keyboard\""]",2733.48,"{\""promo\"": \""15%\""}",33068,1,"""Asia""" +2023-06-29,24111,7017,"[\""Phone\"", \""Laptop\""]",4071.46,{},70632,1,"""Asia""" +2024-10-07,24112,5703,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1244.35,"{\""promo\"": \""14%\""}",201834,0,"""Asia""" +2023-07-17,24113,6587,"[\""Phone\"", \""Keyboard\""]",702.16,"{\"": \""30%\""}",225535,1,"""South America""" +2023-12-04,24114,8010,"[\""Tablet\"", \""Wireless Mouse\""]",1532.74,"{\"": \""16%\""}",241664,1,"""South America""" +2023-08-15,24115,6959,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3824.76,"{\""loyalty\"": \""9%\""}",104208,0,"""Asia""" +2023-10-14,24116,2148,"[\""Wireless Mouse\""]",266.44,{},245674,0,"""Asia""" +2024-03-07,24117,7597,"[\""Charger\"", \""Phone\""]",3708.85,"{\""seasonal\"": \""15%\""}",282418,1,"""Africa""" +2023-08-28,24118,235,"[\""Keyboard\"", \""Charger\""]",307.19,"{\""loyalty\"": \""12%\""}",249666,1,"""Africa""" +2024-09-11,24119,4423,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1746.97,{},52670,1,"""North America""" +2024-03-27,24120,3030,"[\""Monitor\"", \""Keyboard\""]",564.04,{},180429,1,"""Asia""" +2023-09-05,24121,6406,"[\""Charger\"", \""Wireless Mouse\""]",918.57,{},287929,0,"""South America""" +2024-02-27,24122,8377,"[\""Wireless Mouse\""]",2392.17,"{\""seasonal\"": \""12%\""}",38847,1,"""South America""" +2024-11-06,24123,8639,"[\""Keyboard\""]",4136.06,"{\""seasonal\"": \""12%\""}",193661,1,"""Africa""" +2024-03-19,24124,9874,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1444.22,"{\"": \""14%\""}",22779,1,"""North America""" +2024-01-10,24125,590,"[\""Phone\"", \""Charger\""]",4503.52,{},184151,1,"""Asia""" +2023-10-19,24126,2569,"[\""Laptop\"", \""Keyboard\""]",1563.7,{},288133,0,"""Europe""" +2024-08-08,24127,2467,"[\""Headphones\""]",2865.07,"{\""promo\"": \""25%\""}",86180,0,"""Europe""" +2023-12-09,24128,4615,"[\""Phone\"", \""Keyboard\""]",2313.47,"{\""seasonal\"": \""18%\""}",2009,1,"""Europe""" +2023-10-30,24129,523,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1253.82,"{\""seasonal\"": \""19%\""}",278893,1,"""Africa""" +2024-03-02,24130,6767,"[\""Tablet\""]",3788.32,{},103823,0,"""Africa""" +2023-11-22,24131,4605,"[\""Charger\"", \""Wireless Mouse\""]",2065.84,{},205088,1,"""North America""" +2024-06-21,24132,5009,"[\""Monitor\""]",1195.02,"{\"": \""24%\""}",262852,0,"""Africa""" +2024-07-03,24133,552,"[\""Monitor\""]",2662.12,"{\""promo\"": \""21%\""}",67728,0,"""Africa""" +2024-09-23,24134,7459,"[\""Headphones\"", \""Tablet\""]",2905.38,"{\"": \""7%\""}",48267,0,"""Africa""" +2023-09-14,24135,6568,"[\""Keyboard\"", \""Phone\""]",2742.2,{},6529,1,"""North America""" +2024-11-06,24136,307,"[\""Wireless Mouse\"", \""Monitor\""]",4189.43,"{\""loyalty\"": \""10%\""}",97227,1,"""Europe""" +2024-02-07,24137,2555,"[\""Phone\"", \""Charger\""]",3978.8,"{\""seasonal\"": \""27%\""}",298665,0,"""South America""" +2024-05-29,24138,5013,"[\""Laptop\"", \""Tablet\""]",3498.28,"{\""promo\"": \""21%\""}",69136,0,"""Asia""" +2023-10-04,24139,3009,"[\""Laptop\""]",1124.44,{},152530,1,"""South America""" +2024-04-28,24140,6308,"[\""Phone\"", \""Headphones\""]",1935.24,{},2543,1,"""North America""" +2024-07-07,24141,7821,"[\""Keyboard\""]",3129.81,"{\""loyalty\"": \""27%\""}",236576,1,"""Africa""" +2024-11-12,24142,2650,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2655.87,"{\"": \""30%\""}",229700,1,"""Africa""" +2023-07-28,24143,589,"[\""Tablet\""]",2081.82,"{\""promo\"": \""26%\""}",206976,0,"""Asia""" +2023-02-18,24144,3568,"[\""Charger\""]",537.31,{},245344,0,"""Asia""" +2023-11-20,24145,3770,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",925.52,"{\""promo\"": \""12%\""}",192503,1,"""South America""" +2023-10-24,24146,6479,"[\""Laptop\""]",65.31,{},15077,0,"""South America""" +2024-08-29,24147,1636,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2583.23,"{\"": \""6%\""}",256715,1,"""Asia""" +2024-02-04,24148,9758,"[\""Wireless Mouse\""]",4523.43,"{\""seasonal\"": \""16%\""}",30011,1,"""Africa""" +2024-11-17,24149,551,"[\""Monitor\"", \""Tablet\""]",569.4,"{\""promo\"": \""12%\""}",208890,0,"""North America""" +2024-06-26,24150,8469,"[\""Monitor\""]",3445.79,"{\""promo\"": \""13%\""}",180432,1,"""North America""" +2023-07-30,24151,9951,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1292.5,"{\""promo\"": \""5%\""}",85449,0,"""Africa""" +2024-03-06,24152,291,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3860.75,"{\""promo\"": \""7%\""}",166929,1,"""Africa""" +2023-05-25,24153,6749,"[\""Headphones\""]",2027.14,{},135609,0,"""South America""" +2023-12-25,24154,5065,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",606.86,"{\""promo\"": \""26%\""}",182677,0,"""North America""" +2024-06-23,24155,7547,"[\""Monitor\"", \""Keyboard\""]",2749.28,{},114018,0,"""Africa""" +2023-06-01,24156,6470,"[\""Phone\""]",4084.87,"{\"": \""8%\""}",152605,0,"""North America""" +2024-07-01,24157,1509,"[\""Tablet\""]",4805.23,{},227993,1,"""South America""" +2023-12-16,24158,2377,"[\""Monitor\"", \""Headphones\""]",2500.95,"{\"": \""20%\""}",225719,0,"""North America""" +2024-04-15,24159,5145,"[\""Headphones\"", \""Laptop\""]",2053.08,{},240425,1,"""Africa""" +2024-04-21,24160,6792,"[\""Monitor\""]",2710.58,"{\"": \""9%\""}",91001,0,"""Africa""" +2023-04-21,24161,5775,"[\""Laptop\""]",3451.64,"{\""loyalty\"": \""6%\""}",195031,1,"""North America""" +2024-03-20,24162,7762,"[\""Charger\"", \""Keyboard\""]",3549.33,{},62236,0,"""Africa""" +2024-01-28,24163,3335,"[\""Charger\"", \""Monitor\""]",418.01,"{\""seasonal\"": \""10%\""}",103913,1,"""South America""" +2023-11-06,24164,3932,"[\""Monitor\""]",1443.12,{},138611,0,"""Asia""" +2024-06-13,24165,5403,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",503.88,{},192480,0,"""Europe""" +2023-02-08,24166,5035,"[\""Wireless Mouse\"", \""Laptop\""]",2930.47,"{\"": \""18%\""}",13908,0,"""Asia""" +2024-06-29,24167,3488,"[\""Headphones\""]",267.77,{},220373,0,"""Asia""" +2023-12-13,24168,1268,"[\""Tablet\""]",3200.79,{},47881,1,"""Europe""" +2024-12-11,24169,2777,"[\""Tablet\"", \""Monitor\""]",704.93,{},175775,1,"""South America""" +2023-08-10,24170,9485,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4828.01,"{\"": \""15%\""}",176992,1,"""North America""" +2023-11-29,24171,9101,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1526.49,"{\""loyalty\"": \""23%\""}",123977,1,"""Africa""" +2024-12-09,24172,7916,"[\""Laptop\"", \""Headphones\""]",2282.78,"{\"": \""26%\""}",59361,0,"""South America""" +2024-06-18,24173,7157,"[\""Phone\""]",677.44,"{\""promo\"": \""20%\""}",34650,1,"""Asia""" +2023-09-30,24174,2658,"[\""Monitor\"", \""Phone\""]",1133.33,{},154053,1,"""North America""" +2024-09-06,24175,5625,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1273.87,"{\"": \""28%\""}",81875,0,"""South America""" +2023-07-15,24176,7939,"[\""Headphones\"", \""Tablet\""]",3146.19,{},90883,1,"""Asia""" +2024-09-13,24177,8569,"[\""Headphones\"", \""Laptop\""]",742.34,{},150640,0,"""South America""" +2024-12-10,24178,7583,"[\""Phone\""]",3154.24,"{\"": \""29%\""}",172858,0,"""Africa""" +2023-12-10,24179,3746,"[\""Keyboard\""]",4710.58,{},172108,1,"""Europe""" +2024-03-08,24180,3733,"[\""Wireless Mouse\""]",3379.99,"{\""promo\"": \""25%\""}",295373,1,"""North America""" +2023-12-15,24181,3309,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4553.67,"{\""loyalty\"": \""24%\""}",181859,0,"""Europe""" +2024-02-18,24182,9472,"[\""Laptop\"", \""Phone\""]",2694.34,"{\"": \""24%\""}",22312,0,"""South America""" +2023-06-07,24183,4059,"[\""Laptop\""]",316.56,"{\"": \""23%\""}",8179,1,"""South America""" +2024-06-19,24184,7572,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3612.65,"{\""promo\"": \""12%\""}",35824,0,"""South America""" +2024-03-02,24185,8512,"[\""Wireless Mouse\"", \""Keyboard\""]",3672.59,"{\""loyalty\"": \""27%\""}",68596,1,"""Asia""" +2023-12-17,24186,2045,"[\""Monitor\""]",4222.11,"{\"": \""8%\""}",185665,1,"""Africa""" +2023-04-10,24187,2220,"[\""Laptop\""]",2726.91,{},274407,0,"""Asia""" +2023-10-29,24188,8924,"[\""Monitor\"", \""Tablet\""]",4793.74,"{\""promo\"": \""9%\""}",248757,1,"""Europe""" +2023-11-10,24189,706,"[\""Charger\"", \""Wireless Mouse\""]",3138.27,{},15294,0,"""North America""" +2024-11-01,24190,5523,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4018.0,{},190209,1,"""Africa""" +2024-03-24,24191,7544,"[\""Phone\"", \""Monitor\""]",425.59,{},91578,1,"""North America""" +2023-03-18,24192,7660,"[\""Phone\"", \""Keyboard\""]",4821.47,{},217137,0,"""South America""" +2023-03-09,24193,8844,"[\""Phone\""]",1516.06,{},53984,1,"""Asia""" +2024-10-05,24194,8873,"[\""Wireless Mouse\"", \""Headphones\""]",730.62,{},223929,0,"""North America""" +2024-11-17,24195,9908,"[\""Charger\""]",626.35,{},53222,0,"""Asia""" +2023-07-21,24196,6653,"[\""Headphones\"", \""Charger\""]",1937.37,{},237740,0,"""North America""" +2024-05-18,24197,4652,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1468.86,"{\"": \""9%\""}",47660,1,"""North America""" +2023-10-10,24198,8870,"[\""Monitor\"", \""Phone\""]",353.04,{},253140,0,"""South America""" +2023-10-15,24199,8233,"[\""Tablet\""]",2169.84,{},188172,1,"""North America""" +2024-04-14,24200,5527,"[\""Wireless Mouse\"", \""Laptop\""]",1682.8,"{\""promo\"": \""8%\""}",12453,0,"""Europe""" +2024-06-12,24201,9374,"[\""Keyboard\"", \""Phone\""]",3817.82,"{\"": \""18%\""}",46407,1,"""Asia""" +2024-06-28,24202,4339,"[\""Tablet\""]",3183.92,{},212734,1,"""South America""" +2023-05-21,24203,6782,"[\""Keyboard\"", \""Charger\""]",1850.99,"{\""seasonal\"": \""27%\""}",263766,1,"""Africa""" +2023-01-20,24204,6090,"[\""Phone\""]",3261.56,{},161568,1,"""Europe""" +2024-06-25,24205,7273,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1370.76,{},120183,0,"""Europe""" +2023-03-29,24206,8180,"[\""Tablet\""]",307.94,{},227199,1,"""Asia""" +2023-02-19,24207,3041,"[\""Tablet\""]",4629.83,"{\""loyalty\"": \""15%\""}",292217,1,"""Europe""" +2023-02-22,24208,1351,"[\""Wireless Mouse\"", \""Charger\""]",1309.29,"{\""seasonal\"": \""13%\""}",178475,1,"""Africa""" +2024-07-18,24209,6722,"[\""Headphones\""]",1005.07,"{\""promo\"": \""18%\""}",219389,1,"""South America""" +2024-08-10,24210,2999,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2835.42,{},232358,0,"""Europe""" +2024-12-30,24211,5399,"[\""Wireless Mouse\"", \""Laptop\""]",4989.69,"{\""loyalty\"": \""30%\""}",10460,0,"""North America""" +2024-01-12,24212,9212,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",432.5,"{\"": \""27%\""}",170989,1,"""Europe""" +2023-03-14,24213,6839,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1446.95,{},213334,1,"""South America""" +2024-08-18,24214,3679,"[\""Headphones\""]",1452.95,"{\"": \""18%\""}",101246,0,"""North America""" +2024-11-03,24215,8012,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3322.1,{},216175,1,"""South America""" +2024-05-02,24216,9090,"[\""Headphones\"", \""Tablet\""]",4904.06,"{\""promo\"": \""28%\""}",224816,1,"""South America""" +2024-11-11,24217,6195,"[\""Tablet\"", \""Monitor\""]",175.24,{},198508,1,"""South America""" +2024-08-22,24218,8375,"[\""Laptop\""]",3871.17,{},109260,1,"""Asia""" +2023-07-11,24219,1245,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",413.3,"{\""loyalty\"": \""30%\""}",238149,1,"""North America""" +2023-06-02,24220,1062,"[\""Charger\"", \""Laptop\""]",854.01,{},250387,0,"""Africa""" +2024-04-09,24221,1943,"[\""Monitor\""]",4972.38,{},194831,1,"""Asia""" +2024-01-10,24222,4539,"[\""Keyboard\""]",2272.03,"{\"": \""28%\""}",17735,0,"""South America""" +2023-11-09,24223,4556,"[\""Tablet\"", \""Laptop\""]",457.1,"{\"": \""19%\""}",159708,0,"""Europe""" +2023-12-30,24224,4532,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1377.16,{},192300,0,"""Asia""" +2024-02-25,24225,9368,"[\""Monitor\"", \""Phone\""]",4599.11,"{\""promo\"": \""12%\""}",74765,0,"""Europe""" +2023-09-23,24226,7850,"[\""Keyboard\""]",452.02,"{\"": \""13%\""}",220921,1,"""North America""" +2024-05-27,24227,6533,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2450.11,{},63476,0,"""North America""" +2023-06-28,24228,7354,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",268.88,"{\""seasonal\"": \""9%\""}",31288,0,"""Europe""" +2024-12-31,24229,8796,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3322.12,{},148178,1,"""North America""" +2023-11-30,24230,3111,"[\""Tablet\"", \""Phone\""]",3040.95,{},91059,1,"""South America""" +2023-11-27,24231,8176,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4104.93,"{\""seasonal\"": \""20%\""}",180544,1,"""Asia""" +2024-09-16,24232,4769,"[\""Monitor\"", \""Phone\""]",4274.89,"{\""promo\"": \""5%\""}",29388,0,"""Africa""" +2023-03-26,24233,9621,"[\""Headphones\"", \""Charger\""]",2537.88,{},248050,1,"""North America""" +2023-11-16,24234,977,"[\""Monitor\""]",3329.49,{},167973,1,"""Europe""" +2023-01-04,24235,4290,"[\""Monitor\"", \""Headphones\""]",1483.38,{},39612,0,"""Europe""" +2024-08-30,24236,3088,"[\""Keyboard\"", \""Phone\""]",3466.04,"{\""loyalty\"": \""24%\""}",35952,0,"""Africa""" +2023-06-01,24237,9114,"[\""Tablet\"", \""Monitor\""]",1851.64,{},92759,1,"""Africa""" +2024-01-07,24238,7478,"[\""Phone\"", \""Wireless Mouse\""]",180.77,"{\""promo\"": \""7%\""}",264743,0,"""Europe""" +2024-10-24,24239,9031,"[\""Laptop\""]",3034.84,"{\""loyalty\"": \""5%\""}",254184,0,"""Asia""" +2024-08-18,24240,9055,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1533.07,{},70808,1,"""North America""" +2024-09-01,24241,1710,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1973.08,{},132619,1,"""Africa""" +2024-07-06,24242,7566,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",816.25,"{\""promo\"": \""18%\""}",129392,1,"""Africa""" +2023-07-02,24243,5236,"[\""Keyboard\""]",2832.02,"{\""loyalty\"": \""28%\""}",39967,0,"""North America""" +2023-08-24,24244,6099,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1292.66,"{\""loyalty\"": \""14%\""}",223830,1,"""Africa""" +2024-04-02,24245,7560,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3751.53,{},10529,1,"""South America""" +2024-03-20,24246,7221,"[\""Keyboard\""]",172.8,{},86258,1,"""North America""" +2024-11-14,24247,9182,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1698.37,{},280627,0,"""Asia""" +2024-03-26,24248,5987,"[\""Laptop\"", \""Keyboard\""]",425.96,{},63281,0,"""Europe""" +2024-05-12,24249,3793,"[\""Phone\""]",4218.84,{},176604,0,"""Europe""" +2023-01-15,24250,6261,"[\""Wireless Mouse\"", \""Laptop\""]",1371.34,{},57113,1,"""Asia""" +2023-07-05,24251,8199,"[\""Laptop\"", \""Headphones\""]",4100.31,{},7806,0,"""North America""" +2023-07-13,24252,4540,"[\""Headphones\"", \""Tablet\""]",1602.86,{},182583,0,"""Asia""" +2023-06-18,24253,8867,"[\""Headphones\""]",1838.62,{},266990,0,"""North America""" +2024-08-23,24254,9271,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3513.67,{},215197,1,"""North America""" +2024-05-15,24255,7467,"[\""Monitor\"", \""Keyboard\""]",1933.61,{},242979,1,"""South America""" +2024-08-11,24256,2898,"[\""Tablet\""]",3779.81,{},166479,1,"""Asia""" +2024-07-16,24257,5975,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3434.64,"{\"": \""29%\""}",186683,1,"""South America""" +2024-09-18,24258,1867,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1955.27,"{\""loyalty\"": \""26%\""}",137140,0,"""South America""" +2024-08-22,24259,5863,"[\""Tablet\"", \""Phone\""]",278.13,"{\""promo\"": \""10%\""}",184942,1,"""South America""" +2023-04-19,24260,4070,"[\""Charger\"", \""Monitor\""]",3859.8,"{\""promo\"": \""20%\""}",272878,0,"""Asia""" +2024-05-12,24261,5594,"[\""Phone\""]",2775.98,"{\"": \""7%\""}",239482,1,"""South America""" +2024-08-28,24262,7406,"[\""Monitor\"", \""Laptop\""]",2220.63,{},6451,1,"""Asia""" +2023-01-08,24263,417,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",489.19,{},235622,1,"""South America""" +2024-09-20,24264,5491,"[\""Charger\"", \""Laptop\""]",2078.61,{},5775,1,"""Asia""" +2024-09-23,24265,2593,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3045.33,"{\""promo\"": \""24%\""}",76465,1,"""Asia""" +2024-06-04,24266,8356,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1395.34,"{\""promo\"": \""13%\""}",262567,0,"""Africa""" +2023-03-25,24267,251,"[\""Phone\"", \""Laptop\""]",2478.32,"{\""loyalty\"": \""23%\""}",267230,1,"""Europe""" +2024-05-31,24268,6224,"[\""Monitor\"", \""Headphones\""]",480.4,"{\""seasonal\"": \""13%\""}",68618,1,"""Asia""" +2023-03-31,24269,4652,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4249.83,{},14699,1,"""North America""" +2024-09-19,24270,4318,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",445.39,{},236252,0,"""Europe""" +2024-07-31,24271,5363,"[\""Monitor\""]",3860.13,"{\""promo\"": \""30%\""}",284022,0,"""South America""" +2023-10-02,24272,4756,"[\""Laptop\""]",848.48,{},41716,0,"""Africa""" +2024-03-03,24273,7821,"[\""Phone\"", \""Charger\""]",2738.11,"{\""loyalty\"": \""25%\""}",17472,0,"""South America""" +2023-02-02,24274,2029,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3259.62,{},45351,1,"""Africa""" +2024-08-25,24275,7162,"[\""Tablet\""]",3398.06,{},194691,0,"""Europe""" +2024-11-28,24276,7311,"[\""Phone\"", \""Monitor\""]",3574.97,{},213826,0,"""Asia""" +2023-07-27,24277,6744,"[\""Keyboard\"", \""Phone\""]",1970.57,"{\""promo\"": \""11%\""}",198880,0,"""South America""" +2024-08-06,24278,3755,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2944.76,"{\"": \""30%\""}",60845,1,"""Europe""" +2023-05-18,24279,3185,"[\""Charger\"", \""Tablet\""]",877.11,{},246434,1,"""South America""" +2024-07-09,24280,4261,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4263.1,{},253489,1,"""Europe""" +2024-01-17,24281,8591,"[\""Keyboard\""]",1894.66,{},128319,0,"""Europe""" +2023-09-22,24282,3846,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1673.6,{},176270,1,"""Africa""" +2024-01-18,24283,8897,"[\""Tablet\"", \""Keyboard\""]",98.12,{},229890,1,"""South America""" +2023-01-17,24284,7679,"[\""Wireless Mouse\"", \""Monitor\""]",1947.48,"{\""promo\"": \""22%\""}",83001,0,"""Europe""" +2023-08-16,24285,5890,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1994.7,{},138159,0,"""North America""" +2024-01-14,24286,7756,"[\""Wireless Mouse\"", \""Headphones\""]",214.18,"{\""loyalty\"": \""26%\""}",224813,1,"""North America""" +2024-08-28,24287,837,"[\""Keyboard\""]",343.22,{},130192,1,"""Asia""" +2024-12-17,24288,7792,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2981.52,{},124154,1,"""Europe""" +2024-03-13,24289,2068,"[\""Keyboard\"", \""Charger\""]",2711.2,"{\""promo\"": \""26%\""}",54233,1,"""South America""" +2024-10-22,24290,7802,"[\""Wireless Mouse\"", \""Monitor\""]",4035.15,"{\""promo\"": \""18%\""}",67785,1,"""Africa""" +2024-05-10,24291,9203,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1698.14,"{\""promo\"": \""23%\""}",173382,1,"""South America""" +2023-08-20,24292,2416,"[\""Monitor\"", \""Keyboard\""]",4089.4,"{\"": \""13%\""}",176277,0,"""Africa""" +2023-02-03,24293,5925,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4777.44,"{\""seasonal\"": \""21%\""}",149224,1,"""North America""" +2023-09-26,24294,4875,"[\""Wireless Mouse\""]",4406.86,"{\"": \""23%\""}",62889,0,"""North America""" +2023-01-01,24295,6497,"[\""Keyboard\"", \""Monitor\""]",3938.31,{},122624,0,"""North America""" +2024-02-15,24296,6855,"[\""Laptop\"", \""Tablet\""]",4280.21,"{\""loyalty\"": \""16%\""}",126785,0,"""Asia""" +2024-08-20,24297,2941,"[\""Tablet\"", \""Charger\""]",874.13,"{\"": \""26%\""}",32031,1,"""North America""" +2024-06-24,24298,597,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",555.63,{},116387,1,"""Asia""" +2023-01-26,24299,8321,"[\""Laptop\""]",679.73,"{\"": \""30%\""}",150663,0,"""South America""" +2024-06-29,24300,4593,"[\""Laptop\""]",353.5,{},186204,1,"""South America""" +2024-10-13,24301,4165,"[\""Tablet\"", \""Charger\""]",1973.44,{},244586,1,"""Europe""" +2023-03-17,24302,5453,"[\""Wireless Mouse\"", \""Laptop\""]",3759.79,{},198851,1,"""Asia""" +2024-11-24,24303,6525,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4398.13,"{\""seasonal\"": \""10%\""}",291714,0,"""Asia""" +2023-07-24,24304,9226,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2928.37,"{\""loyalty\"": \""13%\""}",286982,1,"""Asia""" +2023-10-13,24305,9598,"[\""Wireless Mouse\"", \""Monitor\""]",4409.61,{},79021,1,"""Asia""" +2024-07-29,24306,8414,"[\""Charger\""]",1349.94,"{\""promo\"": \""18%\""}",159911,0,"""Asia""" +2024-08-04,24307,8943,"[\""Charger\"", \""Monitor\""]",279.38,{},206772,0,"""South America""" +2023-02-23,24308,9145,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3554.81,"{\""loyalty\"": \""11%\""}",123922,1,"""North America""" +2024-02-06,24309,7781,"[\""Charger\""]",4533.12,"{\""promo\"": \""16%\""}",121160,1,"""Asia""" +2024-01-03,24310,3271,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2761.56,{},45661,1,"""Africa""" +2024-01-18,24311,9061,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4876.45,"{\""loyalty\"": \""23%\""}",221068,0,"""Asia""" +2023-08-18,24312,6510,"[\""Monitor\""]",2518.93,"{\""loyalty\"": \""30%\""}",218337,1,"""Africa""" +2023-04-23,24313,4349,"[\""Headphones\"", \""Charger\""]",3427.78,{},234142,1,"""Europe""" +2023-09-03,24314,5125,"[\""Monitor\"", \""Wireless Mouse\""]",684.59,{},52683,1,"""South America""" +2023-11-23,24315,1980,"[\""Wireless Mouse\""]",1165.54,"{\"": \""9%\""}",30033,1,"""South America""" +2023-04-30,24316,3262,"[\""Monitor\""]",3636.47,{},78583,1,"""North America""" +2023-08-16,24317,6306,"[\""Tablet\""]",4762.96,"{\""seasonal\"": \""22%\""}",78528,0,"""South America""" +2023-12-29,24318,853,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",257.51,{},112956,1,"""South America""" +2024-02-07,24319,485,"[\""Tablet\""]",4602.18,{},42952,1,"""South America""" +2023-10-27,24320,1431,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4818.68,{},221666,1,"""Asia""" +2023-03-13,24321,9865,"[\""Monitor\"", \""Charger\""]",550.12,{},40345,0,"""South America""" +2024-01-06,24322,8401,"[\""Headphones\""]",3204.99,{},156961,0,"""Asia""" +2023-04-07,24323,5996,"[\""Charger\""]",2308.72,{},263558,1,"""Africa""" +2024-01-08,24324,2298,"[\""Phone\""]",4160.77,"{\""promo\"": \""7%\""}",78053,1,"""South America""" +2023-12-16,24325,5252,"[\""Headphones\"", \""Keyboard\""]",2638.66,"{\""loyalty\"": \""15%\""}",133881,1,"""Asia""" +2024-09-03,24326,76,"[\""Tablet\"", \""Monitor\""]",1066.1,{},88814,0,"""Europe""" +2024-07-18,24327,1327,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2959.96,{},276050,1,"""South America""" +2023-08-26,24328,9697,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4760.22,{},276609,0,"""Europe""" +2023-06-18,24329,8507,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2722.42,{},51976,0,"""Asia""" +2023-03-30,24330,2462,"[\""Phone\"", \""Tablet\""]",3627.03,{},297169,0,"""Europe""" +2024-06-02,24331,6876,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",890.11,{},256164,0,"""South America""" +2023-09-30,24332,4600,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4390.76,"{\"": \""7%\""}",45082,0,"""South America""" +2023-07-20,24333,4296,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4192.91,"{\""seasonal\"": \""12%\""}",209532,1,"""Asia""" +2023-12-23,24334,1426,"[\""Headphones\"", \""Tablet\""]",2233.42,{},92130,1,"""South America""" +2023-12-12,24335,9093,"[\""Wireless Mouse\"", \""Charger\""]",2678.48,"{\""seasonal\"": \""19%\""}",127514,1,"""Asia""" +2023-08-02,24336,5691,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",649.14,"{\""seasonal\"": \""30%\""}",157802,1,"""Europe""" +2024-08-23,24337,2026,"[\""Headphones\""]",594.66,{},103397,0,"""Europe""" +2023-05-09,24338,9115,"[\""Wireless Mouse\"", \""Laptop\""]",1833.33,"{\""seasonal\"": \""6%\""}",46205,1,"""North America""" +2023-09-20,24339,5855,"[\""Keyboard\""]",2353.81,{},150652,0,"""South America""" +2023-01-12,24340,4452,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3218.79,{},45890,1,"""Europe""" +2024-02-15,24341,7852,"[\""Headphones\""]",3653.38,"{\"": \""20%\""}",77199,1,"""South America""" +2024-08-02,24342,5175,"[\""Monitor\"", \""Phone\""]",1572.43,"{\""seasonal\"": \""23%\""}",17603,1,"""Europe""" +2024-06-18,24343,2304,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3382.42,{},167071,0,"""Asia""" +2023-04-19,24344,6689,"[\""Keyboard\""]",4951.22,"{\"": \""29%\""}",99694,0,"""North America""" +2024-04-28,24345,601,"[\""Laptop\"", \""Phone\""]",3912.26,"{\""promo\"": \""25%\""}",128504,1,"""Europe""" +2023-11-13,24346,736,"[\""Monitor\""]",3102.29,{},194749,0,"""South America""" +2023-11-15,24347,4563,"[\""Wireless Mouse\""]",2023.53,"{\"": \""23%\""}",136936,1,"""Europe""" +2024-10-02,24348,6730,"[\""Charger\""]",3519.65,"{\""loyalty\"": \""24%\""}",119150,0,"""North America""" +2023-11-28,24349,1685,"[\""Charger\""]",2330.85,{},95787,0,"""Asia""" +2024-12-30,24350,746,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",479.13,{},78607,1,"""North America""" +2024-01-05,24351,7378,"[\""Monitor\""]",2470.79,{},241204,0,"""North America""" +2024-12-28,24352,9338,"[\""Monitor\"", \""Headphones\""]",1508.1,"{\""promo\"": \""22%\""}",241738,0,"""North America""" +2023-11-19,24353,2303,"[\""Wireless Mouse\"", \""Headphones\""]",2398.01,"{\""promo\"": \""10%\""}",180922,0,"""Europe""" +2024-10-17,24354,2347,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2902.14,{},45069,0,"""South America""" +2024-05-15,24355,5830,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2141.79,{},154353,1,"""Africa""" +2024-09-03,24356,9218,"[\""Headphones\"", \""Monitor\""]",2567.96,"{\""seasonal\"": \""6%\""}",257191,1,"""Africa""" +2023-03-01,24357,7759,"[\""Tablet\"", \""Keyboard\""]",3677.01,"{\""promo\"": \""23%\""}",101129,0,"""Europe""" +2024-08-28,24358,4144,"[\""Charger\""]",4716.27,"{\""loyalty\"": \""10%\""}",284526,1,"""Europe""" +2024-11-07,24359,4837,"[\""Phone\""]",4840.73,{},273463,1,"""Asia""" +2023-02-22,24360,7526,"[\""Phone\"", \""Headphones\""]",1156.24,{},240487,1,"""South America""" +2024-09-26,24361,1747,"[\""Monitor\"", \""Keyboard\""]",4557.25,{},19493,1,"""Asia""" +2024-01-17,24362,3907,"[\""Monitor\"", \""Wireless Mouse\""]",2270.5,"{\""seasonal\"": \""11%\""}",134866,1,"""North America""" +2023-08-31,24363,7288,"[\""Tablet\"", \""Wireless Mouse\""]",157.01,{},159137,0,"""Africa""" +2024-12-15,24364,9155,"[\""Monitor\"", \""Wireless Mouse\""]",3761.64,{},176013,1,"""Europe""" +2024-07-29,24365,9001,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4903.01,{},180579,1,"""Africa""" +2024-10-22,24366,6353,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4386.9,"{\""loyalty\"": \""20%\""}",43372,0,"""North America""" +2024-09-01,24367,9610,"[\""Monitor\""]",1932.35,"{\""promo\"": \""6%\""}",60761,1,"""Africa""" +2023-06-29,24368,7632,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2594.07,{},120014,1,"""South America""" +2024-09-20,24369,1389,"[\""Tablet\"", \""Phone\""]",860.29,{},118791,1,"""Africa""" +2024-10-24,24370,2859,"[\""Monitor\""]",2326.1,"{\""loyalty\"": \""5%\""}",162786,1,"""Europe""" +2024-01-06,24371,1208,"[\""Charger\""]",4708.76,"{\""loyalty\"": \""22%\""}",66574,0,"""Asia""" +2024-04-09,24372,9722,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1797.35,"{\"": \""11%\""}",110995,1,"""Europe""" +2023-01-05,24373,8328,"[\""Charger\"", \""Headphones\""]",3402.97,"{\""promo\"": \""17%\""}",226741,1,"""Africa""" +2023-01-03,24374,6747,"[\""Laptop\""]",4968.71,{},138682,1,"""Africa""" +2023-09-17,24375,8297,"[\""Wireless Mouse\""]",4941.15,{},172128,1,"""Africa""" +2023-07-06,24376,6895,"[\""Monitor\""]",4362.89,{},227361,0,"""Asia""" +2023-04-27,24377,1316,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4044.7,"{\"": \""7%\""}",139693,1,"""Africa""" +2024-06-22,24378,9257,"[\""Keyboard\""]",2188.07,{},231339,1,"""South America""" +2024-09-05,24379,7546,"[\""Wireless Mouse\""]",1739.55,"{\"": \""17%\""}",16373,0,"""South America""" +2024-11-27,24380,8749,"[\""Charger\""]",2528.42,"{\""seasonal\"": \""29%\""}",63407,1,"""Europe""" +2023-05-10,24381,535,"[\""Tablet\""]",4063.48,"{\""promo\"": \""30%\""}",229156,1,"""North America""" +2023-04-16,24382,2301,"[\""Wireless Mouse\""]",1173.86,"{\"": \""9%\""}",125397,0,"""Africa""" +2023-11-04,24383,6623,"[\""Keyboard\""]",1230.59,"{\"": \""13%\""}",289851,1,"""North America""" +2024-05-12,24384,4043,"[\""Keyboard\"", \""Phone\""]",642.33,"{\""seasonal\"": \""10%\""}",153982,1,"""Asia""" +2024-06-12,24385,7247,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2224.67,"{\""seasonal\"": \""23%\""}",103285,0,"""Europe""" +2024-08-12,24386,3442,"[\""Wireless Mouse\"", \""Headphones\""]",2280.12,"{\""loyalty\"": \""24%\""}",1611,1,"""Africa""" +2024-06-19,24387,8884,"[\""Tablet\""]",4351.66,"{\"": \""10%\""}",93738,1,"""North America""" +2023-05-25,24388,9556,"[\""Charger\""]",1919.06,{},223031,1,"""Europe""" +2024-03-26,24389,2295,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3915.42,{},123421,1,"""Europe""" +2024-07-12,24390,3325,"[\""Phone\""]",256.9,"{\""loyalty\"": \""16%\""}",34394,0,"""South America""" +2024-01-31,24391,2854,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4754.35,"{\""loyalty\"": \""7%\""}",107846,1,"""Europe""" +2023-12-26,24392,8232,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2434.76,"{\""promo\"": \""13%\""}",50352,0,"""Europe""" +2024-10-20,24393,8423,"[\""Phone\"", \""Laptop\""]",4601.09,{},154089,0,"""North America""" +2023-04-17,24394,9447,"[\""Phone\"", \""Tablet\""]",2931.85,{},112697,0,"""Asia""" +2024-05-25,24395,2324,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1284.81,"{\""promo\"": \""23%\""}",141872,1,"""South America""" +2024-12-16,24396,1329,"[\""Headphones\"", \""Charger\""]",2932.3,{},134906,1,"""South America""" +2023-01-14,24397,9901,"[\""Wireless Mouse\""]",93.16,"{\""loyalty\"": \""7%\""}",227245,0,"""Africa""" +2023-06-05,24398,3750,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1818.01,"{\""seasonal\"": \""21%\""}",63731,1,"""Asia""" +2023-01-18,24399,3949,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1027.91,"{\""promo\"": \""16%\""}",193262,0,"""North America""" +2024-08-24,24400,1084,"[\""Charger\"", \""Headphones\""]",3674.67,"{\""seasonal\"": \""25%\""}",5158,1,"""Africa""" +2024-07-17,24401,3729,"[\""Phone\"", \""Keyboard\""]",4767.58,"{\"": \""8%\""}",9753,0,"""South America""" +2023-02-25,24402,391,"[\""Keyboard\""]",4070.18,{},11785,0,"""South America""" +2023-10-06,24403,803,"[\""Monitor\""]",2978.28,{},272018,0,"""South America""" +2023-05-27,24404,2147,"[\""Headphones\""]",1366.14,{},104525,1,"""North America""" +2023-03-30,24405,8058,"[\""Phone\""]",3180.22,{},221173,1,"""Asia""" +2024-07-29,24406,3366,"[\""Wireless Mouse\"", \""Tablet\""]",2002.05,"{\"": \""24%\""}",182838,1,"""Europe""" +2023-07-19,24407,8845,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2534.82,{},203090,1,"""Europe""" +2024-11-17,24408,9857,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3836.1,{},280399,0,"""Africa""" +2024-07-18,24409,2905,"[\""Wireless Mouse\"", \""Laptop\""]",2316.01,{},192677,1,"""South America""" +2024-08-15,24410,7974,"[\""Charger\"", \""Laptop\""]",2758.68,{},191120,1,"""South America""" +2023-12-14,24411,7223,"[\""Keyboard\"", \""Phone\""]",2946.38,{},64332,1,"""North America""" +2023-07-25,24412,2826,"[\""Wireless Mouse\"", \""Laptop\""]",1059.71,"{\""seasonal\"": \""19%\""}",190888,1,"""Europe""" +2024-10-05,24413,9306,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",998.33,{},228915,0,"""Asia""" +2024-12-15,24414,1694,"[\""Charger\"", \""Tablet\""]",2986.95,"{\"": \""27%\""}",19591,0,"""Africa""" +2024-02-03,24415,5065,"[\""Monitor\""]",4738.16,{},60550,0,"""North America""" +2023-10-04,24416,1820,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",341.56,{},49811,1,"""Europe""" +2023-08-22,24417,8380,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",179.18,"{\"": \""18%\""}",39762,1,"""South America""" +2024-08-11,24418,2217,"[\""Phone\"", \""Tablet\""]",2860.02,"{\""seasonal\"": \""18%\""}",7143,0,"""Europe""" +2023-04-19,24419,3156,"[\""Laptop\"", \""Charger\""]",4071.65,{},186539,0,"""Asia""" +2023-05-08,24420,7193,"[\""Phone\"", \""Laptop\""]",624.35,{},91132,1,"""North America""" +2023-05-23,24421,7682,"[\""Monitor\"", \""Charger\""]",269.41,{},24542,0,"""Europe""" +2024-03-13,24422,8248,"[\""Phone\""]",1993.9,"{\"": \""26%\""}",187605,0,"""North America""" +2023-11-14,24423,2708,"[\""Laptop\""]",3488.62,{},281605,0,"""Europe""" +2024-09-08,24424,9803,"[\""Tablet\"", \""Phone\""]",2303.04,{},180891,0,"""North America""" +2023-11-30,24425,9287,"[\""Charger\"", \""Headphones\""]",520.47,{},158681,1,"""Asia""" +2023-01-14,24426,2261,"[\""Wireless Mouse\"", \""Monitor\""]",3274.94,{},247343,1,"""North America""" +2023-05-17,24427,5998,"[\""Phone\"", \""Laptop\""]",432.17,{},237377,1,"""South America""" +2024-12-20,24428,537,"[\""Wireless Mouse\""]",1126.67,{},149711,0,"""North America""" +2023-10-12,24429,6091,"[\""Monitor\""]",91.02,{},13792,1,"""North America""" +2023-03-18,24430,5369,"[\""Tablet\""]",2420.0,"{\""loyalty\"": \""28%\""}",23952,1,"""Africa""" +2024-04-28,24431,7730,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2658.76,{},100167,0,"""South America""" +2024-12-22,24432,2866,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4726.88,{},236795,1,"""Asia""" +2023-09-10,24433,6924,"[\""Wireless Mouse\""]",1919.22,"{\""promo\"": \""29%\""}",73329,1,"""South America""" +2023-08-23,24434,9514,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",815.38,"{\""loyalty\"": \""12%\""}",90617,1,"""South America""" +2024-01-20,24435,4974,"[\""Keyboard\""]",3399.21,"{\""promo\"": \""5%\""}",276927,0,"""Asia""" +2024-07-21,24436,2966,"[\""Laptop\""]",2079.78,{},184053,1,"""South America""" +2024-06-04,24437,4069,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1929.42,"{\""seasonal\"": \""5%\""}",271308,0,"""Asia""" +2023-05-23,24438,2295,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3053.61,{},64216,0,"""Europe""" +2023-08-15,24439,2713,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4713.14,"{\""promo\"": \""21%\""}",221410,1,"""Asia""" +2024-06-16,24440,2843,"[\""Tablet\"", \""Phone\""]",3106.67,"{\"": \""21%\""}",25491,1,"""Africa""" +2024-02-21,24441,2658,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",647.11,{},83484,0,"""Asia""" +2023-04-24,24442,7238,"[\""Tablet\""]",1395.99,"{\""loyalty\"": \""18%\""}",194658,1,"""South America""" +2023-10-19,24443,5082,"[\""Keyboard\"", \""Tablet\""]",2854.69,"{\""seasonal\"": \""23%\""}",104556,1,"""North America""" +2024-03-03,24444,5995,"[\""Keyboard\"", \""Monitor\""]",3234.33,{},209220,1,"""South America""" +2024-12-25,24445,4886,"[\""Laptop\"", \""Charger\""]",4114.62,"{\""loyalty\"": \""7%\""}",164616,0,"""South America""" +2023-06-13,24446,6926,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3922.69,"{\""seasonal\"": \""17%\""}",114010,0,"""Europe""" +2023-10-28,24447,9905,"[\""Keyboard\"", \""Wireless Mouse\""]",329.31,"{\""promo\"": \""20%\""}",245922,0,"""Europe""" +2023-02-09,24448,189,"[\""Phone\""]",2417.27,{},143426,0,"""North America""" +2024-05-31,24449,6965,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1242.82,{},154643,1,"""Africa""" +2023-07-03,24450,4226,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2089.87,{},51706,0,"""Africa""" +2023-05-16,24451,322,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",265.82,"{\"": \""23%\""}",103771,1,"""Europe""" +2023-12-22,24452,5454,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2076.72,"{\"": \""11%\""}",116470,1,"""North America""" +2024-09-13,24453,7300,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2328.62,"{\""seasonal\"": \""9%\""}",299812,1,"""South America""" +2024-12-09,24454,9293,"[\""Phone\"", \""Monitor\""]",3548.81,{},63811,1,"""North America""" +2024-07-27,24455,969,"[\""Charger\"", \""Headphones\""]",3468.58,{},109380,0,"""North America""" +2023-06-29,24456,9862,"[\""Laptop\""]",1378.7,"{\""seasonal\"": \""7%\""}",94236,1,"""Africa""" +2023-11-14,24457,3371,"[\""Charger\"", \""Phone\""]",4398.25,"{\""promo\"": \""16%\""}",281340,1,"""Europe""" +2023-06-03,24458,789,"[\""Monitor\""]",1198.63,"{\""seasonal\"": \""20%\""}",206211,0,"""South America""" +2024-04-27,24459,3535,"[\""Laptop\"", \""Monitor\""]",2283.93,"{\""loyalty\"": \""23%\""}",43534,1,"""Asia""" +2024-09-06,24460,8320,"[\""Laptop\""]",386.04,{},86390,0,"""Africa""" +2023-12-31,24461,4977,"[\""Phone\""]",1521.13,"{\""promo\"": \""12%\""}",76832,0,"""Asia""" +2023-09-09,24462,9910,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",949.23,{},235082,1,"""Europe""" +2024-12-05,24463,3901,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",826.38,"{\""loyalty\"": \""6%\""}",125839,1,"""Europe""" +2024-10-06,24464,4608,"[\""Phone\""]",3133.86,"{\""seasonal\"": \""28%\""}",108581,1,"""Africa""" +2024-08-24,24465,8967,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",976.28,{},67497,0,"""Africa""" +2024-11-20,24466,4865,"[\""Phone\"", \""Tablet\""]",475.73,{},85889,0,"""Europe""" +2023-07-24,24467,3001,"[\""Headphones\"", \""Phone\""]",3590.85,{},64684,0,"""Africa""" +2024-06-17,24468,5273,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",551.22,{},1109,1,"""South America""" +2024-03-26,24469,7306,"[\""Keyboard\"", \""Wireless Mouse\""]",1808.42,"{\""promo\"": \""17%\""}",242168,0,"""Africa""" +2023-10-20,24470,9524,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4317.31,{},122311,1,"""North America""" +2024-08-11,24471,7408,"[\""Monitor\"", \""Keyboard\""]",492.98,{},259204,1,"""South America""" +2023-02-01,24472,7952,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3414.14,"{\""seasonal\"": \""18%\""}",139257,1,"""Asia""" +2023-09-30,24473,6993,"[\""Tablet\""]",331.92,{},133115,0,"""South America""" +2023-05-25,24474,8126,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1875.66,{},158245,0,"""Africa""" +2024-01-04,24475,8499,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",109.57,"{\""seasonal\"": \""23%\""}",53511,1,"""North America""" +2024-05-26,24476,904,"[\""Charger\""]",4445.72,{},233790,0,"""Asia""" +2023-01-10,24477,946,"[\""Charger\"", \""Wireless Mouse\""]",2333.15,"{\"": \""7%\""}",265965,1,"""Europe""" +2024-05-04,24478,1437,"[\""Charger\"", \""Laptop\""]",1689.16,"{\""promo\"": \""5%\""}",243314,1,"""Asia""" +2023-01-08,24479,563,"[\""Monitor\""]",2353.91,"{\""loyalty\"": \""21%\""}",187401,1,"""Africa""" +2023-08-07,24480,2640,"[\""Laptop\"", \""Phone\""]",3885.07,{},102450,1,"""Europe""" +2023-11-04,24481,5379,"[\""Keyboard\""]",3652.32,"{\"": \""7%\""}",279637,1,"""Asia""" +2024-12-04,24482,2599,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4125.24,"{\"": \""21%\""}",155420,0,"""Africa""" +2024-12-23,24483,4895,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2742.11,{},45490,0,"""Europe""" +2023-05-04,24484,5871,"[\""Laptop\""]",222.97,{},22326,0,"""Europe""" +2024-04-29,24485,4569,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3334.77,"{\"": \""20%\""}",250275,0,"""Asia""" +2023-12-03,24486,4963,"[\""Keyboard\"", \""Tablet\""]",3143.14,{},133558,1,"""Asia""" +2023-02-08,24487,4879,"[\""Phone\""]",2041.04,{},216099,1,"""Africa""" +2024-03-17,24488,4713,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3708.01,"{\""promo\"": \""6%\""}",268839,0,"""South America""" +2023-08-05,24489,7129,"[\""Wireless Mouse\"", \""Keyboard\""]",3221.25,"{\""promo\"": \""11%\""}",19911,1,"""Africa""" +2023-01-20,24490,9059,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3426.18,"{\""loyalty\"": \""26%\""}",13392,0,"""North America""" +2023-12-17,24491,2865,"[\""Charger\""]",3223.1,"{\""seasonal\"": \""20%\""}",126219,0,"""Africa""" +2024-12-03,24492,6842,"[\""Laptop\""]",3948.45,"{\""seasonal\"": \""15%\""}",293410,0,"""Africa""" +2024-05-01,24493,996,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3899.4,{},109215,1,"""North America""" +2024-05-07,24494,2764,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1988.5,{},253972,0,"""Africa""" +2023-06-25,24495,5095,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",58.1,"{\""seasonal\"": \""26%\""}",146662,0,"""North America""" +2024-08-15,24496,3690,"[\""Headphones\""]",3833.61,{},141993,1,"""Asia""" +2023-01-07,24497,8065,"[\""Tablet\""]",4233.65,"{\""seasonal\"": \""21%\""}",254994,0,"""Asia""" +2023-11-24,24498,8641,"[\""Charger\"", \""Tablet\""]",3156.89,"{\""seasonal\"": \""7%\""}",284479,1,"""Europe""" +2024-12-05,24499,4245,"[\""Laptop\"", \""Tablet\""]",1443.44,"{\"": \""13%\""}",203557,1,"""Europe""" +2023-02-09,24500,5311,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4834.82,"{\""loyalty\"": \""17%\""}",23262,1,"""Europe""" +2023-11-11,24501,1562,"[\""Charger\""]",3070.46,"{\""promo\"": \""8%\""}",155247,1,"""North America""" +2023-02-09,24502,2189,"[\""Monitor\"", \""Headphones\""]",3438.21,"{\""seasonal\"": \""8%\""}",172826,1,"""North America""" +2023-04-20,24503,9314,"[\""Laptop\"", \""Wireless Mouse\""]",2040.98,{},262484,1,"""Europe""" +2023-08-19,24504,5442,"[\""Charger\""]",4248.04,"{\""promo\"": \""9%\""}",84874,0,"""North America""" +2023-03-12,24505,4226,"[\""Tablet\"", \""Headphones\""]",2427.64,{},179764,0,"""Europe""" +2024-11-08,24506,5128,"[\""Tablet\"", \""Phone\""]",3822.21,"{\""loyalty\"": \""10%\""}",284611,0,"""Europe""" +2023-12-12,24507,2860,"[\""Tablet\""]",4453.0,{},164044,1,"""Europe""" +2024-06-05,24508,583,"[\""Headphones\""]",1619.15,"{\""seasonal\"": \""29%\""}",266384,1,"""Asia""" +2024-04-26,24509,8950,"[\""Charger\""]",1562.77,{},180876,1,"""Europe""" +2023-11-26,24510,3071,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2254.71,{},266605,1,"""South America""" +2024-09-18,24511,210,"[\""Laptop\"", \""Tablet\""]",3957.52,"{\""seasonal\"": \""10%\""}",25184,1,"""North America""" +2024-07-30,24512,8349,"[\""Headphones\""]",3515.93,"{\""promo\"": \""10%\""}",273285,1,"""South America""" +2024-08-24,24513,214,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2465.09,{},56958,1,"""Europe""" +2023-10-08,24514,681,"[\""Tablet\""]",2919.29,{},283927,1,"""South America""" +2023-05-19,24515,6231,"[\""Monitor\"", \""Tablet\""]",4308.56,"{\""promo\"": \""15%\""}",201727,1,"""South America""" +2024-04-22,24516,5200,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",468.61,{},22094,0,"""Europe""" +2024-08-19,24517,8414,"[\""Wireless Mouse\""]",262.29,"{\""seasonal\"": \""16%\""}",242417,1,"""North America""" +2023-03-11,24518,9152,"[\""Phone\""]",234.53,"{\""loyalty\"": \""26%\""}",49724,0,"""Africa""" +2023-12-25,24519,7352,"[\""Keyboard\"", \""Headphones\""]",1360.86,"{\""loyalty\"": \""7%\""}",182001,0,"""North America""" +2024-03-18,24520,5438,"[\""Tablet\""]",3368.02,"{\""seasonal\"": \""27%\""}",170289,0,"""South America""" +2024-01-02,24521,5254,"[\""Headphones\""]",784.87,{},78152,1,"""South America""" +2023-01-01,24522,2570,"[\""Tablet\""]",1850.16,{},128129,1,"""Africa""" +2024-03-03,24523,4299,"[\""Phone\""]",3867.71,{},217064,0,"""North America""" +2023-06-12,24524,5709,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4354.32,"{\""promo\"": \""14%\""}",76922,0,"""North America""" +2023-01-09,24525,677,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4773.29,{},207468,0,"""Africa""" +2024-10-07,24526,3623,"[\""Phone\"", \""Charger\""]",3122.93,"{\"": \""29%\""}",294492,1,"""Africa""" +2024-11-07,24527,1640,"[\""Monitor\"", \""Charger\""]",1915.86,"{\""promo\"": \""10%\""}",91763,0,"""South America""" +2023-08-24,24528,5240,"[\""Laptop\""]",187.51,{},77509,0,"""North America""" +2024-01-07,24529,5060,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3719.51,"{\""seasonal\"": \""30%\""}",269938,1,"""North America""" +2023-05-17,24530,3720,"[\""Keyboard\""]",2881.57,"{\""loyalty\"": \""23%\""}",258042,0,"""North America""" +2023-04-24,24531,25,"[\""Tablet\""]",1020.33,"{\""promo\"": \""30%\""}",88634,0,"""South America""" +2023-02-15,24532,4255,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1740.53,"{\""promo\"": \""14%\""}",60266,0,"""Asia""" +2024-04-25,24533,3457,"[\""Keyboard\""]",2245.62,"{\"": \""9%\""}",35754,0,"""Europe""" +2023-05-19,24534,9650,"[\""Tablet\"", \""Laptop\""]",2384.7,{},56041,1,"""Europe""" +2024-07-28,24535,5486,"[\""Laptop\"", \""Charger\""]",1417.53,{},190017,1,"""North America""" +2023-04-26,24536,7966,"[\""Headphones\"", \""Keyboard\""]",1542.66,"{\""loyalty\"": \""19%\""}",194280,1,"""Africa""" +2023-02-02,24537,8210,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4376.89,{},214876,0,"""Europe""" +2023-08-02,24538,5455,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2733.38,{},106637,1,"""Africa""" +2023-03-27,24539,4463,"[\""Monitor\""]",2347.76,{},95438,1,"""Europe""" +2024-01-17,24540,9619,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3389.88,{},258877,0,"""North America""" +2024-09-12,24541,1274,"[\""Tablet\""]",2275.21,{},276209,1,"""South America""" +2024-07-17,24542,4119,"[\""Headphones\"", \""Charger\""]",4765.22,{},69129,0,"""Asia""" +2023-07-27,24543,9755,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4657.85,{},115932,1,"""Africa""" +2024-07-13,24544,1546,"[\""Keyboard\""]",1847.49,"{\"": \""12%\""}",52924,1,"""Europe""" +2023-08-21,24545,1938,"[\""Wireless Mouse\"", \""Laptop\""]",3292.65,"{\""promo\"": \""9%\""}",178251,1,"""Europe""" +2024-02-16,24546,7078,"[\""Charger\""]",4933.29,"{\""seasonal\"": \""7%\""}",5458,0,"""North America""" +2023-06-02,24547,1534,"[\""Laptop\"", \""Tablet\""]",766.98,"{\""seasonal\"": \""22%\""}",254063,0,"""South America""" +2024-02-21,24548,7985,"[\""Headphones\"", \""Keyboard\""]",1694.82,"{\""seasonal\"": \""24%\""}",238465,0,"""Europe""" +2024-06-07,24549,3161,"[\""Laptop\""]",3295.01,{},205793,1,"""Europe""" +2024-10-22,24550,6418,"[\""Phone\""]",1500.81,{},294935,1,"""Africa""" +2023-08-02,24551,4600,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4538.94,"{\""seasonal\"": \""6%\""}",189951,0,"""Africa""" +2023-03-18,24552,2433,"[\""Keyboard\""]",972.58,"{\""seasonal\"": \""5%\""}",284992,0,"""South America""" +2024-09-20,24553,4073,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2688.62,{},24983,1,"""Asia""" +2024-01-17,24554,5593,"[\""Headphones\"", \""Tablet\""]",2733.88,{},37084,0,"""Europe""" +2024-06-22,24555,3868,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3117.22,{},126285,1,"""North America""" +2023-08-30,24556,3216,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2847.83,"{\""seasonal\"": \""9%\""}",117703,0,"""Asia""" +2023-04-15,24557,8469,"[\""Phone\""]",3180.37,{},231623,0,"""North America""" +2023-05-24,24558,3479,"[\""Tablet\"", \""Wireless Mouse\""]",3240.38,"{\"": \""26%\""}",215082,1,"""North America""" +2024-05-01,24559,7398,"[\""Monitor\"", \""Headphones\""]",4235.52,"{\""seasonal\"": \""6%\""}",69803,0,"""Africa""" +2023-03-26,24560,2395,"[\""Keyboard\""]",4608.28,{},282033,1,"""South America""" +2024-02-28,24561,8743,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",982.98,"{\""loyalty\"": \""27%\""}",134071,1,"""South America""" +2023-07-13,24562,1715,"[\""Phone\"", \""Laptop\""]",2365.59,{},120897,1,"""Europe""" +2024-09-19,24563,4540,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",910.5,{},76576,1,"""North America""" +2024-04-06,24564,8887,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3633.41,{},50169,1,"""South America""" +2023-01-07,24565,6600,"[\""Laptop\""]",445.13,"{\"": \""25%\""}",75571,1,"""South America""" +2023-03-21,24566,2242,"[\""Keyboard\"", \""Tablet\""]",3846.69,"{\"": \""19%\""}",209853,1,"""Europe""" +2023-04-01,24567,4075,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4378.18,"{\"": \""11%\""}",81791,0,"""South America""" +2023-04-29,24568,7272,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1835.71,"{\""loyalty\"": \""10%\""}",186061,1,"""South America""" +2023-02-05,24569,1380,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4676.12,"{\""seasonal\"": \""16%\""}",248128,0,"""South America""" +2023-12-31,24570,9826,"[\""Phone\"", \""Headphones\""]",1542.05,{},222878,1,"""Africa""" +2023-03-28,24571,7535,"[\""Wireless Mouse\"", \""Phone\""]",4499.17,{},4986,0,"""Europe""" +2023-05-29,24572,1187,"[\""Keyboard\"", \""Wireless Mouse\""]",900.1,"{\"": \""6%\""}",116537,0,"""Africa""" +2023-03-11,24573,7575,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1304.18,"{\""loyalty\"": \""6%\""}",299160,0,"""Europe""" +2024-10-23,24574,9052,"[\""Headphones\"", \""Phone\""]",3878.03,{},84009,1,"""Europe""" +2024-01-02,24575,4386,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4677.29,{},188151,0,"""Europe""" +2024-12-08,24576,866,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1087.09,{},176232,1,"""Africa""" +2023-06-08,24577,7531,"[\""Charger\"", \""Phone\""]",2249.89,{},81618,1,"""Africa""" +2023-03-27,24578,5328,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3279.7,{},10543,1,"""South America""" +2024-10-24,24579,7453,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4824.92,"{\""promo\"": \""7%\""}",246951,1,"""Africa""" +2023-01-05,24580,7387,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3391.42,{},79894,0,"""South America""" +2024-08-13,24581,3595,"[\""Monitor\""]",2224.69,{},147949,0,"""Asia""" +2024-11-10,24582,338,"[\""Keyboard\""]",4755.97,{},71429,1,"""Asia""" +2024-03-02,24583,7926,"[\""Laptop\""]",2313.4,{},111702,0,"""South America""" +2023-06-19,24584,2726,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",579.82,{},196457,0,"""Europe""" +2023-02-13,24585,4755,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",784.42,"{\""promo\"": \""21%\""}",247013,0,"""Europe""" +2024-06-15,24586,6979,"[\""Keyboard\"", \""Laptop\""]",4645.84,{},280891,1,"""North America""" +2024-09-23,24587,1974,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3248.11,{},206059,1,"""Europe""" +2024-11-26,24588,4884,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3219.12,"{\""promo\"": \""14%\""}",296085,1,"""Asia""" +2024-05-09,24589,9094,"[\""Tablet\"", \""Headphones\""]",4613.16,{},49870,1,"""Europe""" +2024-08-01,24590,5609,"[\""Wireless Mouse\""]",3956.51,{},50344,1,"""Asia""" +2023-01-01,24591,4888,"[\""Keyboard\""]",3388.12,"{\""loyalty\"": \""16%\""}",155273,0,"""North America""" +2024-03-16,24592,9331,"[\""Headphones\"", \""Phone\""]",3348.0,{},200038,0,"""South America""" +2024-05-30,24593,8832,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4288.17,{},114356,0,"""South America""" +2024-09-01,24594,3517,"[\""Headphones\"", \""Keyboard\""]",4660.92,{},187638,0,"""Africa""" +2024-03-30,24595,1401,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2200.82,"{\""seasonal\"": \""8%\""}",278583,1,"""North America""" +2024-03-28,24596,9766,"[\""Laptop\""]",1104.51,"{\"": \""17%\""}",129262,1,"""Asia""" +2024-05-22,24597,1113,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2659.41,{},144720,0,"""North America""" +2024-05-26,24598,6435,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1232.88,"{\"": \""13%\""}",143715,1,"""North America""" +2024-12-24,24599,4881,"[\""Phone\"", \""Charger\""]",972.04,"{\""seasonal\"": \""25%\""}",208413,1,"""North America""" +2023-10-11,24600,2888,"[\""Tablet\"", \""Headphones\""]",3671.34,{},110974,1,"""Europe""" +2023-07-08,24601,3573,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3188.41,{},287555,1,"""Asia""" +2024-11-23,24602,400,"[\""Tablet\"", \""Phone\""]",1408.97,{},73461,1,"""South America""" +2023-10-05,24603,3638,"[\""Laptop\"", \""Keyboard\""]",1017.47,{},178141,0,"""Asia""" +2023-09-16,24604,4629,"[\""Wireless Mouse\"", \""Keyboard\""]",2738.01,{},249066,1,"""Asia""" +2024-03-15,24605,1097,"[\""Keyboard\"", \""Laptop\""]",4762.37,"{\""loyalty\"": \""26%\""}",256169,0,"""North America""" +2024-02-07,24606,7284,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2834.1,{},224275,0,"""South America""" +2023-03-09,24607,1525,"[\""Monitor\""]",507.05,"{\"": \""9%\""}",122360,0,"""Asia""" +2024-11-01,24608,3801,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4729.86,{},197292,0,"""Asia""" +2024-02-26,24609,6728,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1826.71,"{\""seasonal\"": \""29%\""}",130541,1,"""Asia""" +2023-09-14,24610,6984,"[\""Laptop\"", \""Keyboard\""]",1284.68,{},167323,1,"""Africa""" +2024-03-16,24611,3531,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",393.54,{},181884,1,"""South America""" +2024-03-22,24612,9201,"[\""Phone\"", \""Laptop\""]",1623.21,{},19736,1,"""Asia""" +2023-02-13,24613,9934,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4473.39,{},221382,1,"""Europe""" +2023-11-16,24614,3692,"[\""Monitor\""]",855.03,{},125086,0,"""Africa""" +2023-05-28,24615,6717,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",991.89,{},76019,0,"""Asia""" +2024-04-10,24616,6525,"[\""Tablet\"", \""Headphones\""]",3535.24,"{\""seasonal\"": \""12%\""}",188928,0,"""North America""" +2023-04-15,24617,6989,"[\""Tablet\"", \""Headphones\""]",3632.59,"{\""promo\"": \""16%\""}",258272,1,"""North America""" +2024-08-25,24618,9980,"[\""Keyboard\""]",160.37,"{\"": \""19%\""}",226835,0,"""South America""" +2023-04-29,24619,8858,"[\""Keyboard\""]",1272.68,{},177258,0,"""North America""" +2024-06-10,24620,4693,"[\""Monitor\"", \""Wireless Mouse\""]",3733.84,{},172266,0,"""South America""" +2024-11-25,24621,9862,"[\""Keyboard\"", \""Tablet\""]",4834.73,{},77558,1,"""Africa""" +2023-12-18,24622,446,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1739.41,"{\""promo\"": \""20%\""}",105282,0,"""North America""" +2023-01-25,24623,1173,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4618.95,"{\"": \""16%\""}",48929,1,"""Asia""" +2023-07-30,24624,7291,"[\""Headphones\""]",3372.23,{},107188,1,"""South America""" +2023-09-28,24625,481,"[\""Charger\"", \""Phone\""]",2970.13,"{\""promo\"": \""7%\""}",283466,0,"""North America""" +2023-10-04,24626,4865,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",355.4,"{\""seasonal\"": \""9%\""}",17993,1,"""South America""" +2023-01-21,24627,1414,"[\""Charger\"", \""Phone\""]",567.82,"{\""loyalty\"": \""10%\""}",270311,0,"""Europe""" +2024-04-14,24628,4160,"[\""Wireless Mouse\"", \""Phone\""]",3134.59,"{\"": \""28%\""}",132566,0,"""Africa""" +2023-08-26,24629,4101,"[\""Tablet\"", \""Charger\""]",3616.73,{},261790,0,"""Europe""" +2024-10-10,24630,3373,"[\""Tablet\""]",4746.19,{},120236,1,"""Asia""" +2023-12-09,24631,392,"[\""Headphones\""]",205.28,"{\"": \""13%\""}",294644,0,"""South America""" +2024-01-26,24632,5331,"[\""Phone\""]",4090.07,{},260804,1,"""Africa""" +2023-10-26,24633,257,"[\""Tablet\""]",409.88,{},62697,0,"""South America""" +2024-09-29,24634,5949,"[\""Headphones\""]",877.0,{},110896,1,"""Europe""" +2024-01-08,24635,4939,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",417.39,"{\""seasonal\"": \""26%\""}",119724,1,"""Asia""" +2023-03-01,24636,2194,"[\""Tablet\"", \""Wireless Mouse\""]",4943.54,"{\""loyalty\"": \""16%\""}",4080,1,"""Africa""" +2023-12-13,24637,3441,"[\""Laptop\""]",414.83,"{\""seasonal\"": \""13%\""}",264904,1,"""Europe""" +2024-11-08,24638,6577,"[\""Tablet\"", \""Wireless Mouse\""]",2055.9,"{\""promo\"": \""16%\""}",194577,1,"""Europe""" +2024-11-09,24639,8091,"[\""Wireless Mouse\""]",4080.17,"{\""loyalty\"": \""26%\""}",123893,1,"""South America""" +2023-05-14,24640,7942,"[\""Monitor\"", \""Wireless Mouse\""]",2751.6,{},168804,1,"""Africa""" +2023-09-26,24641,9976,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",129.2,{},230839,0,"""Asia""" +2024-04-14,24642,6551,"[\""Tablet\"", \""Charger\""]",430.01,"{\"": \""16%\""}",184249,1,"""Africa""" +2024-04-28,24643,6667,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1473.43,"{\"": \""17%\""}",201945,1,"""South America""" +2024-10-15,24644,932,"[\""Monitor\"", \""Laptop\""]",2801.78,{},185076,1,"""Europe""" +2023-08-08,24645,1713,"[\""Laptop\""]",1386.5,"{\""promo\"": \""12%\""}",285436,1,"""Asia""" +2024-02-24,24646,5007,"[\""Monitor\"", \""Charger\""]",3961.84,"{\""seasonal\"": \""10%\""}",105222,0,"""South America""" +2023-06-28,24647,752,"[\""Monitor\""]",4263.67,{},44424,1,"""Asia""" +2024-02-06,24648,5251,"[\""Wireless Mouse\""]",3913.68,{},15192,1,"""South America""" +2024-10-07,24649,3326,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1128.05,"{\""loyalty\"": \""16%\""}",154767,0,"""Asia""" +2023-05-11,24650,7393,"[\""Wireless Mouse\"", \""Headphones\""]",3326.88,"{\""loyalty\"": \""13%\""}",86527,0,"""South America""" +2024-08-06,24651,9033,"[\""Laptop\"", \""Headphones\""]",794.96,{},266707,1,"""South America""" +2023-11-24,24652,4667,"[\""Tablet\"", \""Wireless Mouse\""]",3812.08,{},25252,1,"""Europe""" +2024-06-07,24653,5373,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4653.02,"{\""promo\"": \""8%\""}",176709,0,"""Europe""" +2023-05-22,24654,593,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",426.84,{},256157,0,"""South America""" +2023-05-14,24655,4783,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3576.26,"{\""seasonal\"": \""13%\""}",296103,1,"""Europe""" +2023-01-02,24656,7641,"[\""Wireless Mouse\"", \""Headphones\""]",4803.79,"{\"": \""25%\""}",94290,1,"""Africa""" +2023-04-03,24657,9853,"[\""Headphones\"", \""Keyboard\""]",4551.34,"{\"": \""25%\""}",185583,1,"""Europe""" +2024-10-28,24658,8017,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2616.16,"{\""loyalty\"": \""12%\""}",265609,0,"""South America""" +2023-06-29,24659,6791,"[\""Tablet\""]",556.14,{},182518,1,"""North America""" +2024-02-24,24660,7953,"[\""Wireless Mouse\""]",1207.17,"{\""loyalty\"": \""7%\""}",25009,1,"""Europe""" +2024-07-14,24661,5646,"[\""Keyboard\"", \""Charger\""]",4046.61,{},238663,1,"""North America""" +2024-01-04,24662,5738,"[\""Phone\"", \""Charger\""]",3790.72,{},294213,0,"""South America""" +2023-10-11,24663,8837,"[\""Keyboard\"", \""Wireless Mouse\""]",2550.44,"{\""seasonal\"": \""9%\""}",266721,1,"""Africa""" +2024-02-04,24664,7015,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3346.23,{},191858,1,"""Europe""" +2024-12-22,24665,4919,"[\""Keyboard\"", \""Monitor\""]",3936.28,{},154101,0,"""Asia""" +2024-10-13,24666,1779,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2466.86,"{\""loyalty\"": \""16%\""}",175945,1,"""Africa""" +2023-05-10,24667,5817,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2814.25,{},26341,0,"""Asia""" +2023-01-21,24668,7630,"[\""Wireless Mouse\"", \""Headphones\""]",1381.81,{},19235,1,"""Africa""" +2023-10-30,24669,6818,"[\""Headphones\"", \""Wireless Mouse\""]",3791.46,"{\"": \""16%\""}",182227,0,"""South America""" +2024-12-26,24670,5884,"[\""Headphones\"", \""Charger\""]",970.93,{},10839,0,"""Europe""" +2024-12-13,24671,6314,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4507.93,{},174698,0,"""Europe""" +2023-05-17,24672,5460,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2527.88,"{\""seasonal\"": \""16%\""}",227048,1,"""South America""" +2023-04-28,24673,5909,"[\""Keyboard\"", \""Headphones\""]",4977.08,"{\"": \""28%\""}",224014,1,"""South America""" +2023-02-05,24674,6803,"[\""Charger\"", \""Tablet\""]",801.79,{},131992,1,"""South America""" +2023-06-02,24675,7647,"[\""Wireless Mouse\"", \""Keyboard\""]",3500.05,"{\""promo\"": \""30%\""}",225451,0,"""Europe""" +2024-01-03,24676,9493,"[\""Charger\"", \""Phone\""]",4983.57,{},21771,1,"""South America""" +2023-05-03,24677,5188,"[\""Wireless Mouse\""]",4216.75,"{\""promo\"": \""21%\""}",244534,1,"""Europe""" +2023-01-24,24678,1802,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4492.71,"{\"": \""30%\""}",65081,1,"""Africa""" +2023-06-30,24679,9322,"[\""Wireless Mouse\""]",721.65,"{\""loyalty\"": \""8%\""}",228312,1,"""South America""" +2024-06-10,24680,1280,"[\""Wireless Mouse\""]",4655.15,"{\""promo\"": \""15%\""}",190607,1,"""North America""" +2023-02-13,24681,7026,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4205.98,{},208999,0,"""Africa""" +2023-12-06,24682,1475,"[\""Monitor\"", \""Wireless Mouse\""]",4033.67,{},204182,0,"""North America""" +2024-08-10,24683,6895,"[\""Headphones\""]",2573.81,"{\""loyalty\"": \""27%\""}",119273,0,"""Africa""" +2024-03-21,24684,1570,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3630.04,"{\"": \""10%\""}",245967,0,"""South America""" +2024-12-07,24685,5333,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2054.76,{},256671,0,"""South America""" +2024-01-21,24686,2889,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1963.47,"{\"": \""19%\""}",251335,0,"""Asia""" +2023-01-01,24687,1762,"[\""Wireless Mouse\"", \""Laptop\""]",4080.92,{},230779,1,"""South America""" +2024-08-22,24688,5100,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",403.99,{},194993,1,"""South America""" +2023-10-24,24689,3642,"[\""Laptop\"", \""Monitor\""]",4079.23,{},162082,1,"""Europe""" +2024-05-18,24690,5242,"[\""Phone\"", \""Headphones\""]",4452.35,"{\"": \""26%\""}",256453,0,"""South America""" +2023-05-03,24691,4043,"[\""Headphones\"", \""Monitor\""]",309.51,"{\""seasonal\"": \""24%\""}",288745,0,"""South America""" +2023-09-30,24692,1785,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",852.78,{},82556,0,"""Africa""" +2024-08-10,24693,16,"[\""Headphones\""]",4960.19,{},290202,0,"""Asia""" +2023-04-24,24694,6235,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2412.27,{},216181,1,"""Asia""" +2024-03-07,24695,3597,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2787.1,{},108223,1,"""Africa""" +2023-04-26,24696,6574,"[\""Headphones\"", \""Tablet\""]",4065.6,{},29189,0,"""Europe""" +2024-02-29,24697,5952,"[\""Wireless Mouse\""]",3184.74,"{\""loyalty\"": \""18%\""}",113483,0,"""North America""" +2024-10-06,24698,5802,"[\""Monitor\"", \""Phone\""]",707.53,{},114406,0,"""Asia""" +2023-04-30,24699,1842,"[\""Tablet\""]",1564.25,"{\"": \""28%\""}",2974,1,"""Asia""" +2023-02-25,24700,6073,"[\""Keyboard\"", \""Charger\""]",2254.93,"{\""loyalty\"": \""16%\""}",27285,1,"""South America""" +2023-05-11,24701,875,"[\""Laptop\"", \""Monitor\""]",1366.69,{},157452,1,"""Africa""" +2024-01-28,24702,1114,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3476.22,{},264561,1,"""North America""" +2024-08-23,24703,2891,"[\""Keyboard\""]",3376.29,{},166175,1,"""South America""" +2023-05-22,24704,8314,"[\""Laptop\"", \""Monitor\""]",4199.28,{},64266,1,"""Africa""" +2024-01-08,24705,7429,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3670.99,{},72827,1,"""North America""" +2023-10-27,24706,7807,"[\""Monitor\"", \""Headphones\""]",4444.54,"{\""loyalty\"": \""18%\""}",164748,0,"""Asia""" +2024-06-15,24707,7954,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4716.65,{},66475,0,"""Europe""" +2023-08-25,24708,4789,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1207.45,"{\""seasonal\"": \""15%\""}",211048,0,"""South America""" +2023-11-06,24709,4921,"[\""Phone\"", \""Keyboard\""]",435.79,{},286742,1,"""Africa""" +2023-12-05,24710,7433,"[\""Wireless Mouse\""]",1487.38,{},209777,0,"""South America""" +2024-08-12,24711,974,"[\""Monitor\"", \""Charger\""]",393.62,{},208403,0,"""North America""" +2023-09-13,24712,6858,"[\""Headphones\""]",135.72,"{\""loyalty\"": \""10%\""}",98727,0,"""Africa""" +2023-06-06,24713,2071,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3037.43,{},155870,1,"""Asia""" +2023-11-10,24714,4623,"[\""Wireless Mouse\""]",1267.2,{},258956,0,"""Africa""" +2024-07-28,24715,6186,"[\""Charger\""]",1973.08,"{\""seasonal\"": \""10%\""}",192218,0,"""Africa""" +2024-11-05,24716,6924,"[\""Wireless Mouse\"", \""Tablet\""]",3209.02,"{\""promo\"": \""14%\""}",165352,1,"""North America""" +2024-11-25,24717,5191,"[\""Monitor\"", \""Laptop\""]",2258.16,{},93786,1,"""Africa""" +2023-02-27,24718,1385,"[\""Wireless Mouse\"", \""Charger\""]",676.28,"{\"": \""27%\""}",261445,1,"""North America""" +2024-04-02,24719,8868,"[\""Charger\"", \""Headphones\""]",4662.59,{},189029,1,"""Europe""" +2023-09-18,24720,1190,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",374.89,{},30347,1,"""South America""" +2024-03-12,24721,8427,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2571.8,"{\""promo\"": \""22%\""}",274004,0,"""North America""" +2023-12-20,24722,9615,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",505.31,{},6872,0,"""Asia""" +2024-10-25,24723,5404,"[\""Monitor\""]",3832.11,{},196781,1,"""Asia""" +2024-05-25,24724,2125,"[\""Keyboard\""]",2044.07,"{\"": \""10%\""}",120418,0,"""Africa""" +2024-04-17,24725,2169,"[\""Tablet\""]",4754.14,"{\""loyalty\"": \""8%\""}",74005,0,"""North America""" +2024-03-10,24726,2073,"[\""Monitor\""]",1413.99,{},246700,1,"""North America""" +2024-01-31,24727,8124,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2767.28,{},273074,0,"""Asia""" +2023-06-04,24728,5645,"[\""Keyboard\"", \""Laptop\""]",2479.26,{},270645,1,"""Africa""" +2023-06-12,24729,3660,"[\""Laptop\"", \""Tablet\""]",182.29,{},208256,1,"""North America""" +2023-10-12,24730,668,"[\""Wireless Mouse\""]",55.83,{},189429,0,"""North America""" +2024-08-09,24731,5074,"[\""Tablet\"", \""Charger\"", \""Phone\""]",448.45,"{\""loyalty\"": \""25%\""}",290888,1,"""Europe""" +2023-08-14,24732,8003,"[\""Wireless Mouse\"", \""Laptop\""]",892.02,"{\""seasonal\"": \""22%\""}",176956,1,"""North America""" +2024-02-10,24733,7942,"[\""Keyboard\"", \""Laptop\""]",4506.01,"{\""seasonal\"": \""10%\""}",245529,0,"""Europe""" +2023-08-25,24734,1429,"[\""Wireless Mouse\"", \""Headphones\""]",3414.04,"{\""loyalty\"": \""25%\""}",12448,0,"""Europe""" +2024-05-06,24735,3655,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2244.29,{},257753,1,"""South America""" +2023-10-17,24736,2882,"[\""Charger\"", \""Keyboard\""]",107.72,"{\""promo\"": \""29%\""}",113023,1,"""North America""" +2023-11-04,24737,102,"[\""Tablet\"", \""Laptop\""]",499.94,{},234139,1,"""North America""" +2024-05-07,24738,1093,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2997.29,{},21710,0,"""Europe""" +2024-03-30,24739,882,"[\""Wireless Mouse\""]",4459.52,"{\""loyalty\"": \""19%\""}",57188,0,"""South America""" +2023-05-25,24740,3641,"[\""Headphones\""]",4657.21,"{\""promo\"": \""26%\""}",290298,0,"""Asia""" +2024-12-20,24741,5614,"[\""Charger\""]",3693.87,{},19076,0,"""North America""" +2024-03-18,24742,8363,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1174.75,{},162447,1,"""South America""" +2023-03-16,24743,6560,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",880.95,"{\""seasonal\"": \""28%\""}",287384,1,"""Europe""" +2023-05-10,24744,7181,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",970.0,{},152843,1,"""North America""" +2024-04-06,24745,452,"[\""Wireless Mouse\"", \""Tablet\""]",1165.24,{},299337,0,"""Europe""" +2023-11-10,24746,4888,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2488.57,{},138969,1,"""South America""" +2024-08-30,24747,6246,"[\""Headphones\""]",941.82,"{\""loyalty\"": \""10%\""}",232855,0,"""South America""" +2024-05-19,24748,4991,"[\""Laptop\""]",151.73,{},106197,1,"""Africa""" +2023-04-02,24749,1854,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2180.77,{},219560,1,"""Europe""" +2024-02-03,24750,5157,"[\""Tablet\""]",2226.93,"{\"": \""8%\""}",259220,0,"""Asia""" +2023-05-29,24751,8090,"[\""Tablet\""]",2773.38,{},143279,0,"""South America""" +2024-03-15,24752,290,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2030.46,"{\"": \""22%\""}",60402,1,"""Europe""" +2024-07-20,24753,3232,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1113.98,{},176508,0,"""Africa""" +2023-02-06,24754,9,"[\""Charger\"", \""Keyboard\""]",4027.31,"{\""seasonal\"": \""10%\""}",280870,0,"""Africa""" +2024-02-25,24755,8201,"[\""Monitor\"", \""Keyboard\""]",4357.16,{},219277,0,"""South America""" +2024-12-09,24756,9577,"[\""Tablet\""]",4471.68,{},166671,0,"""Asia""" +2023-11-19,24757,9444,"[\""Tablet\""]",1254.86,{},62218,1,"""Africa""" +2024-02-04,24758,5246,"[\""Keyboard\"", \""Charger\""]",2810.26,{},221580,1,"""North America""" +2023-04-21,24759,7417,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2675.32,{},115432,1,"""Asia""" +2024-09-29,24760,7463,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3584.28,{},103128,0,"""Europe""" +2024-12-30,24761,1566,"[\""Keyboard\""]",3846.89,{},81802,1,"""Asia""" +2024-09-03,24762,1482,"[\""Laptop\""]",1547.0,"{\""seasonal\"": \""30%\""}",254840,1,"""Africa""" +2023-02-20,24763,2106,"[\""Keyboard\"", \""Charger\""]",2253.36,{},64945,1,"""Europe""" +2023-11-16,24764,2479,"[\""Tablet\""]",3863.44,"{\"": \""20%\""}",89806,1,"""North America""" +2024-06-11,24765,1332,"[\""Wireless Mouse\"", \""Charger\""]",4698.55,"{\""seasonal\"": \""5%\""}",148475,1,"""Europe""" +2023-06-12,24766,780,"[\""Laptop\"", \""Keyboard\""]",1854.69,"{\""loyalty\"": \""18%\""}",246684,1,"""Europe""" +2023-08-30,24767,1844,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3212.3,"{\""loyalty\"": \""10%\""}",93056,0,"""Africa""" +2023-10-06,24768,555,"[\""Monitor\""]",2696.89,"{\""seasonal\"": \""23%\""}",295910,0,"""Europe""" +2023-04-09,24769,2176,"[\""Phone\""]",4259.9,{},163961,1,"""Asia""" +2024-09-12,24770,9922,"[\""Wireless Mouse\""]",3940.04,{},81634,0,"""Africa""" +2024-12-05,24771,3115,"[\""Headphones\"", \""Phone\""]",3006.52,{},248877,0,"""South America""" +2023-08-10,24772,651,"[\""Monitor\"", \""Headphones\""]",3663.91,{},69354,0,"""Africa""" +2023-04-19,24773,6010,"[\""Laptop\"", \""Headphones\""]",2937.43,"{\"": \""22%\""}",261871,1,"""South America""" +2023-12-27,24774,1156,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1503.39,"{\""promo\"": \""10%\""}",2776,1,"""South America""" +2023-12-21,24775,3470,"[\""Headphones\""]",223.27,"{\"": \""22%\""}",49633,1,"""South America""" +2023-06-05,24776,5339,"[\""Phone\"", \""Headphones\""]",4904.76,"{\""promo\"": \""19%\""}",120944,0,"""Europe""" +2023-09-19,24777,8368,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",572.84,"{\"": \""18%\""}",120736,1,"""Asia""" +2023-10-22,24778,4176,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2662.54,"{\""seasonal\"": \""11%\""}",56955,0,"""Europe""" +2023-11-13,24779,7979,"[\""Headphones\""]",1541.6,"{\""seasonal\"": \""26%\""}",273512,0,"""North America""" +2023-12-10,24780,5618,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2990.13,{},203658,1,"""Africa""" +2024-08-07,24781,2529,"[\""Keyboard\""]",2529.62,"{\""seasonal\"": \""18%\""}",54207,1,"""North America""" +2024-08-09,24782,155,"[\""Keyboard\""]",685.82,"{\"": \""10%\""}",224748,0,"""North America""" +2023-04-20,24783,1949,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3586.03,{},187668,1,"""Europe""" +2023-11-12,24784,7571,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1831.44,{},7416,0,"""North America""" +2023-11-22,24785,3073,"[\""Laptop\""]",3484.36,{},79886,1,"""Asia""" +2024-10-30,24786,5696,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3190.81,"{\""promo\"": \""25%\""}",158088,0,"""Asia""" +2023-04-21,24787,474,"[\""Wireless Mouse\""]",90.29,"{\""loyalty\"": \""25%\""}",244094,1,"""North America""" +2023-04-22,24788,6398,"[\""Tablet\""]",346.83,"{\""promo\"": \""8%\""}",161774,0,"""Asia""" +2023-04-23,24789,3033,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",739.62,{},238675,1,"""Asia""" +2024-08-16,24790,9855,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2534.96,"{\""loyalty\"": \""29%\""}",259643,1,"""Africa""" +2024-10-01,24791,1310,"[\""Wireless Mouse\""]",2196.09,"{\""loyalty\"": \""6%\""}",186044,0,"""South America""" +2024-06-21,24792,7405,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4285.54,{},115872,1,"""Africa""" +2023-07-04,24793,5764,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4329.71,"{\""promo\"": \""15%\""}",89655,1,"""North America""" +2024-03-25,24794,3352,"[\""Keyboard\""]",4758.94,{},142779,0,"""Europe""" +2023-11-01,24795,276,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4666.74,{},32863,1,"""North America""" +2023-04-17,24796,3126,"[\""Phone\"", \""Laptop\""]",2333.47,"{\""promo\"": \""28%\""}",60872,1,"""Africa""" +2024-03-02,24797,3368,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",407.34,"{\""seasonal\"": \""15%\""}",225922,0,"""South America""" +2023-02-05,24798,5691,"[\""Laptop\"", \""Charger\""]",94.57,{},176827,0,"""Africa""" +2023-10-07,24799,9321,"[\""Keyboard\""]",2742.41,{},170374,1,"""Asia""" +2024-05-28,24800,6589,"[\""Charger\""]",54.18,{},280576,0,"""North America""" +2023-11-28,24801,2872,"[\""Tablet\"", \""Phone\""]",1649.17,"{\""seasonal\"": \""25%\""}",26584,1,"""Africa""" +2024-02-16,24802,9897,"[\""Tablet\""]",4974.92,{},137423,1,"""Europe""" +2024-09-13,24803,4824,"[\""Wireless Mouse\""]",296.84,{},48448,0,"""South America""" +2024-04-26,24804,994,"[\""Phone\"", \""Charger\""]",2765.42,{},93330,1,"""Asia""" +2024-02-23,24805,7116,"[\""Keyboard\"", \""Charger\""]",3261.46,"{\""seasonal\"": \""8%\""}",283913,0,"""Asia""" +2024-02-22,24806,3081,"[\""Wireless Mouse\""]",2931.99,{},166821,1,"""Asia""" +2024-07-27,24807,7466,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3381.59,"{\""loyalty\"": \""5%\""}",18597,0,"""North America""" +2023-06-08,24808,9526,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3800.28,{},122089,0,"""Europe""" +2024-11-01,24809,8042,"[\""Phone\"", \""Monitor\""]",3971.97,{},137455,0,"""Asia""" +2023-02-13,24810,6017,"[\""Tablet\"", \""Phone\""]",2410.95,{},220439,1,"""Asia""" +2024-04-16,24811,4355,"[\""Laptop\"", \""Wireless Mouse\""]",3457.68,{},107773,0,"""South America""" +2023-03-31,24812,50,"[\""Monitor\""]",4834.1,{},130007,0,"""South America""" +2023-01-02,24813,4623,"[\""Phone\""]",3277.47,{},214837,0,"""Europe""" +2024-08-05,24814,739,"[\""Phone\"", \""Keyboard\""]",1602.94,"{\"": \""21%\""}",4036,1,"""North America""" +2024-07-10,24815,8065,"[\""Keyboard\"", \""Laptop\""]",2191.39,{},179327,0,"""Asia""" +2023-06-10,24816,674,"[\""Phone\""]",3614.82,{},99568,0,"""Asia""" +2024-10-12,24817,2786,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1694.41,"{\""promo\"": \""9%\""}",160580,0,"""North America""" +2023-03-09,24818,9669,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1547.39,"{\""loyalty\"": \""17%\""}",214648,0,"""Asia""" +2024-07-08,24819,9171,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4645.46,{},170575,0,"""Europe""" +2023-12-14,24820,3930,"[\""Charger\"", \""Monitor\""]",4418.02,"{\""loyalty\"": \""27%\""}",14935,0,"""Africa""" +2023-03-07,24821,4169,"[\""Tablet\"", \""Charger\""]",800.1,{},115029,0,"""Africa""" +2023-09-01,24822,7453,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3200.77,{},217218,0,"""North America""" +2023-09-22,24823,4614,"[\""Keyboard\""]",4035.92,"{\""loyalty\"": \""28%\""}",88755,0,"""South America""" +2024-11-24,24824,7035,"[\""Wireless Mouse\"", \""Laptop\""]",3888.27,"{\""loyalty\"": \""26%\""}",81446,1,"""North America""" +2024-12-02,24825,7626,"[\""Tablet\"", \""Phone\""]",4025.79,{},246190,1,"""Africa""" +2023-03-05,24826,2169,"[\""Phone\"", \""Monitor\""]",2158.92,"{\""promo\"": \""24%\""}",64115,0,"""Asia""" +2023-11-23,24827,8070,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3789.6,{},22060,0,"""Europe""" +2023-05-08,24828,6960,"[\""Wireless Mouse\"", \""Headphones\""]",2964.28,{},228356,0,"""Asia""" +2024-07-18,24829,7800,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3613.95,"{\"": \""21%\""}",32044,1,"""South America""" +2024-05-19,24830,7451,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2406.27,{},273539,0,"""Africa""" +2024-05-28,24831,5089,"[\""Phone\""]",3924.09,"{\""loyalty\"": \""26%\""}",194525,1,"""Africa""" +2024-10-24,24832,175,"[\""Wireless Mouse\""]",3702.15,{},182469,1,"""North America""" +2023-07-17,24833,7254,"[\""Charger\"", \""Monitor\""]",2698.65,"{\"": \""30%\""}",245617,1,"""Africa""" +2023-10-10,24834,9175,"[\""Monitor\"", \""Wireless Mouse\""]",3982.24,{},125036,1,"""Africa""" +2024-12-13,24835,3265,"[\""Laptop\"", \""Keyboard\""]",193.14,"{\""promo\"": \""24%\""}",57612,1,"""Asia""" +2024-02-04,24836,4877,"[\""Monitor\"", \""Laptop\""]",1439.72,"{\""seasonal\"": \""26%\""}",171837,1,"""South America""" +2024-01-10,24837,6183,"[\""Headphones\""]",4433.08,"{\"": \""12%\""}",220606,1,"""Europe""" +2024-06-01,24838,2564,"[\""Charger\""]",2027.1,"{\""promo\"": \""20%\""}",58640,1,"""Africa""" +2023-04-30,24839,7917,"[\""Wireless Mouse\""]",4762.43,{},92197,0,"""Africa""" +2023-02-03,24840,4998,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1013.9,{},173811,1,"""South America""" +2024-04-15,24841,6810,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",436.82,"{\""seasonal\"": \""24%\""}",84678,0,"""Africa""" +2023-12-12,24842,7859,"[\""Charger\"", \""Laptop\""]",3814.57,"{\""loyalty\"": \""25%\""}",59616,1,"""Europe""" +2024-12-31,24843,3839,"[\""Keyboard\"", \""Laptop\""]",4595.52,{},25431,0,"""Asia""" +2023-04-23,24844,3792,"[\""Headphones\"", \""Tablet\""]",4639.12,"{\""loyalty\"": \""11%\""}",232343,1,"""Africa""" +2023-07-12,24845,5516,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",909.25,"{\""loyalty\"": \""30%\""}",121051,1,"""Asia""" +2024-08-06,24846,7616,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",586.22,"{\"": \""19%\""}",5651,1,"""Europe""" +2023-06-04,24847,829,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4805.57,"{\"": \""28%\""}",227901,0,"""South America""" +2023-03-06,24848,9260,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3950.59,"{\""promo\"": \""13%\""}",195016,0,"""South America""" +2023-12-15,24849,643,"[\""Laptop\"", \""Tablet\""]",2026.52,{},188006,1,"""Europe""" +2023-05-03,24850,9108,"[\""Wireless Mouse\"", \""Phone\""]",4177.35,"{\""promo\"": \""26%\""}",202583,1,"""North America""" +2023-01-06,24851,5312,"[\""Keyboard\"", \""Charger\""]",1590.0,"{\""promo\"": \""13%\""}",107041,1,"""Europe""" +2024-07-01,24852,6391,"[\""Charger\"", \""Wireless Mouse\""]",558.8,"{\""seasonal\"": \""16%\""}",215081,0,"""Europe""" +2023-12-18,24853,6830,"[\""Tablet\"", \""Monitor\""]",3342.59,{},102666,1,"""Europe""" +2024-05-04,24854,2264,"[\""Charger\"", \""Headphones\""]",3924.72,"{\""loyalty\"": \""7%\""}",291614,0,"""South America""" +2023-12-20,24855,1806,"[\""Monitor\"", \""Tablet\""]",3483.94,{},222366,1,"""Europe""" +2024-08-21,24856,4335,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1159.01,{},223715,1,"""Asia""" +2024-01-03,24857,9817,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4915.52,"{\""promo\"": \""28%\""}",245718,0,"""South America""" +2024-07-22,24858,7435,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4021.18,{},234024,0,"""Africa""" +2024-08-05,24859,3772,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2173.23,{},97889,0,"""South America""" +2024-10-20,24860,2221,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4184.84,{},201416,0,"""South America""" +2024-07-03,24861,5461,"[\""Charger\"", \""Tablet\""]",4451.14,{},71812,0,"""South America""" +2023-07-29,24862,918,"[\""Charger\"", \""Keyboard\""]",990.71,"{\""promo\"": \""14%\""}",34796,1,"""Africa""" +2024-06-07,24863,9689,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",852.62,{},236505,1,"""Asia""" +2023-11-06,24864,3265,"[\""Headphones\""]",845.66,{},182021,0,"""South America""" +2024-05-17,24865,355,"[\""Laptop\"", \""Monitor\""]",4461.09,{},193379,1,"""Europe""" +2023-08-24,24866,7536,"[\""Headphones\"", \""Phone\"", \""Charger\""]",460.5,{},117929,1,"""North America""" +2024-12-16,24867,9420,"[\""Laptop\"", \""Headphones\""]",2947.29,"{\"": \""16%\""}",120141,0,"""Asia""" +2024-01-27,24868,2439,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3661.41,"{\""seasonal\"": \""24%\""}",44369,1,"""Africa""" +2023-09-14,24869,6839,"[\""Laptop\""]",3930.22,"{\"": \""12%\""}",24930,1,"""Africa""" +2023-12-09,24870,988,"[\""Laptop\"", \""Phone\""]",4761.96,"{\""seasonal\"": \""28%\""}",266625,1,"""North America""" +2023-09-26,24871,4069,"[\""Laptop\"", \""Charger\""]",4297.0,{},48829,1,"""Africa""" +2024-02-22,24872,2643,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4835.9,"{\"": \""10%\""}",216777,0,"""Europe""" +2023-09-22,24873,3017,"[\""Laptop\""]",958.13,{},47130,0,"""North America""" +2023-12-31,24874,1491,"[\""Phone\""]",2854.4,"{\""seasonal\"": \""15%\""}",176371,0,"""North America""" +2024-12-15,24875,1331,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",406.72,"{\""loyalty\"": \""22%\""}",85222,0,"""Africa""" +2023-04-25,24876,6747,"[\""Headphones\"", \""Tablet\""]",217.76,"{\"": \""10%\""}",299219,1,"""North America""" +2023-03-31,24877,3365,"[\""Monitor\"", \""Charger\""]",2222.16,{},260975,1,"""South America""" +2024-10-13,24878,4657,"[\""Headphones\""]",3484.43,"{\""promo\"": \""5%\""}",189283,0,"""Asia""" +2023-03-18,24879,6627,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2166.28,{},106679,1,"""Europe""" +2024-12-15,24880,233,"[\""Keyboard\""]",1213.16,{},82879,1,"""North America""" +2024-04-15,24881,2406,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",361.82,{},105450,0,"""North America""" +2023-09-04,24882,8727,"[\""Monitor\""]",2160.65,{},127479,1,"""Africa""" +2023-07-30,24883,2215,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2964.46,"{\""promo\"": \""16%\""}",201124,0,"""Africa""" +2023-07-25,24884,3945,"[\""Tablet\"", \""Laptop\""]",3896.17,"{\"": \""16%\""}",62569,1,"""South America""" +2023-07-17,24885,5356,"[\""Wireless Mouse\""]",1845.92,{},147737,1,"""South America""" +2024-06-29,24886,8763,"[\""Phone\""]",4252.99,{},274144,0,"""Africa""" +2023-03-24,24887,9448,"[\""Headphones\""]",1422.08,"{\""promo\"": \""25%\""}",29689,0,"""North America""" +2024-11-09,24888,851,"[\""Phone\"", \""Laptop\""]",3139.88,"{\"": \""12%\""}",188789,1,"""South America""" +2023-09-27,24889,1604,"[\""Wireless Mouse\"", \""Laptop\""]",886.1,"{\""seasonal\"": \""16%\""}",110059,1,"""South America""" +2024-11-23,24890,6104,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1219.5,"{\""seasonal\"": \""24%\""}",208704,0,"""South America""" +2023-11-21,24891,3452,"[\""Charger\"", \""Keyboard\""]",4377.66,"{\"": \""28%\""}",42160,0,"""Europe""" +2023-08-25,24892,2054,"[\""Monitor\"", \""Laptop\""]",4521.01,"{\""loyalty\"": \""28%\""}",161620,0,"""Asia""" +2023-12-04,24893,1099,"[\""Tablet\""]",637.42,{},222783,0,"""South America""" +2023-02-13,24894,2713,"[\""Wireless Mouse\""]",2362.22,{},177051,0,"""South America""" +2023-07-13,24895,367,"[\""Headphones\""]",1773.41,{},118294,1,"""North America""" +2024-02-10,24896,7255,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4864.61,"{\"": \""30%\""}",291378,1,"""South America""" +2023-06-20,24897,3219,"[\""Charger\"", \""Wireless Mouse\""]",4929.09,{},222872,1,"""Africa""" +2024-02-23,24898,221,"[\""Headphones\""]",2857.05,"{\""loyalty\"": \""25%\""}",102646,1,"""South America""" +2023-08-09,24899,464,"[\""Tablet\"", \""Phone\""]",567.4,"{\""loyalty\"": \""10%\""}",203414,0,"""Asia""" +2024-03-05,24900,6395,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",71.24,{},46625,0,"""Europe""" +2023-05-01,24901,6780,"[\""Headphones\""]",1501.31,{},250314,0,"""North America""" +2023-08-11,24902,8901,"[\""Headphones\"", \""Tablet\""]",4124.75,"{\"": \""28%\""}",158706,1,"""Europe""" +2023-08-10,24903,628,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3487.38,"{\"": \""20%\""}",18574,0,"""Asia""" +2024-04-01,24904,3724,"[\""Charger\""]",1490.89,{},27782,0,"""Europe""" +2023-11-04,24905,7910,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",247.79,"{\""loyalty\"": \""6%\""}",54185,0,"""Africa""" +2024-11-15,24906,203,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3024.43,{},20395,1,"""South America""" +2023-03-06,24907,1445,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2189.38,"{\""loyalty\"": \""15%\""}",171243,1,"""Europe""" +2023-03-06,24908,4136,"[\""Phone\""]",619.91,{},42130,1,"""Europe""" +2023-04-20,24909,8365,"[\""Monitor\"", \""Headphones\""]",2519.01,{},126724,1,"""North America""" +2023-04-12,24910,7340,"[\""Laptop\"", \""Headphones\""]",4756.99,{},78459,1,"""Africa""" +2023-11-25,24911,1006,"[\""Keyboard\""]",2337.65,{},252116,0,"""Europe""" +2023-03-01,24912,3132,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3818.46,"{\""loyalty\"": \""14%\""}",87387,1,"""South America""" +2023-07-02,24913,5465,"[\""Tablet\"", \""Phone\""]",3663.75,{},20130,0,"""North America""" +2023-03-04,24914,9861,"[\""Phone\""]",216.95,"{\""promo\"": \""6%\""}",95721,1,"""Asia""" +2023-06-02,24915,3611,"[\""Charger\""]",4910.95,"{\""seasonal\"": \""10%\""}",55310,0,"""Asia""" +2023-04-06,24916,948,"[\""Phone\""]",4328.05,"{\"": \""20%\""}",244317,0,"""Europe""" +2023-07-27,24917,6349,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2330.69,{},16968,0,"""South America""" +2023-06-09,24918,3659,"[\""Wireless Mouse\"", \""Charger\""]",2110.36,{},2273,0,"""Europe""" +2023-04-07,24919,4581,"[\""Monitor\""]",4128.89,"{\""seasonal\"": \""30%\""}",40743,1,"""Asia""" +2023-07-29,24920,9306,"[\""Phone\""]",310.83,"{\""seasonal\"": \""30%\""}",29778,1,"""Europe""" +2024-12-14,24921,3255,"[\""Headphones\""]",3349.05,{},155149,1,"""North America""" +2024-12-16,24922,1082,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4260.89,{},189217,0,"""Europe""" +2024-10-28,24923,10,"[\""Monitor\""]",3526.68,"{\"": \""10%\""}",200806,0,"""South America""" +2023-04-03,24924,4743,"[\""Phone\""]",1302.87,{},168027,1,"""Africa""" +2024-09-02,24925,411,"[\""Keyboard\""]",829.82,"{\""loyalty\"": \""29%\""}",61327,0,"""North America""" +2024-05-15,24926,7859,"[\""Wireless Mouse\""]",1605.15,"{\""seasonal\"": \""23%\""}",85041,0,"""Africa""" +2024-09-26,24927,1700,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2478.31,{},113085,0,"""South America""" +2023-05-21,24928,367,"[\""Charger\"", \""Laptop\""]",312.11,"{\"": \""29%\""}",281833,1,"""South America""" +2024-08-17,24929,8515,"[\""Keyboard\"", \""Headphones\""]",4819.16,{},77270,1,"""Africa""" +2024-05-24,24930,4960,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4696.41,"{\""promo\"": \""29%\""}",110846,1,"""North America""" +2024-09-14,24931,6613,"[\""Monitor\""]",3222.06,"{\""seasonal\"": \""15%\""}",7768,1,"""South America""" +2023-07-26,24932,4640,"[\""Headphones\""]",3582.71,{},121909,0,"""Europe""" +2024-08-22,24933,9620,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",91.95,{},131279,0,"""South America""" +2023-06-15,24934,3114,"[\""Monitor\"", \""Phone\""]",4020.01,{},64700,1,"""North America""" +2024-07-10,24935,1027,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4652.8,"{\""promo\"": \""22%\""}",9837,1,"""North America""" +2023-05-13,24936,6354,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2547.93,"{\""loyalty\"": \""9%\""}",18384,0,"""Africa""" +2024-01-02,24937,1383,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2519.91,{},93493,0,"""Europe""" +2023-10-05,24938,9535,"[\""Laptop\""]",646.88,"{\""loyalty\"": \""18%\""}",25761,1,"""Asia""" +2024-09-29,24939,4306,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2289.87,{},191525,1,"""Europe""" +2024-03-03,24940,9355,"[\""Wireless Mouse\"", \""Monitor\""]",2603.87,{},81406,0,"""Europe""" +2024-11-26,24941,5817,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",569.16,"{\""seasonal\"": \""22%\""}",36745,1,"""Europe""" +2024-03-21,24942,9925,"[\""Keyboard\"", \""Wireless Mouse\""]",450.2,{},126060,1,"""Africa""" +2023-06-26,24943,5487,"[\""Tablet\""]",3333.38,"{\""promo\"": \""13%\""}",152282,0,"""Europe""" +2023-07-25,24944,7378,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3475.09,{},116909,1,"""Europe""" +2024-09-04,24945,3640,"[\""Laptop\"", \""Keyboard\""]",4885.26,{},57985,0,"""Asia""" +2024-01-16,24946,9042,"[\""Laptop\""]",1649.89,{},53849,1,"""North America""" +2023-09-10,24947,39,"[\""Phone\"", \""Keyboard\""]",3125.41,"{\""promo\"": \""14%\""}",22218,0,"""Africa""" +2023-02-09,24948,1662,"[\""Headphones\"", \""Tablet\""]",3257.17,"{\""promo\"": \""10%\""}",28983,0,"""South America""" +2024-01-24,24949,1458,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2417.97,"{\"": \""24%\""}",279252,0,"""South America""" +2023-10-03,24950,5359,"[\""Tablet\"", \""Laptop\""]",4406.29,{},268309,1,"""Africa""" +2023-06-08,24951,5383,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1180.39,{},112438,1,"""Africa""" +2024-08-13,24952,9531,"[\""Phone\""]",1991.72,"{\""seasonal\"": \""21%\""}",38575,1,"""Africa""" +2023-10-06,24953,687,"[\""Monitor\""]",2138.52,"{\""loyalty\"": \""12%\""}",206457,1,"""Europe""" +2024-01-31,24954,3982,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3055.91,{},46273,1,"""Africa""" +2024-03-15,24955,4368,"[\""Tablet\"", \""Charger\""]",3673.79,{},130577,1,"""Africa""" +2023-11-14,24956,1729,"[\""Headphones\""]",3948.0,{},258491,0,"""Africa""" +2023-04-30,24957,5031,"[\""Wireless Mouse\"", \""Laptop\""]",699.46,"{\""loyalty\"": \""21%\""}",250619,0,"""Asia""" +2023-08-19,24958,3407,"[\""Headphones\""]",4519.26,{},56874,0,"""Africa""" +2023-02-11,24959,5999,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4948.91,{},16654,1,"""Europe""" +2024-01-11,24960,4751,"[\""Keyboard\""]",2962.54,"{\"": \""14%\""}",280860,1,"""Europe""" +2024-09-05,24961,4925,"[\""Headphones\"", \""Charger\""]",4410.61,"{\""loyalty\"": \""22%\""}",131458,1,"""Asia""" +2024-04-09,24962,5120,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2568.12,{},23657,1,"""Africa""" +2023-07-13,24963,6409,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3482.64,{},238099,1,"""Africa""" +2024-05-11,24964,4362,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4981.96,"{\""loyalty\"": \""23%\""}",189317,0,"""South America""" +2024-07-12,24965,3530,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1456.6,{},121433,1,"""South America""" +2024-12-07,24966,406,"[\""Laptop\"", \""Tablet\""]",3908.85,"{\""promo\"": \""13%\""}",132257,1,"""North America""" +2024-02-13,24967,7489,"[\""Phone\""]",142.18,"{\""loyalty\"": \""5%\""}",83947,0,"""Africa""" +2024-09-16,24968,6924,"[\""Tablet\""]",2031.9,"{\""promo\"": \""17%\""}",57281,1,"""Asia""" +2024-09-20,24969,39,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",884.6,"{\"": \""16%\""}",232602,0,"""South America""" +2024-06-03,24970,779,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1477.26,{},277551,1,"""Europe""" +2024-03-11,24971,6232,"[\""Charger\"", \""Wireless Mouse\""]",4751.08,{},211704,1,"""Asia""" +2023-12-21,24972,7234,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3947.08,"{\"": \""29%\""}",275715,0,"""North America""" +2023-08-14,24973,5376,"[\""Monitor\""]",2804.02,{},38251,0,"""Europe""" +2023-07-02,24974,2542,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3304.66,{},154680,0,"""Europe""" +2023-10-27,24975,6212,"[\""Phone\"", \""Keyboard\""]",2478.9,{},294380,1,"""Europe""" +2024-12-23,24976,755,"[\""Wireless Mouse\""]",1666.83,{},151184,1,"""South America""" +2024-07-14,24977,4995,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4120.47,"{\""promo\"": \""12%\""}",132527,1,"""Europe""" +2024-01-22,24978,8267,"[\""Tablet\""]",2182.88,"{\""seasonal\"": \""7%\""}",30880,1,"""Europe""" +2023-01-10,24979,7639,"[\""Wireless Mouse\""]",4825.55,"{\""loyalty\"": \""23%\""}",290283,1,"""Asia""" +2024-01-11,24980,7523,"[\""Keyboard\"", \""Charger\""]",3971.81,{},161559,1,"""Africa""" +2023-07-05,24981,757,"[\""Monitor\""]",1643.12,"{\""loyalty\"": \""18%\""}",34922,1,"""South America""" +2023-11-15,24982,3241,"[\""Tablet\""]",2203.13,{},269686,0,"""Asia""" +2023-11-26,24983,7328,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",289.29,{},48855,1,"""Africa""" +2023-07-26,24984,7113,"[\""Wireless Mouse\"", \""Keyboard\""]",4979.31,"{\""loyalty\"": \""30%\""}",37641,0,"""North America""" +2023-01-11,24985,2141,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2649.64,{},249509,1,"""Asia""" +2023-05-13,24986,7075,"[\""Laptop\""]",2819.75,"{\""seasonal\"": \""13%\""}",120213,0,"""North America""" +2024-06-08,24987,4250,"[\""Tablet\""]",4993.6,"{\""seasonal\"": \""22%\""}",288640,0,"""Asia""" +2023-09-16,24988,8025,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",626.43,{},172936,0,"""Asia""" +2024-08-16,24989,344,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",67.4,{},190781,1,"""South America""" +2024-07-20,24990,402,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4476.16,{},267964,0,"""Europe""" +2024-05-03,24991,791,"[\""Charger\"", \""Laptop\""]",4150.12,{},56217,0,"""Europe""" +2023-09-30,24992,9248,"[\""Keyboard\"", \""Monitor\""]",2711.42,"{\""seasonal\"": \""10%\""}",38856,1,"""Asia""" +2024-02-01,24993,7605,"[\""Charger\""]",984.42,"{\""promo\"": \""19%\""}",140655,0,"""Africa""" +2023-07-02,24994,5345,"[\""Laptop\""]",855.93,"{\""promo\"": \""18%\""}",171364,1,"""South America""" +2024-11-15,24995,8190,"[\""Monitor\""]",4379.57,"{\""loyalty\"": \""7%\""}",248775,0,"""Europe""" +2024-04-19,24996,8642,"[\""Charger\"", \""Keyboard\""]",3018.61,{},212959,1,"""Asia""" +2024-11-30,24997,3035,"[\""Keyboard\"", \""Tablet\""]",1068.11,{},66079,0,"""North America""" +2024-05-31,24998,2524,"[\""Monitor\"", \""Keyboard\""]",1062.81,"{\"": \""18%\""}",136305,0,"""Africa""" +2023-10-31,24999,8407,"[\""Charger\"", \""Headphones\""]",3358.43,"{\""loyalty\"": \""6%\""}",56992,0,"""South America""" +2023-01-02,25000,4911,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2735.57,"{\""promo\"": \""26%\""}",188572,0,"""Asia""" +2024-01-08,25001,7491,"[\""Phone\"", \""Monitor\""]",879.62,"{\""seasonal\"": \""24%\""}",296037,1,"""Europe""" +2023-08-30,25002,9082,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1872.31,"{\""loyalty\"": \""6%\""}",266527,1,"""Europe""" +2023-03-31,25003,8303,"[\""Phone\""]",448.97,"{\""promo\"": \""26%\""}",73335,1,"""Asia""" +2023-08-09,25004,4914,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2864.27,"{\""seasonal\"": \""11%\""}",287730,1,"""Asia""" +2023-11-05,25005,2887,"[\""Laptop\"", \""Headphones\""]",2897.38,"{\""promo\"": \""10%\""}",272551,0,"""North America""" +2023-05-31,25006,1608,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",768.88,"{\""promo\"": \""19%\""}",104595,0,"""Europe""" +2024-08-25,25007,6771,"[\""Monitor\"", \""Wireless Mouse\""]",1844.78,"{\""loyalty\"": \""20%\""}",236150,1,"""North America""" +2023-05-14,25008,1907,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2961.94,"{\""seasonal\"": \""29%\""}",70208,1,"""Europe""" +2023-03-28,25009,6669,"[\""Charger\""]",4046.82,"{\"": \""16%\""}",187780,0,"""Africa""" +2023-03-08,25010,1908,"[\""Tablet\"", \""Monitor\""]",1999.02,{},279555,1,"""Asia""" +2023-01-12,25011,838,"[\""Tablet\""]",1420.76,"{\""loyalty\"": \""12%\""}",134279,1,"""South America""" +2024-02-19,25012,9292,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4997.96,"{\""promo\"": \""22%\""}",103253,0,"""Asia""" +2024-01-29,25013,6698,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4790.13,"{\""loyalty\"": \""18%\""}",161203,1,"""North America""" +2024-09-24,25014,6576,"[\""Wireless Mouse\""]",1531.82,"{\""seasonal\"": \""7%\""}",183465,1,"""Africa""" +2023-03-10,25015,3463,"[\""Wireless Mouse\"", \""Charger\""]",2868.68,{},239267,1,"""North America""" +2024-08-17,25016,4518,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2928.7,{},238768,1,"""Europe""" +2023-03-17,25017,9609,"[\""Monitor\"", \""Keyboard\""]",605.18,"{\""loyalty\"": \""18%\""}",185789,0,"""Asia""" +2024-10-18,25018,5666,"[\""Headphones\"", \""Charger\""]",2441.06,"{\""promo\"": \""28%\""}",12229,1,"""North America""" +2024-12-04,25019,3588,"[\""Wireless Mouse\"", \""Charger\""]",4884.09,{},64595,0,"""North America""" +2023-09-11,25020,2891,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2934.53,"{\""loyalty\"": \""23%\""}",98660,1,"""South America""" +2023-12-11,25021,5800,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",128.53,"{\"": \""13%\""}",49803,0,"""Europe""" +2024-08-31,25022,7948,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2568.33,{},97309,0,"""Asia""" +2023-05-20,25023,4660,"[\""Phone\"", \""Wireless Mouse\""]",498.06,{},81591,0,"""South America""" +2024-01-16,25024,5504,"[\""Tablet\"", \""Laptop\""]",4078.61,"{\"": \""29%\""}",134531,0,"""Europe""" +2024-04-11,25025,1766,"[\""Laptop\"", \""Charger\""]",2809.54,"{\""seasonal\"": \""6%\""}",197937,0,"""Africa""" +2023-07-15,25026,9537,"[\""Keyboard\""]",3448.52,{},96461,0,"""South America""" +2024-04-29,25027,5122,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3318.8,{},44372,0,"""North America""" +2024-06-15,25028,5073,"[\""Headphones\"", \""Monitor\""]",230.54,{},50208,0,"""Europe""" +2024-11-19,25029,5110,"[\""Wireless Mouse\"", \""Monitor\""]",3237.14,"{\"": \""13%\""}",39462,0,"""South America""" +2024-02-02,25030,8707,"[\""Wireless Mouse\"", \""Tablet\""]",4405.77,"{\""seasonal\"": \""16%\""}",60721,1,"""South America""" +2023-04-25,25031,7105,"[\""Headphones\"", \""Tablet\""]",2573.78,{},86915,0,"""North America""" +2024-11-15,25032,9144,"[\""Charger\"", \""Monitor\""]",3166.06,{},69155,0,"""Africa""" +2024-11-12,25033,7138,"[\""Phone\"", \""Laptop\""]",4357.32,"{\""promo\"": \""9%\""}",137325,0,"""Europe""" +2024-09-23,25034,5066,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3577.81,{},208907,1,"""Africa""" +2023-11-07,25035,93,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4713.21,{},241828,1,"""Africa""" +2024-07-18,25036,7922,"[\""Headphones\"", \""Phone\""]",4017.05,{},239623,0,"""Africa""" +2023-01-26,25037,8562,"[\""Headphones\"", \""Laptop\""]",2038.38,"{\""seasonal\"": \""8%\""}",173478,0,"""Europe""" +2023-07-01,25038,4601,"[\""Wireless Mouse\""]",4966.66,{},216707,1,"""South America""" +2024-01-10,25039,2054,"[\""Headphones\"", \""Laptop\""]",3354.68,{},224368,0,"""Africa""" +2024-03-16,25040,553,"[\""Laptop\""]",2680.84,{},58255,1,"""North America""" +2024-09-04,25041,746,"[\""Headphones\"", \""Laptop\""]",2819.59,"{\""seasonal\"": \""20%\""}",220656,0,"""Africa""" +2024-12-22,25042,6891,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1335.87,{},34687,1,"""Asia""" +2023-02-11,25043,114,"[\""Laptop\""]",3517.75,"{\""seasonal\"": \""5%\""}",143114,1,"""Europe""" +2023-04-29,25044,9138,"[\""Headphones\""]",947.73,"{\"": \""27%\""}",77911,0,"""Africa""" +2024-07-15,25045,6523,"[\""Keyboard\"", \""Wireless Mouse\""]",1884.06,{},168915,0,"""Africa""" +2023-07-23,25046,1030,"[\""Monitor\"", \""Laptop\""]",3610.83,{},250486,1,"""Asia""" +2023-03-19,25047,8871,"[\""Headphones\""]",3689.23,{},270766,0,"""South America""" +2024-04-16,25048,2260,"[\""Monitor\""]",4943.45,"{\""seasonal\"": \""12%\""}",14063,0,"""Europe""" +2024-08-25,25049,2325,"[\""Charger\"", \""Wireless Mouse\""]",2471.23,{},64336,1,"""South America""" +2024-09-04,25050,566,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2452.59,{},21226,0,"""South America""" +2024-02-29,25051,7404,"[\""Headphones\"", \""Laptop\""]",4070.6,"{\""loyalty\"": \""18%\""}",108853,1,"""South America""" +2023-07-18,25052,7266,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1523.54,"{\""seasonal\"": \""25%\""}",6379,1,"""Africa""" +2024-09-24,25053,6874,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2097.38,{},198861,1,"""North America""" +2024-03-21,25054,5227,"[\""Monitor\"", \""Laptop\""]",1870.48,"{\""promo\"": \""24%\""}",208674,0,"""Asia""" +2023-04-17,25055,8387,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1796.25,{},271771,1,"""Africa""" +2023-09-28,25056,9901,"[\""Phone\""]",1842.73,"{\"": \""21%\""}",162117,1,"""South America""" +2024-05-28,25057,2776,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2079.15,"{\""promo\"": \""16%\""}",178942,1,"""South America""" +2024-01-09,25058,22,"[\""Tablet\""]",4975.27,{},210043,0,"""North America""" +2023-03-08,25059,433,"[\""Wireless Mouse\""]",1663.24,{},24080,0,"""North America""" +2023-04-06,25060,4064,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1902.5,"{\""seasonal\"": \""9%\""}",94403,0,"""Africa""" +2023-01-14,25061,6644,"[\""Wireless Mouse\"", \""Headphones\""]",4491.94,"{\""seasonal\"": \""16%\""}",290840,0,"""Asia""" +2023-06-11,25062,8903,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",68.43,"{\""seasonal\"": \""21%\""}",102695,1,"""Africa""" +2024-11-06,25063,1526,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3881.45,"{\"": \""17%\""}",198693,1,"""North America""" +2024-08-17,25064,2902,"[\""Charger\""]",4396.51,"{\""seasonal\"": \""17%\""}",184283,0,"""South America""" +2024-07-25,25065,9888,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1689.1,{},260555,0,"""South America""" +2023-11-29,25066,5478,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2686.98,{},114443,1,"""North America""" +2023-01-15,25067,6352,"[\""Charger\""]",2266.22,"{\""promo\"": \""28%\""}",86204,1,"""Europe""" +2024-04-25,25068,7254,"[\""Keyboard\""]",2154.61,"{\""promo\"": \""23%\""}",171364,1,"""Asia""" +2024-02-26,25069,927,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1544.68,"{\"": \""16%\""}",33155,1,"""Europe""" +2023-10-16,25070,6728,"[\""Phone\""]",4275.3,{},286708,1,"""North America""" +2024-03-26,25071,5504,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1104.51,"{\"": \""5%\""}",41963,1,"""South America""" +2024-09-18,25072,9765,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2575.21,"{\""seasonal\"": \""27%\""}",6652,1,"""Africa""" +2024-04-15,25073,5381,"[\""Phone\"", \""Laptop\""]",966.67,"{\"": \""29%\""}",207897,1,"""North America""" +2024-05-28,25074,9823,"[\""Charger\""]",4429.82,{},258672,1,"""North America""" +2024-03-21,25075,6234,"[\""Headphones\""]",336.1,{},271880,1,"""Europe""" +2023-01-27,25076,4802,"[\""Monitor\""]",3715.62,"{\""seasonal\"": \""14%\""}",249413,0,"""Europe""" +2024-06-16,25077,8528,"[\""Charger\"", \""Keyboard\""]",413.8,{},287850,0,"""Africa""" +2023-11-23,25078,6141,"[\""Headphones\"", \""Monitor\""]",3075.53,{},41259,1,"""North America""" +2023-12-11,25079,5570,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4557.64,"{\""promo\"": \""28%\""}",187319,1,"""Europe""" +2023-03-30,25080,6207,"[\""Keyboard\"", \""Laptop\""]",320.54,{},245395,0,"""South America""" +2024-09-21,25081,4806,"[\""Laptop\"", \""Phone\""]",295.09,"{\""loyalty\"": \""10%\""}",75384,1,"""Africa""" +2023-01-08,25082,8676,"[\""Wireless Mouse\""]",1646.27,{},21771,0,"""North America""" +2023-02-04,25083,4964,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",320.27,"{\""loyalty\"": \""16%\""}",92019,0,"""North America""" +2023-07-05,25084,4748,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4591.87,{},223447,0,"""North America""" +2024-09-20,25085,7567,"[\""Phone\"", \""Keyboard\""]",971.71,{},197927,1,"""Asia""" +2023-04-17,25086,6926,"[\""Phone\"", \""Keyboard\""]",470.41,"{\""promo\"": \""28%\""}",29949,1,"""Asia""" +2024-09-29,25087,6797,"[\""Keyboard\""]",4737.68,{},288678,1,"""Africa""" +2024-08-03,25088,5255,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1733.37,{},103692,0,"""Europe""" +2023-04-21,25089,7363,"[\""Monitor\"", \""Charger\""]",460.77,{},197176,0,"""North America""" +2023-05-31,25090,7889,"[\""Monitor\"", \""Headphones\""]",2023.65,"{\""loyalty\"": \""23%\""}",149416,0,"""Asia""" +2024-12-08,25091,307,"[\""Tablet\""]",2614.73,"{\""promo\"": \""13%\""}",220244,0,"""Africa""" +2023-04-23,25092,5325,"[\""Tablet\""]",2058.24,"{\""loyalty\"": \""19%\""}",22588,1,"""Asia""" +2023-09-14,25093,7387,"[\""Laptop\"", \""Tablet\""]",533.83,{},74805,0,"""North America""" +2024-02-22,25094,7383,"[\""Headphones\"", \""Laptop\""]",3730.62,{},216234,0,"""Asia""" +2024-08-28,25095,5767,"[\""Monitor\""]",3252.33,"{\""seasonal\"": \""23%\""}",203463,1,"""Europe""" +2024-07-04,25096,8467,"[\""Headphones\"", \""Laptop\""]",1928.54,{},280327,0,"""Europe""" +2024-02-06,25097,6702,"[\""Laptop\"", \""Keyboard\""]",770.86,"{\""promo\"": \""29%\""}",213389,0,"""Asia""" +2024-09-24,25098,1812,"[\""Wireless Mouse\"", \""Headphones\""]",994.43,{},279250,1,"""Europe""" +2023-08-29,25099,7897,"[\""Charger\""]",1370.99,{},37664,0,"""Africa""" +2024-11-20,25100,714,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",99.12,"{\""promo\"": \""11%\""}",83513,0,"""Europe""" +2023-01-14,25101,4134,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2801.76,{},17284,0,"""Europe""" +2024-02-04,25102,2938,"[\""Laptop\""]",4238.86,{},215251,0,"""Europe""" +2023-06-22,25103,4955,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",506.83,{},90247,1,"""North America""" +2023-09-16,25104,173,"[\""Phone\""]",1434.86,"{\""seasonal\"": \""22%\""}",191134,0,"""South America""" +2023-03-11,25105,5071,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1030.09,"{\""loyalty\"": \""14%\""}",282233,1,"""Asia""" +2023-12-30,25106,3160,"[\""Laptop\"", \""Phone\""]",2422.79,"{\""loyalty\"": \""6%\""}",253791,0,"""Europe""" +2024-02-21,25107,4804,"[\""Headphones\""]",1981.96,{},3122,1,"""Asia""" +2023-04-18,25108,621,"[\""Tablet\""]",1529.04,"{\""loyalty\"": \""15%\""}",130935,0,"""Asia""" +2023-03-19,25109,7300,"[\""Wireless Mouse\""]",3255.88,{},69130,1,"""South America""" +2023-11-02,25110,1960,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3095.73,"{\""seasonal\"": \""13%\""}",231268,0,"""South America""" +2024-04-01,25111,2767,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",768.72,"{\""promo\"": \""10%\""}",35642,1,"""South America""" +2023-02-11,25112,4947,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1931.85,"{\"": \""29%\""}",175731,1,"""Africa""" +2023-01-20,25113,3504,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3428.04,{},16032,0,"""North America""" +2024-07-16,25114,1449,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4512.95,"{\""seasonal\"": \""8%\""}",262102,1,"""Africa""" +2023-02-24,25115,9694,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",720.14,"{\""loyalty\"": \""16%\""}",141989,0,"""Europe""" +2024-03-03,25116,6451,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1616.89,{},134488,0,"""Africa""" +2024-05-22,25117,7587,"[\""Monitor\"", \""Laptop\""]",1435.82,{},140857,0,"""Asia""" +2023-01-05,25118,5645,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4368.33,"{\"": \""26%\""}",20396,0,"""North America""" +2023-06-24,25119,7540,"[\""Charger\""]",3867.21,"{\""promo\"": \""13%\""}",6164,0,"""North America""" +2024-05-19,25120,5413,"[\""Keyboard\""]",2948.36,{},117244,1,"""Africa""" +2024-12-21,25121,3658,"[\""Monitor\""]",4660.9,{},198334,0,"""Asia""" +2024-03-20,25122,7189,"[\""Tablet\""]",3025.34,"{\"": \""27%\""}",32127,0,"""Asia""" +2024-06-14,25123,6287,"[\""Wireless Mouse\"", \""Headphones\""]",1787.86,"{\"": \""9%\""}",125492,0,"""Europe""" +2023-07-18,25124,3768,"[\""Tablet\"", \""Phone\""]",1587.51,"{\""promo\"": \""22%\""}",94588,1,"""Europe""" +2023-09-01,25125,8113,"[\""Keyboard\"", \""Tablet\""]",415.71,{},118115,1,"""Africa""" +2023-03-26,25126,3247,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1898.19,"{\""promo\"": \""6%\""}",154304,1,"""South America""" +2024-11-04,25127,6738,"[\""Headphones\""]",578.42,"{\""promo\"": \""13%\""}",207900,1,"""Asia""" +2024-10-05,25128,7198,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4405.05,"{\"": \""18%\""}",233866,0,"""North America""" +2023-02-22,25129,6562,"[\""Keyboard\""]",1617.61,"{\"": \""20%\""}",103936,1,"""South America""" +2024-11-02,25130,2407,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1590.09,{},159942,1,"""Africa""" +2024-02-02,25131,255,"[\""Monitor\""]",1950.05,{},162869,0,"""South America""" +2023-12-26,25132,9629,"[\""Headphones\""]",4166.53,{},1647,1,"""Asia""" +2024-07-13,25133,7439,"[\""Charger\"", \""Wireless Mouse\""]",1172.42,{},72454,1,"""Asia""" +2024-01-31,25134,9949,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2075.62,"{\""promo\"": \""21%\""}",83535,1,"""North America""" +2023-08-23,25135,6270,"[\""Headphones\""]",1628.5,"{\"": \""24%\""}",69107,0,"""Asia""" +2023-04-16,25136,1034,"[\""Wireless Mouse\"", \""Laptop\""]",4561.86,"{\"": \""12%\""}",104869,1,"""Africa""" +2023-06-08,25137,1623,"[\""Charger\"", \""Keyboard\""]",4225.6,{},1430,0,"""North America""" +2024-11-25,25138,2767,"[\""Tablet\"", \""Charger\""]",4989.82,{},151942,0,"""South America""" +2023-06-15,25139,6991,"[\""Keyboard\""]",4823.27,{},131182,0,"""South America""" +2023-10-23,25140,636,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4304.8,{},90985,1,"""Europe""" +2024-12-21,25141,228,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3370.52,{},169413,1,"""North America""" +2024-12-26,25142,501,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1851.27,"{\""promo\"": \""5%\""}",137906,1,"""South America""" +2024-12-08,25143,8293,"[\""Wireless Mouse\""]",3972.28,{},278355,0,"""Europe""" +2024-07-10,25144,6186,"[\""Wireless Mouse\"", \""Tablet\""]",4539.11,{},112760,0,"""North America""" +2023-07-24,25145,705,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3626.4,{},208721,0,"""Asia""" +2024-02-02,25146,8857,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1775.62,"{\""loyalty\"": \""10%\""}",154601,1,"""North America""" +2023-10-10,25147,2483,"[\""Laptop\""]",1238.91,"{\""promo\"": \""30%\""}",58594,1,"""Europe""" +2023-05-06,25148,7744,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1861.4,"{\"": \""25%\""}",156972,1,"""Asia""" +2024-03-12,25149,3893,"[\""Laptop\""]",4693.23,{},44486,1,"""Asia""" +2023-05-12,25150,1001,"[\""Tablet\"", \""Phone\""]",3874.9,{},128886,0,"""North America""" +2023-12-30,25151,7563,"[\""Charger\"", \""Headphones\""]",4253.62,"{\""promo\"": \""27%\""}",220005,0,"""North America""" +2023-03-09,25152,689,"[\""Laptop\""]",107.68,"{\""seasonal\"": \""30%\""}",97555,0,"""North America""" +2023-09-09,25153,8339,"[\""Phone\""]",3823.48,"{\""loyalty\"": \""6%\""}",270324,0,"""Asia""" +2023-12-06,25154,4391,"[\""Monitor\""]",2896.73,"{\"": \""7%\""}",228748,1,"""Asia""" +2024-05-09,25155,7873,"[\""Laptop\""]",3174.47,{},127829,1,"""Africa""" +2024-02-23,25156,7795,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3958.18,"{\""promo\"": \""23%\""}",291180,1,"""Asia""" +2023-07-17,25157,5097,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3022.22,"{\""promo\"": \""19%\""}",159053,0,"""North America""" +2023-11-14,25158,2639,"[\""Tablet\"", \""Laptop\""]",1747.67,{},287915,1,"""Africa""" +2023-09-14,25159,1388,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1408.8,"{\""loyalty\"": \""18%\""}",275190,1,"""Africa""" +2024-05-15,25160,7741,"[\""Monitor\"", \""Tablet\""]",3661.21,"{\""promo\"": \""19%\""}",13724,0,"""North America""" +2024-06-15,25161,9303,"[\""Laptop\""]",4460.58,{},61935,1,"""Europe""" +2023-05-27,25162,9715,"[\""Charger\""]",2831.65,{},76246,0,"""Europe""" +2024-10-27,25163,4164,"[\""Headphones\""]",3063.23,"{\"": \""21%\""}",30177,0,"""Africa""" +2024-05-13,25164,3057,"[\""Wireless Mouse\"", \""Charger\""]",3203.63,"{\""seasonal\"": \""9%\""}",246392,1,"""North America""" +2024-12-02,25165,9459,"[\""Charger\""]",2265.05,"{\""seasonal\"": \""26%\""}",82531,1,"""Africa""" +2024-05-27,25166,7009,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",128.57,{},21069,1,"""North America""" +2024-08-01,25167,6741,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1539.28,"{\""seasonal\"": \""29%\""}",182348,1,"""Europe""" +2024-11-27,25168,1685,"[\""Headphones\"", \""Monitor\""]",817.04,"{\""loyalty\"": \""17%\""}",282341,0,"""North America""" +2023-05-15,25169,9424,"[\""Tablet\"", \""Wireless Mouse\""]",4678.69,"{\""promo\"": \""9%\""}",45848,0,"""Asia""" +2023-04-30,25170,1858,"[\""Tablet\""]",4437.22,"{\"": \""25%\""}",28538,1,"""Europe""" +2023-02-06,25171,123,"[\""Phone\""]",3427.92,{},195841,1,"""Europe""" +2023-11-27,25172,4173,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",533.67,{},98520,1,"""Asia""" +2023-11-24,25173,5524,"[\""Wireless Mouse\"", \""Phone\""]",4595.71,{},224740,0,"""Europe""" +2023-01-11,25174,4885,"[\""Headphones\""]",3519.08,"{\""promo\"": \""6%\""}",167858,0,"""Asia""" +2023-04-17,25175,5322,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4166.79,{},278218,1,"""Asia""" +2024-10-12,25176,4797,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1767.27,{},278009,1,"""South America""" +2023-11-27,25177,6451,"[\""Laptop\""]",1944.5,{},18439,0,"""South America""" +2023-11-17,25178,8733,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",317.94,"{\"": \""24%\""}",57096,1,"""Europe""" +2023-10-02,25179,703,"[\""Charger\""]",4754.6,"{\"": \""20%\""}",9181,1,"""South America""" +2023-02-26,25180,360,"[\""Laptop\""]",520.56,"{\""loyalty\"": \""6%\""}",196419,1,"""North America""" +2024-06-28,25181,9537,"[\""Keyboard\""]",1523.2,{},257754,1,"""Asia""" +2024-03-23,25182,3411,"[\""Keyboard\"", \""Phone\""]",2442.02,{},201112,1,"""North America""" +2023-05-08,25183,136,"[\""Wireless Mouse\""]",1904.11,"{\""loyalty\"": \""17%\""}",293230,0,"""Asia""" +2023-05-09,25184,3597,"[\""Tablet\""]",2006.81,{},119331,0,"""South America""" +2024-06-26,25185,7155,"[\""Headphones\""]",4408.65,{},287745,1,"""Europe""" +2024-11-10,25186,3617,"[\""Charger\"", \""Wireless Mouse\""]",2440.61,"{\""loyalty\"": \""11%\""}",57429,1,"""Europe""" +2024-11-02,25187,2751,"[\""Tablet\""]",2351.8,{},181208,1,"""North America""" +2023-10-03,25188,9097,"[\""Headphones\"", \""Tablet\""]",3385.35,"{\"": \""23%\""}",128136,0,"""North America""" +2023-07-13,25189,2352,"[\""Headphones\"", \""Tablet\""]",1981.68,"{\"": \""12%\""}",242055,0,"""Asia""" +2024-10-11,25190,7428,"[\""Headphones\""]",101.71,"{\""seasonal\"": \""18%\""}",152529,0,"""North America""" +2024-06-16,25191,9670,"[\""Wireless Mouse\"", \""Headphones\""]",4092.6,{},178172,1,"""Europe""" +2024-01-28,25192,33,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1030.64,{},10533,1,"""Africa""" +2024-11-09,25193,4976,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3371.79,"{\""loyalty\"": \""8%\""}",294219,1,"""Europe""" +2024-03-31,25194,1524,"[\""Monitor\"", \""Keyboard\""]",4819.47,"{\""promo\"": \""7%\""}",214435,1,"""South America""" +2023-11-23,25195,2324,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1667.19,"{\""seasonal\"": \""14%\""}",89296,0,"""South America""" +2024-08-09,25196,1261,"[\""Wireless Mouse\""]",381.73,"{\""loyalty\"": \""25%\""}",105041,0,"""South America""" +2023-06-22,25197,2031,"[\""Tablet\""]",1080.18,{},22398,0,"""Africa""" +2024-07-06,25198,1452,"[\""Keyboard\"", \""Monitor\""]",4091.1,{},10937,1,"""North America""" +2024-06-17,25199,1948,"[\""Headphones\""]",4625.24,"{\""loyalty\"": \""17%\""}",37237,1,"""Africa""" +2024-08-15,25200,3804,"[\""Keyboard\""]",1607.01,{},8456,1,"""Asia""" +2024-06-01,25201,5959,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",848.36,{},31230,0,"""Europe""" +2023-12-30,25202,6622,"[\""Monitor\"", \""Laptop\""]",3996.25,"{\""seasonal\"": \""22%\""}",187468,1,"""South America""" +2023-06-06,25203,923,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",365.63,{},17330,1,"""South America""" +2023-07-14,25204,5074,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4737.92,"{\"": \""15%\""}",100544,1,"""North America""" +2023-04-03,25205,1428,"[\""Wireless Mouse\"", \""Phone\""]",3604.36,"{\"": \""7%\""}",221772,1,"""South America""" +2023-08-27,25206,6454,"[\""Keyboard\"", \""Tablet\""]",1103.4,"{\"": \""10%\""}",191942,0,"""Asia""" +2023-12-19,25207,2642,"[\""Tablet\""]",4487.14,{},139234,0,"""South America""" +2023-09-14,25208,6413,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3330.28,"{\"": \""10%\""}",194081,0,"""Europe""" +2023-04-22,25209,7526,"[\""Laptop\""]",2145.83,{},184059,0,"""South America""" +2024-06-09,25210,3500,"[\""Keyboard\"", \""Charger\""]",1747.17,{},213397,1,"""Europe""" +2024-09-21,25211,3246,"[\""Tablet\""]",1268.56,"{\""loyalty\"": \""8%\""}",71713,0,"""Europe""" +2023-02-18,25212,4424,"[\""Monitor\""]",4207.87,{},182416,1,"""South America""" +2023-06-05,25213,425,"[\""Laptop\""]",2477.34,"{\""loyalty\"": \""14%\""}",4342,0,"""South America""" +2024-08-19,25214,8169,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3508.37,"{\""promo\"": \""20%\""}",33723,0,"""Europe""" +2023-05-24,25215,7838,"[\""Charger\"", \""Headphones\""]",4537.57,{},210793,0,"""Africa""" +2023-01-03,25216,7240,"[\""Keyboard\"", \""Laptop\""]",573.24,"{\""loyalty\"": \""29%\""}",216373,1,"""Europe""" +2024-06-24,25217,872,"[\""Keyboard\""]",3077.62,{},105298,0,"""Europe""" +2024-04-21,25218,9065,"[\""Wireless Mouse\""]",1067.08,{},134171,1,"""South America""" +2024-08-21,25219,5519,"[\""Wireless Mouse\""]",158.34,"{\""loyalty\"": \""25%\""}",139732,0,"""North America""" +2024-10-18,25220,9732,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3520.16,{},108011,1,"""Europe""" +2024-12-22,25221,272,"[\""Charger\"", \""Monitor\""]",4956.65,"{\"": \""9%\""}",269219,1,"""South America""" +2023-01-22,25222,3616,"[\""Wireless Mouse\""]",1548.79,{},267646,0,"""North America""" +2023-06-27,25223,2415,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2829.03,"{\""promo\"": \""12%\""}",108267,0,"""Asia""" +2024-09-22,25224,1427,"[\""Headphones\""]",4173.17,{},113740,0,"""Europe""" +2024-03-23,25225,9975,"[\""Tablet\"", \""Headphones\""]",4307.91,{},244346,1,"""Africa""" +2023-11-21,25226,2100,"[\""Headphones\""]",2456.2,{},168605,1,"""Asia""" +2023-10-10,25227,8557,"[\""Charger\""]",1157.69,{},223469,1,"""Africa""" +2023-02-16,25228,8062,"[\""Tablet\"", \""Charger\""]",1152.22,{},193070,0,"""Asia""" +2023-10-15,25229,1377,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",531.68,"{\""promo\"": \""28%\""}",114428,1,"""Europe""" +2023-08-20,25230,3083,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1514.12,"{\""seasonal\"": \""18%\""}",144323,1,"""South America""" +2024-01-04,25231,2975,"[\""Wireless Mouse\"", \""Monitor\""]",3475.76,{},108567,1,"""Asia""" +2024-11-13,25232,6647,"[\""Monitor\"", \""Phone\""]",1205.51,"{\""loyalty\"": \""24%\""}",21105,1,"""Europe""" +2023-12-19,25233,8698,"[\""Keyboard\"", \""Phone\""]",2744.51,"{\""seasonal\"": \""15%\""}",206972,1,"""North America""" +2024-05-21,25234,820,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1957.74,"{\""promo\"": \""21%\""}",101182,0,"""Europe""" +2024-07-15,25235,7369,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",343.53,{},242735,0,"""Africa""" +2023-09-03,25236,2924,"[\""Tablet\""]",2536.34,"{\""promo\"": \""24%\""}",269274,0,"""Africa""" +2023-04-21,25237,7311,"[\""Headphones\""]",3162.31,{},283581,0,"""Asia""" +2023-11-08,25238,4766,"[\""Charger\"", \""Monitor\""]",968.6,{},57354,0,"""Asia""" +2024-07-13,25239,1921,"[\""Wireless Mouse\""]",4086.86,{},22395,0,"""South America""" +2023-10-16,25240,5989,"[\""Keyboard\"", \""Tablet\""]",691.22,"{\""promo\"": \""17%\""}",160299,0,"""Asia""" +2023-06-19,25241,950,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3286.54,"{\"": \""20%\""}",20989,0,"""South America""" +2024-06-28,25242,2519,"[\""Phone\""]",2808.19,"{\""loyalty\"": \""19%\""}",174426,1,"""Europe""" +2024-12-29,25243,5748,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3737.22,"{\""promo\"": \""17%\""}",153418,1,"""Europe""" +2023-09-13,25244,3512,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2279.17,{},84035,0,"""South America""" +2023-04-20,25245,4506,"[\""Charger\"", \""Wireless Mouse\""]",2249.58,{},215860,0,"""Asia""" +2024-09-16,25246,2740,"[\""Tablet\""]",661.07,{},95184,1,"""South America""" +2023-05-27,25247,4618,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3351.79,{},21855,0,"""Europe""" +2024-06-19,25248,7545,"[\""Headphones\""]",360.86,{},65862,0,"""Europe""" +2024-02-27,25249,9682,"[\""Phone\""]",926.77,"{\""seasonal\"": \""9%\""}",250639,0,"""North America""" +2023-07-24,25250,4999,"[\""Wireless Mouse\""]",2985.36,"{\""seasonal\"": \""7%\""}",220685,0,"""Europe""" +2024-08-25,25251,2074,"[\""Phone\"", \""Keyboard\""]",3339.03,"{\""seasonal\"": \""15%\""}",53293,1,"""Africa""" +2023-11-01,25252,5712,"[\""Charger\""]",4843.13,{},195040,1,"""Africa""" +2023-05-22,25253,2098,"[\""Headphones\""]",4906.13,{},134584,0,"""Asia""" +2023-04-10,25254,6578,"[\""Monitor\""]",3678.74,{},281181,1,"""North America""" +2024-10-19,25255,5022,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1449.94,{},240306,0,"""South America""" +2023-08-20,25256,8343,"[\""Laptop\"", \""Headphones\""]",1046.43,"{\""loyalty\"": \""12%\""}",111613,0,"""North America""" +2024-12-26,25257,5811,"[\""Laptop\"", \""Phone\""]",59.92,"{\""loyalty\"": \""29%\""}",7023,0,"""Africa""" +2024-03-04,25258,2661,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3083.6,"{\""promo\"": \""24%\""}",197873,0,"""Africa""" +2023-05-29,25259,3020,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4864.85,"{\""seasonal\"": \""12%\""}",255476,0,"""Europe""" +2023-01-10,25260,1684,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2661.28,"{\"": \""26%\""}",261116,1,"""North America""" +2023-02-24,25261,6396,"[\""Charger\"", \""Wireless Mouse\""]",1177.95,{},250656,0,"""Africa""" +2024-09-20,25262,2172,"[\""Keyboard\"", \""Laptop\""]",2397.38,{},279783,0,"""Asia""" +2024-07-09,25263,2355,"[\""Keyboard\""]",2054.48,{},94451,0,"""Africa""" +2023-06-04,25264,450,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4953.76,"{\""promo\"": \""13%\""}",100162,0,"""South America""" +2024-02-28,25265,1454,"[\""Laptop\"", \""Charger\""]",2109.29,"{\"": \""12%\""}",49436,1,"""Europe""" +2023-02-26,25266,9112,"[\""Headphones\""]",2241.51,{},37061,0,"""North America""" +2024-12-10,25267,2669,"[\""Wireless Mouse\"", \""Phone\""]",4063.4,"{\""loyalty\"": \""14%\""}",6128,1,"""South America""" +2024-05-27,25268,7784,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4421.56,{},156275,1,"""South America""" +2023-09-17,25269,1236,"[\""Phone\""]",2438.7,{},42217,1,"""South America""" +2023-03-21,25270,5418,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4349.06,{},193097,1,"""Europe""" +2024-08-09,25271,1247,"[\""Laptop\"", \""Monitor\""]",4132.8,{},36751,0,"""Europe""" +2024-05-15,25272,5403,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4606.39,{},292549,0,"""Asia""" +2023-10-18,25273,807,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3422.57,"{\"": \""12%\""}",61119,0,"""Europe""" +2024-04-29,25274,9026,"[\""Charger\""]",2968.87,"{\"": \""10%\""}",252090,0,"""North America""" +2023-01-26,25275,4926,"[\""Tablet\""]",4791.15,{},85776,1,"""North America""" +2024-11-03,25276,3197,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",111.19,{},191138,1,"""Africa""" +2023-10-11,25277,4920,"[\""Keyboard\""]",3009.42,{},198516,1,"""Europe""" +2023-04-06,25278,5316,"[\""Headphones\""]",4853.52,"{\""seasonal\"": \""15%\""}",13200,0,"""North America""" +2023-12-22,25279,638,"[\""Tablet\"", \""Laptop\""]",4771.93,{},13811,1,"""Asia""" +2024-12-01,25280,7556,"[\""Keyboard\"", \""Laptop\""]",2421.0,"{\"": \""24%\""}",26791,0,"""North America""" +2024-02-15,25281,41,"[\""Laptop\"", \""Tablet\""]",3590.98,{},67863,1,"""North America""" +2023-06-03,25282,980,"[\""Phone\""]",2433.09,{},246134,1,"""Africa""" +2024-05-17,25283,4251,"[\""Charger\""]",389.47,"{\""loyalty\"": \""18%\""}",224754,1,"""Africa""" +2024-04-12,25284,1948,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3315.58,{},246296,1,"""Asia""" +2024-08-28,25285,4796,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",728.28,{},192741,1,"""South America""" +2023-02-14,25286,5168,"[\""Keyboard\""]",2824.06,{},3064,1,"""Africa""" +2023-06-15,25287,8039,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4074.94,{},290690,1,"""North America""" +2023-09-30,25288,4609,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1795.97,"{\"": \""11%\""}",72266,1,"""North America""" +2023-05-29,25289,3824,"[\""Headphones\"", \""Phone\""]",2748.95,"{\""promo\"": \""30%\""}",161700,1,"""South America""" +2024-11-27,25290,1869,"[\""Wireless Mouse\""]",4742.52,{},30391,0,"""South America""" +2024-06-07,25291,2419,"[\""Laptop\""]",2997.14,{},293961,0,"""Europe""" +2024-05-16,25292,78,"[\""Charger\""]",2139.76,{},30205,1,"""Asia""" +2023-05-09,25293,8379,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2923.32,{},237569,1,"""Europe""" +2023-01-11,25294,9243,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4071.52,"{\"": \""16%\""}",118377,1,"""Africa""" +2023-09-16,25295,9338,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3973.98,"{\""promo\"": \""8%\""}",84653,1,"""Asia""" +2024-03-23,25296,673,"[\""Laptop\"", \""Monitor\""]",3113.82,{},255032,1,"""North America""" +2024-07-13,25297,2007,"[\""Phone\""]",484.15,"{\"": \""20%\""}",203497,1,"""Asia""" +2024-03-31,25298,5441,"[\""Laptop\"", \""Phone\""]",4485.64,{},90820,0,"""Europe""" +2024-06-04,25299,4904,"[\""Wireless Mouse\"", \""Charger\""]",3479.88,"{\""promo\"": \""10%\""}",24164,1,"""Africa""" +2024-03-27,25300,5005,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1749.86,{},15586,0,"""Africa""" +2024-07-13,25301,6983,"[\""Laptop\"", \""Charger\""]",3702.62,"{\""loyalty\"": \""5%\""}",242611,1,"""Europe""" +2023-06-10,25302,6503,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2465.32,{},58818,0,"""Africa""" +2023-08-23,25303,7130,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4026.77,"{\""seasonal\"": \""10%\""}",25546,1,"""North America""" +2024-05-17,25304,8496,"[\""Charger\"", \""Headphones\""]",64.83,"{\""loyalty\"": \""14%\""}",284211,0,"""South America""" +2023-01-14,25305,5828,"[\""Charger\""]",2007.6,{},286473,1,"""Africa""" +2023-10-19,25306,8982,"[\""Headphones\"", \""Monitor\""]",4409.8,{},26099,1,"""Asia""" +2024-11-16,25307,3736,"[\""Laptop\""]",3040.55,"{\""loyalty\"": \""22%\""}",238624,0,"""Africa""" +2024-01-28,25308,6298,"[\""Headphones\""]",1031.72,"{\""loyalty\"": \""17%\""}",160450,0,"""Europe""" +2024-10-28,25309,6760,"[\""Charger\""]",1026.43,"{\""seasonal\"": \""23%\""}",141869,1,"""South America""" +2023-03-25,25310,4612,"[\""Wireless Mouse\"", \""Headphones\""]",2900.52,{},167432,1,"""North America""" +2024-02-21,25311,1800,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4340.3,{},69811,0,"""Asia""" +2023-12-04,25312,4629,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1386.72,{},78033,1,"""Asia""" +2024-04-02,25313,5779,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",487.28,{},5133,1,"""North America""" +2023-02-20,25314,9269,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1115.1,{},133661,0,"""North America""" +2023-02-24,25315,8554,"[\""Laptop\"", \""Monitor\""]",756.12,"{\""promo\"": \""28%\""}",177359,0,"""South America""" +2024-11-27,25316,7024,"[\""Charger\""]",4030.12,{},273231,0,"""Asia""" +2023-06-22,25317,492,"[\""Keyboard\""]",3367.09,"{\""seasonal\"": \""23%\""}",209872,1,"""Africa""" +2024-07-02,25318,797,"[\""Monitor\"", \""Keyboard\""]",3466.63,{},86068,0,"""Africa""" +2023-09-13,25319,4859,"[\""Wireless Mouse\""]",1305.49,"{\""loyalty\"": \""7%\""}",214741,1,"""Africa""" +2024-05-06,25320,6424,"[\""Headphones\"", \""Tablet\""]",859.56,"{\""promo\"": \""25%\""}",137059,1,"""Europe""" +2024-06-18,25321,5423,"[\""Tablet\"", \""Wireless Mouse\""]",2347.83,"{\""loyalty\"": \""16%\""}",62129,0,"""Africa""" +2023-06-06,25322,1318,"[\""Charger\""]",2180.16,{},271072,1,"""North America""" +2023-03-29,25323,9144,"[\""Monitor\""]",3937.39,"{\""seasonal\"": \""18%\""}",214127,0,"""Africa""" +2023-07-18,25324,4360,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",869.32,"{\""promo\"": \""19%\""}",233879,1,"""Africa""" +2024-08-04,25325,2418,"[\""Phone\"", \""Headphones\""]",2104.24,{},58276,1,"""Asia""" +2023-09-18,25326,9951,"[\""Charger\"", \""Headphones\""]",4721.86,{},177093,1,"""Europe""" +2024-05-08,25327,5513,"[\""Keyboard\"", \""Tablet\""]",652.17,{},36462,1,"""South America""" +2024-07-20,25328,1967,"[\""Keyboard\""]",2143.66,{},137806,1,"""Africa""" +2024-04-03,25329,6009,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3087.85,{},128130,1,"""North America""" +2024-05-03,25330,7609,"[\""Charger\"", \""Wireless Mouse\""]",3656.9,"{\"": \""23%\""}",202661,1,"""Europe""" +2024-10-27,25331,1300,"[\""Monitor\"", \""Laptop\""]",3509.18,"{\""promo\"": \""28%\""}",58350,1,"""Asia""" +2023-01-01,25332,3152,"[\""Monitor\""]",4879.01,{},180923,0,"""Africa""" +2023-08-15,25333,4281,"[\""Wireless Mouse\""]",476.93,{},169351,0,"""Europe""" +2024-03-09,25334,3021,"[\""Headphones\"", \""Keyboard\""]",517.48,"{\""promo\"": \""18%\""}",249859,0,"""North America""" +2023-05-30,25335,7889,"[\""Laptop\"", \""Wireless Mouse\""]",581.33,{},129096,1,"""Europe""" +2023-09-06,25336,8220,"[\""Tablet\"", \""Charger\""]",1698.94,"{\"": \""27%\""}",182007,1,"""South America""" +2024-08-04,25337,7053,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1088.78,{},249110,0,"""North America""" +2024-02-11,25338,2325,"[\""Laptop\"", \""Headphones\""]",3611.73,"{\"": \""5%\""}",184178,0,"""Asia""" +2023-12-28,25339,5067,"[\""Wireless Mouse\"", \""Headphones\""]",4502.25,{},136087,1,"""Asia""" +2024-12-30,25340,2496,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1505.54,{},13192,0,"""South America""" +2023-12-03,25341,6489,"[\""Charger\"", \""Wireless Mouse\""]",4049.54,"{\""promo\"": \""14%\""}",44001,1,"""Asia""" +2024-04-06,25342,7597,"[\""Keyboard\""]",2196.54,{},88900,1,"""Asia""" +2023-04-03,25343,8418,"[\""Charger\"", \""Wireless Mouse\""]",229.31,{},88660,1,"""Africa""" +2024-12-03,25344,1110,"[\""Phone\"", \""Laptop\""]",2080.95,{},107968,0,"""Europe""" +2023-12-07,25345,1941,"[\""Keyboard\""]",4892.27,{},154024,0,"""Europe""" +2024-03-08,25346,3121,"[\""Keyboard\"", \""Tablet\""]",3128.64,{},92852,1,"""North America""" +2024-08-29,25347,8139,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4109.47,"{\"": \""28%\""}",55676,0,"""Asia""" +2024-08-12,25348,1518,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4350.88,{},259847,1,"""North America""" +2023-05-09,25349,2500,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2186.2,"{\"": \""29%\""}",259806,1,"""Europe""" +2023-03-27,25350,8501,"[\""Headphones\"", \""Keyboard\""]",1450.5,{},276870,0,"""North America""" +2024-07-04,25351,5739,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4816.44,"{\""seasonal\"": \""21%\""}",23881,1,"""Asia""" +2023-01-19,25352,3085,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3969.39,"{\""loyalty\"": \""30%\""}",248716,0,"""Europe""" +2024-11-03,25353,4799,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4577.37,"{\"": \""8%\""}",213521,0,"""Africa""" +2024-10-22,25354,36,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1454.88,{},99248,0,"""Asia""" +2024-11-24,25355,212,"[\""Phone\""]",4024.25,{},159715,1,"""South America""" +2024-02-22,25356,3836,"[\""Headphones\""]",4001.46,"{\"": \""7%\""}",278083,1,"""Africa""" +2023-08-01,25357,5068,"[\""Tablet\"", \""Wireless Mouse\""]",3798.28,"{\""loyalty\"": \""11%\""}",191639,1,"""Africa""" +2023-02-23,25358,8505,"[\""Wireless Mouse\""]",1024.22,{},34119,1,"""Africa""" +2023-05-18,25359,6960,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2158.35,{},169549,1,"""South America""" +2024-02-17,25360,1956,"[\""Headphones\""]",4124.6,{},236156,0,"""Asia""" +2023-11-06,25361,7616,"[\""Headphones\"", \""Monitor\""]",4682.42,"{\"": \""22%\""}",100091,1,"""Asia""" +2023-01-03,25362,5383,"[\""Keyboard\"", \""Headphones\""]",4392.73,"{\""promo\"": \""13%\""}",17495,0,"""Asia""" +2023-07-13,25363,2756,"[\""Tablet\""]",4111.15,{},109937,1,"""South America""" +2023-09-12,25364,2319,"[\""Wireless Mouse\""]",4409.9,{},15807,1,"""South America""" +2024-06-16,25365,8827,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4026.43,{},136355,1,"""Europe""" +2023-01-12,25366,9549,"[\""Tablet\""]",732.39,{},52521,0,"""Africa""" +2024-02-25,25367,3193,"[\""Monitor\"", \""Wireless Mouse\""]",3352.95,"{\""promo\"": \""10%\""}",292103,1,"""Africa""" +2024-09-07,25368,3153,"[\""Tablet\""]",3173.64,{},246470,1,"""South America""" +2024-09-22,25369,3246,"[\""Phone\""]",103.91,{},288353,0,"""Europe""" +2024-08-12,25370,8341,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1233.15,{},252528,1,"""North America""" +2024-08-02,25371,1976,"[\""Headphones\"", \""Phone\""]",1583.65,{},282096,0,"""Europe""" +2023-11-01,25372,3167,"[\""Laptop\""]",4874.37,{},268827,1,"""Africa""" +2023-08-31,25373,1484,"[\""Headphones\""]",556.65,"{\""seasonal\"": \""8%\""}",270479,1,"""South America""" +2023-04-05,25374,7349,"[\""Wireless Mouse\"", \""Monitor\""]",4248.45,{},297390,1,"""South America""" +2024-05-12,25375,4609,"[\""Tablet\""]",3082.88,{},132857,0,"""South America""" +2023-01-04,25376,910,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1333.04,{},72755,0,"""North America""" +2023-03-12,25377,4450,"[\""Tablet\"", \""Laptop\""]",2775.2,{},168344,0,"""Africa""" +2023-11-06,25378,8961,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3169.21,{},224094,0,"""Europe""" +2023-12-16,25379,5199,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",330.76,{},72198,1,"""South America""" +2023-04-09,25380,6939,"[\""Laptop\"", \""Headphones\""]",3130.66,"{\""promo\"": \""25%\""}",61723,1,"""Africa""" +2023-09-07,25381,8566,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3388.86,"{\""seasonal\"": \""11%\""}",134204,0,"""South America""" +2024-07-22,25382,6411,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",353.92,"{\"": \""18%\""}",221968,0,"""Europe""" +2024-08-29,25383,4476,"[\""Headphones\"", \""Keyboard\""]",63.03,"{\""loyalty\"": \""7%\""}",64709,0,"""Europe""" +2023-04-06,25384,6333,"[\""Phone\""]",2356.12,{},50955,1,"""South America""" +2024-11-09,25385,1762,"[\""Wireless Mouse\""]",4540.22,"{\"": \""11%\""}",147147,0,"""Asia""" +2023-03-09,25386,2201,"[\""Monitor\"", \""Keyboard\""]",581.73,"{\""seasonal\"": \""17%\""}",145554,0,"""North America""" +2024-04-02,25387,7672,"[\""Monitor\""]",2714.81,{},63958,1,"""Europe""" +2023-09-06,25388,9641,"[\""Charger\"", \""Phone\""]",1805.2,{},107879,1,"""Asia""" +2023-11-05,25389,8823,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3181.86,{},261386,1,"""South America""" +2024-05-12,25390,6217,"[\""Phone\"", \""Charger\""]",3882.62,"{\""seasonal\"": \""12%\""}",277575,1,"""Asia""" +2024-06-11,25391,4988,"[\""Wireless Mouse\"", \""Keyboard\""]",2257.57,"{\""loyalty\"": \""9%\""}",142341,1,"""Asia""" +2023-08-22,25392,1530,"[\""Tablet\"", \""Phone\""]",132.64,{},158369,0,"""Africa""" +2023-08-16,25393,1676,"[\""Wireless Mouse\""]",2384.25,{},276325,1,"""Asia""" +2024-12-18,25394,6738,"[\""Charger\""]",4058.45,{},229156,1,"""Africa""" +2023-09-08,25395,6152,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3107.3,"{\""loyalty\"": \""12%\""}",138397,1,"""Europe""" +2023-05-04,25396,6845,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1411.77,"{\""promo\"": \""30%\""}",241956,0,"""Africa""" +2024-10-24,25397,5403,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2468.38,{},284800,1,"""Europe""" +2024-12-22,25398,5649,"[\""Phone\"", \""Tablet\""]",691.2,{},272693,1,"""Africa""" +2023-07-05,25399,5316,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4714.63,"{\"": \""28%\""}",202838,1,"""Asia""" +2023-01-20,25400,707,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1504.68,{},145307,1,"""Europe""" +2023-06-30,25401,7776,"[\""Keyboard\"", \""Tablet\""]",2867.47,"{\""loyalty\"": \""28%\""}",30759,1,"""Europe""" +2023-12-03,25402,8948,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2513.65,{},143042,1,"""Asia""" +2023-09-03,25403,5180,"[\""Wireless Mouse\"", \""Keyboard\""]",2591.47,"{\"": \""18%\""}",215232,0,"""Europe""" +2023-09-11,25404,3093,"[\""Tablet\"", \""Charger\""]",3804.58,"{\""seasonal\"": \""21%\""}",133119,0,"""Africa""" +2024-05-15,25405,8694,"[\""Charger\"", \""Headphones\""]",2560.14,{},145935,1,"""Asia""" +2023-08-13,25406,2640,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4850.95,{},120509,1,"""Africa""" +2024-09-23,25407,4883,"[\""Keyboard\""]",4625.98,"{\""seasonal\"": \""25%\""}",181197,0,"""South America""" +2024-06-03,25408,8247,"[\""Phone\"", \""Tablet\""]",2429.83,{},78715,1,"""Africa""" +2024-08-12,25409,9323,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4554.95,{},201390,1,"""Asia""" +2024-06-22,25410,2559,"[\""Monitor\"", \""Wireless Mouse\""]",3559.34,"{\""promo\"": \""17%\""}",177453,1,"""Asia""" +2024-10-20,25411,708,"[\""Charger\"", \""Phone\""]",3428.19,"{\"": \""28%\""}",106794,1,"""Asia""" +2023-02-05,25412,8415,"[\""Phone\"", \""Wireless Mouse\""]",1233.11,"{\""loyalty\"": \""15%\""}",17263,0,"""Europe""" +2024-09-08,25413,5849,"[\""Keyboard\""]",2338.75,"{\""promo\"": \""20%\""}",172914,1,"""Europe""" +2024-12-16,25414,2915,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3490.84,"{\""loyalty\"": \""13%\""}",293239,0,"""Asia""" +2023-05-30,25415,7716,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2902.82,"{\"": \""28%\""}",110543,0,"""South America""" +2023-08-24,25416,6303,"[\""Tablet\""]",2403.79,"{\""seasonal\"": \""6%\""}",54197,1,"""Asia""" +2024-04-09,25417,2165,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3254.68,{},284844,1,"""Africa""" +2024-01-14,25418,1950,"[\""Wireless Mouse\""]",458.81,"{\""promo\"": \""6%\""}",242269,0,"""Europe""" +2024-03-12,25419,966,"[\""Charger\""]",1126.89,"{\""seasonal\"": \""16%\""}",204105,0,"""Europe""" +2024-06-06,25420,3678,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4791.76,{},227989,0,"""Africa""" +2023-04-30,25421,2877,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3956.66,"{\""loyalty\"": \""23%\""}",269831,1,"""Asia""" +2023-05-03,25422,8175,"[\""Laptop\"", \""Keyboard\""]",2031.69,"{\""loyalty\"": \""6%\""}",145698,0,"""North America""" +2024-04-18,25423,7519,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",53.93,"{\""loyalty\"": \""10%\""}",265313,1,"""Africa""" +2024-11-10,25424,5175,"[\""Monitor\""]",112.43,"{\""seasonal\"": \""26%\""}",181374,1,"""South America""" +2024-07-15,25425,1188,"[\""Wireless Mouse\""]",3877.41,{},102379,1,"""Europe""" +2023-06-21,25426,4353,"[\""Phone\"", \""Monitor\""]",1145.44,"{\"": \""11%\""}",273738,0,"""Europe""" +2024-09-22,25427,9327,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3380.74,"{\""seasonal\"": \""28%\""}",206921,0,"""Europe""" +2023-08-04,25428,8278,"[\""Monitor\"", \""Keyboard\""]",3655.22,{},272467,0,"""Asia""" +2024-11-27,25429,2911,"[\""Charger\""]",755.32,{},10191,0,"""Africa""" +2023-01-22,25430,8850,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1781.69,{},186014,0,"""South America""" +2024-08-02,25431,8014,"[\""Headphones\"", \""Tablet\""]",4331.29,"{\""promo\"": \""14%\""}",31375,0,"""Africa""" +2023-06-25,25432,8069,"[\""Laptop\""]",3305.53,"{\"": \""15%\""}",97623,1,"""Africa""" +2023-08-28,25433,6680,"[\""Phone\""]",4697.23,{},240546,1,"""Asia""" +2023-08-07,25434,1772,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2376.49,{},85948,0,"""North America""" +2024-01-27,25435,1714,"[\""Charger\"", \""Laptop\""]",259.77,"{\""loyalty\"": \""5%\""}",197708,0,"""Africa""" +2023-10-29,25436,7240,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1033.67,"{\""seasonal\"": \""29%\""}",5111,0,"""Africa""" +2023-09-23,25437,9698,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2944.59,"{\""seasonal\"": \""21%\""}",8359,1,"""Europe""" +2024-06-10,25438,8329,"[\""Headphones\"", \""Tablet\""]",2898.34,{},294681,0,"""South America""" +2023-10-02,25439,513,"[\""Charger\"", \""Phone\""]",2744.19,"{\""promo\"": \""7%\""}",230798,0,"""South America""" +2024-11-14,25440,5805,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2765.13,{},49638,0,"""Africa""" +2023-09-25,25441,1853,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4038.57,"{\""loyalty\"": \""6%\""}",224526,0,"""North America""" +2024-04-28,25442,3947,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4269.56,{},4831,0,"""Europe""" +2023-08-12,25443,3332,"[\""Monitor\""]",376.31,"{\"": \""24%\""}",211688,1,"""Asia""" +2023-11-21,25444,609,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2778.71,{},170464,1,"""Europe""" +2024-11-05,25445,1356,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3534.29,"{\"": \""25%\""}",200801,0,"""South America""" +2023-02-26,25446,7787,"[\""Laptop\""]",3860.47,{},117770,1,"""Asia""" +2024-10-21,25447,8569,"[\""Phone\"", \""Tablet\""]",3361.93,"{\"": \""30%\""}",20207,0,"""Africa""" +2023-08-02,25448,8811,"[\""Monitor\"", \""Keyboard\""]",1753.61,"{\""promo\"": \""24%\""}",287893,1,"""Europe""" +2024-03-27,25449,9732,"[\""Laptop\""]",4146.18,{},53983,1,"""Asia""" +2024-03-11,25450,1836,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",421.77,"{\"": \""15%\""}",52767,1,"""North America""" +2023-04-16,25451,1832,"[\""Wireless Mouse\"", \""Keyboard\""]",1684.45,"{\""promo\"": \""7%\""}",267781,1,"""Asia""" +2024-05-07,25452,9791,"[\""Headphones\"", \""Wireless Mouse\""]",2030.16,"{\""loyalty\"": \""21%\""}",270718,1,"""Asia""" +2023-06-10,25453,5497,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4771.21,"{\"": \""17%\""}",5633,0,"""Africa""" +2024-11-25,25454,8951,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1349.8,"{\""promo\"": \""20%\""}",263606,0,"""Asia""" +2024-05-09,25455,4573,"[\""Wireless Mouse\"", \""Monitor\""]",1129.58,"{\""promo\"": \""11%\""}",297331,0,"""Africa""" +2023-05-15,25456,8446,"[\""Phone\"", \""Tablet\""]",4229.06,"{\""seasonal\"": \""11%\""}",133798,1,"""South America""" +2023-05-19,25457,5481,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",298.31,"{\""promo\"": \""11%\""}",17068,0,"""North America""" +2024-04-05,25458,4385,"[\""Monitor\""]",3462.68,"{\""promo\"": \""22%\""}",293400,1,"""Africa""" +2024-03-02,25459,287,"[\""Wireless Mouse\"", \""Monitor\""]",3485.79,{},250974,0,"""Africa""" +2024-12-21,25460,6187,"[\""Monitor\"", \""Laptop\""]",3423.27,"{\""promo\"": \""5%\""}",177150,0,"""Africa""" +2024-09-26,25461,8624,"[\""Keyboard\"", \""Charger\""]",3255.94,"{\""seasonal\"": \""17%\""}",295487,0,"""North America""" +2023-12-08,25462,3293,"[\""Laptop\"", \""Phone\""]",2723.55,{},143288,1,"""North America""" +2024-11-29,25463,8894,"[\""Headphones\""]",3803.81,{},114039,1,"""Africa""" +2023-03-19,25464,2561,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1697.53,{},129874,1,"""Africa""" +2023-07-31,25465,2909,"[\""Tablet\""]",598.43,"{\""promo\"": \""7%\""}",278037,1,"""Asia""" +2023-10-03,25466,6803,"[\""Phone\"", \""Tablet\""]",1271.96,{},130073,0,"""South America""" +2023-01-03,25467,2052,"[\""Phone\"", \""Keyboard\""]",3182.45,{},94769,1,"""Africa""" +2023-03-25,25468,4830,"[\""Wireless Mouse\""]",453.55,"{\"": \""5%\""}",193479,0,"""North America""" +2023-05-25,25469,2534,"[\""Headphones\""]",4049.83,{},210057,1,"""South America""" +2024-10-08,25470,7945,"[\""Laptop\"", \""Tablet\""]",2940.02,{},51572,0,"""North America""" +2023-02-05,25471,4534,"[\""Monitor\"", \""Laptop\""]",3248.72,"{\"": \""7%\""}",15985,0,"""South America""" +2023-02-18,25472,7674,"[\""Phone\"", \""Tablet\""]",2373.36,{},292294,0,"""South America""" +2023-07-23,25473,2484,"[\""Monitor\"", \""Wireless Mouse\""]",1504.54,{},66513,1,"""Asia""" +2023-12-27,25474,6749,"[\""Keyboard\""]",2969.55,"{\"": \""30%\""}",293602,0,"""North America""" +2023-10-12,25475,8885,"[\""Headphones\""]",347.92,"{\"": \""29%\""}",247039,1,"""North America""" +2023-09-23,25476,376,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1346.66,{},166446,0,"""Africa""" +2023-01-12,25477,7294,"[\""Phone\"", \""Headphones\""]",1696.59,{},166358,1,"""North America""" +2023-09-17,25478,5812,"[\""Monitor\""]",490.95,"{\""promo\"": \""10%\""}",121969,1,"""Europe""" +2023-01-19,25479,2802,"[\""Tablet\"", \""Wireless Mouse\""]",3799.91,{},39010,1,"""North America""" +2023-03-30,25480,7502,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",784.0,{},137303,1,"""South America""" +2024-04-16,25481,9954,"[\""Keyboard\""]",3831.96,"{\""seasonal\"": \""9%\""}",193521,1,"""Europe""" +2024-11-01,25482,7164,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1960.66,"{\"": \""19%\""}",254346,1,"""Europe""" +2023-08-04,25483,1661,"[\""Monitor\"", \""Charger\""]",3578.92,{},20376,1,"""Asia""" +2024-06-03,25484,6170,"[\""Monitor\""]",4260.85,{},51654,0,"""North America""" +2024-03-23,25485,6104,"[\""Charger\""]",4206.92,"{\""promo\"": \""22%\""}",33956,0,"""South America""" +2023-08-22,25486,5127,"[\""Keyboard\"", \""Monitor\""]",2154.94,"{\"": \""6%\""}",157954,1,"""Europe""" +2024-11-11,25487,2837,"[\""Tablet\""]",2836.19,"{\"": \""6%\""}",49789,1,"""South America""" +2024-12-24,25488,8717,"[\""Headphones\"", \""Charger\"", \""Phone\""]",117.13,{},12792,1,"""Africa""" +2023-10-28,25489,8588,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",392.18,"{\""loyalty\"": \""16%\""}",223867,0,"""South America""" +2024-05-12,25490,3124,"[\""Charger\"", \""Wireless Mouse\""]",4955.98,"{\""loyalty\"": \""11%\""}",186204,1,"""North America""" +2024-11-13,25491,8294,"[\""Keyboard\"", \""Wireless Mouse\""]",3386.16,"{\""promo\"": \""14%\""}",203672,1,"""South America""" +2024-05-01,25492,6231,"[\""Laptop\""]",2797.03,"{\""seasonal\"": \""12%\""}",282550,0,"""Asia""" +2024-12-30,25493,6088,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2758.09,{},45560,0,"""Asia""" +2023-05-09,25494,6190,"[\""Wireless Mouse\""]",4910.65,{},220247,1,"""South America""" +2024-04-08,25495,5305,"[\""Laptop\"", \""Headphones\""]",1938.86,{},45788,1,"""South America""" +2023-07-08,25496,9408,"[\""Charger\"", \""Keyboard\""]",1957.18,{},92735,1,"""South America""" +2023-07-30,25497,8222,"[\""Phone\"", \""Wireless Mouse\""]",976.59,{},254208,0,"""North America""" +2024-05-28,25498,1216,"[\""Headphones\""]",578.3,"{\""loyalty\"": \""8%\""}",181854,1,"""Africa""" +2023-08-25,25499,9078,"[\""Tablet\"", \""Laptop\""]",4687.18,{},284583,1,"""Africa""" +2024-12-09,25500,5774,"[\""Laptop\""]",459.35,"{\"": \""19%\""}",83083,0,"""Africa""" +2024-05-03,25501,1348,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3543.19,{},75864,1,"""Africa""" +2023-10-02,25502,4685,"[\""Phone\"", \""Tablet\""]",3440.02,{},174147,0,"""South America""" +2023-08-17,25503,8622,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4271.52,"{\""seasonal\"": \""25%\""}",251285,0,"""South America""" +2023-02-02,25504,4275,"[\""Tablet\""]",362.97,"{\"": \""16%\""}",52884,0,"""Europe""" +2023-12-01,25505,6309,"[\""Headphones\""]",2864.87,{},12264,1,"""North America""" +2024-07-27,25506,8763,"[\""Wireless Mouse\"", \""Headphones\""]",3351.29,{},221283,0,"""Asia""" +2024-06-18,25507,3247,"[\""Wireless Mouse\"", \""Keyboard\""]",3580.2,{},195232,1,"""Africa""" +2023-09-22,25508,2139,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",566.72,"{\""loyalty\"": \""18%\""}",211768,0,"""Africa""" +2024-05-26,25509,8297,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4087.96,"{\"": \""25%\""}",187759,1,"""South America""" +2023-09-23,25510,7707,"[\""Laptop\"", \""Headphones\""]",1346.21,{},54655,1,"""South America""" +2023-05-13,25511,8536,"[\""Charger\""]",4423.74,{},63900,1,"""North America""" +2023-12-13,25512,1560,"[\""Keyboard\"", \""Charger\""]",4797.74,{},187776,1,"""Europe""" +2024-08-12,25513,8365,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",623.6,"{\""promo\"": \""6%\""}",287379,1,"""North America""" +2023-01-05,25514,7568,"[\""Phone\""]",3549.72,"{\""promo\"": \""6%\""}",34426,1,"""South America""" +2024-12-07,25515,9341,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3570.33,{},237139,0,"""North America""" +2024-12-02,25516,2321,"[\""Tablet\"", \""Wireless Mouse\""]",1628.94,"{\""promo\"": \""14%\""}",237146,0,"""South America""" +2023-06-10,25517,3438,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1186.63,"{\""promo\"": \""18%\""}",166423,1,"""North America""" +2023-12-30,25518,1432,"[\""Headphones\"", \""Monitor\""]",603.48,{},260892,0,"""Europe""" +2024-12-10,25519,7050,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1612.09,{},177462,1,"""Asia""" +2023-05-04,25520,5218,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2863.97,{},256302,0,"""North America""" +2023-09-15,25521,6886,"[\""Keyboard\""]",4158.17,{},112164,1,"""South America""" +2024-02-04,25522,4715,"[\""Tablet\""]",4477.41,{},64997,1,"""Africa""" +2024-08-11,25523,4800,"[\""Keyboard\""]",4129.88,{},86244,0,"""South America""" +2024-07-04,25524,1775,"[\""Charger\""]",2279.61,"{\""promo\"": \""18%\""}",104297,1,"""Europe""" +2023-07-18,25525,122,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2649.2,{},233192,1,"""South America""" +2023-09-09,25526,9623,"[\""Monitor\""]",3452.26,"{\""promo\"": \""7%\""}",164691,1,"""North America""" +2023-07-04,25527,2878,"[\""Keyboard\"", \""Laptop\""]",4300.27,{},132224,0,"""Africa""" +2024-11-13,25528,5542,"[\""Laptop\""]",3440.51,"{\""promo\"": \""12%\""}",130294,1,"""Africa""" +2024-12-14,25529,7710,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4159.04,"{\"": \""25%\""}",266679,0,"""South America""" +2024-01-31,25530,3788,"[\""Headphones\"", \""Monitor\""]",1474.44,"{\""seasonal\"": \""29%\""}",116427,0,"""South America""" +2023-06-10,25531,1484,"[\""Keyboard\"", \""Tablet\""]",1223.74,"{\""promo\"": \""5%\""}",64007,1,"""North America""" +2024-12-08,25532,5968,"[\""Headphones\""]",3210.83,"{\""seasonal\"": \""24%\""}",164161,1,"""North America""" +2023-11-18,25533,7207,"[\""Charger\"", \""Headphones\""]",523.97,"{\"": \""6%\""}",37514,0,"""Africa""" +2023-07-15,25534,7001,"[\""Tablet\""]",2038.07,"{\""loyalty\"": \""24%\""}",89999,1,"""Europe""" +2023-12-18,25535,475,"[\""Laptop\""]",3661.51,{},254996,1,"""Europe""" +2024-08-06,25536,9013,"[\""Phone\""]",3147.63,"{\""loyalty\"": \""27%\""}",299715,0,"""Asia""" +2024-02-08,25537,6031,"[\""Phone\""]",2786.02,{},225314,0,"""Europe""" +2024-03-06,25538,2628,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2545.14,{},144116,0,"""Africa""" +2024-08-12,25539,2376,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3515.23,"{\"": \""25%\""}",195872,0,"""Europe""" +2023-06-21,25540,1382,"[\""Laptop\"", \""Phone\""]",1867.11,{},70080,0,"""Europe""" +2023-11-06,25541,1875,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3853.86,{},209858,0,"""South America""" +2024-08-26,25542,858,"[\""Keyboard\""]",3587.64,{},131890,1,"""Europe""" +2023-12-30,25543,7527,"[\""Keyboard\""]",1811.04,"{\""loyalty\"": \""21%\""}",258601,0,"""Asia""" +2024-01-30,25544,6573,"[\""Keyboard\"", \""Wireless Mouse\""]",4209.96,{},121829,1,"""Europe""" +2024-05-12,25545,8963,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3138.99,{},281162,0,"""Asia""" +2023-08-07,25546,9862,"[\""Tablet\""]",4043.66,"{\""loyalty\"": \""23%\""}",248927,1,"""Europe""" +2023-01-27,25547,3676,"[\""Phone\"", \""Tablet\""]",4528.57,"{\""loyalty\"": \""6%\""}",223414,0,"""Europe""" +2024-06-30,25548,3864,"[\""Keyboard\"", \""Wireless Mouse\""]",2625.6,{},190853,1,"""Asia""" +2023-03-15,25549,496,"[\""Keyboard\"", \""Laptop\""]",3759.96,"{\""seasonal\"": \""24%\""}",144129,0,"""North America""" +2024-05-09,25550,4267,"[\""Wireless Mouse\""]",4057.81,{},36409,1,"""Europe""" +2023-08-21,25551,7089,"[\""Monitor\""]",149.48,"{\""promo\"": \""14%\""}",88264,1,"""Europe""" +2023-05-11,25552,6819,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",468.62,{},136374,0,"""North America""" +2023-04-20,25553,5545,"[\""Phone\""]",3640.94,{},248718,0,"""Europe""" +2023-01-01,25554,8178,"[\""Keyboard\""]",2706.15,"{\""loyalty\"": \""8%\""}",197118,0,"""North America""" +2023-08-20,25555,2111,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3393.71,{},63007,0,"""Africa""" +2023-11-26,25556,4841,"[\""Phone\"", \""Tablet\""]",2401.13,{},111596,0,"""North America""" +2024-04-02,25557,7330,"[\""Tablet\""]",3290.68,"{\""loyalty\"": \""29%\""}",143226,1,"""North America""" +2023-04-19,25558,3546,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3814.2,{},286112,0,"""Africa""" +2024-06-24,25559,2148,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3197.48,{},140865,1,"""Africa""" +2024-10-10,25560,3215,"[\""Wireless Mouse\"", \""Keyboard\""]",2190.66,"{\""promo\"": \""8%\""}",186113,1,"""Europe""" +2023-01-22,25561,1328,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1207.1,{},117893,0,"""Europe""" +2023-06-12,25562,8027,"[\""Headphones\""]",4830.98,"{\""loyalty\"": \""8%\""}",190747,1,"""South America""" +2023-10-31,25563,4279,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",206.31,{},30719,1,"""Europe""" +2023-01-26,25564,8735,"[\""Tablet\""]",2322.63,"{\"": \""23%\""}",136020,1,"""South America""" +2024-04-11,25565,5536,"[\""Keyboard\""]",304.05,{},155078,1,"""Africa""" +2023-02-24,25566,9801,"[\""Headphones\"", \""Phone\""]",3608.8,"{\""seasonal\"": \""24%\""}",47173,0,"""Europe""" +2024-01-30,25567,5039,"[\""Charger\""]",627.29,"{\"": \""7%\""}",1847,0,"""North America""" +2024-10-01,25568,1942,"[\""Monitor\"", \""Phone\""]",2383.82,{},258250,1,"""Asia""" +2024-09-15,25569,8985,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",882.19,"{\""promo\"": \""24%\""}",99665,0,"""Asia""" +2024-10-13,25570,663,"[\""Laptop\""]",1460.85,{},221560,1,"""Africa""" +2024-10-06,25571,5296,"[\""Phone\""]",490.07,"{\""promo\"": \""15%\""}",259628,0,"""Africa""" +2023-02-27,25572,2481,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4779.61,"{\"": \""7%\""}",53544,0,"""North America""" +2023-08-29,25573,8207,"[\""Phone\"", \""Keyboard\""]",1868.84,"{\"": \""24%\""}",70700,1,"""South America""" +2023-05-25,25574,3138,"[\""Wireless Mouse\"", \""Laptop\""]",3827.44,"{\""loyalty\"": \""10%\""}",8135,1,"""South America""" +2024-08-17,25575,6144,"[\""Charger\""]",3984.43,"{\"": \""29%\""}",5254,1,"""North America""" +2023-01-07,25576,1262,"[\""Monitor\""]",2605.94,"{\""seasonal\"": \""30%\""}",236788,1,"""Asia""" +2024-11-11,25577,7996,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",253.15,"{\""promo\"": \""15%\""}",85369,1,"""Africa""" +2024-06-17,25578,4685,"[\""Charger\"", \""Laptop\""]",161.98,"{\""loyalty\"": \""5%\""}",174150,0,"""Africa""" +2023-06-21,25579,7549,"[\""Laptop\"", \""Charger\""]",2994.61,"{\""promo\"": \""8%\""}",42651,1,"""Africa""" +2023-08-02,25580,6411,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3962.78,{},42070,0,"""Africa""" +2024-12-20,25581,6512,"[\""Tablet\""]",1786.58,"{\""seasonal\"": \""18%\""}",42830,1,"""North America""" +2024-10-03,25582,5366,"[\""Tablet\"", \""Phone\""]",152.69,"{\""seasonal\"": \""5%\""}",29060,0,"""Europe""" +2024-01-07,25583,9538,"[\""Phone\""]",3345.91,{},146917,0,"""Africa""" +2024-08-15,25584,3418,"[\""Laptop\"", \""Phone\""]",4339.18,{},75233,1,"""Asia""" +2024-12-26,25585,3064,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4251.06,{},143692,1,"""Africa""" +2023-09-25,25586,2155,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1215.16,{},274440,1,"""South America""" +2024-04-27,25587,5785,"[\""Tablet\"", \""Monitor\""]",4414.88,{},150869,0,"""Europe""" +2024-10-21,25588,2975,"[\""Headphones\""]",2425.9,{},101917,1,"""Africa""" +2023-07-12,25589,9061,"[\""Monitor\"", \""Headphones\""]",4379.89,{},38645,1,"""South America""" +2023-01-06,25590,4845,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4828.59,"{\""seasonal\"": \""20%\""}",111064,0,"""Europe""" +2024-11-23,25591,5058,"[\""Phone\"", \""Wireless Mouse\""]",4057.24,"{\""promo\"": \""25%\""}",47789,0,"""South America""" +2023-09-17,25592,4095,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3607.17,{},48679,0,"""Africa""" +2023-09-24,25593,2660,"[\""Wireless Mouse\""]",275.42,"{\""seasonal\"": \""25%\""}",4316,1,"""Europe""" +2024-06-19,25594,9888,"[\""Headphones\"", \""Keyboard\""]",4341.35,{},180955,1,"""Asia""" +2024-11-22,25595,2248,"[\""Phone\"", \""Laptop\""]",119.89,"{\""promo\"": \""21%\""}",241062,0,"""Asia""" +2024-01-21,25596,9124,"[\""Headphones\""]",2295.75,{},81762,0,"""Asia""" +2023-04-24,25597,582,"[\""Monitor\"", \""Keyboard\""]",2469.02,{},85253,0,"""North America""" +2024-12-13,25598,3899,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4702.48,"{\""promo\"": \""5%\""}",208166,1,"""North America""" +2023-02-19,25599,4133,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1218.14,{},210619,1,"""Africa""" +2023-10-24,25600,5490,"[\""Phone\""]",1315.56,{},112418,1,"""Africa""" +2024-03-13,25601,6706,"[\""Tablet\"", \""Headphones\""]",4614.45,{},48128,1,"""Africa""" +2024-09-11,25602,18,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4131.74,"{\""loyalty\"": \""11%\""}",207167,1,"""South America""" +2024-04-03,25603,1356,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3926.73,"{\"": \""13%\""}",143635,0,"""Africa""" +2023-07-08,25604,1088,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",541.48,{},140717,0,"""Europe""" +2023-11-08,25605,1381,"[\""Monitor\"", \""Laptop\""]",3418.0,"{\""loyalty\"": \""25%\""}",254608,0,"""Europe""" +2023-12-01,25606,6752,"[\""Wireless Mouse\""]",4754.98,{},21520,0,"""Europe""" +2024-11-05,25607,8969,"[\""Keyboard\""]",2194.35,{},230684,0,"""South America""" +2023-11-26,25608,334,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4414.76,{},6955,1,"""South America""" +2023-03-23,25609,1709,"[\""Monitor\""]",4499.35,"{\""loyalty\"": \""7%\""}",120150,0,"""Asia""" +2023-11-08,25610,7799,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",575.12,{},290462,1,"""Asia""" +2024-02-26,25611,2878,"[\""Phone\""]",1109.5,"{\""seasonal\"": \""20%\""}",170115,0,"""Africa""" +2024-06-28,25612,5616,"[\""Tablet\""]",3568.35,"{\"": \""10%\""}",173694,1,"""Asia""" +2024-04-30,25613,6359,"[\""Monitor\"", \""Keyboard\""]",1218.69,{},116089,1,"""Africa""" +2024-03-14,25614,3435,"[\""Headphones\"", \""Laptop\""]",3325.95,"{\"": \""9%\""}",208805,1,"""North America""" +2023-04-29,25615,7728,"[\""Charger\"", \""Wireless Mouse\""]",3487.87,"{\""loyalty\"": \""11%\""}",215451,1,"""Africa""" +2023-09-30,25616,6158,"[\""Phone\""]",3296.51,"{\"": \""29%\""}",15402,1,"""Europe""" +2023-03-11,25617,5224,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1637.37,{},50398,0,"""North America""" +2023-07-17,25618,833,"[\""Charger\""]",1780.49,"{\"": \""11%\""}",55545,1,"""North America""" +2023-10-31,25619,6981,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4270.66,{},203625,0,"""Africa""" +2023-12-20,25620,3520,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4226.29,"{\"": \""12%\""}",169528,1,"""North America""" +2024-02-05,25621,5254,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3575.67,{},200062,1,"""North America""" +2023-11-05,25622,2832,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1542.12,{},229485,1,"""North America""" +2023-02-25,25623,7076,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2952.05,"{\"": \""8%\""}",93467,1,"""North America""" +2023-05-20,25624,6373,"[\""Headphones\"", \""Wireless Mouse\""]",1152.87,{},45542,1,"""Africa""" +2024-04-20,25625,5146,"[\""Laptop\""]",4671.44,{},107039,1,"""Asia""" +2023-03-12,25626,4651,"[\""Charger\"", \""Tablet\""]",1224.18,"{\""promo\"": \""24%\""}",119220,0,"""South America""" +2024-02-05,25627,5202,"[\""Keyboard\"", \""Charger\""]",2700.83,{},95316,1,"""Africa""" +2024-01-18,25628,7111,"[\""Phone\""]",2155.54,{},143521,1,"""Europe""" +2024-07-10,25629,8275,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3826.52,"{\""promo\"": \""10%\""}",53850,0,"""North America""" +2024-03-26,25630,1780,"[\""Monitor\"", \""Laptop\""]",2004.12,"{\""loyalty\"": \""22%\""}",274204,0,"""Europe""" +2024-05-25,25631,2733,"[\""Phone\""]",1014.08,{},19352,0,"""Europe""" +2024-07-01,25632,7008,"[\""Keyboard\""]",2110.17,"{\"": \""15%\""}",84553,0,"""North America""" +2023-01-29,25633,2096,"[\""Wireless Mouse\"", \""Laptop\""]",541.32,"{\""loyalty\"": \""15%\""}",265495,0,"""South America""" +2023-02-27,25634,1262,"[\""Wireless Mouse\"", \""Phone\""]",874.09,"{\"": \""8%\""}",48617,0,"""Europe""" +2023-03-12,25635,3076,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4115.11,"{\"": \""28%\""}",127194,0,"""Europe""" +2024-06-13,25636,2389,"[\""Tablet\""]",4713.94,{},84592,0,"""North America""" +2024-03-03,25637,1447,"[\""Charger\""]",1779.81,{},106919,0,"""Asia""" +2023-09-05,25638,2862,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1436.26,{},59446,1,"""Europe""" +2023-07-18,25639,7715,"[\""Headphones\""]",515.77,"{\""promo\"": \""30%\""}",43534,1,"""North America""" +2023-02-05,25640,7336,"[\""Keyboard\""]",2482.86,"{\"": \""6%\""}",62451,1,"""Asia""" +2024-10-10,25641,6969,"[\""Keyboard\"", \""Phone\""]",4754.42,"{\""seasonal\"": \""14%\""}",50531,1,"""North America""" +2023-11-22,25642,8290,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4446.35,{},284820,0,"""Asia""" +2024-05-16,25643,8477,"[\""Phone\""]",1266.19,"{\""promo\"": \""23%\""}",36582,1,"""Asia""" +2023-08-22,25644,194,"[\""Wireless Mouse\"", \""Phone\""]",2477.53,"{\""loyalty\"": \""19%\""}",271054,0,"""Europe""" +2024-03-16,25645,8574,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1357.84,"{\""promo\"": \""9%\""}",221825,1,"""South America""" +2023-09-16,25646,1583,"[\""Headphones\""]",1922.29,"{\"": \""17%\""}",224177,0,"""North America""" +2024-09-25,25647,7739,"[\""Keyboard\"", \""Wireless Mouse\""]",352.79,{},134027,1,"""Asia""" +2024-05-06,25648,2731,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2738.35,{},152613,1,"""Europe""" +2024-07-18,25649,1715,"[\""Headphones\"", \""Laptop\""]",793.32,{},172652,1,"""Asia""" +2024-06-29,25650,4634,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4608.19,"{\""loyalty\"": \""9%\""}",263910,0,"""North America""" +2023-11-04,25651,3701,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1921.76,{},276274,0,"""Europe""" +2023-11-13,25652,7688,"[\""Monitor\""]",2126.34,{},175265,0,"""Europe""" +2023-05-16,25653,7623,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",572.71,"{\"": \""26%\""}",140070,1,"""Europe""" +2024-09-12,25654,7290,"[\""Tablet\""]",2577.44,"{\""loyalty\"": \""11%\""}",229322,1,"""Africa""" +2024-05-23,25655,7126,"[\""Keyboard\"", \""Tablet\""]",3380.66,{},206817,0,"""Asia""" +2024-06-30,25656,2728,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4666.06,{},102183,0,"""Asia""" +2023-06-22,25657,8892,"[\""Charger\"", \""Phone\""]",3141.76,"{\""seasonal\"": \""20%\""}",134225,1,"""South America""" +2024-07-26,25658,7273,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",950.79,{},27434,1,"""North America""" +2024-06-25,25659,5428,"[\""Wireless Mouse\""]",4788.17,"{\""seasonal\"": \""25%\""}",59131,0,"""South America""" +2024-11-17,25660,1687,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",446.33,{},278062,1,"""Europe""" +2024-04-28,25661,1204,"[\""Keyboard\"", \""Tablet\""]",4218.36,"{\""seasonal\"": \""17%\""}",290016,1,"""North America""" +2024-04-29,25662,7944,"[\""Monitor\""]",3307.43,"{\"": \""14%\""}",70114,1,"""Europe""" +2024-08-24,25663,768,"[\""Phone\""]",908.17,{},142508,1,"""Africa""" +2023-09-04,25664,6889,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3306.91,{},241159,0,"""South America""" +2024-01-11,25665,2856,"[\""Tablet\"", \""Charger\""]",736.26,{},134363,0,"""Europe""" +2024-03-09,25666,1843,"[\""Tablet\"", \""Charger\""]",1914.7,"{\""loyalty\"": \""20%\""}",16242,1,"""North America""" +2024-03-01,25667,2966,"[\""Monitor\""]",1676.87,{},184962,1,"""Asia""" +2023-02-03,25668,2237,"[\""Phone\"", \""Wireless Mouse\""]",4842.37,{},299122,1,"""North America""" +2023-06-14,25669,2606,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",481.87,{},270009,1,"""South America""" +2024-12-08,25670,7320,"[\""Laptop\""]",532.05,"{\"": \""23%\""}",60176,1,"""Europe""" +2023-11-19,25671,2158,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",693.1,"{\""promo\"": \""20%\""}",215681,1,"""North America""" +2024-09-03,25672,4760,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1381.38,"{\""promo\"": \""26%\""}",106825,1,"""Africa""" +2023-06-09,25673,669,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4737.33,"{\""loyalty\"": \""24%\""}",117728,1,"""Europe""" +2024-12-04,25674,4824,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",278.7,"{\""seasonal\"": \""13%\""}",160800,1,"""North America""" +2024-12-21,25675,9061,"[\""Charger\""]",2172.14,"{\""promo\"": \""10%\""}",59163,0,"""Asia""" +2023-12-03,25676,1807,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3450.59,{},253945,0,"""Africa""" +2024-06-23,25677,4783,"[\""Charger\"", \""Headphones\""]",74.05,"{\"": \""23%\""}",2403,1,"""Africa""" +2024-04-13,25678,855,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",226.29,"{\""promo\"": \""23%\""}",284578,1,"""North America""" +2023-04-23,25679,7147,"[\""Laptop\""]",4175.2,"{\""seasonal\"": \""22%\""}",130093,0,"""Europe""" +2024-04-20,25680,2705,"[\""Laptop\"", \""Headphones\""]",1978.11,"{\""promo\"": \""19%\""}",77841,0,"""Africa""" +2024-11-14,25681,6723,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",466.75,{},291972,0,"""South America""" +2023-09-16,25682,1994,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",345.79,"{\""loyalty\"": \""14%\""}",226497,0,"""North America""" +2024-12-27,25683,5725,"[\""Phone\"", \""Tablet\""]",3170.21,{},70829,0,"""Europe""" +2024-05-30,25684,7402,"[\""Charger\"", \""Keyboard\""]",1065.64,{},145762,0,"""Europe""" +2023-04-01,25685,523,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3430.16,{},215165,0,"""Asia""" +2023-04-29,25686,4346,"[\""Wireless Mouse\"", \""Headphones\""]",279.78,"{\""loyalty\"": \""24%\""}",291883,1,"""South America""" +2024-06-12,25687,4666,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1412.7,"{\""loyalty\"": \""13%\""}",43427,1,"""South America""" +2024-05-05,25688,5090,"[\""Phone\""]",1086.21,"{\""loyalty\"": \""16%\""}",28806,1,"""Europe""" +2024-03-11,25689,4660,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3772.54,{},103165,1,"""Africa""" +2024-10-08,25690,7668,"[\""Keyboard\"", \""Headphones\""]",2359.25,{},186297,0,"""Asia""" +2024-07-27,25691,8751,"[\""Tablet\""]",955.06,"{\""loyalty\"": \""28%\""}",201190,1,"""North America""" +2024-09-28,25692,5628,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",173.94,"{\""seasonal\"": \""15%\""}",121384,1,"""Asia""" +2023-04-30,25693,8983,"[\""Charger\""]",771.3,{},263583,0,"""Asia""" +2024-07-15,25694,9589,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4116.45,"{\""seasonal\"": \""29%\""}",41145,1,"""Europe""" +2023-09-14,25695,8376,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2522.34,{},292983,0,"""South America""" +2024-01-09,25696,8633,"[\""Charger\""]",4868.5,"{\""seasonal\"": \""29%\""}",135135,1,"""Europe""" +2023-03-06,25697,7561,"[\""Tablet\""]",4059.11,"{\""promo\"": \""13%\""}",19976,0,"""South America""" +2023-01-23,25698,6460,"[\""Tablet\""]",2092.76,"{\"": \""30%\""}",233172,0,"""Asia""" +2023-04-02,25699,5417,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4856.44,{},230608,0,"""Europe""" +2023-12-31,25700,8956,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4985.71,{},171469,1,"""North America""" +2023-04-17,25701,5916,"[\""Phone\"", \""Monitor\""]",2588.5,"{\""seasonal\"": \""20%\""}",267934,0,"""North America""" +2024-04-12,25702,3282,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4706.5,{},154004,1,"""Africa""" +2024-02-16,25703,7669,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2272.93,{},202001,1,"""South America""" +2023-07-23,25704,6513,"[\""Monitor\"", \""Keyboard\""]",213.67,"{\""loyalty\"": \""6%\""}",32701,0,"""Africa""" +2023-04-12,25705,1568,"[\""Headphones\""]",217.37,{},19715,0,"""Europe""" +2024-04-10,25706,4125,"[\""Tablet\""]",2091.85,"{\""promo\"": \""17%\""}",172422,1,"""North America""" +2024-04-24,25707,3948,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3329.9,"{\""loyalty\"": \""5%\""}",18838,1,"""Europe""" +2024-11-01,25708,4444,"[\""Charger\""]",3690.61,"{\"": \""14%\""}",181664,1,"""South America""" +2023-12-17,25709,9090,"[\""Tablet\""]",747.03,{},179255,1,"""South America""" +2024-01-06,25710,240,"[\""Keyboard\"", \""Phone\""]",4508.11,"{\""seasonal\"": \""13%\""}",167701,0,"""Africa""" +2024-02-08,25711,1394,"[\""Phone\""]",344.99,"{\"": \""11%\""}",93521,1,"""North America""" +2023-01-29,25712,617,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2401.01,"{\"": \""10%\""}",39374,0,"""North America""" +2024-03-18,25713,3031,"[\""Charger\"", \""Keyboard\""]",4231.75,{},19620,0,"""North America""" +2023-12-24,25714,8766,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2205.27,{},290919,0,"""North America""" +2024-12-31,25715,7484,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2891.03,"{\""loyalty\"": \""20%\""}",185810,1,"""Africa""" +2023-08-09,25716,333,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",915.06,{},185036,1,"""Africa""" +2024-08-22,25717,9444,"[\""Keyboard\""]",170.07,{},36907,1,"""North America""" +2024-10-02,25718,4277,"[\""Tablet\"", \""Charger\""]",3273.46,"{\"": \""10%\""}",120980,1,"""Asia""" +2024-05-17,25719,1562,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4982.71,"{\"": \""21%\""}",155923,1,"""Asia""" +2023-11-10,25720,7055,"[\""Keyboard\""]",795.32,{},256940,0,"""Asia""" +2024-10-01,25721,8728,"[\""Charger\""]",2408.41,"{\""loyalty\"": \""15%\""}",212509,1,"""North America""" +2024-05-02,25722,9381,"[\""Phone\"", \""Wireless Mouse\""]",2694.01,"{\""seasonal\"": \""7%\""}",122756,0,"""Asia""" +2024-11-17,25723,5202,"[\""Monitor\""]",94.26,"{\""promo\"": \""25%\""}",280324,0,"""South America""" +2024-08-22,25724,2008,"[\""Tablet\"", \""Laptop\""]",57.64,"{\""loyalty\"": \""18%\""}",257963,0,"""North America""" +2023-05-20,25725,540,"[\""Phone\"", \""Tablet\""]",4972.4,{},173429,0,"""Asia""" +2024-07-09,25726,8270,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",644.95,"{\""seasonal\"": \""26%\""}",54952,1,"""Africa""" +2024-08-22,25727,4232,"[\""Phone\""]",2800.82,{},210438,0,"""North America""" +2023-02-13,25728,8590,"[\""Charger\""]",1651.73,{},252040,1,"""South America""" +2024-03-28,25729,448,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4431.06,"{\""seasonal\"": \""16%\""}",146891,0,"""North America""" +2024-10-25,25730,7512,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1473.56,"{\""promo\"": \""23%\""}",201116,1,"""Europe""" +2024-06-17,25731,9504,"[\""Keyboard\"", \""Headphones\""]",1826.32,{},111619,1,"""Europe""" +2023-04-06,25732,6676,"[\""Charger\""]",3963.07,{},89315,0,"""North America""" +2023-04-27,25733,1344,"[\""Headphones\""]",4428.1,{},75589,0,"""South America""" +2024-05-03,25734,5481,"[\""Monitor\"", \""Charger\""]",2773.33,{},212634,1,"""Asia""" +2023-04-13,25735,4791,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2854.17,{},132839,0,"""South America""" +2024-11-14,25736,1362,"[\""Keyboard\"", \""Phone\""]",2303.83,"{\"": \""10%\""}",133825,0,"""Africa""" +2023-06-14,25737,5020,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3431.91,{},294452,1,"""North America""" +2023-10-07,25738,2377,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1797.57,{},250180,0,"""South America""" +2024-09-08,25739,9914,"[\""Keyboard\""]",1738.54,{},71659,1,"""Africa""" +2023-05-27,25740,9194,"[\""Headphones\""]",902.17,{},88127,0,"""North America""" +2023-10-14,25741,2266,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",848.56,"{\""seasonal\"": \""30%\""}",229203,1,"""Asia""" +2023-06-03,25742,6521,"[\""Phone\"", \""Keyboard\""]",766.4,{},129152,0,"""North America""" +2024-10-25,25743,2993,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1742.02,"{\""seasonal\"": \""24%\""}",63264,1,"""South America""" +2024-12-01,25744,2297,"[\""Tablet\"", \""Monitor\""]",1157.03,{},82748,1,"""South America""" +2023-01-01,25745,8906,"[\""Tablet\"", \""Laptop\""]",231.08,{},239694,1,"""Africa""" +2023-05-21,25746,4808,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2644.88,{},191162,0,"""Asia""" +2024-06-14,25747,2842,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1410.56,{},76939,1,"""South America""" +2024-02-03,25748,1173,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3784.08,"{\"": \""14%\""}",117565,0,"""Europe""" +2024-09-13,25749,842,"[\""Wireless Mouse\"", \""Headphones\""]",2762.96,{},151390,0,"""South America""" +2024-12-25,25750,7017,"[\""Tablet\""]",1503.4,{},242678,0,"""Asia""" +2024-03-17,25751,3656,"[\""Laptop\""]",3250.43,{},263568,1,"""South America""" +2023-07-02,25752,9885,"[\""Keyboard\"", \""Phone\""]",3602.86,"{\"": \""7%\""}",100988,0,"""Europe""" +2023-12-03,25753,2018,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",555.71,{},49890,1,"""South America""" +2024-10-07,25754,9964,"[\""Laptop\"", \""Wireless Mouse\""]",1852.08,{},132831,0,"""Africa""" +2024-02-07,25755,8561,"[\""Monitor\"", \""Phone\""]",1056.51,{},38331,1,"""Asia""" +2024-04-19,25756,1913,"[\""Wireless Mouse\""]",1124.73,"{\""seasonal\"": \""30%\""}",122906,1,"""North America""" +2024-03-21,25757,4514,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3418.76,"{\""promo\"": \""22%\""}",9668,0,"""South America""" +2024-05-16,25758,69,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2744.22,"{\""loyalty\"": \""5%\""}",126168,0,"""Europe""" +2023-12-01,25759,7903,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2571.41,{},223957,1,"""Africa""" +2023-05-07,25760,3814,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2232.44,"{\""promo\"": \""28%\""}",250715,1,"""Africa""" +2024-01-28,25761,2119,"[\""Charger\"", \""Phone\""]",4601.36,"{\""promo\"": \""15%\""}",203793,1,"""South America""" +2024-10-11,25762,6182,"[\""Headphones\""]",645.34,"{\""loyalty\"": \""30%\""}",77168,0,"""North America""" +2023-04-20,25763,1615,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2203.71,{},284943,1,"""Africa""" +2024-08-14,25764,8384,"[\""Phone\""]",410.09,{},84630,0,"""Africa""" +2024-04-04,25765,5053,"[\""Phone\""]",4460.9,"{\""seasonal\"": \""5%\""}",236729,0,"""North America""" +2023-11-19,25766,5878,"[\""Charger\""]",759.2,{},164846,0,"""Europe""" +2023-06-23,25767,8262,"[\""Headphones\""]",3993.08,{},132505,1,"""Africa""" +2023-08-17,25768,3323,"[\""Headphones\""]",3484.05,{},103166,0,"""Europe""" +2024-06-27,25769,6048,"[\""Laptop\""]",1977.8,{},111697,0,"""Europe""" +2023-10-17,25770,1573,"[\""Keyboard\"", \""Charger\""]",1965.51,{},188795,1,"""South America""" +2023-01-20,25771,5694,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4840.66,"{\"": \""17%\""}",215382,0,"""Asia""" +2024-12-09,25772,1790,"[\""Laptop\""]",4869.89,{},242685,1,"""Asia""" +2024-04-18,25773,4722,"[\""Charger\""]",4752.28,"{\""seasonal\"": \""23%\""}",93377,1,"""Europe""" +2024-09-15,25774,7854,"[\""Keyboard\"", \""Tablet\""]",2885.36,{},20015,0,"""Europe""" +2024-10-27,25775,8784,"[\""Charger\""]",1183.82,"{\"": \""29%\""}",81156,0,"""Africa""" +2024-06-08,25776,5018,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2486.84,"{\"": \""30%\""}",38210,1,"""Africa""" +2024-03-26,25777,2566,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1966.71,"{\""promo\"": \""23%\""}",27201,0,"""North America""" +2023-03-01,25778,4949,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",548.31,"{\""promo\"": \""30%\""}",66423,0,"""Europe""" +2023-09-23,25779,7597,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2776.67,"{\""promo\"": \""30%\""}",261191,0,"""North America""" +2023-03-26,25780,3727,"[\""Charger\""]",3261.13,"{\""seasonal\"": \""12%\""}",273250,0,"""Africa""" +2024-09-03,25781,3619,"[\""Laptop\"", \""Phone\""]",4020.84,"{\""seasonal\"": \""14%\""}",238939,0,"""North America""" +2024-08-04,25782,6871,"[\""Keyboard\""]",4369.51,"{\""promo\"": \""21%\""}",104929,0,"""Africa""" +2023-03-29,25783,9327,"[\""Charger\"", \""Keyboard\""]",4550.39,{},186243,0,"""Africa""" +2023-02-18,25784,5895,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2884.52,"{\""seasonal\"": \""26%\""}",32132,1,"""North America""" +2023-01-05,25785,8953,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1181.43,"{\"": \""11%\""}",143880,1,"""Asia""" +2023-06-11,25786,9456,"[\""Keyboard\""]",1378.68,"{\"": \""26%\""}",228453,1,"""North America""" +2024-01-07,25787,2912,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4275.17,"{\"": \""15%\""}",278186,1,"""Europe""" +2024-05-04,25788,1967,"[\""Charger\""]",2031.47,{},4586,0,"""Europe""" +2024-02-01,25789,5369,"[\""Keyboard\""]",2075.8,{},227333,1,"""South America""" +2023-07-22,25790,1026,"[\""Keyboard\""]",3996.61,{},146975,0,"""Africa""" +2023-06-02,25791,830,"[\""Headphones\"", \""Phone\""]",3435.32,"{\""seasonal\"": \""28%\""}",254639,0,"""South America""" +2024-02-13,25792,4970,"[\""Phone\"", \""Monitor\""]",1982.37,{},188394,0,"""Europe""" +2023-06-22,25793,7472,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3954.75,"{\"": \""23%\""}",7937,0,"""South America""" +2024-06-10,25794,9418,"[\""Headphones\""]",1771.86,{},93494,0,"""Africa""" +2024-07-31,25795,9957,"[\""Wireless Mouse\"", \""Keyboard\""]",795.52,"{\""promo\"": \""9%\""}",288947,1,"""South America""" +2024-08-06,25796,7566,"[\""Monitor\""]",747.7,{},109043,0,"""Europe""" +2023-02-11,25797,3503,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1465.92,"{\""loyalty\"": \""11%\""}",110067,1,"""South America""" +2024-10-25,25798,9395,"[\""Wireless Mouse\"", \""Tablet\""]",1070.61,"{\""promo\"": \""6%\""}",112832,0,"""South America""" +2024-02-27,25799,9671,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",148.1,"{\""loyalty\"": \""29%\""}",279291,1,"""Europe""" +2024-04-20,25800,5481,"[\""Phone\"", \""Keyboard\""]",2537.96,"{\""loyalty\"": \""12%\""}",88544,0,"""Asia""" +2024-02-22,25801,31,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2269.1,"{\""loyalty\"": \""19%\""}",284331,0,"""South America""" +2024-12-17,25802,7028,"[\""Phone\""]",736.32,{},287873,1,"""South America""" +2024-03-26,25803,6063,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2709.17,{},221076,1,"""Europe""" +2024-10-27,25804,8807,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2791.14,"{\""promo\"": \""25%\""}",3423,1,"""North America""" +2024-06-19,25805,5075,"[\""Wireless Mouse\""]",1889.24,"{\""loyalty\"": \""22%\""}",135382,0,"""Africa""" +2024-12-13,25806,9851,"[\""Phone\"", \""Keyboard\""]",2577.74,{},297036,1,"""South America""" +2024-07-21,25807,5258,"[\""Wireless Mouse\"", \""Charger\""]",2864.91,{},218402,0,"""Africa""" +2023-09-25,25808,985,"[\""Tablet\"", \""Charger\""]",1551.03,"{\""seasonal\"": \""15%\""}",77003,0,"""South America""" +2024-07-23,25809,7910,"[\""Charger\""]",4408.69,"{\""promo\"": \""25%\""}",172569,0,"""Asia""" +2023-05-20,25810,675,"[\""Tablet\"", \""Laptop\""]",3222.82,{},196381,0,"""Europe""" +2023-02-01,25811,5983,"[\""Headphones\""]",3454.81,{},184430,0,"""Asia""" +2023-05-26,25812,5485,"[\""Laptop\"", \""Monitor\""]",1136.44,{},224966,0,"""South America""" +2024-12-12,25813,852,"[\""Tablet\""]",1348.19,{},93517,1,"""Asia""" +2023-12-05,25814,739,"[\""Monitor\"", \""Tablet\""]",1096.41,"{\""loyalty\"": \""29%\""}",290093,0,"""Africa""" +2023-11-26,25815,781,"[\""Phone\"", \""Keyboard\""]",2684.25,"{\""seasonal\"": \""20%\""}",80388,1,"""Asia""" +2024-12-23,25816,7212,"[\""Wireless Mouse\"", \""Laptop\""]",287.64,"{\"": \""13%\""}",291909,1,"""South America""" +2024-09-08,25817,847,"[\""Monitor\""]",805.71,"{\""loyalty\"": \""11%\""}",64894,1,"""Asia""" +2023-11-24,25818,8708,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3418.17,{},130370,1,"""South America""" +2023-03-31,25819,7829,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1532.62,{},114978,1,"""Asia""" +2024-06-02,25820,3276,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",712.47,"{\""promo\"": \""18%\""}",162912,1,"""Africa""" +2024-01-27,25821,3900,"[\""Headphones\""]",661.55,"{\""promo\"": \""6%\""}",245181,1,"""Europe""" +2024-01-29,25822,793,"[\""Charger\""]",3401.16,"{\""promo\"": \""6%\""}",12572,0,"""North America""" +2023-09-16,25823,3415,"[\""Wireless Mouse\""]",1637.45,"{\""promo\"": \""24%\""}",232538,0,"""Africa""" +2024-06-09,25824,8834,"[\""Charger\""]",2771.49,"{\"": \""7%\""}",135893,1,"""North America""" +2023-09-08,25825,9808,"[\""Monitor\""]",1592.57,{},101529,0,"""South America""" +2024-03-14,25826,8728,"[\""Laptop\""]",3233.35,{},33436,0,"""Asia""" +2023-03-18,25827,5631,"[\""Laptop\""]",4622.6,"{\""promo\"": \""24%\""}",71914,0,"""Europe""" +2023-09-18,25828,130,"[\""Phone\""]",3009.98,"{\""seasonal\"": \""12%\""}",168962,1,"""Asia""" +2023-07-21,25829,5652,"[\""Keyboard\"", \""Phone\""]",241.75,"{\""promo\"": \""10%\""}",200649,1,"""Africa""" +2024-06-18,25830,9024,"[\""Monitor\"", \""Tablet\""]",4127.74,"{\""promo\"": \""11%\""}",106468,1,"""Europe""" +2023-08-01,25831,6151,"[\""Wireless Mouse\"", \""Monitor\""]",636.97,"{\""seasonal\"": \""20%\""}",96670,1,"""South America""" +2024-08-14,25832,93,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4461.24,{},40381,0,"""Europe""" +2024-08-22,25833,1859,"[\""Tablet\""]",3335.78,{},268814,1,"""Africa""" +2023-11-27,25834,4344,"[\""Phone\"", \""Wireless Mouse\""]",3874.66,"{\""promo\"": \""26%\""}",168927,1,"""Africa""" +2023-06-04,25835,8133,"[\""Laptop\"", \""Phone\""]",4674.94,{},179780,1,"""South America""" +2023-09-21,25836,5455,"[\""Keyboard\"", \""Monitor\""]",4390.07,{},78570,1,"""Europe""" +2023-08-10,25837,1326,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4804.45,"{\""seasonal\"": \""9%\""}",34830,0,"""Asia""" +2024-11-18,25838,7194,"[\""Tablet\"", \""Charger\""]",3623.67,"{\""promo\"": \""17%\""}",14796,0,"""Europe""" +2023-03-31,25839,5461,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",342.84,{},214814,1,"""South America""" +2023-01-27,25840,2432,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3319.24,"{\""promo\"": \""18%\""}",232578,1,"""South America""" +2024-01-22,25841,9297,"[\""Headphones\""]",2398.56,{},237549,1,"""Asia""" +2024-08-07,25842,5145,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4527.43,"{\"": \""14%\""}",271969,0,"""North America""" +2023-10-11,25843,3706,"[\""Keyboard\""]",246.31,"{\""promo\"": \""26%\""}",174757,1,"""Africa""" +2024-07-24,25844,1873,"[\""Wireless Mouse\""]",1428.49,"{\"": \""25%\""}",242979,0,"""Europe""" +2023-09-12,25845,715,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2538.24,{},106507,0,"""Europe""" +2024-09-17,25846,4283,"[\""Headphones\""]",4199.59,"{\""seasonal\"": \""25%\""}",53371,0,"""Asia""" +2023-12-08,25847,7258,"[\""Charger\"", \""Keyboard\""]",2958.73,{},5179,1,"""Europe""" +2024-12-16,25848,5943,"[\""Keyboard\"", \""Charger\""]",4092.34,"{\""loyalty\"": \""6%\""}",180799,1,"""Africa""" +2024-02-14,25849,1315,"[\""Headphones\"", \""Phone\""]",1424.86,{},55608,1,"""South America""" +2024-04-17,25850,2439,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4119.88,"{\"": \""6%\""}",19873,0,"""South America""" +2023-04-26,25851,9817,"[\""Phone\""]",4380.74,{},172257,1,"""Asia""" +2023-02-10,25852,2003,"[\""Tablet\""]",3263.87,{},213594,0,"""Africa""" +2024-06-29,25853,6635,"[\""Tablet\""]",2143.9,"{\""promo\"": \""12%\""}",62121,0,"""South America""" +2023-11-23,25854,5114,"[\""Charger\""]",4885.89,"{\"": \""24%\""}",77430,1,"""Europe""" +2024-03-04,25855,8786,"[\""Wireless Mouse\"", \""Charger\""]",4638.55,{},163896,1,"""South America""" +2023-09-17,25856,9313,"[\""Tablet\"", \""Charger\""]",86.24,{},205321,1,"""Europe""" +2024-11-23,25857,3865,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2689.46,"{\""seasonal\"": \""27%\""}",94615,0,"""South America""" +2024-03-12,25858,5065,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",851.19,"{\""promo\"": \""13%\""}",203272,1,"""North America""" +2024-10-24,25859,3606,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1534.7,"{\"": \""6%\""}",253315,0,"""North America""" +2024-01-04,25860,3664,"[\""Charger\"", \""Monitor\""]",4045.34,{},127564,0,"""North America""" +2023-07-21,25861,7171,"[\""Charger\""]",2582.46,{},154063,1,"""South America""" +2024-02-03,25862,8294,"[\""Charger\""]",3371.63,"{\""promo\"": \""29%\""}",96604,1,"""Europe""" +2023-11-17,25863,3570,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3772.75,{},9288,0,"""South America""" +2024-08-06,25864,5293,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",723.08,{},250380,1,"""Africa""" +2023-08-22,25865,6230,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2047.49,"{\"": \""13%\""}",134361,0,"""North America""" +2023-04-23,25866,9134,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3780.85,"{\""seasonal\"": \""25%\""}",160921,0,"""Asia""" +2023-06-30,25867,6408,"[\""Monitor\""]",3224.8,{},57861,0,"""Africa""" +2024-09-19,25868,6844,"[\""Monitor\""]",4905.37,{},72513,0,"""Asia""" +2024-02-15,25869,6740,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3657.34,{},81892,0,"""Africa""" +2024-02-07,25870,2696,"[\""Laptop\""]",2003.01,{},45320,0,"""Asia""" +2023-01-27,25871,2146,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3791.77,{},6328,1,"""South America""" +2023-11-14,25872,503,"[\""Headphones\""]",1437.56,{},257668,1,"""Africa""" +2024-05-06,25873,4147,"[\""Keyboard\""]",937.1,{},59643,1,"""North America""" +2024-03-16,25874,1574,"[\""Tablet\""]",3798.19,"{\""loyalty\"": \""9%\""}",260806,1,"""Europe""" +2024-11-30,25875,2291,"[\""Laptop\""]",2794.71,{},76874,0,"""South America""" +2023-12-02,25876,5447,"[\""Monitor\""]",3920.56,"{\""seasonal\"": \""20%\""}",81172,1,"""South America""" +2023-07-11,25877,5561,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3529.86,{},201125,0,"""Asia""" +2024-12-08,25878,1672,"[\""Keyboard\"", \""Wireless Mouse\""]",3512.16,{},292228,1,"""North America""" +2024-03-06,25879,3067,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4449.66,"{\""promo\"": \""5%\""}",280336,1,"""Europe""" +2024-09-02,25880,6917,"[\""Wireless Mouse\"", \""Monitor\""]",318.95,"{\""promo\"": \""9%\""}",10363,0,"""North America""" +2024-06-04,25881,1122,"[\""Tablet\"", \""Monitor\""]",2007.67,{},256944,0,"""Asia""" +2023-05-16,25882,4231,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2283.34,{},257853,0,"""North America""" +2024-08-31,25883,2951,"[\""Phone\"", \""Charger\""]",2395.4,{},296094,0,"""South America""" +2024-02-07,25884,3808,"[\""Monitor\"", \""Keyboard\""]",2875.38,{},260590,0,"""Africa""" +2023-07-10,25885,5177,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1545.47,"{\"": \""15%\""}",225284,0,"""North America""" +2024-10-18,25886,9028,"[\""Charger\"", \""Monitor\""]",2289.94,"{\"": \""19%\""}",105641,1,"""Europe""" +2023-07-05,25887,6748,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3746.77,"{\""loyalty\"": \""11%\""}",6409,1,"""Europe""" +2023-07-25,25888,5279,"[\""Wireless Mouse\""]",618.67,"{\"": \""23%\""}",85005,0,"""Asia""" +2024-03-02,25889,8018,"[\""Charger\"", \""Headphones\""]",2214.24,"{\""promo\"": \""26%\""}",182646,1,"""Europe""" +2023-11-06,25890,4942,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3512.84,"{\""seasonal\"": \""7%\""}",29130,0,"""North America""" +2023-10-15,25891,2386,"[\""Charger\""]",3486.73,{},17637,1,"""South America""" +2023-06-20,25892,2555,"[\""Wireless Mouse\"", \""Tablet\""]",2478.2,{},168282,1,"""North America""" +2023-04-23,25893,8596,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1640.18,"{\""promo\"": \""22%\""}",34212,1,"""North America""" +2023-01-10,25894,781,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3362.56,"{\""seasonal\"": \""21%\""}",234779,1,"""South America""" +2024-10-08,25895,4921,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1470.5,"{\"": \""23%\""}",75859,1,"""North America""" +2024-11-12,25896,141,"[\""Phone\""]",4691.52,"{\""loyalty\"": \""8%\""}",36999,1,"""South America""" +2024-11-02,25897,9328,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",859.31,{},229821,1,"""Africa""" +2023-05-18,25898,9494,"[\""Wireless Mouse\""]",64.01,"{\""promo\"": \""27%\""}",102492,0,"""Africa""" +2024-05-16,25899,1536,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4074.47,"{\""promo\"": \""10%\""}",176591,1,"""North America""" +2023-01-08,25900,4291,"[\""Wireless Mouse\""]",4319.92,"{\""loyalty\"": \""19%\""}",237830,1,"""Asia""" +2024-04-15,25901,9732,"[\""Wireless Mouse\""]",4994.39,{},162946,1,"""Asia""" +2023-03-05,25902,8816,"[\""Monitor\"", \""Charger\""]",3329.79,"{\""loyalty\"": \""29%\""}",191681,0,"""North America""" +2024-01-22,25903,8995,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3152.77,"{\""seasonal\"": \""23%\""}",4118,0,"""South America""" +2023-04-09,25904,8615,"[\""Laptop\"", \""Charger\""]",4193.17,{},273050,1,"""Africa""" +2023-12-28,25905,5116,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3696.02,{},6015,1,"""South America""" +2023-05-09,25906,8994,"[\""Phone\"", \""Monitor\""]",3679.83,{},97629,0,"""North America""" +2024-09-02,25907,6269,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1685.56,"{\""seasonal\"": \""11%\""}",16584,0,"""Asia""" +2023-01-27,25908,3370,"[\""Tablet\""]",4691.46,{},270565,1,"""North America""" +2024-08-30,25909,5721,"[\""Wireless Mouse\""]",1123.62,{},141543,0,"""North America""" +2023-10-20,25910,9756,"[\""Phone\""]",1660.79,{},214866,1,"""Asia""" +2023-06-30,25911,1554,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4025.18,{},242450,1,"""Africa""" +2023-01-29,25912,9345,"[\""Charger\""]",4498.64,"{\""promo\"": \""17%\""}",273425,1,"""Asia""" +2023-03-14,25913,7313,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3595.72,{},74811,1,"""Europe""" +2023-08-29,25914,8006,"[\""Monitor\""]",2438.43,"{\""seasonal\"": \""30%\""}",96092,0,"""Europe""" +2024-10-12,25915,4311,"[\""Laptop\""]",422.02,{},71949,1,"""Europe""" +2024-04-04,25916,8748,"[\""Phone\""]",3068.0,"{\"": \""15%\""}",257389,0,"""South America""" +2024-01-12,25917,9144,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2073.16,{},19597,0,"""North America""" +2024-08-21,25918,4361,"[\""Wireless Mouse\"", \""Headphones\""]",3353.21,"{\""promo\"": \""17%\""}",81487,1,"""South America""" +2023-01-14,25919,6571,"[\""Tablet\""]",3547.02,"{\""loyalty\"": \""15%\""}",243477,0,"""Africa""" +2023-12-25,25920,805,"[\""Charger\""]",1163.27,"{\""seasonal\"": \""6%\""}",199150,1,"""North America""" +2023-11-11,25921,4068,"[\""Wireless Mouse\""]",4006.61,{},17656,0,"""Africa""" +2023-06-29,25922,3829,"[\""Phone\""]",4621.74,{},205189,1,"""Europe""" +2023-02-28,25923,6627,"[\""Monitor\"", \""Phone\""]",1464.5,{},54611,1,"""Europe""" +2023-12-27,25924,8758,"[\""Wireless Mouse\"", \""Headphones\""]",3216.07,{},19158,1,"""Africa""" +2024-02-16,25925,8258,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4911.2,{},126801,1,"""Asia""" +2024-03-31,25926,6386,"[\""Wireless Mouse\"", \""Keyboard\""]",1024.11,{},180589,0,"""Europe""" +2023-03-12,25927,8961,"[\""Laptop\"", \""Tablet\""]",3724.85,{},222649,1,"""Africa""" +2024-08-21,25928,7377,"[\""Laptop\""]",424.52,{},229189,0,"""South America""" +2024-04-17,25929,5426,"[\""Laptop\""]",1767.44,"{\""seasonal\"": \""12%\""}",277631,0,"""Asia""" +2024-10-26,25930,9441,"[\""Laptop\""]",2591.48,{},263322,0,"""North America""" +2023-11-24,25931,8368,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1713.05,"{\""loyalty\"": \""20%\""}",6273,0,"""Asia""" +2024-10-13,25932,2118,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3140.37,{},184746,1,"""Europe""" +2024-07-22,25933,5907,"[\""Headphones\"", \""Phone\""]",3273.55,"{\""loyalty\"": \""21%\""}",296073,0,"""Asia""" +2023-03-13,25934,9629,"[\""Keyboard\"", \""Laptop\""]",4127.02,{},171282,1,"""North America""" +2024-10-08,25935,6093,"[\""Charger\""]",2416.86,"{\""seasonal\"": \""11%\""}",252826,0,"""South America""" +2023-12-22,25936,7134,"[\""Monitor\"", \""Headphones\""]",2880.84,{},106921,1,"""Africa""" +2023-03-01,25937,4117,"[\""Laptop\""]",638.55,{},242556,0,"""South America""" +2024-02-14,25938,5110,"[\""Keyboard\"", \""Laptop\""]",4106.65,"{\"": \""15%\""}",191271,0,"""Asia""" +2024-11-13,25939,3065,"[\""Charger\""]",2602.82,{},86650,0,"""Europe""" +2024-06-26,25940,5349,"[\""Laptop\"", \""Monitor\""]",1556.94,"{\""loyalty\"": \""20%\""}",85250,0,"""Asia""" +2024-07-23,25941,782,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3296.63,"{\"": \""10%\""}",145719,1,"""Africa""" +2023-07-15,25942,6454,"[\""Keyboard\"", \""Headphones\""]",2950.87,{},73108,0,"""South America""" +2023-06-20,25943,4988,"[\""Wireless Mouse\""]",2712.56,{},113754,1,"""Africa""" +2023-01-01,25944,1291,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2512.73,"{\"": \""26%\""}",172132,1,"""Asia""" +2023-08-08,25945,5950,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",588.52,"{\""seasonal\"": \""11%\""}",186723,1,"""Asia""" +2023-04-01,25946,9951,"[\""Headphones\""]",554.71,{},154629,1,"""North America""" +2024-06-17,25947,1016,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2768.8,{},79201,0,"""South America""" +2023-05-30,25948,1054,"[\""Charger\""]",2190.93,{},128340,1,"""North America""" +2023-03-21,25949,870,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4363.09,"{\"": \""22%\""}",68385,1,"""South America""" +2023-07-01,25950,3234,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4311.6,{},90852,1,"""Asia""" +2024-05-10,25951,4966,"[\""Monitor\"", \""Keyboard\""]",513.03,"{\""promo\"": \""16%\""}",126264,0,"""Asia""" +2024-12-13,25952,8522,"[\""Monitor\"", \""Laptop\""]",3564.67,"{\""loyalty\"": \""11%\""}",208181,1,"""North America""" +2023-09-18,25953,9911,"[\""Keyboard\""]",1986.18,{},293766,1,"""South America""" +2023-05-06,25954,5224,"[\""Charger\""]",4142.53,"{\"": \""8%\""}",82426,1,"""South America""" +2023-12-29,25955,601,"[\""Wireless Mouse\"", \""Monitor\""]",373.87,{},275636,1,"""South America""" +2023-06-30,25956,1922,"[\""Headphones\""]",1466.38,{},188129,0,"""Africa""" +2023-03-06,25957,6836,"[\""Monitor\""]",4251.26,{},190627,0,"""Europe""" +2024-01-23,25958,2931,"[\""Headphones\""]",4575.82,"{\"": \""28%\""}",34675,0,"""Europe""" +2023-01-08,25959,6252,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2212.72,"{\"": \""17%\""}",282461,0,"""South America""" +2023-06-30,25960,3946,"[\""Phone\""]",4107.14,{},45742,0,"""Europe""" +2023-06-08,25961,2251,"[\""Keyboard\"", \""Tablet\""]",535.31,{},188703,0,"""South America""" +2024-07-19,25962,6470,"[\""Keyboard\""]",2997.91,"{\"": \""14%\""}",71392,0,"""Europe""" +2023-05-17,25963,5514,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3657.88,{},49968,1,"""Asia""" +2023-06-10,25964,2462,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4185.64,{},243810,0,"""Europe""" +2023-01-08,25965,5088,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4733.4,{},145817,0,"""Asia""" +2024-10-30,25966,4711,"[\""Monitor\""]",2096.68,"{\"": \""5%\""}",125983,1,"""South America""" +2023-12-07,25967,2026,"[\""Monitor\"", \""Phone\""]",410.5,"{\""loyalty\"": \""7%\""}",254123,0,"""North America""" +2024-08-10,25968,8499,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2762.86,"{\""promo\"": \""17%\""}",197980,1,"""South America""" +2023-11-12,25969,9318,"[\""Phone\""]",3838.48,{},204630,1,"""North America""" +2023-09-27,25970,9368,"[\""Laptop\"", \""Charger\""]",2318.11,{},94396,1,"""Africa""" +2023-04-13,25971,8504,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1882.18,"{\""seasonal\"": \""23%\""}",112222,0,"""Asia""" +2023-04-07,25972,3175,"[\""Wireless Mouse\""]",1126.47,{},8788,1,"""South America""" +2023-03-30,25973,6589,"[\""Monitor\""]",1817.68,"{\"": \""14%\""}",85757,0,"""Asia""" +2023-03-05,25974,7377,"[\""Laptop\""]",1563.77,"{\"": \""9%\""}",191431,0,"""Asia""" +2023-07-07,25975,9702,"[\""Tablet\"", \""Headphones\""]",3135.39,"{\""seasonal\"": \""30%\""}",146389,1,"""North America""" +2023-08-20,25976,7281,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2126.52,{},187061,0,"""Asia""" +2023-08-08,25977,268,"[\""Laptop\""]",4962.79,"{\"": \""26%\""}",230912,0,"""North America""" +2024-12-31,25978,2147,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3794.53,"{\"": \""20%\""}",119034,1,"""Europe""" +2023-11-14,25979,4482,"[\""Phone\""]",2486.5,"{\""seasonal\"": \""8%\""}",117116,0,"""North America""" +2024-03-12,25980,1781,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2727.23,{},200872,0,"""South America""" +2024-07-23,25981,693,"[\""Monitor\"", \""Keyboard\""]",3175.12,{},95461,1,"""South America""" +2023-10-08,25982,2163,"[\""Phone\""]",554.28,{},107362,1,"""North America""" +2024-02-13,25983,5067,"[\""Laptop\""]",114.52,"{\"": \""5%\""}",222949,1,"""Europe""" +2023-12-10,25984,6041,"[\""Tablet\""]",3545.28,{},186486,1,"""Asia""" +2023-01-19,25985,495,"[\""Charger\""]",2687.58,"{\""promo\"": \""22%\""}",100883,0,"""North America""" +2023-03-21,25986,797,"[\""Phone\"", \""Tablet\""]",3928.79,{},281982,1,"""Europe""" +2024-05-22,25987,5864,"[\""Headphones\"", \""Monitor\""]",2767.19,"{\""promo\"": \""30%\""}",108323,0,"""Europe""" +2023-12-06,25988,4682,"[\""Monitor\"", \""Charger\""]",4214.98,{},185946,0,"""South America""" +2023-01-28,25989,7246,"[\""Tablet\"", \""Laptop\""]",422.68,"{\""seasonal\"": \""10%\""}",42783,0,"""Europe""" +2023-06-29,25990,4220,"[\""Headphones\""]",2001.18,"{\""loyalty\"": \""21%\""}",83359,0,"""Africa""" +2023-03-30,25991,10000,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3528.67,{},11914,1,"""South America""" +2024-04-07,25992,6121,"[\""Tablet\"", \""Monitor\""]",1916.71,{},247118,0,"""South America""" +2024-02-11,25993,4732,"[\""Charger\"", \""Phone\""]",4610.43,{},27223,0,"""Europe""" +2024-02-05,25994,7626,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2147.5,{},107693,0,"""South America""" +2024-07-02,25995,4605,"[\""Headphones\""]",2438.15,{},180852,0,"""North America""" +2023-11-14,25996,1369,"[\""Tablet\""]",2681.97,{},250473,1,"""Europe""" +2024-05-26,25997,814,"[\""Tablet\""]",4601.65,{},272114,1,"""Europe""" +2023-05-05,25998,743,"[\""Laptop\"", \""Headphones\""]",4163.07,{},154636,1,"""Asia""" +2024-04-17,25999,9640,"[\""Wireless Mouse\"", \""Keyboard\""]",839.09,"{\"": \""29%\""}",62217,0,"""Africa""" +2024-12-03,26000,1665,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4777.26,{},49417,1,"""Europe""" +2023-05-10,26001,7480,"[\""Wireless Mouse\"", \""Laptop\""]",3149.89,{},244596,0,"""Asia""" +2024-02-24,26002,43,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3521.22,"{\""promo\"": \""30%\""}",264336,0,"""Asia""" +2023-10-14,26003,1929,"[\""Keyboard\""]",4000.62,{},259602,0,"""Asia""" +2023-05-06,26004,7633,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3291.67,{},15587,1,"""North America""" +2024-09-17,26005,573,"[\""Charger\"", \""Tablet\""]",1373.69,"{\""promo\"": \""16%\""}",211773,0,"""North America""" +2023-11-26,26006,3576,"[\""Charger\"", \""Headphones\""]",4688.17,{},292801,0,"""South America""" +2024-03-04,26007,452,"[\""Tablet\""]",307.01,"{\""seasonal\"": \""25%\""}",107330,1,"""North America""" +2023-02-04,26008,9791,"[\""Wireless Mouse\"", \""Keyboard\""]",324.46,"{\"": \""8%\""}",155999,1,"""Asia""" +2024-04-07,26009,8170,"[\""Charger\"", \""Phone\""]",424.61,{},268540,0,"""North America""" +2024-05-12,26010,5526,"[\""Phone\"", \""Charger\""]",3604.28,{},284908,1,"""Asia""" +2023-03-13,26011,1088,"[\""Phone\""]",846.04,"{\""loyalty\"": \""24%\""}",151476,0,"""Asia""" +2024-02-27,26012,1254,"[\""Laptop\"", \""Monitor\""]",923.17,{},149579,0,"""North America""" +2024-07-07,26013,8676,"[\""Charger\""]",3666.66,{},281241,1,"""North America""" +2024-05-18,26014,922,"[\""Wireless Mouse\"", \""Headphones\""]",3210.37,"{\""loyalty\"": \""14%\""}",18555,1,"""North America""" +2024-01-25,26015,1934,"[\""Headphones\"", \""Wireless Mouse\""]",4162.5,{},267082,0,"""Africa""" +2024-08-22,26016,9712,"[\""Headphones\"", \""Wireless Mouse\""]",1529.48,{},37343,0,"""Europe""" +2023-10-29,26017,1937,"[\""Tablet\""]",2188.64,{},144654,1,"""Asia""" +2024-06-11,26018,1605,"[\""Phone\"", \""Wireless Mouse\""]",2288.01,{},277318,0,"""Europe""" +2023-05-15,26019,1156,"[\""Tablet\"", \""Keyboard\""]",2420.61,"{\""seasonal\"": \""21%\""}",104588,1,"""North America""" +2024-12-11,26020,9321,"[\""Laptop\""]",2625.52,"{\"": \""11%\""}",3665,1,"""Africa""" +2024-09-27,26021,9687,"[\""Monitor\""]",4903.81,"{\""seasonal\"": \""19%\""}",151787,1,"""Europe""" +2023-10-07,26022,9767,"[\""Laptop\""]",4846.08,"{\""seasonal\"": \""13%\""}",42146,1,"""North America""" +2024-04-05,26023,3100,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4013.11,"{\"": \""24%\""}",143700,0,"""North America""" +2023-06-21,26024,7283,"[\""Headphones\""]",478.81,"{\""promo\"": \""30%\""}",72315,1,"""Europe""" +2024-03-19,26025,2238,"[\""Monitor\""]",1588.45,{},64376,0,"""North America""" +2024-06-24,26026,8732,"[\""Wireless Mouse\""]",3058.27,"{\"": \""26%\""}",266250,0,"""North America""" +2023-03-29,26027,4221,"[\""Charger\""]",4865.93,"{\""seasonal\"": \""5%\""}",89194,1,"""North America""" +2024-12-12,26028,6205,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4906.29,{},146008,1,"""Asia""" +2024-01-27,26029,8573,"[\""Tablet\"", \""Monitor\""]",3706.31,"{\"": \""10%\""}",144806,1,"""South America""" +2023-03-29,26030,2604,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2956.66,"{\""promo\"": \""29%\""}",233070,1,"""Europe""" +2024-07-30,26031,723,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",880.9,{},256712,0,"""Europe""" +2024-06-24,26032,2947,"[\""Tablet\""]",255.97,"{\""promo\"": \""6%\""}",200252,1,"""Africa""" +2024-02-22,26033,5074,"[\""Charger\"", \""Laptop\""]",4160.29,{},161454,0,"""South America""" +2023-07-23,26034,8028,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4160.55,{},192296,1,"""Africa""" +2024-07-22,26035,3984,"[\""Charger\"", \""Headphones\""]",3407.77,"{\"": \""23%\""}",169902,1,"""Africa""" +2023-01-07,26036,9893,"[\""Charger\"", \""Headphones\""]",1890.17,{},252911,0,"""Europe""" +2024-06-22,26037,9834,"[\""Tablet\"", \""Laptop\""]",3828.37,"{\"": \""27%\""}",111085,0,"""Africa""" +2023-08-28,26038,2953,"[\""Headphones\""]",3901.01,{},287566,0,"""Asia""" +2024-04-08,26039,939,"[\""Tablet\"", \""Headphones\""]",1387.44,"{\"": \""5%\""}",298566,0,"""North America""" +2024-08-11,26040,6438,"[\""Laptop\"", \""Keyboard\""]",2511.02,"{\"": \""10%\""}",2042,0,"""North America""" +2023-04-02,26041,5270,"[\""Headphones\"", \""Charger\""]",1400.35,"{\""seasonal\"": \""28%\""}",160010,1,"""Europe""" +2023-03-08,26042,5767,"[\""Keyboard\"", \""Tablet\""]",2022.67,"{\""promo\"": \""17%\""}",284645,1,"""Asia""" +2023-06-11,26043,9665,"[\""Headphones\""]",4804.34,"{\""seasonal\"": \""24%\""}",293114,1,"""Asia""" +2023-11-20,26044,3174,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",866.43,{},248231,0,"""Europe""" +2023-11-09,26045,3818,"[\""Charger\""]",158.89,{},158993,0,"""Asia""" +2023-11-03,26046,6133,"[\""Charger\"", \""Phone\""]",488.0,"{\""promo\"": \""24%\""}",253050,1,"""Africa""" +2023-01-30,26047,6215,"[\""Keyboard\"", \""Laptop\""]",3712.44,"{\""loyalty\"": \""8%\""}",152674,1,"""Europe""" +2023-02-22,26048,8977,"[\""Laptop\""]",537.03,"{\""promo\"": \""19%\""}",42438,0,"""Africa""" +2024-09-08,26049,3370,"[\""Monitor\"", \""Wireless Mouse\""]",418.24,{},154415,0,"""South America""" +2023-05-24,26050,6476,"[\""Wireless Mouse\"", \""Headphones\""]",1792.39,"{\""promo\"": \""10%\""}",296041,1,"""Africa""" +2023-03-18,26051,2428,"[\""Tablet\"", \""Headphones\""]",427.45,"{\""loyalty\"": \""9%\""}",253952,1,"""Africa""" +2023-05-03,26052,5685,"[\""Tablet\""]",4662.88,"{\""seasonal\"": \""9%\""}",237809,0,"""South America""" +2024-06-04,26053,2234,"[\""Monitor\"", \""Phone\""]",3794.98,"{\""loyalty\"": \""8%\""}",170947,1,"""Africa""" +2024-02-28,26054,7137,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1291.36,{},291193,1,"""South America""" +2024-09-18,26055,6379,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2435.07,"{\""loyalty\"": \""17%\""}",206032,0,"""North America""" +2024-06-19,26056,6409,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3447.1,"{\""loyalty\"": \""10%\""}",194611,1,"""Asia""" +2024-05-16,26057,4784,"[\""Wireless Mouse\"", \""Charger\""]",3107.29,"{\""seasonal\"": \""8%\""}",76508,1,"""South America""" +2024-05-30,26058,6231,"[\""Headphones\"", \""Tablet\""]",2715.56,{},103629,0,"""Africa""" +2024-08-18,26059,4721,"[\""Keyboard\"", \""Tablet\""]",1894.3,{},249331,0,"""North America""" +2023-03-02,26060,3848,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2106.18,{},286244,0,"""Europe""" +2023-03-19,26061,5310,"[\""Wireless Mouse\""]",1234.61,{},151752,0,"""Africa""" +2023-01-20,26062,2551,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",802.7,"{\""loyalty\"": \""8%\""}",225223,1,"""Europe""" +2023-05-18,26063,5519,"[\""Phone\""]",3411.36,{},94710,0,"""Africa""" +2024-05-22,26064,8251,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3515.03,"{\""promo\"": \""17%\""}",282835,0,"""North America""" +2023-01-01,26065,4214,"[\""Wireless Mouse\"", \""Charger\""]",1516.88,{},74578,0,"""Europe""" +2023-03-13,26066,2996,"[\""Charger\""]",3317.37,"{\""loyalty\"": \""14%\""}",15351,0,"""Africa""" +2024-06-22,26067,6657,"[\""Charger\""]",665.91,{},138511,1,"""North America""" +2023-09-30,26068,8138,"[\""Monitor\""]",522.62,"{\""loyalty\"": \""29%\""}",230347,1,"""North America""" +2024-12-13,26069,423,"[\""Laptop\"", \""Tablet\""]",3862.15,"{\""seasonal\"": \""13%\""}",105525,1,"""South America""" +2023-09-01,26070,5842,"[\""Headphones\"", \""Keyboard\""]",2526.94,{},254509,1,"""South America""" +2024-08-24,26071,663,"[\""Wireless Mouse\"", \""Headphones\""]",837.23,{},147331,1,"""Europe""" +2024-01-09,26072,9087,"[\""Tablet\""]",4182.91,"{\""seasonal\"": \""26%\""}",233365,1,"""Europe""" +2023-04-29,26073,3934,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3433.19,"{\""loyalty\"": \""11%\""}",284404,0,"""Asia""" +2023-05-04,26074,4526,"[\""Wireless Mouse\"", \""Keyboard\""]",4032.46,{},44066,0,"""Africa""" +2023-07-16,26075,8327,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1722.2,"{\""promo\"": \""28%\""}",112014,0,"""North America""" +2024-09-20,26076,4078,"[\""Tablet\""]",451.36,{},62047,1,"""Asia""" +2024-05-24,26077,9134,"[\""Tablet\""]",3777.03,{},163618,0,"""North America""" +2024-07-20,26078,9596,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",730.58,"{\""seasonal\"": \""16%\""}",258456,1,"""Europe""" +2024-06-18,26079,8962,"[\""Monitor\"", \""Charger\""]",2207.89,"{\""loyalty\"": \""15%\""}",222105,1,"""Africa""" +2023-03-29,26080,9027,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4691.13,"{\""promo\"": \""29%\""}",277230,0,"""North America""" +2023-11-25,26081,1268,"[\""Phone\"", \""Tablet\""]",4286.61,"{\""seasonal\"": \""25%\""}",217482,0,"""Asia""" +2023-09-28,26082,3168,"[\""Laptop\"", \""Monitor\""]",3223.21,{},8495,1,"""North America""" +2024-01-24,26083,7377,"[\""Keyboard\"", \""Headphones\""]",1963.62,{},23119,0,"""Europe""" +2024-05-03,26084,683,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",566.94,{},276556,0,"""Africa""" +2023-04-27,26085,6501,"[\""Headphones\""]",4597.33,{},293444,1,"""Asia""" +2023-05-03,26086,1421,"[\""Keyboard\""]",602.75,{},67938,0,"""Europe""" +2023-03-30,26087,9201,"[\""Laptop\"", \""Monitor\""]",1273.01,{},136063,1,"""North America""" +2024-12-05,26088,8128,"[\""Keyboard\""]",4236.98,{},190843,1,"""Africa""" +2024-10-13,26089,8703,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3700.99,"{\"": \""22%\""}",105981,1,"""North America""" +2023-10-25,26090,9297,"[\""Charger\"", \""Phone\""]",1459.4,"{\""promo\"": \""7%\""}",242282,0,"""Europe""" +2023-10-30,26091,1956,"[\""Monitor\"", \""Keyboard\""]",1384.28,"{\""loyalty\"": \""6%\""}",60961,1,"""South America""" +2024-04-29,26092,9420,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3079.02,{},102044,1,"""South America""" +2024-07-04,26093,493,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3627.61,"{\""promo\"": \""11%\""}",286661,1,"""South America""" +2023-03-01,26094,5843,"[\""Charger\"", \""Laptop\""]",4551.61,"{\""seasonal\"": \""9%\""}",35168,0,"""Africa""" +2023-03-20,26095,3107,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2518.59,"{\""promo\"": \""27%\""}",290907,0,"""Asia""" +2024-04-06,26096,8086,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",285.83,{},83125,1,"""Europe""" +2023-04-10,26097,3710,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1871.27,{},116433,0,"""South America""" +2024-04-16,26098,9764,"[\""Headphones\"", \""Phone\""]",3579.41,"{\"": \""29%\""}",236106,1,"""Africa""" +2023-06-06,26099,2061,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1139.36,{},103412,0,"""Asia""" +2024-02-28,26100,9172,"[\""Tablet\"", \""Phone\""]",4008.01,"{\""seasonal\"": \""29%\""}",200937,0,"""North America""" +2023-11-21,26101,3000,"[\""Tablet\""]",3786.57,"{\"": \""16%\""}",100486,0,"""Europe""" +2023-12-23,26102,1659,"[\""Phone\""]",2821.48,"{\""seasonal\"": \""21%\""}",120526,1,"""South America""" +2023-08-10,26103,2095,"[\""Monitor\""]",100.88,"{\"": \""13%\""}",128887,0,"""Africa""" +2023-12-13,26104,2685,"[\""Phone\"", \""Keyboard\""]",3756.86,{},233220,0,"""Asia""" +2023-08-01,26105,6883,"[\""Tablet\"", \""Charger\""]",3298.24,{},265546,1,"""South America""" +2023-01-25,26106,488,"[\""Headphones\"", \""Wireless Mouse\""]",922.95,{},182627,0,"""Asia""" +2023-09-07,26107,3535,"[\""Laptop\"", \""Wireless Mouse\""]",616.25,{},100857,1,"""North America""" +2024-11-03,26108,7398,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1409.24,{},130637,0,"""North America""" +2023-11-21,26109,1858,"[\""Tablet\""]",1717.46,"{\""promo\"": \""26%\""}",66671,1,"""Asia""" +2023-01-24,26110,7024,"[\""Tablet\""]",1193.73,{},286943,0,"""Africa""" +2024-07-06,26111,674,"[\""Headphones\""]",4652.46,{},110804,0,"""Africa""" +2024-11-10,26112,6783,"[\""Laptop\"", \""Charger\""]",2913.89,"{\""promo\"": \""6%\""}",224659,0,"""Europe""" +2023-09-01,26113,3231,"[\""Monitor\""]",1393.27,"{\""loyalty\"": \""14%\""}",174297,0,"""Europe""" +2024-07-16,26114,8668,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1142.49,{},50231,1,"""Asia""" +2024-08-05,26115,473,"[\""Laptop\"", \""Wireless Mouse\""]",1566.1,"{\"": \""14%\""}",238320,1,"""South America""" +2024-07-19,26116,5168,"[\""Tablet\"", \""Phone\""]",2331.75,{},159172,0,"""North America""" +2024-05-06,26117,9509,"[\""Headphones\"", \""Charger\""]",3712.62,{},107549,0,"""Africa""" +2023-01-23,26118,3735,"[\""Headphones\""]",3807.6,"{\""promo\"": \""8%\""}",171015,0,"""North America""" +2024-09-12,26119,3116,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4218.03,{},226912,0,"""South America""" +2024-05-11,26120,9318,"[\""Charger\"", \""Monitor\""]",495.79,{},296311,0,"""Africa""" +2024-08-01,26121,1926,"[\""Laptop\""]",4618.38,{},101209,1,"""North America""" +2024-06-23,26122,6473,"[\""Phone\""]",4448.28,"{\""loyalty\"": \""20%\""}",295106,1,"""South America""" +2024-05-03,26123,7920,"[\""Monitor\"", \""Laptop\""]",4102.65,{},132772,1,"""North America""" +2024-04-16,26124,48,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",293.76,{},50309,0,"""North America""" +2023-10-10,26125,7963,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3317.84,{},190871,0,"""South America""" +2024-01-20,26126,486,"[\""Keyboard\""]",2235.15,{},179282,1,"""Asia""" +2023-01-01,26127,6663,"[\""Phone\"", \""Headphones\""]",1323.5,"{\""promo\"": \""29%\""}",190290,0,"""Africa""" +2023-10-21,26128,7220,"[\""Laptop\"", \""Monitor\""]",1565.17,{},9816,1,"""Asia""" +2023-09-15,26129,3240,"[\""Keyboard\"", \""Phone\""]",82.13,"{\""loyalty\"": \""24%\""}",250298,1,"""Europe""" +2023-08-11,26130,2112,"[\""Laptop\"", \""Phone\""]",4963.15,"{\"": \""5%\""}",103939,1,"""Africa""" +2023-08-26,26131,3639,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3193.17,"{\"": \""26%\""}",70626,1,"""Africa""" +2024-03-20,26132,9804,"[\""Wireless Mouse\"", \""Tablet\""]",765.94,{},272197,0,"""Europe""" +2023-01-13,26133,1098,"[\""Phone\""]",1004.37,{},25601,1,"""Europe""" +2023-07-07,26134,824,"[\""Phone\"", \""Monitor\""]",4832.26,{},213418,0,"""North America""" +2023-11-06,26135,9798,"[\""Tablet\"", \""Keyboard\""]",350.77,{},94684,0,"""South America""" +2024-01-18,26136,6090,"[\""Headphones\""]",1140.72,{},84668,0,"""Europe""" +2023-09-11,26137,844,"[\""Laptop\"", \""Monitor\""]",4732.08,"{\""promo\"": \""24%\""}",201838,0,"""Asia""" +2023-03-20,26138,7773,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",374.76,"{\""seasonal\"": \""13%\""}",140264,1,"""Europe""" +2024-09-05,26139,9095,"[\""Headphones\""]",371.73,"{\""seasonal\"": \""22%\""}",248493,1,"""Europe""" +2024-10-08,26140,7904,"[\""Headphones\""]",3460.56,"{\""loyalty\"": \""14%\""}",202215,1,"""North America""" +2023-06-26,26141,7043,"[\""Keyboard\""]",3415.84,{},9920,1,"""North America""" +2023-12-02,26142,7292,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4869.27,{},134115,0,"""Asia""" +2024-08-28,26143,5741,"[\""Headphones\"", \""Phone\""]",1772.25,{},163566,1,"""South America""" +2024-10-27,26144,1556,"[\""Keyboard\""]",2997.14,"{\""promo\"": \""19%\""}",175583,1,"""Africa""" +2023-09-10,26145,9894,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1355.62,{},221142,1,"""Europe""" +2024-10-18,26146,1778,"[\""Keyboard\""]",3485.3,{},109045,0,"""Europe""" +2024-11-01,26147,835,"[\""Monitor\"", \""Tablet\""]",3758.37,{},241698,1,"""Africa""" +2023-04-19,26148,8241,"[\""Keyboard\"", \""Phone\""]",121.47,"{\""loyalty\"": \""16%\""}",182771,1,"""North America""" +2023-08-29,26149,5285,"[\""Phone\""]",4393.96,{},266162,1,"""Asia""" +2023-02-08,26150,8794,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2684.35,"{\""seasonal\"": \""10%\""}",226625,1,"""Europe""" +2023-03-07,26151,5459,"[\""Keyboard\"", \""Wireless Mouse\""]",2566.01,{},201307,0,"""Africa""" +2024-02-24,26152,6109,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1414.83,{},208949,0,"""Asia""" +2023-06-04,26153,6944,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1886.42,{},109958,0,"""South America""" +2024-11-02,26154,9666,"[\""Keyboard\""]",4953.23,{},233877,0,"""Europe""" +2024-09-15,26155,6927,"[\""Monitor\""]",1462.79,{},187642,0,"""South America""" +2023-09-09,26156,7383,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4011.25,{},252363,0,"""North America""" +2023-11-14,26157,430,"[\""Keyboard\""]",1965.25,{},181006,1,"""North America""" +2024-07-30,26158,3617,"[\""Charger\"", \""Phone\""]",3100.34,{},44140,0,"""North America""" +2023-10-06,26159,4082,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1110.67,{},243663,0,"""Asia""" +2023-07-01,26160,474,"[\""Phone\""]",2959.47,{},37956,1,"""Africa""" +2023-09-07,26161,9773,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1296.17,"{\""loyalty\"": \""30%\""}",37765,0,"""South America""" +2024-10-05,26162,8452,"[\""Monitor\""]",2829.46,{},30006,1,"""Asia""" +2024-04-12,26163,2360,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3877.48,{},282855,0,"""South America""" +2024-02-04,26164,6896,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",247.19,"{\""promo\"": \""17%\""}",4021,1,"""North America""" +2023-01-12,26165,6164,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",706.0,"{\""seasonal\"": \""23%\""}",213734,0,"""South America""" +2024-12-24,26166,6297,"[\""Phone\""]",4984.42,"{\"": \""8%\""}",58507,0,"""South America""" +2024-06-13,26167,9382,"[\""Laptop\""]",1929.64,{},128301,1,"""Asia""" +2024-06-13,26168,3574,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4265.65,"{\""loyalty\"": \""10%\""}",152698,1,"""Europe""" +2024-12-02,26169,7353,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4543.18,"{\""promo\"": \""16%\""}",51161,0,"""Europe""" +2023-03-30,26170,7709,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",573.11,"{\""loyalty\"": \""6%\""}",199413,0,"""North America""" +2024-05-30,26171,2240,"[\""Wireless Mouse\""]",4630.51,{},54150,0,"""Europe""" +2024-03-08,26172,2742,"[\""Monitor\""]",4870.12,{},216277,1,"""Europe""" +2023-09-24,26173,4885,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",775.04,{},58772,0,"""Asia""" +2024-09-27,26174,9395,"[\""Headphones\"", \""Phone\"", \""Charger\""]",688.2,"{\""seasonal\"": \""30%\""}",290857,1,"""Europe""" +2024-10-20,26175,2854,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4406.56,{},3247,0,"""North America""" +2024-03-07,26176,2789,"[\""Charger\"", \""Keyboard\""]",437.88,{},1913,0,"""Europe""" +2023-02-18,26177,4708,"[\""Tablet\""]",2768.27,{},56234,1,"""Asia""" +2024-02-09,26178,6678,"[\""Wireless Mouse\"", \""Keyboard\""]",4295.94,"{\"": \""28%\""}",289720,1,"""Asia""" +2023-04-16,26179,6488,"[\""Charger\"", \""Monitor\""]",355.8,{},133180,1,"""Asia""" +2023-02-12,26180,149,"[\""Headphones\"", \""Charger\""]",1015.93,{},216113,1,"""South America""" +2024-10-04,26181,5702,"[\""Charger\"", \""Tablet\""]",2100.7,{},257093,0,"""Africa""" +2024-02-29,26182,6971,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2879.46,{},148888,1,"""Europe""" +2024-12-13,26183,6732,"[\""Keyboard\""]",282.24,{},110221,1,"""South America""" +2023-10-28,26184,5899,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4021.74,{},58042,0,"""South America""" +2024-04-22,26185,4644,"[\""Monitor\"", \""Keyboard\""]",540.01,{},198056,1,"""Asia""" +2024-11-13,26186,4958,"[\""Keyboard\""]",500.39,{},86830,1,"""South America""" +2023-04-07,26187,8757,"[\""Laptop\"", \""Headphones\""]",114.33,"{\""seasonal\"": \""22%\""}",290780,1,"""Africa""" +2023-10-04,26188,7787,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3611.43,{},132732,1,"""North America""" +2023-12-06,26189,954,"[\""Tablet\""]",148.39,"{\""promo\"": \""17%\""}",72408,1,"""North America""" +2023-06-24,26190,2049,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",977.86,{},269840,1,"""South America""" +2023-04-27,26191,7893,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3121.71,{},19414,1,"""Asia""" +2023-10-19,26192,8872,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3969.53,"{\"": \""30%\""}",72362,0,"""North America""" +2024-08-21,26193,5747,"[\""Headphones\""]",2556.91,"{\""loyalty\"": \""20%\""}",146077,1,"""Africa""" +2023-10-17,26194,4948,"[\""Charger\""]",3004.68,"{\""seasonal\"": \""22%\""}",242076,0,"""Africa""" +2024-08-10,26195,3686,"[\""Wireless Mouse\"", \""Phone\""]",2059.93,{},244346,0,"""South America""" +2023-01-18,26196,6919,"[\""Wireless Mouse\"", \""Laptop\""]",4104.85,"{\""promo\"": \""6%\""}",42151,0,"""South America""" +2024-03-07,26197,6722,"[\""Keyboard\"", \""Wireless Mouse\""]",2916.2,"{\""loyalty\"": \""24%\""}",251309,1,"""Europe""" +2023-04-29,26198,2247,"[\""Headphones\"", \""Laptop\""]",246.24,"{\"": \""24%\""}",200065,0,"""Asia""" +2024-10-16,26199,874,"[\""Laptop\""]",1923.86,"{\"": \""16%\""}",202744,1,"""Europe""" +2024-03-12,26200,2867,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4734.84,"{\""loyalty\"": \""5%\""}",37883,1,"""Asia""" +2024-09-30,26201,3371,"[\""Laptop\"", \""Wireless Mouse\""]",1234.83,"{\"": \""10%\""}",17660,0,"""Asia""" +2024-02-14,26202,4663,"[\""Headphones\"", \""Monitor\""]",121.4,"{\"": \""25%\""}",149563,1,"""Africa""" +2024-03-29,26203,6054,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",720.34,{},139058,1,"""Africa""" +2023-08-19,26204,7328,"[\""Charger\"", \""Phone\""]",4493.12,"{\""promo\"": \""5%\""}",172577,1,"""North America""" +2024-01-21,26205,5489,"[\""Monitor\"", \""Keyboard\""]",2415.94,{},1562,0,"""Asia""" +2023-05-29,26206,7178,"[\""Charger\""]",3835.33,"{\""loyalty\"": \""25%\""}",133106,1,"""Asia""" +2024-07-22,26207,6995,"[\""Wireless Mouse\"", \""Charger\""]",809.83,"{\"": \""16%\""}",33219,0,"""North America""" +2023-01-31,26208,3071,"[\""Tablet\"", \""Headphones\""]",2876.86,"{\""seasonal\"": \""5%\""}",139404,0,"""Africa""" +2023-05-30,26209,7673,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1648.53,{},258005,0,"""Africa""" +2024-03-05,26210,4917,"[\""Keyboard\"", \""Phone\""]",639.38,{},185681,1,"""Asia""" +2024-10-02,26211,3710,"[\""Charger\""]",3697.76,{},168345,0,"""South America""" +2024-06-29,26212,2817,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4656.94,"{\""loyalty\"": \""6%\""}",223542,0,"""South America""" +2023-03-17,26213,1564,"[\""Keyboard\""]",2034.5,"{\"": \""22%\""}",58586,0,"""Africa""" +2023-12-27,26214,3004,"[\""Charger\""]",1921.46,{},132962,1,"""Europe""" +2024-02-21,26215,6442,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4727.26,"{\""loyalty\"": \""6%\""}",202894,1,"""Africa""" +2023-10-29,26216,7730,"[\""Monitor\"", \""Wireless Mouse\""]",4107.57,"{\"": \""8%\""}",23182,0,"""South America""" +2023-10-28,26217,117,"[\""Charger\"", \""Phone\""]",659.04,{},87140,0,"""North America""" +2024-04-17,26218,6451,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2947.34,{},275198,1,"""Europe""" +2024-03-15,26219,7996,"[\""Charger\""]",4489.58,{},103918,1,"""South America""" +2024-06-27,26220,5000,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1008.92,{},29754,0,"""Asia""" +2024-06-05,26221,2449,"[\""Laptop\""]",2311.64,{},87522,1,"""South America""" +2024-05-07,26222,2239,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2059.61,"{\"": \""17%\""}",81026,1,"""Asia""" +2024-04-14,26223,9386,"[\""Wireless Mouse\""]",3341.95,{},262627,0,"""Asia""" +2024-07-14,26224,5337,"[\""Wireless Mouse\"", \""Laptop\""]",1626.37,"{\""seasonal\"": \""11%\""}",243045,0,"""Europe""" +2023-03-15,26225,5278,"[\""Monitor\"", \""Phone\""]",3468.26,{},160093,0,"""North America""" +2024-07-15,26226,7837,"[\""Laptop\"", \""Keyboard\""]",4475.56,{},279625,0,"""South America""" +2024-07-31,26227,3217,"[\""Charger\"", \""Headphones\""]",3587.36,{},55342,0,"""Asia""" +2024-03-27,26228,2512,"[\""Keyboard\""]",268.05,"{\"": \""8%\""}",198341,1,"""Asia""" +2024-10-25,26229,9127,"[\""Tablet\""]",4828.88,"{\""seasonal\"": \""9%\""}",239694,1,"""South America""" +2024-02-07,26230,8845,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",133.09,{},250755,1,"""Europe""" +2023-05-13,26231,5876,"[\""Tablet\"", \""Phone\""]",446.63,{},275799,1,"""Africa""" +2024-06-18,26232,5705,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1917.84,"{\""loyalty\"": \""21%\""}",103921,1,"""Africa""" +2024-05-25,26233,2293,"[\""Wireless Mouse\"", \""Laptop\""]",1948.9,"{\""seasonal\"": \""20%\""}",291656,0,"""Europe""" +2024-08-29,26234,690,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1075.09,"{\""promo\"": \""29%\""}",258327,0,"""Europe""" +2023-05-19,26235,5365,"[\""Monitor\""]",3685.56,"{\""loyalty\"": \""15%\""}",259392,1,"""North America""" +2023-01-22,26236,5004,"[\""Keyboard\"", \""Phone\""]",4131.89,{},215906,1,"""Europe""" +2023-05-09,26237,4478,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3973.81,"{\""promo\"": \""29%\""}",74908,0,"""Africa""" +2024-03-15,26238,9878,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",186.23,{},223100,0,"""Africa""" +2024-06-06,26239,3023,"[\""Monitor\""]",2949.21,{},238712,1,"""Asia""" +2024-09-07,26240,7079,"[\""Laptop\""]",1447.74,{},249986,0,"""Africa""" +2023-06-14,26241,2056,"[\""Charger\"", \""Monitor\""]",2559.25,{},27725,0,"""Europe""" +2023-01-14,26242,844,"[\""Monitor\"", \""Headphones\""]",4478.51,"{\""promo\"": \""10%\""}",199090,0,"""Europe""" +2024-10-29,26243,545,"[\""Wireless Mouse\"", \""Charger\""]",923.85,{},5774,0,"""North America""" +2024-08-28,26244,4631,"[\""Phone\""]",3099.33,{},48781,0,"""Asia""" +2023-10-10,26245,6014,"[\""Keyboard\""]",2447.36,"{\""seasonal\"": \""21%\""}",32772,0,"""North America""" +2024-11-30,26246,1842,"[\""Charger\"", \""Monitor\""]",1654.09,{},90867,0,"""Europe""" +2023-11-20,26247,2565,"[\""Monitor\"", \""Charger\""]",2339.63,"{\""promo\"": \""5%\""}",2922,1,"""South America""" +2023-09-30,26248,4757,"[\""Headphones\"", \""Wireless Mouse\""]",3683.01,{},22013,1,"""Asia""" +2023-09-29,26249,9031,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4834.84,{},215893,1,"""Africa""" +2024-03-10,26250,7574,"[\""Laptop\"", \""Tablet\""]",385.85,"{\""promo\"": \""14%\""}",170876,0,"""South America""" +2023-08-13,26251,1677,"[\""Keyboard\"", \""Laptop\""]",1175.68,"{\""seasonal\"": \""14%\""}",179981,1,"""North America""" +2024-12-04,26252,87,"[\""Wireless Mouse\""]",4910.88,{},204660,1,"""Europe""" +2024-05-06,26253,6750,"[\""Wireless Mouse\""]",2045.96,{},59030,1,"""Europe""" +2023-09-17,26254,6902,"[\""Wireless Mouse\"", \""Phone\""]",1694.94,{},62198,0,"""Europe""" +2023-08-24,26255,7547,"[\""Wireless Mouse\""]",1642.21,{},29300,0,"""South America""" +2024-08-13,26256,9955,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3905.32,"{\""loyalty\"": \""29%\""}",199029,0,"""South America""" +2024-07-15,26257,4767,"[\""Monitor\""]",2591.59,{},288867,1,"""South America""" +2023-07-17,26258,8985,"[\""Laptop\"", \""Charger\""]",2189.28,{},197493,1,"""Europe""" +2023-01-18,26259,7087,"[\""Phone\""]",2922.37,{},169064,1,"""North America""" +2023-02-10,26260,9770,"[\""Tablet\"", \""Laptop\""]",2850.53,"{\"": \""10%\""}",176561,0,"""North America""" +2024-03-15,26261,397,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4795.46,{},162547,0,"""Europe""" +2023-04-05,26262,937,"[\""Headphones\""]",2145.78,"{\""loyalty\"": \""11%\""}",36133,0,"""Africa""" +2023-09-28,26263,1860,"[\""Headphones\""]",4619.22,"{\"": \""28%\""}",186705,0,"""Europe""" +2023-01-05,26264,9171,"[\""Keyboard\"", \""Monitor\""]",1857.85,{},65066,1,"""Asia""" +2023-08-14,26265,3955,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3405.06,"{\""promo\"": \""10%\""}",187869,1,"""North America""" +2024-12-12,26266,9239,"[\""Wireless Mouse\""]",2185.01,{},174073,0,"""North America""" +2024-09-08,26267,6920,"[\""Laptop\"", \""Phone\""]",4470.63,"{\"": \""9%\""}",228030,0,"""Asia""" +2023-03-08,26268,8174,"[\""Wireless Mouse\""]",2010.58,{},230484,0,"""Africa""" +2023-03-13,26269,7010,"[\""Phone\""]",4524.3,{},64053,1,"""North America""" +2023-07-31,26270,2574,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3951.62,"{\""seasonal\"": \""23%\""}",74713,0,"""Europe""" +2023-08-01,26271,2258,"[\""Tablet\""]",82.26,{},40580,0,"""South America""" +2023-02-11,26272,9298,"[\""Tablet\""]",793.99,{},200869,0,"""Asia""" +2023-10-03,26273,4531,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3772.59,{},70454,0,"""Asia""" +2024-01-07,26274,1302,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3502.18,{},110249,1,"""Europe""" +2023-04-01,26275,73,"[\""Charger\""]",4578.57,{},208918,1,"""Africa""" +2024-03-21,26276,6222,"[\""Monitor\"", \""Charger\""]",175.2,"{\""loyalty\"": \""25%\""}",81674,1,"""North America""" +2024-02-14,26277,8286,"[\""Phone\""]",1887.99,{},132334,0,"""Europe""" +2023-02-23,26278,1116,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3995.18,{},186535,1,"""Africa""" +2023-05-11,26279,666,"[\""Charger\"", \""Monitor\""]",3897.01,"{\"": \""16%\""}",201711,0,"""Europe""" +2023-01-08,26280,3967,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3627.19,{},106749,0,"""South America""" +2023-05-03,26281,2879,"[\""Tablet\""]",3832.33,{},196396,1,"""North America""" +2024-02-27,26282,4938,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3615.63,{},220939,0,"""North America""" +2024-08-21,26283,3553,"[\""Tablet\""]",1423.59,"{\""loyalty\"": \""11%\""}",210259,1,"""South America""" +2023-03-08,26284,3011,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",286.07,"{\""seasonal\"": \""16%\""}",130261,1,"""South America""" +2024-07-03,26285,4493,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3795.32,"{\""promo\"": \""13%\""}",81887,0,"""North America""" +2023-05-04,26286,8976,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2795.95,"{\"": \""6%\""}",278957,0,"""Europe""" +2023-10-14,26287,6603,"[\""Wireless Mouse\""]",1234.57,"{\""seasonal\"": \""25%\""}",130883,1,"""North America""" +2024-06-19,26288,1851,"[\""Keyboard\"", \""Charger\""]",358.02,"{\""promo\"": \""7%\""}",147734,1,"""South America""" +2023-02-19,26289,3175,"[\""Laptop\"", \""Keyboard\""]",2969.52,"{\""seasonal\"": \""24%\""}",173367,1,"""South America""" +2023-04-11,26290,5283,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1983.15,"{\""seasonal\"": \""30%\""}",47892,1,"""South America""" +2023-03-24,26291,8057,"[\""Phone\"", \""Monitor\""]",361.41,{},250732,0,"""Africa""" +2023-07-21,26292,1368,"[\""Charger\"", \""Keyboard\""]",3455.06,{},177105,0,"""North America""" +2024-02-14,26293,5622,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1489.75,{},124797,0,"""Europe""" +2024-12-04,26294,1519,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2175.35,{},13583,0,"""South America""" +2023-09-22,26295,319,"[\""Laptop\""]",3522.24,"{\""promo\"": \""6%\""}",104767,0,"""Europe""" +2023-07-01,26296,6075,"[\""Monitor\""]",3144.0,{},278943,0,"""North America""" +2024-10-02,26297,4251,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4364.45,"{\""seasonal\"": \""19%\""}",231463,0,"""Asia""" +2023-06-05,26298,40,"[\""Tablet\"", \""Wireless Mouse\""]",1733.94,"{\"": \""17%\""}",74885,1,"""North America""" +2024-08-26,26299,2507,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3718.96,"{\""loyalty\"": \""20%\""}",237663,0,"""Asia""" +2024-12-11,26300,2377,"[\""Charger\""]",1714.48,"{\""seasonal\"": \""28%\""}",75836,0,"""North America""" +2024-03-07,26301,4101,"[\""Keyboard\""]",805.21,"{\""loyalty\"": \""18%\""}",24245,0,"""Africa""" +2024-08-20,26302,4654,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4418.83,{},27443,1,"""South America""" +2024-10-19,26303,336,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4746.21,"{\"": \""7%\""}",23818,1,"""North America""" +2024-06-03,26304,5907,"[\""Monitor\""]",3014.37,"{\""loyalty\"": \""6%\""}",5734,0,"""Asia""" +2024-10-24,26305,7660,"[\""Phone\""]",2894.8,{},297416,0,"""Europe""" +2023-11-13,26306,1738,"[\""Headphones\""]",519.69,"{\""loyalty\"": \""6%\""}",264097,0,"""Asia""" +2023-10-20,26307,5806,"[\""Tablet\""]",463.44,{},220211,0,"""Asia""" +2024-11-30,26308,6903,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1961.53,{},23863,1,"""Africa""" +2023-02-03,26309,2718,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4429.07,"{\""loyalty\"": \""15%\""}",208796,1,"""Europe""" +2024-09-21,26310,6311,"[\""Phone\""]",4037.43,{},226649,1,"""South America""" +2024-08-31,26311,4632,"[\""Keyboard\"", \""Headphones\""]",2875.48,"{\""promo\"": \""16%\""}",250141,1,"""Africa""" +2024-03-25,26312,5882,"[\""Wireless Mouse\"", \""Phone\""]",1314.04,"{\"": \""24%\""}",46560,0,"""North America""" +2023-01-08,26313,5743,"[\""Laptop\""]",577.45,{},109822,0,"""South America""" +2024-05-28,26314,4292,"[\""Headphones\"", \""Monitor\""]",3290.43,{},6437,0,"""North America""" +2024-03-25,26315,2712,"[\""Phone\"", \""Tablet\""]",3508.6,{},44602,1,"""North America""" +2023-12-12,26316,465,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4973.84,{},188491,1,"""Asia""" +2024-06-29,26317,3744,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1968.96,"{\""promo\"": \""10%\""}",17991,1,"""North America""" +2023-06-20,26318,6038,"[\""Keyboard\""]",4980.77,"{\""seasonal\"": \""6%\""}",214828,0,"""South America""" +2023-03-02,26319,8966,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2893.12,{},184839,0,"""North America""" +2023-09-10,26320,1178,"[\""Laptop\""]",1677.69,"{\""seasonal\"": \""16%\""}",228575,0,"""Europe""" +2023-05-26,26321,4925,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1817.99,"{\""promo\"": \""9%\""}",90212,0,"""Africa""" +2024-02-05,26322,2125,"[\""Wireless Mouse\""]",380.6,{},247689,0,"""South America""" +2024-01-16,26323,3284,"[\""Keyboard\""]",2447.3,"{\"": \""13%\""}",161613,1,"""South America""" +2023-06-19,26324,7755,"[\""Keyboard\""]",2986.79,"{\""loyalty\"": \""15%\""}",36809,1,"""Asia""" +2024-02-24,26325,1542,"[\""Charger\"", \""Tablet\""]",1588.86,"{\"": \""19%\""}",280034,0,"""Africa""" +2023-07-25,26326,2785,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2630.17,{},139709,1,"""South America""" +2024-06-13,26327,4300,"[\""Phone\"", \""Tablet\""]",4111.03,{},152243,0,"""North America""" +2024-12-26,26328,7693,"[\""Headphones\"", \""Tablet\""]",3951.65,"{\""loyalty\"": \""10%\""}",87255,1,"""Europe""" +2023-05-18,26329,7795,"[\""Wireless Mouse\""]",3523.1,"{\"": \""26%\""}",157200,0,"""Europe""" +2023-11-22,26330,8405,"[\""Keyboard\"", \""Tablet\""]",2604.61,"{\""promo\"": \""7%\""}",253137,0,"""North America""" +2024-04-19,26331,5389,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4295.01,{},128854,1,"""North America""" +2023-03-21,26332,6023,"[\""Wireless Mouse\""]",822.26,{},42848,0,"""Africa""" +2023-11-27,26333,3674,"[\""Headphones\"", \""Wireless Mouse\""]",113.34,{},55901,1,"""North America""" +2023-03-27,26334,8638,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4984.48,{},211011,1,"""Europe""" +2024-08-31,26335,9981,"[\""Tablet\""]",2011.0,{},129339,1,"""Asia""" +2024-02-26,26336,7850,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2081.28,{},89065,0,"""North America""" +2024-03-23,26337,9669,"[\""Laptop\"", \""Keyboard\""]",1767.4,{},175128,0,"""Europe""" +2024-04-21,26338,9786,"[\""Laptop\"", \""Charger\""]",1234.86,"{\""promo\"": \""21%\""}",59618,0,"""Asia""" +2023-11-28,26339,5834,"[\""Tablet\""]",3096.4,{},146461,0,"""Asia""" +2023-08-17,26340,4327,"[\""Monitor\"", \""Phone\""]",1758.07,{},160118,0,"""Europe""" +2024-09-09,26341,7447,"[\""Headphones\"", \""Wireless Mouse\""]",4688.63,"{\""loyalty\"": \""17%\""}",149674,0,"""Asia""" +2023-03-08,26342,7389,"[\""Laptop\"", \""Keyboard\""]",453.31,"{\""seasonal\"": \""6%\""}",256866,1,"""South America""" +2024-10-07,26343,8475,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4296.73,{},116663,1,"""Asia""" +2023-05-10,26344,7981,"[\""Tablet\""]",1328.66,"{\""promo\"": \""27%\""}",228103,0,"""South America""" +2024-11-28,26345,6699,"[\""Phone\"", \""Keyboard\""]",3085.41,{},156082,0,"""North America""" +2023-08-15,26346,9639,"[\""Laptop\""]",1965.21,"{\""promo\"": \""6%\""}",34881,0,"""Asia""" +2023-05-13,26347,6055,"[\""Headphones\"", \""Monitor\""]",3869.78,{},37521,1,"""Asia""" +2024-02-14,26348,7494,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1461.71,{},4075,1,"""South America""" +2024-12-06,26349,4710,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3902.45,{},117171,1,"""Asia""" +2023-10-03,26350,9613,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2090.75,{},42708,0,"""North America""" +2023-04-24,26351,3623,"[\""Monitor\""]",2334.77,"{\""promo\"": \""25%\""}",238470,1,"""South America""" +2023-09-30,26352,9168,"[\""Charger\"", \""Keyboard\""]",4840.87,"{\""loyalty\"": \""5%\""}",57300,1,"""North America""" +2023-02-28,26353,7087,"[\""Laptop\"", \""Phone\""]",3264.06,"{\""loyalty\"": \""20%\""}",69964,0,"""Europe""" +2023-08-22,26354,7078,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3028.38,"{\""seasonal\"": \""22%\""}",8643,1,"""Africa""" +2024-10-11,26355,7921,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3006.81,{},213692,0,"""Europe""" +2024-08-12,26356,1759,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1455.04,"{\""seasonal\"": \""12%\""}",284517,1,"""South America""" +2024-12-04,26357,5383,"[\""Tablet\"", \""Keyboard\""]",2444.43,"{\""loyalty\"": \""10%\""}",84303,1,"""Africa""" +2024-07-15,26358,1993,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",520.98,{},69516,1,"""North America""" +2024-05-02,26359,9133,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4132.33,"{\""seasonal\"": \""29%\""}",174566,1,"""North America""" +2024-04-03,26360,7485,"[\""Charger\""]",1254.05,"{\""seasonal\"": \""17%\""}",77266,0,"""Europe""" +2023-04-22,26361,3963,"[\""Phone\"", \""Tablet\""]",1577.69,{},15814,1,"""Africa""" +2024-04-02,26362,2873,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1328.51,"{\""loyalty\"": \""12%\""}",4236,0,"""Africa""" +2024-03-14,26363,3650,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4745.58,{},289500,1,"""Asia""" +2024-07-05,26364,4829,"[\""Keyboard\"", \""Headphones\""]",3405.96,{},85669,1,"""North America""" +2023-01-16,26365,6967,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2653.49,"{\"": \""5%\""}",253979,1,"""South America""" +2023-04-17,26366,5587,"[\""Laptop\""]",953.29,{},185676,0,"""Europe""" +2024-05-29,26367,1292,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1355.7,{},3451,1,"""Europe""" +2023-02-02,26368,2477,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3848.37,"{\""loyalty\"": \""11%\""}",288749,0,"""Africa""" +2024-10-19,26369,4087,"[\""Headphones\""]",2559.33,{},82248,0,"""Asia""" +2023-07-05,26370,9756,"[\""Keyboard\""]",3988.47,"{\""loyalty\"": \""26%\""}",298944,1,"""North America""" +2024-12-22,26371,1481,"[\""Monitor\""]",1157.41,{},288015,1,"""North America""" +2024-12-17,26372,8780,"[\""Phone\"", \""Charger\""]",457.64,{},88253,1,"""North America""" +2023-08-07,26373,3761,"[\""Wireless Mouse\"", \""Headphones\""]",2246.24,"{\""loyalty\"": \""17%\""}",256195,0,"""Europe""" +2024-06-09,26374,5483,"[\""Wireless Mouse\"", \""Phone\""]",101.8,{},83915,0,"""South America""" +2023-04-20,26375,3395,"[\""Charger\"", \""Headphones\""]",1015.26,{},74080,0,"""Europe""" +2023-04-16,26376,4365,"[\""Tablet\"", \""Phone\""]",1595.03,"{\""promo\"": \""23%\""}",83791,0,"""North America""" +2023-08-04,26377,9683,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1848.61,{},3999,0,"""Europe""" +2023-10-22,26378,7043,"[\""Wireless Mouse\"", \""Laptop\""]",1904.84,{},130677,0,"""South America""" +2023-10-14,26379,6028,"[\""Wireless Mouse\""]",3309.77,"{\""seasonal\"": \""6%\""}",168293,0,"""South America""" +2023-04-02,26380,6157,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2267.15,"{\"": \""11%\""}",258464,1,"""South America""" +2023-09-20,26381,9683,"[\""Laptop\"", \""Wireless Mouse\""]",1703.19,"{\""promo\"": \""15%\""}",210696,0,"""North America""" +2023-12-02,26382,4077,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3891.14,"{\"": \""30%\""}",142217,1,"""Asia""" +2024-01-02,26383,4510,"[\""Charger\"", \""Wireless Mouse\""]",3727.47,{},103083,0,"""Europe""" +2024-10-17,26384,8693,"[\""Laptop\""]",331.29,{},25572,0,"""Asia""" +2024-05-29,26385,4613,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4709.94,"{\""seasonal\"": \""15%\""}",233864,1,"""Europe""" +2024-06-07,26386,99,"[\""Phone\""]",2805.53,{},287635,0,"""South America""" +2024-02-13,26387,6383,"[\""Headphones\""]",4004.2,{},202172,1,"""Asia""" +2024-05-10,26388,9808,"[\""Keyboard\""]",4886.96,{},18249,1,"""South America""" +2024-01-04,26389,1862,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3513.28,"{\""promo\"": \""8%\""}",194359,0,"""North America""" +2023-12-25,26390,1524,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1627.95,"{\""seasonal\"": \""11%\""}",55208,0,"""North America""" +2023-06-29,26391,1967,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",531.2,{},9949,0,"""South America""" +2024-04-01,26392,5108,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",347.53,{},165671,0,"""Europe""" +2023-12-13,26393,4714,"[\""Headphones\""]",2977.17,{},273236,0,"""Asia""" +2023-07-04,26394,6124,"[\""Charger\""]",2881.43,"{\""promo\"": \""6%\""}",111221,1,"""Africa""" +2024-12-23,26395,8077,"[\""Charger\""]",3707.65,"{\""loyalty\"": \""23%\""}",1920,1,"""North America""" +2023-12-18,26396,820,"[\""Laptop\"", \""Headphones\""]",3734.26,{},51532,0,"""South America""" +2024-07-28,26397,7251,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3829.41,{},119871,0,"""Africa""" +2024-12-23,26398,8344,"[\""Phone\""]",2586.08,"{\""loyalty\"": \""15%\""}",3658,0,"""North America""" +2023-08-30,26399,6755,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2275.19,"{\""loyalty\"": \""21%\""}",12115,1,"""Asia""" +2024-05-13,26400,6396,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4598.49,"{\""seasonal\"": \""21%\""}",42901,0,"""North America""" +2023-05-22,26401,9093,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3019.83,{},69979,0,"""South America""" +2024-10-27,26402,8417,"[\""Headphones\"", \""Charger\""]",3312.28,{},22223,0,"""Asia""" +2024-09-05,26403,6079,"[\""Wireless Mouse\""]",2951.78,"{\""seasonal\"": \""19%\""}",97489,1,"""Europe""" +2024-12-09,26404,4622,"[\""Wireless Mouse\""]",2705.47,{},228799,1,"""North America""" +2024-12-24,26405,8141,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3428.76,"{\"": \""14%\""}",87748,0,"""Asia""" +2024-08-25,26406,9503,"[\""Laptop\""]",3735.69,"{\""seasonal\"": \""23%\""}",297492,1,"""Europe""" +2024-11-15,26407,9598,"[\""Headphones\""]",3845.83,{},131838,1,"""Africa""" +2024-10-26,26408,5621,"[\""Headphones\"", \""Tablet\""]",3271.62,{},288197,1,"""Africa""" +2023-09-29,26409,566,"[\""Tablet\"", \""Phone\""]",4145.3,"{\""loyalty\"": \""6%\""}",13386,0,"""Africa""" +2023-03-10,26410,6558,"[\""Phone\"", \""Monitor\""]",3043.68,"{\"": \""19%\""}",285576,1,"""North America""" +2024-07-14,26411,7500,"[\""Monitor\"", \""Tablet\""]",4855.52,{},78332,1,"""South America""" +2024-10-10,26412,8483,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2358.19,{},186343,0,"""North America""" +2024-07-05,26413,7364,"[\""Headphones\""]",973.72,{},231721,1,"""South America""" +2023-03-19,26414,331,"[\""Phone\"", \""Monitor\""]",1190.19,{},1747,0,"""North America""" +2024-12-15,26415,4599,"[\""Tablet\""]",4534.77,{},41542,0,"""Asia""" +2023-12-13,26416,3704,"[\""Tablet\""]",793.82,{},270931,0,"""Asia""" +2023-09-05,26417,3070,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",107.0,"{\""promo\"": \""15%\""}",128741,0,"""Africa""" +2023-06-25,26418,9198,"[\""Laptop\""]",107.62,{},51846,0,"""North America""" +2023-07-27,26419,3545,"[\""Keyboard\"", \""Wireless Mouse\""]",3284.9,{},20990,0,"""Asia""" +2023-08-30,26420,3178,"[\""Keyboard\"", \""Monitor\""]",2737.06,"{\""promo\"": \""22%\""}",85143,1,"""Asia""" +2023-06-17,26421,62,"[\""Charger\""]",3241.49,"{\""loyalty\"": \""8%\""}",16790,0,"""North America""" +2023-04-30,26422,5127,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",849.68,{},82189,0,"""South America""" +2023-06-19,26423,1628,"[\""Tablet\""]",3610.38,{},218975,0,"""North America""" +2024-08-09,26424,3053,"[\""Monitor\""]",3466.34,{},96905,0,"""North America""" +2023-02-02,26425,3144,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3179.63,"{\""promo\"": \""12%\""}",280130,0,"""Asia""" +2024-08-23,26426,7933,"[\""Laptop\"", \""Phone\""]",1037.85,"{\""loyalty\"": \""30%\""}",58674,1,"""North America""" +2024-02-15,26427,7117,"[\""Keyboard\""]",2772.86,"{\""seasonal\"": \""13%\""}",75198,0,"""Asia""" +2023-10-18,26428,4974,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1320.18,{},214621,1,"""South America""" +2023-02-12,26429,6369,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2025.02,"{\""loyalty\"": \""21%\""}",193698,1,"""Asia""" +2023-07-28,26430,8532,"[\""Tablet\"", \""Laptop\""]",1961.34,"{\"": \""11%\""}",112316,1,"""South America""" +2024-12-16,26431,4747,"[\""Phone\""]",264.12,{},219631,0,"""South America""" +2023-10-28,26432,3697,"[\""Wireless Mouse\"", \""Headphones\""]",2435.67,{},76177,0,"""North America""" +2023-11-30,26433,3312,"[\""Wireless Mouse\"", \""Tablet\""]",1958.06,{},63689,0,"""Asia""" +2024-10-21,26434,3000,"[\""Monitor\""]",2158.65,"{\""seasonal\"": \""23%\""}",203775,0,"""Asia""" +2023-10-02,26435,9123,"[\""Keyboard\""]",313.31,"{\""promo\"": \""9%\""}",43890,1,"""South America""" +2024-06-01,26436,5634,"[\""Tablet\""]",2774.31,"{\""loyalty\"": \""28%\""}",62941,1,"""South America""" +2023-07-07,26437,6754,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3637.22,{},205149,0,"""Europe""" +2024-09-16,26438,5819,"[\""Phone\"", \""Tablet\""]",1481.34,"{\"": \""11%\""}",127022,1,"""Europe""" +2023-11-24,26439,177,"[\""Charger\""]",1546.76,"{\""seasonal\"": \""7%\""}",116627,0,"""South America""" +2024-02-09,26440,282,"[\""Phone\"", \""Tablet\""]",3800.26,{},243153,0,"""Asia""" +2023-08-31,26441,151,"[\""Wireless Mouse\"", \""Tablet\""]",2352.97,{},160750,0,"""North America""" +2023-12-15,26442,1658,"[\""Charger\"", \""Headphones\""]",2523.15,"{\""seasonal\"": \""26%\""}",241033,1,"""South America""" +2024-07-19,26443,1550,"[\""Charger\""]",3074.5,{},224928,1,"""Europe""" +2023-02-09,26444,1345,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1820.93,{},137086,1,"""North America""" +2024-09-02,26445,3379,"[\""Monitor\"", \""Laptop\""]",727.76,"{\""promo\"": \""15%\""}",297557,0,"""Europe""" +2023-05-08,26446,9596,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4073.37,{},177148,1,"""Asia""" +2024-12-25,26447,2042,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3991.06,"{\""seasonal\"": \""20%\""}",184201,1,"""Asia""" +2024-02-18,26448,7981,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2412.03,{},246684,0,"""North America""" +2024-05-05,26449,5693,"[\""Phone\"", \""Keyboard\""]",3892.92,"{\""promo\"": \""21%\""}",105652,1,"""South America""" +2023-09-27,26450,7530,"[\""Charger\"", \""Phone\""]",4563.81,"{\""loyalty\"": \""22%\""}",89753,0,"""North America""" +2024-02-27,26451,6139,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4761.73,"{\"": \""7%\""}",27309,0,"""South America""" +2023-11-24,26452,6479,"[\""Monitor\""]",4850.05,"{\""seasonal\"": \""18%\""}",2692,1,"""Asia""" +2023-12-08,26453,8533,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4152.56,"{\"": \""14%\""}",114182,0,"""Asia""" +2023-01-20,26454,1577,"[\""Monitor\""]",4207.97,{},30481,1,"""Asia""" +2024-12-04,26455,8121,"[\""Phone\""]",126.93,"{\""seasonal\"": \""11%\""}",180836,0,"""Asia""" +2024-08-21,26456,3133,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2803.55,{},124172,0,"""Europe""" +2024-11-25,26457,385,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",636.86,"{\""promo\"": \""13%\""}",186477,1,"""Asia""" +2023-03-13,26458,8880,"[\""Wireless Mouse\"", \""Laptop\""]",2675.56,"{\""loyalty\"": \""30%\""}",260058,1,"""Africa""" +2023-03-05,26459,81,"[\""Monitor\""]",760.39,{},230334,1,"""Asia""" +2023-04-27,26460,2199,"[\""Monitor\""]",2495.13,{},286269,1,"""Asia""" +2024-02-15,26461,8748,"[\""Charger\""]",4567.69,{},167063,1,"""North America""" +2024-04-23,26462,3977,"[\""Tablet\"", \""Laptop\""]",2124.62,{},29973,0,"""Europe""" +2024-07-10,26463,9334,"[\""Laptop\"", \""Wireless Mouse\""]",2714.43,{},12024,1,"""Europe""" +2023-05-16,26464,1613,"[\""Charger\""]",3787.38,"{\"": \""8%\""}",106373,1,"""South America""" +2024-02-17,26465,2032,"[\""Headphones\""]",4862.91,"{\""seasonal\"": \""9%\""}",203233,0,"""Asia""" +2023-06-05,26466,3390,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",409.96,{},254271,1,"""Europe""" +2024-02-23,26467,64,"[\""Keyboard\""]",1817.23,{},101113,0,"""North America""" +2024-05-16,26468,8409,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2208.33,"{\""promo\"": \""10%\""}",68317,1,"""North America""" +2024-07-27,26469,3302,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",384.95,"{\""seasonal\"": \""13%\""}",98629,0,"""South America""" +2024-07-05,26470,5223,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2848.38,"{\""seasonal\"": \""20%\""}",175887,1,"""South America""" +2024-07-28,26471,5912,"[\""Tablet\"", \""Keyboard\""]",3453.97,{},105993,1,"""Asia""" +2023-09-14,26472,2773,"[\""Wireless Mouse\""]",291.73,{},158753,0,"""Europe""" +2023-04-03,26473,6850,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3395.29,"{\""loyalty\"": \""18%\""}",155693,1,"""Africa""" +2023-02-12,26474,7158,"[\""Phone\"", \""Tablet\""]",4919.25,"{\""loyalty\"": \""13%\""}",105938,1,"""Asia""" +2023-04-14,26475,7980,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",200.58,{},281977,0,"""Africa""" +2023-05-22,26476,1946,"[\""Wireless Mouse\"", \""Laptop\""]",4370.67,{},119880,1,"""South America""" +2024-07-31,26477,7172,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1170.79,{},142919,0,"""Europe""" +2024-06-23,26478,7465,"[\""Headphones\""]",4206.19,{},45163,0,"""North America""" +2024-04-12,26479,2186,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1795.1,{},293510,1,"""South America""" +2023-02-17,26480,2917,"[\""Phone\"", \""Charger\"", \""Monitor\""]",961.58,{},24887,0,"""Asia""" +2024-07-17,26481,8644,"[\""Charger\"", \""Phone\""]",4664.39,"{\""seasonal\"": \""22%\""}",71660,1,"""North America""" +2024-04-10,26482,5739,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4696.4,{},189598,0,"""South America""" +2024-12-17,26483,5327,"[\""Keyboard\"", \""Wireless Mouse\""]",4507.79,"{\""loyalty\"": \""11%\""}",95467,1,"""Europe""" +2023-04-05,26484,7054,"[\""Monitor\""]",4943.64,{},112035,0,"""Africa""" +2023-03-18,26485,5539,"[\""Wireless Mouse\"", \""Phone\""]",2014.5,"{\""seasonal\"": \""13%\""}",126572,0,"""South America""" +2023-01-07,26486,7648,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3078.45,"{\"": \""13%\""}",188258,0,"""South America""" +2023-06-09,26487,2639,"[\""Headphones\""]",726.85,"{\""promo\"": \""13%\""}",285484,0,"""Asia""" +2024-11-26,26488,3862,"[\""Wireless Mouse\""]",1714.85,"{\""promo\"": \""20%\""}",147089,0,"""Asia""" +2024-05-21,26489,2536,"[\""Keyboard\""]",2519.84,"{\""loyalty\"": \""23%\""}",55115,1,"""Europe""" +2024-06-28,26490,1622,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",447.99,"{\""promo\"": \""15%\""}",8818,0,"""North America""" +2024-08-03,26491,776,"[\""Monitor\"", \""Laptop\""]",70.65,{},41286,1,"""North America""" +2024-09-05,26492,1247,"[\""Keyboard\""]",598.93,{},15742,0,"""North America""" +2024-03-03,26493,7800,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2869.91,{},279408,1,"""Europe""" +2024-08-28,26494,7604,"[\""Headphones\""]",2714.32,{},10532,0,"""Europe""" +2023-02-10,26495,3418,"[\""Phone\""]",1031.93,{},171658,0,"""Asia""" +2023-04-16,26496,7966,"[\""Charger\""]",1647.08,"{\""promo\"": \""25%\""}",248659,1,"""South America""" +2023-04-06,26497,7984,"[\""Laptop\""]",530.47,"{\""loyalty\"": \""23%\""}",83078,0,"""Europe""" +2024-08-02,26498,9418,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1022.87,"{\""seasonal\"": \""15%\""}",213796,0,"""South America""" +2024-12-09,26499,2277,"[\""Tablet\""]",1898.92,"{\""promo\"": \""22%\""}",8936,0,"""Africa""" +2024-04-30,26500,860,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2019.4,"{\""seasonal\"": \""13%\""}",211752,1,"""Africa""" +2024-05-13,26501,9444,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2500.03,"{\""seasonal\"": \""14%\""}",68070,1,"""Asia""" +2024-08-23,26502,8388,"[\""Phone\""]",1640.09,"{\""loyalty\"": \""8%\""}",43395,0,"""South America""" +2024-02-08,26503,4609,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1241.21,"{\"": \""14%\""}",209201,0,"""North America""" +2024-01-28,26504,376,"[\""Charger\"", \""Wireless Mouse\""]",4806.35,"{\"": \""5%\""}",101367,0,"""North America""" +2024-04-23,26505,1827,"[\""Tablet\"", \""Keyboard\""]",1704.47,"{\""promo\"": \""10%\""}",48398,0,"""North America""" +2024-01-09,26506,3359,"[\""Laptop\""]",427.77,"{\""loyalty\"": \""30%\""}",19260,1,"""Africa""" +2023-05-12,26507,6022,"[\""Monitor\""]",1808.61,{},52239,0,"""North America""" +2024-02-02,26508,8799,"[\""Phone\"", \""Headphones\""]",325.73,"{\""promo\"": \""11%\""}",110707,1,"""Asia""" +2024-11-06,26509,7811,"[\""Wireless Mouse\"", \""Tablet\""]",4821.52,{},179151,0,"""North America""" +2023-12-23,26510,1460,"[\""Monitor\"", \""Laptop\""]",3236.65,"{\""promo\"": \""5%\""}",124030,0,"""Europe""" +2024-05-30,26511,8281,"[\""Phone\"", \""Laptop\""]",1096.69,{},131067,0,"""Europe""" +2023-01-09,26512,8470,"[\""Charger\""]",179.77,{},296770,1,"""South America""" +2024-03-06,26513,1815,"[\""Tablet\""]",2324.84,{},180371,0,"""Europe""" +2023-10-04,26514,6081,"[\""Tablet\""]",1736.69,"{\""seasonal\"": \""7%\""}",86395,1,"""Asia""" +2024-12-05,26515,6373,"[\""Wireless Mouse\""]",793.51,{},59544,1,"""Asia""" +2024-04-03,26516,889,"[\""Laptop\"", \""Tablet\""]",2977.39,{},264631,0,"""Europe""" +2023-06-19,26517,7287,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3117.46,"{\""loyalty\"": \""16%\""}",232914,1,"""South America""" +2024-04-04,26518,894,"[\""Laptop\""]",2723.99,{},43156,0,"""Africa""" +2023-06-17,26519,5664,"[\""Laptop\""]",4380.57,{},43259,0,"""Africa""" +2023-09-16,26520,1241,"[\""Monitor\"", \""Tablet\""]",1888.57,"{\"": \""29%\""}",195293,1,"""South America""" +2023-02-23,26521,5626,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1449.95,{},149349,1,"""Europe""" +2023-07-03,26522,8828,"[\""Wireless Mouse\"", \""Phone\""]",1677.27,{},221854,0,"""Africa""" +2023-09-16,26523,3869,"[\""Keyboard\""]",723.9,"{\""seasonal\"": \""24%\""}",30709,1,"""North America""" +2023-01-03,26524,9026,"[\""Keyboard\"", \""Headphones\""]",3255.49,{},288032,1,"""Africa""" +2024-08-09,26525,4647,"[\""Tablet\""]",384.41,"{\""loyalty\"": \""29%\""}",94011,0,"""Europe""" +2024-10-14,26526,6565,"[\""Monitor\"", \""Tablet\""]",182.26,{},194689,1,"""South America""" +2024-11-14,26527,5423,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",458.39,{},234328,1,"""Europe""" +2023-08-16,26528,4680,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4148.41,"{\""promo\"": \""19%\""}",132348,1,"""North America""" +2023-10-10,26529,6353,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1860.8,{},196718,1,"""Europe""" +2024-09-19,26530,751,"[\""Headphones\"", \""Tablet\""]",4833.11,"{\""loyalty\"": \""30%\""}",273058,0,"""Africa""" +2023-02-25,26531,4353,"[\""Charger\"", \""Wireless Mouse\""]",3205.55,"{\""seasonal\"": \""11%\""}",143566,1,"""South America""" +2024-10-30,26532,2123,"[\""Keyboard\""]",3054.64,"{\""loyalty\"": \""20%\""}",2077,1,"""Europe""" +2024-03-29,26533,4121,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3238.1,{},84715,1,"""Europe""" +2024-03-09,26534,5301,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",421.88,"{\""promo\"": \""19%\""}",286726,1,"""Asia""" +2023-07-24,26535,8031,"[\""Laptop\""]",2739.67,"{\""loyalty\"": \""21%\""}",234513,0,"""North America""" +2023-01-14,26536,4755,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3502.19,{},25991,0,"""Africa""" +2024-07-17,26537,3636,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2025.87,{},263088,1,"""Africa""" +2023-07-29,26538,8546,"[\""Headphones\""]",2558.58,"{\"": \""5%\""}",230541,1,"""North America""" +2024-04-01,26539,3330,"[\""Keyboard\""]",3883.72,"{\""promo\"": \""20%\""}",253871,0,"""Asia""" +2024-09-18,26540,5860,"[\""Keyboard\"", \""Charger\""]",2694.17,"{\"": \""26%\""}",42805,0,"""Europe""" +2023-12-29,26541,8017,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3183.09,{},51472,1,"""Europe""" +2023-03-29,26542,9023,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",313.4,{},194650,1,"""Europe""" +2023-11-10,26543,6593,"[\""Headphones\""]",4910.42,"{\"": \""24%\""}",122060,0,"""Asia""" +2024-06-12,26544,802,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2577.37,"{\""loyalty\"": \""23%\""}",87087,0,"""Asia""" +2024-03-15,26545,8465,"[\""Phone\"", \""Tablet\""]",1420.39,{},111050,0,"""South America""" +2023-03-13,26546,6700,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3461.77,{},97058,0,"""Africa""" +2023-03-01,26547,275,"[\""Wireless Mouse\"", \""Keyboard\""]",4272.78,"{\""promo\"": \""21%\""}",282994,0,"""Africa""" +2024-06-18,26548,7852,"[\""Charger\"", \""Headphones\""]",691.16,{},107939,1,"""South America""" +2023-02-09,26549,6192,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1191.13,{},187805,0,"""South America""" +2024-04-11,26550,5636,"[\""Laptop\"", \""Charger\""]",551.89,{},79823,1,"""Europe""" +2024-09-08,26551,1461,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4371.16,"{\""promo\"": \""9%\""}",90787,1,"""South America""" +2024-10-08,26552,200,"[\""Wireless Mouse\""]",1903.06,{},195776,1,"""Europe""" +2023-11-26,26553,8683,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4001.75,"{\"": \""14%\""}",16196,0,"""South America""" +2023-10-28,26554,494,"[\""Phone\""]",1732.48,{},185403,0,"""North America""" +2023-10-04,26555,7448,"[\""Charger\"", \""Keyboard\""]",4121.5,{},3959,0,"""Africa""" +2024-04-27,26556,2321,"[\""Wireless Mouse\""]",3158.86,{},265459,1,"""Asia""" +2023-07-06,26557,2084,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1820.35,{},38349,0,"""Europe""" +2023-06-27,26558,8719,"[\""Charger\"", \""Headphones\"", \""Phone\""]",882.35,{},52700,1,"""Europe""" +2024-04-20,26559,1853,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2574.57,"{\"": \""6%\""}",14964,1,"""North America""" +2024-09-16,26560,2847,"[\""Monitor\""]",1111.01,"{\"": \""19%\""}",209634,0,"""Africa""" +2023-05-31,26561,6557,"[\""Tablet\"", \""Monitor\""]",2963.21,"{\"": \""22%\""}",101051,1,"""North America""" +2024-11-19,26562,9786,"[\""Tablet\"", \""Laptop\""]",3988.28,"{\""promo\"": \""15%\""}",204763,0,"""South America""" +2024-05-20,26563,4235,"[\""Wireless Mouse\""]",1565.55,"{\""seasonal\"": \""20%\""}",197235,1,"""Africa""" +2023-07-05,26564,1511,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",769.5,{},278129,1,"""Asia""" +2023-06-06,26565,2577,"[\""Charger\""]",688.31,{},139703,0,"""South America""" +2023-12-19,26566,2187,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3659.38,"{\"": \""19%\""}",254037,0,"""Europe""" +2023-02-07,26567,584,"[\""Laptop\"", \""Wireless Mouse\""]",3641.03,{},84758,1,"""Asia""" +2023-10-17,26568,3008,"[\""Wireless Mouse\"", \""Headphones\""]",698.03,"{\""loyalty\"": \""13%\""}",76976,0,"""Europe""" +2023-07-26,26569,4212,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4411.08,{},184576,1,"""South America""" +2023-12-14,26570,7543,"[\""Monitor\"", \""Keyboard\""]",3216.62,"{\"": \""22%\""}",183313,1,"""North America""" +2024-04-28,26571,2756,"[\""Laptop\"", \""Charger\""]",2386.69,"{\""seasonal\"": \""11%\""}",230871,1,"""Europe""" +2023-06-28,26572,5313,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2046.41,"{\"": \""19%\""}",38662,1,"""North America""" +2023-03-25,26573,3811,"[\""Keyboard\"", \""Wireless Mouse\""]",2054.04,"{\""loyalty\"": \""24%\""}",190403,1,"""Europe""" +2023-02-14,26574,434,"[\""Keyboard\""]",4639.37,{},286580,1,"""South America""" +2024-05-13,26575,8803,"[\""Laptop\"", \""Charger\""]",2324.44,"{\""promo\"": \""27%\""}",237999,0,"""Africa""" +2024-02-24,26576,751,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3144.85,"{\""loyalty\"": \""11%\""}",229462,1,"""North America""" +2023-04-08,26577,2745,"[\""Charger\"", \""Headphones\""]",1038.17,{},292633,1,"""Asia""" +2024-09-02,26578,2273,"[\""Headphones\""]",3857.78,{},238375,0,"""Africa""" +2024-01-12,26579,9095,"[\""Charger\"", \""Tablet\""]",4965.58,{},159255,1,"""South America""" +2024-02-04,26580,2297,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",977.72,{},119371,0,"""North America""" +2024-11-13,26581,7843,"[\""Headphones\""]",4430.03,{},213866,1,"""South America""" +2023-09-22,26582,4511,"[\""Phone\""]",4301.8,"{\""loyalty\"": \""12%\""}",236800,0,"""South America""" +2023-06-15,26583,2077,"[\""Phone\"", \""Charger\""]",3458.06,{},229278,0,"""Europe""" +2024-09-09,26584,1639,"[\""Keyboard\"", \""Headphones\""]",2171.94,{},174197,1,"""South America""" +2023-09-01,26585,3874,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4900.14,"{\""promo\"": \""15%\""}",2830,1,"""Asia""" +2023-08-23,26586,3335,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",879.85,"{\""loyalty\"": \""13%\""}",36994,1,"""North America""" +2024-05-05,26587,2938,"[\""Monitor\""]",4053.83,{},288472,0,"""Africa""" +2023-04-06,26588,7797,"[\""Headphones\"", \""Wireless Mouse\""]",4754.92,"{\""promo\"": \""15%\""}",125005,1,"""Africa""" +2024-11-26,26589,7678,"[\""Charger\"", \""Tablet\""]",2043.25,{},17882,0,"""Asia""" +2024-11-04,26590,7913,"[\""Tablet\"", \""Keyboard\""]",2837.89,"{\""promo\"": \""6%\""}",97497,1,"""Asia""" +2024-05-04,26591,1374,"[\""Phone\"", \""Wireless Mouse\""]",3009.83,{},64838,0,"""Europe""" +2023-04-16,26592,2810,"[\""Wireless Mouse\""]",4191.55,{},239468,0,"""Africa""" +2024-01-16,26593,6839,"[\""Phone\"", \""Laptop\""]",1016.08,"{\"": \""17%\""}",270103,0,"""South America""" +2023-02-24,26594,9396,"[\""Wireless Mouse\""]",1946.6,{},154618,1,"""South America""" +2023-10-10,26595,8628,"[\""Wireless Mouse\"", \""Keyboard\""]",780.3,{},161888,0,"""Europe""" +2024-08-24,26596,8743,"[\""Monitor\""]",3987.28,{},202867,1,"""North America""" +2024-07-19,26597,6744,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2417.56,{},69656,1,"""North America""" +2024-07-14,26598,2167,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3965.51,"{\""promo\"": \""11%\""}",54804,0,"""South America""" +2024-06-28,26599,8135,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4970.05,"{\""seasonal\"": \""22%\""}",1523,0,"""Africa""" +2024-01-25,26600,7864,"[\""Wireless Mouse\""]",1976.27,{},97180,1,"""Asia""" +2023-08-04,26601,640,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1196.35,"{\""loyalty\"": \""14%\""}",47799,1,"""Europe""" +2024-09-05,26602,1288,"[\""Charger\""]",2369.17,{},226842,1,"""Europe""" +2023-12-05,26603,9999,"[\""Wireless Mouse\""]",136.51,{},199629,0,"""Europe""" +2024-06-25,26604,4934,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4287.21,{},49324,1,"""South America""" +2024-04-06,26605,4181,"[\""Charger\""]",1604.63,{},26263,0,"""Africa""" +2023-12-05,26606,4016,"[\""Phone\""]",3526.05,"{\"": \""17%\""}",12973,0,"""Africa""" +2023-06-29,26607,1435,"[\""Charger\""]",3452.91,{},298742,0,"""Europe""" +2024-05-04,26608,5147,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1732.65,{},8849,0,"""North America""" +2023-11-16,26609,2376,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",151.83,"{\""seasonal\"": \""25%\""}",48270,1,"""Europe""" +2024-02-08,26610,1403,"[\""Charger\"", \""Monitor\""]",418.98,{},115581,1,"""South America""" +2024-03-09,26611,8120,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2774.76,"{\""loyalty\"": \""7%\""}",81418,0,"""Africa""" +2023-05-27,26612,244,"[\""Headphones\"", \""Tablet\""]",988.13,{},157467,1,"""South America""" +2024-11-15,26613,4485,"[\""Phone\"", \""Tablet\""]",1297.26,"{\""loyalty\"": \""7%\""}",273515,1,"""North America""" +2023-05-12,26614,8637,"[\""Monitor\"", \""Phone\""]",2948.37,"{\"": \""26%\""}",254788,0,"""Africa""" +2023-09-11,26615,3837,"[\""Monitor\"", \""Keyboard\""]",4315.58,"{\"": \""15%\""}",60379,0,"""South America""" +2023-07-09,26616,6655,"[\""Keyboard\""]",4016.67,{},135913,1,"""Africa""" +2023-05-09,26617,9412,"[\""Keyboard\"", \""Monitor\""]",143.66,"{\""promo\"": \""17%\""}",37142,1,"""South America""" +2024-06-30,26618,2077,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4080.43,{},3620,1,"""South America""" +2023-04-16,26619,1160,"[\""Headphones\""]",4269.0,{},39712,0,"""Asia""" +2023-11-08,26620,3047,"[\""Wireless Mouse\"", \""Monitor\""]",4572.88,"{\""seasonal\"": \""16%\""}",206262,0,"""Europe""" +2023-05-02,26621,8228,"[\""Phone\""]",2040.71,{},250286,0,"""North America""" +2024-01-13,26622,5989,"[\""Laptop\"", \""Wireless Mouse\""]",1249.05,"{\"": \""19%\""}",196947,0,"""South America""" +2024-06-23,26623,4757,"[\""Laptop\""]",3468.77,{},164969,0,"""South America""" +2024-10-27,26624,5550,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1088.52,{},173350,0,"""North America""" +2024-09-20,26625,8049,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2234.44,"{\""seasonal\"": \""17%\""}",269005,0,"""South America""" +2024-01-14,26626,3722,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1575.01,"{\"": \""25%\""}",136592,1,"""Africa""" +2024-05-10,26627,3928,"[\""Charger\"", \""Phone\""]",416.92,{},111530,1,"""Africa""" +2023-05-22,26628,2856,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3147.97,"{\"": \""16%\""}",81134,0,"""Africa""" +2023-10-04,26629,1367,"[\""Phone\""]",3510.04,"{\""seasonal\"": \""29%\""}",191937,1,"""Africa""" +2023-04-01,26630,6516,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2298.53,"{\""loyalty\"": \""20%\""}",90917,1,"""North America""" +2024-03-31,26631,7993,"[\""Keyboard\"", \""Charger\""]",940.97,{},75229,0,"""Africa""" +2024-03-29,26632,1120,"[\""Charger\"", \""Laptop\""]",2756.52,"{\""promo\"": \""8%\""}",207431,1,"""South America""" +2024-11-02,26633,9766,"[\""Wireless Mouse\""]",644.96,"{\""loyalty\"": \""10%\""}",132518,1,"""Asia""" +2024-04-27,26634,7242,"[\""Wireless Mouse\"", \""Monitor\""]",4855.76,"{\""loyalty\"": \""17%\""}",180778,1,"""Asia""" +2024-01-13,26635,9692,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",978.55,{},272522,1,"""Africa""" +2024-10-30,26636,7746,"[\""Charger\""]",3065.58,"{\""loyalty\"": \""19%\""}",248605,0,"""Europe""" +2023-03-14,26637,4492,"[\""Tablet\""]",2232.51,"{\""promo\"": \""10%\""}",50639,0,"""North America""" +2024-07-23,26638,411,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2775.27,"{\""seasonal\"": \""16%\""}",256947,0,"""South America""" +2023-02-19,26639,7926,"[\""Laptop\"", \""Wireless Mouse\""]",4924.34,"{\""promo\"": \""16%\""}",236861,1,"""South America""" +2023-04-03,26640,6180,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2599.54,"{\""loyalty\"": \""28%\""}",270782,1,"""Africa""" +2024-05-13,26641,4409,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4562.38,{},164499,0,"""Asia""" +2023-04-11,26642,7664,"[\""Monitor\"", \""Keyboard\""]",1500.81,{},70445,0,"""Europe""" +2023-02-22,26643,930,"[\""Laptop\"", \""Monitor\""]",2834.21,"{\""seasonal\"": \""15%\""}",218597,1,"""Africa""" +2023-08-17,26644,8271,"[\""Laptop\""]",374.07,"{\""loyalty\"": \""27%\""}",38751,1,"""Asia""" +2023-10-15,26645,1390,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1534.74,{},45415,0,"""Asia""" +2023-06-09,26646,1130,"[\""Charger\""]",4886.61,{},275764,1,"""Asia""" +2024-02-03,26647,566,"[\""Monitor\""]",3193.86,{},177407,0,"""Asia""" +2023-02-03,26648,8941,"[\""Charger\""]",1083.42,{},245245,1,"""Asia""" +2024-02-28,26649,2502,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1366.04,"{\""seasonal\"": \""22%\""}",224964,1,"""Asia""" +2023-01-16,26650,7781,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1706.96,"{\"": \""10%\""}",138397,0,"""Asia""" +2024-01-11,26651,689,"[\""Laptop\""]",878.83,"{\""promo\"": \""16%\""}",66807,0,"""South America""" +2024-10-01,26652,3610,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1542.89,{},133049,0,"""North America""" +2024-01-29,26653,2187,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2650.7,"{\""loyalty\"": \""23%\""}",204742,1,"""North America""" +2023-09-05,26654,5773,"[\""Phone\"", \""Headphones\""]",717.61,"{\""promo\"": \""27%\""}",175918,0,"""South America""" +2023-01-12,26655,7233,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3645.23,"{\""promo\"": \""6%\""}",158566,0,"""Asia""" +2023-12-05,26656,9154,"[\""Charger\"", \""Monitor\""]",700.07,{},281846,1,"""North America""" +2024-09-11,26657,5685,"[\""Laptop\"", \""Wireless Mouse\""]",1928.75,{},154070,1,"""Asia""" +2024-08-13,26658,8527,"[\""Monitor\""]",3506.57,"{\""loyalty\"": \""21%\""}",112071,0,"""North America""" +2024-10-10,26659,5689,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1019.96,{},154895,1,"""South America""" +2024-10-19,26660,9452,"[\""Charger\""]",3819.33,"{\""seasonal\"": \""15%\""}",10484,0,"""North America""" +2023-08-25,26661,5230,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1189.45,{},24772,0,"""Europe""" +2024-05-13,26662,3194,"[\""Monitor\""]",371.81,{},105909,0,"""South America""" +2024-07-14,26663,164,"[\""Wireless Mouse\"", \""Laptop\""]",775.46,{},97745,1,"""Asia""" +2024-07-22,26664,2943,"[\""Phone\"", \""Laptop\""]",4253.93,"{\""loyalty\"": \""5%\""}",277419,0,"""North America""" +2024-12-21,26665,9272,"[\""Phone\""]",4661.04,"{\""seasonal\"": \""19%\""}",161375,1,"""Europe""" +2023-02-28,26666,1220,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4252.26,"{\""promo\"": \""24%\""}",165529,0,"""Asia""" +2023-04-19,26667,5886,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3696.74,{},168429,1,"""Africa""" +2023-05-21,26668,4626,"[\""Tablet\"", \""Charger\""]",4983.16,{},162131,0,"""Asia""" +2024-12-23,26669,2089,"[\""Phone\"", \""Tablet\""]",939.86,{},266954,0,"""Europe""" +2023-02-14,26670,8272,"[\""Charger\"", \""Keyboard\""]",2289.42,{},239739,0,"""North America""" +2023-07-04,26671,7376,"[\""Headphones\"", \""Laptop\""]",676.77,{},178909,0,"""Asia""" +2023-09-12,26672,2876,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2836.46,"{\"": \""18%\""}",52045,1,"""North America""" +2024-12-06,26673,2435,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1309.56,{},214606,1,"""North America""" +2023-08-11,26674,4635,"[\""Charger\""]",3877.27,{},154221,1,"""North America""" +2023-06-22,26675,3942,"[\""Laptop\""]",3373.02,"{\""loyalty\"": \""11%\""}",274381,0,"""Asia""" +2023-07-07,26676,3887,"[\""Keyboard\""]",511.35,"{\""seasonal\"": \""24%\""}",13535,1,"""Europe""" +2024-08-09,26677,9982,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4869.65,"{\"": \""30%\""}",146049,0,"""South America""" +2023-07-24,26678,8906,"[\""Monitor\"", \""Wireless Mouse\""]",3351.42,{},50063,1,"""Europe""" +2024-01-23,26679,4442,"[\""Wireless Mouse\""]",4170.81,"{\""promo\"": \""27%\""}",162895,1,"""South America""" +2024-11-14,26680,729,"[\""Laptop\""]",2915.84,{},12785,0,"""Asia""" +2023-04-02,26681,9025,"[\""Monitor\"", \""Wireless Mouse\""]",1579.81,"{\""promo\"": \""16%\""}",267477,1,"""North America""" +2023-06-26,26682,2500,"[\""Phone\""]",4617.38,"{\""loyalty\"": \""30%\""}",230663,0,"""South America""" +2024-03-28,26683,4829,"[\""Wireless Mouse\""]",2141.08,{},82626,0,"""Africa""" +2023-08-10,26684,8826,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3730.74,{},70360,1,"""Asia""" +2023-11-27,26685,2416,"[\""Monitor\""]",4451.85,"{\""promo\"": \""24%\""}",164737,1,"""Europe""" +2024-05-03,26686,4363,"[\""Wireless Mouse\""]",3831.83,"{\""loyalty\"": \""17%\""}",295730,0,"""Europe""" +2023-05-31,26687,9877,"[\""Keyboard\"", \""Laptop\""]",2560.35,"{\"": \""7%\""}",41286,1,"""North America""" +2023-04-30,26688,390,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3030.08,"{\""seasonal\"": \""29%\""}",297710,1,"""North America""" +2023-03-18,26689,6776,"[\""Headphones\"", \""Monitor\""]",4884.87,"{\""seasonal\"": \""5%\""}",25343,1,"""North America""" +2024-07-08,26690,2826,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1210.19,"{\""promo\"": \""7%\""}",263528,1,"""North America""" +2024-08-27,26691,1293,"[\""Keyboard\""]",1656.71,"{\""promo\"": \""15%\""}",176427,1,"""Africa""" +2023-09-23,26692,9518,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2778.5,{},193135,1,"""Europe""" +2023-01-15,26693,1718,"[\""Monitor\"", \""Laptop\""]",3202.05,"{\"": \""22%\""}",283754,1,"""North America""" +2023-12-01,26694,278,"[\""Charger\"", \""Tablet\""]",4518.54,"{\""promo\"": \""25%\""}",151364,1,"""North America""" +2023-04-05,26695,825,"[\""Headphones\""]",2771.73,{},58404,1,"""North America""" +2023-09-24,26696,8660,"[\""Headphones\""]",2354.37,"{\"": \""7%\""}",238020,1,"""Europe""" +2024-01-13,26697,978,"[\""Laptop\"", \""Wireless Mouse\""]",1523.77,{},262714,1,"""Africa""" +2024-06-27,26698,6382,"[\""Laptop\"", \""Charger\""]",922.09,"{\""loyalty\"": \""22%\""}",81247,0,"""Africa""" +2024-06-28,26699,154,"[\""Phone\""]",134.46,"{\""loyalty\"": \""24%\""}",224253,0,"""South America""" +2023-01-12,26700,7209,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",773.88,{},138063,1,"""Africa""" +2023-11-20,26701,1398,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3499.23,"{\""loyalty\"": \""8%\""}",262855,1,"""Asia""" +2023-03-21,26702,2787,"[\""Tablet\""]",4688.98,{},292535,0,"""North America""" +2023-02-08,26703,6578,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4313.93,"{\"": \""16%\""}",30015,1,"""South America""" +2023-10-03,26704,9561,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4510.63,{},13283,1,"""South America""" +2024-06-18,26705,6206,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3876.61,{},250760,0,"""South America""" +2024-08-01,26706,9762,"[\""Wireless Mouse\"", \""Phone\""]",3108.15,"{\""seasonal\"": \""6%\""}",40625,1,"""Asia""" +2023-01-15,26707,4709,"[\""Phone\""]",364.85,{},212965,1,"""Europe""" +2024-05-23,26708,4523,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3809.3,{},190258,0,"""Africa""" +2024-05-07,26709,6345,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",673.87,{},189566,0,"""Asia""" +2024-09-22,26710,893,"[\""Tablet\""]",2691.64,"{\""promo\"": \""11%\""}",173766,0,"""North America""" +2024-05-07,26711,678,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3282.93,{},295425,0,"""South America""" +2024-07-03,26712,9052,"[\""Tablet\"", \""Laptop\""]",2740.49,{},242072,0,"""Europe""" +2024-06-02,26713,6979,"[\""Wireless Mouse\""]",3522.5,"{\"": \""29%\""}",232354,0,"""Africa""" +2023-08-10,26714,2899,"[\""Phone\""]",2350.33,"{\"": \""21%\""}",194172,0,"""South America""" +2024-02-06,26715,7105,"[\""Keyboard\"", \""Wireless Mouse\""]",1743.85,"{\""seasonal\"": \""11%\""}",98807,0,"""Asia""" +2023-05-21,26716,8322,"[\""Charger\"", \""Tablet\""]",1149.66,"{\""loyalty\"": \""20%\""}",32491,1,"""Asia""" +2024-03-18,26717,3728,"[\""Charger\""]",3687.22,"{\""promo\"": \""25%\""}",27050,1,"""Europe""" +2023-07-16,26718,1028,"[\""Charger\"", \""Phone\""]",4006.02,"{\"": \""24%\""}",200313,0,"""North America""" +2023-05-30,26719,7142,"[\""Headphones\"", \""Wireless Mouse\""]",2706.38,{},209217,1,"""South America""" +2024-01-23,26720,8302,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1616.68,{},148908,1,"""Africa""" +2024-12-25,26721,7155,"[\""Wireless Mouse\""]",1831.51,"{\""promo\"": \""7%\""}",16179,0,"""Europe""" +2024-09-09,26722,8,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3562.83,{},79734,1,"""Asia""" +2024-03-29,26723,7799,"[\""Tablet\"", \""Phone\""]",4087.85,"{\""seasonal\"": \""12%\""}",18238,1,"""Europe""" +2024-10-02,26724,215,"[\""Tablet\""]",4824.65,{},94657,1,"""Asia""" +2024-09-16,26725,8725,"[\""Phone\"", \""Monitor\""]",1508.47,{},108091,1,"""South America""" +2023-07-12,26726,2427,"[\""Wireless Mouse\""]",3155.39,"{\"": \""9%\""}",297500,0,"""North America""" +2024-08-31,26727,1735,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3777.65,{},216840,0,"""Asia""" +2024-05-05,26728,6241,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1437.09,"{\""seasonal\"": \""16%\""}",152944,0,"""Africa""" +2023-09-26,26729,1084,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2595.18,{},167707,1,"""Africa""" +2023-12-07,26730,3589,"[\""Phone\"", \""Monitor\""]",2297.46,"{\""promo\"": \""22%\""}",9613,1,"""Africa""" +2024-11-06,26731,3704,"[\""Charger\"", \""Laptop\"", \""Phone\""]",696.86,{},112488,1,"""South America""" +2024-02-01,26732,442,"[\""Wireless Mouse\""]",3389.96,"{\""loyalty\"": \""22%\""}",166902,1,"""North America""" +2024-10-27,26733,4797,"[\""Monitor\""]",2243.21,"{\""promo\"": \""26%\""}",83955,0,"""Europe""" +2024-08-14,26734,1661,"[\""Laptop\"", \""Tablet\""]",1416.0,{},179178,0,"""Africa""" +2024-12-31,26735,5950,"[\""Monitor\""]",2306.96,{},220367,0,"""Africa""" +2024-07-26,26736,3211,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1976.99,"{\""promo\"": \""15%\""}",250118,1,"""Asia""" +2023-06-15,26737,634,"[\""Monitor\"", \""Headphones\""]",1447.1,{},49329,0,"""Asia""" +2024-12-31,26738,2551,"[\""Tablet\"", \""Wireless Mouse\""]",3895.77,"{\""promo\"": \""10%\""}",173007,1,"""Europe""" +2023-07-26,26739,8508,"[\""Laptop\"", \""Wireless Mouse\""]",4140.27,"{\"": \""16%\""}",171378,0,"""Asia""" +2023-09-16,26740,4414,"[\""Wireless Mouse\"", \""Keyboard\""]",1251.3,{},264019,1,"""Asia""" +2024-05-24,26741,5176,"[\""Phone\"", \""Keyboard\""]",3103.78,{},141614,1,"""North America""" +2023-11-27,26742,7993,"[\""Phone\"", \""Laptop\"", \""Charger\""]",922.73,{},114353,0,"""South America""" +2024-11-18,26743,8170,"[\""Charger\"", \""Wireless Mouse\""]",2448.28,{},203089,1,"""North America""" +2023-03-30,26744,6245,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1783.85,"{\""loyalty\"": \""17%\""}",48784,0,"""South America""" +2024-09-21,26745,4412,"[\""Charger\"", \""Phone\""]",4805.65,"{\"": \""8%\""}",64535,1,"""North America""" +2023-01-18,26746,2823,"[\""Keyboard\""]",2690.37,{},180061,1,"""North America""" +2024-11-14,26747,2159,"[\""Monitor\"", \""Laptop\""]",4832.45,{},297902,0,"""Africa""" +2023-11-25,26748,6292,"[\""Wireless Mouse\""]",4525.29,{},105111,1,"""Europe""" +2024-04-26,26749,1632,"[\""Wireless Mouse\""]",1454.12,{},125040,1,"""North America""" +2023-10-11,26750,1568,"[\""Charger\"", \""Wireless Mouse\""]",1973.62,{},270233,1,"""Europe""" +2023-11-16,26751,3758,"[\""Wireless Mouse\"", \""Phone\""]",4357.18,"{\"": \""24%\""}",274240,0,"""Asia""" +2024-09-14,26752,6374,"[\""Charger\""]",1714.73,{},158882,1,"""Europe""" +2024-01-15,26753,7276,"[\""Keyboard\""]",1416.0,"{\""promo\"": \""10%\""}",184189,0,"""North America""" +2023-10-25,26754,449,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1445.96,{},201771,1,"""North America""" +2024-04-25,26755,767,"[\""Wireless Mouse\"", \""Tablet\""]",4555.93,"{\""promo\"": \""8%\""}",17771,1,"""North America""" +2023-04-23,26756,7405,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4282.72,{},29832,0,"""South America""" +2023-01-26,26757,9481,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4566.93,{},115032,0,"""Africa""" +2024-08-15,26758,1888,"[\""Monitor\""]",2593.14,"{\"": \""28%\""}",233478,1,"""South America""" +2023-04-24,26759,836,"[\""Tablet\""]",2208.53,"{\""loyalty\"": \""25%\""}",87653,1,"""Europe""" +2024-01-02,26760,5740,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2231.51,{},273205,0,"""Africa""" +2023-04-02,26761,6154,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3470.85,{},51220,0,"""South America""" +2024-10-23,26762,2231,"[\""Wireless Mouse\"", \""Headphones\""]",1585.72,{},89236,0,"""North America""" +2024-11-06,26763,9853,"[\""Laptop\""]",2371.8,{},272828,0,"""Asia""" +2024-04-04,26764,4427,"[\""Charger\""]",2837.16,{},92936,1,"""Africa""" +2023-12-21,26765,7625,"[\""Tablet\"", \""Wireless Mouse\""]",4787.94,"{\""promo\"": \""29%\""}",179031,1,"""Asia""" +2024-08-12,26766,858,"[\""Laptop\""]",2707.41,"{\"": \""16%\""}",206188,1,"""Africa""" +2024-05-14,26767,2226,"[\""Phone\""]",412.78,{},152208,1,"""Asia""" +2024-02-01,26768,5346,"[\""Charger\""]",537.6,"{\""loyalty\"": \""30%\""}",270390,1,"""Africa""" +2024-11-19,26769,6475,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1037.28,{},81875,1,"""Africa""" +2024-05-24,26770,4552,"[\""Headphones\""]",2016.16,"{\""seasonal\"": \""27%\""}",227877,0,"""North America""" +2024-12-30,26771,4819,"[\""Phone\"", \""Headphones\""]",3012.6,"{\""seasonal\"": \""21%\""}",74312,0,"""Asia""" +2023-07-23,26772,8529,"[\""Laptop\""]",3778.07,"{\""seasonal\"": \""12%\""}",238174,0,"""Africa""" +2024-01-17,26773,492,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1026.41,{},98314,0,"""North America""" +2024-11-28,26774,717,"[\""Wireless Mouse\""]",4967.81,"{\""promo\"": \""6%\""}",48185,1,"""North America""" +2024-10-19,26775,1532,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2711.03,"{\"": \""16%\""}",248249,1,"""South America""" +2023-04-20,26776,6372,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3810.89,{},271431,0,"""Asia""" +2023-12-12,26777,1490,"[\""Keyboard\"", \""Tablet\""]",4849.83,"{\""promo\"": \""11%\""}",112637,0,"""Asia""" +2023-11-15,26778,9063,"[\""Tablet\""]",2412.52,"{\""promo\"": \""17%\""}",233983,1,"""South America""" +2023-11-24,26779,2556,"[\""Phone\""]",1699.2,"{\"": \""27%\""}",154970,0,"""North America""" +2024-05-22,26780,5163,"[\""Phone\"", \""Laptop\""]",4988.61,"{\""loyalty\"": \""5%\""}",188055,1,"""Asia""" +2024-09-14,26781,623,"[\""Charger\"", \""Monitor\""]",1459.68,{},133426,0,"""North America""" +2023-12-03,26782,6084,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3622.14,{},229984,1,"""Europe""" +2024-11-28,26783,9968,"[\""Laptop\""]",1284.38,{},221648,1,"""South America""" +2024-02-28,26784,3663,"[\""Laptop\"", \""Tablet\""]",1923.35,{},210109,0,"""Europe""" +2024-09-24,26785,5614,"[\""Tablet\""]",3936.71,"{\""seasonal\"": \""6%\""}",191724,1,"""Africa""" +2023-08-24,26786,1051,"[\""Monitor\"", \""Tablet\""]",680.51,"{\""seasonal\"": \""30%\""}",167265,1,"""Asia""" +2023-06-28,26787,2146,"[\""Tablet\"", \""Keyboard\""]",3759.73,{},103920,1,"""North America""" +2023-07-05,26788,590,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",194.23,"{\""seasonal\"": \""18%\""}",285360,0,"""South America""" +2024-07-19,26789,5317,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4443.75,{},242951,0,"""Europe""" +2023-07-31,26790,8705,"[\""Charger\"", \""Laptop\""]",2986.61,"{\""promo\"": \""20%\""}",59529,1,"""Africa""" +2023-10-27,26791,4877,"[\""Charger\""]",1446.86,"{\""promo\"": \""23%\""}",179306,1,"""Europe""" +2024-07-22,26792,3950,"[\""Keyboard\""]",1685.0,"{\""promo\"": \""12%\""}",95657,1,"""Asia""" +2023-09-24,26793,1378,"[\""Laptop\"", \""Phone\""]",4268.9,"{\"": \""9%\""}",144660,1,"""Asia""" +2024-03-15,26794,4292,"[\""Monitor\"", \""Tablet\""]",4348.35,{},255081,1,"""Africa""" +2023-12-30,26795,4182,"[\""Wireless Mouse\"", \""Keyboard\""]",3830.93,{},224866,1,"""North America""" +2024-11-16,26796,6636,"[\""Headphones\""]",3534.08,"{\""promo\"": \""12%\""}",218373,0,"""Africa""" +2024-04-27,26797,6055,"[\""Phone\"", \""Laptop\""]",2128.78,"{\""loyalty\"": \""29%\""}",263999,1,"""Europe""" +2023-06-16,26798,650,"[\""Wireless Mouse\"", \""Monitor\""]",899.18,"{\""loyalty\"": \""12%\""}",87563,0,"""North America""" +2024-03-23,26799,8633,"[\""Charger\""]",482.23,"{\""promo\"": \""17%\""}",217682,1,"""Africa""" +2023-06-06,26800,5245,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2447.08,"{\""loyalty\"": \""26%\""}",61198,0,"""Asia""" +2024-04-02,26801,1545,"[\""Keyboard\"", \""Tablet\""]",512.04,"{\""loyalty\"": \""14%\""}",84572,0,"""Africa""" +2023-05-12,26802,2481,"[\""Wireless Mouse\"", \""Monitor\""]",949.24,"{\"": \""16%\""}",229828,1,"""Europe""" +2024-04-25,26803,5809,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3460.54,{},241010,1,"""Africa""" +2024-08-09,26804,9506,"[\""Phone\""]",1927.51,"{\""seasonal\"": \""28%\""}",118250,1,"""South America""" +2024-12-23,26805,591,"[\""Phone\"", \""Monitor\""]",3949.13,"{\"": \""9%\""}",104014,1,"""Africa""" +2023-08-29,26806,5635,"[\""Monitor\""]",1626.91,{},50223,0,"""North America""" +2023-06-24,26807,1626,"[\""Wireless Mouse\"", \""Laptop\""]",4761.92,"{\""loyalty\"": \""22%\""}",203742,0,"""Europe""" +2023-10-16,26808,6256,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2170.03,"{\""promo\"": \""25%\""}",6294,1,"""North America""" +2024-09-20,26809,3731,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3559.76,{},227917,1,"""South America""" +2024-07-26,26810,9303,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1966.8,{},217014,1,"""Asia""" +2024-06-20,26811,4787,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4047.73,"{\"": \""9%\""}",119513,1,"""Africa""" +2024-06-02,26812,2319,"[\""Tablet\"", \""Charger\""]",2337.16,{},45006,1,"""Africa""" +2024-12-14,26813,2845,"[\""Keyboard\""]",235.9,{},201759,1,"""Africa""" +2023-11-10,26814,5223,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3946.17,{},214639,0,"""Europe""" +2023-09-06,26815,973,"[\""Laptop\""]",1646.15,"{\""seasonal\"": \""21%\""}",78683,0,"""Africa""" +2023-03-23,26816,8971,"[\""Keyboard\"", \""Charger\""]",1002.27,"{\""loyalty\"": \""16%\""}",118094,1,"""Asia""" +2024-10-01,26817,4764,"[\""Keyboard\"", \""Laptop\""]",352.27,{},235327,0,"""North America""" +2024-09-10,26818,4022,"[\""Laptop\"", \""Monitor\""]",3173.96,{},9889,1,"""Europe""" +2024-11-23,26819,1464,"[\""Tablet\""]",1013.78,{},86630,1,"""South America""" +2023-01-04,26820,7251,"[\""Headphones\"", \""Wireless Mouse\""]",846.7,"{\"": \""20%\""}",116120,1,"""Europe""" +2023-02-12,26821,2993,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3811.22,"{\""loyalty\"": \""6%\""}",293639,1,"""Asia""" +2023-11-29,26822,9097,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3280.83,"{\""promo\"": \""9%\""}",24770,0,"""Europe""" +2024-04-06,26823,8812,"[\""Laptop\""]",568.09,"{\""loyalty\"": \""7%\""}",274197,0,"""North America""" +2023-03-23,26824,5044,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4582.68,"{\""seasonal\"": \""11%\""}",281883,1,"""Asia""" +2024-11-29,26825,4975,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4115.92,{},291449,1,"""North America""" +2024-02-08,26826,2767,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3768.16,"{\""loyalty\"": \""13%\""}",128927,0,"""North America""" +2024-02-28,26827,7289,"[\""Laptop\""]",541.83,{},233477,0,"""Asia""" +2023-12-24,26828,4721,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4040.06,{},188661,0,"""Africa""" +2023-08-07,26829,4672,"[\""Wireless Mouse\"", \""Headphones\""]",1282.92,"{\""seasonal\"": \""16%\""}",51431,1,"""Asia""" +2023-07-10,26830,9190,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4078.43,"{\"": \""25%\""}",26918,1,"""Africa""" +2023-01-10,26831,2950,"[\""Keyboard\"", \""Wireless Mouse\""]",65.19,{},46491,1,"""Europe""" +2023-10-27,26832,3688,"[\""Charger\""]",3689.64,{},116531,0,"""North America""" +2023-08-31,26833,1441,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4097.39,"{\""promo\"": \""16%\""}",188506,1,"""Europe""" +2023-07-11,26834,7498,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",995.48,"{\""promo\"": \""28%\""}",283878,0,"""South America""" +2023-05-16,26835,3860,"[\""Tablet\"", \""Keyboard\""]",3423.05,"{\""seasonal\"": \""14%\""}",294678,1,"""Africa""" +2024-12-31,26836,26,"[\""Phone\"", \""Headphones\""]",3528.98,{},149604,0,"""Asia""" +2024-01-01,26837,5951,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",515.81,{},79394,1,"""South America""" +2023-05-29,26838,673,"[\""Charger\"", \""Keyboard\""]",2496.17,"{\"": \""19%\""}",32914,1,"""South America""" +2024-02-10,26839,4444,"[\""Phone\""]",1642.78,"{\""promo\"": \""22%\""}",289945,1,"""North America""" +2024-04-30,26840,9852,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3921.05,{},136933,1,"""Europe""" +2023-08-29,26841,8568,"[\""Charger\"", \""Headphones\""]",926.74,"{\"": \""7%\""}",278698,0,"""North America""" +2023-12-04,26842,768,"[\""Charger\"", \""Phone\""]",3627.55,"{\"": \""19%\""}",72569,0,"""Africa""" +2024-11-20,26843,4580,"[\""Phone\"", \""Tablet\""]",3673.04,"{\""loyalty\"": \""17%\""}",228979,0,"""North America""" +2023-12-03,26844,2982,"[\""Keyboard\""]",420.25,"{\""loyalty\"": \""22%\""}",108557,1,"""Europe""" +2024-08-16,26845,8202,"[\""Headphones\"", \""Phone\""]",981.26,{},41488,1,"""Europe""" +2023-03-04,26846,4335,"[\""Laptop\""]",3677.46,{},250394,1,"""Africa""" +2024-07-04,26847,7815,"[\""Phone\""]",1332.26,{},233396,0,"""North America""" +2024-11-08,26848,5123,"[\""Phone\"", \""Keyboard\""]",1642.8,{},37232,1,"""Africa""" +2024-06-26,26849,943,"[\""Charger\""]",509.11,{},74323,1,"""South America""" +2024-08-15,26850,4027,"[\""Wireless Mouse\""]",1881.1,"{\""loyalty\"": \""21%\""}",261983,0,"""Africa""" +2024-08-31,26851,996,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1470.49,{},278879,1,"""North America""" +2024-09-16,26852,131,"[\""Phone\"", \""Keyboard\""]",1603.19,"{\""promo\"": \""19%\""}",9424,0,"""South America""" +2023-04-11,26853,2220,"[\""Laptop\"", \""Tablet\""]",995.08,{},291252,0,"""South America""" +2024-11-01,26854,7066,"[\""Laptop\""]",2948.41,{},144244,0,"""Europe""" +2023-03-26,26855,795,"[\""Tablet\""]",367.85,"{\""promo\"": \""19%\""}",26961,0,"""Europe""" +2024-01-15,26856,1667,"[\""Headphones\"", \""Wireless Mouse\""]",4915.84,{},234769,1,"""North America""" +2024-09-01,26857,376,"[\""Headphones\"", \""Phone\"", \""Charger\""]",193.48,"{\""seasonal\"": \""22%\""}",61434,0,"""Africa""" +2024-09-08,26858,5890,"[\""Phone\""]",3569.21,{},12822,1,"""Europe""" +2024-03-25,26859,8127,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1232.35,{},8794,0,"""South America""" +2024-04-08,26860,7346,"[\""Keyboard\""]",2705.22,"{\""promo\"": \""25%\""}",113472,0,"""North America""" +2024-06-17,26861,7116,"[\""Charger\"", \""Laptop\""]",120.35,"{\""promo\"": \""15%\""}",289870,0,"""North America""" +2023-11-10,26862,2888,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3352.16,{},31701,1,"""Europe""" +2023-09-20,26863,3982,"[\""Wireless Mouse\""]",3280.4,{},186982,1,"""Asia""" +2023-04-25,26864,6296,"[\""Keyboard\"", \""Tablet\""]",3185.19,{},177592,1,"""North America""" +2023-02-25,26865,9892,"[\""Phone\"", \""Monitor\""]",2894.4,{},82212,1,"""Africa""" +2023-04-17,26866,6754,"[\""Monitor\"", \""Wireless Mouse\""]",550.91,"{\""seasonal\"": \""29%\""}",58632,0,"""South America""" +2023-09-13,26867,8359,"[\""Tablet\"", \""Headphones\""]",4663.96,{},243755,1,"""Asia""" +2024-07-05,26868,8022,"[\""Charger\""]",2507.3,"{\"": \""17%\""}",11586,1,"""Africa""" +2023-10-12,26869,1538,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4645.54,{},133681,1,"""Europe""" +2023-01-18,26870,2270,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3292.95,"{\""seasonal\"": \""10%\""}",220344,0,"""Europe""" +2024-06-14,26871,9332,"[\""Wireless Mouse\"", \""Keyboard\""]",3435.38,{},2050,0,"""North America""" +2024-12-15,26872,2877,"[\""Charger\"", \""Monitor\""]",4805.97,{},181892,1,"""North America""" +2024-09-26,26873,6955,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",148.22,{},169840,0,"""Europe""" +2023-08-09,26874,3227,"[\""Charger\""]",3573.46,"{\""loyalty\"": \""5%\""}",109625,0,"""North America""" +2024-02-04,26875,1980,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3037.81,"{\""loyalty\"": \""9%\""}",262576,1,"""North America""" +2023-06-17,26876,1558,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4926.71,{},81599,0,"""Africa""" +2024-08-22,26877,276,"[\""Headphones\"", \""Tablet\""]",2418.16,{},267726,0,"""South America""" +2023-07-16,26878,685,"[\""Phone\""]",292.29,"{\""loyalty\"": \""10%\""}",173080,1,"""North America""" +2024-05-08,26879,639,"[\""Charger\""]",4140.28,{},7555,0,"""Asia""" +2023-09-05,26880,4069,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1203.4,{},172406,1,"""North America""" +2024-05-24,26881,1077,"[\""Tablet\"", \""Wireless Mouse\""]",3208.59,"{\""loyalty\"": \""7%\""}",85229,1,"""South America""" +2023-11-07,26882,9638,"[\""Tablet\""]",1930.69,"{\""promo\"": \""16%\""}",134907,1,"""North America""" +2023-11-03,26883,1801,"[\""Charger\""]",385.57,"{\""loyalty\"": \""6%\""}",189139,0,"""South America""" +2024-10-22,26884,715,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1803.8,"{\"": \""11%\""}",259630,1,"""Africa""" +2024-12-27,26885,4591,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3466.65,"{\""seasonal\"": \""19%\""}",134377,0,"""Africa""" +2024-03-27,26886,7843,"[\""Keyboard\"", \""Wireless Mouse\""]",2272.51,"{\""seasonal\"": \""22%\""}",49837,0,"""Africa""" +2023-05-26,26887,9129,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3230.06,{},12700,1,"""Asia""" +2024-05-01,26888,7173,"[\""Charger\""]",4163.1,{},200330,1,"""Europe""" +2024-11-17,26889,6307,"[\""Tablet\""]",4489.62,{},46758,0,"""Asia""" +2024-12-18,26890,4376,"[\""Wireless Mouse\""]",408.19,{},185640,0,"""Europe""" +2024-02-19,26891,6024,"[\""Charger\""]",1778.59,{},261766,1,"""North America""" +2024-09-22,26892,8788,"[\""Monitor\"", \""Tablet\""]",484.16,"{\"": \""19%\""}",253069,0,"""Europe""" +2023-06-22,26893,67,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",897.23,{},282039,0,"""North America""" +2024-11-23,26894,3770,"[\""Keyboard\"", \""Wireless Mouse\""]",4188.74,{},207296,0,"""Africa""" +2023-06-27,26895,8374,"[\""Wireless Mouse\"", \""Headphones\""]",4821.96,{},143121,1,"""Europe""" +2024-05-16,26896,1467,"[\""Tablet\""]",3428.19,{},290507,1,"""Europe""" +2023-05-10,26897,8083,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1678.42,"{\""loyalty\"": \""25%\""}",97790,1,"""Asia""" +2024-03-11,26898,3505,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2267.71,{},297730,0,"""Europe""" +2024-10-11,26899,3798,"[\""Headphones\""]",2144.55,{},206650,0,"""Europe""" +2024-07-16,26900,1523,"[\""Monitor\"", \""Phone\""]",2399.61,{},161399,0,"""Europe""" +2024-06-20,26901,4838,"[\""Charger\""]",3479.54,{},65240,1,"""South America""" +2023-11-24,26902,2762,"[\""Monitor\"", \""Phone\""]",2866.41,{},45559,0,"""Europe""" +2023-11-13,26903,6895,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1838.91,{},173044,1,"""Africa""" +2023-12-12,26904,9871,"[\""Phone\""]",3024.67,"{\"": \""16%\""}",33258,0,"""Europe""" +2023-04-17,26905,3166,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2813.39,{},196975,1,"""South America""" +2024-03-06,26906,4589,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",878.33,"{\""seasonal\"": \""14%\""}",100343,1,"""Africa""" +2023-10-31,26907,3508,"[\""Keyboard\""]",236.71,{},187699,1,"""North America""" +2023-12-16,26908,5624,"[\""Charger\""]",3994.89,{},52121,1,"""South America""" +2024-11-03,26909,4335,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3521.25,{},274678,0,"""Africa""" +2024-03-02,26910,6714,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2657.92,"{\""seasonal\"": \""9%\""}",111318,1,"""Europe""" +2023-09-25,26911,9399,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4603.35,{},145648,0,"""Europe""" +2024-05-22,26912,3906,"[\""Monitor\"", \""Tablet\""]",3125.96,{},108935,0,"""Europe""" +2024-01-17,26913,2576,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",77.9,{},81865,1,"""Africa""" +2023-12-02,26914,5678,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",834.71,"{\""seasonal\"": \""26%\""}",243436,0,"""Asia""" +2024-04-03,26915,1725,"[\""Charger\""]",3488.98,{},168411,0,"""Africa""" +2024-10-26,26916,9360,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2635.53,"{\""promo\"": \""13%\""}",249746,1,"""North America""" +2024-05-15,26917,5554,"[\""Monitor\""]",576.41,"{\""seasonal\"": \""9%\""}",195813,0,"""South America""" +2024-09-19,26918,1810,"[\""Phone\"", \""Charger\""]",4929.55,{},43751,1,"""Asia""" +2024-12-07,26919,5578,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1336.75,{},185791,0,"""Europe""" +2024-02-25,26920,9539,"[\""Phone\""]",1325.51,{},162577,1,"""Africa""" +2023-11-27,26921,2969,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4100.53,{},182201,1,"""Asia""" +2024-01-28,26922,9767,"[\""Tablet\"", \""Keyboard\""]",1505.81,{},73118,1,"""Asia""" +2024-03-03,26923,4961,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4950.11,{},266854,0,"""South America""" +2024-03-24,26924,5122,"[\""Keyboard\""]",4226.56,"{\""promo\"": \""22%\""}",253621,1,"""North America""" +2024-09-14,26925,1591,"[\""Charger\"", \""Wireless Mouse\""]",938.76,{},165087,1,"""Europe""" +2023-11-13,26926,504,"[\""Charger\"", \""Tablet\""]",2805.05,"{\""loyalty\"": \""25%\""}",289621,1,"""North America""" +2023-05-20,26927,1866,"[\""Headphones\"", \""Wireless Mouse\""]",3829.64,{},59932,1,"""Europe""" +2023-11-30,26928,909,"[\""Headphones\"", \""Tablet\""]",3366.5,{},242767,1,"""Africa""" +2023-12-01,26929,806,"[\""Headphones\"", \""Laptop\""]",4812.23,"{\"": \""25%\""}",60095,0,"""South America""" +2023-07-30,26930,2123,"[\""Headphones\"", \""Charger\""]",3257.4,"{\""promo\"": \""27%\""}",61168,1,"""Europe""" +2023-11-29,26931,7908,"[\""Phone\""]",2632.32,{},221587,1,"""Europe""" +2023-05-28,26932,5012,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4936.17,"{\"": \""17%\""}",5141,0,"""Asia""" +2024-03-05,26933,2669,"[\""Phone\"", \""Tablet\""]",3365.05,"{\"": \""17%\""}",221371,1,"""Asia""" +2023-05-24,26934,9744,"[\""Headphones\"", \""Monitor\""]",195.82,{},222311,1,"""Asia""" +2023-02-07,26935,4190,"[\""Phone\"", \""Monitor\""]",1146.99,{},36521,0,"""Europe""" +2023-04-29,26936,3435,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3283.21,{},161485,1,"""Europe""" +2024-11-15,26937,1652,"[\""Keyboard\""]",59.94,"{\"": \""8%\""}",247978,0,"""Europe""" +2023-09-19,26938,3376,"[\""Keyboard\"", \""Tablet\""]",3494.65,{},26795,1,"""Europe""" +2023-01-18,26939,6632,"[\""Tablet\""]",191.49,"{\"": \""14%\""}",66778,0,"""Europe""" +2023-12-07,26940,4820,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1672.6,"{\""loyalty\"": \""16%\""}",84256,1,"""North America""" +2023-11-05,26941,9502,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",651.84,{},60806,0,"""South America""" +2023-01-27,26942,8761,"[\""Monitor\"", \""Keyboard\""]",3049.26,"{\""seasonal\"": \""25%\""}",289175,0,"""Europe""" +2024-11-12,26943,370,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2716.86,{},171006,0,"""South America""" +2024-09-25,26944,757,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",142.73,"{\""loyalty\"": \""25%\""}",14803,0,"""South America""" +2023-07-08,26945,4734,"[\""Charger\"", \""Headphones\""]",754.26,{},143379,1,"""North America""" +2023-11-25,26946,4390,"[\""Headphones\"", \""Charger\""]",3568.14,{},212715,0,"""North America""" +2024-10-28,26947,4292,"[\""Wireless Mouse\""]",3707.88,"{\"": \""17%\""}",206659,0,"""South America""" +2023-03-03,26948,6541,"[\""Keyboard\""]",838.14,"{\""promo\"": \""6%\""}",102947,0,"""Asia""" +2024-04-21,26949,5697,"[\""Laptop\"", \""Phone\""]",4890.06,"{\""seasonal\"": \""10%\""}",152812,1,"""Africa""" +2024-07-28,26950,6474,"[\""Monitor\"", \""Keyboard\""]",420.3,"{\""loyalty\"": \""18%\""}",51600,1,"""North America""" +2024-10-28,26951,2470,"[\""Headphones\""]",642.99,{},257547,1,"""Asia""" +2024-09-08,26952,1212,"[\""Tablet\"", \""Phone\""]",4082.81,"{\""promo\"": \""11%\""}",188389,0,"""North America""" +2023-07-23,26953,4188,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",775.55,{},52665,0,"""South America""" +2023-12-10,26954,3028,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2027.24,"{\""promo\"": \""24%\""}",150299,1,"""Europe""" +2024-11-01,26955,6919,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",918.91,"{\"": \""20%\""}",37655,1,"""Europe""" +2023-05-15,26956,692,"[\""Headphones\""]",1715.77,{},168523,1,"""Europe""" +2023-08-29,26957,1757,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3744.73,"{\""promo\"": \""7%\""}",113695,0,"""Africa""" +2023-02-15,26958,3129,"[\""Headphones\"", \""Keyboard\""]",4972.16,"{\"": \""15%\""}",275846,0,"""North America""" +2024-07-16,26959,372,"[\""Charger\"", \""Keyboard\""]",3486.69,"{\""seasonal\"": \""10%\""}",174573,1,"""North America""" +2024-10-04,26960,4345,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2530.46,"{\""loyalty\"": \""19%\""}",245041,0,"""South America""" +2024-11-16,26961,6339,"[\""Keyboard\""]",1279.0,"{\"": \""28%\""}",70897,1,"""North America""" +2023-10-24,26962,9502,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3948.76,"{\"": \""29%\""}",40217,0,"""North America""" +2024-10-02,26963,9228,"[\""Laptop\"", \""Tablet\""]",4732.34,{},88450,0,"""Africa""" +2024-09-13,26964,4322,"[\""Tablet\""]",4358.38,"{\""seasonal\"": \""26%\""}",276926,0,"""South America""" +2024-07-16,26965,2875,"[\""Wireless Mouse\""]",3619.56,{},122646,0,"""Africa""" +2024-11-22,26966,6096,"[\""Monitor\"", \""Tablet\""]",2923.03,"{\""seasonal\"": \""29%\""}",64384,1,"""Asia""" +2023-12-08,26967,1875,"[\""Headphones\""]",3787.15,{},89743,0,"""Africa""" +2023-03-12,26968,8120,"[\""Wireless Mouse\"", \""Monitor\""]",2806.57,"{\""loyalty\"": \""27%\""}",139695,1,"""South America""" +2023-01-10,26969,7308,"[\""Charger\""]",2565.49,"{\""promo\"": \""19%\""}",211687,1,"""Asia""" +2024-02-02,26970,4722,"[\""Phone\"", \""Keyboard\""]",3831.36,{},113043,1,"""South America""" +2023-10-12,26971,1389,"[\""Wireless Mouse\"", \""Tablet\""]",1505.23,{},59479,0,"""Asia""" +2023-11-28,26972,4371,"[\""Charger\""]",4593.73,{},52030,0,"""North America""" +2024-09-09,26973,3540,"[\""Phone\"", \""Tablet\""]",3664.87,"{\""seasonal\"": \""14%\""}",298631,1,"""Asia""" +2023-01-01,26974,7746,"[\""Keyboard\""]",3339.83,{},217217,0,"""North America""" +2024-12-06,26975,6841,"[\""Tablet\"", \""Wireless Mouse\""]",2672.01,{},51743,1,"""Europe""" +2023-12-04,26976,5504,"[\""Headphones\"", \""Keyboard\""]",2113.63,{},67655,0,"""Asia""" +2024-05-27,26977,8160,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4403.03,{},43860,1,"""South America""" +2023-02-06,26978,1518,"[\""Monitor\""]",62.94,"{\""seasonal\"": \""19%\""}",203481,1,"""Africa""" +2024-05-15,26979,3823,"[\""Tablet\"", \""Keyboard\""]",1967.44,{},271388,0,"""Europe""" +2024-02-02,26980,9923,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4916.67,"{\""loyalty\"": \""16%\""}",5452,1,"""South America""" +2023-03-17,26981,8911,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1869.99,"{\""loyalty\"": \""11%\""}",173603,1,"""South America""" +2024-09-07,26982,4458,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",978.43,{},100127,1,"""Asia""" +2024-02-21,26983,7644,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",735.05,"{\"": \""26%\""}",59919,1,"""Africa""" +2024-02-03,26984,5962,"[\""Wireless Mouse\"", \""Laptop\""]",3019.47,{},59182,0,"""South America""" +2024-02-29,26985,851,"[\""Tablet\"", \""Charger\""]",4714.32,{},95239,0,"""Africa""" +2024-06-20,26986,667,"[\""Wireless Mouse\"", \""Tablet\""]",703.65,"{\"": \""10%\""}",112049,1,"""Africa""" +2023-07-13,26987,8844,"[\""Phone\"", \""Charger\""]",4806.87,{},196828,1,"""Europe""" +2023-03-17,26988,342,"[\""Headphones\"", \""Wireless Mouse\""]",3517.01,"{\""seasonal\"": \""30%\""}",241994,1,"""South America""" +2023-06-16,26989,5272,"[\""Charger\"", \""Tablet\""]",4264.31,"{\""seasonal\"": \""28%\""}",280383,0,"""Africa""" +2023-08-15,26990,1490,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1859.52,"{\""loyalty\"": \""16%\""}",44956,1,"""Asia""" +2023-01-04,26991,873,"[\""Phone\"", \""Headphones\""]",898.99,"{\""loyalty\"": \""18%\""}",110978,0,"""Europe""" +2023-05-09,26992,3163,"[\""Tablet\"", \""Keyboard\""]",2453.02,{},292177,0,"""Africa""" +2023-04-28,26993,6988,"[\""Wireless Mouse\"", \""Phone\""]",3551.13,"{\""seasonal\"": \""8%\""}",185751,0,"""South America""" +2024-06-04,26994,8099,"[\""Tablet\""]",367.32,{},88106,1,"""North America""" +2023-10-02,26995,8951,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4320.97,"{\""loyalty\"": \""13%\""}",159535,1,"""Europe""" +2023-11-25,26996,3485,"[\""Keyboard\""]",774.43,{},130184,1,"""South America""" +2024-10-20,26997,6555,"[\""Tablet\"", \""Monitor\""]",161.96,{},286873,1,"""Africa""" +2024-01-31,26998,2516,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2804.35,{},244226,0,"""Asia""" +2023-06-15,26999,6283,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2724.91,"{\""promo\"": \""17%\""}",28070,1,"""Asia""" +2024-03-27,27000,6091,"[\""Monitor\"", \""Headphones\""]",1617.13,{},264035,0,"""North America""" +2023-12-21,27001,8217,"[\""Tablet\""]",243.53,"{\""seasonal\"": \""5%\""}",230358,1,"""Asia""" +2024-09-11,27002,99,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1870.37,"{\"": \""16%\""}",59162,0,"""Africa""" +2023-01-07,27003,513,"[\""Charger\"", \""Tablet\""]",3378.52,"{\""promo\"": \""28%\""}",226968,0,"""South America""" +2023-09-19,27004,8484,"[\""Wireless Mouse\""]",1439.75,"{\""seasonal\"": \""8%\""}",268329,0,"""South America""" +2024-04-21,27005,4793,"[\""Tablet\"", \""Charger\""]",4196.94,"{\"": \""15%\""}",200000,0,"""Asia""" +2024-10-08,27006,2282,"[\""Keyboard\""]",2233.57,{},14250,0,"""North America""" +2023-04-26,27007,5086,"[\""Laptop\"", \""Monitor\""]",3134.71,{},183331,1,"""South America""" +2024-01-05,27008,6126,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",519.53,"{\""seasonal\"": \""29%\""}",202252,0,"""North America""" +2024-08-07,27009,8233,"[\""Monitor\"", \""Charger\""]",4869.74,"{\""seasonal\"": \""8%\""}",211093,1,"""Asia""" +2024-10-09,27010,5500,"[\""Tablet\""]",1949.7,"{\""loyalty\"": \""5%\""}",43910,1,"""North America""" +2023-03-23,27011,5260,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",688.92,"{\""promo\"": \""17%\""}",281684,1,"""South America""" +2024-03-20,27012,9273,"[\""Headphones\""]",3728.86,{},123683,0,"""North America""" +2023-11-26,27013,8269,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",330.48,"{\""seasonal\"": \""16%\""}",138287,0,"""South America""" +2023-09-15,27014,5741,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1653.47,{},87127,1,"""Africa""" +2024-03-31,27015,6772,"[\""Headphones\""]",368.27,{},81297,0,"""North America""" +2024-02-22,27016,7904,"[\""Wireless Mouse\""]",2506.56,"{\"": \""20%\""}",97903,0,"""Asia""" +2024-11-18,27017,525,"[\""Laptop\"", \""Phone\""]",540.51,{},164820,1,"""Asia""" +2024-05-04,27018,6306,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3604.3,"{\""seasonal\"": \""22%\""}",95215,0,"""Europe""" +2024-02-19,27019,6758,"[\""Wireless Mouse\""]",4542.58,{},289755,1,"""Africa""" +2024-08-17,27020,1691,"[\""Laptop\""]",4745.63,"{\""promo\"": \""15%\""}",259167,1,"""Europe""" +2023-08-07,27021,865,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",801.54,{},45660,1,"""South America""" +2024-05-21,27022,184,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3136.96,{},253847,1,"""North America""" +2024-11-13,27023,4604,"[\""Keyboard\""]",3400.94,"{\""seasonal\"": \""25%\""}",4722,0,"""Europe""" +2023-10-13,27024,4431,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3261.81,{},290741,1,"""Africa""" +2023-08-31,27025,599,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1014.03,"{\"": \""27%\""}",183129,1,"""Africa""" +2023-09-15,27026,2024,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2291.11,{},58686,0,"""North America""" +2023-10-15,27027,7090,"[\""Laptop\""]",4220.79,"{\""promo\"": \""15%\""}",170127,1,"""Asia""" +2024-08-09,27028,6431,"[\""Headphones\""]",732.82,{},9260,0,"""Asia""" +2023-01-29,27029,9937,"[\""Monitor\"", \""Wireless Mouse\""]",3178.15,{},86961,0,"""Africa""" +2023-10-04,27030,6499,"[\""Wireless Mouse\"", \""Monitor\""]",1394.04,"{\"": \""26%\""}",90202,0,"""Asia""" +2024-08-01,27031,6837,"[\""Keyboard\""]",3811.46,"{\""promo\"": \""8%\""}",47012,1,"""Asia""" +2023-06-28,27032,8516,"[\""Laptop\"", \""Monitor\""]",2826.76,"{\""promo\"": \""11%\""}",170561,1,"""Africa""" +2023-01-10,27033,944,"[\""Monitor\""]",1968.29,{},267128,0,"""Africa""" +2024-11-10,27034,1171,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2693.24,"{\""seasonal\"": \""17%\""}",30330,0,"""South America""" +2024-10-20,27035,3824,"[\""Wireless Mouse\"", \""Charger\""]",4585.4,"{\""promo\"": \""10%\""}",84901,0,"""North America""" +2023-11-19,27036,9383,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2582.32,{},291223,1,"""Africa""" +2024-12-28,27037,8364,"[\""Monitor\""]",2588.69,{},269415,1,"""Africa""" +2024-11-28,27038,4523,"[\""Tablet\"", \""Headphones\""]",1067.87,{},33816,0,"""South America""" +2024-04-23,27039,2393,"[\""Charger\"", \""Tablet\""]",1684.64,{},221343,1,"""Asia""" +2023-06-24,27040,5198,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3457.05,{},4425,0,"""Asia""" +2024-08-17,27041,9118,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",914.83,"{\""loyalty\"": \""14%\""}",1739,0,"""South America""" +2023-06-20,27042,2214,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2790.24,"{\""loyalty\"": \""19%\""}",239580,0,"""North America""" +2024-11-26,27043,1805,"[\""Tablet\""]",469.96,{},156834,1,"""North America""" +2024-07-27,27044,4935,"[\""Monitor\"", \""Charger\""]",531.75,"{\""loyalty\"": \""24%\""}",128400,1,"""Africa""" +2024-10-20,27045,4229,"[\""Wireless Mouse\""]",1587.39,"{\""loyalty\"": \""22%\""}",267184,1,"""Africa""" +2023-06-05,27046,1289,"[\""Wireless Mouse\""]",3168.56,{},129775,1,"""South America""" +2024-06-22,27047,5527,"[\""Headphones\"", \""Keyboard\""]",2981.04,"{\""promo\"": \""12%\""}",117356,1,"""Asia""" +2024-01-30,27048,905,"[\""Phone\""]",4869.54,{},224166,0,"""North America""" +2024-10-02,27049,3220,"[\""Wireless Mouse\"", \""Laptop\""]",3875.27,{},218836,1,"""South America""" +2024-12-05,27050,8127,"[\""Phone\""]",2665.81,{},281429,0,"""North America""" +2024-02-22,27051,5855,"[\""Phone\""]",1575.68,"{\"": \""30%\""}",251812,1,"""Africa""" +2023-07-28,27052,1140,"[\""Wireless Mouse\"", \""Monitor\""]",3728.57,{},206541,1,"""North America""" +2023-09-05,27053,2111,"[\""Charger\"", \""Laptop\""]",2578.11,"{\""promo\"": \""21%\""}",289536,1,"""Asia""" +2024-05-27,27054,6075,"[\""Wireless Mouse\"", \""Laptop\""]",3263.12,{},147754,0,"""Asia""" +2023-11-20,27055,388,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4468.09,"{\""seasonal\"": \""11%\""}",278939,1,"""North America""" +2023-08-05,27056,5782,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2577.34,"{\""seasonal\"": \""5%\""}",173163,1,"""Africa""" +2024-01-01,27057,5529,"[\""Wireless Mouse\"", \""Tablet\""]",544.9,"{\""loyalty\"": \""10%\""}",127839,1,"""Europe""" +2023-06-15,27058,5213,"[\""Laptop\"", \""Keyboard\""]",3780.83,"{\""seasonal\"": \""11%\""}",189322,0,"""Europe""" +2024-07-20,27059,1945,"[\""Phone\""]",119.43,{},284961,0,"""North America""" +2024-10-05,27060,7581,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",847.87,{},57593,0,"""North America""" +2024-01-09,27061,8797,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3021.63,"{\"": \""27%\""}",3730,0,"""Asia""" +2024-01-15,27062,1741,"[\""Wireless Mouse\""]",586.11,"{\"": \""11%\""}",159862,1,"""North America""" +2024-04-22,27063,5443,"[\""Monitor\""]",2861.58,"{\""promo\"": \""27%\""}",31961,0,"""South America""" +2024-06-03,27064,9523,"[\""Charger\"", \""Laptop\""]",3755.23,{},248593,1,"""Asia""" +2023-10-09,27065,5955,"[\""Charger\""]",4151.75,"{\""promo\"": \""19%\""}",2267,1,"""South America""" +2024-05-30,27066,6852,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4216.14,{},101737,0,"""South America""" +2024-04-09,27067,7930,"[\""Keyboard\"", \""Tablet\""]",1502.5,"{\""seasonal\"": \""23%\""}",271695,1,"""North America""" +2024-04-21,27068,7180,"[\""Tablet\""]",243.92,{},108178,0,"""Africa""" +2023-01-17,27069,1879,"[\""Laptop\""]",945.58,"{\""loyalty\"": \""29%\""}",241481,1,"""South America""" +2023-10-06,27070,9815,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2561.07,{},46684,0,"""South America""" +2024-06-10,27071,4995,"[\""Headphones\""]",3458.95,"{\""promo\"": \""29%\""}",114992,1,"""Africa""" +2023-11-20,27072,844,"[\""Headphones\""]",2870.21,{},273322,0,"""Europe""" +2024-05-17,27073,1806,"[\""Keyboard\"", \""Tablet\""]",1954.72,"{\""loyalty\"": \""26%\""}",271054,0,"""Africa""" +2023-04-24,27074,4444,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4679.22,{},181980,1,"""North America""" +2023-11-14,27075,1902,"[\""Phone\"", \""Tablet\""]",3471.77,{},263208,1,"""South America""" +2024-07-22,27076,7705,"[\""Wireless Mouse\""]",2406.82,{},34666,1,"""Europe""" +2024-06-19,27077,8329,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4322.64,{},41134,0,"""North America""" +2024-12-11,27078,8622,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3712.44,{},26748,0,"""Africa""" +2024-01-31,27079,7410,"[\""Phone\"", \""Tablet\""]",4843.34,"{\""promo\"": \""25%\""}",204679,0,"""Asia""" +2024-07-06,27080,9970,"[\""Wireless Mouse\""]",2366.07,{},242332,1,"""Europe""" +2024-07-03,27081,2322,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2736.46,"{\"": \""15%\""}",17500,0,"""Asia""" +2023-05-01,27082,6314,"[\""Monitor\""]",3942.21,"{\"": \""25%\""}",108274,1,"""North America""" +2023-12-02,27083,7072,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",338.15,"{\"": \""9%\""}",160486,0,"""Africa""" +2023-07-31,27084,3972,"[\""Tablet\""]",4305.69,{},137485,1,"""South America""" +2023-02-03,27085,2071,"[\""Phone\""]",2988.41,"{\""seasonal\"": \""14%\""}",265774,0,"""Europe""" +2023-10-19,27086,8883,"[\""Tablet\"", \""Laptop\""]",849.73,{},89859,1,"""Europe""" +2023-06-28,27087,7022,"[\""Headphones\""]",3380.89,{},55265,1,"""Africa""" +2024-06-16,27088,4528,"[\""Monitor\""]",1411.34,"{\""seasonal\"": \""20%\""}",132664,1,"""North America""" +2023-10-14,27089,3408,"[\""Monitor\"", \""Keyboard\""]",3698.51,"{\"": \""9%\""}",272140,1,"""North America""" +2023-03-22,27090,288,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2295.62,"{\"": \""24%\""}",207188,1,"""North America""" +2023-06-19,27091,2130,"[\""Headphones\"", \""Keyboard\""]",4618.91,"{\""promo\"": \""24%\""}",4536,0,"""Africa""" +2023-12-30,27092,699,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4706.82,"{\""loyalty\"": \""16%\""}",202467,1,"""Europe""" +2024-05-09,27093,8270,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",692.29,{},248354,0,"""Africa""" +2024-01-14,27094,1996,"[\""Charger\"", \""Keyboard\""]",3034.46,"{\"": \""20%\""}",290364,0,"""Europe""" +2024-01-05,27095,6984,"[\""Laptop\"", \""Monitor\""]",4399.85,"{\""loyalty\"": \""20%\""}",298806,0,"""South America""" +2024-03-07,27096,2383,"[\""Keyboard\"", \""Monitor\""]",3254.39,"{\""loyalty\"": \""19%\""}",242181,0,"""South America""" +2024-11-10,27097,441,"[\""Charger\""]",2201.01,"{\""seasonal\"": \""24%\""}",2177,1,"""North America""" +2024-09-12,27098,652,"[\""Monitor\"", \""Phone\""]",3601.04,{},12208,1,"""Africa""" +2023-12-19,27099,1301,"[\""Wireless Mouse\""]",182.24,"{\"": \""30%\""}",47321,1,"""South America""" +2024-06-02,27100,8377,"[\""Charger\"", \""Phone\"", \""Monitor\""]",234.49,{},151469,1,"""Asia""" +2023-12-21,27101,2004,"[\""Phone\"", \""Charger\""]",3012.56,{},269714,1,"""North America""" +2024-03-28,27102,4192,"[\""Charger\""]",2797.38,"{\"": \""13%\""}",154124,1,"""North America""" +2023-04-11,27103,3264,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4899.03,{},165220,0,"""Africa""" +2024-04-07,27104,9808,"[\""Phone\"", \""Monitor\""]",2100.85,{},97407,0,"""Asia""" +2024-10-24,27105,1530,"[\""Headphones\"", \""Tablet\""]",1865.99,{},188893,1,"""North America""" +2023-12-20,27106,6043,"[\""Tablet\""]",1914.81,"{\"": \""28%\""}",133656,1,"""South America""" +2023-01-14,27107,1990,"[\""Phone\""]",3789.77,{},222011,1,"""South America""" +2023-08-10,27108,2909,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1874.31,{},13228,0,"""Asia""" +2024-05-18,27109,6125,"[\""Keyboard\"", \""Monitor\""]",3525.43,"{\""loyalty\"": \""11%\""}",166875,0,"""Asia""" +2024-07-21,27110,7364,"[\""Phone\"", \""Wireless Mouse\""]",521.39,"{\""seasonal\"": \""19%\""}",167968,0,"""Africa""" +2024-05-30,27111,9084,"[\""Monitor\"", \""Phone\""]",2405.73,{},173176,0,"""South America""" +2024-06-12,27112,910,"[\""Headphones\"", \""Laptop\""]",124.45,{},154258,0,"""Europe""" +2023-10-25,27113,5982,"[\""Charger\""]",1354.67,{},270174,0,"""North America""" +2023-07-25,27114,6988,"[\""Keyboard\"", \""Phone\""]",480.11,"{\""promo\"": \""11%\""}",188133,1,"""Africa""" +2024-10-12,27115,6146,"[\""Tablet\"", \""Laptop\""]",3569.18,"{\""loyalty\"": \""25%\""}",6593,0,"""Asia""" +2024-02-26,27116,2866,"[\""Charger\"", \""Laptop\""]",1762.78,"{\"": \""15%\""}",115445,1,"""North America""" +2024-10-05,27117,4437,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1215.16,{},33197,0,"""Asia""" +2024-09-06,27118,2043,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1119.29,{},142911,0,"""Asia""" +2024-09-08,27119,2912,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1786.93,"{\"": \""8%\""}",218013,1,"""Africa""" +2024-06-14,27120,2299,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3635.28,"{\"": \""21%\""}",113755,1,"""North America""" +2024-06-09,27121,9646,"[\""Wireless Mouse\""]",4089.34,{},56635,1,"""Europe""" +2024-10-12,27122,5367,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4991.98,{},83502,1,"""Europe""" +2024-11-29,27123,3130,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",490.57,"{\"": \""5%\""}",262728,0,"""Europe""" +2023-04-30,27124,1152,"[\""Tablet\"", \""Phone\""]",556.18,{},213463,1,"""Asia""" +2023-11-29,27125,1350,"[\""Headphones\""]",2573.61,"{\""seasonal\"": \""20%\""}",14912,0,"""North America""" +2024-07-26,27126,4004,"[\""Charger\""]",1626.08,"{\""seasonal\"": \""29%\""}",8993,1,"""Asia""" +2024-11-11,27127,2443,"[\""Headphones\"", \""Charger\""]",284.37,{},214357,1,"""Europe""" +2023-07-20,27128,5149,"[\""Keyboard\""]",4541.36,{},214071,1,"""North America""" +2024-01-13,27129,784,"[\""Monitor\"", \""Wireless Mouse\""]",4511.71,{},209156,1,"""North America""" +2023-10-23,27130,5524,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3316.45,{},3388,1,"""Europe""" +2023-06-18,27131,7852,"[\""Wireless Mouse\"", \""Charger\""]",637.16,{},257122,0,"""South America""" +2023-04-18,27132,4321,"[\""Wireless Mouse\"", \""Laptop\""]",2226.66,{},175099,1,"""Asia""" +2023-07-26,27133,545,"[\""Charger\"", \""Phone\""]",3338.86,"{\""seasonal\"": \""28%\""}",113537,1,"""Asia""" +2023-03-09,27134,579,"[\""Monitor\""]",115.12,{},271513,1,"""South America""" +2024-01-04,27135,2867,"[\""Wireless Mouse\"", \""Phone\""]",4155.3,"{\""seasonal\"": \""13%\""}",138584,0,"""Asia""" +2024-01-01,27136,7382,"[\""Tablet\"", \""Charger\""]",2425.37,{},181927,1,"""South America""" +2024-07-28,27137,7475,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2936.29,"{\""promo\"": \""20%\""}",120247,0,"""Africa""" +2023-05-29,27138,9984,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2779.27,"{\""promo\"": \""24%\""}",102373,0,"""South America""" +2024-08-09,27139,3602,"[\""Phone\"", \""Keyboard\""]",1321.0,"{\""promo\"": \""23%\""}",207716,0,"""Europe""" +2024-07-02,27140,5393,"[\""Charger\""]",3010.34,"{\""seasonal\"": \""21%\""}",116906,0,"""Africa""" +2024-04-02,27141,3649,"[\""Tablet\"", \""Phone\""]",1505.22,{},285310,1,"""Europe""" +2023-03-20,27142,2354,"[\""Laptop\""]",3680.85,{},65454,1,"""Europe""" +2024-03-10,27143,1380,"[\""Wireless Mouse\"", \""Charger\""]",4370.98,{},292118,1,"""Asia""" +2023-05-25,27144,8885,"[\""Phone\"", \""Keyboard\""]",3069.72,{},242097,1,"""Africa""" +2023-07-06,27145,6522,"[\""Keyboard\"", \""Tablet\""]",3943.61,"{\""promo\"": \""22%\""}",189287,1,"""Asia""" +2024-12-21,27146,8588,"[\""Phone\""]",1934.08,{},155766,1,"""Asia""" +2023-11-29,27147,8645,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1022.06,"{\"": \""13%\""}",184700,1,"""Africa""" +2024-03-09,27148,2969,"[\""Charger\"", \""Phone\""]",1298.72,{},281702,1,"""Africa""" +2023-11-02,27149,443,"[\""Charger\"", \""Monitor\""]",823.34,"{\""seasonal\"": \""6%\""}",291470,0,"""Asia""" +2024-01-28,27150,4868,"[\""Keyboard\"", \""Monitor\""]",1313.47,"{\""seasonal\"": \""15%\""}",41205,0,"""Asia""" +2024-08-07,27151,4827,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2163.96,{},171638,1,"""North America""" +2024-12-28,27152,6822,"[\""Headphones\"", \""Charger\""]",1110.49,{},79710,1,"""Africa""" +2024-01-26,27153,6697,"[\""Tablet\""]",4408.78,"{\""promo\"": \""28%\""}",129070,1,"""Europe""" +2023-09-30,27154,8636,"[\""Headphones\""]",4674.81,{},277254,0,"""North America""" +2023-11-26,27155,364,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2492.67,{},187115,0,"""Europe""" +2023-06-22,27156,7369,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",959.36,{},217090,0,"""North America""" +2024-12-21,27157,2538,"[\""Keyboard\""]",3768.43,"{\"": \""9%\""}",140969,1,"""North America""" +2024-07-16,27158,2452,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2859.92,"{\""loyalty\"": \""15%\""}",96037,1,"""North America""" +2023-09-04,27159,9242,"[\""Charger\"", \""Wireless Mouse\""]",572.27,{},251819,0,"""Europe""" +2024-06-19,27160,5626,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3439.1,{},61359,1,"""Asia""" +2024-01-18,27161,5965,"[\""Keyboard\"", \""Phone\""]",4394.24,"{\""loyalty\"": \""28%\""}",180460,0,"""Asia""" +2023-06-18,27162,1617,"[\""Laptop\""]",2859.03,{},167983,0,"""Europe""" +2023-10-04,27163,3299,"[\""Headphones\"", \""Keyboard\""]",1935.91,{},19354,1,"""Africa""" +2024-06-27,27164,9494,"[\""Monitor\"", \""Headphones\""]",3350.11,{},289737,0,"""Asia""" +2024-01-03,27165,1855,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3377.08,{},271119,0,"""North America""" +2024-03-15,27166,8152,"[\""Phone\""]",1401.61,{},154110,0,"""Asia""" +2024-11-17,27167,8397,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",350.67,{},143388,1,"""North America""" +2024-02-24,27168,4613,"[\""Monitor\"", \""Tablet\""]",3643.22,{},250120,0,"""Europe""" +2023-12-09,27169,8586,"[\""Wireless Mouse\""]",4071.5,"{\"": \""9%\""}",61615,0,"""Europe""" +2024-06-20,27170,6074,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3448.66,{},258616,1,"""Europe""" +2023-05-11,27171,797,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",671.73,{},190835,1,"""South America""" +2023-12-14,27172,208,"[\""Keyboard\""]",1941.42,{},248505,1,"""Europe""" +2024-06-07,27173,6709,"[\""Tablet\""]",493.68,{},15727,0,"""North America""" +2023-01-12,27174,9722,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3935.6,"{\""promo\"": \""17%\""}",188458,0,"""Europe""" +2023-01-21,27175,2188,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2476.45,"{\"": \""10%\""}",48786,0,"""North America""" +2024-03-26,27176,6444,"[\""Monitor\"", \""Phone\""]",4467.12,{},269207,1,"""Europe""" +2024-04-08,27177,6791,"[\""Keyboard\"", \""Laptop\""]",1183.13,{},102430,0,"""South America""" +2023-11-15,27178,1515,"[\""Tablet\""]",1803.72,{},116500,0,"""North America""" +2023-07-30,27179,1585,"[\""Monitor\""]",4150.23,{},296697,1,"""Asia""" +2023-09-23,27180,1689,"[\""Charger\""]",4518.04,"{\""promo\"": \""24%\""}",62522,0,"""South America""" +2024-09-12,27181,2496,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3850.39,"{\"": \""28%\""}",120434,0,"""South America""" +2023-11-12,27182,8482,"[\""Tablet\""]",860.99,"{\""promo\"": \""17%\""}",221065,0,"""Europe""" +2024-07-30,27183,1757,"[\""Headphones\"", \""Monitor\""]",787.02,{},114304,0,"""Europe""" +2023-04-03,27184,1013,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4030.84,{},230524,0,"""North America""" +2024-12-10,27185,8956,"[\""Keyboard\""]",3173.26,"{\"": \""18%\""}",165481,0,"""Asia""" +2023-04-16,27186,819,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4401.1,{},175004,1,"""North America""" +2024-12-22,27187,7588,"[\""Phone\""]",1264.16,"{\""loyalty\"": \""18%\""}",183263,1,"""Europe""" +2024-11-23,27188,4107,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3914.56,"{\""loyalty\"": \""30%\""}",197224,1,"""Asia""" +2024-05-15,27189,9882,"[\""Monitor\""]",4734.88,"{\""loyalty\"": \""11%\""}",42287,0,"""South America""" +2023-05-08,27190,4770,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3531.23,{},22241,1,"""Europe""" +2023-05-30,27191,8340,"[\""Wireless Mouse\""]",1255.42,"{\"": \""26%\""}",46112,1,"""Europe""" +2023-05-27,27192,9641,"[\""Headphones\""]",709.36,{},223786,1,"""North America""" +2024-11-25,27193,5716,"[\""Charger\""]",4086.57,{},35152,0,"""Asia""" +2023-12-22,27194,5228,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3409.92,"{\""seasonal\"": \""13%\""}",70398,1,"""South America""" +2023-02-22,27195,7956,"[\""Keyboard\""]",1152.35,"{\""loyalty\"": \""29%\""}",151577,0,"""North America""" +2023-10-20,27196,7659,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1236.83,{},260550,1,"""Africa""" +2023-10-05,27197,8894,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2264.95,"{\""promo\"": \""17%\""}",105296,1,"""Europe""" +2024-11-22,27198,8449,"[\""Headphones\"", \""Charger\""]",1792.63,"{\""seasonal\"": \""23%\""}",265606,1,"""Europe""" +2024-10-05,27199,5656,"[\""Charger\""]",4652.44,{},174756,1,"""Africa""" +2023-12-31,27200,6906,"[\""Keyboard\"", \""Charger\""]",1881.65,{},149100,1,"""North America""" +2024-04-13,27201,9685,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2636.34,{},290681,1,"""Europe""" +2024-06-20,27202,3561,"[\""Tablet\"", \""Phone\""]",3609.64,{},63502,1,"""Africa""" +2024-03-22,27203,3449,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",580.11,"{\""promo\"": \""17%\""}",146511,0,"""North America""" +2023-03-19,27204,8056,"[\""Monitor\"", \""Laptop\""]",4073.04,{},164583,1,"""Asia""" +2024-10-11,27205,3298,"[\""Keyboard\""]",2712.72,{},209399,0,"""South America""" +2024-01-22,27206,2820,"[\""Tablet\"", \""Laptop\""]",2269.45,"{\""loyalty\"": \""20%\""}",68641,0,"""Europe""" +2023-09-23,27207,476,"[\""Wireless Mouse\""]",3343.16,"{\"": \""6%\""}",160851,1,"""South America""" +2024-06-10,27208,6304,"[\""Monitor\""]",142.5,{},12104,0,"""North America""" +2023-01-03,27209,1090,"[\""Charger\""]",1263.79,{},155434,1,"""South America""" +2024-12-30,27210,8522,"[\""Laptop\"", \""Headphones\""]",2135.87,"{\""loyalty\"": \""14%\""}",199046,0,"""Asia""" +2023-06-21,27211,1975,"[\""Tablet\""]",3327.08,"{\""seasonal\"": \""20%\""}",280814,0,"""Europe""" +2024-02-17,27212,8903,"[\""Tablet\""]",158.61,{},207227,0,"""North America""" +2024-07-30,27213,2078,"[\""Charger\""]",4894.23,{},115291,0,"""Africa""" +2024-01-17,27214,6871,"[\""Headphones\""]",2241.04,{},192399,1,"""Africa""" +2024-07-29,27215,1141,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",856.3,{},131872,0,"""Asia""" +2024-04-18,27216,5915,"[\""Laptop\""]",4619.78,"{\""promo\"": \""19%\""}",65224,0,"""Asia""" +2024-04-15,27217,2556,"[\""Keyboard\""]",700.93,{},7812,1,"""North America""" +2023-12-05,27218,2890,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",832.22,"{\"": \""12%\""}",299629,0,"""North America""" +2024-03-02,27219,9252,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1710.49,"{\""promo\"": \""19%\""}",154108,0,"""Asia""" +2023-09-13,27220,9829,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4958.35,"{\"": \""21%\""}",217499,0,"""South America""" +2024-11-23,27221,6303,"[\""Wireless Mouse\""]",1136.18,{},276916,1,"""North America""" +2023-04-14,27222,9955,"[\""Phone\"", \""Headphones\""]",3704.95,{},126182,1,"""Asia""" +2023-05-22,27223,8471,"[\""Phone\""]",1355.53,"{\""seasonal\"": \""12%\""}",141337,1,"""Asia""" +2023-09-14,27224,3705,"[\""Keyboard\""]",837.59,{},76556,1,"""South America""" +2024-01-10,27225,284,"[\""Charger\""]",4597.16,"{\"": \""24%\""}",281886,1,"""North America""" +2024-06-02,27226,359,"[\""Headphones\""]",3031.47,{},153052,1,"""Asia""" +2024-03-03,27227,8523,"[\""Phone\""]",4494.22,"{\""promo\"": \""24%\""}",98018,1,"""Europe""" +2024-05-29,27228,6732,"[\""Tablet\"", \""Wireless Mouse\""]",3173.65,"{\""seasonal\"": \""30%\""}",279626,1,"""Africa""" +2024-05-06,27229,3105,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4537.13,{},260236,1,"""Africa""" +2023-03-18,27230,7211,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4849.77,"{\"": \""5%\""}",163311,1,"""Europe""" +2023-01-22,27231,1960,"[\""Wireless Mouse\""]",458.34,"{\""loyalty\"": \""9%\""}",165991,1,"""Europe""" +2023-08-04,27232,3285,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3138.86,"{\""seasonal\"": \""8%\""}",193731,0,"""North America""" +2024-02-20,27233,4604,"[\""Monitor\""]",3398.97,{},28394,0,"""Europe""" +2023-11-03,27234,3632,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",605.62,"{\""loyalty\"": \""11%\""}",109687,0,"""South America""" +2024-08-22,27235,1429,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1431.02,{},244629,0,"""Africa""" +2023-03-05,27236,1114,"[\""Phone\""]",4417.76,"{\""seasonal\"": \""15%\""}",246675,0,"""Asia""" +2023-10-29,27237,7247,"[\""Wireless Mouse\"", \""Headphones\""]",4659.31,"{\""seasonal\"": \""24%\""}",62313,0,"""South America""" +2024-05-23,27238,5,"[\""Monitor\""]",562.83,"{\""promo\"": \""21%\""}",144357,1,"""Asia""" +2023-02-21,27239,9189,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",343.86,{},193790,0,"""Africa""" +2024-05-05,27240,6017,"[\""Phone\""]",1332.65,{},220891,0,"""North America""" +2023-08-07,27241,678,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1806.76,"{\""loyalty\"": \""29%\""}",214472,0,"""Africa""" +2023-03-02,27242,7248,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3785.57,"{\""promo\"": \""21%\""}",123024,1,"""Europe""" +2024-07-17,27243,7633,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4081.61,"{\""loyalty\"": \""16%\""}",271834,1,"""Europe""" +2024-06-06,27244,6603,"[\""Phone\"", \""Charger\""]",2289.28,{},33366,1,"""Africa""" +2024-02-17,27245,5600,"[\""Charger\"", \""Laptop\""]",4551.18,{},76931,1,"""South America""" +2024-01-22,27246,1177,"[\""Wireless Mouse\"", \""Laptop\""]",1544.46,"{\""seasonal\"": \""12%\""}",59342,0,"""South America""" +2024-01-29,27247,6948,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2840.24,"{\""loyalty\"": \""14%\""}",81962,0,"""Africa""" +2023-11-26,27248,4539,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2791.97,{},111510,1,"""North America""" +2024-10-03,27249,5556,"[\""Laptop\""]",4015.94,{},228255,0,"""North America""" +2024-08-12,27250,3982,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3577.39,"{\""seasonal\"": \""17%\""}",290231,0,"""Asia""" +2024-10-05,27251,6546,"[\""Charger\""]",3310.61,"{\""loyalty\"": \""20%\""}",188045,0,"""North America""" +2024-04-02,27252,3337,"[\""Keyboard\"", \""Charger\""]",2641.84,{},100065,0,"""Africa""" +2023-01-24,27253,207,"[\""Keyboard\"", \""Laptop\""]",3550.06,{},82686,1,"""Asia""" +2023-01-14,27254,4637,"[\""Keyboard\""]",122.22,{},103708,1,"""South America""" +2024-05-06,27255,7408,"[\""Tablet\""]",575.51,{},22668,1,"""South America""" +2023-09-23,27256,1302,"[\""Charger\""]",614.06,"{\""promo\"": \""18%\""}",12006,0,"""Europe""" +2023-08-01,27257,7626,"[\""Phone\""]",3287.64,"{\""seasonal\"": \""11%\""}",49871,1,"""North America""" +2024-11-03,27258,717,"[\""Headphones\"", \""Keyboard\""]",1308.16,{},101804,0,"""Asia""" +2024-04-13,27259,7570,"[\""Keyboard\""]",3438.01,{},271172,1,"""Asia""" +2024-08-08,27260,2651,"[\""Phone\"", \""Charger\"", \""Laptop\""]",537.31,{},170146,0,"""North America""" +2023-02-24,27261,1390,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4152.69,{},153026,0,"""Africa""" +2023-12-11,27262,5256,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1019.65,{},200341,1,"""Africa""" +2024-02-03,27263,9233,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1029.25,"{\""loyalty\"": \""20%\""}",206482,0,"""North America""" +2024-09-20,27264,8420,"[\""Laptop\"", \""Headphones\""]",3436.52,"{\""seasonal\"": \""17%\""}",207669,1,"""South America""" +2023-03-22,27265,2671,"[\""Monitor\"", \""Phone\""]",4333.2,"{\""seasonal\"": \""17%\""}",239091,0,"""Europe""" +2024-12-08,27266,8424,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",478.25,"{\""promo\"": \""15%\""}",169702,0,"""South America""" +2024-05-03,27267,9782,"[\""Phone\""]",567.24,{},193873,1,"""Europe""" +2023-12-24,27268,8001,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3049.99,{},274335,1,"""South America""" +2024-05-03,27269,2074,"[\""Charger\"", \""Headphones\""]",1360.15,{},177482,1,"""South America""" +2023-12-25,27270,2387,"[\""Wireless Mouse\"", \""Keyboard\""]",2577.55,{},247002,1,"""Asia""" +2023-12-05,27271,3153,"[\""Wireless Mouse\""]",4301.85,"{\""seasonal\"": \""12%\""}",55967,1,"""South America""" +2023-12-22,27272,5512,"[\""Charger\"", \""Keyboard\""]",2185.84,"{\"": \""21%\""}",54869,0,"""North America""" +2024-12-13,27273,850,"[\""Laptop\"", \""Headphones\""]",3041.86,{},255008,0,"""Africa""" +2024-08-26,27274,4193,"[\""Monitor\"", \""Wireless Mouse\""]",306.1,"{\""promo\"": \""11%\""}",33422,0,"""Asia""" +2023-04-27,27275,872,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1698.61,"{\""promo\"": \""23%\""}",274033,1,"""Asia""" +2023-03-30,27276,9638,"[\""Charger\"", \""Laptop\""]",2132.24,{},123676,1,"""South America""" +2024-10-16,27277,8387,"[\""Laptop\""]",79.53,"{\""promo\"": \""25%\""}",181480,1,"""Europe""" +2023-05-20,27278,6822,"[\""Phone\"", \""Wireless Mouse\""]",2307.89,"{\""seasonal\"": \""7%\""}",217340,0,"""Europe""" +2024-09-05,27279,459,"[\""Tablet\""]",4842.52,{},245597,1,"""North America""" +2023-12-22,27280,1603,"[\""Monitor\"", \""Laptop\""]",815.86,{},149912,1,"""Asia""" +2023-10-01,27281,4927,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3632.81,"{\""loyalty\"": \""24%\""}",23388,1,"""Asia""" +2023-12-24,27282,7366,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2745.94,{},153219,0,"""Asia""" +2024-07-09,27283,1748,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2424.7,"{\""loyalty\"": \""23%\""}",278982,1,"""Europe""" +2024-05-03,27284,9145,"[\""Monitor\"", \""Phone\""]",1445.85,{},209093,1,"""Asia""" +2024-05-08,27285,5438,"[\""Monitor\""]",1075.35,"{\""seasonal\"": \""27%\""}",103009,0,"""South America""" +2024-03-17,27286,1865,"[\""Monitor\""]",4515.8,"{\""loyalty\"": \""13%\""}",292467,0,"""Africa""" +2024-12-03,27287,8703,"[\""Keyboard\"", \""Headphones\""]",2348.48,{},185578,0,"""Asia""" +2023-12-26,27288,3737,"[\""Tablet\"", \""Charger\""]",1801.0,{},294820,1,"""Africa""" +2023-12-04,27289,517,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2946.36,{},246429,1,"""South America""" +2023-06-21,27290,9707,"[\""Phone\"", \""Wireless Mouse\""]",2293.41,{},83051,1,"""South America""" +2023-11-02,27291,5507,"[\""Keyboard\""]",4723.48,{},292922,0,"""South America""" +2023-06-14,27292,9689,"[\""Monitor\""]",1099.03,"{\""loyalty\"": \""6%\""}",188915,0,"""Europe""" +2024-12-19,27293,163,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4793.89,{},48878,1,"""Asia""" +2024-08-27,27294,6662,"[\""Wireless Mouse\"", \""Laptop\""]",4679.71,{},135161,0,"""Asia""" +2023-09-11,27295,8677,"[\""Laptop\""]",2792.25,"{\"": \""9%\""}",190046,1,"""Africa""" +2023-12-20,27296,2834,"[\""Laptop\""]",2971.67,{},256258,1,"""Africa""" +2023-01-31,27297,2370,"[\""Charger\"", \""Phone\""]",1525.82,"{\""promo\"": \""17%\""}",154511,0,"""Africa""" +2024-02-05,27298,4368,"[\""Monitor\""]",201.05,"{\""seasonal\"": \""29%\""}",113505,1,"""Europe""" +2023-09-18,27299,8765,"[\""Monitor\""]",3059.46,"{\""loyalty\"": \""23%\""}",130496,1,"""North America""" +2023-12-12,27300,8461,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2015.78,{},235286,1,"""North America""" +2023-10-21,27301,8855,"[\""Headphones\""]",2359.07,{},117868,1,"""Africa""" +2024-07-17,27302,3924,"[\""Phone\"", \""Tablet\""]",363.17,"{\""loyalty\"": \""23%\""}",1045,1,"""Europe""" +2023-12-22,27303,157,"[\""Charger\""]",372.57,"{\"": \""29%\""}",205463,0,"""South America""" +2024-12-26,27304,8502,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4503.93,"{\""seasonal\"": \""19%\""}",236229,1,"""Africa""" +2023-12-01,27305,821,"[\""Laptop\""]",2712.28,"{\""loyalty\"": \""25%\""}",110717,0,"""North America""" +2024-11-23,27306,4426,"[\""Keyboard\""]",598.53,{},258757,0,"""North America""" +2023-02-16,27307,3219,"[\""Keyboard\"", \""Tablet\""]",4039.36,{},1566,0,"""Europe""" +2024-05-09,27308,1355,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1442.26,"{\"": \""16%\""}",162159,0,"""South America""" +2024-03-29,27309,1292,"[\""Charger\"", \""Headphones\""]",540.48,{},285909,0,"""Africa""" +2024-08-28,27310,3471,"[\""Monitor\""]",3709.86,{},114611,0,"""South America""" +2024-03-15,27311,8207,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2545.63,{},216224,1,"""South America""" +2023-01-22,27312,6784,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2916.26,"{\""promo\"": \""8%\""}",16719,0,"""Europe""" +2023-04-14,27313,8087,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4290.04,"{\"": \""11%\""}",173920,1,"""Europe""" +2023-10-18,27314,4238,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4627.77,"{\"": \""30%\""}",285947,0,"""Africa""" +2023-02-16,27315,9213,"[\""Monitor\"", \""Keyboard\""]",1529.41,{},195120,1,"""South America""" +2024-06-01,27316,3478,"[\""Monitor\"", \""Phone\""]",3505.14,{},213355,0,"""South America""" +2024-09-09,27317,5705,"[\""Phone\""]",2161.17,{},110974,0,"""Asia""" +2023-06-14,27318,9175,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2505.21,{},223289,0,"""Europe""" +2023-06-13,27319,2704,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2540.75,{},256913,1,"""Europe""" +2024-09-29,27320,1052,"[\""Phone\"", \""Keyboard\""]",3702.58,"{\""loyalty\"": \""19%\""}",8858,1,"""Europe""" +2024-01-14,27321,244,"[\""Charger\"", \""Wireless Mouse\""]",2836.46,{},100307,0,"""Africa""" +2024-01-12,27322,3089,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",650.1,"{\""loyalty\"": \""19%\""}",164054,1,"""Africa""" +2023-08-21,27323,5252,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3051.27,{},287694,1,"""North America""" +2024-06-15,27324,1820,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1004.8,"{\"": \""10%\""}",204799,1,"""Africa""" +2023-02-24,27325,4866,"[\""Monitor\""]",760.35,"{\""promo\"": \""11%\""}",150785,1,"""South America""" +2023-11-28,27326,2964,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4554.84,"{\"": \""12%\""}",91621,0,"""Africa""" +2023-03-27,27327,7241,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4428.77,"{\""promo\"": \""17%\""}",34952,0,"""Africa""" +2023-04-18,27328,2958,"[\""Tablet\"", \""Wireless Mouse\""]",4125.92,{},179749,1,"""Asia""" +2024-08-13,27329,151,"[\""Phone\""]",1517.94,"{\"": \""29%\""}",34460,0,"""Europe""" +2024-12-12,27330,484,"[\""Charger\""]",3086.77,"{\""loyalty\"": \""14%\""}",209407,0,"""Asia""" +2023-04-06,27331,1848,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4692.31,{},291972,1,"""Europe""" +2023-10-13,27332,1213,"[\""Laptop\""]",4369.65,"{\""seasonal\"": \""22%\""}",167486,0,"""Africa""" +2024-07-09,27333,2874,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1725.33,"{\""promo\"": \""26%\""}",118160,1,"""Asia""" +2024-12-23,27334,5323,"[\""Monitor\""]",4468.92,{},257952,0,"""North America""" +2024-05-14,27335,4327,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2135.33,"{\"": \""22%\""}",172279,1,"""Asia""" +2024-02-10,27336,3409,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",970.82,"{\""promo\"": \""18%\""}",220810,0,"""Africa""" +2024-06-23,27337,889,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1094.12,"{\""seasonal\"": \""9%\""}",199821,1,"""Africa""" +2024-06-20,27338,5931,"[\""Keyboard\"", \""Headphones\""]",3018.76,{},134797,0,"""Europe""" +2023-11-11,27339,2768,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",899.57,"{\""seasonal\"": \""13%\""}",148673,1,"""Europe""" +2024-04-12,27340,7214,"[\""Charger\"", \""Wireless Mouse\""]",130.73,"{\""promo\"": \""28%\""}",283271,0,"""North America""" +2023-09-18,27341,4681,"[\""Headphones\"", \""Monitor\""]",1555.13,"{\""promo\"": \""8%\""}",26546,0,"""Asia""" +2024-02-21,27342,9721,"[\""Monitor\"", \""Keyboard\""]",260.12,{},220334,1,"""Africa""" +2024-08-16,27343,7198,"[\""Phone\""]",4725.67,"{\""promo\"": \""16%\""}",157479,1,"""Europe""" +2024-12-27,27344,9451,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3759.23,{},21009,1,"""Asia""" +2023-01-24,27345,1501,"[\""Laptop\""]",1233.81,{},90694,1,"""Africa""" +2024-11-15,27346,5594,"[\""Phone\"", \""Wireless Mouse\""]",832.55,{},194862,1,"""Africa""" +2024-04-23,27347,3422,"[\""Tablet\""]",633.07,"{\""promo\"": \""11%\""}",84125,1,"""North America""" +2024-03-28,27348,7903,"[\""Monitor\""]",2525.8,{},289009,1,"""Europe""" +2024-10-15,27349,5613,"[\""Headphones\""]",2350.65,"{\""loyalty\"": \""13%\""}",108991,0,"""Africa""" +2024-07-23,27350,3628,"[\""Keyboard\""]",423.26,{},77807,0,"""South America""" +2023-07-19,27351,3714,"[\""Headphones\"", \""Wireless Mouse\""]",2719.49,{},38509,0,"""Asia""" +2024-03-21,27352,3847,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",143.95,"{\"": \""6%\""}",268117,1,"""Europe""" +2024-03-03,27353,9112,"[\""Charger\""]",2432.19,"{\""seasonal\"": \""27%\""}",213497,0,"""Europe""" +2023-10-19,27354,3205,"[\""Monitor\"", \""Laptop\""]",1586.64,"{\"": \""16%\""}",246754,0,"""South America""" +2024-02-08,27355,2912,"[\""Laptop\""]",919.5,"{\""seasonal\"": \""6%\""}",64150,1,"""Africa""" +2024-10-23,27356,3222,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2743.81,"{\""seasonal\"": \""18%\""}",166043,0,"""Africa""" +2024-06-08,27357,6720,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2926.63,{},295987,1,"""Asia""" +2023-09-28,27358,9374,"[\""Charger\"", \""Keyboard\""]",770.99,{},105582,1,"""North America""" +2024-05-25,27359,4418,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2900.18,"{\""seasonal\"": \""16%\""}",149886,0,"""Europe""" +2023-06-24,27360,5236,"[\""Charger\"", \""Monitor\""]",974.77,{},181631,1,"""South America""" +2023-02-12,27361,6647,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1505.79,{},241451,0,"""North America""" +2023-01-22,27362,9649,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2621.71,{},34311,1,"""Europe""" +2023-07-22,27363,9371,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4769.96,"{\"": \""21%\""}",200790,0,"""South America""" +2023-12-14,27364,3722,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4557.83,"{\""loyalty\"": \""17%\""}",150908,0,"""South America""" +2023-07-14,27365,4958,"[\""Charger\"", \""Keyboard\""]",2845.45,{},139256,0,"""Africa""" +2023-03-26,27366,292,"[\""Phone\"", \""Headphones\""]",4269.67,"{\""promo\"": \""7%\""}",258716,1,"""Asia""" +2023-08-07,27367,5100,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2584.92,"{\""seasonal\"": \""22%\""}",70591,0,"""Africa""" +2023-01-16,27368,7773,"[\""Headphones\""]",289.68,"{\""seasonal\"": \""25%\""}",62823,0,"""North America""" +2024-07-24,27369,7936,"[\""Tablet\"", \""Charger\""]",2435.58,{},35034,1,"""South America""" +2024-12-13,27370,5140,"[\""Charger\"", \""Phone\""]",151.51,{},273509,1,"""Asia""" +2024-10-21,27371,4680,"[\""Wireless Mouse\"", \""Tablet\""]",3699.4,"{\""promo\"": \""26%\""}",8708,0,"""Europe""" +2024-11-17,27372,7954,"[\""Tablet\"", \""Keyboard\""]",1610.14,{},267585,1,"""South America""" +2024-10-06,27373,4442,"[\""Keyboard\""]",2545.47,{},8556,0,"""Africa""" +2024-06-13,27374,1189,"[\""Wireless Mouse\"", \""Tablet\""]",4996.25,"{\""loyalty\"": \""7%\""}",202281,0,"""North America""" +2024-11-20,27375,3474,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1662.59,{},163571,0,"""South America""" +2023-04-04,27376,6009,"[\""Tablet\""]",4390.64,"{\""loyalty\"": \""5%\""}",285223,1,"""North America""" +2024-06-13,27377,7049,"[\""Monitor\"", \""Keyboard\""]",4874.14,"{\""promo\"": \""25%\""}",134386,1,"""North America""" +2024-01-04,27378,6994,"[\""Keyboard\""]",2860.12,{},37061,0,"""Africa""" +2023-11-02,27379,4555,"[\""Phone\"", \""Keyboard\""]",1776.47,{},124389,0,"""Asia""" +2023-01-14,27380,5797,"[\""Laptop\"", \""Charger\""]",2205.33,"{\""loyalty\"": \""8%\""}",247564,0,"""Asia""" +2023-11-01,27381,412,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1024.64,"{\""promo\"": \""29%\""}",203800,1,"""Asia""" +2024-04-07,27382,7572,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3688.0,{},119924,1,"""South America""" +2024-07-31,27383,920,"[\""Keyboard\"", \""Phone\""]",2286.3,"{\"": \""23%\""}",61519,1,"""North America""" +2023-04-23,27384,3022,"[\""Wireless Mouse\""]",2899.77,{},267823,0,"""Asia""" +2024-03-11,27385,161,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3191.64,"{\"": \""8%\""}",125124,1,"""Africa""" +2024-07-28,27386,7551,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2338.37,"{\""loyalty\"": \""26%\""}",161994,1,"""North America""" +2024-06-20,27387,704,"[\""Monitor\"", \""Tablet\""]",541.83,"{\""loyalty\"": \""27%\""}",47298,1,"""Africa""" +2024-01-29,27388,1083,"[\""Headphones\"", \""Charger\""]",4996.45,"{\""promo\"": \""29%\""}",206944,0,"""Africa""" +2023-11-08,27389,5071,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",653.0,"{\""loyalty\"": \""7%\""}",25583,1,"""Africa""" +2024-11-07,27390,5666,"[\""Keyboard\""]",1076.36,"{\""promo\"": \""19%\""}",211689,1,"""Asia""" +2024-05-12,27391,7662,"[\""Charger\""]",2085.96,{},187714,1,"""Asia""" +2023-03-30,27392,4224,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4235.44,"{\""promo\"": \""8%\""}",279500,1,"""Asia""" +2024-09-20,27393,9882,"[\""Phone\""]",4201.5,"{\""seasonal\"": \""20%\""}",11946,1,"""Europe""" +2024-04-01,27394,6038,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3672.98,{},7240,0,"""Asia""" +2024-01-01,27395,7187,"[\""Headphones\""]",2075.42,"{\""seasonal\"": \""27%\""}",249540,0,"""Asia""" +2023-05-15,27396,8211,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3983.6,{},52446,0,"""North America""" +2023-09-17,27397,5352,"[\""Laptop\"", \""Headphones\""]",1479.17,{},70569,1,"""South America""" +2023-07-12,27398,8835,"[\""Wireless Mouse\"", \""Charger\""]",2012.76,{},128149,0,"""North America""" +2023-12-02,27399,6524,"[\""Phone\""]",732.62,"{\""loyalty\"": \""12%\""}",23299,0,"""North America""" +2023-12-06,27400,4027,"[\""Charger\""]",4230.91,"{\""loyalty\"": \""22%\""}",111141,0,"""Africa""" +2023-03-02,27401,1869,"[\""Laptop\""]",3843.47,"{\""loyalty\"": \""16%\""}",17300,0,"""North America""" +2024-01-08,27402,3169,"[\""Headphones\""]",1464.47,"{\""seasonal\"": \""17%\""}",161973,0,"""Europe""" +2023-01-10,27403,4523,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",353.47,{},15967,1,"""North America""" +2023-03-28,27404,2159,"[\""Laptop\"", \""Wireless Mouse\""]",3480.64,"{\""loyalty\"": \""27%\""}",248609,0,"""North America""" +2023-12-24,27405,4304,"[\""Wireless Mouse\""]",949.52,{},83476,1,"""South America""" +2024-07-30,27406,5527,"[\""Wireless Mouse\"", \""Keyboard\""]",4521.62,{},251549,1,"""Europe""" +2023-09-04,27407,7493,"[\""Charger\""]",4974.62,"{\"": \""26%\""}",17706,1,"""North America""" +2024-03-14,27408,3521,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3130.83,"{\""seasonal\"": \""27%\""}",187427,0,"""Europe""" +2023-10-26,27409,9370,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4579.21,"{\""promo\"": \""30%\""}",243640,1,"""South America""" +2023-12-22,27410,6493,"[\""Monitor\""]",3970.91,{},91101,0,"""Europe""" +2023-11-10,27411,9649,"[\""Laptop\""]",285.55,{},222301,0,"""South America""" +2023-07-06,27412,6667,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1679.11,"{\""promo\"": \""25%\""}",262937,1,"""Africa""" +2023-11-23,27413,5117,"[\""Charger\""]",993.5,"{\""loyalty\"": \""15%\""}",254005,0,"""Africa""" +2024-02-27,27414,854,"[\""Phone\""]",3244.62,{},133143,0,"""South America""" +2023-11-06,27415,3442,"[\""Keyboard\"", \""Laptop\""]",1865.67,"{\""loyalty\"": \""7%\""}",280834,1,"""South America""" +2024-10-21,27416,3279,"[\""Monitor\"", \""Keyboard\""]",1379.68,"{\""loyalty\"": \""29%\""}",238098,0,"""South America""" +2023-03-10,27417,1669,"[\""Phone\"", \""Wireless Mouse\""]",1186.09,"{\""promo\"": \""30%\""}",283712,1,"""Europe""" +2023-10-21,27418,9411,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2639.63,"{\"": \""24%\""}",293144,1,"""Europe""" +2023-01-08,27419,7290,"[\""Keyboard\"", \""Headphones\""]",778.55,"{\"": \""27%\""}",251976,0,"""North America""" +2024-04-04,27420,4946,"[\""Laptop\"", \""Phone\""]",4009.49,"{\""seasonal\"": \""9%\""}",264140,1,"""Asia""" +2024-08-20,27421,2994,"[\""Wireless Mouse\"", \""Charger\""]",4361.58,{},255109,1,"""Asia""" +2024-03-16,27422,2280,"[\""Headphones\"", \""Laptop\""]",4429.02,"{\""seasonal\"": \""24%\""}",226038,1,"""Asia""" +2023-10-24,27423,1242,"[\""Tablet\"", \""Charger\""]",2209.55,{},49078,1,"""Europe""" +2023-08-14,27424,463,"[\""Laptop\""]",2674.63,"{\""loyalty\"": \""12%\""}",181294,0,"""Asia""" +2024-11-17,27425,902,"[\""Phone\"", \""Charger\""]",1996.76,{},287405,1,"""Africa""" +2024-05-21,27426,1031,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1015.86,"{\""seasonal\"": \""26%\""}",290354,0,"""Africa""" +2023-01-20,27427,758,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",974.18,{},271313,1,"""South America""" +2023-07-02,27428,4289,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4028.09,"{\""loyalty\"": \""10%\""}",287235,0,"""Africa""" +2023-04-26,27429,1567,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1635.86,{},224044,0,"""Europe""" +2023-12-08,27430,5421,"[\""Keyboard\""]",3870.9,"{\""promo\"": \""18%\""}",81573,1,"""Africa""" +2024-07-13,27431,4643,"[\""Tablet\"", \""Phone\""]",2432.69,"{\""promo\"": \""22%\""}",117066,0,"""South America""" +2024-12-05,27432,9779,"[\""Keyboard\"", \""Phone\""]",3759.95,"{\"": \""16%\""}",249396,1,"""South America""" +2024-10-15,27433,1756,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2888.19,"{\""loyalty\"": \""12%\""}",162735,1,"""Asia""" +2023-02-02,27434,1477,"[\""Headphones\"", \""Monitor\""]",3112.59,"{\""loyalty\"": \""29%\""}",88781,0,"""Asia""" +2023-03-31,27435,2442,"[\""Laptop\"", \""Wireless Mouse\""]",4619.18,{},57145,1,"""Europe""" +2024-05-11,27436,3972,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3460.96,{},136334,0,"""North America""" +2023-02-15,27437,152,"[\""Charger\""]",4275.03,"{\"": \""5%\""}",230054,0,"""Africa""" +2024-01-04,27438,4484,"[\""Phone\"", \""Charger\""]",642.28,"{\"": \""25%\""}",4475,1,"""North America""" +2023-01-20,27439,2334,"[\""Phone\""]",1395.13,{},226795,0,"""North America""" +2023-06-21,27440,8868,"[\""Charger\"", \""Wireless Mouse\""]",837.67,"{\""promo\"": \""9%\""}",67719,1,"""Europe""" +2023-09-02,27441,8859,"[\""Tablet\"", \""Charger\""]",2831.22,"{\""seasonal\"": \""20%\""}",19760,0,"""South America""" +2023-05-30,27442,9019,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1017.36,{},126841,0,"""North America""" +2024-06-09,27443,4572,"[\""Charger\""]",2134.92,"{\"": \""28%\""}",189228,1,"""South America""" +2024-06-27,27444,4252,"[\""Keyboard\""]",1326.62,"{\""loyalty\"": \""8%\""}",51849,1,"""Africa""" +2023-12-12,27445,9561,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",475.61,{},45561,0,"""Africa""" +2023-01-21,27446,2277,"[\""Wireless Mouse\"", \""Monitor\""]",1972.8,"{\""promo\"": \""30%\""}",77746,1,"""Asia""" +2023-05-08,27447,7385,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1765.61,"{\""promo\"": \""22%\""}",248971,1,"""Asia""" +2024-09-12,27448,4555,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4485.49,"{\""promo\"": \""15%\""}",202337,1,"""Africa""" +2023-05-25,27449,5848,"[\""Wireless Mouse\"", \""Keyboard\""]",4176.11,"{\""promo\"": \""6%\""}",176449,1,"""North America""" +2024-10-16,27450,1582,"[\""Laptop\""]",1676.49,{},261372,1,"""South America""" +2023-09-27,27451,5058,"[\""Laptop\""]",1338.1,"{\""loyalty\"": \""12%\""}",146529,0,"""Africa""" +2024-11-16,27452,4600,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2861.12,{},114465,0,"""Africa""" +2023-12-05,27453,2355,"[\""Keyboard\""]",4536.18,"{\""promo\"": \""6%\""}",287450,1,"""South America""" +2024-07-12,27454,5853,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",891.97,"{\""promo\"": \""16%\""}",233751,0,"""Europe""" +2023-08-01,27455,1165,"[\""Laptop\""]",3890.87,"{\""loyalty\"": \""15%\""}",286217,1,"""Africa""" +2023-01-21,27456,3689,"[\""Headphones\""]",2583.67,{},215910,1,"""Africa""" +2024-02-18,27457,4197,"[\""Keyboard\""]",2901.09,{},81106,1,"""Europe""" +2023-01-05,27458,5114,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2570.15,"{\""promo\"": \""22%\""}",278716,0,"""South America""" +2023-01-31,27459,8429,"[\""Headphones\"", \""Laptop\""]",2866.57,{},266458,0,"""South America""" +2023-10-11,27460,4326,"[\""Headphones\"", \""Laptop\""]",4243.83,"{\""promo\"": \""18%\""}",82163,1,"""South America""" +2024-06-07,27461,6863,"[\""Monitor\"", \""Phone\""]",4195.62,{},12101,0,"""Asia""" +2023-10-04,27462,895,"[\""Charger\""]",4421.79,"{\"": \""9%\""}",280458,1,"""Africa""" +2024-02-10,27463,2710,"[\""Monitor\""]",1434.63,"{\""seasonal\"": \""18%\""}",84035,1,"""Europe""" +2023-01-27,27464,9413,"[\""Charger\"", \""Monitor\""]",1318.36,"{\""loyalty\"": \""7%\""}",247905,1,"""Africa""" +2024-04-26,27465,1776,"[\""Phone\""]",1180.06,{},68255,0,"""Asia""" +2023-07-19,27466,9772,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3071.75,"{\"": \""28%\""}",94209,1,"""Asia""" +2023-12-23,27467,799,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2760.16,{},103491,1,"""South America""" +2024-12-11,27468,7732,"[\""Phone\"", \""Keyboard\""]",2051.28,{},152961,0,"""Africa""" +2024-07-10,27469,6637,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4154.59,"{\"": \""26%\""}",99936,1,"""Africa""" +2023-01-28,27470,1147,"[\""Monitor\""]",2171.19,"{\""seasonal\"": \""18%\""}",139600,0,"""Asia""" +2023-02-22,27471,6110,"[\""Keyboard\"", \""Wireless Mouse\""]",600.0,"{\""seasonal\"": \""14%\""}",285001,1,"""Africa""" +2023-12-21,27472,1869,"[\""Monitor\"", \""Tablet\""]",3193.74,"{\""loyalty\"": \""26%\""}",31423,0,"""South America""" +2023-05-04,27473,107,"[\""Tablet\""]",4310.96,"{\""seasonal\"": \""17%\""}",89502,0,"""Asia""" +2024-01-12,27474,6171,"[\""Phone\"", \""Headphones\""]",4923.12,"{\""seasonal\"": \""9%\""}",232098,0,"""South America""" +2023-02-24,27475,3113,"[\""Wireless Mouse\""]",2468.19,"{\""loyalty\"": \""17%\""}",264569,1,"""North America""" +2023-03-06,27476,7702,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4884.69,{},54953,1,"""South America""" +2023-11-25,27477,2222,"[\""Phone\"", \""Charger\""]",4906.1,"{\"": \""7%\""}",43286,0,"""Europe""" +2023-08-30,27478,5238,"[\""Monitor\""]",2311.11,"{\"": \""25%\""}",7847,0,"""Asia""" +2024-04-22,27479,5338,"[\""Laptop\""]",1100.29,"{\""promo\"": \""19%\""}",162495,0,"""South America""" +2023-04-09,27480,5095,"[\""Wireless Mouse\""]",345.81,"{\""promo\"": \""9%\""}",233377,0,"""South America""" +2023-06-18,27481,5544,"[\""Laptop\""]",3894.95,{},252654,0,"""Europe""" +2024-04-15,27482,5885,"[\""Headphones\""]",4842.79,"{\""seasonal\"": \""5%\""}",281418,1,"""Asia""" +2023-02-16,27483,7708,"[\""Tablet\"", \""Wireless Mouse\""]",2003.53,"{\""promo\"": \""30%\""}",156460,0,"""Africa""" +2023-07-16,27484,4050,"[\""Laptop\""]",4217.81,"{\""loyalty\"": \""26%\""}",249627,1,"""Africa""" +2024-11-16,27485,588,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4075.54,{},160637,1,"""South America""" +2023-08-16,27486,1948,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2629.75,"{\""promo\"": \""25%\""}",63759,0,"""South America""" +2023-06-06,27487,8851,"[\""Headphones\""]",4073.98,{},274067,1,"""Europe""" +2023-07-22,27488,3286,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3285.1,"{\""seasonal\"": \""18%\""}",212713,1,"""Europe""" +2024-06-27,27489,1178,"[\""Phone\""]",2721.32,"{\""seasonal\"": \""12%\""}",166429,1,"""Europe""" +2023-03-10,27490,7509,"[\""Tablet\""]",1910.97,{},62695,0,"""North America""" +2024-12-18,27491,3077,"[\""Monitor\"", \""Keyboard\""]",821.55,"{\""promo\"": \""29%\""}",248734,1,"""South America""" +2023-09-17,27492,1179,"[\""Wireless Mouse\"", \""Charger\""]",2482.35,"{\""loyalty\"": \""24%\""}",176069,1,"""Asia""" +2024-09-12,27493,845,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1096.38,"{\""seasonal\"": \""17%\""}",10886,1,"""Europe""" +2024-09-29,27494,9187,"[\""Headphones\"", \""Monitor\""]",3113.62,"{\""promo\"": \""21%\""}",251330,1,"""North America""" +2024-01-27,27495,9922,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1723.79,"{\""loyalty\"": \""25%\""}",14907,0,"""Asia""" +2024-01-08,27496,2774,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3491.89,{},205750,1,"""Europe""" +2023-07-15,27497,5770,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2800.54,"{\""seasonal\"": \""26%\""}",214939,0,"""North America""" +2024-05-26,27498,465,"[\""Monitor\""]",2702.25,"{\""loyalty\"": \""6%\""}",210581,1,"""Asia""" +2023-12-24,27499,8208,"[\""Laptop\""]",4213.41,{},221747,0,"""Africa""" +2023-07-23,27500,4940,"[\""Monitor\"", \""Wireless Mouse\""]",2782.04,"{\"": \""25%\""}",6370,1,"""Asia""" +2024-03-09,27501,5643,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4762.89,{},11321,1,"""Asia""" +2023-12-30,27502,9379,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1135.56,{},190520,1,"""South America""" +2023-12-09,27503,4490,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3890.5,{},111015,1,"""Europe""" +2024-05-28,27504,6183,"[\""Headphones\""]",4263.47,{},119600,1,"""South America""" +2023-06-09,27505,2793,"[\""Keyboard\""]",2690.41,"{\"": \""18%\""}",102877,0,"""Africa""" +2023-12-25,27506,8841,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1724.24,"{\"": \""23%\""}",156901,1,"""North America""" +2024-07-03,27507,9470,"[\""Charger\"", \""Tablet\"", \""Phone\""]",113.96,{},175515,0,"""Africa""" +2023-08-04,27508,5295,"[\""Headphones\""]",823.43,"{\""promo\"": \""12%\""}",295888,1,"""Europe""" +2023-11-18,27509,1054,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4607.43,{},194648,1,"""South America""" +2024-01-23,27510,3618,"[\""Charger\""]",2006.13,{},167975,0,"""North America""" +2023-06-23,27511,4811,"[\""Headphones\"", \""Laptop\""]",3100.09,"{\""seasonal\"": \""10%\""}",84113,1,"""North America""" +2023-05-14,27512,4932,"[\""Keyboard\"", \""Phone\""]",1357.02,"{\""loyalty\"": \""21%\""}",56175,0,"""Asia""" +2024-09-12,27513,1501,"[\""Wireless Mouse\""]",3361.55,"{\""loyalty\"": \""18%\""}",69574,1,"""Asia""" +2023-04-27,27514,6844,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4623.24,{},74644,0,"""South America""" +2024-11-02,27515,869,"[\""Monitor\""]",4165.76,{},158563,1,"""Africa""" +2024-05-19,27516,651,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",878.06,"{\"": \""15%\""}",179640,0,"""South America""" +2024-09-05,27517,5245,"[\""Keyboard\"", \""Charger\""]",3767.98,"{\""promo\"": \""28%\""}",174090,1,"""North America""" +2023-09-25,27518,1634,"[\""Tablet\"", \""Laptop\""]",4052.42,"{\"": \""6%\""}",60707,1,"""Asia""" +2024-12-28,27519,3925,"[\""Headphones\"", \""Charger\""]",1490.18,{},28691,1,"""Europe""" +2024-09-20,27520,3372,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4420.66,"{\""seasonal\"": \""6%\""}",257587,1,"""North America""" +2024-06-22,27521,630,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3990.15,"{\""promo\"": \""8%\""}",21175,0,"""Asia""" +2024-10-02,27522,566,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2386.12,"{\""seasonal\"": \""6%\""}",122745,0,"""South America""" +2024-10-03,27523,4573,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1451.5,{},111848,1,"""Africa""" +2023-10-04,27524,8767,"[\""Charger\""]",842.98,"{\""promo\"": \""23%\""}",258584,0,"""Europe""" +2024-07-11,27525,9016,"[\""Headphones\""]",4882.12,{},270103,0,"""Africa""" +2023-01-27,27526,7738,"[\""Phone\""]",1310.7,{},86617,1,"""South America""" +2024-09-29,27527,4748,"[\""Monitor\""]",2931.83,{},253045,0,"""Asia""" +2024-10-29,27528,8896,"[\""Monitor\"", \""Charger\"", \""Phone\""]",970.32,{},74638,1,"""South America""" +2023-11-14,27529,7569,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1776.06,{},173338,0,"""South America""" +2024-02-04,27530,8960,"[\""Charger\"", \""Wireless Mouse\""]",4069.02,{},88776,1,"""Asia""" +2023-10-16,27531,5418,"[\""Keyboard\"", \""Charger\""]",2642.88,{},235039,1,"""North America""" +2023-05-07,27532,5372,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2053.16,{},120154,0,"""Europe""" +2024-11-19,27533,8743,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2429.09,{},184854,1,"""Asia""" +2024-03-24,27534,2825,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3746.44,{},46858,0,"""North America""" +2023-08-08,27535,5989,"[\""Charger\"", \""Wireless Mouse\""]",4543.56,"{\""loyalty\"": \""13%\""}",21796,1,"""Europe""" +2023-07-03,27536,1239,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",793.71,{},59385,1,"""Africa""" +2023-04-21,27537,9162,"[\""Laptop\""]",3973.11,"{\"": \""5%\""}",294161,1,"""Asia""" +2024-06-11,27538,6552,"[\""Laptop\"", \""Phone\""]",4327.27,"{\""loyalty\"": \""10%\""}",175853,0,"""Africa""" +2023-11-12,27539,1368,"[\""Charger\""]",4542.81,"{\"": \""11%\""}",120670,0,"""Asia""" +2023-11-23,27540,9771,"[\""Phone\"", \""Tablet\""]",3557.2,"{\""loyalty\"": \""17%\""}",210392,1,"""South America""" +2024-02-06,27541,4785,"[\""Monitor\""]",4584.79,{},109537,1,"""South America""" +2023-02-06,27542,6303,"[\""Phone\"", \""Keyboard\""]",3765.97,{},254193,1,"""Asia""" +2024-12-13,27543,5107,"[\""Headphones\""]",1811.23,"{\""seasonal\"": \""24%\""}",94319,0,"""Europe""" +2023-09-30,27544,5067,"[\""Tablet\""]",4706.26,{},249342,0,"""Africa""" +2024-02-18,27545,7405,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3579.35,"{\""loyalty\"": \""17%\""}",122855,1,"""Europe""" +2024-09-14,27546,7920,"[\""Laptop\"", \""Tablet\""]",3087.59,{},26584,0,"""South America""" +2023-10-10,27547,4557,"[\""Charger\""]",126.53,"{\""loyalty\"": \""27%\""}",242170,1,"""North America""" +2023-12-23,27548,8670,"[\""Keyboard\"", \""Monitor\""]",1635.29,"{\""seasonal\"": \""21%\""}",67620,0,"""Asia""" +2024-09-15,27549,4446,"[\""Monitor\"", \""Keyboard\""]",688.83,"{\""promo\"": \""11%\""}",205924,1,"""Africa""" +2024-11-12,27550,9631,"[\""Keyboard\""]",3360.46,"{\"": \""26%\""}",292888,0,"""Africa""" +2023-10-08,27551,4135,"[\""Tablet\"", \""Wireless Mouse\""]",3478.34,{},141613,0,"""North America""" +2023-01-28,27552,2770,"[\""Wireless Mouse\""]",2497.62,"{\""seasonal\"": \""30%\""}",86320,0,"""South America""" +2023-04-16,27553,4256,"[\""Monitor\"", \""Tablet\""]",4627.39,"{\""promo\"": \""16%\""}",57161,0,"""Africa""" +2023-09-30,27554,5030,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4825.38,"{\""promo\"": \""14%\""}",172623,0,"""Europe""" +2024-10-27,27555,3884,"[\""Keyboard\""]",4628.91,{},20972,1,"""Asia""" +2024-09-13,27556,7964,"[\""Keyboard\"", \""Phone\""]",1356.98,{},96433,0,"""South America""" +2024-02-15,27557,5787,"[\""Keyboard\"", \""Headphones\""]",4991.81,"{\"": \""28%\""}",216718,0,"""Europe""" +2024-12-20,27558,9311,"[\""Phone\""]",2340.27,{},69280,1,"""Africa""" +2023-03-31,27559,1559,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3110.39,{},110173,0,"""Asia""" +2024-03-03,27560,1613,"[\""Tablet\""]",1204.39,{},71191,1,"""Asia""" +2023-03-31,27561,4301,"[\""Laptop\"", \""Wireless Mouse\""]",2001.7,"{\""seasonal\"": \""29%\""}",298976,1,"""Europe""" +2024-05-10,27562,1379,"[\""Laptop\"", \""Headphones\""]",854.77,"{\"": \""6%\""}",60692,0,"""Europe""" +2024-06-11,27563,562,"[\""Charger\"", \""Tablet\""]",4631.19,"{\""loyalty\"": \""15%\""}",44123,0,"""Europe""" +2024-04-10,27564,1771,"[\""Monitor\""]",3248.89,"{\""loyalty\"": \""13%\""}",104973,1,"""South America""" +2024-03-02,27565,7076,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3796.82,"{\"": \""17%\""}",203664,0,"""Europe""" +2023-12-31,27566,5827,"[\""Laptop\"", \""Headphones\""]",1481.06,{},14069,0,"""South America""" +2024-04-28,27567,2848,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3468.34,{},200054,0,"""Asia""" +2024-09-05,27568,1719,"[\""Monitor\""]",3135.08,"{\""seasonal\"": \""12%\""}",195032,0,"""Africa""" +2023-11-24,27569,114,"[\""Laptop\"", \""Keyboard\""]",1690.94,"{\"": \""26%\""}",18586,1,"""Europe""" +2024-10-01,27570,7070,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1378.57,"{\""seasonal\"": \""10%\""}",100031,1,"""North America""" +2024-03-03,27571,1059,"[\""Headphones\"", \""Laptop\""]",4193.39,{},258434,1,"""Europe""" +2024-11-02,27572,4614,"[\""Tablet\"", \""Laptop\""]",1104.22,{},103661,0,"""Africa""" +2023-08-02,27573,4729,"[\""Headphones\"", \""Laptop\""]",4987.71,"{\""seasonal\"": \""15%\""}",244331,0,"""Asia""" +2024-05-09,27574,4546,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",764.51,{},218345,1,"""Africa""" +2023-08-05,27575,1385,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4714.47,"{\""loyalty\"": \""14%\""}",73487,0,"""Europe""" +2024-10-13,27576,7596,"[\""Wireless Mouse\""]",4738.12,"{\""seasonal\"": \""14%\""}",52977,0,"""Africa""" +2023-05-18,27577,450,"[\""Charger\"", \""Tablet\""]",4804.44,"{\""seasonal\"": \""24%\""}",212624,1,"""Asia""" +2023-01-27,27578,4806,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4555.89,"{\"": \""15%\""}",34966,0,"""South America""" +2023-04-02,27579,4569,"[\""Laptop\""]",1914.16,{},244206,1,"""Asia""" +2023-08-03,27580,2243,"[\""Monitor\"", \""Tablet\""]",2764.19,{},137945,1,"""Africa""" +2023-04-26,27581,1075,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3445.71,{},105008,0,"""Europe""" +2024-04-02,27582,3908,"[\""Monitor\"", \""Charger\""]",2459.88,{},117645,0,"""North America""" +2023-02-25,27583,6461,"[\""Phone\"", \""Tablet\""]",2360.65,"{\"": \""23%\""}",17833,0,"""Africa""" +2023-12-14,27584,983,"[\""Charger\""]",117.71,{},203220,0,"""South America""" +2024-03-09,27585,1399,"[\""Phone\""]",2435.4,"{\""seasonal\"": \""23%\""}",246238,0,"""Asia""" +2023-03-03,27586,2859,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4872.5,{},49008,0,"""Africa""" +2023-06-22,27587,8357,"[\""Wireless Mouse\"", \""Monitor\""]",1367.24,{},54815,0,"""North America""" +2024-08-14,27588,2843,"[\""Tablet\"", \""Monitor\""]",3905.86,{},15417,0,"""Europe""" +2023-05-11,27589,4774,"[\""Monitor\""]",1766.58,{},109747,0,"""North America""" +2023-03-07,27590,7533,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4351.58,"{\"": \""21%\""}",253595,0,"""Africa""" +2023-08-04,27591,1075,"[\""Monitor\"", \""Tablet\""]",1185.09,"{\""loyalty\"": \""27%\""}",137945,0,"""Europe""" +2024-02-28,27592,4973,"[\""Headphones\"", \""Charger\""]",4479.23,"{\""loyalty\"": \""10%\""}",223198,1,"""South America""" +2024-08-04,27593,8904,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4198.58,{},157025,1,"""Asia""" +2024-03-13,27594,1082,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4604.55,{},211445,0,"""Europe""" +2023-10-01,27595,6942,"[\""Wireless Mouse\"", \""Keyboard\""]",3095.39,"{\""loyalty\"": \""30%\""}",51057,0,"""Asia""" +2023-01-04,27596,6261,"[\""Charger\"", \""Keyboard\""]",2957.2,"{\""seasonal\"": \""8%\""}",132661,1,"""Africa""" +2023-08-05,27597,6840,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1784.67,{},29440,0,"""Europe""" +2023-06-08,27598,9314,"[\""Tablet\""]",1167.99,"{\""loyalty\"": \""7%\""}",263424,1,"""Europe""" +2024-08-13,27599,4732,"[\""Wireless Mouse\""]",4775.18,{},132624,0,"""Africa""" +2024-07-18,27600,5723,"[\""Tablet\""]",4893.89,{},63431,1,"""Europe""" +2023-09-27,27601,202,"[\""Monitor\""]",2620.66,{},173876,0,"""Asia""" +2024-06-03,27602,4164,"[\""Phone\"", \""Monitor\""]",2269.88,{},265922,0,"""South America""" +2024-09-15,27603,7379,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2335.16,"{\""loyalty\"": \""15%\""}",166779,1,"""Asia""" +2024-10-12,27604,1458,"[\""Laptop\""]",1883.57,{},210509,1,"""Europe""" +2024-09-20,27605,7371,"[\""Laptop\"", \""Phone\""]",2822.17,{},185406,0,"""Europe""" +2024-12-22,27606,1809,"[\""Headphones\"", \""Monitor\""]",4448.88,{},222371,1,"""South America""" +2024-04-15,27607,2018,"[\""Charger\"", \""Tablet\""]",322.8,{},193582,0,"""North America""" +2024-11-02,27608,2300,"[\""Phone\"", \""Keyboard\""]",1447.87,{},227014,0,"""South America""" +2023-08-21,27609,8742,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2745.88,"{\""promo\"": \""7%\""}",13104,1,"""Europe""" +2024-09-23,27610,3755,"[\""Phone\""]",3260.68,{},82667,0,"""Asia""" +2023-09-10,27611,7823,"[\""Phone\"", \""Keyboard\""]",425.84,"{\"": \""7%\""}",299782,1,"""Asia""" +2024-04-16,27612,7299,"[\""Wireless Mouse\"", \""Charger\""]",3925.81,{},252033,1,"""Europe""" +2023-07-13,27613,8492,"[\""Wireless Mouse\"", \""Tablet\""]",1583.91,"{\""promo\"": \""16%\""}",19948,0,"""Africa""" +2023-10-26,27614,2963,"[\""Monitor\""]",955.62,"{\"": \""22%\""}",259561,0,"""North America""" +2024-05-26,27615,2842,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3740.82,"{\""seasonal\"": \""20%\""}",33381,0,"""North America""" +2024-07-09,27616,7219,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2039.42,{},288317,1,"""North America""" +2024-11-19,27617,7378,"[\""Tablet\"", \""Wireless Mouse\""]",2129.15,{},63341,0,"""North America""" +2024-03-14,27618,3609,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2274.47,"{\""promo\"": \""28%\""}",141944,1,"""Europe""" +2023-04-14,27619,8042,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",727.19,"{\"": \""26%\""}",54365,0,"""Africa""" +2024-09-25,27620,9169,"[\""Keyboard\"", \""Wireless Mouse\""]",4042.79,"{\""seasonal\"": \""27%\""}",193117,1,"""Asia""" +2024-01-21,27621,3009,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",706.48,"{\"": \""29%\""}",232124,0,"""Europe""" +2024-12-29,27622,2064,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4047.88,"{\""seasonal\"": \""24%\""}",298645,1,"""North America""" +2024-05-28,27623,2393,"[\""Wireless Mouse\"", \""Laptop\""]",2986.36,"{\""loyalty\"": \""18%\""}",212706,0,"""Africa""" +2023-06-28,27624,4918,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3539.91,{},27012,1,"""Africa""" +2024-12-06,27625,2474,"[\""Keyboard\""]",1277.97,"{\""loyalty\"": \""6%\""}",171968,0,"""North America""" +2023-05-18,27626,1942,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",885.99,"{\""loyalty\"": \""12%\""}",261371,1,"""South America""" +2024-08-06,27627,2078,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2402.54,{},160283,0,"""South America""" +2024-04-15,27628,4902,"[\""Keyboard\""]",4977.66,"{\""seasonal\"": \""8%\""}",78822,1,"""South America""" +2023-08-19,27629,6413,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4003.54,"{\""promo\"": \""22%\""}",288695,0,"""Africa""" +2024-02-26,27630,389,"[\""Tablet\""]",1456.56,{},298591,0,"""South America""" +2024-12-01,27631,6351,"[\""Monitor\""]",3620.75,"{\"": \""7%\""}",290842,0,"""South America""" +2024-09-08,27632,6807,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2972.97,"{\""promo\"": \""25%\""}",47345,1,"""Africa""" +2023-11-26,27633,7511,"[\""Phone\"", \""Keyboard\""]",4711.95,{},91593,0,"""Africa""" +2024-06-03,27634,7957,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2786.08,"{\""seasonal\"": \""15%\""}",106527,0,"""Africa""" +2023-05-10,27635,5235,"[\""Wireless Mouse\"", \""Headphones\""]",1438.1,{},156514,1,"""South America""" +2023-10-19,27636,4832,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3680.27,"{\"": \""16%\""}",33287,1,"""Europe""" +2024-03-01,27637,9872,"[\""Monitor\""]",1666.5,"{\"": \""27%\""}",97931,0,"""Africa""" +2024-05-16,27638,6911,"[\""Wireless Mouse\"", \""Laptop\""]",2175.78,"{\""seasonal\"": \""24%\""}",124261,1,"""Asia""" +2024-11-15,27639,7124,"[\""Phone\"", \""Laptop\""]",1602.59,"{\"": \""9%\""}",190542,1,"""South America""" +2024-01-24,27640,5219,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2602.73,"{\""seasonal\"": \""24%\""}",168799,0,"""Europe""" +2024-12-05,27641,9046,"[\""Phone\"", \""Keyboard\""]",2145.4,{},179710,1,"""Africa""" +2024-08-29,27642,8603,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2025.25,"{\""seasonal\"": \""18%\""}",43859,1,"""Asia""" +2023-02-24,27643,2869,"[\""Charger\""]",2345.19,"{\""loyalty\"": \""28%\""}",61214,0,"""Europe""" +2024-04-26,27644,526,"[\""Keyboard\"", \""Wireless Mouse\""]",792.58,"{\""loyalty\"": \""24%\""}",202481,1,"""Africa""" +2024-05-09,27645,4877,"[\""Keyboard\""]",362.82,"{\"": \""30%\""}",68898,1,"""North America""" +2023-12-25,27646,603,"[\""Laptop\"", \""Keyboard\""]",239.74,{},6978,1,"""Africa""" +2023-11-01,27647,7089,"[\""Headphones\""]",3563.13,{},169064,1,"""North America""" +2024-12-30,27648,6988,"[\""Wireless Mouse\"", \""Tablet\""]",4795.78,"{\""seasonal\"": \""22%\""}",142236,0,"""Asia""" +2023-09-19,27649,4782,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3270.16,{},157888,0,"""Asia""" +2024-03-07,27650,1324,"[\""Keyboard\"", \""Tablet\""]",4699.94,{},268102,1,"""South America""" +2024-10-07,27651,6558,"[\""Keyboard\""]",2494.14,"{\""promo\"": \""14%\""}",194361,1,"""Europe""" +2024-10-16,27652,8668,"[\""Headphones\"", \""Keyboard\""]",4113.21,"{\""loyalty\"": \""6%\""}",84792,1,"""Asia""" +2023-01-17,27653,9807,"[\""Laptop\"", \""Monitor\""]",927.23,{},297107,1,"""Asia""" +2023-03-31,27654,4565,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4924.82,"{\""seasonal\"": \""24%\""}",41867,1,"""Europe""" +2023-06-06,27655,3055,"[\""Monitor\"", \""Keyboard\""]",1267.08,{},208435,1,"""Africa""" +2024-02-24,27656,4929,"[\""Charger\"", \""Tablet\""]",4585.55,{},194722,0,"""Africa""" +2024-09-04,27657,1603,"[\""Headphones\"", \""Monitor\""]",3174.55,"{\"": \""29%\""}",240726,0,"""South America""" +2024-09-10,27658,4511,"[\""Monitor\""]",2296.93,{},164427,0,"""North America""" +2024-10-21,27659,6412,"[\""Monitor\"", \""Headphones\""]",2840.56,{},55065,1,"""North America""" +2024-10-13,27660,8130,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4634.93,"{\"": \""6%\""}",255549,0,"""Africa""" +2023-07-30,27661,4225,"[\""Phone\"", \""Laptop\""]",707.12,"{\""loyalty\"": \""25%\""}",45391,1,"""Africa""" +2024-09-24,27662,1557,"[\""Phone\"", \""Headphones\""]",4279.19,"{\""seasonal\"": \""9%\""}",111079,1,"""North America""" +2024-09-05,27663,6006,"[\""Monitor\"", \""Phone\""]",2161.44,"{\""promo\"": \""23%\""}",35846,1,"""North America""" +2023-09-30,27664,10,"[\""Keyboard\"", \""Headphones\""]",185.42,{},204724,0,"""North America""" +2024-11-12,27665,5598,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4587.64,{},116835,1,"""South America""" +2023-05-14,27666,7955,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2268.89,"{\""promo\"": \""15%\""}",43222,1,"""Europe""" +2024-11-24,27667,8645,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1591.41,"{\""seasonal\"": \""17%\""}",29380,1,"""North America""" +2023-04-27,27668,7227,"[\""Charger\"", \""Tablet\""]",700.94,"{\""seasonal\"": \""6%\""}",15955,1,"""Europe""" +2023-10-20,27669,1589,"[\""Headphones\"", \""Wireless Mouse\""]",3396.5,"{\""seasonal\"": \""26%\""}",189725,0,"""Asia""" +2023-05-01,27670,6418,"[\""Charger\"", \""Phone\""]",213.69,{},86642,0,"""Europe""" +2023-08-08,27671,3637,"[\""Headphones\"", \""Laptop\""]",4986.2,{},67080,1,"""Europe""" +2023-06-19,27672,5658,"[\""Phone\""]",2433.6,{},205195,1,"""Asia""" +2024-12-11,27673,9541,"[\""Headphones\"", \""Laptop\""]",1465.32,{},42249,0,"""South America""" +2024-09-02,27674,6345,"[\""Monitor\""]",4321.06,{},59288,0,"""Europe""" +2024-06-16,27675,3340,"[\""Monitor\"", \""Keyboard\""]",2181.99,"{\""loyalty\"": \""10%\""}",33474,0,"""Asia""" +2023-09-28,27676,6293,"[\""Laptop\""]",1755.31,{},250111,0,"""Africa""" +2023-10-26,27677,2059,"[\""Monitor\""]",3357.94,"{\""loyalty\"": \""22%\""}",237321,0,"""Asia""" +2024-01-11,27678,7743,"[\""Monitor\""]",1665.24,{},244330,1,"""Europe""" +2023-07-31,27679,4009,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1555.29,"{\""seasonal\"": \""15%\""}",293927,0,"""Europe""" +2023-10-06,27680,9360,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2760.11,"{\""seasonal\"": \""29%\""}",225186,1,"""Europe""" +2024-09-27,27681,1975,"[\""Charger\"", \""Headphones\""]",3218.27,{},82980,0,"""Asia""" +2023-07-05,27682,4071,"[\""Laptop\"", \""Phone\""]",2700.62,"{\""promo\"": \""19%\""}",208419,0,"""Asia""" +2024-12-24,27683,2395,"[\""Laptop\"", \""Keyboard\""]",243.73,{},164690,0,"""Europe""" +2024-11-25,27684,3415,"[\""Laptop\""]",4171.98,"{\""promo\"": \""23%\""}",148866,1,"""South America""" +2023-03-22,27685,4654,"[\""Keyboard\""]",3335.85,"{\""seasonal\"": \""16%\""}",23600,1,"""Europe""" +2023-02-27,27686,827,"[\""Laptop\""]",3006.73,{},208498,1,"""South America""" +2024-10-23,27687,8493,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3823.05,{},80089,1,"""North America""" +2023-12-24,27688,2762,"[\""Headphones\"", \""Phone\""]",1167.27,{},75296,0,"""Asia""" +2024-01-12,27689,251,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1628.84,{},12458,0,"""Africa""" +2023-02-12,27690,4372,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2444.32,"{\""promo\"": \""7%\""}",110895,0,"""Africa""" +2023-02-02,27691,8634,"[\""Phone\"", \""Keyboard\""]",3670.65,{},279200,0,"""Asia""" +2023-01-20,27692,4898,"[\""Phone\"", \""Laptop\""]",3757.68,{},138381,0,"""Europe""" +2023-03-13,27693,2751,"[\""Wireless Mouse\""]",2175.62,{},39690,1,"""Asia""" +2024-04-06,27694,1630,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1810.85,"{\"": \""13%\""}",246931,0,"""Europe""" +2023-02-07,27695,870,"[\""Phone\"", \""Keyboard\""]",3849.95,"{\""seasonal\"": \""19%\""}",258836,1,"""Europe""" +2023-11-23,27696,2965,"[\""Headphones\""]",2238.14,{},148299,0,"""North America""" +2023-09-12,27697,8759,"[\""Laptop\"", \""Tablet\""]",4896.25,"{\""loyalty\"": \""26%\""}",215306,1,"""North America""" +2023-08-26,27698,4025,"[\""Charger\""]",2285.66,{},177645,1,"""Asia""" +2023-11-22,27699,6177,"[\""Tablet\"", \""Charger\""]",4395.11,"{\""seasonal\"": \""5%\""}",88205,1,"""Africa""" +2023-05-25,27700,4706,"[\""Headphones\"", \""Laptop\""]",4352.79,"{\""promo\"": \""28%\""}",205084,1,"""North America""" +2024-02-12,27701,2378,"[\""Headphones\""]",2140.87,"{\""promo\"": \""30%\""}",25234,1,"""Africa""" +2024-06-20,27702,1881,"[\""Wireless Mouse\"", \""Headphones\""]",3940.66,{},9719,0,"""Asia""" +2023-06-06,27703,575,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4017.31,{},75828,1,"""Africa""" +2024-04-23,27704,5847,"[\""Monitor\"", \""Laptop\""]",2515.94,{},287873,1,"""Asia""" +2024-04-21,27705,5499,"[\""Monitor\""]",1793.43,{},103945,1,"""Europe""" +2024-04-19,27706,213,"[\""Wireless Mouse\"", \""Laptop\""]",3633.31,{},148142,1,"""South America""" +2023-07-26,27707,9084,"[\""Phone\""]",2475.33,"{\""seasonal\"": \""16%\""}",127280,1,"""South America""" +2023-01-11,27708,3246,"[\""Wireless Mouse\""]",3695.94,{},150684,0,"""Asia""" +2024-07-08,27709,6551,"[\""Wireless Mouse\"", \""Headphones\""]",495.27,"{\"": \""21%\""}",38617,1,"""Asia""" +2023-01-08,27710,4243,"[\""Phone\""]",3004.54,"{\""loyalty\"": \""17%\""}",241708,1,"""North America""" +2024-03-05,27711,9796,"[\""Keyboard\""]",4167.64,{},133934,1,"""Europe""" +2023-10-04,27712,4219,"[\""Monitor\""]",3963.39,{},73492,1,"""Asia""" +2024-02-24,27713,7975,"[\""Wireless Mouse\"", \""Keyboard\""]",1861.73,{},196715,1,"""Europe""" +2024-04-06,27714,8988,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",715.71,{},18461,1,"""Africa""" +2023-05-24,27715,8978,"[\""Tablet\""]",4472.24,{},276010,1,"""Europe""" +2023-12-21,27716,2903,"[\""Phone\"", \""Keyboard\""]",316.03,{},1658,0,"""Europe""" +2023-06-26,27717,5634,"[\""Charger\"", \""Tablet\""]",2731.58,"{\""seasonal\"": \""5%\""}",105166,0,"""Europe""" +2024-03-07,27718,4195,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3655.02,"{\""loyalty\"": \""7%\""}",258358,0,"""Africa""" +2024-08-26,27719,5227,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3332.38,{},249658,1,"""Asia""" +2024-01-02,27720,7290,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1665.76,{},244726,0,"""Asia""" +2024-02-12,27721,1140,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1215.96,"{\""promo\"": \""5%\""}",44429,1,"""Europe""" +2024-10-05,27722,2898,"[\""Laptop\"", \""Keyboard\""]",4283.14,{},127458,0,"""Africa""" +2024-12-26,27723,4898,"[\""Charger\""]",3748.4,{},138326,1,"""North America""" +2023-12-02,27724,4955,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2883.11,{},248223,1,"""North America""" +2023-04-10,27725,8643,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3178.36,{},121518,0,"""Asia""" +2023-04-05,27726,3562,"[\""Keyboard\""]",3150.84,{},43399,0,"""Asia""" +2024-09-28,27727,8166,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4738.3,{},165212,0,"""Europe""" +2023-10-24,27728,2468,"[\""Keyboard\""]",2461.9,{},141079,0,"""North America""" +2024-06-20,27729,3258,"[\""Tablet\""]",1535.21,{},100193,1,"""Asia""" +2023-09-13,27730,7807,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",363.91,{},293426,1,"""Europe""" +2023-04-02,27731,7745,"[\""Wireless Mouse\""]",3458.48,"{\""seasonal\"": \""24%\""}",48403,0,"""South America""" +2024-02-22,27732,9596,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3708.57,"{\""promo\"": \""28%\""}",69191,0,"""Europe""" +2023-07-06,27733,7881,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1213.81,"{\""promo\"": \""6%\""}",150956,1,"""Europe""" +2023-10-02,27734,2528,"[\""Tablet\"", \""Laptop\""]",982.93,"{\""loyalty\"": \""15%\""}",245949,0,"""Asia""" +2023-04-09,27735,7653,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3246.68,{},251207,0,"""South America""" +2023-04-05,27736,6283,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3767.7,"{\""seasonal\"": \""24%\""}",281474,1,"""Asia""" +2024-11-01,27737,4590,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1309.48,{},262408,1,"""Asia""" +2024-02-14,27738,1785,"[\""Tablet\"", \""Charger\""]",2922.48,{},199566,0,"""Africa""" +2023-04-26,27739,8980,"[\""Tablet\""]",4745.51,"{\""promo\"": \""17%\""}",149061,0,"""Asia""" +2023-04-11,27740,7300,"[\""Wireless Mouse\"", \""Phone\""]",1063.22,{},72456,0,"""Asia""" +2024-09-20,27741,5967,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1428.01,{},90856,0,"""Europe""" +2023-04-18,27742,5204,"[\""Keyboard\""]",4351.78,{},77944,1,"""Europe""" +2024-01-14,27743,1780,"[\""Charger\"", \""Monitor\""]",1442.89,{},243881,0,"""North America""" +2023-07-05,27744,3853,"[\""Laptop\"", \""Wireless Mouse\""]",2807.52,{},51826,0,"""North America""" +2024-12-18,27745,1389,"[\""Wireless Mouse\"", \""Tablet\""]",990.11,"{\""loyalty\"": \""10%\""}",35815,0,"""North America""" +2024-03-20,27746,8674,"[\""Charger\""]",2032.85,"{\""promo\"": \""17%\""}",19667,1,"""Asia""" +2023-04-08,27747,8740,"[\""Phone\""]",92.93,"{\"": \""9%\""}",53442,0,"""Europe""" +2024-12-11,27748,9557,"[\""Tablet\""]",1127.0,{},30927,0,"""Asia""" +2023-07-26,27749,7028,"[\""Laptop\"", \""Charger\""]",3588.07,"{\""promo\"": \""21%\""}",93018,1,"""North America""" +2023-04-25,27750,4100,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",187.53,{},78393,0,"""North America""" +2024-11-09,27751,165,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",401.63,{},259120,0,"""Europe""" +2024-09-03,27752,9176,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3783.29,"{\""promo\"": \""20%\""}",54642,1,"""Africa""" +2023-07-10,27753,7660,"[\""Wireless Mouse\"", \""Headphones\""]",2035.04,"{\"": \""12%\""}",265955,1,"""North America""" +2023-09-01,27754,8579,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4480.47,"{\""loyalty\"": \""8%\""}",131385,0,"""South America""" +2024-02-19,27755,3693,"[\""Headphones\""]",1894.6,{},128613,0,"""Europe""" +2023-08-10,27756,1272,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2915.09,"{\""promo\"": \""17%\""}",82056,0,"""Europe""" +2024-03-05,27757,8159,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4814.48,{},223677,1,"""Asia""" +2023-01-17,27758,5089,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3585.56,{},122807,1,"""Africa""" +2023-12-13,27759,7208,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",508.89,{},31430,1,"""Africa""" +2024-12-20,27760,3296,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1797.63,{},175944,1,"""North America""" +2024-07-25,27761,1254,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2840.01,"{\"": \""27%\""}",116840,1,"""Asia""" +2023-06-07,27762,8214,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2982.88,"{\""seasonal\"": \""6%\""}",268947,1,"""South America""" +2024-04-19,27763,8658,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2028.2,"{\""loyalty\"": \""20%\""}",94747,0,"""Asia""" +2024-01-19,27764,8976,"[\""Monitor\""]",1141.91,{},255341,0,"""Europe""" +2024-10-02,27765,8386,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",733.67,"{\""loyalty\"": \""20%\""}",164455,1,"""South America""" +2023-06-21,27766,391,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1258.18,{},45943,0,"""Europe""" +2023-11-27,27767,5579,"[\""Phone\""]",4729.13,{},227672,1,"""North America""" +2024-07-18,27768,2912,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3384.26,{},166312,0,"""Asia""" +2024-02-03,27769,7312,"[\""Laptop\""]",4889.95,"{\""loyalty\"": \""5%\""}",281485,1,"""Asia""" +2024-10-09,27770,9862,"[\""Monitor\""]",4952.9,{},64015,1,"""North America""" +2023-11-07,27771,2915,"[\""Wireless Mouse\""]",2961.77,{},239512,0,"""Africa""" +2023-10-02,27772,8274,"[\""Tablet\""]",4472.94,{},168181,0,"""Africa""" +2023-11-28,27773,2802,"[\""Tablet\""]",3404.44,{},291558,1,"""South America""" +2023-08-02,27774,1543,"[\""Laptop\"", \""Wireless Mouse\""]",302.81,{},103091,0,"""Africa""" +2023-10-14,27775,2912,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",739.64,{},107353,1,"""Asia""" +2024-11-27,27776,8896,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1872.3,"{\""seasonal\"": \""23%\""}",187040,0,"""Asia""" +2024-12-26,27777,5680,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",230.02,{},115136,1,"""Asia""" +2024-11-27,27778,2886,"[\""Monitor\"", \""Headphones\""]",3047.78,"{\"": \""9%\""}",228355,0,"""South America""" +2023-06-09,27779,1503,"[\""Charger\""]",1906.13,"{\""promo\"": \""25%\""}",20147,0,"""North America""" +2024-06-05,27780,7770,"[\""Keyboard\"", \""Wireless Mouse\""]",3044.68,{},23541,1,"""Africa""" +2023-03-10,27781,475,"[\""Tablet\"", \""Headphones\""]",1071.74,{},174235,0,"""Europe""" +2024-03-22,27782,9004,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",698.85,"{\"": \""26%\""}",174884,1,"""Africa""" +2024-08-10,27783,3589,"[\""Keyboard\""]",2817.95,{},170394,0,"""South America""" +2023-12-07,27784,311,"[\""Laptop\""]",4225.12,{},60325,0,"""Africa""" +2023-07-25,27785,2611,"[\""Headphones\"", \""Laptop\""]",2155.39,"{\"": \""21%\""}",125724,1,"""North America""" +2024-06-18,27786,3372,"[\""Charger\"", \""Headphones\""]",1240.61,"{\""loyalty\"": \""13%\""}",273580,0,"""Africa""" +2024-10-23,27787,7628,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1373.78,"{\""promo\"": \""28%\""}",61353,0,"""Africa""" +2023-04-19,27788,2418,"[\""Phone\""]",3364.09,{},173027,0,"""Africa""" +2024-03-15,27789,5391,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",145.83,{},295577,0,"""Europe""" +2023-04-04,27790,6716,"[\""Phone\"", \""Keyboard\""]",110.53,"{\""seasonal\"": \""22%\""}",114764,1,"""Europe""" +2024-04-18,27791,415,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3454.47,"{\""loyalty\"": \""22%\""}",92836,1,"""South America""" +2023-06-12,27792,5452,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2882.26,{},180132,0,"""Africa""" +2024-11-19,27793,3437,"[\""Laptop\""]",1091.71,"{\""loyalty\"": \""15%\""}",8417,0,"""Asia""" +2024-02-26,27794,4888,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1752.49,"{\""promo\"": \""14%\""}",248697,0,"""Asia""" +2024-03-31,27795,1694,"[\""Phone\""]",4475.69,{},194319,0,"""Asia""" +2024-09-17,27796,9674,"[\""Monitor\"", \""Headphones\""]",2397.68,"{\""seasonal\"": \""9%\""}",176549,0,"""Africa""" +2024-05-13,27797,2584,"[\""Phone\"", \""Tablet\""]",981.92,"{\""seasonal\"": \""15%\""}",12869,1,"""Asia""" +2024-02-18,27798,6816,"[\""Tablet\"", \""Wireless Mouse\""]",3471.08,{},113089,1,"""South America""" +2023-10-13,27799,9877,"[\""Keyboard\""]",2604.02,"{\""promo\"": \""20%\""}",120218,1,"""Asia""" +2023-08-25,27800,1094,"[\""Phone\"", \""Charger\""]",571.67,{},162172,1,"""Europe""" +2024-08-23,27801,2793,"[\""Monitor\""]",689.42,"{\""promo\"": \""7%\""}",82687,0,"""Europe""" +2024-06-25,27802,2977,"[\""Monitor\"", \""Phone\""]",1502.83,"{\""loyalty\"": \""28%\""}",247389,0,"""Africa""" +2024-01-08,27803,249,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3342.17,"{\""seasonal\"": \""13%\""}",189501,0,"""Africa""" +2024-11-16,27804,2785,"[\""Tablet\""]",3920.67,{},190649,0,"""Europe""" +2023-06-25,27805,2291,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1115.26,"{\"": \""8%\""}",7191,1,"""Europe""" +2023-08-25,27806,9634,"[\""Wireless Mouse\"", \""Phone\""]",4821.62,"{\""promo\"": \""27%\""}",76293,0,"""South America""" +2024-12-21,27807,2786,"[\""Wireless Mouse\""]",1180.67,"{\""promo\"": \""20%\""}",35835,0,"""Europe""" +2024-09-16,27808,4784,"[\""Headphones\"", \""Charger\""]",479.76,"{\""promo\"": \""18%\""}",237695,0,"""Asia""" +2024-09-25,27809,7699,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3198.44,"{\""seasonal\"": \""11%\""}",186404,0,"""South America""" +2023-01-16,27810,3550,"[\""Keyboard\"", \""Monitor\""]",3395.82,{},96546,1,"""South America""" +2023-04-07,27811,8023,"[\""Wireless Mouse\""]",1593.92,{},260311,0,"""North America""" +2023-06-10,27812,6444,"[\""Wireless Mouse\"", \""Laptop\""]",278.52,{},158940,1,"""South America""" +2024-12-28,27813,6500,"[\""Phone\""]",3474.96,"{\""promo\"": \""17%\""}",75295,1,"""North America""" +2024-03-11,27814,7678,"[\""Monitor\""]",4857.34,"{\""promo\"": \""19%\""}",235240,1,"""South America""" +2024-10-17,27815,6325,"[\""Wireless Mouse\"", \""Tablet\""]",1486.55,{},28703,0,"""Europe""" +2024-03-17,27816,4577,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4038.19,"{\""loyalty\"": \""6%\""}",187657,1,"""Asia""" +2023-12-18,27817,9867,"[\""Monitor\"", \""Wireless Mouse\""]",3608.93,"{\""seasonal\"": \""9%\""}",259087,1,"""Africa""" +2023-09-08,27818,2995,"[\""Monitor\""]",4899.81,{},294251,1,"""North America""" +2024-10-15,27819,2519,"[\""Tablet\"", \""Wireless Mouse\""]",4275.41,"{\""promo\"": \""8%\""}",162704,1,"""Africa""" +2023-03-16,27820,7591,"[\""Phone\"", \""Laptop\""]",4935.1,"{\""loyalty\"": \""5%\""}",262447,1,"""Europe""" +2024-05-20,27821,7090,"[\""Laptop\""]",1089.22,"{\""promo\"": \""19%\""}",259060,1,"""Europe""" +2024-07-16,27822,6419,"[\""Monitor\""]",995.4,{},102385,0,"""Europe""" +2023-10-16,27823,8462,"[\""Laptop\"", \""Charger\""]",2186.64,{},273688,0,"""North America""" +2024-01-25,27824,3144,"[\""Laptop\"", \""Charger\""]",2075.85,"{\""promo\"": \""20%\""}",181972,0,"""South America""" +2024-03-11,27825,5035,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2033.2,"{\""loyalty\"": \""11%\""}",60903,1,"""Africa""" +2023-04-05,27826,2215,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1390.32,"{\"": \""18%\""}",219274,1,"""Europe""" +2024-08-27,27827,4848,"[\""Headphones\""]",2006.28,{},246746,0,"""South America""" +2023-12-22,27828,987,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",426.42,{},263068,0,"""North America""" +2023-07-27,27829,2649,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3573.0,"{\""loyalty\"": \""30%\""}",252687,1,"""South America""" +2023-06-02,27830,6458,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4642.29,"{\""seasonal\"": \""23%\""}",290273,0,"""South America""" +2024-03-23,27831,5641,"[\""Wireless Mouse\""]",1256.78,"{\"": \""10%\""}",33556,1,"""Europe""" +2023-09-06,27832,6847,"[\""Tablet\"", \""Phone\""]",2581.74,"{\""seasonal\"": \""7%\""}",144978,1,"""Asia""" +2023-10-27,27833,1751,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3844.65,{},47794,0,"""South America""" +2024-10-25,27834,6968,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3057.42,"{\""seasonal\"": \""26%\""}",68420,0,"""North America""" +2024-07-29,27835,9207,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3156.0,"{\""seasonal\"": \""5%\""}",49508,0,"""Europe""" +2023-10-18,27836,4434,"[\""Keyboard\""]",2866.14,{},279043,1,"""Asia""" +2023-01-03,27837,7103,"[\""Tablet\"", \""Charger\""]",3327.0,"{\""promo\"": \""13%\""}",167887,1,"""South America""" +2023-05-20,27838,7568,"[\""Charger\""]",785.81,"{\""loyalty\"": \""17%\""}",58472,1,"""South America""" +2024-11-01,27839,2897,"[\""Wireless Mouse\"", \""Laptop\""]",1399.34,"{\""loyalty\"": \""28%\""}",23650,0,"""North America""" +2023-04-29,27840,4152,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3711.73,{},231386,0,"""Africa""" +2024-11-26,27841,6352,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3897.78,{},135912,0,"""North America""" +2024-01-30,27842,124,"[\""Wireless Mouse\"", \""Charger\""]",2387.33,"{\"": \""25%\""}",136407,0,"""South America""" +2023-10-11,27843,4692,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4240.68,{},297141,1,"""Asia""" +2024-04-12,27844,482,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",855.06,"{\""seasonal\"": \""10%\""}",1714,1,"""South America""" +2024-03-22,27845,8550,"[\""Phone\""]",2761.01,{},297152,0,"""Africa""" +2023-09-01,27846,5911,"[\""Headphones\"", \""Laptop\""]",448.72,"{\"": \""26%\""}",273115,1,"""Africa""" +2023-03-26,27847,9262,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2579.94,"{\""loyalty\"": \""15%\""}",61956,0,"""Asia""" +2023-08-02,27848,7019,"[\""Wireless Mouse\"", \""Phone\""]",196.56,{},276493,0,"""Africa""" +2023-01-23,27849,5527,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",787.15,{},105363,0,"""Africa""" +2024-08-09,27850,8176,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4923.25,"{\""promo\"": \""10%\""}",252878,1,"""Africa""" +2023-04-09,27851,5677,"[\""Phone\""]",865.2,{},293148,0,"""Africa""" +2024-01-28,27852,8673,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3427.18,"{\""seasonal\"": \""23%\""}",49593,1,"""South America""" +2024-10-07,27853,2401,"[\""Laptop\""]",231.35,"{\""loyalty\"": \""19%\""}",101013,0,"""Asia""" +2023-12-12,27854,7102,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4061.14,"{\""seasonal\"": \""18%\""}",54551,1,"""Europe""" +2023-12-25,27855,1805,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",301.48,"{\"": \""27%\""}",73932,0,"""North America""" +2024-09-19,27856,6801,"[\""Monitor\""]",2718.91,"{\""promo\"": \""28%\""}",118107,1,"""South America""" +2023-06-30,27857,4306,"[\""Keyboard\"", \""Monitor\""]",747.86,"{\""seasonal\"": \""5%\""}",252296,1,"""South America""" +2023-06-28,27858,6234,"[\""Laptop\""]",196.97,{},265810,0,"""South America""" +2023-12-26,27859,5179,"[\""Phone\""]",3494.12,{},9606,1,"""Africa""" +2024-09-07,27860,4597,"[\""Monitor\""]",4284.92,"{\""seasonal\"": \""15%\""}",10526,0,"""North America""" +2024-09-25,27861,4728,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2342.04,{},53788,1,"""Africa""" +2023-09-08,27862,1292,"[\""Headphones\""]",3535.2,{},237821,0,"""North America""" +2024-09-20,27863,9128,"[\""Keyboard\"", \""Charger\""]",4702.55,"{\""promo\"": \""22%\""}",122102,0,"""South America""" +2024-02-15,27864,1773,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",693.65,{},269391,0,"""Asia""" +2024-09-29,27865,1362,"[\""Charger\"", \""Keyboard\""]",446.29,{},61738,1,"""Africa""" +2024-03-16,27866,9953,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4873.98,"{\"": \""15%\""}",17484,0,"""Africa""" +2023-03-08,27867,8953,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3524.13,{},285074,1,"""North America""" +2023-03-15,27868,6566,"[\""Charger\""]",2122.59,{},61992,1,"""South America""" +2023-03-01,27869,4535,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",651.05,"{\""loyalty\"": \""9%\""}",43511,0,"""Asia""" +2023-03-06,27870,1407,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",574.72,{},121847,0,"""Europe""" +2024-04-30,27871,1627,"[\""Laptop\"", \""Tablet\""]",3087.62,"{\""loyalty\"": \""21%\""}",140272,1,"""North America""" +2023-01-28,27872,9901,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1438.82,"{\""loyalty\"": \""24%\""}",150837,1,"""Asia""" +2024-12-08,27873,7036,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2582.45,{},52871,0,"""North America""" +2023-01-25,27874,7235,"[\""Monitor\"", \""Headphones\""]",1422.23,{},105194,1,"""Asia""" +2024-02-24,27875,7132,"[\""Headphones\""]",3941.07,{},129442,0,"""Asia""" +2024-07-07,27876,1700,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",483.81,{},100723,1,"""North America""" +2024-03-26,27877,605,"[\""Keyboard\"", \""Tablet\""]",3276.85,{},214001,0,"""North America""" +2023-11-08,27878,4014,"[\""Keyboard\""]",4292.17,"{\"": \""22%\""}",50493,1,"""Europe""" +2023-07-01,27879,9787,"[\""Laptop\""]",2792.04,"{\""seasonal\"": \""6%\""}",265950,1,"""North America""" +2024-09-22,27880,3231,"[\""Charger\"", \""Tablet\""]",3333.26,{},46905,1,"""Europe""" +2023-07-11,27881,8670,"[\""Wireless Mouse\"", \""Monitor\""]",4236.19,"{\"": \""21%\""}",216432,1,"""Europe""" +2024-01-27,27882,5894,"[\""Monitor\"", \""Tablet\""]",3287.71,{},220495,1,"""South America""" +2023-01-29,27883,8872,"[\""Phone\"", \""Wireless Mouse\""]",1211.8,"{\""promo\"": \""15%\""}",126483,1,"""South America""" +2024-11-07,27884,5821,"[\""Tablet\""]",2111.36,{},202238,0,"""Africa""" +2023-06-18,27885,8261,"[\""Phone\""]",1221.79,"{\""loyalty\"": \""17%\""}",262841,0,"""Africa""" +2023-09-17,27886,868,"[\""Monitor\""]",4530.33,{},28963,0,"""North America""" +2023-09-06,27887,305,"[\""Monitor\"", \""Phone\""]",2090.81,"{\""seasonal\"": \""15%\""}",121651,0,"""South America""" +2024-01-23,27888,6287,"[\""Tablet\"", \""Laptop\""]",2273.39,"{\"": \""8%\""}",232408,0,"""North America""" +2023-04-01,27889,3709,"[\""Keyboard\"", \""Laptop\""]",1376.67,{},175852,0,"""Africa""" +2024-04-08,27890,557,"[\""Tablet\""]",2010.37,"{\"": \""22%\""}",34809,0,"""North America""" +2023-08-11,27891,4282,"[\""Laptop\""]",3931.92,{},18378,0,"""Europe""" +2023-01-25,27892,7972,"[\""Headphones\""]",3621.79,"{\""loyalty\"": \""28%\""}",187482,0,"""North America""" +2024-09-10,27893,162,"[\""Wireless Mouse\"", \""Monitor\""]",1518.67,"{\""promo\"": \""8%\""}",280012,0,"""North America""" +2024-05-30,27894,270,"[\""Phone\""]",2708.78,"{\""seasonal\"": \""7%\""}",255047,1,"""Asia""" +2023-01-15,27895,5642,"[\""Laptop\"", \""Headphones\""]",4887.92,"{\""seasonal\"": \""13%\""}",256789,1,"""North America""" +2023-10-24,27896,9568,"[\""Headphones\"", \""Keyboard\""]",511.24,"{\""promo\"": \""21%\""}",218488,1,"""Asia""" +2024-04-29,27897,7002,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4389.94,"{\"": \""21%\""}",25293,0,"""Europe""" +2024-07-21,27898,5599,"[\""Laptop\""]",4916.71,{},274721,0,"""South America""" +2023-02-21,27899,5331,"[\""Charger\""]",4752.01,"{\""loyalty\"": \""8%\""}",47977,0,"""Europe""" +2023-02-28,27900,51,"[\""Wireless Mouse\""]",4793.45,{},230734,1,"""Asia""" +2024-04-16,27901,6020,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2503.73,{},202601,1,"""Asia""" +2024-05-25,27902,2705,"[\""Charger\""]",1836.27,"{\""loyalty\"": \""9%\""}",168941,1,"""North America""" +2023-01-05,27903,1265,"[\""Charger\"", \""Phone\""]",1842.15,{},16528,1,"""North America""" +2023-06-30,27904,2703,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2894.2,"{\""loyalty\"": \""13%\""}",28458,0,"""Asia""" +2023-12-08,27905,7997,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1923.38,"{\"": \""11%\""}",202228,0,"""Africa""" +2024-07-29,27906,6400,"[\""Monitor\""]",1971.06,"{\""loyalty\"": \""7%\""}",187316,1,"""Europe""" +2024-03-16,27907,3866,"[\""Charger\"", \""Keyboard\""]",1426.16,"{\""promo\"": \""6%\""}",200148,1,"""Asia""" +2024-07-12,27908,8696,"[\""Charger\"", \""Monitor\""]",1986.77,{},140939,1,"""North America""" +2023-05-14,27909,1539,"[\""Headphones\"", \""Charger\""]",1055.59,{},1995,1,"""North America""" +2024-11-23,27910,5215,"[\""Laptop\"", \""Monitor\""]",791.4,{},137809,0,"""South America""" +2023-12-02,27911,1602,"[\""Phone\""]",1249.11,{},57077,1,"""South America""" +2023-08-14,27912,4219,"[\""Charger\""]",3422.17,{},206996,1,"""South America""" +2024-03-07,27913,2428,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3831.11,{},248206,1,"""South America""" +2024-08-18,27914,6793,"[\""Tablet\""]",301.99,"{\""loyalty\"": \""19%\""}",7431,1,"""Africa""" +2024-01-20,27915,656,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3312.31,"{\"": \""15%\""}",144433,0,"""Asia""" +2023-11-19,27916,573,"[\""Wireless Mouse\"", \""Headphones\""]",1932.27,"{\"": \""27%\""}",167939,0,"""Europe""" +2024-12-27,27917,6882,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3622.41,{},262863,1,"""North America""" +2024-09-08,27918,1895,"[\""Tablet\"", \""Phone\""]",4934.15,{},210422,0,"""Africa""" +2023-06-26,27919,8067,"[\""Tablet\""]",594.23,"{\""promo\"": \""13%\""}",47452,1,"""Asia""" +2023-02-17,27920,4685,"[\""Phone\"", \""Laptop\""]",534.91,{},15546,1,"""Europe""" +2024-05-30,27921,4475,"[\""Keyboard\"", \""Tablet\""]",416.17,"{\""seasonal\"": \""28%\""}",275519,1,"""North America""" +2023-03-21,27922,3474,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",619.56,"{\""promo\"": \""17%\""}",295712,0,"""South America""" +2023-01-29,27923,917,"[\""Charger\""]",3021.88,{},92150,1,"""Africa""" +2024-03-28,27924,172,"[\""Laptop\"", \""Charger\""]",590.12,{},72518,1,"""Africa""" +2024-09-12,27925,7697,"[\""Headphones\"", \""Tablet\""]",834.64,"{\""promo\"": \""28%\""}",150202,1,"""South America""" +2024-09-30,27926,1615,"[\""Tablet\""]",3604.73,"{\""seasonal\"": \""9%\""}",264495,0,"""South America""" +2023-10-05,27927,461,"[\""Tablet\""]",3763.08,{},234913,0,"""Africa""" +2024-11-27,27928,7971,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4142.12,{},172542,0,"""North America""" +2024-04-25,27929,3785,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1171.75,"{\""loyalty\"": \""7%\""}",253920,1,"""North America""" +2024-12-11,27930,3865,"[\""Wireless Mouse\"", \""Tablet\""]",185.88,{},290485,1,"""Europe""" +2023-06-21,27931,4835,"[\""Keyboard\""]",4529.71,"{\""seasonal\"": \""21%\""}",78422,1,"""Europe""" +2023-06-25,27932,3992,"[\""Tablet\""]",3037.78,{},196125,0,"""North America""" +2023-01-27,27933,7225,"[\""Charger\"", \""Wireless Mouse\""]",4996.62,"{\""seasonal\"": \""21%\""}",231223,0,"""Europe""" +2024-10-05,27934,3688,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3713.55,"{\""loyalty\"": \""27%\""}",156622,1,"""Africa""" +2023-01-31,27935,8983,"[\""Charger\""]",4834.0,"{\"": \""21%\""}",259276,0,"""Europe""" +2023-11-12,27936,9663,"[\""Laptop\"", \""Monitor\""]",1692.69,"{\"": \""19%\""}",6381,0,"""Europe""" +2023-01-11,27937,2935,"[\""Charger\""]",483.97,{},171622,0,"""Europe""" +2024-04-29,27938,9941,"[\""Monitor\"", \""Laptop\""]",2922.75,"{\""promo\"": \""14%\""}",199030,0,"""Europe""" +2024-02-05,27939,1497,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2817.64,{},130783,1,"""Africa""" +2024-03-08,27940,6650,"[\""Laptop\"", \""Headphones\""]",649.15,{},248877,0,"""Asia""" +2023-11-29,27941,9976,"[\""Charger\""]",1625.79,"{\""loyalty\"": \""28%\""}",13824,1,"""Africa""" +2023-11-09,27942,2743,"[\""Charger\""]",2754.52,{},163931,0,"""Europe""" +2024-04-08,27943,974,"[\""Keyboard\"", \""Monitor\""]",4368.88,{},74234,1,"""Europe""" +2024-03-01,27944,9843,"[\""Tablet\"", \""Laptop\""]",3086.02,"{\""seasonal\"": \""15%\""}",53804,0,"""Africa""" +2024-02-29,27945,2916,"[\""Monitor\"", \""Laptop\""]",4428.27,"{\""loyalty\"": \""12%\""}",236933,0,"""North America""" +2023-06-24,27946,4936,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1982.49,{},54965,1,"""North America""" +2024-04-16,27947,7637,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3589.05,{},106122,1,"""Africa""" +2023-03-31,27948,2315,"[\""Keyboard\"", \""Wireless Mouse\""]",3381.69,"{\""seasonal\"": \""26%\""}",215771,0,"""Asia""" +2024-10-17,27949,2761,"[\""Phone\""]",1295.69,"{\""loyalty\"": \""17%\""}",89585,1,"""South America""" +2024-06-12,27950,7195,"[\""Tablet\""]",2032.69,{},128367,1,"""Asia""" +2024-12-01,27951,1585,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",474.79,"{\""loyalty\"": \""10%\""}",110425,0,"""South America""" +2023-02-25,27952,8252,"[\""Headphones\"", \""Charger\""]",1420.24,{},222909,0,"""Europe""" +2024-06-07,27953,9631,"[\""Monitor\"", \""Charger\""]",904.58,{},47338,1,"""North America""" +2024-10-10,27954,3421,"[\""Phone\"", \""Keyboard\""]",3426.35,"{\""loyalty\"": \""20%\""}",106008,1,"""South America""" +2023-12-05,27955,1241,"[\""Tablet\"", \""Wireless Mouse\""]",2901.69,{},218915,1,"""Asia""" +2024-09-26,27956,8130,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",655.55,"{\"": \""17%\""}",278630,0,"""Europe""" +2023-02-17,27957,821,"[\""Charger\"", \""Tablet\""]",311.18,{},141045,0,"""Europe""" +2023-09-01,27958,8946,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",795.38,"{\""seasonal\"": \""7%\""}",49408,0,"""North America""" +2023-12-05,27959,5488,"[\""Tablet\"", \""Headphones\""]",4949.89,"{\""seasonal\"": \""8%\""}",260865,1,"""Asia""" +2023-05-29,27960,5031,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",395.44,"{\"": \""7%\""}",144021,0,"""Asia""" +2024-06-10,27961,5909,"[\""Wireless Mouse\"", \""Headphones\""]",1232.75,{},121398,0,"""North America""" +2023-05-24,27962,6896,"[\""Phone\"", \""Charger\""]",2700.66,{},40446,0,"""Europe""" +2024-06-04,27963,6992,"[\""Keyboard\"", \""Monitor\""]",2586.36,{},263081,0,"""Africa""" +2023-05-19,27964,1697,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",641.24,{},146384,1,"""Asia""" +2024-06-28,27965,7456,"[\""Monitor\""]",2672.45,{},61205,0,"""Africa""" +2024-08-16,27966,3508,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4289.32,{},42653,1,"""North America""" +2023-09-10,27967,4714,"[\""Monitor\"", \""Wireless Mouse\""]",1223.7,"{\""loyalty\"": \""29%\""}",96637,0,"""North America""" +2023-11-23,27968,8687,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4221.86,"{\""seasonal\"": \""25%\""}",164812,1,"""Europe""" +2024-10-10,27969,1938,"[\""Tablet\""]",1685.14,"{\""seasonal\"": \""6%\""}",3389,0,"""South America""" +2024-06-10,27970,6467,"[\""Headphones\""]",2736.83,"{\"": \""6%\""}",283611,1,"""Europe""" +2023-04-13,27971,4343,"[\""Charger\"", \""Phone\""]",4204.58,{},219254,1,"""North America""" +2023-01-22,27972,334,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3260.99,"{\""seasonal\"": \""29%\""}",1836,0,"""Europe""" +2023-04-11,27973,4585,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",206.45,{},4775,1,"""Asia""" +2023-05-12,27974,5795,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",743.2,{},167829,0,"""Africa""" +2023-02-25,27975,3486,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4884.22,"{\""loyalty\"": \""7%\""}",160271,0,"""South America""" +2023-01-23,27976,9914,"[\""Charger\""]",4856.21,{},58381,1,"""Europe""" +2024-04-07,27977,5915,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3748.97,{},226507,1,"""Europe""" +2024-01-19,27978,7752,"[\""Wireless Mouse\"", \""Keyboard\""]",464.37,{},76948,1,"""Africa""" +2024-07-08,27979,1801,"[\""Phone\""]",1964.26,"{\"": \""8%\""}",42674,0,"""North America""" +2023-02-13,27980,3302,"[\""Phone\""]",1073.94,{},163769,1,"""South America""" +2024-10-19,27981,6975,"[\""Monitor\""]",2905.26,{},95940,1,"""North America""" +2023-07-14,27982,83,"[\""Tablet\"", \""Laptop\""]",2420.7,"{\"": \""28%\""}",74936,0,"""Africa""" +2024-10-16,27983,7973,"[\""Laptop\""]",3582.07,"{\""loyalty\"": \""6%\""}",186633,1,"""Africa""" +2023-11-10,27984,4274,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2262.66,"{\""promo\"": \""20%\""}",181695,1,"""Europe""" +2023-09-04,27985,9609,"[\""Tablet\""]",4470.43,"{\"": \""28%\""}",281245,0,"""Asia""" +2024-07-14,27986,7501,"[\""Tablet\""]",591.34,{},226161,1,"""Asia""" +2024-12-10,27987,7428,"[\""Phone\""]",3375.05,{},26369,0,"""Africa""" +2023-02-28,27988,2879,"[\""Headphones\"", \""Tablet\""]",1008.4,"{\"": \""19%\""}",129325,0,"""Africa""" +2023-06-01,27989,7032,"[\""Charger\"", \""Headphones\""]",1858.2,"{\""loyalty\"": \""13%\""}",285448,1,"""Europe""" +2023-05-02,27990,6656,"[\""Laptop\"", \""Tablet\""]",64.43,{},232799,1,"""Africa""" +2023-04-02,27991,1762,"[\""Charger\""]",555.88,"{\""loyalty\"": \""28%\""}",158982,0,"""Europe""" +2023-02-03,27992,8610,"[\""Keyboard\"", \""Monitor\""]",2778.19,{},170733,0,"""North America""" +2023-11-29,27993,9472,"[\""Keyboard\""]",3319.95,{},91149,1,"""North America""" +2023-01-26,27994,4511,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",424.65,"{\""seasonal\"": \""5%\""}",161356,1,"""Asia""" +2023-08-07,27995,767,"[\""Headphones\"", \""Wireless Mouse\""]",2963.37,{},206015,1,"""South America""" +2024-01-21,27996,7200,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2419.91,"{\""promo\"": \""22%\""}",283217,0,"""South America""" +2023-01-18,27997,5035,"[\""Headphones\"", \""Monitor\""]",3540.59,"{\"": \""14%\""}",208015,1,"""Asia""" +2024-05-09,27998,3313,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4873.56,"{\""seasonal\"": \""23%\""}",276308,0,"""Africa""" +2024-12-15,27999,6349,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4704.04,"{\""loyalty\"": \""24%\""}",256992,0,"""North America""" +2023-10-19,28000,4494,"[\""Laptop\""]",2929.86,"{\""seasonal\"": \""5%\""}",227817,1,"""Africa""" +2024-08-28,28001,328,"[\""Laptop\"", \""Wireless Mouse\""]",457.01,"{\""seasonal\"": \""8%\""}",298163,0,"""Africa""" +2023-05-20,28002,5061,"[\""Laptop\"", \""Charger\""]",1233.01,{},117548,1,"""Europe""" +2024-04-14,28003,8602,"[\""Phone\""]",2412.4,"{\""seasonal\"": \""5%\""}",76375,1,"""North America""" +2024-08-04,28004,1845,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4941.84,"{\"": \""11%\""}",123479,0,"""Europe""" +2023-09-04,28005,2488,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3948.31,{},174328,1,"""North America""" +2023-12-26,28006,4352,"[\""Wireless Mouse\"", \""Phone\""]",1674.2,{},207973,1,"""Africa""" +2024-08-13,28007,8708,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",69.73,{},209875,0,"""Europe""" +2024-04-09,28008,1731,"[\""Monitor\""]",4260.68,"{\""loyalty\"": \""27%\""}",286508,0,"""North America""" +2024-06-27,28009,8398,"[\""Monitor\"", \""Laptop\""]",4419.66,"{\""loyalty\"": \""21%\""}",153820,0,"""North America""" +2024-01-31,28010,7364,"[\""Tablet\"", \""Phone\""]",3273.89,{},48782,0,"""North America""" +2024-06-20,28011,1019,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3023.29,{},180957,0,"""North America""" +2024-04-15,28012,3267,"[\""Headphones\"", \""Monitor\""]",4240.41,{},286815,1,"""Asia""" +2023-01-07,28013,6378,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2960.11,"{\""loyalty\"": \""11%\""}",196040,1,"""Asia""" +2024-12-13,28014,5867,"[\""Tablet\""]",3865.12,{},1116,0,"""North America""" +2024-01-29,28015,618,"[\""Phone\""]",4869.46,"{\""seasonal\"": \""20%\""}",242909,0,"""North America""" +2024-04-24,28016,2206,"[\""Keyboard\"", \""Charger\""]",3738.2,"{\""seasonal\"": \""11%\""}",199665,1,"""Europe""" +2024-06-08,28017,3030,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3204.04,"{\"": \""17%\""}",171262,0,"""South America""" +2023-06-23,28018,5395,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1466.35,{},73306,0,"""Africa""" +2024-05-29,28019,458,"[\""Monitor\""]",3048.98,"{\"": \""16%\""}",225549,0,"""Europe""" +2024-02-19,28020,9899,"[\""Monitor\""]",3919.88,{},226764,0,"""South America""" +2023-04-19,28021,2352,"[\""Tablet\"", \""Wireless Mouse\""]",4799.6,{},203601,1,"""North America""" +2024-06-25,28022,3662,"[\""Phone\""]",3750.4,"{\""loyalty\"": \""16%\""}",165090,1,"""Asia""" +2023-05-09,28023,2927,"[\""Tablet\"", \""Wireless Mouse\""]",2619.73,"{\""seasonal\"": \""23%\""}",189651,1,"""Europe""" +2024-06-25,28024,378,"[\""Keyboard\"", \""Tablet\""]",2571.82,"{\""promo\"": \""21%\""}",74592,0,"""Europe""" +2024-02-29,28025,2682,"[\""Tablet\"", \""Charger\""]",2227.74,{},268676,0,"""North America""" +2024-05-29,28026,6747,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",529.51,"{\""loyalty\"": \""20%\""}",203149,1,"""Africa""" +2024-08-11,28027,3039,"[\""Keyboard\""]",4757.93,"{\""seasonal\"": \""18%\""}",178698,1,"""Africa""" +2024-02-17,28028,3452,"[\""Wireless Mouse\"", \""Laptop\""]",982.75,"{\""promo\"": \""30%\""}",295932,0,"""Europe""" +2023-02-27,28029,7321,"[\""Keyboard\""]",2185.35,{},207014,0,"""Asia""" +2024-03-05,28030,1768,"[\""Laptop\""]",3529.39,"{\""loyalty\"": \""27%\""}",97121,1,"""Africa""" +2024-05-10,28031,5981,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2841.99,{},4469,0,"""Africa""" +2024-03-07,28032,5472,"[\""Monitor\""]",1189.45,"{\""promo\"": \""24%\""}",77557,1,"""Africa""" +2024-12-13,28033,5467,"[\""Wireless Mouse\"", \""Headphones\""]",1225.65,"{\"": \""23%\""}",11011,1,"""Asia""" +2024-01-05,28034,4799,"[\""Phone\"", \""Wireless Mouse\""]",4723.4,{},179030,1,"""Asia""" +2023-11-27,28035,8115,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",325.19,"{\""loyalty\"": \""21%\""}",174675,1,"""North America""" +2024-11-26,28036,5627,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4519.77,"{\""seasonal\"": \""13%\""}",216216,0,"""South America""" +2023-06-17,28037,1359,"[\""Phone\"", \""Headphones\""]",844.5,"{\""loyalty\"": \""9%\""}",242389,0,"""Europe""" +2024-03-31,28038,8773,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",697.05,{},133020,1,"""North America""" +2024-07-31,28039,7999,"[\""Wireless Mouse\""]",2937.26,{},172111,0,"""Asia""" +2024-11-29,28040,2070,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1917.86,{},82198,0,"""Europe""" +2023-02-23,28041,4129,"[\""Laptop\"", \""Tablet\""]",4236.99,"{\""promo\"": \""29%\""}",163234,1,"""Asia""" +2024-11-06,28042,3269,"[\""Tablet\""]",117.75,{},80964,1,"""South America""" +2023-11-02,28043,261,"[\""Charger\"", \""Headphones\""]",1465.07,{},76943,0,"""Europe""" +2024-02-14,28044,8199,"[\""Phone\"", \""Charger\""]",4072.64,{},285444,1,"""Africa""" +2023-11-20,28045,8281,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3065.66,{},251557,1,"""South America""" +2024-05-03,28046,5503,"[\""Laptop\""]",3705.25,{},61013,1,"""Europe""" +2023-04-10,28047,122,"[\""Charger\""]",3175.77,{},73224,0,"""Asia""" +2023-09-13,28048,6604,"[\""Phone\""]",4898.43,"{\""seasonal\"": \""28%\""}",173186,1,"""Asia""" +2023-10-27,28049,3988,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2017.92,"{\""promo\"": \""20%\""}",168566,1,"""Europe""" +2023-07-31,28050,3178,"[\""Keyboard\""]",4618.82,"{\"": \""20%\""}",221516,1,"""North America""" +2023-05-30,28051,4450,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2948.37,{},42692,1,"""Africa""" +2024-05-02,28052,6954,"[\""Headphones\"", \""Wireless Mouse\""]",2282.23,"{\""promo\"": \""24%\""}",124219,1,"""Europe""" +2023-01-11,28053,4554,"[\""Monitor\"", \""Phone\""]",4486.92,{},135089,0,"""Asia""" +2024-07-30,28054,9617,"[\""Laptop\""]",3757.27,{},257891,0,"""Asia""" +2023-06-08,28055,2008,"[\""Laptop\""]",1460.0,{},105128,1,"""North America""" +2024-11-17,28056,2284,"[\""Monitor\""]",2242.25,"{\""loyalty\"": \""19%\""}",170787,1,"""South America""" +2023-02-24,28057,7588,"[\""Wireless Mouse\"", \""Laptop\""]",1124.92,"{\"": \""20%\""}",233369,0,"""South America""" +2024-11-26,28058,5762,"[\""Keyboard\""]",4608.18,{},262127,1,"""Europe""" +2024-02-15,28059,5557,"[\""Phone\""]",2742.28,{},166647,1,"""South America""" +2023-06-12,28060,2149,"[\""Charger\""]",1559.94,{},14361,1,"""Asia""" +2023-12-01,28061,4010,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",792.59,"{\""promo\"": \""12%\""}",148365,0,"""Africa""" +2023-05-25,28062,2235,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",226.9,"{\""loyalty\"": \""5%\""}",202263,0,"""North America""" +2024-03-16,28063,9413,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2992.99,"{\"": \""28%\""}",156943,0,"""North America""" +2023-01-02,28064,1984,"[\""Phone\""]",4433.84,"{\""promo\"": \""11%\""}",160082,0,"""Asia""" +2023-12-05,28065,8925,"[\""Monitor\""]",1247.16,"{\""loyalty\"": \""16%\""}",128995,0,"""North America""" +2023-06-28,28066,1969,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",873.42,"{\""seasonal\"": \""20%\""}",29657,1,"""North America""" +2024-10-25,28067,9670,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3406.66,{},223877,0,"""Asia""" +2024-09-09,28068,5770,"[\""Tablet\"", \""Headphones\""]",3379.6,{},92516,0,"""Europe""" +2024-01-26,28069,3545,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4923.06,{},173216,0,"""Africa""" +2024-04-27,28070,137,"[\""Wireless Mouse\"", \""Tablet\""]",4373.73,"{\""promo\"": \""28%\""}",218169,1,"""Europe""" +2024-08-24,28071,6738,"[\""Tablet\""]",509.97,"{\""promo\"": \""13%\""}",256376,1,"""Africa""" +2023-04-17,28072,9617,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2138.9,{},35290,0,"""North America""" +2023-09-15,28073,6290,"[\""Keyboard\"", \""Laptop\""]",2229.81,"{\"": \""26%\""}",204286,1,"""Europe""" +2023-04-18,28074,8655,"[\""Tablet\""]",365.76,"{\""promo\"": \""5%\""}",261549,0,"""Asia""" +2024-09-12,28075,8407,"[\""Tablet\"", \""Keyboard\""]",451.16,{},78232,0,"""Asia""" +2023-02-09,28076,9573,"[\""Laptop\"", \""Monitor\""]",2422.31,{},287373,1,"""Asia""" +2023-01-17,28077,2946,"[\""Keyboard\""]",819.54,"{\""promo\"": \""6%\""}",235619,0,"""Europe""" +2024-07-30,28078,2311,"[\""Laptop\"", \""Monitor\""]",713.88,{},44685,0,"""North America""" +2023-01-16,28079,5021,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1986.53,"{\""seasonal\"": \""16%\""}",180326,0,"""North America""" +2023-05-25,28080,4527,"[\""Charger\"", \""Tablet\""]",4151.97,{},32369,0,"""South America""" +2023-06-23,28081,1613,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4371.79,"{\""promo\"": \""25%\""}",259124,1,"""Africa""" +2024-02-20,28082,7394,"[\""Charger\"", \""Phone\""]",4358.72,"{\""loyalty\"": \""11%\""}",124146,1,"""Europe""" +2024-03-05,28083,5903,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3943.87,"{\""promo\"": \""26%\""}",183307,0,"""North America""" +2024-09-20,28084,4698,"[\""Monitor\""]",3052.4,{},94432,0,"""North America""" +2023-10-10,28085,9055,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4312.03,{},279573,0,"""North America""" +2024-04-13,28086,9916,"[\""Laptop\"", \""Headphones\""]",1227.33,{},126740,1,"""North America""" +2023-05-13,28087,981,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2189.49,{},284284,0,"""Africa""" +2023-07-30,28088,9964,"[\""Wireless Mouse\""]",2882.65,{},145380,1,"""Europe""" +2024-09-01,28089,3069,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1604.78,{},156263,0,"""North America""" +2023-06-15,28090,4611,"[\""Headphones\""]",4361.52,"{\""loyalty\"": \""29%\""}",81977,1,"""Asia""" +2024-05-01,28091,3479,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4135.95,"{\"": \""18%\""}",193902,1,"""Asia""" +2023-07-13,28092,9891,"[\""Wireless Mouse\""]",1069.06,{},46013,0,"""Asia""" +2023-10-28,28093,3303,"[\""Monitor\"", \""Laptop\""]",2645.26,{},196496,1,"""South America""" +2024-06-18,28094,9767,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2569.71,"{\""seasonal\"": \""7%\""}",225950,0,"""Europe""" +2023-06-27,28095,7698,"[\""Keyboard\""]",1818.49,{},87195,1,"""South America""" +2024-11-18,28096,2658,"[\""Keyboard\"", \""Charger\""]",385.09,{},269798,0,"""South America""" +2023-10-28,28097,6900,"[\""Tablet\""]",2176.79,"{\""seasonal\"": \""20%\""}",267643,1,"""Africa""" +2023-06-04,28098,3888,"[\""Charger\"", \""Tablet\""]",312.2,{},278427,0,"""North America""" +2024-12-11,28099,8092,"[\""Keyboard\"", \""Charger\""]",2301.77,"{\"": \""28%\""}",107207,0,"""Africa""" +2023-01-01,28100,2863,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1536.65,{},223108,1,"""Europe""" +2023-03-09,28101,6596,"[\""Headphones\""]",1105.69,{},56905,0,"""South America""" +2024-04-04,28102,9835,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",323.63,{},54640,1,"""North America""" +2023-04-04,28103,7254,"[\""Monitor\"", \""Headphones\""]",4053.56,"{\""promo\"": \""20%\""}",139531,1,"""Asia""" +2023-02-01,28104,3168,"[\""Tablet\""]",4648.42,"{\"": \""22%\""}",299393,0,"""Asia""" +2023-05-13,28105,3369,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1335.27,"{\""promo\"": \""6%\""}",286543,1,"""Europe""" +2023-06-07,28106,7047,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4895.87,"{\""promo\"": \""18%\""}",121879,0,"""Asia""" +2023-02-03,28107,8434,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2482.6,{},159716,0,"""Asia""" +2023-11-08,28108,6453,"[\""Monitor\""]",1531.88,"{\""loyalty\"": \""19%\""}",74497,1,"""Asia""" +2024-08-26,28109,3478,"[\""Tablet\"", \""Headphones\""]",3508.31,"{\""seasonal\"": \""8%\""}",63622,0,"""Europe""" +2023-09-05,28110,5630,"[\""Monitor\"", \""Keyboard\""]",4091.67,"{\""seasonal\"": \""19%\""}",194487,1,"""North America""" +2023-01-09,28111,3701,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2788.68,{},9383,0,"""Africa""" +2024-04-11,28112,6711,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",505.11,"{\""promo\"": \""30%\""}",151143,1,"""Africa""" +2024-04-24,28113,1696,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3288.09,"{\""seasonal\"": \""22%\""}",37575,0,"""South America""" +2023-04-16,28114,7348,"[\""Headphones\"", \""Monitor\""]",3360.07,{},40325,0,"""Asia""" +2023-03-11,28115,7046,"[\""Keyboard\"", \""Headphones\""]",1662.58,"{\""promo\"": \""11%\""}",43322,1,"""South America""" +2023-03-06,28116,5346,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4013.52,{},189175,0,"""Asia""" +2024-05-25,28117,3581,"[\""Keyboard\"", \""Headphones\""]",964.09,"{\"": \""30%\""}",132211,1,"""Asia""" +2024-09-02,28118,2162,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",582.42,"{\""promo\"": \""22%\""}",210151,1,"""Africa""" +2024-05-12,28119,531,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3555.57,{},103900,1,"""Europe""" +2024-11-01,28120,4822,"[\""Charger\"", \""Headphones\""]",1224.45,{},194220,0,"""South America""" +2023-09-24,28121,8655,"[\""Charger\"", \""Laptop\""]",4522.71,{},129372,1,"""Asia""" +2023-03-31,28122,8606,"[\""Phone\"", \""Charger\""]",3945.69,"{\""promo\"": \""11%\""}",90098,1,"""South America""" +2023-10-21,28123,551,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2802.76,{},8285,0,"""Africa""" +2023-04-18,28124,7419,"[\""Wireless Mouse\"", \""Keyboard\""]",2228.55,{},143513,0,"""Africa""" +2023-11-11,28125,9558,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4966.03,"{\""seasonal\"": \""13%\""}",70656,0,"""Europe""" +2023-10-12,28126,171,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1495.59,{},6989,0,"""Asia""" +2024-10-18,28127,5400,"[\""Laptop\"", \""Headphones\""]",3511.18,"{\""promo\"": \""16%\""}",226499,1,"""Asia""" +2024-09-10,28128,2686,"[\""Charger\"", \""Keyboard\""]",1611.1,{},83425,0,"""Asia""" +2023-01-11,28129,8874,"[\""Laptop\""]",1263.99,"{\""promo\"": \""27%\""}",44724,1,"""North America""" +2024-11-14,28130,7456,"[\""Wireless Mouse\""]",4428.51,{},226645,1,"""Asia""" +2024-09-04,28131,9628,"[\""Tablet\""]",623.18,"{\""promo\"": \""22%\""}",71041,0,"""Asia""" +2023-05-05,28132,8273,"[\""Wireless Mouse\""]",2245.92,"{\""promo\"": \""28%\""}",219456,1,"""South America""" +2023-10-17,28133,6754,"[\""Keyboard\""]",4072.1,{},287182,1,"""Africa""" +2023-10-25,28134,934,"[\""Wireless Mouse\"", \""Headphones\""]",3761.47,"{\""loyalty\"": \""26%\""}",232060,1,"""Europe""" +2024-09-30,28135,4205,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3520.84,"{\""promo\"": \""18%\""}",42629,0,"""Asia""" +2024-09-18,28136,3286,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3055.49,"{\""promo\"": \""20%\""}",221573,0,"""South America""" +2024-10-01,28137,882,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4595.14,"{\""promo\"": \""29%\""}",27333,0,"""Asia""" +2023-01-07,28138,9268,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3771.09,"{\""seasonal\"": \""14%\""}",245005,0,"""Asia""" +2024-10-16,28139,7613,"[\""Monitor\"", \""Charger\""]",2683.52,{},141001,1,"""Asia""" +2023-08-25,28140,4816,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2710.73,{},158747,0,"""Asia""" +2024-05-12,28141,9601,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1126.58,{},276201,1,"""Europe""" +2024-03-15,28142,5038,"[\""Wireless Mouse\"", \""Tablet\""]",1035.8,"{\""seasonal\"": \""14%\""}",299012,1,"""Asia""" +2023-07-09,28143,5608,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4945.29,"{\""loyalty\"": \""20%\""}",91400,0,"""Asia""" +2023-11-10,28144,1793,"[\""Laptop\"", \""Headphones\""]",2336.99,"{\""promo\"": \""19%\""}",185812,1,"""South America""" +2023-06-07,28145,9377,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1821.18,"{\""promo\"": \""21%\""}",265861,0,"""South America""" +2024-10-20,28146,7208,"[\""Keyboard\""]",2950.5,{},290816,1,"""North America""" +2024-07-08,28147,6927,"[\""Tablet\"", \""Phone\""]",1482.2,{},91812,0,"""North America""" +2024-12-29,28148,7989,"[\""Tablet\""]",1617.57,{},135758,1,"""Africa""" +2023-04-22,28149,7953,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2432.22,"{\""loyalty\"": \""21%\""}",93641,1,"""Asia""" +2024-09-30,28150,8920,"[\""Monitor\"", \""Tablet\""]",3312.84,{},65109,1,"""South America""" +2023-08-19,28151,4693,"[\""Tablet\""]",4640.04,{},293456,1,"""North America""" +2024-10-28,28152,4812,"[\""Monitor\""]",831.07,"{\""promo\"": \""22%\""}",264623,1,"""North America""" +2023-09-01,28153,7393,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1723.54,{},79077,1,"""Asia""" +2024-10-30,28154,4560,"[\""Wireless Mouse\""]",1293.07,{},40376,1,"""North America""" +2024-04-20,28155,3957,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4259.67,"{\""seasonal\"": \""5%\""}",118644,0,"""Europe""" +2023-03-13,28156,6355,"[\""Tablet\""]",2805.54,{},55040,0,"""North America""" +2024-11-21,28157,2132,"[\""Tablet\""]",1740.85,{},53075,0,"""North America""" +2023-09-04,28158,7044,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1077.47,"{\"": \""20%\""}",199274,0,"""North America""" +2023-11-08,28159,3149,"[\""Phone\""]",4182.86,{},298813,0,"""Europe""" +2023-11-08,28160,4087,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3689.26,"{\""seasonal\"": \""12%\""}",189352,1,"""Africa""" +2023-09-07,28161,2055,"[\""Headphones\""]",985.29,"{\"": \""15%\""}",284696,1,"""Asia""" +2024-02-14,28162,3123,"[\""Tablet\""]",3105.62,"{\""promo\"": \""15%\""}",162934,0,"""Asia""" +2024-02-09,28163,3776,"[\""Phone\""]",3873.63,"{\"": \""12%\""}",214342,1,"""South America""" +2024-09-08,28164,587,"[\""Tablet\"", \""Phone\""]",774.03,{},154973,1,"""Asia""" +2024-07-02,28165,5938,"[\""Monitor\""]",1625.53,{},76090,1,"""Asia""" +2023-01-22,28166,219,"[\""Wireless Mouse\"", \""Headphones\""]",1958.23,{},258734,1,"""Africa""" +2024-02-19,28167,4971,"[\""Monitor\"", \""Charger\""]",420.06,{},88780,0,"""Asia""" +2023-08-12,28168,9621,"[\""Headphones\"", \""Wireless Mouse\""]",4884.59,"{\""seasonal\"": \""25%\""}",21283,1,"""South America""" +2024-11-15,28169,9003,"[\""Phone\"", \""Laptop\""]",962.19,"{\""loyalty\"": \""21%\""}",72192,1,"""South America""" +2023-07-16,28170,2654,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1659.28,"{\""loyalty\"": \""21%\""}",15929,0,"""Africa""" +2024-05-13,28171,4114,"[\""Phone\"", \""Charger\""]",344.05,{},42376,1,"""South America""" +2023-11-20,28172,3603,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3566.57,{},269346,0,"""North America""" +2023-06-20,28173,5037,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4570.2,{},88195,0,"""North America""" +2024-06-24,28174,370,"[\""Keyboard\""]",4810.94,{},60931,1,"""North America""" +2024-11-15,28175,7946,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1147.07,{},164090,0,"""Africa""" +2023-03-27,28176,5500,"[\""Laptop\""]",4000.26,"{\""loyalty\"": \""21%\""}",156474,0,"""Asia""" +2024-10-08,28177,4117,"[\""Phone\""]",413.03,{},210510,1,"""Africa""" +2024-04-30,28178,2209,"[\""Headphones\""]",889.43,{},74558,1,"""Asia""" +2024-02-04,28179,7769,"[\""Wireless Mouse\"", \""Phone\""]",3695.43,{},114981,1,"""Asia""" +2023-05-22,28180,7712,"[\""Tablet\"", \""Headphones\""]",4064.46,{},170168,0,"""North America""" +2024-10-26,28181,7307,"[\""Phone\""]",3791.64,{},244234,1,"""South America""" +2024-03-12,28182,7387,"[\""Tablet\""]",4209.18,"{\"": \""25%\""}",266522,1,"""Europe""" +2024-12-03,28183,4747,"[\""Charger\""]",2773.51,"{\""promo\"": \""29%\""}",232118,0,"""South America""" +2023-11-14,28184,9912,"[\""Keyboard\"", \""Charger\""]",4116.94,{},145033,1,"""Asia""" +2024-06-19,28185,6542,"[\""Tablet\"", \""Headphones\""]",1015.44,{},270553,1,"""Europe""" +2024-03-16,28186,2480,"[\""Charger\""]",3699.11,"{\"": \""29%\""}",99483,1,"""South America""" +2024-12-28,28187,8886,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",647.74,"{\""seasonal\"": \""16%\""}",157309,1,"""Europe""" +2023-11-10,28188,2542,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1373.19,{},235762,0,"""Asia""" +2024-02-14,28189,6114,"[\""Wireless Mouse\"", \""Phone\""]",1549.32,{},47327,1,"""North America""" +2023-11-13,28190,7398,"[\""Headphones\"", \""Monitor\""]",1944.94,{},209802,0,"""North America""" +2023-09-26,28191,4709,"[\""Headphones\""]",2675.3,{},111812,1,"""Africa""" +2024-03-02,28192,2585,"[\""Monitor\""]",4646.41,"{\""seasonal\"": \""27%\""}",239398,0,"""Africa""" +2024-11-24,28193,6553,"[\""Monitor\"", \""Keyboard\""]",3732.16,"{\""loyalty\"": \""19%\""}",265607,0,"""South America""" +2024-10-29,28194,49,"[\""Headphones\""]",853.36,{},22462,0,"""North America""" +2023-07-23,28195,2201,"[\""Monitor\"", \""Laptop\""]",3766.36,"{\"": \""6%\""}",42795,0,"""South America""" +2024-07-28,28196,5759,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2897.25,"{\""loyalty\"": \""14%\""}",227811,1,"""South America""" +2024-12-04,28197,7607,"[\""Laptop\"", \""Tablet\""]",3823.6,{},228388,1,"""Europe""" +2023-01-11,28198,212,"[\""Monitor\"", \""Charger\""]",2993.71,"{\""loyalty\"": \""12%\""}",246341,1,"""Europe""" +2023-12-22,28199,2389,"[\""Wireless Mouse\"", \""Headphones\""]",4753.35,{},270879,1,"""North America""" +2023-12-14,28200,8864,"[\""Headphones\"", \""Wireless Mouse\""]",1702.81,"{\""promo\"": \""18%\""}",235547,1,"""Africa""" +2024-07-17,28201,2370,"[\""Tablet\"", \""Phone\""]",3991.12,"{\"": \""26%\""}",83857,0,"""North America""" +2024-12-25,28202,177,"[\""Charger\"", \""Wireless Mouse\""]",2301.08,"{\""seasonal\"": \""20%\""}",116514,0,"""Asia""" +2024-05-05,28203,4500,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1451.06,"{\""promo\"": \""28%\""}",165350,1,"""Europe""" +2023-07-10,28204,7875,"[\""Wireless Mouse\""]",4530.57,"{\""promo\"": \""13%\""}",53293,0,"""South America""" +2024-07-01,28205,9692,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2301.27,{},157960,1,"""South America""" +2023-09-24,28206,666,"[\""Tablet\"", \""Headphones\""]",4474.38,{},179711,1,"""South America""" +2023-12-31,28207,5669,"[\""Keyboard\"", \""Laptop\""]",1209.2,{},74248,1,"""North America""" +2023-02-03,28208,2196,"[\""Charger\""]",3537.16,"{\""promo\"": \""25%\""}",238234,0,"""Asia""" +2024-12-06,28209,5403,"[\""Wireless Mouse\"", \""Monitor\""]",316.84,{},178882,0,"""North America""" +2024-02-07,28210,6158,"[\""Charger\"", \""Wireless Mouse\""]",3917.97,{},54510,1,"""Asia""" +2024-03-22,28211,432,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2854.35,"{\""loyalty\"": \""8%\""}",192786,1,"""North America""" +2024-10-02,28212,9306,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3649.34,{},276158,0,"""South America""" +2024-09-27,28213,2800,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2907.45,{},74805,1,"""Africa""" +2023-01-04,28214,5215,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4902.44,"{\"": \""24%\""}",37355,0,"""Asia""" +2024-11-01,28215,2811,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",783.08,"{\""seasonal\"": \""10%\""}",91647,1,"""North America""" +2024-05-14,28216,8047,"[\""Laptop\""]",812.27,"{\"": \""27%\""}",38098,1,"""Asia""" +2023-05-25,28217,8379,"[\""Headphones\""]",3949.09,"{\""loyalty\"": \""25%\""}",162136,0,"""North America""" +2024-11-25,28218,3204,"[\""Phone\""]",1018.73,"{\""promo\"": \""16%\""}",115502,1,"""Asia""" +2023-03-15,28219,4782,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2714.91,"{\""promo\"": \""28%\""}",278131,0,"""Europe""" +2024-10-27,28220,1719,"[\""Wireless Mouse\"", \""Keyboard\""]",2295.34,{},299370,0,"""Europe""" +2024-11-16,28221,4488,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2072.1,"{\""promo\"": \""8%\""}",209934,0,"""Europe""" +2024-12-21,28222,9050,"[\""Tablet\""]",2009.15,{},47592,1,"""Europe""" +2023-03-12,28223,4361,"[\""Wireless Mouse\"", \""Headphones\""]",642.94,"{\""seasonal\"": \""23%\""}",26725,1,"""North America""" +2023-08-07,28224,1346,"[\""Monitor\"", \""Wireless Mouse\""]",3348.05,{},74177,0,"""South America""" +2024-11-25,28225,2615,"[\""Keyboard\""]",2629.37,{},262971,0,"""Africa""" +2024-07-11,28226,9738,"[\""Keyboard\""]",1540.21,"{\""loyalty\"": \""12%\""}",58710,0,"""Asia""" +2023-07-09,28227,2378,"[\""Phone\""]",4314.96,"{\"": \""25%\""}",80430,0,"""Asia""" +2024-03-19,28228,7317,"[\""Headphones\""]",2387.11,"{\""promo\"": \""30%\""}",248107,1,"""North America""" +2024-02-20,28229,6339,"[\""Phone\"", \""Laptop\""]",4802.45,"{\""loyalty\"": \""25%\""}",92831,0,"""Asia""" +2023-12-25,28230,5654,"[\""Monitor\""]",3210.92,"{\""loyalty\"": \""7%\""}",33286,1,"""South America""" +2024-01-16,28231,2914,"[\""Laptop\"", \""Monitor\""]",4381.18,{},52860,0,"""Europe""" +2024-12-24,28232,9101,"[\""Wireless Mouse\""]",1409.58,"{\"": \""29%\""}",280265,0,"""Africa""" +2023-07-07,28233,3439,"[\""Monitor\"", \""Laptop\""]",1416.31,{},55245,1,"""Europe""" +2023-11-27,28234,4838,"[\""Laptop\"", \""Monitor\""]",934.75,"{\"": \""29%\""}",153400,1,"""Africa""" +2024-08-21,28235,654,"[\""Monitor\"", \""Tablet\""]",1511.31,{},258333,0,"""South America""" +2024-04-18,28236,353,"[\""Wireless Mouse\""]",564.5,"{\""promo\"": \""24%\""}",144866,0,"""Africa""" +2023-03-30,28237,2295,"[\""Monitor\""]",1252.67,"{\""loyalty\"": \""8%\""}",251677,0,"""North America""" +2023-02-13,28238,316,"[\""Headphones\""]",1339.68,{},192374,1,"""North America""" +2023-02-08,28239,2231,"[\""Phone\"", \""Wireless Mouse\""]",3567.19,{},155113,0,"""South America""" +2023-01-06,28240,4419,"[\""Laptop\""]",4218.42,"{\""loyalty\"": \""29%\""}",118455,1,"""North America""" +2024-01-26,28241,711,"[\""Phone\"", \""Tablet\""]",2358.49,{},120732,0,"""South America""" +2023-10-31,28242,3299,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3356.84,{},111105,0,"""North America""" +2023-06-27,28243,272,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3403.44,"{\"": \""6%\""}",188718,0,"""Africa""" +2024-10-10,28244,6014,"[\""Keyboard\""]",4864.95,"{\""loyalty\"": \""6%\""}",70247,0,"""Africa""" +2024-09-03,28245,7601,"[\""Keyboard\"", \""Phone\""]",4477.76,"{\""seasonal\"": \""30%\""}",254615,0,"""Asia""" +2024-04-19,28246,6922,"[\""Wireless Mouse\""]",4074.72,{},142416,1,"""Asia""" +2024-08-28,28247,4349,"[\""Wireless Mouse\"", \""Monitor\""]",2066.5,"{\""loyalty\"": \""26%\""}",258298,1,"""Asia""" +2024-06-28,28248,580,"[\""Phone\"", \""Keyboard\""]",3329.75,{},265659,0,"""Europe""" +2024-03-04,28249,3307,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4878.89,"{\""seasonal\"": \""19%\""}",163303,1,"""Asia""" +2024-05-14,28250,7034,"[\""Headphones\"", \""Keyboard\""]",2181.88,{},120980,0,"""South America""" +2024-03-07,28251,7292,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3173.45,"{\""promo\"": \""21%\""}",297845,1,"""Africa""" +2024-03-28,28252,7288,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3382.29,{},109712,0,"""Europe""" +2023-03-02,28253,2223,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4086.92,"{\""seasonal\"": \""9%\""}",96398,1,"""Africa""" +2024-07-02,28254,3410,"[\""Phone\"", \""Charger\""]",3649.63,"{\""seasonal\"": \""12%\""}",122383,1,"""Asia""" +2024-11-08,28255,5959,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1314.55,{},228215,1,"""Europe""" +2024-01-03,28256,1461,"[\""Monitor\""]",4983.91,"{\""seasonal\"": \""20%\""}",175933,0,"""Europe""" +2024-02-22,28257,4613,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2709.28,{},76141,0,"""South America""" +2024-12-07,28258,1768,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1881.27,{},171907,0,"""North America""" +2024-11-30,28259,4216,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3556.08,"{\""loyalty\"": \""22%\""}",127247,0,"""North America""" +2023-11-17,28260,7972,"[\""Tablet\""]",3813.49,{},287676,1,"""North America""" +2023-05-01,28261,4036,"[\""Headphones\"", \""Wireless Mouse\""]",405.48,{},144200,0,"""South America""" +2023-09-19,28262,5175,"[\""Wireless Mouse\""]",3399.39,"{\""promo\"": \""11%\""}",17480,1,"""Africa""" +2024-09-01,28263,578,"[\""Monitor\""]",1342.39,"{\""seasonal\"": \""23%\""}",219027,0,"""South America""" +2024-12-02,28264,1823,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1112.66,"{\""promo\"": \""16%\""}",97022,0,"""Europe""" +2024-04-26,28265,7638,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2246.75,"{\""loyalty\"": \""7%\""}",297621,1,"""Asia""" +2024-09-04,28266,5834,"[\""Keyboard\"", \""Wireless Mouse\""]",1341.4,{},144000,0,"""South America""" +2023-07-11,28267,5286,"[\""Keyboard\"", \""Phone\""]",1725.08,"{\"": \""7%\""}",175210,0,"""Africa""" +2023-10-14,28268,1028,"[\""Monitor\"", \""Tablet\""]",2761.04,{},64789,0,"""North America""" +2024-06-03,28269,3518,"[\""Monitor\"", \""Tablet\""]",725.61,{},145053,0,"""North America""" +2023-06-16,28270,9863,"[\""Tablet\"", \""Laptop\""]",4409.94,{},169096,1,"""North America""" +2024-01-25,28271,7231,"[\""Phone\""]",1041.04,"{\""loyalty\"": \""20%\""}",76713,0,"""North America""" +2023-03-08,28272,6425,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3796.64,"{\""seasonal\"": \""25%\""}",100593,1,"""South America""" +2024-06-16,28273,1384,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1080.85,{},294602,0,"""Africa""" +2023-03-10,28274,1353,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1596.15,{},259711,1,"""Africa""" +2024-08-20,28275,8401,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3289.84,"{\""seasonal\"": \""18%\""}",99694,1,"""Europe""" +2023-07-11,28276,2904,"[\""Laptop\""]",750.85,{},4363,1,"""North America""" +2024-03-27,28277,8543,"[\""Tablet\""]",1996.62,"{\""promo\"": \""30%\""}",289994,0,"""North America""" +2023-11-30,28278,3535,"[\""Monitor\"", \""Headphones\""]",2113.79,{},115636,1,"""North America""" +2023-04-01,28279,9426,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4931.02,{},136188,0,"""Europe""" +2024-09-04,28280,6360,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1109.46,{},253650,1,"""Africa""" +2024-06-24,28281,4995,"[\""Headphones\"", \""Keyboard\""]",2768.45,{},90799,0,"""Africa""" +2024-08-10,28282,5575,"[\""Keyboard\""]",3587.35,{},44578,1,"""North America""" +2023-07-20,28283,2071,"[\""Keyboard\"", \""Headphones\""]",295.96,"{\""seasonal\"": \""16%\""}",97180,0,"""South America""" +2024-05-29,28284,6420,"[\""Phone\""]",4909.03,"{\""loyalty\"": \""23%\""}",195553,0,"""North America""" +2024-10-26,28285,813,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1075.45,"{\""seasonal\"": \""18%\""}",101201,1,"""Europe""" +2024-10-15,28286,8852,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4287.01,"{\""promo\"": \""22%\""}",57560,1,"""Europe""" +2023-11-08,28287,6865,"[\""Laptop\""]",3482.82,{},171892,1,"""South America""" +2024-09-03,28288,598,"[\""Laptop\"", \""Wireless Mouse\""]",2655.01,"{\""loyalty\"": \""16%\""}",163796,0,"""Africa""" +2023-08-28,28289,983,"[\""Charger\"", \""Keyboard\""]",2146.31,"{\""seasonal\"": \""25%\""}",147181,0,"""South America""" +2024-04-01,28290,2142,"[\""Monitor\"", \""Wireless Mouse\""]",1351.36,{},143727,1,"""Africa""" +2023-04-07,28291,8983,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2878.24,{},102808,0,"""South America""" +2023-09-24,28292,9850,"[\""Laptop\"", \""Headphones\""]",1445.34,{},103383,0,"""South America""" +2024-03-25,28293,690,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2725.07,{},287013,0,"""Europe""" +2023-05-27,28294,3551,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1347.99,{},172731,1,"""Europe""" +2024-07-31,28295,9023,"[\""Laptop\"", \""Keyboard\""]",1551.0,"{\""seasonal\"": \""23%\""}",71722,1,"""South America""" +2024-08-25,28296,7323,"[\""Wireless Mouse\"", \""Monitor\""]",2699.41,{},252587,0,"""Africa""" +2024-02-06,28297,322,"[\""Tablet\"", \""Wireless Mouse\""]",3947.99,"{\""loyalty\"": \""15%\""}",155138,0,"""Europe""" +2024-03-04,28298,7841,"[\""Laptop\""]",2567.96,"{\"": \""18%\""}",9207,0,"""North America""" +2024-05-15,28299,3601,"[\""Monitor\""]",4208.8,{},10602,1,"""Europe""" +2023-03-31,28300,3174,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1611.05,{},140031,0,"""South America""" +2024-03-26,28301,2375,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",423.73,{},23630,0,"""Africa""" +2023-10-21,28302,1497,"[\""Tablet\""]",584.71,{},261543,0,"""North America""" +2023-08-31,28303,9157,"[\""Tablet\"", \""Phone\""]",277.7,"{\""promo\"": \""28%\""}",106754,1,"""Asia""" +2023-07-13,28304,9604,"[\""Tablet\"", \""Laptop\""]",314.89,{},1569,0,"""North America""" +2023-12-13,28305,5371,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",727.66,"{\""seasonal\"": \""29%\""}",133890,1,"""South America""" +2024-02-05,28306,6984,"[\""Monitor\"", \""Charger\""]",4729.45,{},292612,1,"""North America""" +2024-12-10,28307,3251,"[\""Keyboard\""]",2776.16,{},281232,0,"""Europe""" +2023-03-12,28308,4803,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1849.89,{},10390,1,"""Europe""" +2023-09-14,28309,5023,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4293.0,"{\""seasonal\"": \""21%\""}",105428,1,"""Europe""" +2023-05-27,28310,8065,"[\""Laptop\""]",301.64,{},228957,1,"""Africa""" +2023-11-13,28311,5412,"[\""Phone\"", \""Wireless Mouse\""]",2877.08,{},106001,1,"""Africa""" +2024-05-07,28312,2184,"[\""Keyboard\"", \""Tablet\""]",328.32,"{\""seasonal\"": \""7%\""}",42069,0,"""North America""" +2024-04-06,28313,6732,"[\""Headphones\""]",4158.8,{},206273,0,"""Africa""" +2023-04-17,28314,1974,"[\""Wireless Mouse\""]",4804.14,{},184369,0,"""North America""" +2024-02-19,28315,6788,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1622.17,{},249682,1,"""Asia""" +2023-06-11,28316,5702,"[\""Keyboard\"", \""Charger\""]",1017.15,{},58101,1,"""Europe""" +2024-12-02,28317,9437,"[\""Laptop\""]",2071.43,"{\""promo\"": \""24%\""}",225131,1,"""Asia""" +2023-12-05,28318,3607,"[\""Laptop\"", \""Keyboard\""]",3284.09,"{\""promo\"": \""24%\""}",94089,0,"""South America""" +2023-03-05,28319,3133,"[\""Wireless Mouse\"", \""Phone\""]",2710.23,{},163442,1,"""Africa""" +2024-07-19,28320,4800,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2656.52,{},243463,0,"""Asia""" +2023-10-27,28321,2825,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2725.69,"{\""promo\"": \""16%\""}",179794,1,"""Africa""" +2023-01-16,28322,6316,"[\""Laptop\"", \""Phone\""]",4315.71,"{\"": \""9%\""}",22141,1,"""Europe""" +2024-06-13,28323,6275,"[\""Wireless Mouse\""]",3374.78,{},100755,1,"""Europe""" +2024-06-17,28324,6383,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4061.66,"{\"": \""13%\""}",224885,1,"""Africa""" +2024-08-24,28325,7466,"[\""Keyboard\""]",2324.58,"{\""loyalty\"": \""28%\""}",73069,0,"""Asia""" +2024-11-01,28326,4606,"[\""Wireless Mouse\""]",61.18,{},109861,1,"""Asia""" +2023-04-23,28327,3301,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",680.94,"{\""promo\"": \""13%\""}",159385,0,"""Africa""" +2024-05-14,28328,4779,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",554.04,{},290995,1,"""Asia""" +2024-01-30,28329,4900,"[\""Wireless Mouse\""]",4893.84,"{\"": \""28%\""}",205567,0,"""Africa""" +2023-12-05,28330,6822,"[\""Laptop\""]",4521.33,{},137826,1,"""South America""" +2023-10-28,28331,5197,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2691.87,{},9849,1,"""South America""" +2023-11-21,28332,2460,"[\""Laptop\"", \""Phone\""]",3011.52,"{\""promo\"": \""29%\""}",173573,1,"""Africa""" +2023-03-31,28333,8022,"[\""Charger\""]",3064.23,"{\""loyalty\"": \""27%\""}",83309,0,"""Africa""" +2023-02-07,28334,8369,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3221.35,"{\""seasonal\"": \""27%\""}",60791,0,"""Asia""" +2024-09-12,28335,7844,"[\""Keyboard\"", \""Laptop\""]",4498.67,{},212390,0,"""Asia""" +2023-07-14,28336,3584,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3890.98,"{\""promo\"": \""11%\""}",46481,1,"""South America""" +2024-11-27,28337,2314,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1609.14,{},139704,0,"""Africa""" +2024-07-15,28338,9699,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",400.19,{},121472,0,"""South America""" +2023-08-07,28339,1984,"[\""Tablet\"", \""Monitor\""]",356.02,{},38736,1,"""Asia""" +2023-09-05,28340,998,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3340.12,{},229153,1,"""Africa""" +2023-11-02,28341,9485,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1328.97,"{\""loyalty\"": \""11%\""}",202451,0,"""North America""" +2024-08-27,28342,9199,"[\""Charger\""]",4673.74,"{\""seasonal\"": \""7%\""}",7742,1,"""North America""" +2023-03-02,28343,9256,"[\""Monitor\"", \""Phone\"", \""Charger\""]",857.0,{},199569,1,"""Europe""" +2024-05-13,28344,2744,"[\""Tablet\"", \""Laptop\""]",4633.46,{},18516,1,"""Africa""" +2023-09-05,28345,143,"[\""Laptop\""]",4479.25,{},148871,1,"""Asia""" +2024-05-17,28346,1987,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2305.77,"{\""loyalty\"": \""30%\""}",2957,1,"""Asia""" +2024-11-15,28347,4570,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",919.43,"{\"": \""7%\""}",115782,1,"""Africa""" +2024-07-19,28348,7665,"[\""Charger\""]",3065.26,{},203932,0,"""Africa""" +2024-06-30,28349,6598,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1005.03,"{\""promo\"": \""7%\""}",91760,1,"""North America""" +2024-10-19,28350,369,"[\""Charger\"", \""Phone\"", \""Headphones\""]",481.85,{},230083,1,"""Asia""" +2023-08-18,28351,7092,"[\""Charger\"", \""Monitor\""]",3691.37,{},111229,0,"""South America""" +2023-11-21,28352,3223,"[\""Headphones\"", \""Charger\""]",3460.48,"{\""promo\"": \""7%\""}",139994,0,"""North America""" +2023-06-16,28353,9721,"[\""Keyboard\"", \""Monitor\""]",4310.36,"{\""loyalty\"": \""9%\""}",131588,1,"""Europe""" +2023-11-20,28354,3522,"[\""Laptop\""]",2198.24,{},270192,0,"""Asia""" +2023-07-13,28355,8081,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4817.67,"{\"": \""27%\""}",137351,1,"""Africa""" +2023-08-22,28356,2178,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3443.1,{},158476,0,"""Europe""" +2024-02-04,28357,7242,"[\""Keyboard\"", \""Laptop\""]",1710.31,"{\""seasonal\"": \""12%\""}",118043,0,"""South America""" +2024-02-28,28358,4470,"[\""Tablet\""]",1367.72,{},220675,1,"""North America""" +2023-12-23,28359,8949,"[\""Charger\""]",4139.49,{},54102,0,"""Asia""" +2024-07-25,28360,7367,"[\""Charger\"", \""Laptop\""]",233.2,{},150658,1,"""North America""" +2023-01-25,28361,2158,"[\""Charger\""]",4243.01,"{\""loyalty\"": \""5%\""}",86560,0,"""Asia""" +2024-03-31,28362,1555,"[\""Headphones\""]",583.9,"{\""seasonal\"": \""14%\""}",278647,1,"""Asia""" +2024-06-10,28363,9862,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",213.36,{},227336,1,"""North America""" +2024-05-20,28364,2253,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1739.88,{},290641,1,"""South America""" +2024-05-10,28365,5124,"[\""Laptop\"", \""Phone\""]",4858.05,{},169888,1,"""North America""" +2024-11-23,28366,269,"[\""Charger\"", \""Phone\""]",2562.49,"{\""loyalty\"": \""21%\""}",291816,1,"""Europe""" +2024-02-22,28367,6222,"[\""Laptop\""]",2964.19,{},182454,0,"""Europe""" +2023-10-05,28368,1428,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1139.4,"{\"": \""5%\""}",49914,0,"""Asia""" +2024-05-31,28369,4346,"[\""Charger\""]",3463.76,"{\""loyalty\"": \""20%\""}",14010,1,"""North America""" +2023-01-25,28370,3245,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",323.4,{},233098,0,"""North America""" +2023-08-15,28371,7848,"[\""Charger\"", \""Headphones\""]",3282.95,"{\""seasonal\"": \""6%\""}",41421,1,"""Europe""" +2024-12-13,28372,310,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",777.82,{},60050,0,"""South America""" +2023-01-13,28373,1109,"[\""Phone\"", \""Wireless Mouse\""]",4495.98,"{\""promo\"": \""10%\""}",271463,1,"""North America""" +2024-02-28,28374,3638,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1727.53,{},277206,1,"""North America""" +2023-05-17,28375,7333,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",228.26,{},206804,0,"""Europe""" +2024-07-31,28376,5751,"[\""Headphones\""]",4391.79,"{\""promo\"": \""19%\""}",111989,0,"""Europe""" +2024-12-18,28377,7322,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3261.88,{},2102,1,"""Africa""" +2023-05-12,28378,7333,"[\""Monitor\"", \""Charger\""]",2953.67,{},125861,1,"""Asia""" +2024-08-11,28379,646,"[\""Wireless Mouse\""]",4245.13,{},226870,0,"""Africa""" +2024-09-15,28380,6565,"[\""Laptop\""]",764.97,{},257857,0,"""South America""" +2023-04-24,28381,2091,"[\""Monitor\""]",2929.53,"{\""seasonal\"": \""17%\""}",159049,0,"""Europe""" +2024-06-25,28382,1218,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2729.21,"{\""promo\"": \""8%\""}",143835,0,"""Asia""" +2023-05-06,28383,2689,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4513.35,"{\"": \""15%\""}",98359,0,"""Asia""" +2023-06-30,28384,2880,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2570.3,"{\""seasonal\"": \""29%\""}",94308,1,"""South America""" +2023-06-10,28385,8706,"[\""Phone\"", \""Charger\""]",4062.01,{},230397,1,"""Asia""" +2023-10-01,28386,7267,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1748.18,"{\"": \""28%\""}",270562,1,"""Africa""" +2024-04-13,28387,1481,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4822.43,{},33256,1,"""Africa""" +2023-12-03,28388,1571,"[\""Charger\"", \""Phone\""]",2709.02,{},35827,0,"""Africa""" +2024-04-04,28389,6062,"[\""Headphones\"", \""Keyboard\""]",444.62,"{\""promo\"": \""14%\""}",243863,0,"""Africa""" +2023-12-22,28390,7253,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4355.96,{},248493,1,"""Asia""" +2023-10-04,28391,3094,"[\""Headphones\""]",4278.59,"{\""seasonal\"": \""14%\""}",277788,1,"""Africa""" +2023-06-15,28392,7329,"[\""Headphones\"", \""Monitor\""]",889.62,{},206523,1,"""South America""" +2023-09-19,28393,702,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",140.22,"{\""seasonal\"": \""19%\""}",236887,0,"""Europe""" +2024-04-10,28394,8265,"[\""Phone\"", \""Keyboard\""]",164.07,"{\""seasonal\"": \""13%\""}",114919,0,"""Europe""" +2024-07-22,28395,7128,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2909.42,"{\""promo\"": \""7%\""}",255633,1,"""North America""" +2024-06-27,28396,2973,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4040.26,{},31730,0,"""Africa""" +2023-12-16,28397,6667,"[\""Laptop\"", \""Tablet\""]",443.11,"{\"": \""5%\""}",3943,0,"""Europe""" +2024-07-02,28398,2710,"[\""Headphones\"", \""Keyboard\""]",4125.59,{},155559,0,"""Africa""" +2023-03-11,28399,95,"[\""Keyboard\"", \""Headphones\""]",2951.03,{},242887,1,"""South America""" +2023-11-05,28400,4667,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3910.29,{},138991,1,"""Europe""" +2024-06-06,28401,843,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4512.4,{},252931,1,"""North America""" +2023-05-31,28402,9662,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4124.95,"{\""loyalty\"": \""16%\""}",9825,0,"""Europe""" +2023-05-26,28403,7252,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1196.02,{},115358,0,"""Europe""" +2023-02-07,28404,250,"[\""Monitor\"", \""Wireless Mouse\""]",393.79,{},117843,1,"""Asia""" +2023-09-07,28405,4128,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4269.94,"{\""promo\"": \""10%\""}",178898,1,"""Africa""" +2023-05-04,28406,3209,"[\""Monitor\"", \""Phone\""]",3042.67,{},74632,0,"""Asia""" +2023-07-26,28407,9369,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",178.75,"{\""loyalty\"": \""28%\""}",53218,1,"""Asia""" +2024-03-01,28408,7579,"[\""Wireless Mouse\"", \""Keyboard\""]",4020.12,"{\""seasonal\"": \""26%\""}",83255,0,"""Africa""" +2023-04-04,28409,4759,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3353.31,"{\""seasonal\"": \""7%\""}",182700,1,"""Asia""" +2023-09-04,28410,6096,"[\""Keyboard\""]",3791.68,{},166103,1,"""Africa""" +2024-03-03,28411,7915,"[\""Phone\""]",869.19,{},149240,1,"""Africa""" +2023-02-20,28412,8201,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2779.49,{},39687,1,"""Asia""" +2024-01-22,28413,6549,"[\""Laptop\"", \""Headphones\""]",1605.09,{},164332,1,"""South America""" +2023-10-22,28414,1751,"[\""Keyboard\"", \""Phone\""]",1906.25,{},134075,1,"""Europe""" +2024-07-23,28415,1588,"[\""Wireless Mouse\"", \""Headphones\""]",465.63,{},154988,0,"""Asia""" +2024-10-28,28416,5486,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2650.83,{},16865,0,"""Europe""" +2024-10-22,28417,5372,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3341.84,{},286972,0,"""Asia""" +2023-06-10,28418,9479,"[\""Charger\"", \""Phone\"", \""Tablet\""]",306.29,"{\""loyalty\"": \""10%\""}",121120,0,"""Europe""" +2023-01-07,28419,4428,"[\""Laptop\""]",2181.35,"{\""promo\"": \""7%\""}",20097,1,"""South America""" +2023-04-18,28420,3228,"[\""Headphones\""]",1151.69,{},293617,1,"""Asia""" +2023-10-14,28421,7142,"[\""Wireless Mouse\""]",3492.0,{},47630,1,"""South America""" +2024-01-14,28422,4298,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",887.92,"{\""promo\"": \""7%\""}",158633,1,"""Africa""" +2024-09-13,28423,6751,"[\""Tablet\"", \""Monitor\""]",3776.51,"{\"": \""17%\""}",150812,0,"""Europe""" +2023-09-30,28424,1660,"[\""Wireless Mouse\""]",3871.55,{},266155,1,"""Europe""" +2024-06-16,28425,3919,"[\""Charger\"", \""Keyboard\""]",2426.87,"{\"": \""6%\""}",235570,0,"""Africa""" +2023-02-19,28426,8607,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2169.23,"{\"": \""8%\""}",129740,1,"""Africa""" +2023-05-03,28427,7175,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1755.99,{},232183,0,"""South America""" +2024-02-05,28428,1127,"[\""Phone\"", \""Headphones\""]",4474.13,"{\""loyalty\"": \""5%\""}",210941,0,"""Africa""" +2024-10-30,28429,181,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3751.67,{},40627,1,"""Europe""" +2024-06-29,28430,7040,"[\""Monitor\""]",2407.47,{},227625,0,"""Africa""" +2023-04-08,28431,1689,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4819.57,{},70314,1,"""Europe""" +2023-10-30,28432,8859,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2197.22,{},65501,1,"""Asia""" +2024-04-13,28433,4224,"[\""Headphones\""]",2146.27,{},192676,1,"""Asia""" +2024-08-06,28434,6857,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1815.96,"{\"": \""15%\""}",226352,0,"""North America""" +2024-09-09,28435,3977,"[\""Phone\""]",2698.74,{},28561,1,"""South America""" +2023-03-08,28436,8443,"[\""Tablet\"", \""Laptop\""]",2128.95,"{\""promo\"": \""18%\""}",168565,0,"""Asia""" +2023-09-15,28437,3033,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2210.21,"{\"": \""15%\""}",81390,1,"""Europe""" +2024-11-16,28438,7913,"[\""Tablet\"", \""Charger\""]",3691.29,{},138150,0,"""South America""" +2024-09-18,28439,4857,"[\""Wireless Mouse\"", \""Laptop\""]",1705.87,{},233346,1,"""Africa""" +2023-02-09,28440,1921,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2554.92,"{\""seasonal\"": \""12%\""}",143512,0,"""Africa""" +2024-02-07,28441,7688,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2326.67,"{\""seasonal\"": \""17%\""}",56300,1,"""North America""" +2023-02-03,28442,5218,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1628.71,"{\"": \""17%\""}",31841,0,"""South America""" +2023-04-21,28443,4189,"[\""Headphones\""]",4345.46,"{\""loyalty\"": \""15%\""}",96851,0,"""North America""" +2023-07-17,28444,1679,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3797.53,{},62242,0,"""South America""" +2024-11-16,28445,6478,"[\""Keyboard\"", \""Headphones\""]",596.85,{},287330,1,"""Africa""" +2023-07-20,28446,9517,"[\""Tablet\""]",113.16,{},80944,1,"""Asia""" +2023-03-08,28447,5901,"[\""Laptop\""]",3284.66,{},75764,1,"""North America""" +2024-11-11,28448,469,"[\""Keyboard\"", \""Wireless Mouse\""]",682.54,"{\""promo\"": \""14%\""}",229808,1,"""Africa""" +2023-03-16,28449,2556,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3511.61,{},174052,0,"""North America""" +2023-03-07,28450,1403,"[\""Monitor\""]",276.66,"{\""loyalty\"": \""28%\""}",102834,0,"""Africa""" +2024-05-06,28451,7897,"[\""Phone\"", \""Headphones\""]",2197.67,{},72028,0,"""Asia""" +2023-12-02,28452,4786,"[\""Monitor\""]",1107.7,"{\"": \""21%\""}",217126,0,"""Europe""" +2024-08-12,28453,7731,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3040.55,{},292795,0,"""South America""" +2023-03-21,28454,484,"[\""Headphones\"", \""Wireless Mouse\""]",176.05,"{\""seasonal\"": \""10%\""}",95573,0,"""Africa""" +2024-05-07,28455,7495,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4272.55,{},176936,1,"""Asia""" +2024-04-06,28456,3213,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2702.32,{},114972,1,"""Europe""" +2023-01-03,28457,1305,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4820.72,"{\""promo\"": \""12%\""}",130278,1,"""Asia""" +2024-03-02,28458,5313,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2292.0,{},119203,0,"""Asia""" +2024-08-30,28459,7125,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4727.36,{},73353,1,"""Europe""" +2024-10-14,28460,9392,"[\""Tablet\""]",4339.08,"{\""loyalty\"": \""14%\""}",17404,0,"""Africa""" +2023-02-05,28461,8310,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1127.16,{},178204,1,"""Asia""" +2024-11-08,28462,1582,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3786.88,{},211698,0,"""South America""" +2024-06-17,28463,8776,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4431.65,{},95392,0,"""Africa""" +2024-01-05,28464,2935,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1306.19,"{\""promo\"": \""30%\""}",84806,1,"""Europe""" +2023-02-12,28465,146,"[\""Monitor\"", \""Wireless Mouse\""]",4530.06,"{\""loyalty\"": \""6%\""}",126464,1,"""South America""" +2024-07-20,28466,8539,"[\""Laptop\""]",166.12,"{\""loyalty\"": \""6%\""}",58705,0,"""Europe""" +2024-09-09,28467,3344,"[\""Keyboard\""]",4834.81,{},125807,0,"""South America""" +2023-10-03,28468,9368,"[\""Tablet\"", \""Laptop\""]",261.32,{},229757,1,"""North America""" +2023-11-09,28469,2396,"[\""Monitor\""]",3112.08,{},82609,1,"""Europe""" +2023-10-03,28470,3843,"[\""Charger\"", \""Keyboard\""]",4654.25,"{\""loyalty\"": \""15%\""}",169161,1,"""North America""" +2024-12-03,28471,8718,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4385.79,{},94240,0,"""Africa""" +2023-01-20,28472,3012,"[\""Tablet\"", \""Wireless Mouse\""]",750.4,{},176715,1,"""North America""" +2024-01-17,28473,1920,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2492.8,"{\"": \""24%\""}",167405,1,"""Africa""" +2024-09-07,28474,1170,"[\""Wireless Mouse\"", \""Tablet\""]",2307.69,"{\"": \""6%\""}",138423,1,"""Africa""" +2024-08-15,28475,19,"[\""Monitor\""]",3305.13,"{\"": \""30%\""}",294003,0,"""Europe""" +2023-02-13,28476,6455,"[\""Tablet\""]",2155.74,{},155075,1,"""North America""" +2023-10-18,28477,3397,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1692.84,{},269660,1,"""South America""" +2023-06-15,28478,8015,"[\""Charger\"", \""Headphones\""]",2897.44,"{\""loyalty\"": \""20%\""}",64974,1,"""North America""" +2023-12-02,28479,9551,"[\""Phone\"", \""Wireless Mouse\""]",2235.24,{},243108,0,"""Europe""" +2023-05-05,28480,3995,"[\""Tablet\"", \""Charger\""]",3838.23,"{\"": \""29%\""}",186461,1,"""South America""" +2024-08-24,28481,3277,"[\""Laptop\""]",3186.85,"{\""promo\"": \""23%\""}",125098,1,"""Europe""" +2024-08-11,28482,3442,"[\""Monitor\""]",2863.07,"{\"": \""9%\""}",259842,0,"""North America""" +2023-02-20,28483,7512,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4232.42,"{\""seasonal\"": \""30%\""}",4485,0,"""Asia""" +2023-01-06,28484,8857,"[\""Monitor\""]",2507.92,"{\""loyalty\"": \""18%\""}",276772,1,"""Asia""" +2024-07-21,28485,4988,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2443.15,"{\"": \""17%\""}",64772,1,"""North America""" +2023-06-25,28486,8924,"[\""Monitor\"", \""Wireless Mouse\""]",162.13,{},174068,1,"""Europe""" +2024-04-07,28487,219,"[\""Charger\""]",224.44,"{\""loyalty\"": \""9%\""}",143080,1,"""North America""" +2024-01-28,28488,4882,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1933.29,{},274133,1,"""North America""" +2023-09-12,28489,4230,"[\""Monitor\""]",3516.28,{},104670,0,"""Africa""" +2024-08-16,28490,7085,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4745.92,"{\"": \""14%\""}",268848,1,"""Africa""" +2023-07-12,28491,2489,"[\""Phone\""]",219.04,"{\""seasonal\"": \""10%\""}",191248,0,"""North America""" +2024-07-11,28492,4894,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3212.36,"{\"": \""23%\""}",140673,0,"""South America""" +2023-05-29,28493,2832,"[\""Tablet\""]",3978.9,{},58394,0,"""Africa""" +2024-04-09,28494,5328,"[\""Headphones\""]",1107.71,"{\""loyalty\"": \""10%\""}",84083,0,"""Europe""" +2024-02-25,28495,5680,"[\""Keyboard\""]",4581.43,"{\""promo\"": \""9%\""}",179369,1,"""Europe""" +2024-02-24,28496,779,"[\""Phone\""]",4452.74,"{\""seasonal\"": \""8%\""}",102721,1,"""North America""" +2024-03-27,28497,4262,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",789.89,{},103315,1,"""South America""" +2024-01-29,28498,9168,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1855.21,{},5648,1,"""Europe""" +2023-09-14,28499,247,"[\""Charger\"", \""Phone\""]",2254.03,"{\"": \""7%\""}",219905,0,"""Asia""" +2024-11-01,28500,2931,"[\""Headphones\""]",2182.71,"{\"": \""10%\""}",220685,1,"""South America""" +2023-07-08,28501,9844,"[\""Monitor\"", \""Phone\""]",2461.3,{},82904,1,"""North America""" +2023-09-26,28502,761,"[\""Keyboard\""]",1126.94,{},288797,1,"""North America""" +2023-12-10,28503,2334,"[\""Phone\""]",2629.48,{},18501,1,"""Asia""" +2023-03-11,28504,1551,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2230.65,{},186591,0,"""North America""" +2023-01-09,28505,8824,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2119.09,{},286436,0,"""North America""" +2024-11-02,28506,8381,"[\""Charger\""]",2805.22,{},260820,0,"""North America""" +2023-03-09,28507,4824,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",460.27,{},168029,0,"""Asia""" +2023-02-12,28508,1084,"[\""Monitor\""]",4218.23,"{\""loyalty\"": \""13%\""}",217579,0,"""North America""" +2024-01-10,28509,8378,"[\""Charger\""]",2382.36,"{\"": \""29%\""}",155901,0,"""North America""" +2023-06-30,28510,7412,"[\""Wireless Mouse\""]",936.31,"{\"": \""21%\""}",100339,0,"""North America""" +2024-04-23,28511,9038,"[\""Headphones\"", \""Monitor\""]",881.58,"{\""loyalty\"": \""30%\""}",134711,0,"""Europe""" +2024-02-24,28512,7556,"[\""Laptop\""]",1544.8,{},13248,1,"""Europe""" +2024-08-21,28513,9403,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",65.72,{},85592,0,"""Africa""" +2023-02-26,28514,5679,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1099.99,"{\""seasonal\"": \""27%\""}",248811,0,"""Africa""" +2024-06-02,28515,2402,"[\""Charger\""]",1470.15,{},243780,0,"""Africa""" +2023-04-29,28516,7561,"[\""Tablet\"", \""Monitor\""]",1084.45,"{\""seasonal\"": \""10%\""}",256102,1,"""Africa""" +2024-12-13,28517,5430,"[\""Laptop\""]",3344.3,"{\""promo\"": \""17%\""}",278680,0,"""Africa""" +2024-08-17,28518,9319,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4350.68,{},64475,0,"""South America""" +2023-05-20,28519,9671,"[\""Keyboard\""]",675.27,"{\""promo\"": \""19%\""}",275944,1,"""Africa""" +2023-01-03,28520,7170,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3897.75,"{\""promo\"": \""12%\""}",275234,1,"""South America""" +2024-06-27,28521,1567,"[\""Tablet\"", \""Laptop\""]",2151.0,{},68654,0,"""Africa""" +2023-10-29,28522,3323,"[\""Charger\""]",4688.5,"{\""seasonal\"": \""27%\""}",175527,0,"""Europe""" +2023-11-28,28523,218,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1212.65,{},254525,1,"""North America""" +2024-02-18,28524,3106,"[\""Wireless Mouse\"", \""Charger\""]",903.61,{},218247,1,"""Asia""" +2023-05-25,28525,9947,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2782.11,{},161950,1,"""Europe""" +2024-05-21,28526,7456,"[\""Tablet\""]",196.76,"{\""loyalty\"": \""13%\""}",10983,0,"""South America""" +2023-11-13,28527,2541,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1356.55,{},258673,1,"""Asia""" +2024-12-08,28528,2413,"[\""Headphones\""]",2429.64,{},79214,1,"""Asia""" +2024-05-06,28529,8778,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4676.31,{},267296,0,"""Africa""" +2024-04-16,28530,9232,"[\""Tablet\""]",1474.83,{},208608,0,"""Asia""" +2023-11-03,28531,971,"[\""Headphones\""]",3541.47,"{\""loyalty\"": \""10%\""}",92446,1,"""Europe""" +2023-09-09,28532,7406,"[\""Wireless Mouse\""]",3347.33,{},285191,0,"""North America""" +2023-10-12,28533,2060,"[\""Charger\""]",493.69,"{\""promo\"": \""8%\""}",274503,0,"""Africa""" +2024-02-24,28534,5890,"[\""Keyboard\"", \""Laptop\""]",4389.72,"{\"": \""25%\""}",48449,1,"""Africa""" +2023-11-13,28535,9858,"[\""Wireless Mouse\"", \""Charger\""]",2023.32,{},137328,1,"""South America""" +2024-12-23,28536,6877,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1363.95,"{\""promo\"": \""11%\""}",96537,0,"""South America""" +2023-08-27,28537,6218,"[\""Charger\"", \""Tablet\""]",1322.52,"{\""loyalty\"": \""13%\""}",192714,1,"""Africa""" +2024-10-19,28538,7426,"[\""Keyboard\"", \""Wireless Mouse\""]",947.93,"{\""loyalty\"": \""18%\""}",170680,1,"""Asia""" +2024-03-14,28539,9273,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",799.52,{},195116,0,"""Asia""" +2024-02-06,28540,8038,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1207.96,{},13680,0,"""Africa""" +2024-04-04,28541,1835,"[\""Tablet\"", \""Wireless Mouse\""]",150.53,{},44264,1,"""Asia""" +2024-04-26,28542,6318,"[\""Monitor\"", \""Laptop\""]",4482.82,{},216061,1,"""Europe""" +2024-02-07,28543,7482,"[\""Laptop\"", \""Charger\""]",4204.57,{},92372,0,"""Asia""" +2024-08-25,28544,1711,"[\""Wireless Mouse\"", \""Tablet\""]",483.74,"{\"": \""17%\""}",140668,0,"""Asia""" +2024-10-16,28545,3745,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",219.94,"{\""seasonal\"": \""9%\""}",286051,1,"""Asia""" +2024-04-30,28546,6061,"[\""Phone\"", \""Keyboard\""]",2739.84,{},259763,0,"""North America""" +2024-11-20,28547,6881,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4222.21,"{\""seasonal\"": \""23%\""}",87310,0,"""Asia""" +2023-07-23,28548,4961,"[\""Monitor\"", \""Keyboard\""]",2777.29,{},36297,1,"""South America""" +2023-06-10,28549,7071,"[\""Phone\"", \""Keyboard\""]",1818.87,"{\""promo\"": \""29%\""}",289818,1,"""Europe""" +2024-05-28,28550,7153,"[\""Wireless Mouse\"", \""Keyboard\""]",1727.45,"{\"": \""13%\""}",195985,0,"""Asia""" +2023-12-26,28551,5099,"[\""Wireless Mouse\""]",1555.67,{},5403,1,"""North America""" +2023-12-01,28552,9987,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3898.65,{},214592,1,"""Europe""" +2023-10-01,28553,8558,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4337.44,"{\""loyalty\"": \""20%\""}",178631,0,"""Africa""" +2024-02-23,28554,8971,"[\""Keyboard\"", \""Wireless Mouse\""]",585.92,{},297637,1,"""South America""" +2024-06-02,28555,7791,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3367.25,{},64186,0,"""South America""" +2024-01-30,28556,2870,"[\""Laptop\""]",2449.4,"{\""loyalty\"": \""22%\""}",129952,0,"""Africa""" +2023-02-26,28557,2277,"[\""Phone\""]",1780.18,{},111320,0,"""North America""" +2024-12-31,28558,4234,"[\""Charger\""]",3327.52,{},214043,1,"""South America""" +2023-08-09,28559,3724,"[\""Charger\"", \""Wireless Mouse\""]",4015.2,"{\""promo\"": \""16%\""}",259328,1,"""Asia""" +2024-01-12,28560,3005,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2293.71,{},193291,1,"""North America""" +2023-05-12,28561,1041,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4260.94,{},263358,1,"""Africa""" +2024-07-07,28562,2213,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",973.0,{},136195,0,"""Asia""" +2023-03-25,28563,6549,"[\""Headphones\"", \""Wireless Mouse\""]",486.96,"{\""promo\"": \""8%\""}",39813,0,"""South America""" +2023-10-07,28564,6394,"[\""Phone\""]",4696.36,{},123622,0,"""Asia""" +2023-10-14,28565,9252,"[\""Phone\"", \""Charger\""]",2635.55,"{\""promo\"": \""26%\""}",182874,1,"""Europe""" +2024-08-24,28566,7767,"[\""Laptop\""]",1178.49,"{\""loyalty\"": \""5%\""}",292339,0,"""Europe""" +2023-03-04,28567,14,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",895.45,{},108160,1,"""North America""" +2023-01-13,28568,8193,"[\""Monitor\""]",1018.96,{},252871,1,"""North America""" +2023-09-20,28569,4825,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2752.83,"{\""seasonal\"": \""8%\""}",274883,1,"""South America""" +2024-10-01,28570,4394,"[\""Tablet\""]",1652.05,{},21954,0,"""Europe""" +2024-01-26,28571,7937,"[\""Headphones\"", \""Laptop\""]",2007.37,"{\""seasonal\"": \""16%\""}",82726,1,"""Europe""" +2023-02-12,28572,8851,"[\""Headphones\"", \""Charger\""]",970.1,"{\"": \""13%\""}",135638,1,"""South America""" +2023-11-22,28573,2752,"[\""Tablet\"", \""Keyboard\""]",4303.08,"{\""promo\"": \""21%\""}",92064,0,"""North America""" +2023-02-16,28574,1540,"[\""Charger\"", \""Monitor\""]",2519.12,"{\""loyalty\"": \""20%\""}",289020,1,"""South America""" +2023-05-29,28575,8122,"[\""Headphones\"", \""Wireless Mouse\""]",4533.43,"{\""loyalty\"": \""16%\""}",46174,0,"""North America""" +2024-08-30,28576,6299,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",778.65,{},226130,0,"""Asia""" +2024-08-12,28577,605,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",327.6,{},251895,0,"""South America""" +2024-03-25,28578,7370,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3717.07,{},230692,0,"""Asia""" +2024-04-12,28579,406,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2586.29,{},241751,0,"""Asia""" +2024-06-04,28580,2229,"[\""Keyboard\""]",678.37,"{\"": \""15%\""}",7170,0,"""South America""" +2023-04-09,28581,3034,"[\""Wireless Mouse\"", \""Keyboard\""]",1726.56,{},211532,0,"""Europe""" +2024-07-02,28582,7173,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2586.95,"{\"": \""7%\""}",150429,1,"""Africa""" +2024-09-16,28583,6073,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3532.62,{},39678,0,"""Africa""" +2023-06-22,28584,2534,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3618.04,"{\""promo\"": \""27%\""}",82271,0,"""Africa""" +2024-07-30,28585,9146,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1093.54,{},129185,1,"""South America""" +2023-08-14,28586,3163,"[\""Laptop\""]",2961.7,"{\""loyalty\"": \""8%\""}",92548,1,"""Europe""" +2024-10-26,28587,9919,"[\""Laptop\"", \""Headphones\""]",605.91,"{\""loyalty\"": \""23%\""}",60468,1,"""North America""" +2024-12-26,28588,8787,"[\""Monitor\""]",4038.5,"{\""promo\"": \""15%\""}",299502,1,"""Africa""" +2023-01-04,28589,6724,"[\""Charger\""]",3346.06,"{\""promo\"": \""10%\""}",190921,1,"""Africa""" +2023-03-22,28590,7552,"[\""Monitor\""]",970.44,"{\""loyalty\"": \""21%\""}",273217,0,"""Asia""" +2024-10-04,28591,3155,"[\""Wireless Mouse\""]",4179.92,"{\""loyalty\"": \""18%\""}",84576,0,"""Africa""" +2024-06-05,28592,4308,"[\""Laptop\""]",1734.52,"{\"": \""26%\""}",291851,0,"""North America""" +2024-03-05,28593,4276,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",896.67,"{\""promo\"": \""19%\""}",235958,1,"""Africa""" +2024-10-18,28594,8684,"[\""Phone\"", \""Headphones\""]",1319.05,{},24571,0,"""Africa""" +2023-09-11,28595,1841,"[\""Tablet\"", \""Charger\""]",2185.0,{},217634,1,"""Europe""" +2023-02-08,28596,8285,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3072.83,"{\""seasonal\"": \""12%\""}",214494,1,"""Europe""" +2024-12-20,28597,6414,"[\""Charger\"", \""Tablet\""]",3030.67,"{\"": \""19%\""}",180416,0,"""Europe""" +2023-05-28,28598,6747,"[\""Phone\"", \""Laptop\""]",1966.69,{},68781,1,"""Asia""" +2023-01-10,28599,5451,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1690.36,"{\""seasonal\"": \""10%\""}",71719,0,"""Africa""" +2024-11-18,28600,8293,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3031.88,"{\""loyalty\"": \""20%\""}",184273,0,"""North America""" +2024-03-31,28601,7429,"[\""Charger\""]",2065.05,{},35294,1,"""Africa""" +2023-05-03,28602,5195,"[\""Phone\""]",3823.18,"{\""promo\"": \""16%\""}",279117,1,"""North America""" +2023-01-15,28603,8987,"[\""Headphones\""]",2595.88,{},110220,0,"""Asia""" +2023-01-01,28604,524,"[\""Laptop\"", \""Wireless Mouse\""]",4612.44,"{\""loyalty\"": \""24%\""}",239305,1,"""Europe""" +2024-09-16,28605,7319,"[\""Keyboard\"", \""Monitor\""]",2987.63,"{\""loyalty\"": \""25%\""}",144009,1,"""Europe""" +2024-02-07,28606,8776,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2119.63,"{\""seasonal\"": \""9%\""}",100567,1,"""Africa""" +2023-03-16,28607,7072,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3824.55,"{\""seasonal\"": \""14%\""}",272682,0,"""Asia""" +2023-06-27,28608,1994,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2491.02,{},80169,1,"""Europe""" +2023-11-19,28609,7207,"[\""Monitor\"", \""Headphones\""]",777.2,"{\""seasonal\"": \""11%\""}",232956,1,"""Europe""" +2024-08-16,28610,7296,"[\""Monitor\""]",2781.12,{},212655,1,"""Asia""" +2024-02-23,28611,1292,"[\""Laptop\"", \""Charger\""]",3956.71,{},278801,1,"""North America""" +2023-09-15,28612,7690,"[\""Laptop\"", \""Tablet\""]",804.38,{},139009,0,"""Asia""" +2023-07-07,28613,2700,"[\""Wireless Mouse\"", \""Charger\""]",3524.12,{},58320,0,"""Europe""" +2023-06-08,28614,7569,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2247.89,{},187167,1,"""Asia""" +2023-12-21,28615,3758,"[\""Charger\""]",2237.45,"{\"": \""12%\""}",260471,1,"""South America""" +2023-07-24,28616,6659,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1389.96,{},7104,0,"""Europe""" +2024-03-22,28617,1739,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2614.55,"{\""promo\"": \""20%\""}",119928,1,"""Europe""" +2024-11-06,28618,4687,"[\""Wireless Mouse\""]",3747.95,{},259469,1,"""Europe""" +2024-06-16,28619,9587,"[\""Keyboard\""]",3186.78,{},278893,0,"""Africa""" +2023-01-14,28620,5114,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",372.36,{},56646,1,"""South America""" +2023-09-13,28621,6520,"[\""Keyboard\"", \""Laptop\""]",1742.28,{},271805,1,"""Europe""" +2023-11-02,28622,4254,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1708.19,"{\""seasonal\"": \""25%\""}",54481,0,"""South America""" +2023-04-29,28623,3090,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2168.03,"{\"": \""10%\""}",97311,1,"""Asia""" +2024-03-15,28624,9299,"[\""Phone\"", \""Headphones\""]",1556.75,"{\"": \""17%\""}",136269,0,"""South America""" +2023-05-03,28625,3078,"[\""Charger\""]",2294.72,{},126817,1,"""South America""" +2024-06-10,28626,7886,"[\""Charger\"", \""Keyboard\""]",3278.19,{},243836,1,"""North America""" +2023-02-10,28627,5650,"[\""Phone\""]",2183.28,{},276034,1,"""Africa""" +2023-07-01,28628,7396,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4898.21,{},167225,1,"""Asia""" +2023-01-25,28629,1373,"[\""Phone\""]",1058.71,{},84618,1,"""Europe""" +2024-08-31,28630,2487,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2746.84,"{\"": \""15%\""}",154398,1,"""South America""" +2023-01-28,28631,9115,"[\""Tablet\""]",2330.03,{},267673,0,"""South America""" +2024-02-12,28632,7362,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1120.57,"{\"": \""24%\""}",75408,1,"""South America""" +2024-05-05,28633,6864,"[\""Wireless Mouse\""]",2811.51,{},95771,0,"""South America""" +2024-01-24,28634,1036,"[\""Laptop\"", \""Wireless Mouse\""]",3631.31,{},18913,1,"""Asia""" +2023-10-21,28635,4513,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2469.69,{},82914,0,"""Europe""" +2023-10-29,28636,7274,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2510.58,{},196399,0,"""Asia""" +2023-06-19,28637,3604,"[\""Phone\""]",1603.3,{},260425,0,"""South America""" +2024-04-17,28638,6210,"[\""Monitor\"", \""Headphones\""]",4251.52,"{\""promo\"": \""11%\""}",119459,1,"""Europe""" +2024-02-25,28639,2621,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4134.45,"{\"": \""29%\""}",102399,0,"""North America""" +2023-08-22,28640,5109,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3350.07,"{\""seasonal\"": \""6%\""}",70524,1,"""North America""" +2023-11-21,28641,5027,"[\""Laptop\""]",2802.04,{},133379,1,"""South America""" +2024-05-09,28642,2739,"[\""Monitor\""]",3467.32,"{\""promo\"": \""29%\""}",236645,1,"""Asia""" +2023-09-05,28643,3558,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2658.91,"{\""seasonal\"": \""7%\""}",65557,0,"""Africa""" +2024-03-17,28644,7480,"[\""Keyboard\"", \""Charger\""]",2737.53,"{\""promo\"": \""8%\""}",190079,0,"""South America""" +2024-11-06,28645,3496,"[\""Laptop\""]",3916.4,{},242632,1,"""Europe""" +2023-02-01,28646,5712,"[\""Wireless Mouse\"", \""Monitor\""]",1107.31,"{\""promo\"": \""8%\""}",7459,1,"""Europe""" +2024-12-10,28647,7828,"[\""Phone\""]",937.26,{},94569,1,"""Europe""" +2024-06-11,28648,4012,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1911.93,{},151339,1,"""Africa""" +2024-04-27,28649,7807,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3701.51,{},297942,1,"""South America""" +2024-09-08,28650,6243,"[\""Laptop\"", \""Wireless Mouse\""]",1546.8,"{\""seasonal\"": \""11%\""}",28284,1,"""North America""" +2023-04-15,28651,3441,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1123.4,{},72189,0,"""North America""" +2023-02-16,28652,2781,"[\""Laptop\""]",4498.54,{},53916,0,"""Europe""" +2023-02-21,28653,9554,"[\""Wireless Mouse\"", \""Laptop\""]",4650.89,{},137547,1,"""Africa""" +2024-11-01,28654,295,"[\""Keyboard\""]",2292.41,{},15367,1,"""Asia""" +2024-09-08,28655,1052,"[\""Wireless Mouse\"", \""Phone\""]",4555.5,"{\"": \""22%\""}",211323,1,"""South America""" +2024-04-12,28656,7698,"[\""Laptop\"", \""Charger\""]",4623.69,{},187402,1,"""Africa""" +2024-02-10,28657,4354,"[\""Charger\""]",4464.57,{},264432,0,"""North America""" +2024-12-31,28658,1659,"[\""Monitor\"", \""Phone\""]",1628.35,"{\"": \""11%\""}",184268,1,"""Asia""" +2024-04-09,28659,6683,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3501.41,"{\""loyalty\"": \""28%\""}",14670,1,"""Europe""" +2024-04-12,28660,754,"[\""Tablet\"", \""Monitor\""]",4560.71,{},60504,1,"""North America""" +2023-12-18,28661,7736,"[\""Laptop\""]",3602.51,{},39767,0,"""Europe""" +2023-09-15,28662,6609,"[\""Headphones\""]",4611.03,"{\""promo\"": \""11%\""}",29536,0,"""South America""" +2024-01-09,28663,9469,"[\""Keyboard\"", \""Tablet\""]",4860.59,{},235899,0,"""North America""" +2023-07-30,28664,9799,"[\""Laptop\""]",3510.18,"{\""seasonal\"": \""26%\""}",98681,1,"""North America""" +2023-08-08,28665,8664,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",679.72,"{\""promo\"": \""12%\""}",173709,0,"""Asia""" +2024-01-21,28666,2743,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3523.14,"{\""promo\"": \""7%\""}",60231,1,"""Africa""" +2024-11-17,28667,2881,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4747.54,{},205491,1,"""Europe""" +2023-12-27,28668,8772,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1081.15,"{\""loyalty\"": \""29%\""}",60360,0,"""Asia""" +2023-05-30,28669,5163,"[\""Monitor\"", \""Keyboard\""]",1124.11,"{\""promo\"": \""28%\""}",99618,0,"""Asia""" +2024-01-30,28670,4558,"[\""Laptop\"", \""Phone\""]",220.17,"{\""loyalty\"": \""22%\""}",3839,0,"""Africa""" +2024-04-02,28671,3575,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1165.68,{},139702,0,"""Africa""" +2023-11-17,28672,9316,"[\""Phone\""]",3628.56,{},145243,0,"""Asia""" +2024-02-20,28673,616,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1449.13,"{\""seasonal\"": \""20%\""}",249005,1,"""Europe""" +2024-02-04,28674,1225,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",733.85,"{\"": \""16%\""}",240801,1,"""Asia""" +2024-09-29,28675,6492,"[\""Tablet\"", \""Monitor\""]",1725.36,{},92573,1,"""Africa""" +2023-06-23,28676,7953,"[\""Monitor\""]",2473.95,{},189977,0,"""Europe""" +2024-01-01,28677,1550,"[\""Charger\"", \""Headphones\""]",1570.71,"{\""loyalty\"": \""16%\""}",119780,1,"""North America""" +2023-08-12,28678,9701,"[\""Keyboard\""]",3525.07,{},37254,0,"""Africa""" +2023-12-26,28679,3941,"[\""Wireless Mouse\"", \""Tablet\""]",1963.5,{},48572,0,"""South America""" +2023-07-24,28680,605,"[\""Headphones\""]",248.44,"{\""promo\"": \""21%\""}",231005,1,"""South America""" +2024-07-22,28681,6570,"[\""Keyboard\"", \""Laptop\""]",89.82,{},35006,0,"""Africa""" +2024-07-24,28682,1526,"[\""Phone\"", \""Wireless Mouse\""]",1639.54,"{\"": \""24%\""}",6974,1,"""Africa""" +2024-02-14,28683,3611,"[\""Tablet\"", \""Keyboard\""]",4216.25,"{\"": \""18%\""}",256698,1,"""Africa""" +2023-11-07,28684,3158,"[\""Laptop\""]",2136.13,"{\""loyalty\"": \""12%\""}",275734,0,"""Europe""" +2023-12-02,28685,1187,"[\""Headphones\""]",2020.08,{},26874,0,"""Europe""" +2024-10-18,28686,9694,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3254.73,"{\"": \""8%\""}",195762,1,"""Europe""" +2024-02-01,28687,7229,"[\""Wireless Mouse\"", \""Charger\""]",4265.11,"{\""loyalty\"": \""20%\""}",160471,0,"""North America""" +2023-11-17,28688,7194,"[\""Wireless Mouse\"", \""Headphones\""]",1779.27,"{\""loyalty\"": \""15%\""}",144366,0,"""South America""" +2023-07-10,28689,4966,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4532.7,{},149721,0,"""Africa""" +2023-11-01,28690,7901,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",754.35,"{\"": \""22%\""}",117877,0,"""North America""" +2024-10-07,28691,75,"[\""Wireless Mouse\"", \""Tablet\""]",2174.88,"{\""loyalty\"": \""21%\""}",249008,0,"""South America""" +2024-11-26,28692,5783,"[\""Tablet\""]",3062.49,"{\"": \""8%\""}",13211,0,"""Asia""" +2023-08-05,28693,1938,"[\""Tablet\"", \""Laptop\""]",3243.71,"{\"": \""13%\""}",141341,1,"""South America""" +2024-09-17,28694,2532,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",846.97,"{\""promo\"": \""18%\""}",98056,1,"""Asia""" +2024-01-02,28695,2372,"[\""Phone\""]",3207.08,"{\""seasonal\"": \""21%\""}",164849,0,"""Europe""" +2024-06-03,28696,9,"[\""Keyboard\""]",2181.74,"{\""seasonal\"": \""25%\""}",299281,0,"""North America""" +2024-10-01,28697,2120,"[\""Tablet\"", \""Keyboard\""]",3105.95,{},114174,1,"""Africa""" +2024-11-27,28698,5031,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2715.44,{},299971,0,"""Europe""" +2023-05-11,28699,8261,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3179.2,{},273861,0,"""North America""" +2023-01-11,28700,766,"[\""Keyboard\""]",2385.78,"{\""promo\"": \""16%\""}",120760,0,"""Africa""" +2024-08-27,28701,5405,"[\""Keyboard\"", \""Monitor\""]",4966.63,{},53410,1,"""South America""" +2024-08-08,28702,6261,"[\""Laptop\""]",4084.45,"{\""promo\"": \""23%\""}",258703,0,"""Asia""" +2024-05-24,28703,178,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3933.77,"{\"": \""21%\""}",147656,0,"""Europe""" +2024-09-28,28704,6658,"[\""Tablet\""]",1194.4,{},34060,1,"""Europe""" +2023-06-30,28705,3677,"[\""Phone\"", \""Wireless Mouse\""]",2534.64,{},195161,0,"""South America""" +2024-05-17,28706,6356,"[\""Wireless Mouse\"", \""Headphones\""]",4919.94,"{\""loyalty\"": \""13%\""}",202133,0,"""Europe""" +2024-12-15,28707,9546,"[\""Phone\"", \""Wireless Mouse\""]",96.46,"{\"": \""6%\""}",18070,1,"""Asia""" +2024-12-29,28708,6095,"[\""Monitor\"", \""Keyboard\""]",1296.57,{},54538,1,"""Africa""" +2024-10-12,28709,3084,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1387.69,{},211247,1,"""Asia""" +2024-08-24,28710,5441,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3623.67,{},188953,0,"""Europe""" +2023-08-23,28711,1281,"[\""Tablet\""]",965.98,"{\""promo\"": \""19%\""}",123877,0,"""South America""" +2023-06-28,28712,1312,"[\""Headphones\""]",4105.44,{},281049,0,"""Asia""" +2024-12-03,28713,2949,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2837.9,"{\""loyalty\"": \""15%\""}",122144,0,"""Africa""" +2024-04-29,28714,3536,"[\""Keyboard\""]",4815.37,"{\""promo\"": \""27%\""}",211858,1,"""Africa""" +2023-03-29,28715,4763,"[\""Tablet\""]",1405.87,{},206445,1,"""South America""" +2023-03-12,28716,9639,"[\""Monitor\""]",1540.38,{},34069,1,"""Asia""" +2023-11-15,28717,2805,"[\""Tablet\""]",2689.47,{},81189,0,"""Europe""" +2023-12-20,28718,3813,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4868.42,"{\"": \""29%\""}",101519,0,"""North America""" +2023-08-01,28719,1173,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1439.09,"{\"": \""13%\""}",217929,0,"""Europe""" +2023-04-08,28720,5073,"[\""Charger\""]",383.41,{},39585,0,"""Europe""" +2023-04-09,28721,2524,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4394.85,"{\"": \""20%\""}",79614,1,"""South America""" +2024-01-06,28722,8913,"[\""Charger\"", \""Headphones\""]",1272.21,{},44801,1,"""Europe""" +2023-11-22,28723,6022,"[\""Phone\""]",4941.15,{},183520,0,"""Asia""" +2024-09-01,28724,3333,"[\""Phone\"", \""Headphones\""]",230.78,{},165825,1,"""South America""" +2024-06-21,28725,3887,"[\""Headphones\"", \""Keyboard\""]",2449.11,"{\""seasonal\"": \""30%\""}",278290,1,"""Africa""" +2023-10-14,28726,291,"[\""Phone\""]",3055.16,"{\""loyalty\"": \""26%\""}",292205,1,"""North America""" +2023-08-06,28727,5686,"[\""Monitor\""]",3309.11,{},299205,0,"""Europe""" +2024-12-25,28728,8413,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1241.7,"{\""loyalty\"": \""7%\""}",104382,1,"""North America""" +2024-12-16,28729,3018,"[\""Phone\""]",725.06,{},248661,1,"""Africa""" +2023-02-27,28730,4830,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1785.11,{},269134,1,"""North America""" +2023-12-02,28731,3750,"[\""Wireless Mouse\"", \""Monitor\""]",3056.61,"{\""promo\"": \""23%\""}",260016,0,"""South America""" +2023-05-15,28732,5900,"[\""Wireless Mouse\"", \""Phone\""]",4353.18,"{\"": \""21%\""}",102371,1,"""Europe""" +2024-04-06,28733,3465,"[\""Tablet\"", \""Headphones\""]",3878.36,{},14930,0,"""North America""" +2024-11-14,28734,9837,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1612.11,{},75850,0,"""Africa""" +2024-03-21,28735,9841,"[\""Phone\"", \""Headphones\""]",3458.86,{},226070,1,"""Africa""" +2023-11-21,28736,5187,"[\""Tablet\""]",1753.27,{},4971,0,"""Europe""" +2023-11-19,28737,1457,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1893.21,"{\"": \""28%\""}",118200,1,"""North America""" +2024-12-17,28738,9125,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4100.96,"{\""seasonal\"": \""26%\""}",207639,0,"""Asia""" +2023-11-03,28739,9581,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1470.11,{},140053,1,"""South America""" +2024-09-15,28740,3082,"[\""Phone\""]",3032.84,{},123052,1,"""Africa""" +2023-12-31,28741,1781,"[\""Phone\"", \""Monitor\""]",2666.1,{},170816,1,"""Europe""" +2023-07-27,28742,2974,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",587.33,"{\""seasonal\"": \""15%\""}",268484,0,"""North America""" +2023-03-15,28743,338,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1268.15,"{\"": \""29%\""}",154157,1,"""Asia""" +2024-08-06,28744,8447,"[\""Tablet\""]",2838.9,"{\"": \""25%\""}",287151,1,"""Africa""" +2024-03-27,28745,9735,"[\""Headphones\"", \""Wireless Mouse\""]",875.02,"{\""loyalty\"": \""8%\""}",209731,1,"""Africa""" +2023-05-17,28746,9498,"[\""Laptop\"", \""Charger\""]",3979.89,{},282484,1,"""Africa""" +2023-12-04,28747,1923,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",360.78,{},149325,1,"""Africa""" +2023-05-01,28748,2297,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2580.48,{},15430,0,"""Europe""" +2023-01-23,28749,3188,"[\""Keyboard\"", \""Laptop\""]",1432.8,{},116825,0,"""Asia""" +2023-02-25,28750,9300,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2330.48,"{\"": \""7%\""}",143282,0,"""North America""" +2024-01-28,28751,7842,"[\""Laptop\"", \""Headphones\""]",2948.46,{},105529,0,"""Asia""" +2023-10-13,28752,1571,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2784.97,"{\""promo\"": \""21%\""}",168155,1,"""Europe""" +2024-06-17,28753,7780,"[\""Laptop\""]",2104.23,{},16509,0,"""Africa""" +2024-09-23,28754,2274,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",235.44,{},37653,0,"""Asia""" +2024-12-21,28755,5393,"[\""Keyboard\"", \""Wireless Mouse\""]",2800.91,"{\"": \""7%\""}",48647,0,"""Asia""" +2024-01-13,28756,1186,"[\""Tablet\""]",3763.14,{},122767,1,"""Asia""" +2024-08-01,28757,919,"[\""Tablet\""]",4159.52,"{\""promo\"": \""18%\""}",270275,1,"""South America""" +2024-11-03,28758,199,"[\""Keyboard\"", \""Phone\""]",3317.1,"{\""promo\"": \""15%\""}",247869,1,"""Asia""" +2024-07-16,28759,655,"[\""Charger\"", \""Phone\""]",2228.7,"{\""loyalty\"": \""20%\""}",69194,1,"""South America""" +2023-09-17,28760,5264,"[\""Phone\""]",4879.58,{},225413,0,"""South America""" +2024-09-14,28761,4615,"[\""Keyboard\"", \""Wireless Mouse\""]",4439.88,"{\""promo\"": \""24%\""}",32550,1,"""North America""" +2024-01-19,28762,2796,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4052.95,{},173541,0,"""Europe""" +2024-11-16,28763,1948,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1640.41,{},25843,0,"""North America""" +2023-05-01,28764,5171,"[\""Charger\"", \""Monitor\""]",2702.27,{},82040,1,"""South America""" +2024-09-17,28765,3990,"[\""Tablet\"", \""Wireless Mouse\""]",1340.71,{},126635,0,"""North America""" +2024-11-09,28766,1793,"[\""Tablet\""]",1209.63,"{\""seasonal\"": \""22%\""}",141980,0,"""South America""" +2023-08-20,28767,5194,"[\""Keyboard\"", \""Wireless Mouse\""]",2478.49,"{\""promo\"": \""5%\""}",57520,1,"""Africa""" +2023-03-29,28768,5844,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2244.47,{},166691,0,"""North America""" +2023-05-30,28769,6945,"[\""Phone\"", \""Wireless Mouse\""]",2743.16,{},153530,1,"""Europe""" +2023-03-17,28770,957,"[\""Headphones\"", \""Phone\""]",4784.09,"{\"": \""19%\""}",72827,1,"""Asia""" +2024-07-20,28771,784,"[\""Charger\"", \""Laptop\""]",1048.24,"{\""promo\"": \""20%\""}",130911,0,"""Europe""" +2023-01-03,28772,7117,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",258.36,{},283951,1,"""Africa""" +2023-06-25,28773,8772,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",175.04,"{\""promo\"": \""12%\""}",61458,1,"""South America""" +2024-04-29,28774,940,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1300.98,"{\""seasonal\"": \""30%\""}",266322,1,"""North America""" +2024-11-02,28775,9401,"[\""Keyboard\""]",3310.61,{},23974,1,"""South America""" +2023-03-21,28776,4062,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4194.79,{},10172,0,"""North America""" +2023-02-05,28777,7391,"[\""Tablet\""]",3281.02,"{\"": \""9%\""}",216799,1,"""Africa""" +2024-02-28,28778,8055,"[\""Tablet\""]",2574.16,"{\""seasonal\"": \""20%\""}",101995,0,"""Africa""" +2023-04-21,28779,9271,"[\""Tablet\"", \""Charger\""]",4883.76,"{\""seasonal\"": \""25%\""}",241725,0,"""Africa""" +2024-05-04,28780,6368,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1917.4,{},222616,0,"""South America""" +2024-11-28,28781,9114,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3914.59,{},47711,0,"""Asia""" +2024-02-25,28782,5204,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1962.61,"{\""seasonal\"": \""10%\""}",249072,0,"""Europe""" +2024-03-27,28783,1022,"[\""Laptop\""]",3553.4,{},72975,1,"""Asia""" +2023-02-22,28784,2425,"[\""Phone\"", \""Laptop\""]",980.32,"{\"": \""26%\""}",125735,1,"""North America""" +2023-05-25,28785,229,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1553.44,{},194837,0,"""Europe""" +2023-09-30,28786,5273,"[\""Keyboard\"", \""Wireless Mouse\""]",2388.44,{},247417,1,"""Europe""" +2023-09-27,28787,2584,"[\""Phone\"", \""Headphones\""]",3904.57,"{\""promo\"": \""21%\""}",21466,0,"""Africa""" +2024-06-16,28788,7444,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1033.7,"{\""seasonal\"": \""25%\""}",5902,1,"""Europe""" +2023-08-05,28789,4155,"[\""Charger\"", \""Phone\""]",4572.56,{},87899,1,"""Asia""" +2024-11-16,28790,1036,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",785.44,"{\""promo\"": \""6%\""}",225888,1,"""North America""" +2023-11-04,28791,7769,"[\""Charger\"", \""Headphones\""]",435.31,{},84287,1,"""South America""" +2024-10-26,28792,7140,"[\""Laptop\""]",2752.8,{},200015,0,"""South America""" +2024-04-27,28793,5016,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1067.83,{},242297,1,"""Africa""" +2023-12-03,28794,980,"[\""Laptop\"", \""Keyboard\""]",2670.27,{},85091,1,"""North America""" +2024-09-03,28795,1054,"[\""Phone\"", \""Monitor\""]",4242.47,"{\""loyalty\"": \""22%\""}",197020,1,"""Europe""" +2023-04-14,28796,9351,"[\""Laptop\""]",3656.36,"{\""promo\"": \""22%\""}",177688,0,"""Africa""" +2023-10-04,28797,8301,"[\""Laptop\""]",4767.13,"{\""seasonal\"": \""30%\""}",219707,1,"""Asia""" +2024-03-03,28798,7081,"[\""Wireless Mouse\""]",4805.33,{},75837,0,"""South America""" +2023-04-23,28799,841,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2417.94,"{\""promo\"": \""12%\""}",9528,1,"""Europe""" +2024-06-02,28800,432,"[\""Headphones\""]",4467.05,"{\"": \""8%\""}",22368,1,"""Europe""" +2024-04-23,28801,930,"[\""Laptop\"", \""Monitor\""]",3961.71,"{\"": \""10%\""}",216971,1,"""Europe""" +2023-07-06,28802,3879,"[\""Charger\"", \""Laptop\""]",434.81,{},189633,0,"""Asia""" +2023-02-03,28803,2110,"[\""Keyboard\""]",2300.17,"{\""loyalty\"": \""7%\""}",175888,1,"""North America""" +2023-01-01,28804,6936,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3340.17,{},297884,1,"""Europe""" +2024-06-20,28805,4239,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3142.82,{},136595,0,"""North America""" +2024-11-27,28806,5982,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2338.67,"{\""promo\"": \""22%\""}",164762,0,"""Africa""" +2024-06-03,28807,2026,"[\""Tablet\"", \""Laptop\""]",1272.49,{},243064,1,"""Africa""" +2024-04-12,28808,3849,"[\""Monitor\"", \""Tablet\""]",2836.15,"{\""loyalty\"": \""9%\""}",293725,0,"""Africa""" +2024-11-28,28809,1659,"[\""Laptop\"", \""Charger\"", \""Phone\""]",147.03,{},102939,1,"""North America""" +2024-01-23,28810,9202,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3545.64,{},40589,0,"""Europe""" +2023-01-15,28811,505,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3130.44,{},130955,1,"""Europe""" +2023-12-28,28812,1117,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",623.72,"{\""seasonal\"": \""13%\""}",286900,1,"""North America""" +2024-04-03,28813,5273,"[\""Keyboard\"", \""Phone\""]",4486.53,"{\""promo\"": \""6%\""}",18792,0,"""Asia""" +2024-09-07,28814,7249,"[\""Keyboard\"", \""Laptop\""]",4961.72,"{\""loyalty\"": \""5%\""}",20097,1,"""Europe""" +2023-12-25,28815,6614,"[\""Phone\""]",1607.4,"{\""promo\"": \""20%\""}",239077,0,"""Africa""" +2024-12-19,28816,1691,"[\""Monitor\""]",4060.66,{},61139,0,"""South America""" +2024-07-23,28817,6587,"[\""Charger\""]",4750.83,"{\"": \""8%\""}",266572,1,"""Asia""" +2024-06-13,28818,8693,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2467.15,"{\""loyalty\"": \""30%\""}",115848,0,"""Africa""" +2023-01-29,28819,5401,"[\""Charger\"", \""Tablet\""]",2818.74,{},124337,0,"""Africa""" +2024-09-04,28820,4447,"[\""Laptop\""]",1644.22,"{\"": \""30%\""}",151542,1,"""South America""" +2024-01-14,28821,8073,"[\""Laptop\"", \""Charger\""]",1900.99,{},216701,1,"""Europe""" +2024-06-12,28822,7636,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3542.54,{},272157,1,"""Asia""" +2023-07-09,28823,1979,"[\""Charger\"", \""Keyboard\""]",794.44,"{\""seasonal\"": \""7%\""}",230270,0,"""Asia""" +2024-07-05,28824,3930,"[\""Tablet\""]",1761.3,{},217646,1,"""Europe""" +2023-01-22,28825,830,"[\""Phone\""]",4618.45,{},107921,1,"""Asia""" +2024-04-14,28826,5672,"[\""Keyboard\""]",4347.88,"{\""loyalty\"": \""18%\""}",147465,0,"""Europe""" +2023-05-22,28827,9453,"[\""Laptop\""]",750.38,"{\""loyalty\"": \""8%\""}",51481,0,"""South America""" +2023-01-14,28828,7396,"[\""Keyboard\""]",2872.22,{},159732,1,"""North America""" +2023-03-20,28829,4416,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4115.89,{},180421,0,"""North America""" +2024-11-20,28830,5812,"[\""Wireless Mouse\""]",1292.03,"{\""promo\"": \""27%\""}",170232,0,"""South America""" +2023-11-12,28831,4042,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2943.97,{},184353,0,"""Africa""" +2023-09-16,28832,575,"[\""Headphones\"", \""Keyboard\""]",172.48,"{\""loyalty\"": \""17%\""}",86417,1,"""Africa""" +2023-07-24,28833,2986,"[\""Wireless Mouse\""]",631.9,"{\""promo\"": \""25%\""}",248444,1,"""North America""" +2023-07-30,28834,622,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",728.89,{},63880,1,"""North America""" +2023-12-24,28835,9768,"[\""Monitor\""]",4592.82,{},280300,0,"""North America""" +2024-04-18,28836,9169,"[\""Tablet\"", \""Monitor\""]",1806.19,"{\""seasonal\"": \""12%\""}",95045,1,"""Europe""" +2024-12-28,28837,9488,"[\""Tablet\""]",3187.16,"{\""promo\"": \""20%\""}",7276,1,"""Europe""" +2024-02-09,28838,102,"[\""Tablet\"", \""Keyboard\""]",520.14,"{\""promo\"": \""8%\""}",53945,1,"""Europe""" +2024-02-16,28839,813,"[\""Phone\""]",2835.52,{},200328,0,"""Asia""" +2024-02-03,28840,8549,"[\""Keyboard\"", \""Laptop\""]",3310.46,"{\""loyalty\"": \""30%\""}",50951,1,"""Europe""" +2024-12-10,28841,251,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4352.33,"{\"": \""28%\""}",36133,0,"""Africa""" +2023-01-23,28842,7725,"[\""Monitor\"", \""Headphones\""]",4820.68,{},181404,1,"""North America""" +2024-04-23,28843,5775,"[\""Wireless Mouse\""]",4265.68,{},99069,1,"""North America""" +2024-02-01,28844,6765,"[\""Tablet\"", \""Phone\""]",1242.78,{},190319,1,"""South America""" +2024-06-28,28845,1077,"[\""Keyboard\""]",3133.28,"{\""promo\"": \""15%\""}",7317,1,"""Africa""" +2024-11-15,28846,6299,"[\""Charger\"", \""Tablet\""]",3791.01,"{\"": \""29%\""}",91112,0,"""Europe""" +2024-07-06,28847,6965,"[\""Wireless Mouse\""]",1073.32,"{\""loyalty\"": \""28%\""}",47983,1,"""North America""" +2023-12-23,28848,7602,"[\""Tablet\"", \""Phone\""]",369.29,{},44026,1,"""Europe""" +2023-09-16,28849,5276,"[\""Tablet\"", \""Headphones\""]",414.19,{},214663,1,"""Africa""" +2023-07-06,28850,7265,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3344.46,"{\""promo\"": \""14%\""}",187175,0,"""South America""" +2023-08-31,28851,9888,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1388.49,{},205102,1,"""Asia""" +2023-01-21,28852,9338,"[\""Monitor\""]",1231.54,{},77288,0,"""Europe""" +2024-05-09,28853,9685,"[\""Headphones\"", \""Keyboard\""]",3831.49,{},68933,1,"""Europe""" +2024-12-05,28854,8027,"[\""Monitor\""]",1826.89,{},265045,1,"""North America""" +2023-04-02,28855,1356,"[\""Laptop\"", \""Charger\""]",281.64,{},167895,0,"""Asia""" +2024-02-24,28856,7798,"[\""Tablet\"", \""Phone\""]",743.65,{},230111,0,"""South America""" +2024-03-31,28857,4970,"[\""Monitor\"", \""Phone\""]",903.51,{},9293,1,"""Africa""" +2024-03-01,28858,4281,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4870.03,"{\""seasonal\"": \""20%\""}",190820,1,"""Asia""" +2023-05-07,28859,813,"[\""Tablet\"", \""Keyboard\""]",537.8,"{\"": \""13%\""}",227976,0,"""Africa""" +2023-10-11,28860,6799,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4631.51,{},12255,0,"""South America""" +2024-05-21,28861,8338,"[\""Headphones\"", \""Keyboard\""]",2289.05,"{\"": \""26%\""}",151609,1,"""Africa""" +2024-10-26,28862,7796,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1809.29,"{\""seasonal\"": \""6%\""}",165025,1,"""Europe""" +2023-02-09,28863,7174,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3692.45,"{\""loyalty\"": \""29%\""}",64957,0,"""Asia""" +2023-01-07,28864,2249,"[\""Keyboard\""]",1920.64,"{\"": \""23%\""}",112638,1,"""North America""" +2024-08-05,28865,2909,"[\""Tablet\"", \""Charger\""]",1334.86,"{\"": \""25%\""}",27537,0,"""Europe""" +2024-06-29,28866,3753,"[\""Laptop\""]",2990.9,{},96009,1,"""South America""" +2023-05-21,28867,9046,"[\""Headphones\"", \""Wireless Mouse\""]",2033.58,{},126543,0,"""Africa""" +2024-10-27,28868,7060,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",188.8,{},269985,1,"""Africa""" +2024-12-09,28869,660,"[\""Laptop\"", \""Headphones\""]",4942.37,{},49733,1,"""North America""" +2023-07-07,28870,980,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2063.07,{},199694,0,"""South America""" +2024-08-25,28871,6333,"[\""Charger\"", \""Wireless Mouse\""]",3377.24,"{\""promo\"": \""24%\""}",108689,0,"""South America""" +2024-10-01,28872,8142,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",878.04,{},6962,1,"""Africa""" +2024-04-30,28873,831,"[\""Keyboard\"", \""Monitor\""]",948.71,"{\""seasonal\"": \""10%\""}",97799,0,"""North America""" +2024-03-06,28874,1854,"[\""Laptop\""]",3638.45,"{\""loyalty\"": \""23%\""}",103204,1,"""Africa""" +2023-01-27,28875,7123,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4532.96,{},96750,0,"""South America""" +2024-11-18,28876,3446,"[\""Phone\"", \""Tablet\""]",594.38,"{\""promo\"": \""17%\""}",174525,1,"""Africa""" +2023-03-27,28877,398,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4942.27,"{\""seasonal\"": \""15%\""}",81386,1,"""Africa""" +2023-02-24,28878,2450,"[\""Phone\""]",2774.08,"{\""seasonal\"": \""29%\""}",166878,1,"""North America""" +2023-05-16,28879,2411,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1753.26,"{\""seasonal\"": \""13%\""}",142483,0,"""Asia""" +2024-09-01,28880,9503,"[\""Monitor\"", \""Keyboard\""]",4455.26,{},171152,1,"""Europe""" +2023-07-09,28881,2520,"[\""Keyboard\""]",4845.94,"{\""loyalty\"": \""30%\""}",231340,1,"""South America""" +2023-05-22,28882,267,"[\""Keyboard\""]",677.78,"{\"": \""16%\""}",21970,1,"""South America""" +2023-03-02,28883,4335,"[\""Headphones\""]",3557.74,{},226618,1,"""South America""" +2024-03-10,28884,3630,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3104.11,"{\""loyalty\"": \""7%\""}",12771,1,"""Asia""" +2023-02-25,28885,9410,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1004.54,{},267005,0,"""South America""" +2024-07-04,28886,5659,"[\""Monitor\""]",3339.83,{},213351,0,"""Europe""" +2024-01-31,28887,8594,"[\""Laptop\""]",4047.85,{},204235,0,"""North America""" +2023-05-23,28888,1742,"[\""Tablet\""]",4532.2,"{\"": \""22%\""}",73132,0,"""North America""" +2023-11-26,28889,8244,"[\""Keyboard\"", \""Charger\""]",1388.21,{},112499,0,"""South America""" +2023-02-09,28890,7331,"[\""Keyboard\"", \""Laptop\""]",3313.81,{},78908,0,"""Asia""" +2023-12-10,28891,9636,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2342.64,{},144416,0,"""Europe""" +2024-08-03,28892,7534,"[\""Laptop\"", \""Keyboard\""]",806.44,"{\""loyalty\"": \""16%\""}",247382,1,"""Europe""" +2023-03-04,28893,3704,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2015.63,"{\""promo\"": \""14%\""}",93826,1,"""Asia""" +2023-05-25,28894,5199,"[\""Monitor\""]",2459.67,{},206168,1,"""North America""" +2023-02-19,28895,7332,"[\""Keyboard\""]",1298.95,"{\"": \""14%\""}",134695,1,"""Europe""" +2024-05-29,28896,538,"[\""Tablet\"", \""Headphones\""]",4208.34,"{\""seasonal\"": \""12%\""}",234835,1,"""Africa""" +2023-08-27,28897,5287,"[\""Laptop\"", \""Monitor\""]",299.32,{},83291,0,"""Asia""" +2023-04-26,28898,4174,"[\""Monitor\""]",4049.0,"{\"": \""23%\""}",180269,0,"""South America""" +2023-09-29,28899,4607,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2911.06,{},241372,1,"""Africa""" +2023-03-11,28900,8879,"[\""Charger\""]",2888.12,{},263543,0,"""Asia""" +2023-11-15,28901,3527,"[\""Tablet\"", \""Wireless Mouse\""]",4321.72,{},231296,1,"""Asia""" +2023-09-01,28902,3704,"[\""Laptop\"", \""Headphones\""]",2622.53,"{\""seasonal\"": \""5%\""}",155924,1,"""South America""" +2024-03-28,28903,2459,"[\""Monitor\""]",1128.03,"{\""loyalty\"": \""9%\""}",100880,1,"""North America""" +2023-12-03,28904,9033,"[\""Monitor\"", \""Laptop\""]",1102.45,{},142169,1,"""Europe""" +2024-02-25,28905,3964,"[\""Wireless Mouse\""]",1319.46,{},98826,1,"""North America""" +2023-01-24,28906,2362,"[\""Wireless Mouse\"", \""Laptop\""]",693.24,"{\""seasonal\"": \""25%\""}",267605,0,"""North America""" +2023-05-18,28907,8137,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",114.31,"{\""loyalty\"": \""28%\""}",76573,1,"""Europe""" +2024-12-03,28908,8128,"[\""Keyboard\"", \""Charger\""]",517.76,"{\"": \""5%\""}",92736,0,"""Europe""" +2023-07-28,28909,6066,"[\""Laptop\""]",4710.51,"{\"": \""10%\""}",211232,0,"""Europe""" +2023-07-27,28910,6967,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3914.46,{},102188,1,"""Asia""" +2023-06-09,28911,2154,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2155.93,{},189357,1,"""Asia""" +2024-02-09,28912,4975,"[\""Wireless Mouse\""]",4827.21,"{\"": \""30%\""}",111797,1,"""Asia""" +2023-09-10,28913,9088,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3854.77,"{\""promo\"": \""30%\""}",72538,0,"""Asia""" +2024-06-02,28914,98,"[\""Laptop\"", \""Tablet\""]",705.13,{},153649,0,"""Europe""" +2024-03-03,28915,1066,"[\""Headphones\"", \""Wireless Mouse\""]",935.0,"{\""promo\"": \""8%\""}",1968,1,"""North America""" +2023-07-19,28916,6814,"[\""Keyboard\""]",3421.5,{},117140,0,"""South America""" +2023-06-29,28917,6562,"[\""Charger\""]",1464.34,{},98778,1,"""Europe""" +2024-07-10,28918,4940,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1761.09,{},217786,0,"""South America""" +2024-02-02,28919,4992,"[\""Phone\"", \""Laptop\""]",4059.82,"{\"": \""17%\""}",126922,1,"""Europe""" +2024-03-03,28920,2291,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1294.76,{},172450,0,"""Asia""" +2024-10-21,28921,9300,"[\""Phone\""]",778.09,"{\"": \""20%\""}",82605,0,"""Asia""" +2023-09-05,28922,9873,"[\""Wireless Mouse\"", \""Monitor\""]",1597.95,{},176289,0,"""South America""" +2023-01-26,28923,7795,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1286.34,{},14996,0,"""North America""" +2023-03-17,28924,3262,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4372.2,"{\""promo\"": \""30%\""}",171448,1,"""North America""" +2023-09-07,28925,1363,"[\""Wireless Mouse\"", \""Headphones\""]",2088.64,"{\""loyalty\"": \""14%\""}",157945,1,"""Europe""" +2024-04-09,28926,4432,"[\""Charger\"", \""Tablet\""]",1828.77,{},280308,1,"""Asia""" +2023-07-12,28927,1919,"[\""Phone\""]",995.15,"{\""loyalty\"": \""7%\""}",290510,0,"""Africa""" +2023-10-22,28928,1974,"[\""Charger\"", \""Tablet\""]",3814.47,{},233028,1,"""South America""" +2023-05-21,28929,4478,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3847.34,{},257553,0,"""Asia""" +2023-01-09,28930,1652,"[\""Keyboard\"", \""Wireless Mouse\""]",2389.27,"{\"": \""17%\""}",239793,1,"""South America""" +2024-09-24,28931,9075,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1767.14,"{\""seasonal\"": \""13%\""}",112366,0,"""Europe""" +2024-10-25,28932,7384,"[\""Monitor\"", \""Headphones\""]",1996.74,{},209375,1,"""Europe""" +2023-03-02,28933,3587,"[\""Phone\"", \""Keyboard\""]",3509.56,"{\""seasonal\"": \""24%\""}",158251,1,"""North America""" +2023-07-02,28934,8453,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4467.35,"{\""loyalty\"": \""25%\""}",246572,0,"""Africa""" +2024-05-13,28935,24,"[\""Phone\"", \""Tablet\""]",1529.86,{},225233,1,"""South America""" +2024-05-29,28936,4171,"[\""Charger\"", \""Phone\""]",206.53,{},268221,1,"""South America""" +2024-02-24,28937,2353,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",789.95,"{\"": \""7%\""}",62697,1,"""Asia""" +2024-08-30,28938,4536,"[\""Monitor\""]",492.9,"{\""loyalty\"": \""5%\""}",288383,1,"""South America""" +2023-05-09,28939,7092,"[\""Wireless Mouse\""]",1860.57,"{\"": \""26%\""}",120268,1,"""Europe""" +2023-06-15,28940,6743,"[\""Charger\""]",1701.42,"{\"": \""13%\""}",219370,1,"""Asia""" +2024-06-16,28941,8942,"[\""Keyboard\""]",4527.13,"{\""seasonal\"": \""18%\""}",296381,1,"""Africa""" +2023-09-30,28942,4320,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",850.09,"{\"": \""17%\""}",117265,1,"""Asia""" +2024-02-13,28943,972,"[\""Phone\""]",3047.45,"{\""loyalty\"": \""22%\""}",243600,1,"""Africa""" +2024-11-15,28944,1598,"[\""Tablet\"", \""Keyboard\""]",4484.26,"{\"": \""12%\""}",7170,0,"""Asia""" +2023-03-30,28945,3903,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2192.78,"{\""seasonal\"": \""13%\""}",12225,0,"""Asia""" +2023-05-10,28946,9972,"[\""Charger\"", \""Wireless Mouse\""]",2127.06,{},47288,1,"""North America""" +2023-10-02,28947,6301,"[\""Headphones\""]",100.03,"{\"": \""17%\""}",109304,0,"""North America""" +2024-04-01,28948,410,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2291.57,{},88925,1,"""Africa""" +2023-12-17,28949,3738,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1835.74,"{\""promo\"": \""7%\""}",91117,0,"""Asia""" +2023-10-24,28950,3571,"[\""Wireless Mouse\"", \""Laptop\""]",4463.6,"{\""seasonal\"": \""20%\""}",257234,0,"""North America""" +2023-09-06,28951,8341,"[\""Tablet\""]",472.22,"{\""loyalty\"": \""22%\""}",131503,1,"""Europe""" +2024-10-18,28952,9255,"[\""Wireless Mouse\"", \""Tablet\""]",2252.14,{},126001,1,"""Africa""" +2024-08-09,28953,5762,"[\""Tablet\""]",1832.0,"{\""promo\"": \""10%\""}",52744,0,"""South America""" +2024-07-21,28954,1474,"[\""Keyboard\"", \""Headphones\""]",3831.86,{},151319,1,"""South America""" +2024-04-18,28955,6908,"[\""Charger\""]",2031.3,"{\""seasonal\"": \""17%\""}",146295,1,"""Europe""" +2024-05-09,28956,2107,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2426.06,{},109205,0,"""Africa""" +2023-10-24,28957,4666,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",461.71,"{\""loyalty\"": \""18%\""}",273474,1,"""North America""" +2024-02-24,28958,9717,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1080.44,{},36527,1,"""Asia""" +2023-07-20,28959,8428,"[\""Headphones\""]",4958.13,{},294842,1,"""North America""" +2023-06-24,28960,1679,"[\""Headphones\"", \""Monitor\""]",171.44,"{\""loyalty\"": \""27%\""}",259294,0,"""Europe""" +2023-02-09,28961,5688,"[\""Headphones\""]",3492.46,{},22569,0,"""South America""" +2023-10-04,28962,279,"[\""Phone\"", \""Keyboard\""]",4881.38,"{\""seasonal\"": \""15%\""}",97394,1,"""Africa""" +2023-02-16,28963,9792,"[\""Headphones\"", \""Tablet\""]",4320.4,"{\""promo\"": \""15%\""}",147637,0,"""Africa""" +2023-06-12,28964,6296,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4696.23,{},148119,1,"""Africa""" +2024-07-13,28965,1686,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1559.37,"{\""seasonal\"": \""30%\""}",177100,1,"""Europe""" +2023-03-05,28966,3227,"[\""Headphones\"", \""Laptop\""]",2694.16,"{\""loyalty\"": \""21%\""}",209441,1,"""South America""" +2023-11-15,28967,8797,"[\""Keyboard\"", \""Headphones\""]",4513.46,{},113845,1,"""North America""" +2023-05-11,28968,7600,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1969.92,{},265885,0,"""North America""" +2024-03-23,28969,3418,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2571.02,"{\""promo\"": \""23%\""}",149368,1,"""North America""" +2023-08-20,28970,7979,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4849.27,{},201066,1,"""Asia""" +2023-05-26,28971,4799,"[\""Wireless Mouse\"", \""Keyboard\""]",3026.42,"{\"": \""26%\""}",69140,1,"""South America""" +2023-03-24,28972,5837,"[\""Headphones\"", \""Laptop\""]",3474.15,{},41146,1,"""North America""" +2023-05-24,28973,8876,"[\""Phone\""]",3556.44,{},23456,1,"""South America""" +2024-05-12,28974,5227,"[\""Charger\""]",1713.55,{},132022,1,"""South America""" +2023-03-15,28975,2999,"[\""Headphones\"", \""Laptop\""]",2901.61,{},215117,0,"""Asia""" +2024-01-07,28976,1396,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4933.36,{},236809,1,"""Asia""" +2024-09-07,28977,4970,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2568.95,"{\"": \""30%\""}",72563,0,"""Africa""" +2023-03-15,28978,5664,"[\""Tablet\"", \""Keyboard\""]",2390.17,"{\""promo\"": \""29%\""}",69050,0,"""South America""" +2024-12-31,28979,257,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3903.13,"{\""promo\"": \""15%\""}",9094,1,"""South America""" +2023-06-27,28980,4729,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2463.06,{},236444,1,"""Europe""" +2024-10-02,28981,7095,"[\""Charger\""]",4466.49,"{\""promo\"": \""9%\""}",212478,0,"""Africa""" +2023-09-30,28982,2823,"[\""Tablet\""]",3434.57,"{\"": \""10%\""}",179322,1,"""Asia""" +2023-02-15,28983,2776,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4824.94,{},117292,1,"""South America""" +2024-12-01,28984,2170,"[\""Wireless Mouse\"", \""Laptop\""]",4428.05,"{\"": \""18%\""}",205334,0,"""Asia""" +2024-10-13,28985,3298,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3267.55,{},152301,0,"""South America""" +2024-07-11,28986,8488,"[\""Wireless Mouse\"", \""Tablet\""]",1088.82,"{\"": \""9%\""}",40593,1,"""North America""" +2023-10-12,28987,8744,"[\""Tablet\"", \""Charger\""]",2430.01,"{\""promo\"": \""23%\""}",248376,0,"""South America""" +2023-08-18,28988,7857,"[\""Headphones\""]",4728.82,{},189625,0,"""Europe""" +2024-11-09,28989,630,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3127.01,"{\"": \""5%\""}",199812,1,"""Africa""" +2023-11-25,28990,59,"[\""Monitor\""]",2407.2,{},256496,1,"""South America""" +2023-08-10,28991,9672,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3950.36,"{\""seasonal\"": \""22%\""}",257242,0,"""Asia""" +2024-12-02,28992,2597,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2522.9,{},5221,1,"""South America""" +2023-07-03,28993,8532,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3301.26,{},21719,0,"""Africa""" +2024-11-15,28994,7840,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3858.35,"{\""seasonal\"": \""23%\""}",284142,0,"""Asia""" +2023-07-08,28995,6472,"[\""Headphones\"", \""Charger\""]",2556.56,"{\""promo\"": \""29%\""}",165605,0,"""Europe""" +2023-12-13,28996,1670,"[\""Phone\""]",3168.38,"{\""seasonal\"": \""16%\""}",43685,1,"""Africa""" +2023-06-03,28997,7172,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4074.0,{},271028,1,"""Asia""" +2024-02-12,28998,5577,"[\""Keyboard\""]",4897.94,"{\"": \""15%\""}",221225,0,"""Africa""" +2024-11-09,28999,6750,"[\""Charger\""]",2081.74,"{\""promo\"": \""10%\""}",140205,1,"""Africa""" +2024-06-13,29000,8118,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2097.45,"{\""promo\"": \""12%\""}",32005,1,"""Africa""" +2023-11-14,29001,6637,"[\""Phone\"", \""Charger\""]",4117.24,{},86074,0,"""North America""" +2023-10-26,29002,409,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",617.15,{},249750,1,"""South America""" +2024-06-29,29003,9982,"[\""Monitor\"", \""Phone\""]",804.72,"{\""seasonal\"": \""22%\""}",114598,1,"""Europe""" +2023-03-12,29004,4949,"[\""Tablet\"", \""Phone\""]",363.9,"{\""promo\"": \""24%\""}",49378,1,"""Asia""" +2024-03-07,29005,5425,"[\""Monitor\""]",1418.23,{},63969,1,"""Asia""" +2023-01-12,29006,5225,"[\""Laptop\"", \""Monitor\""]",4019.81,{},99325,0,"""Asia""" +2023-12-27,29007,3391,"[\""Tablet\""]",2210.97,{},280365,0,"""Europe""" +2023-01-17,29008,5237,"[\""Headphones\"", \""Phone\""]",3661.56,{},179035,1,"""North America""" +2023-01-31,29009,9968,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3018.77,"{\""promo\"": \""28%\""}",239913,0,"""Asia""" +2024-07-22,29010,5366,"[\""Keyboard\""]",4902.67,{},102539,0,"""North America""" +2023-06-19,29011,6729,"[\""Charger\"", \""Headphones\""]",4821.07,{},181803,0,"""Asia""" +2024-07-08,29012,4006,"[\""Tablet\"", \""Keyboard\""]",73.79,"{\""seasonal\"": \""10%\""}",266742,0,"""Asia""" +2024-08-26,29013,5870,"[\""Monitor\""]",1413.15,{},15202,1,"""North America""" +2024-04-19,29014,1400,"[\""Charger\""]",345.43,"{\""seasonal\"": \""29%\""}",218648,0,"""North America""" +2023-01-10,29015,9587,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3042.6,"{\""loyalty\"": \""24%\""}",273951,1,"""Europe""" +2023-09-11,29016,1096,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1773.4,"{\""loyalty\"": \""9%\""}",265245,0,"""Asia""" +2024-10-01,29017,7574,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",248.2,{},155121,1,"""Asia""" +2023-10-19,29018,3590,"[\""Charger\"", \""Headphones\""]",164.18,"{\"": \""22%\""}",46038,0,"""Africa""" +2024-11-05,29019,2565,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2042.13,"{\""loyalty\"": \""20%\""}",85167,1,"""Asia""" +2023-01-29,29020,3504,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2873.73,{},239738,1,"""South America""" +2023-02-17,29021,9983,"[\""Tablet\""]",1591.13,{},203357,1,"""Asia""" +2023-12-21,29022,5810,"[\""Tablet\""]",2882.49,{},1563,1,"""Asia""" +2023-06-09,29023,5680,"[\""Monitor\""]",3401.61,"{\""promo\"": \""16%\""}",289740,0,"""Asia""" +2023-03-17,29024,9744,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2387.91,{},284576,1,"""Europe""" +2023-03-23,29025,771,"[\""Laptop\""]",3729.7,{},225695,1,"""Asia""" +2024-02-18,29026,7341,"[\""Charger\"", \""Keyboard\""]",2795.91,"{\""loyalty\"": \""29%\""}",122593,1,"""Africa""" +2023-04-27,29027,7846,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2853.58,{},282839,1,"""Asia""" +2023-09-17,29028,5646,"[\""Phone\"", \""Monitor\""]",4126.95,"{\""promo\"": \""30%\""}",33171,1,"""South America""" +2024-10-27,29029,1863,"[\""Keyboard\"", \""Headphones\""]",2183.54,{},170140,1,"""Asia""" +2023-11-25,29030,7687,"[\""Headphones\""]",3631.37,"{\"": \""15%\""}",67656,1,"""Europe""" +2024-10-22,29031,4412,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4087.62,{},44875,0,"""Europe""" +2023-10-23,29032,6808,"[\""Phone\""]",4525.36,{},133421,1,"""North America""" +2024-06-24,29033,7018,"[\""Keyboard\"", \""Headphones\""]",4744.09,{},204477,1,"""Europe""" +2024-02-28,29034,6497,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1937.19,{},31048,1,"""South America""" +2024-01-06,29035,1005,"[\""Phone\"", \""Keyboard\""]",173.25,{},228956,1,"""Asia""" +2023-01-02,29036,2594,"[\""Wireless Mouse\""]",63.14,{},299941,1,"""South America""" +2023-11-21,29037,938,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2135.09,"{\""promo\"": \""30%\""}",158560,0,"""Asia""" +2024-09-26,29038,9750,"[\""Keyboard\""]",1911.43,{},80859,1,"""South America""" +2023-01-31,29039,3739,"[\""Monitor\""]",2590.76,{},101440,1,"""Asia""" +2024-01-24,29040,8348,"[\""Phone\"", \""Laptop\""]",4958.21,"{\""seasonal\"": \""12%\""}",225553,1,"""South America""" +2024-08-06,29041,4463,"[\""Laptop\"", \""Phone\""]",4945.22,"{\"": \""27%\""}",260288,1,"""Asia""" +2023-04-29,29042,7786,"[\""Wireless Mouse\""]",4559.63,"{\""loyalty\"": \""26%\""}",207525,0,"""South America""" +2023-09-24,29043,7535,"[\""Wireless Mouse\"", \""Monitor\""]",1072.49,"{\""promo\"": \""9%\""}",18686,1,"""North America""" +2023-07-15,29044,2882,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3573.26,{},261743,0,"""Asia""" +2023-09-03,29045,9632,"[\""Laptop\""]",541.51,{},22857,0,"""North America""" +2023-06-04,29046,3919,"[\""Keyboard\""]",3147.56,{},208030,0,"""North America""" +2023-05-04,29047,7051,"[\""Charger\""]",102.9,{},82929,1,"""North America""" +2023-10-02,29048,5748,"[\""Monitor\"", \""Phone\""]",4996.08,{},80758,1,"""Africa""" +2023-10-30,29049,7521,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3602.99,{},133267,0,"""North America""" +2024-12-20,29050,3389,"[\""Wireless Mouse\"", \""Headphones\""]",3545.22,{},216928,1,"""Europe""" +2023-01-02,29051,6466,"[\""Headphones\"", \""Monitor\""]",3855.8,"{\""loyalty\"": \""29%\""}",183768,0,"""South America""" +2024-09-12,29052,1756,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4541.42,"{\""seasonal\"": \""21%\""}",215689,1,"""South America""" +2024-02-02,29053,3667,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",504.74,"{\""loyalty\"": \""27%\""}",275079,0,"""Europe""" +2023-09-19,29054,5274,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2978.33,{},220679,1,"""South America""" +2024-10-25,29055,9462,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",688.12,"{\""seasonal\"": \""17%\""}",79084,1,"""Asia""" +2023-07-30,29056,7846,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2283.84,{},18666,1,"""Africa""" +2023-05-26,29057,9061,"[\""Tablet\"", \""Wireless Mouse\""]",3308.14,{},129138,1,"""Europe""" +2024-07-14,29058,2439,"[\""Wireless Mouse\""]",3415.61,"{\""loyalty\"": \""10%\""}",170937,1,"""South America""" +2023-06-10,29059,4153,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3951.85,{},251584,1,"""Europe""" +2023-04-21,29060,7468,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1509.23,"{\"": \""14%\""}",104604,0,"""South America""" +2023-11-01,29061,6971,"[\""Phone\"", \""Tablet\""]",1643.03,"{\""promo\"": \""7%\""}",278272,0,"""South America""" +2024-02-26,29062,6387,"[\""Monitor\""]",4282.75,"{\""seasonal\"": \""10%\""}",137306,0,"""South America""" +2024-05-12,29063,6389,"[\""Wireless Mouse\""]",4196.51,"{\"": \""10%\""}",61666,0,"""South America""" +2023-04-04,29064,7243,"[\""Keyboard\"", \""Monitor\""]",234.67,{},26046,1,"""South America""" +2024-01-24,29065,8068,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4027.66,"{\""loyalty\"": \""6%\""}",133937,0,"""Africa""" +2023-09-22,29066,9277,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3726.37,"{\""promo\"": \""18%\""}",298965,0,"""South America""" +2024-08-01,29067,583,"[\""Tablet\""]",789.38,"{\""seasonal\"": \""25%\""}",181247,0,"""South America""" +2024-02-19,29068,3205,"[\""Laptop\""]",535.01,{},56779,1,"""South America""" +2023-12-24,29069,4784,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1284.67,"{\""loyalty\"": \""25%\""}",87554,1,"""North America""" +2023-12-29,29070,4661,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1921.51,{},269761,1,"""Africa""" +2024-12-18,29071,8538,"[\""Phone\"", \""Charger\"", \""Laptop\""]",393.81,{},129262,1,"""Europe""" +2023-04-03,29072,1698,"[\""Monitor\""]",2400.45,"{\"": \""24%\""}",247096,0,"""Africa""" +2024-05-16,29073,7125,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4037.28,{},185920,1,"""Africa""" +2024-10-29,29074,2917,"[\""Headphones\""]",4109.2,"{\""seasonal\"": \""5%\""}",87295,1,"""Africa""" +2024-08-18,29075,6003,"[\""Phone\""]",2730.19,"{\""promo\"": \""11%\""}",97945,1,"""South America""" +2024-06-15,29076,3796,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4031.01,{},254334,0,"""North America""" +2023-11-17,29077,1714,"[\""Wireless Mouse\"", \""Keyboard\""]",194.27,{},170431,1,"""South America""" +2024-07-28,29078,2068,"[\""Keyboard\"", \""Tablet\""]",1869.73,"{\""seasonal\"": \""20%\""}",251444,1,"""South America""" +2023-06-12,29079,5551,"[\""Monitor\""]",4406.03,"{\""promo\"": \""22%\""}",288316,0,"""South America""" +2024-09-15,29080,5313,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2734.15,{},278052,1,"""Africa""" +2023-11-16,29081,779,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3433.19,{},30620,0,"""Africa""" +2024-07-08,29082,7295,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2071.12,{},247314,1,"""Africa""" +2023-09-23,29083,6812,"[\""Monitor\"", \""Phone\""]",4738.01,"{\""promo\"": \""7%\""}",191460,1,"""Africa""" +2024-09-29,29084,2013,"[\""Laptop\""]",405.41,{},279379,1,"""North America""" +2023-07-25,29085,4029,"[\""Phone\"", \""Wireless Mouse\""]",2793.36,{},177486,1,"""Europe""" +2023-06-18,29086,9192,"[\""Keyboard\""]",1047.2,{},153612,0,"""Europe""" +2024-05-11,29087,8275,"[\""Charger\""]",1825.13,{},31497,1,"""Europe""" +2023-11-28,29088,7997,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3068.66,{},33501,1,"""North America""" +2023-07-23,29089,9407,"[\""Wireless Mouse\"", \""Charger\""]",1823.19,"{\""promo\"": \""29%\""}",215550,1,"""Europe""" +2023-12-07,29090,2851,"[\""Headphones\""]",77.71,"{\""promo\"": \""11%\""}",117245,1,"""Africa""" +2024-12-24,29091,2066,"[\""Tablet\""]",3167.06,{},115706,1,"""South America""" +2023-07-02,29092,4769,"[\""Monitor\"", \""Keyboard\""]",3858.33,{},78762,0,"""North America""" +2023-11-02,29093,3063,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3489.25,{},225278,0,"""Asia""" +2023-05-12,29094,79,"[\""Phone\""]",2973.61,{},233599,1,"""Asia""" +2024-11-10,29095,3257,"[\""Phone\"", \""Monitor\""]",2433.39,{},260419,1,"""North America""" +2023-03-14,29096,6044,"[\""Tablet\"", \""Phone\""]",1155.16,"{\""loyalty\"": \""21%\""}",241740,1,"""Asia""" +2024-08-25,29097,7654,"[\""Charger\""]",2055.49,{},96222,1,"""Asia""" +2024-03-20,29098,7434,"[\""Monitor\""]",2719.59,"{\""seasonal\"": \""25%\""}",5968,0,"""Europe""" +2023-08-05,29099,4207,"[\""Phone\""]",1412.99,"{\""seasonal\"": \""24%\""}",222796,0,"""North America""" +2024-11-18,29100,7609,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3480.4,{},127619,1,"""Asia""" +2023-03-25,29101,8520,"[\""Keyboard\"", \""Charger\""]",2703.13,{},243567,1,"""North America""" +2024-02-19,29102,9196,"[\""Wireless Mouse\"", \""Laptop\""]",3849.18,{},216539,0,"""Europe""" +2023-06-09,29103,4569,"[\""Headphones\""]",4494.6,{},222771,1,"""Europe""" +2024-05-10,29104,4718,"[\""Tablet\"", \""Monitor\""]",3903.84,{},51642,1,"""North America""" +2024-03-09,29105,109,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",708.64,{},22064,1,"""South America""" +2023-08-31,29106,3852,"[\""Keyboard\""]",2750.01,"{\""promo\"": \""28%\""}",243651,0,"""Europe""" +2024-01-28,29107,3326,"[\""Phone\"", \""Charger\""]",3490.08,"{\""seasonal\"": \""30%\""}",54952,1,"""Asia""" +2024-07-07,29108,4400,"[\""Phone\"", \""Headphones\""]",2035.3,{},263004,0,"""North America""" +2023-09-29,29109,9883,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4784.12,{},293657,1,"""Europe""" +2023-03-22,29110,2802,"[\""Headphones\"", \""Charger\""]",4657.94,{},147971,0,"""South America""" +2023-02-06,29111,7588,"[\""Headphones\""]",3492.02,"{\""seasonal\"": \""21%\""}",78398,0,"""Europe""" +2024-06-10,29112,794,"[\""Tablet\""]",427.1,"{\""promo\"": \""24%\""}",104021,1,"""Africa""" +2023-06-11,29113,7786,"[\""Wireless Mouse\"", \""Phone\""]",1420.37,{},274318,1,"""South America""" +2024-10-19,29114,8886,"[\""Charger\""]",1180.76,"{\"": \""9%\""}",187353,1,"""Africa""" +2024-07-12,29115,3463,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3215.74,{},286108,0,"""Africa""" +2023-03-02,29116,3076,"[\""Monitor\"", \""Wireless Mouse\""]",436.96,{},284124,0,"""North America""" +2023-03-24,29117,1148,"[\""Phone\""]",2544.24,"{\""loyalty\"": \""13%\""}",239689,1,"""North America""" +2024-09-03,29118,3264,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1441.02,"{\"": \""13%\""}",42282,0,"""Asia""" +2024-06-17,29119,8763,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4626.17,{},45286,1,"""South America""" +2023-03-02,29120,8886,"[\""Phone\"", \""Wireless Mouse\""]",4721.29,"{\""seasonal\"": \""30%\""}",152511,0,"""South America""" +2023-12-16,29121,43,"[\""Laptop\"", \""Headphones\""]",3526.9,"{\""loyalty\"": \""10%\""}",59738,1,"""North America""" +2023-03-10,29122,9816,"[\""Wireless Mouse\"", \""Tablet\""]",2269.43,"{\""promo\"": \""10%\""}",139511,0,"""Africa""" +2024-03-17,29123,343,"[\""Wireless Mouse\""]",4142.08,"{\""seasonal\"": \""17%\""}",220532,0,"""Asia""" +2024-09-09,29124,1304,"[\""Keyboard\"", \""Monitor\""]",1838.88,"{\"": \""6%\""}",144626,0,"""Asia""" +2023-08-20,29125,8992,"[\""Headphones\""]",1552.03,"{\""loyalty\"": \""24%\""}",236770,1,"""Europe""" +2023-10-30,29126,286,"[\""Keyboard\"", \""Wireless Mouse\""]",1311.96,{},45258,0,"""North America""" +2024-12-20,29127,6800,"[\""Keyboard\""]",2776.69,"{\""loyalty\"": \""15%\""}",165468,0,"""Europe""" +2023-01-03,29128,891,"[\""Headphones\""]",3571.26,"{\""seasonal\"": \""19%\""}",283651,0,"""Asia""" +2024-09-18,29129,1065,"[\""Charger\""]",1025.45,"{\"": \""7%\""}",213020,0,"""Europe""" +2023-09-16,29130,7792,"[\""Keyboard\"", \""Headphones\""]",1535.83,"{\""seasonal\"": \""20%\""}",71186,1,"""Asia""" +2024-02-16,29131,184,"[\""Phone\"", \""Wireless Mouse\""]",2214.17,{},157687,1,"""Europe""" +2024-04-20,29132,1479,"[\""Charger\""]",3427.43,"{\""seasonal\"": \""29%\""}",188897,0,"""Africa""" +2023-11-28,29133,5744,"[\""Monitor\""]",4942.89,"{\"": \""22%\""}",95722,0,"""Europe""" +2023-05-09,29134,9995,"[\""Wireless Mouse\""]",1512.11,"{\"": \""5%\""}",54362,0,"""Asia""" +2023-07-14,29135,2832,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3022.8,"{\""promo\"": \""11%\""}",17718,0,"""Africa""" +2023-05-31,29136,8890,"[\""Phone\""]",62.31,{},83151,1,"""North America""" +2024-12-04,29137,9061,"[\""Phone\""]",78.47,"{\""promo\"": \""8%\""}",185329,1,"""Europe""" +2024-06-25,29138,7106,"[\""Tablet\""]",4323.22,"{\"": \""25%\""}",288058,0,"""North America""" +2024-07-18,29139,9969,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",167.85,{},165709,0,"""Asia""" +2023-08-22,29140,853,"[\""Wireless Mouse\""]",2545.37,"{\""promo\"": \""27%\""}",228063,0,"""South America""" +2024-05-27,29141,8024,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",353.74,"{\""loyalty\"": \""28%\""}",77982,1,"""North America""" +2023-09-06,29142,9641,"[\""Tablet\"", \""Keyboard\""]",2032.33,"{\"": \""12%\""}",40193,1,"""Africa""" +2023-07-02,29143,370,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2904.13,{},155374,1,"""Asia""" +2023-07-18,29144,382,"[\""Laptop\"", \""Tablet\""]",3613.84,{},6659,1,"""Europe""" +2024-06-27,29145,29,"[\""Monitor\""]",799.22,"{\""loyalty\"": \""23%\""}",38710,1,"""North America""" +2023-05-23,29146,7539,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1962.55,"{\"": \""16%\""}",120631,1,"""South America""" +2024-01-30,29147,6265,"[\""Phone\"", \""Tablet\""]",994.17,"{\""promo\"": \""23%\""}",222531,0,"""North America""" +2023-11-26,29148,5356,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2560.12,"{\""loyalty\"": \""15%\""}",90951,1,"""Europe""" +2024-10-17,29149,1092,"[\""Tablet\""]",4987.91,"{\""promo\"": \""19%\""}",77019,0,"""Africa""" +2023-04-18,29150,9315,"[\""Monitor\"", \""Wireless Mouse\""]",812.28,{},157356,0,"""Africa""" +2024-06-27,29151,8850,"[\""Headphones\"", \""Monitor\""]",4120.4,"{\""promo\"": \""27%\""}",6341,0,"""Asia""" +2023-11-07,29152,4518,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",685.42,{},203290,0,"""Asia""" +2024-03-28,29153,76,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1503.08,{},161707,1,"""Europe""" +2023-06-26,29154,9170,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",89.79,"{\""promo\"": \""18%\""}",218480,1,"""South America""" +2023-12-18,29155,2408,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3923.33,{},83714,0,"""Asia""" +2024-02-04,29156,126,"[\""Wireless Mouse\"", \""Keyboard\""]",1574.68,{},173701,1,"""South America""" +2023-08-07,29157,8225,"[\""Tablet\"", \""Headphones\""]",727.57,"{\""loyalty\"": \""9%\""}",108770,0,"""Africa""" +2023-05-19,29158,5882,"[\""Wireless Mouse\""]",2032.77,{},5998,1,"""Europe""" +2024-11-28,29159,3841,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2374.6,{},220607,1,"""Asia""" +2024-09-29,29160,277,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",884.38,{},101507,0,"""Africa""" +2023-04-05,29161,9495,"[\""Laptop\"", \""Keyboard\""]",1103.81,{},165973,0,"""Asia""" +2024-08-30,29162,4081,"[\""Phone\"", \""Monitor\""]",920.1,"{\""seasonal\"": \""8%\""}",255446,0,"""Europe""" +2024-01-21,29163,7131,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2327.21,"{\"": \""26%\""}",79593,1,"""Europe""" +2023-09-25,29164,5341,"[\""Keyboard\""]",4775.48,{},34611,0,"""North America""" +2024-12-25,29165,7747,"[\""Headphones\"", \""Laptop\""]",1887.82,{},130323,1,"""Asia""" +2023-07-30,29166,5700,"[\""Phone\"", \""Tablet\""]",3146.09,"{\""seasonal\"": \""30%\""}",203963,1,"""Europe""" +2024-04-24,29167,2292,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4520.74,"{\""seasonal\"": \""18%\""}",135285,0,"""North America""" +2023-10-18,29168,4087,"[\""Phone\""]",2722.77,{},249460,1,"""Europe""" +2024-01-15,29169,8969,"[\""Charger\"", \""Keyboard\""]",2869.79,"{\""loyalty\"": \""15%\""}",199545,1,"""South America""" +2024-05-27,29170,8424,"[\""Keyboard\""]",2316.87,"{\"": \""20%\""}",232292,1,"""Europe""" +2023-01-14,29171,931,"[\""Laptop\"", \""Phone\""]",3624.32,"{\"": \""6%\""}",230666,0,"""Asia""" +2024-05-30,29172,5735,"[\""Wireless Mouse\""]",4277.08,{},140278,0,"""Africa""" +2024-02-09,29173,560,"[\""Charger\"", \""Headphones\""]",2850.48,{},10962,0,"""North America""" +2024-03-05,29174,8786,"[\""Tablet\"", \""Charger\""]",4436.73,"{\"": \""15%\""}",254925,0,"""South America""" +2024-12-31,29175,7677,"[\""Tablet\""]",672.2,{},92189,0,"""Africa""" +2024-12-29,29176,3964,"[\""Headphones\"", \""Tablet\""]",3412.12,{},167698,1,"""South America""" +2024-02-19,29177,7938,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1028.49,{},63895,0,"""South America""" +2023-03-08,29178,5292,"[\""Tablet\"", \""Keyboard\""]",122.34,{},210837,0,"""North America""" +2024-01-13,29179,4050,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1420.04,"{\""seasonal\"": \""13%\""}",3742,0,"""Asia""" +2023-08-05,29180,1418,"[\""Charger\""]",1863.14,"{\"": \""22%\""}",7606,1,"""Africa""" +2023-12-21,29181,2917,"[\""Monitor\"", \""Tablet\""]",4693.92,"{\""promo\"": \""25%\""}",233039,1,"""Europe""" +2023-10-10,29182,9758,"[\""Wireless Mouse\"", \""Tablet\""]",4506.21,{},17742,0,"""North America""" +2024-04-19,29183,8346,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4788.74,{},291766,1,"""South America""" +2023-11-24,29184,4892,"[\""Laptop\"", \""Monitor\""]",1928.75,"{\"": \""18%\""}",51738,0,"""North America""" +2023-05-08,29185,6481,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1986.8,"{\"": \""6%\""}",269044,1,"""Africa""" +2023-03-19,29186,8354,"[\""Tablet\"", \""Charger\""]",2496.69,{},90255,0,"""Europe""" +2024-01-19,29187,4649,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1818.12,"{\""loyalty\"": \""16%\""}",261689,0,"""Europe""" +2024-08-23,29188,2859,"[\""Laptop\"", \""Keyboard\""]",2479.98,{},112613,1,"""Asia""" +2023-02-02,29189,6237,"[\""Monitor\"", \""Phone\""]",4601.06,"{\""promo\"": \""23%\""}",16335,1,"""North America""" +2023-06-02,29190,8654,"[\""Phone\""]",1429.79,"{\""loyalty\"": \""29%\""}",241663,0,"""Asia""" +2024-06-12,29191,8028,"[\""Tablet\""]",4676.99,{},33931,0,"""Europe""" +2023-04-07,29192,7518,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3024.63,{},109478,1,"""Europe""" +2024-12-11,29193,1668,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4759.48,"{\""seasonal\"": \""13%\""}",184830,0,"""Europe""" +2024-06-06,29194,3072,"[\""Keyboard\""]",3632.74,"{\""seasonal\"": \""8%\""}",8461,0,"""Europe""" +2024-10-04,29195,3208,"[\""Wireless Mouse\"", \""Phone\""]",4081.08,{},32365,0,"""Europe""" +2024-02-08,29196,2636,"[\""Keyboard\"", \""Laptop\""]",347.93,"{\""seasonal\"": \""20%\""}",291338,0,"""North America""" +2024-02-18,29197,195,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",632.2,"{\""promo\"": \""7%\""}",103767,1,"""South America""" +2023-07-19,29198,2248,"[\""Phone\"", \""Monitor\""]",3786.84,"{\""promo\"": \""14%\""}",49625,1,"""Europe""" +2023-01-29,29199,8156,"[\""Monitor\""]",1610.38,"{\"": \""14%\""}",243382,1,"""Europe""" +2024-03-29,29200,8402,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4304.5,"{\""seasonal\"": \""16%\""}",16169,1,"""North America""" +2024-10-30,29201,9054,"[\""Wireless Mouse\""]",208.91,{},96360,0,"""North America""" +2023-06-28,29202,4895,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2225.91,{},134494,0,"""Asia""" +2023-08-31,29203,9560,"[\""Headphones\"", \""Charger\""]",3785.95,{},81183,0,"""Asia""" +2024-09-23,29204,4880,"[\""Charger\""]",519.54,"{\"": \""25%\""}",109469,1,"""Africa""" +2023-03-03,29205,1388,"[\""Charger\""]",4424.6,{},33977,0,"""Africa""" +2023-05-20,29206,6683,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3507.59,{},245361,0,"""South America""" +2024-05-02,29207,5232,"[\""Tablet\"", \""Laptop\""]",4072.3,{},272528,1,"""Africa""" +2023-03-03,29208,8779,"[\""Tablet\""]",2729.29,"{\""seasonal\"": \""17%\""}",165889,1,"""Africa""" +2024-11-27,29209,9398,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1395.55,{},142610,0,"""Asia""" +2023-04-27,29210,5046,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3282.88,"{\""loyalty\"": \""10%\""}",288670,1,"""South America""" +2024-03-08,29211,4189,"[\""Headphones\"", \""Laptop\""]",1936.47,"{\""loyalty\"": \""5%\""}",288267,0,"""Asia""" +2024-10-02,29212,8513,"[\""Laptop\"", \""Keyboard\""]",54.94,"{\""loyalty\"": \""19%\""}",20315,1,"""Europe""" +2024-08-25,29213,9707,"[\""Monitor\""]",2656.53,"{\"": \""24%\""}",226584,0,"""South America""" +2024-02-17,29214,7271,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2574.15,{},53844,0,"""Asia""" +2023-10-13,29215,8641,"[\""Wireless Mouse\"", \""Headphones\""]",174.86,{},66619,1,"""North America""" +2023-08-22,29216,917,"[\""Wireless Mouse\""]",1130.3,{},250889,1,"""Asia""" +2023-04-10,29217,9010,"[\""Phone\""]",4051.32,{},84219,1,"""Asia""" +2023-05-16,29218,4185,"[\""Phone\""]",4167.06,{},236889,0,"""Asia""" +2023-08-07,29219,6064,"[\""Headphones\"", \""Laptop\""]",3254.34,"{\"": \""8%\""}",51575,1,"""Africa""" +2023-07-20,29220,3963,"[\""Phone\""]",52.29,"{\""promo\"": \""8%\""}",216110,0,"""Africa""" +2023-07-06,29221,8912,"[\""Tablet\""]",2990.2,"{\""seasonal\"": \""7%\""}",75982,0,"""North America""" +2023-08-30,29222,7193,"[\""Phone\""]",837.71,{},61018,1,"""South America""" +2023-02-25,29223,7511,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3829.77,"{\""seasonal\"": \""29%\""}",183153,0,"""Asia""" +2024-01-20,29224,198,"[\""Tablet\""]",2391.64,"{\"": \""21%\""}",190982,1,"""North America""" +2023-02-25,29225,1042,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3291.21,{},242489,0,"""North America""" +2024-06-05,29226,5190,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2094.02,"{\""promo\"": \""23%\""}",60546,0,"""Europe""" +2024-02-15,29227,3010,"[\""Phone\""]",3883.24,"{\""loyalty\"": \""16%\""}",248193,0,"""South America""" +2023-01-03,29228,5446,"[\""Monitor\"", \""Charger\""]",4823.43,"{\""promo\"": \""27%\""}",177689,0,"""Europe""" +2023-10-21,29229,7022,"[\""Monitor\""]",1829.03,"{\""promo\"": \""8%\""}",219377,1,"""Africa""" +2023-08-27,29230,1036,"[\""Laptop\""]",2549.71,{},55072,0,"""Africa""" +2024-10-23,29231,7001,"[\""Keyboard\"", \""Charger\""]",3147.93,{},64680,0,"""Africa""" +2024-07-13,29232,9788,"[\""Monitor\"", \""Tablet\""]",3632.42,{},196813,1,"""Asia""" +2024-02-04,29233,5989,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4867.93,"{\""loyalty\"": \""23%\""}",218376,0,"""South America""" +2023-01-01,29234,781,"[\""Monitor\""]",3202.68,"{\"": \""22%\""}",251654,1,"""Europe""" +2023-03-31,29235,2189,"[\""Charger\"", \""Monitor\""]",1832.19,"{\"": \""22%\""}",288634,1,"""Asia""" +2023-11-11,29236,3104,"[\""Keyboard\"", \""Headphones\""]",750.22,{},201175,0,"""South America""" +2023-05-05,29237,2377,"[\""Keyboard\"", \""Laptop\""]",659.81,"{\""promo\"": \""17%\""}",208827,1,"""Africa""" +2023-07-10,29238,6572,"[\""Tablet\"", \""Headphones\""]",2365.64,"{\""loyalty\"": \""20%\""}",149081,0,"""South America""" +2023-05-02,29239,2063,"[\""Monitor\""]",4023.82,"{\""promo\"": \""27%\""}",126624,1,"""Europe""" +2024-11-19,29240,5630,"[\""Wireless Mouse\""]",2183.74,{},212036,1,"""Europe""" +2024-04-07,29241,1602,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3604.17,"{\""seasonal\"": \""5%\""}",41203,1,"""Europe""" +2023-04-27,29242,9543,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2172.9,"{\""seasonal\"": \""6%\""}",19806,1,"""North America""" +2024-02-27,29243,5801,"[\""Charger\"", \""Tablet\""]",3545.84,"{\""promo\"": \""24%\""}",63589,0,"""North America""" +2023-08-28,29244,8226,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3317.01,"{\"": \""12%\""}",25794,1,"""North America""" +2023-06-23,29245,4588,"[\""Wireless Mouse\""]",4129.41,{},298555,0,"""South America""" +2023-07-26,29246,3365,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",408.25,"{\""seasonal\"": \""6%\""}",42125,0,"""Africa""" +2023-11-03,29247,6039,"[\""Phone\""]",177.76,{},49782,1,"""Africa""" +2024-06-05,29248,8044,"[\""Phone\""]",1863.12,{},91274,0,"""Asia""" +2024-11-12,29249,3615,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2193.3,{},253770,1,"""Africa""" +2024-10-06,29250,1778,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3295.54,{},114481,0,"""North America""" +2024-02-10,29251,9328,"[\""Laptop\"", \""Phone\""]",111.47,{},273924,0,"""North America""" +2023-04-04,29252,5509,"[\""Tablet\""]",3764.4,{},211880,1,"""North America""" +2024-01-25,29253,8812,"[\""Keyboard\"", \""Charger\""]",3870.27,"{\""loyalty\"": \""23%\""}",94147,0,"""Africa""" +2024-10-02,29254,2669,"[\""Charger\""]",3485.95,{},48361,1,"""Africa""" +2023-09-30,29255,3478,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3788.55,{},56379,0,"""North America""" +2024-04-02,29256,1673,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1676.6,{},261252,1,"""Asia""" +2023-10-17,29257,1153,"[\""Wireless Mouse\"", \""Charger\""]",838.09,"{\""seasonal\"": \""28%\""}",195542,1,"""South America""" +2024-04-27,29258,6394,"[\""Tablet\""]",4440.66,"{\""seasonal\"": \""20%\""}",131686,1,"""Asia""" +2024-10-24,29259,9482,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3055.8,"{\""seasonal\"": \""25%\""}",272860,1,"""Asia""" +2024-03-09,29260,4266,"[\""Keyboard\"", \""Headphones\""]",3944.92,{},220457,0,"""Asia""" +2024-10-15,29261,247,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3036.54,"{\""promo\"": \""20%\""}",202304,1,"""South America""" +2024-07-17,29262,7721,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1359.55,{},210525,1,"""South America""" +2023-09-17,29263,3339,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2008.33,"{\"": \""5%\""}",3550,0,"""North America""" +2023-12-03,29264,6261,"[\""Monitor\""]",3883.18,{},177132,1,"""Europe""" +2024-11-11,29265,2906,"[\""Phone\""]",1752.4,{},107276,0,"""South America""" +2024-03-08,29266,1118,"[\""Wireless Mouse\"", \""Phone\""]",4822.9,{},42310,1,"""South America""" +2024-08-31,29267,9533,"[\""Laptop\""]",2971.58,"{\""seasonal\"": \""18%\""}",58787,0,"""South America""" +2023-02-10,29268,6115,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2795.7,"{\""promo\"": \""11%\""}",103307,1,"""South America""" +2024-11-29,29269,647,"[\""Headphones\""]",4940.23,"{\""seasonal\"": \""30%\""}",152010,1,"""North America""" +2024-12-30,29270,1628,"[\""Keyboard\""]",178.04,"{\""loyalty\"": \""15%\""}",41013,1,"""South America""" +2023-09-24,29271,3009,"[\""Headphones\""]",4291.03,"{\""loyalty\"": \""29%\""}",124102,1,"""Europe""" +2023-04-14,29272,6370,"[\""Laptop\"", \""Keyboard\""]",86.06,{},77871,0,"""South America""" +2023-01-27,29273,9780,"[\""Monitor\"", \""Charger\""]",3771.45,"{\""promo\"": \""26%\""}",58247,1,"""Europe""" +2023-09-10,29274,1274,"[\""Monitor\"", \""Wireless Mouse\""]",2601.04,{},110019,0,"""North America""" +2023-02-28,29275,9132,"[\""Monitor\""]",4202.07,"{\""loyalty\"": \""14%\""}",175767,1,"""North America""" +2023-11-02,29276,5439,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2647.27,"{\"": \""19%\""}",142044,0,"""South America""" +2024-03-02,29277,4489,"[\""Tablet\"", \""Phone\""]",1934.61,{},232720,0,"""Europe""" +2024-12-02,29278,493,"[\""Headphones\""]",4677.39,"{\""loyalty\"": \""15%\""}",39531,1,"""South America""" +2023-07-20,29279,3983,"[\""Headphones\"", \""Charger\""]",3255.19,"{\"": \""7%\""}",273509,0,"""South America""" +2023-08-08,29280,8635,"[\""Wireless Mouse\""]",2501.86,"{\""seasonal\"": \""27%\""}",188498,1,"""Europe""" +2023-03-09,29281,2809,"[\""Laptop\""]",4581.21,{},155468,0,"""North America""" +2023-01-12,29282,7157,"[\""Laptop\"", \""Keyboard\""]",975.87,"{\""seasonal\"": \""24%\""}",270558,0,"""Africa""" +2024-02-11,29283,2294,"[\""Laptop\"", \""Tablet\""]",130.14,{},297486,0,"""Asia""" +2024-11-29,29284,5306,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4321.75,{},65116,0,"""Europe""" +2023-08-04,29285,2712,"[\""Charger\""]",1402.01,{},273039,1,"""Europe""" +2024-01-06,29286,7340,"[\""Charger\"", \""Laptop\""]",4168.94,{},110286,1,"""Europe""" +2024-06-19,29287,5271,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1561.15,"{\""seasonal\"": \""26%\""}",152647,1,"""Asia""" +2023-07-25,29288,7260,"[\""Phone\"", \""Headphones\""]",3389.78,"{\""promo\"": \""11%\""}",235055,0,"""North America""" +2023-04-05,29289,3675,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3743.53,"{\""loyalty\"": \""16%\""}",52557,1,"""Africa""" +2023-05-30,29290,9218,"[\""Monitor\"", \""Wireless Mouse\""]",1566.77,"{\""promo\"": \""14%\""}",249401,0,"""Asia""" +2024-06-08,29291,3290,"[\""Phone\""]",1137.59,{},28035,0,"""Europe""" +2023-09-19,29292,6350,"[\""Headphones\""]",1784.38,"{\""seasonal\"": \""30%\""}",156212,1,"""North America""" +2023-04-27,29293,6965,"[\""Tablet\""]",356.89,{},233953,1,"""Asia""" +2023-02-27,29294,2203,"[\""Phone\""]",3832.77,"{\""loyalty\"": \""5%\""}",273109,1,"""Africa""" +2023-10-06,29295,6655,"[\""Phone\"", \""Tablet\""]",2221.91,"{\""loyalty\"": \""5%\""}",266989,1,"""Europe""" +2024-08-10,29296,89,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2392.64,"{\""loyalty\"": \""7%\""}",102387,0,"""North America""" +2023-01-10,29297,8907,"[\""Keyboard\"", \""Charger\""]",2191.0,"{\""promo\"": \""9%\""}",46420,1,"""Africa""" +2023-10-25,29298,5253,"[\""Keyboard\"", \""Tablet\""]",948.93,"{\""promo\"": \""15%\""}",58425,1,"""North America""" +2024-03-23,29299,5347,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4386.46,{},18853,1,"""Africa""" +2023-03-26,29300,7583,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3527.02,{},196967,0,"""Europe""" +2023-08-26,29301,4772,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2578.47,{},231624,1,"""North America""" +2024-01-24,29302,1028,"[\""Wireless Mouse\"", \""Monitor\""]",2409.15,"{\""seasonal\"": \""22%\""}",283349,0,"""Africa""" +2024-12-29,29303,8006,"[\""Charger\""]",2641.45,{},269130,1,"""North America""" +2023-05-28,29304,9488,"[\""Laptop\"", \""Wireless Mouse\""]",885.06,"{\""loyalty\"": \""6%\""}",262613,1,"""North America""" +2024-05-26,29305,6269,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2887.98,"{\""loyalty\"": \""9%\""}",86697,0,"""South America""" +2024-09-30,29306,7445,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2803.36,"{\"": \""21%\""}",7472,0,"""Africa""" +2023-11-03,29307,3982,"[\""Monitor\"", \""Charger\""]",3973.82,{},136311,0,"""Europe""" +2024-08-20,29308,7521,"[\""Charger\"", \""Headphones\""]",2489.48,"{\"": \""19%\""}",243668,0,"""North America""" +2024-11-01,29309,9286,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1046.54,"{\"": \""9%\""}",206713,0,"""South America""" +2024-01-20,29310,2053,"[\""Tablet\""]",2170.43,"{\""seasonal\"": \""5%\""}",149001,0,"""Asia""" +2023-09-07,29311,4189,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2853.9,{},133963,1,"""North America""" +2023-07-24,29312,8799,"[\""Laptop\"", \""Wireless Mouse\""]",4804.72,"{\""seasonal\"": \""9%\""}",87420,1,"""Asia""" +2024-02-14,29313,1370,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",226.18,"{\""promo\"": \""17%\""}",138980,1,"""South America""" +2023-10-02,29314,7577,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4527.59,"{\""seasonal\"": \""11%\""}",20604,1,"""Asia""" +2023-09-19,29315,9151,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4875.64,{},67704,0,"""Europe""" +2023-05-29,29316,3964,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3153.62,{},263926,0,"""Europe""" +2024-02-06,29317,5044,"[\""Headphones\""]",3029.3,{},128399,1,"""South America""" +2023-12-28,29318,3714,"[\""Headphones\"", \""Wireless Mouse\""]",1687.66,{},103215,0,"""Africa""" +2024-11-18,29319,6862,"[\""Monitor\"", \""Headphones\""]",1562.93,"{\""seasonal\"": \""16%\""}",291563,1,"""Africa""" +2024-01-14,29320,1738,"[\""Monitor\"", \""Phone\""]",1076.11,"{\"": \""25%\""}",252664,0,"""Africa""" +2023-09-23,29321,4678,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1215.87,{},95252,1,"""Africa""" +2023-07-21,29322,2776,"[\""Monitor\""]",2561.23,"{\""seasonal\"": \""24%\""}",220116,0,"""Africa""" +2024-01-31,29323,3507,"[\""Keyboard\"", \""Headphones\""]",4036.45,"{\""seasonal\"": \""13%\""}",79884,0,"""Africa""" +2024-08-30,29324,9434,"[\""Wireless Mouse\"", \""Keyboard\""]",1334.77,"{\""seasonal\"": \""24%\""}",265746,0,"""Africa""" +2023-03-08,29325,6785,"[\""Charger\"", \""Monitor\""]",3250.4,"{\""promo\"": \""28%\""}",207889,0,"""Europe""" +2023-05-11,29326,1102,"[\""Laptop\"", \""Wireless Mouse\""]",574.97,{},73420,1,"""South America""" +2023-12-04,29327,937,"[\""Phone\""]",690.41,{},229851,1,"""North America""" +2024-11-17,29328,1630,"[\""Monitor\"", \""Tablet\""]",2618.19,{},242022,0,"""Asia""" +2024-07-24,29329,4714,"[\""Headphones\""]",400.94,{},176955,0,"""South America""" +2023-08-23,29330,5080,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3562.07,{},1734,0,"""Asia""" +2024-12-11,29331,9684,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4988.13,"{\""seasonal\"": \""23%\""}",294421,1,"""Europe""" +2023-12-16,29332,350,"[\""Monitor\"", \""Tablet\""]",1476.89,{},66539,1,"""Europe""" +2024-12-29,29333,2112,"[\""Charger\""]",4714.46,"{\""seasonal\"": \""27%\""}",190761,1,"""Africa""" +2023-07-04,29334,6935,"[\""Wireless Mouse\"", \""Keyboard\""]",3127.64,"{\""loyalty\"": \""7%\""}",198355,0,"""South America""" +2024-12-07,29335,8532,"[\""Phone\""]",563.73,"{\""loyalty\"": \""6%\""}",18009,1,"""North America""" +2023-07-09,29336,4541,"[\""Phone\"", \""Keyboard\""]",801.6,"{\"": \""24%\""}",170968,0,"""North America""" +2023-02-16,29337,1862,"[\""Phone\"", \""Laptop\""]",2843.37,{},257985,1,"""South America""" +2023-12-16,29338,7033,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1322.91,"{\""loyalty\"": \""5%\""}",271322,1,"""Africa""" +2023-03-26,29339,4068,"[\""Phone\""]",1551.24,"{\""seasonal\"": \""30%\""}",192555,1,"""Europe""" +2023-10-19,29340,8405,"[\""Phone\""]",4364.14,{},286618,0,"""Europe""" +2023-11-05,29341,6515,"[\""Wireless Mouse\""]",2968.47,{},179463,1,"""North America""" +2024-01-31,29342,7015,"[\""Tablet\"", \""Phone\""]",4500.56,{},256173,0,"""North America""" +2023-03-22,29343,6544,"[\""Charger\""]",3132.25,"{\""loyalty\"": \""23%\""}",53871,0,"""South America""" +2023-08-31,29344,2826,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4101.24,{},73747,0,"""North America""" +2023-03-15,29345,8154,"[\""Keyboard\""]",224.61,{},213622,1,"""Asia""" +2023-04-02,29346,7308,"[\""Tablet\"", \""Headphones\""]",870.64,{},69195,1,"""Europe""" +2024-01-11,29347,5530,"[\""Wireless Mouse\"", \""Charger\""]",96.38,"{\"": \""24%\""}",238939,0,"""Africa""" +2023-11-14,29348,7435,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3658.79,{},150485,1,"""Europe""" +2024-04-05,29349,7525,"[\""Laptop\"", \""Headphones\""]",4366.55,"{\""loyalty\"": \""17%\""}",24670,0,"""Asia""" +2024-11-30,29350,4944,"[\""Monitor\""]",3031.4,"{\""seasonal\"": \""10%\""}",141842,1,"""Africa""" +2024-09-07,29351,1443,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2747.19,{},138222,0,"""North America""" +2023-05-04,29352,8714,"[\""Keyboard\"", \""Charger\""]",2996.22,"{\"": \""24%\""}",299341,0,"""Africa""" +2023-09-26,29353,8348,"[\""Headphones\"", \""Phone\""]",4824.54,"{\""promo\"": \""28%\""}",63091,1,"""Africa""" +2024-02-02,29354,997,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",475.67,"{\"": \""7%\""}",152754,1,"""South America""" +2024-05-09,29355,7615,"[\""Headphones\""]",1451.55,"{\""promo\"": \""6%\""}",117447,0,"""South America""" +2023-03-04,29356,3086,"[\""Keyboard\"", \""Wireless Mouse\""]",2569.67,{},90637,0,"""Asia""" +2024-01-19,29357,9671,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2641.96,"{\"": \""17%\""}",219092,1,"""South America""" +2023-01-12,29358,3410,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4052.89,"{\"": \""26%\""}",180096,1,"""Asia""" +2024-10-03,29359,1062,"[\""Keyboard\"", \""Headphones\""]",1905.08,{},124836,1,"""Africa""" +2024-03-11,29360,8440,"[\""Wireless Mouse\"", \""Monitor\""]",327.34,{},18391,0,"""North America""" +2024-09-02,29361,2060,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3297.54,{},298880,1,"""South America""" +2023-12-15,29362,1774,"[\""Keyboard\""]",3690.74,"{\""promo\"": \""29%\""}",259761,1,"""South America""" +2024-11-21,29363,7662,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",161.73,{},233292,1,"""North America""" +2024-08-09,29364,1208,"[\""Phone\""]",3058.75,"{\""promo\"": \""7%\""}",209696,1,"""South America""" +2024-10-04,29365,3288,"[\""Phone\""]",834.07,{},79679,1,"""North America""" +2023-06-28,29366,473,"[\""Charger\""]",3508.5,"{\""seasonal\"": \""27%\""}",139418,1,"""Asia""" +2024-04-24,29367,4728,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4585.44,{},193035,1,"""South America""" +2024-06-10,29368,7725,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1688.24,"{\"": \""13%\""}",53692,1,"""South America""" +2023-08-12,29369,6460,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1751.92,"{\"": \""30%\""}",174249,0,"""South America""" +2023-04-07,29370,1030,"[\""Monitor\"", \""Tablet\""]",1466.52,"{\""loyalty\"": \""24%\""}",264225,1,"""North America""" +2023-10-10,29371,8553,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",938.18,"{\""loyalty\"": \""26%\""}",71794,0,"""Asia""" +2023-01-07,29372,3248,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4332.2,"{\""loyalty\"": \""6%\""}",185522,1,"""Africa""" +2023-11-30,29373,3047,"[\""Phone\""]",4836.36,{},146508,0,"""Europe""" +2023-02-18,29374,6193,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1454.69,{},232702,0,"""Asia""" +2023-09-20,29375,450,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4989.35,"{\""seasonal\"": \""21%\""}",139096,0,"""South America""" +2023-05-24,29376,1952,"[\""Phone\"", \""Keyboard\""]",3183.25,"{\""seasonal\"": \""18%\""}",143083,0,"""South America""" +2024-07-27,29377,4472,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2488.42,{},275266,0,"""North America""" +2023-08-16,29378,7012,"[\""Wireless Mouse\"", \""Phone\""]",2001.83,"{\""loyalty\"": \""15%\""}",160634,1,"""Africa""" +2023-01-20,29379,2160,"[\""Monitor\""]",699.89,{},288099,1,"""North America""" +2024-12-31,29380,5895,"[\""Phone\""]",1602.87,{},64136,0,"""Asia""" +2023-11-14,29381,8575,"[\""Monitor\""]",750.67,"{\""loyalty\"": \""30%\""}",72711,0,"""Asia""" +2023-08-06,29382,3138,"[\""Charger\"", \""Phone\""]",585.85,"{\"": \""23%\""}",273167,0,"""North America""" +2024-05-10,29383,4406,"[\""Keyboard\"", \""Laptop\""]",2856.81,{},283680,1,"""North America""" +2024-12-29,29384,8920,"[\""Phone\"", \""Tablet\""]",4820.15,{},289147,0,"""Africa""" +2024-02-12,29385,643,"[\""Phone\""]",4417.61,"{\""loyalty\"": \""6%\""}",241766,0,"""Africa""" +2024-07-19,29386,8366,"[\""Wireless Mouse\""]",1198.19,{},166695,0,"""Europe""" +2023-05-10,29387,4767,"[\""Charger\""]",131.21,"{\"": \""7%\""}",29115,0,"""South America""" +2024-07-25,29388,9391,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1989.22,"{\""seasonal\"": \""22%\""}",210790,0,"""Asia""" +2024-06-24,29389,9691,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2410.06,"{\"": \""10%\""}",216170,1,"""Europe""" +2024-02-11,29390,6971,"[\""Laptop\""]",1864.28,"{\""loyalty\"": \""9%\""}",234040,1,"""Africa""" +2024-08-18,29391,8862,"[\""Charger\"", \""Tablet\""]",212.66,"{\""promo\"": \""20%\""}",30621,1,"""Europe""" +2023-11-29,29392,4806,"[\""Wireless Mouse\""]",4841.86,"{\""seasonal\"": \""6%\""}",228185,0,"""South America""" +2024-04-27,29393,9969,"[\""Laptop\"", \""Monitor\""]",1649.89,{},198816,1,"""Europe""" +2024-09-09,29394,3024,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1788.94,"{\""seasonal\"": \""18%\""}",117627,0,"""Europe""" +2024-06-19,29395,46,"[\""Keyboard\"", \""Charger\""]",326.5,"{\"": \""23%\""}",37660,1,"""Africa""" +2024-11-29,29396,5682,"[\""Laptop\"", \""Keyboard\""]",2078.73,"{\"": \""7%\""}",36283,1,"""Europe""" +2024-06-21,29397,5945,"[\""Phone\"", \""Keyboard\""]",358.26,"{\"": \""12%\""}",291993,0,"""Africa""" +2024-10-28,29398,9957,"[\""Keyboard\""]",614.56,"{\"": \""28%\""}",1851,0,"""Africa""" +2023-03-24,29399,2818,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3734.34,"{\""loyalty\"": \""10%\""}",237579,0,"""Africa""" +2023-06-10,29400,4101,"[\""Phone\"", \""Keyboard\""]",4570.64,"{\""seasonal\"": \""25%\""}",98165,1,"""Europe""" +2024-07-16,29401,1065,"[\""Wireless Mouse\""]",4558.42,{},215830,1,"""Africa""" +2023-03-10,29402,796,"[\""Tablet\""]",2674.75,"{\""promo\"": \""21%\""}",290152,0,"""South America""" +2023-05-09,29403,1137,"[\""Laptop\"", \""Wireless Mouse\""]",3245.21,{},237983,0,"""Europe""" +2023-11-11,29404,7240,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",948.11,"{\""promo\"": \""28%\""}",167861,1,"""Asia""" +2023-06-21,29405,9761,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3290.85,{},82706,1,"""Europe""" +2024-06-29,29406,6570,"[\""Keyboard\""]",889.14,{},185710,0,"""South America""" +2024-04-20,29407,4123,"[\""Charger\"", \""Tablet\""]",3952.55,"{\""promo\"": \""24%\""}",228385,0,"""North America""" +2024-11-17,29408,6167,"[\""Keyboard\""]",4444.32,"{\""promo\"": \""27%\""}",145109,0,"""Asia""" +2023-03-22,29409,1026,"[\""Phone\""]",1101.11,"{\""seasonal\"": \""20%\""}",113160,1,"""North America""" +2023-02-16,29410,6048,"[\""Keyboard\"", \""Phone\""]",4457.8,"{\"": \""20%\""}",26251,0,"""North America""" +2023-09-26,29411,3499,"[\""Keyboard\""]",552.26,"{\""seasonal\"": \""21%\""}",204609,0,"""Asia""" +2023-05-05,29412,377,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",115.82,{},173010,0,"""Africa""" +2024-08-01,29413,3318,"[\""Keyboard\"", \""Laptop\""]",3269.43,"{\""loyalty\"": \""9%\""}",240405,1,"""North America""" +2024-07-28,29414,2658,"[\""Monitor\"", \""Tablet\""]",4416.2,"{\""loyalty\"": \""23%\""}",293695,0,"""Asia""" +2024-02-29,29415,4614,"[\""Monitor\""]",4703.21,"{\"": \""17%\""}",85869,0,"""North America""" +2023-12-10,29416,6982,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",319.64,{},43338,1,"""Europe""" +2023-10-28,29417,3150,"[\""Headphones\"", \""Laptop\""]",2171.01,{},32105,0,"""Asia""" +2023-07-16,29418,4949,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3511.72,{},267755,1,"""South America""" +2023-09-29,29419,8175,"[\""Laptop\""]",4550.54,{},83102,0,"""North America""" +2023-07-12,29420,3410,"[\""Phone\""]",2945.99,"{\""loyalty\"": \""15%\""}",292813,0,"""North America""" +2024-04-04,29421,8000,"[\""Keyboard\"", \""Laptop\""]",1873.74,{},17080,1,"""North America""" +2024-06-15,29422,7484,"[\""Monitor\"", \""Tablet\""]",4474.11,{},159690,0,"""South America""" +2023-07-01,29423,7778,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3810.51,{},123769,0,"""North America""" +2023-01-03,29424,597,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2171.48,{},219647,0,"""Asia""" +2023-11-19,29425,9483,"[\""Wireless Mouse\""]",2502.43,{},69732,0,"""Africa""" +2023-05-12,29426,8124,"[\""Charger\"", \""Laptop\""]",1934.46,{},287663,1,"""Africa""" +2024-03-29,29427,9083,"[\""Laptop\"", \""Monitor\""]",2117.64,{},199979,1,"""Europe""" +2023-07-16,29428,245,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1885.05,{},75682,0,"""North America""" +2023-04-12,29429,9239,"[\""Wireless Mouse\"", \""Charger\""]",4084.93,{},147192,1,"""South America""" +2023-01-04,29430,7280,"[\""Phone\""]",4157.05,{},141344,1,"""South America""" +2024-07-08,29431,5508,"[\""Laptop\"", \""Headphones\""]",4059.98,{},26438,1,"""Asia""" +2023-07-07,29432,8889,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3858.26,{},3162,0,"""Africa""" +2024-11-28,29433,1962,"[\""Monitor\"", \""Keyboard\""]",3140.69,{},192495,1,"""Africa""" +2023-12-25,29434,9748,"[\""Headphones\""]",4511.79,"{\""seasonal\"": \""20%\""}",50464,0,"""Asia""" +2024-12-27,29435,9528,"[\""Charger\""]",854.07,"{\"": \""9%\""}",174399,0,"""South America""" +2023-07-28,29436,9851,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3695.56,{},216929,0,"""Africa""" +2023-12-20,29437,3984,"[\""Keyboard\"", \""Tablet\""]",4988.77,"{\"": \""5%\""}",252685,1,"""North America""" +2024-02-21,29438,9916,"[\""Phone\""]",2328.04,{},257987,1,"""Europe""" +2024-08-26,29439,4344,"[\""Tablet\""]",1646.76,"{\""loyalty\"": \""8%\""}",189122,1,"""Europe""" +2023-06-19,29440,1239,"[\""Charger\"", \""Headphones\""]",2937.02,"{\"": \""17%\""}",296988,1,"""Europe""" +2024-09-13,29441,3078,"[\""Phone\""]",759.38,"{\""promo\"": \""27%\""}",30913,0,"""Asia""" +2024-08-11,29442,9576,"[\""Charger\"", \""Wireless Mouse\""]",4589.41,{},251243,0,"""Europe""" +2024-03-24,29443,2637,"[\""Keyboard\""]",1856.97,"{\""loyalty\"": \""12%\""}",258072,1,"""Africa""" +2023-06-07,29444,474,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2111.34,{},108748,0,"""South America""" +2023-11-13,29445,867,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3005.31,"{\""promo\"": \""9%\""}",224330,1,"""Europe""" +2024-12-17,29446,7254,"[\""Tablet\""]",1261.01,{},200149,1,"""Europe""" +2023-09-23,29447,7222,"[\""Charger\"", \""Monitor\""]",377.38,"{\"": \""14%\""}",287476,1,"""Asia""" +2023-04-24,29448,6267,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4085.06,{},144438,0,"""Asia""" +2023-09-05,29449,8696,"[\""Keyboard\""]",2327.75,"{\"": \""26%\""}",222945,1,"""South America""" +2023-07-03,29450,1925,"[\""Phone\"", \""Charger\""]",3967.25,{},167434,0,"""South America""" +2023-01-27,29451,2115,"[\""Laptop\"", \""Tablet\""]",4653.45,"{\""promo\"": \""26%\""}",168025,1,"""Africa""" +2023-01-04,29452,7531,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3369.07,"{\""seasonal\"": \""28%\""}",100466,0,"""South America""" +2024-04-10,29453,8349,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3721.7,"{\"": \""6%\""}",73710,1,"""Africa""" +2023-11-25,29454,257,"[\""Tablet\"", \""Wireless Mouse\""]",1518.02,{},280879,1,"""North America""" +2023-10-08,29455,6507,"[\""Keyboard\""]",2074.96,{},284953,1,"""Asia""" +2024-01-08,29456,7189,"[\""Charger\"", \""Headphones\""]",629.61,"{\""seasonal\"": \""19%\""}",213651,1,"""Europe""" +2023-02-10,29457,6481,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1939.82,{},248625,1,"""North America""" +2023-04-09,29458,3855,"[\""Keyboard\""]",3704.4,"{\""seasonal\"": \""5%\""}",148569,1,"""Asia""" +2024-01-31,29459,2871,"[\""Tablet\"", \""Keyboard\""]",3050.57,"{\"": \""20%\""}",7874,1,"""Africa""" +2024-02-14,29460,6182,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3755.91,"{\""seasonal\"": \""9%\""}",115579,0,"""South America""" +2024-12-02,29461,6579,"[\""Keyboard\""]",2829.47,"{\"": \""10%\""}",130185,1,"""Asia""" +2023-01-20,29462,7496,"[\""Keyboard\""]",2607.16,"{\""seasonal\"": \""23%\""}",277976,0,"""South America""" +2023-06-06,29463,2059,"[\""Laptop\"", \""Wireless Mouse\""]",4447.88,{},286244,1,"""South America""" +2024-04-21,29464,6210,"[\""Phone\"", \""Wireless Mouse\""]",389.59,{},102436,1,"""Africa""" +2024-11-08,29465,5623,"[\""Wireless Mouse\""]",4170.1,"{\""seasonal\"": \""21%\""}",135419,1,"""South America""" +2024-09-17,29466,8450,"[\""Keyboard\""]",4191.53,"{\"": \""6%\""}",113054,0,"""North America""" +2024-01-02,29467,765,"[\""Tablet\"", \""Keyboard\""]",2771.2,"{\""loyalty\"": \""29%\""}",182913,1,"""South America""" +2024-06-23,29468,654,"[\""Phone\"", \""Laptop\""]",729.27,{},37685,0,"""Asia""" +2023-05-02,29469,1826,"[\""Phone\"", \""Keyboard\""]",3719.39,{},184085,0,"""South America""" +2024-01-24,29470,6804,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3507.28,"{\""seasonal\"": \""10%\""}",56250,0,"""North America""" +2023-09-04,29471,2330,"[\""Charger\""]",444.62,{},266314,1,"""South America""" +2023-06-29,29472,1264,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3574.59,{},1462,0,"""South America""" +2024-05-17,29473,8310,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1702.47,{},111245,0,"""South America""" +2023-08-19,29474,2191,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2612.83,{},119232,1,"""South America""" +2024-01-25,29475,2234,"[\""Tablet\"", \""Laptop\""]",2158.21,{},13835,1,"""Africa""" +2023-12-18,29476,6700,"[\""Keyboard\"", \""Headphones\""]",4600.38,{},97239,1,"""Asia""" +2023-05-06,29477,6386,"[\""Keyboard\"", \""Wireless Mouse\""]",575.64,{},245990,0,"""Asia""" +2024-08-27,29478,1378,"[\""Tablet\""]",151.5,{},181169,0,"""Europe""" +2024-12-11,29479,7847,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2871.31,"{\""seasonal\"": \""22%\""}",148112,0,"""Asia""" +2023-10-22,29480,4625,"[\""Headphones\""]",489.0,{},93356,0,"""South America""" +2023-07-17,29481,4012,"[\""Monitor\""]",329.89,"{\""loyalty\"": \""14%\""}",14609,1,"""North America""" +2024-10-20,29482,5885,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",512.15,{},294032,0,"""Africa""" +2023-09-22,29483,8608,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",190.27,{},39239,0,"""Africa""" +2024-03-07,29484,7919,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3378.28,"{\"": \""18%\""}",72779,0,"""Europe""" +2024-02-22,29485,1819,"[\""Charger\"", \""Keyboard\""]",2106.67,"{\""seasonal\"": \""6%\""}",284647,0,"""Asia""" +2024-12-12,29486,1461,"[\""Keyboard\""]",76.2,{},157829,0,"""Africa""" +2023-01-20,29487,8165,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3963.82,"{\""seasonal\"": \""7%\""}",244004,1,"""Africa""" +2024-09-08,29488,10000,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2973.25,{},220165,1,"""South America""" +2023-08-12,29489,5080,"[\""Headphones\""]",1783.37,"{\"": \""14%\""}",46614,1,"""Europe""" +2024-05-13,29490,4768,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",433.35,"{\""loyalty\"": \""9%\""}",111578,0,"""Europe""" +2023-03-03,29491,1710,"[\""Tablet\"", \""Laptop\""]",1255.66,"{\"": \""15%\""}",134553,1,"""Europe""" +2024-03-02,29492,6422,"[\""Laptop\"", \""Keyboard\""]",3935.35,"{\""loyalty\"": \""23%\""}",168933,1,"""North America""" +2023-10-27,29493,2738,"[\""Monitor\""]",2305.0,{},122783,1,"""Africa""" +2024-03-12,29494,9578,"[\""Charger\""]",1321.91,{},243628,1,"""Asia""" +2024-12-22,29495,9163,"[\""Laptop\""]",3252.77,"{\"": \""26%\""}",103532,1,"""Asia""" +2023-04-22,29496,7228,"[\""Phone\"", \""Headphones\""]",1875.86,"{\""promo\"": \""29%\""}",12780,0,"""Africa""" +2023-08-06,29497,7712,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3331.62,"{\""promo\"": \""23%\""}",69710,0,"""Asia""" +2024-08-08,29498,3993,"[\""Charger\""]",2759.63,{},80219,1,"""South America""" +2023-05-06,29499,4342,"[\""Monitor\"", \""Wireless Mouse\""]",1798.97,{},297424,0,"""North America""" +2024-07-18,29500,806,"[\""Tablet\""]",2127.67,"{\""loyalty\"": \""25%\""}",189166,1,"""Africa""" +2024-08-21,29501,2434,"[\""Keyboard\""]",1427.82,{},291541,0,"""Africa""" +2024-06-27,29502,2825,"[\""Phone\"", \""Headphones\"", \""Charger\""]",63.18,{},158125,0,"""South America""" +2023-06-14,29503,2952,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",868.18,{},119140,1,"""North America""" +2023-01-02,29504,8600,"[\""Phone\"", \""Keyboard\""]",1097.36,"{\""promo\"": \""21%\""}",41888,1,"""Asia""" +2023-10-03,29505,6646,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",51.04,"{\""promo\"": \""26%\""}",76592,0,"""Asia""" +2024-01-09,29506,1168,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",100.36,"{\""loyalty\"": \""29%\""}",223694,0,"""Europe""" +2024-09-02,29507,1154,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4448.47,{},260020,1,"""South America""" +2023-03-01,29508,2649,"[\""Laptop\""]",1681.92,"{\"": \""22%\""}",147618,1,"""South America""" +2024-03-28,29509,2597,"[\""Tablet\""]",1766.35,{},87572,0,"""Africa""" +2024-08-11,29510,3649,"[\""Keyboard\"", \""Tablet\""]",1776.38,{},17469,0,"""North America""" +2023-06-14,29511,2918,"[\""Monitor\""]",2144.65,{},281057,0,"""Asia""" +2023-07-12,29512,9859,"[\""Monitor\"", \""Laptop\""]",2314.5,{},161269,0,"""Europe""" +2023-11-11,29513,2962,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2614.2,"{\""seasonal\"": \""16%\""}",201552,0,"""South America""" +2023-07-26,29514,7147,"[\""Wireless Mouse\"", \""Monitor\""]",1435.37,"{\""promo\"": \""13%\""}",185116,0,"""Asia""" +2024-08-17,29515,2781,"[\""Charger\""]",2917.93,"{\""loyalty\"": \""29%\""}",198479,1,"""Europe""" +2024-07-26,29516,4919,"[\""Monitor\"", \""Laptop\""]",4267.97,"{\"": \""20%\""}",236021,1,"""Asia""" +2023-01-11,29517,125,"[\""Headphones\""]",2891.81,"{\""seasonal\"": \""25%\""}",48347,1,"""Asia""" +2024-06-24,29518,3231,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2496.38,{},242125,1,"""Europe""" +2024-07-14,29519,2636,"[\""Tablet\""]",568.42,{},166550,1,"""Asia""" +2024-01-21,29520,2985,"[\""Monitor\"", \""Phone\""]",3586.9,"{\""seasonal\"": \""29%\""}",256291,0,"""Europe""" +2024-10-27,29521,2903,"[\""Keyboard\""]",1611.1,{},3021,1,"""Africa""" +2024-05-03,29522,2863,"[\""Keyboard\""]",409.42,"{\""loyalty\"": \""27%\""}",272635,1,"""Asia""" +2023-12-17,29523,9539,"[\""Monitor\""]",1119.58,"{\""seasonal\"": \""28%\""}",106732,1,"""North America""" +2023-08-28,29524,7612,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1160.18,{},271332,0,"""North America""" +2024-07-17,29525,4401,"[\""Phone\"", \""Monitor\""]",2432.12,{},268830,1,"""Asia""" +2023-08-19,29526,4676,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",520.05,{},83896,0,"""Europe""" +2024-10-08,29527,656,"[\""Monitor\""]",2400.0,"{\""seasonal\"": \""16%\""}",248857,0,"""Europe""" +2024-03-31,29528,4594,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2212.35,"{\""loyalty\"": \""16%\""}",189650,0,"""South America""" +2024-05-26,29529,2148,"[\""Wireless Mouse\""]",2995.41,"{\""seasonal\"": \""10%\""}",107917,1,"""North America""" +2024-04-03,29530,9410,"[\""Keyboard\""]",2733.3,{},122188,0,"""Asia""" +2024-01-09,29531,92,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4265.14,"{\""promo\"": \""15%\""}",50353,1,"""Asia""" +2024-04-01,29532,908,"[\""Monitor\"", \""Charger\""]",3347.22,"{\"": \""22%\""}",92310,1,"""Europe""" +2023-10-30,29533,8719,"[\""Charger\"", \""Headphones\""]",1877.88,"{\""promo\"": \""13%\""}",18244,0,"""Asia""" +2024-12-09,29534,2673,"[\""Monitor\""]",3838.84,{},86218,0,"""Europe""" +2023-04-19,29535,9848,"[\""Monitor\"", \""Laptop\""]",4020.0,{},82053,1,"""Africa""" +2023-02-07,29536,2822,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",678.93,"{\"": \""19%\""}",69350,1,"""South America""" +2023-12-06,29537,8445,"[\""Monitor\""]",781.23,"{\""promo\"": \""12%\""}",188201,0,"""South America""" +2024-05-12,29538,5147,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4526.64,{},23951,1,"""Asia""" +2024-06-17,29539,5147,"[\""Monitor\""]",1485.06,{},137613,1,"""North America""" +2023-11-07,29540,5560,"[\""Laptop\""]",3418.7,"{\"": \""16%\""}",29019,1,"""Asia""" +2024-09-28,29541,593,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1967.92,{},164108,0,"""Asia""" +2024-05-24,29542,5729,"[\""Phone\""]",375.95,"{\""loyalty\"": \""7%\""}",94694,1,"""Africa""" +2023-11-29,29543,6149,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",912.81,"{\""loyalty\"": \""25%\""}",243958,1,"""North America""" +2024-05-28,29544,3273,"[\""Monitor\""]",4230.48,{},139998,1,"""Africa""" +2023-04-01,29545,7634,"[\""Headphones\"", \""Keyboard\""]",364.06,"{\""promo\"": \""23%\""}",284230,0,"""Africa""" +2023-09-19,29546,7308,"[\""Tablet\"", \""Monitor\""]",2614.62,"{\""loyalty\"": \""29%\""}",196517,0,"""Europe""" +2023-02-16,29547,5336,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4418.9,{},162860,1,"""Europe""" +2024-08-22,29548,7798,"[\""Wireless Mouse\"", \""Keyboard\""]",4664.05,{},105853,0,"""North America""" +2023-10-09,29549,3430,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1467.68,{},162014,0,"""North America""" +2024-06-06,29550,8348,"[\""Monitor\"", \""Phone\""]",652.21,"{\""promo\"": \""27%\""}",120853,0,"""North America""" +2023-04-06,29551,8683,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1947.94,"{\""promo\"": \""10%\""}",215512,0,"""South America""" +2024-10-31,29552,8456,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2069.24,"{\""loyalty\"": \""13%\""}",96838,0,"""Asia""" +2024-12-29,29553,8067,"[\""Keyboard\"", \""Tablet\""]",3996.84,"{\""promo\"": \""26%\""}",198382,1,"""Africa""" +2024-05-11,29554,5121,"[\""Charger\"", \""Phone\""]",3997.08,{},250446,0,"""Asia""" +2023-07-02,29555,3317,"[\""Tablet\"", \""Keyboard\""]",3754.49,"{\"": \""27%\""}",181948,0,"""South America""" +2024-10-01,29556,4392,"[\""Charger\"", \""Keyboard\""]",2006.62,{},209642,0,"""North America""" +2023-02-11,29557,7995,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3259.26,"{\""seasonal\"": \""6%\""}",267970,1,"""South America""" +2023-12-01,29558,4942,"[\""Tablet\"", \""Charger\""]",552.91,{},119199,0,"""South America""" +2024-05-09,29559,8842,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1686.96,{},265863,1,"""Asia""" +2024-01-28,29560,8861,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3023.53,"{\""seasonal\"": \""23%\""}",70334,1,"""North America""" +2023-05-10,29561,3063,"[\""Charger\"", \""Wireless Mouse\""]",4569.36,{},250022,0,"""Asia""" +2024-02-09,29562,2137,"[\""Charger\"", \""Tablet\""]",854.67,"{\"": \""18%\""}",51796,0,"""South America""" +2023-07-08,29563,6961,"[\""Monitor\"", \""Laptop\""]",675.09,{},3998,0,"""Asia""" +2024-01-31,29564,4184,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4494.44,"{\""promo\"": \""7%\""}",10397,1,"""Europe""" +2023-02-08,29565,8239,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1110.19,{},294480,0,"""South America""" +2024-10-25,29566,4917,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3973.52,"{\""promo\"": \""13%\""}",114585,1,"""Europe""" +2024-09-18,29567,4831,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2307.09,"{\""seasonal\"": \""13%\""}",57142,0,"""Asia""" +2024-03-17,29568,3812,"[\""Wireless Mouse\""]",3794.25,"{\"": \""21%\""}",128429,0,"""South America""" +2023-12-07,29569,9531,"[\""Monitor\"", \""Wireless Mouse\""]",691.5,{},100524,0,"""Africa""" +2023-10-30,29570,6647,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1351.25,"{\"": \""19%\""}",182393,0,"""Africa""" +2023-12-08,29571,73,"[\""Wireless Mouse\""]",56.27,{},65909,0,"""North America""" +2024-06-08,29572,5182,"[\""Monitor\""]",3378.1,"{\""loyalty\"": \""13%\""}",214259,1,"""North America""" +2023-05-13,29573,8954,"[\""Laptop\""]",4210.11,"{\""loyalty\"": \""17%\""}",183245,1,"""South America""" +2023-10-26,29574,5719,"[\""Tablet\""]",2493.27,"{\""loyalty\"": \""12%\""}",31652,1,"""Europe""" +2024-09-26,29575,1795,"[\""Keyboard\""]",2910.75,{},24359,0,"""Europe""" +2023-11-02,29576,6705,"[\""Tablet\""]",4664.39,"{\""loyalty\"": \""14%\""}",101302,0,"""Europe""" +2024-04-21,29577,6566,"[\""Tablet\"", \""Phone\""]",4772.26,"{\""loyalty\"": \""17%\""}",138991,1,"""South America""" +2023-08-20,29578,9569,"[\""Tablet\"", \""Keyboard\""]",2783.76,{},249016,1,"""Asia""" +2023-12-16,29579,1313,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1918.01,"{\""promo\"": \""29%\""}",243470,0,"""Africa""" +2024-06-30,29580,4286,"[\""Headphones\""]",3953.65,"{\""promo\"": \""21%\""}",237774,0,"""Europe""" +2023-04-19,29581,1651,"[\""Charger\"", \""Laptop\""]",434.9,{},63197,0,"""North America""" +2023-02-21,29582,2566,"[\""Keyboard\"", \""Monitor\""]",4000.81,"{\""loyalty\"": \""9%\""}",37725,0,"""Europe""" +2024-07-31,29583,9678,"[\""Phone\""]",4864.73,{},84318,1,"""Europe""" +2024-07-30,29584,5096,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1736.13,{},148492,1,"""South America""" +2023-02-19,29585,2183,"[\""Headphones\"", \""Keyboard\""]",566.13,"{\""loyalty\"": \""8%\""}",123211,1,"""South America""" +2023-06-03,29586,8628,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2747.14,{},212793,1,"""Africa""" +2024-10-22,29587,2347,"[\""Phone\""]",2484.09,{},103081,1,"""Asia""" +2024-09-04,29588,2731,"[\""Wireless Mouse\""]",2911.05,"{\""loyalty\"": \""25%\""}",34954,1,"""Europe""" +2024-04-03,29589,4763,"[\""Monitor\"", \""Phone\""]",2734.06,{},240740,1,"""Europe""" +2024-05-22,29590,7415,"[\""Keyboard\"", \""Monitor\""]",715.77,"{\""promo\"": \""6%\""}",38811,0,"""Africa""" +2023-03-18,29591,4371,"[\""Laptop\"", \""Wireless Mouse\""]",3858.0,{},161780,0,"""South America""" +2023-07-11,29592,1146,"[\""Tablet\"", \""Charger\""]",1385.66,"{\""seasonal\"": \""20%\""}",224630,0,"""North America""" +2024-05-16,29593,9447,"[\""Monitor\"", \""Keyboard\""]",975.68,{},92844,0,"""South America""" +2024-01-30,29594,7973,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",71.99,"{\"": \""15%\""}",29435,0,"""Africa""" +2023-11-29,29595,7034,"[\""Charger\""]",1353.3,"{\""seasonal\"": \""23%\""}",116059,0,"""North America""" +2024-03-15,29596,5565,"[\""Phone\""]",4049.69,"{\""promo\"": \""25%\""}",197851,1,"""Europe""" +2023-09-19,29597,8759,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3576.83,"{\""seasonal\"": \""11%\""}",189181,0,"""Africa""" +2024-11-05,29598,4182,"[\""Headphones\"", \""Keyboard\""]",519.34,{},206971,1,"""South America""" +2023-06-16,29599,7992,"[\""Monitor\""]",417.57,{},102016,0,"""Asia""" +2023-08-23,29600,4365,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3149.23,{},246620,0,"""Asia""" +2024-10-06,29601,5862,"[\""Laptop\"", \""Charger\""]",807.71,"{\"": \""12%\""}",252740,0,"""Africa""" +2024-05-14,29602,4172,"[\""Monitor\""]",3711.0,{},295179,1,"""North America""" +2024-05-07,29603,6784,"[\""Headphones\""]",3135.22,{},237781,0,"""North America""" +2023-12-04,29604,7355,"[\""Tablet\""]",2176.52,{},235989,1,"""Africa""" +2024-03-29,29605,7680,"[\""Charger\"", \""Laptop\""]",1454.51,"{\""seasonal\"": \""23%\""}",15529,0,"""Asia""" +2024-01-16,29606,3803,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",393.57,{},84619,0,"""Africa""" +2024-11-04,29607,1985,"[\""Monitor\""]",2601.74,{},191215,0,"""North America""" +2024-01-13,29608,4765,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",123.22,{},134307,1,"""South America""" +2024-06-11,29609,2926,"[\""Headphones\""]",756.27,{},98336,1,"""Europe""" +2024-06-22,29610,289,"[\""Tablet\"", \""Phone\""]",2741.17,"{\""loyalty\"": \""27%\""}",91474,0,"""Europe""" +2023-02-04,29611,7724,"[\""Wireless Mouse\"", \""Headphones\""]",172.89,"{\""loyalty\"": \""9%\""}",215126,0,"""Asia""" +2023-05-11,29612,6775,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2779.99,{},38535,0,"""Asia""" +2024-12-25,29613,1521,"[\""Headphones\""]",138.52,"{\""seasonal\"": \""21%\""}",165285,0,"""Asia""" +2023-09-07,29614,4628,"[\""Charger\""]",1381.58,{},198496,0,"""Asia""" +2024-03-28,29615,2216,"[\""Wireless Mouse\""]",1333.59,{},257823,0,"""North America""" +2024-06-15,29616,6191,"[\""Tablet\"", \""Wireless Mouse\""]",1889.21,{},174686,0,"""Africa""" +2024-03-21,29617,988,"[\""Monitor\""]",2687.04,"{\""loyalty\"": \""25%\""}",130088,0,"""South America""" +2023-11-27,29618,5974,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1196.87,"{\""loyalty\"": \""26%\""}",290805,1,"""South America""" +2023-03-09,29619,6289,"[\""Tablet\""]",4606.68,{},143827,0,"""North America""" +2024-08-17,29620,2886,"[\""Headphones\""]",488.01,{},48345,0,"""Europe""" +2023-07-19,29621,2485,"[\""Headphones\""]",1009.95,"{\"": \""10%\""}",167187,1,"""North America""" +2024-11-16,29622,5981,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4914.69,"{\""seasonal\"": \""9%\""}",5486,1,"""Asia""" +2023-07-08,29623,4583,"[\""Laptop\""]",417.59,{},267346,0,"""Asia""" +2023-06-26,29624,8409,"[\""Phone\""]",2505.4,"{\"": \""14%\""}",221409,0,"""Europe""" +2024-05-02,29625,4778,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3955.21,{},65932,0,"""Africa""" +2023-02-11,29626,9349,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2691.34,{},15561,0,"""Asia""" +2023-06-06,29627,4730,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4590.92,{},173275,0,"""South America""" +2023-12-30,29628,8011,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2058.39,{},276939,0,"""North America""" +2023-05-04,29629,4146,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1942.68,{},271432,0,"""Europe""" +2023-10-14,29630,2998,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3753.53,"{\""promo\"": \""17%\""}",120360,1,"""South America""" +2023-09-13,29631,816,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3051.89,{},111177,1,"""Africa""" +2023-09-18,29632,720,"[\""Monitor\""]",2466.68,{},146327,1,"""Europe""" +2024-06-06,29633,5621,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",919.57,"{\""loyalty\"": \""7%\""}",20222,0,"""Asia""" +2023-12-28,29634,4005,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4705.21,"{\""seasonal\"": \""15%\""}",5995,0,"""Asia""" +2024-07-29,29635,9963,"[\""Phone\"", \""Laptop\""]",1098.19,{},229614,0,"""South America""" +2024-03-29,29636,2751,"[\""Wireless Mouse\"", \""Monitor\""]",4613.62,"{\"": \""15%\""}",63613,1,"""South America""" +2023-05-28,29637,1996,"[\""Laptop\""]",2235.76,"{\"": \""22%\""}",27472,0,"""North America""" +2024-09-24,29638,7250,"[\""Headphones\"", \""Keyboard\""]",2164.48,{},153076,0,"""Europe""" +2024-06-29,29639,7394,"[\""Laptop\"", \""Keyboard\""]",194.2,"{\""loyalty\"": \""29%\""}",48518,0,"""Europe""" +2024-02-19,29640,3492,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4692.29,"{\"": \""23%\""}",260520,1,"""Africa""" +2023-06-25,29641,8466,"[\""Wireless Mouse\""]",2755.68,"{\""promo\"": \""16%\""}",96199,0,"""North America""" +2024-06-16,29642,9461,"[\""Charger\"", \""Wireless Mouse\""]",1950.98,{},134365,0,"""Africa""" +2024-04-20,29643,9616,"[\""Laptop\"", \""Phone\""]",563.62,{},127619,1,"""North America""" +2024-01-18,29644,5387,"[\""Wireless Mouse\"", \""Monitor\""]",3822.16,"{\""promo\"": \""13%\""}",163042,1,"""Europe""" +2024-08-25,29645,1357,"[\""Phone\""]",4271.3,{},36497,1,"""North America""" +2023-05-30,29646,1739,"[\""Phone\"", \""Charger\""]",4762.57,{},2783,1,"""Asia""" +2023-08-29,29647,3715,"[\""Tablet\"", \""Laptop\""]",602.75,{},164547,1,"""Europe""" +2024-09-09,29648,907,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4332.6,"{\""promo\"": \""21%\""}",133110,1,"""North America""" +2024-01-13,29649,3323,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",691.2,"{\""promo\"": \""13%\""}",98969,1,"""South America""" +2023-03-26,29650,5487,"[\""Keyboard\"", \""Monitor\""]",2393.35,"{\""seasonal\"": \""28%\""}",248912,1,"""Asia""" +2023-09-07,29651,6569,"[\""Keyboard\""]",3442.55,{},291455,1,"""Europe""" +2023-07-07,29652,345,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",207.93,{},99965,1,"""Africa""" +2023-03-07,29653,6842,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",765.93,"{\""loyalty\"": \""27%\""}",166186,0,"""Asia""" +2024-02-02,29654,225,"[\""Phone\""]",4752.61,"{\""promo\"": \""9%\""}",227101,0,"""Africa""" +2023-05-08,29655,1669,"[\""Keyboard\""]",2838.47,{},8954,1,"""North America""" +2024-08-02,29656,2777,"[\""Wireless Mouse\"", \""Headphones\""]",1805.6,"{\""promo\"": \""24%\""}",182162,0,"""North America""" +2024-09-11,29657,4715,"[\""Wireless Mouse\""]",1973.68,{},25396,0,"""Africa""" +2023-07-29,29658,8270,"[\""Headphones\"", \""Keyboard\""]",190.64,"{\"": \""8%\""}",79600,1,"""Asia""" +2023-05-23,29659,9889,"[\""Phone\""]",3195.78,{},262978,1,"""South America""" +2023-05-14,29660,9643,"[\""Wireless Mouse\"", \""Laptop\""]",4918.23,{},72925,0,"""South America""" +2023-01-29,29661,5465,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4225.16,"{\"": \""9%\""}",216379,1,"""South America""" +2023-10-03,29662,9203,"[\""Keyboard\"", \""Phone\""]",1489.65,"{\""promo\"": \""14%\""}",77134,1,"""Africa""" +2024-04-11,29663,1530,"[\""Monitor\""]",4483.25,"{\""promo\"": \""13%\""}",3148,0,"""Africa""" +2023-06-13,29664,1766,"[\""Wireless Mouse\"", \""Phone\""]",3007.88,"{\""seasonal\"": \""29%\""}",117987,0,"""North America""" +2023-12-07,29665,2017,"[\""Charger\""]",4497.06,{},23656,1,"""Europe""" +2023-04-04,29666,1935,"[\""Monitor\"", \""Phone\""]",652.27,"{\""promo\"": \""22%\""}",71002,0,"""South America""" +2024-04-25,29667,8559,"[\""Keyboard\""]",86.71,{},43311,1,"""North America""" +2024-11-30,29668,1493,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",932.4,{},60066,0,"""North America""" +2024-05-04,29669,2440,"[\""Monitor\"", \""Tablet\""]",2039.15,"{\""loyalty\"": \""14%\""}",215375,1,"""Africa""" +2024-09-05,29670,7851,"[\""Laptop\""]",759.19,{},283604,1,"""Asia""" +2023-03-15,29671,8204,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",386.56,"{\""promo\"": \""11%\""}",207710,1,"""South America""" +2023-04-01,29672,2760,"[\""Charger\"", \""Tablet\"", \""Phone\""]",299.34,{},225711,0,"""Europe""" +2024-03-15,29673,2408,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2347.8,{},278577,0,"""Asia""" +2024-11-28,29674,6932,"[\""Headphones\"", \""Charger\""]",4394.64,{},217240,1,"""North America""" +2024-05-09,29675,3421,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",852.07,{},199505,0,"""Asia""" +2023-12-27,29676,2762,"[\""Phone\""]",4356.89,"{\""seasonal\"": \""16%\""}",243129,0,"""North America""" +2024-07-25,29677,8899,"[\""Tablet\""]",984.52,{},287058,0,"""North America""" +2024-08-27,29678,3465,"[\""Headphones\"", \""Phone\""]",2135.26,"{\""loyalty\"": \""21%\""}",118852,1,"""North America""" +2023-02-08,29679,89,"[\""Headphones\"", \""Keyboard\""]",1617.14,{},237468,1,"""Asia""" +2024-06-03,29680,9571,"[\""Headphones\""]",4915.68,{},126246,0,"""South America""" +2023-04-06,29681,3561,"[\""Laptop\""]",698.9,"{\""loyalty\"": \""9%\""}",78444,1,"""North America""" +2023-05-10,29682,4617,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1003.35,{},184586,0,"""Europe""" +2023-06-16,29683,7809,"[\""Charger\""]",1097.57,"{\""loyalty\"": \""30%\""}",232849,0,"""Africa""" +2024-03-01,29684,4417,"[\""Headphones\"", \""Monitor\""]",443.43,"{\""loyalty\"": \""5%\""}",227587,1,"""Europe""" +2024-06-11,29685,3475,"[\""Headphones\""]",3305.06,{},186907,1,"""Europe""" +2024-03-27,29686,273,"[\""Headphones\""]",1992.04,{},64192,1,"""North America""" +2023-09-29,29687,3570,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3967.53,{},210253,1,"""South America""" +2023-02-11,29688,1382,"[\""Keyboard\""]",2519.04,{},101619,1,"""Africa""" +2024-07-27,29689,2999,"[\""Charger\"", \""Monitor\""]",2935.9,"{\""loyalty\"": \""6%\""}",119161,1,"""South America""" +2024-09-21,29690,2467,"[\""Phone\""]",781.79,"{\""loyalty\"": \""22%\""}",122324,0,"""Europe""" +2023-07-11,29691,9100,"[\""Tablet\""]",2877.78,{},38799,0,"""Asia""" +2024-06-03,29692,5048,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3401.9,"{\""promo\"": \""19%\""}",10187,1,"""Europe""" +2024-10-05,29693,8930,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3218.07,"{\"": \""5%\""}",258877,1,"""South America""" +2023-08-18,29694,5266,"[\""Wireless Mouse\"", \""Charger\""]",1298.39,{},151658,0,"""South America""" +2023-08-30,29695,163,"[\""Wireless Mouse\"", \""Monitor\""]",1861.54,{},175491,1,"""Africa""" +2024-10-22,29696,4228,"[\""Monitor\"", \""Tablet\""]",4486.01,"{\""promo\"": \""8%\""}",259408,1,"""Asia""" +2023-11-13,29697,3250,"[\""Tablet\""]",374.13,"{\"": \""25%\""}",99265,1,"""South America""" +2024-10-31,29698,6541,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",624.91,"{\"": \""25%\""}",89772,1,"""Europe""" +2023-02-06,29699,4227,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2611.34,"{\""loyalty\"": \""20%\""}",197965,0,"""Asia""" +2023-08-08,29700,3230,"[\""Headphones\""]",1980.14,"{\"": \""18%\""}",205863,1,"""South America""" +2024-01-30,29701,8552,"[\""Headphones\""]",2192.68,{},101600,1,"""North America""" +2024-03-15,29702,4086,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4825.6,{},80515,0,"""South America""" +2023-07-01,29703,4592,"[\""Phone\"", \""Charger\""]",4465.76,{},74397,0,"""Africa""" +2023-12-21,29704,5438,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4915.22,"{\""loyalty\"": \""28%\""}",83926,0,"""Europe""" +2023-05-02,29705,7716,"[\""Laptop\"", \""Keyboard\""]",3572.94,{},147230,1,"""Asia""" +2023-02-16,29706,2216,"[\""Monitor\"", \""Keyboard\""]",363.85,"{\""loyalty\"": \""28%\""}",162694,1,"""Africa""" +2024-03-19,29707,5040,"[\""Charger\"", \""Headphones\""]",3048.42,"{\""promo\"": \""5%\""}",108604,0,"""Europe""" +2024-03-14,29708,6022,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2380.47,"{\""seasonal\"": \""16%\""}",152728,1,"""Africa""" +2023-10-29,29709,7185,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1764.7,"{\""seasonal\"": \""15%\""}",148008,0,"""North America""" +2024-01-27,29710,6022,"[\""Laptop\"", \""Tablet\""]",3822.59,"{\""seasonal\"": \""7%\""}",70924,0,"""Africa""" +2024-10-13,29711,868,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4649.99,"{\"": \""26%\""}",295683,1,"""Africa""" +2024-03-10,29712,2536,"[\""Charger\"", \""Tablet\""]",218.11,{},85885,1,"""North America""" +2023-05-31,29713,7536,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",556.2,{},136853,0,"""North America""" +2024-12-21,29714,1197,"[\""Tablet\"", \""Monitor\""]",785.95,{},228774,0,"""Africa""" +2023-12-25,29715,7661,"[\""Monitor\"", \""Wireless Mouse\""]",614.72,{},247041,1,"""Europe""" +2023-04-28,29716,9388,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2688.7,{},59811,1,"""Africa""" +2024-09-16,29717,1108,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3213.37,"{\""loyalty\"": \""28%\""}",131047,0,"""Europe""" +2023-05-10,29718,2748,"[\""Charger\"", \""Tablet\""]",4405.74,{},41369,0,"""North America""" +2023-09-20,29719,5143,"[\""Wireless Mouse\"", \""Phone\""]",226.14,"{\""loyalty\"": \""29%\""}",243088,1,"""South America""" +2023-06-26,29720,3102,"[\""Tablet\""]",3471.11,"{\""seasonal\"": \""9%\""}",66119,1,"""Europe""" +2023-11-11,29721,6279,"[\""Keyboard\""]",2670.18,"{\"": \""29%\""}",289872,1,"""Africa""" +2023-06-16,29722,9820,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4913.12,"{\""seasonal\"": \""7%\""}",214344,1,"""South America""" +2024-07-23,29723,6015,"[\""Keyboard\""]",4400.69,{},297301,0,"""Africa""" +2023-12-30,29724,7099,"[\""Headphones\"", \""Wireless Mouse\""]",2955.32,{},37813,1,"""Asia""" +2023-10-31,29725,5301,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",302.91,{},132037,0,"""Africa""" +2023-07-11,29726,5366,"[\""Phone\"", \""Monitor\""]",4226.97,{},8736,0,"""Asia""" +2024-12-01,29727,2411,"[\""Headphones\"", \""Keyboard\""]",3615.09,{},76818,0,"""Europe""" +2024-02-08,29728,2268,"[\""Laptop\""]",1895.41,{},179828,0,"""Asia""" +2023-11-03,29729,6849,"[\""Monitor\"", \""Keyboard\""]",2607.85,"{\""seasonal\"": \""24%\""}",226873,0,"""North America""" +2023-09-09,29730,3614,"[\""Laptop\"", \""Keyboard\""]",563.5,"{\""loyalty\"": \""17%\""}",205257,1,"""Asia""" +2023-04-27,29731,4638,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1968.9,"{\""loyalty\"": \""24%\""}",289637,1,"""Asia""" +2023-03-25,29732,1954,"[\""Laptop\""]",4193.51,{},144554,0,"""Africa""" +2023-04-14,29733,7313,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4512.63,{},217943,0,"""Asia""" +2023-05-24,29734,7320,"[\""Phone\""]",3434.15,"{\""promo\"": \""9%\""}",143239,1,"""Europe""" +2023-09-16,29735,6464,"[\""Keyboard\""]",2656.16,"{\"": \""10%\""}",103941,1,"""South America""" +2024-05-09,29736,4552,"[\""Tablet\""]",958.37,"{\""promo\"": \""22%\""}",264679,1,"""Europe""" +2024-05-18,29737,5598,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4635.82,"{\""loyalty\"": \""21%\""}",29441,0,"""South America""" +2024-03-18,29738,8801,"[\""Wireless Mouse\""]",705.24,"{\""loyalty\"": \""22%\""}",19864,1,"""Africa""" +2024-01-28,29739,9619,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",841.49,{},264450,1,"""Africa""" +2024-07-14,29740,6630,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3276.77,{},13550,1,"""South America""" +2023-01-18,29741,4936,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3700.95,{},225333,0,"""Asia""" +2023-01-23,29742,1950,"[\""Tablet\""]",2433.11,{},6707,1,"""Africa""" +2023-12-26,29743,7101,"[\""Phone\""]",1388.42,"{\""seasonal\"": \""23%\""}",218330,0,"""North America""" +2023-07-28,29744,6300,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3717.16,"{\""promo\"": \""26%\""}",167770,1,"""South America""" +2023-04-13,29745,7436,"[\""Keyboard\""]",3147.36,"{\"": \""27%\""}",41385,0,"""Asia""" +2023-05-02,29746,8858,"[\""Laptop\""]",4468.19,"{\"": \""28%\""}",76538,1,"""South America""" +2024-03-09,29747,7209,"[\""Tablet\"", \""Charger\""]",258.71,"{\""loyalty\"": \""18%\""}",196432,1,"""North America""" +2024-09-05,29748,787,"[\""Keyboard\""]",3374.28,{},55598,0,"""Asia""" +2024-03-28,29749,2470,"[\""Laptop\""]",3832.16,{},257645,0,"""North America""" +2024-08-14,29750,4764,"[\""Phone\"", \""Laptop\""]",486.07,"{\""loyalty\"": \""11%\""}",124848,0,"""Europe""" +2024-12-06,29751,1456,"[\""Keyboard\"", \""Monitor\""]",4329.34,{},122531,1,"""North America""" +2023-07-16,29752,3396,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",293.7,{},132724,0,"""Europe""" +2024-12-10,29753,2270,"[\""Phone\""]",4347.74,"{\""seasonal\"": \""22%\""}",206612,1,"""Asia""" +2023-11-19,29754,4860,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1963.27,{},295572,1,"""South America""" +2024-06-17,29755,4673,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",760.33,{},28320,1,"""Europe""" +2023-02-16,29756,5118,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1756.42,"{\""seasonal\"": \""7%\""}",120380,0,"""Asia""" +2024-12-12,29757,2170,"[\""Monitor\""]",4658.42,"{\"": \""15%\""}",135475,0,"""Africa""" +2024-08-14,29758,325,"[\""Headphones\""]",196.41,{},105961,1,"""South America""" +2023-01-12,29759,9862,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2555.64,"{\""loyalty\"": \""28%\""}",173446,0,"""South America""" +2024-09-17,29760,5215,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1058.06,"{\"": \""16%\""}",156304,0,"""Africa""" +2023-10-01,29761,4510,"[\""Phone\""]",3209.81,"{\""seasonal\"": \""24%\""}",140488,0,"""Asia""" +2023-04-19,29762,2574,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2223.87,{},7790,0,"""Europe""" +2023-01-11,29763,5691,"[\""Wireless Mouse\""]",149.44,{},114127,1,"""Asia""" +2024-11-22,29764,2828,"[\""Laptop\""]",736.67,"{\"": \""13%\""}",298612,1,"""Europe""" +2024-07-01,29765,9352,"[\""Headphones\"", \""Keyboard\""]",317.32,"{\""seasonal\"": \""11%\""}",221541,0,"""Africa""" +2024-04-25,29766,2800,"[\""Tablet\""]",1974.73,{},128322,0,"""Africa""" +2024-07-05,29767,2841,"[\""Headphones\""]",2206.92,"{\""promo\"": \""12%\""}",153235,0,"""North America""" +2023-11-16,29768,774,"[\""Wireless Mouse\""]",2028.98,{},272200,0,"""Asia""" +2023-06-25,29769,7710,"[\""Wireless Mouse\"", \""Monitor\""]",263.75,"{\""promo\"": \""21%\""}",70502,1,"""Africa""" +2023-12-07,29770,973,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",401.56,"{\""loyalty\"": \""30%\""}",169918,1,"""Asia""" +2023-12-07,29771,4965,"[\""Tablet\""]",207.38,{},141494,1,"""Europe""" +2024-07-06,29772,7978,"[\""Wireless Mouse\""]",4194.12,{},298814,0,"""Africa""" +2024-06-17,29773,4857,"[\""Monitor\"", \""Charger\""]",3299.08,{},114455,0,"""Asia""" +2024-05-02,29774,472,"[\""Laptop\"", \""Headphones\""]",4499.94,"{\""loyalty\"": \""26%\""}",237536,0,"""Africa""" +2023-03-09,29775,5749,"[\""Keyboard\"", \""Headphones\""]",1287.37,"{\""seasonal\"": \""21%\""}",283950,1,"""South America""" +2023-07-23,29776,4145,"[\""Keyboard\"", \""Laptop\""]",460.63,"{\""loyalty\"": \""15%\""}",124223,1,"""Asia""" +2024-01-03,29777,3578,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",412.36,{},213627,0,"""Asia""" +2023-04-02,29778,4513,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4107.98,{},154951,1,"""Europe""" +2023-06-29,29779,430,"[\""Laptop\"", \""Headphones\""]",4801.77,{},219495,0,"""Africa""" +2023-10-07,29780,9266,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",421.96,{},148106,0,"""Africa""" +2024-01-12,29781,7241,"[\""Monitor\"", \""Charger\""]",657.83,"{\""loyalty\"": \""28%\""}",260873,1,"""Europe""" +2023-01-14,29782,8476,"[\""Charger\"", \""Keyboard\""]",794.39,{},287128,0,"""Africa""" +2023-02-24,29783,7541,"[\""Headphones\"", \""Laptop\""]",3334.04,{},254572,1,"""Asia""" +2024-11-08,29784,2110,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3864.28,"{\""seasonal\"": \""14%\""}",174282,1,"""South America""" +2024-02-24,29785,6424,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2528.42,{},267047,1,"""Asia""" +2024-08-03,29786,4337,"[\""Monitor\""]",4000.44,{},76478,0,"""South America""" +2023-03-08,29787,1124,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",187.54,"{\"": \""17%\""}",52812,0,"""Asia""" +2024-01-22,29788,499,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",227.13,{},180855,1,"""Europe""" +2024-06-13,29789,8860,"[\""Tablet\"", \""Monitor\""]",257.13,"{\""promo\"": \""30%\""}",178978,1,"""Europe""" +2024-12-10,29790,7632,"[\""Wireless Mouse\"", \""Charger\""]",3302.1,{},113312,0,"""North America""" +2024-04-17,29791,6206,"[\""Laptop\"", \""Charger\""]",566.38,"{\""seasonal\"": \""15%\""}",267252,0,"""Asia""" +2023-12-07,29792,4389,"[\""Phone\"", \""Headphones\""]",3740.94,{},166661,1,"""Africa""" +2023-09-08,29793,7086,"[\""Tablet\""]",509.62,{},201176,1,"""Europe""" +2024-10-23,29794,9642,"[\""Wireless Mouse\""]",1917.62,{},123868,1,"""South America""" +2023-02-28,29795,5742,"[\""Wireless Mouse\"", \""Charger\""]",4342.39,{},219059,0,"""Asia""" +2024-11-19,29796,8131,"[\""Charger\""]",2741.24,"{\""seasonal\"": \""25%\""}",80694,1,"""South America""" +2024-11-27,29797,3205,"[\""Charger\""]",1733.63,"{\""loyalty\"": \""21%\""}",55972,1,"""North America""" +2023-05-20,29798,2885,"[\""Laptop\""]",4271.82,"{\""loyalty\"": \""11%\""}",174363,1,"""Africa""" +2024-04-12,29799,8891,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1662.34,{},128455,1,"""Africa""" +2024-06-18,29800,8616,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2909.81,{},222075,0,"""South America""" +2023-04-25,29801,1521,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1928.86,"{\"": \""11%\""}",270272,1,"""Africa""" +2024-07-25,29802,9136,"[\""Charger\"", \""Phone\""]",425.55,"{\"": \""23%\""}",206216,0,"""South America""" +2023-07-21,29803,5225,"[\""Laptop\"", \""Monitor\""]",3416.14,"{\""promo\"": \""15%\""}",241567,0,"""Africa""" +2023-11-03,29804,5542,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1584.43,{},222897,1,"""Africa""" +2024-03-14,29805,2576,"[\""Monitor\"", \""Headphones\""]",4688.84,{},10539,0,"""Europe""" +2024-01-09,29806,6446,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",933.5,"{\""seasonal\"": \""21%\""}",66814,0,"""Europe""" +2023-01-02,29807,4078,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4636.34,{},84383,0,"""Africa""" +2023-01-15,29808,8537,"[\""Phone\"", \""Headphones\""]",1221.8,"{\""loyalty\"": \""14%\""}",233791,0,"""Africa""" +2024-05-30,29809,8839,"[\""Monitor\"", \""Headphones\""]",1735.0,"{\"": \""21%\""}",225654,1,"""Africa""" +2023-05-05,29810,271,"[\""Tablet\""]",1442.92,"{\""loyalty\"": \""29%\""}",90052,0,"""South America""" +2023-04-30,29811,1271,"[\""Laptop\"", \""Charger\""]",3379.84,{},12773,0,"""South America""" +2024-11-08,29812,7809,"[\""Keyboard\"", \""Charger\""]",3764.09,{},212544,0,"""Europe""" +2023-11-16,29813,2485,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",879.03,"{\""loyalty\"": \""17%\""}",8269,1,"""Europe""" +2023-12-03,29814,90,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2181.09,"{\""loyalty\"": \""21%\""}",197163,1,"""South America""" +2024-02-03,29815,938,"[\""Wireless Mouse\"", \""Keyboard\""]",3034.13,"{\"": \""14%\""}",196219,1,"""North America""" +2023-09-22,29816,8140,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2331.93,"{\""promo\"": \""17%\""}",48291,1,"""South America""" +2024-12-05,29817,7909,"[\""Monitor\""]",3664.79,{},274033,0,"""North America""" +2023-10-07,29818,7536,"[\""Keyboard\"", \""Laptop\""]",3301.82,{},96463,1,"""North America""" +2024-08-11,29819,7877,"[\""Monitor\""]",1280.37,{},288200,1,"""North America""" +2023-09-14,29820,1014,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3798.8,"{\""loyalty\"": \""22%\""}",233358,0,"""Asia""" +2023-07-19,29821,3914,"[\""Keyboard\"", \""Wireless Mouse\""]",2008.34,{},277176,1,"""South America""" +2024-11-05,29822,4007,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4137.23,"{\"": \""29%\""}",201788,0,"""Asia""" +2024-03-14,29823,8672,"[\""Charger\"", \""Laptop\""]",4501.81,{},64790,1,"""South America""" +2023-07-06,29824,9346,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2253.11,"{\""loyalty\"": \""14%\""}",142473,0,"""Asia""" +2024-03-03,29825,1263,"[\""Phone\"", \""Tablet\""]",3278.07,{},70090,0,"""South America""" +2024-11-28,29826,5513,"[\""Keyboard\""]",825.36,{},84700,1,"""Europe""" +2023-02-06,29827,3714,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3603.29,"{\""promo\"": \""26%\""}",107662,1,"""Europe""" +2023-04-21,29828,7468,"[\""Tablet\""]",883.86,{},148409,1,"""Asia""" +2023-11-04,29829,2041,"[\""Phone\""]",1315.42,{},28767,0,"""South America""" +2023-01-02,29830,5085,"[\""Laptop\""]",591.33,{},213107,1,"""Europe""" +2024-07-08,29831,3182,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2848.42,"{\""promo\"": \""11%\""}",92340,1,"""Asia""" +2024-06-20,29832,5876,"[\""Monitor\""]",1558.42,{},260500,0,"""Europe""" +2024-10-31,29833,6069,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2392.78,"{\""loyalty\"": \""11%\""}",118905,0,"""Europe""" +2024-04-08,29834,2369,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4978.39,"{\"": \""5%\""}",291154,0,"""Asia""" +2023-07-10,29835,1347,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2348.14,{},101358,1,"""North America""" +2024-06-11,29836,8136,"[\""Headphones\"", \""Laptop\""]",135.97,{},208837,1,"""North America""" +2023-07-10,29837,8367,"[\""Headphones\"", \""Phone\""]",3284.25,{},56278,0,"""Asia""" +2024-01-09,29838,2248,"[\""Charger\"", \""Keyboard\""]",3859.81,{},31146,0,"""Asia""" +2024-11-22,29839,5806,"[\""Charger\"", \""Phone\"", \""Tablet\""]",862.27,"{\""seasonal\"": \""19%\""}",11241,0,"""North America""" +2024-11-10,29840,5554,"[\""Laptop\""]",2235.15,{},298640,1,"""Europe""" +2023-07-02,29841,1815,"[\""Tablet\"", \""Keyboard\""]",2187.83,{},259211,1,"""Europe""" +2023-12-14,29842,2843,"[\""Tablet\"", \""Monitor\""]",4136.66,{},1323,1,"""Asia""" +2023-06-26,29843,1838,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2168.27,"{\"": \""5%\""}",224281,0,"""North America""" +2024-11-07,29844,5783,"[\""Tablet\"", \""Keyboard\""]",4726.23,{},101252,0,"""Africa""" +2024-12-17,29845,831,"[\""Monitor\"", \""Tablet\""]",3013.78,"{\""seasonal\"": \""27%\""}",117248,0,"""South America""" +2023-02-01,29846,5888,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2078.86,{},106296,1,"""Africa""" +2023-01-28,29847,1774,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",328.49,"{\""seasonal\"": \""12%\""}",170150,0,"""Europe""" +2024-06-18,29848,3436,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4579.05,"{\""seasonal\"": \""28%\""}",84040,1,"""Asia""" +2023-04-10,29849,7143,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2154.31,{},13430,1,"""Asia""" +2024-12-10,29850,7578,"[\""Headphones\"", \""Keyboard\""]",998.73,"{\"": \""10%\""}",35399,1,"""North America""" +2023-06-28,29851,743,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4198.79,{},135705,0,"""South America""" +2023-03-02,29852,2273,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",113.05,{},136155,0,"""North America""" +2024-09-10,29853,8884,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1431.11,"{\""promo\"": \""12%\""}",254426,1,"""North America""" +2023-11-06,29854,1239,"[\""Laptop\"", \""Tablet\""]",987.03,"{\""seasonal\"": \""10%\""}",84889,0,"""North America""" +2024-11-27,29855,5556,"[\""Phone\"", \""Headphones\""]",1885.38,"{\""seasonal\"": \""12%\""}",168196,0,"""Europe""" +2024-04-13,29856,4966,"[\""Charger\""]",4752.87,{},203469,0,"""South America""" +2023-12-05,29857,3939,"[\""Phone\""]",422.29,"{\""loyalty\"": \""26%\""}",229885,1,"""Asia""" +2023-10-21,29858,2106,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",120.23,{},265930,0,"""South America""" +2023-07-14,29859,5894,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3706.47,{},166872,0,"""Africa""" +2023-08-20,29860,6866,"[\""Tablet\"", \""Wireless Mouse\""]",2613.16,{},217356,0,"""Asia""" +2024-03-26,29861,4466,"[\""Headphones\""]",3690.96,"{\"": \""24%\""}",165630,1,"""Europe""" +2024-03-22,29862,5626,"[\""Charger\"", \""Tablet\""]",3665.63,{},33456,1,"""North America""" +2023-06-08,29863,8249,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",721.54,"{\""seasonal\"": \""20%\""}",217952,0,"""Europe""" +2024-05-04,29864,1832,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",831.93,"{\""seasonal\"": \""6%\""}",126055,1,"""Africa""" +2024-07-29,29865,9357,"[\""Headphones\"", \""Charger\""]",1716.75,{},283446,0,"""North America""" +2024-02-25,29866,5060,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3025.39,"{\"": \""10%\""}",101401,0,"""South America""" +2023-03-14,29867,7010,"[\""Headphones\"", \""Laptop\""]",3707.36,"{\""promo\"": \""19%\""}",16234,0,"""Europe""" +2024-05-19,29868,8956,"[\""Keyboard\"", \""Wireless Mouse\""]",4483.81,"{\"": \""5%\""}",37177,0,"""Europe""" +2023-05-20,29869,8435,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1207.22,{},237351,1,"""South America""" +2023-04-15,29870,6395,"[\""Monitor\"", \""Charger\""]",4120.77,{},11737,0,"""Africa""" +2024-02-14,29871,4341,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4777.48,"{\""loyalty\"": \""12%\""}",157675,1,"""North America""" +2023-12-08,29872,434,"[\""Keyboard\""]",3392.05,{},2743,1,"""South America""" +2023-05-06,29873,1685,"[\""Laptop\""]",1746.94,{},29799,1,"""Europe""" +2023-07-27,29874,3133,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4136.69,"{\"": \""18%\""}",95273,1,"""North America""" +2024-02-04,29875,6078,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3287.91,"{\""seasonal\"": \""15%\""}",101464,0,"""North America""" +2023-08-28,29876,7137,"[\""Charger\""]",674.7,"{\""loyalty\"": \""10%\""}",111850,0,"""Europe""" +2023-10-10,29877,5983,"[\""Charger\"", \""Phone\""]",4930.74,{},148250,1,"""Africa""" +2024-08-18,29878,6362,"[\""Phone\"", \""Charger\""]",2333.81,{},24806,1,"""Europe""" +2023-12-29,29879,2708,"[\""Charger\""]",3156.52,{},144913,0,"""Asia""" +2023-07-21,29880,1427,"[\""Charger\""]",622.5,"{\""loyalty\"": \""25%\""}",117808,1,"""North America""" +2023-01-20,29881,2105,"[\""Laptop\""]",4471.16,"{\""promo\"": \""16%\""}",68262,1,"""Europe""" +2024-04-01,29882,9593,"[\""Tablet\""]",3679.96,"{\""seasonal\"": \""29%\""}",152307,0,"""North America""" +2023-08-15,29883,3300,"[\""Phone\""]",4296.19,{},200672,0,"""Europe""" +2024-01-03,29884,5941,"[\""Headphones\""]",4124.16,{},216437,1,"""South America""" +2024-12-06,29885,5568,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",411.64,"{\"": \""26%\""}",87329,0,"""Asia""" +2023-09-25,29886,1838,"[\""Phone\"", \""Charger\"", \""Headphones\""]",229.14,"{\""seasonal\"": \""22%\""}",231775,1,"""South America""" +2024-10-23,29887,467,"[\""Laptop\""]",2232.14,{},190127,0,"""Europe""" +2024-01-23,29888,7404,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4272.62,{},256353,0,"""South America""" +2023-06-30,29889,4556,"[\""Phone\""]",3880.52,"{\"": \""17%\""}",72113,0,"""Asia""" +2024-01-04,29890,4569,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",441.24,{},215010,1,"""South America""" +2023-04-08,29891,9958,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3221.66,{},172144,1,"""North America""" +2024-01-03,29892,570,"[\""Laptop\"", \""Keyboard\""]",3132.14,{},204320,0,"""North America""" +2024-11-24,29893,5210,"[\""Laptop\"", \""Wireless Mouse\""]",2042.77,"{\""promo\"": \""16%\""}",159364,1,"""Europe""" +2024-06-05,29894,7085,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1253.22,{},225853,0,"""Europe""" +2023-06-03,29895,3164,"[\""Charger\"", \""Tablet\""]",911.5,"{\"": \""5%\""}",259793,0,"""South America""" +2023-02-21,29896,8882,"[\""Charger\"", \""Laptop\""]",2052.52,"{\""promo\"": \""29%\""}",289253,0,"""Europe""" +2024-07-04,29897,1679,"[\""Charger\"", \""Phone\""]",2046.64,"{\"": \""21%\""}",3398,0,"""Asia""" +2024-03-28,29898,1276,"[\""Laptop\""]",985.52,{},115650,1,"""Europe""" +2023-11-05,29899,4543,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1481.78,{},223245,1,"""North America""" +2024-10-31,29900,3729,"[\""Tablet\""]",2601.48,{},31823,0,"""South America""" +2023-07-04,29901,6639,"[\""Phone\"", \""Keyboard\""]",3318.07,"{\""promo\"": \""30%\""}",216657,0,"""South America""" +2024-05-31,29902,7677,"[\""Headphones\"", \""Keyboard\""]",144.2,"{\""promo\"": \""19%\""}",214741,1,"""Europe""" +2024-08-03,29903,7912,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4197.55,{},248688,0,"""Europe""" +2023-08-25,29904,8874,"[\""Laptop\""]",4976.63,{},121970,1,"""South America""" +2024-03-01,29905,75,"[\""Phone\"", \""Laptop\""]",3267.56,"{\""loyalty\"": \""8%\""}",224793,1,"""Africa""" +2024-02-18,29906,2902,"[\""Headphones\"", \""Charger\""]",4507.03,"{\"": \""30%\""}",12562,1,"""North America""" +2024-06-20,29907,2863,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4885.79,"{\""loyalty\"": \""21%\""}",2971,0,"""Asia""" +2023-10-11,29908,2583,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",278.82,"{\""promo\"": \""14%\""}",212443,1,"""Europe""" +2023-12-18,29909,9733,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3237.49,"{\"": \""25%\""}",248751,1,"""Europe""" +2023-10-23,29910,9555,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3717.36,{},139353,1,"""Europe""" +2023-04-04,29911,506,"[\""Phone\""]",2470.69,"{\""loyalty\"": \""13%\""}",282318,0,"""South America""" +2024-07-25,29912,5336,"[\""Wireless Mouse\"", \""Tablet\""]",736.24,"{\"": \""28%\""}",175368,0,"""Europe""" +2024-10-04,29913,3892,"[\""Headphones\"", \""Monitor\""]",4454.07,{},152608,0,"""Asia""" +2024-11-27,29914,1244,"[\""Headphones\""]",2936.41,{},288216,1,"""Africa""" +2024-12-25,29915,7233,"[\""Laptop\"", \""Monitor\""]",4440.12,{},149210,0,"""Africa""" +2023-07-05,29916,504,"[\""Phone\"", \""Charger\""]",874.6,{},38638,1,"""North America""" +2023-08-06,29917,7532,"[\""Laptop\""]",4595.74,"{\""promo\"": \""16%\""}",197620,1,"""Africa""" +2023-07-14,29918,2683,"[\""Headphones\""]",4897.67,"{\""seasonal\"": \""13%\""}",140283,1,"""South America""" +2023-01-31,29919,9985,"[\""Keyboard\"", \""Wireless Mouse\""]",4242.25,{},243121,0,"""Europe""" +2023-03-14,29920,6213,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3008.58,"{\""promo\"": \""30%\""}",270597,0,"""Asia""" +2023-12-25,29921,8763,"[\""Monitor\"", \""Keyboard\""]",3200.96,{},207100,0,"""Europe""" +2023-07-27,29922,5500,"[\""Laptop\"", \""Keyboard\""]",2734.6,"{\""seasonal\"": \""30%\""}",55265,1,"""South America""" +2024-01-26,29923,5663,"[\""Laptop\""]",1112.2,{},5637,1,"""Europe""" +2024-10-27,29924,8068,"[\""Tablet\"", \""Monitor\""]",1210.91,{},28775,0,"""South America""" +2024-06-01,29925,4646,"[\""Laptop\"", \""Charger\""]",1106.64,{},122257,1,"""Africa""" +2024-03-02,29926,7515,"[\""Charger\"", \""Laptop\""]",3782.36,"{\""seasonal\"": \""24%\""}",17015,1,"""Asia""" +2023-03-25,29927,9214,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2972.01,"{\""seasonal\"": \""30%\""}",221728,0,"""South America""" +2023-10-27,29928,4957,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3362.83,{},285251,1,"""Asia""" +2023-01-22,29929,2727,"[\""Tablet\""]",4402.2,{},123346,0,"""Asia""" +2023-07-12,29930,4130,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1452.76,{},163138,0,"""South America""" +2024-07-17,29931,5454,"[\""Charger\""]",4255.01,{},246033,1,"""Africa""" +2024-01-11,29932,8814,"[\""Monitor\""]",3987.31,{},193539,1,"""Asia""" +2024-04-25,29933,1909,"[\""Wireless Mouse\"", \""Keyboard\""]",86.48,"{\""seasonal\"": \""7%\""}",261389,1,"""Asia""" +2023-08-14,29934,8615,"[\""Monitor\"", \""Tablet\""]",1802.08,{},227853,0,"""Asia""" +2024-12-10,29935,6703,"[\""Charger\"", \""Laptop\""]",1494.23,{},33036,0,"""Asia""" +2023-02-25,29936,4357,"[\""Charger\""]",3648.28,{},266960,0,"""Asia""" +2023-12-19,29937,465,"[\""Phone\"", \""Monitor\""]",967.72,"{\""seasonal\"": \""14%\""}",10527,0,"""Africa""" +2024-08-18,29938,8251,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2049.21,"{\""seasonal\"": \""30%\""}",41452,0,"""North America""" +2023-04-22,29939,7368,"[\""Phone\"", \""Headphones\""]",4176.28,"{\""seasonal\"": \""16%\""}",229791,0,"""North America""" +2024-07-19,29940,192,"[\""Tablet\"", \""Charger\""]",2139.62,{},46073,0,"""North America""" +2023-08-19,29941,4138,"[\""Charger\""]",137.15,{},151587,0,"""Asia""" +2024-10-01,29942,7987,"[\""Wireless Mouse\"", \""Tablet\""]",3647.6,"{\""seasonal\"": \""25%\""}",37460,0,"""Europe""" +2023-01-01,29943,4696,"[\""Keyboard\"", \""Headphones\""]",2147.82,"{\""seasonal\"": \""30%\""}",151714,1,"""Asia""" +2024-07-23,29944,4551,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2472.86,"{\""seasonal\"": \""28%\""}",272455,0,"""North America""" +2023-03-21,29945,1904,"[\""Phone\""]",2040.44,"{\""loyalty\"": \""27%\""}",117157,0,"""South America""" +2023-05-09,29946,1753,"[\""Monitor\"", \""Phone\""]",2304.95,{},35542,0,"""Africa""" +2023-12-05,29947,3175,"[\""Tablet\""]",1366.56,{},170791,1,"""South America""" +2023-08-30,29948,3106,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1338.24,"{\""promo\"": \""16%\""}",270829,1,"""North America""" +2023-02-24,29949,3894,"[\""Keyboard\"", \""Headphones\""]",3076.98,{},245434,1,"""Asia""" +2023-03-25,29950,5112,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2510.21,{},62686,1,"""South America""" +2024-01-09,29951,3880,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4437.33,{},105997,0,"""Asia""" +2023-08-26,29952,3254,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4479.94,{},14906,1,"""Asia""" +2023-08-16,29953,8688,"[\""Laptop\""]",4742.65,"{\""promo\"": \""27%\""}",287472,0,"""North America""" +2024-10-25,29954,9727,"[\""Keyboard\""]",3692.89,{},83668,0,"""North America""" +2023-01-25,29955,5862,"[\""Phone\"", \""Keyboard\""]",923.36,"{\""seasonal\"": \""21%\""}",193386,1,"""Europe""" +2023-01-31,29956,4738,"[\""Phone\"", \""Wireless Mouse\""]",4652.66,"{\""seasonal\"": \""19%\""}",258950,0,"""Asia""" +2024-02-20,29957,8988,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2655.65,"{\""seasonal\"": \""13%\""}",262808,1,"""South America""" +2023-06-18,29958,8378,"[\""Tablet\""]",3286.08,"{\""loyalty\"": \""23%\""}",157131,1,"""Europe""" +2023-08-20,29959,2181,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1025.19,"{\""promo\"": \""20%\""}",202093,1,"""Africa""" +2023-07-07,29960,3840,"[\""Laptop\""]",870.15,"{\""promo\"": \""16%\""}",47928,0,"""Asia""" +2023-03-16,29961,5736,"[\""Wireless Mouse\""]",3654.25,{},291996,0,"""Asia""" +2023-06-17,29962,1846,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2635.75,"{\""seasonal\"": \""22%\""}",59982,1,"""Europe""" +2023-03-16,29963,8247,"[\""Headphones\"", \""Tablet\""]",4548.27,{},240970,1,"""South America""" +2024-08-03,29964,9642,"[\""Charger\""]",4887.59,{},276130,0,"""South America""" +2024-05-07,29965,833,"[\""Wireless Mouse\""]",1956.32,{},204423,0,"""South America""" +2024-07-29,29966,49,"[\""Wireless Mouse\""]",3151.29,"{\""seasonal\"": \""20%\""}",203117,0,"""South America""" +2023-07-01,29967,4629,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3037.65,"{\"": \""28%\""}",278366,0,"""South America""" +2023-08-19,29968,8816,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4918.65,"{\""promo\"": \""5%\""}",261225,0,"""Africa""" +2023-10-06,29969,2508,"[\""Phone\"", \""Charger\""]",693.17,{},210142,1,"""Europe""" +2023-11-09,29970,7586,"[\""Keyboard\""]",661.67,"{\""loyalty\"": \""28%\""}",19239,1,"""Africa""" +2024-09-20,29971,1888,"[\""Monitor\"", \""Headphones\""]",3257.19,{},209529,0,"""Europe""" +2023-07-12,29972,7554,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1615.73,"{\""loyalty\"": \""10%\""}",186818,1,"""South America""" +2023-08-04,29973,7651,"[\""Charger\"", \""Laptop\""]",2643.76,"{\""loyalty\"": \""28%\""}",146834,1,"""Asia""" +2024-02-14,29974,2184,"[\""Wireless Mouse\""]",98.08,{},268428,0,"""North America""" +2023-06-06,29975,8277,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1522.65,{},41875,1,"""North America""" +2023-12-29,29976,6044,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1321.55,"{\"": \""17%\""}",216898,1,"""North America""" +2023-06-30,29977,6912,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3973.46,{},298812,0,"""Europe""" +2023-07-13,29978,9362,"[\""Keyboard\""]",4295.45,"{\""promo\"": \""17%\""}",286071,0,"""Europe""" +2024-04-25,29979,7970,"[\""Monitor\"", \""Charger\""]",2539.95,{},153925,0,"""South America""" +2023-08-07,29980,9365,"[\""Phone\""]",4688.59,"{\"": \""5%\""}",140321,0,"""South America""" +2024-04-01,29981,6986,"[\""Wireless Mouse\""]",4236.8,{},105720,1,"""North America""" +2024-10-13,29982,8151,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",301.15,"{\""seasonal\"": \""5%\""}",156859,0,"""Africa""" +2024-07-17,29983,2900,"[\""Monitor\""]",3970.69,"{\"": \""16%\""}",159121,0,"""North America""" +2024-08-21,29984,193,"[\""Tablet\""]",4098.87,{},296432,1,"""South America""" +2023-01-31,29985,9350,"[\""Monitor\"", \""Tablet\""]",1272.29,"{\""loyalty\"": \""26%\""}",218156,1,"""Europe""" +2024-10-01,29986,458,"[\""Monitor\""]",3062.28,{},277400,0,"""Africa""" +2023-03-26,29987,1550,"[\""Headphones\""]",333.86,"{\""loyalty\"": \""25%\""}",155202,1,"""North America""" +2023-11-28,29988,1821,"[\""Laptop\"", \""Wireless Mouse\""]",3916.85,"{\""seasonal\"": \""15%\""}",129894,0,"""Europe""" +2024-05-18,29989,7469,"[\""Charger\"", \""Monitor\""]",2624.85,"{\"": \""9%\""}",177264,0,"""Africa""" +2023-02-21,29990,4289,"[\""Charger\""]",980.05,"{\""seasonal\"": \""13%\""}",53099,0,"""South America""" +2024-03-17,29991,6496,"[\""Phone\"", \""Wireless Mouse\""]",2979.22,"{\""seasonal\"": \""30%\""}",238195,0,"""Asia""" +2024-09-01,29992,9548,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2795.35,{},184410,1,"""South America""" +2024-01-10,29993,921,"[\""Wireless Mouse\""]",2793.67,"{\""promo\"": \""12%\""}",259947,0,"""Europe""" +2024-03-03,29994,6479,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1674.72,"{\""seasonal\"": \""7%\""}",14218,0,"""Asia""" +2024-01-21,29995,6451,"[\""Phone\""]",3210.85,"{\"": \""15%\""}",149777,1,"""North America""" +2024-02-04,29996,9901,"[\""Laptop\""]",848.82,{},109793,0,"""Asia""" +2023-08-19,29997,422,"[\""Wireless Mouse\""]",3980.53,"{\"": \""23%\""}",99404,0,"""North America""" +2024-01-16,29998,6386,"[\""Tablet\"", \""Wireless Mouse\""]",1174.13,"{\""promo\"": \""14%\""}",278633,1,"""Africa""" +2024-10-13,29999,7534,"[\""Phone\"", \""Charger\""]",4965.63,{},299928,1,"""South America""" +2024-06-06,30000,6194,"[\""Monitor\""]",4755.1,"{\""loyalty\"": \""8%\""}",69708,0,"""Africa""" +2023-06-08,30001,5257,"[\""Tablet\""]",3896.59,"{\""loyalty\"": \""6%\""}",78326,1,"""North America""" +2024-05-27,30002,2698,"[\""Charger\"", \""Keyboard\""]",2023.3,{},262978,1,"""Europe""" +2023-11-09,30003,2939,"[\""Tablet\"", \""Charger\""]",550.98,{},151476,1,"""South America""" +2023-05-24,30004,2413,"[\""Headphones\"", \""Tablet\""]",3571.79,{},169454,1,"""Africa""" +2024-06-13,30005,4508,"[\""Keyboard\""]",3405.7,"{\""loyalty\"": \""12%\""}",184086,0,"""South America""" +2023-12-08,30006,7303,"[\""Laptop\""]",566.2,{},112641,1,"""Asia""" +2024-04-10,30007,4299,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2478.66,"{\""promo\"": \""27%\""}",220426,1,"""Europe""" +2024-09-12,30008,6058,"[\""Charger\"", \""Keyboard\""]",2959.51,{},229967,0,"""Europe""" +2024-12-31,30009,1481,"[\""Charger\"", \""Wireless Mouse\""]",4742.19,"{\"": \""15%\""}",293106,1,"""Africa""" +2024-11-23,30010,4729,"[\""Monitor\"", \""Tablet\""]",3875.44,"{\""seasonal\"": \""11%\""}",167354,1,"""Africa""" +2024-01-03,30011,8078,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1706.76,"{\""loyalty\"": \""9%\""}",200492,0,"""South America""" +2024-08-04,30012,1895,"[\""Laptop\"", \""Keyboard\""]",3465.88,"{\""seasonal\"": \""12%\""}",137534,1,"""North America""" +2023-12-04,30013,9979,"[\""Tablet\""]",392.43,"{\"": \""17%\""}",216056,1,"""Europe""" +2023-01-16,30014,1623,"[\""Keyboard\"", \""Monitor\""]",3069.89,{},248637,1,"""Asia""" +2024-06-10,30015,5935,"[\""Phone\""]",4655.21,{},192211,0,"""Asia""" +2023-01-17,30016,4736,"[\""Tablet\""]",1573.04,{},209753,0,"""Asia""" +2024-07-19,30017,9024,"[\""Keyboard\""]",290.28,{},12481,0,"""Asia""" +2024-03-08,30018,5166,"[\""Wireless Mouse\""]",2275.33,"{\""promo\"": \""17%\""}",119727,0,"""North America""" +2023-01-01,30019,3800,"[\""Tablet\"", \""Wireless Mouse\""]",4608.73,"{\""promo\"": \""6%\""}",252514,0,"""North America""" +2024-12-05,30020,4269,"[\""Keyboard\""]",658.93,{},221475,1,"""Africa""" +2024-01-01,30021,7728,"[\""Monitor\"", \""Wireless Mouse\""]",713.69,{},42411,0,"""Asia""" +2024-02-06,30022,8174,"[\""Headphones\""]",3944.8,"{\"": \""8%\""}",217797,0,"""Africa""" +2024-10-21,30023,2428,"[\""Keyboard\""]",3479.63,{},233775,1,"""North America""" +2024-03-28,30024,3185,"[\""Headphones\""]",686.86,"{\"": \""6%\""}",50146,0,"""Africa""" +2024-11-16,30025,6332,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",987.13,{},222720,0,"""South America""" +2023-01-11,30026,8855,"[\""Phone\"", \""Charger\"", \""Laptop\""]",677.83,"{\"": \""30%\""}",170774,1,"""Europe""" +2023-03-02,30027,5975,"[\""Tablet\""]",1298.3,"{\""seasonal\"": \""8%\""}",6237,0,"""North America""" +2024-02-05,30028,1580,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2788.78,"{\""promo\"": \""18%\""}",99686,1,"""Asia""" +2024-06-12,30029,7838,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2521.55,"{\""promo\"": \""26%\""}",261992,1,"""South America""" +2023-09-23,30030,2256,"[\""Wireless Mouse\"", \""Monitor\""]",1493.44,{},159628,0,"""Europe""" +2023-03-14,30031,1906,"[\""Monitor\"", \""Laptop\""]",3406.26,{},258120,1,"""North America""" +2023-11-14,30032,3417,"[\""Laptop\""]",157.17,"{\""promo\"": \""6%\""}",182327,0,"""South America""" +2023-02-06,30033,2844,"[\""Charger\"", \""Tablet\""]",1053.97,{},291010,1,"""Africa""" +2023-10-05,30034,7355,"[\""Wireless Mouse\""]",1736.11,"{\""promo\"": \""8%\""}",205326,1,"""North America""" +2023-02-20,30035,7109,"[\""Phone\"", \""Laptop\""]",1628.51,{},276205,0,"""Africa""" +2024-01-02,30036,3861,"[\""Tablet\""]",123.69,{},270115,1,"""Africa""" +2023-05-12,30037,1628,"[\""Laptop\"", \""Tablet\""]",4372.15,{},4366,0,"""Africa""" +2024-10-03,30038,6896,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2982.48,{},277188,1,"""Africa""" +2023-07-29,30039,2707,"[\""Monitor\""]",2857.17,{},2792,0,"""North America""" +2024-04-28,30040,9212,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",769.31,{},73777,0,"""North America""" +2024-04-11,30041,2638,"[\""Keyboard\""]",906.14,"{\""promo\"": \""18%\""}",91680,0,"""Asia""" +2024-05-21,30042,8256,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",908.46,{},274254,0,"""Africa""" +2024-05-30,30043,1469,"[\""Headphones\""]",2086.12,{},136594,0,"""Africa""" +2024-08-05,30044,5617,"[\""Keyboard\"", \""Monitor\""]",703.09,"{\""seasonal\"": \""30%\""}",67875,1,"""Asia""" +2023-02-13,30045,6809,"[\""Charger\"", \""Wireless Mouse\""]",2443.97,{},239373,1,"""Africa""" +2024-04-16,30046,814,"[\""Keyboard\""]",295.15,{},289299,1,"""North America""" +2024-06-14,30047,7142,"[\""Laptop\""]",375.03,{},144061,0,"""South America""" +2023-03-04,30048,5123,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1330.49,{},284527,0,"""Asia""" +2024-04-08,30049,8036,"[\""Tablet\""]",2774.56,{},18541,0,"""Africa""" +2024-05-10,30050,1247,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2714.15,"{\""loyalty\"": \""17%\""}",179977,0,"""South America""" +2023-04-06,30051,33,"[\""Wireless Mouse\"", \""Charger\""]",4744.58,"{\"": \""22%\""}",225603,0,"""Asia""" +2024-08-25,30052,7345,"[\""Tablet\"", \""Headphones\""]",131.2,"{\"": \""21%\""}",35490,0,"""Asia""" +2023-12-11,30053,1530,"[\""Wireless Mouse\"", \""Laptop\""]",1411.14,{},46466,1,"""Asia""" +2023-11-25,30054,7449,"[\""Laptop\"", \""Headphones\""]",3204.36,"{\""loyalty\"": \""10%\""}",233872,1,"""South America""" +2023-12-03,30055,9032,"[\""Headphones\"", \""Monitor\""]",3133.7,"{\""seasonal\"": \""22%\""}",165993,1,"""South America""" +2024-06-16,30056,9128,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4212.99,"{\""promo\"": \""30%\""}",166040,0,"""North America""" +2023-01-19,30057,593,"[\""Charger\""]",2754.85,{},13882,1,"""Europe""" +2024-08-26,30058,8886,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1990.9,"{\"": \""15%\""}",198408,1,"""Africa""" +2024-07-21,30059,6116,"[\""Phone\""]",2404.63,{},136623,0,"""Asia""" +2024-01-17,30060,9904,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2537.07,{},10730,0,"""Europe""" +2024-02-06,30061,1533,"[\""Phone\""]",1080.14,{},279251,1,"""Europe""" +2024-04-29,30062,5620,"[\""Laptop\""]",2418.28,"{\""promo\"": \""19%\""}",213099,1,"""North America""" +2023-02-23,30063,3458,"[\""Monitor\""]",361.33,{},222936,0,"""North America""" +2023-12-15,30064,6975,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1983.56,{},72981,1,"""Europe""" +2023-08-26,30065,4484,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4088.93,{},106525,1,"""South America""" +2023-11-08,30066,763,"[\""Charger\"", \""Laptop\""]",889.5,{},102462,0,"""Europe""" +2023-08-16,30067,9821,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4156.78,"{\""loyalty\"": \""30%\""}",147716,1,"""Asia""" +2023-05-27,30068,5643,"[\""Keyboard\"", \""Laptop\""]",1572.81,"{\""promo\"": \""18%\""}",111029,1,"""Asia""" +2024-01-28,30069,4175,"[\""Monitor\"", \""Phone\""]",456.96,"{\"": \""7%\""}",227016,1,"""Europe""" +2023-07-18,30070,1036,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4542.83,"{\"": \""24%\""}",41197,0,"""Europe""" +2024-01-10,30071,5854,"[\""Tablet\"", \""Wireless Mouse\""]",4649.62,"{\"": \""25%\""}",250695,1,"""South America""" +2023-12-04,30072,8465,"[\""Keyboard\""]",2219.05,"{\"": \""8%\""}",152081,1,"""Asia""" +2023-08-26,30073,2559,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",759.03,"{\"": \""9%\""}",232478,0,"""Europe""" +2023-06-03,30074,9659,"[\""Monitor\"", \""Phone\""]",3197.27,{},217415,0,"""Asia""" +2024-10-28,30075,97,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",860.0,"{\"": \""10%\""}",197941,1,"""Africa""" +2024-06-10,30076,7525,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2903.83,{},123804,0,"""North America""" +2023-05-28,30077,3743,"[\""Headphones\"", \""Keyboard\""]",3046.13,"{\""seasonal\"": \""6%\""}",206175,0,"""South America""" +2023-07-24,30078,2894,"[\""Keyboard\""]",3998.76,{},68261,1,"""South America""" +2024-12-09,30079,5813,"[\""Monitor\"", \""Laptop\""]",3303.4,"{\""loyalty\"": \""30%\""}",283553,0,"""Europe""" +2023-05-21,30080,5920,"[\""Tablet\""]",2407.87,"{\""promo\"": \""16%\""}",138783,1,"""Europe""" +2023-11-13,30081,1712,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2018.18,"{\"": \""8%\""}",293556,0,"""Europe""" +2024-02-27,30082,4998,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4220.04,{},33752,1,"""Europe""" +2024-07-06,30083,1269,"[\""Keyboard\""]",1766.12,{},154537,1,"""Europe""" +2024-07-20,30084,4167,"[\""Laptop\"", \""Charger\""]",725.96,{},100173,0,"""Africa""" +2024-07-20,30085,7062,"[\""Charger\""]",1175.35,{},77895,0,"""Africa""" +2024-08-27,30086,444,"[\""Laptop\""]",3073.72,{},218101,1,"""North America""" +2024-08-08,30087,3062,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4820.91,{},207285,1,"""South America""" +2023-10-03,30088,6765,"[\""Phone\"", \""Charger\""]",4011.64,{},9131,0,"""South America""" +2024-02-16,30089,5775,"[\""Headphones\"", \""Wireless Mouse\""]",4954.65,{},274035,0,"""South America""" +2023-06-22,30090,6254,"[\""Charger\""]",2411.16,"{\""promo\"": \""29%\""}",213609,0,"""North America""" +2023-09-29,30091,3969,"[\""Laptop\"", \""Tablet\""]",4543.93,{},249337,1,"""South America""" +2023-11-06,30092,4999,"[\""Charger\"", \""Keyboard\""]",1131.97,{},78138,0,"""Africa""" +2024-06-04,30093,9489,"[\""Charger\"", \""Wireless Mouse\""]",1114.96,{},297093,1,"""North America""" +2023-05-04,30094,3966,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",392.75,"{\"": \""10%\""}",160433,0,"""Europe""" +2023-02-26,30095,2200,"[\""Monitor\"", \""Keyboard\""]",1317.74,{},84715,1,"""Africa""" +2024-05-21,30096,5634,"[\""Monitor\"", \""Charger\""]",992.34,{},34833,1,"""Africa""" +2024-12-17,30097,1801,"[\""Headphones\"", \""Laptop\""]",3502.93,"{\""loyalty\"": \""28%\""}",15093,0,"""South America""" +2023-06-02,30098,1637,"[\""Wireless Mouse\"", \""Charger\""]",2523.94,"{\""promo\"": \""21%\""}",246986,0,"""North America""" +2024-11-16,30099,1638,"[\""Laptop\"", \""Keyboard\""]",2161.26,"{\""loyalty\"": \""10%\""}",143219,1,"""Europe""" +2023-06-18,30100,2296,"[\""Wireless Mouse\"", \""Phone\""]",3088.42,{},276829,1,"""Asia""" +2024-06-15,30101,5016,"[\""Tablet\"", \""Monitor\""]",261.49,"{\""promo\"": \""13%\""}",264757,1,"""South America""" +2023-07-29,30102,4859,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",291.87,{},160395,0,"""Europe""" +2023-04-13,30103,1490,"[\""Keyboard\""]",4476.08,"{\""seasonal\"": \""18%\""}",3850,0,"""Europe""" +2024-09-11,30104,4696,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3339.75,"{\""promo\"": \""9%\""}",82913,1,"""North America""" +2024-08-06,30105,2377,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4946.98,"{\""promo\"": \""14%\""}",115804,0,"""Africa""" +2023-03-25,30106,3921,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2197.77,{},108226,1,"""Europe""" +2023-10-29,30107,8847,"[\""Monitor\""]",191.48,{},242448,1,"""Africa""" +2023-09-21,30108,3940,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3619.48,{},285170,0,"""Asia""" +2024-09-12,30109,4854,"[\""Keyboard\"", \""Monitor\""]",1479.33,"{\"": \""24%\""}",58190,1,"""South America""" +2023-05-13,30110,7428,"[\""Tablet\""]",2528.75,{},165811,0,"""North America""" +2023-12-21,30111,3952,"[\""Phone\""]",4928.13,"{\""loyalty\"": \""7%\""}",34256,0,"""Africa""" +2023-01-18,30112,4965,"[\""Laptop\"", \""Monitor\""]",2654.34,{},274375,1,"""Africa""" +2024-04-29,30113,7101,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4038.18,"{\""loyalty\"": \""16%\""}",13482,0,"""Asia""" +2024-03-24,30114,2798,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3097.13,{},204901,0,"""Asia""" +2024-12-05,30115,3004,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2691.8,"{\""loyalty\"": \""15%\""}",6885,1,"""North America""" +2023-05-05,30116,9506,"[\""Headphones\"", \""Monitor\""]",681.54,"{\"": \""18%\""}",258900,1,"""South America""" +2023-02-05,30117,3209,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4317.07,{},246582,1,"""Europe""" +2023-05-15,30118,7837,"[\""Headphones\"", \""Phone\""]",3882.67,"{\""promo\"": \""28%\""}",252037,0,"""Europe""" +2024-05-24,30119,5391,"[\""Phone\"", \""Monitor\"", \""Charger\""]",193.18,{},33819,0,"""North America""" +2023-10-26,30120,2210,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",651.15,{},2526,1,"""North America""" +2023-04-26,30121,335,"[\""Tablet\"", \""Keyboard\""]",658.17,"{\""loyalty\"": \""17%\""}",257427,1,"""Asia""" +2024-12-02,30122,2604,"[\""Tablet\"", \""Wireless Mouse\""]",4052.8,{},114309,0,"""Asia""" +2023-06-04,30123,6057,"[\""Charger\"", \""Phone\""]",183.0,"{\"": \""14%\""}",130995,1,"""Asia""" +2023-01-21,30124,7072,"[\""Keyboard\"", \""Laptop\""]",4791.18,{},285629,1,"""North America""" +2023-04-26,30125,2613,"[\""Charger\""]",4434.18,"{\"": \""7%\""}",6015,0,"""Africa""" +2023-02-23,30126,997,"[\""Phone\"", \""Laptop\""]",4794.27,{},100968,1,"""Europe""" +2023-03-20,30127,9625,"[\""Wireless Mouse\""]",954.48,{},161113,1,"""Africa""" +2023-07-28,30128,6890,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4756.83,{},193125,1,"""Africa""" +2024-12-19,30129,3212,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3425.69,{},110064,0,"""Asia""" +2024-12-30,30130,1516,"[\""Monitor\"", \""Keyboard\""]",3681.8,"{\""promo\"": \""16%\""}",11557,0,"""Africa""" +2023-01-02,30131,6681,"[\""Charger\""]",2485.34,{},254296,0,"""Europe""" +2024-09-15,30132,2885,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4391.49,"{\"": \""29%\""}",244610,1,"""Europe""" +2024-06-15,30133,8378,"[\""Headphones\"", \""Tablet\""]",823.14,"{\""loyalty\"": \""10%\""}",211051,1,"""Africa""" +2023-09-08,30134,3847,"[\""Tablet\""]",2721.79,{},17145,0,"""Europe""" +2023-09-02,30135,1335,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2168.78,"{\""promo\"": \""20%\""}",207424,1,"""North America""" +2023-08-16,30136,5392,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2481.9,"{\""loyalty\"": \""20%\""}",53563,1,"""Europe""" +2024-07-22,30137,1168,"[\""Monitor\"", \""Charger\""]",1152.79,"{\""seasonal\"": \""5%\""}",12007,0,"""Africa""" +2023-04-12,30138,1894,"[\""Phone\"", \""Charger\""]",2776.62,"{\""loyalty\"": \""27%\""}",148034,0,"""Asia""" +2023-01-14,30139,525,"[\""Monitor\"", \""Laptop\""]",90.67,{},264008,0,"""South America""" +2024-07-15,30140,3090,"[\""Charger\""]",2213.21,{},232059,0,"""Asia""" +2023-02-05,30141,3316,"[\""Monitor\""]",2460.63,{},159116,0,"""Africa""" +2023-06-11,30142,2336,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3638.7,{},291789,0,"""North America""" +2024-01-03,30143,3364,"[\""Charger\"", \""Headphones\""]",2702.86,{},219131,0,"""Africa""" +2024-04-04,30144,7907,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",515.35,"{\""promo\"": \""23%\""}",73307,1,"""North America""" +2024-03-08,30145,1466,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2037.37,"{\""seasonal\"": \""7%\""}",174445,0,"""Africa""" +2023-12-15,30146,3216,"[\""Headphones\""]",2993.26,{},25965,1,"""Africa""" +2023-04-04,30147,4057,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3561.94,{},136444,0,"""Africa""" +2024-01-09,30148,176,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3564.16,{},98352,1,"""Africa""" +2024-03-07,30149,2073,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4315.32,{},99361,0,"""Europe""" +2023-07-25,30150,4210,"[\""Keyboard\"", \""Tablet\""]",151.02,"{\""loyalty\"": \""29%\""}",37506,1,"""Europe""" +2024-01-10,30151,6392,"[\""Keyboard\"", \""Tablet\""]",757.7,{},26641,1,"""North America""" +2023-02-15,30152,7498,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",827.29,{},235261,0,"""Asia""" +2023-02-16,30153,5842,"[\""Laptop\""]",2991.26,"{\"": \""26%\""}",241845,0,"""North America""" +2023-04-19,30154,3896,"[\""Keyboard\""]",460.54,{},63179,0,"""South America""" +2024-02-28,30155,165,"[\""Wireless Mouse\""]",777.86,"{\""promo\"": \""10%\""}",102493,0,"""Africa""" +2023-03-23,30156,6586,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4038.47,"{\""seasonal\"": \""29%\""}",22001,1,"""North America""" +2023-04-15,30157,6845,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3552.23,{},202187,1,"""North America""" +2023-09-18,30158,3978,"[\""Laptop\""]",3640.67,{},9707,1,"""Africa""" +2024-11-19,30159,1294,"[\""Keyboard\"", \""Wireless Mouse\""]",4560.62,"{\""promo\"": \""14%\""}",45217,0,"""Europe""" +2023-01-17,30160,8617,"[\""Tablet\"", \""Keyboard\""]",3767.44,"{\"": \""16%\""}",83061,0,"""Africa""" +2023-08-17,30161,3752,"[\""Tablet\""]",903.04,"{\""seasonal\"": \""19%\""}",247723,1,"""North America""" +2024-02-24,30162,1295,"[\""Monitor\""]",4774.88,"{\"": \""18%\""}",176935,1,"""Europe""" +2024-04-29,30163,8427,"[\""Tablet\""]",2405.7,"{\""promo\"": \""17%\""}",9810,1,"""North America""" +2024-04-06,30164,5022,"[\""Tablet\"", \""Phone\""]",513.3,{},170233,1,"""South America""" +2024-07-23,30165,4367,"[\""Monitor\""]",4754.93,"{\""loyalty\"": \""19%\""}",69262,0,"""South America""" +2024-07-06,30166,7716,"[\""Headphones\"", \""Tablet\""]",3099.78,"{\""loyalty\"": \""7%\""}",253236,0,"""Asia""" +2024-01-12,30167,1937,"[\""Headphones\""]",3683.48,"{\"": \""20%\""}",73936,1,"""Asia""" +2024-07-22,30168,2748,"[\""Laptop\"", \""Phone\""]",2391.8,{},270348,1,"""Africa""" +2024-03-22,30169,9651,"[\""Phone\"", \""Keyboard\""]",3080.57,{},138038,0,"""Africa""" +2023-10-08,30170,5905,"[\""Headphones\""]",3411.08,{},136800,0,"""Africa""" +2023-09-08,30171,6976,"[\""Tablet\""]",3088.17,"{\"": \""16%\""}",35328,1,"""Europe""" +2024-02-12,30172,1485,"[\""Charger\"", \""Laptop\""]",4150.67,{},70097,1,"""North America""" +2024-08-12,30173,9193,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4808.44,"{\""seasonal\"": \""15%\""}",224563,0,"""Europe""" +2023-12-02,30174,5427,"[\""Keyboard\"", \""Headphones\""]",4806.26,{},128970,1,"""Europe""" +2024-03-25,30175,7689,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2951.58,"{\""seasonal\"": \""10%\""}",298867,0,"""South America""" +2023-09-09,30176,2054,"[\""Charger\""]",3236.68,"{\""promo\"": \""7%\""}",190983,0,"""South America""" +2024-07-13,30177,1877,"[\""Laptop\"", \""Headphones\""]",1930.53,"{\"": \""21%\""}",107248,1,"""North America""" +2023-07-11,30178,4086,"[\""Laptop\"", \""Wireless Mouse\""]",2417.18,"{\""promo\"": \""25%\""}",8659,1,"""Europe""" +2023-11-04,30179,5690,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2454.47,"{\""seasonal\"": \""18%\""}",194402,1,"""Asia""" +2024-03-04,30180,218,"[\""Phone\"", \""Charger\""]",3359.29,{},269228,0,"""South America""" +2023-11-11,30181,4621,"[\""Keyboard\"", \""Laptop\""]",1551.26,{},262721,0,"""North America""" +2023-07-18,30182,659,"[\""Tablet\""]",2866.22,{},28974,1,"""South America""" +2023-08-08,30183,9074,"[\""Laptop\""]",2322.73,"{\""promo\"": \""9%\""}",80297,0,"""South America""" +2024-05-03,30184,3509,"[\""Tablet\"", \""Headphones\""]",4656.66,"{\""promo\"": \""15%\""}",82047,0,"""Europe""" +2023-02-08,30185,1709,"[\""Charger\"", \""Wireless Mouse\""]",1579.46,{},82740,0,"""Africa""" +2024-05-28,30186,8121,"[\""Laptop\""]",650.99,{},98890,1,"""Europe""" +2023-09-06,30187,2414,"[\""Tablet\"", \""Wireless Mouse\""]",1671.55,{},146600,1,"""North America""" +2023-08-09,30188,645,"[\""Tablet\""]",3079.09,"{\""promo\"": \""9%\""}",240707,1,"""Asia""" +2024-02-02,30189,1505,"[\""Headphones\""]",4813.08,{},118025,1,"""North America""" +2023-12-21,30190,9206,"[\""Keyboard\"", \""Headphones\""]",3136.7,"{\"": \""10%\""}",275661,0,"""Africa""" +2023-08-13,30191,6198,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3287.47,{},69850,0,"""North America""" +2023-02-07,30192,2119,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4944.03,"{\""promo\"": \""16%\""}",116966,0,"""Europe""" +2024-05-04,30193,1448,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3602.78,"{\""seasonal\"": \""23%\""}",242364,0,"""North America""" +2023-12-29,30194,7569,"[\""Tablet\""]",4796.92,"{\""loyalty\"": \""6%\""}",173766,0,"""South America""" +2023-10-08,30195,8889,"[\""Keyboard\""]",177.92,{},266384,0,"""South America""" +2023-01-20,30196,7089,"[\""Tablet\""]",4128.4,"{\""loyalty\"": \""22%\""}",77704,0,"""North America""" +2024-06-19,30197,2253,"[\""Headphones\""]",2406.85,{},117732,1,"""North America""" +2024-02-11,30198,2792,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2903.35,"{\""loyalty\"": \""30%\""}",88426,0,"""Africa""" +2024-02-26,30199,3032,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1519.08,{},100102,0,"""North America""" +2024-09-18,30200,1444,"[\""Monitor\"", \""Phone\""]",3734.19,"{\""seasonal\"": \""11%\""}",128047,0,"""South America""" +2023-07-01,30201,6164,"[\""Charger\""]",3335.85,"{\""loyalty\"": \""24%\""}",57817,0,"""South America""" +2024-05-03,30202,6099,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",782.54,{},95527,1,"""North America""" +2024-03-09,30203,2141,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1569.1,"{\""seasonal\"": \""12%\""}",262263,1,"""South America""" +2023-10-01,30204,5064,"[\""Wireless Mouse\""]",3729.58,{},148854,0,"""Europe""" +2024-09-14,30205,5762,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4704.41,{},258958,0,"""Africa""" +2023-09-25,30206,8001,"[\""Phone\""]",102.9,"{\""promo\"": \""22%\""}",109706,0,"""North America""" +2023-12-06,30207,4533,"[\""Charger\"", \""Laptop\""]",4058.02,{},239819,0,"""Europe""" +2024-12-21,30208,9319,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4088.45,{},145757,0,"""Africa""" +2024-12-07,30209,6230,"[\""Tablet\""]",3649.7,"{\""promo\"": \""26%\""}",86607,1,"""North America""" +2023-10-26,30210,9113,"[\""Keyboard\"", \""Laptop\""]",1593.77,{},38758,0,"""Asia""" +2024-11-06,30211,184,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",780.4,"{\""seasonal\"": \""5%\""}",175299,0,"""South America""" +2023-09-15,30212,9307,"[\""Charger\"", \""Monitor\""]",3051.03,"{\""promo\"": \""18%\""}",228864,1,"""South America""" +2024-08-31,30213,4003,"[\""Tablet\"", \""Charger\""]",3500.82,"{\""loyalty\"": \""13%\""}",86912,0,"""Africa""" +2023-10-20,30214,6043,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",593.34,{},205071,1,"""Europe""" +2024-04-02,30215,5836,"[\""Keyboard\"", \""Laptop\""]",3940.2,{},59240,0,"""North America""" +2023-06-25,30216,9189,"[\""Phone\""]",4298.97,{},176678,0,"""Europe""" +2024-05-23,30217,6622,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",534.52,{},24722,0,"""North America""" +2024-11-26,30218,2025,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1394.06,{},222645,1,"""Asia""" +2024-11-05,30219,8341,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4917.29,"{\"": \""11%\""}",168657,1,"""Asia""" +2023-04-06,30220,6152,"[\""Laptop\""]",4892.24,"{\""promo\"": \""5%\""}",256433,0,"""Europe""" +2024-05-10,30221,9313,"[\""Phone\""]",2969.01,"{\""loyalty\"": \""5%\""}",199649,0,"""Africa""" +2024-10-08,30222,6502,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4361.54,{},59421,0,"""Europe""" +2024-04-06,30223,5045,"[\""Monitor\"", \""Wireless Mouse\""]",1714.06,"{\""promo\"": \""21%\""}",207894,1,"""Africa""" +2024-10-05,30224,7744,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1014.3,"{\""seasonal\"": \""30%\""}",23733,1,"""South America""" +2024-07-17,30225,1106,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2512.62,{},110126,0,"""Africa""" +2023-03-08,30226,560,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3815.78,{},226196,0,"""Europe""" +2023-02-01,30227,3408,"[\""Phone\""]",1447.48,{},46007,0,"""Asia""" +2024-01-05,30228,1186,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4426.04,"{\""loyalty\"": \""14%\""}",250985,1,"""South America""" +2023-03-01,30229,3109,"[\""Keyboard\"", \""Monitor\""]",2761.16,"{\"": \""21%\""}",191541,0,"""Europe""" +2023-06-01,30230,7675,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4131.62,{},161801,1,"""North America""" +2023-04-18,30231,5322,"[\""Wireless Mouse\"", \""Phone\""]",2103.75,"{\""seasonal\"": \""16%\""}",225746,0,"""Africa""" +2023-10-24,30232,8821,"[\""Laptop\""]",1251.16,"{\""promo\"": \""18%\""}",11358,1,"""Africa""" +2024-05-17,30233,1797,"[\""Keyboard\"", \""Charger\""]",3057.36,{},86422,0,"""South America""" +2023-08-24,30234,9189,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1268.5,{},4268,0,"""Africa""" +2024-11-09,30235,9119,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",547.28,{},141358,0,"""North America""" +2024-07-26,30236,3258,"[\""Laptop\""]",565.03,{},195968,1,"""Europe""" +2023-07-29,30237,4241,"[\""Charger\"", \""Monitor\""]",566.1,"{\""promo\"": \""25%\""}",215239,1,"""Africa""" +2023-07-21,30238,9255,"[\""Phone\"", \""Charger\""]",248.46,{},248123,0,"""Asia""" +2024-12-11,30239,4390,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",563.31,{},101984,1,"""North America""" +2023-07-22,30240,235,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1294.93,{},222235,1,"""South America""" +2024-05-21,30241,3254,"[\""Tablet\"", \""Keyboard\""]",1206.88,"{\"": \""27%\""}",43967,0,"""Africa""" +2024-01-15,30242,3526,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1422.04,{},106559,0,"""Africa""" +2023-09-05,30243,4374,"[\""Keyboard\""]",924.69,"{\""seasonal\"": \""19%\""}",31551,1,"""South America""" +2024-06-13,30244,7039,"[\""Monitor\"", \""Headphones\""]",2276.62,{},13066,1,"""South America""" +2024-01-31,30245,8653,"[\""Charger\""]",85.0,"{\""seasonal\"": \""15%\""}",37094,1,"""Asia""" +2024-10-20,30246,436,"[\""Headphones\"", \""Phone\""]",3156.43,"{\""loyalty\"": \""10%\""}",5636,1,"""Asia""" +2024-05-03,30247,4717,"[\""Charger\"", \""Headphones\""]",3832.82,{},137921,1,"""Africa""" +2024-10-06,30248,4873,"[\""Headphones\""]",3407.62,{},157020,0,"""Africa""" +2024-07-08,30249,6259,"[\""Monitor\""]",4552.12,"{\""promo\"": \""30%\""}",221167,1,"""Europe""" +2023-03-29,30250,6975,"[\""Keyboard\"", \""Headphones\""]",2292.42,"{\""seasonal\"": \""8%\""}",45223,1,"""Africa""" +2024-01-01,30251,4846,"[\""Laptop\""]",3784.41,"{\""promo\"": \""13%\""}",235387,1,"""North America""" +2024-06-30,30252,8804,"[\""Headphones\""]",4150.98,"{\""loyalty\"": \""15%\""}",75757,1,"""South America""" +2024-10-17,30253,3519,"[\""Tablet\""]",3831.48,{},94162,1,"""Africa""" +2023-01-20,30254,1016,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1120.67,"{\""loyalty\"": \""7%\""}",199442,0,"""South America""" +2024-05-11,30255,4424,"[\""Monitor\""]",4522.0,{},13167,0,"""South America""" +2024-07-12,30256,6134,"[\""Keyboard\"", \""Phone\""]",2732.15,{},6003,1,"""Asia""" +2024-09-28,30257,9067,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1671.98,{},215927,0,"""Africa""" +2024-01-25,30258,9103,"[\""Monitor\""]",326.56,{},58527,1,"""North America""" +2023-11-17,30259,8431,"[\""Tablet\""]",4114.42,"{\""loyalty\"": \""18%\""}",39574,0,"""Europe""" +2024-06-28,30260,4659,"[\""Wireless Mouse\""]",1952.83,"{\""loyalty\"": \""16%\""}",73194,0,"""Asia""" +2024-05-13,30261,2461,"[\""Headphones\"", \""Charger\""]",3460.8,{},226697,0,"""Africa""" +2023-04-15,30262,1179,"[\""Headphones\"", \""Phone\""]",1204.22,{},211190,0,"""Africa""" +2023-01-18,30263,5650,"[\""Wireless Mouse\"", \""Charger\""]",562.99,"{\"": \""18%\""}",159814,0,"""North America""" +2024-04-27,30264,6878,"[\""Phone\""]",303.11,"{\""promo\"": \""7%\""}",30544,0,"""Africa""" +2024-04-01,30265,4590,"[\""Headphones\"", \""Charger\""]",2340.66,"{\"": \""9%\""}",65200,0,"""South America""" +2023-04-01,30266,7829,"[\""Wireless Mouse\"", \""Charger\""]",677.37,{},187771,0,"""South America""" +2024-01-20,30267,5096,"[\""Laptop\""]",1247.71,{},131131,0,"""Asia""" +2023-02-25,30268,1837,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3984.33,{},236584,0,"""South America""" +2024-11-07,30269,9098,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3286.91,"{\""loyalty\"": \""15%\""}",117606,0,"""North America""" +2023-03-08,30270,44,"[\""Monitor\""]",3398.39,{},148640,1,"""Africa""" +2023-04-14,30271,432,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1760.87,{},206731,0,"""Asia""" +2023-08-19,30272,5265,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",668.02,"{\""loyalty\"": \""22%\""}",76895,0,"""Asia""" +2023-05-12,30273,2997,"[\""Keyboard\""]",2497.61,"{\""seasonal\"": \""23%\""}",191761,0,"""North America""" +2023-07-31,30274,3157,"[\""Laptop\""]",4102.69,{},122627,1,"""Asia""" +2024-03-09,30275,9631,"[\""Tablet\""]",3611.04,"{\""promo\"": \""25%\""}",122998,1,"""South America""" +2023-01-06,30276,9549,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",465.05,{},28681,0,"""South America""" +2024-09-20,30277,5414,"[\""Monitor\""]",3051.79,{},221529,0,"""Europe""" +2024-09-29,30278,9312,"[\""Headphones\"", \""Wireless Mouse\""]",3037.7,{},160733,0,"""Asia""" +2024-05-11,30279,8679,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1060.32,{},169702,1,"""South America""" +2023-07-03,30280,4760,"[\""Phone\""]",3608.62,{},141849,0,"""South America""" +2024-04-16,30281,3300,"[\""Monitor\""]",3679.38,"{\""promo\"": \""17%\""}",172051,0,"""South America""" +2024-07-17,30282,7877,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4472.28,{},107662,0,"""Africa""" +2023-12-04,30283,979,"[\""Charger\""]",1415.16,{},51289,1,"""Europe""" +2024-01-21,30284,1015,"[\""Charger\""]",3633.62,{},42553,0,"""Asia""" +2023-07-14,30285,3474,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",787.53,{},42140,0,"""South America""" +2023-11-17,30286,7998,"[\""Charger\""]",1611.89,{},101666,1,"""North America""" +2024-08-12,30287,3751,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3350.64,"{\""seasonal\"": \""30%\""}",85431,0,"""Europe""" +2023-09-23,30288,8135,"[\""Wireless Mouse\""]",154.58,{},27042,1,"""Africa""" +2024-03-24,30289,2763,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1945.76,"{\"": \""13%\""}",137909,1,"""Africa""" +2024-07-21,30290,9052,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3465.22,"{\""seasonal\"": \""18%\""}",208079,1,"""Asia""" +2024-09-24,30291,1955,"[\""Laptop\"", \""Charger\""]",2593.09,{},203272,1,"""Asia""" +2024-03-26,30292,5705,"[\""Tablet\"", \""Wireless Mouse\""]",2676.9,{},35378,0,"""North America""" +2024-02-07,30293,448,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4645.32,{},213276,0,"""Africa""" +2024-07-14,30294,9307,"[\""Keyboard\"", \""Wireless Mouse\""]",858.26,{},258472,0,"""Africa""" +2023-07-15,30295,7073,"[\""Keyboard\""]",1049.88,"{\"": \""26%\""}",6366,1,"""South America""" +2024-03-26,30296,21,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4583.17,"{\""seasonal\"": \""22%\""}",174252,0,"""Asia""" +2024-05-02,30297,4088,"[\""Charger\"", \""Laptop\""]",157.28,{},252713,0,"""North America""" +2023-04-16,30298,7692,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",969.17,"{\""seasonal\"": \""25%\""}",60638,1,"""North America""" +2024-03-12,30299,7848,"[\""Tablet\""]",2322.35,"{\""seasonal\"": \""25%\""}",186868,0,"""Asia""" +2024-06-12,30300,9388,"[\""Monitor\""]",4284.31,"{\"": \""25%\""}",70283,1,"""Africa""" +2024-01-21,30301,2441,"[\""Headphones\""]",2921.8,"{\""seasonal\"": \""11%\""}",188706,1,"""Asia""" +2024-04-12,30302,3955,"[\""Wireless Mouse\""]",3225.11,"{\""loyalty\"": \""18%\""}",71507,0,"""South America""" +2023-08-08,30303,2169,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2459.48,"{\""seasonal\"": \""17%\""}",122940,1,"""Asia""" +2024-10-04,30304,1171,"[\""Tablet\"", \""Phone\""]",2147.82,"{\"": \""5%\""}",98898,1,"""Europe""" +2023-09-05,30305,7038,"[\""Monitor\""]",282.31,{},5715,0,"""North America""" +2023-10-01,30306,925,"[\""Charger\"", \""Laptop\""]",2928.11,{},219423,0,"""Europe""" +2024-10-11,30307,5399,"[\""Monitor\"", \""Phone\""]",3553.97,{},190323,1,"""North America""" +2023-04-03,30308,1210,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4512.69,{},109498,0,"""Europe""" +2024-05-07,30309,7203,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1463.44,"{\""loyalty\"": \""12%\""}",251645,1,"""Asia""" +2024-01-22,30310,4173,"[\""Charger\"", \""Headphones\""]",4905.79,"{\""seasonal\"": \""14%\""}",130972,0,"""Europe""" +2024-10-14,30311,2923,"[\""Charger\""]",507.52,"{\""loyalty\"": \""21%\""}",106639,0,"""Asia""" +2024-11-14,30312,7758,"[\""Wireless Mouse\""]",63.59,"{\""promo\"": \""6%\""}",29331,0,"""Asia""" +2023-01-21,30313,5255,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3143.18,"{\""seasonal\"": \""30%\""}",271994,0,"""South America""" +2023-02-28,30314,4426,"[\""Phone\"", \""Headphones\""]",3800.66,{},49310,0,"""Africa""" +2024-06-19,30315,1094,"[\""Monitor\"", \""Laptop\""]",1675.08,"{\""promo\"": \""22%\""}",122803,0,"""South America""" +2024-11-03,30316,6060,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1733.44,{},298844,1,"""Europe""" +2023-04-30,30317,60,"[\""Phone\"", \""Tablet\""]",4350.9,"{\"": \""18%\""}",299119,0,"""South America""" +2023-08-05,30318,6769,"[\""Tablet\""]",1364.82,{},85701,1,"""Asia""" +2024-05-23,30319,199,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1586.32,"{\"": \""14%\""}",138416,0,"""Asia""" +2023-01-04,30320,282,"[\""Wireless Mouse\""]",3954.1,"{\"": \""18%\""}",34381,0,"""Asia""" +2023-01-16,30321,6356,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2620.21,"{\""promo\"": \""20%\""}",133762,0,"""Asia""" +2024-07-01,30322,5353,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2524.06,"{\"": \""14%\""}",296813,1,"""Europe""" +2024-05-02,30323,1037,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1651.21,"{\""promo\"": \""15%\""}",127213,0,"""South America""" +2024-01-09,30324,7666,"[\""Charger\""]",2156.44,"{\""promo\"": \""12%\""}",99373,1,"""Asia""" +2024-09-16,30325,2746,"[\""Wireless Mouse\"", \""Monitor\""]",2770.34,"{\""loyalty\"": \""28%\""}",261558,1,"""North America""" +2023-12-19,30326,5533,"[\""Charger\"", \""Keyboard\""]",4839.93,"{\""promo\"": \""18%\""}",280984,0,"""Africa""" +2023-11-28,30327,9626,"[\""Charger\"", \""Keyboard\""]",4160.76,"{\""promo\"": \""15%\""}",262300,1,"""Europe""" +2023-09-17,30328,4098,"[\""Wireless Mouse\"", \""Charger\""]",3924.55,{},96513,1,"""Europe""" +2023-12-28,30329,4380,"[\""Keyboard\"", \""Wireless Mouse\""]",2001.61,"{\""seasonal\"": \""5%\""}",289008,0,"""North America""" +2024-10-01,30330,4497,"[\""Wireless Mouse\""]",2428.64,{},166652,0,"""Asia""" +2024-03-23,30331,2549,"[\""Wireless Mouse\"", \""Headphones\""]",757.43,{},10308,1,"""Europe""" +2023-09-04,30332,9753,"[\""Monitor\""]",1850.75,{},265056,1,"""South America""" +2023-03-08,30333,6639,"[\""Keyboard\""]",4680.92,{},269140,1,"""South America""" +2024-05-02,30334,819,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",832.01,{},75734,0,"""Africa""" +2023-08-22,30335,3021,"[\""Keyboard\""]",1822.26,{},108416,0,"""Africa""" +2024-06-20,30336,1949,"[\""Laptop\""]",324.82,{},57097,1,"""South America""" +2023-04-06,30337,922,"[\""Charger\""]",4228.99,{},238651,0,"""North America""" +2024-01-12,30338,2333,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3856.62,{},27437,1,"""North America""" +2024-10-26,30339,9664,"[\""Keyboard\"", \""Monitor\""]",4384.22,{},65631,1,"""North America""" +2023-06-06,30340,2166,"[\""Wireless Mouse\"", \""Laptop\""]",3031.47,"{\""seasonal\"": \""8%\""}",122743,0,"""South America""" +2024-03-04,30341,4493,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1657.1,{},126747,0,"""North America""" +2024-08-28,30342,2868,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2330.69,"{\"": \""30%\""}",137771,0,"""Europe""" +2024-01-26,30343,2579,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4155.67,{},262951,1,"""Africa""" +2023-06-13,30344,7080,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2702.39,{},28312,0,"""Africa""" +2024-01-19,30345,6069,"[\""Phone\""]",1148.79,"{\""seasonal\"": \""15%\""}",142384,1,"""Asia""" +2023-01-09,30346,3283,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4190.44,"{\""promo\"": \""7%\""}",127635,1,"""North America""" +2023-12-01,30347,2788,"[\""Laptop\""]",2325.01,"{\""seasonal\"": \""14%\""}",229795,0,"""Asia""" +2023-12-15,30348,9920,"[\""Wireless Mouse\""]",2719.4,{},260617,1,"""South America""" +2023-08-17,30349,4163,"[\""Monitor\"", \""Laptop\""]",1720.0,"{\"": \""23%\""}",109056,0,"""Europe""" +2024-07-12,30350,8409,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3571.7,"{\""seasonal\"": \""6%\""}",107461,1,"""North America""" +2024-07-21,30351,3365,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",994.09,{},53096,1,"""Asia""" +2023-08-02,30352,920,"[\""Phone\"", \""Headphones\""]",4683.85,"{\""seasonal\"": \""24%\""}",69994,0,"""Africa""" +2023-01-15,30353,8318,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1067.24,"{\"": \""18%\""}",83890,1,"""North America""" +2024-02-29,30354,5850,"[\""Charger\""]",4455.99,{},49836,0,"""Africa""" +2024-11-16,30355,8134,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4508.76,"{\""promo\"": \""13%\""}",261674,1,"""Europe""" +2023-04-13,30356,289,"[\""Tablet\""]",3159.7,{},230199,1,"""Africa""" +2023-05-11,30357,3023,"[\""Tablet\""]",4196.5,"{\""seasonal\"": \""28%\""}",281213,0,"""South America""" +2023-07-07,30358,2172,"[\""Laptop\""]",1315.55,"{\"": \""10%\""}",9017,1,"""North America""" +2024-05-24,30359,1357,"[\""Tablet\"", \""Headphones\""]",3257.89,{},159904,1,"""North America""" +2024-05-28,30360,3974,"[\""Wireless Mouse\"", \""Headphones\""]",1929.71,{},117539,1,"""Asia""" +2023-09-07,30361,6893,"[\""Charger\""]",2553.84,{},290578,0,"""North America""" +2023-06-05,30362,1906,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4326.19,"{\""seasonal\"": \""30%\""}",69798,1,"""South America""" +2023-01-12,30363,7033,"[\""Monitor\""]",3525.42,"{\""seasonal\"": \""22%\""}",153914,1,"""Europe""" +2023-03-28,30364,7945,"[\""Wireless Mouse\""]",4585.97,"{\""loyalty\"": \""5%\""}",293370,0,"""North America""" +2024-06-27,30365,3839,"[\""Laptop\""]",442.71,"{\""promo\"": \""20%\""}",145426,1,"""Europe""" +2023-07-22,30366,7737,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",51.29,{},59182,0,"""South America""" +2023-09-11,30367,2255,"[\""Charger\"", \""Tablet\""]",2844.73,"{\""seasonal\"": \""20%\""}",277427,0,"""South America""" +2023-06-07,30368,1327,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1241.5,"{\"": \""12%\""}",11857,0,"""Africa""" +2024-03-25,30369,5054,"[\""Charger\""]",2982.82,{},241213,1,"""North America""" +2024-08-31,30370,7198,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1745.58,"{\""loyalty\"": \""7%\""}",274670,1,"""South America""" +2024-05-12,30371,4267,"[\""Charger\""]",1644.1,"{\""promo\"": \""23%\""}",27748,0,"""Europe""" +2024-07-17,30372,6736,"[\""Phone\"", \""Charger\""]",4223.68,{},283459,0,"""North America""" +2024-01-07,30373,1425,"[\""Charger\"", \""Phone\""]",4320.36,{},59785,1,"""North America""" +2023-03-02,30374,6369,"[\""Charger\"", \""Tablet\""]",1816.85,"{\""promo\"": \""21%\""}",199836,0,"""South America""" +2024-10-05,30375,3217,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1737.03,"{\""loyalty\"": \""8%\""}",200758,1,"""Asia""" +2024-02-09,30376,8029,"[\""Wireless Mouse\""]",2720.15,{},17046,1,"""Europe""" +2024-07-07,30377,5536,"[\""Wireless Mouse\"", \""Keyboard\""]",2590.09,{},156796,0,"""Europe""" +2024-12-14,30378,6504,"[\""Monitor\"", \""Tablet\""]",2540.94,{},146496,0,"""Asia""" +2023-09-22,30379,9281,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1893.9,{},149175,0,"""North America""" +2024-12-13,30380,5271,"[\""Monitor\"", \""Phone\"", \""Charger\""]",784.78,{},154539,1,"""Asia""" +2024-04-16,30381,4196,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1937.47,"{\""loyalty\"": \""29%\""}",296174,0,"""Europe""" +2023-04-23,30382,7137,"[\""Phone\"", \""Laptop\""]",4383.18,"{\""promo\"": \""25%\""}",161878,0,"""Europe""" +2023-06-07,30383,5,"[\""Headphones\"", \""Keyboard\""]",650.2,"{\""promo\"": \""6%\""}",274413,1,"""North America""" +2024-04-30,30384,6619,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3221.87,"{\""promo\"": \""9%\""}",156508,0,"""South America""" +2024-01-05,30385,4311,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3688.57,{},197939,1,"""North America""" +2023-04-08,30386,1048,"[\""Laptop\"", \""Charger\""]",558.13,"{\""seasonal\"": \""10%\""}",211618,1,"""Asia""" +2023-02-11,30387,9360,"[\""Monitor\""]",1686.35,"{\""promo\"": \""16%\""}",114088,0,"""Asia""" +2023-02-24,30388,274,"[\""Keyboard\"", \""Phone\""]",4489.24,{},131623,0,"""North America""" +2023-08-27,30389,3760,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4839.78,"{\"": \""19%\""}",135058,0,"""Africa""" +2023-10-16,30390,6796,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4839.7,{},286342,1,"""North America""" +2023-03-06,30391,1230,"[\""Headphones\"", \""Wireless Mouse\""]",2745.27,"{\""promo\"": \""24%\""}",25795,1,"""South America""" +2023-05-24,30392,9011,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",644.48,{},278207,1,"""Europe""" +2023-12-16,30393,2307,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4302.05,"{\"": \""17%\""}",270591,1,"""Asia""" +2023-11-07,30394,4400,"[\""Tablet\""]",4515.87,{},51403,0,"""North America""" +2024-03-13,30395,3726,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1379.4,{},51312,0,"""Europe""" +2023-03-04,30396,8633,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1854.8,{},209715,1,"""North America""" +2024-09-28,30397,6697,"[\""Tablet\""]",4963.75,"{\""promo\"": \""9%\""}",249321,0,"""North America""" +2023-12-05,30398,7087,"[\""Tablet\"", \""Charger\""]",3877.78,{},275229,1,"""North America""" +2024-09-15,30399,5013,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4479.02,{},70861,1,"""Asia""" +2024-09-03,30400,194,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",215.06,"{\""promo\"": \""15%\""}",79839,0,"""North America""" +2024-02-12,30401,1200,"[\""Phone\""]",3602.55,{},125045,1,"""South America""" +2024-05-07,30402,4747,"[\""Charger\"", \""Laptop\""]",4828.9,{},86266,0,"""Africa""" +2023-07-30,30403,6040,"[\""Tablet\"", \""Monitor\""]",1689.54,{},101659,1,"""Africa""" +2024-11-09,30404,4179,"[\""Monitor\""]",2178.78,"{\"": \""11%\""}",244524,1,"""Africa""" +2024-09-30,30405,3223,"[\""Monitor\"", \""Charger\""]",3282.85,"{\""promo\"": \""11%\""}",94353,1,"""South America""" +2024-08-19,30406,6512,"[\""Monitor\"", \""Laptop\""]",385.65,"{\"": \""26%\""}",206822,0,"""Europe""" +2024-03-22,30407,436,"[\""Monitor\""]",2687.2,{},3437,1,"""Africa""" +2024-10-03,30408,4910,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3274.15,"{\""loyalty\"": \""7%\""}",47314,1,"""South America""" +2023-01-23,30409,2913,"[\""Wireless Mouse\"", \""Headphones\""]",1672.09,"{\""seasonal\"": \""12%\""}",100112,0,"""Africa""" +2023-07-26,30410,1295,"[\""Keyboard\"", \""Tablet\""]",2790.62,{},296338,1,"""Africa""" +2024-03-03,30411,9341,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1174.36,"{\""seasonal\"": \""8%\""}",90375,1,"""Africa""" +2024-10-10,30412,6870,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3448.59,{},54558,1,"""South America""" +2024-01-09,30413,6386,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2252.55,{},162808,1,"""Europe""" +2024-10-10,30414,2240,"[\""Laptop\""]",4186.99,{},110376,0,"""Europe""" +2023-10-13,30415,4369,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3002.71,"{\""seasonal\"": \""28%\""}",5535,1,"""Europe""" +2024-07-14,30416,5512,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",897.75,{},111604,0,"""North America""" +2024-01-13,30417,7550,"[\""Monitor\"", \""Laptop\""]",4358.74,"{\""loyalty\"": \""13%\""}",25179,0,"""Europe""" +2024-02-26,30418,575,"[\""Laptop\"", \""Charger\""]",3044.69,"{\""promo\"": \""11%\""}",50858,0,"""Africa""" +2023-06-27,30419,922,"[\""Wireless Mouse\"", \""Laptop\""]",478.75,"{\""promo\"": \""6%\""}",74312,1,"""Europe""" +2023-04-30,30420,8087,"[\""Headphones\"", \""Keyboard\""]",2039.35,{},63557,1,"""Europe""" +2024-11-12,30421,8501,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4676.8,{},232052,1,"""Africa""" +2024-06-15,30422,5588,"[\""Phone\"", \""Keyboard\""]",3774.83,"{\""promo\"": \""19%\""}",58259,1,"""North America""" +2024-05-11,30423,5636,"[\""Phone\""]",3758.28,{},167180,0,"""Europe""" +2023-12-18,30424,1718,"[\""Charger\"", \""Monitor\""]",2258.63,"{\""loyalty\"": \""19%\""}",78519,0,"""Europe""" +2023-01-16,30425,7763,"[\""Charger\"", \""Headphones\""]",3256.03,"{\"": \""9%\""}",169775,0,"""North America""" +2023-05-14,30426,8601,"[\""Headphones\"", \""Monitor\""]",1817.09,{},22626,1,"""South America""" +2024-10-15,30427,836,"[\""Keyboard\""]",2250.41,"{\"": \""15%\""}",216104,0,"""South America""" +2024-11-04,30428,1929,"[\""Monitor\""]",3765.24,{},272228,1,"""Africa""" +2024-09-17,30429,1914,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1336.73,"{\""loyalty\"": \""29%\""}",227509,0,"""Asia""" +2023-09-08,30430,7753,"[\""Tablet\""]",3771.27,"{\""promo\"": \""12%\""}",258224,1,"""Europe""" +2023-10-02,30431,6880,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2874.61,"{\""seasonal\"": \""22%\""}",115051,0,"""Africa""" +2023-02-03,30432,1420,"[\""Keyboard\""]",4180.91,{},66077,1,"""South America""" +2023-10-16,30433,8562,"[\""Headphones\""]",293.12,"{\"": \""7%\""}",186339,0,"""North America""" +2024-06-10,30434,9575,"[\""Wireless Mouse\""]",2705.0,{},280621,0,"""Asia""" +2024-09-03,30435,4647,"[\""Keyboard\"", \""Headphones\""]",2190.94,{},24197,0,"""Europe""" +2023-06-21,30436,7057,"[\""Keyboard\""]",1719.89,{},149023,0,"""Europe""" +2024-07-13,30437,594,"[\""Headphones\""]",890.96,"{\""loyalty\"": \""12%\""}",30157,1,"""Africa""" +2023-05-23,30438,5022,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2750.94,{},75761,0,"""Asia""" +2023-04-06,30439,314,"[\""Wireless Mouse\""]",4194.81,"{\"": \""29%\""}",31091,1,"""Europe""" +2024-05-17,30440,3641,"[\""Wireless Mouse\"", \""Phone\""]",311.35,{},192847,1,"""South America""" +2024-07-29,30441,4530,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4737.7,"{\""promo\"": \""21%\""}",120491,0,"""North America""" +2024-11-24,30442,834,"[\""Monitor\"", \""Wireless Mouse\""]",1571.62,{},84577,1,"""Europe""" +2024-05-16,30443,1730,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",579.01,{},208851,0,"""Africa""" +2024-06-18,30444,6597,"[\""Laptop\""]",3125.65,"{\""promo\"": \""20%\""}",134836,0,"""Europe""" +2024-07-10,30445,3541,"[\""Laptop\""]",452.73,{},26492,0,"""Europe""" +2023-12-20,30446,5384,"[\""Monitor\""]",1606.75,"{\"": \""7%\""}",80907,1,"""South America""" +2023-07-14,30447,7362,"[\""Keyboard\"", \""Headphones\""]",2236.61,"{\"": \""27%\""}",141303,1,"""Asia""" +2024-03-07,30448,2297,"[\""Phone\""]",2011.56,"{\""promo\"": \""13%\""}",247510,1,"""South America""" +2023-09-03,30449,4319,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1256.69,{},13354,1,"""Africa""" +2023-07-10,30450,6170,"[\""Headphones\"", \""Wireless Mouse\""]",4987.28,{},53829,1,"""South America""" +2023-02-14,30451,8633,"[\""Monitor\""]",131.65,{},77005,1,"""Europe""" +2024-06-18,30452,929,"[\""Laptop\"", \""Keyboard\""]",2781.49,"{\""loyalty\"": \""28%\""}",78448,1,"""South America""" +2024-07-26,30453,4562,"[\""Laptop\"", \""Headphones\""]",2104.86,{},264310,0,"""Europe""" +2023-07-11,30454,4759,"[\""Wireless Mouse\"", \""Phone\""]",677.9,"{\""loyalty\"": \""5%\""}",27941,0,"""Asia""" +2024-03-11,30455,8779,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3586.13,{},196501,1,"""Africa""" +2023-02-13,30456,8873,"[\""Wireless Mouse\"", \""Headphones\""]",2976.87,"{\""promo\"": \""18%\""}",32344,1,"""Europe""" +2024-06-10,30457,511,"[\""Tablet\"", \""Headphones\""]",2483.97,{},171528,1,"""Africa""" +2024-10-30,30458,5261,"[\""Charger\""]",1368.87,{},219672,0,"""North America""" +2024-06-23,30459,5396,"[\""Wireless Mouse\"", \""Phone\""]",3772.89,{},287966,0,"""Asia""" +2024-10-28,30460,3253,"[\""Keyboard\""]",1708.98,"{\""loyalty\"": \""17%\""}",173317,1,"""Africa""" +2023-11-21,30461,7238,"[\""Tablet\""]",430.18,"{\""promo\"": \""28%\""}",195562,1,"""North America""" +2024-10-30,30462,3754,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4735.26,"{\"": \""22%\""}",82264,1,"""Europe""" +2023-11-02,30463,7476,"[\""Charger\"", \""Monitor\""]",2860.06,"{\""seasonal\"": \""30%\""}",258229,0,"""Asia""" +2024-09-08,30464,7369,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2204.88,{},263490,0,"""Asia""" +2023-10-08,30465,3339,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2808.11,"{\""loyalty\"": \""5%\""}",73124,0,"""Asia""" +2023-02-25,30466,810,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1159.6,{},122441,0,"""Europe""" +2023-09-17,30467,3298,"[\""Headphones\"", \""Tablet\""]",1265.97,{},187584,1,"""South America""" +2023-09-16,30468,7810,"[\""Phone\"", \""Charger\""]",1695.54,{},276886,1,"""Europe""" +2023-10-05,30469,9921,"[\""Laptop\""]",3989.99,"{\""seasonal\"": \""11%\""}",189963,1,"""Europe""" +2023-03-05,30470,7455,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",978.27,{},76827,1,"""North America""" +2024-12-17,30471,2919,"[\""Laptop\""]",2790.38,"{\""promo\"": \""24%\""}",142279,0,"""Asia""" +2023-12-24,30472,7738,"[\""Tablet\"", \""Phone\""]",167.36,"{\""loyalty\"": \""19%\""}",87163,1,"""Africa""" +2023-07-01,30473,4728,"[\""Tablet\""]",167.51,{},120856,1,"""South America""" +2023-06-14,30474,120,"[\""Tablet\""]",4985.33,"{\""loyalty\"": \""14%\""}",183406,0,"""Europe""" +2024-04-21,30475,7735,"[\""Laptop\""]",653.2,"{\"": \""10%\""}",106637,0,"""North America""" +2023-01-02,30476,5739,"[\""Phone\"", \""Wireless Mouse\""]",1967.51,"{\""loyalty\"": \""7%\""}",185545,1,"""Asia""" +2023-06-18,30477,2478,"[\""Monitor\"", \""Phone\""]",1158.86,{},79730,0,"""South America""" +2024-09-23,30478,2996,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1322.23,"{\""loyalty\"": \""13%\""}",147333,0,"""Africa""" +2023-01-27,30479,7516,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1469.8,"{\""loyalty\"": \""11%\""}",174550,0,"""South America""" +2024-03-26,30480,5089,"[\""Phone\""]",3534.38,"{\""promo\"": \""29%\""}",133638,0,"""Europe""" +2024-11-21,30481,579,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4890.66,"{\"": \""11%\""}",81101,1,"""Asia""" +2023-09-18,30482,8380,"[\""Keyboard\"", \""Tablet\""]",3886.34,"{\"": \""12%\""}",227574,0,"""Europe""" +2024-04-09,30483,323,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3816.97,{},56260,0,"""Asia""" +2023-12-23,30484,7807,"[\""Laptop\""]",871.52,{},220702,1,"""Africa""" +2024-10-08,30485,2735,"[\""Monitor\""]",2422.76,{},54085,1,"""Asia""" +2023-07-14,30486,3517,"[\""Laptop\"", \""Keyboard\""]",73.19,"{\""promo\"": \""19%\""}",31760,0,"""South America""" +2023-05-05,30487,9359,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2813.77,{},288212,1,"""Asia""" +2024-04-22,30488,170,"[\""Keyboard\"", \""Monitor\""]",681.79,{},119631,1,"""Africa""" +2023-05-27,30489,1578,"[\""Phone\""]",2957.52,{},23775,0,"""South America""" +2023-02-17,30490,563,"[\""Phone\""]",4394.37,{},233995,0,"""North America""" +2024-07-27,30491,946,"[\""Charger\""]",1997.04,"{\""promo\"": \""25%\""}",70737,0,"""Europe""" +2023-03-02,30492,6655,"[\""Headphones\"", \""Tablet\""]",1762.54,"{\""promo\"": \""15%\""}",130977,0,"""Europe""" +2023-12-14,30493,5836,"[\""Monitor\""]",1258.9,"{\"": \""12%\""}",259143,1,"""Asia""" +2023-01-02,30494,4204,"[\""Charger\""]",2781.67,"{\""promo\"": \""12%\""}",70609,0,"""Europe""" +2023-12-05,30495,2305,"[\""Monitor\"", \""Tablet\""]",2334.0,{},156310,0,"""Europe""" +2023-10-01,30496,6851,"[\""Phone\""]",521.42,"{\""loyalty\"": \""25%\""}",234982,1,"""North America""" +2023-11-08,30497,3590,"[\""Monitor\"", \""Laptop\""]",2001.23,"{\""loyalty\"": \""5%\""}",1851,0,"""North America""" +2023-07-25,30498,5248,"[\""Tablet\"", \""Phone\""]",860.52,"{\""promo\"": \""18%\""}",11832,1,"""Europe""" +2024-05-26,30499,7012,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3762.43,{},241452,0,"""Africa""" +2024-05-19,30500,9661,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1098.96,"{\""seasonal\"": \""11%\""}",291761,0,"""Africa""" +2023-07-16,30501,5252,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",973.81,{},214987,0,"""Europe""" +2023-01-24,30502,2591,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2821.59,"{\"": \""19%\""}",292425,1,"""North America""" +2023-11-22,30503,1737,"[\""Tablet\""]",4126.05,"{\""loyalty\"": \""22%\""}",1662,1,"""Europe""" +2023-04-15,30504,5592,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2732.43,{},41998,1,"""Africa""" +2023-02-11,30505,5163,"[\""Laptop\"", \""Monitor\""]",2711.02,"{\"": \""10%\""}",93137,0,"""North America""" +2023-10-23,30506,8729,"[\""Charger\""]",225.26,"{\"": \""12%\""}",142721,0,"""Africa""" +2024-11-01,30507,9415,"[\""Keyboard\"", \""Charger\""]",2924.2,"{\"": \""30%\""}",113432,0,"""Asia""" +2023-10-23,30508,552,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4820.83,{},48328,1,"""Europe""" +2024-09-15,30509,2366,"[\""Charger\"", \""Wireless Mouse\""]",4836.15,{},178208,1,"""Africa""" +2023-09-29,30510,4587,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2394.65,"{\"": \""5%\""}",233708,0,"""South America""" +2023-10-01,30511,988,"[\""Wireless Mouse\"", \""Phone\""]",828.34,{},249735,0,"""Africa""" +2024-01-08,30512,8014,"[\""Phone\""]",4601.19,{},9381,0,"""Africa""" +2023-01-03,30513,8031,"[\""Charger\""]",2464.19,{},28464,0,"""Europe""" +2024-07-29,30514,7692,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",72.2,{},289621,0,"""Europe""" +2024-12-11,30515,9573,"[\""Tablet\""]",1297.9,{},298770,1,"""North America""" +2023-05-22,30516,5506,"[\""Keyboard\""]",381.44,"{\""loyalty\"": \""27%\""}",200404,0,"""North America""" +2024-11-18,30517,7500,"[\""Charger\"", \""Monitor\""]",1082.24,{},139476,0,"""Europe""" +2024-11-28,30518,1781,"[\""Monitor\""]",395.52,{},275177,0,"""Asia""" +2023-01-01,30519,7220,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",628.59,{},120813,0,"""North America""" +2024-04-01,30520,4124,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3426.83,{},83437,1,"""Africa""" +2024-02-01,30521,4036,"[\""Monitor\""]",2024.57,{},235495,0,"""Africa""" +2023-05-15,30522,2395,"[\""Monitor\""]",836.35,"{\"": \""23%\""}",63344,1,"""North America""" +2024-09-27,30523,4315,"[\""Phone\"", \""Monitor\""]",4085.23,"{\""promo\"": \""19%\""}",97959,1,"""Europe""" +2023-10-28,30524,6010,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4866.24,{},122772,1,"""Asia""" +2023-01-13,30525,7762,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4565.66,{},64382,0,"""Africa""" +2023-04-17,30526,3381,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",868.63,"{\""loyalty\"": \""5%\""}",55683,0,"""Africa""" +2024-05-23,30527,587,"[\""Keyboard\""]",2288.59,{},133549,1,"""Asia""" +2024-02-01,30528,2483,"[\""Keyboard\"", \""Wireless Mouse\""]",1823.46,{},273470,0,"""South America""" +2023-06-02,30529,2989,"[\""Monitor\""]",2874.77,"{\""promo\"": \""14%\""}",155131,1,"""Asia""" +2023-04-29,30530,8586,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1535.27,"{\""loyalty\"": \""5%\""}",78844,0,"""Africa""" +2023-12-31,30531,1089,"[\""Wireless Mouse\"", \""Keyboard\""]",3367.03,"{\""loyalty\"": \""28%\""}",29444,0,"""Europe""" +2023-07-19,30532,4147,"[\""Laptop\"", \""Keyboard\""]",1829.36,{},190270,0,"""North America""" +2024-04-14,30533,915,"[\""Monitor\"", \""Headphones\""]",3201.42,"{\""loyalty\"": \""22%\""}",128365,1,"""South America""" +2023-10-05,30534,8725,"[\""Laptop\""]",274.31,{},184052,0,"""Africa""" +2023-12-03,30535,9170,"[\""Charger\""]",1287.4,"{\""seasonal\"": \""15%\""}",251755,0,"""North America""" +2023-03-19,30536,5521,"[\""Phone\""]",2376.25,{},250160,1,"""North America""" +2023-02-18,30537,5631,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4856.96,{},119425,0,"""Africa""" +2024-11-26,30538,6613,"[\""Laptop\""]",2799.93,{},194366,0,"""South America""" +2023-04-04,30539,4757,"[\""Keyboard\""]",907.45,"{\""loyalty\"": \""17%\""}",47111,0,"""Europe""" +2023-11-27,30540,5434,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3912.23,"{\""loyalty\"": \""14%\""}",27451,0,"""Europe""" +2024-12-09,30541,2792,"[\""Laptop\"", \""Keyboard\""]",697.91,{},207766,0,"""Europe""" +2024-08-14,30542,2081,"[\""Headphones\"", \""Monitor\""]",4859.75,"{\""seasonal\"": \""13%\""}",145283,1,"""South America""" +2023-07-31,30543,6708,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4698.2,{},189809,0,"""Asia""" +2023-10-11,30544,9975,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",785.98,{},143703,0,"""South America""" +2023-09-21,30545,8397,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1922.82,{},34871,0,"""Asia""" +2024-11-24,30546,9097,"[\""Charger\"", \""Keyboard\""]",2070.1,{},249209,1,"""Africa""" +2024-07-31,30547,124,"[\""Charger\""]",2640.49,"{\""seasonal\"": \""26%\""}",120578,0,"""North America""" +2024-12-02,30548,7704,"[\""Charger\"", \""Phone\""]",1638.25,{},20958,0,"""Asia""" +2024-06-18,30549,8939,"[\""Monitor\"", \""Charger\""]",1357.72,{},89758,1,"""South America""" +2024-02-25,30550,1589,"[\""Keyboard\""]",622.85,{},13930,1,"""North America""" +2024-08-18,30551,6684,"[\""Headphones\""]",2879.03,{},221293,1,"""South America""" +2023-10-01,30552,1679,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",254.23,{},203998,1,"""Africa""" +2024-07-24,30553,3034,"[\""Keyboard\""]",641.87,{},54982,0,"""North America""" +2024-04-09,30554,6093,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1031.58,"{\""promo\"": \""29%\""}",253302,1,"""Asia""" +2023-05-30,30555,2570,"[\""Charger\""]",682.44,{},287464,0,"""Europe""" +2024-03-22,30556,7995,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3051.96,{},122389,1,"""North America""" +2024-05-29,30557,8541,"[\""Laptop\""]",1396.02,"{\""promo\"": \""11%\""}",38900,1,"""Africa""" +2024-07-23,30558,290,"[\""Wireless Mouse\"", \""Phone\""]",4381.87,"{\""seasonal\"": \""10%\""}",296413,0,"""Asia""" +2024-06-02,30559,2519,"[\""Charger\""]",2026.05,"{\""seasonal\"": \""27%\""}",75999,1,"""Europe""" +2024-08-07,30560,718,"[\""Laptop\""]",2114.02,{},59792,1,"""North America""" +2023-01-28,30561,8480,"[\""Tablet\""]",1180.46,{},98935,1,"""South America""" +2024-02-27,30562,3704,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4080.21,"{\""seasonal\"": \""11%\""}",213652,1,"""Asia""" +2023-08-06,30563,6153,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",747.63,"{\""loyalty\"": \""15%\""}",261131,1,"""Europe""" +2024-11-21,30564,6759,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",844.05,"{\""promo\"": \""24%\""}",140208,1,"""Africa""" +2024-08-02,30565,744,"[\""Headphones\"", \""Monitor\""]",597.82,{},84304,0,"""Asia""" +2024-11-04,30566,3803,"[\""Keyboard\"", \""Tablet\""]",3273.92,{},81419,0,"""Europe""" +2024-05-26,30567,1352,"[\""Tablet\"", \""Monitor\""]",3428.21,{},264035,1,"""South America""" +2024-06-27,30568,9129,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2120.09,"{\""promo\"": \""28%\""}",137499,1,"""Europe""" +2023-05-03,30569,246,"[\""Phone\""]",1834.39,{},148572,1,"""Asia""" +2024-09-18,30570,7267,"[\""Wireless Mouse\"", \""Keyboard\""]",3325.95,{},180037,0,"""Asia""" +2024-12-28,30571,347,"[\""Phone\"", \""Headphones\""]",4229.11,{},91043,0,"""South America""" +2024-01-13,30572,8684,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4235.43,{},135485,1,"""Europe""" +2024-03-16,30573,151,"[\""Charger\""]",1002.82,"{\""seasonal\"": \""20%\""}",56870,0,"""Europe""" +2023-01-27,30574,8440,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3221.77,"{\""seasonal\"": \""21%\""}",202836,1,"""South America""" +2023-05-11,30575,4053,"[\""Monitor\""]",4546.82,{},26851,1,"""North America""" +2023-12-31,30576,133,"[\""Laptop\""]",415.18,"{\"": \""18%\""}",260778,1,"""Europe""" +2023-03-16,30577,6507,"[\""Phone\"", \""Charger\""]",3646.34,{},208809,1,"""Europe""" +2023-10-09,30578,2420,"[\""Phone\"", \""Wireless Mouse\""]",4867.25,{},150325,0,"""Asia""" +2024-01-07,30579,7917,"[\""Headphones\"", \""Laptop\""]",4100.14,{},245477,0,"""Europe""" +2024-09-11,30580,6051,"[\""Charger\"", \""Laptop\""]",4942.42,{},151190,1,"""South America""" +2024-11-02,30581,7718,"[\""Tablet\"", \""Laptop\""]",4909.76,"{\"": \""14%\""}",153305,0,"""Asia""" +2024-05-06,30582,4644,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3822.62,{},15354,1,"""North America""" +2023-11-06,30583,6329,"[\""Charger\""]",852.62,{},101194,1,"""South America""" +2023-07-16,30584,3984,"[\""Headphones\"", \""Charger\"", \""Phone\""]",66.77,"{\""promo\"": \""27%\""}",286371,0,"""North America""" +2024-07-05,30585,7708,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4691.41,{},12785,0,"""North America""" +2024-07-20,30586,1449,"[\""Charger\""]",4069.85,{},218647,0,"""Asia""" +2024-02-20,30587,3939,"[\""Wireless Mouse\""]",2175.72,{},113375,0,"""North America""" +2023-09-15,30588,9237,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4641.9,"{\""loyalty\"": \""8%\""}",61400,1,"""South America""" +2023-02-20,30589,1566,"[\""Wireless Mouse\"", \""Laptop\""]",69.7,"{\""loyalty\"": \""12%\""}",159868,0,"""South America""" +2023-02-03,30590,4670,"[\""Laptop\"", \""Keyboard\""]",4161.14,{},34927,0,"""North America""" +2024-07-09,30591,2757,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",374.68,{},144393,1,"""Asia""" +2024-10-07,30592,8846,"[\""Wireless Mouse\"", \""Phone\""]",2820.15,{},156381,0,"""Asia""" +2023-04-02,30593,6665,"[\""Phone\""]",4217.73,{},61106,0,"""Asia""" +2024-12-28,30594,6258,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",862.8,"{\"": \""21%\""}",53676,0,"""North America""" +2023-07-03,30595,8080,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1655.8,"{\"": \""19%\""}",281200,1,"""Africa""" +2023-12-11,30596,8645,"[\""Tablet\""]",128.73,{},223898,0,"""North America""" +2024-06-11,30597,1012,"[\""Phone\"", \""Headphones\""]",1729.76,{},28341,1,"""Asia""" +2024-09-17,30598,8735,"[\""Monitor\""]",4244.42,{},286336,1,"""Asia""" +2023-08-21,30599,2283,"[\""Tablet\""]",2950.25,{},205408,1,"""Europe""" +2023-02-09,30600,244,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4375.52,"{\"": \""29%\""}",140403,1,"""Europe""" +2023-09-13,30601,9143,"[\""Headphones\""]",2673.32,{},289205,0,"""Africa""" +2024-08-10,30602,1391,"[\""Wireless Mouse\"", \""Keyboard\""]",3368.55,{},209833,0,"""Asia""" +2023-10-09,30603,1329,"[\""Keyboard\""]",4376.41,{},169492,0,"""Africa""" +2023-11-22,30604,4490,"[\""Monitor\"", \""Headphones\""]",3764.15,"{\"": \""29%\""}",165463,0,"""Africa""" +2023-07-14,30605,710,"[\""Headphones\""]",4925.54,{},139686,0,"""Europe""" +2024-12-20,30606,3377,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1109.69,"{\""promo\"": \""23%\""}",125375,1,"""North America""" +2024-03-20,30607,8681,"[\""Headphones\""]",1194.79,"{\""promo\"": \""14%\""}",132374,0,"""South America""" +2023-02-16,30608,6649,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2108.98,{},116745,0,"""South America""" +2023-08-06,30609,5438,"[\""Tablet\""]",2530.19,"{\""seasonal\"": \""21%\""}",62101,1,"""Asia""" +2024-04-10,30610,9767,"[\""Headphones\"", \""Keyboard\""]",1550.25,"{\""loyalty\"": \""18%\""}",105152,0,"""Africa""" +2024-07-31,30611,7621,"[\""Charger\"", \""Laptop\""]",1053.04,{},105449,0,"""South America""" +2024-08-24,30612,2395,"[\""Tablet\""]",459.41,{},115376,0,"""Europe""" +2023-03-29,30613,709,"[\""Laptop\""]",255.54,"{\""seasonal\"": \""15%\""}",46263,1,"""Asia""" +2024-12-15,30614,303,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3623.81,"{\""promo\"": \""26%\""}",80547,0,"""South America""" +2024-12-11,30615,803,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4342.59,{},227559,0,"""Africa""" +2024-02-14,30616,3121,"[\""Headphones\""]",2968.3,{},2788,0,"""Africa""" +2024-06-29,30617,210,"[\""Charger\""]",2406.99,{},77098,0,"""Africa""" +2024-01-31,30618,3443,"[\""Wireless Mouse\"", \""Monitor\""]",2859.06,{},52380,0,"""South America""" +2024-11-30,30619,4174,"[\""Keyboard\"", \""Wireless Mouse\""]",2302.48,"{\""promo\"": \""5%\""}",50390,0,"""North America""" +2024-08-26,30620,4782,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",712.69,"{\""loyalty\"": \""13%\""}",47775,0,"""South America""" +2023-11-30,30621,7708,"[\""Charger\"", \""Keyboard\""]",2751.08,"{\"": \""10%\""}",161911,1,"""Europe""" +2024-08-19,30622,4026,"[\""Laptop\"", \""Monitor\""]",3433.41,{},262440,0,"""Europe""" +2023-10-07,30623,3630,"[\""Phone\""]",3151.21,{},75697,0,"""Europe""" +2024-03-30,30624,6815,"[\""Tablet\""]",1949.7,{},272193,1,"""North America""" +2024-10-09,30625,6549,"[\""Tablet\""]",4748.23,"{\""loyalty\"": \""12%\""}",211446,0,"""Africa""" +2023-12-16,30626,3492,"[\""Headphones\"", \""Keyboard\""]",2553.62,{},293376,1,"""Europe""" +2023-09-03,30627,1394,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2613.05,"{\"": \""18%\""}",88753,0,"""North America""" +2023-01-20,30628,5223,"[\""Keyboard\"", \""Laptop\""]",4661.66,"{\""loyalty\"": \""10%\""}",193406,0,"""Asia""" +2024-11-20,30629,1592,"[\""Tablet\"", \""Keyboard\""]",4616.68,"{\"": \""6%\""}",288186,1,"""Africa""" +2024-03-04,30630,6215,"[\""Charger\""]",4121.71,{},196590,0,"""South America""" +2023-02-16,30631,6235,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",530.02,"{\"": \""10%\""}",15591,1,"""Africa""" +2024-02-25,30632,3319,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4070.55,"{\""seasonal\"": \""19%\""}",5586,1,"""Africa""" +2023-09-07,30633,7643,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3535.69,{},244832,0,"""Europe""" +2023-01-11,30634,6313,"[\""Monitor\"", \""Tablet\""]",3373.22,{},21022,1,"""Asia""" +2023-11-17,30635,2902,"[\""Phone\"", \""Headphones\""]",2320.26,{},25562,1,"""Asia""" +2023-08-20,30636,7496,"[\""Headphones\""]",1690.39,{},60080,1,"""South America""" +2024-02-18,30637,9014,"[\""Headphones\""]",2672.37,"{\"": \""6%\""}",165736,0,"""Asia""" +2023-12-20,30638,6693,"[\""Monitor\"", \""Tablet\""]",4644.3,"{\""loyalty\"": \""13%\""}",137998,1,"""Africa""" +2023-10-29,30639,821,"[\""Headphones\""]",4988.26,{},17093,1,"""South America""" +2024-09-14,30640,958,"[\""Laptop\"", \""Monitor\""]",2861.5,{},153043,1,"""Europe""" +2024-01-17,30641,479,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4719.15,"{\""promo\"": \""12%\""}",31691,0,"""Africa""" +2023-04-25,30642,7990,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2600.38,"{\""loyalty\"": \""19%\""}",279015,1,"""North America""" +2023-07-25,30643,1983,"[\""Wireless Mouse\"", \""Phone\""]",2106.92,{},141371,0,"""Asia""" +2023-06-10,30644,5332,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4150.32,{},267293,0,"""Africa""" +2024-05-24,30645,6904,"[\""Wireless Mouse\""]",829.21,{},238945,0,"""South America""" +2023-03-08,30646,6399,"[\""Phone\""]",506.27,"{\""loyalty\"": \""19%\""}",36087,0,"""Europe""" +2024-04-19,30647,9739,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1254.28,"{\""promo\"": \""24%\""}",169991,1,"""South America""" +2024-02-22,30648,6564,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",928.78,{},133211,1,"""Africa""" +2023-07-02,30649,2134,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2695.76,{},233779,1,"""South America""" +2024-06-16,30650,6011,"[\""Headphones\"", \""Charger\""]",4920.49,{},244424,1,"""North America""" +2023-02-28,30651,9661,"[\""Phone\"", \""Tablet\""]",971.57,"{\""loyalty\"": \""27%\""}",242770,0,"""Asia""" +2024-05-16,30652,5780,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2150.02,"{\""promo\"": \""29%\""}",37207,0,"""Africa""" +2023-12-24,30653,2790,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4851.89,{},290727,0,"""Asia""" +2023-01-27,30654,7097,"[\""Keyboard\"", \""Laptop\""]",3985.1,{},7014,1,"""Africa""" +2023-07-31,30655,506,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3383.37,"{\""promo\"": \""18%\""}",124922,1,"""South America""" +2024-03-08,30656,3672,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2513.59,{},24509,1,"""Africa""" +2024-03-16,30657,5132,"[\""Phone\""]",425.69,{},255355,1,"""North America""" +2024-07-31,30658,5320,"[\""Tablet\"", \""Monitor\""]",1206.82,"{\""loyalty\"": \""21%\""}",36631,1,"""Europe""" +2023-09-13,30659,664,"[\""Wireless Mouse\""]",265.62,{},165234,1,"""South America""" +2023-06-25,30660,5576,"[\""Laptop\"", \""Wireless Mouse\""]",2382.19,"{\""loyalty\"": \""6%\""}",268519,1,"""Europe""" +2023-07-14,30661,3707,"[\""Keyboard\"", \""Tablet\""]",2081.64,{},105770,1,"""Africa""" +2024-09-15,30662,5185,"[\""Charger\""]",4774.08,"{\""seasonal\"": \""9%\""}",113010,0,"""North America""" +2024-08-20,30663,2795,"[\""Keyboard\"", \""Wireless Mouse\""]",2388.38,"{\"": \""11%\""}",229798,1,"""Europe""" +2024-08-13,30664,9180,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3266.33,"{\""seasonal\"": \""15%\""}",221817,1,"""South America""" +2024-03-08,30665,415,"[\""Tablet\"", \""Keyboard\""]",1811.1,"{\"": \""13%\""}",97009,0,"""North America""" +2023-08-13,30666,4481,"[\""Phone\"", \""Laptop\""]",4020.06,{},201448,0,"""Europe""" +2023-06-19,30667,466,"[\""Laptop\""]",4889.98,{},296163,0,"""Asia""" +2023-02-02,30668,2410,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4376.31,{},100898,0,"""Africa""" +2024-07-15,30669,4796,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3991.87,"{\""loyalty\"": \""29%\""}",254054,1,"""Africa""" +2023-12-18,30670,2775,"[\""Tablet\"", \""Phone\""]",3421.76,"{\""seasonal\"": \""23%\""}",145357,1,"""North America""" +2024-03-13,30671,6814,"[\""Headphones\""]",388.37,"{\""seasonal\"": \""23%\""}",152878,1,"""North America""" +2024-11-06,30672,1281,"[\""Tablet\""]",793.6,{},97060,1,"""Africa""" +2024-11-24,30673,1148,"[\""Monitor\""]",897.41,"{\""seasonal\"": \""10%\""}",248313,0,"""South America""" +2023-01-13,30674,1477,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",226.19,{},13065,1,"""Europe""" +2024-03-28,30675,4717,"[\""Laptop\""]",313.41,"{\""loyalty\"": \""15%\""}",99678,0,"""South America""" +2024-10-30,30676,1264,"[\""Keyboard\"", \""Charger\""]",1043.02,{},116555,0,"""South America""" +2024-09-26,30677,8456,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2166.1,{},146877,0,"""Europe""" +2023-03-26,30678,3223,"[\""Keyboard\""]",4480.38,"{\""promo\"": \""7%\""}",52364,1,"""South America""" +2023-10-23,30679,145,"[\""Keyboard\""]",4019.81,"{\""loyalty\"": \""7%\""}",194742,0,"""North America""" +2024-03-04,30680,4554,"[\""Charger\"", \""Tablet\""]",140.68,"{\"": \""13%\""}",262763,1,"""Africa""" +2023-12-16,30681,3782,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2667.5,"{\""seasonal\"": \""17%\""}",6487,1,"""Africa""" +2023-09-01,30682,5829,"[\""Phone\""]",212.57,"{\""seasonal\"": \""10%\""}",280131,0,"""North America""" +2024-09-14,30683,142,"[\""Headphones\"", \""Tablet\""]",3894.25,{},274763,0,"""South America""" +2023-11-18,30684,1307,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3354.72,"{\""loyalty\"": \""22%\""}",186220,0,"""North America""" +2023-06-08,30685,2596,"[\""Laptop\""]",4802.54,{},216301,1,"""Asia""" +2024-05-27,30686,557,"[\""Laptop\""]",3010.04,{},14703,0,"""North America""" +2023-01-02,30687,7060,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4924.13,"{\"": \""29%\""}",15544,0,"""South America""" +2024-03-29,30688,5671,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",546.08,{},259681,0,"""South America""" +2024-04-28,30689,4119,"[\""Monitor\"", \""Laptop\""]",2303.43,"{\""seasonal\"": \""19%\""}",117228,0,"""Europe""" +2024-08-19,30690,7585,"[\""Laptop\""]",214.7,"{\""seasonal\"": \""25%\""}",275924,1,"""North America""" +2023-02-04,30691,676,"[\""Phone\""]",2270.37,"{\"": \""30%\""}",216925,1,"""Asia""" +2024-06-28,30692,6035,"[\""Charger\""]",3901.21,"{\""promo\"": \""18%\""}",216972,0,"""Africa""" +2024-10-01,30693,3617,"[\""Wireless Mouse\"", \""Laptop\""]",301.46,{},236794,0,"""South America""" +2024-02-17,30694,5852,"[\""Monitor\"", \""Headphones\""]",1433.25,{},75083,0,"""Africa""" +2023-04-20,30695,3130,"[\""Headphones\"", \""Tablet\""]",3659.92,{},48016,0,"""Europe""" +2024-04-08,30696,9467,"[\""Wireless Mouse\""]",2165.32,"{\""loyalty\"": \""26%\""}",137488,0,"""Asia""" +2023-04-09,30697,7297,"[\""Monitor\""]",3320.58,"{\""loyalty\"": \""25%\""}",182486,1,"""Europe""" +2023-12-17,30698,4304,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",720.2,{},118931,1,"""Asia""" +2023-06-28,30699,290,"[\""Charger\""]",1824.77,{},254344,0,"""Europe""" +2023-02-25,30700,166,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3242.37,{},10522,1,"""Asia""" +2024-10-10,30701,7900,"[\""Wireless Mouse\""]",1611.53,{},33326,0,"""Asia""" +2023-11-24,30702,3376,"[\""Wireless Mouse\""]",2441.74,{},269543,0,"""Europe""" +2024-05-13,30703,2205,"[\""Wireless Mouse\"", \""Charger\""]",3123.67,"{\"": \""13%\""}",210394,0,"""North America""" +2024-12-19,30704,3585,"[\""Monitor\""]",3847.78,{},58216,1,"""Africa""" +2024-01-04,30705,2518,"[\""Wireless Mouse\""]",822.02,{},297916,0,"""Africa""" +2024-11-10,30706,4041,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3203.67,"{\"": \""30%\""}",31997,1,"""North America""" +2024-08-07,30707,9333,"[\""Laptop\""]",1132.41,{},125900,0,"""South America""" +2023-08-13,30708,4985,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4369.26,"{\""seasonal\"": \""8%\""}",294284,0,"""Asia""" +2023-04-24,30709,7744,"[\""Charger\"", \""Monitor\""]",3812.42,{},91791,0,"""Europe""" +2024-12-15,30710,9310,"[\""Wireless Mouse\"", \""Headphones\""]",3335.21,{},192295,0,"""Europe""" +2024-08-08,30711,2638,"[\""Wireless Mouse\""]",529.42,"{\""seasonal\"": \""22%\""}",147055,0,"""Africa""" +2023-06-01,30712,6137,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2700.5,"{\""loyalty\"": \""26%\""}",56116,1,"""Asia""" +2023-07-23,30713,2057,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2363.48,"{\"": \""17%\""}",62085,1,"""Africa""" +2024-07-02,30714,5011,"[\""Keyboard\""]",4597.86,{},176050,0,"""Asia""" +2024-01-27,30715,160,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4613.92,"{\"": \""7%\""}",120739,0,"""Europe""" +2024-05-28,30716,1187,"[\""Charger\"", \""Tablet\""]",4710.17,"{\""loyalty\"": \""8%\""}",145242,0,"""North America""" +2023-06-21,30717,7846,"[\""Charger\""]",4870.28,{},29255,1,"""South America""" +2023-06-26,30718,4423,"[\""Monitor\""]",2707.58,"{\""seasonal\"": \""23%\""}",115910,0,"""South America""" +2024-04-09,30719,9217,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",625.93,"{\""loyalty\"": \""11%\""}",289303,0,"""Asia""" +2023-04-06,30720,3125,"[\""Laptop\""]",2614.22,"{\""promo\"": \""20%\""}",251232,0,"""North America""" +2024-12-28,30721,9763,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4811.24,{},286918,1,"""South America""" +2024-02-14,30722,4219,"[\""Wireless Mouse\"", \""Tablet\""]",4743.71,"{\""loyalty\"": \""5%\""}",245268,0,"""North America""" +2024-07-03,30723,1830,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2762.8,{},29223,1,"""South America""" +2023-05-23,30724,4093,"[\""Wireless Mouse\""]",410.83,"{\""promo\"": \""24%\""}",244471,0,"""South America""" +2023-04-26,30725,9875,"[\""Phone\""]",859.09,{},23725,1,"""South America""" +2023-11-26,30726,7094,"[\""Keyboard\""]",166.65,{},184981,1,"""Europe""" +2023-04-02,30727,6486,"[\""Wireless Mouse\"", \""Phone\""]",96.62,"{\""promo\"": \""18%\""}",35489,0,"""South America""" +2024-09-21,30728,5488,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",603.39,{},61656,1,"""Asia""" +2023-07-25,30729,851,"[\""Tablet\"", \""Headphones\""]",3767.02,"{\"": \""21%\""}",266254,0,"""North America""" +2023-04-17,30730,9217,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3281.6,"{\""loyalty\"": \""18%\""}",100574,1,"""Europe""" +2024-08-24,30731,3119,"[\""Monitor\""]",4531.04,"{\""promo\"": \""17%\""}",84414,0,"""Asia""" +2024-04-25,30732,1249,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4366.26,"{\"": \""22%\""}",134867,0,"""Africa""" +2023-03-24,30733,6503,"[\""Phone\""]",3587.45,"{\""seasonal\"": \""13%\""}",167670,1,"""Africa""" +2024-02-05,30734,9638,"[\""Wireless Mouse\"", \""Laptop\""]",2264.3,{},137183,0,"""Africa""" +2023-11-23,30735,5241,"[\""Wireless Mouse\"", \""Tablet\""]",647.41,{},295212,1,"""North America""" +2024-10-13,30736,1434,"[\""Tablet\""]",4852.67,{},122741,1,"""Africa""" +2023-06-07,30737,2360,"[\""Charger\""]",2671.13,{},212336,0,"""Africa""" +2023-02-16,30738,7409,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",89.08,{},242414,1,"""Africa""" +2023-05-19,30739,1913,"[\""Tablet\""]",3597.34,{},43977,0,"""South America""" +2023-05-28,30740,1366,"[\""Laptop\""]",4100.9,{},54935,1,"""South America""" +2024-05-31,30741,2412,"[\""Charger\"", \""Laptop\""]",745.11,{},234826,1,"""Europe""" +2023-12-29,30742,9913,"[\""Keyboard\"", \""Monitor\""]",3812.82,{},60063,0,"""Asia""" +2024-01-25,30743,9274,"[\""Headphones\""]",3591.6,"{\""seasonal\"": \""24%\""}",298257,0,"""South America""" +2024-06-16,30744,5481,"[\""Headphones\""]",4461.71,{},181015,1,"""South America""" +2023-12-14,30745,7223,"[\""Charger\"", \""Headphones\""]",2092.49,{},265052,1,"""Europe""" +2023-08-29,30746,7530,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1021.77,{},71214,0,"""Africa""" +2023-10-30,30747,2444,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4629.83,{},52590,1,"""Europe""" +2023-06-17,30748,6437,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3244.28,{},61731,0,"""North America""" +2023-07-13,30749,3633,"[\""Wireless Mouse\"", \""Tablet\""]",1245.22,"{\""seasonal\"": \""19%\""}",10784,0,"""Europe""" +2024-07-21,30750,3949,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4232.51,{},205970,0,"""South America""" +2023-06-13,30751,2128,"[\""Laptop\""]",3827.08,{},221211,1,"""South America""" +2024-04-13,30752,6077,"[\""Wireless Mouse\"", \""Headphones\""]",3642.27,"{\"": \""15%\""}",275659,1,"""Asia""" +2023-05-06,30753,6565,"[\""Headphones\"", \""Laptop\""]",3550.41,"{\""seasonal\"": \""13%\""}",163925,1,"""Europe""" +2023-08-14,30754,1212,"[\""Keyboard\"", \""Tablet\""]",1633.31,"{\""loyalty\"": \""17%\""}",262828,1,"""Africa""" +2023-12-24,30755,8832,"[\""Laptop\""]",2644.58,"{\""loyalty\"": \""26%\""}",126031,1,"""Europe""" +2023-05-18,30756,9760,"[\""Keyboard\"", \""Tablet\""]",1287.41,{},262041,1,"""Asia""" +2024-10-07,30757,8141,"[\""Phone\"", \""Wireless Mouse\""]",4495.95,{},245511,0,"""Africa""" +2023-10-10,30758,1160,"[\""Headphones\"", \""Charger\""]",3232.14,{},122420,1,"""Asia""" +2024-05-02,30759,5275,"[\""Keyboard\""]",563.65,{},258803,0,"""North America""" +2023-05-03,30760,6453,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",763.5,"{\""promo\"": \""22%\""}",265341,1,"""Europe""" +2024-05-26,30761,6831,"[\""Headphones\""]",3929.68,"{\""promo\"": \""23%\""}",172061,1,"""Europe""" +2023-11-25,30762,1417,"[\""Keyboard\"", \""Monitor\""]",3266.28,"{\""loyalty\"": \""21%\""}",156383,0,"""Europe""" +2023-07-09,30763,6210,"[\""Wireless Mouse\""]",4888.9,{},78228,1,"""South America""" +2024-07-02,30764,3377,"[\""Tablet\""]",1131.4,{},67346,1,"""Europe""" +2023-03-01,30765,9027,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",614.06,"{\""seasonal\"": \""27%\""}",129390,1,"""Europe""" +2024-05-05,30766,2223,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1932.84,"{\""promo\"": \""25%\""}",28720,1,"""South America""" +2024-01-26,30767,4184,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2821.42,"{\"": \""27%\""}",16046,1,"""North America""" +2023-12-16,30768,811,"[\""Wireless Mouse\"", \""Tablet\""]",1778.19,{},297854,1,"""Asia""" +2023-09-18,30769,9552,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2181.88,"{\""loyalty\"": \""16%\""}",65814,0,"""Africa""" +2023-10-21,30770,3045,"[\""Keyboard\"", \""Tablet\""]",4046.47,"{\""promo\"": \""12%\""}",118219,1,"""South America""" +2023-03-08,30771,9249,"[\""Laptop\"", \""Monitor\""]",2448.12,{},270593,1,"""South America""" +2024-02-26,30772,9877,"[\""Phone\"", \""Wireless Mouse\""]",4578.43,{},83463,0,"""Africa""" +2024-03-08,30773,5471,"[\""Headphones\""]",1969.89,{},281236,0,"""Africa""" +2024-07-19,30774,2862,"[\""Tablet\""]",2159.04,"{\""seasonal\"": \""28%\""}",218446,1,"""South America""" +2024-05-13,30775,7848,"[\""Keyboard\""]",2407.01,"{\""seasonal\"": \""26%\""}",57218,0,"""North America""" +2023-10-12,30776,6404,"[\""Wireless Mouse\"", \""Headphones\""]",3066.6,{},30471,1,"""Africa""" +2024-03-26,30777,8146,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1146.25,{},291782,0,"""Europe""" +2024-05-31,30778,7436,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1481.75,{},181768,1,"""Asia""" +2023-09-23,30779,246,"[\""Keyboard\""]",3300.32,"{\""seasonal\"": \""29%\""}",111065,1,"""Asia""" +2023-04-15,30780,7159,"[\""Tablet\"", \""Monitor\""]",808.61,{},196751,0,"""South America""" +2024-12-31,30781,8661,"[\""Phone\"", \""Laptop\""]",3792.17,"{\""loyalty\"": \""26%\""}",79180,0,"""Africa""" +2024-10-31,30782,842,"[\""Laptop\""]",116.79,"{\""promo\"": \""7%\""}",120038,1,"""Asia""" +2024-12-28,30783,124,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",322.64,{},63026,1,"""Asia""" +2023-06-06,30784,4200,"[\""Phone\"", \""Wireless Mouse\""]",1016.64,"{\""promo\"": \""5%\""}",236275,1,"""Africa""" +2024-10-21,30785,4053,"[\""Keyboard\""]",2545.62,"{\""seasonal\"": \""15%\""}",101293,1,"""Asia""" +2024-01-12,30786,9443,"[\""Charger\"", \""Wireless Mouse\""]",730.65,"{\"": \""15%\""}",183977,1,"""North America""" +2023-04-23,30787,336,"[\""Tablet\""]",3901.55,"{\""seasonal\"": \""30%\""}",7742,1,"""North America""" +2023-10-31,30788,8329,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1658.32,{},254128,1,"""Europe""" +2023-12-28,30789,9148,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4209.97,{},66858,1,"""North America""" +2024-09-22,30790,4539,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3593.28,"{\"": \""29%\""}",164699,0,"""Asia""" +2024-08-30,30791,5167,"[\""Tablet\""]",970.96,{},83321,0,"""Asia""" +2023-11-25,30792,7288,"[\""Tablet\""]",3560.31,{},287378,0,"""North America""" +2024-08-17,30793,9709,"[\""Monitor\""]",4417.11,{},134769,1,"""Asia""" +2023-06-25,30794,2420,"[\""Headphones\"", \""Keyboard\""]",3936.67,{},208842,1,"""Europe""" +2023-04-23,30795,8872,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3171.61,{},263066,0,"""Africa""" +2024-03-18,30796,6469,"[\""Laptop\""]",3609.49,{},251574,0,"""Asia""" +2023-11-24,30797,3144,"[\""Charger\"", \""Headphones\""]",1240.47,"{\""promo\"": \""21%\""}",241816,1,"""Africa""" +2024-12-10,30798,8801,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4855.21,"{\""loyalty\"": \""25%\""}",190399,0,"""Africa""" +2023-04-02,30799,921,"[\""Monitor\""]",92.34,{},266284,0,"""North America""" +2024-07-14,30800,711,"[\""Tablet\"", \""Charger\""]",3936.91,"{\"": \""28%\""}",284544,1,"""Africa""" +2023-06-18,30801,3395,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4802.66,"{\"": \""14%\""}",119366,1,"""Europe""" +2023-02-10,30802,2907,"[\""Phone\""]",1364.11,{},287109,1,"""South America""" +2023-05-29,30803,774,"[\""Wireless Mouse\""]",1476.22,"{\"": \""30%\""}",235340,0,"""Africa""" +2023-05-02,30804,3414,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",674.29,{},80726,1,"""Europe""" +2024-06-10,30805,1692,"[\""Keyboard\""]",1391.08,{},98674,1,"""Europe""" +2024-05-27,30806,1262,"[\""Headphones\"", \""Wireless Mouse\""]",2646.46,{},209290,1,"""Asia""" +2024-12-24,30807,7615,"[\""Tablet\"", \""Wireless Mouse\""]",3120.91,"{\"": \""9%\""}",258935,0,"""North America""" +2024-05-06,30808,2592,"[\""Charger\""]",230.33,"{\""seasonal\"": \""30%\""}",137145,0,"""South America""" +2023-08-31,30809,5016,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",956.35,{},244480,0,"""South America""" +2023-08-15,30810,2105,"[\""Keyboard\"", \""Phone\""]",2954.11,"{\""seasonal\"": \""20%\""}",9921,1,"""Asia""" +2023-06-26,30811,9820,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2821.59,"{\"": \""15%\""}",142275,1,"""North America""" +2023-01-10,30812,1553,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4448.42,"{\"": \""5%\""}",156879,1,"""Africa""" +2024-04-21,30813,3400,"[\""Headphones\""]",2786.26,{},65316,1,"""North America""" +2024-07-27,30814,6714,"[\""Headphones\""]",3262.88,{},28774,0,"""South America""" +2024-09-11,30815,8044,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3200.63,{},247697,1,"""Africa""" +2024-11-05,30816,7192,"[\""Phone\"", \""Charger\""]",2041.57,{},172329,1,"""South America""" +2023-03-16,30817,8351,"[\""Phone\""]",1349.59,{},39733,1,"""Europe""" +2023-01-18,30818,322,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2683.34,{},272758,1,"""North America""" +2023-07-30,30819,984,"[\""Monitor\"", \""Charger\""]",3077.58,"{\""seasonal\"": \""6%\""}",47926,0,"""Europe""" +2024-06-04,30820,4035,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4327.3,"{\""seasonal\"": \""24%\""}",288807,0,"""Africa""" +2023-12-28,30821,2747,"[\""Headphones\""]",870.05,"{\"": \""17%\""}",206897,0,"""Africa""" +2023-10-07,30822,4807,"[\""Monitor\""]",1176.64,{},60368,0,"""Africa""" +2023-01-14,30823,726,"[\""Keyboard\"", \""Monitor\""]",2032.26,"{\""seasonal\"": \""10%\""}",201139,1,"""Africa""" +2023-08-23,30824,7177,"[\""Monitor\"", \""Headphones\""]",429.39,"{\""promo\"": \""25%\""}",105394,1,"""Europe""" +2023-08-08,30825,6635,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4683.16,"{\""promo\"": \""28%\""}",52659,0,"""South America""" +2023-05-10,30826,9057,"[\""Wireless Mouse\"", \""Monitor\""]",4036.49,{},186735,0,"""Asia""" +2023-07-06,30827,3797,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2511.2,{},263377,0,"""North America""" +2023-05-18,30828,3874,"[\""Wireless Mouse\""]",250.75,"{\""promo\"": \""7%\""}",36553,0,"""Africa""" +2023-07-09,30829,435,"[\""Monitor\"", \""Keyboard\""]",4990.8,"{\""loyalty\"": \""16%\""}",265197,1,"""Europe""" +2023-11-25,30830,2067,"[\""Monitor\"", \""Wireless Mouse\""]",2422.35,"{\""promo\"": \""20%\""}",109846,0,"""South America""" +2024-05-16,30831,7223,"[\""Monitor\""]",404.19,"{\""seasonal\"": \""9%\""}",3554,1,"""North America""" +2023-02-21,30832,5102,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3834.92,{},38791,0,"""Asia""" +2024-01-29,30833,5806,"[\""Monitor\""]",2358.6,"{\""loyalty\"": \""5%\""}",120862,1,"""North America""" +2023-12-08,30834,1504,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2988.14,{},56952,0,"""Asia""" +2023-03-28,30835,7565,"[\""Charger\""]",2444.09,"{\""loyalty\"": \""18%\""}",31886,0,"""Europe""" +2023-10-19,30836,1052,"[\""Laptop\"", \""Monitor\""]",1024.45,"{\"": \""13%\""}",247535,0,"""Europe""" +2023-05-07,30837,9730,"[\""Wireless Mouse\"", \""Keyboard\""]",4376.13,{},33747,0,"""Africa""" +2023-04-07,30838,2589,"[\""Charger\"", \""Tablet\"", \""Phone\""]",629.71,{},275807,0,"""Europe""" +2024-08-01,30839,4300,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3899.17,{},286042,1,"""Asia""" +2023-05-12,30840,3317,"[\""Wireless Mouse\""]",4954.03,{},139523,1,"""South America""" +2024-09-18,30841,2806,"[\""Charger\"", \""Tablet\""]",2857.63,"{\""loyalty\"": \""19%\""}",9155,1,"""North America""" +2024-06-30,30842,8354,"[\""Monitor\"", \""Laptop\""]",1271.88,"{\""loyalty\"": \""8%\""}",251498,1,"""North America""" +2024-06-01,30843,5010,"[\""Keyboard\""]",4358.04,"{\"": \""29%\""}",243965,1,"""South America""" +2023-03-19,30844,8969,"[\""Tablet\""]",491.22,"{\""promo\"": \""7%\""}",270566,0,"""Asia""" +2024-05-10,30845,6629,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",197.75,{},277608,1,"""Europe""" +2024-09-24,30846,5729,"[\""Keyboard\"", \""Tablet\""]",3287.92,{},201727,0,"""Asia""" +2024-02-23,30847,1954,"[\""Phone\"", \""Wireless Mouse\""]",315.4,{},226216,1,"""Europe""" +2023-12-17,30848,8366,"[\""Phone\"", \""Keyboard\""]",1369.73,"{\""loyalty\"": \""29%\""}",47499,1,"""Asia""" +2024-02-14,30849,3017,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3170.71,{},164968,1,"""North America""" +2024-11-10,30850,4164,"[\""Monitor\"", \""Headphones\""]",2561.65,{},167598,1,"""South America""" +2024-09-21,30851,8416,"[\""Monitor\""]",228.68,{},219478,0,"""South America""" +2023-01-07,30852,7976,"[\""Headphones\"", \""Monitor\""]",3896.49,{},61616,0,"""South America""" +2023-10-09,30853,856,"[\""Charger\""]",2333.31,{},83247,1,"""Europe""" +2023-08-31,30854,6016,"[\""Headphones\"", \""Monitor\""]",513.03,{},12876,1,"""Europe""" +2023-08-28,30855,3410,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1887.55,{},214706,1,"""Africa""" +2023-04-20,30856,9903,"[\""Monitor\"", \""Wireless Mouse\""]",3072.7,"{\""seasonal\"": \""20%\""}",217412,1,"""North America""" +2023-11-21,30857,3734,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",367.98,{},174169,1,"""Asia""" +2024-04-11,30858,9094,"[\""Charger\""]",4209.68,{},291497,0,"""Africa""" +2023-07-10,30859,3974,"[\""Headphones\"", \""Tablet\""]",1718.16,"{\""promo\"": \""29%\""}",299009,0,"""Africa""" +2023-10-28,30860,7238,"[\""Phone\""]",1281.52,{},254012,1,"""South America""" +2024-10-31,30861,9061,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3586.39,{},274304,1,"""South America""" +2024-09-12,30862,5676,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3038.18,{},250126,1,"""Asia""" +2023-12-12,30863,1272,"[\""Laptop\"", \""Monitor\""]",3268.61,"{\""loyalty\"": \""21%\""}",42631,0,"""South America""" +2023-06-13,30864,3723,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3852.41,"{\""promo\"": \""13%\""}",63689,1,"""Africa""" +2024-07-31,30865,7697,"[\""Keyboard\""]",2891.59,"{\""promo\"": \""14%\""}",64820,1,"""Europe""" +2024-06-15,30866,6103,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1754.89,"{\""seasonal\"": \""10%\""}",283410,1,"""South America""" +2024-11-20,30867,3131,"[\""Phone\"", \""Monitor\""]",1298.67,"{\"": \""21%\""}",257384,1,"""Africa""" +2023-06-30,30868,9908,"[\""Tablet\""]",1991.36,{},16216,0,"""Asia""" +2024-07-23,30869,9813,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",895.61,"{\""loyalty\"": \""25%\""}",145842,1,"""Africa""" +2023-06-28,30870,3362,"[\""Monitor\""]",1817.99,{},274761,1,"""Africa""" +2024-08-14,30871,9344,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",971.74,{},299333,0,"""Europe""" +2024-10-08,30872,6699,"[\""Charger\""]",400.44,{},259210,1,"""North America""" +2023-04-17,30873,6503,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",884.85,{},250623,0,"""North America""" +2023-02-13,30874,2511,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4860.01,{},24229,0,"""Asia""" +2023-01-02,30875,7340,"[\""Phone\"", \""Keyboard\""]",1549.78,"{\""seasonal\"": \""26%\""}",199379,0,"""North America""" +2024-10-23,30876,2355,"[\""Headphones\"", \""Laptop\""]",3035.96,{},184882,0,"""Europe""" +2024-07-10,30877,1098,"[\""Monitor\""]",4492.32,{},5254,0,"""Europe""" +2023-07-31,30878,596,"[\""Wireless Mouse\"", \""Tablet\""]",4951.91,"{\""loyalty\"": \""6%\""}",278494,1,"""North America""" +2024-05-20,30879,9782,"[\""Monitor\"", \""Phone\""]",2711.05,{},39150,0,"""South America""" +2023-08-20,30880,5328,"[\""Monitor\""]",1071.38,"{\"": \""17%\""}",52435,0,"""South America""" +2024-12-13,30881,2840,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4251.78,{},116254,1,"""South America""" +2023-04-07,30882,5153,"[\""Keyboard\"", \""Wireless Mouse\""]",1140.65,{},285558,0,"""South America""" +2024-02-02,30883,8052,"[\""Headphones\"", \""Tablet\""]",3906.88,{},75561,1,"""North America""" +2023-02-12,30884,7632,"[\""Keyboard\""]",694.43,"{\"": \""11%\""}",175155,1,"""Asia""" +2023-01-27,30885,5074,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2365.62,{},65705,0,"""North America""" +2024-07-07,30886,853,"[\""Laptop\""]",4211.02,{},160479,0,"""Asia""" +2024-07-13,30887,3590,"[\""Headphones\""]",471.41,{},14807,1,"""Europe""" +2023-11-02,30888,5495,"[\""Phone\""]",4340.18,{},204882,1,"""South America""" +2024-03-29,30889,5402,"[\""Laptop\""]",1689.95,{},216416,1,"""Asia""" +2023-11-20,30890,755,"[\""Charger\""]",2569.88,{},269068,1,"""Africa""" +2024-11-12,30891,4739,"[\""Keyboard\"", \""Tablet\""]",2869.57,{},103060,1,"""Asia""" +2023-02-25,30892,3978,"[\""Wireless Mouse\"", \""Laptop\""]",2115.96,{},103198,1,"""Africa""" +2023-07-02,30893,5306,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",645.19,"{\""loyalty\"": \""5%\""}",90845,1,"""Europe""" +2023-05-07,30894,9244,"[\""Monitor\"", \""Wireless Mouse\""]",1258.29,{},8857,0,"""South America""" +2024-10-26,30895,4346,"[\""Laptop\""]",4135.06,"{\""loyalty\"": \""16%\""}",5710,0,"""South America""" +2024-07-29,30896,1959,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1362.11,{},139447,0,"""Africa""" +2023-10-19,30897,3680,"[\""Charger\""]",2894.05,"{\""seasonal\"": \""9%\""}",108381,0,"""North America""" +2023-03-20,30898,6016,"[\""Monitor\""]",4459.89,"{\"": \""23%\""}",117489,0,"""South America""" +2023-03-17,30899,3273,"[\""Charger\""]",4671.96,{},60952,0,"""North America""" +2024-04-18,30900,3035,"[\""Phone\""]",4037.55,"{\""loyalty\"": \""10%\""}",73794,0,"""Europe""" +2024-11-06,30901,7104,"[\""Laptop\""]",3420.51,{},247410,1,"""Asia""" +2024-01-24,30902,3191,"[\""Tablet\"", \""Phone\"", \""Charger\""]",846.53,"{\"": \""8%\""}",293029,1,"""Asia""" +2024-05-03,30903,8673,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4477.23,{},91615,1,"""North America""" +2024-04-08,30904,3058,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",570.54,{},24864,1,"""South America""" +2024-08-13,30905,7377,"[\""Monitor\""]",4220.8,"{\""seasonal\"": \""17%\""}",144358,0,"""North America""" +2024-09-12,30906,3390,"[\""Laptop\""]",2643.7,"{\""promo\"": \""23%\""}",56284,0,"""Asia""" +2023-10-17,30907,3786,"[\""Tablet\"", \""Phone\""]",2876.0,{},248694,0,"""North America""" +2024-01-15,30908,6704,"[\""Keyboard\"", \""Headphones\""]",3495.24,{},21162,1,"""Asia""" +2023-10-08,30909,7247,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4846.69,{},271345,0,"""North America""" +2023-11-18,30910,7349,"[\""Headphones\"", \""Monitor\""]",2475.76,{},191629,0,"""Europe""" +2024-02-27,30911,578,"[\""Charger\"", \""Tablet\""]",3238.48,{},151034,0,"""Europe""" +2023-12-13,30912,225,"[\""Wireless Mouse\""]",338.22,"{\""seasonal\"": \""24%\""}",251956,1,"""Asia""" +2024-06-03,30913,4819,"[\""Monitor\""]",1297.94,{},289492,1,"""Africa""" +2023-11-18,30914,7608,"[\""Charger\"", \""Monitor\""]",1715.78,"{\"": \""9%\""}",191359,0,"""North America""" +2024-06-14,30915,853,"[\""Monitor\"", \""Keyboard\""]",2070.97,{},247373,1,"""Asia""" +2024-02-12,30916,5868,"[\""Monitor\"", \""Wireless Mouse\""]",1095.46,"{\""promo\"": \""10%\""}",200199,0,"""Europe""" +2023-09-25,30917,2257,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3943.04,"{\""loyalty\"": \""15%\""}",78415,1,"""South America""" +2024-02-18,30918,9833,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1442.44,{},10415,1,"""Africa""" +2023-11-13,30919,1493,"[\""Charger\""]",127.74,{},246713,0,"""Europe""" +2023-12-09,30920,5135,"[\""Tablet\"", \""Keyboard\""]",1860.83,{},286883,0,"""North America""" +2023-08-25,30921,5896,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1019.65,"{\""promo\"": \""28%\""}",198179,1,"""South America""" +2023-12-18,30922,6308,"[\""Phone\"", \""Tablet\""]",4987.04,{},10434,0,"""Asia""" +2024-08-01,30923,172,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1755.44,{},273996,1,"""South America""" +2024-03-13,30924,4045,"[\""Wireless Mouse\"", \""Keyboard\""]",2879.27,{},204486,1,"""South America""" +2023-01-20,30925,3290,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1789.19,{},156319,0,"""Europe""" +2024-03-31,30926,2397,"[\""Keyboard\""]",2979.66,"{\""loyalty\"": \""27%\""}",201967,1,"""Africa""" +2023-04-17,30927,7112,"[\""Phone\""]",3735.93,{},223887,0,"""Europe""" +2023-04-28,30928,1855,"[\""Laptop\"", \""Monitor\""]",4754.85,"{\""seasonal\"": \""14%\""}",260212,0,"""North America""" +2024-04-23,30929,2577,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",678.27,"{\"": \""21%\""}",270757,1,"""South America""" +2023-06-09,30930,9491,"[\""Laptop\""]",3203.31,"{\""loyalty\"": \""27%\""}",69557,0,"""North America""" +2023-01-15,30931,4686,"[\""Laptop\""]",469.64,{},121440,1,"""Asia""" +2024-03-24,30932,5193,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3902.63,{},140795,1,"""North America""" +2023-02-08,30933,3250,"[\""Laptop\"", \""Monitor\""]",4642.58,"{\""seasonal\"": \""24%\""}",280928,0,"""Asia""" +2023-04-30,30934,2636,"[\""Tablet\"", \""Charger\""]",2615.23,"{\"": \""24%\""}",140881,1,"""Europe""" +2023-11-02,30935,123,"[\""Phone\"", \""Keyboard\""]",1518.93,{},7863,0,"""Europe""" +2024-02-15,30936,9842,"[\""Monitor\""]",4677.32,"{\""seasonal\"": \""13%\""}",119064,0,"""Europe""" +2023-08-13,30937,8193,"[\""Keyboard\""]",4926.89,"{\"": \""27%\""}",49667,0,"""Europe""" +2024-01-06,30938,1947,"[\""Wireless Mouse\""]",1133.78,"{\""seasonal\"": \""19%\""}",101336,1,"""Europe""" +2024-12-15,30939,7728,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3461.17,{},12437,0,"""Europe""" +2023-10-02,30940,9182,"[\""Laptop\"", \""Monitor\""]",2296.94,{},264861,0,"""Africa""" +2024-10-05,30941,2850,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3769.63,"{\""promo\"": \""6%\""}",223641,0,"""Asia""" +2023-10-28,30942,7114,"[\""Headphones\"", \""Monitor\""]",1665.29,"{\""loyalty\"": \""28%\""}",242563,1,"""Asia""" +2023-04-29,30943,8364,"[\""Laptop\""]",1523.64,"{\"": \""24%\""}",12994,0,"""South America""" +2024-09-17,30944,3077,"[\""Keyboard\""]",4053.25,"{\""seasonal\"": \""23%\""}",230763,1,"""Africa""" +2023-01-07,30945,5091,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3556.66,"{\""seasonal\"": \""17%\""}",81072,0,"""South America""" +2023-02-01,30946,3315,"[\""Laptop\"", \""Wireless Mouse\""]",989.09,"{\"": \""19%\""}",34035,0,"""North America""" +2024-09-25,30947,8972,"[\""Monitor\""]",2508.17,"{\"": \""14%\""}",107772,0,"""Europe""" +2024-11-14,30948,4301,"[\""Monitor\""]",2557.98,{},290762,0,"""Europe""" +2023-08-15,30949,8462,"[\""Tablet\""]",3594.58,"{\""loyalty\"": \""21%\""}",107648,1,"""Europe""" +2024-05-26,30950,5317,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2237.86,{},23709,1,"""South America""" +2024-08-04,30951,8240,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1517.81,"{\"": \""29%\""}",195624,1,"""Asia""" +2024-12-29,30952,7004,"[\""Headphones\""]",91.76,"{\""promo\"": \""16%\""}",255465,0,"""Africa""" +2023-08-26,30953,8559,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3857.4,"{\""seasonal\"": \""28%\""}",115446,0,"""South America""" +2023-07-17,30954,2292,"[\""Wireless Mouse\"", \""Phone\""]",672.01,{},35661,1,"""Africa""" +2023-05-16,30955,8274,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1673.57,"{\""promo\"": \""30%\""}",113310,0,"""Asia""" +2023-10-24,30956,8509,"[\""Phone\""]",2261.14,{},203658,1,"""Europe""" +2024-11-16,30957,7999,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4120.71,{},283633,1,"""Africa""" +2023-03-11,30958,7486,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3768.41,{},9671,0,"""Europe""" +2023-03-27,30959,1901,"[\""Keyboard\"", \""Headphones\""]",4165.93,"{\"": \""12%\""}",66510,0,"""Europe""" +2024-08-31,30960,5440,"[\""Charger\""]",3250.54,{},185312,0,"""Europe""" +2023-08-07,30961,2815,"[\""Wireless Mouse\""]",1604.52,{},45307,1,"""Africa""" +2024-07-06,30962,9210,"[\""Phone\"", \""Keyboard\""]",4568.56,"{\""loyalty\"": \""18%\""}",80508,0,"""Africa""" +2023-08-31,30963,977,"[\""Keyboard\""]",4745.61,"{\""promo\"": \""27%\""}",30026,1,"""South America""" +2024-01-21,30964,1471,"[\""Laptop\""]",1135.23,"{\""seasonal\"": \""30%\""}",250666,1,"""North America""" +2024-11-21,30965,1453,"[\""Laptop\""]",797.49,"{\""loyalty\"": \""19%\""}",149640,0,"""Europe""" +2024-07-22,30966,9513,"[\""Keyboard\""]",1284.21,{},145139,0,"""Asia""" +2024-06-01,30967,3137,"[\""Keyboard\"", \""Monitor\""]",4943.78,{},54686,0,"""Asia""" +2023-04-19,30968,6725,"[\""Phone\""]",2787.89,"{\""seasonal\"": \""25%\""}",111292,0,"""Africa""" +2024-05-21,30969,5301,"[\""Wireless Mouse\""]",670.99,"{\"": \""9%\""}",269639,1,"""Africa""" +2024-02-08,30970,5332,"[\""Wireless Mouse\""]",4616.66,"{\""promo\"": \""7%\""}",183044,1,"""Asia""" +2023-01-02,30971,6784,"[\""Monitor\""]",1064.87,"{\""promo\"": \""23%\""}",197893,1,"""Africa""" +2023-05-26,30972,3002,"[\""Monitor\"", \""Keyboard\""]",3568.25,{},40251,1,"""South America""" +2024-08-11,30973,7904,"[\""Laptop\""]",3692.29,{},33614,1,"""Africa""" +2023-11-24,30974,4346,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",963.11,"{\""loyalty\"": \""16%\""}",84833,1,"""Africa""" +2024-07-23,30975,5689,"[\""Charger\""]",3836.04,"{\""seasonal\"": \""17%\""}",70151,1,"""South America""" +2024-08-13,30976,4391,"[\""Tablet\"", \""Charger\""]",1899.14,{},40235,1,"""North America""" +2024-05-11,30977,4297,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3542.05,{},2139,1,"""Europe""" +2023-03-12,30978,1780,"[\""Tablet\""]",3966.0,"{\""loyalty\"": \""21%\""}",227128,1,"""South America""" +2023-08-08,30979,8105,"[\""Monitor\""]",2594.05,{},128009,0,"""South America""" +2023-03-27,30980,2490,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",123.02,{},294753,0,"""Africa""" +2023-04-24,30981,1016,"[\""Charger\""]",2078.56,{},119677,1,"""South America""" +2024-06-24,30982,5517,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4780.39,"{\""promo\"": \""13%\""}",120009,0,"""Asia""" +2023-09-26,30983,7784,"[\""Tablet\""]",506.42,"{\""promo\"": \""12%\""}",49569,0,"""Europe""" +2023-10-06,30984,8984,"[\""Charger\"", \""Keyboard\""]",2463.02,{},238584,0,"""Africa""" +2024-06-12,30985,3697,"[\""Laptop\"", \""Tablet\""]",2387.93,{},30228,1,"""North America""" +2023-04-10,30986,9169,"[\""Monitor\"", \""Charger\""]",669.74,"{\"": \""25%\""}",2153,0,"""Europe""" +2024-09-11,30987,3696,"[\""Headphones\""]",1336.04,{},79329,0,"""South America""" +2024-05-20,30988,3397,"[\""Phone\"", \""Headphones\""]",735.17,"{\""seasonal\"": \""23%\""}",227405,0,"""South America""" +2023-12-06,30989,7149,"[\""Monitor\"", \""Wireless Mouse\""]",4227.93,"{\""promo\"": \""13%\""}",171884,0,"""Europe""" +2024-10-27,30990,8688,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4870.51,"{\"": \""14%\""}",240682,1,"""Europe""" +2024-05-18,30991,9036,"[\""Phone\"", \""Charger\"", \""Laptop\""]",839.53,{},256453,1,"""Africa""" +2023-06-01,30992,863,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3077.91,{},15562,0,"""Asia""" +2024-09-16,30993,2929,"[\""Keyboard\"", \""Phone\""]",1374.19,{},211198,0,"""South America""" +2023-04-09,30994,2102,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2100.07,"{\""loyalty\"": \""18%\""}",234732,0,"""Asia""" +2023-09-10,30995,9897,"[\""Phone\"", \""Laptop\""]",2394.01,"{\""promo\"": \""16%\""}",23635,1,"""Africa""" +2024-04-12,30996,479,"[\""Keyboard\"", \""Headphones\""]",2547.98,"{\"": \""12%\""}",156507,1,"""North America""" +2023-10-08,30997,2139,"[\""Laptop\""]",4637.89,{},157796,0,"""Asia""" +2023-12-04,30998,6421,"[\""Wireless Mouse\"", \""Monitor\""]",1808.85,{},173608,1,"""South America""" +2023-07-24,30999,1701,"[\""Headphones\""]",3042.68,{},206194,1,"""North America""" +2024-05-17,31000,7611,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3586.88,{},135321,0,"""Africa""" +2024-05-29,31001,9977,"[\""Laptop\"", \""Charger\""]",1815.67,"{\""loyalty\"": \""22%\""}",238566,1,"""North America""" +2024-06-06,31002,8722,"[\""Headphones\""]",1818.84,"{\"": \""26%\""}",225981,0,"""North America""" +2024-06-29,31003,1764,"[\""Wireless Mouse\""]",3730.24,"{\""promo\"": \""13%\""}",64975,1,"""Asia""" +2023-07-31,31004,16,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1976.13,{},285601,0,"""Asia""" +2024-11-18,31005,9018,"[\""Tablet\"", \""Keyboard\""]",3222.67,"{\""seasonal\"": \""10%\""}",198009,1,"""Europe""" +2023-01-30,31006,3689,"[\""Phone\"", \""Laptop\""]",2909.38,{},256792,0,"""Asia""" +2023-11-30,31007,2702,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1420.83,"{\""loyalty\"": \""29%\""}",60631,1,"""Europe""" +2023-11-26,31008,3658,"[\""Phone\"", \""Tablet\""]",2513.44,"{\"": \""10%\""}",265244,1,"""Europe""" +2023-12-26,31009,1936,"[\""Headphones\"", \""Charger\""]",4257.45,{},128664,0,"""Asia""" +2023-01-21,31010,5701,"[\""Keyboard\""]",4908.97,{},82731,1,"""Asia""" +2023-01-03,31011,1546,"[\""Headphones\""]",3451.73,"{\""promo\"": \""22%\""}",229686,0,"""Europe""" +2024-12-04,31012,8527,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4385.9,{},28793,0,"""South America""" +2023-05-16,31013,4989,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3406.67,"{\""seasonal\"": \""22%\""}",75878,1,"""Asia""" +2023-08-20,31014,1302,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2284.57,"{\""seasonal\"": \""11%\""}",143016,1,"""North America""" +2023-03-05,31015,2162,"[\""Charger\"", \""Keyboard\""]",1890.37,{},238914,1,"""Europe""" +2024-10-24,31016,99,"[\""Keyboard\"", \""Laptop\""]",2423.97,"{\""promo\"": \""23%\""}",242823,0,"""Africa""" +2024-08-01,31017,2655,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2293.32,"{\""seasonal\"": \""8%\""}",104954,1,"""South America""" +2024-04-09,31018,5823,"[\""Laptop\""]",3853.19,"{\""promo\"": \""25%\""}",218260,1,"""Asia""" +2023-12-11,31019,5675,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3827.16,{},40415,0,"""North America""" +2023-04-27,31020,3462,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4689.41,"{\"": \""6%\""}",79280,0,"""South America""" +2023-09-26,31021,5657,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4553.82,"{\""seasonal\"": \""5%\""}",249262,0,"""Europe""" +2024-01-08,31022,8871,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",786.79,{},3554,0,"""South America""" +2023-01-13,31023,1050,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3927.55,"{\""promo\"": \""11%\""}",163680,1,"""South America""" +2024-05-05,31024,7442,"[\""Laptop\""]",4457.47,"{\"": \""10%\""}",143321,1,"""South America""" +2023-02-15,31025,5572,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2862.82,"{\""loyalty\"": \""5%\""}",268476,1,"""North America""" +2024-10-03,31026,3058,"[\""Laptop\""]",1982.65,"{\""promo\"": \""12%\""}",20475,1,"""Asia""" +2024-05-28,31027,2553,"[\""Phone\"", \""Keyboard\""]",4020.41,{},43352,0,"""North America""" +2023-02-17,31028,9660,"[\""Laptop\""]",2023.29,"{\""promo\"": \""16%\""}",254506,1,"""Asia""" +2024-12-06,31029,383,"[\""Monitor\"", \""Phone\""]",430.1,{},190104,1,"""North America""" +2024-10-17,31030,255,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1732.52,{},273419,0,"""North America""" +2024-12-09,31031,8025,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",261.24,{},285844,1,"""North America""" +2024-12-28,31032,8371,"[\""Monitor\""]",2647.66,{},104121,1,"""Africa""" +2023-12-10,31033,9039,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2786.77,"{\""seasonal\"": \""23%\""}",230838,0,"""Africa""" +2023-07-12,31034,8604,"[\""Wireless Mouse\""]",1629.98,"{\""loyalty\"": \""18%\""}",47708,0,"""Asia""" +2023-08-01,31035,1110,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2305.4,"{\""promo\"": \""8%\""}",30145,1,"""North America""" +2024-11-22,31036,3333,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2866.86,"{\"": \""8%\""}",277731,0,"""Europe""" +2023-12-18,31037,9841,"[\""Wireless Mouse\"", \""Laptop\""]",3498.34,{},197891,1,"""Europe""" +2023-02-11,31038,9475,"[\""Tablet\"", \""Headphones\""]",2149.89,{},35294,1,"""North America""" +2023-05-21,31039,1151,"[\""Keyboard\"", \""Laptop\""]",2454.77,"{\""promo\"": \""19%\""}",177601,0,"""Asia""" +2023-07-06,31040,5196,"[\""Phone\"", \""Laptop\""]",3227.78,"{\""promo\"": \""15%\""}",154253,0,"""Europe""" +2023-03-09,31041,2765,"[\""Keyboard\"", \""Headphones\""]",3540.54,"{\""seasonal\"": \""8%\""}",21068,0,"""North America""" +2023-03-12,31042,2048,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4421.03,"{\""seasonal\"": \""18%\""}",157348,0,"""Africa""" +2023-04-29,31043,1689,"[\""Headphones\""]",787.85,"{\""promo\"": \""23%\""}",280636,0,"""Europe""" +2024-05-11,31044,1065,"[\""Charger\"", \""Tablet\""]",4709.13,"{\""promo\"": \""27%\""}",250448,1,"""Africa""" +2023-10-21,31045,5067,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4247.43,{},202215,1,"""Europe""" +2023-07-21,31046,6201,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1672.07,{},296144,0,"""Africa""" +2024-10-14,31047,2431,"[\""Wireless Mouse\""]",4674.6,"{\""seasonal\"": \""5%\""}",169124,1,"""Europe""" +2023-04-28,31048,3090,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3965.98,"{\"": \""23%\""}",225766,0,"""Asia""" +2023-11-21,31049,4859,"[\""Laptop\""]",3507.69,{},191684,0,"""Africa""" +2023-09-02,31050,9717,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3507.07,"{\""loyalty\"": \""20%\""}",48908,0,"""South America""" +2024-01-13,31051,5247,"[\""Wireless Mouse\""]",2083.89,{},119365,1,"""Africa""" +2024-08-19,31052,1440,"[\""Monitor\""]",4030.0,"{\""loyalty\"": \""5%\""}",100541,1,"""Asia""" +2024-11-26,31053,5981,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1811.65,"{\""promo\"": \""30%\""}",123971,0,"""Asia""" +2024-11-04,31054,4321,"[\""Keyboard\"", \""Tablet\""]",798.36,"{\""seasonal\"": \""6%\""}",203340,1,"""South America""" +2024-11-08,31055,4146,"[\""Phone\"", \""Keyboard\""]",733.45,{},160145,0,"""Africa""" +2023-06-03,31056,4287,"[\""Wireless Mouse\"", \""Laptop\""]",2595.93,{},181933,1,"""South America""" +2024-05-01,31057,7092,"[\""Laptop\"", \""Phone\""]",151.06,{},193788,0,"""South America""" +2024-02-13,31058,9876,"[\""Charger\""]",3313.7,"{\""loyalty\"": \""9%\""}",263873,0,"""Africa""" +2024-05-07,31059,8907,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3619.59,"{\""seasonal\"": \""16%\""}",7775,1,"""North America""" +2024-12-09,31060,1843,"[\""Headphones\""]",1248.56,{},232896,1,"""South America""" +2024-09-17,31061,7280,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2781.89,{},242936,1,"""Africa""" +2023-09-24,31062,4645,"[\""Phone\"", \""Charger\""]",194.65,{},56804,0,"""South America""" +2024-04-20,31063,2893,"[\""Tablet\"", \""Charger\"", \""Phone\""]",198.49,{},279635,0,"""Europe""" +2024-04-04,31064,3400,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3375.42,"{\""loyalty\"": \""12%\""}",148478,1,"""Europe""" +2024-03-02,31065,9934,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1796.56,{},40551,0,"""Asia""" +2024-04-08,31066,6537,"[\""Charger\""]",2563.12,"{\""promo\"": \""18%\""}",253864,0,"""North America""" +2023-02-23,31067,1473,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3034.78,"{\"": \""28%\""}",169338,0,"""Africa""" +2024-03-16,31068,1497,"[\""Tablet\""]",1419.18,{},1339,0,"""North America""" +2024-11-12,31069,1467,"[\""Tablet\"", \""Phone\""]",2433.33,"{\""seasonal\"": \""12%\""}",292912,1,"""Africa""" +2023-05-05,31070,7172,"[\""Tablet\""]",3490.53,"{\""loyalty\"": \""6%\""}",93269,1,"""Africa""" +2024-11-23,31071,8755,"[\""Tablet\"", \""Keyboard\""]",4140.24,{},250469,1,"""North America""" +2023-02-19,31072,7920,"[\""Phone\""]",2192.73,{},178128,1,"""South America""" +2023-09-30,31073,1231,"[\""Tablet\""]",2911.92,{},218529,1,"""Africa""" +2024-06-07,31074,1246,"[\""Tablet\"", \""Monitor\""]",952.71,{},57096,1,"""Europe""" +2023-04-10,31075,8330,"[\""Phone\"", \""Monitor\""]",225.55,"{\""loyalty\"": \""23%\""}",31318,0,"""Africa""" +2024-12-11,31076,452,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3359.91,"{\""seasonal\"": \""28%\""}",79896,1,"""Asia""" +2024-01-25,31077,4193,"[\""Phone\"", \""Monitor\""]",2055.9,{},276242,0,"""North America""" +2023-11-27,31078,2768,"[\""Monitor\"", \""Headphones\""]",1963.05,{},204300,1,"""Africa""" +2024-09-22,31079,8068,"[\""Laptop\"", \""Phone\""]",2395.83,"{\""promo\"": \""6%\""}",147836,0,"""North America""" +2023-05-08,31080,5858,"[\""Monitor\"", \""Charger\""]",2204.82,{},234024,1,"""Africa""" +2023-04-03,31081,2914,"[\""Tablet\""]",4950.67,"{\""promo\"": \""12%\""}",47602,1,"""South America""" +2024-07-27,31082,2306,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",747.81,"{\""loyalty\"": \""7%\""}",194719,0,"""South America""" +2023-01-12,31083,2929,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",600.09,"{\"": \""27%\""}",185656,0,"""Asia""" +2024-07-21,31084,4968,"[\""Wireless Mouse\""]",693.14,"{\""promo\"": \""22%\""}",189669,0,"""South America""" +2024-09-07,31085,5778,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2383.09,"{\""seasonal\"": \""20%\""}",277151,1,"""North America""" +2023-03-09,31086,765,"[\""Monitor\""]",1836.15,"{\""seasonal\"": \""25%\""}",273548,1,"""Asia""" +2024-10-11,31087,2975,"[\""Laptop\""]",2235.39,{},252410,0,"""South America""" +2023-01-17,31088,5963,"[\""Wireless Mouse\""]",2927.89,"{\"": \""18%\""}",122390,0,"""Africa""" +2023-09-11,31089,7122,"[\""Phone\"", \""Charger\"", \""Headphones\""]",409.34,"{\""seasonal\"": \""15%\""}",28635,0,"""North America""" +2023-01-08,31090,9294,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",449.87,"{\""promo\"": \""27%\""}",119875,1,"""Asia""" +2024-07-14,31091,3373,"[\""Keyboard\""]",1688.35,{},268626,1,"""Europe""" +2023-10-26,31092,2478,"[\""Laptop\"", \""Charger\""]",4298.93,"{\"": \""16%\""}",184037,0,"""Europe""" +2023-11-11,31093,4124,"[\""Wireless Mouse\"", \""Keyboard\""]",4190.16,{},214977,1,"""South America""" +2024-02-07,31094,9419,"[\""Headphones\"", \""Keyboard\""]",3426.8,"{\""loyalty\"": \""25%\""}",64391,0,"""Africa""" +2023-08-15,31095,6489,"[\""Charger\"", \""Headphones\""]",1428.19,{},257505,1,"""Africa""" +2024-06-12,31096,3569,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3928.45,"{\""promo\"": \""21%\""}",3553,1,"""Europe""" +2024-08-25,31097,2051,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1930.44,{},125567,1,"""Europe""" +2024-12-25,31098,5952,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1506.74,{},220269,1,"""Europe""" +2024-07-17,31099,7881,"[\""Monitor\""]",3364.63,{},6655,0,"""Europe""" +2023-01-22,31100,4017,"[\""Charger\""]",2405.71,"{\""loyalty\"": \""20%\""}",128374,0,"""North America""" +2024-06-01,31101,9085,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1834.76,{},226007,0,"""Europe""" +2024-12-16,31102,3991,"[\""Monitor\""]",217.14,"{\"": \""13%\""}",280312,1,"""North America""" +2023-09-18,31103,5388,"[\""Wireless Mouse\""]",643.26,"{\"": \""13%\""}",11114,1,"""South America""" +2023-12-09,31104,7409,"[\""Laptop\""]",2807.58,{},159177,0,"""Europe""" +2024-07-20,31105,9992,"[\""Headphones\"", \""Tablet\""]",2725.98,"{\""promo\"": \""22%\""}",131691,0,"""South America""" +2023-12-04,31106,4069,"[\""Tablet\""]",1729.69,"{\""seasonal\"": \""22%\""}",189911,0,"""Europe""" +2024-05-09,31107,6989,"[\""Monitor\"", \""Headphones\""]",4742.18,{},278579,0,"""South America""" +2023-10-19,31108,3286,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4053.63,"{\""promo\"": \""11%\""}",151099,0,"""North America""" +2023-11-08,31109,6871,"[\""Headphones\""]",1873.7,"{\"": \""18%\""}",57182,0,"""North America""" +2024-03-29,31110,9251,"[\""Wireless Mouse\"", \""Monitor\""]",1432.25,"{\"": \""7%\""}",133663,1,"""Asia""" +2023-01-18,31111,5883,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1920.89,"{\""promo\"": \""18%\""}",121553,1,"""Asia""" +2024-07-22,31112,7101,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4091.15,{},235025,0,"""South America""" +2023-03-22,31113,5666,"[\""Monitor\""]",2071.14,"{\""promo\"": \""19%\""}",34114,0,"""North America""" +2023-06-26,31114,5290,"[\""Phone\""]",1069.5,{},144770,1,"""Africa""" +2024-12-21,31115,2469,"[\""Keyboard\"", \""Laptop\""]",4135.86,"{\""loyalty\"": \""25%\""}",136004,0,"""Africa""" +2024-05-21,31116,684,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2184.59,{},35212,1,"""South America""" +2024-05-26,31117,2628,"[\""Keyboard\"", \""Tablet\""]",2859.94,{},65344,1,"""South America""" +2023-10-31,31118,1819,"[\""Keyboard\""]",4681.4,"{\""loyalty\"": \""5%\""}",217615,0,"""Europe""" +2024-01-02,31119,6557,"[\""Wireless Mouse\"", \""Headphones\""]",58.69,{},238239,1,"""Europe""" +2024-12-30,31120,960,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2269.01,"{\""seasonal\"": \""11%\""}",273248,0,"""North America""" +2023-07-10,31121,974,"[\""Charger\"", \""Phone\""]",4437.11,{},155924,0,"""North America""" +2023-07-20,31122,2620,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1526.63,"{\""seasonal\"": \""9%\""}",285225,1,"""Asia""" +2023-06-06,31123,6687,"[\""Keyboard\"", \""Monitor\""]",1062.88,{},31632,1,"""Africa""" +2024-01-22,31124,5749,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",497.47,"{\"": \""14%\""}",172088,0,"""South America""" +2024-08-16,31125,1095,"[\""Headphones\"", \""Monitor\""]",298.82,"{\""loyalty\"": \""9%\""}",38785,1,"""South America""" +2024-06-23,31126,4280,"[\""Phone\""]",4355.4,"{\""seasonal\"": \""21%\""}",8098,1,"""Europe""" +2023-10-17,31127,3196,"[\""Tablet\""]",1129.22,"{\""loyalty\"": \""29%\""}",107077,1,"""Africa""" +2023-09-24,31128,7031,"[\""Charger\"", \""Laptop\""]",1520.96,{},64628,1,"""Africa""" +2023-08-09,31129,2823,"[\""Tablet\""]",218.1,{},213160,0,"""Africa""" +2024-04-24,31130,254,"[\""Headphones\""]",4087.68,"{\""loyalty\"": \""7%\""}",40567,0,"""North America""" +2024-02-18,31131,8433,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2891.37,{},71924,0,"""Africa""" +2023-01-13,31132,7712,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4411.47,{},117858,1,"""North America""" +2023-09-21,31133,8619,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4708.09,{},103843,1,"""South America""" +2024-09-27,31134,1548,"[\""Tablet\"", \""Monitor\""]",699.25,{},46133,0,"""North America""" +2023-01-06,31135,8146,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4223.14,{},217100,1,"""Europe""" +2023-12-20,31136,627,"[\""Laptop\""]",4379.86,"{\"": \""25%\""}",211683,0,"""North America""" +2023-03-26,31137,6692,"[\""Charger\""]",890.78,"{\""loyalty\"": \""25%\""}",39267,1,"""South America""" +2023-07-26,31138,1354,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3475.79,{},51878,1,"""Africa""" +2024-12-25,31139,6296,"[\""Tablet\"", \""Headphones\""]",3268.69,"{\""seasonal\"": \""14%\""}",142603,0,"""South America""" +2023-01-14,31140,1590,"[\""Laptop\"", \""Keyboard\""]",2383.87,"{\""loyalty\"": \""15%\""}",201133,1,"""South America""" +2023-09-06,31141,9063,"[\""Laptop\""]",3957.16,"{\"": \""12%\""}",276752,0,"""North America""" +2023-03-08,31142,1259,"[\""Laptop\"", \""Phone\"", \""Charger\""]",575.02,"{\""seasonal\"": \""23%\""}",178323,1,"""Africa""" +2023-10-27,31143,3684,"[\""Monitor\"", \""Phone\""]",1049.46,"{\""seasonal\"": \""30%\""}",195045,0,"""South America""" +2024-10-16,31144,1089,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3393.77,{},204961,0,"""North America""" +2023-02-14,31145,2127,"[\""Wireless Mouse\"", \""Keyboard\""]",4649.64,"{\"": \""28%\""}",132750,1,"""Asia""" +2023-07-08,31146,4847,"[\""Keyboard\"", \""Headphones\""]",844.86,"{\""seasonal\"": \""26%\""}",197704,1,"""Africa""" +2024-04-06,31147,3461,"[\""Laptop\"", \""Monitor\""]",3860.13,"{\""promo\"": \""14%\""}",236064,1,"""Asia""" +2024-09-26,31148,1119,"[\""Laptop\""]",752.59,{},165495,1,"""North America""" +2023-02-26,31149,9651,"[\""Headphones\""]",66.55,{},155330,1,"""South America""" +2023-04-17,31150,9162,"[\""Phone\""]",147.47,"{\""loyalty\"": \""12%\""}",298470,1,"""Asia""" +2024-01-31,31151,711,"[\""Laptop\""]",304.77,"{\"": \""27%\""}",277442,0,"""North America""" +2023-01-14,31152,7508,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2309.81,{},205963,1,"""Europe""" +2024-12-31,31153,8658,"[\""Keyboard\""]",59.75,"{\""loyalty\"": \""21%\""}",260538,0,"""Africa""" +2023-12-05,31154,7582,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3835.6,{},105034,1,"""Asia""" +2023-11-04,31155,6377,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4514.21,{},91316,1,"""North America""" +2024-08-19,31156,2541,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4317.56,"{\"": \""5%\""}",159604,0,"""Asia""" +2024-07-07,31157,1456,"[\""Charger\""]",1852.55,"{\""promo\"": \""18%\""}",31487,0,"""North America""" +2024-09-19,31158,954,"[\""Wireless Mouse\""]",1716.0,{},69800,0,"""Africa""" +2024-02-17,31159,5707,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1794.7,"{\"": \""29%\""}",13042,1,"""Africa""" +2024-01-02,31160,2481,"[\""Laptop\""]",3484.31,{},233835,0,"""Africa""" +2024-09-05,31161,8578,"[\""Tablet\"", \""Monitor\""]",2069.25,"{\"": \""23%\""}",120374,1,"""North America""" +2023-09-19,31162,7940,"[\""Tablet\""]",3567.04,{},288067,1,"""Europe""" +2023-08-19,31163,7375,"[\""Wireless Mouse\"", \""Monitor\""]",3552.65,"{\""loyalty\"": \""21%\""}",80853,0,"""Africa""" +2023-03-25,31164,6795,"[\""Phone\"", \""Keyboard\""]",367.37,"{\""loyalty\"": \""21%\""}",54118,1,"""Africa""" +2024-12-25,31165,3227,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1402.78,"{\""loyalty\"": \""26%\""}",156846,1,"""North America""" +2023-06-08,31166,3418,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2407.67,{},267127,1,"""North America""" +2024-11-13,31167,505,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2305.31,{},136249,0,"""South America""" +2023-04-01,31168,8114,"[\""Monitor\"", \""Phone\""]",4905.24,{},242946,0,"""Europe""" +2023-02-27,31169,6552,"[\""Monitor\""]",888.1,"{\""promo\"": \""21%\""}",98858,1,"""Europe""" +2023-10-31,31170,1386,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4674.95,"{\""loyalty\"": \""5%\""}",64201,1,"""Europe""" +2023-09-24,31171,9504,"[\""Laptop\"", \""Wireless Mouse\""]",2213.64,{},159039,0,"""South America""" +2024-06-05,31172,2898,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3458.95,"{\""loyalty\"": \""28%\""}",140006,0,"""Africa""" +2024-01-27,31173,8852,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4452.31,{},270295,0,"""Europe""" +2023-01-22,31174,7570,"[\""Headphones\"", \""Tablet\""]",2997.43,"{\""loyalty\"": \""19%\""}",93843,0,"""Asia""" +2024-04-28,31175,2049,"[\""Laptop\"", \""Keyboard\""]",4781.23,{},220667,1,"""North America""" +2023-04-08,31176,5760,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3879.84,"{\""loyalty\"": \""13%\""}",132268,1,"""North America""" +2024-07-12,31177,7502,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",163.98,"{\"": \""24%\""}",274343,0,"""Europe""" +2023-11-11,31178,6620,"[\""Phone\""]",4803.27,"{\""loyalty\"": \""11%\""}",202616,1,"""Asia""" +2023-02-17,31179,1004,"[\""Charger\""]",4713.63,"{\"": \""11%\""}",49352,0,"""Asia""" +2023-08-17,31180,5943,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2033.13,"{\""seasonal\"": \""25%\""}",13748,0,"""North America""" +2023-12-23,31181,752,"[\""Keyboard\""]",1192.76,{},74578,1,"""South America""" +2023-05-07,31182,9026,"[\""Wireless Mouse\"", \""Monitor\""]",4704.73,{},162177,1,"""Europe""" +2024-01-28,31183,7720,"[\""Monitor\""]",3252.09,"{\""seasonal\"": \""13%\""}",221123,0,"""Europe""" +2024-12-16,31184,1067,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1733.48,{},113340,0,"""Africa""" +2023-02-19,31185,9949,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4274.02,"{\"": \""6%\""}",75716,0,"""North America""" +2023-06-05,31186,5017,"[\""Headphones\"", \""Charger\""]",4367.66,{},249839,1,"""South America""" +2023-05-13,31187,4065,"[\""Phone\""]",4471.06,"{\""seasonal\"": \""5%\""}",78963,0,"""Asia""" +2023-11-01,31188,3779,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",157.18,"{\""loyalty\"": \""17%\""}",12185,0,"""South America""" +2024-03-22,31189,3304,"[\""Headphones\"", \""Tablet\""]",3728.18,{},232178,0,"""Asia""" +2023-07-06,31190,6708,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3607.82,"{\""loyalty\"": \""25%\""}",160261,1,"""Europe""" +2024-06-03,31191,8146,"[\""Phone\""]",4934.0,"{\""promo\"": \""9%\""}",51582,0,"""North America""" +2024-06-13,31192,6256,"[\""Headphones\"", \""Phone\""]",4057.52,"{\""promo\"": \""26%\""}",187430,0,"""South America""" +2024-07-05,31193,4683,"[\""Headphones\"", \""Keyboard\""]",4784.2,"{\""seasonal\"": \""17%\""}",73124,0,"""North America""" +2024-06-04,31194,9016,"[\""Phone\""]",4803.72,"{\""promo\"": \""24%\""}",169435,1,"""Asia""" +2023-05-28,31195,7648,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3480.56,{},245507,0,"""Asia""" +2023-08-04,31196,5260,"[\""Charger\"", \""Tablet\""]",98.49,"{\"": \""10%\""}",295253,0,"""Asia""" +2023-02-06,31197,7448,"[\""Phone\"", \""Keyboard\""]",2491.69,"{\"": \""6%\""}",183119,0,"""Asia""" +2024-08-07,31198,2365,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",348.43,{},211173,1,"""Africa""" +2023-07-10,31199,8502,"[\""Laptop\""]",268.99,{},106756,0,"""North America""" +2024-05-01,31200,7755,"[\""Keyboard\""]",3226.17,{},139347,1,"""Europe""" +2023-01-28,31201,6464,"[\""Tablet\"", \""Headphones\""]",3247.39,{},136406,1,"""Europe""" +2024-06-10,31202,1483,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3762.5,"{\"": \""20%\""}",14628,1,"""Africa""" +2024-01-19,31203,8023,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",769.88,{},111675,0,"""South America""" +2024-04-23,31204,6127,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2650.31,{},97457,0,"""South America""" +2023-11-11,31205,3708,"[\""Tablet\"", \""Monitor\""]",3557.15,{},205907,0,"""North America""" +2023-03-06,31206,5558,"[\""Keyboard\""]",2515.6,{},290295,1,"""South America""" +2024-07-31,31207,7392,"[\""Wireless Mouse\"", \""Keyboard\""]",4828.07,{},228512,0,"""South America""" +2024-09-15,31208,8420,"[\""Laptop\"", \""Keyboard\""]",4656.32,"{\""promo\"": \""12%\""}",138972,1,"""South America""" +2024-12-24,31209,1739,"[\""Charger\"", \""Keyboard\""]",2390.69,"{\"": \""15%\""}",270136,1,"""Asia""" +2023-10-16,31210,4054,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1834.62,{},172302,0,"""Asia""" +2023-10-20,31211,489,"[\""Monitor\""]",1626.96,{},124322,1,"""South America""" +2023-06-05,31212,3203,"[\""Laptop\""]",2334.04,{},210504,1,"""South America""" +2023-12-14,31213,3521,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4607.13,{},227578,0,"""Asia""" +2023-10-19,31214,3346,"[\""Headphones\"", \""Keyboard\""]",2862.54,{},219414,1,"""Africa""" +2024-10-01,31215,9043,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2166.61,{},12574,0,"""Europe""" +2023-06-23,31216,3317,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1340.18,"{\""promo\"": \""26%\""}",82042,0,"""North America""" +2023-06-20,31217,8438,"[\""Keyboard\""]",4966.04,{},142647,1,"""South America""" +2023-03-09,31218,9159,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3347.16,"{\""seasonal\"": \""8%\""}",48621,1,"""Africa""" +2024-07-08,31219,9173,"[\""Wireless Mouse\"", \""Laptop\""]",405.29,{},26998,0,"""Africa""" +2024-12-10,31220,1600,"[\""Monitor\"", \""Charger\""]",1847.9,"{\""loyalty\"": \""29%\""}",76914,0,"""Africa""" +2024-09-20,31221,8817,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1566.5,{},43542,0,"""Asia""" +2023-02-14,31222,8033,"[\""Phone\"", \""Wireless Mouse\""]",3579.26,"{\""seasonal\"": \""10%\""}",11858,1,"""Europe""" +2023-08-05,31223,7702,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4651.0,"{\""seasonal\"": \""22%\""}",211877,1,"""Asia""" +2024-03-20,31224,7809,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1824.93,{},261463,1,"""North America""" +2023-03-06,31225,7347,"[\""Charger\"", \""Headphones\""]",1826.12,"{\""loyalty\"": \""20%\""}",59235,1,"""Asia""" +2023-05-30,31226,3059,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2288.64,{},22117,0,"""Asia""" +2024-01-08,31227,4699,"[\""Wireless Mouse\"", \""Tablet\""]",1858.75,"{\""seasonal\"": \""28%\""}",67268,1,"""South America""" +2024-05-15,31228,133,"[\""Charger\"", \""Laptop\""]",1648.39,{},58224,1,"""Asia""" +2024-12-24,31229,6020,"[\""Monitor\""]",2306.35,"{\""promo\"": \""5%\""}",252336,0,"""North America""" +2024-07-17,31230,5397,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1768.03,"{\"": \""30%\""}",139625,1,"""South America""" +2024-07-09,31231,8045,"[\""Charger\""]",2160.8,"{\""promo\"": \""14%\""}",117406,0,"""Europe""" +2024-10-09,31232,3334,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4154.31,"{\""promo\"": \""27%\""}",100519,0,"""Europe""" +2023-01-20,31233,2211,"[\""Keyboard\""]",3525.98,"{\""promo\"": \""6%\""}",88670,0,"""North America""" +2023-05-14,31234,4787,"[\""Tablet\"", \""Wireless Mouse\""]",1969.57,{},286689,0,"""Asia""" +2023-01-16,31235,2701,"[\""Laptop\"", \""Wireless Mouse\""]",2534.66,"{\""seasonal\"": \""30%\""}",210336,0,"""Africa""" +2023-03-12,31236,729,"[\""Monitor\"", \""Keyboard\""]",3713.78,"{\""seasonal\"": \""27%\""}",64969,1,"""North America""" +2024-05-22,31237,3452,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",183.32,"{\""seasonal\"": \""8%\""}",94735,1,"""North America""" +2024-07-03,31238,284,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1519.42,"{\""loyalty\"": \""20%\""}",186383,1,"""North America""" +2023-06-26,31239,4861,"[\""Laptop\"", \""Monitor\""]",1749.55,{},111526,0,"""Europe""" +2024-08-24,31240,576,"[\""Laptop\"", \""Tablet\""]",4475.63,{},27016,0,"""Europe""" +2023-08-17,31241,1978,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1882.48,"{\""loyalty\"": \""27%\""}",78680,1,"""South America""" +2023-08-10,31242,48,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3464.45,"{\"": \""8%\""}",81833,1,"""Europe""" +2024-02-11,31243,4147,"[\""Tablet\""]",3156.4,"{\""promo\"": \""27%\""}",81957,0,"""Europe""" +2023-01-10,31244,5124,"[\""Charger\""]",4979.22,"{\"": \""15%\""}",193930,0,"""North America""" +2023-10-07,31245,8441,"[\""Headphones\""]",3419.2,{},289084,0,"""Africa""" +2024-05-19,31246,8376,"[\""Phone\"", \""Keyboard\""]",3861.29,{},111304,0,"""Asia""" +2023-09-25,31247,4088,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1102.5,"{\""promo\"": \""26%\""}",77241,0,"""South America""" +2023-01-11,31248,7053,"[\""Keyboard\"", \""Phone\""]",4909.6,{},102376,1,"""South America""" +2024-12-25,31249,2575,"[\""Headphones\""]",2194.6,{},138684,0,"""Asia""" +2024-11-30,31250,8737,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4725.65,"{\"": \""17%\""}",32060,0,"""Asia""" +2023-08-12,31251,7463,"[\""Monitor\""]",4067.18,{},12054,1,"""North America""" +2023-07-26,31252,6253,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3812.39,{},7477,0,"""Asia""" +2024-07-09,31253,3324,"[\""Tablet\""]",3830.64,"{\""promo\"": \""14%\""}",138335,1,"""North America""" +2023-05-14,31254,7361,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1951.44,"{\""promo\"": \""15%\""}",250917,1,"""Asia""" +2024-08-25,31255,1794,"[\""Phone\"", \""Keyboard\""]",990.58,"{\""promo\"": \""11%\""}",4190,0,"""South America""" +2024-09-08,31256,4183,"[\""Phone\""]",2341.7,"{\""loyalty\"": \""19%\""}",32742,1,"""Asia""" +2024-08-18,31257,3173,"[\""Wireless Mouse\""]",3453.43,"{\"": \""29%\""}",209547,1,"""South America""" +2023-08-10,31258,9833,"[\""Headphones\"", \""Charger\""]",1651.88,"{\""promo\"": \""18%\""}",230639,1,"""South America""" +2024-06-02,31259,258,"[\""Laptop\""]",969.12,{},246540,1,"""Asia""" +2024-02-13,31260,8189,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1419.79,"{\"": \""6%\""}",46933,1,"""Asia""" +2024-06-13,31261,3907,"[\""Laptop\""]",4623.1,"{\""seasonal\"": \""22%\""}",258423,0,"""South America""" +2024-08-06,31262,453,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1974.59,{},279778,0,"""North America""" +2023-08-02,31263,7491,"[\""Tablet\""]",2448.29,"{\"": \""6%\""}",128201,1,"""South America""" +2023-08-20,31264,2889,"[\""Charger\""]",2392.1,"{\"": \""5%\""}",46118,1,"""North America""" +2023-03-10,31265,8154,"[\""Tablet\"", \""Monitor\""]",2295.25,{},105924,1,"""Africa""" +2023-11-05,31266,7622,"[\""Charger\""]",396.62,"{\""loyalty\"": \""23%\""}",110078,1,"""Asia""" +2024-09-25,31267,2688,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",595.11,"{\"": \""25%\""}",183639,0,"""South America""" +2024-02-16,31268,8219,"[\""Laptop\""]",4109.6,"{\"": \""24%\""}",5262,0,"""North America""" +2023-01-27,31269,8342,"[\""Wireless Mouse\"", \""Laptop\""]",1044.28,"{\""seasonal\"": \""23%\""}",114082,1,"""Africa""" +2023-11-09,31270,3588,"[\""Headphones\"", \""Tablet\""]",2118.08,"{\""promo\"": \""20%\""}",58073,1,"""Europe""" +2024-11-22,31271,3734,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3107.57,{},38979,1,"""North America""" +2023-02-02,31272,4463,"[\""Charger\""]",2337.29,"{\""loyalty\"": \""26%\""}",108431,1,"""Europe""" +2023-06-04,31273,8829,"[\""Wireless Mouse\"", \""Tablet\""]",785.54,{},198476,0,"""Europe""" +2024-01-05,31274,6138,"[\""Headphones\"", \""Monitor\""]",569.79,{},204677,1,"""Africa""" +2024-01-26,31275,1302,"[\""Keyboard\""]",2679.86,"{\""loyalty\"": \""29%\""}",239703,1,"""Asia""" +2024-04-04,31276,1516,"[\""Charger\"", \""Monitor\""]",2253.09,"{\""seasonal\"": \""21%\""}",179044,1,"""Africa""" +2023-11-11,31277,7610,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3078.13,"{\""seasonal\"": \""6%\""}",284731,0,"""Africa""" +2024-03-06,31278,849,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1760.67,{},154814,0,"""Europe""" +2023-05-20,31279,7346,"[\""Keyboard\"", \""Phone\""]",4142.36,"{\""loyalty\"": \""12%\""}",150633,1,"""South America""" +2023-06-01,31280,9066,"[\""Tablet\"", \""Charger\""]",2017.46,{},254846,1,"""North America""" +2023-02-02,31281,3163,"[\""Wireless Mouse\""]",3847.64,{},180595,0,"""North America""" +2024-08-10,31282,7075,"[\""Charger\""]",501.28,{},223547,0,"""Asia""" +2024-12-16,31283,4370,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1609.26,"{\"": \""25%\""}",164165,0,"""Africa""" +2023-11-06,31284,5374,"[\""Phone\"", \""Monitor\""]",2438.05,{},35504,0,"""Africa""" +2023-02-03,31285,8210,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3959.17,{},83500,0,"""South America""" +2023-06-13,31286,3349,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",368.54,{},138901,0,"""South America""" +2023-02-01,31287,3677,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1367.7,"{\"": \""11%\""}",280114,0,"""North America""" +2024-08-15,31288,3196,"[\""Phone\"", \""Tablet\""]",2578.13,"{\""seasonal\"": \""14%\""}",184722,1,"""Asia""" +2023-07-09,31289,6652,"[\""Laptop\"", \""Phone\""]",4848.75,{},297575,1,"""Asia""" +2023-01-22,31290,5390,"[\""Phone\"", \""Keyboard\""]",2450.47,"{\"": \""14%\""}",212268,1,"""South America""" +2024-08-04,31291,9067,"[\""Headphones\""]",4769.32,{},3914,1,"""Europe""" +2023-11-27,31292,7820,"[\""Keyboard\""]",214.13,"{\""loyalty\"": \""13%\""}",181837,1,"""Europe""" +2024-09-20,31293,2857,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1762.52,{},38702,1,"""Asia""" +2023-01-09,31294,6661,"[\""Wireless Mouse\""]",2594.19,"{\"": \""12%\""}",169375,1,"""South America""" +2024-09-05,31295,3103,"[\""Wireless Mouse\"", \""Monitor\""]",999.64,"{\""loyalty\"": \""29%\""}",250068,0,"""Asia""" +2023-01-01,31296,5233,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",620.02,"{\""promo\"": \""10%\""}",91805,1,"""Asia""" +2024-04-16,31297,130,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3384.26,"{\"": \""20%\""}",26078,1,"""South America""" +2023-07-01,31298,9232,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4443.7,"{\""seasonal\"": \""30%\""}",35466,0,"""Europe""" +2023-12-16,31299,5801,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1959.49,"{\""seasonal\"": \""20%\""}",292866,1,"""Europe""" +2024-04-05,31300,7950,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3429.09,"{\""promo\"": \""14%\""}",173041,0,"""Africa""" +2023-06-14,31301,9035,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4510.51,"{\""loyalty\"": \""15%\""}",243206,1,"""North America""" +2023-12-27,31302,1516,"[\""Laptop\"", \""Keyboard\""]",758.88,{},178715,1,"""North America""" +2023-01-04,31303,9439,"[\""Tablet\""]",1227.79,"{\""promo\"": \""13%\""}",25566,1,"""North America""" +2023-10-04,31304,229,"[\""Keyboard\"", \""Phone\""]",1938.6,{},234042,1,"""Europe""" +2023-04-24,31305,3896,"[\""Monitor\""]",2253.09,"{\""promo\"": \""13%\""}",214534,0,"""Europe""" +2023-04-22,31306,5705,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",639.33,"{\""seasonal\"": \""11%\""}",214211,1,"""Asia""" +2023-08-03,31307,347,"[\""Laptop\""]",2704.06,{},274106,0,"""Asia""" +2023-04-30,31308,3537,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",643.64,"{\"": \""20%\""}",180278,0,"""North America""" +2024-02-08,31309,5647,"[\""Tablet\""]",1987.28,{},270926,0,"""Africa""" +2024-07-25,31310,5774,"[\""Keyboard\"", \""Laptop\""]",3701.99,{},11536,1,"""Europe""" +2024-02-24,31311,6148,"[\""Laptop\"", \""Monitor\""]",1649.96,{},197794,1,"""Europe""" +2023-03-23,31312,785,"[\""Charger\"", \""Phone\""]",1220.62,{},210116,0,"""North America""" +2024-07-20,31313,6021,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1584.41,"{\""loyalty\"": \""24%\""}",159697,0,"""Europe""" +2024-10-20,31314,3506,"[\""Charger\""]",433.78,{},56674,1,"""South America""" +2023-09-06,31315,8786,"[\""Wireless Mouse\"", \""Keyboard\""]",3352.56,"{\""promo\"": \""11%\""}",96829,0,"""Africa""" +2023-08-28,31316,3852,"[\""Keyboard\""]",3423.45,"{\""loyalty\"": \""20%\""}",125148,0,"""Asia""" +2024-10-19,31317,2843,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",672.43,"{\""promo\"": \""24%\""}",164166,1,"""Europe""" +2023-04-19,31318,564,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3927.93,"{\""promo\"": \""7%\""}",181715,0,"""Europe""" +2024-04-27,31319,9424,"[\""Wireless Mouse\"", \""Phone\""]",2923.27,"{\"": \""7%\""}",91350,1,"""North America""" +2023-06-20,31320,1743,"[\""Wireless Mouse\""]",4255.82,"{\""promo\"": \""17%\""}",13363,1,"""South America""" +2023-08-16,31321,7300,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3656.9,"{\""seasonal\"": \""13%\""}",231999,0,"""Africa""" +2023-02-17,31322,7482,"[\""Wireless Mouse\"", \""Headphones\""]",3368.2,"{\""loyalty\"": \""21%\""}",18885,1,"""North America""" +2023-09-07,31323,9360,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3235.85,"{\""loyalty\"": \""29%\""}",49428,0,"""Africa""" +2023-02-04,31324,5539,"[\""Charger\"", \""Laptop\""]",1159.3,{},267211,0,"""North America""" +2023-04-24,31325,5760,"[\""Charger\"", \""Headphones\""]",3871.11,{},151464,1,"""Europe""" +2024-01-28,31326,5635,"[\""Monitor\"", \""Keyboard\""]",2243.58,{},4300,1,"""Europe""" +2024-04-18,31327,1847,"[\""Phone\"", \""Monitor\""]",4157.46,{},176162,0,"""North America""" +2023-09-06,31328,2177,"[\""Laptop\""]",3630.16,{},143704,0,"""Asia""" +2023-01-10,31329,7928,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1922.96,"{\""loyalty\"": \""13%\""}",265312,1,"""North America""" +2023-07-06,31330,1686,"[\""Tablet\""]",2986.43,"{\""seasonal\"": \""13%\""}",24720,0,"""Africa""" +2024-06-27,31331,9619,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",757.36,{},227595,0,"""Africa""" +2024-04-17,31332,2014,"[\""Monitor\""]",2518.33,"{\""seasonal\"": \""6%\""}",61114,0,"""Asia""" +2023-05-10,31333,730,"[\""Wireless Mouse\"", \""Tablet\""]",4151.89,{},91663,0,"""South America""" +2023-06-23,31334,4465,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",993.79,"{\"": \""21%\""}",189046,0,"""Africa""" +2023-08-06,31335,6665,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3565.29,{},15418,0,"""South America""" +2023-10-11,31336,727,"[\""Phone\""]",3883.03,{},243197,0,"""South America""" +2023-01-12,31337,7542,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",668.77,{},175670,0,"""Europe""" +2023-08-10,31338,8707,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",464.78,"{\""loyalty\"": \""22%\""}",80902,0,"""Africa""" +2023-03-15,31339,849,"[\""Charger\""]",4059.31,"{\"": \""22%\""}",217601,1,"""Africa""" +2023-06-30,31340,2815,"[\""Wireless Mouse\""]",4068.67,"{\""seasonal\"": \""16%\""}",297126,1,"""Europe""" +2024-10-28,31341,7368,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1656.6,"{\""loyalty\"": \""15%\""}",156447,0,"""Europe""" +2024-08-24,31342,722,"[\""Tablet\"", \""Headphones\""]",3049.06,{},197287,1,"""Africa""" +2023-10-25,31343,7566,"[\""Wireless Mouse\"", \""Tablet\""]",2829.51,"{\""seasonal\"": \""18%\""}",207993,1,"""Europe""" +2024-07-23,31344,4398,"[\""Wireless Mouse\"", \""Laptop\""]",4121.57,"{\""loyalty\"": \""16%\""}",247398,1,"""Africa""" +2024-06-02,31345,796,"[\""Keyboard\""]",3560.72,{},229220,0,"""North America""" +2023-03-10,31346,408,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1948.41,{},179227,1,"""Asia""" +2023-07-27,31347,322,"[\""Monitor\""]",2944.08,"{\""promo\"": \""8%\""}",99202,1,"""Europe""" +2024-03-12,31348,8101,"[\""Tablet\"", \""Wireless Mouse\""]",4948.12,{},177358,1,"""Europe""" +2024-12-24,31349,7720,"[\""Tablet\"", \""Keyboard\""]",1466.84,"{\"": \""17%\""}",202243,1,"""Asia""" +2023-12-08,31350,7261,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3769.4,{},215778,1,"""Europe""" +2023-02-27,31351,2688,"[\""Tablet\"", \""Headphones\""]",426.36,"{\""loyalty\"": \""7%\""}",281211,0,"""South America""" +2024-10-11,31352,6905,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2219.61,{},74906,1,"""Asia""" +2023-03-20,31353,474,"[\""Laptop\""]",1111.26,{},66687,1,"""South America""" +2023-10-15,31354,63,"[\""Wireless Mouse\""]",2841.61,"{\""loyalty\"": \""29%\""}",252777,0,"""South America""" +2023-11-14,31355,7579,"[\""Monitor\""]",3459.09,"{\""promo\"": \""13%\""}",211744,1,"""Africa""" +2024-01-19,31356,3734,"[\""Charger\"", \""Phone\""]",808.11,{},84556,1,"""North America""" +2024-01-29,31357,9452,"[\""Headphones\"", \""Tablet\""]",721.54,{},88969,0,"""South America""" +2024-01-13,31358,8973,"[\""Laptop\"", \""Phone\""]",958.7,"{\""seasonal\"": \""15%\""}",257884,0,"""Europe""" +2023-04-27,31359,3476,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",545.64,"{\""loyalty\"": \""10%\""}",48964,1,"""South America""" +2023-06-19,31360,1200,"[\""Monitor\""]",4823.91,{},47982,0,"""Europe""" +2024-01-06,31361,732,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",534.49,"{\"": \""16%\""}",273236,1,"""Europe""" +2023-07-18,31362,719,"[\""Monitor\"", \""Phone\""]",271.7,{},126984,0,"""South America""" +2024-12-09,31363,7321,"[\""Wireless Mouse\"", \""Headphones\""]",339.57,"{\""loyalty\"": \""5%\""}",90685,1,"""Africa""" +2024-10-03,31364,9217,"[\""Headphones\""]",1448.93,"{\""promo\"": \""9%\""}",16111,0,"""South America""" +2024-05-31,31365,4810,"[\""Tablet\""]",3695.66,"{\""seasonal\"": \""14%\""}",129551,1,"""South America""" +2024-01-04,31366,3697,"[\""Laptop\"", \""Wireless Mouse\""]",2781.43,"{\""seasonal\"": \""12%\""}",37759,1,"""Europe""" +2024-02-19,31367,46,"[\""Headphones\"", \""Tablet\""]",4685.64,"{\""seasonal\"": \""13%\""}",105214,1,"""Europe""" +2024-08-28,31368,2872,"[\""Phone\""]",4104.22,"{\"": \""16%\""}",5950,1,"""Africa""" +2024-12-24,31369,2296,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",678.77,"{\""seasonal\"": \""28%\""}",60043,0,"""Africa""" +2024-07-30,31370,4894,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4382.71,{},278084,0,"""South America""" +2023-07-07,31371,5846,"[\""Headphones\""]",1468.79,{},294969,0,"""South America""" +2024-09-14,31372,9864,"[\""Monitor\""]",300.03,{},247653,1,"""Asia""" +2023-06-04,31373,5797,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2398.84,"{\""loyalty\"": \""15%\""}",61666,0,"""Europe""" +2024-03-21,31374,9912,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",59.34,{},283955,0,"""North America""" +2023-06-16,31375,146,"[\""Headphones\"", \""Phone\""]",717.89,"{\""promo\"": \""13%\""}",80026,0,"""South America""" +2024-03-26,31376,3729,"[\""Headphones\""]",4257.07,{},143083,0,"""Asia""" +2024-01-29,31377,1829,"[\""Tablet\"", \""Headphones\""]",2147.53,{},283833,1,"""North America""" +2024-11-19,31378,3366,"[\""Wireless Mouse\""]",4092.01,"{\""promo\"": \""18%\""}",33638,1,"""South America""" +2024-10-28,31379,1251,"[\""Laptop\"", \""Wireless Mouse\""]",4314.5,"{\""promo\"": \""9%\""}",234531,0,"""South America""" +2024-05-11,31380,9135,"[\""Tablet\"", \""Wireless Mouse\""]",3724.77,{},199400,1,"""South America""" +2023-01-01,31381,432,"[\""Laptop\"", \""Charger\""]",179.34,{},29509,0,"""Europe""" +2023-04-11,31382,2319,"[\""Wireless Mouse\"", \""Keyboard\""]",3029.33,{},87929,1,"""Africa""" +2023-07-21,31383,4087,"[\""Headphones\"", \""Tablet\""]",3396.18,"{\""promo\"": \""18%\""}",231364,0,"""Africa""" +2024-01-06,31384,6381,"[\""Wireless Mouse\""]",450.56,{},133950,0,"""South America""" +2024-12-09,31385,417,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3999.51,{},182548,1,"""Asia""" +2023-12-29,31386,8291,"[\""Laptop\""]",898.51,{},208717,0,"""South America""" +2023-03-20,31387,8451,"[\""Phone\"", \""Headphones\""]",4673.76,"{\""promo\"": \""19%\""}",65866,0,"""Asia""" +2023-05-23,31388,5807,"[\""Headphones\"", \""Laptop\""]",1667.03,"{\""promo\"": \""23%\""}",19693,0,"""South America""" +2024-05-03,31389,7223,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",514.77,{},5398,0,"""Africa""" +2023-03-25,31390,7627,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1659.12,{},243493,0,"""South America""" +2023-08-20,31391,4893,"[\""Charger\""]",2667.31,"{\""promo\"": \""5%\""}",234895,0,"""North America""" +2023-10-30,31392,4684,"[\""Tablet\"", \""Monitor\""]",3176.58,{},214391,0,"""Asia""" +2024-08-02,31393,5831,"[\""Monitor\""]",4456.92,{},256736,1,"""North America""" +2024-09-17,31394,1010,"[\""Wireless Mouse\""]",465.38,"{\"": \""17%\""}",275645,0,"""Africa""" +2023-06-06,31395,1848,"[\""Charger\"", \""Wireless Mouse\""]",4373.28,"{\""loyalty\"": \""20%\""}",212247,1,"""Asia""" +2024-01-10,31396,4935,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1302.2,"{\""loyalty\"": \""27%\""}",86499,0,"""Asia""" +2024-12-09,31397,594,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2243.94,"{\""promo\"": \""23%\""}",269273,0,"""Europe""" +2024-05-31,31398,693,"[\""Wireless Mouse\"", \""Phone\""]",2819.82,{},5983,0,"""Africa""" +2023-07-06,31399,8906,"[\""Keyboard\""]",3367.55,{},119066,1,"""North America""" +2023-11-11,31400,2172,"[\""Tablet\"", \""Laptop\""]",2684.92,"{\""promo\"": \""8%\""}",176360,0,"""South America""" +2024-11-28,31401,4252,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4268.36,"{\"": \""28%\""}",198091,0,"""Asia""" +2024-08-07,31402,4155,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",964.7,{},96336,1,"""Africa""" +2024-05-30,31403,2325,"[\""Phone\"", \""Headphones\""]",115.53,"{\""promo\"": \""23%\""}",286339,1,"""Africa""" +2023-12-24,31404,8711,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4905.7,{},68613,0,"""South America""" +2024-12-08,31405,2954,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2370.67,"{\"": \""21%\""}",81064,1,"""North America""" +2024-07-24,31406,7894,"[\""Wireless Mouse\""]",4559.43,"{\""seasonal\"": \""23%\""}",253780,1,"""Europe""" +2023-05-04,31407,2459,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",508.76,"{\""seasonal\"": \""17%\""}",8332,0,"""North America""" +2023-10-28,31408,984,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2222.91,"{\"": \""27%\""}",78112,1,"""South America""" +2023-09-25,31409,8051,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2660.26,"{\"": \""8%\""}",197359,0,"""South America""" +2023-05-16,31410,1648,"[\""Monitor\""]",350.46,{},296247,0,"""Asia""" +2023-05-20,31411,3831,"[\""Keyboard\"", \""Tablet\""]",517.38,{},144829,0,"""North America""" +2024-06-01,31412,7257,"[\""Charger\"", \""Headphones\""]",1684.5,{},215202,0,"""Asia""" +2023-02-03,31413,6685,"[\""Headphones\"", \""Charger\""]",906.51,"{\""promo\"": \""13%\""}",105115,1,"""South America""" +2024-02-22,31414,8166,"[\""Headphones\""]",4653.76,"{\""promo\"": \""9%\""}",266693,0,"""North America""" +2023-06-08,31415,6971,"[\""Laptop\""]",499.8,"{\"": \""12%\""}",251727,0,"""North America""" +2024-06-25,31416,929,"[\""Tablet\""]",4475.56,"{\""seasonal\"": \""11%\""}",155807,1,"""Europe""" +2024-05-02,31417,2015,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3888.6,{},168515,1,"""Africa""" +2024-10-22,31418,863,"[\""Tablet\""]",1113.18,{},71848,0,"""South America""" +2023-03-13,31419,8652,"[\""Keyboard\"", \""Charger\""]",1294.37,{},121392,0,"""North America""" +2024-02-05,31420,9892,"[\""Headphones\"", \""Keyboard\""]",1657.06,{},201077,1,"""South America""" +2023-03-04,31421,4604,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1915.26,"{\""loyalty\"": \""12%\""}",184730,1,"""North America""" +2023-09-27,31422,7332,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2190.01,{},132511,0,"""Europe""" +2024-06-14,31423,1879,"[\""Tablet\""]",283.25,{},145073,0,"""Africa""" +2023-05-29,31424,5169,"[\""Keyboard\"", \""Monitor\""]",3172.24,{},139755,0,"""Africa""" +2024-09-25,31425,9967,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1082.28,{},147161,1,"""North America""" +2023-12-30,31426,927,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2025.85,{},94451,1,"""Asia""" +2023-05-13,31427,7800,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2275.29,"{\""promo\"": \""16%\""}",141920,1,"""South America""" +2024-11-28,31428,8094,"[\""Phone\""]",1422.67,{},185984,0,"""North America""" +2023-03-31,31429,9831,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2002.35,"{\"": \""9%\""}",231327,0,"""North America""" +2024-05-15,31430,3170,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1937.89,"{\""loyalty\"": \""5%\""}",11851,1,"""Europe""" +2024-03-29,31431,6922,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4328.44,"{\""seasonal\"": \""14%\""}",159199,0,"""Europe""" +2024-04-14,31432,6773,"[\""Keyboard\"", \""Tablet\""]",1244.57,"{\"": \""19%\""}",9297,0,"""North America""" +2023-07-08,31433,3118,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2394.3,{},153210,1,"""North America""" +2024-01-06,31434,1596,"[\""Monitor\"", \""Headphones\""]",2979.16,{},88422,1,"""South America""" +2024-07-05,31435,6523,"[\""Headphones\""]",3680.36,"{\""promo\"": \""20%\""}",64327,0,"""Asia""" +2024-05-22,31436,3828,"[\""Headphones\"", \""Laptop\""]",1956.98,"{\""loyalty\"": \""20%\""}",6348,1,"""Asia""" +2023-10-26,31437,1161,"[\""Wireless Mouse\"", \""Tablet\""]",2952.95,{},129845,1,"""North America""" +2024-04-14,31438,5063,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4778.46,{},191447,1,"""Asia""" +2024-02-09,31439,7749,"[\""Charger\""]",3194.74,"{\""loyalty\"": \""23%\""}",261273,1,"""Europe""" +2023-09-08,31440,1683,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2679.34,{},278646,1,"""North America""" +2023-09-11,31441,8480,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4089.51,"{\""seasonal\"": \""12%\""}",285739,0,"""South America""" +2024-01-27,31442,3752,"[\""Phone\"", \""Charger\""]",96.7,{},67712,0,"""Africa""" +2023-12-12,31443,9823,"[\""Phone\""]",2057.86,"{\""seasonal\"": \""14%\""}",170370,0,"""Asia""" +2024-09-20,31444,6167,"[\""Laptop\""]",1058.71,{},179480,1,"""Europe""" +2023-11-05,31445,1757,"[\""Laptop\""]",2985.44,{},55084,0,"""Asia""" +2024-02-04,31446,6264,"[\""Tablet\""]",813.52,{},67687,1,"""Africa""" +2024-05-19,31447,1580,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4687.99,"{\""seasonal\"": \""16%\""}",238557,1,"""North America""" +2023-12-25,31448,5000,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2445.69,{},27009,1,"""Europe""" +2023-06-19,31449,9821,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1804.01,{},270816,0,"""Africa""" +2024-11-25,31450,3449,"[\""Headphones\""]",3204.99,{},137911,1,"""Africa""" +2024-06-14,31451,4442,"[\""Monitor\""]",3374.52,{},113535,1,"""Africa""" +2024-02-19,31452,2999,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",463.85,{},209850,0,"""Asia""" +2024-08-18,31453,5772,"[\""Tablet\""]",4265.66,"{\""promo\"": \""16%\""}",100207,0,"""Asia""" +2023-08-30,31454,4650,"[\""Laptop\""]",1498.84,"{\""promo\"": \""24%\""}",165087,1,"""Europe""" +2024-06-01,31455,4281,"[\""Headphones\"", \""Phone\""]",3071.68,{},247242,1,"""Africa""" +2024-02-07,31456,8613,"[\""Headphones\"", \""Laptop\""]",4704.79,{},269314,0,"""Africa""" +2024-06-22,31457,9575,"[\""Monitor\""]",4927.77,{},299578,0,"""South America""" +2024-05-01,31458,3351,"[\""Monitor\"", \""Laptop\""]",4562.68,{},225084,0,"""Africa""" +2024-01-11,31459,9634,"[\""Keyboard\"", \""Monitor\""]",543.12,"{\""seasonal\"": \""19%\""}",73499,1,"""North America""" +2024-08-27,31460,7820,"[\""Phone\"", \""Tablet\""]",4187.5,{},242712,1,"""North America""" +2023-05-15,31461,1882,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",249.05,"{\""seasonal\"": \""19%\""}",84897,0,"""Europe""" +2024-09-09,31462,3867,"[\""Laptop\""]",4586.05,{},213325,0,"""Africa""" +2023-02-04,31463,8926,"[\""Phone\""]",4230.08,{},128065,1,"""Europe""" +2024-04-28,31464,7009,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1616.48,"{\""promo\"": \""18%\""}",78088,0,"""Africa""" +2023-10-29,31465,6721,"[\""Charger\""]",764.16,{},200611,0,"""Europe""" +2023-10-08,31466,3371,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",747.64,"{\""promo\"": \""13%\""}",279411,1,"""Asia""" +2024-11-10,31467,5465,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",986.45,"{\""loyalty\"": \""16%\""}",145851,1,"""Asia""" +2024-09-10,31468,7225,"[\""Charger\"", \""Headphones\""]",3883.27,{},163899,0,"""Europe""" +2023-08-15,31469,9832,"[\""Headphones\"", \""Keyboard\""]",3973.69,{},169339,1,"""Asia""" +2024-09-05,31470,247,"[\""Phone\""]",3014.81,{},240018,0,"""North America""" +2024-08-30,31471,4981,"[\""Charger\""]",4907.15,{},4359,0,"""North America""" +2024-11-14,31472,9849,"[\""Monitor\"", \""Laptop\""]",4977.5,{},162177,1,"""North America""" +2024-07-26,31473,5543,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1695.1,{},95064,1,"""North America""" +2024-04-02,31474,8338,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4788.93,{},273887,0,"""South America""" +2024-09-01,31475,7688,"[\""Wireless Mouse\""]",632.02,{},200424,1,"""North America""" +2024-05-27,31476,9241,"[\""Charger\"", \""Tablet\"", \""Phone\""]",261.39,{},235858,0,"""South America""" +2024-11-24,31477,1241,"[\""Charger\""]",2302.85,{},259619,0,"""Asia""" +2024-11-12,31478,6082,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1203.02,{},297259,1,"""Africa""" +2024-11-21,31479,8680,"[\""Monitor\"", \""Charger\""]",4976.92,{},109522,0,"""North America""" +2024-09-12,31480,3636,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1660.56,{},127029,1,"""Europe""" +2024-10-07,31481,7654,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3819.8,"{\""loyalty\"": \""5%\""}",73287,1,"""Africa""" +2023-10-03,31482,4292,"[\""Tablet\""]",539.08,"{\""seasonal\"": \""14%\""}",273093,1,"""Asia""" +2024-02-21,31483,5350,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1845.21,"{\""promo\"": \""10%\""}",74136,0,"""Europe""" +2023-09-10,31484,4541,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3125.21,"{\""promo\"": \""24%\""}",137564,0,"""Africa""" +2024-11-06,31485,1940,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1333.45,{},8320,0,"""Africa""" +2024-11-12,31486,8721,"[\""Tablet\"", \""Headphones\""]",1222.58,"{\""promo\"": \""8%\""}",220051,0,"""North America""" +2023-06-01,31487,4506,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3375.77,{},198731,0,"""South America""" +2024-09-18,31488,6029,"[\""Keyboard\""]",4658.26,{},187582,1,"""South America""" +2024-12-25,31489,1953,"[\""Tablet\""]",281.55,"{\""seasonal\"": \""23%\""}",248535,0,"""South America""" +2024-06-22,31490,1942,"[\""Wireless Mouse\"", \""Headphones\""]",1687.88,"{\"": \""14%\""}",256147,0,"""North America""" +2024-05-26,31491,2500,"[\""Headphones\""]",4442.82,{},171420,0,"""South America""" +2023-06-27,31492,1477,"[\""Keyboard\"", \""Wireless Mouse\""]",4556.53,"{\""promo\"": \""12%\""}",219146,1,"""South America""" +2024-11-27,31493,6817,"[\""Tablet\""]",2932.47,"{\""promo\"": \""10%\""}",249161,0,"""Asia""" +2024-09-03,31494,5763,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4453.12,"{\""seasonal\"": \""29%\""}",210450,1,"""Europe""" +2023-03-07,31495,6820,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2910.69,{},212155,1,"""Africa""" +2024-01-05,31496,8383,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2437.32,"{\""loyalty\"": \""24%\""}",187587,0,"""Africa""" +2023-10-17,31497,8249,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3474.97,"{\""loyalty\"": \""17%\""}",83172,0,"""North America""" +2023-08-05,31498,4805,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3657.18,"{\""seasonal\"": \""15%\""}",184121,0,"""South America""" +2024-07-24,31499,8762,"[\""Phone\"", \""Charger\""]",1134.89,{},116156,1,"""Europe""" +2023-02-23,31500,2201,"[\""Wireless Mouse\""]",4125.35,"{\"": \""19%\""}",22389,0,"""Europe""" +2023-04-16,31501,8373,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4442.87,"{\""seasonal\"": \""8%\""}",140654,0,"""Africa""" +2023-11-19,31502,3811,"[\""Wireless Mouse\""]",4419.38,"{\"": \""14%\""}",299085,0,"""Asia""" +2024-01-09,31503,9395,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1625.22,"{\"": \""22%\""}",261641,1,"""Europe""" +2023-07-26,31504,6736,"[\""Charger\""]",1009.61,{},45739,0,"""Europe""" +2023-01-21,31505,8435,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1236.89,{},66288,1,"""North America""" +2024-06-07,31506,6026,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",492.49,{},121867,0,"""South America""" +2023-04-06,31507,5931,"[\""Headphones\"", \""Laptop\""]",4416.87,"{\""promo\"": \""5%\""}",292739,0,"""South America""" +2024-03-19,31508,8433,"[\""Tablet\"", \""Charger\""]",4539.98,"{\""loyalty\"": \""19%\""}",273680,0,"""North America""" +2023-11-01,31509,8669,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",474.13,"{\""seasonal\"": \""20%\""}",82479,0,"""Asia""" +2024-02-12,31510,9546,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3855.06,"{\""promo\"": \""30%\""}",78766,0,"""Africa""" +2023-01-26,31511,570,"[\""Charger\"", \""Phone\"", \""Monitor\""]",947.39,{},264825,1,"""North America""" +2023-11-11,31512,3124,"[\""Wireless Mouse\""]",2236.06,"{\""promo\"": \""28%\""}",268623,0,"""North America""" +2023-11-25,31513,5399,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3667.82,"{\""seasonal\"": \""12%\""}",102953,1,"""Asia""" +2024-05-01,31514,4884,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4065.34,"{\""loyalty\"": \""17%\""}",257294,0,"""Asia""" +2024-01-15,31515,1299,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3356.33,{},175946,1,"""Europe""" +2023-10-28,31516,4374,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1450.64,"{\""loyalty\"": \""30%\""}",61330,0,"""South America""" +2024-06-25,31517,1018,"[\""Keyboard\""]",1835.97,{},104783,0,"""Asia""" +2023-03-07,31518,6181,"[\""Wireless Mouse\""]",2629.89,"{\""loyalty\"": \""24%\""}",193367,0,"""Europe""" +2024-01-22,31519,8117,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4591.11,"{\""promo\"": \""20%\""}",173449,1,"""Africa""" +2023-08-19,31520,4371,"[\""Wireless Mouse\""]",4217.15,{},227667,0,"""South America""" +2023-10-18,31521,6376,"[\""Laptop\""]",2634.52,{},204953,0,"""North America""" +2023-08-26,31522,9829,"[\""Monitor\"", \""Laptop\""]",3272.27,{},185929,0,"""Asia""" +2023-03-21,31523,2053,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3479.18,"{\"": \""23%\""}",140142,1,"""South America""" +2023-05-26,31524,2588,"[\""Monitor\""]",783.65,"{\""loyalty\"": \""24%\""}",222381,1,"""Africa""" +2023-12-30,31525,7922,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",396.59,{},32661,0,"""Europe""" +2024-07-08,31526,9994,"[\""Laptop\"", \""Wireless Mouse\""]",1453.93,"{\""loyalty\"": \""16%\""}",140950,1,"""Asia""" +2024-08-05,31527,6041,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2743.66,"{\"": \""18%\""}",24994,0,"""North America""" +2024-11-22,31528,3518,"[\""Wireless Mouse\""]",1289.87,{},267099,1,"""Asia""" +2024-11-26,31529,1617,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3333.62,"{\""loyalty\"": \""29%\""}",231421,1,"""Africa""" +2024-10-10,31530,9575,"[\""Keyboard\""]",4836.32,{},124436,1,"""Asia""" +2024-08-05,31531,9376,"[\""Laptop\""]",2475.52,{},12378,1,"""Europe""" +2023-07-01,31532,9784,"[\""Keyboard\"", \""Monitor\""]",2061.96,{},200548,1,"""Asia""" +2023-08-02,31533,9888,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1275.73,{},95126,0,"""Europe""" +2023-06-12,31534,2600,"[\""Wireless Mouse\""]",2534.97,{},137426,0,"""Asia""" +2023-05-20,31535,9053,"[\""Wireless Mouse\""]",2149.12,"{\"": \""14%\""}",269008,1,"""Asia""" +2024-12-24,31536,1096,"[\""Headphones\""]",370.58,{},270337,0,"""Asia""" +2023-02-24,31537,6138,"[\""Laptop\""]",966.96,{},169439,1,"""Europe""" +2024-03-31,31538,6879,"[\""Phone\"", \""Keyboard\""]",2349.13,"{\"": \""18%\""}",283875,0,"""Africa""" +2024-02-06,31539,1369,"[\""Headphones\""]",1562.72,"{\""promo\"": \""10%\""}",5527,0,"""Europe""" +2024-09-13,31540,6143,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1076.46,"{\""loyalty\"": \""27%\""}",170947,1,"""Africa""" +2023-05-16,31541,8283,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4442.66,{},161773,1,"""South America""" +2024-10-14,31542,6614,"[\""Charger\""]",3111.92,{},71109,0,"""North America""" +2024-01-15,31543,7276,"[\""Keyboard\"", \""Headphones\""]",1524.93,"{\""loyalty\"": \""20%\""}",53936,1,"""South America""" +2023-08-14,31544,8685,"[\""Monitor\""]",4741.53,{},128221,1,"""Europe""" +2024-02-02,31545,581,"[\""Laptop\"", \""Wireless Mouse\""]",3167.67,"{\""loyalty\"": \""16%\""}",65342,0,"""South America""" +2024-06-24,31546,6910,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4548.77,"{\""seasonal\"": \""5%\""}",267181,1,"""Africa""" +2023-06-25,31547,747,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4129.99,"{\""promo\"": \""14%\""}",71718,1,"""Africa""" +2024-10-13,31548,6514,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",97.51,{},97638,1,"""Africa""" +2024-05-08,31549,4179,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2768.46,{},297152,1,"""Europe""" +2023-08-17,31550,8876,"[\""Phone\"", \""Headphones\""]",371.18,{},80636,0,"""Africa""" +2023-05-22,31551,8393,"[\""Wireless Mouse\"", \""Charger\""]",1401.02,{},187082,0,"""Asia""" +2023-01-30,31552,6603,"[\""Tablet\"", \""Headphones\""]",2059.45,{},228709,1,"""Asia""" +2024-10-15,31553,9326,"[\""Monitor\""]",4133.54,"{\"": \""7%\""}",272701,1,"""South America""" +2024-09-26,31554,5206,"[\""Tablet\"", \""Phone\""]",2499.07,"{\""loyalty\"": \""30%\""}",156180,0,"""Asia""" +2024-03-08,31555,3755,"[\""Monitor\"", \""Laptop\""]",4545.03,{},167822,1,"""Asia""" +2024-12-26,31556,8658,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2711.66,{},299086,1,"""Africa""" +2023-06-06,31557,2419,"[\""Tablet\""]",1655.87,{},178464,0,"""Europe""" +2023-06-08,31558,9593,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",121.45,"{\""promo\"": \""14%\""}",96940,1,"""North America""" +2023-09-05,31559,3100,"[\""Charger\"", \""Laptop\""]",4034.32,"{\""seasonal\"": \""10%\""}",30700,0,"""North America""" +2023-09-24,31560,3298,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4962.5,"{\""seasonal\"": \""20%\""}",150284,0,"""Africa""" +2023-01-17,31561,1467,"[\""Charger\"", \""Monitor\""]",1323.29,"{\"": \""27%\""}",279157,0,"""Africa""" +2023-07-15,31562,8614,"[\""Wireless Mouse\"", \""Monitor\""]",1955.03,"{\"": \""23%\""}",265196,1,"""Europe""" +2024-01-06,31563,8459,"[\""Wireless Mouse\""]",1377.99,{},166369,1,"""North America""" +2024-03-16,31564,7764,"[\""Phone\"", \""Charger\""]",2390.77,"{\""loyalty\"": \""27%\""}",201286,0,"""South America""" +2024-09-29,31565,7252,"[\""Laptop\""]",2883.5,"{\"": \""20%\""}",118619,1,"""Africa""" +2024-09-03,31566,6972,"[\""Charger\""]",473.6,"{\""loyalty\"": \""29%\""}",192942,1,"""North America""" +2023-03-07,31567,4229,"[\""Monitor\"", \""Wireless Mouse\""]",4717.39,{},243258,1,"""South America""" +2024-10-18,31568,8382,"[\""Keyboard\"", \""Monitor\""]",2771.8,{},191847,1,"""North America""" +2024-04-01,31569,6805,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2103.97,{},194520,1,"""North America""" +2024-10-13,31570,2338,"[\""Headphones\""]",1530.48,{},85101,0,"""South America""" +2023-12-11,31571,4473,"[\""Wireless Mouse\"", \""Tablet\""]",213.97,"{\""loyalty\"": \""23%\""}",219393,1,"""Africa""" +2024-10-20,31572,1858,"[\""Keyboard\""]",2429.69,"{\""promo\"": \""15%\""}",142794,0,"""Europe""" +2023-05-11,31573,9445,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1934.84,{},106924,1,"""South America""" +2024-07-26,31574,6785,"[\""Monitor\""]",1331.39,"{\""seasonal\"": \""8%\""}",176858,0,"""North America""" +2023-07-04,31575,6254,"[\""Phone\""]",2840.45,"{\"": \""19%\""}",159012,0,"""South America""" +2023-03-16,31576,5057,"[\""Tablet\"", \""Phone\""]",4205.87,"{\"": \""8%\""}",3007,0,"""Africa""" +2024-04-26,31577,190,"[\""Phone\"", \""Monitor\""]",1185.01,{},149652,0,"""Asia""" +2024-10-22,31578,519,"[\""Keyboard\""]",1613.82,"{\""seasonal\"": \""21%\""}",42165,0,"""South America""" +2023-06-24,31579,1632,"[\""Phone\"", \""Headphones\""]",2100.88,{},51518,1,"""North America""" +2024-07-26,31580,6883,"[\""Keyboard\""]",3035.91,{},110655,0,"""Europe""" +2024-11-11,31581,3273,"[\""Headphones\""]",1795.58,"{\""promo\"": \""22%\""}",7777,1,"""Asia""" +2023-06-26,31582,621,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4583.32,{},31929,1,"""Africa""" +2023-08-29,31583,4988,"[\""Monitor\"", \""Laptop\""]",1508.97,"{\""seasonal\"": \""28%\""}",226633,0,"""Europe""" +2024-05-26,31584,8571,"[\""Monitor\"", \""Charger\""]",2464.77,{},155877,1,"""Europe""" +2023-11-07,31585,4844,"[\""Tablet\""]",3472.25,{},275100,0,"""North America""" +2023-10-07,31586,9811,"[\""Monitor\""]",3408.85,"{\""seasonal\"": \""10%\""}",146012,0,"""Europe""" +2024-01-12,31587,3603,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1204.53,{},158415,0,"""Asia""" +2024-11-15,31588,3941,"[\""Tablet\"", \""Wireless Mouse\""]",578.61,"{\"": \""8%\""}",247093,0,"""Asia""" +2024-08-18,31589,7501,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3818.18,"{\""promo\"": \""14%\""}",219389,0,"""Europe""" +2024-10-02,31590,475,"[\""Laptop\"", \""Charger\""]",654.34,{},24216,0,"""Asia""" +2023-09-30,31591,4723,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2064.04,{},39199,1,"""South America""" +2024-11-21,31592,8051,"[\""Charger\""]",3290.74,"{\"": \""28%\""}",242736,0,"""South America""" +2024-02-23,31593,541,"[\""Charger\"", \""Monitor\""]",1707.61,{},34905,0,"""Europe""" +2024-05-22,31594,2099,"[\""Charger\""]",4104.06,{},252853,0,"""Africa""" +2023-10-29,31595,7964,"[\""Headphones\""]",910.55,{},125503,0,"""Africa""" +2024-10-28,31596,6635,"[\""Wireless Mouse\""]",4947.98,{},231792,0,"""Europe""" +2024-06-02,31597,4130,"[\""Phone\""]",249.7,{},131720,0,"""Africa""" +2023-06-25,31598,8211,"[\""Headphones\""]",2256.61,"{\""promo\"": \""22%\""}",164157,1,"""North America""" +2023-10-14,31599,8992,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3117.29,{},112061,0,"""North America""" +2024-08-11,31600,5293,"[\""Wireless Mouse\"", \""Laptop\""]",4785.9,{},107249,0,"""Asia""" +2024-09-20,31601,1117,"[\""Tablet\"", \""Charger\""]",2572.44,"{\""loyalty\"": \""28%\""}",101817,1,"""Europe""" +2023-10-15,31602,1163,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3661.96,{},270485,1,"""North America""" +2023-12-22,31603,2776,"[\""Monitor\"", \""Laptop\""]",985.97,{},239713,0,"""Africa""" +2024-11-14,31604,3347,"[\""Charger\""]",2691.57,"{\""promo\"": \""23%\""}",296320,1,"""Europe""" +2023-12-04,31605,300,"[\""Tablet\"", \""Charger\""]",798.52,{},246903,1,"""North America""" +2024-05-28,31606,6292,"[\""Monitor\"", \""Laptop\""]",1512.06,"{\""loyalty\"": \""19%\""}",52859,0,"""Africa""" +2023-12-31,31607,3058,"[\""Keyboard\""]",4145.84,"{\""promo\"": \""26%\""}",197963,1,"""North America""" +2023-05-18,31608,1949,"[\""Charger\""]",775.73,{},166130,1,"""Asia""" +2023-08-15,31609,4755,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2981.6,"{\""seasonal\"": \""14%\""}",29367,0,"""Africa""" +2023-01-26,31610,3178,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2018.32,"{\""seasonal\"": \""11%\""}",147206,1,"""South America""" +2023-01-26,31611,9063,"[\""Phone\""]",1776.25,"{\""promo\"": \""18%\""}",149428,1,"""Africa""" +2024-03-06,31612,507,"[\""Laptop\""]",4864.77,{},29281,0,"""Europe""" +2023-02-05,31613,3808,"[\""Laptop\""]",4801.75,"{\"": \""24%\""}",8296,1,"""Africa""" +2023-10-17,31614,4938,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1759.06,{},273390,1,"""Africa""" +2024-12-24,31615,9414,"[\""Laptop\"", \""Keyboard\""]",519.35,{},133249,1,"""Asia""" +2023-01-12,31616,9600,"[\""Charger\"", \""Headphones\""]",522.65,{},186894,0,"""Asia""" +2023-08-12,31617,9026,"[\""Laptop\"", \""Phone\""]",2683.41,"{\"": \""23%\""}",119889,0,"""Europe""" +2024-09-09,31618,3441,"[\""Tablet\"", \""Phone\""]",2204.41,"{\""promo\"": \""30%\""}",32079,0,"""Asia""" +2024-10-02,31619,4391,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2532.62,"{\""seasonal\"": \""16%\""}",177698,0,"""South America""" +2024-03-12,31620,584,"[\""Laptop\"", \""Charger\""]",3026.08,{},249453,1,"""Europe""" +2024-06-25,31621,8590,"[\""Tablet\"", \""Phone\""]",3759.24,{},184349,0,"""South America""" +2024-09-21,31622,911,"[\""Laptop\""]",373.1,"{\""promo\"": \""27%\""}",186061,1,"""Asia""" +2023-09-18,31623,4197,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1111.84,{},182261,1,"""Asia""" +2023-11-01,31624,7626,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4281.3,{},51567,1,"""Europe""" +2023-12-06,31625,951,"[\""Phone\"", \""Tablet\""]",4441.0,"{\"": \""6%\""}",279858,0,"""Africa""" +2024-05-16,31626,2483,"[\""Laptop\"", \""Charger\""]",1259.38,"{\""promo\"": \""12%\""}",124167,1,"""South America""" +2024-02-18,31627,8312,"[\""Laptop\""]",4640.96,"{\""loyalty\"": \""7%\""}",3646,0,"""Asia""" +2024-04-16,31628,247,"[\""Keyboard\""]",4415.91,{},230125,0,"""North America""" +2023-04-13,31629,5335,"[\""Laptop\"", \""Wireless Mouse\""]",4716.64,"{\""promo\"": \""28%\""}",44198,0,"""Africa""" +2023-03-28,31630,5406,"[\""Phone\"", \""Headphones\""]",4922.15,{},289114,0,"""Europe""" +2024-12-14,31631,6044,"[\""Tablet\""]",3922.29,{},41786,0,"""North America""" +2024-10-11,31632,4652,"[\""Tablet\"", \""Headphones\""]",2035.53,{},40904,1,"""North America""" +2024-10-02,31633,9643,"[\""Headphones\"", \""Monitor\""]",1203.51,"{\""promo\"": \""24%\""}",288255,1,"""Asia""" +2023-03-27,31634,6217,"[\""Wireless Mouse\"", \""Headphones\""]",3405.51,{},262406,0,"""Asia""" +2024-03-06,31635,2229,"[\""Monitor\"", \""Wireless Mouse\""]",422.1,"{\""seasonal\"": \""10%\""}",28007,0,"""Africa""" +2023-10-08,31636,667,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",579.75,"{\"": \""12%\""}",23203,1,"""North America""" +2023-02-05,31637,94,"[\""Laptop\""]",2551.72,{},276257,0,"""Asia""" +2023-04-28,31638,968,"[\""Laptop\"", \""Keyboard\""]",2150.55,"{\""promo\"": \""8%\""}",30907,0,"""Asia""" +2023-09-04,31639,2146,"[\""Charger\"", \""Wireless Mouse\""]",1482.73,"{\""seasonal\"": \""7%\""}",151000,0,"""Asia""" +2024-02-08,31640,8340,"[\""Laptop\""]",1805.83,{},213374,0,"""Africa""" +2024-01-23,31641,9379,"[\""Laptop\""]",4698.01,"{\"": \""11%\""}",43270,1,"""Europe""" +2024-07-17,31642,9772,"[\""Phone\""]",2577.18,"{\""seasonal\"": \""14%\""}",196578,1,"""North America""" +2024-03-08,31643,6099,"[\""Charger\"", \""Phone\""]",4793.29,"{\""loyalty\"": \""27%\""}",180422,1,"""Europe""" +2023-01-12,31644,2487,"[\""Monitor\"", \""Wireless Mouse\""]",3837.46,{},275199,0,"""Europe""" +2024-03-28,31645,748,"[\""Keyboard\"", \""Wireless Mouse\""]",2733.04,"{\""loyalty\"": \""5%\""}",18162,0,"""Europe""" +2023-08-14,31646,1080,"[\""Headphones\"", \""Phone\""]",4880.47,{},191239,0,"""Africa""" +2023-04-26,31647,3404,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2950.74,{},270067,0,"""Europe""" +2023-08-23,31648,574,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",199.9,"{\""promo\"": \""8%\""}",88547,1,"""Africa""" +2023-12-28,31649,9407,"[\""Headphones\"", \""Charger\""]",1148.27,"{\""seasonal\"": \""12%\""}",10316,0,"""South America""" +2023-09-25,31650,1656,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",515.98,"{\""loyalty\"": \""13%\""}",181612,1,"""Asia""" +2023-08-15,31651,8527,"[\""Wireless Mouse\"", \""Monitor\""]",4690.76,"{\"": \""14%\""}",250259,0,"""Asia""" +2023-05-05,31652,7563,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4524.96,"{\""promo\"": \""8%\""}",236844,1,"""North America""" +2024-08-30,31653,8548,"[\""Monitor\""]",3567.13,{},23446,1,"""South America""" +2023-04-16,31654,9236,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2171.16,"{\""seasonal\"": \""25%\""}",87388,0,"""South America""" +2024-03-25,31655,509,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2781.0,"{\""seasonal\"": \""9%\""}",245253,1,"""Europe""" +2023-12-19,31656,7970,"[\""Wireless Mouse\""]",1126.29,{},296623,1,"""North America""" +2023-05-02,31657,576,"[\""Laptop\""]",2985.26,"{\""promo\"": \""23%\""}",123240,1,"""South America""" +2024-11-21,31658,8136,"[\""Headphones\"", \""Wireless Mouse\""]",4420.13,{},115437,1,"""Europe""" +2023-02-07,31659,7209,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4840.55,{},155002,1,"""Asia""" +2023-09-26,31660,6322,"[\""Headphones\"", \""Monitor\""]",3032.24,"{\""seasonal\"": \""20%\""}",214637,1,"""Europe""" +2024-11-07,31661,5827,"[\""Wireless Mouse\""]",3109.22,{},282422,0,"""Europe""" +2024-08-09,31662,110,"[\""Wireless Mouse\""]",2801.51,{},92193,0,"""Asia""" +2024-08-15,31663,6378,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",581.93,"{\""promo\"": \""17%\""}",229739,0,"""Europe""" +2024-01-29,31664,4240,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2102.11,{},278899,1,"""Asia""" +2023-03-02,31665,1629,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2376.88,"{\""loyalty\"": \""30%\""}",254555,0,"""North America""" +2024-02-18,31666,4795,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2590.92,"{\""loyalty\"": \""22%\""}",238362,0,"""South America""" +2023-09-26,31667,9155,"[\""Keyboard\"", \""Monitor\""]",3926.22,{},2049,1,"""Asia""" +2024-01-27,31668,5755,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3602.43,"{\"": \""24%\""}",284370,0,"""Africa""" +2023-03-09,31669,2729,"[\""Tablet\"", \""Keyboard\""]",2961.76,{},235889,0,"""Africa""" +2023-12-14,31670,5722,"[\""Laptop\"", \""Charger\""]",1362.52,"{\"": \""28%\""}",62262,0,"""North America""" +2023-09-21,31671,1890,"[\""Keyboard\""]",3121.31,"{\""promo\"": \""14%\""}",76879,1,"""Africa""" +2023-06-28,31672,9255,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1100.35,{},108551,0,"""South America""" +2023-01-12,31673,7033,"[\""Tablet\""]",742.56,"{\""promo\"": \""26%\""}",102597,0,"""Asia""" +2024-09-14,31674,8019,"[\""Monitor\"", \""Laptop\""]",333.88,{},215447,1,"""South America""" +2023-05-26,31675,8632,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",278.08,{},219061,1,"""Asia""" +2024-09-16,31676,7717,"[\""Laptop\""]",3707.19,{},202032,0,"""Asia""" +2023-07-30,31677,1487,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",174.9,{},152713,0,"""Africa""" +2023-08-02,31678,8904,"[\""Tablet\""]",2695.67,{},66660,0,"""North America""" +2024-02-24,31679,8581,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2833.3,"{\""seasonal\"": \""8%\""}",131715,1,"""North America""" +2023-02-08,31680,8209,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1823.71,"{\"": \""13%\""}",91935,0,"""Africa""" +2024-09-28,31681,4882,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1215.5,"{\""loyalty\"": \""9%\""}",81885,0,"""North America""" +2024-12-10,31682,1389,"[\""Wireless Mouse\""]",3626.01,"{\""loyalty\"": \""26%\""}",125548,1,"""Africa""" +2023-11-05,31683,7150,"[\""Charger\"", \""Phone\""]",622.7,{},36307,0,"""Asia""" +2023-02-27,31684,3616,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",284.97,"{\""seasonal\"": \""7%\""}",8802,1,"""Asia""" +2023-05-24,31685,3790,"[\""Charger\"", \""Monitor\""]",3470.5,{},29441,1,"""North America""" +2023-06-20,31686,5176,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",494.74,"{\""loyalty\"": \""8%\""}",67673,0,"""Africa""" +2023-04-02,31687,1124,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",847.41,{},226878,0,"""North America""" +2024-09-10,31688,1083,"[\""Charger\"", \""Wireless Mouse\""]",786.4,{},20302,0,"""Europe""" +2023-02-16,31689,9332,"[\""Monitor\""]",376.05,{},59018,0,"""South America""" +2024-12-06,31690,3799,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4931.53,"{\""promo\"": \""28%\""}",11936,1,"""Africa""" +2024-12-28,31691,8771,"[\""Charger\""]",3165.94,{},67644,0,"""South America""" +2024-02-08,31692,4569,"[\""Headphones\"", \""Phone\""]",2072.28,"{\""seasonal\"": \""25%\""}",60639,0,"""Asia""" +2024-05-07,31693,1708,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3741.5,"{\""promo\"": \""26%\""}",20994,1,"""Europe""" +2023-03-12,31694,5165,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1600.94,"{\""loyalty\"": \""20%\""}",100618,1,"""Europe""" +2023-06-03,31695,8894,"[\""Phone\""]",1719.18,{},115573,1,"""Asia""" +2024-02-24,31696,93,"[\""Wireless Mouse\"", \""Laptop\""]",1014.66,"{\""seasonal\"": \""30%\""}",63132,0,"""Asia""" +2023-11-13,31697,4045,"[\""Wireless Mouse\""]",3970.36,"{\"": \""16%\""}",138740,1,"""South America""" +2024-09-08,31698,7241,"[\""Tablet\""]",3633.8,{},51076,1,"""Africa""" +2023-08-11,31699,7500,"[\""Headphones\""]",2199.98,"{\""seasonal\"": \""10%\""}",74151,0,"""South America""" +2024-12-17,31700,1760,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2702.72,{},193181,0,"""Europe""" +2023-04-11,31701,2744,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3044.28,"{\""seasonal\"": \""23%\""}",146509,1,"""Africa""" +2023-02-19,31702,6066,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",289.68,"{\""loyalty\"": \""6%\""}",265412,1,"""North America""" +2024-08-03,31703,1085,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1821.98,{},20995,1,"""North America""" +2023-02-14,31704,3302,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1536.8,"{\""loyalty\"": \""26%\""}",71800,0,"""South America""" +2023-03-18,31705,5326,"[\""Monitor\"", \""Phone\""]",294.38,{},90790,0,"""Asia""" +2024-09-11,31706,4331,"[\""Headphones\""]",2706.61,"{\"": \""12%\""}",138800,0,"""Europe""" +2024-09-15,31707,1272,"[\""Monitor\""]",2665.79,"{\"": \""12%\""}",160318,1,"""South America""" +2023-03-27,31708,3383,"[\""Wireless Mouse\"", \""Phone\""]",3585.77,{},116500,1,"""Asia""" +2023-02-07,31709,1663,"[\""Phone\""]",4327.83,{},285790,1,"""South America""" +2023-01-15,31710,7444,"[\""Wireless Mouse\"", \""Tablet\""]",346.62,{},262685,1,"""North America""" +2024-06-27,31711,9151,"[\""Wireless Mouse\"", \""Monitor\""]",4937.13,"{\"": \""28%\""}",34027,0,"""Europe""" +2023-05-30,31712,9893,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4515.22,"{\"": \""16%\""}",45003,0,"""North America""" +2023-08-13,31713,444,"[\""Keyboard\""]",2540.88,"{\""promo\"": \""5%\""}",229655,0,"""Asia""" +2023-08-11,31714,8373,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4877.0,"{\""seasonal\"": \""5%\""}",201227,0,"""Asia""" +2023-09-01,31715,1834,"[\""Phone\"", \""Monitor\""]",4611.72,{},253086,1,"""North America""" +2023-02-19,31716,4654,"[\""Wireless Mouse\"", \""Laptop\""]",412.09,"{\""loyalty\"": \""30%\""}",220860,0,"""South America""" +2024-05-12,31717,5808,"[\""Wireless Mouse\""]",649.61,{},59566,1,"""North America""" +2023-11-28,31718,7732,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",970.86,"{\""seasonal\"": \""14%\""}",265029,0,"""North America""" +2023-04-08,31719,1325,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1271.39,"{\"": \""29%\""}",57050,1,"""Asia""" +2024-01-10,31720,1653,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3450.84,"{\""promo\"": \""20%\""}",141395,1,"""North America""" +2023-12-08,31721,2220,"[\""Wireless Mouse\""]",4508.96,{},295082,0,"""Africa""" +2023-01-22,31722,5443,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2765.62,"{\""seasonal\"": \""21%\""}",98672,0,"""South America""" +2023-08-04,31723,8436,"[\""Keyboard\""]",2086.3,{},296742,1,"""South America""" +2023-09-27,31724,6496,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1675.98,{},201937,0,"""Asia""" +2024-02-06,31725,8504,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2135.67,{},231817,1,"""Europe""" +2023-01-24,31726,4160,"[\""Laptop\""]",1887.29,{},35774,0,"""Africa""" +2023-09-15,31727,3239,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4198.75,{},99731,1,"""Asia""" +2024-02-07,31728,545,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4145.28,{},273276,0,"""Asia""" +2023-10-01,31729,6068,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3251.92,"{\""promo\"": \""22%\""}",70539,0,"""Europe""" +2024-04-20,31730,2979,"[\""Charger\"", \""Laptop\""]",823.45,"{\""loyalty\"": \""5%\""}",211028,1,"""Europe""" +2023-03-11,31731,4204,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2860.16,"{\""loyalty\"": \""8%\""}",18759,0,"""North America""" +2023-09-07,31732,5237,"[\""Headphones\""]",660.73,{},264910,1,"""Africa""" +2023-02-11,31733,7288,"[\""Keyboard\""]",1998.43,{},21543,1,"""North America""" +2023-10-21,31734,2716,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2852.77,{},125317,1,"""South America""" +2024-08-24,31735,5878,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2662.02,"{\""loyalty\"": \""30%\""}",220550,1,"""Africa""" +2024-05-13,31736,4407,"[\""Phone\""]",611.38,"{\"": \""9%\""}",75485,1,"""South America""" +2024-08-12,31737,1918,"[\""Keyboard\"", \""Monitor\""]",2415.39,"{\""promo\"": \""29%\""}",280743,1,"""Africa""" +2023-05-11,31738,4039,"[\""Keyboard\""]",2565.22,{},148347,0,"""North America""" +2023-07-18,31739,6582,"[\""Wireless Mouse\""]",1824.96,"{\"": \""17%\""}",286840,0,"""Asia""" +2024-03-11,31740,4407,"[\""Laptop\""]",2674.45,{},291862,1,"""North America""" +2024-06-17,31741,1022,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3199.0,"{\""seasonal\"": \""16%\""}",266467,1,"""North America""" +2024-03-10,31742,9060,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3299.4,"{\""loyalty\"": \""13%\""}",286541,0,"""Asia""" +2024-09-16,31743,2401,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2232.73,{},281322,1,"""Asia""" +2024-08-17,31744,5592,"[\""Laptop\""]",2523.05,"{\""promo\"": \""14%\""}",270818,1,"""North America""" +2023-01-09,31745,9960,"[\""Keyboard\"", \""Tablet\""]",1837.73,"{\"": \""8%\""}",176396,0,"""South America""" +2023-09-24,31746,743,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",954.29,{},145586,0,"""Europe""" +2024-06-04,31747,5661,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",318.43,"{\""seasonal\"": \""21%\""}",119380,0,"""South America""" +2024-08-26,31748,3218,"[\""Keyboard\""]",3500.73,"{\"": \""11%\""}",178531,1,"""Africa""" +2023-09-06,31749,1084,"[\""Headphones\"", \""Monitor\""]",588.04,{},118460,1,"""Europe""" +2024-12-25,31750,6409,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",723.31,"{\""promo\"": \""26%\""}",40326,0,"""South America""" +2024-06-08,31751,1042,"[\""Phone\"", \""Headphones\""]",3897.83,"{\""promo\"": \""21%\""}",203996,0,"""South America""" +2024-03-07,31752,4542,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",242.98,"{\""seasonal\"": \""16%\""}",73118,1,"""Asia""" +2024-07-12,31753,1587,"[\""Wireless Mouse\"", \""Tablet\""]",2189.27,{},19335,0,"""Asia""" +2024-11-17,31754,4645,"[\""Charger\"", \""Keyboard\""]",679.78,"{\""loyalty\"": \""6%\""}",171911,0,"""North America""" +2023-03-12,31755,1374,"[\""Tablet\"", \""Laptop\""]",1143.73,"{\""loyalty\"": \""14%\""}",65138,1,"""Europe""" +2023-11-24,31756,6796,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1457.14,"{\""loyalty\"": \""21%\""}",296844,1,"""Asia""" +2024-08-04,31757,3586,"[\""Charger\""]",1787.52,"{\""seasonal\"": \""11%\""}",174327,1,"""Africa""" +2024-01-29,31758,7943,"[\""Charger\""]",867.55,"{\"": \""5%\""}",33946,0,"""Europe""" +2024-10-01,31759,8506,"[\""Phone\""]",4785.56,{},94821,0,"""Africa""" +2023-03-23,31760,3125,"[\""Charger\""]",2191.6,"{\""loyalty\"": \""6%\""}",105074,1,"""South America""" +2023-07-15,31761,4167,"[\""Keyboard\""]",4340.91,"{\"": \""12%\""}",187323,0,"""Africa""" +2024-05-15,31762,136,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3368.36,{},27634,0,"""Europe""" +2023-08-10,31763,7659,"[\""Headphones\""]",2907.39,"{\"": \""7%\""}",284102,0,"""South America""" +2023-06-29,31764,9377,"[\""Charger\"", \""Phone\""]",3679.96,{},99648,1,"""South America""" +2023-02-17,31765,8637,"[\""Monitor\"", \""Tablet\""]",612.87,"{\"": \""19%\""}",249050,0,"""North America""" +2024-07-30,31766,1730,"[\""Wireless Mouse\"", \""Headphones\""]",1896.3,{},116038,1,"""North America""" +2024-11-22,31767,5805,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3180.53,{},135533,0,"""Africa""" +2023-07-24,31768,2045,"[\""Tablet\""]",2102.04,{},112005,1,"""North America""" +2023-10-23,31769,9060,"[\""Monitor\""]",3472.96,"{\""seasonal\"": \""6%\""}",295361,1,"""Asia""" +2024-02-12,31770,9614,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1710.61,"{\""seasonal\"": \""25%\""}",118939,0,"""South America""" +2024-11-27,31771,5753,"[\""Keyboard\""]",4158.81,"{\""seasonal\"": \""10%\""}",282385,1,"""North America""" +2024-08-01,31772,3075,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2673.95,{},160490,1,"""Asia""" +2024-03-02,31773,6924,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",325.1,"{\""seasonal\"": \""18%\""}",49563,0,"""Europe""" +2023-10-21,31774,6580,"[\""Charger\"", \""Phone\""]",3298.13,{},66147,0,"""Asia""" +2023-12-02,31775,6456,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4243.0,{},279058,0,"""Asia""" +2024-01-01,31776,588,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1922.45,{},224553,1,"""South America""" +2024-02-15,31777,3247,"[\""Wireless Mouse\"", \""Keyboard\""]",221.58,{},89628,0,"""Asia""" +2024-12-21,31778,9716,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1567.14,"{\"": \""19%\""}",3865,1,"""Africa""" +2024-08-06,31779,7620,"[\""Monitor\"", \""Laptop\""]",1576.45,"{\""seasonal\"": \""11%\""}",99344,1,"""Europe""" +2024-02-03,31780,9593,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4641.58,{},194333,1,"""Africa""" +2023-07-19,31781,5179,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1240.33,{},29385,1,"""Africa""" +2024-03-06,31782,179,"[\""Keyboard\"", \""Wireless Mouse\""]",4155.27,"{\""loyalty\"": \""13%\""}",116292,0,"""Asia""" +2023-05-31,31783,1561,"[\""Monitor\""]",4343.04,"{\""promo\"": \""18%\""}",90296,0,"""North America""" +2023-04-19,31784,157,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2839.37,"{\"": \""6%\""}",251470,1,"""Africa""" +2023-06-17,31785,5309,"[\""Tablet\""]",671.19,{},183896,0,"""North America""" +2023-05-07,31786,6411,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4154.27,{},124764,0,"""Asia""" +2023-01-22,31787,6283,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1501.49,"{\""promo\"": \""17%\""}",168628,1,"""Europe""" +2024-11-27,31788,2093,"[\""Headphones\"", \""Laptop\""]",4324.6,"{\"": \""5%\""}",39537,0,"""Africa""" +2024-06-02,31789,7579,"[\""Monitor\"", \""Charger\""]",4827.1,"{\"": \""15%\""}",141023,1,"""South America""" +2024-02-09,31790,8749,"[\""Laptop\"", \""Keyboard\""]",1069.87,"{\"": \""11%\""}",57306,1,"""North America""" +2024-12-07,31791,8467,"[\""Wireless Mouse\"", \""Phone\""]",3679.28,{},65097,0,"""Asia""" +2023-01-12,31792,1217,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4610.69,"{\""promo\"": \""30%\""}",52891,0,"""North America""" +2023-09-23,31793,4444,"[\""Wireless Mouse\"", \""Headphones\""]",878.51,"{\""loyalty\"": \""25%\""}",212143,1,"""South America""" +2023-03-21,31794,7511,"[\""Phone\""]",1503.04,{},131734,1,"""Africa""" +2023-12-13,31795,4427,"[\""Phone\"", \""Wireless Mouse\""]",4240.26,{},16614,1,"""Asia""" +2023-06-23,31796,6353,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3945.35,"{\""promo\"": \""28%\""}",126944,0,"""Europe""" +2023-11-25,31797,770,"[\""Laptop\""]",2328.57,"{\""loyalty\"": \""11%\""}",283493,1,"""Africa""" +2023-05-03,31798,6306,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1764.78,{},14143,0,"""South America""" +2023-03-16,31799,3640,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3610.4,{},195255,0,"""Africa""" +2023-02-21,31800,4221,"[\""Laptop\""]",332.27,"{\""seasonal\"": \""15%\""}",14791,0,"""Africa""" +2024-05-29,31801,9846,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",387.36,{},175187,1,"""Africa""" +2024-03-04,31802,5377,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1822.17,{},141713,1,"""Europe""" +2023-05-09,31803,9940,"[\""Phone\"", \""Keyboard\""]",3003.14,{},128860,1,"""Africa""" +2023-06-21,31804,5952,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1387.07,{},210928,1,"""North America""" +2023-11-02,31805,7772,"[\""Laptop\""]",865.96,{},140751,0,"""Europe""" +2024-10-21,31806,8015,"[\""Laptop\"", \""Keyboard\""]",2301.57,{},89319,0,"""Europe""" +2024-11-05,31807,3664,"[\""Keyboard\""]",329.82,{},203386,1,"""Africa""" +2024-09-01,31808,3496,"[\""Tablet\""]",4726.02,"{\""seasonal\"": \""22%\""}",64408,0,"""Asia""" +2023-03-09,31809,9731,"[\""Monitor\"", \""Wireless Mouse\""]",3138.13,{},287371,0,"""Africa""" +2023-07-20,31810,3917,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4660.51,"{\"": \""18%\""}",122227,1,"""Europe""" +2024-09-12,31811,2219,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2954.39,{},61238,0,"""Asia""" +2024-03-20,31812,6147,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",236.54,"{\""seasonal\"": \""12%\""}",67349,1,"""Europe""" +2024-12-31,31813,9826,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3590.73,{},239005,1,"""South America""" +2023-06-03,31814,359,"[\""Tablet\"", \""Wireless Mouse\""]",1563.65,"{\""seasonal\"": \""25%\""}",148512,0,"""Africa""" +2023-02-08,31815,2565,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4479.12,{},186061,0,"""Africa""" +2024-01-29,31816,4824,"[\""Keyboard\"", \""Charger\""]",1836.71,{},264335,0,"""Africa""" +2024-02-29,31817,9547,"[\""Tablet\"", \""Laptop\""]",4602.48,"{\""loyalty\"": \""29%\""}",69589,1,"""Africa""" +2023-04-23,31818,6924,"[\""Phone\"", \""Wireless Mouse\""]",2768.44,"{\""promo\"": \""24%\""}",165846,1,"""Europe""" +2023-01-04,31819,9179,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",547.05,{},260915,1,"""Europe""" +2024-08-14,31820,6989,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1187.2,{},299331,1,"""South America""" +2023-11-23,31821,4615,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2308.22,{},46256,1,"""Europe""" +2024-02-23,31822,553,"[\""Headphones\""]",521.7,"{\"": \""10%\""}",101417,0,"""Africa""" +2024-08-09,31823,8822,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2905.37,"{\""loyalty\"": \""11%\""}",20663,0,"""North America""" +2023-06-25,31824,5053,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4185.94,{},265282,0,"""North America""" +2024-03-29,31825,7723,"[\""Charger\"", \""Tablet\""]",2770.53,"{\""seasonal\"": \""21%\""}",11246,1,"""Asia""" +2024-06-01,31826,6850,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3038.55,"{\""promo\"": \""14%\""}",149965,0,"""South America""" +2024-02-10,31827,5612,"[\""Laptop\"", \""Tablet\""]",668.11,"{\""loyalty\"": \""27%\""}",156861,0,"""Africa""" +2024-03-09,31828,2386,"[\""Headphones\"", \""Phone\""]",4082.08,"{\""seasonal\"": \""7%\""}",226566,0,"""North America""" +2023-08-28,31829,2284,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4928.14,{},6175,0,"""North America""" +2024-07-29,31830,4043,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4826.79,"{\""seasonal\"": \""6%\""}",90162,1,"""South America""" +2023-12-21,31831,3281,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4311.6,"{\"": \""20%\""}",153585,1,"""Europe""" +2023-05-17,31832,4677,"[\""Headphones\""]",3382.0,"{\""loyalty\"": \""6%\""}",82099,1,"""North America""" +2023-03-27,31833,5014,"[\""Wireless Mouse\""]",3981.01,"{\"": \""11%\""}",193160,1,"""Europe""" +2023-05-29,31834,1991,"[\""Wireless Mouse\"", \""Laptop\""]",2819.47,{},5833,0,"""North America""" +2023-05-28,31835,6975,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2036.36,"{\""promo\"": \""24%\""}",33927,1,"""North America""" +2024-07-21,31836,6731,"[\""Laptop\""]",4334.04,{},202566,0,"""North America""" +2023-07-28,31837,8525,"[\""Laptop\""]",1274.05,{},82608,0,"""South America""" +2023-05-12,31838,5236,"[\""Tablet\"", \""Laptop\""]",4689.74,"{\""seasonal\"": \""14%\""}",13736,0,"""Africa""" +2024-09-28,31839,7826,"[\""Keyboard\"", \""Laptop\""]",4195.77,"{\"": \""16%\""}",206250,0,"""South America""" +2023-03-30,31840,6818,"[\""Headphones\"", \""Tablet\""]",3292.3,"{\"": \""17%\""}",108731,0,"""Europe""" +2024-08-09,31841,2605,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1775.81,"{\""seasonal\"": \""25%\""}",180895,0,"""Africa""" +2023-11-08,31842,5517,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2435.81,{},243327,0,"""Africa""" +2023-09-21,31843,4033,"[\""Charger\""]",2550.33,{},61766,1,"""Africa""" +2023-02-23,31844,5080,"[\""Keyboard\"", \""Headphones\""]",2114.17,"{\""promo\"": \""13%\""}",95743,0,"""Africa""" +2024-07-28,31845,189,"[\""Tablet\""]",4933.79,"{\""seasonal\"": \""29%\""}",97178,1,"""Europe""" +2023-09-08,31846,7665,"[\""Phone\"", \""Wireless Mouse\""]",4948.01,"{\""promo\"": \""18%\""}",121006,0,"""South America""" +2023-11-15,31847,9820,"[\""Laptop\""]",1114.71,{},21045,0,"""North America""" +2023-12-21,31848,8168,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3768.37,{},104695,1,"""Europe""" +2023-03-13,31849,6741,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4184.14,"{\""loyalty\"": \""5%\""}",180083,1,"""South America""" +2024-07-28,31850,4330,"[\""Phone\""]",3006.28,{},277837,0,"""Africa""" +2023-12-27,31851,5853,"[\""Charger\""]",3223.74,{},25970,1,"""North America""" +2023-07-06,31852,1584,"[\""Headphones\""]",4356.79,{},25615,0,"""Europe""" +2023-04-09,31853,1635,"[\""Monitor\""]",3767.09,"{\"": \""20%\""}",177659,0,"""Asia""" +2024-08-11,31854,2293,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",504.82,{},207310,1,"""Africa""" +2024-09-20,31855,1676,"[\""Wireless Mouse\""]",2821.63,{},32007,1,"""Europe""" +2023-03-23,31856,2150,"[\""Keyboard\"", \""Charger\""]",2963.84,{},4246,1,"""Africa""" +2023-09-17,31857,6970,"[\""Headphones\"", \""Charger\""]",659.32,{},153648,0,"""Africa""" +2024-09-09,31858,4451,"[\""Headphones\"", \""Tablet\""]",3247.15,{},27408,0,"""Asia""" +2024-04-06,31859,8426,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1655.81,"{\""loyalty\"": \""13%\""}",223307,0,"""North America""" +2023-01-05,31860,7480,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",323.32,{},23397,1,"""South America""" +2024-05-13,31861,3532,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1009.47,{},196321,0,"""North America""" +2024-03-14,31862,4027,"[\""Headphones\""]",2115.19,"{\""promo\"": \""28%\""}",275604,0,"""North America""" +2024-06-01,31863,4374,"[\""Tablet\""]",713.63,"{\"": \""9%\""}",60380,1,"""Asia""" +2023-05-15,31864,4756,"[\""Keyboard\""]",4332.5,{},7816,1,"""South America""" +2023-07-04,31865,6948,"[\""Laptop\""]",3636.77,{},121606,0,"""South America""" +2024-01-18,31866,5027,"[\""Headphones\""]",750.75,"{\""promo\"": \""15%\""}",166359,0,"""North America""" +2024-01-25,31867,9873,"[\""Headphones\"", \""Wireless Mouse\""]",350.36,"{\""promo\"": \""13%\""}",289691,0,"""North America""" +2024-10-20,31868,536,"[\""Wireless Mouse\""]",2052.88,"{\""loyalty\"": \""13%\""}",262753,0,"""Europe""" +2023-10-21,31869,2884,"[\""Headphones\"", \""Monitor\""]",3043.0,"{\""loyalty\"": \""26%\""}",143480,1,"""North America""" +2024-02-19,31870,1406,"[\""Laptop\"", \""Keyboard\""]",674.6,{},172015,1,"""Africa""" +2024-10-26,31871,2122,"[\""Tablet\""]",1978.71,{},126776,0,"""Africa""" +2023-08-15,31872,1486,"[\""Tablet\""]",4273.84,{},139687,1,"""Europe""" +2023-01-21,31873,387,"[\""Keyboard\""]",1446.3,{},125068,0,"""Europe""" +2023-08-29,31874,7455,"[\""Wireless Mouse\"", \""Tablet\""]",1862.67,"{\""seasonal\"": \""18%\""}",287699,0,"""Europe""" +2024-12-31,31875,3826,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1581.47,{},242797,1,"""Africa""" +2023-07-29,31876,4065,"[\""Wireless Mouse\"", \""Charger\""]",1257.48,{},285113,0,"""South America""" +2023-12-11,31877,3543,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2224.9,{},243804,1,"""Europe""" +2023-04-04,31878,8178,"[\""Keyboard\""]",1651.5,{},145006,1,"""Africa""" +2024-09-17,31879,6005,"[\""Tablet\"", \""Charger\""]",3997.96,"{\""seasonal\"": \""30%\""}",165884,1,"""North America""" +2024-11-10,31880,5558,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",162.71,{},214943,0,"""Africa""" +2023-01-13,31881,3508,"[\""Laptop\"", \""Charger\""]",1369.56,{},36303,1,"""Africa""" +2023-04-22,31882,141,"[\""Keyboard\""]",1405.02,{},92756,1,"""Asia""" +2024-01-29,31883,5693,"[\""Charger\"", \""Headphones\""]",1993.07,"{\""promo\"": \""12%\""}",51566,0,"""Europe""" +2023-11-01,31884,6714,"[\""Tablet\"", \""Monitor\""]",2199.76,{},277112,0,"""Europe""" +2023-05-20,31885,8874,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4843.25,{},2418,1,"""North America""" +2023-11-24,31886,408,"[\""Keyboard\""]",2313.04,"{\""promo\"": \""5%\""}",121908,0,"""South America""" +2024-04-28,31887,9705,"[\""Monitor\""]",3811.01,"{\"": \""12%\""}",297234,0,"""Asia""" +2023-03-17,31888,6617,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4757.4,"{\""loyalty\"": \""16%\""}",71558,1,"""South America""" +2024-11-20,31889,8673,"[\""Headphones\"", \""Keyboard\""]",3341.1,{},228551,0,"""Europe""" +2024-08-09,31890,9447,"[\""Headphones\"", \""Charger\""]",2320.24,{},8269,0,"""Asia""" +2023-02-16,31891,5824,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1131.09,"{\"": \""14%\""}",285774,1,"""North America""" +2023-07-15,31892,2420,"[\""Headphones\"", \""Charger\""]",2255.99,{},240906,1,"""South America""" +2023-10-06,31893,9031,"[\""Wireless Mouse\"", \""Monitor\""]",318.0,{},229406,1,"""North America""" +2023-10-16,31894,8116,"[\""Wireless Mouse\""]",3611.55,{},267687,0,"""North America""" +2023-12-04,31895,6120,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1424.44,"{\""promo\"": \""12%\""}",124070,0,"""Africa""" +2024-02-28,31896,5796,"[\""Monitor\"", \""Charger\""]",4571.12,"{\""promo\"": \""25%\""}",209102,1,"""Asia""" +2024-11-14,31897,3341,"[\""Headphones\"", \""Laptop\""]",2740.78,"{\""seasonal\"": \""8%\""}",106192,0,"""North America""" +2023-08-29,31898,6333,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4520.41,"{\""loyalty\"": \""14%\""}",207620,1,"""Africa""" +2023-04-19,31899,6056,"[\""Keyboard\""]",1388.09,{},71627,1,"""Africa""" +2024-03-02,31900,8065,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2630.94,"{\""promo\"": \""5%\""}",201146,0,"""North America""" +2023-05-02,31901,4814,"[\""Headphones\""]",3883.97,{},211134,1,"""South America""" +2023-03-03,31902,4901,"[\""Headphones\""]",4413.87,{},128520,0,"""Europe""" +2023-06-03,31903,2496,"[\""Charger\"", \""Monitor\""]",570.59,"{\"": \""29%\""}",120566,0,"""Europe""" +2024-12-10,31904,5956,"[\""Laptop\"", \""Tablet\""]",3332.91,"{\"": \""9%\""}",218727,0,"""Africa""" +2023-08-25,31905,2007,"[\""Charger\"", \""Wireless Mouse\""]",585.94,"{\""promo\"": \""16%\""}",66560,0,"""Asia""" +2023-03-24,31906,9815,"[\""Phone\"", \""Wireless Mouse\""]",1126.67,{},233401,0,"""Europe""" +2023-06-25,31907,7772,"[\""Charger\""]",2451.75,{},125420,0,"""Africa""" +2024-03-22,31908,295,"[\""Keyboard\"", \""Wireless Mouse\""]",3925.64,"{\""loyalty\"": \""23%\""}",119905,1,"""South America""" +2023-06-30,31909,2606,"[\""Charger\""]",3630.6,"{\""loyalty\"": \""14%\""}",75539,1,"""Europe""" +2024-06-24,31910,2614,"[\""Charger\"", \""Laptop\""]",1038.52,"{\""seasonal\"": \""9%\""}",285991,1,"""Asia""" +2023-06-07,31911,9259,"[\""Phone\""]",1008.35,{},220359,1,"""Asia""" +2023-11-20,31912,9231,"[\""Phone\"", \""Tablet\""]",3763.9,{},95418,0,"""Africa""" +2023-11-02,31913,901,"[\""Headphones\""]",1668.25,"{\""seasonal\"": \""19%\""}",207163,0,"""North America""" +2024-04-28,31914,6304,"[\""Headphones\""]",4485.67,"{\""promo\"": \""20%\""}",271839,1,"""Europe""" +2024-03-22,31915,679,"[\""Charger\"", \""Headphones\""]",177.61,"{\""loyalty\"": \""6%\""}",283918,0,"""North America""" +2024-04-27,31916,9124,"[\""Tablet\""]",652.88,{},60629,0,"""South America""" +2024-06-04,31917,6229,"[\""Keyboard\"", \""Phone\""]",3779.73,{},77454,1,"""Europe""" +2024-04-13,31918,5374,"[\""Wireless Mouse\"", \""Keyboard\""]",3852.32,{},257765,0,"""Asia""" +2024-05-19,31919,6992,"[\""Headphones\"", \""Keyboard\""]",2083.73,"{\""loyalty\"": \""29%\""}",241696,1,"""Africa""" +2024-06-02,31920,3017,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4250.16,{},36789,0,"""Asia""" +2023-07-29,31921,7175,"[\""Monitor\"", \""Tablet\""]",4726.24,"{\"": \""25%\""}",260120,1,"""North America""" +2023-09-20,31922,1467,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1101.53,{},52713,1,"""North America""" +2024-06-26,31923,1994,"[\""Monitor\""]",2523.75,"{\"": \""27%\""}",40911,0,"""North America""" +2023-09-10,31924,7727,"[\""Laptop\""]",2370.64,"{\""promo\"": \""21%\""}",248906,0,"""South America""" +2024-01-09,31925,9274,"[\""Headphones\"", \""Laptop\""]",223.49,"{\"": \""11%\""}",106026,0,"""Asia""" +2023-03-03,31926,1677,"[\""Charger\""]",4282.33,"{\""loyalty\"": \""8%\""}",7177,0,"""North America""" +2024-05-17,31927,7077,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3901.65,{},259946,1,"""Europe""" +2023-08-26,31928,9944,"[\""Headphones\""]",4245.46,{},235214,0,"""Asia""" +2023-07-18,31929,2498,"[\""Monitor\"", \""Keyboard\""]",3371.34,"{\""promo\"": \""6%\""}",1912,1,"""Europe""" +2023-08-14,31930,1580,"[\""Charger\""]",2082.91,{},96557,0,"""Africa""" +2024-11-10,31931,4282,"[\""Charger\"", \""Phone\""]",1799.85,{},174535,1,"""North America""" +2024-05-22,31932,9041,"[\""Laptop\"", \""Charger\""]",2628.58,"{\""seasonal\"": \""10%\""}",224923,1,"""Africa""" +2024-07-12,31933,7750,"[\""Keyboard\""]",859.13,{},148619,0,"""Europe""" +2023-02-15,31934,3306,"[\""Monitor\""]",391.15,"{\"": \""28%\""}",148638,0,"""North America""" +2024-10-13,31935,5913,"[\""Monitor\"", \""Tablet\""]",4372.19,{},213912,0,"""North America""" +2023-01-30,31936,3311,"[\""Keyboard\""]",3188.25,{},141908,1,"""South America""" +2023-08-09,31937,967,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4513.98,"{\"": \""26%\""}",195295,0,"""South America""" +2023-07-17,31938,1108,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4946.83,"{\"": \""22%\""}",238198,0,"""Asia""" +2023-12-22,31939,4512,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1813.59,{},28696,0,"""Asia""" +2023-03-22,31940,9677,"[\""Phone\""]",425.69,{},80959,0,"""North America""" +2024-11-14,31941,9946,"[\""Laptop\"", \""Headphones\""]",4209.16,{},21483,1,"""South America""" +2023-07-21,31942,6070,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1803.17,{},210093,0,"""Asia""" +2023-01-06,31943,9487,"[\""Tablet\"", \""Charger\""]",4837.98,"{\""promo\"": \""25%\""}",97473,0,"""Asia""" +2023-12-12,31944,3187,"[\""Charger\""]",2427.86,"{\""loyalty\"": \""28%\""}",116577,0,"""Asia""" +2023-09-14,31945,1592,"[\""Headphones\""]",3858.96,"{\""seasonal\"": \""25%\""}",188550,1,"""North America""" +2024-06-04,31946,6234,"[\""Tablet\""]",3511.58,{},111703,1,"""South America""" +2024-01-17,31947,8180,"[\""Charger\""]",2362.43,{},141576,0,"""Europe""" +2023-11-07,31948,2540,"[\""Monitor\""]",2327.75,"{\""seasonal\"": \""6%\""}",84798,0,"""North America""" +2023-07-15,31949,9307,"[\""Charger\"", \""Wireless Mouse\""]",3146.4,{},174436,1,"""Asia""" +2024-03-07,31950,1847,"[\""Wireless Mouse\"", \""Tablet\""]",307.76,"{\"": \""12%\""}",79607,1,"""North America""" +2024-03-22,31951,9264,"[\""Tablet\"", \""Headphones\""]",357.16,"{\"": \""27%\""}",208623,0,"""Africa""" +2023-10-04,31952,3293,"[\""Phone\"", \""Laptop\""]",3155.28,{},232467,1,"""Europe""" +2024-03-22,31953,5356,"[\""Keyboard\""]",1308.69,{},97223,1,"""Africa""" +2023-02-09,31954,6534,"[\""Headphones\""]",4310.25,{},181363,1,"""South America""" +2023-02-04,31955,3037,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",86.47,{},268155,0,"""North America""" +2024-08-22,31956,6464,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4405.11,"{\""seasonal\"": \""17%\""}",198068,1,"""Asia""" +2023-10-08,31957,1842,"[\""Tablet\""]",1525.24,"{\""loyalty\"": \""10%\""}",165904,1,"""North America""" +2024-01-26,31958,9390,"[\""Phone\""]",1037.26,"{\""seasonal\"": \""26%\""}",6324,0,"""North America""" +2024-02-27,31959,5414,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4469.28,{},127543,1,"""Asia""" +2023-08-30,31960,719,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4419.74,{},211988,0,"""Asia""" +2024-09-19,31961,2595,"[\""Keyboard\"", \""Tablet\""]",4757.04,"{\""seasonal\"": \""11%\""}",15908,0,"""North America""" +2024-09-20,31962,473,"[\""Laptop\""]",2866.7,{},77951,0,"""Europe""" +2024-06-03,31963,3554,"[\""Charger\""]",3506.32,{},298047,0,"""Europe""" +2024-06-19,31964,8296,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2515.19,"{\"": \""16%\""}",99782,0,"""North America""" +2024-06-09,31965,4313,"[\""Wireless Mouse\"", \""Keyboard\""]",2436.34,"{\"": \""23%\""}",297533,1,"""South America""" +2024-07-07,31966,9443,"[\""Keyboard\""]",4210.87,"{\""loyalty\"": \""21%\""}",77546,0,"""Europe""" +2023-04-18,31967,3905,"[\""Laptop\"", \""Phone\""]",3567.34,"{\"": \""21%\""}",102072,0,"""Africa""" +2024-03-11,31968,4490,"[\""Charger\""]",3817.07,{},21055,0,"""Africa""" +2023-06-09,31969,5287,"[\""Monitor\""]",121.93,{},232570,0,"""Asia""" +2024-04-06,31970,1918,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4960.11,"{\"": \""22%\""}",213537,0,"""Africa""" +2024-01-09,31971,1410,"[\""Laptop\""]",263.78,{},189695,1,"""North America""" +2023-09-26,31972,8898,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2261.88,"{\""seasonal\"": \""17%\""}",257956,0,"""South America""" +2024-12-24,31973,7256,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",390.6,{},219218,0,"""South America""" +2023-04-10,31974,1807,"[\""Wireless Mouse\""]",4983.54,{},78673,1,"""Africa""" +2023-11-01,31975,7111,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1015.69,"{\"": \""12%\""}",164468,1,"""Africa""" +2023-06-03,31976,77,"[\""Charger\""]",3688.54,{},279028,1,"""Europe""" +2024-03-06,31977,3647,"[\""Headphones\"", \""Wireless Mouse\""]",2217.92,{},212703,1,"""South America""" +2023-04-28,31978,9642,"[\""Wireless Mouse\"", \""Charger\""]",2585.38,{},162248,0,"""South America""" +2023-08-07,31979,9130,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3282.96,{},286014,1,"""North America""" +2023-03-03,31980,3580,"[\""Monitor\""]",3454.67,{},268933,0,"""Africa""" +2023-06-05,31981,2255,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",554.29,"{\""promo\"": \""12%\""}",130871,0,"""Asia""" +2023-04-19,31982,6622,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",557.31,{},269458,1,"""Asia""" +2023-02-16,31983,23,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4148.93,{},249979,1,"""North America""" +2024-10-30,31984,8583,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1990.03,{},122976,1,"""South America""" +2024-07-16,31985,5973,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3664.11,{},60391,0,"""Africa""" +2023-08-08,31986,8926,"[\""Charger\"", \""Monitor\""]",2597.33,"{\""promo\"": \""11%\""}",65129,1,"""Asia""" +2024-10-29,31987,3412,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4801.59,{},37495,1,"""Europe""" +2024-09-09,31988,8174,"[\""Laptop\""]",3256.48,"{\"": \""23%\""}",102982,0,"""Europe""" +2024-10-19,31989,2186,"[\""Keyboard\""]",1284.06,"{\""seasonal\"": \""11%\""}",113415,0,"""South America""" +2024-05-26,31990,1392,"[\""Headphones\"", \""Phone\""]",759.58,"{\""loyalty\"": \""18%\""}",171329,0,"""North America""" +2023-05-15,31991,966,"[\""Charger\"", \""Laptop\""]",1534.45,{},133337,0,"""South America""" +2023-06-18,31992,3791,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4113.55,{},93913,1,"""Africa""" +2023-08-20,31993,7448,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1899.71,"{\"": \""21%\""}",274347,1,"""Africa""" +2023-10-13,31994,3752,"[\""Phone\"", \""Monitor\""]",522.15,{},180400,0,"""Europe""" +2024-04-19,31995,3844,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1837.83,"{\""loyalty\"": \""25%\""}",147441,0,"""Asia""" +2024-01-08,31996,9512,"[\""Monitor\"", \""Tablet\""]",2450.32,"{\""promo\"": \""26%\""}",197476,0,"""North America""" +2023-08-02,31997,398,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3637.6,"{\""loyalty\"": \""27%\""}",28867,0,"""Africa""" +2023-12-06,31998,8603,"[\""Laptop\""]",3591.75,{},261314,1,"""South America""" +2024-04-03,31999,7466,"[\""Wireless Mouse\""]",4388.51,{},207697,0,"""Asia""" +2024-03-17,32000,9976,"[\""Wireless Mouse\""]",3799.9,"{\""seasonal\"": \""16%\""}",248116,0,"""Europe""" +2023-07-23,32001,7591,"[\""Wireless Mouse\"", \""Phone\""]",4555.89,{},120898,1,"""Asia""" +2023-02-01,32002,195,"[\""Wireless Mouse\""]",1266.43,{},32922,1,"""Europe""" +2024-01-20,32003,803,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4839.69,{},170745,0,"""Europe""" +2023-05-01,32004,7552,"[\""Laptop\""]",2076.03,"{\""promo\"": \""6%\""}",287822,1,"""Europe""" +2024-12-27,32005,6687,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3089.74,"{\""loyalty\"": \""6%\""}",229875,0,"""Asia""" +2024-03-26,32006,6415,"[\""Laptop\""]",157.7,"{\""promo\"": \""21%\""}",210428,1,"""Europe""" +2023-09-05,32007,1842,"[\""Phone\"", \""Headphones\""]",1873.53,"{\""seasonal\"": \""14%\""}",98146,0,"""Europe""" +2024-05-02,32008,6795,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1951.99,"{\""promo\"": \""6%\""}",140996,0,"""North America""" +2024-09-09,32009,5949,"[\""Phone\"", \""Wireless Mouse\""]",3915.62,"{\""loyalty\"": \""7%\""}",185578,1,"""Asia""" +2023-02-16,32010,1650,"[\""Tablet\""]",711.29,"{\""loyalty\"": \""24%\""}",253488,1,"""Europe""" +2023-07-30,32011,7971,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1161.44,"{\"": \""18%\""}",135077,0,"""Europe""" +2024-01-05,32012,4862,"[\""Wireless Mouse\"", \""Monitor\""]",3995.46,"{\""seasonal\"": \""21%\""}",239283,0,"""Asia""" +2023-04-27,32013,6952,"[\""Wireless Mouse\"", \""Keyboard\""]",947.98,"{\""loyalty\"": \""11%\""}",138527,0,"""South America""" +2024-10-25,32014,3623,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1921.49,{},226564,1,"""North America""" +2023-06-10,32015,5401,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",627.61,{},177817,1,"""South America""" +2024-12-28,32016,2252,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4712.39,{},78292,0,"""Asia""" +2024-12-06,32017,4896,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4318.53,"{\"": \""23%\""}",171614,0,"""South America""" +2024-09-08,32018,1948,"[\""Wireless Mouse\""]",2395.71,"{\""seasonal\"": \""20%\""}",48509,1,"""Europe""" +2023-06-27,32019,3666,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2634.3,{},231431,0,"""Asia""" +2023-10-17,32020,5118,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1180.48,"{\""promo\"": \""18%\""}",120819,1,"""North America""" +2024-07-21,32021,6140,"[\""Charger\""]",989.16,"{\""seasonal\"": \""16%\""}",199160,0,"""South America""" +2024-02-06,32022,1972,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4064.56,{},166129,0,"""North America""" +2023-08-03,32023,7762,"[\""Charger\"", \""Laptop\""]",1102.03,{},24842,1,"""Africa""" +2024-06-05,32024,868,"[\""Keyboard\""]",2772.7,{},203595,1,"""Africa""" +2023-10-04,32025,94,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1817.46,"{\"": \""13%\""}",189036,0,"""Europe""" +2023-11-05,32026,4231,"[\""Keyboard\"", \""Headphones\""]",172.17,"{\"": \""12%\""}",84353,1,"""Asia""" +2023-05-12,32027,2785,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2470.29,{},66381,1,"""Europe""" +2023-07-10,32028,6560,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4797.32,"{\"": \""12%\""}",287719,1,"""Europe""" +2024-01-08,32029,6692,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4174.81,"{\""promo\"": \""15%\""}",273669,0,"""Europe""" +2023-05-08,32030,1047,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4340.7,{},64969,1,"""Europe""" +2024-01-18,32031,1335,"[\""Wireless Mouse\"", \""Laptop\""]",2109.86,"{\""promo\"": \""23%\""}",213825,0,"""North America""" +2023-06-03,32032,7818,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2277.0,"{\""promo\"": \""23%\""}",269677,1,"""Asia""" +2024-06-21,32033,5164,"[\""Phone\""]",697.02,{},113618,0,"""Africa""" +2023-08-03,32034,3941,"[\""Charger\"", \""Phone\""]",2387.9,"{\""seasonal\"": \""24%\""}",62213,0,"""Asia""" +2024-07-27,32035,8001,"[\""Tablet\"", \""Headphones\""]",2577.47,"{\""seasonal\"": \""26%\""}",248203,0,"""South America""" +2023-12-26,32036,7915,"[\""Keyboard\""]",2070.83,"{\"": \""23%\""}",47631,1,"""South America""" +2024-04-16,32037,5974,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3212.88,{},72855,1,"""Africa""" +2023-02-21,32038,3848,"[\""Tablet\"", \""Headphones\""]",2973.18,"{\""seasonal\"": \""26%\""}",81335,0,"""Asia""" +2024-05-26,32039,2558,"[\""Wireless Mouse\"", \""Monitor\""]",2538.13,"{\""promo\"": \""10%\""}",32846,1,"""North America""" +2023-12-17,32040,9788,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3313.23,"{\"": \""21%\""}",253259,1,"""Asia""" +2023-12-16,32041,8905,"[\""Wireless Mouse\""]",3304.42,{},29033,1,"""Asia""" +2023-03-21,32042,2301,"[\""Wireless Mouse\"", \""Headphones\""]",2863.65,{},29241,1,"""Europe""" +2023-01-17,32043,6679,"[\""Phone\""]",4298.51,"{\""loyalty\"": \""27%\""}",250442,0,"""Asia""" +2024-10-31,32044,43,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1957.14,"{\""seasonal\"": \""15%\""}",214334,1,"""Europe""" +2024-11-20,32045,7945,"[\""Tablet\"", \""Monitor\""]",2145.02,"{\""promo\"": \""20%\""}",100894,1,"""North America""" +2024-08-10,32046,7348,"[\""Monitor\""]",405.32,"{\"": \""16%\""}",299756,0,"""Africa""" +2023-03-15,32047,9378,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",684.63,{},186502,1,"""Asia""" +2023-08-02,32048,7990,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4144.73,"{\""promo\"": \""17%\""}",198048,0,"""Europe""" +2024-02-26,32049,3598,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",928.54,"{\"": \""8%\""}",127224,1,"""Europe""" +2023-09-26,32050,8166,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2046.57,{},154937,0,"""Europe""" +2023-10-31,32051,557,"[\""Charger\""]",2038.6,"{\""loyalty\"": \""19%\""}",145154,0,"""North America""" +2024-06-20,32052,8956,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1209.67,"{\"": \""7%\""}",271058,0,"""Asia""" +2024-07-03,32053,1192,"[\""Wireless Mouse\""]",362.5,{},243134,0,"""North America""" +2024-05-24,32054,7313,"[\""Wireless Mouse\""]",2170.56,"{\""promo\"": \""17%\""}",97924,1,"""Africa""" +2024-03-22,32055,620,"[\""Laptop\"", \""Keyboard\""]",2423.73,"{\""loyalty\"": \""6%\""}",247378,1,"""South America""" +2024-12-11,32056,2468,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",879.34,"{\""loyalty\"": \""6%\""}",154189,0,"""Africa""" +2023-01-02,32057,8919,"[\""Phone\""]",986.92,{},134514,1,"""Asia""" +2024-11-17,32058,8641,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1575.3,"{\""promo\"": \""12%\""}",66495,0,"""Africa""" +2023-07-21,32059,896,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3375.59,"{\"": \""26%\""}",66199,1,"""North America""" +2024-03-24,32060,7031,"[\""Headphones\""]",295.58,{},144658,1,"""North America""" +2024-07-13,32061,3908,"[\""Tablet\""]",888.31,{},193747,1,"""Europe""" +2024-07-29,32062,5739,"[\""Monitor\""]",4052.48,"{\""loyalty\"": \""12%\""}",12484,1,"""South America""" +2023-05-31,32063,1951,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1482.69,"{\""seasonal\"": \""17%\""}",44245,0,"""South America""" +2024-01-25,32064,2332,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1502.35,"{\"": \""25%\""}",257509,0,"""Asia""" +2023-01-01,32065,1343,"[\""Laptop\"", \""Monitor\""]",4819.92,"{\""seasonal\"": \""30%\""}",286761,0,"""Europe""" +2023-11-14,32066,1103,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1323.22,"{\""promo\"": \""14%\""}",51332,0,"""North America""" +2024-09-24,32067,5172,"[\""Phone\"", \""Charger\""]",1375.56,"{\"": \""8%\""}",219372,1,"""Europe""" +2024-05-26,32068,4967,"[\""Headphones\""]",1935.09,"{\""seasonal\"": \""20%\""}",132804,0,"""North America""" +2023-07-03,32069,560,"[\""Tablet\""]",2235.14,"{\"": \""27%\""}",115900,0,"""Asia""" +2023-03-21,32070,1638,"[\""Monitor\"", \""Keyboard\""]",1737.33,{},158258,0,"""Africa""" +2024-12-13,32071,9734,"[\""Headphones\"", \""Charger\""]",4646.07,{},150249,1,"""South America""" +2024-09-02,32072,1048,"[\""Monitor\""]",1325.17,"{\""seasonal\"": \""21%\""}",198682,1,"""South America""" +2023-03-28,32073,7558,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1713.34,{},117761,0,"""North America""" +2023-09-22,32074,6834,"[\""Tablet\"", \""Monitor\""]",4012.42,"{\""loyalty\"": \""27%\""}",292088,1,"""Africa""" +2023-01-06,32075,5337,"[\""Phone\"", \""Wireless Mouse\""]",3962.46,{},295774,1,"""Europe""" +2024-03-20,32076,401,"[\""Monitor\""]",2592.85,"{\""promo\"": \""12%\""}",152455,0,"""Europe""" +2024-08-04,32077,4089,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",226.65,"{\"": \""30%\""}",170960,0,"""North America""" +2024-02-03,32078,7751,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",102.57,"{\"": \""16%\""}",186043,0,"""Africa""" +2024-02-19,32079,8811,"[\""Keyboard\""]",4317.64,{},265905,0,"""Europe""" +2024-06-06,32080,4111,"[\""Charger\"", \""Keyboard\""]",538.71,"{\""loyalty\"": \""11%\""}",90886,1,"""North America""" +2024-08-09,32081,2551,"[\""Phone\"", \""Laptop\""]",1988.52,{},240962,0,"""Asia""" +2023-12-15,32082,7714,"[\""Headphones\""]",1263.75,{},137763,0,"""Europe""" +2024-12-23,32083,1915,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",555.67,{},114310,0,"""Europe""" +2023-06-30,32084,4337,"[\""Wireless Mouse\""]",2196.07,{},222129,0,"""South America""" +2023-08-05,32085,494,"[\""Headphones\""]",1161.23,"{\""seasonal\"": \""18%\""}",71021,0,"""North America""" +2023-05-26,32086,2197,"[\""Headphones\"", \""Wireless Mouse\""]",2842.41,"{\""promo\"": \""15%\""}",106668,1,"""Asia""" +2023-03-29,32087,3728,"[\""Monitor\""]",4645.99,{},19573,0,"""Europe""" +2023-10-10,32088,2042,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3818.94,{},224119,0,"""Asia""" +2024-12-31,32089,5170,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3195.76,{},97751,1,"""Europe""" +2024-02-17,32090,604,"[\""Keyboard\"", \""Wireless Mouse\""]",2537.14,"{\""promo\"": \""28%\""}",249536,1,"""Europe""" +2024-11-29,32091,2276,"[\""Phone\""]",470.54,{},106645,0,"""Africa""" +2023-01-25,32092,7593,"[\""Phone\"", \""Charger\""]",4724.24,{},160849,0,"""South America""" +2024-09-27,32093,7540,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",122.28,"{\""loyalty\"": \""14%\""}",95388,1,"""Asia""" +2023-10-29,32094,7318,"[\""Wireless Mouse\"", \""Phone\""]",437.6,"{\""promo\"": \""15%\""}",78478,1,"""Asia""" +2023-01-19,32095,61,"[\""Laptop\""]",3723.18,{},239437,1,"""North America""" +2024-07-02,32096,2712,"[\""Charger\""]",3461.43,"{\""promo\"": \""5%\""}",200832,0,"""Africa""" +2024-01-25,32097,1154,"[\""Phone\""]",4800.15,"{\""loyalty\"": \""26%\""}",23907,0,"""Europe""" +2023-12-10,32098,8594,"[\""Monitor\""]",680.42,"{\""promo\"": \""17%\""}",40267,0,"""South America""" +2023-09-18,32099,3505,"[\""Tablet\"", \""Keyboard\""]",2870.59,{},3822,1,"""Asia""" +2023-01-05,32100,7843,"[\""Monitor\"", \""Wireless Mouse\""]",2867.63,"{\"": \""24%\""}",163128,0,"""South America""" +2024-02-03,32101,5222,"[\""Phone\"", \""Monitor\""]",585.54,"{\""seasonal\"": \""9%\""}",226355,1,"""Asia""" +2023-10-18,32102,451,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3805.53,{},100732,1,"""North America""" +2023-12-14,32103,5082,"[\""Charger\"", \""Headphones\""]",1821.24,{},28476,0,"""South America""" +2024-10-20,32104,6162,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2231.63,"{\""seasonal\"": \""20%\""}",22064,0,"""Africa""" +2024-10-06,32105,7784,"[\""Keyboard\""]",4797.96,{},116557,1,"""Europe""" +2024-02-29,32106,6473,"[\""Laptop\"", \""Wireless Mouse\""]",4748.31,"{\"": \""12%\""}",131706,1,"""Europe""" +2023-05-13,32107,7432,"[\""Laptop\""]",3747.05,"{\""loyalty\"": \""26%\""}",167322,0,"""Africa""" +2023-11-09,32108,458,"[\""Phone\"", \""Charger\""]",1158.88,{},96230,0,"""South America""" +2023-01-24,32109,8602,"[\""Laptop\"", \""Keyboard\""]",160.0,"{\""seasonal\"": \""17%\""}",275363,1,"""Asia""" +2024-10-11,32110,4459,"[\""Keyboard\""]",4073.99,"{\""seasonal\"": \""20%\""}",107759,1,"""Africa""" +2024-11-13,32111,140,"[\""Charger\""]",3789.25,"{\""promo\"": \""16%\""}",159081,1,"""Europe""" +2023-08-30,32112,626,"[\""Phone\""]",3683.87,{},160632,0,"""Europe""" +2023-06-01,32113,3746,"[\""Monitor\""]",3092.35,"{\"": \""14%\""}",248936,0,"""North America""" +2024-11-10,32114,2413,"[\""Charger\""]",2436.01,"{\""promo\"": \""17%\""}",180958,1,"""Asia""" +2023-12-28,32115,3608,"[\""Laptop\"", \""Monitor\""]",1589.88,{},216797,0,"""North America""" +2023-06-09,32116,9265,"[\""Keyboard\"", \""Phone\""]",1096.14,{},135225,1,"""South America""" +2023-04-16,32117,9359,"[\""Phone\""]",4280.18,"{\""loyalty\"": \""10%\""}",27339,0,"""North America""" +2024-09-18,32118,4081,"[\""Headphones\"", \""Keyboard\""]",3724.17,"{\""loyalty\"": \""13%\""}",162716,0,"""North America""" +2024-03-22,32119,8908,"[\""Tablet\"", \""Phone\""]",4503.4,{},34204,1,"""Asia""" +2024-01-04,32120,356,"[\""Laptop\"", \""Tablet\""]",4611.41,"{\"": \""12%\""}",110960,0,"""North America""" +2024-04-25,32121,1922,"[\""Monitor\"", \""Charger\"", \""Phone\""]",247.46,"{\""promo\"": \""26%\""}",114166,0,"""South America""" +2023-12-10,32122,1417,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",202.35,"{\"": \""24%\""}",8555,0,"""North America""" +2024-11-12,32123,9904,"[\""Keyboard\""]",2621.81,"{\""loyalty\"": \""13%\""}",216804,0,"""Africa""" +2023-11-13,32124,5921,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2390.34,"{\""loyalty\"": \""27%\""}",185573,0,"""South America""" +2024-02-09,32125,158,"[\""Charger\"", \""Monitor\""]",1689.17,{},25847,0,"""Asia""" +2024-10-24,32126,8248,"[\""Phone\""]",1741.82,"{\""loyalty\"": \""14%\""}",65005,0,"""Asia""" +2023-01-14,32127,3748,"[\""Phone\"", \""Headphones\""]",3429.19,"{\""promo\"": \""11%\""}",293321,0,"""Africa""" +2024-10-05,32128,1521,"[\""Laptop\""]",3922.47,"{\""seasonal\"": \""28%\""}",173257,1,"""Asia""" +2023-05-31,32129,2232,"[\""Headphones\"", \""Charger\""]",1034.58,"{\""seasonal\"": \""30%\""}",134683,1,"""Asia""" +2023-09-16,32130,7475,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2626.38,"{\""loyalty\"": \""27%\""}",10187,1,"""North America""" +2023-04-02,32131,2014,"[\""Phone\""]",1434.3,"{\""seasonal\"": \""23%\""}",179549,1,"""South America""" +2024-03-12,32132,5190,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2080.13,"{\""promo\"": \""22%\""}",92450,1,"""South America""" +2023-08-28,32133,1487,"[\""Keyboard\""]",865.7,{},288833,0,"""Asia""" +2023-11-18,32134,8961,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4624.78,{},123764,1,"""Europe""" +2024-01-13,32135,2385,"[\""Wireless Mouse\"", \""Phone\""]",1506.19,{},191715,0,"""South America""" +2023-03-15,32136,6639,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",980.45,{},138068,1,"""Asia""" +2024-01-03,32137,5558,"[\""Headphones\"", \""Laptop\""]",1482.51,"{\""loyalty\"": \""18%\""}",40995,1,"""North America""" +2023-12-05,32138,1635,"[\""Monitor\""]",2188.92,"{\"": \""27%\""}",238490,0,"""Europe""" +2023-02-19,32139,1054,"[\""Headphones\""]",4305.96,"{\""promo\"": \""17%\""}",141770,0,"""Africa""" +2024-09-13,32140,3045,"[\""Charger\""]",4640.8,"{\""promo\"": \""9%\""}",218631,0,"""North America""" +2023-07-09,32141,8948,"[\""Tablet\""]",346.2,{},86957,1,"""Asia""" +2024-06-20,32142,9133,"[\""Phone\"", \""Wireless Mouse\""]",1623.86,{},30923,1,"""South America""" +2023-06-06,32143,8800,"[\""Wireless Mouse\""]",4544.55,{},108079,0,"""North America""" +2024-12-14,32144,3669,"[\""Phone\""]",2897.27,{},37681,1,"""North America""" +2023-08-09,32145,7808,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",369.51,"{\""promo\"": \""20%\""}",278162,0,"""Asia""" +2024-09-12,32146,8539,"[\""Headphones\""]",3860.53,{},196404,0,"""South America""" +2023-12-21,32147,1592,"[\""Phone\"", \""Laptop\""]",471.3,{},274335,1,"""North America""" +2024-07-22,32148,9800,"[\""Tablet\""]",1237.55,{},233943,1,"""Europe""" +2023-12-02,32149,5341,"[\""Headphones\"", \""Monitor\""]",4912.15,{},140530,1,"""North America""" +2023-06-16,32150,4032,"[\""Wireless Mouse\"", \""Phone\""]",3406.33,{},132320,1,"""Europe""" +2023-06-19,32151,1401,"[\""Wireless Mouse\""]",4984.22,{},168472,0,"""Asia""" +2023-09-25,32152,5946,"[\""Tablet\"", \""Charger\""]",1547.54,{},114611,0,"""Asia""" +2024-12-22,32153,7936,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",478.29,{},183381,0,"""Africa""" +2023-11-05,32154,7871,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",133.91,{},277308,1,"""South America""" +2023-08-02,32155,5859,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2961.38,{},80291,1,"""Europe""" +2023-03-03,32156,804,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3599.45,{},222689,0,"""Asia""" +2023-09-01,32157,5873,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3954.69,{},72910,1,"""North America""" +2023-01-24,32158,6582,"[\""Charger\"", \""Phone\""]",2076.9,{},57928,0,"""North America""" +2023-06-02,32159,2171,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",842.29,"{\""promo\"": \""5%\""}",127118,1,"""Europe""" +2024-01-16,32160,7545,"[\""Tablet\""]",4589.84,{},182224,1,"""South America""" +2024-12-14,32161,2711,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",185.38,"{\""promo\"": \""14%\""}",149387,0,"""Europe""" +2023-03-04,32162,1087,"[\""Monitor\""]",3028.15,{},296539,1,"""Asia""" +2023-09-06,32163,9577,"[\""Laptop\""]",2380.36,{},188983,0,"""Africa""" +2024-05-30,32164,3030,"[\""Tablet\"", \""Headphones\""]",1008.42,"{\""loyalty\"": \""22%\""}",12794,0,"""Europe""" +2024-10-19,32165,7740,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1672.96,{},171525,0,"""North America""" +2023-12-03,32166,9832,"[\""Charger\"", \""Headphones\""]",1244.35,"{\"": \""29%\""}",8407,1,"""Asia""" +2023-03-19,32167,8179,"[\""Laptop\"", \""Phone\""]",3717.47,{},154335,0,"""North America""" +2024-12-05,32168,3038,"[\""Monitor\"", \""Keyboard\""]",4295.63,{},13011,1,"""Asia""" +2023-07-19,32169,5418,"[\""Phone\"", \""Keyboard\""]",339.95,"{\"": \""12%\""}",10981,0,"""North America""" +2024-06-11,32170,8796,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4182.76,{},54581,1,"""Europe""" +2023-08-13,32171,8849,"[\""Headphones\""]",2335.25,"{\""loyalty\"": \""17%\""}",227847,0,"""North America""" +2023-12-01,32172,53,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1925.75,{},266839,1,"""Europe""" +2024-03-02,32173,3850,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2234.58,"{\"": \""29%\""}",164854,1,"""South America""" +2024-09-11,32174,4343,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1681.36,"{\"": \""23%\""}",243016,0,"""South America""" +2023-06-14,32175,6513,"[\""Keyboard\""]",3504.63,"{\""promo\"": \""14%\""}",188749,0,"""South America""" +2023-05-05,32176,657,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",114.27,"{\""seasonal\"": \""9%\""}",78534,1,"""Europe""" +2024-06-27,32177,6005,"[\""Laptop\""]",2755.12,{},192815,0,"""Asia""" +2024-07-13,32178,6205,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2037.48,{},174689,1,"""Africa""" +2024-07-26,32179,8219,"[\""Wireless Mouse\""]",1351.12,{},79255,0,"""South America""" +2024-03-14,32180,6975,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1786.91,{},46856,0,"""South America""" +2024-03-30,32181,3865,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3593.84,"{\""loyalty\"": \""21%\""}",206758,1,"""South America""" +2023-07-10,32182,6643,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1140.47,"{\""loyalty\"": \""19%\""}",75595,1,"""Europe""" +2024-11-07,32183,8085,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4453.35,{},60291,0,"""North America""" +2023-07-26,32184,8826,"[\""Tablet\""]",4987.43,{},4230,1,"""Asia""" +2023-07-03,32185,1813,"[\""Headphones\"", \""Keyboard\""]",869.74,"{\"": \""23%\""}",68438,1,"""Asia""" +2023-03-06,32186,9354,"[\""Keyboard\"", \""Tablet\""]",1515.42,"{\""loyalty\"": \""11%\""}",122645,0,"""South America""" +2023-11-19,32187,1375,"[\""Charger\"", \""Wireless Mouse\""]",739.75,"{\""loyalty\"": \""22%\""}",225048,0,"""North America""" +2024-06-20,32188,2783,"[\""Laptop\""]",2018.27,{},206633,1,"""Africa""" +2023-08-24,32189,2763,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",922.26,{},19379,1,"""Asia""" +2023-11-25,32190,8642,"[\""Monitor\""]",2747.24,{},234037,0,"""North America""" +2024-06-20,32191,2628,"[\""Keyboard\""]",2694.81,"{\"": \""29%\""}",71020,0,"""North America""" +2024-01-29,32192,8057,"[\""Charger\"", \""Tablet\""]",3278.58,"{\"": \""6%\""}",157900,1,"""North America""" +2024-06-04,32193,8441,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3791.85,{},100682,1,"""South America""" +2023-05-11,32194,6863,"[\""Tablet\""]",4565.24,{},217577,0,"""Africa""" +2024-11-21,32195,6413,"[\""Keyboard\"", \""Headphones\""]",1509.41,{},158924,0,"""Africa""" +2024-12-29,32196,6074,"[\""Monitor\""]",4921.05,{},59430,1,"""Asia""" +2023-06-08,32197,814,"[\""Laptop\""]",2618.01,{},272319,1,"""Asia""" +2023-11-22,32198,6541,"[\""Laptop\"", \""Phone\""]",1995.89,"{\"": \""10%\""}",28956,1,"""Africa""" +2024-01-16,32199,4704,"[\""Laptop\"", \""Tablet\""]",3124.8,"{\""loyalty\"": \""20%\""}",95718,0,"""Europe""" +2024-12-13,32200,5553,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3615.5,{},215822,0,"""South America""" +2024-05-15,32201,1284,"[\""Laptop\""]",3513.5,{},257178,0,"""Europe""" +2024-05-22,32202,6960,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4442.76,{},14382,0,"""Asia""" +2024-06-23,32203,3380,"[\""Monitor\""]",4235.17,"{\"": \""18%\""}",278823,0,"""North America""" +2024-04-15,32204,2896,"[\""Keyboard\"", \""Charger\""]",129.08,{},224349,1,"""North America""" +2023-11-16,32205,5473,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3137.24,{},11443,1,"""South America""" +2023-03-31,32206,6662,"[\""Charger\"", \""Tablet\""]",3658.33,{},139781,1,"""South America""" +2023-05-28,32207,1791,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1809.37,"{\""loyalty\"": \""8%\""}",103784,1,"""Africa""" +2024-10-04,32208,9574,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2449.04,"{\"": \""5%\""}",168894,1,"""Asia""" +2023-07-30,32209,8249,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1735.35,{},42645,1,"""Africa""" +2024-09-27,32210,4068,"[\""Monitor\""]",2241.65,"{\""seasonal\"": \""8%\""}",12743,0,"""Asia""" +2023-12-29,32211,8154,"[\""Monitor\""]",968.99,"{\""seasonal\"": \""13%\""}",44209,0,"""Africa""" +2023-05-06,32212,8799,"[\""Laptop\""]",1480.56,"{\""promo\"": \""26%\""}",89216,0,"""Africa""" +2024-11-06,32213,2500,"[\""Wireless Mouse\""]",4928.63,"{\""seasonal\"": \""8%\""}",36034,1,"""Europe""" +2024-12-27,32214,3371,"[\""Charger\"", \""Headphones\""]",4036.47,{},215669,1,"""Asia""" +2024-09-02,32215,6216,"[\""Monitor\""]",2650.65,"{\"": \""21%\""}",33812,0,"""Africa""" +2023-03-30,32216,7676,"[\""Wireless Mouse\""]",706.01,{},103777,0,"""Europe""" +2024-12-13,32217,8135,"[\""Monitor\""]",3975.36,"{\""promo\"": \""30%\""}",59271,1,"""Africa""" +2024-12-21,32218,5054,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",842.25,{},124665,0,"""Europe""" +2024-10-06,32219,920,"[\""Wireless Mouse\"", \""Charger\""]",4988.99,"{\""seasonal\"": \""20%\""}",164977,0,"""South America""" +2023-07-08,32220,427,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",780.7,{},223399,0,"""Europe""" +2023-12-30,32221,818,"[\""Wireless Mouse\""]",967.38,"{\"": \""28%\""}",108922,1,"""South America""" +2024-11-19,32222,8203,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3224.49,"{\"": \""16%\""}",257673,1,"""Asia""" +2023-06-07,32223,1359,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1770.47,{},143539,1,"""Africa""" +2024-12-25,32224,8490,"[\""Monitor\""]",848.55,{},26768,0,"""Africa""" +2024-05-24,32225,377,"[\""Phone\""]",428.85,"{\""loyalty\"": \""14%\""}",253175,0,"""Asia""" +2023-03-29,32226,2456,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4655.55,"{\"": \""10%\""}",66434,1,"""Europe""" +2023-04-02,32227,6194,"[\""Phone\"", \""Charger\""]",1104.95,{},81267,1,"""Europe""" +2024-07-28,32228,2903,"[\""Keyboard\""]",1152.46,"{\""promo\"": \""23%\""}",237142,0,"""Asia""" +2024-06-10,32229,5792,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3134.83,{},86206,1,"""North America""" +2024-05-08,32230,7603,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",567.59,"{\""seasonal\"": \""8%\""}",245460,1,"""South America""" +2024-10-13,32231,4957,"[\""Charger\"", \""Wireless Mouse\""]",806.98,"{\""seasonal\"": \""29%\""}",113464,1,"""Asia""" +2024-02-25,32232,4603,"[\""Keyboard\""]",943.76,{},14816,1,"""South America""" +2024-07-10,32233,7158,"[\""Wireless Mouse\"", \""Laptop\""]",184.36,{},259421,1,"""North America""" +2024-01-27,32234,5926,"[\""Tablet\"", \""Laptop\""]",2562.59,{},17638,1,"""South America""" +2023-03-20,32235,3871,"[\""Tablet\"", \""Keyboard\""]",2651.19,{},192574,0,"""Africa""" +2023-02-20,32236,6389,"[\""Wireless Mouse\""]",4439.56,"{\""promo\"": \""8%\""}",138548,1,"""South America""" +2023-11-14,32237,309,"[\""Keyboard\"", \""Charger\""]",2201.29,"{\""loyalty\"": \""30%\""}",158909,0,"""Europe""" +2023-11-24,32238,9414,"[\""Laptop\""]",1443.44,"{\""seasonal\"": \""21%\""}",55042,0,"""Africa""" +2023-01-16,32239,8187,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3547.35,"{\""promo\"": \""27%\""}",158423,0,"""South America""" +2024-06-30,32240,7975,"[\""Tablet\""]",1259.0,{},288872,0,"""Europe""" +2023-09-01,32241,5119,"[\""Charger\""]",3322.26,"{\""seasonal\"": \""29%\""}",101542,0,"""Africa""" +2024-07-24,32242,321,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",566.54,"{\""promo\"": \""11%\""}",120583,1,"""North America""" +2023-11-28,32243,2933,"[\""Phone\""]",4703.29,{},298263,1,"""North America""" +2023-01-01,32244,7114,"[\""Keyboard\""]",376.31,{},165146,1,"""Asia""" +2023-02-27,32245,9468,"[\""Wireless Mouse\"", \""Monitor\""]",881.71,{},100392,0,"""Africa""" +2024-03-12,32246,43,"[\""Tablet\""]",3421.81,{},90206,0,"""Europe""" +2024-02-03,32247,5393,"[\""Laptop\""]",1960.21,{},38242,1,"""South America""" +2023-05-30,32248,8540,"[\""Keyboard\""]",2724.0,{},263412,1,"""Europe""" +2024-04-11,32249,3972,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1548.14,{},248635,0,"""Africa""" +2023-09-12,32250,9118,"[\""Phone\""]",4127.09,{},57422,0,"""Europe""" +2024-08-20,32251,8110,"[\""Keyboard\""]",4731.84,"{\""seasonal\"": \""5%\""}",76159,1,"""Africa""" +2024-01-05,32252,6823,"[\""Tablet\"", \""Phone\""]",3866.92,"{\""promo\"": \""13%\""}",43713,1,"""Africa""" +2023-05-18,32253,384,"[\""Keyboard\""]",3582.69,{},155007,1,"""North America""" +2024-05-30,32254,910,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4492.29,{},203630,0,"""South America""" +2024-02-18,32255,9948,"[\""Laptop\"", \""Wireless Mouse\""]",486.1,"{\""promo\"": \""23%\""}",58043,0,"""North America""" +2023-04-15,32256,4096,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1449.6,"{\""promo\"": \""16%\""}",238769,1,"""Africa""" +2024-07-19,32257,8992,"[\""Tablet\"", \""Wireless Mouse\""]",268.78,{},247334,1,"""Europe""" +2023-08-11,32258,5018,"[\""Tablet\"", \""Charger\""]",4883.09,"{\""seasonal\"": \""13%\""}",18874,1,"""Europe""" +2024-03-04,32259,9431,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4149.26,{},162408,1,"""Africa""" +2024-09-10,32260,1196,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2119.54,{},160581,0,"""South America""" +2023-05-14,32261,3524,"[\""Tablet\"", \""Monitor\""]",2724.53,{},73638,0,"""Asia""" +2023-11-12,32262,1025,"[\""Phone\""]",160.9,{},142096,0,"""Africa""" +2023-07-17,32263,1572,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2910.72,{},82242,0,"""South America""" +2024-06-06,32264,4047,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",329.05,{},162331,0,"""South America""" +2024-04-14,32265,7173,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3937.78,"{\""seasonal\"": \""23%\""}",181720,1,"""South America""" +2024-06-28,32266,3717,"[\""Tablet\"", \""Monitor\""]",2949.42,{},55710,1,"""North America""" +2024-11-10,32267,8764,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3987.06,{},235480,1,"""Asia""" +2023-01-19,32268,7939,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2817.12,"{\""seasonal\"": \""18%\""}",95978,0,"""Africa""" +2024-02-16,32269,6178,"[\""Keyboard\""]",4899.16,{},17908,1,"""Europe""" +2024-12-29,32270,6274,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4057.56,{},254046,0,"""Asia""" +2024-03-20,32271,9410,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1252.35,"{\""promo\"": \""14%\""}",207143,1,"""South America""" +2023-04-18,32272,1642,"[\""Laptop\"", \""Tablet\""]",1370.9,{},21064,1,"""Africa""" +2023-12-03,32273,3542,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3480.94,"{\"": \""26%\""}",136830,0,"""North America""" +2023-04-06,32274,5839,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",559.73,{},177697,0,"""South America""" +2023-11-07,32275,4151,"[\""Phone\"", \""Tablet\""]",173.7,"{\""seasonal\"": \""11%\""}",26329,1,"""Europe""" +2024-12-14,32276,5729,"[\""Wireless Mouse\""]",1589.21,{},46205,0,"""South America""" +2023-03-18,32277,6768,"[\""Phone\"", \""Monitor\""]",4534.08,"{\"": \""8%\""}",279705,1,"""Africa""" +2023-07-26,32278,305,"[\""Monitor\"", \""Wireless Mouse\""]",1783.7,"{\"": \""9%\""}",299189,1,"""Africa""" +2023-09-13,32279,9699,"[\""Laptop\""]",2828.87,"{\""loyalty\"": \""13%\""}",293536,0,"""South America""" +2024-01-12,32280,4406,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4989.45,{},45036,1,"""Africa""" +2024-02-07,32281,6159,"[\""Charger\""]",1512.61,"{\""promo\"": \""6%\""}",6683,1,"""Europe""" +2023-05-15,32282,3329,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1551.83,{},194441,1,"""North America""" +2023-08-28,32283,379,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2941.54,{},123205,0,"""Asia""" +2023-01-13,32284,8966,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1956.41,"{\"": \""25%\""}",294661,1,"""Africa""" +2023-08-01,32285,1094,"[\""Phone\"", \""Headphones\""]",3194.52,{},165331,1,"""Asia""" +2024-02-20,32286,4760,"[\""Phone\""]",4004.31,"{\"": \""12%\""}",131891,0,"""Africa""" +2024-06-16,32287,5485,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2396.62,"{\""loyalty\"": \""10%\""}",165519,1,"""North America""" +2024-02-05,32288,6420,"[\""Phone\"", \""Wireless Mouse\""]",1003.77,{},116522,0,"""South America""" +2023-03-13,32289,5424,"[\""Keyboard\""]",2047.3,{},134365,1,"""Europe""" +2024-12-26,32290,8176,"[\""Wireless Mouse\""]",1564.37,"{\""seasonal\"": \""23%\""}",266541,0,"""South America""" +2024-06-15,32291,8435,"[\""Charger\""]",3735.01,{},236120,1,"""Europe""" +2024-02-09,32292,2376,"[\""Phone\"", \""Tablet\""]",4074.09,"{\""promo\"": \""8%\""}",159226,1,"""North America""" +2023-06-22,32293,9025,"[\""Charger\"", \""Keyboard\""]",3330.44,{},41588,0,"""North America""" +2023-08-14,32294,9187,"[\""Headphones\""]",4352.43,{},177485,0,"""Asia""" +2024-11-24,32295,8844,"[\""Tablet\""]",3024.55,"{\"": \""9%\""}",250673,1,"""Africa""" +2023-07-14,32296,8932,"[\""Headphones\""]",4495.02,"{\""seasonal\"": \""11%\""}",115844,0,"""Asia""" +2024-03-11,32297,1692,"[\""Phone\"", \""Monitor\""]",1260.41,"{\""promo\"": \""23%\""}",69691,1,"""Europe""" +2023-01-05,32298,3633,"[\""Laptop\""]",1379.8,"{\""promo\"": \""10%\""}",178818,1,"""North America""" +2024-03-10,32299,8998,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1507.16,{},273999,1,"""Europe""" +2024-12-07,32300,5611,"[\""Headphones\"", \""Wireless Mouse\""]",3066.26,"{\"": \""16%\""}",119225,1,"""Europe""" +2024-11-04,32301,2101,"[\""Headphones\""]",1403.79,{},9261,0,"""Asia""" +2024-04-26,32302,8353,"[\""Laptop\""]",4157.11,{},31594,0,"""Europe""" +2023-06-26,32303,1954,"[\""Wireless Mouse\"", \""Headphones\""]",3739.51,{},146969,0,"""Africa""" +2024-02-29,32304,6957,"[\""Charger\"", \""Wireless Mouse\""]",2667.1,{},212230,0,"""Europe""" +2024-02-20,32305,8917,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4419.16,{},202148,1,"""Africa""" +2023-10-16,32306,878,"[\""Phone\"", \""Headphones\""]",4754.45,{},242064,0,"""South America""" +2023-10-31,32307,5606,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2782.46,{},244610,1,"""Asia""" +2024-09-27,32308,802,"[\""Headphones\""]",4839.17,{},222398,1,"""Asia""" +2023-05-05,32309,4942,"[\""Headphones\"", \""Keyboard\""]",3785.34,"{\"": \""9%\""}",243638,0,"""Europe""" +2024-01-28,32310,3515,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2089.26,{},100000,0,"""Africa""" +2024-12-15,32311,4490,"[\""Headphones\"", \""Tablet\""]",3933.64,{},266409,0,"""South America""" +2024-06-13,32312,7840,"[\""Wireless Mouse\"", \""Headphones\""]",2289.82,"{\""loyalty\"": \""30%\""}",189616,1,"""North America""" +2023-11-16,32313,7556,"[\""Monitor\""]",4704.58,"{\""loyalty\"": \""6%\""}",249511,1,"""Africa""" +2023-03-17,32314,6789,"[\""Monitor\"", \""Keyboard\""]",2289.15,{},106425,1,"""South America""" +2024-03-29,32315,2002,"[\""Headphones\""]",1591.72,"{\""promo\"": \""26%\""}",35875,0,"""Africa""" +2023-08-01,32316,4410,"[\""Wireless Mouse\""]",842.6,{},243740,0,"""Europe""" +2024-08-07,32317,3604,"[\""Phone\""]",1527.5,"{\"": \""5%\""}",108330,0,"""North America""" +2024-04-15,32318,3615,"[\""Phone\"", \""Headphones\""]",970.19,{},46717,0,"""South America""" +2024-09-23,32319,8598,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2271.07,{},120577,1,"""Europe""" +2023-08-05,32320,463,"[\""Keyboard\""]",1887.08,"{\""seasonal\"": \""6%\""}",103619,1,"""Africa""" +2024-02-08,32321,4863,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2563.79,{},242704,1,"""Africa""" +2024-04-03,32322,3890,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2319.42,{},136228,0,"""Europe""" +2024-06-11,32323,3858,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4841.67,"{\""seasonal\"": \""14%\""}",129078,1,"""Asia""" +2023-09-29,32324,7084,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2215.04,{},293875,1,"""North America""" +2023-11-11,32325,6633,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2712.74,"{\""promo\"": \""15%\""}",173472,1,"""Africa""" +2024-11-09,32326,2569,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",427.35,{},194937,0,"""Africa""" +2024-11-24,32327,1701,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2726.39,{},252405,1,"""Europe""" +2023-07-30,32328,7846,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2397.99,"{\""promo\"": \""14%\""}",44755,0,"""Europe""" +2024-11-02,32329,9017,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1484.39,"{\""seasonal\"": \""15%\""}",184272,0,"""Asia""" +2023-12-13,32330,8169,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2839.19,"{\""loyalty\"": \""27%\""}",222266,0,"""Europe""" +2024-11-05,32331,8719,"[\""Charger\""]",2491.33,{},269243,1,"""North America""" +2024-03-18,32332,6384,"[\""Wireless Mouse\""]",862.22,{},295037,1,"""Asia""" +2023-03-04,32333,9095,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2925.29,"{\""seasonal\"": \""29%\""}",223687,0,"""Africa""" +2024-05-23,32334,653,"[\""Headphones\"", \""Wireless Mouse\""]",1287.27,{},32899,1,"""South America""" +2023-08-19,32335,2781,"[\""Wireless Mouse\""]",2686.96,"{\""promo\"": \""25%\""}",63782,1,"""Africa""" +2024-06-02,32336,8624,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",499.63,{},134997,1,"""Europe""" +2023-06-30,32337,7204,"[\""Wireless Mouse\""]",3337.59,"{\""loyalty\"": \""14%\""}",166653,0,"""Asia""" +2023-03-15,32338,7929,"[\""Headphones\""]",4256.89,{},246882,1,"""Europe""" +2023-02-10,32339,2770,"[\""Headphones\"", \""Charger\""]",3176.73,"{\""promo\"": \""5%\""}",107387,1,"""Europe""" +2023-08-28,32340,2624,"[\""Keyboard\""]",1524.38,"{\""promo\"": \""8%\""}",249963,0,"""Africa""" +2023-02-26,32341,4353,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4522.96,"{\""promo\"": \""22%\""}",169042,0,"""Africa""" +2023-04-23,32342,6466,"[\""Phone\""]",4098.85,"{\""seasonal\"": \""23%\""}",203895,0,"""Africa""" +2023-01-24,32343,2252,"[\""Charger\""]",4862.76,{},172854,0,"""South America""" +2024-06-08,32344,2303,"[\""Headphones\""]",4781.53,{},286039,1,"""South America""" +2023-08-13,32345,2226,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",432.56,{},183959,0,"""Asia""" +2023-01-16,32346,4034,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3803.09,{},211107,0,"""Africa""" +2024-03-27,32347,2285,"[\""Tablet\""]",2890.25,{},135848,0,"""Africa""" +2024-02-11,32348,1466,"[\""Phone\"", \""Keyboard\""]",4380.4,{},38034,0,"""Asia""" +2023-02-27,32349,8218,"[\""Tablet\""]",326.45,"{\"": \""28%\""}",183558,1,"""North America""" +2024-08-02,32350,8915,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",412.17,"{\""seasonal\"": \""8%\""}",13981,1,"""North America""" +2023-11-28,32351,9892,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2616.08,"{\""loyalty\"": \""5%\""}",207154,0,"""Asia""" +2024-09-15,32352,9345,"[\""Headphones\"", \""Phone\""]",3239.59,{},108912,1,"""Europe""" +2023-12-17,32353,2827,"[\""Monitor\""]",2448.63,"{\"": \""7%\""}",195795,1,"""Europe""" +2024-08-10,32354,338,"[\""Tablet\"", \""Phone\""]",731.83,"{\"": \""28%\""}",238712,0,"""North America""" +2023-02-06,32355,1914,"[\""Laptop\""]",495.74,{},57428,0,"""North America""" +2024-11-17,32356,2153,"[\""Laptop\"", \""Keyboard\""]",2375.25,"{\"": \""14%\""}",146570,1,"""South America""" +2024-02-27,32357,4386,"[\""Wireless Mouse\"", \""Monitor\""]",3678.2,"{\"": \""19%\""}",261806,0,"""North America""" +2023-05-14,32358,6735,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1023.26,{},52383,0,"""Asia""" +2024-07-12,32359,7338,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2974.95,{},11310,1,"""Africa""" +2024-10-02,32360,7735,"[\""Monitor\""]",3332.44,"{\"": \""21%\""}",248620,1,"""South America""" +2023-07-28,32361,4787,"[\""Wireless Mouse\"", \""Phone\""]",3975.72,"{\""promo\"": \""15%\""}",229080,1,"""Africa""" +2023-05-10,32362,2613,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4778.15,{},96453,1,"""Europe""" +2023-12-14,32363,1679,"[\""Laptop\""]",3311.47,{},194833,0,"""North America""" +2023-02-06,32364,3560,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4066.7,"{\"": \""12%\""}",175691,1,"""Africa""" +2023-01-29,32365,6202,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2758.47,"{\""seasonal\"": \""30%\""}",197828,1,"""Africa""" +2024-11-13,32366,8296,"[\""Keyboard\""]",2935.23,"{\"": \""15%\""}",290123,0,"""Asia""" +2024-06-09,32367,1166,"[\""Phone\"", \""Tablet\""]",4122.67,"{\"": \""27%\""}",28543,0,"""Europe""" +2023-05-12,32368,5796,"[\""Keyboard\""]",135.77,"{\"": \""9%\""}",221754,0,"""Europe""" +2024-06-22,32369,5611,"[\""Phone\"", \""Keyboard\""]",2224.6,"{\"": \""29%\""}",15609,0,"""South America""" +2024-09-17,32370,4248,"[\""Monitor\"", \""Wireless Mouse\""]",2956.55,{},285538,1,"""Europe""" +2023-10-22,32371,7969,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2830.48,{},240573,0,"""Africa""" +2024-12-26,32372,8939,"[\""Tablet\"", \""Phone\""]",2730.03,"{\""seasonal\"": \""18%\""}",151413,0,"""Europe""" +2024-12-25,32373,288,"[\""Phone\"", \""Keyboard\""]",4116.25,{},73269,0,"""Europe""" +2024-11-08,32374,6426,"[\""Monitor\""]",1499.28,{},234167,0,"""Africa""" +2023-07-07,32375,470,"[\""Laptop\""]",440.39,"{\"": \""24%\""}",235433,0,"""South America""" +2024-01-19,32376,3287,"[\""Keyboard\""]",3067.74,{},272816,0,"""South America""" +2023-09-25,32377,135,"[\""Monitor\""]",3667.39,{},61042,0,"""Europe""" +2023-01-10,32378,9804,"[\""Keyboard\"", \""Headphones\""]",670.23,"{\"": \""7%\""}",95904,0,"""Asia""" +2023-11-22,32379,5511,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",218.66,"{\""promo\"": \""30%\""}",45221,1,"""Asia""" +2024-09-15,32380,1026,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2618.74,"{\""promo\"": \""20%\""}",75332,0,"""Asia""" +2024-05-03,32381,4334,"[\""Keyboard\"", \""Phone\""]",4569.83,"{\""promo\"": \""21%\""}",216522,1,"""Asia""" +2023-07-22,32382,9814,"[\""Wireless Mouse\"", \""Laptop\""]",177.63,{},198864,1,"""Asia""" +2024-04-23,32383,1279,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2734.61,"{\""promo\"": \""27%\""}",124401,0,"""North America""" +2023-05-07,32384,7827,"[\""Monitor\""]",1748.26,{},265247,0,"""Asia""" +2023-08-20,32385,1987,"[\""Laptop\""]",2919.22,{},67771,0,"""Asia""" +2023-09-27,32386,57,"[\""Wireless Mouse\"", \""Phone\""]",1261.97,{},26284,0,"""Africa""" +2024-07-18,32387,8435,"[\""Monitor\""]",4953.87,{},53941,1,"""Europe""" +2023-08-19,32388,4001,"[\""Wireless Mouse\"", \""Laptop\""]",1120.34,{},219140,0,"""Europe""" +2023-01-20,32389,6697,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3747.76,"{\""promo\"": \""26%\""}",247757,1,"""Europe""" +2023-08-18,32390,4146,"[\""Tablet\""]",4777.17,"{\""loyalty\"": \""9%\""}",54410,0,"""Africa""" +2024-05-26,32391,2682,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1989.12,{},30033,0,"""Asia""" +2024-07-18,32392,983,"[\""Headphones\"", \""Charger\""]",1054.66,{},279944,0,"""Asia""" +2023-03-31,32393,4666,"[\""Headphones\""]",969.11,"{\""loyalty\"": \""27%\""}",197987,1,"""Europe""" +2023-05-01,32394,8845,"[\""Wireless Mouse\""]",413.64,"{\"": \""21%\""}",221656,1,"""Europe""" +2024-07-02,32395,5454,"[\""Wireless Mouse\"", \""Charger\""]",4445.18,"{\""seasonal\"": \""14%\""}",190766,0,"""Africa""" +2024-04-16,32396,9531,"[\""Tablet\""]",2983.77,{},117401,0,"""North America""" +2024-10-28,32397,5507,"[\""Laptop\""]",2275.91,"{\""loyalty\"": \""20%\""}",214917,0,"""North America""" +2024-09-11,32398,1006,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3168.5,{},82437,0,"""North America""" +2023-05-31,32399,6770,"[\""Charger\"", \""Wireless Mouse\""]",2101.26,{},267096,1,"""Asia""" +2023-11-13,32400,1631,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",57.23,"{\""promo\"": \""10%\""}",284706,1,"""Asia""" +2023-08-23,32401,3321,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3762.06,"{\""seasonal\"": \""26%\""}",66426,0,"""North America""" +2024-09-23,32402,5948,"[\""Phone\"", \""Keyboard\""]",2707.13,{},146892,0,"""Europe""" +2024-09-14,32403,7834,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2259.7,{},297642,0,"""Asia""" +2023-07-31,32404,27,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3435.47,{},156363,1,"""South America""" +2024-03-22,32405,5697,"[\""Phone\""]",3891.43,{},151518,1,"""Europe""" +2023-12-21,32406,6535,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4285.98,"{\""seasonal\"": \""7%\""}",95228,1,"""Europe""" +2023-11-23,32407,4469,"[\""Laptop\""]",4664.74,{},113766,0,"""Asia""" +2024-07-31,32408,5801,"[\""Charger\"", \""Phone\""]",3510.09,"{\"": \""12%\""}",199781,0,"""Asia""" +2023-11-17,32409,2662,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",744.56,"{\""promo\"": \""10%\""}",162959,0,"""North America""" +2023-11-08,32410,5430,"[\""Headphones\"", \""Laptop\""]",1201.36,{},163188,1,"""South America""" +2024-06-07,32411,8281,"[\""Keyboard\"", \""Monitor\""]",1194.82,"{\"": \""9%\""}",45168,1,"""North America""" +2023-01-10,32412,6094,"[\""Charger\""]",4731.88,"{\""loyalty\"": \""22%\""}",219766,1,"""South America""" +2023-10-07,32413,4298,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",50.75,"{\""promo\"": \""23%\""}",60879,1,"""Africa""" +2024-08-19,32414,2848,"[\""Headphones\"", \""Keyboard\""]",2323.42,"{\""seasonal\"": \""20%\""}",201319,1,"""South America""" +2023-12-19,32415,7741,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4000.17,"{\""loyalty\"": \""28%\""}",193860,0,"""South America""" +2024-07-13,32416,1499,"[\""Laptop\"", \""Charger\""]",1467.9,"{\""loyalty\"": \""13%\""}",68112,0,"""Europe""" +2023-05-15,32417,7281,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4240.26,"{\""seasonal\"": \""11%\""}",258655,1,"""South America""" +2023-11-15,32418,6695,"[\""Monitor\"", \""Laptop\""]",1396.15,{},172240,0,"""South America""" +2023-03-30,32419,3870,"[\""Keyboard\"", \""Charger\""]",2953.18,{},106338,0,"""Africa""" +2023-07-27,32420,8528,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1221.48,"{\""loyalty\"": \""21%\""}",245714,1,"""South America""" +2024-09-27,32421,6180,"[\""Charger\"", \""Laptop\""]",2633.32,{},210109,1,"""South America""" +2023-10-22,32422,4794,"[\""Charger\""]",4018.63,"{\"": \""20%\""}",294920,1,"""South America""" +2023-05-21,32423,7862,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",751.06,"{\"": \""17%\""}",246002,1,"""North America""" +2023-04-04,32424,1220,"[\""Headphones\""]",4769.91,"{\"": \""15%\""}",26732,0,"""Asia""" +2023-06-23,32425,5205,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2897.64,"{\""promo\"": \""17%\""}",217441,1,"""South America""" +2024-07-04,32426,804,"[\""Wireless Mouse\""]",4887.14,{},220010,1,"""South America""" +2024-05-22,32427,6184,"[\""Headphones\""]",631.64,"{\""seasonal\"": \""22%\""}",62076,1,"""South America""" +2024-04-05,32428,3935,"[\""Headphones\""]",314.76,"{\"": \""28%\""}",90424,0,"""South America""" +2023-08-15,32429,3574,"[\""Wireless Mouse\""]",767.3,"{\"": \""20%\""}",84789,0,"""North America""" +2023-08-06,32430,1749,"[\""Phone\""]",3081.23,{},35822,0,"""Europe""" +2023-04-10,32431,5277,"[\""Wireless Mouse\"", \""Laptop\""]",2766.05,{},9267,0,"""Asia""" +2023-08-15,32432,4446,"[\""Laptop\""]",4177.24,{},67733,1,"""South America""" +2023-07-28,32433,9100,"[\""Keyboard\"", \""Wireless Mouse\""]",2403.09,{},242231,1,"""North America""" +2024-05-15,32434,4400,"[\""Wireless Mouse\""]",3812.81,{},51812,1,"""Asia""" +2024-01-10,32435,9565,"[\""Tablet\"", \""Laptop\""]",2934.87,"{\""seasonal\"": \""20%\""}",16837,0,"""Asia""" +2023-03-25,32436,3949,"[\""Phone\""]",2127.26,"{\"": \""6%\""}",58262,0,"""Europe""" +2023-11-30,32437,5857,"[\""Charger\"", \""Headphones\""]",3739.86,"{\""loyalty\"": \""28%\""}",227933,1,"""South America""" +2024-08-15,32438,5415,"[\""Headphones\""]",3307.54,"{\""promo\"": \""8%\""}",298857,1,"""Africa""" +2024-02-18,32439,652,"[\""Laptop\""]",1839.84,{},229773,0,"""South America""" +2024-01-22,32440,4155,"[\""Laptop\""]",2547.71,"{\""seasonal\"": \""8%\""}",147950,0,"""Asia""" +2024-05-26,32441,1416,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2287.13,"{\"": \""29%\""}",49708,1,"""South America""" +2023-07-03,32442,7300,"[\""Headphones\"", \""Laptop\""]",4801.78,"{\""promo\"": \""24%\""}",196696,1,"""Asia""" +2023-03-06,32443,8469,"[\""Keyboard\""]",4090.59,"{\""loyalty\"": \""21%\""}",27425,1,"""Asia""" +2024-06-07,32444,7006,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4026.96,{},258631,0,"""Asia""" +2024-03-24,32445,6237,"[\""Phone\""]",3112.74,{},249461,1,"""Africa""" +2024-01-01,32446,9140,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4225.46,{},215572,1,"""Asia""" +2024-01-20,32447,2233,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2659.87,{},148705,0,"""South America""" +2024-03-27,32448,9412,"[\""Wireless Mouse\"", \""Headphones\""]",2023.39,{},282086,0,"""Europe""" +2023-04-07,32449,7654,"[\""Charger\""]",256.75,"{\""promo\"": \""9%\""}",68990,1,"""North America""" +2023-03-25,32450,5614,"[\""Laptop\"", \""Keyboard\""]",191.13,"{\"": \""11%\""}",226276,1,"""Asia""" +2024-05-23,32451,1082,"[\""Laptop\"", \""Keyboard\""]",4593.33,"{\""promo\"": \""13%\""}",218128,0,"""South America""" +2023-09-22,32452,7762,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",711.37,"{\""promo\"": \""19%\""}",169624,1,"""North America""" +2023-08-31,32453,7914,"[\""Headphones\""]",2155.29,"{\"": \""12%\""}",112791,1,"""Europe""" +2023-02-16,32454,4956,"[\""Keyboard\"", \""Wireless Mouse\""]",285.56,"{\""seasonal\"": \""9%\""}",232028,1,"""South America""" +2023-04-18,32455,639,"[\""Laptop\""]",945.32,"{\""loyalty\"": \""18%\""}",120800,1,"""Africa""" +2024-12-03,32456,3518,"[\""Laptop\"", \""Monitor\""]",2002.9,"{\""seasonal\"": \""18%\""}",280912,1,"""Europe""" +2023-01-30,32457,7568,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3749.47,"{\""promo\"": \""6%\""}",91825,0,"""Europe""" +2023-04-06,32458,4252,"[\""Monitor\"", \""Tablet\""]",2022.9,"{\"": \""6%\""}",27947,1,"""South America""" +2023-07-31,32459,4201,"[\""Keyboard\"", \""Monitor\""]",2002.8,"{\"": \""9%\""}",236784,1,"""Europe""" +2023-02-26,32460,2214,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2298.08,{},279337,1,"""North America""" +2023-04-01,32461,3624,"[\""Wireless Mouse\""]",3110.06,"{\""promo\"": \""28%\""}",92520,0,"""Africa""" +2024-07-23,32462,713,"[\""Laptop\""]",780.81,{},116061,1,"""Europe""" +2024-10-21,32463,2567,"[\""Wireless Mouse\"", \""Monitor\""]",1582.95,"{\""seasonal\"": \""30%\""}",204495,0,"""South America""" +2024-05-30,32464,7710,"[\""Laptop\""]",2200.23,"{\""seasonal\"": \""6%\""}",54668,0,"""Asia""" +2024-04-04,32465,769,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",486.78,{},41289,0,"""Europe""" +2023-11-15,32466,9910,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2108.37,{},56781,0,"""Asia""" +2023-12-10,32467,5114,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4984.01,"{\""promo\"": \""10%\""}",238205,1,"""South America""" +2023-08-02,32468,7131,"[\""Phone\"", \""Monitor\""]",443.81,{},191129,1,"""Europe""" +2023-07-17,32469,1587,"[\""Headphones\""]",4401.86,"{\""loyalty\"": \""13%\""}",7496,1,"""South America""" +2024-08-31,32470,3850,"[\""Headphones\"", \""Phone\""]",1211.29,"{\""loyalty\"": \""23%\""}",236291,0,"""North America""" +2023-10-17,32471,5993,"[\""Laptop\"", \""Monitor\""]",4567.13,{},91050,0,"""Europe""" +2023-01-05,32472,4447,"[\""Laptop\""]",3766.09,"{\"": \""6%\""}",19390,1,"""Europe""" +2023-03-17,32473,9890,"[\""Monitor\""]",976.72,{},160009,0,"""Asia""" +2024-12-13,32474,1791,"[\""Monitor\"", \""Tablet\""]",4147.39,"{\""promo\"": \""12%\""}",272359,1,"""Europe""" +2024-03-07,32475,9445,"[\""Wireless Mouse\"", \""Laptop\""]",1568.71,{},133195,1,"""Europe""" +2024-09-04,32476,6100,"[\""Laptop\"", \""Tablet\""]",3707.03,{},210059,0,"""North America""" +2023-11-26,32477,3872,"[\""Tablet\"", \""Phone\"", \""Charger\""]",129.43,"{\"": \""5%\""}",284753,0,"""Africa""" +2023-06-04,32478,3075,"[\""Tablet\"", \""Monitor\""]",756.19,"{\""seasonal\"": \""21%\""}",72022,1,"""South America""" +2023-01-04,32479,2935,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2047.51,{},226722,1,"""Africa""" +2024-06-03,32480,745,"[\""Laptop\"", \""Charger\""]",2659.29,{},19552,1,"""South America""" +2024-12-31,32481,9894,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3023.32,{},37484,0,"""Europe""" +2023-08-30,32482,9392,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",191.4,"{\""promo\"": \""22%\""}",140220,0,"""South America""" +2023-07-11,32483,7086,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3847.34,{},226312,0,"""North America""" +2023-01-11,32484,7546,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1076.34,{},218308,1,"""South America""" +2024-10-18,32485,2402,"[\""Tablet\""]",1370.06,"{\""loyalty\"": \""9%\""}",21640,1,"""South America""" +2023-07-03,32486,3520,"[\""Keyboard\"", \""Charger\""]",3453.8,{},237540,0,"""Asia""" +2024-02-27,32487,1889,"[\""Charger\""]",2661.75,{},155284,1,"""South America""" +2024-07-11,32488,9782,"[\""Tablet\"", \""Wireless Mouse\""]",4973.15,{},114769,0,"""North America""" +2023-03-23,32489,1525,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2403.38,{},270433,0,"""South America""" +2023-09-28,32490,4445,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3173.02,"{\"": \""17%\""}",291686,0,"""Asia""" +2024-05-01,32491,8785,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2919.93,"{\"": \""27%\""}",119427,0,"""Asia""" +2024-02-22,32492,5798,"[\""Monitor\""]",3097.2,"{\""seasonal\"": \""13%\""}",277642,0,"""Europe""" +2023-08-11,32493,4713,"[\""Keyboard\"", \""Charger\""]",1408.53,"{\""promo\"": \""29%\""}",76065,1,"""South America""" +2024-08-09,32494,5582,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2684.92,"{\""loyalty\"": \""12%\""}",127574,1,"""South America""" +2023-06-18,32495,3888,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4754.02,{},290978,0,"""Europe""" +2023-05-24,32496,3566,"[\""Tablet\""]",2223.0,{},33882,0,"""Africa""" +2024-08-20,32497,3197,"[\""Headphones\""]",4455.86,{},14386,1,"""North America""" +2023-01-06,32498,8900,"[\""Tablet\""]",957.03,"{\""loyalty\"": \""11%\""}",70994,0,"""Africa""" +2023-11-16,32499,5094,"[\""Charger\"", \""Headphones\""]",3060.8,"{\"": \""6%\""}",109018,1,"""North America""" +2024-03-14,32500,8168,"[\""Laptop\"", \""Wireless Mouse\""]",802.67,"{\""loyalty\"": \""11%\""}",100686,1,"""Europe""" +2024-11-27,32501,6194,"[\""Phone\"", \""Tablet\""]",4303.81,"{\"": \""11%\""}",122366,0,"""Europe""" +2023-12-18,32502,691,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3936.54,{},228836,0,"""North America""" +2023-01-06,32503,5328,"[\""Keyboard\""]",57.77,"{\""loyalty\"": \""8%\""}",116465,1,"""North America""" +2024-10-14,32504,9529,"[\""Phone\"", \""Laptop\"", \""Charger\""]",110.87,"{\""seasonal\"": \""7%\""}",130138,1,"""North America""" +2023-02-18,32505,8843,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1924.9,"{\""loyalty\"": \""30%\""}",166335,1,"""Europe""" +2023-07-01,32506,6619,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",253.34,"{\""seasonal\"": \""18%\""}",277151,0,"""Africa""" +2023-07-12,32507,6773,"[\""Monitor\"", \""Tablet\""]",851.9,{},171023,1,"""Africa""" +2023-09-11,32508,8025,"[\""Monitor\""]",4993.28,{},268639,1,"""Europe""" +2024-09-17,32509,4525,"[\""Charger\"", \""Headphones\""]",4770.87,"{\""loyalty\"": \""25%\""}",98528,1,"""South America""" +2024-03-07,32510,3063,"[\""Tablet\"", \""Charger\""]",2311.49,{},284677,1,"""North America""" +2023-04-04,32511,2366,"[\""Headphones\""]",2400.35,{},150008,1,"""North America""" +2023-02-09,32512,3546,"[\""Wireless Mouse\"", \""Headphones\""]",1162.62,"{\"": \""28%\""}",237572,0,"""South America""" +2023-08-02,32513,3541,"[\""Tablet\""]",4921.98,{},241056,0,"""Europe""" +2023-11-13,32514,2588,"[\""Headphones\"", \""Tablet\""]",3975.62,"{\""seasonal\"": \""17%\""}",29269,1,"""Asia""" +2023-09-12,32515,6334,"[\""Laptop\"", \""Charger\""]",4240.69,{},211843,1,"""Africa""" +2024-05-09,32516,2273,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4231.8,"{\""seasonal\"": \""18%\""}",7260,1,"""Africa""" +2023-02-03,32517,2814,"[\""Phone\""]",1544.82,{},103017,1,"""Asia""" +2024-05-15,32518,6682,"[\""Monitor\"", \""Headphones\""]",804.71,"{\"": \""23%\""}",107235,0,"""Africa""" +2023-03-08,32519,8907,"[\""Keyboard\"", \""Phone\""]",3681.37,{},162388,0,"""Europe""" +2023-09-04,32520,9113,"[\""Keyboard\"", \""Charger\""]",828.31,{},53938,0,"""Europe""" +2024-02-26,32521,4350,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4887.83,{},205530,1,"""North America""" +2024-08-22,32522,4156,"[\""Keyboard\"", \""Monitor\""]",1745.55,{},84722,1,"""South America""" +2024-06-02,32523,5259,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3521.24,"{\""promo\"": \""12%\""}",119035,0,"""Asia""" +2024-06-05,32524,8839,"[\""Keyboard\""]",4250.73,"{\""promo\"": \""24%\""}",255444,1,"""North America""" +2024-12-21,32525,7097,"[\""Phone\""]",1363.55,"{\"": \""23%\""}",204918,1,"""Europe""" +2024-10-29,32526,1742,"[\""Wireless Mouse\"", \""Tablet\""]",4479.78,"{\""loyalty\"": \""20%\""}",200332,1,"""Europe""" +2023-06-09,32527,9303,"[\""Monitor\"", \""Headphones\""]",2803.91,{},258343,0,"""North America""" +2024-04-27,32528,3947,"[\""Keyboard\"", \""Monitor\""]",3048.56,"{\""promo\"": \""30%\""}",160880,1,"""Africa""" +2023-01-20,32529,7866,"[\""Phone\"", \""Charger\""]",218.4,"{\"": \""21%\""}",164796,1,"""Africa""" +2023-08-29,32530,370,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",549.36,{},26599,1,"""South America""" +2023-11-08,32531,9404,"[\""Phone\"", \""Laptop\""]",1434.15,{},145522,0,"""South America""" +2024-03-18,32532,2635,"[\""Phone\""]",722.8,"{\"": \""7%\""}",222806,1,"""North America""" +2023-05-03,32533,832,"[\""Wireless Mouse\""]",900.35,{},16624,0,"""Africa""" +2023-09-14,32534,2361,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",938.76,{},21548,0,"""North America""" +2024-11-10,32535,8638,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1078.18,{},176163,0,"""Asia""" +2023-04-21,32536,9277,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4723.57,{},172553,0,"""North America""" +2023-05-09,32537,5154,"[\""Tablet\""]",890.13,{},213027,1,"""North America""" +2024-12-23,32538,9531,"[\""Tablet\"", \""Monitor\""]",1074.23,{},265682,1,"""North America""" +2023-04-20,32539,338,"[\""Monitor\""]",1125.99,{},162005,0,"""North America""" +2024-09-01,32540,2086,"[\""Laptop\""]",4414.52,{},285045,1,"""North America""" +2023-08-28,32541,8594,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2957.09,{},160427,1,"""South America""" +2023-06-22,32542,4728,"[\""Monitor\"", \""Tablet\""]",4337.42,"{\""loyalty\"": \""12%\""}",247089,1,"""Asia""" +2024-09-10,32543,8953,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4181.5,{},287584,1,"""Europe""" +2024-12-19,32544,1219,"[\""Keyboard\""]",628.91,"{\""seasonal\"": \""15%\""}",68985,0,"""South America""" +2024-08-24,32545,3677,"[\""Charger\""]",3893.16,"{\""loyalty\"": \""12%\""}",121886,0,"""Europe""" +2023-10-10,32546,7819,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2871.15,"{\""loyalty\"": \""28%\""}",233232,1,"""North America""" +2024-06-14,32547,8233,"[\""Phone\""]",4993.09,{},299235,0,"""Africa""" +2023-12-29,32548,972,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",728.04,"{\"": \""12%\""}",273512,0,"""North America""" +2024-12-23,32549,4240,"[\""Charger\"", \""Phone\"", \""Headphones\""]",957.94,"{\"": \""28%\""}",58997,1,"""Asia""" +2023-10-25,32550,5837,"[\""Laptop\""]",1276.82,"{\""seasonal\"": \""28%\""}",284190,0,"""South America""" +2024-06-14,32551,6586,"[\""Tablet\""]",1479.91,{},48713,0,"""Europe""" +2024-06-20,32552,9467,"[\""Tablet\""]",1409.93,"{\""seasonal\"": \""12%\""}",6566,0,"""North America""" +2024-05-30,32553,5826,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",50.79,"{\""loyalty\"": \""29%\""}",206362,0,"""Asia""" +2024-10-24,32554,3529,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3093.72,"{\""loyalty\"": \""12%\""}",262536,0,"""Asia""" +2023-10-15,32555,5788,"[\""Charger\"", \""Monitor\""]",2885.48,"{\"": \""12%\""}",9134,1,"""North America""" +2023-07-27,32556,9747,"[\""Tablet\"", \""Phone\""]",232.52,"{\""seasonal\"": \""8%\""}",79419,0,"""North America""" +2024-04-30,32557,5028,"[\""Charger\"", \""Wireless Mouse\""]",3798.99,{},172050,0,"""Africa""" +2024-10-09,32558,9875,"[\""Tablet\""]",988.71,"{\""promo\"": \""29%\""}",74014,1,"""South America""" +2024-04-25,32559,6123,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",627.95,{},154710,1,"""North America""" +2024-08-07,32560,6701,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3874.79,{},239754,1,"""Asia""" +2023-11-26,32561,6454,"[\""Wireless Mouse\""]",4839.07,"{\"": \""5%\""}",107184,0,"""Europe""" +2024-12-28,32562,7979,"[\""Headphones\"", \""Phone\""]",2660.14,{},148173,0,"""South America""" +2023-06-04,32563,7942,"[\""Monitor\""]",3881.46,{},63216,1,"""Europe""" +2023-09-20,32564,3152,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",581.0,{},64357,1,"""North America""" +2024-12-21,32565,2448,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4689.87,"{\""seasonal\"": \""8%\""}",119260,1,"""North America""" +2024-02-26,32566,3427,"[\""Headphones\"", \""Phone\""]",1324.73,"{\""seasonal\"": \""30%\""}",47382,0,"""Asia""" +2024-11-28,32567,3384,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3670.49,"{\""seasonal\"": \""23%\""}",143044,1,"""Europe""" +2023-10-30,32568,5473,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2620.19,"{\""loyalty\"": \""15%\""}",215968,1,"""Africa""" +2023-01-06,32569,2475,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4795.21,{},220984,1,"""North America""" +2024-04-10,32570,5461,"[\""Tablet\""]",561.87,{},38233,1,"""North America""" +2024-05-06,32571,1613,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3551.32,{},145973,0,"""Asia""" +2023-12-01,32572,9970,"[\""Tablet\""]",4229.67,"{\"": \""17%\""}",240167,1,"""South America""" +2023-05-18,32573,4956,"[\""Charger\"", \""Monitor\""]",590.26,{},201122,0,"""South America""" +2023-01-16,32574,2033,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3727.76,{},31357,1,"""South America""" +2023-04-03,32575,1983,"[\""Monitor\"", \""Laptop\""]",4108.97,{},167448,0,"""North America""" +2023-10-29,32576,5220,"[\""Phone\"", \""Wireless Mouse\""]",2139.16,{},216795,1,"""Europe""" +2023-08-18,32577,9335,"[\""Charger\""]",996.49,"{\""loyalty\"": \""13%\""}",143128,0,"""Africa""" +2023-06-27,32578,4060,"[\""Charger\"", \""Headphones\""]",1834.86,{},161512,0,"""Europe""" +2024-12-11,32579,1614,"[\""Charger\"", \""Keyboard\""]",1668.76,"{\""loyalty\"": \""10%\""}",64104,1,"""Asia""" +2023-02-17,32580,2987,"[\""Tablet\"", \""Laptop\""]",704.33,{},35417,1,"""Europe""" +2024-02-10,32581,7872,"[\""Tablet\""]",217.49,{},96764,1,"""Africa""" +2024-05-15,32582,2800,"[\""Keyboard\"", \""Charger\""]",554.05,"{\""seasonal\"": \""24%\""}",216387,0,"""Africa""" +2023-03-05,32583,8842,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",608.68,"{\""loyalty\"": \""12%\""}",41022,1,"""Europe""" +2023-07-17,32584,5362,"[\""Monitor\"", \""Phone\""]",1880.28,{},80383,0,"""South America""" +2024-01-13,32585,2680,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4475.69,"{\""seasonal\"": \""22%\""}",68630,0,"""Asia""" +2023-09-15,32586,1695,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2834.6,{},243959,1,"""North America""" +2023-11-11,32587,5758,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4959.94,"{\""loyalty\"": \""7%\""}",99254,1,"""North America""" +2024-01-30,32588,9503,"[\""Laptop\""]",4185.02,"{\"": \""6%\""}",110806,0,"""Europe""" +2024-02-19,32589,1116,"[\""Phone\""]",1764.14,"{\""promo\"": \""5%\""}",29801,1,"""Europe""" +2024-03-20,32590,6835,"[\""Keyboard\"", \""Phone\""]",3260.16,{},232841,0,"""South America""" +2023-08-23,32591,1006,"[\""Keyboard\"", \""Monitor\""]",2676.26,"{\""seasonal\"": \""21%\""}",158360,1,"""Europe""" +2023-10-17,32592,7632,"[\""Wireless Mouse\""]",1909.58,"{\""promo\"": \""14%\""}",95602,1,"""Asia""" +2024-10-06,32593,4146,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4277.7,{},173000,1,"""Africa""" +2024-12-02,32594,1155,"[\""Monitor\""]",3412.59,"{\""loyalty\"": \""25%\""}",147088,0,"""Africa""" +2023-03-24,32595,2091,"[\""Monitor\""]",4570.4,"{\"": \""5%\""}",164719,1,"""Asia""" +2023-09-05,32596,2780,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1849.23,"{\""seasonal\"": \""11%\""}",81629,0,"""Africa""" +2024-11-20,32597,6736,"[\""Headphones\"", \""Keyboard\""]",2946.72,{},297148,0,"""Africa""" +2024-06-06,32598,5081,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2017.98,"{\""promo\"": \""17%\""}",1208,1,"""Africa""" +2023-02-24,32599,2433,"[\""Charger\"", \""Tablet\""]",734.05,"{\"": \""24%\""}",255895,0,"""North America""" +2023-09-09,32600,1020,"[\""Wireless Mouse\"", \""Phone\""]",1308.48,{},288313,1,"""South America""" +2023-03-30,32601,355,"[\""Laptop\""]",4757.15,{},167087,0,"""Asia""" +2024-07-13,32602,3245,"[\""Wireless Mouse\""]",453.82,{},42279,1,"""Europe""" +2023-07-04,32603,3621,"[\""Charger\"", \""Tablet\""]",152.08,"{\"": \""7%\""}",138298,1,"""Africa""" +2024-08-08,32604,1360,"[\""Phone\""]",2484.63,{},130448,1,"""South America""" +2023-06-07,32605,7708,"[\""Monitor\"", \""Laptop\""]",742.65,{},252364,0,"""Asia""" +2023-01-04,32606,4817,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",922.88,"{\""loyalty\"": \""30%\""}",158397,1,"""Africa""" +2023-02-12,32607,1760,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2356.92,"{\"": \""7%\""}",197554,0,"""Asia""" +2023-03-09,32608,4259,"[\""Headphones\"", \""Keyboard\""]",2573.25,"{\""seasonal\"": \""8%\""}",145118,0,"""Asia""" +2023-11-20,32609,1715,"[\""Laptop\"", \""Headphones\""]",3597.98,"{\"": \""25%\""}",269265,1,"""Europe""" +2024-03-18,32610,1968,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2026.65,"{\"": \""28%\""}",121604,0,"""Asia""" +2024-04-02,32611,4207,"[\""Tablet\"", \""Headphones\""]",2687.35,"{\"": \""5%\""}",261964,0,"""North America""" +2023-03-23,32612,4451,"[\""Headphones\""]",1542.41,{},132868,0,"""Africa""" +2024-08-13,32613,255,"[\""Laptop\"", \""Monitor\""]",3894.08,{},111894,0,"""North America""" +2024-01-21,32614,1677,"[\""Phone\""]",4862.18,"{\""seasonal\"": \""10%\""}",280460,0,"""Asia""" +2023-06-12,32615,2517,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1096.4,{},111917,1,"""South America""" +2023-02-20,32616,3705,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",227.63,"{\""loyalty\"": \""5%\""}",181628,1,"""Europe""" +2023-09-23,32617,7639,"[\""Laptop\""]",3188.14,{},184874,1,"""Europe""" +2023-12-27,32618,783,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3751.45,"{\""promo\"": \""5%\""}",220654,0,"""Africa""" +2024-01-04,32619,476,"[\""Laptop\""]",4699.58,{},158339,0,"""Asia""" +2023-08-31,32620,7058,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2206.25,{},183796,1,"""North America""" +2023-06-25,32621,2048,"[\""Headphones\"", \""Tablet\""]",3990.5,{},12272,1,"""Africa""" +2023-12-20,32622,7768,"[\""Phone\"", \""Charger\""]",4501.0,{},153997,0,"""Africa""" +2024-03-01,32623,2273,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1089.61,{},124504,1,"""North America""" +2023-03-31,32624,8124,"[\""Charger\""]",1283.01,{},146835,0,"""North America""" +2024-09-09,32625,7707,"[\""Headphones\""]",2506.65,"{\""seasonal\"": \""7%\""}",248555,0,"""Asia""" +2023-11-10,32626,369,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2967.67,{},60217,0,"""Asia""" +2023-04-12,32627,6549,"[\""Headphones\"", \""Wireless Mouse\""]",1466.45,{},276351,0,"""South America""" +2024-05-04,32628,275,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",464.37,{},113863,1,"""Africa""" +2023-05-02,32629,8869,"[\""Monitor\""]",1983.94,{},118575,0,"""North America""" +2024-07-02,32630,8499,"[\""Headphones\""]",3467.85,{},7944,0,"""Africa""" +2023-05-02,32631,4175,"[\""Tablet\"", \""Phone\"", \""Charger\""]",198.19,{},253496,0,"""South America""" +2024-02-21,32632,7887,"[\""Monitor\"", \""Charger\""]",4126.75,{},92388,1,"""Europe""" +2024-02-25,32633,9604,"[\""Phone\"", \""Laptop\""]",1114.14,"{\"": \""25%\""}",50247,1,"""South America""" +2024-05-27,32634,731,"[\""Tablet\"", \""Laptop\""]",1635.5,"{\""promo\"": \""22%\""}",283725,1,"""North America""" +2023-10-12,32635,5912,"[\""Charger\""]",3769.17,{},127944,0,"""Asia""" +2023-11-17,32636,2893,"[\""Keyboard\"", \""Headphones\""]",995.71,"{\"": \""19%\""}",162656,0,"""Europe""" +2024-10-04,32637,5212,"[\""Laptop\"", \""Headphones\""]",640.17,{},197703,1,"""South America""" +2023-08-26,32638,442,"[\""Charger\""]",4127.01,"{\""loyalty\"": \""15%\""}",56026,0,"""South America""" +2023-06-23,32639,5758,"[\""Monitor\""]",4708.86,"{\""promo\"": \""15%\""}",185447,1,"""Asia""" +2024-05-08,32640,3157,"[\""Headphones\""]",4071.14,{},244721,1,"""Europe""" +2023-07-19,32641,4427,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4551.88,{},2565,0,"""North America""" +2023-09-26,32642,1262,"[\""Keyboard\""]",353.71,{},165983,1,"""Africa""" +2024-12-17,32643,4891,"[\""Monitor\""]",974.65,{},70704,0,"""Asia""" +2024-05-02,32644,2224,"[\""Phone\""]",3755.16,"{\""promo\"": \""28%\""}",246365,1,"""North America""" +2023-02-28,32645,3022,"[\""Keyboard\"", \""Headphones\""]",2858.1,{},131270,0,"""Africa""" +2024-08-02,32646,2843,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4956.11,"{\""seasonal\"": \""29%\""}",266083,1,"""Europe""" +2023-04-29,32647,7804,"[\""Wireless Mouse\""]",4475.04,"{\""promo\"": \""16%\""}",68372,1,"""Europe""" +2023-05-21,32648,8755,"[\""Keyboard\""]",2327.96,{},183180,1,"""Europe""" +2024-09-26,32649,5915,"[\""Phone\"", \""Keyboard\""]",3859.1,"{\"": \""23%\""}",182912,1,"""Asia""" +2024-05-25,32650,5369,"[\""Wireless Mouse\""]",4612.49,"{\""loyalty\"": \""10%\""}",59064,1,"""Africa""" +2024-09-23,32651,80,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4853.88,{},106041,1,"""Asia""" +2023-06-12,32652,8762,"[\""Monitor\"", \""Keyboard\""]",3187.12,{},255158,1,"""Asia""" +2023-10-23,32653,183,"[\""Phone\"", \""Keyboard\""]",1036.62,{},229607,0,"""Africa""" +2024-12-09,32654,5709,"[\""Laptop\"", \""Phone\""]",4023.8,{},197660,0,"""South America""" +2023-12-04,32655,5762,"[\""Keyboard\"", \""Charger\""]",2414.94,{},48606,0,"""South America""" +2023-09-02,32656,6195,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1755.26,"{\"": \""14%\""}",86790,0,"""South America""" +2024-11-17,32657,2033,"[\""Monitor\""]",2575.29,{},66976,1,"""Asia""" +2024-02-07,32658,3283,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3941.43,{},267709,1,"""Asia""" +2024-07-28,32659,7846,"[\""Wireless Mouse\""]",4502.25,{},82873,1,"""South America""" +2023-11-07,32660,9089,"[\""Laptop\""]",472.07,"{\"": \""18%\""}",187682,1,"""South America""" +2024-02-02,32661,6136,"[\""Wireless Mouse\"", \""Phone\""]",488.23,{},93854,1,"""Asia""" +2023-08-08,32662,6132,"[\""Keyboard\"", \""Tablet\""]",4391.53,{},136861,0,"""Europe""" +2023-08-16,32663,6018,"[\""Phone\""]",2421.09,{},92137,0,"""North America""" +2023-05-17,32664,1325,"[\""Headphones\"", \""Tablet\""]",2083.19,{},246905,1,"""Europe""" +2024-01-03,32665,1652,"[\""Keyboard\""]",491.86,{},188673,1,"""South America""" +2023-09-03,32666,2834,"[\""Headphones\"", \""Charger\""]",1588.37,{},194016,0,"""Asia""" +2023-03-08,32667,278,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4581.16,"{\"": \""25%\""}",24674,0,"""South America""" +2024-01-24,32668,1760,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4254.9,{},99585,1,"""South America""" +2024-09-26,32669,7015,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4943.9,"{\""loyalty\"": \""25%\""}",35061,0,"""Europe""" +2023-07-24,32670,5,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3511.09,"{\""loyalty\"": \""18%\""}",252337,1,"""Asia""" +2024-09-24,32671,4779,"[\""Wireless Mouse\"", \""Laptop\""]",1093.73,{},191210,1,"""Africa""" +2023-04-27,32672,3357,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3646.85,"{\"": \""17%\""}",78157,1,"""South America""" +2024-06-04,32673,4059,"[\""Charger\"", \""Laptop\""]",381.46,{},177815,1,"""Asia""" +2024-02-09,32674,8080,"[\""Laptop\"", \""Monitor\""]",3155.27,{},10825,0,"""Africa""" +2023-09-24,32675,9001,"[\""Phone\""]",4478.39,{},107671,0,"""Europe""" +2023-09-19,32676,6491,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4912.92,"{\""loyalty\"": \""7%\""}",297867,1,"""Africa""" +2023-04-15,32677,2818,"[\""Keyboard\""]",4035.41,"{\""seasonal\"": \""11%\""}",45889,1,"""Africa""" +2024-01-09,32678,2303,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1428.01,{},200427,0,"""Africa""" +2024-04-24,32679,2586,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1031.2,{},232352,0,"""Africa""" +2023-04-30,32680,3450,"[\""Laptop\""]",3406.13,"{\""seasonal\"": \""5%\""}",118184,1,"""Africa""" +2024-04-29,32681,59,"[\""Charger\"", \""Keyboard\""]",132.6,"{\""promo\"": \""6%\""}",224013,1,"""Europe""" +2024-11-09,32682,5722,"[\""Headphones\""]",4893.01,"{\""seasonal\"": \""18%\""}",172318,0,"""Asia""" +2024-07-10,32683,9027,"[\""Laptop\""]",4899.01,{},70140,0,"""North America""" +2024-12-29,32684,4260,"[\""Wireless Mouse\""]",2454.79,"{\"": \""27%\""}",48617,1,"""Africa""" +2024-06-16,32685,9242,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1694.03,"{\""seasonal\"": \""13%\""}",295789,0,"""Europe""" +2023-11-16,32686,7623,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3210.62,{},25824,1,"""Africa""" +2023-04-10,32687,566,"[\""Charger\"", \""Tablet\""]",4749.17,"{\"": \""21%\""}",29790,0,"""Asia""" +2023-07-03,32688,3764,"[\""Headphones\""]",754.96,{},182087,1,"""North America""" +2024-10-27,32689,6716,"[\""Tablet\"", \""Laptop\""]",3685.89,{},87806,1,"""Europe""" +2023-10-01,32690,9282,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2462.47,"{\""loyalty\"": \""5%\""}",50779,0,"""Asia""" +2024-03-12,32691,2686,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3083.06,"{\""seasonal\"": \""10%\""}",138523,1,"""South America""" +2024-06-01,32692,7675,"[\""Wireless Mouse\"", \""Monitor\""]",4469.91,{},216390,1,"""South America""" +2023-11-20,32693,2351,"[\""Wireless Mouse\"", \""Laptop\""]",1645.54,"{\""loyalty\"": \""22%\""}",261105,1,"""Asia""" +2024-06-14,32694,9018,"[\""Keyboard\""]",3692.28,"{\""loyalty\"": \""22%\""}",145565,1,"""South America""" +2023-05-21,32695,8132,"[\""Tablet\""]",2763.95,{},139131,1,"""North America""" +2023-09-02,32696,228,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",203.94,{},164484,0,"""Africa""" +2024-04-05,32697,3087,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4741.11,{},238507,0,"""North America""" +2023-06-19,32698,9812,"[\""Headphones\""]",1810.27,{},63662,1,"""North America""" +2024-01-21,32699,2372,"[\""Tablet\""]",611.73,"{\""promo\"": \""7%\""}",23448,0,"""Asia""" +2023-10-19,32700,8994,"[\""Monitor\""]",2527.86,{},256462,0,"""Africa""" +2024-02-26,32701,9295,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3189.7,"{\""loyalty\"": \""13%\""}",185284,0,"""North America""" +2024-09-20,32702,9444,"[\""Charger\""]",665.2,{},216187,1,"""North America""" +2024-02-20,32703,3571,"[\""Monitor\"", \""Charger\""]",2188.92,{},66268,1,"""South America""" +2024-02-12,32704,1459,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3559.98,"{\""promo\"": \""28%\""}",20414,1,"""Africa""" +2023-12-05,32705,4344,"[\""Tablet\"", \""Monitor\""]",2246.37,{},123821,1,"""South America""" +2024-12-13,32706,7455,"[\""Tablet\""]",4229.52,"{\""loyalty\"": \""17%\""}",125338,1,"""Europe""" +2023-02-09,32707,4900,"[\""Keyboard\""]",356.02,"{\""seasonal\"": \""25%\""}",161834,1,"""South America""" +2023-09-28,32708,8525,"[\""Laptop\"", \""Charger\""]",3809.31,{},233203,0,"""Africa""" +2023-10-02,32709,5158,"[\""Monitor\"", \""Keyboard\""]",3370.21,{},254590,0,"""South America""" +2023-07-02,32710,803,"[\""Laptop\"", \""Wireless Mouse\""]",789.18,{},284146,0,"""Europe""" +2024-01-06,32711,7362,"[\""Wireless Mouse\"", \""Phone\""]",4591.24,"{\""seasonal\"": \""19%\""}",42753,1,"""Asia""" +2023-10-08,32712,5831,"[\""Phone\"", \""Charger\""]",4843.9,"{\"": \""5%\""}",257333,1,"""North America""" +2023-01-06,32713,7102,"[\""Laptop\"", \""Phone\""]",4278.55,"{\"": \""18%\""}",9150,1,"""North America""" +2023-07-07,32714,8850,"[\""Laptop\""]",3691.01,{},238535,1,"""North America""" +2024-09-11,32715,110,"[\""Laptop\""]",674.0,"{\""promo\"": \""15%\""}",142249,1,"""Asia""" +2024-02-07,32716,5504,"[\""Wireless Mouse\""]",4801.31,{},55387,0,"""Africa""" +2023-12-06,32717,3135,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4061.14,"{\""seasonal\"": \""26%\""}",276436,1,"""North America""" +2023-09-06,32718,2412,"[\""Keyboard\""]",2411.38,"{\""loyalty\"": \""28%\""}",289186,1,"""Asia""" +2024-10-16,32719,1123,"[\""Laptop\"", \""Monitor\""]",4417.42,{},13821,1,"""South America""" +2024-01-19,32720,8422,"[\""Monitor\"", \""Keyboard\""]",3517.95,{},136973,1,"""Asia""" +2024-11-11,32721,2514,"[\""Phone\""]",1125.95,"{\""seasonal\"": \""12%\""}",200715,1,"""North America""" +2023-09-20,32722,1805,"[\""Charger\"", \""Keyboard\""]",768.32,{},98711,1,"""Europe""" +2023-05-15,32723,7375,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2349.66,"{\"": \""18%\""}",198354,0,"""North America""" +2024-06-28,32724,1184,"[\""Keyboard\""]",264.86,{},211105,0,"""Africa""" +2024-06-08,32725,359,"[\""Wireless Mouse\"", \""Phone\""]",3949.86,{},232906,1,"""North America""" +2024-07-06,32726,6957,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4940.63,{},214890,0,"""Africa""" +2023-01-31,32727,7723,"[\""Phone\""]",3715.94,{},174157,0,"""Africa""" +2024-07-28,32728,8390,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4382.55,"{\"": \""11%\""}",42314,0,"""Asia""" +2024-05-30,32729,9637,"[\""Headphones\""]",2493.66,"{\""promo\"": \""11%\""}",111278,0,"""South America""" +2024-10-30,32730,2946,"[\""Monitor\"", \""Tablet\""]",2043.62,"{\""loyalty\"": \""11%\""}",169642,1,"""North America""" +2023-10-15,32731,2249,"[\""Phone\""]",2610.76,{},274152,1,"""South America""" +2024-11-03,32732,3271,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4013.24,{},242035,0,"""North America""" +2023-10-04,32733,4024,"[\""Headphones\""]",3182.0,"{\""promo\"": \""9%\""}",105266,0,"""Europe""" +2024-09-01,32734,1996,"[\""Tablet\""]",2617.68,{},195217,1,"""Africa""" +2024-05-19,32735,5236,"[\""Laptop\"", \""Monitor\""]",958.11,"{\""promo\"": \""9%\""}",10696,0,"""Asia""" +2023-03-03,32736,1617,"[\""Phone\""]",3399.76,"{\""promo\"": \""9%\""}",268448,0,"""South America""" +2023-04-02,32737,8985,"[\""Charger\""]",1884.09,{},237384,0,"""Africa""" +2023-03-06,32738,1676,"[\""Phone\""]",1846.0,{},287281,0,"""Asia""" +2024-12-16,32739,5379,"[\""Monitor\""]",1776.65,"{\""promo\"": \""25%\""}",211935,0,"""North America""" +2023-08-20,32740,1976,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2402.56,"{\""loyalty\"": \""30%\""}",297534,0,"""Europe""" +2023-11-30,32741,1173,"[\""Keyboard\""]",1608.01,"{\""promo\"": \""9%\""}",88439,1,"""North America""" +2024-02-29,32742,3853,"[\""Tablet\"", \""Charger\""]",3268.31,"{\""promo\"": \""24%\""}",103023,0,"""Africa""" +2024-09-06,32743,9262,"[\""Tablet\"", \""Wireless Mouse\""]",3362.77,"{\"": \""28%\""}",210718,1,"""South America""" +2024-12-18,32744,7621,"[\""Wireless Mouse\""]",4877.35,{},192277,0,"""Africa""" +2024-08-25,32745,1144,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4536.76,{},79035,0,"""North America""" +2024-07-16,32746,8234,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4705.53,"{\""promo\"": \""26%\""}",1756,1,"""Asia""" +2023-07-29,32747,6466,"[\""Phone\"", \""Tablet\""]",4683.88,{},166048,1,"""North America""" +2024-07-08,32748,3301,"[\""Charger\"", \""Laptop\""]",3808.47,{},119033,0,"""Africa""" +2024-01-10,32749,5960,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3658.4,"{\"": \""28%\""}",127739,1,"""Africa""" +2023-04-10,32750,7603,"[\""Keyboard\""]",4146.67,{},222205,1,"""Asia""" +2023-08-21,32751,5619,"[\""Phone\"", \""Monitor\""]",4081.02,{},68948,0,"""Europe""" +2024-03-11,32752,2907,"[\""Headphones\"", \""Wireless Mouse\""]",3456.9,{},195449,0,"""Europe""" +2024-04-17,32753,2362,"[\""Phone\""]",4327.52,{},179934,0,"""North America""" +2024-05-29,32754,4807,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3708.97,{},67622,0,"""Europe""" +2024-09-29,32755,9010,"[\""Phone\"", \""Headphones\"", \""Charger\""]",544.77,{},151415,0,"""Africa""" +2024-01-31,32756,1767,"[\""Monitor\"", \""Headphones\""]",1659.89,"{\""promo\"": \""22%\""}",50774,0,"""Africa""" +2023-09-30,32757,856,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1444.58,{},25555,0,"""Asia""" +2023-09-12,32758,1536,"[\""Laptop\""]",3205.9,"{\""seasonal\"": \""20%\""}",81050,0,"""North America""" +2023-03-26,32759,4315,"[\""Tablet\""]",4903.48,{},249734,0,"""Europe""" +2024-06-04,32760,1898,"[\""Headphones\""]",4064.23,"{\""seasonal\"": \""22%\""}",197068,1,"""Europe""" +2023-02-04,32761,350,"[\""Phone\""]",3754.03,{},164097,0,"""South America""" +2023-01-08,32762,4585,"[\""Laptop\""]",2992.74,{},7395,0,"""South America""" +2024-06-25,32763,3378,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2338.29,"{\"": \""15%\""}",18292,1,"""Asia""" +2023-04-29,32764,2966,"[\""Monitor\""]",3349.1,{},124467,0,"""North America""" +2024-10-31,32765,2145,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4541.59,"{\""seasonal\"": \""7%\""}",233737,0,"""North America""" +2023-07-25,32766,5101,"[\""Phone\""]",1852.98,"{\""seasonal\"": \""5%\""}",63720,1,"""South America""" +2024-01-07,32767,2372,"[\""Tablet\"", \""Keyboard\""]",1777.56,"{\""loyalty\"": \""11%\""}",45650,1,"""South America""" +2023-02-04,32768,969,"[\""Laptop\"", \""Phone\""]",3895.42,"{\""seasonal\"": \""17%\""}",128495,0,"""Europe""" +2024-01-11,32769,1252,"[\""Headphones\""]",4018.1,"{\""loyalty\"": \""18%\""}",240551,0,"""South America""" +2023-12-23,32770,58,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2359.62,{},271117,1,"""South America""" +2023-04-18,32771,7483,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1693.91,"{\"": \""20%\""}",146708,1,"""Europe""" +2024-05-01,32772,1625,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4910.15,{},142962,1,"""Asia""" +2023-02-04,32773,2970,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4347.61,{},233233,1,"""Asia""" +2023-01-18,32774,8559,"[\""Keyboard\""]",3920.32,"{\""seasonal\"": \""6%\""}",123028,0,"""Asia""" +2023-11-06,32775,5887,"[\""Keyboard\"", \""Monitor\""]",4503.26,{},72228,0,"""Africa""" +2024-07-14,32776,5906,"[\""Charger\"", \""Monitor\""]",352.93,"{\""loyalty\"": \""25%\""}",67688,0,"""South America""" +2023-06-09,32777,3078,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3794.96,"{\"": \""21%\""}",217165,0,"""Europe""" +2023-06-23,32778,9037,"[\""Phone\""]",3310.34,{},7171,0,"""Africa""" +2024-03-18,32779,2208,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",257.31,{},297189,0,"""North America""" +2023-05-01,32780,4888,"[\""Phone\"", \""Wireless Mouse\""]",1070.12,"{\"": \""10%\""}",191158,0,"""Africa""" +2024-04-11,32781,9112,"[\""Phone\""]",1640.08,"{\""loyalty\"": \""13%\""}",218608,1,"""Asia""" +2024-11-07,32782,3733,"[\""Charger\""]",915.02,{},180402,1,"""South America""" +2024-08-12,32783,5598,"[\""Wireless Mouse\""]",4331.02,{},172552,0,"""South America""" +2024-11-04,32784,6750,"[\""Keyboard\""]",2168.27,{},293563,0,"""North America""" +2023-04-20,32785,8146,"[\""Laptop\"", \""Tablet\""]",1222.04,"{\""loyalty\"": \""5%\""}",144106,1,"""South America""" +2024-08-25,32786,6461,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1224.83,"{\""promo\"": \""27%\""}",5318,1,"""Asia""" +2024-01-24,32787,1975,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",209.73,"{\""loyalty\"": \""16%\""}",247118,1,"""North America""" +2024-03-26,32788,6147,"[\""Tablet\""]",2368.65,{},269741,1,"""Africa""" +2023-12-23,32789,3168,"[\""Phone\"", \""Charger\""]",1460.72,"{\""promo\"": \""12%\""}",141904,0,"""South America""" +2024-10-28,32790,502,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2135.83,"{\""loyalty\"": \""17%\""}",119756,0,"""South America""" +2023-04-26,32791,4362,"[\""Monitor\"", \""Laptop\""]",3732.42,"{\""promo\"": \""28%\""}",297972,1,"""South America""" +2023-03-24,32792,7673,"[\""Headphones\"", \""Monitor\""]",3675.38,"{\""loyalty\"": \""29%\""}",31715,1,"""Africa""" +2024-06-22,32793,9848,"[\""Headphones\"", \""Laptop\""]",3873.8,"{\""loyalty\"": \""26%\""}",178969,0,"""Asia""" +2024-03-06,32794,6142,"[\""Tablet\""]",4359.16,"{\""seasonal\"": \""9%\""}",236668,1,"""South America""" +2023-07-25,32795,6277,"[\""Keyboard\"", \""Monitor\""]",581.96,{},17817,0,"""Europe""" +2023-05-17,32796,6022,"[\""Monitor\"", \""Laptop\""]",1570.59,"{\"": \""18%\""}",77066,1,"""North America""" +2023-06-25,32797,4554,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4317.3,"{\""loyalty\"": \""8%\""}",281588,1,"""Asia""" +2023-08-20,32798,4988,"[\""Phone\""]",2706.6,{},141319,0,"""South America""" +2024-07-22,32799,2461,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",395.18,{},116456,0,"""Asia""" +2023-10-06,32800,7388,"[\""Tablet\"", \""Charger\""]",213.4,{},203265,0,"""South America""" +2023-02-26,32801,3435,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1010.01,"{\""promo\"": \""6%\""}",158852,0,"""Asia""" +2024-10-27,32802,8716,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4624.68,"{\""seasonal\"": \""28%\""}",205453,0,"""Asia""" +2024-12-27,32803,9557,"[\""Headphones\""]",1099.44,{},154020,1,"""Europe""" +2024-12-12,32804,8521,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3727.04,"{\""promo\"": \""17%\""}",215170,0,"""South America""" +2023-03-22,32805,6100,"[\""Tablet\"", \""Headphones\""]",1225.1,"{\""promo\"": \""14%\""}",278288,1,"""Africa""" +2024-10-14,32806,8136,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3556.76,{},128531,0,"""Africa""" +2023-09-23,32807,1769,"[\""Tablet\"", \""Laptop\""]",4688.08,"{\""seasonal\"": \""13%\""}",226276,1,"""Europe""" +2023-01-17,32808,8412,"[\""Phone\"", \""Keyboard\""]",2464.4,{},205552,1,"""Asia""" +2023-07-10,32809,3570,"[\""Charger\"", \""Laptop\""]",1087.1,{},199669,0,"""Africa""" +2023-03-29,32810,6535,"[\""Phone\"", \""Charger\""]",1503.59,{},216714,0,"""North America""" +2024-09-16,32811,808,"[\""Wireless Mouse\""]",579.47,"{\""seasonal\"": \""25%\""}",280356,0,"""Asia""" +2023-04-30,32812,7136,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",362.92,"{\""loyalty\"": \""20%\""}",146227,0,"""Africa""" +2024-02-01,32813,7929,"[\""Wireless Mouse\""]",4674.24,{},298379,1,"""North America""" +2023-04-30,32814,1421,"[\""Monitor\""]",4130.88,{},139788,1,"""South America""" +2023-06-16,32815,6504,"[\""Monitor\""]",1841.94,"{\""seasonal\"": \""15%\""}",266600,1,"""Asia""" +2023-02-25,32816,2679,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2521.73,{},24701,0,"""Asia""" +2024-04-25,32817,5580,"[\""Tablet\""]",1180.06,"{\""loyalty\"": \""30%\""}",168423,1,"""Asia""" +2024-04-02,32818,7749,"[\""Tablet\""]",1092.03,{},269656,1,"""Europe""" +2023-07-14,32819,5709,"[\""Wireless Mouse\"", \""Keyboard\""]",138.91,"{\""promo\"": \""19%\""}",290331,1,"""North America""" +2023-09-07,32820,2092,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4417.38,"{\""promo\"": \""22%\""}",30080,0,"""South America""" +2023-06-16,32821,9727,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4475.12,{},118834,0,"""South America""" +2023-10-29,32822,4827,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1464.43,"{\""seasonal\"": \""15%\""}",158401,0,"""Africa""" +2024-03-10,32823,605,"[\""Tablet\""]",3836.88,{},265487,1,"""Africa""" +2023-01-05,32824,7590,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1947.24,{},9741,0,"""North America""" +2023-11-16,32825,5784,"[\""Wireless Mouse\""]",742.56,{},69376,1,"""Asia""" +2024-02-19,32826,9825,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2524.51,{},92624,1,"""Europe""" +2024-08-15,32827,2149,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4489.89,{},172536,1,"""Europe""" +2023-04-04,32828,6434,"[\""Headphones\"", \""Keyboard\""]",4682.36,"{\""promo\"": \""28%\""}",270898,0,"""South America""" +2024-08-14,32829,9000,"[\""Headphones\"", \""Phone\"", \""Charger\""]",844.26,{},206780,1,"""South America""" +2023-02-19,32830,3093,"[\""Phone\"", \""Headphones\""]",1091.22,"{\""loyalty\"": \""18%\""}",106572,1,"""North America""" +2023-11-08,32831,6535,"[\""Tablet\"", \""Laptop\""]",1081.4,{},274949,1,"""Asia""" +2024-12-07,32832,7249,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1406.02,"{\""seasonal\"": \""5%\""}",12395,0,"""Europe""" +2024-12-10,32833,1363,"[\""Laptop\"", \""Wireless Mouse\""]",1585.87,"{\""loyalty\"": \""12%\""}",41978,0,"""Africa""" +2023-11-05,32834,8967,"[\""Headphones\"", \""Keyboard\""]",1917.42,"{\""loyalty\"": \""28%\""}",35609,1,"""Europe""" +2024-08-28,32835,4400,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",492.83,"{\""promo\"": \""11%\""}",197411,0,"""South America""" +2024-08-18,32836,5365,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4726.04,"{\"": \""5%\""}",276862,0,"""South America""" +2023-11-17,32837,6479,"[\""Laptop\""]",4505.75,"{\"": \""23%\""}",202340,0,"""Africa""" +2024-02-02,32838,9343,"[\""Keyboard\"", \""Wireless Mouse\""]",2174.75,{},15577,0,"""Europe""" +2023-12-01,32839,653,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",79.15,{},67870,0,"""Africa""" +2024-08-11,32840,7762,"[\""Keyboard\""]",647.0,"{\"": \""5%\""}",123122,1,"""North America""" +2023-12-30,32841,2471,"[\""Wireless Mouse\""]",252.78,"{\"": \""23%\""}",175711,0,"""Asia""" +2024-02-14,32842,6331,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2463.88,{},224161,1,"""North America""" +2024-10-22,32843,112,"[\""Keyboard\""]",3506.78,"{\""seasonal\"": \""10%\""}",274324,0,"""Asia""" +2023-09-15,32844,8851,"[\""Monitor\"", \""Keyboard\""]",1232.83,"{\""promo\"": \""30%\""}",184893,1,"""Africa""" +2023-07-03,32845,428,"[\""Monitor\""]",3219.21,"{\"": \""8%\""}",272702,1,"""North America""" +2024-09-23,32846,5607,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",275.37,{},153434,1,"""Africa""" +2023-01-21,32847,2066,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1024.47,{},115325,1,"""Europe""" +2024-10-11,32848,9394,"[\""Phone\""]",860.94,{},61810,1,"""North America""" +2024-04-24,32849,92,"[\""Monitor\"", \""Charger\""]",3033.74,"{\""promo\"": \""8%\""}",87290,0,"""Europe""" +2024-02-25,32850,9020,"[\""Keyboard\""]",3203.14,{},140547,1,"""South America""" +2024-05-25,32851,7349,"[\""Wireless Mouse\"", \""Laptop\""]",3651.38,{},261896,0,"""North America""" +2023-05-31,32852,1163,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3388.18,"{\""seasonal\"": \""5%\""}",153015,0,"""North America""" +2023-05-19,32853,1312,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2223.2,{},255615,1,"""South America""" +2023-11-24,32854,597,"[\""Wireless Mouse\""]",3326.85,{},155593,0,"""Europe""" +2024-01-11,32855,6553,"[\""Phone\"", \""Wireless Mouse\""]",4609.57,{},197291,0,"""South America""" +2024-05-06,32856,4177,"[\""Wireless Mouse\""]",1539.81,{},205407,0,"""Africa""" +2024-09-04,32857,5864,"[\""Headphones\""]",2210.58,"{\"": \""23%\""}",157907,0,"""North America""" +2024-10-31,32858,4477,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1966.87,"{\""promo\"": \""19%\""}",259728,0,"""North America""" +2023-03-18,32859,991,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4635.85,{},247346,0,"""Africa""" +2023-03-13,32860,6915,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2258.81,{},186378,0,"""North America""" +2023-08-29,32861,9195,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2808.57,{},180624,1,"""Europe""" +2024-07-04,32862,1404,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4767.65,{},274762,0,"""South America""" +2023-10-21,32863,3991,"[\""Wireless Mouse\"", \""Laptop\""]",3716.09,{},155120,1,"""Asia""" +2024-10-14,32864,9000,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2105.19,{},40076,1,"""South America""" +2023-10-05,32865,5391,"[\""Headphones\""]",150.75,"{\""loyalty\"": \""19%\""}",299267,0,"""North America""" +2024-02-19,32866,8086,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3639.67,"{\"": \""26%\""}",123067,1,"""South America""" +2024-10-30,32867,9971,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4687.75,{},88333,1,"""Africa""" +2024-02-17,32868,8260,"[\""Wireless Mouse\"", \""Monitor\""]",1055.92,"{\""loyalty\"": \""14%\""}",170689,1,"""Europe""" +2023-06-22,32869,252,"[\""Charger\""]",3509.59,{},94874,0,"""Europe""" +2024-09-15,32870,313,"[\""Monitor\"", \""Tablet\""]",3387.44,"{\""loyalty\"": \""6%\""}",12384,1,"""Europe""" +2024-09-10,32871,5399,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1119.97,"{\""seasonal\"": \""23%\""}",204422,0,"""Asia""" +2023-08-11,32872,6083,"[\""Wireless Mouse\"", \""Keyboard\""]",4450.19,{},251137,0,"""North America""" +2023-05-25,32873,7101,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3097.68,"{\"": \""12%\""}",182292,1,"""South America""" +2024-09-01,32874,9588,"[\""Phone\"", \""Monitor\""]",2585.17,{},81313,0,"""Asia""" +2023-03-13,32875,6027,"[\""Tablet\""]",2780.13,{},52061,0,"""North America""" +2023-07-10,32876,4710,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1501.03,{},5182,0,"""Europe""" +2023-10-06,32877,2901,"[\""Monitor\""]",1755.67,{},248521,0,"""North America""" +2024-04-28,32878,6062,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1836.89,"{\""promo\"": \""28%\""}",51965,0,"""Europe""" +2024-07-06,32879,3528,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",175.1,"{\""loyalty\"": \""14%\""}",48051,0,"""Europe""" +2023-02-13,32880,6759,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1584.27,"{\""seasonal\"": \""14%\""}",195410,1,"""South America""" +2024-11-22,32881,7652,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1755.43,"{\""seasonal\"": \""15%\""}",289590,1,"""South America""" +2024-10-28,32882,1371,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4539.95,"{\""loyalty\"": \""27%\""}",29917,1,"""Africa""" +2024-11-04,32883,8084,"[\""Laptop\"", \""Keyboard\""]",3527.81,{},201791,0,"""Africa""" +2023-03-09,32884,7761,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3312.7,{},42922,1,"""Asia""" +2023-12-03,32885,5963,"[\""Laptop\""]",3707.13,{},228624,1,"""South America""" +2023-01-02,32886,1871,"[\""Keyboard\""]",3291.76,{},67905,0,"""Asia""" +2023-06-16,32887,3720,"[\""Phone\""]",1210.71,"{\"": \""7%\""}",110830,0,"""North America""" +2024-01-25,32888,4401,"[\""Monitor\"", \""Phone\""]",3354.52,{},81540,0,"""North America""" +2023-08-31,32889,721,"[\""Wireless Mouse\""]",2863.89,{},251086,0,"""Asia""" +2023-08-19,32890,2980,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2424.96,"{\""promo\"": \""11%\""}",48056,0,"""Africa""" +2024-03-27,32891,1725,"[\""Laptop\""]",492.2,"{\"": \""9%\""}",121212,1,"""North America""" +2023-12-07,32892,1234,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3323.69,{},64719,1,"""Europe""" +2023-10-31,32893,5066,"[\""Keyboard\""]",2636.13,"{\""promo\"": \""9%\""}",58351,0,"""Africa""" +2024-06-08,32894,8417,"[\""Charger\"", \""Wireless Mouse\""]",4772.24,{},65866,0,"""Africa""" +2023-09-02,32895,4330,"[\""Keyboard\""]",739.2,{},85462,0,"""South America""" +2024-03-29,32896,7053,"[\""Wireless Mouse\""]",1977.38,"{\"": \""8%\""}",163990,0,"""South America""" +2023-01-22,32897,5176,"[\""Laptop\""]",3828.89,{},70583,0,"""North America""" +2024-08-01,32898,7160,"[\""Charger\"", \""Monitor\""]",3546.32,"{\""seasonal\"": \""25%\""}",279674,0,"""South America""" +2023-08-02,32899,4620,"[\""Charger\""]",3473.07,{},218661,1,"""Africa""" +2024-09-03,32900,5607,"[\""Headphones\"", \""Tablet\""]",4274.54,"{\"": \""6%\""}",116478,0,"""South America""" +2024-07-26,32901,1980,"[\""Wireless Mouse\""]",1351.26,{},233886,0,"""South America""" +2024-02-23,32902,4240,"[\""Headphones\"", \""Tablet\""]",3578.61,"{\"": \""14%\""}",137640,1,"""Asia""" +2024-02-19,32903,1213,"[\""Wireless Mouse\""]",2925.42,{},51340,1,"""Europe""" +2024-03-09,32904,4165,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",101.2,{},118278,0,"""South America""" +2023-06-13,32905,5953,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",756.39,{},125293,0,"""Europe""" +2024-04-14,32906,7912,"[\""Keyboard\"", \""Laptop\""]",2768.77,"{\""loyalty\"": \""5%\""}",255845,0,"""South America""" +2023-11-27,32907,8360,"[\""Charger\"", \""Phone\""]",3984.13,{},291311,0,"""Africa""" +2023-06-17,32908,5301,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1439.99,"{\""seasonal\"": \""12%\""}",89817,1,"""Europe""" +2023-05-29,32909,1081,"[\""Wireless Mouse\"", \""Monitor\""]",2980.24,{},231780,0,"""Africa""" +2024-10-23,32910,7955,"[\""Phone\"", \""Charger\"", \""Headphones\""]",539.13,{},267507,1,"""Europe""" +2023-10-11,32911,1145,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2834.75,{},260230,1,"""Asia""" +2024-08-16,32912,6771,"[\""Keyboard\"", \""Laptop\""]",121.08,"{\""promo\"": \""7%\""}",239489,0,"""South America""" +2024-07-28,32913,5803,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1164.81,{},107623,1,"""Africa""" +2024-11-20,32914,204,"[\""Phone\""]",3790.46,{},285524,1,"""Asia""" +2023-05-25,32915,215,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3285.89,{},89233,0,"""Asia""" +2023-12-30,32916,7627,"[\""Phone\""]",698.78,"{\""seasonal\"": \""28%\""}",174828,1,"""South America""" +2024-04-20,32917,1969,"[\""Laptop\""]",4971.35,{},59610,1,"""Africa""" +2024-08-14,32918,239,"[\""Phone\"", \""Tablet\""]",4681.27,{},198725,1,"""Asia""" +2023-08-05,32919,1288,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",918.28,{},244573,0,"""North America""" +2024-02-04,32920,3681,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3560.32,"{\""promo\"": \""29%\""}",156357,0,"""Europe""" +2024-11-13,32921,8768,"[\""Headphones\""]",708.09,{},79479,0,"""North America""" +2023-09-22,32922,6419,"[\""Tablet\"", \""Keyboard\""]",2764.88,"{\""loyalty\"": \""24%\""}",132872,0,"""North America""" +2023-08-31,32923,9535,"[\""Keyboard\""]",418.62,"{\""loyalty\"": \""8%\""}",37524,1,"""Asia""" +2023-08-10,32924,5735,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3047.3,"{\""loyalty\"": \""28%\""}",46383,1,"""Asia""" +2024-06-09,32925,9860,"[\""Keyboard\""]",3310.37,"{\""promo\"": \""11%\""}",117744,0,"""Asia""" +2024-06-25,32926,4119,"[\""Phone\""]",668.98,"{\""seasonal\"": \""7%\""}",157528,1,"""Africa""" +2024-04-10,32927,9856,"[\""Wireless Mouse\""]",56.95,{},13138,0,"""Europe""" +2023-12-30,32928,3480,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",136.99,{},13215,0,"""Africa""" +2023-08-26,32929,2301,"[\""Wireless Mouse\"", \""Headphones\""]",4956.16,"{\""loyalty\"": \""17%\""}",35692,1,"""Asia""" +2023-09-14,32930,1737,"[\""Tablet\""]",3279.65,"{\""loyalty\"": \""29%\""}",20173,0,"""Europe""" +2023-09-05,32931,7286,"[\""Wireless Mouse\""]",2868.53,{},173424,0,"""Africa""" +2023-12-24,32932,5654,"[\""Wireless Mouse\""]",2028.88,"{\""loyalty\"": \""18%\""}",132087,0,"""North America""" +2023-06-05,32933,6205,"[\""Charger\"", \""Wireless Mouse\""]",2821.57,{},101758,1,"""South America""" +2024-08-21,32934,7788,"[\""Charger\""]",366.57,"{\""loyalty\"": \""10%\""}",129096,1,"""Europe""" +2024-03-16,32935,7817,"[\""Monitor\""]",1463.25,{},135889,1,"""Asia""" +2023-08-27,32936,5389,"[\""Wireless Mouse\""]",3150.13,"{\""loyalty\"": \""20%\""}",235218,0,"""Europe""" +2023-08-24,32937,2912,"[\""Wireless Mouse\"", \""Headphones\""]",3511.54,"{\"": \""19%\""}",226900,0,"""South America""" +2024-01-05,32938,2539,"[\""Phone\""]",4957.68,"{\""promo\"": \""24%\""}",154924,0,"""Europe""" +2023-05-19,32939,2501,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1196.14,"{\""seasonal\"": \""24%\""}",14445,1,"""Asia""" +2024-12-20,32940,4447,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4592.78,"{\""promo\"": \""12%\""}",208736,0,"""Europe""" +2024-01-17,32941,7935,"[\""Headphones\""]",4397.49,"{\""loyalty\"": \""30%\""}",252112,0,"""South America""" +2023-07-14,32942,9824,"[\""Headphones\"", \""Laptop\""]",2557.26,{},48224,1,"""Europe""" +2024-12-30,32943,4885,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3955.83,{},104612,1,"""Asia""" +2024-04-25,32944,8211,"[\""Charger\""]",3554.97,{},290650,1,"""South America""" +2023-07-06,32945,6263,"[\""Tablet\""]",1330.11,"{\""seasonal\"": \""11%\""}",98730,1,"""Europe""" +2024-06-11,32946,77,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",136.03,{},111024,0,"""Africa""" +2024-11-18,32947,3051,"[\""Headphones\"", \""Tablet\""]",2534.55,"{\""promo\"": \""28%\""}",11047,1,"""Africa""" +2023-10-18,32948,3177,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1714.21,{},131372,1,"""North America""" +2024-05-11,32949,6178,"[\""Monitor\"", \""Wireless Mouse\""]",692.37,"{\""loyalty\"": \""26%\""}",276001,0,"""Asia""" +2024-01-29,32950,7875,"[\""Keyboard\"", \""Tablet\""]",1839.0,{},10610,0,"""North America""" +2023-05-28,32951,517,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3579.38,{},157023,0,"""Europe""" +2024-11-01,32952,2207,"[\""Headphones\"", \""Tablet\""]",207.09,"{\""promo\"": \""7%\""}",148609,0,"""Asia""" +2023-01-08,32953,9209,"[\""Laptop\""]",3911.6,{},153455,1,"""Europe""" +2023-09-05,32954,8089,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",475.25,"{\"": \""5%\""}",30141,1,"""Europe""" +2023-09-04,32955,4071,"[\""Tablet\"", \""Headphones\""]",1630.65,"{\""loyalty\"": \""22%\""}",209745,1,"""Asia""" +2024-04-24,32956,1289,"[\""Wireless Mouse\""]",3440.5,"{\""promo\"": \""19%\""}",260201,1,"""Asia""" +2023-05-05,32957,6128,"[\""Charger\""]",4313.0,{},145370,1,"""North America""" +2024-06-11,32958,119,"[\""Wireless Mouse\"", \""Headphones\""]",1788.21,{},110783,0,"""South America""" +2023-07-31,32959,5078,"[\""Monitor\"", \""Keyboard\""]",3120.44,"{\""loyalty\"": \""8%\""}",245385,1,"""Africa""" +2024-02-10,32960,3832,"[\""Keyboard\""]",2463.61,"{\""loyalty\"": \""24%\""}",253036,1,"""North America""" +2023-07-03,32961,7974,"[\""Tablet\""]",4158.26,"{\"": \""8%\""}",150215,0,"""Asia""" +2023-12-01,32962,2643,"[\""Laptop\""]",407.25,"{\""seasonal\"": \""24%\""}",96388,1,"""Africa""" +2023-05-26,32963,8984,"[\""Phone\""]",2126.25,{},100060,0,"""South America""" +2023-11-23,32964,8797,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3532.68,"{\""seasonal\"": \""14%\""}",132209,1,"""Africa""" +2023-11-02,32965,1085,"[\""Tablet\"", \""Laptop\""]",1876.65,{},61307,0,"""Europe""" +2024-06-05,32966,7975,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2432.77,"{\""loyalty\"": \""12%\""}",154683,0,"""Asia""" +2023-06-29,32967,5734,"[\""Monitor\"", \""Charger\"", \""Phone\""]",126.71,{},148992,0,"""North America""" +2023-11-19,32968,8812,"[\""Keyboard\""]",1114.7,{},141917,1,"""North America""" +2023-04-27,32969,1401,"[\""Phone\"", \""Headphones\""]",1798.55,"{\""seasonal\"": \""24%\""}",263017,1,"""South America""" +2023-03-08,32970,4834,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1107.02,{},54868,0,"""Asia""" +2023-09-23,32971,4565,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2001.05,{},138317,0,"""South America""" +2023-02-05,32972,6920,"[\""Wireless Mouse\""]",980.98,"{\""promo\"": \""13%\""}",65062,0,"""North America""" +2023-08-01,32973,3690,"[\""Wireless Mouse\""]",3521.87,"{\""loyalty\"": \""7%\""}",153744,0,"""Europe""" +2024-02-02,32974,1864,"[\""Phone\"", \""Headphones\""]",1354.39,{},252694,0,"""South America""" +2024-01-23,32975,6155,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2636.78,{},298369,0,"""Europe""" +2023-06-17,32976,6828,"[\""Headphones\""]",2021.63,"{\""promo\"": \""9%\""}",59027,1,"""Africa""" +2024-05-01,32977,6830,"[\""Headphones\"", \""Keyboard\""]",2048.67,{},239892,0,"""Africa""" +2023-04-21,32978,9209,"[\""Laptop\""]",525.49,"{\""loyalty\"": \""23%\""}",2334,1,"""South America""" +2023-01-14,32979,6275,"[\""Wireless Mouse\""]",1396.19,{},129146,1,"""Africa""" +2024-09-09,32980,1027,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1672.25,"{\"": \""5%\""}",243006,1,"""Europe""" +2024-05-18,32981,6253,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3838.44,{},45351,0,"""South America""" +2024-02-01,32982,9818,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",928.28,"{\""loyalty\"": \""22%\""}",123096,1,"""South America""" +2024-03-17,32983,4497,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2222.11,"{\""loyalty\"": \""28%\""}",97868,1,"""Europe""" +2023-09-11,32984,923,"[\""Laptop\"", \""Charger\""]",343.86,{},281134,1,"""Africa""" +2024-03-13,32985,9152,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1147.54,{},22832,1,"""Europe""" +2023-08-01,32986,5273,"[\""Headphones\"", \""Charger\""]",265.61,"{\""promo\"": \""6%\""}",132952,1,"""South America""" +2024-03-22,32987,9412,"[\""Phone\"", \""Wireless Mouse\""]",2967.38,"{\""seasonal\"": \""17%\""}",246817,0,"""Asia""" +2024-07-18,32988,4187,"[\""Keyboard\""]",3238.88,{},12401,0,"""South America""" +2024-10-18,32989,197,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2803.59,{},47004,0,"""Asia""" +2024-06-28,32990,82,"[\""Charger\"", \""Phone\""]",1678.21,"{\""seasonal\"": \""25%\""}",183746,0,"""South America""" +2024-12-21,32991,8232,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1052.87,"{\""loyalty\"": \""30%\""}",56370,0,"""Europe""" +2024-10-15,32992,4814,"[\""Laptop\"", \""Keyboard\""]",2008.92,"{\"": \""5%\""}",106536,1,"""Africa""" +2023-10-17,32993,7693,"[\""Keyboard\"", \""Laptop\""]",4022.55,"{\"": \""20%\""}",128800,1,"""Africa""" +2024-06-21,32994,8032,"[\""Tablet\"", \""Monitor\""]",1194.91,"{\""loyalty\"": \""15%\""}",150533,1,"""Africa""" +2024-12-16,32995,1705,"[\""Charger\"", \""Phone\""]",3107.15,"{\""seasonal\"": \""29%\""}",38273,0,"""Europe""" +2024-03-27,32996,735,"[\""Headphones\"", \""Wireless Mouse\""]",4795.73,"{\"": \""24%\""}",156031,0,"""Asia""" +2024-08-18,32997,4712,"[\""Laptop\"", \""Headphones\""]",4039.39,{},113786,0,"""Asia""" +2024-09-16,32998,5682,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3540.69,{},172646,0,"""Africa""" +2024-05-20,32999,7036,"[\""Tablet\"", \""Charger\""]",888.47,"{\""loyalty\"": \""13%\""}",236608,1,"""Africa""" +2023-11-23,33000,6243,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1940.92,"{\"": \""5%\""}",24157,0,"""Africa""" +2024-10-11,33001,9471,"[\""Wireless Mouse\""]",292.84,"{\""promo\"": \""12%\""}",282657,0,"""Europe""" +2023-05-12,33002,8970,"[\""Charger\"", \""Keyboard\""]",3911.39,"{\"": \""21%\""}",218104,1,"""Africa""" +2024-07-10,33003,1929,"[\""Charger\"", \""Laptop\""]",2770.0,"{\""loyalty\"": \""29%\""}",115137,1,"""Europe""" +2024-11-09,33004,824,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1767.36,"{\""promo\"": \""29%\""}",92911,1,"""Europe""" +2023-02-16,33005,8832,"[\""Monitor\"", \""Keyboard\""]",2822.22,{},288203,0,"""South America""" +2023-05-25,33006,9571,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3166.9,"{\""loyalty\"": \""27%\""}",117044,0,"""South America""" +2023-11-01,33007,9200,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4200.42,{},165428,0,"""South America""" +2023-02-07,33008,5798,"[\""Laptop\""]",249.18,{},46705,0,"""North America""" +2024-01-20,33009,6942,"[\""Monitor\"", \""Charger\""]",3771.52,"{\""loyalty\"": \""17%\""}",148171,1,"""South America""" +2023-02-06,33010,2763,"[\""Laptop\""]",1589.53,"{\"": \""10%\""}",41007,1,"""North America""" +2024-11-10,33011,2171,"[\""Tablet\""]",3614.79,{},165048,0,"""Asia""" +2024-05-18,33012,4015,"[\""Charger\""]",3823.25,"{\""seasonal\"": \""28%\""}",96389,1,"""Europe""" +2024-11-19,33013,1354,"[\""Wireless Mouse\"", \""Phone\""]",585.54,{},19023,1,"""Africa""" +2024-07-17,33014,7682,"[\""Monitor\""]",2181.09,{},105922,1,"""Asia""" +2024-04-04,33015,8909,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1810.97,"{\""loyalty\"": \""7%\""}",251772,1,"""North America""" +2024-05-13,33016,6306,"[\""Headphones\"", \""Keyboard\""]",238.91,"{\""seasonal\"": \""13%\""}",262735,1,"""South America""" +2024-10-13,33017,261,"[\""Headphones\"", \""Charger\""]",1041.73,"{\""promo\"": \""20%\""}",119231,1,"""South America""" +2024-05-20,33018,4389,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2291.21,"{\""promo\"": \""23%\""}",79242,1,"""North America""" +2024-06-14,33019,9361,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",99.84,{},69176,0,"""Europe""" +2023-10-16,33020,8045,"[\""Headphones\"", \""Laptop\""]",2208.93,"{\""promo\"": \""24%\""}",277076,0,"""Europe""" +2024-04-12,33021,906,"[\""Wireless Mouse\""]",2119.06,{},160963,1,"""Africa""" +2024-06-10,33022,6157,"[\""Headphones\"", \""Keyboard\""]",1964.0,{},147578,0,"""Asia""" +2024-12-15,33023,4320,"[\""Headphones\"", \""Monitor\""]",2282.63,{},190787,0,"""South America""" +2024-08-11,33024,6061,"[\""Wireless Mouse\""]",3840.84,{},105037,1,"""North America""" +2024-12-09,33025,5124,"[\""Laptop\""]",3390.28,"{\""loyalty\"": \""16%\""}",271163,0,"""Asia""" +2023-06-27,33026,9077,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",629.31,"{\""seasonal\"": \""11%\""}",130795,1,"""South America""" +2023-03-03,33027,2192,"[\""Keyboard\"", \""Phone\""]",1575.06,{},150811,1,"""North America""" +2023-09-26,33028,1473,"[\""Tablet\"", \""Charger\""]",2370.39,"{\""loyalty\"": \""7%\""}",133886,0,"""Europe""" +2024-04-21,33029,3912,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4911.85,"{\""promo\"": \""9%\""}",293592,0,"""North America""" +2023-05-11,33030,5528,"[\""Laptop\""]",1536.24,"{\"": \""14%\""}",204748,1,"""South America""" +2023-02-26,33031,5779,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",189.12,{},14788,1,"""Asia""" +2024-05-24,33032,4054,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3125.31,"{\""loyalty\"": \""26%\""}",193217,1,"""North America""" +2023-03-04,33033,1785,"[\""Monitor\""]",1208.86,"{\""seasonal\"": \""13%\""}",97698,0,"""South America""" +2024-11-16,33034,4181,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1854.58,"{\"": \""23%\""}",207030,0,"""North America""" +2023-05-29,33035,8210,"[\""Wireless Mouse\""]",1618.96,"{\""promo\"": \""17%\""}",110856,1,"""South America""" +2023-12-30,33036,7347,"[\""Headphones\""]",118.34,{},242190,1,"""Europe""" +2023-01-24,33037,4630,"[\""Charger\""]",4942.3,"{\""promo\"": \""16%\""}",90446,1,"""Africa""" +2023-10-31,33038,5383,"[\""Keyboard\""]",578.04,"{\""loyalty\"": \""24%\""}",30591,0,"""Asia""" +2023-01-12,33039,1299,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4769.85,"{\""promo\"": \""16%\""}",67786,0,"""Europe""" +2023-07-11,33040,9301,"[\""Headphones\"", \""Phone\""]",4730.5,"{\""seasonal\"": \""30%\""}",280098,1,"""Asia""" +2023-01-22,33041,1030,"[\""Wireless Mouse\"", \""Headphones\""]",1026.3,{},139411,1,"""Africa""" +2023-03-10,33042,4531,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2642.79,"{\""loyalty\"": \""27%\""}",106367,1,"""South America""" +2023-11-27,33043,6346,"[\""Monitor\""]",3123.01,{},271697,1,"""Asia""" +2024-10-27,33044,5215,"[\""Laptop\""]",4228.03,"{\""loyalty\"": \""19%\""}",195825,0,"""North America""" +2024-05-28,33045,4744,"[\""Charger\"", \""Wireless Mouse\""]",3384.43,{},60528,1,"""North America""" +2024-06-06,33046,580,"[\""Monitor\"", \""Wireless Mouse\""]",1042.97,{},162445,1,"""Africa""" +2024-08-09,33047,6013,"[\""Phone\"", \""Laptop\""]",1546.92,{},10473,0,"""North America""" +2023-08-03,33048,3144,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3624.53,"{\""promo\"": \""26%\""}",279571,1,"""Africa""" +2024-11-16,33049,9001,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",961.96,{},108795,1,"""South America""" +2023-07-10,33050,1594,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",122.12,"{\"": \""24%\""}",49940,0,"""Europe""" +2023-04-27,33051,5218,"[\""Monitor\"", \""Keyboard\""]",1872.96,{},141688,1,"""Europe""" +2024-01-19,33052,2784,"[\""Tablet\"", \""Charger\"", \""Phone\""]",420.67,{},136838,1,"""North America""" +2024-12-23,33053,8365,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2647.88,{},12078,0,"""Africa""" +2023-02-10,33054,7352,"[\""Wireless Mouse\""]",4284.22,{},41419,0,"""Asia""" +2023-01-16,33055,8870,"[\""Wireless Mouse\"", \""Keyboard\""]",2495.71,"{\""promo\"": \""9%\""}",20402,0,"""South America""" +2023-01-22,33056,6605,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",222.47,{},273114,0,"""North America""" +2023-07-19,33057,6985,"[\""Keyboard\""]",4688.96,"{\""seasonal\"": \""29%\""}",95232,0,"""North America""" +2023-08-13,33058,3751,"[\""Laptop\"", \""Charger\""]",430.66,"{\""loyalty\"": \""24%\""}",184975,1,"""South America""" +2024-02-12,33059,3469,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1600.55,{},93752,1,"""Asia""" +2024-10-14,33060,2520,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",990.34,"{\""seasonal\"": \""27%\""}",131036,1,"""Asia""" +2023-12-29,33061,9829,"[\""Monitor\"", \""Charger\""]",3545.0,{},27737,0,"""Asia""" +2023-04-14,33062,9437,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3433.45,"{\""loyalty\"": \""15%\""}",121963,1,"""South America""" +2023-09-08,33063,7241,"[\""Charger\"", \""Wireless Mouse\""]",852.65,"{\""promo\"": \""8%\""}",142618,0,"""Europe""" +2023-12-02,33064,1848,"[\""Charger\""]",2696.9,"{\""promo\"": \""12%\""}",256116,0,"""Africa""" +2024-09-03,33065,6314,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2638.65,{},157758,1,"""Africa""" +2023-12-09,33066,386,"[\""Laptop\""]",4460.44,{},69719,1,"""North America""" +2023-03-05,33067,9756,"[\""Wireless Mouse\""]",851.94,"{\"": \""13%\""}",161753,1,"""Europe""" +2023-09-07,33068,4854,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4124.39,{},268973,1,"""North America""" +2024-09-24,33069,8731,"[\""Keyboard\""]",3445.86,"{\"": \""25%\""}",191862,1,"""South America""" +2024-01-22,33070,5246,"[\""Laptop\""]",2382.57,{},250498,1,"""Asia""" +2024-06-02,33071,2358,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3606.48,{},139821,1,"""Asia""" +2024-10-16,33072,9297,"[\""Monitor\"", \""Charger\""]",2679.42,{},190768,0,"""Asia""" +2023-02-06,33073,6768,"[\""Headphones\""]",1050.24,"{\"": \""27%\""}",157275,0,"""North America""" +2024-09-23,33074,6996,"[\""Headphones\"", \""Laptop\""]",3030.39,"{\""seasonal\"": \""12%\""}",80294,1,"""North America""" +2023-04-28,33075,7669,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1060.99,"{\"": \""27%\""}",94335,1,"""Africa""" +2023-01-14,33076,42,"[\""Tablet\"", \""Charger\""]",1012.36,{},83397,1,"""South America""" +2024-04-14,33077,2100,"[\""Phone\"", \""Wireless Mouse\""]",4306.76,{},96093,1,"""Asia""" +2023-04-16,33078,7351,"[\""Headphones\""]",4182.49,{},233030,0,"""Asia""" +2024-02-06,33079,1433,"[\""Headphones\"", \""Laptop\""]",1011.88,{},9964,0,"""Europe""" +2023-05-21,33080,671,"[\""Laptop\""]",822.25,{},210363,1,"""Africa""" +2023-05-10,33081,3545,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4904.43,"{\""seasonal\"": \""7%\""}",203042,0,"""Asia""" +2024-04-07,33082,4991,"[\""Headphones\"", \""Keyboard\""]",1354.71,{},18798,0,"""Europe""" +2023-12-07,33083,4176,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",259.0,"{\""loyalty\"": \""29%\""}",7889,1,"""Asia""" +2024-11-05,33084,779,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4076.73,{},99831,0,"""Asia""" +2023-05-17,33085,5888,"[\""Headphones\"", \""Charger\""]",2922.42,"{\""loyalty\"": \""14%\""}",65562,1,"""Asia""" +2024-07-28,33086,6874,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3107.88,"{\"": \""27%\""}",94479,0,"""Africa""" +2023-06-27,33087,2081,"[\""Laptop\"", \""Phone\""]",344.29,{},181837,0,"""Asia""" +2023-01-13,33088,5700,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4568.1,{},293750,1,"""Asia""" +2023-07-01,33089,4966,"[\""Monitor\"", \""Wireless Mouse\""]",3660.55,"{\""promo\"": \""26%\""}",41292,0,"""South America""" +2024-07-10,33090,4837,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1870.08,"{\"": \""30%\""}",47709,0,"""Asia""" +2024-02-13,33091,9621,"[\""Keyboard\""]",3498.31,"{\""promo\"": \""11%\""}",38968,1,"""North America""" +2023-10-10,33092,5266,"[\""Keyboard\""]",2071.2,{},265454,1,"""South America""" +2023-10-05,33093,5851,"[\""Monitor\""]",1583.33,{},182741,0,"""South America""" +2024-01-06,33094,4444,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2077.75,{},108468,1,"""South America""" +2023-12-25,33095,6438,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3036.58,{},87884,1,"""Asia""" +2023-07-12,33096,2186,"[\""Headphones\"", \""Monitor\""]",194.21,{},258182,1,"""Asia""" +2023-01-24,33097,223,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3856.07,{},127370,0,"""South America""" +2023-08-23,33098,8320,"[\""Laptop\"", \""Headphones\""]",3137.21,"{\""seasonal\"": \""6%\""}",81165,1,"""Europe""" +2024-01-24,33099,6417,"[\""Keyboard\"", \""Laptop\""]",904.15,{},177363,1,"""Asia""" +2024-08-09,33100,3906,"[\""Tablet\"", \""Laptop\""]",1009.18,{},202339,1,"""North America""" +2023-01-31,33101,1656,"[\""Laptop\"", \""Monitor\""]",133.98,{},240354,0,"""North America""" +2023-06-07,33102,4870,"[\""Laptop\"", \""Headphones\""]",3851.8,"{\""seasonal\"": \""21%\""}",157174,0,"""Asia""" +2023-11-22,33103,5867,"[\""Headphones\"", \""Phone\""]",4725.52,{},230869,1,"""Africa""" +2023-10-10,33104,4649,"[\""Headphones\""]",2115.79,{},165117,0,"""North America""" +2024-04-26,33105,8986,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4507.49,"{\""seasonal\"": \""13%\""}",177391,1,"""South America""" +2024-03-01,33106,3643,"[\""Headphones\""]",1113.68,"{\""loyalty\"": \""29%\""}",75348,0,"""Europe""" +2023-07-27,33107,9256,"[\""Phone\""]",4829.4,"{\"": \""5%\""}",279049,1,"""South America""" +2024-07-20,33108,5096,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3451.83,"{\""promo\"": \""29%\""}",243066,0,"""Europe""" +2023-02-18,33109,8547,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1079.31,"{\""promo\"": \""6%\""}",250517,0,"""South America""" +2023-03-28,33110,1125,"[\""Headphones\""]",1816.04,"{\""loyalty\"": \""26%\""}",54519,1,"""Asia""" +2024-03-19,33111,9661,"[\""Tablet\""]",68.54,"{\""loyalty\"": \""27%\""}",9117,1,"""Africa""" +2024-07-13,33112,755,"[\""Charger\"", \""Phone\""]",59.1,"{\""promo\"": \""8%\""}",160663,1,"""Asia""" +2023-01-23,33113,9572,"[\""Phone\""]",583.69,"{\""promo\"": \""5%\""}",142288,1,"""South America""" +2023-11-13,33114,1756,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2385.87,{},210796,0,"""South America""" +2023-04-08,33115,1027,"[\""Keyboard\"", \""Laptop\""]",2044.24,"{\""loyalty\"": \""26%\""}",70543,1,"""South America""" +2024-04-07,33116,9061,"[\""Charger\"", \""Tablet\""]",4456.3,{},162423,0,"""Africa""" +2024-08-09,33117,7142,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4836.15,"{\""seasonal\"": \""11%\""}",111457,1,"""Asia""" +2023-03-02,33118,7632,"[\""Laptop\"", \""Charger\""]",2465.42,"{\""loyalty\"": \""16%\""}",295036,0,"""Europe""" +2023-05-15,33119,9530,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4053.94,"{\""loyalty\"": \""24%\""}",23268,0,"""Europe""" +2024-01-15,33120,7245,"[\""Headphones\"", \""Keyboard\""]",2130.85,"{\"": \""30%\""}",80541,0,"""North America""" +2023-02-01,33121,3019,"[\""Headphones\"", \""Keyboard\""]",1672.68,{},114602,1,"""Asia""" +2023-03-19,33122,6905,"[\""Laptop\""]",1434.29,"{\""loyalty\"": \""10%\""}",210338,1,"""Africa""" +2023-04-08,33123,9783,"[\""Wireless Mouse\"", \""Phone\""]",279.32,{},161988,0,"""Africa""" +2024-06-06,33124,6939,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2349.59,{},298421,1,"""Africa""" +2023-08-16,33125,8864,"[\""Monitor\""]",160.34,{},241368,0,"""North America""" +2023-04-10,33126,7211,"[\""Keyboard\"", \""Headphones\""]",478.34,{},154365,0,"""South America""" +2024-08-07,33127,6036,"[\""Tablet\"", \""Phone\""]",3969.76,{},190309,1,"""Africa""" +2024-02-09,33128,1046,"[\""Wireless Mouse\""]",1659.78,{},233886,0,"""Europe""" +2023-08-01,33129,6538,"[\""Tablet\""]",4380.11,"{\""promo\"": \""5%\""}",148981,1,"""Asia""" +2023-08-13,33130,2116,"[\""Tablet\"", \""Keyboard\""]",4512.83,{},90573,0,"""South America""" +2023-05-10,33131,4104,"[\""Monitor\"", \""Tablet\""]",4281.31,{},61204,1,"""Asia""" +2023-06-29,33132,6602,"[\""Monitor\""]",2078.63,"{\""seasonal\"": \""10%\""}",121520,0,"""South America""" +2023-09-11,33133,632,"[\""Phone\""]",69.2,"{\""loyalty\"": \""5%\""}",142518,1,"""Europe""" +2024-01-02,33134,314,"[\""Tablet\""]",4157.19,"{\""seasonal\"": \""17%\""}",295685,1,"""Africa""" +2023-05-26,33135,6123,"[\""Monitor\""]",1051.55,"{\""loyalty\"": \""13%\""}",113638,0,"""Asia""" +2024-02-13,33136,5932,"[\""Monitor\""]",1852.0,"{\""promo\"": \""26%\""}",239413,0,"""Africa""" +2024-05-01,33137,1921,"[\""Charger\"", \""Tablet\""]",836.84,"{\""loyalty\"": \""28%\""}",219316,0,"""Asia""" +2024-10-31,33138,4029,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1895.15,"{\""seasonal\"": \""20%\""}",294352,0,"""Europe""" +2023-03-09,33139,3291,"[\""Keyboard\""]",3829.67,"{\""seasonal\"": \""29%\""}",86303,0,"""Europe""" +2023-09-27,33140,2357,"[\""Laptop\"", \""Wireless Mouse\""]",1312.61,"{\""loyalty\"": \""10%\""}",59179,0,"""South America""" +2023-07-18,33141,3843,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4232.72,"{\""seasonal\"": \""15%\""}",177737,0,"""Europe""" +2024-03-01,33142,4631,"[\""Headphones\"", \""Keyboard\""]",1125.93,{},233511,0,"""Europe""" +2023-03-30,33143,4635,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3307.36,"{\""seasonal\"": \""15%\""}",18353,0,"""Europe""" +2024-12-04,33144,712,"[\""Charger\""]",2347.01,"{\""promo\"": \""11%\""}",212998,0,"""North America""" +2024-12-12,33145,8483,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1968.79,"{\""loyalty\"": \""30%\""}",65911,0,"""South America""" +2023-12-21,33146,861,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1914.88,"{\""promo\"": \""19%\""}",66418,0,"""North America""" +2023-09-22,33147,9090,"[\""Headphones\""]",4900.9,"{\"": \""30%\""}",32336,1,"""Asia""" +2024-07-16,33148,6716,"[\""Monitor\"", \""Phone\""]",2324.25,"{\""loyalty\"": \""29%\""}",249405,0,"""Europe""" +2024-11-15,33149,6268,"[\""Tablet\"", \""Charger\""]",2063.07,{},214584,1,"""Africa""" +2024-03-12,33150,1251,"[\""Headphones\"", \""Keyboard\""]",1383.34,{},155776,1,"""Asia""" +2023-03-17,33151,3185,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4315.2,"{\""promo\"": \""8%\""}",9065,1,"""Asia""" +2023-10-15,33152,5549,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",450.98,{},126981,1,"""Africa""" +2024-05-09,33153,1374,"[\""Wireless Mouse\""]",1277.65,{},119815,0,"""North America""" +2023-12-25,33154,1737,"[\""Wireless Mouse\""]",542.01,"{\""loyalty\"": \""25%\""}",201332,0,"""Europe""" +2024-07-19,33155,712,"[\""Keyboard\""]",3284.61,"{\""promo\"": \""13%\""}",48727,0,"""Africa""" +2024-06-04,33156,9465,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",234.25,{},132857,1,"""North America""" +2023-09-15,33157,6797,"[\""Laptop\"", \""Phone\""]",984.59,"{\""seasonal\"": \""19%\""}",274910,0,"""South America""" +2023-09-27,33158,4662,"[\""Phone\"", \""Charger\""]",4276.28,{},101216,1,"""Africa""" +2024-01-28,33159,2224,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4103.39,"{\""loyalty\"": \""10%\""}",123962,1,"""Europe""" +2023-05-07,33160,2213,"[\""Phone\"", \""Charger\"", \""Monitor\""]",448.06,{},72604,0,"""Europe""" +2024-03-17,33161,1615,"[\""Phone\""]",3112.14,"{\""promo\"": \""5%\""}",69346,1,"""Europe""" +2024-03-21,33162,8145,"[\""Headphones\"", \""Charger\""]",3015.98,{},166685,1,"""Europe""" +2023-03-22,33163,2636,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2022.77,"{\"": \""28%\""}",135994,0,"""Asia""" +2023-12-17,33164,2072,"[\""Monitor\"", \""Phone\""]",4931.31,"{\""loyalty\"": \""27%\""}",43933,0,"""Asia""" +2024-05-21,33165,8845,"[\""Laptop\""]",3019.6,"{\""promo\"": \""21%\""}",184693,1,"""South America""" +2023-11-03,33166,4717,"[\""Phone\"", \""Tablet\"", \""Charger\""]",514.97,{},17423,0,"""Asia""" +2024-08-26,33167,1821,"[\""Wireless Mouse\"", \""Keyboard\""]",4634.24,{},130670,1,"""North America""" +2023-11-15,33168,8382,"[\""Monitor\"", \""Laptop\""]",3019.35,"{\""loyalty\"": \""5%\""}",285154,1,"""Europe""" +2024-01-01,33169,4654,"[\""Laptop\""]",1305.1,"{\""loyalty\"": \""11%\""}",26609,0,"""North America""" +2023-03-30,33170,9424,"[\""Headphones\"", \""Tablet\""]",4850.25,{},66800,1,"""Asia""" +2023-02-10,33171,9675,"[\""Keyboard\"", \""Phone\""]",3874.03,{},157928,1,"""South America""" +2023-12-29,33172,6561,"[\""Tablet\"", \""Charger\""]",1618.99,"{\""promo\"": \""9%\""}",67935,1,"""Africa""" +2023-09-22,33173,4446,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",609.52,{},190905,0,"""Asia""" +2023-12-20,33174,7996,"[\""Tablet\"", \""Laptop\""]",3660.84,{},285172,1,"""Asia""" +2023-06-20,33175,7401,"[\""Tablet\"", \""Monitor\""]",3463.6,{},141687,0,"""South America""" +2023-12-24,33176,980,"[\""Wireless Mouse\""]",3920.21,"{\"": \""20%\""}",138610,0,"""Europe""" +2024-06-19,33177,1527,"[\""Keyboard\""]",1897.22,"{\""loyalty\"": \""24%\""}",205763,0,"""Africa""" +2024-05-09,33178,6640,"[\""Tablet\"", \""Wireless Mouse\""]",2089.7,"{\""seasonal\"": \""19%\""}",177676,1,"""South America""" +2024-02-09,33179,9930,"[\""Charger\"", \""Wireless Mouse\""]",2816.2,{},112058,1,"""Africa""" +2023-06-05,33180,5939,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4632.0,{},279660,0,"""South America""" +2023-11-22,33181,4661,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1777.52,"{\"": \""7%\""}",50233,1,"""Europe""" +2024-06-11,33182,9723,"[\""Laptop\"", \""Monitor\""]",1615.78,{},214031,1,"""North America""" +2023-08-08,33183,5153,"[\""Phone\""]",2049.19,{},125641,0,"""Europe""" +2024-05-22,33184,7446,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2789.76,{},158290,0,"""Asia""" +2023-12-03,33185,7804,"[\""Keyboard\""]",2778.07,{},260046,0,"""Europe""" +2024-02-17,33186,5085,"[\""Wireless Mouse\""]",310.89,"{\""seasonal\"": \""8%\""}",252060,1,"""North America""" +2023-03-20,33187,6436,"[\""Phone\""]",3105.68,"{\""promo\"": \""13%\""}",82013,1,"""Asia""" +2023-08-24,33188,8489,"[\""Tablet\"", \""Phone\""]",1857.69,{},157982,1,"""Asia""" +2023-08-04,33189,3141,"[\""Phone\"", \""Keyboard\""]",93.64,{},227568,0,"""South America""" +2023-02-28,33190,40,"[\""Wireless Mouse\"", \""Phone\""]",347.85,"{\""promo\"": \""12%\""}",144072,0,"""Asia""" +2024-07-19,33191,5151,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",677.88,"{\""promo\"": \""7%\""}",50741,1,"""Africa""" +2024-07-21,33192,8832,"[\""Charger\""]",1975.72,{},23966,0,"""South America""" +2024-10-11,33193,6393,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",389.34,"{\""promo\"": \""13%\""}",120507,1,"""South America""" +2023-06-14,33194,1276,"[\""Phone\"", \""Laptop\""]",4925.06,"{\""loyalty\"": \""10%\""}",209271,1,"""North America""" +2023-02-04,33195,8134,"[\""Charger\""]",3202.35,{},215813,1,"""North America""" +2023-11-03,33196,1452,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1298.74,{},128183,0,"""North America""" +2024-12-14,33197,7845,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2071.52,{},12847,1,"""Africa""" +2024-06-26,33198,726,"[\""Monitor\""]",4691.91,{},9863,1,"""Europe""" +2023-12-17,33199,8080,"[\""Charger\"", \""Tablet\""]",3232.42,{},9883,1,"""Africa""" +2024-10-07,33200,4610,"[\""Laptop\""]",3013.21,{},1700,0,"""Asia""" +2024-10-23,33201,1847,"[\""Tablet\""]",3096.38,{},35987,0,"""Africa""" +2024-03-08,33202,936,"[\""Charger\"", \""Monitor\""]",2577.78,{},196040,0,"""Europe""" +2023-11-16,33203,2262,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2042.95,{},25431,1,"""Africa""" +2023-07-22,33204,261,"[\""Wireless Mouse\""]",2411.74,{},2226,1,"""North America""" +2023-10-01,33205,8439,"[\""Keyboard\"", \""Headphones\""]",321.61,{},67727,0,"""North America""" +2024-04-28,33206,1687,"[\""Monitor\"", \""Laptop\""]",1719.86,"{\""loyalty\"": \""14%\""}",71611,0,"""Europe""" +2023-09-12,33207,3606,"[\""Wireless Mouse\""]",801.53,"{\"": \""22%\""}",3200,1,"""South America""" +2023-12-14,33208,7272,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4079.99,{},124265,1,"""Asia""" +2024-09-17,33209,6758,"[\""Charger\""]",1741.34,{},141672,0,"""Europe""" +2023-06-26,33210,948,"[\""Keyboard\""]",1909.54,"{\""seasonal\"": \""7%\""}",82682,0,"""South America""" +2023-02-03,33211,9953,"[\""Tablet\""]",3202.45,{},171610,1,"""South America""" +2024-06-11,33212,9719,"[\""Phone\"", \""Keyboard\""]",2183.61,"{\""loyalty\"": \""19%\""}",216210,0,"""Europe""" +2024-07-01,33213,1793,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1474.0,"{\""loyalty\"": \""12%\""}",266990,1,"""North America""" +2024-03-24,33214,2675,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",918.63,"{\"": \""12%\""}",6037,0,"""South America""" +2023-06-23,33215,813,"[\""Monitor\"", \""Wireless Mouse\""]",2591.46,"{\""loyalty\"": \""9%\""}",8267,0,"""Asia""" +2024-12-11,33216,7933,"[\""Keyboard\"", \""Charger\""]",4867.48,"{\""promo\"": \""9%\""}",230491,0,"""North America""" +2024-12-17,33217,7808,"[\""Headphones\""]",1224.6,{},130158,1,"""Europe""" +2024-11-30,33218,7899,"[\""Headphones\"", \""Monitor\""]",3609.34,"{\""seasonal\"": \""25%\""}",173388,0,"""Africa""" +2023-02-10,33219,2567,"[\""Laptop\""]",3666.02,"{\""seasonal\"": \""9%\""}",25383,1,"""Europe""" +2023-04-20,33220,238,"[\""Headphones\"", \""Keyboard\""]",2487.24,"{\"": \""9%\""}",105904,0,"""Asia""" +2023-09-26,33221,450,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3588.18,"{\""loyalty\"": \""8%\""}",102488,1,"""North America""" +2023-03-09,33222,4015,"[\""Monitor\"", \""Phone\""]",3952.09,"{\""seasonal\"": \""29%\""}",268460,0,"""Europe""" +2023-11-09,33223,6338,"[\""Tablet\"", \""Headphones\""]",2370.89,{},203672,1,"""Europe""" +2023-06-13,33224,9552,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3270.34,"{\""seasonal\"": \""13%\""}",287237,1,"""Europe""" +2023-03-20,33225,8606,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4629.29,{},212433,0,"""Europe""" +2024-11-22,33226,2697,"[\""Charger\""]",784.68,{},182753,1,"""Europe""" +2024-08-14,33227,2573,"[\""Tablet\"", \""Keyboard\""]",2283.38,"{\"": \""9%\""}",128741,1,"""Asia""" +2023-07-15,33228,6461,"[\""Keyboard\""]",4190.85,"{\""promo\"": \""27%\""}",99901,1,"""Africa""" +2023-01-15,33229,856,"[\""Monitor\"", \""Tablet\""]",4542.6,"{\""seasonal\"": \""17%\""}",76332,1,"""North America""" +2024-09-26,33230,2001,"[\""Laptop\""]",3477.28,"{\""loyalty\"": \""21%\""}",179658,0,"""Africa""" +2023-11-01,33231,6861,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3945.54,"{\""promo\"": \""22%\""}",22581,1,"""Africa""" +2024-12-11,33232,8533,"[\""Tablet\""]",2663.36,{},115269,0,"""Africa""" +2023-12-06,33233,4809,"[\""Charger\"", \""Monitor\""]",4306.77,"{\""promo\"": \""10%\""}",42403,1,"""Asia""" +2024-09-27,33234,626,"[\""Monitor\"", \""Keyboard\""]",1227.38,"{\""loyalty\"": \""16%\""}",58415,0,"""North America""" +2023-06-19,33235,8723,"[\""Wireless Mouse\"", \""Charger\""]",3421.4,"{\""promo\"": \""23%\""}",12088,0,"""Asia""" +2023-10-02,33236,1878,"[\""Monitor\""]",2744.72,"{\""seasonal\"": \""15%\""}",135194,0,"""Europe""" +2024-10-05,33237,3570,"[\""Headphones\""]",1798.59,{},177064,0,"""North America""" +2023-01-20,33238,4368,"[\""Charger\""]",1370.34,"{\""promo\"": \""22%\""}",22628,0,"""Africa""" +2023-11-16,33239,6808,"[\""Phone\"", \""Headphones\""]",1228.04,"{\""loyalty\"": \""30%\""}",135619,0,"""Europe""" +2023-08-19,33240,5588,"[\""Laptop\"", \""Headphones\""]",2069.24,"{\"": \""28%\""}",238606,0,"""Asia""" +2024-11-06,33241,6451,"[\""Charger\""]",286.78,{},216129,1,"""Europe""" +2023-02-16,33242,8192,"[\""Headphones\""]",767.77,{},261496,0,"""North America""" +2023-02-19,33243,2493,"[\""Keyboard\""]",2393.31,"{\""loyalty\"": \""22%\""}",229388,1,"""North America""" +2024-11-13,33244,170,"[\""Wireless Mouse\""]",4960.44,"{\""loyalty\"": \""7%\""}",141136,1,"""Europe""" +2023-04-22,33245,8760,"[\""Headphones\"", \""Laptop\""]",1823.85,{},61864,1,"""South America""" +2024-01-22,33246,9913,"[\""Tablet\"", \""Wireless Mouse\""]",3649.84,{},175135,0,"""Africa""" +2024-11-10,33247,7640,"[\""Wireless Mouse\"", \""Keyboard\""]",373.84,{},35042,1,"""Africa""" +2023-10-06,33248,2966,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4589.26,{},47907,1,"""South America""" +2023-12-29,33249,8847,"[\""Monitor\"", \""Tablet\""]",3702.79,"{\"": \""26%\""}",245444,1,"""Asia""" +2024-08-13,33250,5932,"[\""Keyboard\""]",4855.11,"{\""loyalty\"": \""30%\""}",247102,0,"""Europe""" +2024-03-09,33251,6283,"[\""Keyboard\"", \""Monitor\""]",2594.18,{},65536,1,"""North America""" +2023-12-01,33252,8491,"[\""Wireless Mouse\""]",3924.96,"{\"": \""11%\""}",282099,0,"""South America""" +2024-07-03,33253,1692,"[\""Headphones\""]",709.68,{},240037,0,"""North America""" +2024-07-19,33254,2232,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",161.36,"{\""loyalty\"": \""15%\""}",264468,0,"""Europe""" +2023-09-12,33255,9027,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3496.81,{},1504,1,"""Europe""" +2023-01-08,33256,2046,"[\""Monitor\""]",2782.38,"{\""loyalty\"": \""27%\""}",281725,1,"""Asia""" +2023-01-20,33257,3996,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4237.9,{},231763,1,"""Africa""" +2024-09-05,33258,4094,"[\""Tablet\""]",1150.86,{},30007,1,"""South America""" +2024-10-17,33259,1447,"[\""Phone\""]",713.82,"{\""seasonal\"": \""8%\""}",163777,1,"""Africa""" +2024-09-17,33260,7401,"[\""Headphones\""]",1116.76,"{\""seasonal\"": \""26%\""}",217146,1,"""North America""" +2024-09-16,33261,1056,"[\""Monitor\"", \""Keyboard\""]",3210.37,{},151224,1,"""South America""" +2023-01-10,33262,6618,"[\""Tablet\"", \""Monitor\""]",794.88,{},144069,0,"""Asia""" +2024-04-13,33263,3246,"[\""Charger\"", \""Headphones\""]",1602.72,{},245952,0,"""Europe""" +2024-05-14,33264,6501,"[\""Monitor\""]",3384.14,"{\"": \""8%\""}",296512,0,"""Africa""" +2023-09-28,33265,7623,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4034.52,"{\""loyalty\"": \""7%\""}",215353,1,"""North America""" +2024-12-23,33266,2732,"[\""Charger\"", \""Laptop\""]",1927.01,{},288586,1,"""North America""" +2023-02-13,33267,2518,"[\""Phone\"", \""Charger\""]",901.97,"{\""loyalty\"": \""17%\""}",271609,1,"""Africa""" +2023-02-12,33268,7648,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4809.93,{},31922,0,"""South America""" +2023-06-30,33269,6993,"[\""Tablet\"", \""Wireless Mouse\""]",2729.88,{},154837,1,"""South America""" +2024-07-19,33270,891,"[\""Laptop\""]",3139.33,"{\""loyalty\"": \""25%\""}",253046,1,"""North America""" +2024-12-11,33271,6509,"[\""Phone\""]",156.53,{},275327,1,"""South America""" +2024-01-17,33272,1728,"[\""Headphones\"", \""Monitor\""]",1524.71,"{\"": \""5%\""}",70360,0,"""North America""" +2024-05-10,33273,9659,"[\""Tablet\"", \""Keyboard\""]",1736.74,"{\""loyalty\"": \""28%\""}",9872,0,"""Europe""" +2024-08-15,33274,6661,"[\""Headphones\""]",2343.66,{},26927,0,"""Africa""" +2024-06-22,33275,1879,"[\""Headphones\""]",4829.18,{},88013,0,"""South America""" +2023-07-26,33276,4307,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",646.48,{},208653,0,"""Asia""" +2023-07-31,33277,5053,"[\""Headphones\""]",4372.42,"{\"": \""23%\""}",58753,0,"""South America""" +2023-05-15,33278,2541,"[\""Headphones\"", \""Wireless Mouse\""]",1512.66,"{\""seasonal\"": \""18%\""}",276901,0,"""North America""" +2023-01-09,33279,7456,"[\""Tablet\"", \""Laptop\""]",3404.63,{},221890,0,"""South America""" +2024-02-26,33280,4495,"[\""Phone\"", \""Headphones\""]",4877.95,{},124236,0,"""Europe""" +2023-12-14,33281,9009,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",504.09,"{\""seasonal\"": \""14%\""}",81452,1,"""Asia""" +2023-06-17,33282,1758,"[\""Monitor\""]",1480.43,"{\""loyalty\"": \""26%\""}",103977,0,"""Europe""" +2024-01-02,33283,1899,"[\""Charger\"", \""Tablet\""]",2968.13,{},82781,0,"""Asia""" +2023-05-13,33284,918,"[\""Headphones\"", \""Wireless Mouse\""]",313.79,"{\""promo\"": \""23%\""}",292178,1,"""North America""" +2024-02-01,33285,4925,"[\""Keyboard\""]",3873.48,{},98255,1,"""Asia""" +2024-02-10,33286,432,"[\""Tablet\"", \""Charger\""]",2868.5,"{\""loyalty\"": \""17%\""}",2774,0,"""Africa""" +2023-06-08,33287,2124,"[\""Keyboard\""]",4354.19,{},163895,0,"""South America""" +2024-02-11,33288,635,"[\""Monitor\"", \""Charger\""]",2512.89,"{\"": \""25%\""}",258019,1,"""Africa""" +2023-05-31,33289,354,"[\""Tablet\"", \""Charger\""]",994.03,{},217533,1,"""Africa""" +2024-01-22,33290,650,"[\""Headphones\"", \""Tablet\""]",3267.28,{},284891,0,"""Europe""" +2024-09-21,33291,6552,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1526.38,"{\"": \""27%\""}",200642,1,"""Europe""" +2024-06-27,33292,3570,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2923.84,"{\""loyalty\"": \""30%\""}",16561,1,"""South America""" +2023-05-30,33293,4133,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2442.78,"{\"": \""8%\""}",67077,1,"""Asia""" +2023-09-23,33294,1708,"[\""Headphones\"", \""Wireless Mouse\""]",232.61,{},235053,0,"""Asia""" +2024-03-06,33295,5540,"[\""Charger\""]",3177.92,"{\""loyalty\"": \""21%\""}",284345,1,"""Africa""" +2023-07-03,33296,6047,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1791.45,"{\"": \""12%\""}",60151,0,"""North America""" +2024-06-02,33297,3262,"[\""Monitor\"", \""Keyboard\""]",2744.13,"{\""loyalty\"": \""5%\""}",226156,1,"""Asia""" +2024-11-19,33298,3019,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3278.75,"{\""seasonal\"": \""25%\""}",148288,0,"""Asia""" +2024-05-23,33299,5220,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3265.04,{},1298,0,"""South America""" +2023-08-21,33300,8300,"[\""Headphones\"", \""Keyboard\""]",500.23,"{\"": \""27%\""}",199569,1,"""South America""" +2023-09-11,33301,3357,"[\""Headphones\"", \""Laptop\""]",3182.0,"{\""seasonal\"": \""20%\""}",221820,0,"""Asia""" +2024-11-14,33302,2559,"[\""Headphones\"", \""Charger\""]",2327.75,"{\"": \""21%\""}",194542,0,"""North America""" +2024-11-10,33303,9972,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1692.96,"{\""seasonal\"": \""12%\""}",197952,1,"""South America""" +2024-04-28,33304,664,"[\""Tablet\""]",82.38,"{\""promo\"": \""22%\""}",22499,0,"""Asia""" +2023-09-27,33305,3040,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1397.07,{},190839,1,"""Asia""" +2024-06-16,33306,1222,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4175.27,"{\"": \""23%\""}",36983,0,"""Asia""" +2024-08-12,33307,5067,"[\""Charger\"", \""Phone\""]",4428.93,{},78820,0,"""Europe""" +2023-05-07,33308,6935,"[\""Keyboard\""]",702.22,"{\""seasonal\"": \""21%\""}",152515,0,"""Asia""" +2024-05-22,33309,7929,"[\""Monitor\""]",3297.46,{},140543,1,"""Europe""" +2024-09-20,33310,9420,"[\""Wireless Mouse\""]",2215.79,"{\""promo\"": \""21%\""}",299660,1,"""Asia""" +2024-12-21,33311,7695,"[\""Laptop\""]",2185.63,"{\"": \""20%\""}",49655,0,"""North America""" +2024-11-29,33312,8740,"[\""Phone\"", \""Headphones\""]",4822.74,"{\""loyalty\"": \""26%\""}",284504,0,"""Africa""" +2024-03-28,33313,8163,"[\""Laptop\""]",3569.6,"{\""promo\"": \""26%\""}",273742,1,"""Africa""" +2024-03-15,33314,1802,"[\""Headphones\""]",3428.07,{},72260,1,"""South America""" +2023-04-01,33315,2539,"[\""Laptop\""]",2596.92,{},95940,1,"""North America""" +2024-12-25,33316,9122,"[\""Keyboard\""]",3563.01,"{\""seasonal\"": \""6%\""}",122707,0,"""Africa""" +2023-01-24,33317,2149,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",238.96,"{\""seasonal\"": \""19%\""}",254791,1,"""North America""" +2024-05-16,33318,8102,"[\""Phone\""]",221.41,{},99296,0,"""Asia""" +2023-11-03,33319,3444,"[\""Phone\"", \""Charger\""]",2663.9,{},164046,1,"""Europe""" +2023-05-23,33320,6198,"[\""Keyboard\""]",3111.33,"{\""seasonal\"": \""21%\""}",48627,1,"""Europe""" +2023-07-13,33321,7035,"[\""Charger\"", \""Keyboard\""]",4518.99,"{\""loyalty\"": \""8%\""}",231191,1,"""North America""" +2024-10-10,33322,8024,"[\""Phone\"", \""Laptop\""]",1119.51,"{\""seasonal\"": \""25%\""}",28945,0,"""Asia""" +2023-06-26,33323,8852,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2910.36,{},272585,0,"""Africa""" +2023-04-22,33324,1424,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3274.83,{},285094,0,"""Europe""" +2023-03-12,33325,4706,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4174.12,"{\""promo\"": \""28%\""}",104633,1,"""Europe""" +2024-06-16,33326,9140,"[\""Charger\""]",4451.8,{},239824,0,"""South America""" +2024-10-11,33327,2146,"[\""Phone\""]",482.2,"{\"": \""18%\""}",188847,0,"""Asia""" +2024-05-18,33328,2404,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2242.67,"{\"": \""28%\""}",95313,0,"""Africa""" +2024-06-24,33329,9171,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",863.78,"{\""loyalty\"": \""18%\""}",249606,1,"""South America""" +2024-12-21,33330,3564,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1879.71,"{\""loyalty\"": \""21%\""}",252106,0,"""Africa""" +2023-08-12,33331,9597,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3544.03,{},267817,1,"""South America""" +2023-05-22,33332,6520,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3705.58,"{\""loyalty\"": \""6%\""}",268003,0,"""Asia""" +2023-04-10,33333,2830,"[\""Headphones\""]",1146.87,"{\""promo\"": \""17%\""}",211031,1,"""South America""" +2024-11-07,33334,8319,"[\""Keyboard\"", \""Monitor\""]",1671.72,"{\"": \""18%\""}",62530,0,"""Asia""" +2023-03-11,33335,5828,"[\""Wireless Mouse\"", \""Monitor\""]",1867.01,"{\"": \""9%\""}",121334,1,"""North America""" +2024-08-23,33336,3194,"[\""Wireless Mouse\""]",1683.31,{},85186,0,"""Europe""" +2023-07-02,33337,9794,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4953.2,"{\""promo\"": \""12%\""}",123001,0,"""North America""" +2024-05-21,33338,3606,"[\""Keyboard\"", \""Monitor\""]",1260.76,"{\""seasonal\"": \""9%\""}",146556,1,"""Africa""" +2023-06-19,33339,2621,"[\""Wireless Mouse\""]",4877.74,"{\""loyalty\"": \""8%\""}",15207,1,"""South America""" +2024-07-15,33340,4996,"[\""Laptop\"", \""Keyboard\""]",195.94,{},64896,0,"""Europe""" +2023-02-15,33341,5893,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4354.63,"{\""loyalty\"": \""9%\""}",8720,1,"""North America""" +2024-03-31,33342,828,"[\""Charger\""]",582.93,"{\""promo\"": \""7%\""}",224399,0,"""Europe""" +2023-06-10,33343,7950,"[\""Keyboard\"", \""Charger\""]",4642.78,{},100641,0,"""North America""" +2024-03-19,33344,7522,"[\""Keyboard\""]",2714.78,{},79515,0,"""North America""" +2023-06-08,33345,6725,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3985.64,{},54447,1,"""Europe""" +2024-09-03,33346,9846,"[\""Headphones\""]",245.04,"{\""loyalty\"": \""11%\""}",291377,1,"""Asia""" +2024-09-10,33347,4518,"[\""Monitor\""]",4609.45,"{\"": \""6%\""}",53152,0,"""North America""" +2023-09-21,33348,1484,"[\""Wireless Mouse\""]",2457.75,"{\""promo\"": \""27%\""}",92911,0,"""Asia""" +2023-10-31,33349,9970,"[\""Charger\""]",2847.12,{},154168,0,"""Europe""" +2023-11-08,33350,2225,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1235.87,"{\""promo\"": \""13%\""}",90848,0,"""Asia""" +2024-02-13,33351,5753,"[\""Headphones\""]",3343.52,"{\""loyalty\"": \""26%\""}",65227,1,"""Asia""" +2024-06-14,33352,5164,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3568.37,"{\"": \""6%\""}",187809,0,"""South America""" +2023-12-30,33353,3133,"[\""Monitor\""]",1266.73,{},47295,0,"""North America""" +2024-11-19,33354,4661,"[\""Phone\"", \""Laptop\""]",2554.15,{},64707,0,"""South America""" +2024-09-06,33355,2437,"[\""Wireless Mouse\"", \""Monitor\""]",217.05,"{\"": \""19%\""}",32156,0,"""Europe""" +2024-11-25,33356,2974,"[\""Headphones\""]",4293.29,"{\"": \""16%\""}",274735,1,"""Asia""" +2023-06-24,33357,6443,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3665.18,{},94267,0,"""North America""" +2023-09-20,33358,5603,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",734.3,{},172418,0,"""Africa""" +2023-02-04,33359,8162,"[\""Monitor\"", \""Charger\""]",3674.62,{},80650,1,"""Asia""" +2023-10-06,33360,5927,"[\""Keyboard\""]",4399.55,{},132610,1,"""North America""" +2024-11-14,33361,2760,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",599.77,{},211722,1,"""Africa""" +2023-01-25,33362,4505,"[\""Headphones\"", \""Tablet\""]",712.74,"{\""seasonal\"": \""19%\""}",7361,1,"""North America""" +2023-02-11,33363,769,"[\""Charger\""]",2090.51,{},33096,1,"""Africa""" +2023-05-02,33364,4832,"[\""Charger\""]",1257.7,"{\""seasonal\"": \""5%\""}",273355,0,"""South America""" +2024-02-18,33365,4462,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1494.01,"{\""seasonal\"": \""18%\""}",66252,1,"""Africa""" +2023-07-14,33366,7830,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2889.93,{},32059,0,"""North America""" +2023-11-03,33367,8275,"[\""Charger\""]",98.83,"{\"": \""27%\""}",174357,1,"""South America""" +2024-10-29,33368,9755,"[\""Tablet\""]",295.06,{},210347,0,"""North America""" +2024-02-03,33369,8078,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4150.27,"{\""seasonal\"": \""19%\""}",36114,1,"""Africa""" +2023-09-21,33370,2886,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3031.5,{},208310,0,"""North America""" +2024-04-05,33371,1862,"[\""Headphones\""]",1711.41,{},205225,1,"""Africa""" +2023-10-17,33372,3913,"[\""Phone\""]",2653.15,"{\""loyalty\"": \""25%\""}",247686,1,"""Africa""" +2023-02-06,33373,9260,"[\""Tablet\""]",2001.5,"{\"": \""8%\""}",273727,1,"""Africa""" +2023-06-19,33374,4711,"[\""Charger\""]",3584.73,"{\"": \""25%\""}",264305,1,"""South America""" +2023-01-18,33375,8457,"[\""Monitor\""]",3465.8,{},124100,0,"""South America""" +2023-07-18,33376,6662,"[\""Laptop\"", \""Headphones\""]",1519.82,{},48631,1,"""South America""" +2024-04-15,33377,9466,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3612.37,{},213101,0,"""Africa""" +2023-04-18,33378,3995,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4314.29,{},210402,0,"""Asia""" +2024-05-13,33379,3145,"[\""Charger\"", \""Wireless Mouse\""]",3409.69,{},243735,1,"""North America""" +2024-09-28,33380,269,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3321.86,{},68033,0,"""North America""" +2023-04-15,33381,2246,"[\""Headphones\""]",1736.83,{},49386,0,"""Africa""" +2024-09-22,33382,9287,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3978.74,"{\""promo\"": \""10%\""}",58251,1,"""Europe""" +2024-12-11,33383,5174,"[\""Wireless Mouse\"", \""Headphones\""]",2249.75,"{\"": \""22%\""}",130421,1,"""Europe""" +2023-09-28,33384,6041,"[\""Tablet\"", \""Phone\""]",2725.84,{},191449,1,"""Europe""" +2024-08-16,33385,7199,"[\""Charger\"", \""Monitor\""]",2822.17,"{\"": \""18%\""}",87834,0,"""South America""" +2024-05-07,33386,4176,"[\""Laptop\"", \""Headphones\""]",2351.26,"{\""promo\"": \""17%\""}",122033,0,"""Asia""" +2024-02-21,33387,8462,"[\""Tablet\"", \""Laptop\""]",4041.72,"{\""loyalty\"": \""9%\""}",75140,1,"""South America""" +2024-09-25,33388,2726,"[\""Keyboard\"", \""Tablet\""]",3511.76,{},252167,1,"""Asia""" +2024-02-23,33389,7584,"[\""Keyboard\""]",2888.88,{},296575,0,"""South America""" +2024-06-21,33390,6398,"[\""Charger\"", \""Phone\""]",2442.25,"{\""loyalty\"": \""11%\""}",32271,1,"""Europe""" +2023-02-04,33391,3300,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",390.09,{},280133,1,"""Africa""" +2024-03-21,33392,5870,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2892.76,"{\""loyalty\"": \""17%\""}",268952,0,"""Africa""" +2024-06-29,33393,3318,"[\""Monitor\"", \""Laptop\""]",2386.58,{},133443,0,"""North America""" +2023-05-13,33394,826,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3463.05,"{\""promo\"": \""28%\""}",66943,1,"""South America""" +2023-03-22,33395,6651,"[\""Monitor\"", \""Charger\""]",546.65,"{\""seasonal\"": \""9%\""}",171028,0,"""Europe""" +2024-09-22,33396,4478,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1520.66,{},132028,1,"""South America""" +2024-11-21,33397,820,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2061.54,"{\""promo\"": \""17%\""}",131661,0,"""Africa""" +2023-11-14,33398,9555,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",52.92,"{\"": \""11%\""}",130534,1,"""Asia""" +2024-10-16,33399,3373,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1996.56,{},192899,1,"""Asia""" +2023-07-08,33400,2566,"[\""Laptop\""]",3030.0,"{\""loyalty\"": \""21%\""}",179676,1,"""Africa""" +2023-09-25,33401,9039,"[\""Tablet\"", \""Wireless Mouse\""]",262.94,"{\""loyalty\"": \""25%\""}",245083,0,"""Africa""" +2024-11-09,33402,6904,"[\""Keyboard\"", \""Wireless Mouse\""]",4167.15,{},281126,1,"""Europe""" +2023-03-30,33403,8441,"[\""Phone\"", \""Laptop\""]",4795.44,{},177045,1,"""Africa""" +2024-11-15,33404,8155,"[\""Monitor\"", \""Charger\""]",579.0,"{\"": \""24%\""}",216300,0,"""Asia""" +2023-10-26,33405,1759,"[\""Tablet\""]",2059.22,{},72658,1,"""Africa""" +2023-04-12,33406,8366,"[\""Phone\"", \""Charger\""]",4759.9,"{\""loyalty\"": \""14%\""}",294252,1,"""Europe""" +2024-11-05,33407,9737,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1101.61,"{\""loyalty\"": \""12%\""}",89363,1,"""Africa""" +2023-12-15,33408,5009,"[\""Tablet\""]",778.72,"{\"": \""13%\""}",114821,0,"""North America""" +2024-10-21,33409,773,"[\""Headphones\""]",945.96,"{\""promo\"": \""28%\""}",36636,0,"""North America""" +2024-10-05,33410,3116,"[\""Phone\"", \""Charger\""]",3656.67,"{\""promo\"": \""6%\""}",71359,0,"""Asia""" +2023-10-28,33411,4933,"[\""Phone\"", \""Headphones\""]",2302.68,"{\""loyalty\"": \""29%\""}",186783,0,"""North America""" +2024-06-02,33412,6647,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",199.68,"{\""promo\"": \""7%\""}",13807,1,"""Asia""" +2023-10-18,33413,3926,"[\""Headphones\"", \""Keyboard\""]",852.27,{},18524,1,"""Africa""" +2024-04-24,33414,2968,"[\""Phone\"", \""Charger\""]",2196.89,{},117799,1,"""Europe""" +2023-01-02,33415,5509,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4822.44,"{\"": \""22%\""}",163775,1,"""Asia""" +2024-01-23,33416,3380,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3942.57,"{\""seasonal\"": \""10%\""}",124660,1,"""North America""" +2024-12-29,33417,2465,"[\""Keyboard\""]",112.3,{},4145,0,"""Africa""" +2024-06-26,33418,2934,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",303.95,{},136304,0,"""South America""" +2024-04-24,33419,3163,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2110.4,{},21995,0,"""Africa""" +2024-07-01,33420,4193,"[\""Laptop\""]",4777.65,{},58172,0,"""North America""" +2024-08-18,33421,8754,"[\""Charger\""]",4177.92,"{\""seasonal\"": \""28%\""}",207118,1,"""Europe""" +2023-03-15,33422,5856,"[\""Headphones\""]",1228.81,{},208584,0,"""Africa""" +2024-10-05,33423,532,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4013.88,{},198375,1,"""Asia""" +2023-03-23,33424,188,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2955.9,"{\""loyalty\"": \""10%\""}",296122,1,"""South America""" +2023-04-11,33425,5475,"[\""Headphones\""]",4452.24,{},36367,1,"""Europe""" +2023-06-07,33426,3944,"[\""Tablet\""]",3078.79,"{\""promo\"": \""29%\""}",255025,0,"""Asia""" +2023-07-23,33427,3051,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4162.17,{},96230,0,"""Asia""" +2024-07-30,33428,2927,"[\""Phone\"", \""Laptop\"", \""Charger\""]",235.13,{},26652,1,"""Asia""" +2024-03-29,33429,3319,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1189.5,{},238995,0,"""Africa""" +2023-04-20,33430,8129,"[\""Tablet\"", \""Wireless Mouse\""]",1877.78,{},152132,1,"""North America""" +2024-05-27,33431,9630,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4432.87,{},284106,1,"""Europe""" +2024-09-19,33432,8800,"[\""Wireless Mouse\""]",1747.68,{},236117,1,"""South America""" +2024-08-27,33433,3677,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4561.18,"{\"": \""25%\""}",132612,1,"""South America""" +2024-09-02,33434,4838,"[\""Tablet\"", \""Keyboard\""]",4104.62,{},99948,0,"""Africa""" +2023-02-05,33435,4941,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4472.11,{},233108,1,"""Africa""" +2024-01-29,33436,7968,"[\""Monitor\"", \""Phone\""]",3963.14,{},226231,1,"""Africa""" +2023-07-18,33437,6301,"[\""Monitor\"", \""Phone\""]",1324.75,"{\""promo\"": \""9%\""}",259323,0,"""South America""" +2023-03-03,33438,3883,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",287.73,{},36399,1,"""Africa""" +2024-12-09,33439,6255,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4907.52,"{\""promo\"": \""5%\""}",162630,1,"""South America""" +2024-06-21,33440,9264,"[\""Headphones\"", \""Tablet\""]",86.5,{},190920,1,"""Asia""" +2024-12-11,33441,2434,"[\""Phone\"", \""Keyboard\""]",3993.25,"{\""promo\"": \""22%\""}",5376,0,"""Europe""" +2023-09-15,33442,4804,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3597.2,{},98640,0,"""North America""" +2024-03-16,33443,8947,"[\""Phone\""]",4355.0,{},95860,1,"""South America""" +2023-01-29,33444,6589,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",416.4,"{\"": \""23%\""}",49245,0,"""North America""" +2023-09-04,33445,3833,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4107.89,{},156112,0,"""Africa""" +2024-01-07,33446,4882,"[\""Phone\"", \""Keyboard\""]",2021.46,"{\""promo\"": \""28%\""}",268139,0,"""North America""" +2024-08-07,33447,7082,"[\""Phone\""]",4058.06,{},208429,0,"""South America""" +2024-06-04,33448,6581,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2623.69,{},46091,1,"""Europe""" +2024-05-05,33449,2613,"[\""Charger\"", \""Monitor\""]",2765.87,{},27585,1,"""Africa""" +2024-01-14,33450,1456,"[\""Keyboard\"", \""Charger\""]",3409.75,"{\""loyalty\"": \""12%\""}",258502,0,"""Africa""" +2023-02-15,33451,5772,"[\""Keyboard\""]",818.6,"{\""promo\"": \""18%\""}",4146,1,"""Europe""" +2023-04-26,33452,7429,"[\""Phone\""]",3485.36,"{\"": \""17%\""}",224251,0,"""Europe""" +2023-12-19,33453,9490,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1020.99,"{\""loyalty\"": \""21%\""}",41137,0,"""Europe""" +2023-08-26,33454,6073,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3848.67,{},218626,1,"""North America""" +2023-06-28,33455,701,"[\""Headphones\"", \""Laptop\""]",3131.74,{},265055,1,"""Asia""" +2023-05-23,33456,8120,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2966.18,"{\""promo\"": \""16%\""}",167368,1,"""Asia""" +2023-05-17,33457,6535,"[\""Monitor\""]",1257.41,"{\""seasonal\"": \""7%\""}",149370,1,"""North America""" +2024-03-20,33458,3178,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1570.28,{},261442,0,"""Asia""" +2023-12-20,33459,9311,"[\""Keyboard\"", \""Laptop\""]",2957.58,{},57450,0,"""Africa""" +2023-07-24,33460,8183,"[\""Tablet\"", \""Charger\""]",3320.89,{},154544,1,"""Europe""" +2023-05-07,33461,9486,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4717.61,{},238664,1,"""North America""" +2024-05-24,33462,3572,"[\""Monitor\""]",1318.6,"{\"": \""15%\""}",45640,0,"""Africa""" +2023-12-13,33463,6791,"[\""Keyboard\"", \""Wireless Mouse\""]",4340.9,{},81479,1,"""South America""" +2023-08-21,33464,6267,"[\""Keyboard\""]",3479.85,"{\""promo\"": \""14%\""}",71919,0,"""Asia""" +2024-05-29,33465,2557,"[\""Laptop\""]",4404.8,"{\""seasonal\"": \""25%\""}",244868,1,"""Europe""" +2024-02-20,33466,6288,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1994.92,"{\""loyalty\"": \""14%\""}",129997,0,"""South America""" +2024-01-19,33467,7338,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1355.52,{},212988,0,"""Asia""" +2023-06-17,33468,8034,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",388.94,"{\""promo\"": \""27%\""}",55615,1,"""Asia""" +2023-02-03,33469,8471,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3471.96,{},53592,1,"""Europe""" +2024-09-04,33470,6085,"[\""Phone\"", \""Monitor\""]",3667.21,"{\"": \""13%\""}",286688,0,"""North America""" +2024-11-09,33471,7694,"[\""Phone\"", \""Monitor\""]",4282.83,{},223394,0,"""North America""" +2024-01-05,33472,2416,"[\""Wireless Mouse\""]",3688.05,{},74476,1,"""North America""" +2024-12-28,33473,3338,"[\""Laptop\"", \""Tablet\""]",372.57,"{\"": \""7%\""}",15367,0,"""North America""" +2023-02-08,33474,9120,"[\""Headphones\"", \""Wireless Mouse\""]",4925.42,"{\""seasonal\"": \""8%\""}",38885,1,"""Europe""" +2024-11-03,33475,4183,"[\""Laptop\"", \""Tablet\""]",2105.12,"{\""promo\"": \""18%\""}",204661,1,"""Asia""" +2023-04-27,33476,6879,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4092.81,"{\""promo\"": \""17%\""}",200153,1,"""South America""" +2023-06-25,33477,2953,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3484.33,"{\"": \""24%\""}",83266,0,"""Africa""" +2024-05-10,33478,4653,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4819.0,"{\""promo\"": \""23%\""}",59115,0,"""North America""" +2023-11-24,33479,2496,"[\""Charger\""]",681.67,{},174122,0,"""North America""" +2024-09-30,33480,5073,"[\""Laptop\"", \""Charger\""]",4203.72,{},24469,1,"""Africa""" +2024-05-16,33481,2506,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1907.28,{},206112,0,"""Europe""" +2023-04-22,33482,6831,"[\""Charger\"", \""Laptop\""]",379.54,{},57339,1,"""South America""" +2024-06-11,33483,1180,"[\""Headphones\"", \""Wireless Mouse\""]",551.72,"{\""loyalty\"": \""17%\""}",100113,1,"""Europe""" +2024-08-06,33484,9322,"[\""Monitor\"", \""Phone\""]",3250.72,"{\""seasonal\"": \""24%\""}",24018,0,"""North America""" +2024-03-30,33485,1064,"[\""Headphones\"", \""Monitor\""]",4090.87,"{\""seasonal\"": \""11%\""}",280835,1,"""Asia""" +2023-02-28,33486,9754,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1086.05,"{\""seasonal\"": \""7%\""}",201522,1,"""South America""" +2024-03-04,33487,4166,"[\""Headphones\""]",1879.16,{},77030,0,"""South America""" +2024-01-14,33488,9069,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4474.85,{},48764,1,"""Europe""" +2024-11-17,33489,2556,"[\""Tablet\""]",2975.33,"{\""seasonal\"": \""7%\""}",203132,0,"""Asia""" +2024-06-24,33490,4416,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3196.86,"{\""promo\"": \""26%\""}",127560,0,"""Africa""" +2023-12-04,33491,2225,"[\""Laptop\""]",3152.51,"{\"": \""5%\""}",181349,0,"""Europe""" +2023-11-20,33492,3047,"[\""Keyboard\"", \""Headphones\""]",4748.78,"{\""seasonal\"": \""10%\""}",127918,1,"""South America""" +2024-08-15,33493,1594,"[\""Phone\""]",4010.06,"{\"": \""15%\""}",270490,0,"""Asia""" +2024-12-20,33494,4685,"[\""Headphones\"", \""Tablet\""]",2398.08,{},139629,0,"""North America""" +2023-07-28,33495,6573,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4729.42,"{\""loyalty\"": \""12%\""}",59966,1,"""South America""" +2023-01-26,33496,5972,"[\""Laptop\""]",2559.8,{},196399,1,"""South America""" +2024-06-27,33497,2287,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2025.92,{},279431,0,"""South America""" +2023-05-02,33498,637,"[\""Laptop\"", \""Keyboard\""]",3322.01,{},185174,0,"""Europe""" +2023-04-15,33499,9444,"[\""Laptop\""]",2307.27,{},277281,1,"""Africa""" +2024-02-09,33500,1075,"[\""Phone\""]",1280.91,"{\""loyalty\"": \""13%\""}",162612,0,"""Europe""" +2023-04-16,33501,7367,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1832.85,"{\""loyalty\"": \""11%\""}",117529,1,"""Asia""" +2023-12-08,33502,1837,"[\""Laptop\""]",4437.12,{},251887,0,"""Europe""" +2023-01-20,33503,9427,"[\""Phone\"", \""Keyboard\""]",3955.83,{},225712,1,"""North America""" +2023-08-02,33504,3607,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",411.36,{},227987,0,"""Asia""" +2024-06-10,33505,7404,"[\""Wireless Mouse\""]",4226.44,{},257112,1,"""Europe""" +2024-10-18,33506,9909,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3736.43,"{\"": \""25%\""}",138753,1,"""South America""" +2024-10-15,33507,462,"[\""Laptop\""]",4611.09,{},151858,1,"""North America""" +2023-12-23,33508,6161,"[\""Keyboard\"", \""Wireless Mouse\""]",2979.75,"{\""promo\"": \""25%\""}",266148,1,"""South America""" +2024-10-30,33509,6917,"[\""Headphones\""]",1599.66,"{\""promo\"": \""8%\""}",229390,0,"""Europe""" +2023-12-26,33510,9156,"[\""Keyboard\""]",3151.43,{},166873,0,"""South America""" +2024-03-16,33511,3551,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1538.15,{},234675,0,"""South America""" +2024-06-27,33512,1718,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4914.03,{},37283,0,"""Asia""" +2023-05-08,33513,5239,"[\""Phone\"", \""Monitor\""]",1541.58,"{\""promo\"": \""11%\""}",284744,1,"""North America""" +2023-10-07,33514,6631,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",994.24,"{\""seasonal\"": \""5%\""}",159332,0,"""Africa""" +2024-09-06,33515,1815,"[\""Headphones\""]",684.33,{},32167,1,"""Africa""" +2023-09-08,33516,1438,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3486.74,{},23560,0,"""Asia""" +2024-02-23,33517,3820,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4104.53,{},109374,1,"""Europe""" +2023-09-27,33518,503,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1440.26,"{\"": \""17%\""}",137847,1,"""Asia""" +2024-12-17,33519,8051,"[\""Tablet\""]",3399.49,"{\"": \""17%\""}",224316,1,"""Asia""" +2023-07-11,33520,3228,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4180.17,"{\""seasonal\"": \""14%\""}",51900,0,"""South America""" +2024-07-17,33521,9918,"[\""Laptop\""]",4917.65,"{\""loyalty\"": \""13%\""}",242126,0,"""Europe""" +2023-05-17,33522,5747,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4764.93,{},109996,1,"""Asia""" +2024-11-30,33523,9273,"[\""Phone\""]",577.59,{},25041,0,"""Europe""" +2023-08-18,33524,1164,"[\""Keyboard\"", \""Tablet\""]",2999.14,"{\""seasonal\"": \""18%\""}",208860,1,"""Asia""" +2024-10-09,33525,529,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4228.98,"{\""loyalty\"": \""8%\""}",201698,0,"""Africa""" +2023-03-17,33526,4694,"[\""Keyboard\""]",2022.93,"{\""promo\"": \""29%\""}",262498,1,"""Asia""" +2023-05-26,33527,1343,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2864.66,"{\""seasonal\"": \""28%\""}",50010,1,"""Europe""" +2023-07-24,33528,8364,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4076.2,{},115059,1,"""South America""" +2023-07-25,33529,4796,"[\""Keyboard\""]",2072.74,{},70255,1,"""Africa""" +2024-08-04,33530,6300,"[\""Charger\""]",2349.25,"{\""promo\"": \""19%\""}",121142,1,"""Asia""" +2023-06-11,33531,3919,"[\""Tablet\"", \""Monitor\""]",3409.7,"{\"": \""27%\""}",33414,1,"""Europe""" +2024-10-09,33532,887,"[\""Phone\""]",1146.43,"{\""promo\"": \""12%\""}",221774,1,"""South America""" +2024-11-06,33533,4935,"[\""Wireless Mouse\""]",587.18,"{\""promo\"": \""11%\""}",146290,1,"""South America""" +2024-11-01,33534,2746,"[\""Tablet\""]",3379.14,"{\""promo\"": \""23%\""}",75174,0,"""North America""" +2023-10-29,33535,4153,"[\""Headphones\"", \""Tablet\""]",714.15,{},33138,1,"""North America""" +2023-05-20,33536,2521,"[\""Phone\""]",4473.21,{},3900,1,"""North America""" +2023-07-16,33537,4029,"[\""Wireless Mouse\"", \""Charger\""]",518.16,"{\""promo\"": \""7%\""}",275116,0,"""North America""" +2023-12-16,33538,485,"[\""Wireless Mouse\""]",3546.03,"{\""loyalty\"": \""9%\""}",253261,0,"""Africa""" +2024-11-08,33539,4855,"[\""Keyboard\""]",162.46,"{\"": \""28%\""}",254470,0,"""Asia""" +2024-04-26,33540,3714,"[\""Keyboard\""]",4949.17,{},1417,0,"""South America""" +2024-12-03,33541,6589,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2533.39,{},83984,1,"""Asia""" +2023-11-29,33542,2532,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",783.87,"{\""seasonal\"": \""6%\""}",251722,0,"""Asia""" +2024-09-21,33543,581,"[\""Headphones\"", \""Monitor\""]",2467.25,"{\""loyalty\"": \""26%\""}",6491,0,"""Asia""" +2024-01-12,33544,4578,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1041.42,{},205575,1,"""Europe""" +2023-08-29,33545,5529,"[\""Monitor\""]",969.58,{},141032,1,"""North America""" +2023-05-12,33546,5668,"[\""Phone\"", \""Tablet\"", \""Charger\""]",95.76,"{\"": \""19%\""}",165673,0,"""South America""" +2023-05-17,33547,3156,"[\""Laptop\""]",1599.77,"{\""seasonal\"": \""14%\""}",270493,0,"""South America""" +2023-10-18,33548,226,"[\""Keyboard\""]",4925.2,"{\""promo\"": \""21%\""}",8471,0,"""North America""" +2023-10-01,33549,6342,"[\""Keyboard\""]",3347.46,{},47936,1,"""South America""" +2024-08-28,33550,5858,"[\""Wireless Mouse\"", \""Phone\""]",909.78,"{\""loyalty\"": \""27%\""}",1426,0,"""Europe""" +2023-11-28,33551,3813,"[\""Laptop\""]",1962.71,{},193543,0,"""Europe""" +2023-11-29,33552,8086,"[\""Phone\"", \""Headphones\""]",4092.8,"{\""seasonal\"": \""23%\""}",196757,1,"""Africa""" +2024-04-01,33553,603,"[\""Phone\""]",1795.07,"{\""loyalty\"": \""18%\""}",254760,0,"""Africa""" +2023-11-29,33554,9452,"[\""Headphones\"", \""Wireless Mouse\""]",492.58,"{\""seasonal\"": \""16%\""}",170838,0,"""South America""" +2023-10-08,33555,7673,"[\""Charger\"", \""Headphones\""]",435.61,"{\""promo\"": \""5%\""}",256106,1,"""Asia""" +2024-04-10,33556,8353,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4268.28,"{\"": \""12%\""}",171807,1,"""North America""" +2024-10-27,33557,6630,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",684.31,{},220574,0,"""South America""" +2023-04-30,33558,37,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",377.15,"{\""loyalty\"": \""28%\""}",187485,1,"""South America""" +2024-11-08,33559,1049,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2591.63,"{\""loyalty\"": \""16%\""}",217761,0,"""Europe""" +2024-08-03,33560,76,"[\""Charger\""]",1836.86,{},177418,1,"""North America""" +2024-03-15,33561,1750,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2322.04,{},191567,1,"""South America""" +2023-10-13,33562,9959,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1999.49,"{\""seasonal\"": \""6%\""}",122573,1,"""North America""" +2024-12-08,33563,8975,"[\""Tablet\"", \""Wireless Mouse\""]",4666.81,{},247420,1,"""Africa""" +2024-04-06,33564,7719,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4215.32,{},124632,1,"""North America""" +2023-05-28,33565,9031,"[\""Laptop\""]",1055.55,"{\"": \""25%\""}",8627,0,"""Asia""" +2024-07-15,33566,3008,"[\""Laptop\""]",4725.46,"{\""seasonal\"": \""16%\""}",162734,1,"""Europe""" +2023-07-24,33567,8456,"[\""Phone\""]",4919.86,{},83406,1,"""Africa""" +2023-08-27,33568,4845,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1915.28,{},184945,0,"""Europe""" +2023-10-26,33569,6413,"[\""Wireless Mouse\"", \""Laptop\""]",4835.8,"{\""seasonal\"": \""7%\""}",250839,1,"""Asia""" +2023-10-24,33570,4334,"[\""Charger\"", \""Headphones\""]",2049.26,{},248962,1,"""Asia""" +2024-03-02,33571,9273,"[\""Tablet\""]",4910.43,"{\""loyalty\"": \""27%\""}",82517,1,"""Africa""" +2024-12-19,33572,3440,"[\""Monitor\"", \""Phone\""]",4938.5,"{\""promo\"": \""20%\""}",261942,0,"""Asia""" +2023-05-23,33573,6661,"[\""Monitor\""]",3891.55,"{\""promo\"": \""9%\""}",212238,0,"""North America""" +2024-09-14,33574,7992,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4158.64,"{\""promo\"": \""18%\""}",50054,0,"""Africa""" +2023-08-19,33575,9959,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1408.09,{},64782,0,"""Asia""" +2023-02-03,33576,1067,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1661.08,{},101601,0,"""Asia""" +2023-04-28,33577,9558,"[\""Wireless Mouse\""]",3881.1,{},44425,1,"""Asia""" +2023-10-02,33578,1626,"[\""Charger\""]",1773.3,"{\""promo\"": \""15%\""}",54593,0,"""South America""" +2023-10-13,33579,4092,"[\""Headphones\""]",4364.07,"{\""seasonal\"": \""14%\""}",74047,1,"""Europe""" +2024-02-21,33580,7892,"[\""Laptop\"", \""Tablet\""]",3873.28,"{\""promo\"": \""12%\""}",14647,0,"""South America""" +2023-04-13,33581,967,"[\""Wireless Mouse\"", \""Keyboard\""]",3828.92,"{\"": \""22%\""}",51652,0,"""South America""" +2024-06-22,33582,5212,"[\""Headphones\""]",2860.63,"{\"": \""21%\""}",158106,0,"""Europe""" +2023-10-20,33583,558,"[\""Monitor\""]",571.01,"{\""loyalty\"": \""27%\""}",174285,0,"""Africa""" +2023-10-01,33584,3478,"[\""Charger\""]",2995.5,"{\"": \""14%\""}",23997,1,"""North America""" +2023-07-25,33585,9560,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",318.31,"{\"": \""17%\""}",237027,0,"""Europe""" +2023-05-16,33586,6455,"[\""Wireless Mouse\"", \""Laptop\""]",2067.69,"{\""seasonal\"": \""8%\""}",234603,1,"""Europe""" +2023-09-29,33587,5459,"[\""Phone\""]",1941.35,"{\""seasonal\"": \""21%\""}",77998,1,"""North America""" +2023-11-18,33588,7385,"[\""Keyboard\"", \""Monitor\""]",4767.92,{},175879,1,"""South America""" +2023-11-01,33589,9611,"[\""Tablet\""]",2461.35,{},275898,1,"""Africa""" +2024-09-26,33590,4042,"[\""Charger\""]",1953.55,"{\"": \""12%\""}",216774,0,"""Europe""" +2024-05-18,33591,899,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4311.76,{},58220,0,"""South America""" +2024-04-03,33592,6052,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3226.18,"{\""loyalty\"": \""18%\""}",56273,1,"""Africa""" +2023-07-13,33593,8039,"[\""Headphones\"", \""Laptop\""]",4052.05,{},169540,1,"""North America""" +2023-09-03,33594,5952,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3624.88,{},134242,1,"""Europe""" +2023-01-23,33595,2978,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2093.58,"{\""promo\"": \""27%\""}",226321,0,"""North America""" +2024-10-15,33596,264,"[\""Phone\"", \""Wireless Mouse\""]",4650.11,{},276659,1,"""North America""" +2023-11-04,33597,6388,"[\""Wireless Mouse\"", \""Laptop\""]",1194.34,{},28085,0,"""North America""" +2024-03-02,33598,7680,"[\""Charger\""]",4058.3,"{\""seasonal\"": \""23%\""}",181978,0,"""North America""" +2023-09-30,33599,2699,"[\""Laptop\""]",739.0,"{\""seasonal\"": \""15%\""}",36302,1,"""Africa""" +2024-06-25,33600,7710,"[\""Keyboard\""]",2966.85,{},245385,1,"""South America""" +2024-10-31,33601,9124,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3896.39,"{\"": \""11%\""}",229989,0,"""Europe""" +2024-05-12,33602,2225,"[\""Wireless Mouse\""]",4744.9,{},126741,1,"""Europe""" +2023-10-24,33603,4308,"[\""Phone\"", \""Wireless Mouse\""]",257.17,"{\""loyalty\"": \""20%\""}",148194,0,"""Asia""" +2024-03-21,33604,410,"[\""Wireless Mouse\""]",2704.35,{},230614,1,"""Europe""" +2024-03-21,33605,7306,"[\""Tablet\"", \""Phone\""]",1505.53,{},168059,0,"""Asia""" +2023-09-04,33606,1662,"[\""Monitor\""]",2717.76,{},191482,0,"""Africa""" +2024-09-14,33607,6021,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2758.32,"{\"": \""16%\""}",128712,0,"""South America""" +2024-08-07,33608,8870,"[\""Laptop\"", \""Wireless Mouse\""]",2183.55,{},161567,0,"""Asia""" +2023-04-15,33609,3569,"[\""Wireless Mouse\"", \""Keyboard\""]",3063.28,"{\""seasonal\"": \""26%\""}",142932,1,"""Europe""" +2023-05-27,33610,9250,"[\""Monitor\"", \""Wireless Mouse\""]",4556.25,{},34440,1,"""North America""" +2024-01-04,33611,9701,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3270.76,{},192110,0,"""Asia""" +2024-05-23,33612,1302,"[\""Monitor\"", \""Wireless Mouse\""]",2464.36,{},126451,1,"""South America""" +2023-03-17,33613,9770,"[\""Phone\""]",1467.08,{},239847,1,"""Asia""" +2023-11-21,33614,4014,"[\""Monitor\""]",3129.01,{},70902,0,"""North America""" +2023-03-06,33615,3311,"[\""Tablet\""]",4261.19,{},196539,0,"""Asia""" +2024-11-28,33616,3320,"[\""Headphones\""]",639.01,{},284309,1,"""South America""" +2024-04-21,33617,4410,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3015.4,"{\""promo\"": \""28%\""}",32809,0,"""South America""" +2023-11-19,33618,1370,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",720.02,{},292489,0,"""Asia""" +2024-05-27,33619,9470,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3565.72,{},190048,0,"""Europe""" +2023-05-03,33620,8211,"[\""Wireless Mouse\""]",2591.69,"{\"": \""15%\""}",282695,0,"""South America""" +2023-05-03,33621,4613,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",996.97,"{\""loyalty\"": \""9%\""}",207457,0,"""South America""" +2024-06-10,33622,4341,"[\""Headphones\""]",1176.86,"{\"": \""9%\""}",203244,1,"""Europe""" +2024-01-18,33623,200,"[\""Phone\"", \""Charger\""]",2679.83,{},206232,1,"""Europe""" +2024-11-14,33624,3944,"[\""Wireless Mouse\""]",3102.77,{},117531,1,"""North America""" +2023-02-27,33625,3048,"[\""Tablet\""]",751.92,"{\""promo\"": \""9%\""}",178219,0,"""Europe""" +2023-06-09,33626,3648,"[\""Tablet\"", \""Charger\""]",4619.45,{},290103,1,"""Africa""" +2024-11-26,33627,3168,"[\""Wireless Mouse\"", \""Headphones\""]",4844.54,"{\"": \""16%\""}",140903,0,"""South America""" +2024-09-09,33628,4549,"[\""Wireless Mouse\"", \""Tablet\""]",2863.03,{},170942,0,"""South America""" +2023-04-15,33629,4829,"[\""Charger\""]",2794.18,"{\""promo\"": \""13%\""}",101971,0,"""South America""" +2024-05-23,33630,7391,"[\""Keyboard\""]",4342.45,"{\"": \""10%\""}",38795,1,"""Europe""" +2024-06-27,33631,5241,"[\""Monitor\"", \""Phone\""]",188.52,{},161180,0,"""South America""" +2024-01-09,33632,3212,"[\""Phone\"", \""Charger\""]",1012.67,{},257578,0,"""North America""" +2024-09-19,33633,4888,"[\""Monitor\"", \""Keyboard\""]",1364.83,"{\""loyalty\"": \""26%\""}",268809,1,"""Africa""" +2024-11-04,33634,8439,"[\""Laptop\""]",4040.79,{},107549,0,"""Africa""" +2023-01-14,33635,7770,"[\""Wireless Mouse\""]",3623.0,{},206910,0,"""South America""" +2023-04-05,33636,1889,"[\""Headphones\"", \""Laptop\""]",3704.52,"{\""seasonal\"": \""21%\""}",274012,1,"""Asia""" +2023-11-17,33637,3179,"[\""Laptop\""]",2994.8,{},109325,0,"""South America""" +2023-08-12,33638,6880,"[\""Keyboard\""]",3690.92,"{\"": \""16%\""}",51085,1,"""Asia""" +2023-02-20,33639,3224,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1372.31,{},264453,1,"""South America""" +2023-01-22,33640,2758,"[\""Tablet\"", \""Charger\""]",4464.5,{},89153,0,"""Asia""" +2023-04-19,33641,3361,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1317.45,{},76448,0,"""Europe""" +2024-11-24,33642,6185,"[\""Monitor\""]",2538.8,"{\"": \""5%\""}",104611,0,"""Africa""" +2024-03-16,33643,3290,"[\""Wireless Mouse\"", \""Headphones\""]",1842.46,{},60301,0,"""Africa""" +2024-04-28,33644,1070,"[\""Tablet\""]",3654.38,"{\""promo\"": \""26%\""}",112731,0,"""North America""" +2024-07-03,33645,1259,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3940.94,{},258683,0,"""Europe""" +2023-08-22,33646,1109,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",947.48,"{\""seasonal\"": \""15%\""}",208908,1,"""Asia""" +2024-03-24,33647,9083,"[\""Wireless Mouse\"", \""Phone\""]",63.83,{},80477,1,"""Europe""" +2023-12-08,33648,5017,"[\""Monitor\""]",2294.63,{},49694,1,"""Europe""" +2023-10-18,33649,4912,"[\""Monitor\"", \""Laptop\""]",1454.93,"{\"": \""13%\""}",3421,0,"""Africa""" +2024-04-22,33650,7680,"[\""Phone\"", \""Charger\"", \""Headphones\""]",864.52,"{\""loyalty\"": \""22%\""}",7373,0,"""Asia""" +2024-06-15,33651,8782,"[\""Headphones\"", \""Tablet\""]",4215.92,"{\""seasonal\"": \""25%\""}",258935,1,"""North America""" +2023-10-29,33652,5679,"[\""Charger\"", \""Phone\""]",1910.91,{},224319,1,"""South America""" +2024-10-16,33653,1310,"[\""Charger\""]",2971.05,{},207624,1,"""Africa""" +2024-05-27,33654,9672,"[\""Laptop\""]",1593.82,{},88019,0,"""Europe""" +2023-02-06,33655,5215,"[\""Laptop\""]",3656.82,"{\""promo\"": \""29%\""}",156564,0,"""South America""" +2024-07-05,33656,5313,"[\""Keyboard\"", \""Wireless Mouse\""]",1140.79,{},42916,1,"""Africa""" +2023-12-14,33657,3330,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1474.1,"{\"": \""28%\""}",187915,1,"""Africa""" +2023-07-31,33658,9604,"[\""Wireless Mouse\"", \""Headphones\""]",243.46,{},209872,1,"""Asia""" +2024-04-11,33659,3612,"[\""Wireless Mouse\"", \""Monitor\""]",323.67,"{\"": \""9%\""}",82193,1,"""Africa""" +2024-04-03,33660,6659,"[\""Tablet\"", \""Phone\"", \""Charger\""]",236.0,"{\""loyalty\"": \""7%\""}",195122,1,"""South America""" +2023-03-14,33661,6111,"[\""Laptop\"", \""Wireless Mouse\""]",1064.03,"{\""loyalty\"": \""20%\""}",288963,1,"""North America""" +2024-10-05,33662,3812,"[\""Keyboard\"", \""Phone\""]",830.07,"{\""seasonal\"": \""7%\""}",81513,0,"""Europe""" +2023-10-18,33663,2120,"[\""Phone\""]",2825.31,{},67204,1,"""North America""" +2024-06-28,33664,1345,"[\""Charger\""]",2177.87,{},158923,1,"""North America""" +2024-08-02,33665,3664,"[\""Headphones\"", \""Phone\""]",2997.57,{},281713,1,"""Europe""" +2024-12-08,33666,9437,"[\""Phone\""]",4185.22,"{\""seasonal\"": \""6%\""}",83909,1,"""North America""" +2023-08-31,33667,6496,"[\""Tablet\"", \""Laptop\""]",1366.8,{},195142,0,"""North America""" +2023-09-06,33668,1687,"[\""Monitor\""]",2574.3,{},287824,0,"""Europe""" +2023-06-28,33669,7721,"[\""Tablet\""]",4562.58,{},29123,1,"""North America""" +2024-01-10,33670,1099,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4718.49,"{\""loyalty\"": \""10%\""}",55716,0,"""Europe""" +2023-01-29,33671,7801,"[\""Laptop\"", \""Keyboard\""]",453.01,"{\"": \""18%\""}",75368,1,"""North America""" +2024-11-19,33672,9541,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3899.17,"{\""seasonal\"": \""26%\""}",27154,0,"""North America""" +2023-08-31,33673,1648,"[\""Laptop\"", \""Headphones\""]",1544.77,"{\""seasonal\"": \""21%\""}",56079,1,"""Asia""" +2023-01-23,33674,5691,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4662.62,"{\""loyalty\"": \""17%\""}",59229,1,"""Asia""" +2023-07-11,33675,4137,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3611.06,"{\""loyalty\"": \""29%\""}",271312,1,"""Africa""" +2023-06-26,33676,3005,"[\""Keyboard\"", \""Tablet\""]",4735.73,"{\""seasonal\"": \""17%\""}",204607,0,"""Asia""" +2024-08-31,33677,7336,"[\""Keyboard\"", \""Charger\""]",450.3,"{\""loyalty\"": \""25%\""}",6384,0,"""Europe""" +2024-05-29,33678,832,"[\""Tablet\"", \""Wireless Mouse\""]",553.76,{},208642,0,"""Europe""" +2024-04-30,33679,6005,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2510.24,{},186091,0,"""Asia""" +2023-04-23,33680,1265,"[\""Tablet\""]",4820.42,"{\""promo\"": \""5%\""}",222797,0,"""North America""" +2023-05-19,33681,1607,"[\""Laptop\""]",1648.27,"{\""loyalty\"": \""22%\""}",242357,1,"""South America""" +2023-08-16,33682,7502,"[\""Laptop\""]",3882.73,{},115218,0,"""Asia""" +2024-02-17,33683,3809,"[\""Charger\"", \""Headphones\""]",2442.37,{},35543,1,"""Europe""" +2024-11-23,33684,4877,"[\""Monitor\"", \""Laptop\""]",1262.75,{},218402,1,"""South America""" +2024-10-08,33685,1080,"[\""Laptop\"", \""Phone\""]",4580.7,{},34946,1,"""South America""" +2024-01-12,33686,7189,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3559.09,"{\""seasonal\"": \""21%\""}",7062,1,"""South America""" +2023-04-14,33687,294,"[\""Phone\"", \""Monitor\""]",3451.85,{},272103,1,"""North America""" +2023-01-07,33688,4494,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",261.22,"{\""seasonal\"": \""13%\""}",49575,1,"""North America""" +2024-08-31,33689,8769,"[\""Tablet\""]",4978.66,{},184385,0,"""South America""" +2023-02-02,33690,1281,"[\""Monitor\"", \""Charger\""]",1196.52,"{\""seasonal\"": \""23%\""}",287777,1,"""Europe""" +2024-08-29,33691,6611,"[\""Charger\"", \""Headphones\""]",1710.62,{},270429,1,"""North America""" +2023-10-22,33692,8101,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3361.55,"{\""loyalty\"": \""5%\""}",68948,0,"""Africa""" +2024-02-26,33693,506,"[\""Headphones\"", \""Tablet\""]",3290.69,{},271837,1,"""North America""" +2024-09-17,33694,9564,"[\""Laptop\"", \""Wireless Mouse\""]",82.4,{},138172,1,"""North America""" +2023-09-07,33695,6857,"[\""Phone\""]",2829.17,{},14297,1,"""Europe""" +2024-11-22,33696,4770,"[\""Laptop\"", \""Charger\""]",1088.97,"{\"": \""27%\""}",91679,1,"""Europe""" +2024-05-14,33697,2341,"[\""Laptop\""]",1788.2,{},97049,0,"""Africa""" +2024-07-04,33698,8178,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2332.15,"{\"": \""7%\""}",233191,1,"""North America""" +2023-03-09,33699,4487,"[\""Headphones\"", \""Phone\""]",399.82,{},190923,0,"""South America""" +2024-12-20,33700,7302,"[\""Laptop\""]",3722.03,"{\""loyalty\"": \""17%\""}",90383,1,"""Asia""" +2023-10-31,33701,2751,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4309.45,"{\""seasonal\"": \""23%\""}",231626,0,"""South America""" +2023-04-05,33702,1092,"[\""Wireless Mouse\"", \""Keyboard\""]",1861.7,{},188220,1,"""South America""" +2024-10-29,33703,6282,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3470.48,{},36163,0,"""Africa""" +2023-05-06,33704,1625,"[\""Laptop\""]",1522.49,{},17755,1,"""Europe""" +2024-05-10,33705,7974,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",291.75,{},135983,0,"""North America""" +2023-07-27,33706,1854,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4393.32,"{\""seasonal\"": \""6%\""}",270436,1,"""Asia""" +2023-02-27,33707,7086,"[\""Laptop\""]",517.82,{},295630,0,"""North America""" +2023-01-31,33708,2067,"[\""Tablet\""]",4598.3,"{\""seasonal\"": \""12%\""}",190463,0,"""Europe""" +2024-09-07,33709,5535,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1291.76,"{\"": \""27%\""}",265836,1,"""North America""" +2024-03-29,33710,3812,"[\""Monitor\""]",2155.82,{},64526,1,"""North America""" +2024-03-26,33711,7168,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3053.11,{},123037,0,"""Europe""" +2023-08-25,33712,2580,"[\""Charger\""]",2204.42,{},6135,1,"""North America""" +2023-07-17,33713,6583,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3146.9,"{\"": \""5%\""}",240369,0,"""North America""" +2024-07-14,33714,5326,"[\""Wireless Mouse\""]",1728.83,{},283302,0,"""North America""" +2023-01-11,33715,9452,"[\""Charger\"", \""Laptop\""]",1678.63,"{\""promo\"": \""26%\""}",297524,0,"""North America""" +2024-07-26,33716,7097,"[\""Keyboard\""]",3308.01,"{\"": \""28%\""}",175989,0,"""Africa""" +2023-01-05,33717,3718,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4534.42,"{\""loyalty\"": \""14%\""}",64046,0,"""South America""" +2023-08-21,33718,1477,"[\""Phone\"", \""Wireless Mouse\""]",2053.41,"{\""loyalty\"": \""13%\""}",290155,0,"""North America""" +2023-07-03,33719,4683,"[\""Keyboard\""]",2510.32,{},21017,0,"""Africa""" +2023-02-27,33720,614,"[\""Wireless Mouse\""]",4882.91,{},279342,1,"""South America""" +2024-05-05,33721,1026,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2849.42,{},35470,1,"""South America""" +2024-08-04,33722,5536,"[\""Phone\"", \""Keyboard\""]",4140.4,{},253841,1,"""North America""" +2023-11-21,33723,6711,"[\""Laptop\"", \""Monitor\""]",1698.7,"{\""loyalty\"": \""7%\""}",19973,1,"""North America""" +2023-12-20,33724,2180,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4819.38,{},27632,0,"""Africa""" +2024-06-17,33725,9891,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1042.78,{},98132,0,"""Africa""" +2023-07-30,33726,7735,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4185.09,{},251106,0,"""Africa""" +2024-06-05,33727,9224,"[\""Monitor\""]",2892.78,"{\""promo\"": \""23%\""}",4089,0,"""Asia""" +2023-07-06,33728,3033,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2357.99,"{\""loyalty\"": \""15%\""}",57243,0,"""Asia""" +2024-04-29,33729,7147,"[\""Headphones\"", \""Monitor\""]",454.39,"{\""seasonal\"": \""6%\""}",26058,1,"""Europe""" +2023-09-11,33730,9623,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1129.05,"{\""promo\"": \""30%\""}",140765,1,"""South America""" +2024-05-29,33731,921,"[\""Monitor\"", \""Charger\""]",252.25,"{\""loyalty\"": \""29%\""}",83794,1,"""South America""" +2023-07-03,33732,1761,"[\""Phone\""]",3487.25,"{\""loyalty\"": \""28%\""}",268881,0,"""North America""" +2023-05-01,33733,7878,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",105.66,"{\""seasonal\"": \""29%\""}",31050,0,"""North America""" +2024-07-16,33734,4296,"[\""Keyboard\"", \""Monitor\""]",924.46,"{\""promo\"": \""13%\""}",277050,1,"""North America""" +2024-03-29,33735,1745,"[\""Tablet\""]",1960.95,{},138912,1,"""North America""" +2024-02-01,33736,9858,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2248.06,{},64041,0,"""Europe""" +2024-02-08,33737,5694,"[\""Keyboard\""]",2579.77,"{\""loyalty\"": \""14%\""}",136982,1,"""Asia""" +2023-08-17,33738,1630,"[\""Wireless Mouse\"", \""Headphones\""]",4793.31,{},116047,1,"""South America""" +2023-03-07,33739,4079,"[\""Monitor\""]",789.46,{},7849,0,"""Asia""" +2024-04-06,33740,4855,"[\""Charger\"", \""Tablet\""]",62.93,"{\""seasonal\"": \""7%\""}",8312,0,"""Africa""" +2023-12-24,33741,2871,"[\""Headphones\"", \""Wireless Mouse\""]",3233.28,{},222323,1,"""North America""" +2023-12-25,33742,4316,"[\""Keyboard\"", \""Tablet\""]",4954.53,{},267433,0,"""Africa""" +2024-06-05,33743,6371,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4328.99,"{\""promo\"": \""19%\""}",191903,0,"""Asia""" +2024-04-18,33744,2537,"[\""Laptop\""]",4592.0,"{\""seasonal\"": \""24%\""}",110278,1,"""North America""" +2024-06-04,33745,773,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",65.09,"{\""promo\"": \""25%\""}",164007,0,"""Europe""" +2024-03-05,33746,1198,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2806.97,{},181212,1,"""South America""" +2023-09-07,33747,6254,"[\""Charger\"", \""Headphones\""]",1808.64,{},157918,1,"""Africa""" +2023-03-16,33748,2417,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2849.24,{},204268,0,"""Europe""" +2023-12-25,33749,1446,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1749.04,{},258013,1,"""Asia""" +2023-07-01,33750,9016,"[\""Monitor\""]",2202.12,{},248795,1,"""South America""" +2023-10-24,33751,5875,"[\""Charger\"", \""Keyboard\""]",4837.38,{},71871,1,"""South America""" +2023-02-20,33752,7867,"[\""Tablet\"", \""Wireless Mouse\""]",124.59,"{\""seasonal\"": \""30%\""}",299366,1,"""South America""" +2024-01-27,33753,6423,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",735.09,"{\""seasonal\"": \""6%\""}",75087,0,"""Europe""" +2023-12-01,33754,6554,"[\""Tablet\""]",1642.65,"{\""promo\"": \""5%\""}",266323,1,"""Africa""" +2024-08-27,33755,5487,"[\""Headphones\""]",1603.47,{},18648,0,"""Europe""" +2023-05-27,33756,1630,"[\""Wireless Mouse\""]",4426.31,"{\"": \""18%\""}",247011,1,"""Asia""" +2024-09-17,33757,7374,"[\""Tablet\"", \""Headphones\""]",1533.26,{},8763,0,"""South America""" +2024-12-09,33758,9601,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1444.05,{},268075,1,"""Africa""" +2023-09-20,33759,8534,"[\""Charger\""]",4817.0,"{\""seasonal\"": \""25%\""}",112374,1,"""North America""" +2024-01-31,33760,3154,"[\""Monitor\""]",1214.47,{},293169,0,"""North America""" +2024-09-09,33761,2523,"[\""Keyboard\""]",2231.86,"{\""loyalty\"": \""20%\""}",70150,0,"""South America""" +2023-09-30,33762,4546,"[\""Phone\"", \""Charger\""]",3895.52,"{\"": \""8%\""}",253219,1,"""North America""" +2023-12-20,33763,5424,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4574.1,{},163190,0,"""Europe""" +2023-10-05,33764,824,"[\""Keyboard\""]",2078.28,"{\""promo\"": \""23%\""}",228249,1,"""Europe""" +2023-02-08,33765,754,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",913.55,"{\""loyalty\"": \""12%\""}",186660,1,"""North America""" +2024-06-29,33766,6224,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4243.87,{},225743,1,"""North America""" +2024-12-25,33767,3147,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3830.96,{},257336,1,"""Africa""" +2023-12-25,33768,6109,"[\""Wireless Mouse\"", \""Headphones\""]",1639.03,{},225909,1,"""Africa""" +2024-07-04,33769,6459,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4548.57,{},264157,1,"""Asia""" +2023-12-08,33770,7325,"[\""Charger\""]",2456.14,"{\""seasonal\"": \""24%\""}",37494,0,"""South America""" +2023-09-11,33771,9743,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1732.25,"{\""promo\"": \""8%\""}",151413,1,"""Africa""" +2023-06-15,33772,2507,"[\""Laptop\"", \""Phone\""]",1935.82,{},294205,1,"""North America""" +2023-10-13,33773,6596,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3895.31,"{\"": \""14%\""}",28524,0,"""South America""" +2024-08-31,33774,9223,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3450.86,{},232327,0,"""Africa""" +2024-04-07,33775,7380,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1505.26,{},125711,1,"""Africa""" +2023-09-05,33776,4544,"[\""Tablet\"", \""Monitor\""]",102.95,"{\""seasonal\"": \""12%\""}",200107,1,"""Europe""" +2024-02-04,33777,5714,"[\""Charger\""]",278.15,"{\""promo\"": \""9%\""}",5868,1,"""Europe""" +2023-12-14,33778,6217,"[\""Headphones\""]",2588.92,{},217432,0,"""North America""" +2023-06-04,33779,8285,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4805.72,"{\""promo\"": \""22%\""}",65141,1,"""Africa""" +2024-05-22,33780,9104,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4111.4,{},5328,0,"""North America""" +2024-01-11,33781,2526,"[\""Headphones\"", \""Charger\""]",1196.94,"{\""promo\"": \""28%\""}",184758,1,"""Africa""" +2023-03-15,33782,9217,"[\""Headphones\"", \""Wireless Mouse\""]",2022.98,"{\""loyalty\"": \""11%\""}",142530,1,"""Europe""" +2023-10-06,33783,581,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",393.36,"{\""promo\"": \""21%\""}",288770,0,"""Asia""" +2023-05-05,33784,6894,"[\""Wireless Mouse\""]",653.12,"{\""promo\"": \""18%\""}",144353,0,"""Africa""" +2023-05-19,33785,6774,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",539.23,{},227333,0,"""Europe""" +2024-08-06,33786,3005,"[\""Charger\"", \""Phone\""]",1830.39,"{\""promo\"": \""25%\""}",13292,0,"""Africa""" +2023-12-05,33787,2719,"[\""Headphones\""]",2972.69,"{\"": \""10%\""}",181693,1,"""Asia""" +2023-10-14,33788,1028,"[\""Tablet\""]",2156.79,"{\""seasonal\"": \""14%\""}",35740,0,"""Africa""" +2024-06-10,33789,6147,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2505.92,"{\"": \""26%\""}",106336,0,"""North America""" +2024-06-25,33790,1018,"[\""Headphones\"", \""Laptop\""]",1389.52,{},127196,1,"""Africa""" +2023-10-07,33791,272,"[\""Headphones\"", \""Wireless Mouse\""]",375.97,"{\""promo\"": \""25%\""}",227547,1,"""North America""" +2023-10-10,33792,7108,"[\""Charger\""]",3835.6,"{\"": \""30%\""}",217475,0,"""Europe""" +2024-01-10,33793,8851,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",203.96,{},128941,1,"""North America""" +2024-12-02,33794,9798,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2384.65,{},208440,1,"""Africa""" +2024-11-16,33795,3131,"[\""Laptop\""]",3663.29,{},281492,1,"""North America""" +2024-08-28,33796,8755,"[\""Charger\"", \""Phone\""]",1273.63,{},109382,1,"""North America""" +2023-06-14,33797,1761,"[\""Wireless Mouse\""]",855.28,{},15317,0,"""South America""" +2023-05-13,33798,3924,"[\""Laptop\""]",56.44,"{\""loyalty\"": \""24%\""}",70789,0,"""North America""" +2024-07-17,33799,399,"[\""Tablet\""]",4768.88,"{\""seasonal\"": \""18%\""}",240579,0,"""North America""" +2024-05-15,33800,7030,"[\""Tablet\"", \""Charger\""]",326.48,{},74465,1,"""North America""" +2024-05-05,33801,7015,"[\""Laptop\"", \""Wireless Mouse\""]",2101.83,"{\""loyalty\"": \""29%\""}",103184,0,"""Africa""" +2024-10-28,33802,3975,"[\""Wireless Mouse\"", \""Phone\""]",1495.54,"{\""promo\"": \""16%\""}",58515,0,"""Europe""" +2024-06-09,33803,7656,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2294.32,{},185225,1,"""North America""" +2023-07-08,33804,3799,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3895.35,"{\""promo\"": \""30%\""}",46685,0,"""Africa""" +2024-03-14,33805,7976,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4803.45,{},104657,0,"""Asia""" +2024-01-02,33806,5988,"[\""Keyboard\"", \""Monitor\""]",3745.3,"{\""promo\"": \""18%\""}",94142,1,"""Asia""" +2024-08-22,33807,8695,"[\""Wireless Mouse\"", \""Laptop\""]",2344.61,"{\"": \""8%\""}",42320,1,"""Asia""" +2024-06-22,33808,3158,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",646.58,"{\""loyalty\"": \""16%\""}",152387,0,"""Asia""" +2024-08-30,33809,941,"[\""Headphones\"", \""Phone\""]",3583.88,"{\""seasonal\"": \""22%\""}",45337,0,"""Europe""" +2023-04-24,33810,3109,"[\""Keyboard\"", \""Wireless Mouse\""]",3632.15,"{\"": \""12%\""}",273782,0,"""South America""" +2023-04-05,33811,8948,"[\""Tablet\""]",1973.82,{},221796,0,"""North America""" +2023-09-14,33812,6335,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2010.07,"{\""loyalty\"": \""14%\""}",66583,1,"""Africa""" +2024-02-03,33813,3718,"[\""Laptop\"", \""Keyboard\""]",4151.69,{},89259,0,"""Africa""" +2023-02-27,33814,5066,"[\""Charger\"", \""Monitor\""]",4598.17,"{\""loyalty\"": \""13%\""}",262748,0,"""Asia""" +2024-08-13,33815,3332,"[\""Keyboard\""]",4642.65,"{\""promo\"": \""28%\""}",11112,0,"""Europe""" +2023-04-27,33816,347,"[\""Phone\"", \""Monitor\""]",2180.12,"{\""seasonal\"": \""9%\""}",167457,0,"""Africa""" +2024-11-26,33817,8751,"[\""Monitor\""]",1515.64,{},163337,0,"""Asia""" +2024-01-03,33818,5564,"[\""Monitor\""]",4207.05,{},38162,0,"""Africa""" +2024-02-18,33819,1171,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1212.09,"{\""loyalty\"": \""29%\""}",197787,1,"""North America""" +2024-12-21,33820,4425,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",985.2,{},261659,1,"""Europe""" +2023-08-08,33821,1272,"[\""Charger\""]",3092.55,{},235910,1,"""Europe""" +2024-11-27,33822,3668,"[\""Keyboard\""]",4213.65,"{\""loyalty\"": \""17%\""}",8368,0,"""Africa""" +2023-10-22,33823,9318,"[\""Monitor\""]",295.36,"{\"": \""7%\""}",5734,0,"""Africa""" +2024-07-26,33824,9805,"[\""Charger\"", \""Keyboard\""]",3343.31,"{\""seasonal\"": \""15%\""}",291294,0,"""Asia""" +2024-10-12,33825,5883,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",536.76,"{\""promo\"": \""14%\""}",183203,1,"""North America""" +2023-12-01,33826,811,"[\""Headphones\"", \""Tablet\""]",3225.65,{},105299,0,"""Europe""" +2023-07-14,33827,4370,"[\""Phone\""]",1194.17,{},242949,1,"""South America""" +2024-06-21,33828,8920,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4327.95,{},161215,1,"""Africa""" +2023-05-07,33829,6007,"[\""Laptop\"", \""Tablet\""]",1594.11,{},212316,1,"""Europe""" +2023-01-27,33830,7457,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2264.48,{},110265,0,"""Africa""" +2024-12-23,33831,2356,"[\""Laptop\"", \""Headphones\""]",834.44,"{\"": \""27%\""}",82359,0,"""North America""" +2023-12-15,33832,4462,"[\""Wireless Mouse\"", \""Headphones\""]",3748.18,{},88087,0,"""North America""" +2024-03-25,33833,8023,"[\""Headphones\""]",2198.23,"{\"": \""23%\""}",236422,1,"""North America""" +2023-07-22,33834,9342,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",808.13,{},177829,1,"""Africa""" +2024-10-19,33835,2257,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2962.64,"{\""seasonal\"": \""15%\""}",35912,1,"""Asia""" +2024-07-12,33836,9790,"[\""Charger\""]",820.35,"{\""promo\"": \""30%\""}",220262,0,"""Asia""" +2024-04-24,33837,6727,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1549.26,{},26775,1,"""North America""" +2023-11-26,33838,2236,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3010.55,"{\"": \""20%\""}",272243,1,"""Asia""" +2023-01-17,33839,1740,"[\""Tablet\"", \""Wireless Mouse\""]",2053.2,{},209880,1,"""North America""" +2024-12-19,33840,232,"[\""Tablet\"", \""Headphones\""]",4822.91,{},200577,1,"""Europe""" +2023-04-13,33841,2099,"[\""Keyboard\"", \""Monitor\""]",1683.91,"{\""seasonal\"": \""19%\""}",236571,0,"""Africa""" +2023-03-18,33842,6807,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",454.65,{},216445,0,"""Europe""" +2024-11-22,33843,8308,"[\""Charger\""]",3669.78,"{\"": \""10%\""}",226410,0,"""South America""" +2024-07-30,33844,2271,"[\""Wireless Mouse\"", \""Laptop\""]",1599.3,{},39751,0,"""Asia""" +2024-07-22,33845,1551,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1844.06,{},242353,1,"""Africa""" +2024-04-27,33846,9065,"[\""Monitor\""]",2757.66,{},107815,0,"""North America""" +2023-08-11,33847,829,"[\""Wireless Mouse\"", \""Laptop\""]",87.02,"{\""loyalty\"": \""11%\""}",99001,0,"""South America""" +2024-09-13,33848,8198,"[\""Keyboard\""]",4936.55,{},243295,0,"""North America""" +2024-08-02,33849,4487,"[\""Headphones\"", \""Wireless Mouse\""]",442.23,"{\""seasonal\"": \""30%\""}",128943,0,"""South America""" +2024-10-12,33850,6272,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",205.03,"{\""promo\"": \""17%\""}",3993,1,"""Europe""" +2024-11-18,33851,7733,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2153.26,{},266919,1,"""Europe""" +2024-07-14,33852,6415,"[\""Headphones\""]",332.44,{},228715,0,"""South America""" +2024-09-15,33853,6258,"[\""Tablet\""]",58.8,"{\""loyalty\"": \""7%\""}",52017,1,"""Europe""" +2023-02-15,33854,1112,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2097.56,{},273441,1,"""Asia""" +2024-04-23,33855,7413,"[\""Tablet\""]",3001.59,"{\""seasonal\"": \""22%\""}",115865,0,"""Asia""" +2023-05-20,33856,2914,"[\""Headphones\"", \""Monitor\""]",4924.5,{},185657,0,"""Africa""" +2023-05-06,33857,4913,"[\""Wireless Mouse\""]",2846.41,{},101055,0,"""North America""" +2024-12-22,33858,4339,"[\""Wireless Mouse\"", \""Charger\""]",85.97,{},223957,1,"""Africa""" +2023-10-07,33859,7309,"[\""Keyboard\"", \""Monitor\""]",631.0,{},203072,0,"""Asia""" +2024-02-03,33860,7752,"[\""Headphones\""]",1835.74,{},196295,1,"""Europe""" +2023-05-28,33861,8281,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",429.16,"{\""seasonal\"": \""29%\""}",187581,1,"""North America""" +2023-04-15,33862,3271,"[\""Phone\""]",4367.98,{},247178,1,"""North America""" +2024-07-07,33863,3130,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4221.76,{},249844,0,"""Africa""" +2024-07-05,33864,4725,"[\""Headphones\"", \""Monitor\""]",4493.16,"{\""promo\"": \""30%\""}",156818,0,"""Africa""" +2023-12-19,33865,4750,"[\""Headphones\""]",3875.28,"{\""promo\"": \""30%\""}",12795,0,"""Europe""" +2024-12-25,33866,1688,"[\""Laptop\""]",4067.44,{},150120,0,"""North America""" +2023-10-14,33867,2137,"[\""Headphones\"", \""Tablet\""]",730.22,{},177953,0,"""Asia""" +2023-10-09,33868,7653,"[\""Phone\"", \""Laptop\""]",3855.53,{},12207,0,"""South America""" +2024-06-22,33869,3979,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2322.41,"{\""promo\"": \""5%\""}",228529,1,"""South America""" +2023-09-01,33870,9440,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4169.16,"{\""promo\"": \""22%\""}",41275,0,"""Africa""" +2023-07-03,33871,3069,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4512.94,"{\""seasonal\"": \""16%\""}",287160,1,"""Asia""" +2024-02-11,33872,4494,"[\""Tablet\"", \""Wireless Mouse\""]",2691.32,"{\""seasonal\"": \""25%\""}",212570,1,"""North America""" +2023-02-07,33873,7644,"[\""Laptop\"", \""Charger\""]",630.11,"{\""loyalty\"": \""10%\""}",174147,1,"""Europe""" +2024-08-31,33874,8139,"[\""Phone\"", \""Headphones\""]",2619.15,{},49673,0,"""Europe""" +2023-04-04,33875,5935,"[\""Headphones\"", \""Tablet\""]",1579.83,{},26221,0,"""Africa""" +2023-01-27,33876,3017,"[\""Tablet\""]",3709.21,"{\"": \""27%\""}",103247,1,"""Europe""" +2023-12-04,33877,8908,"[\""Charger\"", \""Monitor\""]",4994.01,"{\""loyalty\"": \""7%\""}",38130,0,"""Africa""" +2023-08-02,33878,4622,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4570.77,"{\""loyalty\"": \""11%\""}",175924,1,"""Asia""" +2024-06-02,33879,2535,"[\""Phone\"", \""Laptop\""]",4699.81,"{\""loyalty\"": \""8%\""}",214064,1,"""Africa""" +2024-05-10,33880,3298,"[\""Wireless Mouse\"", \""Monitor\""]",4345.7,"{\""loyalty\"": \""30%\""}",198247,1,"""Europe""" +2023-06-30,33881,8437,"[\""Wireless Mouse\""]",4839.8,{},29402,1,"""Africa""" +2023-04-04,33882,9473,"[\""Monitor\""]",2315.33,"{\""loyalty\"": \""19%\""}",29926,1,"""Europe""" +2023-01-20,33883,5797,"[\""Headphones\"", \""Keyboard\""]",427.16,"{\""seasonal\"": \""16%\""}",265803,1,"""North America""" +2023-10-02,33884,9611,"[\""Headphones\""]",2339.44,"{\""seasonal\"": \""17%\""}",35592,0,"""Europe""" +2024-06-11,33885,5768,"[\""Charger\"", \""Monitor\""]",3680.77,"{\"": \""28%\""}",55979,1,"""Europe""" +2023-07-23,33886,5161,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3904.54,"{\""loyalty\"": \""19%\""}",139728,1,"""Asia""" +2023-08-07,33887,9083,"[\""Headphones\""]",2125.15,"{\"": \""16%\""}",237071,0,"""Asia""" +2024-04-20,33888,6136,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2220.38,{},238574,1,"""North America""" +2023-06-16,33889,8864,"[\""Phone\"", \""Headphones\""]",731.96,{},26203,0,"""Europe""" +2024-11-05,33890,9523,"[\""Phone\"", \""Headphones\""]",3197.05,{},280374,1,"""South America""" +2024-09-03,33891,6904,"[\""Tablet\""]",4128.11,{},224096,1,"""South America""" +2024-02-04,33892,8906,"[\""Laptop\""]",352.09,"{\""loyalty\"": \""19%\""}",3956,1,"""North America""" +2024-11-01,33893,8356,"[\""Wireless Mouse\""]",1964.67,{},50841,0,"""South America""" +2024-01-21,33894,9323,"[\""Laptop\""]",3637.7,{},215215,0,"""Asia""" +2023-12-31,33895,1998,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3498.28,{},124862,1,"""Africa""" +2024-09-24,33896,2539,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1537.04,"{\""promo\"": \""16%\""}",13808,1,"""Europe""" +2023-01-09,33897,4259,"[\""Tablet\""]",4277.6,{},237139,1,"""Europe""" +2023-11-19,33898,4623,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",267.14,"{\""loyalty\"": \""18%\""}",15338,1,"""North America""" +2023-10-24,33899,9813,"[\""Tablet\""]",3574.52,{},78486,0,"""Asia""" +2024-03-30,33900,4552,"[\""Tablet\""]",3351.89,{},70747,1,"""Asia""" +2024-11-29,33901,325,"[\""Phone\"", \""Laptop\""]",1293.1,"{\""loyalty\"": \""6%\""}",262876,0,"""South America""" +2023-08-21,33902,433,"[\""Keyboard\"", \""Tablet\""]",1397.69,{},55699,0,"""South America""" +2024-12-27,33903,7005,"[\""Wireless Mouse\"", \""Keyboard\""]",1641.86,{},159280,1,"""North America""" +2023-06-12,33904,3568,"[\""Keyboard\""]",4507.7,"{\""promo\"": \""20%\""}",144797,1,"""Africa""" +2024-04-09,33905,690,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4083.34,"{\""loyalty\"": \""16%\""}",39422,1,"""Africa""" +2024-09-12,33906,6233,"[\""Charger\""]",153.09,{},197710,1,"""Africa""" +2023-06-08,33907,9349,"[\""Monitor\"", \""Headphones\""]",3990.36,{},133800,1,"""North America""" +2023-05-03,33908,3970,"[\""Headphones\"", \""Wireless Mouse\""]",2306.76,"{\""loyalty\"": \""19%\""}",270336,1,"""Asia""" +2023-07-16,33909,4876,"[\""Tablet\"", \""Laptop\""]",381.56,{},240208,0,"""South America""" +2023-02-26,33910,6694,"[\""Monitor\"", \""Tablet\""]",717.78,{},263049,0,"""South America""" +2024-08-18,33911,5027,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3281.66,"{\""promo\"": \""13%\""}",186168,1,"""North America""" +2023-05-15,33912,4929,"[\""Tablet\""]",536.8,{},144337,1,"""North America""" +2024-02-02,33913,6402,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",119.04,"{\""seasonal\"": \""21%\""}",131234,1,"""North America""" +2024-10-31,33914,8213,"[\""Tablet\"", \""Wireless Mouse\""]",3748.33,"{\""promo\"": \""7%\""}",15037,0,"""Asia""" +2024-02-09,33915,6451,"[\""Tablet\"", \""Charger\""]",2456.17,{},80325,1,"""Africa""" +2023-11-30,33916,6809,"[\""Laptop\"", \""Phone\""]",1811.96,"{\""promo\"": \""18%\""}",7504,0,"""Europe""" +2024-12-19,33917,9128,"[\""Phone\"", \""Keyboard\""]",434.76,"{\"": \""14%\""}",77983,0,"""Africa""" +2024-07-28,33918,9043,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",991.49,{},293688,1,"""South America""" +2023-04-12,33919,3474,"[\""Charger\""]",556.45,"{\"": \""10%\""}",291992,1,"""North America""" +2023-06-05,33920,9346,"[\""Keyboard\"", \""Wireless Mouse\""]",801.97,{},153447,0,"""Europe""" +2024-12-23,33921,9557,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3608.65,{},67326,0,"""North America""" +2024-07-05,33922,3754,"[\""Wireless Mouse\"", \""Charger\""]",2548.58,"{\"": \""26%\""}",296173,1,"""South America""" +2023-03-26,33923,246,"[\""Wireless Mouse\"", \""Laptop\""]",3700.57,"{\""seasonal\"": \""17%\""}",107478,0,"""South America""" +2023-11-20,33924,5343,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",95.31,{},239735,0,"""Africa""" +2024-08-30,33925,8075,"[\""Headphones\"", \""Phone\""]",2334.49,"{\""seasonal\"": \""6%\""}",189557,0,"""Asia""" +2024-07-24,33926,1641,"[\""Laptop\"", \""Charger\""]",4065.54,"{\"": \""20%\""}",59277,0,"""South America""" +2023-02-15,33927,6795,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3918.31,"{\""loyalty\"": \""19%\""}",236731,1,"""Europe""" +2024-05-10,33928,7593,"[\""Tablet\"", \""Monitor\""]",2383.19,"{\""loyalty\"": \""23%\""}",227675,0,"""Europe""" +2024-09-26,33929,5826,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3835.44,"{\""promo\"": \""26%\""}",131356,0,"""Africa""" +2023-02-15,33930,4573,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1183.87,{},220419,0,"""Africa""" +2023-01-01,33931,503,"[\""Monitor\"", \""Headphones\""]",4347.29,{},273661,1,"""Asia""" +2023-03-19,33932,2878,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2757.82,"{\""loyalty\"": \""9%\""}",180819,0,"""South America""" +2023-05-29,33933,2334,"[\""Monitor\"", \""Wireless Mouse\""]",1180.24,"{\"": \""30%\""}",87341,1,"""Europe""" +2023-06-30,33934,1723,"[\""Wireless Mouse\""]",2082.17,"{\"": \""23%\""}",32656,0,"""North America""" +2023-04-06,33935,7929,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",506.84,{},31973,0,"""Africa""" +2024-01-23,33936,3730,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",112.46,"{\""loyalty\"": \""20%\""}",99488,1,"""Europe""" +2024-01-07,33937,6449,"[\""Monitor\""]",3192.42,{},263271,0,"""Africa""" +2024-01-25,33938,5495,"[\""Tablet\"", \""Charger\""]",4296.61,{},39062,1,"""North America""" +2023-04-08,33939,8182,"[\""Tablet\"", \""Phone\""]",2577.56,{},84857,1,"""Asia""" +2024-12-20,33940,3703,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3296.69,"{\""loyalty\"": \""19%\""}",142844,1,"""South America""" +2024-04-25,33941,4303,"[\""Laptop\""]",1503.35,{},72774,1,"""North America""" +2023-09-10,33942,6525,"[\""Keyboard\""]",368.08,"{\""seasonal\"": \""26%\""}",50253,0,"""North America""" +2023-01-03,33943,8023,"[\""Charger\"", \""Monitor\""]",4820.98,"{\""loyalty\"": \""9%\""}",18363,0,"""South America""" +2023-12-05,33944,9904,"[\""Tablet\""]",3214.28,{},154967,0,"""Europe""" +2024-06-27,33945,5629,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",200.14,"{\"": \""28%\""}",119735,0,"""Europe""" +2023-01-09,33946,6660,"[\""Wireless Mouse\""]",574.84,{},157670,0,"""Europe""" +2024-07-04,33947,381,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1183.41,{},103470,1,"""North America""" +2023-02-10,33948,267,"[\""Monitor\"", \""Phone\""]",4956.53,{},20796,1,"""Europe""" +2023-10-17,33949,5952,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",472.33,{},248255,0,"""Africa""" +2023-09-25,33950,1343,"[\""Tablet\""]",450.68,{},282912,1,"""South America""" +2023-06-08,33951,4793,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1450.86,"{\"": \""23%\""}",224253,1,"""Asia""" +2023-02-03,33952,4990,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1615.88,"{\"": \""16%\""}",165569,1,"""Europe""" +2023-04-25,33953,6086,"[\""Tablet\""]",3789.69,"{\""loyalty\"": \""27%\""}",84977,0,"""Europe""" +2024-05-21,33954,6733,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3962.96,"{\""seasonal\"": \""16%\""}",28373,1,"""Asia""" +2023-01-20,33955,4428,"[\""Tablet\""]",2765.48,{},280150,0,"""North America""" +2023-07-07,33956,1912,"[\""Monitor\""]",3268.6,"{\""seasonal\"": \""16%\""}",72751,0,"""Africa""" +2023-11-23,33957,7215,"[\""Monitor\""]",3734.0,"{\""loyalty\"": \""13%\""}",122397,1,"""Africa""" +2023-02-25,33958,8016,"[\""Wireless Mouse\"", \""Tablet\""]",826.63,{},264623,1,"""Africa""" +2024-09-16,33959,1026,"[\""Laptop\""]",3089.48,{},216751,0,"""Africa""" +2024-04-06,33960,6052,"[\""Laptop\""]",1444.04,{},102434,1,"""South America""" +2023-10-27,33961,8416,"[\""Phone\""]",679.57,"{\""loyalty\"": \""22%\""}",163374,1,"""South America""" +2024-05-05,33962,3309,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",727.55,{},299316,0,"""Asia""" +2023-04-24,33963,9185,"[\""Charger\"", \""Wireless Mouse\""]",1027.33,{},172306,1,"""South America""" +2024-03-03,33964,5395,"[\""Monitor\"", \""Keyboard\""]",1888.48,{},8735,0,"""Europe""" +2023-12-14,33965,7177,"[\""Charger\"", \""Laptop\""]",2486.15,"{\""promo\"": \""23%\""}",190925,1,"""Europe""" +2023-11-12,33966,3596,"[\""Phone\"", \""Wireless Mouse\""]",2027.8,{},287348,1,"""North America""" +2023-10-27,33967,9540,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4602.13,"{\""seasonal\"": \""8%\""}",200481,0,"""Europe""" +2023-05-16,33968,1028,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2740.1,"{\"": \""17%\""}",290691,0,"""South America""" +2023-03-12,33969,5359,"[\""Charger\""]",1635.18,{},210873,1,"""Europe""" +2024-11-01,33970,1739,"[\""Tablet\""]",1557.9,"{\""promo\"": \""25%\""}",112059,1,"""South America""" +2024-07-09,33971,7455,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",985.75,"{\""promo\"": \""12%\""}",6157,1,"""Asia""" +2023-10-09,33972,1245,"[\""Tablet\"", \""Laptop\""]",284.31,{},201462,0,"""Asia""" +2024-06-11,33973,5925,"[\""Wireless Mouse\"", \""Headphones\""]",2871.63,{},27906,0,"""Europe""" +2023-03-15,33974,7880,"[\""Headphones\""]",3205.11,{},180201,1,"""North America""" +2023-05-02,33975,9571,"[\""Charger\"", \""Monitor\""]",4152.02,"{\""promo\"": \""15%\""}",186198,1,"""North America""" +2024-02-26,33976,3462,"[\""Phone\""]",3692.71,{},133589,1,"""Europe""" +2024-05-03,33977,5472,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",599.33,{},204352,0,"""South America""" +2024-09-25,33978,343,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4242.65,"{\"": \""30%\""}",74893,0,"""Europe""" +2023-03-14,33979,895,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3243.71,"{\""seasonal\"": \""8%\""}",179979,1,"""North America""" +2023-05-08,33980,53,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4380.51,{},86829,1,"""Europe""" +2023-06-28,33981,1724,"[\""Tablet\""]",2748.23,{},130150,0,"""South America""" +2024-10-15,33982,2470,"[\""Charger\""]",2694.13,{},190844,1,"""Africa""" +2023-06-19,33983,1053,"[\""Headphones\"", \""Monitor\""]",3051.67,"{\"": \""25%\""}",249467,0,"""North America""" +2024-12-11,33984,2290,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4461.67,{},189911,1,"""South America""" +2023-07-18,33985,6984,"[\""Monitor\""]",2917.42,{},37422,1,"""North America""" +2023-02-14,33986,3568,"[\""Wireless Mouse\"", \""Laptop\""]",4921.66,"{\""seasonal\"": \""19%\""}",176129,1,"""Asia""" +2024-11-20,33987,7752,"[\""Tablet\"", \""Keyboard\""]",1917.82,"{\""loyalty\"": \""21%\""}",172453,0,"""Europe""" +2023-06-21,33988,5976,"[\""Laptop\"", \""Wireless Mouse\""]",3825.66,"{\""loyalty\"": \""13%\""}",143990,0,"""South America""" +2024-05-15,33989,9273,"[\""Phone\"", \""Charger\""]",1492.18,"{\"": \""27%\""}",147283,0,"""Asia""" +2023-05-16,33990,8227,"[\""Phone\"", \""Wireless Mouse\""]",3010.88,{},19647,1,"""Africa""" +2023-08-04,33991,5623,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2336.72,{},32227,1,"""Asia""" +2023-10-13,33992,620,"[\""Phone\""]",1039.71,"{\""promo\"": \""22%\""}",18630,1,"""South America""" +2024-01-01,33993,8851,"[\""Tablet\"", \""Phone\""]",151.07,{},125194,0,"""Asia""" +2023-05-03,33994,3302,"[\""Headphones\"", \""Phone\""]",1140.81,"{\""loyalty\"": \""24%\""}",249043,1,"""Europe""" +2024-05-06,33995,9789,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",191.17,{},105945,1,"""Europe""" +2024-05-02,33996,8911,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",339.82,"{\""promo\"": \""14%\""}",226624,1,"""Europe""" +2024-02-08,33997,5479,"[\""Charger\"", \""Monitor\""]",2550.12,{},86675,1,"""Europe""" +2023-12-20,33998,9601,"[\""Monitor\"", \""Headphones\""]",122.72,"{\""loyalty\"": \""28%\""}",171232,0,"""Europe""" +2024-12-01,33999,2615,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",578.12,{},98846,1,"""Europe""" +2023-01-02,34000,7624,"[\""Monitor\"", \""Headphones\""]",1815.55,{},279964,0,"""Asia""" +2024-10-04,34001,8492,"[\""Phone\""]",1334.27,{},150548,0,"""North America""" +2024-05-31,34002,237,"[\""Monitor\""]",473.59,{},98602,0,"""South America""" +2024-07-11,34003,4066,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3523.31,"{\"": \""14%\""}",61925,1,"""Asia""" +2024-02-24,34004,9552,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1481.56,{},125833,0,"""Europe""" +2024-07-28,34005,1268,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3908.44,{},146598,0,"""Africa""" +2024-06-02,34006,9380,"[\""Monitor\"", \""Headphones\""]",2359.57,{},108458,1,"""Asia""" +2024-05-04,34007,2139,"[\""Keyboard\"", \""Tablet\""]",1947.73,{},106595,0,"""Africa""" +2023-01-11,34008,2276,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4954.2,"{\"": \""27%\""}",287137,0,"""Asia""" +2024-11-10,34009,4708,"[\""Keyboard\"", \""Wireless Mouse\""]",3238.83,"{\""loyalty\"": \""27%\""}",32083,0,"""Africa""" +2023-05-07,34010,9302,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",598.35,{},31200,0,"""Asia""" +2024-04-05,34011,1868,"[\""Wireless Mouse\""]",3016.44,{},140741,1,"""South America""" +2024-11-21,34012,9393,"[\""Wireless Mouse\"", \""Laptop\""]",3458.39,{},136463,0,"""Europe""" +2023-10-10,34013,6997,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1331.43,"{\""promo\"": \""14%\""}",45173,1,"""Europe""" +2024-05-12,34014,1435,"[\""Wireless Mouse\""]",393.82,{},159392,1,"""Africa""" +2024-01-06,34015,7192,"[\""Headphones\""]",1667.67,{},260609,1,"""Africa""" +2023-10-05,34016,9801,"[\""Phone\"", \""Charger\""]",1793.8,"{\""seasonal\"": \""25%\""}",15834,1,"""Asia""" +2023-08-19,34017,7062,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3717.4,"{\"": \""14%\""}",159122,1,"""North America""" +2023-12-04,34018,857,"[\""Keyboard\""]",4797.42,"{\""loyalty\"": \""20%\""}",14348,0,"""Asia""" +2024-04-14,34019,6029,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1334.07,"{\""promo\"": \""13%\""}",284817,0,"""North America""" +2024-08-04,34020,8445,"[\""Monitor\""]",1324.25,"{\"": \""14%\""}",8604,0,"""Europe""" +2024-04-02,34021,3162,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2902.62,{},157669,1,"""Asia""" +2024-08-29,34022,7675,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2437.15,{},209839,1,"""South America""" +2023-03-07,34023,6787,"[\""Wireless Mouse\"", \""Phone\""]",917.94,"{\"": \""22%\""}",143835,1,"""Asia""" +2023-11-09,34024,2447,"[\""Charger\"", \""Phone\""]",4231.61,"{\""loyalty\"": \""19%\""}",11895,0,"""Africa""" +2024-04-13,34025,3486,"[\""Tablet\""]",2228.96,{},52177,1,"""North America""" +2023-01-16,34026,9024,"[\""Tablet\""]",3756.45,{},40254,0,"""South America""" +2024-08-25,34027,5818,"[\""Laptop\"", \""Charger\""]",464.06,"{\""promo\"": \""18%\""}",137852,1,"""Europe""" +2023-04-19,34028,4582,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",217.52,{},170716,1,"""South America""" +2024-01-14,34029,6963,"[\""Wireless Mouse\"", \""Monitor\""]",635.71,{},92330,1,"""Asia""" +2023-05-01,34030,8837,"[\""Tablet\"", \""Charger\""]",3834.16,"{\""seasonal\"": \""13%\""}",130872,0,"""Asia""" +2023-12-04,34031,5387,"[\""Monitor\"", \""Laptop\""]",4686.44,{},139742,1,"""Africa""" +2023-09-26,34032,2051,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2285.35,"{\""promo\"": \""28%\""}",287716,0,"""North America""" +2023-09-03,34033,5151,"[\""Headphones\""]",1126.49,"{\""promo\"": \""20%\""}",104732,0,"""Europe""" +2023-03-12,34034,7206,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2346.31,{},228898,1,"""Europe""" +2023-03-22,34035,2214,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2191.39,"{\""loyalty\"": \""14%\""}",175433,1,"""Europe""" +2023-09-30,34036,1980,"[\""Monitor\"", \""Charger\""]",540.86,{},178292,1,"""South America""" +2024-10-08,34037,1999,"[\""Laptop\"", \""Headphones\""]",2762.09,"{\"": \""30%\""}",171328,0,"""Europe""" +2023-10-06,34038,1503,"[\""Headphones\"", \""Monitor\""]",442.95,"{\""promo\"": \""6%\""}",137835,1,"""North America""" +2023-10-12,34039,9336,"[\""Tablet\""]",3015.47,{},177802,1,"""Africa""" +2023-11-15,34040,5897,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",262.75,{},259777,1,"""Asia""" +2023-11-01,34041,9932,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2134.83,"{\""loyalty\"": \""18%\""}",11272,1,"""South America""" +2024-11-18,34042,2306,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4059.03,"{\""seasonal\"": \""21%\""}",114030,1,"""Asia""" +2023-01-22,34043,9760,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3540.1,{},247530,1,"""Africa""" +2024-06-29,34044,3468,"[\""Tablet\""]",2469.06,{},276230,0,"""Europe""" +2023-04-02,34045,9326,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1967.69,"{\"": \""21%\""}",259945,1,"""South America""" +2024-01-07,34046,4566,"[\""Keyboard\"", \""Phone\""]",4630.25,{},126273,1,"""Africa""" +2024-06-20,34047,4,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2986.86,"{\""promo\"": \""5%\""}",106598,0,"""Africa""" +2024-07-02,34048,2845,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4220.47,"{\""loyalty\"": \""7%\""}",10045,0,"""Europe""" +2023-08-01,34049,8376,"[\""Tablet\""]",680.19,{},78444,0,"""Asia""" +2023-12-03,34050,7569,"[\""Keyboard\"", \""Monitor\""]",1778.96,{},292768,1,"""Africa""" +2023-12-25,34051,2447,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1761.91,"{\""seasonal\"": \""14%\""}",73189,1,"""North America""" +2023-03-14,34052,6611,"[\""Tablet\""]",4305.02,"{\"": \""12%\""}",184189,0,"""Europe""" +2023-06-17,34053,4288,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2282.53,{},63011,0,"""South America""" +2024-08-04,34054,2761,"[\""Charger\"", \""Wireless Mouse\""]",3557.68,"{\"": \""26%\""}",280244,1,"""Asia""" +2023-10-19,34055,177,"[\""Tablet\"", \""Keyboard\""]",3537.44,{},29454,0,"""South America""" +2023-12-22,34056,3905,"[\""Keyboard\""]",1008.73,{},143620,1,"""Europe""" +2023-10-21,34057,3944,"[\""Tablet\""]",1564.76,"{\""loyalty\"": \""24%\""}",104536,1,"""North America""" +2023-07-17,34058,2730,"[\""Laptop\""]",323.66,"{\""promo\"": \""11%\""}",288013,1,"""South America""" +2024-07-21,34059,3465,"[\""Charger\""]",3102.52,"{\""promo\"": \""27%\""}",255694,1,"""Europe""" +2024-12-15,34060,1970,"[\""Laptop\""]",1196.41,{},38911,1,"""Africa""" +2023-12-03,34061,336,"[\""Laptop\"", \""Tablet\""]",615.52,"{\"": \""26%\""}",89514,0,"""Africa""" +2024-07-16,34062,7283,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3687.81,{},94420,0,"""North America""" +2024-08-28,34063,2134,"[\""Charger\"", \""Laptop\""]",213.76,"{\""promo\"": \""26%\""}",255024,0,"""Africa""" +2023-02-11,34064,5897,"[\""Wireless Mouse\"", \""Charger\""]",129.9,{},220261,0,"""South America""" +2023-06-13,34065,6796,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1666.19,{},273465,0,"""Europe""" +2023-07-15,34066,8590,"[\""Headphones\""]",2973.15,{},40420,0,"""South America""" +2023-10-04,34067,1096,"[\""Laptop\""]",1198.97,"{\""seasonal\"": \""21%\""}",87546,0,"""Europe""" +2024-07-01,34068,4984,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2542.54,"{\""promo\"": \""11%\""}",22021,0,"""Asia""" +2024-06-20,34069,9755,"[\""Keyboard\""]",584.54,{},265437,0,"""Asia""" +2024-04-27,34070,5204,"[\""Laptop\"", \""Keyboard\""]",3792.73,"{\""loyalty\"": \""9%\""}",67793,1,"""Asia""" +2024-07-17,34071,2590,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2823.67,"{\""seasonal\"": \""17%\""}",12020,0,"""North America""" +2024-09-14,34072,1125,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4101.65,"{\"": \""30%\""}",177342,1,"""Europe""" +2023-07-25,34073,3429,"[\""Tablet\"", \""Charger\""]",3342.07,"{\""loyalty\"": \""7%\""}",199382,0,"""North America""" +2023-12-30,34074,8358,"[\""Phone\""]",206.86,"{\""loyalty\"": \""8%\""}",70211,1,"""Africa""" +2023-11-03,34075,1249,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3869.92,{},257001,1,"""Europe""" +2024-02-01,34076,9793,"[\""Monitor\""]",4552.53,"{\""seasonal\"": \""8%\""}",224273,1,"""Asia""" +2023-10-30,34077,3728,"[\""Headphones\""]",4405.27,{},118959,1,"""South America""" +2023-11-17,34078,960,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4403.29,{},252505,1,"""North America""" +2023-01-07,34079,1783,"[\""Charger\""]",2667.73,{},232770,1,"""Africa""" +2024-03-03,34080,4940,"[\""Phone\"", \""Laptop\""]",4072.08,{},288593,1,"""North America""" +2024-01-16,34081,2775,"[\""Headphones\""]",3194.76,{},226289,1,"""Europe""" +2024-01-20,34082,813,"[\""Phone\""]",4169.31,{},248109,1,"""Europe""" +2024-01-25,34083,1908,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3869.89,"{\""seasonal\"": \""21%\""}",44637,1,"""Africa""" +2023-11-11,34084,7752,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3541.1,{},26721,1,"""North America""" +2024-10-07,34085,9309,"[\""Keyboard\""]",1230.59,{},251717,1,"""South America""" +2024-01-15,34086,4736,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2937.8,"{\""promo\"": \""16%\""}",65060,1,"""Africa""" +2024-06-22,34087,4568,"[\""Monitor\"", \""Laptop\""]",825.04,"{\""loyalty\"": \""18%\""}",123029,1,"""South America""" +2024-01-04,34088,6479,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2064.72,{},111860,0,"""North America""" +2024-07-26,34089,9434,"[\""Monitor\""]",1122.69,{},241675,0,"""North America""" +2023-09-27,34090,2311,"[\""Phone\""]",1638.15,"{\"": \""28%\""}",15708,0,"""South America""" +2024-09-07,34091,1898,"[\""Laptop\"", \""Wireless Mouse\""]",1686.19,{},193220,0,"""Africa""" +2024-06-03,34092,8789,"[\""Phone\""]",4116.76,{},268290,1,"""South America""" +2024-10-18,34093,6982,"[\""Wireless Mouse\""]",2652.8,"{\""promo\"": \""18%\""}",239450,1,"""North America""" +2023-12-16,34094,1451,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4847.82,"{\""promo\"": \""8%\""}",42489,0,"""Asia""" +2023-10-31,34095,3999,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3692.89,{},25792,0,"""Europe""" +2023-11-21,34096,8715,"[\""Headphones\"", \""Tablet\""]",4015.42,{},134671,1,"""Africa""" +2024-08-31,34097,1095,"[\""Keyboard\""]",3090.47,"{\""promo\"": \""13%\""}",106624,0,"""Africa""" +2024-10-10,34098,2152,"[\""Keyboard\"", \""Wireless Mouse\""]",1371.6,"{\""promo\"": \""16%\""}",145054,0,"""Africa""" +2023-12-04,34099,6832,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3961.32,{},27702,1,"""North America""" +2023-02-19,34100,8633,"[\""Wireless Mouse\"", \""Monitor\""]",3945.03,"{\"": \""24%\""}",84640,0,"""North America""" +2023-12-28,34101,8767,"[\""Phone\""]",705.33,{},200160,1,"""South America""" +2023-12-06,34102,1721,"[\""Tablet\""]",1937.22,{},37262,1,"""Africa""" +2024-11-26,34103,8161,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2184.94,"{\"": \""8%\""}",176638,0,"""South America""" +2024-02-14,34104,3230,"[\""Phone\""]",2377.81,"{\""seasonal\"": \""7%\""}",93934,0,"""Africa""" +2023-06-07,34105,2914,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1563.07,"{\""promo\"": \""30%\""}",96362,0,"""South America""" +2024-01-04,34106,200,"[\""Monitor\"", \""Tablet\""]",479.19,"{\"": \""22%\""}",240843,1,"""North America""" +2024-08-14,34107,8285,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1130.53,{},91407,0,"""South America""" +2024-08-22,34108,1796,"[\""Phone\"", \""Charger\""]",3375.46,"{\""promo\"": \""24%\""}",139134,0,"""North America""" +2024-11-17,34109,9852,"[\""Phone\"", \""Laptop\""]",3174.67,{},133291,1,"""South America""" +2023-04-12,34110,6212,"[\""Monitor\""]",1415.44,"{\"": \""13%\""}",276007,0,"""North America""" +2024-02-28,34111,8380,"[\""Tablet\"", \""Headphones\""]",748.21,{},181202,0,"""Asia""" +2023-09-29,34112,9418,"[\""Wireless Mouse\""]",4865.67,{},200815,1,"""Africa""" +2024-05-05,34113,7999,"[\""Monitor\""]",984.59,"{\""loyalty\"": \""29%\""}",29916,1,"""Asia""" +2023-06-22,34114,40,"[\""Phone\""]",475.16,"{\"": \""29%\""}",98290,1,"""North America""" +2024-05-15,34115,1436,"[\""Keyboard\""]",2960.39,"{\""seasonal\"": \""17%\""}",102545,1,"""Asia""" +2023-04-04,34116,426,"[\""Keyboard\""]",4859.88,"{\""seasonal\"": \""14%\""}",240466,1,"""South America""" +2023-05-05,34117,688,"[\""Wireless Mouse\""]",272.73,"{\""loyalty\"": \""24%\""}",126602,1,"""Africa""" +2023-04-28,34118,2479,"[\""Monitor\"", \""Charger\""]",1773.84,{},22044,0,"""Africa""" +2024-05-14,34119,6234,"[\""Keyboard\"", \""Headphones\""]",2906.47,"{\""promo\"": \""17%\""}",239534,0,"""South America""" +2024-04-21,34120,5283,"[\""Charger\"", \""Headphones\""]",454.7,"{\"": \""20%\""}",77128,1,"""Africa""" +2024-07-20,34121,7047,"[\""Monitor\"", \""Phone\""]",1071.35,"{\"": \""29%\""}",19702,1,"""Europe""" +2023-08-29,34122,6393,"[\""Wireless Mouse\""]",3933.03,{},293675,1,"""Asia""" +2024-12-22,34123,125,"[\""Charger\"", \""Monitor\""]",914.45,"{\""seasonal\"": \""20%\""}",281062,0,"""North America""" +2024-06-04,34124,4149,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2398.07,"{\""loyalty\"": \""17%\""}",57981,1,"""North America""" +2023-03-05,34125,4939,"[\""Tablet\"", \""Monitor\""]",1460.23,{},42332,1,"""Africa""" +2023-03-03,34126,9346,"[\""Tablet\""]",2941.1,{},199134,1,"""North America""" +2023-11-12,34127,3126,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1491.07,{},1023,0,"""South America""" +2023-02-24,34128,3875,"[\""Tablet\"", \""Headphones\""]",345.85,{},65568,0,"""Africa""" +2023-06-02,34129,2922,"[\""Tablet\""]",4330.04,"{\""promo\"": \""7%\""}",204375,0,"""Europe""" +2024-06-07,34130,629,"[\""Charger\"", \""Wireless Mouse\""]",3693.26,"{\"": \""19%\""}",50267,0,"""Europe""" +2024-10-16,34131,5214,"[\""Keyboard\"", \""Monitor\""]",1682.54,{},82894,1,"""South America""" +2023-03-29,34132,3638,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2999.53,{},26869,0,"""South America""" +2023-04-29,34133,1664,"[\""Headphones\""]",3069.01,"{\"": \""20%\""}",234359,0,"""North America""" +2024-04-20,34134,383,"[\""Monitor\"", \""Tablet\""]",3412.72,"{\"": \""11%\""}",96375,0,"""South America""" +2023-01-16,34135,2580,"[\""Wireless Mouse\"", \""Tablet\""]",190.56,{},166714,0,"""South America""" +2023-03-07,34136,8267,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",614.76,{},55963,1,"""South America""" +2023-07-29,34137,9085,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2421.02,{},291515,1,"""Africa""" +2023-07-18,34138,4451,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2593.87,{},188387,0,"""North America""" +2023-07-23,34139,135,"[\""Wireless Mouse\""]",4845.02,{},29907,0,"""North America""" +2023-06-13,34140,5560,"[\""Monitor\"", \""Phone\""]",3067.19,"{\""promo\"": \""11%\""}",219018,1,"""Europe""" +2023-05-02,34141,7355,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1295.23,"{\""promo\"": \""16%\""}",93783,1,"""Europe""" +2024-06-02,34142,6397,"[\""Headphones\""]",858.86,"{\"": \""11%\""}",173552,1,"""North America""" +2024-04-26,34143,3646,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2193.18,{},69511,0,"""Europe""" +2024-01-08,34144,7468,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1444.12,{},212208,0,"""South America""" +2023-06-11,34145,141,"[\""Wireless Mouse\""]",591.74,{},59250,0,"""North America""" +2024-08-20,34146,884,"[\""Headphones\""]",727.79,{},265537,0,"""Europe""" +2024-01-18,34147,9071,"[\""Monitor\"", \""Keyboard\""]",4505.88,"{\"": \""23%\""}",79537,0,"""Africa""" +2023-01-23,34148,4236,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2284.63,{},119155,1,"""Africa""" +2023-11-20,34149,7415,"[\""Headphones\""]",3409.73,"{\""loyalty\"": \""18%\""}",236938,1,"""North America""" +2023-09-10,34150,7710,"[\""Phone\"", \""Wireless Mouse\""]",3845.27,"{\""promo\"": \""7%\""}",245788,0,"""Asia""" +2023-05-21,34151,3472,"[\""Keyboard\"", \""Headphones\""]",4333.37,"{\""seasonal\"": \""17%\""}",80692,1,"""Europe""" +2023-03-24,34152,9700,"[\""Monitor\""]",3628.72,{},8333,0,"""North America""" +2024-02-28,34153,4829,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",196.41,{},230904,1,"""Europe""" +2024-12-14,34154,4716,"[\""Laptop\""]",578.19,{},178164,1,"""Europe""" +2023-03-28,34155,2920,"[\""Keyboard\"", \""Tablet\""]",2088.54,{},80591,1,"""Europe""" +2024-10-29,34156,6242,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1666.81,{},62141,1,"""Africa""" +2024-12-28,34157,2990,"[\""Laptop\""]",731.62,"{\""seasonal\"": \""10%\""}",18209,0,"""Africa""" +2023-04-27,34158,2174,"[\""Tablet\"", \""Wireless Mouse\""]",3592.14,"{\""promo\"": \""9%\""}",25362,1,"""South America""" +2023-01-28,34159,1051,"[\""Charger\"", \""Phone\""]",4628.21,"{\"": \""22%\""}",235922,1,"""North America""" +2023-01-02,34160,4464,"[\""Monitor\""]",67.84,{},146030,0,"""Europe""" +2023-02-17,34161,3352,"[\""Tablet\"", \""Wireless Mouse\""]",2690.91,{},242790,0,"""Asia""" +2023-08-14,34162,8293,"[\""Charger\""]",4207.64,{},232854,0,"""Africa""" +2023-02-07,34163,6613,"[\""Tablet\"", \""Phone\""]",1240.87,"{\""promo\"": \""16%\""}",122735,0,"""North America""" +2024-11-28,34164,3616,"[\""Monitor\""]",800.18,{},227344,1,"""South America""" +2024-09-28,34165,8230,"[\""Monitor\""]",2330.97,{},69657,1,"""Europe""" +2024-02-25,34166,3440,"[\""Monitor\"", \""Laptop\""]",659.19,"{\""seasonal\"": \""19%\""}",148971,0,"""Europe""" +2024-04-13,34167,4598,"[\""Keyboard\""]",1504.26,"{\""seasonal\"": \""18%\""}",82656,1,"""Europe""" +2024-01-04,34168,5558,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4752.93,{},198130,1,"""North America""" +2024-02-07,34169,5964,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4183.66,{},155025,1,"""North America""" +2024-10-07,34170,3973,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2168.34,"{\""promo\"": \""5%\""}",211415,0,"""Africa""" +2024-09-21,34171,1177,"[\""Monitor\""]",1473.3,{},282565,1,"""Africa""" +2023-04-30,34172,5890,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2721.0,"{\""seasonal\"": \""19%\""}",46150,0,"""South America""" +2024-05-27,34173,8944,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4307.8,{},242190,1,"""Africa""" +2024-06-23,34174,1596,"[\""Phone\""]",4068.19,"{\"": \""27%\""}",201447,1,"""Asia""" +2024-09-26,34175,1830,"[\""Phone\"", \""Monitor\""]",2330.51,"{\""loyalty\"": \""13%\""}",216498,1,"""Africa""" +2024-12-21,34176,7882,"[\""Keyboard\""]",422.34,{},8430,1,"""Europe""" +2024-04-07,34177,6846,"[\""Headphones\"", \""Keyboard\""]",2125.23,"{\""loyalty\"": \""30%\""}",266715,1,"""South America""" +2023-06-24,34178,1545,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3308.25,"{\""seasonal\"": \""11%\""}",16412,1,"""Europe""" +2024-09-28,34179,9816,"[\""Charger\"", \""Keyboard\""]",3100.01,{},244588,0,"""North America""" +2024-04-05,34180,2719,"[\""Monitor\""]",3967.69,"{\""promo\"": \""18%\""}",291007,0,"""Europe""" +2024-01-16,34181,8362,"[\""Headphones\"", \""Wireless Mouse\""]",605.95,"{\"": \""14%\""}",211356,1,"""North America""" +2024-11-15,34182,2831,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1053.76,{},104245,0,"""Africa""" +2024-12-16,34183,1923,"[\""Headphones\""]",842.44,{},110065,1,"""Europe""" +2024-03-06,34184,3720,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1236.13,"{\""promo\"": \""13%\""}",8430,1,"""Europe""" +2023-11-25,34185,297,"[\""Monitor\""]",1531.26,{},20425,0,"""Asia""" +2023-05-29,34186,1730,"[\""Keyboard\""]",3237.49,"{\"": \""5%\""}",111720,0,"""Africa""" +2024-05-30,34187,3987,"[\""Tablet\""]",2308.69,{},4566,0,"""Asia""" +2023-07-19,34188,4936,"[\""Phone\"", \""Charger\""]",4610.09,{},267243,1,"""North America""" +2024-02-15,34189,9540,"[\""Monitor\"", \""Laptop\""]",232.63,{},140457,1,"""North America""" +2023-02-15,34190,1964,"[\""Tablet\"", \""Wireless Mouse\""]",1880.39,{},148268,0,"""Africa""" +2023-04-19,34191,8672,"[\""Phone\""]",2440.72,{},180514,1,"""Africa""" +2023-11-26,34192,6949,"[\""Keyboard\"", \""Tablet\""]",2231.07,"{\""seasonal\"": \""27%\""}",161432,0,"""Asia""" +2024-08-05,34193,5734,"[\""Laptop\"", \""Monitor\""]",1407.93,{},9562,1,"""Europe""" +2023-07-08,34194,8273,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2446.78,{},220225,0,"""North America""" +2023-04-17,34195,3968,"[\""Phone\"", \""Wireless Mouse\""]",3536.67,"{\""seasonal\"": \""14%\""}",214616,0,"""North America""" +2023-10-28,34196,8629,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",878.2,"{\"": \""18%\""}",59553,1,"""Europe""" +2023-01-13,34197,3711,"[\""Charger\""]",4696.82,{},20042,0,"""Africa""" +2024-08-03,34198,7693,"[\""Monitor\"", \""Headphones\""]",3273.1,{},7144,1,"""Africa""" +2024-10-30,34199,9559,"[\""Tablet\""]",2786.91,"{\""loyalty\"": \""16%\""}",102470,1,"""Europe""" +2023-07-12,34200,2597,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3121.21,{},197631,0,"""Europe""" +2024-01-02,34201,2980,"[\""Charger\""]",2265.5,"{\""loyalty\"": \""20%\""}",281774,1,"""South America""" +2023-12-18,34202,3995,"[\""Tablet\"", \""Wireless Mouse\""]",3572.14,"{\"": \""6%\""}",180863,0,"""Asia""" +2023-01-17,34203,8940,"[\""Phone\""]",1624.47,{},238721,1,"""Africa""" +2024-04-17,34204,4960,"[\""Headphones\"", \""Wireless Mouse\""]",4016.82,"{\""promo\"": \""15%\""}",296617,1,"""Europe""" +2024-01-01,34205,8055,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1737.39,"{\""loyalty\"": \""15%\""}",32755,1,"""South America""" +2023-08-14,34206,4892,"[\""Tablet\"", \""Keyboard\""]",4191.96,"{\""promo\"": \""29%\""}",209167,0,"""South America""" +2024-03-17,34207,9165,"[\""Charger\"", \""Keyboard\""]",2308.0,"{\""seasonal\"": \""20%\""}",275573,1,"""Europe""" +2024-02-28,34208,9499,"[\""Charger\"", \""Laptop\""]",185.9,"{\""seasonal\"": \""19%\""}",182536,1,"""Europe""" +2024-12-08,34209,7152,"[\""Monitor\"", \""Phone\""]",2156.58,"{\""promo\"": \""21%\""}",264572,0,"""Europe""" +2023-12-24,34210,3768,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3863.09,{},110946,0,"""Europe""" +2024-04-05,34211,3487,"[\""Laptop\"", \""Monitor\""]",3313.96,{},63226,0,"""South America""" +2023-02-13,34212,4513,"[\""Keyboard\""]",1616.06,{},109926,0,"""Asia""" +2024-10-28,34213,5597,"[\""Keyboard\"", \""Tablet\""]",2600.75,"{\""promo\"": \""30%\""}",267714,1,"""South America""" +2024-08-07,34214,1615,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",585.36,{},103522,0,"""North America""" +2024-08-26,34215,897,"[\""Laptop\"", \""Keyboard\""]",4107.5,{},124652,1,"""North America""" +2024-08-03,34216,114,"[\""Wireless Mouse\""]",4522.73,{},85198,0,"""Africa""" +2024-09-06,34217,5027,"[\""Charger\"", \""Headphones\""]",2188.23,{},133126,1,"""North America""" +2024-02-22,34218,2660,"[\""Headphones\""]",1025.16,{},187989,1,"""North America""" +2024-08-05,34219,9495,"[\""Monitor\"", \""Charger\""]",3606.74,"{\""promo\"": \""5%\""}",241357,0,"""Africa""" +2024-01-04,34220,4991,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3974.89,{},237878,1,"""Asia""" +2023-03-09,34221,9528,"[\""Laptop\""]",947.91,{},294763,1,"""Europe""" +2024-09-04,34222,5130,"[\""Charger\""]",1513.24,{},34244,0,"""South America""" +2023-10-06,34223,9862,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4765.59,"{\""promo\"": \""9%\""}",230332,0,"""Europe""" +2024-03-21,34224,16,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3368.24,{},172023,1,"""South America""" +2023-01-07,34225,598,"[\""Phone\"", \""Monitor\""]",1655.84,"{\""promo\"": \""10%\""}",197875,1,"""Europe""" +2023-06-16,34226,1379,"[\""Phone\"", \""Headphones\""]",3466.16,"{\""loyalty\"": \""29%\""}",164806,1,"""North America""" +2024-04-30,34227,1035,"[\""Charger\""]",4593.15,{},248431,0,"""South America""" +2023-01-07,34228,1356,"[\""Tablet\""]",2666.23,"{\""seasonal\"": \""27%\""}",264364,0,"""Asia""" +2023-08-24,34229,1640,"[\""Headphones\"", \""Phone\""]",844.35,{},149383,0,"""Africa""" +2024-11-11,34230,7581,"[\""Keyboard\"", \""Laptop\""]",326.42,"{\""promo\"": \""12%\""}",221254,1,"""North America""" +2024-01-25,34231,3119,"[\""Phone\"", \""Headphones\""]",2807.29,"{\""promo\"": \""25%\""}",180465,1,"""Asia""" +2024-04-17,34232,6059,"[\""Charger\"", \""Wireless Mouse\""]",2165.66,"{\""seasonal\"": \""14%\""}",88397,0,"""Asia""" +2023-12-16,34233,2732,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4153.41,"{\""seasonal\"": \""18%\""}",31538,1,"""North America""" +2023-09-17,34234,8788,"[\""Keyboard\""]",2287.03,{},162508,1,"""South America""" +2024-03-02,34235,8539,"[\""Tablet\"", \""Keyboard\""]",1248.19,{},155659,1,"""Africa""" +2024-10-30,34236,4198,"[\""Laptop\""]",1124.2,{},59565,1,"""South America""" +2023-02-08,34237,7209,"[\""Tablet\""]",3159.62,{},50378,1,"""South America""" +2023-09-12,34238,9453,"[\""Laptop\"", \""Tablet\""]",223.74,"{\""promo\"": \""26%\""}",213424,0,"""North America""" +2023-06-26,34239,840,"[\""Wireless Mouse\"", \""Charger\""]",3900.75,"{\"": \""13%\""}",171873,1,"""Asia""" +2024-11-24,34240,2856,"[\""Charger\"", \""Monitor\""]",3910.79,{},106903,0,"""Africa""" +2023-04-04,34241,831,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1867.77,"{\""seasonal\"": \""20%\""}",78420,0,"""Africa""" +2024-12-13,34242,7900,"[\""Charger\""]",4297.24,{},177296,0,"""Africa""" +2024-12-14,34243,3314,"[\""Phone\"", \""Wireless Mouse\""]",3784.27,"{\""promo\"": \""26%\""}",195159,1,"""South America""" +2024-06-03,34244,9488,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3276.44,{},292859,1,"""South America""" +2024-10-30,34245,2592,"[\""Wireless Mouse\""]",628.76,{},59273,1,"""Europe""" +2024-12-03,34246,8591,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1671.56,"{\""loyalty\"": \""16%\""}",13102,0,"""South America""" +2023-02-14,34247,2020,"[\""Phone\"", \""Headphones\""]",3972.8,{},64501,0,"""Africa""" +2024-02-12,34248,5307,"[\""Wireless Mouse\""]",3831.51,{},23829,0,"""Asia""" +2024-05-12,34249,1444,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2401.52,{},71060,1,"""North America""" +2023-12-16,34250,5312,"[\""Phone\""]",2853.64,"{\""loyalty\"": \""18%\""}",240073,1,"""North America""" +2023-03-11,34251,4895,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2470.52,"{\""seasonal\"": \""11%\""}",45988,1,"""South America""" +2024-01-12,34252,9076,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4012.28,"{\""seasonal\"": \""23%\""}",263606,1,"""Africa""" +2024-10-17,34253,9857,"[\""Laptop\"", \""Keyboard\""]",3320.85,{},185217,0,"""North America""" +2024-05-27,34254,8261,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4482.5,"{\""promo\"": \""13%\""}",213175,0,"""North America""" +2023-04-02,34255,380,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",427.01,"{\"": \""29%\""}",96685,1,"""South America""" +2024-03-29,34256,2287,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4014.64,{},92709,1,"""South America""" +2023-08-09,34257,759,"[\""Headphones\"", \""Wireless Mouse\""]",798.21,"{\""seasonal\"": \""23%\""}",161427,1,"""South America""" +2023-09-18,34258,2978,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",784.78,{},16911,1,"""Africa""" +2023-08-08,34259,3490,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2428.39,"{\""loyalty\"": \""28%\""}",150830,0,"""North America""" +2024-10-06,34260,8021,"[\""Phone\"", \""Charger\""]",2714.05,{},73784,1,"""Europe""" +2023-11-08,34261,4705,"[\""Monitor\""]",1570.75,"{\""loyalty\"": \""5%\""}",15672,0,"""North America""" +2024-05-27,34262,6422,"[\""Phone\"", \""Headphones\""]",4692.06,"{\"": \""11%\""}",16433,0,"""North America""" +2023-12-29,34263,3212,"[\""Keyboard\""]",1201.64,"{\""seasonal\"": \""8%\""}",39252,1,"""Asia""" +2024-02-12,34264,2264,"[\""Laptop\"", \""Wireless Mouse\""]",3989.26,"{\""loyalty\"": \""25%\""}",113013,1,"""Europe""" +2023-01-31,34265,1673,"[\""Monitor\""]",2491.18,"{\""promo\"": \""22%\""}",260369,1,"""Europe""" +2023-06-30,34266,1403,"[\""Wireless Mouse\""]",2080.17,"{\"": \""19%\""}",85743,1,"""North America""" +2023-05-12,34267,978,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",888.98,"{\""promo\"": \""27%\""}",30631,0,"""South America""" +2023-11-30,34268,2924,"[\""Monitor\""]",1512.62,"{\""promo\"": \""18%\""}",8901,1,"""Africa""" +2023-08-18,34269,4865,"[\""Keyboard\""]",3528.5,{},174889,1,"""Africa""" +2023-07-16,34270,583,"[\""Tablet\"", \""Phone\""]",491.82,"{\""promo\"": \""27%\""}",51210,0,"""Europe""" +2023-10-22,34271,7010,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1029.28,"{\""promo\"": \""17%\""}",82517,1,"""South America""" +2024-08-08,34272,3837,"[\""Wireless Mouse\""]",1093.18,{},164477,0,"""North America""" +2023-12-25,34273,5562,"[\""Tablet\""]",654.66,{},243826,1,"""South America""" +2023-08-19,34274,5162,"[\""Tablet\""]",4374.32,"{\"": \""24%\""}",187436,0,"""Europe""" +2023-05-19,34275,771,"[\""Headphones\""]",4539.94,"{\""promo\"": \""13%\""}",252715,1,"""Africa""" +2024-03-10,34276,9475,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2278.19,{},258771,1,"""Asia""" +2024-06-28,34277,6173,"[\""Phone\"", \""Headphones\""]",3599.82,"{\""seasonal\"": \""29%\""}",32526,0,"""Asia""" +2024-09-12,34278,1874,"[\""Monitor\""]",3167.35,"{\""promo\"": \""6%\""}",213407,0,"""Europe""" +2023-07-09,34279,5607,"[\""Tablet\""]",265.94,{},139330,0,"""Europe""" +2023-11-15,34280,210,"[\""Keyboard\""]",1493.77,{},102588,1,"""Africa""" +2023-05-26,34281,9273,"[\""Phone\""]",1164.63,{},239518,0,"""Africa""" +2023-01-13,34282,2324,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3092.77,{},37255,0,"""North America""" +2024-06-03,34283,2858,"[\""Wireless Mouse\""]",2488.09,{},28820,1,"""Europe""" +2023-11-30,34284,5437,"[\""Monitor\"", \""Phone\""]",2375.59,{},127395,1,"""South America""" +2024-03-01,34285,437,"[\""Keyboard\""]",4617.06,{},200075,1,"""Africa""" +2023-05-02,34286,8190,"[\""Tablet\""]",3548.9,{},173908,0,"""Africa""" +2024-08-02,34287,5601,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4523.65,"{\""loyalty\"": \""5%\""}",68899,0,"""North America""" +2024-12-27,34288,4756,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2885.39,{},215583,0,"""Asia""" +2024-02-22,34289,1091,"[\""Monitor\""]",843.8,"{\""loyalty\"": \""8%\""}",280504,1,"""South America""" +2023-01-25,34290,4776,"[\""Charger\""]",4418.59,{},147930,0,"""North America""" +2024-09-11,34291,7446,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1690.89,{},7353,0,"""North America""" +2024-03-13,34292,5318,"[\""Charger\"", \""Tablet\""]",389.34,"{\""loyalty\"": \""22%\""}",45076,0,"""South America""" +2023-03-01,34293,2591,"[\""Laptop\""]",3768.0,{},190485,1,"""Africa""" +2023-10-16,34294,6364,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",162.96,{},241567,0,"""South America""" +2023-10-09,34295,5981,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1280.88,{},104590,1,"""South America""" +2023-05-10,34296,4408,"[\""Keyboard\"", \""Phone\""]",3423.56,{},98572,1,"""Africa""" +2024-10-25,34297,3119,"[\""Charger\""]",4937.99,{},102235,1,"""North America""" +2023-10-24,34298,9519,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",860.16,{},121530,1,"""Europe""" +2024-12-30,34299,2382,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2937.27,{},258378,0,"""North America""" +2023-02-28,34300,7855,"[\""Monitor\""]",1584.42,"{\""seasonal\"": \""19%\""}",184230,1,"""Africa""" +2024-12-18,34301,7780,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",991.13,{},246626,0,"""North America""" +2024-06-04,34302,8165,"[\""Keyboard\""]",4323.63,{},219910,1,"""South America""" +2024-09-25,34303,9879,"[\""Charger\"", \""Monitor\""]",4748.11,{},60043,0,"""South America""" +2023-01-17,34304,8368,"[\""Wireless Mouse\""]",3408.92,{},150211,1,"""Europe""" +2023-01-24,34305,4387,"[\""Tablet\"", \""Wireless Mouse\""]",1460.65,"{\""promo\"": \""7%\""}",198968,0,"""North America""" +2023-01-22,34306,2839,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1094.66,"{\""loyalty\"": \""5%\""}",243564,1,"""Asia""" +2024-09-04,34307,64,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3289.94,"{\""seasonal\"": \""11%\""}",78648,0,"""South America""" +2024-05-16,34308,9851,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4801.36,"{\""seasonal\"": \""17%\""}",39784,1,"""Europe""" +2023-06-08,34309,2513,"[\""Wireless Mouse\""]",3718.37,"{\"": \""30%\""}",263980,1,"""Africa""" +2023-02-15,34310,4351,"[\""Keyboard\"", \""Charger\""]",4519.71,"{\"": \""27%\""}",5589,0,"""Asia""" +2024-11-23,34311,7912,"[\""Phone\"", \""Headphones\""]",1970.49,{},198788,0,"""Asia""" +2023-08-08,34312,3732,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1894.18,{},56715,0,"""Africa""" +2023-05-18,34313,9885,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1249.0,"{\""seasonal\"": \""14%\""}",19799,1,"""South America""" +2024-09-21,34314,6490,"[\""Tablet\"", \""Headphones\""]",1879.28,{},80417,0,"""Asia""" +2024-12-05,34315,8927,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1588.1,"{\""promo\"": \""9%\""}",262707,0,"""Europe""" +2024-10-31,34316,244,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2606.16,{},73735,0,"""Africa""" +2023-03-27,34317,1422,"[\""Headphones\""]",233.55,{},55345,1,"""South America""" +2024-04-26,34318,5948,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",963.16,{},134475,0,"""Asia""" +2024-02-05,34319,797,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2159.17,{},231564,0,"""South America""" +2023-07-16,34320,9004,"[\""Wireless Mouse\""]",271.99,{},182000,1,"""Europe""" +2024-04-08,34321,1974,"[\""Phone\"", \""Monitor\""]",1539.86,"{\""promo\"": \""27%\""}",77037,1,"""Asia""" +2024-02-11,34322,2853,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4050.77,"{\""loyalty\"": \""14%\""}",71369,0,"""Europe""" +2024-06-30,34323,1157,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3359.44,{},76933,0,"""North America""" +2024-06-20,34324,3083,"[\""Wireless Mouse\"", \""Keyboard\""]",2386.15,{},184852,0,"""North America""" +2023-01-06,34325,9328,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3211.81,"{\""promo\"": \""12%\""}",230072,0,"""Europe""" +2023-10-04,34326,3830,"[\""Monitor\""]",182.81,{},133082,0,"""North America""" +2023-02-19,34327,8955,"[\""Phone\"", \""Headphones\""]",2407.94,"{\"": \""26%\""}",8053,0,"""Africa""" +2024-02-23,34328,4473,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3591.84,{},277184,1,"""Asia""" +2024-11-11,34329,25,"[\""Wireless Mouse\""]",854.7,{},277229,1,"""Europe""" +2024-11-08,34330,9058,"[\""Charger\"", \""Phone\""]",3121.34,{},180709,1,"""South America""" +2023-04-02,34331,752,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3296.57,"{\""loyalty\"": \""19%\""}",216983,1,"""North America""" +2024-03-11,34332,6103,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4170.71,"{\""loyalty\"": \""19%\""}",291089,0,"""North America""" +2024-10-08,34333,4936,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4592.81,"{\"": \""13%\""}",153186,1,"""Asia""" +2023-10-22,34334,1441,"[\""Headphones\"", \""Laptop\""]",1734.8,"{\""loyalty\"": \""30%\""}",178599,0,"""Africa""" +2023-07-09,34335,2261,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1983.54,"{\""loyalty\"": \""14%\""}",125860,1,"""Africa""" +2024-09-15,34336,3302,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2212.34,{},144991,1,"""Asia""" +2024-08-23,34337,2488,"[\""Keyboard\"", \""Laptop\""]",4185.63,"{\""seasonal\"": \""29%\""}",28239,0,"""Asia""" +2023-02-15,34338,4757,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2990.18,"{\"": \""25%\""}",109148,0,"""Europe""" +2024-08-30,34339,314,"[\""Charger\"", \""Tablet\""]",3351.42,"{\"": \""8%\""}",58036,0,"""North America""" +2023-01-17,34340,3085,"[\""Charger\""]",1879.12,"{\"": \""5%\""}",294206,0,"""Africa""" +2023-08-31,34341,6212,"[\""Tablet\""]",890.71,"{\""seasonal\"": \""17%\""}",79784,1,"""South America""" +2024-12-29,34342,8706,"[\""Charger\""]",1346.41,{},135866,1,"""Asia""" +2024-08-15,34343,5632,"[\""Headphones\""]",3608.0,"{\"": \""28%\""}",40396,0,"""Europe""" +2024-02-10,34344,5776,"[\""Charger\"", \""Tablet\""]",1391.12,{},111223,0,"""North America""" +2024-06-19,34345,6777,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",863.55,"{\""loyalty\"": \""23%\""}",19103,0,"""South America""" +2023-04-27,34346,2263,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3775.53,"{\"": \""21%\""}",272742,1,"""South America""" +2024-06-26,34347,6263,"[\""Wireless Mouse\"", \""Monitor\""]",2939.2,"{\"": \""21%\""}",93225,1,"""South America""" +2023-03-26,34348,6666,"[\""Laptop\""]",1421.56,"{\""loyalty\"": \""17%\""}",292998,1,"""Europe""" +2024-09-02,34349,473,"[\""Wireless Mouse\""]",1791.6,"{\"": \""15%\""}",170102,0,"""North America""" +2023-08-02,34350,8474,"[\""Headphones\""]",3320.47,"{\""loyalty\"": \""7%\""}",112292,1,"""Europe""" +2024-03-16,34351,9421,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3332.54,"{\"": \""20%\""}",291278,0,"""South America""" +2024-02-17,34352,713,"[\""Phone\"", \""Wireless Mouse\""]",1637.53,"{\""promo\"": \""27%\""}",64053,0,"""South America""" +2023-08-27,34353,9283,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2805.65,{},73540,1,"""North America""" +2023-02-01,34354,7944,"[\""Phone\""]",1969.24,{},31642,1,"""South America""" +2024-04-12,34355,7623,"[\""Monitor\"", \""Headphones\""]",2914.18,"{\""seasonal\"": \""26%\""}",248393,0,"""South America""" +2024-06-04,34356,3934,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1040.52,"{\""seasonal\"": \""23%\""}",289367,1,"""Europe""" +2023-07-04,34357,3024,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4983.44,"{\"": \""12%\""}",292515,1,"""North America""" +2024-04-02,34358,4898,"[\""Tablet\"", \""Laptop\""]",164.14,{},59937,1,"""Europe""" +2024-07-29,34359,2106,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1157.22,"{\""promo\"": \""19%\""}",32013,0,"""Asia""" +2023-12-24,34360,1276,"[\""Keyboard\""]",1421.36,{},232655,1,"""South America""" +2024-03-09,34361,3078,"[\""Wireless Mouse\"", \""Monitor\""]",861.03,"{\""promo\"": \""28%\""}",222640,1,"""South America""" +2023-08-08,34362,8323,"[\""Headphones\"", \""Laptop\""]",4785.08,{},125200,0,"""Africa""" +2023-04-05,34363,7072,"[\""Wireless Mouse\""]",4169.47,"{\"": \""22%\""}",279436,1,"""Asia""" +2024-06-09,34364,4359,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",957.54,{},39728,1,"""South America""" +2024-09-19,34365,43,"[\""Wireless Mouse\""]",1546.18,"{\""promo\"": \""25%\""}",125447,0,"""Europe""" +2023-10-16,34366,1990,"[\""Charger\""]",2995.07,"{\""loyalty\"": \""28%\""}",14034,1,"""South America""" +2024-02-25,34367,9918,"[\""Wireless Mouse\""]",564.79,{},297019,0,"""South America""" +2023-04-21,34368,8784,"[\""Headphones\""]",3114.85,{},288365,0,"""North America""" +2023-12-02,34369,1864,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3289.65,{},77254,0,"""Africa""" +2023-03-04,34370,8366,"[\""Phone\"", \""Laptop\""]",994.81,{},128112,0,"""Asia""" +2024-08-23,34371,158,"[\""Charger\"", \""Keyboard\""]",1501.77,"{\"": \""16%\""}",188479,0,"""Africa""" +2023-08-12,34372,9494,"[\""Headphones\"", \""Charger\""]",4459.87,{},283694,1,"""South America""" +2024-05-12,34373,1539,"[\""Monitor\""]",304.91,{},160680,0,"""South America""" +2024-10-04,34374,4768,"[\""Laptop\"", \""Keyboard\""]",1402.53,{},173422,0,"""Africa""" +2024-12-06,34375,2727,"[\""Tablet\""]",3760.56,"{\""seasonal\"": \""27%\""}",69343,1,"""Africa""" +2024-12-20,34376,9278,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",197.71,{},125803,0,"""Europe""" +2023-09-03,34377,1721,"[\""Phone\""]",2993.6,"{\""loyalty\"": \""10%\""}",30801,1,"""South America""" +2024-09-15,34378,695,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1582.01,"{\""loyalty\"": \""29%\""}",67386,0,"""Africa""" +2023-09-15,34379,9631,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2825.99,"{\"": \""29%\""}",196441,0,"""Asia""" +2023-06-30,34380,707,"[\""Laptop\""]",2472.06,"{\"": \""23%\""}",211842,0,"""North America""" +2023-08-21,34381,288,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1339.18,{},14838,0,"""South America""" +2023-02-04,34382,5679,"[\""Charger\""]",4739.12,"{\"": \""24%\""}",23132,0,"""North America""" +2024-11-17,34383,10000,"[\""Charger\""]",3472.12,{},135728,1,"""South America""" +2023-08-04,34384,6837,"[\""Monitor\"", \""Laptop\""]",636.04,"{\""promo\"": \""11%\""}",17052,0,"""Asia""" +2023-02-25,34385,2177,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",838.75,{},186656,0,"""North America""" +2023-07-25,34386,4330,"[\""Charger\""]",4565.4,"{\"": \""6%\""}",276179,0,"""South America""" +2024-07-29,34387,8688,"[\""Phone\""]",3699.33,"{\""seasonal\"": \""26%\""}",177383,0,"""Asia""" +2023-01-26,34388,4095,"[\""Monitor\""]",2115.25,"{\""promo\"": \""27%\""}",135822,0,"""Europe""" +2023-02-10,34389,8940,"[\""Keyboard\"", \""Laptop\""]",1077.55,{},18985,0,"""Asia""" +2024-09-08,34390,6301,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",242.87,{},209437,0,"""North America""" +2023-05-11,34391,2521,"[\""Monitor\"", \""Headphones\""]",642.13,"{\""seasonal\"": \""19%\""}",208391,0,"""Europe""" +2023-06-21,34392,9051,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4572.27,"{\""loyalty\"": \""14%\""}",225041,0,"""Asia""" +2023-12-15,34393,9560,"[\""Monitor\""]",3345.24,{},143144,0,"""North America""" +2024-04-22,34394,8719,"[\""Monitor\""]",846.81,"{\""seasonal\"": \""29%\""}",123368,0,"""North America""" +2023-04-16,34395,5547,"[\""Wireless Mouse\""]",1796.46,{},58321,1,"""Asia""" +2024-06-15,34396,6708,"[\""Keyboard\"", \""Phone\""]",3632.24,{},162417,1,"""Europe""" +2023-09-22,34397,1855,"[\""Phone\""]",234.4,"{\""promo\"": \""24%\""}",187235,1,"""Africa""" +2023-04-11,34398,7753,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1135.59,"{\""loyalty\"": \""28%\""}",118103,0,"""Africa""" +2023-08-01,34399,2768,"[\""Laptop\""]",1713.83,"{\""seasonal\"": \""8%\""}",192296,0,"""South America""" +2024-06-29,34400,7493,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1433.71,{},18451,1,"""Africa""" +2023-04-04,34401,9452,"[\""Wireless Mouse\"", \""Phone\""]",3275.34,{},29108,0,"""Asia""" +2024-11-23,34402,5322,"[\""Tablet\"", \""Monitor\""]",1224.69,{},142534,1,"""North America""" +2024-08-29,34403,7803,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3410.05,"{\""loyalty\"": \""7%\""}",57821,1,"""South America""" +2023-03-12,34404,5666,"[\""Monitor\""]",4889.18,"{\""promo\"": \""21%\""}",272295,1,"""Africa""" +2024-03-08,34405,8626,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",825.64,{},78504,1,"""North America""" +2024-12-10,34406,3173,"[\""Wireless Mouse\"", \""Laptop\""]",818.91,{},138893,0,"""North America""" +2024-06-30,34407,2035,"[\""Laptop\""]",3111.48,{},209870,1,"""South America""" +2023-03-23,34408,5383,"[\""Phone\""]",444.47,{},246722,0,"""Asia""" +2023-05-22,34409,513,"[\""Tablet\"", \""Wireless Mouse\""]",2169.46,{},222072,1,"""Asia""" +2023-10-15,34410,2629,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1400.53,"{\""loyalty\"": \""21%\""}",212119,1,"""North America""" +2024-07-21,34411,30,"[\""Laptop\""]",2829.21,"{\""seasonal\"": \""23%\""}",273997,0,"""Europe""" +2024-03-21,34412,1546,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2167.17,{},292086,0,"""South America""" +2024-11-11,34413,2027,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3212.07,{},108063,0,"""Africa""" +2024-06-04,34414,493,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",991.0,{},209656,0,"""Europe""" +2023-01-30,34415,1008,"[\""Charger\"", \""Laptop\""]",4069.48,"{\""seasonal\"": \""30%\""}",163608,0,"""Africa""" +2024-03-01,34416,9421,"[\""Charger\"", \""Wireless Mouse\""]",4610.5,"{\"": \""15%\""}",22504,1,"""South America""" +2024-12-16,34417,9367,"[\""Headphones\""]",2833.97,"{\""seasonal\"": \""17%\""}",25020,0,"""Africa""" +2023-06-28,34418,5433,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3988.69,"{\""loyalty\"": \""29%\""}",108015,1,"""Europe""" +2023-08-05,34419,5285,"[\""Charger\"", \""Tablet\""]",1044.83,"{\""loyalty\"": \""17%\""}",270647,1,"""Europe""" +2023-03-18,34420,8880,"[\""Wireless Mouse\"", \""Monitor\""]",3408.4,{},84608,0,"""Europe""" +2023-11-06,34421,349,"[\""Laptop\""]",2353.03,"{\"": \""12%\""}",255220,1,"""North America""" +2024-03-02,34422,9576,"[\""Charger\"", \""Tablet\""]",3146.62,"{\""seasonal\"": \""9%\""}",234357,1,"""Europe""" +2023-01-07,34423,4598,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4564.11,"{\""seasonal\"": \""7%\""}",162762,1,"""South America""" +2024-01-30,34424,7360,"[\""Phone\""]",1312.96,"{\""loyalty\"": \""15%\""}",273801,1,"""South America""" +2024-06-08,34425,6573,"[\""Monitor\""]",93.81,{},84984,1,"""North America""" +2023-04-11,34426,4839,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1128.59,{},253122,0,"""Asia""" +2023-04-19,34427,2868,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3671.08,{},245683,1,"""Africa""" +2024-02-24,34428,6907,"[\""Charger\"", \""Keyboard\""]",2117.51,"{\""loyalty\"": \""11%\""}",144897,1,"""Europe""" +2024-05-18,34429,6724,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4153.38,"{\""promo\"": \""14%\""}",50955,1,"""Africa""" +2024-02-04,34430,798,"[\""Phone\""]",1868.52,"{\""promo\"": \""17%\""}",139148,0,"""Africa""" +2023-05-05,34431,9769,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4995.12,"{\"": \""20%\""}",197576,0,"""Asia""" +2024-05-19,34432,7220,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3126.84,{},256868,1,"""North America""" +2023-03-16,34433,3121,"[\""Keyboard\""]",2943.69,{},263490,0,"""South America""" +2024-11-18,34434,6110,"[\""Headphones\""]",3115.39,{},215459,1,"""Africa""" +2024-10-29,34435,53,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3266.65,"{\""promo\"": \""27%\""}",206021,0,"""Europe""" +2024-04-30,34436,8638,"[\""Headphones\"", \""Charger\""]",677.01,"{\""promo\"": \""5%\""}",11779,1,"""South America""" +2024-07-04,34437,53,"[\""Monitor\"", \""Headphones\""]",4202.15,"{\""loyalty\"": \""7%\""}",251120,1,"""Asia""" +2024-04-25,34438,120,"[\""Phone\""]",723.08,"{\""promo\"": \""22%\""}",194251,1,"""Europe""" +2024-10-05,34439,3819,"[\""Keyboard\"", \""Phone\""]",1640.73,"{\""seasonal\"": \""20%\""}",2477,1,"""Africa""" +2023-09-25,34440,9861,"[\""Laptop\""]",2177.79,"{\""loyalty\"": \""16%\""}",290381,0,"""Europe""" +2024-07-29,34441,6610,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2657.58,"{\""promo\"": \""9%\""}",126566,1,"""North America""" +2024-10-12,34442,380,"[\""Phone\""]",3519.53,"{\""promo\"": \""5%\""}",69721,1,"""Africa""" +2024-08-21,34443,4364,"[\""Headphones\""]",3184.9,"{\""loyalty\"": \""5%\""}",221974,0,"""North America""" +2024-10-06,34444,5282,"[\""Keyboard\"", \""Phone\""]",122.2,{},225637,0,"""Europe""" +2023-03-04,34445,116,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",377.36,"{\"": \""8%\""}",251358,0,"""Asia""" +2023-09-09,34446,5702,"[\""Headphones\""]",2218.14,"{\"": \""6%\""}",282017,1,"""South America""" +2024-05-29,34447,471,"[\""Phone\"", \""Wireless Mouse\""]",2425.55,"{\""promo\"": \""16%\""}",66488,0,"""South America""" +2023-10-31,34448,4642,"[\""Monitor\""]",4035.28,{},298005,1,"""Asia""" +2023-04-04,34449,2178,"[\""Monitor\""]",4636.35,"{\""promo\"": \""21%\""}",16420,1,"""North America""" +2023-07-07,34450,3027,"[\""Headphones\"", \""Laptop\""]",198.02,"{\""seasonal\"": \""6%\""}",161549,0,"""Europe""" +2023-08-20,34451,3895,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",665.73,"{\""loyalty\"": \""20%\""}",276912,1,"""Europe""" +2023-06-06,34452,2215,"[\""Wireless Mouse\""]",571.49,{},237316,0,"""North America""" +2024-09-19,34453,5908,"[\""Charger\"", \""Headphones\""]",2833.44,"{\""seasonal\"": \""29%\""}",31061,1,"""North America""" +2023-01-07,34454,4795,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2897.14,"{\""loyalty\"": \""26%\""}",175994,1,"""Africa""" +2023-11-12,34455,9169,"[\""Phone\"", \""Keyboard\""]",4239.61,"{\""seasonal\"": \""7%\""}",152632,0,"""South America""" +2024-09-25,34456,8384,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3168.84,"{\"": \""30%\""}",220845,1,"""Africa""" +2024-01-02,34457,882,"[\""Laptop\"", \""Wireless Mouse\""]",948.48,{},91346,1,"""North America""" +2024-02-07,34458,395,"[\""Charger\""]",4992.8,{},276753,0,"""Asia""" +2024-01-08,34459,7236,"[\""Headphones\""]",2608.75,"{\"": \""17%\""}",2745,1,"""Europe""" +2023-08-10,34460,3216,"[\""Monitor\""]",1297.96,"{\""seasonal\"": \""5%\""}",255622,1,"""Africa""" +2024-06-26,34461,6988,"[\""Tablet\"", \""Phone\""]",4556.53,"{\""promo\"": \""20%\""}",286091,0,"""Asia""" +2024-09-13,34462,2793,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2839.53,"{\"": \""14%\""}",41761,1,"""South America""" +2024-04-23,34463,4063,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2985.02,{},278232,1,"""Asia""" +2023-11-11,34464,1177,"[\""Headphones\"", \""Laptop\""]",1879.67,{},270457,0,"""South America""" +2024-03-10,34465,4943,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",744.87,{},131198,0,"""Europe""" +2023-01-10,34466,5384,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1118.96,"{\""seasonal\"": \""20%\""}",263596,0,"""South America""" +2023-11-27,34467,3946,"[\""Phone\"", \""Monitor\""]",4638.19,"{\"": \""5%\""}",24463,1,"""Asia""" +2023-07-08,34468,4535,"[\""Tablet\"", \""Keyboard\""]",4841.4,"{\""loyalty\"": \""8%\""}",200509,0,"""South America""" +2024-06-22,34469,2778,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4733.66,"{\"": \""7%\""}",15003,1,"""Asia""" +2024-01-02,34470,6481,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4381.59,"{\""seasonal\"": \""8%\""}",172583,1,"""Asia""" +2024-10-03,34471,3576,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4079.1,{},239338,1,"""Asia""" +2023-04-11,34472,1391,"[\""Charger\""]",2078.76,"{\"": \""11%\""}",224327,0,"""South America""" +2023-03-30,34473,5969,"[\""Monitor\"", \""Keyboard\""]",3747.18,"{\""promo\"": \""28%\""}",44142,0,"""North America""" +2023-02-16,34474,6016,"[\""Wireless Mouse\""]",482.83,"{\""promo\"": \""21%\""}",37085,0,"""South America""" +2024-12-12,34475,6858,"[\""Charger\""]",1571.4,"{\""promo\"": \""26%\""}",219170,1,"""North America""" +2023-11-13,34476,9239,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1246.52,{},8133,1,"""North America""" +2024-12-19,34477,4541,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",386.04,"{\""loyalty\"": \""13%\""}",198315,0,"""Africa""" +2024-02-02,34478,4859,"[\""Wireless Mouse\"", \""Charger\""]",4075.34,{},43134,0,"""Africa""" +2024-06-24,34479,9230,"[\""Phone\""]",4606.63,"{\""promo\"": \""29%\""}",140016,0,"""North America""" +2023-01-14,34480,9783,"[\""Phone\""]",968.09,{},16614,1,"""Europe""" +2024-12-08,34481,8680,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1405.83,{},103798,0,"""Asia""" +2023-11-12,34482,5180,"[\""Phone\""]",4263.42,{},159222,1,"""Africa""" +2023-08-19,34483,3643,"[\""Keyboard\"", \""Headphones\""]",2898.21,"{\"": \""28%\""}",139191,1,"""Africa""" +2023-03-10,34484,9422,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2549.02,"{\""loyalty\"": \""26%\""}",148516,0,"""Europe""" +2024-05-19,34485,7959,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4716.14,{},127258,0,"""Asia""" +2024-06-14,34486,4214,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3730.55,"{\""seasonal\"": \""12%\""}",114545,0,"""Africa""" +2023-02-20,34487,514,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2009.63,{},205907,0,"""Europe""" +2024-06-17,34488,9771,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3282.48,"{\""promo\"": \""28%\""}",227007,0,"""Africa""" +2024-04-02,34489,8695,"[\""Headphones\""]",2208.08,{},276984,0,"""South America""" +2024-09-19,34490,1795,"[\""Keyboard\"", \""Wireless Mouse\""]",3886.94,"{\""promo\"": \""9%\""}",43034,0,"""South America""" +2023-09-27,34491,4082,"[\""Keyboard\"", \""Charger\""]",131.71,"{\""seasonal\"": \""23%\""}",297195,1,"""Asia""" +2023-10-04,34492,291,"[\""Charger\""]",300.78,"{\""loyalty\"": \""9%\""}",68380,0,"""North America""" +2023-09-09,34493,9234,"[\""Wireless Mouse\""]",2733.13,{},55833,1,"""South America""" +2024-07-22,34494,7518,"[\""Laptop\""]",1339.56,"{\""promo\"": \""30%\""}",187782,0,"""South America""" +2023-09-26,34495,1611,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3031.54,{},245319,1,"""Asia""" +2023-02-02,34496,3870,"[\""Keyboard\"", \""Wireless Mouse\""]",1523.81,"{\""loyalty\"": \""7%\""}",23793,1,"""North America""" +2023-01-09,34497,1730,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1577.64,"{\""loyalty\"": \""11%\""}",11125,0,"""North America""" +2023-05-01,34498,9561,"[\""Wireless Mouse\"", \""Phone\""]",2665.33,"{\""seasonal\"": \""18%\""}",214842,1,"""North America""" +2023-05-24,34499,4734,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",957.52,{},151064,0,"""Africa""" +2023-03-25,34500,2455,"[\""Tablet\""]",2010.43,{},113801,0,"""Asia""" +2023-09-19,34501,630,"[\""Headphones\""]",1469.77,"{\""loyalty\"": \""5%\""}",171658,0,"""Europe""" +2023-10-08,34502,4292,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4086.75,"{\""promo\"": \""13%\""}",82073,0,"""South America""" +2023-08-31,34503,8055,"[\""Phone\"", \""Keyboard\""]",4149.81,{},97737,0,"""Africa""" +2024-07-08,34504,408,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",453.22,{},82163,1,"""North America""" +2023-04-04,34505,285,"[\""Keyboard\"", \""Monitor\""]",568.84,{},40081,0,"""South America""" +2023-07-23,34506,2278,"[\""Phone\""]",4920.52,{},122767,1,"""North America""" +2024-03-23,34507,6571,"[\""Monitor\"", \""Tablet\""]",2977.16,"{\""seasonal\"": \""26%\""}",294761,1,"""North America""" +2023-03-14,34508,5147,"[\""Headphones\"", \""Wireless Mouse\""]",2542.51,"{\""loyalty\"": \""6%\""}",86008,1,"""Africa""" +2024-03-28,34509,6311,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3328.94,{},79887,1,"""South America""" +2023-03-30,34510,8217,"[\""Tablet\"", \""Monitor\""]",4013.76,"{\"": \""13%\""}",127113,1,"""Asia""" +2024-08-08,34511,6171,"[\""Wireless Mouse\"", \""Headphones\""]",4250.51,{},178946,0,"""Africa""" +2024-01-23,34512,8994,"[\""Wireless Mouse\"", \""Headphones\""]",2711.43,"{\""seasonal\"": \""6%\""}",10581,1,"""South America""" +2024-10-10,34513,3932,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",710.26,{},158356,1,"""Africa""" +2023-01-11,34514,9356,"[\""Phone\""]",1997.59,{},212511,1,"""Asia""" +2023-02-11,34515,2109,"[\""Monitor\""]",3045.95,"{\"": \""5%\""}",32595,1,"""South America""" +2024-09-16,34516,2453,"[\""Laptop\""]",4940.88,{},273893,1,"""South America""" +2023-10-08,34517,8721,"[\""Wireless Mouse\"", \""Charger\""]",3584.9,"{\""promo\"": \""19%\""}",182961,1,"""South America""" +2023-10-05,34518,3979,"[\""Wireless Mouse\"", \""Tablet\""]",3781.25,"{\""promo\"": \""23%\""}",248628,0,"""South America""" +2023-01-25,34519,6707,"[\""Phone\"", \""Wireless Mouse\""]",2337.85,{},251898,1,"""Asia""" +2023-06-20,34520,9133,"[\""Keyboard\"", \""Monitor\""]",1032.5,"{\"": \""20%\""}",161564,1,"""Europe""" +2023-09-14,34521,4585,"[\""Phone\"", \""Tablet\""]",62.15,{},205882,0,"""Africa""" +2023-05-16,34522,3502,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3690.68,{},94720,0,"""South America""" +2023-05-27,34523,6439,"[\""Monitor\""]",2291.24,"{\""seasonal\"": \""19%\""}",251533,0,"""Africa""" +2023-03-31,34524,4976,"[\""Laptop\""]",254.61,"{\"": \""7%\""}",123096,1,"""South America""" +2024-04-20,34525,2915,"[\""Charger\""]",2887.2,"{\""promo\"": \""13%\""}",208400,0,"""North America""" +2023-05-06,34526,7730,"[\""Keyboard\""]",2449.69,"{\""seasonal\"": \""27%\""}",213663,0,"""South America""" +2024-05-10,34527,9104,"[\""Charger\""]",419.04,{},261428,1,"""South America""" +2023-01-03,34528,6940,"[\""Keyboard\""]",567.82,"{\""seasonal\"": \""26%\""}",52634,1,"""Asia""" +2023-09-10,34529,8170,"[\""Monitor\"", \""Charger\""]",240.44,"{\"": \""14%\""}",161909,0,"""South America""" +2023-04-10,34530,669,"[\""Monitor\""]",2987.84,{},95030,0,"""Africa""" +2024-11-02,34531,8977,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3409.08,{},131818,1,"""South America""" +2024-06-01,34532,5270,"[\""Wireless Mouse\"", \""Tablet\""]",2001.33,"{\""seasonal\"": \""9%\""}",175202,0,"""Africa""" +2024-12-01,34533,6098,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",904.77,{},150183,1,"""Africa""" +2023-11-26,34534,243,"[\""Tablet\"", \""Wireless Mouse\""]",451.73,{},162791,1,"""Africa""" +2024-01-18,34535,5203,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",204.82,{},213859,0,"""Europe""" +2023-08-30,34536,6007,"[\""Monitor\"", \""Keyboard\""]",4163.64,{},61661,0,"""Africa""" +2023-07-12,34537,2318,"[\""Headphones\""]",3854.73,"{\"": \""24%\""}",165768,0,"""Africa""" +2023-06-06,34538,3930,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",357.14,{},28326,0,"""South America""" +2024-09-27,34539,1471,"[\""Wireless Mouse\"", \""Monitor\""]",198.95,{},178047,0,"""Asia""" +2023-01-23,34540,2372,"[\""Keyboard\"", \""Tablet\""]",1540.77,"{\"": \""20%\""}",115627,0,"""Europe""" +2023-09-18,34541,3756,"[\""Charger\"", \""Laptop\""]",3520.16,"{\""promo\"": \""19%\""}",265235,1,"""North America""" +2024-04-22,34542,5455,"[\""Keyboard\"", \""Charger\""]",2123.9,{},158971,0,"""South America""" +2024-03-16,34543,1434,"[\""Phone\"", \""Monitor\""]",4189.68,{},102581,0,"""Asia""" +2023-09-11,34544,3159,"[\""Laptop\"", \""Monitor\""]",3040.77,"{\""promo\"": \""7%\""}",65717,1,"""Asia""" +2023-04-06,34545,1691,"[\""Phone\""]",977.09,"{\"": \""11%\""}",118986,0,"""Africa""" +2024-08-24,34546,526,"[\""Laptop\""]",315.88,"{\""loyalty\"": \""7%\""}",265008,1,"""Asia""" +2023-01-13,34547,1567,"[\""Keyboard\""]",226.84,"{\"": \""27%\""}",85484,1,"""Europe""" +2024-12-03,34548,9210,"[\""Monitor\""]",1011.03,"{\"": \""25%\""}",57555,0,"""Europe""" +2023-04-18,34549,1232,"[\""Keyboard\""]",725.23,{},10407,0,"""South America""" +2024-12-26,34550,5561,"[\""Wireless Mouse\""]",4913.39,{},51387,0,"""Europe""" +2024-11-16,34551,532,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3893.87,{},115735,1,"""Asia""" +2024-06-18,34552,3755,"[\""Charger\""]",767.08,{},55529,0,"""Africa""" +2023-04-18,34553,5365,"[\""Keyboard\"", \""Laptop\""]",2767.1,{},246400,0,"""Europe""" +2023-10-30,34554,985,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2995.39,{},169653,0,"""Europe""" +2024-10-01,34555,872,"[\""Laptop\"", \""Tablet\""]",4149.57,{},299158,0,"""North America""" +2024-09-29,34556,3163,"[\""Laptop\""]",1040.02,"{\""promo\"": \""6%\""}",78109,0,"""Africa""" +2023-05-21,34557,7422,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1096.87,{},281751,1,"""Europe""" +2023-03-15,34558,425,"[\""Charger\""]",3453.78,"{\""promo\"": \""6%\""}",143673,1,"""Africa""" +2023-08-08,34559,2817,"[\""Headphones\"", \""Wireless Mouse\""]",791.57,"{\""seasonal\"": \""19%\""}",217842,1,"""Europe""" +2024-05-18,34560,6177,"[\""Headphones\"", \""Laptop\""]",3528.32,{},268622,0,"""South America""" +2024-11-23,34561,2178,"[\""Tablet\""]",4674.68,"{\"": \""29%\""}",186407,1,"""Asia""" +2023-06-18,34562,677,"[\""Headphones\""]",4746.59,{},100440,1,"""Asia""" +2024-11-05,34563,8522,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4107.87,{},234753,1,"""Asia""" +2024-09-21,34564,1181,"[\""Monitor\"", \""Laptop\""]",3334.42,"{\"": \""18%\""}",180628,1,"""Europe""" +2024-04-06,34565,2138,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1951.0,"{\""loyalty\"": \""24%\""}",241765,1,"""Asia""" +2024-04-23,34566,9001,"[\""Tablet\"", \""Keyboard\""]",2148.34,"{\"": \""22%\""}",147011,1,"""Africa""" +2023-12-19,34567,7548,"[\""Tablet\""]",724.38,{},26095,1,"""South America""" +2024-05-25,34568,8302,"[\""Phone\""]",1121.75,{},245777,1,"""Asia""" +2023-10-18,34569,4162,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",227.46,"{\""promo\"": \""16%\""}",104958,1,"""Europe""" +2023-10-17,34570,9998,"[\""Phone\"", \""Monitor\""]",1236.9,"{\""promo\"": \""13%\""}",258311,1,"""South America""" +2024-10-25,34571,3882,"[\""Phone\""]",4954.89,{},12234,1,"""Asia""" +2024-06-30,34572,5080,"[\""Laptop\"", \""Keyboard\""]",2928.73,{},102526,1,"""South America""" +2023-12-06,34573,8287,"[\""Charger\"", \""Monitor\""]",190.37,"{\""loyalty\"": \""10%\""}",192752,1,"""Africa""" +2023-11-20,34574,1163,"[\""Charger\"", \""Phone\""]",3221.18,"{\""promo\"": \""11%\""}",126621,1,"""South America""" +2023-08-02,34575,3251,"[\""Headphones\"", \""Phone\""]",4174.53,"{\""loyalty\"": \""11%\""}",34354,1,"""Europe""" +2023-05-16,34576,5613,"[\""Headphones\""]",4881.65,"{\""seasonal\"": \""9%\""}",153776,0,"""South America""" +2023-09-11,34577,2020,"[\""Laptop\""]",600.55,{},18745,0,"""Asia""" +2023-04-19,34578,8501,"[\""Headphones\"", \""Phone\""]",4506.55,"{\""promo\"": \""12%\""}",99006,0,"""Africa""" +2024-09-03,34579,3322,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4116.48,"{\""seasonal\"": \""26%\""}",39753,0,"""South America""" +2023-05-24,34580,3921,"[\""Keyboard\""]",4490.82,{},116766,1,"""South America""" +2024-10-23,34581,865,"[\""Laptop\"", \""Tablet\""]",2823.24,{},41689,0,"""South America""" +2023-07-02,34582,5279,"[\""Monitor\""]",3006.54,{},272708,0,"""Asia""" +2023-02-06,34583,8093,"[\""Monitor\"", \""Keyboard\""]",2850.93,"{\"": \""29%\""}",208030,0,"""North America""" +2023-04-18,34584,8772,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3088.26,"{\""loyalty\"": \""8%\""}",34017,0,"""Europe""" +2024-02-09,34585,481,"[\""Monitor\"", \""Headphones\""]",1009.16,"{\""loyalty\"": \""6%\""}",258020,0,"""Asia""" +2023-11-17,34586,4274,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2761.94,"{\""promo\"": \""11%\""}",211933,1,"""North America""" +2024-12-16,34587,8505,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2820.52,{},249507,0,"""North America""" +2023-08-23,34588,9417,"[\""Monitor\"", \""Laptop\""]",927.5,{},89591,1,"""North America""" +2023-11-25,34589,745,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1448.76,"{\""promo\"": \""20%\""}",163911,0,"""Africa""" +2023-03-22,34590,2551,"[\""Tablet\"", \""Charger\""]",352.49,"{\""loyalty\"": \""9%\""}",278229,1,"""North America""" +2024-03-06,34591,7850,"[\""Keyboard\""]",376.09,{},83692,1,"""South America""" +2024-08-23,34592,1868,"[\""Headphones\"", \""Tablet\""]",1838.33,{},91839,1,"""Africa""" +2024-03-24,34593,4374,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2305.56,"{\""loyalty\"": \""11%\""}",121237,0,"""Asia""" +2024-01-26,34594,2058,"[\""Charger\""]",4128.66,{},39638,0,"""South America""" +2023-10-30,34595,4568,"[\""Tablet\""]",2238.39,"{\""loyalty\"": \""15%\""}",127645,1,"""South America""" +2024-03-14,34596,4380,"[\""Charger\""]",4786.46,{},117717,1,"""North America""" +2023-06-14,34597,7978,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4899.84,"{\""promo\"": \""20%\""}",81949,1,"""Asia""" +2024-02-03,34598,6366,"[\""Headphones\""]",2333.45,{},245915,0,"""North America""" +2024-04-09,34599,8563,"[\""Wireless Mouse\"", \""Charger\""]",1542.85,{},66617,0,"""Europe""" +2024-01-25,34600,1509,"[\""Charger\""]",3114.98,{},296568,1,"""Africa""" +2023-09-06,34601,4471,"[\""Charger\"", \""Headphones\""]",3404.25,{},21666,0,"""South America""" +2024-08-14,34602,7932,"[\""Phone\""]",528.85,{},189607,0,"""Asia""" +2023-03-20,34603,9968,"[\""Tablet\""]",4132.18,"{\""loyalty\"": \""18%\""}",39657,1,"""Asia""" +2024-09-25,34604,4636,"[\""Laptop\""]",2439.43,{},45130,1,"""Asia""" +2024-12-07,34605,2202,"[\""Tablet\"", \""Monitor\""]",931.99,{},208414,1,"""Asia""" +2024-02-19,34606,6075,"[\""Laptop\"", \""Phone\""]",1095.3,{},246964,0,"""Africa""" +2024-12-22,34607,8595,"[\""Charger\"", \""Laptop\""]",4800.22,{},23198,0,"""South America""" +2023-10-16,34608,6605,"[\""Charger\""]",4101.61,"{\""loyalty\"": \""6%\""}",183599,0,"""Asia""" +2024-11-24,34609,2396,"[\""Keyboard\"", \""Tablet\""]",1164.51,{},162692,1,"""Asia""" +2023-12-09,34610,6795,"[\""Headphones\"", \""Laptop\""]",3069.7,{},79758,0,"""North America""" +2023-10-03,34611,5772,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",542.55,"{\""loyalty\"": \""22%\""}",37984,1,"""Africa""" +2024-04-04,34612,2116,"[\""Keyboard\"", \""Laptop\""]",4427.71,"{\""seasonal\"": \""10%\""}",150156,1,"""Africa""" +2024-01-20,34613,7042,"[\""Laptop\""]",550.35,"{\""seasonal\"": \""11%\""}",198383,0,"""South America""" +2024-08-24,34614,8471,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1107.79,{},141239,1,"""Asia""" +2023-07-13,34615,8484,"[\""Tablet\""]",3198.7,"{\""seasonal\"": \""11%\""}",299135,1,"""Asia""" +2023-05-12,34616,6718,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",316.15,{},175632,1,"""North America""" +2023-07-14,34617,9856,"[\""Headphones\"", \""Phone\""]",230.19,{},100540,0,"""South America""" +2024-02-23,34618,1278,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4490.23,"{\""promo\"": \""30%\""}",27580,0,"""Europe""" +2024-01-24,34619,2743,"[\""Laptop\""]",3865.0,"{\""seasonal\"": \""23%\""}",209970,0,"""North America""" +2024-09-10,34620,225,"[\""Tablet\""]",506.76,"{\""seasonal\"": \""11%\""}",153734,0,"""Europe""" +2024-03-28,34621,4159,"[\""Monitor\"", \""Headphones\""]",2383.07,"{\""promo\"": \""14%\""}",91322,0,"""South America""" +2023-10-05,34622,5615,"[\""Charger\"", \""Laptop\""]",2412.06,{},49614,1,"""Africa""" +2023-01-28,34623,8061,"[\""Headphones\"", \""Charger\""]",1494.83,"{\""seasonal\"": \""26%\""}",60770,0,"""North America""" +2024-12-18,34624,1010,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1750.08,"{\""seasonal\"": \""12%\""}",127294,1,"""South America""" +2024-06-08,34625,4049,"[\""Keyboard\""]",2372.64,"{\""loyalty\"": \""5%\""}",155122,1,"""South America""" +2024-11-06,34626,5383,"[\""Keyboard\"", \""Headphones\""]",1298.92,{},163968,0,"""Europe""" +2024-04-10,34627,371,"[\""Phone\""]",4873.58,{},264787,0,"""South America""" +2023-01-22,34628,5912,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2843.09,"{\""loyalty\"": \""18%\""}",97956,0,"""South America""" +2023-03-15,34629,1256,"[\""Laptop\"", \""Tablet\""]",2564.74,{},194623,0,"""North America""" +2024-07-11,34630,1345,"[\""Laptop\"", \""Monitor\""]",1503.65,{},59858,0,"""South America""" +2024-10-05,34631,1140,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4975.72,"{\""loyalty\"": \""22%\""}",104069,1,"""North America""" +2024-01-15,34632,4891,"[\""Laptop\""]",2056.62,{},146998,0,"""Africa""" +2024-10-19,34633,3006,"[\""Keyboard\"", \""Monitor\""]",93.49,{},295453,0,"""Africa""" +2023-12-17,34634,8160,"[\""Phone\""]",2910.8,{},78147,0,"""Asia""" +2023-11-01,34635,8084,"[\""Laptop\"", \""Charger\""]",4718.9,"{\""seasonal\"": \""24%\""}",66794,1,"""Asia""" +2024-12-25,34636,9256,"[\""Monitor\"", \""Charger\""]",3624.82,"{\""promo\"": \""18%\""}",114713,1,"""North America""" +2024-05-23,34637,4469,"[\""Keyboard\""]",1974.38,{},291445,0,"""Africa""" +2023-08-20,34638,7713,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2984.57,"{\""seasonal\"": \""14%\""}",281280,0,"""Africa""" +2023-12-11,34639,2542,"[\""Keyboard\""]",179.05,"{\"": \""10%\""}",78835,1,"""Europe""" +2023-06-14,34640,7467,"[\""Laptop\""]",587.21,"{\""loyalty\"": \""27%\""}",46762,0,"""Africa""" +2023-08-19,34641,7861,"[\""Charger\"", \""Laptop\""]",956.57,{},139309,0,"""South America""" +2023-04-12,34642,7305,"[\""Charger\""]",1044.63,"{\""promo\"": \""12%\""}",242595,1,"""Europe""" +2023-01-09,34643,3154,"[\""Headphones\"", \""Keyboard\""]",539.44,"{\"": \""22%\""}",15331,0,"""South America""" +2024-11-02,34644,9613,"[\""Laptop\"", \""Keyboard\""]",371.67,{},99539,1,"""Asia""" +2023-02-03,34645,4620,"[\""Keyboard\"", \""Charger\""]",849.05,{},67268,1,"""North America""" +2023-02-18,34646,4746,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",999.6,{},188080,1,"""North America""" +2023-06-01,34647,1875,"[\""Phone\"", \""Wireless Mouse\""]",123.64,"{\"": \""10%\""}",275376,1,"""South America""" +2023-01-16,34648,8114,"[\""Wireless Mouse\""]",2774.33,"{\"": \""20%\""}",143857,0,"""Africa""" +2023-03-07,34649,3380,"[\""Charger\"", \""Laptop\""]",446.57,{},206966,0,"""South America""" +2024-10-20,34650,4515,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2779.76,"{\""loyalty\"": \""17%\""}",177744,1,"""North America""" +2023-08-13,34651,9269,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4980.63,"{\"": \""20%\""}",214488,0,"""Europe""" +2023-08-12,34652,6489,"[\""Charger\""]",216.21,"{\""loyalty\"": \""9%\""}",31692,1,"""Europe""" +2024-12-27,34653,7635,"[\""Wireless Mouse\""]",1302.17,"{\""promo\"": \""8%\""}",100263,0,"""Asia""" +2023-08-10,34654,7459,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2233.88,{},137638,0,"""Asia""" +2024-10-07,34655,32,"[\""Phone\"", \""Laptop\""]",2034.53,"{\""promo\"": \""24%\""}",296764,1,"""Europe""" +2023-01-14,34656,9888,"[\""Monitor\"", \""Headphones\""]",4782.85,"{\""promo\"": \""11%\""}",143709,1,"""Asia""" +2023-03-30,34657,914,"[\""Keyboard\""]",2794.98,{},128560,0,"""Asia""" +2024-12-24,34658,4736,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2658.67,"{\""loyalty\"": \""12%\""}",41281,0,"""South America""" +2024-12-22,34659,3912,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1548.07,{},58241,1,"""Africa""" +2024-07-02,34660,3388,"[\""Keyboard\"", \""Headphones\""]",4416.49,"{\"": \""17%\""}",59670,0,"""South America""" +2023-07-05,34661,5957,"[\""Keyboard\""]",3936.58,"{\""seasonal\"": \""24%\""}",251940,1,"""Europe""" +2023-12-01,34662,8868,"[\""Tablet\""]",3893.35,"{\""seasonal\"": \""10%\""}",66512,1,"""Africa""" +2024-06-19,34663,548,"[\""Monitor\""]",331.01,"{\""loyalty\"": \""27%\""}",274450,1,"""Europe""" +2023-09-20,34664,5333,"[\""Laptop\"", \""Phone\""]",2279.88,"{\""loyalty\"": \""18%\""}",65308,1,"""Europe""" +2024-07-31,34665,6009,"[\""Wireless Mouse\"", \""Charger\""]",3738.36,{},100532,1,"""Africa""" +2023-05-06,34666,578,"[\""Wireless Mouse\"", \""Phone\""]",1465.55,{},40270,1,"""Africa""" +2023-06-15,34667,4698,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",198.06,"{\"": \""24%\""}",234014,0,"""Europe""" +2023-07-19,34668,7285,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1264.68,"{\""seasonal\"": \""30%\""}",168724,0,"""Europe""" +2024-07-17,34669,8975,"[\""Phone\"", \""Wireless Mouse\""]",1746.12,"{\""promo\"": \""11%\""}",60493,1,"""Asia""" +2024-03-03,34670,7344,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1787.64,"{\"": \""16%\""}",69777,1,"""South America""" +2024-04-17,34671,5807,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3597.28,"{\""loyalty\"": \""7%\""}",48143,0,"""Asia""" +2023-05-10,34672,7023,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4949.51,{},155809,1,"""Asia""" +2024-11-04,34673,9372,"[\""Laptop\""]",3315.46,{},232822,1,"""Africa""" +2023-12-29,34674,3728,"[\""Wireless Mouse\""]",496.88,{},151835,1,"""North America""" +2024-02-23,34675,7403,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3516.48,"{\""loyalty\"": \""21%\""}",26708,0,"""Africa""" +2023-04-24,34676,2209,"[\""Keyboard\""]",3456.0,{},230889,0,"""Europe""" +2024-10-31,34677,504,"[\""Laptop\"", \""Phone\""]",2103.71,"{\""seasonal\"": \""12%\""}",13250,1,"""Europe""" +2023-10-18,34678,3833,"[\""Tablet\"", \""Headphones\""]",1867.57,{},101860,0,"""North America""" +2024-05-31,34679,2994,"[\""Wireless Mouse\""]",697.1,"{\""promo\"": \""26%\""}",58355,1,"""North America""" +2024-11-09,34680,7133,"[\""Laptop\"", \""Monitor\""]",2034.56,{},104783,1,"""South America""" +2023-06-22,34681,3967,"[\""Charger\"", \""Monitor\""]",954.46,"{\""seasonal\"": \""5%\""}",22745,0,"""Africa""" +2023-06-03,34682,1236,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1775.75,"{\"": \""11%\""}",30204,0,"""Africa""" +2023-09-27,34683,3406,"[\""Wireless Mouse\""]",3944.29,"{\"": \""16%\""}",46149,1,"""Asia""" +2024-10-01,34684,3518,"[\""Tablet\"", \""Charger\""]",773.53,"{\"": \""15%\""}",232840,1,"""North America""" +2024-02-02,34685,5048,"[\""Laptop\""]",4863.46,{},1966,0,"""South America""" +2024-07-18,34686,1497,"[\""Laptop\"", \""Monitor\""]",3029.03,{},268466,0,"""Africa""" +2023-08-16,34687,5033,"[\""Monitor\"", \""Tablet\""]",1735.21,"{\""seasonal\"": \""19%\""}",224269,0,"""North America""" +2024-11-10,34688,7402,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2935.1,{},282458,0,"""North America""" +2023-04-29,34689,2956,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4399.45,"{\"": \""12%\""}",148142,1,"""Asia""" +2023-07-01,34690,8636,"[\""Keyboard\"", \""Headphones\""]",2222.24,{},79961,1,"""Africa""" +2023-05-23,34691,2151,"[\""Phone\"", \""Headphones\""]",4203.19,{},137613,0,"""Asia""" +2023-01-13,34692,4411,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2628.26,"{\""promo\"": \""26%\""}",272932,0,"""South America""" +2023-11-12,34693,4522,"[\""Headphones\"", \""Phone\""]",910.67,"{\""promo\"": \""7%\""}",11502,1,"""North America""" +2023-03-28,34694,7176,"[\""Tablet\"", \""Wireless Mouse\""]",1835.5,{},75677,1,"""Africa""" +2023-01-12,34695,4679,"[\""Laptop\""]",4662.34,"{\""seasonal\"": \""10%\""}",222465,0,"""Africa""" +2023-06-25,34696,3078,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3701.07,"{\""loyalty\"": \""19%\""}",210643,0,"""Europe""" +2024-03-25,34697,6763,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2892.45,{},15659,1,"""Asia""" +2024-06-25,34698,2366,"[\""Headphones\""]",2253.29,"{\""seasonal\"": \""25%\""}",25244,0,"""South America""" +2023-02-15,34699,7571,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2274.24,{},172151,1,"""Africa""" +2024-12-31,34700,3244,"[\""Phone\"", \""Monitor\""]",4766.3,"{\"": \""6%\""}",128844,0,"""Asia""" +2023-11-10,34701,9584,"[\""Keyboard\""]",852.93,"{\""loyalty\"": \""16%\""}",263760,1,"""South America""" +2024-07-06,34702,1969,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3049.01,{},253822,1,"""Africa""" +2023-10-27,34703,9761,"[\""Phone\"", \""Charger\""]",4557.32,{},108337,0,"""Africa""" +2023-10-24,34704,3491,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",798.64,{},26166,0,"""North America""" +2023-05-02,34705,273,"[\""Tablet\""]",587.83,"{\""loyalty\"": \""5%\""}",195527,0,"""North America""" +2023-05-21,34706,7881,"[\""Headphones\"", \""Keyboard\""]",2249.78,{},189820,1,"""North America""" +2024-09-01,34707,9355,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3759.2,"{\""loyalty\"": \""12%\""}",43595,1,"""North America""" +2023-01-16,34708,4387,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3304.23,"{\""loyalty\"": \""21%\""}",44146,0,"""Europe""" +2023-12-07,34709,1746,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1253.66,{},260306,0,"""Asia""" +2023-03-06,34710,2286,"[\""Tablet\""]",1780.58,{},69544,1,"""Asia""" +2023-02-04,34711,4801,"[\""Keyboard\""]",842.81,"{\""seasonal\"": \""25%\""}",108835,1,"""South America""" +2023-01-10,34712,4778,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4505.39,{},136439,0,"""Europe""" +2023-08-24,34713,3422,"[\""Wireless Mouse\"", \""Laptop\""]",1458.96,"{\""seasonal\"": \""15%\""}",43919,1,"""Africa""" +2024-06-04,34714,9400,"[\""Keyboard\""]",394.34,{},1406,0,"""Asia""" +2024-02-03,34715,634,"[\""Keyboard\"", \""Monitor\""]",3994.24,{},25473,0,"""Africa""" +2024-01-27,34716,6422,"[\""Phone\"", \""Keyboard\""]",466.5,"{\""promo\"": \""30%\""}",80308,0,"""South America""" +2023-02-15,34717,9999,"[\""Headphones\""]",3342.34,{},180448,1,"""Africa""" +2023-03-24,34718,5030,"[\""Wireless Mouse\"", \""Phone\""]",1424.62,"{\"": \""22%\""}",154066,1,"""North America""" +2024-05-12,34719,8354,"[\""Monitor\"", \""Laptop\""]",2245.76,{},43028,1,"""South America""" +2023-12-18,34720,8792,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4770.47,{},81464,1,"""Asia""" +2024-04-21,34721,2090,"[\""Headphones\"", \""Monitor\""]",4005.66,"{\""seasonal\"": \""16%\""}",239279,0,"""Africa""" +2024-04-11,34722,2473,"[\""Charger\"", \""Keyboard\""]",1269.21,"{\""promo\"": \""8%\""}",41363,1,"""North America""" +2023-07-28,34723,2787,"[\""Headphones\"", \""Monitor\""]",1875.85,{},20853,1,"""Europe""" +2024-12-21,34724,7565,"[\""Charger\""]",745.98,"{\""seasonal\"": \""28%\""}",106784,0,"""South America""" +2023-01-17,34725,675,"[\""Phone\""]",4434.47,{},25387,0,"""South America""" +2023-03-15,34726,970,"[\""Laptop\"", \""Headphones\""]",4170.05,{},81675,0,"""South America""" +2023-12-01,34727,94,"[\""Phone\""]",2034.64,"{\""seasonal\"": \""13%\""}",102047,0,"""North America""" +2023-09-24,34728,2874,"[\""Monitor\"", \""Phone\""]",618.44,{},204337,1,"""Africa""" +2023-08-21,34729,7618,"[\""Monitor\"", \""Wireless Mouse\""]",829.3,"{\"": \""29%\""}",225106,1,"""South America""" +2023-04-22,34730,3998,"[\""Tablet\""]",4376.09,{},106325,1,"""North America""" +2023-07-15,34731,8607,"[\""Keyboard\"", \""Phone\""]",2202.31,"{\"": \""30%\""}",79366,1,"""North America""" +2024-09-24,34732,32,"[\""Phone\"", \""Tablet\""]",1002.79,"{\""promo\"": \""17%\""}",11701,0,"""South America""" +2024-06-11,34733,8346,"[\""Monitor\""]",4958.97,"{\""seasonal\"": \""19%\""}",298980,0,"""Africa""" +2024-06-05,34734,8905,"[\""Headphones\"", \""Charger\"", \""Phone\""]",696.21,"{\""loyalty\"": \""13%\""}",298616,1,"""North America""" +2023-02-09,34735,6611,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1792.2,{},53308,0,"""Asia""" +2023-07-09,34736,8820,"[\""Wireless Mouse\"", \""Phone\""]",1113.37,"{\""promo\"": \""16%\""}",13163,0,"""North America""" +2023-02-05,34737,2866,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",889.05,"{\""promo\"": \""18%\""}",225224,1,"""North America""" +2024-07-11,34738,4687,"[\""Monitor\""]",4694.79,{},271853,0,"""South America""" +2023-09-23,34739,8298,"[\""Keyboard\""]",4128.93,"{\"": \""8%\""}",274199,0,"""Asia""" +2024-01-30,34740,7785,"[\""Wireless Mouse\""]",3350.32,"{\""loyalty\"": \""20%\""}",117045,1,"""Africa""" +2024-02-26,34741,4697,"[\""Tablet\""]",4196.5,"{\""loyalty\"": \""24%\""}",85002,0,"""North America""" +2024-01-06,34742,3968,"[\""Tablet\""]",3072.82,"{\"": \""30%\""}",20535,0,"""Africa""" +2023-01-04,34743,6803,"[\""Laptop\"", \""Phone\""]",4244.47,{},101467,0,"""Europe""" +2024-07-07,34744,9027,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",298.36,"{\"": \""20%\""}",223738,1,"""Europe""" +2024-02-16,34745,8461,"[\""Wireless Mouse\"", \""Charger\""]",751.83,{},291064,0,"""South America""" +2024-06-10,34746,4190,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1017.03,{},228770,0,"""Asia""" +2024-10-18,34747,2659,"[\""Phone\"", \""Tablet\""]",633.47,{},244664,0,"""Asia""" +2024-07-28,34748,5051,"[\""Phone\""]",3758.42,{},36988,1,"""North America""" +2024-08-09,34749,6363,"[\""Tablet\""]",2421.93,{},122009,0,"""North America""" +2023-07-16,34750,5514,"[\""Phone\""]",3837.39,"{\""loyalty\"": \""21%\""}",259540,0,"""North America""" +2023-02-08,34751,217,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",823.27,"{\"": \""22%\""}",100477,0,"""North America""" +2023-05-09,34752,9888,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1396.85,{},251176,1,"""Europe""" +2023-07-25,34753,9366,"[\""Phone\""]",604.98,"{\"": \""19%\""}",24601,0,"""South America""" +2024-12-21,34754,9788,"[\""Keyboard\"", \""Headphones\""]",3655.92,"{\""loyalty\"": \""7%\""}",114841,1,"""North America""" +2023-12-10,34755,3056,"[\""Phone\""]",2116.87,"{\""loyalty\"": \""23%\""}",114571,1,"""Asia""" +2023-08-10,34756,6706,"[\""Tablet\"", \""Wireless Mouse\""]",1690.21,"{\""seasonal\"": \""7%\""}",219362,0,"""Europe""" +2023-07-21,34757,8218,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2224.8,{},125944,1,"""North America""" +2024-05-13,34758,2897,"[\""Wireless Mouse\""]",364.05,{},105549,1,"""Europe""" +2024-05-22,34759,922,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1527.22,"{\"": \""24%\""}",164159,1,"""Asia""" +2023-03-28,34760,2615,"[\""Charger\""]",1761.37,"{\""loyalty\"": \""27%\""}",270197,1,"""Africa""" +2024-12-31,34761,1865,"[\""Phone\""]",2947.7,"{\""promo\"": \""24%\""}",55990,0,"""Africa""" +2023-05-06,34762,7562,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3504.39,"{\""promo\"": \""10%\""}",238480,0,"""Europe""" +2024-09-21,34763,8706,"[\""Phone\""]",3607.11,"{\""loyalty\"": \""30%\""}",53741,1,"""Africa""" +2023-02-13,34764,7750,"[\""Monitor\""]",1616.56,{},17984,1,"""Asia""" +2024-01-11,34765,3947,"[\""Monitor\"", \""Keyboard\""]",3049.49,{},197635,0,"""Europe""" +2023-08-29,34766,8652,"[\""Keyboard\""]",3098.18,{},276668,1,"""Africa""" +2024-05-12,34767,2484,"[\""Keyboard\""]",1712.53,{},199964,0,"""Europe""" +2023-10-24,34768,4651,"[\""Wireless Mouse\"", \""Phone\""]",465.3,{},98452,1,"""Africa""" +2023-11-21,34769,3021,"[\""Monitor\"", \""Laptop\""]",71.39,"{\"": \""16%\""}",242544,0,"""Europe""" +2023-05-19,34770,1822,"[\""Laptop\""]",4247.82,{},118581,1,"""Europe""" +2023-01-09,34771,931,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4938.78,{},248408,0,"""Asia""" +2024-07-31,34772,7097,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2251.96,"{\""promo\"": \""8%\""}",271775,1,"""North America""" +2023-08-15,34773,9866,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1140.55,"{\""promo\"": \""27%\""}",7611,0,"""Europe""" +2024-06-21,34774,3500,"[\""Tablet\"", \""Phone\""]",466.71,"{\"": \""10%\""}",224698,0,"""South America""" +2024-02-29,34775,3065,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2716.09,{},228343,0,"""Africa""" +2023-09-03,34776,9036,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4196.66,"{\"": \""23%\""}",21564,0,"""Europe""" +2023-01-14,34777,5760,"[\""Wireless Mouse\""]",4167.65,{},103718,1,"""Asia""" +2023-08-17,34778,3542,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3869.45,{},163574,0,"""North America""" +2024-05-19,34779,2631,"[\""Charger\"", \""Monitor\""]",1942.78,"{\"": \""26%\""}",17862,0,"""South America""" +2023-06-06,34780,3877,"[\""Keyboard\""]",2223.44,{},6735,0,"""Asia""" +2023-08-04,34781,644,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3239.88,{},157949,0,"""Europe""" +2023-02-01,34782,7573,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1411.18,"{\""promo\"": \""6%\""}",173072,1,"""Asia""" +2023-03-14,34783,1496,"[\""Wireless Mouse\"", \""Laptop\""]",4222.79,"{\""promo\"": \""26%\""}",180566,1,"""Asia""" +2024-07-27,34784,606,"[\""Laptop\"", \""Charger\""]",3375.83,{},115102,1,"""Africa""" +2024-05-21,34785,6120,"[\""Laptop\"", \""Monitor\""]",3848.96,{},183118,0,"""Europe""" +2024-06-12,34786,6206,"[\""Laptop\""]",1429.74,"{\"": \""22%\""}",47982,0,"""Asia""" +2024-10-10,34787,7118,"[\""Charger\"", \""Keyboard\""]",1481.94,"{\"": \""9%\""}",205260,1,"""North America""" +2024-10-27,34788,3432,"[\""Tablet\""]",2156.81,"{\""seasonal\"": \""22%\""}",148745,0,"""Europe""" +2024-06-19,34789,6505,"[\""Headphones\""]",4855.56,"{\""loyalty\"": \""25%\""}",1156,1,"""Africa""" +2023-11-22,34790,6665,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1411.24,{},49171,1,"""South America""" +2024-04-06,34791,3224,"[\""Laptop\""]",177.85,{},85906,1,"""Europe""" +2024-08-24,34792,8432,"[\""Tablet\"", \""Charger\""]",795.19,"{\""loyalty\"": \""21%\""}",168885,0,"""Europe""" +2023-08-27,34793,595,"[\""Monitor\"", \""Wireless Mouse\""]",4348.8,{},112157,0,"""Asia""" +2023-04-10,34794,9672,"[\""Charger\""]",1974.78,"{\"": \""23%\""}",201150,1,"""Africa""" +2024-04-02,34795,905,"[\""Phone\"", \""Keyboard\""]",2621.79,"{\"": \""28%\""}",295812,1,"""Europe""" +2023-06-19,34796,4338,"[\""Monitor\"", \""Keyboard\""]",1138.78,{},19914,1,"""North America""" +2024-04-24,34797,914,"[\""Headphones\"", \""Tablet\""]",2963.96,"{\""promo\"": \""13%\""}",87100,0,"""South America""" +2023-03-04,34798,2379,"[\""Charger\""]",1687.83,"{\"": \""13%\""}",45390,0,"""Africa""" +2023-05-29,34799,7437,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1222.53,{},259524,1,"""Asia""" +2023-10-03,34800,6148,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3025.2,{},245803,0,"""South America""" +2023-06-05,34801,8195,"[\""Charger\"", \""Headphones\""]",1527.71,"{\""promo\"": \""28%\""}",242074,1,"""Europe""" +2023-07-28,34802,2084,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3361.77,"{\"": \""20%\""}",239380,0,"""North America""" +2024-11-10,34803,2782,"[\""Charger\"", \""Headphones\""]",343.68,"{\"": \""28%\""}",243968,1,"""South America""" +2023-12-07,34804,147,"[\""Laptop\"", \""Tablet\""]",3641.64,"{\"": \""22%\""}",158739,0,"""Europe""" +2023-06-19,34805,1186,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4786.05,"{\""promo\"": \""26%\""}",232923,0,"""North America""" +2024-09-17,34806,4479,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1839.35,"{\""promo\"": \""24%\""}",18556,0,"""Africa""" +2023-02-26,34807,9903,"[\""Tablet\"", \""Keyboard\""]",4646.53,"{\""seasonal\"": \""29%\""}",250483,0,"""North America""" +2023-05-08,34808,7231,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1443.45,{},9267,1,"""Africa""" +2024-02-23,34809,549,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3843.39,"{\""promo\"": \""13%\""}",98624,1,"""Africa""" +2023-12-04,34810,1424,"[\""Phone\"", \""Headphones\""]",1776.43,"{\"": \""21%\""}",181283,1,"""Asia""" +2023-12-17,34811,3421,"[\""Keyboard\""]",771.31,"{\""promo\"": \""20%\""}",100785,0,"""South America""" +2024-12-17,34812,7622,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2627.3,"{\"": \""9%\""}",132798,0,"""North America""" +2023-01-08,34813,5959,"[\""Keyboard\"", \""Tablet\""]",2885.72,"{\"": \""28%\""}",256075,1,"""South America""" +2023-04-20,34814,2003,"[\""Phone\"", \""Tablet\""]",3384.44,"{\""promo\"": \""14%\""}",7365,0,"""Asia""" +2023-07-30,34815,1615,"[\""Charger\""]",990.45,{},8388,1,"""Africa""" +2024-09-13,34816,3955,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1772.15,"{\""seasonal\"": \""29%\""}",128789,1,"""North America""" +2024-11-02,34817,4093,"[\""Wireless Mouse\"", \""Laptop\""]",3200.15,"{\""promo\"": \""15%\""}",7458,1,"""Africa""" +2024-04-02,34818,4747,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1130.3,"{\""promo\"": \""12%\""}",90389,0,"""North America""" +2023-08-27,34819,8346,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3070.58,"{\"": \""18%\""}",33410,1,"""North America""" +2023-01-04,34820,5199,"[\""Charger\""]",4968.58,{},230174,0,"""North America""" +2023-01-05,34821,5796,"[\""Wireless Mouse\"", \""Charger\""]",3715.75,{},152395,0,"""Europe""" +2023-07-14,34822,5589,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2210.15,{},199152,1,"""North America""" +2024-01-24,34823,6165,"[\""Keyboard\""]",4402.02,"{\""seasonal\"": \""22%\""}",55534,0,"""North America""" +2024-11-03,34824,4282,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3099.32,{},1313,0,"""Africa""" +2023-07-22,34825,4345,"[\""Headphones\"", \""Wireless Mouse\""]",2483.91,{},87409,1,"""North America""" +2023-08-05,34826,7263,"[\""Headphones\"", \""Laptop\""]",58.94,{},275843,1,"""Europe""" +2023-10-13,34827,2416,"[\""Keyboard\"", \""Phone\""]",2564.87,"{\""promo\"": \""22%\""}",39280,0,"""South America""" +2023-06-12,34828,5575,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4202.49,{},253857,1,"""Europe""" +2023-11-08,34829,8900,"[\""Tablet\""]",4220.7,{},130891,1,"""North America""" +2023-05-10,34830,1923,"[\""Tablet\"", \""Charger\""]",396.38,"{\""seasonal\"": \""8%\""}",92475,1,"""South America""" +2023-04-11,34831,9207,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",486.36,{},169368,1,"""Africa""" +2024-07-19,34832,4774,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",178.37,{},40847,0,"""Europe""" +2023-01-20,34833,4727,"[\""Charger\"", \""Monitor\""]",3889.88,{},194766,1,"""Asia""" +2024-07-12,34834,2624,"[\""Headphones\"", \""Tablet\""]",1386.19,"{\""loyalty\"": \""28%\""}",218334,1,"""Europe""" +2024-09-18,34835,2649,"[\""Keyboard\"", \""Tablet\""]",3244.57,"{\""loyalty\"": \""25%\""}",200470,0,"""Africa""" +2023-04-15,34836,132,"[\""Keyboard\"", \""Monitor\""]",3291.6,"{\"": \""25%\""}",63362,0,"""Asia""" +2023-11-01,34837,5988,"[\""Charger\"", \""Headphones\""]",1562.53,"{\"": \""29%\""}",54420,0,"""South America""" +2024-10-09,34838,5643,"[\""Keyboard\"", \""Wireless Mouse\""]",2022.08,"{\""promo\"": \""6%\""}",167434,0,"""South America""" +2024-10-15,34839,9280,"[\""Monitor\"", \""Wireless Mouse\""]",4396.29,{},253434,1,"""Europe""" +2024-08-20,34840,5646,"[\""Keyboard\"", \""Monitor\""]",4564.26,{},288976,0,"""Asia""" +2023-02-18,34841,8573,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3281.28,{},209230,0,"""South America""" +2023-03-21,34842,7404,"[\""Phone\"", \""Keyboard\""]",607.02,"{\""seasonal\"": \""14%\""}",46844,0,"""Africa""" +2024-08-22,34843,998,"[\""Wireless Mouse\"", \""Charger\""]",3365.34,"{\""promo\"": \""15%\""}",202997,1,"""Africa""" +2023-11-07,34844,4015,"[\""Keyboard\"", \""Headphones\""]",3568.66,"{\""promo\"": \""9%\""}",175985,1,"""South America""" +2024-12-23,34845,2904,"[\""Phone\""]",417.86,{},129010,1,"""Europe""" +2023-05-03,34846,9898,"[\""Keyboard\""]",1281.94,"{\"": \""18%\""}",10117,0,"""South America""" +2024-07-29,34847,8180,"[\""Tablet\""]",3020.57,{},231811,1,"""Europe""" +2023-12-16,34848,7664,"[\""Charger\""]",4855.53,"{\""seasonal\"": \""26%\""}",250524,0,"""Africa""" +2024-01-17,34849,6698,"[\""Monitor\""]",2941.66,"{\""loyalty\"": \""21%\""}",295676,0,"""Europe""" +2023-08-30,34850,6523,"[\""Charger\"", \""Wireless Mouse\""]",2538.88,{},232606,0,"""Asia""" +2024-09-18,34851,6746,"[\""Phone\"", \""Tablet\""]",937.05,{},236151,0,"""Asia""" +2023-09-21,34852,2317,"[\""Phone\"", \""Wireless Mouse\""]",3546.43,"{\"": \""16%\""}",62008,0,"""Asia""" +2024-05-21,34853,4664,"[\""Keyboard\"", \""Wireless Mouse\""]",4915.17,"{\""seasonal\"": \""6%\""}",70000,0,"""Asia""" +2023-08-14,34854,468,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3557.41,{},58758,0,"""South America""" +2023-03-21,34855,1357,"[\""Phone\""]",3916.3,"{\""promo\"": \""5%\""}",289683,1,"""South America""" +2023-04-07,34856,4900,"[\""Phone\"", \""Monitor\""]",1324.72,{},94992,1,"""Africa""" +2024-01-27,34857,6437,"[\""Laptop\"", \""Headphones\""]",3058.42,{},56917,1,"""Asia""" +2024-08-05,34858,2507,"[\""Headphones\""]",3779.43,{},197298,0,"""Africa""" +2023-11-30,34859,2926,"[\""Headphones\"", \""Tablet\""]",4198.33,"{\""loyalty\"": \""6%\""}",48842,1,"""North America""" +2024-04-08,34860,4077,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4999.62,"{\""loyalty\"": \""23%\""}",136253,1,"""Europe""" +2023-12-22,34861,4752,"[\""Charger\"", \""Phone\""]",3867.16,"{\""loyalty\"": \""13%\""}",182076,0,"""South America""" +2024-07-25,34862,8557,"[\""Monitor\""]",1060.23,{},249323,0,"""Africa""" +2023-08-01,34863,3045,"[\""Headphones\"", \""Charger\""]",2687.98,{},244877,0,"""Africa""" +2024-01-23,34864,7162,"[\""Keyboard\"", \""Charger\""]",1041.17,{},42284,0,"""Asia""" +2023-02-28,34865,6698,"[\""Monitor\""]",1570.51,"{\"": \""12%\""}",121842,1,"""Africa""" +2024-05-29,34866,2486,"[\""Keyboard\"", \""Monitor\""]",1663.74,"{\""seasonal\"": \""19%\""}",263809,1,"""South America""" +2023-01-01,34867,1997,"[\""Tablet\""]",1636.0,"{\"": \""5%\""}",250193,0,"""Asia""" +2023-06-30,34868,1077,"[\""Keyboard\"", \""Tablet\""]",4654.64,{},43269,1,"""Europe""" +2023-09-10,34869,4123,"[\""Charger\""]",3604.45,{},96055,0,"""South America""" +2023-08-17,34870,7016,"[\""Phone\"", \""Charger\""]",3220.79,{},188326,1,"""North America""" +2023-12-11,34871,2143,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4634.26,"{\""promo\"": \""25%\""}",168675,0,"""Asia""" +2023-06-11,34872,276,"[\""Headphones\"", \""Phone\"", \""Charger\""]",539.05,{},227562,0,"""Africa""" +2023-12-15,34873,7330,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4342.15,{},176517,1,"""Asia""" +2023-04-03,34874,3614,"[\""Headphones\"", \""Keyboard\""]",571.14,"{\"": \""20%\""}",19585,0,"""Europe""" +2024-02-23,34875,5597,"[\""Keyboard\"", \""Headphones\""]",2939.29,"{\""loyalty\"": \""8%\""}",51929,1,"""North America""" +2024-05-26,34876,8128,"[\""Keyboard\""]",2585.16,{},222488,1,"""Europe""" +2024-02-11,34877,5959,"[\""Laptop\"", \""Charger\""]",3014.0,{},235235,0,"""Africa""" +2023-06-19,34878,7945,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4634.09,"{\""loyalty\"": \""16%\""}",142324,0,"""Europe""" +2023-01-22,34879,2258,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",254.36,{},93919,0,"""Asia""" +2023-03-16,34880,1758,"[\""Headphones\"", \""Charger\""]",865.61,"{\""loyalty\"": \""23%\""}",210621,0,"""Asia""" +2023-04-10,34881,4647,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4603.08,{},154066,0,"""South America""" +2023-08-15,34882,7604,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4847.69,{},98938,1,"""Europe""" +2024-03-02,34883,6673,"[\""Tablet\""]",1580.66,{},46850,1,"""Africa""" +2023-10-15,34884,5615,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1740.89,{},53907,0,"""Europe""" +2024-10-04,34885,4588,"[\""Wireless Mouse\""]",690.31,{},255611,1,"""Asia""" +2023-01-27,34886,7572,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4665.1,"{\""promo\"": \""30%\""}",223201,1,"""North America""" +2024-09-25,34887,8997,"[\""Keyboard\""]",393.91,"{\""loyalty\"": \""25%\""}",13900,0,"""South America""" +2024-12-08,34888,364,"[\""Monitor\""]",3532.96,"{\""promo\"": \""25%\""}",225506,0,"""South America""" +2023-10-28,34889,6216,"[\""Phone\"", \""Wireless Mouse\""]",4992.96,{},228563,1,"""Asia""" +2024-01-23,34890,1627,"[\""Charger\""]",1447.56,{},103533,1,"""Africa""" +2023-11-08,34891,6170,"[\""Phone\""]",380.67,{},136308,1,"""Europe""" +2024-06-26,34892,2237,"[\""Phone\""]",2524.77,"{\""loyalty\"": \""23%\""}",143410,1,"""Africa""" +2023-03-01,34893,224,"[\""Keyboard\"", \""Tablet\""]",1649.03,"{\""loyalty\"": \""13%\""}",146445,0,"""Africa""" +2023-01-31,34894,9230,"[\""Laptop\"", \""Headphones\""]",3700.27,"{\""loyalty\"": \""8%\""}",86784,1,"""South America""" +2023-12-25,34895,3728,"[\""Monitor\"", \""Keyboard\""]",3290.92,{},198935,1,"""Asia""" +2023-12-24,34896,7395,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2610.44,"{\""loyalty\"": \""23%\""}",198032,0,"""Africa""" +2023-07-02,34897,9225,"[\""Wireless Mouse\"", \""Charger\""]",3750.17,{},7267,1,"""Asia""" +2023-01-16,34898,410,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3490.74,"{\""loyalty\"": \""19%\""}",76277,0,"""Africa""" +2024-03-12,34899,1281,"[\""Phone\"", \""Tablet\""]",3004.91,"{\""loyalty\"": \""25%\""}",255574,0,"""Europe""" +2023-01-18,34900,7609,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",873.74,{},78971,0,"""South America""" +2023-08-05,34901,1868,"[\""Keyboard\""]",1501.32,"{\"": \""15%\""}",44466,1,"""Asia""" +2024-09-24,34902,5883,"[\""Tablet\""]",2669.59,"{\""promo\"": \""28%\""}",76653,0,"""North America""" +2023-09-18,34903,8477,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",510.38,"{\""promo\"": \""9%\""}",260397,0,"""Asia""" +2024-09-21,34904,8300,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",881.2,{},291189,1,"""Africa""" +2024-11-22,34905,675,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4984.55,"{\"": \""9%\""}",287253,1,"""Africa""" +2023-08-23,34906,9258,"[\""Monitor\""]",4794.41,"{\""promo\"": \""24%\""}",140420,1,"""Africa""" +2024-06-04,34907,5704,"[\""Wireless Mouse\"", \""Charger\""]",3684.63,"{\"": \""17%\""}",276573,0,"""Asia""" +2024-03-20,34908,9794,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1166.54,"{\""seasonal\"": \""12%\""}",284877,1,"""Europe""" +2023-11-07,34909,7604,"[\""Laptop\"", \""Phone\""]",212.36,{},1228,1,"""Europe""" +2023-12-16,34910,9744,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1288.53,{},269180,0,"""Asia""" +2023-06-14,34911,4648,"[\""Monitor\""]",3550.3,"{\""promo\"": \""19%\""}",53098,0,"""Europe""" +2024-06-05,34912,7039,"[\""Wireless Mouse\""]",1528.14,"{\""loyalty\"": \""26%\""}",234789,1,"""Europe""" +2023-06-12,34913,1214,"[\""Laptop\""]",3997.22,"{\""loyalty\"": \""20%\""}",65713,0,"""North America""" +2023-01-06,34914,5578,"[\""Laptop\"", \""Tablet\""]",4181.63,"{\""promo\"": \""12%\""}",152915,0,"""North America""" +2024-12-22,34915,2913,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3950.75,"{\""loyalty\"": \""22%\""}",294888,1,"""Africa""" +2024-01-19,34916,6161,"[\""Keyboard\"", \""Tablet\""]",2769.03,{},62513,0,"""Asia""" +2023-08-23,34917,5541,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3109.8,"{\""seasonal\"": \""9%\""}",182913,0,"""Asia""" +2023-03-17,34918,8691,"[\""Monitor\""]",4490.49,{},288757,0,"""Europe""" +2023-11-13,34919,3697,"[\""Tablet\""]",4939.4,"{\""promo\"": \""6%\""}",246048,1,"""Asia""" +2023-12-31,34920,8701,"[\""Phone\""]",669.51,{},123592,0,"""Africa""" +2023-09-24,34921,975,"[\""Headphones\"", \""Keyboard\""]",467.45,{},233210,0,"""South America""" +2024-01-01,34922,5253,"[\""Monitor\""]",1723.31,{},140091,0,"""South America""" +2024-10-10,34923,7980,"[\""Monitor\"", \""Keyboard\""]",269.56,"{\""seasonal\"": \""9%\""}",159656,0,"""Africa""" +2023-01-14,34924,8337,"[\""Charger\""]",4502.74,{},21219,1,"""South America""" +2023-09-24,34925,9765,"[\""Keyboard\""]",1454.34,"{\""promo\"": \""10%\""}",299039,1,"""Asia""" +2024-06-17,34926,1459,"[\""Headphones\"", \""Laptop\""]",2262.66,{},4747,1,"""North America""" +2023-10-31,34927,8252,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3120.62,{},200057,0,"""Asia""" +2023-01-26,34928,1529,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3162.09,"{\""loyalty\"": \""29%\""}",240935,1,"""Europe""" +2023-02-18,34929,6287,"[\""Tablet\"", \""Keyboard\""]",2416.02,"{\""promo\"": \""9%\""}",176394,0,"""South America""" +2024-04-07,34930,5271,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2394.21,{},57975,1,"""Asia""" +2024-09-20,34931,1351,"[\""Wireless Mouse\"", \""Monitor\""]",2633.57,"{\""promo\"": \""30%\""}",166218,0,"""Asia""" +2024-06-04,34932,6907,"[\""Wireless Mouse\""]",705.62,{},116183,0,"""Africa""" +2023-10-01,34933,5982,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2803.61,{},286804,0,"""Europe""" +2023-06-28,34934,8985,"[\""Charger\""]",2049.86,{},109024,1,"""Asia""" +2023-07-16,34935,1162,"[\""Headphones\"", \""Wireless Mouse\""]",3843.85,"{\""seasonal\"": \""18%\""}",150211,1,"""Asia""" +2023-04-16,34936,7688,"[\""Headphones\"", \""Tablet\""]",4686.96,{},117051,0,"""South America""" +2023-08-29,34937,4624,"[\""Laptop\"", \""Wireless Mouse\""]",1277.51,"{\""loyalty\"": \""30%\""}",170238,1,"""North America""" +2023-02-23,34938,6362,"[\""Headphones\"", \""Charger\""]",1634.46,{},246665,0,"""Europe""" +2024-09-26,34939,7210,"[\""Wireless Mouse\"", \""Phone\""]",445.63,"{\"": \""12%\""}",134905,1,"""South America""" +2023-08-16,34940,5985,"[\""Phone\"", \""Tablet\""]",1990.63,"{\""seasonal\"": \""13%\""}",234467,0,"""South America""" +2023-08-16,34941,5138,"[\""Monitor\""]",3418.62,{},227869,1,"""Europe""" +2024-06-16,34942,8807,"[\""Laptop\""]",3187.91,{},265135,1,"""North America""" +2024-11-10,34943,1846,"[\""Tablet\""]",1633.29,{},187599,1,"""Asia""" +2023-12-10,34944,3289,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2608.97,{},37818,1,"""Africa""" +2023-11-01,34945,205,"[\""Headphones\"", \""Monitor\""]",2490.71,{},185097,1,"""Africa""" +2024-11-29,34946,3344,"[\""Headphones\""]",2354.64,"{\""loyalty\"": \""5%\""}",19440,0,"""Africa""" +2023-06-25,34947,1639,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3929.1,{},107916,1,"""Asia""" +2023-08-31,34948,5457,"[\""Phone\"", \""Charger\""]",2584.49,{},85779,0,"""North America""" +2024-06-18,34949,4117,"[\""Headphones\"", \""Tablet\""]",1496.52,"{\""seasonal\"": \""23%\""}",3450,1,"""Africa""" +2023-09-27,34950,3558,"[\""Wireless Mouse\"", \""Keyboard\""]",1331.74,{},169788,0,"""Europe""" +2024-01-05,34951,5506,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3676.03,{},65487,0,"""North America""" +2023-03-03,34952,8284,"[\""Phone\""]",4823.25,{},129812,1,"""Asia""" +2023-10-03,34953,3306,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2590.08,"{\""promo\"": \""15%\""}",31661,1,"""North America""" +2023-02-04,34954,7602,"[\""Monitor\""]",1480.91,"{\""seasonal\"": \""25%\""}",160507,1,"""Asia""" +2023-01-04,34955,6377,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3052.23,"{\"": \""27%\""}",43525,1,"""Africa""" +2024-01-26,34956,4262,"[\""Headphones\""]",2036.81,{},149547,1,"""South America""" +2023-08-06,34957,3893,"[\""Charger\""]",626.63,"{\"": \""7%\""}",33274,1,"""North America""" +2023-10-24,34958,8692,"[\""Headphones\""]",1648.64,{},183201,0,"""South America""" +2023-01-08,34959,63,"[\""Tablet\"", \""Headphones\""]",1803.3,"{\""seasonal\"": \""20%\""}",281743,1,"""Africa""" +2024-10-24,34960,6241,"[\""Phone\""]",4910.23,{},148328,0,"""Asia""" +2024-11-20,34961,8317,"[\""Wireless Mouse\"", \""Keyboard\""]",554.0,{},37314,0,"""South America""" +2023-04-21,34962,534,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1133.72,"{\""seasonal\"": \""19%\""}",30817,1,"""North America""" +2023-04-18,34963,7934,"[\""Charger\"", \""Tablet\""]",3899.85,{},151720,0,"""Asia""" +2023-04-03,34964,8744,"[\""Laptop\"", \""Charger\""]",2533.47,"{\""seasonal\"": \""6%\""}",85009,0,"""North America""" +2024-06-14,34965,4203,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3585.61,"{\""loyalty\"": \""9%\""}",254693,1,"""North America""" +2024-02-16,34966,8631,"[\""Headphones\"", \""Charger\""]",3828.37,{},139410,1,"""Asia""" +2024-03-07,34967,9513,"[\""Tablet\"", \""Phone\""]",1174.4,"{\"": \""29%\""}",286480,0,"""Europe""" +2024-02-07,34968,7009,"[\""Laptop\"", \""Keyboard\""]",4921.01,"{\"": \""29%\""}",10969,1,"""North America""" +2024-02-25,34969,7816,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1919.83,"{\""seasonal\"": \""7%\""}",10947,1,"""Africa""" +2024-06-18,34970,3447,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4261.13,"{\""seasonal\"": \""5%\""}",287557,0,"""Europe""" +2024-10-16,34971,6430,"[\""Charger\""]",3945.72,{},192836,1,"""Asia""" +2024-03-10,34972,657,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1765.01,{},161375,1,"""North America""" +2024-03-12,34973,6379,"[\""Wireless Mouse\"", \""Charger\""]",3760.61,{},235308,0,"""South America""" +2024-04-19,34974,7189,"[\""Phone\"", \""Charger\""]",684.41,"{\""promo\"": \""25%\""}",149300,1,"""Europe""" +2023-06-20,34975,3440,"[\""Tablet\""]",2151.93,"{\"": \""27%\""}",264418,1,"""Europe""" +2024-06-10,34976,976,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3129.79,"{\""seasonal\"": \""21%\""}",224323,0,"""Europe""" +2024-02-06,34977,4386,"[\""Monitor\"", \""Headphones\""]",3065.14,"{\""loyalty\"": \""10%\""}",71371,1,"""Asia""" +2024-06-05,34978,5875,"[\""Wireless Mouse\"", \""Laptop\""]",2613.95,{},39912,1,"""Europe""" +2024-08-13,34979,790,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3302.46,{},242039,0,"""South America""" +2023-08-30,34980,879,"[\""Monitor\""]",4185.52,"{\"": \""21%\""}",185672,1,"""Asia""" +2024-03-12,34981,399,"[\""Charger\"", \""Headphones\""]",1109.78,{},51246,1,"""Africa""" +2023-10-24,34982,8012,"[\""Phone\""]",586.99,"{\""seasonal\"": \""8%\""}",291857,0,"""Africa""" +2024-05-27,34983,6196,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",799.68,"{\""loyalty\"": \""21%\""}",263985,0,"""South America""" +2023-04-29,34984,9318,"[\""Laptop\""]",1935.01,{},273539,1,"""Asia""" +2023-04-15,34985,4961,"[\""Tablet\"", \""Laptop\""]",4342.47,"{\""promo\"": \""9%\""}",280803,1,"""South America""" +2023-04-10,34986,2227,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3966.13,"{\""seasonal\"": \""5%\""}",114543,1,"""Africa""" +2024-11-22,34987,2441,"[\""Tablet\""]",4499.7,"{\""promo\"": \""28%\""}",275010,0,"""South America""" +2023-07-12,34988,3891,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1108.94,{},9654,1,"""North America""" +2023-08-16,34989,3809,"[\""Headphones\"", \""Phone\""]",1570.89,"{\""promo\"": \""16%\""}",160468,0,"""North America""" +2023-12-14,34990,1834,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1175.34,"{\""promo\"": \""7%\""}",67110,1,"""South America""" +2024-12-21,34991,9512,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",732.53,"{\""promo\"": \""19%\""}",265435,0,"""Europe""" +2024-02-26,34992,9175,"[\""Wireless Mouse\""]",764.46,{},200015,1,"""North America""" +2023-11-03,34993,3155,"[\""Headphones\""]",3088.97,{},297845,1,"""Asia""" +2023-11-22,34994,6302,"[\""Wireless Mouse\""]",526.35,{},247293,0,"""Africa""" +2023-02-04,34995,1379,"[\""Laptop\""]",2235.05,{},147612,1,"""South America""" +2023-07-26,34996,9532,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2562.23,{},259406,0,"""Asia""" +2024-09-09,34997,7216,"[\""Charger\""]",2968.06,{},240508,0,"""South America""" +2023-06-21,34998,8019,"[\""Monitor\"", \""Tablet\""]",3927.63,"{\""seasonal\"": \""11%\""}",161711,0,"""South America""" +2023-01-18,34999,6066,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1041.3,"{\"": \""20%\""}",165022,1,"""Asia""" +2023-02-05,35000,3089,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4883.93,"{\""loyalty\"": \""22%\""}",203002,0,"""Africa""" +2023-02-26,35001,5741,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1985.69,{},104401,1,"""North America""" +2023-06-04,35002,7292,"[\""Tablet\"", \""Laptop\""]",4370.77,{},75559,1,"""South America""" +2023-04-21,35003,3518,"[\""Charger\""]",1930.45,{},106820,1,"""Europe""" +2024-09-14,35004,4032,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1174.59,{},281948,0,"""Asia""" +2024-08-24,35005,9102,"[\""Keyboard\"", \""Charger\""]",1746.17,"{\""promo\"": \""5%\""}",141668,1,"""Asia""" +2023-07-06,35006,6152,"[\""Headphones\""]",1165.23,{},227400,0,"""South America""" +2024-03-16,35007,5636,"[\""Laptop\"", \""Phone\""]",3391.77,"{\""promo\"": \""30%\""}",60957,1,"""South America""" +2024-11-08,35008,7416,"[\""Tablet\"", \""Wireless Mouse\""]",3596.45,"{\""promo\"": \""9%\""}",164614,0,"""Europe""" +2023-05-20,35009,3862,"[\""Headphones\""]",4025.85,"{\""loyalty\"": \""21%\""}",231693,1,"""South America""" +2023-03-15,35010,2602,"[\""Headphones\""]",1969.8,"{\""promo\"": \""28%\""}",28263,0,"""South America""" +2023-01-25,35011,8629,"[\""Headphones\""]",4765.73,"{\""loyalty\"": \""26%\""}",86908,1,"""Asia""" +2023-08-04,35012,3792,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3162.49,{},169138,1,"""Africa""" +2023-04-01,35013,4167,"[\""Charger\""]",3061.03,{},297290,1,"""Europe""" +2024-10-23,35014,7188,"[\""Wireless Mouse\"", \""Headphones\""]",1962.11,{},16956,0,"""North America""" +2024-06-13,35015,3272,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",663.07,"{\""loyalty\"": \""12%\""}",287348,0,"""North America""" +2024-10-15,35016,797,"[\""Phone\"", \""Tablet\""]",2496.74,{},214793,0,"""South America""" +2023-01-22,35017,8103,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",938.17,"{\"": \""8%\""}",10027,0,"""North America""" +2023-01-06,35018,9720,"[\""Headphones\""]",3800.25,{},119054,0,"""North America""" +2024-08-02,35019,6148,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2285.63,"{\""promo\"": \""11%\""}",226500,1,"""Europe""" +2023-08-14,35020,4301,"[\""Headphones\"", \""Phone\""]",4799.77,{},286861,0,"""South America""" +2023-07-28,35021,667,"[\""Laptop\""]",3952.41,{},166556,0,"""Africa""" +2024-09-26,35022,7017,"[\""Monitor\""]",1521.63,{},170872,0,"""Africa""" +2023-01-29,35023,1065,"[\""Charger\""]",640.79,"{\""seasonal\"": \""23%\""}",183318,1,"""Africa""" +2023-09-28,35024,9702,"[\""Monitor\""]",2349.29,{},180309,1,"""Africa""" +2023-07-15,35025,7849,"[\""Monitor\""]",2183.11,{},235387,0,"""North America""" +2024-12-18,35026,6408,"[\""Phone\""]",1071.71,{},171973,1,"""Africa""" +2023-01-01,35027,7740,"[\""Tablet\"", \""Monitor\""]",3087.54,"{\""promo\"": \""22%\""}",228549,1,"""North America""" +2023-07-01,35028,5733,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1991.82,{},87169,1,"""North America""" +2023-06-06,35029,63,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4135.54,"{\""loyalty\"": \""26%\""}",131184,0,"""North America""" +2023-11-24,35030,6551,"[\""Monitor\""]",607.9,"{\""promo\"": \""18%\""}",179664,1,"""South America""" +2023-02-02,35031,4909,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2781.0,"{\""loyalty\"": \""30%\""}",147879,0,"""Europe""" +2023-03-07,35032,1642,"[\""Phone\"", \""Laptop\""]",3829.39,"{\""seasonal\"": \""6%\""}",38639,0,"""Europe""" +2024-11-04,35033,5228,"[\""Headphones\"", \""Laptop\""]",1099.63,{},27573,1,"""Asia""" +2024-11-07,35034,5942,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2735.66,{},247189,1,"""South America""" +2023-03-06,35035,6576,"[\""Laptop\""]",1962.54,"{\""loyalty\"": \""7%\""}",289502,0,"""South America""" +2024-01-17,35036,9378,"[\""Keyboard\"", \""Wireless Mouse\""]",4527.99,{},4666,1,"""South America""" +2023-04-28,35037,7873,"[\""Laptop\"", \""Tablet\""]",2445.89,{},271085,1,"""Africa""" +2024-05-27,35038,7789,"[\""Phone\""]",3630.14,{},92620,0,"""Asia""" +2023-08-18,35039,3709,"[\""Charger\""]",145.9,"{\"": \""29%\""}",129163,1,"""Europe""" +2023-10-25,35040,7041,"[\""Wireless Mouse\"", \""Laptop\""]",293.79,"{\"": \""10%\""}",101031,1,"""Africa""" +2024-03-23,35041,8472,"[\""Headphones\"", \""Tablet\""]",4855.06,"{\""promo\"": \""23%\""}",211094,0,"""Europe""" +2024-06-06,35042,6842,"[\""Keyboard\""]",3780.56,{},5412,1,"""South America""" +2024-10-30,35043,1055,"[\""Wireless Mouse\"", \""Phone\""]",1927.3,"{\"": \""6%\""}",74295,0,"""Asia""" +2023-07-06,35044,8436,"[\""Headphones\"", \""Wireless Mouse\""]",4199.29,{},184427,1,"""South America""" +2024-06-25,35045,6923,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2335.8,"{\""loyalty\"": \""9%\""}",124990,0,"""Europe""" +2024-10-17,35046,2803,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2130.04,{},12310,0,"""Asia""" +2024-03-24,35047,2095,"[\""Laptop\""]",2830.86,{},252883,0,"""Europe""" +2023-09-09,35048,3437,"[\""Monitor\""]",3737.76,"{\""seasonal\"": \""14%\""}",92704,0,"""North America""" +2023-05-15,35049,3011,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",112.96,{},60341,0,"""South America""" +2023-07-09,35050,833,"[\""Charger\"", \""Monitor\""]",2423.76,"{\""seasonal\"": \""27%\""}",165744,0,"""Europe""" +2024-10-01,35051,603,"[\""Tablet\""]",77.88,{},38334,1,"""Africa""" +2023-11-23,35052,296,"[\""Keyboard\""]",706.95,"{\"": \""11%\""}",13195,0,"""North America""" +2023-12-30,35053,3916,"[\""Charger\"", \""Headphones\""]",3986.21,{},138318,0,"""South America""" +2024-05-19,35054,9985,"[\""Monitor\"", \""Laptop\""]",4992.52,{},69153,1,"""Asia""" +2024-03-20,35055,4933,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2343.37,"{\"": \""23%\""}",122098,0,"""Africa""" +2024-08-19,35056,5362,"[\""Laptop\"", \""Phone\""]",222.23,"{\""loyalty\"": \""23%\""}",50617,0,"""Asia""" +2023-06-24,35057,7185,"[\""Wireless Mouse\"", \""Tablet\""]",4842.44,"{\""loyalty\"": \""18%\""}",286359,1,"""Africa""" +2024-09-17,35058,5811,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4087.92,"{\""promo\"": \""30%\""}",41843,0,"""Europe""" +2024-11-22,35059,5720,"[\""Monitor\"", \""Phone\""]",4752.44,{},274985,0,"""South America""" +2023-12-19,35060,2779,"[\""Phone\"", \""Monitor\""]",203.8,"{\""promo\"": \""9%\""}",118682,1,"""Asia""" +2023-05-21,35061,3591,"[\""Headphones\"", \""Phone\""]",2628.47,{},170882,1,"""Africa""" +2024-08-04,35062,5614,"[\""Monitor\""]",2165.51,{},28777,0,"""South America""" +2024-05-04,35063,896,"[\""Tablet\""]",4168.13,{},259282,0,"""Africa""" +2024-10-17,35064,9113,"[\""Wireless Mouse\"", \""Tablet\""]",3677.88,"{\""loyalty\"": \""29%\""}",2674,0,"""Asia""" +2024-02-25,35065,3905,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3316.29,{},144515,1,"""Asia""" +2023-11-28,35066,5696,"[\""Headphones\"", \""Phone\""]",4531.98,"{\""seasonal\"": \""23%\""}",138550,1,"""Africa""" +2023-04-28,35067,9272,"[\""Headphones\"", \""Laptop\""]",3613.46,"{\""seasonal\"": \""26%\""}",71342,0,"""Asia""" +2024-05-10,35068,3988,"[\""Laptop\""]",2829.2,{},140145,0,"""Africa""" +2023-02-16,35069,5000,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4075.61,{},66410,0,"""North America""" +2023-06-30,35070,8862,"[\""Laptop\""]",3221.33,{},268087,1,"""Asia""" +2024-04-17,35071,87,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4474.01,{},36093,0,"""North America""" +2023-09-26,35072,4766,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",771.72,{},177005,0,"""Europe""" +2023-10-15,35073,7937,"[\""Phone\""]",2897.92,{},16022,0,"""Europe""" +2023-10-13,35074,3753,"[\""Keyboard\""]",4779.29,{},232491,1,"""North America""" +2023-03-20,35075,8118,"[\""Headphones\""]",883.91,"{\""promo\"": \""9%\""}",182219,0,"""South America""" +2023-02-05,35076,5865,"[\""Charger\"", \""Monitor\""]",2911.92,{},283500,1,"""North America""" +2023-12-03,35077,765,"[\""Tablet\""]",3756.55,{},246172,1,"""Asia""" +2023-03-28,35078,7125,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",657.91,"{\"": \""7%\""}",134823,1,"""Africa""" +2024-08-28,35079,1946,"[\""Charger\""]",3414.07,{},31185,1,"""Africa""" +2024-07-30,35080,8731,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",375.77,{},269691,1,"""North America""" +2024-08-23,35081,3462,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",577.93,"{\""promo\"": \""18%\""}",294315,1,"""Africa""" +2024-06-22,35082,9880,"[\""Charger\"", \""Phone\""]",4347.81,"{\""loyalty\"": \""25%\""}",46957,1,"""North America""" +2024-05-27,35083,2937,"[\""Phone\"", \""Tablet\""]",4003.64,{},281717,0,"""Africa""" +2024-03-28,35084,5182,"[\""Charger\"", \""Keyboard\""]",1011.39,"{\""seasonal\"": \""23%\""}",203214,0,"""South America""" +2023-04-28,35085,8921,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3569.72,"{\""seasonal\"": \""11%\""}",8496,0,"""Asia""" +2024-10-25,35086,1361,"[\""Laptop\""]",1388.83,"{\""loyalty\"": \""21%\""}",44541,0,"""Asia""" +2023-11-27,35087,8059,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4714.1,{},161026,1,"""Asia""" +2023-08-02,35088,1542,"[\""Wireless Mouse\""]",2219.57,{},84082,0,"""North America""" +2024-10-20,35089,7058,"[\""Charger\"", \""Headphones\""]",2299.85,{},19977,1,"""North America""" +2024-10-24,35090,3212,"[\""Tablet\"", \""Phone\""]",2570.58,"{\""seasonal\"": \""11%\""}",158814,1,"""Africa""" +2023-01-01,35091,6781,"[\""Keyboard\"", \""Phone\""]",2539.14,"{\""seasonal\"": \""21%\""}",296513,1,"""Europe""" +2023-09-18,35092,2373,"[\""Phone\""]",3873.77,"{\""promo\"": \""16%\""}",39727,1,"""North America""" +2023-08-02,35093,7561,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1390.88,{},111070,0,"""North America""" +2024-07-27,35094,16,"[\""Wireless Mouse\""]",4048.03,{},78832,0,"""South America""" +2023-09-18,35095,7049,"[\""Laptop\"", \""Headphones\""]",713.4,{},253836,1,"""Africa""" +2023-04-08,35096,3941,"[\""Charger\""]",2466.93,"{\""seasonal\"": \""8%\""}",211632,0,"""South America""" +2023-01-21,35097,8552,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3852.96,"{\""promo\"": \""20%\""}",182453,1,"""Europe""" +2024-01-05,35098,5558,"[\""Tablet\"", \""Charger\""]",4230.28,"{\""seasonal\"": \""26%\""}",36365,1,"""North America""" +2023-11-30,35099,7216,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1284.38,{},133828,1,"""North America""" +2023-06-05,35100,9308,"[\""Tablet\""]",1178.95,{},92794,1,"""South America""" +2023-08-18,35101,4656,"[\""Keyboard\"", \""Monitor\""]",4648.47,"{\"": \""7%\""}",272518,0,"""Africa""" +2024-01-10,35102,9410,"[\""Keyboard\"", \""Tablet\""]",4164.7,"{\""loyalty\"": \""28%\""}",251538,0,"""North America""" +2023-02-17,35103,1966,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3013.05,"{\""seasonal\"": \""12%\""}",154835,1,"""Africa""" +2023-01-09,35104,2652,"[\""Charger\""]",4214.29,"{\""loyalty\"": \""20%\""}",12755,0,"""Europe""" +2024-05-02,35105,4115,"[\""Laptop\""]",3125.33,"{\"": \""30%\""}",226367,0,"""South America""" +2023-05-26,35106,6393,"[\""Wireless Mouse\""]",3443.25,"{\""promo\"": \""20%\""}",155033,0,"""Europe""" +2024-06-12,35107,6223,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2473.82,{},275736,1,"""Asia""" +2024-12-07,35108,6832,"[\""Phone\""]",2083.78,{},264715,1,"""Europe""" +2024-03-12,35109,6912,"[\""Headphones\""]",890.0,"{\"": \""9%\""}",62449,1,"""Europe""" +2024-04-22,35110,267,"[\""Charger\"", \""Phone\""]",4429.94,{},229360,0,"""Asia""" +2023-09-30,35111,7234,"[\""Wireless Mouse\"", \""Monitor\""]",580.12,{},147346,1,"""Europe""" +2023-05-04,35112,5584,"[\""Headphones\""]",1535.25,"{\""promo\"": \""9%\""}",108169,0,"""Africa""" +2024-03-18,35113,234,"[\""Tablet\"", \""Headphones\""]",958.46,"{\""loyalty\"": \""18%\""}",182628,1,"""South America""" +2024-01-27,35114,9978,"[\""Phone\"", \""Monitor\""]",4154.13,{},241768,0,"""Europe""" +2024-04-29,35115,5778,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2885.34,"{\"": \""29%\""}",110258,0,"""Africa""" +2024-06-18,35116,8264,"[\""Laptop\"", \""Keyboard\""]",4270.88,{},117787,1,"""Africa""" +2024-08-13,35117,7494,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1723.51,"{\""promo\"": \""20%\""}",220652,1,"""South America""" +2023-04-09,35118,4795,"[\""Keyboard\""]",2259.79,{},268626,1,"""Asia""" +2024-10-14,35119,1284,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2929.34,{},263510,1,"""South America""" +2024-12-25,35120,569,"[\""Laptop\"", \""Headphones\""]",4771.25,{},250597,0,"""South America""" +2024-12-12,35121,9234,"[\""Wireless Mouse\"", \""Monitor\""]",196.86,"{\""seasonal\"": \""17%\""}",195066,1,"""Asia""" +2023-03-22,35122,2319,"[\""Wireless Mouse\""]",2117.46,{},217570,0,"""Africa""" +2023-03-07,35123,3823,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2825.73,"{\""promo\"": \""28%\""}",207875,0,"""Africa""" +2023-01-14,35124,9458,"[\""Wireless Mouse\"", \""Phone\""]",258.9,{},34673,0,"""Africa""" +2024-04-20,35125,3496,"[\""Phone\""]",2550.87,{},97106,0,"""Asia""" +2023-12-24,35126,3791,"[\""Tablet\"", \""Charger\""]",73.13,"{\""promo\"": \""16%\""}",193317,0,"""Europe""" +2023-07-01,35127,6481,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3947.62,{},115464,0,"""North America""" +2023-08-14,35128,2569,"[\""Headphones\""]",552.32,"{\"": \""14%\""}",148190,1,"""South America""" +2023-10-24,35129,8867,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3744.15,"{\""loyalty\"": \""19%\""}",210620,0,"""Africa""" +2023-04-12,35130,1197,"[\""Keyboard\"", \""Phone\""]",721.92,"{\""promo\"": \""14%\""}",149560,1,"""Africa""" +2024-08-02,35131,117,"[\""Tablet\"", \""Laptop\""]",3780.11,"{\""promo\"": \""13%\""}",89042,0,"""Asia""" +2024-04-06,35132,3157,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4422.51,{},81804,0,"""Africa""" +2023-09-21,35133,3376,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1290.0,{},70360,1,"""Europe""" +2024-12-17,35134,3794,"[\""Keyboard\""]",775.84,"{\"": \""26%\""}",139180,1,"""Europe""" +2024-05-29,35135,6841,"[\""Phone\""]",2556.07,{},187104,0,"""Africa""" +2024-10-30,35136,273,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2033.66,{},191407,1,"""South America""" +2023-11-13,35137,3052,"[\""Tablet\""]",294.94,{},11881,0,"""Asia""" +2024-11-25,35138,142,"[\""Wireless Mouse\""]",2801.27,{},62427,1,"""Asia""" +2024-08-21,35139,2968,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3277.91,{},270776,0,"""North America""" +2023-11-12,35140,4632,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",955.08,"{\"": \""18%\""}",50834,1,"""Asia""" +2023-02-17,35141,36,"[\""Phone\"", \""Headphones\""]",2268.45,{},276192,1,"""North America""" +2024-01-17,35142,4406,"[\""Monitor\"", \""Phone\""]",788.69,{},137432,1,"""North America""" +2023-07-20,35143,7549,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1998.96,{},247448,1,"""Asia""" +2024-11-26,35144,1922,"[\""Charger\"", \""Keyboard\""]",3212.18,{},14171,1,"""Europe""" +2023-08-12,35145,2596,"[\""Headphones\"", \""Laptop\""]",4799.86,{},10617,1,"""Europe""" +2023-01-27,35146,2701,"[\""Tablet\"", \""Laptop\""]",4743.78,{},134440,1,"""Asia""" +2024-04-12,35147,6746,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3567.82,"{\""seasonal\"": \""13%\""}",138642,1,"""Europe""" +2024-08-28,35148,9379,"[\""Laptop\""]",1260.04,{},292986,1,"""Africa""" +2024-08-23,35149,6702,"[\""Wireless Mouse\"", \""Tablet\""]",4799.08,"{\""seasonal\"": \""26%\""}",119672,1,"""North America""" +2024-06-01,35150,9316,"[\""Keyboard\""]",652.07,{},265709,0,"""Asia""" +2023-10-29,35151,1590,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4472.21,"{\""promo\"": \""12%\""}",150659,0,"""South America""" +2024-01-09,35152,2371,"[\""Monitor\"", \""Headphones\""]",1947.95,"{\""seasonal\"": \""11%\""}",210746,0,"""Europe""" +2023-08-20,35153,5919,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4374.45,"{\""promo\"": \""14%\""}",64773,0,"""Africa""" +2023-06-19,35154,1884,"[\""Charger\"", \""Keyboard\""]",2901.13,"{\"": \""7%\""}",132627,1,"""North America""" +2024-08-31,35155,6921,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1491.6,"{\""seasonal\"": \""20%\""}",190534,0,"""Africa""" +2024-12-12,35156,7671,"[\""Phone\""]",3430.72,"{\""promo\"": \""8%\""}",273537,0,"""Africa""" +2023-09-26,35157,3495,"[\""Laptop\"", \""Wireless Mouse\""]",2068.98,{},45941,0,"""South America""" +2023-08-30,35158,8499,"[\""Laptop\""]",3898.28,{},208852,1,"""North America""" +2023-05-01,35159,2736,"[\""Tablet\"", \""Monitor\""]",2489.05,"{\""loyalty\"": \""7%\""}",250658,0,"""North America""" +2024-09-01,35160,2383,"[\""Keyboard\"", \""Phone\""]",3024.61,"{\""seasonal\"": \""18%\""}",109870,0,"""Asia""" +2023-05-03,35161,1734,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3852.81,"{\""loyalty\"": \""9%\""}",217655,1,"""Asia""" +2024-06-07,35162,1955,"[\""Charger\"", \""Tablet\""]",3059.49,"{\""loyalty\"": \""14%\""}",72585,0,"""Europe""" +2024-10-30,35163,7621,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4406.86,"{\"": \""9%\""}",191133,1,"""South America""" +2024-05-20,35164,3696,"[\""Tablet\""]",410.67,{},153208,1,"""Africa""" +2024-11-10,35165,3202,"[\""Tablet\"", \""Phone\""]",4834.94,{},140147,1,"""South America""" +2023-05-19,35166,6983,"[\""Keyboard\""]",4949.02,"{\""loyalty\"": \""13%\""}",42217,1,"""Asia""" +2024-11-02,35167,948,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1819.21,"{\""loyalty\"": \""21%\""}",67252,0,"""Asia""" +2023-11-19,35168,278,"[\""Phone\"", \""Tablet\""]",4180.11,"{\""seasonal\"": \""23%\""}",66089,1,"""North America""" +2023-12-15,35169,557,"[\""Charger\""]",1855.59,"{\"": \""14%\""}",287885,1,"""North America""" +2023-02-27,35170,2391,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2841.61,{},86512,1,"""North America""" +2023-06-16,35171,8760,"[\""Keyboard\""]",2249.98,"{\"": \""15%\""}",97816,1,"""Africa""" +2023-03-25,35172,5212,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2766.82,{},44339,0,"""Asia""" +2024-11-04,35173,6474,"[\""Phone\"", \""Charger\""]",4811.89,{},228378,0,"""North America""" +2024-12-05,35174,1723,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1494.79,{},104290,1,"""Africa""" +2023-11-20,35175,3875,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1837.41,{},275974,0,"""Asia""" +2024-07-25,35176,3214,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1209.88,"{\""loyalty\"": \""15%\""}",122364,0,"""South America""" +2024-06-12,35177,928,"[\""Laptop\""]",4651.4,"{\"": \""27%\""}",84603,0,"""Europe""" +2023-06-01,35178,3676,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",116.98,"{\"": \""26%\""}",220816,0,"""North America""" +2023-11-05,35179,3731,"[\""Laptop\""]",3399.92,{},112323,0,"""Africa""" +2023-12-26,35180,3528,"[\""Phone\""]",4325.97,{},132499,0,"""Europe""" +2024-09-11,35181,7365,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3241.45,{},125228,0,"""Europe""" +2023-06-09,35182,5082,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",402.53,"{\""loyalty\"": \""28%\""}",159086,0,"""Europe""" +2023-03-25,35183,7680,"[\""Headphones\"", \""Keyboard\""]",1097.83,{},279035,1,"""Europe""" +2024-08-29,35184,7592,"[\""Laptop\""]",1145.31,{},139619,0,"""Africa""" +2023-10-24,35185,1436,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",965.02,"{\""seasonal\"": \""11%\""}",175984,0,"""South America""" +2023-12-26,35186,4432,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3853.84,"{\"": \""19%\""}",38837,0,"""South America""" +2023-08-20,35187,9492,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2378.5,"{\"": \""21%\""}",105860,1,"""Africa""" +2023-06-21,35188,6412,"[\""Phone\""]",2286.91,{},241947,0,"""Africa""" +2023-05-09,35189,4756,"[\""Charger\"", \""Phone\""]",57.08,{},98059,0,"""Europe""" +2024-11-23,35190,9547,"[\""Headphones\"", \""Charger\""]",53.89,"{\""loyalty\"": \""26%\""}",101160,0,"""North America""" +2023-10-12,35191,2602,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1618.27,"{\""loyalty\"": \""10%\""}",82272,1,"""North America""" +2024-11-03,35192,4432,"[\""Charger\"", \""Monitor\""]",3938.26,"{\""loyalty\"": \""6%\""}",121823,1,"""South America""" +2024-11-10,35193,9487,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",667.14,{},129653,1,"""Asia""" +2024-06-06,35194,979,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2032.96,"{\""seasonal\"": \""14%\""}",84358,0,"""Africa""" +2024-07-23,35195,4780,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4517.36,"{\""promo\"": \""29%\""}",160674,1,"""Asia""" +2023-04-26,35196,4876,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",715.55,{},18872,1,"""Asia""" +2023-06-21,35197,3161,"[\""Phone\""]",2494.75,"{\""seasonal\"": \""17%\""}",98440,1,"""South America""" +2024-01-30,35198,4523,"[\""Phone\"", \""Wireless Mouse\""]",3719.52,{},190123,0,"""South America""" +2024-08-08,35199,3731,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3849.06,{},147569,1,"""Europe""" +2024-01-19,35200,5821,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2737.24,"{\""promo\"": \""16%\""}",72707,1,"""North America""" +2023-12-16,35201,4475,"[\""Tablet\""]",2837.51,"{\""promo\"": \""8%\""}",62204,0,"""South America""" +2024-01-13,35202,8310,"[\""Tablet\""]",332.08,"{\""promo\"": \""15%\""}",283163,0,"""Europe""" +2023-10-24,35203,9148,"[\""Phone\""]",2256.79,{},48738,1,"""Europe""" +2023-02-14,35204,6661,"[\""Laptop\""]",2860.05,"{\""loyalty\"": \""20%\""}",75325,1,"""Africa""" +2023-01-11,35205,924,"[\""Phone\"", \""Wireless Mouse\""]",2682.5,{},78251,1,"""Europe""" +2023-06-04,35206,4756,"[\""Laptop\""]",2076.5,"{\"": \""28%\""}",49253,1,"""South America""" +2023-09-30,35207,9056,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1521.88,{},4562,1,"""Africa""" +2024-06-02,35208,8437,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4408.65,"{\"": \""22%\""}",111325,0,"""Europe""" +2024-10-31,35209,7323,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2875.91,{},161785,1,"""Africa""" +2023-01-06,35210,6215,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3848.2,{},76845,0,"""Europe""" +2024-10-17,35211,6125,"[\""Phone\""]",200.42,"{\"": \""11%\""}",200548,1,"""Asia""" +2024-03-09,35212,6421,"[\""Laptop\""]",2104.29,"{\""seasonal\"": \""19%\""}",253616,0,"""North America""" +2024-04-30,35213,1722,"[\""Monitor\"", \""Laptop\""]",4113.99,"{\""promo\"": \""29%\""}",266634,0,"""Africa""" +2024-12-06,35214,6406,"[\""Wireless Mouse\"", \""Laptop\""]",4858.27,{},39082,1,"""Europe""" +2024-03-21,35215,4013,"[\""Keyboard\"", \""Tablet\""]",421.37,{},126137,0,"""North America""" +2023-02-12,35216,5409,"[\""Phone\""]",4384.8,"{\""promo\"": \""8%\""}",156653,0,"""Asia""" +2023-03-10,35217,3745,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2686.07,{},228914,1,"""South America""" +2023-02-19,35218,5482,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3452.27,"{\"": \""16%\""}",186435,0,"""Asia""" +2024-09-30,35219,1154,"[\""Laptop\"", \""Charger\""]",2074.34,"{\""promo\"": \""17%\""}",23135,1,"""Africa""" +2024-05-01,35220,1425,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3760.81,{},45162,1,"""Europe""" +2023-07-28,35221,4248,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",594.69,{},287090,1,"""Europe""" +2024-01-29,35222,468,"[\""Charger\""]",1490.66,"{\""seasonal\"": \""13%\""}",40473,1,"""Africa""" +2024-07-25,35223,6267,"[\""Phone\"", \""Headphones\""]",2824.49,{},109126,1,"""Europe""" +2024-02-23,35224,7814,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3793.77,{},44934,0,"""Europe""" +2024-06-29,35225,8751,"[\""Headphones\""]",630.66,{},155957,1,"""Africa""" +2023-06-22,35226,369,"[\""Wireless Mouse\"", \""Laptop\""]",4612.94,"{\""seasonal\"": \""7%\""}",249487,0,"""Asia""" +2023-09-20,35227,316,"[\""Tablet\"", \""Wireless Mouse\""]",2749.27,"{\""promo\"": \""20%\""}",197879,1,"""Asia""" +2024-01-02,35228,1853,"[\""Headphones\""]",4337.83,{},60106,0,"""Africa""" +2023-07-07,35229,1383,"[\""Wireless Mouse\""]",191.43,{},275403,1,"""Asia""" +2023-02-05,35230,8505,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1085.16,"{\"": \""27%\""}",168217,1,"""North America""" +2023-09-20,35231,7036,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1780.39,"{\"": \""10%\""}",199863,0,"""Asia""" +2023-07-10,35232,5867,"[\""Wireless Mouse\""]",1047.88,"{\"": \""8%\""}",234717,1,"""Africa""" +2023-09-01,35233,7840,"[\""Laptop\"", \""Monitor\""]",2076.49,{},137388,0,"""Africa""" +2024-02-29,35234,9751,"[\""Phone\"", \""Laptop\""]",4413.76,{},294946,1,"""South America""" +2024-08-19,35235,4545,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3094.63,{},60817,0,"""Europe""" +2023-10-14,35236,6108,"[\""Monitor\""]",138.04,{},154158,0,"""Africa""" +2023-07-02,35237,4569,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3287.19,"{\""promo\"": \""29%\""}",49325,1,"""South America""" +2023-04-24,35238,5044,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3384.41,"{\""seasonal\"": \""20%\""}",91261,1,"""South America""" +2023-03-30,35239,1299,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4014.5,{},174219,0,"""South America""" +2024-04-06,35240,8598,"[\""Phone\"", \""Tablet\""]",3080.58,{},281740,1,"""North America""" +2024-03-13,35241,8315,"[\""Keyboard\"", \""Monitor\""]",4335.42,"{\"": \""15%\""}",230902,1,"""Africa""" +2023-07-11,35242,8995,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2449.92,{},108312,0,"""North America""" +2023-08-12,35243,960,"[\""Monitor\""]",2876.12,{},113832,1,"""Africa""" +2023-09-21,35244,9329,"[\""Headphones\"", \""Charger\""]",4481.81,{},193315,1,"""Asia""" +2023-07-24,35245,1518,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3787.73,{},30037,1,"""North America""" +2023-08-15,35246,452,"[\""Monitor\"", \""Headphones\""]",296.55,{},273463,1,"""Africa""" +2024-12-21,35247,7849,"[\""Tablet\"", \""Wireless Mouse\""]",3734.19,{},187472,0,"""Asia""" +2024-07-18,35248,1977,"[\""Monitor\"", \""Wireless Mouse\""]",2707.75,"{\"": \""27%\""}",262089,1,"""Africa""" +2023-03-06,35249,9258,"[\""Monitor\"", \""Laptop\""]",4626.56,{},187019,0,"""Asia""" +2023-12-02,35250,6027,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",797.03,{},40931,1,"""Asia""" +2023-01-05,35251,8665,"[\""Phone\""]",1613.55,{},244271,1,"""North America""" +2024-08-12,35252,5779,"[\""Keyboard\""]",4709.1,"{\""seasonal\"": \""7%\""}",17002,1,"""Asia""" +2024-02-12,35253,9018,"[\""Keyboard\""]",4890.37,{},268746,1,"""Europe""" +2023-08-28,35254,2232,"[\""Laptop\""]",3995.87,"{\""promo\"": \""6%\""}",216225,0,"""South America""" +2023-06-02,35255,2815,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2567.3,{},94006,1,"""Africa""" +2024-01-08,35256,1754,"[\""Monitor\""]",1676.14,"{\""promo\"": \""25%\""}",39195,1,"""Europe""" +2023-11-15,35257,9386,"[\""Phone\""]",3999.82,{},147814,1,"""Asia""" +2023-10-08,35258,2651,"[\""Tablet\""]",3404.67,{},212938,1,"""Europe""" +2024-03-29,35259,5065,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1502.57,"{\"": \""14%\""}",248524,1,"""Asia""" +2023-11-22,35260,7223,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4285.36,"{\""promo\"": \""10%\""}",240549,1,"""Asia""" +2023-04-17,35261,6346,"[\""Tablet\"", \""Headphones\""]",3982.89,"{\""loyalty\"": \""20%\""}",185114,0,"""North America""" +2024-07-11,35262,2431,"[\""Headphones\""]",2475.96,"{\"": \""12%\""}",112131,1,"""Africa""" +2024-04-26,35263,7069,"[\""Monitor\"", \""Laptop\""]",188.57,{},283511,0,"""South America""" +2023-08-16,35264,3880,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3097.08,{},39334,0,"""Africa""" +2024-11-19,35265,3749,"[\""Laptop\""]",4188.82,"{\""loyalty\"": \""13%\""}",177273,0,"""South America""" +2024-06-04,35266,8766,"[\""Keyboard\"", \""Tablet\""]",3584.08,{},216246,1,"""Asia""" +2023-11-22,35267,6752,"[\""Phone\"", \""Headphones\""]",2196.22,"{\"": \""23%\""}",258867,1,"""Africa""" +2023-03-23,35268,6522,"[\""Keyboard\""]",4685.86,{},225866,0,"""South America""" +2023-08-26,35269,9265,"[\""Headphones\""]",511.75,{},61138,0,"""Asia""" +2024-07-27,35270,4501,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4317.94,{},238350,1,"""Europe""" +2024-12-24,35271,4111,"[\""Headphones\"", \""Keyboard\""]",3399.68,{},238490,1,"""North America""" +2023-09-26,35272,5979,"[\""Monitor\""]",604.64,"{\""seasonal\"": \""13%\""}",41003,0,"""Europe""" +2023-05-01,35273,9163,"[\""Phone\""]",880.18,{},143322,0,"""Africa""" +2024-08-08,35274,3961,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3851.86,"{\"": \""16%\""}",208118,0,"""Europe""" +2024-11-17,35275,9818,"[\""Monitor\""]",3335.86,{},240309,1,"""South America""" +2024-02-18,35276,1429,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1535.09,{},72341,1,"""Africa""" +2023-10-18,35277,8881,"[\""Laptop\"", \""Tablet\""]",3708.38,"{\""seasonal\"": \""6%\""}",214699,0,"""South America""" +2023-05-11,35278,8569,"[\""Laptop\"", \""Wireless Mouse\""]",2142.27,"{\""promo\"": \""6%\""}",274269,0,"""Africa""" +2024-12-30,35279,8526,"[\""Laptop\""]",3502.54,"{\""loyalty\"": \""15%\""}",135252,0,"""South America""" +2024-07-28,35280,2636,"[\""Charger\""]",2038.03,{},190330,0,"""Asia""" +2024-07-13,35281,2972,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2364.66,"{\"": \""7%\""}",250070,0,"""South America""" +2024-04-03,35282,9609,"[\""Monitor\""]",2871.78,"{\"": \""13%\""}",297892,1,"""Europe""" +2023-06-17,35283,5430,"[\""Tablet\""]",2119.18,"{\"": \""27%\""}",58215,1,"""Asia""" +2023-07-11,35284,8044,"[\""Phone\""]",2556.74,"{\""seasonal\"": \""14%\""}",275724,0,"""Africa""" +2023-07-15,35285,5648,"[\""Tablet\"", \""Phone\""]",1682.54,"{\"": \""18%\""}",74518,1,"""North America""" +2024-09-02,35286,8913,"[\""Charger\""]",4441.2,{},75947,0,"""North America""" +2023-03-11,35287,4231,"[\""Phone\""]",132.54,"{\""promo\"": \""28%\""}",298240,1,"""Asia""" +2023-05-20,35288,7592,"[\""Wireless Mouse\""]",2888.41,"{\""loyalty\"": \""29%\""}",288578,0,"""Africa""" +2023-12-11,35289,1601,"[\""Keyboard\"", \""Laptop\""]",2262.99,"{\"": \""9%\""}",145686,1,"""North America""" +2023-11-01,35290,465,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2746.89,{},205330,0,"""South America""" +2023-08-31,35291,9406,"[\""Monitor\""]",972.18,{},62972,0,"""South America""" +2024-07-12,35292,374,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4135.72,"{\"": \""9%\""}",201950,1,"""South America""" +2023-08-04,35293,8394,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3515.91,"{\"": \""20%\""}",54442,0,"""Asia""" +2023-08-24,35294,1213,"[\""Keyboard\""]",1080.0,"{\""loyalty\"": \""24%\""}",97503,1,"""Asia""" +2023-05-17,35295,3568,"[\""Charger\""]",336.45,{},145474,0,"""South America""" +2023-01-28,35296,9983,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1829.29,"{\""seasonal\"": \""29%\""}",168766,0,"""North America""" +2023-01-04,35297,8122,"[\""Laptop\""]",3713.4,"{\""loyalty\"": \""19%\""}",65281,0,"""Asia""" +2023-10-15,35298,6679,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1820.02,"{\""seasonal\"": \""18%\""}",116884,0,"""Asia""" +2023-03-10,35299,9803,"[\""Phone\"", \""Keyboard\""]",2961.75,{},3821,1,"""South America""" +2024-12-01,35300,8971,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1981.21,{},254409,1,"""South America""" +2024-12-26,35301,8121,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4640.65,{},179187,0,"""Africa""" +2023-09-29,35302,9589,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4348.04,"{\""seasonal\"": \""29%\""}",117654,0,"""Asia""" +2024-10-01,35303,5741,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3707.2,{},289426,1,"""Africa""" +2023-09-10,35304,482,"[\""Tablet\""]",4281.96,{},179274,1,"""South America""" +2024-08-01,35305,4539,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2547.93,"{\"": \""20%\""}",75410,1,"""Asia""" +2024-03-15,35306,5567,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4600.32,{},15016,1,"""Asia""" +2024-04-25,35307,7886,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",967.45,{},280685,0,"""North America""" +2023-09-22,35308,604,"[\""Charger\""]",2102.7,{},288777,0,"""South America""" +2023-06-17,35309,9224,"[\""Charger\"", \""Tablet\""]",531.35,{},47072,0,"""North America""" +2023-09-02,35310,4906,"[\""Headphones\"", \""Laptop\""]",3793.15,{},206245,0,"""North America""" +2023-01-19,35311,2470,"[\""Phone\"", \""Monitor\""]",4954.98,{},90797,1,"""South America""" +2024-11-08,35312,3752,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2248.21,{},69540,0,"""Africa""" +2024-10-02,35313,2514,"[\""Phone\""]",703.43,{},237944,1,"""South America""" +2024-07-17,35314,4812,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3687.91,"{\"": \""10%\""}",83204,1,"""Africa""" +2024-09-12,35315,1821,"[\""Wireless Mouse\"", \""Charger\""]",3829.71,{},108179,0,"""North America""" +2023-07-29,35316,3012,"[\""Wireless Mouse\""]",1451.71,{},39106,0,"""Africa""" +2024-04-23,35317,860,"[\""Laptop\""]",4048.84,{},143436,1,"""Europe""" +2023-12-19,35318,6078,"[\""Laptop\"", \""Charger\""]",2314.07,"{\""promo\"": \""25%\""}",140100,1,"""Europe""" +2023-07-19,35319,4095,"[\""Tablet\""]",1413.56,{},236241,0,"""North America""" +2024-02-11,35320,808,"[\""Keyboard\"", \""Wireless Mouse\""]",3538.81,"{\""loyalty\"": \""10%\""}",211204,1,"""Africa""" +2023-06-03,35321,3828,"[\""Tablet\"", \""Laptop\""]",2070.99,{},109828,0,"""Asia""" +2023-04-25,35322,7360,"[\""Monitor\"", \""Tablet\""]",2518.86,"{\""seasonal\"": \""8%\""}",116509,0,"""North America""" +2024-08-15,35323,6819,"[\""Laptop\""]",3489.38,"{\""promo\"": \""29%\""}",298834,0,"""North America""" +2024-02-23,35324,1187,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1099.35,"{\"": \""11%\""}",26828,0,"""South America""" +2024-09-04,35325,2815,"[\""Headphones\"", \""Keyboard\""]",4189.47,{},257122,1,"""Europe""" +2023-11-03,35326,7959,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4698.85,{},136993,1,"""Africa""" +2023-10-20,35327,8336,"[\""Charger\""]",4071.52,"{\""seasonal\"": \""10%\""}",102292,1,"""South America""" +2024-01-14,35328,2598,"[\""Tablet\""]",573.56,{},127889,0,"""Europe""" +2023-07-15,35329,5197,"[\""Phone\""]",4393.65,{},206236,1,"""Europe""" +2023-10-11,35330,4767,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",604.94,"{\""seasonal\"": \""15%\""}",242557,0,"""South America""" +2023-09-10,35331,3626,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4357.72,{},233804,0,"""Africa""" +2024-06-01,35332,9756,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2613.51,{},142175,0,"""Africa""" +2024-11-09,35333,6491,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1807.37,{},248924,0,"""Asia""" +2024-07-10,35334,8047,"[\""Keyboard\""]",4596.98,{},267455,0,"""North America""" +2023-12-07,35335,1034,"[\""Tablet\""]",4830.43,{},210511,1,"""South America""" +2024-02-26,35336,6530,"[\""Wireless Mouse\""]",4306.13,{},114466,1,"""Europe""" +2024-03-17,35337,5536,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",174.26,"{\""promo\"": \""30%\""}",63339,1,"""Asia""" +2023-08-10,35338,707,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",439.16,"{\""seasonal\"": \""22%\""}",260349,1,"""Africa""" +2024-07-05,35339,3791,"[\""Charger\""]",3921.95,{},107202,1,"""Europe""" +2024-08-01,35340,4975,"[\""Wireless Mouse\"", \""Keyboard\""]",1266.3,"{\"": \""21%\""}",10946,0,"""Europe""" +2023-10-11,35341,4475,"[\""Wireless Mouse\""]",3289.72,"{\""loyalty\"": \""20%\""}",288298,0,"""Africa""" +2024-06-26,35342,6964,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2898.12,"{\""promo\"": \""28%\""}",161524,0,"""Africa""" +2024-03-19,35343,7600,"[\""Monitor\""]",643.45,{},199336,1,"""South America""" +2023-12-26,35344,3911,"[\""Charger\""]",3628.96,{},280219,0,"""South America""" +2024-04-03,35345,6087,"[\""Wireless Mouse\"", \""Headphones\""]",4370.09,"{\""promo\"": \""26%\""}",16591,1,"""Europe""" +2024-07-04,35346,9841,"[\""Headphones\"", \""Tablet\""]",2500.99,{},292734,1,"""Europe""" +2023-06-30,35347,7413,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4790.08,{},248735,0,"""South America""" +2023-12-01,35348,6337,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1897.85,{},101330,0,"""North America""" +2024-02-03,35349,6393,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2012.63,{},130515,1,"""Asia""" +2024-01-17,35350,611,"[\""Tablet\"", \""Laptop\""]",3625.42,"{\""promo\"": \""9%\""}",55329,0,"""South America""" +2023-11-21,35351,557,"[\""Monitor\"", \""Tablet\""]",4831.2,{},299932,0,"""North America""" +2024-06-29,35352,3890,"[\""Laptop\"", \""Phone\""]",2557.38,"{\""loyalty\"": \""11%\""}",194312,1,"""Asia""" +2023-02-14,35353,7296,"[\""Headphones\""]",2193.97,{},266897,1,"""Africa""" +2024-01-26,35354,927,"[\""Wireless Mouse\"", \""Laptop\""]",4989.38,"{\""promo\"": \""17%\""}",49145,1,"""Africa""" +2023-10-06,35355,3284,"[\""Phone\"", \""Headphones\""]",3052.44,{},63249,0,"""South America""" +2023-02-04,35356,3820,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1983.82,"{\""loyalty\"": \""12%\""}",246309,1,"""Europe""" +2024-07-08,35357,4246,"[\""Headphones\"", \""Laptop\""]",293.06,"{\"": \""14%\""}",148817,0,"""North America""" +2024-12-09,35358,1869,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2654.37,{},114419,1,"""Asia""" +2023-06-05,35359,1005,"[\""Keyboard\""]",2894.74,"{\""loyalty\"": \""27%\""}",17312,0,"""Africa""" +2023-03-26,35360,9079,"[\""Phone\""]",4684.47,"{\"": \""8%\""}",245292,0,"""Europe""" +2023-07-11,35361,56,"[\""Charger\"", \""Wireless Mouse\""]",359.35,"{\""seasonal\"": \""15%\""}",53912,0,"""Asia""" +2023-05-14,35362,5250,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",622.82,{},86374,1,"""Asia""" +2023-01-02,35363,3711,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1037.12,"{\""promo\"": \""30%\""}",282431,1,"""Asia""" +2024-02-15,35364,8902,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3217.62,"{\""loyalty\"": \""21%\""}",282152,0,"""Asia""" +2024-07-05,35365,5168,"[\""Keyboard\""]",2790.36,{},234271,0,"""Europe""" +2023-01-10,35366,6142,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",263.49,"{\""loyalty\"": \""26%\""}",286304,0,"""South America""" +2023-01-20,35367,4489,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3713.34,"{\""seasonal\"": \""23%\""}",73108,1,"""South America""" +2023-07-11,35368,1596,"[\""Tablet\""]",379.26,{},76681,0,"""North America""" +2023-05-24,35369,6707,"[\""Charger\"", \""Wireless Mouse\""]",4761.1,"{\""loyalty\"": \""28%\""}",28556,0,"""Africa""" +2024-03-12,35370,5115,"[\""Phone\""]",3403.6,{},193661,1,"""Africa""" +2024-03-03,35371,6306,"[\""Tablet\"", \""Phone\""]",3340.25,"{\""promo\"": \""23%\""}",18889,1,"""Africa""" +2024-04-06,35372,5562,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1945.14,{},75793,1,"""Africa""" +2023-03-30,35373,2549,"[\""Laptop\"", \""Tablet\""]",2237.6,{},76153,1,"""North America""" +2023-03-21,35374,5919,"[\""Laptop\""]",763.03,"{\""promo\"": \""19%\""}",282955,0,"""North America""" +2023-05-03,35375,2239,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4934.59,{},223001,1,"""Africa""" +2024-01-15,35376,6390,"[\""Monitor\""]",128.92,{},45358,1,"""Asia""" +2023-03-31,35377,116,"[\""Headphones\"", \""Monitor\""]",4937.05,"{\""loyalty\"": \""5%\""}",114095,1,"""Europe""" +2024-03-22,35378,7306,"[\""Laptop\"", \""Headphones\""]",2502.83,"{\""promo\"": \""23%\""}",207303,0,"""Asia""" +2024-08-09,35379,212,"[\""Monitor\"", \""Keyboard\""]",311.93,"{\"": \""12%\""}",143683,1,"""South America""" +2023-12-23,35380,1916,"[\""Phone\"", \""Laptop\"", \""Charger\""]",910.45,{},188128,0,"""Asia""" +2023-07-08,35381,1266,"[\""Phone\"", \""Keyboard\""]",2026.48,{},270291,1,"""North America""" +2024-09-13,35382,7639,"[\""Laptop\""]",976.7,"{\""loyalty\"": \""21%\""}",150118,0,"""South America""" +2023-06-23,35383,783,"[\""Wireless Mouse\"", \""Charger\""]",4210.19,{},257415,1,"""Asia""" +2023-12-06,35384,8472,"[\""Monitor\""]",3763.71,{},247594,1,"""Asia""" +2024-12-13,35385,7748,"[\""Phone\"", \""Wireless Mouse\""]",1829.38,"{\""promo\"": \""7%\""}",218947,1,"""Europe""" +2023-02-23,35386,9108,"[\""Laptop\""]",3446.73,"{\""seasonal\"": \""15%\""}",84253,0,"""North America""" +2024-07-06,35387,4689,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1145.5,{},205069,1,"""Africa""" +2023-07-25,35388,8482,"[\""Monitor\""]",72.85,"{\""seasonal\"": \""28%\""}",262806,0,"""North America""" +2023-07-11,35389,494,"[\""Charger\""]",659.1,{},241980,1,"""Africa""" +2024-06-23,35390,1648,"[\""Laptop\"", \""Charger\""]",1937.5,"{\""promo\"": \""15%\""}",252067,0,"""South America""" +2023-06-17,35391,8267,"[\""Wireless Mouse\""]",4393.88,"{\""promo\"": \""18%\""}",216406,0,"""North America""" +2024-05-04,35392,5418,"[\""Headphones\"", \""Monitor\""]",4241.83,"{\""promo\"": \""21%\""}",106907,1,"""North America""" +2024-09-19,35393,7614,"[\""Tablet\""]",4444.42,{},19874,0,"""North America""" +2023-04-29,35394,794,"[\""Phone\"", \""Charger\""]",1225.59,"{\"": \""8%\""}",80786,0,"""Europe""" +2024-04-15,35395,3683,"[\""Phone\"", \""Charger\"", \""Monitor\""]",136.71,{},228510,1,"""Europe""" +2023-08-31,35396,2886,"[\""Wireless Mouse\""]",203.09,{},150082,1,"""Africa""" +2023-07-25,35397,9186,"[\""Charger\""]",376.55,"{\"": \""17%\""}",74575,1,"""Asia""" +2024-05-12,35398,1884,"[\""Wireless Mouse\""]",225.42,"{\"": \""30%\""}",164388,1,"""South America""" +2023-11-28,35399,8098,"[\""Tablet\"", \""Keyboard\""]",2488.83,"{\""loyalty\"": \""16%\""}",112957,1,"""South America""" +2023-10-31,35400,8622,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4539.27,"{\""promo\"": \""21%\""}",153351,1,"""South America""" +2023-07-06,35401,9759,"[\""Laptop\"", \""Tablet\""]",4017.84,"{\""loyalty\"": \""27%\""}",160518,0,"""Europe""" +2023-03-10,35402,5842,"[\""Keyboard\"", \""Headphones\""]",63.7,{},83474,1,"""Africa""" +2023-08-06,35403,5331,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3759.68,"{\""promo\"": \""7%\""}",91376,0,"""North America""" +2024-09-25,35404,8281,"[\""Wireless Mouse\"", \""Monitor\""]",3610.67,"{\""promo\"": \""12%\""}",24291,0,"""Asia""" +2023-07-22,35405,1503,"[\""Charger\"", \""Wireless Mouse\""]",2753.08,"{\""loyalty\"": \""25%\""}",42462,1,"""Europe""" +2023-05-01,35406,8673,"[\""Phone\"", \""Charger\""]",4400.39,"{\""seasonal\"": \""19%\""}",131235,0,"""Europe""" +2023-03-22,35407,8148,"[\""Charger\""]",3965.38,{},43559,1,"""Europe""" +2023-05-09,35408,8886,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3867.12,{},175028,0,"""Asia""" +2023-11-06,35409,2623,"[\""Phone\"", \""Headphones\""]",2313.06,{},75027,0,"""Asia""" +2024-02-13,35410,7291,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2301.61,{},169771,1,"""Asia""" +2023-01-11,35411,8023,"[\""Tablet\""]",665.34,{},45995,1,"""Africa""" +2024-11-23,35412,9347,"[\""Tablet\""]",4641.1,"{\""seasonal\"": \""6%\""}",163547,0,"""Asia""" +2024-10-24,35413,1168,"[\""Phone\"", \""Monitor\""]",3195.61,"{\""promo\"": \""24%\""}",214234,0,"""Africa""" +2024-12-02,35414,1174,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3527.49,{},158401,1,"""Europe""" +2023-10-15,35415,3138,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",766.02,{},128064,1,"""North America""" +2023-12-24,35416,3782,"[\""Headphones\"", \""Wireless Mouse\""]",1819.03,{},5190,0,"""Asia""" +2024-05-24,35417,3129,"[\""Headphones\""]",3341.45,"{\"": \""10%\""}",149271,0,"""Africa""" +2023-05-03,35418,3254,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",789.81,{},168594,0,"""South America""" +2023-10-28,35419,9576,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2727.18,{},173557,0,"""Asia""" +2023-10-06,35420,1157,"[\""Keyboard\""]",2934.93,"{\"": \""5%\""}",212366,1,"""North America""" +2024-09-21,35421,6344,"[\""Monitor\"", \""Laptop\""]",4020.82,{},33488,1,"""Asia""" +2023-06-16,35422,7252,"[\""Charger\""]",3992.72,{},219075,1,"""South America""" +2023-12-28,35423,6114,"[\""Tablet\"", \""Charger\""]",3284.76,{},33565,1,"""Europe""" +2024-03-08,35424,5697,"[\""Tablet\""]",2901.4,{},271006,0,"""Asia""" +2023-10-27,35425,5857,"[\""Laptop\""]",3820.16,"{\""promo\"": \""11%\""}",124386,0,"""Europe""" +2024-12-08,35426,7007,"[\""Phone\""]",3418.04,{},150487,1,"""Europe""" +2023-04-16,35427,5301,"[\""Tablet\"", \""Headphones\""]",4952.65,"{\""loyalty\"": \""19%\""}",50337,1,"""Asia""" +2023-05-13,35428,2422,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",612.94,"{\""seasonal\"": \""18%\""}",2019,1,"""Europe""" +2023-06-17,35429,826,"[\""Monitor\"", \""Tablet\""]",4711.75,"{\""seasonal\"": \""7%\""}",138771,0,"""Europe""" +2023-11-20,35430,4979,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3729.46,"{\"": \""16%\""}",269367,1,"""North America""" +2023-06-02,35431,4411,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4397.4,"{\""loyalty\"": \""6%\""}",143709,1,"""Africa""" +2024-11-07,35432,7876,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2800.74,{},159636,0,"""North America""" +2023-09-26,35433,130,"[\""Wireless Mouse\""]",3798.84,"{\"": \""11%\""}",165847,1,"""Europe""" +2023-02-22,35434,7044,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",279.31,"{\""loyalty\"": \""9%\""}",299836,0,"""Europe""" +2024-04-22,35435,1944,"[\""Wireless Mouse\""]",1138.4,{},291087,1,"""Europe""" +2023-02-08,35436,3704,"[\""Tablet\"", \""Keyboard\""]",558.94,{},49854,1,"""North America""" +2024-08-27,35437,5655,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4422.84,{},172250,1,"""North America""" +2023-05-19,35438,9939,"[\""Phone\""]",3862.71,"{\""loyalty\"": \""5%\""}",258713,1,"""South America""" +2023-02-08,35439,125,"[\""Phone\"", \""Tablet\""]",3920.68,"{\""loyalty\"": \""21%\""}",287396,0,"""Africa""" +2024-10-03,35440,9259,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3356.72,"{\""promo\"": \""16%\""}",7073,1,"""Europe""" +2024-09-01,35441,3649,"[\""Monitor\"", \""Headphones\""]",4894.66,"{\""promo\"": \""30%\""}",38660,1,"""Africa""" +2024-04-02,35442,4720,"[\""Phone\""]",4799.82,{},148186,1,"""Europe""" +2024-04-14,35443,1303,"[\""Headphones\"", \""Phone\""]",3554.33,"{\"": \""20%\""}",206366,0,"""Europe""" +2024-09-08,35444,4172,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3218.12,{},289290,0,"""South America""" +2024-10-25,35445,35,"[\""Laptop\""]",920.07,{},19611,0,"""Africa""" +2023-10-04,35446,5152,"[\""Wireless Mouse\"", \""Monitor\""]",2029.18,"{\"": \""29%\""}",278548,1,"""Europe""" +2024-04-03,35447,5867,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1480.82,"{\""seasonal\"": \""9%\""}",114256,0,"""Africa""" +2024-11-29,35448,3634,"[\""Headphones\""]",3468.76,{},128093,0,"""Africa""" +2024-07-06,35449,9892,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3088.1,"{\""loyalty\"": \""8%\""}",167476,0,"""South America""" +2023-10-24,35450,5616,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2735.25,{},152037,1,"""North America""" +2024-10-29,35451,7637,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2172.95,"{\""seasonal\"": \""8%\""}",166379,1,"""North America""" +2024-07-18,35452,797,"[\""Phone\"", \""Monitor\""]",626.51,"{\"": \""16%\""}",65373,1,"""Africa""" +2023-01-31,35453,5583,"[\""Keyboard\""]",91.06,{},25199,1,"""Africa""" +2024-07-20,35454,450,"[\""Monitor\""]",4499.44,"{\""promo\"": \""22%\""}",87319,0,"""Asia""" +2024-12-24,35455,8495,"[\""Monitor\""]",1614.58,{},30506,1,"""South America""" +2024-12-25,35456,3754,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3544.31,{},27693,0,"""South America""" +2024-10-08,35457,5133,"[\""Charger\""]",2927.4,{},149203,1,"""Europe""" +2024-05-21,35458,4911,"[\""Wireless Mouse\""]",895.8,"{\""seasonal\"": \""30%\""}",168488,0,"""Asia""" +2024-11-19,35459,9201,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3145.91,"{\""seasonal\"": \""30%\""}",253332,1,"""North America""" +2023-07-09,35460,6778,"[\""Phone\""]",2529.47,{},244243,0,"""Europe""" +2023-04-16,35461,9057,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3725.24,"{\"": \""19%\""}",110229,0,"""North America""" +2024-01-02,35462,1577,"[\""Phone\"", \""Headphones\""]",640.51,{},284014,1,"""Europe""" +2023-11-30,35463,8494,"[\""Headphones\"", \""Tablet\""]",3838.53,{},54698,0,"""Africa""" +2024-02-13,35464,5121,"[\""Charger\""]",4703.36,{},149622,1,"""North America""" +2023-06-24,35465,7605,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4842.67,{},184043,1,"""Europe""" +2024-05-26,35466,482,"[\""Headphones\""]",2762.18,{},179747,1,"""North America""" +2023-06-01,35467,8010,"[\""Wireless Mouse\"", \""Tablet\""]",2400.92,{},242692,1,"""Africa""" +2024-01-08,35468,1811,"[\""Monitor\""]",3874.79,"{\""loyalty\"": \""23%\""}",160943,1,"""Asia""" +2024-06-06,35469,3840,"[\""Monitor\""]",4625.25,{},57998,1,"""South America""" +2023-08-01,35470,2791,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",504.85,{},286857,1,"""Europe""" +2023-11-12,35471,3293,"[\""Charger\"", \""Phone\""]",2705.15,{},160150,0,"""South America""" +2024-03-22,35472,6775,"[\""Phone\""]",2903.12,{},237538,0,"""North America""" +2024-11-25,35473,3087,"[\""Keyboard\""]",3311.33,{},60418,0,"""North America""" +2023-01-15,35474,2983,"[\""Monitor\"", \""Laptop\""]",3768.31,{},278108,1,"""Africa""" +2024-08-13,35475,4899,"[\""Monitor\""]",4283.53,{},129024,1,"""Europe""" +2024-08-22,35476,6264,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",487.0,{},286367,0,"""Europe""" +2024-12-31,35477,7379,"[\""Laptop\"", \""Tablet\""]",3436.3,{},117196,0,"""North America""" +2024-01-15,35478,661,"[\""Charger\""]",1611.94,"{\""seasonal\"": \""21%\""}",193529,1,"""North America""" +2024-06-05,35479,4464,"[\""Laptop\""]",729.0,{},152322,0,"""Asia""" +2024-02-19,35480,2940,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4688.41,{},285900,0,"""South America""" +2024-04-28,35481,5653,"[\""Headphones\"", \""Wireless Mouse\""]",3275.17,"{\""promo\"": \""27%\""}",214285,0,"""Europe""" +2024-04-01,35482,6574,"[\""Keyboard\"", \""Monitor\""]",439.62,"{\""promo\"": \""8%\""}",61087,1,"""Asia""" +2024-07-12,35483,7731,"[\""Keyboard\"", \""Wireless Mouse\""]",944.64,"{\""promo\"": \""21%\""}",287828,0,"""Africa""" +2023-03-18,35484,114,"[\""Charger\""]",2342.84,{},223274,1,"""Europe""" +2024-02-24,35485,7097,"[\""Tablet\"", \""Headphones\""]",4424.28,"{\"": \""12%\""}",161667,1,"""Asia""" +2024-12-08,35486,5495,"[\""Charger\"", \""Phone\"", \""Monitor\""]",750.65,"{\"": \""13%\""}",286359,0,"""Africa""" +2023-07-29,35487,6163,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2216.98,{},155488,0,"""Africa""" +2023-07-07,35488,4807,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2224.96,{},130141,1,"""Asia""" +2024-07-31,35489,405,"[\""Headphones\""]",3682.65,{},218765,0,"""Europe""" +2024-03-17,35490,1353,"[\""Headphones\"", \""Charger\""]",310.67,{},163647,1,"""Asia""" +2024-11-10,35491,9402,"[\""Phone\"", \""Keyboard\""]",702.84,"{\""promo\"": \""29%\""}",143118,1,"""Europe""" +2023-03-30,35492,3669,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",365.53,{},131141,0,"""Europe""" +2023-04-06,35493,7769,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2553.32,"{\""seasonal\"": \""10%\""}",71412,1,"""Europe""" +2024-11-16,35494,4017,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3956.42,{},14477,0,"""South America""" +2024-08-17,35495,8523,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",480.65,"{\"": \""7%\""}",113119,0,"""South America""" +2024-09-12,35496,8118,"[\""Keyboard\""]",641.66,"{\""loyalty\"": \""17%\""}",125626,0,"""Africa""" +2024-03-24,35497,9922,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",169.08,"{\""promo\"": \""10%\""}",266772,1,"""North America""" +2024-08-05,35498,3650,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4024.01,"{\""loyalty\"": \""18%\""}",268917,1,"""Africa""" +2023-07-24,35499,678,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3209.11,{},290915,0,"""Africa""" +2024-02-16,35500,9776,"[\""Laptop\"", \""Wireless Mouse\""]",4519.63,"{\"": \""5%\""}",291279,1,"""North America""" +2024-04-01,35501,1819,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",374.31,{},108984,1,"""Africa""" +2023-01-18,35502,8997,"[\""Laptop\""]",1775.73,"{\""loyalty\"": \""15%\""}",235085,1,"""South America""" +2023-03-14,35503,7182,"[\""Keyboard\"", \""Headphones\""]",2001.07,"{\"": \""7%\""}",199965,0,"""Africa""" +2024-12-23,35504,2140,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2888.92,"{\"": \""25%\""}",64740,0,"""Asia""" +2023-07-18,35505,5628,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4224.14,{},24385,1,"""Europe""" +2024-08-28,35506,537,"[\""Headphones\""]",2472.03,"{\"": \""13%\""}",132762,0,"""North America""" +2023-06-12,35507,8687,"[\""Wireless Mouse\"", \""Charger\""]",4861.43,{},41401,0,"""Africa""" +2024-07-09,35508,2560,"[\""Charger\""]",326.08,{},180371,1,"""Europe""" +2023-04-14,35509,7941,"[\""Headphones\""]",4820.42,{},294234,1,"""North America""" +2023-04-04,35510,9515,"[\""Monitor\"", \""Laptop\""]",4329.14,{},40802,0,"""Europe""" +2024-09-24,35511,2020,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1849.84,{},31308,0,"""Africa""" +2023-03-06,35512,8818,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3279.47,{},237191,1,"""North America""" +2023-10-13,35513,8191,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4474.29,"{\""promo\"": \""19%\""}",182885,1,"""Europe""" +2024-02-22,35514,6680,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3690.51,{},222040,1,"""Africa""" +2024-01-02,35515,92,"[\""Tablet\"", \""Laptop\""]",2059.2,{},221809,0,"""Africa""" +2024-03-11,35516,9821,"[\""Headphones\"", \""Monitor\""]",3490.43,"{\""loyalty\"": \""29%\""}",68696,1,"""North America""" +2024-01-12,35517,9254,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2764.03,"{\""promo\"": \""7%\""}",54687,1,"""Asia""" +2024-04-22,35518,1320,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2378.31,"{\""seasonal\"": \""12%\""}",45856,1,"""North America""" +2023-09-17,35519,4208,"[\""Charger\""]",4112.78,{},225811,0,"""North America""" +2024-02-08,35520,2476,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1916.39,"{\"": \""21%\""}",29973,0,"""South America""" +2023-09-14,35521,1522,"[\""Charger\"", \""Monitor\""]",3044.46,{},210330,1,"""South America""" +2023-06-27,35522,9074,"[\""Keyboard\""]",1281.66,{},271304,1,"""Asia""" +2024-03-17,35523,9585,"[\""Charger\"", \""Tablet\""]",3583.55,{},209178,1,"""Asia""" +2023-07-16,35524,1751,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2315.21,"{\"": \""13%\""}",293820,1,"""Europe""" +2023-03-14,35525,4271,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",297.22,"{\""seasonal\"": \""10%\""}",249877,1,"""North America""" +2024-03-05,35526,6344,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1076.12,"{\"": \""30%\""}",166348,1,"""Asia""" +2024-11-09,35527,6099,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4689.67,"{\""seasonal\"": \""21%\""}",273814,1,"""Asia""" +2024-12-21,35528,7551,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4138.76,{},251815,1,"""North America""" +2023-11-04,35529,3042,"[\""Keyboard\"", \""Charger\""]",4025.09,{},150776,1,"""North America""" +2023-11-20,35530,9356,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",964.32,{},93747,0,"""Europe""" +2023-12-22,35531,5674,"[\""Wireless Mouse\""]",2441.31,"{\""loyalty\"": \""17%\""}",170873,1,"""Asia""" +2024-11-29,35532,9489,"[\""Monitor\""]",2027.21,{},50547,0,"""Europe""" +2024-03-08,35533,9380,"[\""Laptop\"", \""Charger\""]",4519.13,"{\""loyalty\"": \""30%\""}",34195,0,"""Africa""" +2024-05-21,35534,8562,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2928.43,"{\""loyalty\"": \""15%\""}",160685,1,"""Africa""" +2024-05-25,35535,532,"[\""Wireless Mouse\"", \""Headphones\""]",885.87,{},14798,0,"""Asia""" +2023-09-29,35536,5833,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1135.27,{},63608,1,"""South America""" +2023-09-12,35537,6017,"[\""Phone\"", \""Charger\""]",4841.48,"{\"": \""23%\""}",196071,1,"""South America""" +2023-05-16,35538,9951,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",871.19,{},281059,1,"""South America""" +2024-10-01,35539,4645,"[\""Monitor\"", \""Charger\""]",2291.4,"{\""loyalty\"": \""22%\""}",263687,0,"""North America""" +2024-12-31,35540,5108,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2545.65,{},276178,0,"""North America""" +2023-11-05,35541,4560,"[\""Charger\""]",1000.39,"{\""loyalty\"": \""15%\""}",143693,1,"""South America""" +2023-02-04,35542,6391,"[\""Monitor\""]",3556.03,"{\""seasonal\"": \""6%\""}",282635,0,"""South America""" +2024-10-17,35543,1645,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1564.06,"{\""promo\"": \""28%\""}",194152,1,"""Asia""" +2024-02-12,35544,3904,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1304.79,"{\"": \""17%\""}",268193,0,"""Africa""" +2023-08-18,35545,5061,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1959.73,"{\""loyalty\"": \""26%\""}",293566,1,"""Europe""" +2023-02-11,35546,2741,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",269.44,{},205714,1,"""Asia""" +2024-12-22,35547,5581,"[\""Wireless Mouse\"", \""Charger\""]",4928.67,"{\"": \""5%\""}",225511,1,"""Africa""" +2024-10-31,35548,2558,"[\""Wireless Mouse\"", \""Phone\""]",1254.45,"{\""seasonal\"": \""28%\""}",215636,1,"""South America""" +2023-06-21,35549,7136,"[\""Keyboard\"", \""Monitor\""]",410.45,"{\"": \""14%\""}",156530,1,"""South America""" +2023-12-13,35550,1061,"[\""Phone\"", \""Charger\""]",1559.66,{},172457,0,"""South America""" +2023-03-19,35551,8110,"[\""Laptop\""]",1259.94,"{\""loyalty\"": \""28%\""}",142454,0,"""Africa""" +2024-05-26,35552,1608,"[\""Keyboard\""]",1071.92,"{\""loyalty\"": \""10%\""}",106031,0,"""South America""" +2024-07-20,35553,8165,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4346.41,{},175346,0,"""Asia""" +2024-05-21,35554,3947,"[\""Laptop\"", \""Monitor\""]",4722.93,{},7263,1,"""Africa""" +2023-09-09,35555,7502,"[\""Phone\"", \""Keyboard\""]",2793.87,{},183298,1,"""Asia""" +2023-04-13,35556,521,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1366.55,{},16627,0,"""Asia""" +2023-01-04,35557,8990,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",429.12,"{\""loyalty\"": \""12%\""}",13007,0,"""Europe""" +2024-07-09,35558,5810,"[\""Headphones\"", \""Laptop\""]",627.85,"{\""promo\"": \""23%\""}",124287,1,"""South America""" +2023-04-24,35559,4889,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2365.0,{},199199,0,"""North America""" +2024-07-29,35560,8102,"[\""Monitor\""]",3076.58,{},127438,0,"""Africa""" +2023-07-12,35561,7986,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2901.89,"{\""seasonal\"": \""20%\""}",124514,0,"""Africa""" +2024-09-14,35562,9256,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1236.6,{},20641,1,"""Asia""" +2024-09-11,35563,6814,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4803.42,"{\"": \""15%\""}",296519,1,"""North America""" +2024-12-02,35564,5803,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2648.67,{},289557,0,"""Asia""" +2023-08-30,35565,4727,"[\""Wireless Mouse\""]",1474.61,{},99402,0,"""North America""" +2023-07-10,35566,2049,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1625.26,"{\"": \""30%\""}",275325,0,"""Asia""" +2024-09-05,35567,7922,"[\""Wireless Mouse\"", \""Charger\""]",4811.64,"{\""seasonal\"": \""30%\""}",192263,1,"""Africa""" +2024-01-26,35568,525,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",815.41,{},3414,0,"""South America""" +2023-12-15,35569,7097,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",302.59,{},92528,1,"""North America""" +2024-11-30,35570,3670,"[\""Charger\""]",4249.63,"{\""seasonal\"": \""9%\""}",60609,0,"""South America""" +2024-02-11,35571,2301,"[\""Charger\""]",4043.83,"{\""seasonal\"": \""19%\""}",136606,1,"""North America""" +2024-10-31,35572,5282,"[\""Charger\"", \""Keyboard\""]",3159.39,"{\"": \""10%\""}",79178,0,"""South America""" +2024-05-17,35573,5895,"[\""Laptop\""]",1024.55,{},131813,1,"""Africa""" +2023-01-27,35574,4501,"[\""Charger\"", \""Keyboard\""]",3078.96,"{\""promo\"": \""28%\""}",55742,1,"""North America""" +2023-09-04,35575,5395,"[\""Laptop\""]",4636.52,"{\""seasonal\"": \""19%\""}",194563,1,"""North America""" +2024-11-14,35576,2633,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2713.44,{},126330,1,"""South America""" +2023-09-03,35577,3393,"[\""Monitor\"", \""Headphones\""]",3793.72,"{\""promo\"": \""18%\""}",84587,1,"""Africa""" +2023-03-13,35578,9592,"[\""Tablet\""]",2536.36,"{\"": \""30%\""}",292592,1,"""Africa""" +2023-01-26,35579,2104,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3015.1,"{\"": \""6%\""}",52827,1,"""South America""" +2023-10-31,35580,2865,"[\""Charger\""]",3748.8,{},269801,0,"""North America""" +2023-03-31,35581,4469,"[\""Phone\"", \""Monitor\""]",138.99,{},200902,1,"""Europe""" +2023-09-02,35582,7361,"[\""Phone\""]",4774.35,"{\""loyalty\"": \""16%\""}",221878,1,"""Africa""" +2024-05-17,35583,9419,"[\""Monitor\"", \""Headphones\""]",1477.83,{},288044,0,"""South America""" +2024-01-29,35584,7067,"[\""Phone\"", \""Wireless Mouse\""]",2550.52,"{\""seasonal\"": \""15%\""}",257759,1,"""Africa""" +2023-09-23,35585,9530,"[\""Wireless Mouse\""]",4694.72,"{\""loyalty\"": \""16%\""}",291678,0,"""North America""" +2023-03-07,35586,1118,"[\""Headphones\""]",1520.86,{},139019,0,"""North America""" +2024-03-09,35587,8182,"[\""Headphones\""]",2330.98,{},285912,0,"""South America""" +2024-05-03,35588,5196,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2003.37,"{\"": \""18%\""}",203172,1,"""North America""" +2023-05-02,35589,8262,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",220.41,{},230175,1,"""North America""" +2024-09-14,35590,2988,"[\""Wireless Mouse\""]",3615.8,"{\""promo\"": \""12%\""}",84577,1,"""North America""" +2024-12-09,35591,5205,"[\""Laptop\"", \""Phone\""]",834.93,"{\""seasonal\"": \""9%\""}",271069,1,"""South America""" +2024-08-16,35592,8141,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1304.43,"{\""loyalty\"": \""27%\""}",244958,1,"""South America""" +2023-09-21,35593,4194,"[\""Wireless Mouse\""]",424.93,"{\""loyalty\"": \""16%\""}",129733,0,"""Africa""" +2023-10-27,35594,2747,"[\""Keyboard\""]",3024.66,{},179716,1,"""Europe""" +2024-02-02,35595,7366,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3579.09,"{\""seasonal\"": \""27%\""}",193781,0,"""Africa""" +2023-12-11,35596,6645,"[\""Laptop\""]",3088.04,{},40607,0,"""Asia""" +2023-04-28,35597,8487,"[\""Phone\"", \""Keyboard\""]",161.86,{},121411,0,"""Africa""" +2023-08-16,35598,8117,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2960.12,{},235292,1,"""South America""" +2024-01-26,35599,4898,"[\""Charger\""]",4746.78,"{\""promo\"": \""15%\""}",57944,0,"""Africa""" +2023-03-31,35600,1927,"[\""Laptop\"", \""Monitor\""]",1483.0,"{\"": \""15%\""}",155715,0,"""Asia""" +2023-07-06,35601,5408,"[\""Tablet\"", \""Headphones\""]",4950.63,{},148501,1,"""Asia""" +2024-08-21,35602,2741,"[\""Monitor\"", \""Headphones\""]",2309.04,{},126794,0,"""South America""" +2023-10-29,35603,5340,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1942.26,"{\""seasonal\"": \""13%\""}",109518,1,"""Europe""" +2024-11-26,35604,7633,"[\""Wireless Mouse\"", \""Monitor\""]",3177.66,{},57295,1,"""North America""" +2024-12-17,35605,1828,"[\""Tablet\"", \""Phone\""]",1940.49,{},142507,1,"""South America""" +2023-02-28,35606,726,"[\""Laptop\""]",2040.67,{},1743,1,"""Europe""" +2024-08-19,35607,5246,"[\""Tablet\""]",2426.12,"{\"": \""17%\""}",40236,1,"""Africa""" +2024-07-08,35608,2375,"[\""Wireless Mouse\"", \""Charger\""]",961.71,"{\""promo\"": \""29%\""}",66305,0,"""Europe""" +2023-04-30,35609,3150,"[\""Keyboard\""]",3256.41,{},116700,1,"""Asia""" +2023-08-21,35610,4138,"[\""Charger\"", \""Keyboard\""]",2829.35,"{\""promo\"": \""10%\""}",177642,0,"""South America""" +2024-11-07,35611,7187,"[\""Charger\""]",319.91,{},4001,1,"""North America""" +2024-10-11,35612,6161,"[\""Tablet\""]",1480.63,"{\"": \""22%\""}",88164,0,"""North America""" +2024-02-01,35613,2902,"[\""Tablet\"", \""Laptop\""]",3356.44,"{\""promo\"": \""25%\""}",36598,0,"""Europe""" +2024-02-23,35614,5080,"[\""Headphones\"", \""Tablet\""]",688.47,{},60198,0,"""North America""" +2023-11-20,35615,9566,"[\""Tablet\""]",579.47,"{\""loyalty\"": \""5%\""}",175163,0,"""Europe""" +2023-12-05,35616,8594,"[\""Phone\""]",1708.4,"{\"": \""6%\""}",210474,1,"""South America""" +2024-05-30,35617,1302,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4494.58,{},93075,1,"""South America""" +2024-08-30,35618,6176,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4992.47,{},84887,0,"""Europe""" +2023-05-11,35619,3069,"[\""Phone\""]",3020.96,{},15212,1,"""Europe""" +2023-06-11,35620,9310,"[\""Wireless Mouse\"", \""Laptop\""]",4328.54,"{\""promo\"": \""27%\""}",47537,1,"""Europe""" +2024-09-28,35621,4008,"[\""Laptop\"", \""Monitor\""]",390.98,"{\"": \""14%\""}",168105,1,"""South America""" +2024-01-10,35622,2978,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1220.03,"{\""seasonal\"": \""29%\""}",111432,0,"""Asia""" +2023-08-28,35623,7067,"[\""Phone\"", \""Tablet\""]",1050.04,{},16669,0,"""North America""" +2023-09-30,35624,2059,"[\""Wireless Mouse\""]",2141.52,"{\""seasonal\"": \""11%\""}",30444,1,"""Europe""" +2023-09-10,35625,2207,"[\""Wireless Mouse\"", \""Tablet\""]",1445.16,"{\""seasonal\"": \""19%\""}",267262,1,"""Asia""" +2024-03-11,35626,8863,"[\""Phone\""]",1572.18,{},293026,1,"""Europe""" +2024-02-05,35627,8862,"[\""Wireless Mouse\""]",2412.28,"{\""loyalty\"": \""15%\""}",119905,0,"""South America""" +2024-11-17,35628,650,"[\""Laptop\""]",105.52,{},153697,0,"""Africa""" +2024-07-17,35629,1700,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2276.9,{},9855,0,"""South America""" +2024-07-31,35630,2455,"[\""Headphones\""]",2470.19,{},292214,0,"""Europe""" +2024-01-01,35631,426,"[\""Monitor\"", \""Keyboard\""]",4432.43,"{\""seasonal\"": \""17%\""}",35300,1,"""Europe""" +2024-11-30,35632,3504,"[\""Tablet\""]",3055.43,"{\""loyalty\"": \""11%\""}",8705,1,"""Asia""" +2023-12-03,35633,1423,"[\""Monitor\"", \""Wireless Mouse\""]",3968.16,{},207571,0,"""Africa""" +2023-02-18,35634,9564,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2722.93,"{\""seasonal\"": \""26%\""}",84988,1,"""Africa""" +2023-12-06,35635,1589,"[\""Wireless Mouse\""]",3666.95,{},12404,1,"""North America""" +2024-12-20,35636,5826,"[\""Tablet\""]",2224.15,"{\""promo\"": \""20%\""}",54969,0,"""Africa""" +2023-05-22,35637,7509,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2989.66,{},67300,1,"""Europe""" +2023-12-02,35638,1049,"[\""Tablet\"", \""Phone\""]",348.8,"{\""seasonal\"": \""7%\""}",289719,0,"""South America""" +2024-05-27,35639,8069,"[\""Laptop\"", \""Tablet\""]",826.6,{},77160,0,"""South America""" +2024-11-19,35640,8190,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",622.17,"{\"": \""6%\""}",148698,0,"""Africa""" +2023-11-05,35641,7788,"[\""Laptop\""]",3379.28,{},83019,1,"""Africa""" +2023-02-27,35642,6589,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3015.22,{},83488,1,"""North America""" +2023-12-16,35643,628,"[\""Tablet\""]",3516.31,"{\""seasonal\"": \""26%\""}",196289,0,"""Africa""" +2023-01-22,35644,5100,"[\""Phone\"", \""Charger\""]",4276.48,{},114582,1,"""South America""" +2024-10-12,35645,5559,"[\""Headphones\"", \""Wireless Mouse\""]",1093.07,{},277172,0,"""Africa""" +2024-09-20,35646,5703,"[\""Phone\"", \""Keyboard\""]",4238.6,"{\""loyalty\"": \""18%\""}",38855,1,"""Africa""" +2024-08-31,35647,9750,"[\""Headphones\"", \""Laptop\""]",3955.29,{},53479,1,"""North America""" +2023-11-23,35648,7501,"[\""Monitor\""]",658.3,{},139398,1,"""Europe""" +2024-03-30,35649,7497,"[\""Headphones\""]",327.82,"{\""seasonal\"": \""18%\""}",263548,1,"""South America""" +2023-02-03,35650,640,"[\""Monitor\"", \""Headphones\""]",2714.37,{},11120,1,"""Asia""" +2023-08-09,35651,3034,"[\""Monitor\""]",2314.75,"{\""loyalty\"": \""8%\""}",82204,0,"""Africa""" +2024-09-05,35652,4286,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",528.65,"{\""promo\"": \""25%\""}",135808,0,"""South America""" +2023-01-31,35653,1219,"[\""Phone\"", \""Tablet\""]",4727.52,{},40947,0,"""Europe""" +2023-12-13,35654,435,"[\""Headphones\""]",2986.05,{},250737,0,"""Africa""" +2024-01-16,35655,307,"[\""Keyboard\""]",1596.02,"{\"": \""17%\""}",180156,1,"""North America""" +2024-06-12,35656,471,"[\""Wireless Mouse\""]",2800.07,{},33573,1,"""North America""" +2023-05-25,35657,7474,"[\""Keyboard\""]",3287.08,{},280884,0,"""Europe""" +2024-09-15,35658,1084,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",497.2,{},105391,1,"""Asia""" +2024-04-08,35659,6441,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3790.93,{},23227,1,"""Asia""" +2024-08-16,35660,2496,"[\""Charger\"", \""Monitor\""]",4686.99,{},285231,1,"""North America""" +2023-05-27,35661,3120,"[\""Phone\""]",3744.44,"{\""promo\"": \""14%\""}",171778,1,"""Africa""" +2023-01-06,35662,6977,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",825.77,{},117528,1,"""South America""" +2023-07-16,35663,5388,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3282.79,{},163780,0,"""North America""" +2024-06-21,35664,7695,"[\""Phone\""]",3223.64,{},236804,0,"""Africa""" +2024-10-09,35665,8162,"[\""Phone\""]",2843.03,"{\""promo\"": \""13%\""}",237914,1,"""North America""" +2023-03-09,35666,264,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1481.36,{},160687,0,"""North America""" +2023-06-05,35667,847,"[\""Headphones\""]",4142.03,{},178054,1,"""Africa""" +2023-04-10,35668,7401,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1009.45,"{\"": \""19%\""}",231816,0,"""North America""" +2024-05-25,35669,8479,"[\""Monitor\"", \""Charger\""]",4982.07,{},112762,1,"""Asia""" +2024-02-23,35670,2113,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4715.49,{},207971,1,"""Europe""" +2023-04-02,35671,7664,"[\""Phone\"", \""Keyboard\""]",270.54,{},55628,1,"""Africa""" +2023-10-05,35672,5382,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4553.41,"{\"": \""15%\""}",112503,1,"""Asia""" +2024-03-03,35673,9940,"[\""Headphones\""]",1313.24,"{\""loyalty\"": \""9%\""}",251484,0,"""Asia""" +2023-09-20,35674,8721,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3306.2,{},156399,1,"""North America""" +2023-11-07,35675,5190,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4820.66,{},128412,0,"""Europe""" +2023-08-27,35676,3723,"[\""Laptop\"", \""Wireless Mouse\""]",4207.77,{},111706,0,"""Asia""" +2023-02-03,35677,6637,"[\""Laptop\"", \""Phone\""]",4083.97,{},165988,1,"""Africa""" +2024-04-07,35678,3166,"[\""Phone\""]",2328.57,"{\""loyalty\"": \""24%\""}",69887,0,"""North America""" +2024-06-16,35679,7520,"[\""Charger\""]",4238.78,{},165394,0,"""South America""" +2023-02-21,35680,6368,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4667.34,"{\"": \""22%\""}",287874,1,"""Africa""" +2023-04-14,35681,4669,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2837.11,"{\""promo\"": \""30%\""}",62730,1,"""Africa""" +2024-09-08,35682,51,"[\""Wireless Mouse\""]",4821.2,"{\"": \""14%\""}",193121,0,"""North America""" +2023-08-05,35683,9431,"[\""Charger\""]",4988.19,{},73461,1,"""Asia""" +2024-03-20,35684,7531,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2507.18,"{\"": \""13%\""}",123043,0,"""South America""" +2023-11-18,35685,4424,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",487.48,{},212388,1,"""Europe""" +2023-06-21,35686,9432,"[\""Phone\""]",2980.36,{},107111,0,"""South America""" +2024-08-25,35687,8070,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",173.61,"{\""promo\"": \""7%\""}",100244,1,"""Africa""" +2023-01-12,35688,4091,"[\""Headphones\""]",2624.16,"{\""promo\"": \""6%\""}",43189,1,"""Europe""" +2024-08-28,35689,7597,"[\""Wireless Mouse\""]",1033.27,"{\"": \""22%\""}",10964,1,"""Asia""" +2024-03-08,35690,7021,"[\""Charger\""]",3207.39,"{\""seasonal\"": \""25%\""}",5304,0,"""South America""" +2024-09-10,35691,9967,"[\""Laptop\""]",3677.12,"{\""promo\"": \""18%\""}",22641,1,"""South America""" +2024-11-28,35692,7109,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1180.35,"{\"": \""21%\""}",117996,1,"""South America""" +2024-06-02,35693,8714,"[\""Headphones\"", \""Wireless Mouse\""]",854.39,"{\""loyalty\"": \""17%\""}",242723,0,"""North America""" +2024-02-25,35694,4544,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1744.23,{},299789,1,"""Africa""" +2023-07-05,35695,9454,"[\""Keyboard\""]",4678.51,"{\""promo\"": \""28%\""}",8472,0,"""North America""" +2024-04-15,35696,1068,"[\""Headphones\""]",3439.99,"{\"": \""26%\""}",52704,0,"""Asia""" +2024-08-15,35697,5100,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",419.27,"{\""promo\"": \""30%\""}",161891,1,"""South America""" +2023-03-12,35698,7690,"[\""Laptop\""]",4100.91,{},88664,0,"""Africa""" +2024-07-02,35699,8000,"[\""Tablet\""]",3844.87,"{\""promo\"": \""29%\""}",226251,1,"""North America""" +2024-01-02,35700,3668,"[\""Monitor\"", \""Phone\""]",2509.12,"{\""seasonal\"": \""25%\""}",193653,0,"""North America""" +2023-05-19,35701,1658,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3685.7,{},18163,0,"""Europe""" +2023-03-03,35702,4714,"[\""Charger\""]",424.14,"{\""seasonal\"": \""24%\""}",91978,1,"""Africa""" +2024-12-04,35703,9130,"[\""Laptop\""]",2685.71,"{\"": \""13%\""}",291386,1,"""Asia""" +2024-04-19,35704,2069,"[\""Tablet\""]",165.17,"{\""promo\"": \""12%\""}",114574,0,"""Africa""" +2023-06-08,35705,4780,"[\""Wireless Mouse\"", \""Headphones\""]",3806.47,"{\""loyalty\"": \""8%\""}",86652,1,"""North America""" +2023-09-05,35706,7567,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1025.04,"{\""loyalty\"": \""24%\""}",121103,0,"""Asia""" +2023-05-28,35707,4929,"[\""Monitor\"", \""Laptop\""]",3528.19,"{\"": \""30%\""}",217485,1,"""Europe""" +2023-11-09,35708,9458,"[\""Wireless Mouse\""]",2794.28,{},213996,1,"""Asia""" +2023-05-29,35709,9781,"[\""Keyboard\""]",4772.84,"{\""seasonal\"": \""22%\""}",92148,1,"""Europe""" +2023-06-22,35710,3781,"[\""Charger\"", \""Headphones\""]",637.64,"{\""promo\"": \""9%\""}",97365,1,"""Africa""" +2023-10-03,35711,4108,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4999.06,"{\"": \""9%\""}",263356,1,"""North America""" +2023-07-04,35712,9088,"[\""Keyboard\""]",4160.51,"{\""promo\"": \""20%\""}",228115,0,"""Europe""" +2024-12-02,35713,6030,"[\""Headphones\"", \""Tablet\""]",2378.67,"{\"": \""16%\""}",172864,0,"""Europe""" +2024-02-06,35714,1564,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3939.04,"{\"": \""8%\""}",287881,1,"""South America""" +2023-03-25,35715,2031,"[\""Charger\""]",4891.13,{},277935,1,"""North America""" +2023-03-22,35716,886,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3078.97,"{\"": \""10%\""}",163137,0,"""Asia""" +2024-10-28,35717,7212,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2311.68,{},132358,0,"""Asia""" +2024-01-09,35718,196,"[\""Phone\""]",4544.05,{},109534,0,"""Africa""" +2023-03-15,35719,6635,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2434.43,"{\""loyalty\"": \""12%\""}",232439,1,"""Asia""" +2024-10-27,35720,8112,"[\""Phone\"", \""Laptop\""]",2655.09,"{\"": \""13%\""}",62383,0,"""North America""" +2024-04-29,35721,4506,"[\""Headphones\""]",387.26,"{\""loyalty\"": \""8%\""}",17878,1,"""Europe""" +2024-03-03,35722,6539,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1267.0,{},93500,0,"""South America""" +2023-11-26,35723,519,"[\""Wireless Mouse\""]",322.87,{},79665,0,"""Asia""" +2024-04-06,35724,3597,"[\""Tablet\""]",426.55,"{\""promo\"": \""12%\""}",228841,0,"""Africa""" +2023-08-09,35725,6661,"[\""Phone\""]",3771.19,"{\"": \""7%\""}",298521,1,"""Europe""" +2023-06-14,35726,9725,"[\""Monitor\"", \""Wireless Mouse\""]",4432.3,{},165893,1,"""South America""" +2023-11-22,35727,5814,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2299.52,{},254717,0,"""North America""" +2023-09-30,35728,4261,"[\""Phone\""]",1705.08,{},95729,0,"""North America""" +2023-01-11,35729,2119,"[\""Charger\"", \""Laptop\""]",3844.45,{},214805,1,"""South America""" +2023-08-30,35730,5113,"[\""Wireless Mouse\"", \""Laptop\""]",1551.4,"{\"": \""17%\""}",144669,1,"""Asia""" +2023-12-17,35731,9551,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3911.9,"{\""loyalty\"": \""12%\""}",273806,0,"""Africa""" +2024-10-01,35732,8980,"[\""Phone\""]",2766.88,{},29842,1,"""South America""" +2023-05-28,35733,6546,"[\""Charger\"", \""Monitor\""]",3416.42,"{\"": \""19%\""}",153203,0,"""North America""" +2023-08-27,35734,8542,"[\""Tablet\""]",4974.88,"{\"": \""11%\""}",210491,1,"""Africa""" +2023-10-17,35735,6344,"[\""Headphones\""]",2483.87,{},299911,1,"""Europe""" +2024-12-16,35736,7591,"[\""Tablet\"", \""Wireless Mouse\""]",4240.2,"{\""loyalty\"": \""20%\""}",297775,1,"""Africa""" +2023-10-22,35737,1839,"[\""Keyboard\"", \""Tablet\""]",3007.22,"{\"": \""21%\""}",142717,1,"""Africa""" +2024-06-10,35738,658,"[\""Wireless Mouse\""]",3676.66,{},227128,1,"""Asia""" +2023-03-21,35739,3209,"[\""Keyboard\""]",1585.76,"{\""loyalty\"": \""16%\""}",52113,1,"""Europe""" +2023-06-13,35740,4628,"[\""Tablet\""]",2415.85,"{\""seasonal\"": \""5%\""}",42678,1,"""Asia""" +2023-05-25,35741,3837,"[\""Charger\""]",3245.52,{},12554,1,"""South America""" +2024-05-01,35742,7082,"[\""Tablet\"", \""Charger\""]",1023.96,{},225017,0,"""Africa""" +2024-08-11,35743,9955,"[\""Keyboard\"", \""Headphones\""]",979.66,"{\""promo\"": \""23%\""}",32389,0,"""Africa""" +2023-06-11,35744,9229,"[\""Laptop\""]",563.39,{},203024,1,"""South America""" +2024-02-22,35745,894,"[\""Phone\"", \""Charger\"", \""Monitor\""]",878.78,"{\""loyalty\"": \""7%\""}",293993,1,"""South America""" +2024-07-16,35746,9404,"[\""Laptop\""]",2444.58,"{\""seasonal\"": \""25%\""}",207125,0,"""Asia""" +2024-01-08,35747,9355,"[\""Charger\"", \""Tablet\""]",4190.61,{},69958,0,"""Asia""" +2023-07-13,35748,4061,"[\""Keyboard\""]",1412.75,{},31911,0,"""North America""" +2024-03-06,35749,4443,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3071.95,"{\""seasonal\"": \""22%\""}",131766,0,"""South America""" +2024-02-20,35750,9344,"[\""Headphones\"", \""Monitor\""]",1956.39,"{\""loyalty\"": \""8%\""}",233435,0,"""Europe""" +2024-12-20,35751,2761,"[\""Keyboard\"", \""Laptop\""]",3063.41,"{\"": \""10%\""}",116582,0,"""South America""" +2024-04-03,35752,1012,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3825.62,{},228871,0,"""South America""" +2023-05-15,35753,333,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",888.44,{},267445,0,"""South America""" +2024-06-03,35754,2240,"[\""Wireless Mouse\"", \""Tablet\""]",2958.05,{},287286,1,"""Europe""" +2023-10-30,35755,6090,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",455.46,"{\"": \""6%\""}",109910,0,"""Europe""" +2023-04-15,35756,893,"[\""Keyboard\"", \""Phone\""]",2518.79,{},296148,0,"""Africa""" +2024-03-25,35757,335,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2327.62,{},6896,0,"""Europe""" +2023-09-05,35758,5435,"[\""Phone\"", \""Charger\""]",4080.04,"{\""promo\"": \""25%\""}",47107,0,"""Asia""" +2024-06-02,35759,4363,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4329.09,"{\""loyalty\"": \""16%\""}",201490,1,"""South America""" +2023-12-31,35760,7674,"[\""Monitor\"", \""Wireless Mouse\""]",1974.49,"{\""loyalty\"": \""13%\""}",88696,0,"""Africa""" +2024-04-11,35761,9161,"[\""Headphones\""]",814.63,{},167321,1,"""South America""" +2023-12-12,35762,2189,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4363.18,{},202280,1,"""North America""" +2024-11-23,35763,3030,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2602.48,{},95036,1,"""Africa""" +2024-05-19,35764,945,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2468.25,{},161908,1,"""North America""" +2023-09-07,35765,4249,"[\""Monitor\"", \""Charger\""]",2623.17,"{\""loyalty\"": \""26%\""}",182613,1,"""Africa""" +2023-01-09,35766,6104,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",50.94,"{\"": \""29%\""}",203007,0,"""Asia""" +2023-02-11,35767,4400,"[\""Charger\""]",3678.95,{},272086,0,"""South America""" +2024-09-22,35768,3011,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1323.59,"{\""loyalty\"": \""25%\""}",261112,0,"""Europe""" +2024-04-06,35769,3331,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2791.55,"{\"": \""7%\""}",230222,1,"""Africa""" +2024-04-17,35770,6775,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",402.92,{},188067,1,"""Asia""" +2023-09-18,35771,8131,"[\""Wireless Mouse\"", \""Tablet\""]",3996.2,{},20195,0,"""Asia""" +2023-09-20,35772,73,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4263.68,"{\""seasonal\"": \""24%\""}",183171,0,"""Africa""" +2023-10-11,35773,58,"[\""Keyboard\""]",2394.3,{},288621,0,"""South America""" +2024-06-18,35774,7606,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2893.28,{},164400,0,"""Asia""" +2023-10-24,35775,9674,"[\""Laptop\""]",304.95,"{\""promo\"": \""9%\""}",140196,0,"""Asia""" +2024-03-24,35776,9167,"[\""Tablet\""]",3777.87,"{\""promo\"": \""14%\""}",216889,0,"""North America""" +2023-06-05,35777,2827,"[\""Wireless Mouse\"", \""Keyboard\""]",4441.52,"{\""promo\"": \""27%\""}",249555,0,"""Asia""" +2024-12-12,35778,4669,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",597.6,{},82794,1,"""Africa""" +2023-05-01,35779,4034,"[\""Keyboard\""]",2901.09,"{\""loyalty\"": \""13%\""}",228526,0,"""Europe""" +2024-03-28,35780,3727,"[\""Charger\"", \""Keyboard\""]",4384.69,"{\""promo\"": \""10%\""}",176616,1,"""Africa""" +2023-11-25,35781,9054,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2062.22,{},105479,0,"""Africa""" +2023-09-15,35782,9587,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1314.95,"{\"": \""21%\""}",139445,0,"""Europe""" +2024-01-15,35783,9101,"[\""Headphones\""]",789.0,"{\""seasonal\"": \""24%\""}",196205,1,"""Europe""" +2024-08-23,35784,4192,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",623.9,"{\""seasonal\"": \""8%\""}",40164,0,"""North America""" +2024-06-05,35785,3789,"[\""Tablet\""]",4142.47,{},1028,0,"""North America""" +2023-09-18,35786,170,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4958.65,{},260211,0,"""Asia""" +2023-10-21,35787,4551,"[\""Phone\""]",4110.51,{},276873,0,"""Asia""" +2024-10-03,35788,5546,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1162.58,{},59735,0,"""Asia""" +2024-06-07,35789,4061,"[\""Monitor\"", \""Laptop\""]",4202.08,{},146343,1,"""Europe""" +2023-06-28,35790,4999,"[\""Monitor\""]",4984.88,{},115313,0,"""North America""" +2023-06-10,35791,752,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",147.2,"{\""seasonal\"": \""13%\""}",60013,0,"""Asia""" +2023-03-20,35792,684,"[\""Tablet\"", \""Wireless Mouse\""]",757.53,"{\"": \""25%\""}",2877,0,"""Asia""" +2023-12-26,35793,6785,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1890.54,{},277149,1,"""South America""" +2023-04-17,35794,8501,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2351.56,{},102445,1,"""North America""" +2024-10-12,35795,8580,"[\""Headphones\""]",4088.74,"{\""loyalty\"": \""19%\""}",70739,1,"""North America""" +2023-01-25,35796,9510,"[\""Headphones\"", \""Tablet\""]",1723.31,{},55568,0,"""Europe""" +2023-04-02,35797,3884,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3061.19,"{\"": \""26%\""}",259121,0,"""Africa""" +2023-08-06,35798,1865,"[\""Laptop\"", \""Tablet\""]",3700.97,"{\""promo\"": \""22%\""}",200472,1,"""South America""" +2023-09-13,35799,5700,"[\""Tablet\"", \""Phone\""]",2691.03,{},247111,1,"""Africa""" +2023-05-27,35800,6387,"[\""Keyboard\""]",1025.85,{},184787,0,"""Europe""" +2024-01-17,35801,8023,"[\""Monitor\"", \""Wireless Mouse\""]",1849.53,{},54716,1,"""Africa""" +2023-09-14,35802,4396,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3920.8,{},7669,0,"""Asia""" +2023-05-31,35803,8714,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",483.23,{},233044,0,"""Europe""" +2024-06-10,35804,3499,"[\""Charger\""]",691.77,"{\""promo\"": \""6%\""}",89934,1,"""North America""" +2023-05-01,35805,6790,"[\""Tablet\""]",2267.87,{},39604,0,"""Asia""" +2024-10-17,35806,4184,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",902.11,"{\""promo\"": \""12%\""}",246248,0,"""Africa""" +2023-06-02,35807,738,"[\""Headphones\""]",3004.33,{},114728,1,"""North America""" +2024-12-04,35808,890,"[\""Charger\""]",1155.79,"{\"": \""9%\""}",241767,0,"""Africa""" +2024-03-15,35809,7498,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4679.94,{},134152,0,"""Africa""" +2023-03-26,35810,3095,"[\""Charger\""]",4083.89,{},187691,1,"""North America""" +2023-11-21,35811,8696,"[\""Charger\""]",2914.38,"{\""seasonal\"": \""21%\""}",229051,1,"""Africa""" +2024-02-20,35812,6324,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1739.32,"{\""seasonal\"": \""12%\""}",62031,0,"""South America""" +2023-12-28,35813,3714,"[\""Wireless Mouse\"", \""Laptop\""]",1881.69,{},57858,0,"""Asia""" +2024-01-23,35814,2055,"[\""Wireless Mouse\""]",2416.62,{},150876,0,"""South America""" +2023-08-05,35815,3065,"[\""Phone\"", \""Monitor\""]",1320.16,{},128627,0,"""Europe""" +2024-08-10,35816,409,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",79.77,{},293851,0,"""North America""" +2024-09-19,35817,6402,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",631.45,{},176941,1,"""Europe""" +2024-06-12,35818,2046,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",897.87,"{\"": \""23%\""}",200597,0,"""Asia""" +2023-07-22,35819,2879,"[\""Monitor\""]",3949.08,{},272837,1,"""Europe""" +2024-08-04,35820,9590,"[\""Monitor\""]",4937.69,"{\""promo\"": \""7%\""}",52605,0,"""North America""" +2023-09-26,35821,2522,"[\""Wireless Mouse\"", \""Tablet\""]",1034.21,"{\""loyalty\"": \""5%\""}",31052,0,"""Africa""" +2024-12-31,35822,1941,"[\""Keyboard\""]",3672.96,{},7639,0,"""South America""" +2023-02-28,35823,6285,"[\""Laptop\"", \""Wireless Mouse\""]",476.97,{},132572,1,"""Africa""" +2024-06-14,35824,781,"[\""Keyboard\""]",4312.63,"{\""loyalty\"": \""29%\""}",222371,1,"""Europe""" +2024-10-11,35825,4575,"[\""Charger\"", \""Keyboard\""]",1430.22,{},58838,1,"""North America""" +2024-07-27,35826,8008,"[\""Charger\"", \""Keyboard\""]",4655.09,{},48415,0,"""South America""" +2023-12-18,35827,9997,"[\""Wireless Mouse\"", \""Monitor\""]",4444.83,"{\""loyalty\"": \""17%\""}",106945,1,"""North America""" +2023-02-06,35828,3149,"[\""Laptop\"", \""Headphones\""]",3114.88,"{\""promo\"": \""14%\""}",221891,0,"""Europe""" +2023-01-25,35829,3432,"[\""Tablet\"", \""Headphones\""]",3485.23,"{\"": \""22%\""}",253394,0,"""North America""" +2024-06-04,35830,9483,"[\""Headphones\""]",4831.42,{},59889,0,"""Africa""" +2023-05-15,35831,5230,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",663.84,{},74352,1,"""North America""" +2023-11-27,35832,7869,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1905.54,"{\""seasonal\"": \""21%\""}",169322,0,"""South America""" +2024-12-14,35833,7970,"[\""Wireless Mouse\""]",1413.71,{},44295,0,"""South America""" +2024-04-28,35834,6672,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",914.29,{},80855,1,"""Asia""" +2023-10-23,35835,9685,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3494.19,"{\""promo\"": \""10%\""}",244795,0,"""Europe""" +2023-10-04,35836,8919,"[\""Tablet\""]",1559.33,{},39864,0,"""South America""" +2024-06-08,35837,4358,"[\""Headphones\"", \""Laptop\""]",4572.3,"{\""seasonal\"": \""11%\""}",95559,0,"""Africa""" +2023-02-18,35838,4813,"[\""Keyboard\"", \""Tablet\""]",4168.2,{},272387,0,"""South America""" +2023-04-05,35839,7689,"[\""Charger\""]",497.34,"{\"": \""13%\""}",131216,1,"""North America""" +2024-11-04,35840,2838,"[\""Laptop\"", \""Charger\""]",3302.53,{},106901,0,"""Asia""" +2024-06-11,35841,3672,"[\""Monitor\"", \""Keyboard\""]",793.66,{},81089,0,"""North America""" +2023-10-11,35842,3373,"[\""Wireless Mouse\""]",1305.59,"{\""loyalty\"": \""7%\""}",3242,1,"""North America""" +2024-05-31,35843,4063,"[\""Keyboard\""]",580.23,"{\""promo\"": \""6%\""}",254945,1,"""South America""" +2024-01-06,35844,4011,"[\""Keyboard\"", \""Monitor\""]",808.17,{},241744,1,"""North America""" +2024-08-11,35845,3013,"[\""Phone\""]",752.74,"{\"": \""16%\""}",131950,1,"""South America""" +2023-07-16,35846,7573,"[\""Wireless Mouse\""]",2851.89,"{\""promo\"": \""5%\""}",214625,0,"""South America""" +2023-01-05,35847,4380,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2822.36,{},162346,0,"""South America""" +2024-05-09,35848,2490,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2877.6,"{\"": \""12%\""}",283988,1,"""Europe""" +2024-06-28,35849,9123,"[\""Charger\"", \""Wireless Mouse\""]",3812.62,{},169021,0,"""North America""" +2023-02-25,35850,2794,"[\""Phone\""]",4336.01,"{\""loyalty\"": \""30%\""}",46551,0,"""South America""" +2023-07-21,35851,108,"[\""Keyboard\"", \""Monitor\""]",4391.14,"{\"": \""26%\""}",255790,1,"""South America""" +2024-07-28,35852,258,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3272.0,"{\"": \""28%\""}",297501,0,"""North America""" +2024-12-07,35853,5168,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3230.57,"{\"": \""17%\""}",74363,1,"""South America""" +2023-03-29,35854,4521,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3505.86,{},121589,0,"""North America""" +2024-11-20,35855,4956,"[\""Charger\""]",1042.88,"{\"": \""18%\""}",159109,0,"""South America""" +2023-12-06,35856,1058,"[\""Wireless Mouse\"", \""Keyboard\""]",1684.69,"{\""loyalty\"": \""30%\""}",80937,1,"""Africa""" +2023-01-02,35857,1193,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1251.54,{},243386,1,"""North America""" +2024-12-29,35858,58,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2566.46,"{\"": \""23%\""}",50358,1,"""Europe""" +2024-01-21,35859,4143,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3958.06,"{\""loyalty\"": \""15%\""}",31691,0,"""Europe""" +2023-10-26,35860,6507,"[\""Monitor\"", \""Laptop\""]",2699.73,"{\""loyalty\"": \""18%\""}",253101,0,"""Europe""" +2023-06-08,35861,4973,"[\""Keyboard\"", \""Tablet\""]",1652.75,{},80187,0,"""North America""" +2023-09-26,35862,2469,"[\""Keyboard\""]",3436.31,"{\""promo\"": \""19%\""}",258323,1,"""Asia""" +2023-08-24,35863,8644,"[\""Phone\""]",3290.57,"{\""promo\"": \""21%\""}",270096,0,"""North America""" +2023-11-20,35864,6457,"[\""Charger\""]",272.7,"{\""promo\"": \""24%\""}",92565,1,"""Africa""" +2023-11-04,35865,8130,"[\""Tablet\""]",1523.26,{},187074,1,"""Europe""" +2023-08-10,35866,5350,"[\""Laptop\""]",4873.87,"{\"": \""21%\""}",197852,0,"""Asia""" +2024-02-10,35867,5245,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",950.82,"{\""seasonal\"": \""26%\""}",101116,1,"""Asia""" +2023-07-07,35868,2718,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",374.76,{},296012,1,"""South America""" +2023-11-05,35869,2366,"[\""Monitor\"", \""Keyboard\""]",2205.17,"{\"": \""29%\""}",32502,1,"""South America""" +2023-01-02,35870,1841,"[\""Charger\"", \""Tablet\""]",2829.25,{},223522,0,"""North America""" +2024-06-05,35871,1982,"[\""Keyboard\"", \""Charger\""]",4373.92,"{\""seasonal\"": \""8%\""}",203592,0,"""Asia""" +2023-01-28,35872,759,"[\""Charger\""]",4490.59,"{\""loyalty\"": \""21%\""}",90319,1,"""Europe""" +2023-03-24,35873,43,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2330.83,"{\""seasonal\"": \""29%\""}",26211,0,"""Asia""" +2023-07-13,35874,1629,"[\""Monitor\""]",4826.88,"{\""loyalty\"": \""19%\""}",259659,1,"""South America""" +2024-01-05,35875,6287,"[\""Wireless Mouse\"", \""Keyboard\""]",2728.66,{},266537,0,"""Asia""" +2023-01-24,35876,8083,"[\""Keyboard\"", \""Tablet\""]",4797.19,"{\""promo\"": \""16%\""}",92647,0,"""Africa""" +2023-11-22,35877,1759,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3974.84,{},207472,1,"""Africa""" +2023-03-28,35878,3225,"[\""Laptop\""]",4348.55,{},271047,1,"""Europe""" +2023-05-23,35879,1117,"[\""Keyboard\"", \""Wireless Mouse\""]",685.22,{},44441,0,"""Asia""" +2023-10-14,35880,4147,"[\""Keyboard\"", \""Monitor\""]",839.69,{},140330,0,"""Europe""" +2023-09-25,35881,9015,"[\""Laptop\"", \""Keyboard\""]",4619.8,"{\""seasonal\"": \""20%\""}",130747,1,"""Africa""" +2024-08-02,35882,971,"[\""Keyboard\"", \""Monitor\""]",773.26,{},103022,1,"""North America""" +2024-10-07,35883,4924,"[\""Laptop\"", \""Headphones\""]",3193.69,"{\""seasonal\"": \""13%\""}",54891,0,"""North America""" +2023-02-14,35884,7426,"[\""Wireless Mouse\"", \""Monitor\""]",2140.22,"{\""promo\"": \""9%\""}",19591,0,"""North America""" +2024-07-28,35885,1242,"[\""Wireless Mouse\""]",636.85,{},85410,0,"""South America""" +2024-01-03,35886,2984,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2637.36,{},234409,0,"""North America""" +2023-09-02,35887,1954,"[\""Tablet\""]",3033.97,{},214576,0,"""Asia""" +2023-03-10,35888,719,"[\""Wireless Mouse\"", \""Monitor\""]",3291.58,"{\""loyalty\"": \""23%\""}",152350,1,"""North America""" +2024-09-15,35889,6355,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1788.74,{},176109,0,"""Europe""" +2023-11-03,35890,1743,"[\""Headphones\"", \""Laptop\""]",4842.29,{},139736,0,"""North America""" +2024-05-17,35891,860,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4809.34,{},91648,1,"""Asia""" +2024-06-13,35892,3952,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2027.96,"{\""promo\"": \""20%\""}",158108,0,"""Asia""" +2024-06-09,35893,5767,"[\""Monitor\"", \""Phone\""]",4516.37,"{\""seasonal\"": \""14%\""}",32118,1,"""Europe""" +2023-07-18,35894,5122,"[\""Tablet\""]",3301.06,"{\""promo\"": \""20%\""}",290590,1,"""Africa""" +2024-07-22,35895,8428,"[\""Monitor\"", \""Keyboard\""]",596.81,{},75878,0,"""North America""" +2023-06-06,35896,3755,"[\""Keyboard\""]",2858.82,{},101856,0,"""South America""" +2023-07-10,35897,1009,"[\""Wireless Mouse\"", \""Headphones\""]",3197.63,"{\""seasonal\"": \""9%\""}",110846,1,"""Europe""" +2024-01-07,35898,182,"[\""Laptop\"", \""Wireless Mouse\""]",2067.92,{},29643,1,"""Asia""" +2023-11-05,35899,2097,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1400.5,{},177829,1,"""North America""" +2024-09-11,35900,2689,"[\""Keyboard\"", \""Wireless Mouse\""]",4555.39,{},246365,1,"""Europe""" +2024-10-07,35901,293,"[\""Tablet\""]",4835.4,{},19208,1,"""Africa""" +2023-03-13,35902,9206,"[\""Monitor\"", \""Wireless Mouse\""]",1318.32,"{\""loyalty\"": \""8%\""}",88154,1,"""Europe""" +2024-12-20,35903,4833,"[\""Keyboard\"", \""Headphones\""]",2788.56,{},245168,1,"""South America""" +2023-01-07,35904,3174,"[\""Headphones\""]",3017.99,"{\""seasonal\"": \""7%\""}",244127,1,"""Africa""" +2023-01-18,35905,4071,"[\""Keyboard\"", \""Phone\""]",711.07,"{\"": \""26%\""}",30453,0,"""Asia""" +2023-08-21,35906,7828,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2448.04,"{\"": \""18%\""}",182122,0,"""North America""" +2024-03-30,35907,9569,"[\""Phone\"", \""Monitor\""]",236.36,{},103601,1,"""Europe""" +2024-09-04,35908,2816,"[\""Monitor\"", \""Keyboard\""]",2840.71,{},60315,1,"""South America""" +2024-10-30,35909,9251,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2599.39,"{\""seasonal\"": \""16%\""}",249070,0,"""South America""" +2024-04-28,35910,304,"[\""Headphones\""]",4619.56,"{\""loyalty\"": \""27%\""}",183174,1,"""Asia""" +2024-09-15,35911,876,"[\""Monitor\""]",1030.01,"{\"": \""17%\""}",199044,0,"""South America""" +2023-10-04,35912,3388,"[\""Headphones\""]",3657.88,"{\""loyalty\"": \""8%\""}",189202,1,"""Asia""" +2023-05-22,35913,7603,"[\""Monitor\""]",2327.29,"{\""promo\"": \""8%\""}",81034,1,"""South America""" +2023-05-20,35914,7499,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4156.79,{},70612,0,"""Europe""" +2024-11-27,35915,1161,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2324.98,{},284919,0,"""South America""" +2023-12-08,35916,9032,"[\""Headphones\""]",4790.37,{},106454,0,"""South America""" +2023-02-20,35917,5454,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2800.86,{},9793,0,"""Asia""" +2024-05-29,35918,146,"[\""Wireless Mouse\"", \""Tablet\""]",3141.06,"{\""loyalty\"": \""18%\""}",240041,0,"""Africa""" +2023-03-31,35919,2024,"[\""Laptop\""]",168.48,{},237328,0,"""North America""" +2024-12-31,35920,9032,"[\""Headphones\"", \""Wireless Mouse\""]",786.85,"{\""seasonal\"": \""16%\""}",285029,1,"""Africa""" +2024-08-29,35921,3965,"[\""Monitor\"", \""Laptop\""]",4413.54,{},48640,1,"""Europe""" +2024-08-11,35922,2698,"[\""Tablet\"", \""Charger\""]",3759.07,{},127534,0,"""North America""" +2023-10-02,35923,3024,"[\""Wireless Mouse\"", \""Phone\""]",2063.09,"{\"": \""9%\""}",280237,1,"""Europe""" +2024-07-17,35924,6586,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4106.13,{},182796,1,"""South America""" +2024-11-25,35925,395,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1735.48,"{\""seasonal\"": \""21%\""}",195722,0,"""Asia""" +2024-08-26,35926,7980,"[\""Tablet\"", \""Headphones\""]",898.61,{},189210,1,"""Africa""" +2023-08-21,35927,1497,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3792.22,{},155072,1,"""Europe""" +2024-07-04,35928,6940,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2916.64,{},128388,0,"""Asia""" +2024-06-22,35929,4792,"[\""Keyboard\"", \""Wireless Mouse\""]",1017.52,"{\""seasonal\"": \""19%\""}",36812,1,"""North America""" +2023-09-25,35930,8602,"[\""Wireless Mouse\"", \""Phone\""]",1006.8,{},138026,1,"""Asia""" +2023-03-20,35931,8560,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2508.72,{},159961,0,"""North America""" +2023-02-03,35932,1400,"[\""Headphones\""]",1531.53,{},278578,0,"""Africa""" +2023-05-30,35933,6934,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2006.46,{},238991,1,"""Europe""" +2023-07-05,35934,5383,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4432.02,"{\""seasonal\"": \""10%\""}",252522,1,"""Asia""" +2023-10-01,35935,3835,"[\""Phone\""]",2114.09,"{\""seasonal\"": \""7%\""}",87553,1,"""North America""" +2023-12-14,35936,8724,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2112.74,"{\""seasonal\"": \""11%\""}",221913,1,"""North America""" +2023-03-07,35937,8896,"[\""Keyboard\""]",4400.32,"{\""promo\"": \""10%\""}",140734,0,"""Europe""" +2024-08-26,35938,9578,"[\""Keyboard\""]",2618.06,{},105355,0,"""South America""" +2023-10-08,35939,9040,"[\""Wireless Mouse\""]",4278.34,"{\""seasonal\"": \""11%\""}",280723,1,"""South America""" +2024-10-23,35940,4111,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1583.26,{},128411,0,"""Africa""" +2023-04-07,35941,18,"[\""Tablet\""]",4100.98,"{\"": \""20%\""}",202106,1,"""South America""" +2024-06-13,35942,3293,"[\""Laptop\"", \""Wireless Mouse\""]",1506.51,{},208280,0,"""Europe""" +2023-11-03,35943,2258,"[\""Headphones\""]",4235.67,{},104378,0,"""North America""" +2023-01-12,35944,148,"[\""Tablet\"", \""Charger\""]",477.42,{},78949,0,"""North America""" +2024-08-20,35945,1506,"[\""Charger\""]",740.07,"{\""promo\"": \""24%\""}",151905,0,"""Europe""" +2023-04-23,35946,2073,"[\""Monitor\""]",3539.31,"{\"": \""24%\""}",25706,0,"""Asia""" +2023-08-05,35947,655,"[\""Laptop\"", \""Charger\""]",3798.73,"{\""promo\"": \""23%\""}",143017,0,"""Asia""" +2023-10-04,35948,8789,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2247.71,{},56895,0,"""South America""" +2023-11-22,35949,1561,"[\""Charger\"", \""Tablet\""]",2411.42,"{\""promo\"": \""19%\""}",131285,1,"""Europe""" +2023-07-02,35950,7623,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1244.46,{},245361,0,"""Africa""" +2024-12-12,35951,3153,"[\""Wireless Mouse\""]",4290.2,{},267651,0,"""North America""" +2023-10-07,35952,6570,"[\""Headphones\"", \""Charger\""]",2628.59,"{\""loyalty\"": \""21%\""}",248056,1,"""Asia""" +2024-01-22,35953,4239,"[\""Tablet\"", \""Laptop\""]",243.81,{},37130,1,"""South America""" +2023-08-12,35954,8247,"[\""Charger\"", \""Wireless Mouse\""]",1445.69,"{\""loyalty\"": \""17%\""}",120380,0,"""Europe""" +2023-11-16,35955,7637,"[\""Charger\"", \""Laptop\""]",3357.79,{},263141,1,"""Asia""" +2023-02-03,35956,1592,"[\""Monitor\"", \""Charger\""]",4490.58,{},181492,0,"""Europe""" +2024-08-04,35957,9205,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",575.94,{},60467,1,"""Africa""" +2023-03-25,35958,4862,"[\""Keyboard\""]",3767.24,"{\""loyalty\"": \""22%\""}",85887,0,"""Europe""" +2024-08-06,35959,882,"[\""Keyboard\""]",4319.41,{},126169,0,"""South America""" +2023-12-20,35960,7792,"[\""Phone\""]",3488.83,{},219442,1,"""South America""" +2024-04-17,35961,2802,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3241.59,"{\"": \""28%\""}",200069,1,"""Africa""" +2023-11-13,35962,9087,"[\""Phone\""]",1246.17,"{\""loyalty\"": \""22%\""}",298488,1,"""Europe""" +2024-12-16,35963,7070,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2767.11,{},141476,0,"""Asia""" +2024-06-21,35964,6511,"[\""Tablet\"", \""Monitor\""]",4122.17,{},90611,1,"""Europe""" +2024-07-01,35965,717,"[\""Phone\"", \""Charger\""]",4366.51,"{\"": \""25%\""}",189702,0,"""Europe""" +2023-08-06,35966,9772,"[\""Keyboard\"", \""Wireless Mouse\""]",3752.58,"{\"": \""18%\""}",58735,0,"""South America""" +2024-06-07,35967,5676,"[\""Monitor\"", \""Keyboard\""]",4744.52,"{\""loyalty\"": \""25%\""}",135809,0,"""Europe""" +2024-11-27,35968,5612,"[\""Monitor\""]",981.02,"{\""promo\"": \""19%\""}",24804,0,"""Africa""" +2023-09-05,35969,4867,"[\""Wireless Mouse\""]",4959.93,{},153140,0,"""South America""" +2024-08-24,35970,4780,"[\""Tablet\"", \""Charger\""]",2833.51,{},211594,1,"""Africa""" +2024-03-31,35971,4687,"[\""Laptop\""]",3672.62,"{\""loyalty\"": \""8%\""}",14630,0,"""North America""" +2024-01-24,35972,1959,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",394.23,"{\""seasonal\"": \""23%\""}",10727,0,"""South America""" +2023-11-29,35973,4267,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1491.5,{},54378,0,"""Asia""" +2024-01-23,35974,2569,"[\""Headphones\"", \""Phone\""]",4183.39,{},199548,1,"""South America""" +2024-12-16,35975,7957,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1242.73,"{\""seasonal\"": \""29%\""}",289364,1,"""South America""" +2023-10-16,35976,9488,"[\""Monitor\"", \""Tablet\""]",4199.16,{},275002,0,"""South America""" +2024-10-02,35977,9836,"[\""Keyboard\"", \""Wireless Mouse\""]",365.46,{},114153,1,"""Africa""" +2023-09-02,35978,4002,"[\""Phone\""]",4766.99,{},287691,1,"""Europe""" +2024-10-08,35979,3996,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",104.76,"{\""seasonal\"": \""8%\""}",141365,0,"""Asia""" +2023-05-12,35980,7221,"[\""Charger\"", \""Laptop\""]",422.22,"{\""seasonal\"": \""18%\""}",270514,0,"""North America""" +2023-06-18,35981,4907,"[\""Wireless Mouse\""]",1224.7,"{\""loyalty\"": \""12%\""}",121880,1,"""Asia""" +2024-12-12,35982,3646,"[\""Laptop\"", \""Charger\""]",2288.0,{},248899,0,"""Africa""" +2024-11-15,35983,8785,"[\""Tablet\""]",3848.57,"{\""seasonal\"": \""14%\""}",100872,0,"""Asia""" +2024-08-13,35984,1300,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",723.91,{},161636,0,"""Africa""" +2024-01-04,35985,1073,"[\""Monitor\""]",4301.96,{},257376,1,"""South America""" +2023-10-14,35986,9693,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1467.6,{},119409,0,"""Africa""" +2023-05-24,35987,7816,"[\""Headphones\"", \""Wireless Mouse\""]",4295.76,{},17219,1,"""Europe""" +2024-08-15,35988,9389,"[\""Keyboard\""]",95.09,{},197102,0,"""Africa""" +2024-03-17,35989,6243,"[\""Tablet\"", \""Headphones\""]",4864.77,{},266401,0,"""Europe""" +2023-11-08,35990,6316,"[\""Monitor\""]",1970.18,{},20199,0,"""Africa""" +2024-08-24,35991,1085,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1967.99,{},203915,1,"""Africa""" +2023-03-09,35992,5407,"[\""Headphones\"", \""Wireless Mouse\""]",3234.59,{},147854,1,"""South America""" +2024-05-20,35993,8192,"[\""Phone\"", \""Charger\""]",1224.15,"{\""promo\"": \""29%\""}",109851,0,"""North America""" +2024-08-23,35994,4700,"[\""Monitor\""]",3684.45,{},135818,1,"""Africa""" +2024-05-09,35995,9817,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2565.05,{},30278,0,"""South America""" +2024-11-27,35996,4932,"[\""Monitor\"", \""Laptop\""]",3148.64,"{\""loyalty\"": \""20%\""}",169814,1,"""Asia""" +2024-01-28,35997,1673,"[\""Monitor\""]",4527.85,"{\""loyalty\"": \""27%\""}",76774,0,"""North America""" +2024-02-29,35998,8074,"[\""Monitor\""]",1405.14,"{\""promo\"": \""18%\""}",190520,1,"""Africa""" +2023-06-19,35999,3513,"[\""Wireless Mouse\""]",4777.24,{},274588,1,"""North America""" +2023-06-01,36000,8074,"[\""Monitor\"", \""Wireless Mouse\""]",4048.91,"{\""loyalty\"": \""21%\""}",22837,1,"""Asia""" +2023-08-21,36001,7758,"[\""Laptop\"", \""Charger\""]",4680.61,{},198220,1,"""Europe""" +2024-09-11,36002,8031,"[\""Charger\"", \""Monitor\""]",4313.72,{},172910,0,"""Europe""" +2023-01-27,36003,5276,"[\""Wireless Mouse\""]",4989.15,"{\""seasonal\"": \""25%\""}",253391,1,"""Africa""" +2023-01-26,36004,4783,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3303.19,{},36755,0,"""North America""" +2023-06-26,36005,173,"[\""Laptop\"", \""Headphones\""]",1150.7,{},166892,0,"""Africa""" +2024-10-22,36006,517,"[\""Keyboard\""]",3973.82,{},149811,1,"""South America""" +2023-09-05,36007,9590,"[\""Headphones\""]",3750.14,"{\""promo\"": \""27%\""}",6165,0,"""South America""" +2023-07-27,36008,9448,"[\""Monitor\""]",3907.14,{},261567,0,"""Africa""" +2024-12-26,36009,7781,"[\""Headphones\""]",4419.57,{},160350,1,"""North America""" +2024-11-15,36010,52,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1518.21,"{\""promo\"": \""11%\""}",295235,0,"""Africa""" +2024-12-31,36011,6457,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1080.57,{},261212,1,"""Asia""" +2023-01-26,36012,1215,"[\""Phone\"", \""Keyboard\""]",1900.65,{},210738,1,"""Asia""" +2024-09-17,36013,8833,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",946.43,{},229058,1,"""Europe""" +2023-02-18,36014,4537,"[\""Laptop\"", \""Tablet\""]",3187.39,"{\""seasonal\"": \""30%\""}",184059,0,"""South America""" +2024-07-09,36015,2775,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4590.29,"{\"": \""12%\""}",129245,0,"""South America""" +2024-06-28,36016,9890,"[\""Wireless Mouse\"", \""Charger\""]",2431.11,"{\""seasonal\"": \""15%\""}",194337,0,"""Asia""" +2024-03-27,36017,9285,"[\""Laptop\""]",1114.08,"{\""loyalty\"": \""25%\""}",52254,0,"""Europe""" +2024-08-12,36018,4042,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",406.42,"{\"": \""10%\""}",201958,1,"""North America""" +2023-09-29,36019,4687,"[\""Keyboard\""]",477.79,{},9493,1,"""Asia""" +2023-09-15,36020,4750,"[\""Headphones\""]",3744.83,"{\""loyalty\"": \""21%\""}",267600,0,"""Europe""" +2023-04-06,36021,2158,"[\""Monitor\"", \""Laptop\""]",2393.27,"{\""loyalty\"": \""14%\""}",10105,1,"""North America""" +2023-10-29,36022,5362,"[\""Phone\""]",963.13,"{\""promo\"": \""27%\""}",132538,1,"""Africa""" +2023-10-05,36023,2392,"[\""Wireless Mouse\"", \""Keyboard\""]",4639.57,"{\""loyalty\"": \""14%\""}",258780,1,"""Europe""" +2023-08-27,36024,4233,"[\""Headphones\"", \""Monitor\""]",808.36,{},271203,0,"""North America""" +2024-04-28,36025,7151,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2351.24,{},75825,0,"""Africa""" +2024-07-11,36026,3506,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4076.51,"{\""seasonal\"": \""11%\""}",291383,1,"""Asia""" +2024-09-12,36027,1229,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4362.96,"{\""loyalty\"": \""22%\""}",69292,0,"""Africa""" +2024-06-19,36028,5916,"[\""Keyboard\""]",453.02,"{\""seasonal\"": \""10%\""}",189148,0,"""North America""" +2023-09-01,36029,8654,"[\""Wireless Mouse\""]",2139.41,"{\""seasonal\"": \""7%\""}",62328,1,"""Europe""" +2024-11-27,36030,8790,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4576.7,{},237830,0,"""Europe""" +2024-04-13,36031,6292,"[\""Monitor\"", \""Charger\""]",109.49,"{\""seasonal\"": \""6%\""}",222436,0,"""Asia""" +2023-03-08,36032,7494,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3700.29,"{\""loyalty\"": \""27%\""}",149772,0,"""South America""" +2023-02-28,36033,3197,"[\""Wireless Mouse\""]",959.53,"{\""seasonal\"": \""28%\""}",231200,0,"""Africa""" +2024-08-27,36034,9717,"[\""Monitor\""]",2698.32,{},165194,0,"""Europe""" +2024-06-17,36035,7535,"[\""Phone\"", \""Laptop\""]",4420.39,{},95244,1,"""Africa""" +2024-11-22,36036,1126,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2597.69,{},71287,1,"""Europe""" +2024-05-14,36037,5280,"[\""Monitor\"", \""Wireless Mouse\""]",1271.83,"{\"": \""19%\""}",166083,1,"""South America""" +2023-08-20,36038,7263,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4087.6,{},111144,0,"""Africa""" +2024-01-01,36039,1466,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",152.68,"{\""seasonal\"": \""24%\""}",25559,1,"""Europe""" +2024-08-27,36040,7451,"[\""Laptop\""]",1806.91,{},251421,0,"""North America""" +2024-07-28,36041,7163,"[\""Wireless Mouse\"", \""Charger\""]",2053.11,{},46075,0,"""Asia""" +2024-07-10,36042,1502,"[\""Keyboard\""]",1480.2,{},50088,1,"""North America""" +2023-01-13,36043,305,"[\""Charger\"", \""Wireless Mouse\""]",136.59,"{\""loyalty\"": \""21%\""}",176291,1,"""South America""" +2024-01-28,36044,593,"[\""Phone\""]",4859.97,{},92927,1,"""North America""" +2024-03-07,36045,8011,"[\""Wireless Mouse\""]",1707.89,{},85005,1,"""South America""" +2023-04-11,36046,6711,"[\""Charger\"", \""Phone\""]",627.77,"{\"": \""29%\""}",226939,0,"""North America""" +2024-02-27,36047,4463,"[\""Laptop\"", \""Phone\""]",955.46,{},275250,1,"""South America""" +2024-04-26,36048,644,"[\""Phone\"", \""Charger\""]",3764.54,"{\""promo\"": \""7%\""}",260896,1,"""Europe""" +2024-08-19,36049,2195,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4575.74,"{\""loyalty\"": \""27%\""}",273351,0,"""South America""" +2023-04-30,36050,8129,"[\""Phone\""]",4545.94,{},139401,0,"""Asia""" +2023-10-31,36051,7717,"[\""Headphones\"", \""Wireless Mouse\""]",3368.41,"{\""promo\"": \""7%\""}",172866,0,"""South America""" +2024-02-10,36052,3222,"[\""Laptop\"", \""Monitor\""]",3660.17,"{\""promo\"": \""9%\""}",204978,1,"""South America""" +2023-10-26,36053,794,"[\""Headphones\"", \""Tablet\""]",1709.43,"{\""promo\"": \""30%\""}",53021,1,"""Asia""" +2024-11-14,36054,4567,"[\""Laptop\""]",4904.62,{},164117,1,"""Africa""" +2023-03-02,36055,5226,"[\""Laptop\"", \""Wireless Mouse\""]",1505.62,"{\""seasonal\"": \""15%\""}",282216,1,"""Africa""" +2023-04-29,36056,8232,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2288.25,"{\""promo\"": \""15%\""}",294653,0,"""Asia""" +2024-12-25,36057,5081,"[\""Charger\"", \""Laptop\""]",4439.08,"{\""promo\"": \""13%\""}",32274,0,"""North America""" +2023-05-09,36058,3781,"[\""Headphones\""]",213.55,"{\""seasonal\"": \""21%\""}",175088,0,"""Africa""" +2023-05-10,36059,2368,"[\""Monitor\"", \""Tablet\""]",4266.39,"{\""seasonal\"": \""14%\""}",184973,1,"""Europe""" +2024-12-08,36060,1505,"[\""Monitor\""]",2532.52,"{\""loyalty\"": \""25%\""}",110664,0,"""Europe""" +2023-05-21,36061,247,"[\""Phone\"", \""Keyboard\""]",3187.49,"{\""promo\"": \""13%\""}",100573,0,"""Asia""" +2024-02-05,36062,5971,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",874.6,"{\"": \""30%\""}",299703,0,"""Africa""" +2023-03-22,36063,5130,"[\""Keyboard\"", \""Wireless Mouse\""]",3767.93,{},107420,0,"""North America""" +2023-06-20,36064,978,"[\""Keyboard\""]",576.5,"{\""loyalty\"": \""12%\""}",290096,0,"""Europe""" +2024-04-20,36065,9029,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4815.17,"{\""seasonal\"": \""27%\""}",297473,1,"""Africa""" +2024-09-28,36066,3384,"[\""Laptop\"", \""Monitor\""]",507.82,"{\""loyalty\"": \""12%\""}",271388,1,"""South America""" +2023-10-12,36067,2020,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1166.52,"{\""seasonal\"": \""6%\""}",239367,1,"""South America""" +2024-04-26,36068,7392,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3137.16,"{\""promo\"": \""19%\""}",140595,1,"""Asia""" +2024-09-02,36069,1920,"[\""Monitor\"", \""Headphones\""]",3552.0,{},254362,0,"""Europe""" +2024-11-08,36070,2837,"[\""Laptop\""]",551.52,{},167097,1,"""Africa""" +2024-08-20,36071,6474,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4120.79,"{\"": \""29%\""}",276898,0,"""Europe""" +2024-11-22,36072,6171,"[\""Tablet\""]",4375.29,{},106329,1,"""Europe""" +2023-08-27,36073,5900,"[\""Tablet\""]",3414.66,"{\""promo\"": \""13%\""}",298358,1,"""Asia""" +2024-08-31,36074,7085,"[\""Charger\""]",4889.29,"{\""seasonal\"": \""5%\""}",197282,0,"""Asia""" +2024-06-18,36075,5493,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1700.64,{},82609,1,"""Europe""" +2023-06-17,36076,9630,"[\""Laptop\"", \""Monitor\""]",2557.85,{},279938,1,"""North America""" +2024-05-15,36077,960,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1735.11,{},165753,0,"""Asia""" +2023-08-15,36078,2671,"[\""Monitor\"", \""Wireless Mouse\""]",929.18,{},11516,0,"""Africa""" +2024-12-18,36079,460,"[\""Laptop\"", \""Charger\""]",2054.75,{},193425,0,"""South America""" +2024-01-30,36080,7384,"[\""Headphones\""]",2927.0,{},181845,0,"""Africa""" +2023-12-20,36081,2236,"[\""Charger\""]",2527.43,"{\""loyalty\"": \""7%\""}",47806,0,"""South America""" +2024-10-13,36082,3127,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3372.24,{},170414,0,"""South America""" +2024-10-03,36083,5619,"[\""Wireless Mouse\"", \""Tablet\""]",4826.37,{},241634,0,"""South America""" +2023-09-02,36084,6144,"[\""Phone\"", \""Wireless Mouse\""]",4958.76,{},213824,0,"""North America""" +2023-07-10,36085,6804,"[\""Charger\""]",648.09,"{\"": \""18%\""}",120983,1,"""Africa""" +2023-02-21,36086,5784,"[\""Phone\""]",4591.59,"{\"": \""30%\""}",296099,1,"""Africa""" +2023-08-02,36087,20,"[\""Laptop\"", \""Phone\""]",4421.3,"{\""seasonal\"": \""7%\""}",278702,0,"""North America""" +2024-11-07,36088,9304,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",207.37,"{\""seasonal\"": \""14%\""}",245389,0,"""South America""" +2023-05-14,36089,1715,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2733.66,{},238546,0,"""North America""" +2023-03-17,36090,7224,"[\""Laptop\"", \""Phone\""]",1636.34,{},49836,0,"""Asia""" +2023-04-09,36091,4302,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2283.62,"{\""promo\"": \""8%\""}",261062,0,"""South America""" +2024-04-01,36092,1316,"[\""Phone\"", \""Wireless Mouse\""]",503.47,{},18457,1,"""Africa""" +2024-08-30,36093,2133,"[\""Phone\""]",4845.56,{},59514,0,"""Europe""" +2023-01-09,36094,6634,"[\""Laptop\"", \""Tablet\""]",4837.12,{},179096,1,"""Africa""" +2023-05-19,36095,9469,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3848.23,{},186665,1,"""Asia""" +2024-11-17,36096,5216,"[\""Headphones\"", \""Laptop\""]",688.81,"{\""seasonal\"": \""10%\""}",206160,1,"""Africa""" +2023-05-30,36097,458,"[\""Laptop\""]",1793.47,{},197355,1,"""North America""" +2024-01-17,36098,875,"[\""Laptop\""]",4829.47,"{\""promo\"": \""20%\""}",31443,1,"""South America""" +2023-07-18,36099,7721,"[\""Charger\"", \""Headphones\""]",3906.8,"{\""loyalty\"": \""11%\""}",161971,0,"""Africa""" +2024-04-24,36100,9407,"[\""Laptop\"", \""Phone\""]",1319.88,"{\""promo\"": \""6%\""}",139308,1,"""North America""" +2024-12-23,36101,5919,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",270.81,"{\"": \""6%\""}",89874,0,"""Asia""" +2023-10-04,36102,9720,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4014.75,"{\"": \""28%\""}",284291,0,"""South America""" +2023-04-24,36103,2820,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3642.97,{},157079,1,"""Asia""" +2024-03-23,36104,1140,"[\""Monitor\""]",901.57,{},24825,0,"""Asia""" +2024-05-23,36105,5525,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1158.7,{},164307,1,"""Africa""" +2023-04-09,36106,4345,"[\""Wireless Mouse\""]",2218.23,"{\""promo\"": \""28%\""}",99888,1,"""Asia""" +2023-02-27,36107,2015,"[\""Monitor\"", \""Charger\""]",4996.83,"{\""seasonal\"": \""13%\""}",280037,0,"""South America""" +2023-11-07,36108,5961,"[\""Monitor\""]",964.04,{},151964,1,"""Africa""" +2023-12-09,36109,538,"[\""Keyboard\""]",4047.3,"{\"": \""30%\""}",268162,1,"""Africa""" +2024-12-24,36110,6735,"[\""Phone\""]",2685.67,{},71895,0,"""Asia""" +2023-11-18,36111,1099,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3975.78,{},219720,1,"""Asia""" +2023-02-16,36112,7175,"[\""Headphones\""]",2448.24,{},200364,0,"""North America""" +2023-01-16,36113,9228,"[\""Headphones\"", \""Wireless Mouse\""]",1852.44,{},93323,1,"""South America""" +2023-06-22,36114,7824,"[\""Wireless Mouse\""]",2957.93,"{\""seasonal\"": \""9%\""}",264741,1,"""Asia""" +2023-04-05,36115,7854,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2388.31,{},65816,1,"""South America""" +2023-10-05,36116,398,"[\""Headphones\""]",4207.11,"{\""seasonal\"": \""17%\""}",236518,1,"""North America""" +2024-11-04,36117,5432,"[\""Headphones\"", \""Keyboard\""]",2136.26,{},179066,0,"""Europe""" +2023-04-10,36118,955,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4308.39,{},252690,0,"""Africa""" +2023-11-04,36119,7346,"[\""Phone\""]",357.54,"{\"": \""12%\""}",118546,1,"""North America""" +2024-06-02,36120,1395,"[\""Headphones\"", \""Phone\""]",465.47,"{\""promo\"": \""12%\""}",149091,0,"""South America""" +2024-06-15,36121,6043,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3193.52,"{\""loyalty\"": \""18%\""}",94739,0,"""Europe""" +2023-08-21,36122,7027,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3569.18,{},118622,1,"""South America""" +2023-07-25,36123,7356,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2689.28,"{\"": \""12%\""}",222555,1,"""Europe""" +2023-07-10,36124,3599,"[\""Headphones\"", \""Keyboard\""]",469.6,"{\"": \""13%\""}",18950,0,"""North America""" +2023-02-01,36125,7937,"[\""Monitor\""]",3005.27,{},65561,0,"""Asia""" +2023-10-25,36126,7765,"[\""Laptop\""]",3048.99,{},179546,0,"""Europe""" +2024-10-22,36127,4264,"[\""Laptop\""]",3841.14,{},160632,0,"""South America""" +2024-12-13,36128,7248,"[\""Wireless Mouse\"", \""Headphones\""]",1083.83,"{\""seasonal\"": \""25%\""}",180984,1,"""South America""" +2024-09-22,36129,3885,"[\""Tablet\"", \""Wireless Mouse\""]",3583.3,"{\""promo\"": \""26%\""}",230577,1,"""South America""" +2023-10-19,36130,3741,"[\""Monitor\"", \""Charger\""]",4493.36,"{\""promo\"": \""9%\""}",173177,1,"""North America""" +2024-12-25,36131,6507,"[\""Headphones\"", \""Tablet\""]",793.68,"{\""loyalty\"": \""26%\""}",115078,0,"""North America""" +2024-02-06,36132,7186,"[\""Tablet\""]",3673.91,{},264157,0,"""Asia""" +2024-12-09,36133,2007,"[\""Headphones\""]",1597.9,"{\"": \""16%\""}",166401,0,"""Asia""" +2023-11-12,36134,2194,"[\""Charger\""]",3835.83,"{\"": \""6%\""}",26436,1,"""South America""" +2023-04-28,36135,9001,"[\""Laptop\"", \""Phone\""]",169.39,"{\""seasonal\"": \""22%\""}",150073,0,"""South America""" +2024-02-25,36136,8203,"[\""Tablet\"", \""Monitor\""]",4233.0,{},136458,1,"""Africa""" +2024-12-08,36137,7994,"[\""Phone\"", \""Headphones\""]",4288.69,{},184531,1,"""South America""" +2023-10-12,36138,191,"[\""Tablet\"", \""Laptop\""]",4639.17,"{\""seasonal\"": \""14%\""}",25872,1,"""South America""" +2024-01-26,36139,8328,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",119.19,"{\""promo\"": \""28%\""}",62347,0,"""Asia""" +2024-09-02,36140,1455,"[\""Headphones\"", \""Monitor\""]",2549.83,"{\""seasonal\"": \""9%\""}",289278,1,"""Asia""" +2023-09-01,36141,1994,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4258.67,{},139733,1,"""Africa""" +2023-01-31,36142,428,"[\""Headphones\"", \""Wireless Mouse\""]",1546.25,{},30345,1,"""Africa""" +2023-02-09,36143,9564,"[\""Laptop\"", \""Monitor\""]",4450.29,{},196651,1,"""North America""" +2023-12-21,36144,3312,"[\""Monitor\"", \""Keyboard\""]",4053.65,{},287556,1,"""Africa""" +2024-11-08,36145,1512,"[\""Laptop\""]",3147.43,"{\""promo\"": \""21%\""}",186123,0,"""Europe""" +2024-11-25,36146,7468,"[\""Phone\"", \""Wireless Mouse\""]",372.24,"{\""loyalty\"": \""24%\""}",31717,0,"""Asia""" +2024-02-19,36147,2318,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2782.46,"{\""seasonal\"": \""12%\""}",285018,1,"""North America""" +2023-04-22,36148,1217,"[\""Monitor\"", \""Tablet\""]",864.6,{},208155,1,"""Africa""" +2024-01-12,36149,3630,"[\""Phone\"", \""Keyboard\""]",2895.77,"{\""promo\"": \""23%\""}",218513,1,"""Europe""" +2023-12-24,36150,3244,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1056.34,"{\""seasonal\"": \""22%\""}",141454,1,"""North America""" +2024-10-23,36151,5952,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3567.36,"{\""loyalty\"": \""9%\""}",215880,0,"""Asia""" +2024-06-26,36152,6272,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2730.73,"{\"": \""7%\""}",15021,1,"""North America""" +2023-10-17,36153,5169,"[\""Keyboard\"", \""Headphones\""]",4076.79,"{\""promo\"": \""18%\""}",37781,1,"""Europe""" +2023-09-05,36154,775,"[\""Laptop\""]",3671.14,{},246490,0,"""Europe""" +2024-03-31,36155,9578,"[\""Keyboard\""]",4969.65,{},114173,0,"""North America""" +2023-05-10,36156,5171,"[\""Tablet\""]",4204.1,{},281819,1,"""Europe""" +2023-03-08,36157,3742,"[\""Headphones\""]",3972.87,"{\"": \""11%\""}",75409,1,"""Asia""" +2023-11-30,36158,1903,"[\""Headphones\"", \""Wireless Mouse\""]",2428.66,{},159419,0,"""South America""" +2023-09-30,36159,419,"[\""Laptop\""]",3405.23,{},244088,0,"""North America""" +2024-08-23,36160,2693,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",335.01,{},22021,0,"""North America""" +2023-11-06,36161,379,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",114.64,{},207369,0,"""Europe""" +2024-08-28,36162,2739,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",312.99,"{\""loyalty\"": \""19%\""}",65829,0,"""North America""" +2024-11-20,36163,2462,"[\""Keyboard\"", \""Charger\""]",2860.76,"{\""promo\"": \""8%\""}",85852,0,"""Africa""" +2024-12-27,36164,2683,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",261.79,"{\"": \""19%\""}",204450,0,"""North America""" +2024-12-14,36165,3988,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2633.8,{},229085,0,"""South America""" +2023-04-27,36166,333,"[\""Monitor\"", \""Laptop\""]",2636.52,"{\""promo\"": \""17%\""}",164739,0,"""Africa""" +2024-02-09,36167,4878,"[\""Phone\"", \""Monitor\""]",1890.81,{},165468,0,"""Africa""" +2024-11-01,36168,863,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1985.18,"{\"": \""24%\""}",174935,0,"""Europe""" +2023-08-04,36169,9368,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1623.76,{},17269,0,"""Asia""" +2023-06-05,36170,1778,"[\""Wireless Mouse\"", \""Tablet\""]",3075.73,{},174517,0,"""Europe""" +2024-03-22,36171,2567,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",629.42,"{\""loyalty\"": \""28%\""}",236789,0,"""Asia""" +2023-07-26,36172,2533,"[\""Monitor\""]",1469.26,{},297017,1,"""North America""" +2024-10-02,36173,4980,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4011.61,"{\""loyalty\"": \""23%\""}",88913,0,"""North America""" +2023-08-05,36174,9416,"[\""Tablet\"", \""Wireless Mouse\""]",4088.38,"{\""seasonal\"": \""10%\""}",27992,1,"""North America""" +2024-07-14,36175,15,"[\""Phone\"", \""Headphones\""]",4091.09,"{\"": \""21%\""}",259662,0,"""Africa""" +2023-02-09,36176,2929,"[\""Wireless Mouse\""]",4888.1,"{\""promo\"": \""27%\""}",164423,1,"""Asia""" +2023-04-23,36177,3138,"[\""Tablet\""]",781.32,"{\"": \""12%\""}",187557,0,"""Europe""" +2024-12-12,36178,5543,"[\""Laptop\"", \""Charger\""]",4954.79,{},118417,1,"""North America""" +2024-10-18,36179,3448,"[\""Headphones\"", \""Phone\""]",3380.79,{},98635,0,"""South America""" +2023-09-14,36180,2563,"[\""Headphones\"", \""Tablet\""]",2868.77,{},187103,1,"""Europe""" +2023-12-11,36181,9262,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1007.13,{},137853,0,"""Africa""" +2023-02-23,36182,8275,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3858.7,"{\""loyalty\"": \""14%\""}",206069,1,"""South America""" +2024-12-17,36183,571,"[\""Headphones\""]",3006.21,{},182060,0,"""Asia""" +2024-03-01,36184,9414,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1834.98,{},180493,1,"""Europe""" +2023-10-16,36185,3153,"[\""Monitor\""]",2086.8,{},178373,0,"""Europe""" +2023-04-17,36186,7669,"[\""Keyboard\""]",4253.84,"{\""loyalty\"": \""25%\""}",249271,0,"""Europe""" +2024-10-26,36187,7498,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3650.78,{},107346,1,"""North America""" +2023-05-04,36188,5313,"[\""Charger\"", \""Phone\""]",3057.56,"{\""loyalty\"": \""17%\""}",177030,1,"""North America""" +2024-09-21,36189,2776,"[\""Charger\""]",991.56,"{\""seasonal\"": \""27%\""}",34835,0,"""North America""" +2023-07-29,36190,4865,"[\""Keyboard\""]",900.69,"{\""loyalty\"": \""7%\""}",77141,1,"""Asia""" +2023-06-08,36191,1951,"[\""Monitor\"", \""Wireless Mouse\""]",1948.4,{},165908,0,"""Africa""" +2023-09-03,36192,2795,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2045.87,"{\""promo\"": \""30%\""}",250543,0,"""South America""" +2023-09-25,36193,8539,"[\""Charger\""]",399.18,{},212115,1,"""Africa""" +2024-04-09,36194,1619,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2545.27,"{\""seasonal\"": \""22%\""}",275519,0,"""South America""" +2024-08-19,36195,324,"[\""Charger\""]",1541.53,"{\""seasonal\"": \""10%\""}",37747,1,"""Africa""" +2024-10-19,36196,6751,"[\""Monitor\""]",242.01,{},102498,0,"""Europe""" +2023-10-25,36197,3735,"[\""Headphones\""]",2397.44,"{\""loyalty\"": \""20%\""}",154172,0,"""Africa""" +2023-08-16,36198,4360,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3357.72,"{\""seasonal\"": \""14%\""}",144268,0,"""North America""" +2023-09-18,36199,4948,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4613.23,"{\""loyalty\"": \""11%\""}",70910,1,"""Europe""" +2024-09-06,36200,404,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",812.29,{},239199,1,"""North America""" +2024-11-28,36201,9295,"[\""Phone\""]",4755.23,{},80201,1,"""South America""" +2023-06-18,36202,3529,"[\""Wireless Mouse\"", \""Tablet\""]",1366.84,"{\"": \""30%\""}",163029,0,"""North America""" +2023-09-22,36203,3184,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1686.88,"{\""seasonal\"": \""8%\""}",146849,0,"""Africa""" +2024-07-25,36204,1671,"[\""Wireless Mouse\""]",1973.32,{},182993,0,"""Europe""" +2024-10-01,36205,9339,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4693.02,{},176422,0,"""South America""" +2024-08-11,36206,4170,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4301.25,"{\"": \""28%\""}",98785,1,"""North America""" +2024-08-27,36207,1597,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",944.39,"{\""seasonal\"": \""6%\""}",189685,0,"""Europe""" +2023-04-24,36208,3595,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",310.44,{},79802,1,"""Africa""" +2024-03-18,36209,2792,"[\""Charger\"", \""Keyboard\""]",909.7,"{\""promo\"": \""16%\""}",284630,0,"""South America""" +2023-07-05,36210,2390,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3331.12,{},76222,1,"""Asia""" +2024-03-14,36211,8974,"[\""Wireless Mouse\""]",2369.23,"{\""loyalty\"": \""9%\""}",109629,0,"""Europe""" +2023-09-24,36212,8030,"[\""Monitor\"", \""Keyboard\""]",167.35,"{\""seasonal\"": \""14%\""}",169276,1,"""North America""" +2024-04-22,36213,9540,"[\""Charger\""]",2048.54,{},11015,0,"""Asia""" +2024-11-14,36214,6239,"[\""Keyboard\""]",3404.59,"{\""loyalty\"": \""8%\""}",281678,1,"""Asia""" +2024-11-13,36215,5808,"[\""Monitor\"", \""Phone\""]",4467.66,{},77189,1,"""Europe""" +2024-07-01,36216,984,"[\""Headphones\"", \""Charger\""]",1259.23,{},139864,1,"""Africa""" +2024-07-30,36217,811,"[\""Monitor\""]",2055.18,"{\"": \""5%\""}",210895,1,"""Africa""" +2023-01-06,36218,9001,"[\""Keyboard\""]",1151.81,{},100938,0,"""South America""" +2024-10-15,36219,6130,"[\""Tablet\""]",3107.82,"{\"": \""13%\""}",176537,0,"""Asia""" +2023-01-04,36220,136,"[\""Laptop\"", \""Wireless Mouse\""]",2789.79,"{\""seasonal\"": \""14%\""}",187444,1,"""Asia""" +2024-08-25,36221,8173,"[\""Wireless Mouse\"", \""Tablet\""]",4220.78,{},119840,0,"""North America""" +2024-07-09,36222,2947,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2729.63,"{\""promo\"": \""29%\""}",75660,0,"""Europe""" +2024-09-23,36223,6710,"[\""Monitor\"", \""Wireless Mouse\""]",4432.51,"{\"": \""7%\""}",167471,0,"""Asia""" +2023-10-17,36224,1347,"[\""Tablet\""]",3442.99,{},198148,0,"""South America""" +2024-08-05,36225,5751,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3102.85,{},297802,0,"""Europe""" +2024-06-08,36226,393,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",872.14,"{\""promo\"": \""17%\""}",29515,0,"""Africa""" +2024-09-04,36227,5086,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1133.44,{},171784,1,"""Asia""" +2024-03-23,36228,7507,"[\""Charger\""]",4985.49,"{\""promo\"": \""16%\""}",233963,0,"""Africa""" +2023-04-21,36229,6142,"[\""Keyboard\""]",4086.69,"{\"": \""21%\""}",16411,1,"""Asia""" +2023-03-20,36230,1116,"[\""Keyboard\"", \""Headphones\""]",1128.07,"{\"": \""14%\""}",239546,0,"""South America""" +2024-04-21,36231,3391,"[\""Wireless Mouse\""]",1767.81,"{\"": \""22%\""}",31818,0,"""North America""" +2024-03-30,36232,5058,"[\""Monitor\""]",1083.93,{},146099,1,"""Asia""" +2023-10-03,36233,9150,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1038.84,{},291383,0,"""North America""" +2023-09-21,36234,3216,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3545.89,"{\"": \""27%\""}",81287,1,"""North America""" +2024-11-18,36235,9456,"[\""Laptop\""]",730.21,{},58939,0,"""Europe""" +2024-07-25,36236,2182,"[\""Keyboard\"", \""Wireless Mouse\""]",2326.63,"{\"": \""17%\""}",41384,1,"""North America""" +2024-07-06,36237,9894,"[\""Charger\""]",4702.79,"{\""promo\"": \""10%\""}",99788,0,"""Africa""" +2023-03-13,36238,5694,"[\""Keyboard\""]",1137.27,"{\"": \""24%\""}",135453,0,"""Asia""" +2023-01-28,36239,1213,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3295.99,"{\""loyalty\"": \""13%\""}",265188,1,"""Asia""" +2024-02-18,36240,9428,"[\""Monitor\"", \""Tablet\""]",3705.02,"{\""seasonal\"": \""15%\""}",111540,0,"""Africa""" +2024-05-16,36241,872,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",472.38,"{\"": \""28%\""}",230126,0,"""South America""" +2023-05-09,36242,9784,"[\""Wireless Mouse\"", \""Charger\""]",4801.53,"{\"": \""6%\""}",28380,0,"""South America""" +2023-09-25,36243,8790,"[\""Laptop\""]",319.85,{},9685,1,"""Asia""" +2023-02-18,36244,9774,"[\""Phone\"", \""Keyboard\""]",3333.29,"{\""loyalty\"": \""11%\""}",236548,1,"""Asia""" +2024-08-11,36245,8434,"[\""Charger\"", \""Phone\""]",2420.17,{},57495,0,"""South America""" +2024-09-12,36246,7873,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2638.36,"{\"": \""28%\""}",108265,0,"""South America""" +2024-06-16,36247,2894,"[\""Tablet\"", \""Phone\""]",3823.5,"{\""promo\"": \""18%\""}",268775,1,"""Europe""" +2023-04-12,36248,5154,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3607.41,{},233736,0,"""South America""" +2023-09-29,36249,8838,"[\""Charger\""]",3310.34,{},246567,1,"""South America""" +2024-03-18,36250,6045,"[\""Tablet\"", \""Laptop\""]",3477.62,"{\""loyalty\"": \""10%\""}",217289,0,"""North America""" +2023-11-25,36251,6240,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1345.87,{},181290,0,"""Europe""" +2024-04-10,36252,913,"[\""Tablet\""]",1739.51,"{\""loyalty\"": \""28%\""}",225099,0,"""Asia""" +2023-03-07,36253,6303,"[\""Monitor\""]",365.83,{},249102,0,"""Africa""" +2023-09-29,36254,3920,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3917.67,"{\""loyalty\"": \""17%\""}",114289,1,"""Africa""" +2023-07-22,36255,6077,"[\""Keyboard\""]",4909.1,{},145285,1,"""Africa""" +2023-09-19,36256,8502,"[\""Monitor\"", \""Laptop\""]",4241.89,{},261243,1,"""Africa""" +2024-05-07,36257,7406,"[\""Charger\""]",3211.11,{},56328,0,"""Europe""" +2023-10-30,36258,6921,"[\""Monitor\"", \""Tablet\""]",3849.81,{},8006,0,"""Asia""" +2024-08-05,36259,2378,"[\""Charger\"", \""Tablet\""]",2085.97,{},231864,0,"""Asia""" +2023-12-14,36260,1984,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4613.13,"{\""loyalty\"": \""30%\""}",270066,1,"""Europe""" +2024-11-18,36261,2417,"[\""Headphones\""]",4381.08,{},131871,0,"""North America""" +2023-07-22,36262,2780,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1254.79,{},129384,0,"""North America""" +2023-03-12,36263,162,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4362.82,{},225361,0,"""North America""" +2024-04-12,36264,5033,"[\""Phone\""]",2488.93,{},20930,1,"""South America""" +2024-03-03,36265,1042,"[\""Headphones\"", \""Wireless Mouse\""]",4262.95,{},74061,0,"""South America""" +2024-04-21,36266,8287,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",369.08,{},96665,0,"""Europe""" +2023-10-18,36267,5122,"[\""Headphones\""]",1469.13,"{\""loyalty\"": \""30%\""}",161772,0,"""South America""" +2024-12-09,36268,7492,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3298.93,{},278787,1,"""Africa""" +2023-05-17,36269,6870,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3032.9,"{\""seasonal\"": \""5%\""}",176022,0,"""South America""" +2024-09-16,36270,3575,"[\""Phone\"", \""Monitor\""]",220.33,{},204674,0,"""North America""" +2024-10-30,36271,1011,"[\""Wireless Mouse\"", \""Charger\""]",2847.53,"{\""promo\"": \""12%\""}",276361,0,"""Africa""" +2024-11-25,36272,6744,"[\""Monitor\""]",1488.11,{},91503,0,"""Europe""" +2023-09-03,36273,1694,"[\""Charger\"", \""Monitor\""]",1953.23,{},184686,1,"""North America""" +2024-06-17,36274,6934,"[\""Monitor\"", \""Keyboard\""]",2363.69,{},174335,0,"""Africa""" +2024-09-24,36275,5541,"[\""Monitor\"", \""Headphones\""]",434.3,"{\"": \""25%\""}",271407,0,"""South America""" +2023-01-06,36276,8450,"[\""Keyboard\""]",3974.64,"{\""promo\"": \""8%\""}",221216,0,"""Africa""" +2024-05-04,36277,1667,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2656.98,"{\""promo\"": \""24%\""}",74156,1,"""North America""" +2024-04-26,36278,5222,"[\""Wireless Mouse\"", \""Phone\""]",3239.97,{},35912,0,"""North America""" +2024-12-03,36279,8985,"[\""Laptop\"", \""Tablet\""]",1097.7,"{\""promo\"": \""25%\""}",59870,0,"""South America""" +2024-11-05,36280,5094,"[\""Wireless Mouse\""]",4237.13,{},292200,1,"""South America""" +2023-08-31,36281,6972,"[\""Phone\""]",687.68,{},299730,0,"""Africa""" +2023-04-22,36282,1268,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2744.52,"{\""promo\"": \""24%\""}",18938,0,"""Asia""" +2024-03-17,36283,9736,"[\""Headphones\"", \""Laptop\""]",901.19,"{\""promo\"": \""7%\""}",111578,0,"""Europe""" +2023-06-09,36284,5971,"[\""Phone\"", \""Keyboard\""]",1147.62,{},164018,1,"""Europe""" +2024-10-02,36285,4883,"[\""Tablet\"", \""Headphones\""]",2302.22,{},145766,0,"""Asia""" +2023-09-14,36286,8462,"[\""Monitor\"", \""Wireless Mouse\""]",2911.26,{},47186,1,"""Asia""" +2024-06-08,36287,2020,"[\""Monitor\"", \""Headphones\""]",2018.5,{},223962,0,"""Asia""" +2023-10-07,36288,276,"[\""Wireless Mouse\"", \""Charger\""]",763.75,{},67637,1,"""Asia""" +2024-08-04,36289,9234,"[\""Charger\"", \""Keyboard\""]",217.43,"{\""seasonal\"": \""8%\""}",23296,1,"""Europe""" +2023-09-19,36290,465,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",289.43,"{\"": \""18%\""}",134039,1,"""Asia""" +2024-08-26,36291,3459,"[\""Laptop\"", \""Monitor\""]",2136.34,{},97838,0,"""North America""" +2023-01-21,36292,1258,"[\""Headphones\""]",4854.04,"{\""loyalty\"": \""17%\""}",137745,0,"""North America""" +2023-09-15,36293,203,"[\""Monitor\"", \""Headphones\""]",3620.99,{},141954,1,"""South America""" +2024-09-22,36294,2580,"[\""Tablet\"", \""Phone\""]",1348.78,"{\""promo\"": \""20%\""}",256733,0,"""North America""" +2024-11-20,36295,877,"[\""Phone\"", \""Headphones\"", \""Charger\""]",492.3,{},100134,0,"""North America""" +2023-08-14,36296,8750,"[\""Wireless Mouse\""]",4246.42,"{\""promo\"": \""28%\""}",6509,0,"""Europe""" +2023-04-19,36297,1412,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",511.04,"{\""loyalty\"": \""9%\""}",32296,1,"""North America""" +2024-03-25,36298,4924,"[\""Tablet\""]",2018.81,"{\""loyalty\"": \""20%\""}",219221,1,"""Africa""" +2023-12-28,36299,6612,"[\""Headphones\""]",4852.05,"{\""promo\"": \""28%\""}",128222,1,"""South America""" +2023-06-23,36300,2815,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2995.06,{},219841,0,"""North America""" +2024-08-23,36301,2890,"[\""Headphones\""]",4107.96,"{\"": \""26%\""}",32760,0,"""Africa""" +2023-01-29,36302,983,"[\""Phone\"", \""Wireless Mouse\""]",372.4,{},291395,0,"""Europe""" +2023-03-06,36303,4147,"[\""Keyboard\"", \""Tablet\""]",3223.22,{},211314,0,"""South America""" +2023-01-09,36304,1685,"[\""Charger\""]",4889.79,"{\""loyalty\"": \""12%\""}",282160,0,"""South America""" +2024-12-11,36305,8632,"[\""Tablet\"", \""Wireless Mouse\""]",3143.97,"{\"": \""8%\""}",228948,0,"""South America""" +2023-05-07,36306,6218,"[\""Tablet\"", \""Headphones\""]",4887.12,"{\"": \""29%\""}",264049,0,"""Africa""" +2024-10-12,36307,1493,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",437.57,"{\"": \""9%\""}",286777,0,"""South America""" +2023-07-23,36308,9400,"[\""Tablet\""]",3882.52,{},18341,0,"""Africa""" +2023-06-08,36309,1813,"[\""Phone\"", \""Headphones\""]",3007.4,"{\""loyalty\"": \""22%\""}",178504,1,"""Africa""" +2023-08-26,36310,2822,"[\""Monitor\""]",2605.51,"{\""loyalty\"": \""21%\""}",161380,0,"""North America""" +2024-09-10,36311,535,"[\""Keyboard\"", \""Wireless Mouse\""]",1797.71,"{\"": \""21%\""}",243767,0,"""South America""" +2024-09-05,36312,4911,"[\""Tablet\"", \""Phone\""]",4773.73,{},31798,0,"""North America""" +2023-04-18,36313,6652,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",56.49,"{\""promo\"": \""13%\""}",87321,1,"""South America""" +2024-06-19,36314,7077,"[\""Monitor\"", \""Charger\""]",2056.65,{},181983,1,"""Asia""" +2023-03-06,36315,5968,"[\""Keyboard\"", \""Tablet\""]",2881.89,"{\""seasonal\"": \""17%\""}",119336,0,"""South America""" +2023-05-14,36316,7591,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3564.97,"{\"": \""16%\""}",188669,1,"""South America""" +2023-10-14,36317,3531,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2608.33,"{\""loyalty\"": \""11%\""}",136888,0,"""Europe""" +2023-12-20,36318,2302,"[\""Charger\"", \""Phone\""]",1349.86,"{\""promo\"": \""6%\""}",12266,1,"""South America""" +2024-01-16,36319,7386,"[\""Headphones\""]",2867.86,"{\""loyalty\"": \""8%\""}",273772,0,"""Africa""" +2023-06-29,36320,8493,"[\""Keyboard\"", \""Phone\""]",1995.21,{},270802,0,"""Asia""" +2023-08-13,36321,3565,"[\""Tablet\""]",1245.97,{},214264,0,"""Africa""" +2024-05-21,36322,4040,"[\""Headphones\""]",381.68,{},43430,1,"""Europe""" +2024-03-20,36323,2789,"[\""Monitor\""]",3662.48,"{\""loyalty\"": \""11%\""}",75106,1,"""Asia""" +2024-11-07,36324,7423,"[\""Keyboard\"", \""Wireless Mouse\""]",3940.78,"{\""seasonal\"": \""26%\""}",239310,1,"""Africa""" +2024-02-17,36325,9199,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1106.14,{},117726,0,"""South America""" +2024-11-28,36326,7778,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1734.65,"{\""loyalty\"": \""21%\""}",247960,1,"""Asia""" +2023-04-23,36327,6392,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2674.57,{},257365,1,"""North America""" +2023-04-30,36328,4664,"[\""Laptop\""]",3329.09,{},276465,0,"""Africa""" +2023-04-01,36329,9375,"[\""Wireless Mouse\"", \""Headphones\""]",2294.83,"{\"": \""25%\""}",254782,0,"""North America""" +2024-01-07,36330,8670,"[\""Tablet\""]",897.13,"{\"": \""16%\""}",230053,1,"""Africa""" +2024-08-30,36331,2138,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",712.66,"{\""seasonal\"": \""28%\""}",87128,0,"""Asia""" +2024-06-09,36332,7302,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3543.34,{},169094,1,"""Europe""" +2023-12-27,36333,1093,"[\""Headphones\"", \""Monitor\""]",744.45,{},194503,1,"""Africa""" +2023-10-01,36334,7891,"[\""Tablet\""]",3154.75,"{\""promo\"": \""20%\""}",239636,1,"""Africa""" +2023-12-15,36335,1960,"[\""Wireless Mouse\""]",4469.56,"{\"": \""22%\""}",280129,0,"""Africa""" +2023-02-25,36336,9964,"[\""Laptop\""]",1356.35,{},58633,0,"""Africa""" +2024-09-10,36337,6814,"[\""Headphones\""]",1396.98,"{\""promo\"": \""11%\""}",205873,1,"""Asia""" +2023-05-10,36338,5415,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",722.33,{},81924,0,"""South America""" +2024-12-12,36339,3095,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4449.09,{},262394,0,"""South America""" +2024-03-16,36340,9096,"[\""Charger\""]",4121.52,"{\""loyalty\"": \""10%\""}",238980,1,"""Europe""" +2023-09-22,36341,9012,"[\""Laptop\""]",2870.62,"{\""loyalty\"": \""26%\""}",12363,1,"""North America""" +2024-12-17,36342,5037,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3490.92,{},255697,0,"""Africa""" +2023-08-17,36343,1361,"[\""Charger\"", \""Headphones\""]",4867.84,"{\""promo\"": \""17%\""}",38091,0,"""Asia""" +2024-09-29,36344,5597,"[\""Keyboard\"", \""Headphones\""]",4682.62,{},278577,1,"""North America""" +2023-01-29,36345,2212,"[\""Keyboard\"", \""Charger\""]",2313.91,{},246141,1,"""North America""" +2024-07-04,36346,3085,"[\""Tablet\"", \""Headphones\""]",2406.14,"{\""seasonal\"": \""24%\""}",215037,0,"""Africa""" +2023-10-23,36347,7417,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3163.73,"{\""promo\"": \""19%\""}",169762,0,"""Africa""" +2023-03-24,36348,7504,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",436.87,"{\""seasonal\"": \""24%\""}",2629,0,"""Europe""" +2023-09-10,36349,7709,"[\""Laptop\""]",2663.76,{},250242,0,"""Africa""" +2023-04-10,36350,1986,"[\""Phone\""]",1960.3,{},50861,1,"""North America""" +2024-01-08,36351,3782,"[\""Charger\"", \""Phone\""]",3784.38,{},17003,1,"""South America""" +2024-05-10,36352,5113,"[\""Charger\""]",267.91,{},291465,0,"""North America""" +2023-01-31,36353,4879,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4897.79,"{\""promo\"": \""28%\""}",203885,1,"""Africa""" +2023-01-25,36354,7743,"[\""Headphones\""]",2392.51,"{\""promo\"": \""11%\""}",84221,0,"""North America""" +2024-12-23,36355,2920,"[\""Keyboard\""]",92.54,{},154996,1,"""Asia""" +2023-01-30,36356,1160,"[\""Headphones\""]",1732.43,"{\""loyalty\"": \""11%\""}",210995,0,"""North America""" +2023-08-20,36357,969,"[\""Laptop\""]",4404.07,"{\"": \""29%\""}",155311,1,"""South America""" +2024-05-20,36358,5813,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",427.19,"{\""promo\"": \""10%\""}",259426,0,"""Europe""" +2023-01-07,36359,6235,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3309.96,"{\""loyalty\"": \""10%\""}",201811,0,"""Africa""" +2023-02-13,36360,3357,"[\""Headphones\""]",1585.36,"{\"": \""24%\""}",176081,0,"""Europe""" +2023-01-02,36361,1944,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",336.08,{},141431,1,"""North America""" +2023-05-02,36362,9662,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4912.08,"{\""seasonal\"": \""22%\""}",84422,0,"""Europe""" +2023-08-24,36363,7392,"[\""Phone\""]",4511.67,"{\"": \""5%\""}",97720,0,"""North America""" +2024-05-26,36364,1532,"[\""Headphones\""]",2710.23,{},198827,1,"""Asia""" +2024-01-25,36365,2960,"[\""Wireless Mouse\""]",1904.41,"{\"": \""29%\""}",1080,1,"""Europe""" +2024-12-03,36366,9942,"[\""Headphones\"", \""Tablet\""]",330.9,{},169036,1,"""Africa""" +2024-06-06,36367,4336,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2926.41,"{\""seasonal\"": \""17%\""}",100444,0,"""Africa""" +2023-12-31,36368,4371,"[\""Charger\"", \""Keyboard\""]",1895.36,"{\"": \""8%\""}",2246,1,"""South America""" +2024-09-15,36369,6292,"[\""Keyboard\"", \""Monitor\""]",1107.42,"{\""promo\"": \""16%\""}",294417,1,"""Asia""" +2023-07-03,36370,5689,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2781.68,{},254690,1,"""Asia""" +2023-03-29,36371,4450,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3328.19,"{\""loyalty\"": \""7%\""}",218091,0,"""North America""" +2023-06-19,36372,1365,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3205.78,{},117152,0,"""North America""" +2023-02-19,36373,7,"[\""Headphones\""]",2346.37,"{\""loyalty\"": \""5%\""}",57011,0,"""North America""" +2024-12-09,36374,4743,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3445.34,"{\"": \""29%\""}",78490,0,"""South America""" +2024-07-21,36375,3940,"[\""Monitor\"", \""Phone\""]",3106.01,{},28937,0,"""North America""" +2024-12-05,36376,6582,"[\""Tablet\""]",4746.76,"{\""promo\"": \""15%\""}",93391,0,"""Europe""" +2024-01-19,36377,1285,"[\""Laptop\""]",3825.75,{},180928,0,"""North America""" +2023-04-01,36378,5119,"[\""Tablet\""]",173.8,"{\""promo\"": \""7%\""}",161287,1,"""Europe""" +2023-04-21,36379,4617,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1887.94,"{\""seasonal\"": \""10%\""}",54060,1,"""Asia""" +2024-05-05,36380,578,"[\""Wireless Mouse\"", \""Tablet\""]",4774.78,{},298703,0,"""Asia""" +2024-08-12,36381,2067,"[\""Laptop\"", \""Charger\""]",3556.99,{},168511,0,"""Africa""" +2023-02-13,36382,9806,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4799.49,"{\""promo\"": \""28%\""}",211989,0,"""South America""" +2023-06-11,36383,9925,"[\""Wireless Mouse\""]",4139.08,{},151647,0,"""Europe""" +2023-04-26,36384,7866,"[\""Tablet\""]",152.55,{},211531,1,"""Europe""" +2024-04-19,36385,7446,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2638.11,{},153501,1,"""South America""" +2023-08-31,36386,8091,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1068.33,{},247855,1,"""Asia""" +2024-12-27,36387,4789,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1522.17,{},128287,0,"""Asia""" +2024-09-13,36388,1830,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3157.91,"{\""loyalty\"": \""24%\""}",258130,0,"""North America""" +2024-06-02,36389,8468,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",870.16,{},296386,1,"""Asia""" +2023-10-29,36390,5651,"[\""Tablet\"", \""Charger\""]",2395.42,{},287281,1,"""North America""" +2024-08-28,36391,7386,"[\""Charger\"", \""Monitor\""]",4893.37,"{\""seasonal\"": \""17%\""}",67796,0,"""Europe""" +2024-03-14,36392,1146,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4035.61,{},161678,1,"""Asia""" +2023-12-17,36393,9897,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4526.68,{},98277,0,"""Europe""" +2024-10-11,36394,9018,"[\""Phone\""]",3123.66,{},187571,0,"""Asia""" +2023-06-29,36395,1551,"[\""Laptop\"", \""Phone\""]",3736.65,"{\""promo\"": \""6%\""}",128212,0,"""South America""" +2023-01-18,36396,4779,"[\""Monitor\"", \""Keyboard\""]",607.68,"{\""seasonal\"": \""28%\""}",200163,0,"""North America""" +2023-11-29,36397,6474,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1765.25,{},181830,0,"""South America""" +2024-03-10,36398,7499,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2344.96,"{\""seasonal\"": \""24%\""}",282112,1,"""South America""" +2024-12-11,36399,7268,"[\""Phone\""]",4869.78,{},298180,0,"""North America""" +2024-05-20,36400,2340,"[\""Tablet\""]",260.2,"{\""seasonal\"": \""19%\""}",69464,1,"""South America""" +2023-11-08,36401,9775,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4344.32,{},144818,1,"""Asia""" +2024-12-29,36402,1317,"[\""Monitor\"", \""Headphones\""]",2356.62,{},94685,0,"""Africa""" +2024-07-19,36403,9321,"[\""Laptop\"", \""Keyboard\""]",422.76,{},144178,0,"""South America""" +2023-11-30,36404,3018,"[\""Phone\""]",3811.89,{},183878,1,"""Europe""" +2023-05-09,36405,2777,"[\""Phone\""]",3661.56,{},121829,1,"""Europe""" +2024-07-10,36406,4225,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4941.46,"{\""seasonal\"": \""12%\""}",92046,1,"""Europe""" +2024-08-28,36407,2023,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1985.02,{},177550,1,"""Africa""" +2024-04-18,36408,3684,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1446.37,{},197765,0,"""Europe""" +2023-10-08,36409,8606,"[\""Monitor\"", \""Wireless Mouse\""]",1275.05,"{\""promo\"": \""21%\""}",32370,1,"""North America""" +2024-08-08,36410,9642,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2037.79,"{\"": \""16%\""}",199285,1,"""Europe""" +2024-11-25,36411,1717,"[\""Keyboard\""]",2785.02,{},198097,0,"""Africa""" +2024-02-23,36412,5600,"[\""Tablet\""]",4508.74,{},222701,0,"""North America""" +2024-04-27,36413,4903,"[\""Charger\""]",2644.63,"{\"": \""25%\""}",74905,1,"""Africa""" +2024-09-02,36414,1032,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3590.05,"{\""seasonal\"": \""24%\""}",86229,0,"""North America""" +2024-06-02,36415,5734,"[\""Phone\"", \""Charger\""]",4955.67,{},290292,1,"""South America""" +2024-04-23,36416,5325,"[\""Laptop\""]",2141.82,{},54428,0,"""Africa""" +2023-05-15,36417,7556,"[\""Wireless Mouse\""]",497.41,{},136274,0,"""Europe""" +2024-08-24,36418,6662,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",582.42,{},62149,0,"""Asia""" +2023-07-25,36419,8501,"[\""Headphones\""]",3451.43,"{\""promo\"": \""22%\""}",69340,0,"""North America""" +2024-10-18,36420,2194,"[\""Tablet\"", \""Monitor\""]",3912.09,{},261522,1,"""Asia""" +2024-03-25,36421,9051,"[\""Monitor\""]",501.93,{},42338,1,"""North America""" +2023-03-29,36422,1601,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3366.55,{},273976,1,"""North America""" +2024-02-18,36423,8337,"[\""Phone\"", \""Keyboard\""]",845.53,"{\""loyalty\"": \""17%\""}",176217,0,"""Africa""" +2024-11-01,36424,3497,"[\""Charger\""]",1488.11,"{\""loyalty\"": \""27%\""}",172780,0,"""North America""" +2023-08-10,36425,1857,"[\""Phone\"", \""Charger\""]",4827.27,{},65643,0,"""Africa""" +2023-06-02,36426,1985,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4289.01,{},93160,1,"""North America""" +2023-04-21,36427,8453,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4426.15,{},247571,0,"""Asia""" +2023-06-14,36428,3180,"[\""Phone\"", \""Wireless Mouse\""]",1657.27,{},33990,0,"""Africa""" +2023-05-24,36429,854,"[\""Keyboard\"", \""Laptop\""]",4953.09,{},234713,0,"""Africa""" +2024-03-17,36430,4925,"[\""Phone\""]",971.65,{},32530,1,"""Europe""" +2024-10-18,36431,6090,"[\""Tablet\"", \""Wireless Mouse\""]",2590.7,{},138541,1,"""Asia""" +2024-03-13,36432,4115,"[\""Charger\""]",401.25,{},81467,0,"""Europe""" +2023-06-24,36433,4578,"[\""Tablet\"", \""Wireless Mouse\""]",1607.84,"{\""loyalty\"": \""12%\""}",206241,0,"""Africa""" +2023-06-05,36434,8954,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3571.45,{},267080,1,"""Asia""" +2023-08-10,36435,4760,"[\""Phone\"", \""Monitor\""]",407.15,"{\""seasonal\"": \""8%\""}",209830,1,"""North America""" +2024-10-20,36436,7059,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3237.22,{},175614,0,"""North America""" +2024-12-26,36437,5122,"[\""Laptop\""]",1209.82,"{\""seasonal\"": \""9%\""}",151562,1,"""South America""" +2023-07-15,36438,2086,"[\""Phone\""]",3251.36,"{\""promo\"": \""21%\""}",4579,0,"""South America""" +2023-03-14,36439,2869,"[\""Headphones\"", \""Charger\""]",4238.77,"{\""loyalty\"": \""27%\""}",86773,0,"""Africa""" +2023-12-20,36440,7685,"[\""Laptop\"", \""Headphones\""]",2713.89,{},198613,1,"""Europe""" +2023-07-13,36441,8363,"[\""Tablet\""]",3908.62,"{\""seasonal\"": \""22%\""}",235520,1,"""North America""" +2024-10-08,36442,4812,"[\""Laptop\"", \""Monitor\""]",4065.85,"{\"": \""14%\""}",106176,0,"""North America""" +2023-07-09,36443,9276,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2971.42,{},25881,0,"""Europe""" +2024-05-22,36444,9939,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",114.12,{},291612,0,"""North America""" +2024-05-31,36445,5907,"[\""Keyboard\""]",3250.27,"{\""promo\"": \""24%\""}",280562,0,"""Asia""" +2023-04-12,36446,3975,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3508.91,{},145465,1,"""Europe""" +2023-09-09,36447,3340,"[\""Headphones\"", \""Phone\""]",831.8,{},243327,0,"""Europe""" +2023-09-09,36448,1156,"[\""Keyboard\""]",682.13,"{\"": \""9%\""}",116837,0,"""Africa""" +2023-02-12,36449,9094,"[\""Charger\"", \""Laptop\""]",651.74,{},101440,1,"""Africa""" +2023-02-12,36450,3586,"[\""Tablet\""]",2326.33,"{\"": \""20%\""}",109175,1,"""Asia""" +2024-06-25,36451,1856,"[\""Keyboard\"", \""Headphones\""]",1703.05,"{\""promo\"": \""15%\""}",138473,0,"""North America""" +2023-07-19,36452,5320,"[\""Keyboard\""]",1566.03,{},106439,1,"""Africa""" +2024-09-27,36453,9973,"[\""Headphones\""]",761.12,{},265144,1,"""Africa""" +2024-08-17,36454,9208,"[\""Laptop\"", \""Wireless Mouse\""]",3083.8,"{\""seasonal\"": \""13%\""}",54345,0,"""South America""" +2024-08-17,36455,2814,"[\""Keyboard\"", \""Tablet\""]",1935.42,"{\"": \""23%\""}",161308,0,"""Asia""" +2024-07-15,36456,7124,"[\""Charger\""]",3211.53,"{\""promo\"": \""11%\""}",154668,0,"""Asia""" +2023-11-02,36457,3833,"[\""Wireless Mouse\""]",702.96,"{\""loyalty\"": \""13%\""}",4614,0,"""Africa""" +2023-05-19,36458,7802,"[\""Phone\""]",4341.49,"{\""promo\"": \""17%\""}",158699,0,"""Europe""" +2023-01-05,36459,4736,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",301.47,{},112537,1,"""Africa""" +2024-09-26,36460,9907,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4382.31,{},130650,0,"""Africa""" +2023-02-06,36461,3123,"[\""Monitor\"", \""Keyboard\""]",4289.18,"{\""promo\"": \""23%\""}",9918,1,"""North America""" +2024-12-14,36462,1412,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1875.73,{},286988,1,"""North America""" +2023-05-24,36463,4017,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",873.1,{},60361,1,"""Europe""" +2024-10-09,36464,1835,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1960.86,{},198054,1,"""North America""" +2023-04-08,36465,1258,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2033.88,{},233336,1,"""South America""" +2024-10-17,36466,208,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4753.05,"{\""seasonal\"": \""28%\""}",136473,0,"""South America""" +2024-08-01,36467,4538,"[\""Monitor\"", \""Headphones\""]",3399.53,"{\"": \""21%\""}",71808,1,"""Asia""" +2024-01-06,36468,4222,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3721.83,"{\""promo\"": \""19%\""}",220409,1,"""North America""" +2024-12-28,36469,9197,"[\""Phone\"", \""Keyboard\""]",74.12,"{\""seasonal\"": \""26%\""}",174974,0,"""South America""" +2024-09-15,36470,4593,"[\""Wireless Mouse\"", \""Monitor\""]",3992.12,{},238779,0,"""Asia""" +2024-10-20,36471,1952,"[\""Keyboard\"", \""Charger\""]",4707.68,{},101048,0,"""Europe""" +2024-10-04,36472,36,"[\""Laptop\""]",213.69,"{\""promo\"": \""8%\""}",55459,1,"""Asia""" +2023-08-08,36473,4862,"[\""Keyboard\"", \""Monitor\""]",3235.64,"{\"": \""27%\""}",68538,0,"""Asia""" +2023-10-26,36474,7294,"[\""Monitor\""]",938.0,"{\"": \""12%\""}",289203,1,"""Asia""" +2024-10-27,36475,1052,"[\""Tablet\"", \""Monitor\""]",1851.84,{},271286,1,"""Asia""" +2023-12-07,36476,7696,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1227.08,{},255282,1,"""South America""" +2024-02-12,36477,9465,"[\""Charger\""]",3345.96,"{\""loyalty\"": \""16%\""}",261658,1,"""Africa""" +2024-06-25,36478,7235,"[\""Headphones\""]",429.72,"{\"": \""14%\""}",8019,0,"""South America""" +2024-08-10,36479,6971,"[\""Headphones\""]",1694.68,{},215670,0,"""Asia""" +2023-12-18,36480,9557,"[\""Laptop\"", \""Wireless Mouse\""]",2811.07,"{\"": \""13%\""}",132085,0,"""Europe""" +2024-06-10,36481,8087,"[\""Monitor\"", \""Tablet\""]",300.25,"{\""seasonal\"": \""17%\""}",258919,1,"""Africa""" +2023-03-03,36482,398,"[\""Phone\""]",3416.8,{},268040,1,"""Africa""" +2023-10-20,36483,2919,"[\""Headphones\"", \""Keyboard\""]",3367.39,{},114354,0,"""Europe""" +2023-10-23,36484,8243,"[\""Wireless Mouse\""]",529.73,"{\""loyalty\"": \""26%\""}",219333,0,"""Europe""" +2024-12-03,36485,6734,"[\""Phone\"", \""Wireless Mouse\""]",4415.04,{},268149,0,"""Africa""" +2024-11-29,36486,4647,"[\""Headphones\"", \""Keyboard\""]",120.53,"{\""loyalty\"": \""30%\""}",181064,0,"""South America""" +2024-10-09,36487,3625,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3820.08,{},172225,1,"""Africa""" +2024-03-21,36488,5962,"[\""Keyboard\""]",470.08,"{\"": \""25%\""}",113240,1,"""Africa""" +2023-04-19,36489,1968,"[\""Keyboard\"", \""Tablet\""]",525.76,"{\""loyalty\"": \""9%\""}",37072,1,"""Africa""" +2023-02-09,36490,5056,"[\""Keyboard\"", \""Phone\""]",1733.39,"{\""promo\"": \""15%\""}",283907,0,"""South America""" +2023-07-11,36491,5566,"[\""Keyboard\""]",1310.84,"{\""seasonal\"": \""23%\""}",58320,0,"""South America""" +2023-08-01,36492,2690,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3488.04,{},264782,0,"""Africa""" +2024-02-29,36493,9822,"[\""Wireless Mouse\""]",428.84,"{\""loyalty\"": \""19%\""}",71807,1,"""Asia""" +2023-09-28,36494,2619,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",298.41,{},214237,0,"""Asia""" +2024-05-14,36495,5379,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1928.6,"{\""loyalty\"": \""20%\""}",118008,0,"""South America""" +2023-09-14,36496,8022,"[\""Laptop\""]",2675.7,{},191272,0,"""Africa""" +2024-04-06,36497,2333,"[\""Tablet\""]",3389.58,{},293477,0,"""Asia""" +2023-12-12,36498,2832,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",809.48,"{\""promo\"": \""13%\""}",176144,1,"""South America""" +2024-03-07,36499,8223,"[\""Keyboard\""]",3541.85,{},247095,0,"""North America""" +2024-12-14,36500,196,"[\""Phone\"", \""Tablet\""]",285.57,"{\""seasonal\"": \""26%\""}",34263,0,"""South America""" +2023-09-07,36501,9188,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4520.78,{},19354,1,"""South America""" +2023-02-09,36502,4763,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4040.8,{},164406,1,"""Asia""" +2024-11-03,36503,8913,"[\""Tablet\""]",1240.13,{},146260,0,"""Africa""" +2024-02-24,36504,9210,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4792.83,"{\""promo\"": \""11%\""}",282010,0,"""Europe""" +2024-02-22,36505,2922,"[\""Wireless Mouse\"", \""Keyboard\""]",2266.5,"{\""seasonal\"": \""11%\""}",89125,1,"""South America""" +2023-06-14,36506,2605,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2400.64,"{\"": \""10%\""}",274083,1,"""Europe""" +2023-07-06,36507,6148,"[\""Charger\"", \""Laptop\""]",3087.67,{},25734,1,"""South America""" +2024-04-04,36508,1785,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1615.24,{},106404,1,"""Europe""" +2024-01-29,36509,9521,"[\""Wireless Mouse\""]",316.59,{},288517,1,"""South America""" +2024-11-16,36510,6122,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2101.78,{},279596,0,"""Africa""" +2023-10-05,36511,1552,"[\""Monitor\"", \""Wireless Mouse\""]",2592.15,"{\"": \""26%\""}",285685,1,"""Asia""" +2023-11-11,36512,7109,"[\""Keyboard\""]",2139.61,{},102498,0,"""Asia""" +2024-06-09,36513,177,"[\""Monitor\"", \""Charger\""]",4143.95,"{\"": \""10%\""}",51096,0,"""South America""" +2023-06-02,36514,6212,"[\""Headphones\""]",1735.05,{},130533,0,"""Asia""" +2024-11-21,36515,3190,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1985.52,{},297474,0,"""Europe""" +2024-05-10,36516,1307,"[\""Wireless Mouse\""]",362.72,{},90431,1,"""Europe""" +2023-08-13,36517,8409,"[\""Monitor\""]",1082.56,"{\"": \""13%\""}",233785,1,"""Africa""" +2024-10-18,36518,8093,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3042.99,{},126019,0,"""Europe""" +2023-08-19,36519,1823,"[\""Tablet\""]",411.86,"{\""seasonal\"": \""30%\""}",294253,0,"""Africa""" +2023-05-14,36520,7705,"[\""Tablet\"", \""Charger\""]",4162.92,"{\""promo\"": \""25%\""}",149738,1,"""North America""" +2024-09-13,36521,1640,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3201.29,"{\""seasonal\"": \""9%\""}",206608,1,"""North America""" +2023-02-01,36522,7480,"[\""Tablet\""]",2501.34,{},64098,0,"""North America""" +2024-11-22,36523,7486,"[\""Headphones\"", \""Tablet\""]",2518.59,{},137339,0,"""Africa""" +2024-08-02,36524,9245,"[\""Headphones\""]",1241.33,{},292148,1,"""Asia""" +2023-11-19,36525,3002,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",448.21,"{\""loyalty\"": \""22%\""}",244972,1,"""North America""" +2023-05-26,36526,119,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1720.89,{},230826,0,"""North America""" +2023-11-08,36527,1078,"[\""Keyboard\"", \""Headphones\""]",2811.92,"{\""loyalty\"": \""27%\""}",233420,1,"""South America""" +2024-11-29,36528,8272,"[\""Keyboard\""]",3472.08,"{\""promo\"": \""5%\""}",243736,1,"""Europe""" +2024-04-09,36529,1177,"[\""Phone\""]",3078.95,{},17692,0,"""North America""" +2023-01-18,36530,1330,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",215.21,{},126437,1,"""Asia""" +2024-08-07,36531,7126,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3114.98,{},9099,0,"""Africa""" +2024-02-06,36532,5194,"[\""Monitor\""]",3026.47,"{\""promo\"": \""22%\""}",98258,1,"""Europe""" +2023-09-22,36533,397,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1703.51,"{\""loyalty\"": \""28%\""}",172082,0,"""South America""" +2024-07-10,36534,7650,"[\""Monitor\"", \""Laptop\""]",427.13,{},297089,1,"""Asia""" +2024-04-08,36535,6707,"[\""Phone\""]",3589.96,"{\""seasonal\"": \""27%\""}",48788,0,"""Africa""" +2024-12-19,36536,2278,"[\""Tablet\""]",4018.87,{},286385,1,"""South America""" +2023-03-24,36537,7764,"[\""Charger\"", \""Headphones\""]",2736.52,{},54523,0,"""Asia""" +2024-11-25,36538,7594,"[\""Charger\""]",2627.45,{},179322,1,"""South America""" +2023-04-16,36539,5693,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1775.73,{},297889,1,"""Asia""" +2023-10-25,36540,5217,"[\""Wireless Mouse\""]",1263.27,{},16866,1,"""South America""" +2024-08-10,36541,9722,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",762.95,{},271274,0,"""Asia""" +2024-05-10,36542,4231,"[\""Phone\"", \""Headphones\""]",4328.6,"{\""seasonal\"": \""17%\""}",33121,1,"""North America""" +2024-03-15,36543,5025,"[\""Phone\""]",2780.66,"{\""promo\"": \""20%\""}",261250,1,"""Africa""" +2024-11-25,36544,4833,"[\""Monitor\""]",4588.32,"{\""promo\"": \""13%\""}",84949,0,"""South America""" +2024-07-03,36545,4386,"[\""Wireless Mouse\"", \""Headphones\""]",4196.85,"{\""loyalty\"": \""18%\""}",96712,0,"""North America""" +2023-08-19,36546,7076,"[\""Tablet\""]",1471.54,{},29582,0,"""Europe""" +2024-04-21,36547,7720,"[\""Phone\""]",3749.36,"{\""loyalty\"": \""30%\""}",39267,1,"""Africa""" +2024-04-24,36548,8406,"[\""Wireless Mouse\""]",674.59,"{\""seasonal\"": \""12%\""}",244311,1,"""Asia""" +2023-04-23,36549,254,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4514.58,"{\""loyalty\"": \""13%\""}",96660,0,"""North America""" +2024-11-10,36550,4560,"[\""Phone\"", \""Monitor\""]",1953.01,{},27506,1,"""North America""" +2024-03-05,36551,6288,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",140.04,"{\""seasonal\"": \""27%\""}",258674,0,"""South America""" +2024-06-14,36552,5333,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2306.38,"{\"": \""18%\""}",65648,0,"""Asia""" +2023-10-09,36553,615,"[\""Phone\"", \""Headphones\""]",4698.25,{},24125,1,"""Asia""" +2024-07-24,36554,5829,"[\""Keyboard\""]",1206.0,{},87364,1,"""Asia""" +2024-06-06,36555,9005,"[\""Phone\""]",2418.57,"{\""loyalty\"": \""27%\""}",232231,1,"""Asia""" +2024-06-08,36556,5553,"[\""Headphones\""]",3393.74,{},162495,0,"""Africa""" +2023-12-12,36557,1565,"[\""Charger\"", \""Keyboard\""]",1434.38,{},187535,0,"""Africa""" +2024-03-31,36558,3900,"[\""Monitor\""]",4343.49,{},220889,1,"""South America""" +2023-10-31,36559,3653,"[\""Keyboard\""]",3080.18,"{\""promo\"": \""23%\""}",289463,1,"""South America""" +2024-10-08,36560,6335,"[\""Charger\""]",1169.53,{},266426,0,"""Africa""" +2024-06-15,36561,7605,"[\""Tablet\""]",2927.62,"{\""promo\"": \""15%\""}",94960,1,"""Asia""" +2023-12-01,36562,2646,"[\""Phone\""]",3266.21,"{\""seasonal\"": \""17%\""}",221905,0,"""Africa""" +2023-07-25,36563,7055,"[\""Charger\"", \""Monitor\""]",2527.45,"{\"": \""6%\""}",77898,0,"""Asia""" +2024-11-07,36564,2105,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1196.27,"{\"": \""7%\""}",258433,0,"""North America""" +2023-10-21,36565,7492,"[\""Wireless Mouse\""]",186.89,"{\"": \""22%\""}",148974,0,"""North America""" +2024-10-23,36566,4296,"[\""Phone\"", \""Laptop\""]",3268.88,{},232809,1,"""South America""" +2024-04-22,36567,7787,"[\""Keyboard\"", \""Monitor\""]",3729.67,{},256189,0,"""Europe""" +2023-07-02,36568,1396,"[\""Wireless Mouse\""]",3423.61,{},101174,0,"""Asia""" +2024-07-18,36569,5895,"[\""Phone\""]",2256.42,{},292529,1,"""Asia""" +2024-11-26,36570,8505,"[\""Laptop\""]",2823.62,"{\"": \""16%\""}",285293,0,"""Europe""" +2023-10-26,36571,1222,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2943.24,{},46770,1,"""Africa""" +2024-07-27,36572,8752,"[\""Charger\"", \""Headphones\""]",3662.61,{},66688,0,"""Asia""" +2023-09-24,36573,5389,"[\""Monitor\"", \""Headphones\""]",1321.0,{},187523,1,"""Africa""" +2024-02-06,36574,9933,"[\""Phone\""]",1319.28,{},299854,1,"""North America""" +2023-07-03,36575,7497,"[\""Charger\"", \""Monitor\""]",1145.1,"{\""seasonal\"": \""18%\""}",198834,1,"""Europe""" +2023-06-02,36576,5110,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2347.66,"{\""loyalty\"": \""9%\""}",160049,1,"""Africa""" +2023-03-05,36577,2689,"[\""Headphones\"", \""Laptop\""]",4421.87,"{\""seasonal\"": \""14%\""}",260307,1,"""North America""" +2023-02-13,36578,567,"[\""Charger\"", \""Wireless Mouse\""]",3497.64,"{\""seasonal\"": \""25%\""}",194449,1,"""Europe""" +2024-11-28,36579,7664,"[\""Wireless Mouse\""]",2253.97,{},87038,0,"""Africa""" +2024-05-12,36580,3478,"[\""Laptop\""]",585.54,{},191712,0,"""South America""" +2024-11-23,36581,3919,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4990.45,"{\""promo\"": \""5%\""}",161848,0,"""Africa""" +2023-07-31,36582,6540,"[\""Monitor\"", \""Charger\""]",286.73,"{\""loyalty\"": \""26%\""}",240056,0,"""South America""" +2024-06-05,36583,9361,"[\""Tablet\""]",3512.48,"{\""loyalty\"": \""13%\""}",53737,1,"""Africa""" +2023-07-26,36584,3830,"[\""Tablet\""]",2644.0,"{\"": \""23%\""}",117393,0,"""South America""" +2024-11-17,36585,5634,"[\""Keyboard\"", \""Wireless Mouse\""]",247.09,"{\"": \""7%\""}",232105,1,"""Africa""" +2024-08-15,36586,7901,"[\""Tablet\"", \""Wireless Mouse\""]",1770.35,"{\""promo\"": \""12%\""}",94902,1,"""Africa""" +2024-03-21,36587,575,"[\""Keyboard\"", \""Charger\""]",3496.69,{},203858,1,"""North America""" +2024-01-03,36588,3014,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1954.17,{},196288,0,"""North America""" +2023-09-26,36589,9915,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",211.65,"{\""loyalty\"": \""12%\""}",129728,0,"""Europe""" +2023-04-23,36590,4333,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4266.78,"{\""seasonal\"": \""24%\""}",204228,1,"""Asia""" +2023-09-15,36591,9896,"[\""Laptop\""]",717.2,"{\""seasonal\"": \""9%\""}",74906,0,"""North America""" +2023-11-17,36592,8084,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2319.0,"{\""promo\"": \""9%\""}",224476,1,"""Asia""" +2023-06-02,36593,9455,"[\""Headphones\""]",776.01,"{\""promo\"": \""21%\""}",242444,1,"""Africa""" +2024-11-08,36594,4125,"[\""Monitor\"", \""Headphones\""]",3653.08,"{\""promo\"": \""20%\""}",2495,1,"""North America""" +2023-06-18,36595,8515,"[\""Phone\"", \""Headphones\""]",2982.19,{},100389,0,"""Asia""" +2023-02-02,36596,7817,"[\""Phone\""]",4353.66,{},115230,0,"""North America""" +2023-03-04,36597,6856,"[\""Monitor\""]",2163.23,"{\""loyalty\"": \""12%\""}",143041,0,"""North America""" +2024-03-20,36598,4604,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2078.77,{},42445,0,"""Asia""" +2024-07-13,36599,3048,"[\""Wireless Mouse\"", \""Tablet\""]",2063.35,{},151282,0,"""North America""" +2024-08-02,36600,350,"[\""Headphones\"", \""Tablet\""]",1951.28,{},132565,0,"""Africa""" +2024-05-12,36601,9618,"[\""Phone\""]",4500.51,"{\""promo\"": \""25%\""}",245421,0,"""North America""" +2024-12-25,36602,4827,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1742.31,{},119847,1,"""Europe""" +2023-08-23,36603,9966,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4935.67,"{\""seasonal\"": \""11%\""}",140379,1,"""North America""" +2024-03-03,36604,9728,"[\""Tablet\""]",1451.6,"{\"": \""7%\""}",183768,0,"""Asia""" +2024-10-12,36605,5883,"[\""Charger\"", \""Tablet\""]",1962.1,"{\"": \""17%\""}",71823,0,"""South America""" +2024-07-20,36606,6697,"[\""Keyboard\""]",2705.88,{},42728,1,"""Africa""" +2023-01-13,36607,282,"[\""Charger\"", \""Tablet\""]",1012.95,{},262921,1,"""Europe""" +2024-10-23,36608,4479,"[\""Laptop\""]",2644.77,{},180072,0,"""Africa""" +2023-02-09,36609,7214,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3994.77,"{\""loyalty\"": \""15%\""}",72294,0,"""South America""" +2023-09-14,36610,3559,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1750.52,"{\""seasonal\"": \""15%\""}",212733,0,"""Asia""" +2023-02-15,36611,1562,"[\""Laptop\"", \""Headphones\""]",2352.46,{},203724,0,"""North America""" +2024-12-10,36612,7234,"[\""Phone\"", \""Wireless Mouse\""]",2607.82,"{\"": \""24%\""}",103061,1,"""South America""" +2024-05-11,36613,3595,"[\""Monitor\""]",3281.52,"{\""seasonal\"": \""17%\""}",268191,0,"""Asia""" +2023-08-13,36614,6481,"[\""Charger\""]",2586.14,{},121796,1,"""North America""" +2023-10-22,36615,5889,"[\""Charger\""]",1809.58,{},83118,0,"""North America""" +2023-08-05,36616,6319,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",663.72,"{\""loyalty\"": \""10%\""}",192717,0,"""Africa""" +2024-03-29,36617,3550,"[\""Phone\""]",1580.98,"{\""loyalty\"": \""5%\""}",219386,1,"""South America""" +2024-07-31,36618,171,"[\""Wireless Mouse\""]",4882.57,"{\""loyalty\"": \""24%\""}",270014,0,"""South America""" +2024-07-30,36619,9995,"[\""Wireless Mouse\"", \""Monitor\""]",839.83,{},216182,0,"""Asia""" +2023-10-28,36620,9693,"[\""Monitor\""]",479.53,{},209066,1,"""Europe""" +2024-08-18,36621,4951,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",375.43,"{\""seasonal\"": \""13%\""}",238830,1,"""Europe""" +2024-06-30,36622,8793,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3337.66,{},197390,1,"""Europe""" +2024-10-30,36623,937,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2698.86,"{\"": \""26%\""}",114007,1,"""Europe""" +2023-11-26,36624,6764,"[\""Tablet\"", \""Laptop\""]",1748.02,{},166773,0,"""Europe""" +2023-07-02,36625,5603,"[\""Laptop\"", \""Keyboard\""]",1557.03,{},153819,0,"""Europe""" +2023-09-19,36626,6643,"[\""Keyboard\"", \""Headphones\""]",4016.55,"{\""loyalty\"": \""13%\""}",126752,0,"""North America""" +2023-06-13,36627,1723,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",60.64,"{\""loyalty\"": \""14%\""}",171025,0,"""South America""" +2023-01-30,36628,3213,"[\""Charger\""]",4617.01,{},86780,1,"""North America""" +2024-01-28,36629,9892,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2396.47,"{\""seasonal\"": \""17%\""}",21145,0,"""Asia""" +2024-08-01,36630,8015,"[\""Keyboard\""]",3004.55,{},196377,0,"""South America""" +2023-12-04,36631,5551,"[\""Tablet\"", \""Monitor\""]",2809.93,"{\""promo\"": \""12%\""}",82525,1,"""South America""" +2023-05-16,36632,3189,"[\""Laptop\"", \""Tablet\""]",4786.58,{},254281,1,"""Asia""" +2024-04-16,36633,2584,"[\""Phone\""]",2037.75,"{\"": \""23%\""}",147283,1,"""South America""" +2024-02-28,36634,7274,"[\""Charger\"", \""Keyboard\""]",1470.57,"{\"": \""30%\""}",62248,1,"""Africa""" +2023-12-13,36635,6896,"[\""Tablet\""]",3640.44,"{\"": \""12%\""}",283567,0,"""Africa""" +2024-02-11,36636,116,"[\""Phone\""]",921.15,"{\""promo\"": \""18%\""}",134595,1,"""Europe""" +2023-10-13,36637,7328,"[\""Tablet\"", \""Headphones\""]",2944.34,{},210535,0,"""Asia""" +2024-12-23,36638,1254,"[\""Keyboard\""]",4973.01,{},187509,1,"""North America""" +2024-01-27,36639,6045,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3169.03,{},56816,0,"""Asia""" +2024-02-01,36640,7703,"[\""Keyboard\"", \""Charger\""]",2409.78,"{\"": \""19%\""}",77773,1,"""South America""" +2024-05-10,36641,3746,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1640.25,{},131588,1,"""Asia""" +2023-09-09,36642,8592,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2298.84,{},210295,1,"""Africa""" +2024-10-01,36643,241,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2460.13,"{\""loyalty\"": \""24%\""}",69194,0,"""Africa""" +2024-07-14,36644,2687,"[\""Tablet\""]",323.28,{},219973,0,"""Africa""" +2023-01-12,36645,5666,"[\""Tablet\"", \""Laptop\""]",3582.28,{},208699,1,"""Africa""" +2023-05-10,36646,5598,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",171.11,"{\""seasonal\"": \""19%\""}",176262,1,"""South America""" +2023-12-21,36647,4250,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2719.84,"{\""seasonal\"": \""20%\""}",77519,1,"""South America""" +2023-04-07,36648,1925,"[\""Keyboard\"", \""Charger\""]",678.91,"{\""loyalty\"": \""8%\""}",46049,0,"""South America""" +2024-03-25,36649,2565,"[\""Headphones\""]",2476.64,{},197267,0,"""South America""" +2023-05-10,36650,3205,"[\""Headphones\""]",1981.25,"{\""promo\"": \""27%\""}",91777,1,"""North America""" +2023-07-04,36651,2080,"[\""Laptop\""]",2221.83,"{\"": \""14%\""}",19019,0,"""South America""" +2023-02-13,36652,1007,"[\""Wireless Mouse\"", \""Keyboard\""]",1863.52,"{\""loyalty\"": \""17%\""}",48190,1,"""South America""" +2023-07-25,36653,9014,"[\""Headphones\"", \""Keyboard\""]",2138.27,{},97966,0,"""North America""" +2023-07-05,36654,7083,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1141.51,{},96748,1,"""Europe""" +2024-05-15,36655,4482,"[\""Laptop\"", \""Charger\""]",4475.41,"{\""promo\"": \""30%\""}",160954,1,"""Europe""" +2024-05-10,36656,213,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3844.41,{},243421,0,"""Europe""" +2024-01-28,36657,6345,"[\""Keyboard\""]",1179.63,"{\""seasonal\"": \""21%\""}",1423,0,"""South America""" +2024-11-09,36658,6413,"[\""Phone\"", \""Headphones\""]",3243.08,"{\""seasonal\"": \""11%\""}",181886,0,"""Asia""" +2024-08-22,36659,4213,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3681.61,{},163399,1,"""Europe""" +2023-12-29,36660,2968,"[\""Keyboard\"", \""Wireless Mouse\""]",1274.52,"{\""promo\"": \""28%\""}",57718,0,"""Asia""" +2023-12-18,36661,7692,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",57.09,"{\""loyalty\"": \""25%\""}",103812,0,"""Europe""" +2024-05-07,36662,8634,"[\""Tablet\"", \""Laptop\""]",1059.1,"{\""loyalty\"": \""18%\""}",46850,0,"""Asia""" +2023-05-16,36663,8692,"[\""Laptop\""]",4585.71,{},143118,1,"""South America""" +2023-09-25,36664,3814,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3946.56,{},151868,1,"""North America""" +2023-03-03,36665,9248,"[\""Phone\"", \""Wireless Mouse\""]",2221.21,{},116890,1,"""South America""" +2023-04-28,36666,2638,"[\""Phone\""]",4824.66,"{\""promo\"": \""26%\""}",267120,1,"""Asia""" +2024-10-10,36667,2596,"[\""Headphones\""]",2124.42,{},97908,1,"""Europe""" +2023-01-03,36668,153,"[\""Wireless Mouse\"", \""Keyboard\""]",3127.72,"{\""loyalty\"": \""13%\""}",213904,1,"""Asia""" +2024-01-12,36669,8081,"[\""Headphones\"", \""Tablet\""]",367.32,"{\"": \""26%\""}",51753,1,"""Europe""" +2023-05-11,36670,153,"[\""Wireless Mouse\""]",3653.96,"{\"": \""27%\""}",199455,1,"""South America""" +2023-01-27,36671,8846,"[\""Wireless Mouse\"", \""Monitor\""]",1382.34,{},296359,0,"""North America""" +2023-08-09,36672,112,"[\""Phone\"", \""Charger\""]",3066.0,{},118665,0,"""Africa""" +2023-06-09,36673,6288,"[\""Tablet\""]",860.93,{},68681,0,"""Asia""" +2024-10-19,36674,5755,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3436.67,"{\""seasonal\"": \""28%\""}",229036,0,"""North America""" +2023-08-15,36675,9641,"[\""Monitor\"", \""Phone\""]",4443.62,"{\"": \""30%\""}",107770,0,"""North America""" +2024-05-02,36676,8190,"[\""Monitor\""]",2592.04,"{\""promo\"": \""23%\""}",193443,1,"""Africa""" +2024-11-09,36677,9847,"[\""Tablet\"", \""Keyboard\""]",1250.35,"{\""promo\"": \""19%\""}",69407,0,"""Europe""" +2023-12-05,36678,6854,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2904.98,"{\""seasonal\"": \""5%\""}",18941,1,"""North America""" +2024-01-23,36679,5741,"[\""Laptop\""]",4929.39,{},41230,1,"""North America""" +2024-03-06,36680,9185,"[\""Keyboard\"", \""Tablet\""]",436.03,"{\""seasonal\"": \""15%\""}",272546,0,"""South America""" +2024-02-05,36681,5814,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",221.82,"{\""loyalty\"": \""9%\""}",261974,1,"""South America""" +2024-08-26,36682,567,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",946.6,"{\"": \""22%\""}",296345,1,"""Europe""" +2023-10-15,36683,3598,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",531.46,"{\""seasonal\"": \""28%\""}",291303,0,"""Asia""" +2023-04-23,36684,7077,"[\""Phone\"", \""Charger\""]",4770.86,{},86655,0,"""South America""" +2023-12-26,36685,8971,"[\""Charger\""]",1591.35,{},20700,1,"""North America""" +2024-05-20,36686,2996,"[\""Wireless Mouse\"", \""Tablet\""]",3150.38,{},243721,1,"""Asia""" +2024-09-18,36687,2841,"[\""Keyboard\"", \""Charger\""]",834.34,{},31216,0,"""Asia""" +2024-04-29,36688,3274,"[\""Headphones\""]",1736.98,"{\""promo\"": \""22%\""}",104225,1,"""Asia""" +2023-02-08,36689,2544,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3745.87,{},108650,0,"""Africa""" +2024-12-05,36690,218,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3373.62,"{\"": \""25%\""}",24294,1,"""South America""" +2024-03-30,36691,2158,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",539.71,{},254730,0,"""Africa""" +2023-05-05,36692,3706,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1211.2,"{\""promo\"": \""30%\""}",210605,1,"""Asia""" +2024-11-11,36693,4729,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",700.4,"{\""seasonal\"": \""10%\""}",138699,1,"""Europe""" +2024-03-10,36694,3739,"[\""Phone\"", \""Charger\""]",1648.6,{},281914,0,"""Asia""" +2024-12-10,36695,3241,"[\""Charger\""]",2278.68,{},214676,0,"""Africa""" +2023-10-25,36696,6469,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",620.13,"{\""promo\"": \""8%\""}",168275,0,"""Asia""" +2024-08-03,36697,5332,"[\""Headphones\""]",2484.38,{},13250,1,"""Europe""" +2023-05-12,36698,6559,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3884.51,"{\""promo\"": \""30%\""}",284389,0,"""Europe""" +2024-11-20,36699,1575,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2527.78,"{\""loyalty\"": \""25%\""}",90398,0,"""Africa""" +2024-11-11,36700,7925,"[\""Monitor\"", \""Phone\""]",4743.95,{},275458,1,"""Africa""" +2023-05-03,36701,7397,"[\""Laptop\""]",2789.73,"{\""loyalty\"": \""18%\""}",45442,1,"""South America""" +2024-08-14,36702,5363,"[\""Laptop\"", \""Headphones\""]",329.99,{},174267,0,"""North America""" +2024-12-18,36703,3934,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1466.79,"{\""seasonal\"": \""12%\""}",214785,1,"""Europe""" +2024-02-11,36704,2736,"[\""Tablet\"", \""Wireless Mouse\""]",2551.06,"{\""loyalty\"": \""21%\""}",29881,0,"""Asia""" +2023-11-04,36705,4102,"[\""Keyboard\"", \""Tablet\""]",1904.22,"{\""seasonal\"": \""6%\""}",103645,0,"""North America""" +2023-01-20,36706,8586,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3228.45,{},209949,1,"""Africa""" +2023-02-24,36707,7113,"[\""Laptop\""]",1958.47,"{\"": \""30%\""}",199082,0,"""Asia""" +2023-02-01,36708,8036,"[\""Headphones\"", \""Wireless Mouse\""]",1239.97,{},192983,1,"""North America""" +2023-05-17,36709,3388,"[\""Wireless Mouse\""]",3238.82,{},252048,0,"""South America""" +2023-01-08,36710,278,"[\""Wireless Mouse\""]",4440.39,"{\""seasonal\"": \""28%\""}",11676,1,"""Europe""" +2023-10-25,36711,4379,"[\""Headphones\"", \""Charger\""]",2511.07,"{\""loyalty\"": \""6%\""}",61886,0,"""North America""" +2023-12-23,36712,1214,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2285.88,"{\""seasonal\"": \""26%\""}",287511,1,"""South America""" +2024-06-09,36713,3475,"[\""Phone\"", \""Laptop\""]",4126.86,{},20909,0,"""Asia""" +2024-09-03,36714,9915,"[\""Wireless Mouse\"", \""Headphones\""]",2782.14,"{\""promo\"": \""29%\""}",38024,1,"""Asia""" +2024-12-09,36715,7557,"[\""Tablet\""]",3692.16,{},189648,0,"""Asia""" +2023-03-29,36716,8327,"[\""Phone\"", \""Keyboard\""]",1351.39,{},5777,1,"""North America""" +2023-01-15,36717,4954,"[\""Headphones\""]",951.74,"{\"": \""12%\""}",278714,0,"""South America""" +2023-02-07,36718,5662,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1828.36,{},158725,1,"""South America""" +2024-09-17,36719,1072,"[\""Monitor\""]",3593.38,{},24122,0,"""South America""" +2024-10-25,36720,3778,"[\""Headphones\"", \""Charger\""]",1760.53,{},8845,0,"""North America""" +2023-03-31,36721,8222,"[\""Keyboard\""]",968.8,"{\""seasonal\"": \""30%\""}",44853,0,"""South America""" +2024-03-10,36722,7143,"[\""Wireless Mouse\""]",330.48,{},215916,0,"""Europe""" +2023-01-07,36723,6081,"[\""Laptop\""]",3752.42,{},57868,0,"""Africa""" +2024-10-05,36724,3632,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2729.78,{},140610,0,"""Europe""" +2024-03-11,36725,4459,"[\""Monitor\""]",4866.86,"{\"": \""29%\""}",112746,1,"""South America""" +2024-11-04,36726,3227,"[\""Charger\"", \""Monitor\""]",3711.15,{},3581,1,"""Africa""" +2023-05-11,36727,1271,"[\""Keyboard\"", \""Laptop\""]",3880.14,{},183994,0,"""Asia""" +2024-07-03,36728,1009,"[\""Charger\"", \""Tablet\""]",2196.39,"{\"": \""26%\""}",247101,1,"""Europe""" +2023-11-15,36729,2547,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3421.35,"{\""seasonal\"": \""9%\""}",273869,0,"""Europe""" +2023-05-19,36730,4857,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2013.05,"{\""loyalty\"": \""20%\""}",147152,1,"""Asia""" +2024-07-18,36731,8007,"[\""Monitor\"", \""Wireless Mouse\""]",1722.36,"{\""promo\"": \""8%\""}",16116,0,"""Asia""" +2023-12-27,36732,8120,"[\""Tablet\"", \""Headphones\""]",1824.01,"{\""promo\"": \""14%\""}",257473,1,"""Europe""" +2024-12-02,36733,4450,"[\""Laptop\"", \""Tablet\""]",2821.97,"{\""seasonal\"": \""5%\""}",252836,0,"""Africa""" +2023-11-06,36734,7863,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4226.13,{},88884,1,"""Africa""" +2023-07-20,36735,9656,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3953.83,"{\""seasonal\"": \""20%\""}",67363,0,"""South America""" +2024-09-03,36736,5991,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",377.95,{},62121,0,"""Asia""" +2024-05-14,36737,1032,"[\""Keyboard\"", \""Tablet\""]",3449.29,"{\""promo\"": \""26%\""}",189944,0,"""Africa""" +2023-01-07,36738,2364,"[\""Charger\""]",533.27,"{\""promo\"": \""25%\""}",53862,0,"""South America""" +2024-07-03,36739,7372,"[\""Phone\""]",2457.91,{},243496,1,"""South America""" +2024-05-08,36740,8147,"[\""Laptop\""]",1013.49,"{\"": \""5%\""}",119844,0,"""Europe""" +2024-02-17,36741,2727,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2345.16,{},215491,0,"""North America""" +2023-05-25,36742,234,"[\""Headphones\"", \""Laptop\""]",3605.33,"{\""seasonal\"": \""29%\""}",3957,1,"""Europe""" +2023-07-20,36743,3938,"[\""Tablet\""]",2448.82,{},173895,0,"""Africa""" +2023-11-13,36744,5527,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4771.18,{},147511,0,"""Africa""" +2024-10-08,36745,7406,"[\""Wireless Mouse\"", \""Tablet\""]",4183.12,"{\"": \""16%\""}",53255,0,"""Africa""" +2024-02-02,36746,5454,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",154.21,"{\""loyalty\"": \""28%\""}",97720,1,"""Africa""" +2024-03-08,36747,6853,"[\""Monitor\""]",1194.06,{},42287,1,"""Europe""" +2024-03-19,36748,4140,"[\""Laptop\""]",588.15,{},77568,0,"""North America""" +2024-01-05,36749,5085,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3171.07,{},187961,1,"""North America""" +2023-07-27,36750,499,"[\""Tablet\"", \""Keyboard\""]",1494.84,"{\""seasonal\"": \""25%\""}",59295,0,"""Europe""" +2023-08-08,36751,6783,"[\""Laptop\"", \""Keyboard\""]",1606.71,{},132316,1,"""Africa""" +2023-05-10,36752,1870,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1604.59,"{\""promo\"": \""21%\""}",34309,1,"""Asia""" +2024-04-25,36753,5698,"[\""Charger\""]",1184.25,"{\"": \""21%\""}",30820,0,"""North America""" +2024-12-09,36754,6698,"[\""Headphones\"", \""Phone\""]",701.35,{},32776,1,"""Asia""" +2023-01-15,36755,9239,"[\""Monitor\"", \""Charger\""]",1244.48,"{\""loyalty\"": \""30%\""}",150333,1,"""Africa""" +2024-03-03,36756,1523,"[\""Headphones\"", \""Phone\""]",3150.97,"{\""loyalty\"": \""6%\""}",160551,1,"""North America""" +2023-07-06,36757,7091,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3841.48,{},3190,1,"""Asia""" +2023-05-11,36758,7078,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2303.82,{},280180,1,"""Europe""" +2023-02-02,36759,8812,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2197.83,{},290138,1,"""South America""" +2023-03-23,36760,64,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1647.83,{},179082,1,"""Europe""" +2023-04-12,36761,9008,"[\""Tablet\"", \""Monitor\""]",4759.34,{},21734,1,"""South America""" +2023-11-14,36762,4228,"[\""Tablet\""]",4283.62,{},5301,1,"""Africa""" +2024-10-31,36763,6258,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",533.0,"{\""seasonal\"": \""7%\""}",259291,1,"""Europe""" +2023-01-08,36764,9854,"[\""Charger\""]",3936.01,"{\""promo\"": \""6%\""}",90933,1,"""Asia""" +2023-10-04,36765,4919,"[\""Laptop\"", \""Wireless Mouse\""]",4403.6,"{\""seasonal\"": \""6%\""}",52014,1,"""Africa""" +2024-09-11,36766,5000,"[\""Wireless Mouse\"", \""Charger\""]",4907.92,{},88461,1,"""Africa""" +2023-11-03,36767,6952,"[\""Charger\"", \""Tablet\""]",4330.6,{},91081,1,"""South America""" +2023-07-07,36768,6238,"[\""Tablet\""]",1797.69,{},107534,0,"""Asia""" +2023-05-04,36769,8927,"[\""Charger\"", \""Wireless Mouse\""]",1686.6,"{\"": \""16%\""}",225365,0,"""Asia""" +2024-03-26,36770,1565,"[\""Charger\"", \""Phone\"", \""Laptop\""]",54.17,"{\"": \""11%\""}",295842,1,"""Africa""" +2024-07-29,36771,3411,"[\""Phone\""]",4904.52,{},26452,0,"""South America""" +2024-10-20,36772,5066,"[\""Wireless Mouse\"", \""Monitor\""]",4702.08,"{\""seasonal\"": \""8%\""}",144539,0,"""Asia""" +2024-09-05,36773,1661,"[\""Charger\""]",2449.96,"{\"": \""23%\""}",147315,0,"""North America""" +2023-10-28,36774,2541,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4663.42,"{\""seasonal\"": \""6%\""}",293368,1,"""Asia""" +2023-03-22,36775,5440,"[\""Phone\"", \""Wireless Mouse\""]",650.35,{},174111,1,"""South America""" +2023-01-13,36776,3992,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4406.69,"{\"": \""5%\""}",160876,0,"""North America""" +2023-06-20,36777,267,"[\""Wireless Mouse\"", \""Laptop\""]",1167.45,"{\"": \""29%\""}",193894,1,"""South America""" +2023-01-14,36778,8918,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2552.11,{},214375,1,"""South America""" +2023-02-16,36779,2003,"[\""Wireless Mouse\""]",1583.47,{},151198,0,"""Africa""" +2023-11-27,36780,8213,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4852.51,{},140464,1,"""South America""" +2023-04-14,36781,6800,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2241.86,{},147262,1,"""Asia""" +2024-10-14,36782,6041,"[\""Keyboard\"", \""Tablet\""]",1247.17,"{\"": \""23%\""}",199612,0,"""Asia""" +2023-06-06,36783,5445,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4821.47,{},34671,0,"""North America""" +2023-05-08,36784,3623,"[\""Phone\""]",4402.18,{},76319,1,"""Asia""" +2023-03-15,36785,4278,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",956.78,{},55266,1,"""North America""" +2023-01-30,36786,6108,"[\""Wireless Mouse\"", \""Charger\""]",1143.94,"{\""seasonal\"": \""26%\""}",62937,1,"""Africa""" +2024-05-06,36787,8863,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3127.39,{},161208,1,"""South America""" +2023-10-15,36788,7400,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2650.04,"{\""promo\"": \""15%\""}",193877,0,"""Asia""" +2024-12-08,36789,2655,"[\""Charger\"", \""Headphones\""]",2385.94,"{\""loyalty\"": \""22%\""}",223268,1,"""Asia""" +2024-04-13,36790,7658,"[\""Phone\""]",4253.29,{},138941,1,"""North America""" +2023-09-07,36791,2520,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3312.6,{},296642,1,"""Asia""" +2024-05-03,36792,8100,"[\""Laptop\"", \""Phone\""]",80.02,"{\""promo\"": \""14%\""}",138092,1,"""Asia""" +2024-01-19,36793,4298,"[\""Phone\""]",3293.91,{},175590,1,"""South America""" +2024-08-19,36794,1610,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",371.32,"{\""seasonal\"": \""15%\""}",120822,0,"""Africa""" +2024-02-25,36795,3705,"[\""Tablet\""]",4638.92,"{\""seasonal\"": \""24%\""}",107099,0,"""North America""" +2023-03-18,36796,9238,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3532.68,"{\""loyalty\"": \""16%\""}",90787,1,"""Europe""" +2024-11-07,36797,55,"[\""Monitor\""]",3693.96,{},134299,1,"""Africa""" +2023-02-04,36798,7850,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2498.09,"{\""loyalty\"": \""26%\""}",215768,1,"""North America""" +2024-03-28,36799,7167,"[\""Laptop\"", \""Headphones\""]",1788.96,"{\"": \""18%\""}",19033,0,"""Europe""" +2023-03-31,36800,5650,"[\""Phone\""]",3157.58,{},220357,1,"""North America""" +2024-10-07,36801,7802,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3849.96,{},61185,1,"""North America""" +2024-08-04,36802,3208,"[\""Charger\"", \""Monitor\""]",4881.4,{},176994,1,"""North America""" +2023-08-01,36803,5009,"[\""Monitor\"", \""Keyboard\""]",115.75,{},242818,1,"""Europe""" +2024-12-30,36804,2233,"[\""Keyboard\""]",1528.88,{},145406,1,"""Africa""" +2023-06-02,36805,5673,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3110.19,{},160776,1,"""Asia""" +2023-01-15,36806,3669,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4296.45,"{\"": \""16%\""}",179751,0,"""Europe""" +2023-01-26,36807,5340,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",376.18,"{\"": \""18%\""}",184940,1,"""North America""" +2023-03-29,36808,6473,"[\""Keyboard\"", \""Laptop\""]",886.62,"{\"": \""11%\""}",118797,1,"""Asia""" +2024-01-04,36809,3466,"[\""Wireless Mouse\""]",3402.2,"{\""seasonal\"": \""24%\""}",194461,0,"""Europe""" +2023-01-27,36810,5915,"[\""Charger\""]",3334.12,"{\""promo\"": \""23%\""}",73023,1,"""South America""" +2023-01-17,36811,7485,"[\""Phone\"", \""Laptop\""]",3026.31,{},99440,1,"""Africa""" +2023-11-08,36812,8165,"[\""Wireless Mouse\"", \""Laptop\""]",1725.29,"{\""seasonal\"": \""27%\""}",80130,1,"""Africa""" +2024-01-17,36813,9889,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1441.1,"{\""promo\"": \""8%\""}",158615,1,"""Africa""" +2024-04-09,36814,2520,"[\""Laptop\""]",4695.57,{},85557,0,"""South America""" +2024-07-06,36815,3654,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3184.98,{},11350,1,"""North America""" +2023-05-04,36816,4317,"[\""Headphones\"", \""Keyboard\""]",2885.41,{},276179,0,"""Africa""" +2024-07-31,36817,9696,"[\""Phone\"", \""Tablet\""]",4303.48,"{\""loyalty\"": \""10%\""}",131831,1,"""Asia""" +2023-02-20,36818,335,"[\""Charger\""]",3147.55,{},240173,0,"""Asia""" +2024-07-24,36819,6532,"[\""Monitor\""]",60.2,{},213678,1,"""North America""" +2023-01-05,36820,6308,"[\""Wireless Mouse\"", \""Charger\""]",4550.95,{},175569,0,"""Africa""" +2023-04-22,36821,8963,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2968.72,{},249952,0,"""Asia""" +2024-01-17,36822,156,"[\""Laptop\"", \""Phone\""]",1250.61,{},290166,1,"""North America""" +2024-03-24,36823,7732,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2181.19,"{\""promo\"": \""19%\""}",36951,1,"""South America""" +2023-01-16,36824,4188,"[\""Headphones\"", \""Wireless Mouse\""]",1932.97,"{\""loyalty\"": \""29%\""}",2682,1,"""Europe""" +2024-09-21,36825,9913,"[\""Keyboard\""]",2483.99,"{\""loyalty\"": \""10%\""}",70981,1,"""North America""" +2024-05-25,36826,5452,"[\""Wireless Mouse\"", \""Phone\""]",219.58,"{\"": \""17%\""}",143968,0,"""North America""" +2023-03-09,36827,5285,"[\""Charger\""]",2578.38,{},292842,0,"""North America""" +2024-11-21,36828,6673,"[\""Keyboard\""]",1581.09,{},146772,1,"""North America""" +2024-07-22,36829,8927,"[\""Headphones\"", \""Keyboard\""]",2448.54,{},27976,1,"""North America""" +2023-09-24,36830,4453,"[\""Wireless Mouse\"", \""Phone\""]",2746.44,"{\""loyalty\"": \""12%\""}",83850,1,"""Europe""" +2023-10-04,36831,4867,"[\""Charger\"", \""Headphones\""]",230.35,{},253963,0,"""North America""" +2024-10-23,36832,9271,"[\""Wireless Mouse\""]",4898.32,{},84544,1,"""Africa""" +2024-09-19,36833,310,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4395.25,{},69628,0,"""North America""" +2024-07-05,36834,8790,"[\""Charger\""]",1986.13,"{\"": \""27%\""}",221277,1,"""South America""" +2023-11-22,36835,6160,"[\""Keyboard\""]",3892.64,{},159652,0,"""North America""" +2024-01-24,36836,6208,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4734.72,{},247997,1,"""North America""" +2024-11-07,36837,540,"[\""Laptop\""]",2747.21,"{\""seasonal\"": \""5%\""}",265418,1,"""Africa""" +2023-06-01,36838,5064,"[\""Wireless Mouse\""]",4101.45,{},259236,1,"""Asia""" +2024-09-26,36839,7148,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1891.12,"{\""promo\"": \""16%\""}",282906,0,"""South America""" +2024-05-09,36840,3876,"[\""Charger\"", \""Laptop\""]",2013.32,"{\"": \""24%\""}",230647,1,"""Asia""" +2024-02-16,36841,7504,"[\""Charger\""]",2527.07,"{\"": \""28%\""}",85899,1,"""Europe""" +2023-12-22,36842,9274,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",527.17,"{\""promo\"": \""28%\""}",180773,1,"""Europe""" +2024-03-10,36843,8485,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4570.78,{},91754,1,"""Africa""" +2024-11-03,36844,9994,"[\""Laptop\"", \""Tablet\""]",3954.73,{},40800,1,"""South America""" +2023-10-16,36845,9286,"[\""Tablet\"", \""Laptop\""]",3263.35,"{\"": \""15%\""}",110893,0,"""Asia""" +2023-02-13,36846,2912,"[\""Keyboard\"", \""Wireless Mouse\""]",4998.03,{},35182,0,"""South America""" +2024-01-10,36847,49,"[\""Monitor\""]",3189.3,{},184931,0,"""North America""" +2024-06-02,36848,8988,"[\""Charger\"", \""Wireless Mouse\""]",3230.81,{},45534,0,"""North America""" +2024-07-03,36849,4712,"[\""Laptop\""]",391.32,{},175706,0,"""Africa""" +2024-08-24,36850,2018,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1172.52,"{\""seasonal\"": \""7%\""}",209726,0,"""North America""" +2024-11-15,36851,3332,"[\""Keyboard\"", \""Headphones\""]",295.97,{},244515,0,"""Europe""" +2024-09-10,36852,369,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4036.66,"{\""seasonal\"": \""30%\""}",97025,0,"""Europe""" +2024-03-05,36853,797,"[\""Tablet\""]",544.55,{},181768,1,"""Europe""" +2023-10-11,36854,5710,"[\""Charger\""]",1153.58,"{\""loyalty\"": \""15%\""}",56215,1,"""South America""" +2024-03-16,36855,8669,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",922.48,"{\"": \""5%\""}",51515,1,"""North America""" +2024-04-17,36856,3583,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3210.38,"{\"": \""22%\""}",225413,1,"""Europe""" +2024-07-09,36857,9633,"[\""Tablet\""]",400.92,{},231502,0,"""South America""" +2023-09-24,36858,191,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2907.32,{},62363,0,"""South America""" +2024-11-12,36859,4843,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4944.17,{},19047,0,"""Africa""" +2023-07-15,36860,1718,"[\""Tablet\"", \""Headphones\""]",597.6,{},17341,0,"""South America""" +2024-09-04,36861,6540,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",867.39,"{\""loyalty\"": \""26%\""}",206590,0,"""South America""" +2024-09-20,36862,4729,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4449.69,"{\""promo\"": \""14%\""}",7069,1,"""South America""" +2023-02-13,36863,5174,"[\""Keyboard\"", \""Tablet\""]",4149.22,"{\""loyalty\"": \""13%\""}",244303,0,"""Africa""" +2024-11-07,36864,2886,"[\""Phone\""]",2054.2,{},268105,0,"""North America""" +2024-01-04,36865,9435,"[\""Keyboard\"", \""Laptop\""]",689.12,{},290850,1,"""Africa""" +2024-05-08,36866,2268,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4864.22,{},161363,1,"""Asia""" +2023-06-08,36867,9723,"[\""Wireless Mouse\"", \""Charger\""]",4625.45,"{\"": \""16%\""}",84422,1,"""Asia""" +2023-07-27,36868,4796,"[\""Monitor\"", \""Headphones\""]",2139.91,{},33193,0,"""Europe""" +2023-07-12,36869,8337,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4622.95,"{\""loyalty\"": \""21%\""}",251851,1,"""Europe""" +2024-07-31,36870,9593,"[\""Monitor\"", \""Laptop\""]",1850.11,{},118834,1,"""South America""" +2023-11-17,36871,2018,"[\""Keyboard\"", \""Monitor\""]",2616.75,"{\""promo\"": \""8%\""}",242362,0,"""South America""" +2023-11-01,36872,5699,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2099.08,{},213113,0,"""North America""" +2023-06-21,36873,7554,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2140.35,"{\""seasonal\"": \""18%\""}",263619,1,"""Asia""" +2023-03-20,36874,6842,"[\""Keyboard\""]",1214.71,{},232663,1,"""Asia""" +2024-05-06,36875,9852,"[\""Wireless Mouse\"", \""Headphones\""]",1794.42,{},61383,1,"""South America""" +2023-01-07,36876,8126,"[\""Keyboard\"", \""Monitor\""]",2775.88,"{\""seasonal\"": \""10%\""}",91219,1,"""North America""" +2024-03-12,36877,6873,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3131.75,"{\"": \""5%\""}",55538,1,"""Europe""" +2023-03-25,36878,9196,"[\""Wireless Mouse\""]",1882.91,"{\""seasonal\"": \""13%\""}",168377,1,"""North America""" +2024-06-11,36879,1968,"[\""Wireless Mouse\""]",2175.62,"{\""promo\"": \""8%\""}",4049,1,"""South America""" +2023-07-24,36880,632,"[\""Keyboard\""]",2021.7,{},187205,0,"""Africa""" +2023-02-05,36881,439,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1594.36,"{\""seasonal\"": \""20%\""}",6239,0,"""Asia""" +2023-09-19,36882,3771,"[\""Monitor\""]",2755.77,{},235112,0,"""South America""" +2023-12-12,36883,5848,"[\""Monitor\"", \""Charger\""]",4510.45,{},174072,0,"""Asia""" +2023-04-23,36884,9598,"[\""Monitor\"", \""Keyboard\""]",4590.22,"{\""promo\"": \""28%\""}",153923,0,"""South America""" +2024-10-06,36885,7581,"[\""Monitor\"", \""Tablet\""]",690.62,{},131808,0,"""North America""" +2024-03-02,36886,516,"[\""Keyboard\""]",4264.23,{},224386,0,"""Asia""" +2024-01-11,36887,328,"[\""Charger\"", \""Laptop\""]",4306.24,"{\""loyalty\"": \""6%\""}",102219,1,"""South America""" +2023-08-26,36888,9202,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2958.68,{},249702,1,"""Asia""" +2023-01-30,36889,2697,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3840.48,{},202314,0,"""Europe""" +2024-12-27,36890,7538,"[\""Charger\""]",2888.66,{},277383,1,"""North America""" +2024-09-24,36891,7827,"[\""Tablet\""]",4445.03,"{\"": \""15%\""}",233259,1,"""Europe""" +2023-08-12,36892,2687,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2164.45,{},134103,0,"""Africa""" +2023-01-19,36893,6482,"[\""Laptop\""]",959.04,{},67077,1,"""South America""" +2024-07-28,36894,8080,"[\""Charger\"", \""Wireless Mouse\""]",4667.56,{},153980,1,"""South America""" +2023-06-26,36895,5964,"[\""Tablet\"", \""Charger\""]",619.68,"{\""seasonal\"": \""30%\""}",257258,0,"""North America""" +2023-08-28,36896,9760,"[\""Wireless Mouse\""]",1262.2,"{\""loyalty\"": \""11%\""}",69263,0,"""Europe""" +2023-01-10,36897,6236,"[\""Wireless Mouse\""]",1329.28,"{\""promo\"": \""21%\""}",101585,1,"""Europe""" +2024-03-27,36898,1561,"[\""Phone\"", \""Monitor\""]",1235.06,"{\""seasonal\"": \""25%\""}",62146,0,"""Africa""" +2024-04-29,36899,172,"[\""Tablet\""]",4968.9,"{\""loyalty\"": \""10%\""}",96767,0,"""Asia""" +2024-12-17,36900,2977,"[\""Monitor\""]",3463.41,"{\""seasonal\"": \""5%\""}",261075,0,"""Europe""" +2023-02-19,36901,307,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3779.31,"{\"": \""18%\""}",2760,0,"""Europe""" +2024-06-28,36902,5656,"[\""Charger\""]",4192.84,"{\""seasonal\"": \""22%\""}",192431,0,"""Asia""" +2023-04-10,36903,1,"[\""Tablet\"", \""Monitor\""]",1324.42,"{\"": \""11%\""}",122994,0,"""Asia""" +2024-11-22,36904,3549,"[\""Tablet\"", \""Monitor\""]",936.73,{},25405,0,"""South America""" +2023-10-09,36905,9941,"[\""Headphones\"", \""Tablet\""]",4169.85,"{\"": \""28%\""}",82395,1,"""Asia""" +2024-04-23,36906,3580,"[\""Keyboard\""]",966.99,"{\""promo\"": \""22%\""}",154718,0,"""North America""" +2023-09-08,36907,5787,"[\""Headphones\""]",4986.74,{},261139,0,"""North America""" +2023-05-20,36908,7220,"[\""Phone\"", \""Wireless Mouse\""]",3642.78,"{\""promo\"": \""8%\""}",12560,1,"""Africa""" +2024-01-06,36909,8485,"[\""Headphones\""]",4231.56,{},225867,1,"""South America""" +2023-02-02,36910,3129,"[\""Wireless Mouse\"", \""Monitor\""]",2636.91,{},126342,1,"""Africa""" +2024-12-03,36911,8578,"[\""Charger\""]",2070.31,{},57603,1,"""Europe""" +2024-01-31,36912,6469,"[\""Headphones\""]",1469.83,{},75218,1,"""Asia""" +2023-11-06,36913,9259,"[\""Tablet\""]",2529.45,"{\""promo\"": \""9%\""}",288764,1,"""Asia""" +2023-01-26,36914,2798,"[\""Charger\""]",3388.08,{},46808,0,"""North America""" +2023-01-10,36915,238,"[\""Charger\"", \""Phone\""]",4361.48,{},252299,1,"""North America""" +2023-10-22,36916,8879,"[\""Laptop\"", \""Wireless Mouse\""]",3584.39,{},253021,1,"""North America""" +2023-10-14,36917,5580,"[\""Keyboard\""]",4982.43,"{\""loyalty\"": \""17%\""}",273875,1,"""South America""" +2024-06-07,36918,6349,"[\""Wireless Mouse\"", \""Tablet\""]",526.04,{},27534,0,"""South America""" +2024-06-10,36919,4379,"[\""Headphones\"", \""Wireless Mouse\""]",3702.63,{},153895,1,"""North America""" +2023-11-28,36920,5047,"[\""Charger\""]",82.37,{},285048,0,"""Europe""" +2024-11-20,36921,1845,"[\""Charger\""]",825.35,{},282772,1,"""Asia""" +2023-08-02,36922,9482,"[\""Wireless Mouse\"", \""Laptop\""]",523.81,{},227595,1,"""Africa""" +2024-04-14,36923,4026,"[\""Phone\""]",3056.8,"{\""loyalty\"": \""20%\""}",172678,0,"""Asia""" +2023-08-08,36924,843,"[\""Wireless Mouse\""]",834.94,"{\""promo\"": \""15%\""}",98802,1,"""Asia""" +2024-01-27,36925,4013,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1119.76,{},51414,1,"""Africa""" +2023-04-29,36926,3303,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1420.2,"{\""loyalty\"": \""12%\""}",96253,1,"""Europe""" +2024-05-07,36927,9155,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4957.53,{},266682,0,"""Africa""" +2023-05-04,36928,7410,"[\""Keyboard\"", \""Charger\""]",3961.13,{},102479,1,"""Europe""" +2023-09-23,36929,2322,"[\""Tablet\"", \""Charger\""]",2353.28,{},167870,1,"""Africa""" +2024-11-15,36930,430,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2931.21,{},223471,1,"""Africa""" +2023-06-14,36931,8958,"[\""Monitor\"", \""Headphones\""]",1155.78,{},22653,1,"""Asia""" +2023-01-28,36932,3940,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3458.01,{},59667,1,"""North America""" +2024-11-28,36933,727,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2754.76,"{\""loyalty\"": \""24%\""}",120869,1,"""Europe""" +2024-08-12,36934,8407,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1971.18,"{\""loyalty\"": \""9%\""}",173941,0,"""South America""" +2024-06-24,36935,6789,"[\""Charger\""]",457.26,{},49599,0,"""North America""" +2024-01-28,36936,1201,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4939.86,"{\""seasonal\"": \""14%\""}",125516,1,"""North America""" +2023-09-01,36937,5283,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2656.06,"{\""loyalty\"": \""9%\""}",13653,0,"""North America""" +2024-04-12,36938,3105,"[\""Monitor\"", \""Phone\""]",4684.25,{},12614,0,"""Africa""" +2023-05-12,36939,6612,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3910.4,{},264446,0,"""North America""" +2023-02-05,36940,2531,"[\""Keyboard\""]",4542.98,{},28069,0,"""Asia""" +2023-06-14,36941,4304,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",130.15,{},234352,1,"""South America""" +2023-02-16,36942,4833,"[\""Phone\""]",362.54,{},49300,0,"""Africa""" +2024-01-29,36943,4489,"[\""Wireless Mouse\"", \""Phone\""]",541.0,{},28776,1,"""North America""" +2024-06-21,36944,716,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4220.14,{},166117,1,"""Africa""" +2024-07-29,36945,7377,"[\""Phone\"", \""Keyboard\""]",2088.19,{},95549,0,"""Europe""" +2023-09-11,36946,7646,"[\""Keyboard\"", \""Monitor\""]",3895.22,"{\""loyalty\"": \""8%\""}",96419,0,"""Asia""" +2024-06-15,36947,6689,"[\""Keyboard\""]",3259.26,"{\""loyalty\"": \""22%\""}",198506,0,"""North America""" +2024-10-11,36948,2595,"[\""Tablet\""]",2586.39,{},233979,1,"""Europe""" +2023-08-02,36949,9868,"[\""Laptop\""]",1127.89,{},75447,1,"""North America""" +2023-12-08,36950,4332,"[\""Keyboard\""]",3088.89,"{\""promo\"": \""7%\""}",271399,0,"""North America""" +2024-10-19,36951,2388,"[\""Keyboard\""]",740.65,{},31363,0,"""Europe""" +2024-09-13,36952,840,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2476.45,"{\""loyalty\"": \""23%\""}",114799,1,"""Asia""" +2023-09-14,36953,9497,"[\""Headphones\"", \""Laptop\""]",2135.34,{},115184,0,"""Europe""" +2023-12-03,36954,8172,"[\""Charger\""]",3041.38,{},285853,1,"""South America""" +2023-10-30,36955,6745,"[\""Monitor\""]",2234.4,"{\""loyalty\"": \""22%\""}",80299,0,"""Europe""" +2024-11-18,36956,106,"[\""Phone\"", \""Wireless Mouse\""]",2045.61,{},258291,0,"""Africa""" +2024-03-03,36957,5843,"[\""Wireless Mouse\""]",2646.77,{},150054,0,"""Africa""" +2023-01-27,36958,8956,"[\""Laptop\"", \""Headphones\""]",535.21,{},45618,1,"""Asia""" +2024-11-16,36959,4023,"[\""Charger\""]",4329.89,"{\""loyalty\"": \""11%\""}",113342,1,"""North America""" +2024-06-04,36960,7666,"[\""Monitor\"", \""Headphones\""]",650.82,{},132341,1,"""Europe""" +2023-05-22,36961,9461,"[\""Laptop\"", \""Wireless Mouse\""]",1579.81,"{\""seasonal\"": \""12%\""}",61601,0,"""Asia""" +2023-11-07,36962,2978,"[\""Phone\"", \""Keyboard\""]",4372.22,"{\""loyalty\"": \""24%\""}",294207,1,"""Africa""" +2024-09-04,36963,902,"[\""Phone\"", \""Laptop\""]",2900.5,{},259292,0,"""South America""" +2024-08-01,36964,5033,"[\""Monitor\""]",222.5,{},239444,0,"""Asia""" +2024-10-07,36965,186,"[\""Wireless Mouse\""]",1011.8,"{\""seasonal\"": \""6%\""}",169768,0,"""Europe""" +2024-04-24,36966,411,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2276.71,"{\""loyalty\"": \""15%\""}",123074,0,"""Africa""" +2023-11-27,36967,4096,"[\""Headphones\""]",183.38,{},82332,1,"""Asia""" +2024-07-14,36968,7701,"[\""Phone\"", \""Wireless Mouse\""]",3000.18,{},247036,0,"""Asia""" +2023-01-22,36969,4983,"[\""Phone\"", \""Keyboard\""]",3030.73,"{\""promo\"": \""24%\""}",57780,0,"""Asia""" +2023-09-06,36970,5506,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4100.23,"{\""loyalty\"": \""6%\""}",174038,1,"""Asia""" +2023-03-24,36971,4978,"[\""Phone\"", \""Wireless Mouse\""]",4230.17,{},34265,1,"""Africa""" +2024-03-23,36972,3858,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",318.31,{},29352,0,"""Asia""" +2023-07-29,36973,2276,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2151.32,"{\""loyalty\"": \""5%\""}",198486,0,"""Africa""" +2023-11-18,36974,9398,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2096.38,{},298712,1,"""South America""" +2023-06-15,36975,7597,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1147.87,{},116098,0,"""North America""" +2023-05-22,36976,4606,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1940.88,{},224400,1,"""Europe""" +2024-12-30,36977,9565,"[\""Tablet\""]",4014.4,{},169436,1,"""Europe""" +2024-12-18,36978,6068,"[\""Wireless Mouse\""]",148.29,"{\""promo\"": \""17%\""}",238231,0,"""Europe""" +2023-06-30,36979,1502,"[\""Tablet\"", \""Phone\""]",2850.09,"{\""loyalty\"": \""9%\""}",279572,0,"""North America""" +2024-09-12,36980,896,"[\""Charger\"", \""Phone\""]",2101.48,{},14173,1,"""Asia""" +2024-06-17,36981,8464,"[\""Tablet\""]",4943.53,"{\""loyalty\"": \""12%\""}",59538,0,"""South America""" +2024-07-08,36982,2060,"[\""Phone\""]",4086.44,{},41760,1,"""South America""" +2024-03-18,36983,9675,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1706.03,"{\""promo\"": \""5%\""}",21172,0,"""South America""" +2024-10-20,36984,909,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3845.12,{},274691,1,"""South America""" +2023-11-27,36985,2434,"[\""Phone\"", \""Charger\""]",3147.66,"{\""seasonal\"": \""21%\""}",72096,0,"""Europe""" +2024-08-28,36986,6686,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4624.79,{},132354,0,"""Asia""" +2024-12-21,36987,8197,"[\""Phone\""]",3538.36,{},76761,0,"""Europe""" +2024-05-16,36988,9554,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2640.18,"{\""seasonal\"": \""20%\""}",147016,1,"""Africa""" +2023-12-28,36989,9062,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4891.47,"{\""promo\"": \""25%\""}",120961,0,"""Europe""" +2023-11-16,36990,7567,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1649.16,"{\""seasonal\"": \""16%\""}",194251,1,"""Asia""" +2024-05-26,36991,6552,"[\""Charger\""]",558.63,{},267952,0,"""Africa""" +2024-05-28,36992,247,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1585.13,{},256953,0,"""Africa""" +2024-11-06,36993,4138,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4420.4,"{\""loyalty\"": \""11%\""}",25317,1,"""Europe""" +2023-03-21,36994,5388,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4487.95,"{\"": \""30%\""}",106123,0,"""South America""" +2024-02-10,36995,2490,"[\""Headphones\"", \""Keyboard\""]",4162.15,"{\"": \""20%\""}",140953,1,"""North America""" +2024-05-18,36996,5694,"[\""Wireless Mouse\""]",3679.02,{},225492,1,"""Europe""" +2024-03-02,36997,8646,"[\""Charger\""]",2506.99,"{\""loyalty\"": \""10%\""}",142124,0,"""Asia""" +2023-07-05,36998,5301,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4592.17,{},174866,0,"""Africa""" +2023-09-18,36999,9326,"[\""Laptop\""]",1726.87,{},107106,0,"""Africa""" +2023-04-13,37000,6567,"[\""Monitor\""]",4482.49,{},234195,1,"""North America""" +2023-06-06,37001,4602,"[\""Tablet\""]",4720.08,"{\""seasonal\"": \""17%\""}",182290,1,"""South America""" +2023-03-09,37002,677,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2242.56,"{\""loyalty\"": \""26%\""}",289238,1,"""South America""" +2024-09-01,37003,7300,"[\""Keyboard\"", \""Phone\""]",1990.68,{},238786,0,"""Europe""" +2023-03-25,37004,7258,"[\""Monitor\""]",2321.72,"{\""promo\"": \""8%\""}",63258,0,"""Asia""" +2023-02-23,37005,3266,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1302.92,{},249878,0,"""Africa""" +2024-11-25,37006,3153,"[\""Laptop\""]",4254.97,{},161453,1,"""North America""" +2024-10-13,37007,4291,"[\""Phone\"", \""Laptop\""]",876.3,{},77018,0,"""Europe""" +2024-03-19,37008,9651,"[\""Laptop\"", \""Charger\""]",789.64,"{\"": \""26%\""}",194823,1,"""Asia""" +2023-01-23,37009,4547,"[\""Keyboard\"", \""Laptop\""]",3146.78,{},108312,0,"""South America""" +2023-07-29,37010,7491,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4073.58,{},272222,0,"""Africa""" +2023-04-17,37011,1410,"[\""Wireless Mouse\""]",3828.49,{},7056,0,"""North America""" +2023-08-19,37012,9513,"[\""Laptop\""]",1775.94,{},171429,0,"""Africa""" +2023-11-24,37013,8913,"[\""Phone\"", \""Tablet\"", \""Charger\""]",217.58,{},164731,0,"""North America""" +2024-07-12,37014,9489,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",487.91,{},216921,1,"""Africa""" +2024-02-19,37015,2739,"[\""Headphones\""]",1257.65,"{\"": \""5%\""}",299691,1,"""Asia""" +2023-01-19,37016,4437,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1610.32,{},17799,1,"""North America""" +2024-01-17,37017,9727,"[\""Headphones\""]",4702.93,{},191126,1,"""South America""" +2024-05-10,37018,7802,"[\""Charger\""]",3108.39,"{\""seasonal\"": \""20%\""}",62710,1,"""Asia""" +2023-05-11,37019,8402,"[\""Tablet\"", \""Keyboard\""]",403.38,"{\""promo\"": \""8%\""}",52411,0,"""Europe""" +2024-04-20,37020,3329,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1124.81,"{\""promo\"": \""6%\""}",95651,0,"""North America""" +2024-01-05,37021,7851,"[\""Monitor\"", \""Laptop\""]",123.12,"{\"": \""28%\""}",249260,1,"""Asia""" +2023-01-05,37022,1138,"[\""Charger\"", \""Monitor\""]",3665.37,{},111166,0,"""Europe""" +2024-01-21,37023,6512,"[\""Laptop\"", \""Tablet\""]",1874.85,{},69090,1,"""South America""" +2023-07-02,37024,8136,"[\""Charger\""]",1682.71,"{\""seasonal\"": \""8%\""}",1490,1,"""Africa""" +2024-10-17,37025,2695,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1626.63,{},134882,0,"""South America""" +2024-03-04,37026,5273,"[\""Tablet\""]",1504.14,{},98654,1,"""Africa""" +2024-10-07,37027,7106,"[\""Monitor\"", \""Wireless Mouse\""]",4192.56,"{\"": \""27%\""}",92384,1,"""Europe""" +2024-09-19,37028,6947,"[\""Tablet\"", \""Phone\""]",638.89,"{\"": \""22%\""}",14243,0,"""South America""" +2023-02-16,37029,8119,"[\""Monitor\"", \""Keyboard\""]",4826.82,{},139285,0,"""North America""" +2023-07-23,37030,8672,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",806.38,"{\"": \""26%\""}",293124,1,"""North America""" +2024-12-08,37031,5850,"[\""Tablet\""]",3319.45,{},288177,1,"""Europe""" +2024-05-19,37032,9318,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",728.48,{},184545,1,"""Europe""" +2024-09-19,37033,317,"[\""Laptop\"", \""Charger\""]",2471.3,{},160351,1,"""South America""" +2023-12-05,37034,3646,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4193.34,"{\""loyalty\"": \""6%\""}",222770,1,"""Asia""" +2023-02-12,37035,8376,"[\""Monitor\""]",3377.12,"{\""seasonal\"": \""26%\""}",122020,0,"""Asia""" +2024-08-23,37036,2079,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",155.88,{},298394,1,"""Asia""" +2024-03-22,37037,7183,"[\""Charger\""]",913.66,{},153010,1,"""South America""" +2024-04-30,37038,4091,"[\""Monitor\"", \""Laptop\""]",1510.56,{},237029,1,"""North America""" +2023-03-13,37039,9018,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1287.68,"{\""promo\"": \""27%\""}",163861,0,"""Africa""" +2024-02-08,37040,6472,"[\""Charger\"", \""Headphones\""]",1158.75,"{\""promo\"": \""30%\""}",155230,0,"""North America""" +2023-02-12,37041,9664,"[\""Monitor\""]",3204.06,"{\""seasonal\"": \""8%\""}",35473,0,"""Asia""" +2023-11-03,37042,129,"[\""Laptop\"", \""Wireless Mouse\""]",1712.83,{},200785,1,"""Europe""" +2024-01-27,37043,2085,"[\""Wireless Mouse\"", \""Tablet\""]",3943.05,"{\""seasonal\"": \""17%\""}",273348,0,"""Europe""" +2023-04-05,37044,4528,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1402.28,"{\""promo\"": \""10%\""}",87885,1,"""North America""" +2024-09-02,37045,703,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4462.24,{},229865,0,"""North America""" +2023-02-28,37046,5040,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1701.97,{},148986,1,"""South America""" +2024-02-27,37047,9873,"[\""Headphones\"", \""Keyboard\""]",4707.87,"{\""promo\"": \""24%\""}",25354,0,"""Europe""" +2023-11-18,37048,6496,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3354.02,{},5065,0,"""South America""" +2024-12-13,37049,1957,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4181.46,{},214411,1,"""North America""" +2024-12-27,37050,8384,"[\""Phone\"", \""Keyboard\""]",1206.38,"{\""loyalty\"": \""15%\""}",292140,1,"""Asia""" +2023-01-06,37051,3937,"[\""Keyboard\"", \""Laptop\""]",1538.41,{},156812,0,"""North America""" +2023-07-02,37052,6481,"[\""Charger\"", \""Phone\""]",4835.77,"{\"": \""28%\""}",250575,1,"""South America""" +2023-11-04,37053,2008,"[\""Tablet\""]",4042.15,"{\""loyalty\"": \""6%\""}",169371,0,"""Europe""" +2024-01-15,37054,6226,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3605.68,{},153689,0,"""Europe""" +2024-01-24,37055,3682,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3500.03,{},208608,1,"""South America""" +2023-02-03,37056,5968,"[\""Phone\"", \""Keyboard\""]",2221.76,"{\""promo\"": \""30%\""}",184841,0,"""Africa""" +2023-06-01,37057,4764,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1399.83,"{\""promo\"": \""28%\""}",95835,0,"""South America""" +2023-07-19,37058,6860,"[\""Wireless Mouse\"", \""Tablet\""]",1960.66,"{\"": \""13%\""}",46133,0,"""North America""" +2024-08-12,37059,2934,"[\""Headphones\"", \""Laptop\""]",3182.38,"{\""seasonal\"": \""21%\""}",201682,0,"""Europe""" +2023-03-17,37060,6163,"[\""Keyboard\"", \""Phone\""]",2184.51,{},13503,0,"""Europe""" +2024-03-08,37061,8484,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2722.05,"{\""promo\"": \""15%\""}",113211,0,"""Asia""" +2024-02-09,37062,1242,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4408.99,{},102526,0,"""South America""" +2023-04-29,37063,5377,"[\""Laptop\""]",4517.75,"{\"": \""20%\""}",284149,0,"""North America""" +2023-09-13,37064,5522,"[\""Monitor\""]",2606.89,"{\"": \""22%\""}",13684,1,"""North America""" +2023-06-13,37065,1327,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1325.65,"{\""seasonal\"": \""25%\""}",274619,1,"""Africa""" +2024-12-28,37066,4698,"[\""Keyboard\""]",4940.67,{},193369,1,"""Asia""" +2024-05-26,37067,1948,"[\""Keyboard\"", \""Laptop\""]",3251.83,{},38141,0,"""North America""" +2024-05-05,37068,4263,"[\""Phone\"", \""Laptop\""]",279.77,{},113896,0,"""Africa""" +2024-08-20,37069,9624,"[\""Wireless Mouse\""]",3577.85,{},279167,1,"""Asia""" +2024-12-24,37070,8993,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2626.09,{},111994,0,"""Asia""" +2023-12-24,37071,7226,"[\""Wireless Mouse\"", \""Phone\""]",3829.85,{},165794,0,"""Europe""" +2023-04-17,37072,8569,"[\""Wireless Mouse\"", \""Monitor\""]",1860.09,{},24387,1,"""South America""" +2023-03-21,37073,8011,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",602.73,"{\""promo\"": \""13%\""}",212521,0,"""Asia""" +2024-01-10,37074,7042,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3668.54,"{\"": \""17%\""}",206447,1,"""North America""" +2023-08-18,37075,3024,"[\""Headphones\"", \""Keyboard\""]",4296.72,{},211494,0,"""South America""" +2024-02-03,37076,8392,"[\""Phone\"", \""Monitor\""]",4690.56,"{\""loyalty\"": \""13%\""}",294446,1,"""Africa""" +2023-06-09,37077,5871,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3072.8,"{\""loyalty\"": \""20%\""}",205358,0,"""South America""" +2023-05-26,37078,3899,"[\""Charger\"", \""Phone\""]",3537.02,{},197513,0,"""South America""" +2024-05-13,37079,3003,"[\""Charger\""]",2456.09,"{\"": \""28%\""}",76175,0,"""North America""" +2023-03-04,37080,1106,"[\""Monitor\""]",796.5,{},272532,0,"""North America""" +2024-11-18,37081,2442,"[\""Tablet\""]",723.07,{},61115,0,"""Europe""" +2024-07-08,37082,5454,"[\""Keyboard\""]",2196.93,{},250421,1,"""South America""" +2023-07-27,37083,4158,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1024.83,{},85000,1,"""Europe""" +2023-10-17,37084,2155,"[\""Phone\""]",1345.59,"{\""loyalty\"": \""22%\""}",185837,0,"""South America""" +2023-06-04,37085,5875,"[\""Wireless Mouse\"", \""Monitor\""]",4354.62,{},65218,1,"""Africa""" +2024-10-09,37086,4367,"[\""Tablet\"", \""Monitor\""]",3119.18,{},148341,0,"""North America""" +2023-06-14,37087,5125,"[\""Laptop\"", \""Wireless Mouse\""]",3932.4,{},36016,1,"""Asia""" +2023-12-14,37088,5147,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3076.15,{},55287,0,"""Asia""" +2023-09-11,37089,9425,"[\""Monitor\""]",4271.59,{},237503,1,"""Africa""" +2024-05-22,37090,8100,"[\""Monitor\""]",1113.1,{},22897,0,"""South America""" +2023-08-30,37091,3960,"[\""Headphones\""]",2513.33,"{\""promo\"": \""25%\""}",38785,0,"""North America""" +2023-01-06,37092,3068,"[\""Laptop\""]",4278.13,{},21253,1,"""South America""" +2024-05-19,37093,4952,"[\""Charger\""]",867.26,{},65604,0,"""Asia""" +2023-11-14,37094,5165,"[\""Wireless Mouse\""]",2304.87,{},31307,1,"""Africa""" +2024-05-02,37095,2601,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3130.54,"{\""loyalty\"": \""12%\""}",102683,1,"""Africa""" +2023-11-19,37096,2765,"[\""Laptop\""]",636.19,{},226930,0,"""Europe""" +2023-01-06,37097,5841,"[\""Wireless Mouse\""]",434.88,{},216487,1,"""North America""" +2023-05-25,37098,8325,"[\""Tablet\""]",292.69,"{\""seasonal\"": \""5%\""}",200649,0,"""Africa""" +2023-02-15,37099,3314,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4613.46,"{\""seasonal\"": \""10%\""}",56589,1,"""South America""" +2023-11-01,37100,2720,"[\""Headphones\""]",1758.6,"{\""loyalty\"": \""21%\""}",62042,1,"""Africa""" +2024-08-22,37101,3915,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2138.54,"{\"": \""20%\""}",141123,1,"""Europe""" +2024-12-30,37102,66,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3886.14,{},222741,1,"""Africa""" +2024-08-22,37103,1993,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",661.04,"{\""loyalty\"": \""14%\""}",226998,1,"""Europe""" +2024-05-17,37104,6732,"[\""Tablet\"", \""Laptop\""]",4255.37,"{\""loyalty\"": \""15%\""}",148687,1,"""South America""" +2023-04-04,37105,5714,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4215.33,"{\"": \""19%\""}",70558,1,"""South America""" +2023-07-23,37106,6934,"[\""Headphones\""]",4716.85,{},276462,0,"""North America""" +2023-09-08,37107,3069,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",962.17,{},199044,0,"""Asia""" +2024-12-25,37108,1423,"[\""Charger\""]",2017.8,{},269412,0,"""Europe""" +2024-12-19,37109,1016,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2341.06,{},55386,0,"""North America""" +2024-01-25,37110,3778,"[\""Tablet\""]",3592.71,{},128673,1,"""Asia""" +2023-09-09,37111,8609,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3836.37,"{\""seasonal\"": \""8%\""}",111348,0,"""Europe""" +2023-10-18,37112,9346,"[\""Keyboard\"", \""Monitor\""]",708.93,{},129842,0,"""South America""" +2023-09-26,37113,921,"[\""Monitor\"", \""Tablet\""]",275.11,{},34568,0,"""Asia""" +2024-01-10,37114,7215,"[\""Phone\""]",2276.61,"{\""promo\"": \""22%\""}",150616,0,"""North America""" +2023-04-09,37115,4256,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2378.35,"{\""promo\"": \""12%\""}",231787,0,"""Africa""" +2023-11-14,37116,1509,"[\""Laptop\""]",3603.13,{},274725,0,"""North America""" +2023-02-06,37117,416,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4880.55,{},155726,0,"""Africa""" +2023-06-05,37118,1778,"[\""Charger\"", \""Keyboard\""]",348.42,"{\""promo\"": \""27%\""}",76543,0,"""North America""" +2024-11-24,37119,1414,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3782.42,{},121023,1,"""Europe""" +2024-03-04,37120,1200,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3302.02,"{\""loyalty\"": \""19%\""}",99341,1,"""Asia""" +2023-09-22,37121,338,"[\""Laptop\"", \""Keyboard\""]",2969.04,"{\"": \""8%\""}",108595,0,"""Africa""" +2023-10-21,37122,5153,"[\""Monitor\""]",3833.09,"{\"": \""10%\""}",100570,0,"""Asia""" +2023-09-29,37123,9504,"[\""Headphones\""]",429.35,{},283990,0,"""Africa""" +2024-11-05,37124,856,"[\""Charger\""]",499.2,"{\""seasonal\"": \""15%\""}",247281,1,"""South America""" +2024-10-20,37125,4322,"[\""Headphones\""]",4543.92,"{\""seasonal\"": \""21%\""}",237610,1,"""Africa""" +2023-10-01,37126,5229,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2168.05,{},209137,0,"""Europe""" +2023-01-21,37127,1153,"[\""Keyboard\"", \""Monitor\""]",3322.74,"{\""loyalty\"": \""9%\""}",194916,1,"""North America""" +2023-08-20,37128,23,"[\""Wireless Mouse\""]",4114.51,"{\"": \""14%\""}",18351,1,"""Asia""" +2023-12-23,37129,9963,"[\""Headphones\"", \""Keyboard\""]",1640.82,"{\"": \""20%\""}",267716,1,"""Asia""" +2023-10-19,37130,5942,"[\""Keyboard\"", \""Wireless Mouse\""]",3404.98,"{\""promo\"": \""27%\""}",56985,1,"""South America""" +2024-07-22,37131,7949,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4582.45,{},40825,1,"""Europe""" +2023-10-12,37132,3144,"[\""Wireless Mouse\""]",1752.45,{},270564,1,"""Africa""" +2024-03-24,37133,7771,"[\""Wireless Mouse\"", \""Laptop\""]",1976.69,"{\""loyalty\"": \""18%\""}",279364,0,"""Asia""" +2023-03-11,37134,9296,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",889.13,{},39934,0,"""Africa""" +2024-08-25,37135,1816,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2348.15,"{\""seasonal\"": \""15%\""}",19921,1,"""North America""" +2023-03-20,37136,1557,"[\""Tablet\""]",3185.59,"{\""loyalty\"": \""26%\""}",111434,0,"""South America""" +2024-06-10,37137,5268,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",854.02,"{\""loyalty\"": \""14%\""}",133090,1,"""Europe""" +2023-03-25,37138,3121,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3874.26,"{\""loyalty\"": \""6%\""}",64823,0,"""Asia""" +2024-11-01,37139,9443,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1631.63,{},231870,1,"""Asia""" +2024-11-23,37140,1251,"[\""Headphones\"", \""Charger\""]",3224.95,{},244109,0,"""Africa""" +2023-03-14,37141,7490,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3298.07,{},15893,1,"""Europe""" +2024-11-06,37142,3590,"[\""Wireless Mouse\"", \""Keyboard\""]",4076.88,{},87106,1,"""North America""" +2024-07-10,37143,3429,"[\""Wireless Mouse\""]",1905.83,{},142644,1,"""Africa""" +2023-07-29,37144,137,"[\""Monitor\"", \""Tablet\""]",4855.54,{},96456,1,"""North America""" +2023-10-18,37145,9444,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2851.76,"{\""loyalty\"": \""27%\""}",223915,0,"""Asia""" +2024-05-15,37146,2523,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1227.37,"{\""promo\"": \""15%\""}",92377,1,"""Africa""" +2023-08-12,37147,5617,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",811.2,"{\""seasonal\"": \""10%\""}",68833,0,"""Asia""" +2024-11-16,37148,173,"[\""Laptop\"", \""Monitor\""]",1296.11,{},245004,0,"""Africa""" +2023-10-16,37149,8427,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2963.58,"{\""promo\"": \""30%\""}",218787,1,"""North America""" +2023-01-31,37150,5858,"[\""Wireless Mouse\""]",4828.65,"{\"": \""9%\""}",114914,1,"""North America""" +2023-02-24,37151,5448,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2796.27,{},61506,1,"""Asia""" +2023-03-28,37152,8614,"[\""Phone\"", \""Wireless Mouse\""]",2575.55,{},182196,0,"""South America""" +2024-03-07,37153,3325,"[\""Tablet\""]",3500.9,{},297732,1,"""Africa""" +2023-10-22,37154,5064,"[\""Monitor\"", \""Headphones\""]",2174.43,{},54734,0,"""North America""" +2023-02-26,37155,6171,"[\""Headphones\""]",116.29,{},100346,1,"""Asia""" +2024-10-03,37156,6433,"[\""Monitor\"", \""Tablet\""]",2634.35,{},103972,1,"""Europe""" +2024-12-21,37157,9245,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4085.33,{},180453,1,"""Europe""" +2024-05-22,37158,4717,"[\""Monitor\""]",2725.58,{},35541,0,"""Europe""" +2024-01-13,37159,9021,"[\""Keyboard\"", \""Monitor\""]",2332.66,{},151915,0,"""Europe""" +2024-10-07,37160,137,"[\""Phone\"", \""Charger\""]",2086.42,"{\"": \""16%\""}",259523,0,"""North America""" +2023-08-28,37161,6130,"[\""Charger\""]",4232.26,{},224275,0,"""North America""" +2024-09-10,37162,2919,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",412.24,{},284017,0,"""North America""" +2024-06-12,37163,4861,"[\""Monitor\"", \""Headphones\""]",4562.56,{},134063,0,"""Europe""" +2024-10-14,37164,4545,"[\""Charger\"", \""Wireless Mouse\""]",4528.51,{},122652,1,"""Asia""" +2024-08-12,37165,3511,"[\""Monitor\"", \""Headphones\""]",2875.66,"{\""seasonal\"": \""17%\""}",214264,1,"""South America""" +2024-01-27,37166,6684,"[\""Keyboard\"", \""Wireless Mouse\""]",4922.79,{},272494,1,"""Europe""" +2023-07-02,37167,131,"[\""Monitor\"", \""Tablet\""]",151.78,"{\""seasonal\"": \""11%\""}",68395,1,"""Asia""" +2023-07-14,37168,1477,"[\""Phone\"", \""Headphones\""]",3179.61,"{\""seasonal\"": \""23%\""}",75188,0,"""North America""" +2024-07-10,37169,1816,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2093.72,"{\""seasonal\"": \""14%\""}",151215,1,"""Africa""" +2023-10-20,37170,639,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",894.5,{},240014,0,"""Africa""" +2024-10-10,37171,366,"[\""Wireless Mouse\""]",2988.43,{},247849,0,"""Europe""" +2023-10-18,37172,395,"[\""Keyboard\"", \""Phone\""]",1177.28,"{\""loyalty\"": \""18%\""}",264341,0,"""North America""" +2024-03-31,37173,2201,"[\""Headphones\""]",94.05,"{\""promo\"": \""20%\""}",181860,0,"""Asia""" +2023-04-11,37174,2598,"[\""Headphones\""]",1400.4,{},44412,0,"""South America""" +2024-04-08,37175,2632,"[\""Charger\"", \""Tablet\""]",921.06,"{\""loyalty\"": \""23%\""}",180344,0,"""Africa""" +2024-12-22,37176,4583,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4520.43,{},143983,1,"""Africa""" +2024-11-18,37177,1869,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2155.7,"{\""promo\"": \""8%\""}",240515,1,"""Africa""" +2024-04-03,37178,21,"[\""Phone\""]",3411.87,{},224991,1,"""Africa""" +2023-07-20,37179,5893,"[\""Laptop\"", \""Phone\""]",4051.76,{},83565,0,"""South America""" +2024-04-02,37180,6692,"[\""Monitor\"", \""Headphones\""]",2749.03,{},49915,1,"""North America""" +2024-12-15,37181,2174,"[\""Monitor\"", \""Charger\""]",4013.8,{},91986,1,"""Asia""" +2023-07-28,37182,7968,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3101.9,"{\""loyalty\"": \""25%\""}",105010,0,"""North America""" +2024-04-22,37183,8219,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1254.24,"{\"": \""11%\""}",143519,0,"""Europe""" +2024-11-13,37184,5131,"[\""Charger\"", \""Wireless Mouse\""]",4795.92,"{\""loyalty\"": \""13%\""}",85284,1,"""Europe""" +2024-02-10,37185,2347,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4775.67,{},247380,0,"""Europe""" +2023-02-06,37186,1959,"[\""Monitor\"", \""Keyboard\""]",4654.32,{},194004,0,"""North America""" +2024-01-31,37187,2035,"[\""Monitor\"", \""Keyboard\""]",1005.29,"{\"": \""18%\""}",102082,1,"""North America""" +2023-02-07,37188,5161,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1842.41,"{\""promo\"": \""12%\""}",201962,0,"""Europe""" +2023-12-15,37189,4496,"[\""Laptop\""]",2589.15,"{\""promo\"": \""29%\""}",206653,1,"""North America""" +2023-02-28,37190,9727,"[\""Monitor\""]",219.72,"{\""loyalty\"": \""17%\""}",113216,0,"""Asia""" +2023-10-05,37191,6943,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3146.06,{},152488,1,"""Asia""" +2024-05-13,37192,9551,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",898.07,"{\""promo\"": \""7%\""}",63266,0,"""Europe""" +2024-12-07,37193,9142,"[\""Tablet\"", \""Charger\""]",3052.72,"{\""seasonal\"": \""20%\""}",168365,1,"""South America""" +2024-03-22,37194,5389,"[\""Monitor\"", \""Wireless Mouse\""]",4467.92,"{\""loyalty\"": \""7%\""}",251654,0,"""Europe""" +2023-06-18,37195,1198,"[\""Phone\""]",3844.89,{},278072,0,"""Africa""" +2023-06-02,37196,3563,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3384.08,{},237740,1,"""South America""" +2024-10-10,37197,8301,"[\""Keyboard\""]",904.75,"{\""loyalty\"": \""16%\""}",73145,1,"""North America""" +2024-04-09,37198,8024,"[\""Headphones\"", \""Keyboard\""]",3736.75,"{\""promo\"": \""15%\""}",210443,1,"""North America""" +2024-03-17,37199,5807,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1301.03,"{\""promo\"": \""22%\""}",11781,1,"""Africa""" +2023-08-25,37200,207,"[\""Monitor\""]",545.57,"{\"": \""13%\""}",103118,1,"""Asia""" +2023-08-08,37201,5862,"[\""Wireless Mouse\""]",544.05,"{\""promo\"": \""6%\""}",243431,1,"""North America""" +2024-06-15,37202,5835,"[\""Wireless Mouse\"", \""Phone\""]",343.1,{},240890,1,"""South America""" +2023-12-15,37203,8967,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",165.93,{},8229,1,"""Europe""" +2024-10-01,37204,4755,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4429.84,"{\""loyalty\"": \""12%\""}",58452,1,"""South America""" +2024-03-16,37205,1640,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2209.92,{},40371,0,"""Asia""" +2024-05-08,37206,9461,"[\""Wireless Mouse\"", \""Laptop\""]",2439.87,{},123460,1,"""Europe""" +2024-12-28,37207,567,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4864.55,"{\""promo\"": \""8%\""}",288666,0,"""South America""" +2024-02-11,37208,1966,"[\""Laptop\"", \""Phone\""]",3083.21,{},245607,0,"""Africa""" +2024-05-23,37209,5550,"[\""Wireless Mouse\"", \""Phone\""]",869.32,{},55335,0,"""Europe""" +2024-08-05,37210,5527,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2815.23,"{\""promo\"": \""20%\""}",101557,0,"""Africa""" +2024-03-07,37211,8332,"[\""Tablet\""]",577.49,"{\""promo\"": \""14%\""}",283070,1,"""Europe""" +2024-07-11,37212,6956,"[\""Laptop\"", \""Charger\""]",3250.63,"{\"": \""8%\""}",194675,1,"""Africa""" +2024-01-25,37213,9904,"[\""Keyboard\""]",4093.8,{},226141,1,"""South America""" +2023-02-26,37214,9932,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3416.8,"{\""promo\"": \""30%\""}",271126,0,"""Africa""" +2023-05-23,37215,2449,"[\""Tablet\"", \""Wireless Mouse\""]",87.07,{},89272,1,"""North America""" +2024-08-09,37216,4118,"[\""Wireless Mouse\"", \""Charger\""]",3012.51,{},257251,1,"""North America""" +2024-05-28,37217,7615,"[\""Wireless Mouse\""]",681.56,"{\""seasonal\"": \""27%\""}",281462,0,"""Europe""" +2023-11-29,37218,1433,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2933.64,{},14451,1,"""North America""" +2024-10-04,37219,5279,"[\""Tablet\"", \""Laptop\""]",2808.05,{},251048,1,"""Europe""" +2024-11-13,37220,7745,"[\""Charger\""]",637.24,{},117417,0,"""Europe""" +2023-05-10,37221,719,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3151.43,"{\""seasonal\"": \""16%\""}",153466,1,"""North America""" +2024-12-30,37222,2377,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1229.64,{},192641,1,"""South America""" +2023-05-28,37223,130,"[\""Phone\"", \""Wireless Mouse\""]",2809.48,{},242432,1,"""Europe""" +2024-12-08,37224,7416,"[\""Monitor\"", \""Phone\""]",820.77,{},210843,1,"""North America""" +2023-08-21,37225,9009,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3494.37,{},235211,1,"""Africa""" +2023-02-18,37226,1994,"[\""Phone\""]",293.84,{},143534,0,"""Asia""" +2024-04-16,37227,9940,"[\""Monitor\"", \""Phone\""]",4216.07,"{\""loyalty\"": \""26%\""}",99023,1,"""Europe""" +2024-12-30,37228,7241,"[\""Tablet\"", \""Charger\""]",3656.71,"{\""loyalty\"": \""14%\""}",238207,0,"""Asia""" +2023-01-12,37229,3936,"[\""Monitor\"", \""Laptop\""]",4402.72,{},21764,0,"""Europe""" +2024-04-06,37230,4845,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1446.67,{},121884,1,"""North America""" +2024-12-21,37231,8822,"[\""Phone\"", \""Wireless Mouse\""]",4055.32,"{\"": \""10%\""}",211819,0,"""Africa""" +2024-12-21,37232,9265,"[\""Wireless Mouse\""]",4931.66,{},273271,0,"""Europe""" +2023-02-12,37233,4719,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3033.59,{},235958,1,"""Europe""" +2023-05-16,37234,2490,"[\""Wireless Mouse\"", \""Tablet\""]",3084.69,"{\""promo\"": \""26%\""}",230485,0,"""North America""" +2024-06-17,37235,4029,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3128.17,"{\""loyalty\"": \""26%\""}",44613,1,"""North America""" +2023-02-09,37236,6905,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3952.45,{},297703,1,"""North America""" +2024-03-28,37237,6731,"[\""Keyboard\""]",4581.63,{},216690,0,"""Europe""" +2024-09-06,37238,6078,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3920.32,{},148703,1,"""North America""" +2023-08-09,37239,8246,"[\""Headphones\"", \""Charger\""]",4469.07,"{\""seasonal\"": \""23%\""}",171436,1,"""Europe""" +2023-11-15,37240,2083,"[\""Laptop\"", \""Headphones\""]",1393.0,"{\""seasonal\"": \""12%\""}",111010,1,"""South America""" +2023-01-29,37241,8345,"[\""Headphones\""]",1667.61,"{\""promo\"": \""13%\""}",260680,1,"""Europe""" +2024-11-05,37242,489,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2796.95,"{\""seasonal\"": \""22%\""}",234861,1,"""Asia""" +2023-10-02,37243,5480,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1009.08,{},72009,1,"""Europe""" +2024-09-02,37244,2209,"[\""Monitor\""]",2100.83,"{\""loyalty\"": \""14%\""}",24509,0,"""South America""" +2023-05-22,37245,2710,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4031.91,{},266664,0,"""Asia""" +2023-10-31,37246,4107,"[\""Charger\"", \""Laptop\""]",2091.74,{},198834,1,"""Africa""" +2024-04-12,37247,9302,"[\""Wireless Mouse\""]",2909.67,{},47854,1,"""Europe""" +2024-05-23,37248,8710,"[\""Laptop\"", \""Phone\""]",4579.39,"{\"": \""21%\""}",297055,1,"""Asia""" +2024-12-05,37249,75,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4121.51,{},93213,1,"""South America""" +2023-07-24,37250,2336,"[\""Phone\"", \""Tablet\""]",1204.34,"{\"": \""20%\""}",100999,1,"""North America""" +2024-11-22,37251,9922,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2120.13,"{\""promo\"": \""11%\""}",50782,0,"""Europe""" +2024-09-12,37252,2315,"[\""Keyboard\"", \""Charger\""]",1259.72,"{\""promo\"": \""17%\""}",9171,1,"""Asia""" +2023-04-01,37253,5470,"[\""Charger\""]",3515.52,{},144164,0,"""South America""" +2023-05-02,37254,7432,"[\""Keyboard\"", \""Charger\""]",1483.1,{},189953,0,"""North America""" +2023-12-31,37255,3809,"[\""Laptop\""]",4251.35,{},103687,1,"""North America""" +2023-11-16,37256,7954,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1361.84,{},172000,0,"""Africa""" +2023-05-19,37257,7778,"[\""Wireless Mouse\"", \""Phone\""]",152.73,"{\"": \""21%\""}",237296,1,"""Africa""" +2024-11-19,37258,7491,"[\""Monitor\""]",2988.07,{},128053,1,"""North America""" +2024-12-10,37259,2357,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3098.03,{},28977,0,"""South America""" +2023-12-21,37260,9608,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2287.38,{},35015,0,"""North America""" +2023-03-15,37261,2616,"[\""Keyboard\""]",3808.35,"{\""loyalty\"": \""14%\""}",86288,1,"""Asia""" +2023-10-03,37262,2119,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4166.49,{},71395,0,"""North America""" +2023-09-16,37263,9530,"[\""Phone\"", \""Charger\""]",3738.57,{},299278,1,"""Europe""" +2023-04-08,37264,6487,"[\""Headphones\""]",4112.57,"{\""promo\"": \""21%\""}",103692,1,"""North America""" +2023-04-21,37265,7560,"[\""Phone\""]",1979.87,"{\""promo\"": \""21%\""}",85256,1,"""Africa""" +2023-09-08,37266,9836,"[\""Wireless Mouse\"", \""Monitor\""]",3321.17,{},37937,1,"""Asia""" +2024-01-27,37267,568,"[\""Charger\"", \""Phone\""]",4589.64,"{\""seasonal\"": \""17%\""}",149485,0,"""Asia""" +2023-02-25,37268,8845,"[\""Tablet\""]",1762.79,{},162678,0,"""South America""" +2024-02-19,37269,7466,"[\""Laptop\""]",730.31,{},39798,1,"""North America""" +2023-10-27,37270,4702,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1592.43,"{\""loyalty\"": \""26%\""}",130527,0,"""Africa""" +2024-08-05,37271,9677,"[\""Laptop\"", \""Tablet\""]",114.86,"{\"": \""23%\""}",21912,1,"""Africa""" +2023-11-27,37272,2622,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4426.63,"{\"": \""13%\""}",87493,0,"""South America""" +2023-12-27,37273,7745,"[\""Monitor\""]",3039.58,{},9136,1,"""Africa""" +2023-06-02,37274,9194,"[\""Monitor\"", \""Charger\""]",2733.99,"{\""loyalty\"": \""9%\""}",194143,1,"""South America""" +2023-10-09,37275,9392,"[\""Keyboard\"", \""Charger\""]",3883.6,{},96044,0,"""North America""" +2023-05-27,37276,9178,"[\""Wireless Mouse\"", \""Charger\""]",1769.37,"{\"": \""5%\""}",190271,0,"""North America""" +2023-10-18,37277,586,"[\""Headphones\""]",1830.32,{},241910,1,"""South America""" +2024-01-24,37278,1638,"[\""Headphones\""]",4589.31,{},50734,1,"""North America""" +2023-06-12,37279,5096,"[\""Phone\"", \""Keyboard\""]",3555.1,"{\""loyalty\"": \""19%\""}",62958,0,"""North America""" +2024-08-10,37280,3600,"[\""Phone\"", \""Monitor\""]",1776.9,"{\""promo\"": \""16%\""}",171918,0,"""Asia""" +2024-07-07,37281,5340,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2040.36,"{\""promo\"": \""26%\""}",35874,0,"""Asia""" +2024-03-14,37282,9749,"[\""Wireless Mouse\""]",1845.75,"{\""seasonal\"": \""20%\""}",150014,0,"""Europe""" +2023-05-27,37283,6134,"[\""Charger\"", \""Keyboard\""]",1908.67,"{\""seasonal\"": \""5%\""}",234336,1,"""Africa""" +2023-11-06,37284,153,"[\""Charger\""]",417.88,"{\""promo\"": \""25%\""}",265036,0,"""South America""" +2024-07-28,37285,9650,"[\""Wireless Mouse\"", \""Headphones\""]",1117.19,{},263954,1,"""South America""" +2023-06-18,37286,2753,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2468.34,{},254999,0,"""Africa""" +2024-02-17,37287,4367,"[\""Headphones\""]",2591.67,"{\"": \""30%\""}",200547,1,"""Asia""" +2024-09-04,37288,1459,"[\""Tablet\"", \""Wireless Mouse\""]",1863.7,{},110773,1,"""South America""" +2024-04-12,37289,9510,"[\""Monitor\""]",4117.53,"{\""seasonal\"": \""9%\""}",186189,0,"""South America""" +2024-03-29,37290,613,"[\""Charger\"", \""Laptop\""]",4205.62,{},219258,1,"""South America""" +2024-05-05,37291,2209,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3715.44,"{\""loyalty\"": \""26%\""}",129885,1,"""North America""" +2023-09-17,37292,6713,"[\""Laptop\""]",557.17,{},285141,1,"""South America""" +2023-03-30,37293,1663,"[\""Tablet\"", \""Keyboard\""]",2402.13,{},42266,1,"""Europe""" +2024-09-04,37294,1191,"[\""Monitor\""]",4697.31,"{\""seasonal\"": \""24%\""}",196224,0,"""Asia""" +2024-10-22,37295,3147,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3779.88,{},265754,0,"""Africa""" +2024-11-24,37296,5385,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3298.3,{},180510,1,"""North America""" +2024-05-15,37297,1913,"[\""Wireless Mouse\""]",857.74,"{\"": \""22%\""}",294076,0,"""North America""" +2023-06-04,37298,1561,"[\""Tablet\"", \""Laptop\""]",2491.99,{},178991,1,"""Asia""" +2024-06-17,37299,4220,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4114.13,{},60210,1,"""Africa""" +2024-08-02,37300,5892,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2201.09,"{\""loyalty\"": \""28%\""}",201520,1,"""Asia""" +2024-01-22,37301,9699,"[\""Laptop\"", \""Monitor\""]",2419.05,{},104068,1,"""South America""" +2023-04-14,37302,8655,"[\""Phone\"", \""Tablet\""]",1567.82,{},189587,0,"""Europe""" +2023-07-25,37303,4798,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3612.91,{},189033,1,"""North America""" +2023-04-23,37304,9195,"[\""Tablet\"", \""Headphones\""]",3649.14,{},251995,1,"""North America""" +2024-06-14,37305,4569,"[\""Tablet\"", \""Monitor\""]",3234.85,{},163333,1,"""South America""" +2023-02-09,37306,7778,"[\""Keyboard\"", \""Phone\""]",4700.48,"{\""seasonal\"": \""8%\""}",221097,1,"""Africa""" +2023-03-20,37307,7006,"[\""Laptop\"", \""Keyboard\""]",190.42,{},188982,0,"""Africa""" +2023-07-21,37308,697,"[\""Tablet\""]",1755.86,{},245153,0,"""North America""" +2024-12-03,37309,2859,"[\""Keyboard\""]",2108.11,{},167034,1,"""South America""" +2023-02-19,37310,6047,"[\""Phone\""]",4238.93,{},213767,1,"""South America""" +2023-06-11,37311,3240,"[\""Headphones\""]",3327.27,{},126159,1,"""South America""" +2024-01-27,37312,1406,"[\""Laptop\"", \""Phone\""]",355.85,{},234556,1,"""South America""" +2024-08-11,37313,7362,"[\""Keyboard\""]",609.66,"{\""seasonal\"": \""5%\""}",14452,0,"""Asia""" +2024-08-09,37314,8441,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3445.12,"{\""seasonal\"": \""20%\""}",28267,0,"""Asia""" +2023-11-28,37315,280,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4373.95,"{\""seasonal\"": \""14%\""}",250222,0,"""Africa""" +2023-08-25,37316,1817,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",661.65,"{\""promo\"": \""21%\""}",92202,0,"""North America""" +2024-05-14,37317,3544,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3430.13,{},107025,1,"""Africa""" +2024-09-26,37318,2357,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2260.87,"{\""promo\"": \""22%\""}",271912,0,"""Africa""" +2023-05-06,37319,4096,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1323.54,{},126005,1,"""Europe""" +2024-12-29,37320,5412,"[\""Monitor\"", \""Wireless Mouse\""]",4241.36,"{\"": \""9%\""}",16413,0,"""Asia""" +2024-07-12,37321,9725,"[\""Keyboard\"", \""Wireless Mouse\""]",590.56,{},293156,0,"""South America""" +2024-02-08,37322,8368,"[\""Laptop\"", \""Wireless Mouse\""]",2246.49,"{\"": \""26%\""}",58472,1,"""South America""" +2023-04-18,37323,5973,"[\""Headphones\"", \""Charger\""]",1637.51,"{\"": \""30%\""}",229328,0,"""North America""" +2024-05-28,37324,8173,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",460.84,"{\""loyalty\"": \""18%\""}",114886,1,"""Asia""" +2024-09-28,37325,6945,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1290.42,{},76548,1,"""Asia""" +2024-05-30,37326,3752,"[\""Charger\""]",1349.92,"{\""loyalty\"": \""27%\""}",40900,1,"""Africa""" +2023-02-13,37327,5259,"[\""Wireless Mouse\""]",2950.99,{},257236,1,"""Asia""" +2024-01-01,37328,5838,"[\""Wireless Mouse\""]",772.97,"{\""loyalty\"": \""29%\""}",92461,1,"""North America""" +2024-01-23,37329,4265,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1497.81,"{\"": \""11%\""}",118924,1,"""Asia""" +2024-02-02,37330,8897,"[\""Wireless Mouse\""]",3117.43,"{\""promo\"": \""5%\""}",173055,0,"""South America""" +2023-05-15,37331,9763,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3504.29,"{\"": \""27%\""}",60833,0,"""Europe""" +2024-06-30,37332,2634,"[\""Wireless Mouse\"", \""Headphones\""]",236.16,"{\""loyalty\"": \""9%\""}",246200,1,"""Asia""" +2024-03-20,37333,4774,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3247.56,{},122743,0,"""South America""" +2023-05-02,37334,9298,"[\""Monitor\"", \""Keyboard\""]",1120.41,{},39540,0,"""Africa""" +2024-03-23,37335,4311,"[\""Headphones\"", \""Tablet\""]",2089.78,"{\""seasonal\"": \""21%\""}",134456,1,"""Europe""" +2024-03-08,37336,3970,"[\""Monitor\""]",4281.44,{},56186,0,"""Europe""" +2024-12-12,37337,2029,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4066.68,{},17704,0,"""North America""" +2023-09-08,37338,863,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4852.6,"{\""promo\"": \""11%\""}",185691,1,"""North America""" +2023-03-11,37339,4430,"[\""Phone\"", \""Wireless Mouse\""]",1837.55,"{\""seasonal\"": \""29%\""}",108454,0,"""Europe""" +2023-01-14,37340,7731,"[\""Wireless Mouse\"", \""Monitor\""]",2839.47,{},6807,0,"""Europe""" +2024-06-03,37341,9672,"[\""Monitor\"", \""Laptop\""]",3644.68,"{\""loyalty\"": \""16%\""}",220974,0,"""North America""" +2024-01-07,37342,4265,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",472.38,{},205610,1,"""North America""" +2024-09-17,37343,3371,"[\""Tablet\"", \""Monitor\""]",4561.05,"{\""seasonal\"": \""24%\""}",109431,0,"""Africa""" +2024-01-24,37344,7487,"[\""Charger\""]",3333.91,"{\""promo\"": \""27%\""}",241276,1,"""Europe""" +2023-07-12,37345,4688,"[\""Laptop\""]",648.0,"{\""loyalty\"": \""27%\""}",125229,0,"""Africa""" +2024-05-04,37346,3019,"[\""Charger\""]",4520.57,{},30240,1,"""North America""" +2024-05-16,37347,9064,"[\""Tablet\"", \""Charger\""]",4682.32,{},227980,1,"""Europe""" +2023-12-24,37348,5471,"[\""Charger\"", \""Monitor\""]",3815.1,"{\""promo\"": \""10%\""}",106819,1,"""Africa""" +2023-09-11,37349,8861,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2083.82,"{\""loyalty\"": \""13%\""}",140884,0,"""Africa""" +2024-11-09,37350,2785,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",338.03,"{\"": \""16%\""}",113480,1,"""Asia""" +2024-01-15,37351,836,"[\""Tablet\""]",3043.96,"{\""seasonal\"": \""22%\""}",273191,1,"""Asia""" +2024-01-02,37352,6472,"[\""Wireless Mouse\"", \""Headphones\""]",3915.69,"{\""promo\"": \""8%\""}",250525,1,"""South America""" +2024-11-09,37353,4958,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3884.31,"{\""seasonal\"": \""8%\""}",68111,0,"""Africa""" +2024-03-19,37354,8843,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4563.15,{},208961,0,"""South America""" +2023-03-31,37355,2691,"[\""Laptop\"", \""Phone\""]",2366.92,{},186240,0,"""South America""" +2024-02-21,37356,5409,"[\""Charger\""]",3364.16,"{\"": \""12%\""}",243732,1,"""North America""" +2024-02-08,37357,3429,"[\""Tablet\""]",1246.23,{},224693,0,"""Africa""" +2023-09-09,37358,2739,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",226.52,{},41242,1,"""South America""" +2023-05-14,37359,2667,"[\""Monitor\""]",838.5,"{\""seasonal\"": \""22%\""}",228647,0,"""North America""" +2023-12-06,37360,8079,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",728.17,{},236396,0,"""Asia""" +2023-05-29,37361,4616,"[\""Laptop\""]",1154.51,{},59136,0,"""North America""" +2024-10-31,37362,8509,"[\""Monitor\"", \""Charger\""]",2865.2,{},13120,1,"""Africa""" +2023-06-13,37363,3811,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1110.17,{},209305,0,"""Africa""" +2023-12-07,37364,9063,"[\""Phone\""]",1858.58,{},82034,0,"""Europe""" +2023-04-25,37365,9299,"[\""Headphones\""]",2040.57,{},217992,1,"""North America""" +2024-09-30,37366,7872,"[\""Tablet\""]",2047.13,"{\""loyalty\"": \""26%\""}",212133,1,"""Africa""" +2024-12-20,37367,2858,"[\""Laptop\"", \""Tablet\""]",2803.49,{},4203,0,"""Africa""" +2024-03-01,37368,950,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3777.45,{},20133,1,"""North America""" +2024-10-01,37369,4810,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3174.72,"{\""loyalty\"": \""28%\""}",150211,0,"""Africa""" +2023-12-26,37370,3290,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3255.46,"{\"": \""25%\""}",77047,0,"""Europe""" +2024-04-10,37371,444,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4486.12,{},192211,1,"""South America""" +2024-07-29,37372,8184,"[\""Charger\"", \""Wireless Mouse\""]",2572.56,{},212610,0,"""Africa""" +2023-12-18,37373,1162,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",587.82,"{\""loyalty\"": \""8%\""}",136776,1,"""South America""" +2023-03-06,37374,7415,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3748.1,"{\""seasonal\"": \""15%\""}",203861,0,"""Europe""" +2023-04-19,37375,3448,"[\""Monitor\"", \""Charger\""]",4472.88,{},95190,0,"""Europe""" +2023-01-04,37376,9716,"[\""Monitor\""]",3814.7,{},8644,1,"""Asia""" +2024-07-28,37377,8452,"[\""Headphones\"", \""Phone\""]",2287.19,"{\""seasonal\"": \""28%\""}",130405,0,"""Asia""" +2023-08-01,37378,1615,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1021.54,{},64450,1,"""Europe""" +2023-06-15,37379,1427,"[\""Headphones\""]",4518.65,"{\"": \""17%\""}",184993,0,"""Asia""" +2023-11-03,37380,4691,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2125.65,{},113387,1,"""South America""" +2023-06-30,37381,9538,"[\""Headphones\"", \""Phone\""]",2682.55,"{\""promo\"": \""9%\""}",249269,0,"""South America""" +2023-01-29,37382,9133,"[\""Headphones\"", \""Phone\""]",293.18,{},149031,0,"""Europe""" +2024-05-07,37383,9661,"[\""Tablet\""]",1050.84,"{\""promo\"": \""25%\""}",147089,0,"""South America""" +2023-03-21,37384,1641,"[\""Wireless Mouse\""]",421.68,"{\""promo\"": \""13%\""}",65286,0,"""North America""" +2023-01-13,37385,3714,"[\""Monitor\"", \""Wireless Mouse\""]",2627.45,{},184925,0,"""South America""" +2024-05-18,37386,4503,"[\""Headphones\""]",3233.06,{},158800,0,"""Europe""" +2023-10-11,37387,2028,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4015.96,{},163714,0,"""Africa""" +2024-10-22,37388,3400,"[\""Laptop\""]",4047.49,"{\""seasonal\"": \""7%\""}",219604,1,"""Africa""" +2023-09-19,37389,6550,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2177.0,"{\""promo\"": \""8%\""}",135359,1,"""South America""" +2023-07-21,37390,4170,"[\""Laptop\"", \""Tablet\""]",690.51,"{\""seasonal\"": \""16%\""}",119529,0,"""South America""" +2024-11-17,37391,1171,"[\""Keyboard\""]",660.98,"{\""seasonal\"": \""12%\""}",261272,1,"""Africa""" +2023-11-21,37392,4016,"[\""Keyboard\""]",4374.7,{},275144,0,"""South America""" +2023-07-04,37393,8208,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4864.1,"{\""promo\"": \""22%\""}",277290,0,"""North America""" +2023-02-09,37394,6309,"[\""Keyboard\""]",1958.35,"{\""loyalty\"": \""24%\""}",189336,0,"""North America""" +2023-01-31,37395,4561,"[\""Headphones\"", \""Wireless Mouse\""]",1389.84,{},80368,0,"""Africa""" +2024-10-15,37396,6018,"[\""Headphones\""]",392.06,{},55820,0,"""Asia""" +2023-04-10,37397,1135,"[\""Phone\"", \""Charger\""]",1662.59,"{\"": \""19%\""}",186263,1,"""Europe""" +2023-02-17,37398,9145,"[\""Keyboard\"", \""Tablet\""]",2041.8,"{\""seasonal\"": \""6%\""}",87479,1,"""Asia""" +2023-11-02,37399,4125,"[\""Laptop\"", \""Monitor\""]",986.61,"{\""promo\"": \""20%\""}",49702,1,"""South America""" +2024-11-19,37400,982,"[\""Headphones\"", \""Wireless Mouse\""]",290.7,"{\""seasonal\"": \""15%\""}",5925,0,"""Asia""" +2024-03-12,37401,5168,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3822.14,"{\""seasonal\"": \""17%\""}",70464,0,"""Europe""" +2024-08-04,37402,7837,"[\""Phone\"", \""Laptop\""]",253.53,{},61953,1,"""Europe""" +2023-08-10,37403,8432,"[\""Laptop\"", \""Charger\""]",2055.6,{},58117,1,"""Africa""" +2023-01-04,37404,6685,"[\""Laptop\"", \""Monitor\""]",1882.16,{},82692,1,"""Europe""" +2024-10-28,37405,743,"[\""Monitor\"", \""Tablet\""]",2107.96,"{\""loyalty\"": \""27%\""}",100156,1,"""North America""" +2023-07-18,37406,9164,"[\""Laptop\""]",477.98,{},16815,0,"""Asia""" +2023-08-04,37407,2927,"[\""Keyboard\""]",728.02,{},198163,0,"""Europe""" +2023-03-08,37408,5420,"[\""Keyboard\""]",2574.86,"{\"": \""15%\""}",31945,1,"""Asia""" +2023-11-26,37409,3358,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3629.27,"{\"": \""6%\""}",170626,0,"""South America""" +2024-05-03,37410,729,"[\""Phone\""]",1512.04,{},109974,0,"""Africa""" +2024-11-15,37411,3235,"[\""Tablet\"", \""Charger\""]",829.62,{},199754,0,"""Africa""" +2023-01-22,37412,5930,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1402.93,"{\""loyalty\"": \""25%\""}",78126,0,"""South America""" +2024-01-17,37413,9855,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2891.08,"{\""promo\"": \""7%\""}",199457,1,"""Europe""" +2024-12-22,37414,5815,"[\""Keyboard\"", \""Headphones\""]",913.23,"{\""seasonal\"": \""10%\""}",103188,0,"""South America""" +2024-08-10,37415,147,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4895.93,"{\"": \""19%\""}",171747,0,"""South America""" +2023-12-22,37416,780,"[\""Keyboard\"", \""Monitor\""]",1128.6,{},83441,0,"""Africa""" +2023-02-20,37417,4589,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3390.93,"{\""loyalty\"": \""13%\""}",72440,1,"""Europe""" +2024-01-05,37418,4268,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1965.27,{},62657,0,"""South America""" +2024-01-01,37419,3882,"[\""Charger\"", \""Wireless Mouse\""]",1978.75,"{\""loyalty\"": \""21%\""}",222829,1,"""Asia""" +2023-05-23,37420,9746,"[\""Wireless Mouse\""]",834.87,"{\""promo\"": \""30%\""}",149843,1,"""North America""" +2023-09-01,37421,5539,"[\""Laptop\""]",921.32,"{\"": \""26%\""}",198349,1,"""Africa""" +2023-02-17,37422,1546,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2278.29,{},206689,1,"""South America""" +2023-10-11,37423,5753,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3344.05,"{\""loyalty\"": \""10%\""}",64642,0,"""Africa""" +2023-07-14,37424,9680,"[\""Keyboard\""]",2374.96,{},24421,1,"""Europe""" +2023-12-13,37425,3994,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1198.06,{},112358,1,"""Africa""" +2024-06-29,37426,9923,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4884.74,{},48963,0,"""North America""" +2023-01-02,37427,231,"[\""Keyboard\""]",1624.72,{},159513,1,"""South America""" +2024-09-28,37428,8226,"[\""Headphones\""]",2213.97,{},91475,0,"""South America""" +2023-09-05,37429,7714,"[\""Headphones\"", \""Laptop\""]",733.76,"{\"": \""17%\""}",240510,0,"""Asia""" +2024-11-05,37430,8173,"[\""Keyboard\"", \""Tablet\""]",1014.52,"{\""loyalty\"": \""24%\""}",206705,1,"""Asia""" +2024-01-09,37431,2095,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1658.45,"{\""seasonal\"": \""23%\""}",213445,0,"""Africa""" +2024-06-23,37432,9215,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1301.9,"{\"": \""27%\""}",144395,1,"""Africa""" +2024-11-11,37433,7830,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3284.14,{},12052,1,"""Europe""" +2024-02-09,37434,443,"[\""Wireless Mouse\"", \""Charger\""]",4295.94,"{\""seasonal\"": \""10%\""}",154908,0,"""South America""" +2023-02-14,37435,1929,"[\""Laptop\"", \""Monitor\""]",3850.02,"{\"": \""24%\""}",232931,0,"""Europe""" +2023-08-08,37436,2623,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2392.52,"{\"": \""15%\""}",119285,0,"""South America""" +2024-12-16,37437,3917,"[\""Tablet\""]",3015.8,"{\""seasonal\"": \""20%\""}",210601,1,"""Europe""" +2023-12-04,37438,4706,"[\""Laptop\""]",274.9,{},47351,1,"""South America""" +2024-09-09,37439,3316,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3779.69,"{\""promo\"": \""25%\""}",209487,1,"""Asia""" +2024-07-22,37440,3227,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3151.67,"{\""promo\"": \""15%\""}",132023,0,"""South America""" +2024-03-14,37441,1565,"[\""Laptop\""]",1266.35,{},115178,1,"""South America""" +2024-07-05,37442,2675,"[\""Keyboard\""]",1244.28,"{\"": \""16%\""}",173483,0,"""North America""" +2023-05-05,37443,2603,"[\""Laptop\"", \""Phone\""]",2823.93,"{\"": \""21%\""}",180347,0,"""North America""" +2023-10-24,37444,1961,"[\""Headphones\""]",3255.29,"{\""seasonal\"": \""10%\""}",104675,1,"""South America""" +2024-03-24,37445,4381,"[\""Monitor\""]",1213.55,{},298260,0,"""North America""" +2023-05-06,37446,3007,"[\""Keyboard\"", \""Tablet\""]",2854.25,"{\""loyalty\"": \""29%\""}",142637,0,"""North America""" +2024-12-31,37447,6102,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2735.06,{},210257,0,"""South America""" +2024-03-02,37448,629,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",654.51,{},242212,1,"""Europe""" +2023-02-04,37449,4206,"[\""Laptop\""]",4655.02,"{\""promo\"": \""8%\""}",67656,0,"""Africa""" +2024-11-12,37450,9836,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4722.51,{},116793,1,"""Europe""" +2024-09-08,37451,5250,"[\""Laptop\"", \""Monitor\""]",3600.26,{},95486,0,"""Asia""" +2023-08-14,37452,5390,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",198.9,{},12423,1,"""Europe""" +2024-04-29,37453,6701,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4626.55,{},179462,0,"""South America""" +2023-05-24,37454,4827,"[\""Wireless Mouse\"", \""Tablet\""]",2275.9,{},9672,1,"""Europe""" +2024-09-20,37455,8680,"[\""Tablet\"", \""Laptop\""]",924.6,"{\""loyalty\"": \""27%\""}",145264,0,"""South America""" +2024-11-03,37456,1375,"[\""Phone\"", \""Keyboard\""]",2285.81,{},201323,1,"""Asia""" +2024-10-18,37457,9437,"[\""Tablet\""]",3707.53,{},186089,1,"""Asia""" +2023-09-26,37458,112,"[\""Charger\"", \""Headphones\""]",4555.24,{},157794,0,"""North America""" +2024-08-11,37459,5261,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3398.68,"{\"": \""23%\""}",100750,0,"""Asia""" +2024-09-11,37460,7654,"[\""Tablet\""]",3881.99,{},28090,0,"""Asia""" +2024-02-15,37461,7237,"[\""Headphones\""]",1586.99,{},204392,1,"""Europe""" +2024-05-10,37462,8428,"[\""Monitor\"", \""Laptop\""]",1693.79,"{\"": \""12%\""}",66527,1,"""Europe""" +2023-06-01,37463,5918,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",583.95,"{\""promo\"": \""20%\""}",246844,0,"""Africa""" +2024-07-05,37464,5879,"[\""Phone\""]",77.69,"{\""seasonal\"": \""9%\""}",217083,0,"""Europe""" +2024-02-15,37465,2156,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3120.8,{},206634,0,"""Europe""" +2023-06-26,37466,2025,"[\""Headphones\""]",740.85,"{\"": \""18%\""}",67894,1,"""South America""" +2024-03-07,37467,8224,"[\""Monitor\""]",2061.6,{},163199,1,"""Europe""" +2023-05-13,37468,3273,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3246.63,"{\""promo\"": \""27%\""}",62120,1,"""North America""" +2024-01-26,37469,4354,"[\""Monitor\""]",744.79,{},87093,1,"""Europe""" +2024-08-08,37470,2372,"[\""Charger\"", \""Phone\""]",56.68,"{\"": \""8%\""}",107040,0,"""North America""" +2024-06-10,37471,4165,"[\""Headphones\""]",141.32,{},38587,0,"""Asia""" +2023-03-18,37472,3561,"[\""Wireless Mouse\""]",2473.51,{},299522,0,"""Asia""" +2023-07-01,37473,3293,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2020.03,{},249689,1,"""Asia""" +2023-02-28,37474,2,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1274.49,{},278633,0,"""Asia""" +2024-05-24,37475,9889,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1301.92,{},118207,0,"""Europe""" +2023-03-08,37476,1499,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2135.74,{},274635,1,"""North America""" +2024-04-08,37477,9784,"[\""Monitor\"", \""Tablet\""]",2102.86,{},189094,0,"""Africa""" +2024-01-20,37478,3952,"[\""Phone\"", \""Headphones\""]",4406.88,{},27690,0,"""Asia""" +2024-10-26,37479,3951,"[\""Wireless Mouse\"", \""Monitor\""]",3721.94,"{\""loyalty\"": \""29%\""}",32230,0,"""Asia""" +2023-02-08,37480,5291,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",661.95,"{\""seasonal\"": \""25%\""}",226568,1,"""North America""" +2023-04-22,37481,6115,"[\""Laptop\"", \""Phone\""]",4427.21,"{\""promo\"": \""23%\""}",182046,0,"""Europe""" +2023-10-13,37482,8332,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3788.67,{},184353,0,"""North America""" +2024-09-10,37483,5656,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3368.25,{},163689,0,"""North America""" +2023-11-27,37484,3683,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3532.33,{},26214,1,"""Africa""" +2024-02-26,37485,8222,"[\""Headphones\"", \""Charger\""]",4787.4,"{\""promo\"": \""28%\""}",289401,0,"""Asia""" +2024-09-10,37486,4477,"[\""Monitor\""]",2573.15,"{\""loyalty\"": \""25%\""}",21710,0,"""Asia""" +2024-01-17,37487,636,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2196.03,"{\""loyalty\"": \""14%\""}",259224,0,"""South America""" +2023-12-26,37488,3733,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2292.73,"{\""seasonal\"": \""7%\""}",278612,0,"""South America""" +2023-10-12,37489,2325,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1056.55,{},101335,1,"""North America""" +2024-05-12,37490,6691,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3704.78,"{\""seasonal\"": \""9%\""}",238021,0,"""North America""" +2024-04-17,37491,1896,"[\""Headphones\""]",2440.27,{},73692,1,"""South America""" +2023-02-06,37492,9224,"[\""Charger\"", \""Headphones\""]",550.79,"{\"": \""19%\""}",283393,0,"""Europe""" +2023-09-20,37493,1985,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4501.77,"{\""loyalty\"": \""20%\""}",158544,1,"""Europe""" +2024-01-07,37494,1339,"[\""Headphones\""]",2087.66,{},286946,1,"""North America""" +2023-09-23,37495,2507,"[\""Wireless Mouse\""]",3768.02,{},156520,0,"""Africa""" +2024-09-11,37496,8427,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1015.14,{},295247,1,"""Africa""" +2024-10-29,37497,148,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",488.84,"{\""promo\"": \""6%\""}",161561,1,"""Africa""" +2023-02-13,37498,6627,"[\""Phone\"", \""Wireless Mouse\""]",56.79,{},119726,1,"""Africa""" +2024-12-28,37499,6490,"[\""Headphones\"", \""Tablet\""]",681.87,"{\""seasonal\"": \""17%\""}",38294,0,"""Europe""" +2024-12-12,37500,3156,"[\""Tablet\""]",2590.65,"{\""promo\"": \""28%\""}",182636,1,"""Asia""" +2024-04-07,37501,9764,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2676.13,"{\""loyalty\"": \""27%\""}",119528,1,"""Asia""" +2023-04-10,37502,5831,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",717.02,{},5395,1,"""Africa""" +2023-10-30,37503,1104,"[\""Headphones\""]",2118.22,{},102877,1,"""Europe""" +2023-06-28,37504,511,"[\""Monitor\"", \""Wireless Mouse\""]",338.46,"{\""seasonal\"": \""7%\""}",239536,1,"""North America""" +2024-01-25,37505,2109,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2648.26,{},189297,1,"""Africa""" +2024-09-09,37506,6196,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3514.9,{},149383,1,"""Africa""" +2024-11-03,37507,5653,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2350.46,"{\""seasonal\"": \""14%\""}",226070,1,"""Europe""" +2024-06-18,37508,6603,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3964.74,"{\""promo\"": \""28%\""}",219637,1,"""South America""" +2023-01-29,37509,7196,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",273.59,"{\""seasonal\"": \""22%\""}",282322,1,"""Africa""" +2023-09-11,37510,9286,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4690.37,{},293187,1,"""Europe""" +2023-01-30,37511,8807,"[\""Laptop\"", \""Phone\""]",3781.88,"{\""loyalty\"": \""9%\""}",88966,1,"""North America""" +2024-12-18,37512,1859,"[\""Wireless Mouse\"", \""Monitor\""]",4008.45,"{\""seasonal\"": \""17%\""}",142867,1,"""Europe""" +2024-02-24,37513,3009,"[\""Tablet\""]",4101.58,"{\"": \""10%\""}",200983,0,"""North America""" +2024-02-28,37514,171,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3601.14,"{\""loyalty\"": \""9%\""}",274094,1,"""North America""" +2023-07-27,37515,966,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4453.68,"{\""seasonal\"": \""30%\""}",198296,1,"""South America""" +2023-01-10,37516,7084,"[\""Laptop\""]",491.2,{},147531,0,"""Europe""" +2024-06-07,37517,2419,"[\""Laptop\"", \""Charger\""]",3085.75,"{\""loyalty\"": \""29%\""}",101444,0,"""Europe""" +2023-11-04,37518,6708,"[\""Wireless Mouse\""]",4556.0,{},292169,0,"""Europe""" +2024-10-09,37519,7649,"[\""Headphones\"", \""Keyboard\""]",3963.22,"{\""seasonal\"": \""12%\""}",49195,1,"""Europe""" +2024-10-28,37520,8020,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",490.86,"{\"": \""19%\""}",8543,0,"""North America""" +2023-08-09,37521,5571,"[\""Monitor\"", \""Headphones\""]",4049.0,"{\""seasonal\"": \""8%\""}",110825,1,"""Africa""" +2024-10-20,37522,8764,"[\""Monitor\""]",3529.79,"{\""loyalty\"": \""16%\""}",134804,1,"""South America""" +2023-11-27,37523,1248,"[\""Headphones\""]",975.12,"{\""promo\"": \""17%\""}",95792,1,"""Asia""" +2023-05-12,37524,4771,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2839.48,"{\""loyalty\"": \""27%\""}",43549,1,"""Africa""" +2024-10-02,37525,2414,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",625.31,"{\""seasonal\"": \""12%\""}",119688,0,"""Asia""" +2023-11-23,37526,4012,"[\""Keyboard\""]",2465.2,{},143083,1,"""Europe""" +2024-04-16,37527,2350,"[\""Keyboard\""]",4702.83,"{\""loyalty\"": \""29%\""}",248738,1,"""Europe""" +2024-01-23,37528,2470,"[\""Headphones\"", \""Monitor\""]",2716.09,{},83744,1,"""Africa""" +2024-09-11,37529,5030,"[\""Charger\""]",2583.49,{},167382,1,"""Asia""" +2023-01-17,37530,8332,"[\""Headphones\"", \""Keyboard\""]",3087.59,"{\""seasonal\"": \""11%\""}",75467,0,"""North America""" +2024-12-03,37531,3072,"[\""Phone\"", \""Monitor\""]",1173.35,"{\""seasonal\"": \""13%\""}",174697,0,"""North America""" +2023-03-21,37532,1899,"[\""Phone\""]",2584.03,"{\""seasonal\"": \""14%\""}",51999,0,"""South America""" +2023-06-17,37533,7026,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4561.41,{},139340,0,"""Europe""" +2023-04-01,37534,6273,"[\""Phone\""]",622.1,"{\"": \""10%\""}",79364,1,"""Europe""" +2024-01-16,37535,4564,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1824.33,{},189656,0,"""South America""" +2024-07-01,37536,5006,"[\""Wireless Mouse\""]",2432.3,{},181750,0,"""Europe""" +2023-07-03,37537,2546,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2290.13,"{\""promo\"": \""22%\""}",72003,1,"""North America""" +2024-09-17,37538,2582,"[\""Keyboard\""]",4929.42,{},298469,1,"""Europe""" +2024-05-20,37539,7088,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",408.88,{},7806,0,"""Africa""" +2023-12-28,37540,3667,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4078.51,{},291322,0,"""South America""" +2024-04-24,37541,3773,"[\""Monitor\"", \""Laptop\""]",3677.74,{},184017,1,"""Africa""" +2024-03-12,37542,5716,"[\""Tablet\""]",3254.88,"{\"": \""23%\""}",39385,0,"""Africa""" +2023-01-15,37543,3249,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1275.83,"{\"": \""10%\""}",284096,1,"""Africa""" +2024-04-12,37544,1992,"[\""Laptop\""]",3701.7,{},53562,1,"""North America""" +2024-05-28,37545,7668,"[\""Laptop\""]",299.44,{},77648,1,"""Europe""" +2024-02-04,37546,8315,"[\""Phone\""]",225.12,"{\""loyalty\"": \""8%\""}",75622,0,"""Asia""" +2023-03-09,37547,2321,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1140.61,{},138429,0,"""North America""" +2023-07-20,37548,7035,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",913.44,{},208957,0,"""Europe""" +2023-06-05,37549,378,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3900.99,{},120264,1,"""South America""" +2023-01-01,37550,7742,"[\""Charger\""]",4084.73,"{\""promo\"": \""15%\""}",242854,1,"""North America""" +2024-02-17,37551,6540,"[\""Monitor\"", \""Charger\""]",708.08,"{\"": \""7%\""}",105159,1,"""Europe""" +2023-07-04,37552,2726,"[\""Phone\""]",1257.88,{},131393,1,"""Africa""" +2024-01-08,37553,841,"[\""Keyboard\""]",916.92,{},200585,1,"""Europe""" +2023-04-01,37554,1431,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2661.75,{},45934,0,"""Asia""" +2023-09-28,37555,3361,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3164.21,"{\""seasonal\"": \""15%\""}",247383,0,"""North America""" +2024-05-10,37556,6353,"[\""Keyboard\"", \""Charger\""]",1449.43,{},241953,0,"""Africa""" +2024-10-11,37557,1053,"[\""Laptop\"", \""Tablet\""]",2270.49,{},281319,1,"""North America""" +2024-07-22,37558,5431,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2108.79,{},18626,0,"""Africa""" +2023-09-27,37559,2903,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4339.41,"{\"": \""12%\""}",191008,1,"""North America""" +2023-06-08,37560,2887,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2162.41,"{\""promo\"": \""16%\""}",185938,1,"""North America""" +2024-08-06,37561,4895,"[\""Phone\"", \""Keyboard\""]",3653.84,{},198700,0,"""Asia""" +2023-08-26,37562,8696,"[\""Tablet\""]",2211.14,"{\""loyalty\"": \""18%\""}",278787,0,"""Asia""" +2024-03-28,37563,1364,"[\""Laptop\""]",1083.84,{},257572,0,"""North America""" +2023-02-24,37564,7043,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3944.02,"{\""loyalty\"": \""7%\""}",297656,1,"""South America""" +2024-08-21,37565,4299,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3836.94,{},263218,0,"""North America""" +2024-10-27,37566,4013,"[\""Headphones\""]",417.88,"{\""promo\"": \""6%\""}",295574,0,"""Africa""" +2024-03-08,37567,8917,"[\""Laptop\""]",2110.64,"{\""loyalty\"": \""19%\""}",273735,0,"""South America""" +2023-01-15,37568,4165,"[\""Tablet\""]",1260.19,{},87952,0,"""Africa""" +2024-05-18,37569,7573,"[\""Tablet\""]",2081.85,{},228300,0,"""North America""" +2023-01-30,37570,7648,"[\""Wireless Mouse\"", \""Charger\""]",2631.4,"{\""seasonal\"": \""8%\""}",138765,1,"""Europe""" +2024-02-15,37571,2643,"[\""Keyboard\"", \""Phone\""]",4142.41,{},149187,0,"""Africa""" +2024-02-11,37572,7392,"[\""Tablet\""]",3800.27,{},35531,1,"""South America""" +2024-01-26,37573,2732,"[\""Monitor\""]",464.72,"{\"": \""30%\""}",195410,0,"""Europe""" +2023-06-08,37574,9537,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",971.28,"{\"": \""15%\""}",48732,0,"""Africa""" +2024-05-09,37575,7968,"[\""Tablet\""]",435.36,{},296401,0,"""Asia""" +2023-02-02,37576,9905,"[\""Wireless Mouse\""]",4293.39,{},162624,0,"""Europe""" +2023-09-11,37577,1429,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1807.88,{},195880,1,"""Africa""" +2024-05-12,37578,4569,"[\""Headphones\""]",1269.16,"{\"": \""20%\""}",230192,1,"""South America""" +2024-01-01,37579,7009,"[\""Laptop\"", \""Headphones\""]",1178.11,"{\""loyalty\"": \""24%\""}",67303,1,"""South America""" +2024-04-06,37580,5543,"[\""Headphones\"", \""Keyboard\""]",534.09,"{\""seasonal\"": \""16%\""}",156428,0,"""Asia""" +2023-11-14,37581,1980,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4501.2,{},244372,1,"""North America""" +2024-02-08,37582,3955,"[\""Tablet\"", \""Wireless Mouse\""]",3145.32,"{\""seasonal\"": \""23%\""}",69903,0,"""North America""" +2023-04-12,37583,9717,"[\""Phone\""]",1437.86,"{\""promo\"": \""19%\""}",55306,0,"""Asia""" +2023-06-27,37584,2353,"[\""Wireless Mouse\"", \""Charger\""]",1363.93,{},222963,1,"""Asia""" +2024-09-01,37585,2252,"[\""Wireless Mouse\"", \""Tablet\""]",3398.12,"{\""promo\"": \""16%\""}",106809,0,"""South America""" +2024-02-23,37586,3703,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1928.55,{},46988,0,"""South America""" +2023-03-31,37587,488,"[\""Phone\""]",4215.49,{},149860,0,"""Asia""" +2024-06-24,37588,7389,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3138.95,"{\""promo\"": \""26%\""}",294298,0,"""North America""" +2023-05-05,37589,1433,"[\""Headphones\""]",3162.87,{},202423,0,"""Asia""" +2024-09-18,37590,8401,"[\""Tablet\""]",1753.39,"{\""promo\"": \""8%\""}",252696,0,"""North America""" +2024-07-16,37591,5572,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4912.45,"{\""loyalty\"": \""27%\""}",79393,1,"""North America""" +2024-10-15,37592,2516,"[\""Tablet\"", \""Monitor\""]",496.59,"{\"": \""20%\""}",196350,1,"""Europe""" +2024-07-28,37593,4304,"[\""Tablet\"", \""Keyboard\""]",4086.35,"{\""seasonal\"": \""22%\""}",88018,0,"""Europe""" +2023-09-17,37594,1527,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3599.03,"{\"": \""14%\""}",104239,1,"""South America""" +2023-01-15,37595,1500,"[\""Wireless Mouse\"", \""Tablet\""]",3850.87,"{\""loyalty\"": \""8%\""}",176900,1,"""Africa""" +2023-09-22,37596,4325,"[\""Charger\""]",2171.94,{},86090,0,"""North America""" +2024-11-03,37597,1366,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2336.86,"{\""seasonal\"": \""30%\""}",158765,0,"""Europe""" +2024-12-01,37598,9220,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2438.2,"{\"": \""29%\""}",200158,1,"""Africa""" +2024-07-09,37599,6985,"[\""Headphones\"", \""Charger\""]",373.29,"{\""loyalty\"": \""12%\""}",17942,0,"""Europe""" +2023-07-12,37600,9963,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2695.74,"{\""loyalty\"": \""29%\""}",166760,0,"""Europe""" +2024-03-08,37601,3944,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",381.47,{},285206,0,"""Asia""" +2023-07-21,37602,6934,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1325.69,{},91630,1,"""Africa""" +2024-05-28,37603,1104,"[\""Monitor\""]",2377.82,"{\"": \""20%\""}",101500,0,"""Africa""" +2023-04-13,37604,461,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2637.51,"{\""seasonal\"": \""7%\""}",55820,1,"""Europe""" +2023-08-07,37605,2562,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1037.43,"{\""loyalty\"": \""14%\""}",62635,1,"""Asia""" +2023-02-03,37606,1342,"[\""Tablet\""]",1916.7,{},100005,0,"""Africa""" +2024-06-30,37607,5812,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4861.47,"{\""loyalty\"": \""13%\""}",101030,1,"""Asia""" +2024-03-16,37608,1262,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4999.33,"{\"": \""24%\""}",210955,0,"""South America""" +2024-11-06,37609,2734,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3770.99,"{\""promo\"": \""26%\""}",158710,1,"""Europe""" +2024-05-30,37610,6307,"[\""Charger\"", \""Phone\""]",4627.09,"{\"": \""5%\""}",138090,1,"""Asia""" +2023-06-05,37611,1846,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",205.52,{},150177,0,"""Africa""" +2024-09-01,37612,1314,"[\""Keyboard\"", \""Phone\""]",3590.14,{},31640,0,"""Asia""" +2023-01-07,37613,5795,"[\""Tablet\""]",1195.98,"{\"": \""16%\""}",19073,1,"""South America""" +2023-10-27,37614,8798,"[\""Laptop\""]",1873.77,"{\""loyalty\"": \""10%\""}",246165,1,"""South America""" +2024-10-28,37615,3686,"[\""Laptop\"", \""Headphones\""]",2159.88,"{\"": \""23%\""}",145219,0,"""Africa""" +2024-08-03,37616,8024,"[\""Monitor\"", \""Charger\""]",2480.62,"{\""promo\"": \""11%\""}",5897,0,"""Europe""" +2024-08-17,37617,810,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2428.53,"{\"": \""19%\""}",129322,1,"""South America""" +2023-04-12,37618,616,"[\""Laptop\"", \""Keyboard\""]",4148.25,{},181532,0,"""Europe""" +2024-04-20,37619,647,"[\""Wireless Mouse\"", \""Laptop\""]",218.52,"{\""seasonal\"": \""5%\""}",144683,1,"""North America""" +2024-02-19,37620,6432,"[\""Monitor\""]",640.0,"{\""promo\"": \""24%\""}",198735,0,"""Europe""" +2024-07-16,37621,2750,"[\""Laptop\"", \""Tablet\""]",4643.78,{},254877,1,"""North America""" +2023-06-22,37622,7028,"[\""Headphones\"", \""Charger\""]",1844.63,{},98039,0,"""South America""" +2023-02-01,37623,1323,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",290.09,{},11779,0,"""Africa""" +2024-06-30,37624,6106,"[\""Laptop\"", \""Monitor\""]",742.89,{},187392,1,"""Europe""" +2024-04-01,37625,6109,"[\""Headphones\""]",3966.19,{},274669,1,"""Europe""" +2023-04-16,37626,6698,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3387.39,{},144851,0,"""Europe""" +2023-01-05,37627,773,"[\""Headphones\"", \""Charger\""]",3964.06,"{\""seasonal\"": \""5%\""}",161829,0,"""South America""" +2023-12-23,37628,2698,"[\""Keyboard\"", \""Laptop\""]",4784.51,{},136045,1,"""South America""" +2023-04-03,37629,2384,"[\""Tablet\"", \""Wireless Mouse\""]",3521.76,{},235203,0,"""Asia""" +2024-01-31,37630,9349,"[\""Tablet\""]",3763.29,"{\""seasonal\"": \""29%\""}",163303,0,"""South America""" +2023-01-17,37631,7770,"[\""Laptop\"", \""Headphones\""]",2562.44,"{\""loyalty\"": \""21%\""}",238569,0,"""Europe""" +2023-05-07,37632,2146,"[\""Tablet\""]",3084.89,{},164876,0,"""Africa""" +2023-05-22,37633,2407,"[\""Wireless Mouse\""]",2551.87,"{\"": \""21%\""}",183968,0,"""South America""" +2024-02-03,37634,2520,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1318.87,"{\""loyalty\"": \""21%\""}",286314,1,"""Asia""" +2023-10-19,37635,7654,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",202.22,{},21029,0,"""Europe""" +2024-11-02,37636,4658,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",682.71,"{\""seasonal\"": \""17%\""}",272110,0,"""Europe""" +2023-12-18,37637,9466,"[\""Headphones\""]",122.39,"{\""seasonal\"": \""30%\""}",145428,0,"""Africa""" +2024-05-13,37638,5533,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2923.49,"{\""promo\"": \""23%\""}",44402,0,"""Africa""" +2024-11-22,37639,4371,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4856.66,"{\""seasonal\"": \""18%\""}",56231,1,"""South America""" +2023-06-13,37640,9465,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",565.21,"{\""seasonal\"": \""24%\""}",172515,1,"""Asia""" +2023-11-30,37641,4493,"[\""Laptop\""]",1483.16,{},15536,1,"""Africa""" +2023-11-02,37642,2385,"[\""Headphones\"", \""Phone\""]",259.78,"{\""seasonal\"": \""6%\""}",194811,0,"""Asia""" +2024-07-03,37643,2116,"[\""Charger\""]",566.79,"{\"": \""23%\""}",128627,1,"""Asia""" +2023-11-28,37644,185,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3316.72,{},156412,1,"""Europe""" +2024-04-27,37645,2080,"[\""Laptop\""]",2177.74,{},140369,0,"""Asia""" +2023-03-07,37646,9378,"[\""Monitor\"", \""Keyboard\""]",1680.27,"{\""seasonal\"": \""9%\""}",36329,1,"""South America""" +2024-01-01,37647,8725,"[\""Laptop\""]",850.29,"{\"": \""9%\""}",88481,0,"""South America""" +2024-09-11,37648,7645,"[\""Wireless Mouse\""]",1011.75,"{\""promo\"": \""22%\""}",41388,0,"""Europe""" +2023-09-02,37649,4589,"[\""Headphones\""]",3180.9,"{\""loyalty\"": \""26%\""}",145011,0,"""South America""" +2023-03-13,37650,4912,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3186.11,{},20873,0,"""South America""" +2023-10-03,37651,1565,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4436.13,"{\""loyalty\"": \""22%\""}",22213,0,"""Asia""" +2023-07-29,37652,1290,"[\""Tablet\""]",4837.5,"{\""loyalty\"": \""7%\""}",46465,1,"""Africa""" +2024-06-23,37653,496,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",475.03,{},8408,0,"""Asia""" +2023-04-13,37654,6753,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2694.92,{},241158,1,"""Africa""" +2024-01-18,37655,6568,"[\""Charger\"", \""Wireless Mouse\""]",3743.76,{},56524,0,"""South America""" +2024-12-05,37656,7611,"[\""Charger\"", \""Headphones\""]",2812.57,"{\"": \""23%\""}",185653,1,"""Africa""" +2024-09-09,37657,8788,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1617.4,{},286353,0,"""South America""" +2023-11-01,37658,177,"[\""Keyboard\""]",383.26,"{\""loyalty\"": \""14%\""}",204096,0,"""South America""" +2023-03-10,37659,7268,"[\""Tablet\"", \""Wireless Mouse\""]",2113.89,{},255316,1,"""South America""" +2023-06-03,37660,6176,"[\""Keyboard\"", \""Wireless Mouse\""]",2730.74,"{\"": \""27%\""}",137645,1,"""South America""" +2023-04-21,37661,5226,"[\""Phone\"", \""Charger\""]",4865.27,"{\""loyalty\"": \""25%\""}",37596,1,"""Europe""" +2024-02-29,37662,6712,"[\""Laptop\""]",2823.2,"{\""promo\"": \""13%\""}",121771,1,"""Asia""" +2023-06-23,37663,6305,"[\""Tablet\""]",2765.85,{},267481,0,"""North America""" +2024-01-16,37664,5,"[\""Headphones\"", \""Monitor\""]",4194.47,{},254419,0,"""Africa""" +2024-09-03,37665,8291,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3330.74,{},296090,1,"""South America""" +2024-11-14,37666,2153,"[\""Headphones\""]",188.39,{},182864,1,"""South America""" +2024-10-21,37667,969,"[\""Laptop\""]",1444.02,"{\"": \""23%\""}",219612,0,"""North America""" +2023-05-28,37668,3498,"[\""Laptop\""]",4326.18,{},16482,0,"""North America""" +2024-01-19,37669,1783,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2455.87,"{\""loyalty\"": \""12%\""}",91724,1,"""Europe""" +2023-12-06,37670,1657,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4316.44,{},108122,1,"""Europe""" +2023-10-25,37671,8972,"[\""Wireless Mouse\""]",1321.0,"{\""loyalty\"": \""26%\""}",286467,0,"""South America""" +2023-04-16,37672,2174,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3974.06,{},131818,0,"""South America""" +2024-09-07,37673,3939,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1417.47,{},283803,0,"""Asia""" +2023-02-13,37674,9067,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1060.08,{},111085,1,"""Africa""" +2024-12-08,37675,7068,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",988.59,"{\""loyalty\"": \""20%\""}",37681,0,"""South America""" +2023-09-15,37676,5630,"[\""Tablet\"", \""Laptop\""]",3152.59,{},246259,1,"""South America""" +2023-12-08,37677,8351,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",445.99,"{\""seasonal\"": \""5%\""}",234804,0,"""Asia""" +2023-02-15,37678,872,"[\""Wireless Mouse\""]",4179.73,{},267092,0,"""South America""" +2024-03-15,37679,1959,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1558.3,"{\""seasonal\"": \""10%\""}",196455,1,"""North America""" +2023-05-16,37680,4196,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2585.14,{},17058,0,"""North America""" +2023-01-08,37681,4937,"[\""Keyboard\"", \""Wireless Mouse\""]",2120.04,{},83179,0,"""Asia""" +2023-03-16,37682,1527,"[\""Headphones\"", \""Keyboard\""]",1793.0,{},260745,0,"""Europe""" +2024-01-31,37683,8201,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4166.34,"{\"": \""25%\""}",236255,0,"""North America""" +2024-12-25,37684,567,"[\""Headphones\""]",4296.85,"{\""seasonal\"": \""19%\""}",210270,1,"""Europe""" +2023-03-14,37685,3030,"[\""Keyboard\""]",4237.87,"{\""loyalty\"": \""28%\""}",152452,1,"""Africa""" +2023-05-03,37686,1963,"[\""Keyboard\"", \""Tablet\""]",4075.34,"{\"": \""16%\""}",23722,0,"""South America""" +2024-09-24,37687,6483,"[\""Laptop\""]",1530.68,{},180675,0,"""Africa""" +2023-11-22,37688,4174,"[\""Headphones\""]",1715.96,"{\""seasonal\"": \""29%\""}",87403,0,"""Europe""" +2024-09-07,37689,2343,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2469.76,{},248441,1,"""Asia""" +2024-12-16,37690,5523,"[\""Phone\"", \""Laptop\""]",2707.49,"{\""loyalty\"": \""14%\""}",33984,1,"""Asia""" +2023-02-27,37691,9220,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2693.42,"{\""loyalty\"": \""18%\""}",81732,0,"""Africa""" +2024-01-20,37692,5807,"[\""Monitor\""]",3895.21,"{\""promo\"": \""23%\""}",26328,0,"""Europe""" +2023-02-19,37693,8897,"[\""Keyboard\""]",4879.98,"{\"": \""5%\""}",167775,0,"""North America""" +2023-02-25,37694,726,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2224.93,{},109113,1,"""North America""" +2023-03-11,37695,7584,"[\""Charger\"", \""Wireless Mouse\""]",4764.54,"{\""loyalty\"": \""19%\""}",221770,0,"""South America""" +2024-09-24,37696,4703,"[\""Phone\""]",225.09,"{\"": \""14%\""}",182444,0,"""Asia""" +2024-08-02,37697,3803,"[\""Charger\""]",2799.77,{},187517,0,"""Europe""" +2023-08-29,37698,2345,"[\""Laptop\"", \""Charger\""]",4120.22,"{\"": \""9%\""}",270958,0,"""North America""" +2024-11-29,37699,8839,"[\""Monitor\"", \""Wireless Mouse\""]",764.97,"{\""promo\"": \""17%\""}",183666,0,"""Africa""" +2024-07-22,37700,4880,"[\""Tablet\""]",3209.71,{},166125,0,"""Asia""" +2024-11-03,37701,8138,"[\""Keyboard\"", \""Tablet\""]",2811.26,{},72466,1,"""South America""" +2024-08-19,37702,2869,"[\""Phone\"", \""Laptop\""]",1779.44,"{\""loyalty\"": \""15%\""}",94633,0,"""South America""" +2024-12-28,37703,4443,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4221.65,"{\""promo\"": \""9%\""}",220937,0,"""North America""" +2024-03-28,37704,5815,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2896.69,{},202183,0,"""Africa""" +2024-10-31,37705,1480,"[\""Charger\"", \""Laptop\""]",3140.26,{},238356,0,"""Africa""" +2023-11-12,37706,2109,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",718.17,{},271481,1,"""North America""" +2023-02-18,37707,101,"[\""Monitor\""]",3108.7,"{\""loyalty\"": \""6%\""}",164865,0,"""Africa""" +2024-04-02,37708,7972,"[\""Phone\"", \""Keyboard\""]",2595.76,{},107839,0,"""Europe""" +2024-03-13,37709,5716,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2377.48,{},121345,0,"""South America""" +2023-09-06,37710,251,"[\""Tablet\"", \""Charger\""]",2772.98,{},138066,1,"""North America""" +2024-07-18,37711,3763,"[\""Headphones\"", \""Tablet\""]",289.02,{},106538,1,"""Africa""" +2024-12-31,37712,7809,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",958.88,"{\"": \""17%\""}",123494,1,"""North America""" +2024-11-23,37713,5183,"[\""Tablet\"", \""Wireless Mouse\""]",3292.39,"{\""seasonal\"": \""21%\""}",46377,0,"""Europe""" +2023-12-10,37714,3186,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4631.74,"{\""seasonal\"": \""30%\""}",297280,1,"""Africa""" +2023-01-07,37715,3388,"[\""Headphones\""]",153.69,{},274418,1,"""North America""" +2024-12-12,37716,6857,"[\""Laptop\"", \""Monitor\""]",832.34,{},104208,0,"""South America""" +2023-12-19,37717,2189,"[\""Tablet\"", \""Charger\""]",2968.01,"{\""promo\"": \""17%\""}",161216,1,"""North America""" +2023-07-26,37718,5376,"[\""Monitor\"", \""Laptop\""]",1893.51,{},226349,1,"""Asia""" +2024-11-27,37719,8384,"[\""Monitor\""]",3885.69,"{\""seasonal\"": \""27%\""}",245338,0,"""Africa""" +2023-03-13,37720,8272,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4664.2,{},151777,1,"""North America""" +2024-09-13,37721,964,"[\""Headphones\""]",444.65,"{\"": \""28%\""}",283644,1,"""North America""" +2024-08-29,37722,6098,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2500.36,"{\""loyalty\"": \""26%\""}",182355,0,"""Africa""" +2023-07-22,37723,4195,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2382.49,"{\"": \""10%\""}",38389,1,"""Africa""" +2024-09-18,37724,2910,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2015.65,"{\""promo\"": \""8%\""}",264431,1,"""North America""" +2023-09-21,37725,6702,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3506.75,{},191501,0,"""Europe""" +2024-11-06,37726,2850,"[\""Keyboard\"", \""Monitor\""]",3671.45,"{\"": \""18%\""}",292096,0,"""South America""" +2023-11-11,37727,1409,"[\""Phone\""]",4811.06,{},133315,0,"""Asia""" +2023-05-17,37728,3992,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",473.12,"{\""promo\"": \""21%\""}",125349,0,"""North America""" +2024-04-03,37729,4581,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1604.74,"{\""promo\"": \""29%\""}",57074,1,"""Africa""" +2024-10-03,37730,9600,"[\""Charger\""]",516.38,"{\""promo\"": \""9%\""}",73399,1,"""South America""" +2024-02-21,37731,8560,"[\""Tablet\"", \""Monitor\""]",3301.12,"{\""promo\"": \""25%\""}",37086,1,"""Asia""" +2024-01-19,37732,8166,"[\""Tablet\"", \""Phone\""]",479.9,"{\""promo\"": \""8%\""}",93116,1,"""North America""" +2023-02-06,37733,9960,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4750.83,"{\""promo\"": \""15%\""}",270749,0,"""Europe""" +2023-05-01,37734,7758,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3331.26,"{\""promo\"": \""18%\""}",282024,1,"""Europe""" +2024-09-29,37735,3207,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4615.27,"{\""seasonal\"": \""10%\""}",194586,0,"""Asia""" +2023-07-06,37736,8293,"[\""Headphones\"", \""Tablet\""]",1418.26,"{\""promo\"": \""25%\""}",208397,0,"""North America""" +2024-07-08,37737,8060,"[\""Keyboard\""]",2435.34,{},279640,0,"""South America""" +2023-10-28,37738,7332,"[\""Phone\""]",3276.34,{},94062,1,"""South America""" +2024-04-29,37739,77,"[\""Tablet\"", \""Wireless Mouse\""]",3041.96,{},262398,1,"""South America""" +2023-08-13,37740,1656,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1601.57,"{\"": \""30%\""}",265723,1,"""North America""" +2023-10-19,37741,2532,"[\""Wireless Mouse\"", \""Headphones\""]",1671.65,{},83102,1,"""Europe""" +2024-04-26,37742,4258,"[\""Headphones\"", \""Wireless Mouse\""]",3602.01,"{\""promo\"": \""9%\""}",190876,0,"""South America""" +2023-09-10,37743,2338,"[\""Laptop\"", \""Charger\""]",200.41,{},286948,0,"""North America""" +2023-09-08,37744,8038,"[\""Monitor\"", \""Headphones\""]",2531.86,"{\""loyalty\"": \""27%\""}",101566,1,"""Europe""" +2024-10-07,37745,5432,"[\""Monitor\"", \""Tablet\""]",1246.92,{},42160,0,"""North America""" +2024-10-27,37746,335,"[\""Tablet\"", \""Charger\""]",1142.82,"{\""loyalty\"": \""12%\""}",298441,1,"""North America""" +2024-11-20,37747,5807,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3633.95,{},77279,0,"""Asia""" +2024-04-09,37748,1767,"[\""Monitor\"", \""Phone\""]",2971.84,"{\""loyalty\"": \""7%\""}",97904,0,"""Asia""" +2023-10-02,37749,2459,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3393.75,"{\""loyalty\"": \""6%\""}",39320,1,"""Europe""" +2023-05-29,37750,2784,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4800.6,"{\""promo\"": \""16%\""}",173967,0,"""Europe""" +2023-10-18,37751,8896,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",646.03,"{\""seasonal\"": \""24%\""}",105208,1,"""Europe""" +2024-03-20,37752,723,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3458.12,"{\""promo\"": \""8%\""}",156121,0,"""South America""" +2024-02-29,37753,3103,"[\""Charger\""]",1288.52,"{\"": \""29%\""}",281815,0,"""Africa""" +2024-03-27,37754,3214,"[\""Laptop\"", \""Phone\"", \""Charger\""]",156.25,"{\""loyalty\"": \""21%\""}",43219,1,"""Asia""" +2023-05-07,37755,1520,"[\""Monitor\"", \""Keyboard\""]",1976.71,{},183086,1,"""Asia""" +2023-01-19,37756,8641,"[\""Tablet\"", \""Wireless Mouse\""]",2312.23,"{\""promo\"": \""20%\""}",282522,0,"""South America""" +2024-10-22,37757,1573,"[\""Headphones\"", \""Monitor\""]",1943.34,"{\""promo\"": \""14%\""}",50807,1,"""Asia""" +2023-09-24,37758,1005,"[\""Wireless Mouse\"", \""Tablet\""]",1747.55,"{\""seasonal\"": \""30%\""}",52523,1,"""Africa""" +2024-09-12,37759,7778,"[\""Charger\"", \""Tablet\""]",1888.31,"{\""loyalty\"": \""11%\""}",195289,0,"""Asia""" +2023-12-15,37760,9233,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4159.48,{},299246,1,"""South America""" +2023-07-30,37761,6302,"[\""Monitor\"", \""Keyboard\""]",3752.2,{},148677,1,"""Europe""" +2024-07-15,37762,3793,"[\""Headphones\"", \""Monitor\""]",787.53,{},178364,0,"""Europe""" +2024-08-13,37763,167,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4112.9,"{\""loyalty\"": \""20%\""}",41474,0,"""Asia""" +2023-10-17,37764,2836,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1413.58,"{\""loyalty\"": \""12%\""}",265120,1,"""North America""" +2024-12-01,37765,9657,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3172.1,{},64029,0,"""North America""" +2024-03-05,37766,7919,"[\""Monitor\"", \""Headphones\""]",2162.54,{},182422,0,"""Africa""" +2023-03-21,37767,5299,"[\""Phone\""]",3965.76,"{\""seasonal\"": \""5%\""}",201251,0,"""Asia""" +2024-05-21,37768,5960,"[\""Laptop\"", \""Wireless Mouse\""]",4783.15,{},286252,0,"""Asia""" +2023-03-20,37769,1038,"[\""Headphones\""]",1624.63,"{\""loyalty\"": \""13%\""}",70208,1,"""Africa""" +2023-01-09,37770,8792,"[\""Headphones\"", \""Tablet\""]",1136.88,{},27742,1,"""North America""" +2023-11-04,37771,2495,"[\""Wireless Mouse\"", \""Tablet\""]",4355.83,{},194391,0,"""North America""" +2024-02-16,37772,664,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2098.32,"{\"": \""20%\""}",27436,1,"""North America""" +2023-02-12,37773,7241,"[\""Phone\"", \""Laptop\""]",953.05,{},299271,1,"""Asia""" +2024-10-14,37774,4086,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1520.3,{},230677,0,"""Asia""" +2024-12-30,37775,2408,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1158.27,{},19656,1,"""Africa""" +2023-01-20,37776,5877,"[\""Monitor\"", \""Keyboard\""]",4983.89,"{\""seasonal\"": \""23%\""}",9163,1,"""South America""" +2023-05-04,37777,8149,"[\""Laptop\"", \""Charger\""]",1316.97,{},239233,0,"""Africa""" +2024-02-11,37778,6469,"[\""Laptop\""]",3268.48,{},37472,0,"""Africa""" +2023-08-06,37779,6280,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",306.67,"{\""promo\"": \""11%\""}",60564,0,"""Asia""" +2023-12-13,37780,3193,"[\""Tablet\""]",4237.68,"{\""seasonal\"": \""5%\""}",213977,0,"""Africa""" +2024-08-18,37781,7218,"[\""Keyboard\"", \""Phone\""]",1370.74,"{\""promo\"": \""22%\""}",189150,0,"""Africa""" +2023-06-04,37782,1479,"[\""Charger\"", \""Phone\""]",4563.09,"{\""seasonal\"": \""28%\""}",106514,1,"""Europe""" +2023-06-21,37783,9631,"[\""Headphones\""]",4755.5,{},168351,1,"""North America""" +2024-09-27,37784,3114,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3356.41,{},62871,0,"""Europe""" +2023-11-25,37785,9335,"[\""Headphones\"", \""Tablet\""]",2991.28,"{\""promo\"": \""29%\""}",253494,0,"""South America""" +2024-05-09,37786,9633,"[\""Phone\""]",2891.64,{},126937,0,"""Africa""" +2023-11-19,37787,8885,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",404.24,{},180343,0,"""Europe""" +2024-04-19,37788,6405,"[\""Wireless Mouse\"", \""Tablet\""]",4397.05,"{\"": \""23%\""}",56805,0,"""Africa""" +2023-01-07,37789,623,"[\""Keyboard\""]",2572.26,"{\"": \""13%\""}",77000,1,"""Asia""" +2024-12-20,37790,4773,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",423.98,"{\"": \""13%\""}",242127,0,"""South America""" +2024-08-20,37791,2567,"[\""Tablet\"", \""Laptop\""]",3396.43,"{\""seasonal\"": \""14%\""}",281417,1,"""Europe""" +2024-02-23,37792,1366,"[\""Keyboard\""]",1182.43,{},238976,1,"""Africa""" +2023-04-13,37793,3958,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2871.85,"{\""seasonal\"": \""5%\""}",244315,1,"""North America""" +2024-04-11,37794,4806,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1289.31,"{\"": \""12%\""}",189082,0,"""Africa""" +2023-02-03,37795,5562,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",621.95,"{\""loyalty\"": \""23%\""}",52717,0,"""North America""" +2024-03-12,37796,3611,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2530.08,{},2290,1,"""Asia""" +2023-04-12,37797,7945,"[\""Headphones\"", \""Tablet\""]",3106.35,"{\""seasonal\"": \""16%\""}",139981,0,"""South America""" +2023-03-05,37798,1757,"[\""Laptop\"", \""Monitor\""]",4229.86,{},7191,1,"""Africa""" +2024-04-29,37799,7143,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2576.95,{},199557,0,"""Europe""" +2024-05-21,37800,633,"[\""Wireless Mouse\""]",386.57,"{\"": \""11%\""}",52399,0,"""Africa""" +2024-12-18,37801,9117,"[\""Tablet\"", \""Phone\""]",1046.93,{},217867,1,"""North America""" +2024-08-17,37802,1337,"[\""Monitor\""]",360.64,{},14900,0,"""Asia""" +2023-12-14,37803,5000,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1294.43,{},167064,0,"""Africa""" +2024-12-31,37804,417,"[\""Tablet\""]",4937.58,{},120891,1,"""Asia""" +2024-12-13,37805,9697,"[\""Keyboard\"", \""Wireless Mouse\""]",838.72,{},125226,0,"""North America""" +2023-03-26,37806,642,"[\""Wireless Mouse\"", \""Headphones\""]",410.95,"{\""seasonal\"": \""15%\""}",132534,1,"""Europe""" +2023-09-23,37807,2930,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3675.22,"{\""loyalty\"": \""26%\""}",130699,1,"""Asia""" +2023-12-10,37808,129,"[\""Laptop\"", \""Tablet\""]",2384.17,{},232585,1,"""South America""" +2023-02-09,37809,6577,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4143.95,"{\""promo\"": \""19%\""}",81885,1,"""North America""" +2023-11-12,37810,2722,"[\""Wireless Mouse\""]",867.43,{},40541,1,"""Asia""" +2024-07-17,37811,1081,"[\""Headphones\"", \""Phone\""]",974.99,{},18562,1,"""Asia""" +2024-07-14,37812,612,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2810.17,"{\""promo\"": \""10%\""}",181239,0,"""Europe""" +2024-02-18,37813,5052,"[\""Phone\""]",3967.38,{},173960,0,"""Asia""" +2024-10-06,37814,564,"[\""Wireless Mouse\"", \""Charger\""]",2979.33,"{\"": \""13%\""}",43979,0,"""Africa""" +2024-03-14,37815,7639,"[\""Headphones\""]",90.1,{},288896,0,"""Africa""" +2023-07-16,37816,5989,"[\""Phone\"", \""Laptop\""]",2186.19,"{\""loyalty\"": \""29%\""}",185021,1,"""North America""" +2024-09-08,37817,2900,"[\""Keyboard\""]",4282.35,"{\""promo\"": \""11%\""}",163760,0,"""Asia""" +2023-06-17,37818,8888,"[\""Tablet\""]",3753.24,{},151156,1,"""North America""" +2024-12-27,37819,4076,"[\""Phone\""]",4632.09,{},81851,1,"""Africa""" +2024-06-24,37820,6391,"[\""Charger\""]",919.06,{},236651,1,"""South America""" +2024-09-01,37821,4864,"[\""Headphones\""]",3415.58,"{\""promo\"": \""29%\""}",173701,1,"""North America""" +2024-12-26,37822,8560,"[\""Laptop\""]",2631.1,"{\""promo\"": \""11%\""}",113731,0,"""South America""" +2024-02-11,37823,4570,"[\""Laptop\""]",1074.18,{},169553,1,"""Europe""" +2024-09-17,37824,9978,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2040.67,"{\""promo\"": \""14%\""}",118298,1,"""South America""" +2024-11-06,37825,9395,"[\""Phone\""]",250.18,"{\""loyalty\"": \""16%\""}",282145,1,"""North America""" +2023-11-10,37826,9098,"[\""Headphones\"", \""Keyboard\""]",2047.53,"{\""loyalty\"": \""7%\""}",249868,0,"""Asia""" +2024-09-21,37827,6599,"[\""Wireless Mouse\"", \""Monitor\""]",4777.46,"{\""promo\"": \""23%\""}",240893,1,"""Asia""" +2023-12-31,37828,2461,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3169.64,{},214950,0,"""South America""" +2024-12-02,37829,4713,"[\""Headphones\""]",4215.81,{},102962,0,"""South America""" +2024-06-20,37830,3585,"[\""Laptop\""]",99.48,{},46283,1,"""Europe""" +2023-12-09,37831,2013,"[\""Charger\"", \""Wireless Mouse\""]",4066.22,"{\"": \""30%\""}",35741,1,"""Europe""" +2023-03-07,37832,6808,"[\""Monitor\""]",4761.33,{},102315,0,"""Asia""" +2023-11-26,37833,6376,"[\""Charger\"", \""Headphones\""]",3021.56,{},11952,0,"""North America""" +2024-06-02,37834,3791,"[\""Charger\"", \""Tablet\""]",4299.62,{},96660,0,"""North America""" +2024-05-02,37835,8756,"[\""Monitor\"", \""Keyboard\""]",1753.48,"{\""promo\"": \""16%\""}",188999,1,"""North America""" +2023-08-29,37836,1293,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2188.74,{},20063,0,"""South America""" +2024-01-28,37837,3715,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3159.13,{},196711,1,"""North America""" +2023-04-24,37838,2639,"[\""Laptop\""]",4260.29,"{\""promo\"": \""8%\""}",75808,0,"""North America""" +2024-05-04,37839,2008,"[\""Charger\""]",1971.82,{},130213,1,"""Asia""" +2024-05-27,37840,1001,"[\""Charger\"", \""Keyboard\""]",1732.64,"{\""loyalty\"": \""6%\""}",27379,0,"""Asia""" +2023-06-08,37841,4334,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3100.24,"{\""promo\"": \""22%\""}",62952,0,"""Asia""" +2023-12-24,37842,9447,"[\""Keyboard\""]",3558.39,{},288787,1,"""South America""" +2023-03-16,37843,8433,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3285.17,{},242347,0,"""Europe""" +2024-08-01,37844,1928,"[\""Phone\"", \""Tablet\""]",1925.01,{},27898,0,"""North America""" +2023-04-15,37845,7233,"[\""Tablet\"", \""Wireless Mouse\""]",1125.11,{},108380,1,"""Europe""" +2023-02-25,37846,1787,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4762.64,{},86294,1,"""Africa""" +2024-11-29,37847,1466,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4332.0,"{\""loyalty\"": \""26%\""}",174777,0,"""North America""" +2023-01-30,37848,6699,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4246.95,"{\""seasonal\"": \""5%\""}",251159,0,"""South America""" +2024-08-19,37849,5043,"[\""Keyboard\""]",1004.98,"{\""loyalty\"": \""7%\""}",145739,0,"""Africa""" +2023-07-08,37850,5096,"[\""Monitor\""]",2979.51,{},209401,0,"""North America""" +2023-10-11,37851,4476,"[\""Headphones\"", \""Wireless Mouse\""]",4462.23,{},81008,1,"""Asia""" +2024-05-05,37852,298,"[\""Laptop\""]",3605.64,"{\""loyalty\"": \""29%\""}",199241,0,"""North America""" +2024-07-21,37853,2265,"[\""Charger\"", \""Keyboard\""]",186.98,"{\""seasonal\"": \""25%\""}",92189,1,"""North America""" +2024-07-15,37854,5245,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2960.08,{},180398,1,"""Africa""" +2023-02-15,37855,7439,"[\""Keyboard\"", \""Laptop\""]",1194.43,{},141150,0,"""Africa""" +2024-06-30,37856,5326,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",189.64,"{\""seasonal\"": \""23%\""}",111357,0,"""Africa""" +2024-07-27,37857,4727,"[\""Tablet\"", \""Monitor\""]",3083.03,"{\""promo\"": \""11%\""}",199923,0,"""Europe""" +2024-09-29,37858,8164,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2143.57,"{\""seasonal\"": \""24%\""}",109326,1,"""Africa""" +2024-01-18,37859,1754,"[\""Charger\""]",2693.31,"{\"": \""12%\""}",244463,1,"""Africa""" +2024-01-17,37860,4703,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3627.07,"{\""seasonal\"": \""6%\""}",83361,1,"""North America""" +2023-11-27,37861,5511,"[\""Tablet\"", \""Wireless Mouse\""]",3945.69,{},110857,0,"""North America""" +2023-09-27,37862,7281,"[\""Tablet\"", \""Keyboard\""]",213.53,{},282395,0,"""Africa""" +2024-07-07,37863,1221,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2528.0,"{\""loyalty\"": \""11%\""}",171407,0,"""Europe""" +2023-11-17,37864,9948,"[\""Monitor\""]",3677.05,{},1539,0,"""North America""" +2024-07-17,37865,2700,"[\""Monitor\""]",4579.27,{},253288,0,"""South America""" +2023-02-04,37866,3368,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2986.01,{},238527,0,"""Asia""" +2024-06-24,37867,1205,"[\""Tablet\"", \""Charger\""]",4193.44,"{\""loyalty\"": \""15%\""}",73693,0,"""South America""" +2024-05-06,37868,3016,"[\""Monitor\""]",1876.86,"{\""promo\"": \""26%\""}",121647,1,"""North America""" +2024-03-20,37869,4312,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4877.59,"{\"": \""7%\""}",164045,1,"""Asia""" +2024-04-19,37870,6913,"[\""Laptop\"", \""Keyboard\""]",4103.5,{},215623,0,"""Asia""" +2023-04-03,37871,9036,"[\""Charger\""]",2367.96,"{\""loyalty\"": \""9%\""}",21904,0,"""Asia""" +2023-02-08,37872,5989,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2753.14,{},299589,1,"""Asia""" +2024-05-11,37873,6409,"[\""Phone\""]",2919.44,{},210806,0,"""South America""" +2023-03-27,37874,2034,"[\""Keyboard\""]",3888.24,"{\""seasonal\"": \""19%\""}",149436,0,"""Africa""" +2023-09-17,37875,253,"[\""Phone\""]",2636.73,"{\""seasonal\"": \""16%\""}",287581,0,"""North America""" +2023-02-20,37876,541,"[\""Laptop\""]",4760.81,{},247213,1,"""Asia""" +2024-04-25,37877,9909,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1001.29,{},167461,0,"""Africa""" +2024-03-26,37878,8950,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4442.98,"{\""seasonal\"": \""27%\""}",144798,0,"""Europe""" +2024-02-10,37879,9085,"[\""Headphones\""]",875.73,{},299953,1,"""Asia""" +2023-06-05,37880,8337,"[\""Laptop\""]",3009.7,"{\""promo\"": \""17%\""}",120286,0,"""Asia""" +2023-09-13,37881,5390,"[\""Charger\""]",636.16,"{\""loyalty\"": \""15%\""}",298994,0,"""Asia""" +2023-03-05,37882,9044,"[\""Wireless Mouse\"", \""Tablet\""]",796.98,"{\"": \""7%\""}",139486,0,"""Europe""" +2023-01-18,37883,1499,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",734.32,"{\""loyalty\"": \""17%\""}",208384,0,"""North America""" +2024-06-07,37884,8017,"[\""Wireless Mouse\"", \""Charger\""]",1926.2,"{\""seasonal\"": \""6%\""}",54485,1,"""Europe""" +2023-12-15,37885,1327,"[\""Phone\""]",278.51,{},159772,0,"""North America""" +2023-01-08,37886,4647,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",89.55,"{\""promo\"": \""16%\""}",298708,0,"""North America""" +2023-11-04,37887,4290,"[\""Keyboard\""]",1285.07,{},147702,1,"""North America""" +2024-08-13,37888,3756,"[\""Keyboard\""]",664.67,{},183169,0,"""Asia""" +2024-03-19,37889,2042,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3507.11,{},265790,1,"""North America""" +2023-06-21,37890,5984,"[\""Charger\""]",2906.82,"{\""promo\"": \""5%\""}",141712,0,"""Asia""" +2023-10-26,37891,651,"[\""Tablet\"", \""Charger\""]",2333.38,"{\""loyalty\"": \""6%\""}",34228,0,"""Asia""" +2023-05-17,37892,4841,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4931.84,{},74731,1,"""South America""" +2024-10-30,37893,2801,"[\""Keyboard\""]",4105.13,"{\""loyalty\"": \""12%\""}",219460,1,"""Africa""" +2024-12-13,37894,1839,"[\""Charger\"", \""Wireless Mouse\""]",3954.85,"{\""promo\"": \""17%\""}",220226,1,"""North America""" +2023-04-02,37895,1795,"[\""Keyboard\""]",176.68,{},179557,1,"""North America""" +2024-09-02,37896,4228,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2800.61,"{\""loyalty\"": \""19%\""}",60931,0,"""Asia""" +2023-08-24,37897,631,"[\""Monitor\"", \""Phone\""]",674.08,"{\"": \""18%\""}",155910,1,"""South America""" +2024-12-20,37898,6275,"[\""Headphones\""]",3131.82,"{\""loyalty\"": \""25%\""}",15647,1,"""North America""" +2024-12-04,37899,3133,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3138.44,{},213263,1,"""South America""" +2024-04-03,37900,2021,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3656.58,"{\""loyalty\"": \""10%\""}",108220,0,"""South America""" +2024-09-20,37901,3165,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4332.86,{},70051,0,"""South America""" +2023-10-16,37902,5486,"[\""Wireless Mouse\"", \""Tablet\""]",2395.63,{},112727,1,"""North America""" +2023-01-20,37903,5726,"[\""Tablet\"", \""Headphones\""]",1144.04,{},6321,1,"""North America""" +2024-01-20,37904,1141,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3740.36,{},22239,0,"""North America""" +2024-01-31,37905,2080,"[\""Headphones\""]",630.05,{},260532,1,"""Africa""" +2023-03-21,37906,9196,"[\""Headphones\""]",3500.45,"{\""seasonal\"": \""9%\""}",281424,1,"""Europe""" +2024-05-05,37907,5984,"[\""Monitor\""]",3818.89,"{\""promo\"": \""29%\""}",174079,1,"""Africa""" +2024-11-16,37908,930,"[\""Headphones\""]",2687.35,"{\"": \""9%\""}",115624,1,"""North America""" +2024-01-11,37909,3721,"[\""Keyboard\"", \""Charger\""]",4680.15,"{\"": \""21%\""}",263941,1,"""North America""" +2024-04-19,37910,5332,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1639.28,"{\"": \""22%\""}",280326,1,"""North America""" +2023-01-29,37911,7627,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1995.67,"{\""loyalty\"": \""18%\""}",51193,0,"""Asia""" +2024-11-07,37912,4331,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2891.73,{},244751,0,"""Asia""" +2024-09-07,37913,1437,"[\""Phone\"", \""Monitor\""]",218.38,{},256083,0,"""South America""" +2023-04-30,37914,8961,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",605.86,{},284038,1,"""South America""" +2023-09-18,37915,9850,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4821.98,{},121792,1,"""Asia""" +2024-12-24,37916,7403,"[\""Keyboard\"", \""Phone\""]",3741.87,"{\""seasonal\"": \""9%\""}",221045,0,"""Africa""" +2023-05-30,37917,871,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",919.83,{},256853,1,"""Europe""" +2024-11-01,37918,5711,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1371.21,"{\""seasonal\"": \""9%\""}",221679,1,"""Asia""" +2023-12-13,37919,3134,"[\""Phone\"", \""Tablet\""]",229.22,{},154006,0,"""Asia""" +2024-09-21,37920,4477,"[\""Charger\"", \""Phone\""]",2911.49,"{\""promo\"": \""29%\""}",241196,0,"""South America""" +2024-04-01,37921,5567,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2258.01,"{\""seasonal\"": \""23%\""}",143723,1,"""Asia""" +2024-03-18,37922,8108,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",912.82,"{\""loyalty\"": \""8%\""}",291103,0,"""South America""" +2024-10-22,37923,4480,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4747.95,"{\""loyalty\"": \""22%\""}",225303,1,"""North America""" +2024-04-17,37924,6259,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3253.52,"{\""loyalty\"": \""7%\""}",257432,1,"""Europe""" +2024-03-03,37925,28,"[\""Tablet\"", \""Headphones\""]",4702.23,"{\""promo\"": \""25%\""}",15802,0,"""South America""" +2023-12-29,37926,1358,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2222.3,"{\""promo\"": \""5%\""}",42849,1,"""North America""" +2024-06-02,37927,4852,"[\""Wireless Mouse\""]",3871.8,"{\"": \""24%\""}",298822,0,"""Africa""" +2023-08-02,37928,9245,"[\""Laptop\""]",4049.18,{},292758,1,"""Europe""" +2024-07-14,37929,4038,"[\""Charger\"", \""Phone\""]",3677.67,"{\""promo\"": \""12%\""}",40133,1,"""Africa""" +2023-11-02,37930,9480,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3590.72,{},93057,0,"""South America""" +2024-09-15,37931,9659,"[\""Laptop\"", \""Phone\""]",849.84,{},105521,0,"""Africa""" +2024-12-28,37932,7955,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4365.96,"{\""promo\"": \""11%\""}",175263,0,"""North America""" +2024-10-14,37933,374,"[\""Charger\"", \""Laptop\""]",4964.94,{},225403,1,"""Africa""" +2023-05-19,37934,7601,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1201.13,"{\""seasonal\"": \""8%\""}",251352,1,"""South America""" +2023-08-16,37935,4064,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2654.86,{},124912,1,"""Asia""" +2023-06-08,37936,8320,"[\""Charger\"", \""Tablet\""]",3793.57,"{\"": \""22%\""}",56026,1,"""Africa""" +2024-02-10,37937,9133,"[\""Tablet\""]",548.99,{},255629,0,"""Africa""" +2024-02-11,37938,979,"[\""Keyboard\""]",1571.54,"{\""loyalty\"": \""18%\""}",267613,0,"""Asia""" +2023-10-13,37939,194,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2683.83,{},72960,1,"""Europe""" +2023-12-02,37940,2124,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",526.37,{},27207,0,"""North America""" +2023-08-03,37941,3959,"[\""Charger\"", \""Laptop\""]",2699.92,"{\""seasonal\"": \""24%\""}",138344,0,"""Asia""" +2024-12-23,37942,5163,"[\""Phone\"", \""Laptop\""]",4409.89,"{\""promo\"": \""17%\""}",138466,1,"""Asia""" +2024-09-17,37943,5866,"[\""Phone\""]",4212.76,{},263179,0,"""South America""" +2024-12-08,37944,2793,"[\""Phone\"", \""Charger\""]",3228.06,{},167874,1,"""Europe""" +2023-01-25,37945,5733,"[\""Wireless Mouse\""]",1247.26,{},25778,1,"""Asia""" +2023-06-28,37946,1475,"[\""Monitor\""]",4390.94,{},57927,1,"""South America""" +2024-04-08,37947,770,"[\""Headphones\"", \""Keyboard\""]",733.33,{},84642,0,"""Europe""" +2023-04-17,37948,9606,"[\""Monitor\"", \""Wireless Mouse\""]",521.0,"{\""loyalty\"": \""28%\""}",92130,1,"""North America""" +2024-05-14,37949,4797,"[\""Laptop\""]",1891.99,{},152048,0,"""Europe""" +2023-02-11,37950,6114,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1184.61,"{\"": \""16%\""}",26675,1,"""Europe""" +2023-11-25,37951,7137,"[\""Keyboard\""]",704.64,"{\"": \""10%\""}",75309,0,"""North America""" +2024-09-29,37952,5139,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",553.86,"{\"": \""24%\""}",65389,0,"""North America""" +2024-01-18,37953,9508,"[\""Tablet\""]",2662.81,{},68590,1,"""North America""" +2024-06-27,37954,9257,"[\""Keyboard\"", \""Laptop\""]",3976.87,"{\""promo\"": \""14%\""}",125519,0,"""Asia""" +2023-06-25,37955,7096,"[\""Monitor\""]",1805.93,{},274383,1,"""Asia""" +2023-09-05,37956,8514,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2326.28,{},268415,0,"""Africa""" +2023-10-21,37957,5427,"[\""Keyboard\"", \""Tablet\""]",2809.78,{},77653,1,"""Asia""" +2023-04-19,37958,1817,"[\""Charger\"", \""Headphones\""]",4954.2,{},146854,0,"""South America""" +2024-11-13,37959,8286,"[\""Laptop\"", \""Charger\""]",1281.81,{},173364,1,"""Europe""" +2023-06-02,37960,8329,"[\""Charger\"", \""Laptop\""]",3722.14,{},165726,1,"""Asia""" +2024-06-30,37961,7763,"[\""Charger\""]",1521.5,{},273166,1,"""Africa""" +2024-05-02,37962,6875,"[\""Monitor\"", \""Headphones\""]",3365.51,{},204358,0,"""Asia""" +2023-03-12,37963,402,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",998.52,{},53832,1,"""Asia""" +2024-10-08,37964,881,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4006.77,"{\""promo\"": \""22%\""}",37863,1,"""Europe""" +2023-06-23,37965,3671,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3296.12,{},2908,1,"""Africa""" +2024-11-01,37966,4170,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",464.16,"{\""promo\"": \""22%\""}",298601,1,"""Europe""" +2023-12-06,37967,9736,"[\""Wireless Mouse\""]",1132.29,{},185437,0,"""South America""" +2024-02-26,37968,4035,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1204.82,"{\""loyalty\"": \""22%\""}",140580,1,"""Asia""" +2023-10-21,37969,4443,"[\""Charger\""]",2745.26,{},36373,0,"""Asia""" +2023-08-24,37970,4029,"[\""Tablet\""]",218.63,{},160838,0,"""North America""" +2023-04-15,37971,3887,"[\""Laptop\"", \""Charger\""]",4723.46,{},96896,1,"""Europe""" +2024-09-06,37972,968,"[\""Keyboard\""]",2786.05,{},60942,0,"""Asia""" +2024-05-16,37973,9749,"[\""Phone\""]",2109.73,"{\"": \""6%\""}",199711,1,"""North America""" +2024-04-18,37974,5442,"[\""Wireless Mouse\""]",2171.39,{},119440,1,"""South America""" +2023-07-25,37975,1803,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2724.21,"{\"": \""12%\""}",155413,1,"""North America""" +2023-08-02,37976,3017,"[\""Phone\"", \""Charger\"", \""Headphones\""]",293.85,"{\""promo\"": \""19%\""}",259673,1,"""South America""" +2023-06-13,37977,2462,"[\""Charger\""]",3023.99,{},109807,1,"""Africa""" +2024-09-09,37978,6365,"[\""Tablet\""]",2786.64,{},146567,0,"""North America""" +2024-10-18,37979,2503,"[\""Laptop\"", \""Wireless Mouse\""]",3782.31,"{\""seasonal\"": \""5%\""}",234931,0,"""Africa""" +2023-11-03,37980,3461,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4723.42,{},15503,0,"""South America""" +2024-09-25,37981,2784,"[\""Keyboard\"", \""Laptop\""]",411.97,"{\""promo\"": \""21%\""}",256800,1,"""South America""" +2024-01-07,37982,5319,"[\""Tablet\""]",4602.69,{},119184,0,"""South America""" +2023-10-17,37983,8672,"[\""Laptop\""]",568.0,"{\"": \""25%\""}",115247,0,"""Europe""" +2024-10-20,37984,6659,"[\""Wireless Mouse\"", \""Phone\""]",2539.27,"{\""seasonal\"": \""25%\""}",96228,0,"""South America""" +2024-06-22,37985,4041,"[\""Keyboard\""]",120.63,"{\""seasonal\"": \""17%\""}",81644,0,"""Europe""" +2024-06-30,37986,2842,"[\""Monitor\"", \""Charger\""]",4914.0,{},278632,1,"""Europe""" +2024-07-31,37987,9730,"[\""Wireless Mouse\""]",1955.01,"{\""seasonal\"": \""29%\""}",105716,1,"""Africa""" +2024-04-14,37988,7231,"[\""Laptop\"", \""Wireless Mouse\""]",4199.48,"{\""seasonal\"": \""28%\""}",46400,0,"""Africa""" +2023-05-02,37989,1851,"[\""Tablet\""]",2285.06,"{\""promo\"": \""16%\""}",180272,0,"""South America""" +2024-12-02,37990,4592,"[\""Laptop\"", \""Phone\""]",2630.92,"{\""loyalty\"": \""15%\""}",95548,1,"""Asia""" +2023-03-11,37991,2264,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1793.5,"{\"": \""27%\""}",264941,1,"""Africa""" +2023-09-14,37992,780,"[\""Phone\"", \""Monitor\""]",301.93,"{\"": \""6%\""}",134429,0,"""South America""" +2024-10-13,37993,6842,"[\""Headphones\"", \""Tablet\""]",4906.14,"{\""seasonal\"": \""28%\""}",248491,1,"""Europe""" +2023-12-31,37994,8827,"[\""Keyboard\""]",2865.16,{},228210,0,"""North America""" +2023-07-07,37995,2160,"[\""Tablet\"", \""Headphones\""]",3657.36,"{\""loyalty\"": \""6%\""}",22892,0,"""Africa""" +2023-09-13,37996,9959,"[\""Monitor\"", \""Laptop\""]",4082.24,{},260694,0,"""Europe""" +2024-09-15,37997,6925,"[\""Wireless Mouse\"", \""Tablet\""]",2476.33,"{\""promo\"": \""11%\""}",205966,0,"""Europe""" +2024-02-28,37998,8421,"[\""Tablet\"", \""Keyboard\""]",4514.78,{},126592,0,"""Africa""" +2024-11-08,37999,5014,"[\""Keyboard\""]",1767.46,{},285180,1,"""Asia""" +2024-02-01,38000,8970,"[\""Charger\""]",622.92,"{\""promo\"": \""13%\""}",150429,0,"""South America""" +2023-02-17,38001,8780,"[\""Charger\""]",2807.76,"{\""loyalty\"": \""12%\""}",99924,1,"""North America""" +2024-05-31,38002,4762,"[\""Charger\""]",4631.93,{},84104,1,"""North America""" +2024-09-06,38003,5817,"[\""Laptop\"", \""Wireless Mouse\""]",2515.31,"{\"": \""19%\""}",292452,1,"""South America""" +2024-06-30,38004,3,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3066.94,{},30066,0,"""Asia""" +2024-12-12,38005,205,"[\""Keyboard\""]",2851.09,{},286781,1,"""North America""" +2024-03-03,38006,7925,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",434.23,{},122408,0,"""South America""" +2024-06-05,38007,9557,"[\""Monitor\"", \""Headphones\""]",838.94,"{\""loyalty\"": \""8%\""}",229668,1,"""Europe""" +2023-07-20,38008,3212,"[\""Tablet\""]",1320.49,"{\""seasonal\"": \""20%\""}",223878,1,"""Asia""" +2024-08-31,38009,964,"[\""Charger\"", \""Laptop\"", \""Phone\""]",424.65,"{\""loyalty\"": \""18%\""}",113507,1,"""Asia""" +2023-07-01,38010,859,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1197.88,"{\""loyalty\"": \""22%\""}",228891,0,"""South America""" +2024-09-23,38011,8290,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",799.91,"{\""loyalty\"": \""9%\""}",231394,0,"""Africa""" +2023-12-24,38012,3652,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",243.43,{},123689,1,"""Africa""" +2023-07-07,38013,2473,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1334.43,{},39943,1,"""Africa""" +2023-03-23,38014,1344,"[\""Phone\"", \""Monitor\""]",4189.32,"{\""loyalty\"": \""6%\""}",272195,0,"""Europe""" +2023-11-12,38015,9650,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2675.79,"{\""seasonal\"": \""24%\""}",239575,1,"""Africa""" +2024-05-16,38016,3694,"[\""Keyboard\"", \""Wireless Mouse\""]",3422.98,"{\""loyalty\"": \""20%\""}",64311,1,"""Asia""" +2024-12-23,38017,86,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4145.34,"{\"": \""13%\""}",276821,1,"""Europe""" +2024-01-03,38018,3177,"[\""Wireless Mouse\"", \""Laptop\""]",540.03,"{\""loyalty\"": \""19%\""}",180796,1,"""Europe""" +2024-12-31,38019,1192,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",602.19,"{\""seasonal\"": \""15%\""}",104956,0,"""Africa""" +2023-04-04,38020,6708,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3418.34,"{\""loyalty\"": \""5%\""}",61681,0,"""Asia""" +2023-01-10,38021,7498,"[\""Wireless Mouse\""]",2450.59,{},94159,1,"""South America""" +2023-11-18,38022,2086,"[\""Phone\""]",2332.24,{},245486,0,"""Europe""" +2024-04-09,38023,743,"[\""Charger\"", \""Laptop\""]",1750.59,{},114087,0,"""South America""" +2023-03-26,38024,7336,"[\""Headphones\""]",1056.29,"{\""seasonal\"": \""13%\""}",278750,1,"""Asia""" +2024-09-10,38025,616,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2500.95,"{\""promo\"": \""29%\""}",253944,1,"""Asia""" +2024-07-10,38026,7746,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4125.64,{},115214,1,"""Africa""" +2023-04-02,38027,6194,"[\""Monitor\""]",4646.52,"{\"": \""5%\""}",14209,0,"""Europe""" +2023-12-17,38028,2757,"[\""Wireless Mouse\""]",1623.56,{},192884,0,"""Asia""" +2024-03-29,38029,3102,"[\""Headphones\"", \""Charger\""]",2576.23,{},208030,0,"""Africa""" +2024-06-24,38030,9174,"[\""Charger\""]",2532.66,{},191938,0,"""Europe""" +2024-02-25,38031,8251,"[\""Phone\"", \""Charger\""]",283.39,{},23685,1,"""Asia""" +2023-10-07,38032,6669,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1132.62,"{\""seasonal\"": \""23%\""}",115482,1,"""South America""" +2023-10-10,38033,8413,"[\""Headphones\""]",1333.19,"{\""loyalty\"": \""20%\""}",107508,0,"""North America""" +2023-09-24,38034,9172,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",232.4,{},246788,1,"""Africa""" +2024-02-28,38035,3113,"[\""Wireless Mouse\""]",3287.27,{},83039,0,"""North America""" +2024-04-17,38036,2978,"[\""Phone\"", \""Laptop\""]",505.75,{},282078,1,"""North America""" +2024-03-13,38037,9401,"[\""Charger\""]",3084.86,"{\""seasonal\"": \""13%\""}",134574,1,"""Africa""" +2023-05-05,38038,7700,"[\""Keyboard\""]",2968.35,{},71900,0,"""North America""" +2024-11-22,38039,1617,"[\""Phone\"", \""Headphones\"", \""Charger\""]",407.5,{},42781,1,"""South America""" +2024-03-20,38040,3622,"[\""Charger\""]",4050.8,{},82929,1,"""Africa""" +2024-08-02,38041,3690,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1435.22,{},226177,1,"""Europe""" +2024-06-02,38042,1093,"[\""Tablet\""]",3767.6,{},121688,1,"""Africa""" +2024-03-28,38043,4719,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",610.64,"{\"": \""20%\""}",15136,0,"""Europe""" +2023-10-12,38044,9525,"[\""Phone\""]",3836.41,{},6816,0,"""Europe""" +2024-09-21,38045,3370,"[\""Headphones\"", \""Laptop\""]",3265.51,{},244509,1,"""Africa""" +2023-02-05,38046,1826,"[\""Laptop\""]",895.43,"{\""promo\"": \""14%\""}",108660,1,"""South America""" +2024-07-14,38047,6848,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",106.06,"{\"": \""30%\""}",29030,0,"""Asia""" +2024-09-27,38048,346,"[\""Keyboard\""]",4067.93,"{\""loyalty\"": \""21%\""}",272282,1,"""Africa""" +2024-04-08,38049,1232,"[\""Phone\""]",2427.06,{},134524,0,"""South America""" +2023-07-20,38050,1405,"[\""Laptop\""]",4193.57,"{\"": \""24%\""}",176327,1,"""North America""" +2024-11-15,38051,6373,"[\""Headphones\""]",1146.82,"{\""loyalty\"": \""23%\""}",150297,1,"""Asia""" +2023-12-26,38052,9462,"[\""Laptop\"", \""Headphones\""]",935.52,"{\""loyalty\"": \""14%\""}",207229,1,"""Asia""" +2023-08-07,38053,8102,"[\""Charger\""]",223.4,{},29317,0,"""Africa""" +2023-08-27,38054,9715,"[\""Monitor\""]",1698.18,"{\"": \""28%\""}",211520,1,"""Europe""" +2023-11-08,38055,4837,"[\""Laptop\"", \""Charger\""]",233.47,{},260084,0,"""Asia""" +2024-02-22,38056,6898,"[\""Tablet\"", \""Monitor\""]",4892.42,{},17199,1,"""North America""" +2023-03-02,38057,3881,"[\""Tablet\""]",603.29,"{\""loyalty\"": \""12%\""}",133463,0,"""South America""" +2024-08-28,38058,8117,"[\""Keyboard\"", \""Laptop\""]",635.08,{},138933,1,"""South America""" +2023-07-31,38059,9860,"[\""Monitor\"", \""Charger\""]",2758.0,"{\""seasonal\"": \""19%\""}",194980,0,"""Asia""" +2024-02-05,38060,7877,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1232.47,"{\""seasonal\"": \""9%\""}",35986,1,"""Europe""" +2024-05-29,38061,8217,"[\""Headphones\""]",3716.59,{},239314,0,"""Europe""" +2023-03-20,38062,6237,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3278.42,{},273050,0,"""Asia""" +2023-02-10,38063,9280,"[\""Headphones\""]",2072.22,{},32381,1,"""South America""" +2024-01-13,38064,8787,"[\""Charger\"", \""Phone\""]",1432.07,"{\""promo\"": \""13%\""}",84333,1,"""Africa""" +2024-11-30,38065,6106,"[\""Wireless Mouse\""]",4030.42,{},258034,0,"""South America""" +2023-09-16,38066,2177,"[\""Tablet\""]",191.36,{},265641,1,"""North America""" +2023-02-24,38067,4249,"[\""Charger\"", \""Tablet\"", \""Phone\""]",729.06,"{\""promo\"": \""23%\""}",32470,1,"""North America""" +2024-05-07,38068,1473,"[\""Tablet\""]",1588.35,"{\"": \""22%\""}",109674,1,"""North America""" +2023-12-23,38069,1224,"[\""Laptop\"", \""Keyboard\""]",314.46,"{\""loyalty\"": \""16%\""}",186460,0,"""Europe""" +2023-07-27,38070,6839,"[\""Tablet\"", \""Phone\""]",3329.78,"{\""loyalty\"": \""16%\""}",4835,0,"""Europe""" +2024-09-30,38071,3044,"[\""Headphones\""]",1547.22,{},95785,0,"""North America""" +2024-11-11,38072,842,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3226.26,"{\"": \""5%\""}",165180,0,"""Europe""" +2024-08-01,38073,207,"[\""Laptop\""]",4097.85,{},210360,0,"""Africa""" +2024-10-16,38074,3828,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1136.33,"{\""seasonal\"": \""5%\""}",270591,1,"""South America""" +2024-12-09,38075,4029,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2735.53,{},224803,1,"""Europe""" +2024-10-12,38076,7546,"[\""Keyboard\""]",877.41,"{\""loyalty\"": \""28%\""}",182218,0,"""Europe""" +2024-11-04,38077,8408,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4119.26,"{\""loyalty\"": \""26%\""}",10469,0,"""Asia""" +2023-12-30,38078,9011,"[\""Tablet\"", \""Headphones\""]",2311.12,"{\""promo\"": \""22%\""}",218745,1,"""Africa""" +2024-05-31,38079,4329,"[\""Charger\"", \""Wireless Mouse\""]",493.62,"{\""seasonal\"": \""26%\""}",61763,0,"""Asia""" +2023-06-14,38080,8032,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1685.31,"{\""seasonal\"": \""26%\""}",225192,0,"""Asia""" +2024-01-28,38081,8606,"[\""Laptop\""]",1484.32,"{\""seasonal\"": \""14%\""}",262412,1,"""Europe""" +2024-03-12,38082,1353,"[\""Wireless Mouse\""]",1855.56,"{\"": \""26%\""}",127268,1,"""Asia""" +2024-08-28,38083,3113,"[\""Headphones\"", \""Wireless Mouse\""]",2953.99,{},265426,1,"""Africa""" +2024-08-02,38084,4795,"[\""Headphones\"", \""Laptop\""]",4270.52,{},182951,0,"""Africa""" +2023-10-07,38085,4317,"[\""Phone\""]",1792.79,"{\""loyalty\"": \""12%\""}",258203,1,"""Europe""" +2023-03-21,38086,5274,"[\""Phone\"", \""Monitor\""]",3675.46,"{\"": \""26%\""}",238199,0,"""North America""" +2023-03-13,38087,8663,"[\""Headphones\"", \""Tablet\""]",3859.69,"{\""seasonal\"": \""24%\""}",129619,1,"""Europe""" +2023-04-24,38088,9958,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3779.33,{},253050,0,"""Asia""" +2024-11-09,38089,5193,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",850.35,{},87672,0,"""North America""" +2024-05-01,38090,2967,"[\""Laptop\""]",3782.93,"{\""loyalty\"": \""23%\""}",3604,1,"""Africa""" +2023-08-21,38091,2868,"[\""Keyboard\""]",3511.73,"{\""seasonal\"": \""6%\""}",56588,0,"""Asia""" +2024-09-08,38092,7120,"[\""Headphones\""]",2777.03,"{\"": \""28%\""}",50047,1,"""South America""" +2024-05-11,38093,6552,"[\""Charger\""]",1298.62,{},165501,0,"""South America""" +2024-11-25,38094,3087,"[\""Laptop\""]",1626.51,"{\""seasonal\"": \""14%\""}",196007,0,"""Europe""" +2023-03-02,38095,5501,"[\""Phone\""]",102.32,{},73042,0,"""Asia""" +2024-11-26,38096,4622,"[\""Wireless Mouse\"", \""Phone\""]",1937.05,"{\""promo\"": \""15%\""}",104476,0,"""South America""" +2024-04-12,38097,5617,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",861.85,"{\"": \""19%\""}",211165,1,"""South America""" +2023-12-06,38098,3032,"[\""Charger\""]",3836.8,{},203026,1,"""Africa""" +2023-02-09,38099,1785,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",877.12,{},205991,0,"""South America""" +2024-08-12,38100,423,"[\""Tablet\""]",2318.19,{},47051,0,"""Africa""" +2023-07-12,38101,9826,"[\""Monitor\"", \""Keyboard\""]",937.84,"{\"": \""28%\""}",144437,1,"""North America""" +2024-06-15,38102,9039,"[\""Phone\""]",419.72,{},227230,1,"""South America""" +2023-04-16,38103,987,"[\""Charger\""]",3980.96,"{\""promo\"": \""23%\""}",95603,0,"""Africa""" +2024-06-26,38104,5429,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4367.8,{},119235,0,"""Europe""" +2024-02-07,38105,6264,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4081.02,"{\""promo\"": \""8%\""}",135187,0,"""North America""" +2023-01-22,38106,159,"[\""Wireless Mouse\""]",168.61,"{\"": \""8%\""}",107151,1,"""North America""" +2024-09-23,38107,5517,"[\""Charger\"", \""Laptop\""]",2021.79,"{\""seasonal\"": \""14%\""}",15352,0,"""North America""" +2024-08-19,38108,2888,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2528.19,{},266452,1,"""Europe""" +2024-03-08,38109,7538,"[\""Headphones\""]",3235.25,{},86307,0,"""Asia""" +2024-03-30,38110,5017,"[\""Phone\""]",53.96,{},111043,1,"""South America""" +2024-10-14,38111,7397,"[\""Laptop\"", \""Tablet\""]",3225.07,"{\""promo\"": \""12%\""}",183524,0,"""South America""" +2023-06-05,38112,6356,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2040.61,"{\""seasonal\"": \""5%\""}",34804,1,"""Africa""" +2023-11-12,38113,121,"[\""Charger\""]",1447.58,"{\""promo\"": \""20%\""}",155645,0,"""South America""" +2024-09-18,38114,120,"[\""Headphones\""]",2979.65,{},63272,0,"""North America""" +2023-06-20,38115,9288,"[\""Keyboard\"", \""Headphones\""]",827.29,{},65688,0,"""Europe""" +2023-04-29,38116,552,"[\""Phone\"", \""Keyboard\""]",3179.43,"{\""loyalty\"": \""29%\""}",257076,1,"""North America""" +2024-10-18,38117,7235,"[\""Monitor\"", \""Headphones\""]",3580.46,"{\"": \""23%\""}",69110,1,"""Asia""" +2023-06-01,38118,8083,"[\""Phone\""]",3180.08,{},105087,1,"""South America""" +2024-11-23,38119,4307,"[\""Tablet\"", \""Monitor\""]",2969.6,"{\""promo\"": \""22%\""}",46572,1,"""North America""" +2023-05-03,38120,1931,"[\""Monitor\""]",738.54,"{\""loyalty\"": \""29%\""}",168458,0,"""Asia""" +2023-09-15,38121,7823,"[\""Tablet\"", \""Laptop\""]",717.46,{},29257,1,"""Europe""" +2023-02-06,38122,3314,"[\""Tablet\""]",4811.97,{},2807,1,"""North America""" +2024-12-01,38123,3279,"[\""Charger\""]",1182.56,{},147604,0,"""Asia""" +2023-03-23,38124,1279,"[\""Tablet\"", \""Wireless Mouse\""]",116.01,{},234403,1,"""Asia""" +2024-12-04,38125,3142,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",160.86,"{\""seasonal\"": \""26%\""}",227913,1,"""Africa""" +2023-08-15,38126,8113,"[\""Wireless Mouse\"", \""Charger\""]",2431.12,"{\""seasonal\"": \""16%\""}",137647,0,"""North America""" +2023-02-08,38127,7952,"[\""Headphones\""]",2023.43,{},212345,1,"""North America""" +2023-08-05,38128,3498,"[\""Tablet\""]",4548.42,"{\""promo\"": \""5%\""}",34222,1,"""Africa""" +2024-11-10,38129,9509,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3961.51,{},13997,0,"""North America""" +2023-09-28,38130,6866,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3380.54,"{\""promo\"": \""22%\""}",170330,0,"""South America""" +2024-01-08,38131,2169,"[\""Wireless Mouse\""]",3195.82,{},283321,1,"""Europe""" +2023-03-25,38132,8071,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",554.56,{},4014,1,"""North America""" +2024-05-05,38133,5968,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3396.4,{},32058,0,"""Europe""" +2024-08-09,38134,5404,"[\""Keyboard\""]",1350.47,"{\""promo\"": \""15%\""}",234346,0,"""North America""" +2023-12-19,38135,8185,"[\""Monitor\"", \""Headphones\""]",764.48,"{\""loyalty\"": \""17%\""}",98728,1,"""Africa""" +2023-11-29,38136,3443,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3169.72,{},193993,1,"""Europe""" +2024-02-13,38137,1554,"[\""Keyboard\""]",2774.01,"{\"": \""25%\""}",241590,1,"""North America""" +2023-11-16,38138,3773,"[\""Monitor\""]",2321.31,"{\""seasonal\"": \""29%\""}",238026,1,"""North America""" +2023-02-28,38139,5864,"[\""Tablet\"", \""Phone\""]",4338.18,"{\""loyalty\"": \""16%\""}",250721,1,"""Africa""" +2023-11-12,38140,7998,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3712.34,{},127032,1,"""Asia""" +2024-04-02,38141,4581,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2194.2,"{\"": \""21%\""}",11276,1,"""North America""" +2024-10-05,38142,260,"[\""Tablet\"", \""Keyboard\""]",4099.05,{},83921,1,"""Africa""" +2024-10-16,38143,2987,"[\""Laptop\"", \""Wireless Mouse\""]",2180.61,"{\""loyalty\"": \""17%\""}",49592,1,"""North America""" +2024-04-18,38144,7784,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4525.38,"{\""seasonal\"": \""21%\""}",228524,0,"""Asia""" +2024-04-26,38145,4130,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1106.37,"{\""loyalty\"": \""12%\""}",228661,1,"""Asia""" +2023-09-23,38146,4466,"[\""Headphones\"", \""Wireless Mouse\""]",850.66,"{\""seasonal\"": \""18%\""}",14312,0,"""South America""" +2023-09-23,38147,7366,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",211.61,{},207687,0,"""Africa""" +2024-08-01,38148,4086,"[\""Monitor\""]",3858.15,{},88764,0,"""Europe""" +2024-09-27,38149,6864,"[\""Phone\"", \""Headphones\""]",2793.96,"{\""promo\"": \""9%\""}",85460,0,"""Africa""" +2023-03-16,38150,4338,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1170.11,"{\"": \""16%\""}",38048,0,"""North America""" +2024-03-07,38151,1633,"[\""Keyboard\""]",2968.17,"{\"": \""7%\""}",278019,0,"""South America""" +2024-08-16,38152,2483,"[\""Laptop\"", \""Monitor\""]",215.7,{},140627,0,"""South America""" +2023-08-19,38153,9423,"[\""Wireless Mouse\"", \""Tablet\""]",729.58,"{\""loyalty\"": \""6%\""}",251949,0,"""South America""" +2024-03-26,38154,2360,"[\""Headphones\"", \""Charger\""]",818.29,{},60454,1,"""North America""" +2023-03-11,38155,8062,"[\""Keyboard\"", \""Phone\""]",231.81,"{\""promo\"": \""7%\""}",81540,1,"""Europe""" +2023-04-16,38156,3611,"[\""Keyboard\""]",4716.38,"{\""promo\"": \""8%\""}",23488,0,"""South America""" +2023-06-03,38157,701,"[\""Charger\""]",233.52,"{\""loyalty\"": \""7%\""}",292657,1,"""Asia""" +2024-06-19,38158,6763,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1560.58,"{\""promo\"": \""21%\""}",75711,1,"""Europe""" +2023-08-23,38159,3919,"[\""Phone\"", \""Laptop\""]",3622.13,{},190437,0,"""South America""" +2023-06-02,38160,3306,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1122.14,{},119820,1,"""Europe""" +2023-12-23,38161,982,"[\""Phone\"", \""Charger\""]",674.08,{},93928,0,"""South America""" +2024-08-26,38162,4114,"[\""Headphones\""]",2895.49,{},241233,0,"""South America""" +2024-07-11,38163,1676,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4440.02,{},219947,0,"""North America""" +2024-01-25,38164,993,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4385.13,{},76075,1,"""Asia""" +2024-10-16,38165,7635,"[\""Charger\"", \""Wireless Mouse\""]",2361.87,{},180079,1,"""North America""" +2023-09-02,38166,5356,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3055.14,{},134227,0,"""Europe""" +2023-10-01,38167,7844,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2448.46,"{\""promo\"": \""21%\""}",96027,0,"""Asia""" +2023-01-04,38168,9020,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2420.51,{},133935,1,"""North America""" +2024-08-11,38169,8250,"[\""Wireless Mouse\""]",3554.29,{},168366,1,"""North America""" +2023-08-01,38170,6121,"[\""Charger\"", \""Tablet\""]",2263.7,{},290772,0,"""Asia""" +2024-12-09,38171,7150,"[\""Tablet\"", \""Keyboard\""]",2708.21,"{\""seasonal\"": \""12%\""}",83539,0,"""Europe""" +2024-06-26,38172,1508,"[\""Headphones\"", \""Charger\""]",2756.32,"{\""loyalty\"": \""15%\""}",160923,1,"""South America""" +2023-08-30,38173,4726,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3567.82,"{\""promo\"": \""18%\""}",23938,1,"""Europe""" +2023-10-13,38174,1224,"[\""Tablet\""]",2268.12,{},49617,0,"""South America""" +2023-11-08,38175,4067,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",371.57,{},112731,0,"""North America""" +2024-02-05,38176,9274,"[\""Laptop\""]",2650.01,{},74225,0,"""Africa""" +2023-04-08,38177,7049,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1718.38,"{\""seasonal\"": \""15%\""}",112617,0,"""Asia""" +2023-03-07,38178,7004,"[\""Charger\"", \""Monitor\""]",2348.4,"{\"": \""26%\""}",9036,0,"""Asia""" +2023-07-28,38179,1032,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4469.87,{},254748,1,"""Asia""" +2024-05-23,38180,7079,"[\""Monitor\"", \""Wireless Mouse\""]",4489.84,{},116095,1,"""South America""" +2024-09-21,38181,166,"[\""Laptop\""]",3719.77,"{\""loyalty\"": \""30%\""}",4907,0,"""Europe""" +2023-06-04,38182,1099,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3295.35,"{\""promo\"": \""19%\""}",147934,1,"""Asia""" +2024-12-04,38183,8968,"[\""Laptop\""]",2082.1,{},295368,1,"""South America""" +2024-01-31,38184,8748,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1894.38,{},50012,0,"""South America""" +2024-02-08,38185,9388,"[\""Charger\""]",4109.38,{},235319,1,"""Africa""" +2024-05-17,38186,287,"[\""Charger\""]",416.75,"{\"": \""5%\""}",132231,1,"""Europe""" +2024-09-16,38187,2363,"[\""Tablet\""]",4443.79,{},284142,0,"""Europe""" +2023-04-28,38188,1580,"[\""Wireless Mouse\""]",1126.46,"{\""seasonal\"": \""7%\""}",245632,1,"""Africa""" +2024-06-05,38189,2339,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3341.79,{},207181,0,"""South America""" +2023-10-01,38190,8967,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2131.39,"{\""loyalty\"": \""21%\""}",38000,0,"""North America""" +2024-09-10,38191,7521,"[\""Monitor\"", \""Charger\""]",4360.89,"{\"": \""18%\""}",148297,0,"""Asia""" +2023-08-05,38192,9379,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3049.62,"{\""loyalty\"": \""19%\""}",205685,1,"""Africa""" +2023-07-20,38193,1657,"[\""Keyboard\""]",4274.52,"{\""seasonal\"": \""11%\""}",168400,0,"""South America""" +2023-06-24,38194,4346,"[\""Tablet\"", \""Wireless Mouse\""]",4760.05,{},2006,1,"""Africa""" +2024-06-30,38195,3647,"[\""Keyboard\"", \""Laptop\""]",3881.65,"{\""promo\"": \""10%\""}",174467,0,"""Africa""" +2023-03-28,38196,6855,"[\""Tablet\""]",4945.58,{},187124,0,"""Africa""" +2023-10-12,38197,2541,"[\""Wireless Mouse\""]",1759.3,{},13536,0,"""Europe""" +2023-02-28,38198,9611,"[\""Laptop\"", \""Headphones\""]",690.07,{},292536,0,"""Europe""" +2024-05-29,38199,3996,"[\""Monitor\""]",1508.83,{},256907,0,"""North America""" +2023-01-06,38200,8717,"[\""Wireless Mouse\""]",210.8,{},217685,1,"""Europe""" +2023-10-15,38201,718,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3826.07,"{\""loyalty\"": \""12%\""}",31476,1,"""Asia""" +2024-03-27,38202,7833,"[\""Keyboard\"", \""Tablet\""]",655.87,"{\""loyalty\"": \""28%\""}",169882,1,"""Africa""" +2024-03-16,38203,2889,"[\""Phone\"", \""Monitor\""]",1871.73,{},127659,1,"""Africa""" +2023-03-30,38204,5852,"[\""Wireless Mouse\""]",2669.62,"{\""promo\"": \""10%\""}",199570,1,"""Europe""" +2023-07-22,38205,7024,"[\""Phone\"", \""Headphones\""]",1897.33,"{\""loyalty\"": \""27%\""}",284460,1,"""North America""" +2024-03-12,38206,6192,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4168.59,"{\"": \""8%\""}",293933,0,"""North America""" +2023-08-27,38207,1087,"[\""Wireless Mouse\"", \""Laptop\""]",2485.95,{},263722,0,"""North America""" +2024-01-05,38208,1542,"[\""Monitor\""]",390.28,{},76285,1,"""Africa""" +2024-08-25,38209,1761,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",106.95,{},70998,0,"""North America""" +2024-05-15,38210,2168,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4405.42,{},261966,0,"""Asia""" +2023-04-20,38211,3901,"[\""Headphones\""]",3141.14,{},16030,0,"""Europe""" +2023-08-12,38212,7610,"[\""Headphones\"", \""Keyboard\""]",4278.37,{},296945,1,"""South America""" +2024-02-11,38213,1026,"[\""Wireless Mouse\""]",1895.65,"{\""promo\"": \""8%\""}",244480,1,"""Europe""" +2023-05-15,38214,8752,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4104.99,"{\""promo\"": \""19%\""}",248028,0,"""Africa""" +2023-06-03,38215,1357,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4712.14,"{\""seasonal\"": \""6%\""}",277161,1,"""Europe""" +2023-02-05,38216,2428,"[\""Headphones\""]",1078.59,"{\""promo\"": \""29%\""}",25879,0,"""Africa""" +2024-02-02,38217,7901,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2160.68,"{\""promo\"": \""18%\""}",9206,0,"""North America""" +2024-07-30,38218,2481,"[\""Headphones\""]",3146.4,"{\""seasonal\"": \""25%\""}",209184,0,"""North America""" +2023-07-11,38219,5149,"[\""Keyboard\"", \""Laptop\""]",1212.33,{},133361,1,"""North America""" +2024-06-15,38220,6250,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1907.96,"{\""promo\"": \""8%\""}",100035,0,"""Africa""" +2024-10-31,38221,1483,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3632.64,{},99015,0,"""North America""" +2023-06-14,38222,7670,"[\""Phone\"", \""Laptop\""]",4519.02,{},155644,0,"""Africa""" +2024-12-28,38223,6049,"[\""Wireless Mouse\"", \""Headphones\""]",4659.09,{},158496,1,"""Asia""" +2023-01-18,38224,6049,"[\""Wireless Mouse\""]",2478.76,"{\""seasonal\"": \""10%\""}",116957,1,"""South America""" +2023-02-24,38225,2389,"[\""Tablet\""]",900.42,{},143438,1,"""Asia""" +2023-11-09,38226,8703,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2287.27,"{\""loyalty\"": \""25%\""}",17453,0,"""Africa""" +2023-08-15,38227,6908,"[\""Monitor\""]",667.27,"{\"": \""9%\""}",191447,0,"""North America""" +2024-07-04,38228,4987,"[\""Keyboard\"", \""Tablet\""]",2501.87,{},126385,1,"""North America""" +2024-02-19,38229,8785,"[\""Monitor\"", \""Laptop\""]",1969.12,{},29576,0,"""Europe""" +2024-11-17,38230,4213,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1499.33,"{\""seasonal\"": \""30%\""}",158845,1,"""Europe""" +2023-02-09,38231,275,"[\""Headphones\"", \""Wireless Mouse\""]",209.89,{},274833,0,"""South America""" +2023-07-09,38232,9296,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2340.8,"{\""loyalty\"": \""14%\""}",6892,0,"""Europe""" +2023-07-25,38233,2962,"[\""Tablet\""]",4254.35,{},114888,1,"""North America""" +2023-03-16,38234,1076,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",327.66,{},236418,0,"""South America""" +2024-10-28,38235,4239,"[\""Monitor\"", \""Laptop\""]",1449.26,"{\""promo\"": \""7%\""}",174700,0,"""North America""" +2024-08-25,38236,7365,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",981.13,{},215526,0,"""Africa""" +2024-12-09,38237,7852,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2846.38,"{\"": \""28%\""}",273381,0,"""North America""" +2024-09-16,38238,4149,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2093.54,{},253676,1,"""North America""" +2024-06-19,38239,508,"[\""Tablet\"", \""Wireless Mouse\""]",1006.92,"{\""loyalty\"": \""7%\""}",164628,0,"""North America""" +2023-05-05,38240,8895,"[\""Tablet\""]",3621.84,"{\""seasonal\"": \""15%\""}",149553,1,"""North America""" +2023-04-17,38241,2685,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3454.99,{},106779,1,"""Africa""" +2023-09-19,38242,7853,"[\""Headphones\"", \""Wireless Mouse\""]",4886.73,{},282902,1,"""North America""" +2023-04-15,38243,4369,"[\""Monitor\"", \""Keyboard\""]",2777.91,"{\""seasonal\"": \""8%\""}",291970,0,"""Asia""" +2023-04-30,38244,8157,"[\""Tablet\"", \""Phone\""]",3365.09,"{\"": \""11%\""}",18618,1,"""Africa""" +2023-02-13,38245,2576,"[\""Tablet\""]",1578.8,{},154492,1,"""North America""" +2024-05-13,38246,3914,"[\""Tablet\"", \""Monitor\""]",2242.07,{},19861,0,"""Europe""" +2023-11-23,38247,3031,"[\""Tablet\"", \""Laptop\""]",3642.39,{},98408,0,"""North America""" +2023-11-08,38248,7500,"[\""Tablet\""]",4410.85,"{\""promo\"": \""25%\""}",30328,1,"""Africa""" +2024-04-07,38249,3483,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1217.36,{},26133,0,"""Africa""" +2023-12-19,38250,9062,"[\""Monitor\""]",4149.86,{},189086,0,"""North America""" +2024-06-28,38251,621,"[\""Wireless Mouse\"", \""Laptop\""]",2448.0,{},297722,1,"""Africa""" +2023-06-10,38252,6136,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",659.4,"{\"": \""28%\""}",50929,1,"""North America""" +2024-02-19,38253,9472,"[\""Monitor\"", \""Wireless Mouse\""]",4980.65,{},87461,0,"""South America""" +2023-03-31,38254,8348,"[\""Laptop\""]",2809.88,"{\""loyalty\"": \""14%\""}",241661,1,"""North America""" +2023-06-14,38255,4972,"[\""Phone\""]",170.83,"{\""seasonal\"": \""17%\""}",42893,0,"""South America""" +2024-10-22,38256,3891,"[\""Laptop\"", \""Keyboard\""]",3873.27,"{\""loyalty\"": \""7%\""}",252657,0,"""North America""" +2024-05-23,38257,231,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",710.44,"{\""loyalty\"": \""18%\""}",102206,1,"""North America""" +2024-03-27,38258,1789,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3222.33,"{\"": \""21%\""}",200748,0,"""Africa""" +2023-04-27,38259,9524,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3826.9,"{\"": \""19%\""}",23376,1,"""Asia""" +2024-07-10,38260,5991,"[\""Keyboard\""]",2149.33,"{\""seasonal\"": \""5%\""}",81459,1,"""Africa""" +2024-01-06,38261,2284,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2586.27,"{\""loyalty\"": \""14%\""}",108812,0,"""Asia""" +2024-05-02,38262,9417,"[\""Tablet\"", \""Phone\""]",1470.48,"{\""promo\"": \""22%\""}",57378,1,"""North America""" +2023-02-13,38263,1124,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",330.45,{},248067,0,"""Asia""" +2024-07-29,38264,2967,"[\""Headphones\""]",3720.98,"{\""promo\"": \""23%\""}",294848,1,"""North America""" +2023-09-28,38265,9602,"[\""Monitor\"", \""Keyboard\""]",2070.26,"{\""loyalty\"": \""16%\""}",266516,0,"""Africa""" +2023-07-19,38266,7395,"[\""Tablet\"", \""Headphones\""]",141.42,{},257617,1,"""Africa""" +2024-12-04,38267,1635,"[\""Headphones\""]",2578.33,"{\""loyalty\"": \""7%\""}",177511,1,"""South America""" +2024-02-28,38268,3700,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3266.24,"{\"": \""8%\""}",260143,1,"""South America""" +2023-02-21,38269,1997,"[\""Wireless Mouse\""]",2571.28,{},73348,0,"""Europe""" +2024-11-12,38270,2323,"[\""Laptop\""]",263.45,{},164182,1,"""Africa""" +2023-01-28,38271,6215,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1217.82,{},82798,1,"""Asia""" +2024-04-30,38272,2279,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2827.9,"{\""loyalty\"": \""7%\""}",121013,0,"""North America""" +2024-04-04,38273,7692,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",985.58,"{\"": \""21%\""}",133905,0,"""Africa""" +2024-04-29,38274,6271,"[\""Wireless Mouse\""]",4952.0,{},32782,1,"""Africa""" +2024-12-24,38275,1479,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3449.99,{},6028,1,"""Asia""" +2024-03-14,38276,9890,"[\""Wireless Mouse\"", \""Monitor\""]",438.32,"{\""loyalty\"": \""6%\""}",263944,0,"""North America""" +2024-06-06,38277,1913,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4563.08,{},250195,0,"""North America""" +2024-03-25,38278,8558,"[\""Keyboard\""]",4752.42,"{\""seasonal\"": \""28%\""}",55755,1,"""North America""" +2023-07-04,38279,7865,"[\""Phone\"", \""Laptop\""]",1709.68,"{\""promo\"": \""26%\""}",259836,0,"""North America""" +2023-12-28,38280,494,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2940.2,{},121604,0,"""Asia""" +2023-11-18,38281,815,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3588.96,"{\""promo\"": \""21%\""}",1939,1,"""South America""" +2023-11-18,38282,9805,"[\""Headphones\""]",1567.8,{},189396,0,"""Africa""" +2024-06-06,38283,6299,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2619.89,{},193275,1,"""Asia""" +2023-05-10,38284,7098,"[\""Headphones\""]",2784.77,"{\""seasonal\"": \""11%\""}",115903,0,"""North America""" +2023-06-23,38285,3117,"[\""Monitor\"", \""Charger\""]",534.96,{},256762,0,"""Africa""" +2023-02-22,38286,2601,"[\""Wireless Mouse\""]",1926.57,"{\""promo\"": \""14%\""}",276882,1,"""North America""" +2024-03-25,38287,5073,"[\""Wireless Mouse\"", \""Headphones\""]",4685.77,{},72228,1,"""North America""" +2024-03-14,38288,5599,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",387.37,{},202173,1,"""North America""" +2024-08-17,38289,7176,"[\""Tablet\""]",4588.31,"{\""loyalty\"": \""6%\""}",176027,0,"""Asia""" +2023-08-09,38290,1587,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3816.57,"{\"": \""29%\""}",49941,0,"""South America""" +2024-04-28,38291,1633,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4034.17,"{\"": \""16%\""}",160198,0,"""Africa""" +2023-10-13,38292,8886,"[\""Headphones\""]",454.15,"{\""loyalty\"": \""29%\""}",278306,0,"""Asia""" +2024-03-31,38293,6898,"[\""Keyboard\""]",666.1,"{\""promo\"": \""18%\""}",108942,1,"""Africa""" +2023-09-23,38294,5979,"[\""Monitor\""]",4576.43,{},44270,0,"""Africa""" +2023-05-27,38295,7029,"[\""Charger\"", \""Laptop\""]",2634.51,"{\""loyalty\"": \""7%\""}",292942,0,"""Europe""" +2023-05-25,38296,2111,"[\""Charger\"", \""Headphones\""]",4806.67,{},171376,0,"""South America""" +2024-01-13,38297,9666,"[\""Headphones\"", \""Tablet\""]",4337.51,"{\""loyalty\"": \""29%\""}",102768,0,"""South America""" +2023-07-04,38298,1029,"[\""Keyboard\""]",4808.82,{},2900,1,"""North America""" +2023-10-04,38299,3318,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2911.82,{},105912,0,"""Africa""" +2024-04-22,38300,4496,"[\""Phone\""]",4857.2,{},247161,0,"""North America""" +2024-03-12,38301,3316,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4601.42,{},143935,1,"""North America""" +2023-12-13,38302,6386,"[\""Keyboard\""]",2665.74,"{\""loyalty\"": \""18%\""}",237250,1,"""North America""" +2024-06-24,38303,7624,"[\""Headphones\"", \""Keyboard\""]",2915.32,{},120623,0,"""South America""" +2023-04-16,38304,8464,"[\""Tablet\"", \""Keyboard\""]",2589.17,{},289284,1,"""North America""" +2024-05-05,38305,6425,"[\""Monitor\"", \""Wireless Mouse\""]",1782.73,"{\""promo\"": \""20%\""}",121478,1,"""North America""" +2024-12-21,38306,6667,"[\""Tablet\""]",283.69,"{\""seasonal\"": \""27%\""}",290893,1,"""Asia""" +2023-08-09,38307,5016,"[\""Charger\""]",3918.45,"{\""promo\"": \""27%\""}",254846,1,"""Asia""" +2024-04-11,38308,3465,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1849.46,{},267121,0,"""North America""" +2024-07-19,38309,5448,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3310.5,"{\""promo\"": \""27%\""}",166045,0,"""North America""" +2024-11-08,38310,863,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1085.8,{},193664,0,"""Africa""" +2024-11-19,38311,2832,"[\""Wireless Mouse\"", \""Keyboard\""]",2215.98,{},217983,1,"""Europe""" +2023-11-02,38312,103,"[\""Phone\""]",3219.28,{},165310,0,"""South America""" +2023-06-12,38313,100,"[\""Phone\""]",1031.8,{},280881,0,"""Europe""" +2024-04-25,38314,9870,"[\""Charger\"", \""Keyboard\""]",2965.4,{},189282,0,"""North America""" +2024-06-25,38315,256,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1290.63,{},24703,1,"""Africa""" +2023-10-31,38316,9118,"[\""Phone\"", \""Charger\""]",2675.55,{},49605,1,"""North America""" +2023-07-12,38317,4911,"[\""Monitor\""]",3314.97,{},53833,1,"""Asia""" +2024-11-27,38318,6838,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",262.28,{},179623,1,"""Africa""" +2023-03-22,38319,9364,"[\""Wireless Mouse\""]",4501.69,"{\"": \""24%\""}",4337,1,"""Europe""" +2024-06-07,38320,138,"[\""Laptop\""]",3016.37,"{\""loyalty\"": \""29%\""}",126340,0,"""South America""" +2024-11-27,38321,2097,"[\""Laptop\"", \""Monitor\""]",667.55,{},220835,0,"""Africa""" +2024-01-29,38322,6128,"[\""Laptop\""]",4883.89,{},32428,0,"""Asia""" +2023-02-23,38323,6370,"[\""Monitor\"", \""Tablet\""]",1461.43,"{\""promo\"": \""12%\""}",128011,1,"""Asia""" +2023-10-03,38324,8362,"[\""Charger\""]",2039.24,"{\""seasonal\"": \""15%\""}",127778,0,"""Asia""" +2023-06-15,38325,2685,"[\""Wireless Mouse\""]",3335.62,"{\"": \""25%\""}",198167,0,"""South America""" +2024-12-15,38326,9022,"[\""Charger\""]",929.6,{},69354,0,"""Asia""" +2024-06-15,38327,4026,"[\""Phone\"", \""Laptop\""]",3784.16,"{\""promo\"": \""7%\""}",40190,0,"""Africa""" +2024-06-15,38328,3017,"[\""Monitor\"", \""Tablet\""]",4821.58,"{\""loyalty\"": \""9%\""}",264101,0,"""Africa""" +2024-02-06,38329,321,"[\""Wireless Mouse\""]",4626.89,{},13607,1,"""North America""" +2023-08-27,38330,665,"[\""Monitor\"", \""Wireless Mouse\""]",59.4,{},112622,0,"""North America""" +2024-05-19,38331,2739,"[\""Phone\""]",3261.42,"{\"": \""26%\""}",55258,1,"""South America""" +2023-12-05,38332,4599,"[\""Monitor\"", \""Tablet\""]",1261.2,"{\""seasonal\"": \""19%\""}",83856,1,"""Europe""" +2024-11-30,38333,5136,"[\""Charger\""]",4822.91,"{\""promo\"": \""22%\""}",277291,0,"""North America""" +2023-02-22,38334,2713,"[\""Phone\"", \""Wireless Mouse\""]",1148.5,"{\""promo\"": \""14%\""}",172962,0,"""Asia""" +2023-11-25,38335,7928,"[\""Phone\""]",2970.61,"{\""loyalty\"": \""24%\""}",24783,1,"""Asia""" +2023-09-12,38336,7748,"[\""Phone\""]",4018.0,"{\""loyalty\"": \""11%\""}",274343,0,"""Africa""" +2024-07-18,38337,215,"[\""Tablet\"", \""Headphones\""]",256.64,"{\""seasonal\"": \""30%\""}",212130,1,"""Asia""" +2023-06-20,38338,9449,"[\""Phone\"", \""Headphones\""]",4758.57,"{\""promo\"": \""5%\""}",75455,0,"""North America""" +2024-04-29,38339,9205,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",492.69,"{\""seasonal\"": \""5%\""}",137456,0,"""Asia""" +2023-12-20,38340,8846,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1381.91,"{\""promo\"": \""12%\""}",223776,1,"""Europe""" +2023-07-30,38341,2971,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1771.87,{},217381,0,"""North America""" +2024-09-26,38342,5761,"[\""Tablet\""]",4870.33,"{\""promo\"": \""13%\""}",217494,1,"""Europe""" +2023-04-30,38343,8122,"[\""Tablet\""]",1774.4,{},262325,0,"""South America""" +2023-03-19,38344,2405,"[\""Charger\"", \""Tablet\""]",4064.91,"{\""seasonal\"": \""12%\""}",258516,0,"""North America""" +2024-01-14,38345,617,"[\""Phone\"", \""Tablet\""]",2359.39,"{\""seasonal\"": \""12%\""}",17539,1,"""Asia""" +2023-02-03,38346,1791,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4043.86,{},186526,0,"""Africa""" +2024-04-11,38347,3838,"[\""Phone\""]",4929.04,"{\""seasonal\"": \""9%\""}",177936,1,"""South America""" +2023-11-16,38348,8322,"[\""Tablet\"", \""Monitor\""]",2630.49,"{\""seasonal\"": \""26%\""}",25663,0,"""Europe""" +2023-02-10,38349,9679,"[\""Charger\""]",3660.6,{},147596,1,"""Asia""" +2023-01-31,38350,2765,"[\""Wireless Mouse\"", \""Charger\""]",1504.28,"{\""promo\"": \""12%\""}",237123,1,"""Asia""" +2024-05-31,38351,9707,"[\""Laptop\""]",3903.36,"{\""seasonal\"": \""15%\""}",239216,0,"""South America""" +2023-02-09,38352,3638,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3207.85,{},197405,1,"""North America""" +2023-05-18,38353,8564,"[\""Headphones\"", \""Phone\""]",4369.6,{},92005,1,"""South America""" +2023-07-29,38354,7280,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3460.3,"{\""promo\"": \""16%\""}",235407,1,"""Asia""" +2024-07-27,38355,5410,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",926.83,{},35004,1,"""Europe""" +2023-12-05,38356,3593,"[\""Laptop\""]",4001.66,"{\"": \""21%\""}",124481,0,"""Europe""" +2023-05-06,38357,8082,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3048.09,{},281113,1,"""Africa""" +2023-09-27,38358,3601,"[\""Phone\""]",4985.79,"{\""loyalty\"": \""15%\""}",289651,0,"""North America""" +2024-11-29,38359,784,"[\""Charger\"", \""Phone\""]",4040.76,"{\""promo\"": \""12%\""}",40614,1,"""Europe""" +2024-11-27,38360,7444,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4945.85,"{\""seasonal\"": \""13%\""}",236927,0,"""Europe""" +2024-12-09,38361,2524,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",891.19,{},61012,1,"""Europe""" +2023-01-03,38362,2408,"[\""Laptop\"", \""Charger\""]",4936.56,{},174435,0,"""Africa""" +2024-05-19,38363,7180,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1322.52,"{\""seasonal\"": \""11%\""}",265525,1,"""Asia""" +2024-07-05,38364,1209,"[\""Wireless Mouse\"", \""Monitor\""]",804.19,{},37683,1,"""South America""" +2023-07-01,38365,3042,"[\""Charger\"", \""Wireless Mouse\""]",828.54,{},117267,0,"""South America""" +2024-08-25,38366,6169,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1144.25,{},168422,1,"""Africa""" +2023-02-05,38367,6839,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",328.59,"{\"": \""18%\""}",182207,1,"""Europe""" +2023-11-26,38368,4093,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",254.53,"{\""loyalty\"": \""9%\""}",291641,1,"""Africa""" +2024-06-11,38369,6248,"[\""Laptop\""]",4778.93,{},149564,1,"""Europe""" +2024-10-09,38370,5276,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2282.66,"{\""seasonal\"": \""23%\""}",197268,1,"""Europe""" +2024-12-17,38371,1774,"[\""Headphones\""]",490.33,"{\""loyalty\"": \""7%\""}",279696,0,"""Europe""" +2023-04-07,38372,3163,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",272.27,"{\""promo\"": \""11%\""}",191264,0,"""South America""" +2024-07-26,38373,2945,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3500.55,{},143119,0,"""Asia""" +2023-05-19,38374,8402,"[\""Keyboard\""]",3609.72,{},134904,1,"""Africa""" +2023-10-21,38375,4536,"[\""Keyboard\""]",98.22,{},107322,0,"""South America""" +2023-10-12,38376,5251,"[\""Keyboard\""]",838.31,{},174466,1,"""Asia""" +2024-03-24,38377,5492,"[\""Phone\"", \""Wireless Mouse\""]",2167.59,{},90790,0,"""Europe""" +2024-10-17,38378,447,"[\""Laptop\"", \""Headphones\""]",2919.72,{},204965,1,"""South America""" +2024-05-02,38379,2448,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4975.13,{},164042,0,"""North America""" +2023-12-30,38380,7384,"[\""Wireless Mouse\"", \""Tablet\""]",3787.94,{},168344,0,"""Asia""" +2024-03-29,38381,3015,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2692.59,{},249474,1,"""Europe""" +2023-04-26,38382,1486,"[\""Charger\""]",2483.58,{},48769,0,"""South America""" +2023-06-10,38383,904,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4192.63,"{\""promo\"": \""9%\""}",98968,1,"""South America""" +2023-08-27,38384,7738,"[\""Tablet\""]",2310.07,{},155895,0,"""Asia""" +2023-01-01,38385,4581,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1731.84,"{\""loyalty\"": \""22%\""}",209495,1,"""Europe""" +2024-07-18,38386,6745,"[\""Phone\"", \""Monitor\""]",1286.34,"{\""loyalty\"": \""22%\""}",206852,1,"""North America""" +2023-01-08,38387,9727,"[\""Keyboard\"", \""Charger\""]",2590.57,"{\""promo\"": \""12%\""}",241051,1,"""North America""" +2024-11-09,38388,1380,"[\""Laptop\""]",3538.55,{},75469,0,"""North America""" +2024-02-11,38389,4725,"[\""Headphones\""]",2200.18,{},110092,1,"""Europe""" +2023-09-23,38390,6051,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3745.6,"{\""loyalty\"": \""18%\""}",109800,0,"""Africa""" +2023-05-24,38391,8137,"[\""Wireless Mouse\""]",2371.06,"{\""loyalty\"": \""7%\""}",148572,0,"""Asia""" +2024-04-08,38392,4391,"[\""Phone\"", \""Monitor\""]",2627.48,"{\""seasonal\"": \""19%\""}",55580,0,"""North America""" +2024-10-29,38393,5797,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",942.99,{},284269,1,"""Asia""" +2023-04-11,38394,5521,"[\""Keyboard\""]",950.85,{},289454,1,"""Asia""" +2023-05-08,38395,1023,"[\""Wireless Mouse\"", \""Headphones\""]",3352.85,{},48451,1,"""Europe""" +2024-09-04,38396,7707,"[\""Tablet\"", \""Monitor\""]",2782.14,{},176326,1,"""North America""" +2024-03-28,38397,3338,"[\""Monitor\"", \""Headphones\""]",3939.51,{},12964,0,"""Africa""" +2023-09-30,38398,981,"[\""Headphones\"", \""Keyboard\""]",4989.44,{},104834,0,"""Asia""" +2024-07-05,38399,6761,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2134.35,{},222550,0,"""South America""" +2023-09-16,38400,1593,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",100.77,{},2358,0,"""North America""" +2023-04-07,38401,104,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4021.94,{},182034,0,"""North America""" +2023-10-13,38402,5208,"[\""Wireless Mouse\""]",97.24,{},39593,1,"""Africa""" +2023-11-01,38403,3973,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4693.5,"{\""promo\"": \""12%\""}",121683,0,"""Europe""" +2023-12-25,38404,8994,"[\""Keyboard\"", \""Headphones\""]",2471.62,{},298514,1,"""South America""" +2023-06-20,38405,1925,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2687.17,{},154532,1,"""North America""" +2024-06-27,38406,897,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4123.62,"{\""loyalty\"": \""13%\""}",102130,0,"""South America""" +2023-03-28,38407,7530,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1266.64,{},29144,1,"""Europe""" +2023-03-16,38408,1850,"[\""Keyboard\""]",2245.3,"{\""seasonal\"": \""16%\""}",86829,1,"""North America""" +2024-02-04,38409,1123,"[\""Keyboard\"", \""Laptop\""]",3042.56,"{\""promo\"": \""7%\""}",250441,1,"""North America""" +2023-10-09,38410,6219,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2525.32,"{\""loyalty\"": \""23%\""}",249211,1,"""South America""" +2024-01-08,38411,4963,"[\""Headphones\"", \""Wireless Mouse\""]",2538.21,{},212769,1,"""North America""" +2024-09-03,38412,8294,"[\""Wireless Mouse\"", \""Keyboard\""]",295.37,"{\"": \""24%\""}",208542,1,"""North America""" +2023-04-03,38413,7953,"[\""Tablet\""]",3545.15,"{\"": \""11%\""}",255379,1,"""Europe""" +2024-09-20,38414,1883,"[\""Laptop\"", \""Keyboard\""]",2563.87,"{\"": \""8%\""}",245923,0,"""Africa""" +2023-04-29,38415,3150,"[\""Tablet\""]",1415.53,"{\""loyalty\"": \""7%\""}",38907,0,"""Europe""" +2023-04-15,38416,3120,"[\""Phone\"", \""Charger\""]",479.71,{},130145,0,"""North America""" +2023-01-27,38417,1353,"[\""Wireless Mouse\"", \""Headphones\""]",4556.62,"{\"": \""19%\""}",255993,1,"""Europe""" +2023-09-28,38418,8519,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4301.11,"{\""seasonal\"": \""12%\""}",158733,1,"""Europe""" +2024-04-11,38419,962,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",296.46,"{\""promo\"": \""11%\""}",235553,1,"""South America""" +2024-02-04,38420,5652,"[\""Tablet\"", \""Headphones\""]",324.18,{},184649,1,"""Europe""" +2024-03-11,38421,4822,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",459.75,{},136972,1,"""Africa""" +2024-07-08,38422,3802,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2573.02,"{\""loyalty\"": \""10%\""}",237418,0,"""North America""" +2023-08-30,38423,5932,"[\""Monitor\"", \""Phone\""]",4721.15,{},8281,0,"""Africa""" +2023-01-05,38424,2023,"[\""Laptop\""]",134.79,"{\"": \""8%\""}",129203,1,"""Asia""" +2023-03-13,38425,5529,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3779.76,"{\"": \""29%\""}",66165,1,"""Europe""" +2023-06-12,38426,2805,"[\""Wireless Mouse\"", \""Keyboard\""]",2437.8,{},48963,0,"""Africa""" +2024-10-18,38427,6907,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3660.14,"{\"": \""14%\""}",12161,1,"""Africa""" +2023-05-12,38428,6454,"[\""Laptop\""]",1304.7,{},241522,0,"""North America""" +2023-04-04,38429,1515,"[\""Headphones\"", \""Tablet\""]",2168.58,{},298252,0,"""Europe""" +2023-12-29,38430,4461,"[\""Keyboard\""]",796.62,{},272803,1,"""South America""" +2023-11-24,38431,1193,"[\""Headphones\""]",1328.22,"{\"": \""18%\""}",225070,0,"""Europe""" +2023-09-06,38432,7843,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3868.66,"{\""promo\"": \""23%\""}",160513,0,"""South America""" +2024-05-17,38433,3684,"[\""Tablet\""]",3925.36,"{\"": \""7%\""}",55634,1,"""Europe""" +2023-11-11,38434,9136,"[\""Laptop\""]",4447.73,"{\"": \""18%\""}",259399,1,"""Europe""" +2024-11-02,38435,315,"[\""Phone\""]",3907.95,{},299180,1,"""Europe""" +2023-05-23,38436,1116,"[\""Wireless Mouse\"", \""Phone\""]",3311.59,{},231830,1,"""North America""" +2024-05-23,38437,6201,"[\""Phone\""]",4663.11,"{\""loyalty\"": \""16%\""}",59883,0,"""Asia""" +2023-08-18,38438,4555,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2744.6,{},168505,1,"""Asia""" +2024-08-29,38439,9285,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",416.34,{},232451,1,"""Africa""" +2024-06-13,38440,5817,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2675.33,"{\""seasonal\"": \""26%\""}",123073,0,"""Europe""" +2024-02-21,38441,7413,"[\""Keyboard\"", \""Monitor\""]",4532.05,"{\""promo\"": \""28%\""}",207137,1,"""Asia""" +2023-06-23,38442,6471,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3568.64,{},263369,0,"""Africa""" +2023-01-22,38443,3666,"[\""Wireless Mouse\"", \""Tablet\""]",2732.79,"{\""loyalty\"": \""16%\""}",62266,1,"""North America""" +2024-02-20,38444,1814,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2352.06,"{\""loyalty\"": \""22%\""}",118863,1,"""South America""" +2023-09-17,38445,8483,"[\""Phone\""]",3805.11,{},295381,1,"""South America""" +2023-09-06,38446,7608,"[\""Laptop\""]",567.7,{},223826,0,"""Africa""" +2023-04-11,38447,5270,"[\""Laptop\""]",1113.27,{},238700,1,"""Asia""" +2023-08-12,38448,598,"[\""Monitor\""]",589.9,{},179739,1,"""South America""" +2024-09-18,38449,7862,"[\""Laptop\""]",3004.48,"{\""seasonal\"": \""9%\""}",252530,1,"""Africa""" +2023-11-30,38450,4033,"[\""Tablet\"", \""Charger\""]",2373.01,"{\""loyalty\"": \""9%\""}",45096,0,"""Asia""" +2024-07-04,38451,6653,"[\""Headphones\""]",498.81,"{\""loyalty\"": \""5%\""}",140176,0,"""South America""" +2024-03-26,38452,8235,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4046.35,{},32891,0,"""North America""" +2023-02-17,38453,995,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2088.68,"{\""promo\"": \""30%\""}",50876,1,"""Africa""" +2024-01-28,38454,696,"[\""Charger\""]",3230.9,"{\""loyalty\"": \""21%\""}",166184,0,"""Europe""" +2024-08-29,38455,7427,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4112.16,{},63417,1,"""North America""" +2023-09-17,38456,4341,"[\""Laptop\""]",4870.86,{},275611,1,"""Asia""" +2024-09-19,38457,2609,"[\""Keyboard\"", \""Monitor\""]",972.51,{},215156,1,"""Europe""" +2023-03-12,38458,3013,"[\""Tablet\"", \""Wireless Mouse\""]",2147.25,"{\""seasonal\"": \""18%\""}",91046,0,"""Asia""" +2023-03-02,38459,6958,"[\""Phone\"", \""Wireless Mouse\""]",1424.45,{},276330,0,"""Africa""" +2024-07-16,38460,1282,"[\""Wireless Mouse\""]",51.71,{},216614,1,"""North America""" +2023-02-10,38461,8662,"[\""Monitor\"", \""Wireless Mouse\""]",3889.66,{},170738,0,"""South America""" +2024-09-25,38462,9661,"[\""Phone\""]",3072.28,"{\""loyalty\"": \""23%\""}",143560,0,"""Africa""" +2023-06-23,38463,9454,"[\""Tablet\"", \""Wireless Mouse\""]",2315.07,{},296584,1,"""Africa""" +2024-06-13,38464,9922,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4956.03,"{\""loyalty\"": \""18%\""}",110782,0,"""Africa""" +2024-10-02,38465,7463,"[\""Keyboard\"", \""Phone\""]",124.6,"{\""loyalty\"": \""17%\""}",235251,0,"""Africa""" +2023-03-14,38466,7800,"[\""Wireless Mouse\""]",2370.65,{},14359,1,"""North America""" +2023-08-31,38467,7085,"[\""Keyboard\""]",4530.27,"{\"": \""20%\""}",299856,0,"""Asia""" +2024-09-13,38468,8899,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2007.63,{},242264,1,"""North America""" +2023-11-24,38469,5119,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1664.63,{},177591,0,"""South America""" +2023-04-10,38470,7815,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4605.49,"{\""promo\"": \""17%\""}",232521,1,"""Africa""" +2024-03-26,38471,5892,"[\""Phone\"", \""Keyboard\""]",4089.27,{},7479,0,"""South America""" +2024-08-16,38472,2392,"[\""Charger\"", \""Keyboard\""]",3948.64,"{\""seasonal\"": \""13%\""}",86227,1,"""North America""" +2023-01-08,38473,879,"[\""Laptop\""]",80.13,{},93169,0,"""Asia""" +2024-03-20,38474,566,"[\""Charger\"", \""Laptop\""]",2433.95,"{\""loyalty\"": \""29%\""}",208793,0,"""Asia""" +2023-02-04,38475,6538,"[\""Keyboard\"", \""Laptop\""]",3329.83,"{\""loyalty\"": \""29%\""}",141407,1,"""Asia""" +2024-06-06,38476,9715,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1635.74,{},294099,0,"""Africa""" +2024-01-06,38477,1741,"[\""Keyboard\""]",1180.8,"{\""promo\"": \""29%\""}",279983,0,"""South America""" +2024-05-27,38478,7159,"[\""Keyboard\"", \""Wireless Mouse\""]",3835.16,{},224432,1,"""South America""" +2024-07-08,38479,4040,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2672.33,"{\""loyalty\"": \""30%\""}",132899,0,"""Europe""" +2023-07-03,38480,4317,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1555.77,{},91276,1,"""South America""" +2023-12-21,38481,1238,"[\""Tablet\"", \""Keyboard\""]",2708.14,"{\""promo\"": \""12%\""}",205888,1,"""Europe""" +2024-09-04,38482,1784,"[\""Wireless Mouse\"", \""Keyboard\""]",2303.96,{},73909,0,"""Europe""" +2023-06-18,38483,7484,"[\""Wireless Mouse\""]",2025.08,"{\""promo\"": \""29%\""}",36857,0,"""Europe""" +2024-05-22,38484,6148,"[\""Laptop\"", \""Headphones\""]",4405.16,"{\""seasonal\"": \""25%\""}",41309,1,"""North America""" +2023-03-06,38485,6980,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3289.96,"{\"": \""20%\""}",107830,0,"""Europe""" +2023-05-11,38486,1143,"[\""Charger\""]",990.19,"{\""seasonal\"": \""14%\""}",214503,1,"""Asia""" +2024-11-28,38487,8853,"[\""Laptop\"", \""Keyboard\""]",3705.83,"{\""seasonal\"": \""23%\""}",60295,1,"""Asia""" +2023-10-31,38488,8486,"[\""Wireless Mouse\"", \""Headphones\""]",4525.3,{},84689,1,"""Africa""" +2024-08-31,38489,5006,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",927.8,"{\""seasonal\"": \""12%\""}",86011,1,"""Asia""" +2023-12-21,38490,3342,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2968.68,{},196794,0,"""North America""" +2024-07-06,38491,1647,"[\""Headphones\""]",2617.2,"{\""promo\"": \""26%\""}",141207,0,"""North America""" +2024-07-29,38492,6295,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1691.12,"{\""loyalty\"": \""9%\""}",61991,0,"""Africa""" +2023-06-28,38493,5754,"[\""Keyboard\"", \""Laptop\""]",1270.72,"{\""promo\"": \""26%\""}",244285,0,"""Asia""" +2023-06-28,38494,3861,"[\""Phone\"", \""Tablet\""]",2669.27,{},199620,1,"""Africa""" +2024-05-16,38495,6080,"[\""Monitor\"", \""Phone\""]",2047.82,{},276921,1,"""North America""" +2023-12-05,38496,5574,"[\""Keyboard\""]",4986.9,{},120119,0,"""South America""" +2024-05-24,38497,742,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3984.73,{},74726,1,"""South America""" +2024-09-11,38498,5931,"[\""Phone\"", \""Wireless Mouse\""]",351.99,"{\""loyalty\"": \""29%\""}",149233,1,"""Europe""" +2023-07-22,38499,9346,"[\""Phone\""]",4768.96,{},126455,0,"""North America""" +2024-04-20,38500,4101,"[\""Headphones\"", \""Wireless Mouse\""]",326.65,{},87996,0,"""Europe""" +2023-09-08,38501,2679,"[\""Wireless Mouse\"", \""Monitor\""]",2648.67,{},142355,0,"""North America""" +2023-09-10,38502,4106,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1177.94,"{\""seasonal\"": \""19%\""}",3110,1,"""Africa""" +2024-01-11,38503,6266,"[\""Keyboard\"", \""Charger\""]",2411.49,{},71298,0,"""Europe""" +2023-04-11,38504,5712,"[\""Headphones\"", \""Charger\""]",4977.17,{},17874,1,"""Asia""" +2024-10-02,38505,4427,"[\""Phone\""]",87.45,"{\""promo\"": \""28%\""}",276683,0,"""South America""" +2024-01-14,38506,5763,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4366.15,{},273982,1,"""South America""" +2024-09-26,38507,3491,"[\""Wireless Mouse\""]",2210.83,"{\""seasonal\"": \""24%\""}",28643,1,"""South America""" +2024-08-23,38508,56,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3018.38,"{\""seasonal\"": \""18%\""}",179303,1,"""North America""" +2023-09-22,38509,762,"[\""Keyboard\""]",4132.07,"{\""promo\"": \""29%\""}",240572,0,"""North America""" +2024-10-17,38510,6702,"[\""Tablet\"", \""Laptop\""]",2412.02,{},191184,0,"""North America""" +2023-05-16,38511,12,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2735.48,"{\"": \""14%\""}",34250,1,"""South America""" +2024-04-10,38512,8460,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",347.86,{},202605,0,"""South America""" +2024-07-15,38513,9592,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4727.85,{},81647,1,"""Asia""" +2023-04-17,38514,961,"[\""Wireless Mouse\"", \""Keyboard\""]",661.07,"{\"": \""16%\""}",32352,1,"""South America""" +2023-08-22,38515,1491,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2804.55,{},62007,1,"""Europe""" +2023-03-28,38516,1315,"[\""Phone\"", \""Laptop\""]",2614.02,{},1567,1,"""North America""" +2024-07-27,38517,8049,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2146.18,{},181589,1,"""North America""" +2023-04-17,38518,5098,"[\""Charger\""]",446.11,"{\""promo\"": \""25%\""}",111459,1,"""Asia""" +2024-01-27,38519,2251,"[\""Keyboard\""]",1605.73,{},247253,0,"""North America""" +2023-10-11,38520,8057,"[\""Keyboard\"", \""Monitor\""]",2408.26,{},298665,1,"""Asia""" +2024-07-21,38521,6691,"[\""Tablet\"", \""Monitor\""]",1243.39,{},22078,1,"""Asia""" +2024-01-26,38522,3367,"[\""Monitor\""]",3272.9,"{\""seasonal\"": \""27%\""}",161173,1,"""Europe""" +2023-03-09,38523,5785,"[\""Headphones\"", \""Charger\""]",4565.75,"{\"": \""5%\""}",220306,0,"""North America""" +2023-08-19,38524,6227,"[\""Phone\"", \""Laptop\""]",897.49,"{\""promo\"": \""12%\""}",164618,1,"""North America""" +2023-07-09,38525,1324,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1585.88,{},185225,0,"""South America""" +2023-07-13,38526,8593,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3186.67,"{\""loyalty\"": \""15%\""}",31489,1,"""North America""" +2024-05-27,38527,2056,"[\""Wireless Mouse\""]",3420.14,"{\"": \""20%\""}",183453,1,"""Africa""" +2024-05-16,38528,7803,"[\""Headphones\"", \""Tablet\""]",332.08,"{\"": \""30%\""}",75904,1,"""Europe""" +2024-08-09,38529,4147,"[\""Keyboard\""]",3376.5,"{\""seasonal\"": \""27%\""}",45511,1,"""Asia""" +2024-12-20,38530,6768,"[\""Tablet\""]",502.28,{},287893,1,"""Africa""" +2024-06-17,38531,3541,"[\""Laptop\""]",895.36,"{\""seasonal\"": \""29%\""}",286673,0,"""South America""" +2023-01-27,38532,9589,"[\""Monitor\"", \""Wireless Mouse\""]",1608.08,"{\"": \""16%\""}",17695,1,"""South America""" +2024-05-06,38533,8641,"[\""Tablet\"", \""Headphones\""]",912.4,{},167771,0,"""South America""" +2024-12-20,38534,2153,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2690.78,{},255288,0,"""Europe""" +2024-04-15,38535,5060,"[\""Monitor\""]",982.6,"{\""promo\"": \""20%\""}",272699,0,"""Africa""" +2023-10-01,38536,95,"[\""Keyboard\"", \""Wireless Mouse\""]",1721.97,"{\""seasonal\"": \""19%\""}",177479,0,"""Asia""" +2023-02-18,38537,6285,"[\""Monitor\""]",1523.67,{},224271,0,"""South America""" +2024-10-08,38538,2173,"[\""Tablet\""]",4185.56,"{\""loyalty\"": \""14%\""}",15658,0,"""South America""" +2024-12-06,38539,6454,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1173.34,"{\""promo\"": \""22%\""}",77476,0,"""Asia""" +2024-09-04,38540,6735,"[\""Headphones\""]",3829.29,"{\""loyalty\"": \""25%\""}",212389,1,"""Asia""" +2024-09-05,38541,817,"[\""Headphones\""]",4930.96,"{\"": \""29%\""}",153867,1,"""South America""" +2024-09-29,38542,5081,"[\""Laptop\""]",4071.98,{},285779,1,"""South America""" +2023-01-02,38543,6234,"[\""Monitor\""]",2163.35,"{\""loyalty\"": \""24%\""}",157779,1,"""Asia""" +2024-11-28,38544,8214,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3841.14,"{\""seasonal\"": \""22%\""}",83951,1,"""Europe""" +2024-04-04,38545,4985,"[\""Charger\""]",494.42,"{\""promo\"": \""23%\""}",142533,1,"""North America""" +2024-10-21,38546,5249,"[\""Charger\""]",2762.45,"{\""loyalty\"": \""25%\""}",142714,0,"""Africa""" +2023-03-19,38547,9782,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1151.11,{},162475,1,"""Europe""" +2023-10-21,38548,7035,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4678.7,{},136719,1,"""Europe""" +2023-09-14,38549,376,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1130.69,{},32399,0,"""Africa""" +2024-02-12,38550,2718,"[\""Keyboard\""]",846.94,"{\""loyalty\"": \""6%\""}",3646,0,"""South America""" +2024-05-01,38551,4239,"[\""Tablet\"", \""Phone\""]",4534.76,"{\"": \""17%\""}",259100,0,"""North America""" +2024-11-05,38552,99,"[\""Headphones\"", \""Laptop\""]",391.37,{},100880,0,"""Asia""" +2024-11-09,38553,3395,"[\""Wireless Mouse\"", \""Headphones\""]",3391.95,"{\"": \""6%\""}",249766,1,"""North America""" +2023-08-19,38554,5760,"[\""Monitor\"", \""Charger\""]",3017.96,"{\""loyalty\"": \""23%\""}",10101,0,"""South America""" +2023-05-14,38555,5152,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2149.29,{},3465,1,"""Asia""" +2024-08-21,38556,6415,"[\""Laptop\"", \""Charger\""]",3055.21,"{\""loyalty\"": \""27%\""}",242248,1,"""Asia""" +2023-03-31,38557,2702,"[\""Headphones\"", \""Tablet\""]",2159.07,{},178892,1,"""North America""" +2024-10-23,38558,216,"[\""Monitor\""]",2348.02,"{\"": \""9%\""}",278878,1,"""South America""" +2024-09-01,38559,2118,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",739.16,{},66967,0,"""Asia""" +2023-02-07,38560,168,"[\""Wireless Mouse\""]",4111.81,"{\"": \""18%\""}",50618,1,"""Asia""" +2024-10-14,38561,3555,"[\""Tablet\""]",1201.24,{},180515,0,"""South America""" +2024-11-10,38562,6289,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3420.04,"{\""loyalty\"": \""19%\""}",213451,0,"""North America""" +2024-11-29,38563,3632,"[\""Laptop\""]",2881.28,"{\""promo\"": \""6%\""}",201336,1,"""South America""" +2023-05-27,38564,8870,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",324.57,{},47768,1,"""Europe""" +2023-07-16,38565,2978,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1937.89,{},205902,0,"""Europe""" +2023-12-20,38566,9554,"[\""Keyboard\""]",2690.88,"{\""seasonal\"": \""23%\""}",226556,0,"""South America""" +2024-11-27,38567,9023,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4477.35,"{\""seasonal\"": \""9%\""}",225614,1,"""North America""" +2023-12-09,38568,4974,"[\""Keyboard\""]",2242.06,{},269201,0,"""Europe""" +2023-02-22,38569,2201,"[\""Phone\""]",2253.21,{},134139,1,"""Africa""" +2023-10-24,38570,8564,"[\""Monitor\"", \""Charger\""]",1504.09,{},152020,1,"""North America""" +2024-08-17,38571,4145,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",310.61,"{\""promo\"": \""24%\""}",103843,0,"""Europe""" +2023-09-20,38572,6758,"[\""Monitor\"", \""Keyboard\""]",3024.6,"{\"": \""16%\""}",196356,1,"""Europe""" +2024-02-26,38573,9687,"[\""Phone\""]",482.42,"{\""loyalty\"": \""20%\""}",294692,0,"""South America""" +2023-09-05,38574,1054,"[\""Laptop\""]",4805.89,{},91942,0,"""North America""" +2024-12-01,38575,612,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3549.28,{},11918,0,"""North America""" +2024-11-02,38576,210,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4534.53,"{\""promo\"": \""9%\""}",37091,1,"""Asia""" +2024-10-25,38577,1351,"[\""Charger\""]",713.4,"{\""seasonal\"": \""8%\""}",10688,1,"""Africa""" +2023-11-05,38578,4668,"[\""Charger\"", \""Tablet\""]",2902.26,{},129597,1,"""Europe""" +2024-07-09,38579,5435,"[\""Monitor\""]",3501.16,"{\""loyalty\"": \""13%\""}",21618,0,"""North America""" +2023-08-25,38580,5276,"[\""Monitor\"", \""Tablet\""]",1316.39,"{\""promo\"": \""16%\""}",70503,0,"""North America""" +2024-01-25,38581,5548,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4171.72,{},140868,0,"""Europe""" +2024-06-26,38582,2560,"[\""Laptop\""]",3622.78,"{\"": \""8%\""}",108344,1,"""Europe""" +2024-07-06,38583,261,"[\""Charger\""]",4804.41,"{\""loyalty\"": \""27%\""}",27674,1,"""Africa""" +2023-04-21,38584,4037,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3104.44,{},39768,0,"""North America""" +2023-11-12,38585,9464,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3132.52,{},248611,1,"""Europe""" +2024-07-26,38586,9224,"[\""Keyboard\""]",628.71,{},145563,1,"""Africa""" +2024-11-22,38587,6894,"[\""Headphones\"", \""Monitor\""]",2953.67,"{\"": \""17%\""}",48552,1,"""Europe""" +2023-07-10,38588,3562,"[\""Keyboard\""]",1310.91,"{\""promo\"": \""10%\""}",203299,0,"""Europe""" +2023-02-01,38589,3606,"[\""Laptop\"", \""Tablet\""]",1136.9,{},220978,0,"""North America""" +2024-02-17,38590,2409,"[\""Wireless Mouse\""]",1760.75,"{\""promo\"": \""14%\""}",41482,0,"""South America""" +2024-08-08,38591,566,"[\""Charger\"", \""Keyboard\""]",4163.36,"{\""seasonal\"": \""9%\""}",210844,0,"""North America""" +2024-10-01,38592,3961,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4552.65,"{\""loyalty\"": \""9%\""}",282835,0,"""North America""" +2023-06-30,38593,2031,"[\""Phone\""]",2820.02,"{\""loyalty\"": \""26%\""}",23219,0,"""Africa""" +2024-01-07,38594,8929,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4545.76,"{\""promo\"": \""20%\""}",90870,0,"""Africa""" +2023-10-15,38595,948,"[\""Headphones\""]",4980.62,{},267482,0,"""Asia""" +2024-05-01,38596,9922,"[\""Laptop\""]",3695.34,{},29086,0,"""Asia""" +2023-12-16,38597,4030,"[\""Laptop\""]",1701.93,"{\""seasonal\"": \""11%\""}",80686,1,"""Africa""" +2023-07-05,38598,1796,"[\""Headphones\"", \""Charger\""]",4027.19,{},74178,0,"""South America""" +2024-05-18,38599,9756,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1177.81,{},279838,1,"""South America""" +2024-07-30,38600,1150,"[\""Tablet\"", \""Wireless Mouse\""]",487.01,"{\""loyalty\"": \""18%\""}",296112,0,"""Asia""" +2023-03-26,38601,4605,"[\""Headphones\"", \""Wireless Mouse\""]",2223.86,"{\""loyalty\"": \""19%\""}",278633,1,"""South America""" +2024-03-28,38602,7740,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",725.49,{},267737,1,"""Asia""" +2024-12-02,38603,7993,"[\""Phone\"", \""Keyboard\""]",506.41,"{\""promo\"": \""12%\""}",117161,1,"""South America""" +2024-04-02,38604,535,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3198.44,{},156187,1,"""North America""" +2024-10-17,38605,7445,"[\""Phone\"", \""Wireless Mouse\""]",1460.96,{},285864,1,"""Africa""" +2024-03-12,38606,6465,"[\""Phone\"", \""Charger\"", \""Headphones\""]",797.26,{},283406,0,"""Europe""" +2023-02-01,38607,3437,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3038.0,"{\""promo\"": \""26%\""}",4423,1,"""Africa""" +2024-09-11,38608,4302,"[\""Wireless Mouse\""]",1286.35,"{\""seasonal\"": \""18%\""}",25227,0,"""North America""" +2023-12-08,38609,5506,"[\""Wireless Mouse\"", \""Headphones\""]",4179.41,"{\"": \""29%\""}",238342,1,"""Asia""" +2023-08-06,38610,9239,"[\""Monitor\""]",2010.18,"{\""loyalty\"": \""24%\""}",153480,0,"""South America""" +2024-01-28,38611,2982,"[\""Charger\""]",2321.96,{},249506,1,"""Asia""" +2023-03-25,38612,107,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1070.67,"{\""promo\"": \""29%\""}",28843,0,"""South America""" +2024-08-02,38613,3742,"[\""Keyboard\"", \""Headphones\""]",4993.08,{},119912,0,"""Africa""" +2023-03-24,38614,5499,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1581.18,"{\""loyalty\"": \""8%\""}",116449,0,"""Europe""" +2024-05-22,38615,9953,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",361.0,"{\"": \""22%\""}",223001,0,"""North America""" +2023-11-17,38616,1858,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3787.73,"{\""loyalty\"": \""13%\""}",80026,1,"""Europe""" +2024-10-23,38617,2765,"[\""Tablet\"", \""Phone\""]",2993.33,"{\""loyalty\"": \""6%\""}",43988,0,"""Africa""" +2024-09-04,38618,3112,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4399.61,{},265217,1,"""North America""" +2024-07-21,38619,6983,"[\""Wireless Mouse\"", \""Monitor\""]",3132.17,{},245131,0,"""North America""" +2023-02-10,38620,4617,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",708.12,"{\""promo\"": \""13%\""}",73583,0,"""North America""" +2023-11-10,38621,9096,"[\""Charger\""]",1760.16,{},67112,0,"""Asia""" +2023-11-12,38622,3179,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3638.9,{},237541,0,"""Africa""" +2023-08-23,38623,8,"[\""Monitor\""]",2204.7,"{\""seasonal\"": \""5%\""}",134047,1,"""North America""" +2024-03-07,38624,8953,"[\""Tablet\""]",1724.7,{},209184,0,"""Europe""" +2023-03-12,38625,6318,"[\""Charger\"", \""Keyboard\""]",370.71,{},53405,1,"""South America""" +2024-01-02,38626,4779,"[\""Wireless Mouse\"", \""Keyboard\""]",2040.29,"{\""loyalty\"": \""30%\""}",196444,0,"""North America""" +2023-07-09,38627,7459,"[\""Monitor\""]",445.68,{},297588,0,"""North America""" +2024-04-30,38628,9571,"[\""Monitor\"", \""Tablet\""]",187.68,{},95963,0,"""Asia""" +2024-03-29,38629,1288,"[\""Headphones\""]",3809.29,{},112894,0,"""Asia""" +2023-03-22,38630,6679,"[\""Tablet\""]",4185.22,"{\""promo\"": \""16%\""}",27765,1,"""North America""" +2024-03-03,38631,5439,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4268.63,{},109163,1,"""Asia""" +2023-07-21,38632,1422,"[\""Headphones\""]",4439.58,{},198053,0,"""Asia""" +2023-01-02,38633,7651,"[\""Tablet\"", \""Charger\""]",3944.73,"{\"": \""16%\""}",136087,0,"""North America""" +2024-05-21,38634,775,"[\""Wireless Mouse\""]",2722.83,{},256864,0,"""South America""" +2024-08-07,38635,8750,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3946.25,{},75725,0,"""North America""" +2024-01-19,38636,8140,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3703.14,{},156973,0,"""Asia""" +2023-09-02,38637,4606,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3029.62,{},4527,1,"""North America""" +2023-05-07,38638,1929,"[\""Charger\""]",4474.32,"{\""seasonal\"": \""27%\""}",122388,1,"""South America""" +2024-04-08,38639,9837,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4104.25,"{\""seasonal\"": \""8%\""}",194003,1,"""North America""" +2023-09-04,38640,5688,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1882.53,{},82621,0,"""Africa""" +2023-09-07,38641,2904,"[\""Laptop\""]",99.04,"{\""loyalty\"": \""6%\""}",3713,0,"""Asia""" +2024-12-02,38642,2544,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2180.11,"{\""promo\"": \""24%\""}",217645,1,"""North America""" +2023-07-20,38643,8757,"[\""Monitor\"", \""Charger\""]",1913.84,"{\""seasonal\"": \""9%\""}",23856,1,"""Africa""" +2024-10-05,38644,8108,"[\""Tablet\"", \""Laptop\""]",751.38,{},218716,0,"""North America""" +2024-05-21,38645,4582,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4611.78,{},157112,1,"""Europe""" +2024-04-25,38646,521,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4107.69,"{\"": \""18%\""}",156154,1,"""Europe""" +2023-08-05,38647,7048,"[\""Tablet\"", \""Charger\""]",80.49,{},29933,1,"""South America""" +2023-06-30,38648,2757,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3211.45,"{\"": \""26%\""}",147973,0,"""Europe""" +2024-01-14,38649,729,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4749.47,"{\""loyalty\"": \""16%\""}",230029,1,"""Asia""" +2023-03-28,38650,2505,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4358.49,{},49602,0,"""South America""" +2024-02-07,38651,16,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2342.31,{},60861,1,"""South America""" +2023-08-13,38652,8920,"[\""Wireless Mouse\"", \""Phone\""]",335.9,"{\""promo\"": \""20%\""}",145417,1,"""Asia""" +2024-08-31,38653,1581,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3425.66,{},170008,1,"""Europe""" +2023-10-14,38654,398,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2303.77,"{\""seasonal\"": \""30%\""}",8304,1,"""South America""" +2023-02-08,38655,7663,"[\""Wireless Mouse\""]",3414.18,{},276731,1,"""Asia""" +2024-10-08,38656,532,"[\""Phone\"", \""Headphones\""]",3923.7,"{\""loyalty\"": \""29%\""}",256689,0,"""South America""" +2023-05-14,38657,4283,"[\""Phone\"", \""Monitor\""]",1509.44,{},258007,1,"""South America""" +2023-05-25,38658,2861,"[\""Phone\""]",656.42,{},26451,0,"""North America""" +2023-01-14,38659,6652,"[\""Charger\"", \""Laptop\""]",4106.51,"{\""seasonal\"": \""6%\""}",251750,1,"""South America""" +2024-04-27,38660,20,"[\""Headphones\"", \""Tablet\""]",132.35,"{\""seasonal\"": \""26%\""}",46582,0,"""Africa""" +2023-02-21,38661,4899,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1864.98,{},17893,1,"""North America""" +2023-12-18,38662,5727,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2262.92,"{\""seasonal\"": \""9%\""}",100945,1,"""North America""" +2023-06-06,38663,3195,"[\""Monitor\""]",2617.32,{},3637,1,"""Europe""" +2024-12-08,38664,4078,"[\""Tablet\""]",4826.12,{},56984,1,"""Europe""" +2024-10-07,38665,418,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2976.42,{},156084,0,"""North America""" +2023-11-28,38666,3931,"[\""Charger\""]",3406.49,{},253867,1,"""South America""" +2024-03-30,38667,18,"[\""Monitor\"", \""Keyboard\""]",310.01,{},160019,1,"""South America""" +2023-03-04,38668,2506,"[\""Charger\"", \""Keyboard\""]",3387.22,{},91318,1,"""Europe""" +2024-09-12,38669,9892,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4681.33,{},88860,0,"""Asia""" +2024-08-29,38670,3408,"[\""Keyboard\"", \""Headphones\""]",1781.65,{},201748,0,"""Africa""" +2023-12-31,38671,6785,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3706.44,{},81295,0,"""South America""" +2024-02-03,38672,3939,"[\""Keyboard\""]",1934.28,{},296579,0,"""Asia""" +2024-04-21,38673,660,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4202.25,{},79157,0,"""North America""" +2023-02-09,38674,3733,"[\""Wireless Mouse\""]",3216.8,{},120443,1,"""Africa""" +2023-01-07,38675,1918,"[\""Wireless Mouse\"", \""Phone\""]",415.39,{},265560,0,"""Africa""" +2024-07-24,38676,4097,"[\""Charger\"", \""Phone\""]",1592.99,{},122747,1,"""South America""" +2024-02-17,38677,7410,"[\""Charger\""]",4035.9,{},299528,0,"""Europe""" +2024-09-11,38678,1162,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3838.05,"{\""promo\"": \""30%\""}",281824,0,"""South America""" +2023-07-19,38679,1947,"[\""Phone\""]",4151.97,{},50509,1,"""Europe""" +2023-07-11,38680,3915,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4731.73,{},226286,0,"""North America""" +2023-04-15,38681,2637,"[\""Headphones\""]",384.73,{},50148,0,"""Africa""" +2024-01-21,38682,4507,"[\""Phone\"", \""Keyboard\""]",4428.36,{},142762,1,"""South America""" +2023-05-28,38683,5637,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3543.85,"{\"": \""26%\""}",32022,1,"""Europe""" +2024-07-31,38684,805,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",486.82,{},248781,1,"""North America""" +2023-11-14,38685,303,"[\""Keyboard\"", \""Laptop\""]",1123.12,{},286565,1,"""Africa""" +2024-03-24,38686,2382,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",305.11,"{\""promo\"": \""7%\""}",146179,1,"""North America""" +2023-03-01,38687,533,"[\""Wireless Mouse\"", \""Monitor\""]",3561.23,{},53553,0,"""North America""" +2024-01-15,38688,2305,"[\""Tablet\"", \""Laptop\""]",1871.57,"{\""promo\"": \""23%\""}",60164,0,"""South America""" +2024-05-23,38689,8335,"[\""Monitor\""]",2374.1,"{\""promo\"": \""30%\""}",41294,1,"""Europe""" +2023-10-24,38690,9399,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2201.54,{},181727,1,"""North America""" +2024-04-06,38691,8077,"[\""Headphones\"", \""Laptop\""]",4550.04,{},30837,0,"""North America""" +2024-04-17,38692,7592,"[\""Wireless Mouse\""]",1732.0,"{\"": \""9%\""}",235923,0,"""South America""" +2023-04-11,38693,9112,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",287.77,"{\""promo\"": \""19%\""}",33062,1,"""South America""" +2024-03-12,38694,3224,"[\""Headphones\""]",2551.96,{},161543,1,"""North America""" +2023-03-03,38695,1360,"[\""Charger\""]",110.84,{},173068,0,"""Africa""" +2024-09-11,38696,5224,"[\""Headphones\""]",2501.96,{},202651,0,"""Europe""" +2023-01-01,38697,988,"[\""Wireless Mouse\"", \""Tablet\""]",3777.13,"{\""loyalty\"": \""24%\""}",174405,0,"""South America""" +2023-05-21,38698,1849,"[\""Keyboard\"", \""Monitor\""]",503.9,"{\""promo\"": \""9%\""}",179278,0,"""North America""" +2024-10-16,38699,5782,"[\""Laptop\"", \""Headphones\""]",784.75,{},57307,1,"""Africa""" +2024-07-26,38700,1519,"[\""Monitor\"", \""Charger\""]",519.38,"{\""loyalty\"": \""18%\""}",244382,1,"""Asia""" +2023-12-13,38701,2047,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4967.41,"{\""promo\"": \""30%\""}",137414,1,"""North America""" +2023-12-08,38702,5375,"[\""Headphones\"", \""Tablet\""]",2132.62,"{\""seasonal\"": \""28%\""}",29469,1,"""Europe""" +2023-07-03,38703,8438,"[\""Monitor\"", \""Headphones\""]",3792.56,"{\""loyalty\"": \""9%\""}",127448,1,"""Asia""" +2024-08-21,38704,726,"[\""Phone\"", \""Laptop\""]",4749.06,"{\""promo\"": \""22%\""}",100568,0,"""Africa""" +2023-01-10,38705,6778,"[\""Wireless Mouse\""]",3109.46,"{\""promo\"": \""14%\""}",280655,1,"""Europe""" +2024-02-20,38706,5839,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2442.46,{},115341,0,"""Africa""" +2024-05-13,38707,8803,"[\""Charger\"", \""Tablet\""]",342.79,{},205267,1,"""Asia""" +2023-07-20,38708,4470,"[\""Phone\""]",2812.08,{},247666,1,"""South America""" +2024-01-22,38709,6852,"[\""Charger\""]",2798.62,"{\"": \""5%\""}",115039,1,"""North America""" +2023-02-28,38710,8882,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",670.03,"{\""seasonal\"": \""23%\""}",198340,0,"""Europe""" +2023-10-18,38711,720,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",792.65,"{\""promo\"": \""8%\""}",195854,0,"""Africa""" +2023-07-11,38712,1319,"[\""Charger\"", \""Phone\""]",881.17,"{\""seasonal\"": \""24%\""}",207833,0,"""Africa""" +2023-09-23,38713,2695,"[\""Monitor\"", \""Tablet\""]",3568.44,"{\""loyalty\"": \""13%\""}",298149,1,"""Africa""" +2023-03-13,38714,4875,"[\""Headphones\"", \""Wireless Mouse\""]",4339.6,{},131611,1,"""Asia""" +2024-09-09,38715,8525,"[\""Laptop\"", \""Tablet\""]",2855.44,{},149892,0,"""Africa""" +2024-06-19,38716,5907,"[\""Charger\"", \""Tablet\""]",2417.18,"{\""loyalty\"": \""19%\""}",58292,0,"""Asia""" +2023-08-02,38717,2306,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2325.93,{},268568,0,"""South America""" +2023-01-22,38718,851,"[\""Tablet\"", \""Laptop\""]",4445.23,{},66708,0,"""South America""" +2024-07-01,38719,678,"[\""Charger\"", \""Laptop\""]",1041.29,"{\""seasonal\"": \""13%\""}",98602,0,"""North America""" +2024-10-24,38720,8533,"[\""Keyboard\"", \""Wireless Mouse\""]",4334.45,"{\""loyalty\"": \""6%\""}",218148,1,"""South America""" +2024-04-15,38721,4089,"[\""Phone\"", \""Laptop\""]",4344.91,{},130567,0,"""Asia""" +2023-07-06,38722,9361,"[\""Phone\"", \""Keyboard\""]",827.28,{},295945,0,"""Europe""" +2023-07-13,38723,7360,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4205.26,"{\""loyalty\"": \""9%\""}",155586,0,"""Europe""" +2024-07-17,38724,8394,"[\""Monitor\""]",880.09,"{\"": \""5%\""}",168092,0,"""North America""" +2023-09-20,38725,9536,"[\""Tablet\"", \""Phone\"", \""Charger\""]",840.13,"{\""seasonal\"": \""8%\""}",295537,1,"""Asia""" +2024-10-24,38726,9333,"[\""Monitor\""]",1400.75,"{\""seasonal\"": \""17%\""}",148512,1,"""Europe""" +2024-04-12,38727,5060,"[\""Laptop\""]",1258.52,"{\""loyalty\"": \""29%\""}",74306,1,"""South America""" +2023-12-07,38728,4480,"[\""Tablet\""]",2665.54,"{\""seasonal\"": \""5%\""}",41410,1,"""North America""" +2024-08-26,38729,7265,"[\""Monitor\""]",937.8,"{\""promo\"": \""25%\""}",177037,1,"""South America""" +2024-02-05,38730,1643,"[\""Laptop\"", \""Tablet\""]",4167.22,"{\""promo\"": \""14%\""}",93427,0,"""Europe""" +2023-02-06,38731,3809,"[\""Monitor\"", \""Tablet\""]",4607.83,"{\"": \""10%\""}",82707,1,"""North America""" +2024-11-18,38732,7191,"[\""Keyboard\"", \""Headphones\""]",4557.22,{},173246,0,"""South America""" +2023-11-21,38733,3051,"[\""Charger\""]",998.46,"{\""promo\"": \""10%\""}",287337,1,"""Asia""" +2024-07-11,38734,3311,"[\""Phone\""]",2840.0,{},109079,0,"""Asia""" +2024-06-14,38735,5689,"[\""Wireless Mouse\""]",3107.75,{},248991,0,"""Africa""" +2024-08-08,38736,2691,"[\""Phone\"", \""Wireless Mouse\""]",3212.9,{},43807,0,"""Asia""" +2024-06-27,38737,3255,"[\""Laptop\""]",4935.32,"{\""seasonal\"": \""11%\""}",139799,1,"""North America""" +2023-12-14,38738,4937,"[\""Wireless Mouse\"", \""Headphones\""]",2199.21,"{\""seasonal\"": \""7%\""}",246086,1,"""South America""" +2023-05-27,38739,6884,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1620.36,{},94430,1,"""Africa""" +2024-01-04,38740,3946,"[\""Phone\""]",813.66,{},132788,0,"""North America""" +2024-06-23,38741,7236,"[\""Tablet\"", \""Wireless Mouse\""]",4019.21,{},164932,0,"""Europe""" +2024-01-02,38742,1007,"[\""Tablet\""]",1396.79,{},101362,1,"""Europe""" +2024-05-14,38743,4150,"[\""Headphones\"", \""Wireless Mouse\""]",3321.31,"{\""loyalty\"": \""22%\""}",69247,1,"""Europe""" +2023-07-30,38744,5536,"[\""Headphones\"", \""Monitor\""]",365.5,{},88461,1,"""South America""" +2023-06-01,38745,3091,"[\""Phone\"", \""Headphones\""]",4307.97,"{\"": \""10%\""}",31130,1,"""Europe""" +2024-03-23,38746,5597,"[\""Keyboard\"", \""Monitor\""]",4659.0,{},71590,1,"""North America""" +2023-11-28,38747,377,"[\""Wireless Mouse\"", \""Monitor\""]",2570.51,"{\""seasonal\"": \""24%\""}",197305,0,"""South America""" +2024-10-28,38748,2337,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1408.72,{},283039,1,"""North America""" +2023-06-13,38749,776,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3260.53,"{\""promo\"": \""24%\""}",63408,1,"""South America""" +2024-04-12,38750,1822,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4649.13,{},239660,0,"""Africa""" +2023-04-16,38751,8714,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4894.85,"{\""promo\"": \""25%\""}",250005,1,"""Europe""" +2024-04-17,38752,5377,"[\""Keyboard\""]",3402.88,"{\""seasonal\"": \""11%\""}",127054,0,"""Africa""" +2023-11-27,38753,9831,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4943.38,"{\""promo\"": \""26%\""}",268688,0,"""South America""" +2024-08-15,38754,3769,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2860.74,{},48752,0,"""South America""" +2023-12-04,38755,4166,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",254.35,{},55155,0,"""North America""" +2023-08-07,38756,4136,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1912.52,{},88553,0,"""Africa""" +2023-12-29,38757,5232,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4659.7,{},22808,1,"""Africa""" +2023-07-24,38758,2516,"[\""Headphones\""]",2968.41,{},62108,1,"""North America""" +2024-05-04,38759,2201,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3382.64,"{\"": \""7%\""}",93509,0,"""Asia""" +2023-06-21,38760,8849,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3725.62,"{\""loyalty\"": \""10%\""}",265632,1,"""North America""" +2024-05-06,38761,9724,"[\""Laptop\""]",3365.02,"{\""seasonal\"": \""29%\""}",171775,1,"""Africa""" +2024-08-19,38762,4812,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",954.48,"{\""promo\"": \""29%\""}",113868,1,"""South America""" +2023-12-13,38763,2357,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3225.23,{},147858,0,"""Europe""" +2023-01-18,38764,8022,"[\""Keyboard\"", \""Tablet\""]",3329.47,{},114600,1,"""North America""" +2023-03-02,38765,3131,"[\""Keyboard\""]",3465.66,"{\""promo\"": \""30%\""}",8014,1,"""South America""" +2023-04-23,38766,63,"[\""Keyboard\""]",2011.71,{},110881,0,"""Africa""" +2024-03-11,38767,6863,"[\""Keyboard\""]",4270.98,"{\"": \""11%\""}",1802,0,"""Europe""" +2023-02-15,38768,8367,"[\""Charger\""]",1089.59,{},37170,1,"""South America""" +2024-01-23,38769,6299,"[\""Tablet\""]",3569.43,{},221323,0,"""North America""" +2023-02-04,38770,9675,"[\""Keyboard\""]",2634.85,{},96720,0,"""North America""" +2024-09-08,38771,7180,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4784.97,"{\"": \""22%\""}",270452,1,"""Africa""" +2024-09-03,38772,9470,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",634.1,"{\"": \""24%\""}",175653,1,"""South America""" +2024-12-28,38773,8386,"[\""Charger\""]",839.45,{},155292,1,"""Africa""" +2024-07-08,38774,6103,"[\""Wireless Mouse\""]",4218.48,{},145741,0,"""Asia""" +2024-05-23,38775,5831,"[\""Tablet\"", \""Charger\""]",2044.61,"{\""seasonal\"": \""19%\""}",200972,0,"""South America""" +2023-12-20,38776,6934,"[\""Charger\""]",4493.04,"{\""loyalty\"": \""5%\""}",138482,1,"""South America""" +2024-08-18,38777,5018,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1872.62,"{\""loyalty\"": \""26%\""}",264219,0,"""Europe""" +2023-10-08,38778,6834,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1045.94,"{\""seasonal\"": \""27%\""}",24259,1,"""Asia""" +2023-03-13,38779,5943,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4170.19,{},104364,1,"""Asia""" +2023-03-03,38780,1629,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4580.32,"{\""loyalty\"": \""20%\""}",106170,0,"""South America""" +2024-02-03,38781,9115,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",146.37,"{\"": \""7%\""}",51946,1,"""South America""" +2023-11-24,38782,3673,"[\""Monitor\""]",3429.12,"{\""promo\"": \""12%\""}",3227,0,"""Asia""" +2024-03-30,38783,1197,"[\""Monitor\"", \""Charger\""]",3089.53,"{\""loyalty\"": \""13%\""}",52480,0,"""Africa""" +2024-10-22,38784,7944,"[\""Laptop\"", \""Phone\""]",3590.32,"{\""loyalty\"": \""17%\""}",76579,0,"""Africa""" +2023-10-09,38785,6353,"[\""Laptop\""]",1258.38,{},76264,0,"""Asia""" +2023-11-28,38786,1517,"[\""Phone\""]",3746.6,"{\""seasonal\"": \""15%\""}",6337,1,"""Africa""" +2023-10-09,38787,3101,"[\""Headphones\"", \""Laptop\""]",682.38,"{\""seasonal\"": \""8%\""}",158924,0,"""South America""" +2024-02-23,38788,4847,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1990.46,"{\""loyalty\"": \""27%\""}",188366,0,"""Europe""" +2024-06-24,38789,2635,"[\""Charger\"", \""Headphones\""]",1247.57,"{\""seasonal\"": \""9%\""}",180656,0,"""North America""" +2023-07-27,38790,69,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4006.84,{},253923,1,"""Europe""" +2023-05-10,38791,1853,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",676.04,"{\""promo\"": \""14%\""}",282444,0,"""South America""" +2023-12-01,38792,7227,"[\""Monitor\""]",2784.83,"{\""seasonal\"": \""10%\""}",258480,1,"""Europe""" +2024-11-21,38793,9335,"[\""Wireless Mouse\""]",2134.16,{},180039,1,"""Europe""" +2023-03-09,38794,2407,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4963.55,"{\""promo\"": \""23%\""}",112834,0,"""South America""" +2024-02-23,38795,6086,"[\""Headphones\"", \""Wireless Mouse\""]",3584.51,{},290045,1,"""North America""" +2024-01-22,38796,3827,"[\""Monitor\""]",2586.43,{},271569,0,"""Europe""" +2024-09-24,38797,1261,"[\""Wireless Mouse\""]",1258.93,"{\""seasonal\"": \""24%\""}",22027,0,"""North America""" +2023-01-23,38798,4334,"[\""Charger\"", \""Wireless Mouse\""]",4254.61,{},76249,0,"""South America""" +2023-12-31,38799,8705,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4747.58,"{\""seasonal\"": \""15%\""}",106543,1,"""Asia""" +2024-07-21,38800,9867,"[\""Wireless Mouse\""]",1511.77,"{\""seasonal\"": \""12%\""}",48127,0,"""Africa""" +2024-10-04,38801,6308,"[\""Charger\""]",2464.39,"{\""promo\"": \""5%\""}",175763,1,"""Europe""" +2023-10-04,38802,8481,"[\""Wireless Mouse\"", \""Keyboard\""]",4084.44,{},10611,0,"""Africa""" +2024-06-17,38803,3952,"[\""Laptop\""]",4196.78,"{\"": \""21%\""}",248522,1,"""North America""" +2023-03-11,38804,1501,"[\""Phone\"", \""Charger\""]",3723.44,{},214386,1,"""Africa""" +2024-04-02,38805,2915,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1192.49,"{\""seasonal\"": \""10%\""}",10144,0,"""South America""" +2024-01-22,38806,1134,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3716.7,"{\""loyalty\"": \""10%\""}",185841,1,"""Asia""" +2023-12-06,38807,9604,"[\""Wireless Mouse\""]",1049.08,"{\""seasonal\"": \""20%\""}",268819,0,"""Africa""" +2024-03-12,38808,6809,"[\""Wireless Mouse\"", \""Phone\""]",4360.96,{},257759,0,"""Africa""" +2024-07-13,38809,3902,"[\""Tablet\"", \""Headphones\""]",3918.18,{},137926,0,"""Asia""" +2024-06-30,38810,3518,"[\""Charger\"", \""Monitor\""]",3388.1,"{\"": \""12%\""}",56823,1,"""North America""" +2023-07-10,38811,1533,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2491.85,{},154536,0,"""South America""" +2023-07-31,38812,3520,"[\""Headphones\"", \""Charger\""]",3338.35,"{\""promo\"": \""30%\""}",8880,0,"""North America""" +2024-02-14,38813,1836,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3735.6,"{\""seasonal\"": \""17%\""}",274876,1,"""Africa""" +2023-09-18,38814,9152,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",291.4,"{\""promo\"": \""12%\""}",192879,1,"""North America""" +2024-04-26,38815,4568,"[\""Charger\""]",2509.11,"{\""promo\"": \""21%\""}",55360,1,"""Africa""" +2023-01-25,38816,9069,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",432.53,{},157801,0,"""South America""" +2024-08-17,38817,3881,"[\""Laptop\"", \""Headphones\""]",4404.07,{},22420,1,"""South America""" +2023-11-17,38818,4618,"[\""Headphones\"", \""Charger\""]",1154.02,{},134358,0,"""North America""" +2023-07-29,38819,9554,"[\""Phone\"", \""Wireless Mouse\""]",4926.89,"{\""promo\"": \""10%\""}",14895,1,"""South America""" +2024-02-10,38820,1338,"[\""Monitor\"", \""Keyboard\""]",1820.47,{},66431,1,"""North America""" +2023-08-30,38821,3106,"[\""Laptop\""]",1249.11,"{\""loyalty\"": \""23%\""}",266029,0,"""Europe""" +2023-04-07,38822,6623,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1703.76,"{\"": \""9%\""}",84900,0,"""Asia""" +2023-07-16,38823,8517,"[\""Phone\""]",595.47,"{\""loyalty\"": \""7%\""}",36057,0,"""North America""" +2023-09-21,38824,6192,"[\""Laptop\""]",1188.64,"{\""promo\"": \""24%\""}",234253,0,"""Africa""" +2024-12-06,38825,6801,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3125.09,{},74306,0,"""South America""" +2024-05-21,38826,7245,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4261.69,"{\""promo\"": \""17%\""}",34898,1,"""South America""" +2023-07-30,38827,8088,"[\""Charger\""]",4951.64,"{\""loyalty\"": \""10%\""}",159427,0,"""Africa""" +2024-01-01,38828,4635,"[\""Phone\""]",687.21,{},215567,0,"""Asia""" +2024-08-22,38829,6098,"[\""Keyboard\""]",411.33,{},70102,0,"""Africa""" +2023-11-28,38830,6665,"[\""Laptop\"", \""Monitor\""]",3586.59,{},2439,0,"""Europe""" +2024-08-09,38831,2275,"[\""Wireless Mouse\"", \""Monitor\""]",2778.7,{},204811,1,"""South America""" +2024-01-10,38832,6897,"[\""Charger\"", \""Monitor\""]",1781.02,"{\""seasonal\"": \""29%\""}",57152,1,"""Asia""" +2023-09-01,38833,7635,"[\""Keyboard\"", \""Monitor\""]",1103.45,"{\"": \""12%\""}",161249,1,"""South America""" +2024-01-08,38834,1760,"[\""Keyboard\"", \""Wireless Mouse\""]",2783.64,"{\""promo\"": \""20%\""}",170626,0,"""Africa""" +2023-09-15,38835,9994,"[\""Charger\"", \""Wireless Mouse\""]",3036.99,"{\"": \""13%\""}",227367,1,"""Africa""" +2024-08-31,38836,808,"[\""Laptop\"", \""Charger\""]",2477.87,{},211146,1,"""South America""" +2023-10-24,38837,3373,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1702.04,{},123298,1,"""South America""" +2024-06-12,38838,9448,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1649.3,{},214277,0,"""Africa""" +2024-06-27,38839,1217,"[\""Tablet\""]",4870.67,"{\""promo\"": \""9%\""}",19333,1,"""South America""" +2023-01-05,38840,698,"[\""Monitor\""]",575.94,{},285569,1,"""Africa""" +2023-03-25,38841,6863,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1052.41,"{\"": \""22%\""}",208873,0,"""Europe""" +2023-11-17,38842,4595,"[\""Phone\""]",4434.57,{},161695,0,"""Africa""" +2023-07-30,38843,7831,"[\""Headphones\""]",4924.8,{},34655,0,"""South America""" +2023-08-22,38844,3563,"[\""Tablet\""]",1671.72,"{\""seasonal\"": \""26%\""}",93213,0,"""Asia""" +2023-12-18,38845,4427,"[\""Headphones\""]",1544.14,{},266332,1,"""Asia""" +2024-10-19,38846,6641,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2590.65,{},62379,0,"""Asia""" +2023-07-21,38847,8278,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3443.71,"{\"": \""12%\""}",240014,0,"""South America""" +2024-09-12,38848,8913,"[\""Tablet\""]",209.57,{},147949,0,"""North America""" +2024-03-30,38849,7351,"[\""Tablet\"", \""Wireless Mouse\""]",852.83,"{\""seasonal\"": \""29%\""}",200644,1,"""North America""" +2024-11-09,38850,8404,"[\""Phone\"", \""Monitor\""]",2120.46,"{\""seasonal\"": \""14%\""}",213736,0,"""Europe""" +2024-12-04,38851,3401,"[\""Monitor\"", \""Keyboard\""]",833.03,"{\"": \""20%\""}",298751,0,"""Europe""" +2024-05-23,38852,2123,"[\""Monitor\"", \""Charger\""]",4740.4,"{\""loyalty\"": \""21%\""}",117873,1,"""North America""" +2024-07-13,38853,4773,"[\""Headphones\""]",2375.29,{},172145,1,"""Europe""" +2024-10-20,38854,9222,"[\""Monitor\""]",4449.78,"{\""loyalty\"": \""17%\""}",154583,1,"""North America""" +2024-02-14,38855,1937,"[\""Tablet\"", \""Phone\""]",335.7,"{\""seasonal\"": \""7%\""}",231395,0,"""Europe""" +2023-09-14,38856,4636,"[\""Charger\"", \""Monitor\""]",4532.13,{},21350,0,"""Europe""" +2023-09-24,38857,2977,"[\""Charger\""]",351.86,{},79010,0,"""Europe""" +2023-01-27,38858,6093,"[\""Laptop\""]",4337.44,{},157005,1,"""South America""" +2023-04-16,38859,7144,"[\""Wireless Mouse\"", \""Phone\""]",3156.23,"{\""promo\"": \""5%\""}",256522,1,"""Asia""" +2023-02-27,38860,8867,"[\""Laptop\"", \""Phone\""]",4902.21,{},172500,0,"""Africa""" +2024-03-10,38861,6781,"[\""Headphones\""]",137.97,{},93763,1,"""North America""" +2024-11-08,38862,2513,"[\""Charger\"", \""Keyboard\""]",1593.03,{},44660,0,"""Europe""" +2023-11-24,38863,5334,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",988.02,"{\""promo\"": \""23%\""}",132490,0,"""Africa""" +2024-09-29,38864,4451,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",164.8,"{\""promo\"": \""16%\""}",188177,0,"""Asia""" +2024-08-23,38865,5417,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2419.4,"{\""promo\"": \""21%\""}",217267,1,"""North America""" +2024-05-10,38866,4848,"[\""Charger\""]",4803.3,{},259941,1,"""Europe""" +2024-11-26,38867,8704,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4261.43,"{\""loyalty\"": \""19%\""}",168947,0,"""Europe""" +2024-08-28,38868,8605,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1306.99,{},265477,1,"""Asia""" +2024-07-21,38869,4186,"[\""Laptop\"", \""Tablet\""]",3545.2,"{\""loyalty\"": \""7%\""}",158872,0,"""Asia""" +2023-11-26,38870,658,"[\""Charger\""]",86.33,"{\""promo\"": \""14%\""}",11843,0,"""Europe""" +2023-05-02,38871,5892,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",772.43,"{\""loyalty\"": \""11%\""}",175747,0,"""South America""" +2024-09-24,38872,6701,"[\""Tablet\"", \""Phone\""]",3527.02,{},263930,0,"""Africa""" +2023-03-25,38873,8815,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2329.36,"{\""promo\"": \""7%\""}",255598,1,"""Africa""" +2023-06-20,38874,9363,"[\""Tablet\"", \""Headphones\""]",485.63,"{\"": \""22%\""}",113335,1,"""North America""" +2023-12-30,38875,4606,"[\""Monitor\""]",3383.99,"{\""seasonal\"": \""6%\""}",285150,1,"""Europe""" +2023-07-02,38876,5248,"[\""Laptop\"", \""Charger\""]",4014.87,"{\""seasonal\"": \""28%\""}",294360,0,"""North America""" +2023-02-08,38877,8610,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1139.64,"{\""loyalty\"": \""22%\""}",248764,0,"""Europe""" +2024-12-18,38878,6688,"[\""Monitor\""]",1626.74,"{\""promo\"": \""23%\""}",88537,0,"""North America""" +2024-04-02,38879,9791,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3706.32,{},204470,1,"""Africa""" +2024-03-30,38880,1716,"[\""Headphones\"", \""Wireless Mouse\""]",2459.85,"{\""seasonal\"": \""8%\""}",203150,1,"""Europe""" +2023-12-07,38881,3455,"[\""Tablet\"", \""Keyboard\""]",670.99,{},275652,1,"""Europe""" +2024-12-14,38882,4652,"[\""Keyboard\""]",1818.1,{},5910,1,"""South America""" +2024-12-30,38883,879,"[\""Headphones\"", \""Laptop\""]",2313.3,{},5570,0,"""Europe""" +2024-03-07,38884,4338,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4107.62,{},130540,0,"""North America""" +2024-09-29,38885,721,"[\""Wireless Mouse\"", \""Headphones\""]",2168.03,{},252042,1,"""Europe""" +2024-10-11,38886,5119,"[\""Monitor\""]",4231.2,"{\""loyalty\"": \""29%\""}",215202,1,"""Asia""" +2024-02-16,38887,1996,"[\""Phone\""]",3522.16,{},236724,1,"""North America""" +2024-11-02,38888,3712,"[\""Headphones\"", \""Charger\""]",3054.9,"{\""seasonal\"": \""12%\""}",98816,0,"""Europe""" +2023-03-16,38889,522,"[\""Wireless Mouse\""]",4470.55,{},175708,1,"""Europe""" +2023-10-13,38890,6762,"[\""Charger\""]",4508.52,"{\"": \""7%\""}",13250,0,"""Europe""" +2023-02-04,38891,2515,"[\""Tablet\"", \""Charger\""]",758.77,{},173655,1,"""North America""" +2023-11-27,38892,5990,"[\""Monitor\""]",1730.13,{},48609,0,"""Europe""" +2023-11-11,38893,299,"[\""Headphones\""]",3521.65,"{\""seasonal\"": \""21%\""}",186892,0,"""Europe""" +2024-05-25,38894,4520,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1506.44,"{\""loyalty\"": \""23%\""}",281537,1,"""Europe""" +2023-04-02,38895,5483,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",710.06,{},248012,0,"""Asia""" +2023-09-07,38896,1747,"[\""Headphones\"", \""Phone\""]",2035.11,"{\"": \""24%\""}",51369,0,"""North America""" +2023-04-27,38897,886,"[\""Laptop\"", \""Headphones\""]",4199.08,{},175396,1,"""Asia""" +2023-09-03,38898,2987,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3745.55,{},5189,1,"""Europe""" +2023-11-13,38899,3176,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2854.36,"{\"": \""6%\""}",130479,0,"""Asia""" +2023-07-18,38900,6359,"[\""Charger\""]",1788.29,"{\""loyalty\"": \""27%\""}",88054,1,"""Asia""" +2024-09-17,38901,8281,"[\""Wireless Mouse\"", \""Charger\""]",1242.84,{},17646,1,"""Asia""" +2024-06-12,38902,7653,"[\""Headphones\""]",2886.65,{},210666,0,"""South America""" +2023-05-16,38903,4554,"[\""Wireless Mouse\""]",4023.76,"{\"": \""28%\""}",258526,1,"""Africa""" +2024-01-21,38904,9677,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1150.52,"{\""promo\"": \""15%\""}",180634,0,"""South America""" +2024-06-06,38905,8492,"[\""Monitor\"", \""Laptop\""]",1392.55,{},196988,1,"""Asia""" +2023-09-16,38906,8338,"[\""Charger\"", \""Phone\""]",2390.32,{},40774,0,"""Africa""" +2024-09-28,38907,4239,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1846.27,"{\""seasonal\"": \""20%\""}",84168,1,"""South America""" +2023-04-18,38908,193,"[\""Phone\""]",3770.89,{},6631,1,"""North America""" +2023-09-27,38909,2843,"[\""Headphones\"", \""Charger\""]",4070.35,"{\""seasonal\"": \""25%\""}",131997,0,"""Africa""" +2024-07-03,38910,111,"[\""Monitor\""]",4110.15,{},271197,1,"""North America""" +2023-10-16,38911,7855,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2969.54,{},257950,1,"""Africa""" +2023-04-08,38912,1443,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4009.02,{},220401,1,"""Africa""" +2023-12-30,38913,1802,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2835.66,{},131083,1,"""Europe""" +2023-07-13,38914,2488,"[\""Laptop\"", \""Charger\""]",2768.69,{},88052,0,"""North America""" +2023-06-19,38915,2301,"[\""Headphones\"", \""Charger\"", \""Phone\""]",499.14,{},258654,1,"""Europe""" +2024-03-17,38916,8774,"[\""Laptop\""]",4374.36,{},288838,0,"""Asia""" +2024-09-13,38917,2312,"[\""Phone\"", \""Headphones\""]",531.31,"{\""loyalty\"": \""26%\""}",172320,1,"""North America""" +2024-09-19,38918,3230,"[\""Headphones\""]",145.96,{},28861,0,"""Europe""" +2023-02-04,38919,5643,"[\""Monitor\""]",888.12,"{\"": \""8%\""}",65224,1,"""Africa""" +2024-03-01,38920,1560,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1307.37,{},219592,0,"""North America""" +2024-07-16,38921,542,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",938.69,{},269899,0,"""Africa""" +2023-07-03,38922,7171,"[\""Keyboard\""]",910.16,"{\""loyalty\"": \""9%\""}",73894,0,"""Africa""" +2024-05-14,38923,9289,"[\""Laptop\""]",4958.57,"{\""seasonal\"": \""10%\""}",248465,0,"""Africa""" +2023-12-28,38924,1083,"[\""Headphones\"", \""Phone\""]",1223.07,"{\""loyalty\"": \""18%\""}",295138,0,"""Asia""" +2024-01-11,38925,6142,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4901.44,{},121173,0,"""Europe""" +2024-04-17,38926,6596,"[\""Tablet\"", \""Monitor\""]",3673.99,"{\""loyalty\"": \""12%\""}",32866,1,"""Europe""" +2023-10-22,38927,905,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1870.56,{},270120,0,"""Africa""" +2024-07-14,38928,1437,"[\""Keyboard\"", \""Laptop\""]",1168.45,"{\""loyalty\"": \""21%\""}",180743,0,"""Asia""" +2023-11-30,38929,7676,"[\""Laptop\""]",4150.22,{},135787,1,"""South America""" +2023-06-08,38930,2532,"[\""Headphones\"", \""Keyboard\""]",4524.41,"{\""seasonal\"": \""30%\""}",203762,0,"""North America""" +2024-09-09,38931,2794,"[\""Headphones\"", \""Monitor\""]",3986.16,"{\""loyalty\"": \""14%\""}",43208,1,"""Europe""" +2023-02-19,38932,1225,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",977.12,{},105165,0,"""North America""" +2024-03-12,38933,2100,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3395.85,"{\""loyalty\"": \""7%\""}",257705,0,"""Asia""" +2024-05-18,38934,9977,"[\""Monitor\""]",1127.38,{},123699,0,"""Africa""" +2023-11-26,38935,5532,"[\""Headphones\""]",394.99,{},214889,1,"""South America""" +2023-05-06,38936,7428,"[\""Wireless Mouse\"", \""Monitor\""]",3850.48,{},29242,1,"""North America""" +2024-06-21,38937,3424,"[\""Keyboard\"", \""Monitor\""]",3876.05,"{\"": \""9%\""}",294127,0,"""South America""" +2024-09-03,38938,3177,"[\""Headphones\""]",3248.31,{},63404,1,"""North America""" +2024-03-26,38939,7157,"[\""Tablet\""]",1773.79,{},223231,0,"""Asia""" +2023-06-17,38940,7323,"[\""Phone\""]",1231.94,{},9762,1,"""Africa""" +2023-06-02,38941,3552,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",252.45,"{\"": \""28%\""}",127820,1,"""South America""" +2024-10-03,38942,959,"[\""Tablet\""]",1738.19,"{\""seasonal\"": \""14%\""}",112994,1,"""Africa""" +2024-08-11,38943,6364,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4255.64,"{\""promo\"": \""22%\""}",83565,0,"""Asia""" +2024-12-24,38944,6039,"[\""Laptop\""]",1780.85,{},121609,0,"""South America""" +2023-02-27,38945,9030,"[\""Monitor\"", \""Wireless Mouse\""]",873.61,{},77849,1,"""Africa""" +2023-04-17,38946,40,"[\""Wireless Mouse\""]",4109.29,"{\""seasonal\"": \""19%\""}",190514,1,"""Africa""" +2023-11-09,38947,5701,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2950.86,"{\""seasonal\"": \""6%\""}",244095,1,"""North America""" +2023-04-07,38948,8730,"[\""Monitor\"", \""Keyboard\""]",3388.45,"{\"": \""28%\""}",189197,1,"""Europe""" +2023-09-10,38949,5730,"[\""Headphones\""]",2738.27,"{\"": \""13%\""}",44538,0,"""Africa""" +2023-05-12,38950,5925,"[\""Tablet\""]",4882.86,{},157974,1,"""South America""" +2023-06-12,38951,3653,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1676.99,"{\"": \""9%\""}",272703,0,"""Africa""" +2024-10-16,38952,4592,"[\""Tablet\""]",1292.22,"{\""loyalty\"": \""18%\""}",249236,0,"""North America""" +2023-08-07,38953,7096,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4008.43,{},148635,1,"""North America""" +2023-06-22,38954,6489,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1592.21,{},104043,1,"""South America""" +2024-04-03,38955,7729,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4269.46,"{\""loyalty\"": \""16%\""}",176493,1,"""North America""" +2023-09-09,38956,8009,"[\""Headphones\"", \""Monitor\""]",326.26,"{\""loyalty\"": \""9%\""}",283210,0,"""Asia""" +2024-06-10,38957,3157,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",579.4,"{\""seasonal\"": \""16%\""}",255954,0,"""Africa""" +2024-04-22,38958,3175,"[\""Laptop\"", \""Charger\""]",2576.38,{},184859,1,"""North America""" +2024-07-02,38959,1181,"[\""Laptop\""]",897.08,{},193864,0,"""Asia""" +2024-05-01,38960,346,"[\""Laptop\"", \""Keyboard\""]",4838.94,"{\""seasonal\"": \""6%\""}",37680,1,"""Africa""" +2023-04-23,38961,3849,"[\""Keyboard\"", \""Headphones\""]",3241.72,"{\"": \""11%\""}",118199,1,"""Africa""" +2024-05-18,38962,2608,"[\""Laptop\"", \""Headphones\""]",4921.24,{},53700,1,"""Asia""" +2024-09-11,38963,5661,"[\""Headphones\""]",2292.99,{},166139,0,"""South America""" +2023-08-04,38964,6435,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3893.01,{},262630,0,"""Asia""" +2024-08-13,38965,5852,"[\""Laptop\""]",1669.92,{},221403,0,"""Africa""" +2023-08-19,38966,6521,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1448.67,"{\"": \""20%\""}",114633,0,"""Asia""" +2023-07-25,38967,8301,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1599.58,"{\"": \""24%\""}",6356,0,"""Asia""" +2023-10-07,38968,7094,"[\""Laptop\"", \""Tablet\""]",2447.54,{},139475,0,"""Europe""" +2023-01-18,38969,6961,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1366.16,"{\""seasonal\"": \""16%\""}",65780,0,"""Europe""" +2024-01-03,38970,8154,"[\""Laptop\""]",1212.07,"{\""promo\"": \""10%\""}",123881,1,"""North America""" +2023-10-07,38971,7592,"[\""Charger\""]",2934.99,"{\""loyalty\"": \""10%\""}",273727,1,"""Africa""" +2023-09-06,38972,2346,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2601.75,"{\"": \""9%\""}",73457,1,"""South America""" +2024-11-10,38973,5563,"[\""Charger\"", \""Monitor\""]",3188.65,"{\""promo\"": \""11%\""}",167007,0,"""Africa""" +2023-06-28,38974,4460,"[\""Monitor\"", \""Charger\""]",1674.31,{},161695,0,"""Europe""" +2024-08-14,38975,3073,"[\""Headphones\"", \""Laptop\""]",904.84,"{\"": \""14%\""}",39056,1,"""Europe""" +2024-05-26,38976,7310,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2176.61,"{\""seasonal\"": \""7%\""}",134930,0,"""Asia""" +2024-06-10,38977,8954,"[\""Charger\"", \""Headphones\""]",4417.78,"{\"": \""5%\""}",19674,1,"""Africa""" +2023-08-11,38978,5783,"[\""Keyboard\""]",4882.82,"{\""promo\"": \""19%\""}",98696,0,"""South America""" +2023-06-05,38979,4871,"[\""Keyboard\"", \""Laptop\""]",3605.7,{},184628,1,"""South America""" +2024-04-11,38980,4156,"[\""Wireless Mouse\""]",4256.67,{},201317,0,"""South America""" +2023-07-08,38981,1267,"[\""Tablet\""]",2974.77,{},45674,0,"""Africa""" +2024-05-11,38982,8859,"[\""Keyboard\"", \""Tablet\""]",1043.88,"{\""seasonal\"": \""11%\""}",245663,0,"""Africa""" +2024-01-30,38983,4721,"[\""Laptop\""]",4206.86,"{\""loyalty\"": \""24%\""}",63828,0,"""Asia""" +2023-12-22,38984,7110,"[\""Phone\""]",1417.22,{},153247,1,"""Europe""" +2024-11-25,38985,7625,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1913.81,{},203638,1,"""Asia""" +2023-07-18,38986,5740,"[\""Laptop\""]",2586.14,"{\""loyalty\"": \""19%\""}",27539,1,"""Asia""" +2024-05-16,38987,7891,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1477.33,"{\""promo\"": \""6%\""}",137251,1,"""South America""" +2024-12-06,38988,5049,"[\""Laptop\"", \""Charger\""]",410.07,"{\""promo\"": \""13%\""}",297024,0,"""Asia""" +2024-09-03,38989,8461,"[\""Monitor\""]",3593.01,{},65427,0,"""South America""" +2023-02-15,38990,4097,"[\""Keyboard\""]",2645.93,{},165108,1,"""South America""" +2023-11-03,38991,2113,"[\""Phone\"", \""Tablet\""]",4977.56,{},256297,1,"""North America""" +2023-12-21,38992,9866,"[\""Keyboard\"", \""Laptop\""]",1185.83,{},217591,0,"""Africa""" +2024-05-21,38993,2549,"[\""Laptop\""]",1066.36,"{\""loyalty\"": \""11%\""}",103118,0,"""Asia""" +2023-12-09,38994,808,"[\""Tablet\""]",503.96,"{\""promo\"": \""20%\""}",276634,1,"""North America""" +2024-04-08,38995,3071,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",241.34,"{\"": \""23%\""}",43876,0,"""Europe""" +2024-12-03,38996,1026,"[\""Laptop\""]",3709.37,"{\"": \""10%\""}",82385,1,"""South America""" +2023-12-15,38997,5059,"[\""Laptop\"", \""Headphones\""]",2499.45,{},230663,1,"""Europe""" +2024-10-15,38998,1179,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1118.48,{},25605,1,"""Asia""" +2024-12-19,38999,841,"[\""Phone\""]",1506.64,{},120494,0,"""Asia""" +2024-09-03,39000,3015,"[\""Charger\"", \""Tablet\""]",4710.5,{},43505,0,"""Africa""" +2023-03-15,39001,6946,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3376.48,{},134330,0,"""Europe""" +2024-03-03,39002,5738,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3793.75,"{\"": \""17%\""}",253817,1,"""Asia""" +2024-04-23,39003,9686,"[\""Phone\""]",1886.37,"{\"": \""9%\""}",159475,1,"""Europe""" +2023-02-02,39004,4732,"[\""Charger\"", \""Tablet\""]",2937.27,{},250255,0,"""Asia""" +2023-04-16,39005,5283,"[\""Phone\"", \""Monitor\""]",1032.21,{},282217,1,"""Europe""" +2024-05-10,39006,8625,"[\""Wireless Mouse\""]",4586.87,"{\""loyalty\"": \""18%\""}",298652,0,"""Asia""" +2024-09-28,39007,7400,"[\""Charger\"", \""Wireless Mouse\""]",4166.32,{},126768,0,"""Europe""" +2024-08-04,39008,58,"[\""Charger\""]",2934.24,{},230473,1,"""Europe""" +2024-08-16,39009,3326,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3242.5,"{\""promo\"": \""9%\""}",209806,0,"""Asia""" +2024-12-06,39010,3506,"[\""Laptop\""]",3168.12,{},58037,1,"""Asia""" +2023-04-10,39011,4802,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1063.68,{},166425,0,"""North America""" +2023-02-02,39012,2463,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",473.18,"{\""loyalty\"": \""6%\""}",158669,1,"""Africa""" +2023-09-30,39013,3829,"[\""Wireless Mouse\""]",4242.34,{},292341,0,"""Asia""" +2023-02-01,39014,8922,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2892.94,{},261207,1,"""Africa""" +2023-03-09,39015,9736,"[\""Charger\"", \""Headphones\""]",2251.85,{},248100,0,"""Europe""" +2024-06-19,39016,6329,"[\""Laptop\"", \""Keyboard\""]",2742.63,"{\"": \""13%\""}",175874,1,"""Africa""" +2023-04-10,39017,2074,"[\""Headphones\""]",4050.27,"{\""loyalty\"": \""20%\""}",134083,1,"""Africa""" +2023-10-20,39018,373,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3005.69,"{\""seasonal\"": \""26%\""}",143546,1,"""Africa""" +2024-07-19,39019,4890,"[\""Phone\""]",3460.82,{},156484,0,"""South America""" +2024-02-25,39020,8768,"[\""Tablet\""]",3859.93,{},297445,1,"""South America""" +2024-08-03,39021,1359,"[\""Wireless Mouse\"", \""Headphones\""]",170.7,"{\""promo\"": \""5%\""}",65241,0,"""South America""" +2023-08-02,39022,6625,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1732.35,"{\""seasonal\"": \""6%\""}",90909,1,"""Asia""" +2023-01-27,39023,3320,"[\""Keyboard\""]",4126.6,{},13439,0,"""North America""" +2024-03-26,39024,1282,"[\""Monitor\""]",3213.57,{},40653,1,"""Europe""" +2024-09-13,39025,9540,"[\""Wireless Mouse\""]",2707.56,{},282769,1,"""Africa""" +2024-06-22,39026,161,"[\""Headphones\""]",3637.14,"{\""promo\"": \""6%\""}",20557,0,"""Africa""" +2023-04-30,39027,574,"[\""Headphones\"", \""Tablet\""]",2393.53,{},272709,1,"""South America""" +2023-07-27,39028,9797,"[\""Headphones\""]",293.68,{},199707,0,"""North America""" +2023-11-16,39029,4246,"[\""Keyboard\""]",2129.62,{},239940,1,"""Asia""" +2023-05-28,39030,3804,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3575.22,"{\"": \""21%\""}",203731,0,"""North America""" +2024-12-03,39031,4473,"[\""Wireless Mouse\"", \""Charger\""]",824.3,{},84199,0,"""Asia""" +2024-06-15,39032,1032,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",639.8,{},223396,0,"""Asia""" +2023-12-08,39033,231,"[\""Monitor\"", \""Wireless Mouse\""]",4295.35,{},253240,0,"""Asia""" +2023-09-30,39034,5524,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2420.44,"{\""seasonal\"": \""10%\""}",152615,1,"""North America""" +2023-03-02,39035,6427,"[\""Keyboard\""]",779.67,{},200806,1,"""Europe""" +2024-05-09,39036,5473,"[\""Wireless Mouse\"", \""Monitor\""]",3274.31,{},87161,0,"""Europe""" +2023-03-19,39037,5313,"[\""Keyboard\"", \""Monitor\""]",269.59,{},63720,1,"""Africa""" +2024-09-23,39038,1162,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3736.36,{},211557,1,"""South America""" +2023-03-02,39039,6536,"[\""Keyboard\"", \""Phone\""]",4993.78,{},129305,1,"""North America""" +2023-03-28,39040,391,"[\""Phone\"", \""Wireless Mouse\""]",4433.25,"{\""seasonal\"": \""25%\""}",248756,1,"""South America""" +2023-02-24,39041,3495,"[\""Tablet\""]",1984.06,"{\""promo\"": \""30%\""}",113782,0,"""Asia""" +2024-11-18,39042,5725,"[\""Charger\"", \""Tablet\""]",781.55,{},158254,1,"""South America""" +2024-05-22,39043,3045,"[\""Headphones\""]",1037.74,"{\"": \""8%\""}",3001,1,"""South America""" +2024-10-29,39044,673,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4409.88,"{\"": \""19%\""}",124614,0,"""Africa""" +2023-06-04,39045,405,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4986.78,"{\""promo\"": \""15%\""}",9454,0,"""Africa""" +2023-01-11,39046,3590,"[\""Phone\""]",4186.96,{},78366,0,"""South America""" +2024-04-29,39047,3189,"[\""Laptop\"", \""Charger\""]",1079.98,{},176264,0,"""Europe""" +2023-06-24,39048,9176,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4150.8,{},276130,1,"""Europe""" +2023-11-07,39049,5753,"[\""Headphones\"", \""Laptop\""]",3269.31,"{\"": \""24%\""}",71019,0,"""North America""" +2024-09-29,39050,9937,"[\""Keyboard\""]",949.02,"{\""promo\"": \""15%\""}",109685,1,"""North America""" +2023-08-02,39051,6478,"[\""Keyboard\""]",3561.74,{},143216,0,"""Europe""" +2024-09-11,39052,9211,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3075.49,{},240507,0,"""Asia""" +2024-06-02,39053,8997,"[\""Tablet\""]",1965.43,"{\"": \""11%\""}",2742,0,"""Africa""" +2023-03-17,39054,2211,"[\""Charger\""]",2612.93,"{\""promo\"": \""27%\""}",84865,0,"""Africa""" +2023-09-01,39055,8870,"[\""Headphones\"", \""Wireless Mouse\""]",2231.63,{},202196,1,"""Africa""" +2024-04-24,39056,4676,"[\""Phone\"", \""Headphones\""]",1662.31,"{\""loyalty\"": \""15%\""}",280724,1,"""South America""" +2024-09-15,39057,1565,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4121.08,{},63338,1,"""Europe""" +2023-09-20,39058,6402,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",444.31,{},133024,0,"""South America""" +2024-03-13,39059,9094,"[\""Wireless Mouse\"", \""Tablet\""]",3614.97,{},196021,0,"""North America""" +2024-12-21,39060,4684,"[\""Wireless Mouse\""]",3733.5,"{\""promo\"": \""9%\""}",107747,0,"""Asia""" +2024-04-07,39061,7264,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4948.8,{},142511,1,"""Africa""" +2023-04-22,39062,2239,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4657.5,"{\""loyalty\"": \""6%\""}",26824,0,"""Europe""" +2024-07-19,39063,3887,"[\""Headphones\"", \""Phone\""]",4504.41,{},152372,1,"""North America""" +2024-07-16,39064,3570,"[\""Monitor\"", \""Tablet\""]",3963.58,{},172491,1,"""Asia""" +2023-11-15,39065,1410,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4731.69,"{\""loyalty\"": \""9%\""}",248503,0,"""Europe""" +2023-08-17,39066,2250,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2673.62,"{\""seasonal\"": \""26%\""}",133453,0,"""South America""" +2024-07-17,39067,3408,"[\""Charger\"", \""Wireless Mouse\""]",2842.44,{},102852,1,"""Africa""" +2024-02-21,39068,1616,"[\""Tablet\"", \""Monitor\""]",2769.92,{},201033,0,"""North America""" +2023-08-02,39069,8871,"[\""Wireless Mouse\""]",1469.88,"{\""promo\"": \""15%\""}",30314,0,"""Africa""" +2024-02-20,39070,8147,"[\""Wireless Mouse\"", \""Keyboard\""]",2232.93,"{\""seasonal\"": \""23%\""}",228015,0,"""Europe""" +2023-11-02,39071,7139,"[\""Phone\"", \""Monitor\""]",3349.5,"{\"": \""13%\""}",278619,1,"""North America""" +2024-03-14,39072,5649,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2646.67,"{\"": \""17%\""}",212922,1,"""North America""" +2023-01-31,39073,8567,"[\""Keyboard\""]",180.71,{},203588,1,"""Asia""" +2023-01-07,39074,8902,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3679.08,{},84337,1,"""South America""" +2023-05-16,39075,4281,"[\""Charger\""]",2111.3,{},258369,0,"""Asia""" +2023-05-29,39076,4556,"[\""Headphones\""]",2307.04,"{\""seasonal\"": \""22%\""}",4973,0,"""North America""" +2023-02-14,39077,4566,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3278.69,"{\""seasonal\"": \""20%\""}",55219,0,"""North America""" +2024-05-06,39078,7294,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4374.21,{},253233,0,"""Africa""" +2023-09-10,39079,1102,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2622.54,{},32808,0,"""Asia""" +2024-01-08,39080,7682,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2906.02,"{\""seasonal\"": \""21%\""}",179033,0,"""South America""" +2024-08-13,39081,2695,"[\""Keyboard\"", \""Phone\""]",1976.18,"{\""loyalty\"": \""17%\""}",268572,1,"""North America""" +2023-07-25,39082,660,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2488.68,"{\"": \""10%\""}",293794,0,"""Africa""" +2024-08-14,39083,3806,"[\""Monitor\""]",295.29,{},117790,1,"""Africa""" +2023-08-06,39084,6859,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3512.3,"{\""loyalty\"": \""22%\""}",11004,1,"""Europe""" +2024-04-27,39085,3197,"[\""Tablet\"", \""Phone\""]",3667.56,"{\""promo\"": \""18%\""}",150576,1,"""South America""" +2024-03-24,39086,9799,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4872.8,{},130856,0,"""North America""" +2024-04-09,39087,7417,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",409.35,{},231513,0,"""Asia""" +2024-03-08,39088,5528,"[\""Laptop\""]",151.44,"{\""seasonal\"": \""5%\""}",117063,0,"""Europe""" +2024-07-26,39089,8393,"[\""Laptop\""]",2583.48,{},299535,0,"""Asia""" +2024-11-03,39090,8323,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4729.55,"{\""loyalty\"": \""7%\""}",2555,0,"""Africa""" +2024-07-24,39091,4078,"[\""Laptop\""]",3885.21,{},282278,0,"""Europe""" +2024-02-19,39092,3932,"[\""Tablet\""]",4302.73,"{\"": \""28%\""}",229552,0,"""Europe""" +2024-06-19,39093,6112,"[\""Tablet\""]",213.64,"{\"": \""8%\""}",74262,0,"""Europe""" +2024-10-12,39094,7602,"[\""Tablet\"", \""Wireless Mouse\""]",2526.47,"{\""seasonal\"": \""27%\""}",249834,1,"""South America""" +2024-11-13,39095,4282,"[\""Phone\"", \""Monitor\""]",297.07,{},62413,0,"""North America""" +2024-11-16,39096,5260,"[\""Wireless Mouse\"", \""Headphones\""]",602.31,{},88374,0,"""Europe""" +2024-09-29,39097,4173,"[\""Tablet\""]",2054.19,"{\""promo\"": \""11%\""}",1819,1,"""North America""" +2023-12-09,39098,1048,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3138.77,"{\""loyalty\"": \""9%\""}",170290,0,"""South America""" +2023-08-10,39099,2110,"[\""Wireless Mouse\"", \""Headphones\""]",171.88,"{\""seasonal\"": \""12%\""}",17817,0,"""South America""" +2024-06-13,39100,2051,"[\""Tablet\"", \""Laptop\""]",4509.37,{},94561,0,"""Asia""" +2024-06-28,39101,8304,"[\""Monitor\""]",4272.72,{},54960,0,"""North America""" +2023-01-29,39102,5244,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4427.5,{},216221,0,"""South America""" +2023-03-16,39103,9706,"[\""Charger\""]",4695.73,"{\""loyalty\"": \""14%\""}",286967,1,"""Asia""" +2023-04-16,39104,9760,"[\""Tablet\""]",887.87,"{\"": \""22%\""}",28391,0,"""South America""" +2023-06-17,39105,3803,"[\""Keyboard\"", \""Tablet\""]",2613.88,"{\""promo\"": \""30%\""}",265928,0,"""South America""" +2024-10-12,39106,3720,"[\""Keyboard\"", \""Tablet\""]",4741.77,{},99821,0,"""South America""" +2023-05-07,39107,9888,"[\""Charger\"", \""Phone\""]",1845.6,"{\""loyalty\"": \""8%\""}",100615,0,"""North America""" +2024-12-17,39108,514,"[\""Headphones\"", \""Charger\""]",749.62,{},141855,0,"""Asia""" +2024-11-20,39109,8743,"[\""Keyboard\"", \""Tablet\""]",816.42,"{\""seasonal\"": \""15%\""}",158519,0,"""Asia""" +2023-06-13,39110,9998,"[\""Headphones\"", \""Tablet\""]",3034.72,{},221417,0,"""Asia""" +2024-09-24,39111,7980,"[\""Headphones\"", \""Laptop\""]",3976.97,{},261550,0,"""Europe""" +2024-06-19,39112,5340,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2168.78,"{\"": \""18%\""}",23755,0,"""South America""" +2023-07-13,39113,86,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3399.8,{},189349,0,"""North America""" +2023-01-06,39114,7134,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3286.46,{},242194,1,"""North America""" +2024-11-25,39115,3595,"[\""Headphones\""]",740.92,"{\""seasonal\"": \""14%\""}",141139,1,"""South America""" +2024-11-24,39116,365,"[\""Keyboard\""]",3384.55,"{\""promo\"": \""20%\""}",207779,0,"""South America""" +2024-12-30,39117,1858,"[\""Wireless Mouse\""]",4995.6,"{\""promo\"": \""28%\""}",203998,0,"""North America""" +2023-10-16,39118,2249,"[\""Laptop\""]",2002.67,{},290567,0,"""North America""" +2024-09-29,39119,511,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4801.47,"{\""seasonal\"": \""19%\""}",32369,1,"""Africa""" +2024-06-24,39120,9804,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2901.61,{},186790,0,"""Asia""" +2023-11-18,39121,1274,"[\""Keyboard\"", \""Wireless Mouse\""]",2819.73,{},176976,1,"""Asia""" +2024-02-02,39122,7836,"[\""Keyboard\""]",338.55,"{\"": \""18%\""}",164193,0,"""North America""" +2023-04-08,39123,2635,"[\""Phone\"", \""Keyboard\""]",1461.82,"{\""promo\"": \""28%\""}",54483,0,"""North America""" +2024-12-23,39124,5164,"[\""Monitor\"", \""Phone\""]",4642.22,{},226138,1,"""South America""" +2024-09-19,39125,1934,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1273.62,"{\""promo\"": \""10%\""}",83567,0,"""North America""" +2023-09-24,39126,6279,"[\""Monitor\"", \""Tablet\""]",2586.32,"{\""seasonal\"": \""18%\""}",178623,0,"""North America""" +2024-03-22,39127,8015,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1204.04,{},31651,0,"""South America""" +2023-08-19,39128,4963,"[\""Wireless Mouse\""]",4708.39,{},205290,0,"""Europe""" +2023-10-03,39129,1018,"[\""Headphones\"", \""Charger\""]",755.75,"{\"": \""14%\""}",184392,0,"""Europe""" +2024-05-27,39130,3150,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2229.19,{},283823,0,"""Asia""" +2024-02-01,39131,5520,"[\""Charger\""]",4396.39,{},32652,1,"""Europe""" +2024-08-10,39132,371,"[\""Headphones\""]",4023.23,"{\"": \""30%\""}",246614,1,"""Europe""" +2023-10-03,39133,2167,"[\""Charger\"", \""Phone\"", \""Tablet\""]",845.08,{},14503,0,"""Africa""" +2024-04-27,39134,7316,"[\""Charger\"", \""Keyboard\""]",1537.96,{},221284,1,"""Europe""" +2023-12-30,39135,4719,"[\""Charger\"", \""Monitor\""]",1364.19,"{\"": \""18%\""}",125006,1,"""Asia""" +2023-10-07,39136,7346,"[\""Laptop\"", \""Keyboard\""]",4126.95,"{\""promo\"": \""15%\""}",139480,1,"""Europe""" +2023-01-10,39137,1075,"[\""Keyboard\"", \""Laptop\""]",2688.89,{},32348,0,"""South America""" +2024-05-19,39138,9422,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2667.26,{},169101,1,"""North America""" +2023-03-17,39139,6799,"[\""Laptop\""]",552.5,"{\""loyalty\"": \""13%\""}",290154,1,"""Europe""" +2023-04-01,39140,6807,"[\""Monitor\"", \""Laptop\""]",3138.35,"{\""promo\"": \""24%\""}",31850,1,"""Asia""" +2024-12-10,39141,3870,"[\""Phone\""]",1155.68,"{\""seasonal\"": \""27%\""}",237208,0,"""North America""" +2024-03-19,39142,7061,"[\""Headphones\"", \""Monitor\""]",782.49,{},276281,1,"""North America""" +2024-09-29,39143,5356,"[\""Keyboard\"", \""Laptop\""]",3572.25,"{\""seasonal\"": \""23%\""}",24818,0,"""Africa""" +2024-07-04,39144,178,"[\""Laptop\""]",3936.38,{},208193,1,"""North America""" +2023-06-22,39145,3257,"[\""Monitor\""]",923.22,{},149230,1,"""North America""" +2024-12-02,39146,8753,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3734.49,"{\""loyalty\"": \""6%\""}",255952,1,"""Asia""" +2023-04-11,39147,1640,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2874.58,{},113278,1,"""Asia""" +2024-10-26,39148,9322,"[\""Headphones\"", \""Monitor\""]",1516.08,"{\""promo\"": \""7%\""}",111148,0,"""Europe""" +2024-09-21,39149,3745,"[\""Headphones\""]",3567.52,{},190031,0,"""Europe""" +2023-12-09,39150,1961,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",981.78,{},65030,1,"""Africa""" +2023-03-21,39151,9463,"[\""Monitor\"", \""Charger\""]",2398.25,"{\"": \""29%\""}",5255,1,"""North America""" +2023-01-23,39152,4243,"[\""Wireless Mouse\"", \""Headphones\""]",556.51,{},33363,1,"""North America""" +2023-04-28,39153,2362,"[\""Keyboard\""]",1509.42,"{\"": \""28%\""}",255991,0,"""North America""" +2023-04-08,39154,9758,"[\""Phone\"", \""Charger\""]",181.87,{},99788,1,"""Asia""" +2023-04-26,39155,2780,"[\""Phone\"", \""Laptop\""]",2210.45,"{\""loyalty\"": \""30%\""}",212574,0,"""North America""" +2024-11-12,39156,8930,"[\""Monitor\""]",3781.9,"{\""promo\"": \""8%\""}",147328,1,"""Europe""" +2023-04-23,39157,9298,"[\""Headphones\""]",3797.07,{},203042,0,"""Africa""" +2024-06-26,39158,1577,"[\""Charger\""]",4332.62,{},64155,0,"""Africa""" +2024-09-30,39159,5503,"[\""Wireless Mouse\"", \""Monitor\""]",859.28,"{\""promo\"": \""27%\""}",29073,1,"""Europe""" +2024-07-26,39160,8494,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4091.82,{},248148,0,"""Asia""" +2023-10-09,39161,2953,"[\""Wireless Mouse\"", \""Phone\""]",4896.72,"{\""promo\"": \""10%\""}",229147,1,"""Asia""" +2023-02-27,39162,1497,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1562.21,"{\"": \""6%\""}",126307,0,"""Africa""" +2023-03-19,39163,8329,"[\""Tablet\""]",2810.98,{},145706,0,"""North America""" +2023-02-01,39164,8114,"[\""Monitor\""]",2151.58,"{\"": \""8%\""}",21926,1,"""North America""" +2023-01-05,39165,309,"[\""Monitor\"", \""Headphones\""]",4735.61,"{\"": \""13%\""}",197810,0,"""South America""" +2023-09-13,39166,5253,"[\""Keyboard\""]",1969.36,"{\"": \""13%\""}",155399,1,"""South America""" +2023-03-20,39167,1880,"[\""Wireless Mouse\"", \""Laptop\""]",4780.81,"{\"": \""30%\""}",16998,1,"""North America""" +2024-08-14,39168,2068,"[\""Keyboard\""]",2651.52,"{\"": \""14%\""}",52319,1,"""South America""" +2024-10-09,39169,3873,"[\""Keyboard\"", \""Wireless Mouse\""]",1570.88,{},254104,0,"""Africa""" +2024-10-12,39170,2304,"[\""Tablet\""]",1896.08,"{\""promo\"": \""9%\""}",17823,0,"""North America""" +2024-02-28,39171,1566,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2196.08,"{\""loyalty\"": \""6%\""}",99938,1,"""South America""" +2024-10-26,39172,8906,"[\""Keyboard\"", \""Laptop\""]",3386.16,"{\""promo\"": \""27%\""}",6370,0,"""South America""" +2023-11-15,39173,6525,"[\""Charger\""]",468.08,{},273801,1,"""South America""" +2024-11-24,39174,682,"[\""Phone\"", \""Keyboard\""]",4260.39,{},125273,0,"""South America""" +2024-10-23,39175,6826,"[\""Charger\""]",3855.25,{},282750,1,"""South America""" +2023-11-30,39176,7702,"[\""Laptop\""]",4512.78,{},248780,0,"""Europe""" +2023-07-03,39177,8895,"[\""Phone\"", \""Keyboard\""]",844.35,{},222181,0,"""Europe""" +2023-12-29,39178,9174,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2139.14,{},184031,1,"""Africa""" +2024-03-07,39179,8321,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3478.7,"{\""seasonal\"": \""29%\""}",140079,0,"""Asia""" +2023-12-28,39180,6237,"[\""Phone\""]",2577.45,"{\""seasonal\"": \""5%\""}",196548,0,"""Asia""" +2024-03-22,39181,5434,"[\""Tablet\""]",2944.22,{},252361,1,"""North America""" +2023-03-26,39182,7727,"[\""Tablet\""]",4052.78,"{\""promo\"": \""26%\""}",155300,1,"""Asia""" +2023-11-16,39183,4131,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4642.49,"{\"": \""28%\""}",286464,1,"""Africa""" +2023-03-19,39184,699,"[\""Keyboard\"", \""Tablet\""]",2320.98,{},296965,1,"""South America""" +2023-10-29,39185,4415,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4358.49,{},114981,1,"""Asia""" +2024-11-29,39186,5665,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1277.08,{},15672,0,"""Africa""" +2023-04-17,39187,9150,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1958.31,"{\""seasonal\"": \""26%\""}",99567,1,"""Asia""" +2024-11-26,39188,6972,"[\""Tablet\""]",4691.63,"{\""promo\"": \""5%\""}",292642,1,"""Europe""" +2023-01-31,39189,1013,"[\""Charger\""]",4948.18,{},31811,0,"""South America""" +2023-06-19,39190,746,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1454.25,"{\""promo\"": \""23%\""}",12530,0,"""Africa""" +2024-02-09,39191,4583,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2822.82,{},166614,1,"""Asia""" +2024-08-04,39192,3979,"[\""Charger\""]",3078.89,"{\"": \""19%\""}",155340,0,"""South America""" +2023-07-27,39193,4935,"[\""Tablet\""]",3566.43,"{\"": \""30%\""}",158450,0,"""South America""" +2023-02-19,39194,9351,"[\""Charger\""]",2796.87,{},213418,0,"""South America""" +2023-11-30,39195,5281,"[\""Laptop\"", \""Phone\""]",96.36,"{\""seasonal\"": \""11%\""}",172836,0,"""North America""" +2023-05-12,39196,7301,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3339.13,"{\""seasonal\"": \""7%\""}",8155,1,"""Africa""" +2023-06-04,39197,3498,"[\""Phone\""]",3203.24,"{\""loyalty\"": \""10%\""}",157040,0,"""South America""" +2023-12-24,39198,3647,"[\""Headphones\""]",4345.14,"{\""loyalty\"": \""24%\""}",99214,0,"""Europe""" +2024-02-03,39199,1855,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2793.35,"{\""loyalty\"": \""26%\""}",266918,0,"""North America""" +2023-06-09,39200,1454,"[\""Wireless Mouse\"", \""Laptop\""]",1598.97,"{\""promo\"": \""10%\""}",114877,0,"""Asia""" +2024-05-30,39201,8323,"[\""Phone\"", \""Laptop\""]",3517.33,"{\""promo\"": \""25%\""}",74090,1,"""Europe""" +2024-03-18,39202,3805,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4132.02,"{\""promo\"": \""18%\""}",186150,0,"""Africa""" +2024-08-04,39203,6821,"[\""Monitor\"", \""Charger\""]",3829.16,{},128594,0,"""Asia""" +2024-03-31,39204,3964,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3353.19,{},161296,0,"""North America""" +2024-04-15,39205,1033,"[\""Keyboard\""]",2641.09,{},154735,0,"""Africa""" +2023-02-12,39206,6152,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",284.47,{},88991,1,"""Africa""" +2023-03-27,39207,5191,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",96.62,{},115120,1,"""Africa""" +2024-06-23,39208,6511,"[\""Charger\""]",3738.1,"{\"": \""24%\""}",187016,1,"""Asia""" +2023-09-25,39209,4875,"[\""Monitor\"", \""Tablet\""]",3944.99,{},150418,1,"""South America""" +2024-08-07,39210,2758,"[\""Monitor\""]",1853.41,{},238794,0,"""Europe""" +2024-06-12,39211,194,"[\""Tablet\""]",4903.16,{},90239,0,"""South America""" +2024-08-10,39212,7942,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2399.92,{},235494,0,"""North America""" +2024-09-09,39213,5080,"[\""Laptop\""]",1904.65,{},46198,0,"""Africa""" +2023-04-21,39214,2543,"[\""Keyboard\"", \""Monitor\""]",3908.8,"{\""seasonal\"": \""22%\""}",24944,0,"""South America""" +2024-12-29,39215,6810,"[\""Keyboard\"", \""Headphones\""]",3807.76,"{\""promo\"": \""28%\""}",16350,1,"""North America""" +2024-09-01,39216,4544,"[\""Tablet\""]",3999.18,{},76551,0,"""Asia""" +2024-07-07,39217,6120,"[\""Laptop\"", \""Tablet\""]",4972.79,"{\""loyalty\"": \""28%\""}",260561,0,"""Asia""" +2024-03-25,39218,2475,"[\""Headphones\""]",4468.82,"{\""loyalty\"": \""10%\""}",149505,0,"""North America""" +2024-08-10,39219,3096,"[\""Phone\"", \""Wireless Mouse\""]",3483.44,{},220299,0,"""Asia""" +2024-03-02,39220,4630,"[\""Phone\""]",2235.1,"{\""loyalty\"": \""10%\""}",188173,0,"""Asia""" +2023-04-03,39221,8895,"[\""Monitor\""]",987.95,{},6294,1,"""North America""" +2024-06-30,39222,7498,"[\""Keyboard\"", \""Charger\""]",4061.45,"{\""loyalty\"": \""30%\""}",134270,0,"""North America""" +2024-10-17,39223,9143,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",836.97,{},251347,1,"""South America""" +2023-02-10,39224,1881,"[\""Headphones\"", \""Wireless Mouse\""]",1439.01,{},237498,0,"""Europe""" +2023-02-26,39225,8895,"[\""Laptop\"", \""Wireless Mouse\""]",147.98,"{\""seasonal\"": \""8%\""}",130103,1,"""North America""" +2024-01-29,39226,7508,"[\""Monitor\"", \""Headphones\""]",919.63,"{\""loyalty\"": \""10%\""}",183856,1,"""Asia""" +2023-08-30,39227,1674,"[\""Monitor\"", \""Headphones\""]",2226.8,{},177830,1,"""Asia""" +2024-03-03,39228,2696,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4758.92,{},73554,1,"""Europe""" +2023-02-16,39229,5488,"[\""Phone\"", \""Laptop\""]",2541.9,"{\""seasonal\"": \""15%\""}",37714,0,"""Africa""" +2024-05-11,39230,8595,"[\""Phone\""]",4117.33,"{\"": \""13%\""}",66589,0,"""North America""" +2024-02-23,39231,9230,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",568.86,"{\""seasonal\"": \""26%\""}",43599,0,"""South America""" +2024-12-22,39232,7476,"[\""Charger\""]",1663.89,"{\""promo\"": \""5%\""}",106727,1,"""Asia""" +2024-10-16,39233,8688,"[\""Laptop\"", \""Monitor\""]",3742.42,{},264676,0,"""Africa""" +2023-10-02,39234,7409,"[\""Phone\""]",3994.45,"{\""promo\"": \""28%\""}",32582,1,"""Africa""" +2023-06-28,39235,5256,"[\""Keyboard\"", \""Wireless Mouse\""]",3502.09,{},97146,1,"""Asia""" +2023-12-12,39236,1565,"[\""Wireless Mouse\"", \""Laptop\""]",2904.66,{},225283,1,"""South America""" +2024-03-23,39237,8363,"[\""Phone\""]",2436.22,{},154886,0,"""Asia""" +2024-11-01,39238,2539,"[\""Headphones\""]",2298.03,{},123763,0,"""Africa""" +2023-07-09,39239,7977,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3537.16,"{\""promo\"": \""22%\""}",92136,0,"""South America""" +2024-11-12,39240,9803,"[\""Keyboard\""]",3350.13,{},140411,1,"""Africa""" +2024-10-03,39241,9407,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4379.75,"{\""promo\"": \""5%\""}",19726,0,"""Europe""" +2023-09-14,39242,5814,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3932.27,"{\""promo\"": \""20%\""}",232466,1,"""South America""" +2024-09-29,39243,7742,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3514.6,{},269455,0,"""South America""" +2023-08-19,39244,9885,"[\""Headphones\""]",784.5,{},147830,0,"""South America""" +2024-04-10,39245,4179,"[\""Keyboard\"", \""Phone\""]",949.07,"{\""promo\"": \""26%\""}",220235,1,"""North America""" +2023-07-19,39246,3039,"[\""Headphones\"", \""Tablet\""]",1283.85,"{\"": \""10%\""}",34849,1,"""Africa""" +2023-11-20,39247,8115,"[\""Phone\""]",2495.26,"{\""seasonal\"": \""12%\""}",268743,1,"""Africa""" +2024-08-13,39248,865,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2093.29,"{\""seasonal\"": \""29%\""}",125325,0,"""Africa""" +2024-10-08,39249,2408,"[\""Laptop\""]",3272.47,{},25149,1,"""North America""" +2023-09-07,39250,1892,"[\""Charger\""]",1886.14,{},200872,1,"""North America""" +2024-05-10,39251,4167,"[\""Headphones\""]",2810.8,"{\"": \""30%\""}",66083,1,"""South America""" +2024-11-23,39252,2658,"[\""Charger\"", \""Wireless Mouse\""]",4985.79,"{\"": \""26%\""}",22531,0,"""Asia""" +2023-11-10,39253,5827,"[\""Wireless Mouse\""]",3846.28,"{\""loyalty\"": \""9%\""}",62745,0,"""Europe""" +2024-03-19,39254,2693,"[\""Monitor\""]",1633.24,"{\""seasonal\"": \""16%\""}",37076,0,"""Africa""" +2024-09-24,39255,7453,"[\""Headphones\""]",2408.6,"{\"": \""22%\""}",10894,1,"""South America""" +2024-10-20,39256,5821,"[\""Wireless Mouse\"", \""Keyboard\""]",688.79,"{\""loyalty\"": \""20%\""}",260522,0,"""Europe""" +2023-03-01,39257,6129,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1431.81,{},136001,0,"""South America""" +2023-12-06,39258,121,"[\""Laptop\"", \""Charger\""]",2731.1,"{\""seasonal\"": \""10%\""}",121699,1,"""Africa""" +2024-12-11,39259,4760,"[\""Wireless Mouse\""]",2413.24,{},295192,1,"""South America""" +2023-08-13,39260,288,"[\""Keyboard\"", \""Monitor\""]",906.72,{},262893,1,"""Asia""" +2024-06-11,39261,3042,"[\""Wireless Mouse\""]",746.19,"{\""promo\"": \""18%\""}",130777,0,"""Africa""" +2024-01-06,39262,9853,"[\""Charger\"", \""Tablet\""]",803.58,"{\"": \""10%\""}",286499,0,"""Europe""" +2023-07-06,39263,9079,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4526.54,"{\""loyalty\"": \""14%\""}",159056,1,"""North America""" +2024-06-18,39264,344,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",672.19,"{\""loyalty\"": \""19%\""}",108600,1,"""Africa""" +2023-10-24,39265,6062,"[\""Tablet\""]",860.07,"{\""promo\"": \""8%\""}",127259,0,"""Europe""" +2023-05-19,39266,5567,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3303.01,"{\""seasonal\"": \""5%\""}",102959,0,"""North America""" +2024-05-25,39267,2734,"[\""Charger\"", \""Tablet\""]",3696.82,{},235920,0,"""Asia""" +2024-04-24,39268,6916,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",142.56,"{\""promo\"": \""23%\""}",4503,0,"""Europe""" +2023-03-30,39269,1923,"[\""Charger\""]",3834.0,{},40816,1,"""North America""" +2023-09-28,39270,3201,"[\""Monitor\"", \""Tablet\""]",2712.21,"{\""loyalty\"": \""10%\""}",68881,0,"""Europe""" +2024-06-03,39271,1230,"[\""Laptop\""]",2273.87,{},282993,1,"""North America""" +2023-05-23,39272,9492,"[\""Keyboard\"", \""Monitor\""]",2545.57,"{\""promo\"": \""16%\""}",223422,1,"""South America""" +2023-12-27,39273,3056,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2415.13,"{\"": \""7%\""}",221966,0,"""South America""" +2024-03-06,39274,1631,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1534.37,"{\""seasonal\"": \""24%\""}",79352,0,"""North America""" +2023-02-17,39275,4932,"[\""Monitor\"", \""Keyboard\""]",4661.39,"{\"": \""11%\""}",233760,1,"""South America""" +2023-07-16,39276,1408,"[\""Phone\""]",2787.8,{},90786,0,"""South America""" +2023-03-20,39277,8683,"[\""Tablet\""]",473.54,{},93468,0,"""South America""" +2023-01-07,39278,8955,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1136.22,{},252733,1,"""Africa""" +2024-06-14,39279,8627,"[\""Wireless Mouse\"", \""Phone\""]",273.81,"{\""seasonal\"": \""7%\""}",8256,1,"""South America""" +2023-06-08,39280,1625,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1053.94,{},10886,0,"""Asia""" +2024-04-15,39281,8785,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1718.48,"{\""promo\"": \""21%\""}",50079,0,"""South America""" +2024-04-05,39282,8031,"[\""Charger\""]",1963.39,"{\""loyalty\"": \""14%\""}",190687,0,"""South America""" +2023-12-03,39283,9229,"[\""Wireless Mouse\"", \""Tablet\""]",2872.25,{},94784,0,"""Africa""" +2023-10-17,39284,6008,"[\""Keyboard\""]",3546.55,"{\""seasonal\"": \""13%\""}",149869,0,"""Africa""" +2023-06-01,39285,4888,"[\""Phone\"", \""Headphones\""]",2736.33,"{\""loyalty\"": \""16%\""}",25230,0,"""Africa""" +2024-04-21,39286,4018,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3017.77,{},199320,0,"""North America""" +2024-07-30,39287,8422,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",571.84,"{\""promo\"": \""15%\""}",101167,1,"""Asia""" +2024-09-28,39288,9166,"[\""Wireless Mouse\""]",1641.19,{},293407,0,"""North America""" +2024-07-27,39289,631,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2320.82,"{\"": \""10%\""}",169804,1,"""Asia""" +2024-06-09,39290,3664,"[\""Monitor\"", \""Wireless Mouse\""]",4612.87,"{\""loyalty\"": \""27%\""}",295828,1,"""South America""" +2023-04-13,39291,4281,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2947.22,{},39972,0,"""Asia""" +2023-12-12,39292,7688,"[\""Phone\"", \""Headphones\""]",2025.88,{},223678,0,"""Europe""" +2024-01-12,39293,7656,"[\""Phone\""]",227.49,{},63513,0,"""North America""" +2023-01-19,39294,8494,"[\""Tablet\""]",4811.28,"{\""seasonal\"": \""12%\""}",215493,0,"""Africa""" +2023-09-30,39295,5011,"[\""Wireless Mouse\""]",1238.52,{},89402,1,"""Africa""" +2023-04-10,39296,9467,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2101.78,"{\"": \""5%\""}",168907,0,"""Europe""" +2024-04-08,39297,4769,"[\""Monitor\""]",2200.85,"{\""promo\"": \""5%\""}",76088,0,"""North America""" +2024-11-09,39298,488,"[\""Wireless Mouse\""]",4074.14,{},274582,1,"""North America""" +2024-10-20,39299,8599,"[\""Keyboard\"", \""Monitor\""]",4025.31,{},124633,1,"""Africa""" +2023-12-10,39300,1801,"[\""Tablet\""]",1890.72,"{\"": \""30%\""}",82511,1,"""South America""" +2023-11-02,39301,3337,"[\""Keyboard\""]",2354.99,"{\""loyalty\"": \""17%\""}",136401,0,"""South America""" +2023-05-04,39302,1607,"[\""Laptop\""]",1149.92,{},202616,0,"""Asia""" +2023-06-20,39303,9398,"[\""Wireless Mouse\"", \""Charger\""]",1474.52,"{\""seasonal\"": \""29%\""}",45799,0,"""North America""" +2024-01-17,39304,2669,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4893.76,{},241016,0,"""Africa""" +2024-05-24,39305,2417,"[\""Monitor\"", \""Keyboard\""]",1405.81,"{\""seasonal\"": \""9%\""}",277030,1,"""Asia""" +2024-09-17,39306,5556,"[\""Phone\""]",4968.53,"{\""seasonal\"": \""21%\""}",234768,1,"""Africa""" +2024-04-03,39307,5157,"[\""Wireless Mouse\""]",1929.82,{},243210,1,"""South America""" +2023-10-14,39308,2432,"[\""Charger\"", \""Keyboard\""]",1216.21,{},16449,1,"""North America""" +2024-11-03,39309,6189,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3573.4,"{\""promo\"": \""15%\""}",169874,0,"""Asia""" +2023-09-15,39310,9810,"[\""Headphones\"", \""Keyboard\""]",3398.61,{},145485,1,"""Europe""" +2024-11-14,39311,3949,"[\""Charger\""]",4901.25,"{\""promo\"": \""21%\""}",266959,0,"""Africa""" +2023-12-05,39312,1578,"[\""Headphones\"", \""Laptop\""]",1074.42,"{\""loyalty\"": \""22%\""}",262429,0,"""North America""" +2024-06-07,39313,9613,"[\""Monitor\""]",370.23,{},27424,0,"""South America""" +2023-06-26,39314,2162,"[\""Keyboard\""]",1403.12,{},96563,0,"""Europe""" +2023-05-19,39315,7731,"[\""Headphones\""]",4362.0,"{\"": \""16%\""}",265674,1,"""Europe""" +2023-11-24,39316,8397,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",563.74,{},88299,0,"""Europe""" +2023-02-12,39317,7731,"[\""Charger\"", \""Keyboard\""]",4647.16,{},229663,0,"""South America""" +2024-01-29,39318,7808,"[\""Wireless Mouse\""]",331.03,{},8521,1,"""Europe""" +2024-11-28,39319,9307,"[\""Headphones\""]",376.06,{},118219,1,"""Africa""" +2024-10-18,39320,1538,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3428.65,{},221980,0,"""Europe""" +2023-01-09,39321,4226,"[\""Phone\"", \""Charger\"", \""Laptop\""]",294.54,"{\""loyalty\"": \""23%\""}",35991,0,"""North America""" +2024-01-14,39322,6606,"[\""Headphones\""]",4781.07,"{\""promo\"": \""25%\""}",120992,1,"""Africa""" +2023-11-22,39323,1604,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1802.5,{},243161,0,"""Asia""" +2024-02-05,39324,9850,"[\""Laptop\""]",289.51,"{\""promo\"": \""29%\""}",79664,0,"""Asia""" +2024-01-23,39325,1837,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1554.18,"{\""promo\"": \""15%\""}",91355,1,"""Africa""" +2023-04-22,39326,1697,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2472.65,"{\""promo\"": \""15%\""}",71162,1,"""North America""" +2024-02-14,39327,4794,"[\""Laptop\"", \""Wireless Mouse\""]",1152.51,{},105814,0,"""Europe""" +2023-10-02,39328,2162,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4232.21,"{\""promo\"": \""11%\""}",64064,0,"""Europe""" +2024-07-27,39329,6280,"[\""Laptop\"", \""Keyboard\""]",4746.33,{},29082,1,"""Europe""" +2024-09-12,39330,7826,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1440.6,"{\""seasonal\"": \""19%\""}",137556,0,"""South America""" +2023-07-10,39331,1355,"[\""Phone\"", \""Keyboard\""]",3255.69,"{\""promo\"": \""29%\""}",267662,0,"""Africa""" +2024-03-06,39332,8267,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4100.49,{},195225,0,"""North America""" +2024-11-22,39333,5953,"[\""Tablet\"", \""Phone\""]",3176.42,"{\""promo\"": \""10%\""}",188651,1,"""Africa""" +2023-12-23,39334,7242,"[\""Monitor\""]",4872.58,{},164182,1,"""Asia""" +2024-05-11,39335,1374,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4569.23,{},93577,1,"""Africa""" +2024-05-23,39336,2307,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2049.21,"{\""promo\"": \""13%\""}",167442,0,"""Asia""" +2024-05-17,39337,8263,"[\""Phone\"", \""Monitor\""]",889.42,{},101299,0,"""South America""" +2024-09-16,39338,7462,"[\""Laptop\""]",3414.99,{},196057,1,"""Africa""" +2023-08-01,39339,6967,"[\""Tablet\"", \""Charger\""]",4316.21,"{\""promo\"": \""15%\""}",247298,1,"""South America""" +2023-03-16,39340,4042,"[\""Headphones\""]",4781.63,{},266166,0,"""Asia""" +2023-09-28,39341,2695,"[\""Laptop\""]",4296.19,"{\"": \""24%\""}",121974,0,"""Asia""" +2024-07-11,39342,6996,"[\""Wireless Mouse\""]",3264.85,"{\""loyalty\"": \""11%\""}",72700,1,"""Africa""" +2023-01-30,39343,7333,"[\""Wireless Mouse\""]",2425.1,"{\""loyalty\"": \""12%\""}",262289,1,"""South America""" +2024-08-24,39344,3335,"[\""Headphones\""]",1571.87,{},33335,1,"""North America""" +2024-08-14,39345,5333,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1025.86,{},253993,1,"""North America""" +2024-09-26,39346,4916,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4261.48,{},197180,0,"""Europe""" +2023-02-24,39347,2456,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4241.87,{},80507,0,"""North America""" +2024-04-16,39348,3278,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2487.53,{},259850,0,"""Europe""" +2023-08-12,39349,5843,"[\""Phone\"", \""Headphones\""]",1985.0,{},282115,1,"""Europe""" +2023-12-03,39350,4248,"[\""Charger\""]",1034.28,"{\""loyalty\"": \""19%\""}",252732,1,"""South America""" +2024-06-28,39351,9306,"[\""Charger\"", \""Phone\""]",1753.24,"{\"": \""11%\""}",112163,0,"""North America""" +2023-05-11,39352,3450,"[\""Keyboard\"", \""Phone\""]",4557.17,{},124710,1,"""Europe""" +2023-12-25,39353,1939,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4658.76,{},296949,1,"""South America""" +2024-12-17,39354,7306,"[\""Keyboard\"", \""Headphones\""]",424.11,{},79478,1,"""Europe""" +2023-05-29,39355,3738,"[\""Laptop\"", \""Tablet\""]",676.43,"{\""promo\"": \""29%\""}",242655,0,"""North America""" +2023-08-21,39356,4879,"[\""Wireless Mouse\"", \""Charger\""]",1843.97,"{\""seasonal\"": \""12%\""}",151147,0,"""Asia""" +2023-11-04,39357,7523,"[\""Charger\""]",4448.03,{},171568,0,"""Africa""" +2024-12-01,39358,7173,"[\""Phone\""]",3643.87,{},277580,0,"""South America""" +2023-07-30,39359,3522,"[\""Phone\"", \""Keyboard\""]",3272.48,"{\""promo\"": \""22%\""}",145640,0,"""Asia""" +2023-07-13,39360,1846,"[\""Charger\"", \""Phone\""]",1132.51,{},113291,0,"""Africa""" +2024-05-18,39361,3899,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4165.73,{},156479,1,"""Asia""" +2024-12-16,39362,592,"[\""Charger\""]",2973.16,{},129774,1,"""Europe""" +2023-06-27,39363,8484,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",329.28,{},74777,1,"""Europe""" +2024-09-21,39364,1141,"[\""Tablet\""]",3189.1,"{\""loyalty\"": \""13%\""}",288331,1,"""Asia""" +2024-01-29,39365,6690,"[\""Headphones\""]",3543.37,{},255762,1,"""Asia""" +2024-09-19,39366,3383,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3103.94,"{\""loyalty\"": \""26%\""}",216039,1,"""Africa""" +2024-05-01,39367,8481,"[\""Headphones\"", \""Keyboard\""]",2585.89,{},17813,0,"""North America""" +2023-10-04,39368,6044,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",924.59,{},245012,0,"""Europe""" +2023-02-20,39369,1553,"[\""Phone\""]",4320.97,"{\""loyalty\"": \""19%\""}",173701,0,"""Africa""" +2024-10-06,39370,1975,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2725.85,{},30613,1,"""North America""" +2023-07-18,39371,2030,"[\""Headphones\"", \""Phone\""]",1411.74,"{\""loyalty\"": \""29%\""}",52525,1,"""South America""" +2023-10-03,39372,8652,"[\""Laptop\""]",918.21,{},103154,0,"""Europe""" +2023-06-29,39373,1542,"[\""Keyboard\""]",3817.13,{},269430,1,"""Africa""" +2024-06-02,39374,7520,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",422.89,{},158256,1,"""Asia""" +2024-02-06,39375,625,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2302.78,{},136195,0,"""North America""" +2023-06-26,39376,4524,"[\""Charger\""]",2957.53,"{\""promo\"": \""30%\""}",296359,0,"""North America""" +2024-06-19,39377,1758,"[\""Laptop\""]",4291.22,"{\""promo\"": \""22%\""}",46849,0,"""South America""" +2023-12-13,39378,6270,"[\""Tablet\"", \""Wireless Mouse\""]",1903.85,{},212072,1,"""Africa""" +2024-01-18,39379,3955,"[\""Charger\"", \""Tablet\""]",2198.16,"{\""loyalty\"": \""24%\""}",92715,0,"""Africa""" +2023-06-18,39380,9593,"[\""Headphones\""]",389.84,"{\""loyalty\"": \""11%\""}",204482,0,"""South America""" +2024-06-23,39381,537,"[\""Phone\""]",3093.41,{},136701,0,"""North America""" +2024-06-02,39382,1134,"[\""Wireless Mouse\"", \""Charger\""]",3066.1,"{\"": \""29%\""}",188160,0,"""Europe""" +2024-01-30,39383,5073,"[\""Headphones\"", \""Charger\""]",4954.54,"{\""seasonal\"": \""20%\""}",261649,1,"""North America""" +2024-10-09,39384,804,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3769.98,{},141407,0,"""North America""" +2024-10-24,39385,5606,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4681.87,{},85006,1,"""Europe""" +2023-04-02,39386,4157,"[\""Phone\""]",4579.28,{},240927,1,"""Europe""" +2024-12-17,39387,1023,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3992.2,"{\""promo\"": \""9%\""}",97192,1,"""Europe""" +2024-03-16,39388,9606,"[\""Tablet\"", \""Keyboard\""]",4802.02,{},286325,1,"""South America""" +2023-09-14,39389,3150,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",533.13,{},81414,1,"""North America""" +2024-06-15,39390,545,"[\""Charger\"", \""Phone\""]",1347.68,{},25205,1,"""South America""" +2024-10-23,39391,8027,"[\""Charger\"", \""Headphones\""]",1519.61,"{\"": \""15%\""}",45208,1,"""Africa""" +2024-10-19,39392,9433,"[\""Keyboard\"", \""Tablet\""]",530.72,{},56284,0,"""South America""" +2023-11-10,39393,1341,"[\""Monitor\""]",3985.74,{},115642,1,"""Europe""" +2023-08-04,39394,6291,"[\""Wireless Mouse\""]",1655.28,"{\""promo\"": \""27%\""}",283647,0,"""North America""" +2024-02-14,39395,5091,"[\""Charger\""]",3264.49,{},92131,0,"""South America""" +2023-05-03,39396,5706,"[\""Laptop\""]",301.65,"{\"": \""26%\""}",93471,1,"""South America""" +2024-09-20,39397,1315,"[\""Laptop\""]",3218.65,"{\""seasonal\"": \""14%\""}",261817,0,"""Asia""" +2023-07-22,39398,766,"[\""Keyboard\""]",449.48,{},299716,0,"""Asia""" +2024-11-15,39399,4838,"[\""Wireless Mouse\""]",117.41,{},270890,0,"""Europe""" +2023-02-05,39400,3269,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1968.43,"{\""loyalty\"": \""5%\""}",13832,0,"""Africa""" +2024-02-11,39401,4552,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",124.52,"{\""loyalty\"": \""20%\""}",44002,1,"""Africa""" +2023-09-25,39402,6719,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2688.76,"{\"": \""26%\""}",162581,1,"""Europe""" +2024-10-05,39403,8799,"[\""Monitor\"", \""Keyboard\""]",451.99,"{\""seasonal\"": \""12%\""}",40859,0,"""North America""" +2024-05-08,39404,1439,"[\""Tablet\"", \""Monitor\""]",3153.69,{},176565,0,"""Europe""" +2023-06-26,39405,1923,"[\""Charger\"", \""Wireless Mouse\""]",4143.38,{},139037,0,"""Asia""" +2024-07-06,39406,9151,"[\""Keyboard\""]",2454.77,"{\""loyalty\"": \""30%\""}",238304,0,"""South America""" +2023-03-20,39407,4187,"[\""Phone\"", \""Headphones\""]",2287.94,"{\""loyalty\"": \""14%\""}",158054,0,"""North America""" +2024-07-08,39408,2753,"[\""Wireless Mouse\"", \""Headphones\""]",4613.37,{},238467,1,"""Europe""" +2023-07-17,39409,6713,"[\""Headphones\""]",1439.01,"{\""seasonal\"": \""27%\""}",91043,0,"""Europe""" +2023-07-04,39410,5587,"[\""Laptop\"", \""Headphones\""]",4714.56,"{\"": \""19%\""}",39582,1,"""South America""" +2024-11-10,39411,6789,"[\""Keyboard\"", \""Monitor\""]",4999.5,"{\"": \""24%\""}",142773,1,"""Africa""" +2024-09-12,39412,7733,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4322.0,{},278150,1,"""Asia""" +2024-01-02,39413,3624,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2775.05,{},2060,1,"""Asia""" +2023-06-30,39414,3246,"[\""Charger\""]",245.54,{},34102,1,"""Asia""" +2024-05-01,39415,7500,"[\""Wireless Mouse\""]",3855.16,"{\""loyalty\"": \""18%\""}",216284,0,"""Europe""" +2023-11-14,39416,3178,"[\""Tablet\""]",477.69,{},100316,1,"""Asia""" +2023-06-17,39417,4060,"[\""Laptop\"", \""Headphones\""]",68.35,{},51514,0,"""Europe""" +2023-12-30,39418,9140,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3085.91,{},56842,1,"""Europe""" +2024-06-12,39419,7541,"[\""Laptop\""]",4991.54,"{\"": \""22%\""}",72138,0,"""North America""" +2023-01-07,39420,8208,"[\""Tablet\"", \""Charger\""]",1403.84,"{\"": \""18%\""}",162381,0,"""Europe""" +2024-12-20,39421,2497,"[\""Wireless Mouse\"", \""Phone\""]",889.68,{},273556,1,"""South America""" +2024-04-03,39422,2634,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3531.47,{},226495,0,"""North America""" +2023-02-18,39423,5637,"[\""Laptop\"", \""Keyboard\""]",4273.26,{},136167,0,"""North America""" +2024-06-06,39424,6467,"[\""Monitor\"", \""Wireless Mouse\""]",1972.81,{},167440,0,"""North America""" +2024-12-31,39425,1214,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1745.56,{},31364,0,"""Asia""" +2023-09-08,39426,937,"[\""Monitor\"", \""Charger\""]",3747.62,"{\""loyalty\"": \""5%\""}",114001,1,"""South America""" +2023-10-08,39427,8664,"[\""Wireless Mouse\"", \""Headphones\""]",1326.78,"{\""promo\"": \""11%\""}",20834,0,"""South America""" +2023-09-05,39428,343,"[\""Wireless Mouse\""]",4308.63,"{\""promo\"": \""9%\""}",115539,1,"""Africa""" +2023-02-23,39429,2466,"[\""Wireless Mouse\""]",2740.05,{},229682,1,"""Europe""" +2023-11-26,39430,5856,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",247.41,{},157962,0,"""Europe""" +2023-11-03,39431,82,"[\""Keyboard\"", \""Monitor\""]",3297.44,"{\""loyalty\"": \""7%\""}",45273,1,"""Africa""" +2023-04-23,39432,3443,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4099.45,"{\"": \""16%\""}",138672,0,"""Europe""" +2023-02-06,39433,1640,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4245.5,"{\"": \""11%\""}",109271,0,"""South America""" +2024-01-04,39434,1989,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2349.12,"{\""promo\"": \""28%\""}",151677,0,"""Europe""" +2023-04-08,39435,5707,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",691.59,"{\""loyalty\"": \""14%\""}",290428,0,"""Europe""" +2023-08-19,39436,6382,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3915.8,{},60784,1,"""North America""" +2023-10-10,39437,2009,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3409.25,{},211350,0,"""North America""" +2024-11-09,39438,5441,"[\""Monitor\""]",3566.37,{},147478,0,"""South America""" +2024-07-12,39439,5871,"[\""Wireless Mouse\""]",3592.8,{},198470,1,"""Africa""" +2024-05-14,39440,656,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2334.14,{},267832,1,"""South America""" +2024-02-23,39441,5648,"[\""Wireless Mouse\""]",1085.36,{},264621,1,"""South America""" +2024-04-08,39442,5209,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1435.14,"{\""seasonal\"": \""18%\""}",85871,1,"""North America""" +2024-06-09,39443,7347,"[\""Tablet\""]",612.44,"{\""promo\"": \""23%\""}",19026,0,"""Africa""" +2024-11-01,39444,6274,"[\""Phone\""]",2294.82,"{\""promo\"": \""29%\""}",197420,0,"""North America""" +2023-09-13,39445,4547,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1942.11,"{\""promo\"": \""12%\""}",247990,1,"""North America""" +2024-09-24,39446,777,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3179.8,{},139353,1,"""South America""" +2024-01-19,39447,6069,"[\""Laptop\"", \""Wireless Mouse\""]",1198.08,{},210004,0,"""Asia""" +2024-03-24,39448,893,"[\""Headphones\"", \""Laptop\""]",4635.43,{},45566,0,"""South America""" +2024-02-26,39449,6516,"[\""Monitor\""]",1949.89,"{\"": \""13%\""}",214701,1,"""Asia""" +2024-05-31,39450,1137,"[\""Charger\"", \""Monitor\""]",3512.82,{},233414,0,"""North America""" +2024-08-25,39451,6079,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4765.3,{},92261,0,"""North America""" +2024-02-27,39452,5895,"[\""Wireless Mouse\""]",83.58,{},213978,1,"""Africa""" +2023-05-31,39453,8091,"[\""Tablet\""]",2688.86,"{\""promo\"": \""5%\""}",266310,0,"""Africa""" +2024-03-26,39454,6709,"[\""Headphones\""]",1023.72,{},74334,1,"""Asia""" +2023-12-15,39455,5105,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3493.04,{},139725,0,"""North America""" +2023-04-10,39456,5909,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2994.52,"{\""seasonal\"": \""7%\""}",74461,1,"""South America""" +2023-06-21,39457,3182,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4876.0,"{\"": \""30%\""}",84232,1,"""Asia""" +2024-03-05,39458,1015,"[\""Tablet\"", \""Charger\""]",1939.24,{},147891,0,"""Asia""" +2023-09-09,39459,8609,"[\""Laptop\""]",621.16,"{\""loyalty\"": \""29%\""}",258537,1,"""Europe""" +2024-08-28,39460,9193,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",185.05,"{\""loyalty\"": \""5%\""}",210191,0,"""Africa""" +2024-09-18,39461,60,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1915.24,{},30789,0,"""Europe""" +2023-06-10,39462,4273,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3430.22,"{\""loyalty\"": \""20%\""}",249826,0,"""Asia""" +2024-05-14,39463,1303,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1422.49,"{\""loyalty\"": \""17%\""}",130733,0,"""North America""" +2023-04-25,39464,3702,"[\""Headphones\""]",3652.27,{},69905,1,"""North America""" +2023-01-02,39465,4621,"[\""Wireless Mouse\""]",4240.24,{},58000,0,"""Africa""" +2024-07-27,39466,9773,"[\""Wireless Mouse\""]",3899.93,{},225825,1,"""North America""" +2024-07-26,39467,9000,"[\""Laptop\"", \""Headphones\""]",3173.73,{},206646,1,"""Asia""" +2024-05-16,39468,4491,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1274.76,{},288151,1,"""South America""" +2023-09-29,39469,7612,"[\""Headphones\""]",4988.5,"{\""seasonal\"": \""6%\""}",194759,1,"""Africa""" +2024-10-04,39470,7621,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4411.64,{},260879,0,"""North America""" +2024-07-10,39471,3526,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4525.48,{},109041,1,"""Africa""" +2023-10-21,39472,3393,"[\""Keyboard\""]",4306.16,"{\""seasonal\"": \""13%\""}",51887,0,"""Europe""" +2024-02-09,39473,8762,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",544.75,"{\"": \""25%\""}",86171,1,"""North America""" +2024-04-12,39474,9327,"[\""Monitor\"", \""Charger\""]",3082.71,"{\""loyalty\"": \""19%\""}",43449,1,"""Europe""" +2023-01-12,39475,4377,"[\""Wireless Mouse\"", \""Tablet\""]",1021.23,{},19464,1,"""South America""" +2024-11-12,39476,540,"[\""Headphones\"", \""Laptop\""]",3739.42,{},290622,0,"""South America""" +2024-08-24,39477,6822,"[\""Charger\"", \""Wireless Mouse\""]",1451.58,"{\""seasonal\"": \""5%\""}",83214,0,"""Asia""" +2024-10-27,39478,2246,"[\""Headphones\""]",2983.68,"{\""loyalty\"": \""30%\""}",73558,0,"""Asia""" +2023-02-17,39479,5262,"[\""Laptop\""]",3774.7,"{\""loyalty\"": \""23%\""}",121151,1,"""Asia""" +2024-08-26,39480,81,"[\""Laptop\""]",1769.7,{},115418,1,"""Asia""" +2024-12-31,39481,2820,"[\""Laptop\"", \""Phone\""]",181.06,"{\""loyalty\"": \""5%\""}",47878,0,"""Europe""" +2023-08-10,39482,8504,"[\""Monitor\""]",322.27,{},220547,0,"""South America""" +2023-03-24,39483,9313,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3955.0,{},265312,1,"""North America""" +2024-05-31,39484,170,"[\""Tablet\""]",3840.43,"{\""loyalty\"": \""10%\""}",264670,1,"""Asia""" +2023-01-07,39485,4831,"[\""Phone\""]",4618.92,"{\""promo\"": \""13%\""}",274250,0,"""Africa""" +2024-06-04,39486,3000,"[\""Phone\"", \""Laptop\""]",1028.25,"{\""seasonal\"": \""22%\""}",111342,0,"""South America""" +2024-10-24,39487,8267,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1983.22,{},113443,0,"""Europe""" +2023-07-15,39488,6139,"[\""Phone\"", \""Laptop\""]",4992.64,"{\""loyalty\"": \""8%\""}",21792,1,"""North America""" +2023-08-22,39489,4532,"[\""Phone\""]",4427.56,{},133470,0,"""Asia""" +2023-02-18,39490,5121,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4462.02,{},190896,1,"""Africa""" +2023-02-24,39491,9959,"[\""Monitor\"", \""Tablet\""]",401.46,{},21016,0,"""Africa""" +2023-07-30,39492,834,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4224.41,{},269347,1,"""Europe""" +2023-08-09,39493,888,"[\""Headphones\"", \""Phone\"", \""Charger\""]",374.29,{},270982,0,"""Europe""" +2024-06-02,39494,3810,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3026.5,"{\""promo\"": \""10%\""}",21834,1,"""North America""" +2024-01-22,39495,232,"[\""Wireless Mouse\"", \""Phone\""]",4126.86,{},39333,1,"""Europe""" +2023-05-16,39496,7728,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3663.67,"{\""loyalty\"": \""27%\""}",225612,0,"""Europe""" +2024-07-10,39497,8434,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",650.14,"{\""loyalty\"": \""27%\""}",160009,1,"""South America""" +2024-04-05,39498,7639,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2615.98,"{\"": \""12%\""}",11813,0,"""Europe""" +2024-01-27,39499,6455,"[\""Monitor\"", \""Charger\""]",3948.1,{},174336,0,"""Europe""" +2024-08-05,39500,1804,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1681.36,{},63743,1,"""Africa""" +2023-01-24,39501,9543,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2938.52,"{\""promo\"": \""22%\""}",140329,0,"""North America""" +2023-03-20,39502,8845,"[\""Wireless Mouse\""]",4443.8,{},261175,0,"""South America""" +2023-06-20,39503,857,"[\""Keyboard\"", \""Laptop\""]",2059.9,"{\""seasonal\"": \""20%\""}",60808,1,"""Africa""" +2024-01-03,39504,884,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2647.55,{},167544,0,"""Europe""" +2024-10-02,39505,2451,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1856.65,"{\""promo\"": \""23%\""}",204278,0,"""Europe""" +2024-08-18,39506,8695,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3249.58,{},222907,0,"""Asia""" +2024-08-13,39507,4452,"[\""Charger\""]",4782.76,{},272728,1,"""South America""" +2024-12-30,39508,2986,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2431.72,"{\"": \""5%\""}",54764,0,"""Asia""" +2023-01-04,39509,7567,"[\""Monitor\""]",4497.86,"{\"": \""20%\""}",183145,1,"""South America""" +2023-07-13,39510,4760,"[\""Headphones\"", \""Phone\""]",2326.44,{},275534,0,"""Africa""" +2023-02-26,39511,9678,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4270.38,"{\""seasonal\"": \""28%\""}",60139,0,"""Asia""" +2023-04-08,39512,1219,"[\""Phone\"", \""Keyboard\""]",2091.47,{},229252,0,"""North America""" +2023-10-27,39513,4138,"[\""Keyboard\"", \""Headphones\""]",408.33,{},17921,0,"""Asia""" +2023-03-29,39514,2973,"[\""Phone\"", \""Monitor\""]",3636.57,{},166567,0,"""North America""" +2023-03-12,39515,4708,"[\""Wireless Mouse\"", \""Charger\""]",1333.14,{},181987,0,"""Europe""" +2023-07-01,39516,8471,"[\""Charger\""]",4572.21,{},10368,1,"""Asia""" +2024-09-04,39517,7300,"[\""Headphones\"", \""Charger\""]",2727.03,"{\"": \""7%\""}",72959,1,"""Europe""" +2023-12-05,39518,3146,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1730.26,{},236209,0,"""South America""" +2023-11-06,39519,9301,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3384.9,"{\""seasonal\"": \""25%\""}",184668,0,"""Africa""" +2024-09-16,39520,9485,"[\""Charger\"", \""Headphones\""]",4154.6,{},64233,0,"""North America""" +2023-03-30,39521,6446,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1606.76,{},122339,0,"""Europe""" +2023-01-03,39522,4877,"[\""Headphones\""]",3448.91,{},271903,0,"""Asia""" +2023-01-03,39523,8570,"[\""Charger\""]",426.23,{},99323,0,"""Europe""" +2023-05-17,39524,5715,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4641.74,{},53968,1,"""Europe""" +2024-07-05,39525,7019,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3898.4,"{\""seasonal\"": \""12%\""}",211446,0,"""Africa""" +2024-10-07,39526,8991,"[\""Phone\""]",3561.1,{},196668,0,"""Europe""" +2024-01-19,39527,5444,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2202.15,"{\""promo\"": \""18%\""}",10028,1,"""North America""" +2024-08-12,39528,5765,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",605.16,{},245025,0,"""Africa""" +2023-06-14,39529,5227,"[\""Phone\""]",1692.59,{},277100,1,"""Asia""" +2024-12-24,39530,3178,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2077.88,{},149799,0,"""North America""" +2023-05-15,39531,4140,"[\""Laptop\""]",2888.14,"{\""loyalty\"": \""14%\""}",31640,1,"""North America""" +2023-06-25,39532,4920,"[\""Headphones\""]",3229.68,"{\""seasonal\"": \""29%\""}",256544,1,"""North America""" +2023-11-04,39533,2947,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4655.5,"{\""seasonal\"": \""14%\""}",32250,0,"""Asia""" +2024-10-26,39534,7846,"[\""Charger\"", \""Monitor\""]",4967.65,"{\""loyalty\"": \""27%\""}",234754,0,"""Europe""" +2024-03-23,39535,9996,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",356.54,"{\"": \""14%\""}",264648,1,"""Europe""" +2024-10-20,39536,6686,"[\""Keyboard\"", \""Laptop\""]",704.44,{},49409,0,"""Asia""" +2024-05-05,39537,8771,"[\""Phone\""]",1169.55,"{\""loyalty\"": \""10%\""}",190313,1,"""Asia""" +2024-08-25,39538,3898,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1288.84,"{\"": \""24%\""}",283721,0,"""North America""" +2024-05-08,39539,8882,"[\""Keyboard\""]",3855.45,"{\"": \""23%\""}",249454,1,"""North America""" +2023-05-11,39540,2903,"[\""Monitor\""]",2387.37,{},80596,1,"""North America""" +2023-10-14,39541,3289,"[\""Laptop\""]",4972.32,{},88961,0,"""Europe""" +2024-11-17,39542,4121,"[\""Charger\""]",3995.77,{},91685,1,"""South America""" +2023-05-12,39543,2072,"[\""Phone\""]",2834.43,"{\"": \""6%\""}",199483,0,"""Asia""" +2023-07-09,39544,3135,"[\""Keyboard\""]",720.25,{},55053,1,"""North America""" +2023-04-18,39545,9806,"[\""Charger\"", \""Phone\""]",2250.74,{},154693,0,"""Africa""" +2024-10-15,39546,71,"[\""Monitor\""]",3172.01,{},32434,1,"""South America""" +2024-08-17,39547,617,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4328.05,{},128905,0,"""Europe""" +2023-07-23,39548,5331,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2341.06,{},119170,1,"""Africa""" +2023-01-17,39549,2245,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",928.85,{},249000,0,"""North America""" +2023-01-20,39550,3591,"[\""Phone\""]",4447.61,{},270988,0,"""North America""" +2023-10-04,39551,9687,"[\""Charger\""]",3590.35,{},194911,0,"""North America""" +2024-05-28,39552,9131,"[\""Tablet\"", \""Headphones\""]",734.69,"{\""promo\"": \""17%\""}",74029,0,"""Africa""" +2024-08-14,39553,9738,"[\""Charger\""]",2660.02,"{\""seasonal\"": \""19%\""}",101265,1,"""Asia""" +2023-10-06,39554,9833,"[\""Charger\"", \""Keyboard\""]",1843.78,{},176512,1,"""Asia""" +2023-02-23,39555,4169,"[\""Monitor\""]",4664.95,{},227016,0,"""North America""" +2023-12-02,39556,3978,"[\""Laptop\""]",600.1,{},14731,1,"""Africa""" +2023-05-01,39557,64,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3510.02,"{\"": \""12%\""}",195638,1,"""Africa""" +2024-08-21,39558,1372,"[\""Tablet\""]",4588.15,{},77360,1,"""South America""" +2023-11-26,39559,1210,"[\""Wireless Mouse\""]",2543.17,{},65179,1,"""Europe""" +2023-03-08,39560,6525,"[\""Wireless Mouse\""]",959.12,{},1409,0,"""South America""" +2024-04-20,39561,5734,"[\""Tablet\"", \""Wireless Mouse\""]",2161.47,"{\""seasonal\"": \""22%\""}",290808,0,"""Europe""" +2024-03-08,39562,8651,"[\""Laptop\"", \""Tablet\""]",2655.06,"{\""promo\"": \""20%\""}",127278,0,"""South America""" +2023-04-07,39563,9199,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4499.97,"{\""loyalty\"": \""22%\""}",196431,1,"""Europe""" +2024-04-22,39564,547,"[\""Wireless Mouse\""]",1368.41,"{\""promo\"": \""10%\""}",10831,1,"""Africa""" +2023-05-10,39565,5938,"[\""Wireless Mouse\""]",2193.02,{},192467,0,"""Asia""" +2023-06-14,39566,7257,"[\""Phone\"", \""Keyboard\""]",189.92,{},81108,1,"""Africa""" +2023-07-16,39567,9880,"[\""Charger\""]",66.03,{},139493,1,"""Asia""" +2024-01-15,39568,4318,"[\""Headphones\"", \""Laptop\""]",4677.73,{},2401,1,"""South America""" +2024-05-11,39569,2673,"[\""Headphones\""]",4697.59,"{\""promo\"": \""16%\""}",243181,0,"""South America""" +2024-12-21,39570,2051,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3578.76,{},150922,1,"""Africa""" +2023-03-05,39571,353,"[\""Headphones\""]",1986.6,"{\""loyalty\"": \""7%\""}",140022,0,"""Africa""" +2023-01-18,39572,1994,"[\""Keyboard\"", \""Tablet\""]",1385.2,"{\""loyalty\"": \""9%\""}",167256,1,"""Europe""" +2023-10-12,39573,9794,"[\""Monitor\"", \""Laptop\""]",765.83,"{\""seasonal\"": \""9%\""}",283625,0,"""South America""" +2024-12-14,39574,2268,"[\""Keyboard\"", \""Monitor\""]",266.9,{},79845,1,"""North America""" +2024-08-20,39575,7696,"[\""Monitor\"", \""Keyboard\""]",1465.22,"{\"": \""24%\""}",55102,1,"""North America""" +2024-11-01,39576,8895,"[\""Charger\""]",1570.25,{},262190,0,"""Asia""" +2023-06-07,39577,1743,"[\""Laptop\"", \""Keyboard\""]",3327.58,{},43267,1,"""Asia""" +2023-10-02,39578,9555,"[\""Tablet\""]",4116.15,{},271125,0,"""Asia""" +2023-04-19,39579,3248,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2729.33,{},249862,1,"""Europe""" +2024-01-26,39580,3161,"[\""Wireless Mouse\"", \""Headphones\""]",4773.0,{},175536,1,"""Africa""" +2023-01-06,39581,9738,"[\""Charger\"", \""Phone\"", \""Laptop\""]",605.3,{},227421,0,"""Asia""" +2024-03-06,39582,8635,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",709.78,{},36719,1,"""Europe""" +2024-07-12,39583,250,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",736.24,{},161202,1,"""North America""" +2023-12-18,39584,6176,"[\""Laptop\""]",947.47,"{\""loyalty\"": \""29%\""}",281132,1,"""North America""" +2023-08-16,39585,1414,"[\""Headphones\""]",2261.38,"{\""promo\"": \""29%\""}",159522,1,"""Asia""" +2024-09-21,39586,7202,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",979.58,"{\"": \""7%\""}",113430,0,"""Europe""" +2024-01-06,39587,8151,"[\""Monitor\""]",1428.37,{},102581,0,"""Africa""" +2023-10-04,39588,3138,"[\""Tablet\""]",1568.57,{},265348,0,"""Asia""" +2024-05-02,39589,4273,"[\""Wireless Mouse\"", \""Keyboard\""]",2409.75,{},227755,1,"""Asia""" +2023-09-30,39590,4718,"[\""Laptop\"", \""Keyboard\""]",3854.91,"{\""promo\"": \""9%\""}",52577,0,"""Asia""" +2024-03-10,39591,7989,"[\""Keyboard\"", \""Wireless Mouse\""]",2388.57,{},233867,0,"""Europe""" +2024-04-17,39592,6611,"[\""Wireless Mouse\"", \""Keyboard\""]",2557.79,{},9128,1,"""Africa""" +2023-09-29,39593,1684,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3201.93,"{\"": \""22%\""}",164504,0,"""North America""" +2024-09-03,39594,6573,"[\""Laptop\""]",1138.7,{},138892,1,"""North America""" +2024-08-09,39595,6757,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2574.47,{},247683,1,"""South America""" +2024-10-26,39596,4459,"[\""Tablet\""]",63.53,{},32088,1,"""South America""" +2024-04-20,39597,7697,"[\""Headphones\"", \""Keyboard\""]",2853.33,{},105121,1,"""Europe""" +2023-07-21,39598,8115,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3303.89,"{\""seasonal\"": \""29%\""}",131912,1,"""South America""" +2023-04-28,39599,3616,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",731.95,"{\""loyalty\"": \""23%\""}",72960,1,"""Europe""" +2024-08-29,39600,3600,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1714.97,"{\""loyalty\"": \""19%\""}",160920,0,"""Europe""" +2023-05-02,39601,3969,"[\""Tablet\"", \""Charger\""]",3714.93,{},204847,0,"""South America""" +2023-12-07,39602,307,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2701.84,{},292647,0,"""South America""" +2024-05-19,39603,9263,"[\""Monitor\""]",3737.68,"{\""promo\"": \""25%\""}",281263,1,"""Europe""" +2024-09-14,39604,7786,"[\""Laptop\"", \""Monitor\""]",4515.05,{},231241,1,"""Africa""" +2024-07-20,39605,5780,"[\""Keyboard\""]",352.72,{},141453,1,"""Europe""" +2024-07-02,39606,6271,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2246.97,"{\"": \""28%\""}",99929,0,"""South America""" +2024-01-18,39607,9556,"[\""Monitor\""]",2619.95,"{\""loyalty\"": \""25%\""}",29137,1,"""Asia""" +2024-11-27,39608,8757,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2954.87,"{\""seasonal\"": \""8%\""}",6538,1,"""South America""" +2023-06-28,39609,3401,"[\""Laptop\""]",3696.34,{},126156,0,"""Asia""" +2023-02-22,39610,7250,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4925.6,"{\""loyalty\"": \""20%\""}",135090,0,"""North America""" +2023-01-19,39611,6651,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2696.67,"{\""promo\"": \""27%\""}",35367,0,"""Africa""" +2024-09-15,39612,580,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2548.67,{},98086,1,"""Europe""" +2023-12-24,39613,7753,"[\""Keyboard\"", \""Wireless Mouse\""]",4297.35,{},198160,1,"""Africa""" +2024-11-13,39614,2949,"[\""Phone\"", \""Charger\""]",484.31,{},29959,0,"""Africa""" +2024-02-14,39615,3015,"[\""Laptop\""]",3214.17,"{\""promo\"": \""15%\""}",35124,0,"""South America""" +2023-03-26,39616,8181,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",169.41,{},76098,0,"""Europe""" +2023-08-29,39617,6212,"[\""Phone\""]",2672.68,"{\"": \""30%\""}",174112,1,"""Africa""" +2023-09-13,39618,325,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3942.24,{},47554,1,"""Europe""" +2023-08-31,39619,904,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1404.92,"{\""seasonal\"": \""28%\""}",21716,0,"""Asia""" +2023-11-26,39620,5814,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2896.2,"{\""loyalty\"": \""28%\""}",155293,0,"""Europe""" +2023-06-22,39621,2068,"[\""Monitor\"", \""Charger\""]",4387.12,"{\"": \""5%\""}",117365,0,"""Africa""" +2024-03-12,39622,5653,"[\""Monitor\"", \""Headphones\""]",4720.73,"{\""promo\"": \""8%\""}",182131,0,"""South America""" +2024-05-17,39623,4134,"[\""Monitor\""]",1072.11,{},272236,1,"""Asia""" +2024-07-21,39624,1409,"[\""Wireless Mouse\""]",1387.78,{},199965,1,"""North America""" +2024-10-04,39625,6150,"[\""Headphones\"", \""Laptop\""]",3310.35,{},223271,1,"""South America""" +2023-09-21,39626,961,"[\""Monitor\""]",1730.17,"{\""promo\"": \""20%\""}",244179,1,"""Africa""" +2023-03-25,39627,5491,"[\""Wireless Mouse\""]",3389.15,{},144571,1,"""Asia""" +2023-07-17,39628,4287,"[\""Phone\"", \""Monitor\""]",1889.3,"{\""loyalty\"": \""11%\""}",227661,0,"""Europe""" +2024-11-26,39629,8410,"[\""Headphones\""]",1953.22,{},251449,0,"""North America""" +2023-07-09,39630,1107,"[\""Keyboard\""]",4720.92,{},251563,1,"""Asia""" +2024-02-26,39631,7064,"[\""Headphones\"", \""Monitor\""]",4708.51,{},235735,0,"""Asia""" +2023-09-20,39632,461,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4774.18,{},50102,1,"""Africa""" +2024-07-20,39633,2706,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4131.56,"{\""loyalty\"": \""17%\""}",1477,0,"""North America""" +2023-09-10,39634,3334,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4670.69,"{\""promo\"": \""27%\""}",131179,1,"""Europe""" +2024-02-07,39635,6013,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3555.56,"{\""promo\"": \""26%\""}",140555,1,"""Africa""" +2023-09-18,39636,5636,"[\""Monitor\"", \""Charger\""]",4926.3,"{\""promo\"": \""25%\""}",75656,1,"""South America""" +2024-06-08,39637,8757,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4946.61,"{\""promo\"": \""29%\""}",257821,1,"""Europe""" +2024-08-06,39638,213,"[\""Laptop\""]",3276.76,"{\""promo\"": \""28%\""}",278275,0,"""South America""" +2023-11-14,39639,8273,"[\""Phone\""]",2484.52,"{\""seasonal\"": \""15%\""}",188356,1,"""Europe""" +2024-04-22,39640,4327,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1466.91,{},145682,1,"""Europe""" +2024-05-20,39641,5143,"[\""Headphones\""]",1908.94,"{\""loyalty\"": \""17%\""}",214137,0,"""Africa""" +2024-06-14,39642,2559,"[\""Keyboard\"", \""Tablet\""]",2960.54,"{\""promo\"": \""9%\""}",54009,0,"""Europe""" +2024-03-13,39643,6757,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1850.76,"{\"": \""18%\""}",219540,0,"""South America""" +2023-12-16,39644,1027,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",641.05,"{\""seasonal\"": \""12%\""}",41317,0,"""Africa""" +2024-11-16,39645,3130,"[\""Charger\"", \""Tablet\""]",3364.06,"{\""loyalty\"": \""5%\""}",155051,1,"""Europe""" +2024-04-15,39646,91,"[\""Headphones\"", \""Laptop\""]",1595.82,{},150693,1,"""South America""" +2024-05-23,39647,9495,"[\""Phone\"", \""Tablet\""]",938.39,"{\""promo\"": \""6%\""}",183649,0,"""North America""" +2023-12-27,39648,3600,"[\""Monitor\"", \""Charger\""]",4616.79,{},166432,0,"""North America""" +2023-06-04,39649,6517,"[\""Monitor\""]",4940.31,"{\""promo\"": \""17%\""}",162486,0,"""South America""" +2024-11-29,39650,8239,"[\""Charger\"", \""Laptop\""]",2679.28,{},286983,1,"""North America""" +2023-07-06,39651,2002,"[\""Wireless Mouse\""]",364.76,{},63354,0,"""North America""" +2024-05-19,39652,6140,"[\""Charger\""]",1443.06,"{\"": \""27%\""}",79361,1,"""Africa""" +2023-12-18,39653,1998,"[\""Headphones\""]",1407.32,"{\""seasonal\"": \""27%\""}",217500,0,"""Asia""" +2024-09-21,39654,9091,"[\""Tablet\""]",553.03,{},245661,1,"""Africa""" +2024-01-09,39655,24,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4504.02,{},269654,1,"""North America""" +2024-01-09,39656,78,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1515.53,{},290395,1,"""North America""" +2024-07-26,39657,1783,"[\""Phone\""]",2708.89,"{\""seasonal\"": \""30%\""}",233683,1,"""South America""" +2024-07-26,39658,7793,"[\""Laptop\""]",742.24,{},163714,1,"""Africa""" +2023-12-01,39659,9154,"[\""Monitor\""]",3156.73,"{\""promo\"": \""22%\""}",270117,1,"""South America""" +2024-03-17,39660,8416,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3622.0,{},150791,0,"""Africa""" +2024-10-20,39661,7863,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3524.83,{},106334,1,"""North America""" +2023-05-15,39662,5079,"[\""Charger\"", \""Wireless Mouse\""]",3856.08,"{\""seasonal\"": \""27%\""}",148633,1,"""South America""" +2024-11-25,39663,6804,"[\""Laptop\"", \""Phone\""]",1650.22,{},245315,1,"""Asia""" +2024-09-10,39664,7728,"[\""Headphones\""]",3810.62,"{\""promo\"": \""11%\""}",263711,0,"""North America""" +2023-03-19,39665,5109,"[\""Phone\"", \""Tablet\""]",4636.79,"{\""loyalty\"": \""22%\""}",47893,0,"""South America""" +2023-04-12,39666,7152,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4536.7,{},267390,1,"""South America""" +2024-01-06,39667,9730,"[\""Wireless Mouse\"", \""Laptop\""]",374.24,"{\""seasonal\"": \""14%\""}",231146,1,"""North America""" +2024-08-02,39668,1188,"[\""Monitor\""]",4617.44,{},172570,1,"""Africa""" +2023-10-19,39669,3155,"[\""Keyboard\""]",3246.31,"{\""loyalty\"": \""7%\""}",291019,1,"""North America""" +2024-03-29,39670,8067,"[\""Monitor\"", \""Phone\""]",148.36,"{\""promo\"": \""12%\""}",252343,0,"""Africa""" +2024-10-04,39671,1,"[\""Headphones\"", \""Tablet\""]",1764.69,{},144753,0,"""Africa""" +2024-12-27,39672,9714,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1386.96,{},232174,0,"""Asia""" +2023-03-05,39673,1201,"[\""Charger\""]",599.69,{},177610,0,"""North America""" +2024-04-08,39674,845,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3625.88,"{\""seasonal\"": \""26%\""}",101343,1,"""Europe""" +2023-06-28,39675,9508,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1593.69,"{\"": \""6%\""}",292432,1,"""North America""" +2024-05-09,39676,1381,"[\""Monitor\""]",327.67,"{\""promo\"": \""12%\""}",51693,0,"""Africa""" +2024-06-22,39677,5967,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2791.67,"{\""seasonal\"": \""10%\""}",10184,1,"""Africa""" +2024-10-07,39678,1980,"[\""Keyboard\"", \""Charger\""]",2190.72,{},171787,1,"""South America""" +2023-07-30,39679,5280,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4938.48,"{\""promo\"": \""25%\""}",289651,0,"""Europe""" +2024-10-22,39680,1738,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",971.6,{},294723,0,"""Europe""" +2023-02-01,39681,5681,"[\""Keyboard\""]",3435.49,"{\"": \""24%\""}",164424,0,"""Africa""" +2024-04-07,39682,1412,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1232.41,"{\""seasonal\"": \""14%\""}",136092,1,"""Asia""" +2024-12-22,39683,9485,"[\""Wireless Mouse\"", \""Headphones\""]",4297.09,{},239075,0,"""Asia""" +2023-06-06,39684,2225,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3873.14,"{\"": \""19%\""}",265014,1,"""Africa""" +2024-08-19,39685,4468,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4932.11,"{\""promo\"": \""11%\""}",116016,1,"""South America""" +2023-08-20,39686,9679,"[\""Keyboard\""]",4903.54,{},243176,0,"""North America""" +2023-06-02,39687,7192,"[\""Monitor\"", \""Wireless Mouse\""]",1397.16,"{\"": \""12%\""}",99804,1,"""North America""" +2024-04-19,39688,1262,"[\""Monitor\""]",1708.38,"{\""loyalty\"": \""14%\""}",85670,0,"""South America""" +2023-01-14,39689,4858,"[\""Phone\"", \""Monitor\""]",3143.59,"{\""seasonal\"": \""27%\""}",28036,0,"""Europe""" +2023-03-28,39690,4993,"[\""Charger\"", \""Keyboard\""]",1850.74,"{\"": \""7%\""}",191158,1,"""South America""" +2023-04-17,39691,7828,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2897.43,"{\""seasonal\"": \""13%\""}",13271,0,"""North America""" +2024-04-01,39692,9273,"[\""Headphones\"", \""Wireless Mouse\""]",3802.59,{},29491,0,"""Africa""" +2024-09-02,39693,6634,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",197.24,"{\""promo\"": \""28%\""}",246460,1,"""Africa""" +2024-04-07,39694,423,"[\""Phone\"", \""Monitor\""]",1702.57,{},256024,0,"""North America""" +2023-01-29,39695,9524,"[\""Wireless Mouse\""]",4848.09,"{\""seasonal\"": \""9%\""}",42614,1,"""North America""" +2024-08-17,39696,4666,"[\""Monitor\"", \""Phone\""]",2780.7,"{\""promo\"": \""8%\""}",2426,1,"""Asia""" +2024-05-04,39697,4826,"[\""Phone\"", \""Headphones\""]",3042.42,{},214645,1,"""Africa""" +2024-02-08,39698,9456,"[\""Monitor\"", \""Tablet\""]",797.73,{},4227,1,"""Europe""" +2024-11-26,39699,3412,"[\""Keyboard\""]",3477.92,{},239400,0,"""Europe""" +2023-04-28,39700,7822,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2518.58,"{\""loyalty\"": \""26%\""}",196149,0,"""North America""" +2023-05-29,39701,5440,"[\""Laptop\"", \""Keyboard\""]",2285.62,{},59746,0,"""Asia""" +2024-12-03,39702,6484,"[\""Headphones\""]",2068.21,{},135081,0,"""Asia""" +2024-03-27,39703,618,"[\""Monitor\""]",3683.98,"{\"": \""14%\""}",56108,0,"""Asia""" +2024-01-09,39704,5541,"[\""Charger\""]",2045.14,{},192566,0,"""South America""" +2024-04-19,39705,4135,"[\""Phone\"", \""Monitor\""]",4895.09,{},145783,1,"""South America""" +2023-11-13,39706,9962,"[\""Tablet\"", \""Monitor\""]",3350.54,"{\""loyalty\"": \""8%\""}",238357,0,"""Europe""" +2023-02-01,39707,7207,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1344.1,"{\""seasonal\"": \""24%\""}",79334,1,"""Europe""" +2024-04-11,39708,6234,"[\""Headphones\""]",4496.45,"{\""loyalty\"": \""26%\""}",257159,1,"""Asia""" +2023-04-18,39709,7839,"[\""Tablet\""]",3960.93,{},267560,0,"""Asia""" +2023-05-25,39710,3100,"[\""Laptop\""]",4959.51,{},78028,0,"""Asia""" +2023-10-29,39711,6530,"[\""Laptop\""]",988.5,"{\""loyalty\"": \""19%\""}",233254,1,"""South America""" +2024-11-09,39712,9540,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4561.42,{},37523,0,"""South America""" +2023-04-07,39713,762,"[\""Keyboard\""]",608.99,"{\""promo\"": \""22%\""}",65133,0,"""North America""" +2024-05-29,39714,9265,"[\""Headphones\"", \""Keyboard\""]",623.39,{},144631,1,"""Africa""" +2024-12-28,39715,563,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2506.22,"{\""seasonal\"": \""23%\""}",159176,0,"""North America""" +2023-07-23,39716,6828,"[\""Laptop\""]",462.97,{},273608,0,"""South America""" +2023-07-22,39717,2953,"[\""Wireless Mouse\"", \""Headphones\""]",2936.45,{},181996,0,"""Asia""" +2024-03-04,39718,9451,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2279.92,{},198126,0,"""North America""" +2023-03-27,39719,152,"[\""Wireless Mouse\"", \""Tablet\""]",1757.94,"{\""loyalty\"": \""19%\""}",187014,0,"""South America""" +2024-05-04,39720,6611,"[\""Laptop\""]",2480.81,"{\""promo\"": \""29%\""}",19750,1,"""Asia""" +2024-03-29,39721,2323,"[\""Monitor\"", \""Phone\""]",2272.89,{},114821,0,"""Asia""" +2024-02-24,39722,1064,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3202.96,"{\""seasonal\"": \""19%\""}",233932,1,"""Europe""" +2024-10-28,39723,7835,"[\""Charger\""]",4997.61,{},207084,0,"""Europe""" +2023-08-01,39724,9801,"[\""Wireless Mouse\"", \""Headphones\""]",1746.99,"{\""loyalty\"": \""25%\""}",98587,1,"""Asia""" +2023-02-11,39725,1053,"[\""Keyboard\""]",1894.1,"{\""seasonal\"": \""7%\""}",185132,0,"""North America""" +2024-12-12,39726,390,"[\""Phone\"", \""Monitor\""]",1465.8,"{\""loyalty\"": \""29%\""}",197656,1,"""Asia""" +2023-12-11,39727,6744,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",237.13,"{\""promo\"": \""20%\""}",156699,1,"""South America""" +2023-12-26,39728,8312,"[\""Wireless Mouse\"", \""Tablet\""]",3751.93,"{\""loyalty\"": \""20%\""}",282436,1,"""Europe""" +2024-07-16,39729,4613,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1131.32,{},172595,1,"""Africa""" +2023-07-10,39730,642,"[\""Headphones\"", \""Phone\""]",1902.11,"{\""seasonal\"": \""16%\""}",56522,1,"""Europe""" +2024-03-29,39731,1444,"[\""Phone\""]",1427.68,"{\""seasonal\"": \""7%\""}",299000,1,"""Africa""" +2023-05-04,39732,748,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4895.07,{},176935,1,"""North America""" +2023-09-15,39733,7225,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",397.0,{},16093,0,"""Asia""" +2024-03-22,39734,6361,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2660.52,{},299150,1,"""Europe""" +2024-03-19,39735,4582,"[\""Keyboard\""]",1513.51,"{\""seasonal\"": \""20%\""}",120859,0,"""North America""" +2024-01-06,39736,9139,"[\""Wireless Mouse\"", \""Keyboard\""]",4058.64,{},65556,0,"""North America""" +2024-05-25,39737,7319,"[\""Wireless Mouse\""]",56.53,{},154252,1,"""North America""" +2024-11-13,39738,341,"[\""Charger\""]",1634.89,{},225590,0,"""Africa""" +2024-05-06,39739,2324,"[\""Monitor\""]",661.29,"{\""seasonal\"": \""6%\""}",140006,1,"""South America""" +2023-08-06,39740,4017,"[\""Phone\"", \""Keyboard\""]",1996.61,{},122834,1,"""Africa""" +2024-11-12,39741,2493,"[\""Monitor\""]",1907.65,{},69328,1,"""Europe""" +2024-09-15,39742,7413,"[\""Charger\""]",4131.27,"{\""seasonal\"": \""28%\""}",8601,0,"""Africa""" +2024-08-24,39743,8681,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2543.89,"{\""promo\"": \""5%\""}",120664,1,"""Africa""" +2024-07-25,39744,3453,"[\""Laptop\"", \""Monitor\""]",2690.59,"{\""seasonal\"": \""10%\""}",39254,0,"""Asia""" +2023-10-22,39745,1911,"[\""Headphones\""]",2683.0,"{\""promo\"": \""7%\""}",76033,1,"""Europe""" +2023-02-02,39746,7789,"[\""Charger\"", \""Laptop\""]",2860.38,{},120385,1,"""South America""" +2023-09-29,39747,7591,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",113.89,"{\""promo\"": \""27%\""}",286606,1,"""Africa""" +2024-09-08,39748,9829,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2656.68,"{\""promo\"": \""17%\""}",133368,1,"""Europe""" +2024-06-27,39749,8579,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4883.23,"{\""loyalty\"": \""18%\""}",285090,0,"""Europe""" +2024-09-07,39750,5572,"[\""Charger\"", \""Keyboard\""]",1249.57,"{\""promo\"": \""30%\""}",283430,1,"""South America""" +2024-05-13,39751,8443,"[\""Charger\""]",1822.3,"{\""promo\"": \""22%\""}",125624,0,"""North America""" +2024-04-23,39752,8851,"[\""Laptop\"", \""Wireless Mouse\""]",2874.14,{},189774,1,"""South America""" +2024-08-01,39753,5991,"[\""Monitor\"", \""Wireless Mouse\""]",3074.42,{},205068,1,"""Asia""" +2023-05-16,39754,3673,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3228.27,"{\""promo\"": \""7%\""}",47047,1,"""Africa""" +2023-05-20,39755,6637,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4598.63,{},166707,1,"""North America""" +2023-11-28,39756,7667,"[\""Laptop\"", \""Charger\""]",4813.84,"{\""loyalty\"": \""11%\""}",227570,0,"""Europe""" +2023-01-14,39757,2379,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2316.63,{},33536,1,"""South America""" +2023-02-16,39758,7135,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2328.86,"{\""seasonal\"": \""14%\""}",177124,0,"""South America""" +2023-12-23,39759,5375,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1062.55,{},274975,0,"""Asia""" +2023-10-01,39760,4361,"[\""Tablet\""]",1930.62,"{\"": \""12%\""}",24120,0,"""Africa""" +2024-07-02,39761,5331,"[\""Headphones\""]",4370.72,{},244256,0,"""Europe""" +2023-05-17,39762,6805,"[\""Keyboard\""]",1008.68,"{\""promo\"": \""25%\""}",103288,0,"""Asia""" +2024-06-15,39763,7131,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4390.69,{},199420,1,"""South America""" +2024-12-11,39764,9959,"[\""Laptop\"", \""Wireless Mouse\""]",1629.0,{},28770,0,"""Asia""" +2023-05-28,39765,8558,"[\""Phone\""]",3557.04,"{\""loyalty\"": \""30%\""}",218735,0,"""Africa""" +2024-11-21,39766,3874,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4676.14,"{\""seasonal\"": \""22%\""}",153292,0,"""Africa""" +2024-01-12,39767,416,"[\""Charger\"", \""Wireless Mouse\""]",4752.62,{},146511,1,"""Europe""" +2023-01-30,39768,1993,"[\""Laptop\""]",2113.36,"{\""loyalty\"": \""6%\""}",163243,0,"""South America""" +2023-06-14,39769,6198,"[\""Wireless Mouse\"", \""Keyboard\""]",3114.55,"{\""promo\"": \""23%\""}",277649,0,"""South America""" +2023-12-02,39770,3731,"[\""Laptop\""]",2156.98,{},28026,1,"""Asia""" +2024-01-01,39771,8825,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",369.36,{},136020,1,"""Europe""" +2024-02-27,39772,1983,"[\""Charger\""]",3087.21,{},259870,1,"""Africa""" +2024-08-18,39773,2894,"[\""Tablet\""]",4814.67,{},9788,0,"""South America""" +2024-02-13,39774,8935,"[\""Wireless Mouse\""]",2052.51,"{\"": \""15%\""}",220987,0,"""Europe""" +2024-04-19,39775,3387,"[\""Phone\"", \""Monitor\""]",3806.77,{},13600,1,"""Africa""" +2023-02-17,39776,5080,"[\""Monitor\"", \""Keyboard\""]",4467.91,"{\""promo\"": \""15%\""}",171094,0,"""Asia""" +2024-07-02,39777,7201,"[\""Laptop\"", \""Keyboard\""]",2673.44,{},277841,1,"""Africa""" +2023-04-14,39778,4937,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4575.31,{},253094,0,"""South America""" +2023-09-11,39779,4997,"[\""Charger\""]",2768.1,{},290909,0,"""Asia""" +2023-07-12,39780,4986,"[\""Monitor\"", \""Laptop\""]",3014.28,"{\""loyalty\"": \""26%\""}",295862,0,"""North America""" +2023-09-28,39781,8618,"[\""Headphones\"", \""Laptop\""]",3392.58,{},118501,0,"""Europe""" +2024-11-05,39782,5516,"[\""Laptop\""]",4208.65,{},188503,0,"""North America""" +2023-11-13,39783,676,"[\""Wireless Mouse\""]",3928.72,{},239344,1,"""North America""" +2024-09-01,39784,9933,"[\""Phone\"", \""Tablet\""]",3717.76,{},182962,1,"""North America""" +2023-05-18,39785,6276,"[\""Keyboard\""]",1470.1,{},135197,0,"""Asia""" +2024-07-12,39786,2961,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2004.11,{},53448,0,"""Africa""" +2024-09-07,39787,806,"[\""Wireless Mouse\"", \""Phone\""]",4250.49,{},124447,1,"""North America""" +2023-09-17,39788,4367,"[\""Phone\"", \""Monitor\""]",595.94,"{\""promo\"": \""18%\""}",117172,1,"""South America""" +2024-05-05,39789,4625,"[\""Monitor\"", \""Phone\""]",3768.18,{},25301,1,"""South America""" +2023-12-18,39790,1811,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",457.18,"{\""promo\"": \""6%\""}",77230,0,"""Africa""" +2023-02-12,39791,7017,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3946.67,"{\""loyalty\"": \""15%\""}",170812,0,"""Europe""" +2023-03-17,39792,2923,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1019.81,"{\""loyalty\"": \""7%\""}",53434,0,"""Europe""" +2023-06-14,39793,7317,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4474.27,"{\""seasonal\"": \""9%\""}",4351,0,"""Asia""" +2024-02-12,39794,1119,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",153.67,"{\""promo\"": \""12%\""}",65575,0,"""North America""" +2023-12-05,39795,9037,"[\""Monitor\""]",3033.01,"{\""promo\"": \""30%\""}",232035,1,"""Africa""" +2024-04-02,39796,3074,"[\""Tablet\"", \""Monitor\""]",1131.1,"{\"": \""15%\""}",37739,0,"""South America""" +2024-11-30,39797,9679,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",841.73,"{\""loyalty\"": \""13%\""}",229942,1,"""Asia""" +2023-08-05,39798,2823,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",361.98,"{\""loyalty\"": \""7%\""}",153426,1,"""South America""" +2024-11-13,39799,3632,"[\""Wireless Mouse\"", \""Tablet\""]",4878.98,"{\""loyalty\"": \""23%\""}",9685,0,"""Europe""" +2023-10-24,39800,8649,"[\""Tablet\"", \""Headphones\""]",741.98,{},170144,1,"""North America""" +2023-02-15,39801,8392,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",634.04,"{\""seasonal\"": \""12%\""}",2156,1,"""North America""" +2024-01-02,39802,6648,"[\""Headphones\""]",4363.12,{},78579,1,"""South America""" +2024-09-14,39803,2639,"[\""Monitor\"", \""Phone\""]",3279.06,"{\"": \""20%\""}",67512,1,"""Africa""" +2024-11-14,39804,7406,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1032.09,"{\"": \""17%\""}",156154,0,"""Africa""" +2023-04-07,39805,7539,"[\""Laptop\""]",144.67,{},181505,1,"""Europe""" +2024-11-22,39806,5269,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1894.18,"{\""seasonal\"": \""6%\""}",292845,0,"""Europe""" +2023-12-16,39807,6418,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4766.73,{},289081,1,"""Africa""" +2024-02-13,39808,792,"[\""Charger\"", \""Tablet\""]",129.37,"{\""promo\"": \""7%\""}",167724,1,"""Africa""" +2023-08-18,39809,6311,"[\""Phone\""]",4837.59,{},285720,1,"""South America""" +2024-04-10,39810,7464,"[\""Monitor\""]",3905.46,{},37825,0,"""North America""" +2024-10-19,39811,2555,"[\""Tablet\""]",435.14,{},144090,1,"""South America""" +2023-10-29,39812,3946,"[\""Keyboard\"", \""Wireless Mouse\""]",4277.39,"{\""promo\"": \""16%\""}",292469,1,"""South America""" +2024-10-28,39813,5734,"[\""Phone\"", \""Tablet\""]",1869.89,"{\""loyalty\"": \""12%\""}",92458,1,"""Europe""" +2024-09-10,39814,4659,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3962.53,"{\""seasonal\"": \""15%\""}",6611,1,"""Europe""" +2023-07-30,39815,1740,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1067.23,{},69715,1,"""Africa""" +2023-11-11,39816,5562,"[\""Monitor\"", \""Headphones\""]",1459.53,"{\""seasonal\"": \""8%\""}",174151,1,"""Africa""" +2024-10-16,39817,4954,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1324.71,"{\"": \""24%\""}",297390,1,"""South America""" +2024-06-05,39818,4925,"[\""Monitor\""]",2601.95,{},99127,0,"""Europe""" +2023-03-13,39819,4046,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4629.32,{},36339,1,"""Asia""" +2023-03-23,39820,9338,"[\""Monitor\"", \""Laptop\""]",400.88,"{\""loyalty\"": \""15%\""}",293548,0,"""North America""" +2024-08-17,39821,9026,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2887.42,{},226778,1,"""North America""" +2024-08-11,39822,5829,"[\""Phone\"", \""Headphones\""]",4525.98,{},262405,1,"""South America""" +2024-09-03,39823,3725,"[\""Charger\""]",3787.22,"{\"": \""22%\""}",208017,1,"""Africa""" +2024-03-12,39824,5391,"[\""Headphones\"", \""Tablet\""]",2243.89,{},1716,0,"""North America""" +2023-09-04,39825,2087,"[\""Phone\""]",1354.13,{},201902,0,"""Europe""" +2023-01-23,39826,2043,"[\""Laptop\"", \""Keyboard\""]",962.54,{},23221,0,"""Europe""" +2024-03-23,39827,3559,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3700.3,{},146656,0,"""South America""" +2024-08-08,39828,3784,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4731.64,"{\"": \""6%\""}",200864,1,"""South America""" +2024-02-25,39829,7417,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4059.98,"{\""seasonal\"": \""29%\""}",116784,0,"""South America""" +2023-06-17,39830,7513,"[\""Charger\""]",4934.8,"{\"": \""10%\""}",222327,1,"""South America""" +2024-01-24,39831,4278,"[\""Headphones\""]",1829.71,{},242166,1,"""North America""" +2023-11-10,39832,700,"[\""Monitor\""]",2341.25,{},72166,0,"""Africa""" +2023-07-21,39833,7962,"[\""Wireless Mouse\"", \""Headphones\""]",2280.78,{},86890,1,"""Asia""" +2024-12-04,39834,4185,"[\""Charger\""]",2452.55,{},100301,0,"""Asia""" +2024-08-09,39835,4029,"[\""Tablet\""]",3570.03,{},64316,1,"""North America""" +2023-11-01,39836,9506,"[\""Wireless Mouse\"", \""Charger\""]",3220.6,"{\""promo\"": \""13%\""}",226356,0,"""Africa""" +2024-07-21,39837,7784,"[\""Tablet\""]",447.92,{},97480,1,"""Europe""" +2024-05-13,39838,3907,"[\""Charger\"", \""Keyboard\""]",4319.67,"{\""promo\"": \""30%\""}",98216,1,"""Europe""" +2024-03-25,39839,2184,"[\""Keyboard\"", \""Laptop\""]",2076.95,{},25984,0,"""Asia""" +2023-02-11,39840,5342,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3529.84,{},29312,1,"""Europe""" +2024-01-03,39841,8143,"[\""Tablet\""]",4109.25,{},245564,0,"""Europe""" +2024-11-25,39842,5811,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1346.1,"{\""promo\"": \""7%\""}",34471,0,"""North America""" +2024-09-05,39843,1619,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3794.42,{},24185,1,"""South America""" +2023-07-07,39844,317,"[\""Wireless Mouse\"", \""Keyboard\""]",661.86,{},4972,0,"""South America""" +2024-06-29,39845,5232,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1129.96,"{\""seasonal\"": \""10%\""}",35184,1,"""Africa""" +2023-08-26,39846,1175,"[\""Keyboard\"", \""Tablet\""]",334.66,{},242646,0,"""Europe""" +2023-09-04,39847,3197,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2001.62,{},258803,1,"""Asia""" +2024-04-25,39848,9225,"[\""Charger\""]",570.55,"{\""seasonal\"": \""14%\""}",296719,1,"""Europe""" +2023-08-05,39849,3032,"[\""Headphones\""]",3388.14,"{\"": \""23%\""}",191704,0,"""South America""" +2024-07-06,39850,8511,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3745.33,{},138942,0,"""South America""" +2023-02-16,39851,2825,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1305.73,{},79753,0,"""Africa""" +2024-12-01,39852,9559,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1117.49,{},130770,1,"""North America""" +2024-06-08,39853,9649,"[\""Monitor\""]",1668.51,{},107561,0,"""North America""" +2024-07-24,39854,4958,"[\""Laptop\""]",2509.11,"{\""promo\"": \""28%\""}",85097,1,"""Asia""" +2023-08-22,39855,1649,"[\""Charger\""]",3226.83,"{\""promo\"": \""27%\""}",233754,0,"""Europe""" +2024-02-12,39856,6965,"[\""Laptop\"", \""Monitor\""]",888.95,"{\""loyalty\"": \""13%\""}",156823,1,"""North America""" +2024-01-06,39857,5341,"[\""Wireless Mouse\"", \""Phone\""]",2386.41,{},258423,0,"""Asia""" +2023-04-12,39858,2106,"[\""Tablet\""]",442.4,{},192814,0,"""Europe""" +2024-02-05,39859,9088,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",302.26,{},81046,1,"""North America""" +2023-01-09,39860,8583,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3369.96,"{\""seasonal\"": \""21%\""}",119583,1,"""Africa""" +2024-07-03,39861,8682,"[\""Monitor\""]",3536.39,"{\""promo\"": \""24%\""}",200644,0,"""Europe""" +2023-03-07,39862,9734,"[\""Tablet\""]",1272.72,{},3097,1,"""Asia""" +2024-12-04,39863,4914,"[\""Keyboard\"", \""Laptop\""]",3356.99,"{\""loyalty\"": \""9%\""}",151307,0,"""Africa""" +2024-12-29,39864,1942,"[\""Laptop\""]",4795.83,"{\""seasonal\"": \""16%\""}",30199,1,"""Africa""" +2024-04-02,39865,6528,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3211.9,"{\""seasonal\"": \""14%\""}",205019,1,"""Asia""" +2024-07-08,39866,259,"[\""Keyboard\"", \""Tablet\""]",633.31,"{\""seasonal\"": \""6%\""}",213911,0,"""Asia""" +2024-03-26,39867,9583,"[\""Wireless Mouse\"", \""Headphones\""]",3010.82,"{\""loyalty\"": \""10%\""}",152635,1,"""South America""" +2023-03-22,39868,3525,"[\""Phone\"", \""Tablet\""]",3698.46,{},143893,1,"""North America""" +2024-04-11,39869,6636,"[\""Headphones\""]",1429.12,{},65910,0,"""Africa""" +2024-02-27,39870,4215,"[\""Wireless Mouse\"", \""Keyboard\""]",4433.82,{},251717,1,"""Asia""" +2024-02-03,39871,9496,"[\""Phone\"", \""Keyboard\""]",2101.49,"{\"": \""20%\""}",46815,1,"""Africa""" +2023-03-28,39872,640,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4947.01,{},129825,1,"""Asia""" +2024-09-18,39873,5541,"[\""Keyboard\""]",2647.23,{},239173,1,"""Europe""" +2023-07-24,39874,4551,"[\""Laptop\""]",3824.55,{},273541,0,"""Asia""" +2024-03-28,39875,8012,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2539.42,{},258604,0,"""Europe""" +2024-08-11,39876,9071,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4299.83,{},232123,0,"""North America""" +2024-01-13,39877,6474,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4168.34,{},186046,0,"""Africa""" +2024-06-20,39878,1488,"[\""Tablet\"", \""Keyboard\""]",1159.82,{},35001,1,"""Europe""" +2024-07-25,39879,3162,"[\""Phone\"", \""Tablet\""]",1091.72,{},114497,0,"""North America""" +2023-09-13,39880,1908,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",512.34,{},41241,1,"""North America""" +2024-06-29,39881,9377,"[\""Phone\""]",1191.87,"{\""loyalty\"": \""28%\""}",102228,0,"""Asia""" +2023-06-26,39882,2080,"[\""Wireless Mouse\"", \""Monitor\""]",2532.64,"{\""loyalty\"": \""16%\""}",188748,0,"""Africa""" +2024-07-25,39883,4289,"[\""Laptop\""]",142.87,"{\""seasonal\"": \""18%\""}",187226,0,"""Europe""" +2023-10-09,39884,2070,"[\""Headphones\"", \""Tablet\""]",1718.05,{},192471,0,"""South America""" +2023-08-26,39885,9023,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3579.94,{},24286,1,"""South America""" +2023-06-14,39886,2199,"[\""Keyboard\""]",2541.72,{},41343,0,"""South America""" +2023-07-10,39887,2816,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3705.04,"{\""promo\"": \""30%\""}",246169,0,"""South America""" +2023-11-29,39888,3751,"[\""Keyboard\"", \""Headphones\""]",2786.12,"{\""promo\"": \""6%\""}",94054,0,"""Europe""" +2024-11-12,39889,6625,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1615.07,"{\""loyalty\"": \""24%\""}",135623,0,"""Africa""" +2024-04-21,39890,2619,"[\""Monitor\"", \""Charger\""]",1016.57,"{\"": \""29%\""}",292496,1,"""North America""" +2024-04-09,39891,9675,"[\""Laptop\"", \""Wireless Mouse\""]",3144.98,{},269930,0,"""Africa""" +2024-01-19,39892,8776,"[\""Tablet\"", \""Monitor\""]",1626.4,{},177786,1,"""Africa""" +2023-12-20,39893,1713,"[\""Laptop\""]",4538.24,{},166258,0,"""North America""" +2023-10-24,39894,2988,"[\""Monitor\"", \""Phone\""]",3017.24,{},61189,1,"""North America""" +2024-04-25,39895,7341,"[\""Charger\""]",2545.45,"{\""loyalty\"": \""22%\""}",243634,0,"""Africa""" +2024-09-21,39896,8907,"[\""Charger\""]",2698.75,"{\""promo\"": \""20%\""}",124297,1,"""North America""" +2024-05-18,39897,8562,"[\""Phone\"", \""Charger\""]",174.7,{},276190,0,"""Africa""" +2024-01-24,39898,7515,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2727.36,"{\"": \""22%\""}",59213,0,"""North America""" +2024-05-11,39899,5023,"[\""Keyboard\""]",839.54,"{\""seasonal\"": \""6%\""}",273404,0,"""Africa""" +2023-06-30,39900,2040,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3292.24,"{\"": \""12%\""}",272151,1,"""Asia""" +2023-05-22,39901,5739,"[\""Keyboard\""]",4482.87,{},2776,1,"""Europe""" +2024-09-02,39902,5987,"[\""Charger\""]",559.69,"{\""loyalty\"": \""22%\""}",224704,0,"""Europe""" +2024-12-13,39903,5246,"[\""Keyboard\""]",4296.54,"{\""seasonal\"": \""10%\""}",182176,1,"""North America""" +2023-02-07,39904,4303,"[\""Monitor\""]",2391.93,"{\""seasonal\"": \""6%\""}",166716,0,"""Africa""" +2023-12-13,39905,4424,"[\""Charger\"", \""Laptop\""]",2465.48,"{\""promo\"": \""8%\""}",154153,1,"""North America""" +2024-07-14,39906,9850,"[\""Charger\"", \""Headphones\""]",1111.15,"{\""loyalty\"": \""7%\""}",267788,0,"""Asia""" +2023-02-01,39907,1542,"[\""Phone\"", \""Headphones\""]",2190.82,"{\"": \""5%\""}",12065,1,"""South America""" +2024-12-02,39908,2041,"[\""Wireless Mouse\"", \""Headphones\""]",3852.39,"{\""loyalty\"": \""14%\""}",201766,1,"""Europe""" +2023-03-11,39909,4022,"[\""Charger\"", \""Headphones\""]",3875.12,"{\"": \""8%\""}",214542,0,"""Asia""" +2023-12-13,39910,6250,"[\""Headphones\""]",3859.7,{},106454,1,"""Africa""" +2024-07-06,39911,8093,"[\""Laptop\"", \""Headphones\""]",435.64,"{\""loyalty\"": \""22%\""}",196917,1,"""North America""" +2023-10-08,39912,3191,"[\""Laptop\"", \""Phone\""]",1751.56,{},80572,1,"""South America""" +2024-04-19,39913,9290,"[\""Tablet\"", \""Keyboard\""]",4017.47,{},90334,1,"""Asia""" +2024-10-07,39914,8657,"[\""Keyboard\"", \""Phone\""]",235.62,"{\""loyalty\"": \""18%\""}",186793,1,"""South America""" +2023-06-22,39915,5415,"[\""Laptop\"", \""Wireless Mouse\""]",4410.03,{},165253,0,"""Europe""" +2024-09-26,39916,6425,"[\""Monitor\""]",4454.56,"{\""promo\"": \""17%\""}",62041,0,"""South America""" +2024-05-29,39917,5078,"[\""Phone\"", \""Monitor\""]",2552.09,{},73416,0,"""North America""" +2023-01-19,39918,565,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3605.75,"{\""seasonal\"": \""6%\""}",265726,0,"""Africa""" +2024-06-07,39919,2157,"[\""Laptop\""]",1329.02,"{\"": \""8%\""}",181160,1,"""Europe""" +2023-03-26,39920,200,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1799.75,{},251394,0,"""North America""" +2024-09-17,39921,7078,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3918.82,"{\""promo\"": \""9%\""}",23748,1,"""Asia""" +2024-07-17,39922,6943,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3894.99,{},41118,0,"""Asia""" +2023-10-27,39923,7549,"[\""Wireless Mouse\"", \""Tablet\""]",2608.85,{},21644,1,"""North America""" +2024-04-09,39924,191,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",943.95,"{\""promo\"": \""23%\""}",5035,0,"""South America""" +2023-08-13,39925,1465,"[\""Charger\"", \""Phone\""]",4141.77,{},240429,0,"""South America""" +2024-12-01,39926,7841,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1627.87,{},35469,0,"""Europe""" +2024-11-04,39927,2455,"[\""Phone\""]",2671.67,{},19948,1,"""Asia""" +2024-08-31,39928,8621,"[\""Phone\""]",60.42,{},188873,1,"""Europe""" +2023-02-04,39929,2646,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",566.44,"{\""seasonal\"": \""6%\""}",153166,1,"""Europe""" +2023-11-06,39930,1442,"[\""Tablet\"", \""Headphones\""]",2651.77,"{\""loyalty\"": \""23%\""}",195279,0,"""Asia""" +2023-06-21,39931,788,"[\""Wireless Mouse\""]",4057.74,"{\""promo\"": \""23%\""}",78638,0,"""Europe""" +2023-01-18,39932,6754,"[\""Tablet\"", \""Charger\""]",1816.66,"{\"": \""30%\""}",35225,1,"""Europe""" +2024-09-06,39933,6812,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1570.85,"{\"": \""30%\""}",278168,0,"""Africa""" +2023-10-01,39934,1886,"[\""Headphones\"", \""Tablet\""]",3479.68,"{\""seasonal\"": \""24%\""}",97238,0,"""North America""" +2023-08-02,39935,8519,"[\""Wireless Mouse\"", \""Keyboard\""]",2025.25,{},275782,0,"""North America""" +2023-03-30,39936,9764,"[\""Wireless Mouse\"", \""Monitor\""]",1711.85,{},149443,1,"""Asia""" +2024-01-26,39937,9249,"[\""Monitor\"", \""Laptop\""]",3161.37,{},211763,1,"""Africa""" +2024-04-15,39938,3338,"[\""Wireless Mouse\"", \""Keyboard\""]",506.03,"{\""seasonal\"": \""9%\""}",279595,0,"""South America""" +2024-09-23,39939,2992,"[\""Wireless Mouse\""]",4789.58,{},228906,0,"""Africa""" +2024-03-14,39940,5680,"[\""Laptop\"", \""Wireless Mouse\""]",3074.44,"{\""seasonal\"": \""29%\""}",95811,0,"""North America""" +2023-01-30,39941,6000,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2970.8,{},179645,0,"""North America""" +2023-07-08,39942,3086,"[\""Headphones\""]",3935.11,"{\""promo\"": \""16%\""}",275769,0,"""South America""" +2023-02-08,39943,5030,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",76.59,{},251263,1,"""Europe""" +2024-08-06,39944,8551,"[\""Phone\""]",2634.12,"{\""seasonal\"": \""9%\""}",14173,0,"""South America""" +2023-03-28,39945,9533,"[\""Charger\"", \""Monitor\""]",3756.73,"{\""promo\"": \""6%\""}",205203,0,"""Africa""" +2023-05-24,39946,1425,"[\""Headphones\""]",1530.54,{},39156,0,"""Asia""" +2024-08-28,39947,4070,"[\""Monitor\""]",4676.31,"{\""seasonal\"": \""27%\""}",81536,0,"""South America""" +2024-03-23,39948,1935,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2517.26,"{\"": \""26%\""}",188245,0,"""Africa""" +2023-05-11,39949,2356,"[\""Keyboard\"", \""Tablet\""]",1659.31,"{\"": \""15%\""}",200730,1,"""Europe""" +2023-12-12,39950,5636,"[\""Charger\"", \""Monitor\""]",338.09,{},166726,1,"""Africa""" +2023-11-03,39951,3715,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1850.64,{},183199,1,"""Africa""" +2024-06-08,39952,8329,"[\""Headphones\"", \""Keyboard\""]",2807.86,"{\"": \""25%\""}",189655,1,"""North America""" +2024-01-26,39953,4500,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",84.86,{},196377,0,"""Africa""" +2024-04-08,39954,8942,"[\""Wireless Mouse\""]",1158.05,{},78109,0,"""Asia""" +2024-06-12,39955,1609,"[\""Laptop\""]",3564.92,{},186683,1,"""Africa""" +2023-03-22,39956,3095,"[\""Tablet\""]",234.87,{},198569,1,"""Asia""" +2023-02-18,39957,1091,"[\""Tablet\""]",1639.79,{},40188,0,"""Asia""" +2024-07-11,39958,6701,"[\""Monitor\"", \""Charger\""]",1059.8,"{\""promo\"": \""8%\""}",63709,1,"""South America""" +2024-04-21,39959,9199,"[\""Laptop\"", \""Keyboard\""]",1506.52,{},241121,1,"""North America""" +2024-04-29,39960,9672,"[\""Tablet\"", \""Wireless Mouse\""]",4800.87,"{\""seasonal\"": \""8%\""}",25777,1,"""North America""" +2024-03-11,39961,3120,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2762.89,"{\""loyalty\"": \""8%\""}",78291,0,"""North America""" +2023-09-19,39962,4516,"[\""Tablet\""]",1994.1,"{\""promo\"": \""24%\""}",105793,0,"""Asia""" +2023-07-22,39963,7566,"[\""Monitor\""]",4183.12,{},243554,0,"""Europe""" +2023-10-01,39964,2423,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2930.22,{},34748,1,"""North America""" +2024-04-29,39965,5565,"[\""Tablet\""]",2258.04,"{\"": \""23%\""}",241656,0,"""North America""" +2023-11-13,39966,1686,"[\""Keyboard\""]",768.01,"{\"": \""27%\""}",41162,0,"""South America""" +2023-07-21,39967,9116,"[\""Charger\""]",1125.7,{},103298,1,"""South America""" +2024-08-28,39968,2605,"[\""Keyboard\"", \""Phone\""]",3805.88,"{\""seasonal\"": \""23%\""}",281808,1,"""South America""" +2023-04-06,39969,4248,"[\""Monitor\"", \""Tablet\""]",1640.01,{},107023,1,"""Asia""" +2023-07-31,39970,4367,"[\""Headphones\"", \""Phone\""]",2849.33,{},43512,0,"""Asia""" +2024-02-25,39971,4215,"[\""Keyboard\""]",1646.56,{},100612,0,"""Europe""" +2024-12-30,39972,1797,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1763.26,{},32834,1,"""Europe""" +2024-11-20,39973,9395,"[\""Phone\""]",2416.38,"{\""promo\"": \""16%\""}",14150,1,"""Asia""" +2023-10-01,39974,6184,"[\""Monitor\"", \""Laptop\""]",1361.31,"{\""seasonal\"": \""27%\""}",5780,1,"""Asia""" +2024-06-06,39975,8237,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4741.76,"{\""loyalty\"": \""27%\""}",87809,1,"""Africa""" +2024-03-09,39976,7081,"[\""Tablet\""]",528.48,"{\""seasonal\"": \""8%\""}",198018,1,"""Asia""" +2024-06-22,39977,3677,"[\""Headphones\"", \""Phone\""]",2640.09,"{\"": \""22%\""}",129728,1,"""South America""" +2024-05-29,39978,5722,"[\""Laptop\""]",2608.04,{},137134,0,"""South America""" +2024-04-14,39979,1995,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3885.81,{},138743,1,"""South America""" +2023-11-02,39980,6251,"[\""Laptop\"", \""Tablet\""]",3395.73,{},262749,1,"""Asia""" +2024-10-17,39981,8732,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4640.85,{},134189,0,"""Europe""" +2023-11-04,39982,7529,"[\""Laptop\"", \""Keyboard\""]",3132.77,{},162315,0,"""Europe""" +2024-05-13,39983,7582,"[\""Phone\"", \""Monitor\""]",4905.43,{},126424,0,"""Asia""" +2024-09-14,39984,1495,"[\""Laptop\"", \""Keyboard\""]",1249.41,{},267595,1,"""Europe""" +2024-12-13,39985,1668,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2758.89,{},289225,0,"""North America""" +2023-08-23,39986,5318,"[\""Wireless Mouse\"", \""Tablet\""]",230.71,"{\""seasonal\"": \""18%\""}",135349,0,"""Asia""" +2023-07-25,39987,8017,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4311.52,{},30248,1,"""Europe""" +2023-10-24,39988,7225,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1757.59,{},247091,1,"""North America""" +2024-11-06,39989,8232,"[\""Monitor\""]",4270.91,{},260413,0,"""North America""" +2023-12-24,39990,9785,"[\""Monitor\""]",664.1,{},77439,0,"""Asia""" +2023-08-07,39991,9008,"[\""Headphones\"", \""Tablet\""]",4873.81,{},7408,1,"""South America""" +2024-12-30,39992,7654,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3205.6,{},196609,1,"""North America""" +2023-02-03,39993,8031,"[\""Laptop\"", \""Tablet\""]",1351.25,"{\""loyalty\"": \""8%\""}",80189,0,"""South America""" +2023-09-25,39994,3526,"[\""Phone\"", \""Headphones\""]",1904.3,"{\""loyalty\"": \""15%\""}",146475,0,"""Europe""" +2023-04-25,39995,8140,"[\""Headphones\""]",4917.92,"{\""loyalty\"": \""21%\""}",275427,0,"""Europe""" +2023-09-24,39996,2222,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",621.21,{},295703,1,"""North America""" +2024-07-26,39997,6899,"[\""Laptop\""]",849.22,"{\""loyalty\"": \""15%\""}",13594,0,"""South America""" +2023-03-15,39998,7968,"[\""Laptop\""]",4325.01,"{\""promo\"": \""22%\""}",26633,1,"""South America""" +2023-02-23,39999,936,"[\""Laptop\"", \""Keyboard\""]",371.36,"{\"": \""13%\""}",138648,1,"""Africa""" +2024-07-15,40000,8097,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4968.46,{},241159,0,"""Europe""" +2024-01-26,40001,5227,"[\""Wireless Mouse\"", \""Charger\""]",734.47,{},10997,0,"""Asia""" +2023-03-16,40002,697,"[\""Tablet\"", \""Charger\""]",4952.4,"{\"": \""26%\""}",89532,0,"""North America""" +2024-01-10,40003,5088,"[\""Keyboard\"", \""Tablet\""]",4027.62,{},267340,0,"""North America""" +2023-10-16,40004,1121,"[\""Wireless Mouse\""]",4948.92,"{\""loyalty\"": \""16%\""}",46338,1,"""North America""" +2023-06-07,40005,9621,"[\""Keyboard\"", \""Tablet\""]",1141.58,{},45360,1,"""North America""" +2024-12-21,40006,7197,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4410.46,"{\""loyalty\"": \""15%\""}",130410,1,"""Asia""" +2023-03-02,40007,7889,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2327.76,"{\""seasonal\"": \""20%\""}",252945,1,"""Africa""" +2024-06-28,40008,2990,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1802.5,"{\""promo\"": \""29%\""}",293556,1,"""Asia""" +2023-11-17,40009,9250,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1918.11,"{\"": \""29%\""}",283666,0,"""North America""" +2024-09-26,40010,8877,"[\""Charger\"", \""Phone\""]",1559.98,{},255466,1,"""Europe""" +2024-05-20,40011,7569,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1188.93,"{\""promo\"": \""12%\""}",114120,0,"""Europe""" +2023-12-16,40012,1780,"[\""Monitor\"", \""Headphones\""]",2780.57,{},158541,0,"""Europe""" +2024-08-25,40013,7195,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",801.86,{},248961,1,"""North America""" +2024-05-01,40014,1341,"[\""Tablet\""]",1751.23,"{\"": \""10%\""}",151547,1,"""Europe""" +2024-03-09,40015,2350,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",585.31,"{\""loyalty\"": \""19%\""}",229671,1,"""Africa""" +2024-11-28,40016,1197,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4315.39,"{\"": \""18%\""}",23272,1,"""North America""" +2024-09-17,40017,4004,"[\""Monitor\""]",2537.92,{},160306,0,"""Europe""" +2023-06-08,40018,774,"[\""Monitor\"", \""Phone\""]",4981.91,"{\"": \""13%\""}",280242,1,"""Africa""" +2024-08-25,40019,4648,"[\""Monitor\""]",1983.08,{},68894,0,"""North America""" +2023-07-08,40020,672,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2919.64,"{\""promo\"": \""26%\""}",20475,0,"""Europe""" +2024-08-02,40021,8865,"[\""Monitor\"", \""Keyboard\""]",1144.64,{},272141,1,"""Asia""" +2024-09-14,40022,3445,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4568.42,{},176745,1,"""Asia""" +2023-08-30,40023,7536,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1945.91,{},70940,0,"""Asia""" +2023-09-10,40024,7262,"[\""Tablet\""]",4335.46,"{\"": \""8%\""}",77784,1,"""North America""" +2024-01-19,40025,8380,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3229.8,{},244716,1,"""South America""" +2023-05-13,40026,485,"[\""Laptop\""]",537.52,{},93778,0,"""South America""" +2023-02-23,40027,5812,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2436.13,{},274353,0,"""North America""" +2024-08-26,40028,2970,"[\""Phone\"", \""Keyboard\""]",1119.66,{},205060,1,"""Africa""" +2023-01-19,40029,7255,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3219.52,{},126607,0,"""Africa""" +2023-09-08,40030,5462,"[\""Phone\""]",4723.86,"{\"": \""9%\""}",190371,0,"""Europe""" +2023-06-10,40031,6469,"[\""Keyboard\"", \""Headphones\""]",244.81,"{\""promo\"": \""13%\""}",151952,1,"""Asia""" +2023-03-05,40032,1138,"[\""Charger\"", \""Keyboard\""]",2337.84,{},166383,1,"""Africa""" +2024-07-26,40033,8577,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4227.0,"{\""seasonal\"": \""29%\""}",153480,1,"""South America""" +2024-03-27,40034,141,"[\""Headphones\"", \""Charger\""]",3873.78,{},45037,1,"""Asia""" +2024-09-21,40035,9407,"[\""Tablet\""]",3986.15,{},47203,1,"""North America""" +2024-10-30,40036,3629,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2894.23,{},3151,0,"""North America""" +2023-03-07,40037,4996,"[\""Wireless Mouse\"", \""Monitor\""]",3738.34,{},188360,0,"""Europe""" +2024-03-16,40038,2293,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2694.8,"{\""promo\"": \""7%\""}",15415,0,"""North America""" +2024-03-19,40039,1358,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1873.08,"{\"": \""30%\""}",30551,1,"""Asia""" +2023-03-05,40040,1136,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4039.64,{},22345,1,"""Asia""" +2023-04-07,40041,3827,"[\""Tablet\""]",3993.11,"{\""promo\"": \""29%\""}",185822,1,"""Asia""" +2024-12-05,40042,4255,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2670.54,{},247640,0,"""Africa""" +2023-08-04,40043,4356,"[\""Tablet\"", \""Headphones\""]",2707.58,"{\"": \""21%\""}",185854,0,"""Europe""" +2024-02-24,40044,1242,"[\""Laptop\""]",2844.15,{},56846,1,"""Asia""" +2023-11-24,40045,157,"[\""Phone\""]",4156.88,"{\""seasonal\"": \""17%\""}",62241,1,"""South America""" +2023-12-30,40046,360,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2889.96,{},113931,1,"""South America""" +2024-10-16,40047,2583,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2119.26,"{\""seasonal\"": \""29%\""}",143750,0,"""South America""" +2024-01-20,40048,18,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1326.58,"{\""seasonal\"": \""24%\""}",285966,1,"""Africa""" +2024-12-12,40049,3399,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4399.51,{},260393,1,"""Africa""" +2024-03-19,40050,6007,"[\""Phone\"", \""Tablet\""]",1704.65,{},80835,0,"""South America""" +2023-05-01,40051,6096,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2006.73,"{\""promo\"": \""28%\""}",229463,1,"""North America""" +2024-01-16,40052,6025,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2080.71,{},41236,0,"""Africa""" +2023-06-16,40053,8827,"[\""Monitor\""]",2560.62,"{\""seasonal\"": \""23%\""}",228978,0,"""North America""" +2023-04-20,40054,6974,"[\""Charger\"", \""Keyboard\""]",934.83,"{\""seasonal\"": \""19%\""}",60619,0,"""North America""" +2023-01-08,40055,8061,"[\""Keyboard\""]",1246.59,{},137664,0,"""Asia""" +2023-12-05,40056,1500,"[\""Tablet\"", \""Keyboard\""]",4839.79,"{\""seasonal\"": \""21%\""}",193235,1,"""North America""" +2023-02-22,40057,7814,"[\""Phone\"", \""Tablet\""]",4796.43,"{\""promo\"": \""7%\""}",144001,0,"""Africa""" +2024-07-23,40058,2789,"[\""Laptop\""]",2157.9,"{\""loyalty\"": \""18%\""}",206478,0,"""South America""" +2024-08-14,40059,8046,"[\""Headphones\""]",3978.6,{},96498,1,"""South America""" +2023-04-28,40060,769,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4590.68,{},198933,0,"""Asia""" +2024-01-06,40061,4019,"[\""Headphones\"", \""Phone\""]",4450.81,"{\"": \""5%\""}",250724,0,"""North America""" +2023-01-13,40062,9343,"[\""Keyboard\"", \""Tablet\""]",178.1,{},175099,0,"""Asia""" +2024-04-20,40063,82,"[\""Wireless Mouse\"", \""Phone\""]",3031.22,"{\""seasonal\"": \""14%\""}",296532,1,"""Asia""" +2023-11-30,40064,3912,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3772.91,"{\""seasonal\"": \""11%\""}",118481,0,"""Asia""" +2024-02-24,40065,2278,"[\""Charger\"", \""Keyboard\""]",1654.04,"{\"": \""16%\""}",194482,1,"""Europe""" +2024-08-09,40066,4849,"[\""Wireless Mouse\"", \""Headphones\""]",2858.0,{},76510,1,"""Europe""" +2024-07-07,40067,2485,"[\""Tablet\"", \""Keyboard\""]",3083.16,{},87762,1,"""Africa""" +2023-12-09,40068,9105,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1901.53,{},2430,0,"""Asia""" +2024-07-03,40069,8870,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2676.97,"{\""seasonal\"": \""17%\""}",298574,1,"""South America""" +2024-01-20,40070,7738,"[\""Keyboard\"", \""Tablet\""]",3880.92,"{\"": \""29%\""}",95999,0,"""South America""" +2023-09-23,40071,1093,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1126.17,{},198390,0,"""South America""" +2023-04-06,40072,7519,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3921.12,{},211418,1,"""Africa""" +2023-01-01,40073,1268,"[\""Headphones\"", \""Charger\""]",1424.01,"{\""promo\"": \""23%\""}",86500,1,"""Europe""" +2023-12-18,40074,7700,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2897.68,{},50763,0,"""Europe""" +2024-10-06,40075,7874,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2180.33,{},110697,1,"""Asia""" +2023-12-24,40076,3475,"[\""Charger\""]",790.8,"{\"": \""17%\""}",179074,1,"""Africa""" +2023-01-13,40077,6847,"[\""Laptop\"", \""Charger\""]",3157.92,{},120509,1,"""Asia""" +2024-10-04,40078,6043,"[\""Charger\"", \""Headphones\""]",1406.29,{},34931,1,"""Asia""" +2024-07-05,40079,9385,"[\""Laptop\""]",51.16,{},168040,0,"""South America""" +2023-05-09,40080,187,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3842.36,"{\""promo\"": \""27%\""}",139981,1,"""North America""" +2024-07-19,40081,8214,"[\""Charger\"", \""Tablet\""]",1973.08,{},176478,1,"""North America""" +2023-03-22,40082,5929,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3594.68,"{\""seasonal\"": \""17%\""}",197074,1,"""Europe""" +2024-08-10,40083,7650,"[\""Headphones\""]",800.92,"{\"": \""12%\""}",250627,0,"""Asia""" +2024-05-17,40084,4778,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",620.71,"{\""promo\"": \""8%\""}",157587,1,"""Africa""" +2024-07-25,40085,3910,"[\""Monitor\""]",2881.59,"{\""seasonal\"": \""29%\""}",161704,0,"""South America""" +2024-07-27,40086,3403,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2992.93,"{\""seasonal\"": \""29%\""}",159407,1,"""Asia""" +2024-12-09,40087,2148,"[\""Tablet\"", \""Charger\""]",1946.97,{},253704,1,"""Asia""" +2024-11-05,40088,9040,"[\""Phone\"", \""Tablet\""]",2024.44,{},240968,0,"""Asia""" +2024-04-23,40089,7878,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1239.91,"{\""loyalty\"": \""19%\""}",150498,1,"""Africa""" +2024-02-27,40090,9325,"[\""Tablet\"", \""Monitor\""]",3378.69,{},42859,1,"""Asia""" +2024-09-19,40091,2664,"[\""Tablet\"", \""Headphones\""]",4574.15,"{\""seasonal\"": \""29%\""}",274806,1,"""Europe""" +2024-07-31,40092,2157,"[\""Charger\""]",4906.29,{},87116,1,"""Africa""" +2023-03-07,40093,6521,"[\""Keyboard\""]",120.17,"{\""promo\"": \""30%\""}",138880,0,"""Africa""" +2023-06-24,40094,6764,"[\""Charger\""]",626.55,"{\""loyalty\"": \""8%\""}",268873,0,"""South America""" +2024-12-11,40095,5337,"[\""Laptop\""]",1106.99,{},119388,0,"""North America""" +2024-04-23,40096,6216,"[\""Headphones\""]",3665.14,{},39218,0,"""North America""" +2023-04-03,40097,4749,"[\""Keyboard\""]",3925.26,{},156243,0,"""Africa""" +2024-07-03,40098,1916,"[\""Wireless Mouse\"", \""Monitor\""]",2329.6,{},108310,0,"""Africa""" +2024-11-28,40099,191,"[\""Monitor\"", \""Headphones\""]",707.93,{},197945,1,"""Europe""" +2023-08-18,40100,9727,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",680.27,{},4893,1,"""South America""" +2024-12-28,40101,9739,"[\""Phone\"", \""Charger\"", \""Monitor\""]",734.22,{},57925,0,"""Africa""" +2023-10-21,40102,6793,"[\""Phone\""]",1717.95,{},22927,1,"""Africa""" +2023-08-25,40103,4316,"[\""Wireless Mouse\""]",833.8,"{\""seasonal\"": \""17%\""}",291749,0,"""South America""" +2023-04-01,40104,6697,"[\""Keyboard\""]",2975.67,{},290895,0,"""South America""" +2023-12-07,40105,1196,"[\""Wireless Mouse\"", \""Keyboard\""]",4711.87,{},216541,0,"""Africa""" +2024-07-28,40106,4748,"[\""Laptop\""]",3802.26,"{\""seasonal\"": \""12%\""}",242223,1,"""North America""" +2024-04-13,40107,666,"[\""Keyboard\""]",2129.43,"{\""loyalty\"": \""12%\""}",7997,0,"""Europe""" +2023-04-28,40108,764,"[\""Tablet\""]",3936.67,"{\""promo\"": \""16%\""}",196545,0,"""North America""" +2024-11-18,40109,1720,"[\""Laptop\""]",2966.58,{},52206,1,"""Europe""" +2024-12-12,40110,3878,"[\""Phone\"", \""Headphones\""]",1985.86,{},141840,1,"""Africa""" +2023-03-18,40111,6714,"[\""Phone\""]",2162.79,{},84215,1,"""Europe""" +2024-08-31,40112,7838,"[\""Headphones\""]",2165.85,{},76634,0,"""South America""" +2023-05-14,40113,8981,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",598.96,"{\"": \""13%\""}",9860,0,"""Africa""" +2023-04-13,40114,5326,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2157.31,{},261077,1,"""Asia""" +2023-12-27,40115,1065,"[\""Phone\""]",4488.46,"{\"": \""28%\""}",145725,0,"""Europe""" +2023-01-18,40116,4248,"[\""Monitor\""]",1045.2,{},36618,0,"""Asia""" +2024-03-19,40117,3233,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3798.25,"{\"": \""9%\""}",240905,0,"""North America""" +2023-12-16,40118,6433,"[\""Keyboard\"", \""Phone\""]",1234.69,"{\""seasonal\"": \""18%\""}",209701,1,"""Africa""" +2023-12-08,40119,9150,"[\""Keyboard\"", \""Tablet\""]",2931.97,"{\"": \""18%\""}",199640,0,"""South America""" +2023-11-05,40120,4686,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",409.09,"{\""seasonal\"": \""24%\""}",275881,0,"""North America""" +2024-07-13,40121,3664,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2205.99,"{\""seasonal\"": \""6%\""}",42798,0,"""Africa""" +2023-11-21,40122,186,"[\""Laptop\"", \""Charger\""]",887.68,{},238180,1,"""Europe""" +2024-12-06,40123,315,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2121.29,"{\""seasonal\"": \""6%\""}",125496,1,"""Europe""" +2024-07-20,40124,4510,"[\""Monitor\""]",227.62,{},243616,1,"""North America""" +2023-03-27,40125,6323,"[\""Charger\""]",2403.96,"{\""promo\"": \""7%\""}",17605,1,"""Asia""" +2024-02-29,40126,4701,"[\""Laptop\""]",1843.76,"{\""seasonal\"": \""14%\""}",35820,1,"""North America""" +2023-01-25,40127,1393,"[\""Wireless Mouse\"", \""Laptop\""]",538.6,"{\""promo\"": \""18%\""}",119995,1,"""Europe""" +2023-04-26,40128,4555,"[\""Keyboard\"", \""Laptop\""]",2711.5,"{\""seasonal\"": \""9%\""}",272826,0,"""Africa""" +2023-10-05,40129,6534,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2265.65,"{\"": \""13%\""}",95765,0,"""North America""" +2023-11-18,40130,2721,"[\""Headphones\"", \""Tablet\""]",4862.2,{},201783,1,"""South America""" +2024-03-19,40131,432,"[\""Keyboard\""]",3116.16,{},66773,1,"""Africa""" +2024-07-24,40132,8476,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4788.32,"{\"": \""5%\""}",298807,0,"""South America""" +2024-10-28,40133,6118,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3656.88,{},39807,1,"""South America""" +2024-10-22,40134,5152,"[\""Laptop\"", \""Keyboard\""]",1835.19,{},246610,0,"""Africa""" +2024-10-25,40135,6635,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4705.46,"{\""seasonal\"": \""6%\""}",194184,1,"""Europe""" +2023-07-23,40136,4089,"[\""Headphones\""]",3162.89,{},44426,1,"""North America""" +2024-12-18,40137,2427,"[\""Monitor\""]",4250.75,"{\""seasonal\"": \""19%\""}",186510,0,"""South America""" +2023-03-16,40138,12,"[\""Phone\""]",105.44,{},94618,0,"""Europe""" +2024-12-29,40139,9453,"[\""Charger\"", \""Keyboard\""]",2767.67,{},129201,1,"""Europe""" +2023-07-20,40140,3373,"[\""Laptop\"", \""Monitor\""]",3149.44,{},85836,1,"""Asia""" +2023-01-25,40141,7222,"[\""Wireless Mouse\"", \""Laptop\""]",2812.51,"{\""seasonal\"": \""17%\""}",117420,1,"""South America""" +2023-08-09,40142,550,"[\""Keyboard\"", \""Laptop\""]",3699.11,{},200963,1,"""Africa""" +2024-06-25,40143,5443,"[\""Charger\""]",101.65,"{\""loyalty\"": \""21%\""}",188575,1,"""Europe""" +2023-06-22,40144,3474,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1593.89,"{\""loyalty\"": \""8%\""}",199541,0,"""Europe""" +2024-07-10,40145,8724,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3139.97,{},235459,0,"""Africa""" +2023-09-20,40146,1235,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",950.5,"{\"": \""25%\""}",82248,0,"""Asia""" +2024-12-24,40147,3190,"[\""Laptop\""]",3483.9,{},50574,0,"""Africa""" +2023-05-12,40148,9511,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1756.61,{},274898,1,"""North America""" +2024-02-21,40149,1384,"[\""Monitor\""]",4347.52,{},238049,1,"""North America""" +2024-06-01,40150,6174,"[\""Wireless Mouse\""]",347.42,{},177118,0,"""South America""" +2024-08-22,40151,1339,"[\""Charger\""]",983.19,{},50912,0,"""North America""" +2023-04-25,40152,8929,"[\""Monitor\""]",4283.88,"{\""promo\"": \""30%\""}",225089,1,"""North America""" +2024-06-18,40153,98,"[\""Laptop\""]",4471.18,"{\""loyalty\"": \""13%\""}",11048,1,"""Asia""" +2023-03-22,40154,6781,"[\""Charger\""]",2627.31,"{\""loyalty\"": \""8%\""}",67413,1,"""Europe""" +2024-07-25,40155,910,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2687.97,"{\""loyalty\"": \""16%\""}",4582,1,"""North America""" +2023-07-14,40156,9882,"[\""Wireless Mouse\""]",3041.68,{},53321,1,"""Europe""" +2024-12-22,40157,6614,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1437.84,{},14978,0,"""Africa""" +2023-05-22,40158,2195,"[\""Wireless Mouse\"", \""Charger\""]",2302.81,{},77461,1,"""Asia""" +2023-02-01,40159,3590,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4270.41,{},28537,1,"""North America""" +2023-11-11,40160,4801,"[\""Wireless Mouse\"", \""Keyboard\""]",983.45,"{\""promo\"": \""29%\""}",144252,1,"""North America""" +2023-11-21,40161,8598,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",193.45,{},7900,0,"""Asia""" +2024-09-22,40162,9769,"[\""Keyboard\""]",2334.69,"{\""seasonal\"": \""16%\""}",292788,1,"""Europe""" +2024-05-21,40163,2952,"[\""Phone\"", \""Wireless Mouse\""]",4714.75,{},297677,0,"""South America""" +2024-05-29,40164,4065,"[\""Laptop\""]",3022.68,"{\""seasonal\"": \""14%\""}",248002,1,"""Asia""" +2024-09-13,40165,2180,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",911.56,"{\""loyalty\"": \""18%\""}",173900,0,"""Asia""" +2024-04-15,40166,8194,"[\""Laptop\"", \""Phone\""]",3299.87,{},20915,0,"""Europe""" +2024-11-12,40167,7980,"[\""Phone\""]",2986.07,{},280160,0,"""Asia""" +2023-08-07,40168,4995,"[\""Monitor\"", \""Phone\""]",1537.64,"{\""seasonal\"": \""5%\""}",42355,1,"""Africa""" +2023-03-20,40169,5699,"[\""Headphones\"", \""Tablet\""]",1854.74,"{\""promo\"": \""18%\""}",237012,1,"""South America""" +2023-12-11,40170,5108,"[\""Tablet\""]",4560.5,{},5191,0,"""South America""" +2024-02-09,40171,2648,"[\""Tablet\""]",753.16,{},23218,1,"""South America""" +2023-04-01,40172,1247,"[\""Phone\""]",99.8,{},199277,1,"""North America""" +2023-06-30,40173,5991,"[\""Headphones\""]",1288.8,"{\""loyalty\"": \""21%\""}",273830,0,"""Asia""" +2023-01-07,40174,118,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2428.42,{},75944,0,"""Asia""" +2023-06-13,40175,1947,"[\""Monitor\"", \""Phone\""]",436.21,{},219668,1,"""North America""" +2023-04-01,40176,7280,"[\""Tablet\"", \""Monitor\""]",3815.72,{},46989,0,"""Europe""" +2023-09-14,40177,5867,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3509.19,"{\""seasonal\"": \""5%\""}",10266,0,"""Asia""" +2024-09-19,40178,7201,"[\""Laptop\"", \""Phone\""]",914.29,{},211143,0,"""Asia""" +2024-09-08,40179,4338,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3390.29,{},285782,1,"""South America""" +2024-07-05,40180,2008,"[\""Charger\""]",3641.15,{},175797,0,"""Europe""" +2023-10-08,40181,3397,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3048.45,"{\""loyalty\"": \""22%\""}",33480,0,"""Europe""" +2024-12-31,40182,5442,"[\""Monitor\"", \""Tablet\""]",4729.94,{},250764,1,"""North America""" +2024-05-22,40183,4355,"[\""Keyboard\""]",564.21,"{\""loyalty\"": \""10%\""}",217509,0,"""Asia""" +2024-06-08,40184,7348,"[\""Charger\"", \""Keyboard\""]",2738.94,{},109852,1,"""Europe""" +2024-02-22,40185,3281,"[\""Phone\"", \""Monitor\""]",1440.41,"{\""loyalty\"": \""9%\""}",23308,1,"""North America""" +2024-01-31,40186,3925,"[\""Wireless Mouse\"", \""Laptop\""]",274.51,"{\""loyalty\"": \""5%\""}",280097,1,"""Europe""" +2024-11-01,40187,8511,"[\""Phone\""]",3627.38,{},166715,1,"""Asia""" +2024-07-06,40188,8325,"[\""Keyboard\""]",1368.68,"{\""seasonal\"": \""24%\""}",44334,0,"""North America""" +2023-01-28,40189,413,"[\""Wireless Mouse\"", \""Laptop\""]",2249.47,{},250306,0,"""Africa""" +2023-06-15,40190,4979,"[\""Keyboard\""]",3580.36,"{\""seasonal\"": \""15%\""}",118691,1,"""North America""" +2024-01-17,40191,2709,"[\""Laptop\""]",1308.26,{},69556,1,"""Asia""" +2024-02-13,40192,3747,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2282.73,"{\"": \""10%\""}",110056,1,"""North America""" +2024-04-28,40193,4563,"[\""Charger\""]",4006.67,"{\""loyalty\"": \""5%\""}",299852,0,"""South America""" +2023-06-08,40194,3516,"[\""Wireless Mouse\""]",3955.73,"{\""promo\"": \""25%\""}",247240,1,"""Europe""" +2023-05-29,40195,9390,"[\""Tablet\""]",3950.64,{},111641,1,"""Asia""" +2023-12-06,40196,8318,"[\""Laptop\""]",4381.3,{},20600,0,"""Europe""" +2023-11-20,40197,9970,"[\""Tablet\"", \""Charger\""]",4727.16,"{\""seasonal\"": \""11%\""}",214860,0,"""North America""" +2023-04-13,40198,1641,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2891.52,{},276432,0,"""South America""" +2024-08-29,40199,3989,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4397.08,"{\""loyalty\"": \""16%\""}",175925,0,"""North America""" +2023-03-19,40200,1014,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2849.03,{},228631,1,"""South America""" +2023-12-06,40201,1722,"[\""Headphones\""]",2711.21,{},188543,0,"""Africa""" +2023-12-05,40202,2398,"[\""Phone\""]",1764.53,"{\"": \""21%\""}",51816,1,"""Europe""" +2023-01-07,40203,9035,"[\""Tablet\"", \""Laptop\""]",4901.27,"{\""promo\"": \""8%\""}",280385,0,"""Europe""" +2023-05-24,40204,1226,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1038.14,"{\""loyalty\"": \""16%\""}",200992,1,"""Asia""" +2024-04-26,40205,2244,"[\""Charger\""]",2451.3,{},137594,0,"""Europe""" +2023-09-29,40206,5979,"[\""Headphones\"", \""Monitor\""]",1689.03,{},173185,1,"""Asia""" +2023-02-17,40207,261,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2423.23,{},136837,0,"""Europe""" +2024-11-19,40208,2169,"[\""Charger\""]",1498.13,"{\""loyalty\"": \""5%\""}",108822,0,"""Europe""" +2024-08-10,40209,7602,"[\""Tablet\""]",4263.09,"{\"": \""26%\""}",249562,0,"""Europe""" +2024-12-08,40210,4565,"[\""Monitor\""]",4756.86,"{\"": \""22%\""}",89738,1,"""South America""" +2024-01-28,40211,9965,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1598.12,"{\""promo\"": \""19%\""}",79462,1,"""South America""" +2024-04-01,40212,5407,"[\""Keyboard\"", \""Headphones\""]",419.0,{},18616,1,"""South America""" +2023-12-11,40213,7082,"[\""Tablet\"", \""Charger\""]",4571.94,"{\""seasonal\"": \""27%\""}",58505,1,"""Europe""" +2023-08-27,40214,5685,"[\""Laptop\"", \""Keyboard\""]",544.95,{},262950,1,"""Africa""" +2023-05-06,40215,567,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4017.78,"{\""seasonal\"": \""7%\""}",275241,1,"""Africa""" +2024-04-19,40216,2749,"[\""Laptop\""]",4870.32,{},10719,1,"""Africa""" +2023-04-15,40217,9290,"[\""Wireless Mouse\""]",3226.73,"{\""promo\"": \""24%\""}",278646,1,"""Africa""" +2024-12-31,40218,3327,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",130.34,{},294241,0,"""North America""" +2023-12-31,40219,3777,"[\""Monitor\"", \""Keyboard\""]",368.7,"{\"": \""29%\""}",222263,0,"""South America""" +2024-12-17,40220,3782,"[\""Tablet\"", \""Charger\""]",4259.35,"{\""promo\"": \""29%\""}",299777,1,"""North America""" +2024-09-13,40221,4295,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",139.44,{},108408,0,"""Africa""" +2023-10-31,40222,4558,"[\""Charger\""]",2084.28,"{\""promo\"": \""28%\""}",233973,1,"""South America""" +2023-11-30,40223,6190,"[\""Laptop\"", \""Keyboard\""]",4450.93,"{\"": \""21%\""}",135333,1,"""Africa""" +2024-11-12,40224,6616,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3686.77,{},265596,0,"""Asia""" +2023-03-31,40225,5493,"[\""Charger\""]",1554.91,{},68993,0,"""North America""" +2024-04-23,40226,7658,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1958.16,{},190609,1,"""North America""" +2023-05-27,40227,1536,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1886.82,"{\"": \""30%\""}",15171,0,"""North America""" +2023-02-17,40228,5952,"[\""Tablet\""]",1537.35,"{\""seasonal\"": \""10%\""}",210039,1,"""Europe""" +2023-09-21,40229,5117,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",873.02,{},299999,1,"""Europe""" +2023-05-17,40230,4060,"[\""Monitor\""]",4129.66,"{\""seasonal\"": \""14%\""}",265122,1,"""South America""" +2024-09-30,40231,2493,"[\""Wireless Mouse\""]",190.03,{},176707,0,"""South America""" +2024-08-10,40232,3134,"[\""Wireless Mouse\""]",2682.87,{},187566,1,"""North America""" +2024-05-14,40233,91,"[\""Keyboard\""]",1799.11,{},272638,1,"""South America""" +2024-02-02,40234,9996,"[\""Wireless Mouse\""]",1937.56,"{\""promo\"": \""22%\""}",147298,1,"""South America""" +2024-04-24,40235,5591,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4693.53,"{\"": \""10%\""}",241698,0,"""South America""" +2024-10-31,40236,3447,"[\""Keyboard\""]",331.93,{},77308,1,"""Europe""" +2024-11-10,40237,3569,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1875.34,{},174167,1,"""South America""" +2023-08-30,40238,4857,"[\""Tablet\""]",1715.46,"{\""promo\"": \""28%\""}",182342,1,"""North America""" +2023-04-28,40239,9178,"[\""Charger\"", \""Headphones\""]",4454.89,"{\""loyalty\"": \""13%\""}",254152,1,"""Europe""" +2023-06-04,40240,2229,"[\""Monitor\"", \""Wireless Mouse\""]",2919.21,{},196229,0,"""South America""" +2024-04-23,40241,5903,"[\""Headphones\"", \""Wireless Mouse\""]",4749.29,"{\""seasonal\"": \""15%\""}",46691,0,"""South America""" +2023-10-25,40242,2995,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2011.3,"{\""loyalty\"": \""23%\""}",91924,0,"""Africa""" +2023-07-19,40243,1186,"[\""Wireless Mouse\""]",1817.1,{},114042,1,"""Europe""" +2023-05-26,40244,598,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4164.91,{},138709,0,"""Asia""" +2023-02-01,40245,2710,"[\""Monitor\"", \""Wireless Mouse\""]",3034.15,"{\""loyalty\"": \""12%\""}",26702,1,"""South America""" +2024-04-03,40246,1173,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2014.17,{},193881,0,"""Europe""" +2024-12-25,40247,3668,"[\""Phone\""]",3168.06,{},246853,0,"""South America""" +2023-04-19,40248,7590,"[\""Tablet\"", \""Charger\""]",4165.84,"{\"": \""11%\""}",197267,0,"""South America""" +2023-01-21,40249,8004,"[\""Phone\"", \""Charger\""]",2190.43,"{\""promo\"": \""25%\""}",143051,0,"""Africa""" +2023-06-13,40250,9555,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3652.92,{},264876,0,"""Asia""" +2023-01-07,40251,4449,"[\""Monitor\""]",970.74,"{\"": \""16%\""}",199273,1,"""Africa""" +2024-01-20,40252,8320,"[\""Wireless Mouse\"", \""Keyboard\""]",3943.04,"{\""seasonal\"": \""30%\""}",172972,0,"""Asia""" +2024-05-01,40253,6496,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",754.28,{},34331,1,"""Europe""" +2023-03-18,40254,3408,"[\""Charger\""]",748.44,{},264208,0,"""Asia""" +2024-08-04,40255,5131,"[\""Charger\"", \""Wireless Mouse\""]",3160.33,{},122700,1,"""Europe""" +2024-09-01,40256,5428,"[\""Wireless Mouse\"", \""Monitor\""]",2689.38,"{\""loyalty\"": \""30%\""}",166633,0,"""Europe""" +2023-11-14,40257,4720,"[\""Wireless Mouse\""]",3395.49,"{\""seasonal\"": \""6%\""}",179217,1,"""North America""" +2024-04-03,40258,4739,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",902.09,"{\""seasonal\"": \""25%\""}",133354,0,"""North America""" +2024-02-09,40259,8457,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4725.86,{},258913,1,"""South America""" +2024-10-06,40260,8603,"[\""Phone\""]",3920.63,"{\""seasonal\"": \""24%\""}",244521,0,"""Europe""" +2024-10-23,40261,5154,"[\""Wireless Mouse\""]",1572.58,"{\""promo\"": \""23%\""}",242670,1,"""Africa""" +2023-06-12,40262,3263,"[\""Monitor\"", \""Keyboard\""]",3081.34,{},130576,0,"""North America""" +2024-12-27,40263,4027,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4919.6,"{\""seasonal\"": \""29%\""}",122036,0,"""Europe""" +2023-10-14,40264,4729,"[\""Wireless Mouse\""]",1254.83,"{\""loyalty\"": \""27%\""}",117163,1,"""Africa""" +2023-12-30,40265,5528,"[\""Phone\"", \""Tablet\""]",954.47,{},296276,1,"""South America""" +2023-12-13,40266,8453,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2891.76,"{\""loyalty\"": \""14%\""}",64360,0,"""Africa""" +2023-03-01,40267,4277,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3911.78,"{\""loyalty\"": \""17%\""}",169638,1,"""Europe""" +2024-10-29,40268,1900,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2194.69,{},23410,1,"""Europe""" +2024-03-16,40269,113,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3351.27,"{\""seasonal\"": \""22%\""}",249504,0,"""Asia""" +2024-07-29,40270,6856,"[\""Wireless Mouse\""]",3218.35,{},248909,0,"""Europe""" +2023-09-10,40271,661,"[\""Charger\""]",3995.3,{},123688,0,"""Europe""" +2023-03-17,40272,4266,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2975.52,{},261336,0,"""South America""" +2024-08-10,40273,3699,"[\""Headphones\"", \""Phone\""]",3577.29,"{\""loyalty\"": \""17%\""}",75480,0,"""Europe""" +2024-04-26,40274,3765,"[\""Headphones\""]",3860.65,"{\"": \""5%\""}",74636,0,"""South America""" +2024-06-08,40275,5171,"[\""Charger\""]",3854.65,{},129250,1,"""South America""" +2024-11-06,40276,1581,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3552.15,"{\""seasonal\"": \""21%\""}",129938,1,"""Europe""" +2023-12-08,40277,6203,"[\""Tablet\""]",2745.32,"{\""promo\"": \""13%\""}",186811,0,"""North America""" +2023-01-05,40278,9056,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1175.94,{},178974,1,"""Asia""" +2023-01-07,40279,1270,"[\""Tablet\""]",1991.16,"{\""seasonal\"": \""30%\""}",215722,1,"""North America""" +2023-03-26,40280,4206,"[\""Monitor\"", \""Charger\""]",1613.48,"{\""promo\"": \""29%\""}",140947,0,"""North America""" +2024-02-22,40281,3954,"[\""Monitor\""]",3666.45,"{\""seasonal\"": \""22%\""}",119475,0,"""North America""" +2023-05-22,40282,9824,"[\""Phone\"", \""Charger\""]",1706.51,"{\"": \""10%\""}",101340,1,"""South America""" +2024-06-14,40283,2698,"[\""Headphones\"", \""Keyboard\""]",2384.82,{},7270,0,"""North America""" +2024-06-27,40284,8042,"[\""Wireless Mouse\"", \""Headphones\""]",2570.81,{},139597,1,"""South America""" +2023-10-17,40285,7089,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2109.58,"{\""loyalty\"": \""29%\""}",284057,0,"""Europe""" +2024-09-24,40286,2250,"[\""Wireless Mouse\""]",4899.27,{},218284,1,"""Asia""" +2023-11-12,40287,8709,"[\""Phone\"", \""Wireless Mouse\""]",3252.98,"{\""loyalty\"": \""25%\""}",272324,0,"""South America""" +2024-03-07,40288,534,"[\""Monitor\""]",414.45,{},92947,1,"""Asia""" +2024-03-14,40289,1203,"[\""Laptop\""]",241.32,{},169213,1,"""South America""" +2023-09-07,40290,8749,"[\""Tablet\"", \""Phone\""]",1585.45,{},50616,1,"""North America""" +2024-11-12,40291,7476,"[\""Keyboard\"", \""Monitor\""]",303.0,"{\""seasonal\"": \""27%\""}",280766,1,"""North America""" +2024-02-24,40292,7891,"[\""Wireless Mouse\"", \""Tablet\""]",663.98,"{\""loyalty\"": \""7%\""}",63019,0,"""North America""" +2024-10-15,40293,8834,"[\""Monitor\"", \""Wireless Mouse\""]",267.9,"{\""promo\"": \""25%\""}",208938,0,"""South America""" +2024-07-25,40294,5489,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3121.3,{},277305,1,"""South America""" +2023-08-20,40295,7270,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4875.76,"{\""seasonal\"": \""24%\""}",56347,0,"""Asia""" +2023-11-19,40296,7950,"[\""Charger\""]",1562.61,{},244187,1,"""Europe""" +2023-05-21,40297,3806,"[\""Wireless Mouse\"", \""Charger\""]",1595.53,"{\"": \""12%\""}",280418,0,"""Asia""" +2023-05-12,40298,5359,"[\""Wireless Mouse\""]",3498.76,{},285888,1,"""North America""" +2023-06-19,40299,8832,"[\""Wireless Mouse\"", \""Monitor\""]",1362.9,"{\""loyalty\"": \""13%\""}",264725,0,"""South America""" +2024-02-06,40300,9228,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2408.35,{},90873,1,"""Africa""" +2024-08-13,40301,4833,"[\""Wireless Mouse\"", \""Laptop\""]",3060.39,"{\""promo\"": \""20%\""}",218997,0,"""North America""" +2023-04-19,40302,287,"[\""Laptop\""]",386.99,{},76585,1,"""South America""" +2024-04-09,40303,7061,"[\""Headphones\"", \""Phone\""]",68.29,"{\""promo\"": \""25%\""}",120699,1,"""Africa""" +2024-01-04,40304,928,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",382.63,"{\"": \""23%\""}",165047,1,"""Africa""" +2023-02-02,40305,6044,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3592.11,"{\""loyalty\"": \""17%\""}",43803,0,"""North America""" +2024-01-10,40306,2074,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1188.09,"{\""promo\"": \""5%\""}",96270,1,"""North America""" +2024-11-22,40307,2946,"[\""Laptop\""]",2382.34,{},94201,0,"""North America""" +2024-08-14,40308,6600,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3897.91,{},238237,0,"""Asia""" +2024-03-20,40309,165,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3583.17,"{\""promo\"": \""6%\""}",278672,0,"""Europe""" +2023-03-25,40310,5607,"[\""Tablet\""]",942.53,"{\""loyalty\"": \""10%\""}",57725,1,"""Europe""" +2023-08-03,40311,1248,"[\""Laptop\""]",2259.89,{},155358,1,"""Africa""" +2023-07-05,40312,8777,"[\""Monitor\""]",1945.5,"{\""loyalty\"": \""5%\""}",228573,0,"""North America""" +2023-09-09,40313,6339,"[\""Tablet\""]",3890.4,{},130476,1,"""North America""" +2023-02-12,40314,2611,"[\""Charger\""]",3355.24,"{\""promo\"": \""30%\""}",214074,1,"""South America""" +2023-02-02,40315,1899,"[\""Laptop\""]",4623.27,{},253965,0,"""South America""" +2023-05-13,40316,475,"[\""Headphones\""]",1426.7,"{\"": \""24%\""}",290890,1,"""Europe""" +2023-05-24,40317,911,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2911.54,"{\""promo\"": \""15%\""}",259077,1,"""Europe""" +2023-05-03,40318,6289,"[\""Tablet\""]",2294.27,"{\""seasonal\"": \""13%\""}",103525,1,"""Asia""" +2023-07-01,40319,2118,"[\""Charger\""]",4494.07,{},266425,1,"""Africa""" +2023-10-30,40320,9960,"[\""Laptop\""]",4588.15,"{\""promo\"": \""25%\""}",241577,0,"""Europe""" +2023-07-31,40321,5223,"[\""Headphones\""]",1618.83,"{\""promo\"": \""14%\""}",129318,0,"""Asia""" +2023-10-12,40322,4844,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4458.98,"{\""seasonal\"": \""18%\""}",54624,0,"""Asia""" +2023-04-16,40323,3760,"[\""Laptop\""]",2996.97,{},201530,0,"""South America""" +2023-04-21,40324,3092,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1808.02,"{\""seasonal\"": \""30%\""}",38433,1,"""Africa""" +2024-07-09,40325,9304,"[\""Wireless Mouse\"", \""Phone\""]",3088.83,"{\""loyalty\"": \""13%\""}",259254,1,"""South America""" +2024-08-29,40326,3661,"[\""Monitor\""]",218.61,{},272342,0,"""Asia""" +2023-08-29,40327,8342,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3272.4,{},162843,1,"""Africa""" +2023-11-25,40328,4475,"[\""Keyboard\""]",4756.65,{},269787,1,"""Europe""" +2023-11-24,40329,3391,"[\""Headphones\"", \""Wireless Mouse\""]",917.43,"{\""seasonal\"": \""20%\""}",20249,0,"""North America""" +2024-11-09,40330,1505,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2757.25,{},212504,1,"""Europe""" +2023-08-06,40331,8608,"[\""Phone\"", \""Headphones\""]",4249.51,"{\""seasonal\"": \""10%\""}",270960,1,"""South America""" +2023-09-11,40332,7383,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",444.68,"{\""seasonal\"": \""10%\""}",159391,1,"""Africa""" +2023-02-28,40333,3733,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4612.01,{},118940,1,"""Africa""" +2024-07-12,40334,4867,"[\""Wireless Mouse\""]",4648.65,{},134739,1,"""North America""" +2023-07-06,40335,8717,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1556.73,{},198455,0,"""Europe""" +2024-07-17,40336,4729,"[\""Charger\"", \""Keyboard\""]",4949.42,{},17815,0,"""Asia""" +2024-03-16,40337,9854,"[\""Phone\"", \""Keyboard\""]",326.46,"{\""promo\"": \""16%\""}",72147,1,"""South America""" +2023-10-27,40338,2749,"[\""Monitor\""]",3068.39,{},167588,0,"""North America""" +2023-02-07,40339,2595,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",233.41,"{\""seasonal\"": \""28%\""}",265074,0,"""North America""" +2024-05-18,40340,7969,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2488.64,"{\""loyalty\"": \""10%\""}",139722,0,"""Africa""" +2024-10-05,40341,8380,"[\""Monitor\"", \""Tablet\""]",2690.51,{},290267,1,"""South America""" +2023-05-04,40342,8020,"[\""Tablet\""]",4051.59,{},28277,1,"""Africa""" +2023-07-19,40343,8205,"[\""Monitor\""]",827.43,{},93816,0,"""North America""" +2023-12-02,40344,1590,"[\""Tablet\"", \""Laptop\""]",1010.98,"{\""seasonal\"": \""30%\""}",177083,0,"""Asia""" +2023-07-12,40345,51,"[\""Phone\""]",4818.47,"{\"": \""8%\""}",118925,0,"""South America""" +2024-12-01,40346,5312,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3249.49,{},98411,1,"""Europe""" +2023-09-04,40347,9015,"[\""Tablet\""]",191.92,{},192111,0,"""North America""" +2024-07-24,40348,696,"[\""Phone\""]",241.08,{},266081,0,"""North America""" +2023-03-18,40349,21,"[\""Wireless Mouse\""]",1230.82,{},281793,1,"""North America""" +2023-02-19,40350,1428,"[\""Wireless Mouse\"", \""Headphones\""]",1225.85,{},7553,1,"""Africa""" +2023-12-29,40351,7735,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3020.97,{},20570,0,"""South America""" +2023-02-07,40352,9788,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3481.73,"{\""promo\"": \""6%\""}",40732,0,"""Africa""" +2023-09-18,40353,7333,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4779.58,"{\""seasonal\"": \""7%\""}",31570,0,"""Asia""" +2024-07-19,40354,318,"[\""Phone\"", \""Keyboard\""]",3293.47,{},36896,1,"""Africa""" +2024-07-18,40355,3234,"[\""Phone\"", \""Keyboard\""]",2602.19,"{\""seasonal\"": \""11%\""}",249244,1,"""Africa""" +2023-10-10,40356,6514,"[\""Keyboard\"", \""Wireless Mouse\""]",3328.35,{},214151,1,"""South America""" +2023-06-30,40357,2424,"[\""Monitor\"", \""Charger\""]",1671.41,"{\""promo\"": \""30%\""}",221418,1,"""Europe""" +2024-02-12,40358,3201,"[\""Monitor\"", \""Laptop\""]",4742.07,"{\"": \""15%\""}",21900,0,"""Africa""" +2023-05-17,40359,4553,"[\""Charger\"", \""Keyboard\""]",3612.56,{},207192,0,"""Europe""" +2023-06-11,40360,696,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2072.96,{},151960,1,"""Europe""" +2023-07-09,40361,1244,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1715.25,"{\""promo\"": \""11%\""}",96018,0,"""North America""" +2024-02-03,40362,2964,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3151.39,{},189802,0,"""Europe""" +2024-08-26,40363,3328,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1773.15,"{\""loyalty\"": \""17%\""}",285527,1,"""Europe""" +2024-04-29,40364,3164,"[\""Headphones\"", \""Wireless Mouse\""]",1189.38,{},6201,1,"""Africa""" +2023-01-01,40365,3207,"[\""Keyboard\"", \""Phone\""]",2225.11,"{\"": \""23%\""}",37657,0,"""Europe""" +2023-07-23,40366,9775,"[\""Tablet\""]",3504.38,{},126710,1,"""Africa""" +2024-04-12,40367,5849,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",108.86,"{\""loyalty\"": \""22%\""}",214688,0,"""Asia""" +2024-04-24,40368,5391,"[\""Monitor\"", \""Charger\""]",2153.98,"{\""seasonal\"": \""20%\""}",84829,1,"""South America""" +2023-09-09,40369,9811,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4764.65,"{\""promo\"": \""14%\""}",117908,0,"""North America""" +2024-12-29,40370,2816,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2369.68,{},162838,1,"""South America""" +2024-01-23,40371,3277,"[\""Tablet\""]",2500.56,"{\""promo\"": \""28%\""}",143303,0,"""North America""" +2023-05-17,40372,9300,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4820.35,"{\"": \""18%\""}",59767,0,"""Africa""" +2023-06-20,40373,3552,"[\""Tablet\"", \""Headphones\""]",1580.01,{},276169,0,"""South America""" +2023-01-28,40374,787,"[\""Keyboard\"", \""Charger\""]",1081.15,"{\""promo\"": \""20%\""}",14154,1,"""Europe""" +2023-01-24,40375,6445,"[\""Wireless Mouse\""]",4162.96,"{\"": \""14%\""}",109756,0,"""Asia""" +2023-06-19,40376,3703,"[\""Headphones\"", \""Laptop\""]",3121.79,"{\"": \""16%\""}",137331,1,"""Europe""" +2023-05-04,40377,9587,"[\""Wireless Mouse\"", \""Charger\""]",1473.56,{},271084,1,"""Asia""" +2023-10-03,40378,7606,"[\""Charger\"", \""Laptop\""]",1308.6,{},52521,0,"""Asia""" +2024-11-08,40379,8011,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4845.01,"{\""loyalty\"": \""26%\""}",52075,0,"""Asia""" +2023-03-16,40380,7383,"[\""Tablet\""]",1391.16,{},52704,0,"""South America""" +2023-03-03,40381,7996,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1315.35,{},37403,0,"""Africa""" +2024-10-04,40382,6403,"[\""Monitor\""]",4307.87,"{\""loyalty\"": \""23%\""}",138807,1,"""Europe""" +2023-09-23,40383,6359,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3853.95,{},157394,0,"""Europe""" +2023-01-24,40384,7816,"[\""Phone\""]",3472.01,{},108676,1,"""Europe""" +2024-09-13,40385,7026,"[\""Charger\"", \""Monitor\""]",4576.76,"{\""loyalty\"": \""13%\""}",123518,1,"""South America""" +2023-01-15,40386,7781,"[\""Tablet\""]",1652.59,"{\""promo\"": \""14%\""}",275101,1,"""Europe""" +2024-11-12,40387,205,"[\""Phone\""]",4010.03,{},247650,1,"""Europe""" +2023-06-23,40388,6522,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2080.12,"{\""loyalty\"": \""27%\""}",267775,0,"""North America""" +2023-10-08,40389,2724,"[\""Charger\"", \""Keyboard\""]",987.94,"{\""loyalty\"": \""11%\""}",285495,1,"""Africa""" +2024-12-15,40390,2184,"[\""Wireless Mouse\"", \""Charger\""]",1764.92,"{\""loyalty\"": \""27%\""}",44755,0,"""Africa""" +2024-04-10,40391,8483,"[\""Charger\"", \""Laptop\""]",2784.26,{},39192,0,"""Europe""" +2024-10-19,40392,3345,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1207.88,"{\"": \""5%\""}",270428,0,"""Europe""" +2023-01-29,40393,2265,"[\""Charger\""]",614.32,{},258075,1,"""North America""" +2023-05-16,40394,3530,"[\""Charger\""]",3138.91,{},92622,0,"""North America""" +2024-12-31,40395,2154,"[\""Headphones\""]",967.9,{},53583,1,"""Africa""" +2024-02-05,40396,711,"[\""Headphones\"", \""Phone\""]",4393.72,"{\""loyalty\"": \""24%\""}",121945,0,"""Africa""" +2024-01-12,40397,3090,"[\""Wireless Mouse\""]",3382.88,"{\"": \""6%\""}",218578,0,"""Africa""" +2024-01-20,40398,9767,"[\""Wireless Mouse\"", \""Laptop\""]",1204.74,{},37919,0,"""South America""" +2024-11-22,40399,1483,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4244.4,{},48108,1,"""Europe""" +2023-05-23,40400,4297,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2153.01,{},206826,1,"""North America""" +2024-12-18,40401,3537,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3844.34,"{\"": \""28%\""}",19125,0,"""Europe""" +2023-08-10,40402,3344,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2402.83,"{\""loyalty\"": \""6%\""}",65109,1,"""Europe""" +2024-10-25,40403,8700,"[\""Laptop\""]",1107.6,{},250538,0,"""South America""" +2023-04-08,40404,9964,"[\""Phone\"", \""Laptop\"", \""Charger\""]",505.99,"{\""seasonal\"": \""27%\""}",42616,0,"""Europe""" +2024-04-30,40405,3784,"[\""Tablet\"", \""Charger\""]",2722.89,{},112966,1,"""Africa""" +2024-08-30,40406,642,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2245.0,"{\"": \""5%\""}",158790,0,"""Asia""" +2023-01-16,40407,2456,"[\""Tablet\""]",4664.31,{},151998,0,"""North America""" +2024-02-12,40408,5433,"[\""Wireless Mouse\""]",1492.02,"{\""seasonal\"": \""22%\""}",98205,1,"""South America""" +2023-02-05,40409,6406,"[\""Tablet\"", \""Laptop\""]",1224.2,{},53419,1,"""Europe""" +2024-11-03,40410,5061,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",183.48,{},287691,0,"""Asia""" +2024-01-03,40411,3290,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1549.75,{},108597,1,"""Europe""" +2023-09-10,40412,4239,"[\""Wireless Mouse\"", \""Keyboard\""]",2166.41,"{\""loyalty\"": \""28%\""}",185689,1,"""North America""" +2024-01-04,40413,4443,"[\""Charger\""]",1545.28,{},30447,0,"""Asia""" +2024-03-27,40414,8993,"[\""Keyboard\"", \""Phone\""]",2834.62,{},176372,0,"""North America""" +2023-12-08,40415,7110,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4737.75,"{\""seasonal\"": \""9%\""}",223769,1,"""Africa""" +2023-01-22,40416,538,"[\""Wireless Mouse\"", \""Keyboard\""]",3464.03,"{\""seasonal\"": \""8%\""}",159244,1,"""Africa""" +2024-06-06,40417,8558,"[\""Tablet\"", \""Keyboard\""]",3832.71,"{\"": \""6%\""}",51982,1,"""South America""" +2024-01-16,40418,624,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1378.02,{},17796,0,"""Europe""" +2023-07-07,40419,9655,"[\""Keyboard\"", \""Headphones\""]",1966.42,{},62551,1,"""Europe""" +2023-06-27,40420,1210,"[\""Charger\"", \""Keyboard\""]",4262.22,"{\""loyalty\"": \""9%\""}",13842,1,"""South America""" +2024-02-14,40421,2636,"[\""Charger\""]",602.86,{},137661,0,"""South America""" +2024-01-15,40422,4393,"[\""Charger\""]",2192.61,"{\""promo\"": \""5%\""}",192175,1,"""Asia""" +2024-04-29,40423,4514,"[\""Headphones\"", \""Phone\""]",443.74,"{\""loyalty\"": \""7%\""}",152120,0,"""North America""" +2024-10-04,40424,1023,"[\""Monitor\""]",782.5,"{\""seasonal\"": \""20%\""}",179142,0,"""Europe""" +2024-05-05,40425,8063,"[\""Monitor\""]",2583.2,{},193600,1,"""South America""" +2023-07-22,40426,5094,"[\""Charger\""]",4654.68,{},234947,0,"""Asia""" +2023-04-20,40427,5383,"[\""Phone\"", \""Monitor\""]",2922.24,"{\""loyalty\"": \""8%\""}",25711,0,"""Africa""" +2023-04-29,40428,4738,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4073.12,{},69565,1,"""South America""" +2024-09-18,40429,2543,"[\""Headphones\"", \""Phone\""]",2794.43,"{\""loyalty\"": \""5%\""}",154259,1,"""North America""" +2023-03-30,40430,234,"[\""Tablet\"", \""Laptop\""]",141.04,"{\"": \""6%\""}",209331,1,"""Asia""" +2023-01-20,40431,1530,"[\""Monitor\""]",3950.2,{},133955,0,"""North America""" +2023-08-13,40432,3727,"[\""Monitor\"", \""Headphones\""]",1604.65,{},62231,1,"""Europe""" +2024-10-17,40433,7370,"[\""Phone\""]",3583.04,"{\""promo\"": \""23%\""}",223978,1,"""Europe""" +2023-03-06,40434,4168,"[\""Monitor\"", \""Tablet\""]",3741.96,"{\""promo\"": \""13%\""}",236960,0,"""Asia""" +2024-05-19,40435,6087,"[\""Headphones\""]",817.51,{},66424,1,"""Asia""" +2024-12-26,40436,3156,"[\""Laptop\"", \""Headphones\""]",4764.09,"{\"": \""16%\""}",138492,0,"""North America""" +2023-05-30,40437,545,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3727.77,{},247758,1,"""South America""" +2024-07-18,40438,6499,"[\""Laptop\""]",3278.6,{},187533,1,"""North America""" +2023-06-30,40439,6648,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3146.58,"{\""seasonal\"": \""25%\""}",233636,0,"""Asia""" +2023-02-16,40440,4886,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4002.06,{},276473,1,"""Africa""" +2024-10-01,40441,3801,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4719.28,{},271484,1,"""North America""" +2024-02-23,40442,3078,"[\""Monitor\"", \""Headphones\""]",4901.88,{},7951,1,"""South America""" +2023-09-07,40443,7531,"[\""Monitor\"", \""Phone\""]",3685.3,{},295526,0,"""South America""" +2024-12-11,40444,4998,"[\""Headphones\"", \""Phone\""]",2215.98,{},20734,1,"""Europe""" +2023-10-29,40445,7459,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4538.07,{},96810,0,"""South America""" +2024-07-29,40446,3925,"[\""Tablet\""]",1424.07,{},148641,1,"""South America""" +2023-02-15,40447,1902,"[\""Headphones\"", \""Charger\""]",3770.08,{},31798,0,"""North America""" +2024-01-16,40448,4847,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2496.89,"{\"": \""15%\""}",229182,0,"""North America""" +2024-02-18,40449,2494,"[\""Keyboard\"", \""Laptop\""]",441.28,"{\""loyalty\"": \""30%\""}",176939,0,"""Asia""" +2024-03-03,40450,873,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2701.26,{},299371,0,"""Africa""" +2024-05-29,40451,5453,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3618.91,{},213546,1,"""South America""" +2024-10-01,40452,6637,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4447.86,{},200999,1,"""South America""" +2023-07-09,40453,1105,"[\""Charger\""]",2573.36,{},73675,1,"""South America""" +2023-12-19,40454,2749,"[\""Keyboard\""]",4164.17,{},163075,1,"""North America""" +2023-12-23,40455,4070,"[\""Charger\""]",4087.22,{},260658,0,"""Europe""" +2023-06-20,40456,3810,"[\""Tablet\"", \""Charger\""]",1843.5,{},138489,0,"""South America""" +2024-01-05,40457,6386,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2934.46,"{\""seasonal\"": \""12%\""}",83437,1,"""North America""" +2023-06-26,40458,860,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1446.02,{},62303,0,"""Europe""" +2023-09-19,40459,8399,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3765.9,"{\""loyalty\"": \""28%\""}",131336,1,"""Africa""" +2024-01-08,40460,5702,"[\""Laptop\"", \""Phone\""]",2252.2,{},281156,0,"""Asia""" +2024-03-14,40461,991,"[\""Keyboard\"", \""Charger\""]",4887.33,{},150592,1,"""Asia""" +2023-04-29,40462,1063,"[\""Charger\""]",3962.88,"{\""seasonal\"": \""9%\""}",250104,1,"""Africa""" +2024-10-11,40463,1574,"[\""Phone\""]",1647.47,{},159369,1,"""Asia""" +2024-09-23,40464,8402,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2947.28,{},19035,1,"""Asia""" +2024-11-10,40465,4615,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4851.01,{},273667,0,"""North America""" +2024-01-20,40466,2369,"[\""Wireless Mouse\""]",1745.07,"{\""promo\"": \""19%\""}",88351,1,"""South America""" +2023-12-26,40467,8888,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2916.54,"{\""promo\"": \""10%\""}",21175,0,"""Africa""" +2024-05-16,40468,1716,"[\""Monitor\"", \""Tablet\""]",3906.77,"{\""loyalty\"": \""22%\""}",235523,1,"""South America""" +2023-03-04,40469,5039,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4448.96,{},222263,1,"""Africa""" +2024-06-26,40470,315,"[\""Tablet\""]",1425.0,{},192452,1,"""North America""" +2024-02-29,40471,4068,"[\""Wireless Mouse\"", \""Laptop\""]",804.75,{},163507,1,"""Asia""" +2024-10-09,40472,6177,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3563.32,{},45110,1,"""Asia""" +2023-02-05,40473,9417,"[\""Monitor\""]",1839.63,{},242793,0,"""North America""" +2023-01-24,40474,253,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2537.69,"{\"": \""17%\""}",200622,1,"""Europe""" +2023-08-23,40475,1944,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",858.12,{},256357,1,"""Asia""" +2024-02-13,40476,9025,"[\""Wireless Mouse\""]",856.04,{},133017,0,"""Europe""" +2024-11-22,40477,2618,"[\""Headphones\""]",3461.97,{},217224,0,"""Asia""" +2023-12-05,40478,7916,"[\""Wireless Mouse\""]",359.58,"{\""promo\"": \""20%\""}",140341,1,"""Europe""" +2023-07-06,40479,4012,"[\""Monitor\""]",4923.12,"{\""loyalty\"": \""28%\""}",295691,0,"""Africa""" +2023-07-21,40480,6582,"[\""Tablet\""]",2360.84,"{\""loyalty\"": \""25%\""}",141103,1,"""North America""" +2024-11-14,40481,6449,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2898.07,"{\""promo\"": \""25%\""}",248949,1,"""South America""" +2024-02-09,40482,4043,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1559.24,"{\""promo\"": \""8%\""}",98999,0,"""Asia""" +2024-12-19,40483,8579,"[\""Wireless Mouse\""]",881.96,"{\""seasonal\"": \""21%\""}",285164,1,"""Africa""" +2024-06-19,40484,5757,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2604.35,{},248677,0,"""South America""" +2024-03-18,40485,4595,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2710.89,"{\""promo\"": \""13%\""}",51352,1,"""North America""" +2023-06-30,40486,8750,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4829.1,"{\""promo\"": \""14%\""}",275453,0,"""Asia""" +2024-05-12,40487,7484,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4983.54,"{\""loyalty\"": \""13%\""}",51500,1,"""Africa""" +2023-09-10,40488,6602,"[\""Headphones\""]",4409.64,"{\"": \""17%\""}",262553,1,"""Europe""" +2023-09-13,40489,5637,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",55.93,"{\"": \""25%\""}",252523,1,"""Africa""" +2023-10-10,40490,5067,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4596.1,{},78778,0,"""Europe""" +2023-01-30,40491,6092,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3899.41,"{\""seasonal\"": \""5%\""}",293805,1,"""Africa""" +2024-06-23,40492,6140,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1126.5,{},286031,1,"""Africa""" +2023-01-24,40493,8542,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3772.08,"{\""promo\"": \""10%\""}",236742,0,"""Africa""" +2024-01-19,40494,5437,"[\""Headphones\"", \""Wireless Mouse\""]",3400.38,{},268568,1,"""South America""" +2023-07-01,40495,8257,"[\""Tablet\""]",1269.12,{},163812,1,"""North America""" +2024-06-08,40496,2575,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3040.39,"{\""seasonal\"": \""11%\""}",198224,1,"""Africa""" +2023-11-27,40497,7549,"[\""Wireless Mouse\"", \""Charger\""]",2436.53,"{\""loyalty\"": \""6%\""}",258765,1,"""South America""" +2023-10-24,40498,2855,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2352.82,"{\"": \""15%\""}",48802,1,"""Africa""" +2023-01-02,40499,606,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2447.19,{},216359,0,"""North America""" +2023-03-11,40500,6286,"[\""Wireless Mouse\""]",1129.85,"{\""seasonal\"": \""21%\""}",41014,1,"""Asia""" +2023-12-06,40501,6028,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4096.28,"{\""loyalty\"": \""26%\""}",233311,0,"""Asia""" +2024-05-05,40502,8524,"[\""Monitor\""]",1720.46,"{\"": \""25%\""}",188087,1,"""Europe""" +2023-03-15,40503,714,"[\""Monitor\"", \""Phone\""]",4127.07,{},131647,1,"""South America""" +2023-11-13,40504,7242,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2442.94,"{\""loyalty\"": \""10%\""}",176441,0,"""Europe""" +2024-05-28,40505,2306,"[\""Monitor\"", \""Laptop\""]",4966.0,{},29062,1,"""Europe""" +2024-03-19,40506,4946,"[\""Tablet\""]",3189.95,"{\"": \""5%\""}",209723,1,"""Europe""" +2024-10-07,40507,5243,"[\""Laptop\""]",799.76,{},15185,0,"""Africa""" +2024-09-23,40508,6876,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3578.55,"{\""loyalty\"": \""19%\""}",183720,1,"""Asia""" +2023-03-13,40509,2260,"[\""Phone\""]",3361.0,{},224264,0,"""North America""" +2024-01-25,40510,6107,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1230.1,{},255891,0,"""Asia""" +2023-04-13,40511,7617,"[\""Charger\"", \""Keyboard\""]",3642.63,"{\""loyalty\"": \""26%\""}",68190,0,"""Asia""" +2024-04-26,40512,335,"[\""Monitor\"", \""Phone\""]",1248.05,{},235465,0,"""Europe""" +2024-08-30,40513,6838,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4638.25,"{\""seasonal\"": \""23%\""}",51466,0,"""Europe""" +2024-03-09,40514,7468,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1385.5,{},58242,0,"""Europe""" +2023-10-23,40515,9200,"[\""Wireless Mouse\"", \""Monitor\""]",4900.97,"{\""promo\"": \""7%\""}",70855,1,"""South America""" +2024-05-07,40516,7774,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4046.46,"{\""loyalty\"": \""30%\""}",252538,0,"""Africa""" +2024-12-05,40517,3212,"[\""Tablet\""]",4715.78,{},229024,0,"""Europe""" +2024-02-18,40518,6236,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2897.99,{},281504,1,"""Africa""" +2024-03-22,40519,1542,"[\""Keyboard\""]",611.52,{},66760,0,"""South America""" +2023-02-18,40520,5285,"[\""Phone\"", \""Monitor\""]",2280.36,{},94421,1,"""Europe""" +2023-04-28,40521,1418,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1361.6,"{\""promo\"": \""10%\""}",178056,0,"""Europe""" +2024-08-09,40522,1055,"[\""Wireless Mouse\""]",3048.42,{},100043,1,"""South America""" +2024-05-09,40523,7559,"[\""Charger\"", \""Phone\""]",3147.6,"{\""loyalty\"": \""7%\""}",49524,1,"""North America""" +2024-10-26,40524,6259,"[\""Charger\""]",2442.11,{},117828,1,"""Africa""" +2023-07-13,40525,7675,"[\""Tablet\""]",4102.54,"{\""promo\"": \""29%\""}",271529,0,"""Africa""" +2024-11-10,40526,1647,"[\""Phone\"", \""Wireless Mouse\""]",4723.43,{},215403,1,"""Africa""" +2024-02-09,40527,4112,"[\""Charger\""]",2931.35,{},43212,0,"""Europe""" +2023-09-15,40528,5377,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4480.51,{},172732,1,"""North America""" +2024-10-13,40529,2457,"[\""Tablet\"", \""Headphones\""]",4579.56,{},5946,0,"""Africa""" +2023-03-30,40530,9322,"[\""Headphones\""]",3364.67,"{\""seasonal\"": \""17%\""}",133608,0,"""Europe""" +2024-08-08,40531,6777,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1250.74,{},143033,1,"""Europe""" +2024-10-06,40532,5665,"[\""Tablet\""]",2107.54,"{\""seasonal\"": \""9%\""}",32422,1,"""Europe""" +2024-01-12,40533,8928,"[\""Phone\""]",1514.2,{},214349,0,"""Asia""" +2023-05-04,40534,6051,"[\""Phone\"", \""Keyboard\""]",1418.71,{},100084,1,"""South America""" +2024-12-22,40535,2809,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2284.23,"{\"": \""25%\""}",238717,1,"""Africa""" +2024-06-22,40536,8344,"[\""Laptop\""]",3508.7,"{\""promo\"": \""12%\""}",31081,0,"""South America""" +2023-02-12,40537,35,"[\""Phone\"", \""Keyboard\""]",396.29,{},35214,0,"""Africa""" +2024-10-21,40538,2877,"[\""Phone\"", \""Laptop\""]",3934.26,{},45196,0,"""North America""" +2024-11-26,40539,1407,"[\""Phone\""]",2117.91,"{\""promo\"": \""21%\""}",218379,0,"""Asia""" +2024-07-20,40540,1156,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4006.18,{},280994,1,"""Europe""" +2024-10-19,40541,4821,"[\""Charger\"", \""Monitor\""]",4653.03,"{\""seasonal\"": \""21%\""}",276385,1,"""Africa""" +2023-05-15,40542,3399,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1726.27,"{\""promo\"": \""28%\""}",186163,0,"""North America""" +2023-12-19,40543,5265,"[\""Laptop\""]",4209.89,"{\""promo\"": \""5%\""}",105066,1,"""Asia""" +2024-04-27,40544,5036,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2744.04,"{\""seasonal\"": \""6%\""}",56355,1,"""North America""" +2024-02-24,40545,4947,"[\""Charger\""]",3946.48,"{\""seasonal\"": \""27%\""}",141808,1,"""Asia""" +2024-09-22,40546,7337,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3442.14,"{\"": \""23%\""}",248160,1,"""Europe""" +2024-09-05,40547,8147,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4166.94,"{\"": \""26%\""}",121074,0,"""South America""" +2024-11-05,40548,5438,"[\""Headphones\"", \""Monitor\""]",1127.2,"{\""seasonal\"": \""18%\""}",16510,0,"""Europe""" +2023-11-13,40549,8931,"[\""Headphones\""]",1285.53,"{\""loyalty\"": \""28%\""}",26496,0,"""Asia""" +2024-05-16,40550,4106,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2877.17,{},74664,0,"""Africa""" +2023-02-22,40551,355,"[\""Wireless Mouse\"", \""Charger\""]",4613.77,"{\"": \""22%\""}",95515,1,"""Asia""" +2024-08-09,40552,1742,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2994.71,{},119871,1,"""North America""" +2023-11-21,40553,6970,"[\""Keyboard\"", \""Charger\""]",1417.76,{},109271,1,"""North America""" +2024-08-26,40554,2296,"[\""Headphones\""]",2440.66,"{\""loyalty\"": \""5%\""}",248612,1,"""North America""" +2024-07-04,40555,6733,"[\""Headphones\"", \""Wireless Mouse\""]",3354.52,{},41947,0,"""North America""" +2024-07-23,40556,7901,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1835.78,"{\""loyalty\"": \""18%\""}",294289,1,"""Africa""" +2023-12-19,40557,1012,"[\""Headphones\""]",3411.16,"{\""promo\"": \""24%\""}",126150,1,"""North America""" +2023-03-11,40558,6688,"[\""Tablet\"", \""Wireless Mouse\""]",3478.44,{},258160,0,"""Africa""" +2024-07-02,40559,4543,"[\""Phone\""]",2661.09,"{\""seasonal\"": \""14%\""}",251770,1,"""Asia""" +2023-07-13,40560,91,"[\""Wireless Mouse\""]",3566.49,{},100478,0,"""Africa""" +2023-01-04,40561,6177,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1171.52,{},67246,1,"""North America""" +2024-08-26,40562,2578,"[\""Charger\""]",1309.61,{},287130,0,"""Africa""" +2024-04-07,40563,7463,"[\""Wireless Mouse\"", \""Charger\""]",2619.27,{},107300,1,"""Asia""" +2023-09-11,40564,9229,"[\""Laptop\""]",3508.11,{},268708,0,"""Africa""" +2024-05-22,40565,8394,"[\""Headphones\"", \""Keyboard\""]",4693.13,"{\""loyalty\"": \""22%\""}",73303,0,"""Africa""" +2024-08-11,40566,5056,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1076.58,{},256650,0,"""Asia""" +2023-01-26,40567,7669,"[\""Laptop\""]",4001.04,"{\""promo\"": \""20%\""}",202059,1,"""Asia""" +2023-04-13,40568,514,"[\""Headphones\""]",3469.41,{},176140,1,"""Asia""" +2024-04-21,40569,49,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1227.52,{},100330,0,"""North America""" +2023-11-10,40570,9760,"[\""Headphones\""]",3116.09,{},120898,0,"""North America""" +2023-07-15,40571,9222,"[\""Tablet\""]",2547.23,{},293680,1,"""Africa""" +2023-12-15,40572,7349,"[\""Monitor\"", \""Laptop\""]",344.7,"{\"": \""19%\""}",139285,0,"""North America""" +2023-02-21,40573,5755,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3079.73,{},105794,1,"""Europe""" +2024-12-30,40574,8368,"[\""Charger\"", \""Tablet\""]",1320.13,"{\""promo\"": \""7%\""}",43950,0,"""Asia""" +2024-09-12,40575,9857,"[\""Keyboard\""]",2060.26,"{\"": \""19%\""}",236252,1,"""Europe""" +2024-11-18,40576,2327,"[\""Charger\"", \""Phone\""]",3509.9,{},143076,1,"""Europe""" +2024-09-22,40577,7950,"[\""Keyboard\"", \""Laptop\""]",1300.19,"{\"": \""6%\""}",275513,1,"""Africa""" +2023-04-11,40578,6438,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",283.08,"{\""promo\"": \""12%\""}",24091,1,"""Africa""" +2024-07-05,40579,3482,"[\""Charger\""]",4604.23,"{\""seasonal\"": \""14%\""}",36560,1,"""Asia""" +2023-02-17,40580,9199,"[\""Wireless Mouse\""]",3196.8,"{\"": \""13%\""}",203050,1,"""North America""" +2024-02-23,40581,8566,"[\""Wireless Mouse\"", \""Headphones\""]",3516.44,{},223805,0,"""Asia""" +2024-01-15,40582,4802,"[\""Wireless Mouse\""]",1646.93,"{\""loyalty\"": \""10%\""}",65526,0,"""Asia""" +2024-01-18,40583,3252,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3011.66,"{\""promo\"": \""7%\""}",204823,1,"""Asia""" +2024-06-24,40584,3308,"[\""Monitor\""]",4771.74,{},61591,1,"""North America""" +2023-08-16,40585,1813,"[\""Laptop\"", \""Wireless Mouse\""]",1697.59,"{\""loyalty\"": \""30%\""}",190968,1,"""Europe""" +2024-04-23,40586,2961,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4399.63,{},196318,1,"""Asia""" +2023-07-27,40587,3314,"[\""Monitor\""]",3674.82,{},126626,1,"""North America""" +2023-08-29,40588,9183,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2260.71,{},288962,0,"""Europe""" +2023-03-20,40589,2913,"[\""Headphones\"", \""Laptop\""]",4720.51,"{\"": \""13%\""}",189059,1,"""Asia""" +2024-09-19,40590,1742,"[\""Wireless Mouse\""]",4128.92,"{\""seasonal\"": \""25%\""}",55807,0,"""Asia""" +2024-06-02,40591,2846,"[\""Wireless Mouse\""]",1001.75,{},213846,0,"""Europe""" +2024-08-10,40592,4548,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4137.74,"{\""loyalty\"": \""21%\""}",297455,0,"""Africa""" +2023-06-12,40593,2649,"[\""Monitor\"", \""Tablet\""]",3613.34,"{\""seasonal\"": \""22%\""}",53942,0,"""North America""" +2024-01-06,40594,1580,"[\""Phone\"", \""Tablet\""]",3653.0,"{\""promo\"": \""15%\""}",115940,0,"""Africa""" +2024-11-26,40595,8707,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",272.38,{},49530,0,"""Asia""" +2023-06-03,40596,8677,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2722.61,"{\""seasonal\"": \""22%\""}",60400,1,"""Europe""" +2024-06-10,40597,2277,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",832.57,"{\""loyalty\"": \""30%\""}",280268,0,"""Asia""" +2024-07-26,40598,7182,"[\""Laptop\""]",4679.28,"{\""seasonal\"": \""14%\""}",297840,0,"""Asia""" +2024-05-21,40599,430,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",944.44,"{\""loyalty\"": \""11%\""}",2614,1,"""South America""" +2023-06-10,40600,4045,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3439.94,"{\""seasonal\"": \""29%\""}",258643,1,"""Africa""" +2024-06-17,40601,3259,"[\""Wireless Mouse\"", \""Charger\""]",924.79,"{\""seasonal\"": \""29%\""}",146789,0,"""Asia""" +2023-02-09,40602,5902,"[\""Wireless Mouse\""]",2391.42,"{\""seasonal\"": \""13%\""}",36659,0,"""Asia""" +2023-06-07,40603,6595,"[\""Tablet\"", \""Monitor\""]",4815.7,"{\""seasonal\"": \""29%\""}",40444,1,"""Asia""" +2024-05-01,40604,6971,"[\""Tablet\""]",2092.09,"{\""promo\"": \""21%\""}",157031,0,"""Asia""" +2023-04-11,40605,1461,"[\""Charger\"", \""Keyboard\""]",3516.59,"{\"": \""18%\""}",203663,0,"""South America""" +2023-04-19,40606,1414,"[\""Keyboard\""]",1147.15,"{\""loyalty\"": \""17%\""}",104351,1,"""Europe""" +2024-02-16,40607,6322,"[\""Wireless Mouse\"", \""Keyboard\""]",772.38,"{\""loyalty\"": \""17%\""}",29414,0,"""Europe""" +2024-03-05,40608,8483,"[\""Keyboard\"", \""Monitor\""]",177.38,"{\""seasonal\"": \""27%\""}",250607,1,"""Africa""" +2024-05-07,40609,170,"[\""Wireless Mouse\"", \""Headphones\""]",207.06,{},184586,0,"""Europe""" +2024-04-03,40610,8116,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3078.34,{},183332,1,"""Europe""" +2024-10-22,40611,8877,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3751.58,{},48652,1,"""Europe""" +2024-12-25,40612,7142,"[\""Phone\"", \""Monitor\""]",1738.51,{},26094,0,"""Europe""" +2024-05-17,40613,1087,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1226.41,{},229714,1,"""Africa""" +2023-05-20,40614,3415,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4823.34,"{\""seasonal\"": \""19%\""}",170259,0,"""Asia""" +2023-07-29,40615,2550,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2184.29,"{\"": \""11%\""}",213853,0,"""South America""" +2024-03-26,40616,7959,"[\""Monitor\"", \""Tablet\""]",697.66,{},235820,0,"""South America""" +2024-08-27,40617,4949,"[\""Phone\""]",4681.76,{},81785,1,"""Asia""" +2023-07-30,40618,3312,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2291.84,{},48770,0,"""Asia""" +2023-08-19,40619,5099,"[\""Tablet\"", \""Keyboard\""]",3408.88,{},256483,1,"""Africa""" +2023-09-18,40620,6285,"[\""Phone\"", \""Laptop\""]",3844.4,{},185151,0,"""South America""" +2024-12-25,40621,554,"[\""Phone\"", \""Monitor\""]",1089.21,{},31119,1,"""Europe""" +2024-03-08,40622,2075,"[\""Tablet\""]",2377.26,"{\"": \""9%\""}",167308,0,"""Africa""" +2023-07-02,40623,9679,"[\""Tablet\"", \""Monitor\""]",1773.49,{},88139,0,"""Asia""" +2023-03-28,40624,4132,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1955.13,{},125753,1,"""South America""" +2023-08-23,40625,7165,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",269.32,"{\""loyalty\"": \""23%\""}",209736,0,"""North America""" +2023-11-18,40626,2301,"[\""Keyboard\"", \""Phone\""]",1060.67,"{\""loyalty\"": \""18%\""}",10822,1,"""South America""" +2023-04-05,40627,7716,"[\""Charger\""]",3750.66,"{\""seasonal\"": \""28%\""}",286727,1,"""Asia""" +2023-03-17,40628,570,"[\""Laptop\""]",2510.41,{},158001,0,"""Asia""" +2024-12-30,40629,6551,"[\""Wireless Mouse\"", \""Laptop\""]",4366.21,"{\""loyalty\"": \""21%\""}",69742,1,"""Europe""" +2024-12-06,40630,7676,"[\""Phone\""]",3369.6,"{\""seasonal\"": \""26%\""}",254851,0,"""Europe""" +2024-03-24,40631,6229,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4775.44,"{\""seasonal\"": \""14%\""}",114147,0,"""Asia""" +2023-11-07,40632,8577,"[\""Headphones\"", \""Monitor\""]",814.14,{},211784,0,"""Asia""" +2024-05-17,40633,5224,"[\""Headphones\"", \""Wireless Mouse\""]",2935.48,"{\"": \""8%\""}",298508,0,"""Europe""" +2023-03-02,40634,217,"[\""Phone\""]",4789.18,{},267793,1,"""Europe""" +2024-07-20,40635,8163,"[\""Charger\"", \""Monitor\""]",3896.47,"{\""loyalty\"": \""25%\""}",201634,0,"""Europe""" +2023-01-19,40636,6533,"[\""Laptop\"", \""Tablet\""]",1613.13,{},187800,1,"""Europe""" +2024-11-14,40637,9832,"[\""Tablet\""]",3987.65,"{\"": \""14%\""}",265557,0,"""Asia""" +2023-10-17,40638,8220,"[\""Wireless Mouse\""]",4991.02,{},283575,0,"""North America""" +2024-02-15,40639,9600,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3640.35,"{\""loyalty\"": \""22%\""}",242079,1,"""North America""" +2024-04-05,40640,7991,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2532.33,{},247956,0,"""Asia""" +2024-04-11,40641,3340,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3707.49,"{\""loyalty\"": \""8%\""}",33681,1,"""North America""" +2023-08-29,40642,288,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1737.66,"{\"": \""14%\""}",127446,1,"""Europe""" +2023-02-01,40643,5373,"[\""Charger\"", \""Phone\""]",4457.63,"{\""loyalty\"": \""19%\""}",206392,0,"""North America""" +2023-04-11,40644,3325,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4866.65,"{\""promo\"": \""30%\""}",87156,1,"""North America""" +2024-06-12,40645,1610,"[\""Headphones\"", \""Keyboard\""]",2076.05,{},282802,1,"""Europe""" +2024-05-16,40646,9164,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2892.47,"{\""promo\"": \""12%\""}",86037,0,"""South America""" +2024-03-21,40647,4879,"[\""Keyboard\""]",2292.68,"{\""promo\"": \""27%\""}",150432,0,"""Africa""" +2023-07-23,40648,9675,"[\""Charger\"", \""Phone\""]",3794.83,{},108381,1,"""Africa""" +2023-06-02,40649,8391,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1970.24,{},250219,1,"""Asia""" +2023-09-10,40650,1006,"[\""Monitor\""]",782.65,"{\"": \""29%\""}",17525,1,"""North America""" +2024-02-21,40651,8455,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1135.68,{},69317,0,"""Europe""" +2023-12-07,40652,449,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",841.0,"{\""seasonal\"": \""20%\""}",99258,0,"""Asia""" +2024-01-03,40653,4705,"[\""Headphones\"", \""Wireless Mouse\""]",1476.34,{},289872,1,"""South America""" +2023-12-24,40654,1616,"[\""Monitor\""]",4182.88,{},48846,0,"""Asia""" +2024-01-28,40655,6909,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4346.62,{},6746,1,"""Asia""" +2023-01-03,40656,2210,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4468.36,"{\""loyalty\"": \""25%\""}",185716,1,"""North America""" +2023-10-13,40657,877,"[\""Phone\""]",4578.83,{},20090,1,"""Asia""" +2024-05-23,40658,5626,"[\""Tablet\"", \""Phone\""]",4096.53,{},42099,1,"""Africa""" +2023-10-27,40659,6890,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1528.48,{},6263,0,"""North America""" +2023-06-28,40660,210,"[\""Charger\"", \""Laptop\""]",1653.5,{},134124,0,"""Europe""" +2024-01-11,40661,2167,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",510.01,{},263267,0,"""Europe""" +2024-04-11,40662,2847,"[\""Charger\""]",3502.9,"{\""seasonal\"": \""6%\""}",62946,0,"""Asia""" +2024-07-04,40663,7150,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",110.38,"{\""seasonal\"": \""7%\""}",229154,0,"""Europe""" +2023-12-03,40664,6167,"[\""Monitor\"", \""Keyboard\""]",3603.78,{},133691,1,"""South America""" +2024-03-29,40665,9140,"[\""Tablet\"", \""Keyboard\""]",1542.78,"{\"": \""23%\""}",259673,1,"""Europe""" +2023-06-24,40666,9353,"[\""Tablet\"", \""Wireless Mouse\""]",133.32,"{\""promo\"": \""20%\""}",124020,1,"""North America""" +2024-08-15,40667,4459,"[\""Headphones\""]",1938.23,"{\""loyalty\"": \""14%\""}",256683,1,"""Africa""" +2024-01-31,40668,5932,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1907.37,"{\"": \""26%\""}",83081,0,"""Africa""" +2023-05-17,40669,3279,"[\""Charger\"", \""Phone\""]",1969.93,{},78714,0,"""South America""" +2023-09-12,40670,7743,"[\""Laptop\""]",3652.92,{},92564,1,"""North America""" +2023-01-31,40671,4505,"[\""Headphones\""]",1783.4,{},263525,0,"""Asia""" +2024-01-31,40672,7348,"[\""Wireless Mouse\"", \""Laptop\""]",2761.2,"{\""seasonal\"": \""25%\""}",91690,1,"""Europe""" +2024-03-02,40673,1178,"[\""Charger\"", \""Wireless Mouse\""]",626.31,{},106272,0,"""Asia""" +2023-10-08,40674,9770,"[\""Tablet\"", \""Charger\""]",368.5,"{\""seasonal\"": \""29%\""}",169658,0,"""Europe""" +2023-11-29,40675,8657,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2435.73,"{\"": \""20%\""}",78539,1,"""Europe""" +2024-12-14,40676,4673,"[\""Laptop\""]",4650.34,{},270598,1,"""Asia""" +2023-04-08,40677,6340,"[\""Keyboard\""]",1329.28,{},234670,0,"""Europe""" +2024-03-26,40678,7306,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4670.41,"{\""loyalty\"": \""10%\""}",109925,1,"""Europe""" +2023-02-09,40679,3337,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2799.71,"{\"": \""27%\""}",124539,0,"""South America""" +2024-08-30,40680,8733,"[\""Headphones\"", \""Laptop\""]",2444.31,"{\""promo\"": \""25%\""}",84047,1,"""North America""" +2023-01-09,40681,5854,"[\""Tablet\""]",2868.96,{},252909,0,"""North America""" +2024-05-11,40682,1082,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1874.86,"{\""seasonal\"": \""28%\""}",126590,0,"""Africa""" +2023-05-07,40683,6989,"[\""Wireless Mouse\"", \""Tablet\""]",2706.11,{},12651,1,"""North America""" +2024-08-19,40684,4708,"[\""Charger\"", \""Tablet\""]",4788.18,"{\""seasonal\"": \""12%\""}",1034,1,"""Europe""" +2023-03-02,40685,7550,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1452.64,"{\""promo\"": \""20%\""}",278313,1,"""Asia""" +2023-04-12,40686,6402,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4544.7,{},217175,0,"""Africa""" +2023-11-01,40687,954,"[\""Keyboard\""]",3630.85,"{\""promo\"": \""13%\""}",148649,1,"""Europe""" +2024-02-17,40688,9788,"[\""Phone\"", \""Keyboard\""]",1665.62,{},148639,0,"""North America""" +2024-01-03,40689,7436,"[\""Charger\"", \""Keyboard\""]",4921.73,"{\""seasonal\"": \""25%\""}",93072,1,"""Asia""" +2023-05-22,40690,5522,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1992.21,"{\"": \""17%\""}",79484,1,"""Europe""" +2024-12-09,40691,596,"[\""Keyboard\"", \""Laptop\""]",2153.92,"{\"": \""27%\""}",127950,0,"""Asia""" +2024-09-21,40692,5972,"[\""Laptop\"", \""Headphones\""]",1063.35,"{\""promo\"": \""13%\""}",147447,0,"""Africa""" +2023-06-19,40693,6509,"[\""Headphones\"", \""Charger\""]",2183.11,{},216290,1,"""Asia""" +2024-08-20,40694,7102,"[\""Charger\"", \""Headphones\""]",249.63,{},140777,1,"""South America""" +2024-08-13,40695,8640,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",781.78,{},203109,1,"""Asia""" +2023-09-17,40696,3459,"[\""Charger\""]",3634.6,{},236378,1,"""North America""" +2023-05-14,40697,6289,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1614.47,{},187419,0,"""Asia""" +2024-12-07,40698,8505,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4005.82,"{\""promo\"": \""18%\""}",172550,1,"""Europe""" +2024-12-27,40699,6335,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4393.28,{},76222,0,"""South America""" +2023-07-12,40700,1422,"[\""Laptop\""]",3528.72,"{\""promo\"": \""5%\""}",167432,1,"""North America""" +2023-11-28,40701,7883,"[\""Laptop\""]",846.07,{},272939,0,"""North America""" +2023-11-13,40702,5588,"[\""Monitor\""]",4821.32,"{\""promo\"": \""10%\""}",95050,1,"""Europe""" +2023-10-10,40703,7411,"[\""Charger\"", \""Headphones\""]",77.98,{},135792,1,"""Asia""" +2024-11-23,40704,221,"[\""Phone\"", \""Wireless Mouse\""]",4090.68,{},262118,0,"""Europe""" +2024-03-31,40705,7168,"[\""Wireless Mouse\"", \""Headphones\""]",2802.15,"{\""loyalty\"": \""13%\""}",222175,1,"""South America""" +2023-08-31,40706,568,"[\""Wireless Mouse\""]",2148.12,"{\""loyalty\"": \""28%\""}",250255,0,"""South America""" +2024-05-30,40707,6995,"[\""Keyboard\"", \""Laptop\""]",2640.54,{},198736,0,"""Africa""" +2024-10-13,40708,7979,"[\""Laptop\""]",3537.85,{},55049,0,"""South America""" +2023-07-29,40709,4164,"[\""Tablet\"", \""Charger\""]",330.4,"{\""seasonal\"": \""5%\""}",102167,0,"""North America""" +2024-10-02,40710,5881,"[\""Tablet\""]",2536.19,"{\""promo\"": \""10%\""}",29311,0,"""Africa""" +2024-11-21,40711,7321,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3933.99,"{\""seasonal\"": \""29%\""}",293790,0,"""North America""" +2023-01-08,40712,5536,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2540.24,{},122928,0,"""Asia""" +2023-01-23,40713,4958,"[\""Phone\""]",1878.68,{},38678,0,"""Asia""" +2024-01-30,40714,3678,"[\""Keyboard\"", \""Laptop\""]",1746.45,"{\"": \""28%\""}",271219,0,"""Asia""" +2024-07-15,40715,4977,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3869.97,{},116207,0,"""North America""" +2023-02-14,40716,4809,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3036.92,{},54053,0,"""North America""" +2024-12-27,40717,1698,"[\""Phone\"", \""Wireless Mouse\""]",2069.34,"{\"": \""30%\""}",129573,1,"""South America""" +2024-01-09,40718,1500,"[\""Phone\"", \""Laptop\""]",2081.24,"{\""loyalty\"": \""17%\""}",225717,1,"""Asia""" +2024-08-04,40719,5455,"[\""Tablet\"", \""Wireless Mouse\""]",343.06,"{\""loyalty\"": \""10%\""}",104987,1,"""South America""" +2023-09-08,40720,1231,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3752.0,{},93684,1,"""South America""" +2024-05-05,40721,3875,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1656.58,"{\"": \""15%\""}",122764,0,"""Europe""" +2023-10-05,40722,4565,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4386.79,"{\"": \""27%\""}",206477,0,"""Asia""" +2024-03-22,40723,487,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3398.39,"{\""loyalty\"": \""11%\""}",299325,1,"""North America""" +2023-12-05,40724,8573,"[\""Tablet\"", \""Keyboard\""]",895.77,"{\""loyalty\"": \""12%\""}",165332,0,"""South America""" +2024-12-10,40725,9996,"[\""Headphones\""]",3464.86,{},106810,1,"""Asia""" +2023-03-01,40726,4460,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4457.76,{},257166,1,"""Asia""" +2023-08-18,40727,925,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1799.72,"{\""loyalty\"": \""10%\""}",17679,0,"""South America""" +2024-09-25,40728,2179,"[\""Keyboard\""]",2482.63,"{\"": \""16%\""}",30794,0,"""Europe""" +2024-08-11,40729,2668,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3661.3,"{\"": \""12%\""}",109942,0,"""North America""" +2024-03-02,40730,386,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1957.78,"{\""promo\"": \""30%\""}",119763,1,"""Asia""" +2023-05-23,40731,7652,"[\""Charger\"", \""Wireless Mouse\""]",353.81,"{\""seasonal\"": \""11%\""}",55129,0,"""North America""" +2024-10-17,40732,8267,"[\""Charger\""]",2241.81,"{\""loyalty\"": \""10%\""}",90287,1,"""Asia""" +2024-02-01,40733,883,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3829.09,{},160520,1,"""South America""" +2024-04-05,40734,1464,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3096.47,{},202911,1,"""Asia""" +2024-06-07,40735,7593,"[\""Phone\""]",2553.93,"{\""loyalty\"": \""21%\""}",229612,1,"""North America""" +2023-02-19,40736,4620,"[\""Keyboard\""]",3695.89,{},134905,0,"""Europe""" +2024-11-09,40737,2585,"[\""Wireless Mouse\""]",1639.46,"{\""loyalty\"": \""21%\""}",17172,0,"""South America""" +2023-07-18,40738,8914,"[\""Laptop\"", \""Tablet\""]",3695.61,"{\""seasonal\"": \""8%\""}",289800,0,"""Africa""" +2024-03-11,40739,2892,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1006.02,"{\""promo\"": \""19%\""}",102083,1,"""Africa""" +2023-07-20,40740,5797,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2380.6,"{\""promo\"": \""11%\""}",210167,1,"""North America""" +2024-04-17,40741,1987,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3075.86,{},178070,1,"""Africa""" +2023-12-09,40742,8330,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",210.03,"{\""loyalty\"": \""25%\""}",56896,0,"""North America""" +2023-09-12,40743,4430,"[\""Monitor\"", \""Phone\"", \""Charger\""]",340.24,"{\""seasonal\"": \""29%\""}",200253,1,"""Africa""" +2023-02-23,40744,5462,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1308.2,"{\""loyalty\"": \""20%\""}",273372,1,"""South America""" +2023-12-05,40745,2700,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4770.78,"{\""loyalty\"": \""15%\""}",21954,0,"""Asia""" +2024-06-03,40746,8270,"[\""Monitor\""]",2270.03,{},248346,0,"""North America""" +2024-10-23,40747,3213,"[\""Laptop\""]",3012.76,{},6643,1,"""Europe""" +2023-10-20,40748,3469,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1927.4,"{\"": \""6%\""}",203877,1,"""Europe""" +2023-12-11,40749,1739,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3411.71,"{\"": \""23%\""}",134626,0,"""North America""" +2024-07-22,40750,289,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",345.16,"{\""promo\"": \""15%\""}",135481,0,"""Europe""" +2023-08-03,40751,5563,"[\""Wireless Mouse\"", \""Laptop\""]",3431.96,"{\"": \""11%\""}",21680,1,"""Africa""" +2024-10-09,40752,9881,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",940.42,"{\""seasonal\"": \""20%\""}",82125,1,"""Europe""" +2023-06-06,40753,5783,"[\""Keyboard\"", \""Charger\""]",3460.92,{},228827,0,"""North America""" +2024-01-11,40754,6549,"[\""Wireless Mouse\"", \""Tablet\""]",4192.24,"{\""loyalty\"": \""10%\""}",99748,1,"""South America""" +2023-04-07,40755,5612,"[\""Tablet\""]",2724.89,"{\""loyalty\"": \""11%\""}",4096,1,"""Africa""" +2023-05-06,40756,9129,"[\""Wireless Mouse\"", \""Keyboard\""]",2813.5,"{\""promo\"": \""6%\""}",139790,0,"""North America""" +2024-05-31,40757,5108,"[\""Headphones\"", \""Wireless Mouse\""]",3436.36,"{\"": \""8%\""}",204453,1,"""North America""" +2023-01-09,40758,3968,"[\""Wireless Mouse\""]",2599.34,{},254941,0,"""Europe""" +2024-08-10,40759,5299,"[\""Keyboard\"", \""Phone\""]",3373.6,{},261143,0,"""Asia""" +2024-12-30,40760,211,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2835.16,{},50350,0,"""South America""" +2024-12-29,40761,9136,"[\""Headphones\"", \""Keyboard\""]",2584.07,{},180812,1,"""North America""" +2024-09-15,40762,8053,"[\""Charger\"", \""Phone\""]",4286.76,{},187300,0,"""North America""" +2023-09-01,40763,2661,"[\""Monitor\"", \""Laptop\""]",4438.41,"{\""promo\"": \""20%\""}",294391,1,"""Africa""" +2024-09-24,40764,2150,"[\""Headphones\""]",4015.54,"{\"": \""29%\""}",10624,1,"""North America""" +2024-02-10,40765,7338,"[\""Keyboard\"", \""Phone\""]",3108.1,"{\""seasonal\"": \""5%\""}",83584,0,"""Africa""" +2024-06-19,40766,1655,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",72.41,"{\""promo\"": \""13%\""}",55713,1,"""Asia""" +2024-11-13,40767,1827,"[\""Laptop\"", \""Phone\""]",4945.33,{},228249,0,"""Europe""" +2023-07-25,40768,2779,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3509.1,"{\"": \""8%\""}",258484,1,"""Europe""" +2023-08-02,40769,1022,"[\""Wireless Mouse\"", \""Laptop\""]",1021.91,"{\"": \""27%\""}",267649,1,"""Asia""" +2024-11-15,40770,8739,"[\""Wireless Mouse\"", \""Monitor\""]",3149.7,"{\""promo\"": \""27%\""}",64478,1,"""Asia""" +2023-01-16,40771,99,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2909.14,"{\""loyalty\"": \""21%\""}",51751,1,"""South America""" +2023-06-28,40772,5097,"[\""Tablet\"", \""Laptop\""]",3036.96,{},190962,1,"""Europe""" +2023-03-18,40773,2265,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1244.36,{},118072,0,"""Asia""" +2024-01-14,40774,4028,"[\""Charger\""]",3951.43,"{\""seasonal\"": \""7%\""}",157762,0,"""Europe""" +2023-04-12,40775,6356,"[\""Charger\"", \""Wireless Mouse\""]",4015.5,{},113289,1,"""North America""" +2023-07-26,40776,2479,"[\""Laptop\"", \""Headphones\""]",2974.41,{},81054,0,"""Europe""" +2023-11-12,40777,2742,"[\""Monitor\""]",4930.53,"{\""promo\"": \""11%\""}",186336,0,"""Asia""" +2023-03-29,40778,4194,"[\""Phone\"", \""Wireless Mouse\""]",4489.73,"{\""promo\"": \""18%\""}",163888,0,"""North America""" +2023-04-11,40779,515,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3506.74,{},62460,0,"""Asia""" +2023-06-24,40780,2105,"[\""Phone\""]",4065.61,"{\"": \""22%\""}",27739,0,"""South America""" +2024-02-16,40781,633,"[\""Charger\""]",2703.14,"{\""seasonal\"": \""30%\""}",21793,1,"""North America""" +2023-10-02,40782,9351,"[\""Wireless Mouse\"", \""Phone\""]",380.19,"{\""seasonal\"": \""11%\""}",8786,1,"""Africa""" +2023-03-16,40783,8121,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3477.58,"{\""loyalty\"": \""28%\""}",158959,0,"""Asia""" +2024-10-14,40784,6240,"[\""Keyboard\"", \""Laptop\""]",1463.64,{},92835,0,"""Asia""" +2024-11-06,40785,3165,"[\""Laptop\"", \""Tablet\""]",817.57,"{\""seasonal\"": \""16%\""}",170187,1,"""South America""" +2024-04-26,40786,6044,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2227.73,"{\"": \""11%\""}",154500,0,"""South America""" +2023-05-27,40787,5582,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1459.86,"{\""promo\"": \""21%\""}",89277,0,"""Europe""" +2024-01-01,40788,5699,"[\""Monitor\""]",922.86,"{\""loyalty\"": \""7%\""}",117263,0,"""Africa""" +2024-09-11,40789,5830,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1743.44,{},249323,1,"""Europe""" +2023-07-15,40790,5007,"[\""Headphones\"", \""Monitor\""]",3926.15,{},146278,1,"""Africa""" +2023-05-14,40791,7040,"[\""Keyboard\"", \""Phone\""]",4396.39,{},155526,1,"""Asia""" +2023-10-09,40792,2355,"[\""Wireless Mouse\""]",1499.01,{},144193,1,"""North America""" +2024-04-06,40793,3299,"[\""Phone\"", \""Laptop\""]",1139.06,"{\"": \""28%\""}",118874,1,"""Asia""" +2024-06-30,40794,3195,"[\""Laptop\""]",2315.32,"{\""loyalty\"": \""11%\""}",244097,0,"""Asia""" +2024-09-27,40795,5654,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3060.85,"{\""loyalty\"": \""15%\""}",196292,1,"""Africa""" +2024-07-23,40796,2895,"[\""Laptop\"", \""Keyboard\""]",2124.11,{},80040,0,"""Asia""" +2023-09-20,40797,2581,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4807.68,"{\"": \""5%\""}",268104,0,"""North America""" +2024-06-27,40798,3277,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2447.88,{},57900,1,"""North America""" +2024-10-21,40799,3051,"[\""Keyboard\""]",921.35,{},108836,1,"""Asia""" +2024-11-08,40800,8948,"[\""Wireless Mouse\""]",1839.82,{},76898,0,"""Asia""" +2023-03-28,40801,7188,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3232.35,"{\""loyalty\"": \""16%\""}",209610,1,"""Europe""" +2023-11-14,40802,8940,"[\""Tablet\""]",4425.37,"{\"": \""6%\""}",13139,1,"""South America""" +2024-01-21,40803,9629,"[\""Phone\""]",2894.95,"{\""promo\"": \""12%\""}",173542,1,"""Africa""" +2024-09-07,40804,2605,"[\""Tablet\"", \""Keyboard\""]",2959.41,{},231915,0,"""North America""" +2024-09-05,40805,4732,"[\""Wireless Mouse\"", \""Monitor\""]",123.7,"{\""loyalty\"": \""7%\""}",183594,1,"""Asia""" +2023-12-31,40806,7643,"[\""Charger\""]",4214.0,{},150040,0,"""South America""" +2023-07-14,40807,8995,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1367.74,{},190622,0,"""Asia""" +2024-04-25,40808,3859,"[\""Tablet\"", \""Laptop\""]",3424.37,"{\""seasonal\"": \""26%\""}",118714,1,"""Africa""" +2023-11-02,40809,3771,"[\""Charger\""]",4666.13,"{\"": \""14%\""}",67054,0,"""Asia""" +2023-09-09,40810,5948,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4366.87,"{\""promo\"": \""28%\""}",59417,1,"""South America""" +2023-02-04,40811,4577,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1226.32,{},221127,0,"""North America""" +2023-07-21,40812,9532,"[\""Monitor\"", \""Tablet\""]",4157.62,{},263815,0,"""South America""" +2023-01-06,40813,9609,"[\""Charger\"", \""Wireless Mouse\""]",3797.76,"{\""promo\"": \""28%\""}",102507,0,"""Europe""" +2024-09-29,40814,7021,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",697.36,{},267948,1,"""Europe""" +2023-01-24,40815,8782,"[\""Tablet\""]",4296.71,"{\""seasonal\"": \""15%\""}",52400,1,"""South America""" +2023-10-19,40816,8678,"[\""Tablet\""]",440.78,"{\""seasonal\"": \""24%\""}",297409,0,"""Europe""" +2024-06-18,40817,7673,"[\""Wireless Mouse\""]",4226.65,{},107657,0,"""Africa""" +2023-01-08,40818,7034,"[\""Tablet\"", \""Wireless Mouse\""]",4059.09,"{\""promo\"": \""10%\""}",12530,1,"""Asia""" +2023-08-20,40819,7503,"[\""Keyboard\""]",3468.49,"{\""loyalty\"": \""29%\""}",263913,0,"""North America""" +2023-09-26,40820,526,"[\""Monitor\""]",3931.83,"{\""seasonal\"": \""28%\""}",252125,0,"""Europe""" +2024-01-24,40821,919,"[\""Monitor\""]",4828.36,{},259941,0,"""Asia""" +2023-06-12,40822,5665,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3716.89,{},225927,1,"""Africa""" +2024-08-13,40823,8361,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3906.17,"{\""promo\"": \""21%\""}",23460,1,"""South America""" +2024-05-02,40824,2687,"[\""Laptop\"", \""Wireless Mouse\""]",1303.45,"{\"": \""12%\""}",254223,1,"""North America""" +2024-05-06,40825,1673,"[\""Headphones\""]",1315.74,{},10694,0,"""Europe""" +2023-03-27,40826,9136,"[\""Wireless Mouse\"", \""Headphones\""]",4313.49,{},225406,0,"""Africa""" +2023-01-27,40827,3819,"[\""Laptop\"", \""Keyboard\""]",2561.11,{},87095,0,"""South America""" +2024-12-21,40828,1444,"[\""Wireless Mouse\"", \""Phone\""]",2939.25,{},55455,0,"""South America""" +2024-03-02,40829,8612,"[\""Tablet\""]",4373.34,"{\""seasonal\"": \""17%\""}",80036,1,"""Asia""" +2024-01-17,40830,1905,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",512.54,"{\""loyalty\"": \""16%\""}",214766,1,"""South America""" +2023-07-17,40831,7828,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3247.58,"{\""promo\"": \""20%\""}",13110,0,"""Europe""" +2023-03-09,40832,6505,"[\""Headphones\"", \""Charger\""]",4263.89,"{\""seasonal\"": \""13%\""}",76432,1,"""North America""" +2024-05-22,40833,2203,"[\""Headphones\"", \""Charger\""]",3392.59,{},135738,1,"""Asia""" +2024-07-17,40834,6861,"[\""Laptop\""]",125.41,{},185869,1,"""South America""" +2024-03-27,40835,5400,"[\""Phone\""]",2390.75,"{\"": \""18%\""}",194498,0,"""North America""" +2024-05-25,40836,2708,"[\""Monitor\""]",1235.19,{},260164,0,"""North America""" +2023-03-27,40837,8993,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3320.25,"{\"": \""14%\""}",44757,1,"""Africa""" +2024-02-20,40838,4760,"[\""Charger\""]",87.92,"{\""loyalty\"": \""25%\""}",286100,1,"""Africa""" +2024-02-07,40839,6779,"[\""Monitor\""]",3133.75,"{\""seasonal\"": \""26%\""}",78785,1,"""Europe""" +2024-02-08,40840,7652,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4906.43,"{\""promo\"": \""21%\""}",213674,0,"""North America""" +2023-11-07,40841,461,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4357.1,{},212579,0,"""Europe""" +2023-08-04,40842,355,"[\""Laptop\""]",796.26,"{\""loyalty\"": \""10%\""}",27108,1,"""South America""" +2024-10-20,40843,8299,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4302.83,"{\""loyalty\"": \""5%\""}",225500,1,"""Africa""" +2023-10-11,40844,9581,"[\""Wireless Mouse\""]",1315.55,"{\""loyalty\"": \""6%\""}",228788,0,"""Europe""" +2024-01-05,40845,4309,"[\""Laptop\"", \""Tablet\""]",3988.42,"{\""loyalty\"": \""10%\""}",88832,0,"""Europe""" +2023-09-13,40846,191,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1132.47,"{\""promo\"": \""6%\""}",135707,0,"""Europe""" +2023-04-30,40847,8305,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3038.38,"{\""loyalty\"": \""24%\""}",132634,1,"""Europe""" +2023-09-01,40848,1234,"[\""Laptop\""]",1765.91,{},129432,0,"""South America""" +2023-01-25,40849,2526,"[\""Tablet\""]",4908.81,"{\""promo\"": \""16%\""}",192528,0,"""Europe""" +2023-03-21,40850,1109,"[\""Headphones\"", \""Wireless Mouse\""]",2156.57,{},64461,1,"""North America""" +2023-02-21,40851,4530,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2890.8,{},80400,0,"""Asia""" +2023-05-31,40852,8734,"[\""Laptop\""]",290.77,"{\"": \""10%\""}",231712,0,"""Asia""" +2023-08-01,40853,141,"[\""Keyboard\"", \""Wireless Mouse\""]",1367.19,{},189367,0,"""South America""" +2024-02-27,40854,8239,"[\""Headphones\"", \""Charger\""]",4750.57,"{\""seasonal\"": \""26%\""}",233267,0,"""Asia""" +2023-08-09,40855,9691,"[\""Wireless Mouse\""]",3471.38,{},76096,0,"""North America""" +2024-01-24,40856,4021,"[\""Phone\""]",3201.0,"{\""seasonal\"": \""7%\""}",101309,0,"""South America""" +2024-04-18,40857,2970,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3097.14,"{\""seasonal\"": \""9%\""}",75629,0,"""Africa""" +2023-12-25,40858,7998,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2594.41,"{\""promo\"": \""7%\""}",255463,0,"""Europe""" +2024-01-10,40859,8404,"[\""Keyboard\"", \""Wireless Mouse\""]",2939.16,{},131520,0,"""Europe""" +2023-09-04,40860,8370,"[\""Charger\""]",1672.02,"{\""promo\"": \""25%\""}",44048,1,"""Europe""" +2023-09-07,40861,3019,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2309.23,"{\""promo\"": \""30%\""}",103829,1,"""Africa""" +2024-07-26,40862,9356,"[\""Headphones\""]",4938.99,"{\""loyalty\"": \""13%\""}",25515,1,"""Asia""" +2024-04-19,40863,8757,"[\""Tablet\""]",1995.22,"{\"": \""29%\""}",239974,1,"""Asia""" +2023-06-21,40864,8336,"[\""Monitor\"", \""Wireless Mouse\""]",1311.75,{},159728,0,"""Africa""" +2023-10-06,40865,9879,"[\""Headphones\"", \""Phone\""]",4319.19,"{\""seasonal\"": \""27%\""}",261435,0,"""Asia""" +2023-02-25,40866,5259,"[\""Laptop\""]",1824.3,"{\""seasonal\"": \""28%\""}",223235,1,"""Asia""" +2024-01-09,40867,3837,"[\""Wireless Mouse\"", \""Monitor\""]",1936.64,"{\""seasonal\"": \""7%\""}",239821,0,"""North America""" +2024-12-11,40868,5989,"[\""Phone\"", \""Monitor\""]",2327.16,{},136984,0,"""North America""" +2023-10-17,40869,3895,"[\""Phone\"", \""Wireless Mouse\""]",573.69,{},136918,1,"""North America""" +2023-01-19,40870,3961,"[\""Keyboard\"", \""Monitor\""]",4116.35,"{\""seasonal\"": \""17%\""}",270493,1,"""North America""" +2023-05-30,40871,4610,"[\""Headphones\""]",419.85,{},54544,0,"""Europe""" +2023-12-20,40872,6243,"[\""Phone\"", \""Headphones\""]",4555.5,{},131731,1,"""Asia""" +2023-04-11,40873,5186,"[\""Tablet\""]",2174.78,"{\"": \""21%\""}",15036,0,"""North America""" +2023-10-29,40874,2228,"[\""Monitor\"", \""Laptop\""]",3428.87,"{\""loyalty\"": \""28%\""}",105625,0,"""Asia""" +2024-12-06,40875,533,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1192.51,"{\""loyalty\"": \""6%\""}",259072,0,"""Europe""" +2023-12-25,40876,3505,"[\""Laptop\""]",2409.05,"{\""promo\"": \""8%\""}",204533,1,"""Europe""" +2023-01-15,40877,1453,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",999.64,"{\""seasonal\"": \""16%\""}",232529,0,"""Asia""" +2023-05-29,40878,3219,"[\""Tablet\""]",3056.23,{},146522,1,"""Asia""" +2024-06-09,40879,2596,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1136.84,{},136480,0,"""Asia""" +2024-02-05,40880,2505,"[\""Keyboard\""]",760.07,{},52222,0,"""North America""" +2023-12-10,40881,3698,"[\""Keyboard\"", \""Monitor\""]",337.43,"{\"": \""5%\""}",27315,0,"""Africa""" +2024-09-21,40882,4228,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",504.01,{},238733,0,"""Africa""" +2024-09-10,40883,1498,"[\""Tablet\"", \""Charger\""]",2006.1,"{\"": \""19%\""}",95558,0,"""North America""" +2023-08-25,40884,2040,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3763.46,{},148355,0,"""South America""" +2024-06-02,40885,5091,"[\""Phone\""]",4749.38,{},168994,0,"""North America""" +2023-10-13,40886,6258,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3537.86,"{\""seasonal\"": \""12%\""}",15723,1,"""Asia""" +2024-02-21,40887,6939,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4505.36,{},258289,0,"""Africa""" +2023-11-07,40888,4492,"[\""Wireless Mouse\""]",511.53,"{\""promo\"": \""5%\""}",140501,1,"""Africa""" +2023-02-14,40889,5892,"[\""Tablet\""]",3578.74,{},291224,1,"""North America""" +2023-07-16,40890,2216,"[\""Tablet\"", \""Laptop\""]",3516.73,{},289566,1,"""North America""" +2023-11-17,40891,7742,"[\""Laptop\""]",1789.47,{},146393,1,"""Europe""" +2023-08-06,40892,4978,"[\""Charger\"", \""Wireless Mouse\""]",2772.62,{},9877,0,"""South America""" +2023-08-21,40893,2352,"[\""Keyboard\"", \""Laptop\""]",4559.87,{},81104,0,"""Africa""" +2024-04-14,40894,6923,"[\""Charger\""]",2344.12,{},85667,0,"""South America""" +2023-12-15,40895,8601,"[\""Headphones\"", \""Charger\""]",2710.18,"{\""promo\"": \""13%\""}",46225,1,"""Asia""" +2024-10-19,40896,2315,"[\""Wireless Mouse\""]",3922.3,"{\"": \""19%\""}",97608,0,"""Africa""" +2023-04-28,40897,8119,"[\""Headphones\"", \""Monitor\""]",495.99,"{\""loyalty\"": \""26%\""}",240541,1,"""North America""" +2024-08-01,40898,975,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",238.56,"{\""seasonal\"": \""10%\""}",190470,0,"""South America""" +2023-06-06,40899,6107,"[\""Keyboard\"", \""Tablet\""]",3158.09,{},104597,0,"""North America""" +2023-06-15,40900,3409,"[\""Monitor\"", \""Headphones\""]",2061.42,"{\""promo\"": \""19%\""}",140782,0,"""North America""" +2023-01-13,40901,3477,"[\""Phone\""]",1249.61,"{\"": \""27%\""}",14072,1,"""Europe""" +2023-09-27,40902,5572,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1146.75,"{\"": \""16%\""}",67102,0,"""North America""" +2024-03-06,40903,1732,"[\""Wireless Mouse\"", \""Tablet\""]",2097.76,"{\""seasonal\"": \""19%\""}",83015,0,"""Africa""" +2023-12-30,40904,9807,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2511.55,{},223691,0,"""Europe""" +2024-12-11,40905,4320,"[\""Phone\"", \""Tablet\""]",4857.73,{},154414,1,"""Asia""" +2023-09-03,40906,8903,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3696.88,"{\""loyalty\"": \""20%\""}",215008,1,"""Europe""" +2024-11-02,40907,5433,"[\""Phone\""]",4497.91,"{\""seasonal\"": \""28%\""}",88176,0,"""South America""" +2023-01-23,40908,5244,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1531.9,{},40856,1,"""Asia""" +2023-10-18,40909,1837,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4158.14,{},143588,0,"""South America""" +2024-04-09,40910,4777,"[\""Phone\"", \""Tablet\""]",3527.35,{},161800,1,"""North America""" +2024-08-03,40911,8955,"[\""Wireless Mouse\""]",3160.98,{},130031,0,"""South America""" +2024-05-09,40912,6160,"[\""Headphones\"", \""Charger\""]",4991.32,"{\""seasonal\"": \""27%\""}",191151,0,"""Africa""" +2024-09-14,40913,2858,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4982.87,{},8018,0,"""Asia""" +2024-07-09,40914,2238,"[\""Wireless Mouse\"", \""Headphones\""]",4312.73,{},47258,1,"""Asia""" +2023-11-06,40915,4261,"[\""Phone\""]",2414.03,"{\""loyalty\"": \""16%\""}",87149,0,"""Europe""" +2024-05-05,40916,5813,"[\""Wireless Mouse\""]",337.25,"{\""promo\"": \""28%\""}",215546,0,"""Asia""" +2024-06-07,40917,8052,"[\""Keyboard\"", \""Laptop\""]",482.95,{},87367,0,"""South America""" +2023-04-26,40918,1867,"[\""Wireless Mouse\"", \""Phone\""]",4087.09,{},7112,0,"""Asia""" +2023-11-05,40919,3807,"[\""Laptop\""]",435.9,"{\""seasonal\"": \""5%\""}",27671,0,"""Africa""" +2023-11-20,40920,3414,"[\""Wireless Mouse\"", \""Monitor\""]",1648.65,"{\""seasonal\"": \""18%\""}",13648,1,"""Europe""" +2024-08-14,40921,9856,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",899.43,{},108417,0,"""Africa""" +2024-06-10,40922,8171,"[\""Keyboard\"", \""Wireless Mouse\""]",550.85,"{\"": \""14%\""}",195373,0,"""South America""" +2023-07-28,40923,4358,"[\""Wireless Mouse\"", \""Keyboard\""]",198.57,{},71761,1,"""Europe""" +2023-01-23,40924,8790,"[\""Wireless Mouse\"", \""Keyboard\""]",3001.66,"{\"": \""6%\""}",251605,0,"""Europe""" +2024-03-02,40925,3743,"[\""Monitor\""]",3109.52,{},272960,1,"""South America""" +2024-07-10,40926,4913,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4873.35,{},210221,1,"""Africa""" +2024-08-03,40927,1037,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4499.35,{},79134,1,"""Europe""" +2024-12-12,40928,1867,"[\""Laptop\""]",975.36,"{\""promo\"": \""16%\""}",273550,1,"""Asia""" +2024-05-24,40929,9013,"[\""Phone\""]",2760.65,"{\""seasonal\"": \""30%\""}",57799,0,"""Asia""" +2023-02-18,40930,1651,"[\""Charger\"", \""Monitor\""]",4330.54,"{\""promo\"": \""23%\""}",222151,1,"""Europe""" +2023-06-08,40931,6001,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1479.34,{},55800,1,"""North America""" +2023-03-02,40932,2440,"[\""Phone\"", \""Charger\""]",1252.33,{},32819,1,"""North America""" +2024-05-25,40933,4462,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3258.83,{},122799,0,"""Asia""" +2024-03-20,40934,3076,"[\""Headphones\""]",4734.76,{},208357,1,"""Europe""" +2023-10-03,40935,7965,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",57.64,"{\""seasonal\"": \""11%\""}",91603,0,"""Europe""" +2023-04-25,40936,1076,"[\""Wireless Mouse\"", \""Keyboard\""]",4785.12,"{\""loyalty\"": \""12%\""}",291667,0,"""South America""" +2023-06-08,40937,7353,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1625.13,"{\""promo\"": \""18%\""}",203995,1,"""Asia""" +2023-04-11,40938,3926,"[\""Monitor\""]",4046.7,{},282327,0,"""Asia""" +2023-10-09,40939,8608,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4142.74,{},55078,0,"""South America""" +2023-08-11,40940,2130,"[\""Charger\""]",4649.87,"{\""seasonal\"": \""19%\""}",117228,1,"""Europe""" +2023-06-06,40941,1595,"[\""Laptop\""]",4024.04,{},135142,1,"""North America""" +2023-06-09,40942,1244,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1549.71,{},170748,0,"""Africa""" +2023-04-27,40943,7427,"[\""Wireless Mouse\""]",1638.11,{},125010,0,"""Africa""" +2024-02-12,40944,5668,"[\""Keyboard\"", \""Charger\""]",2633.43,"{\""seasonal\"": \""22%\""}",280630,1,"""South America""" +2023-08-23,40945,6921,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1029.21,{},223650,1,"""Europe""" +2023-03-12,40946,23,"[\""Keyboard\"", \""Tablet\""]",712.32,"{\""promo\"": \""23%\""}",227875,1,"""South America""" +2023-12-05,40947,5884,"[\""Phone\""]",3066.69,"{\"": \""21%\""}",217511,0,"""South America""" +2023-02-16,40948,4423,"[\""Headphones\""]",4382.34,{},137411,1,"""Africa""" +2024-10-07,40949,826,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1499.67,{},203147,1,"""Africa""" +2024-10-22,40950,2018,"[\""Laptop\"", \""Keyboard\""]",4292.01,"{\""loyalty\"": \""9%\""}",274821,0,"""Asia""" +2023-04-29,40951,8817,"[\""Monitor\"", \""Charger\""]",1178.97,{},135930,0,"""South America""" +2023-05-24,40952,6077,"[\""Charger\""]",2760.06,"{\""loyalty\"": \""17%\""}",72533,0,"""Africa""" +2023-07-19,40953,6953,"[\""Laptop\""]",4726.41,"{\""loyalty\"": \""8%\""}",97104,1,"""North America""" +2023-02-28,40954,5551,"[\""Headphones\""]",287.14,{},222790,0,"""Europe""" +2024-07-03,40955,2668,"[\""Tablet\""]",3167.52,{},291848,1,"""Asia""" +2023-04-02,40956,4233,"[\""Charger\""]",2682.82,{},69797,1,"""North America""" +2024-06-14,40957,3885,"[\""Laptop\"", \""Headphones\""]",736.93,"{\""loyalty\"": \""27%\""}",294668,0,"""Africa""" +2023-07-11,40958,8755,"[\""Phone\"", \""Monitor\""]",3018.31,"{\""promo\"": \""8%\""}",126827,1,"""Asia""" +2024-09-02,40959,5972,"[\""Keyboard\""]",2363.74,{},169519,1,"""South America""" +2023-10-17,40960,588,"[\""Phone\""]",4189.7,{},284351,1,"""South America""" +2024-11-12,40961,2237,"[\""Wireless Mouse\""]",4278.99,"{\""promo\"": \""5%\""}",53672,1,"""Asia""" +2024-10-26,40962,1150,"[\""Headphones\"", \""Keyboard\""]",4504.72,"{\""loyalty\"": \""14%\""}",153660,0,"""South America""" +2023-07-23,40963,6789,"[\""Laptop\"", \""Wireless Mouse\""]",1006.48,"{\""promo\"": \""13%\""}",38757,1,"""Europe""" +2024-07-29,40964,2467,"[\""Monitor\""]",3494.17,"{\"": \""19%\""}",119694,0,"""Asia""" +2024-06-05,40965,4522,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1925.65,"{\""loyalty\"": \""14%\""}",80513,0,"""Africa""" +2024-12-04,40966,724,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4556.17,"{\"": \""18%\""}",100757,1,"""Africa""" +2024-12-21,40967,3891,"[\""Headphones\"", \""Phone\""]",4499.73,{},153835,0,"""North America""" +2023-05-19,40968,7418,"[\""Charger\"", \""Tablet\""]",2853.0,"{\""loyalty\"": \""8%\""}",189895,0,"""North America""" +2024-07-25,40969,6923,"[\""Tablet\""]",2464.86,{},245281,1,"""South America""" +2024-01-07,40970,6335,"[\""Laptop\""]",1906.81,"{\""loyalty\"": \""23%\""}",74182,0,"""Asia""" +2024-09-24,40971,7390,"[\""Charger\"", \""Tablet\""]",398.05,"{\""seasonal\"": \""11%\""}",258863,0,"""South America""" +2023-11-27,40972,8757,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2936.73,"{\""seasonal\"": \""22%\""}",129071,1,"""South America""" +2024-10-23,40973,6361,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1339.28,{},224357,0,"""North America""" +2024-05-12,40974,1079,"[\""Keyboard\""]",2007.72,{},37919,0,"""South America""" +2023-03-19,40975,2055,"[\""Headphones\"", \""Wireless Mouse\""]",2087.03,{},71208,0,"""Europe""" +2024-03-07,40976,5389,"[\""Phone\"", \""Wireless Mouse\""]",3877.58,{},237530,1,"""Africa""" +2023-01-13,40977,5360,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",457.37,{},110643,0,"""Europe""" +2024-07-27,40978,600,"[\""Headphones\""]",4606.74,"{\""loyalty\"": \""23%\""}",81337,1,"""Asia""" +2024-02-05,40979,6628,"[\""Phone\"", \""Charger\""]",4135.83,"{\""promo\"": \""29%\""}",263533,0,"""North America""" +2023-09-11,40980,5242,"[\""Keyboard\"", \""Tablet\""]",2236.91,{},231455,0,"""Africa""" +2023-03-08,40981,1526,"[\""Laptop\"", \""Charger\""]",4343.59,{},265723,1,"""Europe""" +2023-07-05,40982,3822,"[\""Tablet\""]",3244.37,"{\""loyalty\"": \""18%\""}",8829,1,"""North America""" +2024-09-15,40983,1889,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1118.52,"{\""loyalty\"": \""9%\""}",127251,1,"""Europe""" +2024-06-09,40984,7178,"[\""Phone\"", \""Laptop\""]",4071.98,"{\""loyalty\"": \""13%\""}",286763,1,"""North America""" +2023-05-29,40985,1697,"[\""Monitor\"", \""Headphones\""]",2869.45,"{\"": \""6%\""}",131839,0,"""South America""" +2023-09-12,40986,7924,"[\""Keyboard\""]",3738.09,{},249094,0,"""Europe""" +2024-04-09,40987,6012,"[\""Tablet\"", \""Phone\""]",4681.47,{},182724,1,"""South America""" +2024-11-19,40988,1881,"[\""Charger\"", \""Laptop\""]",244.57,"{\""seasonal\"": \""13%\""}",61426,1,"""North America""" +2023-03-07,40989,5314,"[\""Laptop\"", \""Headphones\""]",2030.52,"{\"": \""9%\""}",99211,1,"""Europe""" +2023-10-13,40990,4400,"[\""Charger\"", \""Laptop\""]",4217.54,"{\""seasonal\"": \""14%\""}",30085,0,"""South America""" +2023-08-11,40991,7009,"[\""Headphones\"", \""Wireless Mouse\""]",2621.95,{},150147,1,"""North America""" +2023-09-19,40992,2252,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1555.76,{},221700,1,"""Asia""" +2023-01-26,40993,9814,"[\""Keyboard\"", \""Tablet\""]",4205.98,"{\""promo\"": \""12%\""}",29631,1,"""Africa""" +2024-08-11,40994,764,"[\""Monitor\""]",1306.56,"{\""seasonal\"": \""21%\""}",277923,1,"""South America""" +2024-11-30,40995,319,"[\""Wireless Mouse\""]",4066.63,"{\"": \""13%\""}",21357,1,"""Africa""" +2023-05-04,40996,3684,"[\""Laptop\"", \""Phone\""]",4601.05,{},168791,0,"""North America""" +2023-02-26,40997,2059,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1502.24,"{\""seasonal\"": \""7%\""}",136279,0,"""Europe""" +2024-07-14,40998,6986,"[\""Charger\""]",116.61,"{\""seasonal\"": \""7%\""}",34413,0,"""Europe""" +2023-09-06,40999,1647,"[\""Laptop\"", \""Wireless Mouse\""]",953.85,"{\"": \""20%\""}",151510,1,"""North America""" +2023-07-19,41000,7064,"[\""Laptop\"", \""Phone\""]",4759.28,{},295004,0,"""South America""" +2024-12-08,41001,6742,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2585.01,"{\""loyalty\"": \""6%\""}",87734,0,"""North America""" +2024-07-28,41002,5871,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",345.04,"{\""seasonal\"": \""13%\""}",97509,0,"""Asia""" +2024-12-13,41003,3416,"[\""Tablet\""]",826.35,{},61146,0,"""Africa""" +2023-11-12,41004,4921,"[\""Charger\""]",3888.29,{},164725,1,"""Europe""" +2023-12-02,41005,3591,"[\""Keyboard\""]",4637.35,{},56478,0,"""Europe""" +2023-02-18,41006,9361,"[\""Phone\""]",4192.77,"{\""promo\"": \""18%\""}",292579,0,"""Europe""" +2024-01-01,41007,8967,"[\""Wireless Mouse\""]",1409.16,"{\"": \""26%\""}",236002,0,"""Asia""" +2023-06-02,41008,4694,"[\""Charger\""]",2133.59,"{\"": \""5%\""}",33113,0,"""Europe""" +2024-10-22,41009,4230,"[\""Headphones\"", \""Laptop\""]",3908.81,"{\""loyalty\"": \""11%\""}",9015,1,"""South America""" +2023-10-05,41010,804,"[\""Keyboard\"", \""Monitor\""]",1571.18,"{\""promo\"": \""10%\""}",68541,0,"""Europe""" +2024-03-23,41011,5687,"[\""Phone\"", \""Tablet\""]",1090.38,"{\""seasonal\"": \""26%\""}",69102,1,"""Africa""" +2024-01-24,41012,5987,"[\""Keyboard\""]",4376.05,{},283902,1,"""North America""" +2024-09-02,41013,624,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1716.98,"{\"": \""11%\""}",216472,1,"""North America""" +2024-11-21,41014,4525,"[\""Headphones\""]",4885.98,"{\""seasonal\"": \""15%\""}",90830,0,"""Africa""" +2023-01-07,41015,2388,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",709.75,{},22612,0,"""Asia""" +2023-09-05,41016,1200,"[\""Phone\"", \""Tablet\""]",2631.09,{},166474,1,"""South America""" +2023-11-08,41017,9188,"[\""Phone\""]",1064.5,{},166267,0,"""South America""" +2024-05-23,41018,9249,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1437.25,{},163025,0,"""Europe""" +2024-05-07,41019,1032,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3367.28,"{\"": \""7%\""}",245302,1,"""Africa""" +2023-11-02,41020,5265,"[\""Wireless Mouse\"", \""Tablet\""]",4957.26,"{\""seasonal\"": \""16%\""}",178295,1,"""Africa""" +2023-08-19,41021,158,"[\""Charger\"", \""Tablet\""]",3412.56,{},265149,1,"""Europe""" +2024-10-18,41022,702,"[\""Laptop\"", \""Phone\""]",2248.46,"{\""loyalty\"": \""24%\""}",145521,1,"""Asia""" +2023-05-04,41023,7509,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3823.89,"{\""promo\"": \""21%\""}",147704,0,"""Asia""" +2023-12-30,41024,2105,"[\""Phone\"", \""Tablet\""]",771.89,{},222370,1,"""North America""" +2023-02-25,41025,6250,"[\""Charger\""]",1763.63,"{\""loyalty\"": \""25%\""}",3103,1,"""Europe""" +2024-04-29,41026,557,"[\""Monitor\"", \""Laptop\""]",296.2,{},185803,0,"""Africa""" +2023-01-04,41027,6134,"[\""Keyboard\"", \""Monitor\""]",2931.55,{},271495,0,"""Europe""" +2023-12-03,41028,5127,"[\""Keyboard\""]",4617.0,{},291615,1,"""South America""" +2024-07-10,41029,4163,"[\""Laptop\"", \""Phone\""]",3043.4,"{\""promo\"": \""24%\""}",107429,1,"""North America""" +2024-06-02,41030,9032,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",480.61,{},88427,1,"""Asia""" +2024-07-06,41031,688,"[\""Charger\"", \""Monitor\""]",4974.68,"{\""loyalty\"": \""24%\""}",5766,1,"""Europe""" +2023-10-18,41032,9631,"[\""Tablet\""]",486.15,"{\""loyalty\"": \""26%\""}",141061,1,"""South America""" +2023-08-20,41033,3287,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3507.49,{},37786,0,"""South America""" +2023-04-17,41034,5734,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3824.48,"{\""promo\"": \""12%\""}",122303,1,"""Europe""" +2024-10-01,41035,8802,"[\""Headphones\""]",4271.8,"{\""loyalty\"": \""23%\""}",157435,1,"""South America""" +2024-09-20,41036,7696,"[\""Tablet\""]",4013.34,{},140841,1,"""Asia""" +2024-05-29,41037,9039,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1640.14,{},87244,1,"""Europe""" +2024-02-03,41038,8690,"[\""Keyboard\"", \""Headphones\""]",825.37,{},19959,0,"""Europe""" +2023-07-24,41039,1262,"[\""Headphones\""]",2600.79,"{\""seasonal\"": \""25%\""}",115642,0,"""North America""" +2024-12-16,41040,1254,"[\""Monitor\"", \""Headphones\""]",2974.04,"{\""seasonal\"": \""7%\""}",116922,1,"""North America""" +2023-10-23,41041,3887,"[\""Tablet\"", \""Wireless Mouse\""]",3508.91,"{\""seasonal\"": \""12%\""}",241932,1,"""Africa""" +2024-07-27,41042,1755,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3176.67,"{\""seasonal\"": \""18%\""}",183216,0,"""Europe""" +2023-10-15,41043,3699,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1844.21,"{\""loyalty\"": \""13%\""}",128651,0,"""Asia""" +2023-12-23,41044,748,"[\""Monitor\"", \""Laptop\""]",328.37,{},89073,1,"""Asia""" +2023-02-03,41045,1034,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3698.24,"{\"": \""8%\""}",211245,1,"""Europe""" +2023-05-09,41046,8134,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4990.56,{},167896,0,"""Asia""" +2024-11-24,41047,2645,"[\""Keyboard\""]",1524.1,"{\"": \""15%\""}",120993,1,"""Africa""" +2023-01-20,41048,7065,"[\""Laptop\"", \""Monitor\""]",797.88,{},114359,0,"""North America""" +2024-08-15,41049,7875,"[\""Headphones\"", \""Phone\""]",3840.55,"{\""seasonal\"": \""9%\""}",238795,0,"""South America""" +2024-03-24,41050,6143,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3358.67,{},47236,0,"""South America""" +2024-10-02,41051,8226,"[\""Tablet\""]",1850.16,"{\""promo\"": \""13%\""}",223255,1,"""South America""" +2023-05-16,41052,6801,"[\""Charger\""]",2336.1,{},111153,1,"""North America""" +2024-10-16,41053,8445,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",927.61,{},29211,1,"""North America""" +2024-08-23,41054,9035,"[\""Laptop\""]",1965.02,"{\"": \""24%\""}",62275,0,"""North America""" +2024-11-24,41055,6518,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3225.1,"{\"": \""10%\""}",202429,0,"""Africa""" +2024-08-11,41056,8362,"[\""Phone\""]",288.33,{},228337,0,"""Asia""" +2023-08-23,41057,9104,"[\""Laptop\"", \""Wireless Mouse\""]",3643.51,{},112788,1,"""South America""" +2024-07-02,41058,5348,"[\""Charger\""]",578.33,"{\""seasonal\"": \""14%\""}",6184,0,"""Asia""" +2024-11-13,41059,824,"[\""Headphones\"", \""Monitor\""]",4495.81,{},286313,1,"""Asia""" +2024-05-27,41060,3171,"[\""Tablet\""]",2481.99,"{\""seasonal\"": \""11%\""}",164333,0,"""Europe""" +2024-02-13,41061,7124,"[\""Phone\""]",4026.25,{},209096,0,"""Europe""" +2024-02-06,41062,3495,"[\""Wireless Mouse\"", \""Charger\""]",4276.12,"{\""seasonal\"": \""23%\""}",34325,0,"""South America""" +2024-01-20,41063,2,"[\""Headphones\"", \""Wireless Mouse\""]",2585.88,{},20753,0,"""North America""" +2024-05-06,41064,2072,"[\""Tablet\"", \""Charger\""]",4850.59,{},112516,1,"""Europe""" +2024-04-19,41065,1384,"[\""Monitor\"", \""Keyboard\""]",2012.63,"{\"": \""19%\""}",204256,0,"""South America""" +2023-04-28,41066,7053,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2136.35,{},180338,1,"""Asia""" +2023-11-25,41067,1336,"[\""Tablet\""]",1214.34,"{\""loyalty\"": \""29%\""}",228309,0,"""North America""" +2024-08-16,41068,2113,"[\""Laptop\"", \""Monitor\""]",4324.87,"{\""loyalty\"": \""20%\""}",39761,1,"""North America""" +2023-08-05,41069,9769,"[\""Phone\""]",2059.74,{},67260,1,"""Africa""" +2024-02-20,41070,4926,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2654.87,{},268113,1,"""Africa""" +2024-06-24,41071,5001,"[\""Monitor\"", \""Wireless Mouse\""]",4923.12,{},141809,1,"""Europe""" +2023-11-24,41072,5917,"[\""Headphones\""]",3045.81,{},131213,0,"""Africa""" +2023-02-15,41073,8542,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1088.25,"{\"": \""25%\""}",257611,0,"""Africa""" +2024-09-19,41074,7497,"[\""Charger\""]",1029.43,{},138587,1,"""Europe""" +2024-07-23,41075,5928,"[\""Tablet\"", \""Monitor\""]",2830.48,"{\""seasonal\"": \""21%\""}",197130,1,"""South America""" +2023-06-13,41076,9478,"[\""Laptop\"", \""Headphones\""]",1208.33,"{\""seasonal\"": \""16%\""}",160195,1,"""Asia""" +2023-04-25,41077,2175,"[\""Tablet\""]",3389.14,{},157616,0,"""Asia""" +2023-04-06,41078,4199,"[\""Tablet\"", \""Monitor\""]",53.06,{},287692,0,"""Asia""" +2024-03-08,41079,4434,"[\""Laptop\""]",1395.79,{},150278,0,"""Europe""" +2024-08-07,41080,6699,"[\""Headphones\"", \""Keyboard\""]",4942.36,{},13878,1,"""South America""" +2023-07-10,41081,6617,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1566.88,{},168272,0,"""Europe""" +2024-10-18,41082,5737,"[\""Charger\"", \""Headphones\""]",4645.32,"{\""seasonal\"": \""16%\""}",13036,1,"""South America""" +2024-08-31,41083,6640,"[\""Charger\"", \""Laptop\""]",4271.16,{},193076,0,"""North America""" +2023-02-28,41084,6623,"[\""Phone\"", \""Wireless Mouse\""]",4128.96,{},270149,1,"""North America""" +2024-02-24,41085,5719,"[\""Tablet\""]",3720.94,"{\""promo\"": \""30%\""}",80074,1,"""Asia""" +2023-10-12,41086,1444,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4909.07,{},172714,1,"""Europe""" +2023-04-12,41087,8900,"[\""Headphones\""]",1121.24,"{\""loyalty\"": \""23%\""}",181092,1,"""South America""" +2023-07-14,41088,2641,"[\""Charger\""]",4946.33,"{\""promo\"": \""14%\""}",100609,1,"""North America""" +2024-12-25,41089,6807,"[\""Keyboard\""]",3430.78,{},128369,1,"""Europe""" +2023-12-26,41090,6933,"[\""Phone\""]",4854.51,"{\""loyalty\"": \""28%\""}",60325,0,"""Asia""" +2024-07-06,41091,7644,"[\""Charger\""]",1563.97,{},273769,0,"""North America""" +2024-02-28,41092,1028,"[\""Tablet\""]",1010.14,{},80951,1,"""North America""" +2024-08-03,41093,3661,"[\""Tablet\"", \""Monitor\""]",2605.56,{},131801,1,"""North America""" +2023-09-20,41094,2340,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4780.32,{},55885,0,"""North America""" +2023-09-03,41095,479,"[\""Wireless Mouse\"", \""Laptop\""]",1152.42,"{\""seasonal\"": \""19%\""}",56270,0,"""South America""" +2023-07-16,41096,4943,"[\""Wireless Mouse\""]",4632.81,"{\""promo\"": \""26%\""}",127887,0,"""Asia""" +2023-02-05,41097,4078,"[\""Keyboard\"", \""Wireless Mouse\""]",2230.37,"{\""loyalty\"": \""26%\""}",292437,1,"""South America""" +2024-11-24,41098,7890,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",905.82,{},204664,1,"""North America""" +2024-10-18,41099,9634,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3238.63,"{\""loyalty\"": \""6%\""}",229881,0,"""Asia""" +2023-03-14,41100,9166,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3880.09,{},10621,1,"""Europe""" +2024-02-21,41101,1133,"[\""Headphones\""]",4820.3,"{\""loyalty\"": \""11%\""}",127829,1,"""North America""" +2024-06-16,41102,1097,"[\""Charger\""]",67.64,"{\""promo\"": \""9%\""}",270882,0,"""Asia""" +2023-10-10,41103,2532,"[\""Keyboard\"", \""Charger\""]",3385.76,{},139268,1,"""Africa""" +2024-07-11,41104,9172,"[\""Charger\"", \""Wireless Mouse\""]",1132.82,"{\""promo\"": \""8%\""}",61636,1,"""Asia""" +2023-08-14,41105,6561,"[\""Tablet\""]",4697.73,"{\"": \""25%\""}",237278,0,"""North America""" +2024-01-08,41106,7007,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3742.67,{},138884,1,"""Africa""" +2023-02-07,41107,422,"[\""Charger\""]",3241.33,"{\""seasonal\"": \""6%\""}",199162,1,"""South America""" +2024-12-18,41108,6121,"[\""Headphones\"", \""Tablet\""]",2841.87,"{\"": \""11%\""}",155994,1,"""Africa""" +2023-01-21,41109,7130,"[\""Monitor\"", \""Charger\""]",4596.45,"{\""promo\"": \""19%\""}",259073,1,"""Europe""" +2024-06-26,41110,5592,"[\""Laptop\""]",3016.3,"{\""seasonal\"": \""23%\""}",223639,1,"""Europe""" +2023-11-05,41111,1125,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1039.59,{},114762,0,"""Asia""" +2024-07-31,41112,564,"[\""Headphones\""]",4521.36,{},53348,0,"""Europe""" +2023-12-15,41113,687,"[\""Tablet\"", \""Monitor\""]",4835.15,"{\""promo\"": \""6%\""}",100477,0,"""Europe""" +2023-01-04,41114,9931,"[\""Wireless Mouse\""]",2435.75,{},104140,0,"""Europe""" +2024-10-10,41115,586,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",599.89,"{\""loyalty\"": \""16%\""}",58587,1,"""Europe""" +2023-03-31,41116,3312,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4276.05,{},59847,1,"""North America""" +2024-08-12,41117,8836,"[\""Keyboard\""]",4093.26,{},169519,1,"""Asia""" +2023-10-08,41118,3449,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3935.33,"{\""promo\"": \""7%\""}",77367,0,"""North America""" +2023-01-19,41119,4990,"[\""Tablet\""]",4051.68,"{\""promo\"": \""12%\""}",128221,0,"""Asia""" +2023-01-27,41120,1757,"[\""Phone\"", \""Keyboard\""]",1606.64,{},172152,0,"""Africa""" +2023-12-06,41121,7666,"[\""Headphones\"", \""Phone\""]",4615.37,"{\""promo\"": \""8%\""}",144205,0,"""North America""" +2023-06-02,41122,6779,"[\""Laptop\"", \""Wireless Mouse\""]",2413.85,{},211072,1,"""Europe""" +2023-06-11,41123,6173,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4602.21,{},159884,0,"""Africa""" +2023-08-29,41124,6146,"[\""Keyboard\""]",4587.16,"{\"": \""6%\""}",148442,1,"""Europe""" +2023-09-04,41125,4379,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3470.61,"{\""seasonal\"": \""6%\""}",276452,1,"""South America""" +2023-01-02,41126,9899,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4718.89,{},90963,0,"""Asia""" +2024-03-28,41127,8916,"[\""Charger\"", \""Phone\""]",4610.86,"{\"": \""15%\""}",225252,0,"""Europe""" +2023-09-28,41128,5509,"[\""Headphones\""]",3711.22,{},132843,0,"""Asia""" +2023-01-17,41129,1447,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1522.95,"{\""loyalty\"": \""9%\""}",115306,1,"""North America""" +2024-03-13,41130,6877,"[\""Tablet\"", \""Keyboard\""]",1827.55,"{\""loyalty\"": \""25%\""}",256403,0,"""Europe""" +2023-02-09,41131,8815,"[\""Tablet\""]",2620.31,"{\"": \""12%\""}",40133,0,"""North America""" +2023-12-05,41132,4281,"[\""Laptop\"", \""Charger\""]",2317.2,{},116214,1,"""North America""" +2023-09-06,41133,13,"[\""Tablet\"", \""Keyboard\""]",3025.42,"{\"": \""18%\""}",153156,1,"""Asia""" +2024-02-03,41134,3294,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3258.99,{},214992,0,"""Africa""" +2023-12-23,41135,9618,"[\""Headphones\"", \""Laptop\""]",3677.61,"{\""loyalty\"": \""19%\""}",207303,0,"""Europe""" +2023-01-31,41136,8728,"[\""Laptop\""]",3278.58,"{\""promo\"": \""22%\""}",88700,0,"""Europe""" +2023-07-22,41137,7,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2236.87,{},191462,0,"""Africa""" +2024-01-07,41138,8788,"[\""Keyboard\"", \""Phone\""]",4408.28,"{\""promo\"": \""27%\""}",186200,1,"""Asia""" +2023-12-12,41139,2919,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3526.61,"{\"": \""22%\""}",75458,1,"""Asia""" +2024-06-11,41140,4408,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1469.95,{},140209,0,"""Africa""" +2024-05-20,41141,6099,"[\""Tablet\"", \""Monitor\""]",1944.55,{},144248,1,"""North America""" +2024-04-22,41142,1353,"[\""Headphones\""]",4175.23,"{\""loyalty\"": \""10%\""}",121790,1,"""Asia""" +2024-11-25,41143,4865,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3758.93,{},246411,0,"""Africa""" +2024-01-17,41144,6920,"[\""Monitor\""]",2164.99,{},27118,1,"""North America""" +2023-09-21,41145,8130,"[\""Monitor\"", \""Headphones\""]",2737.95,"{\""loyalty\"": \""8%\""}",75229,1,"""South America""" +2023-04-16,41146,8021,"[\""Charger\"", \""Wireless Mouse\""]",3720.48,"{\""loyalty\"": \""5%\""}",281016,1,"""South America""" +2024-11-05,41147,817,"[\""Monitor\""]",3941.79,{},297357,0,"""Europe""" +2024-08-09,41148,2,"[\""Wireless Mouse\"", \""Keyboard\""]",2572.8,"{\""seasonal\"": \""16%\""}",175508,0,"""Africa""" +2023-07-08,41149,8948,"[\""Monitor\""]",1617.43,"{\""seasonal\"": \""20%\""}",143179,0,"""North America""" +2023-10-12,41150,6959,"[\""Monitor\"", \""Tablet\""]",4117.06,"{\""loyalty\"": \""20%\""}",87401,1,"""South America""" +2023-07-18,41151,8539,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2309.83,"{\"": \""30%\""}",116344,1,"""Europe""" +2024-09-11,41152,51,"[\""Monitor\"", \""Laptop\""]",4123.17,"{\""seasonal\"": \""18%\""}",48714,1,"""Africa""" +2024-11-11,41153,429,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2628.96,{},50176,1,"""South America""" +2024-08-03,41154,4992,"[\""Wireless Mouse\""]",4137.22,{},283196,0,"""Asia""" +2024-01-09,41155,4388,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",879.27,{},35838,1,"""Asia""" +2024-08-17,41156,4468,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3672.79,"{\""promo\"": \""7%\""}",206138,0,"""Asia""" +2023-07-06,41157,694,"[\""Wireless Mouse\""]",2057.51,{},287674,0,"""South America""" +2024-11-19,41158,8955,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4555.92,{},20457,1,"""Europe""" +2023-03-11,41159,5290,"[\""Tablet\"", \""Laptop\""]",363.15,"{\""loyalty\"": \""17%\""}",184963,0,"""Asia""" +2024-04-14,41160,3545,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",851.7,"{\""promo\"": \""11%\""}",37116,1,"""South America""" +2023-06-01,41161,9922,"[\""Phone\""]",4643.8,"{\"": \""30%\""}",228884,0,"""North America""" +2023-12-06,41162,8188,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4267.01,"{\""seasonal\"": \""10%\""}",153377,1,"""Asia""" +2024-10-19,41163,8424,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3815.16,"{\""promo\"": \""8%\""}",165885,0,"""Asia""" +2024-11-04,41164,5993,"[\""Headphones\"", \""Monitor\""]",1581.91,"{\"": \""30%\""}",46757,0,"""Europe""" +2024-02-25,41165,1043,"[\""Wireless Mouse\"", \""Tablet\""]",2538.76,"{\""promo\"": \""15%\""}",72347,1,"""Asia""" +2023-06-23,41166,165,"[\""Wireless Mouse\""]",1421.97,"{\"": \""23%\""}",121075,1,"""North America""" +2024-08-12,41167,5666,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3063.64,"{\""promo\"": \""5%\""}",19441,0,"""Africa""" +2023-03-30,41168,3931,"[\""Charger\"", \""Phone\""]",3656.12,"{\""promo\"": \""19%\""}",172932,0,"""South America""" +2024-04-14,41169,1539,"[\""Tablet\""]",2233.3,"{\""loyalty\"": \""15%\""}",33925,0,"""Europe""" +2023-05-09,41170,3054,"[\""Wireless Mouse\"", \""Laptop\""]",2360.29,"{\"": \""20%\""}",122140,0,"""Africa""" +2023-03-04,41171,1289,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2499.78,{},96290,0,"""Asia""" +2024-02-05,41172,4110,"[\""Keyboard\""]",2961.95,{},94372,0,"""South America""" +2024-10-03,41173,1234,"[\""Tablet\"", \""Charger\""]",2135.43,"{\""loyalty\"": \""7%\""}",217759,0,"""Asia""" +2023-04-03,41174,6512,"[\""Tablet\"", \""Phone\""]",2708.89,"{\""promo\"": \""26%\""}",104666,1,"""Asia""" +2024-11-29,41175,6719,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4011.03,"{\""promo\"": \""7%\""}",117343,0,"""North America""" +2024-01-19,41176,5086,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1264.43,"{\"": \""25%\""}",122583,1,"""Europe""" +2024-08-09,41177,2868,"[\""Phone\""]",3371.78,"{\""promo\"": \""23%\""}",119197,0,"""South America""" +2024-06-19,41178,4906,"[\""Phone\"", \""Keyboard\""]",1939.03,"{\""seasonal\"": \""11%\""}",172685,0,"""Africa""" +2024-11-21,41179,9056,"[\""Tablet\"", \""Keyboard\""]",323.07,{},64509,0,"""South America""" +2024-10-30,41180,4172,"[\""Charger\"", \""Headphones\""]",3763.85,"{\""promo\"": \""13%\""}",152613,1,"""Africa""" +2023-10-30,41181,2860,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2476.66,{},202224,1,"""South America""" +2023-01-13,41182,2586,"[\""Laptop\"", \""Monitor\""]",4927.17,"{\""seasonal\"": \""14%\""}",90732,0,"""South America""" +2023-05-05,41183,9610,"[\""Tablet\"", \""Phone\"", \""Charger\""]",826.06,"{\""loyalty\"": \""14%\""}",158927,1,"""Africa""" +2023-07-15,41184,8048,"[\""Wireless Mouse\"", \""Headphones\""]",516.51,"{\""loyalty\"": \""13%\""}",61588,0,"""South America""" +2023-11-20,41185,9514,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1556.92,"{\"": \""25%\""}",129988,0,"""South America""" +2023-05-15,41186,7535,"[\""Keyboard\"", \""Wireless Mouse\""]",2997.25,{},230620,0,"""South America""" +2024-01-02,41187,9051,"[\""Keyboard\"", \""Headphones\""]",4645.8,{},133262,0,"""North America""" +2023-12-27,41188,6840,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4747.04,"{\"": \""19%\""}",75880,0,"""North America""" +2023-04-30,41189,7420,"[\""Charger\"", \""Laptop\""]",4084.69,"{\""seasonal\"": \""13%\""}",143452,1,"""Asia""" +2024-04-28,41190,2710,"[\""Monitor\""]",1431.83,"{\""loyalty\"": \""10%\""}",243802,0,"""South America""" +2024-03-30,41191,2858,"[\""Wireless Mouse\""]",155.03,{},159372,0,"""North America""" +2024-08-06,41192,6396,"[\""Monitor\""]",1128.2,{},29499,1,"""Africa""" +2024-02-26,41193,5964,"[\""Monitor\""]",796.11,{},260585,0,"""North America""" +2023-02-25,41194,8122,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3313.42,"{\""promo\"": \""10%\""}",222589,0,"""South America""" +2023-05-16,41195,2256,"[\""Laptop\"", \""Phone\""]",925.39,"{\""promo\"": \""23%\""}",44771,0,"""Africa""" +2024-11-20,41196,5163,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",487.4,"{\""seasonal\"": \""10%\""}",55720,0,"""Europe""" +2023-09-09,41197,8481,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2452.29,{},288204,0,"""North America""" +2023-09-30,41198,4283,"[\""Laptop\""]",2453.02,{},123191,0,"""South America""" +2024-10-22,41199,7392,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3924.31,"{\""loyalty\"": \""20%\""}",224304,0,"""Europe""" +2024-09-28,41200,1792,"[\""Monitor\""]",2808.98,"{\""seasonal\"": \""14%\""}",250937,0,"""Africa""" +2024-12-03,41201,4520,"[\""Headphones\""]",376.24,{},17512,1,"""Europe""" +2024-04-11,41202,2853,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1188.33,"{\""seasonal\"": \""30%\""}",255638,1,"""Europe""" +2024-09-27,41203,8943,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4227.97,"{\"": \""9%\""}",14613,1,"""South America""" +2023-05-23,41204,1833,"[\""Wireless Mouse\"", \""Laptop\""]",4969.16,"{\"": \""12%\""}",278567,1,"""Africa""" +2024-07-10,41205,7526,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4372.36,"{\""seasonal\"": \""13%\""}",182142,0,"""Asia""" +2024-05-19,41206,9329,"[\""Keyboard\"", \""Wireless Mouse\""]",1598.7,{},295637,1,"""Asia""" +2024-04-19,41207,1180,"[\""Laptop\"", \""Monitor\""]",3545.97,"{\""promo\"": \""28%\""}",123286,0,"""North America""" +2023-11-05,41208,2366,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3248.2,"{\"": \""29%\""}",36823,1,"""Asia""" +2024-12-17,41209,3174,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",508.19,{},242087,0,"""South America""" +2024-12-06,41210,8091,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",127.52,"{\""loyalty\"": \""7%\""}",213497,0,"""Africa""" +2024-09-05,41211,2993,"[\""Laptop\""]",3553.59,"{\""promo\"": \""20%\""}",17457,1,"""North America""" +2024-10-10,41212,2163,"[\""Tablet\"", \""Laptop\""]",3695.32,{},133567,0,"""North America""" +2023-10-14,41213,3865,"[\""Monitor\"", \""Wireless Mouse\""]",3620.68,{},224252,1,"""Asia""" +2024-01-11,41214,7056,"[\""Tablet\""]",3817.57,"{\"": \""24%\""}",259175,1,"""Asia""" +2024-08-23,41215,8500,"[\""Headphones\"", \""Tablet\""]",3029.55,"{\""seasonal\"": \""21%\""}",235701,1,"""Asia""" +2023-08-13,41216,422,"[\""Headphones\""]",167.09,"{\""promo\"": \""29%\""}",279280,0,"""North America""" +2024-12-21,41217,587,"[\""Wireless Mouse\"", \""Charger\""]",3028.59,"{\"": \""28%\""}",206734,1,"""South America""" +2024-05-29,41218,9544,"[\""Tablet\"", \""Phone\""]",1770.8,{},53646,0,"""Africa""" +2023-09-27,41219,3517,"[\""Wireless Mouse\"", \""Headphones\""]",3365.15,{},55485,0,"""South America""" +2023-04-29,41220,9405,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1066.78,{},34666,1,"""Africa""" +2024-04-29,41221,2708,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",412.13,"{\"": \""28%\""}",131190,1,"""Europe""" +2024-04-07,41222,1004,"[\""Phone\"", \""Tablet\""]",899.93,{},273762,0,"""South America""" +2023-03-29,41223,7414,"[\""Phone\""]",4978.7,{},54924,0,"""North America""" +2023-01-16,41224,8904,"[\""Tablet\""]",2092.02,"{\"": \""28%\""}",61871,1,"""Africa""" +2024-02-13,41225,3740,"[\""Phone\""]",1539.77,{},1287,1,"""North America""" +2024-07-25,41226,7958,"[\""Phone\""]",3480.45,{},143744,1,"""Africa""" +2024-12-21,41227,2780,"[\""Headphones\"", \""Charger\""]",2536.98,"{\""seasonal\"": \""21%\""}",228514,0,"""North America""" +2024-07-27,41228,2833,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1697.72,{},141745,1,"""South America""" +2023-08-04,41229,5171,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",682.93,{},241517,1,"""Africa""" +2024-07-01,41230,2267,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3389.58,{},242853,1,"""Europe""" +2024-12-15,41231,5268,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",430.24,{},166136,0,"""South America""" +2024-04-19,41232,1051,"[\""Charger\""]",2242.52,{},160853,1,"""South America""" +2024-09-22,41233,8223,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4211.73,{},43609,1,"""Europe""" +2023-11-19,41234,7937,"[\""Monitor\""]",1206.15,{},47023,1,"""South America""" +2024-06-02,41235,7036,"[\""Monitor\""]",4205.11,{},288939,0,"""Asia""" +2023-01-16,41236,605,"[\""Phone\""]",4018.3,"{\""loyalty\"": \""20%\""}",125069,1,"""Africa""" +2024-04-07,41237,6612,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2858.58,{},129047,0,"""Africa""" +2023-10-11,41238,9036,"[\""Phone\"", \""Keyboard\""]",2679.29,"{\""seasonal\"": \""29%\""}",109355,1,"""South America""" +2024-05-24,41239,9,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3423.74,"{\""loyalty\"": \""7%\""}",221690,0,"""Asia""" +2024-07-22,41240,5293,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2724.78,{},122561,1,"""Asia""" +2023-10-13,41241,1566,"[\""Tablet\""]",3082.42,"{\""loyalty\"": \""18%\""}",71145,0,"""South America""" +2023-07-06,41242,744,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3095.66,{},227354,0,"""Africa""" +2024-10-04,41243,8191,"[\""Charger\""]",3828.27,{},88050,1,"""Europe""" +2024-08-25,41244,3001,"[\""Charger\""]",451.72,"{\""seasonal\"": \""30%\""}",284633,1,"""Europe""" +2024-01-21,41245,9398,"[\""Tablet\""]",3293.06,"{\"": \""28%\""}",110282,1,"""North America""" +2023-09-07,41246,1553,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2959.36,"{\""loyalty\"": \""10%\""}",128567,0,"""Africa""" +2024-03-18,41247,696,"[\""Keyboard\""]",3393.36,"{\""loyalty\"": \""18%\""}",293793,0,"""North America""" +2023-08-07,41248,2023,"[\""Phone\"", \""Charger\""]",3779.83,"{\""loyalty\"": \""8%\""}",68641,1,"""North America""" +2024-11-18,41249,3022,"[\""Tablet\""]",4225.24,"{\""promo\"": \""26%\""}",25223,0,"""Europe""" +2024-03-30,41250,4908,"[\""Headphones\""]",4273.78,"{\""seasonal\"": \""30%\""}",183633,1,"""Europe""" +2024-08-27,41251,702,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",680.57,{},189487,1,"""Africa""" +2023-10-26,41252,539,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2172.48,{},41428,0,"""Africa""" +2024-02-16,41253,1013,"[\""Wireless Mouse\""]",1051.41,{},119846,1,"""Africa""" +2024-09-06,41254,9245,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1528.81,{},106216,1,"""North America""" +2023-09-13,41255,4348,"[\""Headphones\""]",3632.76,"{\""promo\"": \""22%\""}",273507,0,"""Europe""" +2024-01-02,41256,1493,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3204.33,{},289276,1,"""Europe""" +2024-09-17,41257,7011,"[\""Wireless Mouse\""]",119.92,"{\""loyalty\"": \""7%\""}",289269,0,"""South America""" +2023-04-21,41258,2334,"[\""Headphones\"", \""Laptop\""]",3040.17,{},149146,1,"""South America""" +2024-09-23,41259,4109,"[\""Monitor\""]",931.58,{},188841,0,"""North America""" +2023-06-08,41260,7227,"[\""Monitor\"", \""Phone\""]",2250.33,{},108199,1,"""Asia""" +2023-09-26,41261,4316,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",813.35,"{\"": \""19%\""}",173781,1,"""Africa""" +2024-04-12,41262,5546,"[\""Wireless Mouse\"", \""Keyboard\""]",4893.48,{},154692,0,"""North America""" +2023-06-16,41263,708,"[\""Headphones\""]",1077.45,{},166836,0,"""Europe""" +2023-09-03,41264,5090,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4788.16,"{\""seasonal\"": \""20%\""}",213917,0,"""North America""" +2024-04-06,41265,4291,"[\""Keyboard\""]",198.79,"{\""loyalty\"": \""27%\""}",211235,1,"""Africa""" +2023-01-27,41266,8284,"[\""Headphones\""]",3572.04,"{\"": \""22%\""}",260180,1,"""Africa""" +2024-08-01,41267,2093,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1449.25,{},70806,1,"""Africa""" +2023-04-08,41268,8577,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2606.03,{},95433,1,"""Africa""" +2024-08-01,41269,5393,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1163.56,"{\""promo\"": \""18%\""}",173906,1,"""Asia""" +2024-03-04,41270,8006,"[\""Charger\"", \""Phone\""]",4466.41,{},239817,1,"""Africa""" +2023-05-31,41271,2560,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3193.14,"{\""seasonal\"": \""29%\""}",190629,0,"""North America""" +2024-12-03,41272,4734,"[\""Headphones\""]",4799.73,{},16092,0,"""North America""" +2024-07-21,41273,4705,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2637.73,"{\""promo\"": \""17%\""}",13011,0,"""Asia""" +2024-07-27,41274,5380,"[\""Keyboard\""]",2316.87,"{\""loyalty\"": \""15%\""}",238714,1,"""Africa""" +2023-01-12,41275,4717,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",294.36,{},118642,1,"""Asia""" +2023-01-29,41276,2771,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1873.88,"{\""promo\"": \""24%\""}",276491,1,"""South America""" +2024-03-01,41277,8469,"[\""Keyboard\""]",4802.85,{},233220,1,"""North America""" +2024-03-04,41278,2424,"[\""Keyboard\""]",3802.34,{},73215,0,"""South America""" +2024-08-26,41279,2312,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2755.41,{},87356,1,"""Europe""" +2024-06-15,41280,470,"[\""Headphones\""]",1500.37,"{\"": \""8%\""}",202009,0,"""Africa""" +2024-10-23,41281,707,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3257.72,"{\""seasonal\"": \""9%\""}",204630,0,"""Asia""" +2024-10-28,41282,5768,"[\""Phone\"", \""Headphones\""]",452.86,"{\""loyalty\"": \""13%\""}",220837,0,"""North America""" +2023-10-24,41283,7996,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1438.16,"{\""promo\"": \""12%\""}",93144,1,"""Asia""" +2023-10-24,41284,3876,"[\""Headphones\""]",4982.17,"{\""promo\"": \""25%\""}",6570,1,"""Europe""" +2024-12-01,41285,9673,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",781.46,{},280543,1,"""Europe""" +2023-12-10,41286,6227,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3098.16,{},226107,1,"""Africa""" +2024-08-22,41287,8530,"[\""Tablet\"", \""Laptop\""]",1635.04,{},296381,0,"""South America""" +2023-11-07,41288,4061,"[\""Phone\""]",1469.99,{},136683,0,"""South America""" +2023-11-02,41289,9327,"[\""Tablet\"", \""Monitor\""]",3447.96,{},121252,0,"""North America""" +2023-12-05,41290,8450,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1285.86,{},94375,0,"""South America""" +2023-05-07,41291,8492,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3358.39,"{\"": \""25%\""}",27927,0,"""Asia""" +2024-03-30,41292,2187,"[\""Headphones\"", \""Keyboard\""]",737.26,"{\""promo\"": \""18%\""}",41754,1,"""South America""" +2023-08-21,41293,2882,"[\""Keyboard\"", \""Laptop\""]",4587.01,"{\""promo\"": \""15%\""}",118688,0,"""Asia""" +2024-04-08,41294,7520,"[\""Charger\""]",397.7,"{\"": \""9%\""}",204240,0,"""South America""" +2023-02-22,41295,7069,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",337.04,"{\""seasonal\"": \""24%\""}",78963,1,"""Asia""" +2024-08-05,41296,4109,"[\""Laptop\"", \""Charger\""]",3569.93,"{\""seasonal\"": \""30%\""}",149832,1,"""North America""" +2024-08-20,41297,4685,"[\""Charger\""]",294.11,{},99616,0,"""South America""" +2024-11-14,41298,8074,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",946.21,"{\""seasonal\"": \""26%\""}",222806,0,"""Europe""" +2023-12-27,41299,5593,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4483.67,{},130527,0,"""Asia""" +2023-10-08,41300,2692,"[\""Wireless Mouse\"", \""Headphones\""]",1861.33,"{\""loyalty\"": \""27%\""}",47545,1,"""Asia""" +2023-08-08,41301,7257,"[\""Headphones\""]",1540.74,"{\""loyalty\"": \""23%\""}",65096,1,"""Africa""" +2023-07-06,41302,5203,"[\""Headphones\""]",2525.79,"{\""seasonal\"": \""27%\""}",94873,0,"""Asia""" +2023-03-15,41303,3456,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",104.37,{},20694,0,"""Europe""" +2023-10-19,41304,8014,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3687.47,{},84140,0,"""Europe""" +2023-10-25,41305,3748,"[\""Headphones\""]",1865.48,{},149116,1,"""Africa""" +2023-06-07,41306,5071,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4333.21,"{\""loyalty\"": \""21%\""}",202554,1,"""Asia""" +2023-09-15,41307,8916,"[\""Monitor\"", \""Laptop\""]",1888.84,{},158408,1,"""Africa""" +2023-08-20,41308,4541,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2737.94,"{\""promo\"": \""7%\""}",147455,1,"""Europe""" +2024-11-10,41309,9356,"[\""Wireless Mouse\"", \""Laptop\""]",837.36,"{\""seasonal\"": \""17%\""}",35625,0,"""South America""" +2023-11-28,41310,5872,"[\""Headphones\"", \""Charger\""]",689.9,{},15459,0,"""Asia""" +2024-04-22,41311,6579,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2980.81,"{\"": \""6%\""}",12849,1,"""North America""" +2023-03-13,41312,3466,"[\""Laptop\"", \""Keyboard\""]",4350.43,{},250954,0,"""Africa""" +2024-05-16,41313,2428,"[\""Charger\"", \""Headphones\""]",559.35,{},225425,1,"""Asia""" +2023-11-19,41314,2955,"[\""Tablet\""]",1592.39,{},277134,0,"""Asia""" +2024-07-18,41315,7822,"[\""Tablet\"", \""Headphones\""]",4144.47,"{\"": \""6%\""}",82416,1,"""Asia""" +2024-07-07,41316,5523,"[\""Tablet\""]",2107.41,{},200877,0,"""Asia""" +2024-09-09,41317,3635,"[\""Keyboard\"", \""Phone\""]",149.48,"{\"": \""15%\""}",44101,1,"""North America""" +2024-08-12,41318,7301,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4044.33,{},234695,1,"""South America""" +2023-03-17,41319,1144,"[\""Monitor\"", \""Headphones\""]",129.7,"{\"": \""7%\""}",289162,1,"""Africa""" +2023-01-30,41320,1258,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",147.34,"{\"": \""28%\""}",221862,0,"""Africa""" +2024-01-11,41321,6044,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1201.49,"{\"": \""16%\""}",297853,1,"""Europe""" +2024-11-26,41322,9887,"[\""Charger\""]",474.23,"{\""promo\"": \""26%\""}",160523,1,"""Asia""" +2024-09-27,41323,3423,"[\""Laptop\""]",3815.33,{},116211,1,"""South America""" +2024-01-02,41324,4642,"[\""Headphones\""]",411.56,{},73925,0,"""Africa""" +2024-12-29,41325,7776,"[\""Laptop\"", \""Wireless Mouse\""]",1232.37,"{\""promo\"": \""16%\""}",29856,0,"""North America""" +2024-07-22,41326,1377,"[\""Charger\"", \""Phone\""]",3386.45,"{\""loyalty\"": \""20%\""}",140942,1,"""Asia""" +2023-05-03,41327,7669,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3035.73,"{\""seasonal\"": \""26%\""}",253339,1,"""Africa""" +2024-07-01,41328,3206,"[\""Wireless Mouse\"", \""Phone\""]",2460.63,{},220234,1,"""Africa""" +2024-10-23,41329,6003,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4388.11,{},187971,0,"""Europe""" +2024-07-26,41330,7986,"[\""Tablet\"", \""Phone\""]",768.63,{},5315,0,"""Asia""" +2023-02-23,41331,3999,"[\""Charger\""]",3498.03,{},269842,1,"""Africa""" +2023-02-15,41332,8314,"[\""Headphones\""]",1693.02,"{\""loyalty\"": \""16%\""}",13211,0,"""Asia""" +2024-05-28,41333,6356,"[\""Monitor\"", \""Wireless Mouse\""]",2773.33,{},102828,1,"""North America""" +2024-05-15,41334,3127,"[\""Charger\""]",909.47,{},248853,1,"""Europe""" +2023-07-28,41335,1357,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1117.89,{},18183,0,"""Asia""" +2023-09-21,41336,3080,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4840.31,"{\""loyalty\"": \""5%\""}",55609,1,"""North America""" +2024-08-10,41337,5717,"[\""Phone\"", \""Charger\""]",935.85,{},2374,0,"""Africa""" +2023-05-15,41338,5446,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",661.91,"{\""loyalty\"": \""17%\""}",158139,1,"""North America""" +2024-06-09,41339,180,"[\""Tablet\""]",113.44,"{\"": \""16%\""}",273655,0,"""South America""" +2023-03-18,41340,7283,"[\""Charger\"", \""Headphones\""]",326.66,"{\"": \""7%\""}",24167,1,"""Asia""" +2024-04-11,41341,5104,"[\""Laptop\"", \""Charger\""]",1095.12,"{\""loyalty\"": \""18%\""}",250628,1,"""North America""" +2024-09-19,41342,7314,"[\""Tablet\""]",3990.34,{},13715,1,"""South America""" +2023-07-07,41343,2080,"[\""Monitor\"", \""Charger\""]",4880.27,{},6829,1,"""South America""" +2024-10-10,41344,3315,"[\""Wireless Mouse\"", \""Keyboard\""]",4781.85,"{\"": \""5%\""}",30009,0,"""North America""" +2023-04-22,41345,9040,"[\""Headphones\"", \""Monitor\""]",3502.63,"{\"": \""29%\""}",209215,1,"""South America""" +2024-11-22,41346,8522,"[\""Headphones\"", \""Tablet\""]",93.32,{},226647,1,"""Africa""" +2023-11-03,41347,6126,"[\""Tablet\""]",1767.72,"{\""seasonal\"": \""15%\""}",23379,0,"""Africa""" +2024-01-24,41348,6200,"[\""Laptop\"", \""Tablet\""]",1245.33,"{\""loyalty\"": \""27%\""}",201132,1,"""South America""" +2023-12-14,41349,3124,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3352.28,{},177791,0,"""South America""" +2024-04-15,41350,5967,"[\""Phone\""]",2689.13,"{\""promo\"": \""17%\""}",149721,0,"""Asia""" +2024-12-02,41351,2933,"[\""Phone\"", \""Keyboard\""]",2030.12,"{\""loyalty\"": \""19%\""}",190360,0,"""Asia""" +2023-03-15,41352,7696,"[\""Wireless Mouse\"", \""Monitor\""]",2563.06,{},232601,0,"""Africa""" +2024-11-20,41353,8042,"[\""Headphones\"", \""Tablet\""]",957.65,"{\""loyalty\"": \""12%\""}",257800,1,"""Africa""" +2023-04-02,41354,1933,"[\""Monitor\"", \""Laptop\""]",2113.86,{},183639,1,"""North America""" +2023-07-20,41355,2513,"[\""Monitor\"", \""Charger\""]",4952.54,"{\"": \""13%\""}",172891,0,"""Europe""" +2024-05-28,41356,888,"[\""Headphones\"", \""Tablet\""]",3490.15,{},126767,0,"""Africa""" +2023-01-04,41357,5779,"[\""Keyboard\""]",4658.49,"{\""promo\"": \""5%\""}",166163,1,"""Africa""" +2024-05-30,41358,291,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2535.28,{},52192,1,"""Africa""" +2023-06-18,41359,6892,"[\""Monitor\""]",3599.23,"{\""loyalty\"": \""21%\""}",50433,0,"""Europe""" +2024-03-31,41360,9120,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1578.95,"{\""promo\"": \""7%\""}",63956,0,"""Europe""" +2023-01-10,41361,5188,"[\""Tablet\""]",3351.2,"{\""loyalty\"": \""13%\""}",131305,1,"""South America""" +2023-12-19,41362,3489,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",493.87,"{\"": \""29%\""}",263535,1,"""South America""" +2024-05-08,41363,8132,"[\""Monitor\""]",4900.75,{},129977,1,"""Asia""" +2023-06-24,41364,3618,"[\""Tablet\"", \""Headphones\""]",306.86,{},207271,1,"""North America""" +2023-08-18,41365,353,"[\""Laptop\"", \""Phone\""]",318.62,"{\"": \""11%\""}",153229,1,"""Europe""" +2023-05-26,41366,870,"[\""Headphones\"", \""Monitor\""]",4246.27,{},101408,1,"""Europe""" +2023-04-09,41367,7361,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",608.92,"{\"": \""29%\""}",5232,0,"""Africa""" +2024-07-13,41368,975,"[\""Keyboard\"", \""Tablet\""]",4442.27,{},257834,1,"""North America""" +2023-08-04,41369,1700,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2960.82,{},217917,0,"""Asia""" +2024-12-18,41370,9548,"[\""Phone\""]",4214.7,{},223527,0,"""Europe""" +2024-12-24,41371,4800,"[\""Headphones\""]",1098.56,{},165122,0,"""Africa""" +2024-10-19,41372,2779,"[\""Laptop\""]",4950.78,{},92175,0,"""Asia""" +2023-08-27,41373,8848,"[\""Headphones\""]",1572.48,{},219506,1,"""Asia""" +2024-10-11,41374,471,"[\""Charger\""]",741.34,{},255505,1,"""Africa""" +2023-12-04,41375,8582,"[\""Charger\""]",890.22,"{\"": \""8%\""}",60115,1,"""Africa""" +2024-08-10,41376,8805,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1678.62,{},248760,1,"""Asia""" +2024-05-26,41377,9103,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1625.52,"{\""loyalty\"": \""22%\""}",117966,1,"""Africa""" +2024-07-23,41378,3267,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4931.06,{},163909,0,"""Europe""" +2024-10-20,41379,2203,"[\""Keyboard\"", \""Charger\""]",2926.48,"{\"": \""5%\""}",15410,1,"""Europe""" +2024-06-10,41380,3437,"[\""Keyboard\""]",1837.12,{},21813,0,"""Asia""" +2024-07-20,41381,1910,"[\""Phone\"", \""Wireless Mouse\""]",2073.96,"{\""seasonal\"": \""30%\""}",80248,0,"""North America""" +2024-04-13,41382,8814,"[\""Keyboard\"", \""Monitor\""]",2190.0,"{\""loyalty\"": \""24%\""}",253134,1,"""Africa""" +2023-07-05,41383,6022,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",784.64,"{\""loyalty\"": \""11%\""}",143158,0,"""Europe""" +2024-01-18,41384,4999,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3100.14,"{\""seasonal\"": \""25%\""}",100477,1,"""North America""" +2024-06-09,41385,167,"[\""Keyboard\"", \""Monitor\""]",947.34,"{\"": \""27%\""}",106563,1,"""Asia""" +2023-06-29,41386,2597,"[\""Charger\""]",1449.72,{},238813,1,"""Asia""" +2024-03-30,41387,8969,"[\""Phone\""]",4183.77,{},281286,1,"""Europe""" +2023-05-15,41388,4650,"[\""Wireless Mouse\""]",4777.39,{},194220,0,"""North America""" +2024-05-14,41389,8427,"[\""Charger\""]",1450.78,"{\""loyalty\"": \""18%\""}",231053,1,"""Asia""" +2023-03-30,41390,7035,"[\""Monitor\""]",3591.27,"{\""promo\"": \""20%\""}",190761,1,"""North America""" +2023-09-02,41391,7329,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3197.37,{},57187,0,"""Africa""" +2023-03-18,41392,8043,"[\""Phone\"", \""Headphones\""]",1423.65,{},255394,0,"""Africa""" +2023-09-24,41393,5428,"[\""Monitor\"", \""Wireless Mouse\""]",3114.2,"{\"": \""22%\""}",217306,1,"""North America""" +2023-04-27,41394,3263,"[\""Monitor\"", \""Tablet\""]",4125.81,"{\""loyalty\"": \""18%\""}",58297,0,"""Africa""" +2023-01-26,41395,4377,"[\""Wireless Mouse\""]",1029.48,{},208416,1,"""Asia""" +2024-07-15,41396,5997,"[\""Laptop\""]",3241.58,"{\""loyalty\"": \""10%\""}",205024,0,"""North America""" +2024-09-22,41397,1190,"[\""Tablet\""]",3937.54,{},61312,0,"""North America""" +2024-10-28,41398,4494,"[\""Tablet\""]",2200.52,{},98363,0,"""North America""" +2024-06-25,41399,8495,"[\""Headphones\"", \""Wireless Mouse\""]",871.25,"{\""promo\"": \""7%\""}",27889,1,"""North America""" +2023-10-11,41400,921,"[\""Phone\""]",4193.7,"{\"": \""20%\""}",35042,1,"""North America""" +2023-12-23,41401,9775,"[\""Phone\"", \""Laptop\""]",734.58,{},264799,1,"""Africa""" +2024-01-22,41402,7655,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3259.44,"{\""seasonal\"": \""30%\""}",222026,0,"""Asia""" +2024-09-20,41403,9996,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",491.99,{},73644,1,"""South America""" +2023-01-13,41404,9386,"[\""Headphones\"", \""Phone\""]",1111.75,{},109399,0,"""Europe""" +2024-06-03,41405,9188,"[\""Wireless Mouse\"", \""Monitor\""]",2030.03,{},161956,1,"""North America""" +2024-05-15,41406,7695,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",70.87,"{\""seasonal\"": \""23%\""}",76322,1,"""North America""" +2023-01-17,41407,4892,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2200.86,"{\""promo\"": \""13%\""}",294654,1,"""Europe""" +2023-11-17,41408,7403,"[\""Phone\""]",1509.51,{},119616,1,"""South America""" +2024-12-21,41409,2775,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4703.58,"{\""seasonal\"": \""7%\""}",62251,0,"""South America""" +2024-12-05,41410,471,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",821.22,{},8522,0,"""Africa""" +2023-10-28,41411,5672,"[\""Wireless Mouse\"", \""Keyboard\""]",2457.97,{},40264,0,"""North America""" +2024-11-21,41412,3439,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",504.94,"{\""loyalty\"": \""15%\""}",190271,0,"""Europe""" +2024-02-13,41413,1211,"[\""Wireless Mouse\"", \""Phone\""]",523.66,{},122878,0,"""Europe""" +2024-02-12,41414,9567,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1277.63,"{\""promo\"": \""29%\""}",43990,0,"""North America""" +2024-07-05,41415,7000,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1781.09,"{\""promo\"": \""27%\""}",118775,0,"""Asia""" +2024-06-13,41416,8985,"[\""Wireless Mouse\""]",3387.72,"{\"": \""12%\""}",148342,0,"""South America""" +2024-09-11,41417,2457,"[\""Phone\""]",4200.18,"{\"": \""30%\""}",27353,0,"""South America""" +2023-05-13,41418,6814,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4187.95,{},47994,1,"""Africa""" +2024-07-01,41419,989,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3715.67,"{\""loyalty\"": \""5%\""}",173585,0,"""Africa""" +2024-01-27,41420,7897,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3736.55,"{\"": \""7%\""}",29728,0,"""Europe""" +2024-05-02,41421,9089,"[\""Charger\""]",224.21,"{\"": \""7%\""}",278937,0,"""Europe""" +2024-09-06,41422,4858,"[\""Headphones\""]",2296.62,{},117130,0,"""Asia""" +2023-10-05,41423,1827,"[\""Headphones\""]",3504.66,"{\""seasonal\"": \""28%\""}",195039,0,"""North America""" +2023-02-25,41424,7902,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2206.45,"{\""seasonal\"": \""20%\""}",74706,1,"""South America""" +2023-04-04,41425,8909,"[\""Keyboard\""]",2918.91,{},290372,1,"""Asia""" +2023-11-29,41426,5907,"[\""Tablet\"", \""Phone\""]",2042.21,{},111408,0,"""Europe""" +2024-03-10,41427,6120,"[\""Charger\"", \""Phone\""]",509.57,"{\""seasonal\"": \""16%\""}",242473,0,"""Africa""" +2024-02-25,41428,9963,"[\""Monitor\""]",4711.52,{},275277,0,"""North America""" +2024-04-09,41429,9779,"[\""Wireless Mouse\""]",141.57,{},180779,1,"""North America""" +2024-05-28,41430,7463,"[\""Phone\"", \""Headphones\""]",1969.7,{},134716,0,"""South America""" +2024-12-30,41431,1584,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",824.42,{},135172,0,"""South America""" +2023-05-04,41432,5024,"[\""Laptop\""]",527.8,"{\""loyalty\"": \""21%\""}",6869,0,"""Europe""" +2024-01-27,41433,1905,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",516.78,"{\""seasonal\"": \""28%\""}",229235,1,"""South America""" +2023-01-07,41434,5882,"[\""Tablet\"", \""Keyboard\""]",2550.06,{},273706,0,"""Asia""" +2024-12-12,41435,6204,"[\""Keyboard\"", \""Charger\""]",1039.44,{},290196,1,"""Asia""" +2024-05-30,41436,3099,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4822.67,{},12893,0,"""Europe""" +2023-08-22,41437,5174,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1427.79,"{\"": \""15%\""}",271951,0,"""Africa""" +2023-08-24,41438,4740,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1799.34,"{\""seasonal\"": \""15%\""}",39772,0,"""Africa""" +2023-05-10,41439,153,"[\""Keyboard\""]",195.92,"{\"": \""20%\""}",67934,0,"""Asia""" +2024-07-16,41440,8353,"[\""Monitor\""]",876.11,"{\""loyalty\"": \""6%\""}",187282,1,"""Europe""" +2024-07-15,41441,3621,"[\""Tablet\""]",4319.65,{},170652,0,"""North America""" +2024-10-02,41442,6481,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4009.77,{},289291,1,"""Africa""" +2023-07-21,41443,4550,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2597.06,{},205383,1,"""North America""" +2024-07-02,41444,7211,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1411.26,{},28679,0,"""North America""" +2024-10-03,41445,33,"[\""Headphones\"", \""Phone\""]",94.14,{},61401,1,"""North America""" +2024-03-16,41446,7213,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2553.42,"{\""loyalty\"": \""20%\""}",16281,1,"""North America""" +2023-02-24,41447,6236,"[\""Headphones\"", \""Wireless Mouse\""]",4634.31,{},74247,0,"""North America""" +2024-09-17,41448,3066,"[\""Keyboard\""]",3064.56,"{\"": \""21%\""}",25136,0,"""Africa""" +2024-07-03,41449,244,"[\""Keyboard\""]",3715.5,{},44015,1,"""Africa""" +2024-06-30,41450,517,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1388.29,{},32505,0,"""Africa""" +2023-12-24,41451,5540,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",462.54,"{\""promo\"": \""18%\""}",115553,0,"""Asia""" +2023-06-06,41452,4802,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1155.43,{},89287,0,"""Africa""" +2023-03-04,41453,3623,"[\""Charger\"", \""Monitor\""]",2235.97,"{\""loyalty\"": \""17%\""}",10116,0,"""South America""" +2023-06-23,41454,1633,"[\""Monitor\""]",2695.69,{},72745,1,"""Asia""" +2024-08-08,41455,2056,"[\""Charger\""]",1505.36,{},17405,0,"""Africa""" +2024-12-24,41456,109,"[\""Laptop\"", \""Monitor\""]",2920.29,{},288834,0,"""Asia""" +2023-07-08,41457,3101,"[\""Phone\"", \""Headphones\""]",520.68,{},111945,1,"""Europe""" +2023-12-08,41458,8117,"[\""Phone\"", \""Charger\""]",3309.67,"{\""loyalty\"": \""18%\""}",299748,0,"""South America""" +2023-09-19,41459,3531,"[\""Headphones\"", \""Phone\""]",2113.97,{},212860,0,"""Europe""" +2023-09-30,41460,1913,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1364.37,"{\""loyalty\"": \""29%\""}",222061,0,"""South America""" +2023-05-25,41461,7088,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4021.86,"{\"": \""21%\""}",209917,1,"""Europe""" +2023-06-16,41462,3341,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2359.63,"{\""seasonal\"": \""9%\""}",112188,1,"""Asia""" +2024-12-23,41463,1996,"[\""Charger\"", \""Keyboard\""]",241.02,{},51995,0,"""Africa""" +2023-02-22,41464,7282,"[\""Tablet\""]",3379.4,{},89323,1,"""Asia""" +2024-02-17,41465,2445,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3038.03,{},59914,0,"""South America""" +2023-03-21,41466,3523,"[\""Wireless Mouse\""]",3121.36,{},254359,0,"""Europe""" +2023-04-20,41467,9840,"[\""Tablet\""]",2471.02,"{\"": \""11%\""}",292528,0,"""South America""" +2024-10-02,41468,5882,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2866.41,{},54129,1,"""Asia""" +2024-11-16,41469,9085,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",882.44,{},144306,0,"""Europe""" +2023-08-13,41470,3282,"[\""Laptop\"", \""Tablet\""]",563.3,"{\""seasonal\"": \""16%\""}",45913,1,"""Asia""" +2023-10-03,41471,4359,"[\""Keyboard\"", \""Tablet\""]",1984.63,{},72269,0,"""Asia""" +2024-08-25,41472,7709,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",404.46,{},246544,0,"""Africa""" +2024-10-28,41473,2009,"[\""Monitor\"", \""Tablet\""]",586.99,{},256376,1,"""Africa""" +2023-01-06,41474,6540,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1025.56,"{\""promo\"": \""15%\""}",14706,1,"""Europe""" +2024-02-14,41475,3015,"[\""Keyboard\"", \""Headphones\""]",2576.4,"{\""loyalty\"": \""12%\""}",214042,0,"""South America""" +2024-12-12,41476,9514,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",585.57,"{\"": \""17%\""}",242067,1,"""South America""" +2023-05-02,41477,8254,"[\""Headphones\"", \""Wireless Mouse\""]",2548.66,{},94646,0,"""Asia""" +2024-10-25,41478,6340,"[\""Monitor\""]",4347.26,{},45500,1,"""Africa""" +2023-10-04,41479,8313,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2584.16,"{\""promo\"": \""26%\""}",160891,1,"""South America""" +2023-03-02,41480,9685,"[\""Tablet\""]",3745.31,{},257526,1,"""Asia""" +2024-09-02,41481,9897,"[\""Laptop\""]",536.63,{},97525,1,"""North America""" +2023-12-26,41482,3624,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3736.61,"{\""seasonal\"": \""25%\""}",12230,1,"""Africa""" +2024-09-14,41483,102,"[\""Wireless Mouse\""]",3997.89,{},245652,1,"""Europe""" +2024-06-24,41484,7630,"[\""Keyboard\""]",4321.18,"{\""loyalty\"": \""24%\""}",204724,1,"""Asia""" +2023-06-24,41485,303,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",775.92,"{\""loyalty\"": \""10%\""}",200166,0,"""South America""" +2024-03-25,41486,1081,"[\""Charger\"", \""Tablet\""]",2739.6,"{\"": \""21%\""}",86451,1,"""North America""" +2023-06-18,41487,3680,"[\""Phone\"", \""Keyboard\""]",2846.22,{},62883,1,"""Asia""" +2023-10-08,41488,9910,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",521.74,"{\"": \""9%\""}",78438,0,"""Africa""" +2023-02-15,41489,4511,"[\""Monitor\""]",2528.77,{},107941,1,"""Africa""" +2024-05-12,41490,7993,"[\""Laptop\"", \""Headphones\""]",1270.08,{},105170,1,"""South America""" +2023-09-19,41491,5924,"[\""Tablet\"", \""Laptop\""]",2535.61,"{\"": \""16%\""}",267340,0,"""Asia""" +2024-06-14,41492,7482,"[\""Tablet\""]",2757.05,{},286101,0,"""North America""" +2024-11-24,41493,6947,"[\""Keyboard\"", \""Wireless Mouse\""]",2256.83,"{\""promo\"": \""23%\""}",3033,1,"""South America""" +2024-09-11,41494,7880,"[\""Phone\"", \""Charger\""]",4577.03,{},179453,1,"""Africa""" +2024-07-23,41495,3385,"[\""Keyboard\""]",3726.95,"{\"": \""13%\""}",238745,0,"""Asia""" +2023-11-09,41496,2869,"[\""Charger\""]",3506.72,{},82974,1,"""South America""" +2023-12-25,41497,3168,"[\""Keyboard\"", \""Monitor\""]",3119.18,"{\""loyalty\"": \""11%\""}",127598,0,"""Europe""" +2024-02-10,41498,4825,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",318.79,"{\""loyalty\"": \""19%\""}",296582,0,"""South America""" +2024-06-28,41499,9214,"[\""Headphones\"", \""Monitor\""]",2555.71,{},299249,1,"""Asia""" +2024-06-08,41500,2612,"[\""Keyboard\""]",607.14,{},166038,0,"""Africa""" +2023-09-02,41501,361,"[\""Keyboard\""]",1243.36,{},57600,0,"""South America""" +2023-09-12,41502,4025,"[\""Wireless Mouse\""]",2711.3,"{\""seasonal\"": \""30%\""}",299661,1,"""Africa""" +2023-09-13,41503,4429,"[\""Headphones\"", \""Phone\"", \""Charger\""]",587.71,{},45896,1,"""South America""" +2023-10-26,41504,2409,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2956.95,{},289440,1,"""Asia""" +2023-12-07,41505,5881,"[\""Wireless Mouse\"", \""Monitor\""]",1693.66,{},117977,0,"""Europe""" +2024-03-04,41506,7295,"[\""Phone\"", \""Laptop\""]",4726.96,{},264069,0,"""North America""" +2023-04-05,41507,9853,"[\""Keyboard\""]",1040.19,{},160439,1,"""Asia""" +2024-11-24,41508,3427,"[\""Laptop\""]",3348.62,"{\"": \""25%\""}",97633,0,"""North America""" +2024-03-13,41509,8134,"[\""Phone\"", \""Wireless Mouse\""]",3156.16,{},277445,0,"""Europe""" +2024-09-20,41510,4847,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1823.36,"{\""promo\"": \""16%\""}",159112,0,"""Africa""" +2024-10-10,41511,9638,"[\""Charger\"", \""Headphones\""]",4560.35,{},89443,0,"""Asia""" +2023-01-17,41512,2921,"[\""Monitor\""]",3685.9,"{\"": \""23%\""}",144138,1,"""South America""" +2023-09-22,41513,72,"[\""Wireless Mouse\""]",3259.69,"{\""loyalty\"": \""5%\""}",144101,1,"""North America""" +2023-05-31,41514,9235,"[\""Phone\"", \""Monitor\""]",553.35,{},79871,0,"""Africa""" +2024-03-06,41515,6154,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4071.36,"{\""loyalty\"": \""13%\""}",268040,1,"""North America""" +2024-07-01,41516,4569,"[\""Tablet\"", \""Charger\""]",150.52,"{\"": \""30%\""}",169994,1,"""Europe""" +2023-11-07,41517,9534,"[\""Phone\"", \""Monitor\""]",4366.11,"{\""seasonal\"": \""21%\""}",274490,1,"""Africa""" +2023-09-30,41518,6982,"[\""Phone\""]",2410.11,"{\""loyalty\"": \""9%\""}",195505,0,"""Asia""" +2024-08-04,41519,6684,"[\""Monitor\"", \""Tablet\""]",1901.24,{},186051,0,"""North America""" +2023-07-15,41520,4180,"[\""Charger\""]",1105.72,{},206663,0,"""Asia""" +2024-07-14,41521,6605,"[\""Headphones\"", \""Monitor\""]",2585.73,{},35676,1,"""Asia""" +2024-03-28,41522,5617,"[\""Tablet\"", \""Headphones\""]",800.54,"{\"": \""20%\""}",291568,0,"""Africa""" +2023-10-13,41523,2995,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4063.46,"{\""promo\"": \""12%\""}",231500,1,"""Asia""" +2023-09-30,41524,2929,"[\""Phone\"", \""Wireless Mouse\""]",3767.26,"{\"": \""15%\""}",267572,1,"""Asia""" +2024-07-03,41525,4673,"[\""Tablet\"", \""Charger\""]",1432.83,{},90051,0,"""Asia""" +2023-09-06,41526,5095,"[\""Laptop\"", \""Phone\""]",1016.76,"{\""loyalty\"": \""11%\""}",273921,1,"""North America""" +2024-08-11,41527,946,"[\""Phone\"", \""Monitor\""]",921.43,"{\""loyalty\"": \""6%\""}",75376,1,"""Europe""" +2024-07-06,41528,5329,"[\""Phone\"", \""Charger\""]",4753.16,{},265507,1,"""South America""" +2024-11-04,41529,5486,"[\""Tablet\""]",4617.01,"{\""promo\"": \""24%\""}",232072,0,"""Africa""" +2023-06-27,41530,1649,"[\""Headphones\""]",3766.27,{},175697,0,"""North America""" +2023-06-30,41531,5391,"[\""Phone\"", \""Charger\""]",1621.35,"{\""promo\"": \""24%\""}",275182,1,"""South America""" +2023-01-13,41532,2627,"[\""Headphones\"", \""Wireless Mouse\""]",322.75,"{\"": \""30%\""}",265102,1,"""Asia""" +2023-06-17,41533,5245,"[\""Laptop\"", \""Charger\""]",285.44,"{\""promo\"": \""20%\""}",99171,1,"""North America""" +2023-09-05,41534,8445,"[\""Headphones\"", \""Tablet\""]",3039.84,"{\""loyalty\"": \""21%\""}",164481,0,"""North America""" +2023-10-07,41535,6068,"[\""Wireless Mouse\""]",1578.59,"{\""seasonal\"": \""15%\""}",272164,1,"""North America""" +2023-10-02,41536,3207,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1782.36,"{\""loyalty\"": \""22%\""}",171314,0,"""North America""" +2024-07-04,41537,5881,"[\""Keyboard\"", \""Wireless Mouse\""]",2263.2,"{\""loyalty\"": \""28%\""}",57254,0,"""Europe""" +2023-04-23,41538,8554,"[\""Charger\""]",4713.4,{},81133,0,"""North America""" +2023-04-14,41539,4077,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1660.92,"{\""promo\"": \""15%\""}",48736,1,"""Africa""" +2024-09-03,41540,4824,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1912.79,{},168690,1,"""Africa""" +2024-02-26,41541,8184,"[\""Wireless Mouse\""]",3425.57,"{\""loyalty\"": \""11%\""}",115404,0,"""Asia""" +2024-03-20,41542,3721,"[\""Keyboard\""]",2274.12,"{\"": \""18%\""}",238968,1,"""Africa""" +2024-05-17,41543,722,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1737.34,"{\"": \""10%\""}",40688,1,"""Asia""" +2024-07-29,41544,9783,"[\""Keyboard\"", \""Phone\""]",3282.45,{},71131,1,"""North America""" +2023-10-12,41545,4783,"[\""Charger\"", \""Monitor\""]",4353.52,"{\""loyalty\"": \""5%\""}",233993,0,"""South America""" +2024-02-12,41546,2715,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",101.27,{},255919,0,"""South America""" +2023-01-29,41547,8931,"[\""Monitor\""]",4854.94,"{\""seasonal\"": \""5%\""}",131257,1,"""North America""" +2024-10-27,41548,968,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4427.98,{},97492,0,"""Africa""" +2024-01-19,41549,737,"[\""Phone\"", \""Wireless Mouse\""]",3162.25,"{\""seasonal\"": \""30%\""}",118215,0,"""Europe""" +2024-04-14,41550,591,"[\""Keyboard\"", \""Laptop\""]",809.16,{},198488,1,"""Africa""" +2023-11-13,41551,5267,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",593.64,"{\""seasonal\"": \""14%\""}",130973,1,"""Asia""" +2024-05-19,41552,9441,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",767.42,{},214368,0,"""South America""" +2024-06-03,41553,7584,"[\""Tablet\""]",1095.53,{},49293,0,"""South America""" +2024-01-04,41554,7419,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1166.7,"{\""seasonal\"": \""11%\""}",250571,1,"""Africa""" +2023-01-30,41555,7598,"[\""Headphones\"", \""Wireless Mouse\""]",4828.06,{},33004,1,"""Asia""" +2023-02-02,41556,9657,"[\""Laptop\""]",4743.32,{},147674,0,"""Asia""" +2023-07-21,41557,6561,"[\""Laptop\""]",3524.68,{},105610,0,"""Asia""" +2023-07-03,41558,5024,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1256.34,"{\""seasonal\"": \""12%\""}",175218,1,"""Asia""" +2023-06-05,41559,5954,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3778.52,{},38182,1,"""Africa""" +2024-09-24,41560,554,"[\""Phone\"", \""Wireless Mouse\""]",1504.97,{},57519,0,"""Africa""" +2024-12-04,41561,7038,"[\""Headphones\"", \""Phone\""]",3170.77,"{\""promo\"": \""11%\""}",109723,1,"""North America""" +2023-11-06,41562,5306,"[\""Laptop\""]",154.81,"{\""loyalty\"": \""21%\""}",287810,0,"""South America""" +2023-05-08,41563,4315,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",253.34,{},235882,1,"""South America""" +2024-02-10,41564,1063,"[\""Keyboard\""]",1697.57,{},228080,0,"""South America""" +2024-12-28,41565,6529,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3386.01,"{\""loyalty\"": \""26%\""}",199893,1,"""Africa""" +2024-04-20,41566,1608,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1504.06,{},34935,1,"""South America""" +2024-09-10,41567,7232,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",199.18,{},100354,1,"""South America""" +2023-10-04,41568,8539,"[\""Tablet\"", \""Headphones\""]",4140.55,{},214662,0,"""Asia""" +2023-08-09,41569,7763,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3603.22,{},126707,0,"""Africa""" +2024-12-10,41570,210,"[\""Keyboard\"", \""Tablet\""]",1625.69,"{\""seasonal\"": \""18%\""}",241002,1,"""Europe""" +2024-04-22,41571,850,"[\""Headphones\""]",970.99,"{\"": \""27%\""}",57199,1,"""North America""" +2023-12-02,41572,4230,"[\""Phone\""]",3727.16,"{\""promo\"": \""14%\""}",70647,1,"""North America""" +2023-10-14,41573,9169,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3035.91,"{\""seasonal\"": \""7%\""}",16533,0,"""Africa""" +2023-01-14,41574,6867,"[\""Laptop\"", \""Keyboard\""]",3130.28,{},96275,0,"""Asia""" +2024-03-21,41575,6680,"[\""Phone\""]",4483.07,{},74328,0,"""Asia""" +2024-09-21,41576,3151,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1942.55,"{\""promo\"": \""13%\""}",287955,1,"""Asia""" +2024-02-08,41577,106,"[\""Tablet\"", \""Monitor\""]",3454.5,"{\""loyalty\"": \""20%\""}",25712,1,"""North America""" +2023-09-17,41578,5846,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3628.1,"{\""loyalty\"": \""26%\""}",131541,0,"""Africa""" +2024-10-14,41579,7412,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",628.93,{},297584,1,"""South America""" +2024-04-30,41580,8153,"[\""Keyboard\"", \""Tablet\""]",4023.47,{},98429,1,"""Africa""" +2023-04-01,41581,3798,"[\""Keyboard\"", \""Tablet\""]",3612.0,{},152738,0,"""Africa""" +2024-06-12,41582,5274,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3842.19,"{\""promo\"": \""29%\""}",57091,0,"""South America""" +2023-06-18,41583,429,"[\""Charger\""]",2566.26,"{\""loyalty\"": \""14%\""}",273310,0,"""Europe""" +2023-11-04,41584,1385,"[\""Phone\""]",581.28,{},48844,0,"""Africa""" +2024-08-06,41585,1781,"[\""Laptop\"", \""Wireless Mouse\""]",1553.93,{},209639,1,"""South America""" +2023-08-31,41586,4534,"[\""Tablet\"", \""Keyboard\""]",2896.91,"{\""promo\"": \""10%\""}",139745,1,"""North America""" +2023-09-17,41587,3303,"[\""Tablet\"", \""Laptop\""]",187.34,"{\""promo\"": \""15%\""}",137414,0,"""South America""" +2024-04-20,41588,8,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4830.62,"{\""loyalty\"": \""6%\""}",171359,0,"""Africa""" +2024-06-16,41589,5484,"[\""Charger\""]",368.55,"{\""loyalty\"": \""10%\""}",264385,0,"""Africa""" +2023-04-26,41590,7701,"[\""Headphones\""]",2337.94,"{\""seasonal\"": \""19%\""}",283365,0,"""South America""" +2024-12-01,41591,3103,"[\""Laptop\""]",4530.0,"{\""loyalty\"": \""24%\""}",44317,0,"""South America""" +2024-06-09,41592,7138,"[\""Headphones\"", \""Monitor\""]",3674.81,"{\""promo\"": \""11%\""}",217970,0,"""Europe""" +2024-02-03,41593,4467,"[\""Tablet\"", \""Phone\""]",4108.13,"{\""promo\"": \""10%\""}",232158,1,"""Africa""" +2023-09-03,41594,3582,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4598.46,{},139480,0,"""Europe""" +2023-05-28,41595,6092,"[\""Headphones\""]",4743.94,{},291844,1,"""North America""" +2023-06-19,41596,7638,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3008.95,"{\""seasonal\"": \""9%\""}",31381,0,"""South America""" +2024-12-04,41597,930,"[\""Monitor\""]",1526.97,"{\"": \""26%\""}",217244,0,"""Europe""" +2023-09-04,41598,5399,"[\""Keyboard\""]",3314.96,"{\""promo\"": \""25%\""}",40660,0,"""Europe""" +2023-05-09,41599,9433,"[\""Headphones\""]",2383.88,"{\"": \""17%\""}",145210,0,"""Asia""" +2023-08-01,41600,67,"[\""Wireless Mouse\"", \""Keyboard\""]",2480.99,"{\""loyalty\"": \""20%\""}",248851,0,"""Africa""" +2023-05-21,41601,4306,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",917.22,"{\"": \""6%\""}",29649,1,"""Europe""" +2023-06-29,41602,7349,"[\""Keyboard\""]",4132.73,"{\""seasonal\"": \""18%\""}",179437,1,"""Africa""" +2024-02-24,41603,4494,"[\""Phone\""]",3055.55,"{\""loyalty\"": \""18%\""}",231427,0,"""North America""" +2024-06-23,41604,506,"[\""Charger\""]",1788.03,"{\"": \""6%\""}",47928,0,"""Africa""" +2023-10-12,41605,985,"[\""Monitor\""]",3521.4,{},221602,1,"""South America""" +2023-12-28,41606,9788,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",846.4,"{\"": \""18%\""}",83875,1,"""Asia""" +2024-05-20,41607,6975,"[\""Monitor\"", \""Phone\""]",3124.38,"{\"": \""20%\""}",7897,1,"""North America""" +2023-05-06,41608,1606,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1539.77,{},249634,1,"""Africa""" +2024-08-12,41609,9079,"[\""Laptop\"", \""Wireless Mouse\""]",3328.53,"{\""promo\"": \""29%\""}",44344,1,"""South America""" +2023-11-28,41610,3392,"[\""Wireless Mouse\"", \""Headphones\""]",3890.88,{},255861,0,"""Europe""" +2023-02-20,41611,9062,"[\""Wireless Mouse\""]",1545.1,{},38843,1,"""North America""" +2024-07-15,41612,782,"[\""Phone\""]",2343.88,"{\"": \""14%\""}",9036,1,"""Asia""" +2023-03-17,41613,9328,"[\""Keyboard\"", \""Laptop\""]",4738.94,{},205836,0,"""Europe""" +2024-03-27,41614,4935,"[\""Phone\""]",948.18,{},259432,0,"""Asia""" +2023-09-13,41615,5968,"[\""Headphones\""]",649.67,{},86277,0,"""Asia""" +2024-09-28,41616,4142,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2861.74,"{\""seasonal\"": \""9%\""}",155193,0,"""Africa""" +2024-06-23,41617,842,"[\""Monitor\""]",1635.46,"{\"": \""17%\""}",179543,1,"""North America""" +2024-02-18,41618,6008,"[\""Charger\"", \""Phone\""]",3607.22,{},24486,0,"""Asia""" +2024-07-01,41619,5226,"[\""Headphones\""]",4696.61,"{\""seasonal\"": \""14%\""}",253278,1,"""North America""" +2023-12-26,41620,9221,"[\""Keyboard\""]",382.8,{},167265,0,"""North America""" +2024-06-11,41621,3388,"[\""Wireless Mouse\""]",2513.58,{},184781,1,"""South America""" +2023-01-16,41622,1493,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",816.24,{},263783,1,"""Europe""" +2024-02-02,41623,5253,"[\""Keyboard\"", \""Wireless Mouse\""]",4431.47,"{\""promo\"": \""11%\""}",36455,1,"""Africa""" +2023-01-20,41624,953,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",772.13,"{\""promo\"": \""23%\""}",219598,0,"""North America""" +2023-10-24,41625,1174,"[\""Headphones\"", \""Keyboard\""]",387.3,"{\"": \""28%\""}",227261,0,"""Europe""" +2023-06-22,41626,2771,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2296.44,"{\"": \""18%\""}",115283,0,"""Europe""" +2023-12-22,41627,9652,"[\""Headphones\""]",562.5,"{\""promo\"": \""22%\""}",192387,1,"""North America""" +2024-02-25,41628,578,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1777.45,{},230817,1,"""Africa""" +2023-06-27,41629,2422,"[\""Phone\"", \""Monitor\""]",3045.26,{},132838,0,"""South America""" +2024-04-16,41630,5871,"[\""Phone\""]",894.08,{},101134,1,"""Asia""" +2024-08-14,41631,1930,"[\""Keyboard\"", \""Monitor\""]",871.28,"{\""loyalty\"": \""28%\""}",243631,1,"""South America""" +2024-04-29,41632,3778,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3263.86,{},190907,0,"""Europe""" +2023-05-17,41633,7551,"[\""Wireless Mouse\"", \""Tablet\""]",3952.29,"{\""loyalty\"": \""23%\""}",13090,0,"""North America""" +2023-03-29,41634,5115,"[\""Monitor\"", \""Wireless Mouse\""]",607.89,"{\""seasonal\"": \""14%\""}",286420,1,"""Asia""" +2023-07-01,41635,6331,"[\""Headphones\""]",3771.63,"{\"": \""6%\""}",179395,1,"""North America""" +2023-02-10,41636,463,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3566.89,{},186093,1,"""Asia""" +2024-11-06,41637,8206,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",361.06,"{\""loyalty\"": \""18%\""}",216821,1,"""Europe""" +2023-03-05,41638,9102,"[\""Laptop\""]",3403.31,{},250106,0,"""Asia""" +2023-07-30,41639,3450,"[\""Charger\"", \""Keyboard\""]",4788.87,{},242358,0,"""South America""" +2023-08-09,41640,3837,"[\""Headphones\"", \""Charger\""]",2372.83,{},289257,0,"""Europe""" +2024-02-15,41641,1778,"[\""Laptop\""]",3010.95,"{\""seasonal\"": \""10%\""}",17478,1,"""Asia""" +2024-02-11,41642,7258,"[\""Laptop\""]",398.19,"{\""seasonal\"": \""29%\""}",211458,1,"""Europe""" +2024-03-08,41643,3987,"[\""Laptop\"", \""Headphones\""]",3010.4,{},26088,0,"""North America""" +2023-10-04,41644,6062,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1587.31,{},124633,0,"""Asia""" +2023-12-27,41645,326,"[\""Keyboard\"", \""Tablet\""]",3950.55,"{\"": \""15%\""}",77305,0,"""Asia""" +2023-03-08,41646,6106,"[\""Headphones\"", \""Monitor\""]",3238.7,{},53935,1,"""Africa""" +2024-05-21,41647,4927,"[\""Tablet\"", \""Monitor\""]",4122.1,{},85154,0,"""Africa""" +2023-09-07,41648,566,"[\""Laptop\"", \""Charger\""]",77.89,{},79810,1,"""North America""" +2023-06-20,41649,2672,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1449.02,"{\""promo\"": \""11%\""}",124768,0,"""Africa""" +2023-07-20,41650,5932,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2489.69,"{\"": \""21%\""}",86369,1,"""Asia""" +2023-02-01,41651,589,"[\""Keyboard\""]",1659.59,{},130833,1,"""South America""" +2024-11-23,41652,3794,"[\""Charger\"", \""Monitor\""]",1412.94,"{\""promo\"": \""13%\""}",292879,0,"""Africa""" +2024-03-30,41653,4187,"[\""Wireless Mouse\"", \""Monitor\""]",3973.19,{},241984,0,"""South America""" +2024-10-19,41654,9842,"[\""Phone\"", \""Laptop\""]",4698.72,{},78065,0,"""South America""" +2024-02-03,41655,2040,"[\""Headphones\"", \""Laptop\""]",1640.32,{},165703,1,"""Africa""" +2023-09-11,41656,3826,"[\""Headphones\""]",2771.44,"{\""promo\"": \""24%\""}",68486,0,"""Europe""" +2024-09-19,41657,3758,"[\""Tablet\"", \""Headphones\""]",2009.27,"{\"": \""16%\""}",151243,0,"""South America""" +2023-09-28,41658,6734,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2663.58,"{\""loyalty\"": \""7%\""}",147822,1,"""Europe""" +2023-03-07,41659,362,"[\""Monitor\""]",3165.95,{},105117,1,"""Asia""" +2024-01-06,41660,814,"[\""Tablet\"", \""Charger\""]",246.6,{},120288,1,"""Europe""" +2024-05-28,41661,2521,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2442.41,"{\"": \""28%\""}",3974,1,"""North America""" +2023-08-22,41662,3229,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1279.08,"{\"": \""14%\""}",83741,0,"""South America""" +2024-02-05,41663,503,"[\""Phone\"", \""Wireless Mouse\""]",4425.9,"{\"": \""28%\""}",134650,0,"""Asia""" +2024-06-24,41664,994,"[\""Charger\"", \""Phone\""]",4724.56,"{\""loyalty\"": \""8%\""}",61151,1,"""South America""" +2023-05-23,41665,2489,"[\""Monitor\""]",1493.03,{},42266,1,"""South America""" +2024-08-06,41666,2355,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2265.93,{},156553,0,"""North America""" +2024-09-04,41667,4846,"[\""Headphones\"", \""Keyboard\""]",4257.84,"{\""loyalty\"": \""28%\""}",130472,0,"""Europe""" +2024-12-17,41668,4328,"[\""Tablet\""]",1501.25,"{\""promo\"": \""14%\""}",166652,0,"""Asia""" +2024-07-19,41669,818,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1753.65,"{\"": \""28%\""}",245974,1,"""South America""" +2024-06-09,41670,6642,"[\""Laptop\""]",1267.56,{},252169,1,"""Europe""" +2023-10-22,41671,715,"[\""Charger\""]",4111.24,{},35484,1,"""North America""" +2023-05-24,41672,4916,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1906.28,"{\""loyalty\"": \""23%\""}",194076,1,"""Asia""" +2023-11-01,41673,8824,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",418.16,{},256332,1,"""Europe""" +2023-07-23,41674,478,"[\""Monitor\"", \""Laptop\""]",2291.82,{},198577,1,"""Africa""" +2023-12-19,41675,3578,"[\""Laptop\""]",895.18,"{\""promo\"": \""30%\""}",281698,1,"""Asia""" +2024-03-13,41676,6343,"[\""Tablet\""]",3722.23,"{\""promo\"": \""27%\""}",102940,1,"""North America""" +2023-03-30,41677,1472,"[\""Charger\""]",1278.38,{},217198,1,"""Africa""" +2024-05-13,41678,8207,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",410.99,"{\""promo\"": \""29%\""}",66474,0,"""South America""" +2024-07-07,41679,8547,"[\""Monitor\""]",2247.48,{},179657,0,"""Europe""" +2024-06-15,41680,6160,"[\""Wireless Mouse\"", \""Keyboard\""]",1268.85,{},91530,1,"""Europe""" +2023-09-06,41681,6397,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1813.87,"{\""loyalty\"": \""6%\""}",170957,0,"""Asia""" +2023-10-30,41682,1083,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",715.78,"{\""seasonal\"": \""8%\""}",161523,0,"""South America""" +2024-02-01,41683,8117,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3871.48,"{\""seasonal\"": \""25%\""}",271363,0,"""North America""" +2024-11-07,41684,3214,"[\""Monitor\""]",2707.58,"{\""promo\"": \""23%\""}",172594,0,"""South America""" +2023-05-24,41685,8740,"[\""Monitor\""]",1831.88,"{\""promo\"": \""28%\""}",114861,1,"""North America""" +2023-04-18,41686,6678,"[\""Phone\"", \""Tablet\""]",3159.43,{},261392,1,"""Africa""" +2023-11-05,41687,401,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2355.95,{},4307,0,"""North America""" +2023-06-12,41688,2004,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1364.04,{},196244,1,"""Asia""" +2023-12-01,41689,3670,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2683.91,{},246408,1,"""North America""" +2024-03-11,41690,4603,"[\""Phone\"", \""Charger\""]",4309.89,{},74075,1,"""North America""" +2023-05-31,41691,6358,"[\""Wireless Mouse\""]",980.52,{},28618,1,"""Asia""" +2024-09-06,41692,501,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4778.15,"{\""promo\"": \""26%\""}",99540,1,"""South America""" +2023-02-03,41693,5589,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1716.78,{},48050,0,"""North America""" +2024-08-09,41694,1828,"[\""Wireless Mouse\"", \""Charger\""]",4166.39,{},208478,0,"""North America""" +2024-05-30,41695,4797,"[\""Charger\""]",2796.34,"{\""loyalty\"": \""8%\""}",203521,1,"""Africa""" +2024-12-23,41696,8558,"[\""Keyboard\""]",1160.74,{},55208,1,"""Europe""" +2024-10-07,41697,1470,"[\""Charger\""]",2844.82,{},107409,0,"""Africa""" +2024-06-22,41698,3170,"[\""Wireless Mouse\""]",1660.53,"{\""loyalty\"": \""5%\""}",39430,1,"""Africa""" +2023-04-06,41699,3455,"[\""Laptop\"", \""Wireless Mouse\""]",2250.63,{},136156,0,"""North America""" +2024-03-13,41700,3165,"[\""Keyboard\"", \""Phone\""]",3847.96,"{\"": \""29%\""}",201642,0,"""Asia""" +2024-11-30,41701,6815,"[\""Phone\"", \""Laptop\""]",2534.4,{},238429,1,"""Africa""" +2024-07-16,41702,1628,"[\""Laptop\""]",1884.5,{},211707,0,"""Asia""" +2024-06-21,41703,5915,"[\""Keyboard\"", \""Wireless Mouse\""]",3820.1,"{\""loyalty\"": \""19%\""}",263070,0,"""South America""" +2024-04-09,41704,9900,"[\""Charger\""]",2399.07,"{\"": \""14%\""}",168828,1,"""Africa""" +2023-09-18,41705,5081,"[\""Monitor\"", \""Tablet\""]",1022.53,{},32382,0,"""Europe""" +2024-12-19,41706,7920,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",254.99,{},231906,1,"""South America""" +2023-07-09,41707,3734,"[\""Laptop\""]",858.57,{},270892,1,"""South America""" +2023-06-11,41708,8402,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4249.08,"{\""seasonal\"": \""9%\""}",84065,0,"""Asia""" +2024-12-25,41709,8677,"[\""Wireless Mouse\""]",619.65,{},254037,1,"""North America""" +2023-12-27,41710,4752,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4209.59,"{\""seasonal\"": \""20%\""}",178594,1,"""Asia""" +2023-07-27,41711,7029,"[\""Laptop\"", \""Monitor\""]",3347.18,"{\""loyalty\"": \""13%\""}",271397,1,"""Asia""" +2024-02-25,41712,2519,"[\""Laptop\""]",3580.92,"{\""seasonal\"": \""27%\""}",225040,1,"""Asia""" +2023-01-12,41713,9488,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2428.16,{},209241,1,"""Africa""" +2024-11-16,41714,1887,"[\""Headphones\""]",4922.94,"{\""seasonal\"": \""21%\""}",265932,1,"""Asia""" +2023-10-26,41715,1740,"[\""Laptop\""]",4183.38,{},227953,1,"""Africa""" +2024-11-05,41716,2418,"[\""Headphones\""]",2008.64,{},251721,1,"""South America""" +2023-03-09,41717,6864,"[\""Keyboard\"", \""Charger\""]",1165.34,{},101991,0,"""South America""" +2023-05-22,41718,9371,"[\""Monitor\"", \""Tablet\""]",4551.66,"{\""promo\"": \""8%\""}",36646,0,"""Asia""" +2023-03-27,41719,1515,"[\""Wireless Mouse\"", \""Tablet\""]",4580.3,{},108699,1,"""South America""" +2023-10-01,41720,8852,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2934.79,{},157463,1,"""Africa""" +2023-12-02,41721,7679,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",377.45,"{\"": \""20%\""}",42515,0,"""Africa""" +2024-02-07,41722,923,"[\""Phone\""]",2226.65,"{\""loyalty\"": \""8%\""}",26044,0,"""Europe""" +2023-03-27,41723,1671,"[\""Phone\"", \""Keyboard\""]",1627.06,"{\""seasonal\"": \""26%\""}",291196,1,"""Europe""" +2023-01-01,41724,586,"[\""Tablet\""]",2838.34,"{\""seasonal\"": \""13%\""}",225235,0,"""Europe""" +2024-03-13,41725,6624,"[\""Charger\""]",4968.74,{},215595,1,"""South America""" +2024-03-16,41726,2657,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4683.91,"{\""seasonal\"": \""17%\""}",163234,1,"""South America""" +2024-11-20,41727,2585,"[\""Keyboard\"", \""Charger\""]",1092.32,{},292792,1,"""South America""" +2024-03-10,41728,4685,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2804.97,"{\""loyalty\"": \""19%\""}",118353,0,"""North America""" +2023-02-16,41729,6335,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3503.66,"{\"": \""27%\""}",119415,0,"""South America""" +2024-09-16,41730,3937,"[\""Charger\""]",4633.72,"{\""promo\"": \""15%\""}",55206,1,"""South America""" +2023-08-18,41731,9246,"[\""Charger\"", \""Phone\""]",3351.98,{},157370,0,"""North America""" +2024-04-06,41732,3513,"[\""Tablet\""]",743.73,"{\""promo\"": \""29%\""}",89451,1,"""Asia""" +2023-02-20,41733,7826,"[\""Charger\"", \""Phone\""]",470.28,"{\""seasonal\"": \""10%\""}",101854,1,"""North America""" +2023-02-24,41734,6575,"[\""Headphones\""]",1528.42,{},131929,0,"""South America""" +2024-06-12,41735,3018,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",315.41,{},35926,1,"""Europe""" +2023-08-07,41736,3560,"[\""Wireless Mouse\""]",3395.67,{},255476,0,"""South America""" +2024-04-18,41737,5654,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",939.97,"{\"": \""30%\""}",87805,1,"""South America""" +2023-07-22,41738,8492,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1470.58,{},219332,1,"""North America""" +2023-03-09,41739,6927,"[\""Tablet\"", \""Charger\""]",2300.6,{},288144,0,"""South America""" +2023-09-03,41740,3189,"[\""Laptop\""]",1079.93,{},163562,1,"""South America""" +2024-07-22,41741,8268,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",398.16,{},214344,0,"""Africa""" +2023-12-15,41742,6735,"[\""Monitor\""]",612.49,{},148818,1,"""Asia""" +2024-03-06,41743,4241,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",990.51,{},50572,0,"""North America""" +2024-10-11,41744,3880,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1436.14,"{\"": \""12%\""}",61242,1,"""Asia""" +2024-06-26,41745,267,"[\""Keyboard\"", \""Laptop\""]",1111.81,"{\""loyalty\"": \""18%\""}",113839,1,"""North America""" +2024-04-23,41746,255,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2707.06,{},285396,1,"""North America""" +2024-03-23,41747,502,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1903.54,{},195792,1,"""Asia""" +2024-11-12,41748,763,"[\""Wireless Mouse\"", \""Headphones\""]",1408.58,"{\""seasonal\"": \""27%\""}",122640,1,"""Europe""" +2023-11-27,41749,8204,"[\""Laptop\""]",3170.83,{},108694,1,"""Europe""" +2024-11-18,41750,8227,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1660.83,{},201918,1,"""North America""" +2024-01-16,41751,9952,"[\""Wireless Mouse\""]",4056.39,"{\""seasonal\"": \""27%\""}",109963,0,"""Asia""" +2024-05-19,41752,3209,"[\""Charger\"", \""Monitor\""]",842.99,{},144326,1,"""Europe""" +2023-01-16,41753,5343,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2431.14,"{\""seasonal\"": \""28%\""}",183736,1,"""South America""" +2024-02-17,41754,6190,"[\""Laptop\""]",1372.78,{},46365,0,"""North America""" +2023-12-08,41755,9841,"[\""Charger\""]",3351.17,"{\"": \""17%\""}",69860,0,"""South America""" +2024-02-10,41756,7927,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",192.87,"{\""seasonal\"": \""24%\""}",216567,0,"""Africa""" +2023-06-17,41757,4973,"[\""Tablet\"", \""Wireless Mouse\""]",3240.13,"{\""loyalty\"": \""18%\""}",36974,1,"""Europe""" +2024-01-10,41758,4482,"[\""Charger\""]",213.61,"{\"": \""25%\""}",182466,1,"""North America""" +2023-04-23,41759,1201,"[\""Wireless Mouse\""]",3743.59,"{\""loyalty\"": \""25%\""}",36648,1,"""Europe""" +2024-03-02,41760,5988,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3588.3,{},255673,0,"""Asia""" +2023-08-13,41761,1254,"[\""Keyboard\""]",4232.98,{},111048,0,"""South America""" +2024-09-14,41762,7403,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4624.0,{},101786,0,"""North America""" +2024-11-06,41763,5188,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3401.93,{},287880,1,"""Africa""" +2023-07-12,41764,3733,"[\""Keyboard\"", \""Tablet\""]",1665.04,"{\""promo\"": \""13%\""}",60082,1,"""North America""" +2023-01-15,41765,9114,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4253.51,{},35960,1,"""North America""" +2023-09-05,41766,6072,"[\""Monitor\""]",3828.31,"{\""loyalty\"": \""9%\""}",80354,0,"""North America""" +2023-09-06,41767,682,"[\""Headphones\"", \""Wireless Mouse\""]",1318.59,{},28951,1,"""South America""" +2024-06-16,41768,4370,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1773.54,"{\"": \""12%\""}",158956,0,"""Europe""" +2023-11-09,41769,6081,"[\""Monitor\"", \""Keyboard\""]",82.08,"{\""promo\"": \""21%\""}",38554,0,"""Asia""" +2024-03-08,41770,9687,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4562.65,{},1262,0,"""North America""" +2024-04-20,41771,6909,"[\""Monitor\""]",4305.18,{},34153,0,"""Europe""" +2024-10-10,41772,9394,"[\""Phone\"", \""Tablet\""]",2483.17,{},240230,1,"""Africa""" +2023-07-12,41773,8971,"[\""Charger\""]",1221.58,"{\""promo\"": \""26%\""}",235688,0,"""Africa""" +2024-10-21,41774,174,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2229.68,"{\"": \""29%\""}",175662,0,"""North America""" +2024-10-21,41775,1929,"[\""Laptop\""]",3809.85,"{\""loyalty\"": \""12%\""}",182342,1,"""North America""" +2023-10-09,41776,6769,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2033.46,{},182192,1,"""South America""" +2023-09-14,41777,7484,"[\""Wireless Mouse\""]",4590.92,{},262098,0,"""Africa""" +2024-03-29,41778,2826,"[\""Laptop\""]",3952.29,"{\""promo\"": \""18%\""}",35102,1,"""Europe""" +2024-02-29,41779,8517,"[\""Keyboard\""]",4617.82,{},248755,0,"""North America""" +2024-03-23,41780,4874,"[\""Monitor\"", \""Laptop\""]",3474.02,{},184295,0,"""Europe""" +2024-11-26,41781,2166,"[\""Wireless Mouse\""]",1213.45,{},195125,0,"""Africa""" +2024-06-27,41782,3496,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",441.07,"{\""loyalty\"": \""16%\""}",45550,0,"""South America""" +2024-08-15,41783,3438,"[\""Phone\""]",4313.52,"{\"": \""15%\""}",111014,1,"""Europe""" +2024-02-25,41784,3796,"[\""Laptop\"", \""Charger\""]",2742.64,{},209994,1,"""Africa""" +2023-05-26,41785,8787,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4807.86,"{\""promo\"": \""6%\""}",17509,1,"""South America""" +2024-05-27,41786,4895,"[\""Laptop\"", \""Charger\""]",4407.5,{},160942,0,"""Asia""" +2023-11-30,41787,5899,"[\""Tablet\""]",3544.79,{},240372,0,"""Europe""" +2024-09-17,41788,7858,"[\""Laptop\""]",4271.19,{},277698,0,"""Asia""" +2023-08-23,41789,6583,"[\""Wireless Mouse\""]",3131.77,"{\""promo\"": \""30%\""}",165461,1,"""South America""" +2024-06-18,41790,6633,"[\""Laptop\"", \""Phone\""]",3486.5,{},248201,1,"""South America""" +2023-08-21,41791,9978,"[\""Laptop\""]",416.45,{},255761,1,"""Africa""" +2024-05-12,41792,1387,"[\""Wireless Mouse\""]",1020.09,{},121710,0,"""South America""" +2024-07-21,41793,3151,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1391.66,"{\""loyalty\"": \""14%\""}",235245,1,"""Europe""" +2023-10-24,41794,6813,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2576.72,{},223817,0,"""North America""" +2023-02-04,41795,5546,"[\""Headphones\"", \""Keyboard\""]",3992.94,"{\""promo\"": \""17%\""}",81775,1,"""South America""" +2023-12-09,41796,9592,"[\""Headphones\"", \""Charger\""]",1875.33,"{\""promo\"": \""15%\""}",247309,1,"""North America""" +2023-11-03,41797,5916,"[\""Phone\""]",745.4,{},266319,0,"""North America""" +2024-12-12,41798,2581,"[\""Wireless Mouse\"", \""Phone\""]",2517.68,"{\""seasonal\"": \""30%\""}",205941,0,"""South America""" +2023-09-22,41799,5493,"[\""Wireless Mouse\"", \""Tablet\""]",1346.53,{},225833,0,"""South America""" +2023-09-03,41800,8196,"[\""Charger\"", \""Laptop\""]",1555.51,{},109287,0,"""Asia""" +2024-08-27,41801,8373,"[\""Laptop\"", \""Headphones\""]",2612.7,"{\"": \""23%\""}",257416,0,"""Europe""" +2024-12-16,41802,5067,"[\""Phone\"", \""Charger\""]",777.65,{},115037,0,"""North America""" +2024-07-21,41803,4773,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2795.63,"{\""seasonal\"": \""6%\""}",261408,1,"""South America""" +2023-11-20,41804,9231,"[\""Tablet\""]",1695.58,"{\""loyalty\"": \""12%\""}",204292,0,"""Europe""" +2023-12-11,41805,6728,"[\""Tablet\"", \""Monitor\""]",1363.11,"{\""promo\"": \""30%\""}",207374,1,"""North America""" +2023-06-12,41806,806,"[\""Charger\""]",3303.35,{},124275,0,"""Europe""" +2023-04-12,41807,6062,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4438.48,{},108865,1,"""Africa""" +2023-05-12,41808,1687,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3853.33,"{\""promo\"": \""25%\""}",262250,1,"""Europe""" +2023-02-21,41809,1470,"[\""Charger\""]",3627.55,{},259895,0,"""South America""" +2023-12-18,41810,5612,"[\""Headphones\""]",1697.76,{},107502,0,"""Asia""" +2024-01-17,41811,876,"[\""Laptop\""]",1626.11,"{\"": \""18%\""}",157209,1,"""Asia""" +2023-05-28,41812,9403,"[\""Keyboard\""]",943.46,"{\""seasonal\"": \""29%\""}",130745,0,"""Asia""" +2023-07-27,41813,8787,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4523.11,"{\""promo\"": \""14%\""}",2463,1,"""Asia""" +2023-01-12,41814,918,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1228.04,{},79905,1,"""Europe""" +2024-07-02,41815,6315,"[\""Tablet\""]",2054.43,{},217242,1,"""North America""" +2023-06-17,41816,2496,"[\""Wireless Mouse\"", \""Monitor\""]",3618.3,{},195220,0,"""Asia""" +2023-10-05,41817,6385,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",459.37,{},186417,1,"""North America""" +2024-06-24,41818,5539,"[\""Laptop\""]",2791.55,{},90307,0,"""Asia""" +2023-12-26,41819,2918,"[\""Laptop\"", \""Monitor\""]",2841.03,{},69293,1,"""South America""" +2023-05-17,41820,9807,"[\""Keyboard\"", \""Headphones\""]",2289.15,{},106951,0,"""North America""" +2023-06-01,41821,9132,"[\""Wireless Mouse\""]",4009.3,"{\""promo\"": \""17%\""}",289212,0,"""Africa""" +2024-04-23,41822,3968,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2350.7,{},207319,1,"""Asia""" +2023-08-03,41823,5318,"[\""Keyboard\""]",4949.83,"{\""promo\"": \""27%\""}",46937,0,"""North America""" +2023-04-17,41824,6371,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",481.2,{},191641,0,"""Asia""" +2024-10-29,41825,8135,"[\""Keyboard\""]",3878.33,{},248511,1,"""Asia""" +2023-10-09,41826,9859,"[\""Wireless Mouse\""]",551.96,"{\""seasonal\"": \""21%\""}",74222,1,"""South America""" +2024-01-22,41827,2227,"[\""Headphones\"", \""Laptop\""]",4897.5,{},198825,1,"""Asia""" +2023-05-18,41828,3452,"[\""Monitor\"", \""Keyboard\""]",2384.38,"{\""seasonal\"": \""19%\""}",172996,1,"""Asia""" +2024-07-22,41829,5648,"[\""Charger\""]",702.98,{},291438,0,"""South America""" +2024-10-23,41830,6107,"[\""Monitor\"", \""Headphones\""]",2012.87,{},151672,0,"""South America""" +2023-07-21,41831,6975,"[\""Charger\""]",4085.63,{},28611,1,"""Europe""" +2023-12-30,41832,7522,"[\""Keyboard\""]",1710.18,"{\""promo\"": \""20%\""}",204225,1,"""South America""" +2024-10-27,41833,1702,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4455.05,"{\""promo\"": \""19%\""}",267802,1,"""Africa""" +2024-02-03,41834,8323,"[\""Tablet\"", \""Phone\""]",221.41,{},168664,1,"""North America""" +2023-10-12,41835,8932,"[\""Wireless Mouse\"", \""Tablet\""]",1526.99,{},284380,1,"""Europe""" +2023-04-10,41836,6964,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2155.16,{},178893,1,"""North America""" +2023-03-19,41837,8848,"[\""Laptop\"", \""Tablet\""]",933.77,{},234982,0,"""Africa""" +2023-01-03,41838,9774,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2475.41,"{\""promo\"": \""20%\""}",197980,0,"""Asia""" +2024-01-08,41839,6117,"[\""Phone\""]",76.27,{},197948,0,"""Europe""" +2023-04-27,41840,4573,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3390.71,{},212504,1,"""South America""" +2023-12-16,41841,4702,"[\""Laptop\"", \""Monitor\""]",4551.93,{},146639,1,"""Africa""" +2023-07-16,41842,2488,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3409.38,{},90600,0,"""North America""" +2024-08-26,41843,3836,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2086.45,"{\"": \""20%\""}",57792,1,"""Africa""" +2023-08-29,41844,7351,"[\""Monitor\""]",3596.05,{},230563,1,"""Africa""" +2024-08-31,41845,6700,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",402.75,"{\""promo\"": \""24%\""}",123339,1,"""Asia""" +2024-02-03,41846,9498,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4172.71,{},177803,0,"""Asia""" +2024-04-11,41847,8446,"[\""Headphones\"", \""Tablet\""]",1854.98,{},77409,0,"""Europe""" +2024-08-01,41848,6282,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",840.94,{},13289,1,"""Africa""" +2023-07-06,41849,7857,"[\""Keyboard\"", \""Phone\""]",747.43,{},103155,0,"""Europe""" +2024-07-25,41850,1485,"[\""Charger\""]",2701.49,"{\""promo\"": \""5%\""}",153211,0,"""Asia""" +2024-08-10,41851,4873,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3824.94,{},297586,0,"""Africa""" +2024-09-10,41852,950,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1008.81,"{\""loyalty\"": \""18%\""}",28925,0,"""South America""" +2023-04-23,41853,1912,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4812.06,"{\"": \""28%\""}",89786,1,"""Africa""" +2024-11-06,41854,9989,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1714.46,"{\"": \""20%\""}",221059,1,"""Europe""" +2024-12-03,41855,3160,"[\""Phone\"", \""Wireless Mouse\""]",3143.18,"{\""loyalty\"": \""11%\""}",143639,1,"""South America""" +2023-06-06,41856,3872,"[\""Charger\"", \""Keyboard\""]",3144.73,"{\""loyalty\"": \""8%\""}",108259,1,"""Africa""" +2024-01-04,41857,126,"[\""Wireless Mouse\"", \""Phone\""]",863.29,"{\""loyalty\"": \""7%\""}",224995,1,"""Asia""" +2023-05-24,41858,3341,"[\""Monitor\"", \""Tablet\""]",1548.44,"{\""seasonal\"": \""10%\""}",175089,0,"""Africa""" +2023-02-27,41859,4982,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4165.35,"{\"": \""29%\""}",138689,0,"""South America""" +2024-04-17,41860,6147,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4800.49,"{\""loyalty\"": \""10%\""}",77547,0,"""Asia""" +2024-07-06,41861,9355,"[\""Monitor\""]",2178.97,{},14062,0,"""South America""" +2024-04-05,41862,9489,"[\""Monitor\""]",977.41,"{\""seasonal\"": \""17%\""}",146722,1,"""Africa""" +2023-05-27,41863,2699,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",172.08,"{\""loyalty\"": \""12%\""}",226366,1,"""Africa""" +2023-12-22,41864,8993,"[\""Charger\""]",2178.46,"{\""loyalty\"": \""15%\""}",151718,1,"""Asia""" +2023-09-04,41865,1098,"[\""Charger\"", \""Laptop\""]",448.52,"{\""seasonal\"": \""20%\""}",33599,1,"""Asia""" +2024-04-03,41866,5907,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1281.3,"{\"": \""20%\""}",287660,0,"""South America""" +2024-04-14,41867,534,"[\""Phone\"", \""Charger\""]",737.82,"{\"": \""13%\""}",1038,0,"""Africa""" +2024-10-12,41868,2718,"[\""Wireless Mouse\""]",1711.36,"{\""loyalty\"": \""10%\""}",16423,0,"""Asia""" +2024-02-23,41869,3961,"[\""Charger\"", \""Monitor\""]",2320.64,"{\""promo\"": \""22%\""}",203251,1,"""South America""" +2024-11-08,41870,6713,"[\""Charger\""]",2009.51,{},177842,0,"""South America""" +2024-07-09,41871,4223,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1015.28,{},104374,1,"""Asia""" +2024-11-15,41872,7904,"[\""Monitor\"", \""Headphones\""]",3698.31,{},76793,0,"""Europe""" +2024-08-29,41873,6992,"[\""Tablet\""]",2546.01,"{\"": \""6%\""}",116289,0,"""Asia""" +2023-09-06,41874,9809,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1365.35,"{\""loyalty\"": \""20%\""}",83721,0,"""Asia""" +2024-08-05,41875,9434,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4904.41,{},128119,1,"""Asia""" +2024-06-27,41876,207,"[\""Tablet\"", \""Charger\""]",159.34,"{\"": \""20%\""}",256918,1,"""North America""" +2023-06-29,41877,4001,"[\""Tablet\""]",3711.11,"{\""loyalty\"": \""12%\""}",5786,1,"""Asia""" +2023-07-16,41878,3870,"[\""Tablet\""]",945.64,{},185260,1,"""Asia""" +2023-10-17,41879,5449,"[\""Laptop\"", \""Headphones\""]",249.59,{},269211,1,"""Africa""" +2024-12-05,41880,2025,"[\""Tablet\""]",403.11,{},237088,0,"""South America""" +2024-05-24,41881,516,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1477.32,{},247064,1,"""North America""" +2023-06-03,41882,3957,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4790.62,{},4808,0,"""Europe""" +2024-02-23,41883,4561,"[\""Keyboard\"", \""Wireless Mouse\""]",67.92,{},50005,0,"""Asia""" +2024-08-05,41884,3498,"[\""Monitor\"", \""Keyboard\""]",696.3,{},49665,1,"""Africa""" +2023-10-24,41885,74,"[\""Wireless Mouse\""]",843.32,{},246123,0,"""South America""" +2023-08-16,41886,820,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3877.88,"{\""loyalty\"": \""9%\""}",198358,0,"""South America""" +2023-10-04,41887,5672,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2612.94,"{\""loyalty\"": \""15%\""}",182048,0,"""Europe""" +2024-02-06,41888,9516,"[\""Keyboard\""]",2307.74,{},75576,0,"""Africa""" +2024-06-30,41889,3915,"[\""Wireless Mouse\"", \""Laptop\""]",2716.48,"{\""loyalty\"": \""23%\""}",290450,1,"""South America""" +2024-10-17,41890,6704,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4569.96,{},298437,1,"""North America""" +2024-04-17,41891,3844,"[\""Charger\"", \""Wireless Mouse\""]",3585.51,{},141772,0,"""South America""" +2023-06-29,41892,5125,"[\""Charger\""]",488.42,{},187955,0,"""Asia""" +2023-03-08,41893,606,"[\""Monitor\"", \""Headphones\""]",2593.44,{},43424,0,"""North America""" +2023-04-18,41894,5288,"[\""Keyboard\"", \""Laptop\""]",4051.52,"{\"": \""14%\""}",138694,0,"""South America""" +2024-07-28,41895,2861,"[\""Charger\""]",3523.75,{},129642,0,"""Africa""" +2024-01-06,41896,1643,"[\""Tablet\"", \""Phone\""]",1738.67,{},51600,0,"""Europe""" +2024-05-08,41897,2656,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4844.15,"{\""loyalty\"": \""7%\""}",109999,0,"""Asia""" +2023-10-09,41898,1436,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3956.44,"{\"": \""11%\""}",7520,0,"""Africa""" +2023-05-12,41899,6088,"[\""Phone\""]",3158.72,"{\""seasonal\"": \""6%\""}",285982,1,"""North America""" +2023-10-18,41900,4812,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4684.92,"{\""loyalty\"": \""20%\""}",85208,1,"""North America""" +2023-02-25,41901,6950,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3930.76,{},22258,0,"""Europe""" +2023-06-07,41902,859,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3728.03,{},134447,1,"""South America""" +2023-09-20,41903,160,"[\""Keyboard\"", \""Phone\""]",4014.02,{},65598,0,"""Asia""" +2023-04-15,41904,7207,"[\""Charger\"", \""Keyboard\""]",2413.16,{},210270,0,"""Europe""" +2023-08-20,41905,1168,"[\""Tablet\"", \""Phone\""]",4908.89,"{\""seasonal\"": \""9%\""}",81835,0,"""Africa""" +2023-01-09,41906,1629,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2811.22,"{\""loyalty\"": \""16%\""}",1248,0,"""North America""" +2024-06-15,41907,687,"[\""Tablet\""]",4314.0,{},176483,1,"""Asia""" +2024-07-16,41908,5034,"[\""Laptop\"", \""Phone\""]",2575.09,"{\""promo\"": \""29%\""}",273038,0,"""Asia""" +2024-01-10,41909,9465,"[\""Wireless Mouse\"", \""Tablet\""]",4806.45,"{\""loyalty\"": \""23%\""}",36652,1,"""South America""" +2023-06-30,41910,8614,"[\""Tablet\"", \""Headphones\""]",4914.09,"{\""promo\"": \""16%\""}",47101,1,"""South America""" +2023-02-23,41911,1122,"[\""Charger\""]",2008.73,"{\""seasonal\"": \""22%\""}",272458,0,"""Asia""" +2023-06-11,41912,1383,"[\""Charger\"", \""Laptop\""]",1261.77,"{\""seasonal\"": \""8%\""}",181304,1,"""North America""" +2024-12-10,41913,2243,"[\""Phone\"", \""Laptop\"", \""Charger\""]",323.65,"{\"": \""20%\""}",23394,1,"""Europe""" +2023-03-15,41914,7872,"[\""Laptop\"", \""Tablet\""]",3332.13,{},230190,1,"""Africa""" +2023-12-12,41915,2750,"[\""Charger\""]",4633.23,"{\"": \""23%\""}",31361,1,"""Africa""" +2024-07-30,41916,1146,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",63.75,"{\""promo\"": \""15%\""}",253857,1,"""North America""" +2024-06-11,41917,104,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3025.11,"{\""seasonal\"": \""15%\""}",191340,0,"""Europe""" +2023-06-24,41918,5672,"[\""Phone\"", \""Charger\""]",831.52,"{\""loyalty\"": \""11%\""}",208803,1,"""Africa""" +2024-08-12,41919,1910,"[\""Tablet\""]",3800.17,"{\""seasonal\"": \""9%\""}",222613,1,"""Africa""" +2024-06-14,41920,9374,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1348.42,"{\""seasonal\"": \""26%\""}",21939,1,"""North America""" +2023-09-12,41921,6636,"[\""Wireless Mouse\"", \""Monitor\""]",1940.41,{},258729,1,"""Africa""" +2023-02-23,41922,2920,"[\""Keyboard\"", \""Charger\""]",310.75,"{\""seasonal\"": \""7%\""}",164019,0,"""Africa""" +2024-03-04,41923,5122,"[\""Charger\"", \""Keyboard\""]",4293.52,"{\""seasonal\"": \""14%\""}",294610,0,"""Europe""" +2023-03-05,41924,2102,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1844.34,{},51112,0,"""North America""" +2024-02-08,41925,5160,"[\""Tablet\""]",2805.44,"{\""promo\"": \""30%\""}",126056,1,"""South America""" +2023-09-22,41926,7070,"[\""Laptop\""]",2556.77,{},87682,0,"""Asia""" +2023-08-22,41927,2259,"[\""Wireless Mouse\""]",1149.04,{},222973,1,"""North America""" +2024-06-28,41928,1799,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",59.74,"{\""loyalty\"": \""30%\""}",214640,0,"""Europe""" +2023-02-14,41929,4885,"[\""Phone\""]",3958.8,"{\""loyalty\"": \""10%\""}",95214,1,"""Africa""" +2024-10-04,41930,7964,"[\""Laptop\""]",537.29,{},230712,1,"""Europe""" +2024-07-01,41931,6352,"[\""Phone\"", \""Tablet\""]",4855.82,{},86794,1,"""North America""" +2024-09-24,41932,564,"[\""Laptop\""]",1170.72,"{\""seasonal\"": \""30%\""}",218061,0,"""South America""" +2024-11-09,41933,4891,"[\""Wireless Mouse\"", \""Laptop\""]",1753.07,"{\""loyalty\"": \""27%\""}",170272,0,"""South America""" +2023-04-03,41934,4281,"[\""Keyboard\"", \""Wireless Mouse\""]",3209.42,"{\"": \""21%\""}",8648,0,"""North America""" +2024-01-27,41935,1346,"[\""Monitor\""]",1487.75,"{\"": \""29%\""}",296194,1,"""Asia""" +2024-10-18,41936,8347,"[\""Wireless Mouse\"", \""Phone\""]",828.21,"{\""promo\"": \""19%\""}",55058,1,"""South America""" +2023-09-20,41937,9997,"[\""Monitor\"", \""Charger\""]",2952.99,{},218009,1,"""North America""" +2024-04-10,41938,3926,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",165.41,"{\""promo\"": \""18%\""}",128866,0,"""Africa""" +2023-12-10,41939,2344,"[\""Phone\""]",748.88,{},111836,0,"""Europe""" +2024-01-28,41940,6794,"[\""Monitor\"", \""Keyboard\""]",4554.42,{},44164,1,"""Africa""" +2024-12-11,41941,9748,"[\""Charger\""]",3038.84,"{\""seasonal\"": \""9%\""}",150594,0,"""Europe""" +2023-12-17,41942,2982,"[\""Keyboard\""]",700.11,"{\""promo\"": \""23%\""}",229594,1,"""Europe""" +2023-04-02,41943,1064,"[\""Headphones\"", \""Monitor\""]",410.04,"{\""promo\"": \""26%\""}",161760,1,"""Asia""" +2023-03-14,41944,6685,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3809.06,"{\""seasonal\"": \""15%\""}",3606,1,"""Europe""" +2024-08-20,41945,5581,"[\""Phone\""]",3027.91,"{\""promo\"": \""11%\""}",280972,1,"""Europe""" +2024-12-12,41946,9739,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",235.06,"{\""seasonal\"": \""24%\""}",65930,1,"""Africa""" +2023-04-11,41947,5187,"[\""Phone\""]",1847.03,{},48405,1,"""North America""" +2024-04-15,41948,7135,"[\""Wireless Mouse\""]",3861.93,"{\""loyalty\"": \""14%\""}",42967,1,"""South America""" +2023-09-10,41949,2640,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",911.44,"{\""loyalty\"": \""26%\""}",5071,0,"""South America""" +2023-01-05,41950,5846,"[\""Tablet\"", \""Charger\""]",1726.98,"{\"": \""21%\""}",3584,0,"""Europe""" +2024-03-31,41951,9629,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3613.96,{},55573,1,"""Africa""" +2023-08-17,41952,3562,"[\""Tablet\""]",260.83,"{\""promo\"": \""10%\""}",76921,1,"""Europe""" +2023-02-26,41953,4339,"[\""Wireless Mouse\""]",1146.61,"{\""promo\"": \""9%\""}",225496,1,"""Europe""" +2024-03-09,41954,4135,"[\""Tablet\"", \""Charger\""]",4465.99,"{\"": \""10%\""}",214463,1,"""Europe""" +2023-11-07,41955,6901,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1732.97,"{\"": \""26%\""}",124130,1,"""Africa""" +2024-07-21,41956,1856,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1888.37,{},173130,0,"""Europe""" +2023-12-23,41957,8585,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2874.9,{},265717,0,"""Africa""" +2023-11-24,41958,9929,"[\""Laptop\""]",3457.26,{},15854,0,"""Asia""" +2024-11-04,41959,9324,"[\""Phone\""]",3806.47,"{\""seasonal\"": \""25%\""}",43917,0,"""South America""" +2024-06-01,41960,7492,"[\""Phone\"", \""Charger\""]",4752.34,"{\""seasonal\"": \""8%\""}",125439,0,"""North America""" +2024-01-24,41961,9989,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",577.15,{},73513,1,"""Asia""" +2024-08-20,41962,4852,"[\""Phone\""]",1597.29,"{\""promo\"": \""27%\""}",53959,0,"""Europe""" +2023-03-31,41963,2979,"[\""Phone\"", \""Wireless Mouse\""]",1767.41,"{\""loyalty\"": \""7%\""}",267573,0,"""Africa""" +2024-01-08,41964,8313,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2043.98,{},77743,0,"""Asia""" +2024-01-15,41965,288,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4239.43,"{\""promo\"": \""14%\""}",228777,0,"""South America""" +2023-05-19,41966,7673,"[\""Laptop\""]",3609.23,"{\""promo\"": \""18%\""}",185242,0,"""Asia""" +2024-03-10,41967,5145,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4935.06,{},181116,1,"""Asia""" +2023-01-16,41968,3761,"[\""Wireless Mouse\""]",4792.05,"{\""loyalty\"": \""18%\""}",188019,1,"""South America""" +2024-06-24,41969,6771,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4999.84,"{\"": \""18%\""}",223701,0,"""Africa""" +2024-02-01,41970,8001,"[\""Phone\"", \""Headphones\""]",1776.13,"{\"": \""28%\""}",78155,1,"""North America""" +2024-06-16,41971,2104,"[\""Charger\""]",4636.97,"{\""promo\"": \""15%\""}",56806,1,"""South America""" +2023-03-18,41972,1556,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3013.34,"{\""loyalty\"": \""23%\""}",6380,0,"""Europe""" +2023-10-30,41973,7556,"[\""Keyboard\"", \""Wireless Mouse\""]",2477.31,"{\""promo\"": \""8%\""}",81893,1,"""North America""" +2023-10-29,41974,2133,"[\""Monitor\""]",4163.43,{},115867,0,"""Asia""" +2024-01-20,41975,6686,"[\""Monitor\"", \""Charger\""]",4797.51,{},293835,0,"""South America""" +2024-04-10,41976,1090,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3116.38,"{\""loyalty\"": \""13%\""}",52499,0,"""South America""" +2024-08-04,41977,4673,"[\""Keyboard\""]",443.06,"{\"": \""24%\""}",204699,1,"""North America""" +2023-08-18,41978,1749,"[\""Wireless Mouse\""]",3303.37,{},76845,0,"""North America""" +2023-07-21,41979,4947,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3139.41,{},122984,0,"""Asia""" +2024-07-03,41980,5039,"[\""Charger\""]",4224.14,{},65932,1,"""Africa""" +2023-02-06,41981,8824,"[\""Wireless Mouse\"", \""Tablet\""]",812.93,"{\"": \""8%\""}",206848,0,"""Africa""" +2024-08-08,41982,8211,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",74.74,"{\"": \""14%\""}",68502,1,"""North America""" +2023-08-27,41983,9027,"[\""Phone\"", \""Charger\""]",4294.38,"{\""loyalty\"": \""20%\""}",247630,0,"""Europe""" +2024-11-23,41984,1533,"[\""Keyboard\""]",3360.39,{},178727,1,"""Africa""" +2024-08-31,41985,6946,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",461.18,{},220295,0,"""Europe""" +2023-01-28,41986,3808,"[\""Tablet\""]",1730.45,"{\""promo\"": \""29%\""}",292293,1,"""North America""" +2023-09-12,41987,3932,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",689.17,{},23377,1,"""Europe""" +2023-03-15,41988,2870,"[\""Monitor\""]",4604.86,"{\""seasonal\"": \""15%\""}",145547,0,"""North America""" +2023-08-06,41989,922,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1633.48,{},81603,0,"""Europe""" +2023-09-07,41990,3816,"[\""Headphones\""]",51.39,{},51901,1,"""Asia""" +2024-09-15,41991,3219,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3521.05,{},12376,1,"""Asia""" +2024-11-22,41992,47,"[\""Tablet\""]",3111.81,"{\"": \""11%\""}",126689,1,"""Africa""" +2023-05-16,41993,9392,"[\""Tablet\"", \""Charger\""]",3163.07,{},262378,0,"""South America""" +2024-11-10,41994,5779,"[\""Wireless Mouse\"", \""Charger\""]",1943.16,"{\"": \""18%\""}",117951,0,"""Africa""" +2023-11-22,41995,6220,"[\""Wireless Mouse\""]",3545.57,{},21703,1,"""North America""" +2024-09-24,41996,5405,"[\""Laptop\""]",1206.71,{},121718,0,"""North America""" +2024-08-19,41997,3901,"[\""Tablet\""]",2344.12,{},122019,1,"""South America""" +2023-04-26,41998,606,"[\""Laptop\""]",112.94,{},79816,0,"""Europe""" +2023-08-21,41999,5313,"[\""Keyboard\"", \""Phone\""]",2143.63,"{\"": \""8%\""}",112937,0,"""Europe""" +2024-04-16,42000,2636,"[\""Headphones\"", \""Monitor\""]",722.9,"{\""promo\"": \""20%\""}",276459,0,"""Europe""" +2024-12-04,42001,9159,"[\""Headphones\""]",2668.34,{},167856,1,"""Africa""" +2023-12-08,42002,9485,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",546.07,{},198987,1,"""North America""" +2024-11-23,42003,6077,"[\""Wireless Mouse\""]",697.85,{},180553,1,"""North America""" +2024-05-24,42004,8016,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3105.41,{},205146,1,"""Asia""" +2023-12-11,42005,9807,"[\""Laptop\"", \""Charger\""]",788.17,{},274972,0,"""Africa""" +2024-03-08,42006,3834,"[\""Monitor\""]",1140.19,{},110153,0,"""Africa""" +2024-10-10,42007,2639,"[\""Laptop\""]",4223.5,"{\"": \""11%\""}",126141,1,"""Asia""" +2023-06-04,42008,4127,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1655.06,"{\""promo\"": \""30%\""}",11337,0,"""Asia""" +2024-07-19,42009,7152,"[\""Charger\""]",3499.33,{},157415,0,"""South America""" +2024-08-28,42010,8180,"[\""Charger\"", \""Phone\""]",2732.67,{},222182,0,"""Africa""" +2023-07-29,42011,9366,"[\""Headphones\""]",3429.67,"{\""promo\"": \""20%\""}",190974,1,"""North America""" +2023-10-31,42012,595,"[\""Wireless Mouse\""]",2586.09,"{\"": \""9%\""}",270447,0,"""South America""" +2024-06-30,42013,2100,"[\""Wireless Mouse\"", \""Headphones\""]",1259.5,{},55526,0,"""Europe""" +2024-07-05,42014,482,"[\""Tablet\""]",1854.4,"{\""seasonal\"": \""13%\""}",8913,0,"""South America""" +2024-04-06,42015,4329,"[\""Headphones\""]",4856.57,{},199921,1,"""Africa""" +2023-05-29,42016,2815,"[\""Laptop\"", \""Tablet\""]",3362.46,{},12662,1,"""Europe""" +2023-04-27,42017,7024,"[\""Monitor\""]",2814.97,{},154999,0,"""Asia""" +2023-01-02,42018,2463,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",329.37,"{\""promo\"": \""12%\""}",248476,1,"""Africa""" +2024-01-26,42019,2548,"[\""Headphones\""]",907.01,{},259554,0,"""South America""" +2024-05-30,42020,7162,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3639.24,"{\""seasonal\"": \""8%\""}",17664,0,"""South America""" +2023-07-30,42021,5924,"[\""Tablet\""]",931.21,"{\"": \""7%\""}",226314,0,"""Asia""" +2024-06-06,42022,7832,"[\""Keyboard\"", \""Laptop\""]",695.78,"{\"": \""28%\""}",259107,1,"""Europe""" +2023-05-11,42023,5054,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2078.21,{},204353,1,"""North America""" +2024-08-17,42024,944,"[\""Monitor\"", \""Wireless Mouse\""]",578.75,{},259236,0,"""Africa""" +2023-01-26,42025,7188,"[\""Laptop\""]",375.67,{},162567,1,"""Europe""" +2023-02-23,42026,4800,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",607.47,"{\""seasonal\"": \""25%\""}",140357,1,"""South America""" +2023-11-28,42027,2654,"[\""Phone\""]",3192.99,"{\""loyalty\"": \""23%\""}",186030,1,"""South America""" +2024-09-26,42028,4805,"[\""Phone\""]",1340.81,{},4677,0,"""Asia""" +2024-03-04,42029,6161,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2002.55,"{\""seasonal\"": \""6%\""}",252150,1,"""Europe""" +2024-02-09,42030,1866,"[\""Charger\"", \""Monitor\""]",3885.38,"{\"": \""14%\""}",108533,0,"""North America""" +2024-06-30,42031,6718,"[\""Headphones\"", \""Tablet\""]",1570.52,"{\""loyalty\"": \""27%\""}",265718,0,"""South America""" +2023-05-01,42032,1249,"[\""Wireless Mouse\"", \""Keyboard\""]",594.18,"{\""promo\"": \""18%\""}",275428,1,"""Asia""" +2024-08-06,42033,8639,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2686.77,{},219577,1,"""Africa""" +2024-09-10,42034,5425,"[\""Wireless Mouse\""]",3516.77,{},105356,0,"""Africa""" +2024-06-26,42035,8029,"[\""Charger\""]",4300.46,{},264553,1,"""Europe""" +2024-08-30,42036,7170,"[\""Wireless Mouse\""]",1813.9,"{\""seasonal\"": \""28%\""}",63454,1,"""North America""" +2024-12-21,42037,5312,"[\""Phone\"", \""Tablet\""]",4864.41,"{\""seasonal\"": \""10%\""}",82607,1,"""North America""" +2023-05-20,42038,7749,"[\""Phone\"", \""Monitor\""]",4422.41,"{\""loyalty\"": \""24%\""}",263392,0,"""Europe""" +2023-01-20,42039,6582,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4638.26,"{\"": \""30%\""}",102603,1,"""Asia""" +2024-05-20,42040,3293,"[\""Phone\""]",951.05,"{\"": \""20%\""}",90014,0,"""South America""" +2024-12-02,42041,6864,"[\""Keyboard\""]",4976.45,{},288695,0,"""North America""" +2023-03-13,42042,8268,"[\""Laptop\"", \""Headphones\""]",2985.64,{},128274,0,"""Africa""" +2023-01-24,42043,885,"[\""Phone\""]",873.57,{},270502,1,"""South America""" +2024-11-23,42044,8105,"[\""Wireless Mouse\"", \""Laptop\""]",3481.4,{},272042,0,"""Europe""" +2023-06-19,42045,9645,"[\""Headphones\""]",1010.51,"{\""loyalty\"": \""28%\""}",43927,0,"""North America""" +2024-05-07,42046,9826,"[\""Wireless Mouse\"", \""Tablet\""]",426.27,{},132083,0,"""North America""" +2024-07-21,42047,2719,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4450.49,"{\""loyalty\"": \""8%\""}",176449,0,"""Europe""" +2023-10-09,42048,2338,"[\""Charger\""]",268.76,"{\""promo\"": \""13%\""}",123702,0,"""North America""" +2024-01-18,42049,8955,"[\""Wireless Mouse\""]",3165.62,"{\""promo\"": \""15%\""}",233415,0,"""South America""" +2023-11-29,42050,2554,"[\""Charger\""]",2525.0,{},232861,0,"""South America""" +2023-09-01,42051,6265,"[\""Phone\"", \""Monitor\""]",4708.93,{},254686,0,"""Asia""" +2023-10-01,42052,8616,"[\""Wireless Mouse\"", \""Headphones\""]",4535.89,"{\""loyalty\"": \""15%\""}",162694,1,"""North America""" +2024-07-25,42053,4022,"[\""Charger\"", \""Monitor\""]",1570.51,{},175374,0,"""North America""" +2023-05-21,42054,7456,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2772.5,"{\"": \""25%\""}",278827,1,"""North America""" +2024-10-17,42055,9662,"[\""Phone\""]",1404.64,"{\""promo\"": \""14%\""}",173271,0,"""Africa""" +2023-07-14,42056,767,"[\""Headphones\"", \""Charger\""]",2675.37,{},131749,0,"""Africa""" +2023-02-11,42057,2859,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2292.41,"{\"": \""24%\""}",184522,0,"""Africa""" +2023-11-13,42058,3099,"[\""Laptop\"", \""Monitor\""]",1151.17,{},117063,1,"""South America""" +2024-05-31,42059,7022,"[\""Phone\"", \""Laptop\""]",4323.63,{},179165,1,"""South America""" +2023-01-30,42060,6731,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1698.96,"{\""promo\"": \""9%\""}",135363,1,"""Asia""" +2023-05-21,42061,1840,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3244.01,"{\""promo\"": \""12%\""}",118458,1,"""South America""" +2024-10-20,42062,559,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1341.74,"{\""promo\"": \""9%\""}",266518,1,"""Europe""" +2024-08-30,42063,8596,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",671.46,{},108596,0,"""Asia""" +2023-08-29,42064,537,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",738.78,{},22157,0,"""Europe""" +2024-09-08,42065,5915,"[\""Laptop\"", \""Headphones\""]",1529.74,"{\""seasonal\"": \""30%\""}",194558,1,"""North America""" +2023-10-05,42066,4064,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2321.93,"{\""seasonal\"": \""13%\""}",36369,0,"""Africa""" +2023-06-01,42067,2595,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",977.24,"{\"": \""13%\""}",52262,0,"""North America""" +2024-03-16,42068,3928,"[\""Keyboard\"", \""Laptop\""]",1482.17,"{\""seasonal\"": \""15%\""}",193750,1,"""Asia""" +2024-07-02,42069,3869,"[\""Laptop\"", \""Keyboard\""]",3101.18,{},173453,1,"""Africa""" +2024-09-02,42070,5486,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3298.46,{},76606,0,"""Africa""" +2024-01-02,42071,4522,"[\""Monitor\""]",4573.71,"{\""loyalty\"": \""28%\""}",94203,1,"""South America""" +2024-09-10,42072,4078,"[\""Wireless Mouse\""]",3098.97,"{\"": \""12%\""}",257844,1,"""Europe""" +2023-03-05,42073,4065,"[\""Tablet\""]",4752.17,"{\""loyalty\"": \""19%\""}",203961,1,"""Africa""" +2023-12-19,42074,2890,"[\""Monitor\""]",994.3,{},15026,0,"""Africa""" +2023-12-01,42075,1778,"[\""Laptop\""]",1389.96,"{\""loyalty\"": \""16%\""}",2695,1,"""North America""" +2023-07-20,42076,1727,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1816.74,"{\""seasonal\"": \""16%\""}",32041,0,"""North America""" +2024-10-14,42077,6985,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1457.09,{},246591,0,"""Asia""" +2023-02-24,42078,3773,"[\""Keyboard\""]",4464.12,"{\""loyalty\"": \""9%\""}",199640,0,"""North America""" +2024-02-02,42079,3340,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1973.51,{},266529,1,"""North America""" +2023-12-02,42080,4340,"[\""Tablet\"", \""Charger\""]",1138.5,"{\""promo\"": \""12%\""}",54749,0,"""South America""" +2024-02-02,42081,6827,"[\""Monitor\""]",1942.61,{},160626,0,"""Europe""" +2024-10-29,42082,8725,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4935.83,{},89818,0,"""Europe""" +2023-05-21,42083,1317,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",841.06,"{\""seasonal\"": \""25%\""}",85807,0,"""Europe""" +2024-01-07,42084,1341,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3854.56,"{\""loyalty\"": \""5%\""}",286291,0,"""Asia""" +2023-01-23,42085,5280,"[\""Monitor\"", \""Phone\""]",3266.79,{},267187,1,"""Europe""" +2024-01-22,42086,1239,"[\""Laptop\""]",879.0,{},33130,0,"""Europe""" +2024-12-07,42087,7145,"[\""Laptop\"", \""Phone\""]",3507.15,{},238050,0,"""Africa""" +2023-10-13,42088,492,"[\""Monitor\"", \""Keyboard\""]",4017.96,"{\""seasonal\"": \""26%\""}",61937,0,"""Asia""" +2024-02-12,42089,3784,"[\""Keyboard\""]",2335.03,{},203084,0,"""Europe""" +2023-03-03,42090,2427,"[\""Monitor\""]",3610.66,"{\""seasonal\"": \""18%\""}",41911,0,"""Africa""" +2023-07-26,42091,6507,"[\""Headphones\"", \""Wireless Mouse\""]",1247.47,{},296520,1,"""Africa""" +2024-01-13,42092,2577,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",100.89,"{\""promo\"": \""14%\""}",90463,0,"""Africa""" +2024-02-29,42093,5666,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",514.33,{},204986,1,"""Asia""" +2024-05-01,42094,144,"[\""Wireless Mouse\""]",4676.68,{},74496,0,"""Asia""" +2023-09-19,42095,5004,"[\""Charger\"", \""Keyboard\""]",639.95,{},279511,0,"""North America""" +2024-12-21,42096,21,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4525.43,"{\""loyalty\"": \""20%\""}",99505,1,"""Asia""" +2023-11-27,42097,7139,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4604.1,{},109773,0,"""South America""" +2024-10-31,42098,1267,"[\""Keyboard\"", \""Monitor\""]",1819.83,"{\""promo\"": \""19%\""}",263586,0,"""Africa""" +2024-12-15,42099,718,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2963.7,"{\"": \""13%\""}",3672,0,"""Asia""" +2023-09-26,42100,3011,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2633.82,{},77247,1,"""Asia""" +2024-06-05,42101,3955,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1407.35,{},157989,0,"""Africa""" +2024-08-29,42102,2473,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",586.75,"{\"": \""22%\""}",37597,0,"""North America""" +2023-10-25,42103,8991,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3416.06,{},205167,0,"""North America""" +2024-10-13,42104,506,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",765.86,"{\"": \""22%\""}",217018,1,"""Asia""" +2024-02-29,42105,8721,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4388.18,"{\""loyalty\"": \""29%\""}",176160,1,"""Europe""" +2024-05-07,42106,6788,"[\""Laptop\""]",2614.98,{},201939,1,"""Europe""" +2023-07-10,42107,2562,"[\""Monitor\"", \""Wireless Mouse\""]",1336.8,{},174059,0,"""South America""" +2024-04-07,42108,5818,"[\""Charger\""]",663.31,{},95206,1,"""North America""" +2024-07-22,42109,2869,"[\""Laptop\"", \""Tablet\""]",2778.98,{},231906,0,"""Africa""" +2023-02-25,42110,4429,"[\""Laptop\""]",108.05,{},105460,0,"""South America""" +2023-06-08,42111,2189,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2768.83,"{\""seasonal\"": \""17%\""}",79256,0,"""North America""" +2024-06-02,42112,4105,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4266.4,"{\""loyalty\"": \""12%\""}",49677,1,"""Asia""" +2024-09-06,42113,4848,"[\""Phone\""]",4459.28,"{\""loyalty\"": \""6%\""}",181362,0,"""North America""" +2023-11-04,42114,9154,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3398.13,{},15256,1,"""North America""" +2024-12-17,42115,7592,"[\""Laptop\"", \""Wireless Mouse\""]",1438.89,{},195762,0,"""Asia""" +2023-02-25,42116,5055,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1029.38,{},270624,0,"""Africa""" +2024-10-09,42117,7667,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1705.33,{},180642,0,"""Asia""" +2023-03-18,42118,3881,"[\""Wireless Mouse\"", \""Tablet\""]",2970.43,{},116115,0,"""North America""" +2023-02-09,42119,6577,"[\""Tablet\""]",4820.12,"{\""promo\"": \""13%\""}",67551,1,"""South America""" +2024-07-03,42120,753,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4006.32,"{\"": \""7%\""}",59903,0,"""Europe""" +2023-06-27,42121,2171,"[\""Tablet\""]",1033.27,{},282286,1,"""South America""" +2023-10-23,42122,8042,"[\""Tablet\"", \""Headphones\""]",4925.67,{},139284,0,"""North America""" +2024-03-22,42123,2118,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1883.28,{},1376,0,"""South America""" +2023-08-21,42124,9827,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2228.66,"{\"": \""30%\""}",72027,1,"""Europe""" +2024-08-28,42125,4130,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3457.52,{},28718,1,"""Europe""" +2023-10-14,42126,9118,"[\""Tablet\"", \""Laptop\""]",742.61,"{\""promo\"": \""13%\""}",1054,0,"""Africa""" +2023-08-23,42127,6629,"[\""Tablet\"", \""Phone\""]",4218.72,{},34498,0,"""South America""" +2024-01-10,42128,6390,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2010.67,"{\""loyalty\"": \""27%\""}",30010,0,"""North America""" +2024-07-24,42129,2771,"[\""Charger\"", \""Laptop\""]",674.06,{},162370,1,"""South America""" +2023-01-12,42130,5758,"[\""Keyboard\""]",2715.3,"{\""seasonal\"": \""20%\""}",95149,1,"""North America""" +2024-03-28,42131,2464,"[\""Tablet\""]",4260.38,"{\""loyalty\"": \""28%\""}",71473,1,"""Asia""" +2024-03-03,42132,4929,"[\""Monitor\""]",1908.72,{},186394,1,"""Africa""" +2024-06-10,42133,4774,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4758.64,{},3663,0,"""South America""" +2024-02-10,42134,4511,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3999.22,"{\""seasonal\"": \""19%\""}",136850,0,"""Africa""" +2024-07-14,42135,6757,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",268.16,"{\""seasonal\"": \""19%\""}",160718,0,"""Africa""" +2023-07-07,42136,3362,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2675.55,"{\""loyalty\"": \""20%\""}",234888,0,"""Asia""" +2024-01-14,42137,818,"[\""Headphones\""]",527.37,{},149615,0,"""North America""" +2023-05-16,42138,4785,"[\""Keyboard\"", \""Wireless Mouse\""]",4378.13,"{\""seasonal\"": \""22%\""}",167232,1,"""South America""" +2023-05-05,42139,4754,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4336.87,{},7107,1,"""North America""" +2023-10-22,42140,1967,"[\""Phone\""]",4504.85,{},197857,1,"""North America""" +2024-02-29,42141,579,"[\""Wireless Mouse\"", \""Phone\""]",1739.6,{},151101,0,"""South America""" +2023-08-05,42142,9197,"[\""Laptop\"", \""Headphones\""]",4427.72,"{\"": \""21%\""}",100311,1,"""North America""" +2023-02-10,42143,8560,"[\""Wireless Mouse\"", \""Keyboard\""]",500.74,"{\""promo\"": \""17%\""}",60038,0,"""North America""" +2024-11-10,42144,2518,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",323.24,"{\"": \""19%\""}",160240,0,"""South America""" +2024-01-19,42145,7927,"[\""Headphones\""]",3806.2,{},14965,0,"""North America""" +2023-04-13,42146,6810,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",885.25,{},165707,1,"""North America""" +2023-10-06,42147,5211,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4469.37,"{\"": \""28%\""}",254508,1,"""South America""" +2024-07-25,42148,5592,"[\""Wireless Mouse\"", \""Keyboard\""]",1369.44,"{\""promo\"": \""20%\""}",157991,1,"""Asia""" +2023-12-20,42149,3808,"[\""Headphones\""]",4031.27,"{\""seasonal\"": \""16%\""}",257943,1,"""Asia""" +2024-03-19,42150,5695,"[\""Phone\""]",2324.61,"{\""promo\"": \""16%\""}",205727,1,"""North America""" +2024-03-21,42151,8769,"[\""Laptop\""]",4217.5,"{\""seasonal\"": \""17%\""}",56585,0,"""Asia""" +2024-07-23,42152,7358,"[\""Phone\""]",1050.41,"{\"": \""25%\""}",35954,1,"""South America""" +2024-11-23,42153,6201,"[\""Phone\""]",1008.97,"{\""loyalty\"": \""28%\""}",286626,0,"""Asia""" +2024-09-17,42154,300,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2593.7,"{\""seasonal\"": \""7%\""}",267838,0,"""Asia""" +2024-06-22,42155,3535,"[\""Wireless Mouse\"", \""Phone\""]",1070.43,{},214657,1,"""Africa""" +2024-03-10,42156,9759,"[\""Charger\""]",1742.3,"{\""seasonal\"": \""21%\""}",6943,0,"""South America""" +2024-12-02,42157,4367,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3297.52,"{\""loyalty\"": \""16%\""}",92235,0,"""North America""" +2023-07-26,42158,6856,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2975.04,"{\""seasonal\"": \""26%\""}",170288,1,"""North America""" +2023-01-05,42159,7693,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1087.09,{},9315,1,"""Asia""" +2023-07-25,42160,4947,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",668.24,"{\""loyalty\"": \""13%\""}",288210,1,"""North America""" +2024-11-18,42161,8421,"[\""Keyboard\""]",2727.84,{},176707,0,"""Europe""" +2023-03-24,42162,5374,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4164.5,{},36110,1,"""Europe""" +2024-02-20,42163,2027,"[\""Monitor\""]",4892.25,{},185232,1,"""South America""" +2023-07-28,42164,5923,"[\""Phone\"", \""Headphones\""]",1034.48,"{\"": \""13%\""}",114715,1,"""Asia""" +2024-03-18,42165,6305,"[\""Charger\"", \""Monitor\""]",2377.04,"{\""loyalty\"": \""27%\""}",202269,1,"""Asia""" +2023-05-10,42166,2743,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3609.66,"{\""seasonal\"": \""19%\""}",131718,1,"""Asia""" +2024-07-31,42167,7210,"[\""Wireless Mouse\"", \""Charger\""]",1153.29,{},98696,1,"""Europe""" +2023-03-28,42168,1742,"[\""Wireless Mouse\"", \""Tablet\""]",3870.99,{},141627,1,"""South America""" +2023-07-19,42169,4278,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1320.55,"{\""seasonal\"": \""12%\""}",8924,0,"""Africa""" +2023-11-26,42170,278,"[\""Laptop\"", \""Headphones\""]",4884.34,{},34724,0,"""Africa""" +2023-05-09,42171,592,"[\""Headphones\"", \""Laptop\""]",2748.05,"{\""promo\"": \""15%\""}",286658,1,"""Europe""" +2023-06-26,42172,2895,"[\""Wireless Mouse\""]",2865.42,"{\""seasonal\"": \""12%\""}",101700,0,"""Europe""" +2024-03-29,42173,7221,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",55.42,"{\""loyalty\"": \""8%\""}",177326,0,"""South America""" +2023-11-29,42174,6271,"[\""Monitor\"", \""Laptop\""]",4846.03,"{\""loyalty\"": \""29%\""}",196719,0,"""Asia""" +2023-05-13,42175,592,"[\""Headphones\"", \""Monitor\""]",1498.26,"{\""promo\"": \""9%\""}",191350,0,"""Africa""" +2024-05-18,42176,6435,"[\""Keyboard\"", \""Headphones\""]",389.91,{},65174,0,"""Asia""" +2023-09-24,42177,8003,"[\""Headphones\"", \""Keyboard\""]",157.33,{},86865,1,"""Africa""" +2024-10-20,42178,4498,"[\""Charger\""]",3353.35,"{\"": \""8%\""}",250169,1,"""Asia""" +2024-10-16,42179,3121,"[\""Tablet\"", \""Monitor\""]",616.56,{},114765,0,"""South America""" +2024-10-29,42180,1564,"[\""Keyboard\""]",2860.47,"{\""loyalty\"": \""22%\""}",29411,1,"""South America""" +2024-10-10,42181,3294,"[\""Charger\"", \""Laptop\""]",1952.18,{},253104,1,"""Asia""" +2024-02-05,42182,3455,"[\""Keyboard\"", \""Tablet\""]",822.47,{},82848,0,"""Europe""" +2024-04-08,42183,6373,"[\""Wireless Mouse\""]",1094.51,"{\"": \""16%\""}",98831,1,"""Asia""" +2024-03-19,42184,2647,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2719.04,{},128847,0,"""Africa""" +2023-06-22,42185,7185,"[\""Tablet\"", \""Headphones\""]",1783.87,"{\""loyalty\"": \""6%\""}",204030,0,"""Europe""" +2023-04-15,42186,9127,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2223.17,"{\""promo\"": \""21%\""}",196541,1,"""Asia""" +2023-08-31,42187,2283,"[\""Charger\"", \""Laptop\""]",4168.93,"{\""seasonal\"": \""15%\""}",101042,0,"""South America""" +2024-01-22,42188,1848,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1824.1,{},95749,0,"""South America""" +2024-11-28,42189,7476,"[\""Laptop\""]",1204.05,"{\""loyalty\"": \""29%\""}",146780,1,"""North America""" +2024-10-23,42190,8429,"[\""Tablet\"", \""Laptop\""]",136.57,{},79843,0,"""Africa""" +2024-04-03,42191,253,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2360.33,{},230147,0,"""South America""" +2024-08-15,42192,7444,"[\""Tablet\"", \""Monitor\""]",2142.12,"{\""promo\"": \""23%\""}",199349,1,"""Europe""" +2024-05-30,42193,1185,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3179.6,"{\""seasonal\"": \""12%\""}",188623,1,"""Asia""" +2024-12-07,42194,3843,"[\""Keyboard\""]",2221.23,"{\""seasonal\"": \""10%\""}",250355,0,"""South America""" +2023-09-27,42195,1215,"[\""Headphones\"", \""Tablet\""]",3499.42,"{\""seasonal\"": \""26%\""}",271021,0,"""South America""" +2023-08-19,42196,3059,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",354.45,{},245057,0,"""North America""" +2024-04-05,42197,4671,"[\""Keyboard\"", \""Monitor\""]",4687.48,{},206019,1,"""Asia""" +2023-08-12,42198,5719,"[\""Phone\""]",166.68,{},103197,0,"""Asia""" +2024-03-13,42199,8883,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2267.92,"{\""seasonal\"": \""7%\""}",222124,1,"""Europe""" +2023-03-25,42200,8019,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4879.73,"{\""loyalty\"": \""27%\""}",205256,0,"""Africa""" +2024-07-22,42201,9187,"[\""Phone\"", \""Headphones\""]",1823.91,"{\"": \""9%\""}",244442,0,"""North America""" +2023-10-06,42202,8235,"[\""Headphones\"", \""Charger\""]",1721.01,"{\""loyalty\"": \""6%\""}",25117,1,"""Africa""" +2023-05-08,42203,5456,"[\""Monitor\"", \""Charger\""]",64.05,{},110602,0,"""South America""" +2024-06-26,42204,3378,"[\""Tablet\""]",3748.63,"{\""promo\"": \""5%\""}",133250,1,"""Asia""" +2024-05-10,42205,1545,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3507.41,{},277260,0,"""North America""" +2024-10-18,42206,2727,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",268.64,"{\""seasonal\"": \""8%\""}",218318,1,"""Asia""" +2024-06-30,42207,3195,"[\""Headphones\"", \""Keyboard\""]",2677.19,{},70939,1,"""Europe""" +2023-10-22,42208,4498,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2634.16,{},48234,1,"""North America""" +2023-01-31,42209,8725,"[\""Keyboard\"", \""Phone\""]",3997.89,{},237436,0,"""Europe""" +2024-08-25,42210,8295,"[\""Charger\""]",2504.21,"{\""promo\"": \""20%\""}",212578,1,"""Europe""" +2024-05-18,42211,4247,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2585.79,"{\""loyalty\"": \""20%\""}",277086,0,"""Europe""" +2024-07-18,42212,5480,"[\""Keyboard\"", \""Laptop\""]",3760.12,{},230244,1,"""North America""" +2023-12-11,42213,1805,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1591.32,{},245355,1,"""South America""" +2024-12-14,42214,4218,"[\""Charger\"", \""Phone\""]",4613.17,"{\""loyalty\"": \""12%\""}",287130,1,"""Asia""" +2024-11-01,42215,3958,"[\""Charger\"", \""Phone\""]",1537.31,{},220396,1,"""Africa""" +2024-06-11,42216,1941,"[\""Wireless Mouse\"", \""Phone\""]",2199.26,"{\""promo\"": \""26%\""}",204560,0,"""Africa""" +2023-02-12,42217,6620,"[\""Monitor\""]",3264.32,"{\""promo\"": \""30%\""}",198179,1,"""South America""" +2023-03-09,42218,9117,"[\""Phone\"", \""Headphones\""]",3033.51,{},112228,0,"""Asia""" +2024-07-16,42219,6684,"[\""Wireless Mouse\"", \""Charger\""]",3326.69,"{\""promo\"": \""25%\""}",136371,0,"""Asia""" +2024-05-09,42220,2833,"[\""Wireless Mouse\""]",4139.04,"{\"": \""7%\""}",150924,1,"""Africa""" +2024-02-20,42221,7067,"[\""Tablet\"", \""Headphones\""]",4260.65,"{\""promo\"": \""7%\""}",67639,1,"""North America""" +2023-06-19,42222,9638,"[\""Charger\""]",1363.47,"{\""loyalty\"": \""8%\""}",215308,0,"""Europe""" +2024-01-11,42223,6219,"[\""Monitor\""]",3585.55,{},269166,1,"""North America""" +2024-12-23,42224,2414,"[\""Keyboard\""]",2090.09,"{\""loyalty\"": \""18%\""}",73353,0,"""Africa""" +2024-07-07,42225,724,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3627.25,"{\""loyalty\"": \""18%\""}",148925,0,"""Europe""" +2024-04-07,42226,2206,"[\""Charger\"", \""Headphones\""]",1656.45,{},247272,0,"""North America""" +2023-10-04,42227,1188,"[\""Tablet\"", \""Wireless Mouse\""]",3240.75,{},277205,0,"""Asia""" +2023-02-24,42228,9511,"[\""Tablet\""]",4333.2,"{\""promo\"": \""19%\""}",157799,1,"""Asia""" +2024-03-14,42229,6774,"[\""Monitor\""]",4897.86,"{\""promo\"": \""30%\""}",137340,1,"""Africa""" +2023-10-29,42230,5336,"[\""Monitor\""]",2787.75,{},239281,0,"""Europe""" +2024-07-29,42231,569,"[\""Monitor\"", \""Phone\""]",697.22,"{\""promo\"": \""25%\""}",163568,0,"""South America""" +2024-07-10,42232,9018,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4801.65,{},93993,1,"""Asia""" +2023-06-20,42233,611,"[\""Headphones\"", \""Wireless Mouse\""]",3008.26,"{\"": \""22%\""}",229520,1,"""South America""" +2024-08-01,42234,1180,"[\""Headphones\""]",4108.38,"{\""promo\"": \""28%\""}",25793,1,"""Asia""" +2023-01-22,42235,1959,"[\""Monitor\""]",1620.28,"{\""seasonal\"": \""13%\""}",76697,0,"""Europe""" +2023-05-11,42236,9249,"[\""Monitor\"", \""Keyboard\""]",1456.34,{},53834,0,"""Asia""" +2024-11-22,42237,9863,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",969.78,{},121173,0,"""South America""" +2023-07-10,42238,7117,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4451.26,{},203138,0,"""North America""" +2024-04-13,42239,132,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1884.16,"{\"": \""18%\""}",42198,1,"""Europe""" +2024-06-07,42240,4625,"[\""Keyboard\"", \""Tablet\""]",3948.1,"{\"": \""24%\""}",269315,1,"""South America""" +2023-03-19,42241,6190,"[\""Wireless Mouse\""]",483.6,"{\""loyalty\"": \""21%\""}",253553,1,"""Europe""" +2023-07-16,42242,2647,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",477.34,{},263704,1,"""Africa""" +2023-05-07,42243,1284,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",279.02,"{\""seasonal\"": \""30%\""}",79180,1,"""Europe""" +2023-08-26,42244,2982,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3438.64,"{\""loyalty\"": \""9%\""}",109799,1,"""Europe""" +2024-01-03,42245,8868,"[\""Wireless Mouse\"", \""Monitor\""]",2839.98,{},109932,0,"""Europe""" +2023-01-23,42246,8680,"[\""Charger\""]",2690.54,"{\"": \""7%\""}",240200,1,"""Africa""" +2024-05-24,42247,8301,"[\""Tablet\""]",2103.04,{},110567,1,"""South America""" +2023-08-13,42248,4202,"[\""Charger\"", \""Wireless Mouse\""]",3638.84,{},39460,0,"""North America""" +2024-12-02,42249,9115,"[\""Headphones\""]",1229.32,"{\""promo\"": \""17%\""}",250688,0,"""Africa""" +2024-10-21,42250,3332,"[\""Laptop\"", \""Headphones\""]",2259.12,{},257652,0,"""Africa""" +2023-03-28,42251,8484,"[\""Keyboard\"", \""Phone\""]",4647.25,{},180779,1,"""North America""" +2024-11-10,42252,4980,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1568.76,"{\"": \""19%\""}",174454,0,"""North America""" +2024-03-22,42253,2132,"[\""Headphones\""]",1591.44,"{\""promo\"": \""25%\""}",220961,0,"""Africa""" +2024-02-25,42254,582,"[\""Wireless Mouse\""]",3430.02,"{\"": \""20%\""}",81863,0,"""Africa""" +2023-12-13,42255,2926,"[\""Monitor\"", \""Headphones\""]",4935.58,"{\""loyalty\"": \""24%\""}",195617,1,"""South America""" +2024-12-21,42256,1632,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1122.35,"{\""loyalty\"": \""24%\""}",185023,1,"""Europe""" +2024-12-02,42257,7613,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4312.76,"{\""promo\"": \""9%\""}",192708,0,"""Africa""" +2024-11-16,42258,697,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4956.17,"{\""promo\"": \""30%\""}",71632,1,"""North America""" +2023-03-11,42259,2281,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3155.8,"{\""loyalty\"": \""16%\""}",3818,0,"""North America""" +2023-06-01,42260,175,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1083.79,{},18347,0,"""Africa""" +2024-06-07,42261,1134,"[\""Monitor\"", \""Keyboard\""]",2661.99,{},206730,0,"""Asia""" +2024-11-26,42262,2937,"[\""Laptop\""]",1379.44,{},220513,1,"""North America""" +2023-08-14,42263,6669,"[\""Monitor\""]",2197.07,{},287696,1,"""North America""" +2023-03-18,42264,7287,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3498.53,"{\""seasonal\"": \""24%\""}",251751,1,"""North America""" +2023-04-25,42265,9304,"[\""Wireless Mouse\""]",199.39,"{\""promo\"": \""26%\""}",156220,1,"""South America""" +2024-03-09,42266,6458,"[\""Tablet\"", \""Wireless Mouse\""]",331.03,{},84842,0,"""Asia""" +2023-06-25,42267,1875,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2720.08,{},68269,1,"""South America""" +2023-07-23,42268,3827,"[\""Phone\""]",4721.55,{},118264,1,"""Europe""" +2024-06-19,42269,1801,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4327.9,"{\""loyalty\"": \""13%\""}",10003,0,"""South America""" +2024-12-23,42270,7923,"[\""Tablet\""]",2907.55,{},278951,0,"""South America""" +2023-06-06,42271,1961,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3412.13,"{\"": \""18%\""}",178447,1,"""Africa""" +2023-06-08,42272,9133,"[\""Tablet\"", \""Laptop\""]",342.58,{},168828,1,"""South America""" +2023-03-08,42273,7522,"[\""Keyboard\""]",612.96,"{\""seasonal\"": \""9%\""}",60403,1,"""Asia""" +2024-12-26,42274,7120,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1740.09,"{\""promo\"": \""12%\""}",35652,0,"""Asia""" +2023-07-08,42275,4263,"[\""Charger\""]",3686.31,{},237545,1,"""South America""" +2023-07-27,42276,628,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2119.21,"{\""loyalty\"": \""20%\""}",15570,0,"""South America""" +2023-03-30,42277,6168,"[\""Monitor\"", \""Keyboard\""]",3172.27,{},228766,1,"""Asia""" +2024-02-12,42278,7779,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3556.33,"{\"": \""30%\""}",223813,0,"""Europe""" +2024-07-11,42279,3284,"[\""Phone\""]",1565.48,{},236920,0,"""South America""" +2023-01-17,42280,3977,"[\""Phone\"", \""Tablet\""]",432.49,"{\""promo\"": \""27%\""}",276614,0,"""North America""" +2024-08-23,42281,5987,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1419.87,{},207115,1,"""North America""" +2023-05-28,42282,1898,"[\""Monitor\"", \""Tablet\""]",3050.55,"{\""loyalty\"": \""9%\""}",76112,1,"""South America""" +2023-10-04,42283,1140,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3022.43,"{\"": \""11%\""}",189234,0,"""South America""" +2023-04-08,42284,8338,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2543.48,"{\""seasonal\"": \""11%\""}",109073,0,"""Asia""" +2024-01-25,42285,224,"[\""Charger\"", \""Laptop\""]",2807.89,{},125390,1,"""North America""" +2023-04-12,42286,3302,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4964.86,{},58913,0,"""South America""" +2023-02-19,42287,2797,"[\""Wireless Mouse\"", \""Keyboard\""]",4597.16,{},11742,0,"""Asia""" +2024-02-03,42288,4109,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1347.18,{},58328,0,"""Asia""" +2024-08-19,42289,3478,"[\""Charger\""]",4935.67,{},58554,0,"""Africa""" +2024-08-31,42290,5219,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2123.02,"{\""seasonal\"": \""25%\""}",247211,1,"""South America""" +2024-10-14,42291,7620,"[\""Headphones\"", \""Laptop\""]",4415.1,{},134474,1,"""North America""" +2023-06-24,42292,6073,"[\""Tablet\"", \""Wireless Mouse\""]",1298.96,"{\""promo\"": \""16%\""}",1669,0,"""South America""" +2023-05-15,42293,4969,"[\""Phone\""]",1611.7,"{\""promo\"": \""7%\""}",254918,0,"""Africa""" +2023-08-06,42294,5191,"[\""Laptop\"", \""Wireless Mouse\""]",3373.79,{},258195,0,"""Africa""" +2024-06-02,42295,4534,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1636.3,{},35371,1,"""Europe""" +2024-11-02,42296,9899,"[\""Headphones\""]",3035.01,"{\""seasonal\"": \""5%\""}",153367,1,"""South America""" +2024-02-27,42297,6586,"[\""Laptop\""]",2116.48,{},267888,1,"""Asia""" +2024-09-13,42298,1867,"[\""Laptop\""]",3595.97,{},80505,0,"""North America""" +2024-09-16,42299,7199,"[\""Phone\"", \""Charger\""]",3001.06,"{\""loyalty\"": \""22%\""}",144545,0,"""Asia""" +2024-12-13,42300,586,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2760.52,"{\""loyalty\"": \""28%\""}",17255,0,"""Africa""" +2024-08-18,42301,257,"[\""Laptop\"", \""Phone\"", \""Charger\""]",628.04,{},81228,1,"""South America""" +2023-11-21,42302,5315,"[\""Wireless Mouse\""]",4372.18,{},40399,1,"""Asia""" +2024-01-07,42303,1427,"[\""Phone\"", \""Keyboard\""]",1994.28,"{\""loyalty\"": \""20%\""}",157600,0,"""Europe""" +2023-07-31,42304,8275,"[\""Phone\""]",1432.76,{},241461,1,"""South America""" +2024-10-11,42305,5213,"[\""Keyboard\""]",522.49,{},113049,1,"""Africa""" +2023-01-26,42306,8362,"[\""Monitor\"", \""Wireless Mouse\""]",1569.76,{},205523,0,"""Europe""" +2023-03-24,42307,9891,"[\""Keyboard\"", \""Charger\""]",4814.84,"{\""loyalty\"": \""10%\""}",250341,0,"""North America""" +2024-10-26,42308,3518,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3397.55,"{\""seasonal\"": \""17%\""}",258117,0,"""Africa""" +2024-04-13,42309,6457,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1889.44,"{\"": \""19%\""}",179910,0,"""North America""" +2023-09-07,42310,4533,"[\""Charger\"", \""Monitor\""]",2699.28,"{\""seasonal\"": \""16%\""}",234185,1,"""Africa""" +2024-03-27,42311,3422,"[\""Laptop\"", \""Monitor\""]",4226.74,"{\""promo\"": \""11%\""}",162620,0,"""Europe""" +2023-06-17,42312,8428,"[\""Headphones\""]",4203.14,{},81168,0,"""Africa""" +2023-04-01,42313,9715,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1496.44,"{\"": \""11%\""}",74189,0,"""Europe""" +2023-07-28,42314,3077,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4627.51,"{\""loyalty\"": \""26%\""}",161006,1,"""Asia""" +2023-05-26,42315,9002,"[\""Monitor\""]",4389.11,{},91760,1,"""North America""" +2023-01-31,42316,1528,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3370.99,"{\""promo\"": \""25%\""}",179992,0,"""Europe""" +2024-06-09,42317,3239,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",853.84,"{\"": \""30%\""}",213684,1,"""North America""" +2024-09-27,42318,2053,"[\""Keyboard\"", \""Laptop\""]",3187.35,{},143005,0,"""North America""" +2024-05-26,42319,5978,"[\""Keyboard\""]",683.51,{},206585,1,"""Africa""" +2024-11-08,42320,4877,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2205.94,{},215530,0,"""Africa""" +2024-09-16,42321,9053,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4377.5,{},6811,1,"""Africa""" +2023-08-12,42322,487,"[\""Wireless Mouse\""]",3187.44,"{\""promo\"": \""28%\""}",57163,0,"""Africa""" +2023-08-15,42323,7313,"[\""Charger\""]",3054.27,{},247018,1,"""Europe""" +2024-03-16,42324,1922,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2007.51,{},228709,0,"""Asia""" +2023-04-18,42325,7844,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3729.16,"{\"": \""28%\""}",39271,0,"""Asia""" +2023-01-21,42326,4637,"[\""Headphones\""]",384.95,{},110307,0,"""South America""" +2024-02-17,42327,4560,"[\""Keyboard\""]",2865.14,"{\"": \""26%\""}",195331,0,"""South America""" +2023-03-06,42328,6614,"[\""Phone\""]",1275.39,"{\"": \""19%\""}",279124,1,"""South America""" +2023-10-22,42329,2876,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",615.87,{},14594,0,"""South America""" +2024-06-15,42330,8721,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1518.18,"{\""promo\"": \""19%\""}",62425,0,"""Africa""" +2023-09-23,42331,8791,"[\""Laptop\""]",3302.78,{},162410,1,"""Asia""" +2023-11-10,42332,9491,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3163.8,"{\"": \""30%\""}",177339,0,"""Europe""" +2024-04-03,42333,6516,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3776.5,"{\""seasonal\"": \""21%\""}",218016,0,"""Asia""" +2024-10-24,42334,9030,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2290.06,{},61366,0,"""South America""" +2023-11-06,42335,6254,"[\""Monitor\""]",3958.06,{},189579,0,"""Asia""" +2024-08-08,42336,2147,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",651.05,"{\""seasonal\"": \""23%\""}",138650,0,"""Europe""" +2023-12-05,42337,6978,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4879.9,"{\"": \""19%\""}",275829,0,"""Europe""" +2024-08-09,42338,2066,"[\""Phone\""]",747.93,{},264537,1,"""Asia""" +2023-03-08,42339,2594,"[\""Monitor\""]",4775.88,{},107981,0,"""North America""" +2023-06-25,42340,3327,"[\""Laptop\"", \""Monitor\""]",1429.33,{},46203,0,"""South America""" +2024-04-13,42341,6781,"[\""Monitor\""]",4743.9,"{\""promo\"": \""27%\""}",58805,0,"""South America""" +2023-07-09,42342,4226,"[\""Charger\""]",2277.86,{},73787,0,"""Europe""" +2023-07-11,42343,7386,"[\""Keyboard\""]",1341.12,"{\""promo\"": \""8%\""}",112391,0,"""North America""" +2024-06-11,42344,4215,"[\""Charger\"", \""Monitor\""]",1114.65,"{\""seasonal\"": \""28%\""}",82101,1,"""Asia""" +2024-08-15,42345,856,"[\""Headphones\"", \""Tablet\""]",775.33,{},186622,0,"""South America""" +2023-06-03,42346,3161,"[\""Laptop\"", \""Tablet\""]",1711.51,{},135732,0,"""Africa""" +2024-04-28,42347,4869,"[\""Monitor\"", \""Phone\""]",3722.64,{},278280,1,"""Asia""" +2024-07-13,42348,8461,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",417.46,{},268735,0,"""Africa""" +2023-02-03,42349,4263,"[\""Phone\""]",1741.27,{},267788,1,"""North America""" +2024-11-17,42350,5704,"[\""Keyboard\"", \""Wireless Mouse\""]",2316.1,{},149683,1,"""South America""" +2024-02-21,42351,2537,"[\""Keyboard\"", \""Headphones\""]",844.57,"{\""loyalty\"": \""15%\""}",194887,1,"""Africa""" +2023-06-02,42352,3634,"[\""Laptop\"", \""Keyboard\""]",4545.2,"{\""loyalty\"": \""20%\""}",128754,1,"""South America""" +2023-02-17,42353,5153,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4029.25,"{\""loyalty\"": \""7%\""}",291085,1,"""Africa""" +2023-04-04,42354,5882,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1183.26,"{\"": \""16%\""}",13149,0,"""Africa""" +2023-07-09,42355,2584,"[\""Wireless Mouse\"", \""Laptop\""]",3907.27,"{\""loyalty\"": \""18%\""}",80999,0,"""South America""" +2024-04-18,42356,7776,"[\""Monitor\""]",877.75,{},295780,0,"""Africa""" +2023-01-05,42357,1663,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",694.72,"{\""loyalty\"": \""15%\""}",143657,1,"""Europe""" +2024-06-29,42358,3784,"[\""Monitor\""]",2268.0,{},267345,1,"""North America""" +2024-01-12,42359,8408,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1253.38,"{\""loyalty\"": \""25%\""}",294766,0,"""Asia""" +2023-11-30,42360,6726,"[\""Keyboard\""]",3666.88,"{\""loyalty\"": \""20%\""}",104638,0,"""Asia""" +2024-01-04,42361,2216,"[\""Phone\"", \""Headphones\""]",511.0,{},97357,1,"""South America""" +2024-09-06,42362,317,"[\""Headphones\""]",4279.83,{},205590,0,"""Asia""" +2023-05-14,42363,607,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3421.1,{},294987,1,"""North America""" +2024-11-02,42364,2691,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",231.99,"{\""seasonal\"": \""29%\""}",116477,1,"""Europe""" +2024-05-23,42365,4616,"[\""Charger\""]",4380.95,{},217062,1,"""South America""" +2024-03-27,42366,8161,"[\""Monitor\""]",3687.22,"{\""seasonal\"": \""9%\""}",154661,1,"""North America""" +2024-05-13,42367,5535,"[\""Phone\""]",1716.77,{},208909,1,"""North America""" +2023-01-06,42368,8864,"[\""Charger\""]",1526.15,"{\""loyalty\"": \""5%\""}",105075,0,"""Europe""" +2024-10-28,42369,4324,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4296.27,"{\"": \""27%\""}",107712,0,"""Asia""" +2023-12-22,42370,3114,"[\""Keyboard\""]",4682.55,{},175297,0,"""Europe""" +2023-09-25,42371,5796,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4384.54,{},17603,0,"""South America""" +2024-10-27,42372,1177,"[\""Laptop\""]",2014.61,{},12453,0,"""North America""" +2024-12-30,42373,1223,"[\""Keyboard\"", \""Charger\""]",236.95,{},228874,1,"""Asia""" +2024-01-17,42374,6157,"[\""Wireless Mouse\"", \""Keyboard\""]",3547.7,"{\"": \""8%\""}",157454,0,"""South America""" +2024-09-15,42375,3738,"[\""Headphones\"", \""Wireless Mouse\""]",2964.08,"{\""loyalty\"": \""17%\""}",281915,0,"""Africa""" +2024-11-01,42376,5297,"[\""Phone\""]",2391.24,"{\""promo\"": \""15%\""}",220272,0,"""Europe""" +2023-02-22,42377,4548,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4663.69,{},14328,1,"""North America""" +2024-03-24,42378,2642,"[\""Charger\"", \""Wireless Mouse\""]",4334.33,{},246629,0,"""Africa""" +2024-08-14,42379,7810,"[\""Tablet\"", \""Keyboard\""]",4261.58,"{\""loyalty\"": \""30%\""}",194706,1,"""South America""" +2023-08-31,42380,2504,"[\""Phone\"", \""Charger\""]",3598.84,{},200276,0,"""North America""" +2023-08-25,42381,2006,"[\""Tablet\""]",3584.83,{},142700,1,"""Africa""" +2023-12-11,42382,4227,"[\""Laptop\"", \""Keyboard\""]",4816.62,{},251038,0,"""North America""" +2023-08-08,42383,5841,"[\""Tablet\"", \""Phone\""]",955.58,{},260802,0,"""South America""" +2024-07-16,42384,6280,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4665.31,{},215736,0,"""North America""" +2024-05-11,42385,3733,"[\""Laptop\"", \""Headphones\""]",4013.38,"{\""loyalty\"": \""18%\""}",299358,1,"""Africa""" +2023-12-25,42386,8598,"[\""Tablet\"", \""Phone\""]",904.51,"{\""promo\"": \""29%\""}",187457,0,"""Africa""" +2023-03-25,42387,6586,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3681.06,{},244917,0,"""South America""" +2023-07-29,42388,4082,"[\""Phone\"", \""Tablet\""]",4699.51,"{\"": \""7%\""}",31683,1,"""South America""" +2023-07-08,42389,6570,"[\""Keyboard\"", \""Tablet\""]",4669.48,"{\""loyalty\"": \""15%\""}",131148,0,"""Africa""" +2023-01-26,42390,6378,"[\""Headphones\"", \""Laptop\""]",2048.19,{},213349,0,"""Europe""" +2024-08-01,42391,7174,"[\""Charger\"", \""Keyboard\""]",2439.48,{},18672,0,"""Europe""" +2023-06-29,42392,9509,"[\""Laptop\"", \""Monitor\""]",3355.46,{},292170,0,"""Africa""" +2023-09-19,42393,5363,"[\""Laptop\""]",4572.88,"{\""promo\"": \""21%\""}",108050,1,"""Europe""" +2023-05-22,42394,2725,"[\""Keyboard\"", \""Wireless Mouse\""]",3645.97,{},75355,0,"""Europe""" +2023-12-19,42395,3803,"[\""Monitor\""]",2868.02,"{\"": \""27%\""}",235084,1,"""South America""" +2024-06-18,42396,8065,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4695.9,"{\""promo\"": \""27%\""}",35470,1,"""North America""" +2023-01-13,42397,3910,"[\""Wireless Mouse\""]",1550.06,"{\""seasonal\"": \""12%\""}",29993,1,"""South America""" +2023-10-01,42398,4767,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",294.55,"{\"": \""29%\""}",86688,0,"""Europe""" +2023-05-18,42399,2134,"[\""Headphones\""]",2366.42,"{\""loyalty\"": \""10%\""}",75014,0,"""Europe""" +2023-01-26,42400,1092,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2562.15,"{\""loyalty\"": \""16%\""}",130649,1,"""North America""" +2023-01-13,42401,9370,"[\""Phone\"", \""Keyboard\""]",4731.2,"{\""promo\"": \""19%\""}",206130,1,"""Europe""" +2023-09-17,42402,7629,"[\""Keyboard\""]",2834.48,{},130854,1,"""Africa""" +2024-04-10,42403,2135,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",235.46,"{\""seasonal\"": \""29%\""}",113587,1,"""Asia""" +2024-12-01,42404,8690,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4076.61,{},7056,0,"""Asia""" +2023-11-12,42405,2078,"[\""Charger\""]",2117.26,{},248513,0,"""North America""" +2023-07-23,42406,6388,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3046.42,"{\"": \""9%\""}",7165,0,"""South America""" +2023-02-05,42407,998,"[\""Charger\""]",3405.25,"{\""loyalty\"": \""28%\""}",259328,1,"""Europe""" +2023-09-27,42408,3087,"[\""Keyboard\"", \""Headphones\""]",2345.39,{},282399,1,"""Europe""" +2024-03-06,42409,2037,"[\""Wireless Mouse\""]",2945.45,"{\""seasonal\"": \""27%\""}",80291,1,"""Africa""" +2024-05-27,42410,894,"[\""Phone\"", \""Laptop\""]",1753.89,{},205229,1,"""Asia""" +2023-06-07,42411,3603,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",776.61,{},14681,1,"""Europe""" +2024-06-07,42412,3967,"[\""Tablet\"", \""Monitor\""]",118.5,{},154612,1,"""North America""" +2023-08-03,42413,4277,"[\""Laptop\""]",3025.35,{},43598,0,"""North America""" +2024-05-18,42414,7538,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1976.63,{},192366,0,"""Europe""" +2023-03-22,42415,9267,"[\""Wireless Mouse\""]",3602.22,"{\""loyalty\"": \""28%\""}",119631,0,"""North America""" +2023-09-02,42416,4037,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4839.45,{},231448,1,"""Europe""" +2024-02-06,42417,5490,"[\""Tablet\""]",2753.46,"{\""promo\"": \""18%\""}",102990,1,"""Asia""" +2023-05-09,42418,8945,"[\""Headphones\"", \""Wireless Mouse\""]",2036.95,{},8708,1,"""Asia""" +2023-07-24,42419,14,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4302.04,"{\""promo\"": \""10%\""}",154574,1,"""South America""" +2023-02-19,42420,9558,"[\""Keyboard\"", \""Wireless Mouse\""]",4771.27,{},6483,0,"""South America""" +2024-04-25,42421,6667,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2665.12,{},29657,1,"""South America""" +2024-06-10,42422,3693,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4361.66,"{\"": \""12%\""}",294170,1,"""South America""" +2024-05-01,42423,8932,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2278.02,"{\"": \""27%\""}",123249,0,"""South America""" +2024-07-29,42424,1925,"[\""Keyboard\"", \""Charger\""]",1039.55,{},210280,1,"""Africa""" +2023-12-03,42425,2051,"[\""Keyboard\"", \""Phone\""]",784.24,{},247071,1,"""South America""" +2023-03-10,42426,9591,"[\""Laptop\""]",882.92,{},108765,1,"""North America""" +2023-07-29,42427,4685,"[\""Wireless Mouse\"", \""Charger\""]",1581.01,"{\""promo\"": \""9%\""}",189366,1,"""Africa""" +2023-02-25,42428,1695,"[\""Headphones\""]",3369.13,{},91101,0,"""North America""" +2024-03-21,42429,7881,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4530.54,{},87034,1,"""North America""" +2024-12-14,42430,1334,"[\""Tablet\"", \""Charger\""]",4002.41,{},40327,1,"""South America""" +2023-08-03,42431,5077,"[\""Monitor\"", \""Tablet\""]",1761.51,"{\""promo\"": \""25%\""}",275107,0,"""North America""" +2024-08-17,42432,6596,"[\""Tablet\""]",2280.82,{},103412,1,"""Asia""" +2023-05-15,42433,7582,"[\""Tablet\"", \""Wireless Mouse\""]",679.43,"{\"": \""9%\""}",226768,0,"""Europe""" +2023-10-03,42434,2505,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",715.17,{},69582,1,"""Asia""" +2023-10-12,42435,9845,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2018.3,"{\""loyalty\"": \""13%\""}",289565,0,"""South America""" +2023-04-03,42436,9039,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2711.81,"{\""promo\"": \""9%\""}",149762,0,"""North America""" +2023-10-22,42437,3195,"[\""Monitor\"", \""Charger\""]",3353.01,{},116946,1,"""Africa""" +2023-08-06,42438,236,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3852.92,{},192851,1,"""Asia""" +2023-09-13,42439,6290,"[\""Tablet\""]",2082.33,{},199076,0,"""South America""" +2024-09-01,42440,3669,"[\""Phone\""]",2930.46,{},287318,0,"""North America""" +2024-12-21,42441,6326,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4693.26,{},284581,1,"""Europe""" +2024-12-16,42442,5853,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",245.93,{},251835,1,"""North America""" +2023-12-07,42443,2277,"[\""Phone\""]",1324.54,{},43785,1,"""Africa""" +2023-11-15,42444,9533,"[\""Phone\""]",2695.16,{},89230,1,"""Europe""" +2023-10-29,42445,838,"[\""Laptop\""]",4706.9,{},288435,0,"""South America""" +2024-12-07,42446,7535,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",61.79,{},133647,0,"""Africa""" +2023-11-16,42447,816,"[\""Keyboard\""]",4266.12,"{\""promo\"": \""24%\""}",157317,1,"""North America""" +2024-02-20,42448,9732,"[\""Wireless Mouse\""]",1742.35,"{\""loyalty\"": \""11%\""}",292235,0,"""North America""" +2024-10-13,42449,9882,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3890.74,"{\""loyalty\"": \""14%\""}",170000,0,"""North America""" +2023-12-23,42450,230,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4396.67,{},39593,1,"""South America""" +2023-08-17,42451,3152,"[\""Wireless Mouse\""]",2966.67,{},155740,1,"""Asia""" +2024-08-18,42452,2917,"[\""Tablet\"", \""Wireless Mouse\""]",1548.8,"{\""seasonal\"": \""26%\""}",165957,1,"""Europe""" +2023-10-19,42453,2779,"[\""Monitor\"", \""Keyboard\""]",951.02,{},59641,1,"""South America""" +2024-08-06,42454,910,"[\""Keyboard\""]",708.67,"{\""loyalty\"": \""15%\""}",90297,0,"""North America""" +2023-04-11,42455,3857,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2268.81,"{\""seasonal\"": \""29%\""}",55590,1,"""Asia""" +2023-12-10,42456,1289,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2081.78,"{\"": \""24%\""}",269016,1,"""Europe""" +2024-06-12,42457,8733,"[\""Laptop\"", \""Keyboard\""]",2080.39,"{\""loyalty\"": \""13%\""}",226930,1,"""Africa""" +2023-03-04,42458,8175,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1882.58,"{\""loyalty\"": \""30%\""}",266862,1,"""North America""" +2023-08-09,42459,3281,"[\""Wireless Mouse\"", \""Tablet\""]",3989.98,"{\""promo\"": \""14%\""}",255426,0,"""North America""" +2024-06-07,42460,7507,"[\""Headphones\"", \""Tablet\""]",4184.6,{},17958,0,"""Europe""" +2023-12-09,42461,8356,"[\""Headphones\"", \""Laptop\""]",3380.67,"{\""seasonal\"": \""28%\""}",98652,0,"""Asia""" +2023-01-29,42462,8474,"[\""Keyboard\"", \""Charger\""]",4763.28,"{\""seasonal\"": \""8%\""}",224349,1,"""Europe""" +2023-12-26,42463,6624,"[\""Keyboard\""]",3089.88,"{\"": \""15%\""}",67584,1,"""South America""" +2024-02-15,42464,6279,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4286.54,{},208490,0,"""North America""" +2023-11-10,42465,2024,"[\""Tablet\"", \""Phone\""]",453.99,{},157618,1,"""Africa""" +2024-01-08,42466,4386,"[\""Charger\"", \""Monitor\""]",800.05,{},205897,1,"""North America""" +2023-03-31,42467,4472,"[\""Laptop\""]",1874.03,{},112571,0,"""North America""" +2024-06-08,42468,9826,"[\""Headphones\""]",4015.59,"{\"": \""12%\""}",214815,1,"""Europe""" +2023-06-08,42469,8114,"[\""Headphones\""]",3921.64,"{\""seasonal\"": \""11%\""}",173935,0,"""South America""" +2023-07-07,42470,9909,"[\""Headphones\""]",4288.22,{},141323,1,"""Asia""" +2023-03-07,42471,8187,"[\""Phone\"", \""Charger\""]",76.66,{},42998,1,"""South America""" +2024-02-21,42472,4521,"[\""Phone\""]",1133.18,{},14030,1,"""Africa""" +2024-04-22,42473,7174,"[\""Tablet\""]",2177.89,{},166022,1,"""Africa""" +2023-12-10,42474,7201,"[\""Headphones\""]",3180.12,{},198832,1,"""Africa""" +2024-04-13,42475,2204,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",308.58,{},148327,1,"""South America""" +2024-11-19,42476,5021,"[\""Phone\"", \""Tablet\""]",277.1,"{\""loyalty\"": \""13%\""}",49944,1,"""North America""" +2024-09-29,42477,6259,"[\""Tablet\"", \""Laptop\""]",4043.05,"{\""promo\"": \""8%\""}",192974,0,"""Africa""" +2024-11-21,42478,3409,"[\""Tablet\""]",2289.33,{},241460,0,"""Asia""" +2023-09-28,42479,9881,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3773.59,{},181312,0,"""Asia""" +2024-09-25,42480,7647,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4853.63,"{\"": \""16%\""}",58837,1,"""Europe""" +2024-12-13,42481,1005,"[\""Tablet\""]",4132.6,"{\""loyalty\"": \""7%\""}",129486,0,"""North America""" +2024-07-30,42482,9544,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4313.25,{},128574,0,"""South America""" +2024-02-22,42483,8230,"[\""Headphones\""]",4283.69,{},270435,0,"""South America""" +2024-03-03,42484,8312,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1780.61,{},218809,0,"""Europe""" +2024-05-19,42485,1380,"[\""Wireless Mouse\"", \""Laptop\""]",2010.82,{},288424,0,"""Africa""" +2023-03-14,42486,4278,"[\""Headphones\"", \""Monitor\""]",2877.07,"{\"": \""16%\""}",197833,0,"""South America""" +2024-04-14,42487,3410,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4006.88,{},76383,1,"""Asia""" +2024-02-15,42488,9039,"[\""Tablet\""]",1592.89,"{\""loyalty\"": \""30%\""}",141146,1,"""Africa""" +2023-01-23,42489,600,"[\""Monitor\""]",148.13,"{\"": \""8%\""}",59174,0,"""North America""" +2024-09-19,42490,2461,"[\""Monitor\""]",610.36,{},67381,0,"""Europe""" +2024-08-07,42491,6074,"[\""Phone\"", \""Tablet\""]",4007.2,"{\""promo\"": \""25%\""}",276980,1,"""South America""" +2023-06-26,42492,4302,"[\""Monitor\""]",4924.44,"{\""promo\"": \""8%\""}",146141,0,"""South America""" +2023-05-18,42493,1697,"[\""Phone\""]",2199.19,{},71473,1,"""Asia""" +2024-03-28,42494,2376,"[\""Charger\"", \""Headphones\""]",3488.4,{},272711,0,"""Europe""" +2023-09-14,42495,1718,"[\""Monitor\"", \""Phone\""]",3921.72,{},7610,0,"""South America""" +2023-10-22,42496,6593,"[\""Keyboard\""]",2899.21,"{\""seasonal\"": \""19%\""}",98650,0,"""South America""" +2024-06-21,42497,9658,"[\""Phone\"", \""Tablet\""]",3721.67,"{\""promo\"": \""14%\""}",292698,0,"""North America""" +2024-05-12,42498,6822,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2870.74,"{\""promo\"": \""14%\""}",158054,0,"""Europe""" +2023-05-17,42499,6060,"[\""Tablet\"", \""Keyboard\""]",1102.51,{},8295,0,"""Asia""" +2023-10-09,42500,7681,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1541.54,{},34602,0,"""North America""" +2024-08-12,42501,2955,"[\""Charger\""]",2255.4,"{\""promo\"": \""29%\""}",137761,1,"""Europe""" +2024-10-29,42502,8034,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",252.49,{},252639,1,"""South America""" +2024-11-12,42503,3315,"[\""Laptop\""]",2422.11,{},80699,1,"""Europe""" +2023-05-15,42504,7007,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2661.45,{},81909,1,"""Africa""" +2024-09-22,42505,5637,"[\""Headphones\"", \""Keyboard\""]",573.92,"{\""loyalty\"": \""16%\""}",247835,1,"""North America""" +2024-02-05,42506,9798,"[\""Wireless Mouse\""]",2545.32,"{\"": \""25%\""}",162154,1,"""Asia""" +2024-05-10,42507,7486,"[\""Charger\""]",4503.69,"{\"": \""16%\""}",245099,1,"""South America""" +2024-08-22,42508,6645,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3893.71,{},180935,1,"""Asia""" +2023-08-13,42509,3085,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3477.74,{},182011,0,"""Europe""" +2024-02-09,42510,9533,"[\""Laptop\"", \""Keyboard\""]",2380.11,{},64045,1,"""Africa""" +2024-09-14,42511,1140,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2581.39,"{\""promo\"": \""15%\""}",207701,0,"""Asia""" +2024-09-17,42512,3455,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2957.12,"{\""promo\"": \""7%\""}",18902,0,"""North America""" +2024-12-19,42513,1908,"[\""Keyboard\"", \""Wireless Mouse\""]",3130.99,"{\""seasonal\"": \""19%\""}",45284,1,"""South America""" +2024-05-18,42514,3512,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4070.32,"{\"": \""16%\""}",216398,0,"""North America""" +2024-08-21,42515,6990,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1417.76,"{\""loyalty\"": \""23%\""}",102356,1,"""North America""" +2024-02-29,42516,4550,"[\""Laptop\""]",1494.62,"{\""seasonal\"": \""28%\""}",105144,0,"""North America""" +2024-01-09,42517,4272,"[\""Monitor\"", \""Laptop\""]",4651.44,"{\""loyalty\"": \""18%\""}",8564,1,"""North America""" +2023-06-18,42518,3414,"[\""Laptop\""]",3417.25,{},99761,0,"""North America""" +2023-04-18,42519,2335,"[\""Wireless Mouse\"", \""Keyboard\""]",4737.63,"{\""loyalty\"": \""8%\""}",21296,0,"""South America""" +2023-11-20,42520,2004,"[\""Charger\"", \""Phone\""]",4765.73,"{\""seasonal\"": \""12%\""}",42125,0,"""Europe""" +2024-11-02,42521,8775,"[\""Tablet\""]",298.02,"{\""promo\"": \""17%\""}",108455,1,"""Europe""" +2024-08-05,42522,3009,"[\""Monitor\"", \""Headphones\""]",2949.2,"{\""seasonal\"": \""23%\""}",266077,0,"""Africa""" +2023-03-25,42523,834,"[\""Keyboard\""]",4508.73,"{\""loyalty\"": \""26%\""}",131421,0,"""North America""" +2024-07-25,42524,3237,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",382.26,{},285870,0,"""Asia""" +2023-10-14,42525,5448,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4065.76,{},272326,1,"""North America""" +2023-09-01,42526,3212,"[\""Charger\""]",3191.62,{},60946,1,"""South America""" +2024-08-07,42527,1549,"[\""Laptop\"", \""Charger\""]",2634.81,"{\"": \""28%\""}",299745,0,"""Europe""" +2024-09-24,42528,9816,"[\""Phone\"", \""Keyboard\""]",4220.02,"{\""loyalty\"": \""16%\""}",86717,1,"""Europe""" +2023-06-01,42529,8970,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1841.73,"{\""loyalty\"": \""9%\""}",51098,1,"""North America""" +2023-05-25,42530,5890,"[\""Headphones\""]",1062.21,"{\""promo\"": \""5%\""}",68493,0,"""Asia""" +2024-12-25,42531,2330,"[\""Keyboard\""]",2359.81,{},206050,0,"""North America""" +2023-09-06,42532,3296,"[\""Tablet\""]",745.6,"{\""promo\"": \""18%\""}",103315,0,"""Asia""" +2023-10-20,42533,6009,"[\""Keyboard\""]",879.04,{},155329,1,"""Asia""" +2024-08-17,42534,411,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4416.5,"{\""loyalty\"": \""24%\""}",1679,1,"""North America""" +2024-07-20,42535,6155,"[\""Wireless Mouse\"", \""Monitor\""]",2467.86,{},199360,1,"""Africa""" +2024-09-01,42536,341,"[\""Charger\"", \""Wireless Mouse\""]",1001.81,"{\"": \""18%\""}",247520,0,"""South America""" +2023-12-30,42537,9276,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1907.11,{},239234,0,"""Africa""" +2023-05-12,42538,4041,"[\""Tablet\""]",2883.65,"{\""loyalty\"": \""21%\""}",57844,0,"""North America""" +2024-10-02,42539,3543,"[\""Phone\""]",4367.9,{},215908,1,"""Asia""" +2024-11-05,42540,1282,"[\""Phone\""]",4484.22,"{\""loyalty\"": \""27%\""}",105261,0,"""North America""" +2023-12-19,42541,3962,"[\""Phone\"", \""Headphones\""]",2949.73,"{\""loyalty\"": \""5%\""}",211287,0,"""Africa""" +2023-04-12,42542,254,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3634.18,"{\""seasonal\"": \""11%\""}",288325,1,"""Africa""" +2023-12-29,42543,486,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1585.65,{},2638,1,"""North America""" +2024-05-28,42544,2829,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2296.08,{},197734,0,"""Asia""" +2024-07-30,42545,4257,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",320.51,"{\""loyalty\"": \""18%\""}",136221,1,"""Africa""" +2023-03-02,42546,5477,"[\""Keyboard\""]",1917.91,{},270942,1,"""Europe""" +2024-12-07,42547,1221,"[\""Keyboard\"", \""Charger\""]",380.29,"{\""seasonal\"": \""18%\""}",62320,1,"""Europe""" +2024-11-22,42548,9837,"[\""Headphones\"", \""Phone\""]",1851.28,{},172411,0,"""Africa""" +2023-12-04,42549,4164,"[\""Headphones\"", \""Keyboard\""]",4833.51,"{\""promo\"": \""28%\""}",228763,0,"""South America""" +2023-10-03,42550,8566,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1479.72,{},280899,1,"""Europe""" +2024-07-13,42551,2720,"[\""Charger\""]",4793.03,{},202039,0,"""Africa""" +2023-03-09,42552,7648,"[\""Phone\""]",4776.74,{},281544,0,"""Africa""" +2023-08-08,42553,4537,"[\""Wireless Mouse\""]",3644.21,{},202202,0,"""Asia""" +2024-01-03,42554,629,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",865.02,"{\"": \""19%\""}",170641,0,"""North America""" +2023-02-28,42555,7749,"[\""Tablet\""]",175.33,{},281831,1,"""South America""" +2024-07-11,42556,6946,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",536.56,{},156444,1,"""South America""" +2023-02-19,42557,1862,"[\""Headphones\""]",2836.84,{},152806,1,"""South America""" +2023-06-02,42558,1433,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1113.75,{},111664,0,"""North America""" +2024-10-15,42559,3722,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4511.32,{},129372,1,"""North America""" +2024-02-25,42560,1945,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2799.76,"{\""promo\"": \""19%\""}",135020,1,"""South America""" +2023-11-17,42561,5577,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1318.85,{},127392,0,"""Europe""" +2023-06-07,42562,4580,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1125.16,"{\""seasonal\"": \""11%\""}",62923,1,"""Africa""" +2024-02-14,42563,450,"[\""Charger\""]",1319.27,"{\"": \""10%\""}",126193,0,"""North America""" +2023-10-30,42564,201,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3062.47,"{\""loyalty\"": \""5%\""}",86888,1,"""Europe""" +2023-07-06,42565,2962,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",151.06,"{\""loyalty\"": \""24%\""}",299444,1,"""South America""" +2024-07-03,42566,8911,"[\""Keyboard\""]",2480.76,"{\""promo\"": \""16%\""}",54732,1,"""Africa""" +2024-01-27,42567,5880,"[\""Keyboard\""]",1030.89,"{\"": \""11%\""}",239024,1,"""Africa""" +2024-08-04,42568,5072,"[\""Laptop\""]",4943.23,{},233735,1,"""Europe""" +2024-10-28,42569,5593,"[\""Headphones\"", \""Tablet\""]",3696.76,{},64485,1,"""South America""" +2023-03-28,42570,1589,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1700.65,"{\""promo\"": \""10%\""}",249452,1,"""Asia""" +2024-03-11,42571,4413,"[\""Laptop\""]",4935.65,"{\""loyalty\"": \""6%\""}",249609,0,"""Europe""" +2023-07-14,42572,8520,"[\""Laptop\"", \""Keyboard\""]",419.44,{},109113,1,"""Europe""" +2023-02-15,42573,8852,"[\""Tablet\"", \""Charger\""]",3485.02,"{\"": \""8%\""}",154141,0,"""Europe""" +2023-04-29,42574,337,"[\""Monitor\"", \""Charger\""]",1386.61,"{\""seasonal\"": \""6%\""}",127477,0,"""South America""" +2024-04-15,42575,5724,"[\""Headphones\"", \""Charger\""]",2109.96,"{\""promo\"": \""30%\""}",223500,0,"""South America""" +2024-04-26,42576,8772,"[\""Headphones\"", \""Wireless Mouse\""]",205.44,{},203173,1,"""South America""" +2024-04-19,42577,4699,"[\""Wireless Mouse\""]",2357.33,"{\"": \""14%\""}",230553,1,"""South America""" +2024-01-29,42578,3891,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1652.73,"{\""promo\"": \""9%\""}",87976,0,"""Asia""" +2023-05-27,42579,3516,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4598.14,{},115390,1,"""Africa""" +2024-08-10,42580,6076,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3850.77,"{\""seasonal\"": \""10%\""}",89943,0,"""Africa""" +2023-11-06,42581,5096,"[\""Wireless Mouse\""]",1566.03,{},62894,1,"""North America""" +2024-09-03,42582,9943,"[\""Headphones\""]",3840.78,"{\"": \""5%\""}",181966,1,"""North America""" +2024-02-29,42583,8875,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4040.85,{},154835,0,"""Europe""" +2023-02-05,42584,5697,"[\""Monitor\"", \""Charger\""]",3439.84,{},76506,0,"""North America""" +2024-12-05,42585,7202,"[\""Headphones\""]",2566.69,{},109855,1,"""Europe""" +2024-12-23,42586,6802,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2726.53,"{\""loyalty\"": \""23%\""}",281193,1,"""South America""" +2024-11-17,42587,3984,"[\""Keyboard\"", \""Headphones\""]",4165.61,"{\"": \""10%\""}",84281,1,"""North America""" +2023-05-09,42588,7365,"[\""Tablet\""]",3703.5,"{\""seasonal\"": \""23%\""}",128121,1,"""Asia""" +2024-03-13,42589,4605,"[\""Keyboard\""]",4901.26,"{\""seasonal\"": \""27%\""}",58065,1,"""Europe""" +2024-02-23,42590,9168,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2604.22,{},230293,1,"""Asia""" +2024-03-14,42591,7023,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1115.26,{},22095,0,"""Europe""" +2023-12-04,42592,6540,"[\""Charger\""]",4538.62,"{\""loyalty\"": \""10%\""}",242075,0,"""Africa""" +2023-10-01,42593,7272,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",302.84,{},267584,1,"""Europe""" +2024-04-04,42594,546,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3829.49,"{\"": \""19%\""}",93740,0,"""Africa""" +2024-08-13,42595,9588,"[\""Phone\""]",291.36,"{\""loyalty\"": \""21%\""}",128388,1,"""Europe""" +2023-04-19,42596,9273,"[\""Laptop\""]",4433.52,{},162741,0,"""North America""" +2023-07-09,42597,4889,"[\""Keyboard\""]",4966.38,"{\""loyalty\"": \""21%\""}",81100,0,"""North America""" +2023-08-31,42598,8792,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1458.12,"{\"": \""13%\""}",296541,1,"""Asia""" +2023-10-22,42599,1913,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4427.53,"{\""promo\"": \""18%\""}",17841,1,"""North America""" +2023-06-24,42600,4877,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3109.77,"{\""seasonal\"": \""13%\""}",94262,1,"""North America""" +2024-12-28,42601,5469,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3010.17,{},286764,1,"""North America""" +2024-11-01,42602,8226,"[\""Laptop\""]",2979.21,"{\""seasonal\"": \""25%\""}",148728,1,"""Europe""" +2023-02-15,42603,1433,"[\""Wireless Mouse\""]",1808.1,{},168290,1,"""Europe""" +2024-12-29,42604,75,"[\""Headphones\""]",3128.77,{},132523,0,"""South America""" +2023-01-25,42605,41,"[\""Phone\"", \""Monitor\""]",2464.41,{},147673,1,"""Asia""" +2023-02-09,42606,5705,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2233.01,"{\""loyalty\"": \""28%\""}",157127,0,"""Asia""" +2023-07-09,42607,3896,"[\""Monitor\""]",107.96,"{\""loyalty\"": \""24%\""}",181294,0,"""Asia""" +2023-01-16,42608,1968,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3640.61,{},199175,0,"""Asia""" +2024-03-18,42609,5254,"[\""Monitor\""]",3676.82,"{\"": \""12%\""}",2224,1,"""Africa""" +2024-05-05,42610,1681,"[\""Laptop\"", \""Monitor\""]",890.93,"{\""loyalty\"": \""6%\""}",246056,0,"""North America""" +2024-07-10,42611,7665,"[\""Headphones\"", \""Monitor\""]",4022.49,{},83562,1,"""Africa""" +2024-09-26,42612,5997,"[\""Keyboard\""]",1401.5,{},61280,1,"""Asia""" +2024-04-07,42613,6659,"[\""Keyboard\""]",2614.93,"{\""seasonal\"": \""23%\""}",147841,1,"""South America""" +2024-01-04,42614,9812,"[\""Phone\""]",3288.26,"{\""loyalty\"": \""17%\""}",272777,0,"""Europe""" +2023-05-21,42615,4880,"[\""Keyboard\"", \""Headphones\""]",3914.77,"{\""loyalty\"": \""5%\""}",136082,0,"""Europe""" +2024-01-19,42616,6552,"[\""Phone\""]",4058.53,{},110589,1,"""South America""" +2024-07-18,42617,5324,"[\""Charger\"", \""Phone\""]",947.57,{},96513,1,"""North America""" +2023-02-21,42618,9018,"[\""Headphones\"", \""Monitor\""]",792.91,"{\""loyalty\"": \""29%\""}",266999,0,"""Africa""" +2023-11-13,42619,1157,"[\""Phone\"", \""Keyboard\""]",1863.89,"{\"": \""15%\""}",290171,0,"""North America""" +2024-12-20,42620,2645,"[\""Charger\"", \""Phone\""]",2818.9,"{\""loyalty\"": \""29%\""}",152976,0,"""Africa""" +2024-02-02,42621,6734,"[\""Keyboard\""]",4102.12,{},220793,0,"""North America""" +2023-11-19,42622,6487,"[\""Wireless Mouse\"", \""Phone\""]",324.6,"{\""loyalty\"": \""9%\""}",173062,0,"""Asia""" +2024-09-14,42623,7315,"[\""Phone\""]",2451.03,{},64395,1,"""Europe""" +2023-10-31,42624,5396,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1458.31,"{\""loyalty\"": \""28%\""}",14096,1,"""North America""" +2023-03-10,42625,65,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3415.99,"{\""promo\"": \""20%\""}",212764,1,"""Europe""" +2024-07-08,42626,6127,"[\""Tablet\"", \""Headphones\""]",4192.84,{},233843,0,"""Asia""" +2023-12-29,42627,2866,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3867.46,{},152883,0,"""Africa""" +2024-07-22,42628,3157,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4964.7,{},117592,1,"""Africa""" +2023-05-03,42629,8697,"[\""Phone\""]",556.74,"{\""loyalty\"": \""25%\""}",275969,1,"""Europe""" +2023-03-25,42630,7959,"[\""Charger\"", \""Monitor\""]",1152.46,{},51097,0,"""Europe""" +2023-12-21,42631,6154,"[\""Monitor\"", \""Phone\""]",4943.65,{},226154,1,"""Africa""" +2023-04-26,42632,794,"[\""Laptop\"", \""Monitor\""]",1407.75,{},61746,1,"""North America""" +2024-11-09,42633,7107,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3972.37,"{\""seasonal\"": \""23%\""}",207662,0,"""Africa""" +2023-10-23,42634,7193,"[\""Laptop\""]",4904.63,"{\""loyalty\"": \""19%\""}",135974,1,"""Europe""" +2024-12-14,42635,4838,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3533.95,{},92036,1,"""South America""" +2024-10-07,42636,5984,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1256.19,{},161792,1,"""South America""" +2024-03-15,42637,65,"[\""Keyboard\""]",2566.56,{},288670,1,"""South America""" +2023-02-07,42638,6819,"[\""Wireless Mouse\"", \""Headphones\""]",3075.68,"{\""loyalty\"": \""23%\""}",81670,0,"""North America""" +2023-11-18,42639,7856,"[\""Laptop\"", \""Headphones\""]",646.57,"{\""seasonal\"": \""18%\""}",163725,1,"""Europe""" +2024-12-09,42640,2467,"[\""Laptop\"", \""Monitor\""]",1922.21,"{\""loyalty\"": \""21%\""}",290928,1,"""Africa""" +2024-10-15,42641,1776,"[\""Monitor\""]",1608.58,"{\""seasonal\"": \""13%\""}",298639,0,"""North America""" +2024-06-21,42642,3669,"[\""Phone\""]",3757.61,"{\""promo\"": \""18%\""}",109955,1,"""South America""" +2024-12-31,42643,9900,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",405.57,"{\""promo\"": \""21%\""}",105455,1,"""North America""" +2023-04-30,42644,5869,"[\""Wireless Mouse\""]",1737.44,{},212702,1,"""North America""" +2024-02-16,42645,2677,"[\""Tablet\"", \""Headphones\""]",3549.54,{},244373,1,"""South America""" +2023-04-12,42646,1337,"[\""Laptop\"", \""Wireless Mouse\""]",4496.67,{},162652,0,"""South America""" +2023-09-28,42647,9294,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3185.49,"{\""loyalty\"": \""12%\""}",100949,0,"""Africa""" +2024-08-30,42648,9559,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",224.47,{},166382,1,"""Asia""" +2023-05-16,42649,8388,"[\""Charger\""]",1764.06,{},152339,1,"""Africa""" +2023-03-20,42650,1154,"[\""Wireless Mouse\"", \""Tablet\""]",1403.26,{},220872,1,"""Africa""" +2023-11-10,42651,6301,"[\""Laptop\""]",2337.41,"{\""loyalty\"": \""24%\""}",228522,1,"""Europe""" +2024-09-23,42652,4940,"[\""Laptop\"", \""Phone\""]",4118.45,"{\""promo\"": \""17%\""}",73849,1,"""Africa""" +2024-01-17,42653,6435,"[\""Tablet\""]",3151.27,{},39205,0,"""Asia""" +2024-04-22,42654,4904,"[\""Tablet\""]",4155.14,"{\""loyalty\"": \""12%\""}",221107,1,"""Africa""" +2024-04-27,42655,6750,"[\""Tablet\""]",3298.41,{},293095,1,"""Africa""" +2023-12-23,42656,6392,"[\""Laptop\""]",1555.67,"{\""promo\"": \""9%\""}",279648,0,"""Asia""" +2024-03-08,42657,3801,"[\""Headphones\"", \""Monitor\""]",3605.35,"{\""loyalty\"": \""8%\""}",175641,0,"""Africa""" +2023-02-05,42658,4938,"[\""Laptop\"", \""Keyboard\""]",4466.02,{},11709,1,"""Africa""" +2024-07-22,42659,7461,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1520.06,{},111891,0,"""Europe""" +2023-07-04,42660,6004,"[\""Headphones\""]",1419.29,{},172951,0,"""North America""" +2024-04-04,42661,578,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3304.51,"{\"": \""12%\""}",52327,1,"""Europe""" +2023-04-07,42662,4818,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2217.49,{},62479,0,"""Africa""" +2024-08-02,42663,9034,"[\""Headphones\""]",4197.96,{},84450,0,"""Africa""" +2024-05-09,42664,71,"[\""Monitor\"", \""Keyboard\""]",2077.73,"{\""promo\"": \""10%\""}",169413,1,"""Europe""" +2024-10-31,42665,5095,"[\""Keyboard\"", \""Monitor\""]",4932.03,"{\""loyalty\"": \""28%\""}",206565,1,"""North America""" +2023-12-19,42666,5805,"[\""Laptop\""]",4380.32,{},16062,0,"""North America""" +2024-05-09,42667,6500,"[\""Wireless Mouse\"", \""Charger\""]",4128.63,{},219449,0,"""South America""" +2024-03-08,42668,3543,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3704.74,"{\"": \""14%\""}",291699,0,"""Africa""" +2024-09-08,42669,7129,"[\""Laptop\""]",3504.67,"{\""loyalty\"": \""24%\""}",269454,1,"""Asia""" +2023-12-16,42670,2289,"[\""Monitor\"", \""Headphones\""]",4507.97,{},20600,1,"""South America""" +2024-05-24,42671,1999,"[\""Keyboard\"", \""Phone\""]",2410.61,{},215875,0,"""Africa""" +2024-11-12,42672,3931,"[\""Headphones\"", \""Phone\""]",3579.66,{},63476,1,"""South America""" +2023-01-15,42673,5067,"[\""Tablet\""]",2584.86,"{\"": \""5%\""}",153856,0,"""Asia""" +2024-06-05,42674,7963,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",113.54,{},176495,0,"""South America""" +2024-08-30,42675,6966,"[\""Headphones\"", \""Keyboard\""]",4953.02,{},258106,1,"""Asia""" +2024-05-07,42676,7002,"[\""Charger\"", \""Headphones\""]",3502.63,{},47782,1,"""North America""" +2024-06-15,42677,4829,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",492.73,"{\""loyalty\"": \""20%\""}",58320,0,"""South America""" +2023-03-04,42678,3541,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4741.25,{},189144,0,"""South America""" +2023-09-14,42679,3306,"[\""Laptop\""]",4497.33,{},128345,1,"""Europe""" +2023-10-25,42680,4337,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2126.06,"{\"": \""14%\""}",50819,0,"""Africa""" +2023-03-15,42681,182,"[\""Laptop\""]",4848.66,"{\""seasonal\"": \""17%\""}",56958,0,"""Europe""" +2024-03-27,42682,6293,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3895.55,{},208062,1,"""South America""" +2023-03-26,42683,4578,"[\""Monitor\""]",4970.68,"{\"": \""23%\""}",270696,1,"""North America""" +2024-12-09,42684,7951,"[\""Tablet\""]",3402.73,{},256527,1,"""Africa""" +2024-12-22,42685,4968,"[\""Phone\"", \""Monitor\""]",4991.62,"{\"": \""7%\""}",110464,1,"""Europe""" +2023-12-31,42686,4894,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3028.94,{},191248,1,"""Africa""" +2024-03-26,42687,887,"[\""Wireless Mouse\"", \""Phone\""]",1006.06,"{\""seasonal\"": \""28%\""}",58309,1,"""South America""" +2023-11-25,42688,7649,"[\""Headphones\""]",4997.35,{},198995,0,"""Africa""" +2023-09-17,42689,1210,"[\""Wireless Mouse\""]",3596.82,"{\""promo\"": \""21%\""}",55280,1,"""North America""" +2023-11-09,42690,1140,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",295.68,{},127513,1,"""North America""" +2024-04-16,42691,7651,"[\""Laptop\""]",3405.61,{},238319,0,"""Asia""" +2023-11-12,42692,9890,"[\""Headphones\""]",4613.64,"{\"": \""28%\""}",290641,0,"""North America""" +2023-01-20,42693,676,"[\""Laptop\"", \""Headphones\""]",899.28,"{\"": \""19%\""}",68519,0,"""Europe""" +2023-03-08,42694,4986,"[\""Wireless Mouse\"", \""Headphones\""]",529.73,{},139771,0,"""South America""" +2023-12-02,42695,5487,"[\""Charger\""]",1919.31,{},231614,0,"""Asia""" +2024-12-26,42696,4474,"[\""Keyboard\""]",4386.18,{},54357,0,"""North America""" +2024-05-10,42697,5132,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2037.37,{},20185,1,"""North America""" +2023-10-31,42698,8376,"[\""Keyboard\"", \""Wireless Mouse\""]",1260.04,"{\""seasonal\"": \""15%\""}",22398,1,"""South America""" +2024-09-06,42699,7924,"[\""Keyboard\""]",3704.48,"{\""seasonal\"": \""16%\""}",209453,1,"""Asia""" +2024-05-20,42700,1908,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3597.04,"{\"": \""22%\""}",163322,0,"""Asia""" +2023-07-24,42701,7323,"[\""Keyboard\""]",4286.22,"{\""loyalty\"": \""8%\""}",192121,0,"""Africa""" +2024-06-01,42702,4072,"[\""Tablet\""]",250.91,{},271710,0,"""Europe""" +2023-03-17,42703,2117,"[\""Wireless Mouse\""]",4932.18,{},222567,1,"""South America""" +2023-02-05,42704,1346,"[\""Tablet\""]",1611.57,"{\"": \""19%\""}",164263,1,"""Europe""" +2023-05-27,42705,7050,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",798.7,{},49235,0,"""Asia""" +2024-04-09,42706,5149,"[\""Monitor\"", \""Charger\""]",3320.08,"{\"": \""22%\""}",16651,0,"""Africa""" +2023-02-20,42707,5960,"[\""Phone\""]",1148.13,"{\""seasonal\"": \""10%\""}",184249,1,"""Europe""" +2024-10-29,42708,6752,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4773.43,{},234482,0,"""Africa""" +2023-11-05,42709,7474,"[\""Wireless Mouse\""]",129.7,"{\""loyalty\"": \""20%\""}",164619,1,"""South America""" +2023-07-23,42710,7477,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3879.78,"{\"": \""23%\""}",16141,0,"""Africa""" +2024-09-18,42711,2446,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4867.87,{},119471,1,"""Europe""" +2024-11-19,42712,2472,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4277.9,"{\""promo\"": \""5%\""}",184145,1,"""Europe""" +2024-04-18,42713,9956,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2655.62,{},37275,0,"""South America""" +2023-11-21,42714,5484,"[\""Monitor\"", \""Laptop\""]",809.22,{},299712,1,"""South America""" +2024-08-28,42715,2737,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2800.14,{},291645,0,"""South America""" +2024-01-17,42716,6286,"[\""Tablet\"", \""Charger\"", \""Phone\""]",982.3,"{\""seasonal\"": \""22%\""}",101362,1,"""Asia""" +2024-06-20,42717,8000,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3823.42,"{\"": \""27%\""}",180782,1,"""South America""" +2023-04-17,42718,1768,"[\""Tablet\""]",1832.06,{},58556,1,"""Asia""" +2024-11-16,42719,9961,"[\""Wireless Mouse\"", \""Monitor\""]",1522.23,{},146380,0,"""Europe""" +2024-11-27,42720,7371,"[\""Keyboard\""]",1013.29,{},239300,0,"""North America""" +2024-10-25,42721,1079,"[\""Phone\"", \""Headphones\""]",436.39,{},195926,1,"""South America""" +2023-05-05,42722,5629,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4380.72,{},19137,0,"""Asia""" +2024-10-06,42723,9227,"[\""Keyboard\"", \""Monitor\""]",946.14,"{\""promo\"": \""22%\""}",180854,0,"""Africa""" +2024-12-18,42724,4304,"[\""Phone\"", \""Headphones\""]",2555.44,{},146002,1,"""North America""" +2024-05-16,42725,8708,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3302.94,{},107652,1,"""North America""" +2024-12-17,42726,148,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3581.86,{},242524,1,"""Asia""" +2023-07-18,42727,7787,"[\""Headphones\""]",2053.28,{},166441,1,"""Africa""" +2023-12-02,42728,5477,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",95.14,{},69283,1,"""Africa""" +2024-06-04,42729,6832,"[\""Monitor\""]",2597.68,"{\""seasonal\"": \""8%\""}",83851,0,"""Europe""" +2024-07-01,42730,2027,"[\""Tablet\""]",4139.2,{},93078,1,"""Asia""" +2023-09-26,42731,351,"[\""Keyboard\"", \""Phone\""]",417.69,"{\""loyalty\"": \""6%\""}",61342,1,"""Europe""" +2023-12-08,42732,8401,"[\""Phone\""]",2226.29,{},257187,1,"""Africa""" +2024-08-05,42733,6553,"[\""Charger\""]",2209.44,"{\""promo\"": \""27%\""}",61101,1,"""South America""" +2023-04-18,42734,2315,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2668.09,"{\""promo\"": \""20%\""}",292655,1,"""Asia""" +2023-07-21,42735,9510,"[\""Tablet\""]",3616.62,{},139624,1,"""Asia""" +2023-07-24,42736,9826,"[\""Charger\""]",2423.9,{},167346,0,"""South America""" +2024-12-12,42737,6636,"[\""Tablet\""]",849.08,{},239111,1,"""South America""" +2024-05-24,42738,7765,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1539.37,{},106819,1,"""Africa""" +2024-09-11,42739,9443,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1204.01,"{\""loyalty\"": \""18%\""}",248954,0,"""North America""" +2023-02-14,42740,1937,"[\""Tablet\"", \""Headphones\""]",3787.91,"{\"": \""24%\""}",127201,0,"""Asia""" +2023-07-14,42741,4604,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",55.95,{},106474,0,"""South America""" +2023-09-13,42742,6814,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3944.1,{},210631,0,"""South America""" +2024-08-10,42743,7763,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2272.89,{},169381,1,"""Asia""" +2023-05-05,42744,1054,"[\""Phone\""]",4092.4,"{\""promo\"": \""9%\""}",40221,1,"""North America""" +2023-11-24,42745,9429,"[\""Charger\"", \""Laptop\""]",4025.8,"{\"": \""8%\""}",199010,0,"""North America""" +2024-10-04,42746,523,"[\""Monitor\""]",2403.19,{},137903,0,"""Asia""" +2024-02-28,42747,5539,"[\""Wireless Mouse\""]",3645.06,"{\""loyalty\"": \""20%\""}",246220,1,"""Asia""" +2023-06-16,42748,6197,"[\""Tablet\"", \""Keyboard\""]",868.27,"{\""seasonal\"": \""16%\""}",21304,1,"""South America""" +2023-07-02,42749,5846,"[\""Tablet\""]",1959.93,"{\""seasonal\"": \""15%\""}",49093,1,"""South America""" +2023-05-18,42750,1331,"[\""Phone\"", \""Keyboard\""]",2250.43,{},185683,1,"""North America""" +2023-07-20,42751,5537,"[\""Tablet\"", \""Charger\""]",1654.14,"{\"": \""12%\""}",173674,0,"""Europe""" +2024-09-26,42752,1247,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4552.73,"{\"": \""10%\""}",212238,1,"""Europe""" +2024-05-20,42753,3292,"[\""Headphones\""]",4651.48,"{\"": \""7%\""}",124011,1,"""Africa""" +2024-03-20,42754,7118,"[\""Phone\""]",4211.18,"{\""promo\"": \""5%\""}",171741,0,"""Europe""" +2024-01-06,42755,4905,"[\""Laptop\"", \""Wireless Mouse\""]",4987.28,{},286417,0,"""North America""" +2023-08-30,42756,6068,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1212.01,"{\""promo\"": \""12%\""}",63790,1,"""Europe""" +2023-02-17,42757,5874,"[\""Tablet\"", \""Phone\""]",4735.05,{},73346,1,"""North America""" +2024-01-29,42758,7145,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3247.33,"{\""seasonal\"": \""7%\""}",241217,0,"""Africa""" +2024-11-21,42759,7611,"[\""Headphones\"", \""Laptop\""]",650.23,"{\""loyalty\"": \""27%\""}",78305,0,"""North America""" +2024-02-13,42760,6728,"[\""Charger\""]",1313.05,{},147099,0,"""Africa""" +2023-11-14,42761,9716,"[\""Wireless Mouse\""]",92.65,{},69292,0,"""Asia""" +2023-12-01,42762,6462,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4514.53,{},145717,0,"""Africa""" +2024-07-12,42763,7462,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",733.96,{},94479,0,"""Asia""" +2023-04-08,42764,4504,"[\""Monitor\"", \""Laptop\""]",4891.32,"{\""loyalty\"": \""20%\""}",128709,1,"""Africa""" +2023-06-02,42765,2865,"[\""Headphones\"", \""Tablet\""]",3532.88,{},229368,0,"""Europe""" +2024-07-02,42766,8975,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1351.29,{},205155,0,"""Africa""" +2024-07-21,42767,6128,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3400.72,{},34947,1,"""Europe""" +2023-03-29,42768,1745,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4388.0,{},106123,0,"""Asia""" +2024-03-19,42769,9207,"[\""Headphones\"", \""Monitor\""]",4018.14,{},112493,0,"""South America""" +2023-08-13,42770,6793,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4256.64,{},42156,0,"""South America""" +2023-01-21,42771,120,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4325.69,"{\""promo\"": \""18%\""}",210806,1,"""Europe""" +2024-04-10,42772,4193,"[\""Wireless Mouse\""]",2585.98,{},90902,1,"""Africa""" +2024-01-23,42773,8679,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3135.0,"{\"": \""10%\""}",285955,1,"""South America""" +2023-07-23,42774,9038,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4967.09,{},147857,0,"""Europe""" +2023-03-22,42775,5547,"[\""Wireless Mouse\""]",2203.86,"{\""promo\"": \""20%\""}",158228,0,"""Asia""" +2023-01-29,42776,7596,"[\""Keyboard\"", \""Headphones\""]",3174.83,"{\""loyalty\"": \""17%\""}",277051,1,"""North America""" +2024-02-06,42777,7090,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3390.61,"{\""promo\"": \""25%\""}",15434,0,"""South America""" +2024-10-10,42778,8772,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2864.35,{},153950,1,"""Asia""" +2023-10-06,42779,8957,"[\""Headphones\""]",3371.67,"{\""promo\"": \""25%\""}",36962,0,"""Africa""" +2023-11-25,42780,7659,"[\""Keyboard\""]",1239.66,"{\"": \""24%\""}",261595,1,"""South America""" +2024-06-14,42781,6783,"[\""Phone\"", \""Wireless Mouse\""]",4248.91,"{\""promo\"": \""24%\""}",217197,1,"""South America""" +2024-11-13,42782,1826,"[\""Phone\""]",4565.66,"{\""seasonal\"": \""15%\""}",146146,1,"""South America""" +2023-10-16,42783,1419,"[\""Laptop\""]",216.94,{},299805,0,"""North America""" +2024-02-01,42784,4191,"[\""Keyboard\""]",2289.27,{},61105,1,"""South America""" +2024-07-21,42785,6726,"[\""Monitor\""]",1414.37,"{\""promo\"": \""21%\""}",97166,0,"""Europe""" +2024-02-03,42786,1580,"[\""Headphones\"", \""Tablet\""]",2089.23,"{\""seasonal\"": \""10%\""}",30365,1,"""Europe""" +2023-01-09,42787,9864,"[\""Tablet\""]",997.79,{},223853,0,"""North America""" +2024-08-19,42788,9760,"[\""Headphones\"", \""Monitor\""]",3326.19,"{\""promo\"": \""20%\""}",175792,0,"""Asia""" +2023-11-16,42789,3384,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1349.03,"{\"": \""19%\""}",30968,0,"""North America""" +2023-03-26,42790,8219,"[\""Phone\""]",973.6,"{\"": \""14%\""}",296185,1,"""South America""" +2024-04-16,42791,427,"[\""Keyboard\"", \""Phone\""]",3071.65,{},158497,1,"""Africa""" +2023-04-30,42792,9770,"[\""Phone\""]",834.33,"{\""seasonal\"": \""30%\""}",23185,0,"""Europe""" +2023-09-04,42793,2976,"[\""Phone\"", \""Wireless Mouse\""]",1729.81,"{\""loyalty\"": \""5%\""}",287239,0,"""North America""" +2024-07-06,42794,2722,"[\""Headphones\""]",2104.62,{},137864,1,"""Africa""" +2024-07-18,42795,5031,"[\""Monitor\""]",434.79,"{\""seasonal\"": \""7%\""}",136578,1,"""South America""" +2024-06-10,42796,5030,"[\""Charger\"", \""Phone\""]",3335.96,"{\""promo\"": \""6%\""}",282899,0,"""Europe""" +2023-12-29,42797,8715,"[\""Monitor\"", \""Keyboard\""]",812.19,"{\""promo\"": \""9%\""}",210760,1,"""Africa""" +2023-06-20,42798,1979,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4057.31,"{\""loyalty\"": \""19%\""}",47213,0,"""Europe""" +2023-08-08,42799,6148,"[\""Tablet\""]",4408.75,{},295088,0,"""Europe""" +2023-03-04,42800,8653,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2114.12,{},94176,1,"""South America""" +2024-04-03,42801,5383,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1694.74,{},154307,1,"""North America""" +2024-11-26,42802,8906,"[\""Wireless Mouse\"", \""Headphones\""]",3448.77,"{\"": \""12%\""}",52863,0,"""Europe""" +2024-02-06,42803,1265,"[\""Phone\""]",1685.17,"{\""promo\"": \""20%\""}",249526,0,"""Africa""" +2024-06-06,42804,1758,"[\""Wireless Mouse\""]",3872.25,"{\""seasonal\"": \""20%\""}",161936,0,"""Europe""" +2024-03-04,42805,3799,"[\""Headphones\"", \""Wireless Mouse\""]",3292.65,{},15534,1,"""North America""" +2024-02-05,42806,2467,"[\""Tablet\""]",2118.38,"{\""loyalty\"": \""17%\""}",260867,0,"""South America""" +2023-05-30,42807,7271,"[\""Phone\""]",2750.82,"{\""promo\"": \""26%\""}",153177,0,"""Africa""" +2023-10-23,42808,9673,"[\""Headphones\"", \""Keyboard\""]",2676.65,"{\"": \""21%\""}",278094,1,"""South America""" +2024-11-19,42809,3539,"[\""Wireless Mouse\""]",2172.65,"{\"": \""21%\""}",116390,0,"""North America""" +2024-08-15,42810,966,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2946.9,{},52860,1,"""North America""" +2023-05-28,42811,3175,"[\""Wireless Mouse\"", \""Monitor\""]",3929.41,{},211606,0,"""Europe""" +2024-11-14,42812,8803,"[\""Tablet\"", \""Keyboard\""]",4702.41,{},235927,0,"""South America""" +2024-07-18,42813,4721,"[\""Tablet\""]",2668.01,{},187562,0,"""North America""" +2023-02-06,42814,9186,"[\""Headphones\"", \""Keyboard\""]",4131.57,"{\""promo\"": \""5%\""}",293064,0,"""Africa""" +2024-02-07,42815,4687,"[\""Wireless Mouse\""]",1852.49,{},28976,1,"""South America""" +2023-09-13,42816,6404,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3799.54,"{\""seasonal\"": \""17%\""}",298373,0,"""South America""" +2023-11-29,42817,1527,"[\""Headphones\""]",3127.02,"{\""promo\"": \""13%\""}",151867,0,"""Europe""" +2023-08-23,42818,383,"[\""Charger\"", \""Phone\""]",4856.21,{},38348,0,"""Europe""" +2024-06-25,42819,150,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",931.37,"{\""promo\"": \""17%\""}",172299,1,"""Asia""" +2024-11-01,42820,477,"[\""Keyboard\"", \""Charger\""]",1502.26,"{\""seasonal\"": \""17%\""}",216268,0,"""North America""" +2023-04-23,42821,2367,"[\""Laptop\""]",179.28,"{\""loyalty\"": \""12%\""}",44239,1,"""North America""" +2024-08-14,42822,4340,"[\""Tablet\""]",4431.95,"{\""promo\"": \""22%\""}",240659,0,"""Asia""" +2023-02-08,42823,8838,"[\""Headphones\"", \""Keyboard\""]",648.91,"{\"": \""29%\""}",58224,1,"""Asia""" +2024-07-19,42824,6180,"[\""Monitor\"", \""Charger\""]",4131.23,{},218358,1,"""North America""" +2024-09-28,42825,7659,"[\""Phone\""]",1897.01,"{\"": \""26%\""}",1505,1,"""Africa""" +2023-03-25,42826,9052,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1659.82,{},66162,1,"""Africa""" +2024-08-16,42827,6351,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2143.52,"{\""seasonal\"": \""18%\""}",244553,0,"""Europe""" +2024-05-12,42828,4577,"[\""Laptop\"", \""Phone\""]",1519.68,{},72053,0,"""South America""" +2023-05-09,42829,5407,"[\""Headphones\"", \""Phone\""]",3913.95,"{\"": \""16%\""}",160707,1,"""North America""" +2024-02-15,42830,5797,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2373.83,{},146242,1,"""South America""" +2024-01-11,42831,4084,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2292.94,"{\""seasonal\"": \""30%\""}",27046,1,"""Europe""" +2023-03-23,42832,1800,"[\""Keyboard\"", \""Phone\""]",3673.6,"{\""seasonal\"": \""6%\""}",261126,0,"""Africa""" +2023-05-05,42833,8098,"[\""Phone\"", \""Charger\""]",1572.12,{},264152,1,"""South America""" +2024-01-02,42834,4467,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1972.65,{},16790,0,"""Europe""" +2023-11-18,42835,8538,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1912.72,"{\"": \""15%\""}",220512,1,"""Europe""" +2023-07-14,42836,9705,"[\""Charger\"", \""Wireless Mouse\""]",4430.85,"{\"": \""27%\""}",22493,1,"""North America""" +2024-08-29,42837,6851,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2568.77,{},88454,1,"""South America""" +2023-09-28,42838,2700,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",318.9,{},42259,1,"""Europe""" +2023-10-08,42839,4884,"[\""Headphones\"", \""Monitor\""]",2348.04,"{\"": \""29%\""}",31041,0,"""Asia""" +2024-03-01,42840,8598,"[\""Charger\"", \""Phone\""]",275.83,{},26202,0,"""South America""" +2024-04-07,42841,665,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3715.3,{},241847,1,"""South America""" +2024-02-15,42842,7299,"[\""Phone\""]",4608.79,{},22358,0,"""North America""" +2023-02-27,42843,3392,"[\""Headphones\"", \""Charger\"", \""Phone\""]",826.38,{},207367,1,"""Europe""" +2023-04-24,42844,5063,"[\""Wireless Mouse\"", \""Phone\""]",473.37,{},261632,1,"""Europe""" +2023-05-14,42845,9226,"[\""Tablet\""]",990.69,{},57045,0,"""Africa""" +2024-09-10,42846,7073,"[\""Keyboard\""]",1656.96,{},15026,1,"""Europe""" +2023-09-07,42847,5271,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4730.38,{},64907,1,"""Asia""" +2023-04-03,42848,1618,"[\""Tablet\""]",3770.23,"{\""promo\"": \""17%\""}",270763,1,"""Africa""" +2024-10-26,42849,6486,"[\""Charger\"", \""Keyboard\""]",1343.82,"{\""promo\"": \""10%\""}",66331,0,"""Africa""" +2023-01-13,42850,2975,"[\""Charger\"", \""Phone\"", \""Tablet\""]",255.98,"{\""seasonal\"": \""7%\""}",83891,0,"""North America""" +2024-05-07,42851,5853,"[\""Phone\""]",678.62,{},272827,1,"""South America""" +2023-04-12,42852,6729,"[\""Tablet\""]",1434.35,"{\""seasonal\"": \""7%\""}",164360,0,"""North America""" +2024-09-10,42853,2362,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",796.06,"{\"": \""11%\""}",294231,0,"""South America""" +2023-07-16,42854,9566,"[\""Wireless Mouse\"", \""Tablet\""]",2310.31,"{\""promo\"": \""9%\""}",134086,1,"""Africa""" +2023-05-27,42855,1543,"[\""Wireless Mouse\"", \""Monitor\""]",318.01,"{\"": \""18%\""}",210714,1,"""Africa""" +2024-10-08,42856,1917,"[\""Tablet\""]",644.15,"{\""promo\"": \""28%\""}",188635,1,"""North America""" +2024-11-23,42857,6902,"[\""Keyboard\""]",1320.29,{},187385,0,"""Asia""" +2023-06-02,42858,6456,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4469.58,{},281592,1,"""North America""" +2023-09-20,42859,3514,"[\""Wireless Mouse\"", \""Monitor\""]",970.52,{},190132,0,"""Africa""" +2023-08-03,42860,6045,"[\""Charger\"", \""Tablet\""]",1436.05,{},67427,0,"""Africa""" +2024-10-27,42861,4041,"[\""Keyboard\"", \""Laptop\""]",808.0,"{\""loyalty\"": \""19%\""}",237568,0,"""Africa""" +2023-01-08,42862,1493,"[\""Tablet\""]",4274.55,"{\""promo\"": \""21%\""}",11765,1,"""North America""" +2023-09-20,42863,2056,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2641.57,{},125719,1,"""Asia""" +2024-05-17,42864,5741,"[\""Charger\""]",724.6,{},106590,0,"""Europe""" +2024-01-13,42865,8597,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2738.0,{},161452,0,"""Europe""" +2024-09-13,42866,2645,"[\""Wireless Mouse\""]",3755.61,{},275435,1,"""North America""" +2024-03-04,42867,4344,"[\""Wireless Mouse\"", \""Laptop\""]",4449.28,"{\""promo\"": \""17%\""}",182561,0,"""South America""" +2024-04-28,42868,5466,"[\""Charger\""]",3927.74,"{\"": \""9%\""}",229030,1,"""Africa""" +2024-06-21,42869,7778,"[\""Wireless Mouse\""]",705.09,{},270325,1,"""Africa""" +2024-11-12,42870,3874,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4584.53,{},53997,1,"""Europe""" +2024-11-09,42871,7289,"[\""Monitor\""]",2103.72,{},93233,0,"""South America""" +2023-06-24,42872,6981,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3017.4,"{\""loyalty\"": \""17%\""}",57611,1,"""South America""" +2024-07-03,42873,8299,"[\""Headphones\"", \""Keyboard\""]",511.41,"{\"": \""11%\""}",156324,1,"""Africa""" +2023-03-31,42874,2927,"[\""Charger\"", \""Monitor\""]",2646.57,{},273083,1,"""Europe""" +2024-08-07,42875,1961,"[\""Phone\"", \""Tablet\""]",2753.46,"{\""loyalty\"": \""15%\""}",289736,0,"""South America""" +2024-07-13,42876,4300,"[\""Monitor\""]",2757.6,{},45518,0,"""North America""" +2024-08-17,42877,1859,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1245.45,{},180747,0,"""Europe""" +2023-11-11,42878,3264,"[\""Laptop\"", \""Phone\""]",1288.86,"{\""seasonal\"": \""23%\""}",181896,1,"""Europe""" +2024-12-12,42879,6787,"[\""Laptop\"", \""Monitor\""]",3811.99,{},64376,0,"""Africa""" +2023-02-12,42880,7016,"[\""Monitor\"", \""Phone\""]",1755.66,{},223496,0,"""Africa""" +2024-02-17,42881,6587,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1893.96,"{\""seasonal\"": \""13%\""}",195771,0,"""South America""" +2023-04-23,42882,767,"[\""Keyboard\""]",773.91,"{\""seasonal\"": \""17%\""}",79091,1,"""Asia""" +2024-04-01,42883,3238,"[\""Charger\"", \""Headphones\""]",3052.97,"{\""promo\"": \""15%\""}",144838,0,"""Africa""" +2024-11-27,42884,4235,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1353.73,"{\"": \""25%\""}",98128,1,"""Asia""" +2024-08-07,42885,9683,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3234.43,"{\""promo\"": \""6%\""}",222158,0,"""Africa""" +2024-05-26,42886,1313,"[\""Keyboard\"", \""Laptop\""]",2203.05,{},133077,1,"""North America""" +2023-09-17,42887,4924,"[\""Phone\"", \""Headphones\""]",1224.8,"{\""loyalty\"": \""7%\""}",21158,1,"""Europe""" +2024-01-06,42888,4483,"[\""Tablet\""]",2326.46,"{\""seasonal\"": \""7%\""}",130838,0,"""Asia""" +2023-10-17,42889,102,"[\""Headphones\""]",4735.36,{},137767,1,"""North America""" +2024-11-27,42890,568,"[\""Tablet\"", \""Headphones\""]",1422.89,{},291242,0,"""Asia""" +2023-04-06,42891,7226,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",589.51,{},50028,1,"""North America""" +2023-09-24,42892,1940,"[\""Tablet\""]",3431.12,{},14655,0,"""Asia""" +2023-11-28,42893,1748,"[\""Wireless Mouse\"", \""Phone\""]",3762.15,"{\"": \""16%\""}",192047,1,"""Africa""" +2023-12-15,42894,4960,"[\""Laptop\""]",3570.15,"{\""seasonal\"": \""21%\""}",159826,1,"""Africa""" +2023-04-29,42895,394,"[\""Keyboard\"", \""Headphones\""]",376.01,{},128658,0,"""Europe""" +2024-06-19,42896,6312,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1207.37,{},130058,1,"""Europe""" +2024-01-07,42897,6465,"[\""Tablet\"", \""Phone\""]",1226.38,{},225694,1,"""Asia""" +2023-01-04,42898,5563,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2107.91,"{\""promo\"": \""20%\""}",256187,1,"""Europe""" +2024-10-19,42899,4915,"[\""Charger\"", \""Tablet\""]",566.46,"{\""promo\"": \""13%\""}",152308,1,"""Europe""" +2023-06-23,42900,6056,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2947.27,{},299644,1,"""Asia""" +2023-06-04,42901,5188,"[\""Phone\"", \""Headphones\""]",3127.1,{},244082,1,"""Asia""" +2024-10-10,42902,7593,"[\""Phone\"", \""Headphones\""]",4573.57,{},257901,1,"""Africa""" +2023-10-06,42903,7975,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3263.01,"{\""seasonal\"": \""30%\""}",30247,1,"""Africa""" +2024-07-11,42904,3431,"[\""Keyboard\""]",3019.75,"{\""seasonal\"": \""8%\""}",209219,1,"""Africa""" +2024-08-20,42905,7774,"[\""Laptop\""]",3082.39,"{\""seasonal\"": \""9%\""}",15029,0,"""Europe""" +2023-04-19,42906,6569,"[\""Wireless Mouse\""]",2711.73,{},245842,0,"""Europe""" +2023-06-26,42907,1021,"[\""Charger\""]",4038.34,"{\""seasonal\"": \""30%\""}",202160,1,"""Africa""" +2024-05-20,42908,8905,"[\""Phone\"", \""Monitor\""]",1963.59,{},172175,1,"""Africa""" +2023-08-07,42909,8874,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1657.28,"{\"": \""12%\""}",282411,0,"""Asia""" +2024-07-19,42910,5460,"[\""Keyboard\""]",684.27,"{\""seasonal\"": \""21%\""}",25344,1,"""Europe""" +2024-09-28,42911,4214,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1669.15,"{\""loyalty\"": \""10%\""}",285127,0,"""North America""" +2023-11-05,42912,4971,"[\""Wireless Mouse\""]",4653.93,{},22158,0,"""North America""" +2023-09-01,42913,1728,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2458.8,{},234565,1,"""Africa""" +2023-10-06,42914,9192,"[\""Tablet\"", \""Keyboard\""]",302.4,"{\"": \""8%\""}",121710,1,"""Africa""" +2024-05-24,42915,8085,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",134.46,"{\""loyalty\"": \""24%\""}",4980,1,"""Africa""" +2024-09-06,42916,4988,"[\""Phone\""]",3258.89,"{\""seasonal\"": \""25%\""}",121717,1,"""Europe""" +2023-09-09,42917,4756,"[\""Keyboard\""]",1845.5,{},190552,0,"""Africa""" +2024-02-24,42918,5700,"[\""Keyboard\"", \""Wireless Mouse\""]",1988.01,"{\""loyalty\"": \""26%\""}",247733,0,"""Africa""" +2024-01-19,42919,4225,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",715.94,"{\""promo\"": \""8%\""}",78988,1,"""Asia""" +2023-10-29,42920,7316,"[\""Phone\""]",3592.34,"{\""seasonal\"": \""23%\""}",158565,0,"""Asia""" +2024-11-22,42921,5737,"[\""Wireless Mouse\""]",2904.21,"{\""promo\"": \""16%\""}",176860,1,"""Africa""" +2023-04-16,42922,6861,"[\""Monitor\""]",1342.48,{},27829,1,"""North America""" +2024-08-14,42923,2401,"[\""Laptop\""]",4363.71,{},140118,1,"""South America""" +2023-06-18,42924,5839,"[\""Keyboard\""]",4476.59,{},23568,0,"""Africa""" +2023-03-07,42925,6025,"[\""Laptop\""]",4227.74,{},203243,1,"""South America""" +2024-11-22,42926,4979,"[\""Monitor\""]",3316.21,"{\""loyalty\"": \""29%\""}",9298,1,"""North America""" +2023-11-25,42927,8065,"[\""Laptop\"", \""Phone\""]",4589.24,"{\""loyalty\"": \""13%\""}",272007,0,"""Europe""" +2024-08-27,42928,252,"[\""Monitor\"", \""Tablet\""]",2684.98,{},270671,0,"""Africa""" +2024-11-15,42929,3006,"[\""Phone\"", \""Monitor\""]",4039.3,"{\""promo\"": \""25%\""}",96382,1,"""Africa""" +2024-03-21,42930,3581,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4509.39,{},267826,0,"""South America""" +2023-10-04,42931,9832,"[\""Monitor\""]",2087.04,{},230779,1,"""Europe""" +2024-08-19,42932,189,"[\""Phone\""]",3848.97,{},43725,1,"""South America""" +2024-10-02,42933,9629,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4905.5,"{\""seasonal\"": \""6%\""}",261102,1,"""Asia""" +2024-06-15,42934,3163,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2605.08,"{\"": \""13%\""}",204837,1,"""South America""" +2024-03-13,42935,4731,"[\""Charger\""]",3772.12,{},61782,1,"""North America""" +2023-12-19,42936,7003,"[\""Laptop\""]",3550.66,"{\""seasonal\"": \""13%\""}",172360,0,"""South America""" +2023-11-25,42937,9161,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4382.19,{},110093,1,"""Europe""" +2023-08-18,42938,3188,"[\""Charger\"", \""Tablet\""]",2832.64,{},183503,1,"""Europe""" +2024-12-05,42939,9566,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",371.36,{},190956,1,"""Africa""" +2024-11-27,42940,8255,"[\""Monitor\"", \""Keyboard\""]",2180.42,"{\""seasonal\"": \""17%\""}",264144,1,"""Asia""" +2023-06-11,42941,1824,"[\""Tablet\""]",2596.99,"{\""loyalty\"": \""11%\""}",285526,1,"""Asia""" +2023-03-04,42942,7888,"[\""Monitor\""]",2528.44,"{\""loyalty\"": \""15%\""}",35173,0,"""South America""" +2023-03-13,42943,8034,"[\""Keyboard\""]",4605.33,{},128946,0,"""South America""" +2024-05-03,42944,3197,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",821.67,{},135787,1,"""South America""" +2024-03-26,42945,2974,"[\""Laptop\"", \""Wireless Mouse\""]",4338.38,{},257414,0,"""South America""" +2024-04-28,42946,665,"[\""Monitor\"", \""Charger\""]",947.72,"{\""promo\"": \""19%\""}",293497,1,"""Europe""" +2024-01-18,42947,3895,"[\""Tablet\"", \""Headphones\""]",302.02,{},226548,1,"""South America""" +2024-10-31,42948,6066,"[\""Tablet\"", \""Laptop\""]",4281.1,{},230563,1,"""Africa""" +2024-10-27,42949,7771,"[\""Wireless Mouse\""]",123.72,{},250057,0,"""Europe""" +2024-06-10,42950,7646,"[\""Charger\"", \""Tablet\""]",4512.32,"{\""promo\"": \""9%\""}",187237,1,"""Europe""" +2023-03-14,42951,6897,"[\""Laptop\""]",4528.34,{},283799,1,"""Asia""" +2024-01-17,42952,653,"[\""Headphones\""]",1934.19,{},20040,1,"""Africa""" +2024-04-20,42953,7734,"[\""Headphones\""]",2538.21,{},50262,0,"""North America""" +2023-04-24,42954,4451,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2561.22,{},291761,0,"""Europe""" +2024-07-24,42955,8651,"[\""Wireless Mouse\"", \""Charger\""]",4347.2,{},200334,0,"""South America""" +2023-06-08,42956,8991,"[\""Charger\"", \""Phone\"", \""Tablet\""]",191.03,{},18469,0,"""North America""" +2023-02-06,42957,2405,"[\""Keyboard\""]",840.58,"{\""loyalty\"": \""27%\""}",121544,1,"""Africa""" +2023-07-24,42958,4740,"[\""Tablet\"", \""Headphones\""]",4664.96,"{\""loyalty\"": \""25%\""}",207605,1,"""Asia""" +2023-03-23,42959,9438,"[\""Keyboard\"", \""Tablet\""]",2564.27,"{\""loyalty\"": \""10%\""}",1501,1,"""Asia""" +2023-10-28,42960,3837,"[\""Tablet\"", \""Headphones\""]",3993.56,{},89990,1,"""Asia""" +2023-02-09,42961,9823,"[\""Charger\""]",1754.05,"{\"": \""20%\""}",188207,1,"""South America""" +2024-08-03,42962,1930,"[\""Monitor\"", \""Charger\""]",2956.76,"{\"": \""21%\""}",93960,1,"""Europe""" +2023-09-25,42963,4246,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4269.73,"{\""seasonal\"": \""28%\""}",212731,1,"""North America""" +2023-02-08,42964,2723,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2974.12,"{\""seasonal\"": \""22%\""}",24746,1,"""Europe""" +2024-09-16,42965,4756,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2511.85,"{\""seasonal\"": \""7%\""}",149193,1,"""Asia""" +2023-08-12,42966,1174,"[\""Monitor\"", \""Phone\""]",1873.79,"{\""promo\"": \""14%\""}",257261,1,"""South America""" +2024-06-23,42967,5897,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2614.56,"{\""loyalty\"": \""20%\""}",227996,1,"""Asia""" +2023-03-25,42968,5391,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1470.12,"{\""promo\"": \""25%\""}",89933,1,"""South America""" +2023-07-20,42969,6558,"[\""Charger\""]",4656.59,"{\""loyalty\"": \""12%\""}",20469,1,"""Africa""" +2023-03-20,42970,9585,"[\""Tablet\""]",54.04,{},276000,0,"""South America""" +2023-11-23,42971,9073,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2034.2,"{\""seasonal\"": \""25%\""}",129088,1,"""South America""" +2024-12-18,42972,8299,"[\""Monitor\"", \""Headphones\""]",1359.19,{},91347,0,"""North America""" +2023-09-05,42973,4230,"[\""Tablet\""]",673.78,"{\"": \""24%\""}",109479,0,"""Africa""" +2024-03-28,42974,2138,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1395.89,{},281700,0,"""South America""" +2023-01-18,42975,3811,"[\""Headphones\"", \""Phone\""]",3535.38,"{\""promo\"": \""11%\""}",15432,1,"""North America""" +2024-03-16,42976,5036,"[\""Wireless Mouse\"", \""Phone\""]",1273.89,"{\"": \""23%\""}",13488,1,"""Africa""" +2024-09-22,42977,4351,"[\""Phone\"", \""Monitor\""]",3298.25,"{\""seasonal\"": \""10%\""}",243322,1,"""Africa""" +2024-01-19,42978,8574,"[\""Charger\""]",3904.51,{},259487,0,"""South America""" +2023-10-14,42979,3392,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1344.4,"{\"": \""25%\""}",6917,0,"""Asia""" +2023-08-26,42980,3017,"[\""Keyboard\""]",3861.81,"{\""seasonal\"": \""18%\""}",93332,0,"""Africa""" +2024-09-13,42981,2094,"[\""Monitor\"", \""Phone\""]",3001.05,"{\""loyalty\"": \""27%\""}",215091,0,"""South America""" +2023-06-17,42982,5670,"[\""Wireless Mouse\""]",2638.4,"{\""promo\"": \""11%\""}",29056,0,"""Asia""" +2024-02-04,42983,6781,"[\""Keyboard\""]",870.7,"{\""loyalty\"": \""30%\""}",21122,0,"""Europe""" +2023-07-14,42984,8247,"[\""Keyboard\"", \""Tablet\""]",149.31,"{\""seasonal\"": \""23%\""}",64773,0,"""Europe""" +2023-09-18,42985,1815,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3029.65,"{\""loyalty\"": \""25%\""}",67227,0,"""South America""" +2023-02-27,42986,6438,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1537.19,{},253003,1,"""North America""" +2023-01-17,42987,6872,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3096.12,{},204189,0,"""Asia""" +2023-08-21,42988,1768,"[\""Headphones\""]",4336.79,"{\""seasonal\"": \""19%\""}",27951,0,"""South America""" +2024-10-07,42989,2759,"[\""Phone\"", \""Keyboard\""]",1096.7,"{\""loyalty\"": \""6%\""}",83877,1,"""Asia""" +2024-04-26,42990,7487,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1197.4,"{\""seasonal\"": \""19%\""}",193341,0,"""Europe""" +2023-07-05,42991,4602,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3807.52,"{\""promo\"": \""12%\""}",35091,0,"""Europe""" +2024-12-28,42992,7900,"[\""Headphones\"", \""Wireless Mouse\""]",414.54,{},86274,0,"""Europe""" +2024-07-03,42993,6117,"[\""Tablet\"", \""Laptop\""]",1719.42,{},137734,1,"""Europe""" +2023-08-09,42994,4970,"[\""Laptop\"", \""Monitor\""]",1325.97,"{\""promo\"": \""17%\""}",145546,0,"""Europe""" +2023-03-29,42995,3804,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1219.17,{},174426,0,"""South America""" +2024-05-30,42996,8645,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2263.44,{},151518,1,"""Asia""" +2024-11-03,42997,5217,"[\""Charger\"", \""Headphones\"", \""Phone\""]",435.76,{},240717,1,"""South America""" +2024-02-12,42998,1992,"[\""Keyboard\""]",4496.05,"{\""promo\"": \""27%\""}",15850,1,"""Asia""" +2023-08-19,42999,4900,"[\""Tablet\"", \""Keyboard\""]",1407.51,{},188986,0,"""Africa""" +2023-07-22,43000,5441,"[\""Wireless Mouse\"", \""Charger\""]",794.63,"{\"": \""7%\""}",166592,0,"""North America""" +2024-12-09,43001,1835,"[\""Monitor\""]",2366.8,"{\"": \""10%\""}",282099,1,"""South America""" +2024-03-20,43002,5019,"[\""Tablet\""]",3395.46,{},157669,0,"""Asia""" +2024-05-31,43003,5130,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3786.79,{},2183,1,"""Europe""" +2023-02-11,43004,5453,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3585.95,"{\"": \""20%\""}",247145,0,"""Europe""" +2023-09-29,43005,7374,"[\""Phone\""]",1101.24,"{\""seasonal\"": \""30%\""}",217879,0,"""South America""" +2024-07-14,43006,4999,"[\""Monitor\"", \""Laptop\""]",1628.95,{},211663,1,"""Europe""" +2023-09-26,43007,1580,"[\""Laptop\"", \""Charger\""]",4880.3,{},2660,1,"""South America""" +2023-08-26,43008,8033,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3747.23,"{\""promo\"": \""21%\""}",53452,0,"""Asia""" +2023-05-08,43009,2480,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",826.86,{},209147,1,"""Asia""" +2023-05-23,43010,6095,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4546.07,"{\""promo\"": \""15%\""}",241414,1,"""South America""" +2023-01-20,43011,4543,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1808.22,"{\"": \""18%\""}",236232,0,"""Africa""" +2024-04-06,43012,6507,"[\""Tablet\""]",4394.93,{},277301,0,"""Asia""" +2024-07-03,43013,4328,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4785.12,{},240139,0,"""North America""" +2024-10-06,43014,7941,"[\""Headphones\""]",3468.18,{},8712,1,"""South America""" +2023-04-27,43015,3504,"[\""Phone\"", \""Charger\""]",3358.63,"{\""loyalty\"": \""27%\""}",166723,0,"""Asia""" +2024-03-18,43016,6813,"[\""Tablet\"", \""Headphones\""]",1072.31,"{\""seasonal\"": \""25%\""}",214512,1,"""North America""" +2023-04-30,43017,4867,"[\""Laptop\"", \""Keyboard\""]",4939.29,{},6271,0,"""South America""" +2023-01-01,43018,5688,"[\""Headphones\"", \""Keyboard\""]",2892.6,"{\""loyalty\"": \""17%\""}",88072,0,"""North America""" +2024-05-07,43019,4935,"[\""Monitor\"", \""Tablet\""]",2983.55,{},133245,1,"""Africa""" +2024-06-07,43020,6092,"[\""Monitor\"", \""Keyboard\""]",4260.32,"{\""promo\"": \""22%\""}",73101,1,"""North America""" +2024-10-12,43021,8463,"[\""Laptop\""]",3490.56,{},73531,1,"""North America""" +2023-12-23,43022,1277,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4258.56,{},237882,1,"""North America""" +2024-05-24,43023,9942,"[\""Monitor\"", \""Tablet\""]",146.0,{},220322,0,"""North America""" +2023-01-08,43024,4781,"[\""Monitor\""]",835.55,{},200617,1,"""Asia""" +2023-01-18,43025,4774,"[\""Keyboard\""]",663.19,"{\""promo\"": \""21%\""}",84148,0,"""North America""" +2023-10-16,43026,3450,"[\""Phone\""]",1256.25,"{\"": \""9%\""}",76425,1,"""North America""" +2024-07-30,43027,3617,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4852.83,{},97891,1,"""Asia""" +2024-08-17,43028,4233,"[\""Phone\"", \""Laptop\""]",4543.98,{},202642,0,"""North America""" +2024-04-10,43029,7434,"[\""Charger\"", \""Headphones\""]",1326.23,{},293486,0,"""Asia""" +2023-11-04,43030,3245,"[\""Charger\"", \""Tablet\""]",2769.51,{},26300,1,"""Europe""" +2023-01-15,43031,6425,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3132.35,"{\"": \""10%\""}",182023,0,"""Africa""" +2023-02-28,43032,8562,"[\""Keyboard\"", \""Charger\""]",2236.73,{},68965,1,"""Africa""" +2024-02-13,43033,459,"[\""Keyboard\"", \""Laptop\""]",2207.61,"{\""loyalty\"": \""9%\""}",90240,1,"""North America""" +2023-12-29,43034,1339,"[\""Monitor\""]",3760.02,"{\""promo\"": \""29%\""}",294965,1,"""Europe""" +2024-02-25,43035,7347,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1834.69,"{\"": \""21%\""}",159013,1,"""South America""" +2023-01-20,43036,7166,"[\""Wireless Mouse\""]",1941.29,{},252784,1,"""Europe""" +2024-03-07,43037,8187,"[\""Charger\""]",4000.74,"{\"": \""10%\""}",260570,0,"""Asia""" +2023-07-14,43038,7253,"[\""Headphones\"", \""Laptop\""]",630.31,"{\""loyalty\"": \""23%\""}",51373,1,"""South America""" +2024-04-15,43039,6188,"[\""Keyboard\"", \""Wireless Mouse\""]",2708.0,{},144752,1,"""South America""" +2024-08-29,43040,4551,"[\""Laptop\"", \""Wireless Mouse\""]",382.0,"{\"": \""16%\""}",103418,1,"""Europe""" +2023-07-08,43041,5394,"[\""Laptop\""]",1896.13,{},199962,1,"""North America""" +2024-06-04,43042,6015,"[\""Headphones\"", \""Wireless Mouse\""]",4123.87,"{\""loyalty\"": \""19%\""}",139754,0,"""Africa""" +2023-09-11,43043,3269,"[\""Keyboard\""]",1060.56,"{\"": \""7%\""}",110939,1,"""South America""" +2024-02-01,43044,5220,"[\""Headphones\""]",1062.34,{},63627,0,"""Africa""" +2024-12-01,43045,1378,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1671.28,"{\""seasonal\"": \""28%\""}",203192,1,"""North America""" +2024-11-12,43046,3632,"[\""Phone\""]",4936.64,{},77625,0,"""Europe""" +2023-03-17,43047,4688,"[\""Phone\""]",2234.98,"{\""seasonal\"": \""7%\""}",280366,1,"""South America""" +2023-01-30,43048,8597,"[\""Charger\"", \""Laptop\""]",3525.25,{},236635,0,"""North America""" +2024-05-01,43049,7122,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",779.1,"{\""promo\"": \""16%\""}",29191,1,"""Europe""" +2023-12-21,43050,1494,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2340.28,{},6723,0,"""North America""" +2024-02-08,43051,7187,"[\""Headphones\"", \""Charger\""]",2938.4,{},245477,1,"""South America""" +2023-08-15,43052,1574,"[\""Headphones\""]",4022.66,"{\"": \""22%\""}",23484,0,"""North America""" +2024-11-24,43053,2758,"[\""Tablet\""]",928.96,"{\"": \""23%\""}",133328,0,"""Asia""" +2023-04-02,43054,527,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4953.58,{},8539,0,"""South America""" +2024-07-04,43055,5289,"[\""Phone\"", \""Headphones\""]",4369.61,"{\"": \""9%\""}",84424,0,"""Europe""" +2024-10-30,43056,6603,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2646.32,{},197306,1,"""Asia""" +2023-01-15,43057,9721,"[\""Phone\"", \""Monitor\""]",1737.89,{},202551,1,"""Asia""" +2024-05-02,43058,5869,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4555.0,{},65087,0,"""North America""" +2023-01-17,43059,2095,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4180.56,"{\""loyalty\"": \""18%\""}",155004,1,"""North America""" +2024-10-19,43060,331,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4490.49,"{\""loyalty\"": \""13%\""}",29254,1,"""Europe""" +2024-01-04,43061,1157,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4371.94,"{\""seasonal\"": \""28%\""}",132552,1,"""South America""" +2023-09-10,43062,9343,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",425.06,{},61531,1,"""Asia""" +2024-02-29,43063,7028,"[\""Charger\""]",2477.55,"{\""loyalty\"": \""22%\""}",117014,0,"""Africa""" +2024-01-04,43064,2953,"[\""Wireless Mouse\""]",126.89,{},74037,1,"""South America""" +2024-03-11,43065,6700,"[\""Monitor\"", \""Wireless Mouse\""]",705.72,{},282015,1,"""South America""" +2024-04-28,43066,7808,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4250.53,{},125238,1,"""Europe""" +2024-04-19,43067,5586,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2810.96,"{\""promo\"": \""22%\""}",20108,1,"""Europe""" +2023-10-23,43068,1997,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3534.47,{},242510,1,"""Asia""" +2024-11-12,43069,4016,"[\""Laptop\"", \""Headphones\""]",3604.72,"{\""seasonal\"": \""16%\""}",205489,1,"""Asia""" +2024-09-27,43070,1039,"[\""Laptop\""]",4401.2,"{\"": \""30%\""}",187266,1,"""South America""" +2023-02-23,43071,6735,"[\""Charger\""]",764.5,"{\""loyalty\"": \""30%\""}",99178,1,"""South America""" +2023-08-27,43072,8807,"[\""Monitor\"", \""Tablet\""]",2424.28,{},157527,0,"""South America""" +2024-03-07,43073,536,"[\""Wireless Mouse\""]",4473.8,"{\""loyalty\"": \""15%\""}",56127,0,"""South America""" +2023-03-05,43074,1465,"[\""Tablet\"", \""Monitor\""]",4216.03,{},200281,1,"""Europe""" +2024-08-26,43075,768,"[\""Laptop\""]",3181.15,{},141677,0,"""Africa""" +2024-07-21,43076,7374,"[\""Tablet\""]",2401.08,"{\""promo\"": \""28%\""}",237076,1,"""Europe""" +2023-07-20,43077,9501,"[\""Headphones\"", \""Tablet\""]",4451.65,"{\"": \""14%\""}",249687,0,"""Asia""" +2024-12-23,43078,2940,"[\""Monitor\""]",1668.48,{},264789,1,"""South America""" +2024-05-30,43079,1406,"[\""Tablet\""]",1098.52,"{\""promo\"": \""6%\""}",119335,0,"""North America""" +2023-07-12,43080,7919,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3004.05,"{\""promo\"": \""18%\""}",249895,0,"""South America""" +2024-11-18,43081,7068,"[\""Monitor\"", \""Charger\""]",60.94,{},100780,1,"""South America""" +2024-09-22,43082,2851,"[\""Monitor\"", \""Keyboard\""]",2102.09,{},55563,0,"""North America""" +2023-12-06,43083,7842,"[\""Wireless Mouse\"", \""Monitor\""]",694.33,"{\""loyalty\"": \""24%\""}",110323,0,"""North America""" +2024-05-13,43084,1880,"[\""Keyboard\""]",1794.17,{},295185,1,"""Asia""" +2023-01-04,43085,8498,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",482.04,{},13666,0,"""Africa""" +2023-02-17,43086,9715,"[\""Monitor\"", \""Tablet\""]",1290.24,{},222202,0,"""Europe""" +2023-09-02,43087,2330,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",247.63,"{\""loyalty\"": \""11%\""}",27779,1,"""Asia""" +2023-03-01,43088,3377,"[\""Headphones\""]",1099.74,"{\""loyalty\"": \""8%\""}",40651,0,"""South America""" +2024-12-26,43089,7646,"[\""Monitor\""]",3839.61,"{\""promo\"": \""16%\""}",80523,0,"""Africa""" +2024-11-13,43090,1922,"[\""Tablet\""]",1672.2,"{\""loyalty\"": \""20%\""}",274426,1,"""Asia""" +2023-06-16,43091,9386,"[\""Phone\"", \""Wireless Mouse\""]",2870.71,{},280404,1,"""South America""" +2023-10-28,43092,3758,"[\""Phone\""]",2950.48,{},247228,0,"""North America""" +2023-02-26,43093,6018,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",260.59,"{\""seasonal\"": \""26%\""}",54889,0,"""Africa""" +2023-10-01,43094,5001,"[\""Headphones\"", \""Tablet\""]",2181.61,"{\""seasonal\"": \""5%\""}",66669,0,"""North America""" +2024-12-18,43095,8937,"[\""Laptop\""]",1010.47,{},168692,1,"""North America""" +2023-08-24,43096,5751,"[\""Tablet\"", \""Laptop\""]",2107.4,"{\""seasonal\"": \""30%\""}",137931,1,"""South America""" +2023-06-01,43097,6403,"[\""Laptop\""]",1461.28,"{\"": \""7%\""}",1298,1,"""Asia""" +2024-05-30,43098,6507,"[\""Keyboard\"", \""Laptop\""]",4933.02,{},159576,1,"""South America""" +2023-08-12,43099,6034,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4477.65,"{\""promo\"": \""25%\""}",11483,1,"""Europe""" +2023-12-08,43100,3867,"[\""Charger\""]",1858.5,"{\""seasonal\"": \""23%\""}",264032,0,"""Africa""" +2023-12-17,43101,324,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3146.32,{},299692,0,"""North America""" +2023-01-23,43102,1370,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",134.5,{},283043,0,"""North America""" +2023-02-07,43103,6662,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2163.24,"{\"": \""28%\""}",117482,1,"""North America""" +2023-05-18,43104,2237,"[\""Headphones\""]",566.99,"{\""loyalty\"": \""18%\""}",204662,1,"""North America""" +2024-12-13,43105,1732,"[\""Keyboard\"", \""Monitor\""]",66.03,"{\""promo\"": \""9%\""}",215801,0,"""South America""" +2024-12-19,43106,3366,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",601.73,{},250350,1,"""Europe""" +2023-11-21,43107,3401,"[\""Laptop\""]",2542.88,"{\"": \""18%\""}",72962,0,"""Asia""" +2024-07-15,43108,2405,"[\""Wireless Mouse\"", \""Charger\""]",2728.39,{},77642,1,"""Asia""" +2023-03-24,43109,3024,"[\""Monitor\"", \""Wireless Mouse\""]",3021.34,{},141996,0,"""North America""" +2023-12-23,43110,1333,"[\""Monitor\"", \""Charger\""]",3827.17,{},31497,1,"""Asia""" +2024-11-27,43111,7661,"[\""Headphones\"", \""Charger\""]",1815.33,"{\""seasonal\"": \""19%\""}",13009,0,"""Europe""" +2023-08-05,43112,5928,"[\""Charger\""]",4743.23,{},297497,1,"""Africa""" +2023-01-29,43113,6414,"[\""Charger\""]",2581.27,"{\""seasonal\"": \""27%\""}",295496,1,"""Asia""" +2023-04-26,43114,3413,"[\""Monitor\"", \""Keyboard\""]",4859.88,{},56770,0,"""South America""" +2024-02-13,43115,2219,"[\""Phone\""]",1796.64,"{\""promo\"": \""11%\""}",197896,0,"""Europe""" +2024-08-22,43116,9726,"[\""Keyboard\"", \""Tablet\""]",2241.72,{},99297,0,"""Europe""" +2023-10-08,43117,9390,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3486.85,"{\""seasonal\"": \""24%\""}",148522,0,"""North America""" +2023-01-24,43118,3507,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3293.96,"{\""seasonal\"": \""15%\""}",52693,1,"""Europe""" +2023-08-02,43119,2527,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1297.62,{},157361,0,"""South America""" +2024-08-09,43120,8552,"[\""Monitor\"", \""Charger\""]",4797.54,{},210968,1,"""North America""" +2023-04-06,43121,9280,"[\""Wireless Mouse\"", \""Keyboard\""]",1798.59,{},93872,1,"""North America""" +2024-02-06,43122,2934,"[\""Phone\"", \""Monitor\""]",919.69,{},223959,1,"""North America""" +2023-10-13,43123,9789,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",129.16,"{\"": \""13%\""}",262407,1,"""Europe""" +2023-07-05,43124,7769,"[\""Wireless Mouse\"", \""Charger\""]",571.29,{},227192,1,"""Europe""" +2024-07-06,43125,9316,"[\""Headphones\"", \""Keyboard\""]",334.08,{},5515,0,"""South America""" +2024-12-22,43126,5695,"[\""Headphones\""]",2041.75,{},155410,1,"""Europe""" +2023-08-10,43127,641,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1555.91,"{\""seasonal\"": \""21%\""}",206599,1,"""Asia""" +2024-02-24,43128,6721,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",354.85,{},267267,1,"""Europe""" +2023-04-11,43129,7199,"[\""Laptop\""]",4155.44,{},276714,1,"""Europe""" +2023-11-06,43130,3280,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3004.02,{},251483,1,"""Europe""" +2024-06-10,43131,7996,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",183.75,{},243364,1,"""North America""" +2023-12-07,43132,6248,"[\""Charger\""]",3136.64,{},102819,1,"""Africa""" +2024-01-17,43133,3714,"[\""Monitor\""]",3575.72,"{\""promo\"": \""29%\""}",89661,0,"""North America""" +2023-08-25,43134,5468,"[\""Phone\""]",4571.72,{},226944,1,"""Asia""" +2024-12-27,43135,8286,"[\""Keyboard\"", \""Phone\""]",2772.19,{},197122,1,"""Asia""" +2024-03-12,43136,9935,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4005.82,"{\""loyalty\"": \""15%\""}",179373,0,"""South America""" +2023-10-04,43137,3608,"[\""Laptop\""]",3439.76,"{\""loyalty\"": \""27%\""}",84376,1,"""South America""" +2024-08-01,43138,7608,"[\""Keyboard\""]",797.22,"{\"": \""10%\""}",141052,1,"""Africa""" +2024-02-07,43139,9436,"[\""Phone\""]",3731.21,{},9541,1,"""North America""" +2024-09-28,43140,9350,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",274.55,{},275219,0,"""Africa""" +2023-10-16,43141,2070,"[\""Tablet\""]",1309.1,{},109540,0,"""Africa""" +2023-03-27,43142,8484,"[\""Charger\""]",4087.03,{},21838,1,"""Africa""" +2024-12-03,43143,4439,"[\""Headphones\"", \""Keyboard\""]",3694.0,{},132292,0,"""South America""" +2023-03-11,43144,2174,"[\""Wireless Mouse\""]",2637.76,"{\""seasonal\"": \""19%\""}",142034,0,"""South America""" +2024-12-15,43145,7615,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4846.51,"{\""promo\"": \""20%\""}",21025,1,"""Asia""" +2023-06-11,43146,3610,"[\""Laptop\""]",4122.0,"{\""seasonal\"": \""29%\""}",45356,0,"""Asia""" +2023-12-18,43147,8465,"[\""Charger\"", \""Wireless Mouse\""]",742.1,"{\"": \""13%\""}",221205,0,"""North America""" +2024-01-24,43148,49,"[\""Keyboard\"", \""Charger\""]",1606.88,{},59741,0,"""Africa""" +2024-11-14,43149,8878,"[\""Phone\"", \""Tablet\""]",867.95,"{\""loyalty\"": \""6%\""}",213477,0,"""Africa""" +2023-09-13,43150,2472,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",748.26,{},45913,0,"""Africa""" +2024-09-22,43151,38,"[\""Keyboard\""]",409.0,{},135196,0,"""South America""" +2023-11-03,43152,4399,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3391.48,{},272166,1,"""North America""" +2023-02-01,43153,8108,"[\""Headphones\"", \""Wireless Mouse\""]",2436.41,"{\""seasonal\"": \""11%\""}",47995,0,"""Asia""" +2023-03-13,43154,380,"[\""Tablet\""]",3648.2,{},73673,1,"""Africa""" +2024-02-02,43155,9228,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4408.59,{},74182,1,"""South America""" +2023-01-25,43156,5000,"[\""Tablet\""]",4619.36,{},60919,1,"""Europe""" +2024-01-07,43157,9757,"[\""Headphones\"", \""Wireless Mouse\""]",739.32,"{\""loyalty\"": \""13%\""}",189510,1,"""Asia""" +2023-10-25,43158,2741,"[\""Charger\"", \""Laptop\""]",4172.42,{},49114,1,"""North America""" +2023-06-19,43159,4001,"[\""Monitor\"", \""Laptop\""]",2485.97,"{\""promo\"": \""5%\""}",68570,0,"""North America""" +2023-12-10,43160,6142,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2764.37,"{\""promo\"": \""28%\""}",3388,0,"""South America""" +2023-02-22,43161,2014,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1817.88,{},252840,1,"""Europe""" +2024-03-13,43162,2286,"[\""Headphones\"", \""Laptop\""]",1427.09,{},208021,1,"""North America""" +2024-07-16,43163,4977,"[\""Headphones\"", \""Monitor\""]",1631.16,{},87830,0,"""Africa""" +2023-05-27,43164,2824,"[\""Charger\""]",2505.84,"{\"": \""28%\""}",14226,1,"""North America""" +2023-02-27,43165,8293,"[\""Wireless Mouse\"", \""Tablet\""]",173.36,"{\""seasonal\"": \""21%\""}",281864,0,"""South America""" +2024-05-28,43166,5558,"[\""Tablet\""]",4095.13,{},212396,1,"""Europe""" +2023-11-07,43167,44,"[\""Wireless Mouse\""]",2131.08,"{\"": \""18%\""}",72303,1,"""North America""" +2024-01-12,43168,7162,"[\""Monitor\"", \""Keyboard\""]",4157.84,{},65228,1,"""Europe""" +2024-07-10,43169,6833,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3629.27,"{\""loyalty\"": \""13%\""}",70082,0,"""Africa""" +2024-06-25,43170,6457,"[\""Keyboard\""]",2809.39,"{\""loyalty\"": \""13%\""}",128942,1,"""North America""" +2023-12-26,43171,2032,"[\""Wireless Mouse\""]",2069.04,{},71525,0,"""Europe""" +2023-04-24,43172,7602,"[\""Laptop\"", \""Wireless Mouse\""]",4137.22,"{\""seasonal\"": \""6%\""}",32419,1,"""South America""" +2023-02-11,43173,3105,"[\""Charger\""]",1925.6,"{\""promo\"": \""8%\""}",50113,0,"""Africa""" +2023-01-11,43174,3658,"[\""Laptop\"", \""Wireless Mouse\""]",3929.26,{},109566,1,"""Asia""" +2023-03-08,43175,7469,"[\""Keyboard\""]",4687.39,{},114570,0,"""South America""" +2024-06-23,43176,9553,"[\""Keyboard\""]",4270.39,{},252899,0,"""Europe""" +2023-02-12,43177,3296,"[\""Phone\""]",564.46,"{\""seasonal\"": \""26%\""}",3758,1,"""Asia""" +2023-02-20,43178,8525,"[\""Wireless Mouse\""]",1959.17,"{\""promo\"": \""5%\""}",255122,0,"""South America""" +2023-03-17,43179,1645,"[\""Phone\""]",1287.5,{},134539,1,"""Europe""" +2023-10-24,43180,2043,"[\""Charger\""]",3269.41,"{\"": \""24%\""}",74571,0,"""South America""" +2024-08-18,43181,3284,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3341.05,{},106405,1,"""Europe""" +2023-04-12,43182,4805,"[\""Laptop\"", \""Headphones\""]",4195.89,"{\""seasonal\"": \""10%\""}",247449,1,"""North America""" +2023-08-01,43183,9461,"[\""Phone\""]",860.79,"{\""seasonal\"": \""26%\""}",208986,0,"""Europe""" +2023-04-20,43184,3262,"[\""Charger\"", \""Phone\""]",3889.37,{},10799,1,"""South America""" +2023-03-20,43185,4724,"[\""Headphones\""]",2654.8,"{\"": \""15%\""}",36018,0,"""North America""" +2023-04-24,43186,5621,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",951.34,"{\""promo\"": \""23%\""}",151744,0,"""North America""" +2024-11-11,43187,5279,"[\""Wireless Mouse\"", \""Keyboard\""]",3117.47,{},12472,1,"""Africa""" +2023-02-21,43188,8441,"[\""Charger\""]",4716.39,"{\""loyalty\"": \""25%\""}",102144,0,"""Africa""" +2024-06-11,43189,5519,"[\""Laptop\"", \""Phone\""]",1469.95,"{\""promo\"": \""9%\""}",148928,0,"""South America""" +2024-07-26,43190,954,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4912.32,{},271008,1,"""Europe""" +2024-10-15,43191,3133,"[\""Charger\"", \""Wireless Mouse\""]",2107.25,"{\"": \""22%\""}",298667,0,"""South America""" +2024-03-20,43192,594,"[\""Tablet\""]",3126.86,"{\"": \""26%\""}",259747,0,"""Africa""" +2023-10-23,43193,3768,"[\""Charger\""]",1133.41,{},52878,1,"""Asia""" +2023-11-18,43194,7605,"[\""Phone\""]",3841.14,{},128004,0,"""Asia""" +2023-01-09,43195,1043,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4906.45,{},226113,1,"""Europe""" +2023-07-08,43196,8943,"[\""Phone\"", \""Laptop\""]",2759.73,"{\""promo\"": \""16%\""}",145885,1,"""Asia""" +2024-01-18,43197,7040,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4006.86,"{\""seasonal\"": \""11%\""}",30764,1,"""Africa""" +2023-05-13,43198,9697,"[\""Wireless Mouse\"", \""Charger\""]",335.14,"{\""loyalty\"": \""25%\""}",299481,1,"""North America""" +2023-11-18,43199,355,"[\""Tablet\"", \""Keyboard\""]",3474.04,"{\""loyalty\"": \""10%\""}",105225,0,"""North America""" +2023-12-20,43200,850,"[\""Tablet\"", \""Headphones\""]",756.35,"{\""loyalty\"": \""25%\""}",69793,1,"""Europe""" +2023-07-17,43201,659,"[\""Keyboard\"", \""Charger\""]",1113.12,"{\""seasonal\"": \""14%\""}",253297,1,"""North America""" +2023-05-06,43202,875,"[\""Charger\""]",326.56,{},253890,1,"""South America""" +2024-07-18,43203,7134,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3516.47,"{\""loyalty\"": \""24%\""}",10859,0,"""Africa""" +2023-12-27,43204,9311,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1361.83,{},226043,1,"""Europe""" +2024-11-10,43205,3497,"[\""Headphones\"", \""Tablet\""]",4886.97,"{\"": \""14%\""}",113026,1,"""Asia""" +2023-09-03,43206,940,"[\""Laptop\"", \""Headphones\""]",1373.53,"{\""loyalty\"": \""15%\""}",263658,0,"""North America""" +2023-09-08,43207,5157,"[\""Monitor\""]",437.81,"{\""seasonal\"": \""19%\""}",87967,0,"""South America""" +2023-08-20,43208,5789,"[\""Charger\"", \""Tablet\""]",2710.38,{},31292,1,"""Africa""" +2023-09-11,43209,4987,"[\""Keyboard\"", \""Phone\""]",3634.31,"{\""loyalty\"": \""24%\""}",101558,1,"""South America""" +2024-12-13,43210,8234,"[\""Keyboard\""]",1700.05,"{\""seasonal\"": \""21%\""}",195126,1,"""Europe""" +2023-10-19,43211,992,"[\""Keyboard\""]",408.89,"{\"": \""27%\""}",39501,0,"""Europe""" +2024-02-15,43212,3918,"[\""Monitor\"", \""Laptop\""]",1189.8,{},180574,1,"""South America""" +2023-09-28,43213,9772,"[\""Phone\"", \""Charger\""]",1688.33,{},45471,0,"""Europe""" +2023-02-02,43214,4920,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2198.4,{},91246,1,"""North America""" +2024-11-09,43215,7720,"[\""Phone\""]",3652.27,"{\""seasonal\"": \""13%\""}",99749,0,"""Africa""" +2024-06-17,43216,1961,"[\""Phone\""]",4408.13,"{\""loyalty\"": \""9%\""}",151239,0,"""Africa""" +2023-03-08,43217,7588,"[\""Charger\"", \""Keyboard\""]",2930.76,{},102400,1,"""Asia""" +2024-02-27,43218,6309,"[\""Laptop\""]",232.98,"{\""promo\"": \""17%\""}",95134,1,"""Africa""" +2023-09-13,43219,3856,"[\""Laptop\""]",1751.49,{},194858,1,"""North America""" +2023-10-11,43220,4076,"[\""Charger\""]",2957.67,{},296690,1,"""Asia""" +2023-06-03,43221,6098,"[\""Wireless Mouse\"", \""Charger\""]",2172.79,{},241389,1,"""North America""" +2024-05-26,43222,6034,"[\""Wireless Mouse\""]",97.28,{},34505,1,"""North America""" +2023-12-09,43223,7921,"[\""Wireless Mouse\"", \""Keyboard\""]",4158.67,"{\"": \""16%\""}",103717,0,"""North America""" +2023-10-07,43224,7247,"[\""Tablet\"", \""Monitor\""]",3523.31,{},74725,1,"""Asia""" +2023-01-06,43225,4617,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4075.09,{},35515,0,"""North America""" +2024-12-10,43226,1276,"[\""Phone\"", \""Wireless Mouse\""]",243.94,"{\""loyalty\"": \""10%\""}",209136,0,"""Africa""" +2023-08-21,43227,5345,"[\""Wireless Mouse\""]",524.95,{},184002,1,"""South America""" +2023-03-28,43228,4090,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3583.43,{},55098,1,"""Europe""" +2023-12-09,43229,4783,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3722.43,{},10379,0,"""Asia""" +2023-11-08,43230,9782,"[\""Keyboard\"", \""Headphones\""]",2004.93,"{\""seasonal\"": \""19%\""}",142085,1,"""Africa""" +2024-03-23,43231,7470,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3012.5,"{\""seasonal\"": \""9%\""}",196135,0,"""Asia""" +2024-10-12,43232,4865,"[\""Wireless Mouse\""]",3547.27,"{\""loyalty\"": \""27%\""}",274921,0,"""Africa""" +2024-06-21,43233,3402,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3916.34,{},242493,0,"""Europe""" +2024-10-22,43234,4223,"[\""Keyboard\""]",399.7,"{\""seasonal\"": \""22%\""}",114151,1,"""Africa""" +2023-05-30,43235,2845,"[\""Headphones\"", \""Wireless Mouse\""]",3105.84,"{\""loyalty\"": \""19%\""}",202885,1,"""Europe""" +2023-02-21,43236,5473,"[\""Monitor\""]",4210.76,"{\""promo\"": \""22%\""}",99869,0,"""Africa""" +2023-12-31,43237,2384,"[\""Laptop\"", \""Keyboard\""]",4232.73,"{\""loyalty\"": \""18%\""}",20398,0,"""South America""" +2024-04-29,43238,6544,"[\""Wireless Mouse\""]",3632.07,{},176339,1,"""Europe""" +2023-10-24,43239,3247,"[\""Phone\"", \""Laptop\""]",2184.83,{},3948,1,"""North America""" +2024-05-31,43240,3601,"[\""Headphones\""]",3115.98,"{\""promo\"": \""14%\""}",248935,1,"""North America""" +2024-12-30,43241,370,"[\""Headphones\"", \""Phone\""]",2453.37,{},53193,0,"""South America""" +2023-05-11,43242,4888,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3073.68,{},72397,1,"""Asia""" +2023-03-08,43243,9037,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4302.92,{},91722,0,"""Europe""" +2023-02-18,43244,8896,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4403.78,"{\""seasonal\"": \""15%\""}",149207,0,"""South America""" +2023-07-18,43245,9775,"[\""Tablet\"", \""Laptop\""]",2448.79,"{\""seasonal\"": \""8%\""}",133954,0,"""Europe""" +2024-09-07,43246,5833,"[\""Phone\"", \""Headphones\""]",1991.66,"{\""promo\"": \""18%\""}",11121,1,"""Africa""" +2023-09-03,43247,9109,"[\""Laptop\""]",2189.88,{},283276,0,"""Europe""" +2024-11-24,43248,8667,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4533.88,{},240907,1,"""Asia""" +2023-06-15,43249,5185,"[\""Headphones\"", \""Charger\""]",4856.38,{},190605,1,"""Africa""" +2023-01-04,43250,198,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2100.93,{},166108,0,"""Africa""" +2023-09-25,43251,8352,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",773.85,{},67674,1,"""Asia""" +2023-07-23,43252,7259,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3213.09,"{\""promo\"": \""25%\""}",68178,1,"""Asia""" +2023-01-12,43253,7946,"[\""Keyboard\"", \""Charger\""]",2098.86,{},112429,1,"""North America""" +2023-06-13,43254,4181,"[\""Keyboard\""]",2720.23,"{\""loyalty\"": \""17%\""}",18200,0,"""South America""" +2024-02-10,43255,4590,"[\""Wireless Mouse\""]",615.68,"{\""seasonal\"": \""16%\""}",57621,0,"""North America""" +2024-03-13,43256,1085,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1722.29,"{\""seasonal\"": \""14%\""}",231471,0,"""Asia""" +2024-08-06,43257,9760,"[\""Phone\""]",1486.87,"{\""promo\"": \""29%\""}",95197,0,"""Asia""" +2023-03-19,43258,4809,"[\""Phone\""]",4411.12,{},55804,0,"""Africa""" +2024-04-07,43259,9801,"[\""Wireless Mouse\""]",1549.59,"{\""loyalty\"": \""8%\""}",11714,1,"""South America""" +2024-12-23,43260,3708,"[\""Keyboard\""]",4292.19,"{\""seasonal\"": \""30%\""}",80041,1,"""Africa""" +2023-09-03,43261,395,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3823.78,{},134968,0,"""South America""" +2024-10-05,43262,9599,"[\""Headphones\""]",2761.1,"{\""promo\"": \""18%\""}",72683,0,"""Africa""" +2024-06-26,43263,3446,"[\""Tablet\""]",3334.54,"{\""loyalty\"": \""17%\""}",269773,0,"""North America""" +2023-11-15,43264,5667,"[\""Monitor\"", \""Tablet\""]",367.07,{},110092,0,"""Asia""" +2023-09-24,43265,7171,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4189.33,{},219744,0,"""Europe""" +2023-07-04,43266,4716,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2960.03,"{\""seasonal\"": \""9%\""}",259040,1,"""North America""" +2023-04-25,43267,3257,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4606.15,{},87681,0,"""South America""" +2024-09-22,43268,8115,"[\""Phone\""]",2827.18,{},60175,1,"""North America""" +2023-03-09,43269,9732,"[\""Phone\""]",204.51,"{\""seasonal\"": \""8%\""}",99894,1,"""Africa""" +2023-08-17,43270,8470,"[\""Headphones\"", \""Phone\""]",3687.72,{},254922,0,"""Africa""" +2023-10-26,43271,7902,"[\""Charger\""]",1268.68,{},46142,1,"""North America""" +2023-04-22,43272,2440,"[\""Phone\"", \""Monitor\""]",62.97,"{\""promo\"": \""13%\""}",5485,0,"""Africa""" +2024-04-28,43273,3775,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3248.4,{},235845,0,"""Europe""" +2023-11-05,43274,5078,"[\""Charger\"", \""Monitor\""]",1262.31,{},2546,0,"""North America""" +2023-07-29,43275,2309,"[\""Charger\"", \""Monitor\""]",2225.99,{},117823,0,"""South America""" +2024-10-10,43276,1894,"[\""Wireless Mouse\""]",4008.7,{},67778,1,"""Africa""" +2024-07-05,43277,5701,"[\""Keyboard\"", \""Charger\""]",810.56,{},163365,1,"""Africa""" +2023-12-05,43278,9554,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3811.05,"{\""seasonal\"": \""15%\""}",81147,0,"""Europe""" +2023-01-04,43279,4606,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4829.77,{},172456,0,"""Asia""" +2024-02-01,43280,3681,"[\""Headphones\"", \""Monitor\""]",4788.78,"{\""promo\"": \""22%\""}",88872,0,"""North America""" +2023-08-11,43281,3447,"[\""Tablet\"", \""Wireless Mouse\""]",1389.45,"{\""loyalty\"": \""21%\""}",249934,0,"""North America""" +2024-02-04,43282,8434,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3190.7,"{\""loyalty\"": \""10%\""}",249250,1,"""Africa""" +2024-05-22,43283,7630,"[\""Wireless Mouse\""]",1610.36,{},174095,1,"""South America""" +2024-06-07,43284,9989,"[\""Monitor\""]",442.65,"{\""promo\"": \""15%\""}",76937,0,"""Asia""" +2023-12-26,43285,5922,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",525.25,{},17222,0,"""North America""" +2024-03-17,43286,2024,"[\""Headphones\"", \""Tablet\""]",3378.14,"{\""promo\"": \""23%\""}",294063,0,"""South America""" +2023-04-05,43287,6672,"[\""Headphones\""]",1436.44,{},70055,0,"""North America""" +2023-06-25,43288,3471,"[\""Laptop\""]",340.26,"{\""promo\"": \""5%\""}",298384,1,"""Europe""" +2023-11-29,43289,2719,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2455.37,"{\""seasonal\"": \""6%\""}",18444,1,"""North America""" +2023-08-22,43290,2296,"[\""Headphones\"", \""Charger\""]",4156.31,{},56212,1,"""South America""" +2024-01-24,43291,6582,"[\""Headphones\"", \""Wireless Mouse\""]",4954.78,"{\""promo\"": \""14%\""}",162951,1,"""Africa""" +2023-02-24,43292,5255,"[\""Laptop\"", \""Headphones\""]",2865.97,{},255690,1,"""South America""" +2024-02-29,43293,1959,"[\""Wireless Mouse\""]",4421.2,"{\"": \""10%\""}",250243,0,"""Asia""" +2024-06-18,43294,3311,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3672.16,{},53889,0,"""South America""" +2023-06-23,43295,7675,"[\""Laptop\""]",738.01,"{\""loyalty\"": \""26%\""}",34783,1,"""South America""" +2023-01-17,43296,8855,"[\""Laptop\"", \""Tablet\""]",527.95,{},6861,1,"""Europe""" +2023-04-13,43297,6201,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4581.94,"{\"": \""18%\""}",122080,1,"""Europe""" +2023-07-17,43298,1350,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2721.0,{},117748,1,"""South America""" +2023-04-25,43299,7598,"[\""Laptop\""]",1926.86,{},163825,0,"""Europe""" +2024-10-02,43300,2314,"[\""Tablet\"", \""Charger\""]",2466.59,{},80549,1,"""South America""" +2023-07-10,43301,2941,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",735.38,"{\"": \""27%\""}",6416,1,"""Asia""" +2024-10-04,43302,5253,"[\""Keyboard\"", \""Monitor\""]",3074.5,{},122167,1,"""North America""" +2024-07-24,43303,2608,"[\""Keyboard\"", \""Tablet\""]",555.91,{},138420,1,"""Africa""" +2024-05-28,43304,7163,"[\""Phone\""]",1048.38,"{\""loyalty\"": \""28%\""}",11201,0,"""North America""" +2024-12-03,43305,3975,"[\""Charger\""]",2585.63,{},127281,0,"""North America""" +2024-09-04,43306,9207,"[\""Tablet\"", \""Keyboard\""]",3705.02,{},287093,0,"""Africa""" +2024-11-03,43307,5880,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3704.8,{},182153,1,"""Asia""" +2024-02-23,43308,5076,"[\""Charger\""]",2806.86,"{\"": \""14%\""}",229924,0,"""South America""" +2024-07-10,43309,2296,"[\""Monitor\""]",1634.75,"{\""seasonal\"": \""18%\""}",200046,0,"""Africa""" +2024-09-28,43310,8860,"[\""Wireless Mouse\""]",3458.46,"{\""loyalty\"": \""7%\""}",161572,0,"""Africa""" +2024-03-21,43311,5544,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1240.75,{},48278,0,"""South America""" +2023-07-19,43312,4664,"[\""Laptop\""]",3495.59,"{\""seasonal\"": \""5%\""}",276406,1,"""Asia""" +2024-01-11,43313,603,"[\""Wireless Mouse\"", \""Headphones\""]",57.22,"{\""promo\"": \""20%\""}",111118,0,"""Europe""" +2023-09-08,43314,1178,"[\""Laptop\"", \""Headphones\""]",4541.69,{},264370,0,"""Europe""" +2024-08-29,43315,5969,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",668.03,"{\"": \""24%\""}",105888,1,"""Europe""" +2023-11-05,43316,9770,"[\""Monitor\"", \""Wireless Mouse\""]",2769.21,{},194365,1,"""North America""" +2023-03-06,43317,486,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3147.99,"{\"": \""9%\""}",244308,1,"""South America""" +2023-07-24,43318,7856,"[\""Keyboard\"", \""Monitor\""]",433.25,{},281355,1,"""Asia""" +2023-08-31,43319,6148,"[\""Wireless Mouse\"", \""Charger\""]",2118.74,"{\""seasonal\"": \""30%\""}",137768,0,"""South America""" +2023-03-07,43320,7601,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1095.76,"{\"": \""24%\""}",5290,0,"""South America""" +2023-03-10,43321,4839,"[\""Phone\""]",2204.37,"{\""promo\"": \""11%\""}",288110,1,"""Europe""" +2024-05-24,43322,9732,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1320.94,"{\""promo\"": \""22%\""}",64328,1,"""Europe""" +2023-01-02,43323,7512,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2894.44,{},199981,0,"""South America""" +2024-05-30,43324,4835,"[\""Keyboard\"", \""Wireless Mouse\""]",1699.57,"{\"": \""17%\""}",273377,0,"""North America""" +2024-04-10,43325,2455,"[\""Charger\""]",4678.6,"{\""seasonal\"": \""27%\""}",1813,0,"""North America""" +2023-07-03,43326,2490,"[\""Phone\"", \""Charger\""]",3060.19,"{\""promo\"": \""24%\""}",141615,1,"""Africa""" +2023-11-02,43327,7333,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3021.23,"{\"": \""19%\""}",294911,0,"""Asia""" +2023-11-12,43328,8432,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1080.29,"{\""promo\"": \""20%\""}",279204,0,"""North America""" +2024-03-08,43329,3877,"[\""Laptop\""]",3344.09,"{\""loyalty\"": \""16%\""}",296251,0,"""South America""" +2023-07-16,43330,2211,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2632.87,{},180783,0,"""North America""" +2023-11-26,43331,1117,"[\""Phone\"", \""Keyboard\""]",1773.92,{},232630,1,"""North America""" +2024-01-11,43332,3572,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4219.01,{},269412,1,"""Africa""" +2024-03-17,43333,4785,"[\""Laptop\"", \""Wireless Mouse\""]",4498.81,"{\""promo\"": \""29%\""}",125734,0,"""South America""" +2023-02-08,43334,1981,"[\""Laptop\"", \""Headphones\""]",2639.21,"{\"": \""14%\""}",39182,0,"""North America""" +2024-08-28,43335,390,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3572.99,"{\""promo\"": \""8%\""}",120309,1,"""North America""" +2023-04-29,43336,9994,"[\""Headphones\"", \""Tablet\""]",3960.59,{},91875,0,"""South America""" +2023-11-12,43337,1927,"[\""Wireless Mouse\"", \""Monitor\""]",2276.2,{},191915,1,"""North America""" +2023-08-10,43338,2360,"[\""Monitor\""]",3464.01,"{\""promo\"": \""14%\""}",176228,0,"""South America""" +2024-02-09,43339,9340,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1381.28,{},128112,0,"""Africa""" +2023-10-17,43340,476,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",333.25,"{\""loyalty\"": \""24%\""}",202348,0,"""Africa""" +2023-05-26,43341,6132,"[\""Charger\""]",3482.46,{},290924,1,"""Europe""" +2023-07-26,43342,5915,"[\""Phone\""]",4443.15,"{\""loyalty\"": \""14%\""}",287518,1,"""Europe""" +2024-12-31,43343,6288,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4350.92,{},22821,1,"""Asia""" +2024-08-13,43344,6245,"[\""Laptop\""]",2262.03,"{\""seasonal\"": \""21%\""}",66205,0,"""North America""" +2023-03-04,43345,9546,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2926.36,"{\""loyalty\"": \""6%\""}",278648,1,"""North America""" +2023-05-14,43346,7861,"[\""Keyboard\"", \""Phone\""]",2403.09,"{\""seasonal\"": \""12%\""}",60707,1,"""North America""" +2024-05-17,43347,7736,"[\""Phone\"", \""Wireless Mouse\""]",2483.61,"{\""promo\"": \""10%\""}",174507,0,"""Europe""" +2023-05-12,43348,6155,"[\""Keyboard\""]",3269.22,{},49195,0,"""Africa""" +2024-04-21,43349,7187,"[\""Tablet\""]",4872.49,"{\""loyalty\"": \""6%\""}",194835,1,"""South America""" +2023-10-16,43350,9772,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2130.76,"{\""promo\"": \""23%\""}",200699,0,"""Asia""" +2023-11-17,43351,2618,"[\""Monitor\""]",4339.71,"{\""seasonal\"": \""25%\""}",229399,0,"""Africa""" +2023-07-02,43352,2637,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3966.24,"{\""promo\"": \""27%\""}",253214,0,"""South America""" +2023-09-06,43353,422,"[\""Monitor\"", \""Headphones\""]",3682.9,"{\"": \""7%\""}",115822,0,"""Africa""" +2023-06-16,43354,811,"[\""Phone\""]",2557.17,"{\""loyalty\"": \""18%\""}",18320,1,"""Asia""" +2023-08-16,43355,7734,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1120.34,"{\""loyalty\"": \""11%\""}",235162,1,"""Asia""" +2023-03-08,43356,9558,"[\""Laptop\"", \""Tablet\""]",4997.36,{},240710,1,"""Asia""" +2023-06-06,43357,6258,"[\""Headphones\""]",3939.02,{},180189,1,"""North America""" +2023-04-05,43358,9825,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3368.58,{},94194,1,"""South America""" +2023-07-25,43359,7059,"[\""Tablet\""]",4761.03,{},264158,1,"""South America""" +2023-09-28,43360,9963,"[\""Tablet\"", \""Keyboard\""]",524.1,{},104801,1,"""South America""" +2023-12-22,43361,7361,"[\""Phone\"", \""Headphones\""]",3927.4,"{\""seasonal\"": \""26%\""}",292143,1,"""Europe""" +2024-03-11,43362,598,"[\""Headphones\""]",1197.83,"{\""seasonal\"": \""27%\""}",93783,1,"""South America""" +2023-12-04,43363,3917,"[\""Phone\"", \""Wireless Mouse\""]",1702.46,{},183088,0,"""Asia""" +2023-09-04,43364,2107,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3425.66,"{\""loyalty\"": \""19%\""}",105419,1,"""North America""" +2023-10-30,43365,2872,"[\""Keyboard\"", \""Wireless Mouse\""]",2509.46,"{\""seasonal\"": \""18%\""}",190928,1,"""Asia""" +2024-02-05,43366,5413,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3431.82,"{\"": \""29%\""}",239241,0,"""Europe""" +2023-05-29,43367,6301,"[\""Monitor\""]",501.14,"{\"": \""24%\""}",257166,0,"""Africa""" +2023-01-10,43368,5178,"[\""Headphones\""]",4175.55,{},122034,1,"""North America""" +2023-09-19,43369,9496,"[\""Monitor\""]",3882.89,"{\""loyalty\"": \""27%\""}",155005,1,"""South America""" +2023-07-02,43370,510,"[\""Wireless Mouse\"", \""Charger\""]",772.82,"{\"": \""22%\""}",180536,0,"""Asia""" +2024-10-01,43371,5643,"[\""Headphones\"", \""Laptop\""]",460.65,"{\""seasonal\"": \""9%\""}",94142,0,"""Africa""" +2024-12-07,43372,8052,"[\""Headphones\"", \""Wireless Mouse\""]",1333.09,{},182847,1,"""North America""" +2024-02-12,43373,1117,"[\""Laptop\"", \""Headphones\""]",4537.45,"{\""loyalty\"": \""10%\""}",55444,0,"""South America""" +2024-03-21,43374,1468,"[\""Charger\""]",403.67,{},6871,0,"""Asia""" +2024-11-03,43375,446,"[\""Monitor\""]",1262.77,"{\""promo\"": \""25%\""}",88844,0,"""South America""" +2023-09-09,43376,6939,"[\""Tablet\""]",1137.54,{},32969,0,"""Asia""" +2024-05-25,43377,364,"[\""Keyboard\""]",4256.37,"{\"": \""23%\""}",39791,1,"""Africa""" +2024-07-29,43378,3973,"[\""Headphones\""]",1289.73,"{\""loyalty\"": \""10%\""}",266212,1,"""Europe""" +2024-10-22,43379,4830,"[\""Charger\""]",4057.98,{},48394,0,"""North America""" +2023-12-06,43380,4852,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1541.54,{},97788,1,"""South America""" +2023-04-23,43381,8909,"[\""Monitor\"", \""Headphones\""]",4060.68,"{\""seasonal\"": \""22%\""}",163137,0,"""Europe""" +2023-09-05,43382,7575,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1460.52,{},115186,1,"""Europe""" +2023-11-29,43383,6577,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2244.34,"{\"": \""26%\""}",264551,0,"""Asia""" +2024-06-29,43384,2577,"[\""Headphones\"", \""Keyboard\""]",500.36,"{\""loyalty\"": \""19%\""}",216406,0,"""North America""" +2023-01-02,43385,187,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3326.21,"{\"": \""13%\""}",122301,1,"""Asia""" +2024-06-25,43386,5726,"[\""Laptop\"", \""Wireless Mouse\""]",3147.79,"{\""promo\"": \""14%\""}",209942,0,"""Africa""" +2024-07-26,43387,727,"[\""Tablet\""]",4086.34,"{\""loyalty\"": \""13%\""}",148070,0,"""South America""" +2024-12-10,43388,1975,"[\""Phone\""]",2923.68,"{\""seasonal\"": \""6%\""}",171913,0,"""South America""" +2024-09-25,43389,1055,"[\""Wireless Mouse\""]",4106.58,"{\""loyalty\"": \""6%\""}",14902,0,"""Africa""" +2024-08-16,43390,2561,"[\""Wireless Mouse\""]",2285.28,{},169822,0,"""Asia""" +2024-02-25,43391,5063,"[\""Headphones\"", \""Charger\""]",3607.55,"{\""promo\"": \""11%\""}",212097,0,"""Africa""" +2023-01-28,43392,933,"[\""Headphones\""]",3596.21,"{\""seasonal\"": \""19%\""}",166563,1,"""Europe""" +2024-05-07,43393,7636,"[\""Phone\"", \""Wireless Mouse\""]",2251.18,"{\""loyalty\"": \""21%\""}",274684,1,"""Asia""" +2024-04-15,43394,9051,"[\""Laptop\"", \""Charger\""]",4423.35,"{\""seasonal\"": \""9%\""}",203058,1,"""South America""" +2023-09-15,43395,1950,"[\""Keyboard\"", \""Wireless Mouse\""]",3839.93,"{\""promo\"": \""15%\""}",13451,1,"""North America""" +2024-09-22,43396,1432,"[\""Monitor\"", \""Charger\""]",4415.09,{},28984,0,"""South America""" +2023-10-06,43397,6064,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2794.62,{},91552,1,"""Africa""" +2023-02-11,43398,7861,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4786.31,"{\""loyalty\"": \""12%\""}",172207,0,"""North America""" +2024-05-26,43399,8054,"[\""Wireless Mouse\""]",115.48,{},43789,0,"""Asia""" +2023-09-04,43400,719,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3122.49,"{\""loyalty\"": \""21%\""}",87586,1,"""Africa""" +2023-10-16,43401,1111,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",618.84,{},146328,0,"""North America""" +2024-12-25,43402,4487,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4643.13,"{\""promo\"": \""25%\""}",291365,1,"""Asia""" +2024-11-16,43403,3783,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4164.63,{},241796,1,"""Africa""" +2023-10-31,43404,8434,"[\""Laptop\""]",3763.04,"{\""loyalty\"": \""12%\""}",81349,0,"""North America""" +2024-04-28,43405,1860,"[\""Wireless Mouse\""]",2714.57,"{\""promo\"": \""27%\""}",79143,1,"""Asia""" +2023-10-26,43406,3234,"[\""Headphones\""]",3271.94,{},202023,1,"""North America""" +2024-06-12,43407,1605,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4970.77,{},100255,0,"""North America""" +2023-08-26,43408,4760,"[\""Tablet\""]",2696.65,{},72196,0,"""North America""" +2023-10-09,43409,4180,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",250.96,{},134883,1,"""Africa""" +2024-06-28,43410,9093,"[\""Headphones\"", \""Laptop\""]",253.13,"{\""promo\"": \""15%\""}",52707,1,"""Africa""" +2023-11-10,43411,2717,"[\""Wireless Mouse\""]",3073.18,{},162049,0,"""North America""" +2024-06-01,43412,4769,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3159.14,"{\""seasonal\"": \""6%\""}",36786,1,"""South America""" +2023-08-10,43413,341,"[\""Charger\"", \""Tablet\""]",4715.92,"{\"": \""6%\""}",119428,1,"""Africa""" +2024-10-05,43414,7935,"[\""Tablet\"", \""Headphones\""]",4452.39,{},249130,0,"""Europe""" +2024-02-14,43415,5323,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3219.8,"{\"": \""7%\""}",11617,0,"""Europe""" +2024-01-11,43416,7818,"[\""Tablet\""]",4410.51,{},236410,1,"""Africa""" +2023-07-05,43417,4853,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3882.41,{},259758,0,"""Africa""" +2023-08-27,43418,261,"[\""Wireless Mouse\""]",4295.78,"{\"": \""8%\""}",140966,0,"""South America""" +2023-05-27,43419,378,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4823.33,"{\""seasonal\"": \""21%\""}",112721,0,"""South America""" +2023-04-24,43420,2388,"[\""Tablet\""]",3607.68,"{\""loyalty\"": \""17%\""}",225258,1,"""Asia""" +2023-04-28,43421,2332,"[\""Monitor\""]",3649.85,"{\""loyalty\"": \""23%\""}",122141,1,"""South America""" +2024-07-12,43422,9769,"[\""Charger\"", \""Tablet\""]",748.5,"{\""loyalty\"": \""26%\""}",248079,0,"""Europe""" +2024-08-06,43423,6332,"[\""Monitor\""]",1497.28,{},117455,1,"""North America""" +2023-09-28,43424,4073,"[\""Keyboard\""]",4330.16,"{\""seasonal\"": \""16%\""}",141962,0,"""Asia""" +2023-05-21,43425,1855,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2258.93,"{\"": \""13%\""}",26711,0,"""North America""" +2024-07-17,43426,4488,"[\""Keyboard\"", \""Wireless Mouse\""]",3586.37,{},25453,1,"""Asia""" +2023-03-05,43427,4992,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",339.27,"{\""seasonal\"": \""23%\""}",129385,1,"""Europe""" +2024-08-06,43428,9504,"[\""Keyboard\"", \""Phone\""]",3256.41,"{\""seasonal\"": \""16%\""}",73362,1,"""Africa""" +2023-03-08,43429,904,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1880.26,{},60123,0,"""South America""" +2023-09-29,43430,7787,"[\""Keyboard\"", \""Charger\""]",4593.72,{},39490,0,"""Africa""" +2023-04-22,43431,1825,"[\""Charger\""]",1579.76,{},118783,1,"""North America""" +2023-12-16,43432,8384,"[\""Laptop\"", \""Wireless Mouse\""]",4663.17,"{\"": \""9%\""}",36952,1,"""Africa""" +2023-01-31,43433,5714,"[\""Charger\""]",4869.87,{},172650,1,"""North America""" +2023-09-25,43434,6090,"[\""Phone\""]",3112.57,{},215952,1,"""Europe""" +2023-06-09,43435,8786,"[\""Tablet\""]",3768.0,"{\""seasonal\"": \""29%\""}",158357,1,"""Europe""" +2023-12-27,43436,3303,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3804.37,{},96590,0,"""Europe""" +2023-10-24,43437,181,"[\""Laptop\"", \""Charger\""]",4810.36,{},27903,1,"""Europe""" +2023-09-13,43438,170,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1514.79,{},285433,1,"""South America""" +2024-04-09,43439,3860,"[\""Wireless Mouse\"", \""Headphones\""]",3507.34,"{\""promo\"": \""24%\""}",43552,1,"""North America""" +2024-07-01,43440,5381,"[\""Monitor\"", \""Tablet\""]",2757.56,{},188742,0,"""North America""" +2023-04-11,43441,2192,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4843.64,{},52797,0,"""Europe""" +2023-12-21,43442,9730,"[\""Tablet\"", \""Keyboard\""]",2352.05,"{\""seasonal\"": \""17%\""}",158823,1,"""South America""" +2023-06-21,43443,2051,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1106.76,{},4005,1,"""Asia""" +2024-03-01,43444,6424,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1914.02,{},193192,1,"""South America""" +2024-06-14,43445,3129,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4116.05,{},236148,1,"""Europe""" +2024-08-22,43446,189,"[\""Phone\""]",4917.07,"{\""seasonal\"": \""5%\""}",233446,1,"""Asia""" +2023-08-02,43447,847,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",377.05,{},52649,0,"""Asia""" +2024-01-17,43448,5395,"[\""Monitor\"", \""Keyboard\""]",1622.1,{},271399,1,"""Africa""" +2024-12-09,43449,2874,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1328.46,"{\""promo\"": \""9%\""}",146899,0,"""North America""" +2024-11-08,43450,8083,"[\""Wireless Mouse\"", \""Tablet\""]",1119.09,{},94842,0,"""Europe""" +2023-03-13,43451,2277,"[\""Wireless Mouse\"", \""Headphones\""]",1128.79,{},209145,0,"""Europe""" +2024-12-29,43452,3184,"[\""Keyboard\""]",2301.98,{},41567,0,"""Europe""" +2024-02-16,43453,3166,"[\""Tablet\"", \""Keyboard\""]",4334.17,"{\""seasonal\"": \""5%\""}",256784,0,"""Africa""" +2024-06-21,43454,4912,"[\""Tablet\"", \""Wireless Mouse\""]",3486.81,{},4340,1,"""South America""" +2024-05-05,43455,6034,"[\""Keyboard\""]",1957.68,{},132053,0,"""South America""" +2024-05-20,43456,2325,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2278.51,{},2043,0,"""South America""" +2023-12-14,43457,2145,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2295.7,"{\""seasonal\"": \""5%\""}",85121,0,"""North America""" +2024-03-06,43458,3184,"[\""Charger\""]",2156.47,{},116355,1,"""Asia""" +2023-11-25,43459,3493,"[\""Keyboard\"", \""Wireless Mouse\""]",2235.69,{},129626,0,"""Asia""" +2023-10-21,43460,4003,"[\""Wireless Mouse\"", \""Phone\""]",3897.59,{},95289,1,"""Africa""" +2024-10-13,43461,7421,"[\""Wireless Mouse\""]",396.21,{},267303,0,"""South America""" +2024-05-18,43462,5083,"[\""Wireless Mouse\""]",4988.0,"{\"": \""9%\""}",41209,0,"""Europe""" +2023-09-23,43463,4669,"[\""Tablet\""]",1588.44,{},275693,1,"""Asia""" +2023-04-28,43464,6556,"[\""Laptop\""]",4718.53,"{\""seasonal\"": \""6%\""}",52000,1,"""Europe""" +2023-09-22,43465,6515,"[\""Charger\"", \""Wireless Mouse\""]",2750.52,{},20155,1,"""North America""" +2023-02-19,43466,4981,"[\""Phone\""]",3414.12,"{\"": \""7%\""}",269550,1,"""Europe""" +2023-08-09,43467,2506,"[\""Wireless Mouse\""]",1373.6,{},228246,1,"""Africa""" +2024-03-27,43468,6707,"[\""Headphones\""]",137.89,{},190837,1,"""South America""" +2024-07-24,43469,5478,"[\""Headphones\""]",2798.74,"{\""promo\"": \""15%\""}",238868,1,"""Africa""" +2023-02-01,43470,3546,"[\""Phone\"", \""Wireless Mouse\""]",3660.7,{},228454,1,"""North America""" +2023-08-19,43471,4587,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4762.88,{},274084,0,"""North America""" +2023-12-31,43472,9600,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",837.28,"{\""seasonal\"": \""7%\""}",297689,1,"""Europe""" +2024-04-13,43473,8383,"[\""Monitor\"", \""Phone\""]",613.09,"{\""seasonal\"": \""15%\""}",279026,0,"""North America""" +2024-09-22,43474,8030,"[\""Wireless Mouse\"", \""Tablet\""]",1465.35,{},275128,1,"""Africa""" +2023-10-17,43475,7596,"[\""Laptop\""]",493.81,"{\""promo\"": \""26%\""}",125290,0,"""Europe""" +2024-01-02,43476,7385,"[\""Headphones\"", \""Monitor\""]",4760.17,"{\""promo\"": \""13%\""}",85404,0,"""South America""" +2023-12-17,43477,2689,"[\""Charger\"", \""Tablet\""]",2334.74,{},142831,0,"""Asia""" +2024-10-24,43478,7490,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4126.66,"{\""loyalty\"": \""6%\""}",203811,0,"""Asia""" +2023-03-07,43479,6585,"[\""Laptop\"", \""Charger\""]",346.89,"{\""promo\"": \""24%\""}",81495,1,"""North America""" +2023-05-14,43480,2770,"[\""Laptop\""]",3544.24,{},220851,0,"""South America""" +2023-01-11,43481,3036,"[\""Headphones\"", \""Phone\""]",3255.1,"{\""seasonal\"": \""23%\""}",9812,0,"""Africa""" +2023-01-09,43482,915,"[\""Tablet\""]",2431.62,{},17377,0,"""Asia""" +2023-11-15,43483,5383,"[\""Monitor\""]",4188.12,{},229965,1,"""North America""" +2024-03-12,43484,3804,"[\""Headphones\"", \""Charger\""]",241.66,{},228168,0,"""North America""" +2023-07-29,43485,8521,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3461.39,"{\"": \""28%\""}",147310,1,"""North America""" +2024-04-04,43486,5283,"[\""Phone\""]",385.84,"{\""seasonal\"": \""7%\""}",128333,1,"""North America""" +2023-08-30,43487,4230,"[\""Monitor\""]",147.9,"{\""seasonal\"": \""30%\""}",106931,1,"""Asia""" +2024-04-19,43488,483,"[\""Phone\"", \""Laptop\""]",4874.06,"{\""loyalty\"": \""5%\""}",42796,1,"""South America""" +2023-06-05,43489,4209,"[\""Monitor\"", \""Tablet\""]",1782.81,{},64040,1,"""Europe""" +2024-12-22,43490,6507,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4495.93,"{\"": \""8%\""}",50354,1,"""North America""" +2023-06-03,43491,3516,"[\""Charger\""]",805.83,{},125567,1,"""Africa""" +2024-10-12,43492,4486,"[\""Headphones\""]",3456.68,{},154897,1,"""Europe""" +2023-08-29,43493,9927,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4090.48,{},59301,0,"""Africa""" +2024-06-24,43494,6893,"[\""Laptop\"", \""Monitor\""]",2213.39,{},62163,0,"""Africa""" +2023-11-29,43495,4908,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4075.7,"{\""loyalty\"": \""27%\""}",280678,1,"""North America""" +2024-08-07,43496,2483,"[\""Phone\"", \""Keyboard\""]",1273.04,{},196474,1,"""South America""" +2024-03-12,43497,7121,"[\""Monitor\""]",442.69,"{\""loyalty\"": \""11%\""}",110731,0,"""North America""" +2023-11-27,43498,8917,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4393.2,{},5423,0,"""Africa""" +2024-02-12,43499,9105,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4939.8,"{\""promo\"": \""10%\""}",256084,0,"""Asia""" +2023-03-08,43500,4353,"[\""Headphones\"", \""Tablet\""]",580.85,{},209443,0,"""North America""" +2023-01-22,43501,6487,"[\""Wireless Mouse\"", \""Charger\""]",3411.72,"{\""seasonal\"": \""18%\""}",205955,0,"""Europe""" +2024-12-20,43502,2087,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3095.6,"{\""loyalty\"": \""8%\""}",182156,1,"""South America""" +2023-08-16,43503,2334,"[\""Headphones\""]",1430.32,"{\"": \""19%\""}",182915,1,"""South America""" +2023-04-25,43504,9107,"[\""Tablet\""]",4692.8,{},111508,0,"""Asia""" +2023-04-20,43505,7331,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2762.88,{},133206,1,"""Europe""" +2023-11-06,43506,6537,"[\""Charger\"", \""Keyboard\""]",2598.48,"{\""promo\"": \""27%\""}",136844,0,"""Africa""" +2024-12-02,43507,1938,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4115.47,{},206225,1,"""Asia""" +2024-10-01,43508,8084,"[\""Phone\""]",685.05,"{\""loyalty\"": \""15%\""}",286176,1,"""South America""" +2023-01-23,43509,5234,"[\""Keyboard\""]",3246.74,{},29366,1,"""Asia""" +2024-11-07,43510,3751,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3927.06,"{\""promo\"": \""7%\""}",150485,1,"""Europe""" +2023-02-24,43511,8349,"[\""Wireless Mouse\""]",797.1,{},105092,1,"""North America""" +2024-02-26,43512,9517,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1316.61,"{\""promo\"": \""30%\""}",56511,0,"""Asia""" +2023-08-05,43513,9825,"[\""Keyboard\""]",2199.54,{},154544,1,"""Europe""" +2023-04-09,43514,5985,"[\""Charger\"", \""Keyboard\""]",2823.4,"{\"": \""26%\""}",164235,1,"""North America""" +2024-05-15,43515,7662,"[\""Laptop\""]",916.97,"{\""seasonal\"": \""22%\""}",236181,1,"""Africa""" +2024-03-24,43516,1391,"[\""Tablet\""]",3924.25,{},88265,1,"""North America""" +2023-02-21,43517,9671,"[\""Headphones\""]",2209.22,{},221648,0,"""North America""" +2024-06-27,43518,8732,"[\""Keyboard\""]",3501.57,"{\""promo\"": \""24%\""}",5047,1,"""North America""" +2024-05-15,43519,6220,"[\""Headphones\"", \""Charger\""]",3646.34,"{\""seasonal\"": \""26%\""}",102189,1,"""Asia""" +2024-08-29,43520,3031,"[\""Tablet\""]",2848.47,"{\""loyalty\"": \""26%\""}",192284,0,"""South America""" +2023-12-01,43521,1898,"[\""Laptop\"", \""Monitor\""]",3021.04,{},41715,1,"""North America""" +2023-01-04,43522,404,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1806.42,{},204118,1,"""Africa""" +2023-06-13,43523,9528,"[\""Headphones\""]",1859.02,"{\""seasonal\"": \""7%\""}",174510,0,"""South America""" +2024-09-11,43524,5215,"[\""Monitor\"", \""Charger\""]",2802.35,"{\""promo\"": \""22%\""}",160065,0,"""South America""" +2023-08-23,43525,9313,"[\""Headphones\"", \""Keyboard\""]",718.8,{},7949,1,"""South America""" +2023-04-12,43526,1975,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4441.21,"{\"": \""17%\""}",283717,1,"""Europe""" +2024-07-22,43527,8000,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1973.2,"{\""promo\"": \""23%\""}",284672,0,"""Asia""" +2023-07-07,43528,383,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",955.07,"{\""seasonal\"": \""24%\""}",207050,1,"""North America""" +2023-06-15,43529,5610,"[\""Monitor\""]",3568.02,"{\""seasonal\"": \""18%\""}",296410,0,"""Asia""" +2024-04-13,43530,5217,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1674.87,{},158353,1,"""North America""" +2023-10-16,43531,3988,"[\""Wireless Mouse\""]",3253.26,"{\""loyalty\"": \""27%\""}",89511,0,"""South America""" +2023-03-06,43532,5249,"[\""Monitor\""]",146.82,"{\""promo\"": \""28%\""}",284267,0,"""Asia""" +2024-01-05,43533,7758,"[\""Tablet\"", \""Wireless Mouse\""]",128.56,"{\"": \""28%\""}",35741,0,"""Africa""" +2023-04-25,43534,687,"[\""Phone\""]",150.0,{},288900,0,"""Europe""" +2023-07-27,43535,6068,"[\""Headphones\"", \""Monitor\""]",1443.67,"{\""seasonal\"": \""12%\""}",198959,1,"""South America""" +2024-03-03,43536,9486,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",422.11,"{\""promo\"": \""20%\""}",156213,0,"""North America""" +2024-12-06,43537,5608,"[\""Phone\"", \""Tablet\""]",4743.63,{},248860,0,"""Europe""" +2023-12-31,43538,1522,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4255.48,{},46583,0,"""South America""" +2024-10-24,43539,5518,"[\""Monitor\""]",4238.94,{},44232,0,"""North America""" +2024-12-07,43540,7989,"[\""Monitor\"", \""Wireless Mouse\""]",3143.48,"{\"": \""29%\""}",54857,0,"""Europe""" +2023-03-17,43541,7238,"[\""Laptop\"", \""Monitor\""]",1748.27,{},273423,1,"""Asia""" +2024-06-19,43542,806,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3668.58,{},279126,0,"""North America""" +2024-05-17,43543,1327,"[\""Monitor\""]",3010.75,"{\""promo\"": \""12%\""}",170337,1,"""South America""" +2023-08-08,43544,5549,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4008.02,"{\"": \""6%\""}",224183,1,"""Africa""" +2024-08-27,43545,3943,"[\""Wireless Mouse\"", \""Headphones\""]",1914.59,"{\""loyalty\"": \""28%\""}",115843,0,"""South America""" +2023-04-25,43546,4311,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4088.69,{},130391,0,"""Europe""" +2023-11-07,43547,2785,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4166.44,{},280872,1,"""South America""" +2024-05-06,43548,6730,"[\""Laptop\"", \""Wireless Mouse\""]",2498.82,"{\"": \""29%\""}",47999,0,"""Asia""" +2024-11-06,43549,3259,"[\""Wireless Mouse\""]",1312.95,{},76162,0,"""South America""" +2024-07-17,43550,9553,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",228.69,"{\""seasonal\"": \""7%\""}",272382,1,"""Asia""" +2023-03-04,43551,1384,"[\""Keyboard\"", \""Monitor\""]",1088.52,{},134882,1,"""Asia""" +2023-08-12,43552,9249,"[\""Laptop\""]",3043.51,"{\"": \""14%\""}",199602,0,"""North America""" +2023-05-25,43553,9543,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",603.24,"{\""loyalty\"": \""18%\""}",135125,0,"""Asia""" +2024-08-31,43554,5357,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3615.91,{},298137,1,"""North America""" +2024-11-07,43555,127,"[\""Wireless Mouse\"", \""Tablet\""]",2573.23,"{\""loyalty\"": \""6%\""}",176895,0,"""Africa""" +2023-04-29,43556,7133,"[\""Keyboard\""]",2279.05,"{\""loyalty\"": \""7%\""}",100860,1,"""Asia""" +2024-11-26,43557,8041,"[\""Keyboard\"", \""Headphones\""]",3726.01,"{\""loyalty\"": \""18%\""}",28956,0,"""Africa""" +2024-05-15,43558,966,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2213.01,"{\"": \""12%\""}",244066,0,"""Africa""" +2024-05-08,43559,1596,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",145.52,"{\""loyalty\"": \""27%\""}",11281,0,"""Africa""" +2024-12-07,43560,1809,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1266.27,"{\"": \""13%\""}",236168,1,"""Europe""" +2024-09-19,43561,7465,"[\""Laptop\"", \""Charger\""]",2588.76,"{\""promo\"": \""17%\""}",202913,1,"""North America""" +2024-05-29,43562,6242,"[\""Keyboard\""]",2790.36,{},62594,0,"""Europe""" +2024-10-24,43563,9297,"[\""Wireless Mouse\"", \""Tablet\""]",2127.05,"{\"": \""29%\""}",155097,0,"""Asia""" +2023-11-14,43564,7132,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",115.69,{},214426,1,"""North America""" +2024-07-23,43565,8652,"[\""Phone\""]",4719.28,"{\""promo\"": \""29%\""}",279924,1,"""Europe""" +2024-07-20,43566,1598,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",750.1,"{\""seasonal\"": \""24%\""}",7410,1,"""Europe""" +2024-10-18,43567,6522,"[\""Headphones\"", \""Phone\""]",1623.07,{},107235,1,"""Africa""" +2024-07-21,43568,5546,"[\""Monitor\""]",950.06,"{\""seasonal\"": \""11%\""}",197957,1,"""North America""" +2023-12-23,43569,8401,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3943.91,{},35563,1,"""South America""" +2023-10-17,43570,8080,"[\""Monitor\"", \""Charger\""]",2338.28,"{\""loyalty\"": \""24%\""}",190194,0,"""South America""" +2024-01-07,43571,440,"[\""Phone\""]",1406.81,{},90296,1,"""Europe""" +2024-04-18,43572,6337,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1575.64,"{\""loyalty\"": \""22%\""}",122861,1,"""South America""" +2023-12-31,43573,938,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3959.67,{},23278,0,"""Africa""" +2024-07-22,43574,1344,"[\""Monitor\""]",524.19,{},149243,1,"""Europe""" +2024-09-09,43575,3664,"[\""Headphones\""]",4542.05,{},233886,1,"""Europe""" +2023-09-15,43576,7889,"[\""Tablet\"", \""Keyboard\""]",3209.98,"{\""loyalty\"": \""9%\""}",195166,1,"""North America""" +2023-09-13,43577,3357,"[\""Keyboard\""]",2089.94,"{\"": \""5%\""}",177153,0,"""Europe""" +2023-10-12,43578,7257,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1829.78,{},41052,1,"""Europe""" +2023-11-01,43579,8127,"[\""Keyboard\""]",2444.95,{},23829,0,"""North America""" +2024-10-08,43580,2535,"[\""Monitor\"", \""Tablet\""]",3672.18,"{\""loyalty\"": \""28%\""}",160212,1,"""North America""" +2023-04-10,43581,8775,"[\""Tablet\"", \""Phone\""]",1676.59,"{\"": \""28%\""}",14768,0,"""Africa""" +2024-11-09,43582,5937,"[\""Monitor\"", \""Wireless Mouse\""]",321.14,{},177657,0,"""South America""" +2024-12-14,43583,6537,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2278.04,{},200192,1,"""Europe""" +2023-12-23,43584,2925,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3466.21,{},183652,1,"""South America""" +2023-07-19,43585,9485,"[\""Phone\"", \""Wireless Mouse\""]",2584.47,{},100857,0,"""Europe""" +2023-12-27,43586,5015,"[\""Headphones\"", \""Laptop\""]",4335.68,{},266716,1,"""South America""" +2024-10-08,43587,1601,"[\""Headphones\""]",1995.02,{},192440,1,"""Asia""" +2024-09-18,43588,1423,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2308.22,"{\""seasonal\"": \""11%\""}",66595,1,"""Africa""" +2023-06-27,43589,315,"[\""Phone\""]",3958.98,{},216799,1,"""North America""" +2023-05-22,43590,7434,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",919.59,"{\"": \""7%\""}",4280,1,"""Europe""" +2023-02-16,43591,5028,"[\""Monitor\"", \""Laptop\""]",4244.0,"{\""seasonal\"": \""26%\""}",80153,1,"""Europe""" +2024-02-04,43592,8427,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3931.76,"{\""loyalty\"": \""6%\""}",291221,0,"""North America""" +2024-01-08,43593,8823,"[\""Laptop\"", \""Phone\""]",383.17,"{\""promo\"": \""13%\""}",223785,0,"""Africa""" +2024-04-08,43594,5212,"[\""Keyboard\""]",4732.36,"{\""loyalty\"": \""25%\""}",223660,0,"""Europe""" +2024-11-15,43595,6373,"[\""Laptop\"", \""Phone\""]",498.02,{},170851,1,"""Europe""" +2024-08-08,43596,4307,"[\""Phone\""]",732.01,{},105103,1,"""Asia""" +2023-09-02,43597,5158,"[\""Wireless Mouse\""]",3286.07,"{\""promo\"": \""15%\""}",85719,0,"""Asia""" +2023-03-28,43598,7502,"[\""Headphones\"", \""Charger\""]",365.07,{},14921,1,"""Europe""" +2024-12-02,43599,3691,"[\""Wireless Mouse\"", \""Laptop\""]",3029.12,{},56648,0,"""Africa""" +2024-10-10,43600,4632,"[\""Keyboard\""]",3044.14,{},12103,1,"""North America""" +2023-10-08,43601,3247,"[\""Keyboard\"", \""Headphones\""]",2191.36,"{\"": \""7%\""}",292683,0,"""Asia""" +2024-02-20,43602,4365,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2310.98,{},235351,1,"""Europe""" +2023-01-08,43603,2660,"[\""Keyboard\""]",4576.4,{},205593,0,"""South America""" +2024-05-01,43604,6719,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2640.93,{},237715,0,"""Africa""" +2023-03-19,43605,8370,"[\""Headphones\"", \""Wireless Mouse\""]",1107.44,{},143878,0,"""North America""" +2024-10-11,43606,5069,"[\""Charger\""]",4900.9,{},136911,0,"""Europe""" +2023-10-04,43607,4673,"[\""Headphones\""]",353.44,{},253931,1,"""Asia""" +2023-06-25,43608,9946,"[\""Keyboard\"", \""Wireless Mouse\""]",3595.26,"{\""promo\"": \""30%\""}",47232,1,"""Africa""" +2023-09-09,43609,5083,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3412.53,"{\"": \""16%\""}",266487,1,"""North America""" +2024-12-08,43610,6196,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1289.2,{},181813,0,"""Africa""" +2023-07-22,43611,1288,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1857.02,"{\""promo\"": \""17%\""}",239388,0,"""South America""" +2023-04-24,43612,3762,"[\""Keyboard\"", \""Charger\""]",4970.84,{},204747,1,"""North America""" +2024-12-26,43613,3716,"[\""Keyboard\""]",3540.15,"{\""loyalty\"": \""23%\""}",44159,0,"""South America""" +2023-08-27,43614,9613,"[\""Monitor\"", \""Laptop\""]",3425.33,"{\""seasonal\"": \""14%\""}",80670,1,"""North America""" +2024-09-15,43615,2552,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1227.81,"{\"": \""7%\""}",184433,1,"""South America""" +2024-01-30,43616,4054,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3097.92,"{\"": \""9%\""}",5288,0,"""North America""" +2024-09-24,43617,8664,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3051.55,"{\""promo\"": \""8%\""}",267880,0,"""Europe""" +2023-03-30,43618,1071,"[\""Tablet\"", \""Headphones\""]",1841.28,"{\"": \""29%\""}",18276,1,"""North America""" +2023-08-01,43619,5213,"[\""Wireless Mouse\""]",634.35,"{\""loyalty\"": \""29%\""}",53592,0,"""Africa""" +2023-11-21,43620,8978,"[\""Wireless Mouse\"", \""Monitor\""]",492.42,"{\""promo\"": \""28%\""}",29071,1,"""Asia""" +2024-12-16,43621,3219,"[\""Wireless Mouse\"", \""Tablet\""]",2685.29,"{\""loyalty\"": \""18%\""}",255826,0,"""Europe""" +2023-12-13,43622,1655,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2877.45,"{\"": \""21%\""}",100959,1,"""Africa""" +2023-09-06,43623,872,"[\""Charger\""]",3639.44,"{\""loyalty\"": \""10%\""}",33794,0,"""Europe""" +2023-06-16,43624,6399,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1733.37,{},65483,1,"""Asia""" +2023-09-01,43625,4882,"[\""Headphones\"", \""Tablet\""]",557.85,{},9537,1,"""Europe""" +2024-07-31,43626,3041,"[\""Wireless Mouse\""]",2849.1,{},117721,0,"""North America""" +2023-02-01,43627,5347,"[\""Headphones\""]",4116.09,"{\"": \""5%\""}",15309,0,"""Europe""" +2024-04-07,43628,2739,"[\""Wireless Mouse\""]",1690.02,"{\"": \""11%\""}",21522,1,"""Europe""" +2024-05-07,43629,9085,"[\""Keyboard\""]",4172.51,{},71206,0,"""Europe""" +2024-12-10,43630,6629,"[\""Keyboard\"", \""Phone\""]",2446.98,{},2509,0,"""Africa""" +2024-07-23,43631,4473,"[\""Monitor\"", \""Laptop\""]",308.96,{},129671,0,"""Africa""" +2024-12-10,43632,2941,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3238.54,"{\"": \""17%\""}",164472,1,"""South America""" +2024-12-17,43633,6770,"[\""Keyboard\""]",4798.2,"{\""loyalty\"": \""28%\""}",135006,0,"""North America""" +2024-11-19,43634,3434,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2343.64,{},73030,1,"""Europe""" +2023-12-13,43635,4021,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3946.71,"{\""promo\"": \""7%\""}",161209,1,"""South America""" +2023-06-20,43636,6513,"[\""Keyboard\""]",3420.33,{},41151,1,"""Africa""" +2024-10-04,43637,5748,"[\""Tablet\"", \""Charger\""]",3512.6,{},161507,1,"""Europe""" +2023-05-16,43638,597,"[\""Headphones\""]",4863.61,{},48672,0,"""Asia""" +2024-11-16,43639,7277,"[\""Monitor\"", \""Laptop\""]",2093.56,{},210043,1,"""Europe""" +2023-08-24,43640,4465,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2273.18,{},182652,1,"""Europe""" +2023-08-25,43641,903,"[\""Tablet\""]",366.5,{},272627,0,"""South America""" +2024-10-27,43642,2745,"[\""Phone\"", \""Laptop\""]",1590.13,"{\"": \""25%\""}",139567,0,"""Asia""" +2023-07-04,43643,7121,"[\""Charger\"", \""Monitor\""]",1511.23,{},228594,0,"""North America""" +2024-05-01,43644,6865,"[\""Charger\"", \""Headphones\""]",1344.82,"{\""seasonal\"": \""16%\""}",271163,1,"""Europe""" +2024-11-11,43645,6936,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4150.41,"{\"": \""28%\""}",7879,0,"""Asia""" +2023-04-14,43646,3794,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",853.66,{},87597,0,"""South America""" +2023-11-08,43647,6279,"[\""Phone\""]",882.17,"{\""promo\"": \""24%\""}",276556,0,"""Asia""" +2023-11-20,43648,9936,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2606.93,{},120904,0,"""South America""" +2023-03-01,43649,431,"[\""Phone\""]",590.36,{},65992,1,"""Africa""" +2023-03-28,43650,1518,"[\""Laptop\""]",3336.07,"{\""promo\"": \""26%\""}",286050,0,"""Asia""" +2024-02-09,43651,8491,"[\""Headphones\"", \""Laptop\""]",1057.7,"{\""seasonal\"": \""16%\""}",234588,1,"""North America""" +2024-04-30,43652,8300,"[\""Tablet\""]",1641.56,{},82610,0,"""North America""" +2024-02-12,43653,4151,"[\""Monitor\"", \""Headphones\""]",4736.15,"{\""seasonal\"": \""23%\""}",73553,0,"""South America""" +2024-12-16,43654,1742,"[\""Phone\""]",4725.51,"{\""seasonal\"": \""11%\""}",166300,0,"""South America""" +2023-11-26,43655,6792,"[\""Laptop\"", \""Keyboard\""]",1458.16,{},234629,0,"""Europe""" +2023-01-21,43656,121,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2498.34,{},269616,1,"""Asia""" +2024-11-28,43657,9009,"[\""Monitor\""]",1567.68,{},158606,0,"""Asia""" +2024-12-10,43658,7476,"[\""Wireless Mouse\"", \""Tablet\""]",4567.71,"{\""loyalty\"": \""30%\""}",267211,1,"""Asia""" +2023-06-21,43659,8814,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4392.44,{},72784,0,"""Europe""" +2023-09-18,43660,4054,"[\""Phone\"", \""Keyboard\""]",3970.92,"{\""promo\"": \""12%\""}",68020,0,"""Africa""" +2023-08-20,43661,4587,"[\""Wireless Mouse\""]",4559.47,{},23715,1,"""North America""" +2024-06-02,43662,920,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1832.96,"{\"": \""11%\""}",7052,1,"""Asia""" +2024-08-07,43663,767,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",713.6,"{\""seasonal\"": \""11%\""}",168736,1,"""Asia""" +2024-07-28,43664,6181,"[\""Tablet\"", \""Wireless Mouse\""]",1414.32,{},140115,0,"""North America""" +2024-04-29,43665,3080,"[\""Phone\""]",3721.28,{},252695,0,"""South America""" +2023-03-19,43666,5049,"[\""Phone\"", \""Laptop\""]",430.06,"{\""promo\"": \""12%\""}",180140,0,"""Europe""" +2023-11-02,43667,9830,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",242.74,"{\"": \""5%\""}",137559,0,"""Africa""" +2024-01-31,43668,5508,"[\""Tablet\""]",3194.06,{},261738,0,"""North America""" +2024-04-04,43669,6179,"[\""Monitor\""]",4505.51,{},205854,0,"""South America""" +2024-09-15,43670,5038,"[\""Keyboard\"", \""Tablet\""]",4200.49,{},39085,0,"""South America""" +2024-02-27,43671,1603,"[\""Keyboard\"", \""Laptop\""]",2627.47,"{\""seasonal\"": \""18%\""}",224129,1,"""South America""" +2024-06-27,43672,2187,"[\""Laptop\"", \""Wireless Mouse\""]",3869.34,"{\""promo\"": \""25%\""}",122635,1,"""Europe""" +2023-03-05,43673,9812,"[\""Laptop\""]",4061.96,{},133632,1,"""Africa""" +2024-07-18,43674,2983,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3879.46,{},74635,1,"""Europe""" +2023-01-19,43675,8070,"[\""Tablet\""]",3021.84,{},290812,0,"""North America""" +2024-07-17,43676,505,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",982.8,{},288908,1,"""Asia""" +2023-07-10,43677,6259,"[\""Laptop\"", \""Wireless Mouse\""]",580.24,{},84828,0,"""Asia""" +2024-04-17,43678,2730,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4334.84,"{\""seasonal\"": \""12%\""}",156737,0,"""South America""" +2024-09-10,43679,723,"[\""Phone\"", \""Wireless Mouse\""]",2397.52,"{\""seasonal\"": \""14%\""}",180643,0,"""Africa""" +2023-02-25,43680,7499,"[\""Keyboard\""]",4686.5,{},249128,0,"""Europe""" +2024-11-19,43681,5942,"[\""Laptop\"", \""Charger\""]",4106.19,{},150213,0,"""Africa""" +2024-06-28,43682,5346,"[\""Laptop\"", \""Keyboard\""]",1576.95,{},66135,0,"""Africa""" +2023-02-12,43683,6925,"[\""Charger\""]",3765.5,"{\""loyalty\"": \""26%\""}",61784,1,"""Africa""" +2023-03-02,43684,160,"[\""Monitor\""]",3544.77,{},57815,0,"""South America""" +2023-08-12,43685,4193,"[\""Charger\"", \""Keyboard\""]",4997.83,{},41209,0,"""North America""" +2024-03-07,43686,686,"[\""Wireless Mouse\"", \""Phone\""]",2589.26,{},86490,1,"""Europe""" +2023-03-15,43687,4258,"[\""Phone\"", \""Headphones\""]",4964.21,{},80359,1,"""Europe""" +2023-06-22,43688,5115,"[\""Phone\"", \""Keyboard\""]",4657.73,{},214316,1,"""South America""" +2024-01-04,43689,8262,"[\""Phone\"", \""Tablet\""]",3407.73,"{\""loyalty\"": \""29%\""}",89361,0,"""Africa""" +2024-09-29,43690,7716,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",477.6,"{\""seasonal\"": \""25%\""}",51407,0,"""South America""" +2023-01-12,43691,4697,"[\""Tablet\""]",4280.26,"{\""seasonal\"": \""24%\""}",292025,0,"""Asia""" +2024-03-20,43692,4768,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3658.94,"{\"": \""24%\""}",212131,1,"""South America""" +2024-10-11,43693,739,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3894.77,{},7113,0,"""Africa""" +2023-01-23,43694,499,"[\""Monitor\"", \""Phone\""]",1310.9,"{\""promo\"": \""25%\""}",287739,0,"""North America""" +2024-02-21,43695,7178,"[\""Charger\"", \""Wireless Mouse\""]",2840.14,"{\"": \""12%\""}",155739,0,"""North America""" +2024-05-11,43696,8928,"[\""Tablet\""]",2752.97,{},163198,0,"""Africa""" +2023-04-29,43697,7575,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3551.22,"{\""seasonal\"": \""6%\""}",205168,0,"""South America""" +2023-12-12,43698,7020,"[\""Laptop\"", \""Phone\""]",4689.4,{},179042,0,"""North America""" +2024-08-05,43699,7723,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4979.65,"{\""seasonal\"": \""9%\""}",29974,1,"""Asia""" +2023-07-29,43700,7166,"[\""Phone\""]",2056.3,{},271605,0,"""Africa""" +2023-02-10,43701,9076,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2711.19,"{\""loyalty\"": \""16%\""}",24973,1,"""Asia""" +2024-04-13,43702,4832,"[\""Wireless Mouse\""]",3401.39,{},90480,1,"""Europe""" +2023-04-10,43703,5817,"[\""Phone\""]",3209.4,"{\"": \""28%\""}",170012,1,"""Asia""" +2023-01-18,43704,2105,"[\""Laptop\""]",98.32,"{\"": \""29%\""}",26595,0,"""South America""" +2024-01-01,43705,1809,"[\""Charger\""]",4032.72,{},285298,1,"""Africa""" +2024-05-10,43706,3896,"[\""Laptop\"", \""Headphones\""]",337.26,"{\""promo\"": \""20%\""}",93382,1,"""North America""" +2023-02-11,43707,9704,"[\""Tablet\""]",1360.8,"{\"": \""8%\""}",126047,0,"""Africa""" +2024-03-20,43708,2806,"[\""Charger\""]",413.47,{},102712,1,"""Africa""" +2023-10-30,43709,6989,"[\""Phone\"", \""Headphones\""]",2034.83,{},49128,1,"""North America""" +2023-01-23,43710,1326,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3252.44,{},173543,1,"""Africa""" +2024-10-10,43711,9305,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1239.66,{},222580,0,"""North America""" +2024-08-09,43712,7865,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2148.7,"{\"": \""30%\""}",149165,1,"""Africa""" +2024-11-10,43713,3450,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3303.5,"{\""seasonal\"": \""9%\""}",10824,1,"""South America""" +2024-07-16,43714,9445,"[\""Charger\""]",2792.57,{},271698,0,"""Europe""" +2024-08-30,43715,3028,"[\""Keyboard\""]",61.82,"{\"": \""9%\""}",174210,0,"""North America""" +2024-05-25,43716,5410,"[\""Wireless Mouse\""]",1021.95,{},26346,1,"""North America""" +2024-12-17,43717,3341,"[\""Headphones\""]",1049.4,{},30677,0,"""North America""" +2023-03-23,43718,7756,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",372.37,"{\"": \""11%\""}",215686,0,"""Asia""" +2023-06-03,43719,7604,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2755.83,"{\""seasonal\"": \""20%\""}",254084,1,"""Asia""" +2023-09-26,43720,6116,"[\""Tablet\"", \""Wireless Mouse\""]",247.86,{},168245,1,"""North America""" +2023-03-16,43721,2852,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1667.0,{},199560,0,"""Europe""" +2023-06-28,43722,3730,"[\""Tablet\"", \""Headphones\""]",3565.62,{},72003,0,"""South America""" +2023-06-02,43723,2403,"[\""Charger\""]",1424.13,{},270890,1,"""Africa""" +2023-04-05,43724,1384,"[\""Keyboard\""]",2797.02,"{\"": \""27%\""}",139644,0,"""Africa""" +2023-05-07,43725,2634,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1711.52,"{\""seasonal\"": \""23%\""}",289913,0,"""South America""" +2024-12-11,43726,3380,"[\""Charger\"", \""Headphones\""]",3195.14,"{\""seasonal\"": \""26%\""}",253759,1,"""South America""" +2023-03-20,43727,8283,"[\""Tablet\"", \""Keyboard\""]",2445.17,"{\""loyalty\"": \""20%\""}",20375,1,"""North America""" +2024-07-02,43728,8743,"[\""Charger\""]",2089.58,"{\""promo\"": \""11%\""}",207640,1,"""North America""" +2024-11-20,43729,9446,"[\""Phone\""]",4745.73,"{\"": \""19%\""}",210601,0,"""South America""" +2023-01-29,43730,557,"[\""Headphones\""]",1953.72,{},177285,1,"""Europe""" +2024-08-19,43731,8795,"[\""Laptop\"", \""Wireless Mouse\""]",1809.12,{},22569,0,"""Europe""" +2024-09-24,43732,5005,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4053.7,"{\"": \""17%\""}",265888,0,"""Europe""" +2023-02-26,43733,136,"[\""Headphones\""]",961.95,"{\""loyalty\"": \""11%\""}",172590,0,"""Asia""" +2024-02-24,43734,946,"[\""Headphones\""]",2938.89,"{\"": \""27%\""}",215722,1,"""South America""" +2024-05-19,43735,9367,"[\""Headphones\"", \""Phone\""]",1387.14,{},173020,0,"""Europe""" +2024-07-23,43736,2508,"[\""Headphones\""]",1646.95,"{\""promo\"": \""7%\""}",11152,1,"""Asia""" +2024-02-07,43737,1156,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4197.21,{},208107,1,"""Europe""" +2023-01-02,43738,603,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4767.53,"{\""promo\"": \""16%\""}",27716,0,"""Europe""" +2024-03-05,43739,550,"[\""Wireless Mouse\""]",4632.66,{},251627,0,"""Africa""" +2023-07-31,43740,1013,"[\""Charger\"", \""Tablet\""]",2600.8,{},174803,1,"""Africa""" +2023-08-20,43741,1082,"[\""Monitor\"", \""Charger\""]",1691.48,"{\"": \""15%\""}",38575,0,"""South America""" +2024-12-29,43742,781,"[\""Monitor\""]",3554.1,"{\""seasonal\"": \""20%\""}",118373,0,"""South America""" +2024-11-22,43743,8063,"[\""Charger\"", \""Laptop\""]",1454.99,"{\"": \""17%\""}",62410,1,"""Asia""" +2023-10-11,43744,5254,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1827.79,"{\""promo\"": \""30%\""}",131174,0,"""South America""" +2023-09-13,43745,7877,"[\""Phone\"", \""Laptop\""]",1781.17,{},29551,0,"""Europe""" +2024-11-25,43746,1656,"[\""Laptop\""]",4463.69,{},52033,1,"""South America""" +2023-07-24,43747,2903,"[\""Phone\"", \""Monitor\""]",4188.81,"{\""seasonal\"": \""24%\""}",90942,1,"""Asia""" +2024-07-08,43748,8670,"[\""Tablet\""]",3867.85,{},180865,1,"""Africa""" +2024-06-16,43749,3072,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1710.86,"{\""seasonal\"": \""7%\""}",142204,0,"""North America""" +2023-03-12,43750,714,"[\""Headphones\""]",893.63,"{\""loyalty\"": \""20%\""}",181511,0,"""Asia""" +2024-10-08,43751,5170,"[\""Tablet\"", \""Headphones\""]",267.75,{},117985,0,"""Asia""" +2023-01-09,43752,2868,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3911.53,"{\""seasonal\"": \""23%\""}",116176,0,"""South America""" +2023-07-11,43753,8515,"[\""Monitor\""]",1086.64,"{\""seasonal\"": \""17%\""}",80822,0,"""Asia""" +2024-10-15,43754,3128,"[\""Wireless Mouse\""]",2874.38,"{\""promo\"": \""27%\""}",134765,1,"""Europe""" +2024-10-09,43755,4334,"[\""Keyboard\"", \""Headphones\""]",1533.43,"{\""loyalty\"": \""25%\""}",225696,0,"""Africa""" +2024-01-16,43756,5738,"[\""Laptop\""]",478.57,{},174673,0,"""Africa""" +2024-10-08,43757,2410,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1048.07,"{\""promo\"": \""6%\""}",203566,0,"""Asia""" +2023-11-06,43758,3446,"[\""Tablet\"", \""Wireless Mouse\""]",4620.64,{},263473,0,"""North America""" +2023-08-10,43759,6746,"[\""Headphones\""]",3568.29,"{\""loyalty\"": \""26%\""}",219385,0,"""North America""" +2024-05-23,43760,1644,"[\""Laptop\""]",1900.06,"{\""seasonal\"": \""14%\""}",223601,0,"""Africa""" +2023-03-06,43761,6911,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4327.43,{},41777,1,"""Asia""" +2024-12-15,43762,8877,"[\""Keyboard\""]",1342.68,{},151766,1,"""South America""" +2023-04-27,43763,6703,"[\""Laptop\"", \""Keyboard\""]",3038.26,"{\""loyalty\"": \""21%\""}",249917,1,"""North America""" +2023-03-03,43764,5046,"[\""Headphones\""]",3931.56,{},127691,0,"""North America""" +2023-12-22,43765,1565,"[\""Phone\"", \""Monitor\""]",1165.97,"{\""loyalty\"": \""17%\""}",159262,1,"""Asia""" +2024-05-16,43766,573,"[\""Phone\"", \""Keyboard\""]",3245.55,{},76629,1,"""South America""" +2024-10-04,43767,3275,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3118.26,"{\""seasonal\"": \""23%\""}",15778,1,"""North America""" +2024-08-30,43768,4471,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4684.57,{},246706,0,"""South America""" +2024-07-27,43769,8449,"[\""Wireless Mouse\"", \""Monitor\""]",1519.35,{},71327,0,"""North America""" +2023-12-28,43770,5932,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2302.03,"{\""seasonal\"": \""29%\""}",35288,0,"""Asia""" +2024-01-18,43771,7122,"[\""Phone\""]",1063.13,{},91244,0,"""North America""" +2024-02-01,43772,6443,"[\""Keyboard\""]",773.09,{},206110,1,"""South America""" +2024-01-26,43773,9840,"[\""Tablet\""]",4118.69,{},45648,0,"""Europe""" +2023-07-01,43774,2001,"[\""Laptop\"", \""Charger\""]",2524.2,"{\"": \""25%\""}",134505,1,"""South America""" +2023-08-08,43775,9829,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2939.39,{},104054,0,"""North America""" +2023-11-24,43776,9802,"[\""Monitor\"", \""Wireless Mouse\""]",876.58,{},37572,1,"""Africa""" +2023-01-29,43777,1549,"[\""Phone\"", \""Headphones\""]",3095.25,{},238617,1,"""North America""" +2023-10-21,43778,2555,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",432.41,"{\""seasonal\"": \""24%\""}",41251,1,"""Asia""" +2023-05-07,43779,1642,"[\""Headphones\"", \""Tablet\""]",1429.3,"{\""loyalty\"": \""18%\""}",271181,0,"""South America""" +2023-05-18,43780,1675,"[\""Laptop\"", \""Keyboard\""]",3570.62,{},184079,1,"""Asia""" +2024-12-20,43781,8322,"[\""Monitor\""]",1338.8,"{\""loyalty\"": \""27%\""}",244914,0,"""North America""" +2023-08-16,43782,6937,"[\""Wireless Mouse\""]",4609.14,{},113441,0,"""Asia""" +2024-10-16,43783,2842,"[\""Tablet\""]",4283.31,"{\""loyalty\"": \""28%\""}",91883,0,"""Asia""" +2024-06-20,43784,5961,"[\""Wireless Mouse\"", \""Laptop\""]",3896.85,{},23712,0,"""South America""" +2023-05-13,43785,8738,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2534.72,"{\""promo\"": \""30%\""}",104643,1,"""Asia""" +2024-08-08,43786,3602,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",102.42,{},80023,0,"""Europe""" +2024-03-31,43787,4691,"[\""Laptop\""]",3319.47,"{\""promo\"": \""7%\""}",228771,0,"""Africa""" +2023-07-15,43788,2845,"[\""Headphones\"", \""Tablet\""]",4459.25,"{\""promo\"": \""6%\""}",101279,1,"""North America""" +2024-06-28,43789,3955,"[\""Wireless Mouse\""]",1654.12,{},191252,1,"""South America""" +2023-03-01,43790,5024,"[\""Keyboard\"", \""Headphones\""]",254.31,"{\""promo\"": \""28%\""}",80790,1,"""Asia""" +2024-05-12,43791,3397,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2506.46,{},163660,1,"""Africa""" +2024-12-30,43792,1225,"[\""Laptop\"", \""Monitor\""]",3883.39,{},78941,0,"""Africa""" +2023-08-14,43793,4912,"[\""Charger\"", \""Wireless Mouse\""]",4546.35,{},120698,1,"""Africa""" +2023-12-31,43794,4692,"[\""Charger\""]",3532.94,{},72734,0,"""South America""" +2024-06-13,43795,5152,"[\""Laptop\""]",3030.72,{},258010,0,"""Europe""" +2023-06-18,43796,7717,"[\""Tablet\""]",3276.15,{},252013,1,"""Europe""" +2023-09-07,43797,8145,"[\""Tablet\""]",3510.81,"{\"": \""8%\""}",210959,0,"""South America""" +2024-01-13,43798,9560,"[\""Keyboard\"", \""Monitor\""]",4382.11,"{\""loyalty\"": \""6%\""}",239126,1,"""Africa""" +2023-03-11,43799,2557,"[\""Headphones\"", \""Charger\""]",1554.99,{},225792,1,"""Africa""" +2023-10-30,43800,3751,"[\""Keyboard\""]",4352.24,{},90368,0,"""Europe""" +2023-10-14,43801,5317,"[\""Monitor\"", \""Wireless Mouse\""]",582.4,{},71549,1,"""North America""" +2023-04-28,43802,5702,"[\""Wireless Mouse\"", \""Monitor\""]",1297.49,"{\"": \""26%\""}",50492,1,"""South America""" +2024-03-16,43803,9404,"[\""Phone\""]",1615.87,{},228896,1,"""Africa""" +2023-04-19,43804,6941,"[\""Wireless Mouse\"", \""Keyboard\""]",4883.99,{},34582,1,"""Africa""" +2023-07-31,43805,4048,"[\""Tablet\""]",934.42,"{\""loyalty\"": \""8%\""}",7866,0,"""Europe""" +2024-09-23,43806,1500,"[\""Keyboard\"", \""Headphones\""]",4396.48,{},65732,1,"""South America""" +2023-09-28,43807,5264,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3091.03,{},28150,0,"""Africa""" +2023-03-10,43808,7285,"[\""Wireless Mouse\""]",582.34,"{\"": \""8%\""}",96424,0,"""North America""" +2023-09-10,43809,3557,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1238.46,"{\""loyalty\"": \""14%\""}",257167,0,"""Africa""" +2024-12-27,43810,6645,"[\""Phone\""]",3565.21,"{\""loyalty\"": \""30%\""}",32078,0,"""North America""" +2023-03-26,43811,2900,"[\""Phone\"", \""Headphones\""]",1267.73,"{\""promo\"": \""29%\""}",298467,1,"""Europe""" +2023-09-20,43812,4143,"[\""Charger\"", \""Monitor\""]",3271.73,{},165808,0,"""Africa""" +2024-12-13,43813,8746,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3752.55,"{\""promo\"": \""24%\""}",196601,1,"""Africa""" +2024-08-16,43814,3546,"[\""Keyboard\""]",4873.29,{},96383,1,"""Europe""" +2023-05-30,43815,5718,"[\""Phone\"", \""Tablet\""]",3290.87,{},177680,0,"""South America""" +2024-07-12,43816,4043,"[\""Tablet\""]",4939.72,"{\"": \""16%\""}",114823,1,"""Africa""" +2023-04-28,43817,1483,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",551.47,{},62607,1,"""Asia""" +2023-10-19,43818,9088,"[\""Keyboard\""]",4410.49,{},231906,0,"""Asia""" +2024-11-02,43819,9303,"[\""Wireless Mouse\"", \""Headphones\""]",1513.74,"{\"": \""17%\""}",130162,0,"""South America""" +2023-02-18,43820,906,"[\""Phone\"", \""Charger\""]",4384.66,"{\""seasonal\"": \""25%\""}",219628,0,"""South America""" +2024-01-19,43821,9022,"[\""Phone\"", \""Monitor\""]",537.31,"{\""loyalty\"": \""15%\""}",270694,0,"""South America""" +2024-01-12,43822,7075,"[\""Tablet\""]",4909.89,{},1877,0,"""Asia""" +2023-11-04,43823,2115,"[\""Phone\""]",4810.45,"{\""seasonal\"": \""24%\""}",57798,1,"""Asia""" +2024-02-17,43824,7115,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1134.39,{},97730,1,"""North America""" +2023-07-02,43825,9792,"[\""Tablet\""]",1294.1,{},35842,0,"""Europe""" +2024-03-12,43826,1376,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2907.27,{},86555,0,"""Asia""" +2024-09-05,43827,6013,"[\""Keyboard\"", \""Laptop\""]",4454.36,"{\""loyalty\"": \""12%\""}",172756,0,"""South America""" +2023-07-23,43828,8269,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3708.39,{},5800,1,"""North America""" +2023-10-19,43829,8289,"[\""Charger\"", \""Phone\""]",872.64,{},87388,1,"""Africa""" +2023-09-07,43830,7971,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",607.26,"{\""loyalty\"": \""22%\""}",51694,0,"""North America""" +2023-08-16,43831,4494,"[\""Tablet\"", \""Wireless Mouse\""]",3143.81,"{\""seasonal\"": \""25%\""}",21635,0,"""Africa""" +2023-05-15,43832,2922,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1639.26,{},8722,1,"""North America""" +2024-07-04,43833,8880,"[\""Keyboard\"", \""Charger\""]",518.79,{},153935,1,"""Europe""" +2023-04-12,43834,9563,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2912.17,"{\""promo\"": \""5%\""}",99948,1,"""Africa""" +2024-12-18,43835,1379,"[\""Laptop\"", \""Monitor\""]",2878.68,"{\""promo\"": \""17%\""}",236374,1,"""Asia""" +2023-08-07,43836,7947,"[\""Wireless Mouse\"", \""Tablet\""]",4333.22,"{\""seasonal\"": \""30%\""}",120140,1,"""North America""" +2024-07-19,43837,2965,"[\""Wireless Mouse\""]",76.79,{},55574,1,"""Europe""" +2023-01-19,43838,1191,"[\""Monitor\""]",1658.46,"{\""loyalty\"": \""9%\""}",178473,1,"""Asia""" +2024-03-11,43839,1082,"[\""Laptop\"", \""Phone\""]",2490.54,"{\"": \""28%\""}",18757,1,"""Asia""" +2024-07-29,43840,480,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1262.25,"{\""promo\"": \""16%\""}",126156,0,"""Asia""" +2023-07-12,43841,6689,"[\""Monitor\"", \""Wireless Mouse\""]",1706.86,"{\""seasonal\"": \""29%\""}",203345,0,"""Europe""" +2024-11-24,43842,3133,"[\""Monitor\"", \""Charger\""]",1574.97,{},144123,0,"""Europe""" +2023-12-18,43843,426,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1120.93,"{\"": \""9%\""}",146755,1,"""South America""" +2023-08-06,43844,1194,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2620.6,"{\""seasonal\"": \""9%\""}",106698,0,"""South America""" +2023-05-22,43845,1629,"[\""Tablet\""]",2248.29,{},235881,0,"""Asia""" +2023-07-30,43846,2996,"[\""Charger\"", \""Headphones\""]",3224.07,{},108686,0,"""Africa""" +2023-08-23,43847,7468,"[\""Headphones\""]",1228.74,"{\""promo\"": \""17%\""}",290114,0,"""North America""" +2023-03-18,43848,944,"[\""Keyboard\"", \""Headphones\""]",4237.9,{},39056,0,"""Africa""" +2023-01-10,43849,5084,"[\""Laptop\"", \""Monitor\""]",2476.05,"{\"": \""15%\""}",10919,0,"""North America""" +2023-06-24,43850,1155,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2336.95,{},135247,0,"""Asia""" +2024-09-11,43851,5132,"[\""Headphones\"", \""Wireless Mouse\""]",703.34,"{\""promo\"": \""7%\""}",191006,0,"""Europe""" +2023-04-15,43852,5893,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1427.12,{},246379,0,"""North America""" +2024-08-16,43853,5909,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3055.71,"{\""seasonal\"": \""8%\""}",36927,1,"""Africa""" +2023-04-20,43854,2236,"[\""Monitor\""]",2771.38,{},239635,1,"""Africa""" +2023-07-17,43855,442,"[\""Monitor\"", \""Tablet\""]",1839.35,{},121248,1,"""Africa""" +2024-05-03,43856,8800,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3226.23,"{\""seasonal\"": \""16%\""}",190622,1,"""Europe""" +2023-08-14,43857,6278,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2229.44,{},157009,0,"""Asia""" +2023-02-26,43858,5206,"[\""Phone\""]",1634.27,{},42767,0,"""Asia""" +2023-01-29,43859,8310,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2862.92,"{\"": \""28%\""}",191920,1,"""Europe""" +2023-04-25,43860,7890,"[\""Charger\""]",4358.26,{},62968,1,"""North America""" +2023-09-05,43861,3486,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2138.78,"{\""seasonal\"": \""18%\""}",90561,0,"""Asia""" +2024-08-18,43862,3647,"[\""Laptop\""]",1383.44,{},158089,1,"""Africa""" +2023-02-24,43863,7004,"[\""Phone\""]",4200.75,"{\"": \""14%\""}",21496,0,"""South America""" +2024-05-24,43864,3555,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4959.51,"{\""loyalty\"": \""11%\""}",145924,1,"""Asia""" +2023-04-24,43865,504,"[\""Monitor\"", \""Laptop\""]",3736.59,{},173451,1,"""Asia""" +2023-04-15,43866,7040,"[\""Keyboard\"", \""Charger\""]",468.75,{},90090,1,"""Africa""" +2024-04-05,43867,2203,"[\""Laptop\""]",1985.58,{},61572,0,"""Europe""" +2023-12-21,43868,6824,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4237.23,{},113666,0,"""Africa""" +2023-03-30,43869,9494,"[\""Wireless Mouse\"", \""Laptop\""]",2822.25,{},189046,1,"""South America""" +2024-05-10,43870,4416,"[\""Tablet\"", \""Laptop\""]",1787.13,{},107624,1,"""Asia""" +2023-09-21,43871,8068,"[\""Phone\""]",2512.31,"{\""seasonal\"": \""11%\""}",16047,1,"""Africa""" +2024-10-04,43872,3567,"[\""Keyboard\""]",2636.25,"{\"": \""6%\""}",99057,1,"""North America""" +2024-04-26,43873,5539,"[\""Headphones\""]",3744.41,{},32588,0,"""Africa""" +2024-11-13,43874,3502,"[\""Headphones\""]",4030.58,"{\"": \""22%\""}",118377,0,"""South America""" +2024-07-08,43875,101,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1526.98,{},294401,1,"""South America""" +2023-03-05,43876,5387,"[\""Laptop\""]",4289.56,"{\""loyalty\"": \""22%\""}",15590,0,"""Africa""" +2023-09-02,43877,1570,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2131.06,"{\"": \""10%\""}",41412,0,"""North America""" +2023-10-29,43878,7411,"[\""Monitor\"", \""Phone\""]",4455.52,{},19366,1,"""Europe""" +2024-03-14,43879,2617,"[\""Wireless Mouse\"", \""Headphones\""]",3437.19,"{\""seasonal\"": \""5%\""}",197593,0,"""Europe""" +2023-11-05,43880,9863,"[\""Monitor\"", \""Tablet\""]",577.53,{},75777,0,"""Europe""" +2024-03-10,43881,7674,"[\""Laptop\"", \""Charger\""]",1424.37,{},84489,1,"""South America""" +2023-11-25,43882,2005,"[\""Phone\"", \""Keyboard\""]",2260.26,"{\""seasonal\"": \""26%\""}",201061,0,"""South America""" +2024-02-09,43883,4554,"[\""Wireless Mouse\""]",3448.1,{},42807,0,"""South America""" +2023-01-20,43884,4282,"[\""Monitor\""]",2841.61,"{\""seasonal\"": \""16%\""}",68318,1,"""Asia""" +2023-07-29,43885,7349,"[\""Tablet\""]",104.53,{},51931,0,"""North America""" +2024-08-27,43886,705,"[\""Phone\""]",1815.64,{},209972,0,"""North America""" +2023-04-29,43887,8454,"[\""Headphones\""]",986.67,{},202585,0,"""South America""" +2023-06-06,43888,1589,"[\""Tablet\"", \""Headphones\""]",591.98,"{\""loyalty\"": \""22%\""}",146831,1,"""South America""" +2023-12-08,43889,749,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4288.96,"{\""seasonal\"": \""17%\""}",157558,1,"""Asia""" +2024-01-25,43890,1813,"[\""Keyboard\""]",1220.18,{},287380,1,"""Africa""" +2024-08-18,43891,8168,"[\""Tablet\"", \""Charger\""]",3529.31,"{\""seasonal\"": \""27%\""}",49124,0,"""North America""" +2024-08-15,43892,2170,"[\""Tablet\""]",512.11,{},186301,1,"""Asia""" +2024-02-23,43893,4046,"[\""Wireless Mouse\""]",3023.13,"{\"": \""5%\""}",213796,1,"""South America""" +2023-06-30,43894,5422,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4921.79,"{\""seasonal\"": \""26%\""}",37820,1,"""Europe""" +2023-07-28,43895,8696,"[\""Phone\""]",3390.18,"{\""seasonal\"": \""11%\""}",284830,0,"""Asia""" +2023-10-03,43896,2744,"[\""Keyboard\""]",1630.97,{},40946,1,"""South America""" +2023-10-24,43897,3557,"[\""Tablet\""]",1654.37,"{\"": \""22%\""}",191615,0,"""Asia""" +2023-09-25,43898,3531,"[\""Phone\""]",4659.91,"{\""promo\"": \""21%\""}",252160,1,"""South America""" +2024-10-22,43899,8581,"[\""Headphones\""]",481.64,{},172056,0,"""North America""" +2023-03-06,43900,5331,"[\""Charger\""]",2367.9,{},10765,1,"""Asia""" +2023-07-19,43901,3942,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",752.61,"{\""seasonal\"": \""9%\""}",8183,1,"""Europe""" +2024-11-05,43902,1545,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2431.14,{},196799,1,"""North America""" +2023-03-11,43903,7509,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3550.76,"{\""promo\"": \""20%\""}",177477,0,"""Africa""" +2023-04-23,43904,819,"[\""Monitor\""]",742.03,"{\""promo\"": \""17%\""}",258013,0,"""South America""" +2023-09-20,43905,6358,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1367.59,"{\""loyalty\"": \""24%\""}",15007,1,"""Africa""" +2023-05-05,43906,7413,"[\""Tablet\"", \""Phone\""]",4172.39,"{\""loyalty\"": \""24%\""}",252125,0,"""South America""" +2023-12-13,43907,1162,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2447.21,"{\""seasonal\"": \""5%\""}",286833,0,"""Europe""" +2023-01-07,43908,4452,"[\""Keyboard\"", \""Charger\""]",564.61,{},114569,0,"""Asia""" +2023-07-09,43909,2222,"[\""Headphones\"", \""Charger\""]",1755.46,"{\""seasonal\"": \""11%\""}",180838,1,"""Asia""" +2024-05-24,43910,1960,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3977.5,"{\""seasonal\"": \""29%\""}",184182,1,"""North America""" +2023-01-15,43911,4428,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4604.92,{},128875,1,"""North America""" +2023-07-15,43912,7180,"[\""Laptop\"", \""Tablet\""]",1976.51,"{\""promo\"": \""9%\""}",193858,0,"""Africa""" +2024-01-14,43913,4123,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4445.93,{},160926,1,"""Asia""" +2024-12-13,43914,1358,"[\""Wireless Mouse\""]",4417.6,{},55838,1,"""South America""" +2023-02-15,43915,5726,"[\""Headphones\""]",3907.98,"{\"": \""28%\""}",255032,1,"""Europe""" +2023-09-10,43916,3034,"[\""Tablet\"", \""Headphones\""]",1636.4,"{\"": \""28%\""}",60639,1,"""Europe""" +2024-12-29,43917,3260,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3567.29,{},56446,0,"""Africa""" +2024-03-17,43918,2715,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1619.66,{},283456,0,"""Africa""" +2024-06-16,43919,6907,"[\""Wireless Mouse\"", \""Headphones\""]",996.26,{},194411,1,"""South America""" +2024-08-11,43920,1838,"[\""Wireless Mouse\""]",453.99,"{\"": \""5%\""}",263341,1,"""Europe""" +2023-07-21,43921,1680,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2591.31,{},105162,0,"""South America""" +2024-06-04,43922,4133,"[\""Charger\""]",3157.18,"{\""loyalty\"": \""21%\""}",26743,1,"""Europe""" +2024-03-18,43923,3656,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2450.56,{},157387,0,"""Europe""" +2023-07-23,43924,8439,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",539.98,{},282459,0,"""Europe""" +2023-12-09,43925,919,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4769.49,"{\""seasonal\"": \""16%\""}",97512,1,"""North America""" +2024-05-10,43926,4443,"[\""Headphones\"", \""Tablet\""]",1557.04,{},272707,1,"""Asia""" +2024-09-21,43927,4515,"[\""Laptop\"", \""Tablet\""]",1835.2,"{\"": \""28%\""}",200216,1,"""North America""" +2024-05-16,43928,6710,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",517.25,{},154806,0,"""Africa""" +2023-03-20,43929,9535,"[\""Monitor\"", \""Wireless Mouse\""]",4223.69,{},10700,0,"""Africa""" +2024-10-20,43930,5425,"[\""Laptop\"", \""Monitor\""]",3341.17,{},289469,1,"""Asia""" +2024-04-27,43931,1845,"[\""Laptop\""]",1259.25,"{\""seasonal\"": \""28%\""}",15373,0,"""North America""" +2024-04-14,43932,8504,"[\""Phone\"", \""Keyboard\""]",3489.77,"{\""promo\"": \""24%\""}",297504,1,"""Europe""" +2024-02-11,43933,4012,"[\""Phone\""]",3228.15,"{\""seasonal\"": \""10%\""}",36506,1,"""South America""" +2024-11-28,43934,5781,"[\""Tablet\""]",4877.55,"{\"": \""9%\""}",66830,1,"""Asia""" +2024-07-13,43935,2349,"[\""Wireless Mouse\"", \""Phone\""]",1729.93,"{\""seasonal\"": \""11%\""}",223742,0,"""Asia""" +2023-07-17,43936,9286,"[\""Laptop\"", \""Monitor\""]",1299.73,{},179760,0,"""Asia""" +2024-05-22,43937,967,"[\""Wireless Mouse\"", \""Phone\""]",1439.4,{},282059,1,"""Europe""" +2023-12-15,43938,3591,"[\""Monitor\"", \""Wireless Mouse\""]",4023.89,{},296233,0,"""Africa""" +2024-01-10,43939,6656,"[\""Laptop\""]",837.38,{},37768,1,"""North America""" +2023-02-24,43940,9675,"[\""Monitor\""]",4457.42,{},207569,0,"""Europe""" +2023-12-20,43941,7690,"[\""Wireless Mouse\""]",213.9,{},140894,1,"""Africa""" +2023-10-27,43942,4383,"[\""Tablet\""]",1793.45,{},99131,0,"""South America""" +2024-09-14,43943,2178,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3943.82,{},297270,1,"""Europe""" +2024-10-31,43944,6847,"[\""Phone\""]",1333.11,{},123868,0,"""North America""" +2023-12-28,43945,6615,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3197.09,{},78913,0,"""Africa""" +2024-05-04,43946,3999,"[\""Charger\"", \""Tablet\""]",2058.71,"{\""seasonal\"": \""23%\""}",92999,0,"""Africa""" +2023-12-01,43947,7,"[\""Monitor\"", \""Phone\""]",4880.67,"{\"": \""14%\""}",152479,0,"""Africa""" +2023-09-05,43948,1439,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3598.0,"{\""seasonal\"": \""17%\""}",153595,0,"""Europe""" +2024-06-29,43949,6865,"[\""Headphones\""]",1889.31,"{\""loyalty\"": \""26%\""}",162076,0,"""Europe""" +2024-01-26,43950,4986,"[\""Charger\"", \""Keyboard\""]",2888.71,{},260237,1,"""South America""" +2023-01-20,43951,7055,"[\""Keyboard\"", \""Phone\""]",1965.55,"{\""promo\"": \""26%\""}",299734,1,"""North America""" +2023-07-06,43952,2703,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4659.22,{},196852,1,"""North America""" +2024-05-13,43953,7582,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1164.57,{},285329,0,"""South America""" +2023-03-02,43954,804,"[\""Charger\""]",3119.82,{},65578,0,"""Europe""" +2023-12-08,43955,688,"[\""Wireless Mouse\""]",444.85,"{\""seasonal\"": \""28%\""}",271668,0,"""Asia""" +2024-11-07,43956,7776,"[\""Laptop\"", \""Monitor\""]",1502.11,{},181232,1,"""North America""" +2024-04-22,43957,2902,"[\""Tablet\""]",4584.55,{},134558,1,"""North America""" +2024-07-11,43958,413,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1480.53,{},56516,0,"""Europe""" +2023-05-07,43959,9321,"[\""Wireless Mouse\""]",3444.77,"{\""loyalty\"": \""10%\""}",244539,1,"""North America""" +2023-08-30,43960,17,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",327.68,"{\""loyalty\"": \""5%\""}",258383,1,"""North America""" +2023-02-08,43961,230,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2618.32,{},257024,1,"""Asia""" +2023-07-29,43962,1826,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2899.86,{},15766,0,"""Africa""" +2023-02-03,43963,6618,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",621.61,{},273427,1,"""Europe""" +2024-03-04,43964,7808,"[\""Tablet\""]",2379.27,"{\""promo\"": \""20%\""}",53524,0,"""South America""" +2023-04-25,43965,1122,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",82.0,"{\""seasonal\"": \""14%\""}",251704,1,"""Africa""" +2023-05-23,43966,5660,"[\""Wireless Mouse\""]",467.76,"{\"": \""26%\""}",109474,1,"""North America""" +2024-06-30,43967,2278,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2394.24,{},173826,0,"""Africa""" +2023-07-31,43968,9131,"[\""Charger\"", \""Monitor\""]",782.82,{},212680,0,"""Asia""" +2024-08-31,43969,8257,"[\""Charger\"", \""Monitor\""]",3201.81,{},137513,1,"""South America""" +2024-06-11,43970,9929,"[\""Charger\""]",483.21,{},182026,0,"""North America""" +2023-03-29,43971,4746,"[\""Tablet\""]",4591.11,"{\""promo\"": \""7%\""}",146426,1,"""South America""" +2023-07-31,43972,6720,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1910.12,"{\""loyalty\"": \""17%\""}",172233,1,"""Europe""" +2023-05-17,43973,5694,"[\""Wireless Mouse\""]",3604.57,"{\""loyalty\"": \""8%\""}",153805,0,"""North America""" +2023-07-31,43974,8174,"[\""Keyboard\"", \""Wireless Mouse\""]",1836.48,{},136562,1,"""North America""" +2023-11-29,43975,6126,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4906.6,{},63796,0,"""Africa""" +2024-10-18,43976,2832,"[\""Keyboard\""]",1124.46,"{\""seasonal\"": \""17%\""}",282636,1,"""North America""" +2024-03-19,43977,6058,"[\""Monitor\""]",3507.67,"{\""seasonal\"": \""27%\""}",298921,0,"""South America""" +2023-12-06,43978,5943,"[\""Keyboard\"", \""Wireless Mouse\""]",782.29,"{\""seasonal\"": \""13%\""}",100770,0,"""Africa""" +2023-09-22,43979,7715,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1095.52,"{\""promo\"": \""30%\""}",26808,1,"""South America""" +2023-06-07,43980,1552,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1156.54,{},144551,1,"""Africa""" +2023-10-21,43981,3730,"[\""Wireless Mouse\""]",4553.3,{},177803,0,"""Africa""" +2023-07-28,43982,4275,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3144.97,{},245675,0,"""Africa""" +2024-11-20,43983,3298,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",208.69,"{\""seasonal\"": \""19%\""}",54714,0,"""Africa""" +2023-06-09,43984,3758,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1685.38,"{\""promo\"": \""17%\""}",185722,0,"""South America""" +2024-05-12,43985,3140,"[\""Tablet\"", \""Phone\""]",1627.67,{},18977,1,"""North America""" +2023-12-16,43986,1903,"[\""Headphones\"", \""Wireless Mouse\""]",2192.19,"{\"": \""18%\""}",90440,0,"""Asia""" +2023-07-24,43987,8501,"[\""Monitor\"", \""Tablet\""]",84.79,{},292606,0,"""Africa""" +2023-03-17,43988,3169,"[\""Wireless Mouse\""]",2161.77,"{\""loyalty\"": \""6%\""}",137592,1,"""Europe""" +2024-03-17,43989,369,"[\""Charger\"", \""Keyboard\""]",4977.58,"{\""loyalty\"": \""21%\""}",146778,0,"""Europe""" +2024-11-10,43990,294,"[\""Phone\""]",2772.29,"{\"": \""29%\""}",260941,0,"""Asia""" +2024-01-11,43991,4383,"[\""Phone\""]",1253.43,"{\""seasonal\"": \""25%\""}",172959,1,"""North America""" +2024-03-18,43992,8396,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2570.42,"{\""seasonal\"": \""11%\""}",161364,1,"""Asia""" +2024-10-04,43993,3200,"[\""Laptop\""]",119.75,"{\""seasonal\"": \""7%\""}",116161,0,"""Africa""" +2023-11-04,43994,3940,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1761.71,"{\""promo\"": \""15%\""}",87306,1,"""North America""" +2023-03-13,43995,9721,"[\""Monitor\"", \""Tablet\""]",431.88,{},288508,0,"""Asia""" +2023-08-08,43996,9045,"[\""Keyboard\""]",3966.09,"{\""promo\"": \""23%\""}",250535,1,"""South America""" +2024-06-10,43997,877,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4581.51,"{\""seasonal\"": \""16%\""}",241784,0,"""South America""" +2024-07-19,43998,2577,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4738.67,{},245820,1,"""Asia""" +2023-07-02,43999,3041,"[\""Headphones\"", \""Keyboard\""]",4697.77,"{\""seasonal\"": \""14%\""}",79624,1,"""North America""" +2024-02-06,44000,8979,"[\""Charger\""]",3136.39,{},11677,1,"""Africa""" +2024-10-01,44001,5459,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1575.88,"{\""seasonal\"": \""21%\""}",259665,1,"""North America""" +2024-04-17,44002,1201,"[\""Tablet\"", \""Headphones\""]",3726.1,"{\""seasonal\"": \""20%\""}",248876,0,"""North America""" +2024-11-30,44003,5297,"[\""Tablet\"", \""Monitor\""]",1804.89,{},54889,1,"""Africa""" +2024-04-22,44004,821,"[\""Headphones\"", \""Charger\""]",2485.81,{},32792,0,"""Asia""" +2023-10-03,44005,4810,"[\""Phone\"", \""Headphones\""]",2726.27,"{\""loyalty\"": \""16%\""}",116569,1,"""Africa""" +2024-03-12,44006,3576,"[\""Headphones\"", \""Tablet\""]",1419.62,{},194138,1,"""South America""" +2023-03-18,44007,3085,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4464.15,"{\""promo\"": \""15%\""}",271008,0,"""North America""" +2023-06-29,44008,7551,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1758.74,{},167144,0,"""Asia""" +2023-12-29,44009,1766,"[\""Laptop\"", \""Phone\""]",2960.47,{},217808,0,"""South America""" +2023-05-18,44010,6305,"[\""Laptop\""]",3298.15,"{\""promo\"": \""20%\""}",82325,0,"""South America""" +2023-09-03,44011,9844,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1274.86,{},92383,1,"""Africa""" +2023-04-05,44012,3433,"[\""Laptop\""]",1686.23,{},31366,0,"""Africa""" +2023-12-10,44013,5311,"[\""Laptop\"", \""Phone\""]",542.89,{},252926,1,"""Asia""" +2023-06-25,44014,9743,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2978.88,{},200356,0,"""Asia""" +2023-10-16,44015,1668,"[\""Tablet\"", \""Headphones\""]",3208.25,"{\""promo\"": \""18%\""}",92733,1,"""South America""" +2024-02-04,44016,4228,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",716.69,{},131571,0,"""South America""" +2023-08-15,44017,1748,"[\""Phone\"", \""Monitor\""]",3251.64,{},277164,0,"""Africa""" +2023-06-19,44018,52,"[\""Monitor\"", \""Laptop\""]",356.64,"{\""seasonal\"": \""7%\""}",91966,1,"""North America""" +2024-10-21,44019,8210,"[\""Tablet\""]",3503.63,{},67859,0,"""Europe""" +2024-09-26,44020,4014,"[\""Wireless Mouse\"", \""Laptop\""]",795.44,"{\""seasonal\"": \""12%\""}",7998,0,"""Europe""" +2024-04-16,44021,6781,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2680.88,"{\""loyalty\"": \""8%\""}",226199,1,"""South America""" +2024-01-26,44022,4773,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1418.62,"{\"": \""28%\""}",161135,1,"""North America""" +2024-09-29,44023,5616,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1654.83,"{\"": \""5%\""}",177976,0,"""North America""" +2023-03-22,44024,5839,"[\""Keyboard\""]",1979.49,{},277561,1,"""Africa""" +2024-06-24,44025,2116,"[\""Phone\"", \""Wireless Mouse\""]",2020.12,{},83072,0,"""North America""" +2023-05-05,44026,1835,"[\""Headphones\""]",2295.84,{},23022,1,"""Asia""" +2023-11-15,44027,8897,"[\""Laptop\"", \""Headphones\""]",2893.26,{},135459,0,"""Europe""" +2023-02-20,44028,4418,"[\""Monitor\""]",4899.66,{},296915,0,"""Africa""" +2024-07-10,44029,1113,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4298.61,"{\"": \""30%\""}",6453,1,"""South America""" +2024-04-06,44030,1811,"[\""Monitor\""]",356.95,"{\""loyalty\"": \""18%\""}",241409,0,"""North America""" +2024-10-07,44031,8508,"[\""Wireless Mouse\""]",2071.73,{},87262,0,"""Europe""" +2024-02-10,44032,5674,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1335.67,"{\""promo\"": \""15%\""}",262396,0,"""South America""" +2024-04-12,44033,9838,"[\""Phone\""]",1849.12,{},147917,0,"""South America""" +2024-11-16,44034,3823,"[\""Charger\"", \""Monitor\""]",2344.11,"{\""promo\"": \""17%\""}",288554,0,"""Asia""" +2024-09-27,44035,1290,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",332.52,"{\""loyalty\"": \""9%\""}",259600,1,"""Africa""" +2023-06-26,44036,7334,"[\""Monitor\""]",2323.31,"{\"": \""17%\""}",147365,1,"""Europe""" +2024-03-07,44037,1508,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",231.69,"{\""promo\"": \""25%\""}",275183,1,"""North America""" +2024-09-05,44038,7778,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2836.51,"{\""loyalty\"": \""28%\""}",146422,1,"""South America""" +2024-06-26,44039,6892,"[\""Monitor\"", \""Laptop\""]",2640.97,{},208604,1,"""South America""" +2023-05-01,44040,9296,"[\""Laptop\""]",1577.71,"{\""seasonal\"": \""17%\""}",259067,1,"""North America""" +2024-12-04,44041,9290,"[\""Charger\""]",1246.02,"{\"": \""27%\""}",171545,1,"""South America""" +2023-09-05,44042,1221,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3042.67,"{\"": \""17%\""}",75383,1,"""North America""" +2024-05-31,44043,1073,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3913.44,"{\"": \""15%\""}",31786,0,"""South America""" +2024-02-07,44044,2090,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3916.35,"{\""seasonal\"": \""9%\""}",204163,0,"""Africa""" +2024-02-14,44045,5730,"[\""Charger\"", \""Keyboard\""]",2639.87,"{\""promo\"": \""21%\""}",202061,1,"""Europe""" +2024-09-25,44046,5434,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4158.92,{},19881,0,"""Africa""" +2023-08-27,44047,1473,"[\""Phone\"", \""Headphones\""]",4865.39,"{\""loyalty\"": \""29%\""}",147124,1,"""Africa""" +2024-05-31,44048,799,"[\""Charger\"", \""Monitor\""]",1874.28,"{\""loyalty\"": \""26%\""}",267588,1,"""Asia""" +2023-01-16,44049,1232,"[\""Phone\""]",2300.48,{},94878,1,"""South America""" +2023-12-14,44050,9740,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",955.87,{},137354,1,"""Asia""" +2023-08-27,44051,4874,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",817.34,"{\""loyalty\"": \""17%\""}",96972,1,"""North America""" +2023-12-19,44052,537,"[\""Keyboard\""]",2020.14,"{\""loyalty\"": \""22%\""}",2713,0,"""Africa""" +2023-08-16,44053,7613,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1597.55,{},121677,0,"""Europe""" +2024-11-04,44054,8652,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",365.38,"{\""seasonal\"": \""30%\""}",174760,0,"""Asia""" +2024-08-13,44055,1499,"[\""Wireless Mouse\""]",881.79,"{\""loyalty\"": \""23%\""}",247752,1,"""Europe""" +2023-07-28,44056,1214,"[\""Keyboard\"", \""Charger\""]",4736.27,{},84560,1,"""Asia""" +2023-07-24,44057,4135,"[\""Phone\""]",481.94,"{\""loyalty\"": \""14%\""}",76846,0,"""Asia""" +2023-11-21,44058,535,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2313.02,"{\""loyalty\"": \""21%\""}",261804,0,"""Europe""" +2024-07-25,44059,5131,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4459.24,{},268117,0,"""Africa""" +2023-11-12,44060,4394,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1243.94,{},287696,1,"""North America""" +2024-05-22,44061,3247,"[\""Tablet\""]",3021.63,{},7299,1,"""Europe""" +2024-05-16,44062,8704,"[\""Tablet\"", \""Wireless Mouse\""]",431.25,{},166659,0,"""Asia""" +2024-02-22,44063,9744,"[\""Charger\""]",4989.49,{},148784,1,"""Africa""" +2023-08-17,44064,4380,"[\""Tablet\"", \""Headphones\""]",4908.36,{},64999,0,"""Africa""" +2024-12-17,44065,478,"[\""Laptop\"", \""Charger\""]",1867.06,"{\""seasonal\"": \""22%\""}",159832,0,"""Europe""" +2023-11-11,44066,2718,"[\""Keyboard\""]",896.56,"{\""seasonal\"": \""7%\""}",213022,1,"""Europe""" +2023-06-19,44067,3890,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",598.58,{},123308,0,"""Asia""" +2024-10-22,44068,102,"[\""Keyboard\""]",2291.48,"{\""seasonal\"": \""22%\""}",143506,0,"""Africa""" +2024-12-07,44069,2684,"[\""Wireless Mouse\"", \""Charger\""]",3858.62,"{\""seasonal\"": \""18%\""}",294997,1,"""South America""" +2024-10-14,44070,1124,"[\""Wireless Mouse\""]",3953.39,"{\"": \""16%\""}",25583,1,"""Europe""" +2023-06-01,44071,2178,"[\""Keyboard\"", \""Phone\""]",663.69,{},66979,1,"""South America""" +2023-01-15,44072,2246,"[\""Monitor\"", \""Wireless Mouse\""]",4581.68,{},258512,0,"""South America""" +2023-12-01,44073,1363,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4491.23,"{\""promo\"": \""30%\""}",10151,1,"""South America""" +2024-08-08,44074,2779,"[\""Headphones\"", \""Wireless Mouse\""]",2015.78,"{\""loyalty\"": \""14%\""}",243402,1,"""South America""" +2024-03-26,44075,5823,"[\""Headphones\""]",1967.01,{},134414,1,"""Europe""" +2024-11-23,44076,6076,"[\""Phone\"", \""Laptop\""]",3629.41,{},36752,1,"""Asia""" +2023-07-26,44077,7221,"[\""Keyboard\""]",3639.52,{},278548,0,"""Asia""" +2023-11-20,44078,7771,"[\""Monitor\"", \""Keyboard\""]",4450.71,{},226159,1,"""North America""" +2024-09-08,44079,1101,"[\""Laptop\""]",1168.77,"{\""seasonal\"": \""23%\""}",140468,0,"""Africa""" +2023-03-04,44080,6586,"[\""Laptop\"", \""Wireless Mouse\""]",951.15,"{\""loyalty\"": \""13%\""}",114634,0,"""Africa""" +2024-03-15,44081,9111,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4264.34,{},177715,0,"""Asia""" +2024-07-22,44082,7166,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2518.21,"{\""promo\"": \""9%\""}",66315,0,"""North America""" +2024-09-19,44083,2213,"[\""Laptop\"", \""Keyboard\""]",4905.65,"{\"": \""8%\""}",10372,1,"""Asia""" +2023-09-21,44084,585,"[\""Charger\"", \""Tablet\""]",678.72,{},76178,0,"""Africa""" +2024-07-02,44085,9082,"[\""Wireless Mouse\""]",4984.39,{},13029,0,"""South America""" +2024-11-30,44086,6039,"[\""Laptop\""]",459.26,"{\""seasonal\"": \""27%\""}",174048,0,"""Asia""" +2024-08-20,44087,1874,"[\""Monitor\"", \""Charger\""]",4989.65,{},296936,1,"""South America""" +2024-03-25,44088,9115,"[\""Monitor\""]",3982.71,{},167825,0,"""Europe""" +2023-09-13,44089,1175,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1630.66,{},11651,0,"""Asia""" +2023-12-11,44090,8771,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",810.76,"{\"": \""15%\""}",243823,1,"""South America""" +2023-02-12,44091,2075,"[\""Keyboard\""]",3569.57,"{\""seasonal\"": \""14%\""}",48206,0,"""Asia""" +2023-03-01,44092,4596,"[\""Keyboard\""]",3484.52,{},259345,0,"""North America""" +2023-08-04,44093,5266,"[\""Keyboard\""]",3966.22,"{\""promo\"": \""26%\""}",94565,0,"""Africa""" +2024-12-28,44094,3683,"[\""Tablet\"", \""Wireless Mouse\""]",1545.13,{},285996,0,"""Europe""" +2024-04-20,44095,261,"[\""Keyboard\""]",2263.9,{},107903,0,"""Asia""" +2023-01-10,44096,2980,"[\""Charger\""]",2827.78,"{\"": \""12%\""}",194946,0,"""South America""" +2023-10-20,44097,9402,"[\""Monitor\""]",3167.75,{},236113,0,"""North America""" +2023-06-16,44098,9126,"[\""Tablet\""]",3666.51,{},56059,1,"""North America""" +2024-04-13,44099,1128,"[\""Charger\""]",4575.63,{},179088,0,"""Africa""" +2023-09-03,44100,5947,"[\""Monitor\""]",1339.09,"{\""seasonal\"": \""30%\""}",49532,1,"""North America""" +2023-08-09,44101,2500,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",761.0,"{\""loyalty\"": \""20%\""}",198733,1,"""North America""" +2023-04-28,44102,8322,"[\""Keyboard\""]",4710.36,{},248200,0,"""South America""" +2024-02-25,44103,358,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1989.11,"{\""seasonal\"": \""26%\""}",192795,0,"""Africa""" +2023-10-18,44104,7583,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3607.76,"{\""seasonal\"": \""29%\""}",113129,0,"""Africa""" +2023-09-08,44105,5621,"[\""Monitor\"", \""Phone\""]",2455.47,{},178452,1,"""South America""" +2023-04-06,44106,9294,"[\""Tablet\""]",375.28,{},73066,1,"""Asia""" +2024-02-01,44107,1545,"[\""Headphones\"", \""Phone\""]",4618.62,{},68796,0,"""South America""" +2023-11-06,44108,6970,"[\""Laptop\""]",256.16,"{\""seasonal\"": \""21%\""}",137205,1,"""Asia""" +2024-06-01,44109,8359,"[\""Tablet\""]",2447.08,{},179199,0,"""South America""" +2024-02-06,44110,8358,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4064.96,{},294528,0,"""South America""" +2024-04-10,44111,9140,"[\""Charger\"", \""Tablet\""]",1781.9,"{\"": \""5%\""}",36521,1,"""Europe""" +2024-02-15,44112,1871,"[\""Monitor\"", \""Laptop\""]",4063.27,"{\""loyalty\"": \""10%\""}",248063,1,"""Europe""" +2023-07-19,44113,1840,"[\""Laptop\"", \""Tablet\""]",4342.76,"{\""loyalty\"": \""15%\""}",156585,0,"""Europe""" +2024-05-13,44114,9228,"[\""Wireless Mouse\""]",3351.8,"{\""promo\"": \""17%\""}",134422,1,"""South America""" +2024-11-15,44115,2520,"[\""Monitor\""]",763.46,{},153919,1,"""Asia""" +2024-06-29,44116,1930,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3970.31,"{\""seasonal\"": \""14%\""}",82444,0,"""Asia""" +2024-11-05,44117,1427,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1756.7,"{\""loyalty\"": \""14%\""}",77363,1,"""Europe""" +2023-12-26,44118,8805,"[\""Wireless Mouse\""]",4270.53,"{\""seasonal\"": \""20%\""}",280812,0,"""South America""" +2024-03-28,44119,1518,"[\""Phone\""]",4613.82,"{\"": \""17%\""}",244145,1,"""Africa""" +2023-08-23,44120,7393,"[\""Laptop\""]",1249.06,{},250635,0,"""Asia""" +2023-06-15,44121,2612,"[\""Wireless Mouse\""]",2064.08,{},134439,1,"""Europe""" +2023-06-17,44122,4016,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1596.75,{},258746,1,"""North America""" +2023-06-28,44123,1398,"[\""Wireless Mouse\"", \""Laptop\""]",336.12,{},124726,1,"""Africa""" +2024-02-22,44124,3651,"[\""Headphones\""]",3978.34,{},243909,1,"""Africa""" +2023-06-05,44125,3614,"[\""Tablet\""]",838.56,"{\"": \""28%\""}",187527,1,"""Asia""" +2023-06-14,44126,1397,"[\""Monitor\"", \""Keyboard\""]",1060.46,{},89717,1,"""Asia""" +2023-04-24,44127,3099,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2027.06,"{\""loyalty\"": \""21%\""}",208336,1,"""Asia""" +2023-09-17,44128,3443,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4671.82,{},205712,0,"""South America""" +2024-03-18,44129,9443,"[\""Phone\""]",2470.79,{},170565,0,"""Europe""" +2024-01-30,44130,9418,"[\""Monitor\""]",523.33,{},241000,0,"""South America""" +2024-04-27,44131,8709,"[\""Laptop\""]",3719.55,"{\"": \""7%\""}",113517,1,"""South America""" +2023-11-25,44132,1128,"[\""Headphones\""]",1002.88,{},92684,1,"""Europe""" +2023-09-23,44133,8675,"[\""Phone\""]",2386.4,{},75013,1,"""Europe""" +2024-08-30,44134,9036,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4284.2,{},280408,0,"""Africa""" +2024-08-19,44135,8663,"[\""Monitor\"", \""Tablet\""]",3753.58,{},121916,0,"""North America""" +2023-01-05,44136,9881,"[\""Headphones\""]",2185.37,{},92144,0,"""Europe""" +2024-05-03,44137,9532,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2708.8,"{\""loyalty\"": \""13%\""}",232395,1,"""North America""" +2024-04-15,44138,2637,"[\""Keyboard\""]",4841.4,{},217887,1,"""South America""" +2024-07-05,44139,6060,"[\""Monitor\""]",3077.86,{},217030,0,"""Europe""" +2023-01-24,44140,8430,"[\""Laptop\""]",739.64,{},3047,1,"""South America""" +2024-04-01,44141,3902,"[\""Charger\""]",4926.61,{},109078,1,"""South America""" +2023-11-14,44142,4448,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",502.64,"{\""seasonal\"": \""10%\""}",21042,0,"""Asia""" +2024-10-15,44143,80,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2452.98,"{\"": \""27%\""}",40613,0,"""South America""" +2023-08-16,44144,5340,"[\""Tablet\"", \""Laptop\""]",2856.31,{},76241,1,"""Europe""" +2023-01-27,44145,688,"[\""Charger\""]",549.42,{},134851,0,"""Asia""" +2024-07-17,44146,6593,"[\""Laptop\"", \""Tablet\""]",4593.71,{},131163,1,"""Europe""" +2023-06-01,44147,241,"[\""Keyboard\"", \""Laptop\""]",3146.69,{},255327,1,"""Asia""" +2024-06-09,44148,2816,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3201.23,"{\""promo\"": \""9%\""}",290227,0,"""Africa""" +2023-01-27,44149,187,"[\""Laptop\""]",3664.45,"{\""seasonal\"": \""9%\""}",244753,1,"""South America""" +2024-05-07,44150,3390,"[\""Wireless Mouse\"", \""Keyboard\""]",2458.57,{},252306,0,"""Europe""" +2023-03-10,44151,6525,"[\""Keyboard\"", \""Wireless Mouse\""]",2340.51,{},277838,0,"""South America""" +2024-02-01,44152,9262,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4406.05,{},28536,1,"""Europe""" +2023-02-03,44153,5483,"[\""Headphones\""]",2500.5,{},171478,0,"""Africa""" +2024-05-18,44154,7177,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1989.17,"{\""seasonal\"": \""26%\""}",132369,0,"""Europe""" +2024-12-12,44155,6501,"[\""Keyboard\""]",3701.12,{},100861,1,"""Europe""" +2023-04-26,44156,3312,"[\""Headphones\""]",2767.19,{},143294,0,"""Asia""" +2024-11-14,44157,6114,"[\""Phone\""]",417.25,{},171378,0,"""South America""" +2024-07-10,44158,394,"[\""Monitor\""]",2268.85,{},5106,1,"""Asia""" +2023-03-17,44159,7176,"[\""Keyboard\"", \""Monitor\""]",2796.67,{},124704,0,"""North America""" +2023-02-05,44160,8461,"[\""Tablet\"", \""Wireless Mouse\""]",1707.02,{},11870,0,"""South America""" +2023-06-15,44161,8436,"[\""Tablet\"", \""Monitor\""]",2576.07,"{\""loyalty\"": \""24%\""}",13780,0,"""South America""" +2023-05-05,44162,4676,"[\""Charger\""]",4053.4,{},111011,1,"""South America""" +2023-09-15,44163,5258,"[\""Tablet\""]",194.66,"{\""promo\"": \""23%\""}",44571,0,"""Africa""" +2024-05-22,44164,6547,"[\""Charger\"", \""Headphones\""]",4813.34,"{\"": \""10%\""}",287842,0,"""Africa""" +2023-01-09,44165,1508,"[\""Charger\""]",2776.66,"{\""seasonal\"": \""10%\""}",93482,0,"""Europe""" +2024-01-06,44166,1785,"[\""Keyboard\"", \""Monitor\""]",117.54,{},129355,1,"""Asia""" +2024-08-11,44167,6243,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2371.82,"{\""promo\"": \""15%\""}",285146,0,"""Africa""" +2023-01-03,44168,3945,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1321.06,{},141338,0,"""South America""" +2023-10-10,44169,5891,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",710.03,{},133770,0,"""Africa""" +2024-12-04,44170,6854,"[\""Charger\""]",4130.5,{},144353,1,"""Asia""" +2024-01-10,44171,4656,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1491.02,"{\"": \""6%\""}",197358,0,"""North America""" +2024-08-07,44172,7160,"[\""Wireless Mouse\""]",382.74,"{\"": \""22%\""}",95528,1,"""North America""" +2024-04-21,44173,6385,"[\""Keyboard\""]",2919.78,"{\""promo\"": \""24%\""}",193928,1,"""North America""" +2023-06-15,44174,4896,"[\""Phone\"", \""Tablet\""]",1480.43,"{\""seasonal\"": \""20%\""}",43114,0,"""Asia""" +2023-01-06,44175,9341,"[\""Charger\"", \""Wireless Mouse\""]",1632.25,{},152737,0,"""South America""" +2023-03-10,44176,2484,"[\""Phone\"", \""Tablet\""]",2000.58,"{\""seasonal\"": \""19%\""}",82469,0,"""North America""" +2023-02-24,44177,3217,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4255.86,"{\""promo\"": \""23%\""}",19507,0,"""Europe""" +2023-07-29,44178,4761,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1396.29,{},248293,1,"""South America""" +2024-12-08,44179,5941,"[\""Tablet\""]",3269.39,{},222182,1,"""North America""" +2023-08-22,44180,1995,"[\""Phone\""]",3739.68,"{\""promo\"": \""15%\""}",255312,1,"""Africa""" +2024-05-03,44181,8503,"[\""Charger\""]",4435.04,"{\""seasonal\"": \""24%\""}",172239,0,"""North America""" +2023-07-14,44182,493,"[\""Headphones\""]",2280.41,"{\"": \""18%\""}",259674,0,"""Africa""" +2023-05-23,44183,2165,"[\""Laptop\""]",333.98,{},236365,0,"""Europe""" +2024-02-20,44184,6255,"[\""Wireless Mouse\"", \""Keyboard\""]",1054.85,{},189353,0,"""South America""" +2024-05-16,44185,4076,"[\""Charger\""]",2307.81,{},167523,1,"""Africa""" +2023-02-23,44186,3847,"[\""Charger\""]",4471.26,{},129174,0,"""Asia""" +2024-11-10,44187,6036,"[\""Tablet\""]",235.63,"{\""seasonal\"": \""21%\""}",235365,1,"""Africa""" +2024-03-25,44188,8313,"[\""Laptop\""]",4391.29,"{\""seasonal\"": \""14%\""}",44031,0,"""Africa""" +2024-12-08,44189,9285,"[\""Tablet\""]",571.94,{},144716,1,"""Europe""" +2023-06-02,44190,1800,"[\""Wireless Mouse\""]",3492.77,{},276520,0,"""South America""" +2024-07-17,44191,2643,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1107.49,{},168027,0,"""North America""" +2023-07-07,44192,2541,"[\""Keyboard\"", \""Charger\""]",3855.73,{},288393,1,"""Asia""" +2024-11-02,44193,3291,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3698.98,"{\"": \""6%\""}",66522,1,"""Europe""" +2023-10-09,44194,406,"[\""Keyboard\""]",2444.12,"{\""promo\"": \""27%\""}",42633,1,"""Europe""" +2023-05-09,44195,1189,"[\""Charger\"", \""Wireless Mouse\""]",3555.77,{},204036,1,"""Africa""" +2024-04-10,44196,5346,"[\""Phone\""]",3401.0,"{\""seasonal\"": \""27%\""}",86400,1,"""South America""" +2024-01-10,44197,4692,"[\""Laptop\"", \""Headphones\""]",2687.17,{},24993,0,"""Africa""" +2023-07-21,44198,9197,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2217.88,{},148713,0,"""North America""" +2023-05-25,44199,7356,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3904.02,{},281967,0,"""Europe""" +2024-07-18,44200,3068,"[\""Monitor\"", \""Charger\""]",4452.83,"{\""seasonal\"": \""26%\""}",34929,0,"""South America""" +2023-02-20,44201,8834,"[\""Monitor\"", \""Headphones\""]",3631.51,{},261325,1,"""North America""" +2024-10-25,44202,2858,"[\""Phone\"", \""Wireless Mouse\""]",3822.48,"{\""promo\"": \""11%\""}",280254,0,"""Europe""" +2023-09-21,44203,6058,"[\""Monitor\"", \""Phone\""]",3170.01,"{\""loyalty\"": \""5%\""}",140276,0,"""Asia""" +2024-06-26,44204,2196,"[\""Phone\""]",3397.37,"{\"": \""6%\""}",119766,1,"""Africa""" +2023-04-26,44205,3947,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2611.26,{},141510,0,"""Asia""" +2023-07-02,44206,1372,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",255.21,{},210378,1,"""Europe""" +2023-12-31,44207,130,"[\""Phone\""]",552.59,{},11194,1,"""Europe""" +2023-08-24,44208,2672,"[\""Phone\""]",4577.35,"{\""promo\"": \""29%\""}",150136,0,"""North America""" +2024-01-22,44209,2553,"[\""Monitor\""]",207.06,{},67064,0,"""Europe""" +2023-09-19,44210,5042,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2541.63,{},194196,0,"""South America""" +2023-06-14,44211,7581,"[\""Monitor\"", \""Wireless Mouse\""]",391.51,{},189812,0,"""Europe""" +2023-11-17,44212,9378,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2205.49,"{\""loyalty\"": \""16%\""}",30967,0,"""South America""" +2023-08-14,44213,9813,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4974.77,{},199184,0,"""North America""" +2023-08-12,44214,8087,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4936.36,"{\""seasonal\"": \""13%\""}",264189,0,"""Europe""" +2024-05-23,44215,3320,"[\""Headphones\""]",4087.84,"{\""promo\"": \""6%\""}",258292,0,"""Asia""" +2023-03-10,44216,9835,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2307.4,{},185096,1,"""Europe""" +2024-01-18,44217,8599,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2926.88,"{\""loyalty\"": \""6%\""}",68302,1,"""Europe""" +2024-08-20,44218,6760,"[\""Phone\""]",4714.38,"{\""loyalty\"": \""12%\""}",170322,1,"""Europe""" +2024-11-24,44219,8999,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1656.1,{},92182,1,"""Asia""" +2023-05-27,44220,2440,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",895.01,"{\""loyalty\"": \""9%\""}",283833,1,"""Africa""" +2024-04-27,44221,1827,"[\""Keyboard\"", \""Tablet\""]",1157.25,"{\"": \""21%\""}",253258,0,"""Asia""" +2023-10-17,44222,4260,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4159.45,"{\"": \""19%\""}",248984,0,"""Africa""" +2024-02-23,44223,5676,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3432.47,{},15973,1,"""South America""" +2024-04-02,44224,5146,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",111.65,"{\""promo\"": \""18%\""}",89255,1,"""Asia""" +2024-09-22,44225,355,"[\""Headphones\""]",2418.69,"{\""loyalty\"": \""24%\""}",130871,1,"""Africa""" +2023-08-18,44226,9572,"[\""Phone\""]",708.07,{},30191,1,"""North America""" +2024-02-12,44227,1562,"[\""Laptop\"", \""Monitor\""]",2135.6,"{\"": \""22%\""}",98091,1,"""Asia""" +2023-01-05,44228,1442,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1394.76,"{\""promo\"": \""14%\""}",288429,0,"""South America""" +2023-04-26,44229,8306,"[\""Keyboard\""]",374.29,"{\""loyalty\"": \""8%\""}",186157,1,"""South America""" +2024-06-24,44230,1461,"[\""Laptop\""]",4183.83,"{\""promo\"": \""28%\""}",276221,1,"""South America""" +2024-12-08,44231,9326,"[\""Laptop\""]",690.25,{},276548,0,"""Africa""" +2024-03-22,44232,9024,"[\""Laptop\"", \""Keyboard\""]",338.0,{},88171,0,"""Africa""" +2023-06-24,44233,5562,"[\""Keyboard\""]",2200.02,{},297486,1,"""Europe""" +2023-08-16,44234,4631,"[\""Keyboard\"", \""Monitor\""]",4648.37,{},244821,0,"""Asia""" +2023-10-17,44235,9744,"[\""Charger\""]",3939.28,"{\""loyalty\"": \""7%\""}",162181,0,"""Africa""" +2023-02-03,44236,405,"[\""Charger\"", \""Phone\""]",75.4,"{\""loyalty\"": \""5%\""}",4655,0,"""Africa""" +2023-11-11,44237,140,"[\""Phone\""]",968.53,"{\""loyalty\"": \""15%\""}",166952,1,"""Europe""" +2024-09-05,44238,3565,"[\""Charger\""]",1354.09,"{\""seasonal\"": \""5%\""}",278656,1,"""Africa""" +2023-03-17,44239,1958,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4620.27,"{\""seasonal\"": \""20%\""}",285717,1,"""Asia""" +2024-07-22,44240,7466,"[\""Keyboard\"", \""Headphones\""]",1377.99,{},9836,0,"""Asia""" +2024-04-22,44241,5879,"[\""Tablet\"", \""Monitor\""]",725.73,"{\""seasonal\"": \""9%\""}",202298,0,"""Asia""" +2023-10-05,44242,5081,"[\""Phone\"", \""Keyboard\""]",1526.5,{},30039,1,"""Asia""" +2023-04-02,44243,1334,"[\""Headphones\"", \""Laptop\""]",1571.32,{},181579,0,"""North America""" +2024-06-19,44244,7268,"[\""Monitor\"", \""Charger\""]",2295.9,"{\"": \""12%\""}",223417,0,"""Africa""" +2024-06-02,44245,1478,"[\""Laptop\"", \""Tablet\""]",2179.04,{},122037,0,"""North America""" +2024-06-17,44246,4010,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2277.28,"{\""promo\"": \""22%\""}",86770,0,"""Europe""" +2023-06-01,44247,3803,"[\""Headphones\"", \""Keyboard\""]",599.39,"{\"": \""17%\""}",143232,1,"""Africa""" +2024-09-03,44248,624,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3092.47,"{\""promo\"": \""5%\""}",232197,0,"""Europe""" +2024-09-30,44249,7585,"[\""Wireless Mouse\"", \""Headphones\""]",4881.12,"{\""loyalty\"": \""20%\""}",193106,0,"""Africa""" +2024-09-04,44250,612,"[\""Charger\"", \""Phone\""]",1850.13,{},208283,1,"""South America""" +2024-10-01,44251,6399,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3853.58,"{\""seasonal\"": \""11%\""}",196156,1,"""Africa""" +2024-07-30,44252,9968,"[\""Charger\""]",1710.96,{},18332,0,"""Asia""" +2024-07-20,44253,4485,"[\""Charger\""]",3491.86,"{\"": \""23%\""}",159424,0,"""Africa""" +2024-05-06,44254,978,"[\""Phone\"", \""Monitor\""]",4038.84,{},23047,1,"""Europe""" +2024-09-14,44255,4952,"[\""Phone\""]",1441.33,{},42065,1,"""South America""" +2023-04-27,44256,8298,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3930.63,{},160940,0,"""Asia""" +2023-03-28,44257,1584,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4977.78,{},49588,0,"""Europe""" +2023-06-08,44258,1414,"[\""Charger\"", \""Tablet\""]",4814.14,{},126072,0,"""South America""" +2023-03-04,44259,8675,"[\""Tablet\"", \""Wireless Mouse\""]",306.5,"{\""seasonal\"": \""28%\""}",225733,1,"""Europe""" +2024-07-18,44260,1617,"[\""Tablet\"", \""Charger\""]",4753.17,"{\""loyalty\"": \""29%\""}",201951,0,"""Europe""" +2023-06-05,44261,161,"[\""Charger\"", \""Laptop\""]",947.62,{},234379,0,"""Europe""" +2023-05-12,44262,3361,"[\""Phone\"", \""Headphones\""]",3973.65,{},25182,1,"""Europe""" +2023-10-18,44263,8548,"[\""Phone\"", \""Tablet\""]",3056.24,"{\""loyalty\"": \""26%\""}",119358,1,"""North America""" +2023-06-07,44264,3169,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1909.27,"{\"": \""29%\""}",282058,1,"""North America""" +2023-01-17,44265,1061,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",580.35,{},20345,1,"""North America""" +2023-07-14,44266,4199,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",878.9,{},211263,0,"""Europe""" +2023-12-29,44267,195,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3909.29,"{\"": \""27%\""}",275864,0,"""Africa""" +2023-09-23,44268,617,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2636.39,{},262908,0,"""North America""" +2024-06-06,44269,8650,"[\""Monitor\"", \""Keyboard\""]",3081.43,{},16238,0,"""North America""" +2023-02-26,44270,6761,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4371.38,"{\"": \""11%\""}",284007,0,"""Europe""" +2023-10-28,44271,4956,"[\""Headphones\"", \""Phone\""]",1206.91,"{\""loyalty\"": \""13%\""}",263124,1,"""South America""" +2024-03-13,44272,4246,"[\""Phone\"", \""Charger\""]",642.89,"{\""promo\"": \""24%\""}",99828,1,"""South America""" +2023-03-14,44273,5896,"[\""Monitor\"", \""Charger\""]",372.82,"{\""seasonal\"": \""22%\""}",86341,1,"""Asia""" +2024-02-19,44274,8210,"[\""Headphones\""]",362.4,"{\""loyalty\"": \""23%\""}",68642,0,"""Europe""" +2023-07-31,44275,1502,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",676.06,{},111741,0,"""North America""" +2024-10-17,44276,69,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2797.27,{},165161,0,"""Africa""" +2023-01-10,44277,1665,"[\""Laptop\"", \""Monitor\""]",410.82,"{\""seasonal\"": \""23%\""}",202305,1,"""Europe""" +2023-03-14,44278,6908,"[\""Wireless Mouse\"", \""Headphones\""]",977.77,{},253696,1,"""Africa""" +2023-05-17,44279,9070,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",646.45,"{\"": \""30%\""}",129263,0,"""Africa""" +2024-09-17,44280,2495,"[\""Monitor\"", \""Keyboard\""]",2095.05,{},205712,1,"""Africa""" +2023-08-12,44281,9803,"[\""Keyboard\"", \""Headphones\""]",2767.25,{},271342,1,"""North America""" +2023-06-06,44282,6001,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2862.29,"{\""seasonal\"": \""24%\""}",265137,0,"""Africa""" +2023-06-06,44283,6244,"[\""Headphones\""]",4097.81,{},129287,0,"""Europe""" +2023-10-16,44284,5051,"[\""Laptop\"", \""Charger\""]",342.48,"{\""seasonal\"": \""25%\""}",88265,1,"""Asia""" +2024-05-05,44285,2127,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1476.66,"{\"": \""7%\""}",12194,1,"""Asia""" +2023-08-21,44286,4079,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",889.6,{},24316,1,"""Africa""" +2024-09-28,44287,8339,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4888.65,"{\""promo\"": \""6%\""}",220061,1,"""Asia""" +2023-03-06,44288,7052,"[\""Phone\""]",2549.99,"{\""seasonal\"": \""6%\""}",188011,1,"""North America""" +2023-10-28,44289,977,"[\""Keyboard\"", \""Laptop\""]",3793.68,"{\""promo\"": \""25%\""}",279149,1,"""South America""" +2024-09-03,44290,8864,"[\""Monitor\"", \""Tablet\""]",3453.86,"{\""seasonal\"": \""29%\""}",274876,0,"""Europe""" +2023-01-24,44291,943,"[\""Laptop\""]",2198.25,"{\""loyalty\"": \""20%\""}",169137,1,"""Europe""" +2024-10-27,44292,2619,"[\""Charger\"", \""Tablet\""]",3831.86,"{\""loyalty\"": \""13%\""}",89222,1,"""North America""" +2024-10-07,44293,5601,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2623.25,"{\"": \""6%\""}",212880,1,"""North America""" +2023-11-01,44294,1425,"[\""Keyboard\""]",1218.88,{},60733,1,"""Africa""" +2023-12-24,44295,8329,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3526.85,{},136921,0,"""Europe""" +2024-09-13,44296,2935,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3586.33,{},38386,0,"""South America""" +2023-01-13,44297,8728,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3437.36,"{\""seasonal\"": \""30%\""}",272449,1,"""Africa""" +2024-06-08,44298,5081,"[\""Laptop\""]",958.01,"{\"": \""25%\""}",130540,1,"""North America""" +2024-10-24,44299,9138,"[\""Phone\"", \""Monitor\""]",402.38,{},234146,1,"""South America""" +2024-10-04,44300,6180,"[\""Laptop\"", \""Keyboard\""]",3157.61,"{\"": \""7%\""}",44057,0,"""Africa""" +2024-03-19,44301,654,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1500.94,{},39949,0,"""Asia""" +2024-01-18,44302,8685,"[\""Tablet\""]",91.35,"{\"": \""19%\""}",290236,0,"""Africa""" +2023-09-18,44303,8344,"[\""Monitor\"", \""Phone\""]",2375.82,"{\""seasonal\"": \""8%\""}",182421,1,"""North America""" +2024-10-17,44304,4289,"[\""Wireless Mouse\""]",1581.68,"{\"": \""22%\""}",25734,0,"""Africa""" +2023-07-18,44305,2548,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",532.67,{},64095,0,"""Europe""" +2024-05-25,44306,1121,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",151.19,{},250646,1,"""South America""" +2024-04-20,44307,749,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4792.15,"{\"": \""17%\""}",173512,1,"""Africa""" +2023-03-30,44308,1121,"[\""Headphones\""]",2966.55,"{\""promo\"": \""12%\""}",222736,1,"""Asia""" +2024-09-23,44309,7784,"[\""Headphones\"", \""Wireless Mouse\""]",1264.35,{},69189,1,"""Africa""" +2023-09-19,44310,1096,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3087.22,{},23387,0,"""Asia""" +2023-03-16,44311,5791,"[\""Keyboard\""]",2856.54,"{\""seasonal\"": \""27%\""}",7807,1,"""Asia""" +2023-04-09,44312,6880,"[\""Headphones\"", \""Monitor\""]",494.24,{},284784,1,"""Asia""" +2023-04-30,44313,7302,"[\""Laptop\""]",3786.45,"{\""loyalty\"": \""13%\""}",252024,0,"""Asia""" +2024-08-10,44314,6979,"[\""Keyboard\"", \""Charger\""]",897.56,{},58864,1,"""Europe""" +2024-08-05,44315,9213,"[\""Headphones\"", \""Keyboard\""]",1741.45,"{\""promo\"": \""11%\""}",7736,0,"""North America""" +2023-03-15,44316,2340,"[\""Keyboard\""]",624.71,"{\""loyalty\"": \""9%\""}",169341,0,"""North America""" +2024-10-01,44317,8272,"[\""Headphones\"", \""Charger\""]",4369.66,{},48838,1,"""Asia""" +2024-04-10,44318,7305,"[\""Laptop\"", \""Tablet\""]",3999.7,{},1966,1,"""South America""" +2024-09-08,44319,7956,"[\""Laptop\""]",2832.97,{},228192,0,"""North America""" +2023-07-02,44320,8835,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4144.0,{},168121,1,"""South America""" +2023-07-23,44321,5016,"[\""Monitor\""]",926.62,"{\"": \""14%\""}",3795,0,"""Europe""" +2023-07-31,44322,904,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4394.59,{},110787,0,"""Africa""" +2024-04-30,44323,5920,"[\""Charger\"", \""Phone\"", \""Headphones\""]",452.77,"{\"": \""28%\""}",61926,1,"""Asia""" +2023-02-25,44324,363,"[\""Phone\""]",944.09,"{\""loyalty\"": \""13%\""}",105155,1,"""Africa""" +2023-06-16,44325,3022,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2096.94,{},295198,1,"""North America""" +2023-04-17,44326,3350,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4285.89,"{\""promo\"": \""12%\""}",179902,1,"""South America""" +2024-12-11,44327,299,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3634.48,"{\""loyalty\"": \""15%\""}",146223,1,"""Europe""" +2023-02-13,44328,6495,"[\""Phone\""]",3662.83,{},273375,0,"""Europe""" +2023-12-07,44329,8353,"[\""Monitor\"", \""Tablet\""]",1796.98,"{\""seasonal\"": \""20%\""}",47133,0,"""North America""" +2024-09-26,44330,7048,"[\""Tablet\"", \""Monitor\""]",2946.94,"{\""loyalty\"": \""9%\""}",235707,0,"""Europe""" +2024-07-06,44331,711,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4987.3,"{\""loyalty\"": \""9%\""}",162608,1,"""Asia""" +2024-04-22,44332,7257,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4846.07,{},3573,1,"""Asia""" +2023-04-12,44333,3917,"[\""Laptop\"", \""Phone\""]",4123.96,{},288119,1,"""Africa""" +2023-10-26,44334,7387,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2207.64,{},281156,1,"""South America""" +2023-10-30,44335,1866,"[\""Charger\"", \""Phone\""]",1834.74,"{\"": \""19%\""}",101806,1,"""North America""" +2023-06-13,44336,3534,"[\""Monitor\"", \""Laptop\""]",2436.64,"{\""seasonal\"": \""20%\""}",2942,0,"""South America""" +2024-06-21,44337,4040,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3729.58,"{\""loyalty\"": \""19%\""}",166544,0,"""North America""" +2023-05-14,44338,2229,"[\""Monitor\"", \""Wireless Mouse\""]",529.71,"{\""loyalty\"": \""27%\""}",151614,0,"""South America""" +2024-01-06,44339,924,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2546.23,{},188085,1,"""Asia""" +2024-11-27,44340,5626,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2308.31,"{\""loyalty\"": \""30%\""}",111086,0,"""Europe""" +2024-05-06,44341,4793,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3898.03,{},31008,0,"""Asia""" +2024-06-18,44342,7834,"[\""Charger\"", \""Keyboard\""]",753.62,{},165454,0,"""North America""" +2024-04-19,44343,7355,"[\""Laptop\""]",4205.95,"{\""promo\"": \""21%\""}",27931,0,"""Africa""" +2023-12-06,44344,487,"[\""Laptop\""]",3626.46,"{\"": \""17%\""}",253464,0,"""Europe""" +2024-10-01,44345,1317,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2328.95,"{\"": \""10%\""}",77488,1,"""Asia""" +2024-03-08,44346,9925,"[\""Keyboard\""]",4482.12,{},27949,1,"""Asia""" +2023-07-04,44347,3429,"[\""Monitor\""]",2409.73,"{\""promo\"": \""15%\""}",142480,1,"""North America""" +2024-01-24,44348,8409,"[\""Monitor\""]",3266.01,{},50307,0,"""South America""" +2024-12-22,44349,7007,"[\""Keyboard\"", \""Charger\""]",2096.71,{},197305,0,"""Africa""" +2024-04-19,44350,575,"[\""Phone\"", \""Charger\""]",1112.14,"{\""loyalty\"": \""7%\""}",200208,0,"""South America""" +2023-05-09,44351,8972,"[\""Charger\""]",4096.32,"{\""seasonal\"": \""11%\""}",24479,0,"""Africa""" +2024-05-22,44352,5526,"[\""Laptop\""]",1912.3,"{\""promo\"": \""27%\""}",239747,1,"""Africa""" +2024-07-24,44353,8277,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3949.94,"{\""seasonal\"": \""7%\""}",204606,1,"""Asia""" +2023-11-28,44354,3712,"[\""Phone\"", \""Headphones\""]",3947.49,{},120681,1,"""Africa""" +2024-09-10,44355,3642,"[\""Headphones\""]",1416.82,{},146850,0,"""South America""" +2024-07-14,44356,8900,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2664.08,{},219732,0,"""Europe""" +2024-04-03,44357,9238,"[\""Wireless Mouse\""]",2429.49,"{\""promo\"": \""22%\""}",203958,0,"""North America""" +2023-01-24,44358,683,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",576.15,"{\""loyalty\"": \""30%\""}",92523,1,"""North America""" +2023-10-21,44359,3829,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3636.24,{},28548,0,"""North America""" +2023-11-09,44360,4224,"[\""Headphones\""]",3512.48,{},138904,1,"""South America""" +2023-07-08,44361,8444,"[\""Laptop\""]",4153.19,"{\""seasonal\"": \""9%\""}",277680,0,"""South America""" +2024-12-13,44362,4758,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3466.77,{},255683,1,"""South America""" +2023-07-01,44363,8936,"[\""Monitor\"", \""Charger\""]",3775.68,"{\""promo\"": \""17%\""}",122649,0,"""North America""" +2024-02-29,44364,2256,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3440.81,{},212419,0,"""Europe""" +2023-01-01,44365,1113,"[\""Monitor\""]",3434.27,"{\""seasonal\"": \""20%\""}",122963,0,"""Asia""" +2024-08-26,44366,7710,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4856.07,"{\""loyalty\"": \""12%\""}",247302,1,"""Asia""" +2023-01-30,44367,6907,"[\""Headphones\""]",4037.42,{},121151,1,"""Africa""" +2023-07-01,44368,6343,"[\""Monitor\""]",1746.36,{},37854,0,"""Africa""" +2024-04-15,44369,2299,"[\""Charger\""]",452.5,{},156768,1,"""Asia""" +2024-01-12,44370,5726,"[\""Monitor\"", \""Keyboard\""]",2314.41,{},35618,1,"""Africa""" +2023-10-04,44371,5470,"[\""Charger\""]",4596.95,"{\"": \""16%\""}",250239,0,"""North America""" +2023-05-20,44372,2685,"[\""Phone\"", \""Tablet\""]",1606.22,{},174305,0,"""North America""" +2024-08-29,44373,3767,"[\""Charger\""]",3607.89,{},268949,1,"""Africa""" +2024-12-08,44374,5111,"[\""Wireless Mouse\""]",4242.2,{},6325,0,"""Africa""" +2023-05-15,44375,9839,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2542.11,"{\""promo\"": \""25%\""}",14758,0,"""Africa""" +2024-01-10,44376,9326,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1984.0,{},153271,0,"""Europe""" +2024-07-08,44377,5659,"[\""Monitor\"", \""Headphones\""]",1946.49,{},256785,0,"""Europe""" +2023-04-16,44378,5947,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3350.68,"{\""loyalty\"": \""28%\""}",6125,1,"""Europe""" +2024-07-21,44379,181,"[\""Charger\""]",2877.18,{},14659,0,"""North America""" +2023-03-13,44380,9874,"[\""Headphones\""]",1271.83,"{\"": \""24%\""}",124274,1,"""Europe""" +2023-07-07,44381,7497,"[\""Tablet\""]",3365.85,"{\""promo\"": \""6%\""}",102032,0,"""North America""" +2023-04-24,44382,8914,"[\""Keyboard\"", \""Phone\""]",258.94,"{\"": \""22%\""}",118736,0,"""South America""" +2023-12-08,44383,4093,"[\""Tablet\""]",1612.09,{},3218,1,"""South America""" +2024-09-05,44384,7554,"[\""Monitor\""]",2450.47,{},290676,1,"""South America""" +2024-06-11,44385,6766,"[\""Phone\"", \""Charger\""]",771.59,"{\""loyalty\"": \""20%\""}",270125,0,"""Asia""" +2024-01-05,44386,1165,"[\""Monitor\"", \""Charger\""]",2873.89,{},256439,1,"""North America""" +2023-03-15,44387,6593,"[\""Wireless Mouse\"", \""Monitor\""]",2478.58,{},5645,0,"""South America""" +2024-09-12,44388,9430,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2230.93,{},52107,1,"""Europe""" +2024-02-12,44389,4806,"[\""Laptop\"", \""Charger\""]",1099.54,{},24362,1,"""North America""" +2024-04-14,44390,3449,"[\""Monitor\""]",4035.83,{},219441,0,"""Europe""" +2024-02-19,44391,5788,"[\""Headphones\"", \""Monitor\""]",2868.83,"{\""promo\"": \""16%\""}",35227,0,"""Asia""" +2023-06-01,44392,2076,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1136.49,"{\"": \""22%\""}",176342,0,"""South America""" +2023-06-13,44393,4457,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4983.94,{},59546,1,"""South America""" +2023-09-13,44394,4737,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1589.12,"{\"": \""28%\""}",147438,1,"""North America""" +2023-01-25,44395,3556,"[\""Monitor\"", \""Wireless Mouse\""]",3358.29,"{\""promo\"": \""11%\""}",147290,0,"""South America""" +2024-04-13,44396,1858,"[\""Laptop\""]",2066.53,"{\""loyalty\"": \""17%\""}",121620,0,"""South America""" +2023-07-12,44397,3689,"[\""Laptop\"", \""Phone\""]",2303.4,{},32958,1,"""Europe""" +2023-04-13,44398,5178,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1193.83,{},292797,0,"""North America""" +2023-10-01,44399,5588,"[\""Monitor\""]",126.71,"{\""seasonal\"": \""9%\""}",235166,0,"""North America""" +2024-08-26,44400,306,"[\""Keyboard\""]",762.81,{},168593,1,"""North America""" +2024-11-26,44401,8087,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3046.51,"{\""seasonal\"": \""5%\""}",205018,1,"""North America""" +2023-04-20,44402,6516,"[\""Laptop\""]",3751.96,{},265260,0,"""Europe""" +2023-04-03,44403,7724,"[\""Wireless Mouse\"", \""Charger\""]",4068.03,{},43041,0,"""Africa""" +2023-02-09,44404,7807,"[\""Phone\"", \""Tablet\""]",3970.84,"{\"": \""19%\""}",280840,1,"""South America""" +2023-06-05,44405,5623,"[\""Phone\"", \""Wireless Mouse\""]",595.38,{},141859,0,"""North America""" +2023-08-11,44406,5067,"[\""Charger\""]",3277.02,{},279180,0,"""South America""" +2023-08-07,44407,4529,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",594.89,"{\"": \""18%\""}",134431,1,"""Africa""" +2024-12-01,44408,39,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",287.09,"{\"": \""8%\""}",20733,1,"""North America""" +2023-08-07,44409,220,"[\""Keyboard\""]",3042.33,"{\""seasonal\"": \""17%\""}",128700,1,"""North America""" +2023-07-11,44410,9512,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",865.04,{},281260,1,"""North America""" +2024-10-29,44411,7904,"[\""Keyboard\"", \""Phone\""]",931.57,"{\""promo\"": \""14%\""}",246364,1,"""Asia""" +2023-10-09,44412,7240,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",252.5,"{\"": \""12%\""}",225453,0,"""South America""" +2024-04-15,44413,5592,"[\""Headphones\""]",2867.32,"{\""seasonal\"": \""10%\""}",109272,1,"""Asia""" +2023-04-03,44414,8097,"[\""Keyboard\""]",2208.43,{},185738,0,"""North America""" +2024-11-13,44415,7049,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4461.06,"{\""seasonal\"": \""24%\""}",181283,1,"""Europe""" +2023-08-19,44416,9968,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4699.02,{},219959,1,"""North America""" +2023-03-29,44417,5702,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3040.39,"{\"": \""12%\""}",63559,0,"""South America""" +2024-06-14,44418,8144,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2488.96,{},217708,0,"""South America""" +2024-07-27,44419,7144,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2024.07,"{\""loyalty\"": \""7%\""}",265068,0,"""Europe""" +2023-04-02,44420,2816,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3733.81,"{\""seasonal\"": \""10%\""}",157642,1,"""North America""" +2023-10-31,44421,5328,"[\""Headphones\""]",1168.33,{},265947,1,"""Europe""" +2023-07-18,44422,8920,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3203.67,{},30238,1,"""Asia""" +2023-05-10,44423,5531,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3720.26,{},46041,1,"""South America""" +2024-03-31,44424,3839,"[\""Monitor\"", \""Laptop\""]",3965.41,"{\"": \""11%\""}",251452,0,"""Africa""" +2024-10-13,44425,2834,"[\""Headphones\""]",1042.43,{},299584,1,"""South America""" +2024-05-13,44426,8729,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4643.04,"{\""loyalty\"": \""30%\""}",159350,1,"""South America""" +2024-01-29,44427,7232,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2252.08,"{\""loyalty\"": \""18%\""}",61485,1,"""North America""" +2023-05-23,44428,9374,"[\""Monitor\"", \""Wireless Mouse\""]",2225.74,"{\""loyalty\"": \""24%\""}",176812,1,"""Asia""" +2023-10-09,44429,2727,"[\""Headphones\"", \""Phone\""]",3761.72,"{\""loyalty\"": \""12%\""}",158641,1,"""North America""" +2023-02-20,44430,8657,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2950.22,{},195221,1,"""South America""" +2024-05-27,44431,8806,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",734.49,"{\""loyalty\"": \""7%\""}",95082,1,"""North America""" +2024-07-17,44432,2944,"[\""Charger\""]",3978.95,{},161869,1,"""Asia""" +2023-11-09,44433,6980,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4160.63,"{\""promo\"": \""8%\""}",188562,1,"""Africa""" +2023-11-28,44434,7492,"[\""Headphones\"", \""Keyboard\""]",1524.59,"{\""promo\"": \""9%\""}",73045,0,"""South America""" +2024-03-25,44435,8191,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1934.27,{},294983,0,"""South America""" +2024-06-24,44436,5715,"[\""Phone\"", \""Tablet\""]",2218.41,{},209208,1,"""Europe""" +2024-02-03,44437,9193,"[\""Charger\""]",3165.85,{},267882,1,"""Europe""" +2024-03-22,44438,489,"[\""Tablet\"", \""Phone\""]",376.37,"{\""seasonal\"": \""25%\""}",154539,0,"""Africa""" +2024-04-18,44439,5483,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4690.55,{},31892,1,"""Asia""" +2024-08-05,44440,6496,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1899.06,{},100591,1,"""North America""" +2024-08-15,44441,1153,"[\""Monitor\""]",2345.69,"{\""seasonal\"": \""9%\""}",70782,1,"""Africa""" +2024-11-19,44442,3632,"[\""Charger\""]",2154.06,{},216422,0,"""Asia""" +2024-05-09,44443,1718,"[\""Wireless Mouse\""]",4929.88,{},296281,1,"""South America""" +2023-03-18,44444,8880,"[\""Headphones\""]",4180.16,{},117290,0,"""Europe""" +2024-09-24,44445,3567,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",532.31,{},246233,1,"""Africa""" +2023-10-30,44446,7880,"[\""Laptop\"", \""Headphones\""]",129.01,{},236788,1,"""South America""" +2024-07-27,44447,6512,"[\""Headphones\"", \""Laptop\""]",3567.21,"{\"": \""23%\""}",100960,1,"""Europe""" +2024-01-23,44448,6200,"[\""Keyboard\""]",3879.34,"{\"": \""11%\""}",169478,0,"""Europe""" +2023-02-01,44449,5961,"[\""Monitor\""]",4486.46,"{\""seasonal\"": \""5%\""}",93006,0,"""Europe""" +2024-06-25,44450,7269,"[\""Keyboard\""]",1043.1,{},20772,0,"""Africa""" +2023-08-02,44451,5585,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3652.07,{},192331,0,"""Africa""" +2023-04-07,44452,5450,"[\""Keyboard\""]",293.92,{},107500,0,"""South America""" +2023-04-06,44453,5722,"[\""Phone\"", \""Keyboard\""]",4829.73,{},42917,1,"""South America""" +2024-11-08,44454,8479,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3213.83,"{\""seasonal\"": \""24%\""}",216450,0,"""Asia""" +2024-12-12,44455,3654,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2732.93,{},182866,0,"""North America""" +2024-08-04,44456,7432,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",918.15,{},267896,0,"""North America""" +2024-11-14,44457,4997,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4694.6,{},151411,1,"""Asia""" +2024-08-24,44458,3125,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3005.25,{},15381,1,"""Africa""" +2024-02-19,44459,1048,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4992.39,{},187774,0,"""Europe""" +2023-10-26,44460,1459,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4364.33,{},31144,1,"""South America""" +2023-12-08,44461,4351,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3722.07,{},68397,1,"""South America""" +2024-07-13,44462,6055,"[\""Phone\"", \""Charger\""]",3630.61,"{\""seasonal\"": \""11%\""}",193085,1,"""North America""" +2024-11-26,44463,6167,"[\""Monitor\""]",4894.93,"{\"": \""20%\""}",74167,0,"""North America""" +2024-04-11,44464,5166,"[\""Charger\"", \""Tablet\""]",120.86,"{\""seasonal\"": \""17%\""}",78511,1,"""Africa""" +2024-08-16,44465,3104,"[\""Phone\""]",1621.14,"{\""promo\"": \""6%\""}",277195,1,"""Europe""" +2024-10-16,44466,5082,"[\""Laptop\""]",3925.16,{},268748,1,"""Africa""" +2023-03-08,44467,5418,"[\""Charger\""]",3228.14,{},277202,0,"""Africa""" +2023-03-30,44468,5499,"[\""Charger\"", \""Tablet\""]",1147.04,"{\""promo\"": \""13%\""}",35524,0,"""Asia""" +2023-07-02,44469,5199,"[\""Monitor\""]",3938.24,"{\"": \""6%\""}",76876,1,"""South America""" +2024-08-22,44470,2973,"[\""Charger\"", \""Tablet\""]",239.26,{},4666,1,"""Europe""" +2024-11-16,44471,8338,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3271.43,{},129294,0,"""Africa""" +2024-02-06,44472,4035,"[\""Keyboard\""]",1897.75,{},63838,1,"""North America""" +2023-03-25,44473,1808,"[\""Phone\""]",2208.84,{},279080,0,"""North America""" +2023-05-17,44474,2494,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3363.72,"{\""promo\"": \""15%\""}",291153,0,"""Europe""" +2023-01-13,44475,1006,"[\""Headphones\"", \""Monitor\""]",1832.49,{},192815,0,"""South America""" +2024-04-06,44476,1784,"[\""Keyboard\"", \""Headphones\""]",2800.95,{},116268,0,"""Europe""" +2023-11-18,44477,3841,"[\""Phone\""]",4309.42,"{\"": \""23%\""}",181070,1,"""Asia""" +2024-11-17,44478,3096,"[\""Monitor\"", \""Wireless Mouse\""]",4181.06,{},150267,0,"""Asia""" +2023-10-29,44479,2678,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4734.43,{},14061,0,"""North America""" +2023-10-22,44480,1298,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4762.78,"{\""seasonal\"": \""16%\""}",27437,1,"""Europe""" +2023-12-20,44481,1912,"[\""Laptop\"", \""Phone\""]",4748.45,{},5747,1,"""Europe""" +2024-09-02,44482,4655,"[\""Tablet\"", \""Laptop\""]",4214.02,"{\""seasonal\"": \""20%\""}",94726,0,"""Asia""" +2024-12-24,44483,8044,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",772.64,"{\""promo\"": \""21%\""}",201540,0,"""Europe""" +2023-06-13,44484,6749,"[\""Charger\""]",1194.17,"{\"": \""20%\""}",16298,0,"""Europe""" +2023-11-10,44485,6790,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1355.66,{},50138,1,"""Europe""" +2023-08-02,44486,2114,"[\""Tablet\""]",4940.92,{},256398,0,"""Africa""" +2024-12-18,44487,905,"[\""Keyboard\"", \""Phone\""]",1226.04,{},235906,0,"""Europe""" +2024-09-27,44488,5462,"[\""Laptop\""]",2573.48,"{\""loyalty\"": \""7%\""}",249628,0,"""Europe""" +2024-12-04,44489,1156,"[\""Tablet\""]",3001.05,"{\""promo\"": \""26%\""}",297552,1,"""North America""" +2023-11-27,44490,7316,"[\""Phone\"", \""Wireless Mouse\""]",555.18,{},298164,0,"""Asia""" +2024-08-13,44491,632,"[\""Wireless Mouse\""]",2587.19,{},25448,0,"""Africa""" +2023-10-25,44492,1035,"[\""Phone\""]",823.91,"{\""loyalty\"": \""18%\""}",139386,1,"""Asia""" +2023-12-20,44493,2786,"[\""Wireless Mouse\"", \""Tablet\""]",1829.74,"{\""promo\"": \""30%\""}",125596,1,"""Africa""" +2024-07-07,44494,3037,"[\""Tablet\""]",3152.51,{},81307,0,"""South America""" +2023-10-29,44495,1314,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1861.58,{},216093,1,"""North America""" +2023-08-01,44496,9165,"[\""Phone\"", \""Wireless Mouse\""]",3469.72,"{\"": \""15%\""}",287251,0,"""South America""" +2024-06-10,44497,3226,"[\""Laptop\"", \""Keyboard\""]",3143.2,{},199788,1,"""Europe""" +2023-09-01,44498,6883,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2760.45,"{\"": \""16%\""}",229476,0,"""North America""" +2023-03-28,44499,7446,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3555.45,{},51313,1,"""Africa""" +2023-11-02,44500,3595,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",563.7,"{\"": \""20%\""}",43442,0,"""Asia""" +2023-02-01,44501,4993,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2801.93,{},294812,1,"""Africa""" +2023-04-11,44502,4604,"[\""Tablet\"", \""Monitor\""]",3466.76,"{\"": \""25%\""}",249289,1,"""South America""" +2023-09-14,44503,3885,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3215.36,{},233202,1,"""South America""" +2023-08-09,44504,516,"[\""Monitor\"", \""Charger\""]",2925.86,"{\""promo\"": \""11%\""}",179077,0,"""South America""" +2024-04-08,44505,1087,"[\""Keyboard\""]",3458.22,{},157085,1,"""North America""" +2024-06-28,44506,802,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2241.49,"{\""promo\"": \""9%\""}",134978,0,"""Europe""" +2023-03-22,44507,3660,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4455.63,"{\""loyalty\"": \""13%\""}",244578,1,"""Europe""" +2024-05-16,44508,2632,"[\""Phone\""]",4752.67,"{\""seasonal\"": \""21%\""}",107283,0,"""North America""" +2024-01-31,44509,2525,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2983.12,"{\""promo\"": \""13%\""}",83538,1,"""Africa""" +2024-09-22,44510,8344,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4445.02,{},70289,0,"""Asia""" +2024-09-02,44511,137,"[\""Headphones\"", \""Tablet\""]",4016.53,{},259913,1,"""Europe""" +2024-05-07,44512,5356,"[\""Phone\""]",2394.02,{},47942,1,"""North America""" +2024-12-17,44513,2764,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2828.31,"{\""loyalty\"": \""5%\""}",21590,1,"""Europe""" +2024-12-22,44514,8118,"[\""Keyboard\"", \""Headphones\""]",2287.15,{},5570,1,"""Africa""" +2023-03-09,44515,5952,"[\""Tablet\"", \""Headphones\""]",840.17,"{\"": \""7%\""}",195542,0,"""Africa""" +2023-02-09,44516,95,"[\""Tablet\"", \""Keyboard\""]",756.74,{},88664,1,"""North America""" +2024-03-19,44517,4612,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4910.91,"{\""promo\"": \""13%\""}",12447,1,"""South America""" +2023-10-02,44518,6153,"[\""Keyboard\""]",2849.43,{},4946,0,"""Africa""" +2024-03-03,44519,47,"[\""Keyboard\"", \""Headphones\""]",4168.75,{},33254,1,"""Europe""" +2024-02-23,44520,6164,"[\""Tablet\""]",4617.78,{},291965,1,"""South America""" +2023-08-04,44521,6309,"[\""Laptop\"", \""Tablet\""]",2218.21,"{\""promo\"": \""8%\""}",122651,1,"""Europe""" +2024-02-15,44522,8607,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4230.45,"{\""seasonal\"": \""20%\""}",133983,1,"""South America""" +2024-08-13,44523,1807,"[\""Phone\""]",2498.2,{},206196,1,"""South America""" +2024-11-16,44524,2502,"[\""Phone\"", \""Charger\""]",4789.78,{},212891,1,"""Europe""" +2024-12-05,44525,6479,"[\""Phone\"", \""Charger\""]",378.45,{},212240,0,"""Europe""" +2023-06-24,44526,8392,"[\""Headphones\""]",2631.52,{},154437,0,"""North America""" +2023-03-07,44527,1293,"[\""Wireless Mouse\""]",2166.43,{},95767,0,"""North America""" +2023-09-01,44528,5493,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3568.11,{},68640,1,"""Europe""" +2023-06-16,44529,5503,"[\""Charger\"", \""Wireless Mouse\""]",1964.12,{},147553,1,"""South America""" +2023-04-14,44530,8295,"[\""Wireless Mouse\"", \""Headphones\""]",4640.17,{},196497,1,"""Africa""" +2024-04-12,44531,982,"[\""Phone\"", \""Laptop\"", \""Charger\""]",789.42,"{\""loyalty\"": \""7%\""}",207160,1,"""Asia""" +2023-10-06,44532,8181,"[\""Phone\"", \""Tablet\""]",1144.08,"{\""seasonal\"": \""22%\""}",166544,1,"""South America""" +2023-12-17,44533,4899,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4666.93,"{\"": \""26%\""}",100311,1,"""Europe""" +2024-08-21,44534,4478,"[\""Phone\"", \""Tablet\""]",3865.88,"{\""seasonal\"": \""13%\""}",207826,0,"""Asia""" +2024-10-21,44535,900,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1862.01,"{\""seasonal\"": \""20%\""}",176232,1,"""Africa""" +2023-10-13,44536,8682,"[\""Laptop\""]",957.0,"{\""promo\"": \""24%\""}",131364,0,"""South America""" +2024-08-03,44537,3884,"[\""Keyboard\""]",1513.77,"{\"": \""28%\""}",57085,0,"""South America""" +2024-10-18,44538,8646,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",558.23,"{\""promo\"": \""25%\""}",26047,1,"""Asia""" +2023-05-05,44539,611,"[\""Headphones\""]",91.73,"{\"": \""11%\""}",156018,0,"""Africa""" +2024-07-21,44540,4373,"[\""Keyboard\""]",1167.32,{},36378,0,"""Africa""" +2024-12-10,44541,5166,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",66.44,"{\"": \""13%\""}",173997,1,"""South America""" +2023-07-11,44542,9097,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2688.32,"{\""seasonal\"": \""30%\""}",284796,1,"""South America""" +2024-03-16,44543,594,"[\""Monitor\"", \""Keyboard\""]",331.87,"{\""seasonal\"": \""15%\""}",206794,0,"""Asia""" +2023-09-24,44544,7156,"[\""Wireless Mouse\""]",1326.91,{},291397,0,"""North America""" +2024-06-27,44545,77,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2075.92,"{\""loyalty\"": \""25%\""}",147051,1,"""North America""" +2024-06-21,44546,6227,"[\""Wireless Mouse\"", \""Charger\""]",4936.14,"{\""loyalty\"": \""20%\""}",257875,1,"""Asia""" +2024-04-05,44547,6396,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4892.78,"{\""promo\"": \""5%\""}",189196,0,"""Asia""" +2023-10-01,44548,8889,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1353.0,"{\""promo\"": \""13%\""}",88228,0,"""Asia""" +2024-10-25,44549,4854,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3727.56,"{\""seasonal\"": \""24%\""}",224663,1,"""Europe""" +2024-03-22,44550,5035,"[\""Phone\""]",4725.78,"{\""promo\"": \""13%\""}",259364,0,"""Europe""" +2024-12-11,44551,4556,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4000.11,"{\""loyalty\"": \""24%\""}",147371,1,"""North America""" +2023-12-13,44552,2699,"[\""Laptop\"", \""Wireless Mouse\""]",3754.75,{},205361,1,"""South America""" +2023-11-20,44553,4421,"[\""Tablet\"", \""Keyboard\""]",1944.51,"{\""loyalty\"": \""9%\""}",289994,0,"""Europe""" +2024-06-20,44554,1765,"[\""Headphones\""]",1108.63,"{\""promo\"": \""26%\""}",135691,0,"""Europe""" +2024-07-27,44555,9704,"[\""Charger\""]",2176.57,{},176983,1,"""South America""" +2024-07-26,44556,8682,"[\""Headphones\"", \""Tablet\""]",3147.44,{},79380,0,"""North America""" +2023-03-05,44557,7980,"[\""Headphones\"", \""Monitor\""]",1445.7,"{\""seasonal\"": \""22%\""}",275520,1,"""Africa""" +2024-05-31,44558,7726,"[\""Headphones\"", \""Monitor\""]",2395.4,{},119966,1,"""North America""" +2024-12-26,44559,5241,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1393.76,{},150880,1,"""South America""" +2024-09-26,44560,6168,"[\""Phone\"", \""Wireless Mouse\""]",3584.12,"{\""loyalty\"": \""16%\""}",42157,0,"""North America""" +2023-06-10,44561,2146,"[\""Phone\""]",4644.33,"{\""promo\"": \""10%\""}",164938,1,"""Europe""" +2023-03-30,44562,3068,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",144.66,{},79325,0,"""North America""" +2023-10-30,44563,3973,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1841.09,{},51126,0,"""Europe""" +2023-11-03,44564,9919,"[\""Monitor\"", \""Wireless Mouse\""]",315.31,"{\""seasonal\"": \""22%\""}",184063,1,"""South America""" +2024-12-30,44565,9760,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2177.4,{},297786,0,"""South America""" +2023-06-18,44566,9043,"[\""Laptop\"", \""Charger\""]",1480.47,{},249873,1,"""Africa""" +2024-01-19,44567,5908,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3671.82,{},218553,0,"""Africa""" +2023-12-20,44568,5610,"[\""Tablet\""]",1288.39,"{\""seasonal\"": \""17%\""}",33142,0,"""Europe""" +2024-07-25,44569,102,"[\""Tablet\""]",2776.77,"{\""seasonal\"": \""5%\""}",161012,1,"""Europe""" +2023-05-07,44570,5274,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",599.48,"{\""promo\"": \""15%\""}",86853,0,"""Europe""" +2024-03-03,44571,8114,"[\""Phone\""]",4553.86,{},77712,0,"""South America""" +2023-10-20,44572,2587,"[\""Keyboard\""]",2693.87,{},60749,0,"""Europe""" +2024-06-03,44573,8373,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1704.6,{},217607,0,"""Africa""" +2024-12-03,44574,3841,"[\""Monitor\""]",3018.29,"{\""seasonal\"": \""17%\""}",166700,1,"""Asia""" +2023-07-05,44575,6352,"[\""Phone\""]",1080.19,{},256967,0,"""Africa""" +2023-04-23,44576,1416,"[\""Charger\"", \""Headphones\""]",1707.17,"{\""promo\"": \""12%\""}",114674,1,"""Europe""" +2024-02-08,44577,4574,"[\""Keyboard\"", \""Tablet\""]",3302.84,{},25372,0,"""Europe""" +2023-07-20,44578,3525,"[\""Headphones\"", \""Keyboard\""]",4587.7,{},79554,0,"""Africa""" +2024-01-10,44579,4244,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3649.74,{},45471,0,"""South America""" +2024-03-10,44580,7235,"[\""Laptop\""]",1813.14,"{\"": \""16%\""}",52157,0,"""Europe""" +2023-08-03,44581,1440,"[\""Laptop\""]",3454.96,"{\""loyalty\"": \""9%\""}",203197,1,"""South America""" +2024-01-13,44582,7681,"[\""Laptop\"", \""Charger\""]",4878.02,"{\""promo\"": \""23%\""}",166509,1,"""Europe""" +2024-04-08,44583,9450,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1424.38,"{\""loyalty\"": \""18%\""}",49931,0,"""Europe""" +2024-10-07,44584,2056,"[\""Headphones\"", \""Keyboard\""]",4617.12,"{\"": \""28%\""}",58153,0,"""North America""" +2024-10-21,44585,5897,"[\""Keyboard\"", \""Tablet\""]",3781.73,"{\"": \""16%\""}",162967,0,"""Asia""" +2023-11-07,44586,4240,"[\""Monitor\""]",3933.84,"{\"": \""23%\""}",26546,1,"""Europe""" +2023-11-01,44587,6807,"[\""Charger\""]",1326.34,"{\""loyalty\"": \""28%\""}",298454,1,"""Africa""" +2023-08-06,44588,7746,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4078.52,{},294836,0,"""South America""" +2023-10-16,44589,484,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2441.31,{},166423,0,"""Africa""" +2024-11-30,44590,2057,"[\""Laptop\"", \""Keyboard\""]",3902.56,"{\"": \""26%\""}",194960,0,"""Europe""" +2024-03-14,44591,8100,"[\""Phone\""]",1215.43,"{\""seasonal\"": \""15%\""}",292262,1,"""South America""" +2023-04-20,44592,6495,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",636.23,{},27961,0,"""South America""" +2023-09-09,44593,2286,"[\""Phone\"", \""Monitor\""]",4542.8,{},52291,0,"""North America""" +2024-11-29,44594,5371,"[\""Keyboard\"", \""Wireless Mouse\""]",1795.53,{},77990,1,"""Asia""" +2024-03-14,44595,3363,"[\""Wireless Mouse\"", \""Keyboard\""]",79.68,{},193988,1,"""Africa""" +2024-02-26,44596,7879,"[\""Laptop\""]",1659.23,{},257668,1,"""South America""" +2023-02-12,44597,1883,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2198.84,{},48985,1,"""North America""" +2024-12-22,44598,4468,"[\""Tablet\""]",668.8,"{\"": \""19%\""}",232261,1,"""Africa""" +2024-01-30,44599,199,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1970.41,"{\"": \""30%\""}",47716,1,"""Europe""" +2024-06-27,44600,2763,"[\""Headphones\"", \""Monitor\""]",1807.07,{},298163,1,"""South America""" +2023-06-24,44601,2758,"[\""Phone\""]",503.77,"{\""seasonal\"": \""28%\""}",107374,1,"""Africa""" +2023-07-15,44602,6500,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1743.57,"{\""promo\"": \""11%\""}",217942,1,"""North America""" +2023-01-10,44603,9396,"[\""Wireless Mouse\"", \""Charger\""]",2741.25,{},43178,0,"""Europe""" +2024-02-09,44604,1844,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1517.5,"{\""loyalty\"": \""18%\""}",3588,0,"""Africa""" +2023-12-06,44605,5544,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2973.75,"{\""seasonal\"": \""23%\""}",42108,1,"""Africa""" +2024-09-06,44606,4618,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",152.96,{},39691,0,"""South America""" +2023-11-25,44607,7783,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1739.95,"{\""promo\"": \""13%\""}",238296,0,"""Asia""" +2024-07-12,44608,185,"[\""Keyboard\"", \""Charger\""]",3963.92,{},242800,0,"""Asia""" +2023-07-29,44609,9180,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2454.98,{},116364,0,"""Asia""" +2023-10-01,44610,420,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2119.02,"{\""seasonal\"": \""16%\""}",41340,1,"""Africa""" +2024-04-17,44611,6616,"[\""Headphones\"", \""Phone\""]",2288.22,{},123435,0,"""Asia""" +2023-05-03,44612,312,"[\""Phone\"", \""Monitor\""]",2048.29,{},227215,1,"""Europe""" +2024-01-18,44613,356,"[\""Wireless Mouse\""]",3783.5,"{\""loyalty\"": \""21%\""}",84047,1,"""Asia""" +2024-11-05,44614,1866,"[\""Wireless Mouse\""]",1435.76,"{\""seasonal\"": \""29%\""}",174648,1,"""Europe""" +2023-06-11,44615,4807,"[\""Charger\""]",2738.81,"{\""seasonal\"": \""20%\""}",160938,0,"""Europe""" +2024-03-29,44616,5994,"[\""Phone\"", \""Keyboard\""]",3426.52,"{\"": \""23%\""}",55736,0,"""Africa""" +2023-03-19,44617,6379,"[\""Headphones\""]",2919.69,"{\""promo\"": \""6%\""}",210945,0,"""South America""" +2024-12-20,44618,2562,"[\""Tablet\"", \""Keyboard\""]",296.79,{},125054,1,"""Africa""" +2023-12-10,44619,3998,"[\""Keyboard\""]",2706.43,{},214792,1,"""Asia""" +2023-10-31,44620,7494,"[\""Charger\"", \""Phone\""]",976.53,{},148562,1,"""Asia""" +2024-09-28,44621,2770,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2750.41,{},190043,1,"""North America""" +2024-08-30,44622,4431,"[\""Charger\""]",3514.68,"{\""loyalty\"": \""12%\""}",248133,1,"""Asia""" +2023-07-02,44623,8721,"[\""Wireless Mouse\""]",77.01,{},71499,0,"""North America""" +2024-05-10,44624,5384,"[\""Tablet\""]",1394.29,"{\"": \""20%\""}",117799,1,"""Africa""" +2023-02-07,44625,2441,"[\""Laptop\"", \""Monitor\""]",3789.7,"{\""seasonal\"": \""25%\""}",15899,0,"""Europe""" +2024-02-10,44626,2198,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1531.75,"{\""promo\"": \""20%\""}",47738,1,"""Europe""" +2023-08-26,44627,1188,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1742.82,{},245810,0,"""Europe""" +2023-01-12,44628,7260,"[\""Laptop\""]",744.01,{},246117,0,"""Asia""" +2023-12-13,44629,6427,"[\""Monitor\""]",4830.16,{},41199,0,"""Africa""" +2024-03-03,44630,8897,"[\""Laptop\"", \""Monitor\""]",2478.95,{},185976,1,"""Europe""" +2023-05-29,44631,883,"[\""Headphones\""]",4548.77,{},227948,1,"""Europe""" +2024-04-10,44632,8958,"[\""Keyboard\""]",4017.94,"{\""promo\"": \""28%\""}",143831,1,"""South America""" +2023-12-18,44633,3737,"[\""Monitor\"", \""Wireless Mouse\""]",512.73,{},68704,1,"""South America""" +2024-09-06,44634,4800,"[\""Monitor\""]",2126.59,{},25233,0,"""South America""" +2023-10-23,44635,520,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4778.87,{},173934,1,"""Africa""" +2024-08-03,44636,4784,"[\""Headphones\""]",1601.39,{},43880,1,"""South America""" +2024-08-28,44637,2668,"[\""Tablet\"", \""Charger\""]",1411.88,{},76275,0,"""Europe""" +2023-11-02,44638,6859,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3885.15,"{\""promo\"": \""20%\""}",114148,0,"""Africa""" +2024-12-02,44639,6076,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1578.42,{},144871,0,"""South America""" +2024-11-21,44640,6405,"[\""Phone\""]",2386.84,"{\""promo\"": \""20%\""}",251404,0,"""Europe""" +2023-08-11,44641,6063,"[\""Wireless Mouse\"", \""Charger\""]",4854.34,"{\""loyalty\"": \""9%\""}",291270,1,"""South America""" +2023-03-14,44642,1289,"[\""Keyboard\""]",2205.92,"{\""seasonal\"": \""13%\""}",283494,1,"""South America""" +2024-09-11,44643,8797,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1680.61,"{\""promo\"": \""10%\""}",162843,0,"""Asia""" +2024-10-30,44644,4279,"[\""Monitor\""]",4151.14,"{\""loyalty\"": \""28%\""}",99517,1,"""Africa""" +2024-11-18,44645,3454,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1197.93,{},50782,0,"""Europe""" +2023-01-17,44646,3812,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1490.03,"{\""loyalty\"": \""7%\""}",199129,0,"""Asia""" +2024-09-10,44647,9363,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2361.96,"{\""promo\"": \""30%\""}",86979,1,"""North America""" +2024-06-25,44648,215,"[\""Laptop\"", \""Monitor\""]",2607.77,"{\""loyalty\"": \""28%\""}",277405,1,"""Africa""" +2024-05-05,44649,4884,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1048.57,"{\""loyalty\"": \""14%\""}",134510,0,"""Africa""" +2024-03-06,44650,8154,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4792.3,"{\""promo\"": \""28%\""}",18974,1,"""Asia""" +2024-11-19,44651,1727,"[\""Phone\"", \""Monitor\""]",1363.1,"{\""loyalty\"": \""23%\""}",263898,0,"""Europe""" +2023-08-13,44652,4188,"[\""Phone\"", \""Laptop\""]",1315.05,{},32740,1,"""North America""" +2023-11-12,44653,2309,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3965.2,{},153875,0,"""South America""" +2024-01-21,44654,5410,"[\""Headphones\"", \""Monitor\""]",3720.17,"{\""promo\"": \""29%\""}",102332,0,"""North America""" +2024-04-23,44655,7525,"[\""Wireless Mouse\""]",4558.32,"{\""seasonal\"": \""27%\""}",192944,0,"""Asia""" +2023-12-19,44656,422,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",336.65,{},157973,0,"""Asia""" +2023-08-25,44657,2031,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2101.34,"{\"": \""21%\""}",274422,1,"""South America""" +2023-03-11,44658,7534,"[\""Keyboard\"", \""Laptop\""]",4740.66,{},41611,1,"""Asia""" +2023-04-26,44659,7359,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4627.53,{},108434,1,"""Africa""" +2024-07-25,44660,8417,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1078.05,"{\""loyalty\"": \""18%\""}",71237,1,"""Asia""" +2023-01-31,44661,9171,"[\""Wireless Mouse\""]",2462.79,"{\""loyalty\"": \""12%\""}",127607,0,"""Asia""" +2024-10-23,44662,2814,"[\""Keyboard\""]",2449.7,"{\""loyalty\"": \""14%\""}",237332,1,"""North America""" +2023-05-19,44663,6312,"[\""Wireless Mouse\"", \""Laptop\""]",364.87,"{\""promo\"": \""11%\""}",31321,1,"""Europe""" +2024-03-20,44664,1321,"[\""Charger\"", \""Tablet\""]",1804.08,"{\""seasonal\"": \""10%\""}",182456,0,"""South America""" +2023-10-02,44665,8836,"[\""Laptop\"", \""Tablet\""]",970.81,{},159293,0,"""North America""" +2023-09-18,44666,6032,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",201.43,{},123106,0,"""Africa""" +2023-04-19,44667,8843,"[\""Charger\"", \""Phone\""]",1122.61,{},192122,0,"""Europe""" +2023-06-28,44668,6834,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2307.66,{},21390,1,"""South America""" +2023-03-31,44669,7147,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",254.62,"{\""loyalty\"": \""11%\""}",144448,1,"""Europe""" +2023-03-20,44670,3071,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1675.0,"{\""promo\"": \""21%\""}",3476,0,"""Europe""" +2024-06-10,44671,4945,"[\""Tablet\"", \""Laptop\""]",2887.45,"{\""seasonal\"": \""19%\""}",266749,1,"""South America""" +2024-10-14,44672,52,"[\""Headphones\"", \""Keyboard\""]",4641.39,{},173852,1,"""Europe""" +2024-08-09,44673,1657,"[\""Charger\""]",3457.35,"{\""seasonal\"": \""20%\""}",183284,1,"""Africa""" +2024-12-01,44674,139,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4916.51,{},46512,0,"""Europe""" +2024-10-04,44675,8403,"[\""Headphones\"", \""Tablet\""]",2099.78,"{\""seasonal\"": \""28%\""}",50969,1,"""Africa""" +2024-03-20,44676,6346,"[\""Laptop\""]",831.49,{},58818,1,"""North America""" +2024-12-08,44677,5235,"[\""Keyboard\"", \""Charger\""]",2141.88,"{\""loyalty\"": \""20%\""}",53104,1,"""Asia""" +2024-02-12,44678,176,"[\""Laptop\"", \""Keyboard\""]",4415.66,{},14030,1,"""Africa""" +2024-02-25,44679,1875,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3423.28,"{\""seasonal\"": \""20%\""}",256029,1,"""North America""" +2023-02-01,44680,1117,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2058.89,"{\""loyalty\"": \""17%\""}",238391,1,"""South America""" +2023-05-24,44681,22,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",506.58,"{\""loyalty\"": \""16%\""}",68854,0,"""Africa""" +2024-10-19,44682,2984,"[\""Phone\"", \""Tablet\""]",3705.89,{},138642,0,"""Asia""" +2024-09-17,44683,1106,"[\""Monitor\"", \""Charger\""]",1856.84,"{\""loyalty\"": \""22%\""}",220126,1,"""Europe""" +2024-03-09,44684,4196,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4577.84,"{\""loyalty\"": \""14%\""}",213424,0,"""Asia""" +2024-06-11,44685,909,"[\""Charger\"", \""Keyboard\""]",843.9,"{\"": \""21%\""}",226829,1,"""Asia""" +2024-06-05,44686,7224,"[\""Wireless Mouse\""]",1702.65,{},181071,0,"""North America""" +2024-05-21,44687,3996,"[\""Laptop\""]",4470.74,"{\"": \""9%\""}",188987,0,"""North America""" +2023-12-02,44688,4943,"[\""Wireless Mouse\""]",3812.4,{},201312,1,"""Asia""" +2024-04-23,44689,5234,"[\""Tablet\""]",2474.65,{},102203,1,"""North America""" +2024-04-16,44690,2055,"[\""Headphones\""]",1619.53,{},245271,1,"""Europe""" +2024-11-27,44691,6355,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3699.57,{},217371,1,"""South America""" +2023-08-20,44692,4897,"[\""Monitor\""]",4028.82,{},259241,0,"""North America""" +2023-03-10,44693,77,"[\""Charger\"", \""Wireless Mouse\""]",2700.58,"{\""loyalty\"": \""14%\""}",2166,1,"""Africa""" +2023-11-07,44694,2573,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1208.95,{},23799,1,"""Africa""" +2024-06-19,44695,1226,"[\""Wireless Mouse\""]",2611.28,{},236871,0,"""Europe""" +2023-03-19,44696,6738,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4475.74,"{\""seasonal\"": \""22%\""}",227031,0,"""Africa""" +2024-12-13,44697,4904,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2184.29,"{\""seasonal\"": \""23%\""}",226744,0,"""Europe""" +2024-10-26,44698,9549,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2587.31,"{\""loyalty\"": \""7%\""}",174027,1,"""Europe""" +2024-08-20,44699,6070,"[\""Monitor\""]",4631.53,"{\""promo\"": \""19%\""}",243670,1,"""Europe""" +2023-03-20,44700,6273,"[\""Wireless Mouse\""]",1254.02,"{\""loyalty\"": \""30%\""}",283652,0,"""Asia""" +2023-03-25,44701,3220,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2182.67,{},187125,0,"""Africa""" +2023-05-22,44702,199,"[\""Phone\""]",3355.27,{},93136,1,"""Asia""" +2023-12-16,44703,5848,"[\""Headphones\"", \""Monitor\""]",3684.28,{},204061,0,"""Africa""" +2023-01-03,44704,526,"[\""Laptop\""]",2451.31,{},263987,0,"""South America""" +2024-10-27,44705,3438,"[\""Keyboard\"", \""Wireless Mouse\""]",3319.79,{},258486,1,"""North America""" +2024-06-21,44706,6267,"[\""Phone\""]",4905.44,"{\""promo\"": \""9%\""}",213480,1,"""Asia""" +2023-07-04,44707,1361,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1041.52,"{\""promo\"": \""11%\""}",43125,0,"""North America""" +2024-01-11,44708,4345,"[\""Laptop\"", \""Phone\""]",200.13,"{\""seasonal\"": \""13%\""}",249222,1,"""South America""" +2024-05-19,44709,2444,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1001.05,{},5869,1,"""Asia""" +2024-04-16,44710,7542,"[\""Laptop\"", \""Headphones\""]",3316.87,{},122904,0,"""Asia""" +2024-04-06,44711,3184,"[\""Tablet\"", \""Headphones\""]",4875.57,"{\""loyalty\"": \""28%\""}",279278,0,"""Europe""" +2024-12-23,44712,7090,"[\""Keyboard\""]",1211.55,"{\""seasonal\"": \""13%\""}",100792,1,"""Europe""" +2023-10-03,44713,3187,"[\""Headphones\"", \""Monitor\""]",3715.2,"{\""promo\"": \""8%\""}",251854,1,"""Europe""" +2024-12-08,44714,9691,"[\""Headphones\"", \""Monitor\""]",1773.79,"{\""promo\"": \""18%\""}",192031,1,"""Africa""" +2023-12-09,44715,7712,"[\""Tablet\""]",134.53,{},142545,0,"""Europe""" +2024-07-17,44716,818,"[\""Keyboard\""]",4743.08,"{\""seasonal\"": \""21%\""}",189584,0,"""Africa""" +2024-08-16,44717,5280,"[\""Phone\""]",119.22,{},68837,0,"""Africa""" +2024-04-24,44718,8583,"[\""Laptop\""]",3187.73,{},166706,0,"""South America""" +2024-10-15,44719,8493,"[\""Headphones\"", \""Charger\""]",1168.11,{},118964,0,"""Africa""" +2024-02-18,44720,2428,"[\""Keyboard\""]",217.18,{},166282,1,"""South America""" +2024-03-09,44721,9828,"[\""Laptop\"", \""Monitor\""]",2524.45,"{\""promo\"": \""28%\""}",15334,1,"""South America""" +2023-11-30,44722,857,"[\""Tablet\"", \""Headphones\""]",4389.43,"{\""seasonal\"": \""21%\""}",154345,1,"""Asia""" +2024-10-15,44723,7085,"[\""Monitor\"", \""Phone\""]",3054.26,"{\""seasonal\"": \""25%\""}",54908,1,"""North America""" +2024-10-26,44724,2874,"[\""Wireless Mouse\"", \""Tablet\""]",4192.84,{},101985,0,"""Europe""" +2024-06-20,44725,1121,"[\""Monitor\""]",2031.07,{},47348,0,"""South America""" +2023-06-09,44726,8454,"[\""Laptop\""]",2210.45,"{\""seasonal\"": \""13%\""}",253961,1,"""South America""" +2024-09-09,44727,1987,"[\""Charger\""]",1212.87,"{\""promo\"": \""26%\""}",281699,0,"""Europe""" +2023-10-12,44728,2811,"[\""Headphones\""]",4404.65,"{\"": \""24%\""}",231725,1,"""North America""" +2023-03-14,44729,43,"[\""Wireless Mouse\"", \""Charger\""]",4502.42,{},224271,1,"""South America""" +2023-06-25,44730,3844,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4478.51,{},254460,0,"""South America""" +2024-08-07,44731,5061,"[\""Charger\""]",3137.64,"{\"": \""17%\""}",216722,0,"""South America""" +2023-08-12,44732,980,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2020.81,"{\""promo\"": \""18%\""}",72100,1,"""Africa""" +2024-07-16,44733,3753,"[\""Charger\""]",4838.48,"{\"": \""26%\""}",61743,0,"""South America""" +2023-11-10,44734,693,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",516.72,{},86213,0,"""Africa""" +2024-06-29,44735,6694,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",424.1,{},59164,1,"""Asia""" +2024-06-20,44736,3388,"[\""Phone\""]",1187.47,"{\"": \""17%\""}",220048,1,"""Europe""" +2023-11-27,44737,1306,"[\""Monitor\""]",2268.72,{},279796,0,"""Europe""" +2024-12-01,44738,8770,"[\""Tablet\"", \""Wireless Mouse\""]",3111.37,{},164892,1,"""Europe""" +2024-04-21,44739,4000,"[\""Tablet\""]",4219.41,{},69334,0,"""South America""" +2024-03-25,44740,2325,"[\""Tablet\"", \""Charger\""]",3599.63,"{\""promo\"": \""7%\""}",46334,0,"""Asia""" +2023-01-17,44741,2531,"[\""Monitor\"", \""Phone\""]",662.94,{},4191,0,"""Europe""" +2024-01-01,44742,6506,"[\""Wireless Mouse\"", \""Charger\""]",3444.03,{},2125,0,"""Asia""" +2024-06-23,44743,8039,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1415.57,"{\""loyalty\"": \""14%\""}",112250,1,"""South America""" +2023-03-19,44744,2316,"[\""Wireless Mouse\"", \""Keyboard\""]",2998.24,"{\""promo\"": \""11%\""}",67894,1,"""Africa""" +2024-03-26,44745,3089,"[\""Phone\"", \""Tablet\""]",3895.32,"{\""seasonal\"": \""10%\""}",102332,0,"""South America""" +2024-04-07,44746,357,"[\""Keyboard\"", \""Wireless Mouse\""]",4914.7,{},103155,0,"""Asia""" +2023-06-19,44747,4226,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1656.44,"{\""seasonal\"": \""15%\""}",137723,0,"""South America""" +2024-07-27,44748,6285,"[\""Tablet\"", \""Charger\""]",4040.9,{},100049,1,"""South America""" +2023-06-01,44749,254,"[\""Phone\""]",3207.1,"{\""loyalty\"": \""27%\""}",40027,0,"""Asia""" +2023-07-25,44750,3417,"[\""Wireless Mouse\""]",3987.81,"{\""promo\"": \""11%\""}",209007,1,"""North America""" +2024-03-04,44751,2201,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2109.74,{},172190,1,"""Europe""" +2024-07-29,44752,6321,"[\""Phone\""]",4225.34,{},89485,0,"""Africa""" +2024-05-17,44753,8075,"[\""Laptop\"", \""Phone\""]",3451.7,"{\""promo\"": \""27%\""}",199093,1,"""Africa""" +2024-04-09,44754,4051,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2724.11,{},183380,0,"""Asia""" +2023-08-30,44755,4098,"[\""Phone\""]",723.01,{},251701,1,"""South America""" +2024-05-25,44756,4483,"[\""Phone\""]",3959.71,{},249820,1,"""Europe""" +2024-07-02,44757,8110,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",716.52,{},205370,1,"""South America""" +2024-12-07,44758,198,"[\""Headphones\""]",3444.19,"{\""loyalty\"": \""11%\""}",197088,0,"""Africa""" +2023-01-01,44759,285,"[\""Keyboard\""]",608.27,{},142889,1,"""Asia""" +2024-10-31,44760,8082,"[\""Tablet\"", \""Headphones\""]",4262.93,"{\"": \""28%\""}",111225,0,"""Europe""" +2023-04-12,44761,4186,"[\""Tablet\""]",117.5,"{\""seasonal\"": \""22%\""}",131740,1,"""South America""" +2023-03-16,44762,4817,"[\""Charger\""]",2503.47,{},232227,0,"""South America""" +2023-05-07,44763,3040,"[\""Charger\"", \""Monitor\""]",4994.7,{},176047,0,"""Europe""" +2024-12-19,44764,7000,"[\""Monitor\"", \""Wireless Mouse\""]",4196.36,"{\""seasonal\"": \""25%\""}",118077,0,"""Africa""" +2024-06-29,44765,4799,"[\""Charger\"", \""Monitor\""]",711.4,"{\""promo\"": \""29%\""}",274557,1,"""North America""" +2024-11-22,44766,1366,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3344.89,"{\""loyalty\"": \""19%\""}",155330,0,"""North America""" +2024-06-26,44767,5949,"[\""Laptop\""]",127.11,{},159285,0,"""North America""" +2023-06-18,44768,6641,"[\""Tablet\""]",4904.71,"{\""seasonal\"": \""14%\""}",5045,1,"""South America""" +2023-03-20,44769,8679,"[\""Tablet\"", \""Charger\""]",2486.39,"{\""seasonal\"": \""26%\""}",291273,0,"""Africa""" +2024-05-01,44770,9754,"[\""Tablet\""]",2778.74,{},9791,0,"""Europe""" +2024-07-18,44771,8184,"[\""Headphones\""]",1655.81,{},290032,1,"""Asia""" +2023-02-23,44772,8865,"[\""Keyboard\""]",2468.05,{},10153,0,"""Europe""" +2024-09-03,44773,313,"[\""Tablet\""]",2337.11,{},136332,0,"""Asia""" +2023-09-28,44774,3031,"[\""Headphones\"", \""Laptop\""]",2571.35,"{\""promo\"": \""12%\""}",201364,0,"""North America""" +2024-09-10,44775,5040,"[\""Monitor\""]",4848.79,"{\""loyalty\"": \""18%\""}",156178,1,"""Europe""" +2023-08-04,44776,6339,"[\""Monitor\"", \""Laptop\""]",3969.34,"{\"": \""13%\""}",271981,1,"""South America""" +2023-04-07,44777,425,"[\""Laptop\"", \""Keyboard\""]",4754.61,"{\""loyalty\"": \""10%\""}",279494,0,"""North America""" +2024-07-12,44778,1516,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1364.22,"{\"": \""14%\""}",28040,0,"""North America""" +2024-12-07,44779,1809,"[\""Charger\""]",2230.94,{},42696,1,"""Africa""" +2023-03-01,44780,5024,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3742.47,"{\""loyalty\"": \""9%\""}",218096,1,"""Asia""" +2023-12-20,44781,9251,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1630.02,"{\""seasonal\"": \""14%\""}",137819,0,"""Europe""" +2023-12-06,44782,3251,"[\""Tablet\"", \""Laptop\""]",2369.77,"{\""seasonal\"": \""25%\""}",263466,0,"""Europe""" +2023-04-06,44783,1108,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2258.88,{},37185,0,"""North America""" +2024-09-14,44784,3102,"[\""Wireless Mouse\"", \""Monitor\""]",2781.49,{},150108,0,"""Africa""" +2023-08-05,44785,4806,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1207.43,{},180303,0,"""Africa""" +2023-04-28,44786,7395,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",78.46,"{\""promo\"": \""18%\""}",59278,1,"""Africa""" +2024-06-12,44787,9647,"[\""Phone\"", \""Keyboard\""]",2845.02,"{\""loyalty\"": \""8%\""}",184893,1,"""Asia""" +2023-02-09,44788,6104,"[\""Phone\"", \""Charger\""]",1194.68,"{\""promo\"": \""23%\""}",83383,1,"""Asia""" +2023-07-06,44789,8891,"[\""Tablet\"", \""Laptop\""]",2335.63,"{\""promo\"": \""22%\""}",34934,0,"""South America""" +2023-12-09,44790,2047,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",926.95,{},159846,0,"""Asia""" +2023-08-28,44791,2462,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",206.34,{},133972,0,"""Africa""" +2023-05-24,44792,4146,"[\""Monitor\""]",78.45,"{\""promo\"": \""25%\""}",2532,0,"""Asia""" +2024-03-26,44793,4539,"[\""Wireless Mouse\""]",4821.22,{},272308,0,"""North America""" +2023-01-01,44794,5142,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1258.18,"{\""seasonal\"": \""12%\""}",135123,0,"""Europe""" +2024-07-12,44795,590,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3210.16,{},142252,1,"""North America""" +2024-01-30,44796,7479,"[\""Tablet\"", \""Keyboard\""]",2244.89,{},251749,1,"""Europe""" +2024-08-22,44797,1503,"[\""Keyboard\""]",573.68,"{\""seasonal\"": \""5%\""}",98764,0,"""South America""" +2023-12-07,44798,5443,"[\""Phone\"", \""Laptop\""]",3342.53,"{\"": \""27%\""}",25125,0,"""Africa""" +2023-04-24,44799,7433,"[\""Laptop\"", \""Tablet\""]",491.33,"{\"": \""17%\""}",4042,0,"""North America""" +2024-02-02,44800,4699,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3928.0,{},101550,1,"""North America""" +2024-01-21,44801,3288,"[\""Tablet\"", \""Wireless Mouse\""]",4512.88,{},66585,0,"""Asia""" +2023-02-08,44802,9779,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2194.82,{},142735,1,"""South America""" +2023-09-20,44803,3678,"[\""Laptop\"", \""Charger\""]",2338.01,{},193270,1,"""Africa""" +2023-01-03,44804,5674,"[\""Laptop\""]",3333.73,"{\"": \""13%\""}",167326,0,"""Africa""" +2023-09-19,44805,7352,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1539.67,"{\""seasonal\"": \""19%\""}",113635,1,"""North America""" +2024-09-24,44806,7726,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",360.74,{},48636,0,"""Africa""" +2023-08-15,44807,1158,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",773.07,{},209176,1,"""Europe""" +2024-10-26,44808,8372,"[\""Headphones\""]",3311.3,"{\""promo\"": \""22%\""}",142244,0,"""North America""" +2023-08-22,44809,2875,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4372.08,{},175512,1,"""Europe""" +2023-08-12,44810,6115,"[\""Headphones\""]",2613.25,{},169227,0,"""South America""" +2024-05-05,44811,9761,"[\""Monitor\""]",1576.98,"{\""seasonal\"": \""10%\""}",39071,1,"""South America""" +2023-10-28,44812,6114,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3161.23,{},8547,0,"""Europe""" +2024-05-03,44813,9551,"[\""Charger\"", \""Tablet\""]",2999.6,"{\""promo\"": \""8%\""}",155452,1,"""North America""" +2024-04-30,44814,2858,"[\""Keyboard\""]",2932.04,{},152163,1,"""Africa""" +2023-05-08,44815,6295,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4209.16,"{\""seasonal\"": \""29%\""}",55523,1,"""Europe""" +2024-04-19,44816,3496,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",568.72,"{\""seasonal\"": \""26%\""}",28346,1,"""South America""" +2023-03-02,44817,2264,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1132.45,{},195236,1,"""Africa""" +2024-03-28,44818,7361,"[\""Keyboard\""]",95.35,"{\""seasonal\"": \""12%\""}",174123,1,"""Europe""" +2023-11-17,44819,4768,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4269.13,"{\""seasonal\"": \""18%\""}",69714,0,"""North America""" +2023-10-07,44820,6352,"[\""Charger\"", \""Laptop\""]",2279.13,"{\""loyalty\"": \""28%\""}",55600,1,"""Asia""" +2024-12-06,44821,85,"[\""Tablet\"", \""Charger\""]",1060.08,{},72204,1,"""Europe""" +2024-12-14,44822,1204,"[\""Headphones\""]",1612.85,{},262649,0,"""North America""" +2024-06-03,44823,3591,"[\""Tablet\""]",180.55,{},77573,1,"""Asia""" +2023-03-09,44824,7546,"[\""Headphones\""]",2860.43,"{\""seasonal\"": \""6%\""}",8559,1,"""Europe""" +2023-06-04,44825,6608,"[\""Wireless Mouse\"", \""Laptop\""]",954.39,"{\""promo\"": \""17%\""}",27545,1,"""Europe""" +2024-07-31,44826,818,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4857.06,{},272960,0,"""Africa""" +2023-02-01,44827,9398,"[\""Tablet\""]",1666.47,{},51132,0,"""Africa""" +2023-02-25,44828,7137,"[\""Keyboard\""]",433.65,{},188859,1,"""South America""" +2024-02-17,44829,2918,"[\""Headphones\"", \""Wireless Mouse\""]",632.98,"{\""seasonal\"": \""18%\""}",264796,1,"""Asia""" +2023-02-08,44830,7904,"[\""Headphones\""]",3642.32,"{\""seasonal\"": \""9%\""}",86766,0,"""Asia""" +2023-10-19,44831,8310,"[\""Wireless Mouse\"", \""Keyboard\""]",334.28,"{\""seasonal\"": \""14%\""}",266902,0,"""Europe""" +2024-06-17,44832,4620,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2876.88,"{\"": \""20%\""}",56923,1,"""North America""" +2023-11-16,44833,2325,"[\""Wireless Mouse\"", \""Laptop\""]",2804.38,"{\"": \""13%\""}",44831,0,"""North America""" +2023-04-19,44834,3234,"[\""Tablet\"", \""Phone\""]",4484.58,"{\"": \""22%\""}",54827,0,"""North America""" +2023-10-07,44835,5974,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4553.6,"{\""loyalty\"": \""9%\""}",214678,0,"""Asia""" +2023-06-19,44836,3417,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3012.35,"{\""loyalty\"": \""17%\""}",69772,0,"""Asia""" +2023-10-16,44837,8769,"[\""Phone\""]",1677.3,"{\""seasonal\"": \""8%\""}",52932,1,"""South America""" +2024-08-02,44838,4153,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2155.04,{},186095,1,"""Asia""" +2023-08-21,44839,6682,"[\""Laptop\""]",2060.9,{},222589,1,"""South America""" +2024-07-22,44840,6910,"[\""Tablet\"", \""Headphones\""]",3503.51,{},21768,0,"""North America""" +2023-09-08,44841,1594,"[\""Charger\"", \""Keyboard\""]",1975.5,"{\""seasonal\"": \""20%\""}",156005,1,"""Africa""" +2024-01-31,44842,8914,"[\""Keyboard\""]",3958.33,"{\""loyalty\"": \""13%\""}",116952,0,"""South America""" +2024-12-07,44843,5374,"[\""Wireless Mouse\"", \""Keyboard\""]",2314.03,{},217335,0,"""South America""" +2024-06-03,44844,9108,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3154.26,{},51713,0,"""Asia""" +2023-10-02,44845,5990,"[\""Laptop\"", \""Charger\""]",2158.63,{},192406,1,"""Europe""" +2023-03-12,44846,8690,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",631.47,"{\""seasonal\"": \""24%\""}",176471,1,"""Africa""" +2023-11-12,44847,7334,"[\""Phone\""]",3284.92,{},108784,1,"""South America""" +2024-07-12,44848,5674,"[\""Headphones\"", \""Tablet\""]",1690.39,{},40971,0,"""North America""" +2024-08-22,44849,1896,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3867.3,{},150102,1,"""Asia""" +2023-11-02,44850,6723,"[\""Headphones\"", \""Tablet\""]",776.23,"{\""seasonal\"": \""8%\""}",234205,0,"""North America""" +2024-10-07,44851,1910,"[\""Headphones\""]",943.67,{},288303,0,"""Africa""" +2024-03-25,44852,4420,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1519.1,{},190196,1,"""South America""" +2024-12-07,44853,2115,"[\""Monitor\"", \""Laptop\""]",4357.48,{},92660,0,"""South America""" +2024-08-01,44854,4215,"[\""Tablet\"", \""Headphones\""]",2561.85,"{\""seasonal\"": \""13%\""}",224200,1,"""North America""" +2023-12-30,44855,9428,"[\""Charger\"", \""Keyboard\""]",4403.97,"{\""loyalty\"": \""8%\""}",283836,0,"""South America""" +2023-08-17,44856,8919,"[\""Monitor\""]",3244.52,"{\"": \""12%\""}",112027,0,"""Europe""" +2024-07-18,44857,1613,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1083.26,"{\""loyalty\"": \""7%\""}",153915,0,"""North America""" +2023-05-09,44858,1846,"[\""Monitor\""]",4959.07,{},32592,0,"""South America""" +2023-07-16,44859,4772,"[\""Charger\""]",3619.42,{},242511,1,"""Asia""" +2023-01-28,44860,7722,"[\""Headphones\"", \""Laptop\""]",75.45,"{\""loyalty\"": \""25%\""}",121210,1,"""Africa""" +2024-09-18,44861,2126,"[\""Phone\"", \""Monitor\""]",3894.14,"{\""seasonal\"": \""25%\""}",63958,0,"""Africa""" +2023-11-09,44862,4851,"[\""Tablet\"", \""Phone\""]",3484.75,"{\""seasonal\"": \""29%\""}",142798,0,"""Asia""" +2024-05-18,44863,8535,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3031.53,{},287981,1,"""South America""" +2024-01-19,44864,4408,"[\""Tablet\""]",1127.99,{},4894,0,"""Europe""" +2023-10-25,44865,3238,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",516.22,"{\""promo\"": \""20%\""}",219360,1,"""South America""" +2023-06-20,44866,4836,"[\""Charger\""]",4253.84,"{\""promo\"": \""19%\""}",194752,0,"""Africa""" +2024-03-16,44867,7170,"[\""Charger\"", \""Keyboard\""]",1246.78,{},43793,1,"""Asia""" +2023-01-07,44868,1539,"[\""Laptop\"", \""Phone\""]",1497.97,{},296214,1,"""Africa""" +2023-01-26,44869,9965,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3196.5,"{\""seasonal\"": \""17%\""}",157156,1,"""Africa""" +2024-08-27,44870,3880,"[\""Laptop\""]",3219.07,{},157115,1,"""South America""" +2023-06-16,44871,263,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4835.09,"{\""seasonal\"": \""15%\""}",48937,0,"""Asia""" +2023-03-29,44872,8387,"[\""Phone\""]",3512.7,"{\""promo\"": \""7%\""}",187956,1,"""Europe""" +2023-10-01,44873,3934,"[\""Charger\"", \""Headphones\""]",674.68,{},215924,1,"""South America""" +2024-01-05,44874,3234,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4570.47,{},216915,0,"""North America""" +2023-07-13,44875,4038,"[\""Laptop\"", \""Headphones\""]",2976.84,"{\""loyalty\"": \""24%\""}",40471,1,"""Asia""" +2023-06-10,44876,5254,"[\""Wireless Mouse\"", \""Laptop\""]",4376.98,"{\""loyalty\"": \""27%\""}",152977,0,"""Asia""" +2023-06-16,44877,9822,"[\""Monitor\"", \""Laptop\""]",1313.63,{},297119,1,"""Africa""" +2024-01-31,44878,3827,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4761.63,{},277011,0,"""North America""" +2023-07-15,44879,6104,"[\""Wireless Mouse\""]",2019.91,{},263835,0,"""North America""" +2024-08-06,44880,7802,"[\""Laptop\"", \""Keyboard\""]",1646.41,"{\"": \""11%\""}",196312,1,"""Africa""" +2024-02-19,44881,3362,"[\""Charger\"", \""Keyboard\""]",235.88,"{\""seasonal\"": \""22%\""}",4866,0,"""Asia""" +2024-03-30,44882,284,"[\""Keyboard\"", \""Tablet\""]",1799.12,"{\""seasonal\"": \""10%\""}",27338,1,"""Africa""" +2023-07-03,44883,9869,"[\""Laptop\"", \""Keyboard\""]",1772.89,"{\""loyalty\"": \""11%\""}",51923,1,"""Europe""" +2024-05-30,44884,7592,"[\""Laptop\"", \""Phone\""]",3291.89,"{\""loyalty\"": \""20%\""}",283573,1,"""Asia""" +2024-12-31,44885,5028,"[\""Monitor\""]",2655.65,{},151779,0,"""South America""" +2023-03-14,44886,4894,"[\""Phone\"", \""Keyboard\""]",1102.42,{},226673,0,"""South America""" +2023-11-17,44887,4648,"[\""Monitor\"", \""Tablet\""]",4937.05,{},231198,0,"""South America""" +2024-06-08,44888,5266,"[\""Wireless Mouse\""]",1993.13,{},57481,0,"""Asia""" +2024-01-22,44889,7561,"[\""Wireless Mouse\"", \""Phone\""]",1294.31,"{\""seasonal\"": \""29%\""}",228176,1,"""Europe""" +2024-04-07,44890,7619,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3192.55,{},187622,1,"""North America""" +2024-12-18,44891,7594,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4398.8,"{\""loyalty\"": \""20%\""}",157928,1,"""Asia""" +2024-12-15,44892,1423,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3136.81,{},146577,1,"""South America""" +2024-11-12,44893,3621,"[\""Tablet\""]",1552.9,{},31585,1,"""Asia""" +2024-04-28,44894,840,"[\""Keyboard\""]",2534.66,{},290104,0,"""Europe""" +2023-06-26,44895,6704,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3545.31,{},224061,0,"""North America""" +2024-09-20,44896,9572,"[\""Charger\""]",4401.72,"{\""promo\"": \""30%\""}",244388,0,"""North America""" +2023-05-01,44897,1249,"[\""Keyboard\""]",1374.73,{},99338,0,"""North America""" +2024-12-22,44898,2517,"[\""Charger\""]",2266.82,{},180184,1,"""Asia""" +2024-02-22,44899,1551,"[\""Laptop\"", \""Phone\""]",98.45,"{\""loyalty\"": \""28%\""}",273372,1,"""Europe""" +2024-12-05,44900,8391,"[\""Phone\"", \""Headphones\""]",4388.22,{},58423,1,"""Africa""" +2023-01-20,44901,3456,"[\""Wireless Mouse\""]",4964.41,"{\"": \""30%\""}",49747,1,"""South America""" +2024-07-08,44902,8151,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",741.04,"{\""loyalty\"": \""14%\""}",225024,1,"""Europe""" +2023-12-08,44903,604,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4748.89,{},105271,0,"""Africa""" +2024-02-03,44904,2989,"[\""Keyboard\""]",68.19,"{\""promo\"": \""27%\""}",69503,1,"""Asia""" +2024-09-25,44905,1608,"[\""Wireless Mouse\""]",4912.88,{},154164,0,"""Asia""" +2023-10-23,44906,7339,"[\""Wireless Mouse\"", \""Headphones\""]",391.37,{},25385,1,"""North America""" +2024-01-30,44907,9331,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3396.05,{},73574,0,"""Asia""" +2023-04-04,44908,7057,"[\""Headphones\""]",1044.1,"{\""promo\"": \""6%\""}",12953,0,"""Africa""" +2023-10-04,44909,7277,"[\""Monitor\""]",1663.68,{},71501,1,"""North America""" +2023-08-21,44910,8340,"[\""Laptop\"", \""Tablet\""]",1221.57,"{\""promo\"": \""12%\""}",267787,1,"""Africa""" +2024-12-21,44911,6692,"[\""Charger\"", \""Phone\""]",3544.13,"{\""loyalty\"": \""6%\""}",243103,1,"""North America""" +2024-09-08,44912,7836,"[\""Monitor\"", \""Phone\""]",3995.69,"{\"": \""6%\""}",292401,0,"""South America""" +2023-10-08,44913,5127,"[\""Phone\"", \""Tablet\"", \""Charger\""]",891.14,{},140897,1,"""Europe""" +2023-04-18,44914,8768,"[\""Phone\"", \""Headphones\""]",661.66,{},172272,0,"""North America""" +2023-03-21,44915,7947,"[\""Headphones\"", \""Wireless Mouse\""]",498.77,"{\"": \""10%\""}",161423,0,"""Asia""" +2024-06-11,44916,1318,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1048.88,"{\"": \""12%\""}",55567,1,"""South America""" +2023-01-13,44917,6714,"[\""Phone\""]",3741.96,"{\""seasonal\"": \""24%\""}",204324,0,"""Europe""" +2023-03-02,44918,9722,"[\""Monitor\"", \""Keyboard\""]",3949.19,"{\""loyalty\"": \""9%\""}",98909,1,"""North America""" +2024-04-05,44919,6274,"[\""Headphones\""]",2324.72,{},277843,1,"""Europe""" +2023-07-22,44920,7011,"[\""Charger\"", \""Keyboard\""]",4367.91,"{\"": \""27%\""}",80830,0,"""Asia""" +2024-12-20,44921,5675,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3444.28,"{\""seasonal\"": \""17%\""}",74771,0,"""North America""" +2023-04-04,44922,8437,"[\""Wireless Mouse\""]",2463.65,{},34196,0,"""South America""" +2023-11-08,44923,2969,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",243.25,"{\""promo\"": \""8%\""}",19428,1,"""Asia""" +2023-04-16,44924,1665,"[\""Monitor\"", \""Tablet\""]",3633.27,"{\""loyalty\"": \""12%\""}",5744,0,"""Asia""" +2024-05-18,44925,6759,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2581.54,"{\""promo\"": \""23%\""}",99681,1,"""Asia""" +2023-01-02,44926,5284,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",724.27,"{\"": \""9%\""}",123723,0,"""Europe""" +2024-02-22,44927,9258,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",558.48,{},247587,1,"""North America""" +2024-10-23,44928,2741,"[\""Monitor\"", \""Tablet\""]",4616.01,"{\""loyalty\"": \""18%\""}",81890,0,"""Africa""" +2023-08-17,44929,5568,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",453.14,"{\""seasonal\"": \""27%\""}",204517,0,"""Africa""" +2024-02-07,44930,6411,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3654.23,{},113667,0,"""Asia""" +2024-08-10,44931,6592,"[\""Phone\"", \""Laptop\""]",2654.5,{},82733,0,"""Asia""" +2024-04-26,44932,8792,"[\""Phone\""]",2394.18,"{\""promo\"": \""10%\""}",73023,1,"""Asia""" +2024-03-05,44933,4358,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2258.56,"{\""promo\"": \""16%\""}",34963,0,"""Asia""" +2024-06-14,44934,6334,"[\""Monitor\""]",3683.28,{},14491,1,"""South America""" +2024-12-30,44935,4273,"[\""Keyboard\"", \""Wireless Mouse\""]",2753.79,"{\""seasonal\"": \""8%\""}",250023,1,"""Europe""" +2023-09-01,44936,6558,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2742.69,"{\""seasonal\"": \""15%\""}",84355,1,"""Europe""" +2023-06-07,44937,893,"[\""Charger\""]",1052.55,{},48530,1,"""North America""" +2024-11-05,44938,181,"[\""Laptop\""]",3963.49,{},262486,1,"""North America""" +2023-12-15,44939,3414,"[\""Laptop\""]",4910.23,"{\""seasonal\"": \""7%\""}",89227,1,"""Asia""" +2024-12-15,44940,8447,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3947.8,{},176751,1,"""North America""" +2024-02-27,44941,8733,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4370.15,"{\""seasonal\"": \""7%\""}",224691,0,"""Africa""" +2023-07-31,44942,5601,"[\""Headphones\"", \""Monitor\""]",2785.09,"{\"": \""14%\""}",31981,1,"""North America""" +2023-02-21,44943,2148,"[\""Keyboard\"", \""Tablet\""]",303.91,"{\""seasonal\"": \""7%\""}",175990,0,"""Asia""" +2024-10-09,44944,6993,"[\""Charger\""]",1810.09,"{\"": \""12%\""}",180412,1,"""South America""" +2023-01-21,44945,9320,"[\""Keyboard\"", \""Charger\""]",4338.66,"{\"": \""23%\""}",56376,1,"""South America""" +2023-09-29,44946,9299,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4819.54,{},261891,1,"""North America""" +2023-06-20,44947,5760,"[\""Tablet\""]",698.95,"{\""loyalty\"": \""16%\""}",103820,0,"""North America""" +2023-07-04,44948,6076,"[\""Headphones\""]",1176.81,{},216349,1,"""South America""" +2024-03-05,44949,4152,"[\""Tablet\""]",336.5,{},154070,1,"""South America""" +2024-04-05,44950,2299,"[\""Monitor\"", \""Headphones\""]",4220.46,{},107080,0,"""Asia""" +2024-08-11,44951,4506,"[\""Wireless Mouse\"", \""Keyboard\""]",3877.85,"{\""loyalty\"": \""5%\""}",291775,1,"""South America""" +2024-06-23,44952,1237,"[\""Phone\""]",3236.92,"{\"": \""11%\""}",2930,0,"""Africa""" +2023-06-29,44953,9892,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4236.22,"{\""seasonal\"": \""28%\""}",292178,0,"""Africa""" +2024-12-27,44954,8155,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1033.25,"{\"": \""28%\""}",173035,1,"""South America""" +2023-03-16,44955,6499,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4116.16,"{\""seasonal\"": \""13%\""}",57892,1,"""North America""" +2023-12-18,44956,5837,"[\""Phone\"", \""Charger\"", \""Headphones\""]",679.52,{},282821,1,"""Africa""" +2023-06-12,44957,1573,"[\""Laptop\""]",1059.24,"{\""seasonal\"": \""12%\""}",66402,1,"""Europe""" +2023-07-29,44958,8801,"[\""Phone\"", \""Laptop\""]",3094.93,{},147407,1,"""Asia""" +2024-08-19,44959,4728,"[\""Charger\""]",3934.8,"{\""seasonal\"": \""28%\""}",241181,0,"""North America""" +2024-09-10,44960,3574,"[\""Headphones\"", \""Tablet\""]",4903.04,"{\"": \""6%\""}",146249,1,"""Africa""" +2023-12-27,44961,2975,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2578.76,"{\""loyalty\"": \""6%\""}",141870,1,"""North America""" +2023-03-02,44962,7280,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1284.87,{},120568,0,"""Europe""" +2024-09-21,44963,8397,"[\""Laptop\"", \""Keyboard\""]",2339.31,"{\"": \""13%\""}",57952,0,"""Asia""" +2024-06-14,44964,7537,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4003.91,{},200850,0,"""Africa""" +2024-04-01,44965,9678,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",992.61,{},231271,0,"""North America""" +2023-09-12,44966,8709,"[\""Headphones\""]",2805.18,{},289225,0,"""South America""" +2024-02-07,44967,2758,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3840.48,"{\"": \""6%\""}",164290,0,"""South America""" +2024-03-25,44968,9131,"[\""Laptop\""]",823.05,{},270240,0,"""Europe""" +2024-02-09,44969,590,"[\""Laptop\""]",4626.38,{},173835,1,"""Africa""" +2023-06-24,44970,2489,"[\""Laptop\"", \""Phone\""]",3967.59,"{\""promo\"": \""23%\""}",158129,0,"""South America""" +2023-07-12,44971,8918,"[\""Headphones\""]",357.08,{},46592,1,"""South America""" +2024-06-05,44972,4016,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1156.33,"{\""loyalty\"": \""27%\""}",17602,0,"""North America""" +2024-04-09,44973,6429,"[\""Tablet\""]",1857.75,"{\""loyalty\"": \""29%\""}",85926,0,"""Asia""" +2023-05-03,44974,8389,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4287.98,{},123424,1,"""North America""" +2024-07-06,44975,7835,"[\""Monitor\"", \""Wireless Mouse\""]",1039.44,"{\"": \""5%\""}",125778,1,"""North America""" +2024-11-24,44976,6821,"[\""Charger\"", \""Headphones\""]",4429.43,"{\""promo\"": \""25%\""}",129029,1,"""South America""" +2024-12-10,44977,3820,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4232.48,"{\""promo\"": \""5%\""}",222016,1,"""Europe""" +2024-10-26,44978,2910,"[\""Headphones\"", \""Laptop\""]",3494.31,"{\"": \""9%\""}",162351,1,"""Europe""" +2024-09-06,44979,3680,"[\""Phone\""]",4721.48,{},155247,0,"""Africa""" +2023-10-02,44980,8433,"[\""Phone\""]",3337.35,"{\""promo\"": \""20%\""}",237995,1,"""North America""" +2024-05-08,44981,5276,"[\""Laptop\"", \""Keyboard\""]",4091.47,"{\""promo\"": \""17%\""}",279733,1,"""South America""" +2024-01-03,44982,3256,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",852.65,"{\""seasonal\"": \""25%\""}",103487,1,"""Africa""" +2023-10-16,44983,4385,"[\""Monitor\"", \""Headphones\""]",3012.12,"{\""seasonal\"": \""25%\""}",11008,1,"""Europe""" +2024-06-21,44984,1687,"[\""Headphones\""]",4949.31,"{\""loyalty\"": \""26%\""}",191439,1,"""South America""" +2023-09-15,44985,7800,"[\""Phone\"", \""Headphones\""]",4756.23,"{\""loyalty\"": \""20%\""}",102983,0,"""Europe""" +2023-04-11,44986,1976,"[\""Wireless Mouse\""]",680.57,{},147598,0,"""Asia""" +2023-01-25,44987,2361,"[\""Phone\"", \""Laptop\""]",1500.86,{},15513,0,"""Europe""" +2023-08-23,44988,4300,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",514.22,"{\""loyalty\"": \""8%\""}",68204,1,"""Europe""" +2024-11-13,44989,5189,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1197.11,{},215717,1,"""South America""" +2023-01-19,44990,3972,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",89.37,{},197659,0,"""Africa""" +2023-03-31,44991,3505,"[\""Tablet\""]",4133.18,{},294133,1,"""Europe""" +2023-02-05,44992,4164,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2576.15,{},252096,1,"""Asia""" +2023-08-14,44993,8235,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1619.86,"{\""promo\"": \""8%\""}",35781,0,"""Europe""" +2023-05-01,44994,9848,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2341.14,"{\""promo\"": \""6%\""}",123567,1,"""Africa""" +2024-01-17,44995,65,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",58.11,"{\""promo\"": \""18%\""}",218053,1,"""Africa""" +2023-06-28,44996,6681,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1858.79,"{\"": \""10%\""}",285446,1,"""South America""" +2024-03-08,44997,6275,"[\""Laptop\""]",4711.49,"{\""loyalty\"": \""10%\""}",49959,0,"""South America""" +2023-01-12,44998,2192,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4991.86,{},8150,1,"""Asia""" +2023-07-11,44999,2735,"[\""Tablet\""]",951.81,{},233450,1,"""South America""" +2023-02-25,45000,66,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4646.35,"{\""promo\"": \""13%\""}",257579,1,"""Asia""" +2023-12-13,45001,4372,"[\""Charger\""]",164.65,{},175457,0,"""South America""" +2023-07-23,45002,5553,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",863.84,"{\""promo\"": \""30%\""}",2236,1,"""North America""" +2023-08-08,45003,9704,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3297.05,"{\""promo\"": \""20%\""}",81710,0,"""North America""" +2024-07-11,45004,4618,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1069.02,"{\""seasonal\"": \""14%\""}",101787,0,"""Africa""" +2023-10-03,45005,2798,"[\""Headphones\"", \""Phone\""]",4390.05,"{\""seasonal\"": \""22%\""}",97508,0,"""Asia""" +2023-02-23,45006,230,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3505.93,"{\""seasonal\"": \""29%\""}",29576,1,"""Europe""" +2023-02-14,45007,6877,"[\""Tablet\"", \""Phone\""]",3115.27,{},297442,0,"""Europe""" +2023-02-16,45008,3488,"[\""Laptop\"", \""Tablet\""]",319.11,{},207324,1,"""Europe""" +2024-07-23,45009,9056,"[\""Laptop\"", \""Wireless Mouse\""]",400.22,{},183695,1,"""Africa""" +2023-05-02,45010,5507,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",844.24,"{\"": \""27%\""}",104620,0,"""North America""" +2024-05-18,45011,6886,"[\""Keyboard\""]",915.21,{},291425,0,"""North America""" +2023-04-25,45012,3044,"[\""Tablet\"", \""Laptop\""]",2716.26,"{\"": \""22%\""}",163982,1,"""Africa""" +2024-12-20,45013,9878,"[\""Tablet\"", \""Phone\""]",2319.2,"{\""loyalty\"": \""29%\""}",130479,0,"""Europe""" +2024-10-24,45014,9886,"[\""Wireless Mouse\"", \""Tablet\""]",3963.33,"{\"": \""30%\""}",53325,1,"""Asia""" +2023-06-15,45015,3107,"[\""Headphones\"", \""Phone\""]",3714.26,{},124695,0,"""Asia""" +2024-03-29,45016,5441,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2254.2,"{\""seasonal\"": \""22%\""}",221365,0,"""Africa""" +2023-07-08,45017,3738,"[\""Tablet\""]",3923.57,"{\"": \""5%\""}",283015,1,"""Europe""" +2023-03-31,45018,7264,"[\""Monitor\""]",1991.12,{},148227,0,"""Europe""" +2024-10-21,45019,2101,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",653.05,{},181827,0,"""Asia""" +2024-10-16,45020,2601,"[\""Charger\"", \""Laptop\""]",3626.11,"{\"": \""27%\""}",93068,0,"""Europe""" +2023-05-12,45021,7247,"[\""Headphones\"", \""Tablet\""]",912.0,{},14267,1,"""Africa""" +2023-07-04,45022,8915,"[\""Headphones\"", \""Phone\""]",1836.44,"{\""loyalty\"": \""19%\""}",64082,0,"""Asia""" +2023-05-13,45023,3048,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4082.02,{},167781,1,"""Europe""" +2023-05-10,45024,4253,"[\""Charger\"", \""Monitor\""]",4375.29,{},163216,1,"""Asia""" +2023-01-09,45025,6368,"[\""Monitor\""]",851.03,{},247266,0,"""South America""" +2023-05-01,45026,4265,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1063.51,"{\""seasonal\"": \""26%\""}",215956,0,"""South America""" +2024-04-22,45027,3962,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1445.73,{},273508,0,"""Europe""" +2023-01-31,45028,3092,"[\""Wireless Mouse\""]",2482.25,"{\"": \""19%\""}",202947,0,"""South America""" +2024-01-26,45029,6099,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2887.72,{},275029,1,"""Asia""" +2023-04-22,45030,2443,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4172.46,"{\""loyalty\"": \""14%\""}",213165,0,"""North America""" +2024-07-11,45031,8219,"[\""Laptop\""]",3071.65,"{\""promo\"": \""27%\""}",282992,0,"""North America""" +2024-07-29,45032,1209,"[\""Keyboard\"", \""Headphones\""]",4470.27,"{\"": \""6%\""}",114966,1,"""South America""" +2023-04-22,45033,7342,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",661.84,"{\""promo\"": \""18%\""}",4330,1,"""Africa""" +2023-03-14,45034,5698,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1322.82,{},88971,0,"""Africa""" +2023-08-28,45035,6763,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2794.7,"{\"": \""23%\""}",23957,1,"""Europe""" +2023-04-23,45036,1868,"[\""Monitor\"", \""Phone\""]",1797.96,{},168676,1,"""Asia""" +2023-12-06,45037,4330,"[\""Monitor\"", \""Wireless Mouse\""]",3729.34,"{\""promo\"": \""24%\""}",27045,0,"""North America""" +2024-05-19,45038,5580,"[\""Charger\"", \""Laptop\""]",4537.99,{},175209,1,"""Europe""" +2023-09-04,45039,1035,"[\""Headphones\"", \""Phone\""]",3784.06,"{\""loyalty\"": \""28%\""}",286343,1,"""Africa""" +2023-07-31,45040,2786,"[\""Headphones\"", \""Keyboard\""]",371.22,{},76941,0,"""North America""" +2023-10-27,45041,3556,"[\""Monitor\""]",3482.26,{},205943,0,"""Africa""" +2023-01-06,45042,6843,"[\""Laptop\""]",4426.85,{},294953,0,"""North America""" +2024-04-29,45043,4566,"[\""Wireless Mouse\""]",2033.12,{},128764,1,"""Europe""" +2023-01-10,45044,6797,"[\""Laptop\""]",1347.57,{},175153,1,"""South America""" +2023-08-25,45045,8122,"[\""Phone\"", \""Wireless Mouse\""]",339.17,"{\""loyalty\"": \""19%\""}",206690,0,"""Europe""" +2023-06-25,45046,892,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1295.05,{},45188,1,"""Africa""" +2023-03-28,45047,6639,"[\""Headphones\"", \""Wireless Mouse\""]",93.1,"{\"": \""12%\""}",79917,1,"""Africa""" +2024-06-12,45048,8237,"[\""Monitor\""]",2036.02,{},88535,0,"""Europe""" +2024-08-02,45049,7122,"[\""Tablet\""]",4909.96,{},113254,1,"""Europe""" +2024-12-26,45050,7874,"[\""Laptop\""]",4958.93,"{\""seasonal\"": \""15%\""}",17943,0,"""North America""" +2023-08-11,45051,7284,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1347.36,"{\""promo\"": \""6%\""}",176818,0,"""Africa""" +2024-05-10,45052,8032,"[\""Monitor\""]",1336.92,{},224835,1,"""South America""" +2024-07-07,45053,7969,"[\""Headphones\""]",1605.31,"{\""seasonal\"": \""17%\""}",20211,1,"""North America""" +2023-08-29,45054,3956,"[\""Charger\"", \""Monitor\"", \""Phone\""]",806.28,"{\""seasonal\"": \""9%\""}",160918,1,"""Europe""" +2024-04-24,45055,6618,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4069.27,{},246843,1,"""Africa""" +2023-01-07,45056,8877,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",290.52,{},247810,0,"""Europe""" +2024-03-04,45057,6566,"[\""Phone\"", \""Monitor\""]",1623.69,{},158343,1,"""Asia""" +2023-03-18,45058,1746,"[\""Wireless Mouse\""]",2520.84,"{\""promo\"": \""10%\""}",243563,1,"""Europe""" +2023-11-15,45059,1768,"[\""Monitor\"", \""Keyboard\""]",895.28,"{\""seasonal\"": \""25%\""}",110100,1,"""Europe""" +2023-07-07,45060,7820,"[\""Monitor\""]",4547.61,"{\""loyalty\"": \""19%\""}",249248,1,"""Europe""" +2024-04-16,45061,1577,"[\""Monitor\""]",1581.96,{},111393,0,"""Asia""" +2023-08-18,45062,1827,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4027.78,{},294606,0,"""Africa""" +2023-12-24,45063,8801,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1953.5,{},116129,1,"""Europe""" +2023-06-30,45064,6008,"[\""Charger\""]",505.14,{},36695,1,"""Europe""" +2024-04-10,45065,7295,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3308.82,"{\""loyalty\"": \""7%\""}",150561,1,"""North America""" +2023-08-23,45066,923,"[\""Laptop\""]",4362.53,"{\"": \""26%\""}",140531,1,"""Africa""" +2023-04-07,45067,8904,"[\""Phone\""]",3532.57,{},121577,1,"""Africa""" +2024-07-04,45068,7331,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",574.23,"{\""promo\"": \""25%\""}",2910,0,"""Europe""" +2023-10-21,45069,7421,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3822.25,"{\""promo\"": \""9%\""}",200426,0,"""Asia""" +2024-05-23,45070,5894,"[\""Headphones\"", \""Charger\""]",2505.57,"{\""loyalty\"": \""10%\""}",291978,1,"""Asia""" +2024-06-03,45071,1885,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4115.96,"{\""loyalty\"": \""30%\""}",96358,1,"""Asia""" +2024-11-14,45072,5678,"[\""Keyboard\"", \""Phone\""]",231.22,{},184760,1,"""Europe""" +2023-03-30,45073,7610,"[\""Wireless Mouse\"", \""Keyboard\""]",4202.54,"{\""loyalty\"": \""14%\""}",83791,1,"""Asia""" +2023-09-26,45074,3881,"[\""Keyboard\""]",3443.74,"{\""loyalty\"": \""23%\""}",117144,0,"""Europe""" +2023-05-10,45075,3154,"[\""Charger\"", \""Wireless Mouse\""]",3971.62,{},89314,1,"""North America""" +2023-07-23,45076,6838,"[\""Charger\""]",3762.11,"{\"": \""21%\""}",251690,1,"""Europe""" +2023-07-10,45077,3038,"[\""Headphones\"", \""Wireless Mouse\""]",3201.57,"{\"": \""16%\""}",10982,1,"""South America""" +2023-08-15,45078,4140,"[\""Wireless Mouse\""]",4519.96,{},68813,1,"""South America""" +2024-08-28,45079,4288,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1517.35,"{\""seasonal\"": \""29%\""}",102734,0,"""Asia""" +2023-11-24,45080,6206,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2030.9,"{\"": \""29%\""}",52017,0,"""Asia""" +2024-08-21,45081,7442,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",281.87,{},213935,0,"""Africa""" +2024-02-23,45082,7418,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3931.2,"{\""promo\"": \""25%\""}",175932,1,"""Asia""" +2024-03-26,45083,8439,"[\""Headphones\""]",4857.88,{},16404,0,"""South America""" +2024-10-20,45084,6375,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3902.76,{},56854,0,"""Africa""" +2023-09-02,45085,9946,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2818.45,"{\""seasonal\"": \""7%\""}",299770,1,"""Europe""" +2024-05-31,45086,987,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2610.55,{},36656,0,"""North America""" +2023-06-09,45087,1554,"[\""Keyboard\"", \""Phone\""]",1541.29,{},139744,1,"""Asia""" +2024-04-26,45088,9337,"[\""Charger\""]",4593.28,"{\""loyalty\"": \""24%\""}",273360,1,"""Asia""" +2024-07-13,45089,7876,"[\""Wireless Mouse\"", \""Monitor\""]",4286.58,"{\""seasonal\"": \""20%\""}",76666,0,"""Asia""" +2023-09-26,45090,3389,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1190.01,{},94025,0,"""South America""" +2023-07-22,45091,1096,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1569.31,"{\""loyalty\"": \""25%\""}",6052,1,"""North America""" +2024-10-23,45092,1921,"[\""Laptop\""]",1720.13,{},240993,1,"""Africa""" +2023-05-20,45093,6145,"[\""Phone\""]",3420.22,"{\""loyalty\"": \""8%\""}",19540,0,"""Asia""" +2024-10-15,45094,8080,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2437.27,"{\""seasonal\"": \""16%\""}",95519,1,"""North America""" +2024-08-02,45095,8618,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1941.73,{},90519,0,"""South America""" +2024-12-22,45096,3850,"[\""Headphones\"", \""Charger\""]",3494.64,{},285046,0,"""South America""" +2024-02-14,45097,4373,"[\""Phone\""]",1101.38,"{\"": \""8%\""}",200574,0,"""Europe""" +2024-01-26,45098,6309,"[\""Laptop\"", \""Charger\""]",325.52,{},146482,0,"""South America""" +2023-11-11,45099,7716,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2673.26,{},270916,1,"""Africa""" +2024-10-28,45100,2122,"[\""Charger\""]",3353.68,{},223190,1,"""North America""" +2023-05-18,45101,686,"[\""Laptop\"", \""Wireless Mouse\""]",2864.37,{},277895,1,"""Africa""" +2024-04-17,45102,9028,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2311.59,{},112103,0,"""Africa""" +2023-02-11,45103,2111,"[\""Phone\""]",3192.47,"{\"": \""6%\""}",51721,1,"""North America""" +2024-08-16,45104,2228,"[\""Wireless Mouse\""]",930.37,{},263014,1,"""North America""" +2024-10-29,45105,7980,"[\""Phone\""]",792.25,{},263836,1,"""South America""" +2024-04-15,45106,3954,"[\""Laptop\""]",3505.86,{},187062,1,"""South America""" +2024-06-25,45107,5007,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2659.0,{},220735,0,"""Africa""" +2023-07-23,45108,8923,"[\""Keyboard\""]",191.22,{},275984,1,"""Africa""" +2023-06-27,45109,8737,"[\""Keyboard\"", \""Laptop\""]",4070.9,"{\""seasonal\"": \""9%\""}",160429,0,"""North America""" +2024-09-21,45110,4650,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1753.54,{},247537,1,"""Africa""" +2023-12-28,45111,5014,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4817.38,{},158110,0,"""Europe""" +2023-11-06,45112,1650,"[\""Monitor\"", \""Tablet\""]",1425.02,{},104821,0,"""Africa""" +2024-02-09,45113,8082,"[\""Wireless Mouse\"", \""Phone\""]",484.58,{},128842,0,"""Africa""" +2023-08-03,45114,9037,"[\""Laptop\"", \""Headphones\""]",4049.45,{},62491,0,"""Africa""" +2023-07-21,45115,8955,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2701.94,"{\""promo\"": \""29%\""}",47607,0,"""Africa""" +2023-05-20,45116,1461,"[\""Laptop\""]",3990.3,"{\"": \""14%\""}",219889,1,"""Africa""" +2024-02-24,45117,5644,"[\""Keyboard\""]",305.7,{},56362,1,"""Africa""" +2024-02-17,45118,7895,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1661.69,{},111141,1,"""Africa""" +2024-05-27,45119,1449,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4432.32,{},153401,0,"""Asia""" +2024-05-09,45120,262,"[\""Laptop\""]",1419.95,"{\""promo\"": \""7%\""}",185517,0,"""Africa""" +2024-09-27,45121,440,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4794.18,"{\"": \""29%\""}",268089,0,"""North America""" +2023-01-01,45122,5097,"[\""Wireless Mouse\""]",1563.95,{},143409,1,"""South America""" +2024-09-09,45123,66,"[\""Monitor\""]",880.16,{},30680,1,"""Africa""" +2024-07-15,45124,7261,"[\""Laptop\"", \""Wireless Mouse\""]",3133.19,"{\"": \""18%\""}",11136,1,"""Africa""" +2024-02-12,45125,1322,"[\""Keyboard\"", \""Laptop\""]",619.31,"{\""seasonal\"": \""12%\""}",196995,0,"""Africa""" +2024-02-21,45126,2898,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3078.6,"{\""seasonal\"": \""7%\""}",129241,1,"""Europe""" +2023-02-19,45127,7339,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2537.11,"{\""loyalty\"": \""16%\""}",276790,0,"""South America""" +2024-02-01,45128,8798,"[\""Charger\"", \""Wireless Mouse\""]",1732.25,"{\"": \""28%\""}",200747,0,"""Africa""" +2023-06-20,45129,3266,"[\""Wireless Mouse\"", \""Monitor\""]",3579.66,{},206788,0,"""Asia""" +2024-06-24,45130,765,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1332.44,"{\""promo\"": \""21%\""}",129869,0,"""South America""" +2024-05-31,45131,4444,"[\""Tablet\""]",1639.4,{},280582,1,"""North America""" +2024-12-07,45132,6373,"[\""Keyboard\"", \""Monitor\""]",3824.01,"{\""seasonal\"": \""15%\""}",3529,0,"""Africa""" +2023-08-18,45133,305,"[\""Keyboard\""]",1127.7,{},23345,1,"""South America""" +2024-06-02,45134,4400,"[\""Wireless Mouse\""]",482.41,{},221633,1,"""North America""" +2023-08-26,45135,9796,"[\""Monitor\""]",1131.58,{},268114,1,"""Africa""" +2024-10-15,45136,2886,"[\""Tablet\""]",3267.61,"{\""loyalty\"": \""23%\""}",37816,1,"""South America""" +2024-03-22,45137,2097,"[\""Headphones\"", \""Wireless Mouse\""]",581.5,{},257712,0,"""Asia""" +2023-05-01,45138,7593,"[\""Wireless Mouse\""]",1636.29,"{\""loyalty\"": \""6%\""}",204933,1,"""South America""" +2023-03-17,45139,6666,"[\""Wireless Mouse\""]",190.66,{},48826,0,"""Asia""" +2023-03-12,45140,1561,"[\""Wireless Mouse\""]",2071.34,{},54545,1,"""North America""" +2024-08-01,45141,9249,"[\""Wireless Mouse\""]",346.11,"{\"": \""24%\""}",80710,0,"""Europe""" +2024-04-14,45142,3105,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1974.62,{},231001,1,"""South America""" +2023-05-24,45143,8521,"[\""Laptop\"", \""Tablet\""]",4648.44,"{\""loyalty\"": \""29%\""}",19133,1,"""Asia""" +2023-04-27,45144,8207,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",654.33,"{\""seasonal\"": \""5%\""}",158605,0,"""North America""" +2024-06-13,45145,9960,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1448.24,"{\"": \""19%\""}",295015,1,"""Africa""" +2023-06-09,45146,5370,"[\""Keyboard\""]",2368.53,{},170573,1,"""South America""" +2023-09-24,45147,1357,"[\""Laptop\"", \""Monitor\""]",3209.99,"{\""seasonal\"": \""17%\""}",251759,1,"""South America""" +2024-11-11,45148,8537,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1626.99,{},117360,1,"""North America""" +2023-04-16,45149,3085,"[\""Tablet\""]",334.67,{},20848,0,"""Asia""" +2024-02-21,45150,4227,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4479.55,{},108155,1,"""South America""" +2023-04-09,45151,9149,"[\""Headphones\""]",3956.51,"{\""promo\"": \""19%\""}",287702,0,"""Asia""" +2023-01-25,45152,3748,"[\""Charger\""]",4746.82,{},279083,1,"""North America""" +2024-08-06,45153,533,"[\""Laptop\"", \""Wireless Mouse\""]",3491.67,"{\""promo\"": \""27%\""}",262669,0,"""North America""" +2023-06-26,45154,1280,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3915.37,{},247511,1,"""Europe""" +2024-05-18,45155,4075,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",635.45,{},238087,0,"""Europe""" +2023-02-20,45156,7677,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",691.85,{},293020,0,"""Africa""" +2024-06-09,45157,4895,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4007.73,{},125591,0,"""Africa""" +2023-11-02,45158,9432,"[\""Headphones\"", \""Tablet\""]",228.14,"{\""loyalty\"": \""6%\""}",184193,0,"""Africa""" +2024-09-22,45159,3839,"[\""Wireless Mouse\""]",3586.08,{},144095,0,"""Europe""" +2024-07-26,45160,9589,"[\""Headphones\""]",4052.66,"{\""promo\"": \""12%\""}",23415,0,"""Europe""" +2023-07-14,45161,3390,"[\""Headphones\""]",4018.18,"{\""promo\"": \""25%\""}",29150,1,"""Asia""" +2024-03-24,45162,43,"[\""Laptop\""]",463.2,{},225801,1,"""Asia""" +2023-09-17,45163,1656,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3187.07,"{\""seasonal\"": \""13%\""}",153207,0,"""North America""" +2024-02-19,45164,7897,"[\""Wireless Mouse\""]",4119.91,"{\""promo\"": \""12%\""}",271711,1,"""North America""" +2023-01-25,45165,1693,"[\""Keyboard\""]",3037.42,{},59049,0,"""Europe""" +2024-02-17,45166,8483,"[\""Phone\""]",1260.93,{},185270,0,"""Africa""" +2023-07-04,45167,3395,"[\""Tablet\"", \""Laptop\""]",1103.18,{},22521,1,"""Asia""" +2023-11-20,45168,200,"[\""Headphones\"", \""Wireless Mouse\""]",2578.7,"{\"": \""18%\""}",44154,0,"""Africa""" +2024-02-21,45169,5318,"[\""Tablet\"", \""Wireless Mouse\""]",2983.0,{},288386,1,"""Africa""" +2023-07-22,45170,1748,"[\""Headphones\"", \""Wireless Mouse\""]",1276.54,"{\""seasonal\"": \""9%\""}",6118,1,"""Africa""" +2023-06-14,45171,1753,"[\""Laptop\""]",3163.49,{},78871,1,"""Asia""" +2023-07-31,45172,17,"[\""Phone\""]",749.27,{},179678,1,"""Asia""" +2024-03-03,45173,7463,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",71.17,"{\""promo\"": \""28%\""}",32032,1,"""South America""" +2023-01-27,45174,8165,"[\""Headphones\""]",3924.28,{},111237,0,"""North America""" +2024-12-21,45175,2673,"[\""Keyboard\"", \""Wireless Mouse\""]",3584.53,{},5522,0,"""Europe""" +2024-12-18,45176,6153,"[\""Laptop\"", \""Wireless Mouse\""]",450.54,"{\""promo\"": \""22%\""}",125194,0,"""Africa""" +2024-07-19,45177,6816,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2664.2,"{\"": \""25%\""}",30947,0,"""South America""" +2023-02-18,45178,3456,"[\""Laptop\"", \""Wireless Mouse\""]",3590.03,{},291306,0,"""South America""" +2023-05-30,45179,9926,"[\""Charger\""]",4341.16,{},289715,0,"""South America""" +2023-06-28,45180,7648,"[\""Phone\"", \""Keyboard\""]",4187.52,{},136083,1,"""Africa""" +2024-08-18,45181,8913,"[\""Laptop\""]",3402.84,{},154663,1,"""Asia""" +2024-08-11,45182,2307,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4063.14,{},62573,0,"""Africa""" +2023-07-06,45183,1504,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1974.26,{},108021,0,"""Africa""" +2023-06-23,45184,2553,"[\""Laptop\""]",3720.67,{},133848,0,"""Africa""" +2024-07-17,45185,3255,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1323.89,"{\""seasonal\"": \""24%\""}",178539,0,"""Asia""" +2024-08-29,45186,8048,"[\""Keyboard\"", \""Laptop\""]",2943.07,"{\""loyalty\"": \""11%\""}",77491,0,"""South America""" +2023-03-09,45187,9840,"[\""Headphones\"", \""Keyboard\""]",3070.33,{},64704,0,"""Africa""" +2023-07-18,45188,7831,"[\""Wireless Mouse\"", \""Keyboard\""]",4858.92,{},104407,1,"""Africa""" +2023-08-16,45189,6192,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1186.46,"{\""seasonal\"": \""28%\""}",237221,1,"""Asia""" +2023-01-25,45190,5691,"[\""Phone\"", \""Keyboard\""]",223.91,"{\""promo\"": \""17%\""}",106940,0,"""Europe""" +2024-09-02,45191,905,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2493.65,"{\"": \""11%\""}",200153,0,"""Europe""" +2024-10-29,45192,9691,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1302.35,"{\""loyalty\"": \""9%\""}",175975,1,"""South America""" +2023-04-25,45193,2844,"[\""Charger\"", \""Wireless Mouse\""]",3202.4,{},66332,1,"""South America""" +2023-08-04,45194,6512,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4092.21,{},9915,1,"""Europe""" +2024-07-05,45195,9401,"[\""Tablet\"", \""Wireless Mouse\""]",3636.63,"{\""loyalty\"": \""30%\""}",105691,0,"""South America""" +2023-03-30,45196,9876,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2583.93,"{\"": \""10%\""}",248662,0,"""North America""" +2023-04-22,45197,4388,"[\""Monitor\""]",100.17,{},254823,0,"""Europe""" +2023-11-06,45198,2335,"[\""Wireless Mouse\""]",2404.7,"{\""seasonal\"": \""7%\""}",259483,0,"""Europe""" +2023-11-13,45199,9121,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",222.76,"{\""loyalty\"": \""24%\""}",30929,0,"""South America""" +2024-04-03,45200,4265,"[\""Tablet\"", \""Charger\""]",4667.09,"{\""promo\"": \""18%\""}",69599,0,"""Africa""" +2024-06-03,45201,458,"[\""Keyboard\""]",1926.7,"{\""seasonal\"": \""17%\""}",139530,0,"""North America""" +2023-11-27,45202,1855,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1118.36,{},40359,0,"""Europe""" +2024-05-16,45203,4059,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",398.2,"{\""seasonal\"": \""24%\""}",92917,0,"""Europe""" +2024-07-07,45204,9899,"[\""Laptop\"", \""Wireless Mouse\""]",2954.14,{},214571,1,"""Africa""" +2023-04-04,45205,357,"[\""Laptop\""]",290.38,{},10975,1,"""Asia""" +2023-10-12,45206,8910,"[\""Keyboard\"", \""Monitor\""]",244.98,"{\""loyalty\"": \""12%\""}",205255,0,"""North America""" +2023-04-19,45207,665,"[\""Laptop\"", \""Charger\""]",3561.16,"{\"": \""5%\""}",50023,1,"""Africa""" +2024-05-25,45208,8820,"[\""Wireless Mouse\"", \""Phone\""]",3633.1,{},223887,0,"""Europe""" +2023-04-19,45209,3007,"[\""Phone\"", \""Headphones\""]",4395.68,"{\""seasonal\"": \""13%\""}",209835,0,"""Asia""" +2024-07-05,45210,5641,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2967.66,{},12516,1,"""Africa""" +2023-10-28,45211,6690,"[\""Headphones\"", \""Phone\""]",848.35,{},100437,0,"""Asia""" +2024-01-17,45212,3197,"[\""Wireless Mouse\""]",4857.7,"{\""promo\"": \""14%\""}",113240,1,"""South America""" +2024-01-08,45213,1533,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3499.49,"{\"": \""24%\""}",249872,0,"""Asia""" +2023-06-30,45214,2365,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1636.32,{},287619,0,"""Asia""" +2023-02-04,45215,8829,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4761.15,{},112508,0,"""North America""" +2024-10-23,45216,577,"[\""Headphones\""]",3427.93,{},52173,1,"""North America""" +2024-10-20,45217,6604,"[\""Phone\"", \""Headphones\""]",229.04,"{\"": \""7%\""}",144067,0,"""Africa""" +2023-11-02,45218,66,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2046.71,{},205802,1,"""Asia""" +2024-10-12,45219,1942,"[\""Phone\"", \""Tablet\""]",3163.09,{},156948,1,"""South America""" +2024-01-06,45220,296,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3852.16,{},123362,1,"""North America""" +2023-08-05,45221,4228,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1322.26,"{\""promo\"": \""8%\""}",294578,1,"""Europe""" +2023-10-06,45222,3711,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",243.56,"{\""promo\"": \""15%\""}",175967,1,"""Africa""" +2023-10-02,45223,7517,"[\""Tablet\""]",4498.0,"{\""promo\"": \""24%\""}",196277,0,"""Asia""" +2023-09-01,45224,3404,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2208.4,{},140924,0,"""Asia""" +2024-11-22,45225,6066,"[\""Tablet\""]",2588.81,"{\""promo\"": \""21%\""}",194760,1,"""South America""" +2023-08-31,45226,9308,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3183.18,"{\""seasonal\"": \""6%\""}",106961,0,"""Africa""" +2024-10-08,45227,5956,"[\""Wireless Mouse\""]",1410.67,{},93114,0,"""Europe""" +2024-05-07,45228,5884,"[\""Monitor\"", \""Laptop\""]",4607.15,"{\""loyalty\"": \""18%\""}",141677,0,"""Europe""" +2024-01-07,45229,4614,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2321.94,{},84351,1,"""North America""" +2024-09-09,45230,1566,"[\""Headphones\""]",1730.07,{},251040,1,"""North America""" +2023-01-19,45231,4306,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2411.86,{},5769,0,"""South America""" +2024-12-30,45232,4,"[\""Headphones\"", \""Laptop\""]",347.43,"{\""loyalty\"": \""30%\""}",186224,0,"""Europe""" +2023-09-08,45233,5683,"[\""Laptop\"", \""Monitor\""]",1263.2,{},140981,0,"""Europe""" +2023-09-23,45234,1724,"[\""Tablet\""]",2150.79,{},227926,0,"""Asia""" +2024-09-19,45235,2217,"[\""Wireless Mouse\""]",3768.33,{},132760,0,"""Europe""" +2024-06-30,45236,1727,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1911.38,{},298666,0,"""Europe""" +2023-08-12,45237,2373,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1003.67,"{\""seasonal\"": \""29%\""}",266791,0,"""South America""" +2023-10-12,45238,9117,"[\""Laptop\""]",4021.93,"{\"": \""10%\""}",40808,1,"""South America""" +2024-08-02,45239,7858,"[\""Monitor\""]",3161.91,"{\""loyalty\"": \""12%\""}",263083,0,"""Europe""" +2024-04-20,45240,7883,"[\""Charger\"", \""Phone\""]",4986.35,{},94786,1,"""Asia""" +2024-06-06,45241,5515,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4358.89,{},9146,1,"""South America""" +2023-09-17,45242,1064,"[\""Monitor\"", \""Phone\""]",961.48,{},109303,1,"""North America""" +2024-02-10,45243,2770,"[\""Tablet\"", \""Charger\""]",2394.23,"{\""promo\"": \""24%\""}",188020,1,"""North America""" +2024-06-15,45244,4789,"[\""Monitor\"", \""Laptop\""]",4508.68,{},211557,0,"""Europe""" +2024-10-09,45245,7891,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1681.48,{},9884,0,"""Asia""" +2023-09-30,45246,1139,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1884.76,{},6598,0,"""South America""" +2023-08-07,45247,9935,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4185.29,"{\""loyalty\"": \""13%\""}",142441,0,"""Africa""" +2024-06-22,45248,3964,"[\""Headphones\"", \""Phone\""]",938.43,{},130856,1,"""North America""" +2024-03-20,45249,6946,"[\""Laptop\""]",2194.7,{},267826,1,"""North America""" +2024-04-19,45250,2210,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3352.92,"{\""promo\"": \""27%\""}",279190,0,"""Europe""" +2024-08-24,45251,7587,"[\""Keyboard\"", \""Laptop\""]",3504.86,"{\"": \""16%\""}",287357,0,"""North America""" +2024-09-04,45252,1693,"[\""Headphones\"", \""Monitor\""]",3750.57,"{\""promo\"": \""29%\""}",237275,1,"""North America""" +2023-02-01,45253,3665,"[\""Charger\"", \""Monitor\""]",1015.67,"{\""seasonal\"": \""26%\""}",156944,0,"""North America""" +2024-08-26,45254,5452,"[\""Laptop\""]",2388.56,{},14665,0,"""Asia""" +2023-01-09,45255,1170,"[\""Monitor\"", \""Headphones\""]",284.74,{},61730,1,"""Africa""" +2024-09-13,45256,9162,"[\""Headphones\""]",4826.27,"{\""promo\"": \""5%\""}",223177,1,"""Africa""" +2024-01-02,45257,9196,"[\""Monitor\""]",2874.13,"{\""promo\"": \""10%\""}",270231,1,"""South America""" +2024-05-04,45258,1933,"[\""Keyboard\""]",2594.35,{},84546,1,"""Europe""" +2024-03-24,45259,1040,"[\""Charger\"", \""Headphones\""]",3361.35,{},166717,1,"""Africa""" +2023-07-05,45260,1845,"[\""Phone\"", \""Laptop\""]",4839.18,"{\""promo\"": \""26%\""}",169237,1,"""North America""" +2024-03-14,45261,619,"[\""Headphones\"", \""Phone\""]",826.59,{},237066,0,"""Europe""" +2024-03-14,45262,7332,"[\""Laptop\""]",613.93,{},194155,0,"""Africa""" +2024-08-30,45263,5312,"[\""Tablet\"", \""Laptop\""]",306.72,{},182589,1,"""Europe""" +2024-11-04,45264,2686,"[\""Monitor\""]",2993.29,"{\""seasonal\"": \""17%\""}",156800,1,"""North America""" +2023-12-22,45265,4692,"[\""Monitor\"", \""Phone\""]",4472.89,{},180844,0,"""North America""" +2024-07-09,45266,4394,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2792.6,"{\""promo\"": \""27%\""}",276308,1,"""Africa""" +2024-07-31,45267,3973,"[\""Laptop\""]",926.79,{},169648,1,"""South America""" +2023-01-29,45268,7766,"[\""Tablet\"", \""Charger\""]",4469.78,{},138444,0,"""Africa""" +2023-08-11,45269,1611,"[\""Headphones\""]",4464.85,{},12988,0,"""Europe""" +2023-02-01,45270,7556,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4822.74,"{\""promo\"": \""6%\""}",189578,1,"""Africa""" +2023-11-05,45271,7108,"[\""Monitor\""]",3793.11,{},72507,1,"""Asia""" +2024-08-06,45272,3459,"[\""Keyboard\"", \""Monitor\""]",137.8,{},13895,1,"""North America""" +2023-01-10,45273,9455,"[\""Headphones\""]",4621.09,{},70588,1,"""Africa""" +2024-03-28,45274,9807,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1954.78,{},114012,0,"""Africa""" +2024-07-02,45275,9402,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3468.55,"{\""seasonal\"": \""24%\""}",292489,0,"""South America""" +2023-06-09,45276,6704,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2813.68,{},222034,0,"""North America""" +2024-03-20,45277,1021,"[\""Wireless Mouse\"", \""Tablet\""]",4754.1,{},299486,1,"""Europe""" +2024-06-17,45278,8584,"[\""Charger\""]",3998.12,"{\""loyalty\"": \""19%\""}",50930,0,"""Asia""" +2023-10-08,45279,5834,"[\""Keyboard\""]",2531.61,"{\""loyalty\"": \""8%\""}",172956,0,"""Asia""" +2023-11-04,45280,2729,"[\""Keyboard\"", \""Laptop\""]",1901.9,{},147764,1,"""North America""" +2023-10-16,45281,9985,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3518.46,"{\""seasonal\"": \""17%\""}",227955,1,"""South America""" +2023-12-19,45282,9220,"[\""Headphones\"", \""Tablet\""]",4319.69,{},141027,1,"""Asia""" +2024-06-26,45283,1472,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3260.44,"{\""promo\"": \""29%\""}",109699,0,"""North America""" +2024-12-12,45284,3699,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3849.14,{},122555,0,"""Africa""" +2023-02-01,45285,6459,"[\""Monitor\""]",2830.77,"{\""loyalty\"": \""22%\""}",93749,0,"""North America""" +2023-09-29,45286,98,"[\""Charger\"", \""Headphones\""]",1195.59,"{\"": \""26%\""}",145569,1,"""Europe""" +2024-03-11,45287,9971,"[\""Tablet\"", \""Headphones\""]",3876.48,{},22040,0,"""North America""" +2024-07-14,45288,1318,"[\""Phone\""]",3899.26,{},21496,1,"""Asia""" +2023-05-04,45289,749,"[\""Wireless Mouse\""]",83.67,{},39144,1,"""North America""" +2024-04-10,45290,6602,"[\""Headphones\"", \""Keyboard\""]",1050.08,{},248856,0,"""Europe""" +2023-05-08,45291,2388,"[\""Keyboard\"", \""Tablet\""]",3200.31,"{\"": \""25%\""}",195954,1,"""South America""" +2023-03-07,45292,9135,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2811.81,{},227590,1,"""South America""" +2023-06-17,45293,1966,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1290.65,"{\""loyalty\"": \""9%\""}",299688,0,"""North America""" +2024-03-01,45294,7941,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1750.88,"{\"": \""25%\""}",27887,0,"""Asia""" +2023-12-30,45295,5243,"[\""Headphones\""]",1300.64,"{\""promo\"": \""8%\""}",268870,0,"""Europe""" +2024-01-09,45296,5003,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3319.12,{},297976,0,"""Europe""" +2023-03-27,45297,8875,"[\""Charger\"", \""Wireless Mouse\""]",4796.09,{},220932,1,"""North America""" +2024-07-23,45298,4102,"[\""Phone\"", \""Monitor\""]",2607.63,"{\"": \""20%\""}",69861,0,"""Africa""" +2024-07-16,45299,7720,"[\""Laptop\"", \""Wireless Mouse\""]",3066.44,{},25386,0,"""South America""" +2024-06-03,45300,2281,"[\""Charger\""]",3739.46,"{\""promo\"": \""8%\""}",228426,1,"""South America""" +2023-04-05,45301,1711,"[\""Charger\""]",553.17,"{\"": \""12%\""}",123569,1,"""Africa""" +2024-12-16,45302,7973,"[\""Wireless Mouse\"", \""Keyboard\""]",2948.62,{},195075,0,"""South America""" +2023-02-06,45303,2422,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4660.19,{},40959,1,"""Asia""" +2024-03-03,45304,966,"[\""Laptop\""]",3714.11,{},85833,1,"""Asia""" +2024-10-13,45305,235,"[\""Headphones\"", \""Wireless Mouse\""]",2378.28,"{\""loyalty\"": \""6%\""}",165002,0,"""South America""" +2024-04-02,45306,1435,"[\""Phone\"", \""Charger\""]",60.97,{},142050,1,"""North America""" +2023-09-07,45307,8147,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4937.94,"{\""promo\"": \""16%\""}",171320,1,"""North America""" +2024-10-08,45308,8570,"[\""Charger\""]",442.21,{},15166,1,"""Europe""" +2024-05-22,45309,2438,"[\""Keyboard\"", \""Monitor\""]",490.85,{},129415,0,"""North America""" +2024-04-10,45310,6936,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4013.84,{},224970,1,"""Africa""" +2024-05-06,45311,4974,"[\""Keyboard\"", \""Headphones\""]",562.31,"{\""seasonal\"": \""23%\""}",21033,1,"""North America""" +2024-06-03,45312,5376,"[\""Wireless Mouse\"", \""Charger\""]",3850.46,"{\""promo\"": \""8%\""}",175258,1,"""Asia""" +2023-07-02,45313,6767,"[\""Keyboard\""]",1355.95,"{\""promo\"": \""29%\""}",298785,0,"""South America""" +2024-06-25,45314,7015,"[\""Phone\"", \""Laptop\""]",1774.83,"{\""seasonal\"": \""14%\""}",191300,0,"""Europe""" +2023-03-19,45315,5693,"[\""Laptop\""]",2278.96,"{\"": \""25%\""}",193839,1,"""Asia""" +2024-12-04,45316,1309,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2851.31,{},161234,0,"""Asia""" +2023-02-10,45317,6117,"[\""Charger\"", \""Headphones\""]",121.76,{},264736,0,"""North America""" +2024-02-06,45318,7222,"[\""Phone\"", \""Monitor\""]",3046.17,"{\""promo\"": \""8%\""}",274925,0,"""North America""" +2023-03-10,45319,401,"[\""Charger\"", \""Keyboard\""]",3431.45,"{\""promo\"": \""22%\""}",88743,1,"""Asia""" +2024-03-16,45320,8806,"[\""Monitor\""]",2492.64,"{\""loyalty\"": \""23%\""}",67060,0,"""South America""" +2023-02-12,45321,2961,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2837.6,{},139678,0,"""North America""" +2023-05-27,45322,4102,"[\""Monitor\"", \""Headphones\""]",3508.86,"{\""seasonal\"": \""17%\""}",203836,0,"""Asia""" +2024-07-12,45323,6362,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4074.47,{},101855,0,"""Europe""" +2024-09-11,45324,9684,"[\""Laptop\""]",4822.15,"{\"": \""30%\""}",241489,0,"""Africa""" +2024-10-19,45325,8395,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4989.17,{},34529,0,"""North America""" +2024-04-30,45326,5289,"[\""Keyboard\"", \""Charger\""]",4191.46,"{\""loyalty\"": \""13%\""}",298454,0,"""Africa""" +2023-06-30,45327,1550,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2701.74,{},237956,1,"""Africa""" +2024-02-18,45328,7082,"[\""Monitor\""]",665.83,"{\""seasonal\"": \""12%\""}",127976,1,"""Africa""" +2024-05-28,45329,9698,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3987.84,{},8394,1,"""South America""" +2024-02-26,45330,4159,"[\""Phone\""]",4761.27,{},170582,0,"""Asia""" +2024-10-09,45331,7532,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2740.33,"{\"": \""10%\""}",209432,1,"""North America""" +2023-06-19,45332,1180,"[\""Laptop\"", \""Headphones\""]",2407.67,"{\""loyalty\"": \""19%\""}",237873,1,"""North America""" +2023-12-24,45333,10000,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4436.2,{},43821,1,"""Africa""" +2024-10-22,45334,6897,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3072.63,{},40565,1,"""Europe""" +2023-08-29,45335,8250,"[\""Tablet\"", \""Headphones\""]",1261.62,{},236518,1,"""Africa""" +2023-04-25,45336,7357,"[\""Wireless Mouse\"", \""Phone\""]",3515.84,"{\""promo\"": \""15%\""}",293058,0,"""Africa""" +2023-09-23,45337,5263,"[\""Wireless Mouse\"", \""Phone\""]",1412.78,{},275155,0,"""Africa""" +2024-06-03,45338,100,"[\""Keyboard\"", \""Wireless Mouse\""]",2644.48,"{\""loyalty\"": \""22%\""}",106473,1,"""South America""" +2024-08-22,45339,8302,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4857.01,"{\""promo\"": \""26%\""}",126728,0,"""Europe""" +2024-10-16,45340,1336,"[\""Wireless Mouse\""]",2498.17,{},270512,1,"""Africa""" +2023-10-05,45341,737,"[\""Charger\"", \""Tablet\""]",4909.53,"{\""loyalty\"": \""11%\""}",179997,1,"""North America""" +2023-05-15,45342,2845,"[\""Keyboard\""]",2371.09,{},195937,1,"""Africa""" +2024-02-02,45343,2346,"[\""Headphones\""]",407.33,{},293786,1,"""Europe""" +2024-08-26,45344,5266,"[\""Laptop\"", \""Monitor\""]",4080.04,"{\"": \""26%\""}",79112,1,"""Asia""" +2023-03-11,45345,5292,"[\""Tablet\""]",649.07,"{\""promo\"": \""9%\""}",285331,0,"""North America""" +2023-10-13,45346,71,"[\""Tablet\"", \""Keyboard\""]",2602.89,{},124130,1,"""Asia""" +2023-03-29,45347,5312,"[\""Headphones\""]",2836.42,"{\""promo\"": \""21%\""}",190384,1,"""North America""" +2024-08-25,45348,50,"[\""Charger\"", \""Wireless Mouse\""]",2133.84,"{\""loyalty\"": \""17%\""}",236393,1,"""Europe""" +2024-11-06,45349,1272,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",783.33,"{\"": \""16%\""}",24587,1,"""South America""" +2023-11-01,45350,8367,"[\""Laptop\"", \""Wireless Mouse\""]",4205.74,{},262520,1,"""South America""" +2024-08-04,45351,9619,"[\""Phone\"", \""Wireless Mouse\""]",3348.14,{},107687,0,"""North America""" +2024-12-31,45352,3691,"[\""Phone\"", \""Headphones\""]",4507.12,{},22200,0,"""Europe""" +2023-03-23,45353,48,"[\""Charger\""]",1359.41,{},6217,1,"""Africa""" +2023-02-08,45354,1324,"[\""Charger\"", \""Keyboard\""]",2476.67,"{\""promo\"": \""28%\""}",159989,1,"""North America""" +2024-11-24,45355,5120,"[\""Phone\"", \""Charger\""]",886.16,{},130511,1,"""Asia""" +2023-03-24,45356,3168,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2275.06,{},109033,0,"""Asia""" +2024-10-12,45357,7945,"[\""Keyboard\"", \""Tablet\""]",2688.27,"{\"": \""14%\""}",15847,1,"""North America""" +2023-05-16,45358,1397,"[\""Tablet\""]",2261.64,{},98621,0,"""Europe""" +2023-12-19,45359,687,"[\""Monitor\"", \""Tablet\""]",4450.04,{},98583,1,"""Africa""" +2023-10-27,45360,8889,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2739.55,"{\""seasonal\"": \""16%\""}",103016,1,"""Asia""" +2024-10-06,45361,5485,"[\""Headphones\"", \""Monitor\""]",3603.58,"{\""loyalty\"": \""22%\""}",232261,0,"""South America""" +2024-08-05,45362,2674,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2007.8,{},208097,1,"""North America""" +2024-04-13,45363,7662,"[\""Keyboard\"", \""Monitor\""]",2817.22,{},76008,1,"""South America""" +2023-09-26,45364,1591,"[\""Phone\"", \""Laptop\""]",3086.4,"{\""loyalty\"": \""6%\""}",297360,0,"""Europe""" +2023-11-19,45365,4484,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4385.13,"{\""loyalty\"": \""25%\""}",3855,0,"""Europe""" +2023-09-23,45366,4712,"[\""Wireless Mouse\""]",1447.38,{},206454,0,"""North America""" +2023-04-18,45367,4562,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1905.3,"{\""promo\"": \""7%\""}",299139,1,"""Asia""" +2024-03-11,45368,5743,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1039.55,{},166707,0,"""South America""" +2023-04-09,45369,3395,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2199.07,{},10521,0,"""Asia""" +2023-12-14,45370,3403,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1602.75,{},81915,1,"""Europe""" +2024-08-18,45371,9296,"[\""Laptop\""]",3214.04,{},172867,1,"""South America""" +2024-02-03,45372,7926,"[\""Charger\"", \""Laptop\""]",4161.99,{},49027,1,"""South America""" +2023-12-02,45373,4140,"[\""Tablet\""]",3979.04,"{\""promo\"": \""7%\""}",161758,1,"""North America""" +2024-08-09,45374,5081,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1832.88,{},70824,0,"""North America""" +2023-12-14,45375,9113,"[\""Laptop\"", \""Tablet\""]",2822.84,"{\""promo\"": \""19%\""}",207175,1,"""Africa""" +2024-04-10,45376,9859,"[\""Keyboard\""]",2597.25,"{\""promo\"": \""25%\""}",85794,0,"""North America""" +2023-12-31,45377,912,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1932.64,"{\""promo\"": \""6%\""}",219009,1,"""North America""" +2023-07-16,45378,3061,"[\""Headphones\""]",64.63,"{\""loyalty\"": \""29%\""}",55796,1,"""Europe""" +2024-01-14,45379,8526,"[\""Wireless Mouse\""]",280.22,"{\"": \""18%\""}",189897,0,"""North America""" +2023-05-08,45380,6462,"[\""Charger\"", \""Monitor\""]",3774.83,{},35623,0,"""South America""" +2023-02-25,45381,739,"[\""Tablet\""]",4889.7,{},102344,1,"""North America""" +2024-08-22,45382,1723,"[\""Monitor\"", \""Phone\""]",3951.3,"{\""promo\"": \""29%\""}",231220,0,"""Africa""" +2023-12-10,45383,9344,"[\""Headphones\"", \""Keyboard\""]",2249.98,"{\"": \""28%\""}",153204,1,"""Africa""" +2023-04-11,45384,8960,"[\""Monitor\"", \""Phone\""]",820.66,{},289654,0,"""South America""" +2023-09-21,45385,2689,"[\""Keyboard\"", \""Phone\""]",3069.47,"{\""seasonal\"": \""17%\""}",149783,1,"""South America""" +2024-05-08,45386,9320,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2305.19,{},158878,0,"""North America""" +2023-04-23,45387,1106,"[\""Laptop\"", \""Monitor\""]",857.84,{},148231,0,"""Africa""" +2023-10-09,45388,2896,"[\""Wireless Mouse\"", \""Tablet\""]",645.46,"{\""seasonal\"": \""13%\""}",204753,0,"""Europe""" +2023-02-11,45389,2470,"[\""Keyboard\""]",4893.42,{},257785,0,"""Africa""" +2023-06-20,45390,165,"[\""Monitor\""]",2882.1,{},17535,1,"""North America""" +2024-11-14,45391,3452,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2862.94,{},50212,0,"""Africa""" +2023-09-24,45392,2437,"[\""Wireless Mouse\""]",4396.86,"{\""seasonal\"": \""24%\""}",98364,0,"""North America""" +2024-01-09,45393,3293,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",886.41,{},62752,0,"""South America""" +2023-03-02,45394,1226,"[\""Charger\""]",1448.89,"{\""promo\"": \""25%\""}",81387,1,"""South America""" +2024-08-27,45395,7564,"[\""Phone\"", \""Wireless Mouse\""]",151.29,{},276145,1,"""North America""" +2024-03-06,45396,6159,"[\""Tablet\"", \""Headphones\""]",774.07,{},279233,1,"""North America""" +2023-11-05,45397,9320,"[\""Tablet\"", \""Headphones\""]",1877.34,{},155606,1,"""Asia""" +2024-02-28,45398,2465,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3873.51,{},197435,1,"""South America""" +2023-08-07,45399,3743,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1822.39,{},276563,0,"""North America""" +2023-04-19,45400,8443,"[\""Wireless Mouse\"", \""Keyboard\""]",573.97,"{\""promo\"": \""15%\""}",125459,0,"""Europe""" +2024-04-08,45401,4000,"[\""Monitor\""]",1103.5,"{\"": \""29%\""}",65639,0,"""Asia""" +2023-07-25,45402,719,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2603.42,"{\"": \""6%\""}",80165,1,"""Africa""" +2023-11-01,45403,3249,"[\""Wireless Mouse\"", \""Phone\""]",1852.42,"{\"": \""29%\""}",264859,1,"""Africa""" +2024-02-10,45404,1866,"[\""Laptop\""]",449.61,{},238772,0,"""Africa""" +2023-07-17,45405,4566,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3582.59,{},18449,1,"""Asia""" +2024-07-21,45406,9695,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2558.06,{},86217,1,"""Europe""" +2023-02-13,45407,3990,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1326.74,"{\"": \""11%\""}",235992,0,"""Europe""" +2023-10-05,45408,5403,"[\""Keyboard\""]",301.57,"{\""promo\"": \""30%\""}",212247,0,"""Asia""" +2024-11-13,45409,6271,"[\""Laptop\""]",4049.82,{},72393,1,"""Africa""" +2024-05-12,45410,164,"[\""Headphones\"", \""Wireless Mouse\""]",612.8,"{\""loyalty\"": \""21%\""}",135697,1,"""Europe""" +2024-11-02,45411,8999,"[\""Tablet\"", \""Phone\""]",4429.09,"{\"": \""23%\""}",104978,1,"""Europe""" +2024-02-15,45412,3773,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1758.58,{},143523,1,"""South America""" +2024-07-25,45413,331,"[\""Keyboard\""]",1265.42,{},83770,1,"""South America""" +2024-10-17,45414,2903,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2188.43,"{\""seasonal\"": \""16%\""}",142346,0,"""Africa""" +2024-05-02,45415,395,"[\""Headphones\""]",4311.75,"{\""seasonal\"": \""13%\""}",55843,0,"""Africa""" +2024-08-17,45416,9718,"[\""Wireless Mouse\"", \""Monitor\""]",2494.18,"{\""promo\"": \""25%\""}",71873,0,"""Africa""" +2024-05-25,45417,6339,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",847.16,{},201522,0,"""South America""" +2023-09-14,45418,7220,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4303.76,"{\""promo\"": \""5%\""}",269292,1,"""Africa""" +2024-02-05,45419,1132,"[\""Headphones\""]",2889.29,{},272606,0,"""Africa""" +2023-04-07,45420,5409,"[\""Wireless Mouse\""]",4506.31,{},215222,0,"""Europe""" +2024-05-29,45421,4398,"[\""Monitor\"", \""Wireless Mouse\""]",3405.4,{},201850,1,"""Africa""" +2023-11-23,45422,3620,"[\""Tablet\"", \""Phone\""]",4811.16,"{\""loyalty\"": \""29%\""}",176127,0,"""Europe""" +2023-10-31,45423,7419,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3770.0,{},216543,1,"""Asia""" +2024-05-03,45424,4819,"[\""Phone\"", \""Keyboard\""]",4047.22,{},176371,0,"""North America""" +2023-04-28,45425,4653,"[\""Keyboard\"", \""Charger\""]",1475.04,{},131864,1,"""Europe""" +2024-03-12,45426,2254,"[\""Headphones\""]",2860.68,"{\""seasonal\"": \""7%\""}",292692,1,"""Asia""" +2024-08-25,45427,2986,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3829.34,{},176037,1,"""South America""" +2023-05-10,45428,874,"[\""Headphones\"", \""Wireless Mouse\""]",4505.67,"{\""loyalty\"": \""17%\""}",291318,1,"""South America""" +2023-10-30,45429,8856,"[\""Laptop\""]",3131.62,{},294860,0,"""Europe""" +2024-05-08,45430,4794,"[\""Headphones\""]",780.73,"{\"": \""20%\""}",212430,1,"""North America""" +2024-03-25,45431,9797,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2192.58,{},72225,0,"""Europe""" +2024-09-13,45432,9583,"[\""Tablet\""]",1135.85,"{\""loyalty\"": \""25%\""}",53803,1,"""Europe""" +2023-05-24,45433,9184,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4508.09,"{\""seasonal\"": \""13%\""}",279473,1,"""North America""" +2024-11-04,45434,6419,"[\""Headphones\"", \""Charger\""]",3238.61,"{\""seasonal\"": \""13%\""}",121755,1,"""Europe""" +2023-06-16,45435,9614,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3636.6,"{\""loyalty\"": \""24%\""}",198532,1,"""North America""" +2023-07-31,45436,1033,"[\""Keyboard\""]",4825.77,"{\""promo\"": \""12%\""}",175405,0,"""Africa""" +2024-08-17,45437,6963,"[\""Laptop\"", \""Monitor\""]",1681.81,{},91008,1,"""South America""" +2023-06-23,45438,3154,"[\""Laptop\""]",2934.96,"{\""seasonal\"": \""12%\""}",141033,0,"""North America""" +2024-02-25,45439,9032,"[\""Keyboard\""]",1924.85,"{\"": \""26%\""}",290565,0,"""Europe""" +2023-07-26,45440,8002,"[\""Headphones\""]",147.74,"{\""promo\"": \""9%\""}",98185,1,"""Africa""" +2024-05-28,45441,8773,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3457.2,{},79382,0,"""Asia""" +2024-07-14,45442,4464,"[\""Charger\""]",4822.13,{},56126,1,"""Asia""" +2024-02-26,45443,6682,"[\""Monitor\""]",1829.76,"{\"": \""28%\""}",207060,0,"""North America""" +2023-02-09,45444,3502,"[\""Charger\""]",4765.5,"{\""promo\"": \""23%\""}",272054,0,"""South America""" +2024-08-23,45445,9396,"[\""Keyboard\""]",2704.33,"{\""promo\"": \""13%\""}",103213,0,"""North America""" +2023-01-17,45446,8676,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",90.12,"{\""promo\"": \""20%\""}",68031,1,"""Europe""" +2024-12-23,45447,5587,"[\""Charger\"", \""Phone\""]",4687.57,{},197344,1,"""Europe""" +2024-12-14,45448,6557,"[\""Tablet\"", \""Phone\""]",1873.31,{},158426,1,"""North America""" +2023-01-12,45449,2687,"[\""Phone\"", \""Headphones\""]",2277.98,{},122688,0,"""South America""" +2023-10-02,45450,5631,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",790.1,"{\"": \""30%\""}",9151,1,"""North America""" +2023-08-15,45451,8282,"[\""Monitor\""]",1016.68,"{\""promo\"": \""18%\""}",82923,1,"""North America""" +2024-11-26,45452,131,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4276.79,{},128754,0,"""Africa""" +2023-04-25,45453,9475,"[\""Monitor\"", \""Wireless Mouse\""]",750.96,{},137166,1,"""Africa""" +2023-07-20,45454,6783,"[\""Phone\""]",958.22,{},170516,0,"""South America""" +2024-01-22,45455,1909,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2900.92,{},176635,0,"""Europe""" +2023-05-20,45456,4517,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4315.31,{},269498,0,"""North America""" +2024-05-29,45457,4897,"[\""Keyboard\""]",471.3,{},149657,0,"""North America""" +2023-06-25,45458,6344,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",858.43,"{\""loyalty\"": \""23%\""}",95433,0,"""North America""" +2023-08-16,45459,9069,"[\""Laptop\""]",1532.65,{},87628,0,"""North America""" +2023-04-15,45460,963,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3035.03,{},189006,1,"""Europe""" +2023-10-03,45461,546,"[\""Phone\"", \""Laptop\""]",1358.62,{},113579,1,"""Europe""" +2023-06-14,45462,6367,"[\""Keyboard\""]",1232.2,{},290908,1,"""Asia""" +2023-04-30,45463,8834,"[\""Phone\"", \""Charger\""]",2870.47,"{\"": \""14%\""}",46736,1,"""Europe""" +2024-12-31,45464,5950,"[\""Tablet\"", \""Wireless Mouse\""]",3758.76,{},92656,0,"""Asia""" +2024-05-28,45465,3930,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",847.9,{},43809,0,"""South America""" +2023-07-09,45466,4225,"[\""Laptop\"", \""Headphones\""]",4551.65,{},186064,0,"""Europe""" +2024-10-06,45467,8214,"[\""Charger\"", \""Laptop\""]",2464.5,{},27696,1,"""Africa""" +2024-07-07,45468,9434,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",511.13,"{\""promo\"": \""9%\""}",117125,0,"""Africa""" +2023-02-02,45469,4160,"[\""Keyboard\"", \""Phone\""]",3084.21,{},19327,0,"""Europe""" +2023-07-16,45470,3734,"[\""Charger\"", \""Wireless Mouse\""]",245.54,{},135348,1,"""South America""" +2024-08-20,45471,5903,"[\""Tablet\""]",4771.32,{},81280,1,"""Europe""" +2023-07-30,45472,1211,"[\""Phone\"", \""Tablet\""]",950.75,"{\""promo\"": \""9%\""}",238773,1,"""Europe""" +2023-10-08,45473,7484,"[\""Headphones\"", \""Laptop\""]",4933.32,{},181501,0,"""Africa""" +2023-04-08,45474,7317,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2774.83,"{\""loyalty\"": \""21%\""}",245844,1,"""North America""" +2024-03-21,45475,6721,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3837.32,"{\""promo\"": \""30%\""}",102702,0,"""Europe""" +2023-09-17,45476,8874,"[\""Laptop\""]",3278.85,{},113822,1,"""North America""" +2023-05-24,45477,3110,"[\""Charger\"", \""Wireless Mouse\""]",2272.92,{},169136,1,"""Africa""" +2024-09-06,45478,9734,"[\""Laptop\""]",3033.03,"{\""promo\"": \""20%\""}",147888,1,"""Asia""" +2023-12-21,45479,9144,"[\""Wireless Mouse\"", \""Monitor\""]",3635.66,"{\"": \""30%\""}",124806,0,"""North America""" +2024-10-23,45480,5837,"[\""Keyboard\"", \""Charger\""]",4861.22,{},107927,0,"""North America""" +2023-04-12,45481,1340,"[\""Headphones\""]",851.72,{},192271,1,"""Europe""" +2023-08-17,45482,3680,"[\""Phone\""]",4068.35,{},152610,1,"""North America""" +2023-11-19,45483,8200,"[\""Keyboard\""]",3187.76,{},74644,0,"""North America""" +2024-10-14,45484,4028,"[\""Phone\""]",3546.54,"{\""promo\"": \""16%\""}",196673,1,"""Asia""" +2023-06-06,45485,9273,"[\""Phone\"", \""Wireless Mouse\""]",4104.84,{},95535,1,"""Africa""" +2024-09-25,45486,601,"[\""Wireless Mouse\""]",3414.79,{},47760,0,"""Europe""" +2023-06-11,45487,1711,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2417.58,"{\""seasonal\"": \""30%\""}",88153,0,"""Asia""" +2024-01-07,45488,3119,"[\""Keyboard\""]",3569.59,{},124927,0,"""South America""" +2024-10-17,45489,5928,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2820.21,"{\""loyalty\"": \""5%\""}",15671,1,"""Europe""" +2023-09-27,45490,8074,"[\""Monitor\"", \""Laptop\""]",841.6,{},275963,0,"""Europe""" +2024-10-22,45491,8958,"[\""Phone\"", \""Keyboard\""]",3733.47,"{\""promo\"": \""24%\""}",249268,0,"""South America""" +2023-04-16,45492,985,"[\""Phone\"", \""Headphones\""]",413.76,{},195122,1,"""Asia""" +2023-08-17,45493,5501,"[\""Phone\"", \""Headphones\""]",797.76,"{\""promo\"": \""16%\""}",68446,0,"""North America""" +2023-10-26,45494,3279,"[\""Headphones\"", \""Laptop\""]",3609.52,"{\""loyalty\"": \""22%\""}",164200,0,"""Africa""" +2023-07-29,45495,4106,"[\""Wireless Mouse\""]",4662.69,"{\"": \""20%\""}",194942,1,"""Africa""" +2024-03-20,45496,47,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2423.78,{},111295,0,"""Europe""" +2024-11-14,45497,881,"[\""Charger\"", \""Phone\"", \""Monitor\""]",88.4,"{\""loyalty\"": \""18%\""}",201340,1,"""Asia""" +2024-02-28,45498,6341,"[\""Charger\"", \""Tablet\""]",2456.3,"{\""loyalty\"": \""21%\""}",195631,0,"""North America""" +2024-02-02,45499,4203,"[\""Wireless Mouse\"", \""Laptop\""]",3338.06,"{\"": \""25%\""}",124590,1,"""Asia""" +2023-10-18,45500,828,"[\""Wireless Mouse\"", \""Charger\""]",745.82,"{\"": \""20%\""}",14703,1,"""Europe""" +2023-12-14,45501,2470,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",766.13,"{\""seasonal\"": \""12%\""}",125731,0,"""Asia""" +2024-08-02,45502,7763,"[\""Tablet\"", \""Charger\""]",2192.86,{},289154,0,"""Europe""" +2024-05-27,45503,9090,"[\""Monitor\"", \""Phone\""]",1118.27,"{\"": \""19%\""}",125486,1,"""Africa""" +2024-11-23,45504,6402,"[\""Laptop\"", \""Headphones\""]",2371.37,"{\""promo\"": \""25%\""}",79887,1,"""Europe""" +2024-06-03,45505,7058,"[\""Phone\"", \""Headphones\""]",135.32,{},31453,1,"""North America""" +2023-12-17,45506,3007,"[\""Tablet\""]",3087.59,{},236464,0,"""Asia""" +2024-04-18,45507,6195,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2402.05,"{\""seasonal\"": \""15%\""}",246996,1,"""Asia""" +2023-01-19,45508,7212,"[\""Headphones\"", \""Keyboard\""]",816.67,{},201670,1,"""South America""" +2024-10-07,45509,4072,"[\""Phone\""]",182.91,"{\""seasonal\"": \""12%\""}",50119,0,"""North America""" +2024-05-17,45510,1903,"[\""Charger\""]",1713.33,{},61252,0,"""North America""" +2024-01-01,45511,8040,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1265.87,"{\"": \""27%\""}",210526,0,"""North America""" +2023-02-24,45512,2531,"[\""Headphones\"", \""Phone\""]",2984.94,"{\""promo\"": \""30%\""}",175192,1,"""Africa""" +2024-09-30,45513,2097,"[\""Phone\""]",4320.62,"{\"": \""5%\""}",135465,1,"""Asia""" +2023-08-14,45514,2391,"[\""Phone\""]",2912.49,"{\""promo\"": \""15%\""}",261664,0,"""North America""" +2024-07-13,45515,7771,"[\""Tablet\"", \""Keyboard\""]",3032.84,"{\"": \""29%\""}",96687,1,"""Europe""" +2023-01-09,45516,7112,"[\""Wireless Mouse\""]",295.3,{},205660,1,"""South America""" +2023-05-15,45517,8790,"[\""Wireless Mouse\"", \""Laptop\""]",102.41,"{\""promo\"": \""14%\""}",50899,1,"""South America""" +2023-09-26,45518,9515,"[\""Laptop\"", \""Tablet\""]",3278.38,"{\""loyalty\"": \""21%\""}",9807,1,"""Africa""" +2024-02-08,45519,7380,"[\""Laptop\"", \""Wireless Mouse\""]",950.46,{},163544,0,"""Asia""" +2023-06-23,45520,1816,"[\""Charger\"", \""Monitor\""]",840.69,"{\""loyalty\"": \""8%\""}",112568,1,"""South America""" +2024-07-03,45521,6751,"[\""Phone\"", \""Headphones\""]",122.01,{},177249,1,"""Asia""" +2024-10-30,45522,374,"[\""Laptop\"", \""Phone\""]",712.31,{},292420,0,"""North America""" +2024-05-04,45523,2876,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4696.9,{},262611,1,"""North America""" +2024-05-24,45524,811,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2380.86,"{\""loyalty\"": \""26%\""}",65966,1,"""North America""" +2024-03-20,45525,2483,"[\""Charger\""]",2668.7,{},224302,0,"""South America""" +2024-06-01,45526,5142,"[\""Charger\"", \""Tablet\""]",3645.67,"{\""loyalty\"": \""27%\""}",90776,0,"""Europe""" +2023-10-24,45527,7232,"[\""Wireless Mouse\"", \""Monitor\""]",4772.86,{},249092,1,"""Europe""" +2024-12-27,45528,7684,"[\""Headphones\""]",4454.83,"{\"": \""19%\""}",245790,1,"""Europe""" +2023-02-14,45529,1327,"[\""Laptop\"", \""Monitor\""]",3535.6,"{\""seasonal\"": \""9%\""}",167498,1,"""Africa""" +2024-09-12,45530,3355,"[\""Tablet\""]",3009.03,{},112799,1,"""Europe""" +2024-02-23,45531,3760,"[\""Headphones\""]",950.26,{},98724,0,"""South America""" +2024-08-02,45532,6967,"[\""Headphones\"", \""Charger\""]",661.87,{},197855,0,"""Africa""" +2024-03-18,45533,876,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3283.96,{},39357,1,"""Asia""" +2024-01-16,45534,6343,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",579.01,"{\""loyalty\"": \""29%\""}",150184,1,"""South America""" +2024-11-26,45535,3326,"[\""Charger\"", \""Phone\""]",2285.98,{},176250,0,"""North America""" +2023-10-11,45536,4398,"[\""Laptop\"", \""Monitor\""]",141.73,{},253419,0,"""Asia""" +2023-12-27,45537,3041,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1555.29,{},147296,0,"""Africa""" +2024-08-31,45538,3132,"[\""Charger\""]",1004.23,{},63296,1,"""Europe""" +2023-12-09,45539,6770,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",457.44,"{\""promo\"": \""11%\""}",229171,1,"""Africa""" +2023-02-07,45540,1194,"[\""Monitor\"", \""Wireless Mouse\""]",3331.35,"{\""loyalty\"": \""27%\""}",241286,0,"""Africa""" +2024-02-07,45541,7883,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2264.26,"{\"": \""6%\""}",66493,0,"""Asia""" +2024-04-08,45542,6984,"[\""Headphones\"", \""Keyboard\""]",2640.37,{},69030,1,"""Africa""" +2023-08-19,45543,9273,"[\""Laptop\""]",4285.89,"{\""seasonal\"": \""30%\""}",198294,0,"""Africa""" +2023-10-05,45544,6600,"[\""Wireless Mouse\""]",2703.29,"{\"": \""19%\""}",119100,0,"""Africa""" +2023-02-21,45545,1006,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1422.74,"{\""promo\"": \""12%\""}",58007,1,"""Asia""" +2024-06-24,45546,7432,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1275.1,{},149284,1,"""South America""" +2023-04-26,45547,2948,"[\""Tablet\"", \""Monitor\""]",4098.98,"{\""promo\"": \""19%\""}",59830,1,"""South America""" +2023-05-19,45548,1641,"[\""Phone\"", \""Keyboard\""]",3631.35,"{\""loyalty\"": \""25%\""}",17950,1,"""Africa""" +2023-09-28,45549,2835,"[\""Laptop\"", \""Phone\""]",1024.33,{},248047,0,"""Asia""" +2023-05-10,45550,2934,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",216.34,{},206635,1,"""Africa""" +2023-03-18,45551,2432,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",79.01,"{\""seasonal\"": \""14%\""}",38145,1,"""North America""" +2023-04-25,45552,7221,"[\""Wireless Mouse\"", \""Keyboard\""]",3361.85,"{\"": \""17%\""}",295495,1,"""South America""" +2023-09-10,45553,3324,"[\""Monitor\"", \""Headphones\""]",4574.46,"{\"": \""19%\""}",208219,0,"""Africa""" +2024-11-15,45554,8146,"[\""Laptop\""]",863.92,{},117901,1,"""Asia""" +2023-06-11,45555,3021,"[\""Tablet\""]",626.99,"{\"": \""16%\""}",278859,0,"""Asia""" +2023-12-15,45556,6294,"[\""Keyboard\"", \""Headphones\""]",2019.32,"{\"": \""8%\""}",25988,1,"""Africa""" +2024-04-07,45557,1470,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2608.91,"{\""loyalty\"": \""18%\""}",12266,0,"""Africa""" +2024-11-23,45558,6954,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1948.09,"{\""seasonal\"": \""18%\""}",242851,0,"""Europe""" +2024-03-23,45559,4428,"[\""Charger\""]",828.7,{},43265,1,"""Europe""" +2023-09-14,45560,8340,"[\""Phone\""]",1569.43,{},74880,1,"""Asia""" +2023-05-04,45561,9806,"[\""Charger\"", \""Wireless Mouse\""]",4079.3,"{\""loyalty\"": \""22%\""}",231147,0,"""Africa""" +2024-08-27,45562,9054,"[\""Laptop\""]",1600.31,{},112171,1,"""Asia""" +2023-11-21,45563,9840,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3099.74,{},236823,0,"""Africa""" +2023-05-19,45564,3677,"[\""Monitor\""]",2362.08,"{\"": \""21%\""}",249238,0,"""North America""" +2023-10-06,45565,7728,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3607.74,{},7879,0,"""Africa""" +2024-09-10,45566,3086,"[\""Laptop\"", \""Phone\""]",2965.35,{},113620,1,"""North America""" +2024-05-23,45567,8653,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1508.79,"{\""promo\"": \""13%\""}",178366,1,"""Europe""" +2023-10-15,45568,5940,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4529.18,"{\""promo\"": \""9%\""}",253743,0,"""Africa""" +2023-05-22,45569,3471,"[\""Monitor\"", \""Tablet\""]",3958.52,"{\"": \""12%\""}",292196,1,"""Africa""" +2024-07-19,45570,5585,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1899.51,"{\""loyalty\"": \""25%\""}",209388,0,"""Africa""" +2023-11-23,45571,8153,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",464.1,{},100308,0,"""South America""" +2023-04-14,45572,5809,"[\""Monitor\"", \""Charger\""]",3420.09,{},80138,1,"""South America""" +2023-09-26,45573,2444,"[\""Monitor\""]",1893.31,"{\""promo\"": \""20%\""}",180338,1,"""South America""" +2023-05-03,45574,5198,"[\""Laptop\""]",1813.36,"{\""loyalty\"": \""12%\""}",86408,0,"""Europe""" +2024-07-11,45575,4239,"[\""Monitor\""]",2555.26,"{\"": \""19%\""}",287708,1,"""Asia""" +2024-12-08,45576,4241,"[\""Wireless Mouse\""]",4265.99,{},33122,0,"""South America""" +2024-12-26,45577,7818,"[\""Phone\""]",1267.74,{},103540,1,"""North America""" +2023-07-19,45578,9764,"[\""Keyboard\""]",3810.45,"{\""loyalty\"": \""16%\""}",93193,0,"""Europe""" +2024-12-30,45579,2219,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4428.94,"{\""seasonal\"": \""15%\""}",217732,1,"""Asia""" +2024-05-10,45580,3374,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3516.38,{},105553,1,"""Africa""" +2023-08-20,45581,2470,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1217.74,{},41604,0,"""Europe""" +2023-03-25,45582,6815,"[\""Headphones\""]",2921.29,{},146394,0,"""Africa""" +2023-01-01,45583,2802,"[\""Charger\""]",4879.16,"{\""seasonal\"": \""21%\""}",131218,1,"""North America""" +2024-06-06,45584,7339,"[\""Headphones\"", \""Monitor\""]",1802.67,{},13151,1,"""Africa""" +2024-01-16,45585,9613,"[\""Wireless Mouse\"", \""Keyboard\""]",3673.96,{},244006,0,"""North America""" +2024-04-11,45586,2055,"[\""Charger\""]",4020.71,{},240753,1,"""Africa""" +2023-03-04,45587,5283,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1192.58,"{\""loyalty\"": \""18%\""}",109303,1,"""Europe""" +2023-10-02,45588,8518,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",472.5,"{\""loyalty\"": \""6%\""}",230255,1,"""South America""" +2023-12-19,45589,4029,"[\""Headphones\"", \""Laptop\""]",3760.7,"{\""promo\"": \""14%\""}",233101,0,"""Europe""" +2023-04-20,45590,5141,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1511.84,{},229430,0,"""Europe""" +2023-04-21,45591,1490,"[\""Tablet\""]",4445.62,{},277975,0,"""South America""" +2023-02-06,45592,4198,"[\""Phone\""]",472.58,{},262481,1,"""South America""" +2024-04-25,45593,5493,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2069.36,"{\""seasonal\"": \""10%\""}",60093,1,"""North America""" +2024-08-22,45594,8279,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2461.19,"{\""promo\"": \""25%\""}",218727,0,"""Africa""" +2023-04-04,45595,1321,"[\""Phone\""]",1874.13,{},263012,0,"""North America""" +2023-02-17,45596,4479,"[\""Laptop\"", \""Keyboard\""]",2272.33,{},261049,1,"""North America""" +2023-01-21,45597,2125,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2849.58,"{\""promo\"": \""16%\""}",220753,0,"""South America""" +2023-07-31,45598,7963,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4562.37,"{\""promo\"": \""26%\""}",116494,0,"""South America""" +2023-04-19,45599,6170,"[\""Monitor\"", \""Keyboard\""]",2923.04,"{\""promo\"": \""14%\""}",19547,0,"""Asia""" +2024-08-16,45600,3017,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4952.49,"{\""promo\"": \""21%\""}",15722,1,"""North America""" +2024-04-04,45601,3070,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2507.08,{},283112,0,"""Africa""" +2024-01-23,45602,2414,"[\""Charger\"", \""Monitor\""]",824.27,"{\"": \""12%\""}",25204,0,"""Africa""" +2024-04-01,45603,4086,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2753.74,{},40221,1,"""South America""" +2023-12-16,45604,5751,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1379.03,"{\"": \""26%\""}",156469,1,"""North America""" +2023-06-30,45605,7321,"[\""Headphones\"", \""Keyboard\""]",1230.74,{},298106,0,"""North America""" +2024-12-18,45606,1821,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",61.5,{},233916,0,"""North America""" +2024-05-27,45607,9756,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3633.48,"{\""promo\"": \""18%\""}",257444,0,"""Europe""" +2023-08-30,45608,5959,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1485.55,"{\""seasonal\"": \""26%\""}",200701,1,"""North America""" +2023-06-27,45609,2098,"[\""Monitor\"", \""Tablet\""]",938.54,"{\"": \""13%\""}",160585,1,"""Africa""" +2024-02-06,45610,5070,"[\""Keyboard\""]",2931.01,{},244987,1,"""South America""" +2023-06-09,45611,6311,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4563.28,{},295830,0,"""Europe""" +2023-06-15,45612,9826,"[\""Tablet\"", \""Phone\""]",2100.52,{},85532,1,"""Africa""" +2024-03-25,45613,7270,"[\""Headphones\"", \""Wireless Mouse\""]",214.32,{},191589,1,"""North America""" +2024-03-12,45614,8477,"[\""Headphones\""]",2302.41,{},164935,0,"""South America""" +2023-05-18,45615,2485,"[\""Tablet\""]",2744.05,{},173464,1,"""Asia""" +2024-03-07,45616,9042,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2515.87,{},8697,1,"""South America""" +2023-10-05,45617,1518,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4819.75,"{\""promo\"": \""6%\""}",25088,0,"""Europe""" +2023-11-25,45618,1284,"[\""Tablet\""]",2588.59,{},33299,0,"""North America""" +2024-07-26,45619,1581,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4487.04,"{\"": \""22%\""}",139402,0,"""Africa""" +2024-11-20,45620,2111,"[\""Keyboard\""]",1261.5,{},69054,0,"""North America""" +2024-11-08,45621,3778,"[\""Monitor\"", \""Wireless Mouse\""]",1271.56,{},179054,1,"""South America""" +2024-04-18,45622,922,"[\""Headphones\"", \""Tablet\""]",520.18,{},165302,0,"""North America""" +2024-02-14,45623,1704,"[\""Headphones\"", \""Phone\""]",1781.83,{},219346,0,"""South America""" +2023-04-22,45624,8434,"[\""Charger\""]",716.12,{},211047,1,"""Europe""" +2023-10-20,45625,4724,"[\""Monitor\""]",4828.19,"{\"": \""15%\""}",80150,1,"""South America""" +2023-04-12,45626,6158,"[\""Tablet\"", \""Headphones\""]",3478.27,"{\""loyalty\"": \""13%\""}",253625,1,"""Europe""" +2023-01-20,45627,2663,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2022.27,"{\"": \""16%\""}",266258,0,"""Africa""" +2023-01-07,45628,6794,"[\""Headphones\"", \""Keyboard\""]",1327.43,"{\""promo\"": \""29%\""}",255703,1,"""Asia""" +2024-11-10,45629,494,"[\""Tablet\""]",1059.81,"{\""loyalty\"": \""15%\""}",227872,0,"""Europe""" +2024-03-24,45630,4412,"[\""Wireless Mouse\"", \""Phone\""]",1312.92,{},74895,0,"""Europe""" +2024-05-28,45631,893,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1092.91,{},179214,0,"""North America""" +2023-10-28,45632,2691,"[\""Wireless Mouse\""]",3272.69,"{\""seasonal\"": \""5%\""}",27332,1,"""South America""" +2023-06-18,45633,1131,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4163.02,"{\""seasonal\"": \""9%\""}",247123,0,"""Africa""" +2024-05-20,45634,9558,"[\""Laptop\""]",1466.88,{},98283,1,"""North America""" +2024-04-03,45635,5646,"[\""Keyboard\""]",2065.57,{},165001,0,"""Europe""" +2023-09-05,45636,8528,"[\""Headphones\"", \""Tablet\""]",3929.08,"{\"": \""30%\""}",212326,1,"""South America""" +2024-03-10,45637,2007,"[\""Headphones\""]",1013.08,{},260243,1,"""Africa""" +2024-02-02,45638,5101,"[\""Headphones\""]",3392.18,{},48934,1,"""North America""" +2023-06-02,45639,4674,"[\""Laptop\"", \""Keyboard\""]",2169.35,{},46971,0,"""North America""" +2024-04-27,45640,2541,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2895.12,"{\"": \""6%\""}",32431,0,"""South America""" +2024-08-23,45641,3766,"[\""Laptop\""]",253.58,"{\""promo\"": \""12%\""}",222386,1,"""Asia""" +2023-02-04,45642,830,"[\""Phone\"", \""Wireless Mouse\""]",2162.99,"{\"": \""14%\""}",198729,0,"""Asia""" +2023-12-13,45643,9764,"[\""Laptop\""]",4785.38,{},108030,0,"""North America""" +2024-07-04,45644,7945,"[\""Charger\""]",3691.51,{},139637,1,"""South America""" +2024-01-11,45645,4345,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",801.77,{},264144,0,"""North America""" +2024-06-04,45646,5587,"[\""Keyboard\""]",4718.3,{},256590,1,"""North America""" +2024-02-06,45647,8031,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2020.66,{},54845,0,"""North America""" +2023-08-23,45648,3687,"[\""Monitor\""]",3112.59,"{\"": \""15%\""}",272167,0,"""Europe""" +2024-11-02,45649,501,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",577.78,{},105553,1,"""Europe""" +2023-08-27,45650,4927,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2964.55,"{\""loyalty\"": \""27%\""}",187959,1,"""North America""" +2023-08-04,45651,1256,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3559.41,{},148071,1,"""Asia""" +2023-01-14,45652,8990,"[\""Charger\"", \""Headphones\""]",384.71,{},27176,1,"""Asia""" +2024-06-04,45653,1950,"[\""Keyboard\""]",2834.57,{},150417,1,"""South America""" +2023-02-12,45654,1297,"[\""Headphones\""]",2314.62,"{\"": \""23%\""}",250894,0,"""Asia""" +2024-10-17,45655,3998,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4971.5,"{\"": \""10%\""}",153661,0,"""Africa""" +2024-10-07,45656,5203,"[\""Charger\"", \""Laptop\""]",1083.88,{},250882,1,"""South America""" +2023-02-19,45657,636,"[\""Tablet\""]",1847.74,{},177567,0,"""Europe""" +2023-05-31,45658,1477,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",884.92,"{\""promo\"": \""25%\""}",132798,1,"""Asia""" +2024-01-08,45659,4595,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",207.95,{},124196,0,"""Africa""" +2023-11-01,45660,943,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2591.36,{},164539,1,"""North America""" +2024-03-09,45661,2064,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4706.99,{},196938,0,"""Europe""" +2023-03-29,45662,7310,"[\""Headphones\""]",544.6,"{\""promo\"": \""27%\""}",195553,1,"""South America""" +2023-11-05,45663,4551,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4022.33,"{\""seasonal\"": \""25%\""}",152101,0,"""Africa""" +2023-12-23,45664,2823,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4097.04,"{\""loyalty\"": \""5%\""}",142027,1,"""South America""" +2024-02-29,45665,4119,"[\""Monitor\"", \""Headphones\""]",510.86,"{\""seasonal\"": \""20%\""}",293303,1,"""Asia""" +2024-02-02,45666,6722,"[\""Headphones\"", \""Charger\""]",4184.5,{},60847,0,"""Asia""" +2024-10-14,45667,7037,"[\""Wireless Mouse\""]",2034.2,"{\""loyalty\"": \""28%\""}",256133,1,"""Asia""" +2023-06-18,45668,2623,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4401.2,"{\""seasonal\"": \""19%\""}",252993,0,"""Asia""" +2024-04-01,45669,9712,"[\""Tablet\""]",4049.69,{},135867,0,"""South America""" +2023-02-20,45670,2113,"[\""Keyboard\""]",3948.29,"{\""loyalty\"": \""11%\""}",288387,0,"""Asia""" +2024-06-21,45671,2180,"[\""Monitor\""]",570.42,"{\""seasonal\"": \""15%\""}",190938,0,"""Europe""" +2023-01-31,45672,236,"[\""Keyboard\""]",2683.96,{},56180,0,"""Europe""" +2024-05-22,45673,7210,"[\""Laptop\"", \""Wireless Mouse\""]",4747.64,"{\""loyalty\"": \""20%\""}",107101,0,"""North America""" +2023-12-10,45674,1436,"[\""Charger\"", \""Phone\""]",3206.16,{},103427,0,"""North America""" +2024-01-25,45675,8594,"[\""Wireless Mouse\"", \""Headphones\""]",4533.61,{},114432,1,"""Europe""" +2024-08-28,45676,5498,"[\""Monitor\""]",2474.76,{},240965,1,"""South America""" +2023-04-04,45677,1278,"[\""Wireless Mouse\"", \""Phone\""]",2945.75,"{\""seasonal\"": \""14%\""}",290193,0,"""Asia""" +2024-10-25,45678,2458,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4417.79,{},256475,0,"""Asia""" +2023-02-28,45679,5461,"[\""Monitor\""]",3560.35,{},295529,0,"""South America""" +2023-12-13,45680,6501,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4803.07,{},43729,1,"""South America""" +2024-07-23,45681,181,"[\""Phone\""]",1962.08,"{\""promo\"": \""30%\""}",172252,1,"""North America""" +2024-02-10,45682,7333,"[\""Laptop\""]",4275.96,"{\""promo\"": \""6%\""}",228232,0,"""Africa""" +2024-05-16,45683,210,"[\""Keyboard\"", \""Phone\""]",258.7,{},111984,1,"""Europe""" +2023-02-25,45684,8624,"[\""Laptop\""]",461.23,{},219996,0,"""Europe""" +2023-06-25,45685,2005,"[\""Laptop\"", \""Charger\""]",3809.24,{},74880,0,"""Europe""" +2023-06-30,45686,2852,"[\""Wireless Mouse\""]",2713.17,{},207380,0,"""Africa""" +2023-07-07,45687,8622,"[\""Charger\""]",2047.95,"{\"": \""18%\""}",209980,1,"""Asia""" +2024-08-15,45688,3492,"[\""Wireless Mouse\""]",1052.42,{},258289,1,"""Africa""" +2024-10-26,45689,7570,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1324.18,"{\"": \""8%\""}",275480,0,"""South America""" +2023-01-02,45690,8610,"[\""Charger\"", \""Monitor\""]",1155.82,"{\"": \""16%\""}",233766,1,"""South America""" +2023-09-24,45691,4571,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2373.34,{},144103,1,"""Africa""" +2024-07-09,45692,9718,"[\""Tablet\""]",4047.71,{},206551,0,"""Asia""" +2023-10-06,45693,3555,"[\""Headphones\""]",744.33,{},93036,0,"""Asia""" +2023-10-15,45694,51,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2236.63,{},114471,1,"""Asia""" +2024-07-07,45695,8434,"[\""Wireless Mouse\"", \""Monitor\""]",2095.17,"{\""loyalty\"": \""20%\""}",89679,0,"""Africa""" +2024-07-08,45696,4430,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3252.73,"{\""seasonal\"": \""7%\""}",92754,0,"""South America""" +2024-10-14,45697,2822,"[\""Laptop\""]",4580.71,{},47156,1,"""Europe""" +2023-07-29,45698,2615,"[\""Phone\"", \""Headphones\""]",988.06,"{\""loyalty\"": \""27%\""}",127282,1,"""North America""" +2023-05-15,45699,4042,"[\""Keyboard\"", \""Laptop\""]",3169.5,{},251605,0,"""Asia""" +2023-09-29,45700,5651,"[\""Laptop\""]",1538.56,"{\""seasonal\"": \""10%\""}",118926,0,"""South America""" +2023-02-06,45701,4834,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4484.19,{},4093,0,"""South America""" +2023-02-12,45702,9451,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3589.98,"{\""promo\"": \""19%\""}",278498,1,"""North America""" +2024-03-19,45703,3360,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2180.99,{},261043,1,"""North America""" +2023-01-11,45704,8890,"[\""Tablet\"", \""Headphones\""]",4684.85,"{\"": \""30%\""}",122940,1,"""North America""" +2024-04-25,45705,915,"[\""Keyboard\"", \""Headphones\""]",3635.04,"{\""seasonal\"": \""25%\""}",29392,0,"""Asia""" +2024-04-25,45706,6296,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3204.69,{},215819,1,"""North America""" +2023-06-22,45707,3315,"[\""Headphones\""]",3670.99,"{\"": \""27%\""}",193620,0,"""Europe""" +2024-01-19,45708,8813,"[\""Laptop\""]",1868.07,"{\"": \""17%\""}",183331,0,"""Europe""" +2024-05-17,45709,5721,"[\""Laptop\""]",1763.38,"{\""loyalty\"": \""10%\""}",182555,1,"""South America""" +2023-08-22,45710,635,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4694.02,{},191861,0,"""South America""" +2023-10-22,45711,7176,"[\""Keyboard\"", \""Phone\""]",4513.28,{},54632,0,"""Europe""" +2023-10-24,45712,3317,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1491.87,{},112323,1,"""South America""" +2023-07-13,45713,1394,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2228.61,{},51207,1,"""Europe""" +2024-05-07,45714,6942,"[\""Laptop\"", \""Wireless Mouse\""]",818.28,"{\""promo\"": \""27%\""}",220620,0,"""Asia""" +2024-11-01,45715,4212,"[\""Phone\"", \""Keyboard\""]",2473.56,"{\"": \""11%\""}",12468,0,"""Europe""" +2024-07-03,45716,3106,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3557.45,"{\""loyalty\"": \""21%\""}",69524,1,"""Africa""" +2023-09-11,45717,4382,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3477.71,"{\""seasonal\"": \""20%\""}",252507,1,"""North America""" +2024-03-12,45718,5528,"[\""Wireless Mouse\""]",4851.42,{},184550,1,"""Asia""" +2023-09-14,45719,3021,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",761.2,{},111626,1,"""Europe""" +2023-08-13,45720,5248,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",416.17,"{\""seasonal\"": \""24%\""}",296045,0,"""North America""" +2024-05-09,45721,9708,"[\""Tablet\""]",445.27,{},71803,1,"""Asia""" +2024-10-24,45722,8187,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3963.56,"{\"": \""17%\""}",118035,1,"""North America""" +2023-07-25,45723,9664,"[\""Charger\"", \""Phone\""]",1613.14,"{\""seasonal\"": \""7%\""}",113250,0,"""Asia""" +2023-03-15,45724,9454,"[\""Monitor\""]",2980.07,{},117608,0,"""North America""" +2023-05-03,45725,8391,"[\""Tablet\""]",1332.68,"{\""seasonal\"": \""26%\""}",74590,0,"""Asia""" +2024-07-08,45726,4148,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1041.93,"{\""promo\"": \""10%\""}",200529,1,"""North America""" +2024-08-20,45727,8693,"[\""Phone\"", \""Monitor\""]",4878.79,{},110585,1,"""Europe""" +2023-10-20,45728,3063,"[\""Laptop\"", \""Monitor\""]",3244.33,{},53709,1,"""Europe""" +2024-05-28,45729,7424,"[\""Phone\"", \""Keyboard\""]",1871.86,{},96755,0,"""Europe""" +2024-10-30,45730,7465,"[\""Tablet\"", \""Monitor\""]",2281.63,{},292261,1,"""Asia""" +2023-09-19,45731,3970,"[\""Tablet\""]",4597.55,"{\""loyalty\"": \""17%\""}",58883,1,"""Asia""" +2024-06-25,45732,7862,"[\""Laptop\""]",2778.75,"{\""loyalty\"": \""9%\""}",13039,1,"""Europe""" +2023-03-12,45733,4249,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3116.47,{},238543,0,"""North America""" +2024-02-14,45734,4050,"[\""Headphones\""]",4443.67,"{\""promo\"": \""7%\""}",229469,0,"""Asia""" +2024-04-06,45735,5822,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3846.38,"{\""seasonal\"": \""18%\""}",18864,0,"""Europe""" +2023-01-09,45736,2566,"[\""Tablet\""]",4755.09,{},245775,0,"""North America""" +2024-03-21,45737,1414,"[\""Phone\"", \""Wireless Mouse\""]",2340.48,"{\""promo\"": \""23%\""}",56971,0,"""Asia""" +2023-08-22,45738,6493,"[\""Laptop\""]",1416.41,{},38734,0,"""Asia""" +2024-11-08,45739,4658,"[\""Phone\"", \""Keyboard\""]",2317.47,{},53671,0,"""North America""" +2024-10-27,45740,8256,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4903.23,{},40128,0,"""Europe""" +2023-12-23,45741,9062,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1529.05,{},31966,1,"""South America""" +2024-07-06,45742,4338,"[\""Charger\"", \""Monitor\""]",3722.01,{},256981,0,"""Africa""" +2023-07-12,45743,5960,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1171.96,"{\"": \""29%\""}",30816,1,"""Africa""" +2023-12-24,45744,4038,"[\""Headphones\"", \""Wireless Mouse\""]",2444.96,{},189062,0,"""South America""" +2024-04-02,45745,8230,"[\""Phone\"", \""Headphones\""]",3592.65,"{\""loyalty\"": \""8%\""}",109907,0,"""South America""" +2023-09-10,45746,7257,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3482.93,{},201756,0,"""Europe""" +2023-03-12,45747,5102,"[\""Tablet\""]",2309.75,{},262579,0,"""Africa""" +2023-10-05,45748,4159,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3732.98,"{\""promo\"": \""19%\""}",56063,1,"""North America""" +2023-09-02,45749,3531,"[\""Headphones\""]",1190.06,"{\""promo\"": \""18%\""}",67449,0,"""Africa""" +2023-01-29,45750,481,"[\""Charger\"", \""Wireless Mouse\""]",2897.76,"{\""seasonal\"": \""27%\""}",31678,0,"""South America""" +2023-01-28,45751,4402,"[\""Charger\"", \""Laptop\""]",1135.57,{},97237,1,"""South America""" +2024-12-18,45752,1803,"[\""Charger\"", \""Keyboard\""]",1681.4,"{\""promo\"": \""24%\""}",81945,1,"""Europe""" +2023-08-23,45753,5107,"[\""Phone\"", \""Laptop\""]",3347.69,{},76897,0,"""Europe""" +2024-06-25,45754,4951,"[\""Keyboard\"", \""Tablet\""]",3655.18,{},239747,0,"""North America""" +2023-01-25,45755,1674,"[\""Headphones\"", \""Keyboard\""]",1652.1,{},148997,1,"""Asia""" +2023-05-04,45756,7763,"[\""Laptop\""]",2527.65,{},250972,0,"""Europe""" +2023-02-10,45757,907,"[\""Laptop\"", \""Charger\""]",1026.48,"{\""seasonal\"": \""19%\""}",296645,1,"""Europe""" +2024-07-27,45758,3429,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",517.28,{},191467,0,"""North America""" +2023-08-19,45759,3168,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4079.74,{},42745,1,"""North America""" +2023-10-20,45760,8927,"[\""Wireless Mouse\"", \""Headphones\""]",1925.23,"{\""loyalty\"": \""7%\""}",127018,0,"""South America""" +2024-09-27,45761,4306,"[\""Phone\"", \""Keyboard\""]",4278.44,{},53590,1,"""South America""" +2024-12-04,45762,3970,"[\""Headphones\""]",2315.4,{},250243,0,"""North America""" +2024-06-02,45763,2591,"[\""Headphones\""]",2022.59,{},177126,1,"""South America""" +2023-02-06,45764,5777,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2704.26,"{\"": \""7%\""}",124368,0,"""Asia""" +2023-05-13,45765,2745,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2914.63,{},41592,0,"""North America""" +2024-04-09,45766,1973,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",543.32,{},64139,1,"""Africa""" +2024-09-28,45767,4918,"[\""Tablet\"", \""Laptop\""]",3170.81,"{\""seasonal\"": \""6%\""}",156545,1,"""Africa""" +2024-12-17,45768,5039,"[\""Monitor\"", \""Laptop\""]",2013.24,{},296471,1,"""Asia""" +2023-04-10,45769,2116,"[\""Wireless Mouse\"", \""Monitor\""]",3574.35,{},189534,0,"""Asia""" +2024-01-30,45770,493,"[\""Tablet\""]",3306.52,"{\""seasonal\"": \""9%\""}",8293,1,"""Europe""" +2024-02-16,45771,2660,"[\""Headphones\"", \""Phone\""]",4421.81,{},172402,0,"""Africa""" +2024-02-14,45772,4097,"[\""Keyboard\"", \""Phone\""]",3078.97,"{\"": \""10%\""}",251361,1,"""Asia""" +2023-05-06,45773,6422,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2142.6,{},283975,1,"""South America""" +2023-04-25,45774,2590,"[\""Tablet\""]",846.73,"{\"": \""28%\""}",89965,0,"""North America""" +2023-09-20,45775,3749,"[\""Charger\""]",2966.62,{},299659,1,"""Africa""" +2023-11-28,45776,8689,"[\""Phone\"", \""Wireless Mouse\""]",3609.92,{},297229,0,"""Europe""" +2023-04-10,45777,7659,"[\""Headphones\""]",318.71,"{\"": \""27%\""}",197788,1,"""North America""" +2023-04-22,45778,4494,"[\""Monitor\"", \""Charger\""]",3663.46,{},106682,0,"""Asia""" +2024-09-01,45779,5179,"[\""Headphones\"", \""Laptop\""]",3391.31,"{\"": \""23%\""}",108956,0,"""North America""" +2023-05-17,45780,5915,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2073.9,"{\""seasonal\"": \""19%\""}",194150,0,"""South America""" +2023-04-28,45781,8246,"[\""Phone\""]",837.88,{},270128,1,"""North America""" +2023-10-11,45782,8801,"[\""Wireless Mouse\"", \""Charger\""]",1895.73,{},38445,0,"""Asia""" +2023-09-11,45783,7388,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3966.39,"{\""promo\"": \""14%\""}",73622,1,"""Europe""" +2023-04-20,45784,5251,"[\""Monitor\"", \""Laptop\""]",3729.72,{},159676,1,"""Europe""" +2023-11-01,45785,9917,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3166.42,"{\"": \""7%\""}",269092,0,"""Europe""" +2023-04-17,45786,5779,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4442.62,"{\""loyalty\"": \""15%\""}",23514,1,"""Europe""" +2023-12-10,45787,8807,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4378.21,{},79398,0,"""North America""" +2023-07-15,45788,8052,"[\""Phone\""]",1149.88,{},60533,0,"""Europe""" +2024-07-14,45789,2547,"[\""Phone\"", \""Charger\"", \""Monitor\""]",303.44,{},72365,0,"""Asia""" +2024-08-31,45790,1107,"[\""Charger\""]",1833.39,{},252423,1,"""North America""" +2023-02-24,45791,5710,"[\""Tablet\""]",1428.8,{},72743,0,"""Europe""" +2023-06-22,45792,4181,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2317.1,"{\""seasonal\"": \""6%\""}",153580,0,"""South America""" +2024-10-17,45793,7727,"[\""Wireless Mouse\""]",270.86,{},275061,0,"""South America""" +2024-07-24,45794,1693,"[\""Laptop\"", \""Wireless Mouse\""]",1006.99,"{\"": \""7%\""}",91433,0,"""Africa""" +2023-06-08,45795,2458,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1264.23,"{\""promo\"": \""18%\""}",299857,0,"""Europe""" +2024-07-18,45796,6969,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1607.19,"{\""loyalty\"": \""16%\""}",181974,1,"""South America""" +2024-08-08,45797,5263,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3931.96,{},16607,0,"""Europe""" +2024-11-13,45798,3260,"[\""Charger\""]",3158.0,{},74869,0,"""Asia""" +2023-04-17,45799,9578,"[\""Laptop\""]",3573.87,"{\""promo\"": \""26%\""}",297656,0,"""South America""" +2023-09-26,45800,6395,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4617.25,"{\"": \""13%\""}",50219,0,"""Africa""" +2024-05-16,45801,1368,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3226.83,{},19653,0,"""Africa""" +2024-04-08,45802,5946,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3421.53,"{\""promo\"": \""9%\""}",64663,1,"""South America""" +2023-02-06,45803,3814,"[\""Phone\""]",4474.19,{},139188,0,"""Africa""" +2023-08-09,45804,1084,"[\""Headphones\""]",3767.08,"{\""seasonal\"": \""9%\""}",144326,1,"""Asia""" +2023-05-21,45805,331,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2964.32,"{\""seasonal\"": \""8%\""}",242026,1,"""North America""" +2024-12-22,45806,5832,"[\""Tablet\""]",2860.57,{},94201,1,"""Europe""" +2024-06-01,45807,1675,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3513.55,"{\""promo\"": \""7%\""}",252677,0,"""North America""" +2023-06-07,45808,9789,"[\""Charger\"", \""Wireless Mouse\""]",342.74,"{\""promo\"": \""17%\""}",265100,0,"""Asia""" +2024-05-07,45809,825,"[\""Monitor\""]",3112.15,{},120539,0,"""Asia""" +2024-06-29,45810,1663,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2749.44,"{\""loyalty\"": \""5%\""}",223971,0,"""South America""" +2024-10-18,45811,7989,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4111.1,{},52912,0,"""South America""" +2024-02-16,45812,1302,"[\""Keyboard\""]",2402.11,"{\"": \""30%\""}",56814,0,"""South America""" +2024-01-25,45813,6342,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2630.63,"{\""loyalty\"": \""19%\""}",226140,1,"""Asia""" +2023-01-22,45814,9081,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1167.67,"{\"": \""13%\""}",164869,1,"""Europe""" +2023-05-17,45815,1639,"[\""Laptop\"", \""Wireless Mouse\""]",4145.91,"{\""loyalty\"": \""21%\""}",118157,1,"""North America""" +2023-11-11,45816,2203,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3606.64,{},177428,1,"""Africa""" +2023-09-21,45817,6828,"[\""Headphones\""]",4682.97,{},86715,0,"""Africa""" +2024-04-22,45818,1768,"[\""Monitor\"", \""Charger\""]",1331.88,"{\"": \""21%\""}",224669,1,"""Asia""" +2024-12-26,45819,5811,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1930.47,{},293224,0,"""South America""" +2023-12-08,45820,5147,"[\""Headphones\"", \""Keyboard\""]",292.87,"{\"": \""19%\""}",57791,0,"""Asia""" +2023-08-24,45821,7398,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4042.53,{},2009,0,"""Asia""" +2023-12-06,45822,5338,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3931.76,"{\""promo\"": \""5%\""}",26317,1,"""North America""" +2023-09-07,45823,1739,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4368.78,"{\"": \""11%\""}",29779,0,"""Africa""" +2023-08-07,45824,7825,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3794.82,"{\""seasonal\"": \""8%\""}",288127,1,"""North America""" +2024-02-03,45825,1645,"[\""Headphones\""]",953.04,"{\""promo\"": \""19%\""}",143267,0,"""Europe""" +2024-10-30,45826,4280,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4547.26,"{\""seasonal\"": \""5%\""}",261533,0,"""Asia""" +2024-07-04,45827,4882,"[\""Wireless Mouse\"", \""Tablet\""]",771.51,{},9944,0,"""South America""" +2024-03-19,45828,2887,"[\""Keyboard\"", \""Wireless Mouse\""]",319.83,{},139463,0,"""South America""" +2024-11-22,45829,2863,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1016.05,{},199114,1,"""Africa""" +2023-08-31,45830,5365,"[\""Phone\"", \""Charger\""]",4124.81,"{\""loyalty\"": \""26%\""}",153518,0,"""Asia""" +2023-05-10,45831,1124,"[\""Monitor\"", \""Phone\""]",2721.6,"{\""seasonal\"": \""21%\""}",138216,1,"""Asia""" +2024-12-12,45832,3395,"[\""Wireless Mouse\"", \""Monitor\""]",2196.39,{},24841,1,"""South America""" +2024-11-17,45833,2343,"[\""Phone\"", \""Monitor\""]",2304.01,{},116336,1,"""North America""" +2024-03-21,45834,6824,"[\""Tablet\""]",2191.78,{},192153,0,"""North America""" +2023-11-07,45835,3330,"[\""Wireless Mouse\"", \""Charger\""]",1770.26,"{\""promo\"": \""25%\""}",281455,0,"""South America""" +2024-10-12,45836,5576,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2337.19,{},200290,0,"""Africa""" +2023-07-11,45837,2758,"[\""Laptop\""]",961.19,"{\""loyalty\"": \""25%\""}",221868,1,"""Europe""" +2023-12-29,45838,4555,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3766.92,"{\""seasonal\"": \""26%\""}",246320,1,"""Asia""" +2023-12-13,45839,6692,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4300.61,{},96797,0,"""South America""" +2024-04-10,45840,5052,"[\""Keyboard\""]",2891.02,"{\""promo\"": \""15%\""}",200406,1,"""Asia""" +2024-10-21,45841,1067,"[\""Charger\"", \""Monitor\""]",4978.69,{},152660,1,"""South America""" +2024-02-17,45842,8262,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3522.84,{},148819,1,"""North America""" +2024-08-17,45843,497,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3629.79,{},59527,1,"""South America""" +2024-04-04,45844,4892,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4778.39,{},153279,1,"""Europe""" +2024-10-20,45845,1755,"[\""Wireless Mouse\""]",4893.79,"{\""loyalty\"": \""30%\""}",167116,1,"""Europe""" +2023-12-21,45846,7204,"[\""Wireless Mouse\""]",2388.05,"{\""promo\"": \""22%\""}",162116,1,"""Europe""" +2023-08-27,45847,5512,"[\""Keyboard\"", \""Tablet\""]",3774.64,{},211025,1,"""North America""" +2023-01-19,45848,6135,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3344.33,"{\"": \""21%\""}",56865,1,"""South America""" +2024-07-08,45849,6192,"[\""Phone\"", \""Tablet\""]",1023.88,"{\""seasonal\"": \""17%\""}",191758,1,"""South America""" +2024-06-25,45850,1593,"[\""Charger\""]",175.62,{},279075,1,"""Africa""" +2024-12-12,45851,5455,"[\""Tablet\"", \""Monitor\""]",466.23,{},147950,0,"""South America""" +2023-07-17,45852,8164,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1873.85,{},94212,0,"""Africa""" +2023-08-10,45853,4091,"[\""Keyboard\"", \""Laptop\""]",3858.8,{},236733,1,"""Asia""" +2024-08-16,45854,966,"[\""Keyboard\""]",3982.29,{},239640,1,"""North America""" +2024-01-22,45855,4840,"[\""Wireless Mouse\"", \""Headphones\""]",168.89,{},93956,0,"""Africa""" +2024-05-14,45856,3749,"[\""Charger\""]",4739.41,"{\""seasonal\"": \""22%\""}",34969,0,"""Asia""" +2023-07-07,45857,9485,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4279.45,{},196762,1,"""Africa""" +2024-03-04,45858,6186,"[\""Tablet\"", \""Phone\""]",4221.19,{},209297,1,"""Europe""" +2024-02-14,45859,7256,"[\""Wireless Mouse\"", \""Laptop\""]",59.59,{},151723,1,"""South America""" +2023-03-05,45860,8614,"[\""Charger\""]",301.78,{},208336,1,"""North America""" +2024-03-30,45861,8352,"[\""Laptop\"", \""Phone\""]",339.12,{},166176,0,"""Asia""" +2024-09-25,45862,2474,"[\""Keyboard\""]",1799.94,"{\""promo\"": \""29%\""}",271659,1,"""Europe""" +2024-02-11,45863,3424,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2143.47,"{\""seasonal\"": \""5%\""}",86833,1,"""Africa""" +2024-09-27,45864,4664,"[\""Headphones\"", \""Monitor\""]",4863.32,"{\"": \""7%\""}",275574,1,"""Africa""" +2023-10-23,45865,5727,"[\""Phone\"", \""Tablet\""]",3501.51,"{\"": \""25%\""}",41909,1,"""South America""" +2023-05-10,45866,5578,"[\""Headphones\"", \""Phone\""]",972.9,"{\"": \""24%\""}",284508,1,"""Asia""" +2024-11-23,45867,1260,"[\""Charger\""]",3492.93,{},19536,1,"""Asia""" +2023-04-07,45868,4756,"[\""Wireless Mouse\""]",479.81,"{\""promo\"": \""18%\""}",94055,1,"""South America""" +2023-08-04,45869,4829,"[\""Monitor\""]",4574.97,{},207592,0,"""Africa""" +2023-04-13,45870,5576,"[\""Charger\""]",1057.05,"{\"": \""27%\""}",118643,0,"""Europe""" +2024-07-16,45871,4309,"[\""Headphones\"", \""Monitor\""]",3030.68,"{\""loyalty\"": \""11%\""}",79159,1,"""South America""" +2024-07-18,45872,7460,"[\""Monitor\"", \""Tablet\""]",4130.78,{},280534,1,"""Africa""" +2023-08-17,45873,8564,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3114.18,"{\"": \""9%\""}",280288,0,"""North America""" +2023-07-27,45874,1203,"[\""Charger\""]",2938.6,{},176894,0,"""Africa""" +2024-10-22,45875,9436,"[\""Charger\"", \""Keyboard\""]",4970.22,{},199748,0,"""North America""" +2024-12-16,45876,8468,"[\""Tablet\""]",71.76,{},64441,0,"""Europe""" +2024-07-30,45877,9955,"[\""Charger\""]",2889.81,"{\""seasonal\"": \""9%\""}",277959,1,"""South America""" +2023-08-09,45878,3309,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3205.07,{},75798,1,"""Africa""" +2023-10-01,45879,4653,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2745.51,"{\"": \""27%\""}",248418,0,"""Europe""" +2024-05-02,45880,5101,"[\""Charger\"", \""Phone\""]",2691.13,{},222725,1,"""South America""" +2023-01-12,45881,9471,"[\""Monitor\"", \""Phone\""]",1794.97,{},188904,0,"""Asia""" +2024-12-02,45882,9882,"[\""Wireless Mouse\"", \""Headphones\""]",260.66,"{\""promo\"": \""19%\""}",68850,0,"""North America""" +2023-03-31,45883,4898,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4597.53,"{\""promo\"": \""18%\""}",264768,1,"""Africa""" +2023-07-31,45884,1457,"[\""Monitor\""]",3881.48,{},209920,1,"""Asia""" +2024-11-12,45885,78,"[\""Laptop\"", \""Phone\""]",4134.47,{},14575,1,"""Africa""" +2023-05-15,45886,793,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4557.89,{},119759,0,"""Africa""" +2023-09-29,45887,2068,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",798.25,{},121453,0,"""Asia""" +2024-11-05,45888,8828,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3879.66,"{\"": \""28%\""}",156896,1,"""North America""" +2023-03-04,45889,533,"[\""Wireless Mouse\""]",2763.65,{},96791,1,"""North America""" +2024-10-17,45890,2376,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1020.51,{},290837,1,"""South America""" +2023-12-23,45891,9214,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2127.43,{},121040,0,"""Asia""" +2023-06-17,45892,2604,"[\""Laptop\""]",4037.02,"{\""loyalty\"": \""26%\""}",141502,1,"""Africa""" +2024-10-10,45893,720,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3884.72,{},122821,0,"""Europe""" +2024-09-04,45894,5893,"[\""Keyboard\"", \""Phone\""]",2826.1,{},50999,1,"""Europe""" +2023-05-03,45895,1263,"[\""Phone\""]",425.47,"{\"": \""19%\""}",282987,1,"""Africa""" +2023-10-24,45896,2152,"[\""Phone\"", \""Wireless Mouse\""]",803.35,"{\""promo\"": \""28%\""}",83220,1,"""Asia""" +2024-11-16,45897,4601,"[\""Tablet\""]",4541.26,"{\""promo\"": \""22%\""}",134937,0,"""Europe""" +2023-04-30,45898,1553,"[\""Headphones\"", \""Monitor\""]",2951.25,{},197549,0,"""Africa""" +2024-02-20,45899,6211,"[\""Keyboard\""]",2490.5,"{\"": \""17%\""}",285303,1,"""Asia""" +2023-12-09,45900,5168,"[\""Monitor\""]",4779.21,{},186415,1,"""North America""" +2024-09-03,45901,3467,"[\""Monitor\"", \""Wireless Mouse\""]",2858.43,"{\""loyalty\"": \""21%\""}",65593,1,"""North America""" +2023-07-09,45902,241,"[\""Monitor\""]",3638.86,"{\"": \""30%\""}",249095,0,"""North America""" +2024-03-18,45903,6665,"[\""Headphones\""]",162.11,"{\"": \""6%\""}",64708,1,"""Asia""" +2024-10-06,45904,4908,"[\""Phone\"", \""Headphones\""]",835.87,{},263983,0,"""Asia""" +2023-04-30,45905,5944,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2537.91,{},48868,1,"""Africa""" +2024-09-05,45906,2589,"[\""Charger\"", \""Phone\""]",3592.67,"{\""seasonal\"": \""23%\""}",21731,1,"""South America""" +2024-08-23,45907,740,"[\""Keyboard\""]",1211.23,{},279817,1,"""Africa""" +2024-08-30,45908,3288,"[\""Keyboard\""]",4153.48,"{\""loyalty\"": \""19%\""}",269824,1,"""North America""" +2024-10-25,45909,8612,"[\""Laptop\""]",3892.93,"{\""loyalty\"": \""30%\""}",184656,1,"""Europe""" +2023-04-04,45910,7457,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4780.14,"{\""loyalty\"": \""18%\""}",165335,0,"""Europe""" +2023-11-13,45911,6465,"[\""Charger\""]",4471.09,"{\""seasonal\"": \""14%\""}",274719,1,"""Asia""" +2023-03-11,45912,6955,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1531.74,{},115779,1,"""Asia""" +2023-05-26,45913,657,"[\""Laptop\"", \""Tablet\""]",4978.69,"{\""seasonal\"": \""10%\""}",299832,1,"""Asia""" +2024-10-13,45914,1630,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",774.45,{},83181,0,"""North America""" +2023-04-27,45915,6073,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3371.21,{},166234,0,"""Europe""" +2024-04-30,45916,4172,"[\""Wireless Mouse\"", \""Keyboard\""]",1047.21,{},21439,0,"""Africa""" +2023-01-13,45917,6720,"[\""Charger\"", \""Headphones\""]",2224.34,{},170093,1,"""Africa""" +2023-03-23,45918,2178,"[\""Charger\""]",913.04,{},287654,1,"""Asia""" +2023-04-23,45919,405,"[\""Wireless Mouse\"", \""Phone\""]",2841.74,"{\""loyalty\"": \""21%\""}",71603,1,"""Europe""" +2024-12-02,45920,4518,"[\""Keyboard\"", \""Headphones\""]",1609.35,"{\"": \""12%\""}",170989,1,"""North America""" +2023-07-25,45921,3362,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",617.99,"{\""loyalty\"": \""28%\""}",169418,0,"""Asia""" +2023-03-02,45922,7182,"[\""Tablet\""]",751.4,"{\""loyalty\"": \""26%\""}",47193,1,"""North America""" +2024-05-06,45923,662,"[\""Wireless Mouse\"", \""Keyboard\""]",2202.4,{},275200,0,"""North America""" +2024-12-30,45924,8275,"[\""Keyboard\""]",1715.07,"{\""seasonal\"": \""30%\""}",89685,0,"""Asia""" +2023-09-14,45925,7348,"[\""Charger\""]",1437.01,{},49190,1,"""South America""" +2024-06-25,45926,1551,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4532.87,{},183243,0,"""North America""" +2024-08-11,45927,9756,"[\""Phone\""]",3298.12,{},104725,0,"""North America""" +2024-07-03,45928,2117,"[\""Wireless Mouse\""]",315.92,"{\""loyalty\"": \""24%\""}",56911,0,"""Africa""" +2024-09-28,45929,208,"[\""Keyboard\"", \""Monitor\""]",2315.55,{},37679,1,"""North America""" +2023-04-27,45930,844,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",978.86,{},267277,0,"""Europe""" +2024-03-13,45931,2429,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",173.67,{},161195,0,"""Asia""" +2023-09-09,45932,2510,"[\""Tablet\""]",293.8,{},228704,0,"""North America""" +2024-11-28,45933,7473,"[\""Keyboard\""]",4829.33,"{\""seasonal\"": \""30%\""}",153401,0,"""Africa""" +2023-05-23,45934,1319,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4274.6,"{\""promo\"": \""30%\""}",181600,0,"""North America""" +2024-07-27,45935,9345,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3180.64,"{\""loyalty\"": \""7%\""}",43909,0,"""Europe""" +2024-08-17,45936,6621,"[\""Charger\"", \""Wireless Mouse\""]",957.65,{},29971,1,"""Asia""" +2024-08-03,45937,6454,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4024.51,"{\"": \""19%\""}",35993,0,"""Asia""" +2023-02-13,45938,187,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1173.99,{},64009,0,"""Europe""" +2023-07-01,45939,7447,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2375.91,{},87185,0,"""North America""" +2024-10-09,45940,2151,"[\""Wireless Mouse\"", \""Tablet\""]",3177.67,{},163130,0,"""Africa""" +2024-11-03,45941,1289,"[\""Headphones\""]",2749.24,{},58425,0,"""Europe""" +2023-07-15,45942,5391,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",357.99,"{\""seasonal\"": \""20%\""}",104236,1,"""Europe""" +2024-05-09,45943,9683,"[\""Charger\""]",1913.52,"{\""promo\"": \""29%\""}",248195,1,"""Asia""" +2024-09-02,45944,9534,"[\""Tablet\""]",4457.57,"{\""loyalty\"": \""21%\""}",98858,1,"""North America""" +2023-01-10,45945,4937,"[\""Monitor\""]",2439.33,"{\""seasonal\"": \""10%\""}",47900,0,"""Europe""" +2024-01-21,45946,9222,"[\""Laptop\""]",2244.48,"{\"": \""9%\""}",27266,1,"""Europe""" +2024-10-31,45947,1592,"[\""Laptop\""]",581.85,"{\""seasonal\"": \""7%\""}",6155,1,"""Europe""" +2024-05-27,45948,8921,"[\""Charger\"", \""Phone\""]",345.79,"{\""seasonal\"": \""16%\""}",135982,0,"""Africa""" +2024-07-08,45949,7019,"[\""Monitor\"", \""Tablet\""]",991.35,"{\""seasonal\"": \""25%\""}",272317,1,"""South America""" +2023-03-31,45950,7673,"[\""Phone\"", \""Wireless Mouse\""]",2857.42,"{\""loyalty\"": \""11%\""}",126149,0,"""Europe""" +2024-05-16,45951,6328,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3793.44,{},186755,1,"""North America""" +2023-06-18,45952,4643,"[\""Phone\""]",2320.33,"{\""promo\"": \""25%\""}",37762,1,"""North America""" +2023-12-01,45953,6362,"[\""Charger\""]",2554.69,"{\""seasonal\"": \""8%\""}",281069,0,"""Asia""" +2023-12-10,45954,3937,"[\""Tablet\"", \""Charger\""]",3008.0,{},42695,0,"""Asia""" +2023-12-30,45955,7383,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1727.93,{},224861,1,"""Asia""" +2023-07-21,45956,9255,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3582.56,"{\""seasonal\"": \""6%\""}",138134,1,"""Africa""" +2023-01-03,45957,9369,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1623.39,"{\""loyalty\"": \""21%\""}",114820,1,"""Asia""" +2024-08-18,45958,2479,"[\""Tablet\"", \""Keyboard\""]",4205.73,"{\""promo\"": \""29%\""}",203838,0,"""North America""" +2024-06-21,45959,5869,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",735.99,{},140559,1,"""North America""" +2023-03-27,45960,4671,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1107.39,{},227278,0,"""North America""" +2023-10-29,45961,4954,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1145.95,{},70592,1,"""Africa""" +2024-01-02,45962,415,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3538.2,{},208993,1,"""Europe""" +2024-03-15,45963,3664,"[\""Monitor\"", \""Tablet\""]",635.59,"{\""seasonal\"": \""12%\""}",185744,0,"""North America""" +2024-05-22,45964,1958,"[\""Headphones\"", \""Keyboard\""]",551.98,{},255436,0,"""Asia""" +2023-09-15,45965,1865,"[\""Laptop\"", \""Monitor\""]",3071.72,"{\""seasonal\"": \""9%\""}",153127,1,"""Europe""" +2024-05-07,45966,7095,"[\""Tablet\""]",4916.62,"{\"": \""5%\""}",245103,0,"""North America""" +2024-01-01,45967,7722,"[\""Laptop\""]",4780.38,"{\""seasonal\"": \""7%\""}",190854,0,"""South America""" +2024-12-29,45968,5658,"[\""Monitor\""]",1667.05,{},203556,0,"""Africa""" +2023-02-16,45969,1276,"[\""Monitor\"", \""Laptop\""]",4108.91,"{\"": \""26%\""}",158188,1,"""Asia""" +2023-08-17,45970,8244,"[\""Keyboard\"", \""Tablet\""]",3068.04,"{\""loyalty\"": \""6%\""}",66112,1,"""South America""" +2024-05-25,45971,3996,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",388.53,{},213065,0,"""North America""" +2024-12-17,45972,7596,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",185.62,"{\""loyalty\"": \""25%\""}",159076,1,"""North America""" +2024-10-08,45973,287,"[\""Laptop\"", \""Keyboard\""]",56.09,{},185088,1,"""Europe""" +2023-02-26,45974,7007,"[\""Wireless Mouse\""]",3587.82,{},66660,1,"""South America""" +2023-06-30,45975,7682,"[\""Headphones\""]",3138.06,{},290483,0,"""Africa""" +2024-02-14,45976,7764,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",862.75,{},141532,0,"""Asia""" +2024-11-29,45977,1046,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2908.89,{},60419,1,"""Europe""" +2024-07-10,45978,3421,"[\""Phone\"", \""Charger\""]",264.96,{},176491,0,"""North America""" +2023-04-22,45979,9429,"[\""Monitor\"", \""Charger\""]",4767.81,"{\""seasonal\"": \""16%\""}",195786,0,"""North America""" +2023-07-24,45980,4123,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1558.83,"{\""seasonal\"": \""5%\""}",128776,0,"""Asia""" +2023-07-08,45981,5138,"[\""Monitor\"", \""Phone\""]",345.85,{},102303,0,"""North America""" +2024-12-04,45982,3096,"[\""Monitor\"", \""Charger\""]",4907.32,{},73416,1,"""North America""" +2023-03-02,45983,70,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2747.36,"{\"": \""25%\""}",14982,0,"""Africa""" +2023-05-29,45984,475,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3376.91,"{\""seasonal\"": \""8%\""}",73347,0,"""Europe""" +2023-04-07,45985,4540,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4346.34,"{\""seasonal\"": \""7%\""}",161900,0,"""South America""" +2023-06-03,45986,2975,"[\""Laptop\"", \""Charger\""]",2481.7,{},207170,1,"""Europe""" +2024-12-24,45987,1080,"[\""Laptop\"", \""Keyboard\""]",4742.28,{},140227,0,"""South America""" +2023-06-04,45988,7615,"[\""Wireless Mouse\""]",924.23,"{\""loyalty\"": \""9%\""}",40759,1,"""North America""" +2024-03-12,45989,5092,"[\""Monitor\"", \""Headphones\""]",251.67,"{\"": \""12%\""}",35488,1,"""South America""" +2023-12-30,45990,1622,"[\""Monitor\"", \""Tablet\""]",1744.41,"{\"": \""26%\""}",200111,0,"""Europe""" +2023-11-27,45991,4550,"[\""Keyboard\""]",4083.75,"{\""seasonal\"": \""13%\""}",297583,1,"""Africa""" +2023-06-24,45992,1176,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4866.87,"{\""loyalty\"": \""27%\""}",103776,1,"""Africa""" +2023-01-03,45993,4113,"[\""Charger\"", \""Headphones\""]",2492.65,"{\"": \""23%\""}",264206,1,"""South America""" +2023-08-22,45994,9699,"[\""Wireless Mouse\""]",3432.18,"{\""promo\"": \""5%\""}",115909,0,"""Asia""" +2024-03-22,45995,8227,"[\""Laptop\""]",4245.79,{},245777,0,"""North America""" +2024-05-13,45996,1019,"[\""Headphones\"", \""Tablet\""]",4809.0,{},184166,1,"""Asia""" +2024-08-28,45997,6839,"[\""Tablet\"", \""Monitor\""]",1660.37,"{\""promo\"": \""11%\""}",164653,1,"""Europe""" +2023-06-10,45998,7207,"[\""Phone\"", \""Charger\""]",2035.42,"{\"": \""21%\""}",172104,0,"""Europe""" +2024-05-26,45999,8742,"[\""Keyboard\"", \""Wireless Mouse\""]",2239.61,"{\""loyalty\"": \""26%\""}",173706,0,"""South America""" +2023-02-20,46000,4941,"[\""Keyboard\"", \""Monitor\""]",1917.52,{},89135,0,"""Africa""" +2024-03-22,46001,4488,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",365.71,"{\""loyalty\"": \""25%\""}",156911,0,"""Asia""" +2023-01-21,46002,7662,"[\""Headphones\"", \""Laptop\""]",4907.43,{},194676,1,"""Asia""" +2023-11-14,46003,6735,"[\""Monitor\"", \""Tablet\""]",1066.59,"{\""loyalty\"": \""28%\""}",66793,1,"""Asia""" +2024-05-08,46004,6420,"[\""Charger\"", \""Laptop\""]",4549.21,"{\"": \""28%\""}",274055,1,"""North America""" +2024-03-06,46005,3562,"[\""Laptop\""]",4278.06,"{\""loyalty\"": \""18%\""}",130026,1,"""Africa""" +2023-12-18,46006,623,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1494.88,"{\"": \""20%\""}",164908,1,"""North America""" +2023-04-07,46007,1233,"[\""Laptop\"", \""Wireless Mouse\""]",3926.79,"{\""promo\"": \""20%\""}",240171,0,"""South America""" +2023-03-03,46008,822,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",189.3,{},35447,0,"""Europe""" +2024-04-21,46009,9628,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3095.73,{},99220,1,"""North America""" +2024-10-27,46010,2763,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2265.24,"{\""promo\"": \""11%\""}",262604,1,"""Asia""" +2023-07-24,46011,6478,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3162.1,{},68398,1,"""North America""" +2023-12-17,46012,2182,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1238.3,{},222598,0,"""Europe""" +2023-06-05,46013,4126,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4347.19,"{\""seasonal\"": \""19%\""}",21859,1,"""Europe""" +2023-10-08,46014,7144,"[\""Wireless Mouse\"", \""Phone\""]",4311.26,{},248186,1,"""Africa""" +2023-10-05,46015,9788,"[\""Wireless Mouse\""]",3402.13,"{\"": \""7%\""}",167560,1,"""Europe""" +2024-12-27,46016,7583,"[\""Phone\"", \""Charger\""]",1179.45,{},242082,0,"""Europe""" +2023-01-19,46017,6766,"[\""Monitor\""]",4219.9,"{\""promo\"": \""6%\""}",233510,0,"""Asia""" +2024-02-02,46018,6477,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",932.79,"{\""promo\"": \""20%\""}",99812,0,"""North America""" +2024-10-16,46019,2085,"[\""Charger\"", \""Tablet\""]",1733.84,{},237573,0,"""Africa""" +2023-06-10,46020,6587,"[\""Headphones\""]",2907.55,"{\"": \""15%\""}",208829,0,"""South America""" +2023-06-10,46021,9339,"[\""Tablet\"", \""Laptop\""]",1921.84,{},92784,1,"""Africa""" +2023-05-09,46022,5401,"[\""Charger\""]",2994.53,"{\""seasonal\"": \""20%\""}",218917,0,"""Asia""" +2023-10-06,46023,8740,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4880.97,"{\""promo\"": \""13%\""}",187837,1,"""Europe""" +2023-02-23,46024,6998,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4690.24,{},67046,0,"""Africa""" +2024-06-27,46025,1750,"[\""Charger\""]",779.12,{},246284,1,"""Africa""" +2024-12-24,46026,916,"[\""Phone\"", \""Tablet\""]",332.34,"{\"": \""28%\""}",183897,1,"""South America""" +2023-03-23,46027,1840,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2918.69,{},83173,1,"""Africa""" +2023-10-01,46028,8202,"[\""Charger\"", \""Wireless Mouse\""]",3475.54,"{\""promo\"": \""15%\""}",185367,1,"""Asia""" +2024-12-25,46029,5254,"[\""Keyboard\"", \""Charger\""]",2733.57,{},200324,0,"""Asia""" +2023-11-16,46030,631,"[\""Headphones\"", \""Keyboard\""]",2852.62,{},33259,0,"""Africa""" +2023-11-20,46031,6726,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2906.5,"{\"": \""26%\""}",130481,0,"""Europe""" +2023-11-03,46032,2984,"[\""Monitor\"", \""Phone\""]",2225.66,"{\"": \""18%\""}",55662,0,"""Asia""" +2023-02-14,46033,979,"[\""Wireless Mouse\""]",4868.88,"{\""loyalty\"": \""28%\""}",226288,0,"""South America""" +2024-03-06,46034,6270,"[\""Keyboard\"", \""Wireless Mouse\""]",4727.89,"{\"": \""9%\""}",194412,0,"""Africa""" +2024-08-22,46035,7418,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2047.42,"{\""seasonal\"": \""27%\""}",259685,0,"""South America""" +2024-08-24,46036,3231,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4868.84,{},214708,0,"""Europe""" +2024-08-10,46037,9894,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1586.58,"{\""loyalty\"": \""22%\""}",273442,0,"""South America""" +2023-12-03,46038,7072,"[\""Monitor\"", \""Laptop\""]",3072.49,{},65118,0,"""Asia""" +2023-06-25,46039,4208,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",996.45,{},71605,1,"""North America""" +2024-01-04,46040,8711,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",447.58,{},143905,0,"""South America""" +2024-10-17,46041,4985,"[\""Monitor\"", \""Phone\""]",271.35,"{\""promo\"": \""19%\""}",153353,0,"""Europe""" +2024-04-18,46042,5471,"[\""Wireless Mouse\"", \""Laptop\""]",2409.31,{},202591,0,"""Africa""" +2023-12-26,46043,9569,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2660.21,{},179435,0,"""Africa""" +2024-11-21,46044,3406,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",854.31,"{\""seasonal\"": \""25%\""}",204374,1,"""Asia""" +2023-06-15,46045,6832,"[\""Laptop\""]",2116.74,"{\"": \""14%\""}",123302,0,"""Asia""" +2023-07-29,46046,3842,"[\""Charger\"", \""Keyboard\""]",909.37,"{\""promo\"": \""14%\""}",150696,0,"""South America""" +2024-07-01,46047,6198,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2845.7,"{\""promo\"": \""23%\""}",137183,0,"""Africa""" +2024-04-24,46048,2486,"[\""Tablet\"", \""Laptop\""]",3621.1,{},215152,1,"""Africa""" +2024-05-03,46049,4941,"[\""Laptop\""]",1458.43,"{\""promo\"": \""6%\""}",294468,1,"""Africa""" +2024-10-09,46050,1953,"[\""Keyboard\"", \""Tablet\""]",3220.96,"{\""promo\"": \""13%\""}",207863,1,"""North America""" +2024-01-12,46051,9299,"[\""Phone\""]",4496.21,"{\""seasonal\"": \""30%\""}",20782,1,"""North America""" +2024-11-14,46052,8288,"[\""Headphones\"", \""Laptop\""]",2063.33,{},144715,1,"""Europe""" +2023-05-20,46053,6168,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3299.26,"{\""seasonal\"": \""13%\""}",136326,0,"""South America""" +2023-07-09,46054,832,"[\""Monitor\""]",4512.22,"{\""promo\"": \""24%\""}",113671,1,"""South America""" +2023-11-11,46055,9155,"[\""Keyboard\""]",1278.42,{},128237,1,"""South America""" +2024-01-08,46056,4637,"[\""Wireless Mouse\"", \""Charger\""]",799.99,"{\""seasonal\"": \""10%\""}",210234,0,"""South America""" +2023-06-28,46057,1398,"[\""Keyboard\"", \""Phone\""]",4443.44,{},102465,0,"""Africa""" +2024-12-23,46058,861,"[\""Phone\"", \""Tablet\""]",1285.36,"{\""promo\"": \""11%\""}",167172,1,"""Africa""" +2023-12-15,46059,305,"[\""Charger\""]",592.01,{},294827,1,"""Europe""" +2023-03-12,46060,6333,"[\""Keyboard\"", \""Wireless Mouse\""]",1212.8,"{\"": \""19%\""}",145154,1,"""Asia""" +2024-11-03,46061,3885,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2326.79,"{\"": \""21%\""}",287043,1,"""South America""" +2023-07-30,46062,5854,"[\""Headphones\""]",2425.8,"{\""seasonal\"": \""23%\""}",54637,0,"""North America""" +2023-07-16,46063,8383,"[\""Wireless Mouse\""]",1967.59,"{\""loyalty\"": \""7%\""}",99300,1,"""Africa""" +2023-08-26,46064,7395,"[\""Monitor\""]",1183.65,"{\"": \""17%\""}",236636,0,"""North America""" +2024-01-29,46065,7831,"[\""Laptop\"", \""Wireless Mouse\""]",3742.94,{},185789,1,"""Europe""" +2024-10-25,46066,6433,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2808.03,"{\""promo\"": \""14%\""}",204793,0,"""North America""" +2024-09-23,46067,7287,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2344.16,{},140956,1,"""Asia""" +2024-04-16,46068,4679,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4902.71,{},135791,0,"""North America""" +2024-04-22,46069,8421,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4505.05,"{\""loyalty\"": \""22%\""}",53760,0,"""Asia""" +2024-03-24,46070,1941,"[\""Keyboard\"", \""Charger\""]",520.3,"{\""promo\"": \""7%\""}",94476,1,"""Asia""" +2023-06-28,46071,6787,"[\""Laptop\""]",3900.85,{},127774,0,"""Europe""" +2024-12-27,46072,7539,"[\""Laptop\"", \""Charger\""]",3226.23,{},31333,0,"""North America""" +2024-07-28,46073,3226,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1886.9,"{\""loyalty\"": \""26%\""}",96139,0,"""South America""" +2023-10-27,46074,5943,"[\""Monitor\""]",3116.81,"{\"": \""13%\""}",144194,1,"""North America""" +2024-12-25,46075,9546,"[\""Wireless Mouse\""]",1606.72,{},175803,0,"""Europe""" +2024-10-22,46076,4147,"[\""Wireless Mouse\"", \""Headphones\""]",4553.38,"{\""loyalty\"": \""28%\""}",193911,1,"""Europe""" +2023-09-05,46077,1391,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2250.69,{},65234,0,"""South America""" +2024-11-28,46078,4829,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2090.42,"{\""seasonal\"": \""13%\""}",7679,0,"""South America""" +2024-04-08,46079,2531,"[\""Headphones\""]",1268.98,{},61968,1,"""Europe""" +2024-10-17,46080,6228,"[\""Laptop\"", \""Headphones\""]",2674.08,{},287840,0,"""North America""" +2024-06-08,46081,7748,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4942.81,"{\""loyalty\"": \""23%\""}",179343,0,"""Africa""" +2023-10-07,46082,6646,"[\""Laptop\"", \""Phone\"", \""Charger\""]",447.85,{},272360,1,"""South America""" +2024-08-08,46083,2084,"[\""Phone\""]",3490.42,"{\""seasonal\"": \""19%\""}",36116,1,"""Asia""" +2024-06-10,46084,6268,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2221.56,{},205132,1,"""Europe""" +2024-07-08,46085,5291,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4927.39,{},155952,1,"""Europe""" +2023-09-22,46086,1375,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",498.03,{},88363,1,"""Africa""" +2024-01-31,46087,2133,"[\""Wireless Mouse\""]",2526.46,"{\""promo\"": \""5%\""}",17353,1,"""South America""" +2023-05-09,46088,3237,"[\""Wireless Mouse\"", \""Tablet\""]",4635.51,{},160099,1,"""Europe""" +2024-06-26,46089,3403,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2998.9,{},230586,1,"""South America""" +2024-05-04,46090,5857,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3443.81,{},5818,1,"""Africa""" +2024-09-24,46091,7255,"[\""Monitor\"", \""Wireless Mouse\""]",3374.87,{},66115,1,"""South America""" +2023-05-09,46092,6325,"[\""Tablet\"", \""Headphones\""]",4174.55,{},250019,1,"""South America""" +2024-08-18,46093,9858,"[\""Monitor\""]",4302.44,{},253516,0,"""Asia""" +2024-08-27,46094,514,"[\""Headphones\"", \""Wireless Mouse\""]",3247.61,{},98117,1,"""South America""" +2023-12-16,46095,7523,"[\""Wireless Mouse\""]",3312.47,{},145699,1,"""North America""" +2024-05-04,46096,5478,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1423.39,"{\""promo\"": \""24%\""}",149378,0,"""Africa""" +2024-02-29,46097,5061,"[\""Monitor\"", \""Phone\""]",1108.11,"{\""seasonal\"": \""9%\""}",290301,0,"""Africa""" +2023-08-05,46098,3187,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3759.49,"{\""loyalty\"": \""7%\""}",184323,0,"""Africa""" +2024-11-28,46099,9293,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",150.87,{},295999,1,"""South America""" +2024-11-11,46100,4173,"[\""Tablet\"", \""Wireless Mouse\""]",221.11,{},55570,0,"""North America""" +2023-02-18,46101,8602,"[\""Tablet\"", \""Monitor\""]",3548.93,"{\""seasonal\"": \""28%\""}",186650,1,"""Europe""" +2024-02-12,46102,5127,"[\""Charger\""]",395.36,"{\"": \""18%\""}",45920,0,"""Europe""" +2023-01-07,46103,6560,"[\""Wireless Mouse\"", \""Laptop\""]",4040.49,{},201294,0,"""North America""" +2023-01-25,46104,5805,"[\""Keyboard\"", \""Charger\""]",86.29,"{\"": \""16%\""}",262551,1,"""Asia""" +2024-08-24,46105,2445,"[\""Charger\""]",2944.36,{},82559,1,"""Europe""" +2024-05-31,46106,8822,"[\""Headphones\"", \""Monitor\""]",1921.61,"{\""seasonal\"": \""25%\""}",186967,0,"""North America""" +2023-01-30,46107,716,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1025.36,{},163545,1,"""Asia""" +2023-01-26,46108,9640,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3451.55,{},2725,1,"""South America""" +2023-10-04,46109,5770,"[\""Charger\"", \""Headphones\""]",1624.28,{},124950,0,"""Africa""" +2023-07-27,46110,7541,"[\""Charger\""]",315.13,"{\""seasonal\"": \""17%\""}",130931,1,"""Africa""" +2024-08-21,46111,1847,"[\""Headphones\""]",1354.94,"{\""seasonal\"": \""27%\""}",218114,1,"""South America""" +2023-01-09,46112,1384,"[\""Monitor\""]",1983.5,{},1740,0,"""North America""" +2024-06-28,46113,2116,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",606.15,{},184156,1,"""Africa""" +2023-06-04,46114,4691,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1076.93,"{\""loyalty\"": \""29%\""}",9646,0,"""North America""" +2023-12-09,46115,6328,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1057.4,{},271209,0,"""Asia""" +2023-12-07,46116,8368,"[\""Keyboard\"", \""Tablet\""]",4626.12,{},178514,0,"""Europe""" +2023-08-04,46117,9566,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3952.43,{},195328,0,"""Europe""" +2023-08-11,46118,5104,"[\""Laptop\""]",1395.24,{},84415,0,"""Asia""" +2023-03-07,46119,9994,"[\""Tablet\""]",2430.21,"{\""seasonal\"": \""17%\""}",138638,1,"""South America""" +2024-07-03,46120,7230,"[\""Charger\"", \""Phone\""]",4052.4,{},237709,0,"""Africa""" +2024-06-02,46121,1384,"[\""Wireless Mouse\""]",449.11,{},265175,1,"""South America""" +2023-06-08,46122,6946,"[\""Charger\""]",1802.09,"{\"": \""20%\""}",62355,0,"""South America""" +2023-06-02,46123,9333,"[\""Wireless Mouse\""]",917.12,"{\"": \""5%\""}",98353,0,"""North America""" +2023-10-24,46124,5101,"[\""Laptop\"", \""Wireless Mouse\""]",2114.73,"{\""promo\"": \""15%\""}",127936,0,"""Africa""" +2023-11-16,46125,2415,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3678.3,{},58260,1,"""Africa""" +2023-02-20,46126,4851,"[\""Phone\"", \""Tablet\"", \""Charger\""]",86.37,{},90710,0,"""North America""" +2023-08-23,46127,206,"[\""Tablet\"", \""Headphones\""]",4768.1,"{\""seasonal\"": \""29%\""}",156530,0,"""South America""" +2023-07-06,46128,3073,"[\""Laptop\""]",712.48,{},79872,0,"""Asia""" +2023-06-16,46129,7043,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2082.4,{},237865,0,"""Asia""" +2023-08-30,46130,9306,"[\""Monitor\"", \""Phone\""]",2940.25,{},121321,1,"""Africa""" +2024-05-17,46131,3516,"[\""Tablet\""]",1657.82,"{\""loyalty\"": \""11%\""}",61894,1,"""Africa""" +2023-09-01,46132,5766,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4313.21,"{\""promo\"": \""14%\""}",142562,0,"""Europe""" +2023-01-27,46133,8469,"[\""Headphones\""]",4650.22,"{\""seasonal\"": \""28%\""}",248921,0,"""Asia""" +2024-02-19,46134,7650,"[\""Tablet\""]",3741.7,"{\""promo\"": \""29%\""}",92652,0,"""Africa""" +2024-08-07,46135,1639,"[\""Phone\"", \""Keyboard\""]",312.76,"{\""loyalty\"": \""23%\""}",250313,0,"""South America""" +2023-05-30,46136,1816,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2361.25,"{\""seasonal\"": \""11%\""}",97370,0,"""North America""" +2024-03-17,46137,8336,"[\""Laptop\"", \""Keyboard\""]",2270.95,{},83858,0,"""Africa""" +2023-03-21,46138,4340,"[\""Tablet\"", \""Charger\""]",3537.68,{},295138,0,"""South America""" +2023-08-11,46139,8624,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3331.73,"{\"": \""11%\""}",75173,0,"""North America""" +2024-08-30,46140,1962,"[\""Monitor\""]",200.0,"{\""loyalty\"": \""19%\""}",184353,1,"""South America""" +2024-01-22,46141,4866,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",194.75,{},128222,0,"""South America""" +2023-06-28,46142,3275,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2022.79,{},251868,1,"""Africa""" +2023-10-16,46143,5393,"[\""Headphones\""]",1208.04,{},138631,1,"""Asia""" +2024-01-21,46144,5704,"[\""Phone\"", \""Keyboard\""]",3008.32,"{\""promo\"": \""20%\""}",295079,0,"""Africa""" +2023-09-20,46145,4641,"[\""Monitor\""]",2558.51,"{\"": \""30%\""}",79746,1,"""Africa""" +2024-08-27,46146,263,"[\""Monitor\""]",2926.48,{},240943,1,"""North America""" +2024-11-27,46147,7650,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4320.67,"{\""promo\"": \""20%\""}",125007,0,"""Africa""" +2023-11-17,46148,6334,"[\""Monitor\"", \""Headphones\""]",1842.56,"{\""promo\"": \""10%\""}",280386,1,"""Asia""" +2024-11-16,46149,7060,"[\""Wireless Mouse\"", \""Headphones\""]",2076.87,"{\""promo\"": \""24%\""}",91584,0,"""Europe""" +2023-10-20,46150,4976,"[\""Charger\"", \""Laptop\""]",1341.84,"{\"": \""16%\""}",208167,0,"""Asia""" +2024-12-22,46151,355,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3740.76,{},65943,1,"""Europe""" +2024-04-26,46152,6550,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",824.08,"{\""promo\"": \""22%\""}",243593,1,"""South America""" +2024-04-01,46153,2199,"[\""Tablet\"", \""Wireless Mouse\""]",4167.68,"{\""seasonal\"": \""26%\""}",108990,1,"""North America""" +2023-02-03,46154,6314,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1280.33,"{\""loyalty\"": \""26%\""}",273833,0,"""Europe""" +2023-08-23,46155,9130,"[\""Charger\""]",2895.02,"{\""loyalty\"": \""8%\""}",80011,0,"""Europe""" +2023-05-09,46156,2328,"[\""Phone\""]",3376.93,"{\"": \""13%\""}",150313,1,"""Africa""" +2024-02-28,46157,8549,"[\""Headphones\""]",302.6,{},233222,1,"""Europe""" +2023-07-19,46158,2197,"[\""Tablet\""]",1895.86,{},39901,1,"""Africa""" +2024-08-28,46159,461,"[\""Monitor\"", \""Laptop\""]",1600.7,{},243859,1,"""North America""" +2023-04-17,46160,61,"[\""Headphones\""]",1810.43,"{\""seasonal\"": \""18%\""}",254880,0,"""North America""" +2024-11-16,46161,6779,"[\""Headphones\"", \""Phone\""]",745.81,{},64333,1,"""South America""" +2024-01-22,46162,7768,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",273.2,{},73215,1,"""Europe""" +2024-08-28,46163,1819,"[\""Wireless Mouse\""]",2900.77,"{\""promo\"": \""8%\""}",237510,0,"""Europe""" +2023-04-12,46164,5484,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",211.22,"{\"": \""21%\""}",186440,0,"""North America""" +2023-02-01,46165,5454,"[\""Tablet\"", \""Monitor\""]",255.09,{},21850,0,"""South America""" +2024-01-13,46166,7632,"[\""Monitor\""]",565.65,{},247092,1,"""South America""" +2023-06-22,46167,4578,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",437.33,{},266337,1,"""Africa""" +2023-03-05,46168,956,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2767.01,"{\""loyalty\"": \""28%\""}",100697,0,"""North America""" +2023-12-01,46169,4553,"[\""Charger\"", \""Headphones\""]",4956.69,{},70004,0,"""South America""" +2024-11-02,46170,7261,"[\""Headphones\""]",1781.13,"{\"": \""12%\""}",273423,0,"""Africa""" +2024-06-02,46171,41,"[\""Laptop\"", \""Monitor\""]",1446.34,"{\""promo\"": \""19%\""}",74688,1,"""South America""" +2024-04-02,46172,2706,"[\""Laptop\"", \""Wireless Mouse\""]",3653.11,{},26955,1,"""South America""" +2024-04-11,46173,9265,"[\""Phone\""]",2451.97,"{\"": \""28%\""}",297002,1,"""South America""" +2024-08-27,46174,4694,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2241.92,"{\""seasonal\"": \""16%\""}",31644,1,"""North America""" +2024-10-27,46175,9720,"[\""Headphones\"", \""Tablet\""]",147.12,{},221273,0,"""North America""" +2023-03-11,46176,3632,"[\""Headphones\"", \""Keyboard\""]",3105.25,{},104402,1,"""Africa""" +2024-06-04,46177,637,"[\""Tablet\"", \""Headphones\""]",3335.71,{},71564,0,"""Asia""" +2023-01-30,46178,8412,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4216.78,{},60298,1,"""Asia""" +2023-03-03,46179,5545,"[\""Monitor\""]",4660.04,"{\""seasonal\"": \""28%\""}",178500,1,"""North America""" +2023-12-29,46180,591,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",546.01,"{\""seasonal\"": \""25%\""}",272650,0,"""Asia""" +2024-03-13,46181,8869,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",453.58,{},156027,1,"""South America""" +2023-09-20,46182,9541,"[\""Keyboard\"", \""Tablet\""]",4099.67,{},149130,1,"""Africa""" +2024-09-07,46183,1018,"[\""Phone\"", \""Headphones\""]",989.09,"{\""loyalty\"": \""23%\""}",197272,1,"""South America""" +2024-04-20,46184,8413,"[\""Keyboard\""]",1110.69,{},220881,1,"""Europe""" +2024-12-04,46185,2606,"[\""Charger\"", \""Phone\""]",2758.37,"{\""seasonal\"": \""21%\""}",93519,1,"""South America""" +2023-09-09,46186,8371,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",450.11,"{\""promo\"": \""7%\""}",218214,1,"""Asia""" +2024-12-10,46187,762,"[\""Headphones\""]",240.74,"{\""seasonal\"": \""26%\""}",12583,0,"""South America""" +2024-08-25,46188,6452,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",430.51,{},176097,0,"""Asia""" +2024-02-04,46189,4616,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3277.78,{},15561,1,"""Asia""" +2024-04-23,46190,9823,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1487.36,"{\"": \""13%\""}",200036,0,"""Europe""" +2023-05-09,46191,5498,"[\""Tablet\""]",1863.01,"{\""seasonal\"": \""9%\""}",253629,0,"""South America""" +2024-11-11,46192,9508,"[\""Headphones\"", \""Keyboard\""]",3711.12,"{\""loyalty\"": \""22%\""}",237169,0,"""Africa""" +2024-09-06,46193,5994,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",384.65,"{\""seasonal\"": \""6%\""}",92012,1,"""Asia""" +2023-10-28,46194,4998,"[\""Wireless Mouse\"", \""Laptop\""]",1892.68,{},159070,0,"""North America""" +2024-02-03,46195,2301,"[\""Keyboard\""]",338.66,{},273068,1,"""Europe""" +2023-02-06,46196,8527,"[\""Tablet\"", \""Wireless Mouse\""]",1706.08,{},86749,1,"""Asia""" +2024-06-20,46197,5514,"[\""Monitor\""]",2923.79,"{\"": \""9%\""}",32757,1,"""North America""" +2023-10-28,46198,1695,"[\""Laptop\""]",3193.28,"{\""loyalty\"": \""28%\""}",158741,1,"""North America""" +2024-07-03,46199,7679,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3137.52,"{\""loyalty\"": \""21%\""}",200140,1,"""South America""" +2024-12-20,46200,9601,"[\""Monitor\""]",1418.97,{},176785,0,"""North America""" +2023-02-27,46201,5289,"[\""Headphones\""]",3782.17,"{\""promo\"": \""29%\""}",291459,0,"""Europe""" +2024-04-01,46202,4034,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4500.62,{},112698,1,"""Asia""" +2024-03-21,46203,318,"[\""Keyboard\"", \""Charger\""]",2245.04,{},186651,1,"""Europe""" +2024-08-12,46204,1158,"[\""Keyboard\"", \""Monitor\""]",1700.17,{},237907,1,"""Europe""" +2023-03-17,46205,4151,"[\""Headphones\""]",3290.31,"{\""loyalty\"": \""30%\""}",63843,1,"""Africa""" +2023-01-27,46206,8097,"[\""Tablet\"", \""Keyboard\""]",394.21,{},25988,1,"""South America""" +2023-01-11,46207,8364,"[\""Charger\"", \""Monitor\""]",3358.77,"{\"": \""8%\""}",205403,0,"""Asia""" +2024-12-12,46208,8891,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2499.73,"{\""promo\"": \""5%\""}",201632,1,"""Asia""" +2024-03-21,46209,3512,"[\""Charger\""]",2928.69,"{\"": \""19%\""}",160526,1,"""North America""" +2023-10-31,46210,4497,"[\""Monitor\""]",190.92,{},30576,1,"""South America""" +2023-03-16,46211,3618,"[\""Tablet\""]",3957.1,{},170162,0,"""South America""" +2023-03-05,46212,4541,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3366.6,{},163174,1,"""North America""" +2023-10-29,46213,4931,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3230.29,{},249072,0,"""Asia""" +2024-09-17,46214,1819,"[\""Monitor\"", \""Keyboard\""]",1854.73,"{\"": \""7%\""}",282025,1,"""Asia""" +2023-05-13,46215,7093,"[\""Headphones\""]",2620.41,"{\""seasonal\"": \""17%\""}",165510,0,"""Europe""" +2023-08-03,46216,6588,"[\""Headphones\"", \""Keyboard\""]",2866.2,"{\""loyalty\"": \""11%\""}",202888,1,"""Europe""" +2024-08-18,46217,4688,"[\""Headphones\"", \""Wireless Mouse\""]",551.81,"{\""promo\"": \""12%\""}",82597,0,"""Asia""" +2023-08-12,46218,3323,"[\""Monitor\""]",804.85,{},171870,1,"""Europe""" +2024-02-18,46219,5391,"[\""Keyboard\"", \""Tablet\""]",4728.18,"{\"": \""25%\""}",174297,1,"""Europe""" +2024-12-03,46220,6184,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4696.17,"{\"": \""19%\""}",88921,1,"""Europe""" +2023-05-03,46221,960,"[\""Wireless Mouse\"", \""Keyboard\""]",4174.69,"{\""loyalty\"": \""30%\""}",74161,0,"""North America""" +2024-04-01,46222,2461,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1451.52,"{\""promo\"": \""15%\""}",96742,0,"""Asia""" +2024-09-19,46223,8421,"[\""Laptop\"", \""Phone\""]",4783.63,{},224959,0,"""Europe""" +2024-05-06,46224,9896,"[\""Phone\""]",2512.01,{},180962,0,"""Europe""" +2024-06-23,46225,9994,"[\""Phone\""]",3546.21,"{\""promo\"": \""18%\""}",144928,1,"""Europe""" +2023-07-14,46226,7767,"[\""Charger\"", \""Headphones\""]",3789.95,"{\""promo\"": \""10%\""}",170136,0,"""South America""" +2023-06-11,46227,8243,"[\""Wireless Mouse\""]",4606.4,"{\""seasonal\"": \""24%\""}",6450,0,"""Africa""" +2023-02-26,46228,6977,"[\""Keyboard\"", \""Tablet\""]",2091.17,"{\""promo\"": \""28%\""}",206694,0,"""North America""" +2023-04-16,46229,9708,"[\""Monitor\""]",3908.32,{},178349,0,"""South America""" +2023-10-17,46230,644,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3582.14,{},286698,1,"""Asia""" +2024-12-25,46231,8893,"[\""Keyboard\""]",4753.86,{},30236,0,"""South America""" +2023-05-04,46232,7150,"[\""Charger\""]",4070.41,"{\""loyalty\"": \""30%\""}",128394,1,"""Africa""" +2024-03-17,46233,5141,"[\""Laptop\"", \""Charger\""]",3893.05,"{\"": \""30%\""}",241947,1,"""Asia""" +2024-05-26,46234,9352,"[\""Monitor\""]",3701.72,"{\""loyalty\"": \""25%\""}",75237,1,"""Africa""" +2024-11-12,46235,9424,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4835.82,{},181251,0,"""Asia""" +2023-04-19,46236,8805,"[\""Charger\""]",2158.27,"{\""promo\"": \""11%\""}",278818,1,"""North America""" +2024-08-20,46237,8865,"[\""Phone\"", \""Charger\""]",4551.5,{},68835,1,"""Asia""" +2023-01-09,46238,1909,"[\""Keyboard\""]",3799.05,"{\""loyalty\"": \""29%\""}",166221,0,"""North America""" +2023-08-11,46239,1636,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1913.99,{},251399,1,"""South America""" +2023-09-08,46240,8782,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3091.63,"{\""promo\"": \""7%\""}",42995,1,"""South America""" +2024-07-30,46241,1441,"[\""Wireless Mouse\"", \""Keyboard\""]",1663.31,"{\""loyalty\"": \""16%\""}",292735,1,"""North America""" +2024-03-22,46242,9603,"[\""Laptop\"", \""Wireless Mouse\""]",2463.67,"{\"": \""17%\""}",21551,0,"""North America""" +2023-08-26,46243,6996,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3842.26,{},16722,1,"""Europe""" +2023-01-27,46244,6073,"[\""Keyboard\"", \""Phone\""]",2440.77,"{\""promo\"": \""15%\""}",273612,1,"""Europe""" +2023-11-20,46245,1445,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1944.31,"{\""seasonal\"": \""15%\""}",143418,0,"""Africa""" +2023-01-19,46246,3831,"[\""Laptop\"", \""Monitor\""]",4294.68,"{\""loyalty\"": \""22%\""}",1634,1,"""North America""" +2023-05-18,46247,8440,"[\""Monitor\""]",279.96,{},238114,0,"""South America""" +2024-08-07,46248,2292,"[\""Wireless Mouse\"", \""Headphones\""]",4915.44,{},191504,0,"""North America""" +2023-08-13,46249,9763,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2136.17,{},120004,1,"""South America""" +2023-05-31,46250,8645,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",838.87,{},89201,1,"""Europe""" +2024-11-11,46251,6560,"[\""Monitor\""]",2278.96,"{\""promo\"": \""16%\""}",124073,1,"""Europe""" +2023-04-07,46252,7076,"[\""Phone\"", \""Laptop\""]",493.46,{},49362,1,"""Asia""" +2024-11-01,46253,7183,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",370.99,{},139913,0,"""Asia""" +2023-07-19,46254,5067,"[\""Tablet\""]",2409.46,"{\"": \""25%\""}",283956,0,"""North America""" +2023-12-12,46255,636,"[\""Headphones\""]",3209.71,"{\""seasonal\"": \""15%\""}",146954,1,"""Asia""" +2024-06-18,46256,9825,"[\""Laptop\""]",2401.24,"{\"": \""22%\""}",82657,1,"""Africa""" +2023-05-25,46257,3147,"[\""Keyboard\""]",2933.39,{},97863,0,"""Africa""" +2023-07-28,46258,4122,"[\""Wireless Mouse\"", \""Laptop\""]",2948.22,"{\"": \""8%\""}",148655,1,"""Europe""" +2024-04-02,46259,9194,"[\""Keyboard\""]",1075.91,{},182822,1,"""Africa""" +2023-04-22,46260,3661,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3313.9,{},271500,0,"""Africa""" +2023-08-10,46261,4730,"[\""Laptop\""]",841.53,{},188217,1,"""Asia""" +2024-04-13,46262,8173,"[\""Phone\"", \""Laptop\""]",4802.61,{},17834,1,"""Europe""" +2024-09-04,46263,7374,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4405.52,{},114389,0,"""Asia""" +2024-05-26,46264,728,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4654.08,"{\"": \""21%\""}",84861,1,"""North America""" +2023-01-27,46265,346,"[\""Laptop\""]",4575.54,"{\""loyalty\"": \""29%\""}",57044,1,"""Africa""" +2023-06-09,46266,6008,"[\""Headphones\"", \""Charger\""]",886.1,{},175309,0,"""North America""" +2024-07-16,46267,6578,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",785.66,"{\""loyalty\"": \""16%\""}",124254,1,"""South America""" +2023-12-01,46268,9807,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",56.57,{},140687,1,"""Asia""" +2024-11-10,46269,7535,"[\""Keyboard\"", \""Monitor\""]",3944.69,{},144455,1,"""Africa""" +2024-04-19,46270,3120,"[\""Tablet\""]",654.3,"{\""promo\"": \""30%\""}",208327,0,"""South America""" +2023-05-28,46271,5602,"[\""Keyboard\"", \""Charger\""]",4151.74,"{\""loyalty\"": \""13%\""}",222711,0,"""Africa""" +2023-03-17,46272,9064,"[\""Monitor\"", \""Keyboard\""]",235.96,"{\""loyalty\"": \""29%\""}",273182,1,"""Europe""" +2024-07-04,46273,9086,"[\""Monitor\"", \""Laptop\""]",2774.0,"{\""loyalty\"": \""8%\""}",187611,1,"""Asia""" +2023-04-02,46274,8656,"[\""Monitor\""]",1547.16,"{\""loyalty\"": \""20%\""}",240333,0,"""Europe""" +2023-05-31,46275,6528,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4063.28,"{\""promo\"": \""22%\""}",240495,0,"""Europe""" +2023-10-27,46276,2837,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",318.66,"{\""promo\"": \""28%\""}",152188,0,"""South America""" +2023-03-14,46277,1923,"[\""Keyboard\"", \""Tablet\""]",2206.94,"{\""loyalty\"": \""14%\""}",238801,0,"""Africa""" +2023-06-22,46278,2426,"[\""Monitor\"", \""Wireless Mouse\""]",2027.96,{},36047,1,"""South America""" +2023-04-28,46279,2168,"[\""Laptop\""]",1330.41,"{\""promo\"": \""9%\""}",100038,0,"""Europe""" +2024-05-07,46280,3312,"[\""Charger\""]",4958.97,"{\""loyalty\"": \""7%\""}",14971,0,"""North America""" +2023-03-03,46281,3542,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1312.14,"{\""seasonal\"": \""12%\""}",256204,1,"""Asia""" +2024-09-17,46282,2268,"[\""Tablet\"", \""Headphones\""]",567.12,{},124259,0,"""Asia""" +2023-06-22,46283,6954,"[\""Wireless Mouse\"", \""Headphones\""]",2297.88,{},190540,1,"""South America""" +2024-03-13,46284,5989,"[\""Charger\"", \""Laptop\""]",2563.51,"{\""seasonal\"": \""12%\""}",212124,0,"""Europe""" +2024-01-19,46285,904,"[\""Headphones\"", \""Tablet\""]",883.67,{},1101,0,"""Asia""" +2023-05-17,46286,8657,"[\""Charger\"", \""Monitor\""]",3562.96,{},237396,0,"""North America""" +2024-02-22,46287,6339,"[\""Headphones\""]",2288.93,"{\""seasonal\"": \""23%\""}",274341,0,"""North America""" +2023-12-18,46288,5736,"[\""Monitor\""]",1120.87,{},225731,1,"""North America""" +2024-02-18,46289,8920,"[\""Wireless Mouse\"", \""Monitor\""]",4017.32,{},297206,0,"""South America""" +2024-01-22,46290,3845,"[\""Monitor\"", \""Phone\""]",3821.69,{},257455,0,"""South America""" +2023-03-30,46291,9175,"[\""Laptop\"", \""Wireless Mouse\""]",3795.26,"{\""loyalty\"": \""11%\""}",233900,1,"""Asia""" +2023-05-25,46292,8084,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",448.15,{},215018,1,"""North America""" +2024-03-21,46293,8717,"[\""Tablet\"", \""Phone\""]",857.4,"{\"": \""30%\""}",112441,1,"""North America""" +2023-01-03,46294,4422,"[\""Tablet\"", \""Laptop\""]",2758.27,{},136707,1,"""Europe""" +2024-03-25,46295,3024,"[\""Monitor\""]",2909.41,"{\"": \""19%\""}",147666,1,"""Asia""" +2024-11-10,46296,3075,"[\""Keyboard\""]",2184.68,{},109299,1,"""South America""" +2023-03-01,46297,8654,"[\""Phone\"", \""Tablet\""]",2116.66,{},186363,0,"""Europe""" +2024-10-27,46298,5793,"[\""Wireless Mouse\"", \""Charger\""]",122.77,"{\""loyalty\"": \""28%\""}",61502,1,"""South America""" +2023-04-05,46299,9299,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4470.38,{},269615,1,"""Asia""" +2024-04-14,46300,8927,"[\""Wireless Mouse\""]",2907.87,"{\""loyalty\"": \""28%\""}",298628,0,"""Europe""" +2023-12-03,46301,7729,"[\""Tablet\"", \""Phone\""]",2754.71,"{\""seasonal\"": \""15%\""}",56670,1,"""Asia""" +2024-09-20,46302,514,"[\""Phone\""]",302.26,{},209357,0,"""North America""" +2024-08-03,46303,128,"[\""Laptop\"", \""Keyboard\""]",752.0,{},74316,0,"""Europe""" +2024-09-19,46304,4106,"[\""Phone\"", \""Wireless Mouse\""]",3618.11,"{\""seasonal\"": \""24%\""}",246557,0,"""Europe""" +2023-01-24,46305,4175,"[\""Laptop\""]",698.27,{},263257,0,"""Asia""" +2023-06-11,46306,2108,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1091.25,{},204828,1,"""North America""" +2024-08-07,46307,1966,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3520.75,"{\""promo\"": \""17%\""}",125193,1,"""South America""" +2024-12-07,46308,3683,"[\""Laptop\"", \""Charger\""]",2220.48,"{\""promo\"": \""22%\""}",23949,1,"""South America""" +2023-05-15,46309,9829,"[\""Keyboard\""]",3051.3,{},233067,1,"""North America""" +2024-07-24,46310,2757,"[\""Tablet\"", \""Keyboard\""]",1264.37,{},281809,0,"""South America""" +2023-11-08,46311,7627,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2781.99,{},204162,1,"""North America""" +2023-04-10,46312,9615,"[\""Wireless Mouse\"", \""Phone\""]",1813.86,"{\"": \""24%\""}",272513,0,"""Africa""" +2024-07-11,46313,547,"[\""Headphones\"", \""Tablet\""]",2268.77,{},145048,0,"""South America""" +2023-07-12,46314,6346,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4215.95,"{\"": \""9%\""}",59379,1,"""South America""" +2023-12-17,46315,5675,"[\""Laptop\""]",2759.77,"{\""seasonal\"": \""28%\""}",145408,0,"""Asia""" +2024-07-01,46316,6085,"[\""Keyboard\""]",4210.82,{},161725,0,"""South America""" +2024-02-24,46317,4937,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4455.26,{},15271,0,"""Asia""" +2023-03-17,46318,8553,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",275.3,{},170351,1,"""South America""" +2023-06-27,46319,7920,"[\""Laptop\""]",2055.4,{},12116,0,"""Asia""" +2024-09-21,46320,5541,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4398.58,"{\"": \""22%\""}",111962,1,"""Asia""" +2024-02-23,46321,7269,"[\""Phone\"", \""Wireless Mouse\""]",2912.92,{},186923,1,"""Africa""" +2024-05-11,46322,6584,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2377.76,"{\""promo\"": \""25%\""}",260909,0,"""Asia""" +2023-01-17,46323,8884,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2857.51,"{\""seasonal\"": \""21%\""}",276248,0,"""South America""" +2023-01-11,46324,4705,"[\""Monitor\""]",288.33,"{\""loyalty\"": \""17%\""}",97248,1,"""North America""" +2024-08-25,46325,1186,"[\""Wireless Mouse\"", \""Keyboard\""]",626.33,{},63815,0,"""Asia""" +2024-07-06,46326,9235,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4244.88,"{\"": \""20%\""}",231625,0,"""South America""" +2023-03-26,46327,4540,"[\""Charger\""]",3187.75,{},59268,0,"""Africa""" +2023-11-21,46328,6348,"[\""Laptop\"", \""Headphones\""]",2977.38,"{\""seasonal\"": \""20%\""}",283485,0,"""South America""" +2024-04-19,46329,3877,"[\""Tablet\"", \""Headphones\""]",1600.54,"{\""loyalty\"": \""19%\""}",245226,0,"""Europe""" +2024-01-15,46330,9594,"[\""Wireless Mouse\"", \""Headphones\""]",2399.68,{},49330,1,"""North America""" +2024-11-08,46331,4641,"[\""Keyboard\""]",4787.72,"{\""loyalty\"": \""10%\""}",12512,0,"""Asia""" +2024-01-22,46332,2270,"[\""Laptop\""]",3508.87,{},55958,0,"""Africa""" +2023-12-14,46333,6542,"[\""Phone\""]",2295.3,{},15003,1,"""North America""" +2024-01-13,46334,112,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4677.23,"{\""promo\"": \""8%\""}",85236,1,"""Africa""" +2024-08-01,46335,909,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",57.46,"{\""promo\"": \""27%\""}",273962,1,"""South America""" +2024-09-27,46336,685,"[\""Phone\"", \""Keyboard\""]",1071.31,{},259436,1,"""South America""" +2024-04-21,46337,963,"[\""Tablet\""]",513.35,{},44530,1,"""Asia""" +2024-04-26,46338,1944,"[\""Headphones\"", \""Monitor\""]",914.2,{},105950,1,"""North America""" +2023-05-10,46339,7607,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4678.42,{},169451,0,"""North America""" +2023-09-04,46340,6833,"[\""Phone\"", \""Charger\""]",1199.3,"{\""promo\"": \""15%\""}",241866,0,"""South America""" +2024-11-03,46341,9747,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3377.9,{},171745,0,"""Europe""" +2023-12-26,46342,7468,"[\""Charger\""]",197.26,"{\""loyalty\"": \""23%\""}",236580,0,"""Europe""" +2023-06-25,46343,1344,"[\""Charger\"", \""Monitor\""]",932.42,{},159577,0,"""Europe""" +2024-08-08,46344,5555,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3124.39,{},18868,1,"""Asia""" +2023-05-01,46345,3683,"[\""Laptop\"", \""Tablet\""]",2641.98,{},38922,0,"""Europe""" +2023-09-07,46346,9013,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3694.78,{},13365,1,"""North America""" +2023-05-23,46347,4734,"[\""Laptop\""]",4536.92,"{\""loyalty\"": \""29%\""}",292938,1,"""South America""" +2024-02-11,46348,8226,"[\""Tablet\""]",3001.3,"{\""promo\"": \""8%\""}",91903,0,"""Asia""" +2023-05-02,46349,9185,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2235.51,"{\""loyalty\"": \""9%\""}",193458,0,"""North America""" +2024-01-06,46350,2525,"[\""Charger\""]",2486.64,{},267150,1,"""Africa""" +2023-09-21,46351,1330,"[\""Charger\""]",4880.74,{},190970,1,"""North America""" +2023-09-05,46352,1606,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3285.27,{},99963,0,"""Europe""" +2023-03-14,46353,4529,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2082.56,"{\""loyalty\"": \""16%\""}",239896,1,"""Africa""" +2024-03-03,46354,375,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",73.24,{},143635,1,"""South America""" +2023-06-18,46355,5535,"[\""Monitor\"", \""Laptop\""]",3111.87,{},160903,1,"""North America""" +2024-12-22,46356,4596,"[\""Laptop\""]",3371.33,"{\""promo\"": \""13%\""}",226041,0,"""South America""" +2023-01-04,46357,1324,"[\""Wireless Mouse\"", \""Phone\""]",4617.62,"{\""loyalty\"": \""27%\""}",251083,1,"""North America""" +2024-11-24,46358,3057,"[\""Wireless Mouse\""]",1098.77,{},53895,0,"""Asia""" +2024-08-20,46359,2584,"[\""Monitor\"", \""Headphones\""]",4269.29,{},125561,0,"""South America""" +2024-11-04,46360,299,"[\""Headphones\"", \""Monitor\""]",3709.75,"{\""seasonal\"": \""6%\""}",6566,0,"""South America""" +2023-01-27,46361,1266,"[\""Wireless Mouse\"", \""Monitor\""]",2209.34,"{\"": \""27%\""}",222945,0,"""Europe""" +2023-03-14,46362,8201,"[\""Tablet\"", \""Wireless Mouse\""]",4266.34,"{\""seasonal\"": \""23%\""}",182616,0,"""Africa""" +2023-01-28,46363,7867,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3911.0,"{\""promo\"": \""26%\""}",58546,1,"""South America""" +2023-02-14,46364,4991,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3863.07,{},86848,0,"""Asia""" +2023-01-20,46365,8641,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4308.74,"{\""loyalty\"": \""22%\""}",77526,1,"""Europe""" +2024-12-20,46366,6122,"[\""Monitor\"", \""Phone\""]",3788.04,{},72779,0,"""South America""" +2024-07-27,46367,862,"[\""Wireless Mouse\""]",2574.95,"{\""seasonal\"": \""11%\""}",273365,1,"""South America""" +2024-08-22,46368,6225,"[\""Tablet\""]",4777.66,"{\"": \""9%\""}",52989,0,"""Africa""" +2024-11-10,46369,747,"[\""Phone\""]",2955.5,{},96520,1,"""South America""" +2024-05-04,46370,9819,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4527.96,"{\""promo\"": \""21%\""}",27366,1,"""Asia""" +2023-10-01,46371,5827,"[\""Headphones\""]",685.43,{},212091,1,"""North America""" +2023-04-16,46372,4096,"[\""Headphones\"", \""Tablet\""]",1155.34,"{\""loyalty\"": \""12%\""}",110910,1,"""Africa""" +2024-02-24,46373,2448,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1821.84,"{\"": \""18%\""}",70528,1,"""North America""" +2023-05-29,46374,2863,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2641.23,{},159892,1,"""Africa""" +2023-04-04,46375,6778,"[\""Laptop\""]",3131.92,{},101153,1,"""South America""" +2024-10-25,46376,6488,"[\""Tablet\"", \""Keyboard\""]",3884.71,{},112978,1,"""Asia""" +2024-06-08,46377,5411,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3705.04,{},141203,1,"""Europe""" +2024-07-17,46378,8997,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2189.82,{},43376,1,"""Asia""" +2024-11-28,46379,3698,"[\""Phone\""]",3518.0,"{\""seasonal\"": \""28%\""}",214088,0,"""Africa""" +2023-11-17,46380,759,"[\""Keyboard\"", \""Tablet\""]",4907.51,"{\""loyalty\"": \""23%\""}",292633,1,"""Asia""" +2024-07-01,46381,5504,"[\""Keyboard\""]",4940.79,{},244566,1,"""North America""" +2023-08-01,46382,9135,"[\""Monitor\"", \""Phone\""]",3811.53,"{\""loyalty\"": \""30%\""}",9102,1,"""Asia""" +2024-07-09,46383,1980,"[\""Headphones\""]",2861.27,"{\"": \""7%\""}",255452,0,"""Africa""" +2023-02-21,46384,4685,"[\""Wireless Mouse\""]",1121.66,"{\""promo\"": \""28%\""}",282862,1,"""Asia""" +2023-07-25,46385,9858,"[\""Charger\"", \""Phone\""]",547.39,{},224411,0,"""South America""" +2024-03-08,46386,2900,"[\""Wireless Mouse\"", \""Charger\""]",476.44,"{\""seasonal\"": \""13%\""}",238063,0,"""North America""" +2024-12-03,46387,3485,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1539.47,"{\""seasonal\"": \""24%\""}",27847,1,"""Africa""" +2023-08-05,46388,2498,"[\""Headphones\"", \""Phone\""]",3641.47,"{\""seasonal\"": \""28%\""}",85930,0,"""Africa""" +2024-03-12,46389,7366,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3248.82,"{\""loyalty\"": \""18%\""}",94025,1,"""Asia""" +2024-09-07,46390,1451,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4093.07,"{\"": \""13%\""}",180550,0,"""South America""" +2023-12-13,46391,9744,"[\""Monitor\"", \""Charger\""]",570.88,"{\"": \""22%\""}",296577,1,"""South America""" +2024-05-24,46392,6210,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3796.72,"{\"": \""5%\""}",173639,0,"""Europe""" +2024-04-17,46393,8872,"[\""Monitor\""]",2171.14,"{\"": \""13%\""}",57509,0,"""Europe""" +2023-03-01,46394,790,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1044.64,{},71138,0,"""South America""" +2024-01-13,46395,5929,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1161.32,{},54717,1,"""Europe""" +2023-01-17,46396,3212,"[\""Wireless Mouse\"", \""Headphones\""]",2308.44,{},163915,0,"""Europe""" +2024-01-11,46397,9249,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2588.78,{},270034,1,"""Europe""" +2024-03-26,46398,2274,"[\""Headphones\""]",4219.11,{},202165,0,"""South America""" +2023-03-15,46399,1393,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1781.93,"{\""loyalty\"": \""26%\""}",178497,1,"""Europe""" +2023-05-17,46400,9884,"[\""Laptop\"", \""Monitor\""]",1222.0,{},110119,0,"""South America""" +2024-03-16,46401,1332,"[\""Charger\""]",3029.46,"{\""promo\"": \""15%\""}",221879,1,"""North America""" +2023-12-03,46402,5344,"[\""Headphones\""]",4158.95,"{\""seasonal\"": \""5%\""}",87795,1,"""Africa""" +2024-06-20,46403,6341,"[\""Charger\""]",393.41,"{\""promo\"": \""27%\""}",223686,0,"""Asia""" +2023-10-03,46404,4788,"[\""Tablet\""]",2905.45,"{\"": \""25%\""}",183323,0,"""South America""" +2023-08-12,46405,86,"[\""Keyboard\"", \""Charger\""]",1410.32,{},108198,0,"""Africa""" +2023-10-28,46406,6163,"[\""Keyboard\""]",1363.27,{},190693,1,"""Africa""" +2024-09-29,46407,5609,"[\""Monitor\""]",4116.83,{},219033,1,"""South America""" +2023-09-26,46408,5989,"[\""Tablet\"", \""Keyboard\""]",1989.9,"{\""loyalty\"": \""20%\""}",240660,1,"""Asia""" +2023-11-27,46409,4530,"[\""Wireless Mouse\""]",4021.82,{},223646,0,"""Africa""" +2023-06-12,46410,7881,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",819.37,"{\""promo\"": \""26%\""}",238841,0,"""Asia""" +2024-10-20,46411,8382,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",95.71,{},173809,1,"""Europe""" +2024-04-23,46412,4538,"[\""Charger\"", \""Tablet\""]",188.1,"{\""seasonal\"": \""16%\""}",39601,0,"""Europe""" +2024-08-02,46413,2424,"[\""Wireless Mouse\"", \""Monitor\""]",805.77,{},11889,0,"""Africa""" +2024-07-17,46414,8429,"[\""Phone\""]",2228.46,{},280806,1,"""Africa""" +2023-10-08,46415,9036,"[\""Monitor\"", \""Keyboard\""]",1318.16,{},224697,0,"""Europe""" +2023-06-10,46416,4566,"[\""Headphones\"", \""Tablet\""]",427.46,"{\"": \""15%\""}",224805,1,"""South America""" +2023-04-24,46417,5652,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4240.75,{},24672,0,"""Asia""" +2024-01-09,46418,818,"[\""Phone\"", \""Headphones\""]",4117.26,"{\""loyalty\"": \""28%\""}",182700,1,"""Europe""" +2023-09-30,46419,4116,"[\""Charger\""]",4248.79,{},1119,0,"""Europe""" +2024-07-17,46420,1205,"[\""Laptop\""]",3557.18,"{\"": \""16%\""}",122049,0,"""South America""" +2023-04-16,46421,9380,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",446.66,{},74790,0,"""Asia""" +2023-09-22,46422,9162,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1569.27,{},54198,0,"""Africa""" +2023-09-07,46423,5670,"[\""Charger\"", \""Laptop\""]",1156.49,{},225343,0,"""Africa""" +2023-01-08,46424,9617,"[\""Charger\"", \""Monitor\""]",1760.46,"{\""promo\"": \""27%\""}",23233,0,"""Europe""" +2024-02-12,46425,8442,"[\""Tablet\""]",3412.89,"{\""promo\"": \""11%\""}",38940,1,"""Europe""" +2023-11-07,46426,6008,"[\""Charger\""]",3608.41,{},16771,1,"""South America""" +2023-03-25,46427,3943,"[\""Charger\"", \""Laptop\""]",1323.18,"{\"": \""16%\""}",108125,1,"""North America""" +2023-12-21,46428,6501,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2082.96,"{\""seasonal\"": \""8%\""}",85993,1,"""South America""" +2024-07-03,46429,4156,"[\""Keyboard\"", \""Headphones\""]",3415.4,{},164370,0,"""South America""" +2024-07-21,46430,5799,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4708.84,{},85779,0,"""Europe""" +2023-07-20,46431,8533,"[\""Monitor\""]",1339.34,{},277277,0,"""North America""" +2023-09-29,46432,2431,"[\""Headphones\"", \""Tablet\""]",3137.07,"{\"": \""29%\""}",129837,0,"""Europe""" +2023-12-18,46433,6128,"[\""Tablet\""]",2845.69,{},10012,1,"""Asia""" +2023-12-17,46434,3079,"[\""Monitor\"", \""Headphones\""]",4012.58,{},36357,0,"""North America""" +2024-11-02,46435,6007,"[\""Charger\""]",160.04,{},190694,0,"""Africa""" +2024-03-26,46436,9767,"[\""Headphones\""]",776.82,{},123292,1,"""Africa""" +2023-09-06,46437,6143,"[\""Laptop\""]",2258.84,{},245282,1,"""South America""" +2023-02-02,46438,8820,"[\""Laptop\""]",4829.09,{},263988,0,"""South America""" +2023-12-09,46439,9799,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1930.15,"{\""loyalty\"": \""18%\""}",44876,1,"""Africa""" +2024-09-21,46440,8454,"[\""Keyboard\""]",2547.84,{},248532,0,"""Asia""" +2024-04-06,46441,8330,"[\""Wireless Mouse\""]",902.48,"{\""promo\"": \""11%\""}",200053,1,"""Europe""" +2023-03-08,46442,6614,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",358.82,"{\""seasonal\"": \""26%\""}",169104,0,"""Europe""" +2023-11-22,46443,4492,"[\""Headphones\"", \""Charger\""]",1536.24,"{\""loyalty\"": \""19%\""}",36180,1,"""Asia""" +2023-07-21,46444,4083,"[\""Keyboard\""]",2839.44,"{\""promo\"": \""15%\""}",252907,0,"""South America""" +2024-09-27,46445,2362,"[\""Laptop\"", \""Wireless Mouse\""]",1423.69,{},216634,1,"""Asia""" +2024-10-25,46446,7069,"[\""Phone\"", \""Charger\"", \""Laptop\""]",998.86,"{\"": \""17%\""}",15240,1,"""Asia""" +2024-05-12,46447,623,"[\""Phone\"", \""Monitor\""]",1444.38,"{\""loyalty\"": \""18%\""}",160435,1,"""Europe""" +2023-09-16,46448,8299,"[\""Monitor\""]",367.34,"{\""loyalty\"": \""21%\""}",114646,1,"""North America""" +2023-01-10,46449,4587,"[\""Wireless Mouse\"", \""Phone\""]",245.81,{},148949,0,"""South America""" +2023-09-27,46450,5440,"[\""Charger\""]",3104.33,{},283100,0,"""South America""" +2023-04-14,46451,3699,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2937.26,"{\""loyalty\"": \""5%\""}",271633,1,"""South America""" +2024-06-10,46452,5176,"[\""Charger\""]",3987.1,{},28643,0,"""Africa""" +2024-08-30,46453,4536,"[\""Keyboard\"", \""Laptop\""]",1522.58,{},205590,0,"""North America""" +2023-06-01,46454,2839,"[\""Charger\""]",3528.66,"{\""promo\"": \""7%\""}",149697,1,"""North America""" +2024-08-28,46455,1758,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",441.64,{},294357,1,"""South America""" +2023-10-22,46456,5077,"[\""Keyboard\"", \""Monitor\""]",4611.91,{},293495,1,"""Africa""" +2023-06-04,46457,6269,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2044.6,{},124519,1,"""South America""" +2023-02-23,46458,1870,"[\""Keyboard\"", \""Laptop\""]",3366.16,"{\""promo\"": \""21%\""}",211249,0,"""North America""" +2023-02-24,46459,7580,"[\""Headphones\""]",962.65,{},168077,0,"""Europe""" +2023-12-14,46460,3516,"[\""Laptop\"", \""Phone\""]",2875.65,{},39697,1,"""South America""" +2023-12-19,46461,205,"[\""Monitor\""]",4145.22,"{\""loyalty\"": \""11%\""}",53007,1,"""Europe""" +2023-06-21,46462,1128,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",917.21,{},181398,0,"""Asia""" +2023-10-24,46463,7882,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2744.13,"{\"": \""6%\""}",197474,0,"""Europe""" +2023-05-26,46464,117,"[\""Headphones\"", \""Charger\""]",4965.36,"{\""loyalty\"": \""5%\""}",146270,0,"""South America""" +2024-03-10,46465,8080,"[\""Phone\""]",4011.52,{},257589,1,"""Asia""" +2023-01-14,46466,5575,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",393.07,{},128007,1,"""North America""" +2024-12-02,46467,7,"[\""Monitor\"", \""Laptop\""]",1565.04,{},29957,0,"""Asia""" +2024-04-05,46468,5595,"[\""Phone\""]",4248.02,"{\"": \""10%\""}",294245,1,"""Africa""" +2023-08-15,46469,9464,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1932.47,"{\"": \""19%\""}",33599,1,"""Europe""" +2024-06-10,46470,8952,"[\""Charger\"", \""Phone\""]",2520.61,"{\""seasonal\"": \""10%\""}",160318,1,"""Asia""" +2023-12-10,46471,5008,"[\""Laptop\"", \""Phone\""]",1890.16,"{\""loyalty\"": \""19%\""}",226004,1,"""North America""" +2024-07-07,46472,9363,"[\""Monitor\""]",2312.05,{},7466,0,"""Asia""" +2023-05-08,46473,2580,"[\""Monitor\"", \""Phone\""]",4900.11,"{\"": \""16%\""}",219752,0,"""Asia""" +2023-12-08,46474,2998,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3970.24,"{\""loyalty\"": \""7%\""}",162287,0,"""Asia""" +2024-08-10,46475,92,"[\""Monitor\"", \""Tablet\""]",2412.77,{},278799,0,"""North America""" +2023-04-09,46476,5270,"[\""Keyboard\"", \""Headphones\""]",424.63,"{\""loyalty\"": \""29%\""}",157876,0,"""Africa""" +2024-04-29,46477,4517,"[\""Wireless Mouse\""]",4578.12,"{\"": \""30%\""}",117284,0,"""South America""" +2024-10-01,46478,8093,"[\""Phone\""]",125.78,{},234716,0,"""Europe""" +2024-06-18,46479,4578,"[\""Charger\""]",4591.51,"{\""loyalty\"": \""5%\""}",47257,0,"""Europe""" +2024-09-03,46480,2387,"[\""Headphones\"", \""Charger\""]",4648.27,{},98085,1,"""North America""" +2024-05-20,46481,9287,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3524.22,"{\""seasonal\"": \""19%\""}",247334,1,"""Africa""" +2023-10-05,46482,9432,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",818.29,{},73352,1,"""North America""" +2024-05-28,46483,8002,"[\""Keyboard\"", \""Monitor\""]",3972.12,"{\"": \""23%\""}",252192,1,"""Europe""" +2023-04-10,46484,4779,"[\""Headphones\""]",2874.92,{},8488,0,"""Asia""" +2023-09-09,46485,9757,"[\""Phone\""]",3707.24,"{\""loyalty\"": \""7%\""}",187095,1,"""Africa""" +2023-08-06,46486,2561,"[\""Charger\""]",1234.55,{},102939,0,"""Africa""" +2023-12-13,46487,6756,"[\""Monitor\""]",4803.43,"{\""promo\"": \""15%\""}",67869,1,"""South America""" +2023-06-11,46488,8354,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4136.47,{},48424,1,"""Africa""" +2023-08-07,46489,9395,"[\""Monitor\"", \""Charger\"", \""Phone\""]",131.9,"{\""promo\"": \""14%\""}",90878,1,"""North America""" +2023-05-09,46490,2385,"[\""Tablet\"", \""Headphones\""]",536.74,"{\"": \""27%\""}",160840,0,"""Europe""" +2024-07-01,46491,6222,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1422.0,"{\""promo\"": \""17%\""}",165272,1,"""Africa""" +2023-06-18,46492,1829,"[\""Wireless Mouse\""]",1556.35,"{\""promo\"": \""11%\""}",259406,0,"""Asia""" +2024-12-28,46493,2603,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",463.05,"{\""promo\"": \""30%\""}",173264,0,"""Africa""" +2024-07-26,46494,5529,"[\""Charger\"", \""Monitor\""]",3142.76,"{\""seasonal\"": \""22%\""}",81639,1,"""Africa""" +2023-08-11,46495,7751,"[\""Wireless Mouse\"", \""Laptop\""]",1954.54,"{\"": \""19%\""}",44096,1,"""Africa""" +2023-01-29,46496,6840,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2710.8,"{\""seasonal\"": \""16%\""}",263409,1,"""North America""" +2023-04-14,46497,9148,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2210.18,"{\"": \""11%\""}",37305,1,"""South America""" +2023-05-07,46498,8810,"[\""Tablet\""]",64.3,"{\"": \""9%\""}",187514,1,"""North America""" +2024-08-14,46499,1288,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",280.86,{},77227,1,"""Africa""" +2023-04-26,46500,6433,"[\""Monitor\""]",3222.23,"{\""promo\"": \""24%\""}",143068,0,"""Asia""" +2023-04-21,46501,5386,"[\""Monitor\"", \""Phone\""]",4465.56,{},148257,1,"""Africa""" +2024-10-09,46502,2979,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2773.09,"{\""promo\"": \""10%\""}",54331,0,"""North America""" +2023-08-01,46503,7077,"[\""Tablet\""]",2264.04,{},260452,0,"""South America""" +2023-01-28,46504,7900,"[\""Monitor\""]",3533.31,{},243835,0,"""Africa""" +2024-12-31,46505,5354,"[\""Headphones\""]",4702.56,"{\""promo\"": \""27%\""}",64706,0,"""North America""" +2023-02-17,46506,9882,"[\""Monitor\""]",2191.44,{},217930,0,"""North America""" +2024-07-23,46507,503,"[\""Keyboard\"", \""Phone\""]",4614.08,"{\""promo\"": \""12%\""}",70500,0,"""Europe""" +2023-11-15,46508,1417,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3487.59,"{\""promo\"": \""18%\""}",156662,0,"""North America""" +2024-06-05,46509,6012,"[\""Phone\""]",2886.72,"{\""loyalty\"": \""22%\""}",121766,0,"""Europe""" +2024-11-27,46510,7414,"[\""Headphones\"", \""Phone\""]",311.39,"{\"": \""25%\""}",199364,0,"""Africa""" +2024-09-26,46511,4119,"[\""Laptop\""]",2299.29,{},26646,0,"""South America""" +2024-01-26,46512,1176,"[\""Monitor\"", \""Charger\""]",1015.75,"{\""seasonal\"": \""23%\""}",24335,1,"""Asia""" +2024-08-31,46513,3268,"[\""Tablet\"", \""Laptop\""]",4704.92,"{\""promo\"": \""20%\""}",228499,1,"""South America""" +2023-11-26,46514,4554,"[\""Charger\""]",743.79,{},71897,0,"""Africa""" +2023-01-18,46515,70,"[\""Tablet\"", \""Laptop\""]",154.79,{},55692,0,"""Asia""" +2024-01-13,46516,7131,"[\""Monitor\"", \""Charger\""]",3660.71,{},107209,1,"""South America""" +2023-11-01,46517,8943,"[\""Tablet\"", \""Charger\""]",2203.83,"{\""promo\"": \""16%\""}",222487,1,"""North America""" +2023-10-21,46518,2181,"[\""Tablet\"", \""Keyboard\""]",4326.64,{},89127,1,"""Africa""" +2024-11-29,46519,2310,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3435.88,{},86486,0,"""Europe""" +2023-02-18,46520,8671,"[\""Headphones\"", \""Charger\""]",2134.59,"{\""seasonal\"": \""25%\""}",134036,0,"""Africa""" +2024-12-19,46521,2069,"[\""Monitor\""]",905.14,{},212210,1,"""North America""" +2023-09-27,46522,5552,"[\""Wireless Mouse\""]",4814.85,{},187857,0,"""Africa""" +2024-03-05,46523,345,"[\""Headphones\"", \""Tablet\""]",359.47,{},25502,0,"""South America""" +2024-05-17,46524,1996,"[\""Charger\"", \""Monitor\""]",563.55,{},69758,1,"""Africa""" +2024-07-12,46525,5867,"[\""Wireless Mouse\"", \""Tablet\""]",3945.92,{},290286,0,"""Asia""" +2024-12-14,46526,6425,"[\""Phone\"", \""Tablet\""]",2370.58,{},36671,1,"""North America""" +2023-02-22,46527,90,"[\""Wireless Mouse\""]",1553.02,"{\"": \""23%\""}",260494,0,"""Asia""" +2023-12-25,46528,2141,"[\""Laptop\""]",4849.77,{},206231,0,"""Europe""" +2023-04-16,46529,4123,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4927.15,"{\""promo\"": \""9%\""}",294561,1,"""Europe""" +2023-07-10,46530,8245,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1396.35,{},268941,0,"""North America""" +2024-11-21,46531,4763,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1537.06,"{\""loyalty\"": \""28%\""}",160819,1,"""Europe""" +2023-12-18,46532,1972,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2400.05,{},4893,1,"""Europe""" +2023-01-12,46533,45,"[\""Tablet\"", \""Wireless Mouse\""]",4355.75,"{\"": \""7%\""}",48918,0,"""Europe""" +2023-07-27,46534,6815,"[\""Headphones\""]",4173.76,"{\""promo\"": \""6%\""}",229641,1,"""North America""" +2023-04-27,46535,9,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2213.85,{},201362,1,"""North America""" +2024-08-28,46536,4055,"[\""Headphones\""]",3547.41,{},35631,1,"""Africa""" +2023-06-20,46537,1387,"[\""Monitor\"", \""Wireless Mouse\""]",4711.2,{},37176,1,"""Europe""" +2024-12-31,46538,7930,"[\""Wireless Mouse\""]",3990.17,"{\""loyalty\"": \""10%\""}",203386,0,"""Europe""" +2024-01-04,46539,9383,"[\""Wireless Mouse\""]",4100.65,"{\""seasonal\"": \""26%\""}",81023,1,"""North America""" +2023-02-18,46540,7635,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4139.0,{},255246,0,"""South America""" +2024-03-27,46541,6371,"[\""Keyboard\"", \""Charger\""]",2285.35,"{\""seasonal\"": \""27%\""}",66790,1,"""South America""" +2023-05-21,46542,3938,"[\""Laptop\""]",2146.73,{},68264,1,"""South America""" +2023-01-19,46543,4089,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4619.62,"{\""loyalty\"": \""20%\""}",106462,0,"""South America""" +2023-05-21,46544,5985,"[\""Wireless Mouse\""]",2073.25,{},276080,0,"""South America""" +2023-03-31,46545,4115,"[\""Charger\""]",3969.62,"{\""loyalty\"": \""18%\""}",217810,0,"""Asia""" +2024-08-08,46546,6076,"[\""Laptop\"", \""Tablet\""]",1322.07,"{\""seasonal\"": \""13%\""}",83691,1,"""Europe""" +2023-06-02,46547,2366,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1537.4,"{\""promo\"": \""12%\""}",237120,0,"""South America""" +2023-09-26,46548,9005,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2193.33,"{\""seasonal\"": \""30%\""}",148528,0,"""Europe""" +2024-06-24,46549,9224,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1755.69,"{\""promo\"": \""30%\""}",137074,0,"""North America""" +2024-12-19,46550,3581,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2559.78,{},16813,1,"""Europe""" +2023-08-09,46551,9281,"[\""Wireless Mouse\""]",1846.64,{},215426,1,"""Asia""" +2023-06-27,46552,4673,"[\""Tablet\"", \""Headphones\""]",1671.19,"{\""loyalty\"": \""29%\""}",164582,1,"""Africa""" +2023-08-27,46553,9900,"[\""Monitor\""]",429.4,"{\""seasonal\"": \""15%\""}",50118,0,"""Africa""" +2024-06-14,46554,8442,"[\""Keyboard\"", \""Phone\""]",3700.44,{},246067,1,"""Europe""" +2024-03-31,46555,2050,"[\""Wireless Mouse\""]",3114.32,"{\""promo\"": \""28%\""}",61037,0,"""South America""" +2023-08-11,46556,1348,"[\""Charger\""]",3366.82,{},299922,0,"""Africa""" +2023-01-17,46557,9818,"[\""Headphones\""]",2452.8,"{\""promo\"": \""8%\""}",297485,0,"""Europe""" +2023-09-02,46558,9231,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1899.62,{},107975,1,"""Asia""" +2024-12-16,46559,6062,"[\""Headphones\"", \""Laptop\""]",4402.3,{},46770,1,"""Asia""" +2024-10-07,46560,6946,"[\""Keyboard\"", \""Headphones\""]",429.26,"{\""loyalty\"": \""20%\""}",115386,1,"""South America""" +2024-02-03,46561,6784,"[\""Keyboard\""]",3870.21,"{\""promo\"": \""29%\""}",218462,0,"""Africa""" +2023-04-04,46562,4825,"[\""Phone\"", \""Tablet\""]",4182.41,{},273533,0,"""Europe""" +2023-05-19,46563,7428,"[\""Tablet\"", \""Wireless Mouse\""]",2230.98,"{\""promo\"": \""5%\""}",118975,0,"""Asia""" +2024-06-15,46564,6140,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4176.79,{},21179,1,"""Asia""" +2024-10-15,46565,8417,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2235.7,"{\"": \""6%\""}",66232,0,"""Asia""" +2024-12-06,46566,7606,"[\""Wireless Mouse\""]",2232.48,"{\""loyalty\"": \""27%\""}",38457,1,"""Europe""" +2024-11-08,46567,4342,"[\""Charger\""]",249.87,{},25813,0,"""South America""" +2023-02-25,46568,2104,"[\""Keyboard\""]",1864.51,"{\""seasonal\"": \""26%\""}",167683,0,"""Asia""" +2024-04-11,46569,597,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",71.42,"{\""seasonal\"": \""18%\""}",156872,1,"""North America""" +2023-07-11,46570,9627,"[\""Phone\""]",1683.92,{},186241,0,"""North America""" +2024-08-19,46571,3211,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3615.96,{},214155,1,"""Europe""" +2023-06-20,46572,4950,"[\""Monitor\""]",4886.73,{},76166,0,"""Africa""" +2023-08-12,46573,4353,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3040.46,{},196285,1,"""South America""" +2024-07-20,46574,95,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1364.93,"{\""promo\"": \""30%\""}",135954,0,"""Europe""" +2024-01-13,46575,5136,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4227.15,"{\""promo\"": \""22%\""}",277766,0,"""South America""" +2024-04-11,46576,675,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1197.29,{},47877,0,"""Europe""" +2023-02-15,46577,398,"[\""Keyboard\""]",2574.12,{},261852,0,"""North America""" +2024-01-08,46578,8595,"[\""Headphones\"", \""Keyboard\""]",2250.26,"{\""loyalty\"": \""6%\""}",45595,0,"""Asia""" +2024-08-02,46579,5447,"[\""Wireless Mouse\""]",597.38,"{\"": \""23%\""}",143602,1,"""Asia""" +2024-05-10,46580,774,"[\""Laptop\"", \""Keyboard\""]",3390.12,{},56418,0,"""Africa""" +2023-05-18,46581,7485,"[\""Wireless Mouse\""]",3193.87,{},214307,1,"""North America""" +2023-05-19,46582,1379,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1314.66,{},206432,1,"""North America""" +2023-04-05,46583,4663,"[\""Monitor\"", \""Keyboard\""]",2928.45,{},76149,0,"""Europe""" +2024-03-02,46584,9059,"[\""Charger\""]",1637.08,"{\""loyalty\"": \""25%\""}",298662,0,"""South America""" +2023-04-21,46585,8811,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4937.48,{},296933,0,"""South America""" +2024-12-20,46586,9314,"[\""Phone\"", \""Keyboard\""]",4355.28,"{\""seasonal\"": \""21%\""}",43889,1,"""Asia""" +2023-04-04,46587,6589,"[\""Tablet\"", \""Laptop\""]",566.76,"{\"": \""18%\""}",10141,0,"""Europe""" +2023-02-26,46588,1611,"[\""Monitor\"", \""Tablet\""]",661.2,"{\"": \""26%\""}",247178,0,"""Asia""" +2023-01-05,46589,3452,"[\""Charger\""]",3570.74,{},278908,0,"""South America""" +2023-03-24,46590,6992,"[\""Phone\""]",1589.46,{},266490,0,"""Asia""" +2023-11-17,46591,6826,"[\""Monitor\"", \""Tablet\""]",2339.53,"{\""promo\"": \""21%\""}",299608,1,"""Europe""" +2024-12-30,46592,6356,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",507.57,"{\""loyalty\"": \""27%\""}",217002,0,"""North America""" +2024-06-30,46593,247,"[\""Monitor\""]",353.82,"{\""loyalty\"": \""7%\""}",261466,1,"""Asia""" +2024-08-30,46594,6424,"[\""Phone\"", \""Wireless Mouse\""]",397.72,"{\"": \""22%\""}",261457,0,"""North America""" +2023-12-15,46595,4434,"[\""Laptop\"", \""Headphones\""]",1996.93,{},287621,0,"""Asia""" +2023-06-09,46596,5941,"[\""Monitor\"", \""Phone\"", \""Charger\""]",773.8,{},252318,1,"""North America""" +2024-07-03,46597,3070,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4391.24,{},230119,0,"""South America""" +2024-04-12,46598,7801,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1728.1,{},25159,1,"""Europe""" +2024-01-11,46599,8176,"[\""Wireless Mouse\""]",296.47,"{\""seasonal\"": \""20%\""}",47287,1,"""Africa""" +2024-09-09,46600,3296,"[\""Laptop\""]",232.13,"{\""loyalty\"": \""16%\""}",110990,0,"""Asia""" +2023-12-28,46601,6579,"[\""Laptop\""]",653.39,{},70028,0,"""South America""" +2023-12-05,46602,6683,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3300.12,{},267421,0,"""South America""" +2024-03-05,46603,9346,"[\""Phone\"", \""Monitor\""]",3691.69,"{\"": \""18%\""}",51775,1,"""Asia""" +2023-02-23,46604,4904,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4623.14,{},137807,0,"""Asia""" +2024-06-28,46605,4342,"[\""Headphones\"", \""Wireless Mouse\""]",1454.61,{},166393,1,"""South America""" +2024-09-21,46606,934,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3299.17,{},71947,0,"""North America""" +2023-06-20,46607,6298,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",193.91,"{\""loyalty\"": \""23%\""}",45074,1,"""North America""" +2024-04-04,46608,9266,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4430.12,"{\""seasonal\"": \""23%\""}",25533,0,"""South America""" +2024-10-13,46609,453,"[\""Phone\""]",1738.17,{},55180,1,"""South America""" +2023-05-16,46610,7652,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",236.49,{},170351,0,"""South America""" +2023-07-08,46611,7105,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1232.35,"{\""promo\"": \""5%\""}",14496,0,"""Africa""" +2023-11-01,46612,2824,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1508.84,"{\""seasonal\"": \""24%\""}",185548,1,"""North America""" +2023-03-01,46613,6090,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3838.95,"{\""promo\"": \""27%\""}",273408,0,"""Africa""" +2023-10-25,46614,7289,"[\""Monitor\"", \""Laptop\""]",680.12,"{\""promo\"": \""9%\""}",277280,1,"""North America""" +2023-11-07,46615,7457,"[\""Tablet\"", \""Charger\""]",4271.04,"{\"": \""7%\""}",131093,1,"""North America""" +2023-10-24,46616,1724,"[\""Charger\""]",638.22,"{\""promo\"": \""20%\""}",111910,0,"""North America""" +2024-01-24,46617,321,"[\""Tablet\"", \""Monitor\""]",2081.53,{},262873,1,"""North America""" +2024-01-01,46618,9740,"[\""Headphones\"", \""Charger\""]",333.26,"{\""seasonal\"": \""18%\""}",88801,0,"""South America""" +2023-07-28,46619,7874,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2427.87,{},142682,0,"""Asia""" +2024-10-20,46620,8561,"[\""Wireless Mouse\""]",2016.39,"{\""promo\"": \""24%\""}",253158,0,"""South America""" +2024-05-18,46621,9630,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1607.98,"{\""promo\"": \""20%\""}",295447,1,"""North America""" +2023-10-17,46622,3786,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2022.2,"{\""loyalty\"": \""8%\""}",72432,0,"""South America""" +2023-11-22,46623,6790,"[\""Headphones\"", \""Monitor\""]",1746.13,"{\""seasonal\"": \""29%\""}",202195,0,"""Europe""" +2023-12-09,46624,9275,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2395.54,{},112708,0,"""South America""" +2024-06-06,46625,8962,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",169.76,{},39517,0,"""Asia""" +2024-07-24,46626,5742,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1449.85,"{\""seasonal\"": \""25%\""}",122486,0,"""Asia""" +2023-08-24,46627,1960,"[\""Tablet\""]",1757.16,"{\""loyalty\"": \""5%\""}",85202,1,"""Africa""" +2024-08-14,46628,8589,"[\""Tablet\"", \""Phone\""]",852.85,{},97890,1,"""Asia""" +2024-12-12,46629,8611,"[\""Phone\""]",3015.18,{},161468,0,"""Africa""" +2023-09-28,46630,9585,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2730.66,{},201828,1,"""Africa""" +2023-05-07,46631,2269,"[\""Headphones\"", \""Laptop\""]",1241.38,"{\"": \""27%\""}",286468,1,"""Africa""" +2024-01-18,46632,1727,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2671.05,{},105868,0,"""South America""" +2023-03-31,46633,6204,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4320.06,{},69442,1,"""South America""" +2024-07-06,46634,7940,"[\""Monitor\""]",2734.87,{},198908,0,"""North America""" +2023-03-18,46635,7592,"[\""Monitor\"", \""Keyboard\""]",1196.89,{},113134,1,"""Africa""" +2023-03-11,46636,6837,"[\""Laptop\""]",275.3,{},50324,0,"""North America""" +2023-05-16,46637,8639,"[\""Monitor\""]",2634.73,"{\"": \""12%\""}",78619,0,"""Asia""" +2024-10-29,46638,6465,"[\""Tablet\""]",2577.12,{},64979,1,"""South America""" +2024-08-07,46639,2702,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3475.63,{},240145,1,"""South America""" +2024-11-07,46640,594,"[\""Charger\""]",197.33,{},153794,1,"""South America""" +2024-09-02,46641,9112,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4656.94,"{\""seasonal\"": \""27%\""}",106912,1,"""South America""" +2024-03-15,46642,4274,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4728.8,"{\""loyalty\"": \""14%\""}",64325,0,"""Asia""" +2023-11-30,46643,8349,"[\""Wireless Mouse\"", \""Tablet\""]",1282.35,{},262837,1,"""Europe""" +2023-12-27,46644,1463,"[\""Phone\""]",112.73,"{\""loyalty\"": \""18%\""}",162102,0,"""Europe""" +2024-03-02,46645,3178,"[\""Charger\"", \""Laptop\""]",877.51,"{\""seasonal\"": \""25%\""}",189966,0,"""South America""" +2023-09-18,46646,2139,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",551.4,{},272875,0,"""Europe""" +2024-10-26,46647,9510,"[\""Laptop\"", \""Tablet\""]",3433.54,{},139925,1,"""South America""" +2024-07-02,46648,3583,"[\""Wireless Mouse\""]",363.98,"{\""promo\"": \""12%\""}",176183,0,"""Asia""" +2023-11-06,46649,87,"[\""Tablet\"", \""Phone\""]",2164.08,{},108102,0,"""North America""" +2024-06-18,46650,8404,"[\""Tablet\""]",3260.89,"{\""seasonal\"": \""13%\""}",145392,1,"""North America""" +2024-03-16,46651,9455,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1138.13,{},31673,0,"""South America""" +2024-09-27,46652,5945,"[\""Laptop\""]",3260.24,"{\""seasonal\"": \""25%\""}",22726,0,"""South America""" +2023-06-30,46653,8815,"[\""Charger\"", \""Wireless Mouse\""]",3364.21,"{\""seasonal\"": \""18%\""}",15527,0,"""Europe""" +2023-03-03,46654,8941,"[\""Phone\"", \""Wireless Mouse\""]",3662.01,{},242321,0,"""South America""" +2024-04-02,46655,5523,"[\""Monitor\"", \""Phone\""]",1537.81,{},201935,0,"""Africa""" +2023-11-26,46656,1789,"[\""Tablet\"", \""Headphones\""]",3203.48,{},114063,1,"""North America""" +2023-07-25,46657,7302,"[\""Charger\"", \""Wireless Mouse\""]",1011.49,{},6390,1,"""North America""" +2023-10-22,46658,2417,"[\""Keyboard\""]",3461.96,{},230738,0,"""North America""" +2023-06-19,46659,1506,"[\""Phone\""]",1868.24,{},105346,0,"""Africa""" +2023-01-06,46660,517,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3316.5,"{\""seasonal\"": \""10%\""}",68641,1,"""South America""" +2024-05-09,46661,6309,"[\""Headphones\"", \""Laptop\""]",2009.55,"{\""loyalty\"": \""13%\""}",109614,1,"""Europe""" +2024-11-06,46662,3284,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4632.69,{},155195,1,"""Asia""" +2023-03-23,46663,3244,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4824.62,"{\""seasonal\"": \""16%\""}",247368,1,"""Africa""" +2023-07-29,46664,998,"[\""Headphones\""]",4278.88,{},160744,0,"""South America""" +2024-01-23,46665,4335,"[\""Charger\"", \""Wireless Mouse\""]",3773.1,"{\"": \""24%\""}",20835,0,"""Europe""" +2023-07-30,46666,312,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1348.4,{},109257,1,"""Africa""" +2023-05-10,46667,3634,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",575.25,"{\""promo\"": \""20%\""}",165465,0,"""Europe""" +2024-07-13,46668,3478,"[\""Tablet\""]",4044.91,"{\""promo\"": \""22%\""}",294438,0,"""Africa""" +2023-06-04,46669,6373,"[\""Monitor\""]",856.98,{},83231,0,"""South America""" +2023-09-27,46670,9715,"[\""Headphones\""]",938.71,{},248563,0,"""Europe""" +2023-12-13,46671,652,"[\""Monitor\""]",2948.73,{},154514,1,"""Africa""" +2023-04-26,46672,3837,"[\""Laptop\""]",4442.4,{},126230,0,"""Africa""" +2023-01-02,46673,9317,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4345.72,{},246356,0,"""Europe""" +2024-05-05,46674,5887,"[\""Phone\""]",1601.03,"{\""promo\"": \""28%\""}",166821,0,"""Asia""" +2023-12-29,46675,2230,"[\""Phone\""]",3771.2,"{\""loyalty\"": \""13%\""}",264709,0,"""Asia""" +2024-04-01,46676,513,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4901.07,{},261403,0,"""Europe""" +2023-09-10,46677,2277,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2296.96,{},63855,1,"""Asia""" +2023-11-10,46678,5103,"[\""Keyboard\"", \""Tablet\""]",106.95,{},161763,1,"""North America""" +2024-04-17,46679,8506,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",372.84,"{\""promo\"": \""25%\""}",141693,1,"""Asia""" +2024-09-12,46680,4473,"[\""Phone\""]",4125.46,"{\""promo\"": \""10%\""}",121196,1,"""Asia""" +2024-07-15,46681,331,"[\""Keyboard\""]",2684.47,"{\"": \""9%\""}",6571,1,"""Africa""" +2024-07-18,46682,9712,"[\""Phone\""]",2036.24,"{\""seasonal\"": \""23%\""}",13848,1,"""Africa""" +2024-07-02,46683,1361,"[\""Headphones\"", \""Wireless Mouse\""]",140.38,"{\"": \""29%\""}",127624,0,"""Europe""" +2024-03-28,46684,9801,"[\""Tablet\""]",1335.0,{},193482,1,"""Asia""" +2024-01-01,46685,1883,"[\""Headphones\""]",2728.2,"{\""seasonal\"": \""13%\""}",152750,0,"""Europe""" +2024-04-27,46686,5902,"[\""Headphones\""]",4981.07,"{\""seasonal\"": \""8%\""}",27546,0,"""South America""" +2024-12-26,46687,9701,"[\""Charger\"", \""Tablet\""]",3236.37,{},146394,1,"""Europe""" +2023-11-10,46688,6526,"[\""Tablet\""]",1325.46,"{\""loyalty\"": \""25%\""}",237252,0,"""Europe""" +2023-09-12,46689,1197,"[\""Phone\"", \""Laptop\""]",931.14,{},112989,1,"""South America""" +2024-03-09,46690,4589,"[\""Keyboard\"", \""Tablet\""]",1872.01,"{\""promo\"": \""12%\""}",214826,0,"""Africa""" +2023-01-06,46691,3786,"[\""Keyboard\""]",2897.87,"{\""loyalty\"": \""13%\""}",38104,0,"""North America""" +2023-04-27,46692,6452,"[\""Charger\""]",3390.96,{},245224,0,"""North America""" +2024-05-05,46693,4316,"[\""Wireless Mouse\"", \""Headphones\""]",643.19,"{\""seasonal\"": \""7%\""}",246317,0,"""Europe""" +2023-05-21,46694,167,"[\""Charger\"", \""Headphones\""]",527.74,"{\""seasonal\"": \""6%\""}",2231,0,"""Africa""" +2023-07-12,46695,4166,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",969.07,{},32042,0,"""Asia""" +2024-11-30,46696,323,"[\""Wireless Mouse\""]",2458.74,"{\""promo\"": \""5%\""}",11091,0,"""Europe""" +2024-03-04,46697,7512,"[\""Tablet\"", \""Headphones\""]",3650.0,"{\""promo\"": \""24%\""}",141589,0,"""Europe""" +2023-09-04,46698,7227,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3171.03,{},144256,0,"""South America""" +2024-12-18,46699,1366,"[\""Keyboard\""]",3296.46,{},246331,1,"""Africa""" +2023-02-24,46700,5382,"[\""Headphones\"", \""Laptop\""]",3957.16,"{\""loyalty\"": \""25%\""}",114224,0,"""Asia""" +2023-05-06,46701,9534,"[\""Charger\""]",2617.43,"{\""promo\"": \""10%\""}",179794,0,"""Africa""" +2024-07-23,46702,9282,"[\""Charger\"", \""Wireless Mouse\""]",3030.51,{},78006,1,"""South America""" +2024-05-19,46703,9879,"[\""Keyboard\"", \""Phone\""]",2730.61,"{\""seasonal\"": \""17%\""}",71172,0,"""South America""" +2023-11-06,46704,7563,"[\""Keyboard\""]",490.94,"{\""loyalty\"": \""16%\""}",76547,0,"""Asia""" +2023-07-18,46705,177,"[\""Phone\"", \""Charger\""]",2241.31,"{\""seasonal\"": \""28%\""}",54874,0,"""Europe""" +2024-02-15,46706,8376,"[\""Headphones\""]",854.95,{},104238,1,"""Africa""" +2023-05-23,46707,1701,"[\""Keyboard\""]",1947.89,"{\""promo\"": \""18%\""}",88954,0,"""Europe""" +2023-10-18,46708,7247,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1939.57,"{\""seasonal\"": \""16%\""}",121578,1,"""Asia""" +2023-12-30,46709,4140,"[\""Headphones\"", \""Monitor\""]",1924.42,{},196480,1,"""South America""" +2024-09-03,46710,917,"[\""Charger\""]",756.43,{},118713,1,"""Africa""" +2024-02-14,46711,8355,"[\""Headphones\""]",2270.69,"{\""loyalty\"": \""22%\""}",54801,1,"""Africa""" +2023-01-06,46712,3800,"[\""Keyboard\"", \""Phone\""]",236.96,{},251217,0,"""North America""" +2024-08-09,46713,8196,"[\""Charger\"", \""Tablet\""]",858.39,"{\""seasonal\"": \""18%\""}",77191,0,"""Asia""" +2024-05-11,46714,8874,"[\""Wireless Mouse\"", \""Phone\""]",4810.69,"{\""promo\"": \""19%\""}",145821,1,"""Asia""" +2024-11-19,46715,7238,"[\""Monitor\""]",4902.89,{},148196,1,"""Europe""" +2023-11-20,46716,5651,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2232.14,{},126612,1,"""South America""" +2024-03-31,46717,1331,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2532.28,"{\""seasonal\"": \""18%\""}",69341,0,"""Africa""" +2023-10-05,46718,8287,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1824.62,"{\""promo\"": \""27%\""}",132043,1,"""Europe""" +2023-10-18,46719,3257,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",720.13,{},143181,0,"""Africa""" +2023-04-13,46720,1877,"[\""Laptop\""]",4931.96,{},69730,0,"""Europe""" +2023-08-14,46721,4410,"[\""Laptop\"", \""Headphones\""]",993.74,"{\""loyalty\"": \""6%\""}",79676,0,"""Africa""" +2023-03-06,46722,5840,"[\""Tablet\""]",3386.09,"{\""loyalty\"": \""27%\""}",138976,1,"""South America""" +2023-08-26,46723,4683,"[\""Keyboard\"", \""Wireless Mouse\""]",1376.4,{},239311,0,"""Europe""" +2023-06-07,46724,2253,"[\""Tablet\""]",2569.38,"{\""seasonal\"": \""14%\""}",195193,1,"""Asia""" +2023-09-02,46725,1892,"[\""Tablet\"", \""Headphones\""]",1229.82,{},4583,0,"""South America""" +2023-12-10,46726,9985,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4317.15,{},95319,0,"""Europe""" +2023-07-17,46727,899,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1068.94,{},198109,0,"""South America""" +2023-01-04,46728,1853,"[\""Keyboard\"", \""Monitor\""]",820.19,"{\""seasonal\"": \""16%\""}",290887,0,"""South America""" +2023-03-12,46729,6308,"[\""Tablet\"", \""Headphones\""]",3856.84,{},187663,0,"""Africa""" +2023-03-09,46730,45,"[\""Phone\""]",1334.12,"{\"": \""24%\""}",8938,1,"""North America""" +2024-02-20,46731,1815,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4433.28,"{\""loyalty\"": \""27%\""}",116222,0,"""Africa""" +2023-10-10,46732,5003,"[\""Tablet\""]",1381.28,{},81284,0,"""Africa""" +2023-12-08,46733,5531,"[\""Laptop\""]",1662.47,"{\""promo\"": \""16%\""}",9223,1,"""Africa""" +2023-01-06,46734,7771,"[\""Phone\""]",399.24,"{\""seasonal\"": \""12%\""}",238503,1,"""South America""" +2023-11-18,46735,3739,"[\""Charger\"", \""Headphones\""]",313.87,"{\""seasonal\"": \""10%\""}",152095,0,"""Asia""" +2024-11-09,46736,2565,"[\""Headphones\""]",4760.04,{},239563,0,"""Asia""" +2023-06-11,46737,3116,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2328.17,"{\""seasonal\"": \""29%\""}",241037,1,"""Asia""" +2024-12-30,46738,4423,"[\""Keyboard\""]",1219.84,"{\"": \""16%\""}",293667,0,"""South America""" +2024-02-11,46739,5900,"[\""Headphones\""]",1227.25,{},142168,1,"""Europe""" +2024-04-07,46740,3297,"[\""Charger\""]",4758.26,{},269637,1,"""Africa""" +2024-06-23,46741,5187,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3926.66,{},93527,1,"""Europe""" +2024-07-09,46742,2113,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",382.48,"{\""seasonal\"": \""28%\""}",143274,1,"""North America""" +2024-10-20,46743,3079,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1871.73,{},40979,1,"""Asia""" +2024-11-18,46744,5492,"[\""Keyboard\""]",1101.17,"{\""promo\"": \""9%\""}",261907,1,"""North America""" +2024-06-24,46745,4472,"[\""Phone\"", \""Keyboard\""]",419.84,"{\""seasonal\"": \""19%\""}",175581,1,"""South America""" +2023-08-27,46746,1663,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3996.99,{},13827,0,"""South America""" +2024-09-03,46747,4199,"[\""Laptop\"", \""Tablet\""]",113.25,{},149233,0,"""Europe""" +2024-03-23,46748,9607,"[\""Phone\""]",1319.19,{},169739,1,"""Asia""" +2023-06-10,46749,6774,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1185.43,"{\""promo\"": \""27%\""}",177185,0,"""South America""" +2024-09-09,46750,8228,"[\""Wireless Mouse\"", \""Laptop\""]",2780.76,{},227498,0,"""Asia""" +2024-05-09,46751,1637,"[\""Phone\"", \""Headphones\""]",1764.12,"{\""promo\"": \""13%\""}",283545,0,"""North America""" +2023-11-28,46752,6085,"[\""Wireless Mouse\"", \""Charger\""]",3496.16,{},28921,0,"""Europe""" +2024-12-10,46753,8783,"[\""Phone\"", \""Laptop\""]",2007.18,{},176140,0,"""Asia""" +2023-05-01,46754,2430,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",940.53,{},152226,0,"""North America""" +2023-11-24,46755,8327,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",986.2,{},82114,0,"""North America""" +2023-04-27,46756,2829,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2955.9,"{\""seasonal\"": \""6%\""}",252109,1,"""South America""" +2024-11-03,46757,3526,"[\""Keyboard\""]",2605.59,{},231257,1,"""South America""" +2024-05-05,46758,7213,"[\""Keyboard\""]",1380.4,"{\""seasonal\"": \""8%\""}",145858,1,"""Europe""" +2024-05-07,46759,9358,"[\""Headphones\"", \""Wireless Mouse\""]",3578.48,"{\""seasonal\"": \""11%\""}",147793,1,"""Asia""" +2023-12-26,46760,6392,"[\""Laptop\""]",2147.65,"{\""promo\"": \""15%\""}",246592,0,"""Asia""" +2023-04-17,46761,7883,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4760.75,"{\"": \""8%\""}",224415,0,"""North America""" +2024-09-08,46762,6501,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",940.41,"{\""seasonal\"": \""20%\""}",211495,0,"""Africa""" +2023-09-24,46763,4745,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4476.24,"{\"": \""10%\""}",185043,1,"""Africa""" +2024-08-16,46764,5934,"[\""Monitor\"", \""Keyboard\""]",2806.64,{},214381,0,"""Africa""" +2024-02-01,46765,6115,"[\""Laptop\""]",806.9,"{\"": \""19%\""}",165809,0,"""Asia""" +2023-11-22,46766,2572,"[\""Charger\""]",2176.71,{},273718,0,"""Africa""" +2024-09-16,46767,6251,"[\""Laptop\""]",3921.48,"{\""promo\"": \""18%\""}",136454,0,"""Europe""" +2024-12-28,46768,6682,"[\""Headphones\""]",1833.64,"{\""promo\"": \""15%\""}",165876,1,"""North America""" +2023-05-28,46769,6116,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1289.39,{},237876,1,"""Asia""" +2024-08-14,46770,4234,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2257.28,{},132128,0,"""Asia""" +2024-06-03,46771,5816,"[\""Wireless Mouse\""]",4982.87,"{\"": \""29%\""}",218882,0,"""North America""" +2024-07-27,46772,1636,"[\""Keyboard\""]",1828.57,"{\""seasonal\"": \""17%\""}",2469,0,"""North America""" +2023-08-03,46773,6294,"[\""Laptop\"", \""Tablet\""]",1428.8,{},90858,0,"""Asia""" +2024-11-15,46774,7410,"[\""Headphones\"", \""Laptop\""]",1730.3,{},54973,1,"""Africa""" +2024-02-24,46775,5977,"[\""Tablet\"", \""Monitor\""]",3911.97,"{\""promo\"": \""8%\""}",193864,1,"""South America""" +2024-04-16,46776,903,"[\""Wireless Mouse\"", \""Keyboard\""]",501.69,{},240403,1,"""Africa""" +2024-07-24,46777,6184,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2569.53,{},290349,0,"""Europe""" +2023-03-31,46778,7910,"[\""Headphones\"", \""Phone\""]",1319.43,"{\""promo\"": \""22%\""}",281454,1,"""North America""" +2024-03-17,46779,2663,"[\""Monitor\"", \""Wireless Mouse\""]",3204.61,"{\"": \""27%\""}",246297,0,"""Asia""" +2024-01-08,46780,8750,"[\""Monitor\"", \""Wireless Mouse\""]",2533.08,"{\""promo\"": \""30%\""}",222003,0,"""Asia""" +2024-11-04,46781,5424,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1699.56,"{\"": \""10%\""}",140623,0,"""North America""" +2023-10-22,46782,7691,"[\""Headphones\""]",4666.4,"{\"": \""15%\""}",138613,1,"""Africa""" +2023-01-25,46783,1205,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2154.56,"{\""promo\"": \""11%\""}",219829,0,"""Asia""" +2024-09-02,46784,961,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",835.06,"{\"": \""7%\""}",20967,1,"""North America""" +2024-04-26,46785,2699,"[\""Keyboard\"", \""Charger\""]",308.03,{},144403,1,"""Europe""" +2024-04-07,46786,8167,"[\""Keyboard\"", \""Laptop\""]",4545.43,"{\""promo\"": \""20%\""}",73147,0,"""South America""" +2023-06-02,46787,9046,"[\""Tablet\"", \""Headphones\""]",3338.26,{},58095,1,"""Africa""" +2024-03-21,46788,1790,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4341.39,{},177887,1,"""South America""" +2023-03-09,46789,7957,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1087.19,"{\"": \""14%\""}",242937,0,"""Europe""" +2024-08-23,46790,3390,"[\""Tablet\"", \""Wireless Mouse\""]",3019.96,"{\""loyalty\"": \""7%\""}",91682,0,"""Europe""" +2023-11-06,46791,1168,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3385.89,"{\""loyalty\"": \""9%\""}",148662,1,"""Asia""" +2023-03-04,46792,2017,"[\""Monitor\""]",305.81,"{\""promo\"": \""29%\""}",71527,1,"""Africa""" +2024-11-20,46793,5038,"[\""Keyboard\""]",4975.95,"{\""promo\"": \""10%\""}",15955,1,"""Europe""" +2023-10-10,46794,6653,"[\""Phone\""]",1767.56,"{\""seasonal\"": \""19%\""}",299298,1,"""South America""" +2023-12-24,46795,7631,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3286.77,"{\""loyalty\"": \""28%\""}",235990,0,"""North America""" +2023-12-06,46796,3705,"[\""Phone\"", \""Keyboard\""]",1435.72,"{\""seasonal\"": \""11%\""}",183959,0,"""Europe""" +2023-07-10,46797,4562,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4920.07,{},107590,1,"""Europe""" +2024-01-19,46798,4683,"[\""Keyboard\"", \""Laptop\""]",4247.74,"{\""seasonal\"": \""16%\""}",172447,0,"""Europe""" +2024-09-07,46799,4564,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4708.82,{},142771,1,"""South America""" +2024-06-10,46800,9502,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2801.21,"{\""seasonal\"": \""19%\""}",32484,0,"""South America""" +2023-05-04,46801,9456,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4705.82,{},44666,1,"""North America""" +2024-08-21,46802,6990,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1740.07,{},47437,0,"""North America""" +2024-10-11,46803,1326,"[\""Keyboard\"", \""Tablet\""]",1064.47,"{\""loyalty\"": \""5%\""}",92769,0,"""Asia""" +2023-11-10,46804,4075,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2370.82,{},152892,0,"""South America""" +2023-05-20,46805,6050,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4175.42,"{\""promo\"": \""19%\""}",87721,1,"""Europe""" +2024-09-23,46806,3005,"[\""Tablet\"", \""Keyboard\""]",1272.99,"{\""seasonal\"": \""7%\""}",299901,0,"""North America""" +2024-06-21,46807,4872,"[\""Laptop\"", \""Phone\""]",500.23,{},118950,0,"""South America""" +2023-03-30,46808,264,"[\""Keyboard\""]",2947.64,{},169284,0,"""Europe""" +2024-12-17,46809,4464,"[\""Tablet\"", \""Laptop\""]",1758.0,"{\"": \""30%\""}",137989,0,"""Asia""" +2023-04-23,46810,8413,"[\""Tablet\""]",1577.58,"{\""seasonal\"": \""18%\""}",207111,0,"""Asia""" +2023-04-01,46811,7031,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4688.86,{},145454,1,"""Africa""" +2024-11-29,46812,3899,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4182.02,"{\""seasonal\"": \""22%\""}",7706,0,"""Europe""" +2023-10-05,46813,4911,"[\""Monitor\"", \""Headphones\""]",4312.44,"{\"": \""26%\""}",46335,1,"""North America""" +2024-06-23,46814,924,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2388.5,"{\"": \""29%\""}",145940,0,"""North America""" +2024-12-05,46815,6674,"[\""Wireless Mouse\"", \""Laptop\""]",249.99,"{\""promo\"": \""27%\""}",267960,0,"""Asia""" +2023-07-24,46816,5886,"[\""Wireless Mouse\"", \""Phone\""]",416.99,"{\""promo\"": \""9%\""}",18629,1,"""Africa""" +2024-05-14,46817,3915,"[\""Laptop\""]",720.1,{},19345,1,"""Africa""" +2024-12-25,46818,4910,"[\""Laptop\""]",4683.16,"{\""loyalty\"": \""5%\""}",266717,0,"""North America""" +2023-11-07,46819,8632,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",633.62,{},285758,0,"""South America""" +2024-02-13,46820,4362,"[\""Tablet\""]",4718.32,{},235907,0,"""Asia""" +2024-04-30,46821,2228,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3589.81,"{\""loyalty\"": \""6%\""}",261108,0,"""Europe""" +2023-02-08,46822,6823,"[\""Keyboard\""]",4132.95,{},119586,0,"""Europe""" +2023-04-17,46823,1421,"[\""Headphones\"", \""Charger\""]",449.25,"{\""promo\"": \""27%\""}",292278,0,"""Europe""" +2023-11-01,46824,2122,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2213.68,{},298705,0,"""Europe""" +2023-06-24,46825,5882,"[\""Phone\"", \""Keyboard\""]",211.67,"{\""seasonal\"": \""5%\""}",283524,1,"""North America""" +2024-09-16,46826,5937,"[\""Monitor\"", \""Tablet\""]",4683.9,"{\""loyalty\"": \""20%\""}",162207,0,"""Europe""" +2024-04-17,46827,9590,"[\""Charger\""]",1116.72,"{\""promo\"": \""6%\""}",110710,1,"""Africa""" +2024-11-12,46828,5371,"[\""Headphones\""]",63.32,"{\""promo\"": \""8%\""}",69164,0,"""Asia""" +2024-01-28,46829,6652,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3120.01,{},206077,1,"""Africa""" +2024-05-18,46830,892,"[\""Headphones\""]",3968.03,"{\""promo\"": \""21%\""}",260099,1,"""Africa""" +2023-08-30,46831,5411,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2750.16,"{\""promo\"": \""10%\""}",257326,0,"""South America""" +2023-07-10,46832,5081,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",128.07,"{\""promo\"": \""15%\""}",281639,0,"""Europe""" +2024-10-05,46833,1649,"[\""Keyboard\""]",4956.34,"{\""loyalty\"": \""16%\""}",140049,0,"""Africa""" +2023-01-25,46834,8045,"[\""Monitor\"", \""Laptop\""]",1079.89,"{\""promo\"": \""20%\""}",47875,0,"""North America""" +2024-07-19,46835,695,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2077.85,"{\""promo\"": \""9%\""}",177314,1,"""South America""" +2024-11-27,46836,7358,"[\""Monitor\"", \""Headphones\""]",891.16,"{\""promo\"": \""7%\""}",151713,1,"""Europe""" +2024-10-19,46837,206,"[\""Tablet\""]",3477.89,"{\""seasonal\"": \""26%\""}",137351,1,"""Asia""" +2024-06-18,46838,8008,"[\""Wireless Mouse\"", \""Tablet\""]",2473.39,"{\""loyalty\"": \""6%\""}",293035,1,"""South America""" +2023-08-18,46839,5095,"[\""Tablet\"", \""Headphones\""]",2219.09,"{\""promo\"": \""6%\""}",172222,0,"""South America""" +2023-12-15,46840,9389,"[\""Monitor\"", \""Charger\""]",658.85,{},8433,0,"""South America""" +2024-06-23,46841,7566,"[\""Wireless Mouse\""]",1813.8,"{\""promo\"": \""13%\""}",270172,1,"""North America""" +2023-02-07,46842,6554,"[\""Phone\""]",4650.04,{},16692,0,"""Asia""" +2024-01-08,46843,2343,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2374.65,{},195872,1,"""Africa""" +2023-04-01,46844,9299,"[\""Wireless Mouse\"", \""Keyboard\""]",3704.09,{},195357,1,"""South America""" +2023-09-23,46845,5467,"[\""Charger\""]",1431.92,"{\"": \""24%\""}",112188,1,"""Asia""" +2023-03-31,46846,2965,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4055.04,"{\"": \""19%\""}",43809,0,"""North America""" +2024-05-16,46847,5363,"[\""Charger\"", \""Headphones\""]",3562.38,{},265323,1,"""Africa""" +2024-10-13,46848,4468,"[\""Laptop\""]",126.63,"{\""loyalty\"": \""29%\""}",274330,1,"""Europe""" +2024-04-27,46849,5283,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",378.16,"{\""promo\"": \""13%\""}",94722,1,"""Europe""" +2023-10-23,46850,7651,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",66.92,{},138769,0,"""North America""" +2023-02-18,46851,6736,"[\""Wireless Mouse\"", \""Charger\""]",863.08,{},285890,0,"""North America""" +2024-12-18,46852,9772,"[\""Wireless Mouse\""]",2407.22,{},36396,1,"""North America""" +2023-04-19,46853,7479,"[\""Headphones\""]",281.61,{},62675,1,"""North America""" +2023-10-17,46854,3618,"[\""Phone\""]",4509.65,{},5562,0,"""North America""" +2024-10-12,46855,4599,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2768.44,"{\""seasonal\"": \""11%\""}",240120,0,"""South America""" +2023-01-24,46856,6014,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1129.92,"{\""promo\"": \""9%\""}",298730,0,"""Africa""" +2023-11-04,46857,8058,"[\""Phone\"", \""Tablet\""]",1649.96,"{\""promo\"": \""13%\""}",50666,0,"""North America""" +2023-10-25,46858,1516,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4375.52,"{\""promo\"": \""26%\""}",95017,0,"""Africa""" +2024-08-02,46859,6280,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3199.02,"{\""loyalty\"": \""12%\""}",45877,1,"""Europe""" +2024-08-10,46860,3635,"[\""Wireless Mouse\"", \""Charger\""]",4925.86,"{\"": \""14%\""}",221287,0,"""Asia""" +2023-08-12,46861,6132,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2179.54,"{\""loyalty\"": \""21%\""}",99120,0,"""Africa""" +2024-10-22,46862,7325,"[\""Monitor\""]",4686.11,{},184992,0,"""Europe""" +2024-02-18,46863,8234,"[\""Charger\"", \""Wireless Mouse\""]",4499.81,"{\""loyalty\"": \""11%\""}",130373,1,"""Europe""" +2023-09-05,46864,4939,"[\""Tablet\"", \""Keyboard\""]",399.46,"{\"": \""16%\""}",196760,1,"""Europe""" +2023-04-29,46865,39,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1687.42,"{\""seasonal\"": \""16%\""}",11079,1,"""Africa""" +2024-03-25,46866,8207,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4216.37,{},175331,1,"""South America""" +2024-11-29,46867,7206,"[\""Headphones\""]",4396.13,{},130337,0,"""Europe""" +2023-06-05,46868,5755,"[\""Tablet\"", \""Keyboard\""]",4026.07,"{\""promo\"": \""5%\""}",117001,1,"""Africa""" +2023-05-28,46869,9429,"[\""Phone\""]",4855.01,{},242372,1,"""Africa""" +2023-12-31,46870,3689,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1518.61,{},8957,1,"""North America""" +2024-03-21,46871,483,"[\""Headphones\""]",3473.51,"{\""promo\"": \""18%\""}",78449,0,"""Europe""" +2023-04-24,46872,6716,"[\""Charger\""]",1873.18,{},126186,0,"""South America""" +2023-03-17,46873,2990,"[\""Laptop\""]",2379.28,"{\""promo\"": \""30%\""}",215294,1,"""Africa""" +2024-10-30,46874,6587,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4430.61,"{\""promo\"": \""19%\""}",164456,1,"""Asia""" +2024-07-13,46875,1103,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3512.26,{},3812,1,"""South America""" +2024-02-28,46876,4411,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2516.92,"{\""loyalty\"": \""11%\""}",14093,1,"""Europe""" +2023-08-05,46877,3873,"[\""Phone\"", \""Keyboard\""]",4204.21,"{\""promo\"": \""13%\""}",83766,1,"""Europe""" +2024-07-02,46878,3108,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2125.44,{},154894,1,"""North America""" +2023-05-29,46879,2456,"[\""Charger\"", \""Tablet\""]",2583.93,{},179465,1,"""Africa""" +2024-04-24,46880,5749,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2178.36,{},294600,1,"""Europe""" +2024-02-19,46881,6453,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3806.16,"{\""promo\"": \""9%\""}",14340,0,"""Africa""" +2023-05-18,46882,3618,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2406.19,"{\""seasonal\"": \""28%\""}",81453,0,"""Europe""" +2024-07-28,46883,4108,"[\""Laptop\"", \""Wireless Mouse\""]",148.74,{},5843,0,"""Europe""" +2023-09-12,46884,3352,"[\""Wireless Mouse\""]",4392.84,"{\""loyalty\"": \""19%\""}",217072,0,"""South America""" +2023-06-29,46885,6236,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1209.42,{},31018,0,"""North America""" +2024-06-15,46886,2790,"[\""Wireless Mouse\"", \""Charger\""]",1135.22,"{\""seasonal\"": \""6%\""}",207610,1,"""Africa""" +2023-10-28,46887,8170,"[\""Tablet\""]",2234.55,"{\""promo\"": \""7%\""}",29966,1,"""North America""" +2024-12-30,46888,9614,"[\""Headphones\""]",2804.57,{},74894,1,"""Europe""" +2023-02-08,46889,6342,"[\""Charger\"", \""Keyboard\""]",1864.62,{},172309,0,"""South America""" +2023-09-28,46890,1229,"[\""Laptop\""]",2140.72,{},122703,1,"""South America""" +2024-05-01,46891,1845,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",169.37,"{\""seasonal\"": \""8%\""}",233341,0,"""South America""" +2023-02-10,46892,9887,"[\""Phone\"", \""Monitor\""]",1430.45,{},287302,0,"""Europe""" +2023-07-23,46893,9022,"[\""Laptop\""]",3567.63,"{\""loyalty\"": \""13%\""}",74840,1,"""Asia""" +2023-09-28,46894,5377,"[\""Charger\"", \""Tablet\""]",1061.54,"{\"": \""16%\""}",24051,0,"""Europe""" +2024-12-22,46895,9882,"[\""Monitor\"", \""Laptop\""]",3292.61,"{\"": \""22%\""}",35250,0,"""Europe""" +2024-10-04,46896,2484,"[\""Monitor\""]",4450.87,"{\"": \""27%\""}",24597,0,"""North America""" +2023-11-21,46897,1474,"[\""Tablet\"", \""Wireless Mouse\""]",1975.11,{},47883,1,"""North America""" +2023-03-12,46898,3232,"[\""Charger\"", \""Keyboard\""]",4336.58,{},81081,0,"""Asia""" +2023-06-26,46899,103,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3557.55,"{\""seasonal\"": \""30%\""}",146548,1,"""Europe""" +2023-02-24,46900,865,"[\""Laptop\"", \""Headphones\""]",4427.06,{},149671,1,"""Africa""" +2023-03-21,46901,8408,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3751.56,{},109905,0,"""Europe""" +2023-03-27,46902,4340,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",942.1,"{\"": \""9%\""}",131316,0,"""Asia""" +2023-09-19,46903,1650,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4484.55,"{\"": \""8%\""}",163615,0,"""Asia""" +2024-12-31,46904,6002,"[\""Monitor\"", \""Headphones\""]",2252.54,{},271728,0,"""Europe""" +2024-02-13,46905,3041,"[\""Phone\"", \""Headphones\""]",4876.02,"{\"": \""9%\""}",155779,1,"""Africa""" +2024-11-01,46906,5277,"[\""Monitor\""]",2270.23,"{\""promo\"": \""17%\""}",107074,0,"""Africa""" +2024-01-27,46907,7109,"[\""Laptop\"", \""Wireless Mouse\""]",2311.57,{},204303,0,"""Asia""" +2023-01-22,46908,5307,"[\""Keyboard\"", \""Headphones\""]",3755.41,"{\""promo\"": \""13%\""}",90576,1,"""Asia""" +2024-10-09,46909,1751,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3240.72,{},244439,1,"""South America""" +2023-09-09,46910,7994,"[\""Wireless Mouse\""]",4074.84,"{\""seasonal\"": \""9%\""}",218883,0,"""Africa""" +2023-12-26,46911,4629,"[\""Keyboard\"", \""Wireless Mouse\""]",1493.93,"{\"": \""5%\""}",114734,0,"""North America""" +2024-07-31,46912,6264,"[\""Wireless Mouse\""]",2883.82,{},252599,1,"""North America""" +2024-08-11,46913,9990,"[\""Headphones\"", \""Wireless Mouse\""]",1382.14,{},86531,1,"""Asia""" +2023-08-15,46914,5612,"[\""Laptop\"", \""Wireless Mouse\""]",2606.24,{},106588,1,"""Africa""" +2024-10-13,46915,4426,"[\""Tablet\""]",329.18,"{\""loyalty\"": \""10%\""}",216946,1,"""Europe""" +2024-10-05,46916,3813,"[\""Tablet\"", \""Wireless Mouse\""]",4571.71,"{\""promo\"": \""24%\""}",292414,0,"""North America""" +2023-10-08,46917,4939,"[\""Keyboard\"", \""Wireless Mouse\""]",2829.37,{},173982,0,"""South America""" +2023-09-14,46918,4596,"[\""Monitor\"", \""Tablet\""]",2286.02,{},185732,1,"""North America""" +2024-08-12,46919,3962,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4811.02,"{\""seasonal\"": \""10%\""}",16939,1,"""Europe""" +2024-05-24,46920,8223,"[\""Keyboard\""]",2234.58,"{\""promo\"": \""8%\""}",271531,0,"""Asia""" +2023-01-14,46921,3741,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1264.92,"{\"": \""22%\""}",194114,1,"""Asia""" +2023-06-20,46922,628,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2101.46,"{\"": \""10%\""}",165576,1,"""North America""" +2023-01-23,46923,9120,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3380.5,"{\""seasonal\"": \""11%\""}",3121,0,"""Europe""" +2023-03-10,46924,5691,"[\""Wireless Mouse\"", \""Charger\""]",4815.44,"{\""loyalty\"": \""13%\""}",15834,0,"""South America""" +2023-09-24,46925,7,"[\""Wireless Mouse\"", \""Tablet\""]",1409.31,"{\""promo\"": \""6%\""}",145707,1,"""North America""" +2023-09-17,46926,784,"[\""Laptop\""]",364.0,"{\""promo\"": \""27%\""}",226140,1,"""Africa""" +2023-01-12,46927,2468,"[\""Laptop\""]",1764.94,{},214203,0,"""Europe""" +2024-11-21,46928,6380,"[\""Tablet\"", \""Wireless Mouse\""]",2965.92,"{\""seasonal\"": \""7%\""}",126379,0,"""Africa""" +2023-12-02,46929,4878,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2185.29,{},124234,0,"""South America""" +2024-09-11,46930,6896,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1041.84,"{\""loyalty\"": \""10%\""}",33157,1,"""Asia""" +2023-08-07,46931,9370,"[\""Charger\""]",231.15,"{\""promo\"": \""7%\""}",53451,1,"""Asia""" +2024-10-30,46932,6245,"[\""Laptop\""]",1192.81,{},278758,0,"""South America""" +2023-12-29,46933,9381,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4521.87,"{\"": \""5%\""}",240574,1,"""North America""" +2023-12-07,46934,8495,"[\""Headphones\"", \""Charger\""]",296.51,{},222495,0,"""Asia""" +2024-12-30,46935,5125,"[\""Headphones\""]",2817.55,"{\""seasonal\"": \""21%\""}",175337,1,"""North America""" +2023-10-29,46936,6273,"[\""Keyboard\"", \""Phone\""]",4315.56,{},258935,1,"""Asia""" +2024-11-10,46937,9512,"[\""Phone\""]",2947.21,{},191218,1,"""Europe""" +2024-07-01,46938,5211,"[\""Charger\"", \""Laptop\""]",3001.34,"{\"": \""15%\""}",176987,0,"""South America""" +2024-09-25,46939,7900,"[\""Charger\""]",1689.59,{},78891,1,"""Europe""" +2023-12-06,46940,1083,"[\""Phone\"", \""Charger\"", \""Headphones\""]",562.6,{},1395,1,"""Asia""" +2024-07-24,46941,3696,"[\""Charger\"", \""Keyboard\""]",1989.04,"{\""seasonal\"": \""13%\""}",68062,1,"""Africa""" +2023-08-07,46942,7671,"[\""Keyboard\"", \""Monitor\""]",1147.37,{},214562,0,"""North America""" +2023-01-26,46943,7442,"[\""Headphones\"", \""Tablet\""]",1839.02,"{\""promo\"": \""15%\""}",69149,1,"""Africa""" +2024-09-22,46944,3632,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1957.63,{},232764,0,"""South America""" +2023-06-03,46945,6900,"[\""Charger\""]",60.48,"{\""loyalty\"": \""7%\""}",67342,0,"""Asia""" +2024-07-11,46946,5956,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",863.61,{},240957,0,"""South America""" +2024-10-01,46947,5366,"[\""Tablet\"", \""Phone\""]",3784.97,{},111584,0,"""Asia""" +2023-01-21,46948,1857,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4529.48,{},285519,1,"""Africa""" +2024-06-09,46949,6837,"[\""Keyboard\"", \""Charger\""]",4460.23,"{\""promo\"": \""26%\""}",38505,0,"""Africa""" +2023-01-05,46950,2808,"[\""Charger\"", \""Keyboard\""]",2318.36,{},157745,0,"""South America""" +2024-04-01,46951,1166,"[\""Charger\""]",2074.31,"{\""loyalty\"": \""20%\""}",225020,0,"""Asia""" +2024-10-14,46952,8167,"[\""Headphones\""]",4520.46,{},220764,1,"""Europe""" +2023-09-08,46953,5876,"[\""Wireless Mouse\""]",4948.43,{},254962,1,"""Asia""" +2023-05-21,46954,9387,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",691.44,{},67846,0,"""Europe""" +2023-10-09,46955,6123,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4383.71,"{\"": \""25%\""}",41317,1,"""North America""" +2023-01-28,46956,8125,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",935.82,"{\""loyalty\"": \""6%\""}",94264,1,"""North America""" +2023-07-01,46957,6031,"[\""Headphones\"", \""Phone\""]",4299.78,{},227839,0,"""North America""" +2024-10-25,46958,7630,"[\""Charger\"", \""Tablet\""]",1111.94,"{\""loyalty\"": \""25%\""}",274328,0,"""Europe""" +2023-12-04,46959,7842,"[\""Charger\"", \""Phone\""]",4001.64,{},45994,1,"""Africa""" +2023-01-17,46960,8242,"[\""Phone\"", \""Tablet\""]",1866.4,"{\""promo\"": \""10%\""}",142182,1,"""Africa""" +2023-11-19,46961,3032,"[\""Laptop\""]",4375.36,{},192896,1,"""Europe""" +2023-05-08,46962,1702,"[\""Charger\"", \""Headphones\""]",4312.27,{},56652,0,"""Europe""" +2024-01-06,46963,7635,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2043.56,"{\""loyalty\"": \""21%\""}",42302,0,"""North America""" +2023-10-01,46964,3832,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1884.7,"{\""promo\"": \""30%\""}",29449,0,"""South America""" +2023-08-31,46965,4162,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2533.72,"{\""promo\"": \""9%\""}",235402,0,"""Africa""" +2023-02-08,46966,7309,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4078.28,"{\""loyalty\"": \""23%\""}",140974,0,"""North America""" +2023-09-09,46967,1464,"[\""Keyboard\""]",3134.79,{},168517,1,"""Africa""" +2023-08-19,46968,741,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2702.01,{},206283,1,"""Africa""" +2024-11-23,46969,156,"[\""Phone\""]",4598.95,{},45266,1,"""North America""" +2023-06-27,46970,6706,"[\""Headphones\"", \""Monitor\""]",4335.39,"{\"": \""5%\""}",299762,1,"""North America""" +2023-08-16,46971,5111,"[\""Tablet\"", \""Monitor\""]",1919.18,{},195538,0,"""Europe""" +2023-11-01,46972,8537,"[\""Wireless Mouse\"", \""Tablet\""]",1248.98,{},290436,1,"""North America""" +2024-12-23,46973,9300,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3628.43,"{\"": \""23%\""}",58614,0,"""Europe""" +2023-08-01,46974,5355,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4791.45,"{\""seasonal\"": \""14%\""}",122638,0,"""North America""" +2024-02-17,46975,69,"[\""Keyboard\""]",125.93,{},109291,0,"""North America""" +2024-07-08,46976,449,"[\""Headphones\"", \""Phone\""]",4271.52,"{\"": \""5%\""}",200590,0,"""North America""" +2023-12-19,46977,2003,"[\""Wireless Mouse\"", \""Charger\""]",3532.68,"{\""seasonal\"": \""8%\""}",106825,0,"""South America""" +2024-03-25,46978,4175,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3512.09,{},8294,0,"""South America""" +2024-06-21,46979,8614,"[\""Wireless Mouse\""]",3381.35,"{\""loyalty\"": \""19%\""}",218294,0,"""Asia""" +2023-12-01,46980,4166,"[\""Phone\""]",4883.75,{},167862,1,"""Europe""" +2024-11-27,46981,107,"[\""Phone\"", \""Wireless Mouse\""]",2083.66,"{\""seasonal\"": \""10%\""}",262223,1,"""Asia""" +2023-07-09,46982,5298,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4638.71,"{\"": \""15%\""}",79377,1,"""South America""" +2024-02-13,46983,1832,"[\""Tablet\""]",2037.31,"{\""loyalty\"": \""5%\""}",165289,1,"""Europe""" +2024-06-09,46984,7241,"[\""Laptop\"", \""Charger\""]",2949.36,"{\"": \""30%\""}",214453,1,"""North America""" +2024-01-14,46985,3721,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4110.54,"{\""seasonal\"": \""27%\""}",279069,0,"""Europe""" +2023-07-25,46986,2597,"[\""Monitor\"", \""Headphones\""]",603.3,{},2660,0,"""Asia""" +2024-07-14,46987,6541,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2944.56,"{\""loyalty\"": \""11%\""}",166821,0,"""Africa""" +2024-07-13,46988,6874,"[\""Laptop\""]",1821.22,"{\"": \""29%\""}",153675,1,"""Europe""" +2023-08-11,46989,9082,"[\""Phone\"", \""Tablet\""]",443.1,"{\"": \""22%\""}",60157,1,"""Asia""" +2024-04-06,46990,6228,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4638.27,{},63401,0,"""Asia""" +2024-01-16,46991,9720,"[\""Tablet\""]",1120.27,"{\""seasonal\"": \""9%\""}",293521,1,"""North America""" +2023-12-30,46992,1231,"[\""Keyboard\""]",3277.63,"{\""loyalty\"": \""22%\""}",53245,0,"""North America""" +2023-10-04,46993,3952,"[\""Wireless Mouse\""]",2034.28,{},49331,1,"""Africa""" +2024-07-08,46994,8504,"[\""Wireless Mouse\"", \""Laptop\""]",1424.54,"{\""promo\"": \""5%\""}",20181,0,"""Africa""" +2024-04-05,46995,7260,"[\""Headphones\"", \""Phone\""]",3583.49,"{\"": \""11%\""}",193783,0,"""Europe""" +2024-01-31,46996,7813,"[\""Laptop\"", \""Monitor\""]",4346.07,"{\""seasonal\"": \""20%\""}",62809,0,"""Europe""" +2024-11-30,46997,9387,"[\""Laptop\""]",3023.02,{},215083,1,"""North America""" +2023-10-09,46998,5118,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2154.69,{},114782,1,"""Africa""" +2023-09-16,46999,5981,"[\""Monitor\""]",3410.12,{},189314,1,"""South America""" +2023-05-10,47000,6396,"[\""Phone\"", \""Laptop\""]",2311.44,{},166131,0,"""Europe""" +2023-04-29,47001,4976,"[\""Monitor\""]",3174.18,{},63280,1,"""North America""" +2023-03-12,47002,7485,"[\""Monitor\""]",4114.29,{},184593,0,"""Europe""" +2023-09-27,47003,1666,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",535.31,{},11905,0,"""North America""" +2023-06-13,47004,5209,"[\""Wireless Mouse\"", \""Charger\""]",3087.25,{},223977,1,"""South America""" +2023-10-04,47005,5667,"[\""Wireless Mouse\""]",1040.26,{},13427,0,"""Asia""" +2024-02-28,47006,5005,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3545.33,{},231714,1,"""North America""" +2024-05-27,47007,6291,"[\""Phone\"", \""Monitor\""]",2761.26,{},91382,1,"""Africa""" +2023-04-27,47008,1861,"[\""Headphones\""]",3155.9,{},133189,1,"""Africa""" +2024-02-11,47009,3571,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4311.95,{},267570,0,"""Asia""" +2023-07-14,47010,7653,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3845.09,{},182590,1,"""Asia""" +2023-06-25,47011,183,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3999.13,{},149169,1,"""Africa""" +2024-01-10,47012,3070,"[\""Phone\"", \""Laptop\""]",1224.43,"{\"": \""22%\""}",209844,0,"""Europe""" +2024-04-02,47013,627,"[\""Wireless Mouse\"", \""Charger\""]",3318.53,"{\""promo\"": \""15%\""}",95211,0,"""Africa""" +2024-09-27,47014,2738,"[\""Tablet\""]",994.28,"{\"": \""30%\""}",19049,1,"""South America""" +2024-06-06,47015,2553,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4806.6,{},272325,1,"""South America""" +2023-12-27,47016,702,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3749.34,{},200130,1,"""Africa""" +2024-02-02,47017,9897,"[\""Tablet\""]",1796.9,"{\""loyalty\"": \""9%\""}",14166,1,"""Europe""" +2024-03-25,47018,4620,"[\""Wireless Mouse\""]",752.97,"{\"": \""22%\""}",44787,1,"""Europe""" +2023-12-19,47019,1609,"[\""Wireless Mouse\"", \""Monitor\""]",4384.14,{},179823,1,"""North America""" +2024-01-01,47020,4122,"[\""Keyboard\"", \""Phone\""]",3022.25,{},59257,0,"""Asia""" +2024-07-13,47021,9229,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4752.53,"{\"": \""5%\""}",119602,0,"""South America""" +2024-05-02,47022,7011,"[\""Charger\""]",3162.85,"{\""loyalty\"": \""26%\""}",169783,1,"""South America""" +2023-05-01,47023,3897,"[\""Tablet\"", \""Keyboard\""]",3970.66,{},287536,0,"""Europe""" +2023-07-03,47024,6738,"[\""Phone\"", \""Charger\"", \""Laptop\""]",191.79,{},11231,0,"""South America""" +2024-04-05,47025,319,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4233.32,"{\"": \""19%\""}",94028,1,"""Europe""" +2024-10-19,47026,7143,"[\""Phone\"", \""Wireless Mouse\""]",2501.97,{},80335,1,"""North America""" +2023-02-11,47027,5748,"[\""Wireless Mouse\"", \""Laptop\""]",1204.21,"{\""promo\"": \""15%\""}",67178,0,"""Europe""" +2024-11-18,47028,5852,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1190.66,"{\""seasonal\"": \""10%\""}",172494,1,"""Asia""" +2024-12-23,47029,8788,"[\""Monitor\"", \""Headphones\""]",209.6,{},82973,0,"""Africa""" +2024-05-23,47030,2032,"[\""Keyboard\"", \""Headphones\""]",522.73,"{\"": \""8%\""}",119803,1,"""Asia""" +2023-05-06,47031,5489,"[\""Wireless Mouse\"", \""Keyboard\""]",1678.13,"{\""seasonal\"": \""16%\""}",132583,0,"""Africa""" +2024-01-17,47032,5985,"[\""Tablet\""]",1402.79,"{\"": \""24%\""}",20196,1,"""North America""" +2024-08-14,47033,2716,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4787.13,"{\""seasonal\"": \""12%\""}",259613,0,"""Asia""" +2023-08-31,47034,6772,"[\""Charger\""]",2764.84,"{\""loyalty\"": \""11%\""}",68101,1,"""Africa""" +2024-02-09,47035,4030,"[\""Monitor\"", \""Wireless Mouse\""]",2006.18,{},250516,0,"""North America""" +2023-05-27,47036,3258,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1659.2,{},130469,0,"""Asia""" +2024-06-25,47037,2887,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3749.03,"{\"": \""22%\""}",277991,0,"""Africa""" +2023-06-01,47038,9883,"[\""Monitor\"", \""Headphones\""]",3973.7,"{\""seasonal\"": \""25%\""}",199941,0,"""Africa""" +2024-07-24,47039,6279,"[\""Wireless Mouse\"", \""Headphones\""]",918.35,{},105431,0,"""Europe""" +2023-04-05,47040,1665,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3458.88,{},276312,0,"""North America""" +2023-12-16,47041,9305,"[\""Charger\""]",4026.47,{},128019,0,"""Africa""" +2024-06-25,47042,58,"[\""Phone\""]",3081.94,{},47288,0,"""South America""" +2024-05-29,47043,8992,"[\""Phone\"", \""Laptop\""]",4253.51,{},262679,1,"""South America""" +2023-02-20,47044,9237,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4747.96,{},99579,1,"""Africa""" +2023-03-04,47045,4285,"[\""Phone\"", \""Headphones\""]",3869.83,{},200493,0,"""Europe""" +2023-10-07,47046,9349,"[\""Keyboard\"", \""Phone\""]",1961.0,{},116508,0,"""North America""" +2024-06-23,47047,6078,"[\""Phone\"", \""Keyboard\""]",3541.51,"{\"": \""26%\""}",58389,0,"""Europe""" +2024-03-11,47048,1068,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",303.63,{},176660,1,"""North America""" +2023-07-09,47049,205,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1512.84,{},276025,1,"""Europe""" +2023-03-12,47050,9787,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",995.82,"{\""loyalty\"": \""25%\""}",207299,0,"""North America""" +2023-07-23,47051,4332,"[\""Phone\""]",4733.36,"{\""loyalty\"": \""10%\""}",20673,1,"""Africa""" +2023-05-27,47052,2489,"[\""Monitor\"", \""Tablet\""]",102.2,"{\""loyalty\"": \""25%\""}",94841,1,"""North America""" +2023-04-29,47053,1769,"[\""Charger\""]",4122.36,{},164194,0,"""Asia""" +2024-07-15,47054,5009,"[\""Keyboard\""]",4286.45,{},298405,1,"""North America""" +2024-08-16,47055,5593,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1063.26,"{\"": \""21%\""}",66433,1,"""Europe""" +2023-09-20,47056,646,"[\""Keyboard\""]",308.64,"{\""loyalty\"": \""28%\""}",185122,0,"""Asia""" +2023-12-03,47057,2940,"[\""Wireless Mouse\"", \""Charger\""]",320.82,{},40996,1,"""Europe""" +2023-04-22,47058,7074,"[\""Keyboard\"", \""Monitor\""]",203.25,{},26476,1,"""Asia""" +2023-12-18,47059,9076,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1397.35,"{\""loyalty\"": \""7%\""}",98983,0,"""Africa""" +2023-12-19,47060,8215,"[\""Charger\"", \""Headphones\""]",3331.23,{},143447,0,"""North America""" +2023-07-13,47061,800,"[\""Laptop\""]",4642.6,"{\"": \""13%\""}",48071,0,"""Africa""" +2024-12-24,47062,9720,"[\""Tablet\"", \""Wireless Mouse\""]",1402.61,{},263573,1,"""South America""" +2024-10-09,47063,9688,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2290.12,"{\""promo\"": \""5%\""}",46603,1,"""Africa""" +2024-03-02,47064,9818,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3238.85,"{\""loyalty\"": \""22%\""}",216954,1,"""South America""" +2024-04-27,47065,4095,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1936.81,"{\""promo\"": \""25%\""}",47583,0,"""Africa""" +2023-02-14,47066,5977,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4536.94,"{\""seasonal\"": \""18%\""}",139921,0,"""North America""" +2024-10-07,47067,4888,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2879.1,{},174020,1,"""North America""" +2023-10-31,47068,8857,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4396.68,{},161582,0,"""North America""" +2023-08-05,47069,1476,"[\""Headphones\""]",3762.68,{},54908,1,"""Europe""" +2023-01-11,47070,7793,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4429.66,{},266428,0,"""North America""" +2024-04-05,47071,4460,"[\""Headphones\""]",2559.73,"{\""seasonal\"": \""22%\""}",168720,0,"""Africa""" +2024-01-21,47072,8898,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3951.81,"{\""loyalty\"": \""20%\""}",221693,1,"""South America""" +2024-04-12,47073,5091,"[\""Headphones\""]",3007.31,{},25534,1,"""South America""" +2024-06-28,47074,9002,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2821.12,{},52271,1,"""North America""" +2023-11-25,47075,3273,"[\""Charger\"", \""Tablet\""]",724.79,{},276077,1,"""Europe""" +2023-03-27,47076,1765,"[\""Tablet\"", \""Laptop\""]",2165.17,{},176893,1,"""South America""" +2023-01-17,47077,3355,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2323.22,{},254029,0,"""Asia""" +2023-09-01,47078,4433,"[\""Phone\""]",4211.78,{},292162,1,"""Europe""" +2023-08-06,47079,7702,"[\""Laptop\"", \""Tablet\""]",1706.6,"{\""loyalty\"": \""11%\""}",154649,1,"""North America""" +2023-07-10,47080,8390,"[\""Wireless Mouse\""]",3858.4,{},163088,1,"""North America""" +2024-02-26,47081,4082,"[\""Laptop\"", \""Charger\""]",3675.97,"{\"": \""16%\""}",175866,0,"""Africa""" +2023-04-17,47082,2511,"[\""Charger\"", \""Wireless Mouse\""]",2763.82,{},28313,1,"""Africa""" +2024-06-12,47083,6873,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2937.82,{},257913,1,"""Europe""" +2024-01-08,47084,2819,"[\""Keyboard\""]",3803.52,"{\""loyalty\"": \""13%\""}",20433,1,"""Europe""" +2024-02-17,47085,6697,"[\""Wireless Mouse\""]",2324.75,"{\""seasonal\"": \""16%\""}",24978,1,"""South America""" +2024-08-28,47086,3097,"[\""Laptop\""]",3917.69,{},211596,1,"""Asia""" +2024-03-13,47087,7786,"[\""Monitor\""]",2473.54,{},2540,0,"""Africa""" +2023-01-21,47088,1979,"[\""Phone\""]",2748.26,{},238572,0,"""North America""" +2023-03-15,47089,2166,"[\""Charger\""]",4902.23,"{\""promo\"": \""24%\""}",88723,1,"""North America""" +2024-01-24,47090,9663,"[\""Monitor\""]",2116.46,{},37428,1,"""Asia""" +2023-09-16,47091,9319,"[\""Headphones\"", \""Laptop\""]",779.46,{},73923,0,"""Europe""" +2024-06-19,47092,5584,"[\""Wireless Mouse\"", \""Keyboard\""]",2678.09,"{\""loyalty\"": \""19%\""}",18322,0,"""Europe""" +2023-01-24,47093,3786,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",253.47,{},225510,1,"""North America""" +2023-12-17,47094,7917,"[\""Wireless Mouse\""]",4320.13,"{\""loyalty\"": \""27%\""}",221097,0,"""Europe""" +2023-06-17,47095,193,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1984.52,{},241328,0,"""Asia""" +2024-07-24,47096,7692,"[\""Monitor\""]",3428.71,"{\"": \""20%\""}",278252,1,"""Africa""" +2024-04-23,47097,6619,"[\""Headphones\""]",950.38,"{\""seasonal\"": \""29%\""}",283763,0,"""North America""" +2023-08-16,47098,4990,"[\""Charger\"", \""Laptop\""]",454.19,"{\""seasonal\"": \""14%\""}",68877,0,"""Europe""" +2023-11-17,47099,814,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1212.2,"{\""seasonal\"": \""7%\""}",19053,1,"""Asia""" +2023-02-19,47100,5506,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",272.7,"{\""loyalty\"": \""24%\""}",246679,1,"""North America""" +2024-04-10,47101,2259,"[\""Wireless Mouse\""]",2422.7,"{\""seasonal\"": \""9%\""}",70398,0,"""Europe""" +2024-02-22,47102,1203,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2513.99,{},190581,1,"""Europe""" +2023-08-17,47103,8633,"[\""Wireless Mouse\"", \""Phone\""]",154.82,{},234849,0,"""Europe""" +2024-09-21,47104,8578,"[\""Charger\"", \""Keyboard\""]",1221.8,{},98905,0,"""Africa""" +2023-04-01,47105,8042,"[\""Wireless Mouse\""]",4168.15,"{\"": \""15%\""}",219693,1,"""Europe""" +2024-07-22,47106,26,"[\""Wireless Mouse\"", \""Tablet\""]",4212.07,{},93929,0,"""North America""" +2023-02-14,47107,2969,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",303.51,"{\""seasonal\"": \""30%\""}",246101,0,"""Africa""" +2023-09-20,47108,939,"[\""Keyboard\""]",3263.87,{},298157,0,"""Asia""" +2024-05-25,47109,9133,"[\""Wireless Mouse\"", \""Headphones\""]",3217.16,"{\"": \""7%\""}",23080,1,"""South America""" +2024-08-24,47110,3285,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3955.63,{},261078,1,"""Asia""" +2024-10-14,47111,4227,"[\""Monitor\"", \""Laptop\""]",4615.49,"{\""promo\"": \""11%\""}",152455,1,"""Africa""" +2023-10-26,47112,8319,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2086.86,{},131325,0,"""Europe""" +2023-02-17,47113,4729,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1637.08,{},45777,1,"""Asia""" +2023-06-26,47114,7064,"[\""Monitor\""]",3705.73,"{\"": \""6%\""}",173100,0,"""South America""" +2023-02-03,47115,262,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2289.79,{},53548,0,"""Asia""" +2023-10-13,47116,1441,"[\""Keyboard\"", \""Wireless Mouse\""]",1095.51,{},259800,0,"""Europe""" +2023-12-22,47117,1016,"[\""Monitor\"", \""Laptop\""]",3443.47,{},84990,0,"""North America""" +2023-12-10,47118,2191,"[\""Monitor\"", \""Laptop\""]",3172.25,"{\""seasonal\"": \""24%\""}",15937,0,"""South America""" +2024-01-03,47119,5891,"[\""Monitor\"", \""Charger\""]",4240.04,"{\"": \""23%\""}",207860,1,"""Africa""" +2023-06-08,47120,1626,"[\""Charger\"", \""Laptop\""]",3251.58,"{\""promo\"": \""16%\""}",240635,0,"""Africa""" +2023-04-20,47121,8319,"[\""Keyboard\""]",629.67,{},263829,0,"""Africa""" +2024-05-20,47122,4926,"[\""Wireless Mouse\""]",3206.11,"{\""seasonal\"": \""14%\""}",36356,0,"""North America""" +2023-07-07,47123,5131,"[\""Phone\"", \""Keyboard\""]",4464.44,"{\""promo\"": \""26%\""}",244869,1,"""Asia""" +2023-08-02,47124,4219,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2850.23,{},189094,0,"""Asia""" +2024-08-03,47125,5318,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2585.23,"{\""promo\"": \""30%\""}",189207,1,"""Africa""" +2024-05-17,47126,289,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2334.44,"{\"": \""18%\""}",60570,1,"""Europe""" +2024-04-19,47127,2699,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4844.34,{},267673,1,"""North America""" +2024-04-26,47128,2491,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1643.82,{},213371,1,"""Africa""" +2024-04-10,47129,3374,"[\""Tablet\"", \""Wireless Mouse\""]",161.11,{},78649,1,"""Africa""" +2024-07-26,47130,1927,"[\""Laptop\""]",2338.75,"{\""seasonal\"": \""9%\""}",107613,0,"""South America""" +2023-05-16,47131,2149,"[\""Tablet\""]",4781.35,"{\"": \""22%\""}",197575,1,"""Asia""" +2024-05-10,47132,8116,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3142.1,{},12202,1,"""Europe""" +2024-10-26,47133,8181,"[\""Keyboard\""]",4369.07,"{\"": \""22%\""}",274165,0,"""Europe""" +2024-06-06,47134,2627,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1652.88,{},259682,0,"""South America""" +2023-07-02,47135,4605,"[\""Keyboard\""]",4749.79,{},266286,1,"""Europe""" +2024-04-26,47136,1582,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",398.94,"{\""loyalty\"": \""16%\""}",224364,1,"""Africa""" +2024-09-07,47137,8171,"[\""Tablet\""]",2505.58,{},71070,0,"""North America""" +2023-01-28,47138,8730,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2304.16,{},161334,1,"""North America""" +2023-08-19,47139,8001,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1799.86,"{\""seasonal\"": \""22%\""}",227957,1,"""North America""" +2024-06-08,47140,6839,"[\""Phone\""]",3571.94,"{\"": \""15%\""}",26385,1,"""Africa""" +2023-03-24,47141,1048,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",606.54,{},172962,1,"""North America""" +2023-02-13,47142,319,"[\""Monitor\""]",4298.93,{},221155,1,"""Asia""" +2024-11-10,47143,6945,"[\""Laptop\"", \""Tablet\""]",2716.26,{},217737,0,"""South America""" +2023-03-03,47144,5188,"[\""Charger\"", \""Phone\""]",4797.65,{},146070,0,"""South America""" +2023-01-02,47145,8280,"[\""Phone\"", \""Laptop\""]",3227.59,{},96806,0,"""South America""" +2024-07-23,47146,9737,"[\""Keyboard\"", \""Headphones\""]",4254.28,"{\""seasonal\"": \""29%\""}",230708,0,"""Europe""" +2023-02-16,47147,1652,"[\""Monitor\"", \""Keyboard\""]",1016.97,"{\""loyalty\"": \""16%\""}",284875,0,"""South America""" +2023-05-23,47148,4604,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1524.06,{},247006,1,"""South America""" +2023-06-03,47149,4020,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3949.97,"{\""loyalty\"": \""6%\""}",276174,0,"""South America""" +2024-09-12,47150,9877,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1301.35,{},201735,0,"""South America""" +2023-06-01,47151,6227,"[\""Monitor\"", \""Laptop\""]",956.14,"{\""promo\"": \""19%\""}",241138,1,"""Africa""" +2024-09-26,47152,9344,"[\""Headphones\"", \""Laptop\""]",2617.76,"{\"": \""7%\""}",245203,0,"""Africa""" +2023-09-09,47153,5871,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1236.69,{},88961,1,"""North America""" +2023-02-25,47154,8261,"[\""Laptop\""]",3146.76,{},111275,0,"""Asia""" +2023-07-16,47155,3867,"[\""Wireless Mouse\"", \""Laptop\""]",3470.21,{},293387,0,"""South America""" +2023-07-10,47156,9349,"[\""Wireless Mouse\"", \""Phone\""]",4649.97,{},6127,1,"""Africa""" +2024-04-27,47157,809,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",197.21,"{\""loyalty\"": \""12%\""}",74531,1,"""South America""" +2023-08-20,47158,4942,"[\""Laptop\"", \""Tablet\""]",2213.67,{},134436,1,"""Europe""" +2023-05-22,47159,9438,"[\""Tablet\"", \""Headphones\""]",2870.58,{},284421,1,"""Asia""" +2024-04-17,47160,3626,"[\""Laptop\""]",1547.06,{},116879,0,"""North America""" +2023-11-26,47161,7329,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2979.2,"{\"": \""21%\""}",47534,0,"""South America""" +2023-03-30,47162,5650,"[\""Laptop\""]",3061.4,"{\""seasonal\"": \""16%\""}",122609,1,"""Europe""" +2023-05-11,47163,7578,"[\""Laptop\""]",2657.88,{},216876,0,"""Asia""" +2023-02-23,47164,9551,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1572.04,"{\""seasonal\"": \""16%\""}",258231,0,"""Europe""" +2023-03-04,47165,1494,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2064.75,{},292270,1,"""Africa""" +2024-06-18,47166,504,"[\""Headphones\""]",4691.28,{},248744,1,"""South America""" +2024-03-02,47167,2802,"[\""Wireless Mouse\""]",1712.35,{},138333,1,"""Europe""" +2024-11-15,47168,8941,"[\""Tablet\""]",4784.3,"{\""promo\"": \""12%\""}",86068,1,"""South America""" +2023-11-03,47169,3126,"[\""Laptop\"", \""Wireless Mouse\""]",4762.7,"{\"": \""30%\""}",22869,0,"""Africa""" +2023-12-09,47170,8157,"[\""Laptop\"", \""Monitor\""]",1078.01,{},274504,0,"""North America""" +2023-09-08,47171,8994,"[\""Wireless Mouse\"", \""Monitor\""]",4812.82,{},286472,1,"""Asia""" +2024-03-24,47172,5031,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4234.29,{},69346,1,"""Africa""" +2024-01-10,47173,9916,"[\""Charger\""]",4090.11,"{\"": \""24%\""}",275642,1,"""Asia""" +2024-12-29,47174,2749,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",311.91,"{\""loyalty\"": \""12%\""}",83476,1,"""Asia""" +2024-08-16,47175,4189,"[\""Wireless Mouse\"", \""Headphones\""]",1362.43,{},42115,1,"""North America""" +2024-10-17,47176,6312,"[\""Keyboard\"", \""Monitor\""]",633.7,"{\""promo\"": \""5%\""}",11325,1,"""South America""" +2023-02-07,47177,1908,"[\""Laptop\""]",3963.66,"{\"": \""7%\""}",122970,0,"""Asia""" +2024-10-19,47178,8147,"[\""Laptop\"", \""Headphones\""]",4872.45,{},223813,1,"""Europe""" +2024-06-21,47179,998,"[\""Tablet\""]",4528.12,{},211093,0,"""Europe""" +2023-12-28,47180,1237,"[\""Phone\""]",4741.53,{},21801,0,"""Asia""" +2024-02-21,47181,4193,"[\""Tablet\"", \""Keyboard\""]",4900.01,"{\"": \""6%\""}",277575,0,"""North America""" +2023-08-28,47182,982,"[\""Monitor\"", \""Keyboard\""]",87.36,{},159743,1,"""Europe""" +2024-01-15,47183,8372,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2626.27,{},120307,0,"""Asia""" +2024-12-31,47184,8607,"[\""Keyboard\""]",1377.63,{},36548,1,"""Europe""" +2024-05-13,47185,9906,"[\""Charger\"", \""Phone\""]",544.28,{},126465,1,"""North America""" +2023-12-31,47186,8278,"[\""Tablet\""]",435.44,{},263804,1,"""South America""" +2024-02-05,47187,5456,"[\""Laptop\""]",3867.34,{},9077,1,"""Asia""" +2023-08-06,47188,6118,"[\""Laptop\"", \""Charger\""]",2298.47,{},75781,0,"""South America""" +2023-10-11,47189,5221,"[\""Headphones\""]",490.38,"{\"": \""25%\""}",137020,1,"""Europe""" +2023-03-24,47190,9058,"[\""Charger\""]",3448.77,{},246916,1,"""Africa""" +2024-02-08,47191,915,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1392.93,{},89621,0,"""Africa""" +2023-05-10,47192,1941,"[\""Tablet\"", \""Wireless Mouse\""]",4073.57,{},39276,1,"""South America""" +2024-03-08,47193,1617,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1927.12,{},81053,1,"""Africa""" +2024-11-21,47194,9633,"[\""Laptop\"", \""Keyboard\""]",3954.77,{},13151,0,"""South America""" +2024-04-11,47195,2683,"[\""Wireless Mouse\"", \""Headphones\""]",1702.03,"{\"": \""22%\""}",99843,1,"""Asia""" +2024-08-24,47196,3335,"[\""Monitor\"", \""Phone\""]",3999.93,{},253480,1,"""Africa""" +2024-07-10,47197,4296,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",164.06,"{\""seasonal\"": \""30%\""}",106726,1,"""Europe""" +2024-12-27,47198,7789,"[\""Charger\"", \""Laptop\""]",4320.39,"{\""loyalty\"": \""14%\""}",263163,0,"""Asia""" +2024-12-02,47199,9691,"[\""Tablet\"", \""Wireless Mouse\""]",1354.33,{},190898,1,"""Africa""" +2023-07-13,47200,1085,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1785.55,{},76114,1,"""Europe""" +2023-08-31,47201,9521,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2620.78,"{\"": \""27%\""}",140046,1,"""Europe""" +2024-08-18,47202,6948,"[\""Phone\"", \""Monitor\""]",626.73,{},211612,0,"""South America""" +2024-06-21,47203,2261,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1998.46,"{\""seasonal\"": \""29%\""}",266256,1,"""South America""" +2024-12-07,47204,2503,"[\""Wireless Mouse\"", \""Monitor\""]",435.77,"{\""seasonal\"": \""26%\""}",203723,1,"""North America""" +2024-02-16,47205,503,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3328.11,"{\""promo\"": \""20%\""}",206125,0,"""Africa""" +2023-09-02,47206,3174,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2900.2,{},180540,1,"""South America""" +2023-10-10,47207,3073,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3601.61,{},211659,0,"""South America""" +2023-12-11,47208,9656,"[\""Phone\"", \""Tablet\""]",4282.02,"{\"": \""14%\""}",287076,0,"""North America""" +2023-11-21,47209,663,"[\""Phone\"", \""Charger\""]",1423.47,"{\""seasonal\"": \""8%\""}",10848,1,"""Asia""" +2023-11-05,47210,7529,"[\""Wireless Mouse\"", \""Laptop\""]",1037.46,"{\""loyalty\"": \""7%\""}",195271,0,"""South America""" +2023-04-25,47211,5019,"[\""Phone\"", \""Tablet\""]",2361.04,"{\""promo\"": \""23%\""}",56102,1,"""Europe""" +2024-07-16,47212,5520,"[\""Charger\"", \""Monitor\""]",245.19,{},201521,0,"""South America""" +2024-12-30,47213,9151,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",792.42,{},278623,1,"""Europe""" +2024-02-28,47214,7492,"[\""Keyboard\"", \""Wireless Mouse\""]",838.86,{},24037,1,"""Africa""" +2023-05-07,47215,337,"[\""Wireless Mouse\""]",898.57,"{\"": \""19%\""}",117126,1,"""Africa""" +2023-04-04,47216,2689,"[\""Phone\"", \""Monitor\""]",331.51,"{\""promo\"": \""18%\""}",114628,0,"""Africa""" +2023-04-28,47217,6191,"[\""Tablet\""]",4531.63,{},184121,0,"""Asia""" +2023-06-29,47218,8942,"[\""Headphones\"", \""Keyboard\""]",1839.13,{},71562,1,"""Africa""" +2023-02-13,47219,5583,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3127.64,"{\"": \""28%\""}",101265,1,"""North America""" +2024-12-01,47220,7436,"[\""Wireless Mouse\""]",73.77,"{\""promo\"": \""7%\""}",166572,1,"""North America""" +2024-05-21,47221,1644,"[\""Monitor\""]",938.27,"{\"": \""5%\""}",84850,1,"""South America""" +2024-07-04,47222,7578,"[\""Wireless Mouse\""]",3748.29,"{\""promo\"": \""15%\""}",230416,0,"""Africa""" +2024-01-18,47223,4105,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3552.41,"{\"": \""12%\""}",16920,0,"""Asia""" +2023-05-13,47224,6155,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",133.5,{},42569,1,"""Europe""" +2024-10-19,47225,5388,"[\""Phone\"", \""Wireless Mouse\""]",2665.41,"{\"": \""11%\""}",160546,0,"""Asia""" +2024-03-12,47226,613,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3726.28,{},192173,0,"""South America""" +2024-08-09,47227,6627,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",923.04,"{\"": \""22%\""}",270001,0,"""Asia""" +2023-12-31,47228,5186,"[\""Monitor\"", \""Charger\""]",2661.25,"{\"": \""12%\""}",263126,1,"""Africa""" +2023-10-26,47229,636,"[\""Headphones\""]",4264.34,"{\"": \""30%\""}",92122,1,"""South America""" +2024-02-04,47230,685,"[\""Laptop\"", \""Monitor\""]",1975.4,{},240623,0,"""Europe""" +2024-04-29,47231,748,"[\""Headphones\"", \""Laptop\""]",3001.14,{},75227,0,"""Europe""" +2024-01-15,47232,9940,"[\""Tablet\""]",1398.24,{},202691,0,"""North America""" +2024-07-02,47233,8559,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2625.22,{},76401,1,"""Asia""" +2024-09-28,47234,7357,"[\""Headphones\""]",4837.54,{},205175,1,"""Asia""" +2024-12-05,47235,5112,"[\""Phone\"", \""Wireless Mouse\""]",3447.52,{},299013,1,"""Africa""" +2024-04-02,47236,6028,"[\""Laptop\"", \""Headphones\""]",2884.95,"{\""seasonal\"": \""24%\""}",76613,1,"""Africa""" +2024-11-25,47237,1096,"[\""Charger\"", \""Phone\""]",4021.31,{},296983,1,"""Europe""" +2023-10-01,47238,2741,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4722.3,"{\"": \""16%\""}",79331,0,"""Africa""" +2023-01-21,47239,3095,"[\""Tablet\"", \""Charger\""]",1643.7,"{\""promo\"": \""23%\""}",28969,0,"""Asia""" +2024-07-03,47240,8579,"[\""Phone\"", \""Headphones\""]",1927.37,"{\""seasonal\"": \""23%\""}",98857,0,"""Europe""" +2023-08-11,47241,3949,"[\""Wireless Mouse\"", \""Laptop\""]",549.73,{},246098,1,"""Africa""" +2023-02-07,47242,9540,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1033.3,{},214128,0,"""Africa""" +2024-01-28,47243,1498,"[\""Monitor\"", \""Keyboard\""]",1149.85,{},71669,0,"""Asia""" +2023-03-24,47244,7336,"[\""Monitor\"", \""Wireless Mouse\""]",2734.53,{},158823,0,"""Europe""" +2024-03-13,47245,1759,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",826.49,"{\""promo\"": \""23%\""}",139115,0,"""South America""" +2023-10-16,47246,3056,"[\""Phone\"", \""Laptop\""]",860.61,"{\"": \""19%\""}",165553,1,"""North America""" +2024-02-15,47247,3248,"[\""Phone\"", \""Keyboard\""]",1083.46,{},84122,1,"""North America""" +2023-04-04,47248,8950,"[\""Keyboard\"", \""Headphones\""]",2961.09,{},98514,0,"""Europe""" +2023-11-23,47249,7388,"[\""Wireless Mouse\"", \""Monitor\""]",2249.34,"{\""seasonal\"": \""22%\""}",111078,0,"""Asia""" +2023-12-18,47250,1450,"[\""Headphones\""]",1807.59,{},159311,1,"""South America""" +2023-06-02,47251,1385,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3743.54,"{\""loyalty\"": \""18%\""}",103170,0,"""North America""" +2024-12-02,47252,9068,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",368.11,"{\""promo\"": \""18%\""}",76214,1,"""Africa""" +2023-03-14,47253,1723,"[\""Monitor\""]",2522.74,"{\""seasonal\"": \""30%\""}",31942,0,"""North America""" +2024-03-15,47254,576,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3304.9,"{\""loyalty\"": \""30%\""}",81971,1,"""Africa""" +2024-04-23,47255,4555,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3520.57,"{\""loyalty\"": \""7%\""}",207095,0,"""Africa""" +2024-12-21,47256,3767,"[\""Monitor\"", \""Tablet\""]",2999.06,{},87958,0,"""Asia""" +2024-07-14,47257,9313,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3252.16,"{\""loyalty\"": \""6%\""}",80177,0,"""Asia""" +2023-08-27,47258,6736,"[\""Phone\"", \""Wireless Mouse\""]",4315.07,"{\""seasonal\"": \""29%\""}",101802,0,"""Africa""" +2024-08-23,47259,332,"[\""Keyboard\""]",2684.07,{},170556,0,"""South America""" +2023-07-01,47260,6740,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1167.24,{},141164,0,"""Africa""" +2023-06-11,47261,4781,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4050.98,"{\""loyalty\"": \""26%\""}",11013,1,"""Africa""" +2023-08-15,47262,2031,"[\""Phone\"", \""Headphones\""]",4992.68,{},106971,1,"""Asia""" +2024-03-24,47263,7027,"[\""Phone\"", \""Tablet\""]",1671.21,"{\""loyalty\"": \""5%\""}",44601,0,"""North America""" +2023-01-11,47264,4287,"[\""Charger\""]",3085.34,"{\""loyalty\"": \""5%\""}",45257,0,"""South America""" +2024-05-16,47265,729,"[\""Laptop\""]",2334.86,{},284888,0,"""Asia""" +2024-11-05,47266,2961,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3206.67,"{\""promo\"": \""25%\""}",4889,1,"""Europe""" +2023-03-19,47267,554,"[\""Wireless Mouse\"", \""Phone\""]",553.67,{},143271,0,"""North America""" +2024-11-24,47268,144,"[\""Monitor\""]",3066.18,{},184407,1,"""North America""" +2023-03-05,47269,3346,"[\""Tablet\""]",4412.63,"{\""loyalty\"": \""19%\""}",229912,1,"""Europe""" +2023-06-02,47270,6990,"[\""Tablet\"", \""Keyboard\""]",1875.35,{},261542,0,"""Asia""" +2024-07-04,47271,8778,"[\""Tablet\""]",1689.66,"{\""seasonal\"": \""25%\""}",15773,0,"""South America""" +2024-10-25,47272,3733,"[\""Headphones\"", \""Wireless Mouse\""]",3450.46,"{\""promo\"": \""25%\""}",161276,0,"""Europe""" +2024-07-03,47273,2050,"[\""Keyboard\""]",2645.79,{},1891,1,"""Africa""" +2023-07-15,47274,2068,"[\""Wireless Mouse\"", \""Headphones\""]",4603.28,"{\""promo\"": \""25%\""}",1521,1,"""Africa""" +2023-10-20,47275,1125,"[\""Wireless Mouse\"", \""Keyboard\""]",4205.12,"{\""seasonal\"": \""23%\""}",200314,0,"""South America""" +2024-11-28,47276,2610,"[\""Tablet\"", \""Wireless Mouse\""]",4561.67,"{\""promo\"": \""18%\""}",263069,0,"""North America""" +2024-03-04,47277,1605,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2393.98,"{\""promo\"": \""5%\""}",89018,0,"""South America""" +2023-08-14,47278,7713,"[\""Keyboard\""]",2268.81,{},39633,1,"""Africa""" +2023-02-20,47279,3363,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1835.25,{},11728,1,"""North America""" +2023-05-30,47280,6664,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1485.85,"{\""seasonal\"": \""21%\""}",156132,1,"""North America""" +2023-08-19,47281,7647,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1688.53,{},162560,1,"""Asia""" +2023-08-02,47282,2952,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4603.93,"{\""loyalty\"": \""12%\""}",143462,0,"""Africa""" +2023-06-14,47283,7377,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3622.39,"{\""promo\"": \""5%\""}",172605,1,"""South America""" +2023-08-25,47284,605,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1817.97,{},247440,0,"""North America""" +2024-10-20,47285,2568,"[\""Charger\"", \""Laptop\""]",948.67,{},289564,0,"""Europe""" +2023-02-10,47286,9417,"[\""Tablet\""]",4802.71,{},226668,1,"""South America""" +2023-03-25,47287,6511,"[\""Wireless Mouse\"", \""Monitor\""]",2015.72,{},179796,1,"""Africa""" +2024-11-27,47288,7456,"[\""Tablet\""]",1961.21,"{\""loyalty\"": \""17%\""}",267705,1,"""Asia""" +2023-07-22,47289,9169,"[\""Laptop\""]",4478.72,{},143685,0,"""Europe""" +2023-07-31,47290,6129,"[\""Wireless Mouse\"", \""Charger\""]",371.67,{},49838,1,"""Europe""" +2024-02-14,47291,5441,"[\""Monitor\"", \""Phone\""]",1351.99,{},246462,1,"""Europe""" +2023-12-30,47292,1289,"[\""Phone\""]",2552.55,"{\""promo\"": \""15%\""}",261951,0,"""South America""" +2023-01-29,47293,3162,"[\""Tablet\"", \""Laptop\""]",2680.33,{},88464,0,"""Europe""" +2024-02-19,47294,5029,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2359.33,{},168512,1,"""Africa""" +2023-01-25,47295,2153,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3749.07,"{\"": \""13%\""}",48010,1,"""South America""" +2023-12-04,47296,5682,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4183.62,{},20087,0,"""Africa""" +2024-07-23,47297,8441,"[\""Laptop\""]",3121.97,{},132070,1,"""Africa""" +2024-11-12,47298,8279,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",832.2,"{\""loyalty\"": \""29%\""}",216303,1,"""North America""" +2024-11-24,47299,810,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3733.81,"{\""promo\"": \""9%\""}",47408,1,"""Europe""" +2024-01-07,47300,3014,"[\""Wireless Mouse\""]",4487.89,"{\""seasonal\"": \""24%\""}",31240,1,"""North America""" +2023-12-11,47301,273,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3658.98,"{\"": \""24%\""}",159342,1,"""South America""" +2024-09-28,47302,8498,"[\""Phone\""]",2446.36,{},15781,1,"""South America""" +2023-08-12,47303,5459,"[\""Keyboard\"", \""Wireless Mouse\""]",2761.03,"{\""seasonal\"": \""19%\""}",297548,1,"""Europe""" +2023-08-22,47304,4393,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4390.6,{},82970,0,"""North America""" +2023-02-16,47305,2977,"[\""Tablet\"", \""Monitor\""]",3496.59,"{\""seasonal\"": \""17%\""}",148168,0,"""Asia""" +2024-11-29,47306,7323,"[\""Charger\"", \""Monitor\""]",442.98,{},179989,0,"""Europe""" +2023-01-15,47307,4089,"[\""Tablet\""]",4870.61,{},51768,0,"""Asia""" +2023-10-12,47308,335,"[\""Keyboard\"", \""Laptop\""]",2222.83,"{\"": \""15%\""}",181325,0,"""Africa""" +2023-03-13,47309,3123,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",734.03,"{\"": \""13%\""}",245262,1,"""Europe""" +2024-06-23,47310,5216,"[\""Headphones\"", \""Wireless Mouse\""]",315.28,"{\""promo\"": \""11%\""}",98375,0,"""Africa""" +2023-08-17,47311,6265,"[\""Wireless Mouse\""]",2066.94,"{\""seasonal\"": \""16%\""}",10008,0,"""Africa""" +2023-07-01,47312,4217,"[\""Laptop\""]",2033.84,{},177372,0,"""South America""" +2023-04-13,47313,4328,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4589.31,"{\""seasonal\"": \""18%\""}",3818,0,"""Africa""" +2023-05-21,47314,9872,"[\""Wireless Mouse\"", \""Phone\""]",2452.92,{},282181,1,"""Africa""" +2024-04-27,47315,9970,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1428.07,"{\""loyalty\"": \""7%\""}",39711,0,"""Africa""" +2023-07-16,47316,972,"[\""Keyboard\"", \""Headphones\""]",4427.35,"{\"": \""24%\""}",69617,0,"""Asia""" +2024-12-12,47317,8599,"[\""Keyboard\"", \""Monitor\""]",2233.51,{},267187,1,"""Asia""" +2023-01-12,47318,6830,"[\""Tablet\""]",2537.51,{},111216,1,"""Europe""" +2024-02-21,47319,2420,"[\""Monitor\"", \""Keyboard\""]",1843.85,{},264211,0,"""Europe""" +2024-05-17,47320,1859,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2452.32,"{\""loyalty\"": \""19%\""}",12274,0,"""Europe""" +2024-07-22,47321,9505,"[\""Monitor\"", \""Charger\""]",492.09,"{\""seasonal\"": \""14%\""}",148108,0,"""Asia""" +2023-04-07,47322,1621,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4140.92,"{\""seasonal\"": \""17%\""}",149091,1,"""North America""" +2024-11-21,47323,3258,"[\""Headphones\""]",3992.79,{},236045,0,"""Asia""" +2023-02-22,47324,8918,"[\""Phone\"", \""Wireless Mouse\""]",3166.26,"{\""seasonal\"": \""13%\""}",219300,1,"""Africa""" +2023-06-25,47325,4891,"[\""Wireless Mouse\"", \""Tablet\""]",218.12,{},15683,1,"""Asia""" +2024-08-20,47326,1222,"[\""Tablet\"", \""Laptop\""]",1082.48,"{\""seasonal\"": \""9%\""}",46624,0,"""Europe""" +2024-12-18,47327,6865,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2880.71,{},125985,0,"""North America""" +2023-11-24,47328,4204,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2538.3,{},17500,0,"""Africa""" +2023-06-03,47329,4979,"[\""Phone\"", \""Laptop\""]",2291.96,"{\""seasonal\"": \""11%\""}",105710,1,"""Asia""" +2023-10-31,47330,8476,"[\""Keyboard\""]",790.1,"{\""seasonal\"": \""21%\""}",54691,0,"""Africa""" +2024-03-27,47331,4449,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3109.27,"{\""promo\"": \""12%\""}",154646,0,"""Africa""" +2024-08-21,47332,9050,"[\""Tablet\""]",3769.4,"{\""loyalty\"": \""16%\""}",295755,0,"""Europe""" +2024-01-14,47333,4452,"[\""Keyboard\""]",932.61,{},102903,1,"""South America""" +2023-04-27,47334,1436,"[\""Charger\"", \""Laptop\""]",430.19,"{\""promo\"": \""26%\""}",206001,0,"""South America""" +2024-07-25,47335,9795,"[\""Keyboard\""]",3617.65,{},243104,1,"""Africa""" +2023-02-27,47336,2928,"[\""Tablet\"", \""Phone\""]",3000.82,"{\"": \""16%\""}",277491,0,"""Europe""" +2023-04-17,47337,7789,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2014.11,{},220920,0,"""South America""" +2023-08-16,47338,9744,"[\""Headphones\"", \""Wireless Mouse\""]",4762.31,"{\""loyalty\"": \""27%\""}",73771,1,"""North America""" +2024-12-23,47339,8599,"[\""Monitor\"", \""Headphones\""]",601.23,{},231765,0,"""Europe""" +2023-04-22,47340,5109,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1118.35,"{\""promo\"": \""29%\""}",85046,0,"""Asia""" +2024-11-16,47341,8184,"[\""Phone\""]",4418.26,{},41927,1,"""South America""" +2024-03-15,47342,6338,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1151.78,"{\""seasonal\"": \""12%\""}",53299,1,"""South America""" +2024-10-04,47343,4871,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4445.83,"{\""promo\"": \""25%\""}",49688,0,"""Africa""" +2024-02-11,47344,9991,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3819.77,{},153935,1,"""South America""" +2024-03-21,47345,4533,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3744.16,{},177198,0,"""South America""" +2023-11-04,47346,3746,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1685.04,{},139465,0,"""South America""" +2024-05-11,47347,5008,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1770.36,{},166531,1,"""Asia""" +2023-08-19,47348,7774,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4741.69,{},206593,1,"""South America""" +2023-12-06,47349,5860,"[\""Wireless Mouse\"", \""Laptop\""]",3974.86,"{\"": \""10%\""}",9867,0,"""Asia""" +2024-02-02,47350,9943,"[\""Monitor\"", \""Charger\""]",1225.61,{},68702,0,"""Africa""" +2023-11-15,47351,623,"[\""Charger\"", \""Monitor\""]",1557.22,{},153802,1,"""Asia""" +2024-09-21,47352,7310,"[\""Headphones\"", \""Monitor\""]",2157.98,{},18050,1,"""Asia""" +2024-01-19,47353,9990,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2585.92,{},154077,0,"""Africa""" +2024-02-07,47354,600,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3656.28,"{\""promo\"": \""20%\""}",111580,1,"""Asia""" +2024-04-20,47355,5900,"[\""Laptop\""]",636.61,"{\""loyalty\"": \""18%\""}",241848,1,"""South America""" +2024-11-19,47356,5186,"[\""Charger\"", \""Headphones\""]",210.49,{},167751,0,"""Asia""" +2024-12-15,47357,6386,"[\""Headphones\""]",52.66,"{\""promo\"": \""15%\""}",166739,0,"""Asia""" +2023-01-16,47358,6211,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4506.22,{},221213,1,"""Africa""" +2024-04-21,47359,7460,"[\""Tablet\""]",1735.02,"{\""seasonal\"": \""12%\""}",225793,0,"""Europe""" +2024-12-21,47360,8370,"[\""Monitor\""]",832.46,"{\""seasonal\"": \""6%\""}",32896,0,"""Europe""" +2024-03-10,47361,841,"[\""Charger\""]",3891.37,"{\""seasonal\"": \""29%\""}",14823,1,"""South America""" +2024-10-01,47362,3289,"[\""Charger\""]",1632.39,{},264536,0,"""North America""" +2023-05-09,47363,4841,"[\""Phone\"", \""Charger\""]",1018.94,{},154518,1,"""South America""" +2023-01-03,47364,4066,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4369.97,"{\""seasonal\"": \""10%\""}",253321,0,"""Europe""" +2024-12-21,47365,9289,"[\""Charger\""]",1909.05,"{\""loyalty\"": \""19%\""}",100246,0,"""Asia""" +2023-02-20,47366,4706,"[\""Keyboard\"", \""Phone\""]",188.05,{},221987,1,"""South America""" +2023-12-14,47367,9582,"[\""Headphones\"", \""Laptop\""]",1282.02,{},74377,1,"""South America""" +2023-11-18,47368,4496,"[\""Laptop\""]",910.61,"{\""loyalty\"": \""19%\""}",159700,1,"""South America""" +2024-10-18,47369,8126,"[\""Laptop\"", \""Phone\""]",560.84,{},65544,1,"""North America""" +2024-02-08,47370,8710,"[\""Charger\""]",3473.4,{},70789,1,"""Europe""" +2023-12-29,47371,9432,"[\""Tablet\"", \""Monitor\""]",2396.03,"{\""promo\"": \""25%\""}",156864,1,"""South America""" +2023-10-18,47372,2976,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2161.1,{},245977,1,"""Africa""" +2023-05-16,47373,859,"[\""Laptop\""]",524.15,"{\""seasonal\"": \""13%\""}",171972,1,"""Asia""" +2023-01-07,47374,9794,"[\""Laptop\""]",4472.77,"{\""loyalty\"": \""25%\""}",129511,0,"""Africa""" +2023-12-20,47375,4501,"[\""Headphones\""]",2141.08,{},149193,1,"""North America""" +2024-09-24,47376,2337,"[\""Headphones\""]",4924.67,{},72044,0,"""North America""" +2024-08-19,47377,6940,"[\""Headphones\"", \""Laptop\""]",3451.78,"{\""promo\"": \""21%\""}",49958,1,"""South America""" +2023-04-26,47378,5774,"[\""Phone\"", \""Tablet\""]",3623.86,"{\""seasonal\"": \""12%\""}",51438,0,"""South America""" +2024-04-25,47379,2578,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3171.64,{},104553,0,"""South America""" +2023-01-04,47380,9190,"[\""Monitor\"", \""Keyboard\""]",4152.02,{},106687,0,"""Asia""" +2023-12-12,47381,4257,"[\""Tablet\""]",3910.23,{},285850,1,"""Asia""" +2024-12-05,47382,987,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3923.87,{},254253,1,"""Asia""" +2024-11-24,47383,700,"[\""Headphones\""]",3586.53,{},78697,0,"""Africa""" +2024-03-16,47384,8768,"[\""Headphones\""]",2515.97,"{\"": \""8%\""}",192045,1,"""Asia""" +2024-03-09,47385,6868,"[\""Keyboard\"", \""Laptop\""]",1495.85,{},70865,0,"""North America""" +2023-09-25,47386,4492,"[\""Monitor\"", \""Laptop\""]",3822.14,"{\""seasonal\"": \""24%\""}",80968,1,"""North America""" +2024-04-28,47387,2032,"[\""Laptop\"", \""Wireless Mouse\""]",3546.28,{},258177,1,"""North America""" +2023-11-09,47388,8013,"[\""Wireless Mouse\""]",3405.9,"{\""seasonal\"": \""27%\""}",96184,1,"""South America""" +2023-08-07,47389,2123,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4155.74,"{\""promo\"": \""9%\""}",101196,1,"""Africa""" +2024-12-17,47390,5620,"[\""Phone\"", \""Wireless Mouse\""]",3509.5,"{\""seasonal\"": \""7%\""}",254440,0,"""Africa""" +2023-10-25,47391,8155,"[\""Headphones\"", \""Monitor\""]",368.01,"{\""promo\"": \""22%\""}",103011,1,"""Europe""" +2024-02-02,47392,1453,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2837.2,{},30444,1,"""Europe""" +2024-10-26,47393,157,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2199.38,"{\""promo\"": \""28%\""}",169467,1,"""North America""" +2024-11-09,47394,4265,"[\""Charger\"", \""Keyboard\""]",2491.57,"{\"": \""20%\""}",31502,0,"""South America""" +2024-08-23,47395,908,"[\""Phone\""]",2868.31,"{\""seasonal\"": \""5%\""}",222394,0,"""South America""" +2024-03-15,47396,3332,"[\""Monitor\"", \""Headphones\""]",4176.82,"{\""loyalty\"": \""5%\""}",19380,0,"""Asia""" +2024-06-28,47397,8462,"[\""Charger\"", \""Monitor\""]",4990.92,"{\""seasonal\"": \""20%\""}",85676,0,"""North America""" +2024-10-11,47398,9599,"[\""Keyboard\""]",4543.95,{},293643,1,"""South America""" +2024-07-13,47399,6457,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1210.75,"{\""loyalty\"": \""9%\""}",135173,0,"""North America""" +2023-09-18,47400,6358,"[\""Monitor\""]",1813.29,{},61058,0,"""Europe""" +2023-08-14,47401,9923,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4303.88,{},229051,1,"""North America""" +2024-07-02,47402,9416,"[\""Phone\"", \""Keyboard\""]",2888.8,{},173828,1,"""Africa""" +2023-05-27,47403,9686,"[\""Charger\""]",2194.64,"{\"": \""15%\""}",277896,0,"""Europe""" +2023-05-24,47404,4715,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2279.05,{},76969,0,"""North America""" +2024-06-08,47405,1697,"[\""Wireless Mouse\""]",1886.14,"{\""seasonal\"": \""21%\""}",22361,1,"""South America""" +2024-06-04,47406,7012,"[\""Phone\"", \""Tablet\""]",4929.16,{},131073,0,"""South America""" +2023-06-04,47407,9214,"[\""Monitor\""]",3217.21,"{\""loyalty\"": \""9%\""}",95016,1,"""Asia""" +2024-04-27,47408,7106,"[\""Wireless Mouse\""]",772.16,"{\""seasonal\"": \""7%\""}",267193,1,"""Europe""" +2023-07-31,47409,6815,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4351.8,{},170833,0,"""North America""" +2023-07-02,47410,7880,"[\""Laptop\""]",3836.03,{},230806,1,"""Africa""" +2023-03-06,47411,9387,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2168.55,{},153726,0,"""South America""" +2024-03-07,47412,3331,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3922.32,{},158594,1,"""Asia""" +2024-06-05,47413,8520,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2509.51,{},64052,0,"""Africa""" +2023-06-26,47414,9213,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1821.04,{},227719,1,"""North America""" +2023-05-21,47415,7863,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1018.96,"{\"": \""15%\""}",243942,0,"""Asia""" +2023-07-29,47416,4294,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",760.13,{},295353,0,"""Asia""" +2024-08-15,47417,1647,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1982.82,{},144385,0,"""Asia""" +2023-04-21,47418,4490,"[\""Phone\"", \""Laptop\""]",4434.16,"{\""loyalty\"": \""22%\""}",201602,0,"""Asia""" +2023-09-25,47419,1627,"[\""Wireless Mouse\""]",2190.68,"{\""seasonal\"": \""6%\""}",49801,1,"""South America""" +2024-06-04,47420,5945,"[\""Wireless Mouse\"", \""Tablet\""]",57.22,{},105620,0,"""Asia""" +2024-02-03,47421,8627,"[\""Keyboard\""]",2231.58,"{\""seasonal\"": \""19%\""}",267480,1,"""Asia""" +2023-06-29,47422,784,"[\""Headphones\""]",1180.65,{},287136,1,"""Africa""" +2024-09-29,47423,6113,"[\""Monitor\"", \""Keyboard\""]",792.53,{},185834,1,"""Africa""" +2023-11-25,47424,9145,"[\""Monitor\"", \""Tablet\""]",2037.63,{},186450,0,"""Europe""" +2024-07-09,47425,7020,"[\""Wireless Mouse\""]",1908.84,{},75343,0,"""North America""" +2024-10-17,47426,4883,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3720.76,"{\""loyalty\"": \""18%\""}",148052,1,"""Europe""" +2023-09-29,47427,1719,"[\""Keyboard\"", \""Tablet\""]",2423.62,{},194937,0,"""Europe""" +2024-04-12,47428,5117,"[\""Wireless Mouse\""]",651.02,{},234913,0,"""Asia""" +2023-03-12,47429,3781,"[\""Wireless Mouse\"", \""Phone\""]",4949.2,"{\""seasonal\"": \""5%\""}",105444,0,"""Europe""" +2024-06-16,47430,7887,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1849.97,{},78643,0,"""Asia""" +2024-01-31,47431,9777,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3738.49,{},269584,0,"""Africa""" +2023-12-24,47432,7652,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2683.75,{},261274,1,"""Europe""" +2024-09-04,47433,8676,"[\""Keyboard\""]",946.81,"{\""seasonal\"": \""23%\""}",227628,0,"""Africa""" +2023-02-24,47434,2025,"[\""Headphones\""]",2188.73,{},32293,1,"""Asia""" +2024-05-25,47435,1630,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2505.87,{},83834,0,"""Africa""" +2024-09-13,47436,8446,"[\""Headphones\"", \""Monitor\""]",3805.13,"{\"": \""22%\""}",165909,1,"""Asia""" +2023-05-15,47437,2593,"[\""Headphones\""]",2664.14,{},216361,0,"""North America""" +2024-01-13,47438,2321,"[\""Tablet\""]",1884.28,"{\""loyalty\"": \""20%\""}",202980,0,"""North America""" +2024-12-09,47439,4686,"[\""Monitor\""]",4919.79,{},7486,1,"""Africa""" +2024-06-13,47440,3327,"[\""Wireless Mouse\"", \""Laptop\""]",2109.45,"{\""promo\"": \""23%\""}",147364,0,"""Africa""" +2023-02-07,47441,8934,"[\""Laptop\"", \""Phone\""]",3118.62,"{\""promo\"": \""6%\""}",72207,0,"""Asia""" +2024-08-16,47442,1903,"[\""Charger\""]",1475.92,"{\"": \""17%\""}",273634,0,"""Africa""" +2024-08-18,47443,6556,"[\""Tablet\""]",144.92,"{\"": \""22%\""}",75664,1,"""Asia""" +2024-06-15,47444,6761,"[\""Phone\"", \""Wireless Mouse\""]",1553.0,{},290670,1,"""Africa""" +2023-07-04,47445,3608,"[\""Charger\"", \""Tablet\""]",3012.88,{},282826,0,"""Europe""" +2024-11-08,47446,8505,"[\""Headphones\"", \""Wireless Mouse\""]",4476.69,"{\""loyalty\"": \""7%\""}",222834,0,"""North America""" +2023-01-09,47447,9180,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",265.77,"{\""seasonal\"": \""30%\""}",110416,0,"""South America""" +2024-01-09,47448,708,"[\""Charger\""]",409.32,{},129129,1,"""North America""" +2024-09-05,47449,6714,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",784.1,"{\""seasonal\"": \""25%\""}",278353,1,"""North America""" +2023-03-16,47450,1484,"[\""Monitor\""]",3874.05,{},113800,0,"""Europe""" +2024-07-12,47451,6778,"[\""Wireless Mouse\"", \""Phone\""]",2788.66,{},62916,0,"""Europe""" +2024-03-29,47452,2288,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4987.93,{},105599,1,"""Africa""" +2023-04-04,47453,270,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",515.4,{},183691,0,"""South America""" +2024-11-02,47454,287,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4884.76,{},181785,0,"""North America""" +2023-12-01,47455,5596,"[\""Monitor\"", \""Charger\""]",4936.53,{},16200,0,"""Africa""" +2024-06-08,47456,9184,"[\""Charger\"", \""Phone\""]",1753.81,"{\""promo\"": \""15%\""}",158472,1,"""North America""" +2024-03-04,47457,8991,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1856.93,"{\""loyalty\"": \""13%\""}",38372,0,"""Asia""" +2023-01-26,47458,9886,"[\""Laptop\"", \""Keyboard\""]",978.1,"{\""loyalty\"": \""16%\""}",62896,1,"""North America""" +2023-10-25,47459,8314,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1846.31,{},173575,1,"""Europe""" +2024-10-09,47460,2273,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",275.77,{},299624,0,"""North America""" +2024-09-06,47461,7190,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",357.66,"{\""seasonal\"": \""25%\""}",144845,0,"""Europe""" +2024-02-07,47462,4419,"[\""Laptop\""]",4677.35,"{\"": \""16%\""}",209488,0,"""Asia""" +2024-11-19,47463,4041,"[\""Keyboard\""]",4130.33,{},79941,0,"""South America""" +2024-08-28,47464,1895,"[\""Keyboard\""]",316.67,{},64684,1,"""Asia""" +2024-11-25,47465,7276,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3640.22,{},39503,0,"""Asia""" +2024-10-22,47466,403,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4900.93,"{\"": \""21%\""}",2790,1,"""Africa""" +2023-03-05,47467,9983,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4727.74,"{\""loyalty\"": \""29%\""}",50210,1,"""Europe""" +2023-03-16,47468,6716,"[\""Laptop\""]",4112.25,"{\"": \""19%\""}",260631,1,"""Europe""" +2024-03-16,47469,9072,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1202.09,"{\""loyalty\"": \""19%\""}",3794,1,"""Africa""" +2023-01-13,47470,6674,"[\""Wireless Mouse\""]",2719.6,"{\"": \""25%\""}",20825,1,"""Africa""" +2024-03-31,47471,5759,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1369.98,"{\""seasonal\"": \""21%\""}",13109,1,"""Asia""" +2023-05-15,47472,859,"[\""Laptop\""]",271.63,"{\"": \""26%\""}",87300,1,"""Europe""" +2023-12-01,47473,5014,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1828.55,"{\""seasonal\"": \""23%\""}",243642,0,"""Asia""" +2024-09-06,47474,4043,"[\""Phone\""]",1245.15,"{\""seasonal\"": \""23%\""}",102855,0,"""North America""" +2023-11-05,47475,6347,"[\""Tablet\""]",3274.6,{},198629,1,"""Africa""" +2023-11-28,47476,8726,"[\""Keyboard\"", \""Charger\""]",494.65,{},204789,0,"""Asia""" +2024-03-29,47477,8647,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4081.56,"{\"": \""10%\""}",125312,0,"""Asia""" +2023-07-18,47478,7298,"[\""Laptop\""]",4272.59,{},122248,0,"""Europe""" +2024-05-06,47479,1737,"[\""Phone\""]",1296.76,"{\""seasonal\"": \""30%\""}",219028,0,"""Africa""" +2024-01-14,47480,9318,"[\""Laptop\""]",3448.77,{},73688,0,"""Africa""" +2024-09-13,47481,7749,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3769.91,{},270476,1,"""Europe""" +2024-11-28,47482,2479,"[\""Phone\"", \""Tablet\""]",1767.64,"{\""promo\"": \""12%\""}",26584,1,"""Europe""" +2024-06-24,47483,1896,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",945.76,{},286470,0,"""North America""" +2023-06-15,47484,9372,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4325.21,"{\""promo\"": \""10%\""}",101878,1,"""Africa""" +2024-09-20,47485,1641,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",999.27,{},157798,0,"""Europe""" +2023-02-01,47486,6529,"[\""Laptop\""]",675.06,{},110929,0,"""North America""" +2023-01-07,47487,7904,"[\""Phone\"", \""Wireless Mouse\""]",825.8,"{\""promo\"": \""22%\""}",157175,1,"""Asia""" +2023-09-22,47488,5321,"[\""Phone\"", \""Charger\""]",3874.97,"{\""seasonal\"": \""11%\""}",182654,0,"""North America""" +2023-09-24,47489,5338,"[\""Laptop\"", \""Monitor\""]",4890.67,"{\""loyalty\"": \""15%\""}",218550,1,"""Europe""" +2023-11-14,47490,7601,"[\""Charger\""]",3859.15,{},44378,0,"""North America""" +2023-05-08,47491,7854,"[\""Monitor\""]",4397.2,{},264733,0,"""North America""" +2024-03-02,47492,4731,"[\""Wireless Mouse\""]",4330.45,{},208673,1,"""South America""" +2024-02-06,47493,1381,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1373.5,{},231724,0,"""Europe""" +2024-01-07,47494,6813,"[\""Laptop\"", \""Headphones\""]",3442.44,"{\""seasonal\"": \""8%\""}",241895,0,"""Europe""" +2024-05-13,47495,9590,"[\""Laptop\""]",3665.9,"{\""promo\"": \""22%\""}",217063,0,"""Asia""" +2024-12-07,47496,4424,"[\""Laptop\""]",1681.5,{},275333,1,"""Asia""" +2024-12-01,47497,8366,"[\""Charger\""]",3847.95,"{\""loyalty\"": \""18%\""}",24537,1,"""Africa""" +2024-05-19,47498,3698,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4299.21,{},281516,1,"""North America""" +2024-08-20,47499,5803,"[\""Monitor\""]",4821.07,"{\""loyalty\"": \""23%\""}",131416,1,"""South America""" +2023-08-31,47500,7578,"[\""Charger\""]",3093.83,{},98786,0,"""Europe""" +2024-12-15,47501,590,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2192.6,{},261524,0,"""North America""" +2023-12-26,47502,8179,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3209.59,{},132708,1,"""Asia""" +2024-03-09,47503,4607,"[\""Keyboard\"", \""Tablet\""]",722.2,{},150665,0,"""North America""" +2024-04-13,47504,4293,"[\""Keyboard\"", \""Monitor\""]",3530.58,{},33342,1,"""Europe""" +2023-08-22,47505,8658,"[\""Monitor\""]",389.43,"{\""loyalty\"": \""18%\""}",42698,0,"""South America""" +2024-04-06,47506,2310,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3703.41,{},230363,1,"""North America""" +2023-06-29,47507,5870,"[\""Monitor\""]",2594.33,{},117116,1,"""South America""" +2023-10-29,47508,964,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3917.14,{},72616,1,"""Europe""" +2024-09-03,47509,8020,"[\""Headphones\"", \""Tablet\""]",947.55,{},2533,1,"""Europe""" +2024-02-17,47510,1276,"[\""Charger\"", \""Keyboard\""]",3678.87,"{\""loyalty\"": \""16%\""}",95810,1,"""Africa""" +2024-06-27,47511,1266,"[\""Charger\"", \""Phone\"", \""Laptop\""]",544.51,"{\""promo\"": \""19%\""}",59533,0,"""Europe""" +2024-12-22,47512,9549,"[\""Keyboard\""]",4195.59,{},70861,1,"""North America""" +2024-05-09,47513,3855,"[\""Laptop\"", \""Charger\""]",4269.43,{},26080,0,"""Africa""" +2023-08-06,47514,9442,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3906.51,"{\""loyalty\"": \""25%\""}",93940,0,"""Europe""" +2023-07-10,47515,4500,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",562.07,{},74974,1,"""Europe""" +2023-05-14,47516,5052,"[\""Tablet\""]",1156.13,{},45415,1,"""Europe""" +2024-12-07,47517,7465,"[\""Headphones\""]",772.33,{},201043,0,"""South America""" +2023-10-09,47518,2495,"[\""Charger\""]",4386.02,{},34375,1,"""North America""" +2024-01-29,47519,4150,"[\""Monitor\""]",89.43,"{\"": \""12%\""}",110245,1,"""Europe""" +2023-01-02,47520,9804,"[\""Wireless Mouse\""]",3003.68,{},35055,1,"""Africa""" +2024-03-09,47521,4299,"[\""Monitor\""]",3979.65,"{\""loyalty\"": \""30%\""}",138436,0,"""North America""" +2024-04-23,47522,7812,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3422.25,{},106730,0,"""North America""" +2023-03-25,47523,7296,"[\""Tablet\"", \""Laptop\""]",2566.2,"{\""loyalty\"": \""17%\""}",148849,0,"""Asia""" +2023-04-26,47524,362,"[\""Headphones\""]",1029.99,"{\""loyalty\"": \""7%\""}",297729,1,"""Africa""" +2023-10-07,47525,3743,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",477.14,"{\""loyalty\"": \""10%\""}",298222,0,"""Africa""" +2024-09-18,47526,7882,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",899.35,{},52584,0,"""Asia""" +2023-12-06,47527,5735,"[\""Headphones\""]",3136.72,"{\"": \""17%\""}",80876,0,"""South America""" +2024-03-04,47528,4388,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",671.94,"{\""promo\"": \""20%\""}",190223,1,"""Europe""" +2023-12-31,47529,4475,"[\""Laptop\""]",1810.73,{},258116,0,"""North America""" +2024-03-18,47530,3141,"[\""Tablet\""]",3862.75,{},12940,1,"""South America""" +2023-08-02,47531,9458,"[\""Tablet\""]",2731.62,{},143561,1,"""Africa""" +2024-10-28,47532,1254,"[\""Keyboard\""]",3125.76,"{\""loyalty\"": \""8%\""}",209852,0,"""North America""" +2024-04-03,47533,5165,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4248.14,{},152529,0,"""Africa""" +2023-06-15,47534,4309,"[\""Charger\""]",3620.8,{},113351,0,"""Africa""" +2023-02-01,47535,3680,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4395.7,{},195452,1,"""Europe""" +2023-08-12,47536,2449,"[\""Laptop\""]",108.72,{},204992,0,"""Europe""" +2023-02-06,47537,310,"[\""Headphones\"", \""Monitor\""]",2487.07,"{\""promo\"": \""14%\""}",258725,1,"""North America""" +2024-07-19,47538,5248,"[\""Headphones\"", \""Monitor\""]",1911.93,"{\""promo\"": \""19%\""}",14011,0,"""Europe""" +2023-06-13,47539,5428,"[\""Wireless Mouse\"", \""Phone\""]",3222.81,"{\"": \""9%\""}",108780,0,"""South America""" +2024-07-18,47540,9927,"[\""Monitor\""]",1812.62,"{\""promo\"": \""23%\""}",132118,0,"""Europe""" +2024-03-10,47541,4967,"[\""Headphones\""]",4451.96,{},279556,0,"""Europe""" +2024-06-19,47542,4126,"[\""Headphones\""]",2163.26,{},83086,1,"""North America""" +2023-04-11,47543,9223,"[\""Laptop\"", \""Wireless Mouse\""]",2035.31,"{\""seasonal\"": \""7%\""}",272883,1,"""North America""" +2024-05-23,47544,9403,"[\""Tablet\"", \""Monitor\""]",2430.39,"{\""promo\"": \""17%\""}",135908,0,"""Europe""" +2023-04-12,47545,556,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1277.34,{},98940,1,"""Europe""" +2024-02-23,47546,6942,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3122.79,{},203981,1,"""Africa""" +2024-01-30,47547,4577,"[\""Monitor\""]",1250.49,"{\"": \""17%\""}",118812,0,"""Europe""" +2024-05-23,47548,9136,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1084.89,{},236643,1,"""South America""" +2024-12-11,47549,9868,"[\""Phone\"", \""Headphones\""]",191.65,{},65386,1,"""North America""" +2024-07-06,47550,336,"[\""Monitor\"", \""Tablet\""]",1915.22,{},207576,0,"""Asia""" +2024-01-31,47551,3054,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1499.87,"{\""loyalty\"": \""9%\""}",272617,0,"""South America""" +2023-08-14,47552,5355,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1848.88,{},11280,0,"""South America""" +2023-06-24,47553,1647,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3248.23,"{\""loyalty\"": \""8%\""}",217067,1,"""Asia""" +2024-12-05,47554,5522,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3469.83,"{\"": \""30%\""}",17634,1,"""North America""" +2024-04-01,47555,166,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1235.24,{},297351,1,"""North America""" +2024-09-26,47556,4476,"[\""Keyboard\""]",1448.98,{},159775,1,"""North America""" +2023-06-24,47557,1253,"[\""Keyboard\"", \""Charger\""]",2781.97,{},226338,0,"""South America""" +2024-02-20,47558,9828,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2146.6,{},114750,1,"""Europe""" +2023-05-09,47559,7117,"[\""Tablet\""]",927.56,"{\""loyalty\"": \""27%\""}",182311,1,"""South America""" +2024-03-06,47560,4825,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3379.37,{},198537,1,"""Africa""" +2024-08-24,47561,9451,"[\""Keyboard\"", \""Tablet\""]",4465.85,{},112121,1,"""Europe""" +2024-12-21,47562,1463,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4505.77,"{\""seasonal\"": \""19%\""}",298107,1,"""North America""" +2024-02-09,47563,7745,"[\""Charger\""]",2208.55,{},62049,0,"""Europe""" +2023-06-29,47564,2659,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2172.54,{},296166,1,"""North America""" +2024-01-30,47565,5845,"[\""Wireless Mouse\"", \""Charger\""]",4455.7,{},48881,0,"""Europe""" +2023-04-15,47566,2356,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1370.95,"{\""loyalty\"": \""18%\""}",177494,0,"""Africa""" +2024-05-23,47567,6047,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3444.28,"{\""loyalty\"": \""8%\""}",103310,0,"""North America""" +2024-01-07,47568,9231,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",322.52,{},227472,1,"""North America""" +2024-05-14,47569,7768,"[\""Headphones\""]",1518.43,{},216881,1,"""Asia""" +2024-08-12,47570,9218,"[\""Keyboard\""]",2455.94,"{\""promo\"": \""14%\""}",227994,0,"""Europe""" +2023-08-08,47571,6288,"[\""Charger\"", \""Tablet\""]",4941.01,{},272658,0,"""Africa""" +2024-12-17,47572,9949,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4303.67,{},94066,0,"""South America""" +2024-09-01,47573,874,"[\""Monitor\"", \""Phone\""]",1239.73,"{\"": \""7%\""}",200097,1,"""South America""" +2024-04-19,47574,9589,"[\""Tablet\"", \""Headphones\""]",2883.57,"{\""promo\"": \""20%\""}",33644,1,"""Europe""" +2024-09-04,47575,9060,"[\""Headphones\"", \""Laptop\""]",1884.2,"{\""promo\"": \""8%\""}",44802,1,"""North America""" +2024-10-03,47576,9170,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1866.59,{},41766,1,"""South America""" +2024-06-09,47577,9895,"[\""Phone\""]",3991.45,"{\""loyalty\"": \""23%\""}",258508,0,"""South America""" +2023-03-05,47578,8935,"[\""Monitor\"", \""Phone\""]",4172.26,"{\"": \""14%\""}",147057,1,"""Africa""" +2023-06-17,47579,5181,"[\""Keyboard\"", \""Tablet\""]",3106.52,{},206788,0,"""Asia""" +2023-03-20,47580,1316,"[\""Phone\"", \""Tablet\""]",4863.09,{},107116,1,"""South America""" +2024-05-20,47581,4942,"[\""Charger\""]",4401.17,{},234420,1,"""South America""" +2024-01-24,47582,6866,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4558.35,"{\""promo\"": \""24%\""}",148794,1,"""South America""" +2024-12-23,47583,7545,"[\""Wireless Mouse\"", \""Keyboard\""]",4692.6,"{\""loyalty\"": \""20%\""}",16709,1,"""Africa""" +2024-09-21,47584,1478,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1697.72,"{\""promo\"": \""5%\""}",55243,0,"""North America""" +2023-05-16,47585,7956,"[\""Wireless Mouse\""]",4537.2,{},243126,1,"""North America""" +2023-04-24,47586,2061,"[\""Wireless Mouse\"", \""Headphones\""]",456.36,"{\""loyalty\"": \""17%\""}",163300,0,"""South America""" +2024-10-11,47587,6341,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3033.96,{},194312,0,"""South America""" +2023-02-21,47588,7902,"[\""Headphones\"", \""Monitor\""]",3013.56,{},160933,0,"""Africa""" +2023-06-21,47589,4696,"[\""Monitor\"", \""Wireless Mouse\""]",1958.55,{},288544,0,"""Asia""" +2024-01-08,47590,727,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",862.58,{},157052,1,"""Europe""" +2024-04-09,47591,7915,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",478.1,"{\"": \""19%\""}",73129,1,"""Asia""" +2023-02-26,47592,5024,"[\""Charger\""]",1556.35,{},121647,0,"""Asia""" +2024-11-24,47593,5182,"[\""Keyboard\"", \""Monitor\""]",1635.78,"{\"": \""27%\""}",233370,0,"""Asia""" +2024-01-26,47594,9580,"[\""Tablet\""]",2150.89,{},156472,0,"""Africa""" +2024-11-20,47595,334,"[\""Monitor\"", \""Phone\""]",1079.77,"{\""loyalty\"": \""15%\""}",78014,1,"""Asia""" +2023-06-13,47596,7028,"[\""Wireless Mouse\"", \""Laptop\""]",3037.92,"{\""loyalty\"": \""23%\""}",190796,0,"""Africa""" +2023-08-09,47597,3779,"[\""Monitor\"", \""Laptop\""]",4568.51,"{\""promo\"": \""29%\""}",112475,1,"""South America""" +2024-10-29,47598,8082,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4433.57,"{\"": \""7%\""}",52798,1,"""Africa""" +2023-05-16,47599,7651,"[\""Keyboard\"", \""Headphones\""]",4472.59,{},84950,0,"""South America""" +2023-01-28,47600,6217,"[\""Monitor\""]",843.22,{},27108,1,"""Africa""" +2024-06-06,47601,1,"[\""Monitor\""]",4587.9,{},33987,0,"""North America""" +2024-02-16,47602,2839,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1950.51,{},192336,1,"""Europe""" +2024-08-12,47603,2441,"[\""Tablet\"", \""Wireless Mouse\""]",953.89,"{\""promo\"": \""21%\""}",5032,1,"""North America""" +2023-06-27,47604,728,"[\""Wireless Mouse\""]",2857.2,"{\""loyalty\"": \""27%\""}",254899,0,"""Europe""" +2023-04-10,47605,8870,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1501.24,{},37474,1,"""North America""" +2023-05-08,47606,9484,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1333.6,{},168053,0,"""Asia""" +2024-11-28,47607,8489,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1665.08,"{\""seasonal\"": \""26%\""}",93616,0,"""Asia""" +2023-05-01,47608,6562,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",358.29,"{\""promo\"": \""17%\""}",69907,1,"""Europe""" +2023-09-05,47609,6866,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2360.55,{},5302,1,"""North America""" +2023-03-20,47610,2934,"[\""Headphones\""]",1045.0,"{\"": \""12%\""}",46596,1,"""Asia""" +2024-01-26,47611,6898,"[\""Charger\""]",1932.82,"{\"": \""11%\""}",96011,1,"""Asia""" +2024-10-08,47612,7984,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3028.64,{},186009,1,"""South America""" +2023-05-02,47613,2692,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3800.96,{},236146,1,"""Europe""" +2023-11-06,47614,4981,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1476.44,"{\""loyalty\"": \""30%\""}",227139,0,"""Europe""" +2023-12-06,47615,4554,"[\""Wireless Mouse\""]",795.17,{},115791,0,"""Europe""" +2023-04-15,47616,7866,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",156.5,"{\"": \""19%\""}",242091,0,"""Europe""" +2024-05-05,47617,5211,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4251.05,{},143197,0,"""Asia""" +2024-03-07,47618,7021,"[\""Charger\"", \""Wireless Mouse\""]",4408.85,"{\""promo\"": \""7%\""}",281762,0,"""Africa""" +2024-12-10,47619,4983,"[\""Charger\"", \""Phone\""]",3859.13,{},263531,0,"""North America""" +2023-06-17,47620,8739,"[\""Wireless Mouse\""]",2517.17,"{\"": \""7%\""}",284965,0,"""Europe""" +2024-02-23,47621,4200,"[\""Monitor\""]",2936.18,"{\"": \""20%\""}",51880,1,"""South America""" +2024-10-13,47622,6407,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",353.74,"{\""seasonal\"": \""9%\""}",226093,1,"""North America""" +2024-02-05,47623,8324,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4567.06,{},71663,1,"""North America""" +2023-10-04,47624,1495,"[\""Charger\""]",3843.57,"{\""promo\"": \""29%\""}",214977,1,"""Europe""" +2023-03-03,47625,3838,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2476.23,{},50446,0,"""Europe""" +2023-05-20,47626,1002,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4449.56,{},191174,1,"""Asia""" +2023-04-10,47627,9073,"[\""Laptop\""]",2168.22,{},110381,0,"""Africa""" +2024-05-23,47628,3898,"[\""Monitor\""]",4891.83,"{\""promo\"": \""5%\""}",60778,1,"""Africa""" +2023-08-08,47629,281,"[\""Phone\""]",751.3,"{\""seasonal\"": \""11%\""}",51965,1,"""South America""" +2023-04-21,47630,4857,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3394.08,"{\""loyalty\"": \""21%\""}",125303,0,"""South America""" +2024-11-12,47631,7049,"[\""Laptop\""]",305.68,{},256634,0,"""South America""" +2023-11-21,47632,1613,"[\""Phone\""]",3827.07,"{\""seasonal\"": \""25%\""}",231001,1,"""North America""" +2024-05-28,47633,9340,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3964.02,"{\"": \""6%\""}",292515,1,"""Africa""" +2024-03-19,47634,3502,"[\""Wireless Mouse\"", \""Headphones\""]",981.04,{},67998,1,"""Africa""" +2024-06-07,47635,1187,"[\""Monitor\"", \""Charger\""]",3101.75,"{\"": \""6%\""}",7081,1,"""Asia""" +2023-05-01,47636,7719,"[\""Monitor\"", \""Phone\""]",1417.37,"{\"": \""6%\""}",231089,0,"""North America""" +2024-01-08,47637,2643,"[\""Tablet\""]",2554.74,{},111086,1,"""Europe""" +2024-12-10,47638,6877,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2671.85,{},169526,0,"""Africa""" +2024-03-15,47639,862,"[\""Headphones\"", \""Monitor\""]",3555.09,"{\""promo\"": \""17%\""}",276347,1,"""Asia""" +2023-12-05,47640,1622,"[\""Keyboard\""]",2036.23,{},195943,0,"""Asia""" +2023-11-24,47641,6265,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3188.81,"{\"": \""17%\""}",123699,1,"""Europe""" +2024-12-30,47642,2265,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1576.03,{},87125,1,"""Europe""" +2024-10-26,47643,4312,"[\""Laptop\"", \""Wireless Mouse\""]",4016.15,"{\""promo\"": \""12%\""}",214355,0,"""South America""" +2024-12-01,47644,2753,"[\""Tablet\""]",1173.8,{},176659,0,"""South America""" +2024-04-07,47645,3320,"[\""Tablet\""]",4093.48,"{\""seasonal\"": \""11%\""}",128318,0,"""Europe""" +2023-04-15,47646,3958,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2896.18,"{\""loyalty\"": \""9%\""}",209661,0,"""Europe""" +2023-03-24,47647,7179,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",373.0,"{\""promo\"": \""25%\""}",288195,1,"""Africa""" +2023-04-12,47648,9515,"[\""Monitor\"", \""Charger\""]",302.33,{},4042,1,"""South America""" +2023-06-26,47649,9635,"[\""Tablet\"", \""Monitor\""]",625.89,{},189798,1,"""Asia""" +2023-11-23,47650,7156,"[\""Wireless Mouse\"", \""Headphones\""]",1184.21,"{\""seasonal\"": \""22%\""}",25388,0,"""Asia""" +2024-12-23,47651,9727,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3266.31,{},95070,0,"""North America""" +2024-10-30,47652,5042,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4590.96,{},100050,0,"""North America""" +2023-06-22,47653,8481,"[\""Tablet\""]",2893.29,"{\""loyalty\"": \""13%\""}",18652,0,"""Europe""" +2023-01-15,47654,3466,"[\""Monitor\""]",756.21,{},25327,1,"""Asia""" +2023-02-22,47655,5141,"[\""Phone\"", \""Keyboard\""]",1921.36,"{\"": \""21%\""}",227833,0,"""North America""" +2024-09-19,47656,6750,"[\""Phone\"", \""Wireless Mouse\""]",3391.39,"{\""loyalty\"": \""20%\""}",288875,0,"""North America""" +2024-10-22,47657,3906,"[\""Monitor\""]",2584.26,"{\""promo\"": \""25%\""}",200397,0,"""South America""" +2024-03-07,47658,3004,"[\""Wireless Mouse\"", \""Monitor\""]",443.34,"{\""loyalty\"": \""7%\""}",131879,1,"""Asia""" +2023-05-22,47659,6210,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1474.64,"{\"": \""19%\""}",245844,1,"""Asia""" +2024-09-05,47660,6391,"[\""Laptop\""]",2081.56,{},52789,1,"""Asia""" +2023-01-26,47661,8139,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4086.81,{},21538,0,"""Asia""" +2023-11-05,47662,8587,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1394.5,{},190775,0,"""Asia""" +2024-04-09,47663,7990,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1030.34,"{\""loyalty\"": \""29%\""}",217417,1,"""Asia""" +2023-05-03,47664,4884,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",580.69,"{\""promo\"": \""12%\""}",77307,0,"""South America""" +2024-02-06,47665,5513,"[\""Keyboard\"", \""Tablet\""]",2697.58,{},66598,0,"""Africa""" +2023-08-01,47666,684,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3559.6,{},249177,0,"""Africa""" +2023-10-24,47667,3174,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3586.66,{},109454,1,"""Asia""" +2023-04-20,47668,2289,"[\""Phone\"", \""Charger\""]",1436.83,"{\""promo\"": \""7%\""}",263548,1,"""Africa""" +2023-10-10,47669,333,"[\""Wireless Mouse\""]",3218.2,"{\"": \""8%\""}",204235,1,"""Africa""" +2023-02-23,47670,2393,"[\""Charger\"", \""Monitor\""]",835.03,"{\""seasonal\"": \""10%\""}",234769,0,"""Africa""" +2024-09-06,47671,6796,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",324.36,"{\""promo\"": \""19%\""}",150714,1,"""Europe""" +2024-04-13,47672,556,"[\""Laptop\""]",3537.1,{},230399,0,"""Asia""" +2023-03-28,47673,3333,"[\""Wireless Mouse\""]",464.99,{},269378,1,"""North America""" +2023-07-25,47674,3963,"[\""Tablet\""]",4739.4,"{\"": \""19%\""}",272382,0,"""Asia""" +2024-07-15,47675,3417,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1052.33,"{\"": \""20%\""}",179747,1,"""Asia""" +2023-02-02,47676,6241,"[\""Phone\"", \""Charger\""]",223.18,"{\"": \""20%\""}",232898,0,"""Asia""" +2024-12-17,47677,3936,"[\""Monitor\"", \""Headphones\""]",802.44,"{\"": \""19%\""}",142834,1,"""Asia""" +2023-07-13,47678,6054,"[\""Charger\"", \""Tablet\""]",358.1,"{\"": \""7%\""}",188590,1,"""North America""" +2024-08-07,47679,6279,"[\""Laptop\"", \""Keyboard\""]",2923.92,"{\"": \""8%\""}",101633,1,"""North America""" +2023-02-10,47680,2392,"[\""Phone\""]",289.71,{},286688,0,"""South America""" +2023-11-05,47681,8831,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4926.19,{},197956,0,"""South America""" +2023-03-14,47682,2012,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3918.13,{},26805,1,"""North America""" +2024-10-09,47683,255,"[\""Keyboard\"", \""Headphones\""]",1542.47,{},175034,1,"""Europe""" +2023-08-13,47684,1048,"[\""Headphones\""]",993.77,{},45195,1,"""Asia""" +2023-08-14,47685,3521,"[\""Phone\"", \""Keyboard\""]",3958.87,{},168613,0,"""Europe""" +2023-07-06,47686,4846,"[\""Keyboard\""]",4199.49,"{\""promo\"": \""23%\""}",73859,0,"""Asia""" +2024-01-16,47687,6680,"[\""Headphones\""]",656.26,"{\"": \""9%\""}",20193,1,"""Europe""" +2024-03-13,47688,2646,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2337.6,"{\""seasonal\"": \""8%\""}",83963,1,"""North America""" +2024-07-07,47689,5849,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4525.33,"{\""promo\"": \""14%\""}",278961,1,"""Africa""" +2024-08-30,47690,5969,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4847.93,"{\""promo\"": \""16%\""}",34885,0,"""Europe""" +2024-03-05,47691,2283,"[\""Keyboard\""]",2354.27,{},223621,1,"""North America""" +2024-09-24,47692,2279,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2424.6,"{\""loyalty\"": \""16%\""}",70360,0,"""Asia""" +2023-07-27,47693,9425,"[\""Phone\"", \""Laptop\""]",2506.39,"{\""loyalty\"": \""21%\""}",222103,1,"""Africa""" +2023-08-23,47694,8541,"[\""Charger\"", \""Wireless Mouse\""]",3423.73,"{\""loyalty\"": \""12%\""}",114329,1,"""South America""" +2024-06-01,47695,3819,"[\""Charger\"", \""Headphones\""]",3909.69,{},163820,1,"""South America""" +2023-12-02,47696,8382,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1131.92,{},93539,1,"""Africa""" +2024-12-22,47697,8847,"[\""Monitor\"", \""Keyboard\""]",4498.1,"{\"": \""28%\""}",278255,1,"""North America""" +2023-06-27,47698,3954,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2324.69,"{\""promo\"": \""15%\""}",158144,0,"""Europe""" +2023-09-10,47699,5175,"[\""Phone\"", \""Wireless Mouse\""]",1100.01,{},220733,1,"""South America""" +2023-10-31,47700,2744,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",616.07,{},258332,0,"""Asia""" +2023-05-13,47701,6705,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2029.24,"{\"": \""28%\""}",122721,0,"""North America""" +2023-12-15,47702,524,"[\""Headphones\""]",4256.18,{},286375,1,"""Africa""" +2024-02-01,47703,5710,"[\""Headphones\"", \""Keyboard\""]",2911.53,{},294605,1,"""Europe""" +2024-05-26,47704,940,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",146.16,{},114086,0,"""Europe""" +2024-04-08,47705,9246,"[\""Headphones\""]",2079.96,"{\"": \""13%\""}",7320,0,"""Africa""" +2024-07-01,47706,6844,"[\""Headphones\"", \""Monitor\""]",3631.99,{},42040,0,"""Asia""" +2024-07-09,47707,1140,"[\""Headphones\"", \""Charger\""]",4297.79,{},145285,0,"""Asia""" +2023-02-19,47708,4205,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3032.49,"{\"": \""12%\""}",81488,0,"""Europe""" +2024-01-18,47709,1767,"[\""Laptop\""]",883.14,"{\"": \""9%\""}",182854,0,"""North America""" +2024-05-07,47710,4702,"[\""Charger\"", \""Headphones\""]",170.68,{},31316,1,"""Africa""" +2023-07-08,47711,2594,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2955.94,"{\""loyalty\"": \""26%\""}",119736,1,"""South America""" +2023-07-20,47712,2419,"[\""Headphones\"", \""Charger\""]",1133.4,"{\""loyalty\"": \""12%\""}",41441,1,"""South America""" +2023-06-08,47713,6804,"[\""Tablet\"", \""Charger\""]",1382.3,"{\""loyalty\"": \""16%\""}",127695,0,"""South America""" +2024-05-21,47714,2995,"[\""Tablet\""]",2278.04,{},169042,1,"""Asia""" +2024-10-26,47715,6230,"[\""Keyboard\"", \""Headphones\""]",4571.79,{},180941,0,"""Europe""" +2023-04-07,47716,8611,"[\""Phone\""]",3739.45,{},86574,1,"""Africa""" +2024-09-30,47717,7289,"[\""Tablet\""]",4091.61,{},15721,0,"""Asia""" +2024-08-20,47718,2391,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4392.41,{},297918,0,"""South America""" +2023-05-12,47719,4461,"[\""Charger\"", \""Laptop\""]",971.34,"{\""loyalty\"": \""26%\""}",131475,0,"""Europe""" +2023-04-29,47720,2791,"[\""Phone\""]",2282.45,"{\""seasonal\"": \""29%\""}",38694,1,"""Africa""" +2023-11-04,47721,910,"[\""Laptop\"", \""Wireless Mouse\""]",1293.93,{},20989,1,"""Europe""" +2023-01-30,47722,6078,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2706.55,{},159762,0,"""North America""" +2024-04-30,47723,9971,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3715.41,{},120498,1,"""North America""" +2024-09-18,47724,1294,"[\""Laptop\"", \""Phone\""]",4211.72,{},215873,0,"""Europe""" +2024-08-12,47725,5647,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3033.69,{},197304,1,"""Africa""" +2023-02-05,47726,7174,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1773.82,{},196062,0,"""South America""" +2023-10-19,47727,5757,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",50.03,{},99075,1,"""Africa""" +2023-05-30,47728,4396,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4470.58,{},164976,1,"""North America""" +2023-01-29,47729,2437,"[\""Wireless Mouse\""]",73.31,{},207219,1,"""Europe""" +2024-11-23,47730,7288,"[\""Laptop\"", \""Wireless Mouse\""]",272.74,"{\""loyalty\"": \""21%\""}",68951,1,"""Europe""" +2023-11-23,47731,4927,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1869.11,"{\""promo\"": \""23%\""}",191368,0,"""Europe""" +2024-02-06,47732,6015,"[\""Headphones\""]",770.39,"{\""seasonal\"": \""17%\""}",116482,1,"""Africa""" +2023-09-27,47733,9200,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4755.97,"{\""loyalty\"": \""9%\""}",160502,0,"""North America""" +2024-02-12,47734,8260,"[\""Monitor\"", \""Keyboard\""]",660.78,"{\""loyalty\"": \""24%\""}",177408,1,"""South America""" +2024-06-17,47735,7004,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2144.03,"{\""loyalty\"": \""11%\""}",156426,1,"""Europe""" +2023-01-29,47736,5462,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4140.28,{},113722,0,"""Europe""" +2023-01-14,47737,4720,"[\""Wireless Mouse\""]",1676.43,"{\""loyalty\"": \""25%\""}",93454,1,"""Africa""" +2023-06-16,47738,9866,"[\""Keyboard\"", \""Tablet\""]",2979.65,{},243579,1,"""Africa""" +2023-05-06,47739,2092,"[\""Headphones\"", \""Monitor\""]",603.82,"{\""seasonal\"": \""23%\""}",116182,1,"""North America""" +2023-03-19,47740,1457,"[\""Phone\""]",2637.75,{},86585,1,"""Europe""" +2024-09-21,47741,4353,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1948.07,"{\"": \""13%\""}",169809,0,"""North America""" +2024-09-01,47742,9484,"[\""Keyboard\""]",1189.75,{},32635,1,"""Africa""" +2023-11-22,47743,3339,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2194.43,{},52082,1,"""Asia""" +2023-01-24,47744,7141,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3887.09,{},193399,1,"""South America""" +2024-05-07,47745,8470,"[\""Tablet\""]",629.9,{},232601,1,"""Asia""" +2023-03-17,47746,6982,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4158.92,{},148365,1,"""Europe""" +2023-07-24,47747,2884,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3124.86,"{\""seasonal\"": \""30%\""}",120018,0,"""North America""" +2024-06-18,47748,463,"[\""Headphones\""]",2003.68,{},181522,1,"""Asia""" +2024-09-06,47749,2948,"[\""Monitor\""]",4265.43,{},9004,1,"""South America""" +2023-12-19,47750,8295,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1808.02,"{\"": \""11%\""}",28425,1,"""South America""" +2023-04-03,47751,116,"[\""Charger\""]",4722.27,"{\""loyalty\"": \""27%\""}",80781,1,"""Europe""" +2024-10-04,47752,591,"[\""Charger\""]",2854.23,{},143047,0,"""Africa""" +2024-11-26,47753,3597,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",836.89,{},45408,0,"""Asia""" +2023-06-03,47754,6135,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3712.7,{},68409,0,"""Asia""" +2023-11-18,47755,2081,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3250.48,{},66808,1,"""North America""" +2023-09-30,47756,1263,"[\""Charger\"", \""Laptop\"", \""Phone\""]",579.91,{},32341,1,"""Europe""" +2024-12-02,47757,7659,"[\""Headphones\"", \""Phone\""]",2100.59,{},183747,1,"""Africa""" +2023-04-23,47758,356,"[\""Wireless Mouse\"", \""Headphones\""]",1725.27,"{\""promo\"": \""24%\""}",186494,1,"""Africa""" +2024-11-29,47759,7741,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2969.84,"{\""seasonal\"": \""15%\""}",139228,0,"""Europe""" +2024-05-21,47760,2267,"[\""Charger\"", \""Phone\""]",1409.9,{},9727,0,"""Europe""" +2024-05-29,47761,9847,"[\""Tablet\""]",3604.99,"{\""loyalty\"": \""12%\""}",107993,0,"""Asia""" +2024-08-07,47762,4329,"[\""Headphones\""]",2336.82,"{\"": \""11%\""}",33509,1,"""North America""" +2024-04-18,47763,8030,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2447.42,"{\""promo\"": \""23%\""}",69805,1,"""Africa""" +2024-09-18,47764,5600,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1607.33,{},108928,0,"""Europe""" +2024-03-16,47765,6170,"[\""Wireless Mouse\"", \""Headphones\""]",1696.11,"{\""seasonal\"": \""7%\""}",39513,1,"""Europe""" +2024-05-21,47766,6810,"[\""Headphones\"", \""Tablet\""]",3064.13,{},266225,0,"""South America""" +2024-10-23,47767,5819,"[\""Keyboard\""]",4270.47,"{\""seasonal\"": \""5%\""}",262158,1,"""Europe""" +2024-12-15,47768,6248,"[\""Charger\""]",2943.13,"{\""seasonal\"": \""30%\""}",291544,0,"""South America""" +2024-05-23,47769,6587,"[\""Charger\""]",2103.58,{},184817,0,"""Africa""" +2023-03-07,47770,6334,"[\""Charger\""]",1483.55,{},184047,1,"""Africa""" +2024-12-23,47771,5344,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3513.19,{},124399,0,"""South America""" +2024-03-26,47772,1373,"[\""Charger\"", \""Keyboard\""]",3866.44,{},75215,1,"""South America""" +2024-07-15,47773,3753,"[\""Wireless Mouse\"", \""Headphones\""]",4130.05,{},280805,0,"""South America""" +2023-04-20,47774,6511,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4845.64,"{\"": \""21%\""}",173926,1,"""Europe""" +2024-03-24,47775,423,"[\""Wireless Mouse\"", \""Charger\""]",4037.41,{},27232,0,"""South America""" +2024-04-13,47776,7453,"[\""Keyboard\"", \""Tablet\""]",4848.05,{},170430,1,"""Europe""" +2024-05-29,47777,5528,"[\""Keyboard\"", \""Phone\""]",735.35,"{\""seasonal\"": \""24%\""}",5227,0,"""Asia""" +2024-12-21,47778,1263,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4168.16,"{\""seasonal\"": \""11%\""}",229734,0,"""North America""" +2024-06-06,47779,2234,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3887.48,{},62566,1,"""North America""" +2024-06-20,47780,7673,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1087.38,"{\""loyalty\"": \""10%\""}",125750,0,"""Europe""" +2024-03-28,47781,7954,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3272.51,"{\""promo\"": \""8%\""}",155487,0,"""Africa""" +2024-09-20,47782,5056,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2206.13,{},233989,0,"""North America""" +2024-07-03,47783,7038,"[\""Phone\"", \""Charger\""]",3627.57,"{\""seasonal\"": \""7%\""}",271485,1,"""North America""" +2024-10-05,47784,4307,"[\""Tablet\""]",3233.68,"{\""promo\"": \""6%\""}",17121,0,"""Africa""" +2023-11-12,47785,8143,"[\""Monitor\""]",404.38,"{\""seasonal\"": \""12%\""}",112309,1,"""Europe""" +2023-09-21,47786,169,"[\""Keyboard\""]",1902.94,"{\""seasonal\"": \""23%\""}",110767,1,"""Europe""" +2024-01-05,47787,7584,"[\""Headphones\""]",1843.77,{},13528,1,"""North America""" +2024-08-01,47788,333,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3924.76,"{\""seasonal\"": \""10%\""}",240698,1,"""North America""" +2023-06-17,47789,6589,"[\""Charger\""]",767.76,{},261362,0,"""Africa""" +2023-10-01,47790,4420,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2763.07,"{\"": \""29%\""}",14545,0,"""South America""" +2023-08-31,47791,3231,"[\""Keyboard\""]",2658.46,{},267439,1,"""Africa""" +2023-01-05,47792,6235,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2529.15,{},297587,1,"""Europe""" +2024-02-15,47793,4553,"[\""Headphones\""]",3218.96,{},216903,1,"""Europe""" +2023-11-27,47794,3486,"[\""Headphones\"", \""Tablet\""]",119.8,{},180289,1,"""Africa""" +2023-02-09,47795,1609,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",950.09,"{\""promo\"": \""25%\""}",198953,0,"""Africa""" +2024-09-15,47796,8103,"[\""Wireless Mouse\"", \""Headphones\""]",2492.24,"{\""loyalty\"": \""27%\""}",255748,0,"""Asia""" +2023-12-28,47797,8138,"[\""Monitor\""]",4255.74,{},217232,1,"""Asia""" +2023-07-14,47798,8164,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4642.54,{},105579,1,"""Asia""" +2024-10-30,47799,9884,"[\""Tablet\"", \""Keyboard\""]",3774.24,"{\""loyalty\"": \""6%\""}",247852,1,"""Africa""" +2024-07-29,47800,3067,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",723.85,{},48538,1,"""Europe""" +2023-02-23,47801,5634,"[\""Headphones\""]",3271.91,"{\""promo\"": \""21%\""}",31414,1,"""Africa""" +2024-09-18,47802,5511,"[\""Wireless Mouse\"", \""Laptop\""]",2359.62,{},74400,1,"""Europe""" +2024-10-09,47803,1463,"[\""Headphones\"", \""Phone\""]",1243.56,"{\""promo\"": \""5%\""}",258569,0,"""Europe""" +2023-04-06,47804,1173,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",568.95,"{\"": \""25%\""}",294021,1,"""South America""" +2023-02-17,47805,1272,"[\""Keyboard\"", \""Phone\""]",2534.16,"{\""seasonal\"": \""14%\""}",32453,0,"""South America""" +2023-05-10,47806,1905,"[\""Headphones\""]",4217.27,{},133659,1,"""Europe""" +2023-05-06,47807,8664,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1255.33,"{\""promo\"": \""21%\""}",179283,1,"""Europe""" +2023-06-26,47808,5447,"[\""Phone\""]",951.08,{},202375,1,"""Europe""" +2023-02-05,47809,5734,"[\""Charger\""]",3044.4,{},217545,1,"""Asia""" +2024-03-03,47810,6133,"[\""Wireless Mouse\""]",545.61,{},222631,0,"""North America""" +2023-01-31,47811,6730,"[\""Keyboard\""]",3824.33,"{\""loyalty\"": \""6%\""}",234808,1,"""North America""" +2024-01-19,47812,8631,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3026.67,"{\"": \""16%\""}",106508,1,"""Africa""" +2024-02-20,47813,30,"[\""Keyboard\""]",691.1,"{\"": \""29%\""}",289853,0,"""North America""" +2023-09-05,47814,4932,"[\""Headphones\"", \""Keyboard\""]",1685.92,"{\""loyalty\"": \""30%\""}",173513,1,"""North America""" +2023-05-13,47815,9057,"[\""Keyboard\""]",3217.26,{},209432,1,"""Asia""" +2024-01-14,47816,1882,"[\""Phone\"", \""Headphones\""]",4566.37,{},71940,1,"""Europe""" +2023-01-17,47817,8785,"[\""Charger\""]",4216.52,{},16428,1,"""South America""" +2024-11-11,47818,655,"[\""Tablet\""]",3960.31,"{\""seasonal\"": \""28%\""}",118867,1,"""South America""" +2024-01-15,47819,9059,"[\""Wireless Mouse\"", \""Tablet\""]",1207.89,"{\""promo\"": \""15%\""}",194708,1,"""Africa""" +2024-01-14,47820,5727,"[\""Phone\"", \""Laptop\""]",1968.66,"{\"": \""17%\""}",152021,1,"""Asia""" +2023-02-04,47821,9441,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3177.09,{},118068,1,"""North America""" +2023-12-20,47822,7547,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3035.11,{},71490,0,"""Africa""" +2023-07-18,47823,3362,"[\""Phone\"", \""Keyboard\""]",2647.95,{},175004,1,"""Asia""" +2024-07-13,47824,9246,"[\""Tablet\""]",1859.29,{},198531,1,"""Europe""" +2023-11-02,47825,2309,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1101.8,"{\"": \""16%\""}",186096,0,"""Africa""" +2024-10-04,47826,717,"[\""Charger\"", \""Laptop\""]",2880.47,{},190663,0,"""Asia""" +2023-09-02,47827,8328,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",217.31,{},123217,1,"""Asia""" +2024-02-23,47828,8911,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",912.0,{},153380,1,"""South America""" +2023-08-29,47829,4880,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",408.47,{},264174,0,"""South America""" +2024-05-21,47830,7107,"[\""Charger\"", \""Monitor\""]",1074.04,{},239822,1,"""Africa""" +2024-08-07,47831,7004,"[\""Monitor\""]",110.18,{},87555,1,"""Europe""" +2023-01-30,47832,3205,"[\""Monitor\"", \""Keyboard\""]",4088.19,{},134027,1,"""Asia""" +2024-09-25,47833,5010,"[\""Charger\""]",2253.76,{},192998,1,"""Africa""" +2023-06-19,47834,3938,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3209.83,{},79349,0,"""South America""" +2023-06-02,47835,5340,"[\""Charger\"", \""Headphones\""]",4792.05,{},2564,0,"""North America""" +2023-02-28,47836,888,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2200.99,"{\""loyalty\"": \""15%\""}",89619,0,"""Africa""" +2024-11-04,47837,5007,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2622.18,"{\""loyalty\"": \""17%\""}",119108,1,"""Africa""" +2023-12-07,47838,7611,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4955.24,{},45556,0,"""North America""" +2023-03-21,47839,3442,"[\""Wireless Mouse\""]",405.52,{},20663,1,"""North America""" +2024-03-07,47840,8405,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1677.89,"{\""promo\"": \""6%\""}",286183,0,"""Asia""" +2023-12-05,47841,1203,"[\""Tablet\""]",1247.65,"{\""seasonal\"": \""28%\""}",221552,1,"""South America""" +2024-11-07,47842,1774,"[\""Tablet\"", \""Phone\""]",1241.74,"{\""seasonal\"": \""18%\""}",49176,1,"""North America""" +2023-05-02,47843,4294,"[\""Monitor\"", \""Charger\""]",3989.98,{},104450,1,"""Africa""" +2024-10-13,47844,1180,"[\""Monitor\"", \""Headphones\""]",2478.94,"{\"": \""10%\""}",258000,1,"""Europe""" +2023-01-13,47845,3784,"[\""Wireless Mouse\"", \""Headphones\""]",4427.48,{},44778,0,"""Africa""" +2023-11-13,47846,9153,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3439.21,{},60921,1,"""Europe""" +2024-12-14,47847,3577,"[\""Charger\"", \""Headphones\""]",379.55,"{\"": \""22%\""}",294476,1,"""North America""" +2023-11-01,47848,4036,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4036.53,{},179347,0,"""Europe""" +2023-02-16,47849,2030,"[\""Tablet\""]",1072.54,{},100581,1,"""North America""" +2023-09-19,47850,8279,"[\""Laptop\""]",181.36,"{\""promo\"": \""8%\""}",246752,0,"""Africa""" +2023-01-10,47851,9122,"[\""Charger\"", \""Laptop\""]",2798.42,{},57515,0,"""Europe""" +2024-04-20,47852,7524,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3815.97,{},267491,0,"""Europe""" +2023-09-24,47853,2968,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2963.62,"{\""promo\"": \""6%\""}",245987,0,"""Asia""" +2023-02-10,47854,5117,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",968.56,"{\"": \""8%\""}",19107,1,"""North America""" +2024-05-17,47855,489,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3489.39,{},246195,0,"""Europe""" +2023-12-12,47856,4181,"[\""Wireless Mouse\"", \""Laptop\""]",2330.34,"{\""loyalty\"": \""30%\""}",133210,1,"""South America""" +2023-06-18,47857,5302,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3911.09,{},13358,1,"""Asia""" +2023-09-04,47858,1698,"[\""Laptop\"", \""Tablet\""]",2978.67,{},210806,1,"""Asia""" +2023-05-17,47859,889,"[\""Wireless Mouse\""]",2239.2,"{\""seasonal\"": \""12%\""}",7855,0,"""Europe""" +2023-11-11,47860,4132,"[\""Phone\""]",4402.3,{},4385,0,"""Asia""" +2023-02-04,47861,8135,"[\""Laptop\""]",4132.95,"{\"": \""12%\""}",263782,1,"""Europe""" +2023-06-29,47862,2664,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1248.01,"{\"": \""29%\""}",184731,0,"""Africa""" +2024-11-26,47863,4219,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4740.94,{},52781,0,"""Asia""" +2023-10-12,47864,2693,"[\""Keyboard\""]",3701.8,"{\""loyalty\"": \""27%\""}",2353,1,"""Europe""" +2023-11-12,47865,6885,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",411.94,{},252088,1,"""Africa""" +2023-07-05,47866,9083,"[\""Phone\""]",881.76,{},204732,1,"""Europe""" +2024-11-10,47867,5132,"[\""Headphones\""]",4942.64,"{\""seasonal\"": \""19%\""}",158285,1,"""Asia""" +2024-04-28,47868,6022,"[\""Monitor\""]",2698.56,"{\"": \""9%\""}",273093,1,"""Asia""" +2024-05-07,47869,7998,"[\""Keyboard\""]",4695.27,"{\""loyalty\"": \""18%\""}",233244,0,"""Africa""" +2023-11-11,47870,3124,"[\""Charger\""]",4058.53,{},184196,0,"""Europe""" +2023-04-26,47871,5812,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1117.97,"{\""loyalty\"": \""10%\""}",138389,0,"""South America""" +2024-08-26,47872,3192,"[\""Charger\"", \""Tablet\""]",82.26,{},182785,0,"""North America""" +2024-12-04,47873,9771,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1495.99,{},224016,1,"""South America""" +2023-01-27,47874,5497,"[\""Monitor\""]",3646.95,{},245839,1,"""Asia""" +2023-07-05,47875,2101,"[\""Phone\"", \""Monitor\""]",2787.59,"{\"": \""13%\""}",291367,1,"""Europe""" +2023-02-27,47876,3963,"[\""Monitor\""]",3046.03,{},73324,0,"""South America""" +2024-05-14,47877,1726,"[\""Wireless Mouse\"", \""Monitor\""]",1541.4,"{\"": \""17%\""}",242389,0,"""South America""" +2023-01-06,47878,7496,"[\""Tablet\""]",3145.72,"{\"": \""20%\""}",137383,0,"""Africa""" +2023-02-08,47879,9009,"[\""Charger\"", \""Wireless Mouse\""]",2392.32,{},294836,0,"""Asia""" +2024-05-25,47880,4315,"[\""Keyboard\"", \""Charger\""]",3170.49,"{\""seasonal\"": \""25%\""}",235514,0,"""Asia""" +2023-10-02,47881,986,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3203.69,{},30477,0,"""North America""" +2024-12-19,47882,5055,"[\""Headphones\""]",1603.44,{},108236,0,"""Europe""" +2023-12-24,47883,7884,"[\""Tablet\""]",3471.21,{},188740,1,"""Europe""" +2023-09-21,47884,5343,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1822.78,"{\""seasonal\"": \""22%\""}",206819,0,"""Asia""" +2024-01-20,47885,577,"[\""Keyboard\""]",1257.92,"{\""seasonal\"": \""10%\""}",51160,0,"""Europe""" +2024-01-06,47886,7409,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2052.77,"{\""loyalty\"": \""24%\""}",161190,0,"""South America""" +2023-01-25,47887,9392,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",221.17,"{\""seasonal\"": \""17%\""}",128045,0,"""Asia""" +2024-05-30,47888,3883,"[\""Phone\"", \""Wireless Mouse\""]",719.44,{},174929,0,"""Africa""" +2023-09-02,47889,9316,"[\""Laptop\""]",2580.77,{},192878,0,"""Europe""" +2023-09-11,47890,8073,"[\""Headphones\""]",1707.22,"{\"": \""26%\""}",32498,1,"""South America""" +2023-12-07,47891,2347,"[\""Laptop\"", \""Keyboard\""]",525.94,"{\""loyalty\"": \""5%\""}",70065,0,"""Asia""" +2023-10-23,47892,558,"[\""Headphones\"", \""Tablet\""]",199.72,"{\""seasonal\"": \""21%\""}",188858,0,"""South America""" +2023-08-09,47893,883,"[\""Wireless Mouse\"", \""Charger\""]",1199.53,"{\""seasonal\"": \""28%\""}",100685,0,"""Asia""" +2023-06-09,47894,9482,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4995.57,"{\""seasonal\"": \""26%\""}",144957,0,"""South America""" +2024-09-15,47895,1293,"[\""Laptop\"", \""Wireless Mouse\""]",81.41,{},91388,1,"""Asia""" +2024-02-15,47896,7190,"[\""Tablet\"", \""Keyboard\""]",2891.03,{},216896,1,"""Europe""" +2023-12-18,47897,7757,"[\""Laptop\""]",3902.76,"{\""promo\"": \""23%\""}",76207,1,"""Europe""" +2023-09-30,47898,6266,"[\""Wireless Mouse\""]",1903.76,"{\""loyalty\"": \""13%\""}",283118,1,"""Africa""" +2024-02-08,47899,1027,"[\""Wireless Mouse\""]",4456.52,"{\""loyalty\"": \""18%\""}",109871,1,"""South America""" +2024-05-08,47900,2780,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2426.56,"{\""seasonal\"": \""10%\""}",244739,1,"""North America""" +2024-03-14,47901,3810,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1107.13,{},88060,0,"""South America""" +2024-12-02,47902,2545,"[\""Charger\""]",2197.89,"{\""promo\"": \""26%\""}",142924,0,"""Asia""" +2023-04-07,47903,8713,"[\""Keyboard\"", \""Headphones\""]",3286.61,"{\""promo\"": \""26%\""}",234521,1,"""Asia""" +2024-07-12,47904,6251,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4548.9,{},133260,0,"""Asia""" +2023-09-30,47905,7679,"[\""Charger\""]",1758.44,{},44562,0,"""Asia""" +2023-07-02,47906,1532,"[\""Keyboard\""]",4741.65,"{\""promo\"": \""6%\""}",96097,0,"""Asia""" +2024-11-21,47907,9705,"[\""Monitor\""]",2712.16,{},189004,1,"""Africa""" +2023-07-10,47908,8143,"[\""Wireless Mouse\"", \""Keyboard\""]",3387.87,"{\""seasonal\"": \""13%\""}",270839,1,"""Europe""" +2023-03-22,47909,9793,"[\""Phone\"", \""Monitor\""]",3964.53,"{\""loyalty\"": \""11%\""}",226899,1,"""Africa""" +2023-12-21,47910,6936,"[\""Charger\""]",2188.05,"{\""seasonal\"": \""26%\""}",210092,1,"""South America""" +2023-06-12,47911,6397,"[\""Phone\"", \""Charger\""]",4112.84,{},209152,1,"""North America""" +2023-01-13,47912,4778,"[\""Wireless Mouse\"", \""Keyboard\""]",3182.39,{},186418,1,"""Asia""" +2023-01-30,47913,5547,"[\""Laptop\"", \""Keyboard\""]",4787.58,{},74825,1,"""Asia""" +2024-10-17,47914,9697,"[\""Tablet\"", \""Charger\""]",1162.89,"{\""loyalty\"": \""30%\""}",162562,0,"""Europe""" +2024-10-29,47915,7928,"[\""Monitor\"", \""Phone\""]",2075.34,"{\""loyalty\"": \""12%\""}",60321,1,"""South America""" +2024-10-01,47916,6779,"[\""Phone\""]",1663.77,"{\""promo\"": \""12%\""}",64701,0,"""Africa""" +2024-11-17,47917,8904,"[\""Wireless Mouse\"", \""Charger\""]",1703.49,{},102824,0,"""South America""" +2023-03-27,47918,7540,"[\""Wireless Mouse\"", \""Tablet\""]",2637.97,"{\""loyalty\"": \""23%\""}",116475,1,"""North America""" +2023-12-10,47919,7132,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4962.46,"{\""promo\"": \""17%\""}",200358,0,"""Europe""" +2023-01-22,47920,3082,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3789.31,"{\"": \""17%\""}",86512,0,"""Asia""" +2024-07-05,47921,8543,"[\""Tablet\""]",1515.42,{},94855,0,"""Asia""" +2024-02-21,47922,8236,"[\""Phone\""]",4511.37,"{\""seasonal\"": \""21%\""}",118068,1,"""Asia""" +2024-07-31,47923,3402,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",245.24,"{\""promo\"": \""20%\""}",156049,0,"""Asia""" +2023-09-08,47924,9347,"[\""Laptop\""]",908.42,{},158086,1,"""Europe""" +2023-04-21,47925,1477,"[\""Tablet\""]",4003.83,"{\""seasonal\"": \""15%\""}",121667,0,"""Asia""" +2024-12-08,47926,5458,"[\""Keyboard\"", \""Monitor\""]",4908.93,{},256255,0,"""Africa""" +2023-04-23,47927,8341,"[\""Charger\"", \""Wireless Mouse\""]",2341.62,{},206583,1,"""North America""" +2023-07-25,47928,5024,"[\""Phone\"", \""Charger\"", \""Tablet\""]",330.12,"{\""loyalty\"": \""17%\""}",153756,0,"""Asia""" +2024-11-30,47929,6775,"[\""Phone\"", \""Keyboard\""]",2655.31,{},198713,1,"""Europe""" +2024-07-19,47930,2372,"[\""Tablet\"", \""Headphones\""]",1704.28,"{\"": \""10%\""}",67102,1,"""Asia""" +2024-03-29,47931,57,"[\""Monitor\"", \""Phone\""]",1824.61,"{\""promo\"": \""13%\""}",249219,0,"""South America""" +2023-07-15,47932,4020,"[\""Charger\"", \""Keyboard\""]",3211.6,"{\""loyalty\"": \""20%\""}",120958,0,"""Europe""" +2023-06-24,47933,1594,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2683.32,{},257656,1,"""South America""" +2024-07-27,47934,336,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1938.61,"{\""loyalty\"": \""5%\""}",8674,1,"""North America""" +2023-05-30,47935,9167,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4899.57,"{\""promo\"": \""20%\""}",95338,1,"""Europe""" +2024-03-30,47936,2486,"[\""Monitor\""]",830.71,{},101143,0,"""Asia""" +2023-04-06,47937,4480,"[\""Phone\"", \""Charger\""]",4832.13,{},172725,1,"""Europe""" +2024-04-03,47938,7270,"[\""Phone\""]",3406.78,{},258057,1,"""North America""" +2024-02-06,47939,122,"[\""Laptop\"", \""Keyboard\""]",4980.15,{},297954,0,"""Asia""" +2023-05-28,47940,1668,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",308.93,"{\""promo\"": \""12%\""}",70511,1,"""South America""" +2024-01-06,47941,9712,"[\""Wireless Mouse\""]",4905.62,"{\""promo\"": \""22%\""}",237200,1,"""South America""" +2023-05-28,47942,6405,"[\""Monitor\""]",107.89,"{\""promo\"": \""21%\""}",63473,0,"""North America""" +2024-09-25,47943,9507,"[\""Phone\""]",2959.52,"{\""seasonal\"": \""18%\""}",173839,0,"""Africa""" +2023-07-17,47944,9196,"[\""Phone\"", \""Headphones\""]",2406.03,"{\""seasonal\"": \""29%\""}",255750,0,"""South America""" +2024-05-03,47945,4227,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3131.13,{},100063,1,"""South America""" +2023-05-20,47946,2053,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1139.76,{},100224,1,"""South America""" +2024-11-26,47947,1679,"[\""Headphones\""]",368.94,{},239957,1,"""Asia""" +2024-06-04,47948,5279,"[\""Keyboard\"", \""Laptop\""]",4317.02,{},237037,0,"""South America""" +2024-03-31,47949,640,"[\""Phone\"", \""Monitor\""]",740.62,{},95023,1,"""Asia""" +2023-02-24,47950,1122,"[\""Wireless Mouse\""]",4932.09,{},57781,1,"""Africa""" +2024-02-12,47951,3453,"[\""Laptop\""]",3508.97,"{\""promo\"": \""24%\""}",25290,1,"""South America""" +2023-04-08,47952,8929,"[\""Wireless Mouse\""]",4701.26,"{\""promo\"": \""20%\""}",67518,1,"""South America""" +2024-11-27,47953,981,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4762.45,"{\""promo\"": \""27%\""}",49634,0,"""North America""" +2023-07-17,47954,7304,"[\""Monitor\""]",3937.99,"{\""loyalty\"": \""15%\""}",296778,0,"""South America""" +2024-01-03,47955,5013,"[\""Tablet\"", \""Headphones\""]",3306.58,{},124250,0,"""Asia""" +2024-07-28,47956,4680,"[\""Keyboard\""]",3849.99,"{\""seasonal\"": \""28%\""}",214356,1,"""Asia""" +2023-05-25,47957,795,"[\""Keyboard\""]",2820.31,{},5976,0,"""North America""" +2023-01-29,47958,4866,"[\""Keyboard\"", \""Wireless Mouse\""]",4266.21,{},152709,0,"""Europe""" +2024-08-24,47959,1829,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2757.52,"{\""loyalty\"": \""28%\""}",285869,0,"""Europe""" +2024-06-23,47960,2798,"[\""Keyboard\""]",2598.88,{},14576,1,"""North America""" +2023-12-21,47961,3542,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4064.24,{},293533,0,"""Africa""" +2024-02-09,47962,4183,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",565.56,"{\""promo\"": \""14%\""}",50152,0,"""South America""" +2024-07-28,47963,5047,"[\""Laptop\"", \""Headphones\""]",591.91,{},2639,0,"""Europe""" +2023-05-05,47964,2469,"[\""Phone\"", \""Charger\""]",4875.57,"{\""seasonal\"": \""7%\""}",164714,0,"""Africa""" +2023-01-28,47965,4997,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1429.77,{},121363,1,"""North America""" +2023-05-01,47966,2505,"[\""Monitor\""]",3565.39,"{\""seasonal\"": \""8%\""}",49766,1,"""Asia""" +2023-05-21,47967,9801,"[\""Phone\"", \""Charger\""]",4679.64,"{\""loyalty\"": \""15%\""}",24317,0,"""Africa""" +2024-12-08,47968,2472,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2812.26,"{\""seasonal\"": \""26%\""}",18346,0,"""North America""" +2023-05-17,47969,3616,"[\""Tablet\""]",613.22,"{\""seasonal\"": \""23%\""}",267197,0,"""North America""" +2024-09-21,47970,5984,"[\""Phone\"", \""Keyboard\""]",1593.87,"{\""loyalty\"": \""14%\""}",10353,0,"""Africa""" +2024-11-13,47971,6656,"[\""Headphones\"", \""Wireless Mouse\""]",1377.16,"{\"": \""22%\""}",182751,0,"""South America""" +2024-05-19,47972,8391,"[\""Keyboard\""]",2564.39,{},19040,1,"""Africa""" +2023-03-24,47973,7364,"[\""Wireless Mouse\"", \""Keyboard\""]",1932.07,{},115008,0,"""North America""" +2023-07-14,47974,7169,"[\""Headphones\"", \""Wireless Mouse\""]",4263.13,"{\""seasonal\"": \""11%\""}",57819,1,"""Europe""" +2023-10-29,47975,7171,"[\""Headphones\""]",4650.89,{},168523,1,"""Europe""" +2024-12-25,47976,9559,"[\""Keyboard\""]",664.85,{},273732,0,"""Europe""" +2023-03-08,47977,226,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4198.77,{},287457,1,"""North America""" +2024-10-27,47978,4755,"[\""Wireless Mouse\""]",1281.14,{},195489,1,"""Europe""" +2024-02-05,47979,8718,"[\""Wireless Mouse\"", \""Tablet\""]",2610.98,"{\"": \""12%\""}",152961,0,"""Africa""" +2024-01-14,47980,74,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2653.69,{},179582,0,"""Europe""" +2024-08-27,47981,9727,"[\""Tablet\""]",3745.97,"{\""loyalty\"": \""30%\""}",256036,1,"""Africa""" +2024-04-26,47982,3117,"[\""Wireless Mouse\"", \""Charger\""]",2065.06,{},65699,0,"""Africa""" +2023-11-06,47983,4116,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1110.12,"{\""promo\"": \""24%\""}",217529,0,"""Africa""" +2023-05-13,47984,4343,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2482.2,{},172500,0,"""Europe""" +2023-04-26,47985,8465,"[\""Charger\"", \""Wireless Mouse\""]",2119.66,{},250183,0,"""Asia""" +2024-07-12,47986,1131,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3077.26,"{\"": \""16%\""}",110757,1,"""Europe""" +2024-06-16,47987,6887,"[\""Wireless Mouse\""]",1413.97,"{\""promo\"": \""5%\""}",80745,0,"""South America""" +2023-08-10,47988,4708,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",397.59,"{\"": \""6%\""}",26671,0,"""South America""" +2023-06-29,47989,4699,"[\""Phone\""]",2672.01,{},87669,0,"""Asia""" +2023-01-31,47990,6707,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",117.65,{},229691,0,"""Asia""" +2024-09-29,47991,2444,"[\""Keyboard\""]",860.17,"{\""promo\"": \""22%\""}",171395,1,"""North America""" +2023-06-10,47992,942,"[\""Tablet\""]",2932.4,"{\"": \""21%\""}",77095,1,"""Africa""" +2023-10-04,47993,6867,"[\""Charger\"", \""Monitor\""]",3307.21,{},35526,1,"""South America""" +2023-10-16,47994,1644,"[\""Monitor\""]",567.04,"{\""seasonal\"": \""19%\""}",116486,1,"""South America""" +2024-10-10,47995,2153,"[\""Headphones\"", \""Monitor\""]",1975.02,{},88474,1,"""North America""" +2023-05-09,47996,5929,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",468.06,"{\""seasonal\"": \""24%\""}",32643,1,"""North America""" +2023-07-11,47997,3056,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1707.76,"{\""promo\"": \""22%\""}",263230,1,"""Africa""" +2024-04-07,47998,3411,"[\""Headphones\"", \""Monitor\""]",4290.61,"{\"": \""18%\""}",141105,1,"""Europe""" +2024-12-10,47999,7139,"[\""Wireless Mouse\""]",4072.6,"{\""promo\"": \""20%\""}",37009,1,"""North America""" +2023-12-09,48000,7353,"[\""Keyboard\"", \""Laptop\""]",2271.65,"{\""seasonal\"": \""29%\""}",172136,1,"""Europe""" +2023-11-19,48001,2465,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",613.15,{},248464,0,"""Asia""" +2024-11-01,48002,1274,"[\""Charger\""]",239.07,"{\""promo\"": \""8%\""}",173743,1,"""Asia""" +2024-04-22,48003,8322,"[\""Monitor\""]",2717.16,"{\""seasonal\"": \""18%\""}",140769,1,"""Europe""" +2024-11-24,48004,6399,"[\""Phone\""]",448.48,"{\"": \""7%\""}",105751,1,"""North America""" +2024-10-06,48005,2116,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1546.38,"{\""loyalty\"": \""14%\""}",121696,1,"""Africa""" +2024-02-13,48006,2456,"[\""Charger\""]",2605.26,{},227741,1,"""Europe""" +2024-10-01,48007,63,"[\""Laptop\"", \""Wireless Mouse\""]",4276.15,{},12046,0,"""North America""" +2024-06-24,48008,7143,"[\""Charger\"", \""Wireless Mouse\""]",4632.2,"{\"": \""15%\""}",293519,1,"""Europe""" +2023-12-19,48009,8946,"[\""Phone\"", \""Charger\""]",3683.07,"{\"": \""22%\""}",268318,1,"""Europe""" +2024-11-11,48010,4641,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2503.16,"{\"": \""6%\""}",49786,0,"""North America""" +2023-10-18,48011,5403,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",391.79,"{\""seasonal\"": \""24%\""}",153264,0,"""Africa""" +2023-09-26,48012,6575,"[\""Charger\""]",2528.29,"{\""promo\"": \""30%\""}",28348,0,"""North America""" +2023-12-30,48013,1214,"[\""Phone\"", \""Keyboard\""]",876.35,{},169764,0,"""Europe""" +2023-12-21,48014,8087,"[\""Monitor\"", \""Headphones\""]",3305.39,"{\""seasonal\"": \""28%\""}",259911,0,"""Europe""" +2023-10-18,48015,2455,"[\""Phone\"", \""Monitor\""]",1677.39,"{\""loyalty\"": \""18%\""}",157701,0,"""South America""" +2023-12-01,48016,7659,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3819.6,{},245402,1,"""Asia""" +2023-03-11,48017,8473,"[\""Keyboard\""]",1931.0,{},201864,1,"""North America""" +2024-04-08,48018,3239,"[\""Laptop\"", \""Wireless Mouse\""]",3304.48,"{\""loyalty\"": \""27%\""}",291056,0,"""Africa""" +2023-05-29,48019,9088,"[\""Laptop\"", \""Keyboard\""]",3773.95,"{\"": \""10%\""}",166554,1,"""Africa""" +2023-07-15,48020,7092,"[\""Keyboard\"", \""Charger\""]",4209.96,{},97396,1,"""Europe""" +2023-08-15,48021,83,"[\""Laptop\""]",2490.77,{},231957,1,"""North America""" +2024-09-24,48022,3119,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4507.49,"{\""loyalty\"": \""16%\""}",10661,1,"""South America""" +2023-10-22,48023,5180,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4068.7,{},297887,1,"""North America""" +2024-05-19,48024,2199,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",263.23,{},208541,1,"""Europe""" +2024-06-04,48025,1616,"[\""Keyboard\"", \""Headphones\""]",4412.48,{},37179,1,"""Africa""" +2024-09-07,48026,2141,"[\""Tablet\"", \""Keyboard\""]",2410.9,"{\""loyalty\"": \""29%\""}",112248,0,"""South America""" +2023-06-01,48027,5087,"[\""Monitor\""]",4801.33,"{\""loyalty\"": \""29%\""}",219518,0,"""Europe""" +2024-03-08,48028,9499,"[\""Monitor\""]",340.27,"{\""loyalty\"": \""26%\""}",245540,1,"""Africa""" +2024-06-27,48029,5221,"[\""Charger\"", \""Laptop\""]",2632.08,"{\""loyalty\"": \""23%\""}",176366,1,"""Europe""" +2023-03-08,48030,2919,"[\""Charger\"", \""Monitor\""]",1812.5,{},204563,1,"""Asia""" +2024-12-10,48031,9885,"[\""Wireless Mouse\"", \""Headphones\""]",3503.36,"{\""promo\"": \""6%\""}",57363,1,"""Asia""" +2024-01-13,48032,9943,"[\""Monitor\"", \""Laptop\""]",1728.54,"{\"": \""30%\""}",190355,0,"""South America""" +2024-03-02,48033,5172,"[\""Monitor\"", \""Headphones\""]",4641.76,"{\""loyalty\"": \""11%\""}",174869,0,"""North America""" +2023-12-19,48034,8669,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2359.99,"{\""loyalty\"": \""30%\""}",297690,1,"""North America""" +2024-05-25,48035,31,"[\""Keyboard\"", \""Wireless Mouse\""]",4586.58,{},276595,1,"""Africa""" +2024-07-23,48036,6839,"[\""Phone\"", \""Charger\""]",2358.51,"{\""loyalty\"": \""15%\""}",31067,1,"""Asia""" +2024-12-01,48037,2,"[\""Monitor\"", \""Charger\""]",391.61,"{\"": \""20%\""}",97898,1,"""South America""" +2024-04-17,48038,5131,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4061.62,{},153440,1,"""Asia""" +2024-02-24,48039,424,"[\""Keyboard\""]",4139.85,{},182668,1,"""North America""" +2024-06-07,48040,2704,"[\""Laptop\""]",2650.88,{},192749,1,"""North America""" +2024-11-27,48041,5406,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4461.29,{},186394,1,"""Asia""" +2024-12-04,48042,848,"[\""Phone\""]",2505.16,"{\""seasonal\"": \""8%\""}",264372,0,"""South America""" +2023-03-02,48043,6022,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4616.84,"{\"": \""18%\""}",224508,1,"""South America""" +2024-01-02,48044,7745,"[\""Phone\""]",4619.13,"{\""seasonal\"": \""8%\""}",113823,1,"""Asia""" +2024-09-19,48045,2675,"[\""Phone\"", \""Monitor\"", \""Charger\""]",682.65,"{\""seasonal\"": \""6%\""}",20288,1,"""Asia""" +2024-06-07,48046,5267,"[\""Charger\"", \""Phone\""]",1062.17,"{\""loyalty\"": \""24%\""}",176210,0,"""Asia""" +2023-11-27,48047,6613,"[\""Laptop\""]",4665.65,"{\""seasonal\"": \""11%\""}",84729,0,"""North America""" +2023-10-20,48048,178,"[\""Phone\""]",383.47,{},159564,0,"""South America""" +2023-10-27,48049,2446,"[\""Keyboard\""]",1675.31,{},178265,1,"""North America""" +2023-03-22,48050,3340,"[\""Phone\""]",2285.29,{},29890,0,"""North America""" +2023-01-13,48051,711,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1396.01,{},285637,0,"""North America""" +2023-07-13,48052,9961,"[\""Charger\"", \""Tablet\""]",4709.96,{},183046,1,"""South America""" +2023-03-14,48053,62,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",742.16,{},253998,0,"""South America""" +2023-01-20,48054,9398,"[\""Wireless Mouse\"", \""Laptop\""]",105.96,{},115970,1,"""Asia""" +2023-07-17,48055,5223,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3121.4,{},156122,0,"""South America""" +2023-10-14,48056,6915,"[\""Wireless Mouse\""]",4428.82,"{\""seasonal\"": \""15%\""}",191432,0,"""Africa""" +2023-05-05,48057,1619,"[\""Wireless Mouse\"", \""Keyboard\""]",2362.84,"{\""loyalty\"": \""5%\""}",56450,0,"""Asia""" +2023-08-30,48058,6893,"[\""Charger\"", \""Keyboard\""]",2935.33,{},78279,1,"""South America""" +2024-01-31,48059,8394,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3250.88,"{\""loyalty\"": \""9%\""}",17360,0,"""North America""" +2023-09-28,48060,4698,"[\""Tablet\"", \""Keyboard\""]",1794.91,"{\"": \""8%\""}",38281,1,"""Africa""" +2024-07-26,48061,7338,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1460.18,{},30686,0,"""Asia""" +2023-06-14,48062,7057,"[\""Wireless Mouse\""]",4857.04,{},4098,1,"""North America""" +2024-09-30,48063,2925,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4121.14,{},96696,1,"""Africa""" +2023-02-07,48064,104,"[\""Phone\"", \""Headphones\"", \""Charger\""]",248.21,"{\""loyalty\"": \""27%\""}",120003,1,"""Africa""" +2023-04-15,48065,6636,"[\""Keyboard\""]",1399.78,"{\""promo\"": \""17%\""}",267787,1,"""Africa""" +2023-03-28,48066,1629,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3187.59,{},164908,1,"""Asia""" +2023-02-15,48067,7233,"[\""Monitor\""]",1212.7,"{\"": \""5%\""}",234766,0,"""North America""" +2024-06-19,48068,9429,"[\""Tablet\""]",204.97,{},286300,1,"""South America""" +2024-02-01,48069,7841,"[\""Charger\"", \""Tablet\""]",4439.74,{},43766,0,"""South America""" +2023-01-03,48070,3594,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",214.71,"{\""loyalty\"": \""24%\""}",231857,0,"""Africa""" +2024-06-26,48071,5660,"[\""Wireless Mouse\""]",3214.2,{},226351,1,"""Africa""" +2023-11-02,48072,8873,"[\""Headphones\""]",2029.85,{},141590,0,"""Asia""" +2023-08-26,48073,6081,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4643.01,{},211978,0,"""Europe""" +2023-10-05,48074,6635,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4365.23,{},57976,0,"""Africa""" +2024-02-06,48075,4818,"[\""Wireless Mouse\""]",2283.55,"{\"": \""6%\""}",8521,1,"""Europe""" +2023-07-29,48076,5427,"[\""Tablet\""]",3585.75,{},121593,0,"""North America""" +2024-03-08,48077,6143,"[\""Headphones\"", \""Charger\""]",3507.7,{},3791,0,"""Asia""" +2024-08-18,48078,3449,"[\""Headphones\""]",3824.83,"{\"": \""28%\""}",256882,1,"""Africa""" +2023-07-12,48079,8248,"[\""Wireless Mouse\""]",723.24,{},128914,1,"""Africa""" +2024-07-01,48080,3956,"[\""Charger\"", \""Keyboard\""]",1577.92,{},277171,0,"""North America""" +2023-08-02,48081,4710,"[\""Phone\"", \""Monitor\""]",2196.37,"{\"": \""14%\""}",194121,1,"""Africa""" +2024-08-07,48082,3634,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3950.36,{},89687,1,"""Europe""" +2024-04-11,48083,9609,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2735.46,"{\"": \""25%\""}",88549,0,"""Asia""" +2024-07-05,48084,5027,"[\""Headphones\""]",291.7,{},241779,1,"""Europe""" +2024-08-08,48085,7964,"[\""Wireless Mouse\""]",2933.9,{},275167,1,"""Asia""" +2023-01-16,48086,7315,"[\""Charger\""]",305.62,{},288376,1,"""Africa""" +2024-07-18,48087,2581,"[\""Monitor\""]",672.94,{},21565,0,"""Europe""" +2023-10-04,48088,8530,"[\""Keyboard\"", \""Charger\""]",633.05,"{\""seasonal\"": \""11%\""}",126134,0,"""North America""" +2023-04-06,48089,9946,"[\""Tablet\""]",1848.93,"{\"": \""12%\""}",84280,0,"""Africa""" +2024-02-10,48090,8470,"[\""Laptop\"", \""Tablet\""]",3824.47,{},174134,1,"""South America""" +2024-09-04,48091,8531,"[\""Wireless Mouse\"", \""Tablet\""]",1689.35,{},79010,0,"""Europe""" +2023-12-16,48092,1206,"[\""Tablet\""]",4282.74,"{\""loyalty\"": \""14%\""}",147039,0,"""South America""" +2023-03-13,48093,8973,"[\""Monitor\"", \""Headphones\""]",3290.58,"{\""promo\"": \""16%\""}",229466,0,"""Europe""" +2024-05-29,48094,1612,"[\""Wireless Mouse\""]",1791.47,{},79699,0,"""North America""" +2024-08-11,48095,2894,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4824.91,"{\""promo\"": \""13%\""}",157475,1,"""North America""" +2024-04-30,48096,6949,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4189.33,{},145458,0,"""North America""" +2023-05-13,48097,1946,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",860.47,"{\""promo\"": \""29%\""}",153082,0,"""Europe""" +2024-03-16,48098,7240,"[\""Tablet\""]",365.12,"{\""loyalty\"": \""23%\""}",256245,0,"""North America""" +2024-01-14,48099,5886,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4097.37,{},215149,1,"""Africa""" +2023-09-11,48100,7878,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2289.56,"{\""seasonal\"": \""8%\""}",172578,1,"""South America""" +2023-03-02,48101,7998,"[\""Headphones\"", \""Wireless Mouse\""]",1099.05,"{\""promo\"": \""7%\""}",259344,0,"""Asia""" +2023-08-19,48102,9436,"[\""Wireless Mouse\"", \""Phone\""]",3183.4,{},26823,1,"""Asia""" +2024-02-11,48103,524,"[\""Headphones\""]",556.59,"{\""seasonal\"": \""12%\""}",165794,0,"""North America""" +2024-10-20,48104,6893,"[\""Tablet\"", \""Phone\""]",564.21,"{\"": \""28%\""}",173327,0,"""North America""" +2023-11-14,48105,8539,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2267.55,"{\""promo\"": \""8%\""}",136712,1,"""Europe""" +2023-10-27,48106,8358,"[\""Keyboard\"", \""Phone\""]",1406.34,"{\""seasonal\"": \""14%\""}",127638,0,"""Africa""" +2023-11-18,48107,3807,"[\""Phone\"", \""Monitor\""]",241.85,"{\""seasonal\"": \""27%\""}",86584,0,"""Africa""" +2023-11-30,48108,7083,"[\""Charger\""]",4143.61,"{\""promo\"": \""19%\""}",263041,0,"""Africa""" +2024-01-14,48109,3927,"[\""Headphones\"", \""Laptop\""]",649.93,"{\""promo\"": \""22%\""}",160287,0,"""Africa""" +2023-10-24,48110,1770,"[\""Headphones\""]",1098.4,"{\""seasonal\"": \""5%\""}",182163,0,"""South America""" +2024-02-16,48111,4730,"[\""Monitor\"", \""Tablet\""]",1276.12,{},146215,0,"""Asia""" +2023-07-05,48112,3226,"[\""Monitor\"", \""Charger\""]",1304.56,{},34044,0,"""Africa""" +2023-03-09,48113,1892,"[\""Headphones\"", \""Phone\""]",3848.53,{},250438,0,"""Europe""" +2023-06-18,48114,5659,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",559.83,{},4662,0,"""Asia""" +2023-01-06,48115,2415,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3015.12,{},67264,0,"""Asia""" +2024-02-22,48116,1820,"[\""Laptop\"", \""Wireless Mouse\""]",1089.65,"{\""loyalty\"": \""9%\""}",236813,1,"""Asia""" +2024-10-16,48117,2088,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4746.58,{},203766,1,"""South America""" +2023-07-25,48118,4675,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4390.43,"{\""promo\"": \""17%\""}",189380,0,"""North America""" +2024-10-22,48119,2476,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3525.88,{},188117,0,"""South America""" +2023-12-26,48120,8947,"[\""Phone\""]",1177.94,"{\"": \""8%\""}",258825,0,"""North America""" +2023-07-11,48121,6387,"[\""Headphones\"", \""Laptop\""]",999.3,"{\""promo\"": \""5%\""}",2993,0,"""South America""" +2024-10-17,48122,6565,"[\""Laptop\"", \""Wireless Mouse\""]",2180.39,"{\""loyalty\"": \""9%\""}",53373,1,"""South America""" +2024-09-12,48123,8422,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",406.24,{},129121,1,"""Asia""" +2023-10-21,48124,5589,"[\""Phone\""]",1606.1,"{\""promo\"": \""15%\""}",49118,1,"""Africa""" +2024-07-07,48125,9949,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1653.36,"{\""promo\"": \""17%\""}",200033,0,"""South America""" +2023-02-20,48126,1135,"[\""Charger\"", \""Headphones\""]",1199.93,{},220244,1,"""Asia""" +2024-01-01,48127,1104,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1408.35,"{\"": \""18%\""}",129271,1,"""Africa""" +2023-02-20,48128,635,"[\""Charger\""]",2091.81,{},141205,0,"""North America""" +2024-08-03,48129,2832,"[\""Wireless Mouse\"", \""Headphones\""]",1752.75,{},68165,0,"""Asia""" +2023-11-20,48130,7593,"[\""Charger\""]",303.02,"{\""loyalty\"": \""21%\""}",34742,0,"""Africa""" +2023-04-04,48131,2350,"[\""Charger\"", \""Phone\""]",4698.25,{},279836,1,"""South America""" +2024-01-29,48132,5027,"[\""Tablet\"", \""Monitor\""]",333.95,"{\"": \""17%\""}",282311,0,"""North America""" +2024-02-05,48133,2355,"[\""Monitor\""]",4022.31,{},214185,1,"""Europe""" +2024-04-07,48134,5059,"[\""Phone\""]",873.38,{},27544,1,"""Asia""" +2023-05-13,48135,2111,"[\""Laptop\""]",2336.22,"{\"": \""19%\""}",165894,1,"""North America""" +2023-02-03,48136,3007,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3728.84,{},68163,0,"""Europe""" +2024-08-18,48137,9375,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4719.88,"{\""promo\"": \""11%\""}",231518,0,"""Europe""" +2023-08-17,48138,4770,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2891.1,"{\"": \""12%\""}",203143,1,"""South America""" +2023-03-23,48139,7413,"[\""Headphones\"", \""Tablet\""]",381.52,"{\""promo\"": \""26%\""}",117102,1,"""North America""" +2024-09-19,48140,5691,"[\""Headphones\"", \""Laptop\""]",166.65,{},76227,0,"""South America""" +2024-05-16,48141,388,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",530.01,{},191703,1,"""Africa""" +2023-09-05,48142,5289,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4687.34,{},38541,1,"""South America""" +2024-06-07,48143,6361,"[\""Keyboard\""]",3963.87,"{\"": \""20%\""}",172399,0,"""South America""" +2023-07-06,48144,7648,"[\""Charger\"", \""Monitor\""]",3433.32,"{\"": \""7%\""}",171085,1,"""Africa""" +2023-04-19,48145,3522,"[\""Keyboard\""]",2193.34,{},200453,1,"""Europe""" +2024-05-22,48146,7345,"[\""Phone\""]",1920.06,{},285593,0,"""North America""" +2023-05-23,48147,1210,"[\""Phone\"", \""Tablet\""]",4783.5,{},144208,1,"""North America""" +2023-07-25,48148,8249,"[\""Tablet\""]",2612.71,{},232880,1,"""North America""" +2024-08-30,48149,2131,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3286.31,{},169276,1,"""Africa""" +2023-02-05,48150,1617,"[\""Keyboard\"", \""Charger\""]",683.81,"{\""loyalty\"": \""27%\""}",249716,0,"""Asia""" +2023-06-20,48151,7401,"[\""Monitor\"", \""Tablet\""]",413.97,{},89390,0,"""South America""" +2023-04-30,48152,1537,"[\""Keyboard\"", \""Phone\""]",550.43,"{\""loyalty\"": \""27%\""}",88629,0,"""South America""" +2023-07-20,48153,1492,"[\""Wireless Mouse\"", \""Keyboard\""]",1628.28,{},255050,0,"""Asia""" +2024-10-31,48154,360,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2446.49,{},168130,0,"""North America""" +2024-08-03,48155,3323,"[\""Headphones\"", \""Phone\""]",1869.75,"{\""seasonal\"": \""5%\""}",143815,0,"""North America""" +2023-10-30,48156,7104,"[\""Headphones\""]",88.95,{},27946,1,"""North America""" +2024-09-29,48157,9381,"[\""Wireless Mouse\""]",3979.33,"{\"": \""7%\""}",255948,1,"""North America""" +2024-04-13,48158,5566,"[\""Phone\"", \""Wireless Mouse\""]",1054.95,"{\""loyalty\"": \""6%\""}",218607,0,"""Africa""" +2024-08-31,48159,9151,"[\""Wireless Mouse\"", \""Phone\""]",722.5,"{\""seasonal\"": \""15%\""}",151561,0,"""Africa""" +2024-02-23,48160,3850,"[\""Wireless Mouse\"", \""Keyboard\""]",4884.63,{},71544,1,"""Europe""" +2023-07-23,48161,9114,"[\""Phone\"", \""Tablet\""]",1341.53,{},44273,0,"""North America""" +2024-03-14,48162,7452,"[\""Tablet\"", \""Keyboard\""]",3766.66,{},79443,1,"""South America""" +2024-07-22,48163,986,"[\""Monitor\"", \""Laptop\""]",2643.81,"{\"": \""9%\""}",63929,1,"""South America""" +2024-03-07,48164,8422,"[\""Wireless Mouse\""]",801.11,{},191635,1,"""South America""" +2024-10-17,48165,7173,"[\""Wireless Mouse\"", \""Monitor\""]",1911.44,"{\""loyalty\"": \""14%\""}",228406,1,"""South America""" +2024-05-15,48166,6381,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1313.15,{},110259,0,"""North America""" +2023-01-21,48167,3309,"[\""Phone\"", \""Wireless Mouse\""]",1479.38,"{\""promo\"": \""12%\""}",289312,1,"""Asia""" +2023-12-25,48168,8561,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",321.66,"{\""promo\"": \""9%\""}",282668,1,"""Europe""" +2023-02-12,48169,9149,"[\""Keyboard\""]",2701.72,{},82449,1,"""Asia""" +2023-02-17,48170,1676,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2825.43,"{\"": \""10%\""}",134960,1,"""Asia""" +2023-11-08,48171,9196,"[\""Monitor\""]",373.48,"{\""seasonal\"": \""6%\""}",30289,0,"""South America""" +2023-12-31,48172,3070,"[\""Phone\""]",327.58,"{\""loyalty\"": \""9%\""}",28735,1,"""North America""" +2023-06-05,48173,9186,"[\""Keyboard\"", \""Laptop\""]",520.32,"{\"": \""24%\""}",115259,1,"""South America""" +2023-01-15,48174,2857,"[\""Tablet\"", \""Laptop\""]",3189.94,{},297364,0,"""Africa""" +2023-05-14,48175,7070,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3453.92,"{\""loyalty\"": \""21%\""}",177703,0,"""Asia""" +2023-05-16,48176,8180,"[\""Phone\""]",3981.25,{},37389,1,"""North America""" +2024-07-02,48177,5587,"[\""Phone\""]",3114.83,"{\""seasonal\"": \""26%\""}",101140,0,"""North America""" +2024-03-28,48178,8666,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4021.07,"{\"": \""27%\""}",177419,0,"""North America""" +2023-05-29,48179,5828,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3098.96,{},220611,0,"""Europe""" +2023-09-13,48180,1325,"[\""Keyboard\""]",3446.49,{},179430,0,"""South America""" +2023-04-16,48181,6539,"[\""Monitor\"", \""Laptop\""]",3261.23,"{\""seasonal\"": \""5%\""}",20734,1,"""North America""" +2023-07-15,48182,331,"[\""Headphones\""]",4681.97,{},277001,1,"""South America""" +2023-03-14,48183,1706,"[\""Laptop\"", \""Phone\""]",3174.42,{},141135,1,"""South America""" +2023-09-15,48184,9264,"[\""Tablet\"", \""Keyboard\""]",4014.64,"{\"": \""16%\""}",215115,1,"""Africa""" +2024-08-08,48185,9440,"[\""Phone\""]",2130.04,{},70220,1,"""Europe""" +2023-09-16,48186,3716,"[\""Headphones\"", \""Charger\""]",2297.11,{},130704,0,"""Europe""" +2023-11-04,48187,5969,"[\""Laptop\""]",2320.32,{},234795,1,"""South America""" +2023-08-23,48188,4274,"[\""Phone\"", \""Monitor\""]",1105.49,"{\""seasonal\"": \""16%\""}",21078,1,"""Africa""" +2024-03-15,48189,305,"[\""Keyboard\""]",299.29,"{\""promo\"": \""16%\""}",298971,0,"""North America""" +2023-05-04,48190,4630,"[\""Monitor\""]",4695.08,"{\"": \""13%\""}",86648,1,"""Asia""" +2023-10-19,48191,7919,"[\""Phone\""]",2704.22,"{\""seasonal\"": \""19%\""}",243414,0,"""Asia""" +2024-05-26,48192,1210,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3311.99,"{\""seasonal\"": \""10%\""}",275618,0,"""Europe""" +2024-05-01,48193,4419,"[\""Laptop\""]",602.42,{},88713,0,"""North America""" +2024-06-14,48194,4251,"[\""Laptop\""]",4931.89,"{\"": \""22%\""}",138550,1,"""North America""" +2023-10-12,48195,3468,"[\""Wireless Mouse\"", \""Phone\""]",116.63,{},112296,1,"""Africa""" +2024-01-16,48196,1729,"[\""Laptop\"", \""Monitor\""]",336.17,"{\""seasonal\"": \""11%\""}",134715,0,"""South America""" +2023-10-01,48197,6502,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3068.8,{},213089,1,"""Asia""" +2023-09-30,48198,2213,"[\""Charger\""]",3086.94,{},130173,1,"""North America""" +2024-04-06,48199,9607,"[\""Headphones\"", \""Tablet\""]",3509.0,"{\""promo\"": \""18%\""}",100772,1,"""Africa""" +2024-05-28,48200,9103,"[\""Tablet\""]",4390.2,"{\""promo\"": \""12%\""}",26881,0,"""North America""" +2024-08-24,48201,6858,"[\""Laptop\"", \""Headphones\""]",3075.78,"{\""promo\"": \""8%\""}",143048,0,"""North America""" +2023-09-28,48202,7706,"[\""Monitor\""]",1227.55,{},6036,0,"""Africa""" +2023-11-25,48203,5143,"[\""Keyboard\""]",4168.26,"{\""promo\"": \""22%\""}",186227,1,"""Africa""" +2024-06-18,48204,7611,"[\""Phone\"", \""Charger\"", \""Headphones\""]",952.16,"{\""promo\"": \""29%\""}",28373,1,"""Asia""" +2024-09-22,48205,7073,"[\""Wireless Mouse\"", \""Laptop\""]",2901.08,{},295778,1,"""South America""" +2023-08-01,48206,1761,"[\""Charger\"", \""Headphones\""]",4539.05,"{\""promo\"": \""16%\""}",109344,1,"""Asia""" +2024-01-23,48207,3106,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3323.9,{},270365,1,"""North America""" +2023-08-05,48208,4169,"[\""Wireless Mouse\""]",3514.08,{},140973,1,"""North America""" +2023-03-01,48209,6019,"[\""Tablet\""]",79.45,{},249405,0,"""Europe""" +2023-06-13,48210,1934,"[\""Tablet\"", \""Wireless Mouse\""]",2253.87,"{\"": \""19%\""}",43716,1,"""Africa""" +2023-02-20,48211,701,"[\""Monitor\""]",2746.28,"{\""seasonal\"": \""22%\""}",52682,0,"""Asia""" +2023-06-12,48212,4563,"[\""Monitor\""]",2914.02,{},249915,0,"""Africa""" +2023-09-20,48213,4374,"[\""Keyboard\""]",2720.51,{},117820,0,"""South America""" +2023-02-08,48214,4735,"[\""Laptop\""]",2237.53,{},141162,1,"""Africa""" +2023-11-19,48215,2980,"[\""Monitor\"", \""Phone\"", \""Charger\""]",825.75,"{\"": \""11%\""}",222893,1,"""South America""" +2024-10-27,48216,8881,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",943.12,{},83594,1,"""Europe""" +2024-04-19,48217,6925,"[\""Wireless Mouse\""]",3936.11,"{\""promo\"": \""12%\""}",238530,1,"""South America""" +2023-07-26,48218,2373,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3251.58,"{\"": \""18%\""}",105115,0,"""South America""" +2024-12-27,48219,4703,"[\""Headphones\""]",4202.43,"{\""loyalty\"": \""29%\""}",81280,1,"""Africa""" +2023-03-09,48220,1687,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3224.68,"{\""promo\"": \""9%\""}",76167,0,"""Europe""" +2024-08-10,48221,6836,"[\""Tablet\"", \""Phone\""]",602.05,"{\""seasonal\"": \""24%\""}",194712,1,"""Asia""" +2024-05-16,48222,5055,"[\""Laptop\""]",3358.46,{},251368,1,"""Europe""" +2024-03-20,48223,1461,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4051.57,"{\""loyalty\"": \""17%\""}",123174,0,"""South America""" +2023-04-19,48224,6203,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1818.38,{},58504,0,"""Africa""" +2023-05-26,48225,6584,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4388.47,"{\""promo\"": \""30%\""}",108981,0,"""Asia""" +2023-07-22,48226,4750,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",92.93,"{\""loyalty\"": \""21%\""}",254851,0,"""South America""" +2023-02-28,48227,1594,"[\""Monitor\""]",4646.43,"{\""seasonal\"": \""10%\""}",264930,1,"""Asia""" +2023-09-01,48228,8746,"[\""Monitor\""]",4609.62,"{\""loyalty\"": \""24%\""}",190200,1,"""Africa""" +2024-04-15,48229,9940,"[\""Phone\"", \""Tablet\""]",3583.78,{},228791,1,"""Europe""" +2024-11-01,48230,2962,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2865.01,{},9431,1,"""Europe""" +2023-09-23,48231,9675,"[\""Phone\"", \""Monitor\""]",69.68,{},99225,0,"""North America""" +2024-11-14,48232,5453,"[\""Charger\""]",68.04,"{\"": \""12%\""}",1225,1,"""South America""" +2023-02-09,48233,8669,"[\""Keyboard\""]",4233.49,"{\""loyalty\"": \""21%\""}",275183,0,"""Africa""" +2024-08-04,48234,1292,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",702.84,"{\""promo\"": \""17%\""}",106844,0,"""Africa""" +2024-02-02,48235,1468,"[\""Headphones\""]",3465.35,{},86305,0,"""South America""" +2024-04-30,48236,2017,"[\""Wireless Mouse\"", \""Monitor\""]",1922.46,{},293511,1,"""Europe""" +2024-04-13,48237,8548,"[\""Tablet\"", \""Phone\""]",1354.43,{},40283,1,"""Asia""" +2023-03-30,48238,1131,"[\""Wireless Mouse\""]",805.62,"{\""loyalty\"": \""11%\""}",51570,0,"""Asia""" +2023-07-04,48239,2174,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",947.29,"{\""seasonal\"": \""15%\""}",141099,1,"""Europe""" +2023-09-03,48240,9589,"[\""Tablet\""]",4175.58,"{\"": \""17%\""}",26219,1,"""North America""" +2023-04-11,48241,9969,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1010.3,{},209738,1,"""Asia""" +2023-01-10,48242,5017,"[\""Keyboard\""]",1030.65,{},47175,1,"""Europe""" +2024-08-13,48243,3310,"[\""Wireless Mouse\"", \""Monitor\""]",185.84,"{\""loyalty\"": \""17%\""}",190188,1,"""Europe""" +2024-05-18,48244,7616,"[\""Charger\""]",543.06,"{\""promo\"": \""16%\""}",206301,0,"""Europe""" +2023-05-14,48245,2471,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",384.15,"{\"": \""17%\""}",160825,1,"""Africa""" +2023-09-19,48246,5337,"[\""Tablet\""]",3983.57,{},242583,0,"""North America""" +2024-01-23,48247,7021,"[\""Headphones\""]",578.82,{},31953,0,"""Asia""" +2024-03-18,48248,7189,"[\""Laptop\""]",1790.7,{},119408,0,"""South America""" +2024-04-23,48249,5813,"[\""Monitor\"", \""Charger\""]",4229.58,"{\""loyalty\"": \""7%\""}",75893,1,"""North America""" +2024-06-10,48250,4460,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",619.66,"{\""loyalty\"": \""28%\""}",110638,1,"""Europe""" +2024-10-14,48251,9548,"[\""Charger\"", \""Wireless Mouse\""]",3924.98,{},253180,1,"""North America""" +2024-10-20,48252,8261,"[\""Monitor\"", \""Tablet\""]",652.24,"{\""loyalty\"": \""25%\""}",19923,0,"""Africa""" +2023-04-03,48253,1440,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3843.97,{},266880,1,"""Europe""" +2023-07-03,48254,5190,"[\""Monitor\"", \""Tablet\""]",2729.99,"{\""promo\"": \""30%\""}",31856,1,"""Europe""" +2023-06-22,48255,9420,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",948.28,"{\""seasonal\"": \""9%\""}",99858,0,"""Africa""" +2024-11-15,48256,5768,"[\""Monitor\"", \""Wireless Mouse\""]",1688.13,{},7959,0,"""Asia""" +2023-08-23,48257,5666,"[\""Tablet\"", \""Headphones\""]",2643.76,{},142425,1,"""Europe""" +2024-04-10,48258,8172,"[\""Tablet\"", \""Monitor\""]",4920.78,{},27141,1,"""Africa""" +2023-10-30,48259,9445,"[\""Headphones\""]",741.49,"{\""seasonal\"": \""22%\""}",1207,0,"""Europe""" +2023-07-17,48260,230,"[\""Phone\"", \""Keyboard\""]",196.6,{},157720,1,"""South America""" +2024-06-15,48261,3876,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3905.36,{},236560,1,"""North America""" +2024-10-13,48262,4550,"[\""Wireless Mouse\""]",2310.35,{},290337,0,"""Africa""" +2024-09-18,48263,2847,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1790.76,"{\""seasonal\"": \""21%\""}",208624,0,"""South America""" +2024-03-05,48264,8505,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1523.2,{},170489,0,"""South America""" +2023-08-23,48265,3157,"[\""Tablet\"", \""Phone\""]",2281.61,"{\""loyalty\"": \""16%\""}",20809,0,"""North America""" +2023-07-30,48266,2423,"[\""Headphones\""]",2650.86,"{\""promo\"": \""15%\""}",117964,0,"""Africa""" +2023-09-30,48267,1588,"[\""Phone\""]",1293.37,{},190580,0,"""Europe""" +2023-04-22,48268,3066,"[\""Keyboard\"", \""Monitor\""]",1867.81,{},148386,0,"""Asia""" +2023-07-28,48269,60,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3469.57,{},286614,0,"""North America""" +2024-09-02,48270,8062,"[\""Keyboard\""]",2078.45,{},63911,0,"""South America""" +2023-04-08,48271,1205,"[\""Keyboard\""]",1213.56,{},223197,1,"""Africa""" +2023-02-13,48272,6436,"[\""Headphones\""]",331.82,"{\""loyalty\"": \""20%\""}",263871,0,"""Asia""" +2024-10-25,48273,952,"[\""Wireless Mouse\""]",271.7,"{\""seasonal\"": \""30%\""}",173450,1,"""Europe""" +2024-02-12,48274,4030,"[\""Tablet\"", \""Monitor\""]",3213.94,"{\""promo\"": \""9%\""}",191166,0,"""Africa""" +2024-09-27,48275,527,"[\""Phone\"", \""Tablet\"", \""Charger\""]",786.59,"{\""loyalty\"": \""16%\""}",71638,1,"""Europe""" +2024-04-28,48276,14,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2249.24,"{\""seasonal\"": \""24%\""}",164222,0,"""Europe""" +2024-11-10,48277,7875,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4404.48,{},153657,1,"""Europe""" +2024-06-05,48278,6987,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1994.46,{},124863,1,"""Africa""" +2024-10-21,48279,4306,"[\""Wireless Mouse\"", \""Charger\""]",2823.45,{},42148,1,"""North America""" +2024-10-24,48280,7222,"[\""Keyboard\""]",3616.02,{},66917,0,"""Asia""" +2023-11-25,48281,5658,"[\""Laptop\"", \""Phone\""]",2586.82,"{\""loyalty\"": \""23%\""}",234163,1,"""South America""" +2023-09-19,48282,7584,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3533.46,"{\"": \""7%\""}",272216,1,"""South America""" +2023-03-20,48283,7842,"[\""Laptop\""]",3586.93,{},230658,0,"""South America""" +2023-03-24,48284,3388,"[\""Wireless Mouse\"", \""Laptop\""]",4808.7,{},265677,0,"""Asia""" +2023-09-01,48285,9119,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1992.38,{},31863,1,"""South America""" +2023-01-01,48286,9489,"[\""Tablet\""]",3872.07,"{\""promo\"": \""26%\""}",253157,1,"""South America""" +2023-03-17,48287,7686,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",174.73,{},144145,1,"""South America""" +2024-05-22,48288,6075,"[\""Headphones\""]",354.5,"{\""promo\"": \""27%\""}",86459,1,"""Asia""" +2023-05-26,48289,3546,"[\""Headphones\""]",2564.08,{},49153,1,"""Asia""" +2024-11-26,48290,8024,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",845.39,"{\""seasonal\"": \""24%\""}",292004,0,"""Asia""" +2023-10-08,48291,5932,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1164.06,{},274187,1,"""North America""" +2023-02-27,48292,3924,"[\""Charger\""]",3873.68,{},78174,1,"""South America""" +2023-12-10,48293,3797,"[\""Headphones\""]",2353.01,"{\""promo\"": \""7%\""}",155473,0,"""North America""" +2024-04-05,48294,2323,"[\""Headphones\"", \""Wireless Mouse\""]",3364.02,{},31108,0,"""Europe""" +2024-04-04,48295,4454,"[\""Charger\"", \""Headphones\""]",4968.99,"{\""seasonal\"": \""27%\""}",85610,1,"""Europe""" +2023-12-01,48296,7841,"[\""Phone\""]",3026.31,"{\"": \""5%\""}",278891,0,"""North America""" +2023-09-20,48297,9088,"[\""Wireless Mouse\""]",464.71,{},263601,1,"""Africa""" +2023-08-09,48298,1490,"[\""Wireless Mouse\""]",3935.24,"{\"": \""27%\""}",32458,1,"""South America""" +2023-02-22,48299,9994,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",768.05,{},123224,0,"""Africa""" +2024-10-15,48300,2432,"[\""Charger\""]",4959.58,"{\""promo\"": \""28%\""}",131662,0,"""Europe""" +2024-01-13,48301,1354,"[\""Headphones\"", \""Laptop\""]",3207.11,{},16747,1,"""Africa""" +2023-04-21,48302,3066,"[\""Wireless Mouse\""]",1593.46,"{\""seasonal\"": \""9%\""}",234294,0,"""Europe""" +2023-10-05,48303,4770,"[\""Monitor\""]",2443.45,{},235646,0,"""Europe""" +2023-02-12,48304,5087,"[\""Phone\""]",4284.66,{},295524,1,"""Asia""" +2024-05-30,48305,1265,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2682.0,{},273337,1,"""Africa""" +2023-09-16,48306,7547,"[\""Laptop\""]",1479.17,{},29033,1,"""North America""" +2024-01-08,48307,3203,"[\""Headphones\"", \""Charger\""]",3205.78,"{\""loyalty\"": \""21%\""}",246213,0,"""North America""" +2023-07-05,48308,9352,"[\""Phone\""]",759.75,{},62655,1,"""Europe""" +2024-05-30,48309,9092,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4431.79,"{\"": \""14%\""}",212689,0,"""Asia""" +2024-11-18,48310,2666,"[\""Phone\""]",3384.86,"{\""seasonal\"": \""6%\""}",29226,1,"""Asia""" +2024-11-02,48311,1101,"[\""Laptop\""]",4504.52,"{\""seasonal\"": \""9%\""}",292073,1,"""Africa""" +2024-04-14,48312,3220,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",795.62,{},66349,1,"""Asia""" +2023-04-11,48313,3418,"[\""Keyboard\"", \""Tablet\""]",771.23,{},112965,0,"""Asia""" +2024-08-13,48314,8368,"[\""Wireless Mouse\""]",4759.62,"{\""seasonal\"": \""29%\""}",127348,1,"""Asia""" +2024-01-24,48315,7547,"[\""Tablet\"", \""Headphones\""]",653.56,"{\"": \""21%\""}",187141,0,"""Europe""" +2024-02-17,48316,9316,"[\""Wireless Mouse\"", \""Charger\""]",997.62,{},16039,0,"""South America""" +2024-01-03,48317,2299,"[\""Headphones\"", \""Keyboard\""]",4022.26,"{\""promo\"": \""6%\""}",217457,0,"""Asia""" +2023-01-12,48318,4654,"[\""Charger\""]",112.18,{},69530,0,"""Asia""" +2023-03-31,48319,3345,"[\""Keyboard\"", \""Headphones\""]",2722.15,{},163178,1,"""Asia""" +2023-02-17,48320,5762,"[\""Wireless Mouse\"", \""Phone\""]",960.79,"{\""promo\"": \""15%\""}",129332,1,"""South America""" +2024-06-14,48321,5058,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",711.42,{},23872,0,"""Asia""" +2024-10-26,48322,8933,"[\""Phone\"", \""Charger\"", \""Laptop\""]",264.11,"{\"": \""8%\""}",68345,0,"""Asia""" +2024-01-23,48323,557,"[\""Monitor\""]",1127.89,{},62674,0,"""Europe""" +2024-01-06,48324,1887,"[\""Charger\"", \""Tablet\""]",175.77,{},90223,0,"""Europe""" +2024-11-11,48325,977,"[\""Wireless Mouse\"", \""Headphones\""]",111.94,{},90551,0,"""North America""" +2024-11-13,48326,678,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3913.46,{},138373,0,"""South America""" +2023-11-25,48327,4092,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4167.57,{},55270,1,"""North America""" +2023-05-24,48328,5791,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",366.03,{},200073,1,"""North America""" +2024-05-29,48329,8248,"[\""Tablet\"", \""Laptop\""]",601.69,"{\""loyalty\"": \""13%\""}",172927,0,"""Africa""" +2024-01-14,48330,1063,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",212.92,{},112324,0,"""Asia""" +2024-10-12,48331,159,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4247.77,{},197821,1,"""Asia""" +2023-05-22,48332,9176,"[\""Laptop\"", \""Headphones\""]",1285.82,"{\""loyalty\"": \""29%\""}",4033,0,"""Europe""" +2023-07-23,48333,8301,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",97.93,"{\"": \""28%\""}",192293,1,"""North America""" +2023-03-17,48334,1500,"[\""Wireless Mouse\"", \""Tablet\""]",4164.58,"{\"": \""21%\""}",52950,1,"""Africa""" +2024-03-29,48335,1616,"[\""Tablet\""]",2937.53,{},113792,0,"""Asia""" +2024-04-23,48336,7658,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2779.86,"{\""loyalty\"": \""18%\""}",125561,1,"""Europe""" +2024-07-01,48337,1321,"[\""Wireless Mouse\""]",1693.47,{},59308,0,"""North America""" +2023-02-24,48338,6330,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4054.55,"{\""seasonal\"": \""25%\""}",27106,0,"""South America""" +2024-03-17,48339,6437,"[\""Monitor\"", \""Laptop\""]",4615.29,"{\""loyalty\"": \""15%\""}",265369,1,"""North America""" +2023-12-19,48340,1938,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3916.94,{},105163,0,"""Africa""" +2024-01-27,48341,6574,"[\""Headphones\"", \""Keyboard\""]",784.77,"{\"": \""11%\""}",201983,1,"""North America""" +2024-03-25,48342,5279,"[\""Wireless Mouse\"", \""Keyboard\""]",735.51,{},171862,0,"""Europe""" +2024-11-24,48343,2370,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1979.92,{},82623,1,"""Europe""" +2023-07-10,48344,9798,"[\""Phone\""]",4741.87,{},197622,0,"""Europe""" +2024-02-20,48345,995,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",792.74,"{\""seasonal\"": \""9%\""}",85691,1,"""North America""" +2023-04-18,48346,2577,"[\""Keyboard\""]",2156.63,{},145435,1,"""South America""" +2023-12-26,48347,6283,"[\""Wireless Mouse\"", \""Phone\""]",640.67,"{\""loyalty\"": \""12%\""}",167864,1,"""Europe""" +2024-09-27,48348,3346,"[\""Phone\""]",3834.28,{},257694,1,"""Europe""" +2024-02-23,48349,9179,"[\""Charger\""]",3848.5,{},75628,1,"""Africa""" +2024-10-20,48350,3287,"[\""Laptop\"", \""Wireless Mouse\""]",1579.66,"{\""loyalty\"": \""17%\""}",230836,0,"""North America""" +2024-07-15,48351,2686,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4594.54,{},155540,1,"""Africa""" +2024-03-28,48352,8194,"[\""Charger\"", \""Keyboard\""]",4692.88,{},49537,1,"""Africa""" +2024-05-27,48353,5212,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1922.56,"{\""seasonal\"": \""24%\""}",56628,1,"""Europe""" +2023-03-08,48354,1150,"[\""Headphones\""]",1913.32,"{\""seasonal\"": \""6%\""}",43849,0,"""Africa""" +2023-12-08,48355,8217,"[\""Charger\"", \""Laptop\""]",1873.51,"{\""loyalty\"": \""16%\""}",250691,1,"""North America""" +2024-12-12,48356,8067,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1078.86,"{\""loyalty\"": \""29%\""}",171523,0,"""Asia""" +2023-09-04,48357,3932,"[\""Phone\""]",816.64,"{\"": \""6%\""}",297336,1,"""Europe""" +2024-05-17,48358,8316,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2303.5,{},168314,0,"""Europe""" +2024-05-05,48359,9842,"[\""Tablet\""]",3532.51,{},138854,0,"""Europe""" +2023-04-25,48360,6723,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2281.43,"{\""loyalty\"": \""24%\""}",239197,0,"""North America""" +2024-10-07,48361,799,"[\""Laptop\"", \""Keyboard\""]",4308.63,"{\"": \""7%\""}",256571,0,"""North America""" +2023-01-23,48362,5130,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2223.92,"{\""loyalty\"": \""7%\""}",275257,1,"""Asia""" +2024-04-05,48363,6131,"[\""Keyboard\"", \""Charger\""]",245.22,{},29849,0,"""Asia""" +2024-05-17,48364,7325,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4254.56,"{\""seasonal\"": \""20%\""}",268416,0,"""Asia""" +2024-09-28,48365,2482,"[\""Monitor\"", \""Tablet\""]",292.33,"{\"": \""15%\""}",197484,1,"""South America""" +2023-08-11,48366,8221,"[\""Charger\"", \""Laptop\""]",1469.47,"{\""promo\"": \""27%\""}",291163,1,"""North America""" +2024-02-24,48367,6868,"[\""Charger\""]",2760.81,{},194846,0,"""Africa""" +2024-04-07,48368,2138,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2068.43,"{\""promo\"": \""24%\""}",171036,1,"""Europe""" +2024-05-31,48369,1545,"[\""Tablet\"", \""Headphones\""]",3524.77,{},37568,0,"""Europe""" +2024-08-15,48370,9937,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",722.77,"{\""loyalty\"": \""10%\""}",41469,1,"""North America""" +2024-07-23,48371,4151,"[\""Charger\""]",4153.83,{},259910,1,"""Europe""" +2023-03-07,48372,1928,"[\""Keyboard\""]",2764.38,"{\"": \""6%\""}",43641,1,"""Europe""" +2024-09-23,48373,2144,"[\""Phone\"", \""Keyboard\""]",2263.13,"{\""loyalty\"": \""30%\""}",98848,0,"""North America""" +2023-02-28,48374,9805,"[\""Wireless Mouse\"", \""Phone\""]",1314.62,"{\""loyalty\"": \""19%\""}",292442,1,"""North America""" +2023-01-23,48375,9326,"[\""Laptop\""]",104.11,"{\"": \""10%\""}",50499,1,"""South America""" +2023-04-01,48376,9334,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2414.37,"{\""loyalty\"": \""18%\""}",241378,0,"""Asia""" +2024-08-12,48377,9304,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1377.11,"{\""seasonal\"": \""27%\""}",263485,0,"""North America""" +2024-06-22,48378,9960,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",237.16,{},219829,0,"""Africa""" +2023-11-11,48379,8470,"[\""Monitor\"", \""Laptop\""]",403.53,"{\""seasonal\"": \""25%\""}",141484,1,"""Africa""" +2024-07-18,48380,2956,"[\""Headphones\"", \""Charger\""]",4702.18,{},254751,0,"""Europe""" +2023-06-22,48381,4287,"[\""Monitor\""]",3022.53,"{\"": \""8%\""}",79719,0,"""North America""" +2023-06-08,48382,9664,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4062.09,{},201676,1,"""Africa""" +2024-06-29,48383,682,"[\""Keyboard\"", \""Monitor\""]",4221.36,"{\""promo\"": \""24%\""}",112696,0,"""South America""" +2023-12-26,48384,6020,"[\""Wireless Mouse\"", \""Tablet\""]",1399.86,{},278302,1,"""North America""" +2024-12-09,48385,8300,"[\""Laptop\"", \""Monitor\""]",2757.26,"{\""promo\"": \""27%\""}",168919,1,"""South America""" +2024-07-03,48386,8763,"[\""Wireless Mouse\""]",4299.01,"{\""promo\"": \""18%\""}",59175,1,"""Asia""" +2023-07-24,48387,1207,"[\""Charger\""]",1646.35,{},138346,1,"""Africa""" +2023-12-01,48388,5545,"[\""Monitor\""]",2926.85,{},60624,1,"""South America""" +2023-03-28,48389,531,"[\""Headphones\"", \""Laptop\""]",1650.29,"{\"": \""29%\""}",233804,0,"""Africa""" +2024-08-04,48390,8566,"[\""Tablet\"", \""Keyboard\""]",3395.95,{},262891,1,"""Asia""" +2023-04-19,48391,2829,"[\""Tablet\"", \""Charger\""]",4334.4,"{\"": \""12%\""}",39389,0,"""Europe""" +2023-01-19,48392,495,"[\""Laptop\"", \""Monitor\""]",2350.46,{},270167,1,"""South America""" +2023-05-17,48393,7573,"[\""Tablet\""]",2332.48,"{\""promo\"": \""29%\""}",42207,1,"""Asia""" +2023-03-22,48394,6668,"[\""Monitor\""]",4048.12,"{\""promo\"": \""29%\""}",294774,0,"""South America""" +2024-12-08,48395,3824,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4137.2,"{\""seasonal\"": \""26%\""}",222843,1,"""Asia""" +2023-01-07,48396,4969,"[\""Phone\"", \""Wireless Mouse\""]",2384.54,"{\""promo\"": \""7%\""}",217831,0,"""Europe""" +2023-11-13,48397,8908,"[\""Phone\"", \""Monitor\""]",2415.12,{},98948,1,"""Asia""" +2024-10-24,48398,6149,"[\""Tablet\"", \""Headphones\""]",1558.08,{},67112,0,"""Europe""" +2023-08-05,48399,8837,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",635.22,"{\"": \""26%\""}",181926,0,"""Asia""" +2024-05-14,48400,9824,"[\""Monitor\"", \""Headphones\""]",2678.5,{},208262,0,"""Europe""" +2024-09-18,48401,1172,"[\""Phone\"", \""Tablet\""]",3674.95,{},136808,0,"""South America""" +2024-02-05,48402,3567,"[\""Monitor\""]",4371.27,"{\""loyalty\"": \""10%\""}",276307,0,"""Asia""" +2024-01-06,48403,1745,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3275.99,"{\""promo\"": \""27%\""}",17967,1,"""Europe""" +2024-11-04,48404,3183,"[\""Keyboard\""]",293.24,"{\""loyalty\"": \""11%\""}",272335,0,"""Asia""" +2024-01-25,48405,9115,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",510.33,"{\""loyalty\"": \""29%\""}",42966,1,"""North America""" +2024-02-28,48406,2978,"[\""Monitor\"", \""Keyboard\""]",4928.68,{},211105,1,"""North America""" +2024-03-14,48407,3889,"[\""Phone\""]",1895.53,{},93153,0,"""Africa""" +2023-08-29,48408,2987,"[\""Tablet\""]",1837.56,"{\""loyalty\"": \""23%\""}",208827,1,"""Europe""" +2024-04-10,48409,7981,"[\""Headphones\""]",2734.56,{},114253,0,"""Africa""" +2023-04-21,48410,3498,"[\""Keyboard\"", \""Headphones\""]",3933.05,{},262970,1,"""Asia""" +2023-04-14,48411,5430,"[\""Phone\""]",91.07,{},141532,0,"""Europe""" +2024-09-13,48412,5403,"[\""Keyboard\""]",1040.0,{},27283,1,"""Africa""" +2024-08-18,48413,1930,"[\""Keyboard\""]",113.55,{},207113,1,"""North America""" +2024-01-25,48414,4548,"[\""Tablet\""]",1480.54,"{\"": \""7%\""}",51101,0,"""Africa""" +2023-08-01,48415,5375,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1390.87,"{\""promo\"": \""17%\""}",283796,0,"""Asia""" +2023-11-29,48416,8851,"[\""Wireless Mouse\"", \""Headphones\""]",2264.5,{},109330,0,"""North America""" +2023-05-14,48417,1929,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1203.87,"{\"": \""15%\""}",257487,0,"""Africa""" +2023-03-18,48418,4020,"[\""Laptop\""]",258.96,"{\""promo\"": \""18%\""}",170161,0,"""South America""" +2024-05-20,48419,6736,"[\""Charger\""]",4052.02,{},55210,1,"""North America""" +2024-02-03,48420,9983,"[\""Laptop\"", \""Phone\""]",510.51,"{\""loyalty\"": \""20%\""}",12529,0,"""North America""" +2023-11-20,48421,5377,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4898.56,{},274833,1,"""Africa""" +2024-10-13,48422,4743,"[\""Wireless Mouse\"", \""Tablet\""]",2715.12,"{\"": \""14%\""}",263667,1,"""Asia""" +2023-05-17,48423,4320,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4294.76,"{\""promo\"": \""16%\""}",28278,1,"""Europe""" +2023-03-23,48424,6090,"[\""Charger\"", \""Headphones\""]",1540.12,"{\""promo\"": \""7%\""}",109064,0,"""North America""" +2023-05-26,48425,7008,"[\""Headphones\"", \""Phone\""]",4402.77,"{\""promo\"": \""27%\""}",121840,1,"""South America""" +2023-01-07,48426,8493,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3097.19,{},222460,0,"""South America""" +2023-09-29,48427,5823,"[\""Phone\""]",3023.85,{},278836,1,"""South America""" +2023-10-04,48428,9482,"[\""Keyboard\"", \""Phone\""]",4866.14,{},247763,0,"""Africa""" +2023-02-03,48429,732,"[\""Wireless Mouse\""]",3793.51,{},19630,1,"""Asia""" +2023-12-29,48430,2753,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4030.01,{},48314,1,"""Europe""" +2023-12-07,48431,1500,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2957.53,"{\""promo\"": \""27%\""}",176534,1,"""North America""" +2024-04-22,48432,6698,"[\""Wireless Mouse\""]",2793.38,"{\""loyalty\"": \""8%\""}",238697,0,"""South America""" +2024-09-18,48433,902,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4266.29,"{\"": \""24%\""}",58480,1,"""Africa""" +2024-10-18,48434,7780,"[\""Phone\""]",2064.4,{},47509,1,"""North America""" +2023-08-20,48435,3213,"[\""Charger\"", \""Monitor\""]",4915.35,{},95088,0,"""Europe""" +2023-07-13,48436,5300,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2027.64,"{\""loyalty\"": \""27%\""}",277422,0,"""South America""" +2024-12-23,48437,2339,"[\""Phone\""]",795.44,"{\"": \""25%\""}",18101,0,"""South America""" +2024-09-12,48438,9938,"[\""Phone\""]",2897.64,{},30361,1,"""Europe""" +2024-08-01,48439,9221,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",414.22,{},144135,0,"""North America""" +2024-01-17,48440,665,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1616.55,{},17058,0,"""Europe""" +2024-03-10,48441,2570,"[\""Keyboard\""]",1463.35,"{\""promo\"": \""7%\""}",285559,0,"""South America""" +2024-04-30,48442,1648,"[\""Keyboard\"", \""Tablet\""]",3503.06,{},155334,1,"""North America""" +2023-07-06,48443,9321,"[\""Headphones\""]",4018.75,{},153603,1,"""North America""" +2024-06-29,48444,3291,"[\""Laptop\""]",3340.63,{},172337,1,"""South America""" +2023-10-31,48445,6457,"[\""Phone\""]",3739.83,{},281535,0,"""Asia""" +2024-08-15,48446,7306,"[\""Phone\""]",2059.99,{},122411,0,"""South America""" +2024-06-05,48447,6964,"[\""Laptop\"", \""Wireless Mouse\""]",4589.8,{},176412,1,"""Africa""" +2024-11-05,48448,2841,"[\""Phone\""]",2637.3,{},93472,0,"""South America""" +2023-04-12,48449,2627,"[\""Wireless Mouse\"", \""Phone\""]",4893.85,{},274088,1,"""Europe""" +2023-08-18,48450,2230,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1976.46,"{\""loyalty\"": \""6%\""}",183748,1,"""South America""" +2023-08-06,48451,7579,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3116.64,"{\"": \""28%\""}",26649,0,"""South America""" +2024-08-15,48452,4654,"[\""Keyboard\""]",2531.72,"{\""seasonal\"": \""30%\""}",80439,0,"""North America""" +2024-08-25,48453,8533,"[\""Charger\"", \""Tablet\""]",2578.04,"{\""loyalty\"": \""7%\""}",3746,1,"""South America""" +2024-02-08,48454,8684,"[\""Wireless Mouse\""]",1624.56,"{\""loyalty\"": \""5%\""}",85449,1,"""Europe""" +2023-08-27,48455,4470,"[\""Monitor\""]",3952.52,{},35311,0,"""Asia""" +2023-01-15,48456,5999,"[\""Keyboard\"", \""Wireless Mouse\""]",669.17,{},186169,1,"""North America""" +2023-11-19,48457,2456,"[\""Charger\"", \""Wireless Mouse\""]",2455.35,{},161090,1,"""North America""" +2024-02-12,48458,2377,"[\""Keyboard\"", \""Charger\""]",1761.38,"{\""loyalty\"": \""20%\""}",217204,0,"""Europe""" +2023-05-30,48459,3224,"[\""Monitor\"", \""Headphones\""]",330.0,{},104320,1,"""South America""" +2024-04-30,48460,8739,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1249.36,{},186238,1,"""North America""" +2023-04-19,48461,1002,"[\""Tablet\""]",2013.91,"{\""promo\"": \""6%\""}",272090,1,"""South America""" +2024-02-19,48462,9140,"[\""Tablet\""]",4295.3,"{\""promo\"": \""9%\""}",103465,1,"""Europe""" +2023-05-18,48463,7119,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1453.64,{},142081,0,"""South America""" +2024-08-28,48464,3588,"[\""Tablet\"", \""Wireless Mouse\""]",1417.95,{},125076,0,"""South America""" +2023-11-30,48465,2357,"[\""Wireless Mouse\"", \""Phone\""]",1005.31,{},243920,1,"""Europe""" +2023-02-26,48466,9363,"[\""Headphones\"", \""Phone\""]",58.78,{},273056,1,"""Africa""" +2023-04-06,48467,8986,"[\""Laptop\"", \""Keyboard\""]",691.02,{},72073,0,"""Africa""" +2024-02-16,48468,6763,"[\""Laptop\"", \""Keyboard\""]",2405.49,"{\""seasonal\"": \""10%\""}",180611,0,"""Africa""" +2024-08-23,48469,4172,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3083.11,"{\"": \""12%\""}",265241,0,"""Asia""" +2023-04-24,48470,2400,"[\""Keyboard\""]",2264.71,{},288764,1,"""Africa""" +2024-03-18,48471,8011,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3109.62,"{\""seasonal\"": \""20%\""}",272328,0,"""Africa""" +2024-09-13,48472,5086,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4954.2,{},49648,1,"""Asia""" +2023-09-26,48473,3173,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4847.41,{},220793,0,"""South America""" +2024-11-12,48474,854,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",487.68,"{\""seasonal\"": \""6%\""}",66865,1,"""Europe""" +2023-07-30,48475,6819,"[\""Wireless Mouse\""]",3811.58,{},295177,0,"""Asia""" +2023-05-24,48476,1254,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4270.18,"{\"": \""28%\""}",236993,1,"""Africa""" +2024-05-19,48477,9969,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1217.15,"{\""loyalty\"": \""23%\""}",63007,0,"""South America""" +2023-09-29,48478,8886,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4154.17,{},250247,1,"""Europe""" +2023-07-03,48479,1029,"[\""Tablet\""]",3809.4,"{\""promo\"": \""28%\""}",93598,0,"""Africa""" +2024-10-02,48480,7560,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1583.03,{},297204,0,"""North America""" +2023-12-07,48481,8712,"[\""Keyboard\""]",4592.31,{},288750,1,"""Africa""" +2024-12-25,48482,3453,"[\""Charger\""]",390.14,"{\""loyalty\"": \""17%\""}",35902,1,"""North America""" +2023-01-16,48483,5437,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3927.87,"{\"": \""8%\""}",35167,0,"""Africa""" +2024-12-11,48484,7737,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4984.07,"{\"": \""22%\""}",89511,1,"""Europe""" +2024-03-25,48485,285,"[\""Wireless Mouse\""]",2890.27,"{\""promo\"": \""15%\""}",148513,0,"""Asia""" +2024-12-08,48486,8651,"[\""Phone\"", \""Headphones\""]",169.78,"{\""loyalty\"": \""22%\""}",61742,0,"""North America""" +2023-03-09,48487,2450,"[\""Keyboard\""]",1966.42,"{\""loyalty\"": \""13%\""}",278980,1,"""South America""" +2023-11-23,48488,4493,"[\""Headphones\""]",2191.53,{},131074,1,"""North America""" +2024-01-14,48489,3580,"[\""Headphones\"", \""Charger\""]",4540.95,"{\"": \""15%\""}",75603,1,"""Africa""" +2024-01-07,48490,2980,"[\""Keyboard\"", \""Charger\""]",3195.41,{},148392,1,"""South America""" +2024-01-20,48491,1350,"[\""Phone\""]",4727.57,{},13827,0,"""North America""" +2023-10-14,48492,2011,"[\""Wireless Mouse\""]",1404.85,"{\""seasonal\"": \""20%\""}",178936,1,"""Asia""" +2023-04-01,48493,1441,"[\""Laptop\""]",3587.84,"{\""loyalty\"": \""14%\""}",106619,1,"""Africa""" +2023-07-30,48494,8434,"[\""Charger\""]",4678.68,"{\"": \""10%\""}",138196,0,"""Europe""" +2023-10-26,48495,9142,"[\""Charger\""]",4765.57,"{\""seasonal\"": \""7%\""}",254629,1,"""South America""" +2023-03-10,48496,2580,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1777.89,"{\""loyalty\"": \""25%\""}",252482,0,"""South America""" +2024-07-27,48497,9888,"[\""Keyboard\"", \""Phone\""]",3860.62,{},4087,0,"""Asia""" +2023-10-05,48498,7556,"[\""Charger\""]",106.58,"{\""loyalty\"": \""10%\""}",297184,0,"""North America""" +2024-09-04,48499,6994,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4273.16,{},10162,1,"""Africa""" +2024-02-19,48500,3261,"[\""Tablet\"", \""Headphones\""]",826.06,"{\""promo\"": \""27%\""}",231619,0,"""Asia""" +2024-09-17,48501,318,"[\""Phone\"", \""Wireless Mouse\""]",4930.3,"{\"": \""15%\""}",184203,1,"""Asia""" +2023-09-10,48502,5412,"[\""Phone\""]",3888.27,{},169630,0,"""North America""" +2023-08-20,48503,1677,"[\""Laptop\"", \""Phone\""]",1987.38,"{\""loyalty\"": \""23%\""}",287945,0,"""Asia""" +2023-07-11,48504,9469,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",590.21,"{\""loyalty\"": \""21%\""}",21832,0,"""Asia""" +2024-02-19,48505,2229,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1247.43,"{\""promo\"": \""18%\""}",5448,1,"""South America""" +2024-10-24,48506,5196,"[\""Headphones\"", \""Laptop\""]",638.81,"{\""promo\"": \""21%\""}",56885,0,"""South America""" +2024-03-22,48507,2642,"[\""Monitor\""]",3784.54,{},169661,0,"""South America""" +2024-09-06,48508,4359,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2661.92,"{\""promo\"": \""30%\""}",2057,1,"""Asia""" +2024-04-05,48509,9479,"[\""Tablet\"", \""Keyboard\""]",1492.88,{},18345,0,"""South America""" +2024-10-24,48510,5482,"[\""Charger\""]",4609.93,{},158831,0,"""Asia""" +2023-05-31,48511,7809,"[\""Phone\""]",3505.46,"{\""promo\"": \""26%\""}",168958,0,"""North America""" +2023-05-27,48512,9070,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",136.11,{},129475,0,"""South America""" +2024-11-13,48513,5841,"[\""Laptop\"", \""Headphones\""]",4908.32,"{\"": \""15%\""}",36786,1,"""Africa""" +2023-09-10,48514,9717,"[\""Headphones\"", \""Tablet\""]",2292.1,{},244633,1,"""South America""" +2024-02-13,48515,755,"[\""Monitor\"", \""Tablet\""]",1060.84,{},4908,1,"""South America""" +2024-05-26,48516,9830,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",472.61,"{\"": \""24%\""}",1343,1,"""Africa""" +2023-03-05,48517,1360,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3459.82,{},158151,0,"""Europe""" +2024-08-01,48518,6103,"[\""Monitor\"", \""Tablet\""]",351.86,"{\""promo\"": \""27%\""}",15361,0,"""Africa""" +2024-05-24,48519,3606,"[\""Wireless Mouse\""]",1208.93,"{\""loyalty\"": \""30%\""}",147871,0,"""South America""" +2023-03-27,48520,1711,"[\""Monitor\""]",2559.67,"{\""seasonal\"": \""21%\""}",265833,0,"""Africa""" +2023-07-24,48521,3445,"[\""Monitor\""]",3163.84,{},132508,0,"""South America""" +2023-09-23,48522,4952,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3639.06,{},277413,1,"""Africa""" +2024-02-20,48523,2097,"[\""Monitor\"", \""Wireless Mouse\""]",1633.84,{},17451,1,"""North America""" +2024-04-02,48524,5046,"[\""Monitor\""]",2578.16,{},251030,0,"""Europe""" +2024-01-23,48525,1684,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",55.57,{},187802,1,"""Africa""" +2023-11-24,48526,5959,"[\""Tablet\""]",677.79,{},49382,1,"""Europe""" +2024-01-17,48527,6349,"[\""Headphones\""]",256.76,"{\"": \""7%\""}",156869,0,"""South America""" +2024-08-18,48528,628,"[\""Phone\"", \""Laptop\""]",3432.46,{},103648,1,"""South America""" +2023-06-24,48529,9601,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1645.82,"{\""promo\"": \""8%\""}",280940,1,"""North America""" +2024-02-06,48530,3106,"[\""Phone\""]",459.6,"{\""promo\"": \""16%\""}",158181,0,"""Europe""" +2024-11-15,48531,177,"[\""Charger\""]",3919.19,"{\""seasonal\"": \""25%\""}",122881,1,"""Asia""" +2024-03-20,48532,4538,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4155.5,"{\""promo\"": \""30%\""}",129737,1,"""North America""" +2023-09-28,48533,7600,"[\""Tablet\"", \""Wireless Mouse\""]",4402.22,"{\""seasonal\"": \""13%\""}",116293,0,"""Asia""" +2024-03-31,48534,4085,"[\""Keyboard\"", \""Wireless Mouse\""]",3495.08,{},160173,0,"""Asia""" +2023-09-28,48535,4972,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4536.46,"{\""loyalty\"": \""24%\""}",270736,0,"""South America""" +2023-09-22,48536,7134,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",727.43,{},210499,1,"""Asia""" +2024-08-15,48537,7735,"[\""Keyboard\""]",2777.38,{},17407,0,"""Asia""" +2023-06-26,48538,9640,"[\""Charger\""]",2174.16,"{\""promo\"": \""13%\""}",33075,0,"""South America""" +2023-07-30,48539,7008,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1413.03,{},261451,0,"""Asia""" +2024-09-03,48540,2492,"[\""Phone\""]",502.38,{},201035,1,"""South America""" +2023-11-17,48541,10,"[\""Laptop\""]",3094.7,"{\""promo\"": \""13%\""}",233803,1,"""South America""" +2023-03-25,48542,9780,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3450.76,{},51580,0,"""North America""" +2023-10-27,48543,2721,"[\""Phone\""]",3197.88,{},198341,0,"""Asia""" +2024-12-20,48544,375,"[\""Keyboard\""]",949.77,{},23693,1,"""Africa""" +2023-05-31,48545,4243,"[\""Keyboard\""]",4379.45,"{\""seasonal\"": \""20%\""}",293669,1,"""Europe""" +2023-10-24,48546,4954,"[\""Tablet\"", \""Monitor\""]",1551.64,"{\""loyalty\"": \""12%\""}",273645,0,"""Asia""" +2024-05-09,48547,8326,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2799.27,"{\""seasonal\"": \""25%\""}",245083,0,"""Africa""" +2023-04-01,48548,2449,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4673.28,{},220849,1,"""Asia""" +2023-01-14,48549,8362,"[\""Charger\""]",2477.03,{},177851,0,"""Europe""" +2023-05-31,48550,3182,"[\""Wireless Mouse\""]",1753.1,"{\""promo\"": \""9%\""}",35279,1,"""Asia""" +2023-03-14,48551,2648,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2513.09,{},164897,1,"""South America""" +2023-01-11,48552,9369,"[\""Charger\"", \""Tablet\""]",3253.83,"{\"": \""18%\""}",112075,1,"""Europe""" +2024-03-22,48553,2810,"[\""Headphones\""]",4841.33,"{\""loyalty\"": \""24%\""}",295011,1,"""Asia""" +2023-11-07,48554,1658,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4579.11,"{\"": \""10%\""}",32147,0,"""Africa""" +2023-01-08,48555,1096,"[\""Phone\"", \""Monitor\""]",2001.42,"{\""promo\"": \""6%\""}",61652,0,"""North America""" +2023-12-31,48556,7324,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4857.95,{},105763,0,"""Africa""" +2024-06-06,48557,7670,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1687.35,"{\""promo\"": \""9%\""}",175359,1,"""Europe""" +2024-09-20,48558,2965,"[\""Wireless Mouse\"", \""Keyboard\""]",1771.64,{},51580,0,"""Asia""" +2023-01-13,48559,1838,"[\""Tablet\""]",1340.61,{},27424,1,"""South America""" +2023-11-27,48560,5744,"[\""Charger\""]",396.93,{},115975,0,"""Asia""" +2023-05-11,48561,4226,"[\""Laptop\"", \""Wireless Mouse\""]",1357.0,{},63829,1,"""Europe""" +2023-10-22,48562,681,"[\""Monitor\""]",2849.31,"{\""promo\"": \""16%\""}",206108,0,"""Africa""" +2023-06-28,48563,7354,"[\""Charger\"", \""Wireless Mouse\""]",3377.47,"{\""loyalty\"": \""14%\""}",11165,0,"""North America""" +2023-03-02,48564,1984,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",111.63,{},82509,1,"""Africa""" +2023-04-11,48565,6847,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1451.82,{},71727,1,"""Europe""" +2023-03-31,48566,7475,"[\""Laptop\"", \""Wireless Mouse\""]",1230.11,{},3753,0,"""Europe""" +2023-01-23,48567,8120,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1242.02,{},115714,1,"""Asia""" +2023-03-22,48568,1370,"[\""Monitor\""]",276.1,"{\""seasonal\"": \""5%\""}",72706,1,"""South America""" +2023-10-04,48569,891,"[\""Keyboard\"", \""Laptop\""]",2307.18,{},167255,1,"""Asia""" +2023-06-10,48570,3769,"[\""Keyboard\""]",4621.22,"{\""loyalty\"": \""29%\""}",118315,0,"""Europe""" +2023-11-09,48571,351,"[\""Keyboard\""]",3376.85,{},85522,0,"""Europe""" +2024-05-02,48572,3473,"[\""Headphones\""]",4574.8,{},202451,1,"""Europe""" +2023-07-25,48573,8012,"[\""Charger\"", \""Phone\""]",1761.76,"{\""loyalty\"": \""10%\""}",3244,0,"""Europe""" +2023-02-15,48574,4790,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",634.32,"{\""promo\"": \""6%\""}",97117,1,"""North America""" +2023-04-01,48575,7665,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4138.75,"{\""promo\"": \""29%\""}",88114,0,"""Europe""" +2024-07-18,48576,7171,"[\""Headphones\""]",1166.43,"{\"": \""7%\""}",291386,1,"""North America""" +2024-09-23,48577,305,"[\""Keyboard\""]",2420.8,{},183680,1,"""Europe""" +2023-10-01,48578,5084,"[\""Laptop\""]",1954.71,{},136474,1,"""South America""" +2024-10-09,48579,7214,"[\""Headphones\"", \""Monitor\""]",352.16,{},172302,1,"""North America""" +2023-08-26,48580,7618,"[\""Phone\"", \""Wireless Mouse\""]",770.33,{},80896,1,"""Asia""" +2024-08-04,48581,3810,"[\""Laptop\"", \""Tablet\""]",4829.68,{},86978,1,"""North America""" +2024-10-15,48582,1218,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4296.61,{},242890,1,"""South America""" +2023-04-22,48583,3411,"[\""Headphones\"", \""Keyboard\""]",263.2,{},255581,1,"""South America""" +2023-09-01,48584,1162,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",378.49,"{\""promo\"": \""24%\""}",112179,0,"""North America""" +2024-01-03,48585,5631,"[\""Keyboard\""]",2033.6,"{\"": \""26%\""}",97257,1,"""North America""" +2024-07-06,48586,7948,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",94.99,{},7838,0,"""South America""" +2023-01-14,48587,3808,"[\""Laptop\"", \""Headphones\""]",2814.85,{},153573,1,"""Europe""" +2024-12-12,48588,4680,"[\""Wireless Mouse\"", \""Charger\""]",1356.79,"{\""seasonal\"": \""20%\""}",77651,1,"""Europe""" +2024-01-17,48589,7494,"[\""Monitor\""]",4336.96,"{\"": \""22%\""}",166439,1,"""South America""" +2023-01-16,48590,3149,"[\""Phone\""]",96.92,{},73865,1,"""Africa""" +2023-10-14,48591,4490,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4505.71,{},288815,0,"""Africa""" +2024-08-17,48592,9517,"[\""Wireless Mouse\""]",3319.98,"{\"": \""21%\""}",60816,1,"""Asia""" +2023-08-24,48593,1186,"[\""Tablet\""]",1356.15,"{\""promo\"": \""25%\""}",268370,0,"""North America""" +2024-11-21,48594,5841,"[\""Phone\"", \""Wireless Mouse\""]",1449.36,"{\""loyalty\"": \""11%\""}",79185,1,"""North America""" +2024-05-06,48595,265,"[\""Monitor\""]",968.45,"{\""promo\"": \""5%\""}",154650,1,"""Europe""" +2024-11-07,48596,1407,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1705.33,{},268326,1,"""Africa""" +2023-11-26,48597,6806,"[\""Monitor\""]",1908.05,"{\""promo\"": \""14%\""}",279049,1,"""South America""" +2023-11-02,48598,3230,"[\""Tablet\"", \""Wireless Mouse\""]",1977.71,{},197598,0,"""South America""" +2023-03-13,48599,1453,"[\""Monitor\"", \""Tablet\""]",3143.93,"{\""loyalty\"": \""14%\""}",51542,0,"""North America""" +2024-09-19,48600,8167,"[\""Monitor\""]",3758.49,"{\""loyalty\"": \""25%\""}",199697,1,"""South America""" +2023-01-14,48601,7367,"[\""Wireless Mouse\""]",3210.23,"{\"": \""30%\""}",276279,1,"""North America""" +2024-11-30,48602,6277,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2717.81,"{\""promo\"": \""13%\""}",86061,1,"""Asia""" +2023-08-11,48603,2960,"[\""Headphones\"", \""Tablet\""]",2711.76,"{\""seasonal\"": \""10%\""}",131450,0,"""Africa""" +2023-10-02,48604,46,"[\""Laptop\"", \""Phone\""]",1546.55,{},152130,0,"""Europe""" +2023-12-03,48605,2737,"[\""Laptop\"", \""Headphones\""]",4242.36,"{\""loyalty\"": \""14%\""}",37467,0,"""Asia""" +2023-12-12,48606,985,"[\""Charger\""]",2797.53,{},41550,0,"""North America""" +2024-01-21,48607,879,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4927.04,{},196388,1,"""South America""" +2023-10-07,48608,5344,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1502.33,"{\""loyalty\"": \""17%\""}",29924,0,"""Asia""" +2024-12-09,48609,1100,"[\""Laptop\""]",4221.72,{},161620,0,"""North America""" +2023-07-19,48610,8818,"[\""Tablet\""]",3360.79,"{\"": \""15%\""}",269133,0,"""South America""" +2023-03-23,48611,5072,"[\""Tablet\""]",3641.68,"{\""loyalty\"": \""15%\""}",231395,1,"""Europe""" +2024-09-16,48612,9908,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3110.43,{},280303,1,"""North America""" +2023-10-03,48613,527,"[\""Monitor\"", \""Headphones\""]",2233.22,{},102438,1,"""Africa""" +2023-11-04,48614,4326,"[\""Monitor\""]",2086.5,{},74975,1,"""Europe""" +2023-09-04,48615,3689,"[\""Keyboard\""]",1500.16,{},45068,0,"""North America""" +2023-10-26,48616,2451,"[\""Laptop\""]",595.48,"{\""loyalty\"": \""28%\""}",140839,1,"""Africa""" +2023-04-01,48617,4662,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2118.12,{},31486,0,"""North America""" +2023-12-22,48618,8128,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4281.49,{},6071,1,"""Africa""" +2024-03-23,48619,8755,"[\""Keyboard\"", \""Charger\""]",3643.26,{},72296,1,"""South America""" +2023-12-23,48620,8756,"[\""Laptop\"", \""Wireless Mouse\""]",3256.5,"{\""promo\"": \""23%\""}",94547,0,"""North America""" +2024-07-14,48621,4160,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1822.2,{},103009,0,"""North America""" +2024-04-04,48622,1006,"[\""Headphones\"", \""Phone\""]",81.06,{},252361,0,"""South America""" +2024-12-16,48623,1176,"[\""Tablet\"", \""Monitor\""]",2122.28,{},57314,1,"""Asia""" +2023-07-07,48624,4989,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4302.29,"{\"": \""12%\""}",34615,0,"""Asia""" +2023-11-21,48625,7434,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1062.26,"{\"": \""12%\""}",108700,0,"""Europe""" +2024-09-23,48626,8783,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3862.39,{},207596,1,"""Asia""" +2024-09-29,48627,7148,"[\""Laptop\""]",62.18,"{\"": \""25%\""}",150334,1,"""North America""" +2024-09-25,48628,3568,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1310.53,{},8647,0,"""Europe""" +2023-06-28,48629,9589,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2033.59,"{\""seasonal\"": \""26%\""}",169252,1,"""Africa""" +2024-04-17,48630,553,"[\""Wireless Mouse\""]",2708.15,"{\""promo\"": \""27%\""}",116809,1,"""North America""" +2023-10-12,48631,8601,"[\""Keyboard\"", \""Laptop\""]",1670.81,{},77043,0,"""Europe""" +2023-02-10,48632,5756,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4069.77,{},299619,1,"""Africa""" +2024-12-31,48633,843,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3216.42,{},291784,1,"""Europe""" +2023-06-14,48634,763,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2152.37,"{\""promo\"": \""23%\""}",120090,0,"""North America""" +2024-04-10,48635,8971,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2482.12,"{\""promo\"": \""16%\""}",163208,0,"""North America""" +2023-11-22,48636,7215,"[\""Monitor\"", \""Wireless Mouse\""]",2896.22,"{\""promo\"": \""14%\""}",182181,0,"""Europe""" +2023-07-22,48637,9638,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4673.64,"{\""loyalty\"": \""15%\""}",32044,1,"""North America""" +2024-11-01,48638,7387,"[\""Monitor\"", \""Charger\""]",1019.71,{},223619,1,"""South America""" +2023-01-28,48639,4407,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3387.89,"{\""seasonal\"": \""12%\""}",139344,0,"""North America""" +2023-05-05,48640,3339,"[\""Phone\""]",2766.57,{},209545,0,"""South America""" +2023-01-06,48641,3666,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2161.5,{},34011,0,"""Europe""" +2024-12-31,48642,1134,"[\""Charger\""]",1755.72,{},242705,1,"""Europe""" +2024-01-19,48643,6781,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",468.59,{},152703,0,"""South America""" +2024-04-29,48644,4502,"[\""Monitor\"", \""Headphones\""]",3622.71,"{\"": \""22%\""}",120744,0,"""Asia""" +2024-10-27,48645,3352,"[\""Monitor\""]",2393.82,"{\""seasonal\"": \""5%\""}",185047,1,"""Europe""" +2024-08-25,48646,1601,"[\""Phone\"", \""Tablet\""]",3117.24,"{\"": \""28%\""}",37959,0,"""South America""" +2024-09-03,48647,8056,"[\""Keyboard\"", \""Charger\""]",3368.14,"{\""loyalty\"": \""5%\""}",156519,0,"""Africa""" +2024-05-18,48648,9996,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1607.28,{},133347,1,"""South America""" +2023-08-31,48649,7654,"[\""Tablet\"", \""Keyboard\""]",1890.03,{},123158,0,"""Europe""" +2024-11-26,48650,2587,"[\""Charger\""]",4082.37,{},258227,0,"""Africa""" +2023-09-20,48651,2319,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3852.54,"{\""loyalty\"": \""16%\""}",166773,1,"""North America""" +2024-10-16,48652,4655,"[\""Monitor\""]",2666.82,{},82589,0,"""Europe""" +2024-07-04,48653,309,"[\""Tablet\"", \""Charger\""]",4624.32,{},248545,1,"""Europe""" +2024-05-09,48654,357,"[\""Headphones\"", \""Charger\""]",2323.09,"{\""loyalty\"": \""7%\""}",254893,1,"""South America""" +2024-11-01,48655,1086,"[\""Charger\""]",1795.56,"{\""promo\"": \""22%\""}",73993,0,"""Europe""" +2024-07-03,48656,3795,"[\""Wireless Mouse\"", \""Monitor\""]",3306.99,{},131650,0,"""South America""" +2024-08-26,48657,1021,"[\""Monitor\"", \""Laptop\""]",3646.49,"{\""seasonal\"": \""22%\""}",256632,0,"""North America""" +2023-12-16,48658,4613,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4387.36,{},114272,1,"""Europe""" +2023-03-16,48659,2229,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2923.55,"{\"": \""9%\""}",212527,0,"""Africa""" +2023-04-26,48660,4447,"[\""Tablet\"", \""Charger\""]",2145.99,{},142696,1,"""South America""" +2023-07-17,48661,1828,"[\""Monitor\"", \""Phone\""]",1185.33,"{\""seasonal\"": \""10%\""}",162662,0,"""North America""" +2024-02-27,48662,7630,"[\""Headphones\""]",3056.5,"{\""loyalty\"": \""11%\""}",152029,0,"""Asia""" +2023-07-11,48663,752,"[\""Keyboard\""]",3930.09,{},67425,0,"""Africa""" +2024-08-02,48664,7194,"[\""Laptop\""]",1315.23,{},156785,0,"""South America""" +2023-06-06,48665,2524,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1749.74,"{\"": \""6%\""}",125643,0,"""Europe""" +2024-12-01,48666,5786,"[\""Headphones\""]",3866.45,"{\""promo\"": \""18%\""}",67569,0,"""South America""" +2024-07-26,48667,9832,"[\""Charger\""]",1843.56,{},45073,0,"""Asia""" +2024-04-28,48668,4774,"[\""Monitor\""]",931.62,{},183480,0,"""South America""" +2023-01-16,48669,8056,"[\""Wireless Mouse\""]",2056.82,{},121710,1,"""South America""" +2024-11-20,48670,7656,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",506.76,{},269752,1,"""Asia""" +2023-08-07,48671,9167,"[\""Charger\"", \""Keyboard\""]",3375.04,{},17792,0,"""Europe""" +2024-12-12,48672,8445,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",547.15,{},162561,0,"""North America""" +2023-09-07,48673,9170,"[\""Wireless Mouse\""]",3855.03,"{\""seasonal\"": \""23%\""}",40437,1,"""Africa""" +2024-01-19,48674,6946,"[\""Headphones\"", \""Tablet\""]",4402.64,"{\""promo\"": \""22%\""}",139031,0,"""Africa""" +2024-01-01,48675,6040,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4499.37,"{\""promo\"": \""15%\""}",119356,0,"""Africa""" +2023-10-23,48676,3855,"[\""Wireless Mouse\"", \""Charger\""]",987.78,"{\"": \""25%\""}",15947,1,"""Africa""" +2023-01-10,48677,6779,"[\""Charger\""]",4025.84,{},279824,0,"""Europe""" +2023-03-13,48678,4770,"[\""Laptop\"", \""Wireless Mouse\""]",340.09,{},291297,0,"""North America""" +2023-07-03,48679,5232,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3860.52,{},199289,0,"""South America""" +2024-10-11,48680,4637,"[\""Wireless Mouse\"", \""Headphones\""]",2715.39,"{\"": \""15%\""}",286029,0,"""Africa""" +2024-11-10,48681,4807,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4060.61,"{\""promo\"": \""7%\""}",118595,0,"""Asia""" +2024-10-12,48682,9306,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",276.23,{},85358,0,"""North America""" +2023-05-20,48683,7665,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",428.9,"{\""loyalty\"": \""19%\""}",272673,0,"""South America""" +2024-06-02,48684,4794,"[\""Tablet\"", \""Keyboard\""]",2638.04,{},255663,1,"""Europe""" +2024-07-06,48685,6649,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2463.06,"{\""promo\"": \""9%\""}",283816,0,"""Asia""" +2023-09-16,48686,8407,"[\""Wireless Mouse\"", \""Keyboard\""]",1623.31,"{\"": \""8%\""}",272659,0,"""Asia""" +2023-05-30,48687,4700,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1140.59,{},27537,1,"""Asia""" +2024-02-02,48688,9174,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2916.53,{},286204,0,"""North America""" +2024-12-23,48689,853,"[\""Keyboard\""]",2616.39,{},105852,1,"""Africa""" +2024-12-07,48690,9453,"[\""Tablet\"", \""Laptop\""]",348.71,"{\"": \""25%\""}",136330,1,"""South America""" +2024-05-26,48691,790,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",607.79,{},147192,0,"""Asia""" +2023-06-30,48692,7963,"[\""Charger\""]",817.89,{},113598,0,"""Africa""" +2023-04-21,48693,7521,"[\""Keyboard\"", \""Monitor\""]",2252.15,"{\"": \""25%\""}",138332,1,"""Asia""" +2023-11-15,48694,3062,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",950.84,"{\"": \""13%\""}",17292,0,"""South America""" +2023-04-06,48695,3708,"[\""Keyboard\""]",2124.33,{},31995,0,"""Africa""" +2024-09-28,48696,2763,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2476.57,{},114753,1,"""South America""" +2024-02-27,48697,5530,"[\""Keyboard\""]",1331.49,{},253229,1,"""Asia""" +2023-02-14,48698,2563,"[\""Wireless Mouse\""]",4940.28,"{\"": \""6%\""}",147806,1,"""South America""" +2023-07-07,48699,426,"[\""Headphones\"", \""Laptop\""]",1136.99,{},232399,0,"""North America""" +2024-08-20,48700,9526,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1978.93,"{\""promo\"": \""23%\""}",35642,1,"""North America""" +2023-03-16,48701,2048,"[\""Monitor\""]",855.06,"{\""loyalty\"": \""24%\""}",261957,0,"""North America""" +2024-07-04,48702,1600,"[\""Phone\""]",1003.27,{},73751,1,"""North America""" +2024-08-30,48703,7744,"[\""Headphones\""]",4938.29,"{\""seasonal\"": \""28%\""}",128587,1,"""North America""" +2023-02-26,48704,7061,"[\""Headphones\"", \""Tablet\""]",2769.83,"{\""promo\"": \""7%\""}",132322,1,"""Europe""" +2024-05-21,48705,1840,"[\""Headphones\""]",3218.55,{},197285,0,"""North America""" +2024-12-11,48706,2265,"[\""Phone\"", \""Charger\"", \""Monitor\""]",672.07,{},82518,1,"""Africa""" +2024-02-03,48707,6457,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2159.57,"{\"": \""23%\""}",69904,1,"""North America""" +2023-05-13,48708,7475,"[\""Tablet\"", \""Charger\""]",241.49,"{\""seasonal\"": \""16%\""}",242191,1,"""Asia""" +2024-01-19,48709,7351,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",100.51,{},293909,0,"""South America""" +2024-10-04,48710,7092,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",641.97,{},38818,1,"""Asia""" +2024-10-12,48711,9827,"[\""Keyboard\""]",1240.1,"{\""seasonal\"": \""12%\""}",213753,1,"""South America""" +2024-08-23,48712,4987,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1173.19,"{\""seasonal\"": \""9%\""}",206027,0,"""South America""" +2024-04-06,48713,2472,"[\""Tablet\""]",4194.4,"{\""loyalty\"": \""10%\""}",148689,1,"""Asia""" +2023-01-11,48714,6024,"[\""Tablet\""]",4118.33,"{\""seasonal\"": \""22%\""}",162511,1,"""Europe""" +2023-09-12,48715,9877,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2416.04,"{\""loyalty\"": \""16%\""}",182170,1,"""South America""" +2023-05-16,48716,742,"[\""Laptop\"", \""Monitor\""]",522.91,"{\""loyalty\"": \""26%\""}",60439,0,"""Europe""" +2023-01-14,48717,4102,"[\""Keyboard\""]",3025.39,"{\""seasonal\"": \""12%\""}",42710,1,"""Europe""" +2023-11-19,48718,4567,"[\""Charger\""]",950.69,{},182883,0,"""South America""" +2023-04-12,48719,934,"[\""Monitor\"", \""Keyboard\""]",1703.15,{},290327,0,"""Europe""" +2024-11-21,48720,490,"[\""Phone\"", \""Charger\""]",1426.62,{},289158,0,"""Asia""" +2023-10-30,48721,8047,"[\""Monitor\"", \""Charger\""]",3072.55,"{\"": \""12%\""}",19696,1,"""North America""" +2024-05-12,48722,4200,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3695.52,{},13031,1,"""North America""" +2024-05-07,48723,181,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3445.64,{},240453,1,"""Asia""" +2024-05-27,48724,2822,"[\""Phone\""]",840.99,{},228199,1,"""South America""" +2023-11-06,48725,9525,"[\""Laptop\""]",4197.85,{},106056,1,"""Europe""" +2023-01-02,48726,2599,"[\""Headphones\"", \""Laptop\""]",3397.98,{},122055,0,"""Europe""" +2024-10-04,48727,2376,"[\""Laptop\""]",3217.73,"{\""loyalty\"": \""23%\""}",212835,1,"""Europe""" +2023-02-13,48728,5466,"[\""Monitor\"", \""Tablet\""]",4580.42,{},202701,1,"""Europe""" +2024-05-30,48729,7803,"[\""Laptop\""]",705.2,"{\""loyalty\"": \""27%\""}",254871,1,"""Africa""" +2024-06-24,48730,9917,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1876.03,{},214722,0,"""Africa""" +2024-08-10,48731,1628,"[\""Monitor\""]",1558.1,{},74091,1,"""Africa""" +2023-07-13,48732,7131,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",628.33,"{\""promo\"": \""24%\""}",98706,0,"""Europe""" +2023-01-22,48733,4712,"[\""Phone\"", \""Tablet\""]",3380.62,"{\""promo\"": \""22%\""}",56996,1,"""Asia""" +2023-05-31,48734,8399,"[\""Phone\""]",1440.99,"{\""loyalty\"": \""12%\""}",209273,0,"""South America""" +2023-10-22,48735,7552,"[\""Wireless Mouse\"", \""Keyboard\""]",4766.34,"{\""promo\"": \""8%\""}",265422,1,"""Africa""" +2024-02-05,48736,1228,"[\""Wireless Mouse\""]",4637.48,"{\""loyalty\"": \""8%\""}",149128,0,"""Africa""" +2024-12-20,48737,2121,"[\""Headphones\"", \""Laptop\""]",1048.73,{},144343,0,"""Africa""" +2023-09-13,48738,6107,"[\""Headphones\""]",1245.99,{},177776,0,"""Asia""" +2024-03-25,48739,235,"[\""Headphones\"", \""Keyboard\""]",3599.12,"{\""loyalty\"": \""28%\""}",215506,1,"""Asia""" +2024-04-10,48740,3917,"[\""Tablet\"", \""Headphones\""]",2908.31,{},83668,0,"""Europe""" +2024-12-22,48741,9995,"[\""Keyboard\"", \""Monitor\""]",4472.02,{},230971,0,"""Asia""" +2024-12-15,48742,8676,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4901.1,{},242121,1,"""North America""" +2023-12-18,48743,6500,"[\""Headphones\"", \""Wireless Mouse\""]",1239.73,"{\""seasonal\"": \""12%\""}",291075,1,"""Asia""" +2024-11-06,48744,620,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2664.49,{},134053,1,"""South America""" +2023-06-19,48745,7294,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2322.02,{},215454,1,"""Europe""" +2024-02-18,48746,7906,"[\""Charger\"", \""Headphones\""]",3184.62,{},190597,0,"""Asia""" +2024-09-19,48747,6621,"[\""Charger\""]",1969.41,{},58933,0,"""South America""" +2023-11-16,48748,5348,"[\""Keyboard\""]",4837.86,{},47122,1,"""Europe""" +2023-05-26,48749,7078,"[\""Monitor\""]",4217.38,{},93366,0,"""North America""" +2024-11-16,48750,8996,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3951.07,{},210493,1,"""South America""" +2023-07-02,48751,1058,"[\""Laptop\""]",4601.29,{},219623,1,"""South America""" +2023-07-01,48752,5161,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3759.5,"{\""loyalty\"": \""25%\""}",155118,0,"""Europe""" +2023-08-21,48753,7224,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3364.5,"{\"": \""7%\""}",158334,1,"""Europe""" +2024-10-17,48754,8561,"[\""Wireless Mouse\"", \""Monitor\""]",1348.29,"{\"": \""11%\""}",292922,0,"""Africa""" +2024-03-13,48755,3080,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2292.26,{},106175,0,"""Africa""" +2024-04-26,48756,1501,"[\""Charger\""]",1801.69,{},268668,0,"""North America""" +2023-01-13,48757,9399,"[\""Tablet\"", \""Laptop\""]",3257.41,{},61307,1,"""Asia""" +2024-05-27,48758,1310,"[\""Charger\""]",811.26,"{\""loyalty\"": \""24%\""}",148418,0,"""South America""" +2023-08-09,48759,6826,"[\""Keyboard\""]",2871.03,"{\""seasonal\"": \""21%\""}",65510,0,"""Africa""" +2023-10-30,48760,3267,"[\""Monitor\""]",794.04,"{\"": \""21%\""}",141518,1,"""North America""" +2024-01-20,48761,4110,"[\""Monitor\""]",360.34,{},20032,0,"""Africa""" +2023-07-18,48762,5438,"[\""Keyboard\""]",2413.87,"{\""seasonal\"": \""27%\""}",75147,0,"""South America""" +2024-12-10,48763,3120,"[\""Tablet\"", \""Keyboard\""]",3074.12,{},224453,1,"""South America""" +2023-01-10,48764,1170,"[\""Phone\"", \""Charger\""]",2728.48,{},6143,0,"""South America""" +2024-11-09,48765,7658,"[\""Laptop\""]",358.52,"{\""promo\"": \""27%\""}",293806,0,"""North America""" +2023-12-08,48766,8749,"[\""Phone\"", \""Monitor\"", \""Charger\""]",340.17,"{\"": \""24%\""}",259494,0,"""Europe""" +2024-09-05,48767,4563,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4300.41,{},16635,0,"""Europe""" +2023-05-14,48768,8520,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4557.47,{},12369,1,"""Asia""" +2023-02-05,48769,3511,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1766.35,{},241267,1,"""Asia""" +2024-08-25,48770,7363,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3960.86,{},18910,1,"""North America""" +2023-04-29,48771,4160,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",726.06,"{\""promo\"": \""6%\""}",27799,1,"""North America""" +2023-11-01,48772,5733,"[\""Monitor\"", \""Phone\""]",253.02,{},99619,1,"""South America""" +2024-05-20,48773,3016,"[\""Monitor\"", \""Laptop\""]",1871.68,"{\"": \""12%\""}",66684,0,"""North America""" +2023-07-31,48774,3024,"[\""Headphones\""]",1195.6,{},52930,0,"""North America""" +2024-08-31,48775,8743,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1137.62,{},28288,0,"""Asia""" +2024-09-22,48776,4533,"[\""Phone\"", \""Charger\""]",2818.62,"{\"": \""27%\""}",158987,0,"""South America""" +2023-04-21,48777,2578,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3305.03,{},58364,0,"""Africa""" +2023-09-12,48778,6170,"[\""Monitor\""]",4337.7,{},164088,0,"""North America""" +2023-08-03,48779,6809,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",918.08,"{\""seasonal\"": \""30%\""}",30083,0,"""South America""" +2024-03-20,48780,6256,"[\""Wireless Mouse\"", \""Laptop\""]",3643.8,"{\""seasonal\"": \""11%\""}",249265,0,"""South America""" +2023-11-05,48781,4322,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3591.62,{},250840,1,"""South America""" +2024-10-22,48782,409,"[\""Tablet\""]",4170.56,{},147250,0,"""Europe""" +2024-07-09,48783,7730,"[\""Phone\""]",3559.8,"{\""seasonal\"": \""24%\""}",3864,1,"""Asia""" +2023-03-19,48784,1799,"[\""Phone\""]",2687.52,{},114538,0,"""Europe""" +2023-01-10,48785,760,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3605.21,"{\""loyalty\"": \""6%\""}",204139,0,"""Africa""" +2023-09-03,48786,4806,"[\""Keyboard\"", \""Headphones\""]",699.72,{},258189,1,"""Africa""" +2024-01-02,48787,1469,"[\""Phone\""]",4166.56,{},151693,0,"""South America""" +2023-04-09,48788,2535,"[\""Charger\"", \""Monitor\""]",2245.25,"{\""loyalty\"": \""15%\""}",92492,1,"""Europe""" +2024-04-07,48789,3903,"[\""Keyboard\""]",4844.19,"{\""loyalty\"": \""16%\""}",77509,0,"""Asia""" +2024-10-16,48790,2779,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",447.89,{},94079,0,"""Asia""" +2024-02-03,48791,6379,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1324.17,{},285592,1,"""South America""" +2023-06-26,48792,9506,"[\""Charger\"", \""Phone\""]",755.19,"{\""seasonal\"": \""6%\""}",290259,0,"""Africa""" +2024-07-20,48793,6596,"[\""Headphones\""]",143.16,"{\""seasonal\"": \""11%\""}",99599,1,"""Europe""" +2023-11-07,48794,3302,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",142.79,{},118522,0,"""Asia""" +2024-02-08,48795,252,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4303.98,"{\""promo\"": \""19%\""}",18219,0,"""Asia""" +2024-06-11,48796,1883,"[\""Laptop\"", \""Phone\""]",3061.44,"{\""promo\"": \""20%\""}",161736,0,"""Africa""" +2024-12-19,48797,5280,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",885.87,"{\""loyalty\"": \""29%\""}",1771,0,"""North America""" +2024-04-27,48798,7481,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2079.85,{},281536,1,"""Asia""" +2024-12-16,48799,4997,"[\""Wireless Mouse\"", \""Charger\""]",700.71,"{\""seasonal\"": \""15%\""}",246412,0,"""Africa""" +2024-08-12,48800,5505,"[\""Keyboard\""]",703.82,"{\""promo\"": \""18%\""}",46446,1,"""North America""" +2024-05-17,48801,2663,"[\""Headphones\"", \""Phone\""]",2112.89,"{\"": \""17%\""}",214364,1,"""Africa""" +2024-07-14,48802,1350,"[\""Charger\""]",4213.03,"{\""seasonal\"": \""28%\""}",273725,0,"""South America""" +2023-08-10,48803,4875,"[\""Phone\"", \""Keyboard\""]",3735.56,"{\""seasonal\"": \""29%\""}",229682,0,"""South America""" +2024-09-09,48804,6474,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3142.0,"{\""promo\"": \""5%\""}",140609,0,"""Asia""" +2023-08-14,48805,6171,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2242.88,"{\""seasonal\"": \""10%\""}",37202,0,"""Europe""" +2023-11-18,48806,8026,"[\""Charger\"", \""Headphones\""]",177.11,{},96523,0,"""Africa""" +2024-10-06,48807,2159,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4085.51,{},216161,0,"""Africa""" +2024-11-16,48808,2523,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3518.66,{},132249,0,"""South America""" +2023-01-25,48809,7752,"[\""Headphones\""]",4689.1,{},24927,0,"""Europe""" +2024-03-08,48810,7935,"[\""Tablet\""]",1442.39,{},15477,1,"""Africa""" +2023-01-09,48811,1062,"[\""Headphones\""]",875.01,"{\""loyalty\"": \""14%\""}",215360,1,"""South America""" +2024-05-30,48812,648,"[\""Phone\""]",3632.98,{},218107,0,"""South America""" +2024-12-17,48813,4815,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4641.07,{},157414,1,"""South America""" +2023-06-09,48814,36,"[\""Monitor\""]",3482.15,"{\""seasonal\"": \""11%\""}",200826,1,"""Europe""" +2023-08-17,48815,9155,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4948.91,"{\"": \""26%\""}",171322,1,"""North America""" +2024-11-25,48816,4740,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2351.9,{},184086,1,"""Africa""" +2023-03-30,48817,8894,"[\""Headphones\"", \""Phone\""]",4040.8,"{\""promo\"": \""6%\""}",52055,1,"""Asia""" +2023-07-31,48818,2180,"[\""Monitor\"", \""Laptop\""]",2336.44,{},42116,0,"""Africa""" +2023-12-03,48819,5547,"[\""Headphones\"", \""Wireless Mouse\""]",1295.45,{},191965,1,"""South America""" +2024-11-01,48820,1747,"[\""Headphones\"", \""Charger\""]",3380.07,{},63255,0,"""Africa""" +2024-09-01,48821,8297,"[\""Charger\"", \""Monitor\""]",3671.08,"{\""promo\"": \""7%\""}",160160,1,"""North America""" +2023-08-03,48822,6374,"[\""Monitor\"", \""Tablet\""]",3854.75,{},46892,0,"""South America""" +2024-02-10,48823,550,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4912.8,{},55745,1,"""Asia""" +2023-05-18,48824,2722,"[\""Charger\""]",1743.88,{},96100,1,"""South America""" +2023-02-18,48825,8880,"[\""Laptop\"", \""Headphones\""]",2471.98,"{\""seasonal\"": \""23%\""}",233748,1,"""Europe""" +2024-05-23,48826,1586,"[\""Tablet\""]",887.02,"{\""loyalty\"": \""14%\""}",117516,0,"""Asia""" +2024-09-23,48827,7284,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1680.32,"{\""seasonal\"": \""24%\""}",255800,1,"""Asia""" +2023-03-15,48828,5003,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4622.26,"{\""promo\"": \""8%\""}",208955,0,"""Africa""" +2023-12-06,48829,2748,"[\""Laptop\""]",3055.04,"{\"": \""25%\""}",118599,0,"""Europe""" +2023-03-03,48830,2382,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3470.46,{},6460,1,"""Asia""" +2024-02-11,48831,580,"[\""Wireless Mouse\""]",2776.5,"{\"": \""19%\""}",206186,1,"""North America""" +2023-09-24,48832,5009,"[\""Tablet\""]",3807.03,"{\""seasonal\"": \""28%\""}",222205,1,"""Africa""" +2023-09-17,48833,6781,"[\""Tablet\""]",4183.86,"{\"": \""12%\""}",238745,1,"""North America""" +2024-07-26,48834,7026,"[\""Wireless Mouse\""]",2886.7,{},101722,1,"""Europe""" +2023-01-29,48835,7231,"[\""Tablet\"", \""Phone\""]",4752.88,"{\""seasonal\"": \""28%\""}",6563,0,"""South America""" +2024-01-16,48836,3305,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2058.12,"{\""seasonal\"": \""29%\""}",154605,0,"""Asia""" +2024-12-21,48837,3855,"[\""Headphones\"", \""Monitor\""]",3204.28,"{\"": \""14%\""}",96855,1,"""South America""" +2024-05-16,48838,6426,"[\""Phone\"", \""Wireless Mouse\""]",4765.37,"{\""seasonal\"": \""25%\""}",298259,0,"""Asia""" +2024-12-15,48839,1029,"[\""Laptop\""]",4697.77,"{\""loyalty\"": \""19%\""}",30977,1,"""Asia""" +2023-07-05,48840,2612,"[\""Headphones\"", \""Tablet\""]",2157.63,{},93178,1,"""South America""" +2024-10-31,48841,2011,"[\""Headphones\""]",921.88,"{\""promo\"": \""12%\""}",136528,1,"""Africa""" +2024-02-29,48842,7118,"[\""Monitor\"", \""Keyboard\""]",2136.32,"{\""seasonal\"": \""30%\""}",76560,1,"""Africa""" +2023-09-30,48843,3866,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2480.29,"{\""promo\"": \""29%\""}",74118,0,"""South America""" +2024-06-20,48844,8877,"[\""Charger\""]",1944.55,{},268515,0,"""North America""" +2023-11-09,48845,2791,"[\""Charger\""]",2163.77,{},123988,0,"""Africa""" +2023-11-13,48846,1395,"[\""Laptop\""]",3412.44,"{\""loyalty\"": \""21%\""}",262500,1,"""Asia""" +2024-11-20,48847,3904,"[\""Monitor\""]",2110.56,{},206205,1,"""Africa""" +2024-11-28,48848,3075,"[\""Headphones\"", \""Wireless Mouse\""]",2486.59,"{\"": \""5%\""}",133257,1,"""South America""" +2024-02-22,48849,2295,"[\""Laptop\"", \""Charger\""]",1454.58,"{\""loyalty\"": \""5%\""}",249091,1,"""North America""" +2024-05-17,48850,1669,"[\""Headphones\"", \""Wireless Mouse\""]",1656.58,{},111411,1,"""Asia""" +2023-09-03,48851,8759,"[\""Tablet\""]",140.26,"{\""promo\"": \""22%\""}",152320,0,"""South America""" +2023-04-16,48852,6189,"[\""Tablet\""]",855.09,"{\""seasonal\"": \""25%\""}",85098,1,"""Africa""" +2023-11-09,48853,3491,"[\""Wireless Mouse\"", \""Tablet\""]",4231.79,{},221884,1,"""South America""" +2023-04-08,48854,493,"[\""Phone\"", \""Tablet\""]",1506.35,{},54081,0,"""Europe""" +2024-12-30,48855,9891,"[\""Wireless Mouse\""]",4191.45,{},149690,0,"""Africa""" +2024-03-17,48856,2623,"[\""Laptop\""]",2894.99,"{\""promo\"": \""6%\""}",65812,0,"""North America""" +2023-04-24,48857,3600,"[\""Monitor\"", \""Laptop\""]",4154.65,{},262603,0,"""Asia""" +2024-05-29,48858,5074,"[\""Wireless Mouse\"", \""Headphones\""]",735.02,{},200311,1,"""Europe""" +2024-12-14,48859,6253,"[\""Monitor\"", \""Phone\""]",476.94,{},280978,1,"""South America""" +2024-09-20,48860,7860,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2173.42,{},151393,1,"""Africa""" +2024-12-26,48861,6060,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3772.1,{},131074,1,"""Europe""" +2024-09-06,48862,3928,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3994.27,"{\"": \""5%\""}",77968,0,"""Europe""" +2023-12-20,48863,9999,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",531.18,"{\"": \""6%\""}",25527,1,"""North America""" +2024-07-22,48864,4733,"[\""Keyboard\""]",1373.99,{},266380,1,"""North America""" +2023-03-11,48865,4917,"[\""Keyboard\""]",1194.5,"{\""loyalty\"": \""17%\""}",53665,1,"""North America""" +2023-12-17,48866,9127,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4564.28,"{\"": \""24%\""}",4652,1,"""Asia""" +2023-05-23,48867,9442,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",693.15,"{\""promo\"": \""18%\""}",8311,1,"""Europe""" +2024-12-29,48868,9841,"[\""Wireless Mouse\"", \""Headphones\""]",731.8,{},228832,0,"""Africa""" +2024-12-19,48869,3131,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",787.51,"{\""seasonal\"": \""7%\""}",132828,0,"""Europe""" +2023-12-19,48870,1675,"[\""Keyboard\"", \""Headphones\""]",2222.86,{},240733,0,"""Africa""" +2023-03-15,48871,4478,"[\""Laptop\"", \""Tablet\""]",1761.75,"{\""loyalty\"": \""24%\""}",236168,0,"""Europe""" +2023-08-05,48872,5792,"[\""Charger\"", \""Wireless Mouse\""]",4061.61,{},241837,0,"""North America""" +2023-12-24,48873,7485,"[\""Laptop\"", \""Wireless Mouse\""]",2453.0,{},206669,1,"""Asia""" +2023-11-03,48874,5135,"[\""Laptop\"", \""Monitor\""]",2468.59,{},68554,1,"""Asia""" +2023-05-23,48875,2697,"[\""Headphones\""]",422.96,"{\"": \""12%\""}",294506,1,"""Asia""" +2024-06-16,48876,6654,"[\""Keyboard\"", \""Monitor\""]",2968.1,{},275193,0,"""Europe""" +2023-08-13,48877,9392,"[\""Charger\""]",3429.21,"{\"": \""19%\""}",216756,1,"""Asia""" +2024-11-20,48878,3383,"[\""Charger\""]",954.96,"{\""seasonal\"": \""20%\""}",265721,1,"""Europe""" +2024-03-20,48879,4391,"[\""Charger\"", \""Laptop\""]",3590.85,"{\""promo\"": \""28%\""}",145512,0,"""Africa""" +2024-08-21,48880,9603,"[\""Keyboard\"", \""Wireless Mouse\""]",2588.58,"{\"": \""7%\""}",102992,1,"""Asia""" +2024-04-27,48881,7952,"[\""Keyboard\""]",3263.71,{},161774,1,"""South America""" +2024-09-22,48882,709,"[\""Laptop\""]",2220.03,{},185318,1,"""Europe""" +2024-12-08,48883,361,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2964.38,{},174148,1,"""Europe""" +2023-12-10,48884,1739,"[\""Headphones\""]",4023.55,"{\"": \""16%\""}",241375,1,"""Asia""" +2024-12-29,48885,5632,"[\""Charger\""]",1871.12,"{\""seasonal\"": \""21%\""}",194580,0,"""North America""" +2024-10-28,48886,2518,"[\""Tablet\"", \""Headphones\""]",446.7,{},93544,1,"""North America""" +2023-12-03,48887,6235,"[\""Charger\""]",2273.04,"{\""loyalty\"": \""8%\""}",12891,0,"""Europe""" +2024-09-21,48888,6878,"[\""Phone\"", \""Keyboard\""]",4808.37,"{\""loyalty\"": \""6%\""}",72921,0,"""Africa""" +2023-08-14,48889,9757,"[\""Monitor\"", \""Phone\""]",4269.52,{},236181,1,"""Europe""" +2024-02-04,48890,7540,"[\""Monitor\""]",2665.91,{},26187,0,"""Africa""" +2023-03-30,48891,8149,"[\""Monitor\"", \""Charger\""]",4436.82,"{\"": \""29%\""}",151178,1,"""South America""" +2023-01-01,48892,8787,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1435.2,{},86753,1,"""Asia""" +2023-07-31,48893,7845,"[\""Headphones\""]",2512.15,"{\"": \""18%\""}",260682,0,"""Europe""" +2023-03-15,48894,7220,"[\""Monitor\"", \""Keyboard\""]",4125.92,"{\""promo\"": \""7%\""}",11388,1,"""Asia""" +2024-06-22,48895,3796,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",973.82,{},1341,1,"""Asia""" +2024-01-19,48896,3182,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4882.57,{},145120,1,"""South America""" +2024-02-28,48897,329,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2930.47,{},293324,0,"""North America""" +2023-07-30,48898,749,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",737.19,"{\"": \""26%\""}",289605,1,"""Europe""" +2023-08-14,48899,4650,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2068.58,"{\""seasonal\"": \""16%\""}",288435,1,"""South America""" +2024-08-13,48900,8106,"[\""Wireless Mouse\""]",3411.91,"{\""promo\"": \""13%\""}",194242,1,"""South America""" +2023-09-23,48901,7217,"[\""Keyboard\""]",4725.27,"{\""loyalty\"": \""24%\""}",102985,1,"""Europe""" +2023-08-20,48902,8305,"[\""Charger\""]",4015.57,{},134414,1,"""Asia""" +2024-03-07,48903,8868,"[\""Headphones\"", \""Wireless Mouse\""]",252.28,{},260562,1,"""North America""" +2023-12-14,48904,9574,"[\""Laptop\""]",1378.88,{},66868,0,"""Europe""" +2023-04-09,48905,7897,"[\""Headphones\""]",1781.03,"{\"": \""10%\""}",154422,0,"""Africa""" +2023-09-30,48906,5059,"[\""Charger\"", \""Headphones\""]",1702.61,{},236588,0,"""Europe""" +2024-04-19,48907,9019,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3503.04,{},269602,1,"""Africa""" +2024-04-15,48908,5954,"[\""Keyboard\""]",288.48,{},8071,1,"""South America""" +2023-09-24,48909,3303,"[\""Tablet\"", \""Charger\""]",3132.09,{},269866,1,"""Asia""" +2024-10-30,48910,8424,"[\""Charger\""]",1090.05,{},220485,1,"""Africa""" +2023-02-04,48911,4274,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2734.04,"{\""seasonal\"": \""28%\""}",151232,1,"""Africa""" +2023-11-08,48912,6934,"[\""Tablet\""]",4337.37,"{\"": \""8%\""}",253244,1,"""North America""" +2023-06-24,48913,4036,"[\""Wireless Mouse\""]",2686.1,{},260059,1,"""South America""" +2023-08-23,48914,8202,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1753.29,{},251141,0,"""North America""" +2023-11-27,48915,9234,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2007.16,{},131622,0,"""North America""" +2023-06-30,48916,6862,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3485.92,{},53155,0,"""Europe""" +2024-03-19,48917,6393,"[\""Wireless Mouse\"", \""Charger\""]",1824.41,{},155880,1,"""Europe""" +2023-11-13,48918,5148,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2818.06,"{\"": \""22%\""}",100862,1,"""North America""" +2023-01-04,48919,2558,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2699.5,"{\"": \""13%\""}",5380,1,"""South America""" +2023-03-10,48920,2121,"[\""Wireless Mouse\"", \""Keyboard\""]",4617.39,"{\""loyalty\"": \""23%\""}",148854,1,"""Asia""" +2024-10-27,48921,114,"[\""Laptop\"", \""Monitor\""]",4708.67,"{\"": \""8%\""}",65650,0,"""Asia""" +2023-09-24,48922,3647,"[\""Laptop\""]",2168.22,{},177309,0,"""Africa""" +2024-11-03,48923,6093,"[\""Tablet\"", \""Monitor\""]",1509.89,{},77335,1,"""South America""" +2024-07-07,48924,7509,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",878.11,"{\""loyalty\"": \""16%\""}",18645,1,"""Europe""" +2023-12-15,48925,7985,"[\""Tablet\""]",1561.13,"{\""seasonal\"": \""6%\""}",237560,1,"""North America""" +2023-11-03,48926,9406,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",62.22,{},218336,1,"""North America""" +2023-01-08,48927,2126,"[\""Monitor\"", \""Laptop\""]",1056.02,"{\""seasonal\"": \""17%\""}",3891,1,"""Asia""" +2023-04-14,48928,2906,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3626.66,{},255835,0,"""South America""" +2023-10-15,48929,1642,"[\""Headphones\"", \""Phone\""]",1611.65,{},32636,1,"""North America""" +2024-11-04,48930,3546,"[\""Monitor\""]",1290.55,"{\""promo\"": \""27%\""}",67135,1,"""North America""" +2023-05-21,48931,6560,"[\""Keyboard\"", \""Headphones\""]",1294.61,"{\""loyalty\"": \""23%\""}",55529,0,"""North America""" +2023-09-11,48932,9557,"[\""Phone\""]",494.56,"{\""promo\"": \""25%\""}",233850,1,"""South America""" +2023-04-04,48933,8284,"[\""Wireless Mouse\"", \""Tablet\""]",874.99,{},31072,1,"""Asia""" +2024-05-05,48934,7445,"[\""Headphones\"", \""Monitor\""]",4966.66,{},47541,1,"""Europe""" +2023-03-13,48935,5426,"[\""Wireless Mouse\""]",3396.09,{},134769,0,"""South America""" +2024-03-17,48936,6472,"[\""Phone\"", \""Charger\""]",3691.01,"{\""loyalty\"": \""19%\""}",217556,1,"""Asia""" +2024-03-09,48937,4638,"[\""Keyboard\"", \""Charger\""]",506.87,"{\"": \""30%\""}",55047,0,"""South America""" +2024-08-23,48938,8168,"[\""Laptop\""]",3701.17,"{\"": \""21%\""}",210656,1,"""Europe""" +2024-01-08,48939,1035,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2181.87,{},81870,0,"""Europe""" +2023-11-22,48940,7500,"[\""Monitor\"", \""Phone\""]",2312.93,"{\"": \""26%\""}",73933,1,"""North America""" +2023-05-17,48941,7623,"[\""Keyboard\""]",4924.01,"{\""seasonal\"": \""19%\""}",202145,1,"""Asia""" +2023-12-04,48942,9119,"[\""Phone\""]",3476.57,"{\""seasonal\"": \""5%\""}",160025,1,"""North America""" +2024-04-05,48943,6989,"[\""Keyboard\"", \""Laptop\""]",4774.1,"{\""seasonal\"": \""30%\""}",20372,1,"""Africa""" +2023-01-14,48944,4491,"[\""Charger\"", \""Keyboard\""]",2871.17,"{\""promo\"": \""6%\""}",156241,0,"""North America""" +2023-04-08,48945,6068,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2851.13,"{\"": \""10%\""}",269532,0,"""Asia""" +2024-10-21,48946,886,"[\""Charger\"", \""Laptop\""]",1843.1,{},152414,0,"""North America""" +2024-06-19,48947,107,"[\""Keyboard\"", \""Wireless Mouse\""]",1173.74,"{\""loyalty\"": \""28%\""}",34510,0,"""Asia""" +2023-09-20,48948,3265,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2034.07,{},146629,1,"""Africa""" +2023-06-01,48949,5448,"[\""Tablet\""]",622.97,"{\"": \""11%\""}",32050,1,"""Africa""" +2024-02-24,48950,7882,"[\""Charger\""]",4140.32,{},278752,0,"""South America""" +2024-09-20,48951,4706,"[\""Phone\"", \""Keyboard\""]",4006.51,"{\""seasonal\"": \""11%\""}",196169,1,"""Europe""" +2023-07-29,48952,2393,"[\""Phone\""]",4717.77,{},192964,0,"""South America""" +2024-08-24,48953,4108,"[\""Monitor\""]",1234.08,"{\""seasonal\"": \""11%\""}",261515,0,"""South America""" +2023-06-10,48954,194,"[\""Wireless Mouse\"", \""Phone\""]",423.36,"{\"": \""13%\""}",294047,1,"""Asia""" +2024-05-13,48955,3900,"[\""Keyboard\""]",3169.02,{},66871,1,"""Europe""" +2023-04-21,48956,3595,"[\""Keyboard\"", \""Charger\""]",4965.11,{},24335,1,"""Africa""" +2023-10-05,48957,5350,"[\""Wireless Mouse\""]",4261.33,"{\""loyalty\"": \""21%\""}",131850,1,"""Africa""" +2023-11-08,48958,1888,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3332.95,"{\"": \""28%\""}",25178,1,"""North America""" +2024-05-11,48959,4955,"[\""Monitor\"", \""Phone\""]",2603.11,"{\""loyalty\"": \""20%\""}",177689,0,"""South America""" +2023-01-03,48960,5598,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3031.59,"{\""loyalty\"": \""5%\""}",64712,1,"""Europe""" +2023-02-04,48961,258,"[\""Monitor\"", \""Keyboard\""]",2781.45,{},174697,0,"""South America""" +2023-10-22,48962,5764,"[\""Monitor\""]",2669.74,"{\""loyalty\"": \""23%\""}",136844,1,"""North America""" +2024-06-07,48963,5301,"[\""Tablet\""]",2243.31,{},153068,0,"""North America""" +2024-08-17,48964,1028,"[\""Headphones\"", \""Wireless Mouse\""]",2101.2,"{\""seasonal\"": \""27%\""}",289839,0,"""Europe""" +2023-11-19,48965,8542,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1668.17,{},78887,1,"""Africa""" +2023-07-14,48966,2217,"[\""Wireless Mouse\""]",1757.61,"{\""seasonal\"": \""14%\""}",43324,0,"""South America""" +2023-06-05,48967,9638,"[\""Charger\""]",4833.26,{},249558,0,"""Asia""" +2023-08-18,48968,4253,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1731.32,"{\""seasonal\"": \""28%\""}",64601,0,"""Asia""" +2023-01-10,48969,1911,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1641.56,{},271012,0,"""Asia""" +2024-09-17,48970,631,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1619.67,{},174610,1,"""South America""" +2024-03-19,48971,5858,"[\""Tablet\"", \""Phone\""]",1823.05,{},159861,0,"""North America""" +2024-12-04,48972,6691,"[\""Charger\"", \""Headphones\""]",3636.2,"{\""promo\"": \""8%\""}",53152,0,"""North America""" +2023-06-13,48973,3830,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3880.51,"{\""loyalty\"": \""27%\""}",50486,1,"""Asia""" +2024-11-19,48974,9888,"[\""Laptop\"", \""Keyboard\""]",2430.38,"{\""seasonal\"": \""13%\""}",250090,0,"""Asia""" +2024-05-22,48975,1168,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",566.65,"{\""promo\"": \""16%\""}",118879,1,"""North America""" +2024-09-06,48976,4277,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",161.38,{},229380,1,"""Europe""" +2023-11-19,48977,6813,"[\""Wireless Mouse\"", \""Charger\""]",3668.34,{},287801,0,"""South America""" +2024-08-01,48978,2021,"[\""Charger\"", \""Tablet\""]",962.04,{},66318,1,"""Asia""" +2023-05-23,48979,4711,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4845.96,{},67576,0,"""North America""" +2023-09-03,48980,3678,"[\""Headphones\"", \""Charger\""]",783.33,{},129146,0,"""North America""" +2024-07-10,48981,308,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3277.4,"{\"": \""15%\""}",246980,0,"""South America""" +2023-09-01,48982,6234,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4655.83,"{\""seasonal\"": \""17%\""}",277460,0,"""Europe""" +2023-04-29,48983,350,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3437.69,"{\""promo\"": \""7%\""}",107858,1,"""South America""" +2023-03-01,48984,339,"[\""Monitor\"", \""Laptop\""]",931.49,"{\""promo\"": \""28%\""}",203830,0,"""Asia""" +2023-05-06,48985,2145,"[\""Keyboard\"", \""Monitor\""]",3223.74,"{\""loyalty\"": \""28%\""}",272666,0,"""South America""" +2024-10-28,48986,2318,"[\""Monitor\"", \""Keyboard\""]",3337.45,"{\"": \""5%\""}",186953,1,"""North America""" +2024-12-03,48987,2265,"[\""Wireless Mouse\"", \""Keyboard\""]",194.42,{},39395,0,"""Asia""" +2023-06-18,48988,8898,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2128.2,"{\"": \""7%\""}",228619,0,"""Africa""" +2023-01-04,48989,3359,"[\""Tablet\"", \""Charger\""]",2004.57,"{\""promo\"": \""28%\""}",125700,1,"""Africa""" +2023-04-18,48990,4408,"[\""Tablet\""]",581.25,"{\"": \""8%\""}",1846,0,"""Asia""" +2023-10-02,48991,1276,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4557.41,{},120635,0,"""South America""" +2024-09-08,48992,9117,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2336.32,{},73075,1,"""Europe""" +2024-04-16,48993,1743,"[\""Laptop\""]",3729.46,"{\""promo\"": \""22%\""}",156318,0,"""Europe""" +2024-08-05,48994,7402,"[\""Keyboard\""]",2440.25,"{\""loyalty\"": \""5%\""}",282523,1,"""Europe""" +2024-09-21,48995,3484,"[\""Monitor\"", \""Phone\""]",388.96,{},88681,0,"""Europe""" +2024-09-07,48996,450,"[\""Charger\"", \""Monitor\""]",4465.7,{},2043,0,"""South America""" +2023-03-12,48997,588,"[\""Keyboard\""]",4084.37,{},193287,1,"""Asia""" +2023-12-09,48998,8078,"[\""Charger\""]",138.47,{},58226,1,"""Asia""" +2024-07-20,48999,4642,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2460.23,{},208747,1,"""North America""" +2023-05-20,49000,9156,"[\""Keyboard\""]",1319.46,{},220857,1,"""Europe""" +2023-01-11,49001,7990,"[\""Headphones\""]",1701.15,{},53679,0,"""North America""" +2024-03-31,49002,5513,"[\""Charger\"", \""Keyboard\""]",4277.78,"{\""seasonal\"": \""14%\""}",29886,0,"""Europe""" +2024-01-02,49003,7339,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4921.35,"{\""loyalty\"": \""19%\""}",136425,1,"""Europe""" +2023-12-20,49004,6019,"[\""Laptop\""]",1591.15,"{\""promo\"": \""26%\""}",79009,0,"""Africa""" +2023-11-12,49005,9955,"[\""Headphones\"", \""Wireless Mouse\""]",506.15,"{\""loyalty\"": \""20%\""}",217886,0,"""Europe""" +2024-02-04,49006,8289,"[\""Charger\"", \""Laptop\""]",543.5,"{\""loyalty\"": \""17%\""}",211648,1,"""Africa""" +2024-06-19,49007,3061,"[\""Tablet\""]",4816.99,"{\"": \""10%\""}",116289,1,"""South America""" +2024-07-26,49008,902,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",475.94,"{\""promo\"": \""30%\""}",96625,1,"""Africa""" +2023-05-08,49009,7195,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2348.33,"{\""seasonal\"": \""10%\""}",255981,0,"""Europe""" +2023-09-28,49010,2771,"[\""Headphones\"", \""Monitor\""]",1985.35,{},274300,1,"""North America""" +2023-02-01,49011,1601,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4740.55,"{\"": \""16%\""}",69003,0,"""South America""" +2023-06-26,49012,5272,"[\""Laptop\"", \""Charger\""]",2868.17,"{\""loyalty\"": \""17%\""}",283405,1,"""Europe""" +2024-03-29,49013,4867,"[\""Monitor\"", \""Charger\""]",1360.65,"{\""promo\"": \""18%\""}",279374,1,"""North America""" +2023-05-05,49014,9906,"[\""Laptop\""]",348.9,{},233534,0,"""South America""" +2023-05-02,49015,383,"[\""Charger\""]",1253.78,{},236622,1,"""Africa""" +2024-05-20,49016,3121,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2867.64,"{\"": \""27%\""}",206154,0,"""Asia""" +2023-09-07,49017,4677,"[\""Wireless Mouse\"", \""Laptop\""]",1594.71,"{\""promo\"": \""29%\""}",62638,1,"""Africa""" +2023-04-08,49018,9498,"[\""Phone\""]",2911.39,"{\""loyalty\"": \""19%\""}",122110,1,"""South America""" +2024-02-16,49019,9011,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3476.71,{},54163,1,"""Europe""" +2024-08-23,49020,81,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3939.51,{},255699,0,"""North America""" +2023-07-05,49021,3194,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2126.71,{},232205,1,"""Africa""" +2024-01-04,49022,773,"[\""Laptop\""]",4673.41,"{\"": \""20%\""}",35570,1,"""Africa""" +2024-10-01,49023,995,"[\""Keyboard\"", \""Monitor\""]",1978.05,{},172050,1,"""Africa""" +2023-07-26,49024,3290,"[\""Monitor\"", \""Charger\""]",4015.33,"{\""promo\"": \""14%\""}",265501,0,"""South America""" +2023-02-09,49025,7575,"[\""Monitor\""]",2904.28,"{\""seasonal\"": \""25%\""}",231773,1,"""North America""" +2023-01-25,49026,3362,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4820.63,"{\""loyalty\"": \""14%\""}",136114,0,"""Europe""" +2024-11-06,49027,9982,"[\""Monitor\""]",3186.58,{},52184,0,"""Asia""" +2023-08-31,49028,2946,"[\""Charger\"", \""Keyboard\""]",1565.49,{},181048,1,"""Africa""" +2023-07-15,49029,1192,"[\""Monitor\""]",1800.19,"{\""seasonal\"": \""9%\""}",259837,0,"""North America""" +2023-08-24,49030,5288,"[\""Wireless Mouse\""]",1471.65,"{\""seasonal\"": \""11%\""}",43912,0,"""Africa""" +2023-08-17,49031,4485,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4640.78,{},265004,0,"""Asia""" +2024-10-03,49032,8895,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",503.64,"{\""loyalty\"": \""24%\""}",58246,1,"""Africa""" +2024-04-07,49033,9291,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1101.4,{},174150,0,"""Asia""" +2023-08-12,49034,2673,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3304.99,"{\""promo\"": \""19%\""}",4609,1,"""North America""" +2023-06-16,49035,1513,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3267.99,{},82425,0,"""Europe""" +2024-11-13,49036,7904,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",80.86,"{\""promo\"": \""13%\""}",292418,0,"""Africa""" +2024-10-19,49037,6448,"[\""Monitor\"", \""Tablet\""]",1868.88,{},211282,1,"""South America""" +2024-12-10,49038,7730,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4819.82,{},15744,1,"""North America""" +2023-04-11,49039,8080,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1389.88,{},284078,0,"""North America""" +2023-08-02,49040,3033,"[\""Keyboard\"", \""Charger\""]",3226.01,"{\""loyalty\"": \""9%\""}",164042,0,"""North America""" +2023-12-24,49041,7985,"[\""Laptop\""]",2711.4,{},263367,1,"""North America""" +2024-02-21,49042,7972,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4044.34,{},99000,1,"""South America""" +2023-08-22,49043,8388,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",688.83,"{\""seasonal\"": \""28%\""}",279983,1,"""Europe""" +2023-04-24,49044,1626,"[\""Tablet\"", \""Monitor\""]",2688.37,{},69133,1,"""Asia""" +2024-04-19,49045,1783,"[\""Tablet\""]",2176.97,{},146793,1,"""Europe""" +2024-12-16,49046,5465,"[\""Charger\"", \""Phone\""]",1671.29,"{\""promo\"": \""19%\""}",211864,1,"""Europe""" +2023-08-16,49047,3484,"[\""Keyboard\"", \""Wireless Mouse\""]",1604.76,{},102857,0,"""South America""" +2024-02-27,49048,8223,"[\""Monitor\"", \""Charger\""]",2229.74,{},273867,1,"""Asia""" +2023-04-11,49049,6278,"[\""Headphones\""]",2565.27,"{\"": \""17%\""}",174369,0,"""Africa""" +2024-11-18,49050,9369,"[\""Phone\"", \""Headphones\""]",3879.73,"{\""promo\"": \""30%\""}",79582,0,"""North America""" +2024-02-12,49051,9947,"[\""Charger\"", \""Keyboard\""]",631.94,{},162293,0,"""Africa""" +2023-10-17,49052,3349,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4906.92,{},116654,1,"""Asia""" +2023-11-26,49053,1054,"[\""Laptop\""]",720.64,"{\""seasonal\"": \""14%\""}",2397,1,"""South America""" +2024-09-04,49054,7118,"[\""Headphones\"", \""Laptop\""]",3337.54,{},250346,0,"""Africa""" +2024-05-16,49055,3020,"[\""Wireless Mouse\""]",764.85,{},164658,1,"""Europe""" +2024-08-28,49056,9973,"[\""Keyboard\""]",2163.86,"{\"": \""20%\""}",2682,0,"""Asia""" +2023-11-13,49057,6448,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4110.93,{},205513,1,"""South America""" +2023-05-14,49058,8657,"[\""Charger\"", \""Wireless Mouse\""]",163.14,"{\""seasonal\"": \""5%\""}",191657,1,"""South America""" +2024-07-04,49059,6212,"[\""Laptop\"", \""Charger\""]",2428.68,{},244213,0,"""North America""" +2024-01-27,49060,3453,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3167.42,"{\"": \""5%\""}",117000,0,"""Asia""" +2024-08-09,49061,4979,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1736.04,{},221826,1,"""Europe""" +2024-02-14,49062,9212,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2145.83,{},219317,0,"""North America""" +2023-09-17,49063,6986,"[\""Tablet\"", \""Phone\"", \""Charger\""]",760.24,"{\""promo\"": \""13%\""}",19163,0,"""North America""" +2024-07-03,49064,519,"[\""Wireless Mouse\"", \""Tablet\""]",4343.98,"{\"": \""7%\""}",174059,0,"""Asia""" +2024-03-03,49065,322,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",792.76,{},126173,1,"""Europe""" +2023-03-25,49066,3101,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2510.28,"{\"": \""30%\""}",251972,0,"""Asia""" +2023-12-06,49067,2609,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3102.39,"{\""seasonal\"": \""26%\""}",52524,0,"""Europe""" +2023-04-27,49068,3794,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3075.83,{},19157,0,"""Africa""" +2024-07-05,49069,7335,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4335.57,{},297009,1,"""North America""" +2023-12-15,49070,7942,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3867.82,"{\""loyalty\"": \""6%\""}",12193,0,"""Europe""" +2024-09-02,49071,3066,"[\""Wireless Mouse\""]",3413.84,{},99087,0,"""South America""" +2023-06-10,49072,2561,"[\""Phone\"", \""Tablet\""]",4447.34,{},275165,0,"""South America""" +2023-09-10,49073,5394,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1789.99,"{\""loyalty\"": \""30%\""}",89319,1,"""Africa""" +2024-08-15,49074,7162,"[\""Charger\"", \""Laptop\""]",4177.64,{},248782,0,"""Asia""" +2023-07-28,49075,5544,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4959.23,"{\""promo\"": \""6%\""}",16785,1,"""South America""" +2024-08-21,49076,8656,"[\""Headphones\""]",2640.46,"{\""seasonal\"": \""30%\""}",243342,0,"""Africa""" +2024-06-29,49077,9486,"[\""Keyboard\""]",1182.29,"{\""promo\"": \""18%\""}",177269,0,"""North America""" +2024-03-14,49078,9238,"[\""Keyboard\""]",162.56,"{\""promo\"": \""7%\""}",279881,1,"""Asia""" +2023-12-18,49079,2777,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4273.45,"{\"": \""26%\""}",23176,0,"""Europe""" +2024-06-17,49080,1548,"[\""Keyboard\""]",4086.84,{},182027,0,"""North America""" +2024-05-27,49081,9395,"[\""Monitor\"", \""Wireless Mouse\""]",1369.51,{},266066,1,"""North America""" +2023-10-08,49082,6534,"[\""Charger\"", \""Headphones\""]",2077.58,{},114912,0,"""Asia""" +2024-02-04,49083,4589,"[\""Laptop\""]",3874.65,"{\""promo\"": \""12%\""}",124363,1,"""Asia""" +2023-08-30,49084,8174,"[\""Monitor\""]",1756.82,{},260316,0,"""South America""" +2024-03-27,49085,4461,"[\""Phone\"", \""Wireless Mouse\""]",603.9,{},39739,1,"""South America""" +2023-02-18,49086,6969,"[\""Tablet\"", \""Keyboard\""]",1270.75,"{\"": \""6%\""}",41804,0,"""Europe""" +2023-09-15,49087,4598,"[\""Keyboard\""]",981.84,"{\""seasonal\"": \""22%\""}",219361,1,"""Africa""" +2024-08-10,49088,1835,"[\""Headphones\""]",3062.45,{},47863,0,"""North America""" +2024-01-26,49089,3738,"[\""Charger\"", \""Keyboard\""]",903.05,"{\""loyalty\"": \""22%\""}",179318,1,"""South America""" +2024-02-01,49090,3494,"[\""Charger\""]",3480.41,"{\"": \""28%\""}",142765,0,"""Asia""" +2024-01-24,49091,55,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2749.32,{},71159,0,"""Asia""" +2023-11-07,49092,4043,"[\""Monitor\"", \""Charger\""]",831.54,{},241712,1,"""North America""" +2024-08-23,49093,2487,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2086.22,{},87144,0,"""Asia""" +2024-07-13,49094,7896,"[\""Laptop\""]",1456.4,{},91211,1,"""North America""" +2023-07-04,49095,1149,"[\""Tablet\""]",2202.94,"{\""loyalty\"": \""21%\""}",219144,1,"""North America""" +2024-05-06,49096,3489,"[\""Phone\"", \""Wireless Mouse\""]",4732.85,{},228117,0,"""South America""" +2024-03-05,49097,5603,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",763.77,"{\""seasonal\"": \""18%\""}",220715,1,"""Asia""" +2023-07-17,49098,9732,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2829.97,"{\""promo\"": \""28%\""}",197613,1,"""South America""" +2023-11-22,49099,6077,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4371.24,{},287518,0,"""South America""" +2024-02-13,49100,1569,"[\""Tablet\"", \""Headphones\""]",1859.14,{},126454,0,"""North America""" +2023-07-03,49101,9594,"[\""Keyboard\""]",2694.61,{},287122,1,"""Africa""" +2023-05-17,49102,8421,"[\""Monitor\"", \""Keyboard\""]",668.45,"{\""loyalty\"": \""29%\""}",73599,0,"""North America""" +2024-12-14,49103,5299,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1879.62,{},89677,0,"""Europe""" +2023-08-19,49104,6827,"[\""Tablet\"", \""Phone\""]",2864.38,"{\""loyalty\"": \""20%\""}",216722,1,"""Asia""" +2023-05-23,49105,2589,"[\""Phone\""]",3019.84,{},8850,0,"""South America""" +2023-09-23,49106,114,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",810.04,{},159054,0,"""Africa""" +2023-11-15,49107,2009,"[\""Keyboard\""]",4752.82,"{\""loyalty\"": \""19%\""}",119275,0,"""North America""" +2023-02-25,49108,271,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",125.39,{},4306,0,"""North America""" +2023-03-14,49109,1321,"[\""Keyboard\""]",1862.68,"{\""promo\"": \""27%\""}",122623,1,"""Africa""" +2023-12-28,49110,1862,"[\""Laptop\"", \""Monitor\""]",4403.18,"{\""loyalty\"": \""7%\""}",128535,1,"""Europe""" +2023-10-04,49111,8297,"[\""Tablet\"", \""Keyboard\""]",1291.69,"{\"": \""29%\""}",65314,0,"""South America""" +2024-03-27,49112,1373,"[\""Headphones\""]",2695.17,{},120249,1,"""North America""" +2023-02-07,49113,4872,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1042.06,{},166013,1,"""North America""" +2023-01-13,49114,1264,"[\""Tablet\""]",1944.0,"{\""seasonal\"": \""14%\""}",158098,1,"""Africa""" +2023-01-17,49115,1223,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",174.14,{},49929,0,"""Europe""" +2023-12-28,49116,5498,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4735.99,"{\"": \""5%\""}",161914,0,"""South America""" +2023-08-05,49117,5248,"[\""Charger\"", \""Monitor\""]",1609.81,"{\""promo\"": \""26%\""}",279556,1,"""North America""" +2024-05-18,49118,7948,"[\""Wireless Mouse\""]",4711.16,{},161513,1,"""South America""" +2023-04-15,49119,7302,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4320.57,{},76084,0,"""Asia""" +2023-06-28,49120,8249,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",451.69,"{\""seasonal\"": \""15%\""}",127670,0,"""Africa""" +2024-03-22,49121,984,"[\""Headphones\""]",2420.76,"{\""promo\"": \""30%\""}",94438,0,"""Africa""" +2024-03-01,49122,8576,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4775.52,"{\""promo\"": \""9%\""}",44929,0,"""North America""" +2023-06-22,49123,778,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",350.24,{},107511,0,"""Europe""" +2023-07-21,49124,3412,"[\""Laptop\"", \""Monitor\""]",3159.79,"{\""loyalty\"": \""8%\""}",193214,0,"""South America""" +2024-05-22,49125,1304,"[\""Wireless Mouse\"", \""Phone\""]",3861.94,{},139285,0,"""South America""" +2023-07-11,49126,3535,"[\""Charger\"", \""Keyboard\""]",1233.06,"{\""seasonal\"": \""24%\""}",284544,0,"""Europe""" +2024-03-20,49127,6587,"[\""Laptop\"", \""Keyboard\""]",1760.46,"{\""promo\"": \""9%\""}",268052,0,"""Asia""" +2024-01-30,49128,3241,"[\""Phone\"", \""Headphones\""]",2434.5,{},139600,0,"""North America""" +2024-01-01,49129,8384,"[\""Phone\""]",433.78,"{\""loyalty\"": \""8%\""}",16411,1,"""Europe""" +2023-08-29,49130,4479,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4425.97,{},105030,1,"""Asia""" +2023-10-21,49131,979,"[\""Laptop\"", \""Keyboard\""]",3966.07,{},170341,0,"""Asia""" +2024-11-19,49132,8929,"[\""Tablet\""]",832.71,{},149661,0,"""Europe""" +2023-08-04,49133,5545,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3034.75,"{\""seasonal\"": \""15%\""}",25931,1,"""Asia""" +2023-02-13,49134,4749,"[\""Phone\""]",1736.71,{},82149,1,"""Africa""" +2023-07-30,49135,9638,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1266.0,"{\""loyalty\"": \""14%\""}",200420,1,"""Africa""" +2024-11-04,49136,5575,"[\""Tablet\""]",2946.69,"{\""loyalty\"": \""13%\""}",278072,1,"""Africa""" +2024-09-16,49137,1350,"[\""Keyboard\""]",3852.62,{},277856,0,"""North America""" +2024-01-04,49138,6028,"[\""Charger\"", \""Keyboard\""]",2567.11,{},208349,0,"""South America""" +2023-07-29,49139,6090,"[\""Keyboard\""]",3504.17,"{\""seasonal\"": \""20%\""}",194915,0,"""Europe""" +2023-06-16,49140,6749,"[\""Phone\""]",1011.6,{},36780,0,"""Europe""" +2024-12-09,49141,9102,"[\""Charger\""]",605.88,"{\""seasonal\"": \""9%\""}",93927,0,"""Africa""" +2024-10-10,49142,648,"[\""Monitor\""]",4878.09,{},230225,1,"""North America""" +2024-11-15,49143,4608,"[\""Monitor\""]",235.6,{},117817,0,"""Europe""" +2023-06-29,49144,5618,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3638.09,"{\""promo\"": \""23%\""}",229783,0,"""North America""" +2024-11-26,49145,1900,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",717.24,{},223589,0,"""Africa""" +2024-07-19,49146,7629,"[\""Keyboard\""]",4492.01,"{\"": \""17%\""}",290662,1,"""Europe""" +2024-07-14,49147,9706,"[\""Monitor\""]",2593.0,{},290257,0,"""Africa""" +2024-11-09,49148,9890,"[\""Monitor\"", \""Headphones\""]",1522.28,"{\"": \""18%\""}",127463,1,"""South America""" +2023-04-11,49149,3565,"[\""Phone\"", \""Laptop\""]",613.1,{},131670,1,"""South America""" +2024-07-16,49150,9846,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2016.32,"{\""seasonal\"": \""17%\""}",45513,1,"""North America""" +2024-05-24,49151,1665,"[\""Keyboard\""]",4217.18,{},12883,0,"""South America""" +2023-07-12,49152,8684,"[\""Tablet\""]",3678.47,"{\""seasonal\"": \""14%\""}",177828,0,"""Africa""" +2024-04-20,49153,9292,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",893.49,"{\""loyalty\"": \""15%\""}",49484,1,"""Asia""" +2023-11-30,49154,1256,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3601.05,{},268210,1,"""South America""" +2024-12-20,49155,3911,"[\""Phone\"", \""Wireless Mouse\""]",1257.46,"{\"": \""9%\""}",163058,0,"""Europe""" +2024-10-30,49156,272,"[\""Phone\"", \""Keyboard\""]",1994.28,"{\""loyalty\"": \""6%\""}",199681,0,"""South America""" +2024-01-23,49157,5030,"[\""Tablet\""]",4803.4,"{\""seasonal\"": \""11%\""}",165033,1,"""Europe""" +2024-06-02,49158,3161,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",447.46,{},133854,1,"""Africa""" +2024-10-15,49159,9549,"[\""Keyboard\""]",4199.34,{},148317,0,"""Africa""" +2024-03-31,49160,137,"[\""Headphones\""]",943.08,{},208759,1,"""Asia""" +2023-03-13,49161,666,"[\""Laptop\""]",1041.85,"{\""loyalty\"": \""17%\""}",222987,1,"""Asia""" +2023-08-16,49162,1782,"[\""Laptop\"", \""Wireless Mouse\""]",2645.05,"{\"": \""11%\""}",168874,1,"""North America""" +2024-09-19,49163,1098,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2946.98,{},60937,0,"""Asia""" +2024-05-14,49164,6761,"[\""Headphones\"", \""Wireless Mouse\""]",3282.18,{},145042,0,"""North America""" +2023-09-10,49165,8237,"[\""Keyboard\"", \""Phone\""]",2955.18,{},118392,1,"""Europe""" +2023-01-20,49166,1647,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",71.89,"{\""promo\"": \""6%\""}",243417,1,"""North America""" +2023-04-21,49167,1069,"[\""Headphones\""]",2386.02,"{\"": \""26%\""}",266831,0,"""Europe""" +2023-11-10,49168,3789,"[\""Phone\""]",4580.95,{},11194,0,"""Asia""" +2024-03-22,49169,6093,"[\""Monitor\""]",3793.6,{},20127,0,"""Asia""" +2024-04-21,49170,2659,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1946.44,{},261804,1,"""Africa""" +2024-11-29,49171,1151,"[\""Charger\"", \""Headphones\""]",2616.75,"{\"": \""8%\""}",94035,0,"""Europe""" +2024-12-02,49172,9497,"[\""Wireless Mouse\""]",2711.16,{},19247,1,"""Europe""" +2024-04-03,49173,8535,"[\""Headphones\"", \""Keyboard\""]",1283.76,{},115788,0,"""Europe""" +2024-01-28,49174,4271,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1547.37,{},36233,0,"""North America""" +2024-02-13,49175,5287,"[\""Keyboard\"", \""Tablet\""]",4942.99,{},265446,0,"""Africa""" +2024-12-25,49176,7830,"[\""Headphones\"", \""Wireless Mouse\""]",3892.83,"{\"": \""26%\""}",220232,0,"""North America""" +2024-11-24,49177,9865,"[\""Wireless Mouse\"", \""Laptop\""]",328.8,{},142667,0,"""South America""" +2023-08-27,49178,5303,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2790.64,{},282505,1,"""North America""" +2023-04-20,49179,5415,"[\""Charger\"", \""Tablet\""]",4606.98,"{\""promo\"": \""16%\""}",298367,0,"""South America""" +2023-12-16,49180,1372,"[\""Laptop\"", \""Wireless Mouse\""]",1108.88,{},158153,1,"""Africa""" +2024-01-31,49181,8577,"[\""Monitor\"", \""Headphones\""]",456.84,"{\""seasonal\"": \""18%\""}",118072,1,"""Africa""" +2023-11-03,49182,1103,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3917.03,"{\""seasonal\"": \""27%\""}",137740,1,"""North America""" +2024-08-01,49183,1331,"[\""Charger\""]",2269.31,{},135973,0,"""North America""" +2023-07-25,49184,4139,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2653.06,"{\""loyalty\"": \""5%\""}",266847,1,"""South America""" +2024-11-27,49185,9861,"[\""Wireless Mouse\""]",2227.87,{},77747,1,"""South America""" +2024-02-12,49186,5321,"[\""Headphones\""]",4080.51,{},95091,0,"""Africa""" +2024-12-03,49187,2806,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",328.75,{},146682,1,"""South America""" +2024-12-27,49188,2979,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3286.31,"{\""seasonal\"": \""23%\""}",92817,1,"""Africa""" +2024-03-12,49189,9769,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",329.9,"{\""promo\"": \""10%\""}",174250,0,"""Asia""" +2024-06-28,49190,8782,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1527.61,{},62815,0,"""South America""" +2023-10-03,49191,4276,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1426.68,{},210108,1,"""South America""" +2023-10-13,49192,6377,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3405.73,{},113719,0,"""Africa""" +2024-07-18,49193,3444,"[\""Monitor\"", \""Keyboard\""]",4529.1,"{\"": \""11%\""}",103082,0,"""Asia""" +2023-11-10,49194,4182,"[\""Tablet\""]",3618.83,"{\""loyalty\"": \""20%\""}",151111,1,"""Europe""" +2023-07-05,49195,5909,"[\""Wireless Mouse\""]",3558.24,{},202347,1,"""Asia""" +2023-04-26,49196,6573,"[\""Laptop\"", \""Wireless Mouse\""]",2041.06,"{\""seasonal\"": \""10%\""}",96300,1,"""Asia""" +2024-07-09,49197,8220,"[\""Phone\"", \""Laptop\""]",3279.22,{},294078,0,"""Asia""" +2024-06-25,49198,3684,"[\""Charger\""]",4725.77,{},284977,0,"""Europe""" +2023-12-30,49199,7682,"[\""Phone\""]",1069.14,{},95169,1,"""South America""" +2023-02-20,49200,3973,"[\""Headphones\""]",2376.94,"{\""seasonal\"": \""27%\""}",106666,1,"""Asia""" +2024-05-17,49201,7054,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4506.69,"{\""loyalty\"": \""21%\""}",286838,0,"""Africa""" +2023-07-05,49202,745,"[\""Charger\""]",1766.68,{},22290,0,"""Africa""" +2024-07-05,49203,6756,"[\""Wireless Mouse\""]",3973.44,{},39528,0,"""Europe""" +2023-03-29,49204,4939,"[\""Laptop\"", \""Keyboard\""]",4121.41,{},12658,0,"""Africa""" +2024-12-28,49205,9229,"[\""Laptop\""]",1805.15,"{\""promo\"": \""11%\""}",48389,1,"""Africa""" +2023-09-22,49206,2602,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2308.96,{},50808,1,"""South America""" +2024-04-18,49207,3085,"[\""Laptop\""]",3669.64,"{\""seasonal\"": \""6%\""}",282240,0,"""Asia""" +2024-01-03,49208,9434,"[\""Headphones\"", \""Wireless Mouse\""]",1365.89,{},219002,0,"""South America""" +2024-08-13,49209,898,"[\""Monitor\"", \""Laptop\""]",4509.0,{},258796,0,"""Asia""" +2023-07-25,49210,2510,"[\""Laptop\"", \""Wireless Mouse\""]",1894.13,"{\""seasonal\"": \""17%\""}",179962,1,"""Asia""" +2024-04-13,49211,6589,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",901.4,"{\""seasonal\"": \""29%\""}",90240,0,"""Africa""" +2024-11-23,49212,8520,"[\""Wireless Mouse\""]",3548.62,{},69136,0,"""South America""" +2024-09-01,49213,2854,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2537.79,{},189208,1,"""Europe""" +2024-04-17,49214,4588,"[\""Wireless Mouse\"", \""Tablet\""]",1399.4,{},109994,1,"""Asia""" +2024-07-18,49215,7800,"[\""Charger\"", \""Headphones\""]",437.93,{},69125,0,"""Africa""" +2023-08-24,49216,2972,"[\""Keyboard\""]",2054.73,{},242185,0,"""Europe""" +2023-12-07,49217,4214,"[\""Charger\""]",2615.8,"{\"": \""29%\""}",182736,0,"""North America""" +2023-01-02,49218,8895,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1840.53,"{\""promo\"": \""17%\""}",173764,1,"""Africa""" +2024-04-01,49219,1735,"[\""Wireless Mouse\""]",1011.39,"{\""promo\"": \""16%\""}",143154,0,"""North America""" +2024-04-19,49220,8272,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2074.24,{},34920,1,"""Asia""" +2023-10-30,49221,3189,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2980.46,{},33804,0,"""North America""" +2023-07-15,49222,9064,"[\""Monitor\"", \""Keyboard\""]",257.18,"{\""promo\"": \""12%\""}",279984,1,"""North America""" +2024-09-22,49223,8380,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",649.64,{},202433,1,"""Europe""" +2024-12-20,49224,7580,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2016.1,{},153211,1,"""Europe""" +2024-07-19,49225,7998,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1832.17,{},84026,1,"""Africa""" +2023-02-04,49226,7962,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2259.05,"{\""promo\"": \""27%\""}",136415,0,"""North America""" +2023-09-04,49227,7492,"[\""Tablet\"", \""Headphones\""]",993.29,"{\"": \""5%\""}",49485,1,"""Africa""" +2024-06-07,49228,1080,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",722.27,"{\"": \""24%\""}",226116,1,"""Africa""" +2023-03-20,49229,318,"[\""Laptop\""]",781.09,{},61348,0,"""South America""" +2023-07-14,49230,9331,"[\""Tablet\"", \""Headphones\""]",256.69,"{\""loyalty\"": \""8%\""}",147466,1,"""Asia""" +2024-09-16,49231,4844,"[\""Keyboard\""]",2772.05,"{\""seasonal\"": \""29%\""}",227882,1,"""Europe""" +2023-06-29,49232,7476,"[\""Headphones\"", \""Wireless Mouse\""]",470.04,{},124408,0,"""Asia""" +2024-02-29,49233,7280,"[\""Phone\""]",4637.18,{},292739,0,"""Asia""" +2023-04-19,49234,1938,"[\""Charger\"", \""Monitor\""]",3855.73,{},83815,0,"""North America""" +2023-12-03,49235,2082,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",959.2,"{\""promo\"": \""30%\""}",14492,1,"""South America""" +2024-09-12,49236,1039,"[\""Keyboard\""]",4142.85,"{\""loyalty\"": \""24%\""}",267949,1,"""Africa""" +2024-04-04,49237,7977,"[\""Tablet\""]",2104.33,{},189352,1,"""Asia""" +2024-03-09,49238,8851,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4900.97,"{\""promo\"": \""19%\""}",93380,1,"""North America""" +2023-12-15,49239,2055,"[\""Monitor\""]",2036.79,"{\""seasonal\"": \""14%\""}",103773,0,"""Africa""" +2024-07-06,49240,9889,"[\""Headphones\"", \""Laptop\""]",1051.92,{},133249,1,"""Europe""" +2024-06-02,49241,4594,"[\""Tablet\""]",3911.59,{},173816,0,"""Africa""" +2023-05-21,49242,2794,"[\""Monitor\""]",419.52,{},139199,1,"""North America""" +2024-03-02,49243,8103,"[\""Monitor\"", \""Charger\""]",4097.48,{},291639,0,"""North America""" +2023-07-30,49244,2857,"[\""Monitor\""]",4807.71,{},98058,0,"""Africa""" +2023-04-29,49245,2229,"[\""Monitor\"", \""Laptop\""]",3064.1,"{\""loyalty\"": \""29%\""}",258464,1,"""Europe""" +2024-04-18,49246,8801,"[\""Laptop\"", \""Tablet\""]",3409.17,{},125921,1,"""Africa""" +2024-01-19,49247,1440,"[\""Laptop\""]",2774.07,"{\""seasonal\"": \""11%\""}",142869,0,"""Africa""" +2023-11-30,49248,5506,"[\""Tablet\""]",1373.55,{},247271,1,"""Asia""" +2023-05-31,49249,7770,"[\""Keyboard\""]",1269.89,{},27791,1,"""Asia""" +2023-06-25,49250,8492,"[\""Monitor\""]",2493.49,"{\""promo\"": \""28%\""}",39709,1,"""Europe""" +2023-06-19,49251,6618,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4169.02,{},2172,1,"""Europe""" +2024-09-17,49252,6246,"[\""Wireless Mouse\"", \""Keyboard\""]",2984.41,{},90286,1,"""Asia""" +2023-09-25,49253,3537,"[\""Headphones\""]",3255.15,"{\""loyalty\"": \""21%\""}",18287,1,"""Asia""" +2023-09-27,49254,1115,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2612.85,{},82565,0,"""South America""" +2023-06-25,49255,6228,"[\""Keyboard\""]",2691.6,"{\""seasonal\"": \""6%\""}",222611,0,"""South America""" +2023-01-31,49256,9043,"[\""Headphones\""]",1231.84,"{\""promo\"": \""22%\""}",29568,1,"""Europe""" +2023-11-27,49257,3616,"[\""Phone\""]",1429.0,{},171908,1,"""Africa""" +2024-10-17,49258,5850,"[\""Charger\"", \""Phone\""]",3381.98,{},142166,1,"""Africa""" +2024-12-16,49259,498,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3326.8,{},120030,1,"""Asia""" +2023-08-30,49260,1745,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2794.45,{},221028,1,"""South America""" +2023-01-04,49261,589,"[\""Laptop\""]",4030.19,"{\""seasonal\"": \""8%\""}",170771,1,"""Europe""" +2024-11-03,49262,2337,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3874.93,{},162225,1,"""South America""" +2024-04-14,49263,5329,"[\""Keyboard\"", \""Charger\""]",3499.68,"{\""loyalty\"": \""18%\""}",217087,0,"""North America""" +2024-06-02,49264,2500,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2865.87,{},38886,1,"""Europe""" +2023-02-16,49265,7102,"[\""Monitor\"", \""Tablet\""]",3097.3,"{\""promo\"": \""18%\""}",42141,1,"""South America""" +2023-01-22,49266,5636,"[\""Keyboard\"", \""Monitor\""]",2041.68,"{\""loyalty\"": \""9%\""}",201469,1,"""North America""" +2024-04-16,49267,9331,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3395.56,"{\""seasonal\"": \""7%\""}",60859,0,"""North America""" +2024-11-01,49268,1101,"[\""Charger\""]",3118.34,{},137314,1,"""Africa""" +2023-03-30,49269,2193,"[\""Keyboard\"", \""Monitor\""]",4072.53,"{\""promo\"": \""13%\""}",157458,1,"""Asia""" +2024-10-05,49270,6175,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",366.54,"{\""seasonal\"": \""8%\""}",11831,1,"""Europe""" +2023-10-18,49271,7818,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4533.13,"{\""seasonal\"": \""12%\""}",77392,0,"""South America""" +2023-06-15,49272,1399,"[\""Monitor\"", \""Charger\""]",3214.01,{},8289,0,"""North America""" +2024-10-28,49273,8003,"[\""Monitor\"", \""Phone\""]",1643.78,"{\""loyalty\"": \""23%\""}",8122,1,"""Africa""" +2023-09-11,49274,2068,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1153.09,{},290483,1,"""South America""" +2024-03-08,49275,2353,"[\""Tablet\""]",3466.4,{},160230,1,"""South America""" +2023-09-21,49276,1615,"[\""Phone\""]",4789.49,"{\""promo\"": \""9%\""}",50641,1,"""Europe""" +2023-01-07,49277,1568,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1577.81,"{\""promo\"": \""25%\""}",108492,0,"""North America""" +2024-06-16,49278,2855,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3714.9,{},187166,1,"""Europe""" +2023-11-20,49279,6760,"[\""Tablet\"", \""Wireless Mouse\""]",774.03,{},265401,1,"""Europe""" +2023-05-15,49280,4591,"[\""Monitor\"", \""Wireless Mouse\""]",1204.4,{},82839,1,"""Africa""" +2024-06-30,49281,5900,"[\""Charger\""]",3708.62,"{\""promo\"": \""13%\""}",98949,1,"""Africa""" +2024-08-06,49282,9662,"[\""Phone\""]",2227.17,{},261680,1,"""Africa""" +2023-11-06,49283,7333,"[\""Monitor\""]",2100.28,{},32274,1,"""Europe""" +2023-07-22,49284,6292,"[\""Phone\"", \""Monitor\""]",4425.01,{},204966,1,"""Africa""" +2023-07-18,49285,6843,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4382.97,{},118542,1,"""Europe""" +2023-06-21,49286,2911,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3991.74,{},72338,1,"""South America""" +2024-02-13,49287,9059,"[\""Keyboard\"", \""Phone\""]",4264.6,"{\""seasonal\"": \""9%\""}",82100,0,"""Europe""" +2023-12-27,49288,9266,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1495.48,{},56999,1,"""North America""" +2024-10-30,49289,7946,"[\""Charger\""]",4573.5,{},146357,0,"""North America""" +2023-06-07,49290,8550,"[\""Phone\"", \""Charger\"", \""Monitor\""]",210.26,{},30624,1,"""South America""" +2024-03-31,49291,917,"[\""Charger\"", \""Laptop\""]",1421.63,"{\""seasonal\"": \""20%\""}",185057,1,"""Europe""" +2024-05-09,49292,4861,"[\""Monitor\""]",406.45,{},10695,0,"""Europe""" +2024-03-26,49293,2107,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2636.66,"{\""promo\"": \""13%\""}",253653,1,"""Europe""" +2024-05-16,49294,3855,"[\""Keyboard\"", \""Tablet\""]",4830.73,{},2927,1,"""North America""" +2024-03-13,49295,994,"[\""Laptop\""]",3692.19,{},223849,0,"""Africa""" +2023-01-02,49296,1386,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2503.53,{},208536,1,"""Europe""" +2024-06-01,49297,396,"[\""Wireless Mouse\""]",4106.07,{},57687,1,"""Asia""" +2024-10-29,49298,3338,"[\""Wireless Mouse\""]",4325.08,"{\"": \""6%\""}",235709,0,"""North America""" +2023-04-04,49299,1659,"[\""Keyboard\""]",895.75,"{\""promo\"": \""19%\""}",123050,1,"""South America""" +2023-10-06,49300,951,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3717.62,{},157034,0,"""South America""" +2024-10-07,49301,7832,"[\""Tablet\""]",4708.51,{},22577,1,"""Europe""" +2023-08-27,49302,7149,"[\""Wireless Mouse\""]",4844.34,{},21240,0,"""South America""" +2024-02-18,49303,8047,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2797.19,"{\"": \""21%\""}",151946,0,"""North America""" +2023-06-22,49304,8728,"[\""Wireless Mouse\"", \""Headphones\""]",3285.29,"{\""seasonal\"": \""23%\""}",252855,1,"""Africa""" +2023-08-21,49305,494,"[\""Charger\""]",2458.96,"{\"": \""14%\""}",81885,1,"""Europe""" +2024-06-27,49306,935,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2520.05,"{\""loyalty\"": \""30%\""}",241832,1,"""Asia""" +2023-12-04,49307,5443,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4815.69,"{\""seasonal\"": \""15%\""}",276925,0,"""North America""" +2024-07-02,49308,873,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4168.96,"{\""seasonal\"": \""28%\""}",173767,0,"""Africa""" +2023-06-17,49309,7985,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2594.55,"{\"": \""24%\""}",262722,0,"""North America""" +2023-09-15,49310,9713,"[\""Charger\"", \""Monitor\""]",2963.53,"{\"": \""18%\""}",218390,0,"""North America""" +2023-05-26,49311,8687,"[\""Charger\"", \""Phone\""]",3241.42,{},251564,1,"""North America""" +2023-12-17,49312,3347,"[\""Wireless Mouse\""]",2119.06,"{\""loyalty\"": \""25%\""}",298661,1,"""North America""" +2024-07-12,49313,6532,"[\""Monitor\"", \""Laptop\""]",1124.3,"{\""seasonal\"": \""30%\""}",259214,0,"""North America""" +2024-01-15,49314,8368,"[\""Tablet\"", \""Monitor\""]",4555.33,"{\""seasonal\"": \""20%\""}",142343,0,"""Asia""" +2024-09-27,49315,3297,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2705.55,{},156153,0,"""North America""" +2024-01-13,49316,7921,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4257.16,{},241846,0,"""Africa""" +2023-11-24,49317,6471,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4722.06,{},2296,1,"""North America""" +2024-04-19,49318,1657,"[\""Tablet\""]",1472.49,{},46942,1,"""North America""" +2023-03-23,49319,6458,"[\""Laptop\"", \""Headphones\""]",4388.34,"{\""seasonal\"": \""8%\""}",174493,1,"""Africa""" +2023-12-16,49320,3729,"[\""Phone\""]",2242.35,{},260976,0,"""Asia""" +2024-09-20,49321,7064,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2999.73,"{\""promo\"": \""25%\""}",77415,1,"""North America""" +2024-11-01,49322,1890,"[\""Keyboard\"", \""Wireless Mouse\""]",2346.08,{},264394,0,"""North America""" +2023-07-31,49323,8423,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2332.05,{},45021,0,"""Europe""" +2023-07-15,49324,250,"[\""Laptop\""]",1031.64,{},289083,0,"""Africa""" +2024-01-05,49325,5064,"[\""Headphones\""]",4123.61,"{\""seasonal\"": \""16%\""}",197879,1,"""North America""" +2024-11-29,49326,3629,"[\""Phone\"", \""Tablet\""]",2936.88,{},38555,1,"""South America""" +2023-08-02,49327,2334,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3649.52,{},242415,1,"""Asia""" +2024-10-11,49328,1643,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",133.71,"{\""promo\"": \""26%\""}",214761,1,"""Asia""" +2024-02-09,49329,2935,"[\""Phone\"", \""Tablet\""]",3820.62,{},109726,1,"""Europe""" +2023-06-24,49330,7627,"[\""Laptop\""]",2936.78,{},238996,0,"""North America""" +2024-06-07,49331,4171,"[\""Wireless Mouse\""]",1023.68,"{\""seasonal\"": \""6%\""}",43559,0,"""Africa""" +2024-05-14,49332,3166,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1741.16,"{\""seasonal\"": \""8%\""}",90197,1,"""South America""" +2023-03-10,49333,6643,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",570.52,{},199087,0,"""Africa""" +2023-04-17,49334,2088,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4281.79,{},126575,0,"""Asia""" +2024-02-15,49335,5056,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3364.59,{},72658,0,"""North America""" +2023-02-26,49336,9259,"[\""Headphones\""]",60.4,"{\""loyalty\"": \""24%\""}",8939,1,"""Africa""" +2023-12-13,49337,7309,"[\""Phone\""]",1904.74,{},192492,1,"""Asia""" +2024-08-22,49338,1509,"[\""Laptop\""]",2384.29,{},279628,0,"""Africa""" +2023-11-24,49339,4585,"[\""Tablet\""]",846.99,"{\""loyalty\"": \""22%\""}",266150,0,"""Asia""" +2024-11-10,49340,7510,"[\""Monitor\"", \""Phone\""]",4523.08,"{\""loyalty\"": \""21%\""}",146854,0,"""Asia""" +2023-08-27,49341,4457,"[\""Keyboard\""]",2996.36,"{\""loyalty\"": \""8%\""}",111911,1,"""Europe""" +2024-03-29,49342,1596,"[\""Keyboard\"", \""Charger\""]",1246.37,{},78088,0,"""Europe""" +2024-01-17,49343,2738,"[\""Laptop\""]",3205.68,"{\"": \""28%\""}",220753,0,"""Asia""" +2023-11-15,49344,3953,"[\""Laptop\""]",3605.31,{},1310,0,"""Asia""" +2023-06-11,49345,8764,"[\""Keyboard\""]",4753.62,{},160359,0,"""Europe""" +2023-02-19,49346,7043,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",894.77,"{\""seasonal\"": \""8%\""}",20924,1,"""North America""" +2024-07-13,49347,7854,"[\""Monitor\"", \""Wireless Mouse\""]",2758.14,"{\""promo\"": \""26%\""}",63861,1,"""South America""" +2024-11-14,49348,3773,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2618.87,{},103195,1,"""North America""" +2023-06-14,49349,855,"[\""Wireless Mouse\"", \""Charger\""]",2743.82,"{\""seasonal\"": \""8%\""}",181244,1,"""Asia""" +2024-03-17,49350,1566,"[\""Headphones\"", \""Tablet\""]",4363.0,"{\"": \""10%\""}",234599,0,"""Asia""" +2024-10-31,49351,1195,"[\""Tablet\"", \""Laptop\""]",4643.7,"{\"": \""8%\""}",252258,0,"""North America""" +2024-02-16,49352,7691,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2361.73,{},115304,0,"""Africa""" +2023-07-25,49353,4374,"[\""Phone\"", \""Charger\""]",4303.86,"{\""loyalty\"": \""25%\""}",6017,0,"""Africa""" +2024-03-14,49354,6612,"[\""Headphones\"", \""Wireless Mouse\""]",2558.31,"{\""loyalty\"": \""9%\""}",29182,1,"""Asia""" +2023-09-26,49355,4097,"[\""Laptop\"", \""Headphones\""]",2726.05,"{\""seasonal\"": \""20%\""}",98258,0,"""Europe""" +2023-11-01,49356,2178,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1895.23,{},20751,0,"""Europe""" +2023-12-19,49357,6553,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1155.05,"{\""seasonal\"": \""14%\""}",292742,1,"""Asia""" +2024-11-23,49358,204,"[\""Headphones\"", \""Wireless Mouse\""]",1295.15,"{\""promo\"": \""27%\""}",178978,1,"""South America""" +2023-08-04,49359,3444,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2972.85,"{\""loyalty\"": \""10%\""}",77733,0,"""Africa""" +2024-12-06,49360,6552,"[\""Tablet\""]",3355.86,{},83171,0,"""South America""" +2024-10-29,49361,2342,"[\""Laptop\"", \""Headphones\""]",4704.17,"{\""promo\"": \""24%\""}",66523,0,"""Asia""" +2023-05-04,49362,7596,"[\""Phone\""]",4439.18,{},184671,1,"""Africa""" +2023-12-08,49363,8111,"[\""Monitor\""]",2803.98,{},173332,0,"""Africa""" +2023-08-17,49364,258,"[\""Keyboard\"", \""Tablet\""]",3328.55,"{\""loyalty\"": \""8%\""}",249236,1,"""Asia""" +2023-04-08,49365,3995,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",675.84,"{\""loyalty\"": \""28%\""}",103020,0,"""South America""" +2023-04-11,49366,3047,"[\""Laptop\"", \""Keyboard\""]",3639.55,{},176135,1,"""South America""" +2023-11-14,49367,4339,"[\""Wireless Mouse\"", \""Charger\""]",1655.61,{},279032,1,"""South America""" +2024-05-06,49368,3246,"[\""Keyboard\""]",1977.1,{},167333,1,"""Africa""" +2023-01-06,49369,3370,"[\""Tablet\"", \""Headphones\""]",1604.26,"{\""seasonal\"": \""22%\""}",8572,0,"""Asia""" +2024-06-12,49370,5281,"[\""Tablet\""]",2997.02,{},296254,1,"""South America""" +2024-02-14,49371,2234,"[\""Headphones\""]",615.35,{},118387,1,"""South America""" +2024-04-08,49372,7020,"[\""Charger\"", \""Laptop\""]",391.82,{},212399,1,"""North America""" +2024-08-01,49373,7739,"[\""Monitor\""]",4397.54,"{\""promo\"": \""17%\""}",182494,0,"""Asia""" +2024-12-10,49374,5997,"[\""Wireless Mouse\"", \""Headphones\""]",953.31,"{\""loyalty\"": \""12%\""}",224781,1,"""Europe""" +2023-11-17,49375,1285,"[\""Headphones\""]",2194.73,{},252803,0,"""Asia""" +2024-12-04,49376,9366,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3959.1,"{\""seasonal\"": \""6%\""}",163450,0,"""Asia""" +2023-11-25,49377,6606,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2517.78,{},157321,1,"""Europe""" +2023-10-02,49378,3054,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2025.82,"{\""loyalty\"": \""6%\""}",209056,1,"""Asia""" +2024-05-04,49379,9474,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2514.12,{},43829,0,"""Asia""" +2024-11-30,49380,9596,"[\""Wireless Mouse\"", \""Headphones\""]",546.33,"{\""loyalty\"": \""28%\""}",114637,1,"""Asia""" +2024-01-29,49381,3559,"[\""Charger\""]",1613.54,{},42991,0,"""North America""" +2023-07-24,49382,1948,"[\""Monitor\""]",1986.47,"{\""loyalty\"": \""27%\""}",191834,0,"""South America""" +2024-09-06,49383,2090,"[\""Wireless Mouse\"", \""Phone\""]",2072.48,"{\""seasonal\"": \""13%\""}",249807,0,"""Asia""" +2024-03-04,49384,8018,"[\""Phone\"", \""Charger\""]",4611.19,"{\""seasonal\"": \""18%\""}",25686,1,"""North America""" +2023-02-05,49385,852,"[\""Monitor\""]",4032.86,{},205508,1,"""Africa""" +2024-06-17,49386,661,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4893.64,{},124176,0,"""Africa""" +2023-01-20,49387,7753,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3683.06,"{\"": \""27%\""}",93977,1,"""South America""" +2023-07-28,49388,5318,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3281.49,{},201038,0,"""Asia""" +2023-02-07,49389,1273,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2738.68,"{\"": \""15%\""}",191707,0,"""North America""" +2024-08-20,49390,1078,"[\""Laptop\""]",1287.86,"{\""loyalty\"": \""18%\""}",283045,1,"""Africa""" +2024-01-09,49391,6218,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",639.52,{},168122,1,"""South America""" +2024-10-16,49392,9091,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",327.58,{},271371,1,"""Asia""" +2024-05-17,49393,285,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3491.87,{},108093,1,"""Africa""" +2024-11-18,49394,4562,"[\""Wireless Mouse\"", \""Charger\""]",2738.72,"{\"": \""24%\""}",262084,0,"""North America""" +2024-05-18,49395,2269,"[\""Charger\""]",1156.66,"{\"": \""13%\""}",22737,0,"""South America""" +2024-02-10,49396,4557,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1535.22,{},189912,1,"""Europe""" +2023-07-01,49397,3917,"[\""Phone\""]",4484.27,"{\""promo\"": \""20%\""}",267132,1,"""Africa""" +2024-03-07,49398,2612,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1926.29,{},101406,1,"""North America""" +2023-02-19,49399,3228,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2531.38,{},49646,1,"""North America""" +2023-06-04,49400,8310,"[\""Headphones\""]",1054.83,"{\""promo\"": \""29%\""}",19353,0,"""South America""" +2024-10-11,49401,3120,"[\""Headphones\"", \""Tablet\""]",93.27,{},29019,0,"""Africa""" +2024-11-22,49402,2982,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1370.77,{},99998,1,"""North America""" +2023-10-10,49403,101,"[\""Keyboard\""]",606.27,{},116132,1,"""North America""" +2023-04-16,49404,7006,"[\""Headphones\""]",1099.16,{},119498,1,"""South America""" +2023-08-21,49405,3489,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",895.57,"{\""promo\"": \""20%\""}",145903,0,"""Asia""" +2023-03-27,49406,4834,"[\""Laptop\""]",4821.57,"{\""promo\"": \""29%\""}",4921,0,"""Europe""" +2023-04-09,49407,7495,"[\""Charger\""]",2067.95,"{\"": \""6%\""}",180967,1,"""South America""" +2023-01-18,49408,126,"[\""Phone\"", \""Keyboard\""]",2975.82,"{\""seasonal\"": \""6%\""}",279605,1,"""South America""" +2024-01-11,49409,3170,"[\""Laptop\"", \""Monitor\""]",1247.58,{},129018,1,"""Africa""" +2023-05-26,49410,4895,"[\""Keyboard\"", \""Laptop\""]",1122.97,"{\""promo\"": \""12%\""}",202262,1,"""Africa""" +2024-08-17,49411,6165,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1350.55,"{\""promo\"": \""17%\""}",100614,0,"""Asia""" +2023-11-25,49412,12,"[\""Wireless Mouse\"", \""Keyboard\""]",1296.26,"{\""loyalty\"": \""21%\""}",189073,1,"""Africa""" +2023-11-27,49413,496,"[\""Laptop\"", \""Wireless Mouse\""]",3150.1,{},266218,1,"""Africa""" +2024-10-21,49414,9326,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2172.55,"{\""loyalty\"": \""6%\""}",265646,1,"""Africa""" +2024-06-15,49415,5793,"[\""Headphones\"", \""Keyboard\""]",4534.98,{},292602,1,"""Africa""" +2023-10-11,49416,5728,"[\""Keyboard\""]",195.3,"{\""seasonal\"": \""6%\""}",100990,0,"""Europe""" +2024-03-07,49417,7079,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3452.46,{},295890,0,"""Africa""" +2024-12-12,49418,1965,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3618.81,{},182094,1,"""South America""" +2024-05-14,49419,847,"[\""Charger\"", \""Wireless Mouse\""]",1607.14,"{\""promo\"": \""12%\""}",41047,1,"""Europe""" +2023-11-13,49420,2569,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3852.75,{},288825,1,"""North America""" +2023-06-07,49421,7711,"[\""Wireless Mouse\""]",297.95,"{\"": \""21%\""}",3405,0,"""North America""" +2023-11-21,49422,3586,"[\""Charger\"", \""Monitor\""]",4422.81,"{\""seasonal\"": \""11%\""}",293488,0,"""Europe""" +2023-10-19,49423,9974,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3432.74,"{\""promo\"": \""21%\""}",95099,1,"""Europe""" +2023-03-10,49424,8304,"[\""Charger\""]",3777.41,"{\"": \""5%\""}",16180,1,"""Africa""" +2024-08-22,49425,5063,"[\""Headphones\""]",590.45,"{\""loyalty\"": \""12%\""}",232052,1,"""Europe""" +2023-06-19,49426,4226,"[\""Phone\""]",4198.02,"{\""loyalty\"": \""7%\""}",37190,0,"""Europe""" +2023-01-24,49427,1475,"[\""Laptop\""]",4997.01,{},53571,1,"""Europe""" +2023-10-18,49428,865,"[\""Monitor\"", \""Phone\""]",4187.6,"{\""promo\"": \""18%\""}",10138,0,"""Europe""" +2024-05-25,49429,5818,"[\""Monitor\"", \""Keyboard\""]",2338.39,{},230282,0,"""South America""" +2024-09-04,49430,8863,"[\""Keyboard\"", \""Laptop\""]",3972.79,"{\""promo\"": \""14%\""}",137994,1,"""South America""" +2023-03-10,49431,5682,"[\""Monitor\"", \""Charger\""]",108.82,"{\"": \""11%\""}",232897,1,"""Africa""" +2023-08-17,49432,2061,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1237.96,"{\""seasonal\"": \""14%\""}",294938,0,"""South America""" +2023-06-19,49433,7094,"[\""Monitor\""]",3915.04,"{\""seasonal\"": \""6%\""}",258420,1,"""South America""" +2024-06-10,49434,6657,"[\""Laptop\"", \""Wireless Mouse\""]",889.27,{},51190,1,"""Europe""" +2024-11-19,49435,286,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2743.3,{},62757,0,"""South America""" +2023-07-04,49436,9400,"[\""Laptop\"", \""Wireless Mouse\""]",1139.13,"{\""seasonal\"": \""15%\""}",113289,1,"""Asia""" +2023-12-03,49437,2649,"[\""Monitor\""]",1945.69,{},192570,1,"""North America""" +2024-05-05,49438,3496,"[\""Monitor\"", \""Phone\""]",1767.97,{},118545,0,"""Asia""" +2024-03-31,49439,5751,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2777.98,{},245025,1,"""Asia""" +2024-10-08,49440,8994,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2187.98,"{\"": \""12%\""}",284092,0,"""Europe""" +2024-01-08,49441,6094,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4890.0,{},104667,1,"""Asia""" +2024-03-28,49442,109,"[\""Charger\""]",3321.0,"{\""seasonal\"": \""16%\""}",182650,1,"""Africa""" +2023-05-02,49443,9293,"[\""Keyboard\"", \""Laptop\""]",3806.21,"{\""seasonal\"": \""9%\""}",121426,1,"""Asia""" +2024-08-18,49444,2416,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4954.23,{},105067,0,"""South America""" +2024-09-23,49445,8233,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3951.82,{},74553,0,"""North America""" +2024-08-28,49446,9825,"[\""Laptop\""]",3417.43,"{\"": \""27%\""}",222491,0,"""South America""" +2023-12-28,49447,2372,"[\""Phone\"", \""Monitor\""]",984.4,{},57421,0,"""South America""" +2023-02-13,49448,960,"[\""Wireless Mouse\""]",2376.49,"{\""loyalty\"": \""29%\""}",192346,1,"""North America""" +2023-03-01,49449,5588,"[\""Laptop\""]",52.63,"{\""promo\"": \""18%\""}",24639,1,"""North America""" +2023-02-24,49450,9377,"[\""Monitor\"", \""Phone\""]",4308.71,"{\""loyalty\"": \""12%\""}",101009,1,"""North America""" +2023-03-03,49451,7420,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4439.77,{},6615,1,"""Asia""" +2023-11-30,49452,4080,"[\""Monitor\"", \""Headphones\""]",4811.75,{},192566,0,"""Africa""" +2023-12-12,49453,9539,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4811.78,"{\""seasonal\"": \""11%\""}",55645,0,"""Asia""" +2024-06-26,49454,9561,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4637.62,"{\""seasonal\"": \""17%\""}",200958,1,"""Europe""" +2024-05-31,49455,8501,"[\""Keyboard\""]",991.26,"{\""seasonal\"": \""7%\""}",214541,0,"""North America""" +2024-08-01,49456,5953,"[\""Monitor\"", \""Headphones\""]",2654.1,"{\""seasonal\"": \""25%\""}",251434,0,"""Asia""" +2024-11-14,49457,5033,"[\""Phone\""]",4903.95,{},117119,0,"""Africa""" +2024-06-30,49458,7775,"[\""Keyboard\""]",1167.15,{},286927,1,"""Europe""" +2024-11-14,49459,8026,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3826.07,"{\""promo\"": \""10%\""}",106645,0,"""Asia""" +2024-11-01,49460,2249,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3769.49,"{\""seasonal\"": \""7%\""}",225018,0,"""South America""" +2024-08-09,49461,3052,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3232.03,"{\""seasonal\"": \""7%\""}",130309,1,"""North America""" +2024-12-22,49462,6550,"[\""Phone\"", \""Headphones\""]",1154.69,"{\""promo\"": \""28%\""}",180384,1,"""Africa""" +2023-03-26,49463,203,"[\""Headphones\"", \""Tablet\""]",4012.53,{},155918,1,"""North America""" +2024-03-16,49464,2352,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3396.33,"{\""seasonal\"": \""29%\""}",276363,1,"""South America""" +2023-01-22,49465,6554,"[\""Keyboard\"", \""Monitor\""]",550.41,"{\""seasonal\"": \""18%\""}",113721,0,"""North America""" +2023-09-26,49466,9417,"[\""Wireless Mouse\"", \""Charger\""]",1424.8,"{\""seasonal\"": \""9%\""}",204977,1,"""Africa""" +2024-01-02,49467,4026,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",833.74,{},190036,0,"""South America""" +2024-02-14,49468,7836,"[\""Monitor\""]",4756.41,"{\""promo\"": \""12%\""}",170084,1,"""North America""" +2023-12-14,49469,9977,"[\""Phone\""]",938.76,{},126683,0,"""Asia""" +2023-01-25,49470,7208,"[\""Charger\""]",2248.59,"{\""seasonal\"": \""26%\""}",171915,0,"""North America""" +2024-05-10,49471,8117,"[\""Laptop\""]",304.56,"{\""promo\"": \""24%\""}",208822,0,"""North America""" +2024-12-13,49472,1685,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",539.55,{},38309,1,"""Asia""" +2023-01-06,49473,7490,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3484.11,"{\"": \""11%\""}",220475,0,"""Europe""" +2024-12-03,49474,5179,"[\""Headphones\""]",1590.61,{},293542,1,"""Europe""" +2023-06-28,49475,8266,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3714.27,"{\""loyalty\"": \""30%\""}",267957,1,"""Africa""" +2024-02-04,49476,898,"[\""Phone\""]",4614.37,{},167922,0,"""Africa""" +2024-03-06,49477,2135,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2050.55,{},69782,0,"""North America""" +2023-01-08,49478,6389,"[\""Charger\"", \""Monitor\""]",1905.94,{},271644,1,"""Africa""" +2024-02-16,49479,5872,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2659.01,{},53129,0,"""North America""" +2024-09-28,49480,6655,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1440.52,"{\""loyalty\"": \""14%\""}",299799,0,"""South America""" +2023-09-08,49481,2757,"[\""Laptop\""]",1323.22,"{\"": \""8%\""}",189803,0,"""Europe""" +2023-12-09,49482,4779,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1052.82,{},104550,1,"""South America""" +2024-07-18,49483,9862,"[\""Wireless Mouse\"", \""Monitor\""]",3092.66,"{\"": \""19%\""}",158028,1,"""Asia""" +2024-12-05,49484,7284,"[\""Phone\""]",1818.76,"{\"": \""24%\""}",183942,1,"""South America""" +2024-12-19,49485,8887,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4701.25,"{\""promo\"": \""16%\""}",47083,1,"""Europe""" +2024-10-28,49486,78,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1924.41,"{\""seasonal\"": \""16%\""}",142186,0,"""Asia""" +2023-12-01,49487,3623,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1599.63,{},131215,0,"""South America""" +2024-03-30,49488,3997,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4894.07,"{\""promo\"": \""6%\""}",120163,0,"""North America""" +2023-05-17,49489,3911,"[\""Keyboard\"", \""Monitor\""]",3389.54,{},163990,0,"""Europe""" +2024-11-07,49490,3546,"[\""Charger\"", \""Wireless Mouse\""]",383.89,"{\""loyalty\"": \""12%\""}",260445,0,"""Europe""" +2023-09-03,49491,9855,"[\""Headphones\""]",650.63,"{\""promo\"": \""30%\""}",35368,0,"""Europe""" +2023-05-11,49492,4713,"[\""Monitor\"", \""Phone\""]",3489.57,{},167787,1,"""South America""" +2024-08-20,49493,7067,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4413.2,{},7085,1,"""Africa""" +2023-02-03,49494,2358,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3690.97,{},67111,1,"""Asia""" +2024-10-22,49495,9132,"[\""Phone\"", \""Tablet\""]",1173.65,{},55459,1,"""Asia""" +2024-03-17,49496,6108,"[\""Monitor\"", \""Headphones\""]",2494.34,{},22633,0,"""Europe""" +2024-08-24,49497,314,"[\""Laptop\""]",2752.84,"{\""promo\"": \""19%\""}",21499,1,"""South America""" +2024-04-24,49498,6822,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4699.83,"{\""promo\"": \""15%\""}",38674,0,"""North America""" +2024-09-16,49499,3365,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",546.3,{},59560,0,"""Europe""" +2023-02-26,49500,542,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4409.5,{},281568,1,"""North America""" +2023-12-02,49501,6195,"[\""Wireless Mouse\"", \""Monitor\""]",730.36,"{\""promo\"": \""30%\""}",135370,1,"""Europe""" +2024-12-29,49502,4114,"[\""Keyboard\"", \""Charger\""]",4260.57,{},232336,1,"""Asia""" +2023-05-27,49503,9663,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2940.42,{},55214,1,"""South America""" +2023-10-15,49504,4989,"[\""Headphones\"", \""Monitor\""]",1862.57,{},127842,0,"""Asia""" +2023-10-22,49505,7839,"[\""Laptop\"", \""Charger\""]",117.34,"{\""promo\"": \""27%\""}",185663,1,"""Africa""" +2024-11-14,49506,5003,"[\""Wireless Mouse\"", \""Headphones\""]",67.24,{},170540,1,"""Asia""" +2023-03-11,49507,8592,"[\""Monitor\""]",1157.2,"{\""loyalty\"": \""10%\""}",163834,1,"""South America""" +2024-02-11,49508,8258,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2913.26,"{\""seasonal\"": \""25%\""}",112621,1,"""Asia""" +2023-04-12,49509,6899,"[\""Tablet\"", \""Phone\""]",2579.48,"{\"": \""21%\""}",16475,1,"""South America""" +2023-12-03,49510,1199,"[\""Keyboard\""]",2455.91,"{\""promo\"": \""21%\""}",189849,0,"""South America""" +2023-05-26,49511,324,"[\""Keyboard\""]",4479.26,"{\"": \""19%\""}",198883,1,"""Europe""" +2024-01-19,49512,823,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3806.51,{},61028,1,"""Europe""" +2024-04-11,49513,1552,"[\""Keyboard\"", \""Wireless Mouse\""]",647.85,{},117796,0,"""North America""" +2024-03-17,49514,9522,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2197.3,{},167124,0,"""Africa""" +2024-01-22,49515,4993,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3521.57,{},230400,1,"""Africa""" +2023-07-23,49516,9419,"[\""Laptop\""]",476.31,{},39346,0,"""Asia""" +2024-09-08,49517,2789,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4874.7,"{\""promo\"": \""16%\""}",253668,1,"""Africa""" +2023-08-05,49518,4530,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",480.08,"{\"": \""7%\""}",200432,0,"""North America""" +2023-03-05,49519,7728,"[\""Wireless Mouse\"", \""Tablet\""]",2703.02,"{\""promo\"": \""20%\""}",51071,1,"""Asia""" +2024-04-22,49520,9601,"[\""Tablet\"", \""Phone\""]",4369.17,{},167080,0,"""Africa""" +2023-01-26,49521,520,"[\""Tablet\""]",1504.0,"{\""promo\"": \""12%\""}",6366,0,"""Africa""" +2024-11-06,49522,4854,"[\""Wireless Mouse\"", \""Phone\""]",235.21,{},70021,1,"""South America""" +2023-03-14,49523,5133,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",318.09,{},14092,0,"""Europe""" +2023-01-10,49524,9784,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4196.87,{},203605,0,"""North America""" +2024-01-18,49525,1053,"[\""Wireless Mouse\""]",101.57,{},236305,1,"""South America""" +2024-08-17,49526,1617,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4958.12,{},62591,1,"""Africa""" +2023-01-31,49527,5405,"[\""Phone\""]",3339.97,{},155433,0,"""Europe""" +2024-10-15,49528,5295,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2410.26,{},1882,0,"""Europe""" +2023-11-12,49529,3489,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3588.03,"{\""seasonal\"": \""7%\""}",30099,0,"""North America""" +2023-03-04,49530,6508,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1332.16,{},148648,1,"""Africa""" +2024-02-12,49531,1586,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1298.03,"{\""loyalty\"": \""6%\""}",144212,1,"""North America""" +2024-04-12,49532,9284,"[\""Headphones\""]",965.19,"{\""seasonal\"": \""25%\""}",296648,1,"""Africa""" +2024-02-05,49533,8594,"[\""Monitor\""]",1931.53,{},209987,1,"""Europe""" +2023-07-10,49534,1312,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3020.99,{},296115,0,"""Europe""" +2023-11-15,49535,8508,"[\""Phone\""]",363.21,"{\""seasonal\"": \""20%\""}",1651,1,"""South America""" +2024-08-22,49536,76,"[\""Tablet\"", \""Headphones\""]",2253.42,{},272036,0,"""North America""" +2023-07-01,49537,8758,"[\""Headphones\"", \""Keyboard\""]",3056.85,"{\""seasonal\"": \""5%\""}",173886,1,"""Asia""" +2023-08-07,49538,7096,"[\""Charger\"", \""Wireless Mouse\""]",3700.46,{},239211,0,"""Asia""" +2023-11-04,49539,1484,"[\""Keyboard\"", \""Monitor\""]",1672.84,"{\"": \""5%\""}",110383,1,"""Asia""" +2024-12-08,49540,9684,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1065.76,"{\""promo\"": \""20%\""}",199928,0,"""Africa""" +2024-09-28,49541,2214,"[\""Wireless Mouse\"", \""Keyboard\""]",1778.56,{},252126,0,"""South America""" +2024-12-18,49542,9516,"[\""Tablet\"", \""Phone\""]",3687.46,{},94651,1,"""Europe""" +2023-12-03,49543,7730,"[\""Tablet\"", \""Headphones\""]",4770.1,"{\""promo\"": \""15%\""}",214566,0,"""Asia""" +2023-01-26,49544,9920,"[\""Tablet\"", \""Monitor\""]",82.43,{},63575,1,"""Africa""" +2024-08-15,49545,7400,"[\""Tablet\"", \""Wireless Mouse\""]",4922.25,"{\""loyalty\"": \""17%\""}",106143,0,"""North America""" +2024-03-05,49546,7681,"[\""Laptop\""]",4006.92,"{\"": \""15%\""}",58150,1,"""Asia""" +2024-09-19,49547,7068,"[\""Monitor\""]",4218.42,{},138001,1,"""North America""" +2024-02-01,49548,5958,"[\""Wireless Mouse\"", \""Monitor\""]",2815.21,"{\""loyalty\"": \""12%\""}",19446,0,"""Asia""" +2024-03-20,49549,7765,"[\""Keyboard\"", \""Monitor\""]",1429.63,"{\""promo\"": \""10%\""}",55512,0,"""Africa""" +2024-09-17,49550,1720,"[\""Charger\"", \""Monitor\""]",2383.48,{},222845,1,"""Africa""" +2024-10-02,49551,1725,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2936.81,"{\"": \""20%\""}",160154,0,"""South America""" +2023-04-29,49552,1507,"[\""Monitor\""]",2755.11,"{\""seasonal\"": \""13%\""}",135122,0,"""North America""" +2024-01-31,49553,9851,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",576.47,{},74079,1,"""South America""" +2024-06-15,49554,4831,"[\""Tablet\""]",1846.28,"{\""promo\"": \""26%\""}",211789,1,"""Africa""" +2024-02-10,49555,9909,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3729.23,"{\""seasonal\"": \""26%\""}",173640,1,"""Europe""" +2024-03-17,49556,9175,"[\""Laptop\""]",4620.76,"{\"": \""11%\""}",193983,1,"""Asia""" +2023-08-21,49557,5390,"[\""Tablet\""]",3567.7,{},277666,0,"""Asia""" +2024-08-13,49558,6346,"[\""Keyboard\"", \""Laptop\""]",3248.23,"{\""seasonal\"": \""13%\""}",181334,0,"""Europe""" +2023-12-08,49559,8418,"[\""Phone\""]",1517.72,"{\""loyalty\"": \""7%\""}",134386,0,"""Africa""" +2024-12-13,49560,9157,"[\""Headphones\"", \""Charger\""]",1500.09,"{\"": \""8%\""}",71050,1,"""South America""" +2023-04-10,49561,4948,"[\""Phone\""]",3583.92,"{\""loyalty\"": \""24%\""}",71773,0,"""Asia""" +2024-02-08,49562,1578,"[\""Monitor\"", \""Tablet\""]",1618.92,{},29726,1,"""South America""" +2023-11-04,49563,5408,"[\""Keyboard\""]",4524.34,{},271259,0,"""Africa""" +2024-11-24,49564,5681,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4418.25,"{\""loyalty\"": \""21%\""}",137847,0,"""Asia""" +2024-09-11,49565,272,"[\""Charger\"", \""Headphones\""]",3604.0,"{\""seasonal\"": \""9%\""}",275662,0,"""Africa""" +2024-05-25,49566,7871,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",688.41,"{\""seasonal\"": \""11%\""}",180131,0,"""North America""" +2023-11-18,49567,3800,"[\""Tablet\"", \""Monitor\""]",3755.43,{},65858,1,"""Europe""" +2024-07-05,49568,8642,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3062.52,"{\"": \""25%\""}",40594,0,"""Europe""" +2024-07-21,49569,3478,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4246.5,"{\""seasonal\"": \""7%\""}",116711,1,"""Africa""" +2023-09-21,49570,9158,"[\""Headphones\"", \""Phone\""]",4183.53,{},105160,0,"""Europe""" +2023-08-25,49571,4856,"[\""Keyboard\""]",776.67,{},63899,0,"""North America""" +2024-07-18,49572,230,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2826.99,{},65092,0,"""Africa""" +2024-12-18,49573,7219,"[\""Headphones\""]",4792.37,{},105304,0,"""Africa""" +2023-08-15,49574,2799,"[\""Headphones\""]",957.38,{},206492,0,"""Europe""" +2024-03-31,49575,8679,"[\""Laptop\"", \""Headphones\""]",2025.09,"{\""promo\"": \""29%\""}",45469,1,"""North America""" +2023-07-17,49576,6248,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",333.25,"{\""loyalty\"": \""17%\""}",115079,0,"""South America""" +2024-05-01,49577,7164,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4589.83,{},281086,1,"""Asia""" +2024-07-05,49578,5762,"[\""Monitor\"", \""Laptop\""]",2386.73,"{\"": \""14%\""}",138391,0,"""Africa""" +2024-01-27,49579,985,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",594.83,{},150369,1,"""Africa""" +2023-03-21,49580,3907,"[\""Tablet\"", \""Laptop\""]",4651.58,{},189414,1,"""Africa""" +2023-05-03,49581,866,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",497.44,"{\""promo\"": \""8%\""}",54286,1,"""Asia""" +2024-11-30,49582,4932,"[\""Headphones\"", \""Keyboard\""]",3053.12,"{\""seasonal\"": \""14%\""}",24525,1,"""Africa""" +2023-02-03,49583,579,"[\""Charger\""]",1926.87,"{\""promo\"": \""13%\""}",107968,0,"""North America""" +2023-07-31,49584,9420,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1557.3,{},282551,1,"""Africa""" +2024-08-15,49585,728,"[\""Wireless Mouse\"", \""Tablet\""]",1509.68,"{\"": \""29%\""}",122076,1,"""North America""" +2023-06-17,49586,6460,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2926.68,"{\""loyalty\"": \""23%\""}",20349,0,"""Asia""" +2023-12-20,49587,8368,"[\""Headphones\""]",368.83,"{\""seasonal\"": \""9%\""}",205728,1,"""South America""" +2023-06-05,49588,2916,"[\""Monitor\"", \""Headphones\""]",2964.03,{},3295,1,"""Asia""" +2024-07-14,49589,5144,"[\""Monitor\""]",1696.29,{},285058,0,"""Asia""" +2023-07-24,49590,570,"[\""Charger\"", \""Wireless Mouse\""]",871.36,"{\""promo\"": \""11%\""}",261951,1,"""Europe""" +2023-03-04,49591,4363,"[\""Monitor\"", \""Charger\""]",246.63,"{\""loyalty\"": \""15%\""}",179937,1,"""Africa""" +2023-05-09,49592,6866,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2664.68,"{\""promo\"": \""23%\""}",207635,1,"""South America""" +2023-02-10,49593,3976,"[\""Wireless Mouse\"", \""Tablet\""]",3473.07,"{\""seasonal\"": \""9%\""}",228270,1,"""Europe""" +2023-12-20,49594,3923,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4234.9,{},123004,0,"""South America""" +2023-04-03,49595,551,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4098.53,{},284364,1,"""Africa""" +2024-02-22,49596,4336,"[\""Phone\""]",2905.81,"{\""loyalty\"": \""18%\""}",281521,0,"""North America""" +2023-09-02,49597,9240,"[\""Laptop\"", \""Monitor\""]",2369.15,{},75953,1,"""Europe""" +2023-06-24,49598,8295,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",699.65,{},65087,0,"""Africa""" +2023-11-07,49599,1798,"[\""Tablet\"", \""Keyboard\""]",1365.56,"{\"": \""7%\""}",267929,1,"""North America""" +2024-09-06,49600,1692,"[\""Keyboard\""]",572.3,"{\""promo\"": \""21%\""}",129849,0,"""Africa""" +2023-05-08,49601,4841,"[\""Monitor\"", \""Wireless Mouse\""]",909.83,"{\""seasonal\"": \""17%\""}",270024,1,"""Europe""" +2023-03-27,49602,1725,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1023.94,{},208839,1,"""Asia""" +2023-08-17,49603,3361,"[\""Wireless Mouse\"", \""Laptop\""]",773.31,{},246900,1,"""South America""" +2023-02-27,49604,4301,"[\""Keyboard\""]",4109.07,"{\""loyalty\"": \""29%\""}",231201,0,"""Asia""" +2023-02-22,49605,2570,"[\""Phone\""]",131.57,{},268610,1,"""South America""" +2024-09-13,49606,8252,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",213.61,{},63671,1,"""Africa""" +2023-08-17,49607,5957,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4350.67,"{\""promo\"": \""23%\""}",245059,0,"""Asia""" +2024-08-27,49608,378,"[\""Wireless Mouse\""]",3547.11,"{\""promo\"": \""26%\""}",197115,1,"""North America""" +2023-11-22,49609,1079,"[\""Phone\"", \""Tablet\""]",1564.45,"{\""seasonal\"": \""30%\""}",159840,0,"""Asia""" +2024-09-01,49610,7678,"[\""Charger\""]",580.03,{},47964,0,"""North America""" +2023-02-22,49611,3372,"[\""Wireless Mouse\""]",2684.2,"{\""loyalty\"": \""10%\""}",163344,1,"""Asia""" +2024-09-04,49612,8735,"[\""Wireless Mouse\"", \""Phone\""]",4917.53,{},255396,1,"""North America""" +2023-06-02,49613,5369,"[\""Tablet\"", \""Charger\""]",3986.91,"{\"": \""20%\""}",94924,0,"""Asia""" +2024-07-07,49614,949,"[\""Phone\"", \""Wireless Mouse\""]",703.25,"{\""seasonal\"": \""8%\""}",237365,0,"""South America""" +2024-08-12,49615,4222,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4929.54,"{\""promo\"": \""27%\""}",10061,0,"""Asia""" +2023-07-30,49616,3622,"[\""Monitor\""]",1494.03,"{\""loyalty\"": \""18%\""}",215499,1,"""North America""" +2024-01-28,49617,3869,"[\""Headphones\""]",1280.33,"{\""loyalty\"": \""12%\""}",13736,1,"""Africa""" +2024-09-17,49618,253,"[\""Charger\""]",1066.85,"{\""seasonal\"": \""8%\""}",79368,1,"""North America""" +2024-05-29,49619,4297,"[\""Laptop\"", \""Phone\""]",1238.89,{},254207,0,"""North America""" +2024-05-31,49620,9647,"[\""Wireless Mouse\""]",773.83,"{\""loyalty\"": \""16%\""}",231625,1,"""Africa""" +2023-10-31,49621,1695,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4059.48,"{\""promo\"": \""18%\""}",159780,1,"""Africa""" +2023-07-12,49622,6663,"[\""Laptop\""]",2935.85,{},32424,1,"""North America""" +2023-10-17,49623,5303,"[\""Tablet\"", \""Headphones\""]",3393.02,{},296751,1,"""Africa""" +2024-02-02,49624,9333,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1385.65,{},75431,0,"""South America""" +2023-03-05,49625,4895,"[\""Laptop\""]",2638.47,{},228178,0,"""Europe""" +2023-05-28,49626,6577,"[\""Monitor\"", \""Headphones\""]",873.72,"{\""seasonal\"": \""24%\""}",58057,0,"""Asia""" +2024-04-26,49627,5911,"[\""Wireless Mouse\"", \""Laptop\""]",3101.48,"{\"": \""19%\""}",284248,1,"""Europe""" +2024-10-22,49628,827,"[\""Headphones\"", \""Laptop\""]",2552.53,{},106343,0,"""North America""" +2023-11-16,49629,4796,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2735.18,{},229663,1,"""North America""" +2023-01-25,49630,8403,"[\""Laptop\"", \""Charger\""]",3007.67,{},100242,1,"""Africa""" +2023-01-13,49631,1024,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4111.22,{},161868,0,"""Europe""" +2024-11-15,49632,1930,"[\""Charger\""]",3452.55,{},125427,1,"""North America""" +2024-06-15,49633,4698,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3195.9,{},150745,1,"""Europe""" +2024-03-01,49634,6996,"[\""Laptop\""]",2708.33,{},256646,1,"""North America""" +2024-04-22,49635,3667,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1014.52,"{\""promo\"": \""5%\""}",105404,0,"""Asia""" +2023-06-22,49636,2976,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2925.44,{},246712,1,"""North America""" +2024-06-14,49637,893,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2388.08,"{\""seasonal\"": \""5%\""}",99760,0,"""Asia""" +2024-04-02,49638,6789,"[\""Laptop\""]",2358.18,"{\""promo\"": \""25%\""}",131584,1,"""North America""" +2024-10-22,49639,2090,"[\""Headphones\""]",3946.89,"{\"": \""24%\""}",62339,0,"""South America""" +2024-04-11,49640,6362,"[\""Monitor\"", \""Keyboard\""]",3713.33,"{\""loyalty\"": \""15%\""}",165720,1,"""Asia""" +2024-07-10,49641,1294,"[\""Headphones\"", \""Charger\""]",2305.62,{},90484,0,"""Europe""" +2024-11-01,49642,6703,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1038.27,{},231283,0,"""Europe""" +2023-10-18,49643,3606,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4066.7,"{\"": \""9%\""}",215971,1,"""Africa""" +2024-12-04,49644,8021,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4325.3,"{\""loyalty\"": \""9%\""}",77388,1,"""Asia""" +2024-07-05,49645,8232,"[\""Tablet\"", \""Charger\""]",1308.61,{},277270,0,"""South America""" +2023-05-06,49646,2315,"[\""Tablet\""]",2871.65,{},74706,1,"""North America""" +2023-05-11,49647,2387,"[\""Monitor\"", \""Charger\""]",4050.0,"{\""seasonal\"": \""8%\""}",99940,1,"""Europe""" +2023-05-06,49648,9382,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4765.97,"{\""promo\"": \""15%\""}",7907,0,"""North America""" +2024-02-18,49649,5221,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4554.84,{},159714,1,"""South America""" +2024-11-11,49650,4638,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3056.16,"{\""loyalty\"": \""13%\""}",235755,1,"""North America""" +2024-11-24,49651,9822,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3780.05,{},289445,0,"""Asia""" +2023-08-14,49652,2132,"[\""Laptop\"", \""Tablet\""]",2386.95,"{\"": \""23%\""}",79534,1,"""South America""" +2024-08-14,49653,1553,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1215.02,"{\""promo\"": \""18%\""}",84182,1,"""North America""" +2023-11-06,49654,6136,"[\""Laptop\""]",3644.72,"{\""loyalty\"": \""5%\""}",150437,1,"""North America""" +2023-04-22,49655,7114,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2758.31,"{\""loyalty\"": \""5%\""}",167923,0,"""Africa""" +2023-01-14,49656,8871,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3733.28,"{\""promo\"": \""18%\""}",164023,1,"""North America""" +2024-04-08,49657,2550,"[\""Monitor\""]",4034.42,"{\""promo\"": \""28%\""}",146479,0,"""Asia""" +2023-06-27,49658,3056,"[\""Wireless Mouse\""]",837.06,"{\""loyalty\"": \""22%\""}",60008,0,"""North America""" +2024-12-29,49659,1984,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",85.97,"{\""loyalty\"": \""10%\""}",57476,1,"""Africa""" +2023-02-03,49660,7903,"[\""Wireless Mouse\"", \""Charger\""]",2665.22,{},27504,1,"""Africa""" +2024-03-22,49661,9902,"[\""Phone\"", \""Monitor\""]",610.06,{},283452,1,"""North America""" +2024-02-16,49662,905,"[\""Tablet\"", \""Monitor\""]",4596.95,"{\""seasonal\"": \""26%\""}",185949,0,"""Africa""" +2024-03-01,49663,9806,"[\""Laptop\""]",568.79,"{\"": \""8%\""}",59474,1,"""Europe""" +2024-10-14,49664,387,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1769.09,{},111680,1,"""Europe""" +2023-12-11,49665,1895,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3469.16,{},288018,0,"""Europe""" +2024-02-25,49666,4553,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4567.21,{},179111,1,"""Africa""" +2023-05-24,49667,8901,"[\""Laptop\""]",1036.11,{},87939,0,"""South America""" +2023-11-04,49668,4248,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2384.87,{},166071,0,"""Asia""" +2023-12-13,49669,1638,"[\""Wireless Mouse\"", \""Charger\""]",472.38,{},39265,1,"""Asia""" +2023-11-04,49670,4761,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3149.51,"{\""seasonal\"": \""10%\""}",192670,0,"""North America""" +2023-11-03,49671,5414,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2082.94,{},176902,1,"""Europe""" +2023-05-22,49672,3409,"[\""Headphones\""]",1503.27,{},247617,0,"""Europe""" +2024-05-13,49673,3653,"[\""Phone\"", \""Charger\""]",984.61,{},202664,1,"""Europe""" +2023-04-22,49674,1763,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4472.22,"{\""promo\"": \""14%\""}",262642,0,"""Africa""" +2024-01-11,49675,259,"[\""Laptop\"", \""Charger\""]",4883.88,{},31706,1,"""North America""" +2023-04-17,49676,3382,"[\""Laptop\""]",1390.23,"{\""promo\"": \""9%\""}",76846,0,"""Africa""" +2024-05-05,49677,2704,"[\""Tablet\"", \""Charger\""]",1167.05,{},116313,1,"""Europe""" +2023-06-23,49678,1761,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",377.96,{},118669,0,"""Asia""" +2024-02-06,49679,7953,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4187.04,{},70918,0,"""Africa""" +2024-03-01,49680,3406,"[\""Phone\"", \""Monitor\""]",4521.74,"{\""promo\"": \""28%\""}",100497,0,"""Asia""" +2024-05-06,49681,8439,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3256.73,{},125068,0,"""Europe""" +2024-03-23,49682,9187,"[\""Phone\""]",2544.24,"{\""seasonal\"": \""17%\""}",35501,0,"""Africa""" +2024-03-15,49683,8228,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2306.27,"{\""seasonal\"": \""21%\""}",239489,1,"""North America""" +2024-06-01,49684,4561,"[\""Laptop\"", \""Headphones\""]",693.0,{},134451,1,"""Europe""" +2023-05-12,49685,3790,"[\""Monitor\""]",387.51,{},95446,1,"""North America""" +2024-08-18,49686,3952,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4484.2,{},59735,0,"""South America""" +2024-02-13,49687,5161,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1765.8,"{\"": \""24%\""}",166333,0,"""Asia""" +2024-01-15,49688,7810,"[\""Phone\""]",1648.91,{},234958,0,"""South America""" +2024-06-16,49689,638,"[\""Phone\"", \""Keyboard\""]",711.46,"{\""loyalty\"": \""15%\""}",278457,1,"""Africa""" +2023-12-31,49690,8064,"[\""Charger\""]",2264.25,"{\""seasonal\"": \""9%\""}",84838,1,"""Asia""" +2023-04-18,49691,7347,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1723.66,{},53702,0,"""South America""" +2024-09-01,49692,1707,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1914.63,"{\"": \""25%\""}",184198,1,"""North America""" +2023-01-18,49693,6047,"[\""Wireless Mouse\"", \""Tablet\""]",4178.23,{},23256,1,"""Africa""" +2023-04-17,49694,9259,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1546.37,"{\""seasonal\"": \""27%\""}",285708,0,"""Asia""" +2024-03-09,49695,7859,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1392.63,{},292316,1,"""Asia""" +2023-02-04,49696,7981,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3383.76,{},50687,1,"""Africa""" +2023-06-29,49697,1373,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",135.56,{},245054,1,"""South America""" +2024-02-11,49698,7571,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3467.34,{},107735,0,"""Africa""" +2024-01-06,49699,872,"[\""Keyboard\""]",2663.42,"{\"": \""17%\""}",112085,1,"""North America""" +2024-01-03,49700,9909,"[\""Charger\"", \""Monitor\""]",2318.07,"{\""promo\"": \""19%\""}",287445,1,"""South America""" +2023-03-11,49701,7868,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2401.82,"{\"": \""11%\""}",219607,1,"""Asia""" +2023-11-08,49702,1217,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1285.26,"{\""promo\"": \""29%\""}",186172,0,"""North America""" +2023-02-06,49703,8123,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3339.73,"{\"": \""27%\""}",168585,1,"""Europe""" +2023-06-05,49704,704,"[\""Phone\"", \""Monitor\""]",2964.44,{},4519,0,"""Asia""" +2024-02-04,49705,742,"[\""Headphones\"", \""Tablet\""]",293.23,"{\""loyalty\"": \""23%\""}",261726,0,"""South America""" +2023-03-30,49706,1835,"[\""Monitor\""]",2954.95,{},296766,0,"""Africa""" +2024-09-03,49707,2447,"[\""Laptop\""]",1213.08,"{\"": \""5%\""}",141047,1,"""South America""" +2024-09-28,49708,193,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",268.84,{},67318,1,"""Africa""" +2023-06-01,49709,8488,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1652.73,"{\""seasonal\"": \""14%\""}",60044,0,"""South America""" +2024-08-06,49710,4724,"[\""Tablet\"", \""Laptop\""]",2132.1,{},182258,1,"""Asia""" +2023-11-10,49711,3570,"[\""Tablet\""]",596.71,{},156982,0,"""Asia""" +2024-07-18,49712,4213,"[\""Headphones\"", \""Tablet\""]",253.33,"{\""loyalty\"": \""17%\""}",24559,1,"""Asia""" +2024-01-05,49713,1371,"[\""Wireless Mouse\""]",4087.77,"{\"": \""9%\""}",52138,1,"""Europe""" +2023-10-07,49714,2742,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1557.33,"{\""loyalty\"": \""20%\""}",102782,1,"""South America""" +2023-06-25,49715,9404,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",425.46,{},89396,0,"""Europe""" +2024-08-16,49716,4544,"[\""Tablet\""]",2667.99,"{\""seasonal\"": \""7%\""}",195124,1,"""Africa""" +2023-08-25,49717,8018,"[\""Keyboard\""]",1281.41,{},179477,1,"""North America""" +2024-10-25,49718,1308,"[\""Headphones\"", \""Laptop\""]",4335.01,"{\"": \""5%\""}",91838,1,"""Asia""" +2023-03-26,49719,7124,"[\""Headphones\"", \""Monitor\""]",245.26,"{\""seasonal\"": \""21%\""}",3865,0,"""Europe""" +2023-05-08,49720,6647,"[\""Monitor\""]",583.95,"{\""loyalty\"": \""11%\""}",197539,0,"""Europe""" +2023-02-05,49721,6265,"[\""Monitor\""]",3156.07,{},215655,0,"""North America""" +2024-09-18,49722,5445,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4199.36,{},12472,1,"""Europe""" +2024-06-05,49723,9587,"[\""Headphones\""]",710.48,"{\"": \""29%\""}",267776,1,"""South America""" +2024-04-24,49724,534,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2106.9,{},209918,1,"""South America""" +2024-11-28,49725,4257,"[\""Headphones\"", \""Keyboard\""]",473.36,"{\"": \""25%\""}",33315,0,"""Africa""" +2024-07-03,49726,6914,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3596.93,{},264259,0,"""Asia""" +2024-07-09,49727,3540,"[\""Laptop\""]",711.82,"{\""seasonal\"": \""24%\""}",278209,1,"""Africa""" +2024-04-06,49728,2530,"[\""Tablet\""]",2997.56,"{\"": \""29%\""}",157763,0,"""South America""" +2023-02-04,49729,3547,"[\""Keyboard\""]",805.34,"{\""promo\"": \""24%\""}",196811,1,"""North America""" +2023-10-11,49730,4048,"[\""Laptop\""]",58.58,"{\""promo\"": \""17%\""}",126158,1,"""Asia""" +2024-04-11,49731,8063,"[\""Monitor\"", \""Keyboard\""]",3922.82,"{\""loyalty\"": \""23%\""}",123573,0,"""Africa""" +2024-11-30,49732,602,"[\""Keyboard\""]",124.28,{},219979,1,"""Europe""" +2023-10-10,49733,6026,"[\""Phone\""]",4086.41,"{\"": \""17%\""}",149645,1,"""Asia""" +2024-01-07,49734,4965,"[\""Charger\""]",1690.35,"{\"": \""23%\""}",4679,1,"""Asia""" +2024-10-11,49735,8342,"[\""Wireless Mouse\"", \""Headphones\""]",4279.61,{},42322,1,"""North America""" +2024-02-04,49736,1269,"[\""Charger\""]",1532.6,"{\""loyalty\"": \""13%\""}",242032,0,"""Africa""" +2024-05-22,49737,5327,"[\""Tablet\"", \""Phone\""]",2857.27,"{\""seasonal\"": \""29%\""}",35277,1,"""Asia""" +2024-08-12,49738,2028,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",705.76,{},152812,0,"""Asia""" +2023-03-29,49739,7372,"[\""Tablet\""]",3336.84,{},121499,0,"""Asia""" +2024-10-15,49740,6147,"[\""Headphones\""]",873.91,"{\"": \""16%\""}",182732,0,"""Africa""" +2023-07-12,49741,9742,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",130.15,"{\""promo\"": \""13%\""}",273377,1,"""Asia""" +2023-10-25,49742,9054,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4076.2,{},37145,0,"""Asia""" +2023-10-15,49743,2,"[\""Wireless Mouse\""]",4057.93,"{\"": \""7%\""}",115974,0,"""Europe""" +2023-03-04,49744,4851,"[\""Monitor\""]",3567.25,"{\"": \""9%\""}",133762,0,"""South America""" +2023-11-05,49745,5617,"[\""Monitor\"", \""Laptop\""]",2306.28,{},268016,0,"""North America""" +2023-07-19,49746,4601,"[\""Phone\""]",4217.01,"{\""promo\"": \""30%\""}",47322,0,"""South America""" +2024-09-17,49747,9679,"[\""Laptop\"", \""Wireless Mouse\""]",2563.64,{},285874,0,"""North America""" +2024-05-04,49748,8650,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4687.39,"{\""loyalty\"": \""15%\""}",83629,1,"""Asia""" +2024-03-25,49749,9915,"[\""Monitor\""]",4381.97,{},172218,1,"""Europe""" +2024-02-05,49750,4415,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1817.15,"{\""seasonal\"": \""27%\""}",58994,1,"""Africa""" +2024-03-22,49751,2656,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4983.04,"{\"": \""19%\""}",213767,1,"""South America""" +2023-02-27,49752,9835,"[\""Phone\""]",820.73,{},270271,0,"""Asia""" +2024-11-19,49753,332,"[\""Phone\"", \""Wireless Mouse\""]",1034.08,{},252835,0,"""South America""" +2023-08-24,49754,755,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1182.53,"{\""promo\"": \""5%\""}",62915,0,"""Asia""" +2023-07-23,49755,9928,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1791.43,{},225329,1,"""Asia""" +2023-07-24,49756,4881,"[\""Charger\"", \""Phone\""]",3668.16,"{\""loyalty\"": \""26%\""}",69034,0,"""Europe""" +2024-12-17,49757,9006,"[\""Laptop\"", \""Wireless Mouse\""]",138.12,"{\""promo\"": \""29%\""}",173053,0,"""Asia""" +2024-03-08,49758,6366,"[\""Headphones\""]",4024.09,{},256343,1,"""Africa""" +2023-05-18,49759,7293,"[\""Wireless Mouse\""]",4776.69,"{\""seasonal\"": \""8%\""}",64160,0,"""North America""" +2023-06-30,49760,4236,"[\""Monitor\""]",4989.05,{},51755,1,"""North America""" +2024-04-27,49761,5758,"[\""Keyboard\""]",772.49,"{\""seasonal\"": \""13%\""}",298864,0,"""Europe""" +2024-10-16,49762,4682,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4070.53,"{\""loyalty\"": \""17%\""}",5487,1,"""South America""" +2024-03-11,49763,2049,"[\""Keyboard\""]",2211.59,{},160655,0,"""Asia""" +2023-02-06,49764,7036,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4409.98,{},227548,0,"""Asia""" +2024-05-16,49765,8539,"[\""Wireless Mouse\""]",3880.6,"{\"": \""8%\""}",223159,0,"""Europe""" +2023-03-07,49766,4819,"[\""Laptop\"", \""Headphones\""]",3873.38,{},271093,0,"""North America""" +2023-09-17,49767,1203,"[\""Charger\"", \""Headphones\""]",4377.22,"{\""seasonal\"": \""29%\""}",46353,0,"""South America""" +2023-09-28,49768,468,"[\""Phone\""]",3768.96,"{\""loyalty\"": \""27%\""}",76797,0,"""South America""" +2023-08-01,49769,1799,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4456.79,"{\""promo\"": \""25%\""}",212552,1,"""South America""" +2023-01-17,49770,6573,"[\""Monitor\"", \""Charger\""]",1992.53,{},23809,1,"""South America""" +2023-08-01,49771,8415,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1593.19,"{\""loyalty\"": \""26%\""}",106093,1,"""South America""" +2023-02-18,49772,3245,"[\""Laptop\"", \""Tablet\""]",856.86,"{\""promo\"": \""8%\""}",32866,1,"""South America""" +2023-08-18,49773,6688,"[\""Phone\""]",1627.04,"{\"": \""8%\""}",170931,0,"""North America""" +2023-05-08,49774,9335,"[\""Wireless Mouse\"", \""Tablet\""]",538.24,"{\""promo\"": \""19%\""}",172470,1,"""Africa""" +2023-06-14,49775,4412,"[\""Keyboard\"", \""Phone\""]",210.43,"{\""loyalty\"": \""8%\""}",58310,1,"""South America""" +2023-11-24,49776,9079,"[\""Headphones\""]",1634.34,{},124792,0,"""Europe""" +2023-01-13,49777,5309,"[\""Monitor\""]",1123.08,{},173301,1,"""Europe""" +2024-05-07,49778,9916,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3772.05,{},276527,0,"""Asia""" +2023-04-16,49779,1380,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2572.05,"{\""seasonal\"": \""23%\""}",165764,1,"""Asia""" +2024-12-12,49780,9545,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4781.01,{},232561,0,"""Africa""" +2024-09-26,49781,2562,"[\""Phone\"", \""Laptop\""]",2693.89,{},53814,1,"""North America""" +2023-06-08,49782,5530,"[\""Tablet\""]",2989.85,{},225789,0,"""South America""" +2024-04-01,49783,2307,"[\""Headphones\"", \""Monitor\""]",1202.8,"{\""loyalty\"": \""10%\""}",145942,1,"""South America""" +2023-09-23,49784,2469,"[\""Monitor\"", \""Tablet\""]",3769.33,"{\""seasonal\"": \""28%\""}",255408,0,"""Africa""" +2024-05-21,49785,1654,"[\""Headphones\""]",4651.86,{},17357,1,"""South America""" +2024-03-07,49786,3657,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3254.85,{},80177,1,"""Africa""" +2023-11-02,49787,4206,"[\""Monitor\""]",1802.77,{},251620,0,"""South America""" +2023-09-02,49788,3081,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3926.14,{},103210,0,"""Africa""" +2023-04-12,49789,4781,"[\""Headphones\"", \""Monitor\""]",2354.32,"{\""seasonal\"": \""26%\""}",207051,1,"""South America""" +2024-03-17,49790,3250,"[\""Charger\""]",1508.04,"{\""loyalty\"": \""22%\""}",291523,0,"""South America""" +2024-04-11,49791,5936,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1683.75,"{\""seasonal\"": \""23%\""}",256573,1,"""North America""" +2023-01-29,49792,4422,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1010.67,{},299073,1,"""North America""" +2024-12-09,49793,3427,"[\""Laptop\""]",1053.6,{},226654,0,"""North America""" +2024-01-13,49794,3832,"[\""Charger\""]",4234.66,{},70996,0,"""Europe""" +2023-08-05,49795,5960,"[\""Headphones\"", \""Keyboard\""]",4031.98,{},198040,1,"""North America""" +2024-08-24,49796,9758,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3689.78,"{\"": \""18%\""}",131338,0,"""Europe""" +2024-11-21,49797,5337,"[\""Headphones\""]",3871.83,"{\""seasonal\"": \""28%\""}",82832,0,"""South America""" +2024-07-28,49798,6066,"[\""Charger\"", \""Phone\""]",3658.2,"{\""seasonal\"": \""10%\""}",163730,0,"""North America""" +2024-03-03,49799,4754,"[\""Phone\"", \""Wireless Mouse\""]",3636.6,"{\""seasonal\"": \""10%\""}",76679,0,"""South America""" +2024-10-27,49800,1557,"[\""Charger\"", \""Headphones\""]",2548.55,"{\""promo\"": \""14%\""}",112072,0,"""Europe""" +2024-03-15,49801,7896,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4764.99,{},8083,0,"""Asia""" +2023-05-23,49802,1232,"[\""Keyboard\"", \""Tablet\""]",1443.0,{},110926,1,"""Europe""" +2023-09-15,49803,7131,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",454.94,"{\""promo\"": \""14%\""}",84395,0,"""South America""" +2023-03-17,49804,1842,"[\""Charger\"", \""Wireless Mouse\""]",4146.81,{},17896,1,"""North America""" +2024-07-21,49805,4930,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4941.94,"{\""loyalty\"": \""16%\""}",19307,1,"""South America""" +2023-07-10,49806,2431,"[\""Laptop\""]",886.37,"{\""promo\"": \""25%\""}",270214,1,"""Asia""" +2023-08-25,49807,5432,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2087.28,"{\""seasonal\"": \""8%\""}",283390,0,"""Europe""" +2023-08-11,49808,8248,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1310.35,{},193684,1,"""South America""" +2023-11-28,49809,8771,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2848.55,{},280225,0,"""South America""" +2024-04-25,49810,121,"[\""Charger\"", \""Phone\""]",2690.05,"{\""seasonal\"": \""19%\""}",188820,0,"""North America""" +2023-01-20,49811,2983,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2705.84,{},170943,1,"""Asia""" +2024-03-23,49812,8642,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3644.93,"{\""loyalty\"": \""11%\""}",204616,1,"""Asia""" +2023-11-02,49813,6904,"[\""Charger\"", \""Keyboard\""]",2746.79,{},131159,1,"""Africa""" +2024-08-17,49814,1154,"[\""Headphones\"", \""Laptop\""]",2772.16,{},188494,1,"""Europe""" +2024-02-09,49815,1329,"[\""Tablet\"", \""Headphones\""]",863.1,"{\""loyalty\"": \""17%\""}",91290,0,"""Europe""" +2024-04-09,49816,7844,"[\""Phone\"", \""Charger\""]",1302.22,"{\"": \""12%\""}",49090,0,"""North America""" +2023-03-24,49817,1929,"[\""Phone\""]",2190.98,"{\""seasonal\"": \""17%\""}",240578,0,"""Asia""" +2023-01-09,49818,1760,"[\""Laptop\"", \""Headphones\""]",3967.87,{},266668,0,"""North America""" +2023-08-14,49819,3142,"[\""Laptop\""]",4034.54,"{\""promo\"": \""16%\""}",127788,0,"""North America""" +2023-11-02,49820,6970,"[\""Tablet\"", \""Laptop\""]",4983.15,{},205785,0,"""Asia""" +2023-02-03,49821,7674,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1179.4,{},297772,0,"""Europe""" +2024-09-09,49822,870,"[\""Wireless Mouse\""]",1647.54,{},169697,0,"""Africa""" +2023-04-09,49823,2921,"[\""Wireless Mouse\"", \""Laptop\""]",4903.79,{},164798,0,"""South America""" +2024-01-27,49824,686,"[\""Keyboard\"", \""Phone\""]",4123.67,{},213178,0,"""Europe""" +2024-09-20,49825,6493,"[\""Phone\""]",185.71,"{\""seasonal\"": \""23%\""}",167727,0,"""North America""" +2023-10-26,49826,2388,"[\""Laptop\"", \""Phone\""]",77.08,{},53670,1,"""Europe""" +2024-09-16,49827,3731,"[\""Tablet\""]",3855.31,"{\"": \""23%\""}",258566,1,"""North America""" +2024-07-29,49828,8206,"[\""Tablet\""]",2419.58,"{\"": \""5%\""}",246139,1,"""South America""" +2023-11-22,49829,5361,"[\""Phone\"", \""Charger\""]",4596.63,{},99083,1,"""South America""" +2023-11-26,49830,255,"[\""Wireless Mouse\"", \""Keyboard\""]",466.16,{},243790,1,"""South America""" +2023-06-02,49831,4590,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1015.93,{},69320,1,"""Europe""" +2023-09-13,49832,2312,"[\""Laptop\"", \""Monitor\""]",4864.78,{},256773,1,"""South America""" +2023-10-24,49833,4610,"[\""Phone\""]",1298.07,{},221740,0,"""South America""" +2023-10-31,49834,2494,"[\""Phone\"", \""Wireless Mouse\""]",444.65,"{\""promo\"": \""9%\""}",37194,0,"""Europe""" +2024-03-05,49835,2657,"[\""Charger\""]",2875.34,{},41794,0,"""Europe""" +2024-07-30,49836,7041,"[\""Charger\"", \""Monitor\""]",3326.83,"{\""seasonal\"": \""19%\""}",219842,1,"""South America""" +2023-06-10,49837,729,"[\""Wireless Mouse\""]",1669.96,{},218057,1,"""North America""" +2024-02-27,49838,6951,"[\""Laptop\""]",3897.39,"{\""loyalty\"": \""5%\""}",115758,0,"""Africa""" +2023-11-01,49839,6532,"[\""Tablet\""]",2442.94,"{\""promo\"": \""8%\""}",114908,0,"""Asia""" +2023-05-07,49840,5278,"[\""Phone\"", \""Headphones\""]",1027.14,{},231874,0,"""Africa""" +2024-02-18,49841,555,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",126.31,"{\""promo\"": \""7%\""}",206760,1,"""South America""" +2024-05-18,49842,4080,"[\""Laptop\""]",2467.18,"{\"": \""23%\""}",26884,1,"""Africa""" +2024-04-02,49843,950,"[\""Tablet\""]",2254.14,"{\"": \""12%\""}",91907,1,"""South America""" +2023-01-02,49844,3087,"[\""Keyboard\""]",102.77,"{\"": \""30%\""}",208442,1,"""South America""" +2024-12-09,49845,2762,"[\""Tablet\"", \""Headphones\""]",908.07,"{\"": \""24%\""}",246099,0,"""North America""" +2023-10-08,49846,7908,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1638.59,{},259937,0,"""South America""" +2023-09-17,49847,1859,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2618.56,{},255115,1,"""Africa""" +2023-11-17,49848,5054,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3001.55,"{\""seasonal\"": \""24%\""}",221034,1,"""Africa""" +2023-03-22,49849,2244,"[\""Wireless Mouse\""]",2067.89,{},35102,1,"""Europe""" +2023-07-02,49850,9286,"[\""Headphones\"", \""Keyboard\""]",2858.03,{},61605,0,"""Europe""" +2024-07-30,49851,2926,"[\""Monitor\""]",2489.49,"{\""promo\"": \""20%\""}",124671,0,"""Africa""" +2023-01-05,49852,1156,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4688.57,{},67717,0,"""North America""" +2023-06-13,49853,6107,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2686.07,{},216495,0,"""Europe""" +2023-08-18,49854,7856,"[\""Wireless Mouse\"", \""Headphones\""]",4818.43,"{\""promo\"": \""13%\""}",16120,1,"""Asia""" +2023-05-15,49855,8685,"[\""Wireless Mouse\"", \""Charger\""]",687.17,"{\""promo\"": \""29%\""}",105878,1,"""Asia""" +2023-02-02,49856,2501,"[\""Tablet\""]",4203.04,"{\"": \""14%\""}",173213,1,"""Asia""" +2023-09-14,49857,7579,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1714.62,{},92088,0,"""Africa""" +2023-09-09,49858,4459,"[\""Monitor\"", \""Laptop\""]",3853.98,"{\""loyalty\"": \""19%\""}",68682,1,"""Europe""" +2024-11-11,49859,2683,"[\""Tablet\""]",4998.43,{},45872,0,"""South America""" +2023-05-08,49860,5214,"[\""Laptop\""]",4960.31,{},55887,1,"""Europe""" +2024-10-19,49861,9466,"[\""Laptop\""]",219.64,{},114394,1,"""Africa""" +2023-12-02,49862,4524,"[\""Monitor\"", \""Headphones\""]",2920.4,{},135352,1,"""North America""" +2023-04-04,49863,3884,"[\""Headphones\"", \""Monitor\""]",3905.47,{},266611,0,"""Asia""" +2023-12-18,49864,6892,"[\""Laptop\"", \""Charger\""]",4497.53,"{\""promo\"": \""10%\""}",210254,0,"""Asia""" +2024-01-20,49865,1929,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4345.04,"{\""loyalty\"": \""12%\""}",290986,1,"""Asia""" +2024-11-27,49866,3814,"[\""Phone\""]",4423.17,{},278197,0,"""North America""" +2023-09-08,49867,4788,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1278.87,{},7048,1,"""South America""" +2024-08-19,49868,2526,"[\""Keyboard\""]",1680.62,"{\"": \""10%\""}",229297,1,"""South America""" +2024-06-14,49869,4047,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",974.48,"{\"": \""8%\""}",97347,1,"""South America""" +2024-05-11,49870,9581,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4170.36,{},65458,1,"""Europe""" +2023-09-19,49871,9348,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",408.57,"{\""seasonal\"": \""6%\""}",20436,0,"""Africa""" +2023-02-28,49872,3745,"[\""Monitor\""]",424.64,{},36251,0,"""South America""" +2024-08-28,49873,5290,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1065.75,"{\""seasonal\"": \""7%\""}",185306,0,"""Asia""" +2023-11-03,49874,6759,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2791.77,"{\""promo\"": \""7%\""}",54060,0,"""Europe""" +2024-06-23,49875,6253,"[\""Monitor\"", \""Headphones\""]",2034.67,"{\""promo\"": \""18%\""}",269239,1,"""Africa""" +2023-12-21,49876,7891,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3981.37,{},192720,1,"""South America""" +2023-05-31,49877,6699,"[\""Phone\""]",1416.53,"{\""promo\"": \""20%\""}",244092,1,"""Africa""" +2023-01-03,49878,7594,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",155.58,"{\""loyalty\"": \""29%\""}",260662,0,"""Asia""" +2023-12-12,49879,3638,"[\""Laptop\""]",4227.92,{},80562,1,"""North America""" +2024-02-01,49880,3761,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3570.65,{},94848,0,"""Europe""" +2024-06-27,49881,2264,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2570.51,"{\""promo\"": \""17%\""}",267889,0,"""Africa""" +2024-07-31,49882,5966,"[\""Tablet\"", \""Charger\""]",2007.69,"{\""promo\"": \""30%\""}",81314,0,"""North America""" +2023-11-23,49883,1796,"[\""Keyboard\""]",1300.58,{},150425,0,"""North America""" +2024-10-07,49884,9943,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2120.19,{},170470,1,"""Europe""" +2023-03-21,49885,4122,"[\""Charger\"", \""Phone\"", \""Tablet\""]",170.41,{},32244,1,"""North America""" +2023-01-27,49886,9290,"[\""Monitor\""]",4417.82,{},128170,1,"""Africa""" +2023-10-03,49887,1880,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2616.27,"{\"": \""22%\""}",271314,1,"""North America""" +2023-06-22,49888,7253,"[\""Wireless Mouse\""]",227.52,"{\"": \""13%\""}",185670,0,"""Europe""" +2023-01-26,49889,5406,"[\""Keyboard\"", \""Tablet\""]",1262.93,"{\""loyalty\"": \""13%\""}",76764,1,"""Europe""" +2023-03-28,49890,197,"[\""Charger\""]",3285.61,{},191994,0,"""Africa""" +2024-11-21,49891,2234,"[\""Monitor\""]",1667.83,"{\"": \""16%\""}",30700,1,"""Africa""" +2024-01-10,49892,2628,"[\""Wireless Mouse\""]",3483.61,{},60851,0,"""North America""" +2023-08-13,49893,3208,"[\""Keyboard\"", \""Wireless Mouse\""]",4338.3,{},281812,0,"""South America""" +2023-11-06,49894,8381,"[\""Monitor\"", \""Phone\""]",4033.17,"{\"": \""22%\""}",295858,1,"""South America""" +2023-12-16,49895,8051,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2023.64,"{\""seasonal\"": \""6%\""}",10246,0,"""Europe""" +2023-07-21,49896,688,"[\""Tablet\""]",2194.49,{},2254,0,"""North America""" +2024-11-09,49897,6515,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",363.4,{},211711,1,"""South America""" +2023-12-04,49898,2851,"[\""Wireless Mouse\""]",3954.7,{},96397,1,"""Asia""" +2023-01-02,49899,100,"[\""Charger\"", \""Phone\""]",98.42,"{\"": \""17%\""}",98889,1,"""Europe""" +2023-11-09,49900,8781,"[\""Laptop\""]",2082.93,"{\"": \""11%\""}",195521,1,"""South America""" +2023-11-17,49901,2551,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2486.01,"{\""loyalty\"": \""6%\""}",151286,0,"""South America""" +2023-03-23,49902,4575,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4512.22,"{\"": \""19%\""}",157789,0,"""Africa""" +2024-05-29,49903,2658,"[\""Charger\""]",3759.35,"{\""seasonal\"": \""23%\""}",91437,0,"""Asia""" +2024-06-03,49904,4994,"[\""Headphones\""]",829.05,"{\""promo\"": \""26%\""}",144638,0,"""South America""" +2023-11-23,49905,5659,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1397.19,{},137064,0,"""Africa""" +2024-09-18,49906,23,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2630.27,"{\""loyalty\"": \""28%\""}",106541,0,"""North America""" +2024-12-20,49907,4681,"[\""Phone\""]",1821.67,{},65311,1,"""Asia""" +2023-10-10,49908,3247,"[\""Laptop\"", \""Keyboard\""]",2381.6,"{\""seasonal\"": \""6%\""}",17172,0,"""North America""" +2023-02-07,49909,4192,"[\""Keyboard\"", \""Laptop\""]",4416.29,"{\""promo\"": \""14%\""}",286878,1,"""Asia""" +2024-10-08,49910,5056,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2745.95,"{\""loyalty\"": \""21%\""}",197006,0,"""North America""" +2023-06-19,49911,7809,"[\""Headphones\""]",2624.06,{},192003,1,"""Europe""" +2024-04-26,49912,888,"[\""Tablet\""]",1941.88,{},161716,1,"""North America""" +2024-01-29,49913,8358,"[\""Charger\"", \""Phone\"", \""Monitor\""]",135.39,{},172401,0,"""Europe""" +2023-12-29,49914,9184,"[\""Laptop\"", \""Tablet\""]",3454.34,{},148081,0,"""Africa""" +2023-02-20,49915,8819,"[\""Laptop\"", \""Charger\""]",2660.04,"{\""seasonal\"": \""29%\""}",159622,0,"""Asia""" +2023-12-01,49916,3137,"[\""Wireless Mouse\""]",450.62,"{\""seasonal\"": \""28%\""}",69638,1,"""South America""" +2023-08-20,49917,4784,"[\""Keyboard\""]",1119.89,{},222939,0,"""South America""" +2024-06-08,49918,7714,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1722.18,"{\""promo\"": \""21%\""}",114100,0,"""North America""" +2024-11-15,49919,3918,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1418.02,"{\"": \""10%\""}",86307,0,"""Europe""" +2024-07-07,49920,215,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2595.89,"{\""seasonal\"": \""21%\""}",270573,1,"""Asia""" +2024-08-10,49921,4837,"[\""Monitor\"", \""Tablet\""]",4525.57,{},217119,1,"""South America""" +2023-01-18,49922,5754,"[\""Phone\"", \""Monitor\""]",1985.36,"{\""seasonal\"": \""20%\""}",159895,0,"""Africa""" +2023-10-07,49923,828,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",209.21,{},130918,0,"""South America""" +2023-02-14,49924,3135,"[\""Phone\""]",508.16,"{\""loyalty\"": \""17%\""}",191936,1,"""South America""" +2023-11-09,49925,1710,"[\""Tablet\""]",850.0,"{\""promo\"": \""13%\""}",282099,0,"""North America""" +2024-11-28,49926,1777,"[\""Monitor\"", \""Keyboard\""]",2746.94,"{\""seasonal\"": \""30%\""}",47279,1,"""Asia""" +2024-01-28,49927,2873,"[\""Keyboard\""]",1277.05,"{\""promo\"": \""9%\""}",213944,1,"""North America""" +2024-03-01,49928,3688,"[\""Wireless Mouse\""]",1005.97,"{\""promo\"": \""21%\""}",242538,0,"""Europe""" +2023-10-20,49929,2523,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",101.73,"{\"": \""21%\""}",232540,0,"""North America""" +2023-03-23,49930,8725,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4800.91,{},50130,1,"""Africa""" +2023-10-18,49931,1804,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4692.64,"{\"": \""20%\""}",74014,0,"""Europe""" +2023-08-09,49932,3779,"[\""Tablet\"", \""Headphones\""]",2008.9,{},150400,0,"""North America""" +2023-12-08,49933,2185,"[\""Headphones\"", \""Laptop\""]",280.02,"{\""promo\"": \""10%\""}",269906,0,"""Asia""" +2023-09-23,49934,7370,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",162.28,"{\""loyalty\"": \""22%\""}",139259,1,"""Asia""" +2024-05-08,49935,7212,"[\""Laptop\"", \""Headphones\""]",2322.43,"{\""loyalty\"": \""26%\""}",253529,0,"""Europe""" +2024-03-28,49936,2552,"[\""Charger\""]",74.02,{},162510,1,"""Europe""" +2023-11-03,49937,4806,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1345.34,"{\""seasonal\"": \""21%\""}",199592,1,"""Asia""" +2023-06-14,49938,2246,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4889.9,{},43336,1,"""Africa""" +2024-05-16,49939,1939,"[\""Monitor\""]",4413.94,{},152748,0,"""North America""" +2024-10-09,49940,8719,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2285.71,{},130284,1,"""Europe""" +2024-10-28,49941,9220,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4382.68,{},264491,0,"""Africa""" +2024-09-28,49942,8258,"[\""Laptop\"", \""Keyboard\""]",2840.65,"{\""loyalty\"": \""21%\""}",3494,1,"""North America""" +2024-03-23,49943,4824,"[\""Laptop\"", \""Wireless Mouse\""]",3318.16,{},249947,1,"""Asia""" +2023-10-08,49944,376,"[\""Headphones\""]",4166.78,"{\""promo\"": \""30%\""}",250865,1,"""Asia""" +2023-05-08,49945,719,"[\""Charger\"", \""Phone\""]",554.04,{},210986,0,"""Africa""" +2023-01-26,49946,2088,"[\""Headphones\""]",3514.41,"{\""promo\"": \""18%\""}",18509,1,"""Europe""" +2024-10-05,49947,6003,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4634.96,{},44876,1,"""Asia""" +2024-10-11,49948,7579,"[\""Keyboard\"", \""Phone\""]",1409.41,{},142503,1,"""North America""" +2024-12-05,49949,7746,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3135.4,"{\""seasonal\"": \""7%\""}",1580,0,"""Europe""" +2023-10-29,49950,5802,"[\""Charger\"", \""Laptop\""]",3730.94,{},218535,1,"""North America""" +2024-02-10,49951,5296,"[\""Laptop\"", \""Charger\""]",3001.18,{},55092,0,"""South America""" +2024-07-10,49952,1452,"[\""Wireless Mouse\"", \""Phone\""]",2027.82,{},33565,1,"""Africa""" +2024-07-04,49953,1342,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",177.63,"{\""promo\"": \""11%\""}",78695,1,"""South America""" +2024-11-22,49954,6488,"[\""Monitor\"", \""Wireless Mouse\""]",1153.23,"{\""loyalty\"": \""14%\""}",180132,1,"""South America""" +2023-01-14,49955,2335,"[\""Keyboard\"", \""Laptop\""]",4679.31,"{\""seasonal\"": \""20%\""}",93347,0,"""North America""" +2024-04-04,49956,6670,"[\""Phone\""]",3871.23,{},272883,1,"""Africa""" +2024-04-24,49957,9351,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2309.95,{},205037,1,"""Africa""" +2023-12-18,49958,630,"[\""Headphones\"", \""Wireless Mouse\""]",162.61,"{\""promo\"": \""9%\""}",86423,0,"""South America""" +2024-09-12,49959,7690,"[\""Wireless Mouse\"", \""Laptop\""]",2484.52,"{\""loyalty\"": \""12%\""}",171926,0,"""South America""" +2023-06-15,49960,9875,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1758.12,{},116297,1,"""South America""" +2023-03-12,49961,9593,"[\""Wireless Mouse\""]",1421.29,"{\""loyalty\"": \""6%\""}",9135,1,"""Asia""" +2023-01-05,49962,1936,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4467.07,"{\"": \""26%\""}",169821,0,"""Asia""" +2023-10-18,49963,427,"[\""Keyboard\""]",2154.03,"{\""promo\"": \""24%\""}",92320,1,"""South America""" +2024-04-02,49964,7932,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",396.23,"{\""promo\"": \""25%\""}",203796,0,"""South America""" +2023-09-14,49965,2094,"[\""Tablet\""]",664.32,"{\""seasonal\"": \""12%\""}",139083,1,"""Asia""" +2024-05-13,49966,6549,"[\""Tablet\""]",3330.64,{},187396,0,"""North America""" +2023-02-19,49967,3567,"[\""Charger\""]",2030.91,{},225530,0,"""South America""" +2023-09-05,49968,5870,"[\""Phone\"", \""Wireless Mouse\""]",4864.41,{},217236,1,"""Africa""" +2024-05-08,49969,4375,"[\""Monitor\"", \""Laptop\""]",3358.59,{},28153,1,"""Europe""" +2023-11-30,49970,9341,"[\""Wireless Mouse\""]",4172.6,"{\""promo\"": \""13%\""}",88864,0,"""Asia""" +2023-10-20,49971,2434,"[\""Keyboard\""]",3530.78,"{\""loyalty\"": \""7%\""}",258297,0,"""Europe""" +2023-05-20,49972,9913,"[\""Charger\"", \""Tablet\""]",4059.32,"{\""loyalty\"": \""30%\""}",80414,0,"""South America""" +2024-11-21,49973,4201,"[\""Phone\"", \""Tablet\""]",1953.23,{},131155,0,"""Asia""" +2024-03-20,49974,177,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3994.81,"{\""seasonal\"": \""6%\""}",173389,1,"""South America""" +2024-12-11,49975,6158,"[\""Phone\"", \""Headphones\""]",1501.02,"{\"": \""5%\""}",113924,0,"""North America""" +2024-12-09,49976,4927,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3003.8,"{\""loyalty\"": \""24%\""}",139027,0,"""South America""" +2023-07-26,49977,4074,"[\""Charger\""]",2421.42,"{\"": \""27%\""}",42986,0,"""Africa""" +2024-09-15,49978,7297,"[\""Charger\""]",1772.4,"{\""seasonal\"": \""10%\""}",52834,1,"""North America""" +2024-02-25,49979,5155,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2702.96,"{\""promo\"": \""28%\""}",292649,0,"""Asia""" +2024-08-19,49980,3847,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2406.95,"{\"": \""18%\""}",116675,0,"""Asia""" +2023-07-31,49981,7631,"[\""Monitor\"", \""Charger\""]",1523.28,"{\""promo\"": \""20%\""}",69572,1,"""North America""" +2024-03-14,49982,883,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3850.81,{},265625,0,"""South America""" +2024-06-02,49983,3213,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3308.5,"{\"": \""14%\""}",256874,0,"""Asia""" +2024-05-02,49984,6078,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",721.33,"{\"": \""12%\""}",218193,0,"""South America""" +2023-02-05,49985,2990,"[\""Wireless Mouse\""]",3242.35,"{\""seasonal\"": \""29%\""}",253268,1,"""Asia""" +2023-08-18,49986,6291,"[\""Tablet\""]",4146.65,{},148040,0,"""Europe""" +2024-06-17,49987,714,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",349.94,"{\""promo\"": \""26%\""}",75182,1,"""Europe""" +2023-11-03,49988,3386,"[\""Monitor\"", \""Laptop\""]",1666.66,"{\""promo\"": \""5%\""}",133430,0,"""North America""" +2024-04-21,49989,2269,"[\""Keyboard\"", \""Monitor\""]",3304.99,{},121851,0,"""South America""" +2024-02-16,49990,3659,"[\""Monitor\""]",4922.07,{},145875,1,"""South America""" +2024-08-18,49991,1493,"[\""Headphones\"", \""Phone\""]",3425.12,{},256332,0,"""Asia""" +2024-02-07,49992,9460,"[\""Monitor\"", \""Phone\""]",178.97,"{\""seasonal\"": \""26%\""}",229299,1,"""South America""" +2023-06-22,49993,547,"[\""Charger\""]",4536.07,"{\""seasonal\"": \""28%\""}",273128,1,"""Europe""" +2024-11-30,49994,555,"[\""Headphones\"", \""Charger\""]",686.6,"{\""seasonal\"": \""9%\""}",91174,0,"""Asia""" +2023-08-15,49995,4762,"[\""Monitor\""]",938.72,"{\"": \""28%\""}",197226,1,"""Africa""" +2024-03-07,49996,6765,"[\""Tablet\"", \""Headphones\""]",156.78,{},23086,1,"""South America""" +2023-04-12,49997,3795,"[\""Charger\"", \""Headphones\""]",1748.23,"{\""seasonal\"": \""29%\""}",119728,1,"""Europe""" +2024-10-21,49998,6010,"[\""Charger\"", \""Monitor\""]",447.98,"{\""loyalty\"": \""12%\""}",211584,1,"""South America""" +2023-06-27,49999,388,"[\""Headphones\""]",3113.9,"{\""promo\"": \""25%\""}",126224,1,"""South America""" +2024-02-20,50000,1970,"[\""Headphones\"", \""Charger\""]",4378.57,"{\""promo\"": \""22%\""}",201497,0,"""Africa""" +2024-10-28,50001,3154,"[\""Headphones\"", \""Phone\""]",652.86,{},183090,1,"""Asia""" +2024-09-27,50002,6076,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2251.03,{},279151,1,"""Europe""" +2024-04-15,50003,1843,"[\""Tablet\""]",4093.55,"{\""loyalty\"": \""30%\""}",159104,0,"""Asia""" +2024-02-12,50004,9348,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4800.44,{},208209,1,"""South America""" +2023-07-24,50005,2636,"[\""Tablet\"", \""Laptop\""]",1697.01,"{\""promo\"": \""8%\""}",129358,1,"""South America""" +2023-03-15,50006,5292,"[\""Charger\"", \""Phone\""]",1685.28,"{\""promo\"": \""10%\""}",159287,0,"""Asia""" +2023-11-20,50007,3533,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",584.99,"{\""loyalty\"": \""12%\""}",36858,0,"""Europe""" +2024-05-20,50008,5746,"[\""Tablet\""]",3006.88,{},66511,0,"""Africa""" +2024-10-11,50009,9842,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",611.05,{},96476,1,"""Africa""" +2024-04-21,50010,4404,"[\""Monitor\""]",4397.37,"{\""seasonal\"": \""12%\""}",110897,0,"""North America""" +2024-08-02,50011,6154,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3316.18,"{\""promo\"": \""18%\""}",102941,0,"""Europe""" +2023-03-05,50012,9712,"[\""Phone\"", \""Headphones\""]",971.68,{},99445,1,"""South America""" +2024-10-18,50013,1303,"[\""Laptop\"", \""Phone\""]",3860.46,{},3611,1,"""North America""" +2023-08-04,50014,7947,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2451.17,"{\"": \""11%\""}",161674,0,"""South America""" +2023-11-07,50015,4598,"[\""Wireless Mouse\"", \""Keyboard\""]",543.12,{},177257,0,"""North America""" +2024-11-11,50016,3554,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2976.33,{},254633,0,"""Europe""" +2024-09-13,50017,5314,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1796.61,"{\"": \""9%\""}",246410,0,"""North America""" +2024-10-03,50018,7639,"[\""Keyboard\"", \""Charger\""]",225.72,"{\""promo\"": \""16%\""}",44228,0,"""Africa""" +2024-07-05,50019,2312,"[\""Wireless Mouse\""]",4589.48,"{\""seasonal\"": \""14%\""}",57359,1,"""South America""" +2024-09-30,50020,3587,"[\""Wireless Mouse\"", \""Keyboard\""]",2299.76,{},163710,1,"""South America""" +2024-06-24,50021,4023,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1936.88,{},120098,0,"""North America""" +2023-09-09,50022,8019,"[\""Monitor\"", \""Keyboard\""]",2976.62,"{\""seasonal\"": \""27%\""}",172896,1,"""Asia""" +2024-02-19,50023,9447,"[\""Phone\"", \""Tablet\""]",73.3,"{\"": \""11%\""}",174201,1,"""Asia""" +2023-08-21,50024,4796,"[\""Keyboard\""]",4240.18,"{\""seasonal\"": \""9%\""}",242824,0,"""Africa""" +2024-07-10,50025,542,"[\""Phone\""]",1100.85,{},32808,1,"""Asia""" +2023-12-23,50026,3373,"[\""Monitor\"", \""Charger\""]",1241.17,"{\"": \""9%\""}",91337,1,"""South America""" +2023-07-28,50027,4916,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4324.84,{},219257,0,"""Africa""" +2024-01-22,50028,7922,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4494.49,"{\""seasonal\"": \""18%\""}",26288,1,"""North America""" +2023-10-07,50029,6711,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4333.32,{},299571,1,"""Asia""" +2024-05-21,50030,4676,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2627.73,"{\""seasonal\"": \""19%\""}",236416,1,"""Europe""" +2023-09-28,50031,6277,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3352.24,"{\""seasonal\"": \""18%\""}",241869,0,"""Africa""" +2023-10-19,50032,3009,"[\""Tablet\""]",479.0,"{\"": \""16%\""}",2253,1,"""South America""" +2024-09-23,50033,7058,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3916.21,{},69868,0,"""Europe""" +2024-12-10,50034,6297,"[\""Laptop\"", \""Headphones\""]",1531.22,{},145929,1,"""South America""" +2024-08-13,50035,6947,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3262.27,{},270364,1,"""Asia""" +2024-07-23,50036,6673,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4473.67,{},7804,0,"""Africa""" +2023-07-29,50037,5863,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4891.32,"{\""loyalty\"": \""28%\""}",241763,1,"""Africa""" +2023-06-21,50038,8228,"[\""Tablet\""]",3031.13,"{\""promo\"": \""20%\""}",279516,0,"""Africa""" +2024-01-08,50039,6241,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1348.54,"{\""seasonal\"": \""25%\""}",108544,0,"""Africa""" +2024-11-17,50040,1053,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2322.83,"{\""promo\"": \""23%\""}",8791,1,"""Europe""" +2023-12-28,50041,9704,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2369.82,"{\""seasonal\"": \""14%\""}",206304,0,"""Asia""" +2024-07-16,50042,4107,"[\""Tablet\"", \""Headphones\""]",3106.19,{},258370,0,"""South America""" +2023-10-04,50043,751,"[\""Headphones\""]",1438.75,"{\""loyalty\"": \""20%\""}",276513,0,"""North America""" +2023-02-15,50044,916,"[\""Laptop\""]",2240.6,"{\""promo\"": \""13%\""}",104818,1,"""Africa""" +2024-04-07,50045,706,"[\""Keyboard\"", \""Monitor\""]",495.24,{},119805,0,"""South America""" +2024-05-11,50046,1638,"[\""Charger\"", \""Laptop\""]",4456.67,"{\""promo\"": \""19%\""}",251486,1,"""Asia""" +2024-08-24,50047,6386,"[\""Keyboard\""]",3585.79,{},10893,1,"""Africa""" +2024-08-13,50048,3315,"[\""Keyboard\"", \""Laptop\""]",1342.12,"{\""loyalty\"": \""21%\""}",222317,1,"""North America""" +2023-11-03,50049,951,"[\""Phone\"", \""Laptop\""]",4409.97,{},188118,0,"""South America""" +2023-12-30,50050,2448,"[\""Laptop\""]",1954.1,{},210433,1,"""Asia""" +2023-11-10,50051,4182,"[\""Monitor\"", \""Wireless Mouse\""]",1097.85,{},49505,1,"""South America""" +2023-06-03,50052,8235,"[\""Headphones\"", \""Keyboard\""]",1117.35,{},115298,1,"""Africa""" +2023-03-29,50053,5201,"[\""Laptop\"", \""Wireless Mouse\""]",4311.57,{},72416,0,"""South America""" +2024-03-11,50054,5344,"[\""Laptop\""]",720.79,"{\"": \""15%\""}",18880,1,"""South America""" +2024-06-17,50055,3919,"[\""Wireless Mouse\""]",2565.49,"{\"": \""25%\""}",226651,1,"""Asia""" +2024-06-04,50056,2646,"[\""Phone\"", \""Wireless Mouse\""]",4562.51,{},191179,1,"""Europe""" +2024-03-20,50057,9339,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1155.39,{},65133,0,"""Asia""" +2023-06-08,50058,8320,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3307.54,"{\""seasonal\"": \""28%\""}",232118,0,"""Africa""" +2024-12-05,50059,1419,"[\""Laptop\"", \""Keyboard\""]",1140.69,"{\""seasonal\"": \""11%\""}",114382,0,"""Europe""" +2023-08-24,50060,6300,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1899.43,{},82796,0,"""South America""" +2023-03-27,50061,769,"[\""Phone\"", \""Headphones\""]",3044.08,{},37914,0,"""Asia""" +2024-12-15,50062,2895,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4015.3,{},59095,0,"""Africa""" +2023-04-07,50063,5914,"[\""Laptop\"", \""Charger\""]",2279.95,"{\"": \""20%\""}",84116,1,"""South America""" +2024-09-05,50064,2788,"[\""Charger\""]",4954.61,"{\""seasonal\"": \""13%\""}",197523,1,"""Europe""" +2024-10-17,50065,9994,"[\""Phone\"", \""Keyboard\""]",2356.1,"{\""promo\"": \""9%\""}",269299,1,"""Europe""" +2023-07-30,50066,1309,"[\""Headphones\""]",1657.75,{},251495,0,"""Africa""" +2023-02-27,50067,7546,"[\""Charger\""]",4024.13,"{\""loyalty\"": \""24%\""}",251492,1,"""Africa""" +2023-09-28,50068,7662,"[\""Headphones\""]",160.45,"{\""loyalty\"": \""6%\""}",21579,0,"""North America""" +2023-12-01,50069,3717,"[\""Monitor\"", \""Laptop\""]",2830.0,"{\""promo\"": \""19%\""}",207635,1,"""Africa""" +2023-01-16,50070,2907,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4112.36,{},173483,1,"""Asia""" +2024-07-16,50071,3817,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3950.37,{},36749,0,"""Europe""" +2023-10-14,50072,2176,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2580.06,"{\""seasonal\"": \""23%\""}",49908,0,"""Europe""" +2023-11-07,50073,6545,"[\""Phone\"", \""Laptop\""]",4660.03,{},136798,1,"""Europe""" +2024-01-27,50074,1313,"[\""Wireless Mouse\""]",1296.27,{},272581,0,"""North America""" +2024-01-28,50075,8320,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2174.55,{},204088,0,"""Europe""" +2024-11-24,50076,7494,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1034.79,"{\""seasonal\"": \""24%\""}",249053,1,"""North America""" +2024-02-02,50077,734,"[\""Phone\"", \""Tablet\""]",1679.88,"{\""promo\"": \""19%\""}",79298,1,"""Africa""" +2023-12-23,50078,4386,"[\""Charger\"", \""Keyboard\""]",797.34,{},237273,1,"""Europe""" +2023-04-15,50079,8373,"[\""Charger\""]",62.31,"{\""promo\"": \""17%\""}",31410,1,"""Africa""" +2024-09-11,50080,9620,"[\""Phone\"", \""Monitor\""]",259.3,{},131991,1,"""Europe""" +2023-12-21,50081,1351,"[\""Wireless Mouse\"", \""Headphones\""]",2980.62,"{\""loyalty\"": \""5%\""}",33413,0,"""Africa""" +2024-03-25,50082,1507,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",940.72,{},17253,0,"""South America""" +2024-12-04,50083,8370,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2940.52,"{\""promo\"": \""13%\""}",137855,0,"""Europe""" +2023-12-28,50084,9708,"[\""Laptop\"", \""Monitor\""]",3164.5,"{\""seasonal\"": \""28%\""}",11001,1,"""South America""" +2024-12-12,50085,8753,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3822.73,{},110390,0,"""Europe""" +2024-02-17,50086,7143,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2627.45,"{\"": \""9%\""}",103556,0,"""Europe""" +2023-11-05,50087,8430,"[\""Wireless Mouse\""]",2110.48,"{\""loyalty\"": \""13%\""}",192419,0,"""South America""" +2024-05-12,50088,7061,"[\""Monitor\"", \""Keyboard\""]",2111.93,{},38097,0,"""South America""" +2024-02-09,50089,1372,"[\""Headphones\"", \""Phone\""]",3290.82,{},291119,0,"""Asia""" +2024-12-05,50090,8206,"[\""Wireless Mouse\""]",3570.41,"{\"": \""12%\""}",219351,1,"""South America""" +2023-02-20,50091,8258,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2374.34,{},104322,1,"""South America""" +2024-11-15,50092,5134,"[\""Keyboard\""]",1174.75,"{\""seasonal\"": \""28%\""}",260809,0,"""South America""" +2024-05-12,50093,7438,"[\""Charger\""]",4035.6,{},242768,0,"""North America""" +2023-04-13,50094,5881,"[\""Monitor\"", \""Headphones\""]",2822.8,{},21008,1,"""North America""" +2024-12-01,50095,996,"[\""Monitor\""]",2406.01,{},225598,0,"""Asia""" +2023-07-02,50096,6443,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2232.73,{},98208,0,"""North America""" +2023-01-09,50097,4073,"[\""Phone\"", \""Keyboard\""]",3475.01,"{\""seasonal\"": \""29%\""}",162288,1,"""Africa""" +2024-11-13,50098,2924,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4931.8,"{\""seasonal\"": \""24%\""}",72154,0,"""North America""" +2023-10-13,50099,8688,"[\""Headphones\"", \""Laptop\""]",4954.32,"{\"": \""10%\""}",257658,1,"""Asia""" +2023-10-12,50100,3380,"[\""Headphones\"", \""Phone\"", \""Charger\""]",680.38,"{\""promo\"": \""27%\""}",5148,0,"""Asia""" +2023-05-31,50101,7896,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",817.72,"{\""loyalty\"": \""22%\""}",180847,1,"""Asia""" +2024-04-01,50102,4970,"[\""Tablet\"", \""Keyboard\""]",1439.23,{},186829,0,"""Asia""" +2024-11-21,50103,9757,"[\""Laptop\""]",1388.23,"{\"": \""22%\""}",255055,1,"""South America""" +2024-07-01,50104,4655,"[\""Phone\""]",1888.32,{},297728,1,"""Africa""" +2023-06-01,50105,9483,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1132.45,{},262454,1,"""Europe""" +2024-10-05,50106,5352,"[\""Charger\"", \""Phone\""]",1073.81,{},187846,1,"""South America""" +2023-03-06,50107,1997,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",3287.71,{},49314,1,"""Asia""" +2024-01-18,50108,4507,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4254.3,"{\""loyalty\"": \""10%\""}",275874,1,"""South America""" +2024-12-06,50109,402,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",138.68,"{\""loyalty\"": \""13%\""}",151667,1,"""Asia""" +2023-07-14,50110,9474,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1504.36,"{\""promo\"": \""28%\""}",48279,0,"""Africa""" +2023-12-12,50111,4873,"[\""Charger\"", \""Headphones\""]",3927.59,{},78937,0,"""Asia""" +2024-12-20,50112,9326,"[\""Tablet\""]",4054.72,"{\""seasonal\"": \""22%\""}",295245,1,"""South America""" +2024-03-21,50113,2115,"[\""Charger\"", \""Headphones\""]",842.91,{},298482,1,"""South America""" +2023-08-09,50114,1831,"[\""Phone\"", \""Wireless Mouse\""]",2726.23,{},106159,1,"""Europe""" +2023-10-28,50115,506,"[\""Laptop\"", \""Headphones\""]",264.94,{},21035,0,"""North America""" +2023-06-18,50116,7293,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3635.49,{},78580,0,"""North America""" +2024-04-21,50117,3234,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2834.11,"{\""promo\"": \""29%\""}",217060,0,"""North America""" +2023-09-24,50118,650,"[\""Tablet\""]",2422.27,{},222260,1,"""Africa""" +2024-05-03,50119,6710,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2801.88,{},81261,1,"""Europe""" +2023-12-28,50120,6140,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4784.8,{},33348,1,"""South America""" +2024-10-15,50121,7977,"[\""Laptop\"", \""Keyboard\""]",4495.79,"{\""seasonal\"": \""19%\""}",283885,0,"""South America""" +2024-07-15,50122,1425,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2505.66,"{\""loyalty\"": \""18%\""}",35575,0,"""Europe""" +2023-05-17,50123,5246,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4088.13,{},255854,1,"""Asia""" +2024-05-14,50124,1829,"[\""Charger\""]",2170.32,{},206518,1,"""Asia""" +2024-12-13,50125,145,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2129.63,{},203213,0,"""Europe""" +2024-11-05,50126,8268,"[\""Charger\"", \""Tablet\""]",884.0,"{\""promo\"": \""23%\""}",299441,1,"""Asia""" +2023-10-02,50127,3658,"[\""Monitor\""]",1507.12,"{\""loyalty\"": \""14%\""}",122516,0,"""Europe""" +2023-08-26,50128,7859,"[\""Headphones\"", \""Phone\""]",2618.67,{},94384,1,"""Asia""" +2024-07-31,50129,8548,"[\""Charger\"", \""Phone\""]",2623.6,{},4119,0,"""Africa""" +2024-06-12,50130,159,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1173.42,"{\"": \""6%\""}",102313,1,"""Asia""" +2024-12-18,50131,4998,"[\""Headphones\""]",2226.88,"{\""seasonal\"": \""25%\""}",244605,0,"""Asia""" +2023-10-30,50132,1688,"[\""Phone\""]",2670.09,"{\""seasonal\"": \""28%\""}",284966,1,"""Europe""" +2023-09-04,50133,4459,"[\""Wireless Mouse\""]",2559.97,"{\""promo\"": \""8%\""}",277061,0,"""South America""" +2024-05-29,50134,6037,"[\""Headphones\""]",1534.58,"{\""seasonal\"": \""28%\""}",163372,0,"""South America""" +2023-09-01,50135,8774,"[\""Headphones\"", \""Phone\""]",2862.87,{},210198,1,"""Europe""" +2023-06-30,50136,783,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2209.09,"{\""promo\"": \""26%\""}",284563,0,"""Africa""" +2023-01-21,50137,9491,"[\""Headphones\"", \""Keyboard\""]",4998.18,{},224652,0,"""Europe""" +2023-12-08,50138,746,"[\""Charger\""]",3933.87,{},161571,0,"""Africa""" +2024-05-24,50139,4341,"[\""Keyboard\"", \""Wireless Mouse\""]",4931.08,"{\""seasonal\"": \""22%\""}",95990,0,"""Asia""" +2024-05-17,50140,5635,"[\""Tablet\""]",1873.26,"{\""loyalty\"": \""17%\""}",264355,0,"""Africa""" +2024-06-01,50141,7278,"[\""Headphones\"", \""Keyboard\""]",3818.99,"{\""promo\"": \""17%\""}",230050,0,"""South America""" +2024-11-08,50142,5395,"[\""Tablet\"", \""Headphones\""]",1906.83,{},247191,0,"""Africa""" +2023-10-26,50143,2596,"[\""Wireless Mouse\"", \""Charger\""]",1118.52,{},281105,1,"""South America""" +2023-10-16,50144,7311,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1359.76,"{\""loyalty\"": \""9%\""}",247737,1,"""North America""" +2024-09-23,50145,6794,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1013.67,"{\""loyalty\"": \""14%\""}",102163,1,"""South America""" +2024-11-30,50146,2900,"[\""Laptop\""]",1937.44,"{\""promo\"": \""12%\""}",278029,0,"""South America""" +2023-01-14,50147,8284,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1188.74,{},99619,0,"""North America""" +2023-12-29,50148,8253,"[\""Phone\""]",3026.98,{},127628,1,"""Africa""" +2023-04-13,50149,3976,"[\""Monitor\""]",3279.71,"{\""loyalty\"": \""13%\""}",146593,0,"""Europe""" +2024-04-20,50150,4957,"[\""Phone\""]",2683.36,"{\""promo\"": \""26%\""}",297606,1,"""Africa""" +2024-06-04,50151,7595,"[\""Keyboard\""]",3100.7,"{\""loyalty\"": \""26%\""}",185397,0,"""Asia""" +2023-05-08,50152,8688,"[\""Charger\""]",4709.17,{},257665,0,"""Europe""" +2023-10-30,50153,2537,"[\""Headphones\""]",2285.64,"{\""loyalty\"": \""7%\""}",236795,0,"""Africa""" +2023-03-01,50154,2845,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",121.51,"{\""loyalty\"": \""14%\""}",115654,1,"""Europe""" +2023-05-19,50155,9710,"[\""Tablet\""]",2188.35,{},135140,1,"""South America""" +2024-05-28,50156,830,"[\""Charger\""]",2548.39,{},82332,1,"""North America""" +2023-12-26,50157,2984,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",295.59,"{\""seasonal\"": \""24%\""}",108130,0,"""North America""" +2024-01-12,50158,7747,"[\""Wireless Mouse\""]",3264.02,{},32749,0,"""Africa""" +2024-09-19,50159,7664,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1446.47,"{\"": \""25%\""}",46745,0,"""South America""" +2024-02-29,50160,418,"[\""Headphones\""]",2308.4,{},245403,0,"""North America""" +2024-08-04,50161,220,"[\""Headphones\"", \""Laptop\""]",80.09,"{\""seasonal\"": \""21%\""}",20773,1,"""Asia""" +2024-01-22,50162,112,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1050.55,"{\""seasonal\"": \""29%\""}",189097,0,"""Asia""" +2024-08-10,50163,4714,"[\""Phone\"", \""Tablet\""]",3452.86,{},202392,1,"""Europe""" +2024-10-30,50164,9959,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1733.0,{},204726,0,"""South America""" +2024-01-09,50165,7093,"[\""Phone\"", \""Keyboard\""]",2258.43,{},140213,1,"""Africa""" +2023-01-05,50166,4019,"[\""Charger\"", \""Laptop\""]",4257.16,"{\""seasonal\"": \""19%\""}",11397,0,"""Africa""" +2023-10-19,50167,4405,"[\""Headphones\""]",4394.28,{},299711,0,"""South America""" +2024-03-24,50168,1832,"[\""Phone\"", \""Keyboard\""]",1674.18,"{\""promo\"": \""5%\""}",211281,1,"""North America""" +2023-09-30,50169,4192,"[\""Monitor\""]",2777.55,"{\"": \""9%\""}",38160,1,"""Asia""" +2024-01-31,50170,8953,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",756.47,{},187388,0,"""Europe""" +2023-09-09,50171,6755,"[\""Phone\"", \""Keyboard\""]",3469.43,"{\""seasonal\"": \""12%\""}",275387,1,"""North America""" +2023-02-19,50172,2613,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3241.14,{},299845,0,"""Asia""" +2024-12-16,50173,952,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4144.73,{},56119,0,"""Asia""" +2024-10-10,50174,6837,"[\""Keyboard\""]",4798.24,{},139937,1,"""Africa""" +2023-02-19,50175,3289,"[\""Headphones\""]",911.68,"{\"": \""17%\""}",207889,1,"""North America""" +2024-11-22,50176,8283,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1458.02,"{\""promo\"": \""6%\""}",215972,1,"""North America""" +2023-05-09,50177,5818,"[\""Wireless Mouse\""]",3800.37,{},253718,1,"""South America""" +2023-08-24,50178,3681,"[\""Charger\""]",3844.59,{},30690,1,"""South America""" +2024-11-03,50179,1999,"[\""Charger\""]",2741.74,"{\""seasonal\"": \""14%\""}",285481,0,"""Asia""" +2024-11-01,50180,6208,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",81.11,"{\"": \""25%\""}",215747,1,"""North America""" +2024-02-02,50181,3361,"[\""Monitor\"", \""Wireless Mouse\""]",1761.51,{},298053,1,"""North America""" +2023-02-08,50182,8038,"[\""Laptop\""]",3137.0,"{\"": \""15%\""}",65938,0,"""Asia""" +2023-04-05,50183,6327,"[\""Phone\"", \""Monitor\""]",4606.17,{},273501,1,"""Europe""" +2024-01-24,50184,4696,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",380.24,{},160965,0,"""Africa""" +2023-04-27,50185,9498,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1216.5,"{\"": \""6%\""}",82201,1,"""North America""" +2024-11-07,50186,6209,"[\""Tablet\""]",3880.41,{},61321,1,"""Europe""" +2023-06-19,50187,972,"[\""Headphones\"", \""Laptop\""]",4142.37,{},216018,0,"""Africa""" +2024-07-06,50188,2464,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4287.02,"{\"": \""25%\""}",36569,0,"""South America""" +2023-10-25,50189,2313,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3890.63,{},266668,1,"""North America""" +2023-08-31,50190,1865,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",857.26,{},186162,0,"""Africa""" +2023-03-16,50191,1586,"[\""Phone\""]",4725.65,"{\"": \""9%\""}",261756,1,"""Asia""" +2024-02-02,50192,6398,"[\""Monitor\"", \""Keyboard\""]",2061.78,{},102809,1,"""South America""" +2023-07-02,50193,2531,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1034.27,{},132934,1,"""North America""" +2023-12-02,50194,5411,"[\""Headphones\""]",1837.67,{},289453,1,"""Europe""" +2023-09-12,50195,6650,"[\""Tablet\"", \""Monitor\""]",1514.99,{},30333,1,"""Africa""" +2024-03-12,50196,1005,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1946.24,{},247307,0,"""Asia""" +2024-03-06,50197,82,"[\""Monitor\"", \""Headphones\""]",2063.2,"{\""promo\"": \""9%\""}",103061,0,"""Europe""" +2024-05-02,50198,812,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1272.36,{},42699,0,"""South America""" +2024-11-08,50199,3464,"[\""Phone\"", \""Tablet\""]",3484.44,"{\""seasonal\"": \""29%\""}",222009,1,"""Africa""" +2023-11-15,50200,1112,"[\""Headphones\"", \""Wireless Mouse\""]",2949.62,{},40565,0,"""Africa""" +2024-12-13,50201,3506,"[\""Keyboard\"", \""Headphones\""]",2439.32,"{\""seasonal\"": \""25%\""}",25593,0,"""Asia""" +2023-12-12,50202,6462,"[\""Headphones\""]",965.73,{},111281,0,"""North America""" +2024-09-22,50203,1825,"[\""Keyboard\"", \""Monitor\""]",160.56,{},222221,1,"""Africa""" +2023-10-04,50204,1898,"[\""Monitor\""]",1041.2,"{\""loyalty\"": \""23%\""}",62221,1,"""South America""" +2023-04-16,50205,1077,"[\""Charger\""]",1701.52,{},162872,0,"""Asia""" +2024-07-28,50206,5373,"[\""Monitor\""]",1221.24,"{\""seasonal\"": \""8%\""}",108869,1,"""Asia""" +2024-08-29,50207,3796,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1677.1,{},153796,0,"""Africa""" +2023-01-12,50208,8298,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2819.23,{},37560,0,"""Africa""" +2024-12-09,50209,2114,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",368.63,"{\""promo\"": \""12%\""}",10962,1,"""Asia""" +2024-02-15,50210,2826,"[\""Keyboard\""]",698.24,{},43410,0,"""North America""" +2023-09-03,50211,9334,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4538.06,{},35001,1,"""Europe""" +2024-01-10,50212,6771,"[\""Phone\"", \""Monitor\""]",3612.21,"{\""seasonal\"": \""15%\""}",97771,0,"""Europe""" +2024-07-24,50213,5529,"[\""Headphones\"", \""Keyboard\""]",4219.12,"{\""loyalty\"": \""13%\""}",111393,1,"""Asia""" +2023-08-05,50214,8465,"[\""Charger\"", \""Monitor\""]",4000.47,"{\""loyalty\"": \""8%\""}",20416,0,"""South America""" +2023-01-29,50215,6596,"[\""Monitor\""]",655.27,{},224339,0,"""South America""" +2023-03-25,50216,2246,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1724.42,"{\""loyalty\"": \""24%\""}",40649,1,"""North America""" +2023-12-13,50217,5506,"[\""Charger\"", \""Laptop\""]",1652.58,"{\""loyalty\"": \""16%\""}",165315,0,"""South America""" +2024-04-18,50218,6098,"[\""Wireless Mouse\""]",59.98,{},106448,1,"""South America""" +2024-04-25,50219,8916,"[\""Monitor\"", \""Phone\""]",3648.02,{},176346,1,"""South America""" +2023-04-26,50220,7865,"[\""Tablet\""]",1584.89,{},133373,0,"""Europe""" +2024-11-07,50221,9230,"[\""Phone\""]",3844.16,"{\""loyalty\"": \""8%\""}",188124,1,"""South America""" +2024-12-04,50222,650,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1552.22,"{\""promo\"": \""6%\""}",14983,1,"""South America""" +2023-09-01,50223,8299,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4959.65,{},69298,1,"""Africa""" +2023-11-07,50224,8249,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1909.44,"{\""promo\"": \""25%\""}",61500,0,"""South America""" +2023-10-16,50225,119,"[\""Wireless Mouse\"", \""Phone\""]",1470.29,"{\""loyalty\"": \""22%\""}",47311,1,"""Asia""" +2024-09-25,50226,6095,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",531.27,"{\""seasonal\"": \""27%\""}",285212,1,"""Asia""" +2024-04-16,50227,5091,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1299.62,"{\""loyalty\"": \""13%\""}",79751,0,"""South America""" +2023-06-26,50228,1781,"[\""Laptop\"", \""Charger\""]",4579.72,"{\""seasonal\"": \""23%\""}",105918,1,"""Asia""" +2024-09-17,50229,7968,"[\""Phone\""]",3999.68,"{\""seasonal\"": \""10%\""}",179642,0,"""Europe""" +2023-08-14,50230,7239,"[\""Phone\"", \""Charger\""]",1962.52,"{\""loyalty\"": \""8%\""}",247929,1,"""Asia""" +2024-11-19,50231,3038,"[\""Tablet\""]",3944.94,{},47672,0,"""Africa""" +2024-11-27,50232,9367,"[\""Tablet\"", \""Charger\""]",4829.95,{},58554,0,"""Asia""" +2023-09-14,50233,1141,"[\""Charger\""]",3134.34,{},77759,1,"""North America""" +2023-08-07,50234,9009,"[\""Wireless Mouse\"", \""Charger\""]",375.23,"{\""seasonal\"": \""22%\""}",51665,1,"""Europe""" +2023-05-24,50235,2226,"[\""Tablet\"", \""Keyboard\""]",4389.74,"{\"": \""6%\""}",215461,0,"""South America""" +2023-05-20,50236,9382,"[\""Headphones\""]",3474.31,{},167722,1,"""Asia""" +2024-04-16,50237,1779,"[\""Tablet\""]",273.15,{},136665,0,"""Europe""" +2024-10-22,50238,3331,"[\""Tablet\"", \""Keyboard\""]",552.89,{},128941,0,"""Europe""" +2024-10-31,50239,993,"[\""Tablet\""]",1746.14,"{\"": \""17%\""}",183740,0,"""Asia""" +2023-09-05,50240,9377,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4105.73,{},208982,0,"""Africa""" +2024-01-08,50241,1494,"[\""Keyboard\"", \""Monitor\""]",2897.6,{},131207,1,"""Europe""" +2024-07-30,50242,5767,"[\""Charger\""]",2633.49,"{\""promo\"": \""22%\""}",97822,0,"""Europe""" +2023-11-19,50243,3804,"[\""Phone\"", \""Charger\""]",1834.76,"{\""seasonal\"": \""29%\""}",27237,0,"""Asia""" +2023-10-18,50244,902,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4959.84,"{\"": \""18%\""}",134695,1,"""Asia""" +2024-11-01,50245,5965,"[\""Monitor\"", \""Wireless Mouse\""]",1575.29,{},116211,0,"""Africa""" +2024-02-26,50246,3668,"[\""Laptop\"", \""Keyboard\""]",1823.28,"{\""promo\"": \""15%\""}",257176,1,"""South America""" +2024-03-15,50247,9994,"[\""Monitor\"", \""Charger\""]",3488.21,{},262435,0,"""Asia""" +2023-02-27,50248,357,"[\""Keyboard\""]",1664.44,{},44836,1,"""South America""" +2024-11-24,50249,7034,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2156.31,"{\""loyalty\"": \""28%\""}",84138,0,"""Asia""" +2024-06-03,50250,7828,"[\""Monitor\"", \""Tablet\""]",4859.24,"{\""loyalty\"": \""8%\""}",21030,1,"""North America""" +2024-02-15,50251,8642,"[\""Wireless Mouse\""]",2153.0,"{\""promo\"": \""24%\""}",267442,1,"""Asia""" +2024-04-05,50252,8963,"[\""Phone\"", \""Headphones\""]",2309.03,"{\""loyalty\"": \""17%\""}",137150,0,"""Africa""" +2023-05-02,50253,966,"[\""Tablet\"", \""Charger\""]",2747.39,"{\""seasonal\"": \""24%\""}",164489,1,"""Asia""" +2023-09-02,50254,7579,"[\""Charger\""]",2974.7,{},249928,1,"""North America""" +2023-04-24,50255,5795,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3974.23,{},18795,0,"""South America""" +2023-06-01,50256,3039,"[\""Wireless Mouse\""]",3855.27,"{\""promo\"": \""15%\""}",169970,0,"""Africa""" +2024-01-07,50257,5786,"[\""Tablet\""]",4188.25,{},248301,1,"""North America""" +2024-08-28,50258,2404,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4764.81,"{\"": \""20%\""}",54725,1,"""Asia""" +2023-04-17,50259,7492,"[\""Wireless Mouse\"", \""Charger\""]",1195.3,{},164118,1,"""South America""" +2024-08-03,50260,8740,"[\""Laptop\"", \""Wireless Mouse\""]",1701.28,"{\""seasonal\"": \""30%\""}",178372,0,"""South America""" +2023-03-20,50261,2486,"[\""Headphones\""]",1184.78,"{\"": \""30%\""}",185782,1,"""Asia""" +2023-06-27,50262,5012,"[\""Phone\""]",4887.8,"{\""seasonal\"": \""8%\""}",99607,1,"""Europe""" +2023-04-17,50263,5321,"[\""Keyboard\"", \""Wireless Mouse\""]",2917.83,"{\""seasonal\"": \""13%\""}",280184,1,"""Europe""" +2023-12-10,50264,5816,"[\""Headphones\"", \""Wireless Mouse\""]",498.76,"{\"": \""20%\""}",159725,1,"""North America""" +2024-03-01,50265,4709,"[\""Headphones\"", \""Laptop\""]",3281.02,"{\""seasonal\"": \""30%\""}",230821,0,"""North America""" +2023-02-22,50266,4480,"[\""Headphones\""]",3277.47,"{\""loyalty\"": \""12%\""}",219874,1,"""Asia""" +2024-05-07,50267,9977,"[\""Headphones\""]",4174.78,{},282556,0,"""Europe""" +2024-09-01,50268,7715,"[\""Laptop\"", \""Phone\""]",3579.26,"{\""seasonal\"": \""14%\""}",248350,0,"""North America""" +2024-10-31,50269,2626,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4926.26,"{\"": \""25%\""}",198049,0,"""Africa""" +2024-10-24,50270,4845,"[\""Monitor\"", \""Keyboard\""]",484.84,"{\""promo\"": \""30%\""}",113127,0,"""North America""" +2024-06-21,50271,9917,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2390.81,{},147316,1,"""Europe""" +2023-02-08,50272,7439,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3052.18,{},61826,0,"""Asia""" +2023-08-04,50273,6234,"[\""Monitor\"", \""Charger\""]",4564.99,"{\""loyalty\"": \""29%\""}",16453,0,"""Europe""" +2024-11-14,50274,7856,"[\""Headphones\""]",821.21,{},228615,1,"""North America""" +2024-05-18,50275,1970,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3697.94,"{\""promo\"": \""14%\""}",285958,0,"""South America""" +2024-06-22,50276,9970,"[\""Tablet\"", \""Phone\""]",4772.84,{},15364,0,"""Asia""" +2023-10-11,50277,786,"[\""Wireless Mouse\""]",2930.76,{},129351,0,"""North America""" +2023-12-22,50278,8851,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",213.61,{},252566,1,"""Africa""" +2023-05-31,50279,3293,"[\""Keyboard\""]",3757.55,{},133057,0,"""Asia""" +2024-12-21,50280,4023,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1254.61,{},73616,0,"""North America""" +2024-10-11,50281,6166,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1292.61,{},129808,0,"""Africa""" +2023-03-05,50282,4244,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3741.44,{},139594,0,"""Africa""" +2024-12-01,50283,9079,"[\""Headphones\"", \""Laptop\""]",3176.96,{},271843,0,"""Africa""" +2023-10-19,50284,4000,"[\""Headphones\"", \""Charger\""]",4224.82,"{\"": \""14%\""}",79665,1,"""North America""" +2024-02-27,50285,7995,"[\""Laptop\"", \""Phone\""]",1260.91,"{\"": \""10%\""}",219700,0,"""North America""" +2024-09-15,50286,7338,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1799.67,{},125879,1,"""Asia""" +2024-03-14,50287,6576,"[\""Wireless Mouse\""]",4131.48,"{\""loyalty\"": \""29%\""}",262316,0,"""Asia""" +2023-12-17,50288,1978,"[\""Laptop\"", \""Keyboard\""]",1704.02,{},223154,0,"""South America""" +2024-04-13,50289,5103,"[\""Tablet\"", \""Keyboard\""]",2879.77,{},133759,0,"""North America""" +2023-02-05,50290,6944,"[\""Laptop\"", \""Phone\""]",4410.87,"{\"": \""12%\""}",215446,1,"""Europe""" +2023-03-26,50291,2666,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2476.19,"{\"": \""26%\""}",138705,0,"""Africa""" +2023-01-09,50292,5038,"[\""Charger\"", \""Tablet\""]",4163.51,"{\""loyalty\"": \""20%\""}",38021,0,"""North America""" +2023-10-21,50293,6234,"[\""Charger\"", \""Phone\""]",1007.43,"{\""loyalty\"": \""6%\""}",65458,0,"""Asia""" +2023-10-31,50294,5923,"[\""Charger\""]",4139.64,"{\""loyalty\"": \""7%\""}",190093,1,"""Africa""" +2023-03-21,50295,8645,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3017.94,"{\""seasonal\"": \""21%\""}",256919,1,"""Asia""" +2024-11-04,50296,564,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2873.87,"{\"": \""25%\""}",77754,1,"""South America""" +2024-03-04,50297,6951,"[\""Headphones\""]",1814.2,"{\""promo\"": \""19%\""}",119175,0,"""Africa""" +2023-11-04,50298,7477,"[\""Headphones\""]",516.95,{},164307,1,"""North America""" +2023-04-03,50299,6159,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2701.16,"{\"": \""5%\""}",299162,0,"""Europe""" +2023-04-13,50300,5565,"[\""Monitor\"", \""Wireless Mouse\""]",1723.32,{},164650,0,"""Asia""" +2024-03-03,50301,8943,"[\""Laptop\"", \""Phone\""]",261.53,"{\""loyalty\"": \""14%\""}",93083,1,"""North America""" +2024-06-29,50302,3063,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",488.98,{},218651,1,"""South America""" +2023-09-05,50303,9523,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2525.53,{},123489,1,"""Europe""" +2024-08-06,50304,4708,"[\""Keyboard\""]",3471.82,{},233438,1,"""Asia""" +2023-02-18,50305,4901,"[\""Laptop\""]",1011.47,{},48258,1,"""North America""" +2024-10-13,50306,3763,"[\""Charger\"", \""Laptop\""]",1269.67,{},249368,1,"""North America""" +2023-08-19,50307,910,"[\""Charger\""]",2421.33,{},123773,0,"""Africa""" +2024-01-12,50308,9462,"[\""Phone\""]",2261.25,{},209839,1,"""North America""" +2023-01-08,50309,8226,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4094.91,"{\""promo\"": \""23%\""}",12654,1,"""Asia""" +2024-02-13,50310,2757,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2979.48,{},187609,1,"""Europe""" +2024-01-27,50311,6784,"[\""Wireless Mouse\""]",987.8,{},202843,0,"""Europe""" +2024-09-21,50312,871,"[\""Laptop\"", \""Tablet\""]",494.11,"{\""seasonal\"": \""16%\""}",285234,0,"""North America""" +2023-04-18,50313,8966,"[\""Keyboard\""]",2355.44,"{\""seasonal\"": \""5%\""}",269612,0,"""Asia""" +2024-03-18,50314,3065,"[\""Tablet\""]",2696.79,"{\"": \""21%\""}",74417,1,"""Asia""" +2023-03-02,50315,2008,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",53.47,"{\""loyalty\"": \""29%\""}",25737,1,"""Africa""" +2023-07-15,50316,8385,"[\""Laptop\"", \""Phone\""]",1905.67,{},1691,1,"""Europe""" +2024-06-07,50317,2897,"[\""Monitor\"", \""Charger\""]",4276.7,{},45602,0,"""Europe""" +2024-02-23,50318,669,"[\""Tablet\"", \""Monitor\""]",2426.49,{},96669,0,"""Africa""" +2024-08-01,50319,36,"[\""Headphones\"", \""Phone\""]",916.92,"{\""loyalty\"": \""7%\""}",277079,1,"""Asia""" +2024-10-21,50320,5333,"[\""Laptop\"", \""Charger\""]",4817.5,"{\""seasonal\"": \""23%\""}",228274,1,"""North America""" +2023-08-21,50321,2830,"[\""Phone\""]",492.9,{},102095,1,"""Asia""" +2023-05-29,50322,8179,"[\""Phone\"", \""Monitor\""]",1624.25,{},30746,0,"""North America""" +2023-08-22,50323,6334,"[\""Monitor\"", \""Keyboard\""]",4917.93,"{\""seasonal\"": \""29%\""}",242544,1,"""Africa""" +2024-06-28,50324,3460,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2889.94,"{\""seasonal\"": \""21%\""}",253965,1,"""Asia""" +2024-03-18,50325,7255,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2657.08,{},49502,0,"""South America""" +2024-11-13,50326,9543,"[\""Tablet\""]",4096.44,{},40396,1,"""North America""" +2023-10-23,50327,7375,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",162.99,"{\""promo\"": \""12%\""}",118073,1,"""North America""" +2024-09-21,50328,5549,"[\""Laptop\""]",809.48,"{\""loyalty\"": \""28%\""}",67397,0,"""Africa""" +2023-07-01,50329,3919,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1718.33,"{\""seasonal\"": \""26%\""}",252072,0,"""South America""" +2024-04-11,50330,4053,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4804.07,{},129565,1,"""North America""" +2024-05-26,50331,2761,"[\""Monitor\""]",1781.83,"{\""seasonal\"": \""14%\""}",7951,0,"""Europe""" +2023-03-06,50332,5736,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3771.72,"{\""promo\"": \""30%\""}",37464,1,"""Africa""" +2024-05-29,50333,1461,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4072.25,"{\"": \""9%\""}",57631,0,"""North America""" +2023-08-10,50334,5952,"[\""Phone\""]",3265.66,"{\""seasonal\"": \""9%\""}",58681,0,"""North America""" +2024-09-28,50335,318,"[\""Tablet\""]",1871.99,{},53265,0,"""Africa""" +2024-10-23,50336,2957,"[\""Tablet\"", \""Laptop\""]",1814.77,{},69378,1,"""South America""" +2023-04-23,50337,2556,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3978.2,"{\""promo\"": \""11%\""}",288002,0,"""Asia""" +2023-04-15,50338,2753,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1968.25,"{\""seasonal\"": \""11%\""}",233068,0,"""North America""" +2024-01-13,50339,3924,"[\""Headphones\""]",3435.19,"{\"": \""17%\""}",238295,1,"""Africa""" +2023-10-04,50340,9956,"[\""Keyboard\"", \""Wireless Mouse\""]",746.0,"{\""seasonal\"": \""17%\""}",216509,1,"""Asia""" +2024-03-09,50341,158,"[\""Phone\""]",2894.13,"{\""loyalty\"": \""10%\""}",168898,1,"""North America""" +2023-06-13,50342,3789,"[\""Headphones\""]",1259.01,{},159391,0,"""Asia""" +2023-07-24,50343,5596,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3360.08,{},56171,0,"""South America""" +2023-12-01,50344,7429,"[\""Headphones\"", \""Tablet\""]",749.88,{},66169,0,"""Africa""" +2024-03-06,50345,9909,"[\""Charger\""]",3076.12,"{\"": \""16%\""}",120176,1,"""North America""" +2024-11-06,50346,522,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",994.02,{},45394,1,"""South America""" +2024-05-03,50347,1322,"[\""Tablet\""]",143.02,"{\""loyalty\"": \""9%\""}",67331,0,"""Africa""" +2024-01-05,50348,8036,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1673.35,{},75122,0,"""Africa""" +2024-12-11,50349,307,"[\""Wireless Mouse\""]",1292.05,"{\""seasonal\"": \""22%\""}",279227,1,"""Europe""" +2023-03-30,50350,5648,"[\""Laptop\"", \""Wireless Mouse\""]",4906.84,"{\""seasonal\"": \""7%\""}",55617,1,"""Asia""" +2023-02-14,50351,2661,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",400.39,{},265935,1,"""Africa""" +2023-08-03,50352,7136,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2060.83,"{\""promo\"": \""28%\""}",177964,0,"""Europe""" +2023-07-09,50353,5272,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1670.21,{},232466,1,"""Africa""" +2024-07-31,50354,4641,"[\""Monitor\""]",1161.16,{},114340,1,"""North America""" +2023-10-07,50355,9662,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3953.13,{},213024,1,"""Africa""" +2023-06-28,50356,3811,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3633.72,"{\""promo\"": \""25%\""}",174893,0,"""Asia""" +2024-11-08,50357,8098,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",584.78,{},196606,1,"""Asia""" +2024-02-27,50358,663,"[\""Monitor\"", \""Wireless Mouse\""]",1425.51,{},51894,0,"""South America""" +2024-05-28,50359,2780,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4398.31,"{\"": \""13%\""}",151451,1,"""Europe""" +2024-09-01,50360,4035,"[\""Wireless Mouse\""]",4147.07,"{\"": \""27%\""}",125905,0,"""Africa""" +2024-02-26,50361,6310,"[\""Laptop\""]",2764.14,{},284382,1,"""Africa""" +2023-09-15,50362,6984,"[\""Phone\""]",4832.7,{},165999,0,"""Asia""" +2023-07-09,50363,3062,"[\""Headphones\""]",1627.32,"{\""promo\"": \""17%\""}",2134,1,"""Europe""" +2023-12-15,50364,8164,"[\""Charger\""]",2542.21,{},57057,0,"""Asia""" +2024-11-02,50365,7677,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2367.7,{},152328,1,"""North America""" +2024-02-25,50366,7571,"[\""Charger\"", \""Wireless Mouse\""]",4864.16,"{\""promo\"": \""21%\""}",3288,1,"""North America""" +2023-08-02,50367,6854,"[\""Headphones\"", \""Wireless Mouse\""]",144.19,{},228269,0,"""Europe""" +2024-01-28,50368,5175,"[\""Keyboard\"", \""Wireless Mouse\""]",2061.32,"{\""seasonal\"": \""23%\""}",48697,0,"""Europe""" +2024-09-05,50369,4118,"[\""Charger\"", \""Phone\""]",2630.25,"{\"": \""15%\""}",267980,0,"""North America""" +2023-10-09,50370,248,"[\""Keyboard\""]",2536.89,"{\""promo\"": \""23%\""}",291228,1,"""Europe""" +2024-03-29,50371,4661,"[\""Headphones\"", \""Charger\""]",1361.27,"{\""loyalty\"": \""28%\""}",66319,0,"""Asia""" +2024-12-23,50372,2770,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1673.1,{},2711,0,"""Africa""" +2024-06-01,50373,248,"[\""Keyboard\"", \""Laptop\""]",2176.19,"{\"": \""13%\""}",216304,1,"""North America""" +2023-11-15,50374,366,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",456.43,{},247834,1,"""Asia""" +2024-12-15,50375,8021,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",558.44,{},227871,1,"""North America""" +2023-02-04,50376,6945,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2190.51,"{\""promo\"": \""14%\""}",100476,0,"""Europe""" +2023-05-10,50377,3364,"[\""Charger\"", \""Headphones\""]",344.13,"{\""seasonal\"": \""8%\""}",190750,1,"""South America""" +2024-03-23,50378,737,"[\""Charger\"", \""Keyboard\""]",3159.91,"{\""promo\"": \""11%\""}",284673,0,"""North America""" +2023-10-22,50379,2268,"[\""Monitor\""]",2828.29,{},250373,1,"""South America""" +2023-03-31,50380,4162,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4922.6,{},1705,1,"""North America""" +2024-03-13,50381,8924,"[\""Monitor\"", \""Phone\""]",949.48,"{\""promo\"": \""29%\""}",253521,1,"""South America""" +2024-07-31,50382,1979,"[\""Laptop\"", \""Wireless Mouse\""]",3796.78,{},231261,0,"""North America""" +2024-11-12,50383,7099,"[\""Wireless Mouse\"", \""Headphones\""]",167.45,{},38108,0,"""North America""" +2024-12-25,50384,3781,"[\""Headphones\""]",3801.67,{},83349,0,"""Europe""" +2023-01-04,50385,8590,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1768.49,{},164366,1,"""Asia""" +2024-01-06,50386,3893,"[\""Headphones\"", \""Laptop\""]",2878.85,{},101799,0,"""North America""" +2024-12-21,50387,582,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1181.41,"{\""seasonal\"": \""25%\""}",165002,1,"""South America""" +2023-10-26,50388,1912,"[\""Headphones\"", \""Keyboard\""]",2228.87,{},77088,1,"""Europe""" +2024-02-21,50389,2123,"[\""Headphones\"", \""Phone\""]",2664.36,"{\""promo\"": \""29%\""}",129504,0,"""Africa""" +2024-11-09,50390,2848,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",554.8,{},219961,0,"""South America""" +2023-10-29,50391,1391,"[\""Laptop\"", \""Headphones\""]",1969.32,{},231879,0,"""South America""" +2024-08-18,50392,3851,"[\""Tablet\""]",610.44,"{\""promo\"": \""13%\""}",14745,0,"""Europe""" +2024-05-27,50393,3851,"[\""Headphones\""]",2078.49,{},47917,1,"""Africa""" +2024-02-18,50394,3351,"[\""Charger\""]",601.27,{},186665,0,"""South America""" +2024-01-23,50395,8858,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3159.69,{},129531,0,"""Africa""" +2023-01-09,50396,2785,"[\""Tablet\""]",1870.32,{},109149,0,"""Africa""" +2024-04-20,50397,1158,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3500.15,{},169194,0,"""South America""" +2023-08-10,50398,9796,"[\""Phone\""]",3793.86,"{\"": \""12%\""}",1004,0,"""Asia""" +2023-09-09,50399,1227,"[\""Monitor\""]",1960.72,"{\""seasonal\"": \""7%\""}",71749,1,"""Asia""" +2023-01-28,50400,6973,"[\""Laptop\""]",1116.52,"{\""seasonal\"": \""23%\""}",96050,1,"""South America""" +2023-07-09,50401,8116,"[\""Charger\""]",1573.32,{},114749,1,"""Europe""" +2023-01-08,50402,83,"[\""Charger\"", \""Phone\""]",4186.68,"{\""loyalty\"": \""18%\""}",155274,0,"""Asia""" +2024-04-04,50403,3829,"[\""Phone\"", \""Monitor\""]",2770.14,"{\"": \""9%\""}",96744,1,"""North America""" +2023-06-21,50404,4297,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",150.73,{},163659,0,"""Asia""" +2023-08-25,50405,570,"[\""Tablet\"", \""Charger\""]",4868.95,{},29840,1,"""Africa""" +2023-05-23,50406,4941,"[\""Tablet\"", \""Headphones\""]",3677.79,"{\""seasonal\"": \""24%\""}",191250,1,"""Asia""" +2024-05-03,50407,102,"[\""Keyboard\"", \""Tablet\""]",912.24,{},31563,0,"""South America""" +2023-11-22,50408,3284,"[\""Monitor\"", \""Headphones\""]",656.87,"{\"": \""10%\""}",129100,1,"""Europe""" +2023-11-03,50409,3867,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",328.24,{},80611,1,"""Africa""" +2024-10-14,50410,8156,"[\""Monitor\"", \""Wireless Mouse\""]",4134.02,"{\"": \""30%\""}",286869,0,"""South America""" +2023-10-01,50411,6446,"[\""Keyboard\"", \""Headphones\""]",698.14,{},258551,0,"""Asia""" +2024-05-19,50412,8429,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2913.85,"{\""seasonal\"": \""6%\""}",124848,0,"""Africa""" +2023-01-10,50413,9642,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",181.2,{},49991,1,"""Africa""" +2023-02-08,50414,3164,"[\""Keyboard\""]",133.3,{},98027,0,"""North America""" +2023-12-04,50415,4803,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4690.89,{},162670,1,"""Africa""" +2024-03-17,50416,9363,"[\""Keyboard\""]",877.32,"{\""promo\"": \""20%\""}",116035,1,"""Africa""" +2024-03-12,50417,8101,"[\""Keyboard\""]",119.82,"{\""loyalty\"": \""12%\""}",30355,1,"""North America""" +2024-06-09,50418,8852,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4049.81,{},15523,1,"""Asia""" +2023-10-27,50419,5489,"[\""Wireless Mouse\""]",263.5,"{\"": \""26%\""}",197807,1,"""Asia""" +2023-03-06,50420,1643,"[\""Wireless Mouse\"", \""Tablet\""]",3121.84,"{\""seasonal\"": \""16%\""}",297541,0,"""South America""" +2024-09-06,50421,4007,"[\""Laptop\""]",4421.21,{},23475,1,"""South America""" +2024-07-13,50422,3489,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",596.16,{},154748,0,"""South America""" +2023-03-20,50423,9354,"[\""Charger\""]",2247.67,{},253200,1,"""Asia""" +2023-11-02,50424,4469,"[\""Wireless Mouse\""]",3707.19,{},4600,0,"""South America""" +2024-03-30,50425,8360,"[\""Headphones\"", \""Phone\""]",4744.27,{},266807,1,"""Asia""" +2023-09-25,50426,9165,"[\""Charger\"", \""Phone\""]",691.41,"{\"": \""30%\""}",164021,1,"""North America""" +2023-08-17,50427,1457,"[\""Headphones\""]",3963.74,{},216153,0,"""North America""" +2023-01-28,50428,3653,"[\""Wireless Mouse\"", \""Charger\""]",2940.82,{},26461,0,"""South America""" +2023-05-27,50429,9214,"[\""Wireless Mouse\""]",1584.93,{},133288,0,"""South America""" +2023-05-01,50430,6548,"[\""Tablet\"", \""Monitor\""]",3601.54,{},245069,0,"""Africa""" +2024-11-22,50431,593,"[\""Phone\"", \""Monitor\""]",2907.14,{},62034,1,"""North America""" +2024-04-19,50432,3573,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1098.69,"{\""promo\"": \""21%\""}",5551,0,"""Europe""" +2024-04-19,50433,5733,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4350.87,"{\"": \""5%\""}",76357,1,"""Asia""" +2024-01-23,50434,9629,"[\""Laptop\""]",4901.74,{},141484,1,"""Europe""" +2023-04-13,50435,9660,"[\""Charger\"", \""Phone\""]",239.86,{},27274,1,"""Africa""" +2023-04-04,50436,1713,"[\""Keyboard\""]",1932.08,"{\""loyalty\"": \""15%\""}",263658,1,"""South America""" +2024-04-25,50437,866,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3062.27,"{\""loyalty\"": \""27%\""}",131285,0,"""South America""" +2023-11-28,50438,1832,"[\""Keyboard\"", \""Phone\""]",2262.52,{},32970,0,"""North America""" +2024-10-16,50439,246,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",624.43,{},223492,0,"""Africa""" +2024-02-26,50440,8602,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1241.3,{},290816,1,"""Africa""" +2023-08-24,50441,3500,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",978.62,"{\""seasonal\"": \""6%\""}",148765,0,"""Europe""" +2024-05-10,50442,6525,"[\""Headphones\"", \""Wireless Mouse\""]",3693.93,{},207075,0,"""South America""" +2024-05-18,50443,2982,"[\""Wireless Mouse\""]",4256.04,"{\""loyalty\"": \""17%\""}",243823,1,"""Africa""" +2023-10-31,50444,9127,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1041.89,"{\"": \""10%\""}",209241,1,"""South America""" +2023-10-03,50445,5671,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3902.06,"{\""seasonal\"": \""29%\""}",45682,0,"""South America""" +2024-06-30,50446,7201,"[\""Charger\"", \""Keyboard\""]",4131.97,"{\""seasonal\"": \""18%\""}",75576,0,"""South America""" +2024-12-25,50447,4388,"[\""Laptop\""]",1243.25,{},107494,0,"""South America""" +2023-03-12,50448,103,"[\""Wireless Mouse\""]",1144.58,{},98531,0,"""Europe""" +2023-09-30,50449,5240,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2688.79,"{\"": \""25%\""}",8525,1,"""Asia""" +2023-05-15,50450,3380,"[\""Tablet\""]",4561.38,{},159670,0,"""Asia""" +2023-11-25,50451,5081,"[\""Headphones\"", \""Phone\""]",4828.78,"{\""loyalty\"": \""10%\""}",242106,1,"""Asia""" +2024-06-17,50452,2277,"[\""Phone\""]",126.41,{},287290,1,"""South America""" +2023-06-22,50453,6926,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3501.9,{},160349,1,"""Asia""" +2023-11-09,50454,9058,"[\""Phone\"", \""Keyboard\""]",236.51,{},61910,1,"""Africa""" +2024-03-11,50455,1083,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3052.25,{},37405,0,"""Africa""" +2023-07-31,50456,6266,"[\""Laptop\""]",137.43,{},29390,1,"""South America""" +2023-03-30,50457,504,"[\""Keyboard\"", \""Tablet\""]",4501.81,{},194331,0,"""Africa""" +2024-08-27,50458,9669,"[\""Phone\""]",3501.6,{},123239,1,"""Europe""" +2023-02-02,50459,9127,"[\""Phone\"", \""Charger\""]",2823.34,"{\"": \""15%\""}",57470,0,"""Africa""" +2024-07-02,50460,9424,"[\""Phone\""]",1034.68,{},40250,0,"""South America""" +2023-01-24,50461,2852,"[\""Headphones\"", \""Wireless Mouse\""]",2798.78,{},185311,0,"""South America""" +2024-09-08,50462,7337,"[\""Laptop\"", \""Charger\"", \""Phone\""]",577.21,"{\""promo\"": \""13%\""}",212435,1,"""South America""" +2023-10-08,50463,1047,"[\""Phone\""]",4432.8,{},232425,1,"""North America""" +2024-02-04,50464,5103,"[\""Charger\""]",3529.51,{},201352,0,"""Europe""" +2024-07-01,50465,9645,"[\""Headphones\""]",3676.45,{},218342,1,"""Africa""" +2024-06-27,50466,1138,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2446.9,{},94546,1,"""South America""" +2023-10-20,50467,311,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2071.11,"{\""loyalty\"": \""21%\""}",94355,1,"""South America""" +2024-06-06,50468,8075,"[\""Keyboard\"", \""Wireless Mouse\""]",1473.4,"{\"": \""6%\""}",214322,0,"""Africa""" +2024-11-21,50469,7437,"[\""Headphones\""]",3981.57,{},285326,0,"""Europe""" +2024-05-25,50470,74,"[\""Wireless Mouse\"", \""Tablet\""]",1081.05,{},39521,0,"""South America""" +2024-12-16,50471,4693,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",113.79,"{\"": \""18%\""}",293854,0,"""Asia""" +2023-06-19,50472,2509,"[\""Charger\"", \""Phone\""]",4737.99,"{\""promo\"": \""5%\""}",114035,0,"""South America""" +2023-03-14,50473,740,"[\""Keyboard\"", \""Phone\""]",3212.06,{},2594,0,"""Europe""" +2023-05-20,50474,950,"[\""Charger\""]",2173.61,{},153762,0,"""South America""" +2023-04-18,50475,6432,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",968.94,"{\"": \""30%\""}",2127,0,"""Asia""" +2023-05-30,50476,6600,"[\""Tablet\""]",2597.62,{},196119,0,"""Africa""" +2024-01-08,50477,6551,"[\""Monitor\"", \""Phone\""]",4909.6,"{\"": \""28%\""}",155055,1,"""Europe""" +2023-12-28,50478,7974,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1831.43,"{\""loyalty\"": \""25%\""}",52664,0,"""Asia""" +2023-10-10,50479,6201,"[\""Keyboard\"", \""Phone\""]",1593.73,"{\""promo\"": \""16%\""}",184920,1,"""Asia""" +2024-01-07,50480,6557,"[\""Monitor\""]",1426.53,{},99769,0,"""Asia""" +2023-07-11,50481,8248,"[\""Tablet\"", \""Wireless Mouse\""]",1174.35,"{\"": \""19%\""}",55301,1,"""Africa""" +2023-07-09,50482,9393,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",756.93,{},274481,1,"""North America""" +2023-09-11,50483,7923,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4003.22,"{\""loyalty\"": \""27%\""}",196574,0,"""South America""" +2023-06-22,50484,1648,"[\""Phone\"", \""Headphones\""]",1173.75,{},248203,1,"""Europe""" +2023-02-17,50485,5846,"[\""Tablet\""]",2468.47,{},126886,0,"""South America""" +2023-11-12,50486,3760,"[\""Phone\""]",2145.71,"{\""promo\"": \""9%\""}",14800,1,"""Europe""" +2023-06-04,50487,7216,"[\""Headphones\""]",1732.65,{},5768,1,"""South America""" +2023-12-01,50488,80,"[\""Charger\"", \""Phone\""]",149.11,"{\""promo\"": \""14%\""}",209379,0,"""Europe""" +2024-06-18,50489,6525,"[\""Keyboard\"", \""Tablet\""]",899.03,"{\""loyalty\"": \""23%\""}",143010,0,"""South America""" +2024-10-02,50490,736,"[\""Keyboard\""]",3019.59,"{\"": \""30%\""}",100044,1,"""Africa""" +2023-11-03,50491,5661,"[\""Keyboard\"", \""Phone\""]",2362.85,{},253003,0,"""Europe""" +2024-05-08,50492,190,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4923.82,{},263309,0,"""Asia""" +2024-04-16,50493,8995,"[\""Phone\"", \""Tablet\""]",1561.84,{},48718,1,"""Asia""" +2024-05-12,50494,4690,"[\""Charger\"", \""Wireless Mouse\""]",3791.02,{},49630,0,"""Europe""" +2024-06-18,50495,6236,"[\""Keyboard\"", \""Laptop\""]",1267.02,"{\"": \""10%\""}",16269,0,"""Africa""" +2024-01-25,50496,9583,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4913.69,{},162361,0,"""Asia""" +2023-07-17,50497,6286,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",304.58,{},125760,0,"""Europe""" +2024-01-21,50498,4207,"[\""Laptop\"", \""Phone\""]",4543.04,{},281436,0,"""North America""" +2023-08-24,50499,4691,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",882.83,{},5463,1,"""Africa""" +2023-04-20,50500,5632,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4403.55,{},257128,0,"""South America""" +2024-07-26,50501,1635,"[\""Monitor\""]",1547.41,"{\"": \""17%\""}",261070,1,"""Asia""" +2024-05-18,50502,262,"[\""Headphones\""]",4789.25,{},108951,1,"""Africa""" +2023-02-13,50503,8078,"[\""Monitor\"", \""Headphones\""]",4364.54,"{\""loyalty\"": \""9%\""}",34242,1,"""North America""" +2023-12-05,50504,6390,"[\""Monitor\"", \""Laptop\""]",3309.25,"{\""loyalty\"": \""7%\""}",137582,0,"""Europe""" +2023-12-12,50505,9398,"[\""Headphones\""]",1654.77,"{\""loyalty\"": \""20%\""}",281812,0,"""Asia""" +2024-03-30,50506,7167,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4481.93,{},110621,0,"""South America""" +2023-05-26,50507,1639,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3550.62,"{\""promo\"": \""13%\""}",129601,1,"""Asia""" +2024-01-15,50508,6811,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3787.44,{},50528,1,"""Asia""" +2023-12-04,50509,9303,"[\""Headphones\""]",1160.45,"{\""promo\"": \""19%\""}",195674,0,"""Africa""" +2023-03-08,50510,2183,"[\""Monitor\"", \""Wireless Mouse\""]",3494.65,"{\""loyalty\"": \""29%\""}",49998,0,"""Africa""" +2023-06-09,50511,33,"[\""Headphones\"", \""Phone\""]",2218.86,{},41472,1,"""South America""" +2023-03-31,50512,8409,"[\""Tablet\"", \""Monitor\""]",1785.18,{},155192,0,"""Africa""" +2023-04-10,50513,300,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4441.76,"{\""seasonal\"": \""11%\""}",186646,0,"""Asia""" +2023-11-28,50514,3430,"[\""Wireless Mouse\""]",602.4,{},173056,0,"""Europe""" +2023-09-03,50515,1526,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3116.13,"{\""seasonal\"": \""11%\""}",144814,1,"""Europe""" +2024-07-14,50516,5732,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3892.24,"{\""loyalty\"": \""16%\""}",293073,1,"""Africa""" +2024-07-01,50517,1569,"[\""Tablet\""]",901.7,{},75188,1,"""South America""" +2024-09-27,50518,842,"[\""Charger\""]",4794.62,{},37890,1,"""North America""" +2024-11-05,50519,9655,"[\""Wireless Mouse\"", \""Keyboard\""]",3678.43,{},1461,1,"""South America""" +2024-06-04,50520,9071,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3384.15,{},1368,1,"""North America""" +2023-04-14,50521,6967,"[\""Monitor\""]",1474.88,"{\""loyalty\"": \""17%\""}",117477,0,"""Europe""" +2023-03-16,50522,9138,"[\""Charger\"", \""Keyboard\""]",1864.44,"{\""promo\"": \""22%\""}",30491,1,"""Africa""" +2024-07-05,50523,1553,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4699.67,{},185661,1,"""South America""" +2023-09-30,50524,1961,"[\""Wireless Mouse\"", \""Tablet\""]",692.05,"{\"": \""9%\""}",271365,1,"""Europe""" +2023-08-22,50525,2570,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",88.58,"{\"": \""21%\""}",76024,0,"""Asia""" +2024-06-12,50526,8959,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",599.13,{},238116,0,"""North America""" +2024-06-18,50527,8920,"[\""Tablet\"", \""Keyboard\""]",1853.18,{},27905,1,"""North America""" +2024-09-24,50528,4773,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4840.01,{},47409,1,"""Europe""" +2024-05-26,50529,2977,"[\""Charger\"", \""Keyboard\""]",4831.03,"{\""promo\"": \""16%\""}",140335,0,"""Asia""" +2023-02-18,50530,3928,"[\""Wireless Mouse\"", \""Phone\""]",1687.74,{},139503,1,"""South America""" +2023-06-02,50531,256,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2035.51,{},151750,1,"""North America""" +2024-04-17,50532,1208,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4126.2,{},231599,0,"""South America""" +2024-07-01,50533,96,"[\""Charger\""]",4232.52,{},125966,0,"""South America""" +2023-08-24,50534,9710,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4827.31,{},238849,0,"""Africa""" +2024-05-18,50535,888,"[\""Monitor\"", \""Phone\""]",2481.83,{},43270,1,"""North America""" +2024-07-29,50536,3163,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3351.31,{},170890,0,"""North America""" +2023-10-16,50537,6075,"[\""Monitor\"", \""Charger\""]",1192.92,"{\""loyalty\"": \""7%\""}",113460,0,"""South America""" +2023-07-16,50538,2375,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4189.58,{},93115,1,"""Asia""" +2024-11-17,50539,2391,"[\""Laptop\""]",963.21,"{\"": \""29%\""}",228412,1,"""North America""" +2023-07-06,50540,9388,"[\""Headphones\"", \""Keyboard\""]",415.56,"{\"": \""18%\""}",41122,1,"""North America""" +2023-07-13,50541,6542,"[\""Charger\"", \""Phone\""]",1242.85,"{\""loyalty\"": \""22%\""}",65053,1,"""Europe""" +2023-03-16,50542,6545,"[\""Monitor\"", \""Charger\""]",4455.97,{},190070,0,"""South America""" +2023-09-16,50543,4359,"[\""Charger\""]",3424.83,"{\""seasonal\"": \""9%\""}",269034,0,"""Asia""" +2024-01-03,50544,7370,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",404.61,{},62398,1,"""Asia""" +2023-02-08,50545,9497,"[\""Wireless Mouse\""]",293.05,{},7971,1,"""Europe""" +2024-08-20,50546,6832,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3197.0,{},23248,1,"""South America""" +2023-07-02,50547,4579,"[\""Charger\""]",539.71,{},233393,1,"""North America""" +2023-06-01,50548,6179,"[\""Keyboard\""]",656.0,"{\""seasonal\"": \""15%\""}",2190,1,"""Asia""" +2024-03-06,50549,5959,"[\""Headphones\"", \""Monitor\""]",958.55,{},275311,0,"""Europe""" +2024-05-14,50550,1883,"[\""Charger\"", \""Tablet\""]",2897.64,{},183946,1,"""Africa""" +2023-12-20,50551,6262,"[\""Headphones\"", \""Keyboard\""]",3551.79,{},147574,0,"""South America""" +2023-10-21,50552,1779,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1522.85,"{\""promo\"": \""24%\""}",52352,1,"""Africa""" +2024-11-03,50553,4721,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3833.57,{},252602,0,"""South America""" +2024-08-30,50554,2544,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4027.49,{},212048,0,"""Asia""" +2023-09-20,50555,8855,"[\""Monitor\"", \""Keyboard\""]",3006.34,"{\"": \""13%\""}",20105,0,"""South America""" +2023-12-15,50556,5151,"[\""Phone\""]",4146.27,"{\""seasonal\"": \""7%\""}",208428,1,"""Europe""" +2023-01-12,50557,8467,"[\""Headphones\"", \""Laptop\""]",4537.43,"{\""promo\"": \""30%\""}",55983,0,"""North America""" +2024-01-21,50558,4538,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3575.94,"{\""promo\"": \""19%\""}",200914,1,"""Africa""" +2024-07-11,50559,9727,"[\""Tablet\""]",51.1,{},253627,0,"""Africa""" +2024-11-08,50560,5091,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3250.62,"{\""seasonal\"": \""8%\""}",19881,0,"""South America""" +2023-07-09,50561,1886,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1939.24,"{\"": \""30%\""}",150011,0,"""North America""" +2024-02-04,50562,4337,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4992.83,"{\""loyalty\"": \""7%\""}",203033,1,"""Europe""" +2024-04-19,50563,8153,"[\""Monitor\""]",2794.61,"{\"": \""17%\""}",62298,1,"""North America""" +2024-01-30,50564,8427,"[\""Charger\"", \""Wireless Mouse\""]",4830.32,"{\""loyalty\"": \""24%\""}",243693,1,"""Asia""" +2023-10-23,50565,2384,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3207.51,"{\""seasonal\"": \""21%\""}",8193,0,"""North America""" +2024-10-30,50566,505,"[\""Phone\"", \""Keyboard\""]",195.64,"{\"": \""21%\""}",162007,0,"""North America""" +2024-01-30,50567,5072,"[\""Charger\"", \""Keyboard\""]",4889.4,{},298613,0,"""Europe""" +2024-09-04,50568,4969,"[\""Laptop\"", \""Headphones\""]",3675.67,"{\"": \""16%\""}",100157,1,"""Asia""" +2023-07-21,50569,6691,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2488.12,{},38811,0,"""Asia""" +2023-11-23,50570,43,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2062.17,{},231300,1,"""Europe""" +2023-10-27,50571,8384,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3101.83,{},177878,1,"""South America""" +2024-11-21,50572,1951,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3505.43,"{\""loyalty\"": \""12%\""}",37802,0,"""Europe""" +2024-10-28,50573,9985,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2223.41,"{\""promo\"": \""12%\""}",240982,1,"""Europe""" +2023-01-27,50574,3572,"[\""Headphones\""]",2345.16,{},106651,1,"""Africa""" +2024-09-10,50575,7036,"[\""Laptop\"", \""Tablet\""]",2267.73,"{\"": \""27%\""}",298028,0,"""Europe""" +2024-09-25,50576,8317,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3868.9,{},154215,1,"""Asia""" +2024-08-03,50577,7569,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4415.77,"{\""seasonal\"": \""20%\""}",7604,0,"""Europe""" +2023-11-18,50578,3939,"[\""Laptop\""]",846.2,{},238143,1,"""Asia""" +2024-08-28,50579,2031,"[\""Phone\""]",2871.42,{},95381,1,"""South America""" +2023-12-14,50580,6701,"[\""Charger\""]",4112.68,{},213197,0,"""Africa""" +2023-01-10,50581,1834,"[\""Laptop\""]",4576.17,{},278199,1,"""North America""" +2023-08-30,50582,8362,"[\""Monitor\"", \""Laptop\""]",1025.55,"{\""loyalty\"": \""19%\""}",18027,1,"""South America""" +2024-12-04,50583,584,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",297.67,"{\""loyalty\"": \""25%\""}",189522,1,"""Africa""" +2023-08-02,50584,6898,"[\""Keyboard\"", \""Charger\""]",3157.46,{},160647,1,"""Africa""" +2023-07-13,50585,6679,"[\""Tablet\""]",2488.3,"{\""promo\"": \""29%\""}",239425,0,"""Europe""" +2023-09-01,50586,1266,"[\""Wireless Mouse\""]",3227.28,{},289512,0,"""Europe""" +2023-06-23,50587,6343,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",835.45,"{\""loyalty\"": \""10%\""}",131649,1,"""Asia""" +2023-01-02,50588,6880,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3116.69,"{\""seasonal\"": \""11%\""}",248494,0,"""North America""" +2023-02-21,50589,8798,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1460.47,{},162158,0,"""Asia""" +2023-10-07,50590,705,"[\""Headphones\"", \""Laptop\""]",2405.11,"{\""seasonal\"": \""9%\""}",116988,0,"""Africa""" +2023-08-11,50591,1512,"[\""Phone\"", \""Keyboard\""]",3465.48,"{\""loyalty\"": \""24%\""}",70601,1,"""North America""" +2023-10-16,50592,4281,"[\""Keyboard\""]",3409.58,"{\""seasonal\"": \""7%\""}",233226,1,"""North America""" +2024-03-28,50593,9389,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3772.75,{},218564,0,"""Europe""" +2023-12-10,50594,2112,"[\""Keyboard\""]",4186.46,{},244269,0,"""South America""" +2023-05-03,50595,6413,"[\""Charger\""]",1927.58,{},99683,1,"""Asia""" +2023-10-01,50596,5003,"[\""Wireless Mouse\"", \""Monitor\""]",4728.52,{},131411,0,"""Europe""" +2023-08-28,50597,9245,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1349.02,{},28090,1,"""North America""" +2023-07-10,50598,7286,"[\""Monitor\"", \""Charger\""]",4353.2,{},76250,1,"""North America""" +2023-02-06,50599,571,"[\""Tablet\"", \""Charger\""]",2666.13,"{\""loyalty\"": \""10%\""}",28863,1,"""South America""" +2024-01-01,50600,1839,"[\""Phone\""]",3868.62,"{\""seasonal\"": \""10%\""}",266491,0,"""North America""" +2023-07-26,50601,5494,"[\""Tablet\"", \""Charger\""]",408.19,"{\""seasonal\"": \""9%\""}",269671,0,"""Europe""" +2024-07-21,50602,881,"[\""Charger\""]",2713.62,{},92092,0,"""Africa""" +2023-08-03,50603,7167,"[\""Wireless Mouse\""]",497.99,{},3005,0,"""Europe""" +2023-04-23,50604,3305,"[\""Monitor\""]",4702.56,{},124212,1,"""Europe""" +2023-09-20,50605,5731,"[\""Wireless Mouse\"", \""Phone\""]",2525.84,{},253087,1,"""South America""" +2024-03-31,50606,5414,"[\""Phone\"", \""Laptop\""]",1370.58,"{\""promo\"": \""10%\""}",225768,1,"""Europe""" +2024-08-28,50607,4192,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2379.84,{},221201,1,"""Europe""" +2024-08-18,50608,4188,"[\""Monitor\"", \""Wireless Mouse\""]",4127.4,{},250805,0,"""Africa""" +2023-02-02,50609,1577,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3474.73,"{\""seasonal\"": \""15%\""}",209554,1,"""Europe""" +2023-11-25,50610,1758,"[\""Laptop\"", \""Monitor\""]",3146.24,"{\""promo\"": \""13%\""}",210351,0,"""South America""" +2024-08-29,50611,1147,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",506.93,"{\""seasonal\"": \""21%\""}",279720,1,"""South America""" +2024-07-28,50612,6288,"[\""Monitor\"", \""Wireless Mouse\""]",3763.51,"{\""promo\"": \""7%\""}",37189,1,"""Asia""" +2024-01-09,50613,5942,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4675.19,{},221982,1,"""Asia""" +2024-07-22,50614,7388,"[\""Laptop\""]",2932.87,"{\""promo\"": \""21%\""}",71150,0,"""Africa""" +2023-10-04,50615,9468,"[\""Phone\""]",4546.86,"{\""promo\"": \""27%\""}",227629,0,"""Asia""" +2023-07-03,50616,6689,"[\""Phone\"", \""Wireless Mouse\""]",1999.28,{},118012,0,"""Asia""" +2024-03-27,50617,5592,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4484.28,{},88426,1,"""Africa""" +2024-09-20,50618,4797,"[\""Phone\"", \""Charger\""]",1906.82,"{\"": \""11%\""}",126952,0,"""South America""" +2023-02-25,50619,7483,"[\""Keyboard\""]",1091.62,"{\""loyalty\"": \""17%\""}",46598,0,"""Africa""" +2023-10-31,50620,4996,"[\""Laptop\""]",3680.69,"{\""loyalty\"": \""16%\""}",103103,0,"""South America""" +2024-08-22,50621,7710,"[\""Tablet\"", \""Monitor\""]",2963.01,{},122754,0,"""South America""" +2023-04-30,50622,7531,"[\""Monitor\"", \""Laptop\""]",2353.02,"{\"": \""28%\""}",208664,1,"""Africa""" +2023-07-01,50623,2498,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4110.59,"{\""loyalty\"": \""10%\""}",5194,1,"""Europe""" +2024-06-22,50624,2072,"[\""Keyboard\""]",2494.53,"{\""loyalty\"": \""11%\""}",53118,0,"""Africa""" +2024-03-04,50625,8817,"[\""Monitor\"", \""Headphones\""]",2219.53,{},42603,1,"""Europe""" +2024-12-27,50626,2482,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4533.44,"{\""loyalty\"": \""5%\""}",128256,1,"""South America""" +2024-02-11,50627,201,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3268.57,"{\""seasonal\"": \""24%\""}",24666,0,"""Africa""" +2024-11-04,50628,1346,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4911.42,{},38979,0,"""North America""" +2023-10-06,50629,841,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1972.26,{},172034,1,"""Africa""" +2023-04-15,50630,4358,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4201.47,{},111122,1,"""Africa""" +2024-11-08,50631,436,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",671.61,"{\""promo\"": \""25%\""}",67398,1,"""South America""" +2024-05-15,50632,2742,"[\""Charger\"", \""Phone\""]",2683.91,"{\""loyalty\"": \""25%\""}",298812,0,"""Africa""" +2024-03-07,50633,1647,"[\""Monitor\"", \""Charger\""]",4898.58,"{\"": \""6%\""}",143948,1,"""Asia""" +2024-07-02,50634,256,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2253.36,"{\""promo\"": \""6%\""}",175002,0,"""Europe""" +2024-01-22,50635,8463,"[\""Headphones\""]",1889.04,"{\""loyalty\"": \""26%\""}",35077,1,"""Africa""" +2024-07-31,50636,9399,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4663.3,"{\"": \""29%\""}",170278,0,"""Africa""" +2024-12-31,50637,8737,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4126.46,{},289325,0,"""Europe""" +2023-07-04,50638,669,"[\""Charger\""]",1677.4,{},279724,0,"""Asia""" +2023-07-15,50639,776,"[\""Charger\""]",4714.07,"{\""seasonal\"": \""21%\""}",162242,1,"""Asia""" +2024-01-08,50640,1647,"[\""Phone\""]",1064.07,"{\"": \""5%\""}",173473,1,"""South America""" +2024-11-29,50641,5254,"[\""Laptop\"", \""Phone\""]",1256.69,{},77555,0,"""Asia""" +2024-12-31,50642,8165,"[\""Headphones\"", \""Monitor\""]",3193.79,{},110776,1,"""North America""" +2024-07-20,50643,5595,"[\""Laptop\""]",1033.89,{},77612,0,"""Africa""" +2023-09-27,50644,3119,"[\""Charger\"", \""Monitor\""]",2748.79,"{\""loyalty\"": \""15%\""}",261168,1,"""North America""" +2023-11-19,50645,1889,"[\""Headphones\"", \""Monitor\""]",399.56,"{\"": \""20%\""}",95396,1,"""South America""" +2024-05-05,50646,7484,"[\""Tablet\"", \""Monitor\""]",699.77,{},290092,0,"""Europe""" +2024-12-01,50647,4200,"[\""Keyboard\""]",1268.27,{},283040,1,"""South America""" +2023-05-23,50648,9690,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2783.88,{},65346,0,"""North America""" +2024-11-08,50649,6618,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3428.03,"{\""promo\"": \""18%\""}",299827,0,"""North America""" +2023-12-22,50650,5261,"[\""Charger\""]",4025.05,{},238289,0,"""North America""" +2024-05-16,50651,3584,"[\""Monitor\"", \""Wireless Mouse\""]",3542.83,"{\""promo\"": \""9%\""}",191087,0,"""South America""" +2024-12-25,50652,5661,"[\""Phone\"", \""Wireless Mouse\""]",697.01,"{\""seasonal\"": \""25%\""}",3981,0,"""Africa""" +2024-09-17,50653,932,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",181.69,{},11928,0,"""Europe""" +2023-01-10,50654,3226,"[\""Monitor\"", \""Keyboard\""]",2807.59,{},178827,0,"""Asia""" +2024-07-10,50655,2480,"[\""Headphones\"", \""Wireless Mouse\""]",2308.27,{},5007,1,"""Asia""" +2024-10-26,50656,17,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1206.12,"{\""promo\"": \""21%\""}",11035,0,"""South America""" +2024-12-21,50657,3110,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",345.03,"{\"": \""6%\""}",55933,0,"""Europe""" +2023-04-08,50658,3812,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3869.55,{},78686,0,"""Asia""" +2024-04-02,50659,7745,"[\""Laptop\""]",4429.17,"{\""seasonal\"": \""17%\""}",224874,1,"""South America""" +2023-04-05,50660,4319,"[\""Phone\""]",2796.21,"{\"": \""16%\""}",92052,0,"""South America""" +2024-04-10,50661,3109,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3622.76,"{\"": \""19%\""}",26572,1,"""South America""" +2023-01-17,50662,7019,"[\""Monitor\"", \""Tablet\""]",4117.0,{},101731,0,"""Africa""" +2023-05-28,50663,9122,"[\""Monitor\""]",3013.37,{},4815,0,"""Europe""" +2023-08-20,50664,636,"[\""Laptop\"", \""Headphones\""]",2836.99,"{\""loyalty\"": \""16%\""}",12254,1,"""North America""" +2023-05-26,50665,2916,"[\""Charger\"", \""Laptop\""]",2582.19,"{\"": \""23%\""}",237458,1,"""South America""" +2023-07-20,50666,479,"[\""Tablet\"", \""Laptop\""]",3027.15,{},246405,1,"""Europe""" +2024-02-24,50667,2540,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2598.21,{},68367,1,"""South America""" +2024-01-31,50668,9515,"[\""Laptop\""]",1135.89,{},197313,0,"""North America""" +2024-09-19,50669,1855,"[\""Wireless Mouse\""]",4371.75,"{\""promo\"": \""10%\""}",56106,0,"""Europe""" +2024-09-08,50670,4584,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2641.26,{},180409,0,"""North America""" +2023-08-19,50671,8232,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3747.8,{},222351,1,"""North America""" +2024-06-12,50672,7390,"[\""Monitor\""]",4998.18,"{\""loyalty\"": \""13%\""}",2275,0,"""Europe""" +2024-10-22,50673,2371,"[\""Phone\"", \""Keyboard\""]",1945.83,{},11196,0,"""Africa""" +2024-10-11,50674,1235,"[\""Charger\"", \""Tablet\""]",1112.07,"{\""loyalty\"": \""11%\""}",73580,1,"""Europe""" +2024-04-05,50675,6513,"[\""Keyboard\"", \""Wireless Mouse\""]",4051.57,{},105687,1,"""South America""" +2023-03-01,50676,9372,"[\""Laptop\""]",3111.66,{},270184,0,"""South America""" +2024-05-10,50677,2338,"[\""Phone\"", \""Wireless Mouse\""]",361.84,{},180095,1,"""Europe""" +2024-07-05,50678,3156,"[\""Monitor\"", \""Laptop\""]",1783.55,"{\""promo\"": \""20%\""}",131635,1,"""North America""" +2024-10-11,50679,5570,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4193.13,"{\"": \""26%\""}",222459,0,"""Europe""" +2024-08-11,50680,5061,"[\""Keyboard\""]",4131.35,"{\""promo\"": \""9%\""}",91927,0,"""Europe""" +2024-10-31,50681,4227,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1544.82,{},143375,1,"""Africa""" +2024-12-18,50682,3019,"[\""Monitor\""]",4971.45,"{\""loyalty\"": \""12%\""}",163015,1,"""Asia""" +2024-03-07,50683,5690,"[\""Laptop\"", \""Wireless Mouse\""]",2749.51,"{\"": \""24%\""}",176003,0,"""South America""" +2023-11-10,50684,3217,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4333.51,"{\""promo\"": \""18%\""}",192767,1,"""Asia""" +2024-09-15,50685,6369,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1236.79,{},194314,0,"""Europe""" +2023-10-17,50686,3552,"[\""Phone\""]",3847.18,{},124782,0,"""Asia""" +2023-02-23,50687,9025,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1969.2,{},218168,1,"""Europe""" +2024-11-25,50688,7577,"[\""Phone\""]",1053.52,{},231540,0,"""Europe""" +2024-03-30,50689,7769,"[\""Laptop\""]",3589.76,{},54217,0,"""Asia""" +2024-10-07,50690,907,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1390.68,{},102892,1,"""South America""" +2024-02-28,50691,5563,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4553.71,{},136964,1,"""Africa""" +2024-08-31,50692,1004,"[\""Wireless Mouse\"", \""Headphones\""]",4835.69,"{\"": \""17%\""}",94923,1,"""Asia""" +2024-05-29,50693,7047,"[\""Laptop\""]",3737.13,{},224628,1,"""North America""" +2024-04-21,50694,7059,"[\""Laptop\"", \""Headphones\""]",3279.62,"{\"": \""29%\""}",146991,0,"""Africa""" +2024-01-18,50695,1714,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",809.2,"{\"": \""26%\""}",251434,1,"""Europe""" +2024-03-26,50696,5497,"[\""Laptop\""]",284.25,"{\""promo\"": \""10%\""}",173136,1,"""North America""" +2024-01-20,50697,1430,"[\""Tablet\""]",2401.39,{},53808,0,"""South America""" +2023-02-04,50698,1644,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",170.33,"{\""seasonal\"": \""29%\""}",123240,1,"""Europe""" +2024-01-30,50699,3545,"[\""Monitor\""]",3552.42,{},112435,1,"""Europe""" +2023-05-13,50700,9984,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3163.21,"{\"": \""11%\""}",295456,1,"""South America""" +2023-03-01,50701,3982,"[\""Wireless Mouse\"", \""Keyboard\""]",4168.0,{},48552,0,"""Europe""" +2023-08-10,50702,8758,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",698.26,"{\""seasonal\"": \""24%\""}",238712,0,"""North America""" +2023-07-03,50703,3451,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4465.47,{},33769,1,"""Asia""" +2024-06-04,50704,2121,"[\""Wireless Mouse\""]",4466.94,"{\""loyalty\"": \""9%\""}",223146,0,"""South America""" +2024-10-03,50705,4240,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4765.71,{},163548,1,"""Africa""" +2024-08-22,50706,8215,"[\""Laptop\""]",788.3,{},164295,0,"""South America""" +2024-07-21,50707,2575,"[\""Laptop\""]",1997.57,{},4350,1,"""South America""" +2024-07-28,50708,1764,"[\""Wireless Mouse\"", \""Tablet\""]",3866.06,"{\""loyalty\"": \""22%\""}",245319,1,"""Europe""" +2023-01-08,50709,6354,"[\""Monitor\"", \""Charger\""]",4849.45,{},249520,0,"""Africa""" +2023-04-18,50710,2373,"[\""Tablet\"", \""Monitor\""]",3134.12,"{\""seasonal\"": \""6%\""}",160914,1,"""Asia""" +2023-01-25,50711,1389,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",105.93,"{\""promo\"": \""28%\""}",275978,0,"""South America""" +2023-01-11,50712,2585,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4230.57,"{\"": \""9%\""}",194909,1,"""Africa""" +2024-09-14,50713,7498,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3381.93,"{\""promo\"": \""15%\""}",172265,1,"""South America""" +2024-10-22,50714,6462,"[\""Phone\""]",2414.54,"{\""loyalty\"": \""27%\""}",37314,0,"""North America""" +2024-03-15,50715,5325,"[\""Keyboard\""]",4298.5,"{\""seasonal\"": \""24%\""}",57777,1,"""North America""" +2023-07-30,50716,1244,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",929.07,{},146189,0,"""Europe""" +2023-10-07,50717,4026,"[\""Monitor\"", \""Wireless Mouse\""]",4573.94,"{\""seasonal\"": \""30%\""}",299720,0,"""Europe""" +2024-05-10,50718,2387,"[\""Wireless Mouse\"", \""Phone\""]",3820.51,"{\""seasonal\"": \""17%\""}",126421,0,"""Europe""" +2024-12-29,50719,9860,"[\""Charger\""]",4167.43,{},170699,0,"""Africa""" +2023-01-20,50720,2446,"[\""Tablet\"", \""Laptop\""]",4003.24,"{\"": \""14%\""}",184378,0,"""North America""" +2024-11-24,50721,5438,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2292.26,{},65287,0,"""Asia""" +2023-03-13,50722,6760,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4708.21,{},33867,1,"""Asia""" +2023-05-16,50723,628,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2260.17,{},109583,0,"""Africa""" +2023-04-18,50724,8395,"[\""Headphones\""]",992.96,{},77011,0,"""Europe""" +2023-07-13,50725,4280,"[\""Headphones\""]",1766.06,{},229747,0,"""Africa""" +2024-12-29,50726,6110,"[\""Tablet\""]",3869.96,"{\"": \""27%\""}",36786,0,"""South America""" +2023-02-05,50727,3417,"[\""Charger\"", \""Tablet\""]",2314.25,{},11061,1,"""Asia""" +2024-01-29,50728,2558,"[\""Phone\"", \""Laptop\""]",3092.85,"{\"": \""13%\""}",237435,1,"""Africa""" +2023-09-12,50729,9865,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2593.72,"{\""seasonal\"": \""17%\""}",108460,0,"""Asia""" +2024-10-12,50730,1043,"[\""Keyboard\"", \""Headphones\""]",1440.57,{},194024,0,"""South America""" +2024-05-31,50731,426,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",544.28,{},76373,1,"""Asia""" +2023-04-19,50732,914,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4097.96,{},161695,0,"""Asia""" +2023-04-23,50733,5205,"[\""Tablet\""]",3641.21,"{\""promo\"": \""14%\""}",16032,0,"""Europe""" +2024-01-05,50734,1651,"[\""Monitor\"", \""Laptop\""]",4334.46,{},268747,1,"""Asia""" +2023-12-19,50735,2472,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1062.9,"{\""seasonal\"": \""25%\""}",200347,0,"""Africa""" +2023-07-11,50736,1204,"[\""Headphones\""]",1334.78,{},223461,1,"""North America""" +2024-11-15,50737,1883,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2449.13,{},177171,1,"""Europe""" +2024-02-06,50738,4811,"[\""Charger\""]",3251.05,"{\""seasonal\"": \""16%\""}",62464,0,"""Asia""" +2024-03-02,50739,4112,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4954.21,{},266077,0,"""Africa""" +2024-09-01,50740,7485,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2588.25,{},123059,0,"""North America""" +2023-06-04,50741,1910,"[\""Charger\"", \""Tablet\""]",2298.71,{},100796,0,"""Africa""" +2023-11-23,50742,1333,"[\""Charger\"", \""Wireless Mouse\""]",2673.38,"{\"": \""19%\""}",103732,1,"""South America""" +2023-01-13,50743,4481,"[\""Wireless Mouse\""]",3906.85,"{\""seasonal\"": \""6%\""}",13611,0,"""South America""" +2023-07-24,50744,4224,"[\""Tablet\"", \""Wireless Mouse\""]",1834.02,"{\"": \""15%\""}",125690,1,"""South America""" +2023-12-04,50745,1455,"[\""Tablet\"", \""Charger\""]",2663.81,{},36075,1,"""North America""" +2024-09-15,50746,791,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3381.98,{},136232,0,"""Europe""" +2024-10-28,50747,9968,"[\""Phone\"", \""Wireless Mouse\""]",4007.28,{},199532,0,"""Asia""" +2023-08-06,50748,4442,"[\""Laptop\""]",3386.04,"{\""seasonal\"": \""29%\""}",45887,0,"""South America""" +2024-03-02,50749,1828,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3112.34,"{\""loyalty\"": \""5%\""}",137691,0,"""Asia""" +2023-07-18,50750,4239,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4516.07,{},249171,0,"""Africa""" +2024-12-22,50751,7160,"[\""Headphones\"", \""Phone\""]",1911.4,{},296657,0,"""Europe""" +2023-11-17,50752,2761,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4292.6,{},25668,0,"""South America""" +2024-05-29,50753,5748,"[\""Keyboard\""]",756.23,"{\""seasonal\"": \""7%\""}",148540,1,"""Asia""" +2023-04-29,50754,2762,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3483.16,{},201191,1,"""South America""" +2023-05-25,50755,7069,"[\""Tablet\"", \""Laptop\""]",669.79,"{\""loyalty\"": \""25%\""}",171398,1,"""Africa""" +2024-01-12,50756,1492,"[\""Phone\""]",1530.29,"{\"": \""28%\""}",46582,0,"""South America""" +2024-01-11,50757,8067,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2893.08,"{\""promo\"": \""30%\""}",129422,1,"""South America""" +2023-08-20,50758,7437,"[\""Laptop\"", \""Charger\""]",432.91,{},168877,0,"""North America""" +2024-06-26,50759,2539,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4877.49,"{\""seasonal\"": \""29%\""}",37449,1,"""South America""" +2023-07-24,50760,552,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2670.81,{},291169,0,"""Europe""" +2024-02-13,50761,5515,"[\""Keyboard\"", \""Headphones\""]",1958.53,"{\"": \""16%\""}",278895,0,"""North America""" +2024-05-14,50762,2258,"[\""Phone\""]",2516.31,"{\""loyalty\"": \""7%\""}",235507,1,"""North America""" +2023-12-06,50763,3099,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",959.36,"{\"": \""10%\""}",247255,1,"""Africa""" +2023-10-12,50764,9893,"[\""Keyboard\""]",4405.74,{},271657,1,"""South America""" +2024-07-17,50765,9046,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1899.82,"{\"": \""22%\""}",141849,0,"""Asia""" +2023-08-28,50766,4399,"[\""Charger\""]",3384.63,{},49949,0,"""North America""" +2023-09-18,50767,7561,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4700.06,{},148917,1,"""South America""" +2024-03-11,50768,6206,"[\""Laptop\""]",2006.21,"{\""promo\"": \""16%\""}",11277,0,"""North America""" +2023-12-24,50769,8630,"[\""Wireless Mouse\"", \""Monitor\""]",4087.52,{},140292,0,"""Europe""" +2024-04-01,50770,5107,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1541.75,{},107858,0,"""Asia""" +2024-10-03,50771,4991,"[\""Tablet\""]",3510.98,{},23806,0,"""North America""" +2023-01-09,50772,4941,"[\""Headphones\""]",2848.0,"{\""seasonal\"": \""14%\""}",266718,0,"""Africa""" +2024-10-23,50773,6995,"[\""Wireless Mouse\"", \""Tablet\""]",402.64,"{\"": \""16%\""}",12910,1,"""Africa""" +2024-04-03,50774,5425,"[\""Keyboard\"", \""Monitor\""]",3169.47,"{\""loyalty\"": \""25%\""}",206002,1,"""North America""" +2024-12-04,50775,4335,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3033.92,{},7760,1,"""Africa""" +2023-01-06,50776,1407,"[\""Tablet\""]",3195.9,{},138410,0,"""North America""" +2024-02-08,50777,7203,"[\""Laptop\""]",168.06,{},69383,0,"""Africa""" +2023-08-27,50778,9439,"[\""Keyboard\""]",4849.35,{},292436,1,"""Europe""" +2024-11-13,50779,1877,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",573.79,"{\""promo\"": \""14%\""}",265439,1,"""Asia""" +2023-05-28,50780,9132,"[\""Phone\""]",3643.44,{},267633,1,"""Africa""" +2023-11-18,50781,958,"[\""Keyboard\"", \""Phone\""]",698.98,{},94747,1,"""North America""" +2024-05-30,50782,7398,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2123.9,{},246845,1,"""Africa""" +2024-01-09,50783,2508,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4308.05,{},49676,0,"""Africa""" +2024-01-28,50784,1597,"[\""Headphones\""]",3167.7,{},26758,0,"""Africa""" +2023-04-07,50785,8482,"[\""Phone\"", \""Headphones\""]",1124.04,{},156687,0,"""South America""" +2023-05-24,50786,8656,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2613.54,"{\""seasonal\"": \""16%\""}",172806,0,"""South America""" +2023-01-15,50787,940,"[\""Phone\"", \""Tablet\""]",2532.4,"{\""promo\"": \""9%\""}",136240,1,"""South America""" +2023-07-20,50788,1583,"[\""Laptop\""]",2663.72,{},74039,0,"""Asia""" +2023-04-09,50789,9374,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1020.59,"{\""promo\"": \""20%\""}",126378,0,"""Africa""" +2023-10-13,50790,3020,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4810.96,{},266418,0,"""Africa""" +2023-08-28,50791,7144,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",159.31,"{\""promo\"": \""25%\""}",265285,0,"""North America""" +2023-03-30,50792,9369,"[\""Laptop\""]",1121.12,{},136986,0,"""North America""" +2023-02-16,50793,4752,"[\""Phone\"", \""Headphones\""]",1823.39,{},120462,1,"""Asia""" +2024-10-11,50794,2567,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4966.32,"{\""loyalty\"": \""26%\""}",269180,1,"""South America""" +2024-04-14,50795,1906,"[\""Headphones\""]",1008.13,{},289285,1,"""North America""" +2024-02-27,50796,3335,"[\""Phone\""]",979.94,{},194890,0,"""Europe""" +2024-02-04,50797,4690,"[\""Phone\"", \""Laptop\""]",1032.39,{},6234,0,"""South America""" +2024-01-10,50798,8349,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4695.25,"{\""promo\"": \""19%\""}",244777,1,"""Africa""" +2023-05-26,50799,4287,"[\""Phone\"", \""Monitor\""]",4347.39,"{\""loyalty\"": \""29%\""}",117731,1,"""South America""" +2023-02-22,50800,4804,"[\""Headphones\"", \""Keyboard\""]",857.54,"{\""promo\"": \""19%\""}",127126,1,"""North America""" +2023-03-15,50801,382,"[\""Laptop\""]",86.47,{},77159,0,"""Asia""" +2023-08-06,50802,2486,"[\""Wireless Mouse\"", \""Monitor\""]",2926.92,"{\"": \""17%\""}",84321,0,"""Asia""" +2024-04-30,50803,2770,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1585.13,{},166867,1,"""Africa""" +2024-05-08,50804,3283,"[\""Tablet\""]",1817.24,{},89378,0,"""Asia""" +2023-11-28,50805,6509,"[\""Keyboard\"", \""Charger\""]",4912.22,"{\""promo\"": \""6%\""}",296752,1,"""South America""" +2023-07-06,50806,777,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3832.48,{},12090,0,"""Asia""" +2023-07-28,50807,5105,"[\""Monitor\""]",2453.36,"{\""loyalty\"": \""21%\""}",219119,1,"""Asia""" +2023-02-20,50808,1649,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2584.63,"{\"": \""22%\""}",282364,1,"""North America""" +2024-03-18,50809,4576,"[\""Laptop\"", \""Phone\""]",4655.23,{},107105,1,"""South America""" +2023-10-30,50810,9925,"[\""Phone\"", \""Headphones\""]",2407.09,"{\""loyalty\"": \""15%\""}",202871,1,"""Europe""" +2023-03-11,50811,7590,"[\""Tablet\"", \""Wireless Mouse\""]",4802.51,{},242224,0,"""North America""" +2024-05-09,50812,6662,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3383.01,{},40285,1,"""Europe""" +2023-08-20,50813,4560,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3689.33,{},241010,0,"""South America""" +2024-05-08,50814,9967,"[\""Headphones\"", \""Phone\""]",1380.23,{},127919,1,"""North America""" +2024-12-23,50815,7827,"[\""Phone\"", \""Wireless Mouse\""]",1579.16,{},217202,1,"""Africa""" +2023-10-15,50816,3412,"[\""Laptop\"", \""Tablet\""]",304.78,"{\""loyalty\"": \""11%\""}",288908,1,"""Asia""" +2023-01-26,50817,9301,"[\""Laptop\""]",4056.55,{},30929,0,"""Africa""" +2023-12-30,50818,2458,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2212.18,"{\""seasonal\"": \""12%\""}",14851,0,"""South America""" +2024-08-11,50819,9647,"[\""Keyboard\"", \""Tablet\""]",4505.47,{},10179,1,"""North America""" +2023-03-16,50820,1237,"[\""Headphones\"", \""Laptop\""]",3442.94,"{\"": \""17%\""}",20831,0,"""North America""" +2024-08-29,50821,44,"[\""Tablet\"", \""Charger\""]",3355.02,{},165623,0,"""South America""" +2023-02-23,50822,4317,"[\""Laptop\"", \""Tablet\""]",952.13,"{\""loyalty\"": \""10%\""}",143124,1,"""Asia""" +2024-01-11,50823,8053,"[\""Laptop\"", \""Headphones\""]",4189.54,"{\""promo\"": \""17%\""}",287531,1,"""South America""" +2023-10-06,50824,5890,"[\""Laptop\""]",3651.61,{},83152,1,"""Europe""" +2023-09-07,50825,5104,"[\""Tablet\""]",1144.62,"{\""seasonal\"": \""24%\""}",51039,1,"""South America""" +2024-04-13,50826,5081,"[\""Tablet\"", \""Laptop\""]",2452.73,"{\""promo\"": \""24%\""}",187393,1,"""Africa""" +2023-01-28,50827,106,"[\""Headphones\""]",89.23,{},187910,1,"""Asia""" +2023-10-17,50828,4159,"[\""Tablet\""]",4351.24,"{\""loyalty\"": \""28%\""}",121192,0,"""South America""" +2024-09-22,50829,3093,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1572.76,"{\""promo\"": \""30%\""}",101600,1,"""North America""" +2023-05-11,50830,219,"[\""Charger\"", \""Tablet\""]",3862.75,{},171243,1,"""North America""" +2024-02-28,50831,9432,"[\""Tablet\"", \""Charger\""]",3850.8,{},215252,0,"""Asia""" +2024-06-16,50832,1240,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1242.41,{},81919,1,"""Asia""" +2023-06-04,50833,7119,"[\""Laptop\"", \""Tablet\""]",2400.33,"{\"": \""18%\""}",67105,1,"""Europe""" +2023-10-03,50834,5993,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",291.97,"{\""seasonal\"": \""12%\""}",273124,1,"""North America""" +2024-07-22,50835,1753,"[\""Keyboard\""]",2095.12,{},85630,1,"""Europe""" +2024-10-01,50836,3583,"[\""Monitor\"", \""Wireless Mouse\""]",3704.02,"{\""promo\"": \""29%\""}",298787,0,"""Europe""" +2023-02-11,50837,5339,"[\""Headphones\""]",1649.79,{},259217,0,"""Asia""" +2024-09-24,50838,8373,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2468.75,{},232871,1,"""Asia""" +2024-02-23,50839,3729,"[\""Monitor\""]",4804.48,{},87575,1,"""North America""" +2023-03-07,50840,8171,"[\""Wireless Mouse\""]",2115.27,"{\""seasonal\"": \""11%\""}",58709,1,"""South America""" +2024-05-23,50841,710,"[\""Keyboard\""]",782.27,{},38164,1,"""Africa""" +2024-04-18,50842,4676,"[\""Tablet\"", \""Wireless Mouse\""]",2595.02,{},75970,0,"""Europe""" +2024-10-17,50843,9772,"[\""Laptop\""]",1836.54,"{\"": \""10%\""}",64832,0,"""Asia""" +2023-11-01,50844,1776,"[\""Phone\""]",2366.6,{},154952,0,"""South America""" +2023-05-12,50845,8635,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4510.14,{},60948,1,"""Africa""" +2023-07-05,50846,2536,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3300.34,{},101540,1,"""Africa""" +2024-02-23,50847,6546,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1649.38,{},200827,0,"""Africa""" +2023-06-24,50848,5020,"[\""Laptop\"", \""Charger\""]",2425.84,{},68000,1,"""Europe""" +2023-01-07,50849,5886,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1556.98,{},294993,0,"""South America""" +2024-03-10,50850,3412,"[\""Laptop\""]",1919.69,"{\""promo\"": \""15%\""}",77137,1,"""Asia""" +2023-09-05,50851,3959,"[\""Charger\""]",4588.9,{},20415,0,"""North America""" +2024-12-04,50852,910,"[\""Laptop\""]",1335.94,{},38568,1,"""Europe""" +2023-06-03,50853,4600,"[\""Tablet\"", \""Monitor\""]",1733.43,{},75818,1,"""North America""" +2024-05-17,50854,9326,"[\""Keyboard\"", \""Phone\""]",3444.21,"{\""promo\"": \""25%\""}",25991,1,"""South America""" +2024-09-30,50855,4696,"[\""Tablet\""]",4798.6,"{\""seasonal\"": \""30%\""}",84935,1,"""Asia""" +2023-09-26,50856,5929,"[\""Phone\"", \""Charger\""]",4698.05,"{\""seasonal\"": \""30%\""}",84972,0,"""Africa""" +2023-03-26,50857,2048,"[\""Phone\"", \""Wireless Mouse\""]",4740.37,{},259896,1,"""Africa""" +2023-06-30,50858,4311,"[\""Monitor\""]",3582.8,{},191586,1,"""Africa""" +2023-04-20,50859,6617,"[\""Keyboard\"", \""Phone\""]",4101.79,"{\""promo\"": \""24%\""}",97756,0,"""Asia""" +2024-05-23,50860,893,"[\""Phone\""]",2598.37,{},278511,0,"""Asia""" +2024-06-11,50861,1954,"[\""Headphones\"", \""Tablet\""]",3256.35,{},197765,0,"""Africa""" +2023-01-03,50862,3644,"[\""Phone\"", \""Monitor\""]",1313.17,{},262392,0,"""Europe""" +2023-08-24,50863,220,"[\""Laptop\"", \""Keyboard\""]",4245.84,"{\""loyalty\"": \""6%\""}",100004,0,"""Asia""" +2024-02-04,50864,2621,"[\""Phone\"", \""Charger\""]",3788.48,"{\"": \""7%\""}",192148,0,"""North America""" +2024-09-10,50865,2477,"[\""Phone\"", \""Tablet\""]",706.69,{},277898,1,"""North America""" +2023-05-23,50866,1237,"[\""Monitor\"", \""Charger\""]",3532.77,{},25610,1,"""North America""" +2024-04-06,50867,716,"[\""Monitor\""]",2082.25,{},255162,1,"""North America""" +2024-02-23,50868,3382,"[\""Laptop\"", \""Wireless Mouse\""]",2970.58,{},57436,0,"""Asia""" +2024-09-17,50869,1590,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",620.46,"{\""seasonal\"": \""15%\""}",39575,0,"""North America""" +2023-08-25,50870,2365,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2511.25,"{\"": \""12%\""}",287098,1,"""North America""" +2023-04-26,50871,4394,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",74.04,{},68337,0,"""South America""" +2024-10-22,50872,1663,"[\""Tablet\""]",1457.62,{},201489,1,"""North America""" +2023-01-22,50873,8699,"[\""Monitor\""]",4360.01,{},122804,0,"""Europe""" +2024-06-13,50874,4445,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2131.11,"{\"": \""13%\""}",109967,1,"""South America""" +2023-10-16,50875,2876,"[\""Monitor\"", \""Tablet\""]",991.78,{},270338,0,"""Europe""" +2024-11-04,50876,9671,"[\""Phone\""]",3297.44,"{\""promo\"": \""19%\""}",25348,1,"""South America""" +2024-11-14,50877,8038,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2140.51,{},122566,1,"""South America""" +2024-08-27,50878,6731,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1013.27,{},60621,1,"""North America""" +2024-10-30,50879,9085,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3206.89,"{\"": \""5%\""}",211147,0,"""Asia""" +2023-03-02,50880,3753,"[\""Monitor\""]",2313.12,"{\"": \""27%\""}",223532,1,"""North America""" +2023-09-24,50881,8396,"[\""Phone\"", \""Monitor\""]",3636.01,{},279066,1,"""Europe""" +2023-10-11,50882,5486,"[\""Monitor\""]",2570.33,"{\""seasonal\"": \""13%\""}",69339,0,"""Europe""" +2024-12-06,50883,8104,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3911.43,{},170776,0,"""Asia""" +2023-12-29,50884,7173,"[\""Phone\"", \""Monitor\""]",1019.47,"{\""loyalty\"": \""28%\""}",190255,0,"""Africa""" +2023-03-22,50885,7414,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4104.59,{},229321,1,"""Asia""" +2024-09-03,50886,7925,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",900.6,"{\""promo\"": \""12%\""}",145260,0,"""Asia""" +2024-11-25,50887,4759,"[\""Headphones\"", \""Wireless Mouse\""]",1183.46,"{\""seasonal\"": \""23%\""}",21392,0,"""Africa""" +2024-08-02,50888,1770,"[\""Keyboard\""]",4463.9,{},256864,0,"""North America""" +2023-05-25,50889,1784,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1512.11,{},118046,1,"""South America""" +2024-03-10,50890,3216,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2044.23,"{\""promo\"": \""22%\""}",74436,0,"""Asia""" +2023-07-12,50891,7180,"[\""Wireless Mouse\""]",4286.14,"{\""seasonal\"": \""12%\""}",149438,0,"""South America""" +2024-03-18,50892,7264,"[\""Tablet\""]",4272.11,{},51453,1,"""Europe""" +2023-02-03,50893,9802,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4386.16,{},191403,0,"""Europe""" +2023-01-23,50894,3476,"[\""Headphones\""]",2383.71,"{\""promo\"": \""30%\""}",38052,1,"""Asia""" +2024-04-15,50895,2089,"[\""Wireless Mouse\"", \""Tablet\""]",1597.31,"{\""seasonal\"": \""11%\""}",47664,0,"""Africa""" +2023-10-15,50896,4942,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3714.71,{},239461,0,"""Europe""" +2024-01-25,50897,5620,"[\""Charger\"", \""Headphones\""]",4967.92,{},114454,1,"""Europe""" +2024-06-02,50898,2417,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1285.83,{},284203,0,"""North America""" +2024-01-09,50899,1006,"[\""Headphones\"", \""Tablet\""]",4018.35,{},199910,0,"""North America""" +2023-03-28,50900,4955,"[\""Headphones\""]",2702.89,{},163746,1,"""Europe""" +2024-03-05,50901,2619,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",861.39,"{\""loyalty\"": \""8%\""}",40389,1,"""Asia""" +2023-07-22,50902,5618,"[\""Tablet\""]",3776.45,"{\""promo\"": \""18%\""}",14428,0,"""South America""" +2023-09-19,50903,9013,"[\""Laptop\"", \""Keyboard\""]",2653.81,{},158097,1,"""Asia""" +2024-07-25,50904,266,"[\""Charger\"", \""Keyboard\""]",2493.36,{},36777,1,"""Asia""" +2024-03-15,50905,1271,"[\""Laptop\"", \""Charger\""]",3308.12,{},156419,0,"""North America""" +2023-11-10,50906,8262,"[\""Phone\"", \""Laptop\""]",3356.83,{},240187,1,"""Europe""" +2023-04-18,50907,5015,"[\""Wireless Mouse\"", \""Keyboard\""]",1397.76,{},236601,0,"""Africa""" +2023-10-08,50908,8470,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1309.15,"{\""promo\"": \""7%\""}",215430,0,"""Africa""" +2023-06-18,50909,3467,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2882.38,{},77797,1,"""Europe""" +2024-01-18,50910,2094,"[\""Phone\"", \""Charger\"", \""Tablet\""]",273.96,{},258379,1,"""Asia""" +2023-03-29,50911,9374,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4854.05,"{\""promo\"": \""25%\""}",182520,1,"""Europe""" +2023-09-27,50912,3832,"[\""Phone\"", \""Tablet\""]",2902.73,"{\""promo\"": \""8%\""}",51524,0,"""Africa""" +2023-12-08,50913,6764,"[\""Wireless Mouse\"", \""Phone\""]",104.31,"{\""promo\"": \""14%\""}",47890,1,"""Asia""" +2023-11-11,50914,7264,"[\""Laptop\""]",2560.33,{},162367,0,"""South America""" +2024-03-23,50915,2561,"[\""Tablet\""]",1213.03,{},226246,1,"""North America""" +2023-07-13,50916,5134,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2780.57,{},177854,1,"""South America""" +2023-10-08,50917,5893,"[\""Laptop\""]",4426.79,"{\""promo\"": \""10%\""}",157722,1,"""Asia""" +2023-05-15,50918,1417,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3230.81,"{\""loyalty\"": \""10%\""}",78568,0,"""Europe""" +2024-04-08,50919,5812,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1971.06,"{\""loyalty\"": \""21%\""}",168454,1,"""Europe""" +2023-09-06,50920,305,"[\""Laptop\""]",1292.94,{},177541,0,"""North America""" +2024-05-05,50921,7265,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2146.83,"{\""loyalty\"": \""6%\""}",48316,1,"""Asia""" +2024-10-19,50922,6676,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1276.94,"{\""seasonal\"": \""26%\""}",167226,0,"""Africa""" +2023-02-19,50923,4527,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3167.08,"{\"": \""20%\""}",175403,0,"""South America""" +2024-07-01,50924,4234,"[\""Tablet\""]",4061.66,"{\""loyalty\"": \""5%\""}",192058,0,"""North America""" +2023-06-17,50925,2167,"[\""Laptop\""]",4232.56,{},8247,1,"""Europe""" +2023-04-10,50926,3553,"[\""Wireless Mouse\""]",3140.34,"{\"": \""19%\""}",18529,0,"""Africa""" +2023-09-22,50927,102,"[\""Phone\""]",116.08,{},73284,0,"""North America""" +2023-08-26,50928,6600,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4852.06,"{\""seasonal\"": \""23%\""}",21431,0,"""South America""" +2023-07-14,50929,1949,"[\""Monitor\""]",2267.06,{},10074,1,"""North America""" +2023-07-30,50930,9200,"[\""Monitor\""]",1959.8,{},65782,0,"""Europe""" +2024-03-12,50931,3162,"[\""Tablet\"", \""Charger\""]",4545.13,{},258499,1,"""Europe""" +2024-02-20,50932,8920,"[\""Keyboard\""]",213.6,{},113880,0,"""Africa""" +2024-02-14,50933,3082,"[\""Tablet\"", \""Keyboard\""]",332.92,{},298308,0,"""Europe""" +2024-08-24,50934,9744,"[\""Headphones\""]",2733.22,{},63504,0,"""Asia""" +2024-04-14,50935,2758,"[\""Monitor\""]",1851.92,{},58799,0,"""Europe""" +2023-03-18,50936,4836,"[\""Charger\""]",2184.73,{},54733,0,"""South America""" +2023-10-31,50937,3181,"[\""Headphones\""]",4213.89,"{\"": \""11%\""}",52896,0,"""North America""" +2024-12-25,50938,5101,"[\""Laptop\"", \""Monitor\""]",4585.92,"{\"": \""20%\""}",100236,0,"""North America""" +2023-10-27,50939,5526,"[\""Keyboard\"", \""Monitor\""]",2139.44,"{\"": \""20%\""}",236294,1,"""Europe""" +2024-07-15,50940,5763,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3700.97,"{\"": \""7%\""}",297850,0,"""Asia""" +2024-06-07,50941,3760,"[\""Monitor\"", \""Laptop\""]",2826.98,"{\""loyalty\"": \""6%\""}",10700,0,"""North America""" +2024-05-25,50942,2558,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",913.34,"{\""seasonal\"": \""23%\""}",102263,1,"""Asia""" +2023-09-17,50943,8990,"[\""Phone\""]",1487.89,{},10314,0,"""Africa""" +2023-03-18,50944,7940,"[\""Phone\"", \""Monitor\""]",979.34,{},108905,0,"""Asia""" +2024-08-19,50945,5354,"[\""Keyboard\""]",588.98,{},155757,1,"""South America""" +2024-07-20,50946,9088,"[\""Phone\"", \""Laptop\""]",818.95,{},67887,1,"""North America""" +2023-08-10,50947,2397,"[\""Wireless Mouse\""]",3829.88,"{\"": \""29%\""}",279716,0,"""North America""" +2023-10-17,50948,2501,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1277.24,"{\""loyalty\"": \""30%\""}",99371,1,"""Asia""" +2023-10-16,50949,5520,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4374.38,{},92287,0,"""Africa""" +2024-01-05,50950,9210,"[\""Charger\"", \""Laptop\""]",563.35,{},93641,0,"""Europe""" +2023-05-02,50951,8783,"[\""Tablet\""]",2118.15,"{\"": \""7%\""}",138636,0,"""Asia""" +2023-08-15,50952,7884,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2028.27,{},288573,0,"""North America""" +2024-12-09,50953,5509,"[\""Tablet\""]",3191.35,{},279999,1,"""Asia""" +2024-06-08,50954,5807,"[\""Phone\""]",3886.37,"{\""seasonal\"": \""13%\""}",268050,0,"""South America""" +2024-01-13,50955,4183,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2638.73,{},222300,1,"""North America""" +2023-08-10,50956,7619,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4490.33,{},208763,0,"""Africa""" +2024-01-05,50957,869,"[\""Tablet\"", \""Phone\""]",1995.31,{},267191,0,"""Asia""" +2023-01-25,50958,6869,"[\""Phone\"", \""Charger\""]",4395.76,{},269990,1,"""South America""" +2023-12-05,50959,7303,"[\""Monitor\"", \""Tablet\""]",763.15,{},148869,0,"""Europe""" +2024-05-25,50960,6219,"[\""Headphones\"", \""Keyboard\""]",3948.74,{},4050,1,"""South America""" +2024-01-13,50961,3882,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1191.55,"{\""promo\"": \""21%\""}",169247,1,"""North America""" +2024-08-02,50962,1533,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2735.04,"{\"": \""14%\""}",126705,1,"""South America""" +2024-10-15,50963,7285,"[\""Tablet\"", \""Keyboard\""]",2757.69,{},114046,1,"""North America""" +2024-10-08,50964,1446,"[\""Monitor\"", \""Charger\""]",2195.62,"{\"": \""18%\""}",1562,1,"""Asia""" +2024-01-10,50965,7187,"[\""Monitor\""]",2779.18,{},3610,0,"""North America""" +2024-08-24,50966,4854,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2478.35,"{\""promo\"": \""23%\""}",296825,0,"""South America""" +2023-06-11,50967,5609,"[\""Charger\""]",3879.9,"{\""promo\"": \""14%\""}",74967,1,"""Europe""" +2024-02-23,50968,6240,"[\""Monitor\"", \""Laptop\""]",4754.66,{},123029,1,"""North America""" +2023-11-13,50969,4654,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2827.99,"{\""seasonal\"": \""12%\""}",129235,0,"""Asia""" +2023-11-09,50970,844,"[\""Keyboard\""]",3189.81,{},20852,0,"""Africa""" +2023-03-02,50971,671,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",553.94,"{\""seasonal\"": \""6%\""}",31848,0,"""Asia""" +2024-03-17,50972,868,"[\""Headphones\""]",370.97,{},201384,0,"""Africa""" +2023-06-24,50973,4084,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4364.86,"{\""promo\"": \""13%\""}",284881,1,"""Europe""" +2023-09-07,50974,2618,"[\""Headphones\"", \""Tablet\""]",478.81,{},5818,0,"""Africa""" +2023-03-06,50975,4548,"[\""Keyboard\""]",3949.93,"{\""seasonal\"": \""10%\""}",9295,0,"""Africa""" +2023-10-28,50976,106,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",506.26,{},191987,1,"""Europe""" +2024-05-15,50977,1528,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2481.7,"{\""loyalty\"": \""5%\""}",56590,0,"""Africa""" +2024-04-05,50978,1276,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",833.92,"{\""loyalty\"": \""28%\""}",214348,1,"""Africa""" +2024-11-18,50979,2742,"[\""Laptop\""]",403.73,"{\"": \""5%\""}",75573,1,"""Africa""" +2024-05-21,50980,6892,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2095.25,"{\"": \""6%\""}",273890,0,"""Africa""" +2024-12-17,50981,3391,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1416.77,"{\"": \""21%\""}",260564,0,"""Europe""" +2024-03-18,50982,1271,"[\""Monitor\"", \""Keyboard\""]",1595.8,"{\"": \""28%\""}",62098,0,"""Europe""" +2023-04-08,50983,1104,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2903.17,"{\""promo\"": \""5%\""}",218484,0,"""Asia""" +2023-04-25,50984,8145,"[\""Laptop\""]",3767.74,"{\""loyalty\"": \""22%\""}",257177,0,"""North America""" +2024-12-31,50985,7233,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4039.59,{},137196,1,"""South America""" +2024-09-10,50986,2520,"[\""Tablet\""]",4299.1,{},119656,1,"""Africa""" +2024-04-28,50987,4272,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2300.09,{},57288,1,"""Africa""" +2023-10-06,50988,2208,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4790.98,"{\""seasonal\"": \""27%\""}",67183,1,"""Africa""" +2024-04-19,50989,3901,"[\""Phone\"", \""Tablet\""]",3017.35,{},266117,0,"""Africa""" +2024-04-14,50990,2396,"[\""Laptop\""]",1019.61,"{\""seasonal\"": \""22%\""}",16220,0,"""Africa""" +2023-10-24,50991,3962,"[\""Wireless Mouse\""]",1300.07,"{\""loyalty\"": \""7%\""}",134855,1,"""North America""" +2024-08-14,50992,9139,"[\""Headphones\"", \""Wireless Mouse\""]",942.0,"{\""seasonal\"": \""28%\""}",232255,0,"""Africa""" +2023-10-29,50993,9991,"[\""Keyboard\""]",3615.48,{},120800,0,"""North America""" +2024-02-20,50994,9510,"[\""Phone\"", \""Headphones\""]",2575.08,"{\"": \""19%\""}",177523,1,"""South America""" +2024-03-30,50995,7311,"[\""Keyboard\""]",778.21,"{\""loyalty\"": \""17%\""}",162194,0,"""Africa""" +2023-10-19,50996,514,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",510.64,"{\"": \""30%\""}",41018,0,"""Africa""" +2023-05-09,50997,3682,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4604.03,"{\""promo\"": \""5%\""}",92870,0,"""Europe""" +2024-11-09,50998,4887,"[\""Monitor\"", \""Headphones\""]",285.58,{},53959,1,"""South America""" +2023-03-22,50999,9707,"[\""Phone\"", \""Laptop\""]",758.26,"{\""seasonal\"": \""19%\""}",266845,0,"""Europe""" +2023-02-02,51000,1802,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",582.46,{},200926,1,"""North America""" +2024-10-23,51001,3622,"[\""Wireless Mouse\""]",3351.78,{},250336,1,"""South America""" +2024-03-26,51002,4854,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2818.72,"{\"": \""22%\""}",257640,0,"""Europe""" +2023-07-03,51003,1516,"[\""Monitor\""]",823.55,{},133775,0,"""Asia""" +2024-10-29,51004,9870,"[\""Wireless Mouse\""]",1230.89,{},102969,0,"""South America""" +2023-06-30,51005,6861,"[\""Wireless Mouse\"", \""Phone\""]",2801.95,{},94135,0,"""Africa""" +2024-06-03,51006,3051,"[\""Tablet\""]",3697.89,{},60585,1,"""North America""" +2023-01-07,51007,1881,"[\""Monitor\"", \""Laptop\""]",4529.77,"{\""loyalty\"": \""19%\""}",135340,1,"""Asia""" +2024-02-04,51008,1285,"[\""Tablet\"", \""Monitor\""]",1119.55,{},220724,0,"""North America""" +2023-12-01,51009,6644,"[\""Headphones\""]",4741.32,{},10175,0,"""Asia""" +2023-10-29,51010,4026,"[\""Monitor\"", \""Laptop\""]",1695.01,{},61267,1,"""South America""" +2023-08-05,51011,3747,"[\""Charger\"", \""Wireless Mouse\""]",178.2,{},67828,1,"""Asia""" +2023-12-16,51012,258,"[\""Phone\""]",1064.07,"{\""loyalty\"": \""9%\""}",295995,0,"""North America""" +2023-06-11,51013,9884,"[\""Wireless Mouse\"", \""Laptop\""]",432.1,{},208872,1,"""South America""" +2024-01-21,51014,8725,"[\""Monitor\""]",933.71,"{\""loyalty\"": \""17%\""}",48159,1,"""Asia""" +2023-04-13,51015,3478,"[\""Tablet\"", \""Charger\""]",151.22,{},19093,1,"""Asia""" +2023-06-28,51016,9308,"[\""Wireless Mouse\""]",1330.0,"{\""promo\"": \""8%\""}",134014,0,"""South America""" +2024-05-17,51017,8192,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1690.5,"{\""promo\"": \""18%\""}",278347,0,"""North America""" +2023-06-03,51018,2298,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2969.89,{},60416,0,"""North America""" +2024-04-08,51019,8677,"[\""Charger\"", \""Tablet\""]",3033.55,{},44846,1,"""Asia""" +2023-10-26,51020,5120,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1754.86,{},182153,1,"""Asia""" +2024-02-17,51021,946,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3179.44,{},50583,1,"""South America""" +2024-12-30,51022,4792,"[\""Wireless Mouse\""]",2114.38,{},84934,1,"""Asia""" +2023-11-27,51023,9922,"[\""Keyboard\""]",3799.53,{},264789,0,"""South America""" +2023-11-16,51024,2654,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3639.07,{},46147,1,"""South America""" +2024-11-27,51025,6781,"[\""Monitor\""]",165.74,{},277508,0,"""South America""" +2024-08-17,51026,8427,"[\""Tablet\"", \""Laptop\""]",4326.44,"{\""loyalty\"": \""5%\""}",93241,0,"""Africa""" +2024-01-27,51027,3271,"[\""Headphones\"", \""Tablet\""]",4262.07,"{\"": \""19%\""}",18301,1,"""North America""" +2024-07-24,51028,4302,"[\""Headphones\"", \""Wireless Mouse\""]",4849.48,{},177879,1,"""Europe""" +2023-07-06,51029,6790,"[\""Phone\"", \""Tablet\""]",3389.49,{},37158,1,"""South America""" +2023-02-24,51030,4945,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4800.91,{},298434,1,"""South America""" +2023-04-29,51031,4713,"[\""Headphones\""]",900.54,"{\""loyalty\"": \""29%\""}",178549,0,"""Asia""" +2024-04-11,51032,1275,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",366.87,{},139801,0,"""North America""" +2024-02-01,51033,3597,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4062.35,{},127621,0,"""Asia""" +2023-06-15,51034,8580,"[\""Phone\"", \""Charger\""]",2389.72,"{\""promo\"": \""11%\""}",246232,0,"""North America""" +2023-11-10,51035,1613,"[\""Headphones\"", \""Phone\""]",2231.59,{},287387,0,"""Europe""" +2024-05-21,51036,8314,"[\""Laptop\""]",1428.5,{},177362,0,"""Africa""" +2024-02-18,51037,6993,"[\""Wireless Mouse\"", \""Monitor\""]",4782.29,{},153729,1,"""South America""" +2023-02-21,51038,6925,"[\""Laptop\""]",1344.13,"{\""promo\"": \""23%\""}",133959,1,"""Asia""" +2024-01-06,51039,8256,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3772.68,{},115726,0,"""Europe""" +2023-12-24,51040,8366,"[\""Headphones\"", \""Wireless Mouse\""]",3062.08,{},272007,0,"""Europe""" +2024-12-10,51041,3358,"[\""Phone\""]",395.65,{},261012,1,"""Africa""" +2024-04-28,51042,921,"[\""Monitor\"", \""Headphones\""]",765.68,"{\""promo\"": \""5%\""}",132834,1,"""South America""" +2023-11-02,51043,5807,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4959.15,"{\""seasonal\"": \""19%\""}",231079,1,"""Asia""" +2023-07-28,51044,2004,"[\""Tablet\""]",1317.79,{},241444,0,"""Asia""" +2023-06-16,51045,9202,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1767.96,{},30608,1,"""Africa""" +2023-09-27,51046,4123,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2631.08,{},97613,0,"""Africa""" +2023-05-11,51047,7036,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3381.45,{},89621,1,"""Asia""" +2024-03-22,51048,160,"[\""Keyboard\""]",2313.74,{},117093,1,"""Asia""" +2023-10-25,51049,4968,"[\""Wireless Mouse\"", \""Phone\""]",445.55,"{\"": \""18%\""}",234148,0,"""South America""" +2024-10-18,51050,985,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",299.09,{},60359,0,"""Europe""" +2023-01-06,51051,2353,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3396.56,{},96278,0,"""Europe""" +2023-07-05,51052,3072,"[\""Phone\"", \""Monitor\""]",1753.87,"{\""promo\"": \""29%\""}",277252,1,"""South America""" +2023-12-02,51053,6108,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4624.88,"{\"": \""19%\""}",12201,0,"""Asia""" +2024-02-04,51054,1328,"[\""Keyboard\""]",4757.49,{},190225,0,"""North America""" +2024-01-24,51055,3404,"[\""Charger\""]",199.5,"{\"": \""15%\""}",210093,1,"""North America""" +2024-06-01,51056,3365,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1357.36,{},127263,0,"""Europe""" +2023-04-20,51057,8296,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3445.55,"{\""seasonal\"": \""20%\""}",278383,0,"""North America""" +2023-04-04,51058,7928,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1760.91,{},11218,1,"""Asia""" +2024-07-02,51059,5013,"[\""Laptop\""]",3760.04,"{\""loyalty\"": \""25%\""}",280791,0,"""North America""" +2024-06-16,51060,6037,"[\""Phone\"", \""Keyboard\""]",910.51,{},262843,1,"""South America""" +2023-10-19,51061,3064,"[\""Headphones\""]",138.72,{},152626,1,"""Asia""" +2023-06-26,51062,8869,"[\""Laptop\"", \""Monitor\""]",1308.26,"{\""promo\"": \""10%\""}",176942,0,"""South America""" +2023-05-19,51063,4622,"[\""Tablet\"", \""Charger\""]",3265.35,"{\""loyalty\"": \""23%\""}",23882,1,"""North America""" +2024-09-03,51064,7252,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4527.56,{},106948,0,"""South America""" +2024-06-12,51065,5580,"[\""Wireless Mouse\"", \""Tablet\""]",2806.76,{},66672,0,"""Europe""" +2024-04-01,51066,9693,"[\""Phone\""]",269.97,{},218951,0,"""Africa""" +2023-11-15,51067,642,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1991.54,{},159129,0,"""Africa""" +2024-12-19,51068,4109,"[\""Monitor\""]",1541.68,"{\"": \""27%\""}",184401,1,"""North America""" +2023-05-19,51069,8575,"[\""Monitor\""]",1464.17,"{\""seasonal\"": \""12%\""}",269061,1,"""Africa""" +2023-04-19,51070,635,"[\""Wireless Mouse\"", \""Tablet\""]",721.27,{},293818,1,"""South America""" +2023-12-10,51071,6452,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4215.51,{},186954,0,"""North America""" +2023-08-09,51072,1199,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2487.45,"{\""loyalty\"": \""20%\""}",75327,0,"""South America""" +2023-04-12,51073,8689,"[\""Keyboard\""]",3188.97,"{\""seasonal\"": \""19%\""}",210656,0,"""North America""" +2023-03-07,51074,4915,"[\""Laptop\""]",2174.28,{},291618,0,"""Europe""" +2024-07-24,51075,9369,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",144.31,"{\""loyalty\"": \""6%\""}",193032,0,"""Asia""" +2023-05-31,51076,4353,"[\""Phone\"", \""Charger\""]",2239.03,"{\""promo\"": \""16%\""}",211515,0,"""Europe""" +2024-12-14,51077,763,"[\""Laptop\""]",2096.68,"{\""loyalty\"": \""29%\""}",170690,1,"""North America""" +2023-09-27,51078,8788,"[\""Charger\""]",2375.47,{},2055,0,"""North America""" +2024-11-24,51079,5496,"[\""Phone\"", \""Headphones\""]",2845.48,{},65107,1,"""Africa""" +2024-07-05,51080,5419,"[\""Charger\"", \""Phone\""]",2229.53,{},172250,1,"""North America""" +2023-05-05,51081,7258,"[\""Monitor\"", \""Tablet\""]",1238.0,{},241805,0,"""South America""" +2024-12-26,51082,158,"[\""Monitor\"", \""Tablet\""]",4319.13,"{\"": \""20%\""}",203011,0,"""Europe""" +2024-01-27,51083,7852,"[\""Monitor\"", \""Wireless Mouse\""]",2996.38,{},251958,0,"""North America""" +2023-06-17,51084,3051,"[\""Phone\"", \""Headphones\""]",4918.26,"{\""seasonal\"": \""20%\""}",125020,0,"""Europe""" +2024-05-16,51085,7107,"[\""Wireless Mouse\"", \""Headphones\""]",3828.7,{},265615,0,"""North America""" +2024-05-03,51086,7451,"[\""Tablet\"", \""Headphones\""]",2720.78,{},78522,1,"""South America""" +2023-07-12,51087,2668,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2878.79,"{\""seasonal\"": \""30%\""}",269063,1,"""Europe""" +2023-09-22,51088,7327,"[\""Tablet\"", \""Laptop\""]",3764.14,{},88712,0,"""Asia""" +2024-04-14,51089,7663,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1249.24,{},26505,0,"""Asia""" +2023-06-21,51090,286,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2505.28,{},125831,1,"""Asia""" +2023-04-24,51091,7221,"[\""Tablet\"", \""Wireless Mouse\""]",4772.26,{},136809,1,"""Europe""" +2024-12-13,51092,9472,"[\""Headphones\"", \""Laptop\""]",768.46,"{\""loyalty\"": \""23%\""}",31516,1,"""Europe""" +2023-09-15,51093,1034,"[\""Laptop\"", \""Monitor\""]",778.22,"{\""seasonal\"": \""30%\""}",170847,0,"""Asia""" +2023-11-14,51094,9149,"[\""Tablet\"", \""Phone\""]",530.45,{},266785,1,"""South America""" +2024-03-20,51095,6380,"[\""Laptop\""]",756.0,{},29566,0,"""South America""" +2024-08-14,51096,4426,"[\""Monitor\""]",2823.11,"{\""seasonal\"": \""15%\""}",195934,0,"""Asia""" +2024-08-22,51097,664,"[\""Keyboard\"", \""Headphones\""]",1220.83,"{\""promo\"": \""25%\""}",248560,1,"""South America""" +2024-08-17,51098,1148,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",657.93,"{\"": \""5%\""}",32706,0,"""Africa""" +2023-07-11,51099,7772,"[\""Monitor\"", \""Phone\""]",3424.98,{},199052,0,"""Asia""" +2023-12-19,51100,2801,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1854.61,{},254437,1,"""North America""" +2024-12-29,51101,7761,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2370.43,"{\"": \""6%\""}",297119,1,"""Africa""" +2023-01-09,51102,7444,"[\""Laptop\""]",3407.38,"{\""promo\"": \""30%\""}",207452,0,"""Asia""" +2023-11-21,51103,2814,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4955.75,{},121295,1,"""Europe""" +2024-09-04,51104,6773,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3599.58,{},219759,0,"""Europe""" +2024-01-07,51105,5457,"[\""Monitor\"", \""Headphones\""]",2482.38,{},115212,0,"""South America""" +2023-04-26,51106,7655,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4055.44,"{\""seasonal\"": \""14%\""}",140650,1,"""South America""" +2024-05-26,51107,4515,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",838.12,"{\""loyalty\"": \""26%\""}",297610,1,"""North America""" +2023-04-17,51108,1688,"[\""Headphones\""]",4181.85,{},130410,1,"""North America""" +2024-07-30,51109,1582,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2940.13,{},240787,1,"""Asia""" +2024-02-03,51110,6610,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3480.69,{},156633,1,"""Africa""" +2024-08-13,51111,9319,"[\""Tablet\"", \""Laptop\""]",2842.12,"{\""seasonal\"": \""6%\""}",111183,1,"""Africa""" +2023-10-18,51112,6743,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",491.74,{},112769,0,"""North America""" +2023-04-08,51113,8328,"[\""Charger\""]",2888.99,"{\"": \""9%\""}",139098,0,"""Europe""" +2023-03-11,51114,576,"[\""Monitor\""]",4233.08,"{\"": \""24%\""}",223139,1,"""Asia""" +2023-11-17,51115,8103,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4602.75,{},76062,1,"""Europe""" +2024-08-19,51116,2004,"[\""Laptop\""]",780.43,"{\""seasonal\"": \""22%\""}",90198,1,"""South America""" +2023-05-05,51117,6271,"[\""Monitor\"", \""Keyboard\""]",3029.81,{},279664,1,"""South America""" +2023-12-27,51118,6645,"[\""Keyboard\""]",1414.56,{},172289,0,"""North America""" +2023-01-04,51119,3160,"[\""Monitor\""]",1923.97,"{\""seasonal\"": \""23%\""}",253417,0,"""Africa""" +2023-06-01,51120,2686,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",712.72,{},147372,1,"""North America""" +2023-09-09,51121,6163,"[\""Keyboard\""]",4685.23,{},87454,1,"""Europe""" +2023-04-28,51122,5439,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",318.43,{},280359,0,"""South America""" +2024-10-20,51123,1305,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1970.2,"{\"": \""27%\""}",161549,0,"""North America""" +2024-09-29,51124,109,"[\""Tablet\"", \""Charger\""]",994.65,{},38319,1,"""Africa""" +2024-10-24,51125,779,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4407.99,{},241628,0,"""South America""" +2024-08-30,51126,4141,"[\""Wireless Mouse\"", \""Headphones\""]",467.25,{},81147,0,"""Asia""" +2024-11-25,51127,4423,"[\""Keyboard\""]",1485.13,"{\""seasonal\"": \""20%\""}",227849,0,"""Asia""" +2023-02-09,51128,186,"[\""Headphones\"", \""Monitor\""]",3603.73,"{\"": \""19%\""}",63115,1,"""North America""" +2023-05-02,51129,6064,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1474.71,"{\""seasonal\"": \""27%\""}",263129,1,"""Asia""" +2024-05-29,51130,5585,"[\""Keyboard\""]",3667.71,{},152736,1,"""Africa""" +2024-06-05,51131,9971,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2693.68,{},160343,0,"""Asia""" +2023-04-10,51132,276,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",326.31,"{\"": \""29%\""}",296024,1,"""Europe""" +2024-10-09,51133,8273,"[\""Charger\""]",2601.93,"{\""promo\"": \""10%\""}",84364,1,"""Asia""" +2024-01-15,51134,3567,"[\""Charger\""]",926.26,{},1629,1,"""Europe""" +2024-08-04,51135,4788,"[\""Phone\"", \""Laptop\""]",3604.96,{},241014,1,"""Asia""" +2023-10-07,51136,5103,"[\""Charger\""]",3648.4,{},268366,1,"""Europe""" +2024-03-03,51137,6795,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3413.13,"{\""loyalty\"": \""11%\""}",7547,1,"""Asia""" +2023-04-27,51138,3683,"[\""Charger\""]",589.38,{},205945,1,"""South America""" +2024-09-25,51139,9440,"[\""Laptop\"", \""Monitor\""]",1590.45,{},50637,1,"""North America""" +2024-01-19,51140,8761,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4544.58,"{\""seasonal\"": \""16%\""}",240163,1,"""Asia""" +2023-01-12,51141,450,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",258.86,{},188454,0,"""Asia""" +2024-04-03,51142,6240,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",881.53,"{\""loyalty\"": \""25%\""}",79609,1,"""North America""" +2024-04-19,51143,8476,"[\""Tablet\"", \""Laptop\""]",2444.89,"{\""seasonal\"": \""13%\""}",37096,1,"""Asia""" +2024-05-20,51144,2189,"[\""Keyboard\""]",4163.57,"{\""loyalty\"": \""27%\""}",260654,0,"""South America""" +2024-03-30,51145,9473,"[\""Tablet\"", \""Laptop\""]",3785.87,"{\""promo\"": \""27%\""}",161259,1,"""Asia""" +2024-02-20,51146,6325,"[\""Charger\"", \""Keyboard\""]",609.03,"{\"": \""9%\""}",42678,0,"""Africa""" +2024-01-19,51147,7744,"[\""Wireless Mouse\""]",1740.91,{},290047,0,"""Europe""" +2023-11-03,51148,3767,"[\""Charger\""]",4216.56,"{\""seasonal\"": \""7%\""}",81605,0,"""Europe""" +2024-01-21,51149,5849,"[\""Monitor\"", \""Wireless Mouse\""]",2552.7,"{\""seasonal\"": \""20%\""}",286908,0,"""Africa""" +2023-04-15,51150,3340,"[\""Headphones\""]",2351.59,{},275776,0,"""North America""" +2024-06-02,51151,3758,"[\""Laptop\""]",2490.04,{},228484,0,"""Africa""" +2023-10-02,51152,7610,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",316.52,{},38080,0,"""Europe""" +2023-01-28,51153,4645,"[\""Keyboard\"", \""Monitor\""]",4895.75,"{\""seasonal\"": \""27%\""}",60627,0,"""Europe""" +2023-08-26,51154,3840,"[\""Tablet\""]",3619.67,{},184411,0,"""South America""" +2024-04-26,51155,6572,"[\""Charger\"", \""Laptop\""]",4393.23,"{\""seasonal\"": \""12%\""}",30114,0,"""North America""" +2023-04-26,51156,4544,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1589.71,"{\"": \""5%\""}",183660,1,"""Africa""" +2023-11-24,51157,5209,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4947.66,"{\"": \""23%\""}",21288,1,"""Asia""" +2024-04-03,51158,2258,"[\""Phone\""]",3481.2,{},291530,0,"""Africa""" +2024-09-28,51159,3917,"[\""Headphones\""]",2457.4,{},221542,1,"""Africa""" +2023-03-13,51160,680,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2395.63,{},285660,1,"""Europe""" +2024-12-01,51161,7516,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",339.78,"{\"": \""11%\""}",248158,1,"""North America""" +2024-06-22,51162,2611,"[\""Monitor\"", \""Laptop\""]",589.95,{},158819,1,"""North America""" +2023-05-27,51163,1291,"[\""Laptop\"", \""Headphones\""]",1758.23,"{\""promo\"": \""12%\""}",56544,0,"""Europe""" +2023-07-29,51164,4114,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2988.63,{},205121,1,"""Europe""" +2024-05-19,51165,9436,"[\""Charger\"", \""Keyboard\""]",3176.38,"{\""promo\"": \""8%\""}",287346,1,"""Asia""" +2023-06-16,51166,9619,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2675.43,{},130807,1,"""Africa""" +2023-10-08,51167,2820,"[\""Monitor\"", \""Charger\""]",1865.01,"{\""seasonal\"": \""10%\""}",13208,0,"""Europe""" +2024-08-23,51168,1624,"[\""Tablet\"", \""Wireless Mouse\""]",4023.6,{},121212,0,"""North America""" +2023-07-01,51169,7245,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",145.89,{},241845,0,"""Europe""" +2023-05-21,51170,4817,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4612.7,{},105812,1,"""Asia""" +2024-02-25,51171,6018,"[\""Keyboard\"", \""Phone\""]",241.32,{},74079,1,"""Europe""" +2024-04-22,51172,9166,"[\""Charger\""]",2197.17,{},18675,0,"""Europe""" +2023-09-18,51173,5103,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2745.28,{},241781,0,"""Africa""" +2023-11-25,51174,5934,"[\""Monitor\""]",2960.39,{},93062,0,"""Africa""" +2023-05-13,51175,5181,"[\""Charger\"", \""Monitor\""]",3119.82,{},30057,1,"""South America""" +2024-02-14,51176,9996,"[\""Phone\"", \""Laptop\""]",3033.79,"{\""promo\"": \""25%\""}",22854,1,"""Africa""" +2023-05-07,51177,241,"[\""Headphones\"", \""Phone\""]",4238.58,"{\""promo\"": \""30%\""}",284653,0,"""Asia""" +2024-05-04,51178,3693,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1202.83,"{\""promo\"": \""28%\""}",65854,1,"""South America""" +2023-02-11,51179,1465,"[\""Phone\""]",788.93,"{\""loyalty\"": \""12%\""}",21369,0,"""South America""" +2024-09-02,51180,9947,"[\""Wireless Mouse\""]",3729.03,"{\""loyalty\"": \""15%\""}",113235,1,"""South America""" +2024-05-05,51181,8774,"[\""Keyboard\"", \""Wireless Mouse\""]",1959.35,{},207000,1,"""Africa""" +2024-08-11,51182,7734,"[\""Laptop\""]",4705.97,"{\""seasonal\"": \""19%\""}",62217,0,"""South America""" +2023-05-21,51183,2809,"[\""Wireless Mouse\""]",2633.98,"{\""seasonal\"": \""20%\""}",103274,1,"""Asia""" +2023-08-25,51184,9094,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1180.25,{},148602,1,"""Europe""" +2024-04-16,51185,9505,"[\""Wireless Mouse\"", \""Laptop\""]",745.08,"{\""promo\"": \""14%\""}",245618,0,"""Africa""" +2024-12-22,51186,6112,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",82.37,"{\""loyalty\"": \""29%\""}",176325,1,"""South America""" +2023-06-08,51187,5582,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1108.05,"{\""loyalty\"": \""11%\""}",169461,0,"""Africa""" +2023-04-26,51188,6654,"[\""Keyboard\""]",3358.83,{},187917,0,"""South America""" +2023-01-11,51189,3263,"[\""Laptop\"", \""Phone\""]",612.92,"{\""loyalty\"": \""23%\""}",266838,1,"""Africa""" +2024-05-01,51190,8272,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3121.02,"{\""seasonal\"": \""9%\""}",50371,1,"""Asia""" +2024-12-30,51191,1855,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3145.31,{},134227,0,"""South America""" +2024-09-17,51192,257,"[\""Phone\"", \""Charger\""]",2995.48,{},7018,1,"""Africa""" +2024-11-23,51193,655,"[\""Charger\""]",4804.04,{},213298,0,"""South America""" +2024-05-31,51194,3157,"[\""Wireless Mouse\"", \""Phone\""]",3032.86,"{\""promo\"": \""15%\""}",236725,0,"""Africa""" +2023-08-10,51195,3925,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3589.28,{},9884,0,"""North America""" +2023-10-29,51196,8067,"[\""Headphones\""]",3767.91,{},299249,0,"""Africa""" +2024-07-30,51197,2112,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1738.77,"{\""loyalty\"": \""7%\""}",52713,1,"""Africa""" +2024-08-21,51198,8743,"[\""Keyboard\"", \""Laptop\""]",2759.59,{},255529,1,"""South America""" +2023-11-16,51199,7504,"[\""Laptop\""]",1389.42,"{\""promo\"": \""20%\""}",198776,0,"""Asia""" +2024-09-07,51200,12,"[\""Tablet\"", \""Keyboard\""]",605.5,{},17649,1,"""Asia""" +2023-03-20,51201,9957,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4204.83,{},84698,0,"""Africa""" +2023-08-26,51202,936,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",495.46,{},68693,0,"""South America""" +2023-11-27,51203,249,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",587.95,{},52230,0,"""Asia""" +2024-10-17,51204,1353,"[\""Monitor\""]",3168.3,"{\""seasonal\"": \""18%\""}",174803,0,"""Europe""" +2023-12-30,51205,6019,"[\""Monitor\"", \""Phone\""]",1278.81,{},18804,1,"""Africa""" +2023-07-13,51206,6803,"[\""Monitor\"", \""Charger\""]",4551.75,{},226080,1,"""Africa""" +2024-12-16,51207,4294,"[\""Tablet\"", \""Headphones\""]",3276.94,"{\"": \""13%\""}",298486,1,"""North America""" +2024-01-12,51208,1527,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1936.49,"{\"": \""20%\""}",134077,1,"""Europe""" +2024-07-05,51209,158,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3000.33,"{\""loyalty\"": \""22%\""}",181100,0,"""Asia""" +2023-01-18,51210,2209,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3817.84,"{\""loyalty\"": \""19%\""}",26012,0,"""Africa""" +2024-12-26,51211,6491,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3082.28,"{\"": \""21%\""}",255297,1,"""North America""" +2024-06-14,51212,5108,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2534.96,"{\""loyalty\"": \""26%\""}",8349,0,"""South America""" +2024-06-28,51213,3564,"[\""Wireless Mouse\""]",3601.74,{},53022,1,"""Europe""" +2024-03-12,51214,9111,"[\""Keyboard\""]",772.09,"{\""promo\"": \""10%\""}",175487,0,"""North America""" +2024-02-15,51215,9270,"[\""Wireless Mouse\""]",2314.76,{},121645,1,"""North America""" +2024-12-11,51216,6629,"[\""Laptop\""]",451.84,{},218038,1,"""South America""" +2023-04-24,51217,8768,"[\""Keyboard\"", \""Laptop\""]",2060.67,"{\""promo\"": \""27%\""}",136458,1,"""Africa""" +2023-03-16,51218,6942,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",861.45,{},228187,1,"""North America""" +2024-07-21,51219,7277,"[\""Charger\"", \""Headphones\""]",1956.26,{},232613,0,"""Europe""" +2024-09-29,51220,2652,"[\""Phone\"", \""Wireless Mouse\""]",4268.94,"{\"": \""24%\""}",251253,0,"""Europe""" +2024-04-15,51221,4855,"[\""Tablet\""]",1624.72,"{\""promo\"": \""30%\""}",32067,0,"""North America""" +2023-09-15,51222,9323,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2920.87,{},124639,1,"""Africa""" +2023-09-25,51223,3899,"[\""Monitor\"", \""Wireless Mouse\""]",1048.97,"{\"": \""18%\""}",22413,1,"""South America""" +2024-12-08,51224,3522,"[\""Tablet\""]",2035.69,{},250098,0,"""North America""" +2024-03-06,51225,7584,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1445.15,"{\"": \""7%\""}",263339,1,"""Europe""" +2024-11-24,51226,2018,"[\""Wireless Mouse\""]",590.91,{},198637,1,"""Asia""" +2024-07-22,51227,7961,"[\""Tablet\""]",1029.62,"{\""loyalty\"": \""9%\""}",118914,0,"""South America""" +2023-11-13,51228,3512,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3076.85,{},248722,1,"""Asia""" +2024-08-01,51229,6407,"[\""Charger\""]",1814.11,{},293688,0,"""South America""" +2024-11-28,51230,8957,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2056.69,{},21484,1,"""South America""" +2024-11-07,51231,330,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",242.38,{},110592,0,"""North America""" +2023-01-19,51232,7312,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1419.85,"{\""promo\"": \""5%\""}",262972,0,"""Europe""" +2023-06-17,51233,1683,"[\""Laptop\""]",185.32,"{\""promo\"": \""8%\""}",160980,1,"""Africa""" +2023-03-09,51234,7507,"[\""Laptop\"", \""Charger\""]",4319.94,"{\""seasonal\"": \""22%\""}",115771,0,"""Africa""" +2023-08-16,51235,1316,"[\""Headphones\"", \""Keyboard\""]",4777.31,{},170289,1,"""Europe""" +2024-09-18,51236,2138,"[\""Tablet\"", \""Monitor\""]",660.28,"{\""promo\"": \""18%\""}",64326,1,"""Europe""" +2023-12-31,51237,1987,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2282.49,{},27642,1,"""North America""" +2023-03-08,51238,7382,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3067.05,"{\""promo\"": \""8%\""}",5226,1,"""Asia""" +2023-04-30,51239,6213,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3025.62,{},56727,0,"""North America""" +2023-07-07,51240,8832,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4986.67,{},37045,0,"""Europe""" +2024-12-14,51241,4652,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2817.63,"{\""loyalty\"": \""21%\""}",9990,0,"""Europe""" +2023-06-23,51242,7278,"[\""Tablet\""]",2357.88,{},138614,1,"""North America""" +2024-10-12,51243,4715,"[\""Monitor\""]",966.28,{},47944,1,"""Europe""" +2023-09-03,51244,8290,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",82.29,"{\""seasonal\"": \""22%\""}",115485,1,"""Asia""" +2024-07-01,51245,917,"[\""Laptop\""]",3101.24,"{\""loyalty\"": \""23%\""}",187232,1,"""South America""" +2023-10-20,51246,298,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4348.12,"{\""promo\"": \""12%\""}",279448,0,"""North America""" +2024-01-22,51247,9757,"[\""Laptop\"", \""Charger\""]",139.33,"{\"": \""14%\""}",174952,0,"""Africa""" +2024-10-27,51248,2725,"[\""Monitor\"", \""Charger\""]",2081.39,{},123778,0,"""North America""" +2024-06-05,51249,9120,"[\""Keyboard\"", \""Tablet\""]",4759.56,"{\"": \""29%\""}",280510,0,"""Asia""" +2023-04-24,51250,662,"[\""Phone\"", \""Laptop\""]",2003.73,{},2479,1,"""Europe""" +2024-08-25,51251,3354,"[\""Laptop\"", \""Tablet\""]",1321.41,"{\""promo\"": \""28%\""}",163721,1,"""Asia""" +2023-09-18,51252,7191,"[\""Wireless Mouse\""]",1103.35,{},107157,1,"""North America""" +2023-05-18,51253,4872,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4817.17,"{\""promo\"": \""14%\""}",88788,0,"""Asia""" +2023-11-23,51254,7323,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1977.44,"{\""seasonal\"": \""14%\""}",170913,0,"""Europe""" +2024-02-14,51255,7857,"[\""Headphones\""]",90.26,"{\""seasonal\"": \""7%\""}",286944,1,"""Europe""" +2023-01-21,51256,7295,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1514.75,{},101618,1,"""Africa""" +2024-02-17,51257,4779,"[\""Monitor\""]",3511.96,"{\""seasonal\"": \""5%\""}",45665,1,"""Europe""" +2024-03-22,51258,1026,"[\""Tablet\"", \""Phone\""]",4288.17,{},22705,0,"""South America""" +2023-12-16,51259,4085,"[\""Wireless Mouse\"", \""Keyboard\""]",4070.71,"{\""seasonal\"": \""26%\""}",93279,0,"""Africa""" +2024-01-21,51260,8709,"[\""Phone\""]",1859.34,{},25531,0,"""Asia""" +2023-03-29,51261,3700,"[\""Laptop\"", \""Phone\""]",1784.81,"{\""seasonal\"": \""24%\""}",45782,1,"""Europe""" +2024-11-10,51262,753,"[\""Phone\"", \""Monitor\""]",718.23,{},82835,0,"""Europe""" +2024-03-16,51263,2791,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3387.02,{},109954,0,"""South America""" +2024-03-26,51264,6233,"[\""Monitor\""]",305.75,{},102633,0,"""South America""" +2023-11-20,51265,3430,"[\""Phone\""]",798.08,{},76608,1,"""Africa""" +2023-06-21,51266,5394,"[\""Laptop\"", \""Headphones\""]",4379.55,{},172240,1,"""North America""" +2023-05-31,51267,1943,"[\""Monitor\"", \""Tablet\""]",4486.81,"{\"": \""9%\""}",101381,0,"""Asia""" +2024-12-20,51268,4124,"[\""Keyboard\"", \""Headphones\""]",503.2,{},21860,0,"""South America""" +2023-06-29,51269,1299,"[\""Monitor\"", \""Tablet\""]",3305.23,{},84703,0,"""Europe""" +2024-04-20,51270,4454,"[\""Laptop\""]",3754.47,{},106600,1,"""Asia""" +2024-07-23,51271,6764,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3506.26,{},236744,1,"""Europe""" +2024-12-16,51272,202,"[\""Tablet\""]",1385.65,"{\""promo\"": \""21%\""}",192589,0,"""South America""" +2023-03-02,51273,9582,"[\""Monitor\""]",763.19,"{\""promo\"": \""29%\""}",137305,0,"""Asia""" +2024-10-07,51274,6092,"[\""Headphones\"", \""Wireless Mouse\""]",1112.16,{},148034,1,"""Asia""" +2023-04-10,51275,7574,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3642.52,{},6053,1,"""Africa""" +2024-02-14,51276,4695,"[\""Headphones\""]",3767.07,"{\""seasonal\"": \""28%\""}",21874,0,"""South America""" +2024-10-11,51277,5191,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",148.55,"{\""seasonal\"": \""30%\""}",259253,0,"""North America""" +2023-09-27,51278,1736,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3297.03,"{\""seasonal\"": \""29%\""}",287451,0,"""Europe""" +2023-07-20,51279,395,"[\""Headphones\"", \""Wireless Mouse\""]",233.52,"{\"": \""30%\""}",291430,1,"""Asia""" +2024-10-31,51280,1613,"[\""Tablet\""]",738.27,"{\""promo\"": \""20%\""}",17112,0,"""Africa""" +2023-02-16,51281,547,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4718.15,"{\"": \""14%\""}",155390,0,"""Africa""" +2024-02-10,51282,9084,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3993.82,"{\"": \""27%\""}",77275,0,"""South America""" +2023-03-21,51283,7877,"[\""Monitor\"", \""Tablet\""]",1819.36,{},110785,1,"""North America""" +2023-05-10,51284,3286,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1953.35,{},275660,1,"""Asia""" +2024-08-24,51285,5852,"[\""Monitor\""]",1593.65,"{\"": \""21%\""}",263708,0,"""Asia""" +2024-09-19,51286,5127,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2331.53,{},275747,1,"""Asia""" +2023-05-05,51287,1409,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3286.98,{},11345,1,"""South America""" +2024-09-10,51288,6048,"[\""Keyboard\""]",490.5,{},50866,0,"""Asia""" +2023-12-21,51289,3553,"[\""Monitor\"", \""Phone\""]",4519.68,{},71415,0,"""South America""" +2024-04-14,51290,9843,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1071.4,{},234639,1,"""South America""" +2023-05-26,51291,2141,"[\""Phone\"", \""Wireless Mouse\""]",1420.95,{},228536,0,"""Africa""" +2024-02-01,51292,6064,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2961.91,"{\""loyalty\"": \""28%\""}",60824,0,"""South America""" +2024-07-31,51293,3766,"[\""Wireless Mouse\"", \""Monitor\""]",2032.44,"{\""promo\"": \""29%\""}",117795,1,"""Europe""" +2024-12-04,51294,9522,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3910.1,"{\""promo\"": \""15%\""}",191226,1,"""Asia""" +2024-12-07,51295,6488,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",72.17,"{\""seasonal\"": \""13%\""}",278975,0,"""Europe""" +2024-11-29,51296,7963,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2018.84,"{\"": \""26%\""}",119901,1,"""Europe""" +2024-08-02,51297,2091,"[\""Keyboard\""]",4527.58,"{\""loyalty\"": \""8%\""}",190484,1,"""North America""" +2023-03-24,51298,8207,"[\""Keyboard\""]",1696.91,{},116269,0,"""Asia""" +2023-05-10,51299,7164,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1121.4,"{\""promo\"": \""14%\""}",251744,1,"""South America""" +2023-09-26,51300,6093,"[\""Keyboard\"", \""Monitor\""]",2791.9,{},140894,0,"""Europe""" +2023-08-18,51301,4563,"[\""Phone\"", \""Monitor\""]",1877.99,"{\""seasonal\"": \""6%\""}",9540,1,"""Europe""" +2023-12-28,51302,4809,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4078.11,{},257413,0,"""Africa""" +2024-01-09,51303,1101,"[\""Phone\"", \""Wireless Mouse\""]",3525.11,"{\""loyalty\"": \""26%\""}",97366,1,"""North America""" +2024-04-11,51304,7598,"[\""Phone\"", \""Charger\""]",57.84,"{\""promo\"": \""13%\""}",136074,1,"""Europe""" +2024-12-15,51305,8929,"[\""Wireless Mouse\""]",1028.7,"{\""promo\"": \""25%\""}",146481,0,"""Africa""" +2023-01-25,51306,9166,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3322.96,{},166183,0,"""North America""" +2024-01-16,51307,2045,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2631.13,"{\"": \""20%\""}",61438,1,"""Africa""" +2023-05-26,51308,4818,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4687.53,{},42731,1,"""Africa""" +2024-08-11,51309,7476,"[\""Phone\"", \""Headphones\""]",686.36,{},167839,0,"""South America""" +2024-06-03,51310,1526,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1709.84,"{\""promo\"": \""26%\""}",162819,0,"""Europe""" +2023-03-24,51311,8469,"[\""Charger\"", \""Laptop\""]",3215.37,{},110268,0,"""North America""" +2023-08-08,51312,8520,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",209.93,{},116980,0,"""Europe""" +2024-11-12,51313,7059,"[\""Laptop\"", \""Tablet\""]",3130.88,"{\""seasonal\"": \""13%\""}",63259,0,"""Europe""" +2023-05-24,51314,7442,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4103.15,{},5524,0,"""Asia""" +2023-12-30,51315,1973,"[\""Keyboard\""]",3282.23,"{\""promo\"": \""23%\""}",259490,0,"""South America""" +2023-06-05,51316,2896,"[\""Laptop\"", \""Monitor\""]",4002.77,{},180664,1,"""Europe""" +2024-09-13,51317,148,"[\""Charger\""]",367.49,"{\"": \""14%\""}",109531,0,"""Europe""" +2024-07-03,51318,5756,"[\""Tablet\"", \""Phone\""]",2302.7,{},13739,1,"""South America""" +2023-11-12,51319,137,"[\""Keyboard\"", \""Tablet\""]",1453.83,{},10055,0,"""Africa""" +2023-12-23,51320,4864,"[\""Laptop\"", \""Wireless Mouse\""]",2110.7,"{\"": \""17%\""}",182235,1,"""Europe""" +2023-12-14,51321,8595,"[\""Tablet\"", \""Phone\""]",2369.78,{},100921,1,"""Africa""" +2024-08-18,51322,5158,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3061.22,"{\"": \""5%\""}",182919,0,"""Africa""" +2023-03-24,51323,7838,"[\""Charger\""]",2773.43,{},110264,0,"""Asia""" +2024-07-11,51324,1493,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3206.31,"{\""promo\"": \""6%\""}",4071,1,"""Africa""" +2023-08-13,51325,3690,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4963.9,"{\""loyalty\"": \""24%\""}",247518,0,"""North America""" +2024-04-03,51326,5634,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3519.69,"{\""loyalty\"": \""9%\""}",40676,1,"""Asia""" +2024-07-26,51327,5370,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4189.42,"{\"": \""14%\""}",231351,1,"""North America""" +2024-09-27,51328,6642,"[\""Tablet\""]",4680.57,{},172089,1,"""Europe""" +2024-11-30,51329,5700,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2454.26,"{\""promo\"": \""15%\""}",97182,1,"""Europe""" +2024-01-01,51330,4360,"[\""Phone\"", \""Tablet\""]",3431.95,{},276106,1,"""South America""" +2023-07-09,51331,2146,"[\""Monitor\"", \""Charger\""]",2118.39,"{\""seasonal\"": \""23%\""}",163064,0,"""Europe""" +2024-04-25,51332,3837,"[\""Wireless Mouse\"", \""Monitor\""]",1229.54,"{\""seasonal\"": \""30%\""}",260305,0,"""North America""" +2023-06-17,51333,844,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1152.31,{},270352,1,"""Asia""" +2023-06-01,51334,2698,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1655.38,"{\"": \""14%\""}",165522,1,"""South America""" +2024-03-22,51335,8472,"[\""Monitor\"", \""Keyboard\""]",2836.75,{},95241,1,"""South America""" +2023-01-19,51336,1166,"[\""Monitor\"", \""Tablet\""]",1276.95,"{\""loyalty\"": \""23%\""}",212638,0,"""North America""" +2023-03-20,51337,7029,"[\""Wireless Mouse\""]",3379.26,"{\""seasonal\"": \""22%\""}",191422,1,"""Asia""" +2024-05-17,51338,784,"[\""Monitor\"", \""Laptop\""]",3767.8,{},70786,0,"""South America""" +2024-04-07,51339,6144,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2819.18,"{\""promo\"": \""15%\""}",282720,1,"""South America""" +2023-10-10,51340,8687,"[\""Phone\"", \""Wireless Mouse\""]",4647.4,{},135504,1,"""Europe""" +2023-11-24,51341,5142,"[\""Tablet\"", \""Laptop\""]",4394.33,"{\""seasonal\"": \""15%\""}",207163,1,"""Africa""" +2024-04-11,51342,8970,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4733.48,"{\""seasonal\"": \""18%\""}",269146,0,"""North America""" +2023-02-05,51343,7593,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3377.55,"{\""seasonal\"": \""7%\""}",150621,1,"""North America""" +2023-06-04,51344,250,"[\""Phone\""]",4290.82,{},78826,1,"""Asia""" +2024-03-20,51345,5909,"[\""Monitor\""]",1998.73,"{\"": \""29%\""}",145437,0,"""Asia""" +2024-07-13,51346,4981,"[\""Tablet\""]",3112.95,{},174029,1,"""Africa""" +2024-06-10,51347,6314,"[\""Tablet\""]",2767.4,{},105586,0,"""Europe""" +2023-05-23,51348,1841,"[\""Charger\"", \""Monitor\""]",156.88,{},136653,0,"""Asia""" +2024-07-22,51349,7835,"[\""Headphones\"", \""Laptop\""]",379.39,"{\""promo\"": \""6%\""}",281748,1,"""North America""" +2024-07-03,51350,1078,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3583.34,"{\""seasonal\"": \""26%\""}",90350,1,"""North America""" +2023-02-03,51351,104,"[\""Phone\"", \""Wireless Mouse\""]",3690.19,"{\""loyalty\"": \""16%\""}",21735,1,"""North America""" +2023-08-28,51352,2540,"[\""Keyboard\""]",1205.44,"{\""loyalty\"": \""29%\""}",221522,0,"""North America""" +2024-02-08,51353,474,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2443.82,"{\""loyalty\"": \""5%\""}",139697,1,"""Africa""" +2024-06-21,51354,5043,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4342.0,"{\""loyalty\"": \""23%\""}",106441,0,"""Asia""" +2023-07-05,51355,9305,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1751.99,"{\""loyalty\"": \""18%\""}",237543,1,"""Europe""" +2024-10-27,51356,5567,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",744.01,"{\""promo\"": \""11%\""}",63441,1,"""Europe""" +2023-05-11,51357,7316,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1153.68,"{\"": \""8%\""}",174576,0,"""South America""" +2023-04-21,51358,8871,"[\""Charger\""]",3157.15,"{\""seasonal\"": \""13%\""}",4654,0,"""Africa""" +2023-05-05,51359,132,"[\""Wireless Mouse\"", \""Keyboard\""]",1229.78,{},89845,0,"""Asia""" +2024-09-28,51360,9975,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4411.72,"{\"": \""26%\""}",12432,0,"""Europe""" +2023-06-28,51361,5550,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",828.08,"{\""seasonal\"": \""7%\""}",146700,0,"""North America""" +2023-02-24,51362,7053,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4959.87,"{\"": \""23%\""}",169180,1,"""Africa""" +2023-02-05,51363,9952,"[\""Tablet\"", \""Wireless Mouse\""]",3753.51,"{\"": \""26%\""}",190189,1,"""South America""" +2024-03-15,51364,3734,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1406.84,"{\""loyalty\"": \""6%\""}",147139,1,"""Asia""" +2024-05-07,51365,9798,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",562.23,{},10448,1,"""South America""" +2023-06-18,51366,8734,"[\""Tablet\""]",744.94,{},127714,0,"""Africa""" +2023-07-15,51367,9691,"[\""Keyboard\""]",3408.44,"{\"": \""6%\""}",58539,1,"""South America""" +2023-09-12,51368,7591,"[\""Phone\"", \""Monitor\""]",1914.03,{},233269,0,"""South America""" +2023-10-14,51369,3609,"[\""Keyboard\"", \""Monitor\""]",1796.1,{},114955,1,"""Asia""" +2023-08-29,51370,3625,"[\""Monitor\"", \""Laptop\""]",3356.49,{},163115,0,"""Europe""" +2023-01-27,51371,5710,"[\""Keyboard\""]",4793.72,{},171567,0,"""South America""" +2023-03-31,51372,4034,"[\""Wireless Mouse\"", \""Phone\""]",4230.21,"{\""promo\"": \""20%\""}",291033,1,"""Europe""" +2024-09-07,51373,7519,"[\""Monitor\"", \""Laptop\""]",2491.48,"{\"": \""16%\""}",267679,0,"""Asia""" +2023-12-02,51374,2867,"[\""Laptop\"", \""Monitor\""]",2602.37,"{\"": \""5%\""}",158636,1,"""North America""" +2024-09-10,51375,2977,"[\""Headphones\"", \""Keyboard\""]",2163.76,"{\""promo\"": \""14%\""}",94074,1,"""South America""" +2024-07-29,51376,970,"[\""Tablet\"", \""Laptop\""]",2223.56,{},209927,1,"""Asia""" +2024-02-01,51377,5617,"[\""Phone\""]",4858.61,"{\""promo\"": \""10%\""}",33031,0,"""Africa""" +2024-10-03,51378,2839,"[\""Keyboard\"", \""Monitor\""]",2470.01,"{\""promo\"": \""13%\""}",76268,0,"""South America""" +2024-10-12,51379,1638,"[\""Phone\"", \""Laptop\""]",4931.4,"{\""loyalty\"": \""17%\""}",82365,1,"""Europe""" +2024-11-11,51380,4511,"[\""Phone\"", \""Wireless Mouse\""]",1103.24,{},182735,0,"""North America""" +2024-05-29,51381,4383,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1250.39,"{\""loyalty\"": \""24%\""}",142673,1,"""Europe""" +2024-03-03,51382,7732,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2702.95,"{\""promo\"": \""30%\""}",84327,1,"""South America""" +2023-04-14,51383,1843,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1173.74,{},13267,0,"""Asia""" +2024-02-02,51384,5994,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1762.79,{},185220,1,"""South America""" +2023-11-22,51385,5794,"[\""Headphones\""]",593.9,{},63622,0,"""Asia""" +2024-03-28,51386,8329,"[\""Keyboard\"", \""Laptop\""]",337.69,{},140315,0,"""Africa""" +2024-03-20,51387,2975,"[\""Monitor\""]",4035.73,{},211346,1,"""South America""" +2024-09-09,51388,72,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1887.91,{},83765,1,"""Asia""" +2023-03-14,51389,5106,"[\""Laptop\"", \""Charger\""]",863.63,"{\""seasonal\"": \""5%\""}",92592,1,"""Asia""" +2024-12-16,51390,1967,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4098.86,{},286630,1,"""Asia""" +2023-03-06,51391,7499,"[\""Keyboard\"", \""Headphones\""]",3375.07,{},138175,1,"""Europe""" +2024-08-28,51392,6070,"[\""Tablet\""]",826.71,{},271172,0,"""Africa""" +2023-12-01,51393,2451,"[\""Phone\""]",4079.06,"{\""loyalty\"": \""6%\""}",282092,0,"""South America""" +2023-03-06,51394,2070,"[\""Phone\"", \""Headphones\""]",1281.93,{},74634,1,"""Africa""" +2024-09-23,51395,8597,"[\""Phone\"", \""Wireless Mouse\""]",4585.07,"{\""seasonal\"": \""5%\""}",164175,0,"""Asia""" +2023-02-02,51396,3862,"[\""Charger\"", \""Keyboard\""]",1320.79,{},239347,1,"""South America""" +2023-06-04,51397,1836,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4419.67,{},25530,0,"""Europe""" +2023-11-28,51398,549,"[\""Monitor\"", \""Charger\""]",3799.48,{},191798,1,"""Europe""" +2023-04-28,51399,1272,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2349.76,{},181365,0,"""Africa""" +2023-08-30,51400,4546,"[\""Keyboard\""]",1545.84,{},27281,0,"""North America""" +2023-01-18,51401,1246,"[\""Phone\""]",2780.96,{},81306,0,"""Africa""" +2024-06-07,51402,7707,"[\""Charger\"", \""Keyboard\""]",588.51,{},251765,0,"""Asia""" +2024-08-16,51403,4795,"[\""Laptop\"", \""Phone\""]",4532.29,"{\"": \""7%\""}",53018,1,"""Africa""" +2024-11-10,51404,2820,"[\""Laptop\""]",4411.79,"{\"": \""19%\""}",22804,1,"""Africa""" +2024-01-11,51405,5951,"[\""Charger\"", \""Tablet\""]",4468.08,"{\""promo\"": \""17%\""}",225332,1,"""Europe""" +2023-01-28,51406,2236,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2199.38,"{\""seasonal\"": \""21%\""}",138373,0,"""Asia""" +2024-02-20,51407,5525,"[\""Laptop\""]",932.59,"{\""loyalty\"": \""18%\""}",146948,0,"""Europe""" +2024-11-20,51408,4890,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2428.53,"{\""seasonal\"": \""24%\""}",265012,1,"""South America""" +2023-03-29,51409,621,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3146.07,{},271160,1,"""South America""" +2023-02-13,51410,3251,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3655.39,{},200409,0,"""North America""" +2023-07-13,51411,9778,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4019.45,{},204376,1,"""Europe""" +2024-03-10,51412,3529,"[\""Charger\"", \""Phone\""]",4639.02,"{\"": \""6%\""}",138407,0,"""Africa""" +2023-10-05,51413,4099,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1032.47,{},182175,0,"""Europe""" +2023-05-28,51414,7312,"[\""Tablet\"", \""Charger\""]",3342.8,{},282981,1,"""South America""" +2023-10-23,51415,8099,"[\""Phone\""]",4117.79,{},266474,0,"""South America""" +2023-10-31,51416,2770,"[\""Headphones\"", \""Wireless Mouse\""]",4017.9,{},59469,0,"""Africa""" +2024-05-08,51417,4657,"[\""Keyboard\""]",2149.08,"{\""seasonal\"": \""6%\""}",253135,0,"""Europe""" +2023-06-25,51418,6207,"[\""Charger\""]",703.16,"{\""seasonal\"": \""15%\""}",73601,1,"""Africa""" +2024-07-15,51419,1812,"[\""Wireless Mouse\""]",4794.84,"{\""promo\"": \""8%\""}",101416,1,"""Europe""" +2024-04-12,51420,753,"[\""Keyboard\"", \""Monitor\""]",4355.69,"{\"": \""20%\""}",184060,1,"""North America""" +2023-12-23,51421,7101,"[\""Phone\"", \""Keyboard\""]",688.71,{},158020,0,"""Europe""" +2023-08-01,51422,2959,"[\""Monitor\"", \""Headphones\""]",3858.63,{},5732,1,"""Africa""" +2024-01-17,51423,5932,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3831.04,{},215312,1,"""Africa""" +2024-11-04,51424,6847,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",154.99,{},214744,1,"""Asia""" +2023-10-30,51425,1531,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2545.11,{},241218,0,"""Africa""" +2024-12-27,51426,8631,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3525.76,{},263015,0,"""Africa""" +2023-02-02,51427,9051,"[\""Tablet\""]",3680.95,"{\"": \""12%\""}",147854,1,"""Africa""" +2023-07-14,51428,2324,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1002.2,{},108214,1,"""Asia""" +2023-11-22,51429,5875,"[\""Charger\""]",4421.3,"{\""loyalty\"": \""19%\""}",118886,0,"""Africa""" +2023-03-28,51430,3038,"[\""Wireless Mouse\"", \""Phone\""]",2176.45,"{\""promo\"": \""28%\""}",276743,1,"""South America""" +2023-11-03,51431,233,"[\""Keyboard\"", \""Phone\""]",3299.05,{},24885,0,"""Asia""" +2023-06-01,51432,9584,"[\""Keyboard\"", \""Tablet\""]",2802.78,{},75420,0,"""Asia""" +2023-08-30,51433,2130,"[\""Phone\"", \""Charger\""]",1975.21,{},292119,0,"""Europe""" +2023-09-29,51434,5100,"[\""Phone\""]",2098.58,"{\""seasonal\"": \""24%\""}",64889,0,"""Asia""" +2023-08-01,51435,8661,"[\""Headphones\""]",2422.09,"{\"": \""16%\""}",130000,0,"""Africa""" +2024-07-08,51436,2735,"[\""Monitor\""]",981.41,{},184614,0,"""Africa""" +2024-01-20,51437,8841,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4640.69,"{\""seasonal\"": \""12%\""}",179302,1,"""Asia""" +2024-04-05,51438,6791,"[\""Monitor\""]",3495.45,{},17409,0,"""Africa""" +2023-11-03,51439,2956,"[\""Monitor\""]",2233.17,{},117262,1,"""Africa""" +2024-10-12,51440,3647,"[\""Charger\"", \""Monitor\""]",1986.56,{},56381,1,"""Asia""" +2024-06-30,51441,5459,"[\""Laptop\""]",4546.69,"{\"": \""23%\""}",94909,0,"""Europe""" +2023-06-30,51442,1522,"[\""Charger\"", \""Wireless Mouse\""]",1753.4,"{\""promo\"": \""10%\""}",239061,0,"""South America""" +2024-02-11,51443,5252,"[\""Phone\""]",4537.18,"{\""loyalty\"": \""26%\""}",209642,1,"""Europe""" +2023-02-19,51444,2640,"[\""Wireless Mouse\"", \""Tablet\""]",108.41,{},249178,1,"""South America""" +2023-04-08,51445,1641,"[\""Headphones\"", \""Laptop\""]",4793.9,"{\"": \""26%\""}",222824,1,"""South America""" +2023-08-16,51446,8960,"[\""Laptop\"", \""Tablet\""]",1251.81,"{\"": \""7%\""}",234366,0,"""Africa""" +2023-12-08,51447,9031,"[\""Headphones\"", \""Laptop\""]",1875.08,"{\""promo\"": \""12%\""}",253988,0,"""South America""" +2023-02-02,51448,3121,"[\""Keyboard\""]",1008.36,"{\""loyalty\"": \""17%\""}",55730,0,"""Africa""" +2023-12-04,51449,1309,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1491.55,"{\""loyalty\"": \""20%\""}",71524,0,"""Asia""" +2023-04-10,51450,2178,"[\""Headphones\""]",1688.23,{},153053,0,"""Europe""" +2023-07-08,51451,3348,"[\""Keyboard\"", \""Laptop\""]",1877.99,{},274114,1,"""North America""" +2024-11-16,51452,4804,"[\""Tablet\""]",3542.35,{},15628,0,"""Europe""" +2023-04-09,51453,3760,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",461.12,"{\""loyalty\"": \""25%\""}",250435,0,"""South America""" +2023-08-25,51454,8749,"[\""Monitor\"", \""Headphones\""]",2974.94,{},137546,1,"""Africa""" +2023-01-09,51455,624,"[\""Headphones\"", \""Phone\""]",1071.96,"{\"": \""24%\""}",173958,1,"""South America""" +2023-07-03,51456,5383,"[\""Wireless Mouse\"", \""Phone\""]",1959.93,"{\""loyalty\"": \""14%\""}",93042,0,"""Africa""" +2023-04-03,51457,2350,"[\""Phone\"", \""Headphones\"", \""Charger\""]",432.62,{},45172,0,"""Africa""" +2024-06-25,51458,7797,"[\""Charger\""]",276.26,{},169135,1,"""North America""" +2023-12-04,51459,5973,"[\""Charger\""]",3327.37,{},5063,0,"""North America""" +2023-12-24,51460,2690,"[\""Keyboard\"", \""Headphones\""]",2281.9,{},193102,1,"""North America""" +2024-07-06,51461,5403,"[\""Tablet\"", \""Laptop\""]",2745.75,{},286115,1,"""Asia""" +2023-03-07,51462,6668,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",623.07,{},178105,0,"""Africa""" +2023-04-23,51463,5183,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2105.69,{},164568,1,"""Asia""" +2024-04-27,51464,6414,"[\""Laptop\"", \""Phone\""]",560.14,"{\""loyalty\"": \""22%\""}",140535,0,"""Africa""" +2023-05-22,51465,9108,"[\""Keyboard\""]",626.17,{},215152,1,"""South America""" +2023-08-26,51466,4329,"[\""Tablet\"", \""Wireless Mouse\""]",833.69,{},154639,1,"""South America""" +2023-05-07,51467,2401,"[\""Charger\""]",1562.55,"{\""promo\"": \""16%\""}",68943,0,"""Europe""" +2024-12-31,51468,4043,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4962.77,"{\""loyalty\"": \""10%\""}",97106,0,"""South America""" +2023-07-22,51469,5237,"[\""Wireless Mouse\""]",4428.94,{},243627,0,"""South America""" +2023-04-11,51470,1790,"[\""Keyboard\"", \""Charger\""]",2039.96,{},213351,0,"""North America""" +2024-03-28,51471,866,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2097.2,"{\""seasonal\"": \""12%\""}",291918,0,"""Africa""" +2023-07-20,51472,7044,"[\""Tablet\"", \""Wireless Mouse\""]",3705.28,"{\"": \""14%\""}",181373,1,"""Europe""" +2024-02-12,51473,2518,"[\""Tablet\"", \""Wireless Mouse\""]",2949.26,"{\""promo\"": \""10%\""}",193238,0,"""Europe""" +2023-06-13,51474,8663,"[\""Monitor\""]",3745.83,{},285576,1,"""Europe""" +2024-10-09,51475,4705,"[\""Headphones\""]",2538.56,{},266474,0,"""Africa""" +2024-07-20,51476,2065,"[\""Phone\""]",516.35,{},283294,1,"""Africa""" +2024-12-04,51477,8781,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2904.59,"{\""seasonal\"": \""14%\""}",291194,0,"""South America""" +2023-02-26,51478,6911,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3673.02,{},132018,1,"""North America""" +2024-08-17,51479,4838,"[\""Tablet\"", \""Headphones\""]",1667.92,{},202042,1,"""North America""" +2024-07-15,51480,704,"[\""Wireless Mouse\""]",4672.54,{},47689,1,"""Asia""" +2024-08-29,51481,2342,"[\""Headphones\"", \""Tablet\""]",2598.83,{},262036,0,"""Asia""" +2023-03-15,51482,1471,"[\""Charger\""]",3910.92,"{\"": \""26%\""}",298272,0,"""Asia""" +2023-07-09,51483,6004,"[\""Laptop\"", \""Headphones\""]",649.0,{},119978,0,"""Europe""" +2024-01-04,51484,3596,"[\""Phone\"", \""Tablet\""]",4138.56,{},74746,0,"""Africa""" +2024-11-10,51485,4067,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4854.39,{},129989,0,"""South America""" +2024-02-05,51486,8977,"[\""Wireless Mouse\""]",4202.02,"{\""promo\"": \""17%\""}",32537,1,"""South America""" +2024-05-15,51487,6383,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1554.69,{},253950,0,"""Europe""" +2023-03-16,51488,6098,"[\""Phone\"", \""Keyboard\""]",3037.34,"{\"": \""22%\""}",86081,1,"""Europe""" +2023-12-02,51489,7415,"[\""Headphones\"", \""Charger\""]",3983.75,{},121522,0,"""Asia""" +2023-04-26,51490,7224,"[\""Keyboard\""]",1732.2,{},149737,1,"""Asia""" +2024-10-19,51491,303,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",56.46,"{\"": \""23%\""}",268439,1,"""Asia""" +2023-04-17,51492,8638,"[\""Charger\""]",4717.64,{},214884,0,"""South America""" +2024-09-29,51493,3970,"[\""Wireless Mouse\""]",1720.78,"{\""loyalty\"": \""22%\""}",33149,0,"""Africa""" +2023-07-29,51494,4510,"[\""Laptop\"", \""Monitor\""]",118.29,{},11128,1,"""Africa""" +2024-07-18,51495,9539,"[\""Laptop\"", \""Phone\""]",1891.57,"{\"": \""25%\""}",189083,0,"""Asia""" +2024-01-12,51496,8498,"[\""Monitor\"", \""Laptop\""]",567.05,{},23443,1,"""Asia""" +2024-07-26,51497,6147,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1241.85,{},226070,1,"""South America""" +2024-01-11,51498,596,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2039.42,"{\"": \""11%\""}",197601,0,"""Africa""" +2024-08-10,51499,6685,"[\""Monitor\"", \""Keyboard\""]",3116.79,"{\""loyalty\"": \""8%\""}",21907,1,"""Africa""" +2024-02-29,51500,8253,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3882.48,{},160519,0,"""Africa""" +2023-08-06,51501,973,"[\""Headphones\""]",2949.71,"{\""promo\"": \""8%\""}",32274,1,"""Asia""" +2023-02-10,51502,7957,"[\""Charger\"", \""Phone\""]",1399.25,{},276979,0,"""South America""" +2024-02-27,51503,6392,"[\""Laptop\""]",340.19,"{\""seasonal\"": \""23%\""}",25935,1,"""Africa""" +2024-04-29,51504,1981,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3380.11,{},109925,0,"""South America""" +2024-06-12,51505,6749,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3082.62,"{\""loyalty\"": \""22%\""}",89267,1,"""North America""" +2024-11-19,51506,6808,"[\""Phone\""]",1505.82,"{\"": \""15%\""}",11804,1,"""Asia""" +2024-10-29,51507,793,"[\""Charger\""]",1399.28,{},113297,1,"""North America""" +2024-09-01,51508,8734,"[\""Keyboard\"", \""Headphones\""]",4202.63,"{\""seasonal\"": \""7%\""}",273494,1,"""Europe""" +2024-03-06,51509,5566,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2860.7,{},198053,1,"""North America""" +2024-04-05,51510,1745,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2221.98,{},187248,0,"""Asia""" +2024-07-06,51511,9678,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1121.56,"{\""promo\"": \""15%\""}",21404,1,"""Africa""" +2023-08-18,51512,1970,"[\""Headphones\""]",90.11,{},217819,1,"""Africa""" +2024-01-04,51513,2784,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3516.41,"{\""seasonal\"": \""24%\""}",295940,0,"""Europe""" +2023-05-01,51514,5248,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",971.18,"{\""seasonal\"": \""9%\""}",281824,0,"""Asia""" +2024-12-03,51515,1105,"[\""Keyboard\""]",523.8,{},72629,0,"""Europe""" +2023-08-30,51516,4208,"[\""Headphones\""]",4281.16,"{\""loyalty\"": \""9%\""}",110678,0,"""Africa""" +2023-04-05,51517,4962,"[\""Phone\"", \""Keyboard\""]",4743.26,"{\""seasonal\"": \""14%\""}",184707,0,"""South America""" +2024-06-11,51518,9207,"[\""Laptop\""]",2965.53,{},197679,0,"""Africa""" +2024-08-06,51519,3766,"[\""Phone\"", \""Charger\""]",1773.1,{},279343,1,"""Asia""" +2024-04-24,51520,783,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",516.46,{},155287,1,"""South America""" +2023-04-19,51521,7364,"[\""Laptop\"", \""Charger\""]",2796.65,"{\""promo\"": \""11%\""}",70638,1,"""Europe""" +2024-09-12,51522,8342,"[\""Charger\""]",1054.01,{},121216,0,"""South America""" +2023-01-28,51523,8095,"[\""Laptop\"", \""Phone\""]",1717.0,"{\""loyalty\"": \""14%\""}",200255,0,"""South America""" +2023-12-11,51524,3578,"[\""Monitor\""]",710.6,"{\"": \""20%\""}",97910,1,"""Asia""" +2023-10-06,51525,8438,"[\""Headphones\""]",2002.51,{},189288,0,"""Europe""" +2024-07-05,51526,6067,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1710.05,"{\"": \""17%\""}",206967,1,"""Africa""" +2024-01-12,51527,8680,"[\""Keyboard\"", \""Phone\""]",4458.32,"{\""promo\"": \""8%\""}",204679,0,"""North America""" +2024-03-11,51528,1423,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1088.53,{},108915,1,"""Asia""" +2023-08-30,51529,9941,"[\""Monitor\"", \""Wireless Mouse\""]",321.59,"{\""loyalty\"": \""20%\""}",114405,0,"""Asia""" +2024-04-06,51530,2638,"[\""Phone\"", \""Laptop\""]",730.2,"{\"": \""11%\""}",57174,1,"""Europe""" +2023-03-21,51531,4709,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4875.22,{},161748,0,"""North America""" +2023-07-01,51532,6913,"[\""Monitor\"", \""Headphones\""]",3155.51,{},67722,1,"""Europe""" +2024-07-15,51533,1726,"[\""Tablet\"", \""Keyboard\""]",2649.01,{},235846,0,"""Africa""" +2023-01-07,51534,2742,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1398.65,"{\""loyalty\"": \""14%\""}",218414,0,"""South America""" +2023-02-18,51535,4905,"[\""Headphones\""]",607.57,"{\""promo\"": \""11%\""}",234975,0,"""Europe""" +2023-09-17,51536,9234,"[\""Phone\""]",3517.19,{},222669,0,"""Europe""" +2023-03-11,51537,3782,"[\""Keyboard\""]",2088.99,"{\""seasonal\"": \""21%\""}",299247,1,"""Asia""" +2023-03-05,51538,6099,"[\""Laptop\""]",1888.74,{},208131,0,"""South America""" +2023-01-12,51539,3120,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3470.76,{},200448,1,"""South America""" +2024-05-22,51540,5452,"[\""Keyboard\"", \""Laptop\""]",4962.98,{},140521,1,"""North America""" +2024-05-17,51541,926,"[\""Wireless Mouse\"", \""Monitor\""]",3287.82,"{\""seasonal\"": \""25%\""}",177127,1,"""Africa""" +2024-01-31,51542,3052,"[\""Keyboard\""]",4019.83,{},48447,1,"""Asia""" +2023-09-02,51543,6308,"[\""Phone\""]",1697.95,{},164524,0,"""Africa""" +2023-10-12,51544,1949,"[\""Laptop\""]",4730.14,"{\"": \""17%\""}",106715,0,"""South America""" +2023-10-23,51545,2765,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3666.53,{},28692,0,"""Africa""" +2024-03-22,51546,6186,"[\""Laptop\""]",1344.11,"{\"": \""14%\""}",87743,1,"""Africa""" +2023-02-01,51547,5113,"[\""Charger\"", \""Monitor\""]",714.15,{},202517,1,"""North America""" +2023-06-14,51548,7368,"[\""Phone\"", \""Monitor\""]",533.94,"{\""promo\"": \""18%\""}",80451,0,"""Asia""" +2023-10-05,51549,8459,"[\""Wireless Mouse\""]",989.96,{},129508,1,"""Asia""" +2023-05-11,51550,2117,"[\""Phone\""]",4835.47,{},264620,1,"""North America""" +2024-05-19,51551,5713,"[\""Wireless Mouse\"", \""Charger\""]",2494.95,"{\""seasonal\"": \""28%\""}",239386,1,"""Europe""" +2023-08-15,51552,2008,"[\""Wireless Mouse\""]",3421.7,"{\"": \""8%\""}",118290,1,"""North America""" +2023-01-01,51553,2691,"[\""Headphones\""]",939.49,"{\""loyalty\"": \""17%\""}",217139,0,"""Africa""" +2023-10-03,51554,5194,"[\""Laptop\"", \""Monitor\""]",4472.19,{},223270,0,"""Africa""" +2023-06-05,51555,5144,"[\""Monitor\""]",1763.9,{},255915,0,"""Europe""" +2024-11-05,51556,3176,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",784.67,"{\""promo\"": \""29%\""}",58618,1,"""Europe""" +2023-02-24,51557,5039,"[\""Wireless Mouse\"", \""Headphones\""]",1514.58,{},259534,0,"""North America""" +2024-01-12,51558,5143,"[\""Monitor\"", \""Laptop\""]",2589.33,{},2083,1,"""Asia""" +2023-05-31,51559,8891,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3567.26,"{\"": \""27%\""}",152313,1,"""Europe""" +2024-02-02,51560,6137,"[\""Monitor\"", \""Laptop\""]",2468.63,{},220983,0,"""South America""" +2023-10-16,51561,676,"[\""Charger\"", \""Tablet\""]",4688.72,{},101776,1,"""South America""" +2023-07-31,51562,7806,"[\""Wireless Mouse\"", \""Phone\""]",3716.39,"{\"": \""17%\""}",79270,0,"""Europe""" +2024-09-13,51563,5019,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4575.46,{},80962,0,"""Asia""" +2023-11-13,51564,9033,"[\""Keyboard\""]",1844.12,{},264685,1,"""South America""" +2024-01-02,51565,8976,"[\""Charger\""]",254.69,{},241061,1,"""Asia""" +2024-03-14,51566,21,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",177.91,"{\""promo\"": \""8%\""}",11280,1,"""Europe""" +2023-11-25,51567,6436,"[\""Charger\""]",1847.59,{},142135,1,"""Africa""" +2023-01-05,51568,3680,"[\""Tablet\"", \""Phone\""]",138.99,"{\""loyalty\"": \""17%\""}",278297,1,"""Africa""" +2023-10-02,51569,4080,"[\""Monitor\"", \""Tablet\""]",894.34,"{\""loyalty\"": \""14%\""}",291612,1,"""Asia""" +2024-11-09,51570,6802,"[\""Headphones\""]",2612.02,"{\""loyalty\"": \""19%\""}",197366,1,"""South America""" +2024-06-25,51571,6724,"[\""Wireless Mouse\""]",1914.01,"{\"": \""14%\""}",116867,0,"""Africa""" +2023-09-09,51572,8965,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",686.66,{},204958,1,"""South America""" +2024-06-13,51573,489,"[\""Monitor\"", \""Headphones\""]",4583.23,"{\""seasonal\"": \""11%\""}",87653,1,"""South America""" +2024-02-28,51574,6138,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4493.87,{},171310,0,"""Europe""" +2024-10-23,51575,3579,"[\""Wireless Mouse\""]",2417.28,{},9817,0,"""Africa""" +2024-03-29,51576,4624,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3839.74,"{\""promo\"": \""17%\""}",264932,0,"""Asia""" +2023-07-01,51577,2265,"[\""Headphones\"", \""Keyboard\""]",776.66,{},60370,1,"""South America""" +2024-04-26,51578,1939,"[\""Monitor\""]",1149.14,{},47886,0,"""North America""" +2024-10-24,51579,9819,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2499.52,{},98380,0,"""North America""" +2023-04-06,51580,2850,"[\""Phone\""]",3971.17,"{\""loyalty\"": \""21%\""}",70730,1,"""Europe""" +2024-11-04,51581,7917,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3380.88,"{\""loyalty\"": \""5%\""}",214530,1,"""North America""" +2024-09-27,51582,7135,"[\""Charger\""]",493.65,{},76216,1,"""Europe""" +2024-05-06,51583,2796,"[\""Monitor\""]",2707.64,"{\""promo\"": \""24%\""}",276662,1,"""Asia""" +2023-03-03,51584,8371,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2824.37,"{\"": \""11%\""}",122791,0,"""Africa""" +2024-07-26,51585,428,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3148.73,"{\""loyalty\"": \""9%\""}",124318,0,"""Europe""" +2024-11-15,51586,725,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4707.49,"{\"": \""9%\""}",101438,0,"""Asia""" +2024-12-04,51587,3538,"[\""Charger\"", \""Headphones\""]",4979.03,{},193516,0,"""North America""" +2024-03-20,51588,2538,"[\""Headphones\"", \""Tablet\""]",4261.16,"{\"": \""13%\""}",32424,1,"""Asia""" +2023-06-25,51589,6903,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2466.55,"{\""seasonal\"": \""14%\""}",198198,0,"""North America""" +2024-04-11,51590,6461,"[\""Phone\"", \""Laptop\""]",4274.72,"{\"": \""30%\""}",96952,0,"""North America""" +2023-04-01,51591,8171,"[\""Keyboard\""]",303.68,"{\""promo\"": \""10%\""}",111356,0,"""Asia""" +2023-05-19,51592,6318,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4989.45,"{\""loyalty\"": \""6%\""}",41390,1,"""South America""" +2024-11-07,51593,9508,"[\""Laptop\"", \""Phone\""]",1850.05,{},276461,1,"""Africa""" +2024-02-10,51594,3996,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1481.57,{},58788,0,"""Asia""" +2023-07-24,51595,6102,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4840.31,"{\""promo\"": \""23%\""}",125997,1,"""Europe""" +2024-07-09,51596,9956,"[\""Monitor\"", \""Tablet\""]",426.71,"{\""promo\"": \""21%\""}",199930,0,"""South America""" +2023-03-02,51597,9394,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2660.34,{},45747,0,"""Europe""" +2023-09-18,51598,5175,"[\""Keyboard\"", \""Phone\""]",4330.92,{},121464,1,"""South America""" +2023-07-20,51599,9958,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1998.89,{},72428,0,"""Africa""" +2023-06-14,51600,9181,"[\""Monitor\"", \""Phone\""]",3546.65,{},170013,0,"""Africa""" +2024-06-28,51601,7894,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4032.47,{},141441,0,"""Europe""" +2023-01-15,51602,4785,"[\""Tablet\""]",3673.26,{},235620,0,"""South America""" +2024-12-15,51603,4739,"[\""Wireless Mouse\"", \""Headphones\""]",3738.35,"{\""promo\"": \""26%\""}",237842,1,"""Europe""" +2023-08-26,51604,596,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1856.48,{},217298,0,"""North America""" +2023-05-17,51605,4631,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",715.49,{},66910,0,"""Asia""" +2023-11-03,51606,9374,"[\""Laptop\"", \""Phone\""]",4338.41,{},123832,0,"""Europe""" +2024-06-16,51607,9537,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",487.97,{},118578,1,"""North America""" +2023-02-06,51608,3566,"[\""Monitor\"", \""Tablet\""]",2213.54,{},200005,0,"""Europe""" +2023-06-10,51609,6756,"[\""Wireless Mouse\"", \""Phone\""]",2751.15,{},53524,0,"""Africa""" +2023-07-11,51610,1324,"[\""Charger\""]",1281.22,{},242065,1,"""North America""" +2024-05-06,51611,1929,"[\""Headphones\""]",3134.83,{},186196,0,"""Asia""" +2024-08-12,51612,8546,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4145.12,"{\""loyalty\"": \""9%\""}",151205,0,"""South America""" +2024-05-21,51613,2052,"[\""Tablet\""]",3125.24,"{\"": \""21%\""}",237892,1,"""North America""" +2024-02-13,51614,3567,"[\""Keyboard\"", \""Laptop\""]",4885.66,"{\""promo\"": \""12%\""}",56026,1,"""Asia""" +2023-08-18,51615,2646,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2377.3,{},77211,1,"""Europe""" +2024-06-10,51616,5999,"[\""Monitor\"", \""Headphones\""]",1074.74,"{\"": \""29%\""}",151994,1,"""Asia""" +2024-08-01,51617,6925,"[\""Charger\"", \""Phone\""]",2040.56,{},283672,0,"""Asia""" +2023-03-14,51618,462,"[\""Tablet\"", \""Keyboard\""]",766.41,{},155405,1,"""South America""" +2024-05-23,51619,2265,"[\""Charger\""]",4640.58,"{\""loyalty\"": \""20%\""}",179182,0,"""Asia""" +2024-11-11,51620,5676,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4184.87,{},254960,0,"""South America""" +2023-12-06,51621,6440,"[\""Charger\"", \""Monitor\""]",2593.13,"{\""promo\"": \""23%\""}",101996,1,"""South America""" +2024-10-31,51622,4294,"[\""Tablet\""]",3611.57,"{\""promo\"": \""10%\""}",41787,0,"""North America""" +2024-07-19,51623,6577,"[\""Laptop\""]",1889.85,{},120287,0,"""Asia""" +2024-10-18,51624,4269,"[\""Monitor\""]",4171.69,"{\""promo\"": \""18%\""}",128760,1,"""Europe""" +2023-12-26,51625,7059,"[\""Wireless Mouse\""]",1023.75,"{\""loyalty\"": \""22%\""}",7473,1,"""North America""" +2023-10-08,51626,7148,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3599.84,{},51883,1,"""North America""" +2024-08-17,51627,7694,"[\""Charger\"", \""Tablet\"", \""Phone\""]",277.23,"{\"": \""16%\""}",223546,1,"""Asia""" +2024-03-02,51628,7331,"[\""Headphones\"", \""Tablet\""]",4314.79,{},18574,0,"""North America""" +2024-06-21,51629,1093,"[\""Headphones\"", \""Wireless Mouse\""]",4423.94,{},89042,0,"""Asia""" +2024-12-26,51630,658,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1959.89,{},159577,1,"""Asia""" +2023-12-26,51631,5761,"[\""Headphones\""]",2611.39,"{\""promo\"": \""15%\""}",73762,1,"""Europe""" +2023-06-19,51632,3398,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2896.19,"{\""loyalty\"": \""5%\""}",21509,0,"""South America""" +2023-08-28,51633,4426,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3349.65,"{\""seasonal\"": \""6%\""}",192635,1,"""Africa""" +2024-06-26,51634,3110,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2170.16,"{\""promo\"": \""30%\""}",58783,0,"""North America""" +2024-07-02,51635,5489,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4556.74,{},141303,1,"""Asia""" +2023-05-20,51636,4981,"[\""Monitor\"", \""Laptop\""]",1749.92,{},155041,0,"""South America""" +2024-06-04,51637,3724,"[\""Monitor\""]",2214.34,{},215276,0,"""North America""" +2024-09-22,51638,1813,"[\""Tablet\"", \""Laptop\""]",502.58,"{\""loyalty\"": \""24%\""}",56137,1,"""Asia""" +2023-10-25,51639,3022,"[\""Phone\""]",4919.33,{},173929,1,"""Asia""" +2023-01-18,51640,9028,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1011.39,{},93133,0,"""Europe""" +2024-08-05,51641,3771,"[\""Laptop\"", \""Charger\""]",4153.38,{},293432,1,"""North America""" +2024-10-20,51642,752,"[\""Wireless Mouse\"", \""Tablet\""]",4822.24,"{\""promo\"": \""29%\""}",44802,1,"""South America""" +2023-11-21,51643,3128,"[\""Phone\"", \""Charger\""]",455.19,"{\""loyalty\"": \""14%\""}",98124,0,"""Asia""" +2024-09-11,51644,7194,"[\""Charger\"", \""Wireless Mouse\""]",4898.47,"{\""loyalty\"": \""6%\""}",105143,0,"""Asia""" +2023-06-25,51645,3576,"[\""Wireless Mouse\"", \""Charger\""]",783.06,"{\""loyalty\"": \""8%\""}",222717,0,"""Africa""" +2024-02-28,51646,1864,"[\""Tablet\""]",4437.83,{},59703,0,"""South America""" +2023-05-16,51647,4504,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3520.45,{},232296,1,"""Africa""" +2023-01-20,51648,3162,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",358.07,"{\""loyalty\"": \""17%\""}",93650,0,"""North America""" +2024-12-26,51649,6185,"[\""Laptop\""]",4292.97,"{\""loyalty\"": \""12%\""}",13575,0,"""South America""" +2023-05-10,51650,9254,"[\""Monitor\"", \""Charger\""]",3779.84,"{\""seasonal\"": \""12%\""}",285707,0,"""Europe""" +2024-06-16,51651,7800,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1503.24,{},200968,0,"""South America""" +2023-09-20,51652,9,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1073.78,{},122949,0,"""Africa""" +2023-10-23,51653,2234,"[\""Monitor\""]",2052.98,"{\""loyalty\"": \""14%\""}",72760,1,"""South America""" +2024-10-21,51654,3474,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2360.98,"{\""loyalty\"": \""20%\""}",20265,1,"""North America""" +2023-03-20,51655,3241,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",489.35,"{\"": \""19%\""}",286648,0,"""Africa""" +2024-08-12,51656,6405,"[\""Phone\""]",248.4,{},154269,1,"""Asia""" +2024-03-13,51657,2915,"[\""Monitor\"", \""Tablet\""]",3490.96,{},169231,1,"""South America""" +2024-02-27,51658,8683,"[\""Monitor\""]",3865.9,{},119918,1,"""Africa""" +2024-04-04,51659,4567,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3106.7,{},258841,1,"""Asia""" +2024-06-06,51660,1318,"[\""Wireless Mouse\"", \""Monitor\""]",2427.01,"{\"": \""10%\""}",281122,0,"""Africa""" +2024-06-14,51661,7429,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3209.13,{},181048,1,"""Africa""" +2023-01-29,51662,9442,"[\""Phone\"", \""Charger\""]",1067.14,{},78563,1,"""Asia""" +2024-09-21,51663,8921,"[\""Phone\""]",2333.56,"{\""loyalty\"": \""20%\""}",122816,0,"""Europe""" +2024-02-02,51664,5817,"[\""Laptop\"", \""Monitor\""]",4953.48,"{\""loyalty\"": \""8%\""}",53205,0,"""Asia""" +2024-02-18,51665,776,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2807.79,"{\""loyalty\"": \""25%\""}",40665,0,"""North America""" +2023-10-17,51666,491,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4968.9,{},202490,1,"""Asia""" +2024-07-23,51667,1794,"[\""Keyboard\""]",3411.42,{},288207,0,"""Africa""" +2023-06-05,51668,7501,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2861.81,"{\""seasonal\"": \""12%\""}",101674,1,"""North America""" +2023-01-10,51669,5125,"[\""Keyboard\""]",3329.5,{},253016,0,"""Asia""" +2024-07-30,51670,4781,"[\""Charger\""]",522.2,"{\""promo\"": \""30%\""}",179981,0,"""Asia""" +2024-01-29,51671,2230,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2939.68,"{\""loyalty\"": \""21%\""}",294927,1,"""Asia""" +2024-12-13,51672,9063,"[\""Monitor\"", \""Headphones\""]",2749.08,{},149271,0,"""South America""" +2024-08-13,51673,5963,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3332.1,{},141115,0,"""South America""" +2024-01-15,51674,7477,"[\""Laptop\"", \""Phone\""]",2452.14,{},54694,0,"""North America""" +2024-09-14,51675,2621,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4382.93,{},24363,0,"""Asia""" +2023-03-17,51676,9966,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2547.71,"{\""loyalty\"": \""6%\""}",140043,1,"""Africa""" +2023-06-26,51677,1732,"[\""Laptop\"", \""Keyboard\""]",4783.4,{},185684,0,"""South America""" +2024-01-16,51678,391,"[\""Monitor\"", \""Laptop\""]",3877.43,"{\""promo\"": \""15%\""}",91148,0,"""South America""" +2024-05-11,51679,6179,"[\""Monitor\"", \""Wireless Mouse\""]",4702.89,"{\"": \""24%\""}",30407,0,"""Asia""" +2024-12-10,51680,1447,"[\""Tablet\""]",4823.73,{},244264,0,"""Asia""" +2024-12-31,51681,7018,"[\""Charger\""]",3558.93,{},56110,1,"""Europe""" +2023-06-28,51682,2644,"[\""Headphones\"", \""Laptop\""]",4249.03,{},34191,0,"""South America""" +2024-05-19,51683,9272,"[\""Keyboard\"", \""Headphones\""]",2312.74,{},20582,1,"""Asia""" +2023-04-09,51684,921,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3073.59,{},295450,0,"""Africa""" +2024-09-28,51685,9748,"[\""Keyboard\""]",510.43,{},229028,0,"""Europe""" +2024-07-17,51686,3188,"[\""Headphones\""]",3445.57,"{\""loyalty\"": \""18%\""}",35290,0,"""Europe""" +2023-08-17,51687,65,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",896.97,"{\""promo\"": \""24%\""}",274299,1,"""Europe""" +2024-08-30,51688,9999,"[\""Tablet\"", \""Phone\""]",230.87,{},122781,1,"""Asia""" +2023-02-24,51689,5596,"[\""Headphones\""]",993.56,{},107170,0,"""Asia""" +2024-11-28,51690,7156,"[\""Headphones\"", \""Wireless Mouse\""]",2298.2,"{\""loyalty\"": \""8%\""}",132861,0,"""Asia""" +2024-12-15,51691,4951,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",242.55,{},191899,1,"""Africa""" +2023-11-12,51692,1164,"[\""Keyboard\""]",4167.76,{},57385,1,"""Africa""" +2024-01-16,51693,2649,"[\""Keyboard\""]",2086.98,"{\""loyalty\"": \""25%\""}",162149,0,"""Europe""" +2023-11-26,51694,2060,"[\""Monitor\"", \""Headphones\""]",2096.2,{},195905,0,"""North America""" +2023-12-19,51695,156,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3215.09,{},111167,1,"""Africa""" +2024-09-03,51696,5652,"[\""Phone\""]",1273.4,{},46009,0,"""South America""" +2023-05-03,51697,6972,"[\""Monitor\""]",2869.98,"{\"": \""25%\""}",36651,1,"""Asia""" +2024-05-24,51698,6554,"[\""Headphones\""]",3540.51,"{\"": \""26%\""}",4274,0,"""Europe""" +2023-11-03,51699,6104,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3986.42,"{\""promo\"": \""6%\""}",118669,0,"""South America""" +2024-04-06,51700,9775,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",819.71,{},57047,0,"""South America""" +2024-08-02,51701,1067,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1363.71,"{\"": \""19%\""}",181516,1,"""South America""" +2024-08-25,51702,1941,"[\""Wireless Mouse\""]",3565.28,"{\""promo\"": \""18%\""}",297631,1,"""Africa""" +2024-07-15,51703,5017,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2769.33,{},16491,0,"""South America""" +2024-11-26,51704,8828,"[\""Laptop\"", \""Headphones\""]",3146.34,"{\""promo\"": \""30%\""}",154585,0,"""Africa""" +2023-08-19,51705,1874,"[\""Tablet\"", \""Laptop\""]",1262.88,{},217642,1,"""Asia""" +2024-12-04,51706,9300,"[\""Laptop\"", \""Phone\""]",2114.96,"{\"": \""21%\""}",178703,1,"""Africa""" +2024-04-02,51707,3824,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",118.37,{},96615,0,"""North America""" +2024-07-17,51708,4950,"[\""Charger\"", \""Monitor\""]",4551.35,{},81118,0,"""North America""" +2024-11-02,51709,6859,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3306.71,"{\""promo\"": \""29%\""}",124631,1,"""South America""" +2024-11-30,51710,2683,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4235.16,"{\""seasonal\"": \""23%\""}",15859,0,"""Asia""" +2023-05-31,51711,5116,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4638.12,{},296344,1,"""North America""" +2024-08-31,51712,8425,"[\""Laptop\""]",1935.74,{},257509,0,"""South America""" +2024-09-04,51713,576,"[\""Phone\""]",4897.88,"{\""promo\"": \""24%\""}",39600,1,"""Europe""" +2023-10-30,51714,6277,"[\""Laptop\""]",4087.1,{},26223,0,"""Europe""" +2023-11-26,51715,7828,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2840.82,"{\"": \""10%\""}",120912,1,"""Africa""" +2023-06-04,51716,1780,"[\""Monitor\"", \""Keyboard\""]",181.77,"{\""loyalty\"": \""30%\""}",22443,1,"""Africa""" +2023-04-17,51717,2990,"[\""Wireless Mouse\"", \""Charger\""]",1906.98,{},284921,0,"""South America""" +2023-02-17,51718,9562,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",194.44,"{\""promo\"": \""18%\""}",167419,0,"""Europe""" +2023-02-03,51719,8653,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",105.73,{},142929,1,"""Europe""" +2024-10-29,51720,4040,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4733.71,{},45385,0,"""Asia""" +2023-03-29,51721,4799,"[\""Laptop\""]",4927.43,"{\""loyalty\"": \""26%\""}",118980,0,"""Asia""" +2024-12-25,51722,4270,"[\""Tablet\"", \""Phone\""]",2305.39,"{\"": \""9%\""}",64614,0,"""Africa""" +2023-12-13,51723,8235,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3043.5,{},173657,1,"""North America""" +2023-06-01,51724,2600,"[\""Tablet\""]",3619.28,{},5929,0,"""Europe""" +2024-03-13,51725,4189,"[\""Phone\""]",269.14,"{\"": \""26%\""}",83372,0,"""South America""" +2023-11-03,51726,6336,"[\""Keyboard\""]",4564.01,"{\""loyalty\"": \""24%\""}",156002,0,"""Asia""" +2024-01-05,51727,2507,"[\""Monitor\""]",2924.53,"{\""loyalty\"": \""19%\""}",146733,1,"""Africa""" +2023-05-21,51728,8957,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1238.4,{},85875,1,"""Asia""" +2023-11-05,51729,7086,"[\""Wireless Mouse\""]",4680.79,"{\""loyalty\"": \""22%\""}",204330,0,"""North America""" +2023-05-02,51730,8352,"[\""Phone\""]",2936.3,"{\""promo\"": \""18%\""}",67635,0,"""Africa""" +2024-05-11,51731,8403,"[\""Headphones\""]",2359.04,"{\""promo\"": \""7%\""}",284204,0,"""Africa""" +2023-05-07,51732,7059,"[\""Laptop\""]",3971.95,"{\""loyalty\"": \""29%\""}",168593,0,"""North America""" +2024-06-01,51733,2243,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4950.17,{},272142,1,"""South America""" +2024-05-18,51734,5652,"[\""Wireless Mouse\"", \""Keyboard\""]",346.38,"{\""promo\"": \""6%\""}",202136,0,"""Asia""" +2024-09-20,51735,7101,"[\""Tablet\""]",4166.29,"{\""loyalty\"": \""27%\""}",14686,0,"""Africa""" +2023-03-29,51736,9604,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3012.06,"{\""seasonal\"": \""27%\""}",140006,1,"""Africa""" +2023-04-16,51737,2326,"[\""Laptop\""]",4219.38,"{\"": \""18%\""}",279297,0,"""Asia""" +2024-04-13,51738,4919,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4947.92,{},173239,1,"""Asia""" +2023-03-25,51739,2322,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2006.49,{},25464,1,"""South America""" +2024-05-07,51740,6123,"[\""Keyboard\"", \""Tablet\""]",2012.43,{},60115,1,"""North America""" +2023-05-31,51741,8092,"[\""Tablet\"", \""Wireless Mouse\""]",821.94,{},225753,0,"""South America""" +2023-08-25,51742,3601,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3410.87,{},18657,1,"""North America""" +2024-10-26,51743,9311,"[\""Keyboard\"", \""Headphones\""]",4667.3,"{\""promo\"": \""26%\""}",62888,1,"""North America""" +2024-12-27,51744,6046,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1736.62,{},221645,0,"""North America""" +2023-04-26,51745,284,"[\""Tablet\""]",2956.33,{},259323,1,"""Europe""" +2024-03-16,51746,8887,"[\""Keyboard\""]",1293.98,"{\""seasonal\"": \""29%\""}",81953,1,"""Asia""" +2024-01-28,51747,3759,"[\""Headphones\"", \""Monitor\""]",4676.42,"{\""loyalty\"": \""17%\""}",62304,1,"""Asia""" +2024-02-20,51748,5113,"[\""Wireless Mouse\"", \""Charger\""]",1551.5,"{\""loyalty\"": \""22%\""}",85729,1,"""North America""" +2024-08-22,51749,1464,"[\""Phone\"", \""Charger\""]",1005.82,{},242947,1,"""South America""" +2023-06-08,51750,2983,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4426.12,{},56350,0,"""Asia""" +2024-04-25,51751,7746,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4131.03,{},266244,0,"""North America""" +2023-10-13,51752,605,"[\""Wireless Mouse\""]",2879.8,{},207877,1,"""South America""" +2024-06-27,51753,7655,"[\""Laptop\""]",1483.37,{},135377,1,"""South America""" +2023-07-18,51754,1809,"[\""Laptop\"", \""Charger\""]",3230.33,"{\""seasonal\"": \""23%\""}",243995,0,"""North America""" +2023-11-26,51755,5599,"[\""Keyboard\""]",1310.7,{},171945,1,"""South America""" +2024-10-09,51756,7690,"[\""Monitor\""]",1697.7,"{\"": \""30%\""}",204835,1,"""Asia""" +2024-04-23,51757,6794,"[\""Headphones\""]",775.17,"{\""seasonal\"": \""17%\""}",260012,1,"""Asia""" +2023-02-06,51758,9700,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2200.85,{},207418,0,"""Africa""" +2023-11-12,51759,5867,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3490.46,"{\""loyalty\"": \""13%\""}",79399,1,"""Europe""" +2024-03-11,51760,8118,"[\""Phone\"", \""Monitor\""]",4874.3,{},167255,1,"""South America""" +2024-01-26,51761,2529,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1711.34,"{\""loyalty\"": \""5%\""}",199253,0,"""North America""" +2024-11-18,51762,708,"[\""Laptop\""]",1738.69,"{\"": \""26%\""}",234083,0,"""Europe""" +2023-03-18,51763,1008,"[\""Headphones\""]",3697.65,"{\""promo\"": \""21%\""}",262734,1,"""Asia""" +2024-05-22,51764,99,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1196.39,"{\"": \""12%\""}",6212,0,"""South America""" +2024-12-25,51765,8161,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3183.54,{},129812,0,"""Europe""" +2023-08-25,51766,1390,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",796.41,"{\"": \""19%\""}",185807,0,"""South America""" +2023-12-16,51767,4217,"[\""Laptop\"", \""Phone\""]",1604.2,"{\""promo\"": \""13%\""}",283350,1,"""Europe""" +2023-12-10,51768,4778,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2755.49,"{\"": \""13%\""}",73810,0,"""North America""" +2023-11-21,51769,9966,"[\""Headphones\"", \""Wireless Mouse\""]",3654.66,"{\""promo\"": \""24%\""}",198214,1,"""South America""" +2024-12-03,51770,540,"[\""Headphones\""]",4196.62,{},87417,0,"""North America""" +2024-05-07,51771,1714,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4728.15,{},58866,1,"""Asia""" +2023-08-20,51772,4766,"[\""Tablet\"", \""Monitor\""]",1678.0,{},122997,1,"""South America""" +2023-12-13,51773,7130,"[\""Phone\""]",4387.41,"{\"": \""20%\""}",275845,0,"""Europe""" +2024-02-11,51774,7025,"[\""Wireless Mouse\""]",2754.98,"{\"": \""11%\""}",242734,0,"""Asia""" +2023-02-09,51775,535,"[\""Keyboard\"", \""Monitor\""]",4859.8,{},261603,1,"""Africa""" +2024-12-30,51776,664,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",609.78,{},90281,1,"""Europe""" +2024-05-16,51777,3826,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4114.66,"{\""promo\"": \""11%\""}",6446,0,"""Africa""" +2024-07-12,51778,2520,"[\""Wireless Mouse\""]",696.83,{},23602,0,"""Europe""" +2023-05-22,51779,1436,"[\""Phone\""]",3281.28,"{\""loyalty\"": \""23%\""}",18695,1,"""North America""" +2023-11-03,51780,8735,"[\""Wireless Mouse\""]",2770.91,{},133210,0,"""Africa""" +2023-08-10,51781,1382,"[\""Phone\"", \""Laptop\""]",1872.66,"{\"": \""11%\""}",196833,1,"""Asia""" +2024-05-04,51782,7298,"[\""Charger\"", \""Monitor\""]",2064.92,"{\"": \""17%\""}",185176,0,"""North America""" +2024-11-26,51783,277,"[\""Keyboard\""]",1656.49,"{\""loyalty\"": \""7%\""}",204716,0,"""Europe""" +2023-01-19,51784,9173,"[\""Keyboard\""]",1035.19,"{\""seasonal\"": \""15%\""}",244489,1,"""North America""" +2023-09-28,51785,1748,"[\""Charger\"", \""Wireless Mouse\""]",4661.11,{},287698,0,"""Europe""" +2023-11-04,51786,133,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3491.4,"{\"": \""24%\""}",76715,0,"""Asia""" +2023-03-20,51787,5621,"[\""Phone\"", \""Keyboard\""]",2122.04,"{\"": \""27%\""}",150290,1,"""South America""" +2024-10-26,51788,6043,"[\""Charger\"", \""Keyboard\""]",1789.3,"{\""seasonal\"": \""30%\""}",295009,0,"""Asia""" +2024-10-07,51789,9654,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2901.39,{},218903,1,"""Europe""" +2024-03-28,51790,3975,"[\""Tablet\"", \""Charger\""]",4809.03,{},104498,0,"""South America""" +2023-11-22,51791,8942,"[\""Wireless Mouse\""]",4415.91,{},177916,0,"""South America""" +2023-06-07,51792,5040,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1725.47,"{\""promo\"": \""13%\""}",143530,0,"""Europe""" +2023-11-23,51793,6433,"[\""Keyboard\""]",2153.29,"{\""promo\"": \""29%\""}",269216,1,"""South America""" +2023-04-30,51794,4227,"[\""Phone\"", \""Monitor\""]",1736.3,"{\""promo\"": \""16%\""}",259120,0,"""Africa""" +2023-04-26,51795,4832,"[\""Monitor\""]",2918.78,"{\""loyalty\"": \""17%\""}",112661,0,"""Europe""" +2024-01-21,51796,6596,"[\""Laptop\"", \""Phone\""]",4924.12,{},163465,1,"""Asia""" +2023-05-11,51797,8235,"[\""Headphones\"", \""Charger\""]",3659.94,{},222002,0,"""South America""" +2024-11-07,51798,3733,"[\""Laptop\""]",2144.04,"{\""seasonal\"": \""27%\""}",183363,0,"""North America""" +2023-05-08,51799,1128,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1555.38,"{\""loyalty\"": \""6%\""}",161704,0,"""Africa""" +2024-06-25,51800,9044,"[\""Wireless Mouse\"", \""Keyboard\""]",4346.02,{},106865,1,"""North America""" +2023-02-18,51801,13,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3186.54,"{\""seasonal\"": \""6%\""}",170924,1,"""Asia""" +2023-02-08,51802,2735,"[\""Tablet\"", \""Laptop\""]",1625.17,{},121504,1,"""South America""" +2023-03-12,51803,2696,"[\""Keyboard\"", \""Phone\""]",1291.65,"{\"": \""22%\""}",169631,1,"""Asia""" +2024-03-26,51804,648,"[\""Phone\""]",3263.18,{},107822,0,"""Europe""" +2024-06-14,51805,9986,"[\""Headphones\"", \""Wireless Mouse\""]",1447.15,"{\""seasonal\"": \""29%\""}",11318,0,"""Europe""" +2023-07-29,51806,1426,"[\""Monitor\"", \""Tablet\""]",2488.29,"{\""seasonal\"": \""8%\""}",139590,0,"""North America""" +2024-12-08,51807,9756,"[\""Phone\""]",4437.01,"{\"": \""17%\""}",277779,1,"""South America""" +2023-10-21,51808,2207,"[\""Phone\""]",4309.88,"{\""loyalty\"": \""14%\""}",96765,1,"""North America""" +2023-01-05,51809,6364,"[\""Charger\"", \""Headphones\""]",3026.49,{},41829,0,"""Europe""" +2024-05-16,51810,5314,"[\""Laptop\""]",2483.67,"{\""promo\"": \""11%\""}",33309,1,"""Asia""" +2023-01-13,51811,8638,"[\""Wireless Mouse\"", \""Laptop\""]",2644.14,{},260934,0,"""North America""" +2023-12-04,51812,7212,"[\""Phone\"", \""Monitor\""]",3503.73,"{\"": \""7%\""}",170215,0,"""Asia""" +2023-04-23,51813,7880,"[\""Keyboard\"", \""Headphones\""]",1619.2,"{\""seasonal\"": \""22%\""}",290227,1,"""Europe""" +2024-01-01,51814,1811,"[\""Headphones\"", \""Wireless Mouse\""]",4446.02,{},152650,1,"""South America""" +2023-06-07,51815,290,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1921.11,"{\"": \""11%\""}",286689,0,"""Asia""" +2023-03-16,51816,3143,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",459.46,{},264253,1,"""North America""" +2023-01-18,51817,2087,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",912.18,"{\""promo\"": \""10%\""}",213411,0,"""Africa""" +2024-03-21,51818,7588,"[\""Laptop\""]",4372.83,{},287750,0,"""North America""" +2023-02-27,51819,4010,"[\""Laptop\""]",4337.43,{},100850,0,"""Asia""" +2024-03-06,51820,4048,"[\""Tablet\"", \""Keyboard\""]",2997.18,{},267983,0,"""South America""" +2023-10-20,51821,405,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3444.21,"{\""seasonal\"": \""30%\""}",55730,1,"""North America""" +2023-03-19,51822,692,"[\""Laptop\""]",1069.39,"{\""seasonal\"": \""19%\""}",50533,0,"""Africa""" +2023-05-20,51823,9540,"[\""Monitor\""]",3096.5,"{\"": \""30%\""}",171247,0,"""Europe""" +2023-10-24,51824,8290,"[\""Laptop\""]",434.83,{},99075,0,"""Africa""" +2023-09-24,51825,6960,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",294.48,"{\"": \""25%\""}",193599,0,"""Africa""" +2024-08-16,51826,272,"[\""Monitor\""]",4856.61,{},8223,1,"""Asia""" +2024-07-09,51827,3334,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",279.49,"{\""promo\"": \""27%\""}",197894,0,"""South America""" +2023-03-10,51828,240,"[\""Laptop\""]",669.77,{},15594,0,"""Asia""" +2024-09-11,51829,6554,"[\""Headphones\""]",84.29,{},150998,0,"""Asia""" +2024-04-24,51830,565,"[\""Monitor\""]",2701.01,{},219884,0,"""Europe""" +2024-09-02,51831,9526,"[\""Keyboard\""]",3705.15,"{\""promo\"": \""7%\""}",50009,0,"""Africa""" +2024-09-22,51832,1617,"[\""Headphones\""]",3148.65,"{\"": \""24%\""}",191683,1,"""Africa""" +2024-05-23,51833,1356,"[\""Wireless Mouse\""]",1250.05,"{\""loyalty\"": \""28%\""}",156126,0,"""North America""" +2023-06-25,51834,3907,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",332.23,"{\""promo\"": \""5%\""}",120197,1,"""South America""" +2023-12-18,51835,6892,"[\""Charger\""]",1357.08,"{\""loyalty\"": \""20%\""}",29870,1,"""North America""" +2024-07-31,51836,6998,"[\""Headphones\""]",263.37,"{\""seasonal\"": \""21%\""}",266403,0,"""North America""" +2024-07-13,51837,7232,"[\""Laptop\"", \""Keyboard\""]",2331.79,"{\""seasonal\"": \""7%\""}",54188,0,"""South America""" +2023-03-20,51838,48,"[\""Keyboard\""]",3253.9,{},48351,1,"""South America""" +2023-04-05,51839,7730,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",748.96,"{\"": \""5%\""}",119610,0,"""Asia""" +2023-02-16,51840,2645,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3688.83,"{\""loyalty\"": \""17%\""}",193643,1,"""Europe""" +2023-05-15,51841,7739,"[\""Charger\"", \""Tablet\""]",4421.33,{},181806,0,"""Asia""" +2023-06-21,51842,1118,"[\""Keyboard\"", \""Wireless Mouse\""]",2614.24,{},200160,1,"""Africa""" +2023-09-02,51843,2021,"[\""Headphones\""]",4867.87,"{\""loyalty\"": \""6%\""}",9526,1,"""Africa""" +2024-07-20,51844,7435,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1036.19,"{\""promo\"": \""18%\""}",87607,1,"""Asia""" +2023-04-23,51845,9126,"[\""Wireless Mouse\""]",1434.86,"{\""loyalty\"": \""17%\""}",4766,1,"""Africa""" +2023-08-20,51846,168,"[\""Monitor\"", \""Keyboard\""]",1991.08,{},9215,0,"""North America""" +2023-08-22,51847,996,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1542.6,{},279100,0,"""Africa""" +2024-08-25,51848,9337,"[\""Laptop\""]",2447.74,{},209569,1,"""North America""" +2023-08-17,51849,7554,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",364.41,{},189097,0,"""Africa""" +2024-05-25,51850,5024,"[\""Phone\"", \""Tablet\""]",3335.12,"{\"": \""21%\""}",235470,0,"""Africa""" +2023-05-16,51851,677,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3750.18,"{\""loyalty\"": \""28%\""}",83972,1,"""Africa""" +2023-08-05,51852,8248,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4874.03,{},208676,0,"""South America""" +2023-06-08,51853,6426,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1126.57,"{\"": \""30%\""}",283793,1,"""North America""" +2023-08-31,51854,9865,"[\""Laptop\"", \""Wireless Mouse\""]",4119.14,"{\""promo\"": \""5%\""}",36885,0,"""Europe""" +2023-04-18,51855,5598,"[\""Wireless Mouse\""]",3334.14,"{\""seasonal\"": \""26%\""}",121082,1,"""Europe""" +2023-05-23,51856,8018,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4964.21,"{\""loyalty\"": \""15%\""}",105385,1,"""North America""" +2024-05-08,51857,271,"[\""Tablet\""]",3160.87,"{\""seasonal\"": \""17%\""}",34897,0,"""South America""" +2024-06-17,51858,5759,"[\""Monitor\""]",2899.41,{},245094,1,"""Asia""" +2023-01-23,51859,2210,"[\""Laptop\""]",4521.21,{},299691,0,"""Africa""" +2023-06-02,51860,7418,"[\""Phone\""]",2321.81,"{\""loyalty\"": \""15%\""}",263124,0,"""North America""" +2023-06-10,51861,2369,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2709.71,{},40437,1,"""South America""" +2023-08-12,51862,2042,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1802.67,{},195773,0,"""Europe""" +2023-08-13,51863,8474,"[\""Charger\""]",689.91,{},134390,0,"""Asia""" +2024-02-17,51864,4905,"[\""Phone\"", \""Wireless Mouse\""]",3413.54,{},128574,1,"""South America""" +2023-01-04,51865,1617,"[\""Tablet\""]",293.87,{},4930,1,"""Africa""" +2024-02-11,51866,547,"[\""Monitor\""]",3923.86,{},23508,1,"""North America""" +2024-03-27,51867,9944,"[\""Laptop\"", \""Charger\""]",949.24,{},47014,0,"""South America""" +2023-06-09,51868,4645,"[\""Keyboard\""]",1487.86,{},157772,1,"""Africa""" +2023-07-11,51869,2273,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1219.92,{},21258,1,"""Asia""" +2023-01-29,51870,9783,"[\""Charger\""]",701.67,"{\""loyalty\"": \""28%\""}",99612,1,"""North America""" +2023-11-22,51871,9878,"[\""Keyboard\""]",1156.47,"{\""loyalty\"": \""7%\""}",252065,1,"""North America""" +2024-10-27,51872,8511,"[\""Tablet\"", \""Headphones\""]",4625.52,{},2531,1,"""Europe""" +2023-10-10,51873,7650,"[\""Laptop\""]",1001.3,"{\""promo\"": \""16%\""}",75225,0,"""Europe""" +2024-06-10,51874,2903,"[\""Keyboard\"", \""Monitor\""]",1479.62,"{\""promo\"": \""16%\""}",66381,1,"""Europe""" +2023-01-25,51875,6893,"[\""Monitor\"", \""Keyboard\""]",910.55,"{\""promo\"": \""20%\""}",123968,0,"""South America""" +2023-01-27,51876,9860,"[\""Tablet\"", \""Headphones\""]",904.5,{},281362,0,"""South America""" +2024-06-04,51877,1782,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1131.94,{},33783,0,"""South America""" +2024-07-17,51878,8245,"[\""Phone\"", \""Keyboard\""]",3570.01,{},276505,0,"""South America""" +2024-09-13,51879,8212,"[\""Laptop\"", \""Headphones\""]",1534.87,{},180545,0,"""North America""" +2024-08-06,51880,9302,"[\""Wireless Mouse\""]",4937.7,"{\""seasonal\"": \""23%\""}",23574,1,"""South America""" +2024-12-17,51881,1556,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3828.76,{},249477,1,"""South America""" +2023-08-19,51882,5352,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1334.81,{},220730,1,"""South America""" +2024-04-20,51883,4647,"[\""Charger\"", \""Laptop\""]",3708.07,"{\""loyalty\"": \""20%\""}",90936,1,"""North America""" +2024-08-07,51884,7118,"[\""Charger\"", \""Wireless Mouse\""]",898.64,"{\"": \""11%\""}",170810,0,"""Europe""" +2024-01-09,51885,1355,"[\""Tablet\""]",2492.9,"{\""loyalty\"": \""16%\""}",160323,1,"""North America""" +2023-03-16,51886,3251,"[\""Tablet\""]",4056.68,{},177069,1,"""North America""" +2023-11-13,51887,4075,"[\""Phone\"", \""Charger\""]",405.29,"{\""seasonal\"": \""8%\""}",120779,1,"""Europe""" +2024-10-14,51888,3383,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4848.3,"{\""seasonal\"": \""24%\""}",144766,1,"""North America""" +2024-11-12,51889,3040,"[\""Phone\""]",225.43,"{\""seasonal\"": \""10%\""}",203892,1,"""Africa""" +2023-03-30,51890,2365,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3008.21,"{\""seasonal\"": \""25%\""}",110822,1,"""South America""" +2023-01-14,51891,9568,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3539.25,{},4010,0,"""Asia""" +2024-01-18,51892,1817,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",843.07,"{\""loyalty\"": \""15%\""}",113492,1,"""Europe""" +2024-10-13,51893,28,"[\""Monitor\""]",750.15,{},134575,1,"""South America""" +2024-08-05,51894,8145,"[\""Tablet\""]",3927.34,"{\""seasonal\"": \""6%\""}",159307,1,"""North America""" +2023-03-29,51895,7445,"[\""Headphones\"", \""Keyboard\""]",2107.65,"{\""promo\"": \""8%\""}",113387,1,"""South America""" +2024-12-15,51896,3017,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",610.11,"{\""promo\"": \""6%\""}",48833,1,"""Asia""" +2023-03-14,51897,3409,"[\""Laptop\""]",4814.65,"{\""loyalty\"": \""24%\""}",124605,1,"""Africa""" +2023-12-08,51898,2919,"[\""Wireless Mouse\""]",736.56,"{\""seasonal\"": \""28%\""}",136393,1,"""Europe""" +2024-06-06,51899,5269,"[\""Keyboard\""]",2403.67,{},111772,1,"""North America""" +2024-07-05,51900,3263,"[\""Monitor\"", \""Phone\""]",2299.44,{},23737,0,"""North America""" +2024-11-11,51901,9059,"[\""Charger\""]",125.83,{},24649,1,"""Asia""" +2023-01-19,51902,1207,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3822.16,"{\""seasonal\"": \""25%\""}",135510,0,"""South America""" +2023-05-15,51903,4803,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2961.12,{},277223,0,"""North America""" +2024-12-12,51904,3757,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3794.88,"{\""loyalty\"": \""30%\""}",137812,1,"""South America""" +2023-05-10,51905,269,"[\""Wireless Mouse\"", \""Phone\""]",2962.1,"{\""promo\"": \""26%\""}",79551,1,"""Europe""" +2024-08-29,51906,3909,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3644.87,"{\""seasonal\"": \""27%\""}",90697,0,"""Africa""" +2024-11-15,51907,4547,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4460.73,"{\""seasonal\"": \""23%\""}",78212,1,"""Africa""" +2024-01-11,51908,9865,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1984.66,"{\""promo\"": \""6%\""}",20821,1,"""South America""" +2023-01-01,51909,6395,"[\""Laptop\"", \""Charger\""]",3748.08,{},206521,0,"""North America""" +2023-12-30,51910,2004,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4193.86,{},72275,0,"""Asia""" +2024-06-18,51911,8381,"[\""Monitor\""]",958.53,{},14114,0,"""South America""" +2023-12-11,51912,215,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4251.83,{},40739,1,"""Africa""" +2024-09-01,51913,5427,"[\""Tablet\"", \""Phone\""]",2164.53,"{\""promo\"": \""25%\""}",24436,1,"""South America""" +2024-01-08,51914,68,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1002.5,"{\""promo\"": \""27%\""}",275210,0,"""Africa""" +2023-06-19,51915,302,"[\""Monitor\"", \""Headphones\""]",1189.83,"{\""loyalty\"": \""24%\""}",12182,0,"""South America""" +2024-03-31,51916,2977,"[\""Charger\"", \""Tablet\""]",4607.11,{},234499,0,"""Asia""" +2024-03-12,51917,6166,"[\""Monitor\"", \""Wireless Mouse\""]",3708.32,"{\""loyalty\"": \""10%\""}",289877,0,"""Europe""" +2023-10-17,51918,3965,"[\""Phone\"", \""Tablet\""]",4388.58,"{\""loyalty\"": \""12%\""}",2527,1,"""Asia""" +2024-05-15,51919,8360,"[\""Monitor\""]",1964.97,"{\"": \""17%\""}",243618,1,"""Asia""" +2023-08-16,51920,9140,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1548.99,"{\""loyalty\"": \""21%\""}",96553,1,"""Europe""" +2023-03-16,51921,7011,"[\""Wireless Mouse\""]",1880.46,"{\""promo\"": \""28%\""}",168922,0,"""North America""" +2024-07-27,51922,7102,"[\""Charger\""]",551.64,"{\""seasonal\"": \""15%\""}",8601,1,"""Africa""" +2024-02-07,51923,8908,"[\""Keyboard\"", \""Laptop\""]",1427.76,"{\""loyalty\"": \""18%\""}",86094,1,"""Asia""" +2024-10-14,51924,8163,"[\""Headphones\""]",2006.43,{},276092,0,"""South America""" +2024-08-27,51925,4196,"[\""Phone\""]",1584.52,{},270322,0,"""South America""" +2023-08-25,51926,6466,"[\""Keyboard\""]",247.28,"{\"": \""14%\""}",105196,1,"""Europe""" +2024-01-18,51927,7037,"[\""Wireless Mouse\"", \""Phone\""]",3193.96,"{\"": \""27%\""}",63675,1,"""South America""" +2023-09-11,51928,3692,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4673.97,"{\""loyalty\"": \""19%\""}",55244,1,"""Europe""" +2024-02-01,51929,4097,"[\""Phone\"", \""Charger\""]",2798.57,"{\""loyalty\"": \""30%\""}",281224,0,"""Europe""" +2023-09-02,51930,5953,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",613.86,"{\""promo\"": \""12%\""}",171056,0,"""South America""" +2023-06-26,51931,8778,"[\""Wireless Mouse\"", \""Monitor\""]",115.55,{},13697,1,"""North America""" +2024-01-01,51932,3737,"[\""Tablet\"", \""Laptop\""]",1545.14,{},210838,0,"""North America""" +2023-11-19,51933,1645,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3520.98,"{\""loyalty\"": \""16%\""}",197540,0,"""North America""" +2023-10-23,51934,8412,"[\""Tablet\"", \""Phone\""]",3546.59,{},263190,1,"""Africa""" +2023-09-08,51935,7460,"[\""Phone\""]",2526.88,{},22522,0,"""South America""" +2024-08-10,51936,3537,"[\""Laptop\"", \""Keyboard\""]",2468.84,{},144845,1,"""Europe""" +2024-03-15,51937,2471,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1569.52,"{\""promo\"": \""9%\""}",234233,0,"""North America""" +2023-07-02,51938,8842,"[\""Phone\""]",2810.81,{},56914,1,"""Africa""" +2023-10-02,51939,426,"[\""Keyboard\"", \""Charger\""]",3581.24,"{\"": \""8%\""}",1729,0,"""North America""" +2024-11-26,51940,7350,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1234.15,"{\""promo\"": \""26%\""}",252497,1,"""South America""" +2024-05-22,51941,7277,"[\""Monitor\"", \""Keyboard\""]",1098.28,{},68392,1,"""North America""" +2024-06-28,51942,1650,"[\""Phone\"", \""Monitor\""]",4672.85,{},133309,1,"""Europe""" +2023-03-27,51943,8344,"[\""Headphones\"", \""Monitor\""]",2665.07,{},158383,1,"""North America""" +2023-09-23,51944,1762,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1095.0,"{\""promo\"": \""6%\""}",57222,1,"""Africa""" +2024-04-12,51945,8807,"[\""Keyboard\"", \""Phone\""]",3878.21,{},265929,0,"""North America""" +2023-12-08,51946,2936,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1836.13,"{\""loyalty\"": \""14%\""}",24955,0,"""South America""" +2023-12-02,51947,5736,"[\""Laptop\""]",468.08,{},117784,0,"""North America""" +2023-07-27,51948,5417,"[\""Keyboard\"", \""Monitor\""]",3621.15,"{\""loyalty\"": \""15%\""}",258206,1,"""Africa""" +2023-02-01,51949,1980,"[\""Charger\"", \""Keyboard\""]",2246.89,"{\""loyalty\"": \""11%\""}",247081,0,"""Africa""" +2024-03-04,51950,7314,"[\""Keyboard\""]",2346.27,{},60594,1,"""South America""" +2024-02-08,51951,4758,"[\""Tablet\"", \""Phone\""]",1122.98,{},177788,0,"""North America""" +2024-12-07,51952,7204,"[\""Phone\""]",377.22,{},273624,1,"""North America""" +2023-05-25,51953,7588,"[\""Headphones\""]",1157.54,"{\""seasonal\"": \""13%\""}",50531,0,"""Asia""" +2023-07-16,51954,2536,"[\""Laptop\""]",4751.98,"{\""seasonal\"": \""20%\""}",269205,0,"""Africa""" +2024-02-24,51955,7455,"[\""Phone\"", \""Tablet\""]",1297.16,"{\""promo\"": \""18%\""}",37555,0,"""Europe""" +2024-12-06,51956,4293,"[\""Charger\"", \""Keyboard\""]",2222.33,"{\""seasonal\"": \""24%\""}",16207,1,"""South America""" +2023-01-09,51957,19,"[\""Monitor\""]",614.74,{},242898,0,"""Africa""" +2024-09-18,51958,6323,"[\""Wireless Mouse\""]",799.99,{},3015,0,"""South America""" +2024-05-14,51959,3142,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1570.46,{},122411,0,"""Europe""" +2024-10-16,51960,7774,"[\""Phone\"", \""Headphones\""]",418.66,"{\"": \""16%\""}",162361,1,"""Europe""" +2024-06-24,51961,9584,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1991.74,"{\""loyalty\"": \""13%\""}",241863,1,"""South America""" +2024-01-11,51962,1395,"[\""Headphones\"", \""Wireless Mouse\""]",3202.55,{},30857,1,"""Europe""" +2024-11-27,51963,8245,"[\""Laptop\"", \""Keyboard\""]",1564.26,{},256319,1,"""North America""" +2023-09-24,51964,507,"[\""Wireless Mouse\""]",797.13,{},137029,1,"""Asia""" +2023-06-25,51965,9190,"[\""Phone\""]",2970.44,{},71405,0,"""North America""" +2023-08-28,51966,4525,"[\""Keyboard\""]",2217.27,{},189573,1,"""South America""" +2023-08-03,51967,6830,"[\""Monitor\""]",1746.72,"{\""loyalty\"": \""19%\""}",289270,1,"""North America""" +2024-08-15,51968,2951,"[\""Headphones\""]",1806.47,"{\""loyalty\"": \""30%\""}",100871,0,"""Europe""" +2024-09-03,51969,7056,"[\""Tablet\""]",2617.67,{},24152,1,"""North America""" +2023-02-18,51970,4228,"[\""Charger\"", \""Tablet\""]",703.46,"{\""seasonal\"": \""25%\""}",6315,1,"""Africa""" +2023-05-05,51971,2740,"[\""Wireless Mouse\"", \""Monitor\""]",4222.34,{},151479,0,"""North America""" +2024-07-22,51972,4708,"[\""Phone\""]",259.16,"{\""loyalty\"": \""30%\""}",280385,0,"""Africa""" +2024-07-08,51973,3610,"[\""Laptop\"", \""Tablet\""]",668.45,{},235879,1,"""Africa""" +2024-08-13,51974,6294,"[\""Laptop\""]",644.64,"{\""promo\"": \""29%\""}",67336,1,"""North America""" +2023-10-04,51975,7925,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2583.84,{},193994,0,"""North America""" +2023-11-05,51976,5088,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1222.64,"{\""seasonal\"": \""7%\""}",104609,0,"""Asia""" +2023-05-30,51977,4717,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",102.48,"{\""loyalty\"": \""30%\""}",56811,1,"""Europe""" +2024-04-07,51978,9815,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4446.64,"{\"": \""30%\""}",3906,0,"""South America""" +2023-08-14,51979,2894,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1503.33,"{\""promo\"": \""24%\""}",87915,1,"""Europe""" +2023-02-03,51980,3299,"[\""Keyboard\"", \""Charger\""]",355.37,"{\"": \""24%\""}",109557,1,"""Africa""" +2023-12-27,51981,3739,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2744.45,{},40678,0,"""Africa""" +2023-12-09,51982,6908,"[\""Keyboard\""]",3466.2,"{\""promo\"": \""25%\""}",257060,0,"""Asia""" +2023-11-13,51983,2325,"[\""Laptop\"", \""Tablet\""]",2772.73,"{\""loyalty\"": \""10%\""}",32408,0,"""Asia""" +2023-09-30,51984,6620,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4986.52,"{\"": \""20%\""}",99907,0,"""South America""" +2024-07-23,51985,6403,"[\""Laptop\"", \""Phone\""]",4143.72,"{\""promo\"": \""25%\""}",147744,0,"""Asia""" +2023-01-31,51986,3665,"[\""Tablet\""]",3657.38,{},293111,1,"""South America""" +2024-02-23,51987,3443,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2733.33,"{\""promo\"": \""29%\""}",187664,0,"""North America""" +2023-09-23,51988,9492,"[\""Tablet\"", \""Charger\""]",2524.98,"{\""seasonal\"": \""29%\""}",97933,1,"""Africa""" +2024-12-15,51989,9471,"[\""Headphones\"", \""Phone\""]",3846.26,{},289640,1,"""North America""" +2023-05-28,51990,6227,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4796.18,"{\""seasonal\"": \""22%\""}",250041,0,"""South America""" +2023-07-20,51991,9984,"[\""Monitor\""]",1800.16,{},96126,1,"""North America""" +2024-04-07,51992,1364,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3332.04,"{\""loyalty\"": \""8%\""}",53711,0,"""Asia""" +2024-02-17,51993,4407,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3446.45,"{\""loyalty\"": \""13%\""}",177704,1,"""Europe""" +2023-03-19,51994,4317,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3548.94,"{\""promo\"": \""19%\""}",138872,0,"""Africa""" +2023-06-15,51995,9015,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3038.44,"{\""seasonal\"": \""13%\""}",85983,1,"""Asia""" +2023-03-06,51996,4876,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3649.72,"{\"": \""7%\""}",268134,1,"""Asia""" +2023-04-21,51997,2805,"[\""Wireless Mouse\"", \""Headphones\""]",1092.39,"{\""loyalty\"": \""29%\""}",74967,0,"""Africa""" +2023-07-27,51998,1332,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",134.99,{},142925,0,"""Europe""" +2023-01-02,51999,6021,"[\""Headphones\"", \""Keyboard\""]",2285.05,"{\""promo\"": \""9%\""}",22163,1,"""Europe""" +2024-03-12,52000,9065,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3194.03,{},295499,0,"""Asia""" +2024-12-08,52001,2003,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",809.69,{},249551,0,"""Europe""" +2024-10-22,52002,8057,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2563.84,{},244684,1,"""Africa""" +2024-05-07,52003,139,"[\""Headphones\""]",4779.6,{},205074,1,"""Asia""" +2024-11-09,52004,6510,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2776.61,"{\""loyalty\"": \""20%\""}",193472,0,"""South America""" +2024-11-25,52005,3996,"[\""Charger\"", \""Phone\""]",4524.7,"{\""seasonal\"": \""26%\""}",170625,0,"""Europe""" +2023-07-24,52006,8228,"[\""Charger\""]",3506.38,"{\""seasonal\"": \""29%\""}",147252,0,"""Asia""" +2023-01-07,52007,8309,"[\""Monitor\"", \""Headphones\""]",4254.63,"{\""promo\"": \""20%\""}",295431,1,"""Africa""" +2024-09-09,52008,1963,"[\""Laptop\""]",450.97,"{\"": \""9%\""}",271448,0,"""Asia""" +2024-03-31,52009,9387,"[\""Phone\"", \""Monitor\""]",3603.05,{},124753,0,"""Asia""" +2023-01-10,52010,9362,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1079.63,{},141088,1,"""Asia""" +2023-02-13,52011,711,"[\""Charger\""]",1202.21,{},230205,1,"""North America""" +2023-03-08,52012,7431,"[\""Phone\"", \""Laptop\""]",2913.19,"{\""loyalty\"": \""29%\""}",254929,0,"""North America""" +2024-07-31,52013,4077,"[\""Headphones\"", \""Phone\""]",4235.75,"{\""seasonal\"": \""30%\""}",166147,1,"""Africa""" +2024-12-12,52014,8432,"[\""Phone\"", \""Headphones\"", \""Charger\""]",715.73,{},47563,0,"""Africa""" +2023-04-01,52015,3027,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2494.43,"{\""promo\"": \""28%\""}",258169,1,"""North America""" +2024-02-21,52016,5877,"[\""Laptop\"", \""Keyboard\""]",4648.96,{},134907,1,"""Asia""" +2024-10-23,52017,2054,"[\""Phone\""]",2853.6,{},53165,0,"""Asia""" +2024-02-18,52018,7178,"[\""Charger\"", \""Phone\""]",718.56,"{\""promo\"": \""22%\""}",183079,0,"""North America""" +2024-08-04,52019,1486,"[\""Wireless Mouse\"", \""Keyboard\""]",608.15,{},13902,1,"""Africa""" +2023-08-11,52020,8047,"[\""Wireless Mouse\"", \""Laptop\""]",1857.32,{},14450,1,"""North America""" +2023-06-15,52021,8037,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2722.54,"{\""seasonal\"": \""26%\""}",109694,0,"""North America""" +2024-11-16,52022,155,"[\""Monitor\""]",1204.9,{},224926,1,"""Africa""" +2023-08-26,52023,4206,"[\""Monitor\""]",4036.1,{},255672,0,"""Africa""" +2023-08-29,52024,1632,"[\""Headphones\"", \""Phone\""]",3045.07,{},118007,0,"""Europe""" +2023-09-06,52025,6301,"[\""Monitor\"", \""Charger\""]",2732.96,{},227062,1,"""Europe""" +2024-04-11,52026,4449,"[\""Headphones\""]",126.76,{},292530,1,"""Africa""" +2024-01-02,52027,1167,"[\""Wireless Mouse\""]",4014.3,"{\""promo\"": \""17%\""}",22177,1,"""South America""" +2023-11-05,52028,5252,"[\""Charger\"", \""Phone\""]",4153.14,{},172438,0,"""Europe""" +2023-12-17,52029,7214,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2576.0,{},83124,0,"""Africa""" +2024-07-28,52030,6634,"[\""Tablet\""]",978.38,{},195045,1,"""North America""" +2024-06-12,52031,3406,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3112.46,{},90737,0,"""Asia""" +2024-04-14,52032,2650,"[\""Tablet\"", \""Headphones\""]",4981.4,"{\""promo\"": \""11%\""}",255006,1,"""North America""" +2024-12-10,52033,9140,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",968.05,"{\""promo\"": \""22%\""}",260184,1,"""Africa""" +2024-05-10,52034,4322,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",366.1,{},294554,0,"""South America""" +2023-11-26,52035,4742,"[\""Phone\"", \""Monitor\""]",4167.04,"{\""loyalty\"": \""11%\""}",294983,1,"""Africa""" +2024-07-22,52036,1892,"[\""Tablet\""]",3191.74,{},174048,1,"""Asia""" +2024-09-08,52037,2517,"[\""Charger\"", \""Tablet\""]",2462.54,{},66613,0,"""South America""" +2024-10-14,52038,4611,"[\""Keyboard\""]",538.12,{},217118,1,"""Asia""" +2023-01-23,52039,4128,"[\""Phone\"", \""Charger\""]",4952.87,"{\""loyalty\"": \""23%\""}",81916,1,"""North America""" +2023-12-21,52040,8359,"[\""Wireless Mouse\""]",2340.56,"{\"": \""17%\""}",144896,1,"""Africa""" +2024-04-03,52041,237,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4928.24,{},5933,1,"""Asia""" +2024-02-17,52042,8545,"[\""Tablet\"", \""Wireless Mouse\""]",2083.09,{},285613,1,"""Africa""" +2024-05-11,52043,8226,"[\""Charger\""]",3466.68,"{\""promo\"": \""27%\""}",25939,1,"""Asia""" +2024-02-10,52044,3763,"[\""Charger\""]",4214.68,"{\""seasonal\"": \""22%\""}",73310,0,"""South America""" +2024-02-16,52045,237,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",527.3,"{\""loyalty\"": \""24%\""}",240439,0,"""South America""" +2023-11-19,52046,252,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",645.61,"{\""seasonal\"": \""6%\""}",232466,0,"""Europe""" +2023-01-06,52047,9458,"[\""Phone\"", \""Laptop\""]",4040.4,"{\""loyalty\"": \""16%\""}",252594,1,"""Asia""" +2023-07-04,52048,4613,"[\""Tablet\"", \""Laptop\""]",3563.52,{},212104,1,"""Europe""" +2024-11-07,52049,4713,"[\""Wireless Mouse\"", \""Laptop\""]",1247.62,{},25770,0,"""Africa""" +2023-12-24,52050,2266,"[\""Wireless Mouse\""]",2232.56,"{\""loyalty\"": \""30%\""}",123765,0,"""North America""" +2023-11-27,52051,7997,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1261.18,"{\""promo\"": \""18%\""}",266887,0,"""Europe""" +2023-09-19,52052,1435,"[\""Wireless Mouse\"", \""Headphones\""]",3256.67,"{\""promo\"": \""20%\""}",131371,1,"""Africa""" +2024-12-02,52053,9108,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2864.23,{},142114,0,"""Africa""" +2024-12-16,52054,4632,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",785.07,"{\""loyalty\"": \""29%\""}",10429,0,"""South America""" +2024-08-09,52055,9305,"[\""Wireless Mouse\""]",1617.79,"{\""seasonal\"": \""26%\""}",260026,0,"""Europe""" +2023-06-02,52056,9946,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2332.01,"{\""loyalty\"": \""25%\""}",197603,1,"""Europe""" +2023-03-12,52057,2056,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2271.63,"{\""seasonal\"": \""19%\""}",82673,0,"""Europe""" +2023-03-10,52058,3400,"[\""Wireless Mouse\""]",921.75,"{\"": \""11%\""}",232135,0,"""Europe""" +2023-10-25,52059,2564,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2452.97,{},3880,1,"""Asia""" +2023-05-03,52060,3818,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1674.87,{},32966,0,"""Asia""" +2024-09-08,52061,1283,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1818.98,{},260317,0,"""Asia""" +2024-02-08,52062,5720,"[\""Wireless Mouse\"", \""Charger\""]",3436.89,"{\""seasonal\"": \""26%\""}",219191,0,"""South America""" +2023-03-14,52063,6644,"[\""Wireless Mouse\""]",2174.58,{},149805,0,"""Africa""" +2024-11-18,52064,2986,"[\""Headphones\""]",4853.95,{},247843,0,"""South America""" +2023-07-26,52065,161,"[\""Laptop\"", \""Phone\""]",2290.95,{},41907,1,"""Asia""" +2023-01-30,52066,3115,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",375.39,{},15309,1,"""North America""" +2023-12-21,52067,8429,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3782.17,"{\""promo\"": \""12%\""}",152785,1,"""South America""" +2023-04-05,52068,2036,"[\""Laptop\"", \""Charger\""]",4302.79,"{\""seasonal\"": \""5%\""}",228713,1,"""Asia""" +2023-03-05,52069,8377,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",827.26,{},40133,1,"""North America""" +2024-03-23,52070,1280,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4517.57,"{\""loyalty\"": \""30%\""}",204580,0,"""Africa""" +2024-05-22,52071,624,"[\""Keyboard\""]",3434.21,"{\""loyalty\"": \""10%\""}",296238,1,"""Africa""" +2024-01-28,52072,4891,"[\""Tablet\"", \""Wireless Mouse\""]",1960.31,"{\""seasonal\"": \""8%\""}",19292,1,"""South America""" +2024-12-09,52073,4211,"[\""Phone\"", \""Monitor\""]",1508.23,{},136576,1,"""South America""" +2023-03-29,52074,3031,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1934.55,{},32171,0,"""North America""" +2024-10-13,52075,1258,"[\""Charger\""]",3940.44,{},170685,1,"""South America""" +2023-02-12,52076,9925,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3324.73,{},237763,1,"""North America""" +2023-09-29,52077,995,"[\""Tablet\""]",236.9,{},219335,0,"""North America""" +2023-01-10,52078,3449,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2862.67,"{\""loyalty\"": \""29%\""}",80282,1,"""North America""" +2023-06-16,52079,5633,"[\""Phone\""]",2383.87,"{\""promo\"": \""25%\""}",71124,0,"""South America""" +2023-07-23,52080,3748,"[\""Charger\""]",2624.34,"{\""loyalty\"": \""28%\""}",77352,1,"""South America""" +2023-05-07,52081,580,"[\""Wireless Mouse\""]",882.54,"{\"": \""19%\""}",237229,1,"""Asia""" +2024-10-28,52082,1425,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2991.84,"{\""loyalty\"": \""27%\""}",298944,0,"""Asia""" +2024-03-04,52083,4232,"[\""Headphones\"", \""Keyboard\""]",2715.54,"{\""seasonal\"": \""14%\""}",237802,0,"""Europe""" +2024-08-25,52084,5359,"[\""Charger\""]",1805.74,"{\""seasonal\"": \""26%\""}",94792,0,"""North America""" +2024-02-18,52085,1029,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2999.08,{},10514,0,"""Africa""" +2023-11-04,52086,5588,"[\""Keyboard\"", \""Phone\""]",1770.8,{},288178,0,"""North America""" +2024-01-09,52087,3729,"[\""Tablet\"", \""Charger\""]",1442.47,"{\"": \""26%\""}",257811,1,"""North America""" +2023-11-09,52088,3815,"[\""Keyboard\""]",3834.75,{},133637,0,"""South America""" +2023-10-23,52089,6390,"[\""Headphones\"", \""Phone\""]",2417.92,{},144647,0,"""Europe""" +2023-09-23,52090,5248,"[\""Laptop\""]",88.54,{},17887,0,"""South America""" +2023-03-20,52091,4655,"[\""Keyboard\"", \""Tablet\""]",4088.91,{},272312,1,"""South America""" +2024-06-08,52092,4040,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2765.61,{},175822,1,"""Asia""" +2024-03-08,52093,2648,"[\""Wireless Mouse\""]",3992.17,"{\""seasonal\"": \""23%\""}",21436,0,"""North America""" +2024-01-19,52094,9598,"[\""Tablet\""]",357.56,{},99237,0,"""North America""" +2023-10-03,52095,823,"[\""Keyboard\""]",1572.48,{},172488,1,"""Asia""" +2023-02-14,52096,806,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",750.5,{},145048,1,"""North America""" +2023-07-01,52097,2559,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1520.07,"{\""seasonal\"": \""21%\""}",150168,0,"""North America""" +2024-06-17,52098,2344,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2574.61,"{\"": \""16%\""}",257269,0,"""South America""" +2024-01-15,52099,1242,"[\""Keyboard\""]",4075.74,{},78625,0,"""Asia""" +2023-11-01,52100,4196,"[\""Monitor\""]",4475.75,"{\""seasonal\"": \""20%\""}",237216,0,"""Africa""" +2023-06-19,52101,6956,"[\""Keyboard\""]",3993.4,"{\""seasonal\"": \""25%\""}",209431,1,"""Asia""" +2024-09-06,52102,8597,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4998.62,{},171294,0,"""Africa""" +2024-09-04,52103,793,"[\""Tablet\"", \""Headphones\""]",446.39,"{\"": \""10%\""}",239309,0,"""North America""" +2023-04-06,52104,9267,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4732.97,{},100288,1,"""Europe""" +2023-05-15,52105,7201,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1242.84,"{\""loyalty\"": \""23%\""}",225852,1,"""South America""" +2023-05-21,52106,2779,"[\""Keyboard\""]",4768.85,{},3295,1,"""South America""" +2024-02-12,52107,665,"[\""Charger\"", \""Phone\""]",1646.72,"{\""promo\"": \""14%\""}",126245,0,"""Europe""" +2023-08-12,52108,8056,"[\""Headphones\""]",1444.35,{},79399,1,"""Africa""" +2024-03-19,52109,8435,"[\""Laptop\"", \""Phone\""]",853.74,"{\""seasonal\"": \""5%\""}",281327,1,"""Asia""" +2024-06-20,52110,3571,"[\""Tablet\"", \""Headphones\""]",1270.26,{},205603,1,"""Africa""" +2024-09-19,52111,6180,"[\""Phone\""]",1672.72,{},181830,0,"""Africa""" +2023-04-08,52112,9098,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",107.77,"{\""seasonal\"": \""24%\""}",219379,1,"""Europe""" +2024-01-25,52113,9047,"[\""Charger\""]",1393.56,"{\""loyalty\"": \""18%\""}",235282,0,"""Asia""" +2023-06-24,52114,5623,"[\""Charger\""]",942.4,"{\""loyalty\"": \""23%\""}",36220,1,"""Europe""" +2023-05-24,52115,8920,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4325.54,"{\""promo\"": \""24%\""}",127175,1,"""Asia""" +2023-10-07,52116,5522,"[\""Keyboard\""]",3635.42,{},211689,1,"""Africa""" +2024-07-13,52117,2142,"[\""Tablet\""]",165.54,"{\""promo\"": \""7%\""}",90732,0,"""South America""" +2023-06-02,52118,5630,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",207.4,{},6052,1,"""North America""" +2024-03-26,52119,6508,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2331.34,"{\""loyalty\"": \""12%\""}",272400,0,"""Europe""" +2024-08-28,52120,5101,"[\""Charger\""]",3332.13,{},21157,0,"""Europe""" +2024-09-30,52121,9022,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4419.51,{},70327,1,"""Africa""" +2024-01-08,52122,445,"[\""Keyboard\""]",3055.05,{},141666,1,"""Africa""" +2024-07-01,52123,7450,"[\""Tablet\"", \""Charger\""]",244.64,"{\""seasonal\"": \""26%\""}",157973,1,"""South America""" +2023-08-08,52124,7685,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1802.07,{},215312,0,"""South America""" +2024-04-16,52125,6429,"[\""Headphones\"", \""Charger\""]",4220.45,{},253368,0,"""Asia""" +2023-06-14,52126,4723,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",657.55,"{\""promo\"": \""17%\""}",296564,1,"""Asia""" +2024-11-28,52127,931,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4393.98,"{\""loyalty\"": \""20%\""}",296859,0,"""Europe""" +2023-03-19,52128,4280,"[\""Charger\""]",4150.1,{},38081,1,"""South America""" +2024-12-24,52129,8990,"[\""Headphones\"", \""Tablet\""]",2428.06,"{\""seasonal\"": \""27%\""}",76438,1,"""South America""" +2024-10-13,52130,2807,"[\""Tablet\""]",114.92,{},42960,0,"""South America""" +2023-01-09,52131,5433,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1945.27,{},117835,0,"""Asia""" +2024-06-22,52132,2294,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3315.74,{},114125,0,"""Asia""" +2024-11-03,52133,7930,"[\""Headphones\"", \""Keyboard\""]",655.6,{},199461,0,"""Asia""" +2023-04-27,52134,8902,"[\""Wireless Mouse\""]",3754.44,"{\""promo\"": \""15%\""}",149760,1,"""Europe""" +2024-04-03,52135,5517,"[\""Laptop\"", \""Phone\""]",789.11,"{\""loyalty\"": \""10%\""}",188831,1,"""Europe""" +2023-11-12,52136,9181,"[\""Charger\""]",4658.6,{},85899,1,"""South America""" +2023-10-18,52137,2539,"[\""Charger\"", \""Monitor\""]",2890.25,"{\""loyalty\"": \""29%\""}",226389,0,"""North America""" +2023-03-12,52138,2800,"[\""Headphones\""]",2265.62,"{\"": \""22%\""}",115117,1,"""Europe""" +2023-02-02,52139,3634,"[\""Wireless Mouse\""]",100.3,"{\""promo\"": \""7%\""}",151314,1,"""Africa""" +2024-09-20,52140,3808,"[\""Tablet\""]",3249.08,{},238471,1,"""South America""" +2023-07-21,52141,2944,"[\""Phone\"", \""Tablet\""]",2291.36,"{\""loyalty\"": \""29%\""}",109562,0,"""Europe""" +2023-09-13,52142,5424,"[\""Phone\""]",3886.8,"{\""loyalty\"": \""20%\""}",183629,1,"""Asia""" +2024-04-04,52143,4601,"[\""Monitor\"", \""Tablet\""]",2817.09,{},277961,1,"""North America""" +2024-05-30,52144,1776,"[\""Laptop\""]",2858.11,{},288704,0,"""Asia""" +2023-02-24,52145,5194,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1272.7,{},147005,1,"""Africa""" +2023-03-10,52146,875,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2650.87,"{\""loyalty\"": \""11%\""}",221400,0,"""South America""" +2024-09-07,52147,8148,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",476.44,{},246705,0,"""Africa""" +2023-05-23,52148,9471,"[\""Phone\"", \""Monitor\""]",1390.89,"{\""loyalty\"": \""8%\""}",178791,0,"""North America""" +2024-11-09,52149,1414,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4022.34,{},173623,1,"""South America""" +2024-09-23,52150,7158,"[\""Laptop\"", \""Keyboard\""]",4254.52,{},285983,0,"""South America""" +2024-09-04,52151,7986,"[\""Wireless Mouse\"", \""Monitor\""]",1976.98,{},116538,1,"""South America""" +2023-07-12,52152,5874,"[\""Phone\"", \""Charger\""]",3354.47,"{\""seasonal\"": \""19%\""}",286185,0,"""Europe""" +2024-04-23,52153,3427,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3291.76,"{\"": \""10%\""}",68018,1,"""Europe""" +2023-02-01,52154,4111,"[\""Monitor\""]",1851.8,"{\"": \""19%\""}",185787,0,"""Africa""" +2023-06-25,52155,6790,"[\""Keyboard\""]",2953.14,{},31674,1,"""South America""" +2023-06-10,52156,2488,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",262.44,"{\""loyalty\"": \""25%\""}",135672,0,"""North America""" +2024-11-23,52157,9423,"[\""Tablet\"", \""Headphones\""]",4605.26,"{\""promo\"": \""11%\""}",277327,0,"""South America""" +2023-01-04,52158,8531,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3825.91,{},179004,0,"""Africa""" +2023-09-15,52159,4088,"[\""Headphones\""]",1043.85,"{\""promo\"": \""27%\""}",264578,0,"""North America""" +2023-11-04,52160,6032,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2339.35,{},145374,1,"""Africa""" +2024-08-08,52161,3530,"[\""Headphones\"", \""Laptop\""]",4793.72,"{\"": \""5%\""}",115517,0,"""Africa""" +2023-12-19,52162,17,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",395.63,"{\""seasonal\"": \""14%\""}",228998,1,"""Europe""" +2023-08-23,52163,7543,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2078.36,"{\""loyalty\"": \""19%\""}",13860,0,"""North America""" +2023-07-17,52164,9163,"[\""Tablet\""]",371.06,{},198710,0,"""Africa""" +2023-03-07,52165,7599,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",615.2,{},207208,0,"""Asia""" +2024-01-21,52166,5946,"[\""Headphones\""]",3406.79,"{\""promo\"": \""17%\""}",169836,0,"""Asia""" +2024-02-01,52167,7167,"[\""Headphones\""]",416.3,{},154630,1,"""South America""" +2023-10-08,52168,9658,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4744.79,"{\""promo\"": \""22%\""}",275294,1,"""North America""" +2023-11-12,52169,5154,"[\""Laptop\"", \""Keyboard\""]",2198.88,"{\"": \""23%\""}",107325,0,"""North America""" +2024-08-11,52170,4785,"[\""Laptop\"", \""Monitor\""]",1963.58,{},112612,0,"""Asia""" +2023-08-20,52171,5884,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3210.29,"{\""promo\"": \""27%\""}",240059,1,"""Africa""" +2024-02-09,52172,6592,"[\""Headphones\"", \""Charger\""]",4520.74,"{\""seasonal\"": \""13%\""}",119393,0,"""Africa""" +2024-05-07,52173,3651,"[\""Phone\""]",724.26,{},233371,0,"""South America""" +2024-04-30,52174,5380,"[\""Charger\""]",4511.3,{},170764,0,"""Africa""" +2024-09-11,52175,386,"[\""Monitor\"", \""Headphones\""]",4669.48,{},278249,1,"""Africa""" +2023-09-12,52176,2634,"[\""Keyboard\""]",3963.27,"{\""loyalty\"": \""5%\""}",74682,0,"""Africa""" +2023-01-26,52177,4125,"[\""Charger\"", \""Phone\""]",1241.26,{},276654,0,"""South America""" +2024-03-15,52178,2907,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3776.31,"{\""promo\"": \""17%\""}",209002,1,"""Africa""" +2024-07-07,52179,9589,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4019.85,{},178046,1,"""North America""" +2024-08-23,52180,8404,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3032.73,"{\""loyalty\"": \""27%\""}",52818,0,"""Asia""" +2023-05-27,52181,4248,"[\""Monitor\""]",3662.93,{},172992,1,"""Europe""" +2024-05-11,52182,1677,"[\""Wireless Mouse\""]",2544.35,"{\""loyalty\"": \""25%\""}",195997,1,"""Europe""" +2024-05-22,52183,6394,"[\""Wireless Mouse\""]",2487.25,"{\""loyalty\"": \""23%\""}",263973,1,"""South America""" +2024-01-07,52184,510,"[\""Monitor\"", \""Laptop\""]",2074.55,"{\""loyalty\"": \""6%\""}",260817,0,"""South America""" +2024-07-19,52185,74,"[\""Tablet\"", \""Wireless Mouse\""]",1189.72,"{\""seasonal\"": \""24%\""}",65742,0,"""North America""" +2023-04-22,52186,9029,"[\""Charger\"", \""Keyboard\""]",2671.6,"{\"": \""24%\""}",230143,1,"""South America""" +2024-02-08,52187,2666,"[\""Headphones\"", \""Laptop\""]",4030.71,{},282174,0,"""Africa""" +2024-12-26,52188,294,"[\""Wireless Mouse\""]",550.32,"{\""promo\"": \""28%\""}",252347,0,"""North America""" +2023-02-24,52189,9983,"[\""Charger\"", \""Tablet\""]",850.68,{},294478,1,"""North America""" +2024-06-20,52190,9230,"[\""Keyboard\""]",3117.99,{},242408,1,"""North America""" +2023-10-24,52191,9727,"[\""Headphones\"", \""Laptop\""]",4905.1,"{\"": \""9%\""}",264190,0,"""North America""" +2024-04-25,52192,2444,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1363.27,{},3139,1,"""Europe""" +2023-08-21,52193,8100,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4582.34,{},236508,1,"""North America""" +2024-09-10,52194,9032,"[\""Charger\"", \""Wireless Mouse\""]",4355.46,{},39807,1,"""South America""" +2023-03-29,52195,4881,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4236.14,{},195029,0,"""Asia""" +2023-02-09,52196,1553,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",58.21,"{\""loyalty\"": \""9%\""}",192891,1,"""Europe""" +2023-05-30,52197,3322,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3968.19,"{\"": \""15%\""}",218267,1,"""South America""" +2023-05-18,52198,9493,"[\""Charger\""]",3093.82,{},123648,0,"""Asia""" +2024-08-09,52199,1181,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4417.38,"{\""seasonal\"": \""26%\""}",230464,1,"""Asia""" +2024-08-19,52200,5303,"[\""Monitor\""]",4869.95,{},290796,1,"""South America""" +2023-11-30,52201,1728,"[\""Headphones\""]",4362.01,{},227506,1,"""Asia""" +2024-03-19,52202,1112,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1199.01,{},262827,0,"""South America""" +2024-04-22,52203,7872,"[\""Charger\"", \""Tablet\""]",3338.44,{},179025,1,"""North America""" +2024-08-02,52204,371,"[\""Tablet\"", \""Headphones\""]",319.16,"{\""seasonal\"": \""28%\""}",111336,0,"""South America""" +2023-07-26,52205,5808,"[\""Keyboard\""]",960.33,"{\""loyalty\"": \""30%\""}",293190,0,"""Asia""" +2024-09-10,52206,9050,"[\""Keyboard\"", \""Phone\""]",2586.65,"{\""promo\"": \""17%\""}",229155,1,"""North America""" +2023-12-19,52207,8468,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1052.5,"{\""seasonal\"": \""7%\""}",25460,1,"""North America""" +2024-07-29,52208,22,"[\""Monitor\"", \""Headphones\""]",2312.88,{},19688,0,"""Africa""" +2023-09-29,52209,7702,"[\""Phone\"", \""Laptop\""]",3847.77,{},104837,1,"""Europe""" +2023-06-04,52210,3095,"[\""Monitor\""]",1003.9,"{\"": \""20%\""}",296453,1,"""South America""" +2023-01-08,52211,4985,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1623.18,{},9443,1,"""South America""" +2024-10-15,52212,1914,"[\""Monitor\""]",127.9,{},180812,1,"""Africa""" +2024-05-19,52213,562,"[\""Monitor\"", \""Headphones\""]",4709.96,"{\"": \""21%\""}",106325,0,"""Africa""" +2023-01-06,52214,893,"[\""Monitor\"", \""Headphones\""]",2798.78,"{\""seasonal\"": \""11%\""}",98187,0,"""Europe""" +2024-04-27,52215,6120,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2552.93,{},26586,0,"""South America""" +2023-01-23,52216,2056,"[\""Phone\""]",3819.07,{},212254,0,"""South America""" +2023-12-28,52217,4273,"[\""Laptop\"", \""Charger\""]",218.21,"{\""loyalty\"": \""13%\""}",236978,1,"""Europe""" +2023-01-27,52218,5241,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3512.5,{},19620,0,"""Asia""" +2023-08-04,52219,8259,"[\""Tablet\""]",1026.98,"{\""promo\"": \""6%\""}",217952,0,"""North America""" +2024-10-06,52220,3275,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",834.57,"{\""loyalty\"": \""17%\""}",157527,0,"""Africa""" +2024-07-07,52221,2073,"[\""Monitor\""]",2387.02,"{\""promo\"": \""25%\""}",282572,1,"""North America""" +2024-10-06,52222,2222,"[\""Keyboard\""]",4745.48,{},62198,1,"""Europe""" +2024-07-21,52223,8245,"[\""Wireless Mouse\"", \""Phone\""]",2531.11,"{\""loyalty\"": \""23%\""}",216352,1,"""North America""" +2023-02-22,52224,9034,"[\""Monitor\""]",4670.76,{},264832,0,"""Africa""" +2023-01-13,52225,6249,"[\""Monitor\""]",1238.07,{},245834,1,"""Europe""" +2023-07-26,52226,8046,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1436.37,"{\""promo\"": \""17%\""}",105429,0,"""Europe""" +2023-12-08,52227,4114,"[\""Laptop\"", \""Phone\""]",1067.85,{},279873,0,"""Asia""" +2024-03-26,52228,28,"[\""Tablet\"", \""Phone\"", \""Charger\""]",385.07,{},185341,0,"""South America""" +2024-06-04,52229,173,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4628.04,"{\"": \""22%\""}",36771,1,"""Europe""" +2024-07-28,52230,4573,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2027.4,"{\""promo\"": \""18%\""}",39457,0,"""Europe""" +2024-03-22,52231,7374,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2371.17,"{\""promo\"": \""20%\""}",132440,1,"""South America""" +2024-08-27,52232,1144,"[\""Headphones\""]",2010.65,"{\""promo\"": \""26%\""}",14480,0,"""Europe""" +2023-10-18,52233,5402,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",259.34,{},2386,1,"""Africa""" +2023-08-31,52234,6672,"[\""Tablet\""]",2840.12,"{\"": \""15%\""}",146103,0,"""South America""" +2023-03-15,52235,6446,"[\""Wireless Mouse\"", \""Monitor\""]",4287.94,{},171806,1,"""Africa""" +2023-11-06,52236,879,"[\""Monitor\""]",2463.31,"{\""loyalty\"": \""9%\""}",195925,1,"""Asia""" +2023-12-20,52237,9802,"[\""Phone\"", \""Monitor\""]",2334.46,{},46314,1,"""Asia""" +2023-07-13,52238,227,"[\""Phone\"", \""Laptop\""]",1165.72,{},141248,0,"""South America""" +2023-11-21,52239,8597,"[\""Wireless Mouse\""]",2524.73,"{\""promo\"": \""28%\""}",299246,0,"""South America""" +2024-08-25,52240,9279,"[\""Phone\"", \""Keyboard\""]",3010.41,"{\"": \""11%\""}",257287,0,"""Asia""" +2024-04-06,52241,345,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2299.96,{},201271,0,"""Asia""" +2024-10-27,52242,8171,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",670.28,{},273672,0,"""Asia""" +2023-08-17,52243,3720,"[\""Phone\"", \""Monitor\""]",2008.83,{},162754,1,"""Europe""" +2024-09-17,52244,4177,"[\""Laptop\"", \""Wireless Mouse\""]",1210.67,"{\""promo\"": \""9%\""}",139012,0,"""North America""" +2023-07-17,52245,4288,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",568.56,"{\"": \""30%\""}",99976,1,"""Asia""" +2023-05-27,52246,1103,"[\""Keyboard\""]",4590.53,"{\""loyalty\"": \""16%\""}",280459,1,"""Africa""" +2023-07-24,52247,7701,"[\""Keyboard\"", \""Headphones\""]",2895.26,"{\""seasonal\"": \""9%\""}",39304,0,"""Africa""" +2023-01-24,52248,8517,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3755.32,"{\""loyalty\"": \""5%\""}",259917,1,"""South America""" +2023-06-10,52249,319,"[\""Headphones\""]",3366.75,"{\""seasonal\"": \""12%\""}",102851,0,"""Europe""" +2023-08-26,52250,9200,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3701.35,{},179681,0,"""Asia""" +2024-08-07,52251,33,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4062.04,{},107381,0,"""South America""" +2024-02-24,52252,9345,"[\""Wireless Mouse\""]",2820.91,{},232578,1,"""South America""" +2023-05-01,52253,5096,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4777.54,"{\""promo\"": \""30%\""}",138301,0,"""North America""" +2024-11-13,52254,2939,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",491.63,"{\""loyalty\"": \""5%\""}",272074,0,"""North America""" +2023-11-28,52255,7610,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3782.7,"{\"": \""20%\""}",132801,1,"""Asia""" +2023-02-09,52256,9137,"[\""Keyboard\""]",4722.96,{},234627,0,"""South America""" +2024-03-01,52257,8432,"[\""Keyboard\""]",2650.77,{},243584,0,"""Europe""" +2024-07-29,52258,8181,"[\""Wireless Mouse\"", \""Headphones\""]",3122.35,"{\"": \""20%\""}",193396,1,"""Asia""" +2023-12-12,52259,560,"[\""Wireless Mouse\""]",2953.62,"{\"": \""26%\""}",244388,1,"""North America""" +2023-08-28,52260,2722,"[\""Headphones\""]",2292.51,{},6235,0,"""South America""" +2024-03-05,52261,2705,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3142.81,"{\"": \""22%\""}",93459,1,"""Europe""" +2024-07-11,52262,4420,"[\""Monitor\"", \""Keyboard\""]",2774.81,{},139084,0,"""Africa""" +2023-09-23,52263,9920,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2196.07,"{\""loyalty\"": \""30%\""}",236102,0,"""North America""" +2024-06-26,52264,1847,"[\""Keyboard\"", \""Phone\""]",4862.0,"{\""promo\"": \""13%\""}",256041,0,"""Africa""" +2024-05-19,52265,2621,"[\""Tablet\""]",1251.97,"{\""loyalty\"": \""27%\""}",77639,0,"""North America""" +2023-01-04,52266,5745,"[\""Laptop\"", \""Tablet\""]",3286.77,"{\""promo\"": \""17%\""}",275692,0,"""South America""" +2024-04-07,52267,5989,"[\""Tablet\"", \""Keyboard\""]",2193.97,{},155446,1,"""South America""" +2024-02-04,52268,5852,"[\""Laptop\""]",1720.21,"{\"": \""8%\""}",277990,1,"""Asia""" +2024-06-03,52269,8546,"[\""Headphones\""]",3072.26,{},225346,0,"""Asia""" +2024-08-18,52270,6195,"[\""Charger\""]",3198.33,"{\""loyalty\"": \""22%\""}",250347,0,"""Asia""" +2024-05-02,52271,8438,"[\""Headphones\"", \""Charger\""]",3169.1,"{\"": \""22%\""}",10989,0,"""Europe""" +2023-10-14,52272,5065,"[\""Headphones\""]",4693.13,{},114910,1,"""Europe""" +2024-08-23,52273,1387,"[\""Monitor\""]",3009.05,{},209969,1,"""Europe""" +2023-05-31,52274,7204,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",913.46,"{\""promo\"": \""24%\""}",261595,0,"""Africa""" +2024-07-08,52275,920,"[\""Monitor\"", \""Wireless Mouse\""]",1141.41,"{\""loyalty\"": \""10%\""}",283956,1,"""Europe""" +2024-01-22,52276,4774,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4089.64,"{\""loyalty\"": \""19%\""}",143260,1,"""Europe""" +2023-12-16,52277,9365,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2700.53,"{\"": \""30%\""}",104747,0,"""Africa""" +2023-07-26,52278,133,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4079.52,"{\""loyalty\"": \""6%\""}",21630,0,"""North America""" +2023-10-25,52279,9552,"[\""Laptop\"", \""Tablet\""]",3654.32,"{\""loyalty\"": \""24%\""}",3747,0,"""South America""" +2023-11-24,52280,3783,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2191.57,"{\""loyalty\"": \""6%\""}",170858,1,"""Africa""" +2024-11-06,52281,1085,"[\""Monitor\"", \""Phone\""]",3549.14,"{\""promo\"": \""7%\""}",248202,1,"""South America""" +2024-05-15,52282,3429,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",536.81,"{\""loyalty\"": \""24%\""}",292377,1,"""Asia""" +2023-09-08,52283,4939,"[\""Keyboard\""]",4671.73,{},174391,0,"""Europe""" +2023-10-20,52284,9114,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4701.57,"{\""loyalty\"": \""13%\""}",161400,0,"""Europe""" +2024-07-02,52285,6837,"[\""Phone\""]",2402.15,{},157321,0,"""Asia""" +2024-03-24,52286,3673,"[\""Tablet\"", \""Headphones\""]",4387.6,"{\"": \""22%\""}",211459,1,"""Europe""" +2023-02-18,52287,726,"[\""Headphones\"", \""Phone\""]",698.32,{},195392,0,"""Asia""" +2024-01-29,52288,3210,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1768.2,"{\""loyalty\"": \""10%\""}",270580,0,"""Africa""" +2023-11-02,52289,7271,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4731.24,"{\""promo\"": \""11%\""}",97595,0,"""North America""" +2024-09-14,52290,3626,"[\""Phone\""]",3222.18,{},151560,0,"""South America""" +2024-10-25,52291,7412,"[\""Laptop\""]",3761.02,{},238104,0,"""Asia""" +2024-12-30,52292,7383,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1248.28,"{\""loyalty\"": \""24%\""}",225381,1,"""North America""" +2023-05-24,52293,2607,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2074.87,{},126131,1,"""South America""" +2023-11-29,52294,3544,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",800.91,{},196724,0,"""Africa""" +2023-11-04,52295,2269,"[\""Phone\""]",2997.45,{},210210,1,"""Asia""" +2023-09-19,52296,7874,"[\""Charger\""]",4165.02,"{\""seasonal\"": \""9%\""}",162457,1,"""North America""" +2024-02-08,52297,3083,"[\""Wireless Mouse\"", \""Charger\""]",4605.81,"{\""seasonal\"": \""27%\""}",51738,1,"""Europe""" +2023-10-07,52298,4402,"[\""Phone\"", \""Monitor\""]",412.47,{},138541,0,"""Africa""" +2023-08-15,52299,8441,"[\""Laptop\"", \""Phone\""]",2817.76,{},24776,1,"""North America""" +2024-12-14,52300,4329,"[\""Monitor\""]",467.44,{},286751,1,"""Europe""" +2023-04-28,52301,736,"[\""Tablet\"", \""Phone\""]",3835.22,{},257821,1,"""Asia""" +2024-06-18,52302,6793,"[\""Tablet\""]",3267.46,"{\""promo\"": \""29%\""}",191752,0,"""North America""" +2024-05-30,52303,9010,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3009.16,"{\""seasonal\"": \""17%\""}",160660,0,"""Europe""" +2024-11-23,52304,6181,"[\""Charger\"", \""Keyboard\""]",709.14,"{\""loyalty\"": \""6%\""}",240161,1,"""North America""" +2023-08-26,52305,2150,"[\""Keyboard\""]",4268.32,"{\"": \""29%\""}",38396,1,"""Asia""" +2024-10-22,52306,5072,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1058.74,{},136796,0,"""South America""" +2023-08-27,52307,4808,"[\""Charger\"", \""Tablet\""]",3084.48,{},280620,1,"""Asia""" +2023-03-05,52308,2817,"[\""Laptop\""]",4845.52,{},280737,1,"""Asia""" +2023-02-21,52309,7851,"[\""Phone\"", \""Tablet\""]",4509.52,"{\""loyalty\"": \""30%\""}",292998,0,"""Europe""" +2023-03-19,52310,3510,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3991.2,{},78658,0,"""Africa""" +2023-12-03,52311,7524,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3079.36,"{\""loyalty\"": \""26%\""}",169221,1,"""Europe""" +2024-05-31,52312,8246,"[\""Phone\""]",335.74,{},224403,0,"""Africa""" +2023-05-19,52313,4239,"[\""Laptop\"", \""Charger\"", \""Phone\""]",138.93,"{\"": \""12%\""}",141147,1,"""Africa""" +2024-04-10,52314,5447,"[\""Wireless Mouse\"", \""Tablet\""]",3300.28,{},211087,1,"""Africa""" +2023-05-18,52315,3186,"[\""Wireless Mouse\""]",4349.33,"{\"": \""12%\""}",139327,1,"""South America""" +2024-01-28,52316,4923,"[\""Monitor\""]",1744.25,{},86929,0,"""South America""" +2023-03-14,52317,804,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3570.26,{},122601,1,"""Africa""" +2024-01-04,52318,3200,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2034.3,"{\""seasonal\"": \""28%\""}",281464,1,"""North America""" +2023-11-06,52319,1285,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1461.8,{},47809,1,"""Africa""" +2024-07-08,52320,1379,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4741.5,"{\""loyalty\"": \""7%\""}",145574,1,"""Africa""" +2023-08-08,52321,3306,"[\""Charger\"", \""Wireless Mouse\""]",4582.62,"{\""seasonal\"": \""6%\""}",43000,1,"""North America""" +2024-12-24,52322,9535,"[\""Keyboard\""]",1408.32,{},205574,1,"""Africa""" +2023-01-06,52323,8523,"[\""Phone\"", \""Charger\""]",3902.95,"{\""loyalty\"": \""30%\""}",156043,1,"""Europe""" +2023-09-30,52324,4501,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",924.52,{},15744,1,"""South America""" +2024-06-30,52325,3962,"[\""Headphones\"", \""Charger\""]",2893.78,"{\""loyalty\"": \""30%\""}",50899,1,"""Asia""" +2023-09-28,52326,6180,"[\""Phone\"", \""Wireless Mouse\""]",2904.8,{},8621,1,"""South America""" +2024-10-13,52327,1949,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1080.35,{},241994,1,"""South America""" +2023-08-14,52328,4315,"[\""Wireless Mouse\"", \""Tablet\""]",1800.52,"{\""promo\"": \""27%\""}",152862,0,"""Europe""" +2023-06-12,52329,7664,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3045.05,"{\""loyalty\"": \""29%\""}",282918,1,"""Europe""" +2024-12-21,52330,5485,"[\""Charger\""]",1887.41,"{\""promo\"": \""8%\""}",68051,0,"""North America""" +2023-03-01,52331,7980,"[\""Charger\""]",4317.19,{},57090,1,"""Europe""" +2024-07-17,52332,4323,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1285.57,"{\""promo\"": \""10%\""}",137155,1,"""Europe""" +2024-12-06,52333,6372,"[\""Monitor\""]",2939.39,{},83120,0,"""Africa""" +2024-03-19,52334,928,"[\""Wireless Mouse\""]",1997.37,"{\""promo\"": \""26%\""}",98319,0,"""North America""" +2023-07-01,52335,8263,"[\""Charger\"", \""Keyboard\""]",3306.04,"{\""loyalty\"": \""27%\""}",202446,1,"""South America""" +2024-10-20,52336,378,"[\""Wireless Mouse\""]",3945.26,{},120412,1,"""North America""" +2023-06-17,52337,4620,"[\""Phone\""]",2585.26,"{\""promo\"": \""24%\""}",294227,1,"""Asia""" +2024-12-25,52338,9083,"[\""Tablet\""]",1285.57,{},182829,1,"""North America""" +2024-01-26,52339,7477,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3408.74,"{\"": \""29%\""}",110666,0,"""South America""" +2024-11-30,52340,4938,"[\""Headphones\""]",3048.99,{},48225,0,"""South America""" +2023-06-12,52341,5580,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3371.89,{},210334,0,"""South America""" +2024-03-13,52342,7649,"[\""Keyboard\"", \""Laptop\""]",1016.15,{},273767,1,"""North America""" +2023-04-29,52343,6359,"[\""Tablet\""]",3825.86,"{\"": \""15%\""}",228042,0,"""South America""" +2023-09-23,52344,292,"[\""Laptop\""]",4973.55,"{\""seasonal\"": \""6%\""}",179622,1,"""North America""" +2023-05-09,52345,1118,"[\""Headphones\""]",204.34,{},10744,0,"""Africa""" +2023-06-25,52346,2701,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3542.35,{},11077,0,"""Europe""" +2023-05-27,52347,6695,"[\""Keyboard\"", \""Phone\""]",3680.58,{},208764,1,"""Europe""" +2024-07-20,52348,1364,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4346.22,"{\"": \""18%\""}",17097,0,"""Europe""" +2023-05-30,52349,3400,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2182.61,{},52522,1,"""North America""" +2024-06-06,52350,4579,"[\""Wireless Mouse\"", \""Keyboard\""]",520.53,{},34403,0,"""South America""" +2023-01-12,52351,3855,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3236.06,{},198551,0,"""South America""" +2024-01-09,52352,941,"[\""Wireless Mouse\"", \""Headphones\""]",1518.21,"{\""loyalty\"": \""18%\""}",295800,1,"""South America""" +2023-02-25,52353,3568,"[\""Phone\"", \""Charger\""]",4402.54,"{\"": \""21%\""}",163041,0,"""Asia""" +2023-10-10,52354,1453,"[\""Headphones\""]",4517.92,{},77760,1,"""North America""" +2024-10-07,52355,2003,"[\""Charger\"", \""Monitor\""]",2899.86,"{\"": \""12%\""}",144791,0,"""Africa""" +2023-06-13,52356,1070,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1040.5,"{\"": \""21%\""}",176742,1,"""Africa""" +2023-07-05,52357,4932,"[\""Charger\"", \""Phone\"", \""Monitor\""]",885.18,"{\"": \""29%\""}",4668,0,"""South America""" +2023-02-01,52358,1028,"[\""Charger\""]",2423.21,"{\"": \""29%\""}",59529,1,"""Europe""" +2023-10-07,52359,5455,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2213.07,{},141163,0,"""Africa""" +2024-11-14,52360,4945,"[\""Wireless Mouse\""]",578.59,"{\""promo\"": \""19%\""}",30587,1,"""North America""" +2024-02-07,52361,914,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4497.56,"{\""seasonal\"": \""24%\""}",175379,0,"""South America""" +2023-05-16,52362,4309,"[\""Monitor\""]",791.66,"{\""loyalty\"": \""17%\""}",281580,0,"""Europe""" +2023-09-09,52363,7345,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1827.71,{},120424,0,"""Africa""" +2024-10-03,52364,6371,"[\""Keyboard\""]",823.95,"{\""loyalty\"": \""19%\""}",134995,1,"""Asia""" +2024-07-27,52365,823,"[\""Laptop\"", \""Headphones\""]",3747.21,{},56766,0,"""Asia""" +2023-11-19,52366,1208,"[\""Laptop\""]",180.78,"{\""promo\"": \""29%\""}",258417,1,"""North America""" +2023-03-24,52367,1093,"[\""Tablet\"", \""Phone\""]",3835.78,{},86174,0,"""Africa""" +2024-09-09,52368,376,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2317.92,{},140702,0,"""North America""" +2023-12-23,52369,4175,"[\""Monitor\"", \""Keyboard\""]",89.76,"{\""loyalty\"": \""12%\""}",68106,0,"""Europe""" +2024-08-11,52370,6777,"[\""Laptop\""]",704.58,"{\""seasonal\"": \""15%\""}",106903,1,"""North America""" +2023-02-16,52371,313,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3324.76,"{\""promo\"": \""10%\""}",241143,1,"""North America""" +2023-04-26,52372,8934,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2146.18,"{\"": \""6%\""}",12548,1,"""Africa""" +2023-07-10,52373,889,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1054.42,{},25833,1,"""North America""" +2024-04-17,52374,3658,"[\""Laptop\""]",3657.86,"{\""seasonal\"": \""27%\""}",156438,1,"""Europe""" +2023-03-28,52375,3162,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1226.45,"{\""loyalty\"": \""7%\""}",290077,0,"""Africa""" +2023-09-12,52376,2751,"[\""Laptop\""]",2998.24,{},190320,0,"""Africa""" +2023-03-02,52377,4572,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3654.81,{},231701,1,"""Africa""" +2024-08-10,52378,6786,"[\""Headphones\""]",283.71,{},232868,1,"""Asia""" +2024-10-27,52379,7408,"[\""Monitor\"", \""Keyboard\""]",3777.67,{},155202,0,"""North America""" +2024-02-08,52380,103,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3832.07,{},251016,1,"""South America""" +2024-02-12,52381,7013,"[\""Laptop\"", \""Charger\""]",3254.03,"{\""promo\"": \""13%\""}",108782,1,"""Africa""" +2023-10-26,52382,8423,"[\""Monitor\""]",3405.54,"{\""loyalty\"": \""14%\""}",123687,0,"""South America""" +2024-10-26,52383,2975,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1576.61,{},120625,1,"""Africa""" +2023-02-08,52384,6096,"[\""Monitor\""]",722.61,{},134743,1,"""South America""" +2024-03-27,52385,3690,"[\""Laptop\"", \""Keyboard\""]",4828.4,"{\""loyalty\"": \""14%\""}",49727,1,"""Europe""" +2023-06-15,52386,6405,"[\""Monitor\""]",3985.99,{},281484,1,"""North America""" +2023-06-10,52387,7765,"[\""Phone\"", \""Headphones\""]",4401.09,{},279670,0,"""Europe""" +2024-12-20,52388,594,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4650.73,{},66340,0,"""North America""" +2023-04-11,52389,8514,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2903.35,"{\""promo\"": \""28%\""}",231902,1,"""South America""" +2024-09-16,52390,7774,"[\""Wireless Mouse\"", \""Monitor\""]",4188.65,{},196718,1,"""Europe""" +2024-11-18,52391,3253,"[\""Charger\"", \""Laptop\""]",2246.53,"{\""promo\"": \""20%\""}",159135,1,"""Africa""" +2024-02-17,52392,198,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2486.4,"{\""loyalty\"": \""5%\""}",213640,0,"""Asia""" +2023-11-22,52393,1462,"[\""Keyboard\"", \""Headphones\""]",3465.99,{},179813,0,"""Europe""" +2023-09-29,52394,3641,"[\""Headphones\""]",3978.12,{},194416,1,"""North America""" +2023-08-02,52395,3471,"[\""Monitor\"", \""Keyboard\""]",1572.79,"{\""loyalty\"": \""18%\""}",138063,0,"""Asia""" +2024-11-24,52396,6966,"[\""Laptop\"", \""Headphones\""]",2654.78,{},193677,0,"""Europe""" +2024-06-26,52397,2775,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4625.21,"{\""promo\"": \""12%\""}",170227,0,"""North America""" +2024-01-21,52398,6159,"[\""Charger\""]",3624.54,{},242890,1,"""North America""" +2023-06-07,52399,9805,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1827.15,{},263047,0,"""South America""" +2023-03-31,52400,708,"[\""Laptop\""]",1634.94,"{\""seasonal\"": \""7%\""}",72476,1,"""North America""" +2023-08-29,52401,6602,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1433.49,{},104459,1,"""North America""" +2023-11-07,52402,9174,"[\""Charger\""]",1057.08,{},116909,0,"""South America""" +2023-03-04,52403,3893,"[\""Monitor\"", \""Tablet\""]",3508.27,{},49855,1,"""South America""" +2024-04-05,52404,5291,"[\""Headphones\""]",2448.55,{},259943,0,"""Africa""" +2024-12-21,52405,6392,"[\""Laptop\"", \""Tablet\""]",4338.74,"{\""loyalty\"": \""21%\""}",109449,0,"""Africa""" +2023-01-25,52406,4120,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3098.75,"{\""loyalty\"": \""8%\""}",140005,0,"""Europe""" +2024-12-27,52407,1802,"[\""Tablet\"", \""Phone\""]",4334.83,"{\""loyalty\"": \""20%\""}",1668,1,"""Europe""" +2023-05-28,52408,8612,"[\""Tablet\"", \""Monitor\""]",1009.16,"{\""seasonal\"": \""27%\""}",231359,0,"""South America""" +2024-02-22,52409,8838,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3581.67,"{\""loyalty\"": \""17%\""}",8336,0,"""Europe""" +2023-07-01,52410,5764,"[\""Keyboard\""]",3311.88,"{\"": \""23%\""}",117121,0,"""Europe""" +2024-06-08,52411,1053,"[\""Phone\""]",3056.78,{},61650,1,"""South America""" +2024-01-02,52412,1123,"[\""Wireless Mouse\""]",3758.28,{},75888,1,"""Africa""" +2024-07-01,52413,1356,"[\""Keyboard\""]",2136.67,{},28176,0,"""Africa""" +2024-04-22,52414,8435,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3842.54,{},246917,0,"""Africa""" +2024-04-24,52415,4693,"[\""Headphones\""]",1065.93,"{\""loyalty\"": \""24%\""}",32158,0,"""Africa""" +2023-12-28,52416,1344,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3935.26,{},177098,0,"""Europe""" +2024-02-27,52417,7081,"[\""Tablet\"", \""Phone\"", \""Charger\""]",376.76,{},290367,0,"""North America""" +2024-07-20,52418,9440,"[\""Charger\""]",3101.79,{},289156,1,"""North America""" +2023-02-26,52419,7844,"[\""Monitor\""]",1867.48,{},174997,0,"""Asia""" +2023-09-20,52420,5625,"[\""Phone\"", \""Wireless Mouse\""]",2666.16,{},116862,1,"""Asia""" +2024-08-05,52421,4123,"[\""Charger\"", \""Laptop\""]",1130.72,"{\""loyalty\"": \""15%\""}",73224,1,"""South America""" +2023-02-10,52422,2841,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",213.32,"{\""loyalty\"": \""28%\""}",225758,1,"""Europe""" +2024-11-26,52423,5269,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2792.1,{},204602,0,"""North America""" +2023-09-15,52424,2538,"[\""Laptop\""]",1683.53,{},169150,0,"""Africa""" +2024-03-28,52425,3088,"[\""Headphones\""]",4699.64,"{\""promo\"": \""10%\""}",269866,1,"""North America""" +2024-10-16,52426,4450,"[\""Charger\""]",2065.21,{},118656,1,"""Africa""" +2024-07-16,52427,9956,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3848.02,"{\""loyalty\"": \""7%\""}",273138,0,"""South America""" +2024-05-03,52428,1828,"[\""Charger\""]",1828.75,"{\"": \""9%\""}",120576,1,"""Africa""" +2024-04-08,52429,3715,"[\""Keyboard\"", \""Laptop\""]",583.99,{},95253,1,"""Europe""" +2024-12-18,52430,9132,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2401.93,"{\"": \""20%\""}",203063,1,"""South America""" +2023-12-17,52431,2999,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4025.69,{},263727,0,"""North America""" +2024-02-11,52432,4461,"[\""Headphones\""]",4393.25,"{\""loyalty\"": \""14%\""}",30803,0,"""North America""" +2024-08-03,52433,4132,"[\""Tablet\"", \""Wireless Mouse\""]",4861.7,{},199792,0,"""Asia""" +2024-11-14,52434,9462,"[\""Headphones\"", \""Tablet\""]",1243.37,"{\""seasonal\"": \""18%\""}",297844,0,"""Africa""" +2023-01-04,52435,4958,"[\""Tablet\""]",1757.35,{},142654,0,"""Asia""" +2024-03-29,52436,8569,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1663.89,"{\""loyalty\"": \""8%\""}",12574,1,"""South America""" +2023-06-25,52437,7616,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",623.14,"{\"": \""27%\""}",287281,1,"""North America""" +2024-11-28,52438,6619,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3171.41,{},88470,0,"""Asia""" +2023-08-11,52439,8181,"[\""Wireless Mouse\"", \""Monitor\""]",3147.43,{},195830,0,"""Africa""" +2023-05-28,52440,4671,"[\""Charger\""]",3960.06,"{\"": \""8%\""}",260320,1,"""Africa""" +2023-02-28,52441,6266,"[\""Monitor\""]",351.67,{},126645,1,"""Africa""" +2024-12-22,52442,5649,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2742.36,{},147929,0,"""South America""" +2024-03-11,52443,4628,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4334.95,{},88139,0,"""Asia""" +2024-11-16,52444,2713,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3005.72,{},66012,0,"""South America""" +2024-12-19,52445,4381,"[\""Tablet\"", \""Monitor\""]",4360.36,{},267133,1,"""North America""" +2024-04-20,52446,8776,"[\""Phone\"", \""Charger\""]",1920.28,{},220935,1,"""Europe""" +2024-09-21,52447,1201,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4227.23,{},270113,0,"""Europe""" +2024-05-02,52448,8084,"[\""Laptop\""]",2489.41,"{\""promo\"": \""22%\""}",235423,0,"""Europe""" +2024-11-30,52449,8070,"[\""Headphones\"", \""Wireless Mouse\""]",1311.19,{},44552,1,"""North America""" +2024-09-09,52450,1895,"[\""Wireless Mouse\"", \""Monitor\""]",4463.45,{},193527,0,"""North America""" +2023-12-23,52451,3299,"[\""Headphones\"", \""Wireless Mouse\""]",2513.33,{},254316,0,"""Europe""" +2023-01-15,52452,487,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1823.44,"{\""loyalty\"": \""26%\""}",13401,1,"""Africa""" +2023-05-09,52453,6397,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4248.91,"{\""loyalty\"": \""23%\""}",229698,0,"""Asia""" +2024-08-19,52454,4173,"[\""Wireless Mouse\""]",1337.01,{},60667,0,"""Africa""" +2024-10-21,52455,331,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1821.88,{},91079,1,"""Europe""" +2024-10-22,52456,3648,"[\""Headphones\"", \""Charger\""]",4587.17,{},50470,0,"""South America""" +2023-06-14,52457,8914,"[\""Phone\"", \""Charger\""]",1125.55,{},266052,1,"""North America""" +2024-08-14,52458,9608,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4876.6,{},271313,1,"""Africa""" +2024-01-01,52459,21,"[\""Charger\"", \""Laptop\""]",2074.2,{},254388,1,"""South America""" +2024-02-18,52460,499,"[\""Charger\"", \""Monitor\""]",2889.31,"{\""seasonal\"": \""21%\""}",254730,0,"""Africa""" +2023-11-15,52461,4970,"[\""Charger\"", \""Laptop\""]",3048.43,{},292563,1,"""Asia""" +2023-10-17,52462,8759,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3898.26,{},41457,1,"""Europe""" +2024-09-14,52463,5338,"[\""Tablet\""]",1001.4,{},125755,0,"""Africa""" +2024-03-28,52464,3990,"[\""Charger\""]",2405.46,"{\""promo\"": \""10%\""}",51267,1,"""Africa""" +2024-09-30,52465,2247,"[\""Charger\"", \""Wireless Mouse\""]",1214.65,{},259086,1,"""Africa""" +2024-11-05,52466,992,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3833.67,"{\"": \""11%\""}",135899,0,"""North America""" +2024-01-29,52467,6394,"[\""Wireless Mouse\""]",997.31,{},280342,0,"""Asia""" +2023-10-15,52468,5513,"[\""Monitor\"", \""Wireless Mouse\""]",658.95,"{\""seasonal\"": \""14%\""}",204245,0,"""North America""" +2023-09-09,52469,6663,"[\""Tablet\""]",4285.3,"{\""promo\"": \""24%\""}",205018,0,"""South America""" +2023-09-02,52470,7433,"[\""Laptop\""]",318.37,{},79156,1,"""North America""" +2023-02-26,52471,1070,"[\""Monitor\"", \""Charger\""]",3371.89,"{\""seasonal\"": \""8%\""}",260679,1,"""Africa""" +2023-06-21,52472,4174,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",504.01,"{\""promo\"": \""16%\""}",143653,0,"""North America""" +2023-05-11,52473,2844,"[\""Wireless Mouse\"", \""Tablet\""]",2084.08,{},8915,0,"""Asia""" +2023-01-11,52474,4361,"[\""Monitor\""]",3747.74,"{\""seasonal\"": \""8%\""}",237893,1,"""South America""" +2024-02-21,52475,4378,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",833.27,"{\""loyalty\"": \""12%\""}",249556,0,"""South America""" +2023-08-15,52476,6535,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",968.26,{},194825,0,"""Africa""" +2023-07-14,52477,9628,"[\""Laptop\"", \""Headphones\""]",4292.32,"{\"": \""20%\""}",112287,1,"""Europe""" +2024-05-04,52478,8843,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2859.28,"{\""seasonal\"": \""21%\""}",212404,0,"""Asia""" +2024-12-07,52479,8376,"[\""Wireless Mouse\"", \""Phone\""]",3921.78,"{\""seasonal\"": \""17%\""}",89372,0,"""Africa""" +2024-01-11,52480,6236,"[\""Charger\"", \""Tablet\""]",4938.49,"{\""promo\"": \""7%\""}",290247,1,"""Europe""" +2023-12-02,52481,5961,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1180.6,"{\""loyalty\"": \""19%\""}",283987,0,"""Asia""" +2023-11-04,52482,630,"[\""Laptop\""]",1401.6,"{\"": \""30%\""}",181916,1,"""Europe""" +2023-01-23,52483,1644,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3354.84,"{\""loyalty\"": \""15%\""}",10476,1,"""South America""" +2023-11-16,52484,6497,"[\""Charger\""]",2541.33,"{\""loyalty\"": \""14%\""}",77214,1,"""South America""" +2023-11-06,52485,1679,"[\""Headphones\""]",2272.86,{},43323,1,"""South America""" +2023-04-29,52486,426,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3170.86,{},49102,1,"""Asia""" +2024-06-10,52487,461,"[\""Tablet\"", \""Headphones\""]",2464.68,{},51928,0,"""Europe""" +2024-07-06,52488,3374,"[\""Wireless Mouse\"", \""Keyboard\""]",4548.12,"{\"": \""26%\""}",55784,1,"""South America""" +2023-06-21,52489,4391,"[\""Keyboard\""]",3277.96,"{\""seasonal\"": \""16%\""}",190426,1,"""North America""" +2023-10-01,52490,7587,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1295.14,"{\""loyalty\"": \""30%\""}",22751,0,"""Africa""" +2023-09-01,52491,6208,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4559.9,"{\""loyalty\"": \""23%\""}",261539,0,"""Europe""" +2024-02-27,52492,8965,"[\""Laptop\"", \""Monitor\""]",4138.53,{},15254,1,"""South America""" +2024-01-25,52493,2761,"[\""Charger\"", \""Phone\""]",4942.18,"{\""seasonal\"": \""29%\""}",116564,1,"""Asia""" +2023-06-26,52494,915,"[\""Keyboard\""]",295.41,"{\""promo\"": \""8%\""}",283180,1,"""Africa""" +2024-01-15,52495,9709,"[\""Phone\""]",1999.04,{},19736,0,"""Europe""" +2023-05-02,52496,898,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1964.63,{},19579,0,"""Asia""" +2024-01-29,52497,2795,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2655.45,{},59452,0,"""Africa""" +2024-07-04,52498,4515,"[\""Charger\"", \""Keyboard\""]",150.73,{},290447,0,"""Europe""" +2023-05-27,52499,6789,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",462.87,{},273803,0,"""North America""" +2024-02-24,52500,7057,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1748.81,"{\""loyalty\"": \""23%\""}",15865,0,"""Africa""" +2023-01-20,52501,7590,"[\""Monitor\"", \""Keyboard\""]",2398.08,{},41094,0,"""Europe""" +2023-02-24,52502,1611,"[\""Phone\""]",4902.8,{},61819,0,"""Africa""" +2024-09-18,52503,703,"[\""Monitor\"", \""Phone\""]",4278.84,"{\""promo\"": \""18%\""}",123669,0,"""Africa""" +2024-05-12,52504,3385,"[\""Charger\"", \""Laptop\""]",3190.19,{},221921,1,"""Europe""" +2023-07-09,52505,5594,"[\""Headphones\"", \""Laptop\""]",3330.16,{},90869,1,"""Africa""" +2024-10-22,52506,243,"[\""Laptop\""]",1164.99,"{\"": \""22%\""}",232426,1,"""Europe""" +2024-02-11,52507,9609,"[\""Phone\""]",3366.32,{},267206,1,"""Africa""" +2024-03-04,52508,1999,"[\""Wireless Mouse\""]",4502.58,"{\"": \""29%\""}",20326,0,"""Asia""" +2023-09-22,52509,8304,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1359.59,{},201427,0,"""Asia""" +2023-01-06,52510,6288,"[\""Headphones\"", \""Wireless Mouse\""]",185.28,{},218298,0,"""South America""" +2023-04-27,52511,5579,"[\""Phone\"", \""Wireless Mouse\""]",4506.27,{},295394,1,"""North America""" +2024-07-16,52512,1357,"[\""Monitor\""]",439.07,{},273107,1,"""Europe""" +2024-02-29,52513,6534,"[\""Laptop\"", \""Monitor\""]",4117.83,{},250596,1,"""South America""" +2023-12-25,52514,2507,"[\""Keyboard\"", \""Phone\""]",2471.57,"{\"": \""17%\""}",239892,1,"""South America""" +2024-02-15,52515,5113,"[\""Headphones\""]",4663.0,"{\"": \""18%\""}",274138,1,"""Europe""" +2024-02-21,52516,627,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1826.75,"{\"": \""26%\""}",32479,1,"""Asia""" +2023-07-22,52517,6306,"[\""Wireless Mouse\""]",2928.41,"{\"": \""14%\""}",82686,0,"""Africa""" +2023-11-21,52518,4328,"[\""Headphones\""]",4007.78,{},9433,0,"""North America""" +2024-05-20,52519,9959,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1951.08,{},246625,1,"""Africa""" +2023-07-28,52520,6361,"[\""Keyboard\"", \""Tablet\""]",1280.33,{},19969,0,"""Europe""" +2023-04-04,52521,6417,"[\""Phone\"", \""Monitor\"", \""Charger\""]",554.03,{},67195,1,"""Asia""" +2023-02-08,52522,1991,"[\""Charger\""]",2232.49,{},11702,1,"""North America""" +2023-07-14,52523,6037,"[\""Laptop\"", \""Tablet\""]",3064.33,{},15395,0,"""Europe""" +2023-01-13,52524,314,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4204.16,{},56604,0,"""South America""" +2024-04-17,52525,8014,"[\""Keyboard\"", \""Headphones\""]",1119.19,"{\""seasonal\"": \""13%\""}",220109,1,"""South America""" +2023-03-03,52526,3063,"[\""Keyboard\""]",3992.55,"{\"": \""19%\""}",73757,0,"""South America""" +2023-02-12,52527,5703,"[\""Monitor\""]",4495.74,"{\""promo\"": \""21%\""}",161744,0,"""Asia""" +2024-03-08,52528,1551,"[\""Monitor\"", \""Phone\""]",3216.24,"{\""promo\"": \""22%\""}",275655,0,"""Europe""" +2023-04-30,52529,6376,"[\""Tablet\""]",2992.06,"{\""promo\"": \""28%\""}",154513,0,"""North America""" +2024-12-11,52530,5164,"[\""Tablet\"", \""Keyboard\""]",297.33,{},110713,0,"""Europe""" +2024-05-14,52531,6334,"[\""Laptop\""]",1933.9,"{\""seasonal\"": \""7%\""}",18965,1,"""Asia""" +2024-06-25,52532,763,"[\""Phone\"", \""Wireless Mouse\""]",1198.32,"{\""loyalty\"": \""26%\""}",299175,1,"""South America""" +2024-05-24,52533,2363,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3320.4,"{\""loyalty\"": \""11%\""}",65626,0,"""North America""" +2024-04-22,52534,3249,"[\""Charger\""]",3148.27,{},77221,0,"""Africa""" +2023-06-04,52535,9012,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1415.21,{},69719,1,"""Asia""" +2024-04-30,52536,5728,"[\""Charger\"", \""Keyboard\""]",1907.69,"{\""loyalty\"": \""12%\""}",192397,0,"""Europe""" +2023-07-31,52537,1185,"[\""Laptop\"", \""Headphones\""]",1190.67,{},181120,0,"""South America""" +2024-04-04,52538,1702,"[\""Headphones\"", \""Tablet\""]",2713.0,"{\""seasonal\"": \""19%\""}",152271,0,"""Asia""" +2024-05-28,52539,8618,"[\""Tablet\""]",4947.55,{},111884,1,"""Asia""" +2023-03-25,52540,4594,"[\""Keyboard\"", \""Headphones\""]",3008.99,{},141706,0,"""Asia""" +2023-05-14,52541,2864,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3278.58,{},197819,1,"""North America""" +2024-12-20,52542,2282,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4382.83,{},7274,0,"""South America""" +2023-01-10,52543,9663,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",937.06,"{\""loyalty\"": \""20%\""}",118929,1,"""Africa""" +2023-11-05,52544,9651,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1434.47,"{\"": \""21%\""}",57916,0,"""Europe""" +2024-05-26,52545,4018,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4798.11,{},20734,1,"""North America""" +2023-02-25,52546,7873,"[\""Headphones\""]",392.9,{},217218,0,"""North America""" +2024-07-15,52547,3971,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3746.9,"{\""loyalty\"": \""24%\""}",201817,0,"""Europe""" +2023-01-16,52548,3135,"[\""Wireless Mouse\""]",3860.88,{},240437,0,"""Asia""" +2023-11-19,52549,2221,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",132.58,"{\""seasonal\"": \""24%\""}",244631,1,"""Asia""" +2023-02-12,52550,9357,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",681.49,{},84406,0,"""North America""" +2023-10-07,52551,2298,"[\""Laptop\""]",963.82,{},286995,1,"""Asia""" +2023-06-18,52552,6473,"[\""Charger\""]",1216.35,"{\""promo\"": \""24%\""}",190099,0,"""Africa""" +2024-11-29,52553,7878,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2453.26,"{\""seasonal\"": \""12%\""}",136602,0,"""North America""" +2024-08-26,52554,6599,"[\""Charger\""]",2791.07,{},74653,1,"""North America""" +2023-08-15,52555,4319,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3841.63,{},159435,0,"""Asia""" +2023-11-27,52556,4756,"[\""Keyboard\""]",2060.72,{},138232,1,"""North America""" +2024-05-10,52557,7692,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",634.78,{},150157,0,"""Africa""" +2024-04-19,52558,1752,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2506.11,{},216784,1,"""Europe""" +2023-11-22,52559,7844,"[\""Headphones\""]",3587.36,"{\""seasonal\"": \""23%\""}",76812,0,"""Asia""" +2024-03-02,52560,4326,"[\""Wireless Mouse\""]",524.88,"{\""loyalty\"": \""23%\""}",119034,0,"""South America""" +2023-08-16,52561,5049,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2958.96,"{\""promo\"": \""23%\""}",7515,0,"""Asia""" +2023-06-28,52562,5795,"[\""Laptop\"", \""Monitor\""]",3201.25,"{\""promo\"": \""16%\""}",12167,1,"""North America""" +2023-08-19,52563,9776,"[\""Headphones\"", \""Tablet\""]",993.74,{},147748,1,"""South America""" +2023-02-23,52564,2312,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2868.29,"{\"": \""29%\""}",122820,0,"""Africa""" +2023-03-03,52565,3554,"[\""Wireless Mouse\""]",825.97,{},180985,0,"""Africa""" +2023-03-15,52566,9866,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",129.9,"{\""promo\"": \""24%\""}",293712,1,"""South America""" +2023-10-24,52567,7360,"[\""Charger\""]",4609.48,{},243560,1,"""Asia""" +2023-09-13,52568,6736,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2014.12,{},234020,0,"""Asia""" +2023-06-14,52569,4077,"[\""Laptop\""]",4589.78,"{\"": \""18%\""}",78758,0,"""Africa""" +2023-01-03,52570,4973,"[\""Wireless Mouse\""]",2906.71,{},14573,1,"""Asia""" +2023-04-03,52571,7786,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3956.27,{},267792,1,"""Africa""" +2023-09-04,52572,232,"[\""Phone\""]",320.3,{},243782,0,"""Asia""" +2024-03-21,52573,355,"[\""Keyboard\""]",4887.77,"{\"": \""24%\""}",180573,1,"""North America""" +2024-09-22,52574,1112,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3284.73,{},7469,0,"""Africa""" +2024-12-15,52575,1182,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2384.57,{},47891,1,"""North America""" +2024-04-06,52576,3787,"[\""Phone\""]",3141.71,{},129737,0,"""Asia""" +2024-01-14,52577,4255,"[\""Monitor\"", \""Wireless Mouse\""]",4390.82,{},30967,1,"""Asia""" +2024-06-18,52578,1982,"[\""Phone\""]",4143.95,{},257214,0,"""Europe""" +2023-10-02,52579,9787,"[\""Monitor\""]",224.15,{},24547,1,"""South America""" +2024-04-22,52580,9207,"[\""Charger\""]",2904.77,"{\""loyalty\"": \""14%\""}",126383,0,"""Africa""" +2023-10-30,52581,9626,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",426.03,{},255188,1,"""Asia""" +2023-02-14,52582,5125,"[\""Tablet\""]",3850.93,{},299539,0,"""South America""" +2024-12-12,52583,5911,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3946.69,"{\""loyalty\"": \""25%\""}",215034,0,"""North America""" +2024-02-16,52584,2193,"[\""Charger\"", \""Phone\""]",388.72,{},202954,1,"""Asia""" +2023-04-20,52585,2047,"[\""Laptop\"", \""Phone\""]",3298.66,{},256187,1,"""Asia""" +2024-10-14,52586,7919,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3054.24,"{\""promo\"": \""25%\""}",126196,1,"""South America""" +2023-12-21,52587,6207,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3170.52,{},23327,0,"""Africa""" +2023-09-01,52588,7959,"[\""Keyboard\""]",3692.76,{},286612,1,"""North America""" +2024-07-21,52589,7845,"[\""Headphones\""]",4554.13,"{\"": \""24%\""}",218952,0,"""South America""" +2023-09-03,52590,313,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3732.63,{},89226,1,"""South America""" +2024-05-26,52591,8157,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3685.62,"{\""loyalty\"": \""16%\""}",33372,0,"""Africa""" +2023-03-19,52592,4451,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2546.01,{},55065,1,"""North America""" +2023-11-18,52593,4437,"[\""Wireless Mouse\"", \""Monitor\""]",2861.86,"{\""loyalty\"": \""9%\""}",273651,0,"""North America""" +2023-08-04,52594,509,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3890.47,{},85479,0,"""Africa""" +2024-03-03,52595,4544,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4178.69,"{\""promo\"": \""17%\""}",151347,0,"""Africa""" +2023-01-03,52596,4313,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4727.73,{},66683,1,"""Europe""" +2023-09-29,52597,8797,"[\""Wireless Mouse\""]",1844.61,"{\""promo\"": \""23%\""}",111111,1,"""Europe""" +2023-12-14,52598,5082,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2170.21,"{\""loyalty\"": \""13%\""}",202441,0,"""South America""" +2023-05-02,52599,8712,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3216.98,{},190836,1,"""Asia""" +2023-08-24,52600,5770,"[\""Phone\""]",4111.5,{},3507,0,"""Asia""" +2024-04-19,52601,3284,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1168.32,{},106501,0,"""Africa""" +2023-05-21,52602,1781,"[\""Monitor\"", \""Wireless Mouse\""]",3078.14,"{\""loyalty\"": \""5%\""}",141405,1,"""South America""" +2024-02-10,52603,8682,"[\""Monitor\"", \""Keyboard\""]",4617.53,{},209865,0,"""Europe""" +2023-01-25,52604,888,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2335.47,"{\"": \""13%\""}",284352,0,"""North America""" +2023-07-12,52605,6789,"[\""Monitor\"", \""Headphones\""]",4067.66,"{\""seasonal\"": \""7%\""}",169716,0,"""Asia""" +2023-10-27,52606,2770,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4807.41,"{\""seasonal\"": \""28%\""}",136559,1,"""North America""" +2023-12-10,52607,8841,"[\""Wireless Mouse\"", \""Headphones\""]",3955.41,"{\""loyalty\"": \""17%\""}",215406,1,"""Europe""" +2023-11-14,52608,9530,"[\""Keyboard\"", \""Laptop\""]",2957.58,{},178085,1,"""North America""" +2024-01-15,52609,5277,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4179.91,{},116290,0,"""Europe""" +2023-11-24,52610,2545,"[\""Phone\"", \""Headphones\""]",2770.69,{},278795,1,"""South America""" +2024-12-29,52611,981,"[\""Keyboard\"", \""Wireless Mouse\""]",717.89,{},35395,1,"""North America""" +2024-03-15,52612,7695,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4238.88,{},260054,1,"""Asia""" +2023-10-19,52613,3375,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3009.0,"{\"": \""6%\""}",161957,1,"""Asia""" +2024-03-19,52614,7582,"[\""Wireless Mouse\"", \""Monitor\""]",1960.81,"{\"": \""8%\""}",49825,0,"""Africa""" +2023-04-10,52615,4232,"[\""Charger\""]",1948.96,{},19409,0,"""South America""" +2023-10-29,52616,1817,"[\""Wireless Mouse\"", \""Tablet\""]",3524.78,{},46659,1,"""South America""" +2023-12-20,52617,1702,"[\""Tablet\"", \""Laptop\""]",4797.3,{},88789,1,"""South America""" +2024-04-27,52618,3224,"[\""Monitor\"", \""Laptop\""]",3509.56,"{\""promo\"": \""20%\""}",162968,1,"""South America""" +2023-05-22,52619,388,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2434.8,"{\""promo\"": \""8%\""}",143449,1,"""North America""" +2024-09-21,52620,6588,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3877.24,"{\""promo\"": \""18%\""}",184907,0,"""Asia""" +2024-06-18,52621,4316,"[\""Monitor\"", \""Laptop\""]",405.73,{},87885,1,"""North America""" +2024-07-29,52622,8429,"[\""Monitor\"", \""Wireless Mouse\""]",4241.89,{},38985,1,"""South America""" +2024-06-30,52623,7877,"[\""Wireless Mouse\""]",2302.83,{},195745,1,"""Africa""" +2023-01-23,52624,3183,"[\""Wireless Mouse\"", \""Headphones\""]",1917.35,{},131029,1,"""Europe""" +2024-04-26,52625,5472,"[\""Tablet\""]",783.69,"{\""loyalty\"": \""10%\""}",64888,0,"""Europe""" +2024-01-10,52626,2843,"[\""Charger\"", \""Tablet\""]",2340.54,{},19047,0,"""Europe""" +2024-01-20,52627,4564,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2396.46,{},147931,1,"""Africa""" +2024-05-10,52628,2302,"[\""Tablet\""]",1521.58,"{\""loyalty\"": \""17%\""}",166005,1,"""Europe""" +2023-06-13,52629,5112,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3420.53,{},143680,1,"""North America""" +2024-10-14,52630,3456,"[\""Headphones\"", \""Tablet\""]",1888.38,{},166553,1,"""Asia""" +2023-01-21,52631,6075,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1689.66,{},296569,0,"""North America""" +2024-05-18,52632,6602,"[\""Phone\"", \""Keyboard\""]",3169.53,{},252994,0,"""Europe""" +2023-10-08,52633,4157,"[\""Wireless Mouse\""]",1705.54,{},127682,1,"""Africa""" +2023-12-18,52634,6117,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4671.47,{},173069,1,"""South America""" +2023-11-17,52635,9009,"[\""Charger\"", \""Monitor\""]",4407.05,{},32099,1,"""North America""" +2024-07-09,52636,5709,"[\""Laptop\"", \""Keyboard\""]",1140.54,{},182632,0,"""Europe""" +2023-05-13,52637,2495,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",654.29,{},200041,0,"""Europe""" +2023-04-07,52638,8493,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4718.4,{},128041,0,"""Asia""" +2024-11-23,52639,6381,"[\""Keyboard\"", \""Charger\""]",1653.31,"{\""loyalty\"": \""9%\""}",279309,0,"""Europe""" +2023-02-27,52640,7712,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",294.49,"{\"": \""27%\""}",105464,1,"""Africa""" +2024-06-10,52641,6783,"[\""Laptop\"", \""Headphones\""]",3939.74,{},142221,0,"""Europe""" +2023-04-10,52642,2187,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2570.57,"{\""loyalty\"": \""27%\""}",51551,0,"""Asia""" +2023-05-25,52643,5921,"[\""Keyboard\"", \""Tablet\""]",1556.03,{},240243,0,"""South America""" +2024-10-15,52644,1956,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",500.83,"{\""loyalty\"": \""8%\""}",148850,1,"""Africa""" +2023-01-01,52645,8177,"[\""Headphones\""]",1643.35,"{\""promo\"": \""20%\""}",247344,1,"""Africa""" +2023-10-26,52646,9238,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1434.56,{},46694,0,"""South America""" +2024-06-13,52647,5712,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4399.15,"{\"": \""11%\""}",196406,0,"""South America""" +2023-01-05,52648,7256,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",769.3,"{\""loyalty\"": \""8%\""}",84614,1,"""Africa""" +2024-08-16,52649,1099,"[\""Headphones\"", \""Laptop\""]",213.66,{},225227,0,"""Asia""" +2024-12-06,52650,5957,"[\""Charger\""]",2548.24,{},271259,1,"""Asia""" +2023-12-13,52651,6792,"[\""Laptop\"", \""Headphones\""]",2009.48,"{\""seasonal\"": \""27%\""}",212509,1,"""South America""" +2023-05-01,52652,4611,"[\""Tablet\""]",3811.22,"{\""loyalty\"": \""29%\""}",11703,0,"""South America""" +2024-10-01,52653,7975,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2291.8,{},26587,1,"""North America""" +2023-07-18,52654,520,"[\""Laptop\""]",1033.91,"{\"": \""20%\""}",32857,0,"""Asia""" +2024-12-03,52655,6315,"[\""Wireless Mouse\"", \""Headphones\""]",4676.73,{},21121,0,"""Europe""" +2023-11-24,52656,6352,"[\""Laptop\""]",925.51,{},12847,1,"""North America""" +2024-01-03,52657,5064,"[\""Headphones\"", \""Keyboard\""]",247.56,{},52251,1,"""South America""" +2023-10-29,52658,802,"[\""Phone\"", \""Charger\""]",3238.63,{},5311,0,"""South America""" +2024-11-01,52659,5138,"[\""Charger\"", \""Headphones\""]",3126.27,"{\""seasonal\"": \""9%\""}",240713,1,"""North America""" +2023-10-13,52660,4813,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1428.35,{},297408,1,"""Africa""" +2023-11-14,52661,2195,"[\""Tablet\"", \""Keyboard\""]",2272.18,"{\""promo\"": \""9%\""}",130362,1,"""Europe""" +2024-01-17,52662,7531,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3919.13,{},79523,1,"""Europe""" +2024-03-10,52663,4943,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3389.77,"{\""seasonal\"": \""16%\""}",23246,1,"""North America""" +2024-09-13,52664,3309,"[\""Laptop\"", \""Phone\""]",178.94,"{\""seasonal\"": \""25%\""}",279862,1,"""Asia""" +2023-10-06,52665,2152,"[\""Monitor\""]",1074.45,"{\""loyalty\"": \""25%\""}",67346,0,"""Asia""" +2023-03-27,52666,7092,"[\""Monitor\""]",827.77,"{\""seasonal\"": \""18%\""}",211591,1,"""Europe""" +2023-04-22,52667,1370,"[\""Phone\""]",3789.82,"{\""seasonal\"": \""30%\""}",206918,1,"""Africa""" +2023-09-18,52668,3901,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2455.5,{},113033,0,"""Africa""" +2023-03-25,52669,821,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4406.47,"{\""loyalty\"": \""22%\""}",100904,1,"""North America""" +2023-07-29,52670,2632,"[\""Monitor\""]",3034.09,{},157396,0,"""Europe""" +2023-11-12,52671,6919,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1360.96,"{\""seasonal\"": \""10%\""}",249820,0,"""North America""" +2023-07-20,52672,2288,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2828.2,"{\"": \""29%\""}",197204,1,"""South America""" +2023-11-04,52673,6256,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2242.65,"{\"": \""20%\""}",161099,0,"""Europe""" +2023-09-15,52674,3340,"[\""Charger\""]",406.84,"{\""loyalty\"": \""27%\""}",189087,1,"""Asia""" +2023-07-31,52675,1625,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",740.52,"{\""seasonal\"": \""15%\""}",257378,0,"""Europe""" +2024-01-04,52676,3423,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3055.75,{},8946,1,"""Africa""" +2023-05-03,52677,2710,"[\""Charger\"", \""Wireless Mouse\""]",3488.27,{},154756,1,"""Europe""" +2024-12-15,52678,266,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",545.37,{},271673,1,"""South America""" +2024-02-07,52679,5190,"[\""Tablet\"", \""Phone\""]",2299.59,{},173319,1,"""South America""" +2024-02-14,52680,2603,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1087.98,"{\""seasonal\"": \""22%\""}",154218,1,"""Europe""" +2023-11-11,52681,1565,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",60.73,{},100780,1,"""Africa""" +2023-03-28,52682,6928,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",690.46,{},200382,0,"""Europe""" +2023-09-23,52683,4694,"[\""Headphones\""]",91.38,"{\""seasonal\"": \""25%\""}",215716,1,"""Europe""" +2024-08-24,52684,4594,"[\""Keyboard\""]",3550.96,"{\""promo\"": \""6%\""}",261406,0,"""Africa""" +2023-04-27,52685,8430,"[\""Monitor\""]",4698.83,{},156558,1,"""North America""" +2023-07-27,52686,1499,"[\""Phone\""]",3815.44,"{\"": \""12%\""}",166516,0,"""North America""" +2024-07-28,52687,5532,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1808.56,{},199455,0,"""Asia""" +2024-09-28,52688,1082,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2279.96,"{\"": \""20%\""}",33983,1,"""North America""" +2024-08-12,52689,3328,"[\""Charger\""]",3387.11,"{\""seasonal\"": \""26%\""}",241299,0,"""Europe""" +2023-03-04,52690,987,"[\""Charger\"", \""Laptop\""]",2669.49,{},288218,0,"""Africa""" +2024-04-13,52691,1525,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4934.57,{},286014,1,"""Africa""" +2024-01-12,52692,8331,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3452.0,"{\"": \""21%\""}",164168,0,"""South America""" +2024-04-10,52693,5248,"[\""Phone\"", \""Charger\""]",4776.22,"{\"": \""11%\""}",249373,0,"""Asia""" +2024-08-21,52694,1552,"[\""Monitor\""]",3879.25,"{\"": \""11%\""}",14209,1,"""North America""" +2024-10-24,52695,9459,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2212.02,{},108087,1,"""Asia""" +2024-08-17,52696,9201,"[\""Charger\""]",2033.76,"{\""seasonal\"": \""28%\""}",233720,0,"""South America""" +2024-09-10,52697,1345,"[\""Charger\""]",2793.26,"{\""loyalty\"": \""27%\""}",87714,1,"""Africa""" +2023-12-10,52698,8870,"[\""Charger\"", \""Tablet\""]",3238.38,"{\""promo\"": \""10%\""}",177428,0,"""Africa""" +2023-12-12,52699,4302,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1741.14,{},119044,0,"""Africa""" +2024-04-22,52700,6891,"[\""Phone\"", \""Keyboard\""]",4960.34,{},155166,1,"""Asia""" +2023-11-16,52701,6187,"[\""Tablet\""]",2881.06,{},65548,1,"""Asia""" +2023-08-29,52702,6986,"[\""Phone\"", \""Monitor\""]",1826.48,{},170728,0,"""North America""" +2023-02-04,52703,494,"[\""Tablet\"", \""Keyboard\""]",3345.52,"{\"": \""5%\""}",84788,1,"""North America""" +2023-11-02,52704,2857,"[\""Tablet\""]",2444.99,"{\""seasonal\"": \""11%\""}",143235,0,"""South America""" +2023-01-21,52705,1780,"[\""Monitor\""]",4213.49,"{\""promo\"": \""17%\""}",17983,1,"""North America""" +2024-04-12,52706,8769,"[\""Laptop\""]",471.14,{},155473,0,"""Europe""" +2023-10-14,52707,1052,"[\""Laptop\""]",2768.49,{},99312,1,"""Asia""" +2024-03-21,52708,6128,"[\""Headphones\"", \""Monitor\""]",292.97,"{\""promo\"": \""14%\""}",48334,1,"""Asia""" +2023-01-26,52709,8006,"[\""Charger\""]",647.2,"{\""loyalty\"": \""20%\""}",2481,0,"""North America""" +2023-10-02,52710,6948,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2227.23,"{\""promo\"": \""11%\""}",135728,1,"""Asia""" +2024-11-12,52711,1878,"[\""Phone\"", \""Charger\""]",3756.12,{},130082,0,"""Europe""" +2023-01-14,52712,4900,"[\""Laptop\""]",1473.94,{},107904,1,"""North America""" +2024-12-13,52713,9229,"[\""Tablet\""]",747.42,{},155604,0,"""South America""" +2023-08-08,52714,3730,"[\""Wireless Mouse\""]",1342.78,"{\""promo\"": \""19%\""}",174939,0,"""Asia""" +2023-04-25,52715,7499,"[\""Laptop\"", \""Headphones\""]",138.04,"{\"": \""18%\""}",240702,0,"""Europe""" +2024-01-29,52716,8468,"[\""Laptop\"", \""Charger\""]",4148.69,"{\"": \""23%\""}",93348,1,"""Asia""" +2024-05-22,52717,6652,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1487.24,"{\""promo\"": \""21%\""}",69102,0,"""Asia""" +2023-09-05,52718,1999,"[\""Tablet\"", \""Laptop\""]",4348.09,"{\""promo\"": \""11%\""}",7702,0,"""South America""" +2023-08-19,52719,3947,"[\""Headphones\""]",3149.25,"{\""promo\"": \""16%\""}",98022,0,"""Asia""" +2023-03-14,52720,9119,"[\""Wireless Mouse\""]",2620.27,"{\""loyalty\"": \""19%\""}",111802,0,"""Africa""" +2024-05-20,52721,4378,"[\""Keyboard\""]",567.31,{},29853,0,"""Asia""" +2023-05-13,52722,1346,"[\""Charger\""]",189.46,{},198415,0,"""South America""" +2024-07-29,52723,4159,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1077.98,"{\""seasonal\"": \""24%\""}",250467,0,"""South America""" +2023-03-06,52724,2790,"[\""Wireless Mouse\"", \""Laptop\""]",1432.94,"{\"": \""27%\""}",252715,1,"""North America""" +2023-12-22,52725,837,"[\""Tablet\"", \""Phone\""]",2045.06,{},84596,0,"""North America""" +2024-05-11,52726,5856,"[\""Charger\"", \""Tablet\""]",968.51,"{\""seasonal\"": \""29%\""}",34602,0,"""Africa""" +2024-06-01,52727,1326,"[\""Monitor\""]",2633.3,"{\"": \""25%\""}",101617,1,"""Europe""" +2024-10-05,52728,8283,"[\""Keyboard\"", \""Laptop\""]",3167.75,{},38110,0,"""Europe""" +2024-09-14,52729,5492,"[\""Wireless Mouse\""]",4996.0,"{\""seasonal\"": \""10%\""}",79853,1,"""South America""" +2023-09-09,52730,8518,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",968.61,{},77459,0,"""South America""" +2024-07-29,52731,6809,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4437.38,{},80321,0,"""Asia""" +2024-06-25,52732,7994,"[\""Phone\""]",1274.52,{},184048,0,"""North America""" +2024-06-09,52733,6033,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2365.99,"{\"": \""14%\""}",217282,0,"""South America""" +2024-08-04,52734,8595,"[\""Tablet\"", \""Laptop\""]",2347.11,{},163268,0,"""Africa""" +2023-10-16,52735,9502,"[\""Tablet\"", \""Laptop\""]",2881.03,"{\""seasonal\"": \""29%\""}",281221,1,"""Africa""" +2023-06-09,52736,5112,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4979.47,{},40248,1,"""Europe""" +2024-12-06,52737,2603,"[\""Monitor\""]",809.33,{},295690,0,"""South America""" +2024-01-05,52738,2084,"[\""Keyboard\"", \""Monitor\""]",4200.19,{},209437,0,"""Asia""" +2023-10-02,52739,8693,"[\""Charger\"", \""Laptop\""]",338.25,{},38414,1,"""Asia""" +2023-08-28,52740,9315,"[\""Tablet\"", \""Keyboard\""]",2258.56,{},15193,1,"""Europe""" +2023-06-24,52741,6759,"[\""Keyboard\""]",1557.29,{},138020,0,"""North America""" +2024-01-30,52742,5969,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2678.11,"{\""seasonal\"": \""25%\""}",197645,1,"""South America""" +2023-02-17,52743,2286,"[\""Wireless Mouse\""]",3809.63,{},164144,1,"""North America""" +2024-04-24,52744,3047,"[\""Wireless Mouse\"", \""Laptop\""]",4358.74,"{\"": \""29%\""}",294056,0,"""South America""" +2024-11-23,52745,3456,"[\""Charger\"", \""Laptop\""]",4248.92,"{\""promo\"": \""22%\""}",246369,1,"""Africa""" +2024-08-02,52746,8146,"[\""Laptop\"", \""Keyboard\""]",2452.06,{},184546,0,"""North America""" +2023-01-16,52747,5173,"[\""Laptop\"", \""Keyboard\""]",3991.97,{},47134,1,"""Africa""" +2023-01-01,52748,263,"[\""Phone\""]",1939.03,{},269274,0,"""Africa""" +2024-01-02,52749,5505,"[\""Laptop\""]",4934.18,{},35074,1,"""Africa""" +2024-10-03,52750,207,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",749.04,{},194047,1,"""Africa""" +2024-01-23,52751,3681,"[\""Headphones\""]",4860.03,{},5728,1,"""Europe""" +2023-07-16,52752,189,"[\""Charger\""]",1097.42,"{\""loyalty\"": \""14%\""}",227399,0,"""Europe""" +2023-04-12,52753,5381,"[\""Phone\"", \""Monitor\""]",254.8,"{\"": \""29%\""}",299530,0,"""South America""" +2024-11-23,52754,8729,"[\""Wireless Mouse\"", \""Headphones\""]",491.72,{},285361,1,"""Europe""" +2023-08-25,52755,2800,"[\""Headphones\"", \""Laptop\""]",3595.74,"{\""seasonal\"": \""18%\""}",196265,1,"""Europe""" +2023-03-04,52756,2654,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2469.36,"{\""promo\"": \""18%\""}",217944,1,"""North America""" +2023-06-04,52757,5058,"[\""Phone\""]",4840.7,"{\""promo\"": \""9%\""}",277682,1,"""Asia""" +2023-01-18,52758,6597,"[\""Charger\""]",4260.43,"{\"": \""17%\""}",215846,0,"""Africa""" +2023-02-14,52759,8417,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3349.84,"{\""promo\"": \""8%\""}",129555,1,"""Asia""" +2023-04-22,52760,5103,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2737.18,{},186182,0,"""South America""" +2023-03-05,52761,4676,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2049.04,{},71446,0,"""North America""" +2024-05-22,52762,6052,"[\""Keyboard\""]",3963.1,"{\""loyalty\"": \""18%\""}",173221,1,"""Europe""" +2024-10-11,52763,2901,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3287.08,{},285267,1,"""North America""" +2023-08-01,52764,3473,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3899.05,"{\""promo\"": \""8%\""}",9935,0,"""Europe""" +2023-08-15,52765,9885,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3594.78,{},149272,0,"""South America""" +2023-11-05,52766,8434,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3373.49,"{\""promo\"": \""15%\""}",299625,1,"""Europe""" +2023-04-10,52767,1343,"[\""Wireless Mouse\""]",4068.85,{},248717,0,"""Africa""" +2023-08-22,52768,895,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1449.79,{},129715,0,"""Asia""" +2024-11-12,52769,7729,"[\""Monitor\""]",1503.02,{},298699,0,"""Europe""" +2023-08-12,52770,703,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3332.34,{},278881,1,"""Europe""" +2024-02-13,52771,2814,"[\""Headphones\"", \""Phone\""]",2814.67,"{\""promo\"": \""14%\""}",105452,1,"""Asia""" +2024-08-22,52772,6964,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1230.31,"{\""loyalty\"": \""26%\""}",238266,1,"""Europe""" +2024-11-11,52773,5005,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2113.18,"{\""loyalty\"": \""20%\""}",271684,1,"""Europe""" +2023-01-31,52774,1892,"[\""Keyboard\""]",1996.74,{},277576,0,"""South America""" +2023-01-13,52775,5223,"[\""Phone\"", \""Keyboard\""]",3611.3,{},52492,1,"""Asia""" +2023-11-22,52776,6640,"[\""Charger\""]",2667.33,"{\"": \""8%\""}",246457,1,"""Asia""" +2024-09-10,52777,3095,"[\""Charger\""]",4616.54,{},124881,1,"""Europe""" +2024-12-16,52778,7423,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1909.35,"{\"": \""14%\""}",172030,1,"""North America""" +2023-06-09,52779,6364,"[\""Tablet\""]",2217.49,"{\""loyalty\"": \""7%\""}",244381,1,"""South America""" +2024-05-24,52780,6461,"[\""Headphones\"", \""Charger\""]",2433.55,{},255069,0,"""Europe""" +2023-03-14,52781,91,"[\""Keyboard\""]",2096.49,"{\""promo\"": \""22%\""}",167238,1,"""South America""" +2024-08-01,52782,9030,"[\""Tablet\"", \""Laptop\""]",3619.84,{},185696,1,"""Europe""" +2023-08-25,52783,8687,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1482.96,{},38575,0,"""Africa""" +2023-09-09,52784,3063,"[\""Headphones\""]",4217.53,{},5935,1,"""North America""" +2024-09-24,52785,4052,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4544.96,{},28947,1,"""Asia""" +2023-12-28,52786,5988,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3483.19,{},205079,1,"""Asia""" +2023-12-02,52787,1933,"[\""Keyboard\""]",2944.64,{},159219,1,"""Europe""" +2024-09-17,52788,8374,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4315.64,{},119787,1,"""Africa""" +2024-02-28,52789,3880,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4456.4,{},93256,1,"""Asia""" +2024-04-13,52790,887,"[\""Phone\""]",4405.19,"{\""seasonal\"": \""24%\""}",271976,1,"""North America""" +2023-11-13,52791,7107,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4389.03,{},219726,0,"""North America""" +2024-04-18,52792,8754,"[\""Phone\"", \""Tablet\""]",2034.94,{},24648,1,"""Europe""" +2024-10-17,52793,9659,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1279.96,"{\""promo\"": \""5%\""}",272457,0,"""Europe""" +2024-09-02,52794,1070,"[\""Phone\"", \""Laptop\""]",4089.12,"{\""seasonal\"": \""23%\""}",261789,0,"""Europe""" +2024-05-09,52795,2198,"[\""Phone\""]",2572.75,{},53360,0,"""South America""" +2023-06-26,52796,8687,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",72.08,"{\"": \""28%\""}",130260,1,"""Europe""" +2024-11-10,52797,4421,"[\""Keyboard\""]",786.49,{},194432,0,"""Europe""" +2023-02-22,52798,312,"[\""Charger\"", \""Headphones\""]",2431.0,{},11728,0,"""South America""" +2023-01-05,52799,1874,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",666.0,"{\"": \""29%\""}",99132,1,"""Europe""" +2024-06-05,52800,6811,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3304.62,{},104919,1,"""North America""" +2023-07-16,52801,3809,"[\""Keyboard\""]",2128.37,{},20819,0,"""North America""" +2023-11-14,52802,6137,"[\""Charger\""]",1242.01,"{\""seasonal\"": \""6%\""}",36588,0,"""North America""" +2023-07-13,52803,1612,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2382.1,"{\"": \""30%\""}",138338,1,"""Africa""" +2024-04-14,52804,5947,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4663.76,"{\""seasonal\"": \""24%\""}",247206,0,"""Asia""" +2023-01-14,52805,6979,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4023.41,{},224402,0,"""North America""" +2023-06-02,52806,8374,"[\""Tablet\"", \""Wireless Mouse\""]",4488.8,{},241533,1,"""Europe""" +2023-07-15,52807,7475,"[\""Phone\"", \""Wireless Mouse\""]",134.02,{},73802,0,"""South America""" +2024-04-25,52808,6005,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3495.32,"{\""loyalty\"": \""24%\""}",261606,1,"""Europe""" +2024-09-28,52809,7578,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1972.59,{},183375,0,"""South America""" +2024-04-20,52810,2581,"[\""Keyboard\"", \""Charger\""]",2573.58,"{\""loyalty\"": \""18%\""}",254492,0,"""Africa""" +2023-06-25,52811,2899,"[\""Keyboard\""]",4979.96,{},136057,1,"""Africa""" +2024-01-17,52812,6458,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1996.71,{},124736,0,"""Africa""" +2024-01-15,52813,7479,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1364.47,{},6533,0,"""South America""" +2023-01-30,52814,7598,"[\""Laptop\""]",2578.66,{},38611,0,"""Africa""" +2023-01-07,52815,4365,"[\""Headphones\""]",1292.36,{},253534,0,"""South America""" +2024-11-04,52816,6813,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4656.64,"{\""seasonal\"": \""13%\""}",31917,0,"""Asia""" +2023-09-03,52817,436,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2232.95,"{\"": \""7%\""}",132852,1,"""Europe""" +2023-08-08,52818,2688,"[\""Laptop\"", \""Charger\""]",704.06,{},195376,1,"""Asia""" +2024-05-23,52819,1695,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1265.02,{},167383,0,"""North America""" +2024-05-01,52820,1323,"[\""Charger\"", \""Keyboard\""]",4259.56,{},22336,1,"""Asia""" +2024-11-23,52821,2048,"[\""Laptop\""]",462.99,"{\""seasonal\"": \""10%\""}",23279,1,"""Asia""" +2023-07-17,52822,5405,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",795.12,"{\""loyalty\"": \""17%\""}",211510,1,"""North America""" +2024-10-07,52823,1938,"[\""Laptop\""]",4915.81,"{\""seasonal\"": \""17%\""}",202031,1,"""Asia""" +2023-05-16,52824,1274,"[\""Laptop\""]",420.32,{},119652,0,"""Asia""" +2024-08-01,52825,2799,"[\""Tablet\"", \""Keyboard\""]",1718.4,{},252863,1,"""Africa""" +2023-07-07,52826,2466,"[\""Wireless Mouse\"", \""Laptop\""]",4633.91,"{\""seasonal\"": \""27%\""}",173403,1,"""Europe""" +2024-04-18,52827,7739,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1380.24,"{\""seasonal\"": \""26%\""}",122529,0,"""North America""" +2023-10-13,52828,928,"[\""Keyboard\"", \""Phone\""]",1510.94,{},267235,1,"""Asia""" +2023-07-15,52829,8884,"[\""Tablet\"", \""Phone\""]",1109.63,"{\""loyalty\"": \""27%\""}",173869,1,"""Africa""" +2024-04-13,52830,972,"[\""Monitor\"", \""Laptop\""]",1957.03,"{\"": \""19%\""}",164309,0,"""South America""" +2023-07-09,52831,5558,"[\""Laptop\"", \""Charger\""]",3281.22,"{\""loyalty\"": \""23%\""}",243488,0,"""Europe""" +2023-12-17,52832,5942,"[\""Tablet\"", \""Wireless Mouse\""]",4157.21,"{\""promo\"": \""5%\""}",57996,1,"""South America""" +2023-01-18,52833,5893,"[\""Tablet\"", \""Wireless Mouse\""]",4209.33,"{\""promo\"": \""14%\""}",186351,0,"""Africa""" +2024-11-02,52834,3768,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3328.84,"{\""loyalty\"": \""7%\""}",256507,1,"""Europe""" +2023-08-01,52835,5327,"[\""Phone\"", \""Headphones\""]",3020.86,"{\"": \""22%\""}",221446,0,"""Europe""" +2024-07-04,52836,2985,"[\""Monitor\""]",2898.36,{},211020,1,"""North America""" +2023-05-12,52837,4043,"[\""Keyboard\""]",2565.89,{},95368,1,"""South America""" +2023-09-09,52838,101,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",989.12,{},49210,1,"""Africa""" +2023-01-16,52839,747,"[\""Headphones\""]",1723.45,{},238026,1,"""North America""" +2024-02-24,52840,7178,"[\""Wireless Mouse\""]",959.99,"{\"": \""30%\""}",139206,1,"""Africa""" +2023-04-11,52841,9112,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",169.81,{},240743,0,"""Europe""" +2023-02-02,52842,5051,"[\""Charger\""]",4739.08,"{\""loyalty\"": \""15%\""}",213555,1,"""Europe""" +2024-08-09,52843,8639,"[\""Laptop\"", \""Tablet\""]",2143.84,{},245081,1,"""Asia""" +2023-10-23,52844,5238,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2191.99,{},186397,1,"""Asia""" +2023-10-07,52845,744,"[\""Monitor\""]",1210.95,"{\""seasonal\"": \""15%\""}",71014,0,"""North America""" +2024-09-27,52846,1904,"[\""Keyboard\""]",983.62,{},213479,0,"""North America""" +2023-01-02,52847,8308,"[\""Monitor\""]",3409.6,{},275247,1,"""South America""" +2024-02-18,52848,4522,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4515.14,{},84613,1,"""North America""" +2024-11-17,52849,7010,"[\""Monitor\""]",3414.62,"{\""promo\"": \""16%\""}",130008,1,"""North America""" +2024-02-12,52850,7281,"[\""Monitor\""]",4503.07,{},53324,0,"""Asia""" +2024-05-30,52851,335,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4017.42,"{\""promo\"": \""20%\""}",10662,1,"""Europe""" +2024-01-02,52852,2061,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1351.34,{},49241,0,"""North America""" +2024-11-12,52853,358,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2625.94,{},63947,0,"""Africa""" +2023-11-24,52854,7182,"[\""Keyboard\"", \""Headphones\""]",1988.53,{},291519,0,"""North America""" +2023-11-11,52855,1933,"[\""Tablet\"", \""Monitor\""]",377.27,{},182766,0,"""Africa""" +2023-07-03,52856,1547,"[\""Phone\""]",1699.71,"{\"": \""18%\""}",106562,1,"""Asia""" +2024-10-20,52857,9131,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4957.96,"{\""promo\"": \""28%\""}",18904,0,"""Africa""" +2023-06-24,52858,6085,"[\""Monitor\""]",4376.99,{},230950,0,"""South America""" +2023-05-04,52859,721,"[\""Phone\"", \""Wireless Mouse\""]",2744.0,"{\""loyalty\"": \""29%\""}",98737,1,"""Europe""" +2023-06-19,52860,175,"[\""Laptop\""]",3386.9,{},249987,0,"""North America""" +2024-02-09,52861,7153,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3697.1,"{\"": \""8%\""}",57978,0,"""North America""" +2024-03-26,52862,2176,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4606.22,"{\""loyalty\"": \""24%\""}",163503,0,"""North America""" +2023-02-05,52863,4969,"[\""Headphones\"", \""Wireless Mouse\""]",1142.57,"{\"": \""12%\""}",287036,1,"""South America""" +2023-03-27,52864,4663,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1249.99,"{\"": \""18%\""}",153428,1,"""Africa""" +2023-01-18,52865,5667,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1300.53,{},30065,1,"""Europe""" +2023-05-14,52866,8917,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",838.45,{},97989,1,"""Asia""" +2023-11-03,52867,2532,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4051.26,{},217439,1,"""South America""" +2024-05-21,52868,8388,"[\""Phone\"", \""Keyboard\""]",3633.93,"{\""seasonal\"": \""13%\""}",256890,0,"""Africa""" +2023-12-19,52869,5409,"[\""Wireless Mouse\""]",2135.93,"{\""loyalty\"": \""27%\""}",77671,1,"""Africa""" +2024-09-21,52870,8891,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1678.7,{},34568,1,"""Asia""" +2023-01-05,52871,4347,"[\""Laptop\""]",999.52,"{\""promo\"": \""27%\""}",269269,1,"""Africa""" +2023-12-05,52872,835,"[\""Phone\"", \""Charger\"", \""Monitor\""]",171.07,"{\""promo\"": \""21%\""}",171133,0,"""Europe""" +2024-08-12,52873,9072,"[\""Monitor\"", \""Laptop\""]",3394.24,{},294782,1,"""Europe""" +2024-10-29,52874,8040,"[\""Wireless Mouse\"", \""Phone\""]",2309.5,"{\""seasonal\"": \""8%\""}",40951,0,"""Asia""" +2024-02-03,52875,820,"[\""Headphones\"", \""Phone\""]",3843.13,"{\""promo\"": \""27%\""}",214222,0,"""Africa""" +2024-05-01,52876,688,"[\""Headphones\"", \""Tablet\""]",85.89,"{\"": \""19%\""}",190902,1,"""South America""" +2023-07-10,52877,6847,"[\""Wireless Mouse\""]",677.98,"{\""loyalty\"": \""10%\""}",212107,0,"""Africa""" +2023-02-15,52878,252,"[\""Keyboard\""]",2737.95,{},141109,1,"""South America""" +2024-06-16,52879,359,"[\""Phone\"", \""Laptop\""]",3493.0,{},64253,1,"""Europe""" +2023-02-06,52880,2679,"[\""Monitor\"", \""Keyboard\""]",865.52,{},211118,0,"""North America""" +2023-12-31,52881,2371,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1065.72,"{\""loyalty\"": \""26%\""}",263113,0,"""South America""" +2024-08-13,52882,7433,"[\""Keyboard\""]",3508.82,{},155345,0,"""Europe""" +2024-12-06,52883,7259,"[\""Wireless Mouse\"", \""Keyboard\""]",3868.07,"{\"": \""9%\""}",227187,1,"""North America""" +2023-10-19,52884,5974,"[\""Phone\"", \""Headphones\""]",4104.84,{},82273,0,"""North America""" +2024-05-22,52885,3989,"[\""Laptop\""]",4384.86,"{\"": \""19%\""}",181044,0,"""Africa""" +2024-07-07,52886,5990,"[\""Headphones\"", \""Keyboard\""]",76.19,"{\"": \""26%\""}",139555,0,"""South America""" +2024-09-02,52887,4994,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",147.17,"{\""seasonal\"": \""30%\""}",27942,0,"""Asia""" +2024-08-11,52888,3433,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",81.85,"{\""loyalty\"": \""20%\""}",56593,1,"""Asia""" +2023-05-17,52889,4905,"[\""Wireless Mouse\"", \""Phone\""]",4344.95,"{\""seasonal\"": \""7%\""}",275030,1,"""Asia""" +2024-04-09,52890,597,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1148.69,"{\""seasonal\"": \""15%\""}",164165,1,"""Europe""" +2024-08-17,52891,5530,"[\""Headphones\""]",2737.78,{},183327,0,"""Africa""" +2024-04-14,52892,838,"[\""Keyboard\""]",3695.22,"{\"": \""7%\""}",110328,0,"""Europe""" +2024-04-16,52893,9871,"[\""Keyboard\""]",1470.37,{},193582,0,"""South America""" +2024-10-20,52894,704,"[\""Wireless Mouse\""]",3596.83,{},58716,1,"""North America""" +2023-09-03,52895,6778,"[\""Tablet\""]",4705.51,{},212520,1,"""Africa""" +2023-02-04,52896,9042,"[\""Laptop\""]",1633.6,"{\""loyalty\"": \""11%\""}",166895,1,"""South America""" +2023-07-01,52897,1051,"[\""Headphones\""]",107.37,"{\""loyalty\"": \""13%\""}",238938,1,"""Africa""" +2023-05-13,52898,9761,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1161.95,{},110793,0,"""Europe""" +2024-01-23,52899,5486,"[\""Laptop\"", \""Phone\""]",2378.08,"{\""seasonal\"": \""7%\""}",61907,0,"""North America""" +2024-05-16,52900,3843,"[\""Tablet\""]",4136.1,"{\""promo\"": \""29%\""}",250634,1,"""Africa""" +2023-08-12,52901,4478,"[\""Charger\""]",2064.34,"{\""seasonal\"": \""22%\""}",161258,1,"""South America""" +2023-02-03,52902,4939,"[\""Keyboard\"", \""Phone\""]",2734.61,{},26517,1,"""Europe""" +2023-04-06,52903,5242,"[\""Phone\"", \""Keyboard\""]",2004.83,{},164985,1,"""Asia""" +2023-02-18,52904,3293,"[\""Phone\"", \""Headphones\""]",1641.78,"{\"": \""12%\""}",266789,0,"""Asia""" +2024-12-08,52905,9431,"[\""Charger\"", \""Monitor\""]",2463.91,"{\""seasonal\"": \""22%\""}",122524,1,"""Europe""" +2024-06-30,52906,8008,"[\""Wireless Mouse\"", \""Laptop\""]",3616.56,{},152329,0,"""Africa""" +2024-05-29,52907,1413,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4279.43,"{\""promo\"": \""14%\""}",168298,1,"""South America""" +2024-05-05,52908,7588,"[\""Headphones\""]",4100.06,{},220074,1,"""South America""" +2023-06-19,52909,965,"[\""Laptop\""]",4316.44,"{\"": \""29%\""}",26646,1,"""South America""" +2023-09-30,52910,5819,"[\""Charger\""]",3710.78,"{\"": \""14%\""}",232373,1,"""North America""" +2023-05-14,52911,119,"[\""Monitor\"", \""Charger\""]",2597.92,"{\""loyalty\"": \""27%\""}",99907,0,"""North America""" +2024-12-04,52912,9187,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1355.87,"{\""promo\"": \""25%\""}",136204,0,"""South America""" +2024-10-15,52913,6253,"[\""Headphones\"", \""Charger\""]",4919.24,{},49013,1,"""South America""" +2024-06-24,52914,8642,"[\""Tablet\"", \""Keyboard\""]",268.79,{},136529,1,"""South America""" +2024-04-23,52915,1939,"[\""Laptop\""]",3275.03,{},16940,0,"""Asia""" +2024-03-29,52916,6582,"[\""Headphones\""]",923.57,"{\""promo\"": \""8%\""}",17986,0,"""North America""" +2024-04-06,52917,5028,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",334.97,"{\""loyalty\"": \""22%\""}",172090,1,"""South America""" +2023-07-05,52918,4979,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2949.6,{},60276,1,"""South America""" +2024-04-23,52919,975,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1672.11,{},267107,1,"""Europe""" +2024-11-20,52920,6892,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2911.4,{},163020,1,"""South America""" +2023-07-17,52921,7837,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3792.64,"{\"": \""12%\""}",165303,1,"""Africa""" +2024-03-23,52922,9781,"[\""Keyboard\"", \""Monitor\""]",78.13,"{\""loyalty\"": \""16%\""}",124175,1,"""Africa""" +2023-07-24,52923,9306,"[\""Monitor\"", \""Laptop\""]",2535.33,"{\""loyalty\"": \""20%\""}",182618,0,"""North America""" +2024-11-22,52924,8006,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",708.69,{},4072,1,"""Europe""" +2024-11-14,52925,1276,"[\""Tablet\"", \""Charger\""]",2648.96,{},233830,1,"""North America""" +2024-09-19,52926,5762,"[\""Keyboard\""]",1294.6,"{\""seasonal\"": \""5%\""}",283249,0,"""Africa""" +2024-08-15,52927,5955,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",108.64,{},91420,1,"""South America""" +2024-09-10,52928,3594,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1043.31,"{\""promo\"": \""13%\""}",92444,1,"""North America""" +2023-05-26,52929,4163,"[\""Monitor\"", \""Keyboard\""]",1553.51,"{\""seasonal\"": \""28%\""}",136101,1,"""Europe""" +2024-11-21,52930,576,"[\""Headphones\"", \""Monitor\""]",1481.73,"{\""promo\"": \""5%\""}",137841,0,"""Africa""" +2023-03-17,52931,4377,"[\""Charger\"", \""Keyboard\""]",502.42,"{\""promo\"": \""10%\""}",165352,1,"""Asia""" +2023-12-10,52932,6895,"[\""Tablet\""]",279.72,"{\""loyalty\"": \""8%\""}",196391,0,"""Europe""" +2023-12-23,52933,2945,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1057.49,{},93454,0,"""South America""" +2023-02-05,52934,7615,"[\""Wireless Mouse\""]",3730.11,{},238247,1,"""South America""" +2023-09-17,52935,6799,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3574.5,{},236558,0,"""North America""" +2023-07-21,52936,7530,"[\""Headphones\""]",1060.66,{},150368,1,"""Asia""" +2023-05-27,52937,8088,"[\""Laptop\"", \""Keyboard\""]",1583.79,"{\""loyalty\"": \""17%\""}",109933,0,"""Asia""" +2023-08-19,52938,6627,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2623.98,{},243335,0,"""South America""" +2023-06-19,52939,3058,"[\""Phone\"", \""Laptop\"", \""Charger\""]",877.24,"{\""loyalty\"": \""23%\""}",283423,1,"""Asia""" +2023-03-23,52940,40,"[\""Phone\""]",3410.18,{},268621,0,"""Europe""" +2024-07-12,52941,4956,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4863.09,"{\"": \""20%\""}",163409,0,"""North America""" +2024-12-01,52942,1236,"[\""Charger\"", \""Tablet\""]",3973.67,{},32963,0,"""South America""" +2023-08-03,52943,8506,"[\""Keyboard\"", \""Headphones\""]",2996.56,{},30147,0,"""Europe""" +2023-11-13,52944,6046,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1600.76,{},266323,0,"""South America""" +2024-10-20,52945,9887,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4836.04,"{\"": \""20%\""}",188364,0,"""North America""" +2023-10-18,52946,8166,"[\""Monitor\""]",4288.7,{},114425,0,"""Africa""" +2024-11-24,52947,3194,"[\""Keyboard\"", \""Phone\""]",1850.04,{},233459,1,"""Africa""" +2023-02-12,52948,8410,"[\""Tablet\"", \""Phone\""]",4801.64,{},93257,1,"""Africa""" +2023-10-17,52949,301,"[\""Wireless Mouse\"", \""Laptop\""]",3902.84,{},127492,1,"""South America""" +2023-03-15,52950,3221,"[\""Tablet\""]",3402.94,{},277200,0,"""Africa""" +2023-04-28,52951,6400,"[\""Charger\""]",915.2,{},95137,1,"""Africa""" +2024-06-28,52952,7587,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3878.32,{},139721,0,"""Africa""" +2024-06-20,52953,2266,"[\""Charger\""]",1308.87,"{\""loyalty\"": \""29%\""}",156445,1,"""South America""" +2024-10-16,52954,7837,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2566.84,"{\"": \""20%\""}",111861,1,"""North America""" +2023-05-01,52955,9951,"[\""Monitor\""]",786.74,{},100546,0,"""Europe""" +2024-12-18,52956,9785,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2979.13,{},47875,0,"""Africa""" +2024-08-28,52957,1823,"[\""Wireless Mouse\"", \""Tablet\""]",208.07,{},266954,1,"""Europe""" +2024-10-16,52958,2706,"[\""Headphones\"", \""Wireless Mouse\""]",385.93,"{\""promo\"": \""5%\""}",295761,0,"""Africa""" +2024-08-26,52959,7117,"[\""Keyboard\"", \""Laptop\""]",2736.93,"{\""seasonal\"": \""12%\""}",167932,0,"""South America""" +2024-10-30,52960,7385,"[\""Tablet\"", \""Charger\""]",569.77,"{\""seasonal\"": \""13%\""}",173095,0,"""Africa""" +2023-06-17,52961,3424,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3279.19,"{\""loyalty\"": \""7%\""}",174338,0,"""Africa""" +2024-06-14,52962,4230,"[\""Laptop\"", \""Wireless Mouse\""]",2060.22,{},46549,0,"""Africa""" +2024-10-30,52963,6809,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2985.51,{},171345,1,"""Africa""" +2023-02-25,52964,5045,"[\""Monitor\""]",2274.31,{},157404,1,"""Asia""" +2023-02-22,52965,3797,"[\""Wireless Mouse\""]",2176.6,{},223797,1,"""Africa""" +2024-08-04,52966,5063,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3978.43,"{\"": \""27%\""}",11919,1,"""Asia""" +2023-06-27,52967,9898,"[\""Phone\""]",3206.47,{},113682,1,"""Europe""" +2023-10-20,52968,6202,"[\""Laptop\"", \""Headphones\""]",1050.32,{},26751,0,"""North America""" +2024-12-11,52969,2967,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1567.54,{},183710,0,"""South America""" +2023-06-03,52970,9614,"[\""Monitor\""]",2003.26,"{\""loyalty\"": \""24%\""}",2501,0,"""North America""" +2024-08-23,52971,1940,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2230.03,"{\""loyalty\"": \""26%\""}",90600,1,"""Africa""" +2024-09-29,52972,2838,"[\""Monitor\"", \""Phone\""]",1452.58,{},78250,1,"""South America""" +2023-11-24,52973,3859,"[\""Phone\""]",346.34,"{\""seasonal\"": \""15%\""}",225215,0,"""Africa""" +2023-01-07,52974,97,"[\""Laptop\"", \""Wireless Mouse\""]",3648.23,{},74242,1,"""Asia""" +2023-12-16,52975,7659,"[\""Laptop\"", \""Keyboard\""]",1388.0,"{\""seasonal\"": \""9%\""}",164260,0,"""North America""" +2023-02-07,52976,7950,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1660.35,"{\""promo\"": \""18%\""}",28147,0,"""South America""" +2024-12-24,52977,139,"[\""Monitor\"", \""Tablet\""]",1289.17,{},106254,1,"""South America""" +2024-11-19,52978,7039,"[\""Monitor\""]",2557.66,{},247808,1,"""North America""" +2024-04-25,52979,7030,"[\""Tablet\""]",311.22,{},51750,0,"""Africa""" +2023-03-27,52980,5807,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2673.44,"{\""seasonal\"": \""28%\""}",86454,1,"""Europe""" +2023-01-29,52981,942,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3257.43,"{\""loyalty\"": \""6%\""}",287663,1,"""South America""" +2024-11-14,52982,9602,"[\""Charger\""]",1798.94,{},136433,0,"""South America""" +2024-04-11,52983,8347,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1292.97,{},198605,1,"""Africa""" +2023-07-03,52984,5813,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3353.1,{},140286,0,"""North America""" +2023-03-11,52985,5523,"[\""Keyboard\"", \""Tablet\""]",722.05,"{\""promo\"": \""19%\""}",64369,0,"""Africa""" +2023-09-20,52986,287,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3321.75,{},99062,1,"""Africa""" +2024-11-10,52987,632,"[\""Wireless Mouse\""]",407.57,"{\""promo\"": \""27%\""}",63327,0,"""South America""" +2023-05-17,52988,1081,"[\""Wireless Mouse\""]",922.86,"{\""promo\"": \""11%\""}",116333,1,"""South America""" +2023-11-20,52989,34,"[\""Tablet\"", \""Headphones\""]",3310.85,{},186676,1,"""South America""" +2024-01-23,52990,1603,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3306.12,{},60305,0,"""North America""" +2024-01-30,52991,2829,"[\""Keyboard\"", \""Wireless Mouse\""]",4116.78,{},247007,1,"""Europe""" +2024-08-10,52992,5137,"[\""Charger\"", \""Keyboard\""]",4244.24,{},273965,1,"""Africa""" +2023-08-07,52993,7936,"[\""Wireless Mouse\""]",964.48,{},188949,0,"""Europe""" +2024-09-30,52994,7366,"[\""Keyboard\"", \""Charger\""]",4443.9,{},201075,1,"""South America""" +2024-12-09,52995,9386,"[\""Laptop\""]",3693.83,{},142427,1,"""Asia""" +2024-06-10,52996,1667,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3032.79,{},298375,1,"""South America""" +2023-10-06,52997,6911,"[\""Laptop\"", \""Wireless Mouse\""]",2370.96,{},130308,0,"""Europe""" +2023-04-06,52998,9995,"[\""Wireless Mouse\""]",1987.06,{},266428,1,"""Asia""" +2024-12-14,52999,4650,"[\""Keyboard\""]",4753.24,"{\""seasonal\"": \""17%\""}",281646,1,"""Africa""" +2024-10-18,53000,6901,"[\""Wireless Mouse\"", \""Charger\""]",1629.01,"{\""promo\"": \""12%\""}",209615,0,"""South America""" +2023-08-29,53001,5356,"[\""Tablet\"", \""Wireless Mouse\""]",4313.09,{},8952,0,"""Africa""" +2024-01-31,53002,714,"[\""Tablet\"", \""Wireless Mouse\""]",4700.48,{},235064,1,"""Asia""" +2024-05-07,53003,5061,"[\""Phone\"", \""Headphones\""]",3459.92,"{\""promo\"": \""16%\""}",275120,1,"""North America""" +2023-10-14,53004,7431,"[\""Headphones\""]",4924.7,"{\""seasonal\"": \""17%\""}",240657,1,"""Africa""" +2023-07-30,53005,1891,"[\""Phone\""]",3101.42,{},128967,0,"""Europe""" +2023-03-01,53006,5859,"[\""Keyboard\"", \""Phone\""]",932.89,{},261151,0,"""South America""" +2024-05-08,53007,3333,"[\""Monitor\"", \""Keyboard\""]",998.34,{},144879,1,"""Africa""" +2023-08-10,53008,9795,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4118.13,"{\""seasonal\"": \""12%\""}",63480,0,"""Asia""" +2024-03-07,53009,8078,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2418.41,"{\""seasonal\"": \""6%\""}",81773,0,"""South America""" +2023-11-01,53010,5456,"[\""Charger\""]",2945.23,{},58799,1,"""South America""" +2023-10-24,53011,1748,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4636.96,{},160057,1,"""Europe""" +2024-12-18,53012,2863,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",969.08,{},51019,1,"""Europe""" +2024-07-10,53013,3366,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2354.26,"{\""loyalty\"": \""30%\""}",298288,1,"""Asia""" +2024-05-01,53014,4142,"[\""Laptop\""]",455.45,{},100686,1,"""Africa""" +2024-02-26,53015,6423,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4392.3,"{\""loyalty\"": \""29%\""}",266320,0,"""Africa""" +2023-05-06,53016,3429,"[\""Monitor\""]",1627.46,"{\""promo\"": \""23%\""}",248141,1,"""Europe""" +2023-04-01,53017,4972,"[\""Tablet\""]",481.65,"{\""seasonal\"": \""12%\""}",218148,0,"""South America""" +2023-11-30,53018,2517,"[\""Laptop\"", \""Tablet\""]",4407.11,"{\""loyalty\"": \""8%\""}",43967,0,"""Asia""" +2024-12-29,53019,531,"[\""Laptop\"", \""Keyboard\""]",4263.83,"{\""promo\"": \""14%\""}",162835,1,"""South America""" +2024-04-16,53020,8987,"[\""Monitor\""]",3338.24,{},187942,0,"""North America""" +2023-06-20,53021,9588,"[\""Laptop\""]",285.67,{},259319,1,"""North America""" +2023-02-22,53022,9814,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4527.5,"{\""promo\"": \""25%\""}",181261,1,"""South America""" +2024-06-02,53023,4475,"[\""Monitor\"", \""Keyboard\""]",3422.96,"{\""promo\"": \""27%\""}",56975,0,"""South America""" +2024-09-15,53024,8421,"[\""Charger\"", \""Wireless Mouse\""]",138.96,"{\""seasonal\"": \""18%\""}",237547,1,"""Europe""" +2023-01-04,53025,9360,"[\""Tablet\"", \""Phone\""]",621.43,"{\"": \""19%\""}",114164,1,"""Asia""" +2024-10-18,53026,7009,"[\""Charger\"", \""Tablet\""]",2638.92,{},249754,0,"""North America""" +2023-10-20,53027,4914,"[\""Headphones\"", \""Tablet\""]",1099.04,"{\""loyalty\"": \""16%\""}",283083,0,"""North America""" +2023-03-30,53028,1112,"[\""Wireless Mouse\"", \""Headphones\""]",1330.02,"{\""loyalty\"": \""6%\""}",196461,1,"""Asia""" +2023-06-21,53029,8939,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2945.96,{},87327,1,"""South America""" +2024-01-07,53030,7602,"[\""Charger\""]",1619.9,"{\""promo\"": \""25%\""}",141408,0,"""North America""" +2023-01-12,53031,560,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3438.67,"{\""promo\"": \""6%\""}",52847,0,"""North America""" +2023-12-14,53032,7899,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1409.44,"{\""seasonal\"": \""14%\""}",199625,0,"""Europe""" +2024-06-28,53033,7038,"[\""Phone\""]",2484.27,"{\""loyalty\"": \""23%\""}",252829,0,"""South America""" +2024-12-27,53034,2696,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2366.61,{},57848,0,"""North America""" +2024-08-15,53035,2413,"[\""Monitor\"", \""Headphones\""]",2311.65,"{\""promo\"": \""26%\""}",141993,1,"""South America""" +2024-06-20,53036,3001,"[\""Laptop\"", \""Phone\""]",3812.75,"{\"": \""13%\""}",250287,0,"""South America""" +2024-01-14,53037,8602,"[\""Monitor\"", \""Keyboard\""]",1470.91,"{\""promo\"": \""22%\""}",28007,0,"""Asia""" +2024-06-13,53038,5629,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2001.83,{},235007,0,"""South America""" +2023-05-25,53039,2443,"[\""Headphones\"", \""Laptop\""]",355.67,{},20820,1,"""Europe""" +2024-10-27,53040,3642,"[\""Keyboard\"", \""Wireless Mouse\""]",934.89,{},61514,0,"""Asia""" +2023-11-15,53041,5096,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2512.98,"{\"": \""9%\""}",139968,1,"""Asia""" +2024-01-21,53042,1050,"[\""Headphones\""]",2265.4,"{\""promo\"": \""21%\""}",248840,1,"""South America""" +2024-08-29,53043,5062,"[\""Charger\"", \""Monitor\""]",2754.87,"{\""promo\"": \""5%\""}",177969,1,"""Europe""" +2024-08-09,53044,8090,"[\""Laptop\"", \""Charger\""]",888.98,{},89662,0,"""Asia""" +2024-08-29,53045,8724,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4103.46,{},36936,0,"""Asia""" +2024-09-02,53046,2165,"[\""Phone\"", \""Monitor\""]",3965.22,"{\""promo\"": \""28%\""}",103755,0,"""Africa""" +2023-05-10,53047,1233,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4235.75,"{\""seasonal\"": \""20%\""}",2446,1,"""Africa""" +2023-05-14,53048,8887,"[\""Wireless Mouse\"", \""Keyboard\""]",4833.19,{},151618,1,"""Europe""" +2024-05-05,53049,274,"[\""Keyboard\"", \""Monitor\""]",4248.81,"{\"": \""29%\""}",64580,1,"""North America""" +2024-02-07,53050,4080,"[\""Monitor\"", \""Charger\""]",128.23,"{\""promo\"": \""30%\""}",42846,0,"""Africa""" +2024-12-11,53051,6510,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2239.89,"{\"": \""9%\""}",265098,1,"""Asia""" +2024-03-29,53052,5700,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",411.09,"{\""seasonal\"": \""9%\""}",230796,1,"""North America""" +2024-10-14,53053,8983,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3812.27,"{\""promo\"": \""13%\""}",165260,0,"""Europe""" +2024-07-30,53054,5029,"[\""Wireless Mouse\""]",1766.88,"{\"": \""8%\""}",80951,0,"""Africa""" +2023-07-23,53055,4163,"[\""Keyboard\""]",3106.91,{},50379,0,"""Africa""" +2023-04-24,53056,2079,"[\""Tablet\""]",270.79,{},242228,1,"""North America""" +2023-02-22,53057,5138,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3866.39,{},82454,1,"""Africa""" +2023-11-22,53058,7722,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3618.06,{},88116,0,"""Asia""" +2023-09-07,53059,1542,"[\""Tablet\"", \""Wireless Mouse\""]",4292.96,{},16522,0,"""South America""" +2023-11-19,53060,692,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4756.99,{},102870,0,"""North America""" +2024-04-15,53061,9843,"[\""Laptop\"", \""Phone\""]",511.07,{},69053,1,"""Africa""" +2024-03-07,53062,6916,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2398.79,"{\""seasonal\"": \""23%\""}",247977,1,"""Europe""" +2024-01-10,53063,3590,"[\""Tablet\"", \""Wireless Mouse\""]",1637.41,{},33780,1,"""Africa""" +2023-08-06,53064,4311,"[\""Laptop\""]",4570.65,"{\""promo\"": \""5%\""}",114526,0,"""Africa""" +2024-07-27,53065,7223,"[\""Monitor\""]",3184.49,"{\""promo\"": \""22%\""}",211225,0,"""Asia""" +2023-05-26,53066,9726,"[\""Wireless Mouse\"", \""Charger\""]",676.66,"{\""promo\"": \""30%\""}",261024,0,"""South America""" +2024-01-19,53067,3079,"[\""Keyboard\"", \""Tablet\""]",4343.36,{},135056,0,"""North America""" +2023-08-22,53068,1316,"[\""Phone\"", \""Charger\""]",836.2,"{\""promo\"": \""7%\""}",208927,0,"""North America""" +2024-12-02,53069,5110,"[\""Laptop\"", \""Wireless Mouse\""]",1274.57,{},171518,1,"""Europe""" +2024-12-04,53070,8211,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2938.8,{},24426,0,"""Asia""" +2024-02-03,53071,9010,"[\""Charger\""]",3906.13,"{\""loyalty\"": \""10%\""}",272905,0,"""Africa""" +2023-10-14,53072,4427,"[\""Wireless Mouse\"", \""Laptop\""]",806.24,"{\""promo\"": \""29%\""}",71204,1,"""Africa""" +2024-11-09,53073,3714,"[\""Charger\"", \""Keyboard\""]",260.69,{},38399,1,"""South America""" +2024-11-25,53074,1358,"[\""Headphones\"", \""Wireless Mouse\""]",2146.68,"{\""loyalty\"": \""11%\""}",281229,0,"""Asia""" +2024-03-25,53075,2977,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4128.94,"{\""promo\"": \""20%\""}",277606,1,"""Asia""" +2023-11-20,53076,2723,"[\""Laptop\""]",3190.16,{},27034,1,"""Africa""" +2024-04-02,53077,8137,"[\""Wireless Mouse\"", \""Charger\""]",499.3,"{\""seasonal\"": \""13%\""}",90438,0,"""Africa""" +2024-03-20,53078,1958,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1498.35,{},77773,1,"""Asia""" +2023-06-16,53079,8570,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3480.59,{},64128,1,"""Europe""" +2023-08-29,53080,7862,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1512.85,"{\"": \""21%\""}",241080,0,"""Asia""" +2023-12-16,53081,5120,"[\""Headphones\"", \""Charger\""]",3507.15,"{\""seasonal\"": \""8%\""}",155292,0,"""Europe""" +2024-06-25,53082,8022,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3908.29,{},205613,1,"""Asia""" +2024-12-24,53083,6043,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2714.58,"{\""seasonal\"": \""26%\""}",231122,1,"""Europe""" +2023-07-12,53084,1308,"[\""Monitor\""]",2443.18,{},172674,0,"""South America""" +2023-09-17,53085,2664,"[\""Laptop\"", \""Monitor\""]",3904.28,{},130263,0,"""Asia""" +2023-09-11,53086,5005,"[\""Headphones\""]",4258.72,{},127410,0,"""Asia""" +2024-06-15,53087,4797,"[\""Wireless Mouse\"", \""Monitor\""]",3734.7,"{\""loyalty\"": \""18%\""}",177244,1,"""South America""" +2024-03-14,53088,3393,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2306.48,{},247904,0,"""Asia""" +2024-05-06,53089,2528,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",793.6,"{\""loyalty\"": \""26%\""}",1175,1,"""Europe""" +2024-11-11,53090,2155,"[\""Charger\"", \""Tablet\""]",919.1,"{\""promo\"": \""24%\""}",189642,1,"""North America""" +2024-12-27,53091,233,"[\""Laptop\""]",788.1,"{\""seasonal\"": \""30%\""}",159348,0,"""Asia""" +2023-11-29,53092,3904,"[\""Wireless Mouse\"", \""Tablet\""]",3772.77,"{\""promo\"": \""6%\""}",233587,0,"""Asia""" +2024-04-27,53093,424,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4700.7,"{\"": \""12%\""}",96117,1,"""North America""" +2023-12-02,53094,5365,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1745.68,{},181222,1,"""Europe""" +2024-10-19,53095,4133,"[\""Headphones\""]",2730.03,{},286436,0,"""Asia""" +2024-06-07,53096,9390,"[\""Wireless Mouse\""]",2181.91,{},118914,1,"""Africa""" +2024-02-08,53097,75,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2539.38,"{\""loyalty\"": \""13%\""}",120874,0,"""South America""" +2023-04-21,53098,9729,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2578.5,"{\""seasonal\"": \""21%\""}",15753,0,"""Europe""" +2023-12-10,53099,3111,"[\""Phone\""]",3701.8,{},47416,1,"""South America""" +2023-09-06,53100,5160,"[\""Headphones\"", \""Keyboard\""]",4376.69,"{\""seasonal\"": \""24%\""}",47267,1,"""Africa""" +2023-02-27,53101,2570,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",895.87,"{\""promo\"": \""26%\""}",283021,1,"""South America""" +2024-12-22,53102,3757,"[\""Phone\"", \""Tablet\""]",1608.57,"{\"": \""28%\""}",59983,0,"""North America""" +2023-05-23,53103,2846,"[\""Charger\""]",489.66,"{\""loyalty\"": \""28%\""}",157142,1,"""Africa""" +2023-01-18,53104,7609,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3031.43,{},2864,0,"""Asia""" +2023-01-26,53105,7192,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1976.68,"{\""seasonal\"": \""10%\""}",75424,1,"""Asia""" +2023-08-07,53106,510,"[\""Charger\""]",2059.55,"{\""promo\"": \""5%\""}",248341,0,"""South America""" +2023-11-08,53107,2421,"[\""Headphones\""]",3499.41,{},136790,1,"""South America""" +2024-04-30,53108,6596,"[\""Phone\"", \""Monitor\""]",143.43,{},23688,0,"""Asia""" +2024-06-03,53109,7080,"[\""Laptop\""]",4921.88,{},155195,0,"""Asia""" +2023-10-08,53110,9110,"[\""Keyboard\""]",290.57,{},136999,1,"""Asia""" +2023-03-07,53111,6934,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4547.32,"{\"": \""21%\""}",216723,1,"""North America""" +2024-10-14,53112,628,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",182.11,"{\""seasonal\"": \""5%\""}",218705,0,"""Europe""" +2024-12-14,53113,4166,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4942.04,{},232537,1,"""North America""" +2023-08-05,53114,6284,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",406.55,"{\"": \""11%\""}",230963,0,"""South America""" +2024-09-13,53115,7536,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3203.16,"{\"": \""24%\""}",193358,1,"""South America""" +2023-01-19,53116,1575,"[\""Keyboard\""]",327.17,"{\""loyalty\"": \""15%\""}",237643,1,"""Europe""" +2024-01-31,53117,9746,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",868.08,"{\""loyalty\"": \""29%\""}",255664,0,"""Europe""" +2023-04-27,53118,1784,"[\""Tablet\"", \""Keyboard\""]",3225.87,{},278824,1,"""Asia""" +2024-07-18,53119,4096,"[\""Charger\""]",815.85,"{\""seasonal\"": \""22%\""}",281306,1,"""Europe""" +2024-06-12,53120,1434,"[\""Keyboard\""]",358.72,"{\""promo\"": \""27%\""}",66083,1,"""South America""" +2023-05-17,53121,4520,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3336.38,"{\""loyalty\"": \""13%\""}",18698,0,"""South America""" +2023-03-19,53122,1171,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",156.56,{},88105,0,"""Asia""" +2023-08-14,53123,6707,"[\""Phone\""]",659.51,{},3696,0,"""South America""" +2024-05-31,53124,6520,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2375.59,"{\""loyalty\"": \""24%\""}",166087,1,"""Europe""" +2023-01-09,53125,1912,"[\""Wireless Mouse\"", \""Headphones\""]",4014.81,"{\""promo\"": \""24%\""}",143705,0,"""Asia""" +2023-05-07,53126,3804,"[\""Headphones\"", \""Keyboard\""]",1532.83,{},248868,1,"""Africa""" +2024-10-20,53127,9087,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",71.97,{},189049,0,"""Europe""" +2023-06-25,53128,1956,"[\""Headphones\"", \""Monitor\""]",1204.19,{},200826,1,"""Asia""" +2023-08-01,53129,6814,"[\""Wireless Mouse\""]",4880.7,"{\""loyalty\"": \""21%\""}",79396,0,"""Asia""" +2024-06-09,53130,27,"[\""Monitor\""]",4615.6,"{\""seasonal\"": \""11%\""}",137912,1,"""Europe""" +2023-08-30,53131,6582,"[\""Monitor\"", \""Charger\""]",1395.94,{},209193,0,"""North America""" +2023-07-03,53132,8461,"[\""Charger\""]",285.86,{},110130,0,"""North America""" +2023-09-26,53133,4763,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1871.11,{},97030,1,"""Europe""" +2023-10-07,53134,8737,"[\""Wireless Mouse\"", \""Charger\""]",4501.85,{},187119,0,"""Europe""" +2024-07-19,53135,3098,"[\""Monitor\""]",330.0,"{\""promo\"": \""29%\""}",138655,1,"""Africa""" +2023-08-04,53136,8888,"[\""Phone\"", \""Headphones\""]",1536.56,{},278351,0,"""North America""" +2024-11-07,53137,1383,"[\""Charger\"", \""Laptop\""]",1576.21,{},192496,1,"""Europe""" +2023-07-12,53138,7836,"[\""Tablet\""]",1260.11,{},198031,1,"""Europe""" +2024-05-29,53139,30,"[\""Keyboard\""]",1506.19,{},115974,0,"""Europe""" +2024-11-14,53140,6377,"[\""Wireless Mouse\"", \""Headphones\""]",3556.11,"{\"": \""16%\""}",116899,1,"""South America""" +2024-07-05,53141,6329,"[\""Headphones\"", \""Monitor\""]",4838.41,{},143402,0,"""Africa""" +2024-05-10,53142,9521,"[\""Headphones\""]",4378.49,"{\"": \""29%\""}",271280,1,"""Asia""" +2023-11-06,53143,1078,"[\""Charger\""]",4070.78,"{\"": \""28%\""}",142463,1,"""Europe""" +2024-12-25,53144,3557,"[\""Phone\"", \""Laptop\""]",1628.6,"{\""loyalty\"": \""7%\""}",21740,0,"""Africa""" +2024-10-24,53145,9894,"[\""Tablet\"", \""Laptop\""]",489.49,"{\""loyalty\"": \""6%\""}",153101,1,"""North America""" +2023-02-01,53146,3250,"[\""Laptop\"", \""Phone\"", \""Charger\""]",189.14,{},247978,0,"""Asia""" +2023-11-25,53147,5295,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1110.66,{},122032,1,"""South America""" +2023-06-26,53148,6630,"[\""Phone\"", \""Charger\"", \""Laptop\""]",93.63,{},80624,1,"""South America""" +2024-10-11,53149,5490,"[\""Laptop\""]",4880.98,{},94288,1,"""Asia""" +2024-01-24,53150,3863,"[\""Headphones\"", \""Tablet\""]",4740.98,"{\""loyalty\"": \""26%\""}",132955,0,"""South America""" +2024-05-02,53151,7798,"[\""Tablet\""]",346.78,"{\""loyalty\"": \""26%\""}",6815,0,"""Africa""" +2024-02-20,53152,9882,"[\""Monitor\"", \""Keyboard\""]",3021.34,{},185271,1,"""Africa""" +2024-09-23,53153,2687,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2312.37,{},285976,0,"""South America""" +2024-08-08,53154,9882,"[\""Wireless Mouse\"", \""Tablet\""]",3052.42,"{\"": \""26%\""}",262420,0,"""Asia""" +2023-08-22,53155,7112,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",656.92,"{\""promo\"": \""22%\""}",118937,1,"""Asia""" +2024-02-11,53156,1393,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2919.72,"{\""seasonal\"": \""19%\""}",77773,0,"""North America""" +2023-03-13,53157,771,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",162.09,"{\""seasonal\"": \""20%\""}",222612,0,"""South America""" +2024-11-17,53158,3734,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3874.74,"{\""seasonal\"": \""21%\""}",250397,0,"""Africa""" +2023-11-12,53159,3378,"[\""Headphones\""]",4911.39,{},11538,1,"""South America""" +2023-10-13,53160,9423,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",178.27,{},18020,1,"""North America""" +2023-04-01,53161,1401,"[\""Laptop\""]",583.69,{},280713,0,"""Africa""" +2023-07-24,53162,139,"[\""Tablet\""]",3061.8,"{\""seasonal\"": \""21%\""}",183052,0,"""Asia""" +2023-03-08,53163,4709,"[\""Keyboard\""]",3541.64,{},166443,0,"""North America""" +2024-12-13,53164,914,"[\""Keyboard\""]",3757.86,{},249585,0,"""Europe""" +2024-11-10,53165,1261,"[\""Phone\""]",446.52,{},221804,1,"""Europe""" +2024-05-17,53166,3455,"[\""Phone\""]",4463.8,"{\""seasonal\"": \""15%\""}",111166,0,"""North America""" +2023-08-17,53167,2466,"[\""Wireless Mouse\""]",1679.42,"{\""loyalty\"": \""24%\""}",264334,1,"""Africa""" +2024-06-10,53168,5901,"[\""Laptop\""]",3401.9,"{\""promo\"": \""12%\""}",189636,0,"""South America""" +2023-09-07,53169,8659,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1490.19,"{\"": \""23%\""}",273113,0,"""Africa""" +2024-07-01,53170,1703,"[\""Keyboard\"", \""Charger\""]",1238.32,{},81706,0,"""Africa""" +2023-08-24,53171,1130,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3599.01,{},222696,0,"""North America""" +2023-11-26,53172,9182,"[\""Laptop\"", \""Charger\""]",2102.41,{},184010,1,"""Asia""" +2023-09-04,53173,8956,"[\""Headphones\""]",2500.68,"{\""seasonal\"": \""11%\""}",160319,1,"""Africa""" +2023-06-27,53174,3568,"[\""Keyboard\"", \""Wireless Mouse\""]",2769.19,{},172201,0,"""North America""" +2024-04-03,53175,2041,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4213.37,"{\"": \""23%\""}",36112,0,"""South America""" +2024-02-22,53176,9746,"[\""Monitor\"", \""Laptop\""]",3839.31,"{\""loyalty\"": \""7%\""}",245140,0,"""Africa""" +2023-08-20,53177,7261,"[\""Charger\"", \""Phone\"", \""Tablet\""]",979.79,"{\"": \""6%\""}",120502,1,"""Asia""" +2023-06-22,53178,4606,"[\""Headphones\""]",4806.54,"{\""seasonal\"": \""26%\""}",96155,1,"""South America""" +2024-05-03,53179,6896,"[\""Monitor\""]",3879.76,"{\"": \""21%\""}",105186,0,"""South America""" +2024-05-19,53180,6197,"[\""Charger\""]",2098.45,"{\""seasonal\"": \""16%\""}",289584,1,"""Europe""" +2023-12-21,53181,8232,"[\""Keyboard\"", \""Monitor\""]",1154.8,"{\""seasonal\"": \""22%\""}",70814,0,"""South America""" +2023-12-23,53182,490,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1405.46,"{\"": \""28%\""}",106679,0,"""Asia""" +2023-08-03,53183,3415,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4991.71,"{\""loyalty\"": \""14%\""}",240907,0,"""Asia""" +2024-08-05,53184,4790,"[\""Wireless Mouse\""]",1102.71,{},21743,0,"""Europe""" +2023-03-06,53185,9162,"[\""Tablet\"", \""Charger\""]",1706.86,"{\""promo\"": \""21%\""}",24180,1,"""North America""" +2023-03-25,53186,3199,"[\""Phone\"", \""Monitor\""]",1546.19,{},101870,0,"""North America""" +2023-03-31,53187,1265,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2457.79,"{\"": \""30%\""}",123690,1,"""North America""" +2024-07-25,53188,5754,"[\""Monitor\"", \""Tablet\""]",1916.06,"{\"": \""14%\""}",240446,0,"""North America""" +2023-06-15,53189,4616,"[\""Laptop\"", \""Wireless Mouse\""]",588.28,"{\"": \""29%\""}",115632,1,"""North America""" +2023-10-16,53190,982,"[\""Wireless Mouse\""]",3652.87,{},264075,1,"""South America""" +2023-09-22,53191,1732,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",323.21,"{\""seasonal\"": \""26%\""}",299434,0,"""South America""" +2023-09-29,53192,4821,"[\""Tablet\""]",123.33,{},250258,1,"""Europe""" +2023-06-20,53193,1147,"[\""Keyboard\"", \""Charger\""]",275.02,"{\"": \""26%\""}",111250,1,"""Europe""" +2023-12-31,53194,3027,"[\""Laptop\""]",2629.55,{},269676,1,"""Asia""" +2024-02-14,53195,3716,"[\""Wireless Mouse\"", \""Monitor\""]",4255.96,{},277004,1,"""North America""" +2024-02-24,53196,5103,"[\""Monitor\"", \""Headphones\""]",3277.07,"{\""promo\"": \""14%\""}",275801,1,"""Africa""" +2023-08-21,53197,735,"[\""Tablet\"", \""Wireless Mouse\""]",1938.33,"{\""seasonal\"": \""12%\""}",32881,0,"""Africa""" +2023-02-20,53198,776,"[\""Charger\"", \""Laptop\""]",3779.31,{},236898,1,"""South America""" +2023-03-05,53199,4870,"[\""Monitor\"", \""Phone\""]",1077.22,"{\""seasonal\"": \""21%\""}",47089,1,"""Europe""" +2023-07-22,53200,7131,"[\""Phone\""]",581.39,"{\"": \""23%\""}",224913,1,"""North America""" +2023-11-01,53201,5948,"[\""Keyboard\"", \""Tablet\""]",4667.05,"{\""seasonal\"": \""11%\""}",85168,1,"""Europe""" +2024-12-25,53202,5913,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",745.69,"{\""promo\"": \""25%\""}",260786,1,"""South America""" +2024-01-18,53203,5094,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4949.98,{},206704,1,"""Europe""" +2023-12-20,53204,1278,"[\""Charger\""]",577.58,{},280294,1,"""South America""" +2024-07-27,53205,4710,"[\""Wireless Mouse\""]",712.42,"{\""promo\"": \""11%\""}",3840,1,"""South America""" +2023-07-28,53206,5885,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1236.01,{},89995,1,"""Africa""" +2024-01-08,53207,4260,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4332.06,{},147078,0,"""Africa""" +2024-10-30,53208,7192,"[\""Wireless Mouse\"", \""Monitor\""]",1304.01,{},142161,0,"""North America""" +2024-02-14,53209,3890,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2642.52,{},90564,0,"""Asia""" +2024-01-03,53210,5115,"[\""Wireless Mouse\"", \""Keyboard\""]",599.48,"{\""promo\"": \""11%\""}",5991,0,"""Europe""" +2024-12-06,53211,271,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4246.0,"{\""promo\"": \""23%\""}",23662,1,"""Europe""" +2024-10-29,53212,7249,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4455.65,"{\""seasonal\"": \""24%\""}",269051,1,"""Africa""" +2024-06-30,53213,9891,"[\""Phone\""]",4052.84,"{\""seasonal\"": \""29%\""}",224091,1,"""South America""" +2024-07-31,53214,7446,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",257.14,{},23089,1,"""Europe""" +2023-03-26,53215,5640,"[\""Tablet\"", \""Laptop\""]",3246.85,{},205513,1,"""South America""" +2024-10-01,53216,6080,"[\""Wireless Mouse\"", \""Charger\""]",1347.74,"{\"": \""8%\""}",10530,0,"""Europe""" +2024-06-30,53217,2601,"[\""Phone\"", \""Wireless Mouse\""]",1000.7,"{\""loyalty\"": \""16%\""}",81617,1,"""South America""" +2023-01-20,53218,8687,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2602.29,"{\"": \""24%\""}",208097,0,"""Europe""" +2024-08-27,53219,1274,"[\""Charger\"", \""Wireless Mouse\""]",1998.92,{},81887,0,"""North America""" +2023-11-07,53220,5956,"[\""Wireless Mouse\""]",3004.93,"{\"": \""13%\""}",270156,1,"""South America""" +2024-12-25,53221,7287,"[\""Monitor\""]",3709.82,"{\""loyalty\"": \""21%\""}",218259,1,"""North America""" +2024-10-09,53222,6104,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2021.99,{},38199,0,"""Africa""" +2023-08-06,53223,4319,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4770.61,{},223890,1,"""North America""" +2023-07-11,53224,4548,"[\""Monitor\"", \""Charger\""]",2419.45,{},228296,0,"""North America""" +2023-10-09,53225,5167,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4614.83,{},145731,1,"""South America""" +2023-03-25,53226,4362,"[\""Phone\""]",227.8,{},157627,1,"""North America""" +2023-12-09,53227,8571,"[\""Wireless Mouse\""]",317.5,"{\""promo\"": \""19%\""}",125438,0,"""Africa""" +2024-12-27,53228,4347,"[\""Monitor\""]",3683.68,{},266595,0,"""North America""" +2024-03-31,53229,6588,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3980.59,{},245681,1,"""Europe""" +2023-12-19,53230,8280,"[\""Wireless Mouse\"", \""Phone\""]",1517.69,{},58552,0,"""North America""" +2024-03-29,53231,7144,"[\""Monitor\""]",2030.53,{},172515,0,"""Europe""" +2024-05-13,53232,8333,"[\""Tablet\""]",4479.84,{},109490,1,"""Europe""" +2024-09-28,53233,5625,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",793.6,"{\"": \""11%\""}",55889,0,"""Europe""" +2023-02-08,53234,6316,"[\""Phone\""]",4866.74,"{\""promo\"": \""10%\""}",68729,1,"""North America""" +2023-06-08,53235,2434,"[\""Laptop\"", \""Tablet\""]",2279.32,{},122876,0,"""Europe""" +2024-12-14,53236,159,"[\""Laptop\"", \""Keyboard\""]",2825.57,{},142588,1,"""Europe""" +2024-03-17,53237,8631,"[\""Charger\"", \""Headphones\""]",2786.01,"{\"": \""13%\""}",53097,1,"""North America""" +2024-10-18,53238,8583,"[\""Phone\""]",2583.0,"{\""loyalty\"": \""21%\""}",291275,0,"""North America""" +2023-10-13,53239,5876,"[\""Tablet\""]",978.48,"{\""loyalty\"": \""15%\""}",14288,0,"""Asia""" +2023-04-19,53240,4061,"[\""Laptop\""]",1101.66,{},57269,0,"""Africa""" +2023-07-15,53241,7064,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4926.25,{},43045,0,"""Europe""" +2023-04-27,53242,2619,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2822.31,"{\""promo\"": \""14%\""}",206858,0,"""Europe""" +2023-08-03,53243,4255,"[\""Phone\""]",2690.47,"{\"": \""16%\""}",202066,0,"""South America""" +2024-03-13,53244,3619,"[\""Keyboard\"", \""Headphones\""]",4847.92,{},168598,0,"""North America""" +2023-09-27,53245,3735,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4318.87,"{\"": \""5%\""}",253345,0,"""South America""" +2024-07-21,53246,8639,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3698.72,"{\""loyalty\"": \""16%\""}",26826,0,"""Asia""" +2024-11-01,53247,7350,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1705.59,{},98946,0,"""South America""" +2024-05-17,53248,3286,"[\""Headphones\"", \""Wireless Mouse\""]",2288.05,{},64698,1,"""Asia""" +2024-08-14,53249,5193,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4012.9,"{\""loyalty\"": \""23%\""}",159933,1,"""North America""" +2024-07-21,53250,5983,"[\""Tablet\"", \""Phone\""]",1623.35,{},202665,0,"""Asia""" +2023-08-28,53251,4860,"[\""Charger\"", \""Phone\"", \""Monitor\""]",392.53,{},83713,0,"""Asia""" +2024-09-03,53252,7543,"[\""Monitor\""]",996.47,"{\"": \""12%\""}",68113,0,"""Europe""" +2023-06-22,53253,9092,"[\""Tablet\"", \""Wireless Mouse\""]",2010.36,"{\""seasonal\"": \""29%\""}",18859,1,"""Europe""" +2023-07-30,53254,1058,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4246.42,{},228755,0,"""Africa""" +2024-04-28,53255,3873,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4466.72,{},21821,0,"""Africa""" +2023-09-12,53256,6829,"[\""Charger\"", \""Wireless Mouse\""]",3373.2,"{\""loyalty\"": \""23%\""}",260128,1,"""North America""" +2024-12-05,53257,9315,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3633.82,"{\""seasonal\"": \""14%\""}",283852,0,"""South America""" +2024-07-16,53258,6418,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3198.11,"{\""seasonal\"": \""26%\""}",243077,1,"""South America""" +2024-04-05,53259,1661,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2752.46,{},264280,0,"""North America""" +2023-05-17,53260,5601,"[\""Laptop\"", \""Phone\"", \""Charger\""]",138.08,"{\"": \""11%\""}",174179,0,"""North America""" +2024-03-27,53261,6692,"[\""Phone\"", \""Keyboard\""]",1121.4,"{\""loyalty\"": \""5%\""}",134470,0,"""Africa""" +2023-02-26,53262,4644,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4313.0,"{\""promo\"": \""8%\""}",212193,0,"""Europe""" +2024-11-23,53263,7803,"[\""Charger\""]",164.43,{},182472,0,"""Asia""" +2024-05-05,53264,471,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4402.78,{},174876,0,"""Asia""" +2023-06-16,53265,8188,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4453.43,"{\""loyalty\"": \""5%\""}",174710,0,"""Africa""" +2024-11-14,53266,5634,"[\""Phone\"", \""Charger\""]",1046.17,"{\"": \""15%\""}",196100,1,"""North America""" +2024-02-20,53267,1447,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",418.41,"{\""seasonal\"": \""17%\""}",34527,1,"""Africa""" +2024-11-17,53268,4776,"[\""Tablet\"", \""Charger\""]",3098.85,{},200445,1,"""North America""" +2024-08-14,53269,2648,"[\""Tablet\""]",379.36,{},84696,0,"""North America""" +2023-06-03,53270,2997,"[\""Laptop\""]",63.32,"{\"": \""6%\""}",9531,1,"""South America""" +2023-10-05,53271,246,"[\""Tablet\""]",2596.64,"{\""loyalty\"": \""7%\""}",74407,1,"""Asia""" +2023-02-15,53272,5476,"[\""Monitor\""]",3245.91,{},191075,0,"""Europe""" +2023-06-09,53273,3285,"[\""Charger\""]",2721.7,{},223166,1,"""North America""" +2023-10-12,53274,1413,"[\""Charger\""]",2981.13,{},137481,1,"""Asia""" +2024-05-24,53275,4710,"[\""Tablet\""]",131.66,{},4395,1,"""Africa""" +2024-04-03,53276,8501,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",534.37,{},20420,0,"""North America""" +2024-10-15,53277,8835,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4959.63,"{\"": \""16%\""}",247816,0,"""Asia""" +2024-11-10,53278,6679,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",878.37,"{\""seasonal\"": \""16%\""}",243884,0,"""Europe""" +2023-11-04,53279,478,"[\""Tablet\""]",4758.53,{},276821,1,"""Asia""" +2023-06-20,53280,5292,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",149.3,"{\""promo\"": \""8%\""}",114328,0,"""North America""" +2023-05-09,53281,7657,"[\""Keyboard\""]",2597.29,"{\"": \""11%\""}",238406,1,"""North America""" +2023-06-11,53282,2933,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",92.8,"{\"": \""21%\""}",149163,0,"""Asia""" +2023-01-14,53283,5413,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3255.76,"{\"": \""17%\""}",215390,0,"""Asia""" +2024-06-30,53284,6638,"[\""Phone\"", \""Charger\""]",3152.75,"{\""promo\"": \""6%\""}",193654,0,"""Asia""" +2024-10-12,53285,8080,"[\""Laptop\"", \""Charger\""]",544.63,{},7377,1,"""South America""" +2023-11-04,53286,9722,"[\""Phone\"", \""Headphones\""]",341.3,{},12390,1,"""North America""" +2023-09-03,53287,6932,"[\""Keyboard\""]",3572.65,{},71700,1,"""Europe""" +2023-03-19,53288,5688,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4177.03,"{\""loyalty\"": \""29%\""}",141857,1,"""Africa""" +2023-06-26,53289,7986,"[\""Headphones\""]",776.12,"{\""seasonal\"": \""22%\""}",207763,0,"""Asia""" +2024-10-10,53290,5732,"[\""Headphones\"", \""Laptop\""]",3999.05,{},297537,0,"""Africa""" +2023-09-04,53291,9708,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2088.1,{},192467,0,"""Europe""" +2024-09-13,53292,8173,"[\""Laptop\""]",1966.57,"{\""seasonal\"": \""16%\""}",122497,0,"""Africa""" +2023-10-25,53293,9689,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4411.8,{},189991,1,"""Africa""" +2023-09-02,53294,8450,"[\""Phone\"", \""Charger\""]",1539.65,{},152370,0,"""South America""" +2023-10-24,53295,2644,"[\""Wireless Mouse\""]",1662.3,"{\"": \""28%\""}",121057,1,"""South America""" +2024-05-27,53296,5624,"[\""Headphones\"", \""Charger\""]",1573.77,"{\"": \""27%\""}",58341,1,"""Asia""" +2023-04-25,53297,947,"[\""Keyboard\""]",1470.9,{},91302,1,"""Africa""" +2023-02-21,53298,9393,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4525.95,"{\""loyalty\"": \""19%\""}",204289,0,"""Europe""" +2024-01-21,53299,5224,"[\""Wireless Mouse\""]",1060.15,{},169947,1,"""Europe""" +2024-10-12,53300,6800,"[\""Headphones\""]",3233.95,"{\"": \""20%\""}",72363,1,"""North America""" +2023-01-07,53301,4272,"[\""Monitor\""]",2600.88,"{\""promo\"": \""15%\""}",152099,1,"""North America""" +2024-07-17,53302,9930,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3863.91,{},229645,0,"""South America""" +2023-07-29,53303,5432,"[\""Laptop\""]",3405.18,{},76028,1,"""Africa""" +2023-01-05,53304,570,"[\""Monitor\""]",3835.71,"{\""seasonal\"": \""12%\""}",24518,0,"""South America""" +2024-03-02,53305,6508,"[\""Wireless Mouse\"", \""Headphones\""]",4430.7,"{\""loyalty\"": \""14%\""}",236909,0,"""Africa""" +2024-07-19,53306,5833,"[\""Laptop\"", \""Wireless Mouse\""]",4726.13,"{\""loyalty\"": \""14%\""}",43895,0,"""North America""" +2024-04-08,53307,8663,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3174.25,"{\""seasonal\"": \""13%\""}",157308,0,"""North America""" +2024-02-05,53308,5701,"[\""Monitor\""]",1895.47,{},87820,0,"""Europe""" +2024-09-04,53309,1982,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1035.34,"{\""loyalty\"": \""15%\""}",270687,0,"""Europe""" +2023-07-28,53310,961,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",318.58,{},281515,0,"""Europe""" +2023-11-16,53311,9508,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4906.17,"{\""seasonal\"": \""7%\""}",214917,1,"""North America""" +2024-05-23,53312,3522,"[\""Monitor\"", \""Laptop\""]",3312.99,"{\""loyalty\"": \""30%\""}",213600,0,"""Africa""" +2023-08-25,53313,9873,"[\""Monitor\"", \""Laptop\""]",2152.7,"{\""seasonal\"": \""16%\""}",179567,0,"""North America""" +2023-03-03,53314,4173,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2753.16,{},77944,1,"""Europe""" +2023-06-20,53315,3776,"[\""Monitor\"", \""Wireless Mouse\""]",1999.8,"{\"": \""6%\""}",162604,0,"""Asia""" +2023-03-23,53316,5740,"[\""Monitor\"", \""Keyboard\""]",974.68,"{\""promo\"": \""17%\""}",101094,1,"""Africa""" +2024-02-20,53317,8998,"[\""Monitor\""]",550.86,"{\""promo\"": \""8%\""}",245134,0,"""South America""" +2024-08-28,53318,8706,"[\""Monitor\"", \""Headphones\""]",2732.87,{},270827,0,"""Africa""" +2024-04-30,53319,3699,"[\""Headphones\"", \""Laptop\""]",2927.47,"{\""seasonal\"": \""8%\""}",195136,1,"""Asia""" +2023-03-18,53320,7712,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1870.99,{},157370,0,"""North America""" +2023-04-18,53321,2912,"[\""Tablet\"", \""Monitor\""]",3277.37,"{\""promo\"": \""26%\""}",5859,1,"""South America""" +2023-05-26,53322,9981,"[\""Phone\""]",4084.8,"{\""loyalty\"": \""20%\""}",75422,0,"""Africa""" +2024-02-27,53323,5384,"[\""Headphones\""]",1720.05,{},287135,0,"""Europe""" +2023-04-27,53324,9523,"[\""Wireless Mouse\"", \""Charger\""]",267.74,{},69828,1,"""North America""" +2024-07-13,53325,1644,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2795.6,{},20012,0,"""Europe""" +2024-04-02,53326,6919,"[\""Headphones\""]",3707.7,{},119817,1,"""South America""" +2023-04-20,53327,1765,"[\""Monitor\"", \""Tablet\""]",951.71,{},198482,0,"""Asia""" +2023-04-14,53328,8677,"[\""Wireless Mouse\""]",3268.34,"{\""seasonal\"": \""23%\""}",103179,0,"""Africa""" +2024-02-24,53329,5031,"[\""Laptop\"", \""Keyboard\""]",1399.96,"{\""seasonal\"": \""30%\""}",268547,1,"""Asia""" +2024-10-21,53330,1350,"[\""Tablet\"", \""Phone\""]",2758.08,{},206069,0,"""North America""" +2024-09-02,53331,2112,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4517.71,{},132555,1,"""Asia""" +2023-01-07,53332,4363,"[\""Laptop\""]",2694.88,"{\""seasonal\"": \""12%\""}",241844,1,"""Africa""" +2023-09-03,53333,3244,"[\""Wireless Mouse\"", \""Charger\""]",1392.96,{},77714,0,"""North America""" +2023-01-29,53334,1489,"[\""Wireless Mouse\""]",3767.55,"{\""loyalty\"": \""15%\""}",184339,1,"""North America""" +2023-01-16,53335,4708,"[\""Keyboard\"", \""Charger\""]",273.26,{},206794,0,"""North America""" +2024-11-14,53336,7235,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2465.13,{},291954,0,"""Africa""" +2024-08-18,53337,372,"[\""Headphones\""]",638.35,{},245653,1,"""Asia""" +2024-06-08,53338,9840,"[\""Tablet\""]",614.94,"{\""seasonal\"": \""28%\""}",3495,1,"""South America""" +2023-01-31,53339,5293,"[\""Keyboard\""]",643.41,"{\""promo\"": \""27%\""}",158821,1,"""Europe""" +2023-01-18,53340,5585,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",277.01,{},18833,1,"""Africa""" +2023-10-05,53341,9646,"[\""Keyboard\""]",3256.95,{},215732,1,"""North America""" +2024-05-14,53342,5406,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2946.68,{},218982,0,"""Europe""" +2024-06-17,53343,1263,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3110.71,{},147258,1,"""Asia""" +2023-01-07,53344,5374,"[\""Charger\"", \""Tablet\""]",3875.72,"{\""promo\"": \""12%\""}",24787,1,"""South America""" +2024-08-29,53345,3915,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",996.39,"{\""loyalty\"": \""20%\""}",241919,1,"""North America""" +2024-02-27,53346,3083,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1104.03,{},82150,0,"""Europe""" +2024-10-06,53347,7193,"[\""Tablet\""]",3164.59,{},102116,1,"""North America""" +2023-05-30,53348,8921,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4580.61,"{\""promo\"": \""30%\""}",67166,1,"""South America""" +2023-01-20,53349,8451,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2952.72,{},130935,0,"""Africa""" +2023-01-08,53350,1992,"[\""Tablet\"", \""Keyboard\""]",4771.32,"{\""seasonal\"": \""29%\""}",201580,1,"""Asia""" +2023-02-10,53351,2639,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",469.58,{},114404,0,"""Europe""" +2023-08-20,53352,9370,"[\""Wireless Mouse\"", \""Laptop\""]",3133.36,{},152491,0,"""Europe""" +2024-05-11,53353,8006,"[\""Tablet\"", \""Wireless Mouse\""]",3967.72,{},207252,1,"""North America""" +2024-02-04,53354,4240,"[\""Charger\""]",2508.95,{},273421,0,"""Asia""" +2023-08-15,53355,5401,"[\""Laptop\"", \""Charger\""]",215.94,{},37669,1,"""South America""" +2024-09-23,53356,1818,"[\""Headphones\""]",336.64,"{\""seasonal\"": \""22%\""}",36000,0,"""Asia""" +2024-04-22,53357,4719,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3561.81,"{\""seasonal\"": \""13%\""}",277431,0,"""North America""" +2023-12-08,53358,2528,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4164.08,{},254936,0,"""Asia""" +2024-09-01,53359,3778,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3221.19,"{\""seasonal\"": \""12%\""}",219444,1,"""North America""" +2024-03-18,53360,5111,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3981.27,{},161893,0,"""South America""" +2023-12-22,53361,4266,"[\""Wireless Mouse\"", \""Charger\""]",2040.3,"{\""seasonal\"": \""12%\""}",111226,1,"""South America""" +2024-07-14,53362,2658,"[\""Keyboard\""]",1270.35,{},218108,1,"""Asia""" +2024-12-28,53363,8544,"[\""Monitor\"", \""Headphones\""]",913.59,"{\""promo\"": \""9%\""}",256671,0,"""Africa""" +2023-03-16,53364,3974,"[\""Keyboard\"", \""Laptop\""]",1984.73,{},105653,1,"""Asia""" +2023-02-21,53365,8723,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4850.63,{},8267,1,"""North America""" +2024-03-08,53366,5661,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2765.3,"{\""loyalty\"": \""22%\""}",243508,1,"""Africa""" +2023-10-01,53367,4528,"[\""Laptop\""]",2922.6,{},12891,1,"""Europe""" +2023-05-08,53368,1393,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4761.54,"{\"": \""13%\""}",91814,0,"""Asia""" +2024-06-17,53369,9098,"[\""Monitor\""]",1309.01,"{\""promo\"": \""8%\""}",124788,1,"""Asia""" +2024-04-04,53370,8657,"[\""Laptop\"", \""Phone\""]",4935.8,{},99078,1,"""North America""" +2023-06-20,53371,8203,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",946.06,"{\""seasonal\"": \""16%\""}",154821,1,"""Europe""" +2023-09-18,53372,7164,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4194.78,{},278020,1,"""Asia""" +2024-08-11,53373,8169,"[\""Monitor\"", \""Keyboard\""]",3118.05,{},125204,0,"""Africa""" +2023-11-26,53374,1839,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1649.78,"{\""promo\"": \""18%\""}",109963,1,"""South America""" +2023-12-03,53375,1358,"[\""Phone\"", \""Charger\""]",2454.2,{},170990,0,"""Africa""" +2024-03-04,53376,1266,"[\""Laptop\"", \""Wireless Mouse\""]",1476.39,{},94552,1,"""South America""" +2024-02-29,53377,8422,"[\""Monitor\""]",515.97,{},138043,1,"""Asia""" +2023-12-25,53378,1781,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",498.95,"{\""seasonal\"": \""9%\""}",63872,1,"""South America""" +2023-11-25,53379,9192,"[\""Charger\""]",4275.32,"{\""promo\"": \""18%\""}",280090,0,"""South America""" +2024-02-19,53380,929,"[\""Headphones\"", \""Charger\""]",2469.43,{},281207,0,"""Europe""" +2024-08-31,53381,5687,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",410.21,{},116270,0,"""South America""" +2024-07-20,53382,6495,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3715.02,{},138211,0,"""South America""" +2024-12-07,53383,3690,"[\""Headphones\"", \""Charger\""]",2382.54,"{\"": \""16%\""}",180872,1,"""North America""" +2024-01-06,53384,2493,"[\""Tablet\""]",4923.91,"{\"": \""11%\""}",294682,1,"""Asia""" +2023-12-13,53385,9604,"[\""Phone\""]",2514.84,"{\""promo\"": \""5%\""}",279762,1,"""Africa""" +2024-05-01,53386,3100,"[\""Monitor\"", \""Headphones\""]",2218.45,{},201926,0,"""North America""" +2023-07-22,53387,1016,"[\""Monitor\""]",3829.77,"{\""promo\"": \""20%\""}",5379,1,"""North America""" +2024-06-25,53388,6872,"[\""Phone\"", \""Tablet\""]",1500.76,{},57903,0,"""South America""" +2024-02-20,53389,6281,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3499.41,"{\""seasonal\"": \""12%\""}",196598,1,"""North America""" +2024-08-25,53390,2767,"[\""Laptop\"", \""Tablet\""]",2150.74,"{\""seasonal\"": \""17%\""}",34826,0,"""Europe""" +2023-01-12,53391,8926,"[\""Laptop\"", \""Wireless Mouse\""]",3079.51,"{\""seasonal\"": \""17%\""}",22720,1,"""Asia""" +2023-11-06,53392,7953,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1334.22,"{\""seasonal\"": \""30%\""}",258283,1,"""Africa""" +2024-10-01,53393,7041,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",405.35,"{\""seasonal\"": \""14%\""}",147888,0,"""Asia""" +2024-05-15,53394,2438,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2006.03,{},102135,1,"""Asia""" +2024-02-05,53395,5357,"[\""Laptop\"", \""Headphones\""]",289.89,{},216943,1,"""South America""" +2023-09-08,53396,6750,"[\""Laptop\"", \""Monitor\""]",276.76,"{\"": \""20%\""}",191452,0,"""Europe""" +2024-03-26,53397,3606,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1782.74,{},295840,1,"""North America""" +2024-10-06,53398,1541,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2379.43,{},40249,0,"""North America""" +2024-07-06,53399,8500,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4607.78,"{\""loyalty\"": \""20%\""}",54033,1,"""North America""" +2024-01-01,53400,1949,"[\""Laptop\""]",1039.1,"{\""loyalty\"": \""6%\""}",40292,0,"""North America""" +2023-05-17,53401,350,"[\""Monitor\""]",3450.92,{},42360,1,"""Asia""" +2024-04-17,53402,5544,"[\""Charger\"", \""Tablet\""]",2727.23,{},271365,0,"""Africa""" +2023-10-17,53403,4000,"[\""Monitor\""]",1768.45,{},104295,1,"""South America""" +2023-07-19,53404,4959,"[\""Charger\"", \""Phone\""]",1112.96,"{\""seasonal\"": \""16%\""}",155765,0,"""Asia""" +2023-02-24,53405,4293,"[\""Wireless Mouse\""]",590.38,{},258152,0,"""North America""" +2024-07-19,53406,7271,"[\""Monitor\""]",4086.09,{},26994,0,"""Asia""" +2024-11-13,53407,3130,"[\""Headphones\"", \""Charger\""]",3635.43,"{\""promo\"": \""16%\""}",194419,0,"""North America""" +2023-10-08,53408,3462,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1006.92,"{\""loyalty\"": \""15%\""}",230641,1,"""Europe""" +2023-09-06,53409,9741,"[\""Wireless Mouse\"", \""Keyboard\""]",2194.65,"{\""loyalty\"": \""22%\""}",188898,0,"""Asia""" +2023-01-01,53410,9422,"[\""Headphones\""]",2029.06,{},107938,1,"""Asia""" +2024-10-17,53411,9218,"[\""Laptop\""]",501.68,"{\""promo\"": \""9%\""}",44823,0,"""Europe""" +2024-05-23,53412,7024,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1816.41,"{\""seasonal\"": \""17%\""}",296761,0,"""North America""" +2024-10-16,53413,2094,"[\""Laptop\"", \""Monitor\""]",3257.94,{},125604,0,"""Africa""" +2023-12-20,53414,5928,"[\""Tablet\""]",591.49,"{\"": \""9%\""}",177124,0,"""Europe""" +2024-02-12,53415,1638,"[\""Charger\""]",3291.5,"{\""seasonal\"": \""28%\""}",5472,0,"""North America""" +2023-11-26,53416,7795,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4044.77,{},57815,0,"""Asia""" +2023-11-23,53417,2676,"[\""Charger\"", \""Tablet\""]",4033.14,"{\""promo\"": \""21%\""}",154426,0,"""Asia""" +2023-11-19,53418,2678,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4725.05,"{\"": \""22%\""}",216458,1,"""South America""" +2024-12-11,53419,9739,"[\""Headphones\"", \""Charger\""]",2553.28,{},284437,1,"""Africa""" +2024-08-10,53420,1664,"[\""Wireless Mouse\"", \""Phone\""]",3927.79,{},251508,1,"""Africa""" +2023-12-23,53421,7044,"[\""Charger\"", \""Keyboard\""]",1698.04,"{\"": \""10%\""}",1777,0,"""Asia""" +2023-11-07,53422,8054,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1326.22,"{\"": \""24%\""}",233563,1,"""Europe""" +2024-06-10,53423,4001,"[\""Tablet\"", \""Laptop\""]",64.28,{},106995,1,"""Africa""" +2023-02-18,53424,4176,"[\""Phone\""]",4620.06,"{\""promo\"": \""28%\""}",205323,0,"""Asia""" +2023-12-06,53425,5687,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3158.04,{},249353,0,"""South America""" +2024-02-25,53426,9914,"[\""Tablet\"", \""Headphones\""]",3884.48,{},183466,1,"""Europe""" +2023-09-03,53427,2718,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1140.77,"{\"": \""14%\""}",208506,1,"""South America""" +2023-01-22,53428,2615,"[\""Tablet\""]",2310.68,{},13825,1,"""South America""" +2023-06-06,53429,1429,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2050.94,"{\""loyalty\"": \""30%\""}",193924,1,"""Europe""" +2023-12-22,53430,7603,"[\""Monitor\""]",1657.92,{},99936,0,"""Africa""" +2023-02-07,53431,7161,"[\""Phone\""]",4021.03,{},103060,1,"""Europe""" +2023-08-24,53432,3826,"[\""Phone\""]",84.96,{},283818,0,"""Africa""" +2023-10-01,53433,5098,"[\""Headphones\"", \""Monitor\""]",1541.04,"{\""seasonal\"": \""26%\""}",121501,1,"""Europe""" +2023-07-01,53434,2558,"[\""Monitor\""]",234.11,"{\""seasonal\"": \""26%\""}",91113,1,"""South America""" +2024-03-06,53435,8879,"[\""Phone\""]",4792.4,"{\""loyalty\"": \""16%\""}",116782,0,"""North America""" +2023-01-22,53436,3480,"[\""Keyboard\"", \""Phone\""]",62.64,"{\""loyalty\"": \""5%\""}",28846,0,"""Europe""" +2023-07-12,53437,8729,"[\""Headphones\"", \""Tablet\""]",736.55,{},189029,0,"""Europe""" +2024-03-24,53438,3113,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2101.62,{},149694,0,"""Europe""" +2024-06-30,53439,1045,"[\""Phone\""]",3027.6,"{\""promo\"": \""21%\""}",192816,1,"""Europe""" +2023-01-12,53440,6669,"[\""Phone\"", \""Tablet\""]",2410.7,{},9093,0,"""North America""" +2023-10-22,53441,5169,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4501.14,"{\""promo\"": \""13%\""}",161959,0,"""South America""" +2024-12-04,53442,3638,"[\""Wireless Mouse\""]",2899.56,"{\"": \""7%\""}",206454,1,"""Africa""" +2024-03-17,53443,2441,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4073.28,{},263619,0,"""South America""" +2024-09-27,53444,6634,"[\""Laptop\""]",624.29,{},279886,0,"""Europe""" +2023-07-23,53445,8497,"[\""Tablet\"", \""Keyboard\""]",1243.5,"{\""loyalty\"": \""24%\""}",191546,0,"""Asia""" +2024-07-16,53446,3903,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3969.17,"{\""promo\"": \""27%\""}",220707,1,"""Europe""" +2023-06-28,53447,8730,"[\""Headphones\"", \""Phone\""]",1064.31,"{\""seasonal\"": \""13%\""}",243503,1,"""Africa""" +2024-07-11,53448,7420,"[\""Laptop\""]",4298.66,{},210765,0,"""Europe""" +2023-03-26,53449,8572,"[\""Phone\"", \""Headphones\""]",4930.92,"{\""seasonal\"": \""13%\""}",204113,0,"""North America""" +2024-06-30,53450,9356,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",842.65,{},188034,1,"""Africa""" +2023-07-21,53451,2082,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2356.17,"{\""loyalty\"": \""16%\""}",107985,1,"""South America""" +2023-06-08,53452,1732,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4872.16,"{\""promo\"": \""17%\""}",216513,0,"""Europe""" +2023-01-17,53453,9818,"[\""Wireless Mouse\"", \""Tablet\""]",700.48,"{\""loyalty\"": \""16%\""}",285497,0,"""South America""" +2024-10-09,53454,4529,"[\""Wireless Mouse\""]",1483.28,"{\"": \""22%\""}",57699,1,"""South America""" +2024-12-30,53455,7772,"[\""Charger\"", \""Headphones\""]",3943.76,{},99789,0,"""North America""" +2023-07-10,53456,9429,"[\""Wireless Mouse\""]",2251.64,"{\"": \""13%\""}",243133,0,"""Asia""" +2023-09-22,53457,8281,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2114.74,{},251351,0,"""Asia""" +2024-05-02,53458,8592,"[\""Phone\"", \""Monitor\""]",4600.09,"{\"": \""14%\""}",290226,0,"""Asia""" +2023-08-10,53459,9686,"[\""Wireless Mouse\"", \""Monitor\""]",2066.46,"{\""loyalty\"": \""26%\""}",38360,1,"""Asia""" +2023-08-15,53460,2929,"[\""Laptop\""]",4774.95,{},54856,0,"""Africa""" +2024-10-10,53461,7391,"[\""Tablet\"", \""Headphones\""]",2971.4,{},37474,1,"""South America""" +2023-03-13,53462,7331,"[\""Wireless Mouse\""]",2580.83,{},208418,1,"""South America""" +2023-07-29,53463,4874,"[\""Charger\""]",4166.54,{},102906,0,"""Africa""" +2023-09-08,53464,433,"[\""Laptop\""]",624.07,{},267951,0,"""South America""" +2023-10-16,53465,7919,"[\""Wireless Mouse\"", \""Phone\""]",642.68,"{\""promo\"": \""9%\""}",297801,0,"""North America""" +2024-08-12,53466,6244,"[\""Wireless Mouse\"", \""Charger\""]",1755.22,"{\"": \""15%\""}",114235,1,"""Asia""" +2024-06-03,53467,4781,"[\""Charger\"", \""Keyboard\""]",3897.41,{},164475,1,"""North America""" +2023-08-04,53468,837,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2417.65,"{\""loyalty\"": \""23%\""}",130031,1,"""Africa""" +2024-10-13,53469,4612,"[\""Phone\""]",2963.14,"{\""loyalty\"": \""11%\""}",258160,1,"""Asia""" +2023-02-07,53470,7565,"[\""Charger\""]",2864.22,{},120681,0,"""South America""" +2023-02-11,53471,8409,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",399.76,"{\""loyalty\"": \""10%\""}",70260,1,"""Africa""" +2023-07-16,53472,6366,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2684.17,{},1544,0,"""Asia""" +2023-11-16,53473,7012,"[\""Tablet\"", \""Headphones\""]",3714.86,"{\""seasonal\"": \""12%\""}",133819,1,"""Africa""" +2024-02-20,53474,6117,"[\""Headphones\""]",3429.65,{},227976,0,"""Europe""" +2024-09-24,53475,5472,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1133.01,{},6252,0,"""Africa""" +2024-05-03,53476,9720,"[\""Wireless Mouse\""]",3232.83,{},204711,1,"""Asia""" +2024-10-03,53477,6899,"[\""Laptop\"", \""Charger\""]",1789.04,{},54088,1,"""North America""" +2024-09-18,53478,6661,"[\""Laptop\"", \""Keyboard\""]",2473.3,"{\""seasonal\"": \""28%\""}",154802,0,"""Africa""" +2023-07-21,53479,8287,"[\""Tablet\""]",4453.74,"{\""seasonal\"": \""10%\""}",124946,0,"""Europe""" +2023-09-17,53480,7795,"[\""Wireless Mouse\"", \""Headphones\""]",1162.6,{},19673,1,"""North America""" +2024-08-10,53481,7420,"[\""Monitor\""]",3403.32,{},246419,1,"""North America""" +2024-09-24,53482,8981,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",478.17,{},112975,0,"""Europe""" +2024-07-04,53483,2852,"[\""Headphones\""]",3116.08,{},18114,0,"""Africa""" +2023-04-16,53484,9045,"[\""Phone\"", \""Laptop\""]",475.07,{},228347,0,"""North America""" +2024-11-27,53485,3284,"[\""Charger\""]",1375.68,"{\""loyalty\"": \""23%\""}",9010,0,"""Europe""" +2024-01-13,53486,5886,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4350.72,{},256364,1,"""Europe""" +2024-02-21,53487,5628,"[\""Keyboard\""]",3069.96,"{\""seasonal\"": \""22%\""}",200246,0,"""North America""" +2023-03-17,53488,3802,"[\""Headphones\"", \""Monitor\""]",4210.4,"{\"": \""13%\""}",24175,1,"""Africa""" +2023-05-15,53489,7141,"[\""Laptop\"", \""Keyboard\""]",2340.51,{},225472,1,"""South America""" +2024-08-15,53490,9966,"[\""Phone\""]",234.1,"{\""promo\"": \""26%\""}",191468,1,"""South America""" +2024-02-08,53491,2386,"[\""Tablet\"", \""Charger\""]",3208.74,"{\""promo\"": \""8%\""}",245031,1,"""Asia""" +2023-10-16,53492,5376,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",900.84,{},298051,0,"""Europe""" +2023-01-23,53493,2931,"[\""Tablet\""]",2645.71,"{\""seasonal\"": \""12%\""}",47609,0,"""Africa""" +2023-12-29,53494,9978,"[\""Wireless Mouse\""]",2144.37,{},150578,1,"""South America""" +2023-01-13,53495,5656,"[\""Phone\"", \""Keyboard\""]",412.52,"{\""loyalty\"": \""28%\""}",122873,1,"""Asia""" +2023-07-24,53496,7144,"[\""Wireless Mouse\"", \""Keyboard\""]",2008.89,"{\"": \""25%\""}",269844,0,"""Africa""" +2023-11-10,53497,6181,"[\""Wireless Mouse\"", \""Headphones\""]",3956.99,"{\""promo\"": \""21%\""}",240311,1,"""South America""" +2024-04-20,53498,9359,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3562.11,"{\""seasonal\"": \""13%\""}",76111,0,"""Asia""" +2024-03-24,53499,4637,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1201.4,{},167210,0,"""Africa""" +2024-05-09,53500,9949,"[\""Keyboard\"", \""Monitor\""]",4863.77,"{\"": \""26%\""}",117287,1,"""South America""" +2024-03-10,53501,8332,"[\""Charger\"", \""Phone\""]",2708.96,{},87095,1,"""Europe""" +2023-01-08,53502,4617,"[\""Phone\""]",4995.12,"{\""promo\"": \""14%\""}",214884,1,"""North America""" +2023-06-30,53503,3078,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1239.52,{},198981,0,"""South America""" +2024-05-23,53504,1670,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",610.04,"{\""seasonal\"": \""29%\""}",179580,1,"""Africa""" +2023-12-12,53505,4305,"[\""Charger\"", \""Headphones\""]",3447.09,{},86727,0,"""Europe""" +2023-03-17,53506,1674,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2614.6,"{\"": \""13%\""}",101121,0,"""North America""" +2023-06-03,53507,2222,"[\""Wireless Mouse\"", \""Charger\""]",3600.87,"{\""loyalty\"": \""5%\""}",9364,0,"""Europe""" +2023-04-27,53508,2999,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1862.75,{},140393,1,"""South America""" +2023-08-04,53509,6547,"[\""Phone\"", \""Monitor\""]",3731.64,{},271506,0,"""Asia""" +2024-12-18,53510,149,"[\""Laptop\"", \""Monitor\""]",3140.44,{},277454,1,"""South America""" +2023-05-21,53511,4276,"[\""Monitor\"", \""Tablet\""]",871.29,{},201455,0,"""Africa""" +2023-10-19,53512,6599,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3105.09,"{\""seasonal\"": \""20%\""}",295994,0,"""Europe""" +2024-08-11,53513,2697,"[\""Laptop\""]",554.93,{},231898,0,"""Africa""" +2024-06-03,53514,2935,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",584.55,{},139473,0,"""Asia""" +2024-07-16,53515,8812,"[\""Wireless Mouse\"", \""Monitor\""]",1047.2,{},190591,0,"""North America""" +2023-01-05,53516,2021,"[\""Tablet\""]",2570.39,{},190392,1,"""Africa""" +2024-06-30,53517,7822,"[\""Keyboard\"", \""Headphones\""]",1302.08,{},42397,1,"""Africa""" +2024-02-27,53518,7300,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2875.96,{},251922,0,"""Asia""" +2024-08-30,53519,6736,"[\""Headphones\"", \""Wireless Mouse\""]",4453.49,"{\""promo\"": \""20%\""}",20766,1,"""Asia""" +2023-12-29,53520,1548,"[\""Keyboard\""]",1352.91,"{\""seasonal\"": \""23%\""}",138247,1,"""North America""" +2024-04-16,53521,7517,"[\""Wireless Mouse\""]",257.94,"{\""seasonal\"": \""12%\""}",83753,1,"""Africa""" +2024-10-15,53522,3735,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4015.9,"{\""loyalty\"": \""22%\""}",6806,1,"""South America""" +2024-05-20,53523,4625,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2239.85,{},153619,1,"""North America""" +2024-01-02,53524,913,"[\""Wireless Mouse\"", \""Headphones\""]",3920.06,"{\""seasonal\"": \""12%\""}",243448,0,"""Africa""" +2024-02-04,53525,6892,"[\""Monitor\"", \""Phone\""]",3889.53,"{\""promo\"": \""17%\""}",33158,0,"""Africa""" +2024-11-12,53526,2517,"[\""Laptop\""]",1647.89,{},63635,0,"""South America""" +2024-12-05,53527,7191,"[\""Tablet\""]",3674.14,"{\""loyalty\"": \""19%\""}",170699,0,"""Europe""" +2024-02-28,53528,2243,"[\""Wireless Mouse\"", \""Laptop\""]",1222.07,"{\"": \""23%\""}",65644,0,"""Asia""" +2024-12-31,53529,5034,"[\""Monitor\"", \""Charger\""]",3906.37,"{\""promo\"": \""30%\""}",235675,0,"""South America""" +2024-11-03,53530,9465,"[\""Monitor\""]",3911.89,{},92212,1,"""Africa""" +2024-08-24,53531,9077,"[\""Headphones\"", \""Monitor\""]",1455.4,{},155436,0,"""Europe""" +2024-08-29,53532,5227,"[\""Tablet\"", \""Keyboard\""]",3983.11,"{\""loyalty\"": \""14%\""}",184782,1,"""Africa""" +2023-07-26,53533,6873,"[\""Keyboard\"", \""Wireless Mouse\""]",1712.93,{},172979,1,"""North America""" +2023-07-29,53534,6157,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3227.02,{},107199,0,"""North America""" +2024-03-23,53535,27,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4396.87,{},173845,0,"""North America""" +2023-06-27,53536,4978,"[\""Keyboard\"", \""Tablet\""]",4010.7,"{\""promo\"": \""8%\""}",19524,1,"""Asia""" +2023-03-09,53537,9609,"[\""Laptop\""]",4851.28,"{\""seasonal\"": \""21%\""}",122953,0,"""South America""" +2024-03-06,53538,4707,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2655.51,"{\"": \""20%\""}",178564,0,"""Africa""" +2023-07-25,53539,4763,"[\""Charger\"", \""Keyboard\""]",4882.69,{},82936,1,"""Europe""" +2023-03-28,53540,3870,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2880.55,{},233218,0,"""Asia""" +2024-02-17,53541,5061,"[\""Wireless Mouse\"", \""Monitor\""]",3967.88,"{\""promo\"": \""26%\""}",176149,1,"""Africa""" +2023-06-27,53542,3490,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",306.55,"{\""seasonal\"": \""24%\""}",150269,1,"""South America""" +2024-06-08,53543,5946,"[\""Tablet\""]",4178.93,{},131656,1,"""Africa""" +2024-05-12,53544,8404,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3328.63,{},167234,1,"""South America""" +2024-12-13,53545,8762,"[\""Wireless Mouse\"", \""Charger\""]",107.86,"{\""seasonal\"": \""22%\""}",174656,1,"""South America""" +2024-01-27,53546,664,"[\""Charger\""]",4869.04,{},170067,1,"""South America""" +2023-02-15,53547,9924,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4899.29,"{\""seasonal\"": \""30%\""}",38189,1,"""North America""" +2024-05-11,53548,709,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3081.96,{},216546,0,"""North America""" +2023-03-20,53549,8031,"[\""Wireless Mouse\"", \""Tablet\""]",4277.61,"{\""promo\"": \""8%\""}",21529,1,"""Africa""" +2024-05-06,53550,8204,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4124.99,"{\""loyalty\"": \""26%\""}",52129,1,"""Africa""" +2023-05-08,53551,7428,"[\""Keyboard\"", \""Tablet\""]",2718.34,"{\""promo\"": \""9%\""}",52167,0,"""North America""" +2024-04-30,53552,6531,"[\""Laptop\""]",3762.67,{},232537,1,"""Europe""" +2024-12-10,53553,33,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",600.85,{},2250,1,"""North America""" +2024-01-14,53554,309,"[\""Tablet\"", \""Keyboard\""]",2888.61,{},37212,0,"""Asia""" +2023-05-18,53555,2981,"[\""Phone\"", \""Wireless Mouse\""]",657.11,"{\""loyalty\"": \""18%\""}",99186,1,"""North America""" +2024-06-11,53556,9557,"[\""Charger\""]",3398.6,"{\""seasonal\"": \""18%\""}",169200,1,"""Asia""" +2024-03-07,53557,112,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1970.05,"{\""loyalty\"": \""25%\""}",202656,0,"""South America""" +2023-03-20,53558,8706,"[\""Wireless Mouse\""]",1939.27,{},74995,1,"""Europe""" +2024-06-23,53559,8494,"[\""Wireless Mouse\""]",3048.05,"{\""seasonal\"": \""19%\""}",159765,1,"""Europe""" +2023-03-02,53560,3216,"[\""Laptop\""]",3928.78,{},162920,0,"""Asia""" +2024-03-22,53561,5543,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4496.54,{},66957,0,"""South America""" +2024-10-30,53562,9933,"[\""Headphones\""]",2585.11,{},24083,0,"""North America""" +2024-10-17,53563,9863,"[\""Monitor\"", \""Phone\""]",2787.98,{},166095,0,"""South America""" +2024-11-12,53564,6504,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3013.06,"{\""seasonal\"": \""16%\""}",137688,1,"""Europe""" +2023-05-23,53565,3745,"[\""Charger\""]",1769.54,{},123909,1,"""South America""" +2023-08-05,53566,5788,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3898.47,{},53737,1,"""South America""" +2024-07-10,53567,1387,"[\""Monitor\""]",2685.6,"{\"": \""27%\""}",206996,0,"""South America""" +2023-08-10,53568,5491,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1493.82,{},260904,1,"""North America""" +2023-07-14,53569,5931,"[\""Phone\"", \""Wireless Mouse\""]",624.59,"{\""promo\"": \""11%\""}",185672,0,"""North America""" +2023-10-24,53570,6696,"[\""Monitor\"", \""Wireless Mouse\""]",3488.89,"{\"": \""10%\""}",207207,1,"""Europe""" +2023-04-29,53571,1810,"[\""Phone\"", \""Wireless Mouse\""]",886.23,{},259300,1,"""Africa""" +2024-03-24,53572,2645,"[\""Keyboard\"", \""Charger\""]",1073.51,"{\""loyalty\"": \""13%\""}",275185,1,"""Asia""" +2023-06-17,53573,4058,"[\""Headphones\""]",898.22,{},282121,1,"""South America""" +2023-04-01,53574,7017,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1845.73,{},4266,1,"""Europe""" +2024-09-02,53575,3565,"[\""Laptop\"", \""Tablet\""]",1457.67,"{\""promo\"": \""6%\""}",248478,0,"""South America""" +2023-06-10,53576,5774,"[\""Monitor\""]",793.41,"{\""promo\"": \""11%\""}",95265,1,"""South America""" +2024-06-19,53577,2305,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1810.3,"{\""seasonal\"": \""27%\""}",260358,1,"""Europe""" +2024-08-03,53578,8527,"[\""Keyboard\""]",4364.15,"{\""promo\"": \""14%\""}",248811,0,"""South America""" +2024-09-04,53579,874,"[\""Wireless Mouse\"", \""Phone\""]",1528.1,{},238501,0,"""South America""" +2024-01-24,53580,8326,"[\""Monitor\""]",621.41,"{\""loyalty\"": \""25%\""}",74355,1,"""South America""" +2023-10-28,53581,5341,"[\""Tablet\""]",1722.78,"{\""loyalty\"": \""13%\""}",203052,1,"""Europe""" +2023-04-11,53582,2716,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2285.28,{},232987,1,"""Africa""" +2024-01-03,53583,4897,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3144.86,{},274493,1,"""Asia""" +2023-12-12,53584,2439,"[\""Headphones\""]",76.17,"{\""loyalty\"": \""15%\""}",82039,1,"""Asia""" +2024-08-05,53585,3692,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",834.08,{},92554,0,"""South America""" +2024-09-04,53586,3036,"[\""Keyboard\""]",3557.51,"{\""loyalty\"": \""8%\""}",22381,1,"""Asia""" +2024-10-25,53587,6078,"[\""Keyboard\""]",492.95,{},14820,0,"""Asia""" +2023-03-04,53588,8093,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1150.17,"{\"": \""24%\""}",173060,0,"""South America""" +2023-06-23,53589,1516,"[\""Wireless Mouse\"", \""Monitor\""]",4401.93,{},94402,1,"""North America""" +2023-11-08,53590,2027,"[\""Laptop\"", \""Tablet\""]",4164.49,{},39924,0,"""Europe""" +2024-01-28,53591,3275,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",791.76,"{\""seasonal\"": \""23%\""}",143158,0,"""Africa""" +2023-11-11,53592,8771,"[\""Headphones\""]",4399.42,"{\""loyalty\"": \""20%\""}",93691,1,"""South America""" +2023-01-07,53593,1301,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2361.97,{},154736,0,"""North America""" +2024-08-31,53594,4291,"[\""Wireless Mouse\"", \""Laptop\""]",2936.36,{},74431,1,"""Africa""" +2023-03-03,53595,9686,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",723.22,"{\""seasonal\"": \""12%\""}",71213,0,"""Asia""" +2024-11-13,53596,1066,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2552.16,{},23768,1,"""Europe""" +2023-11-16,53597,1612,"[\""Wireless Mouse\"", \""Laptop\""]",2734.66,"{\""seasonal\"": \""24%\""}",160326,0,"""South America""" +2024-09-27,53598,6419,"[\""Wireless Mouse\"", \""Charger\""]",3686.53,{},9190,1,"""Europe""" +2024-11-26,53599,4604,"[\""Monitor\"", \""Wireless Mouse\""]",3828.11,{},264410,1,"""Africa""" +2023-08-29,53600,9846,"[\""Charger\""]",1957.87,{},1326,0,"""Africa""" +2023-12-02,53601,3909,"[\""Phone\"", \""Monitor\""]",1861.16,"{\""promo\"": \""21%\""}",149928,0,"""Asia""" +2024-01-27,53602,6093,"[\""Phone\"", \""Keyboard\""]",245.32,"{\""promo\"": \""11%\""}",60377,1,"""Europe""" +2024-02-13,53603,355,"[\""Phone\""]",77.3,{},254805,0,"""North America""" +2024-10-17,53604,3666,"[\""Laptop\""]",4687.51,"{\""seasonal\"": \""12%\""}",296637,1,"""Europe""" +2024-09-18,53605,461,"[\""Phone\""]",1531.67,"{\""loyalty\"": \""29%\""}",1669,0,"""South America""" +2024-09-26,53606,9037,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1875.42,"{\""loyalty\"": \""9%\""}",66233,1,"""North America""" +2023-07-27,53607,6786,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4319.16,"{\""seasonal\"": \""19%\""}",212379,1,"""South America""" +2024-07-15,53608,6227,"[\""Wireless Mouse\""]",3658.28,"{\""seasonal\"": \""30%\""}",172484,1,"""South America""" +2024-06-30,53609,140,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2774.46,{},80328,0,"""South America""" +2024-05-11,53610,6150,"[\""Laptop\"", \""Tablet\""]",1335.94,{},195898,0,"""North America""" +2024-03-18,53611,3252,"[\""Laptop\""]",340.09,"{\""seasonal\"": \""28%\""}",13516,1,"""Asia""" +2023-11-19,53612,7577,"[\""Charger\""]",943.46,"{\""seasonal\"": \""13%\""}",25127,0,"""Asia""" +2024-11-25,53613,5496,"[\""Phone\"", \""Headphones\""]",1004.54,"{\""promo\"": \""8%\""}",6208,0,"""Asia""" +2023-04-19,53614,266,"[\""Monitor\""]",4978.7,"{\""loyalty\"": \""25%\""}",62036,1,"""South America""" +2023-09-03,53615,9380,"[\""Phone\"", \""Laptop\""]",682.18,"{\"": \""16%\""}",198845,0,"""Africa""" +2024-02-01,53616,8770,"[\""Charger\""]",4486.54,{},87496,0,"""Asia""" +2024-03-11,53617,5276,"[\""Phone\""]",4092.11,{},70207,1,"""Asia""" +2024-02-09,53618,651,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2317.92,"{\""promo\"": \""18%\""}",229675,1,"""Africa""" +2023-02-11,53619,1613,"[\""Laptop\""]",2922.55,{},74312,1,"""Africa""" +2024-11-01,53620,8944,"[\""Monitor\""]",3953.78,{},267496,1,"""North America""" +2023-10-17,53621,4913,"[\""Charger\""]",4795.97,"{\""seasonal\"": \""28%\""}",85539,1,"""North America""" +2023-01-11,53622,9194,"[\""Headphones\""]",2926.59,{},62308,1,"""South America""" +2023-09-21,53623,1589,"[\""Monitor\""]",303.23,{},258776,0,"""Africa""" +2024-12-02,53624,3871,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2089.59,"{\""seasonal\"": \""13%\""}",163880,1,"""South America""" +2024-09-22,53625,4690,"[\""Laptop\"", \""Headphones\""]",2966.98,{},16705,0,"""Africa""" +2024-08-24,53626,5917,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1679.79,"{\""promo\"": \""15%\""}",45367,0,"""Africa""" +2024-07-15,53627,6772,"[\""Laptop\""]",896.35,"{\""loyalty\"": \""23%\""}",230305,0,"""Europe""" +2024-07-29,53628,59,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4493.94,"{\""seasonal\"": \""7%\""}",48917,0,"""South America""" +2024-12-31,53629,3571,"[\""Keyboard\"", \""Tablet\""]",329.07,"{\"": \""9%\""}",165449,1,"""Africa""" +2023-01-07,53630,7527,"[\""Keyboard\""]",4106.23,{},88873,0,"""South America""" +2024-08-18,53631,5193,"[\""Charger\""]",996.2,{},174637,1,"""Africa""" +2024-11-07,53632,9980,"[\""Laptop\"", \""Monitor\""]",2173.47,{},291492,1,"""South America""" +2024-03-16,53633,8311,"[\""Charger\"", \""Tablet\""]",498.11,{},269705,0,"""Africa""" +2024-01-25,53634,8400,"[\""Headphones\"", \""Monitor\""]",1302.84,{},11940,0,"""North America""" +2024-05-05,53635,3947,"[\""Phone\""]",3792.5,{},132373,1,"""Africa""" +2024-08-04,53636,9326,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2496.31,{},123208,0,"""Africa""" +2023-09-25,53637,6084,"[\""Headphones\"", \""Laptop\""]",3127.79,{},5251,0,"""Africa""" +2023-07-14,53638,704,"[\""Tablet\"", \""Monitor\""]",272.7,"{\"": \""10%\""}",290247,0,"""Europe""" +2023-03-05,53639,7738,"[\""Tablet\"", \""Headphones\""]",4335.77,"{\""seasonal\"": \""24%\""}",174156,1,"""Africa""" +2024-11-10,53640,3123,"[\""Charger\"", \""Monitor\""]",1592.41,"{\"": \""6%\""}",46470,0,"""Africa""" +2023-02-16,53641,8908,"[\""Headphones\"", \""Keyboard\""]",3025.48,"{\""seasonal\"": \""26%\""}",287014,0,"""North America""" +2023-12-05,53642,7628,"[\""Charger\"", \""Phone\""]",1098.34,"{\""seasonal\"": \""16%\""}",94571,1,"""Africa""" +2023-03-31,53643,5252,"[\""Charger\""]",714.86,{},96433,1,"""North America""" +2024-03-20,53644,2012,"[\""Phone\"", \""Headphones\""]",2084.58,{},37525,1,"""Europe""" +2023-07-07,53645,4096,"[\""Phone\""]",2510.72,"{\""seasonal\"": \""29%\""}",184421,1,"""Asia""" +2023-12-18,53646,6635,"[\""Phone\"", \""Keyboard\""]",3110.11,"{\""promo\"": \""21%\""}",80504,0,"""South America""" +2024-12-13,53647,266,"[\""Monitor\"", \""Phone\""]",2949.44,{},135306,1,"""North America""" +2024-05-28,53648,1081,"[\""Wireless Mouse\""]",2940.43,"{\""promo\"": \""25%\""}",170186,1,"""North America""" +2023-01-10,53649,5541,"[\""Laptop\"", \""Phone\""]",4517.19,"{\""promo\"": \""19%\""}",36560,0,"""Asia""" +2024-10-12,53650,7892,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4491.05,{},232456,0,"""Asia""" +2024-03-27,53651,1160,"[\""Laptop\""]",3247.69,{},233193,1,"""Europe""" +2023-06-29,53652,1361,"[\""Laptop\""]",3928.81,"{\""seasonal\"": \""19%\""}",245379,1,"""Europe""" +2023-07-16,53653,6677,"[\""Keyboard\"", \""Tablet\""]",3553.88,"{\""promo\"": \""25%\""}",193807,0,"""South America""" +2023-09-22,53654,9008,"[\""Laptop\"", \""Charger\""]",2021.92,"{\""loyalty\"": \""19%\""}",292417,1,"""Asia""" +2023-08-25,53655,727,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1543.67,{},270383,1,"""North America""" +2024-09-01,53656,3958,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1514.71,"{\""promo\"": \""18%\""}",39914,1,"""South America""" +2024-02-12,53657,8977,"[\""Phone\""]",4373.3,{},239651,0,"""North America""" +2023-02-14,53658,6107,"[\""Headphones\"", \""Keyboard\""]",2690.03,"{\""seasonal\"": \""20%\""}",200089,1,"""North America""" +2024-06-29,53659,6694,"[\""Charger\""]",4851.47,"{\""loyalty\"": \""29%\""}",131800,1,"""South America""" +2024-01-20,53660,477,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2177.47,"{\""loyalty\"": \""20%\""}",222611,0,"""Africa""" +2023-10-25,53661,5728,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3518.02,{},243488,1,"""Africa""" +2024-10-15,53662,577,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1383.28,{},262343,1,"""Asia""" +2023-03-15,53663,9303,"[\""Laptop\""]",4655.1,"{\""seasonal\"": \""17%\""}",244979,0,"""North America""" +2024-03-20,53664,3536,"[\""Tablet\""]",2701.56,{},240361,0,"""South America""" +2024-06-03,53665,2421,"[\""Monitor\""]",2459.9,{},179687,0,"""Africa""" +2023-05-11,53666,4762,"[\""Tablet\"", \""Laptop\""]",4548.2,{},287210,1,"""North America""" +2023-04-21,53667,5718,"[\""Charger\"", \""Phone\""]",3028.68,"{\""promo\"": \""27%\""}",254805,1,"""Africa""" +2024-09-20,53668,6642,"[\""Tablet\"", \""Keyboard\""]",1068.2,"{\""promo\"": \""8%\""}",283720,0,"""Europe""" +2024-12-26,53669,5785,"[\""Monitor\"", \""Phone\""]",3684.8,"{\"": \""10%\""}",151478,1,"""Asia""" +2023-02-12,53670,6132,"[\""Keyboard\"", \""Laptop\""]",2374.2,{},145306,0,"""Africa""" +2024-05-02,53671,1226,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1960.39,{},101606,0,"""Europe""" +2023-03-05,53672,2687,"[\""Keyboard\"", \""Tablet\""]",3403.31,"{\""loyalty\"": \""26%\""}",156738,0,"""Europe""" +2023-12-20,53673,5026,"[\""Tablet\"", \""Monitor\""]",942.14,{},188339,0,"""Africa""" +2023-05-22,53674,8954,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4241.0,{},99271,0,"""Africa""" +2023-11-17,53675,8917,"[\""Laptop\"", \""Monitor\""]",2197.58,{},29131,0,"""Europe""" +2023-03-23,53676,3361,"[\""Headphones\"", \""Charger\""]",2337.28,"{\""promo\"": \""14%\""}",285048,1,"""North America""" +2024-06-29,53677,5667,"[\""Headphones\""]",2662.69,{},138473,0,"""Asia""" +2023-03-01,53678,6598,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1041.34,{},164940,1,"""Africa""" +2023-01-27,53679,6604,"[\""Tablet\""]",464.69,"{\""seasonal\"": \""26%\""}",110323,1,"""North America""" +2024-01-29,53680,429,"[\""Wireless Mouse\""]",2770.39,{},282044,0,"""Africa""" +2023-10-03,53681,9951,"[\""Wireless Mouse\"", \""Monitor\""]",1673.53,"{\""seasonal\"": \""23%\""}",50447,1,"""Europe""" +2023-05-23,53682,1664,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1428.01,{},121080,0,"""North America""" +2023-01-03,53683,5886,"[\""Monitor\"", \""Wireless Mouse\""]",3325.06,{},279279,1,"""Europe""" +2023-06-12,53684,6669,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",994.56,{},39332,0,"""North America""" +2023-06-13,53685,3511,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2689.66,{},243442,0,"""Europe""" +2024-01-14,53686,1665,"[\""Headphones\"", \""Wireless Mouse\""]",2657.16,"{\""loyalty\"": \""13%\""}",161084,0,"""Europe""" +2023-10-10,53687,9708,"[\""Monitor\""]",1100.21,{},91824,1,"""Africa""" +2023-09-14,53688,3399,"[\""Monitor\""]",4499.03,"{\""seasonal\"": \""20%\""}",229916,1,"""Europe""" +2023-03-19,53689,2658,"[\""Laptop\"", \""Tablet\""]",1686.79,{},100795,1,"""Africa""" +2024-11-14,53690,6040,"[\""Headphones\"", \""Monitor\""]",2629.19,{},224633,1,"""South America""" +2024-03-14,53691,497,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1079.54,"{\"": \""30%\""}",7300,1,"""North America""" +2024-03-30,53692,3607,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3957.29,{},147071,1,"""Africa""" +2024-08-18,53693,5747,"[\""Keyboard\""]",4495.62,"{\""seasonal\"": \""7%\""}",97182,0,"""Africa""" +2024-05-24,53694,15,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3543.49,{},252037,1,"""Africa""" +2024-07-17,53695,5101,"[\""Headphones\"", \""Keyboard\""]",3573.99,{},76270,0,"""Asia""" +2024-01-01,53696,4531,"[\""Laptop\""]",3030.86,{},71748,0,"""Europe""" +2024-03-15,53697,1090,"[\""Headphones\"", \""Laptop\""]",800.69,"{\""loyalty\"": \""6%\""}",185534,1,"""Africa""" +2023-09-06,53698,3593,"[\""Wireless Mouse\"", \""Headphones\""]",756.39,{},91863,1,"""Europe""" +2023-03-23,53699,4982,"[\""Tablet\"", \""Charger\""]",3988.53,"{\""loyalty\"": \""13%\""}",245321,1,"""Europe""" +2024-10-31,53700,8450,"[\""Laptop\"", \""Keyboard\""]",4248.4,{},267272,1,"""Europe""" +2023-10-19,53701,8321,"[\""Headphones\"", \""Wireless Mouse\""]",697.24,{},50159,0,"""Europe""" +2024-12-06,53702,7883,"[\""Tablet\""]",2345.53,{},95699,1,"""North America""" +2023-07-09,53703,115,"[\""Charger\"", \""Tablet\""]",4499.67,{},101394,0,"""Asia""" +2023-04-26,53704,9101,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1557.09,{},47004,1,"""Europe""" +2023-07-05,53705,7303,"[\""Monitor\""]",1338.26,"{\"": \""20%\""}",25483,1,"""Africa""" +2024-11-12,53706,8773,"[\""Tablet\"", \""Headphones\""]",1200.2,"{\""promo\"": \""10%\""}",107402,1,"""Europe""" +2023-01-24,53707,8107,"[\""Headphones\""]",409.46,{},204239,1,"""North America""" +2024-10-11,53708,746,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4296.21,"{\""loyalty\"": \""26%\""}",180447,1,"""Asia""" +2024-12-13,53709,4994,"[\""Laptop\"", \""Phone\""]",3279.57,"{\""seasonal\"": \""10%\""}",215285,1,"""Europe""" +2024-01-04,53710,7653,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4270.7,"{\""promo\"": \""14%\""}",156760,1,"""South America""" +2023-10-26,53711,8977,"[\""Phone\"", \""Wireless Mouse\""]",4996.99,"{\""promo\"": \""26%\""}",299933,0,"""Africa""" +2024-06-02,53712,5080,"[\""Keyboard\""]",316.0,"{\""loyalty\"": \""14%\""}",140241,1,"""South America""" +2023-01-06,53713,9885,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1407.92,"{\"": \""6%\""}",71076,1,"""Asia""" +2023-05-20,53714,6393,"[\""Headphones\"", \""Monitor\""]",467.25,"{\""loyalty\"": \""28%\""}",4460,1,"""Asia""" +2023-04-11,53715,893,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4777.41,{},258859,1,"""North America""" +2023-04-19,53716,3449,"[\""Laptop\"", \""Tablet\""]",708.9,"{\""promo\"": \""17%\""}",226216,0,"""South America""" +2024-05-25,53717,2296,"[\""Laptop\""]",3757.67,"{\""seasonal\"": \""26%\""}",247114,0,"""Asia""" +2023-05-31,53718,6773,"[\""Phone\"", \""Wireless Mouse\""]",3172.83,"{\""seasonal\"": \""14%\""}",254327,0,"""North America""" +2024-08-05,53719,4210,"[\""Charger\""]",3321.24,"{\""loyalty\"": \""12%\""}",35111,1,"""South America""" +2024-03-29,53720,8633,"[\""Laptop\""]",2277.15,{},118293,1,"""Africa""" +2024-04-30,53721,1807,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2297.23,{},145650,1,"""South America""" +2023-11-02,53722,3326,"[\""Monitor\""]",1347.85,{},97214,1,"""Europe""" +2023-02-12,53723,7186,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1672.22,{},250449,1,"""Asia""" +2023-09-08,53724,7700,"[\""Tablet\"", \""Charger\""]",2728.57,"{\"": \""30%\""}",15136,0,"""Africa""" +2023-11-18,53725,1567,"[\""Phone\"", \""Laptop\""]",1311.94,"{\""promo\"": \""7%\""}",251351,0,"""North America""" +2024-02-03,53726,6206,"[\""Monitor\"", \""Tablet\""]",1228.67,"{\""promo\"": \""16%\""}",276890,1,"""South America""" +2024-09-21,53727,7757,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3417.73,{},75202,1,"""Africa""" +2024-01-13,53728,5213,"[\""Laptop\""]",744.56,"{\""loyalty\"": \""13%\""}",166105,0,"""Asia""" +2024-10-12,53729,7815,"[\""Wireless Mouse\"", \""Charger\""]",4351.3,{},198280,0,"""Africa""" +2024-06-28,53730,4258,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3911.52,{},113804,0,"""Asia""" +2024-05-31,53731,7761,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4377.05,{},27330,0,"""North America""" +2024-08-27,53732,1395,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4378.55,{},25870,0,"""Africa""" +2023-12-16,53733,5708,"[\""Tablet\""]",3254.56,{},199247,0,"""Europe""" +2024-06-13,53734,2046,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",74.59,{},4255,1,"""Europe""" +2024-10-15,53735,4222,"[\""Keyboard\"", \""Monitor\""]",786.12,{},85766,1,"""Africa""" +2024-12-31,53736,2580,"[\""Phone\"", \""Laptop\""]",4601.84,{},43295,1,"""Africa""" +2024-02-22,53737,3311,"[\""Wireless Mouse\"", \""Laptop\""]",459.27,"{\""seasonal\"": \""11%\""}",225031,0,"""Africa""" +2024-05-12,53738,163,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",358.41,{},96833,0,"""Africa""" +2023-09-16,53739,6815,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",930.4,{},205029,0,"""North America""" +2024-02-18,53740,3186,"[\""Wireless Mouse\""]",4801.06,{},153959,0,"""North America""" +2023-03-09,53741,9836,"[\""Laptop\"", \""Wireless Mouse\""]",1964.54,"{\""loyalty\"": \""30%\""}",181274,0,"""Asia""" +2024-09-07,53742,6861,"[\""Charger\"", \""Headphones\""]",1847.65,"{\""promo\"": \""16%\""}",280674,0,"""Europe""" +2023-04-12,53743,5843,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4560.88,"{\""promo\"": \""27%\""}",262263,1,"""South America""" +2023-01-05,53744,3839,"[\""Monitor\"", \""Laptop\""]",77.93,{},242209,0,"""Asia""" +2024-08-30,53745,8120,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2122.06,{},16702,0,"""North America""" +2023-09-19,53746,9550,"[\""Tablet\"", \""Phone\""]",3003.74,{},259064,0,"""Africa""" +2023-03-24,53747,4563,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",443.53,"{\""promo\"": \""28%\""}",238540,1,"""Africa""" +2023-10-28,53748,1873,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4134.3,{},159414,0,"""North America""" +2024-01-07,53749,1228,"[\""Headphones\"", \""Phone\""]",3989.59,"{\""seasonal\"": \""20%\""}",151541,1,"""North America""" +2024-11-15,53750,1983,"[\""Monitor\""]",496.88,{},118307,1,"""South America""" +2023-05-22,53751,6034,"[\""Laptop\""]",3118.78,"{\""promo\"": \""30%\""}",247533,0,"""Asia""" +2024-02-20,53752,7489,"[\""Headphones\""]",3608.55,{},108639,1,"""Europe""" +2024-03-23,53753,7889,"[\""Tablet\""]",4906.22,"{\"": \""18%\""}",21268,1,"""Europe""" +2024-11-28,53754,3584,"[\""Charger\""]",835.95,{},276408,1,"""South America""" +2024-05-16,53755,3403,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3684.42,{},219006,1,"""Europe""" +2024-06-11,53756,9721,"[\""Phone\"", \""Headphones\""]",3450.72,{},285200,1,"""Asia""" +2023-01-16,53757,3246,"[\""Charger\"", \""Laptop\""]",3196.66,{},288127,1,"""North America""" +2023-07-18,53758,3171,"[\""Wireless Mouse\"", \""Headphones\""]",3305.07,"{\""promo\"": \""13%\""}",158624,1,"""South America""" +2023-09-14,53759,384,"[\""Laptop\""]",315.78,"{\""seasonal\"": \""20%\""}",149320,1,"""South America""" +2024-07-27,53760,3675,"[\""Wireless Mouse\""]",329.81,{},90166,1,"""Africa""" +2023-10-02,53761,3050,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",871.78,"{\""promo\"": \""26%\""}",45220,1,"""South America""" +2023-04-19,53762,3665,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1841.81,{},91614,0,"""South America""" +2023-02-27,53763,2599,"[\""Keyboard\"", \""Headphones\""]",2966.04,"{\""seasonal\"": \""10%\""}",169205,1,"""Africa""" +2024-11-28,53764,6546,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4414.74,"{\""seasonal\"": \""29%\""}",4496,1,"""Asia""" +2024-12-20,53765,4122,"[\""Laptop\"", \""Charger\""]",652.97,{},100591,1,"""Asia""" +2024-08-22,53766,7456,"[\""Tablet\""]",878.43,"{\""promo\"": \""21%\""}",50508,1,"""Africa""" +2023-03-12,53767,3412,"[\""Charger\"", \""Keyboard\""]",3357.85,{},65948,1,"""Asia""" +2023-01-30,53768,8036,"[\""Headphones\""]",2766.19,{},204344,1,"""North America""" +2024-12-14,53769,9818,"[\""Charger\""]",635.38,{},209006,1,"""Europe""" +2024-02-10,53770,5969,"[\""Phone\""]",446.15,{},28997,0,"""Asia""" +2024-04-12,53771,8664,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1134.4,"{\"": \""15%\""}",198042,0,"""North America""" +2023-08-23,53772,197,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",96.42,{},117133,1,"""Europe""" +2023-02-21,53773,9584,"[\""Charger\""]",4649.43,"{\"": \""29%\""}",81798,0,"""Africa""" +2023-01-30,53774,8042,"[\""Headphones\"", \""Tablet\""]",3933.33,{},69046,0,"""Asia""" +2023-03-29,53775,2048,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",933.69,"{\""loyalty\"": \""19%\""}",130343,1,"""Africa""" +2023-12-14,53776,8909,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1459.39,{},1610,1,"""Asia""" +2024-04-20,53777,7141,"[\""Monitor\"", \""Charger\""]",1027.42,{},246255,1,"""Africa""" +2024-07-23,53778,4904,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3532.93,{},201388,0,"""North America""" +2023-12-01,53779,2300,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1431.37,"{\""loyalty\"": \""21%\""}",185351,1,"""South America""" +2024-03-11,53780,7529,"[\""Charger\""]",2639.29,"{\""loyalty\"": \""21%\""}",244046,0,"""South America""" +2024-06-29,53781,1083,"[\""Headphones\"", \""Phone\""]",328.2,"{\"": \""15%\""}",13304,0,"""Africa""" +2024-06-01,53782,6533,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2621.61,{},237309,0,"""Europe""" +2024-04-26,53783,6171,"[\""Headphones\""]",1796.21,"{\""promo\"": \""6%\""}",21001,1,"""Europe""" +2024-07-04,53784,5560,"[\""Keyboard\""]",3878.91,{},255951,0,"""Asia""" +2024-02-27,53785,341,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2662.71,{},234621,0,"""Africa""" +2023-05-31,53786,2739,"[\""Charger\""]",3529.29,{},50349,1,"""Asia""" +2024-08-07,53787,1150,"[\""Charger\""]",2785.31,{},32144,0,"""Africa""" +2024-08-24,53788,6960,"[\""Phone\"", \""Laptop\""]",3941.31,"{\"": \""5%\""}",293497,0,"""South America""" +2024-08-27,53789,4157,"[\""Monitor\"", \""Wireless Mouse\""]",1660.8,{},95786,0,"""Asia""" +2024-11-28,53790,2463,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1955.41,"{\""loyalty\"": \""11%\""}",241303,0,"""South America""" +2023-02-08,53791,4967,"[\""Phone\"", \""Charger\""]",4119.34,"{\""loyalty\"": \""14%\""}",187008,0,"""North America""" +2024-09-23,53792,2649,"[\""Laptop\""]",2744.22,"{\""loyalty\"": \""14%\""}",82888,0,"""Europe""" +2023-10-18,53793,880,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3737.22,"{\""promo\"": \""7%\""}",62234,0,"""Africa""" +2024-09-26,53794,9650,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2501.22,{},123340,1,"""Africa""" +2024-11-23,53795,2541,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1412.13,"{\"": \""9%\""}",154066,1,"""North America""" +2023-11-06,53796,1762,"[\""Keyboard\""]",1963.07,{},202593,0,"""North America""" +2024-11-04,53797,1149,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4186.56,"{\""promo\"": \""24%\""}",120120,1,"""North America""" +2023-02-22,53798,256,"[\""Laptop\""]",2856.93,{},276495,0,"""North America""" +2023-04-16,53799,7471,"[\""Monitor\""]",4040.12,"{\""promo\"": \""16%\""}",17444,1,"""Europe""" +2024-11-11,53800,8687,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4916.95,"{\""loyalty\"": \""29%\""}",89850,0,"""Asia""" +2023-04-06,53801,3203,"[\""Wireless Mouse\"", \""Headphones\""]",1034.77,"{\"": \""27%\""}",294022,1,"""Africa""" +2023-07-20,53802,5344,"[\""Wireless Mouse\"", \""Headphones\""]",4180.66,"{\""promo\"": \""25%\""}",82417,1,"""Asia""" +2024-10-04,53803,8655,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3704.01,{},219784,0,"""South America""" +2023-03-18,53804,412,"[\""Keyboard\"", \""Phone\""]",1573.13,{},272335,1,"""Europe""" +2023-03-12,53805,9483,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4071.66,{},94710,1,"""Europe""" +2024-09-06,53806,9517,"[\""Charger\""]",2285.1,{},138999,1,"""Africa""" +2023-09-12,53807,3768,"[\""Wireless Mouse\"", \""Monitor\""]",1844.75,"{\""promo\"": \""11%\""}",27663,0,"""Africa""" +2024-03-15,53808,2890,"[\""Headphones\"", \""Monitor\""]",2354.08,"{\"": \""28%\""}",285136,0,"""Asia""" +2024-12-28,53809,6043,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",748.53,{},215698,0,"""North America""" +2023-12-11,53810,528,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4389.03,"{\""promo\"": \""18%\""}",182012,0,"""Africa""" +2023-01-21,53811,5400,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1275.93,"{\""promo\"": \""12%\""}",200624,0,"""North America""" +2024-03-26,53812,6718,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2371.03,{},97112,0,"""Africa""" +2023-06-15,53813,651,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2312.65,"{\""promo\"": \""24%\""}",90156,0,"""Asia""" +2023-09-11,53814,7157,"[\""Headphones\"", \""Laptop\""]",2522.3,"{\""promo\"": \""17%\""}",186798,0,"""Africa""" +2024-11-19,53815,2269,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",634.25,"{\""loyalty\"": \""20%\""}",233510,0,"""North America""" +2024-10-14,53816,3335,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",182.18,{},243335,1,"""Africa""" +2023-08-30,53817,7337,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2991.43,"{\""promo\"": \""17%\""}",38486,1,"""Europe""" +2024-09-01,53818,6877,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",425.19,{},111711,0,"""North America""" +2024-12-27,53819,8381,"[\""Headphones\""]",3029.86,{},161297,0,"""Africa""" +2024-11-29,53820,5584,"[\""Headphones\""]",2008.3,{},77068,1,"""Africa""" +2023-07-09,53821,304,"[\""Charger\""]",681.68,"{\""seasonal\"": \""29%\""}",219848,1,"""Asia""" +2023-03-03,53822,2691,"[\""Charger\"", \""Monitor\""]",2432.65,"{\"": \""18%\""}",269177,0,"""South America""" +2023-05-05,53823,1329,"[\""Headphones\""]",3983.88,"{\""loyalty\"": \""15%\""}",45329,0,"""Africa""" +2023-01-09,53824,111,"[\""Phone\"", \""Charger\""]",4550.97,"{\""seasonal\"": \""11%\""}",30244,0,"""Asia""" +2024-11-01,53825,1104,"[\""Keyboard\"", \""Headphones\""]",1509.11,{},227349,1,"""South America""" +2023-08-07,53826,2202,"[\""Tablet\"", \""Charger\""]",496.35,{},100001,1,"""North America""" +2024-08-17,53827,2180,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3940.19,{},143647,1,"""Europe""" +2024-05-26,53828,3688,"[\""Tablet\"", \""Keyboard\""]",2832.71,"{\""loyalty\"": \""6%\""}",224540,1,"""Europe""" +2024-07-17,53829,7234,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",445.84,{},282906,0,"""Europe""" +2024-06-14,53830,2690,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1235.64,"{\""loyalty\"": \""19%\""}",273067,0,"""North America""" +2023-09-08,53831,8108,"[\""Phone\""]",1288.33,"{\"": \""25%\""}",266757,1,"""Asia""" +2023-07-30,53832,7081,"[\""Headphones\"", \""Phone\""]",1605.71,"{\"": \""27%\""}",113783,1,"""North America""" +2024-10-27,53833,7953,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4070.92,"{\"": \""16%\""}",62890,1,"""Africa""" +2023-02-04,53834,8351,"[\""Wireless Mouse\"", \""Phone\""]",566.45,{},249913,0,"""North America""" +2024-12-03,53835,3215,"[\""Phone\"", \""Keyboard\""]",4246.37,"{\""promo\"": \""7%\""}",160048,0,"""Asia""" +2024-01-05,53836,2757,"[\""Wireless Mouse\"", \""Phone\""]",493.21,"{\""seasonal\"": \""19%\""}",5431,0,"""Africa""" +2023-07-22,53837,1982,"[\""Wireless Mouse\"", \""Charger\""]",4855.69,{},48027,0,"""Africa""" +2024-02-29,53838,4074,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1922.45,"{\""seasonal\"": \""22%\""}",3110,0,"""North America""" +2023-04-17,53839,947,"[\""Monitor\""]",3012.37,"{\""seasonal\"": \""29%\""}",87606,1,"""Europe""" +2023-03-21,53840,4972,"[\""Phone\""]",4992.4,"{\""seasonal\"": \""23%\""}",10374,1,"""Europe""" +2023-09-09,53841,8369,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2132.73,"{\""promo\"": \""23%\""}",20983,1,"""South America""" +2023-12-05,53842,2926,"[\""Tablet\""]",1521.9,"{\""loyalty\"": \""22%\""}",192176,0,"""Africa""" +2023-07-17,53843,5975,"[\""Headphones\"", \""Laptop\""]",2771.28,"{\""seasonal\"": \""27%\""}",169978,0,"""Europe""" +2023-03-28,53844,5936,"[\""Monitor\"", \""Charger\"", \""Phone\""]",444.42,"{\""promo\"": \""30%\""}",149884,1,"""South America""" +2024-12-14,53845,8660,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3316.78,"{\""loyalty\"": \""10%\""}",183895,1,"""Africa""" +2023-08-25,53846,1101,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1889.36,"{\""loyalty\"": \""11%\""}",92162,0,"""Europe""" +2024-12-18,53847,2247,"[\""Headphones\""]",4231.79,"{\""promo\"": \""8%\""}",135897,0,"""Africa""" +2023-12-31,53848,6314,"[\""Keyboard\""]",3358.93,"{\""loyalty\"": \""10%\""}",119045,1,"""North America""" +2023-01-24,53849,3456,"[\""Charger\""]",758.67,"{\""seasonal\"": \""11%\""}",254593,1,"""Africa""" +2024-03-13,53850,8921,"[\""Keyboard\"", \""Wireless Mouse\""]",425.01,{},89579,0,"""Africa""" +2023-06-30,53851,4832,"[\""Charger\""]",1398.59,"{\""promo\"": \""16%\""}",203726,0,"""Europe""" +2023-02-23,53852,6953,"[\""Wireless Mouse\"", \""Phone\""]",3197.85,{},239980,0,"""North America""" +2023-05-23,53853,8719,"[\""Charger\""]",4156.84,{},227630,1,"""North America""" +2024-11-05,53854,5412,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2709.7,{},1756,1,"""Africa""" +2024-01-10,53855,4299,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",839.93,{},195648,1,"""Africa""" +2023-07-14,53856,6456,"[\""Monitor\""]",1556.6,"{\""loyalty\"": \""23%\""}",145447,1,"""Europe""" +2023-04-25,53857,6416,"[\""Tablet\""]",3076.02,{},263553,0,"""Africa""" +2024-06-13,53858,9810,"[\""Phone\""]",3916.3,"{\""promo\"": \""26%\""}",208801,0,"""South America""" +2024-05-03,53859,2197,"[\""Headphones\""]",1323.45,"{\""promo\"": \""11%\""}",137027,1,"""Asia""" +2024-07-12,53860,7081,"[\""Headphones\""]",4882.44,{},226982,0,"""Europe""" +2024-08-31,53861,124,"[\""Wireless Mouse\"", \""Laptop\""]",4422.38,{},80511,1,"""Europe""" +2024-02-22,53862,814,"[\""Tablet\"", \""Phone\""]",755.41,{},285441,1,"""South America""" +2023-01-20,53863,3795,"[\""Monitor\"", \""Keyboard\""]",4897.51,"{\""seasonal\"": \""30%\""}",31192,0,"""Asia""" +2024-05-07,53864,1899,"[\""Phone\""]",3620.81,{},167385,1,"""Asia""" +2023-10-06,53865,6964,"[\""Tablet\"", \""Keyboard\""]",2664.94,"{\""loyalty\"": \""19%\""}",82133,0,"""South America""" +2024-03-12,53866,6926,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3839.08,"{\""promo\"": \""7%\""}",245757,0,"""South America""" +2023-10-10,53867,269,"[\""Headphones\"", \""Monitor\""]",3638.64,"{\""loyalty\"": \""7%\""}",34953,1,"""Asia""" +2024-08-25,53868,3709,"[\""Monitor\""]",1751.92,"{\""seasonal\"": \""28%\""}",23579,0,"""North America""" +2023-09-29,53869,7876,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3563.72,"{\""promo\"": \""25%\""}",289136,1,"""Asia""" +2023-05-14,53870,5646,"[\""Laptop\"", \""Monitor\""]",371.39,"{\""loyalty\"": \""21%\""}",272003,0,"""Africa""" +2023-05-09,53871,8235,"[\""Wireless Mouse\"", \""Phone\""]",4487.35,{},142376,0,"""Asia""" +2024-03-24,53872,4688,"[\""Tablet\""]",1048.27,"{\""seasonal\"": \""7%\""}",116152,0,"""Asia""" +2023-09-12,53873,4150,"[\""Wireless Mouse\""]",413.41,"{\""promo\"": \""7%\""}",13822,0,"""Africa""" +2023-09-21,53874,4495,"[\""Wireless Mouse\"", \""Monitor\""]",2012.73,{},21690,1,"""Africa""" +2024-04-20,53875,4299,"[\""Monitor\""]",4574.81,{},245777,1,"""South America""" +2023-10-22,53876,9107,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2017.22,"{\""loyalty\"": \""11%\""}",229853,0,"""North America""" +2023-03-04,53877,6371,"[\""Headphones\""]",1107.38,"{\""promo\"": \""18%\""}",256932,0,"""Asia""" +2023-02-13,53878,7160,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",91.96,"{\"": \""25%\""}",234861,0,"""Europe""" +2023-10-19,53879,3263,"[\""Monitor\""]",3063.14,"{\""promo\"": \""28%\""}",30538,0,"""South America""" +2023-04-18,53880,674,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1026.91,"{\""loyalty\"": \""5%\""}",9555,1,"""North America""" +2024-08-14,53881,8863,"[\""Charger\""]",1809.66,{},41949,1,"""Asia""" +2023-06-25,53882,1685,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4365.71,{},231818,0,"""North America""" +2024-11-19,53883,2157,"[\""Wireless Mouse\"", \""Keyboard\""]",4369.6,"{\"": \""10%\""}",174157,0,"""South America""" +2023-09-05,53884,3768,"[\""Phone\"", \""Keyboard\""]",152.1,{},255864,1,"""South America""" +2024-11-20,53885,5605,"[\""Monitor\"", \""Charger\""]",1988.47,"{\""seasonal\"": \""22%\""}",28043,1,"""Africa""" +2023-04-29,53886,8239,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3118.97,"{\""loyalty\"": \""18%\""}",56784,1,"""Asia""" +2024-01-08,53887,4751,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4397.75,"{\"": \""25%\""}",217069,0,"""Africa""" +2024-07-26,53888,1044,"[\""Phone\"", \""Laptop\""]",2798.36,"{\"": \""12%\""}",267305,1,"""North America""" +2024-05-24,53889,5050,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4121.03,"{\""promo\"": \""23%\""}",160191,0,"""Africa""" +2024-11-28,53890,3345,"[\""Monitor\""]",2052.87,"{\""promo\"": \""10%\""}",67745,1,"""South America""" +2024-04-17,53891,2192,"[\""Monitor\""]",3273.42,{},21780,1,"""Asia""" +2024-05-31,53892,6343,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2954.27,"{\""seasonal\"": \""22%\""}",142099,1,"""Africa""" +2023-08-09,53893,3764,"[\""Wireless Mouse\"", \""Tablet\""]",364.86,{},6678,0,"""South America""" +2023-08-12,53894,5082,"[\""Headphones\"", \""Keyboard\""]",3888.18,{},134298,1,"""South America""" +2024-05-30,53895,3171,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2619.82,"{\""loyalty\"": \""6%\""}",124723,1,"""North America""" +2023-01-10,53896,84,"[\""Tablet\"", \""Phone\""]",2391.24,"{\""seasonal\"": \""25%\""}",30807,1,"""Africa""" +2024-10-07,53897,47,"[\""Keyboard\""]",3595.47,{},252590,0,"""Europe""" +2023-08-09,53898,9290,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",696.86,{},124866,1,"""North America""" +2023-07-14,53899,2728,"[\""Keyboard\"", \""Monitor\""]",4771.73,"{\""seasonal\"": \""24%\""}",204651,0,"""Asia""" +2024-04-20,53900,1542,"[\""Charger\"", \""Wireless Mouse\""]",2962.64,"{\""promo\"": \""24%\""}",99591,0,"""North America""" +2024-08-18,53901,7705,"[\""Laptop\"", \""Charger\""]",3131.99,"{\"": \""12%\""}",278621,0,"""Europe""" +2023-06-29,53902,6073,"[\""Keyboard\"", \""Charger\""]",2049.7,"{\"": \""9%\""}",99532,0,"""South America""" +2023-02-25,53903,1897,"[\""Headphones\""]",1734.47,{},26477,1,"""North America""" +2023-11-07,53904,7771,"[\""Phone\""]",1424.13,{},190902,1,"""Europe""" +2024-06-14,53905,5963,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",890.92,{},6073,1,"""North America""" +2024-06-06,53906,9379,"[\""Tablet\""]",4692.17,"{\""promo\"": \""11%\""}",172396,1,"""Europe""" +2024-01-10,53907,3207,"[\""Laptop\""]",2317.19,{},46471,0,"""Africa""" +2023-04-20,53908,9297,"[\""Laptop\"", \""Wireless Mouse\""]",4973.71,{},95028,1,"""North America""" +2023-05-25,53909,9433,"[\""Keyboard\""]",2425.66,"{\""seasonal\"": \""30%\""}",157714,1,"""Europe""" +2024-10-05,53910,1114,"[\""Phone\"", \""Tablet\""]",4741.53,"{\""loyalty\"": \""13%\""}",274883,0,"""Europe""" +2024-11-30,53911,1669,"[\""Laptop\"", \""Keyboard\""]",1528.76,{},147640,0,"""South America""" +2023-04-20,53912,3098,"[\""Monitor\"", \""Charger\""]",2881.42,"{\""loyalty\"": \""11%\""}",161296,0,"""North America""" +2024-02-22,53913,7154,"[\""Wireless Mouse\"", \""Headphones\""]",4025.65,"{\""seasonal\"": \""10%\""}",163012,1,"""Asia""" +2024-03-20,53914,7555,"[\""Tablet\"", \""Phone\""]",1045.94,{},21345,0,"""Africa""" +2023-10-03,53915,7956,"[\""Phone\""]",279.79,"{\""seasonal\"": \""12%\""}",103229,1,"""Asia""" +2024-01-19,53916,132,"[\""Keyboard\""]",4182.16,{},202051,1,"""Europe""" +2023-01-02,53917,9905,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2264.42,{},75530,1,"""South America""" +2023-10-06,53918,6993,"[\""Tablet\"", \""Monitor\""]",3680.9,"{\""seasonal\"": \""17%\""}",265654,1,"""North America""" +2023-03-29,53919,2458,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",613.4,"{\""loyalty\"": \""5%\""}",293531,0,"""North America""" +2024-09-17,53920,8712,"[\""Headphones\""]",4648.5,"{\""loyalty\"": \""19%\""}",51768,0,"""Africa""" +2024-04-15,53921,9114,"[\""Headphones\""]",2447.79,"{\""loyalty\"": \""27%\""}",208449,0,"""North America""" +2024-07-03,53922,6910,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4168.77,"{\""loyalty\"": \""21%\""}",278609,0,"""Africa""" +2023-09-10,53923,1815,"[\""Laptop\"", \""Monitor\""]",1699.17,{},135941,0,"""Asia""" +2023-10-01,53924,3051,"[\""Phone\"", \""Headphones\""]",3179.55,"{\""promo\"": \""12%\""}",263815,1,"""Asia""" +2023-02-25,53925,149,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4300.3,{},289790,0,"""Asia""" +2023-07-16,53926,2443,"[\""Laptop\""]",183.68,{},297934,0,"""North America""" +2023-10-05,53927,8946,"[\""Phone\"", \""Charger\""]",1685.87,{},238189,0,"""North America""" +2023-12-13,53928,8829,"[\""Keyboard\""]",2209.66,{},129509,1,"""Africa""" +2024-05-12,53929,5278,"[\""Charger\"", \""Tablet\""]",733.44,{},132273,1,"""Europe""" +2024-01-31,53930,1949,"[\""Wireless Mouse\""]",618.47,{},297025,0,"""North America""" +2023-05-08,53931,5732,"[\""Wireless Mouse\""]",3003.18,"{\""loyalty\"": \""9%\""}",29042,1,"""North America""" +2023-04-06,53932,1372,"[\""Keyboard\"", \""Phone\""]",1368.39,"{\""promo\"": \""20%\""}",73266,1,"""North America""" +2023-05-20,53933,8991,"[\""Laptop\""]",1537.54,{},279005,0,"""Africa""" +2023-06-19,53934,5262,"[\""Phone\""]",3281.14,"{\"": \""25%\""}",290235,0,"""South America""" +2023-03-16,53935,1311,"[\""Keyboard\""]",810.27,"{\""seasonal\"": \""14%\""}",169458,1,"""Europe""" +2024-01-23,53936,4423,"[\""Charger\"", \""Monitor\""]",3095.34,{},125165,1,"""Asia""" +2023-07-24,53937,2167,"[\""Keyboard\""]",1081.44,"{\"": \""22%\""}",268278,0,"""North America""" +2023-01-01,53938,915,"[\""Monitor\""]",4847.69,{},104539,0,"""Africa""" +2023-10-19,53939,4253,"[\""Monitor\"", \""Phone\""]",3554.06,"{\""loyalty\"": \""26%\""}",280413,0,"""North America""" +2023-01-22,53940,112,"[\""Keyboard\"", \""Phone\""]",4929.71,{},58184,0,"""Asia""" +2023-10-15,53941,9578,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",845.49,"{\""seasonal\"": \""16%\""}",103338,1,"""Asia""" +2024-12-03,53942,9426,"[\""Charger\""]",3272.18,{},34209,0,"""Africa""" +2024-04-28,53943,1269,"[\""Phone\"", \""Charger\"", \""Monitor\""]",289.82,"{\""seasonal\"": \""8%\""}",98173,1,"""Africa""" +2023-11-09,53944,2651,"[\""Phone\""]",2169.14,{},159659,1,"""Africa""" +2024-07-20,53945,8154,"[\""Headphones\"", \""Laptop\""]",2708.35,"{\"": \""16%\""}",199696,1,"""South America""" +2024-05-10,53946,344,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",412.34,"{\""loyalty\"": \""17%\""}",184231,1,"""Asia""" +2024-10-25,53947,8778,"[\""Charger\""]",1434.22,"{\"": \""13%\""}",200521,1,"""South America""" +2024-12-04,53948,7948,"[\""Monitor\""]",3868.41,{},178701,1,"""Europe""" +2024-07-29,53949,6645,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1547.44,"{\"": \""18%\""}",115749,0,"""South America""" +2024-06-09,53950,6235,"[\""Laptop\""]",2094.28,{},279013,1,"""Africa""" +2023-02-07,53951,8826,"[\""Laptop\"", \""Charger\""]",696.23,"{\"": \""18%\""}",266046,1,"""Asia""" +2023-08-08,53952,2992,"[\""Keyboard\"", \""Charger\""]",1514.72,{},184698,1,"""Asia""" +2024-04-09,53953,9077,"[\""Headphones\"", \""Charger\""]",1795.73,"{\""loyalty\"": \""12%\""}",118738,1,"""Asia""" +2023-06-29,53954,2242,"[\""Keyboard\"", \""Monitor\""]",4106.96,"{\""promo\"": \""24%\""}",22202,0,"""Africa""" +2024-08-21,53955,1764,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4822.62,"{\"": \""11%\""}",167911,0,"""North America""" +2023-11-15,53956,7675,"[\""Phone\""]",2628.87,"{\""promo\"": \""5%\""}",44906,1,"""Africa""" +2023-07-28,53957,5614,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2683.54,"{\""seasonal\"": \""30%\""}",107965,1,"""Asia""" +2023-06-02,53958,4104,"[\""Keyboard\""]",884.46,"{\""loyalty\"": \""29%\""}",214190,0,"""North America""" +2024-11-09,53959,4140,"[\""Charger\""]",1904.96,{},9342,0,"""Africa""" +2024-12-14,53960,2033,"[\""Laptop\"", \""Headphones\""]",4330.53,"{\""loyalty\"": \""11%\""}",203918,1,"""Asia""" +2023-05-27,53961,2928,"[\""Charger\"", \""Tablet\""]",3838.51,"{\""loyalty\"": \""27%\""}",278545,0,"""North America""" +2024-05-03,53962,7564,"[\""Phone\""]",4989.81,"{\""loyalty\"": \""7%\""}",211242,0,"""North America""" +2023-02-13,53963,9161,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1694.49,{},114829,0,"""Asia""" +2024-12-05,53964,8703,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4780.95,{},223167,1,"""South America""" +2024-06-03,53965,7603,"[\""Monitor\"", \""Keyboard\""]",3919.25,"{\""seasonal\"": \""20%\""}",125444,0,"""Asia""" +2024-12-07,53966,2533,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1390.98,{},192432,0,"""Africa""" +2024-08-14,53967,19,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",783.7,"{\""promo\"": \""18%\""}",25012,1,"""North America""" +2024-09-06,53968,4612,"[\""Headphones\"", \""Keyboard\""]",2765.04,"{\""promo\"": \""10%\""}",295514,0,"""South America""" +2024-08-16,53969,2252,"[\""Tablet\""]",2163.84,"{\""promo\"": \""8%\""}",17804,1,"""Asia""" +2023-10-29,53970,2944,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",813.82,{},248497,1,"""Africa""" +2024-03-30,53971,2627,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3276.9,"{\""seasonal\"": \""27%\""}",186950,0,"""Africa""" +2024-01-28,53972,6292,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1245.39,"{\""loyalty\"": \""23%\""}",77965,0,"""Africa""" +2024-11-18,53973,8380,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2426.45,"{\""loyalty\"": \""20%\""}",157009,0,"""North America""" +2024-11-27,53974,6783,"[\""Headphones\""]",3170.59,"{\""seasonal\"": \""16%\""}",227602,1,"""Europe""" +2023-01-13,53975,8159,"[\""Keyboard\""]",1065.16,{},261878,1,"""Africa""" +2023-02-28,53976,9903,"[\""Wireless Mouse\"", \""Laptop\""]",2049.56,{},7603,1,"""Europe""" +2023-02-04,53977,7809,"[\""Tablet\""]",1646.91,"{\"": \""20%\""}",106319,1,"""Europe""" +2023-05-24,53978,6612,"[\""Monitor\"", \""Charger\""]",1549.35,{},270819,1,"""Europe""" +2023-01-26,53979,2279,"[\""Wireless Mouse\"", \""Tablet\""]",3678.31,{},52167,1,"""Africa""" +2023-01-01,53980,6547,"[\""Wireless Mouse\""]",2501.85,"{\""seasonal\"": \""21%\""}",74965,0,"""North America""" +2024-01-21,53981,544,"[\""Keyboard\"", \""Wireless Mouse\""]",4839.82,"{\""loyalty\"": \""15%\""}",276229,0,"""Africa""" +2024-11-10,53982,3388,"[\""Phone\""]",3206.75,{},268530,0,"""Europe""" +2024-11-25,53983,2946,"[\""Tablet\"", \""Wireless Mouse\""]",1423.02,{},223674,1,"""Asia""" +2023-01-27,53984,9920,"[\""Tablet\""]",1706.63,{},213596,0,"""North America""" +2023-03-18,53985,7266,"[\""Headphones\"", \""Charger\""]",4444.92,"{\"": \""23%\""}",246594,1,"""Asia""" +2024-04-05,53986,3258,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1900.08,"{\"": \""29%\""}",121960,0,"""South America""" +2024-05-24,53987,3726,"[\""Phone\"", \""Keyboard\""]",3594.04,"{\"": \""27%\""}",11744,0,"""North America""" +2023-06-01,53988,681,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",855.88,"{\""loyalty\"": \""14%\""}",176997,1,"""Africa""" +2023-04-02,53989,2258,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",322.91,{},254120,0,"""South America""" +2024-11-07,53990,4105,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",441.0,"{\""seasonal\"": \""16%\""}",232636,1,"""Asia""" +2023-02-19,53991,3999,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4115.35,{},137881,1,"""South America""" +2024-04-21,53992,5373,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3329.31,{},247028,1,"""Africa""" +2024-07-15,53993,2265,"[\""Tablet\""]",1962.34,"{\"": \""16%\""}",23610,1,"""South America""" +2023-12-04,53994,9766,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1686.8,"{\""seasonal\"": \""21%\""}",279784,1,"""North America""" +2023-10-31,53995,9383,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3796.46,{},33991,1,"""Asia""" +2024-06-20,53996,7225,"[\""Wireless Mouse\""]",292.98,{},226823,0,"""Europe""" +2023-07-16,53997,8907,"[\""Tablet\"", \""Monitor\""]",2754.36,{},180341,0,"""South America""" +2023-03-23,53998,7621,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3114.54,"{\"": \""29%\""}",155776,1,"""Asia""" +2023-05-28,53999,5130,"[\""Headphones\"", \""Tablet\""]",4085.89,{},114033,1,"""Africa""" +2023-05-08,54000,9260,"[\""Keyboard\"", \""Monitor\""]",4209.95,"{\""promo\"": \""7%\""}",149474,0,"""South America""" +2024-03-14,54001,714,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4326.11,"{\""seasonal\"": \""5%\""}",53396,0,"""Europe""" +2023-02-22,54002,5996,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",762.13,{},65003,1,"""North America""" +2023-07-07,54003,1011,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",714.42,{},95720,1,"""Europe""" +2023-04-02,54004,9634,"[\""Wireless Mouse\"", \""Keyboard\""]",3123.95,{},220642,1,"""Asia""" +2023-07-05,54005,2646,"[\""Headphones\"", \""Laptop\""]",548.14,"{\"": \""13%\""}",232453,1,"""Asia""" +2023-06-15,54006,9048,"[\""Wireless Mouse\"", \""Tablet\""]",733.76,"{\""seasonal\"": \""18%\""}",103211,1,"""South America""" +2024-07-31,54007,2236,"[\""Phone\""]",2005.92,"{\""loyalty\"": \""28%\""}",266123,0,"""Asia""" +2024-04-26,54008,9738,"[\""Charger\""]",1194.07,{},98909,0,"""South America""" +2024-01-02,54009,2979,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1719.45,"{\"": \""10%\""}",262309,1,"""Asia""" +2023-01-02,54010,4205,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2073.0,"{\"": \""23%\""}",263846,0,"""North America""" +2023-12-11,54011,1027,"[\""Laptop\""]",3167.91,{},164331,0,"""Africa""" +2023-10-02,54012,640,"[\""Headphones\"", \""Keyboard\""]",1439.45,"{\""seasonal\"": \""22%\""}",170356,0,"""Africa""" +2024-10-31,54013,7453,"[\""Charger\""]",1362.75,{},267500,1,"""Europe""" +2023-10-13,54014,4566,"[\""Tablet\""]",4487.45,{},122792,0,"""Europe""" +2024-02-14,54015,9369,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",283.42,"{\"": \""29%\""}",265361,1,"""South America""" +2023-05-17,54016,4610,"[\""Keyboard\""]",4257.87,"{\""loyalty\"": \""26%\""}",145068,1,"""Asia""" +2024-06-27,54017,4305,"[\""Headphones\"", \""Keyboard\""]",4193.7,"{\""loyalty\"": \""28%\""}",268896,1,"""Europe""" +2023-01-16,54018,2079,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",987.34,{},12959,1,"""Asia""" +2023-01-25,54019,5356,"[\""Tablet\""]",1133.45,{},39995,1,"""Asia""" +2024-03-04,54020,4084,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2424.92,{},133247,1,"""Europe""" +2024-04-17,54021,4611,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",976.2,{},202693,1,"""North America""" +2023-08-12,54022,9790,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2714.2,"{\""promo\"": \""12%\""}",53483,0,"""South America""" +2024-01-25,54023,9127,"[\""Phone\""]",2787.42,{},293554,0,"""Africa""" +2024-09-09,54024,3856,"[\""Monitor\"", \""Laptop\""]",4463.55,{},247992,1,"""Africa""" +2023-11-17,54025,2615,"[\""Headphones\""]",2949.73,"{\""seasonal\"": \""17%\""}",39368,1,"""South America""" +2023-09-12,54026,8629,"[\""Monitor\""]",1229.24,"{\""promo\"": \""7%\""}",95348,0,"""Europe""" +2024-04-01,54027,6278,"[\""Phone\"", \""Monitor\""]",3842.21,"{\""promo\"": \""11%\""}",154844,1,"""Europe""" +2024-08-06,54028,9436,"[\""Charger\""]",2796.87,{},30432,0,"""Africa""" +2023-09-08,54029,670,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1753.52,{},201068,0,"""Europe""" +2024-08-10,54030,3038,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2240.89,"{\""promo\"": \""22%\""}",72175,0,"""South America""" +2023-02-02,54031,3493,"[\""Tablet\""]",1366.94,"{\""loyalty\"": \""27%\""}",132507,1,"""Europe""" +2024-03-09,54032,5491,"[\""Phone\""]",3564.12,{},223943,1,"""North America""" +2023-04-17,54033,3285,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4185.76,"{\""loyalty\"": \""12%\""}",189660,0,"""South America""" +2023-06-05,54034,8425,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1612.35,{},292495,0,"""Europe""" +2023-04-28,54035,276,"[\""Phone\"", \""Tablet\""]",4004.15,{},148410,1,"""Africa""" +2024-07-28,54036,4291,"[\""Keyboard\""]",1561.94,{},261634,0,"""Africa""" +2023-01-16,54037,942,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1269.02,"{\"": \""14%\""}",201321,1,"""Africa""" +2023-09-27,54038,7771,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1818.57,{},126428,0,"""South America""" +2023-11-19,54039,5016,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1674.32,"{\""promo\"": \""23%\""}",122916,0,"""Europe""" +2023-06-29,54040,801,"[\""Phone\"", \""Tablet\""]",1943.81,{},94039,0,"""South America""" +2024-04-13,54041,411,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",559.88,"{\""loyalty\"": \""14%\""}",275423,1,"""Europe""" +2023-05-24,54042,4979,"[\""Phone\"", \""Laptop\""]",4230.65,{},235001,0,"""North America""" +2024-08-01,54043,4170,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3899.5,"{\""seasonal\"": \""21%\""}",125762,0,"""North America""" +2023-07-19,54044,8329,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",658.44,{},132771,0,"""South America""" +2023-04-29,54045,2351,"[\""Keyboard\"", \""Monitor\""]",4012.23,"{\""loyalty\"": \""28%\""}",211154,0,"""Africa""" +2023-06-22,54046,7896,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2283.28,"{\""seasonal\"": \""8%\""}",74308,0,"""North America""" +2024-03-30,54047,6549,"[\""Wireless Mouse\""]",1752.42,{},56800,0,"""South America""" +2024-06-04,54048,3122,"[\""Phone\""]",2828.29,"{\""loyalty\"": \""19%\""}",171321,0,"""Europe""" +2023-03-04,54049,1395,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1146.21,"{\""promo\"": \""30%\""}",241114,1,"""Europe""" +2024-08-12,54050,6914,"[\""Wireless Mouse\"", \""Charger\""]",4063.2,"{\""promo\"": \""8%\""}",235999,0,"""South America""" +2023-08-19,54051,2214,"[\""Phone\"", \""Monitor\""]",3264.51,"{\""promo\"": \""15%\""}",241732,0,"""South America""" +2023-03-12,54052,7119,"[\""Phone\""]",317.08,"{\""seasonal\"": \""17%\""}",143074,1,"""Asia""" +2024-06-10,54053,2376,"[\""Keyboard\"", \""Headphones\""]",4907.65,"{\""promo\"": \""6%\""}",96866,0,"""Africa""" +2024-04-23,54054,7206,"[\""Tablet\"", \""Wireless Mouse\""]",703.61,{},43181,0,"""Asia""" +2023-08-15,54055,9991,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4957.93,{},56811,0,"""South America""" +2023-01-11,54056,7949,"[\""Phone\""]",1805.55,{},267705,0,"""Asia""" +2024-12-13,54057,5906,"[\""Laptop\""]",1734.45,{},210296,0,"""South America""" +2023-05-05,54058,3766,"[\""Monitor\"", \""Phone\""]",1695.13,{},253823,0,"""South America""" +2023-12-28,54059,922,"[\""Keyboard\""]",4336.35,"{\""promo\"": \""19%\""}",204486,0,"""Europe""" +2023-12-04,54060,7808,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",820.56,"{\"": \""25%\""}",192365,0,"""South America""" +2024-07-16,54061,3854,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1444.87,"{\"": \""12%\""}",166979,1,"""North America""" +2024-03-17,54062,3756,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2012.49,{},29561,0,"""Asia""" +2024-09-11,54063,4781,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1121.9,"{\""promo\"": \""24%\""}",149796,0,"""Europe""" +2023-12-29,54064,2994,"[\""Phone\"", \""Laptop\""]",2554.75,{},238331,1,"""Asia""" +2024-04-01,54065,9165,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3210.63,"{\"": \""21%\""}",237528,1,"""Asia""" +2023-02-14,54066,6231,"[\""Monitor\"", \""Charger\""]",3141.04,{},95889,1,"""Africa""" +2024-09-25,54067,8932,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",561.12,"{\"": \""12%\""}",142821,1,"""North America""" +2024-06-14,54068,7475,"[\""Monitor\""]",484.23,{},39436,0,"""Africa""" +2023-07-10,54069,419,"[\""Keyboard\"", \""Wireless Mouse\""]",1500.58,"{\""promo\"": \""16%\""}",283836,1,"""North America""" +2023-06-16,54070,1415,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1493.24,"{\"": \""27%\""}",226580,1,"""South America""" +2024-12-27,54071,8052,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2076.84,{},139024,0,"""Africa""" +2024-04-28,54072,7663,"[\""Tablet\"", \""Phone\""]",4231.68,"{\""seasonal\"": \""19%\""}",30946,1,"""North America""" +2024-10-29,54073,847,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",663.27,{},151291,1,"""North America""" +2024-03-25,54074,5186,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",532.57,{},94109,0,"""South America""" +2023-02-11,54075,3311,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2364.36,{},123515,1,"""Asia""" +2024-10-12,54076,9124,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4313.6,"{\""loyalty\"": \""18%\""}",192373,1,"""Europe""" +2024-12-12,54077,1724,"[\""Charger\""]",2062.62,{},117624,1,"""Africa""" +2023-10-06,54078,887,"[\""Headphones\""]",4463.88,{},213505,1,"""Africa""" +2024-12-19,54079,7231,"[\""Wireless Mouse\"", \""Monitor\""]",4605.88,{},273919,0,"""North America""" +2024-10-27,54080,2019,"[\""Tablet\""]",922.98,{},65807,1,"""North America""" +2023-05-01,54081,1049,"[\""Headphones\""]",1477.14,{},195423,1,"""Africa""" +2023-07-31,54082,7463,"[\""Monitor\""]",1246.86,"{\""promo\"": \""23%\""}",268186,0,"""North America""" +2023-12-28,54083,6682,"[\""Keyboard\"", \""Monitor\""]",1671.53,{},44938,1,"""Africa""" +2023-04-19,54084,4287,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4934.68,{},211454,0,"""South America""" +2023-07-21,54085,6714,"[\""Wireless Mouse\"", \""Tablet\""]",1257.79,"{\""promo\"": \""10%\""}",134203,0,"""South America""" +2024-08-02,54086,4307,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",984.52,"{\""seasonal\"": \""26%\""}",121648,1,"""Asia""" +2024-04-01,54087,9058,"[\""Monitor\"", \""Keyboard\""]",978.54,{},195887,0,"""Africa""" +2023-01-09,54088,4312,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3599.9,{},195657,1,"""South America""" +2024-09-07,54089,8965,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4928.19,"{\""seasonal\"": \""27%\""}",192005,1,"""Africa""" +2024-02-20,54090,3979,"[\""Charger\""]",2279.91,"{\""loyalty\"": \""30%\""}",232019,1,"""Europe""" +2023-07-17,54091,2451,"[\""Laptop\""]",404.57,"{\""seasonal\"": \""20%\""}",36048,1,"""Africa""" +2023-10-15,54092,487,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1268.89,"{\""seasonal\"": \""17%\""}",124726,1,"""South America""" +2024-06-13,54093,9251,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3449.28,"{\"": \""16%\""}",296740,0,"""Europe""" +2024-11-11,54094,6252,"[\""Phone\"", \""Keyboard\""]",2640.29,"{\""promo\"": \""14%\""}",16809,1,"""North America""" +2023-02-20,54095,4603,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2269.02,{},25329,1,"""Africa""" +2024-12-02,54096,2986,"[\""Headphones\""]",2668.01,{},227131,1,"""South America""" +2023-07-15,54097,5027,"[\""Tablet\"", \""Charger\""]",352.59,{},233088,1,"""Africa""" +2023-01-31,54098,4279,"[\""Monitor\"", \""Charger\""]",3042.99,{},96973,0,"""Africa""" +2024-08-25,54099,7585,"[\""Headphones\""]",641.0,{},226195,0,"""Asia""" +2024-06-13,54100,299,"[\""Wireless Mouse\"", \""Phone\""]",3504.7,"{\""loyalty\"": \""12%\""}",149013,0,"""South America""" +2023-10-13,54101,6377,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4675.73,{},245374,1,"""Africa""" +2023-09-25,54102,3564,"[\""Keyboard\""]",3949.24,"{\""seasonal\"": \""19%\""}",116208,0,"""South America""" +2024-09-01,54103,7253,"[\""Phone\"", \""Headphones\""]",2613.25,{},121675,0,"""Asia""" +2024-10-07,54104,8352,"[\""Headphones\"", \""Phone\""]",2542.21,"{\""promo\"": \""25%\""}",271726,0,"""Africa""" +2024-11-04,54105,6418,"[\""Laptop\"", \""Wireless Mouse\""]",3228.29,"{\""loyalty\"": \""26%\""}",221265,1,"""Africa""" +2023-03-18,54106,3958,"[\""Wireless Mouse\"", \""Headphones\""]",554.84,{},128311,1,"""South America""" +2024-12-13,54107,1124,"[\""Tablet\""]",491.29,{},256141,1,"""Africa""" +2024-01-08,54108,5245,"[\""Headphones\""]",2154.94,"{\""promo\"": \""21%\""}",86875,0,"""Africa""" +2023-08-30,54109,2635,"[\""Tablet\""]",518.46,"{\""promo\"": \""28%\""}",1836,0,"""North America""" +2024-11-20,54110,4901,"[\""Charger\"", \""Headphones\""]",4281.27,{},7001,0,"""South America""" +2023-07-23,54111,7363,"[\""Monitor\"", \""Charger\""]",3239.26,{},52728,1,"""Asia""" +2023-11-01,54112,1776,"[\""Headphones\""]",2228.3,"{\""loyalty\"": \""11%\""}",157893,1,"""Europe""" +2023-01-17,54113,4474,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4705.49,{},7032,0,"""South America""" +2023-08-08,54114,2682,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4825.08,{},197187,0,"""Asia""" +2023-08-04,54115,6669,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1503.93,{},116673,0,"""Africa""" +2023-09-21,54116,2779,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4908.97,{},280110,1,"""Europe""" +2024-03-22,54117,2388,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",704.84,"{\"": \""14%\""}",165586,1,"""South America""" +2023-07-26,54118,3680,"[\""Wireless Mouse\""]",3006.37,{},129131,1,"""North America""" +2023-09-12,54119,9876,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3310.4,"{\""seasonal\"": \""19%\""}",12558,1,"""North America""" +2023-12-13,54120,9753,"[\""Wireless Mouse\""]",1469.98,{},255558,1,"""South America""" +2024-04-04,54121,8815,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1498.23,{},178687,0,"""North America""" +2023-04-16,54122,6103,"[\""Tablet\"", \""Keyboard\""]",3546.79,{},95826,1,"""Europe""" +2024-11-24,54123,6077,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3073.58,"{\""loyalty\"": \""30%\""}",90994,0,"""Asia""" +2023-03-18,54124,3410,"[\""Keyboard\"", \""Headphones\""]",225.95,{},281928,1,"""North America""" +2023-04-04,54125,4476,"[\""Wireless Mouse\""]",4246.25,"{\""loyalty\"": \""18%\""}",214174,0,"""Africa""" +2024-04-21,54126,9974,"[\""Headphones\"", \""Monitor\""]",1872.34,"{\""loyalty\"": \""28%\""}",261583,1,"""Africa""" +2024-11-25,54127,2888,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3673.1,{},177288,1,"""Europe""" +2023-11-15,54128,2795,"[\""Monitor\""]",2407.2,{},91336,1,"""South America""" +2023-10-28,54129,6297,"[\""Charger\""]",3648.5,"{\""promo\"": \""25%\""}",107881,0,"""Asia""" +2023-11-28,54130,2848,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4035.3,"{\"": \""17%\""}",42512,0,"""South America""" +2024-12-06,54131,8106,"[\""Wireless Mouse\"", \""Monitor\""]",2894.25,{},139018,1,"""North America""" +2024-11-14,54132,4071,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4620.02,"{\""seasonal\"": \""10%\""}",230460,1,"""North America""" +2024-05-28,54133,8952,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1648.23,"{\"": \""17%\""}",219351,0,"""Africa""" +2024-01-16,54134,5326,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3584.27,{},264600,0,"""Africa""" +2024-04-03,54135,3842,"[\""Monitor\"", \""Charger\""]",4282.86,{},242756,0,"""Asia""" +2023-09-18,54136,9111,"[\""Charger\""]",3615.76,"{\"": \""16%\""}",40578,1,"""Asia""" +2024-05-16,54137,9581,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2412.79,{},250236,1,"""North America""" +2024-04-17,54138,8033,"[\""Laptop\"", \""Wireless Mouse\""]",3427.75,{},153150,1,"""Africa""" +2023-08-25,54139,92,"[\""Charger\""]",2951.68,{},226308,1,"""South America""" +2024-03-19,54140,8078,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1424.68,{},277981,1,"""South America""" +2024-02-01,54141,7195,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1613.61,"{\""loyalty\"": \""16%\""}",95213,1,"""Asia""" +2023-04-24,54142,5382,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",493.56,{},42482,0,"""Europe""" +2024-08-20,54143,5743,"[\""Laptop\""]",2952.45,"{\""promo\"": \""24%\""}",63038,1,"""Asia""" +2024-05-20,54144,8632,"[\""Charger\""]",4345.93,"{\""promo\"": \""8%\""}",274634,1,"""Asia""" +2024-01-07,54145,7806,"[\""Monitor\""]",2168.36,{},59025,0,"""Europe""" +2024-06-08,54146,2918,"[\""Headphones\""]",4601.76,{},292467,0,"""Europe""" +2024-01-05,54147,9131,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2109.05,{},179471,1,"""North America""" +2024-04-06,54148,4644,"[\""Charger\"", \""Wireless Mouse\""]",2864.78,{},278479,0,"""Asia""" +2023-02-26,54149,4119,"[\""Keyboard\"", \""Monitor\""]",2524.71,"{\""loyalty\"": \""19%\""}",260354,1,"""Asia""" +2024-08-28,54150,4863,"[\""Keyboard\"", \""Headphones\""]",3972.37,"{\""loyalty\"": \""5%\""}",273754,1,"""South America""" +2023-05-29,54151,3133,"[\""Tablet\"", \""Charger\""]",4344.07,{},76311,0,"""North America""" +2023-12-18,54152,8197,"[\""Laptop\""]",182.69,"{\""loyalty\"": \""5%\""}",32225,0,"""Africa""" +2023-03-01,54153,5065,"[\""Charger\""]",4866.73,{},14922,0,"""Europe""" +2023-07-15,54154,2753,"[\""Laptop\""]",514.65,"{\""loyalty\"": \""7%\""}",271094,0,"""Africa""" +2023-04-26,54155,1952,"[\""Tablet\"", \""Charger\""]",2382.5,"{\"": \""8%\""}",84775,0,"""Africa""" +2023-09-13,54156,4629,"[\""Charger\""]",4180.79,"{\"": \""11%\""}",92035,1,"""Asia""" +2024-11-22,54157,8076,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3649.77,"{\"": \""30%\""}",202104,1,"""Africa""" +2024-06-13,54158,3268,"[\""Phone\""]",835.66,{},208228,0,"""Africa""" +2023-05-03,54159,1821,"[\""Laptop\""]",483.57,"{\""seasonal\"": \""8%\""}",124362,1,"""North America""" +2023-06-30,54160,1801,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2651.86,"{\""seasonal\"": \""30%\""}",258413,1,"""South America""" +2023-12-28,54161,7506,"[\""Charger\""]",4167.32,"{\"": \""28%\""}",281696,0,"""Africa""" +2023-08-14,54162,8042,"[\""Monitor\"", \""Laptop\""]",93.01,{},72680,0,"""Europe""" +2024-09-02,54163,7546,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4479.5,"{\""loyalty\"": \""7%\""}",70523,1,"""Africa""" +2024-09-17,54164,5313,"[\""Wireless Mouse\"", \""Phone\""]",4154.99,"{\""promo\"": \""25%\""}",101030,1,"""North America""" +2024-09-03,54165,6609,"[\""Monitor\""]",939.86,{},12806,0,"""Africa""" +2024-11-21,54166,5596,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2880.6,"{\""promo\"": \""10%\""}",234359,1,"""South America""" +2023-07-12,54167,2832,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1335.5,"{\""seasonal\"": \""6%\""}",246713,1,"""Europe""" +2024-07-04,54168,2027,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1997.51,{},24094,0,"""Africa""" +2024-08-26,54169,7806,"[\""Charger\""]",4592.1,"{\""loyalty\"": \""12%\""}",251478,0,"""South America""" +2023-03-31,54170,6479,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2004.8,"{\""promo\"": \""15%\""}",117757,1,"""North America""" +2023-10-07,54171,5169,"[\""Laptop\"", \""Monitor\""]",1152.23,{},76089,1,"""South America""" +2023-04-04,54172,608,"[\""Tablet\""]",4982.34,"{\"": \""11%\""}",209308,1,"""Asia""" +2024-04-07,54173,6058,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3770.42,{},121779,0,"""Asia""" +2023-08-06,54174,5991,"[\""Charger\""]",890.4,{},281431,0,"""North America""" +2023-10-22,54175,1915,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1068.34,"{\"": \""16%\""}",245744,1,"""South America""" +2023-06-23,54176,7534,"[\""Headphones\""]",4917.58,{},200238,1,"""Africa""" +2023-06-17,54177,2057,"[\""Tablet\""]",3483.97,{},99302,1,"""Europe""" +2023-04-23,54178,5060,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2719.26,"{\""seasonal\"": \""22%\""}",53036,1,"""South America""" +2024-09-25,54179,9602,"[\""Headphones\""]",234.66,{},233042,1,"""South America""" +2023-07-28,54180,1716,"[\""Phone\"", \""Monitor\""]",879.32,"{\""seasonal\"": \""22%\""}",234469,0,"""Europe""" +2024-06-02,54181,4330,"[\""Monitor\"", \""Keyboard\""]",2447.62,"{\""loyalty\"": \""7%\""}",205726,1,"""Asia""" +2023-06-10,54182,5695,"[\""Charger\""]",2947.78,"{\""seasonal\"": \""21%\""}",160758,1,"""South America""" +2023-06-08,54183,3989,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3448.34,"{\""seasonal\"": \""19%\""}",177373,1,"""South America""" +2024-08-25,54184,1543,"[\""Laptop\""]",3210.94,{},195951,1,"""Asia""" +2023-07-12,54185,4551,"[\""Wireless Mouse\"", \""Monitor\""]",2477.39,"{\""promo\"": \""15%\""}",142923,1,"""Asia""" +2023-04-16,54186,2834,"[\""Wireless Mouse\""]",1141.8,"{\""loyalty\"": \""17%\""}",105801,1,"""South America""" +2024-06-24,54187,5736,"[\""Phone\""]",2728.43,"{\"": \""5%\""}",52587,0,"""Europe""" +2024-05-20,54188,1177,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3728.78,"{\""seasonal\"": \""28%\""}",148222,0,"""Europe""" +2024-11-16,54189,1646,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",337.77,"{\""promo\"": \""23%\""}",34603,1,"""Africa""" +2023-04-14,54190,7799,"[\""Keyboard\""]",2021.91,"{\"": \""5%\""}",261181,1,"""North America""" +2024-09-25,54191,7704,"[\""Laptop\"", \""Phone\""]",140.46,{},89098,0,"""Europe""" +2024-07-08,54192,9152,"[\""Wireless Mouse\"", \""Keyboard\""]",2206.87,"{\""seasonal\"": \""30%\""}",66758,0,"""South America""" +2024-09-20,54193,6681,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2683.31,"{\""loyalty\"": \""11%\""}",147213,0,"""Africa""" +2023-08-08,54194,7904,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4530.4,{},85354,1,"""South America""" +2024-06-03,54195,5573,"[\""Monitor\"", \""Keyboard\""]",4835.36,"{\""promo\"": \""8%\""}",218739,0,"""Asia""" +2023-05-21,54196,5380,"[\""Wireless Mouse\""]",1028.24,{},106306,0,"""Europe""" +2023-03-31,54197,6502,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1145.72,"{\""seasonal\"": \""11%\""}",39411,1,"""Asia""" +2024-03-12,54198,7578,"[\""Tablet\"", \""Wireless Mouse\""]",1578.43,{},154208,0,"""Asia""" +2024-03-10,54199,6717,"[\""Tablet\"", \""Phone\""]",3281.91,"{\"": \""19%\""}",158773,1,"""Africa""" +2024-01-09,54200,7572,"[\""Monitor\""]",1203.99,"{\""loyalty\"": \""16%\""}",33029,0,"""South America""" +2024-04-24,54201,7005,"[\""Tablet\""]",1405.12,{},111022,0,"""Europe""" +2023-08-19,54202,6612,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4702.42,{},234066,0,"""North America""" +2023-05-05,54203,5410,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3729.37,"{\""loyalty\"": \""25%\""}",33918,1,"""South America""" +2024-04-09,54204,7028,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3862.81,{},49121,0,"""Africa""" +2024-08-01,54205,3313,"[\""Laptop\"", \""Keyboard\""]",4849.36,{},105223,1,"""North America""" +2024-01-23,54206,5627,"[\""Wireless Mouse\""]",1172.2,{},26977,0,"""Africa""" +2024-06-10,54207,3557,"[\""Keyboard\"", \""Charger\""]",893.81,{},188665,0,"""Asia""" +2024-01-31,54208,2618,"[\""Charger\""]",991.63,{},277056,0,"""Africa""" +2023-06-11,54209,4552,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3655.66,"{\""seasonal\"": \""27%\""}",91816,1,"""North America""" +2023-06-06,54210,7611,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4447.34,{},14958,0,"""Europe""" +2024-08-05,54211,2483,"[\""Wireless Mouse\"", \""Charger\""]",3207.12,{},191191,0,"""Africa""" +2023-08-27,54212,7173,"[\""Wireless Mouse\"", \""Laptop\""]",1518.87,"{\""promo\"": \""12%\""}",148146,0,"""North America""" +2024-05-07,54213,2994,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",296.88,"{\""seasonal\"": \""12%\""}",218772,1,"""Europe""" +2024-06-05,54214,9432,"[\""Keyboard\""]",1727.04,{},1936,1,"""Europe""" +2024-09-04,54215,1275,"[\""Laptop\"", \""Wireless Mouse\""]",1913.85,"{\"": \""23%\""}",10884,1,"""North America""" +2023-07-14,54216,8146,"[\""Charger\"", \""Monitor\""]",3243.73,{},138034,0,"""Africa""" +2023-06-01,54217,8488,"[\""Phone\""]",3499.16,{},245834,1,"""North America""" +2024-01-28,54218,2480,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2461.61,"{\""seasonal\"": \""24%\""}",99187,0,"""South America""" +2024-02-14,54219,3557,"[\""Charger\""]",4594.99,"{\""seasonal\"": \""26%\""}",47492,0,"""Africa""" +2024-05-20,54220,7487,"[\""Headphones\""]",4449.28,"{\""loyalty\"": \""7%\""}",291609,1,"""Europe""" +2023-10-05,54221,1713,"[\""Headphones\"", \""Keyboard\""]",495.19,"{\"": \""7%\""}",193586,1,"""Africa""" +2024-10-08,54222,4360,"[\""Tablet\"", \""Laptop\""]",3516.28,"{\""promo\"": \""14%\""}",43150,1,"""Africa""" +2023-02-07,54223,4145,"[\""Phone\"", \""Monitor\""]",4408.38,"{\"": \""15%\""}",231444,1,"""South America""" +2023-08-15,54224,6137,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3192.28,{},258873,0,"""Africa""" +2023-06-07,54225,9825,"[\""Monitor\""]",4031.91,{},177287,0,"""North America""" +2024-03-15,54226,1746,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",358.06,"{\""seasonal\"": \""26%\""}",251844,1,"""South America""" +2024-05-28,54227,7818,"[\""Tablet\"", \""Wireless Mouse\""]",102.97,"{\""loyalty\"": \""23%\""}",165326,1,"""Asia""" +2024-08-13,54228,8284,"[\""Headphones\"", \""Tablet\""]",1020.96,"{\""loyalty\"": \""28%\""}",258783,1,"""North America""" +2024-02-17,54229,1654,"[\""Phone\"", \""Wireless Mouse\""]",2826.21,{},98128,1,"""Asia""" +2023-11-01,54230,4819,"[\""Phone\"", \""Laptop\""]",2639.68,{},289046,0,"""North America""" +2023-02-05,54231,4021,"[\""Tablet\""]",2861.12,{},266160,1,"""Africa""" +2023-06-16,54232,9951,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",248.32,{},205893,0,"""Asia""" +2023-02-16,54233,3853,"[\""Phone\"", \""Keyboard\""]",959.43,{},157891,1,"""North America""" +2023-03-25,54234,8236,"[\""Keyboard\"", \""Phone\""]",4646.37,{},201857,1,"""Europe""" +2023-11-29,54235,9461,"[\""Wireless Mouse\""]",4805.16,"{\""promo\"": \""30%\""}",32778,0,"""Africa""" +2024-03-27,54236,7780,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3237.31,"{\"": \""29%\""}",98901,1,"""Asia""" +2024-07-09,54237,7001,"[\""Monitor\""]",2618.29,{},229004,1,"""Europe""" +2024-09-12,54238,9419,"[\""Laptop\""]",4008.93,"{\""seasonal\"": \""9%\""}",262484,1,"""Asia""" +2023-09-07,54239,806,"[\""Phone\"", \""Wireless Mouse\""]",751.15,"{\"": \""12%\""}",11130,0,"""South America""" +2023-02-19,54240,2793,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3513.48,{},134240,1,"""Africa""" +2023-11-13,54241,7138,"[\""Tablet\""]",2900.92,"{\""promo\"": \""8%\""}",277259,0,"""Europe""" +2023-08-02,54242,1222,"[\""Tablet\"", \""Keyboard\""]",1072.0,{},290536,1,"""Africa""" +2023-08-16,54243,6225,"[\""Headphones\""]",4673.75,"{\""loyalty\"": \""6%\""}",284334,1,"""Asia""" +2023-08-13,54244,4803,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4280.66,{},38865,1,"""Africa""" +2024-08-05,54245,7385,"[\""Keyboard\"", \""Wireless Mouse\""]",4380.9,{},281621,0,"""Europe""" +2023-09-27,54246,4238,"[\""Keyboard\""]",3410.99,"{\"": \""9%\""}",152356,0,"""Asia""" +2024-04-24,54247,8877,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3239.48,{},160292,1,"""Europe""" +2024-12-06,54248,7952,"[\""Laptop\"", \""Monitor\""]",3486.21,{},257480,1,"""Africa""" +2023-08-03,54249,9138,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2724.14,{},153336,0,"""North America""" +2023-12-07,54250,7186,"[\""Monitor\""]",768.55,{},269660,0,"""South America""" +2024-06-17,54251,5283,"[\""Monitor\""]",3404.33,{},219581,1,"""Asia""" +2023-03-20,54252,1274,"[\""Wireless Mouse\""]",1240.38,"{\""loyalty\"": \""22%\""}",134855,0,"""North America""" +2024-10-31,54253,3789,"[\""Phone\""]",760.37,{},59473,0,"""Asia""" +2024-11-05,54254,2795,"[\""Monitor\"", \""Charger\""]",618.51,{},227264,0,"""North America""" +2024-11-25,54255,1988,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",761.82,"{\"": \""18%\""}",197449,0,"""North America""" +2023-07-18,54256,6116,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1005.62,{},295874,0,"""North America""" +2024-11-09,54257,9559,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3962.02,"{\""loyalty\"": \""22%\""}",37545,0,"""Asia""" +2024-06-07,54258,2683,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",916.66,{},294930,1,"""Asia""" +2023-11-26,54259,1132,"[\""Tablet\""]",1964.21,{},49175,1,"""North America""" +2023-07-31,54260,5265,"[\""Charger\"", \""Keyboard\""]",2156.79,{},72145,1,"""Asia""" +2024-02-01,54261,9616,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4757.19,{},66798,1,"""Europe""" +2024-05-13,54262,1944,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2710.99,{},18068,0,"""Europe""" +2024-02-22,54263,5467,"[\""Keyboard\"", \""Laptop\""]",1658.92,"{\""loyalty\"": \""10%\""}",271641,0,"""Africa""" +2024-08-19,54264,6665,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",381.87,"{\""seasonal\"": \""16%\""}",268051,1,"""North America""" +2024-10-13,54265,6111,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3496.16,{},184850,0,"""South America""" +2024-09-02,54266,5209,"[\""Wireless Mouse\"", \""Charger\""]",4660.38,"{\""promo\"": \""19%\""}",93758,1,"""North America""" +2023-04-24,54267,3837,"[\""Laptop\""]",917.6,{},65003,1,"""Asia""" +2023-11-26,54268,7089,"[\""Keyboard\""]",2617.27,"{\""promo\"": \""28%\""}",264414,0,"""Europe""" +2023-10-20,54269,8791,"[\""Tablet\"", \""Wireless Mouse\""]",88.86,{},287525,1,"""Europe""" +2024-05-08,54270,5691,"[\""Laptop\"", \""Keyboard\""]",1670.17,{},23650,1,"""Asia""" +2023-11-15,54271,3493,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2294.65,"{\""seasonal\"": \""5%\""}",24920,0,"""North America""" +2024-12-06,54272,1573,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4908.02,"{\""seasonal\"": \""12%\""}",158558,0,"""Asia""" +2024-01-13,54273,8352,"[\""Charger\"", \""Monitor\""]",4760.3,"{\""loyalty\"": \""22%\""}",75035,1,"""South America""" +2024-04-15,54274,6038,"[\""Phone\"", \""Headphones\"", \""Charger\""]",668.66,{},40681,0,"""Asia""" +2023-12-24,54275,9823,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4194.79,"{\""loyalty\"": \""23%\""}",14729,1,"""Asia""" +2024-07-15,54276,9436,"[\""Monitor\""]",4133.53,{},205494,0,"""Europe""" +2023-11-30,54277,1926,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",407.46,"{\"": \""26%\""}",145632,1,"""North America""" +2023-08-14,54278,5828,"[\""Charger\"", \""Tablet\""]",147.21,{},46092,1,"""South America""" +2023-05-11,54279,7747,"[\""Charger\"", \""Phone\""]",4060.15,"{\""loyalty\"": \""7%\""}",128004,1,"""Europe""" +2024-03-15,54280,9447,"[\""Wireless Mouse\""]",2708.81,"{\"": \""13%\""}",133609,1,"""North America""" +2024-10-09,54281,3733,"[\""Keyboard\""]",4158.56,"{\"": \""28%\""}",122737,1,"""North America""" +2024-06-15,54282,6068,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4874.06,{},83354,1,"""North America""" +2024-05-18,54283,8439,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2237.79,"{\"": \""16%\""}",206627,1,"""Europe""" +2024-09-09,54284,8698,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3471.83,{},177616,1,"""Africa""" +2024-11-11,54285,3843,"[\""Tablet\""]",3556.72,"{\""loyalty\"": \""22%\""}",25091,1,"""Europe""" +2023-04-28,54286,2306,"[\""Phone\""]",3692.45,"{\""loyalty\"": \""21%\""}",299938,1,"""Europe""" +2023-12-07,54287,5751,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",944.35,{},235245,0,"""Asia""" +2023-09-21,54288,3030,"[\""Charger\""]",87.03,{},119623,0,"""Asia""" +2023-11-06,54289,7832,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",848.3,"{\"": \""21%\""}",285271,1,"""Europe""" +2024-09-30,54290,1360,"[\""Tablet\""]",1474.72,{},260459,1,"""Asia""" +2023-11-29,54291,5115,"[\""Monitor\""]",3339.81,"{\""seasonal\"": \""20%\""}",251404,1,"""South America""" +2023-11-18,54292,6908,"[\""Monitor\""]",4447.54,{},44753,1,"""Asia""" +2024-10-07,54293,1179,"[\""Charger\""]",4002.44,"{\""seasonal\"": \""26%\""}",5557,1,"""South America""" +2024-04-25,54294,9205,"[\""Laptop\"", \""Keyboard\""]",306.09,"{\""promo\"": \""27%\""}",16776,0,"""Europe""" +2023-04-15,54295,2630,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1758.07,{},273146,1,"""South America""" +2024-05-12,54296,7888,"[\""Phone\"", \""Monitor\""]",2148.9,{},59874,1,"""North America""" +2024-12-09,54297,3860,"[\""Headphones\""]",3084.37,{},135383,0,"""Asia""" +2023-12-20,54298,2244,"[\""Wireless Mouse\""]",70.25,{},287156,1,"""Africa""" +2023-06-01,54299,4879,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",121.02,"{\""loyalty\"": \""19%\""}",114885,0,"""Asia""" +2023-01-23,54300,901,"[\""Phone\"", \""Keyboard\""]",2561.69,{},297208,0,"""North America""" +2024-03-17,54301,4907,"[\""Laptop\""]",1584.33,{},246714,0,"""Asia""" +2023-09-25,54302,3653,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4440.16,{},118391,1,"""North America""" +2023-10-25,54303,5379,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1537.56,{},203913,0,"""South America""" +2023-05-15,54304,5114,"[\""Phone\"", \""Charger\""]",3248.51,"{\"": \""23%\""}",43983,1,"""Africa""" +2023-09-22,54305,9035,"[\""Charger\"", \""Keyboard\""]",1438.78,{},4250,1,"""South America""" +2023-09-04,54306,490,"[\""Laptop\"", \""Wireless Mouse\""]",2160.22,"{\""loyalty\"": \""21%\""}",280842,1,"""Asia""" +2023-10-14,54307,2204,"[\""Keyboard\""]",1073.21,"{\""seasonal\"": \""11%\""}",129692,1,"""North America""" +2023-11-12,54308,6824,"[\""Wireless Mouse\"", \""Keyboard\""]",3743.15,"{\""loyalty\"": \""9%\""}",230371,1,"""North America""" +2023-05-08,54309,2467,"[\""Wireless Mouse\""]",4882.67,{},168201,1,"""North America""" +2024-11-15,54310,9250,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3418.64,"{\""seasonal\"": \""8%\""}",114544,1,"""South America""" +2023-02-23,54311,3818,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2855.01,{},25779,0,"""Africa""" +2024-05-10,54312,4628,"[\""Wireless Mouse\"", \""Phone\""]",1526.54,{},242556,0,"""Asia""" +2023-07-09,54313,3781,"[\""Phone\""]",2449.47,"{\"": \""23%\""}",195987,1,"""Europe""" +2023-01-13,54314,4091,"[\""Wireless Mouse\""]",693.16,{},125472,1,"""North America""" +2023-09-10,54315,7512,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2270.05,{},211211,0,"""North America""" +2023-07-01,54316,9436,"[\""Phone\""]",2978.79,"{\""promo\"": \""23%\""}",142124,0,"""North America""" +2024-06-09,54317,4633,"[\""Laptop\"", \""Tablet\""]",758.17,"{\""loyalty\"": \""15%\""}",167744,0,"""North America""" +2023-07-02,54318,737,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3686.28,{},128717,0,"""North America""" +2023-06-04,54319,2017,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",195.48,{},201470,0,"""Asia""" +2024-06-22,54320,2216,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2133.87,{},40780,0,"""Asia""" +2023-02-26,54321,3287,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4114.14,{},191051,1,"""South America""" +2023-06-07,54322,234,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1021.65,{},33356,1,"""Africa""" +2023-05-22,54323,1076,"[\""Tablet\"", \""Charger\""]",2781.18,{},55527,0,"""Africa""" +2024-11-22,54324,5484,"[\""Monitor\""]",3575.17,{},269326,1,"""Asia""" +2023-08-26,54325,3288,"[\""Headphones\""]",4615.95,{},84873,1,"""North America""" +2024-10-23,54326,8536,"[\""Headphones\""]",1751.34,{},224148,1,"""Africa""" +2024-11-08,54327,118,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2025.89,{},276165,1,"""South America""" +2024-02-11,54328,1307,"[\""Wireless Mouse\"", \""Charger\""]",1926.2,"{\"": \""21%\""}",262863,0,"""South America""" +2024-11-17,54329,2176,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2600.73,{},114492,0,"""South America""" +2023-09-20,54330,3899,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1836.06,{},245192,0,"""Asia""" +2024-07-17,54331,2493,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",154.94,"{\""promo\"": \""17%\""}",265865,0,"""Europe""" +2023-10-27,54332,2548,"[\""Monitor\""]",1856.07,{},271981,1,"""Europe""" +2023-11-28,54333,6813,"[\""Wireless Mouse\"", \""Tablet\""]",2009.69,{},192965,1,"""Africa""" +2023-11-13,54334,6216,"[\""Headphones\""]",4282.32,"{\""promo\"": \""30%\""}",60791,1,"""Asia""" +2024-08-12,54335,736,"[\""Monitor\""]",3225.7,{},131524,1,"""Africa""" +2023-11-23,54336,6759,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1253.43,{},119557,1,"""South America""" +2024-03-02,54337,5048,"[\""Monitor\""]",4000.39,{},118198,0,"""South America""" +2023-05-02,54338,9866,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3764.24,{},174099,0,"""Africa""" +2023-09-02,54339,7528,"[\""Headphones\"", \""Keyboard\""]",3987.51,{},235125,1,"""Europe""" +2023-09-18,54340,905,"[\""Monitor\"", \""Wireless Mouse\""]",2191.59,{},150012,0,"""North America""" +2024-04-19,54341,8164,"[\""Keyboard\"", \""Tablet\""]",3268.49,{},28935,1,"""South America""" +2024-10-08,54342,4368,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1058.67,"{\""seasonal\"": \""28%\""}",147338,0,"""South America""" +2024-09-21,54343,6576,"[\""Monitor\"", \""Wireless Mouse\""]",4570.31,"{\""loyalty\"": \""17%\""}",31081,0,"""Asia""" +2024-01-13,54344,4790,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2603.15,{},5709,0,"""Asia""" +2024-12-14,54345,4094,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2400.24,{},30606,1,"""Europe""" +2023-11-07,54346,4779,"[\""Headphones\""]",300.14,{},45818,1,"""North America""" +2024-07-06,54347,3365,"[\""Charger\"", \""Headphones\""]",1266.46,"{\"": \""11%\""}",97582,1,"""Europe""" +2023-03-25,54348,9971,"[\""Keyboard\""]",1517.47,"{\"": \""21%\""}",228750,1,"""Asia""" +2024-03-03,54349,2981,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1239.37,"{\""promo\"": \""12%\""}",99337,0,"""South America""" +2024-11-23,54350,341,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",679.95,"{\""seasonal\"": \""18%\""}",224291,1,"""Africa""" +2024-07-26,54351,1190,"[\""Headphones\"", \""Laptop\""]",4287.87,{},270587,0,"""North America""" +2024-07-01,54352,2666,"[\""Tablet\""]",4411.61,"{\""promo\"": \""28%\""}",93906,0,"""Asia""" +2024-03-31,54353,5727,"[\""Tablet\"", \""Charger\""]",3968.83,{},41268,0,"""Europe""" +2023-03-11,54354,583,"[\""Keyboard\""]",3060.54,"{\"": \""5%\""}",293976,1,"""South America""" +2024-05-13,54355,6775,"[\""Keyboard\"", \""Laptop\""]",3137.05,{},277055,1,"""North America""" +2023-03-24,54356,1903,"[\""Keyboard\""]",90.43,{},53353,0,"""Africa""" +2023-03-26,54357,9817,"[\""Laptop\"", \""Wireless Mouse\""]",2281.9,{},31630,1,"""Europe""" +2023-08-01,54358,1682,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1872.71,"{\""promo\"": \""29%\""}",9619,1,"""Africa""" +2023-12-22,54359,286,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",334.87,{},76275,0,"""Europe""" +2024-01-18,54360,4956,"[\""Wireless Mouse\""]",3138.7,"{\"": \""23%\""}",8380,0,"""Africa""" +2023-12-25,54361,187,"[\""Keyboard\"", \""Phone\""]",4340.42,{},258703,0,"""Asia""" +2023-05-04,54362,1769,"[\""Wireless Mouse\""]",1915.09,"{\""loyalty\"": \""25%\""}",136953,1,"""Europe""" +2024-02-27,54363,1512,"[\""Monitor\"", \""Phone\""]",1247.03,{},31192,1,"""Africa""" +2024-02-11,54364,6595,"[\""Headphones\"", \""Phone\""]",2298.57,"{\""promo\"": \""24%\""}",131376,1,"""Europe""" +2023-04-21,54365,9700,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3330.25,{},45137,1,"""South America""" +2023-11-19,54366,1932,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4683.77,{},251139,1,"""Africa""" +2023-06-12,54367,403,"[\""Laptop\""]",490.5,"{\""seasonal\"": \""28%\""}",133269,0,"""North America""" +2023-05-29,54368,5396,"[\""Tablet\""]",2951.43,{},20303,1,"""Europe""" +2023-01-14,54369,9028,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",916.51,{},261935,0,"""Asia""" +2024-03-28,54370,1282,"[\""Phone\""]",2204.58,"{\""seasonal\"": \""14%\""}",75905,1,"""Europe""" +2023-05-30,54371,2977,"[\""Tablet\""]",4026.47,"{\""promo\"": \""7%\""}",228316,1,"""South America""" +2024-08-11,54372,7002,"[\""Keyboard\"", \""Monitor\""]",1423.77,"{\""promo\"": \""11%\""}",134843,1,"""Europe""" +2023-08-25,54373,6521,"[\""Wireless Mouse\""]",2574.23,{},17634,1,"""Asia""" +2024-08-18,54374,60,"[\""Phone\""]",3839.01,{},62310,0,"""South America""" +2024-08-04,54375,2625,"[\""Wireless Mouse\""]",3302.24,{},193088,1,"""North America""" +2023-04-19,54376,1793,"[\""Tablet\""]",4680.36,"{\""promo\"": \""22%\""}",149979,1,"""Africa""" +2024-10-25,54377,9049,"[\""Tablet\"", \""Keyboard\""]",3232.7,{},54891,0,"""Asia""" +2024-11-06,54378,5697,"[\""Keyboard\"", \""Monitor\""]",900.34,"{\""promo\"": \""16%\""}",247376,0,"""South America""" +2024-10-17,54379,7532,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",894.14,{},289451,1,"""Africa""" +2024-08-11,54380,3445,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1461.24,"{\"": \""5%\""}",163562,1,"""South America""" +2023-07-06,54381,2289,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1236.11,"{\""promo\"": \""23%\""}",126733,1,"""North America""" +2024-03-23,54382,1322,"[\""Tablet\""]",616.51,"{\"": \""12%\""}",105159,1,"""Europe""" +2023-04-07,54383,4365,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",447.92,{},113741,0,"""Europe""" +2023-07-03,54384,8696,"[\""Laptop\""]",526.53,{},139265,0,"""Europe""" +2024-07-23,54385,5617,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",444.27,{},264976,1,"""Europe""" +2023-11-10,54386,171,"[\""Phone\"", \""Wireless Mouse\""]",4441.84,{},8865,0,"""Africa""" +2024-01-20,54387,8356,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3017.02,{},66722,1,"""North America""" +2024-12-10,54388,4925,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3780.03,{},129910,1,"""North America""" +2024-07-18,54389,9430,"[\""Headphones\"", \""Monitor\""]",316.47,{},36718,0,"""North America""" +2024-05-16,54390,2534,"[\""Tablet\""]",3900.04,"{\""loyalty\"": \""10%\""}",172249,0,"""South America""" +2024-06-23,54391,1660,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4122.24,"{\""seasonal\"": \""23%\""}",194776,1,"""North America""" +2023-12-02,54392,152,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1562.33,{},97341,0,"""North America""" +2023-12-18,54393,635,"[\""Charger\"", \""Tablet\""]",2801.21,"{\"": \""28%\""}",127324,1,"""South America""" +2023-10-14,54394,5812,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1988.12,{},150922,1,"""Asia""" +2024-01-08,54395,5284,"[\""Headphones\"", \""Tablet\""]",4428.71,{},166655,0,"""North America""" +2024-02-09,54396,8557,"[\""Wireless Mouse\""]",4776.95,{},199363,1,"""Asia""" +2023-11-03,54397,2166,"[\""Wireless Mouse\""]",673.04,{},55159,0,"""Asia""" +2024-01-01,54398,1517,"[\""Monitor\"", \""Wireless Mouse\""]",983.83,"{\""loyalty\"": \""18%\""}",257061,1,"""South America""" +2023-07-18,54399,2158,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1322.66,"{\""loyalty\"": \""27%\""}",299772,1,"""Asia""" +2023-07-01,54400,3511,"[\""Charger\"", \""Phone\""]",3691.73,{},205487,0,"""Europe""" +2024-05-21,54401,4757,"[\""Keyboard\"", \""Charger\""]",298.29,{},73834,0,"""North America""" +2024-07-14,54402,4881,"[\""Phone\"", \""Tablet\""]",1292.92,{},260376,1,"""South America""" +2024-05-21,54403,3514,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2721.52,{},66696,0,"""Asia""" +2024-01-08,54404,5973,"[\""Laptop\""]",549.28,"{\""promo\"": \""22%\""}",87431,0,"""North America""" +2024-01-03,54405,2947,"[\""Keyboard\""]",4159.08,{},292062,1,"""North America""" +2023-02-27,54406,8410,"[\""Monitor\""]",2046.36,"{\""promo\"": \""16%\""}",250381,1,"""South America""" +2023-10-23,54407,4799,"[\""Laptop\"", \""Charger\""]",119.19,{},45612,0,"""North America""" +2024-04-30,54408,5016,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4658.71,"{\""loyalty\"": \""23%\""}",187868,1,"""Africa""" +2024-09-20,54409,1428,"[\""Headphones\"", \""Wireless Mouse\""]",1690.07,"{\""seasonal\"": \""30%\""}",181389,0,"""North America""" +2024-04-02,54410,6960,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",469.35,{},264277,1,"""Europe""" +2023-11-04,54411,8339,"[\""Charger\"", \""Keyboard\""]",750.49,{},6962,1,"""North America""" +2023-06-09,54412,964,"[\""Phone\""]",4829.76,{},3884,0,"""South America""" +2024-12-22,54413,188,"[\""Headphones\"", \""Wireless Mouse\""]",451.66,"{\""seasonal\"": \""26%\""}",226698,1,"""Europe""" +2023-11-23,54414,4376,"[\""Charger\""]",2972.42,{},247099,0,"""Africa""" +2023-02-06,54415,8700,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",134.65,"{\""seasonal\"": \""29%\""}",117418,1,"""North America""" +2024-07-11,54416,2222,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1567.02,{},188608,1,"""North America""" +2023-08-10,54417,6383,"[\""Phone\""]",2235.07,"{\"": \""5%\""}",162652,1,"""Africa""" +2024-05-24,54418,685,"[\""Phone\""]",3294.28,{},207987,0,"""Asia""" +2024-09-22,54419,6938,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1540.45,"{\""loyalty\"": \""13%\""}",185349,1,"""Asia""" +2023-08-10,54420,9130,"[\""Wireless Mouse\""]",4571.03,"{\""loyalty\"": \""30%\""}",152457,1,"""Asia""" +2024-11-10,54421,7983,"[\""Charger\"", \""Tablet\""]",3391.0,{},39135,0,"""Asia""" +2024-10-05,54422,6151,"[\""Wireless Mouse\"", \""Keyboard\""]",536.12,"{\""promo\"": \""24%\""}",271215,1,"""Africa""" +2023-04-15,54423,8262,"[\""Tablet\""]",4598.3,"{\""seasonal\"": \""28%\""}",67607,1,"""Asia""" +2024-01-19,54424,4880,"[\""Charger\"", \""Phone\""]",3093.89,"{\""seasonal\"": \""10%\""}",78960,1,"""Asia""" +2024-01-31,54425,4298,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",847.42,"{\"": \""26%\""}",179008,0,"""South America""" +2024-02-29,54426,4571,"[\""Phone\""]",2808.92,{},46087,1,"""Asia""" +2024-02-14,54427,4654,"[\""Tablet\"", \""Wireless Mouse\""]",2507.24,"{\""loyalty\"": \""24%\""}",77955,1,"""North America""" +2024-09-29,54428,4784,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2215.08,"{\""promo\"": \""24%\""}",207302,1,"""Europe""" +2023-03-05,54429,9286,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2406.82,{},130566,0,"""South America""" +2024-02-16,54430,6963,"[\""Monitor\"", \""Headphones\""]",4120.13,"{\"": \""26%\""}",69152,0,"""Africa""" +2023-06-14,54431,560,"[\""Keyboard\"", \""Charger\""]",3745.22,{},219532,0,"""Europe""" +2024-04-01,54432,2779,"[\""Headphones\"", \""Phone\""]",653.89,"{\""promo\"": \""24%\""}",236812,1,"""North America""" +2024-06-19,54433,1801,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1441.26,"{\""seasonal\"": \""10%\""}",186602,0,"""Africa""" +2023-11-10,54434,4043,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4823.65,"{\"": \""10%\""}",268465,0,"""Africa""" +2024-11-23,54435,1540,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2340.67,"{\"": \""29%\""}",291365,0,"""Africa""" +2023-12-21,54436,8087,"[\""Keyboard\""]",417.17,{},89723,0,"""South America""" +2024-04-20,54437,4968,"[\""Wireless Mouse\"", \""Headphones\""]",2211.27,"{\"": \""17%\""}",145294,0,"""Asia""" +2023-12-19,54438,4497,"[\""Tablet\""]",4641.16,"{\"": \""20%\""}",82714,1,"""Asia""" +2023-04-28,54439,2735,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2205.25,"{\""loyalty\"": \""27%\""}",238931,1,"""Europe""" +2023-10-17,54440,8621,"[\""Charger\"", \""Wireless Mouse\""]",2984.11,{},97731,1,"""Europe""" +2024-06-03,54441,7469,"[\""Charger\""]",3264.72,"{\"": \""28%\""}",132800,1,"""South America""" +2023-12-13,54442,502,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2889.33,{},221516,0,"""North America""" +2023-01-05,54443,4946,"[\""Wireless Mouse\""]",234.45,{},299956,0,"""Europe""" +2024-12-31,54444,5795,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3643.24,"{\"": \""27%\""}",198837,1,"""Europe""" +2024-07-09,54445,4135,"[\""Phone\""]",645.66,{},10366,1,"""Asia""" +2024-12-05,54446,5935,"[\""Wireless Mouse\""]",3877.17,{},49645,0,"""Asia""" +2023-06-06,54447,3876,"[\""Laptop\""]",1343.09,{},159707,1,"""North America""" +2023-08-21,54448,8268,"[\""Tablet\"", \""Headphones\""]",3990.18,"{\""seasonal\"": \""18%\""}",169961,1,"""South America""" +2024-05-06,54449,2996,"[\""Headphones\""]",2025.76,{},241961,1,"""South America""" +2024-03-19,54450,8561,"[\""Keyboard\"", \""Charger\""]",4961.23,"{\""promo\"": \""29%\""}",20067,1,"""North America""" +2023-06-14,54451,3293,"[\""Keyboard\""]",922.98,{},8127,1,"""North America""" +2024-12-26,54452,9419,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2816.66,{},24396,1,"""Africa""" +2023-05-03,54453,7017,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3123.51,{},128707,0,"""Europe""" +2024-08-27,54454,7441,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",447.52,{},179778,1,"""South America""" +2024-12-30,54455,400,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4102.97,"{\"": \""23%\""}",13521,1,"""Africa""" +2023-06-21,54456,1384,"[\""Keyboard\""]",3197.6,"{\""loyalty\"": \""10%\""}",134623,1,"""South America""" +2023-04-30,54457,8159,"[\""Monitor\"", \""Tablet\""]",1944.17,"{\""seasonal\"": \""25%\""}",41592,0,"""Asia""" +2023-05-21,54458,3216,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2411.65,{},2938,1,"""Africa""" +2024-09-26,54459,1866,"[\""Charger\"", \""Phone\""]",1159.34,{},23425,0,"""North America""" +2023-07-29,54460,2711,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",945.92,{},205175,0,"""Africa""" +2024-09-03,54461,5660,"[\""Phone\"", \""Monitor\""]",299.18,"{\""promo\"": \""17%\""}",283415,1,"""Asia""" +2024-11-08,54462,9151,"[\""Wireless Mouse\""]",4922.94,{},31161,0,"""Asia""" +2024-07-01,54463,5214,"[\""Phone\""]",4481.68,"{\""loyalty\"": \""16%\""}",96611,1,"""Europe""" +2023-03-19,54464,788,"[\""Monitor\""]",3101.96,{},203125,1,"""Africa""" +2023-01-08,54465,3085,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4636.51,{},86620,0,"""Europe""" +2024-01-17,54466,2457,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2894.43,"{\""loyalty\"": \""10%\""}",289036,0,"""South America""" +2024-02-10,54467,8638,"[\""Headphones\""]",1633.34,"{\""promo\"": \""21%\""}",85246,1,"""Asia""" +2023-08-29,54468,1995,"[\""Keyboard\""]",4745.84,{},30188,1,"""North America""" +2023-02-11,54469,9889,"[\""Wireless Mouse\"", \""Charger\""]",3178.14,{},249996,1,"""North America""" +2024-07-03,54470,9414,"[\""Wireless Mouse\"", \""Monitor\""]",1312.27,"{\""loyalty\"": \""5%\""}",42345,1,"""Europe""" +2023-08-04,54471,894,"[\""Laptop\"", \""Wireless Mouse\""]",244.91,{},294736,1,"""Africa""" +2023-04-04,54472,6003,"[\""Monitor\"", \""Wireless Mouse\""]",1144.78,"{\""promo\"": \""30%\""}",57169,0,"""Asia""" +2024-07-13,54473,8377,"[\""Charger\"", \""Monitor\"", \""Phone\""]",751.94,{},147159,0,"""Asia""" +2024-12-04,54474,2604,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",598.86,"{\""seasonal\"": \""22%\""}",85778,1,"""Africa""" +2024-09-11,54475,3994,"[\""Headphones\"", \""Monitor\""]",2718.88,{},225513,0,"""South America""" +2024-06-29,54476,6095,"[\""Phone\"", \""Headphones\""]",182.46,"{\""loyalty\"": \""27%\""}",179259,1,"""Africa""" +2024-04-29,54477,3,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4803.06,{},4858,1,"""Asia""" +2024-10-28,54478,8153,"[\""Laptop\"", \""Monitor\""]",591.69,"{\""seasonal\"": \""17%\""}",296451,1,"""Africa""" +2023-08-31,54479,5240,"[\""Headphones\"", \""Tablet\""]",2344.25,{},253079,0,"""Asia""" +2023-12-22,54480,7710,"[\""Headphones\""]",3173.76,{},124018,1,"""North America""" +2024-05-14,54481,1012,"[\""Wireless Mouse\""]",4173.03,{},261961,0,"""South America""" +2023-04-17,54482,2076,"[\""Charger\""]",1851.49,"{\""loyalty\"": \""11%\""}",272425,1,"""South America""" +2023-01-26,54483,1994,"[\""Tablet\""]",702.68,"{\""loyalty\"": \""13%\""}",184681,1,"""South America""" +2024-12-14,54484,6797,"[\""Wireless Mouse\"", \""Charger\""]",2959.75,{},269658,0,"""Asia""" +2023-01-01,54485,938,"[\""Keyboard\""]",3153.76,{},125349,1,"""Africa""" +2024-10-01,54486,9567,"[\""Keyboard\"", \""Monitor\""]",168.7,"{\""loyalty\"": \""21%\""}",34687,0,"""South America""" +2024-10-21,54487,4899,"[\""Tablet\""]",3834.06,{},227386,0,"""North America""" +2024-04-25,54488,7396,"[\""Tablet\"", \""Laptop\""]",1598.18,"{\"": \""28%\""}",36502,1,"""Asia""" +2024-02-19,54489,1141,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2520.69,"{\"": \""14%\""}",290234,1,"""Europe""" +2024-08-08,54490,7061,"[\""Headphones\"", \""Charger\""]",1935.13,"{\""promo\"": \""21%\""}",123033,0,"""North America""" +2024-09-07,54491,4829,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3197.47,"{\""seasonal\"": \""29%\""}",286985,0,"""Asia""" +2023-01-18,54492,8496,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3251.53,"{\"": \""26%\""}",261933,0,"""Africa""" +2024-04-05,54493,2488,"[\""Charger\""]",4109.26,{},185155,0,"""North America""" +2023-08-02,54494,8136,"[\""Wireless Mouse\"", \""Monitor\""]",1053.66,{},296271,0,"""North America""" +2024-03-24,54495,1055,"[\""Phone\""]",2377.62,"{\"": \""27%\""}",64339,0,"""Asia""" +2024-11-11,54496,6314,"[\""Charger\"", \""Phone\""]",3843.97,"{\"": \""29%\""}",186497,0,"""Europe""" +2023-01-27,54497,9933,"[\""Headphones\""]",1832.52,"{\"": \""28%\""}",211914,0,"""Europe""" +2023-06-18,54498,7350,"[\""Tablet\""]",4098.76,"{\""promo\"": \""7%\""}",238248,1,"""South America""" +2024-12-01,54499,4008,"[\""Monitor\""]",1726.26,"{\""loyalty\"": \""24%\""}",133189,1,"""Africa""" +2024-05-12,54500,9182,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3904.02,{},266455,0,"""Europe""" +2024-09-24,54501,1754,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",91.3,"{\""promo\"": \""28%\""}",135499,1,"""Africa""" +2024-05-18,54502,6134,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4679.44,"{\""loyalty\"": \""7%\""}",126847,1,"""Europe""" +2023-03-03,54503,1452,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4292.41,"{\""promo\"": \""22%\""}",114988,0,"""Asia""" +2023-10-05,54504,9031,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2711.33,"{\""loyalty\"": \""12%\""}",239382,0,"""North America""" +2024-02-14,54505,5750,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2407.4,"{\""promo\"": \""19%\""}",269295,0,"""South America""" +2024-09-22,54506,3071,"[\""Wireless Mouse\""]",4228.17,"{\""promo\"": \""16%\""}",249284,0,"""Asia""" +2024-11-22,54507,3556,"[\""Phone\"", \""Laptop\""]",2412.76,{},13972,1,"""North America""" +2024-01-15,54508,1747,"[\""Tablet\"", \""Monitor\""]",1017.35,"{\""seasonal\"": \""24%\""}",257712,1,"""Africa""" +2023-11-05,54509,6621,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4523.53,{},146020,0,"""Asia""" +2024-12-18,54510,1205,"[\""Monitor\""]",3791.12,{},211437,0,"""North America""" +2024-07-08,54511,2404,"[\""Phone\"", \""Keyboard\""]",545.68,"{\"": \""18%\""}",67524,1,"""Africa""" +2023-04-27,54512,8341,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3431.35,{},168011,0,"""Asia""" +2023-02-24,54513,1754,"[\""Headphones\"", \""Wireless Mouse\""]",2321.45,{},149490,0,"""Africa""" +2024-09-15,54514,8820,"[\""Tablet\"", \""Charger\""]",3305.7,"{\""seasonal\"": \""16%\""}",162442,1,"""Asia""" +2024-03-10,54515,3382,"[\""Charger\"", \""Keyboard\""]",1336.68,"{\""seasonal\"": \""10%\""}",195314,1,"""North America""" +2023-12-16,54516,555,"[\""Tablet\""]",3915.83,{},165349,0,"""Africa""" +2023-09-25,54517,3624,"[\""Phone\"", \""Wireless Mouse\""]",4773.26,{},298536,1,"""South America""" +2023-05-25,54518,2416,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3981.58,"{\""seasonal\"": \""7%\""}",260041,0,"""Asia""" +2024-04-05,54519,485,"[\""Tablet\""]",2594.97,"{\""seasonal\"": \""14%\""}",5102,0,"""South America""" +2024-08-13,54520,2340,"[\""Tablet\"", \""Phone\""]",640.02,{},111540,1,"""Asia""" +2024-09-22,54521,1713,"[\""Monitor\""]",1696.65,"{\""loyalty\"": \""9%\""}",241251,0,"""Asia""" +2023-08-27,54522,8629,"[\""Headphones\"", \""Phone\""]",2941.86,"{\"": \""6%\""}",13242,1,"""Asia""" +2023-04-28,54523,7866,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3058.33,"{\""seasonal\"": \""9%\""}",22693,0,"""Europe""" +2023-05-24,54524,7852,"[\""Charger\"", \""Monitor\""]",2243.62,"{\""seasonal\"": \""15%\""}",166692,0,"""South America""" +2023-06-13,54525,9349,"[\""Keyboard\""]",4799.69,{},9006,0,"""South America""" +2023-06-09,54526,668,"[\""Charger\""]",2979.95,{},202983,0,"""North America""" +2024-04-15,54527,2968,"[\""Laptop\""]",2519.15,"{\""seasonal\"": \""15%\""}",162051,1,"""Asia""" +2023-09-19,54528,6650,"[\""Headphones\""]",2619.27,{},63929,1,"""Asia""" +2024-01-30,54529,3305,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1277.67,{},200865,0,"""North America""" +2024-06-12,54530,3843,"[\""Charger\"", \""Phone\""]",856.26,{},185546,1,"""Africa""" +2024-11-27,54531,217,"[\""Phone\""]",1180.14,{},260797,1,"""Europe""" +2024-07-12,54532,9745,"[\""Headphones\""]",3846.99,"{\""seasonal\"": \""8%\""}",32502,1,"""North America""" +2023-10-07,54533,8629,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3570.19,{},292256,1,"""South America""" +2023-08-30,54534,4477,"[\""Charger\"", \""Laptop\""]",495.46,"{\""seasonal\"": \""15%\""}",44132,0,"""North America""" +2023-05-27,54535,8479,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2293.18,{},114902,0,"""Europe""" +2023-08-08,54536,2649,"[\""Headphones\""]",4535.1,{},179541,0,"""Europe""" +2023-03-04,54537,9657,"[\""Wireless Mouse\"", \""Monitor\""]",1362.36,"{\"": \""12%\""}",9343,0,"""North America""" +2023-01-22,54538,8254,"[\""Laptop\"", \""Monitor\""]",171.32,"{\""promo\"": \""24%\""}",21793,0,"""South America""" +2024-06-03,54539,9595,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3214.54,"{\""seasonal\"": \""6%\""}",258674,0,"""North America""" +2023-12-06,54540,9188,"[\""Headphones\"", \""Wireless Mouse\""]",1226.71,{},266732,1,"""Africa""" +2024-12-01,54541,8492,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2421.42,{},62745,0,"""Asia""" +2024-07-12,54542,4863,"[\""Headphones\"", \""Charger\""]",2329.87,"{\""seasonal\"": \""24%\""}",29209,0,"""Europe""" +2023-10-29,54543,5845,"[\""Wireless Mouse\"", \""Phone\""]",2680.24,"{\""seasonal\"": \""24%\""}",188332,0,"""South America""" +2023-12-23,54544,239,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3173.67,"{\""seasonal\"": \""15%\""}",145895,1,"""Europe""" +2024-07-12,54545,8241,"[\""Keyboard\""]",277.69,{},165147,0,"""Africa""" +2023-09-15,54546,943,"[\""Keyboard\"", \""Charger\""]",4077.39,{},47648,1,"""Africa""" +2024-07-27,54547,3753,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2793.25,{},29451,1,"""South America""" +2023-06-17,54548,9538,"[\""Charger\"", \""Monitor\""]",1431.48,"{\""loyalty\"": \""9%\""}",172715,0,"""Africa""" +2024-06-20,54549,8826,"[\""Wireless Mouse\""]",653.62,"{\""loyalty\"": \""6%\""}",123990,0,"""Africa""" +2023-12-28,54550,1636,"[\""Headphones\"", \""Tablet\""]",1366.88,"{\""seasonal\"": \""18%\""}",216656,0,"""North America""" +2023-11-13,54551,6033,"[\""Laptop\""]",2011.07,{},227262,0,"""South America""" +2023-12-17,54552,7508,"[\""Monitor\""]",1099.1,{},95853,1,"""North America""" +2023-09-14,54553,974,"[\""Wireless Mouse\"", \""Tablet\""]",3357.05,{},149926,0,"""Europe""" +2023-06-25,54554,3488,"[\""Headphones\"", \""Laptop\""]",2369.42,"{\""promo\"": \""13%\""}",293077,1,"""Africa""" +2024-03-23,54555,3143,"[\""Wireless Mouse\"", \""Phone\""]",3842.96,"{\"": \""13%\""}",26668,0,"""Europe""" +2023-11-24,54556,9195,"[\""Laptop\"", \""Headphones\""]",146.42,{},103335,1,"""Europe""" +2023-03-21,54557,5593,"[\""Phone\""]",2499.68,"{\""loyalty\"": \""11%\""}",296732,1,"""Africa""" +2024-03-06,54558,2600,"[\""Phone\"", \""Keyboard\""]",929.87,{},270430,1,"""Europe""" +2024-10-08,54559,9650,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2409.28,{},35422,0,"""Asia""" +2023-08-26,54560,6513,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3080.97,{},156739,0,"""South America""" +2024-07-30,54561,3963,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4426.68,{},73766,1,"""South America""" +2023-09-12,54562,5606,"[\""Charger\"", \""Phone\""]",4057.18,"{\""seasonal\"": \""24%\""}",183237,1,"""Asia""" +2024-11-08,54563,473,"[\""Tablet\"", \""Wireless Mouse\""]",3539.05,"{\""promo\"": \""25%\""}",206932,0,"""South America""" +2024-02-04,54564,6378,"[\""Headphones\"", \""Wireless Mouse\""]",3426.78,"{\""seasonal\"": \""6%\""}",4678,1,"""North America""" +2023-11-15,54565,6659,"[\""Tablet\""]",146.56,"{\""promo\"": \""14%\""}",59306,0,"""South America""" +2023-02-12,54566,1929,"[\""Laptop\"", \""Monitor\""]",2674.51,"{\""seasonal\"": \""7%\""}",137958,1,"""Europe""" +2023-02-18,54567,1475,"[\""Tablet\""]",4601.2,"{\""seasonal\"": \""24%\""}",80383,0,"""South America""" +2024-08-12,54568,6221,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1925.1,"{\"": \""11%\""}",210228,1,"""Asia""" +2024-12-14,54569,3110,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3031.76,{},46232,0,"""South America""" +2024-10-01,54570,1445,"[\""Laptop\"", \""Wireless Mouse\""]",1226.62,{},147353,1,"""North America""" +2023-01-28,54571,9384,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4177.67,"{\""seasonal\"": \""6%\""}",201517,0,"""Asia""" +2024-04-15,54572,8423,"[\""Headphones\""]",1812.52,{},109102,1,"""Africa""" +2024-03-21,54573,8774,"[\""Monitor\""]",2955.62,{},18074,1,"""Europe""" +2023-11-19,54574,769,"[\""Monitor\"", \""Tablet\""]",379.08,{},81529,0,"""North America""" +2024-04-04,54575,6898,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2769.78,"{\""promo\"": \""21%\""}",131018,0,"""Europe""" +2024-06-18,54576,7291,"[\""Wireless Mouse\""]",4420.08,{},210014,1,"""Europe""" +2024-07-27,54577,8209,"[\""Keyboard\"", \""Monitor\""]",2745.89,"{\""loyalty\"": \""19%\""}",95768,1,"""North America""" +2023-02-18,54578,5588,"[\""Laptop\"", \""Charger\""]",4692.94,{},9799,1,"""South America""" +2023-06-26,54579,9776,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4437.41,"{\""loyalty\"": \""13%\""}",234473,1,"""Asia""" +2023-10-16,54580,3201,"[\""Headphones\""]",4275.77,{},150743,1,"""Europe""" +2024-06-30,54581,1747,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2905.47,"{\""seasonal\"": \""29%\""}",215840,1,"""South America""" +2023-04-20,54582,4385,"[\""Charger\"", \""Monitor\""]",685.68,{},240036,1,"""Europe""" +2023-02-28,54583,3817,"[\""Tablet\"", \""Headphones\""]",919.8,"{\""loyalty\"": \""10%\""}",166264,0,"""North America""" +2023-10-13,54584,7155,"[\""Keyboard\""]",700.69,{},125327,0,"""Africa""" +2024-10-31,54585,1752,"[\""Monitor\""]",710.99,"{\"": \""20%\""}",145357,1,"""Asia""" +2023-03-31,54586,611,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2380.86,{},40987,1,"""Africa""" +2024-08-16,54587,8504,"[\""Laptop\""]",2495.3,{},20958,0,"""Asia""" +2024-04-27,54588,5608,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3850.67,{},267593,0,"""South America""" +2023-01-12,54589,2298,"[\""Charger\"", \""Phone\"", \""Laptop\""]",464.41,"{\""loyalty\"": \""21%\""}",46502,0,"""North America""" +2023-12-29,54590,5497,"[\""Headphones\"", \""Charger\""]",3005.57,"{\"": \""24%\""}",85800,1,"""Europe""" +2024-05-22,54591,5968,"[\""Wireless Mouse\"", \""Keyboard\""]",2572.81,{},130446,0,"""Africa""" +2024-05-05,54592,7825,"[\""Headphones\"", \""Phone\""]",1245.74,{},234862,0,"""Asia""" +2024-07-07,54593,2768,"[\""Phone\""]",1337.88,"{\""seasonal\"": \""25%\""}",62374,1,"""Europe""" +2024-09-11,54594,8537,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",148.06,{},125501,0,"""South America""" +2023-07-10,54595,2117,"[\""Laptop\"", \""Monitor\""]",221.74,{},96561,0,"""Europe""" +2023-02-28,54596,5048,"[\""Wireless Mouse\"", \""Tablet\""]",4616.22,{},277125,0,"""Europe""" +2024-04-01,54597,2844,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3352.83,"{\""seasonal\"": \""30%\""}",27827,1,"""Europe""" +2024-09-21,54598,7432,"[\""Headphones\"", \""Phone\""]",4485.61,{},96413,0,"""Europe""" +2024-08-11,54599,127,"[\""Wireless Mouse\""]",154.03,"{\""seasonal\"": \""9%\""}",32320,1,"""Asia""" +2024-06-11,54600,7635,"[\""Monitor\""]",4711.09,"{\""promo\"": \""24%\""}",62571,0,"""Europe""" +2024-07-01,54601,5115,"[\""Wireless Mouse\""]",3097.32,"{\""seasonal\"": \""24%\""}",285739,1,"""Europe""" +2024-04-23,54602,9554,"[\""Tablet\""]",747.0,"{\"": \""20%\""}",33625,0,"""South America""" +2024-07-17,54603,2870,"[\""Keyboard\""]",3544.82,"{\""loyalty\"": \""22%\""}",187757,1,"""North America""" +2024-01-23,54604,9430,"[\""Monitor\""]",4019.88,"{\""promo\"": \""27%\""}",254783,0,"""Asia""" +2023-05-21,54605,4598,"[\""Tablet\"", \""Phone\"", \""Charger\""]",179.97,"{\""seasonal\"": \""16%\""}",10976,1,"""South America""" +2024-05-31,54606,6470,"[\""Keyboard\""]",2249.34,{},277850,0,"""South America""" +2023-10-01,54607,8697,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1443.08,{},46451,1,"""North America""" +2023-02-07,54608,4281,"[\""Charger\"", \""Wireless Mouse\""]",4742.59,"{\"": \""30%\""}",229602,0,"""Africa""" +2023-08-22,54609,2300,"[\""Keyboard\""]",336.76,{},237999,1,"""South America""" +2024-10-22,54610,3362,"[\""Laptop\"", \""Monitor\""]",2897.57,{},122126,1,"""Europe""" +2024-02-20,54611,3647,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3247.48,"{\"": \""6%\""}",214318,0,"""Africa""" +2024-09-16,54612,1015,"[\""Charger\"", \""Tablet\""]",715.55,{},100141,1,"""Europe""" +2024-10-25,54613,1996,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3566.26,{},263446,1,"""Europe""" +2024-10-31,54614,560,"[\""Headphones\"", \""Monitor\""]",2458.84,"{\""promo\"": \""26%\""}",19607,1,"""South America""" +2023-03-30,54615,4882,"[\""Headphones\"", \""Keyboard\""]",1275.1,{},147016,1,"""South America""" +2023-11-26,54616,519,"[\""Tablet\""]",1963.95,"{\""loyalty\"": \""5%\""}",121637,0,"""Africa""" +2024-11-28,54617,4920,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2702.06,{},42580,0,"""South America""" +2024-11-16,54618,7222,"[\""Tablet\""]",4218.31,"{\""promo\"": \""8%\""}",180612,0,"""South America""" +2023-08-17,54619,158,"[\""Tablet\""]",2734.28,"{\"": \""22%\""}",70899,0,"""North America""" +2023-12-29,54620,7499,"[\""Wireless Mouse\""]",485.76,{},20097,0,"""North America""" +2023-08-15,54621,6310,"[\""Tablet\""]",1008.6,{},106763,0,"""Asia""" +2024-05-15,54622,7563,"[\""Charger\"", \""Keyboard\""]",4589.28,{},220823,1,"""Asia""" +2024-10-26,54623,7872,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3658.67,"{\"": \""23%\""}",252305,1,"""Europe""" +2024-07-18,54624,6906,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1504.32,{},253799,0,"""Europe""" +2023-10-12,54625,1542,"[\""Monitor\""]",717.82,"{\""loyalty\"": \""24%\""}",178355,1,"""North America""" +2024-04-21,54626,9101,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",459.27,{},161793,1,"""Asia""" +2024-06-26,54627,2280,"[\""Monitor\"", \""Headphones\""]",4524.96,"{\""seasonal\"": \""29%\""}",68057,0,"""Asia""" +2023-01-15,54628,7410,"[\""Charger\"", \""Keyboard\""]",4739.88,"{\""promo\"": \""22%\""}",107535,1,"""Africa""" +2023-05-29,54629,1667,"[\""Keyboard\"", \""Phone\""]",3329.9,{},88381,0,"""Asia""" +2023-03-17,54630,4856,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2397.68,{},4259,1,"""North America""" +2024-07-07,54631,9461,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",266.46,"{\""loyalty\"": \""14%\""}",205486,0,"""Europe""" +2023-07-31,54632,9288,"[\""Keyboard\""]",4968.33,"{\""seasonal\"": \""26%\""}",54811,0,"""South America""" +2023-04-08,54633,7638,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3520.52,{},265694,0,"""Europe""" +2024-01-07,54634,3960,"[\""Headphones\"", \""Wireless Mouse\""]",4017.09,"{\""promo\"": \""26%\""}",192153,1,"""Europe""" +2024-11-16,54635,518,"[\""Headphones\""]",4577.6,{},241552,1,"""Asia""" +2024-06-17,54636,9530,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3840.86,"{\""promo\"": \""30%\""}",5912,0,"""North America""" +2024-07-18,54637,590,"[\""Tablet\"", \""Headphones\""]",2258.67,"{\""loyalty\"": \""27%\""}",23250,1,"""North America""" +2024-09-15,54638,5623,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3609.92,{},227638,1,"""Africa""" +2024-06-30,54639,5425,"[\""Phone\"", \""Keyboard\""]",3790.49,"{\""loyalty\"": \""25%\""}",258441,1,"""North America""" +2024-08-27,54640,8838,"[\""Keyboard\"", \""Wireless Mouse\""]",911.53,"{\""seasonal\"": \""23%\""}",254867,0,"""Asia""" +2024-09-07,54641,374,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2853.14,{},105365,0,"""Asia""" +2024-08-10,54642,4268,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4685.56,{},35273,0,"""South America""" +2024-06-04,54643,7706,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1221.35,"{\""promo\"": \""11%\""}",135946,1,"""Asia""" +2024-10-14,54644,9146,"[\""Charger\""]",2243.45,"{\""loyalty\"": \""27%\""}",232996,1,"""North America""" +2024-07-13,54645,7147,"[\""Phone\""]",1144.45,{},220206,1,"""Asia""" +2024-04-04,54646,1200,"[\""Charger\"", \""Keyboard\""]",4954.87,"{\""promo\"": \""28%\""}",257244,1,"""Africa""" +2024-07-03,54647,8996,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1096.3,{},273885,0,"""North America""" +2024-03-17,54648,4496,"[\""Wireless Mouse\""]",4543.61,{},86225,1,"""Asia""" +2024-02-23,54649,4412,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1919.06,"{\""loyalty\"": \""23%\""}",162785,0,"""Europe""" +2024-04-30,54650,2063,"[\""Wireless Mouse\"", \""Headphones\""]",4791.83,{},220846,1,"""North America""" +2024-01-25,54651,2033,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4727.06,{},111608,1,"""Europe""" +2023-06-10,54652,283,"[\""Headphones\""]",4622.88,"{\""promo\"": \""5%\""}",271213,1,"""North America""" +2023-09-03,54653,2762,"[\""Laptop\"", \""Wireless Mouse\""]",4482.38,"{\""promo\"": \""16%\""}",265886,1,"""Europe""" +2023-12-25,54654,2785,"[\""Phone\""]",4424.48,"{\""seasonal\"": \""7%\""}",283477,1,"""Asia""" +2024-02-16,54655,2157,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",520.47,{},222100,1,"""Asia""" +2023-06-05,54656,9429,"[\""Monitor\"", \""Charger\""]",3689.49,{},123047,0,"""Europe""" +2023-06-02,54657,9302,"[\""Tablet\""]",1728.58,"{\""loyalty\"": \""30%\""}",278423,1,"""Africa""" +2024-11-14,54658,4719,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1349.7,{},52726,1,"""North America""" +2023-12-05,54659,4330,"[\""Keyboard\"", \""Monitor\""]",4633.42,"{\""loyalty\"": \""22%\""}",16049,1,"""North America""" +2024-05-26,54660,6507,"[\""Tablet\"", \""Laptop\""]",3287.99,"{\"": \""20%\""}",203461,1,"""Asia""" +2023-10-13,54661,1812,"[\""Phone\"", \""Charger\""]",3228.11,{},149918,1,"""Africa""" +2023-11-13,54662,7716,"[\""Charger\""]",4692.25,"{\"": \""23%\""}",85087,1,"""Europe""" +2024-10-02,54663,429,"[\""Keyboard\"", \""Monitor\""]",2001.02,{},33126,1,"""Africa""" +2024-03-02,54664,2888,"[\""Keyboard\"", \""Headphones\""]",2402.92,"{\""promo\"": \""9%\""}",15188,1,"""North America""" +2024-08-07,54665,8966,"[\""Phone\""]",581.63,"{\"": \""25%\""}",22980,1,"""South America""" +2024-12-24,54666,9600,"[\""Monitor\""]",2919.03,"{\""promo\"": \""28%\""}",130087,1,"""Asia""" +2023-07-31,54667,7649,"[\""Phone\""]",4157.14,"{\""seasonal\"": \""24%\""}",229157,1,"""Europe""" +2024-11-11,54668,9911,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",179.77,{},151349,0,"""Africa""" +2023-01-07,54669,9447,"[\""Wireless Mouse\"", \""Tablet\""]",4116.13,"{\""loyalty\"": \""21%\""}",24150,1,"""Asia""" +2023-01-11,54670,2547,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4061.74,"{\"": \""9%\""}",221052,1,"""North America""" +2024-05-01,54671,9955,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4524.18,{},128480,1,"""South America""" +2024-01-23,54672,5318,"[\""Laptop\""]",1037.33,{},88069,1,"""North America""" +2023-09-06,54673,2760,"[\""Charger\""]",2095.23,"{\""loyalty\"": \""12%\""}",24290,1,"""Europe""" +2024-02-28,54674,9290,"[\""Phone\"", \""Laptop\""]",4090.52,"{\""seasonal\"": \""26%\""}",268224,0,"""Asia""" +2024-03-12,54675,4556,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",406.97,"{\""promo\"": \""13%\""}",270768,1,"""Europe""" +2024-10-17,54676,3989,"[\""Phone\"", \""Wireless Mouse\""]",4264.64,"{\""seasonal\"": \""30%\""}",82217,0,"""Africa""" +2024-08-15,54677,5733,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3480.3,{},274066,1,"""Europe""" +2023-11-04,54678,8413,"[\""Monitor\"", \""Keyboard\""]",3784.36,{},18952,1,"""Asia""" +2024-07-19,54679,9287,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2598.74,"{\""loyalty\"": \""19%\""}",29781,0,"""Africa""" +2024-05-15,54680,8577,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2277.76,{},203733,0,"""South America""" +2023-11-08,54681,1834,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2739.98,{},210746,1,"""South America""" +2023-06-21,54682,8794,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4182.4,"{\""seasonal\"": \""21%\""}",235535,1,"""South America""" +2024-08-23,54683,964,"[\""Charger\"", \""Tablet\""]",4313.98,{},19705,0,"""South America""" +2024-03-08,54684,2117,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2808.78,{},231673,1,"""North America""" +2023-01-31,54685,2638,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4286.39,{},269489,0,"""Europe""" +2023-08-03,54686,1881,"[\""Wireless Mouse\""]",1772.05,"{\"": \""14%\""}",7375,0,"""Africa""" +2024-11-01,54687,8704,"[\""Phone\"", \""Wireless Mouse\""]",125.47,"{\""promo\"": \""9%\""}",177104,0,"""Africa""" +2024-05-21,54688,5294,"[\""Laptop\""]",2491.11,"{\"": \""9%\""}",26075,0,"""Europe""" +2024-03-04,54689,7489,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4156.46,"{\""seasonal\"": \""11%\""}",274241,0,"""Europe""" +2024-10-04,54690,8310,"[\""Monitor\""]",3983.27,{},145270,0,"""Europe""" +2023-08-11,54691,4393,"[\""Charger\""]",2085.33,"{\""seasonal\"": \""25%\""}",109292,0,"""South America""" +2023-10-10,54692,1164,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3843.06,"{\""seasonal\"": \""24%\""}",62810,0,"""North America""" +2024-01-13,54693,8435,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4108.41,{},197576,1,"""Asia""" +2023-09-21,54694,8365,"[\""Headphones\"", \""Phone\""]",2529.41,{},209579,0,"""North America""" +2023-10-04,54695,7749,"[\""Keyboard\"", \""Laptop\""]",3378.62,{},89980,1,"""Africa""" +2024-09-05,54696,8540,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2741.85,"{\""promo\"": \""20%\""}",38355,1,"""Asia""" +2023-06-27,54697,542,"[\""Phone\""]",1947.96,"{\""seasonal\"": \""27%\""}",31119,0,"""Europe""" +2024-12-08,54698,7081,"[\""Keyboard\"", \""Phone\""]",2811.4,"{\""seasonal\"": \""25%\""}",151205,0,"""North America""" +2024-06-29,54699,7688,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3922.75,"{\""seasonal\"": \""26%\""}",24247,1,"""Asia""" +2024-01-30,54700,4211,"[\""Wireless Mouse\"", \""Laptop\""]",4673.78,{},16919,0,"""Europe""" +2024-06-23,54701,900,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4119.84,{},179457,0,"""Asia""" +2024-05-09,54702,3824,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4717.29,"{\""seasonal\"": \""20%\""}",292438,0,"""Africa""" +2024-11-20,54703,97,"[\""Phone\"", \""Monitor\""]",1444.03,"{\""seasonal\"": \""23%\""}",69823,1,"""Asia""" +2023-03-17,54704,1004,"[\""Wireless Mouse\""]",2794.4,{},65946,0,"""Africa""" +2023-07-14,54705,7994,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4632.2,{},23452,1,"""Africa""" +2023-07-17,54706,5647,"[\""Wireless Mouse\"", \""Keyboard\""]",1620.95,{},221521,1,"""Europe""" +2024-06-03,54707,9647,"[\""Phone\""]",4516.74,"{\""loyalty\"": \""6%\""}",257175,1,"""Africa""" +2024-04-27,54708,4011,"[\""Charger\""]",444.34,{},180484,0,"""Africa""" +2023-05-01,54709,8095,"[\""Wireless Mouse\"", \""Laptop\""]",1719.78,{},235648,1,"""Africa""" +2024-09-20,54710,5709,"[\""Headphones\""]",1288.72,"{\""promo\"": \""14%\""}",5433,1,"""South America""" +2024-05-22,54711,7239,"[\""Laptop\""]",2867.9,"{\""promo\"": \""8%\""}",72141,0,"""Europe""" +2023-07-25,54712,2665,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",541.51,"{\""seasonal\"": \""16%\""}",173680,1,"""North America""" +2023-01-29,54713,7656,"[\""Monitor\""]",4149.67,{},251115,0,"""Asia""" +2023-04-19,54714,7170,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",846.98,{},125716,1,"""Africa""" +2024-05-18,54715,3745,"[\""Phone\""]",1946.23,"{\""loyalty\"": \""28%\""}",292014,0,"""North America""" +2024-12-08,54716,5839,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4682.22,"{\""promo\"": \""23%\""}",154990,0,"""South America""" +2024-08-26,54717,3127,"[\""Charger\""]",1641.57,{},240438,0,"""South America""" +2024-04-14,54718,7227,"[\""Laptop\""]",1646.52,{},39603,0,"""Africa""" +2024-02-27,54719,3931,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3200.02,"{\""seasonal\"": \""8%\""}",119227,0,"""Africa""" +2024-08-01,54720,5103,"[\""Monitor\"", \""Charger\""]",3923.49,"{\""loyalty\"": \""19%\""}",96130,1,"""Asia""" +2023-08-24,54721,3500,"[\""Laptop\"", \""Wireless Mouse\""]",2478.29,"{\"": \""10%\""}",182743,0,"""North America""" +2024-10-31,54722,7591,"[\""Laptop\"", \""Wireless Mouse\""]",4586.0,{},130134,1,"""South America""" +2024-10-10,54723,9978,"[\""Headphones\"", \""Wireless Mouse\""]",4150.64,"{\""loyalty\"": \""18%\""}",260499,1,"""North America""" +2023-04-29,54724,2845,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4518.78,{},62781,1,"""Asia""" +2023-04-22,54725,9978,"[\""Keyboard\""]",3593.71,"{\""seasonal\"": \""13%\""}",227263,1,"""South America""" +2023-07-17,54726,2093,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4447.24,{},28478,1,"""North America""" +2023-11-02,54727,426,"[\""Tablet\"", \""Phone\""]",1710.71,{},105825,0,"""Europe""" +2024-11-20,54728,2485,"[\""Monitor\"", \""Tablet\""]",4388.4,{},215819,1,"""North America""" +2023-09-18,54729,6757,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",959.15,"{\""seasonal\"": \""23%\""}",102705,0,"""North America""" +2023-11-23,54730,1438,"[\""Headphones\""]",1951.62,{},193130,0,"""South America""" +2023-07-12,54731,7265,"[\""Laptop\"", \""Keyboard\""]",4203.03,"{\""promo\"": \""9%\""}",158649,0,"""Europe""" +2024-08-29,54732,1406,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",396.04,"{\""loyalty\"": \""30%\""}",217147,0,"""North America""" +2023-06-11,54733,3606,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3442.32,"{\""seasonal\"": \""27%\""}",221826,1,"""North America""" +2024-06-14,54734,5633,"[\""Laptop\""]",3852.98,{},154245,1,"""Europe""" +2023-04-04,54735,4790,"[\""Charger\"", \""Tablet\""]",350.63,{},166460,1,"""Asia""" +2024-09-06,54736,6999,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4950.44,"{\""promo\"": \""10%\""}",67191,0,"""North America""" +2024-05-31,54737,2614,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2551.03,{},208657,1,"""South America""" +2024-02-08,54738,5186,"[\""Headphones\""]",4544.7,{},196230,0,"""Asia""" +2024-12-09,54739,8599,"[\""Headphones\""]",470.5,{},288066,0,"""Africa""" +2023-10-21,54740,5922,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3317.1,"{\""loyalty\"": \""11%\""}",45614,1,"""Africa""" +2024-07-07,54741,7605,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3269.11,"{\""seasonal\"": \""26%\""}",170644,0,"""North America""" +2023-07-28,54742,4913,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",722.61,{},116889,1,"""North America""" +2024-03-27,54743,9747,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1333.99,{},14959,0,"""South America""" +2024-07-26,54744,3361,"[\""Monitor\""]",4963.49,{},139537,1,"""Africa""" +2024-07-14,54745,4832,"[\""Monitor\""]",2284.22,{},131852,1,"""South America""" +2024-02-04,54746,4670,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2684.19,"{\""seasonal\"": \""20%\""}",89035,0,"""Europe""" +2023-01-17,54747,4578,"[\""Phone\""]",1665.04,{},5172,1,"""Africa""" +2024-05-16,54748,6541,"[\""Keyboard\"", \""Laptop\""]",3496.68,{},292867,0,"""South America""" +2024-08-18,54749,2906,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1271.49,"{\"": \""13%\""}",101314,1,"""Africa""" +2023-10-07,54750,7774,"[\""Monitor\""]",2776.97,{},38295,0,"""North America""" +2024-07-11,54751,2260,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",549.82,{},276914,1,"""Africa""" +2023-07-13,54752,1496,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",510.78,{},231935,0,"""Asia""" +2023-02-16,54753,1289,"[\""Laptop\""]",2306.5,"{\""seasonal\"": \""27%\""}",22109,0,"""North America""" +2024-11-17,54754,7720,"[\""Tablet\""]",4766.79,{},26413,1,"""Europe""" +2023-01-10,54755,3123,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1789.45,{},74803,0,"""North America""" +2024-03-28,54756,6567,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4401.16,{},250638,1,"""South America""" +2024-06-12,54757,7781,"[\""Monitor\""]",1825.73,{},21850,0,"""Africa""" +2024-04-20,54758,7980,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2247.7,"{\""loyalty\"": \""21%\""}",268800,0,"""South America""" +2024-02-28,54759,1122,"[\""Keyboard\""]",4315.23,"{\""promo\"": \""10%\""}",208358,1,"""South America""" +2024-03-10,54760,5155,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4645.95,{},201133,0,"""Europe""" +2024-04-27,54761,2261,"[\""Charger\"", \""Phone\""]",1265.18,{},250456,1,"""Africa""" +2023-09-25,54762,7399,"[\""Keyboard\""]",2170.27,"{\""promo\"": \""29%\""}",80247,1,"""Europe""" +2024-06-04,54763,8998,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1570.02,"{\""loyalty\"": \""20%\""}",215885,1,"""Europe""" +2024-01-16,54764,7904,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3230.69,"{\""seasonal\"": \""11%\""}",261313,1,"""Europe""" +2024-08-22,54765,7285,"[\""Headphones\""]",302.46,{},10734,0,"""Africa""" +2024-10-14,54766,4999,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1969.12,"{\""loyalty\"": \""14%\""}",41668,0,"""North America""" +2023-11-18,54767,9645,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2408.87,"{\""seasonal\"": \""28%\""}",257959,1,"""Asia""" +2024-04-25,54768,3569,"[\""Tablet\""]",4415.84,"{\""promo\"": \""29%\""}",6277,1,"""Africa""" +2024-03-12,54769,341,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2040.19,{},31885,0,"""North America""" +2024-03-28,54770,4925,"[\""Monitor\"", \""Wireless Mouse\""]",2933.88,"{\""loyalty\"": \""28%\""}",148697,1,"""North America""" +2023-08-17,54771,4369,"[\""Keyboard\""]",3148.63,"{\"": \""9%\""}",40654,0,"""Asia""" +2024-10-29,54772,4900,"[\""Charger\"", \""Phone\""]",3201.72,{},219423,0,"""North America""" +2024-07-03,54773,538,"[\""Keyboard\"", \""Charger\""]",1887.65,"{\""seasonal\"": \""15%\""}",265758,0,"""Asia""" +2023-01-02,54774,7324,"[\""Keyboard\""]",4246.85,"{\""loyalty\"": \""20%\""}",200965,0,"""Asia""" +2024-11-04,54775,2945,"[\""Charger\"", \""Wireless Mouse\""]",3347.46,{},4676,1,"""Asia""" +2023-10-03,54776,1984,"[\""Tablet\""]",2992.8,{},165373,1,"""Africa""" +2023-02-07,54777,2032,"[\""Tablet\""]",4191.91,"{\""promo\"": \""21%\""}",265672,0,"""South America""" +2023-11-26,54778,7836,"[\""Charger\"", \""Phone\""]",1254.44,{},31033,0,"""South America""" +2024-02-22,54779,7744,"[\""Laptop\"", \""Wireless Mouse\""]",4743.98,{},88050,1,"""North America""" +2023-09-15,54780,8883,"[\""Laptop\"", \""Phone\""]",3760.95,{},101968,0,"""Asia""" +2024-09-19,54781,7744,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4378.79,"{\""seasonal\"": \""10%\""}",256524,0,"""Europe""" +2024-10-21,54782,9763,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4043.77,"{\""promo\"": \""7%\""}",208653,1,"""Africa""" +2024-06-25,54783,7165,"[\""Headphones\"", \""Wireless Mouse\""]",2664.55,{},169460,0,"""Europe""" +2024-12-20,54784,7629,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3370.21,"{\""loyalty\"": \""18%\""}",116526,0,"""North America""" +2023-11-03,54785,7516,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2703.73,"{\""loyalty\"": \""26%\""}",32211,1,"""North America""" +2024-03-14,54786,4349,"[\""Phone\""]",4612.65,"{\""promo\"": \""24%\""}",124386,0,"""South America""" +2023-08-30,54787,7531,"[\""Phone\"", \""Headphones\""]",934.04,"{\""loyalty\"": \""28%\""}",264262,0,"""Europe""" +2023-05-08,54788,4253,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",805.88,{},94141,0,"""Asia""" +2023-05-30,54789,5604,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1693.89,{},191480,0,"""Europe""" +2023-10-28,54790,7916,"[\""Keyboard\""]",568.56,"{\""loyalty\"": \""10%\""}",167024,0,"""Europe""" +2023-09-01,54791,1127,"[\""Keyboard\"", \""Headphones\""]",1243.22,"{\"": \""10%\""}",25231,0,"""North America""" +2023-12-21,54792,6625,"[\""Laptop\"", \""Charger\""]",3906.45,"{\""loyalty\"": \""26%\""}",42482,1,"""Europe""" +2024-09-26,54793,2671,"[\""Monitor\""]",3214.5,"{\"": \""26%\""}",174275,0,"""South America""" +2024-10-02,54794,985,"[\""Monitor\""]",1269.18,{},216768,1,"""Europe""" +2023-08-01,54795,6238,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2784.16,"{\""loyalty\"": \""29%\""}",263762,0,"""North America""" +2023-07-25,54796,8728,"[\""Monitor\"", \""Wireless Mouse\""]",1262.61,{},276043,0,"""Africa""" +2023-05-08,54797,2108,"[\""Laptop\""]",236.22,{},12720,1,"""North America""" +2023-03-12,54798,204,"[\""Phone\""]",1744.42,"{\""seasonal\"": \""15%\""}",138357,0,"""Europe""" +2023-06-10,54799,2017,"[\""Laptop\""]",2081.4,"{\"": \""19%\""}",202512,1,"""Europe""" +2023-11-12,54800,9800,"[\""Keyboard\"", \""Wireless Mouse\""]",525.49,{},161329,0,"""Africa""" +2024-09-25,54801,2232,"[\""Laptop\""]",3895.64,{},66691,0,"""Asia""" +2024-04-02,54802,7358,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4689.38,"{\""loyalty\"": \""10%\""}",269487,0,"""Europe""" +2024-01-14,54803,6556,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4904.88,"{\"": \""18%\""}",229215,1,"""North America""" +2023-05-01,54804,6782,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1157.11,{},52414,0,"""Europe""" +2023-04-20,54805,6068,"[\""Headphones\""]",4729.65,"{\""promo\"": \""19%\""}",166884,0,"""South America""" +2023-12-03,54806,3270,"[\""Laptop\"", \""Wireless Mouse\""]",4933.74,{},11711,0,"""Europe""" +2023-12-22,54807,7456,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3990.75,"{\"": \""25%\""}",79532,0,"""North America""" +2023-12-31,54808,7121,"[\""Tablet\"", \""Monitor\""]",1874.85,{},4808,1,"""Africa""" +2023-01-08,54809,1330,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3854.44,"{\""loyalty\"": \""14%\""}",163392,0,"""South America""" +2024-05-22,54810,9293,"[\""Headphones\""]",4175.96,{},105403,1,"""Asia""" +2023-04-13,54811,2986,"[\""Wireless Mouse\"", \""Laptop\""]",622.55,{},278662,0,"""Europe""" +2024-01-10,54812,8902,"[\""Keyboard\""]",1104.51,{},269582,1,"""Europe""" +2023-12-27,54813,8670,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2741.52,"{\"": \""26%\""}",73810,1,"""South America""" +2024-12-10,54814,2522,"[\""Monitor\""]",725.67,"{\""loyalty\"": \""19%\""}",264895,0,"""South America""" +2024-01-24,54815,8336,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3872.11,{},219965,0,"""Europe""" +2023-09-15,54816,5563,"[\""Headphones\"", \""Monitor\""]",2512.3,{},36495,0,"""Africa""" +2023-12-28,54817,1792,"[\""Tablet\""]",3227.55,{},223759,1,"""Africa""" +2023-02-14,54818,1071,"[\""Monitor\""]",1372.8,{},174084,0,"""North America""" +2023-10-10,54819,194,"[\""Keyboard\""]",3973.78,{},41273,1,"""South America""" +2024-01-01,54820,3835,"[\""Headphones\""]",3987.02,{},12014,1,"""North America""" +2024-06-18,54821,902,"[\""Headphones\"", \""Keyboard\""]",3444.34,"{\""seasonal\"": \""19%\""}",52469,1,"""Europe""" +2023-06-06,54822,556,"[\""Tablet\"", \""Keyboard\""]",2083.11,"{\""promo\"": \""29%\""}",77369,1,"""Asia""" +2024-02-04,54823,5962,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4493.29,{},139124,1,"""South America""" +2023-12-17,54824,7028,"[\""Keyboard\""]",1703.02,{},118900,1,"""South America""" +2023-07-10,54825,5365,"[\""Wireless Mouse\""]",2800.18,"{\"": \""30%\""}",204076,0,"""South America""" +2023-09-13,54826,5720,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3335.84,"{\""seasonal\"": \""14%\""}",80940,0,"""Africa""" +2024-06-02,54827,9395,"[\""Headphones\""]",1078.94,{},172138,1,"""South America""" +2024-10-21,54828,9667,"[\""Headphones\""]",764.38,{},169071,1,"""North America""" +2023-10-14,54829,7550,"[\""Headphones\"", \""Phone\""]",3392.96,{},95048,1,"""South America""" +2023-01-16,54830,3507,"[\""Monitor\"", \""Tablet\""]",2576.12,{},186992,1,"""Africa""" +2024-10-01,54831,3662,"[\""Charger\""]",1836.17,{},178192,0,"""Africa""" +2023-04-29,54832,2812,"[\""Keyboard\"", \""Tablet\""]",2909.34,"{\"": \""13%\""}",62162,0,"""Asia""" +2024-04-07,54833,5428,"[\""Tablet\"", \""Laptop\""]",1348.47,"{\""seasonal\"": \""23%\""}",217123,1,"""Africa""" +2023-10-22,54834,1974,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3518.9,"{\""loyalty\"": \""29%\""}",85771,1,"""Africa""" +2024-04-11,54835,9686,"[\""Phone\"", \""Headphones\""]",2993.91,"{\""seasonal\"": \""12%\""}",12033,0,"""Asia""" +2024-04-02,54836,5069,"[\""Charger\"", \""Monitor\""]",3253.48,"{\""loyalty\"": \""17%\""}",278631,1,"""South America""" +2024-10-20,54837,3690,"[\""Phone\""]",277.84,{},244619,0,"""Europe""" +2023-04-10,54838,1614,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4565.31,"{\""promo\"": \""10%\""}",42972,0,"""North America""" +2024-04-20,54839,8609,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",545.76,"{\"": \""6%\""}",9083,0,"""North America""" +2023-10-29,54840,5237,"[\""Laptop\"", \""Tablet\""]",3994.2,{},150669,0,"""Africa""" +2024-09-26,54841,4202,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",301.69,"{\""loyalty\"": \""21%\""}",130092,0,"""Europe""" +2023-12-02,54842,9660,"[\""Wireless Mouse\"", \""Headphones\""]",986.11,"{\""promo\"": \""6%\""}",243763,0,"""North America""" +2024-08-01,54843,8175,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2047.8,"{\""promo\"": \""30%\""}",200240,0,"""Africa""" +2024-08-21,54844,2475,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3512.64,{},122862,1,"""Africa""" +2023-04-01,54845,8227,"[\""Laptop\""]",4696.07,"{\""promo\"": \""29%\""}",214461,0,"""North America""" +2024-09-17,54846,3808,"[\""Charger\""]",2697.83,{},13144,0,"""Asia""" +2023-05-18,54847,5616,"[\""Wireless Mouse\""]",82.14,{},79076,0,"""Europe""" +2024-08-02,54848,2630,"[\""Keyboard\""]",713.78,"{\"": \""24%\""}",52381,1,"""South America""" +2023-05-13,54849,5589,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",429.49,"{\""promo\"": \""21%\""}",72588,0,"""South America""" +2024-04-27,54850,6514,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1323.29,"{\"": \""13%\""}",109710,1,"""South America""" +2023-11-25,54851,4706,"[\""Phone\"", \""Monitor\"", \""Charger\""]",218.76,"{\""seasonal\"": \""17%\""}",173087,0,"""South America""" +2023-06-03,54852,2341,"[\""Headphones\"", \""Charger\""]",1948.56,"{\""promo\"": \""23%\""}",106522,1,"""Asia""" +2023-03-07,54853,3935,"[\""Headphones\"", \""Keyboard\""]",4760.0,{},8751,0,"""North America""" +2023-09-09,54854,7420,"[\""Charger\"", \""Tablet\""]",1175.62,"{\""seasonal\"": \""9%\""}",2984,0,"""Europe""" +2024-04-23,54855,1066,"[\""Charger\""]",257.83,{},181103,1,"""South America""" +2023-01-02,54856,1416,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2107.95,{},213895,0,"""Asia""" +2023-05-05,54857,1620,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2183.69,{},233687,0,"""Africa""" +2024-07-01,54858,1871,"[\""Monitor\""]",335.99,"{\""seasonal\"": \""19%\""}",90182,0,"""Europe""" +2024-02-04,54859,8740,"[\""Tablet\""]",4214.72,{},254053,1,"""Africa""" +2024-07-28,54860,9767,"[\""Laptop\"", \""Headphones\""]",2794.56,{},273492,0,"""Africa""" +2024-06-22,54861,7567,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4385.79,{},122160,1,"""Africa""" +2024-09-14,54862,3819,"[\""Monitor\"", \""Headphones\""]",561.96,"{\""promo\"": \""5%\""}",233706,0,"""Europe""" +2024-04-22,54863,7974,"[\""Charger\""]",2740.73,{},24580,1,"""North America""" +2023-11-21,54864,9121,"[\""Keyboard\""]",540.94,"{\"": \""12%\""}",25130,1,"""North America""" +2024-08-30,54865,9599,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3920.89,{},213690,0,"""Europe""" +2023-11-25,54866,3093,"[\""Laptop\""]",4400.82,{},114165,1,"""South America""" +2023-06-10,54867,6172,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3787.74,"{\""loyalty\"": \""27%\""}",112437,0,"""Africa""" +2023-07-03,54868,4202,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2000.28,{},228110,0,"""Africa""" +2023-06-05,54869,1015,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2640.5,"{\""seasonal\"": \""13%\""}",131092,0,"""South America""" +2023-11-07,54870,5601,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3267.63,"{\""seasonal\"": \""14%\""}",167053,0,"""Europe""" +2024-11-18,54871,365,"[\""Wireless Mouse\""]",1951.85,"{\""seasonal\"": \""17%\""}",290510,0,"""Africa""" +2023-10-27,54872,7992,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3186.31,{},294355,0,"""Asia""" +2023-04-17,54873,1985,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4210.26,{},101695,0,"""Africa""" +2023-06-01,54874,1691,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3629.99,"{\""seasonal\"": \""22%\""}",128860,1,"""North America""" +2024-02-08,54875,6915,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4294.83,"{\""seasonal\"": \""10%\""}",193971,0,"""South America""" +2024-03-02,54876,3571,"[\""Wireless Mouse\"", \""Tablet\""]",3516.57,{},182717,1,"""South America""" +2023-01-27,54877,1171,"[\""Wireless Mouse\"", \""Monitor\""]",2027.84,"{\""loyalty\"": \""26%\""}",251280,1,"""South America""" +2024-05-06,54878,4633,"[\""Keyboard\"", \""Wireless Mouse\""]",476.25,"{\""loyalty\"": \""22%\""}",298481,1,"""North America""" +2024-07-13,54879,4901,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4974.59,{},167795,0,"""North America""" +2023-06-17,54880,3943,"[\""Keyboard\""]",628.39,"{\""loyalty\"": \""28%\""}",1237,0,"""South America""" +2024-10-12,54881,3759,"[\""Monitor\""]",2615.73,{},7124,1,"""Africa""" +2023-12-08,54882,335,"[\""Wireless Mouse\""]",1046.53,"{\""seasonal\"": \""27%\""}",122135,1,"""Asia""" +2023-07-01,54883,3003,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",312.83,"{\""promo\"": \""5%\""}",181016,0,"""Asia""" +2023-08-20,54884,3431,"[\""Monitor\""]",691.61,"{\""seasonal\"": \""21%\""}",109890,0,"""South America""" +2023-05-26,54885,2378,"[\""Tablet\""]",4731.84,{},25449,1,"""North America""" +2023-11-03,54886,5990,"[\""Tablet\""]",1787.04,"{\""seasonal\"": \""18%\""}",50510,1,"""Europe""" +2024-05-02,54887,9713,"[\""Tablet\"", \""Keyboard\""]",1425.09,{},250545,0,"""Europe""" +2024-06-02,54888,2103,"[\""Headphones\""]",2752.63,{},61418,1,"""Africa""" +2023-09-15,54889,7366,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4342.46,"{\"": \""10%\""}",1216,1,"""North America""" +2024-06-21,54890,562,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3158.87,"{\""promo\"": \""7%\""}",183989,0,"""Asia""" +2023-05-01,54891,3415,"[\""Headphones\""]",3568.77,"{\""seasonal\"": \""28%\""}",87627,1,"""South America""" +2023-10-17,54892,6813,"[\""Charger\""]",3697.06,"{\""promo\"": \""10%\""}",256952,1,"""Europe""" +2024-02-18,54893,5226,"[\""Charger\""]",1385.32,{},244644,0,"""Asia""" +2023-08-07,54894,1312,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",852.75,"{\"": \""28%\""}",285186,0,"""Africa""" +2024-10-11,54895,1349,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4681.87,{},106797,0,"""Europe""" +2024-02-22,54896,8762,"[\""Monitor\""]",1523.69,"{\"": \""13%\""}",76664,1,"""Europe""" +2023-01-08,54897,7030,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",817.8,{},134106,1,"""Asia""" +2024-08-09,54898,8503,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4908.72,{},181667,1,"""North America""" +2023-10-07,54899,6378,"[\""Monitor\""]",145.23,{},217267,1,"""Asia""" +2024-04-04,54900,8290,"[\""Tablet\"", \""Keyboard\""]",315.6,"{\""loyalty\"": \""7%\""}",25686,1,"""Asia""" +2023-05-29,54901,5980,"[\""Keyboard\"", \""Charger\""]",4590.79,"{\""promo\"": \""14%\""}",146052,0,"""Asia""" +2024-03-31,54902,5455,"[\""Phone\"", \""Headphones\"", \""Charger\""]",821.9,"{\""promo\"": \""20%\""}",45280,1,"""Asia""" +2024-04-03,54903,977,"[\""Keyboard\"", \""Laptop\""]",184.18,{},77499,1,"""South America""" +2023-03-18,54904,45,"[\""Laptop\"", \""Headphones\""]",2973.1,"{\""seasonal\"": \""23%\""}",216327,0,"""Europe""" +2023-05-02,54905,8897,"[\""Laptop\""]",4544.31,{},143997,0,"""North America""" +2024-07-02,54906,8820,"[\""Charger\"", \""Headphones\""]",3721.48,{},124646,0,"""Asia""" +2024-09-01,54907,1979,"[\""Wireless Mouse\""]",3585.93,"{\""seasonal\"": \""10%\""}",137815,0,"""Asia""" +2024-05-03,54908,3917,"[\""Tablet\""]",3028.12,"{\""seasonal\"": \""9%\""}",156380,0,"""Europe""" +2024-07-28,54909,5471,"[\""Headphones\""]",2436.57,"{\""seasonal\"": \""21%\""}",78947,0,"""Asia""" +2024-06-27,54910,9587,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3377.61,{},7325,1,"""Asia""" +2024-03-08,54911,6307,"[\""Headphones\"", \""Tablet\""]",388.15,{},170551,1,"""Asia""" +2023-03-27,54912,8861,"[\""Charger\""]",153.76,{},148986,0,"""South America""" +2023-07-20,54913,2298,"[\""Monitor\"", \""Phone\""]",287.4,"{\"": \""12%\""}",263276,0,"""Africa""" +2023-02-17,54914,4977,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1416.11,"{\"": \""18%\""}",6393,0,"""Asia""" +2024-04-26,54915,6677,"[\""Laptop\""]",961.28,"{\""promo\"": \""16%\""}",94619,0,"""Africa""" +2024-03-15,54916,9355,"[\""Laptop\"", \""Phone\""]",631.49,"{\""loyalty\"": \""25%\""}",177168,0,"""Europe""" +2024-06-04,54917,2970,"[\""Tablet\""]",4167.64,{},29893,0,"""South America""" +2023-06-18,54918,4447,"[\""Tablet\"", \""Laptop\""]",407.45,"{\""seasonal\"": \""7%\""}",71957,0,"""North America""" +2024-03-10,54919,9538,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4638.69,{},219181,1,"""North America""" +2023-08-02,54920,7540,"[\""Phone\"", \""Charger\""]",3455.15,"{\""loyalty\"": \""26%\""}",111875,1,"""South America""" +2023-03-29,54921,6869,"[\""Phone\"", \""Keyboard\""]",4928.9,"{\""seasonal\"": \""20%\""}",242533,0,"""Europe""" +2023-08-21,54922,7465,"[\""Keyboard\"", \""Monitor\""]",4865.16,"{\""promo\"": \""19%\""}",52904,0,"""Europe""" +2023-04-02,54923,9837,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2109.43,"{\""loyalty\"": \""24%\""}",40457,0,"""North America""" +2023-02-06,54924,4388,"[\""Tablet\""]",4633.81,{},165649,0,"""Africa""" +2023-06-21,54925,3336,"[\""Charger\""]",836.32,"{\"": \""8%\""}",205143,1,"""Europe""" +2024-05-24,54926,7090,"[\""Tablet\"", \""Charger\""]",1658.09,"{\""loyalty\"": \""6%\""}",22952,0,"""Asia""" +2024-03-05,54927,5966,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4388.29,"{\"": \""29%\""}",228480,0,"""Europe""" +2023-03-05,54928,6832,"[\""Laptop\""]",2689.9,"{\""seasonal\"": \""9%\""}",133634,0,"""Europe""" +2023-03-07,54929,3476,"[\""Monitor\""]",688.91,"{\"": \""12%\""}",81596,0,"""North America""" +2024-07-31,54930,4667,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1073.45,"{\""seasonal\"": \""6%\""}",4807,0,"""Asia""" +2023-03-09,54931,6976,"[\""Phone\""]",1306.42,{},8095,0,"""Africa""" +2024-12-20,54932,8407,"[\""Monitor\"", \""Laptop\""]",3369.39,{},80784,1,"""Asia""" +2023-01-12,54933,9237,"[\""Wireless Mouse\"", \""Tablet\""]",2718.13,"{\""promo\"": \""14%\""}",108775,0,"""North America""" +2024-04-02,54934,1025,"[\""Keyboard\"", \""Headphones\""]",1281.94,{},259102,0,"""Europe""" +2023-09-29,54935,2172,"[\""Headphones\""]",1596.44,"{\""seasonal\"": \""7%\""}",131224,1,"""Africa""" +2024-02-06,54936,342,"[\""Phone\"", \""Headphones\""]",2741.81,{},271163,1,"""South America""" +2023-10-11,54937,5082,"[\""Laptop\"", \""Phone\""]",3748.1,"{\""seasonal\"": \""19%\""}",54219,1,"""North America""" +2023-01-30,54938,9413,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3181.54,"{\"": \""18%\""}",271269,0,"""South America""" +2024-09-19,54939,3667,"[\""Keyboard\"", \""Phone\""]",2529.2,"{\""loyalty\"": \""5%\""}",50324,0,"""Africa""" +2024-05-08,54940,7830,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1612.61,{},193927,0,"""Africa""" +2023-07-12,54941,8349,"[\""Keyboard\"", \""Laptop\""]",791.92,"{\""loyalty\"": \""22%\""}",165215,1,"""North America""" +2024-02-19,54942,1119,"[\""Laptop\"", \""Keyboard\""]",1563.78,{},234539,1,"""Europe""" +2023-04-24,54943,3094,"[\""Keyboard\""]",3534.82,{},238537,0,"""South America""" +2023-03-16,54944,1569,"[\""Charger\"", \""Wireless Mouse\""]",2344.29,"{\""seasonal\"": \""30%\""}",294160,1,"""North America""" +2024-05-13,54945,1016,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1100.13,"{\""promo\"": \""29%\""}",103723,0,"""South America""" +2024-12-29,54946,5759,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4731.81,"{\""promo\"": \""21%\""}",150677,0,"""South America""" +2023-06-25,54947,6286,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3406.73,"{\""seasonal\"": \""22%\""}",214167,0,"""North America""" +2023-10-09,54948,3347,"[\""Laptop\""]",4500.35,{},197545,1,"""Asia""" +2023-01-11,54949,5781,"[\""Phone\"", \""Tablet\""]",4359.15,"{\"": \""5%\""}",257199,0,"""Africa""" +2023-11-07,54950,2961,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3397.52,"{\""seasonal\"": \""26%\""}",97136,1,"""North America""" +2024-03-05,54951,6840,"[\""Tablet\""]",2906.05,{},54004,0,"""Asia""" +2024-12-24,54952,6424,"[\""Charger\"", \""Monitor\""]",1005.9,{},206732,1,"""Asia""" +2023-11-13,54953,8474,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3652.64,{},80691,0,"""Asia""" +2023-06-17,54954,5141,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2049.88,{},131131,1,"""South America""" +2023-08-04,54955,9890,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1007.57,{},121784,0,"""North America""" +2024-12-31,54956,5780,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4225.71,{},167928,1,"""South America""" +2024-05-11,54957,4105,"[\""Keyboard\""]",1021.27,"{\""loyalty\"": \""7%\""}",67751,1,"""Asia""" +2024-05-11,54958,2589,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4872.49,{},104527,1,"""Asia""" +2023-07-19,54959,3590,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3057.95,"{\""seasonal\"": \""15%\""}",294226,1,"""Europe""" +2023-03-24,54960,6019,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1732.28,"{\""seasonal\"": \""18%\""}",216332,0,"""Europe""" +2023-04-21,54961,7191,"[\""Keyboard\"", \""Charger\""]",4393.25,{},61604,1,"""Asia""" +2023-09-28,54962,5080,"[\""Charger\""]",546.93,{},119793,0,"""South America""" +2023-11-27,54963,215,"[\""Phone\""]",3110.8,{},271820,1,"""South America""" +2024-12-12,54964,9326,"[\""Phone\"", \""Tablet\""]",1006.65,"{\"": \""30%\""}",151530,0,"""Africa""" +2023-10-06,54965,2989,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1939.75,"{\""seasonal\"": \""6%\""}",59988,0,"""North America""" +2023-06-24,54966,7593,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4820.56,"{\""seasonal\"": \""16%\""}",148851,0,"""South America""" +2024-02-09,54967,4331,"[\""Tablet\"", \""Headphones\""]",423.55,"{\""seasonal\"": \""18%\""}",288000,0,"""South America""" +2023-09-10,54968,2287,"[\""Wireless Mouse\"", \""Monitor\""]",458.06,"{\"": \""8%\""}",135604,0,"""Europe""" +2023-03-29,54969,4407,"[\""Headphones\"", \""Phone\""]",4502.17,"{\"": \""14%\""}",167215,1,"""North America""" +2023-03-23,54970,7418,"[\""Charger\""]",1861.89,"{\""loyalty\"": \""23%\""}",119537,1,"""South America""" +2023-03-23,54971,4171,"[\""Tablet\""]",1416.85,{},237183,1,"""Asia""" +2024-05-27,54972,8891,"[\""Monitor\"", \""Phone\""]",1966.65,{},200722,0,"""South America""" +2023-06-01,54973,6859,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2454.37,"{\""seasonal\"": \""17%\""}",37047,1,"""Europe""" +2023-06-19,54974,7556,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3440.39,{},27186,1,"""South America""" +2023-07-12,54975,8015,"[\""Monitor\""]",2168.98,{},123915,0,"""North America""" +2023-07-13,54976,759,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2931.85,{},221559,1,"""South America""" +2024-04-16,54977,8709,"[\""Tablet\""]",4194.43,{},167559,0,"""Europe""" +2024-07-04,54978,3474,"[\""Keyboard\"", \""Laptop\""]",3389.04,"{\""loyalty\"": \""17%\""}",115798,1,"""Africa""" +2024-08-22,54979,5550,"[\""Tablet\"", \""Headphones\""]",1315.33,{},276925,1,"""Asia""" +2024-05-22,54980,2489,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2150.41,{},228382,1,"""Africa""" +2024-08-14,54981,9209,"[\""Laptop\""]",4240.58,{},136764,0,"""North America""" +2023-03-04,54982,9479,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4697.59,"{\""seasonal\"": \""16%\""}",116452,0,"""North America""" +2024-06-17,54983,1269,"[\""Wireless Mouse\""]",223.53,{},267866,1,"""South America""" +2023-04-15,54984,4969,"[\""Monitor\""]",2386.6,"{\""promo\"": \""29%\""}",166299,0,"""North America""" +2023-09-22,54985,9564,"[\""Monitor\"", \""Laptop\""]",4300.69,{},144233,0,"""Europe""" +2023-02-15,54986,2024,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3938.07,"{\"": \""29%\""}",189786,0,"""South America""" +2024-05-18,54987,930,"[\""Keyboard\"", \""Headphones\""]",4879.04,{},61821,1,"""Africa""" +2023-02-10,54988,5383,"[\""Keyboard\""]",1109.53,{},238026,1,"""North America""" +2024-10-01,54989,3055,"[\""Wireless Mouse\"", \""Tablet\""]",2375.51,{},279345,1,"""Asia""" +2024-06-30,54990,9499,"[\""Headphones\""]",4618.55,{},285887,0,"""South America""" +2023-07-03,54991,457,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1341.62,"{\""loyalty\"": \""29%\""}",9503,1,"""Europe""" +2024-07-17,54992,4760,"[\""Tablet\"", \""Phone\""]",3158.99,{},268479,1,"""Europe""" +2024-08-20,54993,4161,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",443.72,{},287883,1,"""Europe""" +2024-12-19,54994,3459,"[\""Tablet\""]",4958.52,{},244168,1,"""Europe""" +2023-01-02,54995,1402,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1882.68,{},180420,1,"""Africa""" +2023-10-29,54996,3582,"[\""Charger\""]",3400.0,"{\"": \""15%\""}",233698,0,"""South America""" +2023-04-10,54997,8604,"[\""Monitor\""]",1198.78,{},257714,1,"""Europe""" +2023-03-08,54998,7434,"[\""Charger\"", \""Phone\""]",1168.07,{},80030,1,"""Europe""" +2023-01-04,54999,8729,"[\""Tablet\"", \""Headphones\""]",3802.94,"{\""promo\"": \""16%\""}",85007,0,"""Europe""" +2023-09-27,55000,7357,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2469.01,"{\"": \""5%\""}",77094,1,"""Asia""" +2023-12-12,55001,7225,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4960.34,{},59277,1,"""Europe""" +2024-09-18,55002,123,"[\""Tablet\""]",200.1,{},144223,1,"""South America""" +2024-04-26,55003,7250,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1855.39,{},222144,0,"""South America""" +2024-03-18,55004,9160,"[\""Headphones\""]",2100.72,"{\""seasonal\"": \""10%\""}",244725,0,"""South America""" +2023-03-31,55005,8990,"[\""Tablet\"", \""Wireless Mouse\""]",2767.97,{},120438,0,"""Asia""" +2023-08-10,55006,697,"[\""Charger\""]",2069.5,{},194156,1,"""Asia""" +2024-07-14,55007,5717,"[\""Monitor\"", \""Charger\""]",905.84,{},128045,0,"""Europe""" +2024-09-05,55008,8220,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2446.5,"{\""loyalty\"": \""22%\""}",1697,1,"""Europe""" +2024-09-25,55009,8101,"[\""Tablet\"", \""Charger\""]",281.39,"{\"": \""10%\""}",185246,1,"""North America""" +2023-04-10,55010,5764,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4094.54,{},134439,1,"""South America""" +2024-01-03,55011,5352,"[\""Laptop\""]",3207.83,"{\""promo\"": \""7%\""}",255997,1,"""Africa""" +2023-07-26,55012,7959,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2887.68,"{\""seasonal\"": \""29%\""}",167613,1,"""South America""" +2023-11-30,55013,316,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",747.54,"{\""loyalty\"": \""11%\""}",20241,1,"""Africa""" +2023-04-27,55014,136,"[\""Headphones\"", \""Tablet\""]",4207.04,{},43514,1,"""South America""" +2023-09-01,55015,9663,"[\""Monitor\""]",3890.76,{},214556,1,"""North America""" +2024-11-17,55016,9925,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",993.59,{},58687,1,"""North America""" +2024-07-02,55017,3070,"[\""Charger\""]",114.91,"{\""loyalty\"": \""9%\""}",150588,1,"""South America""" +2024-04-15,55018,3567,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",265.98,{},44282,0,"""Africa""" +2023-04-27,55019,4256,"[\""Wireless Mouse\"", \""Laptop\""]",2785.31,{},36491,1,"""Asia""" +2024-05-28,55020,1857,"[\""Monitor\"", \""Tablet\""]",2377.5,{},225297,1,"""Asia""" +2024-07-31,55021,5139,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1044.73,"{\""loyalty\"": \""5%\""}",109811,0,"""Asia""" +2024-04-14,55022,1314,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3482.55,{},80318,0,"""Asia""" +2024-10-18,55023,6715,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",516.19,{},35872,1,"""Africa""" +2024-05-03,55024,3311,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1686.52,{},195222,1,"""Africa""" +2023-05-06,55025,7973,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4223.95,{},26718,1,"""Europe""" +2024-03-02,55026,2002,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3487.86,"{\""promo\"": \""11%\""}",114536,1,"""North America""" +2024-08-14,55027,1055,"[\""Charger\"", \""Headphones\""]",3625.3,"{\""loyalty\"": \""11%\""}",257419,1,"""North America""" +2023-03-04,55028,278,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4629.68,"{\""promo\"": \""5%\""}",40257,0,"""Europe""" +2024-10-16,55029,5568,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1040.2,{},208365,0,"""North America""" +2024-11-17,55030,9595,"[\""Headphones\"", \""Monitor\""]",4088.46,"{\""seasonal\"": \""19%\""}",137714,1,"""North America""" +2023-04-30,55031,9771,"[\""Monitor\""]",3762.83,"{\"": \""7%\""}",150154,1,"""Asia""" +2024-03-05,55032,6023,"[\""Keyboard\""]",2598.61,"{\"": \""24%\""}",229476,0,"""North America""" +2023-08-06,55033,1245,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3701.31,"{\""promo\"": \""25%\""}",117605,0,"""Asia""" +2024-05-24,55034,2646,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3282.51,"{\""loyalty\"": \""25%\""}",29262,0,"""South America""" +2023-07-02,55035,568,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1882.38,"{\""promo\"": \""19%\""}",144667,1,"""Europe""" +2023-08-08,55036,1100,"[\""Phone\"", \""Keyboard\""]",2545.15,{},47363,0,"""Africa""" +2023-02-25,55037,7432,"[\""Headphones\""]",3202.82,{},245733,1,"""Asia""" +2024-04-10,55038,9913,"[\""Tablet\"", \""Keyboard\""]",942.49,{},49256,0,"""South America""" +2024-03-06,55039,2027,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1184.36,{},280125,1,"""South America""" +2023-08-27,55040,6504,"[\""Wireless Mouse\"", \""Tablet\""]",2658.79,"{\""promo\"": \""29%\""}",37274,1,"""Africa""" +2023-01-23,55041,3043,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2619.73,{},152560,0,"""North America""" +2024-04-27,55042,6742,"[\""Keyboard\""]",3977.94,"{\""loyalty\"": \""22%\""}",265231,1,"""Asia""" +2023-03-03,55043,73,"[\""Wireless Mouse\"", \""Charger\""]",4377.85,{},206621,0,"""Africa""" +2023-03-12,55044,422,"[\""Monitor\""]",215.45,{},104022,1,"""Europe""" +2024-07-23,55045,6306,"[\""Keyboard\"", \""Wireless Mouse\""]",4304.96,"{\""seasonal\"": \""20%\""}",272334,0,"""South America""" +2023-12-26,55046,6151,"[\""Headphones\"", \""Keyboard\""]",1221.03,{},251169,1,"""Europe""" +2023-12-04,55047,3519,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1604.82,"{\""promo\"": \""17%\""}",4044,0,"""Europe""" +2024-10-09,55048,8626,"[\""Laptop\""]",2223.01,{},36277,0,"""Europe""" +2024-02-29,55049,3799,"[\""Charger\""]",1444.12,"{\""seasonal\"": \""6%\""}",218941,1,"""Asia""" +2024-07-21,55050,9063,"[\""Wireless Mouse\""]",2194.91,"{\"": \""10%\""}",76086,0,"""Europe""" +2023-10-29,55051,1287,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1377.21,{},210598,0,"""South America""" +2024-08-09,55052,4783,"[\""Wireless Mouse\""]",1819.01,"{\""promo\"": \""17%\""}",24096,0,"""Europe""" +2024-04-29,55053,6402,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3488.94,{},181549,1,"""South America""" +2023-09-02,55054,235,"[\""Tablet\"", \""Phone\""]",4912.87,"{\""seasonal\"": \""18%\""}",163152,1,"""South America""" +2024-06-05,55055,6472,"[\""Wireless Mouse\"", \""Phone\""]",2405.93,{},14107,0,"""Europe""" +2023-03-22,55056,6834,"[\""Headphones\"", \""Charger\""]",2453.66,"{\"": \""27%\""}",60464,1,"""Europe""" +2024-01-14,55057,7370,"[\""Laptop\"", \""Monitor\""]",4492.85,"{\""seasonal\"": \""13%\""}",299155,0,"""Asia""" +2023-04-10,55058,3696,"[\""Headphones\"", \""Laptop\""]",4780.05,{},263559,0,"""North America""" +2023-01-28,55059,161,"[\""Headphones\""]",2236.23,{},273932,0,"""Europe""" +2024-07-26,55060,5803,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4019.87,{},165662,0,"""Africa""" +2023-05-03,55061,3011,"[\""Headphones\"", \""Tablet\""]",1218.66,"{\""promo\"": \""5%\""}",11946,0,"""Europe""" +2024-02-24,55062,4881,"[\""Wireless Mouse\"", \""Monitor\""]",4122.4,"{\""seasonal\"": \""25%\""}",131316,0,"""North America""" +2024-12-26,55063,6295,"[\""Wireless Mouse\"", \""Laptop\""]",2216.73,{},49437,1,"""Asia""" +2023-05-21,55064,9113,"[\""Laptop\"", \""Monitor\""]",3759.82,"{\""loyalty\"": \""14%\""}",8994,1,"""Africa""" +2023-03-30,55065,4084,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2313.52,"{\""promo\"": \""22%\""}",94964,1,"""North America""" +2023-03-29,55066,369,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4600.23,"{\""promo\"": \""13%\""}",204469,0,"""Europe""" +2024-07-10,55067,4628,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",865.86,"{\""seasonal\"": \""9%\""}",220608,0,"""Europe""" +2023-12-24,55068,9511,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3957.88,"{\""loyalty\"": \""23%\""}",253741,0,"""South America""" +2023-11-24,55069,5257,"[\""Wireless Mouse\""]",3470.01,"{\"": \""15%\""}",295699,0,"""Europe""" +2024-09-03,55070,3355,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1409.78,{},197722,0,"""North America""" +2024-08-14,55071,9134,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",964.66,{},190704,1,"""North America""" +2024-12-15,55072,3291,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1016.72,{},89412,0,"""North America""" +2023-01-29,55073,5177,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",724.36,{},139179,0,"""Africa""" +2024-02-09,55074,8159,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3708.55,{},137292,1,"""South America""" +2024-01-05,55075,3493,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",614.71,"{\""loyalty\"": \""20%\""}",247711,0,"""North America""" +2023-12-26,55076,5148,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1622.14,"{\"": \""10%\""}",81735,0,"""Europe""" +2023-11-21,55077,6368,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4681.59,{},82096,1,"""Africa""" +2024-10-26,55078,3598,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3350.7,"{\""seasonal\"": \""11%\""}",36851,1,"""Europe""" +2024-05-27,55079,5868,"[\""Charger\"", \""Phone\""]",4272.32,{},245430,1,"""North America""" +2023-10-13,55080,4370,"[\""Headphones\""]",3885.33,{},126541,0,"""South America""" +2023-08-10,55081,7477,"[\""Wireless Mouse\""]",1510.14,{},233868,1,"""North America""" +2023-03-24,55082,3146,"[\""Headphones\""]",2601.35,{},26953,0,"""Asia""" +2023-10-08,55083,7407,"[\""Keyboard\""]",2836.32,"{\""promo\"": \""29%\""}",255826,0,"""South America""" +2024-01-24,55084,4495,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2208.18,"{\""seasonal\"": \""5%\""}",146845,1,"""Asia""" +2023-05-20,55085,952,"[\""Charger\"", \""Tablet\"", \""Phone\""]",858.51,"{\""seasonal\"": \""7%\""}",267979,0,"""Africa""" +2023-09-23,55086,5305,"[\""Laptop\"", \""Headphones\""]",3993.46,{},64794,0,"""Africa""" +2024-01-14,55087,9202,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4919.25,"{\""seasonal\"": \""10%\""}",84061,0,"""South America""" +2024-05-27,55088,4450,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",766.34,{},85180,0,"""Asia""" +2024-02-26,55089,8643,"[\""Wireless Mouse\"", \""Headphones\""]",1984.18,"{\""loyalty\"": \""6%\""}",92931,1,"""North America""" +2024-09-07,55090,8509,"[\""Keyboard\"", \""Monitor\""]",1153.02,{},75298,1,"""Europe""" +2023-10-25,55091,336,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3222.54,"{\""loyalty\"": \""22%\""}",96322,0,"""North America""" +2024-11-07,55092,2888,"[\""Headphones\""]",2359.56,"{\""promo\"": \""23%\""}",60456,0,"""North America""" +2024-12-31,55093,538,"[\""Tablet\"", \""Monitor\""]",4164.85,"{\""loyalty\"": \""26%\""}",53427,0,"""North America""" +2023-06-15,55094,9243,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4726.17,"{\""seasonal\"": \""9%\""}",278139,1,"""Europe""" +2024-10-21,55095,7037,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2254.44,"{\"": \""10%\""}",84910,0,"""Europe""" +2024-07-08,55096,3931,"[\""Tablet\""]",603.6,"{\"": \""27%\""}",1972,1,"""South America""" +2024-02-14,55097,3807,"[\""Keyboard\""]",4208.35,"{\""seasonal\"": \""7%\""}",283880,0,"""South America""" +2023-11-16,55098,7686,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1647.37,{},182238,0,"""Africa""" +2024-08-19,55099,1509,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4999.74,"{\"": \""16%\""}",217388,1,"""Europe""" +2024-07-29,55100,2373,"[\""Charger\""]",3365.1,"{\""seasonal\"": \""13%\""}",74389,1,"""Europe""" +2023-08-02,55101,2200,"[\""Charger\"", \""Monitor\""]",4741.58,"{\""loyalty\"": \""20%\""}",136237,1,"""Africa""" +2024-01-31,55102,7213,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4594.61,"{\"": \""14%\""}",149837,1,"""North America""" +2024-08-18,55103,8591,"[\""Keyboard\"", \""Monitor\""]",4231.46,{},85569,1,"""North America""" +2024-09-04,55104,8066,"[\""Tablet\"", \""Laptop\""]",3547.98,"{\""seasonal\"": \""15%\""}",46334,0,"""Asia""" +2024-12-07,55105,4127,"[\""Headphones\""]",1528.26,"{\""seasonal\"": \""7%\""}",8588,0,"""Africa""" +2023-09-17,55106,6529,"[\""Headphones\""]",3104.06,"{\"": \""17%\""}",239651,0,"""Asia""" +2024-11-30,55107,8517,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2523.54,"{\""loyalty\"": \""17%\""}",194936,1,"""North America""" +2023-10-18,55108,7066,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1476.31,{},68247,0,"""Africa""" +2024-04-18,55109,9077,"[\""Charger\""]",2194.03,"{\""seasonal\"": \""19%\""}",208664,1,"""Asia""" +2024-09-27,55110,2006,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2945.37,{},129496,1,"""Asia""" +2023-04-23,55111,6238,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4500.06,{},277544,1,"""South America""" +2023-10-29,55112,5878,"[\""Tablet\"", \""Wireless Mouse\""]",1641.01,"{\""loyalty\"": \""5%\""}",240757,1,"""Asia""" +2024-06-16,55113,129,"[\""Monitor\""]",4502.51,"{\"": \""27%\""}",207562,0,"""Europe""" +2023-07-14,55114,1603,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4821.17,"{\"": \""20%\""}",151268,0,"""South America""" +2024-12-26,55115,8286,"[\""Monitor\""]",393.61,{},121619,0,"""North America""" +2023-10-14,55116,97,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4190.9,"{\"": \""10%\""}",79783,1,"""Asia""" +2023-01-09,55117,2512,"[\""Tablet\"", \""Charger\""]",605.82,"{\""promo\"": \""6%\""}",192702,1,"""Africa""" +2023-04-01,55118,5702,"[\""Wireless Mouse\"", \""Laptop\""]",336.6,{},283019,0,"""Asia""" +2023-04-22,55119,613,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2363.56,"{\""seasonal\"": \""23%\""}",52944,1,"""South America""" +2024-02-10,55120,7790,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4659.19,"{\""promo\"": \""18%\""}",140503,0,"""North America""" +2024-09-06,55121,4246,"[\""Phone\""]",1534.61,{},21531,1,"""Europe""" +2024-12-29,55122,7859,"[\""Wireless Mouse\""]",1895.37,"{\"": \""16%\""}",46640,0,"""Africa""" +2023-11-16,55123,5049,"[\""Keyboard\""]",4483.64,{},235319,1,"""North America""" +2024-05-18,55124,4638,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1541.99,{},252152,0,"""Europe""" +2023-03-15,55125,9517,"[\""Headphones\""]",1339.22,"{\"": \""28%\""}",258762,0,"""Africa""" +2024-04-15,55126,5072,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4814.58,{},84724,1,"""Africa""" +2023-12-27,55127,5176,"[\""Wireless Mouse\"", \""Monitor\""]",1076.98,"{\""promo\"": \""25%\""}",60396,0,"""Africa""" +2023-09-24,55128,6650,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",196.37,{},163044,0,"""Europe""" +2023-01-21,55129,4036,"[\""Keyboard\"", \""Tablet\""]",3063.44,"{\""promo\"": \""7%\""}",272197,0,"""Europe""" +2023-05-28,55130,318,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",454.88,{},88010,1,"""South America""" +2023-08-21,55131,6465,"[\""Headphones\"", \""Phone\""]",4514.57,{},45842,1,"""North America""" +2023-02-28,55132,2515,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",687.52,"{\""promo\"": \""11%\""}",93016,1,"""Europe""" +2023-10-30,55133,9834,"[\""Laptop\""]",1248.86,{},22042,1,"""Africa""" +2023-07-14,55134,5428,"[\""Phone\""]",4023.72,"{\"": \""16%\""}",240770,1,"""Africa""" +2024-11-04,55135,1932,"[\""Keyboard\"", \""Headphones\""]",3775.32,{},94401,1,"""Asia""" +2023-11-27,55136,365,"[\""Phone\"", \""Charger\"", \""Tablet\""]",836.62,"{\""promo\"": \""6%\""}",182791,0,"""North America""" +2024-02-28,55137,268,"[\""Charger\"", \""Laptop\""]",3398.73,"{\""promo\"": \""20%\""}",207455,1,"""Asia""" +2024-12-03,55138,6377,"[\""Keyboard\"", \""Tablet\""]",1920.64,{},138267,0,"""Europe""" +2023-01-31,55139,7999,"[\""Monitor\"", \""Keyboard\""]",3698.62,{},85323,1,"""Asia""" +2024-05-20,55140,477,"[\""Wireless Mouse\""]",1476.29,"{\""promo\"": \""24%\""}",98832,1,"""North America""" +2024-06-27,55141,8197,"[\""Phone\"", \""Monitor\""]",3540.26,{},222606,0,"""Africa""" +2024-03-23,55142,6611,"[\""Monitor\"", \""Laptop\""]",2524.22,{},65712,0,"""Asia""" +2024-08-31,55143,1964,"[\""Tablet\""]",3675.21,"{\""loyalty\"": \""28%\""}",37639,0,"""South America""" +2023-12-10,55144,232,"[\""Laptop\""]",4475.78,{},7018,1,"""Asia""" +2024-11-18,55145,9316,"[\""Charger\""]",3624.99,{},255364,1,"""Europe""" +2023-11-22,55146,8923,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",834.22,"{\""seasonal\"": \""13%\""}",32256,0,"""Europe""" +2023-08-16,55147,5147,"[\""Tablet\""]",4743.24,{},192067,0,"""Europe""" +2023-06-15,55148,3846,"[\""Charger\"", \""Monitor\""]",4744.22,{},282740,0,"""North America""" +2024-05-22,55149,8421,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",436.82,{},171762,0,"""Africa""" +2023-05-09,55150,288,"[\""Tablet\""]",3359.68,{},66222,0,"""Africa""" +2023-04-26,55151,7247,"[\""Charger\""]",913.15,{},293668,0,"""Africa""" +2023-06-10,55152,4892,"[\""Monitor\""]",3785.0,"{\""seasonal\"": \""17%\""}",188868,0,"""North America""" +2023-12-16,55153,4862,"[\""Monitor\""]",4185.76,"{\"": \""13%\""}",241674,0,"""Africa""" +2024-07-09,55154,5858,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1104.01,{},266678,1,"""Africa""" +2023-09-22,55155,9682,"[\""Phone\"", \""Wireless Mouse\""]",2364.81,"{\""loyalty\"": \""8%\""}",278320,0,"""Europe""" +2023-05-23,55156,7711,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4086.1,"{\""loyalty\"": \""13%\""}",22334,1,"""Africa""" +2024-03-23,55157,1229,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3149.42,{},123883,1,"""Asia""" +2024-04-25,55158,1679,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2204.68,"{\"": \""24%\""}",111832,0,"""Europe""" +2024-04-12,55159,9498,"[\""Headphones\"", \""Keyboard\""]",1974.32,"{\""seasonal\"": \""8%\""}",117896,0,"""Europe""" +2023-03-19,55160,5989,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2565.45,{},197720,1,"""Europe""" +2023-05-30,55161,8209,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2992.42,"{\"": \""27%\""}",117128,0,"""Africa""" +2023-04-22,55162,8669,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2546.55,{},163160,0,"""South America""" +2023-10-13,55163,7328,"[\""Laptop\"", \""Charger\""]",1305.46,"{\""loyalty\"": \""19%\""}",13733,1,"""Africa""" +2024-01-19,55164,8999,"[\""Laptop\""]",3834.68,"{\"": \""19%\""}",143165,0,"""North America""" +2023-11-24,55165,1390,"[\""Monitor\""]",4823.24,{},284301,0,"""South America""" +2023-01-26,55166,4953,"[\""Monitor\""]",721.39,{},213629,1,"""Africa""" +2024-11-30,55167,4993,"[\""Phone\"", \""Keyboard\""]",825.75,"{\"": \""5%\""}",71976,0,"""North America""" +2023-11-01,55168,7042,"[\""Tablet\"", \""Headphones\""]",887.53,"{\"": \""21%\""}",161430,0,"""Europe""" +2024-11-04,55169,5598,"[\""Charger\""]",2114.99,"{\""promo\"": \""5%\""}",48914,0,"""South America""" +2023-07-07,55170,7962,"[\""Keyboard\""]",2628.15,"{\""loyalty\"": \""27%\""}",266156,1,"""South America""" +2023-10-25,55171,9914,"[\""Tablet\""]",3727.39,"{\""loyalty\"": \""20%\""}",285811,0,"""Europe""" +2023-09-17,55172,5671,"[\""Laptop\"", \""Monitor\""]",3553.06,{},225625,0,"""Europe""" +2024-08-19,55173,3292,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",736.42,{},38437,1,"""Europe""" +2023-07-17,55174,6068,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1514.99,"{\""promo\"": \""12%\""}",260144,1,"""South America""" +2024-12-27,55175,7306,"[\""Headphones\"", \""Keyboard\""]",4990.81,"{\""loyalty\"": \""8%\""}",37885,1,"""Europe""" +2023-04-10,55176,6030,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2474.16,"{\"": \""16%\""}",148692,1,"""Asia""" +2023-11-04,55177,3585,"[\""Keyboard\"", \""Tablet\""]",2410.2,"{\""loyalty\"": \""16%\""}",106901,1,"""South America""" +2023-06-26,55178,1526,"[\""Tablet\""]",798.66,"{\""seasonal\"": \""11%\""}",14646,0,"""Europe""" +2023-01-22,55179,9872,"[\""Headphones\"", \""Phone\""]",2414.17,{},244027,1,"""Europe""" +2024-01-26,55180,1196,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",52.28,"{\""promo\"": \""15%\""}",142944,0,"""Europe""" +2023-04-09,55181,4796,"[\""Monitor\""]",1829.01,"{\""seasonal\"": \""21%\""}",56123,0,"""Africa""" +2023-01-28,55182,8611,"[\""Wireless Mouse\"", \""Charger\""]",389.53,{},210164,0,"""Asia""" +2023-11-15,55183,4922,"[\""Monitor\""]",3611.77,{},170726,0,"""South America""" +2023-08-15,55184,4990,"[\""Charger\"", \""Wireless Mouse\""]",3319.6,"{\"": \""7%\""}",132916,1,"""Asia""" +2024-12-10,55185,5641,"[\""Monitor\"", \""Tablet\""]",1162.0,"{\""promo\"": \""8%\""}",296263,0,"""North America""" +2023-04-15,55186,8007,"[\""Tablet\"", \""Headphones\""]",3305.08,{},231382,1,"""Europe""" +2023-06-24,55187,8270,"[\""Phone\"", \""Laptop\""]",1389.0,{},35330,1,"""Asia""" +2023-05-08,55188,587,"[\""Phone\""]",2294.06,"{\""promo\"": \""19%\""}",81785,1,"""South America""" +2023-11-01,55189,9196,"[\""Charger\"", \""Phone\""]",436.49,"{\""seasonal\"": \""25%\""}",97593,0,"""Asia""" +2024-04-21,55190,3500,"[\""Keyboard\"", \""Wireless Mouse\""]",2043.98,{},88892,0,"""Africa""" +2023-03-23,55191,6938,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",926.06,{},80878,0,"""South America""" +2024-08-23,55192,7028,"[\""Phone\"", \""Laptop\""]",2586.47,"{\""seasonal\"": \""24%\""}",146698,0,"""Africa""" +2023-09-01,55193,8923,"[\""Headphones\""]",4127.51,"{\""loyalty\"": \""19%\""}",277559,1,"""North America""" +2024-09-02,55194,2736,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2913.82,"{\""seasonal\"": \""9%\""}",13968,1,"""Africa""" +2023-11-11,55195,3284,"[\""Phone\"", \""Laptop\""]",1020.48,"{\""loyalty\"": \""11%\""}",296041,1,"""Europe""" +2024-10-12,55196,735,"[\""Keyboard\""]",354.67,"{\""seasonal\"": \""11%\""}",96497,1,"""Asia""" +2024-02-20,55197,1815,"[\""Tablet\"", \""Laptop\""]",4651.66,{},38404,1,"""South America""" +2023-05-10,55198,8629,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1829.33,{},226634,1,"""Europe""" +2024-06-21,55199,604,"[\""Wireless Mouse\"", \""Headphones\""]",4522.49,"{\""loyalty\"": \""11%\""}",192664,1,"""North America""" +2023-12-22,55200,1836,"[\""Phone\"", \""Charger\""]",3655.93,{},235971,0,"""South America""" +2024-07-25,55201,5020,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3313.23,{},11430,0,"""Africa""" +2024-07-27,55202,4290,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3051.95,"{\""promo\"": \""22%\""}",21574,1,"""North America""" +2024-12-14,55203,5628,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2461.44,{},128804,0,"""South America""" +2023-07-20,55204,7516,"[\""Laptop\"", \""Phone\""]",1045.17,"{\"": \""19%\""}",161225,0,"""Africa""" +2023-03-02,55205,25,"[\""Charger\""]",964.96,"{\""seasonal\"": \""16%\""}",51665,0,"""South America""" +2023-01-10,55206,9491,"[\""Wireless Mouse\""]",3335.34,{},126741,0,"""North America""" +2023-02-08,55207,9630,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",427.1,"{\""seasonal\"": \""15%\""}",95692,0,"""South America""" +2023-11-21,55208,2027,"[\""Tablet\"", \""Phone\""]",2127.55,{},37868,1,"""Asia""" +2024-11-24,55209,5353,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1944.41,"{\""promo\"": \""15%\""}",10699,0,"""North America""" +2023-09-27,55210,6400,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4054.1,{},203900,1,"""North America""" +2023-04-18,55211,584,"[\""Charger\""]",4011.83,{},269897,1,"""Europe""" +2024-10-29,55212,5876,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4350.04,"{\""promo\"": \""11%\""}",209104,1,"""North America""" +2024-10-28,55213,5332,"[\""Wireless Mouse\"", \""Monitor\""]",2443.28,{},27203,0,"""Africa""" +2024-08-29,55214,4130,"[\""Phone\"", \""Monitor\""]",1728.07,"{\"": \""5%\""}",214272,1,"""Africa""" +2023-05-18,55215,2460,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3451.64,{},236851,0,"""South America""" +2023-12-06,55216,4131,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3201.67,"{\""loyalty\"": \""24%\""}",107220,1,"""South America""" +2024-06-02,55217,2400,"[\""Charger\"", \""Monitor\""]",1742.08,{},199533,0,"""Europe""" +2024-07-21,55218,3532,"[\""Monitor\""]",2412.58,{},54931,1,"""Europe""" +2023-03-08,55219,8916,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",906.52,"{\""promo\"": \""11%\""}",273432,1,"""Europe""" +2024-09-18,55220,9463,"[\""Wireless Mouse\""]",2459.02,"{\""seasonal\"": \""9%\""}",34856,0,"""Asia""" +2023-08-12,55221,2279,"[\""Phone\""]",3444.51,"{\""promo\"": \""15%\""}",206526,1,"""Africa""" +2024-07-24,55222,329,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2977.64,"{\""promo\"": \""25%\""}",132145,0,"""South America""" +2023-02-09,55223,6775,"[\""Phone\""]",4130.73,{},6516,0,"""Africa""" +2023-03-09,55224,1495,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",369.21,{},5409,0,"""North America""" +2023-11-29,55225,9445,"[\""Tablet\"", \""Headphones\""]",3575.98,"{\""seasonal\"": \""20%\""}",295714,1,"""Europe""" +2023-11-29,55226,6772,"[\""Headphones\"", \""Monitor\""]",2485.22,{},16471,1,"""Africa""" +2023-08-18,55227,7296,"[\""Charger\"", \""Laptop\""]",2930.59,"{\"": \""23%\""}",152664,1,"""Europe""" +2023-05-30,55228,3378,"[\""Charger\"", \""Laptop\""]",2253.6,"{\""promo\"": \""16%\""}",13372,1,"""Europe""" +2024-10-10,55229,8412,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4827.96,{},145495,0,"""South America""" +2023-01-25,55230,4565,"[\""Headphones\""]",1979.78,"{\""loyalty\"": \""27%\""}",261594,0,"""South America""" +2023-10-04,55231,8440,"[\""Headphones\"", \""Keyboard\""]",4966.35,{},55510,0,"""Africa""" +2024-12-09,55232,8824,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1910.34,{},88209,1,"""Europe""" +2024-05-11,55233,4607,"[\""Laptop\""]",1173.88,"{\"": \""9%\""}",42327,1,"""Asia""" +2023-12-12,55234,2102,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2187.84,"{\"": \""20%\""}",241972,1,"""Africa""" +2023-04-11,55235,9555,"[\""Wireless Mouse\"", \""Tablet\""]",4596.99,{},40556,1,"""Asia""" +2024-04-04,55236,2172,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3028.51,"{\""loyalty\"": \""24%\""}",133842,0,"""Africa""" +2023-04-13,55237,8214,"[\""Monitor\""]",367.06,{},266266,1,"""Europe""" +2023-07-03,55238,8048,"[\""Laptop\"", \""Wireless Mouse\""]",1392.67,"{\""promo\"": \""17%\""}",124272,0,"""Asia""" +2024-03-03,55239,9492,"[\""Wireless Mouse\""]",2577.16,{},219369,1,"""South America""" +2024-04-05,55240,918,"[\""Wireless Mouse\""]",3611.43,{},251500,1,"""Europe""" +2023-04-12,55241,7197,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4373.61,"{\"": \""19%\""}",110259,1,"""Asia""" +2023-08-10,55242,3657,"[\""Keyboard\""]",2719.85,"{\"": \""5%\""}",297948,1,"""North America""" +2023-11-20,55243,4968,"[\""Wireless Mouse\"", \""Phone\""]",1142.82,{},194915,1,"""Africa""" +2023-01-27,55244,3691,"[\""Laptop\"", \""Tablet\""]",1592.83,"{\""promo\"": \""28%\""}",158168,0,"""Europe""" +2023-11-03,55245,5758,"[\""Monitor\"", \""Keyboard\""]",3516.11,"{\""seasonal\"": \""15%\""}",35677,0,"""North America""" +2023-07-12,55246,1488,"[\""Wireless Mouse\"", \""Phone\""]",4839.89,{},196017,1,"""North America""" +2024-07-30,55247,6953,"[\""Charger\"", \""Wireless Mouse\""]",118.63,{},171730,1,"""Europe""" +2023-11-01,55248,9154,"[\""Phone\"", \""Keyboard\""]",1676.01,{},223635,1,"""South America""" +2023-11-02,55249,9998,"[\""Keyboard\""]",3704.7,{},93790,1,"""North America""" +2024-12-24,55250,1337,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2867.99,"{\""promo\"": \""26%\""}",107873,1,"""North America""" +2023-11-03,55251,8705,"[\""Wireless Mouse\"", \""Charger\""]",1418.04,"{\""loyalty\"": \""21%\""}",21827,0,"""North America""" +2023-07-21,55252,8957,"[\""Laptop\"", \""Wireless Mouse\""]",1521.81,{},287073,1,"""South America""" +2024-07-04,55253,2313,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",197.8,{},8898,0,"""Europe""" +2023-04-14,55254,9834,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",59.56,{},201478,1,"""South America""" +2023-03-29,55255,8335,"[\""Charger\""]",3415.75,"{\""promo\"": \""30%\""}",137325,1,"""Europe""" +2024-12-11,55256,6199,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4490.07,"{\"": \""14%\""}",260391,0,"""South America""" +2023-11-29,55257,3186,"[\""Tablet\""]",2672.18,"{\""seasonal\"": \""20%\""}",157926,1,"""Africa""" +2024-06-17,55258,4258,"[\""Tablet\"", \""Keyboard\""]",2380.72,"{\""seasonal\"": \""8%\""}",94186,0,"""Africa""" +2024-11-27,55259,3074,"[\""Wireless Mouse\"", \""Headphones\""]",467.46,{},137379,0,"""Africa""" +2023-01-08,55260,4117,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4612.94,"{\""seasonal\"": \""16%\""}",198818,1,"""North America""" +2024-10-30,55261,8457,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3537.08,{},224266,0,"""Africa""" +2024-02-01,55262,938,"[\""Keyboard\"", \""Charger\""]",2968.26,{},246040,1,"""South America""" +2023-07-03,55263,3394,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1736.88,{},261890,1,"""North America""" +2023-05-27,55264,7351,"[\""Phone\"", \""Laptop\""]",1953.33,"{\"": \""8%\""}",47825,1,"""South America""" +2024-05-04,55265,6702,"[\""Keyboard\""]",2303.74,"{\"": \""15%\""}",284677,1,"""Europe""" +2023-05-14,55266,5418,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2641.77,"{\"": \""15%\""}",90168,1,"""Asia""" +2023-05-05,55267,8764,"[\""Charger\"", \""Keyboard\""]",2605.54,{},99331,0,"""South America""" +2023-11-05,55268,8089,"[\""Charger\"", \""Phone\""]",380.61,{},148412,1,"""Europe""" +2023-07-22,55269,429,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",929.04,{},243148,1,"""Europe""" +2024-03-11,55270,1044,"[\""Tablet\"", \""Laptop\""]",866.4,{},132500,1,"""Europe""" +2023-01-16,55271,2517,"[\""Phone\"", \""Headphones\""]",596.33,{},82363,1,"""Africa""" +2024-09-01,55272,4848,"[\""Laptop\"", \""Monitor\""]",1101.79,{},205859,0,"""South America""" +2023-05-29,55273,4560,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",612.43,"{\""promo\"": \""28%\""}",238986,0,"""Africa""" +2023-09-27,55274,1863,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1509.93,{},163230,1,"""Europe""" +2024-07-23,55275,4359,"[\""Monitor\""]",2867.69,{},64152,1,"""Europe""" +2023-03-27,55276,3641,"[\""Laptop\"", \""Charger\""]",1695.64,"{\""promo\"": \""17%\""}",2525,0,"""North America""" +2024-12-14,55277,5159,"[\""Wireless Mouse\"", \""Phone\""]",54.57,{},140153,1,"""Africa""" +2024-05-22,55278,6858,"[\""Keyboard\"", \""Tablet\""]",668.34,{},111507,0,"""South America""" +2023-01-15,55279,4804,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3781.83,"{\""seasonal\"": \""12%\""}",72295,1,"""North America""" +2024-09-08,55280,6261,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4044.82,{},203160,0,"""Africa""" +2024-10-24,55281,7881,"[\""Laptop\"", \""Phone\""]",766.17,"{\""promo\"": \""28%\""}",50825,0,"""Asia""" +2023-05-20,55282,6339,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1818.72,"{\""seasonal\"": \""6%\""}",104583,1,"""Africa""" +2024-05-25,55283,7068,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2665.44,"{\""loyalty\"": \""26%\""}",84590,1,"""Africa""" +2024-08-15,55284,8939,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4288.5,"{\""seasonal\"": \""8%\""}",161593,0,"""Europe""" +2024-09-26,55285,1304,"[\""Laptop\"", \""Tablet\""]",3823.03,{},33049,1,"""North America""" +2024-06-01,55286,7828,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2964.49,"{\"": \""21%\""}",266819,0,"""South America""" +2023-07-01,55287,9444,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",735.42,{},29986,0,"""South America""" +2023-03-04,55288,3422,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4510.74,"{\""promo\"": \""22%\""}",181343,0,"""North America""" +2023-03-24,55289,3889,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",690.73,{},60109,0,"""North America""" +2024-07-11,55290,5749,"[\""Monitor\""]",1301.12,{},270024,0,"""Africa""" +2024-07-30,55291,6648,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1040.55,"{\""seasonal\"": \""11%\""}",202360,0,"""Europe""" +2023-11-13,55292,6618,"[\""Laptop\"", \""Keyboard\""]",1867.63,{},125030,1,"""South America""" +2024-01-26,55293,7860,"[\""Tablet\"", \""Headphones\""]",3355.33,{},72588,0,"""South America""" +2024-03-29,55294,4204,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3956.04,"{\""seasonal\"": \""13%\""}",90311,0,"""Africa""" +2023-05-25,55295,7582,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3596.15,{},106162,1,"""Africa""" +2023-07-21,55296,6267,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1581.16,"{\"": \""22%\""}",238018,0,"""Asia""" +2023-12-24,55297,2462,"[\""Keyboard\""]",712.23,{},196030,0,"""Asia""" +2023-06-03,55298,4807,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2305.64,"{\"": \""8%\""}",40475,0,"""North America""" +2024-06-18,55299,1441,"[\""Laptop\"", \""Headphones\""]",281.51,"{\""loyalty\"": \""29%\""}",85271,0,"""Asia""" +2023-02-21,55300,892,"[\""Monitor\"", \""Phone\""]",638.87,"{\""promo\"": \""9%\""}",161660,1,"""Europe""" +2023-06-29,55301,1992,"[\""Tablet\"", \""Keyboard\""]",1484.85,{},4340,0,"""Asia""" +2024-06-20,55302,9759,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3639.58,"{\""loyalty\"": \""6%\""}",56207,0,"""Europe""" +2024-12-25,55303,6803,"[\""Monitor\""]",4949.67,{},93688,1,"""South America""" +2024-10-13,55304,1174,"[\""Phone\"", \""Wireless Mouse\""]",2425.59,{},146750,0,"""Europe""" +2024-07-06,55305,1518,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4119.0,"{\""loyalty\"": \""10%\""}",119547,0,"""South America""" +2023-09-18,55306,438,"[\""Phone\""]",3198.18,"{\"": \""30%\""}",265256,1,"""Europe""" +2023-04-11,55307,6823,"[\""Keyboard\"", \""Phone\""]",2804.19,"{\""loyalty\"": \""5%\""}",148362,1,"""Europe""" +2023-03-17,55308,8530,"[\""Phone\""]",4514.55,"{\""seasonal\"": \""9%\""}",163672,0,"""Europe""" +2023-04-10,55309,7219,"[\""Monitor\""]",1041.51,{},141656,0,"""Europe""" +2024-10-16,55310,5939,"[\""Charger\"", \""Wireless Mouse\""]",4581.46,{},218669,0,"""North America""" +2024-04-22,55311,3600,"[\""Tablet\""]",451.18,"{\""promo\"": \""25%\""}",258127,0,"""North America""" +2023-09-16,55312,8930,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1063.0,"{\""loyalty\"": \""6%\""}",267801,0,"""Europe""" +2023-06-13,55313,229,"[\""Keyboard\""]",4941.72,{},119418,1,"""South America""" +2023-03-02,55314,2048,"[\""Charger\"", \""Phone\""]",1699.16,{},283758,1,"""Asia""" +2023-09-23,55315,4857,"[\""Keyboard\"", \""Charger\""]",4132.45,"{\""loyalty\"": \""15%\""}",196659,0,"""South America""" +2024-01-23,55316,2031,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3759.92,{},89250,1,"""South America""" +2024-04-13,55317,4842,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1229.56,"{\""seasonal\"": \""19%\""}",261931,0,"""Europe""" +2024-09-15,55318,9900,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3762.89,"{\""promo\"": \""9%\""}",146181,0,"""Europe""" +2024-09-18,55319,6596,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2008.49,{},114924,1,"""Africa""" +2024-07-31,55320,9205,"[\""Charger\""]",2025.62,"{\""loyalty\"": \""30%\""}",205572,1,"""North America""" +2024-09-30,55321,8139,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3442.8,{},70518,0,"""Asia""" +2023-05-12,55322,5448,"[\""Laptop\"", \""Keyboard\""]",3963.34,"{\""seasonal\"": \""10%\""}",126052,0,"""North America""" +2023-08-03,55323,6188,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2932.55,"{\""loyalty\"": \""16%\""}",105439,1,"""Asia""" +2024-06-21,55324,415,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",553.11,{},73164,1,"""North America""" +2023-06-11,55325,4974,"[\""Headphones\""]",4035.69,{},174117,0,"""Europe""" +2023-10-29,55326,6751,"[\""Laptop\"", \""Keyboard\""]",3247.26,{},151681,0,"""South America""" +2023-01-18,55327,177,"[\""Laptop\""]",3939.1,"{\""promo\"": \""29%\""}",269961,1,"""Europe""" +2024-02-04,55328,2978,"[\""Headphones\""]",4949.27,"{\"": \""7%\""}",224724,1,"""Europe""" +2023-01-03,55329,7210,"[\""Charger\"", \""Keyboard\""]",4395.45,{},41724,0,"""Europe""" +2024-11-29,55330,7289,"[\""Charger\"", \""Monitor\""]",3840.0,{},35927,1,"""North America""" +2023-02-09,55331,4042,"[\""Phone\"", \""Charger\""]",1645.63,"{\""loyalty\"": \""21%\""}",157326,0,"""North America""" +2024-11-23,55332,8830,"[\""Headphones\""]",3226.67,{},227076,1,"""Europe""" +2024-07-12,55333,4589,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",237.53,{},244777,1,"""South America""" +2024-03-06,55334,9171,"[\""Tablet\"", \""Keyboard\""]",2977.0,{},258667,0,"""North America""" +2023-01-11,55335,3968,"[\""Monitor\""]",4576.54,"{\""loyalty\"": \""13%\""}",285180,0,"""Africa""" +2024-03-07,55336,8752,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",319.78,{},87527,1,"""Europe""" +2023-08-07,55337,7933,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3969.2,"{\"": \""21%\""}",294922,1,"""Asia""" +2024-06-29,55338,3369,"[\""Keyboard\"", \""Laptop\""]",4200.71,"{\""loyalty\"": \""7%\""}",129862,1,"""North America""" +2023-12-21,55339,2856,"[\""Keyboard\""]",3978.56,"{\""promo\"": \""26%\""}",40701,0,"""Africa""" +2024-01-25,55340,7532,"[\""Charger\"", \""Wireless Mouse\""]",3322.92,{},266506,0,"""Africa""" +2024-01-10,55341,9312,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3406.82,"{\""promo\"": \""13%\""}",296476,0,"""Africa""" +2023-07-17,55342,4643,"[\""Laptop\""]",2187.15,{},213640,1,"""South America""" +2024-05-24,55343,1229,"[\""Wireless Mouse\""]",1159.66,"{\""loyalty\"": \""24%\""}",161256,1,"""Asia""" +2023-09-18,55344,5307,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2136.83,"{\""loyalty\"": \""28%\""}",79765,0,"""Europe""" +2023-05-12,55345,8365,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1190.65,"{\"": \""16%\""}",167825,1,"""North America""" +2024-09-08,55346,7315,"[\""Wireless Mouse\""]",76.13,"{\"": \""13%\""}",89099,0,"""Africa""" +2024-08-26,55347,5790,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3102.12,{},51036,1,"""Africa""" +2024-06-11,55348,8516,"[\""Charger\""]",645.61,{},53359,0,"""Asia""" +2024-04-20,55349,3875,"[\""Headphones\"", \""Monitor\""]",237.94,{},209790,1,"""Asia""" +2023-12-20,55350,7305,"[\""Laptop\"", \""Keyboard\""]",4204.13,"{\"": \""20%\""}",29156,1,"""Asia""" +2023-12-10,55351,1732,"[\""Keyboard\""]",4033.75,"{\""loyalty\"": \""27%\""}",269194,0,"""South America""" +2024-07-08,55352,8843,"[\""Wireless Mouse\""]",4090.66,{},25246,1,"""Asia""" +2024-02-04,55353,1615,"[\""Wireless Mouse\"", \""Charger\""]",1560.74,"{\"": \""14%\""}",94265,1,"""Africa""" +2024-03-16,55354,4338,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",976.09,{},111871,0,"""South America""" +2024-03-11,55355,3592,"[\""Monitor\""]",3018.1,{},90014,1,"""Asia""" +2023-11-11,55356,5480,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",479.9,{},73438,1,"""Asia""" +2024-12-20,55357,9297,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4591.15,"{\"": \""11%\""}",7934,1,"""Africa""" +2023-05-22,55358,1429,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3474.53,{},36902,1,"""Africa""" +2024-06-06,55359,9576,"[\""Headphones\"", \""Phone\""]",2422.6,"{\"": \""20%\""}",227875,0,"""South America""" +2024-04-14,55360,4312,"[\""Laptop\""]",3477.58,{},210040,0,"""Asia""" +2023-05-25,55361,3998,"[\""Phone\"", \""Keyboard\""]",1429.11,"{\""promo\"": \""28%\""}",100800,1,"""South America""" +2024-12-20,55362,3087,"[\""Laptop\"", \""Wireless Mouse\""]",4698.3,"{\""loyalty\"": \""17%\""}",93105,0,"""Africa""" +2024-11-24,55363,2903,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1823.5,{},289073,1,"""North America""" +2024-07-01,55364,1042,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3702.82,{},50122,1,"""Asia""" +2024-05-21,55365,974,"[\""Laptop\"", \""Charger\""]",927.26,{},122284,1,"""Africa""" +2023-01-11,55366,9734,"[\""Monitor\"", \""Wireless Mouse\""]",4297.85,"{\""loyalty\"": \""20%\""}",295853,0,"""Asia""" +2023-07-31,55367,8763,"[\""Phone\""]",2781.14,{},272216,1,"""Africa""" +2023-04-17,55368,5296,"[\""Wireless Mouse\""]",1763.01,{},226873,1,"""North America""" +2024-10-26,55369,4761,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3326.27,{},280848,0,"""Asia""" +2024-07-08,55370,8728,"[\""Charger\"", \""Phone\""]",1031.87,{},101819,1,"""South America""" +2024-05-04,55371,893,"[\""Keyboard\"", \""Headphones\""]",1757.07,{},288177,0,"""Europe""" +2023-06-02,55372,9700,"[\""Monitor\""]",3089.49,{},106550,1,"""Asia""" +2024-08-29,55373,6427,"[\""Phone\""]",4756.3,"{\""seasonal\"": \""19%\""}",22530,0,"""South America""" +2023-01-12,55374,9696,"[\""Monitor\"", \""Headphones\""]",3281.68,"{\""seasonal\"": \""16%\""}",273515,1,"""Europe""" +2023-01-01,55375,2616,"[\""Monitor\"", \""Wireless Mouse\""]",1553.96,"{\""seasonal\"": \""16%\""}",110265,1,"""Asia""" +2024-08-04,55376,5733,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4152.22,{},136340,0,"""North America""" +2023-10-05,55377,8606,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3990.48,{},36407,0,"""Asia""" +2024-03-16,55378,7089,"[\""Monitor\"", \""Phone\""]",3466.97,{},221797,1,"""Asia""" +2023-11-26,55379,7681,"[\""Tablet\"", \""Headphones\""]",4470.2,"{\"": \""5%\""}",250192,0,"""Africa""" +2023-04-04,55380,6322,"[\""Keyboard\""]",3634.46,{},248042,0,"""Africa""" +2024-11-05,55381,2042,"[\""Tablet\"", \""Keyboard\""]",4367.1,"{\""loyalty\"": \""9%\""}",222854,0,"""Asia""" +2023-04-04,55382,7256,"[\""Laptop\"", \""Headphones\""]",1969.2,"{\""loyalty\"": \""16%\""}",276739,0,"""North America""" +2024-10-25,55383,7900,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1222.17,"{\""promo\"": \""13%\""}",230296,1,"""North America""" +2023-07-24,55384,194,"[\""Phone\""]",493.65,"{\""promo\"": \""5%\""}",170978,1,"""North America""" +2024-05-30,55385,7537,"[\""Charger\""]",4842.29,"{\""seasonal\"": \""14%\""}",292012,0,"""Europe""" +2023-10-04,55386,6124,"[\""Wireless Mouse\"", \""Charger\""]",98.45,"{\""loyalty\"": \""24%\""}",153804,0,"""Europe""" +2024-09-27,55387,7407,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2488.13,"{\""loyalty\"": \""11%\""}",74369,1,"""Asia""" +2023-08-18,55388,4449,"[\""Phone\"", \""Headphones\""]",4123.29,{},97843,0,"""Asia""" +2024-07-12,55389,4539,"[\""Laptop\"", \""Keyboard\""]",1622.67,{},90149,0,"""Asia""" +2023-05-08,55390,5957,"[\""Wireless Mouse\""]",2322.9,{},141996,1,"""Europe""" +2023-02-21,55391,8269,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2376.05,"{\"": \""28%\""}",68947,1,"""South America""" +2023-06-24,55392,8964,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4846.63,"{\""seasonal\"": \""8%\""}",80874,0,"""Africa""" +2024-08-25,55393,9878,"[\""Tablet\"", \""Laptop\""]",4802.86,{},75127,1,"""South America""" +2024-08-30,55394,4015,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3838.32,{},240042,1,"""South America""" +2023-12-05,55395,5050,"[\""Wireless Mouse\""]",3512.69,"{\""promo\"": \""19%\""}",199156,0,"""North America""" +2023-04-20,55396,45,"[\""Phone\""]",3532.3,"{\""promo\"": \""5%\""}",115424,0,"""South America""" +2024-07-14,55397,4307,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",442.08,{},200173,0,"""South America""" +2023-09-04,55398,4906,"[\""Charger\""]",931.55,{},90896,0,"""Asia""" +2024-04-20,55399,6459,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3126.64,{},51563,0,"""Asia""" +2024-02-27,55400,6174,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",961.7,"{\"": \""26%\""}",80558,1,"""Europe""" +2023-11-27,55401,4714,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3363.14,{},291541,1,"""Africa""" +2023-06-19,55402,2589,"[\""Wireless Mouse\"", \""Keyboard\""]",4589.36,"{\""promo\"": \""13%\""}",65293,0,"""North America""" +2023-08-31,55403,2074,"[\""Monitor\""]",621.36,{},19272,1,"""Africa""" +2024-07-07,55404,4196,"[\""Monitor\"", \""Charger\""]",3895.55,"{\""seasonal\"": \""9%\""}",58966,1,"""South America""" +2024-12-18,55405,8142,"[\""Monitor\""]",3222.56,{},4322,0,"""South America""" +2024-01-08,55406,969,"[\""Tablet\"", \""Monitor\""]",4486.38,{},109196,0,"""Africa""" +2023-01-03,55407,9185,"[\""Laptop\"", \""Monitor\""]",2769.95,{},51714,1,"""Europe""" +2023-05-19,55408,7111,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2966.57,"{\"": \""25%\""}",8128,1,"""Europe""" +2023-11-24,55409,9091,"[\""Headphones\""]",68.43,{},146734,0,"""Africa""" +2023-03-26,55410,2003,"[\""Charger\""]",1533.22,{},68257,0,"""Europe""" +2023-12-28,55411,5343,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",818.97,"{\""loyalty\"": \""16%\""}",99563,0,"""Asia""" +2024-08-10,55412,3429,"[\""Headphones\""]",4657.74,{},111360,1,"""North America""" +2024-10-18,55413,7176,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4080.59,"{\""seasonal\"": \""8%\""}",53970,0,"""South America""" +2024-11-16,55414,8166,"[\""Charger\"", \""Laptop\""]",2156.8,"{\""seasonal\"": \""23%\""}",159582,0,"""Asia""" +2023-02-06,55415,3252,"[\""Charger\""]",4066.84,"{\"": \""12%\""}",73096,0,"""Asia""" +2024-05-19,55416,8013,"[\""Tablet\"", \""Charger\""]",4938.74,"{\""loyalty\"": \""12%\""}",268051,1,"""North America""" +2023-03-11,55417,4924,"[\""Monitor\"", \""Wireless Mouse\""]",2961.32,"{\""loyalty\"": \""23%\""}",191935,0,"""South America""" +2024-02-05,55418,914,"[\""Tablet\"", \""Phone\""]",4450.8,"{\""promo\"": \""29%\""}",193724,1,"""North America""" +2023-01-08,55419,643,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3889.29,"{\""seasonal\"": \""8%\""}",177655,0,"""North America""" +2023-01-28,55420,2343,"[\""Wireless Mouse\"", \""Tablet\""]",2413.71,{},158116,1,"""Asia""" +2023-05-10,55421,3871,"[\""Monitor\"", \""Laptop\""]",1655.02,"{\""loyalty\"": \""18%\""}",175211,0,"""Asia""" +2023-04-25,55422,5919,"[\""Tablet\"", \""Laptop\""]",4453.64,"{\""seasonal\"": \""13%\""}",16364,0,"""Africa""" +2023-01-24,55423,140,"[\""Headphones\""]",297.61,{},152738,1,"""Africa""" +2023-02-21,55424,2587,"[\""Charger\""]",328.2,{},5389,1,"""Asia""" +2023-11-10,55425,6605,"[\""Phone\""]",158.31,"{\"": \""28%\""}",147292,0,"""North America""" +2023-11-20,55426,4479,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2807.36,"{\""loyalty\"": \""18%\""}",101894,1,"""Asia""" +2024-11-29,55427,5674,"[\""Charger\"", \""Phone\""]",634.45,"{\""seasonal\"": \""22%\""}",102188,1,"""South America""" +2024-03-12,55428,3615,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1887.24,"{\""promo\"": \""28%\""}",149466,0,"""Europe""" +2023-06-04,55429,8175,"[\""Laptop\""]",4719.14,"{\""seasonal\"": \""19%\""}",213610,1,"""Asia""" +2023-03-27,55430,5890,"[\""Charger\"", \""Headphones\""]",795.62,"{\""promo\"": \""30%\""}",57084,1,"""Africa""" +2024-09-01,55431,4486,"[\""Charger\""]",3747.73,{},82383,1,"""Asia""" +2024-02-28,55432,5939,"[\""Wireless Mouse\""]",4028.19,"{\"": \""21%\""}",25326,0,"""Africa""" +2024-11-17,55433,1752,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3436.52,"{\""loyalty\"": \""10%\""}",37244,1,"""Asia""" +2024-07-11,55434,3964,"[\""Keyboard\"", \""Wireless Mouse\""]",2760.03,"{\""promo\"": \""17%\""}",30506,0,"""Africa""" +2024-06-12,55435,9083,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1331.34,{},208883,1,"""Asia""" +2023-08-11,55436,7261,"[\""Wireless Mouse\"", \""Headphones\""]",1287.98,"{\"": \""7%\""}",105494,0,"""Africa""" +2023-01-09,55437,8453,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4415.35,"{\""loyalty\"": \""19%\""}",296415,0,"""South America""" +2023-09-27,55438,6575,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2951.44,{},187006,0,"""Africa""" +2023-07-07,55439,757,"[\""Laptop\""]",2688.71,"{\""promo\"": \""30%\""}",23795,1,"""South America""" +2023-12-03,55440,5475,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4931.18,{},2029,1,"""South America""" +2024-10-07,55441,1775,"[\""Charger\"", \""Laptop\""]",1112.97,{},109212,1,"""Europe""" +2024-10-10,55442,3053,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1825.03,{},30580,1,"""North America""" +2024-02-12,55443,3112,"[\""Phone\"", \""Keyboard\""]",2206.71,{},210923,1,"""Asia""" +2023-11-09,55444,6138,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3868.95,"{\""seasonal\"": \""22%\""}",278664,1,"""South America""" +2024-07-19,55445,9356,"[\""Wireless Mouse\"", \""Laptop\""]",99.27,{},102057,1,"""Europe""" +2024-06-18,55446,6192,"[\""Tablet\"", \""Phone\""]",3731.97,"{\""loyalty\"": \""9%\""}",213595,0,"""Asia""" +2023-12-08,55447,8467,"[\""Tablet\"", \""Keyboard\""]",338.48,"{\""promo\"": \""17%\""}",87545,0,"""Africa""" +2024-03-20,55448,8105,"[\""Wireless Mouse\"", \""Headphones\""]",3783.57,"{\""seasonal\"": \""13%\""}",235224,1,"""Asia""" +2023-12-21,55449,8288,"[\""Headphones\"", \""Phone\""]",2385.13,{},136838,0,"""Africa""" +2024-02-24,55450,2441,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2051.56,"{\""promo\"": \""15%\""}",119766,1,"""North America""" +2023-01-12,55451,3967,"[\""Monitor\"", \""Headphones\""]",1841.96,{},129571,1,"""North America""" +2024-02-15,55452,5440,"[\""Monitor\""]",1019.64,{},227914,0,"""Asia""" +2023-03-11,55453,4253,"[\""Headphones\"", \""Tablet\""]",754.58,"{\""seasonal\"": \""11%\""}",89887,1,"""North America""" +2024-12-09,55454,9611,"[\""Laptop\"", \""Phone\""]",1344.79,{},126937,1,"""South America""" +2024-04-18,55455,9941,"[\""Phone\""]",1250.33,{},292038,1,"""Asia""" +2023-09-17,55456,7556,"[\""Headphones\""]",2824.91,{},198043,1,"""Europe""" +2023-05-02,55457,9584,"[\""Keyboard\"", \""Tablet\""]",3878.21,"{\""seasonal\"": \""26%\""}",121337,1,"""South America""" +2023-11-17,55458,4575,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3814.52,"{\""loyalty\"": \""13%\""}",39428,0,"""North America""" +2024-06-12,55459,4970,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3021.11,{},34040,1,"""Asia""" +2023-02-12,55460,5408,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2719.93,{},23764,1,"""Asia""" +2023-07-06,55461,2447,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",385.52,{},71664,0,"""North America""" +2023-03-17,55462,9396,"[\""Laptop\""]",513.24,{},284712,1,"""Asia""" +2024-06-11,55463,235,"[\""Monitor\"", \""Phone\""]",725.28,"{\""loyalty\"": \""17%\""}",160462,0,"""South America""" +2024-10-16,55464,2385,"[\""Tablet\"", \""Charger\""]",1096.59,"{\""loyalty\"": \""9%\""}",133664,1,"""Europe""" +2023-07-22,55465,8736,"[\""Phone\""]",3872.84,"{\""loyalty\"": \""16%\""}",33427,0,"""Asia""" +2023-01-05,55466,6612,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1150.85,"{\""seasonal\"": \""25%\""}",28919,0,"""South America""" +2024-11-23,55467,2597,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3468.99,"{\""loyalty\"": \""24%\""}",200528,0,"""Africa""" +2024-05-21,55468,8003,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1177.75,{},90601,0,"""Europe""" +2024-01-18,55469,3520,"[\""Keyboard\""]",3645.76,"{\"": \""21%\""}",68082,1,"""Europe""" +2024-07-06,55470,8325,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",398.85,"{\""seasonal\"": \""5%\""}",92925,1,"""South America""" +2024-01-27,55471,4777,"[\""Keyboard\""]",4470.88,{},54893,0,"""Europe""" +2024-03-03,55472,5497,"[\""Tablet\"", \""Phone\""]",837.95,"{\""seasonal\"": \""8%\""}",107804,1,"""Europe""" +2023-10-20,55473,6272,"[\""Phone\""]",2525.69,"{\"": \""28%\""}",208601,1,"""Europe""" +2024-08-28,55474,1263,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1733.79,"{\""loyalty\"": \""6%\""}",270263,1,"""Europe""" +2023-02-24,55475,4728,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1918.82,"{\""seasonal\"": \""23%\""}",59476,0,"""Asia""" +2023-12-23,55476,3268,"[\""Charger\""]",3201.67,{},249247,1,"""Africa""" +2023-05-15,55477,4713,"[\""Headphones\"", \""Phone\""]",4109.84,{},14979,0,"""Africa""" +2023-07-31,55478,9209,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3224.13,{},127353,0,"""North America""" +2024-02-23,55479,9263,"[\""Tablet\""]",1891.18,"{\""promo\"": \""27%\""}",120337,0,"""South America""" +2023-02-18,55480,3847,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4456.55,"{\""seasonal\"": \""24%\""}",248804,1,"""North America""" +2024-02-24,55481,7431,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",149.41,"{\""seasonal\"": \""10%\""}",241219,0,"""Asia""" +2023-10-07,55482,9500,"[\""Keyboard\""]",4395.52,{},132370,0,"""Africa""" +2024-12-12,55483,1365,"[\""Charger\""]",4260.95,{},83550,0,"""North America""" +2023-07-17,55484,6012,"[\""Charger\""]",1870.06,"{\""seasonal\"": \""5%\""}",170443,1,"""Europe""" +2024-03-09,55485,7757,"[\""Laptop\""]",269.54,"{\""seasonal\"": \""17%\""}",137956,0,"""Asia""" +2023-06-08,55486,3843,"[\""Headphones\""]",4294.31,"{\"": \""7%\""}",230194,0,"""North America""" +2024-09-10,55487,3960,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2176.64,{},53874,0,"""South America""" +2024-04-25,55488,945,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1905.43,{},123835,1,"""South America""" +2023-11-09,55489,3788,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4519.63,{},193629,1,"""South America""" +2024-07-21,55490,3362,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2236.33,"{\""loyalty\"": \""17%\""}",167527,0,"""North America""" +2024-02-23,55491,177,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4929.82,"{\""loyalty\"": \""5%\""}",106315,1,"""Europe""" +2023-03-28,55492,1040,"[\""Wireless Mouse\""]",3557.36,{},24290,0,"""South America""" +2023-07-16,55493,1570,"[\""Monitor\"", \""Charger\""]",3561.26,{},35595,1,"""Asia""" +2023-02-21,55494,3562,"[\""Wireless Mouse\"", \""Charger\""]",4028.16,"{\""promo\"": \""12%\""}",153220,0,"""North America""" +2023-06-23,55495,2712,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",587.09,{},73720,1,"""North America""" +2024-05-20,55496,626,"[\""Charger\"", \""Phone\""]",1678.07,"{\""promo\"": \""13%\""}",39859,1,"""Europe""" +2024-09-15,55497,698,"[\""Keyboard\"", \""Headphones\""]",1028.67,{},198565,1,"""Asia""" +2024-03-12,55498,6935,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4794.03,"{\""promo\"": \""14%\""}",30749,0,"""Asia""" +2023-04-25,55499,8298,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3941.75,"{\""promo\"": \""7%\""}",66172,1,"""Europe""" +2024-08-21,55500,4692,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3318.5,{},250932,1,"""Europe""" +2024-01-15,55501,2595,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4863.63,"{\"": \""24%\""}",51098,1,"""Europe""" +2024-03-23,55502,2444,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1249.71,{},295725,1,"""Africa""" +2024-02-18,55503,5460,"[\""Charger\"", \""Keyboard\""]",3099.65,"{\""seasonal\"": \""13%\""}",255098,1,"""North America""" +2024-01-10,55504,2292,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1870.12,{},198078,0,"""Asia""" +2024-07-10,55505,212,"[\""Keyboard\"", \""Headphones\""]",2113.69,{},110875,0,"""Europe""" +2023-07-08,55506,6277,"[\""Tablet\""]",2706.6,"{\""promo\"": \""10%\""}",194020,0,"""Europe""" +2023-07-18,55507,8538,"[\""Laptop\"", \""Headphones\""]",4173.14,{},225340,1,"""Europe""" +2023-09-12,55508,2475,"[\""Monitor\""]",2337.73,{},37746,0,"""North America""" +2024-01-30,55509,6689,"[\""Keyboard\""]",4870.39,"{\""promo\"": \""30%\""}",154870,1,"""North America""" +2024-05-08,55510,4161,"[\""Wireless Mouse\""]",2292.85,{},149758,0,"""Asia""" +2024-03-21,55511,5975,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2646.47,"{\""loyalty\"": \""11%\""}",245970,0,"""Africa""" +2024-07-12,55512,9736,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2089.31,"{\"": \""9%\""}",98511,0,"""South America""" +2024-02-23,55513,9218,"[\""Keyboard\"", \""Charger\""]",4611.78,"{\""promo\"": \""6%\""}",151904,1,"""Asia""" +2023-04-19,55514,5838,"[\""Headphones\"", \""Laptop\""]",730.43,"{\""promo\"": \""14%\""}",200818,1,"""Africa""" +2023-11-16,55515,101,"[\""Wireless Mouse\""]",3056.78,{},268807,0,"""Asia""" +2023-01-04,55516,8137,"[\""Tablet\"", \""Keyboard\""]",4089.99,"{\""loyalty\"": \""23%\""}",174227,0,"""Asia""" +2024-11-28,55517,6308,"[\""Phone\"", \""Tablet\""]",2493.66,{},53875,1,"""North America""" +2024-05-06,55518,3025,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4775.04,{},150099,1,"""South America""" +2024-05-16,55519,8696,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3197.46,"{\""loyalty\"": \""18%\""}",62465,0,"""Africa""" +2023-04-29,55520,7846,"[\""Wireless Mouse\"", \""Monitor\""]",599.18,{},19397,0,"""North America""" +2023-08-21,55521,4654,"[\""Keyboard\"", \""Headphones\""]",2960.21,{},39471,0,"""South America""" +2023-05-05,55522,9257,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",328.04,{},139952,1,"""Asia""" +2023-01-22,55523,8304,"[\""Charger\""]",3269.01,"{\""seasonal\"": \""17%\""}",278063,0,"""Asia""" +2024-12-09,55524,9269,"[\""Laptop\"", \""Headphones\""]",697.44,{},79780,1,"""Africa""" +2023-08-12,55525,3224,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4703.81,{},46216,0,"""North America""" +2023-07-30,55526,4739,"[\""Keyboard\"", \""Laptop\""]",1576.47,"{\""loyalty\"": \""23%\""}",211641,0,"""North America""" +2024-03-10,55527,498,"[\""Laptop\"", \""Wireless Mouse\""]",3844.06,"{\"": \""6%\""}",120199,0,"""South America""" +2023-04-10,55528,122,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",617.37,"{\""loyalty\"": \""15%\""}",257379,1,"""Asia""" +2024-06-05,55529,4862,"[\""Wireless Mouse\"", \""Monitor\""]",1488.54,"{\"": \""15%\""}",88281,1,"""Asia""" +2024-04-24,55530,3355,"[\""Phone\""]",3511.0,"{\"": \""29%\""}",289226,1,"""South America""" +2023-12-23,55531,8129,"[\""Wireless Mouse\""]",275.72,"{\""promo\"": \""25%\""}",54592,1,"""Africa""" +2023-03-28,55532,8722,"[\""Keyboard\"", \""Tablet\""]",650.77,"{\""promo\"": \""16%\""}",35754,0,"""Asia""" +2023-12-15,55533,9745,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1887.99,{},77202,1,"""Africa""" +2023-12-15,55534,603,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3444.3,"{\""seasonal\"": \""15%\""}",271615,0,"""Europe""" +2024-01-27,55535,5469,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2781.84,{},171505,1,"""Africa""" +2024-08-06,55536,271,"[\""Keyboard\"", \""Tablet\""]",719.44,{},13148,0,"""Africa""" +2024-05-23,55537,9234,"[\""Charger\""]",867.39,"{\""seasonal\"": \""6%\""}",41937,1,"""North America""" +2023-06-18,55538,5924,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1757.1,"{\""seasonal\"": \""15%\""}",220088,0,"""Africa""" +2024-08-21,55539,9843,"[\""Keyboard\""]",907.68,{},108479,0,"""Europe""" +2023-12-23,55540,3287,"[\""Headphones\""]",2048.48,{},90417,1,"""Europe""" +2024-11-07,55541,1781,"[\""Tablet\"", \""Headphones\""]",1221.24,{},15904,0,"""South America""" +2024-06-13,55542,4765,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2004.51,{},248727,0,"""North America""" +2023-06-12,55543,5059,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1522.26,"{\""promo\"": \""10%\""}",274884,0,"""South America""" +2023-01-12,55544,2336,"[\""Laptop\"", \""Charger\""]",4108.88,"{\""loyalty\"": \""21%\""}",187438,1,"""Asia""" +2024-11-01,55545,3117,"[\""Keyboard\"", \""Charger\""]",800.71,"{\""promo\"": \""10%\""}",111045,0,"""North America""" +2023-12-26,55546,4386,"[\""Phone\""]",1419.62,"{\""seasonal\"": \""8%\""}",33716,1,"""Europe""" +2023-02-01,55547,5307,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",730.23,{},178216,1,"""North America""" +2024-06-22,55548,1841,"[\""Charger\"", \""Monitor\""]",3800.33,"{\"": \""24%\""}",5365,1,"""Europe""" +2023-05-22,55549,6283,"[\""Wireless Mouse\""]",4326.69,"{\""seasonal\"": \""10%\""}",148342,0,"""South America""" +2024-08-15,55550,7687,"[\""Headphones\"", \""Laptop\""]",3379.76,"{\"": \""12%\""}",293804,1,"""North America""" +2023-09-25,55551,6828,"[\""Keyboard\"", \""Headphones\""]",2658.56,"{\""seasonal\"": \""24%\""}",211828,1,"""South America""" +2023-12-25,55552,3400,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",681.43,"{\""loyalty\"": \""6%\""}",248531,1,"""Europe""" +2024-09-02,55553,5278,"[\""Tablet\""]",2386.38,"{\""seasonal\"": \""30%\""}",157187,1,"""Europe""" +2023-05-04,55554,6537,"[\""Laptop\""]",4082.51,{},238390,1,"""Europe""" +2023-06-17,55555,3529,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2208.51,{},157083,0,"""North America""" +2024-04-14,55556,3028,"[\""Monitor\"", \""Headphones\""]",3349.11,"{\""promo\"": \""9%\""}",263228,0,"""North America""" +2024-02-13,55557,1758,"[\""Wireless Mouse\""]",2888.55,{},182191,1,"""Europe""" +2023-02-11,55558,4400,"[\""Keyboard\"", \""Phone\""]",158.14,"{\""seasonal\"": \""12%\""}",15144,0,"""Europe""" +2024-08-03,55559,9198,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3958.39,"{\""seasonal\"": \""10%\""}",46968,1,"""Europe""" +2024-10-13,55560,9591,"[\""Keyboard\""]",3448.84,{},121989,1,"""Asia""" +2023-03-09,55561,2290,"[\""Headphones\"", \""Charger\""]",692.33,{},133808,1,"""Europe""" +2023-10-11,55562,5776,"[\""Monitor\"", \""Laptop\""]",2411.2,{},213441,0,"""Africa""" +2024-01-09,55563,5734,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1601.74,"{\"": \""12%\""}",193220,0,"""Europe""" +2024-08-09,55564,985,"[\""Monitor\""]",3844.45,"{\""seasonal\"": \""11%\""}",140124,0,"""North America""" +2024-10-17,55565,2406,"[\""Charger\""]",4193.18,"{\""seasonal\"": \""24%\""}",208945,1,"""South America""" +2023-03-30,55566,8976,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4503.74,"{\""seasonal\"": \""21%\""}",157729,1,"""Africa""" +2023-08-22,55567,8088,"[\""Charger\"", \""Tablet\""]",1486.91,{},187661,1,"""South America""" +2023-05-27,55568,4618,"[\""Headphones\""]",4291.47,"{\""loyalty\"": \""12%\""}",148592,1,"""Asia""" +2023-02-16,55569,1532,"[\""Keyboard\""]",4173.9,{},209957,0,"""Africa""" +2023-08-13,55570,4415,"[\""Keyboard\""]",2387.3,{},53528,1,"""Europe""" +2024-04-14,55571,8963,"[\""Keyboard\""]",2379.36,"{\"": \""26%\""}",34894,1,"""South America""" +2024-09-30,55572,4514,"[\""Charger\""]",3192.1,"{\""promo\"": \""30%\""}",190264,0,"""Africa""" +2024-01-31,55573,4746,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2659.11,{},280902,0,"""North America""" +2024-06-05,55574,8716,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1515.55,"{\""promo\"": \""20%\""}",196336,1,"""Africa""" +2023-03-09,55575,1597,"[\""Keyboard\"", \""Charger\""]",1838.49,{},10517,1,"""Asia""" +2023-06-10,55576,1993,"[\""Wireless Mouse\""]",2442.24,"{\""promo\"": \""23%\""}",247475,1,"""Africa""" +2024-01-04,55577,9835,"[\""Phone\""]",1087.36,{},100515,0,"""North America""" +2024-08-20,55578,8668,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3576.98,{},139946,0,"""South America""" +2024-08-04,55579,664,"[\""Charger\"", \""Keyboard\""]",3971.28,"{\"": \""11%\""}",58557,0,"""Europe""" +2023-07-08,55580,4330,"[\""Monitor\""]",1215.27,"{\""loyalty\"": \""29%\""}",218314,0,"""South America""" +2024-11-03,55581,6756,"[\""Headphones\"", \""Phone\""]",2566.24,"{\"": \""20%\""}",158098,1,"""Europe""" +2024-08-23,55582,2378,"[\""Keyboard\""]",1599.28,"{\"": \""14%\""}",295399,0,"""Europe""" +2024-07-18,55583,8230,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3477.16,{},6090,0,"""North America""" +2023-05-29,55584,3548,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4156.93,{},121178,1,"""South America""" +2024-03-28,55585,383,"[\""Tablet\"", \""Keyboard\""]",2298.63,{},177918,1,"""South America""" +2024-02-21,55586,8471,"[\""Tablet\"", \""Charger\""]",4518.27,{},298606,1,"""Asia""" +2024-12-25,55587,4886,"[\""Monitor\""]",4370.29,{},165876,0,"""Europe""" +2024-08-09,55588,3514,"[\""Keyboard\"", \""Charger\""]",1787.66,"{\"": \""9%\""}",95496,0,"""North America""" +2024-04-13,55589,6667,"[\""Phone\"", \""Headphones\""]",1410.8,{},196301,1,"""Asia""" +2024-03-25,55590,3053,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4966.25,"{\"": \""20%\""}",264795,1,"""Africa""" +2023-10-06,55591,6900,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4254.99,"{\""seasonal\"": \""12%\""}",61006,1,"""Asia""" +2023-04-13,55592,4920,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3556.64,"{\""loyalty\"": \""27%\""}",8242,0,"""North America""" +2023-12-26,55593,9597,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3390.3,{},192068,0,"""Asia""" +2023-08-16,55594,4450,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1759.11,"{\""loyalty\"": \""18%\""}",99781,1,"""Africa""" +2024-12-05,55595,3699,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1884.96,{},60245,0,"""Europe""" +2024-06-16,55596,3357,"[\""Wireless Mouse\"", \""Tablet\""]",1881.04,"{\"": \""25%\""}",88693,1,"""Africa""" +2024-11-11,55597,5531,"[\""Laptop\""]",3594.65,{},99015,1,"""Africa""" +2024-01-09,55598,4859,"[\""Headphones\""]",74.29,"{\""promo\"": \""30%\""}",15018,0,"""Africa""" +2024-12-05,55599,13,"[\""Laptop\"", \""Phone\""]",1183.91,"{\""promo\"": \""14%\""}",206884,1,"""North America""" +2024-02-25,55600,6122,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3036.87,"{\""seasonal\"": \""29%\""}",48681,1,"""Europe""" +2024-11-21,55601,649,"[\""Keyboard\""]",465.55,"{\""promo\"": \""7%\""}",75939,0,"""North America""" +2023-09-10,55602,8760,"[\""Keyboard\"", \""Phone\""]",2196.68,{},273095,1,"""North America""" +2023-06-09,55603,3030,"[\""Phone\""]",2528.28,"{\"": \""25%\""}",246183,1,"""South America""" +2023-03-06,55604,1007,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",545.91,"{\""seasonal\"": \""6%\""}",112817,0,"""Asia""" +2024-02-04,55605,4791,"[\""Monitor\""]",3931.46,{},49554,1,"""Asia""" +2023-06-05,55606,6694,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1866.97,"{\""seasonal\"": \""24%\""}",285375,0,"""Africa""" +2023-03-01,55607,8817,"[\""Phone\""]",4321.42,{},59106,1,"""Africa""" +2023-11-14,55608,7351,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3417.43,{},212329,0,"""Europe""" +2024-03-26,55609,1904,"[\""Keyboard\""]",4654.72,"{\""promo\"": \""18%\""}",149319,0,"""North America""" +2023-06-11,55610,7522,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1279.03,"{\""loyalty\"": \""21%\""}",218656,0,"""Europe""" +2024-09-21,55611,6969,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3876.35,"{\""loyalty\"": \""10%\""}",239528,0,"""Asia""" +2023-07-12,55612,5146,"[\""Tablet\"", \""Keyboard\""]",4644.77,{},106577,0,"""North America""" +2024-02-02,55613,723,"[\""Laptop\""]",2316.21,"{\"": \""6%\""}",100989,0,"""South America""" +2023-07-17,55614,8618,"[\""Wireless Mouse\""]",1522.95,{},9443,0,"""Asia""" +2023-08-11,55615,4638,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",727.95,"{\""seasonal\"": \""18%\""}",250414,1,"""Europe""" +2023-02-24,55616,4845,"[\""Wireless Mouse\"", \""Phone\""]",3413.95,{},149023,1,"""South America""" +2024-03-11,55617,1623,"[\""Phone\"", \""Tablet\""]",4437.31,"{\""seasonal\"": \""29%\""}",114154,0,"""Europe""" +2024-05-02,55618,3611,"[\""Laptop\""]",1478.15,"{\""loyalty\"": \""30%\""}",290208,1,"""Africa""" +2024-04-15,55619,126,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3179.98,{},106045,1,"""Europe""" +2024-03-15,55620,229,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3607.67,"{\"": \""29%\""}",144200,1,"""Europe""" +2024-03-22,55621,7472,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3412.0,"{\""seasonal\"": \""5%\""}",8025,0,"""North America""" +2024-08-28,55622,2369,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3275.93,"{\""promo\"": \""21%\""}",30881,0,"""Europe""" +2023-11-19,55623,9155,"[\""Laptop\""]",2680.59,"{\""loyalty\"": \""26%\""}",251354,1,"""South America""" +2024-08-02,55624,7821,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4266.14,"{\""promo\"": \""27%\""}",74796,0,"""Europe""" +2023-07-14,55625,4220,"[\""Wireless Mouse\"", \""Monitor\""]",4383.33,{},145294,0,"""North America""" +2024-07-05,55626,1036,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3251.2,"{\"": \""9%\""}",58115,1,"""North America""" +2024-02-03,55627,4954,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1006.59,{},294377,1,"""South America""" +2024-02-24,55628,5560,"[\""Monitor\""]",685.15,{},152821,1,"""Africa""" +2024-08-04,55629,294,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3477.78,{},291073,1,"""North America""" +2023-02-01,55630,1730,"[\""Wireless Mouse\"", \""Laptop\""]",742.07,{},204011,1,"""Asia""" +2023-01-30,55631,3430,"[\""Laptop\"", \""Charger\""]",4898.57,{},109772,0,"""Europe""" +2023-09-06,55632,5231,"[\""Headphones\""]",1306.86,"{\""promo\"": \""5%\""}",189678,1,"""Europe""" +2024-11-08,55633,524,"[\""Laptop\"", \""Monitor\""]",3890.44,{},111250,0,"""Asia""" +2023-02-18,55634,8855,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4762.58,"{\"": \""21%\""}",214759,1,"""Africa""" +2023-07-10,55635,7883,"[\""Tablet\""]",3177.51,"{\""promo\"": \""29%\""}",143015,0,"""North America""" +2024-11-22,55636,3414,"[\""Headphones\""]",885.72,"{\""loyalty\"": \""11%\""}",20964,1,"""North America""" +2023-10-16,55637,5850,"[\""Phone\"", \""Headphones\""]",1257.19,{},55613,0,"""Europe""" +2024-09-17,55638,9589,"[\""Wireless Mouse\""]",411.02,"{\""loyalty\"": \""9%\""}",182576,0,"""Asia""" +2024-06-26,55639,2706,"[\""Keyboard\""]",4339.31,"{\""seasonal\"": \""9%\""}",70039,0,"""North America""" +2023-09-27,55640,8107,"[\""Charger\"", \""Phone\""]",676.33,{},286634,0,"""North America""" +2024-04-16,55641,5123,"[\""Wireless Mouse\""]",4840.66,"{\"": \""27%\""}",47486,0,"""Asia""" +2024-03-09,55642,3724,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1648.08,{},66325,0,"""North America""" +2024-01-04,55643,6084,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2258.26,"{\""loyalty\"": \""20%\""}",181462,1,"""North America""" +2023-02-26,55644,5253,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",545.97,{},222609,0,"""Europe""" +2024-11-02,55645,7148,"[\""Charger\""]",1185.09,{},11700,0,"""Europe""" +2024-12-28,55646,6186,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4669.5,{},87654,1,"""South America""" +2024-06-09,55647,3006,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",709.12,{},133640,0,"""North America""" +2024-10-07,55648,2270,"[\""Keyboard\"", \""Wireless Mouse\""]",969.86,"{\""seasonal\"": \""19%\""}",264801,1,"""Africa""" +2023-09-12,55649,5162,"[\""Keyboard\""]",1390.96,"{\"": \""16%\""}",299922,0,"""North America""" +2023-11-01,55650,6395,"[\""Laptop\""]",3948.0,"{\""promo\"": \""23%\""}",128154,0,"""Europe""" +2024-08-04,55651,8871,"[\""Headphones\""]",95.69,"{\""seasonal\"": \""5%\""}",125565,0,"""Africa""" +2023-11-16,55652,4663,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3078.45,{},26041,0,"""North America""" +2024-01-05,55653,6599,"[\""Wireless Mouse\"", \""Laptop\""]",2411.75,"{\""seasonal\"": \""6%\""}",128737,0,"""North America""" +2023-08-17,55654,3772,"[\""Tablet\""]",2167.67,{},118783,1,"""South America""" +2023-09-20,55655,8644,"[\""Tablet\"", \""Wireless Mouse\""]",3147.76,"{\"": \""22%\""}",82559,1,"""North America""" +2023-10-03,55656,4687,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3607.27,{},92856,0,"""Africa""" +2024-09-18,55657,2570,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3520.15,{},122049,1,"""South America""" +2023-11-03,55658,2067,"[\""Monitor\""]",3668.35,"{\""seasonal\"": \""24%\""}",81238,1,"""Africa""" +2023-03-04,55659,9772,"[\""Tablet\""]",4612.72,{},88761,1,"""Africa""" +2024-12-10,55660,5084,"[\""Headphones\"", \""Tablet\""]",1256.42,"{\""seasonal\"": \""8%\""}",275615,1,"""North America""" +2024-07-05,55661,5484,"[\""Wireless Mouse\""]",2438.23,{},132427,1,"""Asia""" +2024-08-16,55662,4385,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3078.95,"{\""loyalty\"": \""10%\""}",23201,0,"""Europe""" +2024-01-10,55663,9158,"[\""Keyboard\"", \""Headphones\""]",4602.59,"{\""loyalty\"": \""22%\""}",31943,0,"""Asia""" +2024-06-02,55664,2214,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3094.2,{},159695,0,"""South America""" +2024-04-01,55665,3426,"[\""Charger\"", \""Laptop\""]",3788.9,{},200771,0,"""Asia""" +2024-02-23,55666,1022,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2571.78,"{\""promo\"": \""21%\""}",280823,1,"""North America""" +2023-01-12,55667,6379,"[\""Monitor\""]",2592.1,"{\""loyalty\"": \""6%\""}",275130,0,"""Asia""" +2023-12-20,55668,6796,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2663.1,{},275127,1,"""Africa""" +2024-11-07,55669,3133,"[\""Wireless Mouse\""]",2693.94,"{\""seasonal\"": \""28%\""}",249285,1,"""North America""" +2024-12-14,55670,770,"[\""Tablet\""]",1780.85,"{\""seasonal\"": \""23%\""}",32105,1,"""North America""" +2023-06-02,55671,6015,"[\""Keyboard\""]",3810.88,"{\"": \""13%\""}",148227,0,"""North America""" +2024-05-05,55672,1069,"[\""Wireless Mouse\"", \""Monitor\""]",4719.46,"{\""promo\"": \""17%\""}",15755,1,"""Asia""" +2023-01-05,55673,3725,"[\""Keyboard\"", \""Tablet\""]",3172.8,"{\""loyalty\"": \""27%\""}",226906,1,"""North America""" +2024-12-10,55674,9956,"[\""Monitor\"", \""Charger\""]",3222.75,{},98501,0,"""Europe""" +2023-12-13,55675,3969,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2023.32,{},104332,0,"""South America""" +2024-01-03,55676,4635,"[\""Wireless Mouse\""]",4543.13,"{\"": \""14%\""}",180441,0,"""Europe""" +2023-10-13,55677,107,"[\""Tablet\"", \""Charger\""]",4010.1,{},194253,0,"""South America""" +2023-10-17,55678,3629,"[\""Charger\""]",4131.52,"{\"": \""7%\""}",273705,0,"""Africa""" +2024-07-03,55679,3758,"[\""Monitor\""]",2631.81,"{\""loyalty\"": \""24%\""}",130734,1,"""Europe""" +2023-11-05,55680,8615,"[\""Phone\""]",2084.32,{},131965,0,"""Africa""" +2023-12-22,55681,2845,"[\""Laptop\""]",1788.63,"{\""loyalty\"": \""25%\""}",171073,0,"""Africa""" +2023-04-18,55682,7874,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3847.3,{},124455,0,"""Europe""" +2023-11-15,55683,8975,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4180.18,{},259682,0,"""Africa""" +2023-05-30,55684,1184,"[\""Laptop\"", \""Keyboard\""]",4685.77,{},74383,1,"""Africa""" +2023-12-24,55685,9120,"[\""Phone\"", \""Wireless Mouse\""]",4423.53,"{\""loyalty\"": \""13%\""}",210935,1,"""South America""" +2023-01-05,55686,3473,"[\""Headphones\"", \""Keyboard\""]",1112.39,"{\""promo\"": \""20%\""}",63092,1,"""South America""" +2024-09-13,55687,8957,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",850.63,{},47932,0,"""North America""" +2024-11-05,55688,923,"[\""Keyboard\""]",119.95,"{\"": \""28%\""}",295468,0,"""Europe""" +2023-06-24,55689,1619,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",786.65,{},80956,1,"""North America""" +2024-03-05,55690,2544,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",391.88,{},91619,0,"""Africa""" +2023-04-05,55691,8034,"[\""Laptop\"", \""Headphones\""]",4016.1,"{\""loyalty\"": \""20%\""}",133680,0,"""Europe""" +2023-11-07,55692,3426,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4899.21,"{\""loyalty\"": \""25%\""}",126236,0,"""North America""" +2023-10-31,55693,5411,"[\""Keyboard\"", \""Laptop\""]",938.11,{},187710,0,"""Asia""" +2024-10-23,55694,7662,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3183.1,"{\""promo\"": \""25%\""}",204959,1,"""North America""" +2023-11-24,55695,921,"[\""Tablet\""]",1286.4,"{\""promo\"": \""10%\""}",293577,1,"""South America""" +2023-11-20,55696,6660,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4621.82,"{\""loyalty\"": \""18%\""}",137061,1,"""Asia""" +2024-02-18,55697,233,"[\""Charger\""]",3158.99,"{\""loyalty\"": \""21%\""}",171113,1,"""Asia""" +2023-12-30,55698,863,"[\""Wireless Mouse\"", \""Charger\""]",1887.07,{},93185,1,"""North America""" +2023-07-21,55699,5371,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3401.53,"{\""promo\"": \""30%\""}",237552,0,"""South America""" +2023-06-18,55700,6298,"[\""Phone\"", \""Keyboard\""]",3020.6,"{\""promo\"": \""16%\""}",269004,0,"""South America""" +2023-03-20,55701,6602,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",611.5,"{\"": \""19%\""}",214041,1,"""South America""" +2024-10-15,55702,5153,"[\""Keyboard\""]",1412.61,{},32481,1,"""South America""" +2024-10-30,55703,8464,"[\""Phone\"", \""Keyboard\""]",2531.84,{},225634,0,"""North America""" +2023-05-26,55704,790,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3950.16,"{\""seasonal\"": \""10%\""}",276865,0,"""North America""" +2024-05-30,55705,7509,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",316.35,{},227657,1,"""Asia""" +2023-01-12,55706,2131,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1270.83,"{\""promo\"": \""11%\""}",295456,0,"""North America""" +2023-06-02,55707,4123,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4473.69,{},265509,0,"""North America""" +2024-08-09,55708,9362,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2071.72,"{\"": \""28%\""}",265972,0,"""Europe""" +2024-11-03,55709,7272,"[\""Headphones\"", \""Monitor\""]",3091.98,{},101811,0,"""Africa""" +2023-05-27,55710,7912,"[\""Charger\""]",750.9,"{\""loyalty\"": \""23%\""}",297346,0,"""Europe""" +2024-09-14,55711,568,"[\""Keyboard\"", \""Tablet\""]",3608.35,{},224614,0,"""Africa""" +2023-08-25,55712,3624,"[\""Monitor\""]",1347.64,{},294700,0,"""Europe""" +2023-05-18,55713,3901,"[\""Keyboard\"", \""Wireless Mouse\""]",4721.52,"{\"": \""16%\""}",59708,1,"""South America""" +2024-08-31,55714,9719,"[\""Charger\""]",3566.46,"{\""loyalty\"": \""13%\""}",249298,1,"""Europe""" +2024-01-17,55715,5891,"[\""Tablet\""]",2272.36,"{\""seasonal\"": \""25%\""}",165249,1,"""Africa""" +2024-02-24,55716,6150,"[\""Phone\""]",4670.74,{},256465,1,"""North America""" +2023-08-17,55717,9925,"[\""Monitor\"", \""Phone\""]",1504.3,"{\""loyalty\"": \""7%\""}",161241,0,"""Asia""" +2023-07-31,55718,4967,"[\""Wireless Mouse\""]",3523.23,{},15660,1,"""Africa""" +2024-05-13,55719,3445,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3555.99,"{\""seasonal\"": \""24%\""}",128996,1,"""Africa""" +2024-04-19,55720,6048,"[\""Headphones\"", \""Phone\""]",2275.83,"{\""seasonal\"": \""28%\""}",151567,1,"""North America""" +2023-05-01,55721,3538,"[\""Charger\"", \""Phone\""]",1486.69,"{\""seasonal\"": \""15%\""}",228079,0,"""South America""" +2024-04-06,55722,4684,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2801.41,"{\""seasonal\"": \""30%\""}",184559,1,"""Africa""" +2023-10-02,55723,1757,"[\""Phone\"", \""Laptop\""]",1420.08,"{\""seasonal\"": \""12%\""}",167960,0,"""Asia""" +2024-05-01,55724,7792,"[\""Monitor\""]",1850.27,"{\""promo\"": \""5%\""}",261942,0,"""North America""" +2023-01-21,55725,9503,"[\""Keyboard\""]",2775.33,{},224743,0,"""Asia""" +2024-12-18,55726,1013,"[\""Headphones\""]",2311.22,"{\"": \""14%\""}",114308,1,"""South America""" +2023-10-14,55727,8668,"[\""Laptop\"", \""Headphones\""]",3359.82,{},86125,1,"""North America""" +2024-11-02,55728,2084,"[\""Laptop\"", \""Monitor\""]",1521.24,"{\""loyalty\"": \""9%\""}",194592,0,"""Asia""" +2024-08-04,55729,2542,"[\""Charger\""]",257.91,{},92798,1,"""Africa""" +2023-06-13,55730,7826,"[\""Charger\""]",1769.24,"{\""seasonal\"": \""5%\""}",255838,1,"""North America""" +2024-05-14,55731,4929,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4695.11,{},98896,0,"""South America""" +2024-01-31,55732,2905,"[\""Charger\"", \""Tablet\""]",2929.94,{},12261,0,"""Europe""" +2023-05-14,55733,6334,"[\""Wireless Mouse\"", \""Headphones\""]",3275.84,"{\"": \""29%\""}",182424,1,"""Europe""" +2024-01-28,55734,4833,"[\""Charger\""]",1271.91,"{\"": \""28%\""}",230007,1,"""South America""" +2024-11-11,55735,8982,"[\""Charger\"", \""Wireless Mouse\""]",4653.17,{},48141,0,"""North America""" +2024-07-12,55736,1823,"[\""Tablet\""]",327.91,"{\""seasonal\"": \""24%\""}",78333,1,"""Asia""" +2024-06-09,55737,1405,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",370.22,{},110298,0,"""South America""" +2024-10-15,55738,6354,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1205.87,"{\""promo\"": \""29%\""}",132235,1,"""South America""" +2023-02-13,55739,5554,"[\""Charger\"", \""Keyboard\""]",1352.83,{},22704,0,"""Europe""" +2024-11-27,55740,2101,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4834.75,{},245371,1,"""South America""" +2024-01-18,55741,6255,"[\""Monitor\"", \""Headphones\""]",2256.22,"{\""promo\"": \""11%\""}",288668,1,"""North America""" +2024-02-29,55742,1623,"[\""Charger\""]",445.53,{},169993,0,"""North America""" +2023-12-28,55743,178,"[\""Laptop\""]",4639.41,"{\""seasonal\"": \""25%\""}",287919,1,"""Europe""" +2023-09-11,55744,9005,"[\""Charger\""]",3010.52,{},81555,0,"""North America""" +2023-08-04,55745,2336,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1173.75,{},265451,0,"""Africa""" +2023-11-01,55746,7268,"[\""Laptop\""]",2735.68,"{\""seasonal\"": \""7%\""}",196129,1,"""South America""" +2024-12-09,55747,8240,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3146.43,"{\""seasonal\"": \""27%\""}",191872,0,"""Africa""" +2024-10-07,55748,230,"[\""Laptop\"", \""Wireless Mouse\""]",324.73,{},60675,0,"""South America""" +2024-03-05,55749,6961,"[\""Laptop\"", \""Headphones\""]",3611.17,{},35818,1,"""Europe""" +2024-06-03,55750,2105,"[\""Phone\"", \""Wireless Mouse\""]",1340.61,{},178275,1,"""Europe""" +2024-08-09,55751,4098,"[\""Charger\"", \""Laptop\""]",2890.95,"{\""promo\"": \""12%\""}",293087,0,"""Europe""" +2023-09-16,55752,6986,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4111.75,"{\""seasonal\"": \""12%\""}",284104,0,"""Asia""" +2024-03-16,55753,7666,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2357.77,"{\""promo\"": \""28%\""}",52739,1,"""Africa""" +2024-02-15,55754,1408,"[\""Keyboard\"", \""Tablet\""]",646.67,{},29095,1,"""North America""" +2024-10-01,55755,555,"[\""Monitor\""]",877.11,"{\""promo\"": \""29%\""}",80073,1,"""Europe""" +2024-11-12,55756,4293,"[\""Tablet\"", \""Phone\""]",1339.96,"{\"": \""29%\""}",276104,0,"""Europe""" +2023-04-12,55757,5050,"[\""Charger\"", \""Monitor\""]",3520.59,"{\"": \""28%\""}",258864,0,"""Europe""" +2024-01-10,55758,5905,"[\""Monitor\"", \""Tablet\""]",1542.84,"{\""promo\"": \""14%\""}",247500,1,"""Europe""" +2024-02-05,55759,5218,"[\""Tablet\""]",4236.6,{},201134,0,"""Europe""" +2024-12-26,55760,2455,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4831.2,"{\""loyalty\"": \""21%\""}",259513,0,"""Africa""" +2024-06-16,55761,7618,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2244.22,"{\"": \""6%\""}",173288,0,"""South America""" +2023-07-15,55762,3295,"[\""Headphones\"", \""Wireless Mouse\""]",4961.03,{},74922,1,"""South America""" +2024-05-17,55763,5590,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4771.47,"{\"": \""19%\""}",249871,1,"""Asia""" +2024-06-26,55764,955,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3220.86,{},83173,0,"""Europe""" +2024-10-07,55765,6222,"[\""Laptop\""]",2245.48,"{\""promo\"": \""9%\""}",257942,1,"""Asia""" +2024-08-08,55766,5245,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4425.99,"{\""promo\"": \""25%\""}",275431,0,"""Africa""" +2024-10-05,55767,7716,"[\""Tablet\"", \""Charger\""]",4193.83,{},212824,0,"""Europe""" +2023-10-12,55768,329,"[\""Headphones\"", \""Laptop\""]",2783.45,{},143532,0,"""South America""" +2023-08-07,55769,2299,"[\""Phone\""]",2139.77,{},9603,1,"""Africa""" +2024-12-25,55770,1812,"[\""Phone\"", \""Monitor\""]",2602.85,{},155069,0,"""South America""" +2023-06-15,55771,1708,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1611.51,"{\""seasonal\"": \""8%\""}",83585,0,"""Africa""" +2024-06-02,55772,5154,"[\""Wireless Mouse\""]",1185.63,"{\"": \""24%\""}",118022,0,"""Europe""" +2023-01-25,55773,2956,"[\""Laptop\""]",2927.15,{},7277,1,"""South America""" +2023-07-28,55774,8728,"[\""Charger\"", \""Tablet\""]",4720.37,"{\""seasonal\"": \""26%\""}",219155,1,"""Europe""" +2024-05-09,55775,7769,"[\""Phone\"", \""Monitor\""]",1043.84,{},141951,0,"""North America""" +2023-12-08,55776,5131,"[\""Charger\""]",2250.18,{},99286,0,"""Asia""" +2024-04-23,55777,8594,"[\""Charger\"", \""Headphones\""]",2530.11,{},71990,0,"""Africa""" +2024-06-27,55778,4404,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3608.01,"{\""seasonal\"": \""10%\""}",123116,0,"""Africa""" +2023-02-15,55779,3707,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1681.21,"{\""promo\"": \""18%\""}",135388,1,"""South America""" +2023-06-03,55780,6238,"[\""Laptop\"", \""Wireless Mouse\""]",2706.43,{},55608,1,"""Asia""" +2024-01-30,55781,6040,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1004.46,{},200157,0,"""Asia""" +2023-06-01,55782,8503,"[\""Wireless Mouse\"", \""Monitor\""]",475.73,{},146686,0,"""Africa""" +2024-06-14,55783,7612,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4595.25,"{\"": \""16%\""}",98522,1,"""South America""" +2024-10-03,55784,15,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",527.34,{},275582,0,"""Europe""" +2023-06-15,55785,1215,"[\""Headphones\"", \""Laptop\""]",1084.56,"{\"": \""27%\""}",290662,0,"""North America""" +2023-11-17,55786,7667,"[\""Wireless Mouse\"", \""Tablet\""]",2712.89,{},34372,1,"""Asia""" +2024-06-15,55787,3062,"[\""Phone\"", \""Tablet\""]",2587.29,"{\"": \""30%\""}",56741,0,"""Africa""" +2024-05-30,55788,3887,"[\""Laptop\"", \""Tablet\""]",3361.79,"{\""loyalty\"": \""12%\""}",166233,0,"""Europe""" +2023-06-06,55789,4397,"[\""Monitor\"", \""Laptop\""]",1710.83,{},100541,1,"""Europe""" +2024-08-01,55790,1000,"[\""Phone\"", \""Tablet\""]",3409.8,"{\""loyalty\"": \""14%\""}",1331,1,"""South America""" +2024-12-26,55791,2574,"[\""Laptop\"", \""Tablet\""]",2458.8,{},138008,0,"""Europe""" +2024-03-25,55792,7536,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4498.23,{},58152,1,"""Africa""" +2024-07-11,55793,1548,"[\""Phone\""]",4827.84,{},218807,1,"""South America""" +2024-12-21,55794,5180,"[\""Headphones\"", \""Tablet\""]",2167.1,"{\"": \""8%\""}",168042,1,"""Europe""" +2024-06-14,55795,9223,"[\""Monitor\"", \""Phone\""]",3083.17,{},260643,0,"""South America""" +2023-07-06,55796,527,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",995.35,"{\""promo\"": \""13%\""}",291496,0,"""Africa""" +2023-12-21,55797,7389,"[\""Charger\"", \""Monitor\""]",894.25,"{\"": \""22%\""}",278516,1,"""Asia""" +2023-02-05,55798,8098,"[\""Phone\"", \""Keyboard\""]",801.01,"{\""loyalty\"": \""16%\""}",5650,0,"""Asia""" +2024-04-30,55799,1868,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1522.11,{},9173,0,"""Asia""" +2023-01-16,55800,2852,"[\""Phone\"", \""Charger\""]",4462.52,"{\""promo\"": \""15%\""}",224948,1,"""South America""" +2024-06-24,55801,4246,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1144.71,"{\"": \""15%\""}",111809,1,"""South America""" +2024-04-04,55802,3332,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4278.06,{},50084,0,"""South America""" +2024-10-14,55803,5949,"[\""Keyboard\"", \""Wireless Mouse\""]",4183.5,"{\""seasonal\"": \""6%\""}",11567,0,"""North America""" +2024-11-01,55804,6582,"[\""Phone\"", \""Keyboard\""]",3282.54,"{\""loyalty\"": \""17%\""}",143911,0,"""South America""" +2023-04-18,55805,3588,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2669.41,"{\"": \""6%\""}",185080,1,"""South America""" +2023-06-05,55806,8296,"[\""Headphones\"", \""Wireless Mouse\""]",1249.59,"{\"": \""9%\""}",241965,0,"""Asia""" +2023-12-26,55807,525,"[\""Tablet\"", \""Headphones\""]",1330.9,{},132736,1,"""Africa""" +2023-03-06,55808,3261,"[\""Headphones\""]",4126.38,"{\""promo\"": \""11%\""}",84102,1,"""Africa""" +2023-05-10,55809,6804,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3296.59,{},96780,1,"""Europe""" +2023-06-29,55810,4995,"[\""Tablet\"", \""Monitor\""]",3882.76,"{\"": \""12%\""}",76503,1,"""Europe""" +2023-05-04,55811,8163,"[\""Wireless Mouse\""]",3622.59,{},22317,1,"""Europe""" +2024-10-12,55812,7766,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4546.63,{},290013,1,"""Europe""" +2023-04-25,55813,2485,"[\""Phone\"", \""Tablet\""]",3967.25,"{\"": \""16%\""}",39508,0,"""South America""" +2024-05-26,55814,4037,"[\""Phone\"", \""Wireless Mouse\""]",2698.77,{},175317,0,"""North America""" +2023-01-28,55815,5822,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4305.15,{},18232,1,"""Europe""" +2024-08-21,55816,8790,"[\""Headphones\""]",2065.31,{},3422,0,"""Asia""" +2024-03-24,55817,8657,"[\""Keyboard\""]",3740.71,{},217688,0,"""Asia""" +2024-06-21,55818,6784,"[\""Tablet\"", \""Monitor\""]",130.84,"{\"": \""20%\""}",131481,0,"""Europe""" +2024-09-14,55819,8090,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1372.74,"{\""loyalty\"": \""8%\""}",124755,0,"""Africa""" +2023-12-07,55820,1493,"[\""Charger\"", \""Keyboard\""]",1573.1,{},166709,0,"""Europe""" +2024-05-14,55821,5282,"[\""Monitor\""]",383.57,"{\""loyalty\"": \""29%\""}",75246,0,"""Africa""" +2023-10-13,55822,4687,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2201.75,"{\""seasonal\"": \""29%\""}",67164,0,"""North America""" +2024-09-28,55823,9156,"[\""Phone\"", \""Wireless Mouse\""]",2292.45,"{\"": \""6%\""}",274691,1,"""South America""" +2023-01-30,55824,4787,"[\""Monitor\""]",1483.43,"{\""loyalty\"": \""23%\""}",113413,0,"""North America""" +2024-12-22,55825,2280,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2430.17,{},184209,0,"""Europe""" +2024-07-20,55826,5612,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2321.49,{},289860,1,"""Asia""" +2023-11-24,55827,2523,"[\""Charger\""]",1013.34,{},286103,1,"""South America""" +2023-03-29,55828,6444,"[\""Keyboard\"", \""Monitor\""]",1369.39,"{\""loyalty\"": \""24%\""}",47314,1,"""South America""" +2024-02-11,55829,5452,"[\""Wireless Mouse\""]",3379.83,"{\""seasonal\"": \""28%\""}",192906,1,"""South America""" +2023-01-01,55830,1372,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1280.91,"{\"": \""5%\""}",253196,1,"""Europe""" +2024-07-01,55831,2355,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4483.74,{},202062,1,"""Asia""" +2024-12-16,55832,963,"[\""Laptop\""]",347.92,{},169962,1,"""Africa""" +2024-08-08,55833,3110,"[\""Charger\"", \""Laptop\""]",1079.78,{},36094,0,"""Africa""" +2024-12-27,55834,1007,"[\""Keyboard\""]",2659.9,{},4211,0,"""North America""" +2023-06-29,55835,8259,"[\""Tablet\"", \""Headphones\""]",822.19,"{\""promo\"": \""18%\""}",195373,0,"""South America""" +2023-05-06,55836,7767,"[\""Monitor\""]",1943.02,"{\"": \""12%\""}",153348,0,"""Asia""" +2023-09-19,55837,6989,"[\""Monitor\"", \""Charger\""]",1971.8,"{\"": \""25%\""}",87320,1,"""North America""" +2023-09-29,55838,2977,"[\""Headphones\""]",1294.95,"{\"": \""24%\""}",286951,1,"""Africa""" +2023-01-06,55839,5840,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",605.12,"{\""loyalty\"": \""20%\""}",234315,0,"""Asia""" +2023-09-13,55840,9123,"[\""Wireless Mouse\""]",3559.95,{},54896,1,"""South America""" +2023-01-05,55841,9513,"[\""Wireless Mouse\"", \""Laptop\""]",536.1,{},284379,1,"""Africa""" +2024-02-07,55842,231,"[\""Monitor\"", \""Phone\""]",1037.62,{},44683,1,"""North America""" +2024-03-22,55843,4422,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4066.75,"{\""loyalty\"": \""30%\""}",263418,1,"""North America""" +2024-11-21,55844,5639,"[\""Wireless Mouse\"", \""Headphones\""]",825.33,{},184643,1,"""South America""" +2024-12-17,55845,8235,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1798.26,"{\""promo\"": \""20%\""}",181566,0,"""South America""" +2024-11-23,55846,1900,"[\""Monitor\"", \""Wireless Mouse\""]",3409.74,{},29013,0,"""South America""" +2024-06-12,55847,4185,"[\""Tablet\"", \""Charger\""]",118.71,{},222907,0,"""Europe""" +2024-06-04,55848,5027,"[\""Headphones\""]",2203.92,{},83955,1,"""South America""" +2023-05-14,55849,9283,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1572.04,"{\""seasonal\"": \""17%\""}",184229,0,"""Africa""" +2024-09-17,55850,3053,"[\""Phone\"", \""Laptop\""]",865.53,{},230293,0,"""South America""" +2024-06-16,55851,4705,"[\""Phone\"", \""Wireless Mouse\""]",601.14,{},288806,0,"""South America""" +2023-01-19,55852,5790,"[\""Laptop\"", \""Tablet\""]",2477.1,"{\"": \""29%\""}",73473,0,"""Africa""" +2024-06-14,55853,9824,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3911.26,{},61606,0,"""North America""" +2023-08-04,55854,4780,"[\""Laptop\"", \""Keyboard\""]",4915.5,{},117812,0,"""North America""" +2024-11-22,55855,2697,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4820.61,"{\""promo\"": \""20%\""}",13258,0,"""Africa""" +2023-08-28,55856,649,"[\""Keyboard\"", \""Tablet\""]",2370.53,"{\"": \""10%\""}",134531,1,"""Asia""" +2024-08-10,55857,5190,"[\""Monitor\""]",1159.4,{},261191,0,"""Asia""" +2023-08-04,55858,356,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3916.65,{},14370,1,"""North America""" +2024-04-16,55859,2528,"[\""Laptop\"", \""Tablet\""]",628.65,{},225760,0,"""North America""" +2024-06-07,55860,1974,"[\""Keyboard\"", \""Tablet\""]",748.08,"{\""loyalty\"": \""9%\""}",162593,1,"""Europe""" +2023-05-23,55861,1668,"[\""Phone\""]",4571.33,{},170850,1,"""Africa""" +2023-06-11,55862,2107,"[\""Phone\""]",2614.58,{},170240,1,"""Africa""" +2023-06-26,55863,2691,"[\""Laptop\"", \""Keyboard\""]",4657.76,"{\"": \""16%\""}",267762,0,"""Asia""" +2023-01-23,55864,8914,"[\""Monitor\""]",2759.06,"{\""seasonal\"": \""12%\""}",48577,0,"""Europe""" +2024-11-28,55865,2684,"[\""Phone\""]",4287.86,"{\""loyalty\"": \""30%\""}",18380,1,"""North America""" +2023-05-19,55866,9549,"[\""Keyboard\""]",722.21,"{\"": \""18%\""}",54057,1,"""Africa""" +2024-06-12,55867,7832,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1039.85,"{\""promo\"": \""15%\""}",285153,0,"""Europe""" +2023-12-19,55868,4650,"[\""Keyboard\"", \""Tablet\""]",3124.5,"{\""loyalty\"": \""7%\""}",203479,1,"""Asia""" +2023-01-07,55869,9561,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2086.93,"{\""seasonal\"": \""12%\""}",66555,1,"""Asia""" +2024-01-21,55870,9673,"[\""Monitor\"", \""Laptop\""]",4336.65,{},264360,1,"""Europe""" +2024-09-02,55871,6905,"[\""Phone\"", \""Charger\""]",4314.15,{},87150,1,"""Asia""" +2024-11-01,55872,4421,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3590.76,"{\""promo\"": \""19%\""}",270967,1,"""Europe""" +2024-08-24,55873,1486,"[\""Tablet\""]",3384.92,{},216260,1,"""Europe""" +2023-09-29,55874,2293,"[\""Phone\""]",4982.2,"{\""loyalty\"": \""22%\""}",103017,1,"""Asia""" +2023-12-24,55875,1347,"[\""Laptop\"", \""Phone\""]",4472.1,"{\""loyalty\"": \""20%\""}",215966,1,"""South America""" +2024-02-27,55876,8623,"[\""Headphones\"", \""Monitor\""]",3608.67,"{\""promo\"": \""30%\""}",8466,1,"""Asia""" +2024-07-13,55877,2534,"[\""Keyboard\""]",793.09,{},1123,0,"""North America""" +2023-06-03,55878,421,"[\""Laptop\"", \""Keyboard\""]",3119.09,{},242257,0,"""South America""" +2024-07-09,55879,9812,"[\""Charger\""]",4114.83,{},9119,0,"""North America""" +2023-07-27,55880,1669,"[\""Keyboard\"", \""Charger\""]",3985.4,"{\"": \""8%\""}",187180,0,"""South America""" +2023-01-23,55881,5167,"[\""Laptop\""]",3479.65,"{\""seasonal\"": \""24%\""}",120272,0,"""Africa""" +2023-07-29,55882,7850,"[\""Tablet\""]",3792.83,"{\""loyalty\"": \""13%\""}",229542,0,"""Asia""" +2024-07-22,55883,3781,"[\""Headphones\"", \""Monitor\""]",665.93,{},50876,1,"""Europe""" +2023-06-01,55884,2131,"[\""Charger\"", \""Headphones\""]",4899.69,{},181627,0,"""Europe""" +2023-07-30,55885,4439,"[\""Phone\""]",3437.29,{},142832,0,"""Africa""" +2023-06-01,55886,7204,"[\""Monitor\""]",2247.57,{},254939,0,"""Europe""" +2023-02-07,55887,8216,"[\""Monitor\""]",2121.28,{},162656,1,"""Africa""" +2023-06-26,55888,3320,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4822.96,{},295763,1,"""Europe""" +2024-01-01,55889,6095,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1724.06,"{\"": \""22%\""}",206611,0,"""Africa""" +2024-02-19,55890,7615,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",767.91,"{\""seasonal\"": \""5%\""}",77852,0,"""Asia""" +2024-12-12,55891,6488,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4663.19,"{\""seasonal\"": \""6%\""}",146129,0,"""Asia""" +2023-04-12,55892,8537,"[\""Headphones\"", \""Monitor\""]",4343.82,"{\"": \""5%\""}",174608,0,"""South America""" +2023-10-12,55893,5466,"[\""Wireless Mouse\""]",4947.07,"{\""promo\"": \""12%\""}",169974,1,"""North America""" +2024-09-19,55894,4081,"[\""Laptop\"", \""Wireless Mouse\""]",4508.29,{},40157,0,"""South America""" +2023-10-07,55895,9956,"[\""Charger\""]",441.9,"{\"": \""6%\""}",150042,0,"""Africa""" +2023-12-04,55896,4096,"[\""Keyboard\"", \""Laptop\""]",1849.75,"{\""promo\"": \""27%\""}",59073,1,"""Africa""" +2023-08-18,55897,3727,"[\""Wireless Mouse\"", \""Charger\""]",2261.07,{},213340,0,"""Europe""" +2024-01-22,55898,6478,"[\""Laptop\""]",2341.35,{},266724,1,"""North America""" +2024-08-11,55899,8511,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2689.69,{},279436,1,"""Europe""" +2024-12-10,55900,1570,"[\""Laptop\"", \""Monitor\""]",3672.4,{},135482,0,"""Asia""" +2024-07-02,55901,5468,"[\""Wireless Mouse\""]",4841.94,"{\"": \""26%\""}",18707,0,"""South America""" +2024-07-25,55902,4143,"[\""Laptop\""]",1024.7,{},257306,0,"""Asia""" +2023-01-12,55903,6354,"[\""Laptop\"", \""Keyboard\""]",4336.27,{},233034,0,"""Asia""" +2023-12-04,55904,7480,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2657.64,"{\"": \""26%\""}",233889,1,"""Europe""" +2023-09-06,55905,8352,"[\""Phone\"", \""Wireless Mouse\""]",3020.69,"{\""loyalty\"": \""25%\""}",103241,1,"""Asia""" +2023-10-19,55906,3588,"[\""Laptop\""]",1750.41,"{\""seasonal\"": \""8%\""}",190057,1,"""Europe""" +2024-01-24,55907,6195,"[\""Keyboard\""]",1448.14,{},78083,0,"""North America""" +2024-04-14,55908,4654,"[\""Keyboard\"", \""Headphones\""]",2881.27,"{\"": \""23%\""}",159616,0,"""Asia""" +2024-12-01,55909,7383,"[\""Keyboard\"", \""Monitor\""]",3400.69,{},246619,1,"""South America""" +2023-10-12,55910,4797,"[\""Keyboard\""]",4973.1,{},167062,1,"""Europe""" +2023-04-05,55911,5919,"[\""Keyboard\"", \""Wireless Mouse\""]",1239.68,{},45021,0,"""Africa""" +2023-02-02,55912,2415,"[\""Phone\""]",4565.6,"{\""seasonal\"": \""13%\""}",231049,0,"""Asia""" +2023-12-02,55913,8280,"[\""Laptop\""]",1475.32,{},60877,0,"""Asia""" +2024-04-28,55914,6868,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3624.12,{},270519,1,"""Africa""" +2023-05-02,55915,8676,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2450.26,"{\""seasonal\"": \""20%\""}",258634,0,"""North America""" +2024-11-28,55916,4456,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3799.24,"{\"": \""15%\""}",49524,1,"""North America""" +2024-11-25,55917,8441,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3752.97,"{\""promo\"": \""30%\""}",50958,1,"""North America""" +2024-05-09,55918,7041,"[\""Keyboard\""]",837.9,"{\"": \""28%\""}",126230,1,"""Europe""" +2024-10-16,55919,9371,"[\""Laptop\"", \""Phone\""]",4624.48,"{\""promo\"": \""14%\""}",278971,0,"""Asia""" +2024-08-19,55920,1309,"[\""Keyboard\"", \""Laptop\""]",3675.29,"{\""promo\"": \""12%\""}",11872,1,"""Africa""" +2024-12-05,55921,6921,"[\""Monitor\"", \""Tablet\""]",3215.72,{},161329,0,"""Asia""" +2024-09-24,55922,1319,"[\""Monitor\""]",1523.9,{},251032,0,"""South America""" +2023-12-04,55923,2273,"[\""Headphones\""]",3666.37,"{\""loyalty\"": \""20%\""}",137527,1,"""North America""" +2023-11-20,55924,4072,"[\""Phone\"", \""Keyboard\""]",4827.99,"{\"": \""23%\""}",102583,1,"""Europe""" +2024-04-06,55925,8717,"[\""Phone\""]",1531.44,{},272092,1,"""North America""" +2024-09-10,55926,844,"[\""Charger\""]",691.12,{},179747,1,"""Europe""" +2024-09-20,55927,9734,"[\""Tablet\"", \""Laptop\""]",3518.64,"{\""seasonal\"": \""10%\""}",288663,0,"""Europe""" +2024-08-10,55928,7591,"[\""Laptop\""]",1594.26,{},6082,0,"""Africa""" +2023-04-12,55929,3664,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2018.07,{},65290,1,"""Africa""" +2024-10-26,55930,4693,"[\""Keyboard\""]",4093.86,"{\""seasonal\"": \""20%\""}",110588,1,"""Asia""" +2023-08-20,55931,9788,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2939.81,{},21549,0,"""Europe""" +2023-05-03,55932,3848,"[\""Wireless Mouse\""]",548.29,"{\""promo\"": \""22%\""}",26213,0,"""Asia""" +2023-11-03,55933,37,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3436.49,{},27793,0,"""Europe""" +2023-09-03,55934,2225,"[\""Keyboard\"", \""Laptop\""]",4974.69,{},29991,1,"""North America""" +2023-10-22,55935,7841,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3745.92,{},89865,0,"""North America""" +2023-07-22,55936,366,"[\""Charger\""]",4181.26,{},182075,1,"""North America""" +2024-12-01,55937,7403,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1241.76,{},282913,0,"""South America""" +2024-05-09,55938,1578,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2723.47,"{\""promo\"": \""13%\""}",255828,0,"""North America""" +2024-06-10,55939,3360,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1320.7,{},18345,1,"""South America""" +2023-01-03,55940,119,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1709.51,{},146290,1,"""Europe""" +2023-10-27,55941,834,"[\""Charger\"", \""Wireless Mouse\""]",2371.01,{},296753,0,"""Africa""" +2024-02-26,55942,7103,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1651.01,{},149035,1,"""Europe""" +2024-06-29,55943,2726,"[\""Phone\""]",439.97,"{\""seasonal\"": \""21%\""}",158226,1,"""Africa""" +2024-12-13,55944,7117,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2782.34,"{\"": \""24%\""}",153608,1,"""Europe""" +2023-08-10,55945,3367,"[\""Keyboard\""]",3621.66,{},10484,0,"""Europe""" +2024-03-07,55946,9837,"[\""Monitor\""]",4650.11,"{\""seasonal\"": \""18%\""}",57390,0,"""North America""" +2024-04-01,55947,2174,"[\""Phone\"", \""Laptop\""]",497.15,{},245759,0,"""Africa""" +2024-06-29,55948,7358,"[\""Monitor\"", \""Phone\""]",4774.75,{},268660,1,"""Asia""" +2024-10-01,55949,3596,"[\""Wireless Mouse\"", \""Keyboard\""]",3487.57,{},14329,1,"""North America""" +2023-03-25,55950,6418,"[\""Charger\"", \""Laptop\""]",3650.46,"{\"": \""26%\""}",51150,1,"""Europe""" +2023-09-29,55951,2503,"[\""Phone\"", \""Charger\""]",4506.75,"{\""seasonal\"": \""9%\""}",118617,0,"""South America""" +2024-03-05,55952,6578,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4119.17,"{\""promo\"": \""12%\""}",15560,0,"""Asia""" +2024-02-08,55953,7078,"[\""Charger\"", \""Wireless Mouse\""]",3721.0,{},260549,0,"""South America""" +2023-06-23,55954,9971,"[\""Tablet\""]",3372.89,"{\""seasonal\"": \""12%\""}",235504,0,"""Europe""" +2023-01-13,55955,6395,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3547.9,"{\"": \""7%\""}",76673,0,"""South America""" +2023-11-09,55956,2792,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",332.11,"{\""promo\"": \""30%\""}",36722,1,"""Africa""" +2024-08-15,55957,5520,"[\""Headphones\"", \""Monitor\""]",4895.34,{},119220,0,"""Europe""" +2023-04-13,55958,2642,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",875.26,{},61770,0,"""South America""" +2023-11-22,55959,3638,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1253.33,"{\""seasonal\"": \""28%\""}",159270,0,"""Asia""" +2023-10-17,55960,8300,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2172.7,{},195759,1,"""Asia""" +2024-03-09,55961,4869,"[\""Phone\""]",4877.87,"{\""seasonal\"": \""7%\""}",213688,0,"""Asia""" +2023-05-04,55962,6104,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2447.58,{},115385,1,"""Africa""" +2024-12-14,55963,1483,"[\""Laptop\"", \""Headphones\""]",4947.13,"{\""seasonal\"": \""5%\""}",235044,1,"""Africa""" +2024-03-11,55964,1751,"[\""Phone\"", \""Charger\""]",688.33,{},80001,1,"""North America""" +2024-10-21,55965,2283,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",422.53,"{\""loyalty\"": \""24%\""}",67056,1,"""Africa""" +2023-06-12,55966,1116,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4841.55,{},242966,1,"""Asia""" +2023-04-30,55967,4369,"[\""Headphones\""]",2581.85,"{\""seasonal\"": \""29%\""}",290467,1,"""North America""" +2024-03-24,55968,35,"[\""Tablet\"", \""Charger\""]",1406.22,{},149474,1,"""South America""" +2024-05-15,55969,1233,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1739.5,"{\""loyalty\"": \""8%\""}",22112,0,"""North America""" +2023-03-10,55970,3662,"[\""Phone\"", \""Laptop\""]",871.73,{},40061,1,"""Africa""" +2024-01-25,55971,3396,"[\""Tablet\"", \""Wireless Mouse\""]",2600.61,{},46819,0,"""Asia""" +2024-12-20,55972,1081,"[\""Charger\"", \""Tablet\""]",1409.26,{},114552,1,"""North America""" +2023-07-14,55973,8658,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",456.16,{},101301,1,"""Africa""" +2023-12-16,55974,3269,"[\""Wireless Mouse\""]",188.35,{},187248,1,"""Africa""" +2024-12-15,55975,5246,"[\""Charger\"", \""Wireless Mouse\""]",3441.78,"{\""loyalty\"": \""26%\""}",187380,1,"""North America""" +2024-10-12,55976,5360,"[\""Laptop\"", \""Keyboard\""]",4846.3,{},130114,0,"""Asia""" +2023-08-16,55977,8299,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3942.59,{},123456,1,"""Africa""" +2023-06-28,55978,3560,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4677.28,{},290936,0,"""Africa""" +2023-01-30,55979,7151,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",376.05,{},196936,1,"""Africa""" +2024-10-17,55980,2374,"[\""Charger\"", \""Keyboard\""]",3150.86,"{\"": \""17%\""}",8783,0,"""South America""" +2024-07-25,55981,7850,"[\""Keyboard\"", \""Laptop\""]",439.7,"{\""loyalty\"": \""16%\""}",26177,0,"""Africa""" +2023-05-28,55982,995,"[\""Tablet\"", \""Monitor\""]",4928.34,{},277821,1,"""Africa""" +2024-07-08,55983,44,"[\""Phone\"", \""Laptop\""]",4581.04,{},266041,1,"""Europe""" +2024-08-03,55984,7539,"[\""Charger\""]",1474.12,"{\""loyalty\"": \""13%\""}",13978,0,"""North America""" +2024-05-31,55985,5225,"[\""Monitor\""]",3211.08,"{\""promo\"": \""7%\""}",71360,1,"""North America""" +2023-11-14,55986,2731,"[\""Tablet\"", \""Laptop\""]",3619.34,"{\""seasonal\"": \""20%\""}",91850,1,"""South America""" +2023-06-18,55987,4335,"[\""Phone\"", \""Monitor\""]",4302.94,{},121755,1,"""South America""" +2023-02-07,55988,3435,"[\""Headphones\""]",3680.69,"{\"": \""10%\""}",104374,1,"""Asia""" +2024-06-24,55989,7129,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1863.84,{},156621,1,"""Africa""" +2023-11-13,55990,5577,"[\""Charger\""]",3958.56,{},250282,0,"""South America""" +2023-06-05,55991,4436,"[\""Headphones\"", \""Charger\""]",2616.0,{},225638,1,"""North America""" +2024-11-12,55992,924,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3358.89,"{\""promo\"": \""7%\""}",80102,1,"""Asia""" +2024-07-12,55993,9311,"[\""Headphones\""]",1032.75,{},52015,0,"""Africa""" +2024-01-29,55994,9141,"[\""Monitor\"", \""Headphones\""]",805.36,{},58346,1,"""South America""" +2024-11-22,55995,5242,"[\""Phone\""]",569.72,"{\"": \""26%\""}",148222,0,"""North America""" +2023-03-30,55996,1106,"[\""Charger\"", \""Monitor\""]",2547.79,{},129669,0,"""Asia""" +2023-06-20,55997,4757,"[\""Monitor\""]",3897.02,{},245278,1,"""South America""" +2024-07-16,55998,5981,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2787.29,{},119628,0,"""North America""" +2023-03-19,55999,6989,"[\""Phone\""]",1042.59,{},52771,1,"""Africa""" +2023-02-10,56000,6382,"[\""Phone\""]",878.86,"{\"": \""6%\""}",63332,1,"""Europe""" +2024-06-23,56001,3588,"[\""Headphones\"", \""Wireless Mouse\""]",2272.2,"{\""seasonal\"": \""16%\""}",222619,0,"""Asia""" +2024-01-30,56002,7244,"[\""Tablet\""]",192.16,{},281864,0,"""Europe""" +2023-07-06,56003,7153,"[\""Wireless Mouse\"", \""Phone\""]",2297.44,"{\""loyalty\"": \""25%\""}",111492,0,"""Asia""" +2024-06-09,56004,3371,"[\""Phone\""]",1252.68,"{\""seasonal\"": \""13%\""}",218018,1,"""Africa""" +2024-10-18,56005,2470,"[\""Phone\""]",102.21,"{\""promo\"": \""29%\""}",27868,0,"""Africa""" +2023-11-17,56006,877,"[\""Wireless Mouse\"", \""Charger\""]",2332.38,"{\""loyalty\"": \""15%\""}",67354,1,"""Europe""" +2024-01-07,56007,5549,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",614.37,"{\""loyalty\"": \""27%\""}",183632,0,"""South America""" +2024-10-08,56008,7227,"[\""Laptop\""]",4678.06,{},49935,0,"""South America""" +2024-04-16,56009,3431,"[\""Keyboard\""]",4112.73,"{\""seasonal\"": \""17%\""}",233911,1,"""Asia""" +2023-08-25,56010,8612,"[\""Charger\"", \""Wireless Mouse\""]",4864.77,"{\""seasonal\"": \""30%\""}",209738,0,"""North America""" +2024-11-09,56011,8962,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",932.24,"{\""loyalty\"": \""7%\""}",120286,1,"""North America""" +2024-03-20,56012,270,"[\""Tablet\"", \""Headphones\""]",852.81,"{\""loyalty\"": \""10%\""}",243891,0,"""Asia""" +2024-07-22,56013,9194,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3132.54,{},179072,0,"""Asia""" +2023-10-30,56014,4625,"[\""Phone\""]",3889.3,"{\"": \""20%\""}",112717,1,"""North America""" +2024-05-03,56015,8252,"[\""Wireless Mouse\"", \""Keyboard\""]",837.83,"{\""seasonal\"": \""23%\""}",2030,0,"""Europe""" +2023-03-06,56016,1145,"[\""Phone\"", \""Headphones\""]",4379.25,{},179958,0,"""Asia""" +2024-03-15,56017,9080,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",604.86,"{\""loyalty\"": \""20%\""}",25865,0,"""South America""" +2023-08-10,56018,7485,"[\""Wireless Mouse\"", \""Phone\""]",3887.56,{},166810,1,"""Asia""" +2024-05-02,56019,5251,"[\""Tablet\""]",4867.73,{},31055,0,"""Africa""" +2023-11-14,56020,7188,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1123.08,{},257351,0,"""South America""" +2023-02-25,56021,2980,"[\""Phone\""]",2088.07,"{\"": \""18%\""}",23172,1,"""South America""" +2023-03-07,56022,9992,"[\""Tablet\""]",2201.65,{},183520,1,"""North America""" +2024-12-01,56023,6578,"[\""Wireless Mouse\"", \""Charger\""]",3332.71,"{\"": \""13%\""}",227265,1,"""Asia""" +2024-09-03,56024,4894,"[\""Wireless Mouse\"", \""Phone\""]",1172.69,{},264156,0,"""South America""" +2023-10-20,56025,4868,"[\""Phone\""]",4664.27,{},133692,1,"""North America""" +2023-06-20,56026,6819,"[\""Monitor\"", \""Charger\""]",3018.26,"{\""loyalty\"": \""9%\""}",250021,0,"""North America""" +2024-07-12,56027,6675,"[\""Phone\"", \""Wireless Mouse\""]",4705.17,"{\"": \""23%\""}",156385,0,"""South America""" +2024-12-07,56028,5758,"[\""Phone\""]",3400.44,{},170874,1,"""Africa""" +2024-02-10,56029,3328,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",492.3,{},14603,0,"""North America""" +2024-07-07,56030,1074,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1109.88,{},56494,0,"""Africa""" +2023-05-21,56031,9532,"[\""Laptop\"", \""Monitor\""]",207.19,{},92432,0,"""South America""" +2024-09-10,56032,9517,"[\""Charger\"", \""Phone\""]",3801.6,"{\""promo\"": \""14%\""}",117164,1,"""Africa""" +2023-12-28,56033,1190,"[\""Wireless Mouse\"", \""Phone\""]",2018.53,{},198270,0,"""South America""" +2024-08-04,56034,2321,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3238.36,{},195461,1,"""South America""" +2023-01-28,56035,6279,"[\""Headphones\""]",144.2,"{\""seasonal\"": \""27%\""}",235551,0,"""North America""" +2023-11-15,56036,6207,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3428.58,"{\""promo\"": \""18%\""}",202140,1,"""Asia""" +2024-09-14,56037,8087,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4134.14,"{\""loyalty\"": \""14%\""}",88064,0,"""Africa""" +2023-05-30,56038,9938,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1881.95,{},71479,1,"""North America""" +2024-04-07,56039,2963,"[\""Laptop\""]",4417.25,"{\"": \""26%\""}",279270,0,"""Europe""" +2024-08-28,56040,4660,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",860.95,{},255150,0,"""Europe""" +2023-05-17,56041,3336,"[\""Charger\"", \""Laptop\""]",687.47,{},124901,1,"""Asia""" +2024-02-02,56042,8365,"[\""Laptop\"", \""Phone\""]",2193.22,{},232292,0,"""Asia""" +2023-02-07,56043,418,"[\""Charger\""]",2583.77,{},172698,1,"""South America""" +2024-03-27,56044,913,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2435.61,"{\""seasonal\"": \""7%\""}",254027,0,"""Africa""" +2023-12-30,56045,5098,"[\""Laptop\""]",2773.81,"{\""seasonal\"": \""17%\""}",282813,1,"""North America""" +2023-12-12,56046,966,"[\""Headphones\""]",2866.81,"{\""promo\"": \""9%\""}",282880,0,"""Asia""" +2024-11-13,56047,2394,"[\""Keyboard\""]",1495.1,"{\""loyalty\"": \""6%\""}",19741,1,"""Africa""" +2023-04-27,56048,6065,"[\""Charger\""]",4324.72,"{\""seasonal\"": \""27%\""}",4018,1,"""Europe""" +2024-11-21,56049,1177,"[\""Tablet\""]",2140.92,{},201638,0,"""Africa""" +2023-10-06,56050,5318,"[\""Tablet\"", \""Headphones\""]",2312.75,{},269002,0,"""North America""" +2024-11-15,56051,6453,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3953.0,{},194920,0,"""North America""" +2024-02-21,56052,389,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1157.1,"{\"": \""19%\""}",207674,0,"""Africa""" +2023-06-09,56053,9637,"[\""Tablet\"", \""Phone\""]",3080.75,"{\""seasonal\"": \""20%\""}",104392,0,"""Africa""" +2023-01-04,56054,8656,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1445.24,"{\"": \""24%\""}",293500,0,"""Europe""" +2024-08-04,56055,3174,"[\""Monitor\""]",3494.0,"{\""seasonal\"": \""29%\""}",117685,1,"""Asia""" +2023-02-25,56056,8674,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1767.52,{},119612,1,"""South America""" +2023-08-09,56057,5797,"[\""Wireless Mouse\"", \""Monitor\""]",722.25,{},230790,0,"""North America""" +2023-06-07,56058,9509,"[\""Monitor\"", \""Tablet\""]",657.08,"{\""loyalty\"": \""21%\""}",16796,0,"""Europe""" +2023-10-30,56059,7555,"[\""Monitor\"", \""Headphones\""]",3537.95,{},23145,0,"""Africa""" +2023-07-20,56060,6614,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3508.93,"{\""promo\"": \""30%\""}",258417,1,"""Africa""" +2024-09-24,56061,5559,"[\""Phone\""]",2008.16,"{\""loyalty\"": \""20%\""}",235034,0,"""North America""" +2024-10-04,56062,5092,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2651.33,"{\""promo\"": \""28%\""}",61234,0,"""Europe""" +2023-12-25,56063,887,"[\""Headphones\"", \""Phone\""]",2607.87,"{\""loyalty\"": \""12%\""}",255096,1,"""Africa""" +2023-09-19,56064,150,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1246.99,"{\""promo\"": \""28%\""}",53653,0,"""South America""" +2024-03-16,56065,9292,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1456.01,{},79239,1,"""North America""" +2023-02-09,56066,7424,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3697.95,"{\""seasonal\"": \""23%\""}",12548,1,"""Europe""" +2023-12-03,56067,1433,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4548.29,{},278456,0,"""Europe""" +2024-12-28,56068,3801,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4411.05,"{\""loyalty\"": \""19%\""}",283622,0,"""North America""" +2023-06-30,56069,967,"[\""Tablet\""]",3473.48,"{\""seasonal\"": \""8%\""}",160962,1,"""North America""" +2024-12-03,56070,8393,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1757.9,"{\""promo\"": \""12%\""}",22854,1,"""South America""" +2023-04-08,56071,2129,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3880.27,{},114308,1,"""Europe""" +2024-03-06,56072,395,"[\""Charger\"", \""Headphones\""]",1042.12,"{\""seasonal\"": \""6%\""}",159967,0,"""Asia""" +2024-12-17,56073,5025,"[\""Monitor\"", \""Tablet\""]",3000.31,"{\""loyalty\"": \""21%\""}",67877,1,"""Africa""" +2024-05-09,56074,3229,"[\""Monitor\"", \""Laptop\""]",2630.94,{},103690,0,"""Africa""" +2024-11-27,56075,9635,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3991.89,{},91437,0,"""North America""" +2023-06-27,56076,592,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4733.36,"{\""promo\"": \""23%\""}",247350,1,"""South America""" +2023-06-27,56077,3414,"[\""Wireless Mouse\""]",4544.38,{},248013,0,"""South America""" +2023-02-25,56078,6628,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1826.76,"{\""promo\"": \""30%\""}",54143,0,"""North America""" +2023-04-29,56079,7062,"[\""Wireless Mouse\"", \""Laptop\""]",2255.57,{},272869,1,"""Africa""" +2024-05-10,56080,8468,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1128.87,{},228488,0,"""South America""" +2023-06-22,56081,9723,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2343.42,{},260567,1,"""Asia""" +2024-08-08,56082,1867,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3106.31,"{\""seasonal\"": \""28%\""}",293791,0,"""Europe""" +2023-02-07,56083,9309,"[\""Monitor\""]",76.0,{},258267,1,"""Asia""" +2023-02-13,56084,6949,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",73.79,"{\""promo\"": \""5%\""}",245554,0,"""Africa""" +2023-07-07,56085,9680,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2215.51,{},71508,1,"""Asia""" +2024-02-21,56086,8048,"[\""Tablet\"", \""Headphones\""]",2688.32,{},292821,0,"""Asia""" +2024-12-11,56087,5502,"[\""Monitor\""]",2875.97,{},141510,1,"""South America""" +2023-07-23,56088,5483,"[\""Monitor\""]",1447.05,{},120338,0,"""Europe""" +2023-03-29,56089,7002,"[\""Wireless Mouse\"", \""Laptop\""]",4539.51,"{\""loyalty\"": \""6%\""}",37860,0,"""North America""" +2024-12-02,56090,3979,"[\""Phone\"", \""Laptop\""]",4649.88,"{\"": \""29%\""}",73950,0,"""South America""" +2023-08-16,56091,801,"[\""Tablet\""]",116.53,"{\""loyalty\"": \""5%\""}",174447,0,"""North America""" +2024-10-27,56092,2864,"[\""Wireless Mouse\"", \""Headphones\""]",2738.38,{},221282,0,"""Europe""" +2023-01-10,56093,5871,"[\""Wireless Mouse\"", \""Monitor\""]",3373.5,"{\""seasonal\"": \""7%\""}",147068,1,"""Africa""" +2024-10-17,56094,7873,"[\""Laptop\""]",4803.06,"{\""seasonal\"": \""12%\""}",5200,0,"""Africa""" +2024-07-21,56095,7310,"[\""Tablet\""]",56.68,"{\""seasonal\"": \""14%\""}",276239,0,"""South America""" +2024-08-16,56096,5747,"[\""Keyboard\"", \""Phone\""]",4785.66,"{\"": \""27%\""}",184137,1,"""Africa""" +2023-11-03,56097,514,"[\""Wireless Mouse\"", \""Monitor\""]",3116.68,{},241559,0,"""Europe""" +2024-02-03,56098,6192,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1591.45,"{\"": \""9%\""}",58595,0,"""Europe""" +2024-04-06,56099,1289,"[\""Keyboard\"", \""Charger\""]",4916.38,"{\""seasonal\"": \""30%\""}",115390,0,"""Asia""" +2024-06-23,56100,6843,"[\""Charger\"", \""Tablet\""]",4715.06,"{\""promo\"": \""21%\""}",56592,0,"""Asia""" +2024-08-23,56101,8361,"[\""Charger\""]",1473.81,{},20965,0,"""North America""" +2023-04-09,56102,5841,"[\""Charger\"", \""Monitor\""]",1707.25,{},181287,1,"""South America""" +2024-04-04,56103,744,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1188.23,{},282400,0,"""Europe""" +2023-07-06,56104,3511,"[\""Keyboard\""]",3155.12,"{\""seasonal\"": \""15%\""}",194275,0,"""Europe""" +2024-11-12,56105,3315,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1326.06,"{\""promo\"": \""13%\""}",163453,0,"""North America""" +2024-11-22,56106,1962,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2281.61,{},103978,1,"""Asia""" +2024-12-10,56107,5403,"[\""Laptop\"", \""Headphones\""]",3955.45,{},11493,0,"""South America""" +2024-04-22,56108,1367,"[\""Monitor\""]",1992.02,{},124800,1,"""North America""" +2024-07-01,56109,3850,"[\""Charger\""]",4441.96,{},207640,0,"""Asia""" +2024-02-03,56110,1531,"[\""Headphones\"", \""Wireless Mouse\""]",2113.11,{},144942,0,"""Africa""" +2024-10-13,56111,375,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3748.25,"{\""loyalty\"": \""18%\""}",57989,0,"""Africa""" +2023-04-12,56112,4645,"[\""Charger\""]",511.94,{},38688,0,"""Africa""" +2024-10-07,56113,4176,"[\""Headphones\"", \""Monitor\""]",1199.0,{},21719,0,"""South America""" +2023-08-21,56114,4322,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4361.84,"{\"": \""9%\""}",32784,0,"""Asia""" +2023-11-16,56115,7142,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3462.22,"{\""promo\"": \""29%\""}",205619,1,"""North America""" +2024-12-30,56116,2473,"[\""Monitor\""]",573.06,{},35193,0,"""Asia""" +2024-01-29,56117,955,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",436.15,"{\"": \""25%\""}",283731,1,"""Europe""" +2023-01-20,56118,8275,"[\""Monitor\"", \""Charger\""]",3261.17,{},22200,0,"""Europe""" +2023-03-10,56119,2631,"[\""Tablet\""]",4274.15,"{\""loyalty\"": \""12%\""}",246275,1,"""South America""" +2023-10-16,56120,9767,"[\""Charger\""]",1663.23,"{\""seasonal\"": \""18%\""}",66043,1,"""Europe""" +2024-07-10,56121,6223,"[\""Charger\"", \""Tablet\""]",2841.62,"{\""seasonal\"": \""30%\""}",217824,1,"""Europe""" +2023-02-16,56122,2486,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",932.96,{},289966,0,"""Europe""" +2023-09-06,56123,8914,"[\""Laptop\""]",4513.63,{},17186,1,"""South America""" +2024-01-23,56124,912,"[\""Wireless Mouse\""]",3947.71,{},32011,1,"""Europe""" +2023-01-17,56125,6409,"[\""Wireless Mouse\"", \""Keyboard\""]",1315.0,{},199239,0,"""Asia""" +2023-01-07,56126,4197,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4388.48,"{\"": \""7%\""}",182123,0,"""South America""" +2024-01-19,56127,9118,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4897.02,{},38698,1,"""Europe""" +2023-08-19,56128,3500,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2742.38,"{\""seasonal\"": \""16%\""}",172973,1,"""South America""" +2024-03-13,56129,3411,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1184.6,{},17749,1,"""Africa""" +2024-02-24,56130,9637,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",66.64,{},193524,1,"""Asia""" +2023-07-09,56131,4118,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1006.2,{},298707,1,"""Europe""" +2023-04-08,56132,5335,"[\""Monitor\"", \""Phone\""]",2605.09,{},159022,1,"""Asia""" +2023-12-01,56133,347,"[\""Charger\"", \""Wireless Mouse\""]",3837.55,"{\""promo\"": \""20%\""}",60839,0,"""Asia""" +2023-09-27,56134,4968,"[\""Wireless Mouse\"", \""Phone\""]",1693.17,"{\""promo\"": \""15%\""}",28812,0,"""Asia""" +2023-08-20,56135,1004,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1667.03,{},291269,1,"""Africa""" +2023-10-08,56136,1129,"[\""Wireless Mouse\""]",363.35,"{\"": \""26%\""}",48173,0,"""Asia""" +2023-04-26,56137,6664,"[\""Keyboard\""]",2768.67,"{\"": \""20%\""}",69498,0,"""Africa""" +2024-10-02,56138,4227,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",187.54,{},245382,1,"""North America""" +2023-04-28,56139,6334,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1495.55,"{\""seasonal\"": \""8%\""}",249165,1,"""South America""" +2023-09-21,56140,7100,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3219.63,"{\""promo\"": \""26%\""}",256548,0,"""Asia""" +2024-05-19,56141,4390,"[\""Monitor\"", \""Headphones\""]",2771.23,{},3408,0,"""Asia""" +2023-07-03,56142,8446,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1030.35,"{\"": \""11%\""}",187302,0,"""Europe""" +2024-02-28,56143,3809,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4618.05,"{\"": \""17%\""}",280341,0,"""Africa""" +2024-07-06,56144,5369,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1118.05,"{\""promo\"": \""6%\""}",256976,0,"""Africa""" +2024-01-04,56145,7875,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4881.38,"{\"": \""28%\""}",208567,0,"""Asia""" +2023-09-29,56146,1841,"[\""Monitor\"", \""Charger\""]",2068.68,{},140504,1,"""Africa""" +2023-06-02,56147,741,"[\""Headphones\""]",2059.23,"{\""promo\"": \""29%\""}",61943,1,"""Asia""" +2023-08-17,56148,6144,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4937.33,"{\"": \""28%\""}",81101,1,"""Asia""" +2023-09-03,56149,3469,"[\""Tablet\""]",4054.2,{},74501,1,"""Africa""" +2023-04-14,56150,7732,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3792.46,"{\"": \""24%\""}",62600,0,"""Africa""" +2023-05-30,56151,5984,"[\""Laptop\"", \""Keyboard\""]",448.02,{},6685,0,"""Europe""" +2024-09-08,56152,8912,"[\""Laptop\"", \""Keyboard\""]",1830.42,{},10285,0,"""Asia""" +2023-05-06,56153,555,"[\""Wireless Mouse\"", \""Keyboard\""]",1905.85,{},90034,1,"""North America""" +2024-02-29,56154,5167,"[\""Laptop\""]",4955.81,"{\""promo\"": \""10%\""}",270080,1,"""Europe""" +2023-07-26,56155,5855,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",906.28,"{\""promo\"": \""19%\""}",236436,1,"""Asia""" +2024-01-18,56156,7527,"[\""Wireless Mouse\"", \""Charger\""]",3424.43,"{\"": \""8%\""}",70640,1,"""Africa""" +2023-09-23,56157,8943,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4730.54,{},18511,0,"""North America""" +2023-06-14,56158,1467,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3207.94,"{\""seasonal\"": \""5%\""}",210357,0,"""North America""" +2023-11-16,56159,1166,"[\""Laptop\""]",4735.69,"{\"": \""21%\""}",299240,0,"""North America""" +2024-05-22,56160,8492,"[\""Tablet\""]",3984.98,"{\""loyalty\"": \""18%\""}",251781,1,"""Asia""" +2024-01-20,56161,8764,"[\""Phone\""]",1617.85,{},225738,1,"""North America""" +2023-04-16,56162,9325,"[\""Tablet\"", \""Charger\""]",3036.29,{},145400,0,"""North America""" +2023-04-01,56163,2262,"[\""Laptop\""]",4531.85,"{\"": \""12%\""}",91991,1,"""Africa""" +2023-10-12,56164,5484,"[\""Tablet\"", \""Monitor\""]",4584.28,"{\"": \""6%\""}",139402,1,"""North America""" +2024-02-01,56165,3007,"[\""Charger\""]",2639.8,"{\""promo\"": \""26%\""}",39290,1,"""South America""" +2023-01-15,56166,6265,"[\""Wireless Mouse\"", \""Laptop\""]",2913.0,{},238558,1,"""Europe""" +2024-12-16,56167,217,"[\""Headphones\"", \""Charger\""]",1352.82,"{\"": \""20%\""}",209525,1,"""South America""" +2024-10-30,56168,6236,"[\""Phone\""]",2988.97,"{\"": \""25%\""}",103803,0,"""South America""" +2023-06-14,56169,4330,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1369.37,{},64415,0,"""North America""" +2024-08-16,56170,9321,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2247.81,{},294546,1,"""North America""" +2024-06-27,56171,1704,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4882.22,{},30928,1,"""South America""" +2024-03-13,56172,642,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4783.68,{},21748,0,"""South America""" +2023-07-04,56173,7285,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2430.01,{},121209,1,"""South America""" +2024-05-15,56174,9291,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4932.49,"{\""seasonal\"": \""15%\""}",131817,0,"""Europe""" +2023-03-19,56175,9000,"[\""Tablet\""]",3122.31,"{\""seasonal\"": \""18%\""}",262029,1,"""Africa""" +2024-09-24,56176,1993,"[\""Wireless Mouse\""]",1302.09,{},226721,1,"""Asia""" +2023-07-18,56177,5641,"[\""Headphones\""]",3592.62,{},189556,0,"""Europe""" +2023-05-28,56178,4148,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3100.74,{},17885,1,"""Africa""" +2023-04-09,56179,5624,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1573.08,"{\""promo\"": \""16%\""}",143136,0,"""Europe""" +2023-08-12,56180,2456,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4396.17,{},139786,0,"""North America""" +2023-10-16,56181,3287,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",973.42,{},158773,0,"""North America""" +2024-02-26,56182,1033,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",607.55,{},251891,1,"""North America""" +2024-03-25,56183,7953,"[\""Tablet\""]",2652.47,{},103050,1,"""South America""" +2024-10-02,56184,5466,"[\""Phone\"", \""Wireless Mouse\""]",1516.93,{},93524,0,"""Africa""" +2024-01-15,56185,2605,"[\""Monitor\""]",2056.0,{},286335,1,"""Europe""" +2023-05-15,56186,7286,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4730.7,"{\""seasonal\"": \""13%\""}",291067,0,"""Europe""" +2023-03-14,56187,5867,"[\""Monitor\""]",3270.81,"{\""loyalty\"": \""21%\""}",269167,0,"""Europe""" +2024-02-12,56188,516,"[\""Phone\""]",4044.13,{},242642,0,"""Asia""" +2024-12-07,56189,5524,"[\""Phone\""]",802.45,"{\""loyalty\"": \""29%\""}",189414,0,"""North America""" +2023-02-19,56190,2175,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2981.59,"{\""seasonal\"": \""10%\""}",210845,0,"""North America""" +2024-09-18,56191,8487,"[\""Laptop\""]",995.45,{},130651,0,"""South America""" +2023-11-20,56192,3062,"[\""Phone\""]",3662.84,{},137796,1,"""South America""" +2024-05-16,56193,8646,"[\""Headphones\"", \""Laptop\""]",1471.89,{},289240,0,"""Asia""" +2024-03-20,56194,7613,"[\""Laptop\""]",76.93,"{\""promo\"": \""21%\""}",188291,1,"""South America""" +2023-10-27,56195,6297,"[\""Phone\""]",2494.42,{},294174,1,"""North America""" +2023-06-19,56196,5055,"[\""Headphones\""]",3795.44,{},295232,0,"""South America""" +2024-08-28,56197,1834,"[\""Phone\"", \""Monitor\""]",4405.52,{},110812,1,"""North America""" +2024-08-30,56198,24,"[\""Keyboard\"", \""Headphones\""]",4372.73,{},71259,1,"""Africa""" +2023-12-16,56199,2864,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2367.93,"{\""promo\"": \""19%\""}",121737,0,"""Europe""" +2023-06-21,56200,2082,"[\""Phone\"", \""Wireless Mouse\""]",772.6,"{\""loyalty\"": \""10%\""}",195209,1,"""North America""" +2023-06-19,56201,7089,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",326.0,"{\""seasonal\"": \""13%\""}",113847,0,"""South America""" +2024-02-14,56202,9945,"[\""Phone\"", \""Monitor\"", \""Charger\""]",834.27,{},32253,0,"""North America""" +2024-06-28,56203,97,"[\""Laptop\"", \""Phone\""]",2821.27,"{\""seasonal\"": \""5%\""}",120510,0,"""Africa""" +2023-06-30,56204,9784,"[\""Headphones\""]",4040.85,"{\"": \""24%\""}",115219,1,"""North America""" +2023-04-17,56205,7912,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",924.81,{},54993,1,"""North America""" +2024-07-12,56206,548,"[\""Headphones\""]",3116.77,"{\""seasonal\"": \""18%\""}",216976,0,"""North America""" +2024-05-13,56207,8090,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2932.65,"{\""seasonal\"": \""9%\""}",278949,0,"""North America""" +2024-07-09,56208,9181,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",373.26,{},298256,0,"""South America""" +2023-04-18,56209,5639,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1331.77,"{\""seasonal\"": \""5%\""}",141282,0,"""Africa""" +2024-09-01,56210,4783,"[\""Phone\"", \""Keyboard\""]",1556.68,"{\""seasonal\"": \""15%\""}",14640,0,"""Africa""" +2023-06-19,56211,466,"[\""Monitor\"", \""Headphones\""]",3219.09,"{\""seasonal\"": \""27%\""}",7507,0,"""Africa""" +2024-12-28,56212,9444,"[\""Monitor\""]",2732.24,{},275750,1,"""South America""" +2024-06-04,56213,464,"[\""Monitor\"", \""Laptop\""]",445.81,{},40547,1,"""Europe""" +2023-10-30,56214,8159,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4573.56,{},198651,1,"""North America""" +2023-03-06,56215,3738,"[\""Headphones\"", \""Keyboard\""]",4735.28,"{\"": \""27%\""}",220761,0,"""South America""" +2023-08-07,56216,1295,"[\""Headphones\""]",1920.86,{},124675,0,"""Europe""" +2023-02-11,56217,104,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4991.15,"{\""loyalty\"": \""14%\""}",159577,0,"""Europe""" +2023-12-21,56218,6155,"[\""Wireless Mouse\""]",1101.97,"{\""promo\"": \""20%\""}",231270,1,"""Europe""" +2023-07-22,56219,4408,"[\""Wireless Mouse\""]",2862.15,{},81114,0,"""South America""" +2023-10-12,56220,7752,"[\""Keyboard\"", \""Phone\""]",2499.59,"{\""promo\"": \""14%\""}",72886,0,"""Asia""" +2024-02-09,56221,7647,"[\""Keyboard\""]",4862.42,{},155328,1,"""North America""" +2024-09-21,56222,7270,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2127.41,"{\""loyalty\"": \""5%\""}",140940,0,"""Africa""" +2023-07-02,56223,6100,"[\""Laptop\"", \""Wireless Mouse\""]",2074.92,"{\""promo\"": \""13%\""}",40382,1,"""North America""" +2023-08-11,56224,5596,"[\""Charger\"", \""Wireless Mouse\""]",1948.93,"{\"": \""14%\""}",273125,0,"""Europe""" +2023-09-22,56225,1287,"[\""Wireless Mouse\""]",4594.58,{},61848,1,"""Asia""" +2024-05-25,56226,5953,"[\""Headphones\""]",3062.26,{},282914,1,"""Asia""" +2023-07-02,56227,6012,"[\""Phone\"", \""Headphones\""]",77.12,{},123644,0,"""Africa""" +2023-11-03,56228,3004,"[\""Charger\"", \""Keyboard\""]",3637.16,"{\""loyalty\"": \""23%\""}",49693,1,"""Europe""" +2023-03-05,56229,108,"[\""Wireless Mouse\""]",4687.21,{},229327,0,"""Asia""" +2023-10-04,56230,4614,"[\""Laptop\"", \""Tablet\""]",956.31,{},138481,1,"""South America""" +2024-10-25,56231,235,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4028.97,"{\"": \""7%\""}",206664,0,"""South America""" +2024-12-03,56232,3362,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3106.53,"{\""promo\"": \""24%\""}",202298,0,"""Asia""" +2023-05-30,56233,1332,"[\""Laptop\""]",1208.26,{},245779,1,"""Asia""" +2023-07-25,56234,6855,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1216.23,"{\""promo\"": \""17%\""}",95216,0,"""North America""" +2024-11-12,56235,6769,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2887.19,"{\""promo\"": \""12%\""}",6006,1,"""Asia""" +2023-08-25,56236,666,"[\""Headphones\""]",1595.03,"{\""loyalty\"": \""20%\""}",169370,1,"""Asia""" +2024-09-18,56237,643,"[\""Tablet\"", \""Laptop\""]",2254.09,"{\""promo\"": \""14%\""}",273365,0,"""Europe""" +2024-10-17,56238,8803,"[\""Phone\"", \""Keyboard\""]",4504.05,{},259511,0,"""North America""" +2024-03-09,56239,5767,"[\""Laptop\""]",4327.7,{},70936,1,"""Asia""" +2023-12-07,56240,3733,"[\""Phone\""]",3100.79,{},26599,0,"""South America""" +2023-05-25,56241,7288,"[\""Phone\""]",4771.05,{},119368,1,"""North America""" +2023-12-03,56242,9716,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2191.52,{},115083,0,"""Africa""" +2024-09-23,56243,7577,"[\""Wireless Mouse\"", \""Keyboard\""]",2181.1,"{\"": \""17%\""}",138662,1,"""Europe""" +2024-09-17,56244,8685,"[\""Tablet\"", \""Headphones\""]",2287.93,"{\"": \""7%\""}",73785,1,"""South America""" +2023-09-19,56245,3243,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",150.4,"{\""seasonal\"": \""21%\""}",231052,1,"""Asia""" +2023-11-15,56246,2119,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",180.87,{},188752,1,"""Asia""" +2023-08-02,56247,8220,"[\""Phone\""]",1419.54,{},271972,1,"""Africa""" +2023-04-17,56248,7582,"[\""Phone\""]",3204.53,"{\"": \""22%\""}",298963,1,"""Europe""" +2024-06-14,56249,2951,"[\""Charger\"", \""Keyboard\""]",3829.26,"{\"": \""11%\""}",92801,1,"""Asia""" +2024-12-17,56250,7355,"[\""Monitor\"", \""Charger\""]",2964.34,{},233487,0,"""Europe""" +2024-08-07,56251,5960,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1560.49,"{\""loyalty\"": \""14%\""}",125788,0,"""Asia""" +2023-05-11,56252,1090,"[\""Wireless Mouse\"", \""Tablet\""]",651.18,"{\""promo\"": \""25%\""}",20991,0,"""North America""" +2023-04-08,56253,2413,"[\""Keyboard\"", \""Phone\""]",4082.49,"{\""promo\"": \""7%\""}",5135,1,"""Africa""" +2024-04-12,56254,3433,"[\""Tablet\""]",3264.12,"{\""loyalty\"": \""12%\""}",94481,0,"""North America""" +2024-09-17,56255,2927,"[\""Keyboard\""]",3313.52,"{\""seasonal\"": \""26%\""}",53545,1,"""Asia""" +2023-03-13,56256,5159,"[\""Charger\""]",2328.86,{},176712,1,"""Africa""" +2023-08-30,56257,555,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3579.75,{},287604,1,"""Europe""" +2023-11-25,56258,7673,"[\""Charger\"", \""Headphones\""]",4348.69,"{\""seasonal\"": \""29%\""}",293090,1,"""Africa""" +2024-05-04,56259,2665,"[\""Charger\"", \""Laptop\""]",4788.49,{},115681,1,"""Africa""" +2023-06-29,56260,354,"[\""Monitor\"", \""Headphones\""]",190.49,"{\"": \""23%\""}",77520,0,"""Europe""" +2023-06-18,56261,4822,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1634.96,"{\""seasonal\"": \""18%\""}",82943,0,"""Asia""" +2024-09-22,56262,3077,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3829.69,"{\"": \""6%\""}",94395,1,"""Europe""" +2023-02-19,56263,1986,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1780.17,{},245647,0,"""South America""" +2023-06-18,56264,8121,"[\""Charger\"", \""Keyboard\""]",4293.9,"{\""promo\"": \""7%\""}",236121,0,"""South America""" +2024-08-17,56265,8392,"[\""Headphones\""]",1471.12,{},123066,1,"""North America""" +2024-11-28,56266,2912,"[\""Phone\""]",2223.37,"{\"": \""18%\""}",201670,1,"""Africa""" +2023-11-01,56267,1175,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1982.89,{},68330,1,"""Africa""" +2023-06-08,56268,8473,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2507.38,{},9638,1,"""South America""" +2024-03-09,56269,552,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4998.02,{},220305,0,"""South America""" +2023-03-19,56270,1212,"[\""Keyboard\"", \""Tablet\""]",2672.11,"{\""seasonal\"": \""19%\""}",217643,1,"""Asia""" +2024-01-24,56271,3209,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1778.72,"{\""loyalty\"": \""5%\""}",134958,1,"""Europe""" +2023-08-03,56272,1872,"[\""Wireless Mouse\""]",3045.23,"{\""loyalty\"": \""9%\""}",154506,0,"""Europe""" +2024-03-12,56273,8890,"[\""Headphones\"", \""Phone\""]",382.63,{},103851,1,"""Europe""" +2024-01-31,56274,4856,"[\""Charger\"", \""Wireless Mouse\""]",1021.33,"{\""seasonal\"": \""9%\""}",166688,0,"""Africa""" +2023-11-30,56275,8577,"[\""Monitor\"", \""Phone\""]",3308.13,{},212773,1,"""Africa""" +2024-04-09,56276,1735,"[\""Charger\""]",4758.86,"{\""seasonal\"": \""25%\""}",219349,0,"""South America""" +2024-12-27,56277,4166,"[\""Laptop\"", \""Keyboard\""]",1947.5,{},71304,1,"""Europe""" +2023-06-25,56278,4161,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2094.13,{},202136,1,"""Europe""" +2023-02-21,56279,9480,"[\""Wireless Mouse\""]",2620.53,"{\"": \""14%\""}",223878,1,"""Europe""" +2024-10-17,56280,9748,"[\""Laptop\"", \""Phone\""]",2742.83,{},13111,1,"""South America""" +2024-01-14,56281,6674,"[\""Headphones\"", \""Wireless Mouse\""]",1670.7,"{\""seasonal\"": \""15%\""}",72008,1,"""Europe""" +2023-06-09,56282,1752,"[\""Phone\"", \""Keyboard\""]",4963.42,{},181640,1,"""South America""" +2023-05-30,56283,5599,"[\""Headphones\"", \""Wireless Mouse\""]",2727.65,{},233374,1,"""Asia""" +2024-03-06,56284,620,"[\""Headphones\"", \""Tablet\""]",4115.63,"{\""loyalty\"": \""22%\""}",158473,1,"""North America""" +2023-02-04,56285,7959,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3919.41,"{\""seasonal\"": \""21%\""}",286593,0,"""South America""" +2024-02-21,56286,5037,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1270.66,{},50865,0,"""North America""" +2023-02-07,56287,6907,"[\""Charger\""]",1095.59,{},61397,1,"""Asia""" +2023-06-02,56288,9567,"[\""Tablet\""]",3731.77,{},76791,0,"""South America""" +2023-05-25,56289,9609,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2255.8,{},163724,0,"""Europe""" +2023-03-17,56290,5670,"[\""Wireless Mouse\"", \""Headphones\""]",2555.48,{},170127,0,"""Europe""" +2024-04-13,56291,7690,"[\""Laptop\""]",4714.29,{},144127,1,"""North America""" +2023-10-26,56292,6516,"[\""Tablet\"", \""Charger\""]",4682.95,"{\"": \""11%\""}",113313,0,"""Asia""" +2023-11-23,56293,5871,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1072.49,"{\""seasonal\"": \""30%\""}",173039,1,"""North America""" +2024-04-23,56294,4316,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2783.08,{},253570,0,"""Europe""" +2024-03-23,56295,1742,"[\""Monitor\"", \""Headphones\""]",2746.34,"{\""promo\"": \""19%\""}",137289,0,"""Asia""" +2023-05-14,56296,711,"[\""Laptop\"", \""Charger\""]",1336.12,"{\""promo\"": \""9%\""}",149706,0,"""Africa""" +2024-11-02,56297,8092,"[\""Laptop\"", \""Keyboard\""]",2496.72,{},188974,1,"""Africa""" +2023-07-11,56298,7849,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2491.64,"{\""promo\"": \""6%\""}",139593,0,"""North America""" +2024-12-24,56299,1051,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2745.81,{},116744,0,"""Asia""" +2024-05-21,56300,8719,"[\""Wireless Mouse\""]",2635.75,"{\""loyalty\"": \""30%\""}",130676,1,"""Asia""" +2024-02-18,56301,3903,"[\""Charger\"", \""Tablet\""]",837.63,"{\""loyalty\"": \""9%\""}",185301,0,"""Asia""" +2024-04-06,56302,9400,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4935.74,"{\""loyalty\"": \""26%\""}",187560,0,"""South America""" +2024-08-18,56303,6395,"[\""Keyboard\"", \""Charger\""]",970.24,"{\""loyalty\"": \""11%\""}",24198,1,"""South America""" +2023-09-06,56304,178,"[\""Charger\"", \""Monitor\""]",3236.78,{},68295,1,"""Asia""" +2023-10-08,56305,4986,"[\""Wireless Mouse\""]",3673.68,"{\""promo\"": \""21%\""}",155432,1,"""Asia""" +2023-08-04,56306,8890,"[\""Tablet\"", \""Laptop\""]",1303.88,{},250058,0,"""North America""" +2023-12-18,56307,1247,"[\""Charger\"", \""Headphones\""]",676.88,{},170001,0,"""Africa""" +2024-07-07,56308,3693,"[\""Wireless Mouse\""]",3337.22,"{\""seasonal\"": \""28%\""}",75302,0,"""North America""" +2023-09-26,56309,2341,"[\""Charger\""]",3010.49,"{\""promo\"": \""30%\""}",216762,1,"""Africa""" +2024-04-15,56310,2130,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3734.49,"{\""seasonal\"": \""16%\""}",274818,0,"""Asia""" +2023-06-08,56311,1713,"[\""Tablet\""]",3887.7,{},135587,0,"""Africa""" +2024-07-31,56312,1846,"[\""Keyboard\""]",2264.83,{},200747,0,"""South America""" +2024-04-11,56313,612,"[\""Laptop\""]",3200.1,"{\""loyalty\"": \""10%\""}",130201,0,"""Asia""" +2024-11-02,56314,6602,"[\""Wireless Mouse\""]",3492.17,"{\"": \""26%\""}",146252,1,"""North America""" +2024-07-16,56315,4738,"[\""Charger\""]",1428.87,{},212835,1,"""Asia""" +2024-10-10,56316,1434,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2754.13,{},83847,1,"""Europe""" +2023-09-21,56317,2301,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1578.07,"{\""loyalty\"": \""6%\""}",74369,0,"""Europe""" +2024-04-30,56318,5089,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2523.54,"{\""promo\"": \""5%\""}",250561,0,"""South America""" +2024-09-08,56319,6352,"[\""Wireless Mouse\""]",4748.78,{},221326,1,"""North America""" +2023-10-27,56320,2099,"[\""Monitor\""]",603.75,{},233375,0,"""North America""" +2023-03-12,56321,1788,"[\""Wireless Mouse\"", \""Tablet\""]",781.98,"{\"": \""23%\""}",199069,0,"""Asia""" +2023-10-18,56322,349,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1550.45,"{\""seasonal\"": \""20%\""}",24856,1,"""Europe""" +2024-11-12,56323,802,"[\""Headphones\""]",1849.81,"{\"": \""16%\""}",14181,0,"""Asia""" +2023-04-29,56324,9269,"[\""Headphones\"", \""Phone\""]",1778.31,{},221762,1,"""North America""" +2023-03-11,56325,4145,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4125.23,{},182437,0,"""South America""" +2024-01-05,56326,7117,"[\""Phone\"", \""Laptop\""]",1173.84,{},183668,0,"""North America""" +2024-11-03,56327,1062,"[\""Wireless Mouse\"", \""Phone\""]",1527.94,{},189855,1,"""Africa""" +2024-03-03,56328,579,"[\""Charger\""]",1886.97,{},273397,1,"""North America""" +2023-01-25,56329,3133,"[\""Tablet\"", \""Headphones\""]",3188.01,{},11308,0,"""North America""" +2024-10-30,56330,5244,"[\""Charger\""]",3926.79,{},99464,0,"""Europe""" +2023-12-18,56331,8995,"[\""Tablet\"", \""Wireless Mouse\""]",1938.33,"{\""promo\"": \""7%\""}",21705,0,"""Africa""" +2023-11-30,56332,8680,"[\""Tablet\"", \""Headphones\""]",3468.17,{},188819,0,"""North America""" +2024-01-26,56333,5804,"[\""Monitor\"", \""Phone\""]",4667.31,{},216805,1,"""Africa""" +2023-06-27,56334,7379,"[\""Wireless Mouse\"", \""Phone\""]",2780.28,{},86621,1,"""North America""" +2023-10-09,56335,9068,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4479.55,{},146469,1,"""North America""" +2023-08-04,56336,4832,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4835.43,"{\""seasonal\"": \""30%\""}",289558,1,"""Europe""" +2023-06-23,56337,9554,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2290.36,"{\""promo\"": \""5%\""}",299692,0,"""Europe""" +2024-01-07,56338,4608,"[\""Wireless Mouse\"", \""Headphones\""]",4259.86,{},295416,0,"""Europe""" +2023-01-29,56339,7390,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1720.94,"{\""promo\"": \""22%\""}",49677,0,"""Asia""" +2024-08-02,56340,5964,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",717.16,"{\""loyalty\"": \""9%\""}",36534,0,"""Africa""" +2023-11-16,56341,5952,"[\""Monitor\"", \""Keyboard\""]",4640.56,"{\""seasonal\"": \""9%\""}",193289,1,"""Europe""" +2024-11-23,56342,83,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3048.26,{},292438,0,"""Europe""" +2023-09-29,56343,8504,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1254.04,{},152234,0,"""Europe""" +2024-12-20,56344,1658,"[\""Tablet\""]",835.06,{},131415,0,"""Europe""" +2024-03-16,56345,1798,"[\""Monitor\""]",3374.95,{},248845,1,"""North America""" +2023-01-28,56346,3818,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",923.2,{},56995,1,"""Africa""" +2023-10-10,56347,575,"[\""Tablet\"", \""Keyboard\""]",460.33,{},288160,1,"""Africa""" +2023-06-17,56348,2666,"[\""Monitor\""]",1769.3,{},132934,0,"""Europe""" +2024-07-20,56349,3081,"[\""Wireless Mouse\"", \""Phone\""]",2669.06,"{\""promo\"": \""10%\""}",190693,0,"""Africa""" +2023-09-28,56350,3412,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3977.35,"{\""seasonal\"": \""5%\""}",249143,1,"""Asia""" +2024-02-02,56351,3294,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3365.64,{},205709,1,"""Asia""" +2023-02-25,56352,9150,"[\""Phone\"", \""Tablet\""]",2331.16,"{\""loyalty\"": \""23%\""}",252793,0,"""Europe""" +2024-06-11,56353,806,"[\""Monitor\""]",1100.99,"{\""seasonal\"": \""5%\""}",180240,1,"""Europe""" +2024-01-11,56354,7209,"[\""Wireless Mouse\"", \""Headphones\""]",3520.01,"{\"": \""29%\""}",251126,1,"""Europe""" +2023-02-20,56355,5259,"[\""Laptop\"", \""Headphones\""]",1285.42,{},208241,0,"""South America""" +2023-06-21,56356,2010,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2466.63,"{\""seasonal\"": \""27%\""}",253513,1,"""Africa""" +2024-07-25,56357,6037,"[\""Monitor\"", \""Tablet\""]",800.37,{},268313,1,"""Asia""" +2024-12-16,56358,6155,"[\""Tablet\""]",4253.23,"{\""loyalty\"": \""26%\""}",72653,0,"""Africa""" +2023-09-17,56359,5305,"[\""Headphones\""]",1992.83,{},251929,1,"""Africa""" +2023-05-04,56360,1695,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4452.2,{},3988,1,"""Africa""" +2024-03-12,56361,2727,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",839.79,"{\"": \""24%\""}",219096,1,"""South America""" +2024-10-09,56362,9143,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2249.13,"{\""seasonal\"": \""18%\""}",289832,1,"""Europe""" +2024-06-18,56363,1963,"[\""Phone\"", \""Wireless Mouse\""]",1122.77,{},95031,1,"""North America""" +2023-10-27,56364,3589,"[\""Headphones\"", \""Wireless Mouse\""]",2490.28,{},151528,1,"""North America""" +2024-10-27,56365,2613,"[\""Headphones\"", \""Wireless Mouse\""]",391.68,"{\"": \""26%\""}",69528,1,"""North America""" +2024-11-09,56366,3575,"[\""Keyboard\"", \""Laptop\""]",1030.2,{},181598,1,"""North America""" +2023-05-24,56367,8864,"[\""Headphones\"", \""Keyboard\""]",3345.51,{},171817,1,"""Africa""" +2023-09-29,56368,9715,"[\""Tablet\""]",4614.95,"{\"": \""28%\""}",109881,1,"""Africa""" +2024-03-16,56369,6190,"[\""Monitor\"", \""Headphones\""]",2977.33,"{\""loyalty\"": \""26%\""}",18723,0,"""Africa""" +2023-12-08,56370,4296,"[\""Tablet\""]",1814.91,{},197084,0,"""Asia""" +2023-01-02,56371,2460,"[\""Charger\"", \""Keyboard\""]",2225.4,{},62870,0,"""Europe""" +2024-06-09,56372,5873,"[\""Charger\"", \""Keyboard\""]",2016.33,"{\""loyalty\"": \""17%\""}",93599,0,"""Europe""" +2023-04-14,56373,8152,"[\""Keyboard\""]",1770.91,"{\"": \""18%\""}",10332,0,"""Europe""" +2024-05-03,56374,8543,"[\""Wireless Mouse\""]",4784.79,{},139275,0,"""South America""" +2023-06-23,56375,5906,"[\""Keyboard\""]",3265.52,"{\""promo\"": \""9%\""}",254400,0,"""Europe""" +2024-04-14,56376,5205,"[\""Keyboard\"", \""Headphones\""]",2910.85,{},192866,0,"""South America""" +2024-11-23,56377,7126,"[\""Charger\"", \""Phone\""]",1919.75,{},278357,1,"""South America""" +2023-05-24,56378,782,"[\""Phone\"", \""Charger\""]",3036.44,"{\"": \""20%\""}",47718,1,"""Africa""" +2024-12-16,56379,4804,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1595.47,"{\""promo\"": \""5%\""}",229470,0,"""South America""" +2023-04-15,56380,9023,"[\""Tablet\"", \""Keyboard\""]",3271.12,"{\""seasonal\"": \""5%\""}",278600,0,"""South America""" +2023-04-20,56381,358,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4631.51,"{\""seasonal\"": \""15%\""}",114291,0,"""Asia""" +2024-04-27,56382,5653,"[\""Laptop\""]",1493.92,{},86281,0,"""Africa""" +2024-11-24,56383,8483,"[\""Charger\"", \""Tablet\""]",271.11,{},194424,1,"""North America""" +2023-11-30,56384,1752,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",807.21,"{\""seasonal\"": \""12%\""}",261464,0,"""Asia""" +2024-04-24,56385,6308,"[\""Laptop\""]",1912.45,{},112348,1,"""North America""" +2023-02-19,56386,1172,"[\""Headphones\""]",303.19,"{\""loyalty\"": \""30%\""}",31777,1,"""Asia""" +2023-08-23,56387,2164,"[\""Wireless Mouse\""]",417.77,"{\"": \""11%\""}",117844,0,"""South America""" +2023-02-10,56388,5440,"[\""Wireless Mouse\"", \""Tablet\""]",1272.3,{},161352,0,"""Africa""" +2024-08-14,56389,8782,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3689.84,"{\""seasonal\"": \""16%\""}",101385,1,"""Europe""" +2023-11-03,56390,1507,"[\""Tablet\"", \""Phone\""]",481.84,"{\""loyalty\"": \""21%\""}",270003,1,"""Africa""" +2024-06-26,56391,6576,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1400.56,"{\"": \""11%\""}",94456,1,"""South America""" +2024-08-06,56392,9028,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",329.35,"{\""promo\"": \""5%\""}",221353,0,"""Asia""" +2023-11-27,56393,7043,"[\""Keyboard\"", \""Headphones\""]",4672.49,"{\"": \""10%\""}",193101,1,"""Africa""" +2024-10-19,56394,6079,"[\""Tablet\""]",1055.37,{},253652,1,"""Asia""" +2024-12-07,56395,7914,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3569.08,{},220548,0,"""North America""" +2024-08-23,56396,4991,"[\""Headphones\"", \""Laptop\""]",979.29,{},89770,1,"""Africa""" +2024-01-30,56397,3508,"[\""Monitor\"", \""Phone\""]",4785.0,{},103587,1,"""South America""" +2024-04-07,56398,154,"[\""Tablet\"", \""Phone\""]",4036.55,{},127985,1,"""Africa""" +2023-11-07,56399,1707,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1057.24,"{\""promo\"": \""5%\""}",81839,0,"""Europe""" +2023-05-13,56400,8685,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1370.96,"{\"": \""17%\""}",135194,0,"""South America""" +2024-02-28,56401,365,"[\""Wireless Mouse\""]",3796.51,"{\""loyalty\"": \""30%\""}",263712,0,"""South America""" +2024-07-17,56402,3443,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4949.01,{},224008,0,"""Africa""" +2024-11-11,56403,8904,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3151.75,"{\"": \""6%\""}",273674,0,"""Asia""" +2024-07-10,56404,6249,"[\""Phone\"", \""Wireless Mouse\""]",3127.22,{},128383,1,"""Asia""" +2023-10-05,56405,8500,"[\""Phone\"", \""Laptop\""]",2801.39,"{\""promo\"": \""21%\""}",148108,0,"""Asia""" +2024-07-17,56406,4260,"[\""Laptop\""]",2997.35,"{\"": \""5%\""}",65507,0,"""South America""" +2023-04-04,56407,4592,"[\""Phone\""]",2356.51,"{\"": \""19%\""}",120055,1,"""Asia""" +2023-02-12,56408,1122,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4915.25,"{\""seasonal\"": \""19%\""}",133680,1,"""Africa""" +2024-10-01,56409,1011,"[\""Wireless Mouse\""]",1556.37,{},40271,0,"""Africa""" +2024-08-20,56410,1899,"[\""Tablet\""]",1633.04,{},161083,1,"""North America""" +2024-09-30,56411,4427,"[\""Monitor\"", \""Wireless Mouse\""]",3801.67,"{\""seasonal\"": \""6%\""}",173456,1,"""Asia""" +2024-06-12,56412,279,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1885.92,"{\""seasonal\"": \""23%\""}",253328,0,"""North America""" +2023-04-27,56413,8238,"[\""Keyboard\"", \""Headphones\""]",3924.39,{},194493,1,"""South America""" +2023-05-15,56414,390,"[\""Keyboard\"", \""Laptop\""]",3752.77,{},226129,0,"""Asia""" +2023-11-29,56415,836,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",219.45,"{\""promo\"": \""8%\""}",216636,0,"""North America""" +2023-08-03,56416,2895,"[\""Tablet\"", \""Phone\""]",2808.82,"{\"": \""12%\""}",282162,0,"""Asia""" +2024-08-17,56417,3000,"[\""Headphones\""]",316.28,"{\""seasonal\"": \""9%\""}",273763,0,"""North America""" +2023-04-08,56418,8477,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3697.62,"{\"": \""7%\""}",91343,1,"""Europe""" +2023-09-29,56419,5198,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",136.13,"{\""loyalty\"": \""16%\""}",192658,0,"""Europe""" +2024-11-27,56420,7122,"[\""Phone\"", \""Charger\""]",3810.4,"{\"": \""28%\""}",17823,0,"""North America""" +2023-02-27,56421,8615,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",550.18,{},74907,0,"""Europe""" +2024-08-06,56422,3787,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",536.37,"{\""loyalty\"": \""24%\""}",157601,0,"""Asia""" +2023-12-05,56423,2785,"[\""Monitor\"", \""Wireless Mouse\""]",3636.8,"{\""loyalty\"": \""25%\""}",19881,0,"""North America""" +2023-06-24,56424,6068,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1615.24,{},77061,1,"""Asia""" +2024-01-21,56425,7501,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2527.26,"{\""promo\"": \""9%\""}",53149,0,"""Europe""" +2023-05-28,56426,4090,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",916.22,"{\""loyalty\"": \""16%\""}",33053,0,"""South America""" +2024-05-04,56427,588,"[\""Wireless Mouse\""]",107.8,"{\"": \""22%\""}",88402,1,"""North America""" +2023-11-24,56428,1441,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2667.45,{},229617,0,"""Asia""" +2024-09-19,56429,1896,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3393.88,"{\""promo\"": \""16%\""}",233635,0,"""North America""" +2023-01-07,56430,6987,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2662.26,"{\""promo\"": \""18%\""}",214426,0,"""Europe""" +2024-04-21,56431,2309,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3651.43,{},284724,0,"""Asia""" +2024-05-06,56432,5293,"[\""Tablet\""]",1742.4,"{\""promo\"": \""11%\""}",12583,0,"""Africa""" +2023-07-12,56433,542,"[\""Charger\""]",821.55,{},53308,0,"""Asia""" +2023-02-08,56434,8843,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2888.85,"{\""promo\"": \""11%\""}",57398,1,"""Asia""" +2024-02-24,56435,8216,"[\""Monitor\"", \""Wireless Mouse\""]",2875.91,{},256365,0,"""North America""" +2023-08-03,56436,630,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",912.34,"{\""seasonal\"": \""21%\""}",189004,0,"""South America""" +2024-10-16,56437,1783,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1971.49,"{\"": \""28%\""}",74764,1,"""Europe""" +2024-08-07,56438,2349,"[\""Keyboard\"", \""Laptop\""]",2212.45,{},58168,1,"""North America""" +2024-03-19,56439,4397,"[\""Wireless Mouse\""]",3999.09,"{\""promo\"": \""20%\""}",232362,1,"""South America""" +2024-11-09,56440,1254,"[\""Laptop\""]",2089.66,{},176748,0,"""North America""" +2024-05-12,56441,5176,"[\""Tablet\""]",2806.53,{},102621,0,"""South America""" +2024-12-23,56442,8601,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3635.67,{},159307,1,"""Europe""" +2024-05-05,56443,3794,"[\""Charger\""]",3687.58,"{\"": \""18%\""}",110889,1,"""Africa""" +2024-07-02,56444,4904,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2609.74,"{\""loyalty\"": \""30%\""}",43936,0,"""South America""" +2024-07-23,56445,7575,"[\""Tablet\"", \""Laptop\""]",2101.88,"{\""seasonal\"": \""30%\""}",296403,0,"""Africa""" +2023-10-26,56446,3656,"[\""Phone\"", \""Tablet\""]",3760.07,"{\"": \""18%\""}",47386,1,"""Asia""" +2023-10-15,56447,1144,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3498.36,"{\"": \""20%\""}",254608,1,"""Africa""" +2024-09-06,56448,7184,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2684.56,"{\"": \""30%\""}",119723,0,"""North America""" +2023-07-14,56449,9833,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4423.56,{},245202,0,"""Asia""" +2023-02-28,56450,203,"[\""Headphones\"", \""Phone\""]",2949.36,"{\""loyalty\"": \""19%\""}",27158,0,"""Africa""" +2023-10-08,56451,187,"[\""Tablet\"", \""Headphones\""]",1609.61,"{\"": \""12%\""}",150577,0,"""South America""" +2024-09-06,56452,5075,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1327.19,"{\"": \""6%\""}",213915,1,"""Europe""" +2024-01-03,56453,1981,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1924.2,{},1665,0,"""Africa""" +2023-05-10,56454,6521,"[\""Tablet\""]",4794.43,"{\""seasonal\"": \""16%\""}",186705,1,"""Europe""" +2023-01-17,56455,3769,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3989.81,"{\"": \""6%\""}",19344,0,"""Africa""" +2024-06-16,56456,9130,"[\""Wireless Mouse\""]",145.42,"{\""loyalty\"": \""11%\""}",163945,1,"""Africa""" +2023-10-24,56457,8276,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4459.02,{},297668,1,"""Europe""" +2024-09-07,56458,7248,"[\""Phone\"", \""Headphones\""]",2731.75,"{\""loyalty\"": \""15%\""}",43164,1,"""Africa""" +2023-12-07,56459,526,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4573.55,"{\""loyalty\"": \""22%\""}",194443,0,"""Europe""" +2024-09-06,56460,9989,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1609.01,{},297344,0,"""South America""" +2023-08-05,56461,1004,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4663.23,{},278055,0,"""Europe""" +2024-07-10,56462,5823,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4309.51,{},4492,1,"""Africa""" +2024-06-27,56463,3090,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3687.15,{},199683,0,"""South America""" +2024-03-02,56464,7683,"[\""Phone\""]",806.59,{},46337,0,"""North America""" +2024-11-01,56465,453,"[\""Wireless Mouse\""]",2434.84,{},229702,0,"""Asia""" +2024-02-23,56466,4844,"[\""Tablet\""]",4421.04,{},30149,1,"""Africa""" +2024-10-09,56467,3212,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3672.39,{},210303,0,"""South America""" +2023-03-09,56468,4445,"[\""Laptop\"", \""Headphones\""]",685.39,{},79440,1,"""Africa""" +2023-05-18,56469,5030,"[\""Phone\""]",1942.58,"{\"": \""6%\""}",240627,0,"""Africa""" +2024-01-16,56470,1180,"[\""Tablet\"", \""Wireless Mouse\""]",2467.8,"{\"": \""29%\""}",246288,0,"""South America""" +2023-07-24,56471,3358,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",115.86,"{\""loyalty\"": \""21%\""}",83411,0,"""Africa""" +2023-10-19,56472,6262,"[\""Wireless Mouse\""]",4962.26,"{\""promo\"": \""22%\""}",108966,0,"""North America""" +2023-04-06,56473,5338,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",546.19,"{\""promo\"": \""12%\""}",62892,1,"""Asia""" +2024-01-22,56474,5414,"[\""Laptop\""]",1569.13,{},279405,0,"""Asia""" +2023-05-08,56475,9207,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4945.24,{},17908,1,"""Africa""" +2023-07-06,56476,3192,"[\""Wireless Mouse\"", \""Keyboard\""]",4119.07,"{\"": \""24%\""}",115128,0,"""Asia""" +2024-07-07,56477,6626,"[\""Wireless Mouse\""]",1584.06,"{\""promo\"": \""8%\""}",20687,1,"""Africa""" +2024-07-22,56478,6457,"[\""Laptop\""]",1242.2,"{\"": \""29%\""}",149960,0,"""South America""" +2024-06-05,56479,8296,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4147.12,"{\""promo\"": \""11%\""}",137280,1,"""Africa""" +2024-01-11,56480,27,"[\""Keyboard\"", \""Phone\""]",1635.43,{},256525,0,"""North America""" +2024-11-16,56481,9678,"[\""Wireless Mouse\""]",682.97,"{\""seasonal\"": \""19%\""}",48100,0,"""South America""" +2023-11-04,56482,4927,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1305.86,"{\""loyalty\"": \""23%\""}",225967,1,"""North America""" +2023-03-03,56483,9960,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4190.1,{},116519,1,"""Asia""" +2023-09-22,56484,8511,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4519.91,{},208787,1,"""South America""" +2023-07-09,56485,9253,"[\""Charger\"", \""Tablet\""]",2138.73,{},26015,0,"""Africa""" +2024-10-19,56486,5941,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2966.92,"{\"": \""29%\""}",189505,0,"""Europe""" +2024-06-25,56487,1825,"[\""Keyboard\""]",3528.48,"{\"": \""27%\""}",267405,1,"""South America""" +2024-01-11,56488,8478,"[\""Monitor\"", \""Keyboard\""]",2293.33,{},124174,1,"""Europe""" +2024-04-24,56489,6492,"[\""Monitor\"", \""Keyboard\""]",1333.66,{},58416,0,"""North America""" +2023-01-19,56490,1609,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3708.58,"{\""loyalty\"": \""11%\""}",178283,0,"""Europe""" +2024-09-10,56491,6312,"[\""Laptop\""]",2150.72,"{\""loyalty\"": \""5%\""}",76057,0,"""Asia""" +2023-09-25,56492,8269,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4386.85,{},197457,0,"""South America""" +2024-06-22,56493,4990,"[\""Monitor\""]",1440.69,"{\""loyalty\"": \""5%\""}",251562,0,"""Asia""" +2023-06-04,56494,1735,"[\""Monitor\""]",2004.42,"{\"": \""6%\""}",20967,0,"""South America""" +2024-10-31,56495,7932,"[\""Phone\""]",3962.4,"{\""loyalty\"": \""13%\""}",169703,0,"""Africa""" +2023-12-15,56496,7398,"[\""Charger\"", \""Laptop\""]",4235.05,{},97872,0,"""Africa""" +2023-08-12,56497,5936,"[\""Charger\"", \""Phone\"", \""Monitor\""]",984.42,"{\""seasonal\"": \""28%\""}",218174,1,"""Africa""" +2023-07-08,56498,4589,"[\""Phone\""]",818.57,"{\""promo\"": \""19%\""}",250277,0,"""Africa""" +2024-06-21,56499,5908,"[\""Headphones\"", \""Charger\""]",3513.78,"{\""seasonal\"": \""26%\""}",284821,1,"""Asia""" +2023-07-15,56500,5821,"[\""Monitor\"", \""Phone\""]",4502.67,"{\""seasonal\"": \""25%\""}",251083,0,"""South America""" +2024-12-03,56501,2982,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2252.5,{},64576,1,"""Africa""" +2024-12-09,56502,9406,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1409.18,{},1002,1,"""Africa""" +2023-07-20,56503,974,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4881.75,"{\""seasonal\"": \""14%\""}",84332,1,"""North America""" +2023-07-31,56504,4253,"[\""Keyboard\"", \""Laptop\""]",4916.88,{},245342,0,"""South America""" +2023-09-23,56505,9083,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3799.14,"{\""seasonal\"": \""14%\""}",108450,0,"""North America""" +2024-06-11,56506,4318,"[\""Keyboard\""]",3202.48,"{\"": \""17%\""}",257634,1,"""Africa""" +2023-05-30,56507,4243,"[\""Tablet\""]",2588.99,{},190452,0,"""Africa""" +2023-03-16,56508,5107,"[\""Tablet\"", \""Headphones\""]",2527.01,{},47543,0,"""Asia""" +2023-09-17,56509,177,"[\""Charger\"", \""Laptop\""]",824.51,"{\""promo\"": \""14%\""}",36914,1,"""North America""" +2024-09-02,56510,4098,"[\""Charger\""]",841.44,{},29740,0,"""Asia""" +2024-05-17,56511,2046,"[\""Tablet\""]",2927.76,"{\""promo\"": \""12%\""}",191180,1,"""Asia""" +2024-06-01,56512,8564,"[\""Monitor\""]",72.51,{},94652,0,"""Europe""" +2023-09-08,56513,4600,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",441.07,"{\""seasonal\"": \""10%\""}",269199,0,"""North America""" +2024-03-19,56514,2137,"[\""Tablet\""]",342.53,"{\""loyalty\"": \""16%\""}",121190,1,"""Europe""" +2023-02-14,56515,8329,"[\""Laptop\""]",1919.23,{},66487,0,"""North America""" +2023-02-25,56516,7237,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4728.3,{},115245,1,"""North America""" +2023-10-24,56517,3404,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3050.56,{},93329,0,"""Asia""" +2024-07-28,56518,4933,"[\""Phone\"", \""Tablet\""]",4260.77,"{\""promo\"": \""24%\""}",158271,1,"""Africa""" +2024-01-04,56519,411,"[\""Tablet\"", \""Laptop\""]",3551.64,"{\""promo\"": \""5%\""}",177227,1,"""North America""" +2023-09-04,56520,9102,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3379.29,{},198689,0,"""Europe""" +2023-04-24,56521,9095,"[\""Tablet\""]",2887.15,{},291748,1,"""South America""" +2023-09-04,56522,3874,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",209.26,{},28621,0,"""Africa""" +2023-03-15,56523,7174,"[\""Tablet\""]",4876.2,"{\""promo\"": \""28%\""}",277998,1,"""South America""" +2024-08-26,56524,9329,"[\""Headphones\""]",2111.01,{},85893,0,"""South America""" +2023-05-13,56525,6195,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2796.94,{},241852,1,"""South America""" +2023-01-15,56526,7950,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2870.1,"{\""seasonal\"": \""22%\""}",268121,1,"""Africa""" +2023-10-06,56527,3058,"[\""Keyboard\"", \""Headphones\""]",1394.78,"{\""seasonal\"": \""20%\""}",269729,0,"""Africa""" +2023-05-14,56528,4971,"[\""Keyboard\""]",4382.8,{},199135,1,"""Europe""" +2023-04-12,56529,3663,"[\""Charger\"", \""Wireless Mouse\""]",1241.64,{},222936,1,"""Asia""" +2023-11-14,56530,1966,"[\""Keyboard\"", \""Tablet\""]",3578.53,"{\"": \""28%\""}",234304,1,"""South America""" +2024-03-28,56531,454,"[\""Phone\"", \""Headphones\""]",3101.55,{},95441,0,"""Africa""" +2024-11-26,56532,1091,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",561.63,"{\""loyalty\"": \""7%\""}",22824,1,"""Africa""" +2023-02-24,56533,1115,"[\""Wireless Mouse\""]",295.32,"{\""loyalty\"": \""29%\""}",196731,1,"""North America""" +2024-07-28,56534,2246,"[\""Keyboard\"", \""Wireless Mouse\""]",3286.96,"{\""seasonal\"": \""22%\""}",257464,0,"""Africa""" +2023-10-03,56535,1212,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3021.35,"{\""seasonal\"": \""12%\""}",238646,1,"""Asia""" +2023-01-17,56536,8107,"[\""Headphones\"", \""Phone\""]",332.68,{},241592,0,"""Africa""" +2023-02-21,56537,2595,"[\""Laptop\"", \""Keyboard\""]",2656.27,"{\"": \""9%\""}",191810,0,"""Europe""" +2023-06-28,56538,9682,"[\""Laptop\""]",4997.42,"{\""seasonal\"": \""9%\""}",98721,0,"""Europe""" +2024-04-19,56539,8015,"[\""Headphones\""]",4914.98,"{\""promo\"": \""23%\""}",158768,1,"""Europe""" +2023-01-08,56540,6914,"[\""Tablet\"", \""Wireless Mouse\""]",1300.69,{},102097,0,"""Africa""" +2023-03-08,56541,7815,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2743.37,{},95678,1,"""Africa""" +2023-06-17,56542,4442,"[\""Laptop\"", \""Keyboard\""]",4935.52,"{\""loyalty\"": \""13%\""}",235447,0,"""North America""" +2023-04-12,56543,7699,"[\""Wireless Mouse\""]",1424.52,{},90502,1,"""Europe""" +2024-01-20,56544,2224,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3948.76,{},193832,0,"""Europe""" +2024-11-07,56545,3595,"[\""Phone\""]",2095.04,"{\""seasonal\"": \""6%\""}",127332,0,"""North America""" +2024-01-03,56546,557,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4883.3,"{\""loyalty\"": \""29%\""}",94691,1,"""Europe""" +2023-01-18,56547,6953,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3466.99,{},79499,0,"""Europe""" +2023-06-27,56548,2911,"[\""Charger\""]",3388.82,{},78763,0,"""South America""" +2024-04-17,56549,1340,"[\""Keyboard\"", \""Headphones\""]",2135.2,{},132181,0,"""South America""" +2023-11-25,56550,614,"[\""Charger\""]",2710.9,{},74947,1,"""Africa""" +2024-04-18,56551,1383,"[\""Keyboard\""]",2919.61,"{\""seasonal\"": \""19%\""}",53167,1,"""Europe""" +2024-04-13,56552,4142,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",697.26,"{\""promo\"": \""13%\""}",187117,0,"""South America""" +2024-11-17,56553,5029,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2566.87,{},96073,1,"""South America""" +2023-12-09,56554,4423,"[\""Charger\"", \""Wireless Mouse\""]",3530.74,{},190001,0,"""Europe""" +2023-05-02,56555,1301,"[\""Wireless Mouse\"", \""Tablet\""]",3617.64,"{\"": \""23%\""}",269439,1,"""North America""" +2024-11-14,56556,3885,"[\""Tablet\"", \""Wireless Mouse\""]",2596.03,{},205407,1,"""South America""" +2023-06-27,56557,8796,"[\""Monitor\"", \""Headphones\""]",2610.59,{},293222,1,"""Europe""" +2024-06-04,56558,598,"[\""Monitor\""]",1818.14,"{\"": \""27%\""}",268209,0,"""Africa""" +2024-06-28,56559,3223,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1681.89,{},64026,0,"""North America""" +2023-10-05,56560,2407,"[\""Wireless Mouse\""]",676.05,"{\""seasonal\"": \""22%\""}",141005,1,"""North America""" +2023-08-26,56561,7954,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",488.05,{},215131,0,"""North America""" +2023-10-23,56562,4799,"[\""Tablet\"", \""Monitor\""]",3185.17,"{\""promo\"": \""15%\""}",237235,0,"""Europe""" +2024-04-14,56563,8265,"[\""Wireless Mouse\""]",1624.18,"{\""seasonal\"": \""23%\""}",58778,1,"""North America""" +2024-08-18,56564,5805,"[\""Wireless Mouse\"", \""Tablet\""]",1377.59,"{\""promo\"": \""11%\""}",287100,1,"""North America""" +2023-09-17,56565,6269,"[\""Tablet\""]",3488.5,{},59866,0,"""South America""" +2023-02-17,56566,2522,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1523.82,{},81858,0,"""South America""" +2023-01-11,56567,9957,"[\""Monitor\"", \""Tablet\""]",3768.9,{},205410,0,"""Asia""" +2023-10-18,56568,2253,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1530.5,{},90614,1,"""North America""" +2023-09-28,56569,7325,"[\""Charger\"", \""Phone\""]",3485.33,{},267605,0,"""Europe""" +2024-12-01,56570,6210,"[\""Headphones\"", \""Keyboard\""]",2411.45,{},139228,0,"""Asia""" +2024-10-08,56571,1478,"[\""Wireless Mouse\""]",3496.82,{},113810,0,"""North America""" +2023-10-04,56572,6806,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2330.94,{},233297,1,"""Europe""" +2024-03-03,56573,1423,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",919.44,{},82135,0,"""Africa""" +2023-03-19,56574,4961,"[\""Wireless Mouse\"", \""Tablet\""]",4752.79,{},177553,1,"""North America""" +2023-04-17,56575,8096,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2279.06,"{\"": \""27%\""}",46866,0,"""North America""" +2024-03-29,56576,1639,"[\""Keyboard\""]",2743.72,{},137489,1,"""South America""" +2023-04-07,56577,3227,"[\""Phone\""]",2149.67,{},94423,0,"""South America""" +2024-02-26,56578,1059,"[\""Laptop\""]",2031.94,"{\""promo\"": \""25%\""}",147262,0,"""South America""" +2024-03-20,56579,9252,"[\""Keyboard\""]",4652.16,{},62364,0,"""Asia""" +2023-06-25,56580,5772,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2128.16,"{\""loyalty\"": \""30%\""}",221335,1,"""Asia""" +2023-01-09,56581,3871,"[\""Keyboard\"", \""Phone\""]",634.62,{},121749,0,"""South America""" +2024-02-02,56582,4349,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3725.34,{},148229,1,"""Africa""" +2023-06-19,56583,872,"[\""Charger\"", \""Keyboard\""]",1582.94,"{\"": \""30%\""}",117918,0,"""North America""" +2023-02-12,56584,3937,"[\""Laptop\"", \""Charger\""]",4605.42,"{\""promo\"": \""26%\""}",93220,1,"""North America""" +2024-06-24,56585,1292,"[\""Wireless Mouse\"", \""Laptop\""]",3283.54,"{\""loyalty\"": \""17%\""}",21380,1,"""Africa""" +2024-11-29,56586,5364,"[\""Keyboard\""]",3290.42,"{\"": \""17%\""}",30745,0,"""Asia""" +2023-06-20,56587,684,"[\""Laptop\""]",1014.8,"{\""seasonal\"": \""9%\""}",184422,1,"""Asia""" +2023-08-12,56588,4077,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3778.22,"{\""promo\"": \""11%\""}",237165,1,"""Europe""" +2024-04-10,56589,3855,"[\""Tablet\""]",3785.1,"{\"": \""22%\""}",214502,0,"""Europe""" +2023-09-04,56590,5406,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",891.92,{},205057,0,"""Europe""" +2023-01-12,56591,2747,"[\""Wireless Mouse\"", \""Keyboard\""]",344.41,"{\"": \""29%\""}",131681,1,"""North America""" +2024-01-13,56592,9046,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3995.48,"{\""seasonal\"": \""19%\""}",74139,0,"""South America""" +2024-07-09,56593,1869,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2904.95,"{\"": \""16%\""}",203465,1,"""Asia""" +2024-09-09,56594,1629,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4576.09,{},166012,1,"""North America""" +2024-07-30,56595,8253,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1856.33,"{\""loyalty\"": \""22%\""}",15116,1,"""Africa""" +2024-03-13,56596,8782,"[\""Headphones\"", \""Phone\""]",3304.82,{},1825,1,"""South America""" +2023-07-09,56597,4565,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3902.11,{},132911,1,"""South America""" +2024-05-31,56598,9050,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2159.23,"{\"": \""27%\""}",160921,1,"""Africa""" +2023-07-19,56599,4027,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2110.29,"{\""loyalty\"": \""8%\""}",22045,0,"""Asia""" +2023-08-17,56600,2606,"[\""Wireless Mouse\""]",394.96,"{\""promo\"": \""30%\""}",56227,0,"""North America""" +2023-04-14,56601,6054,"[\""Headphones\""]",2373.79,{},236883,1,"""Asia""" +2023-09-14,56602,9329,"[\""Phone\""]",2781.71,"{\""loyalty\"": \""21%\""}",186105,0,"""Asia""" +2023-11-15,56603,1185,"[\""Phone\""]",1906.54,{},133026,1,"""Asia""" +2024-12-29,56604,6372,"[\""Monitor\"", \""Headphones\""]",1362.98,"{\""loyalty\"": \""27%\""}",127762,1,"""South America""" +2024-09-01,56605,2780,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2104.37,{},227170,1,"""North America""" +2024-07-06,56606,7455,"[\""Phone\"", \""Charger\""]",4687.57,"{\"": \""25%\""}",107616,0,"""Europe""" +2024-01-11,56607,5768,"[\""Laptop\"", \""Headphones\""]",3772.65,{},239280,0,"""Africa""" +2024-10-21,56608,6368,"[\""Laptop\""]",4676.94,{},87756,0,"""Europe""" +2024-07-04,56609,1900,"[\""Monitor\""]",4912.74,"{\"": \""20%\""}",278392,1,"""Asia""" +2023-04-11,56610,1854,"[\""Laptop\""]",4555.37,{},223861,1,"""South America""" +2024-03-30,56611,4652,"[\""Phone\""]",4349.91,{},159231,1,"""Europe""" +2024-06-10,56612,5445,"[\""Headphones\""]",2980.18,{},72000,1,"""South America""" +2024-10-21,56613,8753,"[\""Phone\"", \""Tablet\""]",3200.14,"{\""loyalty\"": \""28%\""}",181647,0,"""Asia""" +2024-04-27,56614,7575,"[\""Headphones\""]",3332.67,{},58979,1,"""South America""" +2024-08-26,56615,6711,"[\""Laptop\""]",3800.91,"{\"": \""9%\""}",32377,1,"""Asia""" +2023-12-05,56616,458,"[\""Headphones\"", \""Phone\""]",3609.63,"{\"": \""23%\""}",228553,1,"""Asia""" +2024-01-07,56617,2757,"[\""Monitor\""]",4225.41,"{\""seasonal\"": \""21%\""}",60119,1,"""Asia""" +2023-07-08,56618,1361,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3534.14,"{\""loyalty\"": \""10%\""}",46351,1,"""South America""" +2024-07-09,56619,4497,"[\""Wireless Mouse\""]",2206.06,"{\""seasonal\"": \""15%\""}",70057,1,"""North America""" +2024-05-22,56620,9058,"[\""Laptop\""]",840.56,{},198152,0,"""North America""" +2024-06-17,56621,2987,"[\""Wireless Mouse\"", \""Tablet\""]",715.2,"{\"": \""25%\""}",162837,0,"""South America""" +2023-02-01,56622,5809,"[\""Charger\""]",4985.08,"{\""promo\"": \""19%\""}",114585,1,"""North America""" +2023-11-09,56623,2779,"[\""Laptop\"", \""Tablet\""]",2820.6,"{\"": \""12%\""}",148049,1,"""Europe""" +2023-08-29,56624,978,"[\""Charger\""]",2430.98,{},54625,1,"""Europe""" +2024-03-21,56625,450,"[\""Laptop\""]",3139.71,{},238603,0,"""Africa""" +2023-10-05,56626,5007,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3589.05,"{\""promo\"": \""14%\""}",247299,0,"""North America""" +2024-07-14,56627,484,"[\""Monitor\"", \""Tablet\""]",3489.46,"{\"": \""12%\""}",76568,1,"""Africa""" +2024-11-06,56628,1297,"[\""Keyboard\""]",2132.86,"{\""seasonal\"": \""13%\""}",298843,1,"""North America""" +2024-12-10,56629,4477,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2281.61,{},90696,1,"""Asia""" +2024-07-24,56630,3880,"[\""Monitor\"", \""Headphones\""]",799.31,"{\"": \""30%\""}",247266,0,"""South America""" +2023-04-13,56631,5011,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3161.93,{},268071,0,"""Europe""" +2024-02-07,56632,9479,"[\""Headphones\""]",1455.34,"{\""seasonal\"": \""22%\""}",240595,1,"""South America""" +2024-02-23,56633,8293,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1678.17,"{\""seasonal\"": \""8%\""}",180962,0,"""Europe""" +2023-04-10,56634,7701,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3153.95,{},244249,0,"""South America""" +2023-07-25,56635,9048,"[\""Laptop\""]",1126.66,{},205723,0,"""North America""" +2023-04-20,56636,1270,"[\""Keyboard\""]",2351.16,{},123293,0,"""Africa""" +2024-10-22,56637,1756,"[\""Keyboard\"", \""Wireless Mouse\""]",986.64,"{\""promo\"": \""20%\""}",193647,1,"""Europe""" +2023-12-10,56638,8367,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3047.54,{},274232,1,"""Europe""" +2023-10-17,56639,3044,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4308.94,{},210535,1,"""Africa""" +2024-09-13,56640,8705,"[\""Laptop\"", \""Phone\""]",489.01,{},57774,0,"""South America""" +2023-03-21,56641,1464,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1316.83,"{\"": \""12%\""}",209462,0,"""Africa""" +2023-08-06,56642,8383,"[\""Keyboard\""]",668.73,"{\""loyalty\"": \""9%\""}",65335,0,"""North America""" +2024-09-08,56643,1793,"[\""Tablet\""]",2020.53,"{\""seasonal\"": \""26%\""}",111968,1,"""South America""" +2024-08-12,56644,8227,"[\""Wireless Mouse\"", \""Laptop\""]",3030.06,"{\""promo\"": \""26%\""}",97295,0,"""Africa""" +2023-09-18,56645,8017,"[\""Tablet\"", \""Charger\""]",3535.53,"{\""loyalty\"": \""13%\""}",43965,1,"""South America""" +2023-04-27,56646,9721,"[\""Keyboard\""]",4393.39,"{\""loyalty\"": \""7%\""}",104414,0,"""North America""" +2024-03-31,56647,4663,"[\""Headphones\"", \""Tablet\""]",851.27,{},266448,0,"""Asia""" +2023-09-29,56648,499,"[\""Headphones\""]",3134.39,{},206822,0,"""Asia""" +2023-11-14,56649,5661,"[\""Keyboard\"", \""Phone\""]",4069.07,"{\""seasonal\"": \""24%\""}",218732,0,"""South America""" +2024-07-09,56650,533,"[\""Keyboard\"", \""Phone\""]",1280.95,{},284447,1,"""Africa""" +2024-01-06,56651,454,"[\""Wireless Mouse\"", \""Charger\""]",2570.27,"{\""loyalty\"": \""9%\""}",276312,0,"""North America""" +2023-08-22,56652,802,"[\""Wireless Mouse\"", \""Monitor\""]",3030.55,"{\""loyalty\"": \""21%\""}",289823,0,"""Europe""" +2024-10-26,56653,7307,"[\""Wireless Mouse\""]",87.91,"{\"": \""9%\""}",205999,1,"""North America""" +2024-03-29,56654,883,"[\""Tablet\""]",768.51,"{\"": \""28%\""}",16323,0,"""Asia""" +2023-07-28,56655,3680,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2199.49,"{\""seasonal\"": \""14%\""}",179336,0,"""Asia""" +2023-04-30,56656,6783,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2208.15,"{\"": \""25%\""}",285630,0,"""North America""" +2024-06-17,56657,9896,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3036.15,{},161261,0,"""Africa""" +2023-09-30,56658,8825,"[\""Laptop\"", \""Keyboard\""]",2227.62,{},295359,0,"""Asia""" +2024-05-11,56659,7074,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3981.82,{},162409,1,"""Africa""" +2023-01-01,56660,6595,"[\""Headphones\"", \""Laptop\""]",4718.36,"{\""seasonal\"": \""18%\""}",95205,1,"""Europe""" +2023-03-31,56661,5004,"[\""Charger\"", \""Tablet\""]",3371.91,{},41751,0,"""South America""" +2023-05-14,56662,8555,"[\""Laptop\""]",2765.78,"{\""loyalty\"": \""20%\""}",159990,0,"""North America""" +2024-07-07,56663,9435,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2341.5,{},43746,1,"""Africa""" +2023-12-09,56664,8375,"[\""Keyboard\""]",3026.13,"{\""seasonal\"": \""5%\""}",105198,0,"""Asia""" +2024-09-11,56665,4967,"[\""Keyboard\"", \""Charger\""]",2813.79,"{\""seasonal\"": \""30%\""}",279330,1,"""South America""" +2023-01-10,56666,5737,"[\""Keyboard\"", \""Monitor\""]",1208.57,"{\"": \""17%\""}",79436,1,"""South America""" +2024-02-26,56667,3514,"[\""Tablet\"", \""Laptop\""]",1239.47,{},158721,0,"""South America""" +2023-06-23,56668,8630,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1260.73,{},77002,0,"""South America""" +2024-07-02,56669,9493,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4964.38,{},29276,0,"""Europe""" +2024-02-04,56670,2067,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3696.67,"{\""seasonal\"": \""9%\""}",233980,1,"""Africa""" +2023-06-30,56671,6305,"[\""Laptop\"", \""Wireless Mouse\""]",4019.17,"{\"": \""23%\""}",12552,0,"""Europe""" +2024-01-28,56672,1378,"[\""Monitor\"", \""Headphones\""]",3875.36,{},82570,1,"""South America""" +2024-07-18,56673,7688,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2214.94,"{\""promo\"": \""5%\""}",112725,0,"""Europe""" +2024-12-16,56674,6033,"[\""Tablet\""]",1898.4,{},105608,0,"""Africa""" +2023-06-06,56675,7240,"[\""Headphones\"", \""Charger\""]",2448.3,"{\"": \""15%\""}",260170,1,"""South America""" +2023-11-04,56676,4613,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4750.92,{},200710,1,"""South America""" +2024-10-17,56677,7337,"[\""Laptop\"", \""Headphones\""]",1697.31,"{\""seasonal\"": \""13%\""}",16481,1,"""North America""" +2023-09-20,56678,2468,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1164.89,{},260679,0,"""Europe""" +2023-04-06,56679,6709,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4690.33,{},172698,1,"""North America""" +2024-10-27,56680,2067,"[\""Wireless Mouse\""]",1999.66,"{\"": \""6%\""}",195564,0,"""Europe""" +2024-03-13,56681,5604,"[\""Headphones\""]",591.89,"{\"": \""9%\""}",267947,0,"""North America""" +2024-02-11,56682,8602,"[\""Keyboard\""]",4489.12,{},256911,1,"""Asia""" +2024-01-04,56683,7067,"[\""Charger\"", \""Phone\""]",1645.57,"{\"": \""15%\""}",26900,1,"""South America""" +2023-07-17,56684,3638,"[\""Tablet\""]",1263.44,{},55636,1,"""Europe""" +2024-06-11,56685,6054,"[\""Phone\"", \""Keyboard\""]",1245.85,"{\""loyalty\"": \""8%\""}",186241,1,"""South America""" +2024-02-11,56686,6895,"[\""Monitor\""]",4444.34,"{\""promo\"": \""11%\""}",169580,1,"""Europe""" +2024-12-13,56687,7703,"[\""Phone\"", \""Keyboard\""]",2271.75,"{\""promo\"": \""11%\""}",146857,1,"""Europe""" +2023-08-22,56688,3608,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4794.47,{},244298,1,"""South America""" +2024-09-06,56689,287,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",328.97,"{\""promo\"": \""7%\""}",111202,1,"""South America""" +2023-09-19,56690,2742,"[\""Tablet\"", \""Wireless Mouse\""]",3294.99,{},115901,1,"""Europe""" +2024-03-03,56691,4151,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1416.93,"{\""seasonal\"": \""5%\""}",120888,0,"""Africa""" +2024-06-25,56692,8997,"[\""Headphones\"", \""Monitor\""]",1374.2,{},131731,1,"""Asia""" +2023-07-18,56693,6271,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3960.75,{},79417,1,"""Africa""" +2023-04-01,56694,7453,"[\""Tablet\""]",1172.76,{},271112,1,"""Europe""" +2023-08-26,56695,3174,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3921.18,"{\"": \""27%\""}",179035,1,"""Asia""" +2024-07-10,56696,7394,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1981.95,"{\"": \""8%\""}",232255,1,"""North America""" +2023-06-16,56697,3125,"[\""Phone\"", \""Headphones\""]",1747.76,"{\""promo\"": \""19%\""}",105242,1,"""Africa""" +2024-10-07,56698,3142,"[\""Monitor\"", \""Headphones\""]",390.71,"{\""loyalty\"": \""20%\""}",184827,0,"""North America""" +2023-11-07,56699,1173,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",809.15,"{\""seasonal\"": \""11%\""}",55944,1,"""North America""" +2024-06-14,56700,9064,"[\""Headphones\""]",1732.39,"{\""promo\"": \""12%\""}",241163,1,"""Africa""" +2023-06-10,56701,663,"[\""Phone\"", \""Charger\""]",154.73,"{\""loyalty\"": \""7%\""}",51538,1,"""Africa""" +2024-11-18,56702,9164,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",427.5,"{\"": \""29%\""}",230381,1,"""Asia""" +2023-12-10,56703,9380,"[\""Phone\""]",665.54,{},90853,1,"""Asia""" +2024-11-06,56704,6014,"[\""Laptop\"", \""Charger\""]",431.47,"{\""loyalty\"": \""20%\""}",1211,0,"""North America""" +2023-09-08,56705,9105,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4707.91,"{\"": \""28%\""}",6765,1,"""Africa""" +2024-09-04,56706,6153,"[\""Wireless Mouse\"", \""Phone\""]",445.93,"{\"": \""15%\""}",298261,0,"""North America""" +2023-06-02,56707,897,"[\""Laptop\"", \""Monitor\""]",1627.88,{},86856,1,"""South America""" +2024-05-31,56708,9078,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3117.51,"{\""promo\"": \""9%\""}",90878,1,"""South America""" +2024-09-23,56709,3821,"[\""Keyboard\"", \""Charger\""]",4975.3,"{\"": \""9%\""}",50040,1,"""Europe""" +2023-05-05,56710,8523,"[\""Wireless Mouse\""]",3796.8,{},193242,0,"""Asia""" +2023-12-15,56711,7630,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3059.93,{},57817,0,"""Asia""" +2024-09-27,56712,5378,"[\""Tablet\""]",955.2,"{\""loyalty\"": \""6%\""}",278476,1,"""Asia""" +2023-07-15,56713,9356,"[\""Charger\""]",3286.67,{},89650,0,"""Africa""" +2023-09-18,56714,831,"[\""Headphones\""]",1245.02,{},234644,1,"""Europe""" +2024-04-24,56715,3636,"[\""Tablet\"", \""Monitor\""]",4386.97,{},181546,1,"""Europe""" +2023-10-31,56716,6676,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4587.02,{},122220,1,"""Africa""" +2023-08-19,56717,6536,"[\""Phone\"", \""Headphones\""]",1582.41,"{\""loyalty\"": \""22%\""}",221232,0,"""South America""" +2024-03-18,56718,3494,"[\""Tablet\""]",842.25,{},19824,0,"""South America""" +2023-10-07,56719,7241,"[\""Charger\"", \""Wireless Mouse\""]",3551.43,"{\""seasonal\"": \""20%\""}",90387,0,"""Asia""" +2023-07-17,56720,714,"[\""Headphones\""]",2627.79,"{\""promo\"": \""21%\""}",61993,0,"""Asia""" +2023-08-28,56721,9980,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3996.94,"{\""promo\"": \""30%\""}",214496,0,"""Africa""" +2024-09-13,56722,3018,"[\""Monitor\""]",2246.45,"{\""seasonal\"": \""6%\""}",246981,1,"""Europe""" +2023-11-12,56723,5030,"[\""Keyboard\""]",4590.55,"{\"": \""30%\""}",19383,1,"""Africa""" +2023-03-11,56724,4887,"[\""Phone\""]",2786.4,"{\"": \""27%\""}",93038,1,"""South America""" +2023-12-22,56725,4413,"[\""Headphones\"", \""Phone\""]",2910.98,"{\""seasonal\"": \""13%\""}",89674,0,"""South America""" +2023-08-14,56726,5978,"[\""Phone\""]",1322.49,"{\""promo\"": \""17%\""}",176918,1,"""Europe""" +2023-01-24,56727,9639,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4909.81,{},206614,1,"""North America""" +2024-05-22,56728,6134,"[\""Laptop\""]",2423.49,"{\"": \""30%\""}",282724,0,"""North America""" +2024-12-02,56729,9943,"[\""Keyboard\"", \""Charger\""]",2925.01,"{\""promo\"": \""8%\""}",101108,1,"""Europe""" +2024-02-21,56730,3429,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4970.83,"{\"": \""24%\""}",194938,1,"""North America""" +2024-10-22,56731,3616,"[\""Charger\"", \""Wireless Mouse\""]",3547.07,"{\""loyalty\"": \""27%\""}",159464,1,"""North America""" +2023-05-27,56732,9342,"[\""Headphones\""]",2253.5,"{\""promo\"": \""28%\""}",205229,0,"""Asia""" +2023-03-22,56733,2333,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1831.05,{},167828,0,"""Europe""" +2024-01-30,56734,4490,"[\""Charger\""]",4892.21,"{\""promo\"": \""29%\""}",3940,0,"""Europe""" +2024-09-13,56735,4287,"[\""Headphones\"", \""Wireless Mouse\""]",2371.54,"{\""loyalty\"": \""23%\""}",93456,1,"""Africa""" +2023-03-17,56736,1259,"[\""Laptop\"", \""Phone\""]",2454.91,{},183376,0,"""South America""" +2023-09-04,56737,4508,"[\""Wireless Mouse\""]",4146.66,"{\""promo\"": \""18%\""}",76616,1,"""Africa""" +2023-05-03,56738,8999,"[\""Laptop\"", \""Keyboard\""]",3900.68,{},298979,1,"""Africa""" +2023-09-03,56739,9393,"[\""Wireless Mouse\"", \""Tablet\""]",3373.14,{},249488,0,"""North America""" +2023-08-10,56740,5935,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3193.81,"{\"": \""6%\""}",40690,1,"""Africa""" +2024-09-29,56741,7968,"[\""Phone\""]",1811.28,{},288963,0,"""Africa""" +2023-02-02,56742,3854,"[\""Tablet\"", \""Monitor\""]",4957.13,"{\""promo\"": \""25%\""}",215270,0,"""Africa""" +2024-11-26,56743,2701,"[\""Keyboard\"", \""Tablet\""]",2322.32,"{\""seasonal\"": \""18%\""}",44369,1,"""Africa""" +2023-04-09,56744,47,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4735.43,{},125842,0,"""South America""" +2023-02-07,56745,2984,"[\""Headphones\""]",1462.37,"{\""seasonal\"": \""12%\""}",296057,1,"""South America""" +2023-04-01,56746,6425,"[\""Charger\""]",4060.79,"{\""promo\"": \""18%\""}",48026,1,"""South America""" +2024-03-25,56747,1979,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1922.55,{},76327,1,"""Asia""" +2023-08-25,56748,6592,"[\""Charger\"", \""Laptop\""]",2591.6,{},105576,1,"""Europe""" +2024-03-05,56749,8040,"[\""Phone\""]",3470.1,{},236776,0,"""South America""" +2023-04-08,56750,967,"[\""Monitor\""]",4926.1,{},6014,1,"""Europe""" +2024-06-10,56751,4914,"[\""Headphones\"", \""Wireless Mouse\""]",4422.19,{},149484,0,"""Asia""" +2024-05-28,56752,4016,"[\""Phone\""]",301.4,{},285672,1,"""South America""" +2023-07-13,56753,8070,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4744.55,{},250696,1,"""North America""" +2023-04-17,56754,800,"[\""Charger\""]",507.15,"{\""loyalty\"": \""24%\""}",21169,1,"""South America""" +2024-05-13,56755,778,"[\""Wireless Mouse\""]",3909.12,{},54498,0,"""South America""" +2024-09-19,56756,737,"[\""Tablet\""]",4171.15,{},202740,0,"""North America""" +2024-10-20,56757,6588,"[\""Charger\""]",1804.29,{},92099,0,"""South America""" +2024-03-16,56758,9724,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2751.85,"{\""seasonal\"": \""7%\""}",276727,1,"""South America""" +2023-12-03,56759,3550,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3979.84,{},268200,0,"""South America""" +2023-10-08,56760,2025,"[\""Monitor\""]",4351.57,{},242835,0,"""Africa""" +2024-05-29,56761,1418,"[\""Keyboard\"", \""Monitor\""]",1186.69,"{\""promo\"": \""27%\""}",36502,0,"""Europe""" +2023-07-23,56762,7527,"[\""Charger\"", \""Headphones\""]",4931.18,{},14708,0,"""North America""" +2023-09-22,56763,8092,"[\""Wireless Mouse\"", \""Tablet\""]",3596.11,"{\""seasonal\"": \""8%\""}",192700,0,"""Africa""" +2024-12-15,56764,1520,"[\""Headphones\""]",4098.03,"{\""promo\"": \""23%\""}",233147,1,"""Europe""" +2023-05-05,56765,179,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2449.31,{},152682,0,"""Europe""" +2024-12-17,56766,4227,"[\""Tablet\"", \""Wireless Mouse\""]",1194.08,"{\"": \""17%\""}",68016,0,"""South America""" +2024-02-10,56767,1154,"[\""Phone\"", \""Tablet\""]",4595.52,{},295229,1,"""Asia""" +2024-05-09,56768,6883,"[\""Laptop\""]",586.97,{},140230,0,"""Asia""" +2024-05-19,56769,7797,"[\""Charger\""]",4401.73,"{\""loyalty\"": \""6%\""}",163988,0,"""South America""" +2024-01-26,56770,2805,"[\""Headphones\"", \""Tablet\""]",2786.54,{},251896,1,"""Asia""" +2023-05-04,56771,1502,"[\""Keyboard\"", \""Monitor\""]",4115.25,{},57615,1,"""South America""" +2024-04-16,56772,740,"[\""Laptop\""]",2300.97,{},111944,1,"""Africa""" +2024-05-25,56773,5084,"[\""Laptop\""]",2126.79,"{\"": \""18%\""}",82821,1,"""North America""" +2023-07-06,56774,4422,"[\""Phone\""]",1306.51,{},177654,0,"""Asia""" +2023-10-17,56775,9994,"[\""Tablet\"", \""Phone\""]",4173.05,"{\"": \""8%\""}",252769,1,"""South America""" +2023-06-04,56776,9680,"[\""Monitor\""]",4811.84,"{\"": \""29%\""}",135139,1,"""North America""" +2024-04-18,56777,429,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",873.7,"{\""loyalty\"": \""25%\""}",180139,0,"""Europe""" +2023-06-13,56778,1879,"[\""Keyboard\""]",1435.21,{},217592,0,"""South America""" +2023-09-28,56779,7393,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2860.75,{},89967,1,"""Europe""" +2024-03-28,56780,4542,"[\""Headphones\"", \""Monitor\""]",1099.28,"{\""promo\"": \""26%\""}",295517,0,"""Europe""" +2024-03-25,56781,370,"[\""Phone\"", \""Tablet\""]",4094.55,{},44595,1,"""Europe""" +2023-02-23,56782,1334,"[\""Charger\"", \""Laptop\""]",3418.88,{},94031,0,"""South America""" +2024-11-01,56783,3097,"[\""Keyboard\""]",2839.65,{},133528,1,"""South America""" +2024-05-06,56784,2745,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1202.68,"{\""loyalty\"": \""10%\""}",76369,0,"""Africa""" +2023-06-21,56785,1687,"[\""Charger\""]",465.12,"{\""promo\"": \""14%\""}",43760,1,"""South America""" +2024-03-17,56786,2558,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4341.45,{},69262,1,"""Africa""" +2023-11-23,56787,8285,"[\""Wireless Mouse\"", \""Monitor\""]",4113.96,{},213442,1,"""Asia""" +2023-10-23,56788,6880,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2143.51,{},136084,0,"""Africa""" +2023-11-07,56789,7762,"[\""Headphones\"", \""Tablet\""]",4710.91,{},135243,1,"""Asia""" +2024-05-24,56790,6700,"[\""Charger\""]",1852.15,{},48691,0,"""North America""" +2024-03-15,56791,4570,"[\""Charger\"", \""Monitor\""]",843.64,"{\""promo\"": \""17%\""}",276376,0,"""North America""" +2023-08-01,56792,2229,"[\""Monitor\""]",1706.0,{},108289,0,"""South America""" +2023-08-31,56793,20,"[\""Laptop\""]",2469.07,{},224030,0,"""Asia""" +2024-07-30,56794,3367,"[\""Keyboard\""]",4992.33,"{\"": \""30%\""}",286668,1,"""Europe""" +2023-01-07,56795,8028,"[\""Laptop\"", \""Tablet\""]",2894.69,"{\""loyalty\"": \""6%\""}",213757,0,"""South America""" +2024-05-02,56796,6901,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1346.18,{},182334,0,"""Europe""" +2023-10-28,56797,3670,"[\""Laptop\"", \""Charger\""]",4324.17,"{\""promo\"": \""8%\""}",275191,0,"""Europe""" +2024-07-12,56798,3958,"[\""Monitor\"", \""Wireless Mouse\""]",1597.85,{},182878,1,"""Africa""" +2023-03-18,56799,8420,"[\""Charger\""]",367.62,"{\""seasonal\"": \""21%\""}",218367,0,"""North America""" +2024-02-21,56800,3362,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4643.66,"{\"": \""24%\""}",264223,0,"""Europe""" +2024-10-13,56801,4277,"[\""Monitor\""]",3641.93,{},85849,0,"""South America""" +2023-10-28,56802,6108,"[\""Tablet\"", \""Wireless Mouse\""]",574.51,{},78285,1,"""Asia""" +2024-01-20,56803,1568,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2020.62,"{\""loyalty\"": \""28%\""}",97252,0,"""Europe""" +2023-06-12,56804,8943,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4023.44,{},232184,0,"""Africa""" +2024-07-08,56805,8125,"[\""Wireless Mouse\""]",1610.88,"{\""loyalty\"": \""25%\""}",212209,0,"""Europe""" +2023-03-27,56806,3619,"[\""Charger\"", \""Wireless Mouse\""]",3577.62,"{\"": \""7%\""}",59457,1,"""Europe""" +2023-04-22,56807,4756,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3016.44,{},37222,0,"""South America""" +2024-05-20,56808,7190,"[\""Monitor\"", \""Headphones\""]",751.57,{},292869,0,"""Asia""" +2024-01-15,56809,2992,"[\""Wireless Mouse\"", \""Charger\""]",4914.76,{},106395,0,"""Europe""" +2023-02-15,56810,1504,"[\""Laptop\"", \""Wireless Mouse\""]",4982.32,"{\""promo\"": \""13%\""}",172477,0,"""Africa""" +2023-06-21,56811,8401,"[\""Wireless Mouse\""]",1324.07,{},24261,1,"""Asia""" +2024-07-07,56812,6003,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1008.72,{},207794,1,"""North America""" +2023-10-27,56813,7329,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2939.88,"{\""seasonal\"": \""28%\""}",88319,1,"""North America""" +2023-03-07,56814,4263,"[\""Tablet\"", \""Laptop\""]",4615.72,{},177350,0,"""Africa""" +2024-08-23,56815,9013,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4450.41,{},3520,0,"""Africa""" +2024-12-13,56816,884,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",145.4,{},297607,0,"""Europe""" +2023-06-05,56817,8299,"[\""Monitor\""]",443.16,"{\""seasonal\"": \""14%\""}",155691,1,"""South America""" +2024-12-20,56818,8351,"[\""Laptop\""]",1390.06,"{\""loyalty\"": \""14%\""}",265492,1,"""Africa""" +2024-05-20,56819,5169,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1914.76,{},254890,0,"""Asia""" +2024-06-05,56820,5852,"[\""Headphones\""]",1642.48,"{\""loyalty\"": \""27%\""}",155268,1,"""South America""" +2023-06-19,56821,2913,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4100.28,{},174380,0,"""Asia""" +2024-12-23,56822,3234,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3151.32,{},254234,1,"""North America""" +2024-10-13,56823,6958,"[\""Monitor\"", \""Headphones\""]",2259.7,"{\""loyalty\"": \""5%\""}",63847,0,"""North America""" +2024-06-27,56824,9032,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3290.82,{},98577,1,"""South America""" +2024-11-06,56825,1883,"[\""Wireless Mouse\""]",964.73,"{\"": \""30%\""}",9520,1,"""Europe""" +2023-05-22,56826,491,"[\""Phone\"", \""Charger\""]",755.39,"{\"": \""23%\""}",151733,1,"""North America""" +2023-09-05,56827,1588,"[\""Charger\""]",1638.74,"{\"": \""12%\""}",286587,1,"""Asia""" +2024-03-13,56828,8000,"[\""Wireless Mouse\""]",4011.04,{},201769,1,"""North America""" +2023-04-09,56829,9439,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2176.91,{},61546,0,"""Asia""" +2024-12-18,56830,6375,"[\""Wireless Mouse\""]",3103.04,"{\""loyalty\"": \""17%\""}",197605,1,"""North America""" +2023-07-23,56831,4830,"[\""Charger\""]",463.1,{},20921,1,"""Asia""" +2024-11-21,56832,5865,"[\""Headphones\""]",3074.68,"{\"": \""26%\""}",68791,0,"""Africa""" +2024-09-15,56833,4412,"[\""Tablet\"", \""Keyboard\""]",794.93,{},115956,0,"""South America""" +2023-12-05,56834,6323,"[\""Charger\""]",1882.28,"{\""promo\"": \""7%\""}",292299,1,"""Africa""" +2023-04-06,56835,760,"[\""Keyboard\"", \""Phone\""]",2721.9,{},196934,1,"""North America""" +2024-05-25,56836,265,"[\""Phone\"", \""Keyboard\""]",3314.14,"{\""promo\"": \""11%\""}",106153,0,"""South America""" +2023-08-18,56837,812,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1671.96,"{\""loyalty\"": \""14%\""}",298961,0,"""Europe""" +2023-09-09,56838,2882,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3190.0,{},53005,1,"""North America""" +2023-09-01,56839,7029,"[\""Charger\"", \""Wireless Mouse\""]",4553.29,{},197436,1,"""North America""" +2023-06-28,56840,5053,"[\""Phone\"", \""Wireless Mouse\""]",1436.9,"{\""promo\"": \""6%\""}",129401,1,"""North America""" +2024-07-07,56841,4651,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2604.78,{},294152,1,"""North America""" +2024-05-28,56842,6747,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2192.72,{},27416,0,"""Asia""" +2023-09-23,56843,2400,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4525.64,{},188702,0,"""Asia""" +2024-02-03,56844,2245,"[\""Headphones\"", \""Tablet\""]",997.44,{},186381,0,"""North America""" +2023-12-11,56845,7238,"[\""Wireless Mouse\""]",4544.89,"{\""seasonal\"": \""21%\""}",167611,1,"""North America""" +2024-10-26,56846,5543,"[\""Wireless Mouse\"", \""Monitor\""]",1715.94,{},207925,0,"""Asia""" +2023-12-18,56847,1515,"[\""Headphones\""]",2938.68,{},166753,0,"""Europe""" +2023-12-12,56848,4616,"[\""Monitor\""]",4778.8,"{\""loyalty\"": \""27%\""}",132069,1,"""North America""" +2023-08-18,56849,6163,"[\""Wireless Mouse\"", \""Monitor\""]",1682.52,{},119946,0,"""Europe""" +2024-12-01,56850,1817,"[\""Keyboard\"", \""Phone\""]",3849.14,{},104951,1,"""Africa""" +2024-04-19,56851,4061,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2055.91,"{\""seasonal\"": \""21%\""}",109788,1,"""South America""" +2024-11-01,56852,4964,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2946.65,{},82550,1,"""Asia""" +2024-11-05,56853,706,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4470.33,{},264541,0,"""Europe""" +2024-08-23,56854,5641,"[\""Monitor\""]",3734.89,"{\""seasonal\"": \""17%\""}",140431,1,"""Africa""" +2024-02-22,56855,4359,"[\""Charger\""]",2108.38,"{\""seasonal\"": \""15%\""}",88309,0,"""Asia""" +2023-08-15,56856,6459,"[\""Monitor\""]",262.46,{},141241,1,"""Africa""" +2023-02-02,56857,8495,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",203.58,"{\"": \""28%\""}",269130,1,"""Asia""" +2023-11-20,56858,3412,"[\""Keyboard\"", \""Laptop\""]",4139.65,{},289871,0,"""Asia""" +2024-06-10,56859,5957,"[\""Tablet\""]",2035.31,"{\""loyalty\"": \""16%\""}",267882,0,"""South America""" +2024-12-30,56860,9481,"[\""Wireless Mouse\"", \""Phone\""]",4221.75,{},51168,0,"""South America""" +2023-09-10,56861,3156,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2777.79,"{\""loyalty\"": \""22%\""}",268928,1,"""Africa""" +2024-06-05,56862,5116,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3411.62,{},86964,1,"""Europe""" +2024-07-12,56863,2795,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2066.81,{},116765,0,"""Africa""" +2024-01-03,56864,1133,"[\""Wireless Mouse\""]",2294.24,"{\""loyalty\"": \""24%\""}",254311,0,"""Asia""" +2024-03-24,56865,3683,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",456.93,"{\""loyalty\"": \""13%\""}",274281,0,"""Asia""" +2023-02-04,56866,1230,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4067.63,"{\""seasonal\"": \""5%\""}",258384,0,"""North America""" +2023-10-01,56867,9036,"[\""Tablet\""]",4601.22,{},281667,1,"""Asia""" +2023-12-04,56868,9909,"[\""Phone\""]",1625.42,"{\"": \""28%\""}",123463,1,"""Europe""" +2023-12-04,56869,4042,"[\""Headphones\"", \""Phone\""]",752.64,"{\""seasonal\"": \""30%\""}",249026,1,"""North America""" +2024-07-26,56870,9495,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2909.3,"{\""seasonal\"": \""27%\""}",42404,0,"""South America""" +2023-10-31,56871,9751,"[\""Keyboard\""]",1371.27,{},161417,1,"""Africa""" +2024-01-26,56872,7833,"[\""Tablet\"", \""Monitor\""]",321.53,"{\""loyalty\"": \""5%\""}",280087,1,"""South America""" +2024-12-13,56873,6358,"[\""Tablet\""]",2480.41,"{\""seasonal\"": \""28%\""}",106870,0,"""Asia""" +2023-02-14,56874,3958,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",741.31,"{\""seasonal\"": \""20%\""}",148874,1,"""Europe""" +2023-07-24,56875,1382,"[\""Laptop\"", \""Tablet\""]",577.3,{},106926,1,"""North America""" +2024-04-06,56876,1251,"[\""Tablet\""]",4564.63,{},8175,0,"""Asia""" +2024-09-08,56877,4289,"[\""Headphones\""]",2914.9,{},122939,1,"""South America""" +2024-04-30,56878,8002,"[\""Charger\""]",1983.1,"{\"": \""21%\""}",262012,0,"""Africa""" +2024-12-11,56879,2805,"[\""Wireless Mouse\"", \""Tablet\""]",3411.86,{},144145,0,"""Africa""" +2023-01-31,56880,2129,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1157.0,"{\""seasonal\"": \""14%\""}",123205,0,"""South America""" +2023-12-12,56881,2043,"[\""Laptop\""]",433.28,"{\""loyalty\"": \""28%\""}",296560,1,"""South America""" +2023-04-17,56882,9388,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",581.39,"{\""promo\"": \""13%\""}",298229,1,"""Africa""" +2023-03-01,56883,7119,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2836.54,{},185259,1,"""Asia""" +2024-07-15,56884,3346,"[\""Headphones\"", \""Monitor\""]",3601.27,{},215373,0,"""North America""" +2024-01-10,56885,8424,"[\""Tablet\""]",3048.12,"{\""seasonal\"": \""25%\""}",282526,1,"""Europe""" +2023-08-05,56886,214,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2747.98,{},177080,1,"""South America""" +2024-12-04,56887,6223,"[\""Charger\""]",4698.33,{},227037,0,"""Asia""" +2023-12-31,56888,5338,"[\""Tablet\""]",4783.74,"{\""loyalty\"": \""15%\""}",173803,0,"""South America""" +2023-11-07,56889,457,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1283.07,{},30499,0,"""Europe""" +2024-09-16,56890,6178,"[\""Monitor\""]",1048.63,"{\"": \""21%\""}",288768,0,"""North America""" +2023-03-17,56891,8619,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1331.87,"{\"": \""19%\""}",101013,1,"""North America""" +2023-12-06,56892,7366,"[\""Monitor\""]",1253.31,"{\"": \""8%\""}",282563,0,"""Asia""" +2024-03-12,56893,6191,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",778.2,{},169384,1,"""South America""" +2024-12-16,56894,5658,"[\""Wireless Mouse\"", \""Charger\""]",2378.69,"{\""loyalty\"": \""11%\""}",136136,0,"""Europe""" +2024-02-25,56895,8539,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4388.02,"{\""seasonal\"": \""14%\""}",180597,1,"""South America""" +2023-07-11,56896,1667,"[\""Monitor\"", \""Keyboard\""]",1677.21,{},241089,1,"""Africa""" +2024-09-13,56897,4645,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2528.23,{},246590,1,"""Africa""" +2024-04-16,56898,6560,"[\""Wireless Mouse\"", \""Headphones\""]",1753.69,"{\""loyalty\"": \""29%\""}",256697,0,"""South America""" +2023-09-27,56899,6145,"[\""Monitor\""]",1018.92,{},224951,1,"""Asia""" +2023-07-20,56900,3501,"[\""Keyboard\"", \""Headphones\""]",3787.19,{},279651,0,"""North America""" +2023-05-14,56901,6479,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1847.52,"{\""loyalty\"": \""12%\""}",195393,0,"""Africa""" +2024-05-31,56902,713,"[\""Phone\"", \""Keyboard\""]",2662.5,"{\"": \""13%\""}",182458,0,"""Europe""" +2024-01-09,56903,8527,"[\""Headphones\""]",853.14,{},199867,0,"""Africa""" +2023-12-15,56904,9046,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3872.91,{},55944,0,"""Europe""" +2023-07-15,56905,6666,"[\""Monitor\"", \""Headphones\""]",708.59,{},193957,1,"""Africa""" +2024-11-13,56906,3435,"[\""Tablet\""]",2571.7,"{\""promo\"": \""7%\""}",213313,0,"""North America""" +2024-02-05,56907,8174,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3757.14,{},270314,0,"""Asia""" +2024-01-17,56908,9861,"[\""Tablet\"", \""Phone\""]",4506.84,"{\"": \""29%\""}",22259,0,"""Africa""" +2023-05-23,56909,1817,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1911.37,{},85422,1,"""South America""" +2023-04-07,56910,1098,"[\""Phone\"", \""Keyboard\""]",1265.69,"{\""seasonal\"": \""18%\""}",13410,0,"""Asia""" +2023-11-21,56911,4001,"[\""Phone\"", \""Wireless Mouse\""]",3045.1,"{\""promo\"": \""11%\""}",109404,1,"""South America""" +2023-07-27,56912,7890,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3984.23,{},266527,0,"""Asia""" +2024-05-24,56913,6383,"[\""Phone\""]",4817.05,"{\"": \""28%\""}",21851,0,"""Africa""" +2024-12-08,56914,5506,"[\""Wireless Mouse\""]",4546.68,{},208661,1,"""Asia""" +2023-01-14,56915,6457,"[\""Keyboard\"", \""Charger\""]",2128.47,{},298304,1,"""North America""" +2023-05-10,56916,1360,"[\""Laptop\""]",4124.8,{},192116,0,"""Asia""" +2023-08-05,56917,5652,"[\""Monitor\""]",3011.86,{},232465,1,"""Europe""" +2024-01-23,56918,9914,"[\""Laptop\"", \""Wireless Mouse\""]",142.41,{},266144,1,"""Asia""" +2023-08-04,56919,3856,"[\""Phone\"", \""Laptop\""]",3926.11,{},279603,0,"""Africa""" +2024-07-10,56920,7152,"[\""Monitor\""]",2271.47,{},34164,0,"""Europe""" +2023-08-17,56921,6450,"[\""Wireless Mouse\"", \""Headphones\""]",3911.47,"{\""loyalty\"": \""25%\""}",253820,0,"""South America""" +2023-11-26,56922,1874,"[\""Tablet\""]",4592.71,"{\"": \""15%\""}",194014,1,"""Europe""" +2023-06-06,56923,5300,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",185.93,{},188070,0,"""South America""" +2023-06-22,56924,3636,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4293.52,"{\""promo\"": \""28%\""}",11289,0,"""Europe""" +2023-02-19,56925,9368,"[\""Wireless Mouse\"", \""Phone\""]",1930.57,"{\""loyalty\"": \""10%\""}",37138,0,"""Asia""" +2024-03-25,56926,5739,"[\""Laptop\""]",4892.85,{},78865,1,"""Asia""" +2023-05-18,56927,3068,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4205.67,"{\""loyalty\"": \""28%\""}",84189,1,"""Asia""" +2024-11-04,56928,9945,"[\""Charger\""]",857.0,{},87449,0,"""Asia""" +2023-08-07,56929,7392,"[\""Monitor\"", \""Headphones\""]",3144.32,{},189848,1,"""North America""" +2023-09-04,56930,6707,"[\""Phone\"", \""Wireless Mouse\""]",2177.26,"{\""promo\"": \""12%\""}",291382,1,"""Africa""" +2024-10-26,56931,7343,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3412.77,{},203113,1,"""South America""" +2024-10-30,56932,6934,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2087.91,"{\""promo\"": \""7%\""}",123872,1,"""North America""" +2024-07-17,56933,8298,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",842.45,{},280980,0,"""Africa""" +2023-05-15,56934,7286,"[\""Tablet\"", \""Wireless Mouse\""]",1319.85,{},168958,1,"""North America""" +2024-01-03,56935,718,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1793.75,"{\""promo\"": \""19%\""}",208231,1,"""Africa""" +2023-02-01,56936,5177,"[\""Keyboard\"", \""Wireless Mouse\""]",184.8,"{\""loyalty\"": \""23%\""}",229458,1,"""Africa""" +2024-02-29,56937,7967,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",636.16,"{\""loyalty\"": \""27%\""}",241788,0,"""South America""" +2023-08-06,56938,9816,"[\""Phone\""]",2826.15,{},221513,0,"""Africa""" +2023-12-14,56939,1572,"[\""Headphones\""]",3408.59,{},283392,1,"""Europe""" +2023-08-03,56940,7387,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1652.21,"{\""promo\"": \""12%\""}",9273,1,"""Africa""" +2023-06-01,56941,2581,"[\""Wireless Mouse\""]",2303.49,"{\""promo\"": \""21%\""}",158821,1,"""South America""" +2023-05-22,56942,1716,"[\""Tablet\"", \""Laptop\""]",4753.28,"{\""seasonal\"": \""24%\""}",235594,1,"""South America""" +2024-04-02,56943,9885,"[\""Monitor\"", \""Headphones\""]",1162.23,"{\""promo\"": \""10%\""}",294442,1,"""Asia""" +2024-10-01,56944,7083,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1912.0,"{\"": \""14%\""}",115259,1,"""Asia""" +2023-05-11,56945,1123,"[\""Monitor\""]",1103.67,"{\""seasonal\"": \""25%\""}",103846,1,"""South America""" +2024-09-14,56946,5539,"[\""Monitor\""]",4259.94,"{\"": \""19%\""}",38402,1,"""South America""" +2024-08-12,56947,5873,"[\""Laptop\"", \""Keyboard\""]",1803.33,"{\""loyalty\"": \""29%\""}",84593,1,"""Asia""" +2024-05-01,56948,2019,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3985.65,{},67597,0,"""Asia""" +2023-09-07,56949,6530,"[\""Charger\""]",4408.58,{},230594,1,"""North America""" +2023-02-28,56950,8603,"[\""Monitor\"", \""Charger\""]",559.18,"{\"": \""13%\""}",44583,0,"""Asia""" +2023-01-17,56951,9085,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",808.44,"{\"": \""10%\""}",117590,1,"""Africa""" +2023-12-04,56952,1000,"[\""Headphones\""]",3170.09,"{\""seasonal\"": \""9%\""}",92060,0,"""North America""" +2024-06-03,56953,4314,"[\""Phone\""]",79.31,{},35703,1,"""Asia""" +2023-01-03,56954,1764,"[\""Monitor\""]",2737.44,{},265183,1,"""Africa""" +2023-05-26,56955,1167,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4808.56,"{\""promo\"": \""28%\""}",136963,0,"""Africa""" +2024-04-23,56956,7884,"[\""Wireless Mouse\"", \""Charger\""]",80.77,"{\"": \""14%\""}",110569,0,"""Asia""" +2024-07-05,56957,9265,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3337.16,"{\""loyalty\"": \""9%\""}",298465,1,"""South America""" +2023-10-13,56958,5547,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1787.7,"{\""promo\"": \""5%\""}",206436,0,"""North America""" +2024-08-28,56959,1568,"[\""Wireless Mouse\""]",4720.62,{},152820,0,"""North America""" +2023-09-04,56960,273,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3760.56,{},83832,0,"""Africa""" +2023-03-18,56961,4736,"[\""Wireless Mouse\""]",2958.81,{},223764,0,"""Asia""" +2024-12-31,56962,4129,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2114.52,"{\""seasonal\"": \""5%\""}",27974,0,"""South America""" +2023-01-30,56963,6705,"[\""Charger\"", \""Headphones\""]",3119.22,{},101327,0,"""North America""" +2024-04-21,56964,8684,"[\""Wireless Mouse\"", \""Keyboard\""]",94.93,{},15766,0,"""Africa""" +2023-03-01,56965,9460,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1619.44,{},209364,1,"""Europe""" +2024-08-30,56966,1822,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4385.65,"{\""seasonal\"": \""25%\""}",248241,0,"""Europe""" +2023-06-09,56967,8040,"[\""Laptop\"", \""Charger\""]",1342.92,"{\"": \""19%\""}",59557,1,"""Africa""" +2023-12-24,56968,8113,"[\""Monitor\""]",3593.22,"{\"": \""13%\""}",253631,0,"""Africa""" +2024-02-21,56969,7388,"[\""Charger\""]",1636.47,"{\""promo\"": \""28%\""}",293057,0,"""Africa""" +2023-06-04,56970,4104,"[\""Laptop\""]",52.72,"{\"": \""22%\""}",214650,0,"""Africa""" +2023-11-12,56971,9495,"[\""Keyboard\"", \""Tablet\""]",3933.78,"{\""promo\"": \""24%\""}",78138,0,"""North America""" +2023-07-22,56972,5492,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1920.52,{},280455,0,"""Europe""" +2024-11-02,56973,4358,"[\""Wireless Mouse\"", \""Phone\""]",1191.99,{},142218,0,"""North America""" +2023-09-01,56974,2359,"[\""Keyboard\"", \""Charger\""]",457.0,"{\""loyalty\"": \""17%\""}",221277,1,"""Europe""" +2023-07-20,56975,3352,"[\""Laptop\""]",2239.51,{},227915,1,"""Africa""" +2023-05-27,56976,3775,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2629.16,{},50308,0,"""Europe""" +2023-08-02,56977,2823,"[\""Keyboard\""]",52.19,"{\""promo\"": \""14%\""}",132110,1,"""Europe""" +2023-06-17,56978,8020,"[\""Phone\"", \""Charger\""]",4196.1,"{\""seasonal\"": \""20%\""}",211094,0,"""Europe""" +2024-10-18,56979,7675,"[\""Wireless Mouse\"", \""Headphones\""]",4928.37,{},279289,1,"""Asia""" +2024-07-30,56980,2653,"[\""Wireless Mouse\"", \""Keyboard\""]",1143.55,"{\""loyalty\"": \""6%\""}",211673,1,"""Europe""" +2023-06-12,56981,1875,"[\""Monitor\"", \""Wireless Mouse\""]",3366.24,"{\""seasonal\"": \""28%\""}",282067,0,"""South America""" +2024-08-08,56982,738,"[\""Phone\""]",458.84,"{\""promo\"": \""29%\""}",215702,1,"""North America""" +2023-05-31,56983,4615,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4867.61,"{\""promo\"": \""17%\""}",62316,0,"""Asia""" +2024-10-28,56984,1210,"[\""Keyboard\""]",3132.37,{},181440,1,"""South America""" +2023-10-15,56985,7545,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4520.13,{},114168,1,"""Africa""" +2023-05-18,56986,2636,"[\""Laptop\"", \""Wireless Mouse\""]",4676.89,{},236505,1,"""Asia""" +2024-12-27,56987,9083,"[\""Phone\""]",3000.67,{},172271,0,"""Asia""" +2023-08-05,56988,1531,"[\""Keyboard\""]",925.24,"{\""loyalty\"": \""22%\""}",168534,1,"""Europe""" +2023-06-02,56989,8145,"[\""Monitor\"", \""Phone\""]",1988.1,"{\""seasonal\"": \""20%\""}",249250,0,"""North America""" +2023-06-22,56990,9725,"[\""Headphones\""]",3361.95,"{\""seasonal\"": \""9%\""}",223767,1,"""Africa""" +2024-09-11,56991,6500,"[\""Monitor\"", \""Keyboard\""]",2885.54,"{\""seasonal\"": \""12%\""}",40435,1,"""Europe""" +2024-11-26,56992,8042,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",483.75,{},158741,0,"""South America""" +2023-07-01,56993,8280,"[\""Tablet\"", \""Headphones\""]",213.78,"{\"": \""14%\""}",253607,1,"""South America""" +2023-01-23,56994,2060,"[\""Headphones\""]",2180.82,{},248171,1,"""Asia""" +2023-01-04,56995,7515,"[\""Wireless Mouse\""]",1215.72,{},81115,1,"""North America""" +2024-05-23,56996,4606,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1153.19,{},224428,0,"""Europe""" +2023-01-27,56997,7503,"[\""Charger\""]",1619.35,"{\""seasonal\"": \""15%\""}",278953,1,"""Europe""" +2023-06-18,56998,9225,"[\""Monitor\""]",610.62,{},261394,0,"""Europe""" +2024-03-10,56999,7008,"[\""Laptop\""]",4700.37,"{\""loyalty\"": \""14%\""}",296408,1,"""North America""" +2023-08-06,57000,3556,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3520.72,{},102842,1,"""Europe""" +2023-07-25,57001,9134,"[\""Wireless Mouse\"", \""Phone\""]",2537.91,{},151903,1,"""North America""" +2024-07-29,57002,4389,"[\""Tablet\"", \""Charger\""]",2424.96,{},143715,0,"""Africa""" +2024-06-20,57003,9985,"[\""Phone\"", \""Monitor\""]",2622.7,"{\""seasonal\"": \""14%\""}",240413,0,"""Asia""" +2024-07-27,57004,1375,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1896.58,{},28027,1,"""Asia""" +2024-11-27,57005,2623,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2268.07,"{\""loyalty\"": \""5%\""}",250107,0,"""South America""" +2023-03-21,57006,9409,"[\""Keyboard\""]",1959.17,"{\""promo\"": \""17%\""}",152992,1,"""North America""" +2023-12-13,57007,2555,"[\""Laptop\"", \""Charger\""]",4203.96,{},200918,0,"""Asia""" +2023-07-17,57008,9323,"[\""Wireless Mouse\""]",94.78,{},183142,0,"""Asia""" +2024-09-17,57009,1539,"[\""Laptop\""]",1559.04,{},88198,1,"""Europe""" +2024-10-06,57010,4874,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1698.02,{},238683,0,"""South America""" +2024-06-02,57011,3059,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3741.85,"{\"": \""8%\""}",262737,1,"""North America""" +2023-12-16,57012,2557,"[\""Phone\"", \""Laptop\""]",2387.71,"{\"": \""15%\""}",254129,0,"""Europe""" +2024-03-26,57013,5743,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3341.57,"{\""seasonal\"": \""21%\""}",105753,1,"""Africa""" +2024-10-30,57014,5244,"[\""Keyboard\""]",2188.54,"{\"": \""16%\""}",155903,0,"""Asia""" +2024-06-02,57015,2553,"[\""Wireless Mouse\""]",2560.29,{},281050,0,"""Africa""" +2023-04-17,57016,6178,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2769.21,"{\""seasonal\"": \""22%\""}",46826,1,"""Asia""" +2023-04-06,57017,5730,"[\""Wireless Mouse\"", \""Laptop\""]",376.77,"{\""loyalty\"": \""23%\""}",181899,1,"""Europe""" +2024-09-23,57018,1177,"[\""Tablet\"", \""Charger\""]",4525.95,"{\""seasonal\"": \""29%\""}",258487,1,"""North America""" +2024-07-08,57019,3365,"[\""Monitor\""]",1748.64,{},266730,0,"""Africa""" +2023-09-04,57020,576,"[\""Phone\""]",636.36,"{\"": \""7%\""}",141587,0,"""Africa""" +2024-04-28,57021,9189,"[\""Laptop\"", \""Charger\""]",3641.76,{},247454,0,"""Europe""" +2023-11-20,57022,9920,"[\""Keyboard\"", \""Laptop\""]",2903.18,"{\""seasonal\"": \""13%\""}",35149,0,"""Asia""" +2024-03-09,57023,4458,"[\""Keyboard\"", \""Phone\""]",3950.23,"{\""loyalty\"": \""9%\""}",121864,0,"""North America""" +2023-07-24,57024,8352,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2711.7,"{\""seasonal\"": \""5%\""}",59612,1,"""North America""" +2023-08-17,57025,1721,"[\""Headphones\""]",1163.93,{},286968,0,"""Africa""" +2024-08-18,57026,7941,"[\""Keyboard\""]",4176.72,{},237081,0,"""Europe""" +2024-06-27,57027,7299,"[\""Wireless Mouse\""]",2683.71,"{\""promo\"": \""11%\""}",85488,1,"""North America""" +2023-10-26,57028,3350,"[\""Phone\"", \""Monitor\""]",4313.53,"{\""seasonal\"": \""19%\""}",23696,1,"""Asia""" +2024-05-19,57029,9060,"[\""Phone\"", \""Charger\""]",1406.63,{},114519,0,"""South America""" +2023-11-16,57030,1333,"[\""Keyboard\"", \""Tablet\""]",2859.8,{},188148,1,"""North America""" +2023-05-03,57031,5618,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4380.53,{},34730,1,"""Europe""" +2023-12-10,57032,1148,"[\""Tablet\"", \""Wireless Mouse\""]",3444.27,"{\"": \""25%\""}",224713,1,"""South America""" +2024-01-18,57033,6222,"[\""Phone\""]",4595.0,"{\""loyalty\"": \""13%\""}",207294,0,"""North America""" +2024-01-05,57034,8883,"[\""Charger\""]",2533.98,{},48106,0,"""Asia""" +2023-12-30,57035,266,"[\""Keyboard\"", \""Phone\""]",1508.24,{},176253,0,"""Europe""" +2024-05-27,57036,5053,"[\""Monitor\""]",4409.17,{},126667,0,"""Africa""" +2024-11-22,57037,5154,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4659.71,{},21225,1,"""Asia""" +2023-02-17,57038,6723,"[\""Monitor\""]",3797.29,{},94676,1,"""Africa""" +2024-04-06,57039,2417,"[\""Monitor\"", \""Laptop\""]",2458.42,{},30706,0,"""Africa""" +2024-05-27,57040,4178,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3640.72,{},238394,1,"""Europe""" +2023-06-10,57041,1128,"[\""Headphones\""]",4740.42,"{\"": \""16%\""}",108803,1,"""Asia""" +2024-07-06,57042,5581,"[\""Charger\"", \""Laptop\""]",4546.74,{},119982,1,"""North America""" +2024-08-16,57043,9433,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4169.63,{},60186,1,"""North America""" +2024-05-17,57044,4754,"[\""Headphones\"", \""Phone\""]",233.07,{},62265,1,"""Asia""" +2024-12-11,57045,5139,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3090.27,{},236459,0,"""Africa""" +2023-05-28,57046,4280,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1947.68,{},222300,1,"""Africa""" +2024-12-22,57047,203,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4625.19,"{\""loyalty\"": \""28%\""}",105628,1,"""Europe""" +2023-01-30,57048,5170,"[\""Wireless Mouse\"", \""Laptop\""]",1600.14,"{\""promo\"": \""14%\""}",46082,1,"""South America""" +2023-09-06,57049,2990,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4931.89,{},144429,0,"""Asia""" +2024-12-07,57050,8976,"[\""Laptop\""]",2096.76,"{\""promo\"": \""24%\""}",11328,0,"""North America""" +2023-05-30,57051,3269,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3316.68,{},35613,1,"""South America""" +2024-11-02,57052,6438,"[\""Tablet\""]",4689.81,"{\""promo\"": \""29%\""}",104724,1,"""Asia""" +2023-09-09,57053,8142,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4436.71,"{\""seasonal\"": \""8%\""}",132067,0,"""Europe""" +2024-02-18,57054,876,"[\""Laptop\"", \""Wireless Mouse\""]",1377.41,"{\""seasonal\"": \""27%\""}",275032,0,"""North America""" +2024-09-12,57055,789,"[\""Charger\""]",3598.6,"{\"": \""9%\""}",32078,0,"""Asia""" +2023-02-21,57056,9588,"[\""Headphones\"", \""Laptop\""]",3911.31,"{\"": \""5%\""}",265422,1,"""South America""" +2023-03-21,57057,9366,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1270.57,{},39417,1,"""North America""" +2024-04-21,57058,520,"[\""Tablet\"", \""Wireless Mouse\""]",3930.41,"{\"": \""16%\""}",10595,1,"""Africa""" +2024-01-22,57059,3962,"[\""Phone\"", \""Monitor\""]",2769.84,{},181938,1,"""North America""" +2023-01-26,57060,6086,"[\""Phone\"", \""Headphones\""]",1647.18,{},94981,0,"""Europe""" +2024-11-22,57061,8490,"[\""Laptop\"", \""Phone\""]",1098.01,{},128803,0,"""Asia""" +2023-01-21,57062,6557,"[\""Monitor\""]",731.79,{},92185,1,"""North America""" +2023-08-23,57063,411,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3762.84,{},277369,1,"""Europe""" +2023-03-23,57064,4787,"[\""Keyboard\""]",1105.24,{},284733,1,"""Europe""" +2024-01-21,57065,3927,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2910.3,"{\""loyalty\"": \""28%\""}",155422,0,"""Asia""" +2023-08-31,57066,1523,"[\""Tablet\""]",3596.19,{},224727,1,"""Europe""" +2023-03-22,57067,6436,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2376.12,{},269154,1,"""North America""" +2023-04-23,57068,6338,"[\""Headphones\""]",1807.45,{},274367,1,"""Africa""" +2023-06-23,57069,2662,"[\""Tablet\"", \""Phone\""]",458.14,"{\"": \""6%\""}",36405,0,"""North America""" +2023-08-11,57070,3258,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1331.86,"{\"": \""25%\""}",23181,0,"""Africa""" +2024-12-27,57071,7039,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4576.52,{},112491,1,"""South America""" +2023-07-14,57072,2775,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4759.92,{},217275,0,"""North America""" +2023-10-31,57073,6627,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1543.71,"{\""seasonal\"": \""8%\""}",28104,1,"""Asia""" +2023-11-07,57074,7143,"[\""Tablet\""]",3290.77,{},45645,1,"""South America""" +2024-12-20,57075,5306,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",312.76,{},74792,0,"""North America""" +2024-06-11,57076,7120,"[\""Headphones\"", \""Monitor\""]",3886.12,{},19214,1,"""Europe""" +2023-08-27,57077,4058,"[\""Charger\""]",438.56,"{\""promo\"": \""19%\""}",248004,1,"""South America""" +2023-06-11,57078,8037,"[\""Headphones\"", \""Keyboard\""]",3615.16,"{\"": \""6%\""}",91329,1,"""South America""" +2024-06-14,57079,3666,"[\""Phone\"", \""Wireless Mouse\""]",2847.25,"{\"": \""19%\""}",184207,1,"""Europe""" +2024-01-24,57080,6383,"[\""Laptop\""]",2326.39,"{\"": \""15%\""}",147760,1,"""Europe""" +2023-05-25,57081,2308,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1230.86,{},88466,0,"""South America""" +2024-01-05,57082,6012,"[\""Laptop\"", \""Phone\""]",4544.59,{},247737,0,"""Europe""" +2023-10-20,57083,8485,"[\""Wireless Mouse\""]",4077.65,"{\""loyalty\"": \""17%\""}",289069,0,"""North America""" +2023-02-16,57084,5348,"[\""Phone\"", \""Monitor\""]",201.45,{},263594,0,"""Asia""" +2024-01-27,57085,2789,"[\""Charger\""]",3340.65,"{\"": \""18%\""}",127369,1,"""Asia""" +2023-03-24,57086,680,"[\""Charger\"", \""Phone\""]",50.93,"{\""promo\"": \""21%\""}",206237,1,"""North America""" +2023-10-24,57087,8821,"[\""Charger\""]",3534.24,"{\""promo\"": \""10%\""}",77451,1,"""South America""" +2024-02-13,57088,2282,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2814.44,"{\"": \""9%\""}",27313,1,"""South America""" +2024-12-01,57089,7161,"[\""Headphones\"", \""Wireless Mouse\""]",4064.58,"{\""loyalty\"": \""19%\""}",84102,0,"""North America""" +2024-08-15,57090,2251,"[\""Monitor\""]",1201.55,"{\""promo\"": \""24%\""}",168808,0,"""North America""" +2023-05-02,57091,2881,"[\""Laptop\""]",1018.2,{},84310,1,"""Asia""" +2023-05-06,57092,2140,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1626.16,{},248632,0,"""South America""" +2023-05-01,57093,2260,"[\""Laptop\""]",4393.8,{},57636,0,"""South America""" +2024-10-03,57094,5597,"[\""Headphones\""]",3593.61,{},186597,0,"""South America""" +2024-07-19,57095,2683,"[\""Monitor\""]",410.08,{},290534,1,"""Africa""" +2024-10-31,57096,8583,"[\""Phone\""]",1218.15,{},166958,1,"""South America""" +2023-10-02,57097,3328,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",918.52,"{\""promo\"": \""28%\""}",182155,1,"""Asia""" +2024-06-05,57098,2708,"[\""Monitor\"", \""Wireless Mouse\""]",1315.1,{},78542,1,"""North America""" +2023-12-29,57099,4328,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",265.46,{},235508,0,"""Africa""" +2024-07-04,57100,2091,"[\""Keyboard\"", \""Monitor\""]",1070.69,{},257958,1,"""Africa""" +2024-07-19,57101,7038,"[\""Phone\""]",4575.95,"{\""promo\"": \""30%\""}",52481,0,"""South America""" +2023-06-26,57102,2639,"[\""Wireless Mouse\"", \""Laptop\""]",1184.86,"{\"": \""12%\""}",240303,0,"""North America""" +2024-05-26,57103,9811,"[\""Monitor\""]",4587.51,{},220531,1,"""Europe""" +2024-06-28,57104,433,"[\""Headphones\"", \""Tablet\""]",824.36,{},249957,1,"""South America""" +2024-01-30,57105,8713,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4451.56,"{\""promo\"": \""7%\""}",253917,1,"""Europe""" +2023-08-26,57106,9955,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3338.01,{},38661,1,"""Africa""" +2023-09-29,57107,8357,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2650.44,{},43654,0,"""Africa""" +2023-11-12,57108,3372,"[\""Headphones\""]",1621.73,{},266720,1,"""Europe""" +2023-03-23,57109,4882,"[\""Charger\"", \""Monitor\""]",4887.19,"{\"": \""16%\""}",277740,1,"""Europe""" +2024-10-24,57110,5109,"[\""Tablet\"", \""Phone\""]",2521.67,"{\"": \""13%\""}",180992,0,"""North America""" +2024-07-13,57111,7408,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3442.37,{},30329,1,"""North America""" +2023-06-22,57112,8310,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1405.17,{},244619,1,"""North America""" +2024-01-27,57113,9748,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3181.73,"{\"": \""12%\""}",23053,0,"""South America""" +2024-03-13,57114,9480,"[\""Tablet\""]",4205.69,{},3967,1,"""Asia""" +2023-11-30,57115,8610,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3432.76,{},122472,1,"""Europe""" +2024-04-06,57116,2294,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1466.93,"{\""loyalty\"": \""12%\""}",221568,1,"""Europe""" +2024-07-03,57117,9272,"[\""Keyboard\""]",4738.96,"{\""seasonal\"": \""30%\""}",247016,0,"""Asia""" +2024-11-29,57118,2365,"[\""Charger\""]",3930.09,"{\""promo\"": \""13%\""}",37499,0,"""North America""" +2023-02-18,57119,2472,"[\""Tablet\""]",3781.49,{},137285,0,"""North America""" +2023-10-03,57120,3466,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3486.95,"{\""promo\"": \""29%\""}",141136,1,"""Asia""" +2023-07-23,57121,949,"[\""Charger\""]",3953.17,"{\""seasonal\"": \""10%\""}",147513,0,"""North America""" +2024-04-10,57122,4376,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1213.49,{},88691,1,"""Asia""" +2024-10-10,57123,9121,"[\""Tablet\"", \""Headphones\""]",4507.54,{},66966,0,"""North America""" +2024-09-05,57124,3203,"[\""Phone\""]",639.69,"{\""loyalty\"": \""21%\""}",186240,1,"""Africa""" +2023-09-20,57125,2969,"[\""Tablet\"", \""Keyboard\""]",2185.79,"{\"": \""22%\""}",37389,0,"""South America""" +2023-05-29,57126,4140,"[\""Charger\""]",2207.95,"{\""promo\"": \""9%\""}",165863,0,"""Africa""" +2023-03-25,57127,4781,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4327.11,{},238418,1,"""Africa""" +2023-04-16,57128,1798,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1333.79,"{\""loyalty\"": \""10%\""}",233756,0,"""Africa""" +2023-08-30,57129,8647,"[\""Wireless Mouse\"", \""Headphones\""]",4617.25,{},92739,1,"""South America""" +2023-04-23,57130,2597,"[\""Headphones\"", \""Charger\""]",273.31,{},202175,0,"""Africa""" +2024-02-15,57131,8395,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1439.66,{},87300,1,"""Europe""" +2023-08-29,57132,1057,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1210.11,{},183679,0,"""Africa""" +2023-10-15,57133,4958,"[\""Wireless Mouse\"", \""Charger\""]",3065.52,"{\""loyalty\"": \""24%\""}",199554,1,"""Africa""" +2024-10-22,57134,5347,"[\""Wireless Mouse\"", \""Laptop\""]",2618.42,{},75090,1,"""Asia""" +2023-01-08,57135,740,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2234.5,{},93879,1,"""Africa""" +2023-11-25,57136,2273,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4820.35,{},147899,1,"""South America""" +2024-07-08,57137,9498,"[\""Wireless Mouse\"", \""Laptop\""]",2751.05,{},70571,1,"""Asia""" +2024-02-25,57138,3270,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2362.43,{},108202,0,"""Africa""" +2024-07-29,57139,4934,"[\""Tablet\"", \""Headphones\""]",4916.26,{},170430,1,"""South America""" +2023-03-21,57140,2513,"[\""Phone\"", \""Headphones\""]",921.3,{},75410,1,"""Asia""" +2024-07-10,57141,5289,"[\""Phone\"", \""Laptop\""]",1325.21,{},21096,0,"""North America""" +2023-12-11,57142,6296,"[\""Phone\"", \""Wireless Mouse\""]",3056.12,{},66683,0,"""Asia""" +2023-07-12,57143,4399,"[\""Tablet\"", \""Laptop\""]",3421.93,{},7840,1,"""South America""" +2023-10-18,57144,5331,"[\""Laptop\""]",2245.24,"{\"": \""17%\""}",129995,0,"""Asia""" +2024-05-11,57145,3663,"[\""Charger\"", \""Laptop\""]",673.74,"{\""promo\"": \""11%\""}",159183,0,"""Africa""" +2023-07-18,57146,2786,"[\""Monitor\"", \""Charger\""]",4660.48,{},192972,1,"""Africa""" +2023-04-26,57147,4676,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",805.61,"{\""seasonal\"": \""30%\""}",44463,1,"""Europe""" +2023-01-11,57148,9091,"[\""Keyboard\"", \""Wireless Mouse\""]",2273.33,{},8043,0,"""Europe""" +2024-06-20,57149,4829,"[\""Keyboard\""]",2589.96,{},64641,1,"""Africa""" +2024-06-12,57150,8639,"[\""Tablet\""]",3862.87,{},8243,1,"""Europe""" +2024-01-16,57151,9900,"[\""Headphones\"", \""Keyboard\""]",3613.24,"{\""seasonal\"": \""5%\""}",23359,1,"""Europe""" +2023-03-05,57152,9269,"[\""Wireless Mouse\""]",1604.84,"{\""loyalty\"": \""13%\""}",231848,1,"""Europe""" +2024-10-23,57153,3731,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2069.49,"{\""loyalty\"": \""6%\""}",99096,0,"""Europe""" +2024-03-06,57154,9891,"[\""Tablet\""]",2216.09,"{\""seasonal\"": \""21%\""}",229960,0,"""North America""" +2024-03-29,57155,4818,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3231.97,{},78846,0,"""Asia""" +2024-05-09,57156,6273,"[\""Wireless Mouse\"", \""Headphones\""]",2482.9,"{\""loyalty\"": \""7%\""}",24870,0,"""Africa""" +2023-05-27,57157,1997,"[\""Headphones\"", \""Monitor\""]",3932.82,{},296755,1,"""Africa""" +2024-06-07,57158,9993,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4731.26,{},291659,0,"""South America""" +2024-02-08,57159,8727,"[\""Keyboard\""]",3728.48,"{\""seasonal\"": \""22%\""}",71269,0,"""Africa""" +2023-08-08,57160,3082,"[\""Wireless Mouse\""]",1575.54,"{\""loyalty\"": \""14%\""}",62214,1,"""Europe""" +2024-09-18,57161,3733,"[\""Phone\"", \""Keyboard\""]",2675.04,{},149549,0,"""South America""" +2024-02-03,57162,3541,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3274.72,{},241415,1,"""North America""" +2023-01-18,57163,7160,"[\""Monitor\""]",1489.9,"{\""promo\"": \""10%\""}",293821,0,"""Africa""" +2023-05-22,57164,1037,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",271.36,"{\""seasonal\"": \""16%\""}",219798,1,"""Europe""" +2023-01-07,57165,8128,"[\""Tablet\""]",4223.9,{},191597,1,"""Africa""" +2023-03-27,57166,4852,"[\""Wireless Mouse\"", \""Keyboard\""]",2065.75,"{\"": \""13%\""}",201757,0,"""Asia""" +2024-06-21,57167,6741,"[\""Phone\""]",1039.6,"{\""promo\"": \""22%\""}",26759,0,"""South America""" +2024-07-26,57168,6160,"[\""Keyboard\""]",242.81,{},220661,0,"""Europe""" +2023-09-19,57169,9161,"[\""Wireless Mouse\"", \""Monitor\""]",998.23,"{\""promo\"": \""27%\""}",117193,0,"""South America""" +2024-12-17,57170,7206,"[\""Wireless Mouse\""]",4238.47,"{\"": \""23%\""}",116696,1,"""North America""" +2023-02-08,57171,4227,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",538.26,{},257104,1,"""Asia""" +2024-11-16,57172,9997,"[\""Tablet\""]",399.5,"{\""loyalty\"": \""17%\""}",190362,0,"""Africa""" +2024-04-03,57173,4005,"[\""Wireless Mouse\"", \""Headphones\""]",3961.16,"{\""loyalty\"": \""10%\""}",130633,1,"""North America""" +2024-10-23,57174,4807,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1987.67,"{\"": \""16%\""}",113901,1,"""Africa""" +2024-07-30,57175,3374,"[\""Keyboard\""]",4379.14,{},219809,0,"""North America""" +2024-03-29,57176,5390,"[\""Charger\""]",551.94,{},175895,0,"""Europe""" +2024-09-02,57177,9822,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2035.86,{},218399,1,"""South America""" +2023-03-29,57178,3261,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2129.59,{},211206,0,"""South America""" +2024-11-13,57179,5615,"[\""Phone\""]",73.89,{},138470,0,"""Asia""" +2023-01-24,57180,1263,"[\""Headphones\"", \""Wireless Mouse\""]",2613.11,{},147993,1,"""Europe""" +2024-06-28,57181,4196,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3182.85,{},115611,1,"""Asia""" +2024-10-18,57182,8470,"[\""Keyboard\""]",3419.24,"{\""promo\"": \""24%\""}",64484,0,"""South America""" +2023-09-18,57183,386,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4974.09,"{\""loyalty\"": \""30%\""}",99607,0,"""North America""" +2023-10-13,57184,4349,"[\""Tablet\""]",1695.77,"{\""seasonal\"": \""30%\""}",253378,1,"""Europe""" +2024-08-20,57185,9792,"[\""Wireless Mouse\"", \""Keyboard\""]",2905.56,{},128149,0,"""Europe""" +2024-07-20,57186,6310,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2415.34,"{\""loyalty\"": \""25%\""}",66508,0,"""Asia""" +2024-07-21,57187,2563,"[\""Headphones\""]",2289.57,{},105829,1,"""North America""" +2023-10-06,57188,8781,"[\""Tablet\""]",2032.89,{},244687,1,"""North America""" +2024-03-02,57189,3200,"[\""Monitor\"", \""Tablet\""]",480.3,"{\""seasonal\"": \""29%\""}",199205,0,"""Europe""" +2024-08-12,57190,9375,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4275.56,{},79061,1,"""Asia""" +2024-06-13,57191,8957,"[\""Phone\"", \""Tablet\""]",4218.69,"{\""seasonal\"": \""6%\""}",125158,1,"""Europe""" +2023-03-19,57192,4095,"[\""Wireless Mouse\"", \""Tablet\""]",2119.42,"{\""promo\"": \""28%\""}",22204,1,"""Africa""" +2024-02-01,57193,7699,"[\""Tablet\""]",1406.66,{},90555,1,"""South America""" +2024-11-21,57194,9010,"[\""Wireless Mouse\""]",2691.85,{},180297,1,"""North America""" +2024-01-31,57195,7959,"[\""Phone\""]",1126.08,"{\""loyalty\"": \""24%\""}",76313,0,"""Asia""" +2024-07-06,57196,5737,"[\""Charger\"", \""Headphones\""]",4202.05,{},51713,1,"""North America""" +2023-11-19,57197,5720,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3714.81,{},25730,1,"""Asia""" +2024-10-29,57198,3532,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2022.32,{},213178,0,"""North America""" +2024-10-19,57199,7633,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1638.05,"{\"": \""20%\""}",77646,0,"""Europe""" +2023-12-08,57200,3395,"[\""Tablet\"", \""Keyboard\""]",4526.23,{},88368,1,"""South America""" +2023-10-23,57201,4628,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3648.85,{},55408,1,"""North America""" +2023-01-15,57202,5081,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1365.95,{},271957,0,"""Europe""" +2023-12-22,57203,4820,"[\""Monitor\""]",1948.55,{},9103,1,"""Europe""" +2024-08-08,57204,8584,"[\""Charger\""]",497.06,{},122711,1,"""Africa""" +2024-08-28,57205,3209,"[\""Wireless Mouse\""]",2462.68,{},199623,1,"""Europe""" +2023-05-14,57206,2792,"[\""Laptop\"", \""Tablet\""]",2366.3,"{\""promo\"": \""20%\""}",75623,0,"""North America""" +2024-09-20,57207,5648,"[\""Phone\""]",2254.2,"{\""promo\"": \""7%\""}",96398,0,"""North America""" +2024-06-06,57208,1174,"[\""Monitor\""]",1915.79,{},158106,0,"""Europe""" +2024-12-01,57209,5040,"[\""Tablet\""]",250.99,"{\""loyalty\"": \""7%\""}",289818,0,"""Europe""" +2023-09-28,57210,7999,"[\""Wireless Mouse\""]",2711.23,"{\""loyalty\"": \""18%\""}",200433,0,"""North America""" +2023-08-23,57211,2030,"[\""Keyboard\""]",146.69,{},261732,0,"""Africa""" +2023-01-02,57212,903,"[\""Wireless Mouse\""]",4779.91,{},13131,1,"""Africa""" +2024-11-12,57213,2333,"[\""Laptop\""]",853.26,{},253099,1,"""South America""" +2023-08-10,57214,597,"[\""Phone\""]",1833.84,{},251499,1,"""Europe""" +2023-04-23,57215,7689,"[\""Keyboard\""]",3438.75,{},87258,0,"""South America""" +2023-05-12,57216,4753,"[\""Keyboard\"", \""Wireless Mouse\""]",3420.56,"{\"": \""18%\""}",123215,0,"""South America""" +2024-06-14,57217,9819,"[\""Tablet\"", \""Wireless Mouse\""]",2638.56,{},241626,1,"""South America""" +2023-01-06,57218,9300,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",769.9,{},152406,0,"""North America""" +2024-05-09,57219,8471,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",223.17,{},230812,0,"""North America""" +2024-04-04,57220,5553,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3454.9,"{\""seasonal\"": \""19%\""}",237095,0,"""South America""" +2024-04-05,57221,5205,"[\""Wireless Mouse\""]",3709.19,"{\""loyalty\"": \""16%\""}",136219,0,"""North America""" +2024-01-08,57222,6553,"[\""Monitor\"", \""Wireless Mouse\""]",3704.9,"{\""loyalty\"": \""16%\""}",133325,0,"""South America""" +2024-07-20,57223,4232,"[\""Tablet\"", \""Phone\""]",4268.99,{},186812,1,"""Africa""" +2024-07-16,57224,2218,"[\""Keyboard\""]",4881.0,{},49704,1,"""Africa""" +2023-05-03,57225,4942,"[\""Keyboard\""]",2789.08,{},198827,1,"""Asia""" +2024-01-02,57226,9400,"[\""Keyboard\"", \""Laptop\""]",2921.22,"{\""loyalty\"": \""23%\""}",153809,1,"""Asia""" +2024-08-24,57227,3863,"[\""Wireless Mouse\""]",727.85,"{\""seasonal\"": \""16%\""}",102942,1,"""North America""" +2024-10-16,57228,7639,"[\""Charger\""]",4402.92,{},143133,1,"""Europe""" +2024-07-22,57229,7077,"[\""Keyboard\""]",3460.35,{},102282,0,"""North America""" +2023-02-03,57230,2094,"[\""Laptop\""]",574.77,{},211251,1,"""South America""" +2023-06-11,57231,876,"[\""Laptop\"", \""Monitor\""]",2278.88,{},195365,0,"""Europe""" +2023-09-10,57232,4369,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",476.31,{},88801,0,"""Africa""" +2024-05-07,57233,6919,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4460.45,"{\""loyalty\"": \""5%\""}",164376,0,"""Europe""" +2023-09-11,57234,8665,"[\""Keyboard\"", \""Phone\""]",190.08,"{\"": \""5%\""}",81248,1,"""North America""" +2024-01-01,57235,4276,"[\""Charger\""]",141.75,{},48638,1,"""Africa""" +2024-02-11,57236,34,"[\""Phone\"", \""Laptop\""]",3595.61,"{\""loyalty\"": \""8%\""}",214149,0,"""Asia""" +2023-09-18,57237,6559,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4993.07,"{\""promo\"": \""6%\""}",40804,0,"""Africa""" +2023-12-03,57238,8113,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",936.63,{},288661,0,"""Europe""" +2024-04-01,57239,6961,"[\""Laptop\"", \""Tablet\""]",4123.16,{},69370,1,"""South America""" +2023-05-21,57240,8256,"[\""Monitor\"", \""Headphones\""]",1164.04,{},202890,1,"""Europe""" +2023-03-25,57241,5791,"[\""Laptop\"", \""Charger\""]",2929.04,{},298314,1,"""Asia""" +2023-06-07,57242,7042,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3366.3,{},190854,0,"""Africa""" +2023-10-21,57243,1126,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4494.36,"{\"": \""9%\""}",241035,1,"""Africa""" +2023-06-24,57244,8841,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",803.09,"{\""loyalty\"": \""28%\""}",122135,1,"""Asia""" +2024-09-21,57245,810,"[\""Phone\""]",1294.53,"{\""loyalty\"": \""9%\""}",211068,1,"""Asia""" +2023-03-01,57246,1452,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",967.82,"{\""loyalty\"": \""22%\""}",135552,1,"""Africa""" +2024-02-16,57247,7734,"[\""Wireless Mouse\"", \""Keyboard\""]",165.06,"{\"": \""18%\""}",20665,1,"""Asia""" +2023-10-29,57248,1925,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3777.86,{},213178,0,"""Asia""" +2024-10-20,57249,1909,"[\""Tablet\""]",628.44,{},5212,0,"""Asia""" +2023-10-09,57250,5283,"[\""Charger\""]",2628.73,{},251960,0,"""Asia""" +2024-05-19,57251,646,"[\""Wireless Mouse\""]",996.86,"{\""seasonal\"": \""15%\""}",170357,0,"""Europe""" +2024-11-12,57252,857,"[\""Headphones\"", \""Phone\""]",3129.42,{},61203,1,"""South America""" +2024-01-30,57253,3804,"[\""Laptop\"", \""Charger\""]",3356.92,{},57152,1,"""North America""" +2024-08-15,57254,7178,"[\""Monitor\"", \""Laptop\""]",1261.07,"{\""promo\"": \""21%\""}",152726,1,"""Europe""" +2023-05-11,57255,8741,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4298.81,"{\"": \""26%\""}",65325,0,"""South America""" +2024-01-09,57256,9419,"[\""Laptop\""]",2313.06,{},165128,0,"""Asia""" +2024-08-22,57257,613,"[\""Laptop\"", \""Headphones\""]",1847.28,{},4985,0,"""Europe""" +2024-11-21,57258,7393,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",805.04,{},165331,0,"""Europe""" +2023-03-02,57259,2390,"[\""Monitor\""]",2484.29,{},223337,1,"""South America""" +2023-09-06,57260,6158,"[\""Keyboard\"", \""Laptop\""]",3969.87,"{\""loyalty\"": \""8%\""}",81732,1,"""Europe""" +2023-09-23,57261,4739,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",448.07,{},191778,0,"""South America""" +2023-08-30,57262,5047,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",79.75,{},220247,0,"""Asia""" +2023-02-02,57263,2655,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",442.65,"{\""seasonal\"": \""27%\""}",87304,1,"""Africa""" +2023-11-10,57264,3819,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4085.22,{},246495,0,"""Europe""" +2023-10-18,57265,4693,"[\""Headphones\"", \""Keyboard\""]",2215.98,"{\"": \""19%\""}",153330,1,"""North America""" +2024-04-11,57266,6512,"[\""Keyboard\"", \""Phone\""]",1361.98,{},232229,0,"""Asia""" +2024-04-20,57267,6301,"[\""Tablet\"", \""Laptop\""]",928.06,"{\""loyalty\"": \""28%\""}",211492,1,"""South America""" +2023-04-04,57268,5289,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1563.07,"{\""loyalty\"": \""19%\""}",65283,1,"""North America""" +2024-02-02,57269,4821,"[\""Keyboard\"", \""Phone\""]",4175.08,{},277506,0,"""South America""" +2023-01-30,57270,1696,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4742.36,"{\"": \""22%\""}",108799,1,"""Europe""" +2023-05-04,57271,9420,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4684.49,"{\""seasonal\"": \""21%\""}",10218,0,"""South America""" +2023-03-04,57272,5314,"[\""Tablet\""]",3803.83,{},90166,1,"""Europe""" +2024-08-29,57273,9740,"[\""Monitor\""]",2571.79,{},157110,0,"""Africa""" +2023-03-16,57274,6244,"[\""Monitor\"", \""Headphones\""]",4884.66,{},137478,0,"""Africa""" +2023-11-06,57275,3766,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3345.15,{},193203,0,"""Europe""" +2024-04-27,57276,968,"[\""Tablet\"", \""Phone\""]",264.45,{},103725,0,"""Asia""" +2023-12-29,57277,1420,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2001.66,"{\""loyalty\"": \""12%\""}",49543,1,"""Africa""" +2024-07-22,57278,3437,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1594.05,"{\""seasonal\"": \""11%\""}",88544,1,"""Asia""" +2023-10-15,57279,7033,"[\""Laptop\"", \""Charger\""]",1056.33,"{\""promo\"": \""21%\""}",244110,0,"""South America""" +2023-02-19,57280,3422,"[\""Keyboard\""]",1378.45,"{\""promo\"": \""16%\""}",285343,1,"""Africa""" +2023-07-15,57281,3595,"[\""Charger\"", \""Laptop\""]",4089.84,{},251758,1,"""Asia""" +2024-05-24,57282,3860,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1095.78,"{\"": \""28%\""}",34207,0,"""Africa""" +2023-05-29,57283,8438,"[\""Laptop\""]",4330.07,"{\""loyalty\"": \""10%\""}",114145,1,"""Asia""" +2023-11-18,57284,673,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3187.84,"{\""promo\"": \""9%\""}",264874,0,"""Asia""" +2024-01-27,57285,4674,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",513.01,{},293303,0,"""Africa""" +2024-07-01,57286,3963,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3245.33,"{\""seasonal\"": \""28%\""}",297552,1,"""Europe""" +2024-01-20,57287,8538,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",789.52,"{\""loyalty\"": \""21%\""}",210039,1,"""South America""" +2023-08-11,57288,2088,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2908.88,{},152539,1,"""Europe""" +2024-03-25,57289,819,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1713.99,{},235407,0,"""Europe""" +2024-01-16,57290,8946,"[\""Keyboard\""]",4019.19,"{\""seasonal\"": \""20%\""}",216757,1,"""Asia""" +2023-09-12,57291,7886,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4646.65,{},235393,0,"""South America""" +2023-07-16,57292,598,"[\""Headphones\""]",1098.92,"{\"": \""12%\""}",135044,0,"""South America""" +2023-12-20,57293,553,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4874.59,"{\"": \""8%\""}",197612,0,"""Europe""" +2024-11-20,57294,3443,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3313.59,"{\""loyalty\"": \""16%\""}",79278,0,"""Africa""" +2024-09-07,57295,8755,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1803.92,"{\""seasonal\"": \""27%\""}",34295,1,"""Europe""" +2024-12-25,57296,3437,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1052.36,{},143118,1,"""Asia""" +2024-08-27,57297,2979,"[\""Monitor\""]",2777.77,{},32218,0,"""Asia""" +2024-05-20,57298,1562,"[\""Keyboard\""]",3795.67,"{\""loyalty\"": \""6%\""}",285778,1,"""Asia""" +2023-03-23,57299,9135,"[\""Charger\"", \""Keyboard\""]",500.1,"{\""seasonal\"": \""23%\""}",153103,1,"""Europe""" +2023-03-02,57300,1857,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1689.33,{},162203,0,"""South America""" +2024-06-18,57301,8855,"[\""Headphones\""]",633.89,"{\""loyalty\"": \""14%\""}",122089,0,"""Europe""" +2023-07-22,57302,7755,"[\""Keyboard\"", \""Headphones\""]",2263.7,{},15441,0,"""South America""" +2023-06-21,57303,138,"[\""Charger\"", \""Laptop\""]",1928.82,"{\""seasonal\"": \""24%\""}",289717,1,"""Africa""" +2023-03-14,57304,3899,"[\""Laptop\"", \""Phone\""]",3361.32,{},40530,0,"""Asia""" +2024-04-09,57305,1365,"[\""Keyboard\""]",1565.1,{},198261,0,"""Asia""" +2024-12-03,57306,601,"[\""Charger\"", \""Tablet\""]",3806.45,"{\""seasonal\"": \""26%\""}",90583,1,"""South America""" +2023-08-24,57307,5950,"[\""Phone\""]",3363.05,"{\""promo\"": \""24%\""}",29725,0,"""South America""" +2024-07-23,57308,7697,"[\""Laptop\"", \""Phone\""]",408.83,"{\""seasonal\"": \""23%\""}",73874,0,"""North America""" +2023-12-13,57309,763,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2274.74,{},285940,0,"""South America""" +2024-05-04,57310,9158,"[\""Laptop\"", \""Charger\""]",4625.99,"{\""promo\"": \""9%\""}",159945,1,"""Europe""" +2024-04-04,57311,895,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4155.81,{},254324,1,"""Africa""" +2023-09-02,57312,3877,"[\""Laptop\""]",751.91,{},296367,0,"""South America""" +2023-10-27,57313,891,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3640.75,"{\""promo\"": \""11%\""}",165464,1,"""North America""" +2023-04-08,57314,2260,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3998.22,"{\""seasonal\"": \""27%\""}",72548,1,"""Africa""" +2024-01-16,57315,5913,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1042.29,"{\""promo\"": \""26%\""}",137352,1,"""South America""" +2023-04-10,57316,2774,"[\""Laptop\""]",2308.96,"{\""promo\"": \""19%\""}",119406,0,"""Africa""" +2024-08-19,57317,7745,"[\""Wireless Mouse\""]",4967.27,{},11885,0,"""South America""" +2024-12-12,57318,8902,"[\""Headphones\""]",193.94,"{\""seasonal\"": \""13%\""}",207680,0,"""Europe""" +2024-08-15,57319,6000,"[\""Headphones\""]",3717.31,{},267407,0,"""South America""" +2023-07-18,57320,5200,"[\""Charger\""]",592.54,"{\""loyalty\"": \""9%\""}",244298,1,"""Africa""" +2024-12-02,57321,1379,"[\""Tablet\"", \""Keyboard\""]",1982.02,{},188264,0,"""North America""" +2024-02-05,57322,6580,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2232.51,{},66732,1,"""Europe""" +2024-05-23,57323,9404,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2411.57,{},265353,1,"""Asia""" +2023-04-19,57324,2116,"[\""Laptop\"", \""Headphones\""]",688.02,"{\"": \""19%\""}",218065,1,"""South America""" +2023-04-27,57325,2156,"[\""Wireless Mouse\""]",2075.3,"{\""seasonal\"": \""21%\""}",36667,0,"""South America""" +2023-03-16,57326,6660,"[\""Headphones\""]",883.48,{},167167,1,"""South America""" +2024-11-09,57327,5582,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1625.61,"{\""loyalty\"": \""10%\""}",102934,1,"""Asia""" +2024-10-21,57328,7733,"[\""Wireless Mouse\""]",4305.2,{},140257,1,"""Europe""" +2024-04-01,57329,8998,"[\""Tablet\"", \""Laptop\""]",3231.93,"{\"": \""17%\""}",16806,0,"""Africa""" +2023-05-11,57330,8296,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",299.64,"{\""seasonal\"": \""29%\""}",25268,0,"""Africa""" +2023-10-16,57331,8078,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4610.8,{},292018,1,"""Asia""" +2023-12-26,57332,6730,"[\""Headphones\""]",4861.51,{},87349,1,"""Europe""" +2023-10-04,57333,7378,"[\""Monitor\""]",4702.9,"{\""promo\"": \""20%\""}",122773,0,"""Africa""" +2023-09-16,57334,2937,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",919.65,"{\""seasonal\"": \""14%\""}",159715,1,"""North America""" +2024-03-27,57335,2568,"[\""Phone\"", \""Headphones\""]",4121.91,{},81049,1,"""South America""" +2024-07-20,57336,6405,"[\""Tablet\""]",1872.21,{},36720,0,"""Asia""" +2024-12-11,57337,2689,"[\""Tablet\"", \""Keyboard\""]",3231.63,"{\""seasonal\"": \""19%\""}",113756,1,"""Asia""" +2023-08-29,57338,7563,"[\""Laptop\""]",1257.04,"{\""loyalty\"": \""17%\""}",6076,1,"""North America""" +2023-06-05,57339,3498,"[\""Tablet\""]",1281.03,{},281004,1,"""Africa""" +2023-09-09,57340,7382,"[\""Keyboard\""]",844.6,"{\""seasonal\"": \""17%\""}",118280,1,"""Europe""" +2024-06-22,57341,9661,"[\""Keyboard\"", \""Charger\""]",1091.25,"{\""promo\"": \""28%\""}",33189,1,"""South America""" +2024-11-16,57342,3510,"[\""Tablet\"", \""Laptop\""]",1564.15,"{\""promo\"": \""17%\""}",176391,0,"""North America""" +2024-08-09,57343,9281,"[\""Laptop\""]",3700.09,{},146021,0,"""Europe""" +2024-07-21,57344,9166,"[\""Headphones\"", \""Phone\""]",2813.11,{},209265,1,"""South America""" +2024-08-24,57345,146,"[\""Monitor\""]",1121.16,"{\""loyalty\"": \""7%\""}",106974,1,"""Europe""" +2023-03-03,57346,2592,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2739.76,{},72900,0,"""Africa""" +2023-10-29,57347,1120,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4831.35,"{\""promo\"": \""11%\""}",252205,1,"""Europe""" +2024-01-17,57348,5559,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4966.54,"{\""promo\"": \""16%\""}",196248,0,"""Asia""" +2023-07-04,57349,7989,"[\""Keyboard\""]",3648.93,"{\""loyalty\"": \""12%\""}",155517,1,"""Europe""" +2024-07-25,57350,3240,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",345.67,"{\""loyalty\"": \""12%\""}",266410,1,"""Africa""" +2023-07-24,57351,376,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3176.02,"{\""seasonal\"": \""24%\""}",58919,1,"""North America""" +2024-06-29,57352,5418,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4309.81,{},3869,1,"""North America""" +2023-10-15,57353,2972,"[\""Keyboard\""]",66.47,"{\"": \""25%\""}",151764,1,"""Asia""" +2024-12-17,57354,7527,"[\""Tablet\"", \""Laptop\""]",4978.3,{},204820,1,"""Africa""" +2023-03-08,57355,7417,"[\""Tablet\""]",4060.31,"{\""promo\"": \""20%\""}",22212,1,"""South America""" +2023-07-24,57356,7530,"[\""Monitor\"", \""Headphones\""]",3682.19,"{\""promo\"": \""22%\""}",31386,1,"""Europe""" +2023-05-01,57357,4137,"[\""Laptop\""]",3148.57,"{\""seasonal\"": \""27%\""}",86551,1,"""North America""" +2024-09-13,57358,9456,"[\""Keyboard\"", \""Laptop\""]",2123.96,"{\"": \""25%\""}",151455,0,"""North America""" +2024-12-24,57359,7741,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2398.64,{},73024,1,"""Africa""" +2024-11-29,57360,6595,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",734.26,"{\"": \""25%\""}",249633,1,"""Asia""" +2024-03-24,57361,721,"[\""Wireless Mouse\""]",1653.44,"{\""promo\"": \""6%\""}",269067,1,"""North America""" +2023-02-04,57362,6838,"[\""Headphones\""]",3198.51,"{\""promo\"": \""9%\""}",216897,0,"""North America""" +2023-03-29,57363,1568,"[\""Phone\"", \""Headphones\""]",4336.61,"{\""loyalty\"": \""27%\""}",22353,0,"""Asia""" +2023-04-12,57364,788,"[\""Wireless Mouse\""]",3617.63,"{\""loyalty\"": \""16%\""}",254936,1,"""North America""" +2024-08-19,57365,6240,"[\""Headphones\""]",3360.91,"{\"": \""14%\""}",249848,1,"""Asia""" +2024-08-08,57366,3280,"[\""Headphones\""]",2660.55,"{\""loyalty\"": \""20%\""}",99641,1,"""North America""" +2023-10-08,57367,6980,"[\""Tablet\"", \""Headphones\""]",2425.48,{},164440,1,"""Asia""" +2024-04-15,57368,3655,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2072.79,{},157098,0,"""Asia""" +2023-06-13,57369,1668,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2022.93,{},119678,1,"""Asia""" +2024-12-14,57370,805,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",290.06,"{\""loyalty\"": \""14%\""}",195801,1,"""Africa""" +2024-01-01,57371,7059,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1216.72,{},115438,1,"""Africa""" +2023-12-05,57372,6073,"[\""Tablet\""]",216.46,"{\""seasonal\"": \""23%\""}",93887,1,"""South America""" +2023-06-22,57373,3476,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1770.14,"{\""seasonal\"": \""8%\""}",266469,1,"""South America""" +2024-06-09,57374,1803,"[\""Phone\"", \""Charger\""]",4664.49,"{\""seasonal\"": \""28%\""}",66811,0,"""North America""" +2024-04-24,57375,1934,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1737.52,"{\""promo\"": \""27%\""}",172822,1,"""Europe""" +2023-12-24,57376,6300,"[\""Charger\""]",4122.74,"{\""seasonal\"": \""15%\""}",149790,0,"""South America""" +2023-01-17,57377,709,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1934.27,"{\""promo\"": \""15%\""}",152532,1,"""Africa""" +2024-04-30,57378,1416,"[\""Monitor\"", \""Headphones\""]",1562.87,"{\""loyalty\"": \""29%\""}",255332,0,"""Europe""" +2024-12-05,57379,8326,"[\""Keyboard\""]",3149.99,"{\""loyalty\"": \""25%\""}",103854,1,"""Africa""" +2024-11-13,57380,5989,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2999.2,{},280056,0,"""Europe""" +2024-05-11,57381,4725,"[\""Headphones\"", \""Laptop\""]",3770.12,"{\""seasonal\"": \""13%\""}",228025,1,"""North America""" +2023-10-28,57382,6243,"[\""Tablet\"", \""Charger\""]",4718.51,{},236286,1,"""North America""" +2023-07-15,57383,3902,"[\""Wireless Mouse\""]",255.82,"{\""promo\"": \""27%\""}",50016,0,"""Europe""" +2024-01-15,57384,6879,"[\""Laptop\"", \""Keyboard\""]",4244.75,"{\"": \""25%\""}",61531,0,"""Asia""" +2023-03-20,57385,1708,"[\""Monitor\""]",3443.38,"{\""loyalty\"": \""6%\""}",169488,0,"""Africa""" +2023-09-13,57386,3081,"[\""Monitor\"", \""Wireless Mouse\""]",1297.64,"{\""promo\"": \""8%\""}",28537,0,"""Africa""" +2023-02-25,57387,5623,"[\""Laptop\"", \""Monitor\""]",3835.78,"{\""seasonal\"": \""17%\""}",158384,0,"""Africa""" +2023-05-13,57388,8161,"[\""Monitor\"", \""Keyboard\""]",3859.32,"{\"": \""10%\""}",140308,1,"""Europe""" +2024-02-17,57389,8246,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",349.66,{},240411,1,"""North America""" +2024-09-01,57390,8335,"[\""Laptop\"", \""Headphones\""]",1236.86,{},2189,0,"""Asia""" +2023-01-07,57391,561,"[\""Headphones\"", \""Wireless Mouse\""]",1284.04,"{\""loyalty\"": \""24%\""}",226273,1,"""Europe""" +2023-06-25,57392,1327,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3496.09,"{\""seasonal\"": \""24%\""}",80652,1,"""North America""" +2024-10-25,57393,4154,"[\""Keyboard\""]",2090.76,{},274836,1,"""Africa""" +2023-12-06,57394,1758,"[\""Wireless Mouse\""]",4190.71,"{\"": \""14%\""}",217100,1,"""South America""" +2024-04-27,57395,4248,"[\""Tablet\""]",4920.78,{},148395,1,"""North America""" +2023-11-22,57396,6552,"[\""Laptop\"", \""Keyboard\""]",4232.85,"{\"": \""22%\""}",71958,0,"""North America""" +2024-12-25,57397,2985,"[\""Laptop\""]",2575.25,"{\"": \""21%\""}",226684,0,"""Europe""" +2023-02-13,57398,5410,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4004.67,"{\""seasonal\"": \""15%\""}",34752,1,"""Europe""" +2023-06-13,57399,7063,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",233.24,"{\"": \""21%\""}",144944,1,"""Europe""" +2023-09-19,57400,2489,"[\""Tablet\"", \""Keyboard\""]",2641.54,{},92461,1,"""Europe""" +2023-05-07,57401,6980,"[\""Monitor\"", \""Phone\""]",680.48,"{\"": \""21%\""}",299038,0,"""Asia""" +2023-06-19,57402,4701,"[\""Wireless Mouse\"", \""Keyboard\""]",4499.46,"{\""loyalty\"": \""6%\""}",238636,0,"""North America""" +2023-10-05,57403,3199,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2155.41,"{\"": \""30%\""}",242986,0,"""Africa""" +2023-02-27,57404,9131,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1117.82,{},52135,0,"""North America""" +2024-01-29,57405,7883,"[\""Keyboard\"", \""Charger\""]",512.38,{},114151,0,"""North America""" +2023-03-02,57406,9433,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1712.41,{},195976,0,"""South America""" +2024-08-25,57407,7593,"[\""Monitor\"", \""Charger\""]",1314.58,{},105658,0,"""North America""" +2023-08-30,57408,7258,"[\""Phone\""]",3337.39,"{\""seasonal\"": \""24%\""}",107348,1,"""Europe""" +2024-05-13,57409,6552,"[\""Tablet\"", \""Wireless Mouse\""]",1529.93,{},65113,1,"""South America""" +2024-08-02,57410,21,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1994.58,"{\""seasonal\"": \""6%\""}",280133,0,"""North America""" +2023-01-25,57411,450,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1535.74,"{\""loyalty\"": \""25%\""}",77492,0,"""Asia""" +2024-09-07,57412,585,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4084.31,{},232827,0,"""Asia""" +2023-06-08,57413,4587,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3447.26,"{\""promo\"": \""23%\""}",85261,1,"""Africa""" +2023-05-22,57414,7114,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2727.9,"{\""loyalty\"": \""19%\""}",158049,1,"""Europe""" +2023-06-28,57415,7863,"[\""Charger\"", \""Tablet\""]",4126.95,{},170811,0,"""Africa""" +2023-06-20,57416,4907,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3168.77,"{\""loyalty\"": \""6%\""}",254513,1,"""North America""" +2023-09-19,57417,902,"[\""Phone\"", \""Headphones\""]",1074.18,{},86202,0,"""Africa""" +2024-10-23,57418,935,"[\""Headphones\"", \""Tablet\""]",1568.54,{},193166,1,"""South America""" +2023-06-25,57419,2891,"[\""Phone\""]",2848.44,"{\""loyalty\"": \""28%\""}",198510,1,"""South America""" +2024-02-11,57420,2374,"[\""Tablet\""]",4261.62,"{\"": \""11%\""}",174262,0,"""Europe""" +2023-11-01,57421,4768,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4382.44,"{\"": \""26%\""}",135321,0,"""Europe""" +2024-01-30,57422,7489,"[\""Laptop\""]",1706.88,{},298283,1,"""North America""" +2023-01-24,57423,1444,"[\""Keyboard\""]",748.7,"{\""loyalty\"": \""18%\""}",46862,0,"""Europe""" +2023-12-22,57424,1296,"[\""Phone\""]",3395.92,"{\""seasonal\"": \""8%\""}",195177,1,"""South America""" +2023-10-03,57425,2856,"[\""Headphones\"", \""Monitor\""]",2902.8,"{\""loyalty\"": \""25%\""}",249525,0,"""Asia""" +2024-11-30,57426,4860,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",515.68,"{\""loyalty\"": \""22%\""}",71609,1,"""Asia""" +2023-05-15,57427,1725,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3411.46,{},156812,0,"""Asia""" +2024-08-25,57428,5101,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3567.98,{},166268,0,"""Asia""" +2023-02-17,57429,6790,"[\""Tablet\"", \""Charger\""]",177.91,{},19165,1,"""Europe""" +2024-09-12,57430,3153,"[\""Charger\"", \""Keyboard\""]",778.83,{},256766,0,"""Africa""" +2024-04-11,57431,1616,"[\""Keyboard\"", \""Monitor\""]",2928.87,{},110832,1,"""South America""" +2024-05-30,57432,4086,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",217.11,{},82213,1,"""Europe""" +2024-04-16,57433,9974,"[\""Headphones\""]",4998.11,{},58305,0,"""Africa""" +2024-09-01,57434,704,"[\""Monitor\"", \""Wireless Mouse\""]",3965.91,"{\""promo\"": \""12%\""}",11081,1,"""Europe""" +2024-10-18,57435,3859,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4984.07,{},70239,0,"""Asia""" +2024-03-02,57436,2547,"[\""Keyboard\""]",500.14,{},64594,0,"""Asia""" +2024-04-24,57437,6247,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3031.64,{},163249,0,"""South America""" +2024-08-19,57438,250,"[\""Tablet\""]",2590.73,"{\""promo\"": \""23%\""}",292059,0,"""Europe""" +2023-08-26,57439,2545,"[\""Wireless Mouse\""]",4078.98,{},52426,0,"""Europe""" +2024-08-11,57440,4985,"[\""Charger\""]",3244.24,"{\"": \""21%\""}",91653,1,"""Asia""" +2023-05-30,57441,9621,"[\""Wireless Mouse\"", \""Monitor\""]",282.92,"{\""loyalty\"": \""18%\""}",132621,0,"""North America""" +2023-10-10,57442,4465,"[\""Keyboard\""]",1492.29,"{\""promo\"": \""24%\""}",172519,1,"""Asia""" +2024-11-03,57443,335,"[\""Monitor\""]",2898.9,"{\""loyalty\"": \""8%\""}",141680,0,"""South America""" +2023-06-25,57444,3269,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",213.53,{},266851,1,"""Europe""" +2023-07-29,57445,8718,"[\""Phone\""]",3588.83,{},213365,1,"""Asia""" +2024-08-29,57446,8769,"[\""Monitor\"", \""Tablet\""]",715.31,"{\""loyalty\"": \""17%\""}",164472,1,"""North America""" +2023-09-26,57447,8623,"[\""Laptop\""]",3467.43,"{\""seasonal\"": \""18%\""}",49751,0,"""South America""" +2023-05-04,57448,7517,"[\""Phone\""]",1342.71,{},153729,1,"""Europe""" +2024-11-06,57449,3499,"[\""Phone\""]",4013.8,{},210526,1,"""North America""" +2024-09-05,57450,3299,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1274.93,{},259727,0,"""North America""" +2023-11-17,57451,6555,"[\""Wireless Mouse\""]",4533.26,"{\""promo\"": \""21%\""}",107117,0,"""Asia""" +2024-12-06,57452,1027,"[\""Wireless Mouse\"", \""Headphones\""]",2549.79,"{\""loyalty\"": \""29%\""}",133964,0,"""North America""" +2023-03-08,57453,5299,"[\""Laptop\""]",91.43,"{\""promo\"": \""14%\""}",228685,0,"""Europe""" +2023-07-18,57454,2566,"[\""Laptop\""]",209.22,{},105608,1,"""Europe""" +2023-08-30,57455,9070,"[\""Headphones\"", \""Charger\""]",3241.13,"{\""promo\"": \""13%\""}",243971,1,"""Asia""" +2023-04-10,57456,2873,"[\""Phone\""]",1472.73,"{\"": \""24%\""}",229503,1,"""Africa""" +2024-08-29,57457,9644,"[\""Laptop\"", \""Keyboard\""]",533.65,{},84945,0,"""Asia""" +2023-08-09,57458,9053,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3377.92,{},141838,1,"""Asia""" +2023-12-28,57459,5300,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4480.48,{},64944,0,"""North America""" +2023-02-23,57460,9566,"[\""Charger\"", \""Monitor\""]",4575.29,"{\""seasonal\"": \""22%\""}",251109,1,"""South America""" +2024-07-24,57461,9289,"[\""Monitor\"", \""Laptop\""]",3124.82,"{\""loyalty\"": \""30%\""}",248521,1,"""Asia""" +2023-12-24,57462,6386,"[\""Laptop\"", \""Keyboard\""]",4706.46,"{\"": \""11%\""}",92879,0,"""Europe""" +2023-01-04,57463,524,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4228.35,"{\""seasonal\"": \""21%\""}",15820,0,"""Europe""" +2024-06-03,57464,644,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4163.7,{},121571,1,"""Africa""" +2024-08-26,57465,3567,"[\""Wireless Mouse\""]",3925.12,"{\""promo\"": \""16%\""}",210162,0,"""Europe""" +2024-04-04,57466,9390,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",159.85,"{\"": \""7%\""}",120128,0,"""Asia""" +2024-10-22,57467,2066,"[\""Charger\"", \""Headphones\""]",2544.93,"{\""loyalty\"": \""13%\""}",107817,1,"""Asia""" +2023-08-12,57468,1992,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2718.83,{},265918,1,"""North America""" +2024-02-02,57469,2892,"[\""Wireless Mouse\"", \""Laptop\""]",2993.45,{},8088,1,"""North America""" +2024-04-06,57470,431,"[\""Headphones\"", \""Charger\""]",3791.9,"{\""loyalty\"": \""6%\""}",242334,0,"""Asia""" +2023-11-10,57471,5128,"[\""Tablet\"", \""Keyboard\""]",2511.74,{},138539,1,"""South America""" +2024-08-23,57472,5694,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",235.85,{},17267,1,"""South America""" +2023-12-09,57473,2117,"[\""Laptop\""]",985.09,"{\""promo\"": \""28%\""}",219520,1,"""Africa""" +2023-04-14,57474,609,"[\""Monitor\"", \""Laptop\""]",627.1,{},211398,0,"""Asia""" +2024-01-22,57475,3054,"[\""Wireless Mouse\""]",2898.06,"{\""seasonal\"": \""28%\""}",223548,1,"""South America""" +2023-05-01,57476,7409,"[\""Tablet\""]",642.3,"{\""seasonal\"": \""11%\""}",210249,1,"""North America""" +2023-06-04,57477,9939,"[\""Tablet\"", \""Keyboard\""]",699.79,"{\""loyalty\"": \""16%\""}",275805,1,"""Africa""" +2023-08-25,57478,477,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4014.25,{},131236,1,"""Africa""" +2024-06-02,57479,348,"[\""Tablet\""]",1215.55,{},298182,1,"""North America""" +2024-01-16,57480,5116,"[\""Charger\"", \""Monitor\""]",1191.57,{},146760,0,"""Europe""" +2024-07-19,57481,7532,"[\""Tablet\""]",1975.67,"{\""seasonal\"": \""7%\""}",99858,1,"""Asia""" +2024-07-05,57482,6617,"[\""Headphones\"", \""Laptop\""]",2556.2,{},103695,1,"""Asia""" +2023-04-07,57483,7680,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",196.69,{},38017,1,"""Asia""" +2023-06-19,57484,3304,"[\""Tablet\"", \""Phone\""]",4134.26,"{\""promo\"": \""21%\""}",33087,1,"""Africa""" +2024-11-08,57485,9736,"[\""Keyboard\""]",4364.1,"{\"": \""22%\""}",158571,1,"""Europe""" +2024-06-21,57486,4119,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",203.2,"{\""seasonal\"": \""10%\""}",196548,0,"""Europe""" +2023-05-02,57487,733,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",499.9,{},236223,1,"""Africa""" +2023-05-07,57488,3143,"[\""Phone\"", \""Charger\""]",4726.4,"{\""loyalty\"": \""9%\""}",195366,0,"""Europe""" +2023-08-05,57489,2887,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4164.34,{},64792,1,"""Asia""" +2023-12-03,57490,1755,"[\""Charger\""]",3376.44,{},103435,0,"""Europe""" +2023-09-05,57491,1651,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4880.7,{},62210,0,"""Africa""" +2023-04-24,57492,5550,"[\""Keyboard\"", \""Laptop\""]",4836.46,"{\""loyalty\"": \""13%\""}",10563,0,"""North America""" +2023-08-08,57493,2387,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2274.08,{},80394,0,"""Asia""" +2024-09-05,57494,7739,"[\""Laptop\"", \""Charger\""]",2846.18,{},212830,1,"""Asia""" +2023-12-03,57495,6192,"[\""Charger\""]",2964.71,"{\""promo\"": \""24%\""}",78548,1,"""North America""" +2023-02-03,57496,5548,"[\""Wireless Mouse\"", \""Tablet\""]",463.18,"{\"": \""20%\""}",168401,1,"""Africa""" +2023-03-18,57497,7066,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3260.63,{},15535,1,"""Asia""" +2023-07-03,57498,2818,"[\""Laptop\""]",3122.96,"{\""loyalty\"": \""12%\""}",78497,0,"""North America""" +2024-04-29,57499,2955,"[\""Monitor\""]",232.77,"{\"": \""9%\""}",128524,0,"""South America""" +2024-04-17,57500,3362,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2208.39,"{\"": \""28%\""}",176769,1,"""Asia""" +2023-02-28,57501,3766,"[\""Tablet\""]",975.76,{},195577,1,"""North America""" +2023-09-25,57502,139,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2670.23,{},29532,0,"""Africa""" +2023-10-21,57503,8870,"[\""Wireless Mouse\""]",2596.02,"{\""loyalty\"": \""25%\""}",203842,0,"""Europe""" +2024-09-16,57504,755,"[\""Phone\"", \""Charger\""]",460.63,{},77606,1,"""Africa""" +2024-06-22,57505,307,"[\""Keyboard\"", \""Headphones\""]",3412.71,"{\"": \""6%\""}",22314,0,"""South America""" +2024-04-16,57506,781,"[\""Charger\"", \""Monitor\""]",3872.87,{},168481,1,"""Asia""" +2024-04-15,57507,2597,"[\""Wireless Mouse\""]",180.71,{},241879,1,"""North America""" +2024-06-08,57508,368,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2259.56,"{\""promo\"": \""20%\""}",207533,0,"""North America""" +2024-04-03,57509,8530,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",581.99,"{\"": \""19%\""}",295642,1,"""North America""" +2023-04-14,57510,6957,"[\""Phone\"", \""Wireless Mouse\""]",4978.82,"{\"": \""17%\""}",26792,1,"""Africa""" +2024-04-14,57511,9966,"[\""Keyboard\""]",586.33,"{\""loyalty\"": \""28%\""}",261900,0,"""North America""" +2024-02-14,57512,4535,"[\""Tablet\""]",2831.04,"{\""promo\"": \""20%\""}",165457,1,"""Asia""" +2023-03-11,57513,6027,"[\""Monitor\""]",582.1,"{\""promo\"": \""8%\""}",63334,0,"""Europe""" +2023-08-28,57514,4892,"[\""Charger\"", \""Wireless Mouse\""]",2907.87,{},218585,0,"""Africa""" +2023-12-07,57515,5553,"[\""Charger\"", \""Laptop\""]",1321.85,{},41215,0,"""South America""" +2023-04-19,57516,5714,"[\""Phone\"", \""Wireless Mouse\""]",1945.9,"{\""promo\"": \""28%\""}",52880,0,"""Asia""" +2024-09-15,57517,5732,"[\""Charger\"", \""Headphones\""]",2624.81,"{\"": \""14%\""}",49196,1,"""Europe""" +2023-03-14,57518,1634,"[\""Charger\"", \""Phone\""]",833.84,{},225816,0,"""South America""" +2023-09-18,57519,6927,"[\""Monitor\""]",1342.01,{},167149,0,"""South America""" +2023-09-14,57520,5937,"[\""Charger\"", \""Headphones\""]",1070.49,{},92298,1,"""North America""" +2024-11-22,57521,1929,"[\""Tablet\""]",2287.6,{},142358,0,"""North America""" +2023-05-05,57522,1021,"[\""Wireless Mouse\"", \""Monitor\""]",2414.36,{},52819,0,"""North America""" +2024-03-06,57523,8217,"[\""Monitor\"", \""Phone\""]",1137.21,"{\""seasonal\"": \""21%\""}",193691,1,"""South America""" +2023-04-09,57524,1135,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3681.34,"{\""promo\"": \""23%\""}",22793,1,"""North America""" +2023-08-02,57525,1755,"[\""Tablet\""]",4635.28,"{\""promo\"": \""13%\""}",215298,0,"""Europe""" +2023-09-28,57526,7271,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1696.14,{},63982,0,"""North America""" +2024-09-24,57527,4098,"[\""Charger\"", \""Wireless Mouse\""]",629.37,"{\""promo\"": \""17%\""}",14907,1,"""South America""" +2024-09-10,57528,5831,"[\""Tablet\""]",4872.37,{},24165,1,"""South America""" +2024-10-18,57529,4522,"[\""Phone\""]",2986.79,{},295404,1,"""Africa""" +2023-02-06,57530,6654,"[\""Laptop\""]",741.75,{},41210,0,"""Africa""" +2024-01-12,57531,1182,"[\""Phone\"", \""Laptop\""]",2656.23,"{\"": \""25%\""}",258417,0,"""North America""" +2024-01-29,57532,845,"[\""Monitor\"", \""Headphones\""]",2351.35,{},52415,0,"""South America""" +2024-10-25,57533,2672,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2837.45,{},271455,1,"""Asia""" +2024-03-23,57534,1203,"[\""Keyboard\"", \""Headphones\""]",3585.83,{},257782,1,"""Europe""" +2024-11-20,57535,6619,"[\""Laptop\"", \""Phone\""]",1285.01,"{\"": \""8%\""}",14283,0,"""South America""" +2024-11-22,57536,8301,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",736.82,{},243452,1,"""North America""" +2024-09-27,57537,1115,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4398.65,"{\"": \""30%\""}",38461,0,"""North America""" +2023-06-20,57538,503,"[\""Tablet\"", \""Phone\""]",1681.87,{},139238,0,"""Africa""" +2024-08-19,57539,5605,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4360.31,"{\""seasonal\"": \""18%\""}",192983,1,"""North America""" +2024-01-18,57540,5676,"[\""Charger\""]",519.93,{},142841,0,"""North America""" +2024-06-14,57541,6838,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1625.65,{},15005,0,"""Asia""" +2023-10-18,57542,3139,"[\""Charger\""]",3068.87,{},48718,1,"""South America""" +2024-10-02,57543,2845,"[\""Monitor\""]",3888.09,"{\""seasonal\"": \""21%\""}",231583,1,"""Europe""" +2023-11-25,57544,2569,"[\""Phone\"", \""Keyboard\""]",3073.84,"{\""promo\"": \""14%\""}",299853,0,"""South America""" +2024-08-28,57545,8683,"[\""Tablet\"", \""Charger\""]",3648.87,{},179735,1,"""Europe""" +2024-03-03,57546,6767,"[\""Keyboard\"", \""Charger\""]",4587.81,"{\"": \""26%\""}",73916,0,"""North America""" +2024-07-18,57547,1822,"[\""Monitor\"", \""Laptop\""]",274.58,"{\""loyalty\"": \""30%\""}",163986,1,"""South America""" +2024-08-18,57548,1095,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4893.33,{},229833,0,"""Europe""" +2024-06-03,57549,1308,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1403.13,"{\""promo\"": \""26%\""}",127214,0,"""Europe""" +2023-12-27,57550,3834,"[\""Headphones\""]",2439.79,{},287647,0,"""Asia""" +2024-10-08,57551,673,"[\""Wireless Mouse\""]",4539.11,{},271729,0,"""Africa""" +2023-07-28,57552,8428,"[\""Laptop\"", \""Monitor\""]",1606.77,{},290862,1,"""Africa""" +2024-02-09,57553,1566,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4118.2,{},169832,0,"""South America""" +2024-10-17,57554,7118,"[\""Laptop\""]",2280.65,{},39009,0,"""Europe""" +2024-10-26,57555,3048,"[\""Headphones\""]",3385.44,"{\""seasonal\"": \""6%\""}",56541,1,"""Africa""" +2024-08-30,57556,9441,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2254.49,"{\""promo\"": \""23%\""}",298376,0,"""Asia""" +2024-08-15,57557,6091,"[\""Headphones\"", \""Phone\"", \""Charger\""]",376.11,{},178335,1,"""Asia""" +2023-08-21,57558,3645,"[\""Phone\"", \""Charger\""]",3997.67,{},250646,1,"""South America""" +2023-11-01,57559,4671,"[\""Laptop\"", \""Keyboard\""]",979.53,{},47998,1,"""South America""" +2024-02-20,57560,6665,"[\""Phone\""]",951.59,"{\""seasonal\"": \""25%\""}",269366,0,"""South America""" +2024-06-09,57561,7695,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1090.53,"{\"": \""26%\""}",186932,0,"""Africa""" +2024-09-07,57562,3690,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",634.6,{},76787,0,"""Africa""" +2023-01-03,57563,5002,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4251.03,{},106040,0,"""Europe""" +2024-03-01,57564,2764,"[\""Headphones\""]",4351.63,"{\""seasonal\"": \""28%\""}",248067,0,"""Africa""" +2024-05-29,57565,7695,"[\""Headphones\""]",2267.83,"{\""loyalty\"": \""30%\""}",89709,0,"""South America""" +2023-08-30,57566,4057,"[\""Phone\""]",1548.4,"{\""promo\"": \""27%\""}",123978,1,"""Africa""" +2024-06-28,57567,8375,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3022.04,"{\""seasonal\"": \""24%\""}",4598,1,"""North America""" +2024-03-24,57568,5312,"[\""Wireless Mouse\"", \""Charger\""]",1796.38,{},70444,1,"""Europe""" +2024-02-27,57569,6162,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3398.52,{},109809,0,"""Asia""" +2024-04-18,57570,7685,"[\""Headphones\"", \""Monitor\""]",3536.64,{},29148,1,"""Asia""" +2023-07-21,57571,270,"[\""Monitor\"", \""Tablet\""]",3059.09,"{\""promo\"": \""10%\""}",208318,1,"""Europe""" +2024-10-30,57572,1377,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",757.9,"{\""loyalty\"": \""11%\""}",151997,0,"""South America""" +2024-02-26,57573,9568,"[\""Headphones\""]",1830.64,"{\""loyalty\"": \""10%\""}",108023,1,"""North America""" +2024-12-21,57574,5894,"[\""Wireless Mouse\""]",1668.48,"{\""promo\"": \""16%\""}",252400,1,"""Asia""" +2024-01-08,57575,7924,"[\""Headphones\""]",201.02,{},4001,0,"""North America""" +2023-06-07,57576,3665,"[\""Phone\""]",1824.19,"{\"": \""25%\""}",296865,0,"""Europe""" +2023-08-09,57577,87,"[\""Keyboard\"", \""Charger\""]",2337.65,{},249748,1,"""South America""" +2024-04-12,57578,5747,"[\""Keyboard\""]",973.42,{},186009,0,"""North America""" +2024-01-14,57579,987,"[\""Keyboard\"", \""Headphones\""]",1105.27,"{\""seasonal\"": \""19%\""}",198245,1,"""North America""" +2023-03-20,57580,5226,"[\""Keyboard\""]",3877.76,{},7630,1,"""Asia""" +2024-06-09,57581,1280,"[\""Laptop\"", \""Tablet\""]",3658.0,"{\"": \""11%\""}",256976,0,"""Africa""" +2024-02-22,57582,3600,"[\""Tablet\"", \""Laptop\""]",590.87,{},243769,1,"""South America""" +2024-09-26,57583,369,"[\""Tablet\"", \""Wireless Mouse\""]",4690.28,{},133555,1,"""South America""" +2024-05-10,57584,5033,"[\""Phone\"", \""Tablet\""]",3955.73,{},186339,0,"""Africa""" +2023-01-27,57585,5087,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4125.25,"{\"": \""17%\""}",174782,0,"""South America""" +2023-06-16,57586,3138,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1485.68,"{\""seasonal\"": \""12%\""}",17841,0,"""Africa""" +2023-01-28,57587,2528,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4182.93,{},179104,0,"""North America""" +2023-10-25,57588,5050,"[\""Tablet\"", \""Wireless Mouse\""]",1467.01,"{\""loyalty\"": \""8%\""}",128415,1,"""Europe""" +2023-01-15,57589,9850,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1503.95,"{\""promo\"": \""28%\""}",124980,0,"""South America""" +2024-08-18,57590,3303,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3416.59,{},49001,1,"""North America""" +2024-11-06,57591,4160,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",601.52,{},263971,1,"""Europe""" +2023-04-06,57592,2448,"[\""Tablet\""]",853.78,"{\""loyalty\"": \""17%\""}",198916,0,"""Europe""" +2024-10-01,57593,5584,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1375.02,"{\"": \""25%\""}",298411,0,"""Africa""" +2023-06-17,57594,1013,"[\""Keyboard\""]",4595.73,"{\""seasonal\"": \""24%\""}",178609,0,"""Europe""" +2023-07-06,57595,860,"[\""Phone\""]",2255.55,{},206953,0,"""Europe""" +2023-01-22,57596,7434,"[\""Keyboard\""]",609.06,{},130522,1,"""North America""" +2024-10-28,57597,6814,"[\""Laptop\""]",267.22,{},205143,0,"""North America""" +2023-12-17,57598,1810,"[\""Headphones\""]",862.8,"{\""seasonal\"": \""17%\""}",10708,1,"""Africa""" +2024-03-05,57599,999,"[\""Monitor\"", \""Phone\""]",3108.15,"{\""promo\"": \""16%\""}",15178,1,"""Europe""" +2024-08-11,57600,5815,"[\""Keyboard\"", \""Tablet\""]",4496.8,{},141957,0,"""North America""" +2024-05-11,57601,2590,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1537.54,{},129057,0,"""North America""" +2023-09-26,57602,3106,"[\""Tablet\""]",4964.23,{},52777,0,"""South America""" +2023-03-01,57603,1464,"[\""Wireless Mouse\""]",4865.9,"{\""loyalty\"": \""30%\""}",69072,1,"""Africa""" +2024-05-20,57604,2454,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3185.62,"{\"": \""12%\""}",33431,0,"""Asia""" +2023-09-19,57605,2194,"[\""Wireless Mouse\""]",4283.01,{},206144,1,"""South America""" +2024-03-14,57606,9813,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",681.99,"{\""seasonal\"": \""13%\""}",108432,0,"""South America""" +2024-10-28,57607,131,"[\""Tablet\"", \""Charger\""]",4403.48,"{\""seasonal\"": \""5%\""}",229620,0,"""Asia""" +2024-03-20,57608,801,"[\""Headphones\"", \""Phone\""]",3755.54,"{\""seasonal\"": \""23%\""}",288761,1,"""Africa""" +2023-03-30,57609,8424,"[\""Tablet\"", \""Charger\""]",4208.19,{},244805,0,"""North America""" +2024-03-12,57610,2035,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3782.08,"{\""seasonal\"": \""18%\""}",224581,0,"""Africa""" +2023-12-21,57611,1601,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3657.93,{},114863,0,"""North America""" +2023-10-25,57612,1708,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",820.01,{},168567,0,"""Europe""" +2024-05-09,57613,4025,"[\""Phone\""]",4163.38,"{\""loyalty\"": \""25%\""}",217749,0,"""South America""" +2024-03-10,57614,5663,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",788.27,{},126554,0,"""Asia""" +2024-09-20,57615,7342,"[\""Monitor\""]",204.73,"{\""seasonal\"": \""28%\""}",231884,0,"""Europe""" +2024-04-21,57616,5903,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4763.14,"{\""seasonal\"": \""7%\""}",211841,0,"""Asia""" +2024-04-22,57617,4693,"[\""Tablet\"", \""Phone\""]",1450.53,{},273860,1,"""Europe""" +2024-06-17,57618,2960,"[\""Laptop\""]",3581.88,{},282526,0,"""Africa""" +2024-08-12,57619,859,"[\""Laptop\""]",183.67,"{\"": \""22%\""}",169244,0,"""Asia""" +2023-12-26,57620,1717,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2448.64,{},290853,1,"""South America""" +2023-07-10,57621,5490,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3811.98,"{\""seasonal\"": \""29%\""}",148589,1,"""Asia""" +2023-02-24,57622,7499,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1862.68,{},258111,0,"""Asia""" +2023-06-26,57623,5784,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4095.12,"{\""loyalty\"": \""22%\""}",216477,1,"""South America""" +2023-09-06,57624,6623,"[\""Headphones\""]",2713.78,"{\""loyalty\"": \""18%\""}",167174,1,"""North America""" +2024-01-23,57625,3806,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3750.22,"{\"": \""5%\""}",292569,0,"""Asia""" +2024-05-19,57626,4922,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3200.78,"{\""seasonal\"": \""7%\""}",217435,1,"""Africa""" +2023-04-15,57627,5169,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3495.35,{},55946,0,"""South America""" +2024-11-22,57628,9091,"[\""Monitor\"", \""Phone\""]",1970.78,{},233211,1,"""South America""" +2024-05-05,57629,5669,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2041.5,"{\"": \""12%\""}",199868,0,"""North America""" +2023-02-04,57630,9165,"[\""Phone\""]",975.28,{},171245,0,"""North America""" +2023-02-01,57631,6878,"[\""Wireless Mouse\"", \""Monitor\""]",476.97,{},118897,0,"""Africa""" +2024-03-05,57632,6925,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3671.09,"{\""loyalty\"": \""13%\""}",214113,0,"""Africa""" +2024-11-22,57633,4917,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3620.64,{},291670,0,"""Africa""" +2023-11-26,57634,9123,"[\""Phone\"", \""Laptop\""]",2730.41,{},18568,0,"""Europe""" +2024-06-01,57635,5230,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2213.66,"{\""seasonal\"": \""23%\""}",58636,0,"""South America""" +2024-05-03,57636,5482,"[\""Headphones\"", \""Tablet\""]",2505.9,{},117633,1,"""Africa""" +2024-09-06,57637,4451,"[\""Wireless Mouse\""]",4664.11,{},159946,1,"""Africa""" +2023-06-28,57638,9288,"[\""Charger\"", \""Monitor\""]",3713.73,"{\""seasonal\"": \""26%\""}",51478,1,"""North America""" +2024-06-19,57639,6766,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3016.58,{},84920,0,"""Asia""" +2024-02-29,57640,5932,"[\""Monitor\"", \""Wireless Mouse\""]",4734.33,"{\""loyalty\"": \""24%\""}",140287,0,"""South America""" +2024-10-14,57641,6404,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1582.24,"{\""promo\"": \""18%\""}",76633,0,"""South America""" +2024-09-26,57642,1293,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",814.69,"{\"": \""15%\""}",99670,0,"""Europe""" +2023-09-29,57643,4199,"[\""Tablet\""]",4342.57,"{\""promo\"": \""22%\""}",89604,1,"""Africa""" +2024-09-11,57644,4704,"[\""Keyboard\""]",3428.86,"{\""seasonal\"": \""9%\""}",225130,0,"""North America""" +2024-05-29,57645,2873,"[\""Wireless Mouse\"", \""Laptop\""]",1740.76,"{\""seasonal\"": \""10%\""}",5043,0,"""South America""" +2024-05-05,57646,7860,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1845.63,"{\""seasonal\"": \""24%\""}",224613,1,"""Africa""" +2024-10-10,57647,4784,"[\""Monitor\"", \""Tablet\""]",1686.44,"{\""loyalty\"": \""20%\""}",173294,1,"""Africa""" +2023-11-13,57648,6667,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3974.2,{},271681,1,"""Asia""" +2024-11-03,57649,7684,"[\""Wireless Mouse\"", \""Laptop\""]",91.75,{},161993,1,"""Asia""" +2023-06-16,57650,3531,"[\""Charger\""]",57.26,{},160657,1,"""Africa""" +2023-03-27,57651,4971,"[\""Charger\""]",4702.78,{},20255,1,"""South America""" +2023-06-25,57652,3889,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1144.32,{},286021,0,"""North America""" +2023-06-03,57653,4841,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",554.79,{},103741,1,"""Africa""" +2023-12-14,57654,1219,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3588.76,{},28048,1,"""Africa""" +2024-03-18,57655,7853,"[\""Monitor\"", \""Phone\""]",4193.55,"{\"": \""20%\""}",176479,1,"""Africa""" +2024-03-02,57656,6205,"[\""Charger\"", \""Keyboard\""]",2408.31,"{\"": \""19%\""}",85667,0,"""South America""" +2024-07-01,57657,3362,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",912.28,{},73762,0,"""South America""" +2024-04-22,57658,4995,"[\""Tablet\"", \""Wireless Mouse\""]",178.41,{},285164,1,"""North America""" +2023-05-23,57659,1578,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3519.85,{},195802,0,"""South America""" +2023-12-01,57660,7374,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2092.84,"{\""loyalty\"": \""6%\""}",11407,0,"""South America""" +2023-07-03,57661,5884,"[\""Monitor\"", \""Keyboard\""]",3240.63,"{\""loyalty\"": \""27%\""}",145028,0,"""Asia""" +2024-01-21,57662,2668,"[\""Wireless Mouse\""]",3641.26,{},220662,0,"""South America""" +2023-08-27,57663,9077,"[\""Keyboard\""]",1469.14,{},54389,0,"""North America""" +2023-03-14,57664,3391,"[\""Wireless Mouse\"", \""Phone\""]",4391.28,{},277417,1,"""South America""" +2023-01-11,57665,7602,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4077.69,"{\""seasonal\"": \""26%\""}",25318,0,"""Asia""" +2023-03-17,57666,4138,"[\""Keyboard\"", \""Charger\""]",4362.0,{},142577,1,"""South America""" +2023-10-22,57667,2949,"[\""Laptop\"", \""Headphones\""]",2412.16,"{\""promo\"": \""14%\""}",232171,1,"""Europe""" +2024-04-27,57668,8966,"[\""Headphones\""]",2079.62,"{\""promo\"": \""15%\""}",73132,0,"""South America""" +2024-10-01,57669,7662,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4517.12,{},228551,1,"""Europe""" +2024-08-04,57670,7661,"[\""Monitor\""]",951.41,"{\""seasonal\"": \""14%\""}",247212,0,"""North America""" +2023-04-21,57671,83,"[\""Headphones\"", \""Phone\""]",2193.96,{},126737,0,"""South America""" +2023-07-05,57672,591,"[\""Wireless Mouse\"", \""Charger\""]",1114.81,"{\""promo\"": \""15%\""}",65058,1,"""Asia""" +2023-12-30,57673,1208,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1671.43,{},142860,0,"""South America""" +2023-02-13,57674,946,"[\""Tablet\"", \""Laptop\""]",1565.91,"{\""promo\"": \""21%\""}",92532,1,"""Asia""" +2023-01-30,57675,1467,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2934.74,"{\"": \""14%\""}",296108,1,"""South America""" +2024-07-18,57676,2968,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4549.53,{},270928,0,"""North America""" +2024-07-21,57677,3111,"[\""Tablet\"", \""Laptop\""]",4907.87,{},157998,0,"""Asia""" +2023-09-24,57678,8059,"[\""Monitor\"", \""Wireless Mouse\""]",3938.57,"{\"": \""26%\""}",206755,0,"""Asia""" +2023-12-18,57679,3569,"[\""Charger\"", \""Phone\""]",3971.0,{},78386,0,"""Asia""" +2024-03-04,57680,6629,"[\""Tablet\""]",1481.65,"{\""seasonal\"": \""14%\""}",102313,1,"""Asia""" +2024-12-03,57681,215,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2808.0,"{\"": \""28%\""}",73615,1,"""North America""" +2024-07-20,57682,6331,"[\""Laptop\""]",3563.3,"{\""promo\"": \""10%\""}",21343,1,"""Africa""" +2023-09-02,57683,9104,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3258.44,{},46276,0,"""North America""" +2023-07-26,57684,3410,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",169.9,"{\""seasonal\"": \""17%\""}",95511,1,"""North America""" +2023-10-06,57685,9213,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4050.26,"{\""seasonal\"": \""13%\""}",163452,1,"""North America""" +2024-06-28,57686,9854,"[\""Wireless Mouse\""]",1947.73,"{\"": \""12%\""}",5837,1,"""Asia""" +2023-01-20,57687,6860,"[\""Phone\"", \""Charger\""]",2695.49,"{\""promo\"": \""25%\""}",100555,0,"""Asia""" +2023-08-22,57688,3501,"[\""Keyboard\"", \""Monitor\""]",3650.94,"{\"": \""8%\""}",203594,0,"""Africa""" +2023-07-07,57689,8137,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2330.46,"{\""seasonal\"": \""29%\""}",176631,1,"""Asia""" +2024-12-10,57690,4274,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3927.55,{},5624,1,"""North America""" +2024-11-30,57691,5817,"[\""Tablet\"", \""Monitor\""]",1389.26,{},151798,1,"""Africa""" +2023-03-17,57692,5630,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3526.91,"{\""seasonal\"": \""18%\""}",236950,1,"""Asia""" +2023-03-31,57693,303,"[\""Wireless Mouse\"", \""Charger\""]",924.22,"{\""promo\"": \""21%\""}",299460,0,"""Africa""" +2023-06-15,57694,827,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2584.45,{},25682,1,"""Asia""" +2024-04-20,57695,9404,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4186.04,{},159707,1,"""Asia""" +2024-04-20,57696,415,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4047.3,"{\"": \""5%\""}",277969,0,"""Africa""" +2024-03-20,57697,7260,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4502.28,"{\""seasonal\"": \""28%\""}",148168,1,"""Asia""" +2023-03-03,57698,9391,"[\""Tablet\"", \""Headphones\""]",2412.04,{},3800,1,"""Africa""" +2023-07-16,57699,1402,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4043.29,{},129201,0,"""Africa""" +2023-02-21,57700,7064,"[\""Laptop\"", \""Headphones\""]",4017.03,"{\""loyalty\"": \""10%\""}",125870,0,"""Asia""" +2024-09-03,57701,1784,"[\""Keyboard\"", \""Monitor\""]",4284.2,{},110230,0,"""Africa""" +2024-03-07,57702,3014,"[\""Phone\""]",92.34,"{\"": \""5%\""}",278726,0,"""Europe""" +2024-02-03,57703,6217,"[\""Wireless Mouse\"", \""Tablet\""]",3330.79,"{\""loyalty\"": \""30%\""}",61582,1,"""South America""" +2024-08-14,57704,7,"[\""Keyboard\""]",3106.9,{},270109,1,"""Asia""" +2024-04-17,57705,5343,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3061.59,"{\"": \""30%\""}",139036,1,"""North America""" +2023-04-17,57706,337,"[\""Tablet\""]",4338.86,{},149943,0,"""North America""" +2023-08-31,57707,5195,"[\""Headphones\""]",940.93,"{\"": \""30%\""}",223714,0,"""Asia""" +2024-12-11,57708,5040,"[\""Tablet\"", \""Laptop\""]",3490.65,"{\""promo\"": \""26%\""}",109522,0,"""North America""" +2023-07-22,57709,7934,"[\""Headphones\"", \""Wireless Mouse\""]",4788.3,"{\"": \""23%\""}",187209,0,"""South America""" +2024-08-30,57710,3725,"[\""Phone\""]",2150.37,"{\""seasonal\"": \""15%\""}",114627,0,"""Africa""" +2023-02-13,57711,1349,"[\""Keyboard\"", \""Tablet\""]",4636.75,"{\""promo\"": \""20%\""}",92978,0,"""North America""" +2024-11-14,57712,4698,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1313.07,"{\"": \""12%\""}",238209,0,"""North America""" +2023-11-16,57713,8082,"[\""Monitor\"", \""Tablet\""]",1125.47,"{\""promo\"": \""26%\""}",28720,1,"""Africa""" +2023-05-24,57714,7016,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1643.12,{},258897,1,"""North America""" +2024-04-21,57715,2377,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4272.53,"{\""loyalty\"": \""14%\""}",106988,1,"""North America""" +2023-12-30,57716,3514,"[\""Headphones\""]",4374.25,{},208188,0,"""Europe""" +2023-09-16,57717,8961,"[\""Charger\"", \""Keyboard\""]",3263.09,"{\""seasonal\"": \""24%\""}",229225,0,"""North America""" +2023-01-06,57718,2944,"[\""Headphones\""]",1458.57,"{\""promo\"": \""21%\""}",140324,0,"""Africa""" +2024-02-17,57719,2499,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3986.29,{},110600,0,"""North America""" +2023-08-08,57720,9003,"[\""Keyboard\"", \""Laptop\""]",4736.4,{},51728,0,"""North America""" +2024-03-06,57721,4323,"[\""Phone\""]",1338.12,"{\""seasonal\"": \""12%\""}",23347,0,"""Asia""" +2024-04-12,57722,9284,"[\""Tablet\"", \""Keyboard\""]",4300.41,{},6431,0,"""Asia""" +2024-02-09,57723,6106,"[\""Laptop\""]",137.48,{},39918,1,"""Africa""" +2023-02-09,57724,2165,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4642.89,"{\""loyalty\"": \""11%\""}",33748,0,"""South America""" +2023-10-29,57725,4396,"[\""Laptop\""]",4713.01,"{\""promo\"": \""30%\""}",182244,0,"""Asia""" +2024-12-29,57726,4828,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3068.59,{},139836,1,"""North America""" +2023-04-07,57727,9763,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1164.03,{},91232,0,"""Asia""" +2023-08-20,57728,8107,"[\""Monitor\"", \""Charger\""]",992.23,"{\"": \""8%\""}",235158,0,"""Europe""" +2024-07-17,57729,8220,"[\""Monitor\""]",453.78,{},235721,1,"""North America""" +2024-04-07,57730,3658,"[\""Phone\""]",1158.53,"{\""promo\"": \""16%\""}",107945,1,"""Europe""" +2023-09-21,57731,8192,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1132.18,"{\"": \""21%\""}",211603,1,"""North America""" +2024-10-28,57732,2728,"[\""Charger\""]",377.49,{},98992,0,"""South America""" +2023-07-01,57733,5236,"[\""Wireless Mouse\""]",3594.76,"{\""promo\"": \""15%\""}",196370,0,"""Europe""" +2023-03-01,57734,9880,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3028.42,{},162434,1,"""Europe""" +2023-04-02,57735,7633,"[\""Phone\"", \""Headphones\""]",125.04,{},270962,1,"""North America""" +2023-12-15,57736,5508,"[\""Tablet\"", \""Phone\""]",631.96,{},41197,0,"""Asia""" +2023-02-01,57737,6957,"[\""Tablet\"", \""Headphones\""]",3890.7,"{\"": \""11%\""}",151279,0,"""North America""" +2024-04-18,57738,1237,"[\""Laptop\"", \""Charger\""]",2682.48,"{\""loyalty\"": \""7%\""}",246084,1,"""Africa""" +2023-05-28,57739,8003,"[\""Monitor\"", \""Wireless Mouse\""]",512.33,"{\""seasonal\"": \""16%\""}",27331,1,"""Asia""" +2023-12-05,57740,5251,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3024.36,{},107135,1,"""Africa""" +2024-03-28,57741,763,"[\""Monitor\""]",4834.22,"{\""promo\"": \""27%\""}",123600,0,"""Europe""" +2023-09-02,57742,7394,"[\""Charger\"", \""Phone\""]",3416.67,{},176640,1,"""North America""" +2023-11-07,57743,5534,"[\""Monitor\"", \""Headphones\""]",2832.89,"{\""seasonal\"": \""26%\""}",207291,0,"""South America""" +2024-05-25,57744,3457,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4134.38,"{\""promo\"": \""24%\""}",141452,1,"""South America""" +2023-07-17,57745,8427,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4372.33,"{\""seasonal\"": \""21%\""}",286714,0,"""Asia""" +2023-12-31,57746,432,"[\""Headphones\"", \""Wireless Mouse\""]",2387.38,{},163478,0,"""Asia""" +2023-02-14,57747,9816,"[\""Laptop\"", \""Tablet\""]",1060.98,"{\""loyalty\"": \""9%\""}",26554,1,"""Europe""" +2023-09-04,57748,4598,"[\""Laptop\"", \""Charger\""]",3645.21,"{\""seasonal\"": \""17%\""}",8911,1,"""South America""" +2024-08-09,57749,7593,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",478.45,{},18892,0,"""Africa""" +2024-06-07,57750,9953,"[\""Tablet\"", \""Laptop\""]",1512.42,"{\""promo\"": \""26%\""}",99873,0,"""Europe""" +2024-08-20,57751,791,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3886.57,{},55695,1,"""South America""" +2023-12-08,57752,4710,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2034.09,{},266177,1,"""Europe""" +2024-10-17,57753,4182,"[\""Tablet\"", \""Keyboard\""]",2159.35,{},275668,0,"""Africa""" +2024-07-03,57754,6254,"[\""Monitor\""]",710.63,{},149892,0,"""Asia""" +2024-11-25,57755,7419,"[\""Charger\"", \""Headphones\""]",2568.03,{},280972,1,"""Europe""" +2023-07-09,57756,4302,"[\""Tablet\""]",526.94,"{\""loyalty\"": \""18%\""}",29287,1,"""Europe""" +2024-01-01,57757,8566,"[\""Tablet\""]",4952.12,"{\""seasonal\"": \""27%\""}",47139,0,"""South America""" +2023-01-07,57758,4542,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1914.16,{},279730,0,"""South America""" +2023-03-13,57759,9820,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1202.66,{},72942,0,"""Africa""" +2023-07-13,57760,5486,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",349.33,"{\""promo\"": \""24%\""}",28494,1,"""Europe""" +2023-03-04,57761,1175,"[\""Phone\""]",305.58,{},184561,1,"""North America""" +2024-11-26,57762,3421,"[\""Laptop\"", \""Wireless Mouse\""]",4187.42,"{\""loyalty\"": \""11%\""}",117524,0,"""Asia""" +2023-09-24,57763,5117,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2723.7,{},144605,0,"""Asia""" +2023-09-24,57764,5305,"[\""Phone\""]",1044.37,{},159564,0,"""Europe""" +2023-05-22,57765,6253,"[\""Laptop\""]",787.95,{},67142,1,"""Europe""" +2023-06-28,57766,9094,"[\""Laptop\"", \""Wireless Mouse\""]",2721.66,{},13210,1,"""South America""" +2023-10-22,57767,7944,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1338.41,"{\""seasonal\"": \""19%\""}",211240,1,"""Asia""" +2024-12-14,57768,508,"[\""Wireless Mouse\""]",2647.05,"{\""seasonal\"": \""15%\""}",148864,0,"""South America""" +2024-10-17,57769,7957,"[\""Laptop\"", \""Monitor\""]",2544.79,"{\""seasonal\"": \""27%\""}",253140,1,"""Asia""" +2024-04-04,57770,8856,"[\""Tablet\""]",631.91,{},295586,1,"""Europe""" +2023-02-11,57771,2927,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",936.19,"{\""promo\"": \""24%\""}",102540,0,"""Europe""" +2023-07-27,57772,361,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3108.56,{},10874,1,"""South America""" +2023-09-07,57773,3767,"[\""Wireless Mouse\"", \""Phone\""]",4161.55,"{\""seasonal\"": \""28%\""}",105121,1,"""Africa""" +2023-06-27,57774,820,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1740.93,"{\""seasonal\"": \""19%\""}",145307,0,"""Africa""" +2023-06-14,57775,3988,"[\""Tablet\""]",2170.28,{},79035,0,"""Asia""" +2023-02-08,57776,4482,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4829.15,{},160444,0,"""South America""" +2024-02-02,57777,9986,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1496.09,"{\""loyalty\"": \""14%\""}",98644,1,"""South America""" +2024-05-11,57778,3665,"[\""Wireless Mouse\""]",110.58,"{\""loyalty\"": \""10%\""}",143529,0,"""Asia""" +2023-01-01,57779,4141,"[\""Wireless Mouse\""]",1365.61,"{\""promo\"": \""5%\""}",22812,1,"""South America""" +2024-08-04,57780,9592,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2785.77,"{\"": \""23%\""}",80477,0,"""Asia""" +2023-03-08,57781,6179,"[\""Laptop\"", \""Monitor\""]",2911.01,{},120566,0,"""South America""" +2023-09-14,57782,5241,"[\""Charger\""]",3034.06,{},54541,1,"""Europe""" +2023-10-15,57783,1785,"[\""Tablet\""]",2797.87,{},182248,0,"""Asia""" +2023-07-22,57784,5461,"[\""Charger\""]",4094.24,{},127075,0,"""North America""" +2023-10-22,57785,5032,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1647.3,"{\""promo\"": \""27%\""}",91654,1,"""Africa""" +2024-09-07,57786,6599,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1644.43,{},93814,1,"""Europe""" +2023-07-15,57787,4077,"[\""Headphones\"", \""Tablet\""]",1740.51,"{\""seasonal\"": \""17%\""}",267574,1,"""Europe""" +2024-03-15,57788,9586,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3704.65,{},79307,1,"""Europe""" +2023-08-31,57789,9403,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2065.65,{},224942,1,"""South America""" +2023-01-31,57790,2304,"[\""Charger\"", \""Monitor\""]",3412.47,"{\""promo\"": \""17%\""}",213657,1,"""Europe""" +2023-04-27,57791,139,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3909.02,{},29762,0,"""South America""" +2023-08-15,57792,5968,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2957.53,{},171127,1,"""South America""" +2023-05-13,57793,3994,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1348.77,"{\""promo\"": \""21%\""}",16536,1,"""Africa""" +2024-09-27,57794,2172,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3809.23,"{\""seasonal\"": \""13%\""}",23628,1,"""South America""" +2023-02-04,57795,1248,"[\""Headphones\"", \""Keyboard\""]",3581.82,{},182087,1,"""Asia""" +2023-07-16,57796,8471,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3678.14,{},46133,0,"""Europe""" +2024-07-10,57797,1404,"[\""Laptop\""]",848.85,{},232767,0,"""North America""" +2024-07-18,57798,2132,"[\""Monitor\"", \""Laptop\""]",917.5,"{\""loyalty\"": \""27%\""}",183571,1,"""Asia""" +2023-01-04,57799,9098,"[\""Laptop\""]",3546.78,{},183491,1,"""Europe""" +2023-03-04,57800,5810,"[\""Keyboard\"", \""Wireless Mouse\""]",3203.54,"{\""seasonal\"": \""6%\""}",140185,1,"""Asia""" +2024-08-07,57801,1994,"[\""Tablet\""]",4288.61,"{\""promo\"": \""21%\""}",50384,0,"""Asia""" +2024-09-18,57802,57,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1310.98,{},278506,1,"""Europe""" +2024-05-17,57803,3331,"[\""Monitor\""]",4724.71,{},90489,1,"""Africa""" +2023-10-25,57804,5228,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3710.08,{},132637,1,"""Asia""" +2023-05-15,57805,6358,"[\""Monitor\""]",841.36,"{\""promo\"": \""30%\""}",89113,1,"""Asia""" +2024-01-21,57806,1674,"[\""Keyboard\"", \""Wireless Mouse\""]",3214.19,"{\""promo\"": \""24%\""}",4349,0,"""Europe""" +2024-12-16,57807,2015,"[\""Phone\"", \""Tablet\""]",3311.59,"{\""promo\"": \""29%\""}",203991,1,"""North America""" +2023-05-27,57808,176,"[\""Headphones\"", \""Monitor\""]",1291.47,{},61772,0,"""Europe""" +2023-08-25,57809,1201,"[\""Phone\""]",1605.03,{},25453,1,"""North America""" +2023-03-28,57810,4762,"[\""Headphones\""]",4832.11,"{\""loyalty\"": \""10%\""}",237059,0,"""Africa""" +2024-07-17,57811,7667,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4327.15,{},19172,1,"""Africa""" +2024-02-08,57812,5718,"[\""Charger\""]",4588.95,{},145967,1,"""North America""" +2023-01-04,57813,9731,"[\""Headphones\""]",3050.33,{},193799,0,"""Europe""" +2024-09-04,57814,7886,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4246.0,"{\""seasonal\"": \""24%\""}",7374,0,"""Africa""" +2024-09-23,57815,5901,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2253.21,{},47055,0,"""North America""" +2023-04-06,57816,7810,"[\""Charger\"", \""Keyboard\""]",4540.74,"{\""seasonal\"": \""7%\""}",226893,0,"""Asia""" +2023-04-09,57817,592,"[\""Phone\"", \""Keyboard\""]",3654.53,{},136323,0,"""Africa""" +2023-03-13,57818,8112,"[\""Laptop\""]",147.24,"{\"": \""12%\""}",38203,1,"""Asia""" +2024-07-19,57819,9465,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2397.43,"{\""seasonal\"": \""14%\""}",189614,1,"""South America""" +2023-08-11,57820,958,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1305.87,{},21442,1,"""Asia""" +2024-09-08,57821,2132,"[\""Headphones\""]",3924.21,{},65255,1,"""South America""" +2023-05-27,57822,2361,"[\""Phone\"", \""Monitor\""]",1293.97,{},45424,0,"""Asia""" +2023-05-28,57823,2301,"[\""Headphones\"", \""Phone\""]",110.92,{},99197,1,"""North America""" +2023-05-23,57824,7247,"[\""Tablet\""]",3446.03,"{\""loyalty\"": \""20%\""}",6393,1,"""Asia""" +2024-06-01,57825,5639,"[\""Wireless Mouse\"", \""Laptop\""]",3597.37,"{\""promo\"": \""15%\""}",82690,0,"""Europe""" +2024-05-01,57826,1051,"[\""Laptop\"", \""Headphones\""]",3057.61,{},125562,1,"""Africa""" +2023-09-24,57827,2557,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1203.57,{},72014,0,"""North America""" +2023-07-20,57828,3500,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1772.47,"{\""loyalty\"": \""25%\""}",245006,1,"""Asia""" +2024-08-10,57829,8608,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1166.82,"{\""promo\"": \""10%\""}",222673,0,"""Asia""" +2024-08-09,57830,4018,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",193.29,"{\""promo\"": \""23%\""}",82350,1,"""Africa""" +2023-05-16,57831,2301,"[\""Tablet\"", \""Phone\""]",4920.64,"{\""seasonal\"": \""22%\""}",158011,1,"""South America""" +2023-12-09,57832,6322,"[\""Charger\"", \""Wireless Mouse\""]",2838.64,"{\""loyalty\"": \""24%\""}",65053,0,"""Africa""" +2024-07-10,57833,5420,"[\""Keyboard\""]",362.64,"{\""promo\"": \""30%\""}",110217,1,"""Europe""" +2023-12-09,57834,2107,"[\""Laptop\"", \""Phone\""]",4170.77,"{\""loyalty\"": \""27%\""}",163293,0,"""South America""" +2024-11-19,57835,7173,"[\""Keyboard\""]",2171.01,"{\"": \""26%\""}",134139,1,"""Europe""" +2024-02-20,57836,7486,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",148.79,{},156397,1,"""Europe""" +2024-12-10,57837,5843,"[\""Keyboard\"", \""Charger\""]",278.82,{},105013,0,"""North America""" +2024-06-29,57838,5164,"[\""Phone\""]",1784.64,{},291441,0,"""North America""" +2023-07-20,57839,5245,"[\""Phone\"", \""Charger\""]",2351.55,"{\""promo\"": \""17%\""}",200835,1,"""Asia""" +2023-04-01,57840,6523,"[\""Keyboard\"", \""Tablet\""]",1381.27,"{\""loyalty\"": \""19%\""}",36429,1,"""Africa""" +2024-11-27,57841,625,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4826.89,"{\"": \""25%\""}",44251,0,"""North America""" +2024-12-16,57842,170,"[\""Wireless Mouse\"", \""Charger\""]",2976.37,"{\""loyalty\"": \""10%\""}",199156,0,"""North America""" +2024-04-10,57843,1259,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",326.21,{},152908,0,"""South America""" +2024-05-28,57844,3527,"[\""Wireless Mouse\""]",1568.92,{},128406,1,"""Asia""" +2023-07-01,57845,8287,"[\""Phone\""]",1688.74,"{\""loyalty\"": \""12%\""}",32576,1,"""North America""" +2024-09-09,57846,248,"[\""Wireless Mouse\""]",3557.2,"{\""seasonal\"": \""10%\""}",100180,0,"""Europe""" +2024-09-05,57847,9035,"[\""Wireless Mouse\""]",162.56,{},58684,0,"""Europe""" +2024-04-05,57848,8897,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2659.56,{},237043,0,"""Europe""" +2023-07-02,57849,7992,"[\""Headphones\""]",2445.2,"{\""promo\"": \""13%\""}",231708,1,"""North America""" +2024-03-09,57850,7921,"[\""Keyboard\"", \""Wireless Mouse\""]",2077.85,{},144324,1,"""South America""" +2024-05-02,57851,9206,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3531.08,{},176233,1,"""Europe""" +2023-12-07,57852,4307,"[\""Laptop\"", \""Tablet\""]",4529.29,{},264578,0,"""Africa""" +2023-10-14,57853,7049,"[\""Phone\"", \""Headphones\""]",1032.27,{},35666,1,"""South America""" +2023-09-14,57854,8934,"[\""Monitor\""]",4359.47,"{\""promo\"": \""27%\""}",278198,1,"""Europe""" +2024-08-14,57855,6639,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4146.79,"{\"": \""9%\""}",49567,0,"""Africa""" +2023-06-17,57856,9556,"[\""Wireless Mouse\""]",2810.62,{},197370,1,"""Europe""" +2024-08-28,57857,3877,"[\""Tablet\""]",1275.51,{},219309,1,"""Asia""" +2024-07-11,57858,3831,"[\""Headphones\""]",2845.99,"{\""seasonal\"": \""19%\""}",221952,0,"""North America""" +2023-05-09,57859,8509,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2769.19,{},145218,1,"""Asia""" +2023-11-12,57860,8886,"[\""Charger\""]",376.89,"{\""promo\"": \""26%\""}",33517,0,"""Africa""" +2024-07-28,57861,8048,"[\""Headphones\""]",767.15,{},220109,1,"""Europe""" +2023-11-03,57862,4013,"[\""Keyboard\"", \""Laptop\""]",3127.23,"{\""seasonal\"": \""19%\""}",190951,1,"""Asia""" +2023-07-04,57863,4916,"[\""Wireless Mouse\"", \""Tablet\""]",3951.11,{},280050,1,"""Europe""" +2024-10-22,57864,6920,"[\""Tablet\""]",3899.98,"{\"": \""18%\""}",242871,1,"""South America""" +2023-11-26,57865,7639,"[\""Charger\"", \""Tablet\""]",1486.52,{},11121,0,"""Africa""" +2023-11-25,57866,4950,"[\""Headphones\"", \""Keyboard\""]",310.27,{},168930,0,"""Africa""" +2024-03-05,57867,7516,"[\""Monitor\"", \""Laptop\""]",104.3,{},213813,1,"""South America""" +2023-10-26,57868,9849,"[\""Monitor\""]",1526.9,"{\""loyalty\"": \""20%\""}",66062,0,"""North America""" +2023-05-08,57869,2216,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2683.41,"{\""promo\"": \""27%\""}",231964,0,"""Europe""" +2023-12-25,57870,7607,"[\""Keyboard\"", \""Phone\""]",619.32,{},215022,1,"""Africa""" +2023-11-20,57871,8425,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2013.18,"{\"": \""7%\""}",230213,0,"""Africa""" +2023-06-17,57872,2696,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1852.56,{},4312,1,"""Asia""" +2024-04-05,57873,4389,"[\""Monitor\""]",443.59,"{\"": \""21%\""}",59564,1,"""Africa""" +2023-10-04,57874,355,"[\""Phone\""]",729.66,"{\""seasonal\"": \""24%\""}",55579,1,"""Europe""" +2023-03-28,57875,9211,"[\""Tablet\""]",3858.45,{},137982,1,"""Europe""" +2024-02-04,57876,2662,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",92.94,{},4952,0,"""Asia""" +2024-06-09,57877,7144,"[\""Wireless Mouse\"", \""Laptop\""]",4831.56,"{\""seasonal\"": \""17%\""}",287612,1,"""Asia""" +2023-04-09,57878,3207,"[\""Phone\""]",3775.33,{},273831,0,"""Africa""" +2024-11-20,57879,8908,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4152.24,{},58365,1,"""North America""" +2023-01-28,57880,886,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3329.91,{},15017,1,"""South America""" +2024-12-25,57881,5606,"[\""Phone\""]",2651.07,{},29318,0,"""Africa""" +2024-12-09,57882,627,"[\""Charger\"", \""Phone\""]",1770.03,{},222631,0,"""South America""" +2024-07-10,57883,3117,"[\""Tablet\"", \""Charger\""]",3127.45,"{\""promo\"": \""5%\""}",285453,0,"""Africa""" +2024-07-04,57884,249,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1359.04,"{\""loyalty\"": \""10%\""}",95111,1,"""South America""" +2023-06-22,57885,9867,"[\""Phone\"", \""Headphones\""]",4509.99,{},272862,1,"""North America""" +2024-02-11,57886,5236,"[\""Keyboard\"", \""Monitor\""]",412.01,"{\""promo\"": \""16%\""}",153442,1,"""Africa""" +2023-01-23,57887,4677,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1490.45,"{\""seasonal\"": \""11%\""}",174124,1,"""South America""" +2024-01-27,57888,7622,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1027.06,"{\""seasonal\"": \""24%\""}",143819,0,"""North America""" +2024-09-27,57889,7699,"[\""Tablet\"", \""Wireless Mouse\""]",3508.76,{},35314,0,"""South America""" +2023-12-25,57890,3809,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3031.45,"{\""loyalty\"": \""12%\""}",121574,0,"""South America""" +2024-04-11,57891,516,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4009.52,"{\""loyalty\"": \""30%\""}",270523,1,"""Asia""" +2023-12-31,57892,9384,"[\""Wireless Mouse\""]",3327.45,{},258006,0,"""Africa""" +2024-06-28,57893,540,"[\""Phone\"", \""Keyboard\""]",4221.67,"{\"": \""10%\""}",183801,0,"""South America""" +2024-03-04,57894,2694,"[\""Keyboard\"", \""Phone\""]",341.63,{},255030,1,"""Africa""" +2023-12-16,57895,5654,"[\""Monitor\""]",1072.3,"{\"": \""11%\""}",53763,0,"""Asia""" +2023-08-06,57896,6313,"[\""Laptop\"", \""Monitor\""]",1460.44,{},144930,1,"""Asia""" +2024-01-31,57897,3516,"[\""Keyboard\"", \""Headphones\""]",4341.11,"{\""seasonal\"": \""21%\""}",31034,0,"""South America""" +2024-11-16,57898,3835,"[\""Wireless Mouse\""]",1006.15,{},214506,0,"""Africa""" +2024-02-07,57899,2672,"[\""Laptop\"", \""Wireless Mouse\""]",309.29,"{\""loyalty\"": \""26%\""}",293555,1,"""North America""" +2024-09-06,57900,7107,"[\""Tablet\""]",3377.07,{},62704,1,"""Africa""" +2023-06-26,57901,9140,"[\""Charger\"", \""Headphones\""]",4169.05,{},53061,0,"""Europe""" +2023-03-27,57902,5989,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2457.05,"{\""seasonal\"": \""5%\""}",21372,1,"""North America""" +2023-08-15,57903,9556,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1331.19,{},209028,1,"""South America""" +2023-02-09,57904,194,"[\""Monitor\""]",1027.84,{},148616,0,"""South America""" +2023-01-19,57905,7238,"[\""Phone\"", \""Tablet\""]",2218.45,"{\""seasonal\"": \""21%\""}",244815,1,"""Europe""" +2023-10-16,57906,9005,"[\""Monitor\""]",1051.01,{},11733,0,"""South America""" +2023-03-12,57907,9750,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2587.1,"{\""loyalty\"": \""27%\""}",135318,0,"""South America""" +2023-12-31,57908,5671,"[\""Tablet\"", \""Keyboard\""]",2202.65,{},272327,0,"""Europe""" +2023-05-18,57909,4264,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4493.7,"{\""loyalty\"": \""17%\""}",136553,1,"""Europe""" +2023-08-22,57910,5285,"[\""Headphones\""]",3528.06,"{\""promo\"": \""23%\""}",278834,0,"""North America""" +2023-08-23,57911,4225,"[\""Monitor\"", \""Phone\""]",989.82,{},217275,1,"""Africa""" +2023-03-11,57912,3852,"[\""Phone\"", \""Charger\""]",339.52,{},177890,1,"""Asia""" +2023-10-01,57913,190,"[\""Laptop\"", \""Charger\""]",4853.81,"{\""promo\"": \""24%\""}",203909,1,"""Africa""" +2023-10-01,57914,4588,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2078.28,"{\"": \""9%\""}",299196,0,"""Asia""" +2023-02-08,57915,5992,"[\""Keyboard\"", \""Charger\""]",4999.42,"{\"": \""13%\""}",292864,1,"""Europe""" +2024-10-04,57916,6859,"[\""Headphones\""]",335.2,"{\""promo\"": \""8%\""}",228322,0,"""North America""" +2024-06-06,57917,4487,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4645.91,"{\""loyalty\"": \""27%\""}",79664,0,"""Asia""" +2024-01-24,57918,8469,"[\""Laptop\""]",4768.28,"{\""seasonal\"": \""14%\""}",107299,1,"""South America""" +2023-08-24,57919,8172,"[\""Charger\""]",2162.07,"{\""loyalty\"": \""12%\""}",166999,0,"""Asia""" +2024-10-02,57920,6985,"[\""Charger\"", \""Laptop\""]",4430.32,"{\""promo\"": \""17%\""}",85568,0,"""South America""" +2024-07-07,57921,9313,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",693.5,{},75569,0,"""North America""" +2024-08-01,57922,6941,"[\""Phone\""]",1407.81,{},264910,0,"""Europe""" +2024-05-17,57923,7399,"[\""Charger\"", \""Monitor\""]",1872.06,{},265642,0,"""Europe""" +2023-05-01,57924,8095,"[\""Monitor\""]",230.6,"{\"": \""15%\""}",154335,0,"""North America""" +2024-09-15,57925,2801,"[\""Monitor\""]",4676.73,"{\"": \""21%\""}",173917,1,"""Europe""" +2023-10-04,57926,6481,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2517.11,"{\""seasonal\"": \""27%\""}",116354,0,"""North America""" +2024-03-15,57927,1276,"[\""Wireless Mouse\"", \""Keyboard\""]",2262.58,"{\""promo\"": \""18%\""}",52994,1,"""Europe""" +2024-12-23,57928,9531,"[\""Charger\"", \""Phone\""]",4816.17,"{\""seasonal\"": \""26%\""}",237201,0,"""Europe""" +2023-01-07,57929,3034,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2943.39,"{\""seasonal\"": \""11%\""}",215363,1,"""Africa""" +2023-10-26,57930,9773,"[\""Phone\"", \""Tablet\""]",4205.85,{},160092,0,"""South America""" +2023-01-27,57931,1067,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",647.15,{},251251,1,"""North America""" +2024-01-05,57932,599,"[\""Tablet\""]",1758.21,{},267586,0,"""Africa""" +2023-01-17,57933,6848,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2936.98,"{\""promo\"": \""29%\""}",26408,1,"""North America""" +2023-03-05,57934,2004,"[\""Charger\"", \""Tablet\""]",2112.63,{},259063,0,"""North America""" +2023-03-01,57935,8342,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4802.44,"{\"": \""18%\""}",57194,1,"""Europe""" +2023-07-08,57936,4513,"[\""Laptop\""]",3309.2,"{\"": \""10%\""}",80439,0,"""Africa""" +2024-04-08,57937,9498,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2680.89,{},174704,0,"""Asia""" +2023-02-21,57938,7443,"[\""Headphones\""]",3434.62,"{\"": \""26%\""}",262205,0,"""South America""" +2024-05-12,57939,3440,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2458.99,"{\"": \""9%\""}",273358,1,"""Asia""" +2023-07-31,57940,1722,"[\""Tablet\"", \""Phone\""]",1032.5,{},18850,0,"""Europe""" +2024-08-03,57941,4718,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2187.46,"{\""promo\"": \""12%\""}",90984,1,"""North America""" +2023-04-21,57942,3247,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4385.65,"{\""promo\"": \""17%\""}",262826,0,"""South America""" +2023-04-03,57943,3596,"[\""Wireless Mouse\""]",466.17,"{\""promo\"": \""9%\""}",238904,1,"""North America""" +2023-07-24,57944,5023,"[\""Wireless Mouse\""]",406.73,"{\""promo\"": \""30%\""}",15390,0,"""Asia""" +2024-06-15,57945,620,"[\""Tablet\""]",4652.21,"{\""loyalty\"": \""22%\""}",143760,1,"""Africa""" +2024-06-09,57946,904,"[\""Monitor\""]",2163.56,"{\""seasonal\"": \""18%\""}",131773,1,"""South America""" +2023-04-17,57947,3075,"[\""Keyboard\"", \""Monitor\""]",1134.77,{},162838,0,"""North America""" +2024-10-04,57948,2798,"[\""Headphones\"", \""Monitor\""]",1369.21,{},121392,0,"""Europe""" +2024-06-03,57949,3777,"[\""Tablet\""]",2990.79,{},133583,0,"""South America""" +2024-09-16,57950,2896,"[\""Laptop\"", \""Tablet\""]",1803.2,{},257674,1,"""North America""" +2023-12-24,57951,4723,"[\""Phone\""]",4704.02,"{\""promo\"": \""21%\""}",251150,1,"""Asia""" +2024-04-08,57952,6620,"[\""Wireless Mouse\"", \""Headphones\""]",3047.44,"{\"": \""10%\""}",239512,1,"""Europe""" +2024-09-21,57953,6029,"[\""Charger\"", \""Headphones\"", \""Phone\""]",824.65,"{\""seasonal\"": \""9%\""}",156567,1,"""Africa""" +2024-12-11,57954,1426,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1645.88,"{\""seasonal\"": \""17%\""}",113907,1,"""Africa""" +2023-05-07,57955,4817,"[\""Tablet\""]",3053.34,"{\""seasonal\"": \""9%\""}",103580,0,"""Asia""" +2024-03-29,57956,9685,"[\""Phone\"", \""Headphones\""]",2635.83,{},260603,0,"""Europe""" +2024-08-28,57957,5104,"[\""Monitor\"", \""Laptop\""]",2019.12,"{\"": \""28%\""}",2381,1,"""Europe""" +2023-02-22,57958,9924,"[\""Keyboard\"", \""Wireless Mouse\""]",3418.86,{},191682,1,"""Europe""" +2023-04-16,57959,7383,"[\""Keyboard\""]",4941.74,{},36928,1,"""Europe""" +2023-02-26,57960,3159,"[\""Laptop\""]",1212.83,{},282915,1,"""Africa""" +2023-10-03,57961,7403,"[\""Phone\"", \""Wireless Mouse\""]",4726.38,{},264693,1,"""Europe""" +2023-01-26,57962,2851,"[\""Headphones\"", \""Laptop\""]",1964.08,{},202354,1,"""Africa""" +2024-01-23,57963,6381,"[\""Keyboard\"", \""Monitor\""]",3036.6,"{\""seasonal\"": \""10%\""}",174017,1,"""Africa""" +2024-01-08,57964,9241,"[\""Phone\"", \""Tablet\""]",4148.51,{},38957,0,"""Africa""" +2023-03-15,57965,8360,"[\""Phone\"", \""Laptop\""]",2331.04,"{\"": \""18%\""}",230631,1,"""Asia""" +2023-02-15,57966,9559,"[\""Headphones\""]",4597.22,"{\""seasonal\"": \""24%\""}",7274,0,"""Europe""" +2023-12-09,57967,9721,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2141.97,{},183262,0,"""Europe""" +2024-10-07,57968,3734,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3982.26,"{\""promo\"": \""22%\""}",284052,1,"""Africa""" +2023-08-02,57969,772,"[\""Headphones\"", \""Laptop\""]",2029.76,"{\""seasonal\"": \""26%\""}",268088,0,"""North America""" +2023-10-31,57970,7358,"[\""Headphones\""]",3236.59,{},215115,1,"""Asia""" +2024-07-23,57971,819,"[\""Keyboard\"", \""Monitor\""]",2225.83,"{\""loyalty\"": \""28%\""}",233222,1,"""North America""" +2024-04-24,57972,4054,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",72.93,"{\""loyalty\"": \""24%\""}",262658,0,"""South America""" +2024-01-10,57973,3392,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",187.09,{},229484,1,"""Europe""" +2024-02-08,57974,9142,"[\""Phone\"", \""Wireless Mouse\""]",4781.42,{},18039,0,"""North America""" +2024-07-16,57975,9611,"[\""Phone\"", \""Wireless Mouse\""]",1370.61,{},11087,0,"""Europe""" +2024-12-30,57976,8011,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1155.19,"{\"": \""11%\""}",135033,1,"""Europe""" +2024-07-19,57977,2947,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1880.23,"{\""promo\"": \""29%\""}",89409,0,"""Europe""" +2023-08-07,57978,8438,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2090.4,"{\""seasonal\"": \""22%\""}",127736,0,"""South America""" +2023-10-09,57979,8207,"[\""Laptop\"", \""Charger\""]",3381.23,{},125349,0,"""Asia""" +2023-02-14,57980,8419,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1554.34,"{\""loyalty\"": \""23%\""}",281688,0,"""South America""" +2023-10-21,57981,3103,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",714.44,{},19725,1,"""Asia""" +2023-05-10,57982,2370,"[\""Wireless Mouse\""]",958.6,"{\""promo\"": \""29%\""}",162940,0,"""Europe""" +2024-10-26,57983,6794,"[\""Charger\""]",369.71,"{\""promo\"": \""12%\""}",63994,0,"""South America""" +2024-07-05,57984,3986,"[\""Monitor\""]",4592.32,{},261506,0,"""Africa""" +2024-01-12,57985,1398,"[\""Tablet\"", \""Wireless Mouse\""]",528.21,"{\""seasonal\"": \""15%\""}",279936,1,"""Africa""" +2024-12-18,57986,2705,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4092.73,"{\""seasonal\"": \""26%\""}",185094,1,"""North America""" +2024-01-28,57987,4930,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3218.01,"{\""promo\"": \""19%\""}",279454,1,"""Asia""" +2024-04-29,57988,1598,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4617.16,{},282480,1,"""Africa""" +2024-12-19,57989,4720,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1959.36,"{\""promo\"": \""30%\""}",292604,1,"""Africa""" +2023-03-06,57990,2286,"[\""Wireless Mouse\"", \""Laptop\""]",1046.89,"{\""seasonal\"": \""19%\""}",289656,1,"""North America""" +2024-09-13,57991,516,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2642.36,"{\""seasonal\"": \""21%\""}",18970,0,"""Asia""" +2023-10-31,57992,6777,"[\""Wireless Mouse\"", \""Tablet\""]",2202.61,{},239411,1,"""Europe""" +2023-01-05,57993,9244,"[\""Keyboard\""]",285.61,{},10391,0,"""Europe""" +2024-04-03,57994,9442,"[\""Phone\"", \""Headphones\""]",1744.1,{},19456,0,"""Europe""" +2023-01-28,57995,8497,"[\""Monitor\""]",1697.97,"{\""promo\"": \""14%\""}",243156,1,"""North America""" +2023-11-11,57996,9411,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2533.62,{},64817,0,"""Asia""" +2024-01-11,57997,606,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4290.36,"{\""loyalty\"": \""23%\""}",34099,0,"""South America""" +2023-02-04,57998,4578,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3177.55,"{\""loyalty\"": \""30%\""}",70013,0,"""Asia""" +2023-04-07,57999,781,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2211.24,"{\""loyalty\"": \""30%\""}",169440,0,"""Asia""" +2023-07-10,58000,1501,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1337.36,{},42394,1,"""North America""" +2024-02-02,58001,6647,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1493.02,"{\""loyalty\"": \""18%\""}",49934,0,"""North America""" +2023-03-05,58002,9122,"[\""Phone\"", \""Laptop\""]",2871.44,"{\"": \""27%\""}",113867,1,"""Europe""" +2024-06-15,58003,7309,"[\""Wireless Mouse\""]",3650.9,{},76583,1,"""South America""" +2023-10-30,58004,7369,"[\""Monitor\"", \""Tablet\""]",4969.11,"{\""seasonal\"": \""21%\""}",163864,1,"""South America""" +2024-01-10,58005,8917,"[\""Laptop\""]",4737.11,{},66724,0,"""Asia""" +2023-08-26,58006,2684,"[\""Phone\"", \""Laptop\""]",3680.05,"{\""seasonal\"": \""19%\""}",64252,1,"""Europe""" +2023-01-07,58007,7140,"[\""Phone\"", \""Charger\""]",2938.86,{},101192,1,"""South America""" +2023-04-22,58008,2821,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",904.66,{},21012,1,"""South America""" +2024-01-15,58009,3019,"[\""Monitor\""]",1847.74,"{\""promo\"": \""27%\""}",150869,1,"""North America""" +2024-08-15,58010,2215,"[\""Wireless Mouse\""]",923.59,{},138196,0,"""North America""" +2024-02-02,58011,6528,"[\""Keyboard\""]",2630.17,"{\""loyalty\"": \""21%\""}",261354,0,"""South America""" +2024-12-05,58012,7825,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",965.21,"{\""promo\"": \""9%\""}",187024,0,"""Asia""" +2023-07-07,58013,6717,"[\""Tablet\""]",647.33,"{\""seasonal\"": \""22%\""}",56975,1,"""North America""" +2024-11-09,58014,362,"[\""Charger\"", \""Laptop\""]",1573.59,{},153897,1,"""Asia""" +2024-08-15,58015,4481,"[\""Headphones\"", \""Laptop\""]",3894.33,{},223157,1,"""Europe""" +2023-09-04,58016,4226,"[\""Laptop\"", \""Monitor\""]",2287.82,"{\""seasonal\"": \""9%\""}",299503,1,"""Asia""" +2024-11-27,58017,5838,"[\""Phone\""]",1157.84,{},58343,1,"""South America""" +2023-10-15,58018,4295,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4483.53,"{\""loyalty\"": \""19%\""}",186817,0,"""North America""" +2023-05-05,58019,7475,"[\""Wireless Mouse\"", \""Keyboard\""]",3794.56,{},240888,0,"""Asia""" +2023-08-06,58020,1566,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2748.19,{},271940,1,"""Africa""" +2023-08-24,58021,5698,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1264.21,{},188759,0,"""Asia""" +2023-10-13,58022,9807,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2730.51,{},194680,1,"""South America""" +2023-01-20,58023,9990,"[\""Monitor\"", \""Phone\""]",860.35,{},226592,1,"""Africa""" +2024-06-26,58024,6320,"[\""Keyboard\"", \""Phone\""]",3178.23,{},284875,0,"""North America""" +2024-10-04,58025,6087,"[\""Laptop\"", \""Charger\""]",3314.69,{},45046,0,"""Europe""" +2023-11-06,58026,1486,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3655.43,{},192995,1,"""Europe""" +2024-10-05,58027,2118,"[\""Headphones\"", \""Tablet\""]",251.11,"{\""promo\"": \""19%\""}",226572,1,"""Africa""" +2023-01-13,58028,8951,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2878.3,{},263733,0,"""Africa""" +2024-10-31,58029,4803,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3995.22,{},294114,0,"""North America""" +2023-03-28,58030,4897,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3432.98,"{\"": \""8%\""}",254326,0,"""South America""" +2024-05-27,58031,4250,"[\""Laptop\"", \""Keyboard\""]",2207.32,"{\"": \""22%\""}",12612,0,"""North America""" +2024-10-24,58032,6340,"[\""Charger\""]",3785.29,"{\""loyalty\"": \""17%\""}",181602,0,"""Asia""" +2023-11-15,58033,2151,"[\""Laptop\"", \""Keyboard\""]",2599.56,{},40646,0,"""Europe""" +2023-09-25,58034,9526,"[\""Headphones\""]",3405.89,"{\"": \""22%\""}",254083,0,"""South America""" +2024-07-15,58035,3988,"[\""Laptop\"", \""Phone\""]",1767.14,"{\""seasonal\"": \""11%\""}",71205,0,"""Asia""" +2024-10-08,58036,8762,"[\""Phone\"", \""Monitor\""]",2974.13,"{\""promo\"": \""28%\""}",135166,0,"""Africa""" +2023-01-16,58037,4561,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1167.48,{},257930,1,"""Europe""" +2024-07-07,58038,5248,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2319.35,{},154594,1,"""South America""" +2024-03-01,58039,3631,"[\""Wireless Mouse\"", \""Laptop\""]",2705.08,{},255528,0,"""Europe""" +2024-04-17,58040,3303,"[\""Tablet\"", \""Laptop\""]",1249.25,{},20883,0,"""North America""" +2023-11-04,58041,6754,"[\""Charger\"", \""Keyboard\""]",1795.66,{},26326,1,"""South America""" +2024-05-05,58042,1722,"[\""Keyboard\"", \""Monitor\""]",1849.85,"{\""loyalty\"": \""24%\""}",184391,1,"""Europe""" +2024-04-21,58043,125,"[\""Wireless Mouse\""]",2199.47,{},279895,0,"""Europe""" +2024-04-08,58044,6401,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",413.6,"{\""loyalty\"": \""8%\""}",145313,1,"""South America""" +2024-05-26,58045,967,"[\""Keyboard\"", \""Wireless Mouse\""]",1440.55,"{\""seasonal\"": \""12%\""}",126632,0,"""Asia""" +2024-07-08,58046,4026,"[\""Wireless Mouse\""]",3620.71,"{\""loyalty\"": \""29%\""}",12245,1,"""Europe""" +2023-12-27,58047,7150,"[\""Headphones\"", \""Laptop\""]",2858.04,{},73545,1,"""North America""" +2024-02-26,58048,6932,"[\""Headphones\"", \""Keyboard\""]",2123.87,{},82449,1,"""South America""" +2023-06-05,58049,5655,"[\""Monitor\"", \""Charger\""]",3577.1,{},2787,1,"""Europe""" +2023-06-23,58050,9375,"[\""Laptop\"", \""Wireless Mouse\""]",4322.83,"{\""loyalty\"": \""29%\""}",132457,0,"""Europe""" +2023-09-04,58051,1761,"[\""Headphones\"", \""Phone\""]",3290.19,{},96448,1,"""North America""" +2024-07-19,58052,100,"[\""Monitor\""]",2729.53,{},247085,0,"""Africa""" +2024-01-21,58053,2965,"[\""Wireless Mouse\""]",1611.68,"{\""loyalty\"": \""28%\""}",70208,1,"""Europe""" +2024-02-25,58054,9318,"[\""Keyboard\""]",2079.93,{},190868,1,"""South America""" +2024-09-26,58055,633,"[\""Wireless Mouse\""]",2764.66,"{\""seasonal\"": \""21%\""}",236204,0,"""Asia""" +2024-09-02,58056,591,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2866.5,"{\"": \""20%\""}",25006,1,"""Africa""" +2023-04-29,58057,740,"[\""Charger\""]",494.21,{},160490,0,"""North America""" +2024-07-27,58058,1964,"[\""Phone\""]",653.27,"{\"": \""7%\""}",123672,0,"""Europe""" +2024-08-25,58059,5720,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4080.17,"{\""promo\"": \""29%\""}",24386,1,"""Asia""" +2023-01-17,58060,3765,"[\""Wireless Mouse\"", \""Keyboard\""]",106.79,{},186038,1,"""Asia""" +2023-09-03,58061,4996,"[\""Laptop\""]",1470.77,"{\"": \""24%\""}",116329,1,"""Asia""" +2024-12-16,58062,1867,"[\""Laptop\""]",3682.14,{},229950,1,"""Asia""" +2023-08-30,58063,8824,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1346.49,{},98866,1,"""North America""" +2023-05-21,58064,8131,"[\""Monitor\"", \""Wireless Mouse\""]",1616.1,{},46638,1,"""Africa""" +2023-05-29,58065,3187,"[\""Monitor\"", \""Wireless Mouse\""]",3196.43,"{\""seasonal\"": \""11%\""}",18940,0,"""South America""" +2023-10-04,58066,2081,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4530.66,{},82877,0,"""Asia""" +2023-10-11,58067,8354,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4163.56,"{\"": \""15%\""}",84351,0,"""South America""" +2024-12-28,58068,2678,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4250.75,{},151265,1,"""Europe""" +2024-11-12,58069,4143,"[\""Monitor\""]",1350.88,{},23608,0,"""Asia""" +2023-12-22,58070,2511,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2038.59,"{\"": \""22%\""}",125161,1,"""South America""" +2024-08-24,58071,3969,"[\""Charger\"", \""Headphones\""]",882.7,"{\""promo\"": \""19%\""}",94583,1,"""North America""" +2024-10-21,58072,4351,"[\""Tablet\""]",2804.87,{},164897,1,"""Europe""" +2023-05-14,58073,4546,"[\""Laptop\""]",2089.98,"{\""seasonal\"": \""29%\""}",267839,0,"""South America""" +2024-03-08,58074,3235,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3621.48,"{\""promo\"": \""18%\""}",236160,1,"""Asia""" +2024-06-24,58075,1440,"[\""Tablet\"", \""Monitor\""]",2214.22,{},156465,1,"""Africa""" +2023-12-29,58076,7816,"[\""Monitor\"", \""Charger\""]",4928.22,{},16800,0,"""Africa""" +2023-10-12,58077,1359,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3366.08,"{\"": \""20%\""}",267097,1,"""Europe""" +2024-10-05,58078,509,"[\""Keyboard\""]",3860.99,"{\""promo\"": \""15%\""}",98031,0,"""Africa""" +2024-10-11,58079,3048,"[\""Keyboard\""]",3199.91,{},154377,0,"""Europe""" +2023-12-20,58080,3825,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2209.84,{},40817,0,"""North America""" +2023-09-08,58081,6281,"[\""Laptop\""]",2870.37,{},5926,1,"""Asia""" +2023-12-04,58082,5430,"[\""Headphones\"", \""Monitor\""]",1969.45,"{\"": \""23%\""}",55551,1,"""North America""" +2024-09-24,58083,509,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4985.72,{},52586,0,"""Europe""" +2024-10-04,58084,7996,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3002.34,"{\""seasonal\"": \""21%\""}",227526,1,"""Africa""" +2024-08-20,58085,298,"[\""Laptop\"", \""Phone\""]",1326.36,{},261444,1,"""Asia""" +2024-02-21,58086,6837,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1874.2,{},102107,1,"""North America""" +2024-01-12,58087,7618,"[\""Keyboard\""]",127.48,"{\"": \""16%\""}",275873,0,"""Asia""" +2024-07-10,58088,8569,"[\""Phone\""]",1387.16,"{\""loyalty\"": \""26%\""}",220380,1,"""Asia""" +2024-06-07,58089,9410,"[\""Wireless Mouse\""]",3679.25,"{\""loyalty\"": \""24%\""}",97278,0,"""Asia""" +2023-11-05,58090,7304,"[\""Laptop\"", \""Tablet\""]",3980.17,{},95968,0,"""North America""" +2024-06-20,58091,5520,"[\""Tablet\"", \""Headphones\""]",4881.42,"{\""promo\"": \""6%\""}",207898,1,"""Europe""" +2024-06-09,58092,5564,"[\""Keyboard\"", \""Tablet\""]",2022.33,{},54662,1,"""Africa""" +2023-04-11,58093,7738,"[\""Keyboard\"", \""Phone\""]",2467.01,{},127283,0,"""South America""" +2023-01-03,58094,4364,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3254.55,{},257386,1,"""Africa""" +2023-07-10,58095,3399,"[\""Charger\""]",4208.08,"{\""promo\"": \""13%\""}",289806,1,"""South America""" +2023-11-19,58096,5118,"[\""Keyboard\""]",3033.59,{},176710,1,"""South America""" +2023-07-31,58097,1629,"[\""Laptop\"", \""Charger\""]",1013.5,"{\""seasonal\"": \""11%\""}",278354,1,"""South America""" +2023-12-14,58098,5209,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2398.79,{},118217,0,"""Africa""" +2023-05-13,58099,3900,"[\""Laptop\"", \""Phone\""]",342.37,{},59754,1,"""Africa""" +2024-11-16,58100,4575,"[\""Monitor\"", \""Keyboard\""]",364.72,{},144404,0,"""Asia""" +2024-09-17,58101,3114,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3342.34,{},113428,0,"""Asia""" +2024-11-04,58102,2571,"[\""Charger\"", \""Phone\""]",2060.93,{},23364,0,"""Africa""" +2024-12-10,58103,5209,"[\""Monitor\"", \""Wireless Mouse\""]",4767.09,{},286570,0,"""South America""" +2023-06-19,58104,1278,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2854.78,"{\""loyalty\"": \""5%\""}",90014,0,"""Europe""" +2024-05-07,58105,4072,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3338.33,{},218729,1,"""Europe""" +2023-09-21,58106,2093,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4088.62,{},213518,0,"""South America""" +2023-12-12,58107,4653,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",713.28,{},100051,1,"""North America""" +2024-03-25,58108,4581,"[\""Charger\""]",1844.13,{},251499,0,"""South America""" +2023-09-12,58109,884,"[\""Monitor\""]",652.65,{},200363,0,"""North America""" +2023-09-20,58110,7859,"[\""Phone\"", \""Charger\""]",2192.12,"{\"": \""22%\""}",247702,0,"""South America""" +2023-09-11,58111,9803,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4028.22,"{\"": \""24%\""}",117288,0,"""South America""" +2023-01-14,58112,9796,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",904.37,"{\""seasonal\"": \""5%\""}",209483,1,"""South America""" +2024-02-28,58113,7192,"[\""Charger\"", \""Monitor\""]",2607.67,{},33066,0,"""South America""" +2024-03-03,58114,9253,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3518.35,"{\""seasonal\"": \""17%\""}",94272,1,"""North America""" +2024-10-24,58115,7308,"[\""Keyboard\""]",1486.79,"{\"": \""6%\""}",52323,0,"""Asia""" +2024-05-15,58116,5556,"[\""Monitor\""]",3963.07,{},83553,1,"""South America""" +2024-03-29,58117,7539,"[\""Phone\""]",366.25,"{\"": \""17%\""}",6490,0,"""North America""" +2024-12-27,58118,3650,"[\""Charger\""]",3191.12,"{\"": \""13%\""}",138326,1,"""Europe""" +2023-04-04,58119,575,"[\""Laptop\"", \""Keyboard\""]",706.52,"{\""seasonal\"": \""6%\""}",177111,0,"""Europe""" +2023-02-04,58120,3367,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1870.32,{},279642,1,"""Europe""" +2023-09-14,58121,3980,"[\""Headphones\"", \""Tablet\""]",3667.29,{},232018,1,"""Africa""" +2024-02-06,58122,8717,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1328.09,{},75310,0,"""Africa""" +2024-01-14,58123,1736,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3799.9,{},33200,0,"""Asia""" +2024-04-05,58124,2186,"[\""Headphones\"", \""Keyboard\""]",649.03,"{\""loyalty\"": \""20%\""}",222470,0,"""Asia""" +2023-09-16,58125,1881,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2584.15,"{\""promo\"": \""12%\""}",119560,0,"""Asia""" +2023-06-14,58126,7849,"[\""Charger\"", \""Laptop\""]",3680.53,"{\""seasonal\"": \""28%\""}",183955,0,"""North America""" +2023-01-15,58127,8807,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4024.48,{},210585,0,"""Africa""" +2023-09-04,58128,9734,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2019.99,{},134605,1,"""North America""" +2024-07-23,58129,1659,"[\""Wireless Mouse\""]",4045.7,{},7931,1,"""Asia""" +2024-08-12,58130,8234,"[\""Wireless Mouse\""]",3811.56,"{\""seasonal\"": \""22%\""}",279627,1,"""Africa""" +2024-09-14,58131,6511,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",84.69,{},149453,0,"""Africa""" +2024-08-02,58132,1082,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4442.67,{},175106,0,"""Europe""" +2023-11-12,58133,6434,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1438.19,"{\""promo\"": \""14%\""}",166593,1,"""Asia""" +2024-05-06,58134,8993,"[\""Phone\"", \""Keyboard\""]",3779.14,{},178969,1,"""South America""" +2024-04-18,58135,3590,"[\""Keyboard\""]",3140.02,{},46049,0,"""Asia""" +2023-01-16,58136,8692,"[\""Charger\"", \""Keyboard\""]",4124.14,{},138264,1,"""North America""" +2024-01-15,58137,4201,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1320.1,"{\""loyalty\"": \""30%\""}",141919,1,"""North America""" +2024-01-22,58138,2932,"[\""Headphones\""]",304.61,{},287600,0,"""Africa""" +2024-09-09,58139,3061,"[\""Headphones\"", \""Phone\""]",4156.77,{},198684,1,"""Africa""" +2023-05-12,58140,2504,"[\""Phone\"", \""Charger\""]",2765.05,"{\""loyalty\"": \""17%\""}",242022,0,"""Africa""" +2023-06-30,58141,1694,"[\""Headphones\"", \""Charger\""]",3430.34,{},41027,1,"""Africa""" +2023-12-08,58142,6157,"[\""Keyboard\"", \""Wireless Mouse\""]",2084.2,"{\""promo\"": \""21%\""}",107214,0,"""Europe""" +2023-03-09,58143,1679,"[\""Phone\"", \""Wireless Mouse\""]",1093.79,"{\""seasonal\"": \""18%\""}",36021,0,"""Europe""" +2023-07-22,58144,3645,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3781.14,"{\""loyalty\"": \""5%\""}",173457,1,"""South America""" +2023-07-07,58145,5462,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3765.77,"{\""promo\"": \""19%\""}",298369,1,"""Africa""" +2024-02-08,58146,3152,"[\""Tablet\""]",4371.59,{},163504,1,"""Europe""" +2023-04-05,58147,5465,"[\""Phone\"", \""Keyboard\""]",3479.95,"{\""seasonal\"": \""22%\""}",32079,1,"""South America""" +2024-03-16,58148,7038,"[\""Tablet\""]",4134.2,{},189411,1,"""Europe""" +2023-11-03,58149,9217,"[\""Monitor\"", \""Laptop\""]",3336.9,"{\"": \""30%\""}",218615,0,"""Asia""" +2023-05-10,58150,9725,"[\""Wireless Mouse\""]",2136.0,"{\""loyalty\"": \""15%\""}",42942,1,"""Africa""" +2024-04-01,58151,2183,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4857.47,"{\""loyalty\"": \""30%\""}",288268,1,"""Africa""" +2024-03-27,58152,8985,"[\""Headphones\"", \""Phone\""]",457.41,{},287185,1,"""Asia""" +2023-04-22,58153,5348,"[\""Wireless Mouse\""]",2484.51,"{\"": \""16%\""}",42479,0,"""Asia""" +2024-05-24,58154,5593,"[\""Headphones\"", \""Keyboard\""]",1206.67,"{\""loyalty\"": \""8%\""}",256585,1,"""Africa""" +2024-06-29,58155,2525,"[\""Wireless Mouse\"", \""Phone\""]",2058.42,{},56472,1,"""North America""" +2023-02-03,58156,1050,"[\""Phone\"", \""Keyboard\""]",2461.32,{},103767,1,"""Africa""" +2023-12-05,58157,4262,"[\""Tablet\"", \""Phone\""]",387.05,"{\""loyalty\"": \""13%\""}",206758,0,"""South America""" +2023-02-26,58158,3919,"[\""Headphones\"", \""Wireless Mouse\""]",1801.28,"{\""promo\"": \""14%\""}",179342,1,"""Europe""" +2024-04-19,58159,5478,"[\""Phone\"", \""Charger\""]",1922.11,"{\""loyalty\"": \""17%\""}",269127,0,"""Asia""" +2024-02-16,58160,9144,"[\""Charger\""]",267.45,"{\"": \""10%\""}",216113,0,"""Europe""" +2023-06-27,58161,7935,"[\""Headphones\""]",1786.05,{},11294,0,"""Africa""" +2023-06-01,58162,2707,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1533.44,{},152523,0,"""South America""" +2024-09-02,58163,301,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4262.59,{},62265,1,"""South America""" +2023-10-01,58164,2976,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3701.84,"{\"": \""30%\""}",135256,1,"""North America""" +2024-11-22,58165,563,"[\""Monitor\"", \""Phone\""]",744.03,"{\"": \""14%\""}",6433,0,"""Europe""" +2023-01-16,58166,4303,"[\""Monitor\"", \""Keyboard\""]",1518.17,{},55195,0,"""Asia""" +2023-04-30,58167,5222,"[\""Keyboard\""]",198.63,"{\""promo\"": \""19%\""}",284313,0,"""South America""" +2024-07-27,58168,2116,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1163.66,{},221109,0,"""Africa""" +2024-03-14,58169,1484,"[\""Phone\""]",4219.94,"{\""loyalty\"": \""12%\""}",82701,0,"""North America""" +2023-01-27,58170,7251,"[\""Laptop\""]",2933.17,{},131120,1,"""Africa""" +2023-07-28,58171,3077,"[\""Tablet\""]",1746.8,"{\""promo\"": \""16%\""}",154329,0,"""Europe""" +2024-10-04,58172,9795,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",313.17,"{\""seasonal\"": \""18%\""}",217982,0,"""Africa""" +2024-04-06,58173,6210,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1637.95,{},222732,0,"""South America""" +2024-02-06,58174,5295,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3940.17,"{\"": \""16%\""}",39895,0,"""Europe""" +2023-01-11,58175,6723,"[\""Charger\""]",3519.83,"{\""promo\"": \""14%\""}",210252,1,"""North America""" +2023-06-18,58176,7168,"[\""Charger\"", \""Monitor\""]",2192.54,"{\""seasonal\"": \""22%\""}",127540,0,"""Asia""" +2024-07-18,58177,2551,"[\""Headphones\"", \""Keyboard\""]",488.96,"{\""promo\"": \""26%\""}",111088,1,"""South America""" +2024-12-24,58178,1141,"[\""Tablet\"", \""Keyboard\""]",1260.46,"{\""loyalty\"": \""15%\""}",98174,1,"""North America""" +2024-07-23,58179,4517,"[\""Headphones\""]",1723.15,"{\""loyalty\"": \""11%\""}",192068,1,"""South America""" +2024-03-23,58180,8024,"[\""Wireless Mouse\"", \""Charger\""]",469.85,{},49674,0,"""North America""" +2023-07-16,58181,6245,"[\""Keyboard\""]",4869.78,"{\""promo\"": \""9%\""}",118430,1,"""Europe""" +2024-12-08,58182,7721,"[\""Wireless Mouse\""]",4365.38,{},114126,0,"""Europe""" +2023-10-29,58183,9625,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1717.18,{},139352,1,"""Africa""" +2023-11-03,58184,895,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2866.8,{},17272,0,"""North America""" +2023-02-01,58185,8074,"[\""Keyboard\""]",462.38,"{\"": \""12%\""}",52537,1,"""South America""" +2023-10-05,58186,1171,"[\""Keyboard\"", \""Monitor\""]",605.14,"{\""promo\"": \""11%\""}",175916,1,"""Europe""" +2024-11-25,58187,3767,"[\""Tablet\"", \""Laptop\""]",4985.1,{},17200,0,"""Asia""" +2023-02-04,58188,4012,"[\""Tablet\""]",2223.28,{},189963,0,"""North America""" +2024-03-30,58189,9398,"[\""Laptop\"", \""Headphones\""]",4688.61,"{\""promo\"": \""25%\""}",287870,1,"""Europe""" +2024-04-05,58190,6170,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",859.11,"{\"": \""19%\""}",9496,0,"""South America""" +2023-10-27,58191,8802,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4416.33,{},84549,1,"""Africa""" +2024-01-19,58192,7736,"[\""Monitor\""]",1520.45,{},299432,1,"""South America""" +2024-12-15,58193,8750,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4915.92,{},27512,1,"""Africa""" +2024-01-21,58194,7268,"[\""Laptop\"", \""Keyboard\""]",3736.33,"{\""promo\"": \""18%\""}",151129,1,"""North America""" +2024-12-08,58195,5050,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3572.98,{},287589,0,"""Asia""" +2024-10-11,58196,1326,"[\""Monitor\"", \""Tablet\""]",3557.83,{},196831,1,"""Asia""" +2023-01-24,58197,1938,"[\""Wireless Mouse\""]",1340.5,"{\""loyalty\"": \""15%\""}",234561,0,"""South America""" +2024-01-15,58198,2959,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2101.98,{},7101,1,"""Asia""" +2023-11-27,58199,6297,"[\""Tablet\"", \""Charger\""]",1127.36,{},292855,0,"""North America""" +2023-01-27,58200,46,"[\""Laptop\""]",155.36,"{\""promo\"": \""28%\""}",231351,1,"""Europe""" +2023-05-22,58201,7704,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3102.76,{},221654,1,"""Asia""" +2024-08-02,58202,7586,"[\""Laptop\"", \""Wireless Mouse\""]",2811.74,{},11369,1,"""Asia""" +2024-03-23,58203,5392,"[\""Keyboard\""]",1593.1,{},96261,1,"""Europe""" +2023-02-26,58204,4159,"[\""Headphones\""]",4907.45,{},213435,0,"""North America""" +2023-06-29,58205,2612,"[\""Tablet\""]",4183.73,{},144681,0,"""Asia""" +2024-04-23,58206,1803,"[\""Tablet\"", \""Headphones\""]",1849.66,"{\""seasonal\"": \""22%\""}",232692,0,"""Africa""" +2023-03-27,58207,7687,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3236.47,"{\""loyalty\"": \""19%\""}",30758,0,"""South America""" +2023-02-14,58208,8542,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",809.44,"{\""loyalty\"": \""12%\""}",207804,1,"""Europe""" +2023-06-08,58209,7393,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1956.15,{},6452,1,"""Africa""" +2024-11-29,58210,1143,"[\""Phone\"", \""Wireless Mouse\""]",833.57,{},206641,0,"""North America""" +2023-10-27,58211,9897,"[\""Laptop\"", \""Keyboard\""]",1498.79,"{\""promo\"": \""11%\""}",167748,1,"""Africa""" +2023-07-04,58212,8731,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4797.75,{},284705,1,"""North America""" +2024-08-16,58213,4250,"[\""Monitor\""]",1221.36,"{\"": \""30%\""}",77775,0,"""North America""" +2024-12-31,58214,5482,"[\""Phone\""]",695.64,"{\""promo\"": \""17%\""}",210317,1,"""North America""" +2023-05-05,58215,2600,"[\""Charger\"", \""Laptop\""]",1516.72,"{\""loyalty\"": \""8%\""}",99609,1,"""Asia""" +2023-08-03,58216,5813,"[\""Headphones\""]",2509.54,{},22371,1,"""Africa""" +2023-05-25,58217,9357,"[\""Keyboard\"", \""Phone\""]",3012.87,"{\""seasonal\"": \""20%\""}",244572,1,"""Africa""" +2024-06-25,58218,7042,"[\""Headphones\"", \""Monitor\""]",3769.19,"{\""seasonal\"": \""15%\""}",34088,1,"""South America""" +2024-09-02,58219,8087,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2544.34,{},240148,1,"""Asia""" +2023-01-09,58220,6482,"[\""Charger\""]",2668.03,{},133516,1,"""Asia""" +2023-07-17,58221,8334,"[\""Charger\"", \""Monitor\"", \""Phone\""]",556.51,{},205222,0,"""Asia""" +2024-11-29,58222,2467,"[\""Monitor\"", \""Tablet\""]",1053.57,{},75965,0,"""Europe""" +2024-01-26,58223,2101,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1379.8,"{\""loyalty\"": \""16%\""}",273513,0,"""South America""" +2024-12-08,58224,8923,"[\""Tablet\"", \""Wireless Mouse\""]",4913.61,"{\""loyalty\"": \""30%\""}",19795,0,"""Asia""" +2023-04-17,58225,2316,"[\""Wireless Mouse\"", \""Monitor\""]",1052.27,"{\"": \""16%\""}",244312,1,"""Africa""" +2024-10-20,58226,2744,"[\""Phone\""]",3914.25,"{\""seasonal\"": \""11%\""}",141748,1,"""Africa""" +2023-11-28,58227,6453,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3784.71,"{\""loyalty\"": \""17%\""}",194036,0,"""Asia""" +2024-09-03,58228,5873,"[\""Tablet\""]",2655.72,"{\""loyalty\"": \""15%\""}",268106,0,"""South America""" +2023-04-19,58229,5786,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",109.72,{},136408,0,"""Asia""" +2024-04-08,58230,8781,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4213.12,{},167185,0,"""Asia""" +2023-07-06,58231,6480,"[\""Phone\"", \""Tablet\""]",2622.56,"{\""promo\"": \""6%\""}",35976,0,"""Asia""" +2024-01-17,58232,6141,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3246.21,"{\""promo\"": \""13%\""}",25861,1,"""North America""" +2023-12-12,58233,1566,"[\""Tablet\""]",2907.33,"{\""loyalty\"": \""9%\""}",280921,0,"""Europe""" +2023-06-12,58234,5808,"[\""Phone\"", \""Laptop\""]",1191.61,{},67322,0,"""Europe""" +2023-08-26,58235,5638,"[\""Tablet\"", \""Wireless Mouse\""]",3250.94,{},86902,1,"""South America""" +2023-12-22,58236,7191,"[\""Keyboard\"", \""Tablet\""]",4460.57,{},230613,1,"""South America""" +2024-08-08,58237,6609,"[\""Headphones\"", \""Keyboard\""]",3119.6,"{\"": \""16%\""}",298980,0,"""Europe""" +2024-04-29,58238,913,"[\""Phone\"", \""Keyboard\""]",4943.85,"{\""promo\"": \""5%\""}",243284,1,"""Asia""" +2023-01-12,58239,735,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4105.3,{},117940,1,"""Asia""" +2023-12-15,58240,6516,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2250.7,"{\""seasonal\"": \""11%\""}",257496,0,"""North America""" +2023-04-10,58241,4327,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",289.35,"{\""promo\"": \""28%\""}",294802,0,"""North America""" +2023-04-20,58242,8596,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1063.69,"{\"": \""20%\""}",222542,1,"""South America""" +2024-11-10,58243,3956,"[\""Wireless Mouse\""]",709.55,"{\""loyalty\"": \""12%\""}",101345,1,"""Africa""" +2024-04-17,58244,9556,"[\""Charger\""]",4691.73,"{\""seasonal\"": \""5%\""}",288371,1,"""Africa""" +2024-09-01,58245,6017,"[\""Keyboard\""]",2222.05,"{\"": \""30%\""}",17514,1,"""Africa""" +2023-08-05,58246,9852,"[\""Wireless Mouse\"", \""Laptop\""]",3080.69,"{\""loyalty\"": \""20%\""}",212525,1,"""North America""" +2024-08-30,58247,5131,"[\""Charger\"", \""Laptop\""]",3591.88,"{\""loyalty\"": \""6%\""}",238745,0,"""Asia""" +2024-05-24,58248,2032,"[\""Headphones\""]",612.09,{},280720,0,"""Africa""" +2023-04-08,58249,563,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1437.76,{},269672,1,"""North America""" +2023-03-24,58250,157,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4691.26,{},89988,1,"""North America""" +2023-01-29,58251,8223,"[\""Keyboard\"", \""Tablet\""]",3486.68,{},158956,0,"""Asia""" +2024-09-20,58252,9955,"[\""Tablet\"", \""Laptop\""]",2484.98,"{\""seasonal\"": \""24%\""}",159017,0,"""Asia""" +2023-09-28,58253,5072,"[\""Charger\""]",2892.17,{},211744,0,"""Africa""" +2024-12-22,58254,7342,"[\""Headphones\"", \""Keyboard\""]",4233.19,"{\"": \""22%\""}",48917,1,"""Africa""" +2023-07-26,58255,8236,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3554.92,"{\"": \""19%\""}",20172,0,"""Europe""" +2024-10-03,58256,4192,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2097.59,"{\""promo\"": \""12%\""}",129362,1,"""South America""" +2023-01-21,58257,3873,"[\""Laptop\""]",2107.9,{},204660,1,"""North America""" +2023-04-11,58258,9258,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4296.8,"{\""loyalty\"": \""12%\""}",271528,1,"""Europe""" +2024-11-28,58259,5075,"[\""Monitor\""]",2327.17,"{\""seasonal\"": \""17%\""}",99504,0,"""Asia""" +2024-11-08,58260,4961,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2324.27,"{\""seasonal\"": \""23%\""}",118474,1,"""South America""" +2024-01-06,58261,7918,"[\""Tablet\"", \""Keyboard\""]",1034.82,{},154310,0,"""Africa""" +2023-02-02,58262,1854,"[\""Phone\""]",1066.13,{},24418,1,"""Europe""" +2023-10-29,58263,9734,"[\""Charger\"", \""Wireless Mouse\""]",1229.52,"{\"": \""23%\""}",97288,1,"""Asia""" +2023-03-21,58264,5978,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1020.99,{},109838,0,"""Africa""" +2023-03-12,58265,7595,"[\""Charger\"", \""Headphones\""]",1262.32,"{\""seasonal\"": \""23%\""}",47445,0,"""North America""" +2023-03-17,58266,5275,"[\""Phone\"", \""Laptop\""]",3012.53,{},260497,1,"""North America""" +2023-02-14,58267,3178,"[\""Tablet\""]",181.75,{},83602,0,"""Asia""" +2024-11-06,58268,8755,"[\""Charger\"", \""Monitor\""]",4692.38,{},274701,1,"""North America""" +2024-07-16,58269,9983,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4916.93,"{\""loyalty\"": \""8%\""}",45519,0,"""North America""" +2024-12-03,58270,8800,"[\""Keyboard\""]",4755.13,{},205952,0,"""Europe""" +2023-09-05,58271,8036,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3736.78,{},37800,1,"""Europe""" +2023-01-22,58272,392,"[\""Charger\""]",2124.48,"{\""loyalty\"": \""28%\""}",117134,0,"""Africa""" +2024-05-08,58273,6793,"[\""Tablet\"", \""Headphones\""]",1781.42,"{\""loyalty\"": \""13%\""}",263017,1,"""Asia""" +2023-02-11,58274,7486,"[\""Headphones\""]",296.24,"{\""seasonal\"": \""24%\""}",223401,1,"""Asia""" +2023-02-19,58275,3363,"[\""Wireless Mouse\""]",2613.0,{},90031,1,"""Europe""" +2023-09-24,58276,991,"[\""Wireless Mouse\"", \""Charger\""]",1787.91,{},16914,0,"""North America""" +2024-02-22,58277,5533,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1898.85,{},55839,0,"""Asia""" +2024-06-11,58278,5077,"[\""Charger\""]",950.63,"{\""seasonal\"": \""12%\""}",266672,1,"""Europe""" +2023-08-19,58279,6268,"[\""Phone\"", \""Tablet\""]",4365.89,"{\"": \""18%\""}",51435,0,"""Asia""" +2023-07-02,58280,2933,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2216.4,"{\""promo\"": \""9%\""}",72148,0,"""Asia""" +2024-10-07,58281,2647,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2939.12,"{\""loyalty\"": \""14%\""}",14250,1,"""Africa""" +2023-03-11,58282,1179,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4502.82,"{\""loyalty\"": \""22%\""}",6912,0,"""North America""" +2023-03-25,58283,8621,"[\""Tablet\""]",127.24,"{\""promo\"": \""23%\""}",171272,1,"""Asia""" +2024-08-24,58284,1929,"[\""Wireless Mouse\""]",4259.27,"{\""seasonal\"": \""10%\""}",296068,0,"""South America""" +2023-02-27,58285,1340,"[\""Charger\"", \""Laptop\""]",56.64,"{\""promo\"": \""13%\""}",211296,0,"""Europe""" +2024-08-22,58286,3990,"[\""Headphones\"", \""Tablet\""]",3328.96,"{\""loyalty\"": \""5%\""}",49019,0,"""Africa""" +2023-01-03,58287,3917,"[\""Phone\"", \""Monitor\""]",4271.66,{},200150,0,"""South America""" +2023-09-20,58288,4684,"[\""Wireless Mouse\""]",4964.49,"{\""seasonal\"": \""23%\""}",205555,0,"""South America""" +2023-09-17,58289,1975,"[\""Wireless Mouse\""]",2377.52,"{\"": \""25%\""}",95671,0,"""Europe""" +2023-05-27,58290,4727,"[\""Monitor\""]",3928.99,{},214944,1,"""South America""" +2023-08-14,58291,5530,"[\""Keyboard\""]",213.69,{},229328,1,"""South America""" +2024-10-24,58292,7691,"[\""Monitor\"", \""Charger\""]",1667.09,{},220431,1,"""Europe""" +2023-04-22,58293,5285,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1294.01,"{\""loyalty\"": \""13%\""}",18604,0,"""Asia""" +2023-03-29,58294,8477,"[\""Phone\""]",4455.1,{},34719,1,"""South America""" +2023-08-07,58295,482,"[\""Wireless Mouse\""]",1014.46,"{\""loyalty\"": \""27%\""}",96001,0,"""Africa""" +2024-09-11,58296,7400,"[\""Wireless Mouse\"", \""Monitor\""]",1543.47,"{\""loyalty\"": \""30%\""}",202515,0,"""North America""" +2024-12-18,58297,715,"[\""Laptop\""]",3893.21,"{\""loyalty\"": \""11%\""}",256896,1,"""North America""" +2023-05-31,58298,321,"[\""Monitor\""]",1392.84,"{\""loyalty\"": \""22%\""}",96002,1,"""Africa""" +2023-12-29,58299,3764,"[\""Monitor\"", \""Laptop\""]",3097.56,"{\""promo\"": \""29%\""}",191291,1,"""Africa""" +2024-03-27,58300,2166,"[\""Keyboard\"", \""Tablet\""]",3740.03,"{\"": \""15%\""}",249056,0,"""North America""" +2023-10-04,58301,7633,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1298.65,"{\"": \""16%\""}",5451,0,"""Africa""" +2023-07-14,58302,5839,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2060.09,{},271000,0,"""South America""" +2023-02-11,58303,7870,"[\""Headphones\""]",1293.8,"{\""seasonal\"": \""19%\""}",251553,1,"""Asia""" +2024-08-02,58304,3730,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2595.91,{},21967,1,"""South America""" +2023-03-05,58305,6345,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1779.33,{},299785,1,"""Europe""" +2024-10-04,58306,3518,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4815.21,{},1116,1,"""Africa""" +2024-02-04,58307,4020,"[\""Headphones\""]",4388.15,{},257249,1,"""North America""" +2024-12-06,58308,6185,"[\""Wireless Mouse\""]",3211.78,"{\""promo\"": \""28%\""}",135901,0,"""Europe""" +2024-07-03,58309,6220,"[\""Tablet\""]",3430.16,{},118463,0,"""South America""" +2023-12-30,58310,9141,"[\""Wireless Mouse\"", \""Charger\""]",883.27,"{\""seasonal\"": \""10%\""}",135923,1,"""Africa""" +2023-12-09,58311,9748,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3330.47,"{\""loyalty\"": \""23%\""}",50210,1,"""Asia""" +2023-10-23,58312,8609,"[\""Phone\""]",502.63,{},245133,0,"""Asia""" +2024-12-27,58313,9329,"[\""Monitor\""]",3151.58,{},230968,1,"""Asia""" +2023-12-08,58314,9059,"[\""Phone\"", \""Keyboard\""]",1824.38,"{\""seasonal\"": \""24%\""}",261885,0,"""South America""" +2023-03-19,58315,327,"[\""Phone\""]",460.66,"{\"": \""30%\""}",80515,1,"""South America""" +2024-08-20,58316,195,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1234.98,{},275669,0,"""Africa""" +2024-04-23,58317,8579,"[\""Monitor\"", \""Phone\""]",622.04,{},227175,1,"""Europe""" +2023-02-08,58318,4993,"[\""Wireless Mouse\""]",1416.46,"{\""promo\"": \""12%\""}",51553,1,"""Europe""" +2024-01-04,58319,9323,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",806.71,{},280098,1,"""South America""" +2024-02-03,58320,7413,"[\""Charger\"", \""Keyboard\""]",3646.21,"{\""seasonal\"": \""13%\""}",56713,1,"""North America""" +2023-04-15,58321,6274,"[\""Phone\""]",4547.68,"{\""seasonal\"": \""12%\""}",259659,0,"""Europe""" +2023-08-09,58322,2851,"[\""Laptop\"", \""Keyboard\""]",2904.4,"{\""loyalty\"": \""9%\""}",95256,0,"""North America""" +2024-07-13,58323,3111,"[\""Tablet\"", \""Headphones\""]",4162.48,"{\""loyalty\"": \""17%\""}",149318,1,"""Africa""" +2023-07-14,58324,6697,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3911.49,"{\""loyalty\"": \""22%\""}",143787,0,"""Asia""" +2024-06-17,58325,5119,"[\""Tablet\"", \""Monitor\""]",4862.05,"{\""seasonal\"": \""21%\""}",272226,1,"""South America""" +2023-08-04,58326,6838,"[\""Laptop\"", \""Headphones\""]",1063.16,{},120796,1,"""Asia""" +2024-10-22,58327,2321,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4704.54,{},76059,1,"""Asia""" +2024-02-19,58328,2704,"[\""Keyboard\""]",4856.38,"{\""promo\"": \""16%\""}",291256,0,"""Africa""" +2023-08-09,58329,3762,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4257.94,{},129429,0,"""South America""" +2023-09-15,58330,3991,"[\""Phone\"", \""Wireless Mouse\""]",2722.95,{},216699,0,"""Africa""" +2023-12-05,58331,4594,"[\""Headphones\"", \""Wireless Mouse\""]",153.86,"{\""seasonal\"": \""22%\""}",26633,1,"""Asia""" +2024-03-29,58332,421,"[\""Wireless Mouse\"", \""Tablet\""]",4660.89,"{\""promo\"": \""17%\""}",171314,1,"""South America""" +2024-05-14,58333,9938,"[\""Keyboard\"", \""Wireless Mouse\""]",1186.11,{},197432,1,"""South America""" +2024-06-01,58334,8353,"[\""Tablet\""]",1390.84,"{\""seasonal\"": \""12%\""}",210707,0,"""North America""" +2024-11-21,58335,6727,"[\""Laptop\"", \""Phone\""]",3395.58,"{\""seasonal\"": \""19%\""}",179289,0,"""Asia""" +2024-02-18,58336,4072,"[\""Tablet\""]",4449.18,"{\""promo\"": \""28%\""}",16780,1,"""North America""" +2023-03-19,58337,5524,"[\""Keyboard\""]",1818.36,"{\""loyalty\"": \""23%\""}",265481,1,"""Asia""" +2024-10-18,58338,8134,"[\""Phone\"", \""Laptop\""]",2481.08,{},292693,1,"""Africa""" +2023-10-02,58339,7203,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2990.25,"{\""loyalty\"": \""27%\""}",207042,0,"""South America""" +2023-01-14,58340,7689,"[\""Laptop\"", \""Headphones\""]",4079.28,{},277830,0,"""Europe""" +2023-12-05,58341,4234,"[\""Wireless Mouse\""]",338.16,{},183815,0,"""Africa""" +2024-06-22,58342,4920,"[\""Tablet\""]",3139.66,"{\""promo\"": \""28%\""}",31284,1,"""Africa""" +2024-04-07,58343,5213,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1359.34,"{\""promo\"": \""30%\""}",196138,0,"""Africa""" +2024-03-27,58344,1782,"[\""Tablet\""]",4175.5,"{\""promo\"": \""21%\""}",129082,0,"""Asia""" +2024-04-11,58345,8710,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1662.76,{},111508,1,"""Asia""" +2023-01-12,58346,2642,"[\""Laptop\""]",1497.32,{},20546,0,"""Asia""" +2023-01-08,58347,8656,"[\""Charger\""]",3840.86,{},80569,1,"""South America""" +2023-03-10,58348,2878,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",885.05,{},175591,1,"""Africa""" +2024-04-10,58349,8973,"[\""Laptop\""]",2209.49,"{\""promo\"": \""7%\""}",250403,0,"""North America""" +2024-04-04,58350,333,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4131.54,"{\""promo\"": \""6%\""}",21832,0,"""North America""" +2023-05-29,58351,6908,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3436.28,"{\"": \""15%\""}",140132,0,"""Asia""" +2023-03-23,58352,57,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",764.65,"{\""promo\"": \""6%\""}",150666,0,"""Asia""" +2024-12-29,58353,3043,"[\""Tablet\""]",1783.3,{},266243,1,"""South America""" +2024-07-02,58354,5108,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4159.38,{},169045,0,"""North America""" +2023-10-24,58355,6816,"[\""Phone\"", \""Laptop\""]",1990.16,{},60224,0,"""Africa""" +2023-09-10,58356,8655,"[\""Monitor\"", \""Phone\""]",2859.74,"{\"": \""23%\""}",126703,0,"""South America""" +2024-07-23,58357,6547,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4832.62,"{\"": \""9%\""}",122377,0,"""Europe""" +2024-01-17,58358,590,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4411.17,"{\"": \""9%\""}",228128,0,"""Europe""" +2024-03-14,58359,6009,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2968.44,"{\""loyalty\"": \""24%\""}",128414,0,"""North America""" +2023-06-18,58360,147,"[\""Tablet\""]",777.89,{},172037,0,"""North America""" +2023-03-01,58361,9441,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",167.25,"{\""loyalty\"": \""11%\""}",130603,0,"""Europe""" +2023-09-10,58362,6254,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",850.15,"{\""seasonal\"": \""29%\""}",274862,1,"""Europe""" +2024-09-27,58363,9285,"[\""Headphones\""]",3040.24,{},50357,0,"""South America""" +2023-10-01,58364,5290,"[\""Laptop\""]",1544.88,"{\""loyalty\"": \""19%\""}",223607,0,"""Africa""" +2024-08-29,58365,8470,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2846.63,{},177386,1,"""Africa""" +2024-04-20,58366,9879,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1316.16,{},46526,0,"""Europe""" +2023-05-08,58367,4485,"[\""Phone\"", \""Monitor\""]",1992.2,"{\"": \""25%\""}",259447,0,"""Europe""" +2023-11-11,58368,747,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2391.83,"{\""seasonal\"": \""17%\""}",122791,1,"""Africa""" +2024-11-02,58369,3862,"[\""Keyboard\"", \""Charger\""]",2252.05,{},168513,0,"""Asia""" +2023-10-19,58370,7754,"[\""Tablet\"", \""Monitor\""]",4015.35,"{\"": \""10%\""}",262716,0,"""North America""" +2023-06-12,58371,1590,"[\""Headphones\""]",2618.83,"{\""seasonal\"": \""8%\""}",71343,1,"""South America""" +2023-02-24,58372,4038,"[\""Keyboard\"", \""Wireless Mouse\""]",3730.88,"{\"": \""10%\""}",91160,0,"""North America""" +2024-08-05,58373,4960,"[\""Wireless Mouse\""]",3847.25,{},42917,0,"""Europe""" +2023-07-09,58374,5361,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",427.7,"{\""loyalty\"": \""9%\""}",128647,0,"""South America""" +2023-12-28,58375,3680,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2091.58,{},44311,0,"""Asia""" +2024-05-09,58376,4477,"[\""Keyboard\""]",3113.45,"{\""seasonal\"": \""26%\""}",23935,1,"""South America""" +2023-09-13,58377,8183,"[\""Wireless Mouse\"", \""Headphones\""]",1726.25,{},233054,0,"""North America""" +2023-01-04,58378,2180,"[\""Tablet\"", \""Laptop\""]",3929.29,{},160506,1,"""Africa""" +2024-02-03,58379,6092,"[\""Wireless Mouse\"", \""Laptop\""]",149.94,"{\""seasonal\"": \""8%\""}",258550,1,"""Asia""" +2023-10-27,58380,1934,"[\""Phone\"", \""Laptop\""]",4861.93,"{\""seasonal\"": \""24%\""}",1206,1,"""South America""" +2024-06-26,58381,5283,"[\""Headphones\""]",2307.96,"{\""promo\"": \""26%\""}",20027,1,"""Africa""" +2024-08-12,58382,4733,"[\""Phone\""]",3677.27,"{\"": \""27%\""}",229611,0,"""South America""" +2024-11-01,58383,7731,"[\""Monitor\""]",3912.14,"{\"": \""30%\""}",74018,1,"""South America""" +2024-12-16,58384,183,"[\""Wireless Mouse\"", \""Monitor\""]",1781.69,{},64431,1,"""North America""" +2024-07-04,58385,3992,"[\""Charger\""]",2720.63,"{\""promo\"": \""26%\""}",241423,0,"""South America""" +2024-07-23,58386,3291,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3715.17,"{\""seasonal\"": \""12%\""}",202909,1,"""North America""" +2024-11-18,58387,3473,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1563.45,"{\""loyalty\"": \""12%\""}",235307,1,"""North America""" +2024-06-12,58388,9704,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1103.98,"{\""promo\"": \""25%\""}",114560,0,"""Asia""" +2023-06-14,58389,7100,"[\""Monitor\""]",3793.64,{},203568,1,"""North America""" +2023-09-07,58390,3612,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3993.37,{},295372,0,"""Africa""" +2023-11-17,58391,4101,"[\""Laptop\""]",4902.81,{},225655,1,"""Africa""" +2023-03-17,58392,8573,"[\""Charger\"", \""Laptop\""]",3752.63,{},49623,1,"""Asia""" +2024-12-13,58393,9848,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",267.52,"{\""seasonal\"": \""14%\""}",273856,1,"""Asia""" +2024-07-01,58394,9277,"[\""Tablet\"", \""Laptop\""]",3520.24,{},8987,1,"""Africa""" +2023-12-16,58395,4576,"[\""Laptop\"", \""Charger\""]",2962.86,{},94572,1,"""North America""" +2023-03-07,58396,197,"[\""Monitor\"", \""Laptop\""]",2712.59,"{\""promo\"": \""6%\""}",2539,0,"""North America""" +2024-11-18,58397,4136,"[\""Phone\""]",3022.38,"{\""promo\"": \""20%\""}",130326,0,"""South America""" +2024-01-23,58398,599,"[\""Keyboard\"", \""Monitor\""]",3938.78,"{\""loyalty\"": \""15%\""}",207571,1,"""North America""" +2023-09-07,58399,5403,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",236.11,"{\""seasonal\"": \""6%\""}",39894,0,"""South America""" +2024-01-02,58400,1775,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1770.4,"{\""loyalty\"": \""18%\""}",169005,1,"""Africa""" +2024-07-10,58401,9579,"[\""Laptop\""]",572.44,"{\"": \""17%\""}",2400,0,"""North America""" +2023-05-08,58402,7011,"[\""Monitor\"", \""Laptop\""]",596.56,{},7303,1,"""Africa""" +2023-08-05,58403,3183,"[\""Phone\"", \""Laptop\""]",3872.96,{},218667,0,"""South America""" +2024-12-18,58404,9474,"[\""Charger\"", \""Wireless Mouse\""]",2364.45,"{\""loyalty\"": \""21%\""}",174732,0,"""North America""" +2024-04-04,58405,317,"[\""Laptop\"", \""Monitor\""]",2957.42,{},275180,0,"""Africa""" +2024-12-01,58406,2520,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1660.85,"{\"": \""9%\""}",103892,1,"""South America""" +2024-12-17,58407,1728,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4543.04,"{\""promo\"": \""27%\""}",76805,1,"""Europe""" +2024-09-09,58408,991,"[\""Keyboard\"", \""Charger\""]",881.06,"{\""seasonal\"": \""20%\""}",149239,0,"""North America""" +2024-12-18,58409,9095,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4071.86,"{\""loyalty\"": \""16%\""}",180885,1,"""Europe""" +2023-05-27,58410,827,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3239.57,"{\"": \""8%\""}",144773,0,"""North America""" +2024-10-02,58411,7157,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2033.9,{},15710,1,"""Europe""" +2023-06-20,58412,3401,"[\""Headphones\""]",261.41,"{\""loyalty\"": \""6%\""}",130286,0,"""Africa""" +2024-06-14,58413,6151,"[\""Headphones\"", \""Phone\""]",2160.58,"{\""loyalty\"": \""24%\""}",122317,0,"""Europe""" +2023-01-26,58414,4859,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4370.36,{},113563,1,"""South America""" +2024-10-11,58415,6032,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4606.42,{},269760,1,"""South America""" +2024-04-27,58416,716,"[\""Monitor\""]",4214.92,"{\""loyalty\"": \""6%\""}",225864,1,"""North America""" +2023-01-12,58417,4243,"[\""Tablet\""]",571.71,"{\""promo\"": \""21%\""}",277421,1,"""Europe""" +2024-12-26,58418,1864,"[\""Charger\""]",1012.65,"{\""seasonal\"": \""22%\""}",239764,1,"""South America""" +2024-05-27,58419,5356,"[\""Headphones\""]",2196.87,"{\""loyalty\"": \""15%\""}",150712,0,"""Africa""" +2023-05-01,58420,3846,"[\""Phone\"", \""Laptop\""]",2750.79,{},140160,1,"""South America""" +2024-12-25,58421,8061,"[\""Headphones\"", \""Wireless Mouse\""]",1664.7,"{\"": \""26%\""}",90280,0,"""Asia""" +2024-04-27,58422,9352,"[\""Wireless Mouse\"", \""Monitor\""]",1461.94,"{\""promo\"": \""17%\""}",85056,0,"""South America""" +2024-04-17,58423,8689,"[\""Charger\""]",793.52,"{\""promo\"": \""25%\""}",164843,1,"""Europe""" +2024-02-17,58424,4209,"[\""Headphones\"", \""Charger\""]",1739.93,{},217703,1,"""North America""" +2023-02-24,58425,6554,"[\""Charger\""]",4627.15,"{\""loyalty\"": \""11%\""}",152173,0,"""Africa""" +2023-12-30,58426,8,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3357.83,{},18412,1,"""Africa""" +2023-05-12,58427,7069,"[\""Headphones\""]",1591.61,"{\""seasonal\"": \""10%\""}",163262,0,"""South America""" +2023-02-23,58428,8245,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",589.84,"{\""promo\"": \""8%\""}",97421,0,"""South America""" +2023-12-03,58429,2351,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",132.27,{},146732,0,"""Europe""" +2023-06-11,58430,1822,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1989.56,{},183939,0,"""South America""" +2023-10-21,58431,1923,"[\""Tablet\"", \""Phone\""]",3902.99,{},119203,1,"""Europe""" +2023-09-22,58432,4440,"[\""Phone\"", \""Monitor\""]",3356.45,"{\"": \""29%\""}",295693,0,"""Africa""" +2024-04-07,58433,5090,"[\""Tablet\"", \""Laptop\""]",269.95,"{\""loyalty\"": \""29%\""}",190972,1,"""North America""" +2024-04-29,58434,771,"[\""Tablet\""]",3461.96,"{\""loyalty\"": \""20%\""}",45823,1,"""North America""" +2024-05-14,58435,8041,"[\""Laptop\""]",3287.45,"{\"": \""27%\""}",60518,0,"""Africa""" +2024-11-22,58436,8776,"[\""Laptop\"", \""Tablet\""]",2267.24,"{\""promo\"": \""15%\""}",112218,0,"""Europe""" +2024-11-17,58437,2005,"[\""Tablet\"", \""Monitor\""]",2154.95,"{\""loyalty\"": \""8%\""}",4920,0,"""Europe""" +2024-01-10,58438,3758,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1930.97,{},135394,0,"""Europe""" +2024-07-01,58439,3711,"[\""Laptop\"", \""Charger\""]",268.08,"{\""loyalty\"": \""14%\""}",224027,1,"""North America""" +2024-08-17,58440,3507,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",654.61,{},293328,1,"""South America""" +2024-10-23,58441,1300,"[\""Charger\"", \""Laptop\""]",3216.56,"{\"": \""17%\""}",8608,0,"""Africa""" +2024-07-06,58442,3654,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",317.88,{},281044,0,"""South America""" +2024-07-23,58443,8968,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1249.69,{},58598,1,"""Europe""" +2023-06-09,58444,5257,"[\""Phone\""]",1596.69,{},65039,1,"""Africa""" +2024-05-23,58445,6714,"[\""Wireless Mouse\"", \""Headphones\""]",1857.79,"{\""loyalty\"": \""27%\""}",99404,0,"""Asia""" +2023-07-15,58446,4542,"[\""Tablet\""]",4512.14,{},7900,1,"""South America""" +2024-03-01,58447,9807,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3362.7,{},222885,1,"""North America""" +2024-01-30,58448,810,"[\""Tablet\"", \""Charger\""]",4029.86,{},107572,1,"""South America""" +2024-01-22,58449,7101,"[\""Laptop\""]",2705.07,"{\""seasonal\"": \""22%\""}",256474,1,"""North America""" +2024-06-21,58450,4786,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1946.67,{},201184,1,"""North America""" +2024-09-30,58451,7301,"[\""Charger\"", \""Monitor\""]",89.44,{},17843,1,"""Asia""" +2023-12-05,58452,7170,"[\""Laptop\""]",2096.89,"{\"": \""11%\""}",236172,0,"""Asia""" +2023-04-24,58453,8462,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3858.37,"{\"": \""26%\""}",140389,0,"""North America""" +2024-09-09,58454,7034,"[\""Phone\"", \""Tablet\""]",2623.83,"{\"": \""23%\""}",195659,0,"""South America""" +2023-07-20,58455,8412,"[\""Laptop\""]",4764.08,"{\"": \""14%\""}",70407,1,"""Europe""" +2023-05-23,58456,1519,"[\""Laptop\""]",4042.04,{},96851,1,"""Asia""" +2024-06-10,58457,2433,"[\""Tablet\"", \""Laptop\""]",4454.84,{},232212,1,"""South America""" +2024-11-14,58458,7157,"[\""Phone\""]",2840.14,{},150176,1,"""Africa""" +2023-01-17,58459,1436,"[\""Headphones\"", \""Phone\"", \""Charger\""]",345.0,{},241653,1,"""South America""" +2023-09-27,58460,8514,"[\""Charger\""]",2787.68,{},208228,1,"""Africa""" +2023-06-02,58461,361,"[\""Monitor\""]",4097.82,"{\"": \""9%\""}",58498,1,"""Europe""" +2024-11-12,58462,9498,"[\""Charger\"", \""Laptop\""]",3935.51,"{\""seasonal\"": \""5%\""}",137993,0,"""Asia""" +2023-09-25,58463,7164,"[\""Monitor\"", \""Charger\""]",1607.5,"{\""seasonal\"": \""13%\""}",150887,0,"""South America""" +2024-08-20,58464,4415,"[\""Wireless Mouse\""]",1556.28,{},156190,1,"""North America""" +2023-04-13,58465,6593,"[\""Keyboard\"", \""Phone\""]",2612.13,"{\""promo\"": \""19%\""}",215956,0,"""Europe""" +2023-06-27,58466,6402,"[\""Charger\""]",4412.89,{},246693,0,"""Africa""" +2023-07-06,58467,7875,"[\""Wireless Mouse\"", \""Tablet\""]",815.96,"{\""promo\"": \""23%\""}",9528,0,"""South America""" +2024-03-22,58468,4508,"[\""Laptop\""]",2753.58,"{\""promo\"": \""8%\""}",22493,1,"""Europe""" +2024-05-28,58469,3967,"[\""Headphones\""]",3322.1,{},121470,1,"""South America""" +2024-06-13,58470,6082,"[\""Laptop\"", \""Charger\""]",1901.56,{},195536,0,"""Asia""" +2023-05-22,58471,7868,"[\""Headphones\"", \""Phone\""]",4386.05,"{\""seasonal\"": \""17%\""}",63095,0,"""Asia""" +2024-01-06,58472,7697,"[\""Wireless Mouse\""]",3397.39,"{\""loyalty\"": \""22%\""}",189218,1,"""Africa""" +2023-02-25,58473,2974,"[\""Wireless Mouse\"", \""Phone\""]",1212.47,{},161518,0,"""Asia""" +2024-08-09,58474,3982,"[\""Tablet\""]",3233.91,"{\""seasonal\"": \""12%\""}",68412,0,"""South America""" +2024-08-23,58475,1349,"[\""Charger\"", \""Wireless Mouse\""]",429.08,"{\""loyalty\"": \""18%\""}",28990,0,"""South America""" +2023-09-22,58476,1654,"[\""Keyboard\"", \""Monitor\""]",3311.73,{},142496,1,"""Europe""" +2024-03-08,58477,6027,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3282.34,"{\"": \""9%\""}",178797,0,"""Europe""" +2023-05-15,58478,843,"[\""Headphones\"", \""Phone\""]",1875.57,"{\""seasonal\"": \""22%\""}",33122,1,"""South America""" +2023-03-08,58479,2923,"[\""Tablet\"", \""Headphones\""]",1267.61,{},35173,1,"""South America""" +2024-04-21,58480,9559,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1593.7,{},298190,1,"""Europe""" +2023-06-19,58481,5182,"[\""Wireless Mouse\"", \""Phone\""]",4864.46,"{\""seasonal\"": \""23%\""}",83674,1,"""North America""" +2023-03-26,58482,3467,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2960.06,{},231157,0,"""Europe""" +2023-12-13,58483,872,"[\""Monitor\""]",1157.84,{},181322,0,"""North America""" +2024-04-16,58484,52,"[\""Keyboard\"", \""Monitor\""]",1525.63,{},200083,1,"""Asia""" +2024-06-23,58485,3357,"[\""Tablet\"", \""Charger\""]",4462.74,"{\""promo\"": \""28%\""}",30111,1,"""North America""" +2024-08-22,58486,4731,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4486.2,"{\""loyalty\"": \""18%\""}",12055,1,"""Africa""" +2023-08-23,58487,3076,"[\""Keyboard\""]",451.23,"{\""seasonal\"": \""22%\""}",36112,0,"""North America""" +2023-04-23,58488,5065,"[\""Headphones\"", \""Monitor\""]",1065.69,"{\""promo\"": \""27%\""}",82210,1,"""South America""" +2023-11-14,58489,6798,"[\""Keyboard\"", \""Headphones\""]",4817.43,{},168314,1,"""Asia""" +2023-01-15,58490,2427,"[\""Phone\"", \""Headphones\""]",1074.44,{},151885,1,"""Asia""" +2023-12-07,58491,2684,"[\""Tablet\"", \""Wireless Mouse\""]",1192.62,{},198203,0,"""South America""" +2024-09-10,58492,8233,"[\""Headphones\"", \""Phone\""]",2760.83,{},275950,1,"""Europe""" +2024-12-23,58493,4234,"[\""Charger\"", \""Laptop\""]",3824.82,"{\""seasonal\"": \""23%\""}",163820,1,"""South America""" +2023-09-03,58494,146,"[\""Charger\"", \""Phone\""]",1798.35,{},156287,0,"""South America""" +2024-03-07,58495,3813,"[\""Tablet\""]",1863.94,{},73090,1,"""Asia""" +2024-11-25,58496,2422,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2971.08,"{\"": \""7%\""}",113000,0,"""North America""" +2023-04-15,58497,7369,"[\""Charger\"", \""Headphones\""]",660.5,{},129805,1,"""South America""" +2023-10-02,58498,1886,"[\""Tablet\""]",1032.89,{},182284,1,"""North America""" +2024-10-29,58499,4233,"[\""Phone\""]",2340.03,"{\"": \""17%\""}",130524,1,"""North America""" +2023-11-20,58500,5123,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",341.33,"{\""loyalty\"": \""15%\""}",236750,1,"""Europe""" +2024-03-06,58501,8745,"[\""Laptop\"", \""Charger\""]",3781.94,{},271585,0,"""Asia""" +2023-02-01,58502,4078,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2452.2,{},220836,0,"""South America""" +2024-12-30,58503,4836,"[\""Phone\""]",1514.15,{},138034,0,"""Asia""" +2024-08-09,58504,3714,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",438.15,"{\""seasonal\"": \""25%\""}",272890,0,"""Asia""" +2024-01-16,58505,7292,"[\""Wireless Mouse\"", \""Keyboard\""]",2218.16,"{\"": \""19%\""}",226479,1,"""South America""" +2024-04-16,58506,3520,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3790.08,"{\""promo\"": \""12%\""}",166688,0,"""South America""" +2024-05-02,58507,8701,"[\""Laptop\"", \""Charger\""]",2675.22,{},42328,0,"""Asia""" +2024-05-13,58508,4958,"[\""Monitor\""]",3032.31,"{\""seasonal\"": \""5%\""}",164623,1,"""South America""" +2024-03-03,58509,2538,"[\""Monitor\""]",4278.0,{},233749,0,"""North America""" +2023-01-12,58510,2388,"[\""Wireless Mouse\"", \""Charger\""]",3784.63,{},160506,0,"""South America""" +2023-07-24,58511,9359,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4782.33,{},267529,0,"""North America""" +2024-07-05,58512,7901,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1731.19,{},236393,1,"""Asia""" +2023-11-13,58513,234,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4421.45,{},158931,0,"""Africa""" +2024-06-11,58514,5033,"[\""Monitor\"", \""Keyboard\""]",3212.85,{},10016,1,"""North America""" +2024-04-10,58515,9664,"[\""Monitor\""]",4536.36,"{\""seasonal\"": \""22%\""}",211821,0,"""North America""" +2024-07-17,58516,5815,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1010.5,"{\""loyalty\"": \""20%\""}",91777,0,"""Africa""" +2023-11-14,58517,2848,"[\""Headphones\"", \""Phone\""]",2914.66,"{\""seasonal\"": \""7%\""}",131706,1,"""South America""" +2024-04-01,58518,3039,"[\""Phone\""]",3281.77,"{\"": \""8%\""}",128723,1,"""South America""" +2023-04-23,58519,4797,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",66.6,{},245349,1,"""North America""" +2023-01-16,58520,3771,"[\""Headphones\"", \""Laptop\""]",941.43,{},64756,0,"""South America""" +2024-10-31,58521,8037,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2768.67,{},138657,0,"""Africa""" +2024-10-22,58522,3205,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1603.74,{},281950,1,"""North America""" +2024-06-08,58523,5643,"[\""Monitor\"", \""Wireless Mouse\""]",3258.22,"{\""seasonal\"": \""10%\""}",12291,0,"""Asia""" +2024-10-12,58524,3897,"[\""Charger\"", \""Phone\"", \""Tablet\""]",879.52,"{\""loyalty\"": \""16%\""}",190285,0,"""South America""" +2024-03-10,58525,6144,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2335.17,"{\""promo\"": \""12%\""}",282045,1,"""Africa""" +2023-06-13,58526,4490,"[\""Laptop\"", \""Keyboard\""]",3541.29,"{\""loyalty\"": \""30%\""}",44543,1,"""Asia""" +2024-02-18,58527,8190,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3412.12,"{\""promo\"": \""8%\""}",295588,1,"""South America""" +2024-03-31,58528,6963,"[\""Wireless Mouse\"", \""Laptop\""]",2453.2,{},69252,0,"""Africa""" +2024-02-21,58529,2634,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3632.66,"{\""seasonal\"": \""18%\""}",38443,1,"""Europe""" +2023-09-04,58530,205,"[\""Keyboard\""]",323.26,"{\"": \""30%\""}",65013,1,"""South America""" +2024-09-05,58531,8920,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1367.23,"{\""loyalty\"": \""26%\""}",72942,1,"""Africa""" +2023-12-18,58532,9369,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2692.44,"{\""promo\"": \""7%\""}",190387,0,"""South America""" +2024-06-19,58533,7813,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4544.24,{},194098,1,"""Europe""" +2024-03-26,58534,6751,"[\""Wireless Mouse\""]",3783.01,{},98548,0,"""Asia""" +2024-10-15,58535,7172,"[\""Laptop\""]",55.96,"{\"": \""11%\""}",272467,1,"""Asia""" +2023-11-27,58536,2457,"[\""Wireless Mouse\"", \""Charger\""]",944.31,{},42316,1,"""Asia""" +2023-09-21,58537,9253,"[\""Phone\""]",111.22,{},70276,0,"""North America""" +2023-07-24,58538,2466,"[\""Laptop\"", \""Tablet\""]",3525.02,"{\""seasonal\"": \""27%\""}",120274,1,"""Africa""" +2024-03-10,58539,1258,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2191.74,"{\""seasonal\"": \""28%\""}",299717,1,"""Asia""" +2024-09-08,58540,4174,"[\""Headphones\"", \""Wireless Mouse\""]",4512.98,"{\""promo\"": \""19%\""}",199717,0,"""Europe""" +2023-05-17,58541,9553,"[\""Keyboard\""]",702.73,"{\""loyalty\"": \""30%\""}",297698,1,"""South America""" +2023-09-30,58542,6603,"[\""Charger\""]",396.35,"{\"": \""10%\""}",277834,0,"""Africa""" +2024-07-17,58543,1946,"[\""Tablet\""]",4992.23,{},7245,1,"""Europe""" +2024-11-09,58544,2320,"[\""Monitor\""]",1020.13,"{\""promo\"": \""21%\""}",289643,0,"""South America""" +2023-10-24,58545,7940,"[\""Headphones\"", \""Monitor\""]",3449.88,{},213581,1,"""Africa""" +2024-03-18,58546,7528,"[\""Laptop\""]",1863.27,"{\"": \""21%\""}",154991,1,"""North America""" +2023-06-02,58547,5468,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4867.74,{},100117,1,"""Asia""" +2023-01-29,58548,3117,"[\""Wireless Mouse\"", \""Tablet\""]",2901.12,"{\""seasonal\"": \""7%\""}",137636,1,"""Europe""" +2023-02-22,58549,6833,"[\""Charger\""]",4235.93,"{\""promo\"": \""10%\""}",204863,0,"""Asia""" +2023-07-17,58550,2141,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4093.97,{},102507,0,"""Asia""" +2024-04-23,58551,6815,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3825.12,{},270978,0,"""Europe""" +2024-02-05,58552,6742,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2871.39,{},78170,1,"""Africa""" +2023-10-25,58553,6806,"[\""Tablet\""]",2496.67,{},270544,0,"""Asia""" +2024-09-13,58554,2695,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",350.14,{},127668,0,"""North America""" +2024-05-18,58555,8047,"[\""Laptop\"", \""Charger\""]",2396.33,"{\"": \""19%\""}",65090,1,"""South America""" +2024-10-05,58556,4617,"[\""Laptop\"", \""Phone\""]",845.45,"{\""seasonal\"": \""23%\""}",288432,0,"""Africa""" +2024-07-26,58557,5782,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",200.23,"{\"": \""25%\""}",174244,1,"""Asia""" +2024-12-21,58558,8411,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",367.19,{},198102,1,"""Asia""" +2024-10-25,58559,2259,"[\""Wireless Mouse\""]",761.57,{},188288,1,"""North America""" +2024-01-07,58560,9682,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1934.76,"{\""promo\"": \""15%\""}",246196,0,"""Europe""" +2023-07-24,58561,7212,"[\""Phone\"", \""Headphones\""]",3433.86,"{\"": \""5%\""}",18602,1,"""Africa""" +2024-04-19,58562,6935,"[\""Phone\""]",4630.65,"{\""loyalty\"": \""25%\""}",270037,0,"""North America""" +2024-01-11,58563,3110,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2933.44,"{\""loyalty\"": \""11%\""}",71286,0,"""Africa""" +2023-11-23,58564,984,"[\""Wireless Mouse\"", \""Laptop\""]",1617.94,{},122840,1,"""Asia""" +2024-12-02,58565,4122,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",302.24,{},167687,0,"""North America""" +2024-02-24,58566,8872,"[\""Charger\"", \""Wireless Mouse\""]",1560.39,{},69163,0,"""Africa""" +2023-11-22,58567,4500,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2479.65,"{\""seasonal\"": \""22%\""}",69564,1,"""North America""" +2023-10-01,58568,9385,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1642.03,{},255015,1,"""Asia""" +2024-05-17,58569,2087,"[\""Tablet\"", \""Monitor\""]",3273.35,"{\""loyalty\"": \""23%\""}",28472,0,"""Africa""" +2024-04-28,58570,1235,"[\""Tablet\"", \""Charger\""]",4772.81,"{\""seasonal\"": \""14%\""}",298731,1,"""North America""" +2023-12-31,58571,908,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4978.73,{},209852,1,"""Europe""" +2024-08-13,58572,4578,"[\""Tablet\"", \""Charger\""]",287.8,"{\""loyalty\"": \""13%\""}",102915,1,"""Africa""" +2024-06-29,58573,4807,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3322.18,{},222651,0,"""North America""" +2024-07-03,58574,7616,"[\""Phone\"", \""Charger\""]",4724.16,{},159993,1,"""Asia""" +2024-01-16,58575,7446,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4546.23,"{\""loyalty\"": \""6%\""}",45269,0,"""South America""" +2024-02-26,58576,6185,"[\""Headphones\"", \""Charger\""]",3220.43,"{\"": \""24%\""}",279309,1,"""North America""" +2024-09-11,58577,7237,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1674.48,"{\""promo\"": \""26%\""}",199835,0,"""North America""" +2024-06-05,58578,5877,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",325.36,{},153301,0,"""North America""" +2024-10-25,58579,9009,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3738.48,{},150322,1,"""Asia""" +2024-11-16,58580,2518,"[\""Headphones\""]",4058.68,"{\""promo\"": \""19%\""}",92325,1,"""Asia""" +2024-05-10,58581,1410,"[\""Headphones\"", \""Charger\""]",3213.89,"{\""seasonal\"": \""9%\""}",120929,0,"""Africa""" +2023-03-15,58582,9841,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4752.56,"{\""seasonal\"": \""29%\""}",120080,0,"""Africa""" +2023-09-29,58583,4342,"[\""Wireless Mouse\""]",372.84,"{\""seasonal\"": \""12%\""}",295748,0,"""Asia""" +2024-09-11,58584,6444,"[\""Wireless Mouse\""]",1994.8,"{\""promo\"": \""26%\""}",223114,0,"""North America""" +2023-07-18,58585,8747,"[\""Tablet\"", \""Phone\""]",4499.21,"{\""promo\"": \""17%\""}",256094,0,"""Asia""" +2023-11-02,58586,7392,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1753.01,{},279163,0,"""South America""" +2023-12-25,58587,7340,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3083.84,{},63234,0,"""South America""" +2023-07-16,58588,8433,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3588.1,{},4425,0,"""Europe""" +2023-01-28,58589,5989,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4761.57,"{\""promo\"": \""13%\""}",286918,0,"""Europe""" +2023-09-15,58590,8264,"[\""Wireless Mouse\""]",793.16,{},147831,0,"""South America""" +2023-05-17,58591,9717,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4845.53,"{\""seasonal\"": \""7%\""}",189648,1,"""South America""" +2024-07-07,58592,6580,"[\""Laptop\"", \""Tablet\""]",1962.38,"{\""promo\"": \""6%\""}",119599,0,"""Asia""" +2024-05-20,58593,746,"[\""Keyboard\"", \""Wireless Mouse\""]",3746.73,{},101466,1,"""North America""" +2023-07-29,58594,8674,"[\""Charger\"", \""Laptop\""]",3638.2,"{\""seasonal\"": \""16%\""}",201518,0,"""Europe""" +2024-12-02,58595,7595,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",121.0,{},275457,0,"""Asia""" +2023-09-17,58596,6274,"[\""Laptop\""]",4999.75,{},130174,0,"""North America""" +2024-04-28,58597,7874,"[\""Laptop\""]",190.64,"{\"": \""15%\""}",276486,1,"""Europe""" +2023-05-08,58598,9507,"[\""Headphones\"", \""Wireless Mouse\""]",1138.21,{},55241,1,"""North America""" +2023-10-23,58599,9439,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3898.56,"{\""promo\"": \""17%\""}",37790,1,"""Asia""" +2024-08-14,58600,7280,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",392.56,"{\""loyalty\"": \""18%\""}",80371,0,"""North America""" +2023-11-29,58601,8723,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4156.07,{},40893,0,"""South America""" +2024-08-15,58602,4932,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4361.71,"{\"": \""24%\""}",49941,1,"""Africa""" +2024-08-24,58603,4902,"[\""Headphones\""]",367.92,{},85628,0,"""Europe""" +2023-11-25,58604,5164,"[\""Headphones\""]",4382.55,{},119818,0,"""Asia""" +2023-04-02,58605,8865,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4977.59,"{\""loyalty\"": \""15%\""}",85147,0,"""Africa""" +2024-02-28,58606,2482,"[\""Keyboard\"", \""Charger\""]",3189.14,"{\""loyalty\"": \""28%\""}",155581,0,"""North America""" +2023-08-29,58607,9786,"[\""Laptop\"", \""Headphones\""]",3274.75,"{\""promo\"": \""25%\""}",24009,0,"""Africa""" +2023-01-17,58608,7438,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3577.2,{},105817,0,"""Asia""" +2023-11-13,58609,6675,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1851.1,"{\""loyalty\"": \""18%\""}",257675,0,"""Africa""" +2023-06-02,58610,6671,"[\""Monitor\"", \""Keyboard\""]",4472.23,{},95185,0,"""Europe""" +2024-02-23,58611,8705,"[\""Tablet\"", \""Headphones\""]",813.6,{},179976,0,"""North America""" +2023-08-17,58612,5965,"[\""Tablet\"", \""Charger\""]",2677.22,{},14088,0,"""Asia""" +2024-12-11,58613,638,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",75.19,"{\"": \""30%\""}",50327,1,"""North America""" +2024-05-02,58614,5641,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",204.77,"{\""seasonal\"": \""27%\""}",133647,0,"""Europe""" +2024-02-23,58615,3030,"[\""Tablet\""]",3380.94,"{\""seasonal\"": \""15%\""}",240146,1,"""North America""" +2024-05-25,58616,8559,"[\""Wireless Mouse\""]",3005.9,"{\"": \""16%\""}",138516,0,"""Africa""" +2024-06-12,58617,4619,"[\""Tablet\""]",2254.63,{},236554,1,"""South America""" +2024-12-01,58618,9919,"[\""Keyboard\"", \""Wireless Mouse\""]",4418.91,{},105938,0,"""South America""" +2023-09-26,58619,5932,"[\""Phone\"", \""Headphones\""]",4145.19,{},88305,1,"""Europe""" +2023-09-14,58620,71,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",530.63,"{\""seasonal\"": \""27%\""}",66978,0,"""North America""" +2023-08-28,58621,192,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2953.89,"{\""loyalty\"": \""16%\""}",254611,1,"""South America""" +2023-09-14,58622,9435,"[\""Headphones\""]",1132.26,{},16596,0,"""South America""" +2024-09-12,58623,4062,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2212.38,"{\""promo\"": \""23%\""}",72638,1,"""South America""" +2024-12-05,58624,8441,"[\""Headphones\""]",348.57,{},153328,0,"""South America""" +2024-03-16,58625,9991,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",692.31,{},109617,1,"""Africa""" +2023-10-31,58626,3992,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1599.34,{},149058,0,"""Asia""" +2023-05-16,58627,9620,"[\""Laptop\"", \""Monitor\""]",3344.38,"{\"": \""28%\""}",72902,0,"""Asia""" +2024-05-03,58628,2609,"[\""Wireless Mouse\""]",4251.17,"{\""promo\"": \""17%\""}",255308,0,"""Africa""" +2023-10-14,58629,8770,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3335.06,{},158814,1,"""North America""" +2023-03-07,58630,7116,"[\""Wireless Mouse\"", \""Keyboard\""]",2176.34,{},8669,1,"""Europe""" +2024-10-07,58631,1065,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3057.67,"{\"": \""15%\""}",170881,1,"""South America""" +2024-04-23,58632,547,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2957.96,"{\""seasonal\"": \""24%\""}",201786,1,"""North America""" +2023-11-15,58633,275,"[\""Charger\"", \""Tablet\""]",2461.99,{},287401,0,"""Asia""" +2024-08-24,58634,2146,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1599.54,"{\""promo\"": \""27%\""}",73743,0,"""South America""" +2023-12-16,58635,1801,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4806.71,{},205212,1,"""Europe""" +2023-08-12,58636,5737,"[\""Tablet\""]",1213.8,{},267180,0,"""Africa""" +2023-06-06,58637,2099,"[\""Tablet\""]",2816.1,{},244336,0,"""Europe""" +2024-11-30,58638,8572,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1024.39,{},217006,0,"""Europe""" +2023-06-01,58639,7698,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4644.65,"{\"": \""24%\""}",216566,0,"""Asia""" +2024-09-15,58640,2038,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1049.75,"{\""promo\"": \""6%\""}",221714,0,"""Europe""" +2024-07-06,58641,4369,"[\""Wireless Mouse\"", \""Keyboard\""]",4631.82,"{\"": \""6%\""}",276001,0,"""Europe""" +2024-10-10,58642,3168,"[\""Charger\""]",3908.95,{},181593,1,"""Africa""" +2024-02-08,58643,3232,"[\""Wireless Mouse\"", \""Keyboard\""]",1679.2,"{\""loyalty\"": \""9%\""}",168708,0,"""Africa""" +2024-10-02,58644,5276,"[\""Charger\"", \""Keyboard\""]",4840.16,{},196467,1,"""South America""" +2024-06-03,58645,6618,"[\""Keyboard\"", \""Headphones\""]",4122.53,{},284085,1,"""Africa""" +2024-04-06,58646,7693,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3451.23,"{\""loyalty\"": \""30%\""}",288780,1,"""Asia""" +2024-08-27,58647,6130,"[\""Wireless Mouse\""]",388.12,"{\""loyalty\"": \""21%\""}",39076,1,"""Europe""" +2024-12-25,58648,6884,"[\""Tablet\""]",3317.18,{},29387,1,"""South America""" +2024-01-30,58649,2308,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2551.29,"{\"": \""7%\""}",143719,1,"""South America""" +2024-12-03,58650,9128,"[\""Phone\"", \""Monitor\""]",3762.87,"{\""seasonal\"": \""23%\""}",114206,0,"""Africa""" +2024-07-21,58651,7976,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",752.75,{},268566,1,"""Asia""" +2024-09-25,58652,8571,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2925.46,{},72642,1,"""North America""" +2024-09-17,58653,4614,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",493.68,"{\""loyalty\"": \""29%\""}",182690,0,"""Europe""" +2023-04-06,58654,2758,"[\""Wireless Mouse\"", \""Phone\""]",4276.31,"{\"": \""25%\""}",21284,1,"""North America""" +2023-05-14,58655,5670,"[\""Laptop\""]",1694.37,"{\""promo\"": \""16%\""}",122700,0,"""South America""" +2023-10-16,58656,5834,"[\""Keyboard\"", \""Laptop\""]",2488.04,{},146634,1,"""South America""" +2024-03-27,58657,9015,"[\""Keyboard\""]",3728.83,"{\""seasonal\"": \""5%\""}",193887,0,"""South America""" +2023-01-20,58658,9435,"[\""Monitor\"", \""Headphones\""]",1838.18,"{\""promo\"": \""6%\""}",238473,0,"""Asia""" +2023-04-04,58659,5296,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1489.56,"{\"": \""29%\""}",68668,0,"""Africa""" +2024-05-29,58660,8804,"[\""Headphones\""]",3232.1,{},148622,1,"""South America""" +2024-09-06,58661,2611,"[\""Phone\"", \""Keyboard\""]",322.39,"{\""promo\"": \""14%\""}",234336,0,"""North America""" +2023-07-01,58662,6212,"[\""Charger\""]",2130.98,"{\"": \""5%\""}",94679,1,"""Asia""" +2024-01-23,58663,6922,"[\""Wireless Mouse\""]",1840.46,"{\""loyalty\"": \""7%\""}",191341,0,"""Europe""" +2023-08-13,58664,3850,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1306.89,{},103116,1,"""South America""" +2023-03-18,58665,1490,"[\""Keyboard\""]",3987.8,"{\"": \""25%\""}",41711,1,"""Europe""" +2024-01-07,58666,9205,"[\""Wireless Mouse\"", \""Headphones\""]",616.65,{},255618,0,"""South America""" +2023-07-02,58667,1187,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3346.72,{},207519,0,"""Asia""" +2023-09-17,58668,3155,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1471.92,"{\"": \""9%\""}",196258,0,"""Asia""" +2023-09-23,58669,4572,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4587.22,"{\""seasonal\"": \""7%\""}",27583,1,"""Europe""" +2024-12-08,58670,2763,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",323.71,"{\"": \""17%\""}",197275,1,"""South America""" +2024-07-15,58671,4919,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",645.56,"{\"": \""26%\""}",281187,1,"""Africa""" +2024-08-17,58672,4285,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1237.12,{},111513,1,"""Africa""" +2024-01-28,58673,5752,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1840.56,"{\"": \""30%\""}",83886,0,"""Africa""" +2023-12-27,58674,970,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2801.73,{},34614,1,"""Europe""" +2024-10-22,58675,6401,"[\""Charger\"", \""Phone\""]",1441.07,"{\""promo\"": \""7%\""}",192604,0,"""North America""" +2024-03-22,58676,9021,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3100.35,"{\""promo\"": \""18%\""}",247160,0,"""South America""" +2023-05-27,58677,9500,"[\""Keyboard\""]",3213.85,{},59882,1,"""Europe""" +2024-11-02,58678,929,"[\""Monitor\"", \""Tablet\""]",4940.2,"{\""loyalty\"": \""10%\""}",158549,1,"""Asia""" +2024-09-06,58679,7885,"[\""Monitor\""]",908.42,{},178136,0,"""South America""" +2024-10-31,58680,5969,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3043.47,"{\""promo\"": \""7%\""}",153570,0,"""Asia""" +2023-02-16,58681,2246,"[\""Charger\""]",2902.57,"{\""seasonal\"": \""7%\""}",294229,1,"""South America""" +2024-05-16,58682,7524,"[\""Tablet\""]",1626.25,{},235118,0,"""South America""" +2023-07-23,58683,7858,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4400.05,{},190267,0,"""Europe""" +2023-12-08,58684,1070,"[\""Wireless Mouse\""]",4069.97,"{\""loyalty\"": \""24%\""}",233124,0,"""Europe""" +2024-04-30,58685,384,"[\""Headphones\"", \""Laptop\""]",4728.97,"{\""loyalty\"": \""7%\""}",215506,1,"""North America""" +2023-06-13,58686,4940,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",352.58,"{\""promo\"": \""22%\""}",26310,0,"""South America""" +2024-10-12,58687,7060,"[\""Wireless Mouse\""]",4518.54,"{\"": \""21%\""}",154343,1,"""South America""" +2024-06-01,58688,8594,"[\""Laptop\"", \""Wireless Mouse\""]",1704.61,"{\""loyalty\"": \""26%\""}",73161,0,"""Europe""" +2023-02-24,58689,2274,"[\""Keyboard\""]",3868.96,{},279702,0,"""Asia""" +2024-03-26,58690,3975,"[\""Phone\""]",831.21,"{\""seasonal\"": \""22%\""}",228139,0,"""Asia""" +2023-01-15,58691,60,"[\""Wireless Mouse\""]",3561.71,{},199872,1,"""South America""" +2024-11-03,58692,8563,"[\""Charger\""]",2732.88,"{\"": \""27%\""}",127099,0,"""Europe""" +2024-01-13,58693,6726,"[\""Laptop\""]",1629.09,{},143571,1,"""Asia""" +2023-12-27,58694,8362,"[\""Wireless Mouse\""]",454.29,{},263857,1,"""South America""" +2023-08-21,58695,9934,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4472.97,"{\""loyalty\"": \""27%\""}",98873,0,"""Asia""" +2024-07-12,58696,8432,"[\""Monitor\""]",2961.6,{},213162,0,"""Europe""" +2024-02-20,58697,2057,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1080.41,"{\""promo\"": \""10%\""}",238328,1,"""North America""" +2023-04-26,58698,3797,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2777.82,"{\""seasonal\"": \""11%\""}",261500,1,"""Europe""" +2024-02-07,58699,3212,"[\""Headphones\""]",569.28,{},247577,0,"""Europe""" +2024-05-02,58700,3578,"[\""Laptop\"", \""Phone\""]",3394.7,"{\""seasonal\"": \""27%\""}",146926,1,"""Africa""" +2023-05-24,58701,1520,"[\""Monitor\""]",1483.99,{},134651,0,"""Europe""" +2024-12-01,58702,2349,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3015.55,"{\""loyalty\"": \""17%\""}",40718,1,"""Asia""" +2023-04-03,58703,8127,"[\""Phone\""]",1411.58,"{\""promo\"": \""28%\""}",218058,0,"""Africa""" +2024-10-06,58704,5287,"[\""Tablet\""]",2649.97,"{\"": \""13%\""}",156820,0,"""Africa""" +2024-11-27,58705,3338,"[\""Tablet\""]",873.42,{},176848,0,"""North America""" +2024-06-07,58706,2173,"[\""Keyboard\"", \""Phone\""]",2401.01,{},35928,1,"""North America""" +2023-01-03,58707,3179,"[\""Charger\""]",3691.46,{},151832,1,"""South America""" +2023-10-25,58708,6643,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3738.68,{},6754,0,"""South America""" +2024-06-13,58709,6307,"[\""Keyboard\"", \""Laptop\""]",1829.42,{},168350,1,"""North America""" +2024-05-11,58710,8461,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1125.5,"{\""seasonal\"": \""10%\""}",184102,1,"""Africa""" +2024-05-05,58711,3651,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3146.08,"{\""loyalty\"": \""5%\""}",269321,1,"""Europe""" +2024-07-15,58712,9029,"[\""Headphones\"", \""Laptop\""]",4061.7,{},92924,0,"""South America""" +2024-12-25,58713,9506,"[\""Laptop\"", \""Phone\""]",4284.55,{},12066,0,"""Asia""" +2024-03-29,58714,4127,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2413.2,"{\""promo\"": \""21%\""}",219252,0,"""Asia""" +2023-12-02,58715,9442,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3238.8,"{\""seasonal\"": \""10%\""}",205611,0,"""Africa""" +2023-01-12,58716,3291,"[\""Laptop\""]",4884.48,{},162347,1,"""North America""" +2024-03-17,58717,5497,"[\""Laptop\"", \""Tablet\""]",1038.94,"{\"": \""24%\""}",11786,1,"""South America""" +2024-07-01,58718,4740,"[\""Tablet\"", \""Keyboard\""]",1008.09,"{\""promo\"": \""24%\""}",146046,0,"""Asia""" +2023-02-25,58719,4561,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",974.94,{},169934,0,"""Africa""" +2024-04-18,58720,2412,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",172.78,{},15249,1,"""South America""" +2023-02-08,58721,963,"[\""Keyboard\""]",403.81,{},69758,0,"""Europe""" +2023-01-27,58722,2355,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2290.29,{},7496,1,"""Europe""" +2024-06-18,58723,5488,"[\""Charger\"", \""Laptop\""]",1444.82,{},180944,0,"""North America""" +2024-07-31,58724,3660,"[\""Keyboard\""]",2906.95,{},99550,1,"""Asia""" +2023-03-06,58725,8222,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3046.56,"{\""loyalty\"": \""22%\""}",236111,0,"""Africa""" +2024-05-28,58726,4964,"[\""Charger\""]",4947.9,"{\""loyalty\"": \""21%\""}",64287,0,"""South America""" +2023-07-03,58727,9667,"[\""Headphones\""]",3074.28,{},288386,0,"""Asia""" +2024-11-30,58728,2945,"[\""Laptop\"", \""Phone\"", \""Charger\""]",487.33,"{\"": \""10%\""}",42999,0,"""Africa""" +2023-12-28,58729,1691,"[\""Wireless Mouse\""]",3286.25,{},284142,0,"""North America""" +2023-03-15,58730,7033,"[\""Headphones\""]",1024.78,"{\"": \""27%\""}",150337,1,"""Asia""" +2024-06-21,58731,1896,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3552.81,{},181918,1,"""Asia""" +2023-11-15,58732,6410,"[\""Wireless Mouse\""]",746.77,"{\""promo\"": \""9%\""}",172269,0,"""Africa""" +2023-09-12,58733,3439,"[\""Keyboard\"", \""Monitor\""]",4467.26,{},108386,0,"""Europe""" +2024-06-21,58734,379,"[\""Charger\"", \""Phone\""]",4494.15,{},83982,1,"""Europe""" +2023-06-11,58735,886,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3024.98,"{\""seasonal\"": \""9%\""}",26991,0,"""North America""" +2024-07-25,58736,3383,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2997.86,{},141502,1,"""North America""" +2023-09-08,58737,1917,"[\""Monitor\""]",1701.05,{},203453,1,"""Europe""" +2024-11-03,58738,4989,"[\""Phone\"", \""Laptop\""]",1287.15,"{\"": \""20%\""}",64193,0,"""Africa""" +2023-02-20,58739,4551,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2802.42,"{\"": \""8%\""}",135756,1,"""Asia""" +2023-03-19,58740,946,"[\""Headphones\""]",1548.86,{},187839,0,"""North America""" +2024-01-22,58741,2008,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3945.76,"{\"": \""30%\""}",5027,1,"""South America""" +2023-08-22,58742,3192,"[\""Wireless Mouse\""]",2191.25,"{\""seasonal\"": \""11%\""}",174292,1,"""North America""" +2023-10-15,58743,1742,"[\""Monitor\"", \""Laptop\""]",901.35,"{\""seasonal\"": \""27%\""}",76876,1,"""North America""" +2024-10-25,58744,3791,"[\""Wireless Mouse\"", \""Keyboard\""]",1752.69,{},29068,0,"""Europe""" +2024-01-18,58745,6782,"[\""Phone\""]",4256.42,"{\""loyalty\"": \""23%\""}",1704,0,"""Europe""" +2023-05-14,58746,8063,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1115.35,"{\"": \""17%\""}",210580,1,"""Europe""" +2024-01-16,58747,3173,"[\""Tablet\""]",1286.61,{},153455,1,"""Africa""" +2023-09-10,58748,7473,"[\""Phone\"", \""Tablet\""]",2135.26,{},113165,1,"""Asia""" +2024-03-26,58749,5192,"[\""Phone\"", \""Headphones\""]",1880.32,{},22399,1,"""South America""" +2023-05-09,58750,9992,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4945.25,{},296475,1,"""Europe""" +2023-09-12,58751,1128,"[\""Headphones\""]",353.37,"{\""seasonal\"": \""23%\""}",82081,0,"""Europe""" +2024-06-07,58752,2785,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2720.47,{},239794,1,"""Africa""" +2023-09-23,58753,9643,"[\""Keyboard\"", \""Phone\""]",4231.78,{},162949,1,"""Africa""" +2024-01-18,58754,2634,"[\""Laptop\""]",1051.91,{},153837,0,"""South America""" +2023-02-11,58755,9032,"[\""Monitor\""]",3020.79,{},101546,0,"""Africa""" +2023-04-22,58756,6660,"[\""Laptop\""]",4962.59,{},273709,0,"""Africa""" +2024-07-19,58757,1575,"[\""Keyboard\"", \""Headphones\""]",3452.32,{},172775,0,"""North America""" +2023-03-04,58758,3207,"[\""Headphones\"", \""Monitor\""]",3232.88,"{\""loyalty\"": \""19%\""}",8333,1,"""Africa""" +2024-12-05,58759,555,"[\""Keyboard\""]",2396.14,{},216506,0,"""North America""" +2023-02-09,58760,4205,"[\""Headphones\"", \""Phone\""]",1019.89,"{\""loyalty\"": \""30%\""}",157356,0,"""Africa""" +2023-12-02,58761,82,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3551.89,"{\"": \""13%\""}",143665,0,"""Africa""" +2023-05-24,58762,1401,"[\""Laptop\""]",920.39,{},263848,1,"""North America""" +2024-12-09,58763,6939,"[\""Wireless Mouse\"", \""Laptop\""]",4722.12,"{\""seasonal\"": \""10%\""}",272201,1,"""Europe""" +2024-07-03,58764,1427,"[\""Monitor\""]",2177.19,{},129610,0,"""Africa""" +2024-12-14,58765,4480,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3576.0,"{\""seasonal\"": \""7%\""}",93247,0,"""Asia""" +2024-08-31,58766,8825,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4821.12,"{\""seasonal\"": \""26%\""}",257600,0,"""Europe""" +2023-01-03,58767,2765,"[\""Monitor\""]",4330.83,"{\""seasonal\"": \""13%\""}",214588,0,"""Europe""" +2023-10-27,58768,1404,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",291.13,"{\""seasonal\"": \""21%\""}",279954,0,"""Europe""" +2023-12-30,58769,488,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2214.04,{},94751,1,"""Europe""" +2024-08-16,58770,4722,"[\""Tablet\"", \""Laptop\""]",3225.31,"{\"": \""25%\""}",249874,1,"""Europe""" +2024-07-12,58771,4212,"[\""Tablet\"", \""Keyboard\""]",285.15,{},31745,1,"""Europe""" +2023-06-02,58772,776,"[\""Laptop\"", \""Phone\""]",4220.62,{},78171,1,"""North America""" +2023-11-29,58773,992,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3231.73,{},62936,0,"""Asia""" +2024-11-17,58774,6278,"[\""Laptop\"", \""Phone\""]",2537.57,{},73656,1,"""North America""" +2024-03-19,58775,5276,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4413.7,{},38606,0,"""Europe""" +2023-09-02,58776,8791,"[\""Charger\""]",1926.25,{},105546,1,"""South America""" +2023-09-22,58777,7723,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",283.12,{},104823,0,"""Asia""" +2023-11-29,58778,2478,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3132.58,"{\""promo\"": \""20%\""}",252496,1,"""Asia""" +2024-12-26,58779,3726,"[\""Charger\""]",3790.91,{},202457,1,"""Asia""" +2023-05-19,58780,8512,"[\""Laptop\""]",3596.23,{},269953,1,"""South America""" +2023-03-17,58781,7581,"[\""Keyboard\"", \""Phone\""]",3765.49,"{\""promo\"": \""5%\""}",4425,1,"""Europe""" +2023-06-25,58782,5672,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1809.24,"{\""loyalty\"": \""23%\""}",128511,1,"""Africa""" +2023-05-10,58783,2941,"[\""Wireless Mouse\"", \""Monitor\""]",806.06,{},145726,0,"""South America""" +2024-07-17,58784,9580,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3634.99,"{\""loyalty\"": \""26%\""}",63431,0,"""Asia""" +2024-05-12,58785,4570,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1052.87,"{\""seasonal\"": \""7%\""}",158311,1,"""North America""" +2024-08-17,58786,9653,"[\""Tablet\""]",4346.84,{},287960,1,"""North America""" +2024-01-13,58787,4399,"[\""Wireless Mouse\""]",204.79,"{\""promo\"": \""13%\""}",284541,0,"""Asia""" +2023-08-08,58788,2313,"[\""Monitor\"", \""Tablet\""]",4781.09,{},24170,1,"""South America""" +2024-10-17,58789,81,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1553.89,{},49698,0,"""North America""" +2023-06-09,58790,1902,"[\""Tablet\"", \""Wireless Mouse\""]",1223.86,{},269135,0,"""South America""" +2024-05-12,58791,4613,"[\""Laptop\"", \""Monitor\""]",4160.88,{},190762,0,"""North America""" +2024-11-10,58792,7855,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",797.68,{},220727,1,"""Africa""" +2023-08-17,58793,2117,"[\""Charger\"", \""Laptop\""]",4893.84,{},74776,0,"""Africa""" +2023-06-05,58794,8356,"[\""Keyboard\""]",3570.69,"{\""promo\"": \""24%\""}",219007,0,"""North America""" +2024-08-11,58795,2106,"[\""Monitor\""]",883.48,"{\"": \""13%\""}",124086,1,"""Africa""" +2023-04-08,58796,9159,"[\""Keyboard\"", \""Headphones\""]",4876.89,{},88671,0,"""Europe""" +2023-07-12,58797,4671,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2375.29,"{\""loyalty\"": \""6%\""}",104620,0,"""South America""" +2024-05-14,58798,8887,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2378.94,"{\"": \""20%\""}",165212,0,"""South America""" +2023-06-08,58799,8798,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2713.55,"{\""promo\"": \""17%\""}",31096,0,"""Asia""" +2024-10-23,58800,8278,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1161.01,"{\""seasonal\"": \""23%\""}",230260,0,"""Africa""" +2023-11-05,58801,1760,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1666.31,"{\""loyalty\"": \""15%\""}",127305,1,"""Europe""" +2023-01-17,58802,3556,"[\""Headphones\"", \""Laptop\""]",385.63,"{\""seasonal\"": \""5%\""}",141284,1,"""Asia""" +2023-12-25,58803,9086,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3758.45,{},112068,0,"""South America""" +2024-09-20,58804,7738,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4060.23,{},33935,0,"""Asia""" +2024-05-22,58805,330,"[\""Laptop\""]",4958.54,{},191231,0,"""Asia""" +2024-12-05,58806,5362,"[\""Tablet\""]",207.08,{},78389,1,"""South America""" +2024-07-15,58807,7341,"[\""Wireless Mouse\"", \""Headphones\""]",1669.53,{},53630,1,"""Africa""" +2024-02-13,58808,4838,"[\""Laptop\"", \""Phone\""]",1887.52,{},139525,0,"""Asia""" +2023-08-23,58809,5553,"[\""Laptop\""]",1690.51,{},253804,1,"""Africa""" +2023-12-15,58810,5123,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1233.58,{},70249,0,"""Africa""" +2024-11-19,58811,8727,"[\""Wireless Mouse\"", \""Headphones\""]",1226.77,"{\""loyalty\"": \""14%\""}",21590,1,"""Asia""" +2024-02-23,58812,1028,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3823.2,{},262816,0,"""South America""" +2023-07-12,58813,3454,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3000.33,{},198912,0,"""Asia""" +2024-03-30,58814,2957,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1533.05,"{\""promo\"": \""7%\""}",264124,0,"""Africa""" +2024-01-17,58815,5044,"[\""Phone\"", \""Charger\""]",2744.4,{},217269,0,"""Africa""" +2023-07-13,58816,4549,"[\""Tablet\""]",3038.39,"{\"": \""8%\""}",227626,1,"""North America""" +2024-07-22,58817,613,"[\""Wireless Mouse\""]",2396.81,"{\"": \""6%\""}",184658,0,"""South America""" +2023-12-23,58818,7052,"[\""Laptop\""]",780.99,"{\""seasonal\"": \""15%\""}",202415,1,"""South America""" +2024-11-08,58819,329,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4903.71,"{\""loyalty\"": \""26%\""}",117816,1,"""Africa""" +2024-10-26,58820,3062,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1809.96,{},260888,1,"""Asia""" +2023-09-01,58821,6986,"[\""Laptop\"", \""Phone\""]",1064.97,"{\""seasonal\"": \""20%\""}",160237,1,"""North America""" +2024-10-14,58822,5088,"[\""Tablet\"", \""Charger\""]",946.68,"{\""promo\"": \""30%\""}",292591,1,"""Asia""" +2023-05-10,58823,5375,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",898.14,"{\""promo\"": \""23%\""}",199755,0,"""Asia""" +2023-10-26,58824,5734,"[\""Monitor\"", \""Phone\"", \""Charger\""]",472.9,{},61652,0,"""Europe""" +2024-01-26,58825,2773,"[\""Tablet\"", \""Keyboard\""]",2473.0,"{\""seasonal\"": \""18%\""}",88610,0,"""Asia""" +2023-03-04,58826,3579,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4503.82,"{\""loyalty\"": \""24%\""}",195003,0,"""Europe""" +2023-02-03,58827,7743,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",269.03,"{\""seasonal\"": \""19%\""}",83173,1,"""North America""" +2024-09-22,58828,4925,"[\""Wireless Mouse\""]",856.68,"{\"": \""21%\""}",243706,0,"""Europe""" +2024-08-02,58829,433,"[\""Charger\"", \""Monitor\""]",1563.35,"{\""seasonal\"": \""13%\""}",245010,1,"""Europe""" +2023-02-08,58830,20,"[\""Keyboard\""]",930.48,{},3680,1,"""South America""" +2023-05-23,58831,7571,"[\""Laptop\"", \""Keyboard\""]",1748.83,"{\""promo\"": \""19%\""}",140454,0,"""Africa""" +2023-07-26,58832,9361,"[\""Headphones\""]",1272.17,"{\""loyalty\"": \""25%\""}",203803,1,"""South America""" +2023-08-14,58833,6283,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",654.35,{},212753,0,"""South America""" +2024-10-07,58834,4673,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4406.87,{},127580,0,"""Africa""" +2023-11-29,58835,6737,"[\""Charger\"", \""Monitor\""]",4103.11,{},286287,0,"""South America""" +2024-02-18,58836,8662,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1648.96,"{\""promo\"": \""13%\""}",67715,1,"""North America""" +2024-01-29,58837,4812,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1474.61,{},264597,1,"""Africa""" +2023-02-09,58838,3702,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1514.66,{},48342,0,"""North America""" +2024-12-06,58839,7589,"[\""Wireless Mouse\""]",571.45,{},273352,1,"""Africa""" +2023-02-03,58840,2207,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4330.1,"{\""loyalty\"": \""20%\""}",194376,1,"""North America""" +2023-04-15,58841,6759,"[\""Monitor\""]",1938.09,{},290842,1,"""Europe""" +2024-02-05,58842,7658,"[\""Monitor\"", \""Wireless Mouse\""]",2343.24,"{\"": \""14%\""}",1849,0,"""Asia""" +2024-12-11,58843,5420,"[\""Phone\""]",1509.9,{},120040,0,"""South America""" +2024-04-30,58844,4832,"[\""Keyboard\"", \""Headphones\""]",1927.44,"{\""loyalty\"": \""22%\""}",38741,0,"""Africa""" +2024-07-09,58845,7476,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4664.63,{},24045,0,"""Europe""" +2023-12-16,58846,2135,"[\""Headphones\""]",1183.47,{},299612,1,"""Africa""" +2024-03-07,58847,3670,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4142.21,{},232137,1,"""South America""" +2023-08-13,58848,7264,"[\""Charger\""]",2708.39,"{\""promo\"": \""24%\""}",134969,0,"""Europe""" +2023-12-23,58849,9893,"[\""Wireless Mouse\"", \""Monitor\""]",3557.74,"{\"": \""29%\""}",91701,0,"""Africa""" +2024-10-24,58850,7097,"[\""Keyboard\""]",4560.57,{},148274,0,"""Asia""" +2024-06-03,58851,4673,"[\""Tablet\""]",1224.0,{},66063,1,"""Europe""" +2024-03-30,58852,6507,"[\""Monitor\""]",3519.57,{},235676,1,"""Asia""" +2024-04-16,58853,8260,"[\""Wireless Mouse\""]",2976.17,"{\""loyalty\"": \""12%\""}",288902,0,"""Africa""" +2024-01-29,58854,1595,"[\""Laptop\""]",3135.26,"{\"": \""29%\""}",188917,0,"""North America""" +2024-04-17,58855,6487,"[\""Phone\"", \""Headphones\""]",3306.27,"{\"": \""21%\""}",291479,0,"""Asia""" +2024-12-07,58856,2514,"[\""Keyboard\"", \""Tablet\""]",2216.59,"{\""loyalty\"": \""9%\""}",154834,1,"""Asia""" +2024-06-27,58857,3602,"[\""Charger\""]",4423.9,"{\""seasonal\"": \""28%\""}",139550,0,"""Europe""" +2023-03-08,58858,7179,"[\""Laptop\""]",3797.26,{},62564,0,"""Africa""" +2024-12-20,58859,7267,"[\""Charger\""]",3756.37,"{\""loyalty\"": \""21%\""}",94571,0,"""North America""" +2024-04-23,58860,5327,"[\""Tablet\"", \""Monitor\""]",985.74,"{\""loyalty\"": \""14%\""}",5038,0,"""Africa""" +2024-01-29,58861,5729,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3492.27,{},252413,0,"""Europe""" +2024-03-16,58862,9396,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3323.94,{},242830,1,"""South America""" +2024-11-28,58863,8247,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3676.69,{},133608,1,"""Europe""" +2023-09-28,58864,5647,"[\""Headphones\"", \""Tablet\""]",2316.83,"{\""seasonal\"": \""8%\""}",256243,0,"""South America""" +2024-10-13,58865,7470,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3338.72,{},129352,0,"""North America""" +2023-02-06,58866,57,"[\""Charger\"", \""Tablet\""]",4048.99,"{\""loyalty\"": \""27%\""}",41253,0,"""Europe""" +2024-01-30,58867,3579,"[\""Tablet\"", \""Keyboard\""]",882.37,"{\"": \""5%\""}",268513,0,"""Europe""" +2024-11-03,58868,5022,"[\""Headphones\"", \""Tablet\""]",1968.13,"{\""promo\"": \""11%\""}",177130,1,"""Asia""" +2023-12-26,58869,580,"[\""Monitor\"", \""Tablet\""]",2518.66,"{\""seasonal\"": \""22%\""}",84856,0,"""Asia""" +2023-02-24,58870,2059,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",335.89,{},129153,1,"""Asia""" +2024-07-10,58871,571,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",384.33,"{\""promo\"": \""12%\""}",68353,1,"""Africa""" +2023-11-30,58872,1095,"[\""Phone\"", \""Headphones\""]",1909.66,{},299554,1,"""South America""" +2024-10-03,58873,1726,"[\""Headphones\"", \""Wireless Mouse\""]",3323.52,{},184610,1,"""North America""" +2024-03-21,58874,763,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",566.05,{},128342,0,"""Europe""" +2023-01-24,58875,6942,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3142.23,"{\""seasonal\"": \""16%\""}",259554,0,"""South America""" +2023-11-15,58876,9769,"[\""Headphones\"", \""Wireless Mouse\""]",3155.62,{},49161,0,"""Asia""" +2024-10-02,58877,6024,"[\""Headphones\""]",506.49,{},257104,1,"""Europe""" +2023-04-30,58878,9321,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",894.43,{},296945,0,"""North America""" +2024-07-21,58879,3651,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",600.55,"{\""promo\"": \""24%\""}",135697,1,"""South America""" +2024-08-25,58880,6080,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2976.71,"{\""seasonal\"": \""26%\""}",259220,0,"""South America""" +2023-09-15,58881,4957,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1244.9,"{\""promo\"": \""19%\""}",65265,0,"""South America""" +2024-01-25,58882,2847,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2668.13,"{\"": \""13%\""}",167734,1,"""South America""" +2023-08-06,58883,5902,"[\""Monitor\""]",2897.23,{},42133,1,"""South America""" +2023-06-23,58884,7063,"[\""Keyboard\"", \""Monitor\""]",3120.14,{},140678,0,"""South America""" +2024-12-07,58885,4959,"[\""Phone\""]",2561.57,"{\""loyalty\"": \""14%\""}",217453,1,"""Europe""" +2024-08-12,58886,1121,"[\""Charger\"", \""Laptop\""]",478.71,{},188792,0,"""Europe""" +2024-05-15,58887,32,"[\""Phone\""]",1064.32,{},119068,1,"""Europe""" +2024-01-16,58888,3869,"[\""Keyboard\""]",694.7,{},43173,0,"""Africa""" +2023-09-13,58889,2111,"[\""Phone\"", \""Tablet\""]",2392.21,"{\"": \""20%\""}",215921,0,"""Asia""" +2023-10-03,58890,4664,"[\""Wireless Mouse\"", \""Phone\""]",4690.48,"{\""loyalty\"": \""19%\""}",157168,1,"""Asia""" +2023-08-30,58891,3896,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1153.65,"{\""seasonal\"": \""25%\""}",10921,1,"""North America""" +2023-12-03,58892,6672,"[\""Monitor\""]",1680.18,"{\"": \""7%\""}",230463,1,"""South America""" +2023-05-25,58893,6249,"[\""Headphones\""]",2614.46,{},199738,0,"""North America""" +2024-04-10,58894,6591,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3504.83,{},50921,0,"""South America""" +2024-12-29,58895,2663,"[\""Charger\"", \""Headphones\""]",1553.2,"{\""seasonal\"": \""10%\""}",137147,0,"""Africa""" +2024-01-02,58896,4252,"[\""Monitor\"", \""Laptop\""]",370.03,"{\""promo\"": \""18%\""}",196894,1,"""Asia""" +2023-02-21,58897,5380,"[\""Keyboard\"", \""Charger\""]",3090.87,"{\"": \""18%\""}",119258,1,"""North America""" +2024-11-07,58898,5177,"[\""Monitor\"", \""Keyboard\""]",4831.26,{},210555,1,"""Europe""" +2024-01-16,58899,8227,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2259.42,{},292282,1,"""Africa""" +2023-04-15,58900,5988,"[\""Keyboard\"", \""Charger\""]",3537.83,{},55992,1,"""South America""" +2023-05-30,58901,5797,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3307.25,"{\""promo\"": \""25%\""}",233812,0,"""North America""" +2023-03-03,58902,5395,"[\""Phone\"", \""Monitor\""]",1541.16,"{\"": \""13%\""}",294425,0,"""Europe""" +2023-10-17,58903,20,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1148.5,{},63033,0,"""Asia""" +2024-09-29,58904,5258,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",890.95,"{\""loyalty\"": \""11%\""}",93702,1,"""Africa""" +2023-06-28,58905,3085,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",707.79,"{\""seasonal\"": \""9%\""}",103811,0,"""North America""" +2023-02-02,58906,5736,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3509.97,"{\""promo\"": \""28%\""}",107782,1,"""South America""" +2023-11-19,58907,4224,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2112.23,"{\""loyalty\"": \""28%\""}",270031,0,"""Africa""" +2023-05-27,58908,537,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3588.07,"{\""loyalty\"": \""21%\""}",196680,1,"""South America""" +2024-04-14,58909,527,"[\""Keyboard\""]",1167.8,{},298398,0,"""Europe""" +2023-11-30,58910,8673,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3010.17,"{\""seasonal\"": \""9%\""}",20923,0,"""Africa""" +2024-09-22,58911,1371,"[\""Charger\"", \""Laptop\""]",3650.57,{},63463,1,"""South America""" +2024-06-09,58912,8557,"[\""Monitor\""]",2365.87,{},135181,0,"""North America""" +2024-05-03,58913,505,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4514.57,"{\""seasonal\"": \""10%\""}",249043,0,"""Asia""" +2023-04-21,58914,2022,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3639.68,{},247708,0,"""North America""" +2024-12-18,58915,8368,"[\""Charger\""]",4062.31,"{\""seasonal\"": \""24%\""}",60067,1,"""North America""" +2024-03-27,58916,9261,"[\""Tablet\""]",2363.24,{},292719,1,"""Asia""" +2023-12-03,58917,2415,"[\""Phone\"", \""Headphones\""]",1543.46,"{\"": \""26%\""}",114948,0,"""South America""" +2023-01-19,58918,6296,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",550.3,{},288222,0,"""North America""" +2023-04-09,58919,9729,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",344.36,"{\""promo\"": \""12%\""}",100516,1,"""North America""" +2023-11-28,58920,69,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3016.22,{},192693,0,"""South America""" +2023-11-28,58921,1746,"[\""Charger\""]",2818.02,{},166236,1,"""Asia""" +2024-12-15,58922,8067,"[\""Headphones\"", \""Keyboard\""]",3496.98,{},174714,0,"""Asia""" +2023-05-13,58923,6837,"[\""Charger\""]",836.98,"{\""loyalty\"": \""14%\""}",79803,0,"""Europe""" +2024-08-25,58924,7903,"[\""Wireless Mouse\"", \""Phone\""]",1899.33,{},182680,0,"""Africa""" +2023-06-28,58925,430,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",358.7,"{\"": \""27%\""}",228189,0,"""Africa""" +2023-10-12,58926,9869,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1771.21,{},64639,0,"""South America""" +2023-05-17,58927,1924,"[\""Laptop\"", \""Wireless Mouse\""]",4560.31,"{\"": \""30%\""}",279758,0,"""North America""" +2023-08-22,58928,2714,"[\""Laptop\"", \""Headphones\""]",3638.71,{},230776,0,"""Asia""" +2023-10-15,58929,1605,"[\""Wireless Mouse\""]",3474.89,{},3571,1,"""Europe""" +2023-10-19,58930,1643,"[\""Phone\""]",2937.18,"{\""promo\"": \""5%\""}",124226,0,"""Europe""" +2024-07-26,58931,9426,"[\""Headphones\""]",4884.8,"{\""seasonal\"": \""6%\""}",147036,0,"""North America""" +2023-08-22,58932,382,"[\""Laptop\""]",4902.57,{},111675,1,"""Africa""" +2024-05-23,58933,6370,"[\""Charger\""]",3331.02,{},180271,1,"""Africa""" +2024-11-20,58934,6591,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2944.55,"{\""loyalty\"": \""26%\""}",66963,1,"""Europe""" +2023-11-18,58935,8835,"[\""Headphones\""]",3982.84,{},267937,0,"""South America""" +2024-01-23,58936,1345,"[\""Laptop\""]",3316.12,"{\""seasonal\"": \""13%\""}",289596,1,"""South America""" +2024-12-17,58937,9572,"[\""Wireless Mouse\""]",3907.77,{},237997,0,"""Africa""" +2023-02-28,58938,8084,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2429.81,{},238911,0,"""Africa""" +2024-11-20,58939,2274,"[\""Tablet\""]",940.03,"{\""promo\"": \""27%\""}",245058,1,"""North America""" +2024-06-21,58940,9698,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4110.37,{},265823,0,"""Europe""" +2024-01-29,58941,5193,"[\""Wireless Mouse\""]",546.47,{},86090,1,"""South America""" +2024-04-17,58942,6349,"[\""Headphones\"", \""Phone\""]",4594.25,"{\""loyalty\"": \""20%\""}",69584,1,"""Africa""" +2024-01-02,58943,3237,"[\""Monitor\""]",1961.22,{},180231,0,"""Africa""" +2023-09-13,58944,8640,"[\""Tablet\"", \""Monitor\""]",3741.07,"{\""loyalty\"": \""7%\""}",159884,1,"""South America""" +2023-10-09,58945,9960,"[\""Keyboard\""]",2982.65,{},44120,0,"""Asia""" +2024-07-25,58946,8965,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1517.2,"{\""promo\"": \""25%\""}",173100,1,"""South America""" +2023-11-01,58947,3208,"[\""Wireless Mouse\""]",1932.88,"{\""promo\"": \""24%\""}",19041,1,"""Europe""" +2023-10-12,58948,353,"[\""Monitor\"", \""Keyboard\""]",3516.67,"{\"": \""22%\""}",117578,0,"""South America""" +2023-09-09,58949,3484,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1019.05,{},279716,1,"""South America""" +2023-05-30,58950,8840,"[\""Tablet\""]",3645.5,"{\"": \""15%\""}",5289,0,"""Africa""" +2023-03-10,58951,5184,"[\""Tablet\""]",2972.68,{},278689,1,"""North America""" +2024-05-29,58952,6947,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2334.92,{},8587,1,"""Africa""" +2023-03-15,58953,4524,"[\""Wireless Mouse\"", \""Laptop\""]",1112.58,"{\""promo\"": \""12%\""}",66109,0,"""Africa""" +2023-02-24,58954,4544,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",257.74,"{\"": \""29%\""}",250394,1,"""Africa""" +2023-12-08,58955,693,"[\""Charger\""]",374.86,"{\"": \""18%\""}",44028,0,"""Europe""" +2024-03-05,58956,5793,"[\""Charger\"", \""Keyboard\""]",83.59,{},98676,0,"""Europe""" +2024-06-17,58957,1735,"[\""Charger\"", \""Monitor\""]",2110.52,{},185087,0,"""Europe""" +2023-06-10,58958,908,"[\""Keyboard\"", \""Laptop\""]",3763.0,"{\""seasonal\"": \""15%\""}",165128,0,"""South America""" +2024-03-14,58959,4077,"[\""Keyboard\""]",2016.35,{},68497,1,"""Asia""" +2023-02-06,58960,4241,"[\""Tablet\""]",3361.79,"{\""seasonal\"": \""30%\""}",153245,1,"""Asia""" +2023-01-13,58961,9933,"[\""Tablet\"", \""Headphones\""]",2154.19,"{\""promo\"": \""24%\""}",210780,1,"""Africa""" +2024-09-02,58962,3721,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",309.92,{},30734,1,"""Africa""" +2024-04-08,58963,3009,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2571.12,{},6783,0,"""Africa""" +2024-07-29,58964,2653,"[\""Monitor\"", \""Headphones\""]",719.64,"{\"": \""27%\""}",176388,0,"""North America""" +2023-03-21,58965,2989,"[\""Charger\""]",2337.37,{},184962,0,"""Africa""" +2023-01-05,58966,6210,"[\""Monitor\""]",4978.93,{},72195,0,"""Africa""" +2024-08-22,58967,9807,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2007.15,{},242459,1,"""North America""" +2024-07-21,58968,1190,"[\""Monitor\"", \""Laptop\""]",2310.53,"{\"": \""10%\""}",264992,1,"""Africa""" +2024-11-10,58969,6407,"[\""Phone\"", \""Keyboard\""]",3675.29,"{\""promo\"": \""26%\""}",126487,1,"""South America""" +2024-07-19,58970,8096,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3793.46,"{\"": \""10%\""}",71822,0,"""Africa""" +2023-10-03,58971,8216,"[\""Laptop\""]",3874.11,"{\""promo\"": \""19%\""}",278739,1,"""Asia""" +2024-11-08,58972,847,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2332.7,{},78860,1,"""Africa""" +2024-05-20,58973,4880,"[\""Monitor\""]",3326.82,"{\""promo\"": \""30%\""}",155314,0,"""Europe""" +2023-09-17,58974,1335,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2890.32,{},98875,0,"""Africa""" +2023-01-08,58975,7776,"[\""Tablet\"", \""Wireless Mouse\""]",1842.95,{},226810,0,"""Africa""" +2023-04-14,58976,3994,"[\""Charger\""]",2042.69,"{\""promo\"": \""22%\""}",289402,1,"""Africa""" +2024-09-18,58977,8067,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3740.34,"{\""seasonal\"": \""13%\""}",261577,0,"""Africa""" +2024-01-04,58978,9466,"[\""Laptop\"", \""Monitor\""]",2352.6,{},43852,0,"""South America""" +2024-11-20,58979,1076,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3769.74,{},225952,1,"""Europe""" +2023-03-14,58980,540,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3066.13,{},215598,0,"""South America""" +2023-08-18,58981,1029,"[\""Wireless Mouse\"", \""Charger\""]",2120.74,{},222569,1,"""Asia""" +2023-10-17,58982,9637,"[\""Tablet\""]",4191.88,"{\"": \""14%\""}",248695,1,"""Europe""" +2023-03-10,58983,6194,"[\""Headphones\""]",4726.09,{},72882,1,"""Asia""" +2024-07-31,58984,1200,"[\""Monitor\""]",2837.43,{},76323,0,"""Asia""" +2023-02-03,58985,1572,"[\""Laptop\""]",4255.67,"{\""promo\"": \""20%\""}",255532,0,"""South America""" +2023-01-11,58986,4863,"[\""Keyboard\""]",3134.37,"{\""loyalty\"": \""21%\""}",160940,1,"""Europe""" +2023-03-19,58987,6732,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2693.46,{},62435,0,"""Asia""" +2023-03-07,58988,9482,"[\""Headphones\""]",4965.96,"{\""promo\"": \""14%\""}",215028,0,"""Europe""" +2024-09-08,58989,4425,"[\""Wireless Mouse\""]",2705.46,{},226403,1,"""Asia""" +2023-06-21,58990,1581,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",404.81,{},263327,0,"""Asia""" +2024-06-15,58991,7520,"[\""Laptop\"", \""Headphones\""]",3312.36,{},103930,0,"""Asia""" +2024-04-17,58992,9711,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1108.85,{},189396,1,"""Asia""" +2023-10-18,58993,5563,"[\""Monitor\""]",1356.06,"{\""seasonal\"": \""17%\""}",60794,1,"""North America""" +2024-01-13,58994,2351,"[\""Keyboard\""]",1384.64,{},61931,0,"""Asia""" +2024-04-30,58995,6801,"[\""Laptop\"", \""Keyboard\""]",1278.21,"{\""seasonal\"": \""28%\""}",152624,1,"""South America""" +2024-06-25,58996,1243,"[\""Tablet\"", \""Wireless Mouse\""]",3869.65,"{\"": \""25%\""}",149300,0,"""Asia""" +2024-01-13,58997,3518,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4684.48,{},139589,1,"""South America""" +2023-08-27,58998,699,"[\""Laptop\"", \""Phone\""]",3752.6,{},219513,0,"""South America""" +2024-09-23,58999,2403,"[\""Keyboard\""]",556.45,"{\""seasonal\"": \""24%\""}",158386,0,"""Asia""" +2024-08-21,59000,7400,"[\""Tablet\""]",1356.47,{},23238,1,"""South America""" +2023-08-26,59001,3436,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",624.66,{},208536,0,"""Africa""" +2023-07-22,59002,6040,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2590.91,{},6256,1,"""Europe""" +2024-07-04,59003,5220,"[\""Wireless Mouse\""]",2642.41,"{\""promo\"": \""10%\""}",280162,1,"""North America""" +2023-04-25,59004,3205,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3539.31,"{\""promo\"": \""23%\""}",126834,0,"""North America""" +2023-03-28,59005,3946,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",203.12,{},256441,1,"""Europe""" +2024-07-03,59006,519,"[\""Monitor\""]",1558.39,{},31619,1,"""North America""" +2024-07-27,59007,1981,"[\""Wireless Mouse\""]",2012.22,{},166132,1,"""South America""" +2023-11-02,59008,3671,"[\""Phone\""]",2937.06,{},222352,0,"""Africa""" +2023-03-25,59009,8928,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4730.58,{},131296,1,"""North America""" +2024-11-10,59010,3004,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1754.16,{},289388,0,"""Africa""" +2023-12-23,59011,2005,"[\""Laptop\"", \""Keyboard\""]",2818.93,"{\"": \""6%\""}",123822,0,"""North America""" +2024-10-14,59012,3836,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",765.68,"{\"": \""26%\""}",200478,0,"""Europe""" +2023-12-10,59013,7979,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3948.32,{},83663,1,"""North America""" +2023-01-16,59014,9252,"[\""Charger\"", \""Headphones\""]",4875.23,"{\""seasonal\"": \""5%\""}",291607,1,"""North America""" +2023-12-12,59015,8808,"[\""Phone\""]",1776.84,"{\""seasonal\"": \""27%\""}",89507,1,"""Africa""" +2023-03-11,59016,6909,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3744.81,{},279922,1,"""Africa""" +2023-05-13,59017,8797,"[\""Phone\""]",2476.49,"{\"": \""20%\""}",55028,1,"""South America""" +2024-05-28,59018,1169,"[\""Keyboard\""]",1221.41,"{\""promo\"": \""7%\""}",149478,1,"""South America""" +2024-11-20,59019,6366,"[\""Monitor\""]",4811.82,{},205132,1,"""Europe""" +2023-09-07,59020,5516,"[\""Headphones\""]",2849.24,{},238651,1,"""Asia""" +2023-01-29,59021,4501,"[\""Wireless Mouse\"", \""Monitor\""]",1610.07,{},273805,1,"""Europe""" +2023-08-29,59022,3742,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",816.54,"{\""seasonal\"": \""28%\""}",123272,0,"""Europe""" +2024-10-20,59023,5575,"[\""Tablet\""]",489.87,"{\""seasonal\"": \""9%\""}",111415,0,"""Asia""" +2024-12-16,59024,965,"[\""Keyboard\"", \""Phone\""]",2333.17,"{\"": \""26%\""}",255424,0,"""Europe""" +2024-09-09,59025,8258,"[\""Monitor\"", \""Charger\""]",2071.88,{},138514,0,"""Africa""" +2023-12-18,59026,7809,"[\""Laptop\""]",821.74,{},145558,0,"""North America""" +2024-05-12,59027,1884,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3943.2,{},44921,0,"""North America""" +2024-10-13,59028,4355,"[\""Charger\"", \""Tablet\""]",4955.66,"{\""loyalty\"": \""28%\""}",217335,1,"""South America""" +2023-10-05,59029,2441,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2635.05,"{\""seasonal\"": \""16%\""}",113352,1,"""South America""" +2023-06-29,59030,4044,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",138.4,{},81312,0,"""North America""" +2024-08-26,59031,8741,"[\""Laptop\""]",4256.28,{},190313,0,"""Asia""" +2024-04-09,59032,9962,"[\""Keyboard\""]",233.1,"{\""seasonal\"": \""11%\""}",267266,0,"""South America""" +2023-05-19,59033,3396,"[\""Headphones\""]",1284.49,{},266042,0,"""Asia""" +2023-11-20,59034,8841,"[\""Headphones\"", \""Phone\""]",1963.92,"{\""promo\"": \""26%\""}",123434,1,"""North America""" +2024-11-19,59035,3499,"[\""Tablet\"", \""Wireless Mouse\""]",4822.22,"{\""loyalty\"": \""11%\""}",210892,1,"""Asia""" +2024-04-04,59036,4054,"[\""Tablet\""]",2903.74,"{\""promo\"": \""15%\""}",52748,1,"""Asia""" +2023-09-23,59037,3000,"[\""Phone\"", \""Laptop\""]",2213.55,{},189102,1,"""Asia""" +2024-04-05,59038,1403,"[\""Headphones\""]",3896.97,"{\""seasonal\"": \""30%\""}",101608,1,"""South America""" +2024-04-24,59039,751,"[\""Monitor\""]",2633.7,{},177220,1,"""Asia""" +2023-06-30,59040,9318,"[\""Wireless Mouse\"", \""Laptop\""]",2770.19,{},120291,0,"""South America""" +2023-12-21,59041,5980,"[\""Tablet\"", \""Phone\""]",4187.45,"{\"": \""22%\""}",9498,1,"""South America""" +2024-09-15,59042,7723,"[\""Wireless Mouse\"", \""Monitor\""]",3979.01,"{\""promo\"": \""19%\""}",49168,1,"""South America""" +2024-01-10,59043,1393,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1847.72,{},255474,1,"""Europe""" +2023-03-09,59044,202,"[\""Phone\""]",832.73,"{\"": \""14%\""}",266110,1,"""Africa""" +2023-06-14,59045,3241,"[\""Phone\""]",1174.06,{},227706,0,"""Africa""" +2023-10-03,59046,2207,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4202.21,{},225478,0,"""Asia""" +2023-02-04,59047,5564,"[\""Headphones\""]",615.11,{},204887,1,"""South America""" +2023-11-11,59048,9256,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3582.65,"{\""loyalty\"": \""21%\""}",201259,0,"""Africa""" +2024-09-21,59049,3308,"[\""Charger\""]",3918.31,{},212364,0,"""South America""" +2024-05-19,59050,6255,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2966.28,{},172173,0,"""North America""" +2023-06-22,59051,1575,"[\""Phone\"", \""Charger\""]",1051.5,{},85326,1,"""Asia""" +2023-01-02,59052,9780,"[\""Laptop\""]",3876.21,{},214867,1,"""North America""" +2023-05-03,59053,4141,"[\""Monitor\""]",4635.54,{},130661,0,"""Europe""" +2024-08-06,59054,2953,"[\""Phone\"", \""Wireless Mouse\""]",476.17,"{\""promo\"": \""26%\""}",110958,1,"""Europe""" +2023-12-08,59055,2113,"[\""Wireless Mouse\""]",4818.82,{},24300,0,"""Europe""" +2024-07-20,59056,6606,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3045.77,{},168423,0,"""Africa""" +2023-12-06,59057,4378,"[\""Charger\""]",2215.77,"{\""seasonal\"": \""23%\""}",251495,0,"""North America""" +2024-05-23,59058,240,"[\""Headphones\""]",4842.18,"{\"": \""23%\""}",87989,1,"""Europe""" +2023-03-03,59059,6807,"[\""Laptop\"", \""Monitor\""]",3281.72,{},2037,1,"""Europe""" +2024-06-15,59060,2134,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",399.44,{},119786,0,"""South America""" +2024-09-29,59061,2660,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3815.63,{},248283,0,"""Asia""" +2024-04-11,59062,8732,"[\""Keyboard\"", \""Monitor\""]",4767.96,{},163334,1,"""Africa""" +2023-11-01,59063,4158,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1511.01,"{\""seasonal\"": \""24%\""}",211249,1,"""South America""" +2024-11-29,59064,870,"[\""Keyboard\""]",3713.12,"{\""promo\"": \""12%\""}",281791,0,"""South America""" +2024-04-18,59065,887,"[\""Laptop\"", \""Headphones\""]",1804.28,"{\""promo\"": \""21%\""}",133207,1,"""North America""" +2023-06-02,59066,1795,"[\""Keyboard\"", \""Headphones\""]",358.16,"{\"": \""12%\""}",157902,0,"""North America""" +2023-12-08,59067,5175,"[\""Headphones\""]",1031.15,"{\""promo\"": \""12%\""}",193710,1,"""Africa""" +2023-04-03,59068,4409,"[\""Laptop\""]",985.1,"{\"": \""11%\""}",65839,0,"""Asia""" +2024-11-22,59069,7443,"[\""Phone\""]",4223.54,"{\""loyalty\"": \""23%\""}",45547,1,"""South America""" +2024-12-01,59070,9052,"[\""Keyboard\""]",4937.82,{},57654,0,"""South America""" +2024-04-22,59071,47,"[\""Charger\""]",1026.13,{},266637,0,"""South America""" +2023-08-06,59072,6320,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1309.38,{},219091,1,"""Europe""" +2023-09-10,59073,9416,"[\""Phone\"", \""Monitor\""]",3893.49,{},130371,0,"""North America""" +2024-05-27,59074,3294,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2739.83,"{\""loyalty\"": \""7%\""}",83556,1,"""Africa""" +2023-09-19,59075,9326,"[\""Monitor\""]",2638.46,"{\"": \""18%\""}",213091,0,"""South America""" +2024-12-10,59076,8185,"[\""Monitor\"", \""Charger\""]",4527.81,"{\""loyalty\"": \""29%\""}",131482,0,"""Europe""" +2023-03-24,59077,1681,"[\""Laptop\""]",962.27,{},297309,0,"""South America""" +2023-07-08,59078,9096,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3879.02,"{\""seasonal\"": \""11%\""}",272777,0,"""North America""" +2024-09-13,59079,2370,"[\""Laptop\""]",2339.89,"{\""promo\"": \""18%\""}",120551,1,"""North America""" +2023-12-25,59080,9925,"[\""Wireless Mouse\""]",2902.62,"{\""promo\"": \""24%\""}",2775,0,"""Europe""" +2023-05-12,59081,1570,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",746.3,{},42030,1,"""South America""" +2024-11-28,59082,8527,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3995.14,{},61180,1,"""North America""" +2023-07-12,59083,8087,"[\""Keyboard\"", \""Laptop\""]",604.67,{},258051,0,"""South America""" +2023-11-15,59084,8608,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4632.33,"{\""loyalty\"": \""23%\""}",277197,0,"""South America""" +2024-05-10,59085,4675,"[\""Keyboard\"", \""Monitor\""]",678.95,{},71055,1,"""North America""" +2024-12-02,59086,1844,"[\""Wireless Mouse\""]",1609.57,"{\""loyalty\"": \""12%\""}",148732,1,"""Asia""" +2023-12-13,59087,1153,"[\""Phone\"", \""Monitor\""]",3109.9,"{\""seasonal\"": \""8%\""}",289465,1,"""Europe""" +2023-10-15,59088,3037,"[\""Monitor\"", \""Charger\""]",4158.59,{},9393,0,"""Europe""" +2024-05-26,59089,3617,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2499.56,"{\""seasonal\"": \""24%\""}",200700,0,"""Asia""" +2024-12-04,59090,7789,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3854.23,"{\""promo\"": \""29%\""}",136086,0,"""North America""" +2023-02-17,59091,2048,"[\""Laptop\""]",4389.8,{},190498,0,"""Europe""" +2023-10-19,59092,1747,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2420.47,{},258975,0,"""Europe""" +2024-08-25,59093,7952,"[\""Charger\"", \""Laptop\""]",4586.77,{},263769,0,"""North America""" +2024-01-29,59094,368,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3111.06,"{\""loyalty\"": \""22%\""}",186951,0,"""South America""" +2023-09-02,59095,6707,"[\""Wireless Mouse\""]",3806.51,{},279740,1,"""Asia""" +2024-07-31,59096,5484,"[\""Charger\""]",1412.69,{},10633,0,"""Asia""" +2023-07-13,59097,6582,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4653.3,"{\""seasonal\"": \""20%\""}",117015,0,"""Africa""" +2023-09-11,59098,3755,"[\""Wireless Mouse\"", \""Keyboard\""]",3142.16,"{\""loyalty\"": \""21%\""}",239230,1,"""North America""" +2023-03-25,59099,4171,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1399.89,"{\""loyalty\"": \""29%\""}",24106,0,"""Africa""" +2023-04-26,59100,9159,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",465.57,{},83356,0,"""North America""" +2023-04-14,59101,4356,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3919.2,"{\""promo\"": \""16%\""}",281079,1,"""Asia""" +2024-10-09,59102,7433,"[\""Wireless Mouse\"", \""Headphones\""]",4421.54,"{\"": \""7%\""}",270043,1,"""Asia""" +2023-09-05,59103,2648,"[\""Headphones\""]",985.85,"{\""loyalty\"": \""21%\""}",106089,1,"""North America""" +2024-07-23,59104,812,"[\""Keyboard\"", \""Charger\""]",1262.6,{},220960,0,"""Asia""" +2024-11-18,59105,1393,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2329.02,"{\"": \""26%\""}",45663,1,"""South America""" +2023-05-21,59106,7182,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1420.11,{},65852,0,"""North America""" +2024-05-22,59107,5853,"[\""Laptop\"", \""Keyboard\""]",753.05,{},131548,1,"""Africa""" +2023-10-17,59108,7378,"[\""Monitor\"", \""Tablet\""]",2650.87,{},277214,0,"""North America""" +2024-03-17,59109,8564,"[\""Tablet\"", \""Charger\""]",1494.74,"{\"": \""19%\""}",131156,0,"""Europe""" +2023-02-28,59110,9975,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",749.66,"{\"": \""6%\""}",3478,1,"""South America""" +2024-07-17,59111,68,"[\""Wireless Mouse\"", \""Monitor\""]",3775.72,{},175418,1,"""Africa""" +2023-03-17,59112,8595,"[\""Monitor\""]",1016.68,"{\""seasonal\"": \""17%\""}",127396,1,"""North America""" +2024-04-02,59113,8823,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2400.05,{},187338,0,"""South America""" +2024-01-07,59114,9823,"[\""Tablet\""]",1496.06,"{\""promo\"": \""6%\""}",57902,0,"""Asia""" +2023-11-29,59115,7814,"[\""Keyboard\"", \""Wireless Mouse\""]",1704.66,{},45353,0,"""Europe""" +2023-08-13,59116,5143,"[\""Phone\""]",894.54,{},170612,0,"""Africa""" +2023-12-03,59117,9121,"[\""Wireless Mouse\""]",2716.5,{},256894,1,"""Europe""" +2024-04-20,59118,9636,"[\""Laptop\"", \""Monitor\""]",2956.16,"{\"": \""19%\""}",254969,1,"""North America""" +2023-03-28,59119,1414,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4892.9,"{\""seasonal\"": \""6%\""}",244516,0,"""Africa""" +2024-04-12,59120,5904,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3724.32,{},59483,1,"""North America""" +2023-04-03,59121,7305,"[\""Phone\""]",2740.81,{},124027,0,"""Asia""" +2023-07-21,59122,8834,"[\""Phone\"", \""Tablet\""]",819.94,"{\"": \""10%\""}",295567,1,"""Africa""" +2024-08-08,59123,8763,"[\""Laptop\"", \""Wireless Mouse\""]",4427.77,{},260841,1,"""South America""" +2024-04-22,59124,7374,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",931.04,"{\""promo\"": \""15%\""}",204113,1,"""Asia""" +2024-06-06,59125,579,"[\""Headphones\""]",3109.28,"{\"": \""21%\""}",92431,1,"""South America""" +2023-02-11,59126,8401,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4403.22,{},127392,0,"""North America""" +2024-07-13,59127,6315,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",664.91,"{\""promo\"": \""11%\""}",273882,0,"""South America""" +2023-05-24,59128,547,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1171.31,{},106333,0,"""Europe""" +2023-02-14,59129,3994,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4685.55,{},84957,0,"""Europe""" +2024-03-24,59130,2222,"[\""Monitor\"", \""Charger\""]",4879.92,"{\"": \""20%\""}",24325,0,"""North America""" +2024-02-23,59131,5560,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1768.92,"{\""loyalty\"": \""25%\""}",47287,0,"""South America""" +2023-08-10,59132,2628,"[\""Monitor\"", \""Keyboard\""]",3292.09,{},95773,0,"""Europe""" +2023-01-02,59133,2362,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2292.04,{},113174,0,"""South America""" +2023-11-14,59134,8272,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1439.33,{},139014,0,"""North America""" +2023-01-23,59135,2169,"[\""Charger\"", \""Monitor\""]",4552.08,"{\"": \""20%\""}",8442,1,"""North America""" +2024-07-08,59136,756,"[\""Charger\""]",4590.94,{},61899,1,"""Europe""" +2024-02-03,59137,8782,"[\""Phone\"", \""Tablet\""]",4958.33,{},204213,1,"""Europe""" +2024-05-16,59138,9752,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4327.3,"{\""promo\"": \""20%\""}",53659,1,"""Asia""" +2024-02-28,59139,9525,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1611.62,{},13662,0,"""South America""" +2024-12-30,59140,499,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4186.78,"{\"": \""19%\""}",52045,1,"""South America""" +2024-08-19,59141,4608,"[\""Monitor\"", \""Keyboard\""]",3140.48,{},276801,1,"""Europe""" +2023-06-22,59142,7881,"[\""Keyboard\"", \""Charger\""]",502.29,{},45523,0,"""Africa""" +2024-02-28,59143,8545,"[\""Monitor\"", \""Headphones\""]",1743.15,{},278775,0,"""Africa""" +2023-06-27,59144,2577,"[\""Headphones\""]",1130.94,{},159844,0,"""Europe""" +2023-02-26,59145,1314,"[\""Headphones\""]",2098.98,{},145783,1,"""Africa""" +2023-05-08,59146,6547,"[\""Charger\"", \""Phone\""]",4480.39,"{\""promo\"": \""22%\""}",186361,0,"""Europe""" +2024-04-07,59147,5303,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",218.21,{},68569,1,"""South America""" +2023-02-19,59148,9278,"[\""Tablet\""]",216.78,{},15347,1,"""Africa""" +2024-02-19,59149,7030,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",757.52,{},57557,1,"""Europe""" +2024-10-21,59150,121,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",745.47,{},226058,0,"""North America""" +2024-09-29,59151,4835,"[\""Laptop\""]",695.53,{},287692,0,"""North America""" +2023-08-18,59152,4731,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4096.17,"{\""loyalty\"": \""8%\""}",179351,1,"""Africa""" +2024-05-05,59153,4911,"[\""Charger\""]",3388.14,"{\""seasonal\"": \""25%\""}",293549,1,"""South America""" +2023-11-30,59154,545,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4342.99,"{\"": \""15%\""}",260650,1,"""Asia""" +2024-10-24,59155,7231,"[\""Monitor\""]",4736.65,"{\""loyalty\"": \""23%\""}",177854,1,"""Africa""" +2023-12-01,59156,6684,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4810.21,"{\""promo\"": \""11%\""}",156883,0,"""North America""" +2023-03-25,59157,9133,"[\""Wireless Mouse\"", \""Keyboard\""]",4546.25,{},242282,1,"""Asia""" +2023-12-28,59158,2022,"[\""Laptop\""]",636.42,"{\""loyalty\"": \""28%\""}",139392,1,"""South America""" +2023-01-06,59159,8141,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1578.49,"{\"": \""8%\""}",1914,0,"""Europe""" +2024-05-28,59160,9259,"[\""Wireless Mouse\""]",3058.74,"{\""promo\"": \""5%\""}",128213,1,"""Asia""" +2023-03-07,59161,3048,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1853.85,"{\"": \""14%\""}",63247,0,"""Asia""" +2024-08-29,59162,1808,"[\""Monitor\""]",981.33,{},281265,1,"""North America""" +2024-08-03,59163,1522,"[\""Wireless Mouse\"", \""Monitor\""]",3705.26,"{\""loyalty\"": \""22%\""}",204874,0,"""North America""" +2023-10-09,59164,4233,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2501.9,{},296155,0,"""Africa""" +2023-01-24,59165,2549,"[\""Wireless Mouse\""]",3899.89,"{\""loyalty\"": \""25%\""}",18349,0,"""Africa""" +2024-10-28,59166,9854,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3643.37,"{\"": \""8%\""}",209621,1,"""Asia""" +2024-08-30,59167,7134,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2949.66,"{\"": \""26%\""}",215324,1,"""North America""" +2023-12-15,59168,9247,"[\""Phone\""]",1020.89,"{\""promo\"": \""9%\""}",291028,0,"""Europe""" +2024-05-08,59169,2174,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4342.35,{},192160,0,"""South America""" +2023-10-26,59170,2773,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3257.49,"{\""seasonal\"": \""28%\""}",143335,0,"""North America""" +2024-12-30,59171,3405,"[\""Keyboard\""]",4212.75,{},138919,0,"""Africa""" +2024-12-27,59172,958,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2903.58,{},172696,1,"""Asia""" +2024-12-03,59173,4300,"[\""Laptop\""]",4123.59,"{\"": \""13%\""}",260503,0,"""Asia""" +2024-04-15,59174,7893,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",940.28,{},290431,1,"""South America""" +2023-01-20,59175,4858,"[\""Phone\""]",1009.09,{},254737,0,"""Europe""" +2023-08-15,59176,562,"[\""Tablet\""]",4372.77,{},144700,1,"""South America""" +2023-01-02,59177,9105,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3787.46,"{\"": \""8%\""}",271969,1,"""Asia""" +2023-06-20,59178,9315,"[\""Phone\"", \""Laptop\""]",4734.98,"{\"": \""10%\""}",21413,1,"""North America""" +2024-03-25,59179,1454,"[\""Laptop\"", \""Tablet\""]",2617.25,"{\""seasonal\"": \""17%\""}",62288,0,"""North America""" +2023-05-22,59180,1169,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1891.08,{},104588,1,"""Asia""" +2023-08-09,59181,8387,"[\""Wireless Mouse\""]",2305.23,{},7033,0,"""South America""" +2024-12-06,59182,1418,"[\""Headphones\""]",3465.27,"{\""seasonal\"": \""22%\""}",165506,1,"""Europe""" +2023-11-12,59183,2299,"[\""Laptop\""]",385.93,"{\"": \""28%\""}",55435,1,"""Asia""" +2024-03-17,59184,4617,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3293.43,{},293142,0,"""North America""" +2024-06-22,59185,9052,"[\""Tablet\"", \""Charger\""]",1988.98,{},257609,1,"""North America""" +2024-05-10,59186,4259,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2324.27,"{\"": \""8%\""}",184551,1,"""North America""" +2024-11-19,59187,5399,"[\""Headphones\"", \""Monitor\""]",4460.28,{},34929,0,"""North America""" +2024-05-20,59188,777,"[\""Keyboard\""]",4840.97,"{\""seasonal\"": \""20%\""}",128117,1,"""South America""" +2024-04-29,59189,4630,"[\""Wireless Mouse\"", \""Laptop\""]",4078.47,{},101963,1,"""Europe""" +2024-09-19,59190,8667,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",364.67,"{\"": \""20%\""}",230268,1,"""Asia""" +2023-09-10,59191,8826,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",272.78,{},17907,1,"""South America""" +2024-03-02,59192,5168,"[\""Wireless Mouse\"", \""Headphones\""]",2037.93,{},97700,1,"""Europe""" +2024-06-18,59193,4124,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2977.29,"{\""loyalty\"": \""13%\""}",28145,1,"""Europe""" +2023-08-12,59194,4701,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",602.51,"{\"": \""23%\""}",78547,0,"""North America""" +2024-09-10,59195,4933,"[\""Tablet\""]",1605.75,"{\""promo\"": \""11%\""}",264385,0,"""Europe""" +2023-07-01,59196,189,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2026.96,"{\""seasonal\"": \""20%\""}",287775,1,"""South America""" +2023-12-24,59197,6674,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4167.51,"{\""seasonal\"": \""25%\""}",54366,1,"""South America""" +2024-04-23,59198,9056,"[\""Phone\"", \""Monitor\""]",1596.51,{},179162,1,"""South America""" +2024-03-23,59199,4722,"[\""Keyboard\"", \""Monitor\""]",2224.47,"{\""promo\"": \""25%\""}",27223,1,"""Africa""" +2023-01-28,59200,6814,"[\""Phone\""]",2005.47,{},214135,0,"""South America""" +2023-08-27,59201,1045,"[\""Tablet\"", \""Charger\""]",2597.89,"{\""seasonal\"": \""18%\""}",286278,0,"""Asia""" +2023-10-09,59202,5473,"[\""Wireless Mouse\""]",3668.34,"{\""promo\"": \""23%\""}",120579,1,"""Asia""" +2024-02-22,59203,6711,"[\""Tablet\""]",3322.13,"{\""promo\"": \""25%\""}",281366,0,"""Asia""" +2024-07-11,59204,1437,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3663.29,"{\""loyalty\"": \""28%\""}",13221,0,"""South America""" +2023-03-08,59205,1122,"[\""Keyboard\"", \""Charger\""]",2993.51,"{\"": \""29%\""}",122514,0,"""South America""" +2024-10-09,59206,7736,"[\""Laptop\"", \""Keyboard\""]",3480.02,"{\""promo\"": \""10%\""}",122474,1,"""Europe""" +2023-09-04,59207,1044,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3797.66,"{\"": \""21%\""}",252376,0,"""Europe""" +2024-01-30,59208,6614,"[\""Tablet\""]",1450.65,"{\"": \""24%\""}",252422,1,"""Africa""" +2024-09-07,59209,1473,"[\""Monitor\""]",1171.95,"{\""seasonal\"": \""29%\""}",207740,1,"""South America""" +2023-08-01,59210,4039,"[\""Tablet\""]",2115.99,{},108754,1,"""Africa""" +2023-07-21,59211,3799,"[\""Keyboard\"", \""Phone\""]",2472.29,"{\""loyalty\"": \""8%\""}",258576,0,"""North America""" +2023-03-03,59212,7947,"[\""Keyboard\"", \""Charger\""]",2236.88,"{\""promo\"": \""12%\""}",251368,1,"""Asia""" +2023-05-31,59213,6017,"[\""Keyboard\""]",2407.89,{},275675,1,"""Asia""" +2023-12-29,59214,532,"[\""Tablet\""]",1415.09,"{\""promo\"": \""27%\""}",261455,0,"""Africa""" +2024-04-28,59215,9734,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1877.7,"{\""seasonal\"": \""11%\""}",21004,1,"""Europe""" +2024-10-18,59216,9153,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2751.23,"{\""seasonal\"": \""27%\""}",95450,0,"""Africa""" +2023-11-25,59217,4186,"[\""Monitor\"", \""Phone\""]",3237.91,"{\""promo\"": \""12%\""}",127345,1,"""Africa""" +2024-03-02,59218,446,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1838.83,{},112138,0,"""Europe""" +2023-12-31,59219,2168,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4439.85,{},98682,1,"""North America""" +2023-09-02,59220,6263,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2345.83,{},70248,1,"""North America""" +2023-04-20,59221,5036,"[\""Laptop\"", \""Phone\""]",2939.7,"{\""seasonal\"": \""19%\""}",237979,1,"""South America""" +2023-05-11,59222,1348,"[\""Keyboard\"", \""Phone\""]",226.15,"{\""loyalty\"": \""20%\""}",299483,0,"""Europe""" +2024-12-18,59223,1911,"[\""Monitor\"", \""Laptop\""]",740.44,{},44821,1,"""Europe""" +2024-03-26,59224,8269,"[\""Headphones\"", \""Laptop\""]",1062.97,"{\""loyalty\"": \""25%\""}",266554,1,"""Europe""" +2024-11-16,59225,7308,"[\""Laptop\""]",1932.26,{},224561,1,"""Africa""" +2023-11-03,59226,8214,"[\""Wireless Mouse\"", \""Laptop\""]",4258.73,{},12789,0,"""Africa""" +2023-07-07,59227,452,"[\""Charger\""]",2297.55,{},144769,1,"""Europe""" +2024-06-21,59228,8363,"[\""Wireless Mouse\""]",3419.04,"{\""seasonal\"": \""16%\""}",293939,1,"""South America""" +2024-12-09,59229,4292,"[\""Monitor\"", \""Headphones\""]",564.3,"{\"": \""9%\""}",226562,0,"""Africa""" +2023-12-12,59230,4319,"[\""Headphones\""]",1409.35,"{\"": \""25%\""}",155298,0,"""Asia""" +2023-12-21,59231,6564,"[\""Charger\"", \""Headphones\""]",1617.8,{},248336,0,"""Europe""" +2024-05-15,59232,2343,"[\""Charger\""]",1829.73,{},84525,0,"""South America""" +2024-07-16,59233,611,"[\""Keyboard\""]",3959.31,"{\"": \""29%\""}",248123,0,"""Africa""" +2024-09-07,59234,3213,"[\""Monitor\""]",111.73,{},86251,0,"""Africa""" +2023-08-18,59235,7235,"[\""Headphones\""]",2088.09,{},224559,1,"""Asia""" +2023-11-17,59236,3559,"[\""Phone\"", \""Headphones\""]",4683.92,"{\""seasonal\"": \""6%\""}",217060,0,"""Asia""" +2023-12-19,59237,9096,"[\""Headphones\""]",3926.16,{},221785,0,"""Europe""" +2023-09-06,59238,8351,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2776.32,{},234989,1,"""Asia""" +2024-06-28,59239,9473,"[\""Headphones\""]",954.6,"{\""loyalty\"": \""8%\""}",50458,1,"""Asia""" +2023-06-03,59240,2900,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",686.78,"{\"": \""21%\""}",183550,0,"""Africa""" +2023-10-31,59241,3558,"[\""Tablet\""]",466.52,"{\"": \""17%\""}",202756,1,"""South America""" +2024-01-24,59242,5979,"[\""Laptop\""]",2092.96,"{\""promo\"": \""7%\""}",67517,1,"""North America""" +2023-01-24,59243,9508,"[\""Phone\"", \""Tablet\""]",1187.62,{},282017,1,"""Asia""" +2023-08-01,59244,9216,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3428.66,"{\""promo\"": \""21%\""}",15358,1,"""Europe""" +2023-10-28,59245,6866,"[\""Tablet\"", \""Wireless Mouse\""]",4280.32,"{\""seasonal\"": \""5%\""}",290545,1,"""North America""" +2024-02-17,59246,8932,"[\""Monitor\"", \""Headphones\""]",1856.35,{},221791,1,"""Africa""" +2023-03-05,59247,1254,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1280.12,"{\""loyalty\"": \""24%\""}",127821,1,"""North America""" +2024-09-24,59248,5633,"[\""Phone\""]",3110.86,{},164543,0,"""Asia""" +2023-10-01,59249,1660,"[\""Monitor\""]",1199.44,"{\""promo\"": \""20%\""}",63055,0,"""Africa""" +2024-08-20,59250,2721,"[\""Wireless Mouse\"", \""Monitor\""]",2022.47,{},176280,1,"""Europe""" +2023-07-21,59251,9572,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2558.97,"{\"": \""5%\""}",177527,1,"""Africa""" +2024-06-26,59252,4676,"[\""Laptop\""]",911.77,{},201686,0,"""Europe""" +2023-07-17,59253,4615,"[\""Tablet\""]",58.54,"{\""seasonal\"": \""5%\""}",255224,1,"""Asia""" +2024-01-31,59254,1777,"[\""Monitor\"", \""Tablet\""]",4032.74,"{\""loyalty\"": \""10%\""}",56821,1,"""Asia""" +2024-05-04,59255,1240,"[\""Keyboard\"", \""Monitor\""]",4961.97,"{\""seasonal\"": \""19%\""}",199733,1,"""South America""" +2023-09-06,59256,5574,"[\""Wireless Mouse\"", \""Monitor\""]",4428.18,{},266639,0,"""Europe""" +2024-08-29,59257,9340,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4858.23,{},184138,1,"""Europe""" +2023-02-28,59258,965,"[\""Laptop\"", \""Phone\""]",3045.62,"{\""promo\"": \""25%\""}",273572,0,"""Asia""" +2023-02-03,59259,3990,"[\""Tablet\"", \""Headphones\""]",3799.87,{},299709,1,"""South America""" +2024-04-27,59260,7528,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1991.14,{},182027,0,"""South America""" +2023-08-18,59261,6927,"[\""Keyboard\""]",1770.6,"{\"": \""22%\""}",50089,1,"""Africa""" +2023-07-20,59262,7114,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4586.0,"{\""promo\"": \""15%\""}",146360,1,"""Africa""" +2023-10-22,59263,7633,"[\""Wireless Mouse\"", \""Monitor\""]",4955.18,"{\""promo\"": \""20%\""}",209130,0,"""Europe""" +2023-09-27,59264,7225,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2480.86,"{\""seasonal\"": \""22%\""}",106849,1,"""Africa""" +2023-10-22,59265,2423,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3792.65,{},212009,1,"""South America""" +2024-05-26,59266,9351,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2576.84,"{\"": \""8%\""}",157138,0,"""North America""" +2023-03-07,59267,5283,"[\""Monitor\""]",4753.02,"{\""seasonal\"": \""20%\""}",189424,0,"""South America""" +2024-03-07,59268,1824,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2148.04,"{\"": \""14%\""}",41401,0,"""Europe""" +2024-06-18,59269,9414,"[\""Tablet\""]",3745.96,"{\""promo\"": \""13%\""}",81228,0,"""South America""" +2023-09-10,59270,8880,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1158.12,"{\""seasonal\"": \""11%\""}",150245,0,"""Africa""" +2023-11-20,59271,6470,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3423.72,{},295527,0,"""Africa""" +2024-03-07,59272,3684,"[\""Headphones\""]",742.3,"{\"": \""23%\""}",28737,0,"""Asia""" +2023-07-23,59273,2991,"[\""Headphones\"", \""Phone\""]",4355.33,"{\"": \""8%\""}",213594,0,"""South America""" +2024-09-20,59274,257,"[\""Wireless Mouse\"", \""Headphones\""]",642.57,{},158908,1,"""Europe""" +2024-04-27,59275,8025,"[\""Charger\""]",994.12,"{\""loyalty\"": \""6%\""}",131386,1,"""North America""" +2023-08-29,59276,5195,"[\""Tablet\"", \""Keyboard\""]",827.81,{},243087,1,"""South America""" +2024-12-16,59277,1000,"[\""Headphones\""]",3481.02,{},64485,1,"""Europe""" +2024-03-21,59278,2101,"[\""Wireless Mouse\"", \""Laptop\""]",3608.37,{},170264,1,"""Africa""" +2023-06-22,59279,4461,"[\""Charger\"", \""Phone\""]",3988.21,"{\""seasonal\"": \""25%\""}",248317,1,"""North America""" +2024-05-03,59280,14,"[\""Phone\"", \""Headphones\""]",3401.36,"{\""seasonal\"": \""6%\""}",18504,0,"""North America""" +2023-03-19,59281,8582,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3723.85,"{\"": \""15%\""}",226878,1,"""Africa""" +2024-02-14,59282,530,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",161.34,{},8621,0,"""Africa""" +2023-11-02,59283,7160,"[\""Laptop\"", \""Charger\""]",2461.42,{},296477,0,"""South America""" +2023-07-21,59284,6749,"[\""Monitor\""]",1728.82,"{\""loyalty\"": \""26%\""}",212114,0,"""South America""" +2023-08-13,59285,2708,"[\""Phone\""]",2074.49,"{\""loyalty\"": \""15%\""}",46463,0,"""Europe""" +2024-07-11,59286,5103,"[\""Keyboard\"", \""Monitor\""]",4161.48,{},8043,1,"""South America""" +2023-08-29,59287,7504,"[\""Tablet\"", \""Headphones\""]",2880.2,{},65447,1,"""Asia""" +2023-09-03,59288,729,"[\""Charger\""]",4354.4,"{\""loyalty\"": \""29%\""}",33506,0,"""Asia""" +2023-11-30,59289,480,"[\""Charger\"", \""Phone\""]",2675.74,{},92376,0,"""South America""" +2023-12-08,59290,6030,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2374.43,{},200997,0,"""South America""" +2024-06-29,59291,864,"[\""Headphones\"", \""Monitor\""]",3480.55,{},166241,0,"""Africa""" +2023-03-01,59292,6240,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3709.33,"{\""seasonal\"": \""12%\""}",186510,1,"""Europe""" +2023-06-28,59293,6231,"[\""Keyboard\"", \""Laptop\""]",4026.15,{},144295,0,"""Africa""" +2023-09-01,59294,7691,"[\""Monitor\"", \""Keyboard\""]",4075.22,{},272916,0,"""Europe""" +2023-11-26,59295,5010,"[\""Tablet\"", \""Wireless Mouse\""]",611.27,{},11366,1,"""North America""" +2024-06-11,59296,4493,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1550.01,"{\"": \""10%\""}",148772,1,"""Africa""" +2023-10-23,59297,6766,"[\""Monitor\""]",138.89,"{\""loyalty\"": \""23%\""}",193238,1,"""North America""" +2023-12-04,59298,7041,"[\""Tablet\"", \""Headphones\""]",544.16,{},148709,1,"""Africa""" +2023-03-08,59299,9157,"[\""Headphones\"", \""Charger\""]",4086.61,{},105283,0,"""Africa""" +2024-01-14,59300,1886,"[\""Laptop\""]",4621.83,"{\"": \""11%\""}",74529,0,"""Africa""" +2024-06-03,59301,9092,"[\""Tablet\""]",2484.52,"{\""loyalty\"": \""15%\""}",229464,1,"""Europe""" +2023-11-22,59302,2031,"[\""Monitor\""]",349.34,"{\"": \""22%\""}",60151,0,"""Europe""" +2024-05-22,59303,3298,"[\""Wireless Mouse\"", \""Headphones\""]",3497.4,"{\"": \""19%\""}",65084,1,"""Europe""" +2023-01-12,59304,4226,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",354.22,{},48420,1,"""South America""" +2024-07-21,59305,5934,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2083.97,"{\""seasonal\"": \""27%\""}",136263,1,"""Asia""" +2024-12-03,59306,7700,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4765.51,"{\""loyalty\"": \""22%\""}",133996,0,"""Asia""" +2024-03-02,59307,2982,"[\""Wireless Mouse\""]",4935.72,"{\""loyalty\"": \""18%\""}",127741,0,"""Africa""" +2023-04-20,59308,6970,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2453.56,"{\""seasonal\"": \""7%\""}",38241,1,"""Africa""" +2023-01-03,59309,5751,"[\""Headphones\""]",1258.15,{},74979,1,"""Europe""" +2023-09-11,59310,9649,"[\""Wireless Mouse\""]",818.83,{},238604,0,"""Africa""" +2023-02-20,59311,118,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3279.49,{},168471,1,"""North America""" +2023-06-24,59312,3539,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",695.66,"{\""loyalty\"": \""12%\""}",206065,1,"""South America""" +2023-02-03,59313,8685,"[\""Wireless Mouse\"", \""Headphones\""]",988.29,{},85218,0,"""Europe""" +2023-12-26,59314,9842,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4938.76,"{\""loyalty\"": \""19%\""}",138030,0,"""South America""" +2023-03-18,59315,757,"[\""Phone\"", \""Wireless Mouse\""]",2306.14,"{\""seasonal\"": \""19%\""}",219287,1,"""South America""" +2023-09-04,59316,6283,"[\""Monitor\""]",3553.23,{},216527,1,"""Asia""" +2024-12-25,59317,641,"[\""Headphones\"", \""Tablet\""]",1760.06,{},142745,1,"""North America""" +2023-11-25,59318,9868,"[\""Laptop\""]",2464.35,{},267189,1,"""Asia""" +2023-01-08,59319,4582,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4906.22,{},155771,1,"""Asia""" +2023-12-30,59320,5052,"[\""Wireless Mouse\""]",4835.21,"{\""promo\"": \""29%\""}",220927,0,"""Africa""" +2023-01-10,59321,9890,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3403.24,{},1746,1,"""Africa""" +2024-11-23,59322,9296,"[\""Monitor\"", \""Charger\""]",4922.72,{},255594,0,"""Europe""" +2023-07-13,59323,8457,"[\""Charger\"", \""Laptop\""]",2531.21,"{\"": \""27%\""}",290946,0,"""Asia""" +2023-01-14,59324,6457,"[\""Tablet\"", \""Charger\""]",3451.05,{},40897,0,"""Africa""" +2024-02-05,59325,7824,"[\""Charger\""]",2268.33,"{\"": \""18%\""}",4297,1,"""South America""" +2023-05-05,59326,1135,"[\""Phone\"", \""Headphones\""]",657.94,{},173479,0,"""South America""" +2023-06-22,59327,8378,"[\""Tablet\""]",1314.81,"{\""seasonal\"": \""11%\""}",193460,1,"""Europe""" +2024-05-04,59328,7442,"[\""Wireless Mouse\""]",834.93,"{\""seasonal\"": \""9%\""}",208417,0,"""Asia""" +2023-06-06,59329,9166,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3224.74,"{\""seasonal\"": \""29%\""}",224566,0,"""Europe""" +2023-02-06,59330,7659,"[\""Headphones\""]",645.25,{},177617,0,"""Europe""" +2023-07-18,59331,6873,"[\""Laptop\"", \""Phone\""]",2163.78,{},116394,1,"""Africa""" +2024-11-25,59332,2925,"[\""Headphones\""]",4475.68,{},157382,1,"""Asia""" +2023-05-28,59333,7557,"[\""Keyboard\""]",3112.19,{},7104,0,"""Europe""" +2023-01-31,59334,7458,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4169.32,"{\""promo\"": \""24%\""}",215124,1,"""Europe""" +2024-09-23,59335,2504,"[\""Charger\""]",1250.68,"{\""loyalty\"": \""7%\""}",123535,0,"""North America""" +2024-08-22,59336,8813,"[\""Charger\""]",4677.19,"{\""promo\"": \""27%\""}",257751,0,"""North America""" +2024-06-19,59337,2155,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1982.75,"{\""promo\"": \""22%\""}",230097,0,"""North America""" +2024-10-12,59338,5557,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2661.05,{},58476,0,"""South America""" +2023-06-04,59339,5806,"[\""Tablet\"", \""Headphones\""]",2636.82,{},22615,1,"""North America""" +2024-05-01,59340,6683,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1284.33,"{\""loyalty\"": \""7%\""}",218208,0,"""North America""" +2024-12-22,59341,9655,"[\""Phone\"", \""Charger\"", \""Tablet\""]",510.88,"{\""loyalty\"": \""15%\""}",58421,1,"""Europe""" +2023-08-03,59342,9345,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1829.07,"{\"": \""12%\""}",193826,0,"""Europe""" +2024-11-28,59343,4395,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4221.42,"{\""promo\"": \""20%\""}",84002,1,"""North America""" +2023-08-21,59344,9819,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2129.25,{},15607,0,"""South America""" +2023-07-13,59345,2435,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1931.48,{},225379,1,"""North America""" +2024-02-22,59346,5152,"[\""Laptop\""]",4039.17,"{\"": \""20%\""}",262467,1,"""Asia""" +2023-06-24,59347,7481,"[\""Phone\"", \""Headphones\""]",1965.42,{},278125,1,"""Africa""" +2024-10-28,59348,8702,"[\""Monitor\"", \""Charger\""]",2867.0,{},62500,1,"""Asia""" +2023-11-06,59349,1893,"[\""Monitor\"", \""Headphones\""]",3756.17,"{\""seasonal\"": \""7%\""}",71192,1,"""Europe""" +2024-01-29,59350,6596,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3105.84,{},248140,1,"""Africa""" +2024-05-30,59351,985,"[\""Headphones\""]",4974.21,{},144831,0,"""Africa""" +2023-02-07,59352,6927,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2931.44,"{\""seasonal\"": \""28%\""}",282222,0,"""Asia""" +2023-07-05,59353,8279,"[\""Tablet\"", \""Monitor\""]",1255.8,"{\""promo\"": \""11%\""}",62915,0,"""North America""" +2023-01-27,59354,8755,"[\""Tablet\""]",4376.87,"{\"": \""6%\""}",218658,0,"""North America""" +2024-01-05,59355,9442,"[\""Laptop\"", \""Charger\""]",4075.01,"{\""promo\"": \""27%\""}",147689,1,"""Africa""" +2023-05-28,59356,5717,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4640.16,{},176539,1,"""North America""" +2023-05-21,59357,4891,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",981.71,{},162705,1,"""Africa""" +2024-05-23,59358,2476,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2500.32,{},267822,1,"""Asia""" +2023-11-15,59359,2187,"[\""Tablet\"", \""Keyboard\""]",2523.64,{},292675,0,"""Africa""" +2024-01-23,59360,1647,"[\""Laptop\""]",4212.79,"{\""seasonal\"": \""7%\""}",214649,1,"""North America""" +2023-03-10,59361,2490,"[\""Tablet\""]",1824.04,{},81936,0,"""Africa""" +2024-02-15,59362,6129,"[\""Laptop\""]",1198.05,"{\"": \""13%\""}",159233,0,"""Asia""" +2024-07-09,59363,1518,"[\""Headphones\"", \""Charger\""]",3221.84,{},92402,0,"""North America""" +2023-10-10,59364,3695,"[\""Wireless Mouse\"", \""Monitor\""]",1682.34,{},198512,1,"""North America""" +2024-06-10,59365,1591,"[\""Charger\"", \""Keyboard\""]",3924.67,"{\"": \""6%\""}",242763,1,"""Europe""" +2024-11-06,59366,772,"[\""Phone\"", \""Keyboard\""]",1591.56,{},65045,0,"""Asia""" +2023-03-30,59367,2758,"[\""Keyboard\"", \""Tablet\""]",1851.7,{},186489,0,"""Europe""" +2023-04-02,59368,3005,"[\""Headphones\""]",2496.24,{},75851,0,"""Africa""" +2024-07-08,59369,452,"[\""Keyboard\""]",2589.44,{},67914,0,"""Africa""" +2023-04-25,59370,5321,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4347.73,{},241130,0,"""Africa""" +2024-08-15,59371,7055,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3991.88,"{\""loyalty\"": \""19%\""}",45862,0,"""South America""" +2024-04-24,59372,140,"[\""Keyboard\""]",801.52,{},95331,1,"""Europe""" +2024-07-19,59373,2013,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4399.78,{},206478,1,"""North America""" +2024-08-09,59374,610,"[\""Tablet\""]",4039.75,{},219388,0,"""Europe""" +2024-11-01,59375,640,"[\""Headphones\"", \""Charger\""]",3457.96,{},289024,1,"""North America""" +2023-03-30,59376,1327,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2516.78,{},149915,0,"""Europe""" +2024-02-27,59377,916,"[\""Phone\""]",3830.01,{},46909,0,"""Asia""" +2024-04-10,59378,4151,"[\""Headphones\""]",1654.79,"{\""promo\"": \""10%\""}",252751,0,"""Europe""" +2024-06-05,59379,5705,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",844.06,{},204293,1,"""North America""" +2024-03-27,59380,610,"[\""Monitor\""]",2828.45,"{\""promo\"": \""13%\""}",86601,1,"""South America""" +2023-01-08,59381,4905,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2087.1,"{\""loyalty\"": \""12%\""}",253844,0,"""Asia""" +2024-03-22,59382,2814,"[\""Laptop\""]",1210.45,{},78943,0,"""Asia""" +2024-02-29,59383,3009,"[\""Laptop\""]",4787.23,"{\""promo\"": \""20%\""}",205304,1,"""Africa""" +2023-06-13,59384,7956,"[\""Laptop\"", \""Keyboard\""]",481.08,"{\"": \""17%\""}",238371,1,"""Europe""" +2024-06-16,59385,3991,"[\""Tablet\""]",1630.49,"{\""loyalty\"": \""23%\""}",94437,0,"""South America""" +2024-04-15,59386,4065,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",62.31,"{\""loyalty\"": \""21%\""}",149239,1,"""North America""" +2024-08-04,59387,9997,"[\""Laptop\"", \""Wireless Mouse\""]",3650.12,{},97570,0,"""North America""" +2023-09-23,59388,7779,"[\""Keyboard\"", \""Laptop\""]",1221.2,"{\""loyalty\"": \""19%\""}",236139,0,"""North America""" +2023-07-22,59389,6350,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3840.11,"{\"": \""8%\""}",157629,1,"""Europe""" +2024-02-26,59390,9231,"[\""Keyboard\""]",485.51,{},229350,0,"""Asia""" +2023-07-08,59391,9712,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3564.07,{},34692,1,"""Europe""" +2023-10-22,59392,3037,"[\""Laptop\"", \""Tablet\""]",1527.13,"{\"": \""22%\""}",244252,1,"""Europe""" +2024-01-31,59393,2619,"[\""Laptop\"", \""Charger\""]",944.77,"{\"": \""22%\""}",62818,0,"""Africa""" +2024-07-22,59394,1972,"[\""Monitor\""]",2382.06,"{\""loyalty\"": \""20%\""}",209931,1,"""Asia""" +2023-08-04,59395,5596,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4374.55,{},207910,1,"""Asia""" +2023-12-17,59396,9375,"[\""Charger\""]",1119.44,{},153250,1,"""North America""" +2024-04-07,59397,276,"[\""Charger\"", \""Keyboard\""]",2149.81,"{\""loyalty\"": \""14%\""}",28488,1,"""Europe""" +2024-05-11,59398,5213,"[\""Headphones\"", \""Tablet\""]",2364.38,{},161542,1,"""Asia""" +2023-10-07,59399,1077,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3714.51,"{\"": \""27%\""}",17960,0,"""Asia""" +2024-12-09,59400,9374,"[\""Charger\"", \""Laptop\""]",2875.19,"{\""loyalty\"": \""17%\""}",38103,0,"""South America""" +2024-01-15,59401,3280,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4493.16,{},270081,1,"""South America""" +2024-03-15,59402,8418,"[\""Wireless Mouse\""]",3882.68,"{\"": \""11%\""}",226745,0,"""South America""" +2024-09-18,59403,3156,"[\""Phone\"", \""Tablet\""]",933.67,{},120194,0,"""Europe""" +2024-09-01,59404,4751,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2529.21,"{\"": \""8%\""}",129308,1,"""North America""" +2023-10-27,59405,603,"[\""Headphones\"", \""Phone\""]",4345.81,{},164904,1,"""Europe""" +2024-08-21,59406,1068,"[\""Tablet\"", \""Wireless Mouse\""]",3259.76,"{\"": \""18%\""}",48442,1,"""Europe""" +2024-02-20,59407,4522,"[\""Phone\"", \""Wireless Mouse\""]",4811.21,{},109041,1,"""South America""" +2023-03-29,59408,946,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4969.45,"{\""promo\"": \""14%\""}",12092,0,"""Europe""" +2023-06-28,59409,7454,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4955.65,{},231429,1,"""Asia""" +2023-05-20,59410,1129,"[\""Monitor\"", \""Laptop\""]",3980.22,{},183320,1,"""Asia""" +2024-08-19,59411,8981,"[\""Wireless Mouse\""]",3974.01,{},228372,1,"""Africa""" +2024-11-12,59412,3627,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4302.94,{},49262,0,"""Africa""" +2024-10-21,59413,7554,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",558.25,"{\""seasonal\"": \""26%\""}",24206,0,"""Europe""" +2023-03-27,59414,5702,"[\""Keyboard\"", \""Laptop\""]",466.0,{},198278,0,"""South America""" +2023-11-14,59415,775,"[\""Headphones\""]",3672.1,{},122776,1,"""North America""" +2023-05-19,59416,9462,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",700.13,"{\""loyalty\"": \""17%\""}",218580,1,"""South America""" +2023-12-09,59417,9954,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3888.54,{},130698,1,"""Europe""" +2023-12-20,59418,8784,"[\""Charger\"", \""Monitor\""]",3081.01,{},260565,1,"""North America""" +2023-04-28,59419,8462,"[\""Laptop\"", \""Keyboard\""]",4084.98,{},96780,1,"""Asia""" +2024-04-12,59420,8182,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1640.6,"{\""loyalty\"": \""27%\""}",11863,1,"""North America""" +2024-10-30,59421,8152,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2438.5,{},202245,0,"""Europe""" +2024-02-27,59422,1665,"[\""Monitor\"", \""Tablet\""]",2832.07,"{\""promo\"": \""21%\""}",262697,0,"""Africa""" +2024-08-15,59423,3082,"[\""Monitor\""]",1767.39,"{\""promo\"": \""21%\""}",23374,1,"""South America""" +2023-08-03,59424,7041,"[\""Tablet\"", \""Wireless Mouse\""]",2754.72,"{\"": \""14%\""}",130191,1,"""South America""" +2024-10-13,59425,3747,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1648.36,{},201591,1,"""Africa""" +2024-11-27,59426,9244,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",243.48,"{\"": \""19%\""}",22781,0,"""Asia""" +2024-05-17,59427,5281,"[\""Laptop\"", \""Tablet\""]",4506.72,"{\"": \""21%\""}",260186,0,"""Asia""" +2023-06-16,59428,9739,"[\""Headphones\"", \""Monitor\""]",3820.42,"{\""promo\"": \""14%\""}",12891,1,"""South America""" +2024-05-24,59429,7693,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",400.04,{},265062,0,"""South America""" +2023-09-23,59430,1449,"[\""Headphones\"", \""Tablet\""]",3472.87,{},38601,0,"""North America""" +2023-05-01,59431,5479,"[\""Wireless Mouse\"", \""Laptop\""]",2196.58,{},159298,1,"""Asia""" +2024-08-12,59432,3188,"[\""Laptop\"", \""Phone\""]",2459.89,"{\""promo\"": \""26%\""}",57174,1,"""Asia""" +2024-12-28,59433,2409,"[\""Tablet\"", \""Headphones\""]",1735.37,"{\"": \""21%\""}",23801,1,"""Europe""" +2023-04-15,59434,8657,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2452.27,"{\""promo\"": \""29%\""}",199212,0,"""Europe""" +2024-01-15,59435,1171,"[\""Monitor\""]",4291.64,"{\""promo\"": \""19%\""}",188736,0,"""Asia""" +2024-09-12,59436,9921,"[\""Monitor\""]",886.94,{},272477,1,"""North America""" +2023-08-19,59437,3488,"[\""Headphones\"", \""Laptop\""]",3003.62,"{\""loyalty\"": \""18%\""}",137766,0,"""South America""" +2023-05-30,59438,7168,"[\""Laptop\""]",1703.27,"{\""seasonal\"": \""8%\""}",205786,1,"""North America""" +2023-02-16,59439,1878,"[\""Phone\""]",4984.32,{},139624,1,"""Europe""" +2024-01-20,59440,8021,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",108.49,{},209344,0,"""Africa""" +2024-04-27,59441,6214,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",853.41,{},101495,1,"""Asia""" +2024-05-16,59442,1559,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3011.23,{},38939,0,"""Africa""" +2024-12-30,59443,7618,"[\""Laptop\"", \""Tablet\""]",4744.88,{},139633,1,"""Asia""" +2024-03-07,59444,3151,"[\""Laptop\"", \""Charger\""]",370.47,"{\""seasonal\"": \""5%\""}",197003,0,"""Europe""" +2024-05-09,59445,3048,"[\""Phone\"", \""Headphones\""]",4168.93,"{\"": \""27%\""}",11893,1,"""North America""" +2024-10-01,59446,6214,"[\""Tablet\""]",1954.7,{},298091,0,"""Asia""" +2024-03-06,59447,9754,"[\""Monitor\"", \""Headphones\""]",891.56,{},252971,0,"""Asia""" +2024-11-28,59448,2945,"[\""Keyboard\"", \""Tablet\""]",251.91,"{\"": \""11%\""}",66960,0,"""North America""" +2023-03-31,59449,4245,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4371.22,{},299338,0,"""Asia""" +2023-09-12,59450,367,"[\""Headphones\"", \""Keyboard\""]",1847.08,"{\""promo\"": \""20%\""}",139334,1,"""Asia""" +2023-11-07,59451,5092,"[\""Tablet\"", \""Wireless Mouse\""]",1211.05,"{\""seasonal\"": \""16%\""}",100361,1,"""Africa""" +2024-08-03,59452,9502,"[\""Monitor\""]",1133.28,"{\""seasonal\"": \""24%\""}",149099,0,"""Africa""" +2024-03-09,59453,1855,"[\""Laptop\"", \""Tablet\""]",844.05,"{\""seasonal\"": \""28%\""}",134417,0,"""Europe""" +2023-09-30,59454,543,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",380.21,{},143446,1,"""Asia""" +2024-04-24,59455,1144,"[\""Laptop\"", \""Charger\""]",3402.27,{},208337,0,"""Africa""" +2024-06-20,59456,2640,"[\""Keyboard\""]",3514.07,{},106796,0,"""Europe""" +2024-10-28,59457,8142,"[\""Phone\"", \""Tablet\""]",220.89,{},54095,1,"""Asia""" +2024-07-21,59458,9157,"[\""Keyboard\""]",1562.45,{},37436,1,"""North America""" +2023-03-24,59459,8378,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1054.15,{},104195,0,"""Asia""" +2024-12-28,59460,6470,"[\""Phone\"", \""Tablet\""]",4498.38,"{\"": \""28%\""}",120581,1,"""Africa""" +2023-10-12,59461,8333,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3474.87,{},235383,0,"""South America""" +2023-01-02,59462,7502,"[\""Headphones\"", \""Tablet\""]",1014.52,"{\"": \""18%\""}",164900,1,"""North America""" +2023-10-24,59463,2304,"[\""Charger\""]",4039.91,{},201600,1,"""South America""" +2024-02-05,59464,2719,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2546.7,{},154734,0,"""Europe""" +2024-01-07,59465,5621,"[\""Phone\"", \""Keyboard\""]",2173.53,{},266073,1,"""Asia""" +2024-05-20,59466,7669,"[\""Headphones\"", \""Tablet\""]",645.48,{},174034,1,"""Asia""" +2024-01-24,59467,6071,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3930.57,"{\"": \""19%\""}",197686,1,"""North America""" +2023-12-12,59468,5154,"[\""Keyboard\"", \""Wireless Mouse\""]",3121.88,"{\""promo\"": \""5%\""}",79073,0,"""North America""" +2024-12-03,59469,8724,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4684.35,{},135586,0,"""Asia""" +2024-09-12,59470,5598,"[\""Monitor\""]",2282.19,{},33361,0,"""Africa""" +2024-09-17,59471,7221,"[\""Wireless Mouse\""]",2878.75,{},22083,1,"""South America""" +2023-09-18,59472,4645,"[\""Phone\"", \""Tablet\""]",585.28,"{\""seasonal\"": \""18%\""}",208661,0,"""North America""" +2023-05-09,59473,2390,"[\""Keyboard\"", \""Wireless Mouse\""]",579.74,{},19555,1,"""North America""" +2023-06-30,59474,1841,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",270.59,"{\"": \""27%\""}",265653,0,"""Europe""" +2023-03-06,59475,2051,"[\""Charger\""]",3304.63,"{\""loyalty\"": \""26%\""}",98494,1,"""North America""" +2023-06-21,59476,1454,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2159.23,"{\""promo\"": \""6%\""}",98318,1,"""North America""" +2024-11-02,59477,3415,"[\""Keyboard\""]",4693.29,{},296132,0,"""Asia""" +2023-04-22,59478,4572,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4720.97,"{\"": \""6%\""}",164020,0,"""South America""" +2023-09-06,59479,264,"[\""Wireless Mouse\"", \""Laptop\""]",124.08,"{\""promo\"": \""5%\""}",269922,0,"""Africa""" +2023-03-14,59480,682,"[\""Wireless Mouse\"", \""Charger\""]",2815.35,{},61526,0,"""South America""" +2023-03-09,59481,4931,"[\""Charger\""]",3360.8,{},195916,1,"""Africa""" +2023-10-10,59482,1499,"[\""Phone\""]",857.91,{},7317,1,"""Asia""" +2023-05-30,59483,3695,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1879.93,"{\"": \""9%\""}",153448,0,"""Africa""" +2024-04-05,59484,1179,"[\""Keyboard\""]",3308.13,"{\"": \""11%\""}",60182,0,"""Europe""" +2024-04-12,59485,3534,"[\""Charger\""]",4999.84,{},84860,0,"""South America""" +2023-08-14,59486,1305,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3114.5,{},241900,0,"""South America""" +2024-02-18,59487,7075,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3490.45,"{\""seasonal\"": \""12%\""}",103510,0,"""North America""" +2023-03-30,59488,4833,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3101.12,{},169414,0,"""Africa""" +2024-09-14,59489,2468,"[\""Charger\""]",4351.75,{},173217,1,"""Europe""" +2023-04-02,59490,7281,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3043.95,{},224411,0,"""Europe""" +2023-12-24,59491,1876,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4142.36,{},153477,0,"""North America""" +2024-10-21,59492,2723,"[\""Keyboard\"", \""Laptop\""]",3845.74,{},244680,0,"""North America""" +2023-01-31,59493,7629,"[\""Tablet\"", \""Phone\""]",3164.3,{},188633,1,"""Africa""" +2024-07-25,59494,351,"[\""Keyboard\"", \""Wireless Mouse\""]",967.7,{},23320,0,"""North America""" +2024-07-02,59495,6031,"[\""Laptop\""]",1505.19,"{\"": \""18%\""}",109147,1,"""Africa""" +2024-05-29,59496,5190,"[\""Monitor\""]",448.6,"{\""seasonal\"": \""6%\""}",104681,0,"""North America""" +2023-01-05,59497,1786,"[\""Headphones\""]",2619.55,{},234175,0,"""North America""" +2023-05-01,59498,9646,"[\""Monitor\""]",362.18,{},239095,1,"""Europe""" +2024-07-29,59499,9377,"[\""Charger\"", \""Wireless Mouse\""]",2887.69,{},13336,0,"""North America""" +2023-08-19,59500,5964,"[\""Headphones\"", \""Charger\""]",1245.67,{},63516,1,"""North America""" +2024-07-19,59501,8610,"[\""Charger\"", \""Wireless Mouse\""]",927.3,"{\""seasonal\"": \""12%\""}",181660,0,"""Europe""" +2023-05-13,59502,4903,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4549.65,{},237782,0,"""North America""" +2023-05-28,59503,7288,"[\""Tablet\"", \""Wireless Mouse\""]",3608.38,{},101530,0,"""North America""" +2023-04-10,59504,3924,"[\""Headphones\""]",894.43,{},27179,0,"""Asia""" +2024-01-20,59505,2310,"[\""Keyboard\"", \""Laptop\""]",4336.54,"{\"": \""6%\""}",117800,0,"""Asia""" +2024-04-28,59506,978,"[\""Headphones\""]",1877.46,{},137084,0,"""South America""" +2024-12-30,59507,7671,"[\""Laptop\"", \""Tablet\""]",1655.46,"{\""loyalty\"": \""9%\""}",223592,1,"""Africa""" +2024-02-08,59508,7500,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3867.55,{},233675,1,"""Africa""" +2024-10-26,59509,4088,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4608.04,"{\""seasonal\"": \""10%\""}",281017,0,"""Asia""" +2024-04-16,59510,9886,"[\""Charger\""]",4900.96,{},240221,1,"""South America""" +2024-03-21,59511,8581,"[\""Monitor\"", \""Keyboard\""]",4242.12,"{\""loyalty\"": \""26%\""}",271128,0,"""South America""" +2024-11-05,59512,2773,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",640.31,"{\""promo\"": \""18%\""}",106674,1,"""South America""" +2024-06-25,59513,2787,"[\""Laptop\"", \""Headphones\""]",1104.92,{},94136,0,"""Europe""" +2023-07-09,59514,2874,"[\""Keyboard\""]",2545.76,"{\""seasonal\"": \""23%\""}",225641,0,"""Africa""" +2024-06-17,59515,6771,"[\""Headphones\""]",1000.8,"{\""seasonal\"": \""26%\""}",237884,0,"""Europe""" +2024-07-21,59516,9438,"[\""Monitor\"", \""Laptop\""]",4699.23,"{\""promo\"": \""12%\""}",285194,0,"""North America""" +2024-07-22,59517,2005,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3553.37,"{\""seasonal\"": \""25%\""}",127216,1,"""Europe""" +2023-09-12,59518,465,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1236.82,"{\"": \""23%\""}",276798,1,"""South America""" +2023-12-24,59519,2943,"[\""Phone\"", \""Charger\""]",2983.99,"{\""seasonal\"": \""30%\""}",2888,1,"""Asia""" +2023-03-18,59520,9426,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1240.4,"{\""loyalty\"": \""25%\""}",6580,0,"""Asia""" +2023-09-03,59521,8222,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",485.91,{},138153,1,"""Europe""" +2024-06-15,59522,297,"[\""Charger\""]",4690.15,"{\""promo\"": \""14%\""}",7586,1,"""Africa""" +2023-12-08,59523,4155,"[\""Monitor\"", \""Laptop\""]",4404.68,{},103809,1,"""Asia""" +2024-05-05,59524,469,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",834.24,"{\""seasonal\"": \""26%\""}",204028,0,"""South America""" +2024-02-03,59525,3050,"[\""Keyboard\""]",3397.45,"{\""seasonal\"": \""29%\""}",81403,0,"""South America""" +2023-11-16,59526,3211,"[\""Headphones\""]",2388.14,"{\""promo\"": \""10%\""}",140809,1,"""Africa""" +2023-10-01,59527,7990,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4996.94,"{\""promo\"": \""26%\""}",281402,0,"""Europe""" +2024-04-05,59528,9285,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4440.39,"{\""loyalty\"": \""18%\""}",261530,1,"""South America""" +2023-06-28,59529,3288,"[\""Laptop\""]",955.42,{},202520,1,"""South America""" +2023-12-21,59530,7399,"[\""Monitor\""]",2547.92,"{\""promo\"": \""27%\""}",14990,1,"""Europe""" +2024-03-08,59531,2948,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1301.53,"{\""promo\"": \""18%\""}",160252,0,"""Africa""" +2024-06-19,59532,5674,"[\""Laptop\"", \""Phone\""]",4135.71,"{\""seasonal\"": \""22%\""}",198842,0,"""North America""" +2024-01-08,59533,9357,"[\""Charger\""]",4433.22,"{\""promo\"": \""30%\""}",267595,0,"""North America""" +2024-08-08,59534,5469,"[\""Charger\""]",1007.24,"{\""seasonal\"": \""7%\""}",172419,1,"""Asia""" +2023-12-02,59535,5531,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3717.82,"{\""promo\"": \""28%\""}",244120,1,"""Africa""" +2023-04-18,59536,6641,"[\""Monitor\"", \""Keyboard\""]",2435.06,"{\""promo\"": \""13%\""}",57375,0,"""Africa""" +2023-09-23,59537,3640,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3149.58,{},288750,1,"""North America""" +2024-01-26,59538,7165,"[\""Charger\""]",1825.97,{},50251,1,"""Europe""" +2024-12-04,59539,4913,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2568.93,{},176947,1,"""Africa""" +2024-01-15,59540,8833,"[\""Charger\"", \""Keyboard\""]",2306.48,"{\""promo\"": \""8%\""}",234274,0,"""Asia""" +2024-11-06,59541,1339,"[\""Wireless Mouse\""]",1105.97,"{\""loyalty\"": \""29%\""}",145662,1,"""Africa""" +2024-05-03,59542,2263,"[\""Headphones\"", \""Tablet\""]",2179.2,{},60458,0,"""Europe""" +2024-07-16,59543,531,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3218.3,"{\""promo\"": \""9%\""}",209398,1,"""Asia""" +2023-12-03,59544,6251,"[\""Laptop\""]",2889.64,{},37501,0,"""Africa""" +2024-11-12,59545,7291,"[\""Wireless Mouse\""]",287.48,{},31930,1,"""Europe""" +2024-06-22,59546,648,"[\""Monitor\""]",2729.91,{},169645,1,"""Asia""" +2024-09-12,59547,6415,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3707.43,"{\""promo\"": \""18%\""}",102830,1,"""Africa""" +2023-06-13,59548,6213,"[\""Laptop\""]",2452.18,"{\""promo\"": \""27%\""}",60699,1,"""Europe""" +2023-12-30,59549,7917,"[\""Keyboard\""]",1957.83,{},132651,1,"""North America""" +2024-05-12,59550,5928,"[\""Wireless Mouse\"", \""Phone\""]",224.91,{},87093,0,"""Europe""" +2024-08-28,59551,7898,"[\""Headphones\"", \""Tablet\""]",1500.24,{},292246,1,"""Asia""" +2023-04-30,59552,699,"[\""Phone\""]",2336.18,{},146390,1,"""Africa""" +2023-04-15,59553,3144,"[\""Headphones\"", \""Charger\""]",3872.3,{},257472,0,"""Asia""" +2024-05-30,59554,1690,"[\""Monitor\"", \""Headphones\""]",4199.63,{},123736,1,"""Asia""" +2023-08-06,59555,6696,"[\""Tablet\"", \""Monitor\""]",4574.98,"{\""loyalty\"": \""15%\""}",290250,0,"""Europe""" +2023-08-20,59556,9193,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4366.78,{},50738,1,"""Europe""" +2023-03-02,59557,7901,"[\""Monitor\""]",237.63,"{\""loyalty\"": \""28%\""}",291906,0,"""North America""" +2023-05-29,59558,7685,"[\""Laptop\""]",1507.92,{},195840,1,"""Europe""" +2023-11-26,59559,3194,"[\""Wireless Mouse\"", \""Charger\""]",3927.21,"{\""promo\"": \""7%\""}",30936,1,"""North America""" +2024-02-05,59560,6797,"[\""Laptop\"", \""Charger\""]",2215.32,"{\""seasonal\"": \""26%\""}",205218,0,"""Africa""" +2023-09-02,59561,7527,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4905.17,"{\""promo\"": \""24%\""}",23804,1,"""Europe""" +2023-05-31,59562,7266,"[\""Monitor\""]",294.8,"{\""seasonal\"": \""12%\""}",44974,0,"""Asia""" +2024-04-14,59563,109,"[\""Charger\"", \""Wireless Mouse\""]",3122.03,{},106172,0,"""Europe""" +2023-06-05,59564,919,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4454.38,"{\""promo\"": \""18%\""}",18488,0,"""Asia""" +2024-12-17,59565,6803,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1492.89,"{\""loyalty\"": \""16%\""}",183515,1,"""Africa""" +2023-11-22,59566,2138,"[\""Headphones\"", \""Laptop\""]",2657.06,"{\"": \""12%\""}",77722,0,"""North America""" +2023-06-24,59567,5047,"[\""Monitor\"", \""Phone\""]",3589.48,{},172817,0,"""South America""" +2023-02-11,59568,8402,"[\""Charger\""]",4941.83,{},191668,1,"""Europe""" +2023-03-05,59569,9444,"[\""Headphones\""]",4207.93,"{\""promo\"": \""20%\""}",245604,1,"""North America""" +2024-05-18,59570,79,"[\""Phone\"", \""Tablet\""]",3870.32,{},188778,0,"""South America""" +2024-01-08,59571,3813,"[\""Monitor\""]",1934.42,{},221734,0,"""Europe""" +2024-01-14,59572,4697,"[\""Tablet\"", \""Laptop\""]",2154.62,"{\"": \""21%\""}",102586,1,"""North America""" +2024-08-24,59573,8773,"[\""Keyboard\"", \""Wireless Mouse\""]",1262.56,{},136746,0,"""South America""" +2023-11-03,59574,4519,"[\""Wireless Mouse\""]",2975.68,"{\""loyalty\"": \""15%\""}",193572,0,"""North America""" +2024-03-29,59575,1591,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3574.28,{},274616,1,"""North America""" +2024-09-28,59576,697,"[\""Phone\""]",4377.95,"{\""promo\"": \""18%\""}",245765,0,"""Asia""" +2023-11-05,59577,8525,"[\""Monitor\"", \""Keyboard\""]",230.24,{},205195,0,"""Asia""" +2023-01-25,59578,2526,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2122.19,{},46764,0,"""Europe""" +2023-06-17,59579,602,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3208.62,"{\""promo\"": \""17%\""}",34611,0,"""South America""" +2024-11-17,59580,7085,"[\""Monitor\""]",1869.73,"{\"": \""7%\""}",98488,1,"""South America""" +2023-03-24,59581,123,"[\""Phone\"", \""Laptop\""]",4690.17,{},255534,1,"""North America""" +2024-09-06,59582,6871,"[\""Tablet\""]",3943.91,"{\"": \""20%\""}",177497,1,"""South America""" +2023-03-06,59583,6372,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4394.63,"{\""seasonal\"": \""12%\""}",241654,0,"""North America""" +2024-12-25,59584,5976,"[\""Tablet\""]",618.53,{},45105,1,"""Africa""" +2023-09-05,59585,2191,"[\""Tablet\""]",129.4,"{\"": \""22%\""}",86433,0,"""Europe""" +2023-07-31,59586,4340,"[\""Tablet\"", \""Laptop\""]",4837.66,"{\""loyalty\"": \""7%\""}",177956,1,"""South America""" +2024-12-01,59587,2852,"[\""Monitor\""]",1579.52,{},234337,1,"""Africa""" +2024-07-16,59588,8831,"[\""Laptop\""]",1622.44,"{\"": \""20%\""}",258223,0,"""Asia""" +2023-01-24,59589,3984,"[\""Monitor\"", \""Laptop\""]",1974.83,{},298824,0,"""North America""" +2024-12-04,59590,7440,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4061.47,{},201915,0,"""Africa""" +2023-05-05,59591,7136,"[\""Charger\"", \""Keyboard\""]",603.8,"{\""promo\"": \""5%\""}",89312,0,"""Africa""" +2023-02-27,59592,9171,"[\""Headphones\"", \""Phone\""]",408.71,"{\""loyalty\"": \""20%\""}",135818,0,"""South America""" +2024-09-11,59593,1529,"[\""Charger\"", \""Keyboard\""]",902.37,{},295634,0,"""Africa""" +2023-05-12,59594,860,"[\""Headphones\""]",4413.84,"{\"": \""30%\""}",142201,0,"""Africa""" +2024-04-05,59595,2893,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4609.38,"{\""seasonal\"": \""16%\""}",74104,1,"""South America""" +2023-04-30,59596,3704,"[\""Headphones\""]",707.61,{},133492,1,"""Europe""" +2023-05-06,59597,8796,"[\""Charger\"", \""Monitor\""]",1218.14,{},228297,0,"""Africa""" +2023-01-02,59598,6250,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1928.38,{},214933,1,"""Asia""" +2023-04-18,59599,8737,"[\""Phone\""]",4699.91,{},139535,1,"""South America""" +2024-11-19,59600,7556,"[\""Charger\"", \""Keyboard\""]",3136.43,"{\"": \""9%\""}",289154,1,"""North America""" +2023-07-19,59601,8068,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2571.28,{},290365,0,"""Asia""" +2024-08-06,59602,5293,"[\""Charger\""]",4997.28,{},85651,1,"""Africa""" +2024-11-30,59603,6246,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1771.25,"{\"": \""12%\""}",289876,0,"""Africa""" +2023-08-04,59604,4008,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1274.99,{},4361,1,"""Europe""" +2023-07-20,59605,9532,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3365.85,{},282871,1,"""Europe""" +2023-08-05,59606,9828,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3997.21,{},88242,1,"""Europe""" +2024-04-08,59607,4024,"[\""Phone\""]",3977.58,"{\""loyalty\"": \""9%\""}",110023,0,"""Africa""" +2023-06-29,59608,1966,"[\""Laptop\""]",958.61,{},246384,1,"""Africa""" +2024-01-23,59609,8971,"[\""Tablet\"", \""Headphones\""]",2497.88,"{\""promo\"": \""8%\""}",86228,0,"""Asia""" +2024-01-21,59610,1070,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1542.11,"{\""seasonal\"": \""12%\""}",76576,1,"""North America""" +2023-04-16,59611,5624,"[\""Headphones\""]",2159.78,{},257812,0,"""Asia""" +2024-01-06,59612,5102,"[\""Monitor\"", \""Phone\""]",4057.89,"{\""loyalty\"": \""17%\""}",27894,0,"""South America""" +2023-02-08,59613,7298,"[\""Monitor\""]",1713.6,{},223253,1,"""North America""" +2023-04-07,59614,4237,"[\""Charger\"", \""Phone\""]",2027.94,{},165135,1,"""Asia""" +2024-02-13,59615,4066,"[\""Wireless Mouse\""]",3465.98,"{\"": \""25%\""}",88302,1,"""Africa""" +2024-01-18,59616,7465,"[\""Wireless Mouse\""]",453.06,{},82955,1,"""Africa""" +2023-01-25,59617,1339,"[\""Tablet\""]",1235.97,"{\""seasonal\"": \""25%\""}",158169,0,"""Europe""" +2023-12-20,59618,1688,"[\""Wireless Mouse\"", \""Charger\""]",913.39,{},160853,0,"""North America""" +2024-05-24,59619,6377,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2020.09,{},18275,0,"""Asia""" +2023-06-21,59620,9562,"[\""Tablet\"", \""Phone\""]",4248.06,"{\"": \""26%\""}",134202,0,"""Africa""" +2024-02-18,59621,7570,"[\""Tablet\"", \""Monitor\""]",4264.39,{},44182,1,"""South America""" +2023-02-01,59622,6573,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2875.87,{},279475,0,"""North America""" +2024-04-04,59623,6685,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4623.47,{},273695,1,"""North America""" +2023-03-07,59624,5071,"[\""Phone\""]",589.54,{},170494,0,"""North America""" +2024-07-18,59625,4022,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1780.64,"{\""loyalty\"": \""12%\""}",162594,0,"""Africa""" +2024-12-10,59626,1663,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3310.82,{},183020,0,"""Africa""" +2024-04-06,59627,5440,"[\""Phone\"", \""Keyboard\""]",3264.85,"{\""loyalty\"": \""27%\""}",176488,1,"""Africa""" +2024-05-21,59628,5646,"[\""Charger\"", \""Laptop\"", \""Phone\""]",482.06,"{\""loyalty\"": \""30%\""}",37655,1,"""Africa""" +2024-08-14,59629,394,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",497.19,"{\""loyalty\"": \""25%\""}",298861,1,"""South America""" +2024-06-26,59630,710,"[\""Monitor\"", \""Tablet\""]",4645.81,{},137946,1,"""Europe""" +2024-02-28,59631,2337,"[\""Keyboard\""]",4102.74,{},84218,1,"""Europe""" +2023-07-27,59632,9773,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4419.16,{},140457,1,"""Europe""" +2023-08-19,59633,2350,"[\""Monitor\"", \""Headphones\""]",2166.95,"{\""promo\"": \""27%\""}",221650,0,"""North America""" +2023-02-21,59634,4375,"[\""Monitor\"", \""Headphones\""]",1634.63,"{\"": \""9%\""}",52338,1,"""South America""" +2024-08-04,59635,2734,"[\""Headphones\"", \""Phone\""]",1533.3,"{\""seasonal\"": \""29%\""}",94126,0,"""Africa""" +2024-11-05,59636,1994,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1035.64,{},95328,1,"""North America""" +2024-08-06,59637,5110,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1601.75,{},274053,1,"""Europe""" +2023-11-03,59638,3931,"[\""Headphones\"", \""Keyboard\""]",2831.79,"{\""seasonal\"": \""16%\""}",85544,1,"""North America""" +2024-07-16,59639,3922,"[\""Headphones\""]",1192.17,{},250351,1,"""North America""" +2024-11-27,59640,9113,"[\""Tablet\"", \""Monitor\""]",4341.52,"{\""promo\"": \""18%\""}",23105,0,"""Europe""" +2024-09-29,59641,8301,"[\""Keyboard\""]",1900.13,{},243699,0,"""South America""" +2023-02-11,59642,6317,"[\""Keyboard\"", \""Headphones\""]",4859.43,"{\""promo\"": \""21%\""}",68911,0,"""South America""" +2023-01-31,59643,7119,"[\""Wireless Mouse\""]",2576.26,"{\""promo\"": \""15%\""}",231010,1,"""Europe""" +2023-07-07,59644,1879,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2516.06,"{\""promo\"": \""17%\""}",193975,1,"""South America""" +2023-07-04,59645,1347,"[\""Monitor\"", \""Keyboard\""]",2062.84,{},111673,1,"""Asia""" +2024-03-08,59646,4226,"[\""Keyboard\""]",3569.84,{},283649,1,"""North America""" +2023-02-18,59647,386,"[\""Phone\""]",2955.3,"{\""loyalty\"": \""11%\""}",64198,0,"""Africa""" +2024-12-15,59648,3485,"[\""Phone\""]",2097.37,"{\"": \""5%\""}",174614,0,"""Asia""" +2023-10-26,59649,2223,"[\""Tablet\""]",1738.58,"{\"": \""19%\""}",105882,1,"""Europe""" +2024-03-21,59650,7645,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4790.3,{},284481,1,"""Asia""" +2023-02-22,59651,11,"[\""Tablet\"", \""Charger\""]",300.12,{},208968,0,"""Africa""" +2023-02-20,59652,5581,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1266.68,{},220912,0,"""Africa""" +2024-03-29,59653,1920,"[\""Headphones\""]",4440.99,{},244078,0,"""South America""" +2024-03-17,59654,1026,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3057.6,"{\""seasonal\"": \""10%\""}",178388,0,"""North America""" +2023-12-12,59655,2664,"[\""Monitor\""]",2219.64,{},91591,0,"""South America""" +2023-06-16,59656,5932,"[\""Laptop\"", \""Monitor\""]",599.9,"{\""seasonal\"": \""15%\""}",254555,0,"""Europe""" +2024-03-06,59657,8621,"[\""Laptop\""]",1726.95,{},214721,0,"""Asia""" +2024-05-12,59658,7047,"[\""Headphones\"", \""Keyboard\""]",3512.36,{},94136,1,"""Europe""" +2023-08-25,59659,666,"[\""Phone\""]",3089.1,"{\""promo\"": \""11%\""}",4057,0,"""North America""" +2024-10-27,59660,4423,"[\""Phone\""]",4375.63,{},131260,1,"""Europe""" +2024-09-26,59661,3714,"[\""Wireless Mouse\"", \""Headphones\""]",149.29,"{\""seasonal\"": \""27%\""}",281087,0,"""Africa""" +2024-05-15,59662,6320,"[\""Wireless Mouse\""]",2867.22,{},107786,1,"""Asia""" +2023-01-27,59663,6687,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2712.64,"{\"": \""10%\""}",64302,0,"""Africa""" +2023-08-08,59664,4889,"[\""Headphones\"", \""Keyboard\""]",336.94,"{\""seasonal\"": \""24%\""}",211719,1,"""North America""" +2023-02-17,59665,4558,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2546.75,"{\""loyalty\"": \""26%\""}",111889,0,"""Africa""" +2023-04-25,59666,7586,"[\""Wireless Mouse\"", \""Monitor\""]",2894.12,"{\""seasonal\"": \""13%\""}",242499,0,"""Africa""" +2024-05-04,59667,4957,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1985.27,{},296872,1,"""Asia""" +2023-02-15,59668,2702,"[\""Tablet\"", \""Headphones\""]",4640.48,{},19536,0,"""Asia""" +2024-02-08,59669,7627,"[\""Charger\"", \""Headphones\""]",2294.58,{},282465,0,"""Europe""" +2023-01-13,59670,9346,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2443.05,"{\""promo\"": \""20%\""}",235122,0,"""South America""" +2024-09-17,59671,3044,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4494.06,"{\""seasonal\"": \""21%\""}",43927,1,"""Europe""" +2023-09-06,59672,4467,"[\""Charger\"", \""Monitor\""]",3004.0,"{\"": \""29%\""}",33769,1,"""Africa""" +2023-03-09,59673,9794,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2916.19,"{\""promo\"": \""20%\""}",90002,1,"""North America""" +2024-03-27,59674,2436,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3777.44,{},219214,0,"""North America""" +2023-11-28,59675,9084,"[\""Wireless Mouse\""]",2454.38,"{\"": \""13%\""}",159201,1,"""South America""" +2023-11-10,59676,1278,"[\""Tablet\""]",3382.39,"{\""promo\"": \""21%\""}",155132,0,"""South America""" +2023-11-14,59677,2518,"[\""Headphones\""]",4778.16,{},43478,1,"""Asia""" +2024-08-19,59678,1345,"[\""Headphones\""]",2498.79,"{\""seasonal\"": \""17%\""}",135105,1,"""South America""" +2024-07-07,59679,312,"[\""Charger\"", \""Tablet\""]",2329.13,"{\""promo\"": \""25%\""}",34802,0,"""North America""" +2024-10-26,59680,5754,"[\""Phone\"", \""Monitor\""]",3694.46,"{\"": \""24%\""}",231831,0,"""Africa""" +2024-08-23,59681,6295,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4297.93,{},225526,1,"""Asia""" +2024-07-20,59682,7815,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4943.99,"{\"": \""13%\""}",293080,1,"""Europe""" +2023-07-15,59683,3280,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2205.22,{},71544,0,"""Africa""" +2024-05-11,59684,7774,"[\""Monitor\""]",4236.96,{},53335,0,"""South America""" +2023-09-26,59685,8308,"[\""Laptop\""]",4649.73,{},257159,1,"""Africa""" +2024-05-01,59686,5007,"[\""Tablet\"", \""Phone\""]",3198.07,{},101016,1,"""South America""" +2023-11-11,59687,6166,"[\""Wireless Mouse\"", \""Keyboard\""]",1637.87,{},226893,0,"""South America""" +2024-04-05,59688,8163,"[\""Tablet\"", \""Monitor\""]",3820.0,"{\""promo\"": \""25%\""}",25444,0,"""Europe""" +2024-06-25,59689,8905,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2063.04,"{\"": \""8%\""}",275454,1,"""North America""" +2023-04-02,59690,7210,"[\""Headphones\""]",808.94,{},242841,0,"""Asia""" +2024-10-25,59691,4834,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2253.39,{},185364,0,"""South America""" +2024-08-15,59692,4763,"[\""Headphones\"", \""Laptop\""]",2682.46,{},163298,0,"""North America""" +2023-06-14,59693,3735,"[\""Phone\""]",1049.83,"{\""promo\"": \""21%\""}",50033,0,"""Asia""" +2024-08-22,59694,5999,"[\""Charger\""]",330.52,{},140172,1,"""North America""" +2024-05-05,59695,2671,"[\""Tablet\""]",3047.33,"{\""promo\"": \""19%\""}",94999,1,"""Asia""" +2024-12-16,59696,1496,"[\""Keyboard\""]",1062.05,{},164063,0,"""Europe""" +2023-03-27,59697,4624,"[\""Monitor\""]",2229.33,{},62782,0,"""Africa""" +2024-04-19,59698,9297,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2779.91,{},205250,1,"""Africa""" +2024-04-01,59699,8490,"[\""Wireless Mouse\""]",1652.12,"{\"": \""23%\""}",119816,1,"""North America""" +2024-03-29,59700,3609,"[\""Laptop\"", \""Headphones\""]",949.05,"{\""promo\"": \""29%\""}",96975,1,"""South America""" +2023-04-17,59701,3032,"[\""Charger\""]",2463.87,"{\""promo\"": \""25%\""}",247808,1,"""Africa""" +2023-09-19,59702,1103,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1316.26,{},65199,1,"""North America""" +2024-02-10,59703,2594,"[\""Tablet\""]",3070.66,"{\""promo\"": \""29%\""}",274135,0,"""Asia""" +2023-12-19,59704,7357,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1226.77,{},266353,0,"""Africa""" +2024-05-13,59705,7562,"[\""Phone\"", \""Laptop\""]",1821.98,{},72665,1,"""North America""" +2023-03-05,59706,9532,"[\""Monitor\"", \""Tablet\""]",1263.57,"{\""seasonal\"": \""23%\""}",84636,0,"""Africa""" +2024-02-05,59707,6488,"[\""Keyboard\"", \""Headphones\""]",1417.2,"{\""seasonal\"": \""28%\""}",40602,0,"""Asia""" +2024-11-24,59708,8088,"[\""Tablet\"", \""Monitor\""]",2060.8,"{\"": \""26%\""}",36697,0,"""Africa""" +2024-01-21,59709,3593,"[\""Laptop\"", \""Monitor\""]",2570.0,"{\"": \""6%\""}",215668,1,"""Africa""" +2024-03-21,59710,1166,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3324.64,"{\"": \""14%\""}",56205,1,"""Europe""" +2023-10-05,59711,4952,"[\""Tablet\""]",857.38,"{\"": \""8%\""}",267903,0,"""Asia""" +2024-10-28,59712,4886,"[\""Laptop\""]",82.75,{},24816,0,"""Africa""" +2023-02-15,59713,5468,"[\""Tablet\"", \""Laptop\""]",1986.27,{},56522,1,"""Asia""" +2024-05-08,59714,4018,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1034.27,"{\""loyalty\"": \""25%\""}",71583,1,"""South America""" +2024-01-26,59715,9395,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4372.25,"{\""seasonal\"": \""14%\""}",24947,1,"""Asia""" +2023-07-07,59716,9583,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3350.81,{},42651,1,"""North America""" +2024-09-27,59717,4683,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3273.6,{},86125,1,"""Africa""" +2024-03-08,59718,166,"[\""Phone\"", \""Laptop\""]",2948.27,"{\""promo\"": \""22%\""}",110371,0,"""Europe""" +2024-05-12,59719,8332,"[\""Laptop\""]",3990.33,"{\"": \""15%\""}",53426,0,"""Asia""" +2024-06-29,59720,8667,"[\""Wireless Mouse\"", \""Phone\""]",4403.19,"{\""seasonal\"": \""18%\""}",131241,1,"""Africa""" +2023-10-29,59721,1114,"[\""Wireless Mouse\"", \""Keyboard\""]",853.22,"{\""promo\"": \""17%\""}",121801,1,"""Africa""" +2023-11-21,59722,828,"[\""Tablet\"", \""Headphones\""]",554.66,{},226533,1,"""South America""" +2024-10-07,59723,9516,"[\""Charger\"", \""Keyboard\""]",2794.44,"{\"": \""22%\""}",61672,1,"""North America""" +2024-10-01,59724,5578,"[\""Monitor\"", \""Headphones\""]",365.81,"{\""seasonal\"": \""9%\""}",211037,0,"""Africa""" +2023-06-10,59725,6904,"[\""Wireless Mouse\""]",4319.88,"{\"": \""27%\""}",135529,0,"""Asia""" +2023-08-30,59726,5104,"[\""Monitor\""]",1643.3,"{\""promo\"": \""17%\""}",259947,0,"""Asia""" +2023-05-03,59727,1975,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3838.69,{},162941,0,"""Asia""" +2024-01-01,59728,3585,"[\""Laptop\""]",4986.42,{},254443,1,"""Europe""" +2023-07-10,59729,2884,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4924.25,"{\""seasonal\"": \""10%\""}",14044,1,"""Asia""" +2023-06-11,59730,2752,"[\""Laptop\"", \""Phone\""]",463.97,"{\""seasonal\"": \""26%\""}",49863,0,"""Asia""" +2024-01-14,59731,3926,"[\""Tablet\""]",4784.4,{},16549,0,"""Europe""" +2023-11-25,59732,8295,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3875.68,"{\""seasonal\"": \""19%\""}",257455,0,"""Europe""" +2024-06-12,59733,2049,"[\""Tablet\"", \""Headphones\""]",944.75,{},232004,0,"""South America""" +2023-02-12,59734,5385,"[\""Phone\"", \""Tablet\""]",863.88,{},201502,1,"""Africa""" +2023-03-02,59735,346,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2596.48,{},159863,1,"""Africa""" +2024-08-30,59736,5045,"[\""Tablet\"", \""Wireless Mouse\""]",2337.69,"{\"": \""28%\""}",143516,1,"""Africa""" +2024-11-11,59737,6601,"[\""Phone\"", \""Monitor\""]",2781.7,"{\"": \""14%\""}",41760,1,"""Asia""" +2023-09-22,59738,319,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3785.55,{},238710,1,"""Africa""" +2023-01-13,59739,4876,"[\""Tablet\"", \""Monitor\""]",4724.21,"{\""seasonal\"": \""23%\""}",150328,1,"""North America""" +2024-04-26,59740,1642,"[\""Tablet\"", \""Phone\""]",3814.7,"{\""seasonal\"": \""5%\""}",116281,1,"""South America""" +2023-12-31,59741,2570,"[\""Tablet\""]",3017.84,{},55326,1,"""Africa""" +2024-04-22,59742,928,"[\""Laptop\""]",3065.39,"{\"": \""22%\""}",138213,0,"""Asia""" +2024-03-13,59743,3436,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",960.56,"{\""promo\"": \""20%\""}",68318,1,"""Europe""" +2023-10-08,59744,8716,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1562.63,{},255207,0,"""North America""" +2024-09-07,59745,3362,"[\""Wireless Mouse\"", \""Charger\""]",704.58,{},134607,1,"""Europe""" +2024-11-15,59746,2353,"[\""Keyboard\""]",4180.93,"{\"": \""6%\""}",21793,0,"""Africa""" +2023-07-19,59747,2098,"[\""Tablet\"", \""Charger\""]",2257.15,"{\""loyalty\"": \""21%\""}",250799,1,"""South America""" +2024-09-14,59748,9874,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",566.0,"{\""loyalty\"": \""8%\""}",137852,0,"""Africa""" +2024-08-15,59749,4160,"[\""Phone\"", \""Charger\""]",2520.44,{},70181,1,"""Africa""" +2023-05-04,59750,1233,"[\""Tablet\"", \""Phone\""]",4875.82,"{\"": \""11%\""}",293631,1,"""Europe""" +2024-04-01,59751,1389,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2989.46,{},276565,1,"""Asia""" +2023-10-30,59752,2247,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1756.29,"{\""seasonal\"": \""25%\""}",265913,1,"""South America""" +2024-08-13,59753,1766,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",189.54,{},272494,1,"""Asia""" +2024-09-12,59754,8368,"[\""Keyboard\"", \""Tablet\""]",2160.65,{},202753,0,"""North America""" +2024-09-01,59755,7640,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",737.13,"{\""loyalty\"": \""21%\""}",173347,1,"""North America""" +2024-04-08,59756,7302,"[\""Monitor\"", \""Phone\""]",4483.04,{},5577,1,"""Africa""" +2023-06-30,59757,2982,"[\""Phone\"", \""Keyboard\""]",2323.11,"{\""seasonal\"": \""7%\""}",82934,1,"""Asia""" +2024-02-09,59758,6546,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3521.03,"{\""seasonal\"": \""24%\""}",295358,1,"""Africa""" +2023-05-22,59759,3622,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3077.64,{},33675,1,"""Africa""" +2024-05-23,59760,6345,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4378.96,"{\"": \""24%\""}",211463,0,"""Europe""" +2024-01-23,59761,9544,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",342.39,{},76305,1,"""South America""" +2023-10-03,59762,7022,"[\""Wireless Mouse\"", \""Charger\""]",2504.28,"{\""loyalty\"": \""12%\""}",276983,1,"""South America""" +2024-03-25,59763,2781,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3593.19,{},268961,0,"""Asia""" +2024-03-24,59764,6434,"[\""Tablet\""]",2115.55,{},216377,1,"""Africa""" +2023-08-08,59765,1892,"[\""Tablet\"", \""Laptop\""]",4770.09,{},154445,1,"""North America""" +2023-05-05,59766,8917,"[\""Phone\"", \""Monitor\""]",362.39,"{\""loyalty\"": \""22%\""}",203430,1,"""South America""" +2024-12-04,59767,6170,"[\""Phone\"", \""Monitor\""]",1466.13,"{\""promo\"": \""26%\""}",186642,1,"""South America""" +2024-02-22,59768,4097,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1519.09,{},234358,1,"""North America""" +2023-06-15,59769,633,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",136.56,"{\""loyalty\"": \""13%\""}",60980,1,"""Asia""" +2023-04-04,59770,1907,"[\""Monitor\"", \""Wireless Mouse\""]",4984.96,"{\""seasonal\"": \""20%\""}",217615,1,"""Asia""" +2023-01-04,59771,2069,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3040.65,{},259897,1,"""North America""" +2023-01-03,59772,6079,"[\""Tablet\""]",3880.82,{},291098,1,"""North America""" +2023-10-14,59773,558,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2975.81,{},295078,1,"""North America""" +2024-08-02,59774,2832,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4396.91,"{\""promo\"": \""29%\""}",177320,0,"""North America""" +2023-05-30,59775,3111,"[\""Headphones\""]",1336.87,{},145124,0,"""South America""" +2023-05-28,59776,1081,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1936.42,{},160325,0,"""Africa""" +2024-09-03,59777,3907,"[\""Charger\""]",3772.46,{},63808,0,"""Asia""" +2023-02-20,59778,5171,"[\""Monitor\""]",4447.85,"{\""loyalty\"": \""11%\""}",96919,0,"""Africa""" +2024-07-19,59779,2204,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1337.22,{},16693,1,"""Africa""" +2024-01-14,59780,592,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2427.02,"{\""seasonal\"": \""6%\""}",187433,1,"""North America""" +2024-06-06,59781,121,"[\""Tablet\"", \""Charger\""]",4825.21,{},275627,1,"""Asia""" +2023-05-28,59782,2100,"[\""Tablet\"", \""Phone\""]",3230.61,"{\""seasonal\"": \""7%\""}",179919,1,"""Africa""" +2023-08-09,59783,9053,"[\""Wireless Mouse\""]",4011.33,{},236330,1,"""South America""" +2023-12-22,59784,8248,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",762.63,{},223220,1,"""Africa""" +2023-08-15,59785,5825,"[\""Tablet\"", \""Phone\""]",4065.78,"{\""loyalty\"": \""12%\""}",191274,0,"""Europe""" +2023-07-29,59786,7065,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3667.56,"{\""seasonal\"": \""30%\""}",49296,1,"""North America""" +2023-11-07,59787,3460,"[\""Phone\""]",4297.58,"{\""promo\"": \""16%\""}",97476,0,"""Africa""" +2024-11-20,59788,8011,"[\""Charger\"", \""Keyboard\""]",3452.97,{},106610,1,"""North America""" +2023-04-04,59789,296,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",686.25,{},278100,1,"""South America""" +2024-03-11,59790,1232,"[\""Charger\"", \""Tablet\""]",4821.87,"{\""loyalty\"": \""26%\""}",16737,0,"""Asia""" +2023-09-01,59791,9696,"[\""Wireless Mouse\""]",2724.08,{},122884,0,"""Asia""" +2024-03-07,59792,5091,"[\""Laptop\"", \""Keyboard\""]",3038.14,"{\""promo\"": \""24%\""}",228137,0,"""North America""" +2024-10-15,59793,9490,"[\""Tablet\""]",2415.43,{},89442,0,"""Africa""" +2024-08-02,59794,5308,"[\""Laptop\""]",994.88,{},140348,0,"""Africa""" +2024-09-22,59795,599,"[\""Wireless Mouse\"", \""Phone\""]",3570.59,"{\"": \""10%\""}",107753,1,"""Asia""" +2023-10-18,59796,1940,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4243.24,{},169589,1,"""Africa""" +2023-11-05,59797,6047,"[\""Monitor\""]",2818.46,"{\"": \""21%\""}",211613,1,"""Europe""" +2023-02-12,59798,3621,"[\""Phone\""]",3756.81,"{\""seasonal\"": \""9%\""}",280183,0,"""Europe""" +2024-03-10,59799,8746,"[\""Headphones\"", \""Keyboard\""]",2592.76,"{\""promo\"": \""9%\""}",65001,0,"""South America""" +2024-10-04,59800,1277,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2572.57,"{\""loyalty\"": \""22%\""}",68536,1,"""North America""" +2023-02-15,59801,9201,"[\""Phone\""]",96.45,{},278326,1,"""Africa""" +2024-03-07,59802,5230,"[\""Phone\""]",2358.96,"{\""loyalty\"": \""14%\""}",288225,0,"""Africa""" +2023-09-05,59803,8619,"[\""Charger\"", \""Tablet\""]",4020.49,"{\""seasonal\"": \""5%\""}",200855,1,"""North America""" +2024-08-20,59804,8892,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",564.09,"{\""seasonal\"": \""24%\""}",168362,1,"""Asia""" +2024-05-19,59805,9087,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2418.53,{},174411,0,"""South America""" +2023-05-17,59806,3299,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4033.14,"{\"": \""19%\""}",187816,0,"""Africa""" +2023-08-27,59807,1734,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4924.84,"{\""seasonal\"": \""26%\""}",101222,1,"""Africa""" +2024-02-22,59808,1569,"[\""Laptop\"", \""Wireless Mouse\""]",1498.79,{},293569,1,"""North America""" +2024-04-23,59809,4489,"[\""Tablet\""]",4149.17,{},80513,1,"""Europe""" +2024-03-20,59810,3371,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",532.6,"{\""promo\"": \""24%\""}",228264,1,"""Asia""" +2024-05-08,59811,4616,"[\""Headphones\"", \""Charger\""]",1082.86,"{\""loyalty\"": \""26%\""}",254320,1,"""North America""" +2023-07-11,59812,8712,"[\""Monitor\""]",252.06,{},272068,1,"""Europe""" +2023-01-04,59813,8854,"[\""Monitor\"", \""Charger\""]",3875.27,{},60911,0,"""South America""" +2024-07-30,59814,4195,"[\""Charger\"", \""Keyboard\""]",3947.23,{},202924,1,"""North America""" +2023-07-09,59815,2785,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1400.85,"{\""promo\"": \""7%\""}",269716,1,"""Africa""" +2023-11-12,59816,2506,"[\""Wireless Mouse\"", \""Headphones\""]",4154.76,{},242310,0,"""Europe""" +2024-07-18,59817,4737,"[\""Laptop\""]",3852.5,"{\""seasonal\"": \""22%\""}",72602,1,"""Africa""" +2023-12-21,59818,4407,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4389.8,{},264543,0,"""Asia""" +2024-09-14,59819,1300,"[\""Headphones\""]",2305.61,"{\"": \""7%\""}",23864,1,"""Europe""" +2024-01-26,59820,4412,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1252.83,"{\""promo\"": \""27%\""}",127273,0,"""North America""" +2024-10-22,59821,935,"[\""Monitor\"", \""Tablet\""]",2318.62,"{\""seasonal\"": \""24%\""}",76462,1,"""Asia""" +2023-09-08,59822,7546,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1507.95,"{\"": \""29%\""}",77945,0,"""North America""" +2024-06-04,59823,6928,"[\""Monitor\""]",3567.88,{},196525,0,"""North America""" +2023-02-03,59824,3393,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2501.33,{},294544,0,"""Africa""" +2024-04-23,59825,8487,"[\""Keyboard\"", \""Headphones\""]",968.54,{},255358,0,"""Europe""" +2024-09-15,59826,4840,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1267.99,"{\""seasonal\"": \""18%\""}",26233,0,"""Africa""" +2023-04-06,59827,9789,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2315.09,"{\""promo\"": \""23%\""}",178763,1,"""Europe""" +2023-08-25,59828,7837,"[\""Keyboard\"", \""Wireless Mouse\""]",1123.79,{},201804,0,"""North America""" +2024-12-09,59829,308,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1268.68,{},42566,1,"""Europe""" +2023-04-09,59830,7144,"[\""Wireless Mouse\""]",1010.19,"{\"": \""9%\""}",280371,0,"""South America""" +2024-10-05,59831,6419,"[\""Monitor\"", \""Phone\""]",1274.56,"{\""loyalty\"": \""22%\""}",297716,0,"""Europe""" +2023-09-18,59832,9245,"[\""Laptop\"", \""Charger\""]",3508.73,{},62809,0,"""North America""" +2023-09-16,59833,6862,"[\""Keyboard\"", \""Laptop\""]",4284.46,{},47082,0,"""North America""" +2023-08-08,59834,2992,"[\""Charger\""]",3469.01,{},123958,0,"""South America""" +2024-11-22,59835,5026,"[\""Tablet\""]",1434.0,{},67634,1,"""North America""" +2024-08-27,59836,6201,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",246.45,"{\""promo\"": \""25%\""}",172236,1,"""North America""" +2024-03-19,59837,7507,"[\""Tablet\"", \""Keyboard\""]",1780.83,{},297948,1,"""South America""" +2024-03-08,59838,9596,"[\""Phone\""]",4106.71,{},15192,1,"""North America""" +2024-08-02,59839,3647,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4528.37,{},172227,0,"""North America""" +2024-09-18,59840,5243,"[\""Headphones\""]",889.48,"{\""promo\"": \""17%\""}",76525,0,"""Europe""" +2023-10-16,59841,6612,"[\""Charger\"", \""Monitor\"", \""Phone\""]",937.8,{},281845,1,"""South America""" +2024-06-28,59842,8946,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3840.35,{},89330,1,"""North America""" +2024-04-20,59843,4401,"[\""Headphones\""]",4189.16,"{\""promo\"": \""11%\""}",97825,0,"""Asia""" +2023-08-26,59844,4037,"[\""Charger\""]",4904.2,{},131366,1,"""Europe""" +2024-06-02,59845,3422,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4622.19,"{\""promo\"": \""18%\""}",257739,0,"""North America""" +2023-10-15,59846,1622,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3034.76,{},152176,0,"""Africa""" +2023-04-23,59847,1791,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1582.85,{},89758,1,"""Asia""" +2024-12-28,59848,4407,"[\""Headphones\"", \""Charger\""]",632.76,{},190579,1,"""Europe""" +2023-02-13,59849,2620,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2140.92,{},265005,0,"""South America""" +2024-03-07,59850,3023,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",917.97,"{\"": \""22%\""}",172566,0,"""Europe""" +2024-05-20,59851,8773,"[\""Wireless Mouse\""]",1604.93,{},206249,1,"""Asia""" +2023-05-14,59852,3699,"[\""Headphones\""]",2605.84,{},189308,1,"""North America""" +2024-06-28,59853,1900,"[\""Headphones\""]",2220.95,{},274721,0,"""Europe""" +2023-01-11,59854,5291,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4030.97,"{\"": \""29%\""}",70658,1,"""Asia""" +2024-02-17,59855,278,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",358.87,"{\""seasonal\"": \""7%\""}",166148,1,"""Europe""" +2023-06-18,59856,7737,"[\""Headphones\""]",2953.04,{},120525,1,"""Asia""" +2024-02-12,59857,524,"[\""Charger\""]",78.99,"{\""loyalty\"": \""19%\""}",208439,0,"""Europe""" +2024-04-18,59858,2296,"[\""Charger\""]",582.36,"{\""promo\"": \""13%\""}",24464,1,"""Africa""" +2024-08-23,59859,9404,"[\""Headphones\"", \""Wireless Mouse\""]",3572.04,"{\""loyalty\"": \""11%\""}",232547,1,"""Africa""" +2023-06-03,59860,7114,"[\""Tablet\"", \""Phone\""]",200.35,"{\"": \""19%\""}",127117,0,"""Africa""" +2024-03-08,59861,8659,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2402.94,{},253639,1,"""South America""" +2023-07-12,59862,5687,"[\""Charger\""]",3658.83,"{\"": \""7%\""}",202986,0,"""Europe""" +2023-07-14,59863,1470,"[\""Headphones\""]",400.53,"{\""promo\"": \""27%\""}",55588,0,"""South America""" +2023-07-03,59864,1312,"[\""Phone\""]",1349.39,"{\""promo\"": \""10%\""}",178418,0,"""Africa""" +2024-07-30,59865,8429,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4164.63,"{\""loyalty\"": \""30%\""}",199373,1,"""South America""" +2024-06-03,59866,279,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2669.9,{},263737,1,"""South America""" +2023-02-26,59867,367,"[\""Monitor\""]",2606.33,{},257866,0,"""North America""" +2023-11-08,59868,8739,"[\""Tablet\""]",4778.39,"{\"": \""23%\""}",77930,0,"""South America""" +2024-10-11,59869,7349,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",779.35,{},100960,1,"""Asia""" +2023-01-23,59870,6955,"[\""Phone\""]",4611.52,{},30721,0,"""North America""" +2023-01-02,59871,5718,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3877.19,{},285277,0,"""South America""" +2023-09-26,59872,3191,"[\""Monitor\"", \""Laptop\""]",3242.93,{},76929,0,"""Europe""" +2024-01-16,59873,7755,"[\""Phone\"", \""Wireless Mouse\""]",4175.61,"{\""loyalty\"": \""28%\""}",91959,1,"""Africa""" +2024-11-09,59874,6467,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",935.45,{},37003,0,"""Asia""" +2024-06-22,59875,8220,"[\""Tablet\"", \""Headphones\""]",2971.87,{},43772,0,"""North America""" +2024-06-29,59876,3355,"[\""Laptop\"", \""Wireless Mouse\""]",3617.36,{},202627,0,"""Europe""" +2023-08-30,59877,2541,"[\""Charger\"", \""Wireless Mouse\""]",2150.02,{},51695,1,"""South America""" +2023-07-24,59878,6821,"[\""Phone\"", \""Keyboard\""]",2432.35,"{\""promo\"": \""25%\""}",200320,1,"""South America""" +2024-07-17,59879,4292,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1914.82,"{\"": \""12%\""}",108135,0,"""Africa""" +2023-02-26,59880,8579,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2552.06,"{\""promo\"": \""30%\""}",134984,0,"""South America""" +2023-09-28,59881,38,"[\""Charger\"", \""Phone\"", \""Monitor\""]",234.43,"{\""seasonal\"": \""16%\""}",95865,1,"""North America""" +2024-01-17,59882,3749,"[\""Keyboard\""]",2081.52,"{\""seasonal\"": \""28%\""}",72943,0,"""Europe""" +2024-04-05,59883,2917,"[\""Keyboard\"", \""Wireless Mouse\""]",1944.08,"{\""seasonal\"": \""18%\""}",260103,0,"""North America""" +2023-06-15,59884,7770,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1566.57,"{\""seasonal\"": \""18%\""}",33282,1,"""Africa""" +2023-02-11,59885,8071,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",844.31,"{\""promo\"": \""19%\""}",220878,0,"""Asia""" +2023-11-18,59886,3627,"[\""Keyboard\""]",383.78,"{\""promo\"": \""14%\""}",98346,1,"""South America""" +2024-11-08,59887,1901,"[\""Headphones\"", \""Wireless Mouse\""]",1897.48,{},76926,0,"""South America""" +2024-01-12,59888,5073,"[\""Tablet\""]",2198.18,{},146636,1,"""North America""" +2024-10-15,59889,9170,"[\""Monitor\""]",1648.65,"{\""promo\"": \""8%\""}",268840,1,"""Europe""" +2023-02-03,59890,136,"[\""Phone\"", \""Tablet\""]",3367.48,{},125024,1,"""Africa""" +2024-04-26,59891,7099,"[\""Keyboard\""]",3377.92,{},108047,1,"""Asia""" +2024-05-03,59892,9324,"[\""Keyboard\""]",2627.4,"{\"": \""25%\""}",193736,0,"""North America""" +2024-06-20,59893,2585,"[\""Phone\"", \""Tablet\""]",4388.05,"{\"": \""24%\""}",230738,1,"""Europe""" +2024-12-17,59894,5529,"[\""Charger\""]",428.89,{},244130,1,"""Africa""" +2024-11-27,59895,1973,"[\""Headphones\""]",1642.95,{},190413,0,"""South America""" +2024-06-10,59896,6916,"[\""Wireless Mouse\""]",4128.69,"{\""seasonal\"": \""10%\""}",224925,0,"""Europe""" +2024-08-01,59897,3654,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3231.4,"{\""promo\"": \""19%\""}",294990,1,"""North America""" +2023-05-14,59898,6760,"[\""Laptop\""]",3595.73,"{\""promo\"": \""28%\""}",238292,0,"""South America""" +2023-09-12,59899,4778,"[\""Charger\"", \""Tablet\""]",4297.05,{},201563,1,"""Asia""" +2023-10-29,59900,9356,"[\""Headphones\"", \""Phone\""]",1326.98,"{\""promo\"": \""10%\""}",1137,1,"""Europe""" +2024-06-07,59901,3206,"[\""Phone\"", \""Charger\"", \""Laptop\""]",85.23,{},151011,0,"""Africa""" +2023-12-04,59902,733,"[\""Monitor\""]",660.83,{},224607,0,"""Asia""" +2023-10-30,59903,7728,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4094.38,{},70490,0,"""South America""" +2023-10-20,59904,8037,"[\""Keyboard\"", \""Phone\""]",2310.93,{},136096,0,"""Africa""" +2024-05-11,59905,4234,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1991.2,{},112507,1,"""South America""" +2023-12-05,59906,7388,"[\""Headphones\""]",1884.92,{},244903,1,"""Asia""" +2023-05-23,59907,8276,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1407.49,"{\""seasonal\"": \""17%\""}",265433,0,"""North America""" +2023-05-13,59908,713,"[\""Keyboard\"", \""Wireless Mouse\""]",4230.42,{},187741,1,"""Europe""" +2023-10-14,59909,2671,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1304.08,"{\""seasonal\"": \""21%\""}",141979,0,"""North America""" +2024-11-15,59910,4771,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2571.68,"{\""seasonal\"": \""20%\""}",202629,0,"""South America""" +2023-09-06,59911,4664,"[\""Headphones\"", \""Tablet\""]",3485.33,"{\""loyalty\"": \""11%\""}",99035,1,"""South America""" +2024-07-25,59912,7613,"[\""Charger\"", \""Laptop\""]",2441.74,{},253487,1,"""South America""" +2023-09-26,59913,2363,"[\""Headphones\""]",1289.95,"{\""promo\"": \""21%\""}",71447,1,"""Asia""" +2024-11-12,59914,3887,"[\""Wireless Mouse\"", \""Laptop\""]",1282.64,"{\""promo\"": \""30%\""}",213482,0,"""South America""" +2024-06-09,59915,6674,"[\""Headphones\""]",3784.58,{},188564,1,"""Africa""" +2024-08-02,59916,4381,"[\""Monitor\""]",1089.27,"{\""promo\"": \""27%\""}",50694,1,"""Europe""" +2023-02-10,59917,9107,"[\""Monitor\""]",4823.43,"{\""loyalty\"": \""7%\""}",122222,0,"""Asia""" +2024-03-15,59918,8050,"[\""Monitor\"", \""Phone\""]",2902.63,"{\""seasonal\"": \""30%\""}",90217,1,"""South America""" +2024-01-29,59919,9881,"[\""Charger\"", \""Phone\""]",1524.5,{},55203,1,"""Europe""" +2024-08-15,59920,5579,"[\""Wireless Mouse\""]",4978.0,"{\"": \""6%\""}",193199,0,"""Europe""" +2023-05-01,59921,2068,"[\""Phone\"", \""Monitor\""]",2672.96,"{\""loyalty\"": \""21%\""}",170964,0,"""Europe""" +2024-10-22,59922,1188,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4456.27,{},200879,0,"""South America""" +2023-04-17,59923,8650,"[\""Keyboard\"", \""Tablet\""]",3890.55,"{\""loyalty\"": \""29%\""}",121990,0,"""Europe""" +2023-11-08,59924,5456,"[\""Keyboard\"", \""Headphones\""]",4433.77,{},241634,0,"""North America""" +2023-06-10,59925,9145,"[\""Monitor\"", \""Charger\""]",2764.06,"{\""promo\"": \""16%\""}",58318,0,"""North America""" +2023-05-24,59926,3881,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4842.06,{},256636,1,"""North America""" +2024-09-14,59927,8066,"[\""Tablet\"", \""Phone\""]",4251.75,"{\""seasonal\"": \""16%\""}",36004,1,"""South America""" +2023-03-07,59928,3601,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3248.93,"{\"": \""19%\""}",235139,1,"""South America""" +2023-11-03,59929,7930,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4957.62,"{\""promo\"": \""5%\""}",19297,0,"""Africa""" +2023-07-18,59930,9192,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1027.26,"{\""promo\"": \""26%\""}",276519,0,"""Europe""" +2023-02-22,59931,905,"[\""Wireless Mouse\""]",4519.35,"{\""promo\"": \""25%\""}",211889,0,"""Asia""" +2023-01-18,59932,8549,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",530.46,{},37468,1,"""South America""" +2023-08-26,59933,8987,"[\""Charger\"", \""Keyboard\""]",2970.39,{},202791,1,"""Africa""" +2024-09-18,59934,7126,"[\""Monitor\""]",2237.22,"{\""promo\"": \""13%\""}",216983,0,"""Europe""" +2023-08-08,59935,931,"[\""Phone\"", \""Keyboard\""]",1986.45,{},193792,1,"""South America""" +2023-09-03,59936,1972,"[\""Wireless Mouse\"", \""Monitor\""]",3213.34,"{\""seasonal\"": \""24%\""}",295672,1,"""Europe""" +2024-12-16,59937,6290,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2532.31,{},236807,0,"""Africa""" +2023-11-02,59938,1305,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4036.36,"{\""seasonal\"": \""12%\""}",28638,1,"""Africa""" +2023-08-08,59939,2235,"[\""Tablet\""]",864.84,{},127874,0,"""Africa""" +2023-05-29,59940,9851,"[\""Keyboard\"", \""Headphones\""]",1872.01,"{\""loyalty\"": \""23%\""}",129944,0,"""Africa""" +2023-10-19,59941,1979,"[\""Tablet\""]",1789.92,"{\""promo\"": \""19%\""}",209315,0,"""Europe""" +2023-08-03,59942,337,"[\""Headphones\""]",2913.49,"{\""seasonal\"": \""16%\""}",276355,1,"""North America""" +2024-01-25,59943,2155,"[\""Laptop\""]",248.98,{},282027,1,"""South America""" +2023-05-05,59944,8926,"[\""Wireless Mouse\"", \""Keyboard\""]",1016.28,{},217014,1,"""Europe""" +2023-06-05,59945,8751,"[\""Phone\"", \""Tablet\""]",4165.82,{},140795,1,"""Asia""" +2024-01-06,59946,9310,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3226.61,{},189312,1,"""Asia""" +2023-12-20,59947,6061,"[\""Phone\""]",3425.29,"{\"": \""19%\""}",26927,0,"""Asia""" +2023-01-04,59948,426,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4210.24,{},180408,1,"""South America""" +2023-05-24,59949,5330,"[\""Headphones\""]",4157.59,"{\""promo\"": \""7%\""}",267887,1,"""North America""" +2024-04-16,59950,8386,"[\""Charger\""]",4712.2,"{\""loyalty\"": \""12%\""}",223075,1,"""South America""" +2023-07-02,59951,8311,"[\""Keyboard\""]",582.68,{},105606,1,"""North America""" +2023-01-31,59952,8189,"[\""Wireless Mouse\""]",3373.09,{},292538,1,"""Asia""" +2024-11-04,59953,844,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4670.32,{},88964,0,"""North America""" +2024-08-14,59954,4274,"[\""Phone\"", \""Wireless Mouse\""]",1342.85,{},49831,1,"""Asia""" +2023-10-03,59955,6981,"[\""Headphones\""]",2838.08,"{\""loyalty\"": \""30%\""}",43460,0,"""South America""" +2023-01-25,59956,9450,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",458.83,{},43783,1,"""North America""" +2024-09-04,59957,1657,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",578.71,{},104698,1,"""Asia""" +2023-02-22,59958,4407,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3687.31,"{\"": \""20%\""}",122179,0,"""Asia""" +2024-01-08,59959,9889,"[\""Laptop\"", \""Monitor\""]",3597.07,{},79259,1,"""Asia""" +2023-09-09,59960,9061,"[\""Monitor\"", \""Wireless Mouse\""]",3524.09,"{\""loyalty\"": \""25%\""}",89712,1,"""Europe""" +2024-06-26,59961,1749,"[\""Wireless Mouse\""]",1489.3,{},219846,1,"""Africa""" +2023-07-20,59962,3356,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1000.73,"{\""loyalty\"": \""25%\""}",164976,0,"""South America""" +2023-12-04,59963,9510,"[\""Wireless Mouse\""]",2164.03,{},196063,0,"""Africa""" +2023-02-15,59964,1894,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4495.42,{},48510,1,"""South America""" +2024-03-25,59965,6480,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4008.43,"{\""loyalty\"": \""21%\""}",81837,1,"""Africa""" +2024-09-30,59966,2755,"[\""Tablet\"", \""Wireless Mouse\""]",4804.92,{},191863,0,"""South America""" +2024-12-29,59967,8060,"[\""Charger\"", \""Monitor\""]",945.71,{},100982,0,"""North America""" +2023-10-04,59968,9562,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4263.88,{},39388,1,"""South America""" +2024-06-21,59969,1890,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",846.75,"{\"": \""15%\""}",227090,0,"""Africa""" +2023-05-20,59970,6830,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2534.89,"{\""promo\"": \""8%\""}",151946,1,"""Africa""" +2023-01-19,59971,6017,"[\""Headphones\"", \""Tablet\""]",172.65,"{\""seasonal\"": \""6%\""}",42246,0,"""Europe""" +2024-11-06,59972,5026,"[\""Charger\"", \""Keyboard\""]",4275.18,"{\"": \""5%\""}",16930,1,"""Asia""" +2023-12-21,59973,1106,"[\""Monitor\""]",581.92,"{\""loyalty\"": \""28%\""}",139180,1,"""South America""" +2023-01-23,59974,2270,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4854.48,"{\"": \""22%\""}",35565,0,"""North America""" +2024-01-01,59975,6073,"[\""Headphones\"", \""Phone\""]",408.07,"{\""loyalty\"": \""10%\""}",288711,1,"""South America""" +2024-06-04,59976,8452,"[\""Laptop\"", \""Headphones\""]",3020.59,"{\""seasonal\"": \""15%\""}",199968,0,"""Europe""" +2024-04-23,59977,6967,"[\""Headphones\""]",2250.71,{},168193,1,"""Africa""" +2024-12-22,59978,4125,"[\""Phone\"", \""Monitor\""]",4271.8,"{\""loyalty\"": \""24%\""}",142938,1,"""Asia""" +2024-09-03,59979,3694,"[\""Headphones\"", \""Wireless Mouse\""]",2585.03,{},111718,1,"""Africa""" +2024-01-01,59980,5154,"[\""Tablet\""]",2013.2,{},142020,0,"""Europe""" +2024-12-23,59981,4390,"[\""Monitor\"", \""Wireless Mouse\""]",4372.14,{},196729,0,"""Africa""" +2024-12-03,59982,5325,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1483.11,{},173676,1,"""South America""" +2024-05-20,59983,8603,"[\""Headphones\"", \""Charger\""]",4079.3,"{\"": \""29%\""}",89053,0,"""North America""" +2024-10-21,59984,9889,"[\""Tablet\""]",965.88,"{\""loyalty\"": \""10%\""}",173271,1,"""North America""" +2024-02-06,59985,2797,"[\""Phone\"", \""Headphones\""]",1947.24,{},183183,0,"""North America""" +2024-03-26,59986,6155,"[\""Monitor\""]",3283.2,{},20233,1,"""Asia""" +2023-03-13,59987,5505,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2118.84,"{\""seasonal\"": \""8%\""}",18606,1,"""Asia""" +2024-05-06,59988,5621,"[\""Tablet\""]",4136.11,{},132600,0,"""Europe""" +2024-08-16,59989,1129,"[\""Wireless Mouse\""]",4708.08,{},21008,1,"""Europe""" +2023-03-07,59990,5692,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3158.47,"{\"": \""28%\""}",163072,0,"""South America""" +2023-01-09,59991,2644,"[\""Monitor\"", \""Charger\""]",904.69,{},31011,0,"""South America""" +2023-03-12,59992,6106,"[\""Monitor\""]",4963.09,"{\""promo\"": \""29%\""}",287636,1,"""Europe""" +2024-11-09,59993,6617,"[\""Headphones\""]",4061.55,"{\""promo\"": \""10%\""}",149086,1,"""South America""" +2023-02-11,59994,7466,"[\""Wireless Mouse\"", \""Tablet\""]",1030.41,{},88256,1,"""Europe""" +2024-05-09,59995,8118,"[\""Tablet\""]",4236.63,{},137409,0,"""North America""" +2023-02-07,59996,9674,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1924.12,{},295127,1,"""South America""" +2023-09-14,59997,7196,"[\""Phone\""]",1657.01,{},45052,1,"""South America""" +2024-06-24,59998,960,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2519.25,"{\""seasonal\"": \""20%\""}",118905,0,"""North America""" +2024-11-10,59999,2144,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4794.54,{},226840,0,"""North America""" +2023-11-15,60000,1223,"[\""Laptop\"", \""Keyboard\""]",845.85,"{\"": \""12%\""}",276807,1,"""South America""" +2023-04-14,60001,8251,"[\""Charger\""]",2979.14,"{\""loyalty\"": \""22%\""}",238796,0,"""South America""" +2024-07-10,60002,1962,"[\""Keyboard\"", \""Phone\""]",358.16,{},189069,1,"""South America""" +2023-02-11,60003,9106,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",720.5,"{\""loyalty\"": \""6%\""}",153590,0,"""Africa""" +2024-05-31,60004,3886,"[\""Charger\""]",4881.3,"{\""loyalty\"": \""19%\""}",251609,0,"""North America""" +2024-03-03,60005,6601,"[\""Headphones\"", \""Phone\""]",1104.35,"{\""loyalty\"": \""21%\""}",3532,1,"""South America""" +2024-01-18,60006,7223,"[\""Charger\""]",4874.04,{},116360,0,"""Europe""" +2024-01-18,60007,1510,"[\""Monitor\"", \""Laptop\""]",4562.29,{},246412,0,"""North America""" +2024-03-07,60008,7258,"[\""Tablet\"", \""Wireless Mouse\""]",4793.02,"{\""loyalty\"": \""6%\""}",227997,0,"""Africa""" +2023-06-20,60009,1488,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",315.74,{},200454,0,"""South America""" +2024-03-27,60010,5859,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",388.63,"{\"": \""24%\""}",73322,1,"""Asia""" +2023-12-11,60011,8476,"[\""Tablet\""]",2011.91,{},183033,0,"""South America""" +2024-03-20,60012,7712,"[\""Keyboard\"", \""Tablet\""]",2162.98,{},275354,0,"""Asia""" +2024-02-13,60013,4545,"[\""Wireless Mouse\"", \""Charger\""]",4880.76,"{\"": \""17%\""}",14217,0,"""Europe""" +2024-09-02,60014,8466,"[\""Keyboard\"", \""Tablet\""]",1680.69,"{\""seasonal\"": \""24%\""}",194667,0,"""South America""" +2023-01-10,60015,1754,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1225.9,{},184330,1,"""Africa""" +2024-03-19,60016,4901,"[\""Keyboard\""]",616.1,"{\""loyalty\"": \""20%\""}",54482,1,"""South America""" +2023-11-01,60017,6948,"[\""Charger\"", \""Phone\""]",318.98,"{\"": \""6%\""}",226090,1,"""Europe""" +2024-02-16,60018,8365,"[\""Laptop\"", \""Wireless Mouse\""]",2323.21,"{\""promo\"": \""21%\""}",219671,1,"""Asia""" +2023-02-14,60019,8785,"[\""Headphones\"", \""Keyboard\""]",4913.85,"{\""seasonal\"": \""25%\""}",157185,1,"""North America""" +2023-03-15,60020,6881,"[\""Tablet\"", \""Wireless Mouse\""]",2774.96,"{\""loyalty\"": \""30%\""}",126251,1,"""Africa""" +2024-12-02,60021,5319,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3536.69,"{\""promo\"": \""15%\""}",275182,0,"""South America""" +2024-10-20,60022,5244,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4666.53,{},157867,0,"""Asia""" +2024-04-04,60023,2117,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4445.09,"{\""promo\"": \""28%\""}",211364,0,"""Europe""" +2023-01-22,60024,7375,"[\""Wireless Mouse\"", \""Keyboard\""]",2180.97,{},286837,1,"""Asia""" +2024-01-29,60025,4873,"[\""Keyboard\""]",1847.74,"{\"": \""14%\""}",76239,0,"""Europe""" +2023-07-21,60026,3376,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1818.35,"{\""promo\"": \""30%\""}",201830,1,"""Africa""" +2023-03-08,60027,7607,"[\""Keyboard\"", \""Charger\""]",1101.08,"{\""loyalty\"": \""28%\""}",243259,1,"""South America""" +2024-05-31,60028,1312,"[\""Laptop\"", \""Phone\""]",4312.59,{},169925,0,"""Asia""" +2024-09-02,60029,7781,"[\""Keyboard\"", \""Laptop\""]",1830.52,"{\""seasonal\"": \""6%\""}",108712,1,"""South America""" +2023-02-10,60030,8619,"[\""Headphones\""]",490.43,{},34358,0,"""South America""" +2023-05-24,60031,969,"[\""Monitor\"", \""Charger\""]",4609.09,"{\""loyalty\"": \""19%\""}",264902,0,"""South America""" +2023-05-01,60032,5045,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4187.44,{},34692,1,"""North America""" +2023-09-03,60033,2751,"[\""Headphones\"", \""Monitor\""]",4547.95,{},48026,0,"""Asia""" +2023-11-10,60034,4066,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2789.54,{},291740,0,"""South America""" +2023-07-31,60035,8079,"[\""Tablet\"", \""Charger\""]",304.2,{},208647,0,"""Asia""" +2023-08-14,60036,5263,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3726.29,"{\"": \""14%\""}",24969,0,"""North America""" +2023-08-15,60037,8782,"[\""Charger\""]",162.94,{},149067,0,"""Africa""" +2024-08-09,60038,2514,"[\""Laptop\"", \""Charger\""]",2067.79,{},113120,1,"""Africa""" +2024-02-17,60039,9853,"[\""Charger\"", \""Phone\""]",1427.38,"{\"": \""24%\""}",257023,1,"""Europe""" +2023-03-02,60040,6988,"[\""Monitor\""]",4378.63,{},152002,0,"""Europe""" +2024-03-23,60041,4405,"[\""Headphones\""]",3774.96,{},126751,1,"""South America""" +2024-01-20,60042,227,"[\""Tablet\"", \""Wireless Mouse\""]",185.63,{},54023,1,"""Asia""" +2024-06-16,60043,1753,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",550.22,{},243985,0,"""North America""" +2024-07-29,60044,9525,"[\""Tablet\"", \""Monitor\""]",3865.94,"{\""seasonal\"": \""19%\""}",145682,1,"""South America""" +2024-12-11,60045,8462,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",584.14,"{\""promo\"": \""18%\""}",37665,0,"""Asia""" +2024-06-27,60046,7803,"[\""Wireless Mouse\"", \""Tablet\""]",1587.06,{},126368,1,"""North America""" +2023-07-03,60047,7504,"[\""Monitor\"", \""Laptop\""]",4128.6,{},3450,0,"""South America""" +2024-03-19,60048,7376,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4483.43,"{\""loyalty\"": \""29%\""}",145306,0,"""Europe""" +2024-02-28,60049,821,"[\""Tablet\"", \""Phone\""]",3261.6,"{\""loyalty\"": \""21%\""}",52378,1,"""Africa""" +2023-05-03,60050,5181,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1410.92,{},25000,0,"""North America""" +2023-01-30,60051,2469,"[\""Charger\""]",2111.92,{},29665,1,"""North America""" +2024-01-28,60052,4357,"[\""Headphones\"", \""Wireless Mouse\""]",4099.09,"{\""seasonal\"": \""26%\""}",277716,1,"""Europe""" +2024-10-23,60053,684,"[\""Headphones\"", \""Keyboard\""]",2360.18,{},208185,0,"""North America""" +2024-09-13,60054,4240,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1232.59,{},63668,0,"""South America""" +2023-06-23,60055,8420,"[\""Charger\"", \""Phone\""]",2539.93,{},261994,0,"""Europe""" +2024-01-11,60056,1084,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2370.82,{},170631,1,"""North America""" +2024-05-19,60057,1190,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2601.65,"{\""seasonal\"": \""29%\""}",75641,1,"""South America""" +2023-08-24,60058,1886,"[\""Monitor\""]",1178.91,"{\"": \""9%\""}",86051,0,"""Africa""" +2024-12-11,60059,2622,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4187.28,{},85066,1,"""Asia""" +2024-01-29,60060,5368,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",935.94,"{\""seasonal\"": \""28%\""}",102327,1,"""Europe""" +2023-10-02,60061,3175,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1766.31,"{\""promo\"": \""20%\""}",149715,1,"""Africa""" +2024-03-29,60062,2313,"[\""Headphones\"", \""Phone\""]",1461.82,"{\""seasonal\"": \""10%\""}",286607,0,"""Europe""" +2024-01-26,60063,6646,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4129.33,"{\""seasonal\"": \""17%\""}",104257,1,"""Europe""" +2024-10-05,60064,3185,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3143.65,{},211779,1,"""Africa""" +2023-05-27,60065,4100,"[\""Wireless Mouse\""]",1532.72,{},246845,1,"""Asia""" +2024-09-14,60066,356,"[\""Monitor\"", \""Laptop\""]",1776.88,{},91922,1,"""South America""" +2024-07-08,60067,8037,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4185.12,{},79858,1,"""Europe""" +2024-05-22,60068,3082,"[\""Laptop\"", \""Phone\""]",570.8,{},124652,1,"""Asia""" +2023-05-13,60069,2121,"[\""Keyboard\"", \""Phone\""]",4927.69,"{\""seasonal\"": \""6%\""}",5347,0,"""South America""" +2023-07-29,60070,6862,"[\""Keyboard\""]",3230.04,{},155946,0,"""North America""" +2024-07-15,60071,5522,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",421.48,"{\"": \""28%\""}",250662,0,"""Asia""" +2023-04-02,60072,4889,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4652.75,{},284955,0,"""Africa""" +2024-07-07,60073,9585,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",966.65,{},210336,0,"""Africa""" +2024-04-28,60074,8100,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4023.67,"{\""loyalty\"": \""30%\""}",197622,1,"""North America""" +2024-12-15,60075,3713,"[\""Keyboard\""]",4652.11,{},102857,1,"""Asia""" +2024-09-10,60076,7449,"[\""Wireless Mouse\""]",3394.51,{},157400,1,"""South America""" +2023-05-17,60077,4735,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1414.1,"{\"": \""30%\""}",118773,0,"""South America""" +2023-05-06,60078,1580,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2795.54,"{\""seasonal\"": \""7%\""}",297145,0,"""Africa""" +2023-03-18,60079,276,"[\""Laptop\""]",1016.94,{},275144,1,"""North America""" +2023-08-18,60080,1096,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1208.13,{},261485,1,"""Europe""" +2024-06-07,60081,1609,"[\""Tablet\"", \""Keyboard\""]",1992.3,{},10573,1,"""Europe""" +2023-12-26,60082,836,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",789.69,"{\""loyalty\"": \""27%\""}",179414,1,"""Asia""" +2023-07-30,60083,3259,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2937.84,{},210891,1,"""Europe""" +2023-06-25,60084,34,"[\""Headphones\"", \""Charger\"", \""Phone\""]",304.81,"{\""loyalty\"": \""20%\""}",3979,1,"""Africa""" +2024-10-05,60085,945,"[\""Keyboard\"", \""Monitor\""]",466.84,"{\""promo\"": \""13%\""}",89816,0,"""Asia""" +2023-10-23,60086,6281,"[\""Keyboard\"", \""Headphones\""]",2774.82,{},284394,1,"""South America""" +2024-03-30,60087,500,"[\""Keyboard\""]",4507.12,"{\""promo\"": \""11%\""}",91463,0,"""South America""" +2023-01-21,60088,886,"[\""Charger\"", \""Keyboard\""]",173.15,"{\""promo\"": \""8%\""}",18724,0,"""North America""" +2023-06-09,60089,4242,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2027.27,{},189837,0,"""South America""" +2024-02-27,60090,8523,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4523.26,"{\""promo\"": \""18%\""}",291644,1,"""South America""" +2023-08-03,60091,6314,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1759.72,{},259678,0,"""Europe""" +2024-04-21,60092,4476,"[\""Charger\"", \""Wireless Mouse\""]",2001.66,"{\""seasonal\"": \""8%\""}",176079,1,"""South America""" +2023-06-10,60093,2376,"[\""Wireless Mouse\"", \""Headphones\""]",4950.71,"{\""seasonal\"": \""6%\""}",123021,0,"""Africa""" +2024-07-28,60094,5139,"[\""Charger\"", \""Wireless Mouse\""]",3913.38,{},211884,1,"""South America""" +2023-08-21,60095,2829,"[\""Wireless Mouse\""]",4272.32,"{\""loyalty\"": \""13%\""}",77928,0,"""North America""" +2024-02-09,60096,6358,"[\""Tablet\""]",1773.88,{},277314,0,"""Africa""" +2024-08-20,60097,462,"[\""Phone\""]",3367.13,{},145218,1,"""Asia""" +2023-12-06,60098,3242,"[\""Tablet\"", \""Monitor\""]",2743.97,{},174939,1,"""Europe""" +2023-04-04,60099,6098,"[\""Phone\""]",4539.81,"{\""seasonal\"": \""25%\""}",11441,1,"""South America""" +2023-01-21,60100,7940,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1846.61,{},259471,0,"""South America""" +2024-08-17,60101,3936,"[\""Keyboard\"", \""Monitor\""]",4447.85,{},12947,0,"""Europe""" +2023-09-24,60102,3682,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4620.34,{},60391,0,"""Africa""" +2024-11-05,60103,2943,"[\""Monitor\""]",462.98,"{\"": \""5%\""}",194652,0,"""Asia""" +2023-07-13,60104,2500,"[\""Tablet\""]",1203.94,{},191514,1,"""Asia""" +2023-03-27,60105,8246,"[\""Tablet\"", \""Keyboard\""]",160.46,{},58565,1,"""Europe""" +2024-03-13,60106,7015,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",766.64,{},28561,1,"""South America""" +2024-06-18,60107,6405,"[\""Headphones\""]",1379.23,{},248268,1,"""Asia""" +2023-10-01,60108,5819,"[\""Monitor\""]",3591.47,"{\""loyalty\"": \""9%\""}",158207,1,"""Africa""" +2024-01-23,60109,1896,"[\""Keyboard\"", \""Headphones\""]",1804.23,{},1634,0,"""Europe""" +2024-02-07,60110,8139,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4702.55,"{\"": \""16%\""}",55218,1,"""South America""" +2023-06-02,60111,7430,"[\""Charger\"", \""Laptop\""]",4567.86,{},48565,1,"""Asia""" +2024-10-03,60112,4194,"[\""Keyboard\""]",3560.49,{},76579,1,"""Asia""" +2023-02-20,60113,561,"[\""Charger\"", \""Tablet\""]",142.08,{},118107,1,"""South America""" +2024-03-20,60114,5385,"[\""Phone\""]",3977.02,{},131478,0,"""Africa""" +2023-10-30,60115,2494,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4693.66,"{\""loyalty\"": \""6%\""}",129618,0,"""Asia""" +2024-06-06,60116,4251,"[\""Charger\""]",411.48,"{\""loyalty\"": \""30%\""}",280218,1,"""South America""" +2023-05-25,60117,3905,"[\""Charger\""]",1639.33,"{\"": \""11%\""}",52929,1,"""Africa""" +2024-09-22,60118,9947,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1894.25,"{\""loyalty\"": \""10%\""}",17670,0,"""Africa""" +2024-12-25,60119,7002,"[\""Phone\"", \""Tablet\""]",3290.8,{},298314,1,"""Asia""" +2023-09-16,60120,812,"[\""Headphones\""]",706.57,"{\""seasonal\"": \""9%\""}",254454,0,"""Europe""" +2023-09-22,60121,1044,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2783.1,{},274072,1,"""North America""" +2024-04-05,60122,256,"[\""Wireless Mouse\""]",4025.65,"{\""seasonal\"": \""25%\""}",298880,1,"""Europe""" +2023-02-18,60123,5028,"[\""Phone\""]",942.8,{},111975,0,"""Asia""" +2023-03-30,60124,4730,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4509.5,{},275614,0,"""North America""" +2023-09-25,60125,4537,"[\""Tablet\"", \""Headphones\""]",3963.6,"{\"": \""24%\""}",42808,1,"""Asia""" +2024-03-09,60126,9873,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3698.34,"{\""loyalty\"": \""28%\""}",142761,0,"""Africa""" +2024-04-24,60127,5839,"[\""Tablet\"", \""Phone\""]",3443.66,"{\""seasonal\"": \""28%\""}",270924,0,"""Africa""" +2023-02-01,60128,3373,"[\""Phone\"", \""Monitor\""]",2136.0,"{\""seasonal\"": \""14%\""}",277676,0,"""South America""" +2023-09-18,60129,3718,"[\""Headphones\""]",4033.11,{},160929,1,"""South America""" +2024-12-27,60130,7296,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2663.38,{},2831,1,"""Asia""" +2024-05-02,60131,1461,"[\""Keyboard\""]",4418.43,"{\"": \""24%\""}",7699,0,"""North America""" +2024-12-09,60132,450,"[\""Headphones\""]",1478.16,"{\""loyalty\"": \""23%\""}",13458,0,"""Africa""" +2023-10-27,60133,9940,"[\""Tablet\""]",1920.81,{},227918,0,"""South America""" +2024-11-01,60134,1873,"[\""Keyboard\"", \""Laptop\""]",2968.13,{},29459,0,"""North America""" +2023-01-27,60135,6605,"[\""Laptop\""]",1691.0,{},257437,0,"""Asia""" +2023-05-10,60136,9855,"[\""Keyboard\"", \""Headphones\""]",1633.47,{},157338,0,"""Africa""" +2024-06-24,60137,1930,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2419.5,"{\""loyalty\"": \""8%\""}",113383,0,"""Asia""" +2023-01-10,60138,4804,"[\""Phone\""]",760.7,{},45009,0,"""Europe""" +2024-12-13,60139,8621,"[\""Headphones\"", \""Charger\""]",2997.99,"{\""loyalty\"": \""7%\""}",124511,0,"""Asia""" +2024-03-11,60140,9553,"[\""Laptop\""]",4171.71,{},80220,0,"""Africa""" +2023-10-01,60141,9048,"[\""Wireless Mouse\"", \""Phone\""]",4336.26,{},246651,1,"""Africa""" +2024-11-19,60142,3135,"[\""Monitor\"", \""Laptop\""]",2496.66,"{\"": \""5%\""}",263117,1,"""Europe""" +2023-09-06,60143,847,"[\""Wireless Mouse\""]",4960.38,"{\""promo\"": \""25%\""}",31547,0,"""Asia""" +2023-02-03,60144,1983,"[\""Laptop\""]",795.29,{},260680,0,"""South America""" +2024-12-29,60145,3511,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3515.29,{},104780,0,"""Africa""" +2023-10-19,60146,2518,"[\""Monitor\"", \""Keyboard\""]",4563.87,"{\""seasonal\"": \""5%\""}",239820,1,"""Africa""" +2024-06-01,60147,3440,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",905.08,"{\""seasonal\"": \""20%\""}",106317,1,"""South America""" +2024-12-08,60148,828,"[\""Keyboard\"", \""Charger\""]",3895.56,{},95710,1,"""Africa""" +2023-07-31,60149,2546,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1967.66,"{\""loyalty\"": \""12%\""}",243824,0,"""Africa""" +2023-02-25,60150,2655,"[\""Charger\"", \""Wireless Mouse\""]",3716.91,"{\""promo\"": \""13%\""}",174005,1,"""Europe""" +2023-11-29,60151,5145,"[\""Tablet\"", \""Wireless Mouse\""]",3057.54,{},135034,1,"""Africa""" +2024-11-20,60152,2268,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3579.51,{},240128,0,"""South America""" +2023-01-27,60153,5000,"[\""Headphones\""]",4006.33,"{\""seasonal\"": \""16%\""}",156297,0,"""Africa""" +2024-01-29,60154,336,"[\""Wireless Mouse\"", \""Laptop\""]",1391.68,{},194973,1,"""Europe""" +2023-10-03,60155,97,"[\""Keyboard\"", \""Charger\""]",1620.05,"{\""loyalty\"": \""26%\""}",174376,0,"""North America""" +2023-07-23,60156,9547,"[\""Laptop\"", \""Headphones\""]",3513.61,"{\""loyalty\"": \""14%\""}",199377,0,"""South America""" +2024-01-12,60157,7067,"[\""Phone\"", \""Wireless Mouse\""]",2561.51,{},73684,1,"""Europe""" +2024-11-10,60158,2421,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3565.88,"{\""loyalty\"": \""29%\""}",133305,1,"""North America""" +2024-01-26,60159,2468,"[\""Tablet\""]",2416.59,"{\""seasonal\"": \""25%\""}",194652,0,"""Africa""" +2023-12-19,60160,2172,"[\""Tablet\"", \""Headphones\""]",2964.58,{},188812,0,"""Africa""" +2023-05-11,60161,8777,"[\""Charger\""]",1969.96,"{\""promo\"": \""7%\""}",240296,1,"""North America""" +2023-05-16,60162,6215,"[\""Keyboard\"", \""Laptop\""]",589.54,{},114537,1,"""Europe""" +2023-02-11,60163,449,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2737.43,{},35083,1,"""Europe""" +2024-05-24,60164,3587,"[\""Phone\""]",105.69,"{\""loyalty\"": \""19%\""}",205002,1,"""North America""" +2024-01-09,60165,9922,"[\""Keyboard\"", \""Charger\""]",4833.03,{},242951,0,"""Asia""" +2024-03-25,60166,9551,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2077.49,{},148303,0,"""North America""" +2024-12-27,60167,2112,"[\""Charger\""]",3544.13,{},108953,1,"""Africa""" +2024-01-16,60168,1281,"[\""Wireless Mouse\""]",3324.49,"{\"": \""7%\""}",43264,0,"""North America""" +2023-04-07,60169,6076,"[\""Phone\""]",2079.86,"{\""seasonal\"": \""12%\""}",102520,0,"""South America""" +2023-08-26,60170,6824,"[\""Tablet\"", \""Headphones\""]",3177.18,"{\"": \""10%\""}",221854,0,"""Africa""" +2024-01-29,60171,7898,"[\""Laptop\"", \""Wireless Mouse\""]",1951.61,"{\""promo\"": \""26%\""}",93818,1,"""Asia""" +2023-05-10,60172,9690,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2649.92,"{\"": \""29%\""}",72864,1,"""South America""" +2024-07-11,60173,3091,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",61.89,{},155600,1,"""Europe""" +2023-11-01,60174,9689,"[\""Headphones\"", \""Charger\""]",2673.32,{},213468,0,"""Europe""" +2023-01-29,60175,1940,"[\""Tablet\"", \""Headphones\""]",3719.81,"{\""loyalty\"": \""11%\""}",113898,1,"""Europe""" +2024-08-26,60176,3697,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4454.72,"{\"": \""15%\""}",45174,0,"""Asia""" +2023-10-03,60177,6507,"[\""Keyboard\""]",1779.85,{},295786,1,"""Europe""" +2023-05-15,60178,8927,"[\""Tablet\""]",3365.05,{},39739,1,"""Asia""" +2023-08-27,60179,8491,"[\""Monitor\"", \""Charger\""]",117.26,"{\""seasonal\"": \""11%\""}",209596,1,"""Asia""" +2023-11-20,60180,5750,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4210.5,{},210308,1,"""Africa""" +2023-06-10,60181,5973,"[\""Monitor\"", \""Charger\""]",2075.74,"{\""seasonal\"": \""5%\""}",219000,1,"""Europe""" +2023-12-11,60182,7714,"[\""Phone\"", \""Tablet\""]",1709.27,"{\""loyalty\"": \""18%\""}",62565,1,"""South America""" +2024-11-19,60183,1013,"[\""Monitor\"", \""Tablet\""]",3268.09,"{\""seasonal\"": \""24%\""}",232300,1,"""South America""" +2024-07-29,60184,7389,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1174.12,{},265076,0,"""Asia""" +2023-06-09,60185,744,"[\""Headphones\"", \""Monitor\""]",60.21,{},198291,0,"""South America""" +2023-12-29,60186,2650,"[\""Wireless Mouse\""]",580.08,{},93980,0,"""Asia""" +2023-11-08,60187,1850,"[\""Phone\"", \""Headphones\""]",1206.84,{},6024,0,"""South America""" +2023-12-26,60188,6180,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1608.97,{},274381,0,"""Europe""" +2024-06-30,60189,2711,"[\""Phone\""]",3459.44,"{\""loyalty\"": \""21%\""}",90779,1,"""North America""" +2024-01-01,60190,1418,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3254.84,{},157562,1,"""Africa""" +2024-08-10,60191,4825,"[\""Keyboard\""]",1892.62,"{\"": \""7%\""}",62391,0,"""North America""" +2024-03-19,60192,1684,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2792.45,"{\""seasonal\"": \""19%\""}",168954,0,"""South America""" +2023-09-27,60193,1287,"[\""Phone\"", \""Laptop\""]",2119.25,"{\""promo\"": \""16%\""}",17049,1,"""North America""" +2023-05-15,60194,1604,"[\""Charger\"", \""Phone\""]",3904.26,{},70737,0,"""South America""" +2023-03-16,60195,4641,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4365.61,{},23952,0,"""Europe""" +2023-04-05,60196,4378,"[\""Keyboard\"", \""Laptop\""]",3742.21,"{\"": \""16%\""}",222965,0,"""Africa""" +2024-06-25,60197,760,"[\""Charger\"", \""Headphones\""]",3153.22,{},184324,1,"""North America""" +2023-06-29,60198,853,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2765.97,{},17146,1,"""Europe""" +2023-10-25,60199,3295,"[\""Monitor\""]",3151.98,"{\"": \""22%\""}",264904,0,"""Europe""" +2023-04-27,60200,5431,"[\""Monitor\""]",4394.86,"{\""seasonal\"": \""30%\""}",178578,1,"""Europe""" +2024-12-02,60201,7582,"[\""Phone\"", \""Wireless Mouse\""]",1123.39,"{\""seasonal\"": \""12%\""}",219295,0,"""North America""" +2024-12-06,60202,3768,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2255.88,{},113154,1,"""South America""" +2024-08-14,60203,1740,"[\""Laptop\""]",2064.88,"{\"": \""30%\""}",151485,1,"""Asia""" +2024-10-25,60204,2734,"[\""Keyboard\"", \""Wireless Mouse\""]",1879.01,"{\""promo\"": \""5%\""}",165808,1,"""Europe""" +2023-07-08,60205,2386,"[\""Tablet\""]",2959.04,{},193579,1,"""Europe""" +2024-06-16,60206,8510,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",298.54,"{\""loyalty\"": \""19%\""}",8587,1,"""South America""" +2024-05-24,60207,9356,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",242.24,{},107571,0,"""Africa""" +2024-04-03,60208,9051,"[\""Laptop\""]",3516.03,"{\""loyalty\"": \""14%\""}",181488,0,"""North America""" +2023-10-02,60209,3896,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",368.94,{},139145,0,"""Africa""" +2024-09-13,60210,6693,"[\""Wireless Mouse\"", \""Phone\""]",2044.64,{},203462,0,"""Africa""" +2023-07-07,60211,8619,"[\""Charger\"", \""Tablet\""]",59.49,{},259474,0,"""Asia""" +2024-07-12,60212,5305,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4744.28,"{\""seasonal\"": \""29%\""}",239830,0,"""Asia""" +2023-03-07,60213,3128,"[\""Monitor\""]",3192.58,"{\""seasonal\"": \""26%\""}",174381,1,"""Africa""" +2024-09-07,60214,8436,"[\""Tablet\""]",3105.09,"{\"": \""13%\""}",16855,0,"""South America""" +2023-07-31,60215,3106,"[\""Tablet\""]",2713.8,"{\""seasonal\"": \""22%\""}",257039,0,"""Europe""" +2024-06-05,60216,7191,"[\""Phone\""]",70.91,{},256913,0,"""South America""" +2024-12-21,60217,5142,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",532.96,{},223083,0,"""Asia""" +2024-01-03,60218,987,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",827.26,{},222783,1,"""Africa""" +2024-03-29,60219,2066,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4679.16,"{\"": \""13%\""}",247184,0,"""North America""" +2023-08-26,60220,2175,"[\""Tablet\"", \""Laptop\""]",3505.43,"{\""loyalty\"": \""20%\""}",205770,0,"""North America""" +2023-12-15,60221,8643,"[\""Wireless Mouse\"", \""Headphones\""]",836.48,"{\""promo\"": \""28%\""}",290839,1,"""South America""" +2023-12-13,60222,2580,"[\""Charger\"", \""Wireless Mouse\""]",4389.9,{},156801,0,"""Asia""" +2023-11-05,60223,8954,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3484.23,"{\""seasonal\"": \""23%\""}",196999,1,"""South America""" +2023-08-27,60224,3323,"[\""Wireless Mouse\"", \""Keyboard\""]",4239.18,"{\""seasonal\"": \""19%\""}",251773,1,"""South America""" +2023-12-21,60225,3550,"[\""Tablet\""]",2926.73,{},275346,0,"""Europe""" +2024-09-04,60226,1537,"[\""Monitor\"", \""Laptop\""]",370.17,{},161319,0,"""South America""" +2024-06-18,60227,934,"[\""Headphones\""]",4445.95,{},223018,1,"""Asia""" +2024-01-14,60228,5923,"[\""Keyboard\"", \""Tablet\""]",802.41,{},154277,1,"""Africa""" +2023-06-01,60229,6407,"[\""Phone\"", \""Tablet\""]",3644.86,"{\""seasonal\"": \""22%\""}",163901,1,"""Africa""" +2024-02-15,60230,7063,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4044.27,"{\"": \""21%\""}",76793,0,"""Asia""" +2024-11-28,60231,3161,"[\""Headphones\"", \""Charger\""]",2888.56,"{\""loyalty\"": \""28%\""}",95812,1,"""Europe""" +2023-02-19,60232,3065,"[\""Phone\"", \""Charger\""]",1099.67,"{\""loyalty\"": \""29%\""}",6852,1,"""South America""" +2024-12-13,60233,8475,"[\""Monitor\""]",2156.53,{},213584,0,"""South America""" +2023-10-02,60234,2572,"[\""Monitor\"", \""Wireless Mouse\""]",583.35,{},160581,1,"""South America""" +2024-12-06,60235,38,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1828.11,"{\""seasonal\"": \""8%\""}",51674,0,"""South America""" +2023-02-06,60236,1838,"[\""Wireless Mouse\""]",4793.17,{},64564,0,"""Europe""" +2024-05-18,60237,5708,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1816.46,{},171843,0,"""South America""" +2023-07-25,60238,6190,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",468.1,"{\""seasonal\"": \""28%\""}",73924,1,"""North America""" +2024-03-07,60239,3704,"[\""Wireless Mouse\""]",3441.6,{},153788,1,"""Africa""" +2024-11-23,60240,2729,"[\""Tablet\"", \""Monitor\""]",198.4,{},237441,0,"""Asia""" +2024-09-04,60241,9990,"[\""Laptop\""]",2318.16,{},14468,1,"""South America""" +2024-10-26,60242,6357,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4116.35,"{\""seasonal\"": \""29%\""}",140622,0,"""South America""" +2023-03-06,60243,8416,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2990.94,"{\""seasonal\"": \""17%\""}",94619,1,"""Europe""" +2024-12-18,60244,629,"[\""Phone\"", \""Keyboard\""]",4289.11,{},111534,1,"""North America""" +2024-01-04,60245,7020,"[\""Headphones\""]",3722.83,{},243585,0,"""Asia""" +2023-12-13,60246,6799,"[\""Phone\"", \""Keyboard\""]",1847.73,"{\""promo\"": \""6%\""}",176917,1,"""South America""" +2023-10-14,60247,3670,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4330.37,{},70830,1,"""Europe""" +2023-04-02,60248,4318,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4962.43,{},77140,1,"""Asia""" +2024-07-20,60249,9534,"[\""Phone\""]",3694.39,"{\""loyalty\"": \""19%\""}",89190,0,"""South America""" +2024-08-31,60250,4510,"[\""Keyboard\""]",216.0,"{\""loyalty\"": \""21%\""}",114097,1,"""North America""" +2023-10-15,60251,4462,"[\""Phone\"", \""Charger\""]",4318.15,"{\"": \""21%\""}",274771,0,"""Africa""" +2023-08-25,60252,9078,"[\""Charger\""]",4759.8,"{\"": \""17%\""}",33660,0,"""Europe""" +2023-11-04,60253,9874,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",190.05,"{\""seasonal\"": \""10%\""}",202388,0,"""South America""" +2024-11-12,60254,9575,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",741.6,{},4420,0,"""Asia""" +2023-07-08,60255,9140,"[\""Laptop\"", \""Tablet\""]",4353.33,"{\""promo\"": \""9%\""}",263671,0,"""Asia""" +2024-03-14,60256,7948,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2853.12,{},127058,0,"""Africa""" +2023-07-23,60257,2022,"[\""Charger\""]",672.68,"{\""promo\"": \""8%\""}",64074,0,"""Asia""" +2023-12-19,60258,6207,"[\""Laptop\"", \""Tablet\""]",4658.51,{},59489,0,"""Europe""" +2023-02-11,60259,4737,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3209.01,"{\"": \""26%\""}",104446,1,"""North America""" +2024-07-02,60260,7509,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",186.62,{},124259,1,"""Asia""" +2023-04-08,60261,7736,"[\""Keyboard\""]",1873.75,{},22933,0,"""South America""" +2023-11-29,60262,395,"[\""Headphones\""]",3633.78,{},140911,1,"""Asia""" +2023-09-30,60263,4737,"[\""Phone\""]",2578.56,"{\""promo\"": \""27%\""}",297812,1,"""North America""" +2024-07-31,60264,4109,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",736.83,"{\"": \""15%\""}",55346,1,"""North America""" +2024-11-24,60265,1505,"[\""Keyboard\"", \""Phone\""]",3179.71,{},189061,0,"""Europe""" +2024-06-24,60266,182,"[\""Keyboard\""]",4337.15,{},51385,1,"""Africa""" +2024-10-29,60267,7468,"[\""Wireless Mouse\""]",1498.62,"{\""seasonal\"": \""14%\""}",123728,0,"""North America""" +2024-12-26,60268,6479,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3571.65,"{\"": \""26%\""}",218648,1,"""Africa""" +2024-04-10,60269,8411,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4462.21,"{\""loyalty\"": \""19%\""}",65137,0,"""Europe""" +2024-07-14,60270,3526,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2916.31,"{\""loyalty\"": \""17%\""}",73028,1,"""Africa""" +2024-02-02,60271,5655,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2654.68,"{\""seasonal\"": \""9%\""}",274404,1,"""North America""" +2023-06-01,60272,8311,"[\""Wireless Mouse\""]",3455.79,"{\"": \""5%\""}",251708,1,"""Asia""" +2024-09-09,60273,1248,"[\""Keyboard\"", \""Charger\""]",3886.31,"{\""seasonal\"": \""22%\""}",146055,1,"""South America""" +2023-03-15,60274,9268,"[\""Headphones\"", \""Laptop\""]",1719.79,"{\""seasonal\"": \""30%\""}",12307,0,"""Europe""" +2023-02-10,60275,2792,"[\""Charger\"", \""Tablet\""]",1253.55,"{\""promo\"": \""21%\""}",218942,0,"""Asia""" +2024-02-26,60276,9837,"[\""Tablet\"", \""Charger\""]",2890.47,{},72336,1,"""North America""" +2024-04-11,60277,8348,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",85.9,"{\"": \""5%\""}",63589,1,"""North America""" +2023-08-20,60278,7102,"[\""Tablet\""]",4962.32,{},115237,0,"""Asia""" +2023-03-24,60279,3615,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4391.45,{},54677,0,"""North America""" +2023-09-22,60280,3635,"[\""Tablet\""]",3630.68,"{\""loyalty\"": \""29%\""}",225659,1,"""Asia""" +2023-08-06,60281,1970,"[\""Monitor\"", \""Tablet\""]",1065.58,{},249100,0,"""Europe""" +2023-02-11,60282,6754,"[\""Headphones\"", \""Tablet\""]",3780.65,{},97779,0,"""Asia""" +2024-10-10,60283,6181,"[\""Laptop\"", \""Monitor\""]",302.63,{},141098,0,"""South America""" +2023-09-20,60284,2694,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4210.78,{},31319,1,"""Africa""" +2024-10-01,60285,5930,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1506.46,"{\""seasonal\"": \""13%\""}",12433,1,"""Europe""" +2024-05-22,60286,8082,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",975.62,{},73952,0,"""Europe""" +2024-08-27,60287,7873,"[\""Charger\"", \""Phone\""]",3767.7,{},145905,0,"""South America""" +2024-07-24,60288,9686,"[\""Keyboard\""]",3277.21,{},199994,0,"""South America""" +2023-03-10,60289,1334,"[\""Headphones\""]",3978.07,{},48910,1,"""North America""" +2024-08-21,60290,7195,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2245.96,"{\""loyalty\"": \""6%\""}",6263,1,"""Europe""" +2023-11-20,60291,4965,"[\""Monitor\"", \""Charger\""]",3177.46,"{\""seasonal\"": \""28%\""}",127915,0,"""Europe""" +2024-09-21,60292,2151,"[\""Headphones\"", \""Wireless Mouse\""]",2320.47,{},16154,0,"""North America""" +2023-04-24,60293,5246,"[\""Headphones\"", \""Monitor\""]",2509.26,"{\""loyalty\"": \""14%\""}",10254,1,"""Asia""" +2024-10-30,60294,1549,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3009.48,"{\""seasonal\"": \""24%\""}",127631,0,"""North America""" +2023-11-15,60295,8104,"[\""Laptop\"", \""Tablet\""]",2463.7,"{\"": \""13%\""}",138415,0,"""Africa""" +2023-08-07,60296,9320,"[\""Charger\""]",1464.21,"{\""seasonal\"": \""16%\""}",50485,0,"""Africa""" +2024-03-15,60297,2329,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4217.92,{},23867,0,"""Africa""" +2024-11-11,60298,7598,"[\""Laptop\""]",1360.38,{},208500,1,"""Europe""" +2023-07-26,60299,993,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1717.27,{},209853,0,"""South America""" +2024-11-08,60300,9060,"[\""Wireless Mouse\"", \""Laptop\""]",3438.14,{},183543,0,"""South America""" +2024-06-16,60301,5535,"[\""Laptop\"", \""Wireless Mouse\""]",1709.99,"{\""loyalty\"": \""14%\""}",262434,1,"""South America""" +2024-02-04,60302,2959,"[\""Charger\"", \""Phone\""]",3654.74,"{\""promo\"": \""11%\""}",261464,0,"""Asia""" +2023-02-08,60303,616,"[\""Tablet\"", \""Monitor\""]",2146.62,{},161535,1,"""Africa""" +2023-05-20,60304,8332,"[\""Tablet\"", \""Laptop\""]",3889.24,"{\""loyalty\"": \""18%\""}",245455,0,"""Europe""" +2023-05-28,60305,4175,"[\""Phone\""]",2441.45,"{\""loyalty\"": \""9%\""}",277094,0,"""Europe""" +2024-02-17,60306,9370,"[\""Tablet\"", \""Keyboard\""]",2389.96,{},6506,0,"""North America""" +2024-07-15,60307,8398,"[\""Charger\"", \""Tablet\""]",3011.65,"{\"": \""9%\""}",185072,1,"""North America""" +2024-06-24,60308,1310,"[\""Headphones\""]",204.46,{},253356,0,"""Europe""" +2024-10-31,60309,7926,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3177.99,{},13517,0,"""South America""" +2024-05-29,60310,3624,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3820.71,"{\""loyalty\"": \""30%\""}",69245,1,"""North America""" +2024-06-17,60311,7415,"[\""Phone\"", \""Headphones\""]",3077.09,"{\"": \""8%\""}",145938,0,"""North America""" +2024-08-30,60312,5247,"[\""Tablet\""]",1043.76,"{\""seasonal\"": \""22%\""}",185346,0,"""Europe""" +2023-04-29,60313,8958,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2595.2,"{\""loyalty\"": \""6%\""}",233617,1,"""Asia""" +2024-07-08,60314,3611,"[\""Charger\"", \""Keyboard\""]",644.08,{},5984,1,"""South America""" +2024-07-13,60315,4245,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4705.31,{},255248,0,"""Africa""" +2023-06-07,60316,2737,"[\""Tablet\""]",3172.81,{},182504,1,"""North America""" +2024-10-10,60317,1607,"[\""Monitor\"", \""Tablet\""]",1170.12,{},289387,0,"""Europe""" +2023-08-19,60318,3663,"[\""Phone\"", \""Laptop\""]",4658.78,"{\""seasonal\"": \""15%\""}",25164,1,"""Europe""" +2023-03-31,60319,1163,"[\""Tablet\""]",909.53,{},202175,1,"""Africa""" +2023-11-09,60320,2603,"[\""Tablet\""]",3598.6,"{\""loyalty\"": \""6%\""}",145302,1,"""Africa""" +2023-01-31,60321,2483,"[\""Phone\""]",1135.9,"{\""loyalty\"": \""19%\""}",242225,1,"""Asia""" +2023-03-23,60322,6867,"[\""Keyboard\"", \""Laptop\""]",4395.53,"{\""seasonal\"": \""22%\""}",18984,0,"""North America""" +2024-06-19,60323,9208,"[\""Headphones\"", \""Phone\""]",4615.41,"{\""promo\"": \""5%\""}",199083,1,"""Europe""" +2024-11-17,60324,8379,"[\""Keyboard\"", \""Phone\""]",4620.69,{},99411,1,"""South America""" +2024-03-14,60325,8362,"[\""Charger\""]",4229.3,{},272485,1,"""North America""" +2023-04-05,60326,5443,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2092.05,{},18082,0,"""North America""" +2023-04-29,60327,1110,"[\""Tablet\""]",1768.6,{},95530,0,"""Africa""" +2023-01-23,60328,7206,"[\""Charger\""]",604.86,"{\"": \""14%\""}",188081,0,"""Africa""" +2023-10-31,60329,9713,"[\""Laptop\"", \""Keyboard\""]",452.53,{},256289,0,"""Europe""" +2024-05-04,60330,3679,"[\""Wireless Mouse\""]",3136.03,"{\""promo\"": \""26%\""}",245713,1,"""Asia""" +2023-06-28,60331,9975,"[\""Laptop\""]",4863.68,{},142873,1,"""Europe""" +2023-05-05,60332,1990,"[\""Phone\""]",714.1,{},158627,0,"""North America""" +2024-12-29,60333,2544,"[\""Keyboard\"", \""Laptop\""]",2392.71,"{\""seasonal\"": \""28%\""}",73022,1,"""Africa""" +2024-03-12,60334,6624,"[\""Laptop\"", \""Wireless Mouse\""]",531.69,"{\""seasonal\"": \""19%\""}",108683,0,"""North America""" +2023-03-07,60335,9873,"[\""Phone\"", \""Keyboard\""]",3333.1,{},7209,0,"""South America""" +2023-02-28,60336,8738,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3418.79,{},14603,1,"""North America""" +2023-09-19,60337,7243,"[\""Wireless Mouse\"", \""Monitor\""]",2099.05,"{\""loyalty\"": \""26%\""}",133017,0,"""Africa""" +2023-04-09,60338,183,"[\""Charger\""]",2935.74,{},278885,1,"""North America""" +2023-06-21,60339,2423,"[\""Tablet\""]",4420.54,{},16240,0,"""Europe""" +2024-12-06,60340,8822,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",961.73,{},71837,1,"""Europe""" +2024-08-16,60341,8688,"[\""Charger\""]",1363.53,{},173233,0,"""North America""" +2023-12-02,60342,323,"[\""Headphones\"", \""Phone\""]",1099.22,"{\"": \""25%\""}",25234,1,"""Asia""" +2023-08-10,60343,6846,"[\""Headphones\"", \""Phone\""]",89.58,"{\""seasonal\"": \""21%\""}",173917,1,"""North America""" +2024-11-13,60344,4086,"[\""Phone\""]",937.04,{},259177,0,"""Asia""" +2024-08-15,60345,6899,"[\""Charger\"", \""Wireless Mouse\""]",1876.57,"{\""loyalty\"": \""7%\""}",287569,1,"""Africa""" +2024-11-14,60346,6347,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4109.33,"{\"": \""21%\""}",171739,0,"""Europe""" +2023-05-24,60347,6616,"[\""Headphones\"", \""Keyboard\""]",1278.55,{},247474,0,"""Asia""" +2024-12-24,60348,259,"[\""Phone\"", \""Charger\""]",3326.69,"{\""promo\"": \""17%\""}",85802,1,"""North America""" +2023-09-18,60349,1716,"[\""Headphones\"", \""Keyboard\""]",4886.23,"{\""seasonal\"": \""15%\""}",95345,1,"""South America""" +2023-12-22,60350,9370,"[\""Phone\"", \""Laptop\""]",2212.05,{},2139,0,"""South America""" +2024-07-05,60351,5747,"[\""Wireless Mouse\"", \""Keyboard\""]",3675.7,{},191927,0,"""Africa""" +2024-01-15,60352,7574,"[\""Laptop\""]",1663.6,{},223294,0,"""Europe""" +2024-04-06,60353,5494,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1638.43,{},198556,1,"""Europe""" +2023-03-26,60354,1624,"[\""Wireless Mouse\"", \""Monitor\""]",1734.15,"{\"": \""10%\""}",262389,0,"""Africa""" +2024-05-02,60355,7245,"[\""Tablet\""]",3568.2,{},52315,0,"""South America""" +2023-09-29,60356,9624,"[\""Monitor\""]",4865.26,"{\""promo\"": \""21%\""}",204061,1,"""North America""" +2024-12-08,60357,6579,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",850.03,"{\""loyalty\"": \""10%\""}",20166,1,"""Africa""" +2024-10-19,60358,8498,"[\""Laptop\""]",2395.89,"{\"": \""5%\""}",20868,0,"""Europe""" +2023-09-03,60359,6863,"[\""Headphones\"", \""Laptop\""]",767.5,"{\""loyalty\"": \""28%\""}",227884,1,"""North America""" +2023-03-28,60360,8354,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",547.28,"{\""seasonal\"": \""20%\""}",242669,1,"""Asia""" +2023-07-30,60361,4411,"[\""Headphones\""]",4452.82,"{\"": \""26%\""}",5485,1,"""South America""" +2023-08-07,60362,5020,"[\""Wireless Mouse\"", \""Monitor\""]",2337.33,"{\""seasonal\"": \""11%\""}",151018,0,"""South America""" +2024-09-06,60363,4741,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1201.23,"{\"": \""25%\""}",108861,0,"""Europe""" +2023-11-01,60364,7495,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1744.16,"{\""loyalty\"": \""24%\""}",267629,0,"""South America""" +2023-10-04,60365,973,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4691.26,{},23671,0,"""Africa""" +2023-10-25,60366,9208,"[\""Headphones\"", \""Tablet\""]",248.92,"{\""loyalty\"": \""24%\""}",234192,1,"""Europe""" +2023-02-23,60367,5114,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",588.82,"{\""promo\"": \""8%\""}",276445,0,"""Europe""" +2023-02-07,60368,1570,"[\""Headphones\""]",3881.31,{},289168,1,"""North America""" +2024-06-17,60369,1503,"[\""Laptop\""]",4287.85,{},230888,0,"""South America""" +2024-04-12,60370,3465,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",778.98,"{\""loyalty\"": \""16%\""}",247347,0,"""North America""" +2023-07-09,60371,3983,"[\""Wireless Mouse\"", \""Headphones\""]",3148.63,{},206629,0,"""Africa""" +2024-02-17,60372,278,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1490.93,"{\""seasonal\"": \""24%\""}",133218,0,"""North America""" +2023-08-12,60373,6821,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2298.66,"{\""promo\"": \""14%\""}",24110,1,"""Europe""" +2024-05-31,60374,6268,"[\""Monitor\""]",1214.93,"{\""loyalty\"": \""18%\""}",177270,1,"""North America""" +2024-07-20,60375,5074,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3703.3,{},163868,0,"""North America""" +2023-03-20,60376,3508,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2736.3,"{\"": \""24%\""}",111329,0,"""Asia""" +2024-04-21,60377,7873,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2208.17,{},269639,0,"""Europe""" +2024-04-12,60378,2957,"[\""Phone\"", \""Monitor\""]",2763.7,"{\""seasonal\"": \""12%\""}",188521,0,"""Africa""" +2024-09-25,60379,9905,"[\""Keyboard\""]",3308.68,"{\""loyalty\"": \""7%\""}",71443,1,"""North America""" +2024-01-09,60380,3303,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2578.25,{},128523,0,"""Africa""" +2024-07-10,60381,401,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3871.44,"{\"": \""28%\""}",183804,1,"""Europe""" +2023-05-02,60382,5834,"[\""Charger\""]",2579.51,"{\""loyalty\"": \""18%\""}",47370,1,"""Asia""" +2023-07-06,60383,3445,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1335.47,"{\""promo\"": \""6%\""}",232635,1,"""North America""" +2024-01-14,60384,3324,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1784.53,{},163230,0,"""Asia""" +2023-05-12,60385,6761,"[\""Laptop\""]",2005.55,{},4329,1,"""South America""" +2024-12-26,60386,4266,"[\""Monitor\"", \""Wireless Mouse\""]",2304.18,{},236212,1,"""Europe""" +2023-05-10,60387,7591,"[\""Headphones\""]",3683.46,"{\""loyalty\"": \""23%\""}",29845,1,"""Africa""" +2023-01-20,60388,7156,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3512.07,"{\""seasonal\"": \""29%\""}",263306,1,"""Africa""" +2024-03-12,60389,3985,"[\""Headphones\""]",2946.89,"{\""promo\"": \""10%\""}",207025,1,"""Europe""" +2023-09-11,60390,8092,"[\""Keyboard\""]",2120.05,"{\""seasonal\"": \""8%\""}",235619,1,"""South America""" +2024-06-11,60391,6057,"[\""Keyboard\"", \""Tablet\""]",1456.05,"{\"": \""15%\""}",291372,0,"""Asia""" +2024-03-05,60392,2772,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4546.31,{},23117,1,"""Africa""" +2024-07-06,60393,5637,"[\""Wireless Mouse\""]",3299.07,"{\""seasonal\"": \""21%\""}",35998,0,"""North America""" +2023-03-17,60394,3320,"[\""Headphones\""]",700.62,"{\""seasonal\"": \""27%\""}",183961,0,"""Europe""" +2024-03-07,60395,7422,"[\""Phone\""]",2318.1,{},81170,0,"""Europe""" +2023-11-02,60396,2586,"[\""Laptop\""]",3364.96,{},282411,1,"""Europe""" +2023-11-05,60397,6652,"[\""Phone\"", \""Tablet\""]",2448.46,"{\""promo\"": \""24%\""}",289891,0,"""Asia""" +2023-03-13,60398,2020,"[\""Laptop\"", \""Tablet\""]",4697.72,{},24659,1,"""Africa""" +2024-10-27,60399,3285,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1588.48,{},137645,1,"""Africa""" +2024-10-12,60400,313,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1501.08,{},269934,0,"""Asia""" +2023-12-16,60401,6495,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3314.76,"{\""promo\"": \""26%\""}",29106,1,"""Europe""" +2023-04-10,60402,4206,"[\""Charger\""]",385.93,{},223148,0,"""South America""" +2024-03-29,60403,7612,"[\""Phone\""]",193.13,{},73946,1,"""Asia""" +2023-10-12,60404,2545,"[\""Phone\""]",1856.12,{},87956,1,"""Asia""" +2023-10-29,60405,5033,"[\""Tablet\""]",1956.35,"{\"": \""27%\""}",131150,0,"""Europe""" +2023-12-22,60406,4690,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3217.33,{},251271,1,"""Europe""" +2023-08-23,60407,3601,"[\""Phone\""]",4119.31,{},147652,1,"""Africa""" +2024-11-06,60408,9731,"[\""Monitor\""]",2530.66,"{\""loyalty\"": \""9%\""}",13603,0,"""Africa""" +2024-08-05,60409,5846,"[\""Laptop\""]",235.6,{},204547,1,"""Asia""" +2024-02-23,60410,455,"[\""Headphones\""]",2856.1,{},138812,0,"""Asia""" +2024-11-16,60411,870,"[\""Charger\""]",2352.3,"{\"": \""30%\""}",262772,0,"""Asia""" +2024-01-10,60412,9591,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2268.8,"{\""promo\"": \""9%\""}",171035,1,"""Africa""" +2023-03-09,60413,4750,"[\""Keyboard\"", \""Phone\""]",2139.86,"{\""promo\"": \""14%\""}",271993,1,"""North America""" +2024-08-16,60414,3359,"[\""Laptop\""]",3628.34,{},2226,1,"""Africa""" +2024-09-06,60415,2750,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",769.63,"{\"": \""30%\""}",166039,0,"""South America""" +2024-07-14,60416,6188,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4264.26,{},32143,1,"""South America""" +2023-02-18,60417,2939,"[\""Wireless Mouse\""]",624.59,{},143312,1,"""South America""" +2023-04-20,60418,2568,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3727.28,{},58598,1,"""Europe""" +2024-05-07,60419,4638,"[\""Headphones\""]",2045.83,"{\""seasonal\"": \""14%\""}",296023,1,"""North America""" +2024-09-23,60420,6906,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3122.74,"{\""loyalty\"": \""18%\""}",198749,0,"""Asia""" +2023-05-15,60421,4973,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2971.3,{},39212,1,"""Africa""" +2024-11-18,60422,9037,"[\""Wireless Mouse\"", \""Tablet\""]",1308.28,{},295326,1,"""Asia""" +2023-12-19,60423,8895,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2011.28,{},284419,1,"""Africa""" +2024-06-19,60424,2675,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3859.9,"{\""loyalty\"": \""12%\""}",234307,0,"""South America""" +2023-06-07,60425,3880,"[\""Headphones\""]",3855.41,"{\""seasonal\"": \""14%\""}",52637,0,"""Africa""" +2023-05-26,60426,4040,"[\""Headphones\"", \""Monitor\""]",3621.65,"{\"": \""24%\""}",92063,1,"""Europe""" +2023-07-28,60427,9937,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4777.53,{},293217,0,"""South America""" +2024-06-14,60428,2409,"[\""Charger\""]",118.88,"{\""loyalty\"": \""28%\""}",89510,1,"""Asia""" +2024-11-04,60429,9962,"[\""Keyboard\""]",2793.18,{},158498,1,"""Asia""" +2024-01-23,60430,9606,"[\""Charger\""]",4244.08,"{\""loyalty\"": \""24%\""}",270990,1,"""Europe""" +2023-10-21,60431,9236,"[\""Headphones\""]",719.32,{},193438,0,"""Asia""" +2024-01-07,60432,4376,"[\""Monitor\""]",4822.58,{},200060,1,"""South America""" +2023-07-13,60433,3125,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",390.24,"{\""loyalty\"": \""26%\""}",232367,0,"""Asia""" +2024-05-15,60434,2174,"[\""Headphones\""]",2189.05,{},225706,1,"""South America""" +2024-03-05,60435,2393,"[\""Monitor\"", \""Wireless Mouse\""]",2668.05,{},146027,0,"""South America""" +2024-01-12,60436,7973,"[\""Headphones\"", \""Monitor\""]",1166.01,{},159620,0,"""Africa""" +2024-08-13,60437,7703,"[\""Charger\""]",1343.75,"{\""promo\"": \""17%\""}",213155,0,"""Europe""" +2023-06-15,60438,7498,"[\""Wireless Mouse\""]",4357.33,"{\"": \""20%\""}",249234,0,"""Asia""" +2023-01-25,60439,6853,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1425.63,"{\""loyalty\"": \""13%\""}",85277,1,"""North America""" +2024-01-19,60440,6067,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1102.93,{},31222,1,"""North America""" +2024-12-29,60441,6441,"[\""Headphones\""]",698.0,{},176586,1,"""Asia""" +2023-02-09,60442,9299,"[\""Headphones\"", \""Wireless Mouse\""]",1377.55,"{\""seasonal\"": \""19%\""}",205813,0,"""Europe""" +2023-04-08,60443,7449,"[\""Laptop\"", \""Wireless Mouse\""]",2287.24,"{\""promo\"": \""17%\""}",105366,1,"""South America""" +2024-11-24,60444,3501,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",913.58,"{\"": \""29%\""}",271122,0,"""South America""" +2023-01-29,60445,1621,"[\""Tablet\"", \""Laptop\""]",3740.19,{},127647,0,"""North America""" +2023-11-19,60446,141,"[\""Laptop\""]",490.22,"{\""promo\"": \""15%\""}",121620,1,"""Europe""" +2024-07-31,60447,5548,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1223.82,"{\""loyalty\"": \""22%\""}",197700,0,"""North America""" +2024-12-23,60448,6441,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2982.15,"{\""seasonal\"": \""7%\""}",98930,1,"""Europe""" +2023-08-01,60449,1234,"[\""Wireless Mouse\""]",916.48,{},12562,0,"""North America""" +2023-07-07,60450,2146,"[\""Monitor\"", \""Charger\""]",1888.91,{},174869,0,"""Europe""" +2024-07-30,60451,2708,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",852.11,{},88880,0,"""Africa""" +2023-07-02,60452,8291,"[\""Wireless Mouse\"", \""Keyboard\""]",4383.12,{},273790,0,"""South America""" +2023-10-24,60453,2061,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",484.4,{},85196,1,"""Asia""" +2024-05-24,60454,8938,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4181.12,"{\""seasonal\"": \""6%\""}",135771,0,"""South America""" +2023-11-05,60455,1684,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4778.7,"{\"": \""26%\""}",49511,1,"""South America""" +2023-01-07,60456,7485,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",364.44,{},95393,1,"""South America""" +2023-12-27,60457,1295,"[\""Keyboard\""]",1940.28,"{\""promo\"": \""21%\""}",84956,1,"""Europe""" +2024-12-28,60458,1607,"[\""Keyboard\"", \""Tablet\""]",4140.4,"{\"": \""21%\""}",251782,0,"""North America""" +2024-05-27,60459,7362,"[\""Wireless Mouse\"", \""Tablet\""]",3827.14,"{\""promo\"": \""9%\""}",290499,1,"""South America""" +2024-07-27,60460,7324,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4537.08,"{\""promo\"": \""24%\""}",231232,1,"""Asia""" +2023-10-22,60461,9540,"[\""Charger\""]",2011.1,"{\"": \""18%\""}",18755,1,"""Europe""" +2024-06-08,60462,9496,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2636.94,"{\""loyalty\"": \""20%\""}",280482,0,"""Europe""" +2023-08-23,60463,556,"[\""Phone\""]",4447.61,{},246842,0,"""Europe""" +2024-02-25,60464,5266,"[\""Laptop\""]",1273.33,"{\""promo\"": \""30%\""}",82561,1,"""Asia""" +2023-06-06,60465,5526,"[\""Headphones\"", \""Tablet\""]",3403.38,{},151946,1,"""Asia""" +2024-02-19,60466,967,"[\""Charger\""]",3225.24,"{\""promo\"": \""11%\""}",62647,1,"""Africa""" +2023-05-15,60467,652,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1280.24,"{\""seasonal\"": \""18%\""}",137010,1,"""Africa""" +2023-12-18,60468,8221,"[\""Laptop\""]",90.48,"{\""loyalty\"": \""24%\""}",232503,1,"""North America""" +2023-07-19,60469,3308,"[\""Wireless Mouse\""]",681.52,{},212793,0,"""North America""" +2024-05-28,60470,1513,"[\""Keyboard\""]",1244.75,"{\""promo\"": \""23%\""}",107476,1,"""Africa""" +2023-12-31,60471,3950,"[\""Charger\""]",1534.09,"{\""loyalty\"": \""7%\""}",259014,0,"""Asia""" +2023-05-17,60472,7041,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1272.26,"{\""loyalty\"": \""6%\""}",249662,1,"""Europe""" +2023-06-22,60473,3009,"[\""Phone\"", \""Monitor\""]",3671.75,"{\""loyalty\"": \""17%\""}",27110,0,"""North America""" +2023-04-04,60474,5179,"[\""Monitor\"", \""Phone\""]",3790.34,{},136668,0,"""South America""" +2023-09-27,60475,9034,"[\""Charger\""]",1349.75,{},6140,0,"""South America""" +2024-03-27,60476,5985,"[\""Wireless Mouse\""]",3155.13,"{\""loyalty\"": \""30%\""}",39672,1,"""North America""" +2023-02-18,60477,2682,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1193.76,"{\"": \""12%\""}",40595,1,"""Europe""" +2024-09-04,60478,6672,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",498.87,{},295391,1,"""Africa""" +2024-03-30,60479,7976,"[\""Headphones\""]",2828.77,{},208381,1,"""Africa""" +2023-03-17,60480,9304,"[\""Phone\""]",4121.78,"{\"": \""28%\""}",120123,0,"""Africa""" +2023-08-26,60481,8374,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4651.44,{},268026,0,"""North America""" +2023-09-23,60482,107,"[\""Tablet\""]",3060.38,{},35161,0,"""Asia""" +2024-03-09,60483,8451,"[\""Charger\"", \""Laptop\""]",2802.56,{},190603,1,"""Asia""" +2023-04-15,60484,6814,"[\""Headphones\""]",4916.88,{},117139,0,"""Europe""" +2023-06-04,60485,1912,"[\""Charger\""]",2296.85,"{\""promo\"": \""23%\""}",98064,0,"""Asia""" +2024-09-11,60486,5554,"[\""Monitor\"", \""Laptop\""]",2900.62,{},286863,0,"""Europe""" +2024-11-02,60487,3809,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4274.67,"{\""loyalty\"": \""8%\""}",233417,1,"""Africa""" +2023-08-19,60488,3360,"[\""Tablet\"", \""Monitor\""]",1602.89,{},234313,0,"""Africa""" +2023-10-28,60489,2538,"[\""Laptop\"", \""Keyboard\""]",2624.56,"{\""promo\"": \""29%\""}",42712,0,"""Asia""" +2023-04-05,60490,3032,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3664.52,"{\""loyalty\"": \""18%\""}",286106,0,"""South America""" +2023-02-24,60491,9780,"[\""Phone\""]",1962.6,{},296574,1,"""South America""" +2024-11-20,60492,2462,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",415.29,"{\""seasonal\"": \""21%\""}",13827,0,"""Europe""" +2023-11-02,60493,3641,"[\""Wireless Mouse\"", \""Headphones\""]",1957.43,"{\""promo\"": \""14%\""}",3054,1,"""North America""" +2023-06-17,60494,1889,"[\""Phone\"", \""Wireless Mouse\""]",4593.06,{},122456,1,"""Africa""" +2023-04-23,60495,6728,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3043.13,{},163052,0,"""South America""" +2023-05-06,60496,8278,"[\""Wireless Mouse\"", \""Monitor\""]",2707.72,"{\""loyalty\"": \""26%\""}",254513,1,"""Africa""" +2024-04-19,60497,2146,"[\""Tablet\"", \""Wireless Mouse\""]",3219.61,"{\""promo\"": \""26%\""}",259066,0,"""North America""" +2024-10-27,60498,2579,"[\""Laptop\""]",1203.36,{},123419,0,"""Europe""" +2024-01-19,60499,7269,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2029.5,{},11632,0,"""Europe""" +2023-04-08,60500,9595,"[\""Wireless Mouse\""]",3839.33,{},10855,1,"""Europe""" +2023-09-05,60501,566,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3343.4,"{\"": \""20%\""}",134181,1,"""Europe""" +2024-08-20,60502,1393,"[\""Tablet\""]",3075.05,{},284159,1,"""Africa""" +2023-03-11,60503,6662,"[\""Monitor\"", \""Wireless Mouse\""]",4285.15,"{\""loyalty\"": \""7%\""}",19546,0,"""Asia""" +2023-03-23,60504,7451,"[\""Headphones\""]",673.19,{},203426,1,"""Asia""" +2023-02-03,60505,3075,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4901.4,{},251129,1,"""Africa""" +2023-11-01,60506,8443,"[\""Phone\""]",3580.75,"{\""seasonal\"": \""29%\""}",70436,1,"""Africa""" +2023-08-07,60507,6140,"[\""Tablet\"", \""Laptop\""]",258.36,"{\""seasonal\"": \""26%\""}",285006,1,"""Africa""" +2023-07-01,60508,1043,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1254.44,{},261380,1,"""Europe""" +2023-03-25,60509,5079,"[\""Charger\"", \""Tablet\""]",4874.69,"{\""seasonal\"": \""16%\""}",133570,0,"""Asia""" +2024-05-16,60510,3200,"[\""Phone\"", \""Wireless Mouse\""]",1656.64,{},181752,0,"""Europe""" +2024-07-16,60511,7289,"[\""Wireless Mouse\""]",1124.93,"{\""promo\"": \""29%\""}",36382,0,"""Africa""" +2024-07-08,60512,990,"[\""Wireless Mouse\""]",565.01,"{\""promo\"": \""7%\""}",257836,1,"""North America""" +2024-10-13,60513,3115,"[\""Headphones\""]",3782.17,{},187792,1,"""South America""" +2024-12-06,60514,8884,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3776.72,{},42527,0,"""Africa""" +2024-01-30,60515,5643,"[\""Wireless Mouse\""]",4699.49,{},15302,0,"""Europe""" +2023-08-05,60516,1844,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2521.65,{},259836,0,"""Europe""" +2024-01-11,60517,3353,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",260.1,{},54912,1,"""Europe""" +2024-10-01,60518,3156,"[\""Headphones\"", \""Keyboard\""]",1433.27,{},140389,0,"""Africa""" +2023-09-05,60519,947,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3125.46,{},170409,1,"""South America""" +2024-05-24,60520,8274,"[\""Headphones\""]",3204.54,{},223595,0,"""Europe""" +2023-04-29,60521,7971,"[\""Tablet\"", \""Keyboard\""]",3319.3,{},107030,0,"""Asia""" +2023-04-22,60522,7149,"[\""Keyboard\"", \""Wireless Mouse\""]",1011.04,"{\""seasonal\"": \""16%\""}",81203,1,"""Europe""" +2023-07-14,60523,1609,"[\""Phone\"", \""Headphones\""]",1371.42,"{\""seasonal\"": \""14%\""}",193581,0,"""South America""" +2024-10-10,60524,2010,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3366.73,"{\""loyalty\"": \""14%\""}",120646,0,"""Asia""" +2023-01-11,60525,7247,"[\""Monitor\"", \""Wireless Mouse\""]",1309.67,"{\""promo\"": \""9%\""}",204661,0,"""North America""" +2024-06-24,60526,7363,"[\""Wireless Mouse\""]",903.09,"{\""promo\"": \""14%\""}",190015,1,"""Asia""" +2024-11-28,60527,6794,"[\""Laptop\""]",2477.0,"{\""seasonal\"": \""18%\""}",244711,0,"""South America""" +2023-04-21,60528,5915,"[\""Keyboard\"", \""Headphones\""]",4207.81,"{\""loyalty\"": \""8%\""}",187628,0,"""Europe""" +2024-11-12,60529,2114,"[\""Wireless Mouse\"", \""Phone\""]",2537.45,{},239262,0,"""Asia""" +2023-06-09,60530,3267,"[\""Monitor\""]",1088.18,"{\""loyalty\"": \""30%\""}",174867,1,"""South America""" +2024-12-05,60531,5262,"[\""Charger\""]",1520.71,{},40033,0,"""South America""" +2023-11-28,60532,5072,"[\""Charger\"", \""Laptop\""]",1665.71,"{\"": \""24%\""}",103030,0,"""Africa""" +2023-11-08,60533,4493,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1154.36,{},136294,0,"""South America""" +2023-11-18,60534,7586,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3538.59,"{\""promo\"": \""20%\""}",107744,1,"""Africa""" +2024-12-30,60535,220,"[\""Phone\""]",366.22,"{\""seasonal\"": \""17%\""}",247435,1,"""South America""" +2023-10-24,60536,3157,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",396.42,"{\""promo\"": \""18%\""}",25565,0,"""Asia""" +2024-10-16,60537,5899,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1104.07,{},69894,1,"""Europe""" +2023-01-30,60538,6898,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3289.66,"{\""seasonal\"": \""23%\""}",249924,1,"""North America""" +2023-02-01,60539,6744,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1805.44,"{\""promo\"": \""21%\""}",212506,0,"""Europe""" +2023-07-11,60540,6083,"[\""Headphones\"", \""Tablet\""]",716.56,"{\""promo\"": \""20%\""}",73580,1,"""Europe""" +2024-09-06,60541,8648,"[\""Wireless Mouse\""]",3728.13,"{\""promo\"": \""7%\""}",216487,1,"""Asia""" +2024-04-07,60542,6409,"[\""Wireless Mouse\"", \""Keyboard\""]",2861.21,{},273892,0,"""Asia""" +2023-06-16,60543,8677,"[\""Headphones\""]",602.72,{},69991,1,"""South America""" +2024-07-30,60544,5604,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",210.51,"{\""loyalty\"": \""14%\""}",218221,0,"""North America""" +2024-08-26,60545,7980,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1702.96,{},19804,0,"""North America""" +2023-10-05,60546,5806,"[\""Headphones\"", \""Tablet\""]",1257.04,{},254257,0,"""North America""" +2024-11-08,60547,310,"[\""Wireless Mouse\""]",2394.58,"{\"": \""5%\""}",15521,1,"""Asia""" +2023-07-20,60548,4666,"[\""Tablet\""]",4802.85,{},290946,1,"""North America""" +2023-04-01,60549,3018,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",913.59,{},32070,0,"""Europe""" +2023-02-19,60550,1151,"[\""Wireless Mouse\"", \""Headphones\""]",2831.86,{},129701,1,"""Europe""" +2023-10-24,60551,7472,"[\""Tablet\""]",275.27,"{\""promo\"": \""27%\""}",273749,1,"""South America""" +2023-08-18,60552,3444,"[\""Monitor\"", \""Headphones\""]",3285.39,"{\""loyalty\"": \""22%\""}",244845,1,"""Africa""" +2023-12-10,60553,9983,"[\""Monitor\"", \""Tablet\""]",1627.99,"{\""promo\"": \""6%\""}",7070,0,"""Europe""" +2024-08-24,60554,9487,"[\""Monitor\"", \""Phone\""]",2197.14,"{\""seasonal\"": \""16%\""}",53664,1,"""North America""" +2024-01-05,60555,8892,"[\""Keyboard\""]",3675.07,{},156324,1,"""Asia""" +2023-09-22,60556,3336,"[\""Headphones\"", \""Phone\""]",2596.92,"{\""loyalty\"": \""16%\""}",244737,1,"""Asia""" +2023-10-12,60557,1223,"[\""Phone\""]",426.81,"{\"": \""8%\""}",199432,0,"""North America""" +2023-01-19,60558,417,"[\""Wireless Mouse\""]",1592.98,{},279631,1,"""North America""" +2023-09-24,60559,6559,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1730.98,{},93812,1,"""Africa""" +2023-10-02,60560,470,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1791.39,"{\""seasonal\"": \""18%\""}",15412,0,"""Asia""" +2024-12-29,60561,819,"[\""Headphones\"", \""Wireless Mouse\""]",235.83,{},258981,1,"""North America""" +2023-11-03,60562,6977,"[\""Phone\"", \""Monitor\""]",3948.65,"{\""promo\"": \""21%\""}",152534,0,"""South America""" +2023-09-19,60563,7892,"[\""Phone\"", \""Charger\""]",2890.78,"{\""loyalty\"": \""9%\""}",20365,0,"""North America""" +2024-06-18,60564,641,"[\""Headphones\"", \""Keyboard\""]",4551.91,{},73080,1,"""Europe""" +2023-03-05,60565,9743,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3305.86,{},9297,1,"""Europe""" +2024-05-11,60566,4886,"[\""Keyboard\"", \""Tablet\""]",4348.49,{},211459,1,"""Asia""" +2024-07-24,60567,627,"[\""Headphones\""]",4257.48,"{\""loyalty\"": \""25%\""}",139957,1,"""Africa""" +2024-04-06,60568,4094,"[\""Phone\""]",3083.53,"{\""seasonal\"": \""21%\""}",114317,0,"""Europe""" +2023-08-12,60569,8524,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3655.4,{},192747,1,"""South America""" +2023-04-28,60570,6328,"[\""Headphones\"", \""Charger\""]",934.98,"{\""promo\"": \""10%\""}",56004,1,"""Asia""" +2024-05-29,60571,3611,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3496.33,{},203351,1,"""North America""" +2023-07-01,60572,6903,"[\""Laptop\"", \""Monitor\""]",3187.89,"{\"": \""17%\""}",38687,1,"""Europe""" +2024-10-25,60573,7724,"[\""Wireless Mouse\""]",1409.72,"{\""loyalty\"": \""17%\""}",209727,1,"""Europe""" +2023-09-12,60574,2056,"[\""Headphones\""]",3819.31,"{\"": \""8%\""}",281754,1,"""Europe""" +2024-02-20,60575,4082,"[\""Laptop\"", \""Tablet\""]",2852.4,"{\""promo\"": \""7%\""}",210566,1,"""Africa""" +2024-06-06,60576,3938,"[\""Headphones\""]",3970.25,"{\""seasonal\"": \""6%\""}",103702,0,"""Asia""" +2024-08-19,60577,7459,"[\""Phone\""]",506.49,{},264287,1,"""South America""" +2024-07-24,60578,8783,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3710.49,{},15896,1,"""Europe""" +2023-07-11,60579,4514,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",326.44,"{\"": \""11%\""}",35589,0,"""Europe""" +2024-11-15,60580,5859,"[\""Phone\""]",1534.73,"{\""loyalty\"": \""19%\""}",152709,1,"""Europe""" +2023-09-13,60581,4916,"[\""Monitor\"", \""Headphones\""]",1912.25,"{\""loyalty\"": \""15%\""}",270748,1,"""Africa""" +2024-08-19,60582,5398,"[\""Headphones\"", \""Charger\""]",4691.85,"{\""seasonal\"": \""6%\""}",34551,0,"""South America""" +2023-05-04,60583,1213,"[\""Monitor\"", \""Laptop\""]",979.66,{},54314,0,"""Europe""" +2023-08-26,60584,9788,"[\""Headphones\""]",1027.66,{},286923,0,"""Asia""" +2023-05-10,60585,2327,"[\""Charger\""]",1429.69,{},31845,0,"""Europe""" +2024-07-27,60586,6862,"[\""Keyboard\""]",1045.08,"{\""promo\"": \""21%\""}",184927,1,"""Asia""" +2023-05-08,60587,7154,"[\""Laptop\"", \""Charger\""]",3221.78,{},73207,1,"""North America""" +2023-05-29,60588,6704,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4336.34,"{\"": \""9%\""}",261758,1,"""North America""" +2023-07-25,60589,428,"[\""Keyboard\"", \""Headphones\""]",2278.51,"{\"": \""11%\""}",272488,0,"""Africa""" +2024-04-07,60590,609,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1561.9,{},272436,0,"""Africa""" +2023-01-28,60591,6284,"[\""Monitor\"", \""Laptop\""]",1906.23,"{\""promo\"": \""14%\""}",253134,1,"""North America""" +2024-10-24,60592,4075,"[\""Headphones\"", \""Laptop\""]",4183.86,"{\""promo\"": \""16%\""}",209821,0,"""Asia""" +2024-02-09,60593,6007,"[\""Monitor\""]",3361.48,"{\""seasonal\"": \""25%\""}",49704,0,"""North America""" +2023-01-22,60594,5404,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2061.95,"{\"": \""7%\""}",100272,0,"""Africa""" +2024-07-13,60595,2789,"[\""Tablet\""]",4049.25,"{\"": \""18%\""}",38977,1,"""Asia""" +2023-06-13,60596,2119,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1971.01,{},35441,1,"""Asia""" +2024-12-21,60597,1504,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2284.04,"{\""promo\"": \""7%\""}",277373,0,"""Europe""" +2023-04-29,60598,7455,"[\""Headphones\"", \""Tablet\""]",3624.43,{},268826,0,"""Africa""" +2024-04-16,60599,3302,"[\""Laptop\"", \""Headphones\""]",2717.2,{},77016,1,"""North America""" +2024-11-13,60600,5571,"[\""Keyboard\""]",4639.95,{},145897,1,"""Asia""" +2024-12-25,60601,4720,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4361.58,"{\""seasonal\"": \""8%\""}",49998,0,"""Europe""" +2024-07-04,60602,3864,"[\""Keyboard\""]",1665.69,{},181771,0,"""Africa""" +2023-07-21,60603,7491,"[\""Headphones\"", \""Charger\""]",4446.74,"{\""seasonal\"": \""5%\""}",210665,1,"""Africa""" +2024-02-13,60604,5554,"[\""Wireless Mouse\""]",915.87,{},29705,0,"""Asia""" +2024-12-28,60605,8001,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2422.4,"{\""seasonal\"": \""20%\""}",9198,1,"""Asia""" +2024-03-30,60606,7329,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3178.74,"{\""loyalty\"": \""21%\""}",160403,0,"""Europe""" +2024-02-22,60607,9334,"[\""Charger\""]",460.42,"{\""loyalty\"": \""26%\""}",269004,0,"""North America""" +2023-03-30,60608,2080,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1496.3,{},25335,0,"""North America""" +2023-03-02,60609,9175,"[\""Tablet\"", \""Headphones\""]",2802.1,{},86366,1,"""Asia""" +2023-05-30,60610,3547,"[\""Laptop\""]",4471.45,{},210652,1,"""Europe""" +2023-07-08,60611,5286,"[\""Monitor\"", \""Wireless Mouse\""]",2940.32,"{\"": \""5%\""}",19826,0,"""Asia""" +2024-01-12,60612,8501,"[\""Phone\""]",621.8,{},288428,1,"""North America""" +2024-11-14,60613,8538,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2710.33,"{\""promo\"": \""19%\""}",13079,1,"""South America""" +2024-03-04,60614,2553,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",171.02,"{\""loyalty\"": \""23%\""}",109189,0,"""Africa""" +2024-03-14,60615,2750,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3674.5,"{\""promo\"": \""7%\""}",185572,0,"""Europe""" +2023-03-13,60616,204,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4971.67,"{\""seasonal\"": \""11%\""}",228529,1,"""Asia""" +2023-04-09,60617,5179,"[\""Laptop\""]",3514.63,{},210296,0,"""South America""" +2024-03-27,60618,7096,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4636.45,{},68837,1,"""Asia""" +2023-05-11,60619,9281,"[\""Wireless Mouse\"", \""Headphones\""]",2093.27,{},219114,1,"""Europe""" +2023-08-31,60620,2745,"[\""Phone\"", \""Keyboard\""]",4254.8,"{\""loyalty\"": \""17%\""}",273033,0,"""Africa""" +2024-08-13,60621,372,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1127.83,{},40546,1,"""Europe""" +2024-10-19,60622,811,"[\""Phone\"", \""Wireless Mouse\""]",4118.55,{},239606,1,"""Europe""" +2024-12-09,60623,3536,"[\""Charger\""]",2925.84,{},150621,0,"""North America""" +2023-01-26,60624,618,"[\""Keyboard\"", \""Wireless Mouse\""]",2321.13,"{\""loyalty\"": \""18%\""}",293235,0,"""Africa""" +2024-01-29,60625,2450,"[\""Laptop\""]",2197.42,"{\""promo\"": \""15%\""}",145686,1,"""Africa""" +2024-11-08,60626,278,"[\""Keyboard\""]",3740.11,{},169780,0,"""Europe""" +2023-04-08,60627,6385,"[\""Phone\"", \""Wireless Mouse\""]",2299.18,"{\"": \""19%\""}",128033,1,"""Asia""" +2024-01-28,60628,1776,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1363.52,"{\""loyalty\"": \""14%\""}",87045,1,"""Asia""" +2023-08-19,60629,1252,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2429.71,"{\""loyalty\"": \""10%\""}",12013,0,"""South America""" +2024-07-20,60630,7257,"[\""Charger\""]",1536.65,{},296611,0,"""Europe""" +2023-12-13,60631,1921,"[\""Charger\"", \""Laptop\""]",667.42,"{\"": \""21%\""}",299316,1,"""Africa""" +2023-07-28,60632,7359,"[\""Headphones\""]",4987.67,"{\""loyalty\"": \""11%\""}",184921,1,"""North America""" +2023-03-07,60633,3248,"[\""Keyboard\""]",4667.77,{},19917,1,"""Asia""" +2024-01-31,60634,4049,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2327.33,"{\""seasonal\"": \""28%\""}",4513,1,"""Europe""" +2024-02-07,60635,1137,"[\""Phone\""]",3724.37,"{\""promo\"": \""9%\""}",252575,0,"""Europe""" +2024-11-04,60636,2231,"[\""Tablet\""]",1918.88,"{\"": \""18%\""}",287699,0,"""Europe""" +2023-02-05,60637,9,"[\""Tablet\""]",3267.37,{},1384,0,"""South America""" +2023-12-05,60638,247,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",540.8,"{\""seasonal\"": \""26%\""}",234901,1,"""Asia""" +2023-10-11,60639,9505,"[\""Monitor\"", \""Charger\""]",1896.02,"{\""promo\"": \""10%\""}",118805,0,"""North America""" +2023-12-26,60640,3952,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",990.96,{},192367,1,"""Asia""" +2023-08-21,60641,7382,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1187.33,"{\"": \""24%\""}",12968,1,"""Africa""" +2024-09-02,60642,1696,"[\""Keyboard\"", \""Headphones\""]",3404.41,{},78213,0,"""North America""" +2024-10-04,60643,6653,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2164.93,"{\"": \""29%\""}",63269,0,"""Africa""" +2023-02-24,60644,5442,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",637.66,"{\""loyalty\"": \""18%\""}",158416,1,"""North America""" +2024-12-15,60645,9780,"[\""Phone\""]",2790.71,{},165500,1,"""Asia""" +2024-02-22,60646,1697,"[\""Headphones\""]",3837.59,"{\""loyalty\"": \""17%\""}",296139,1,"""Europe""" +2023-12-18,60647,8073,"[\""Wireless Mouse\"", \""Phone\""]",4816.99,{},292245,0,"""Asia""" +2023-08-20,60648,3884,"[\""Keyboard\""]",1934.09,{},287689,0,"""South America""" +2023-05-19,60649,566,"[\""Charger\""]",2293.89,"{\""seasonal\"": \""29%\""}",219722,0,"""North America""" +2023-12-01,60650,1631,"[\""Tablet\""]",3659.98,"{\""seasonal\"": \""13%\""}",189631,0,"""South America""" +2023-04-26,60651,2600,"[\""Tablet\"", \""Charger\""]",2377.25,"{\""loyalty\"": \""15%\""}",207557,0,"""Asia""" +2023-06-20,60652,3566,"[\""Tablet\""]",617.2,{},78171,1,"""North America""" +2023-11-21,60653,1114,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",481.25,{},213710,1,"""Europe""" +2024-04-29,60654,4670,"[\""Monitor\""]",1952.22,{},45973,0,"""South America""" +2024-07-10,60655,9749,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3767.61,"{\""seasonal\"": \""26%\""}",149402,0,"""Europe""" +2024-12-15,60656,592,"[\""Wireless Mouse\"", \""Laptop\""]",1335.11,"{\""seasonal\"": \""28%\""}",76756,1,"""Europe""" +2024-09-08,60657,8839,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",794.53,{},48786,0,"""Europe""" +2024-09-15,60658,7801,"[\""Keyboard\""]",1208.46,{},113162,0,"""Asia""" +2024-09-28,60659,2365,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3432.03,"{\""seasonal\"": \""12%\""}",271078,1,"""Africa""" +2024-12-15,60660,1294,"[\""Charger\"", \""Tablet\""]",4933.51,{},165680,0,"""Europe""" +2024-04-16,60661,9053,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3321.19,{},87430,0,"""Asia""" +2023-09-04,60662,3521,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3466.92,"{\""promo\"": \""16%\""}",161444,0,"""Africa""" +2023-01-02,60663,1481,"[\""Laptop\"", \""Monitor\""]",228.73,"{\""loyalty\"": \""19%\""}",281409,0,"""Africa""" +2024-03-11,60664,9841,"[\""Charger\""]",960.63,{},148672,0,"""Africa""" +2023-03-21,60665,6869,"[\""Wireless Mouse\"", \""Tablet\""]",1464.36,"{\""promo\"": \""29%\""}",209142,0,"""Europe""" +2024-12-20,60666,4477,"[\""Phone\""]",4116.18,{},104260,1,"""Europe""" +2024-01-13,60667,6035,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2672.39,"{\""promo\"": \""18%\""}",195510,1,"""South America""" +2024-02-12,60668,6098,"[\""Keyboard\"", \""Laptop\""]",4472.7,{},257939,0,"""South America""" +2024-10-10,60669,2316,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3441.02,{},82305,1,"""South America""" +2024-07-08,60670,7179,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1771.15,{},13719,0,"""Asia""" +2023-09-04,60671,4532,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3901.89,"{\"": \""28%\""}",100463,1,"""North America""" +2023-11-11,60672,3668,"[\""Charger\""]",592.2,"{\""seasonal\"": \""27%\""}",229857,0,"""Asia""" +2023-01-06,60673,4389,"[\""Monitor\"", \""Phone\""]",3324.52,"{\"": \""13%\""}",182056,0,"""Europe""" +2024-05-29,60674,5999,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3617.85,"{\""seasonal\"": \""22%\""}",174785,0,"""South America""" +2023-05-24,60675,7291,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",693.0,{},245105,0,"""Africa""" +2024-03-30,60676,4629,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2332.1,{},299218,0,"""Asia""" +2024-01-17,60677,9279,"[\""Headphones\""]",3169.7,{},284947,0,"""North America""" +2023-11-08,60678,7637,"[\""Keyboard\"", \""Monitor\""]",2759.89,"{\"": \""5%\""}",174470,0,"""North America""" +2023-02-02,60679,2817,"[\""Headphones\"", \""Tablet\""]",2197.19,{},160882,0,"""Europe""" +2023-01-30,60680,429,"[\""Keyboard\""]",2828.83,{},227688,1,"""Europe""" +2024-07-29,60681,2641,"[\""Phone\""]",2870.76,"{\"": \""6%\""}",222169,0,"""North America""" +2023-12-05,60682,8371,"[\""Phone\"", \""Monitor\""]",372.23,"{\""seasonal\"": \""22%\""}",217954,0,"""Africa""" +2024-03-01,60683,9984,"[\""Tablet\"", \""Wireless Mouse\""]",3140.48,"{\"": \""19%\""}",269244,1,"""Africa""" +2024-06-13,60684,4669,"[\""Headphones\""]",1088.78,"{\""promo\"": \""18%\""}",27410,1,"""Europe""" +2023-10-02,60685,1382,"[\""Laptop\"", \""Keyboard\""]",4908.66,"{\""seasonal\"": \""20%\""}",236567,1,"""Europe""" +2024-09-05,60686,8669,"[\""Headphones\""]",1382.25,{},253256,1,"""Europe""" +2023-02-18,60687,1352,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1188.24,"{\""loyalty\"": \""16%\""}",234675,1,"""North America""" +2023-07-04,60688,8512,"[\""Phone\"", \""Wireless Mouse\""]",4852.38,"{\"": \""20%\""}",27587,0,"""South America""" +2024-03-25,60689,4423,"[\""Keyboard\""]",1941.02,{},272819,1,"""Asia""" +2023-07-19,60690,4780,"[\""Charger\"", \""Tablet\""]",4518.28,{},172044,1,"""Africa""" +2023-04-26,60691,3681,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1296.8,{},140735,1,"""Europe""" +2023-01-22,60692,9010,"[\""Charger\""]",1272.21,"{\""loyalty\"": \""5%\""}",256662,0,"""Europe""" +2024-02-12,60693,5879,"[\""Tablet\""]",4565.11,{},17405,1,"""Europe""" +2023-05-19,60694,7802,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2369.4,{},136017,1,"""Africa""" +2023-06-02,60695,1181,"[\""Phone\"", \""Monitor\""]",3473.25,"{\""seasonal\"": \""9%\""}",154365,1,"""Europe""" +2023-03-13,60696,3330,"[\""Headphones\"", \""Phone\""]",3513.09,{},1349,0,"""North America""" +2023-06-07,60697,7133,"[\""Headphones\""]",4090.36,"{\"": \""10%\""}",295453,1,"""Europe""" +2024-07-29,60698,5502,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2635.34,"{\""seasonal\"": \""15%\""}",48642,0,"""Europe""" +2023-03-26,60699,2866,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2779.6,{},168640,1,"""Europe""" +2024-10-24,60700,1607,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2035.19,{},279430,0,"""North America""" +2024-02-15,60701,2763,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3099.33,"{\""promo\"": \""7%\""}",260990,1,"""Europe""" +2023-05-28,60702,7011,"[\""Laptop\"", \""Phone\""]",4089.2,{},83293,0,"""Africa""" +2023-01-08,60703,5990,"[\""Keyboard\""]",3495.1,{},230536,1,"""Europe""" +2024-07-09,60704,9055,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1355.91,"{\""seasonal\"": \""30%\""}",11600,0,"""North America""" +2023-01-20,60705,6228,"[\""Keyboard\"", \""Headphones\""]",1446.12,{},9886,1,"""South America""" +2024-05-18,60706,1367,"[\""Laptop\"", \""Monitor\""]",1069.75,"{\""loyalty\"": \""24%\""}",276833,1,"""North America""" +2024-06-06,60707,3355,"[\""Tablet\"", \""Wireless Mouse\""]",2882.48,{},163448,1,"""Asia""" +2023-06-28,60708,1498,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1175.26,{},281833,0,"""Africa""" +2023-11-09,60709,5231,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4996.03,{},193604,1,"""Europe""" +2024-01-27,60710,7357,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1359.62,"{\""loyalty\"": \""18%\""}",164737,0,"""North America""" +2024-12-17,60711,5530,"[\""Tablet\""]",4261.81,{},263139,0,"""Asia""" +2023-04-07,60712,7014,"[\""Monitor\"", \""Charger\""]",4669.15,{},265706,0,"""South America""" +2023-01-24,60713,8960,"[\""Tablet\""]",1673.17,"{\"": \""5%\""}",252436,0,"""Asia""" +2024-04-26,60714,4943,"[\""Laptop\""]",1890.51,{},64937,1,"""Asia""" +2024-09-28,60715,101,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4782.54,"{\"": \""8%\""}",289832,1,"""Asia""" +2023-05-05,60716,7364,"[\""Headphones\"", \""Keyboard\""]",3542.01,{},65975,1,"""Africa""" +2023-05-22,60717,9096,"[\""Headphones\""]",627.71,{},161267,0,"""Asia""" +2023-05-09,60718,8585,"[\""Laptop\""]",3429.54,{},132113,0,"""Africa""" +2024-12-06,60719,4737,"[\""Laptop\"", \""Headphones\""]",986.42,{},205230,1,"""Asia""" +2023-03-31,60720,7832,"[\""Wireless Mouse\""]",102.36,{},96175,1,"""North America""" +2023-09-11,60721,4028,"[\""Phone\"", \""Headphones\""]",787.75,"{\""promo\"": \""28%\""}",204485,1,"""Europe""" +2024-03-05,60722,1856,"[\""Wireless Mouse\""]",3921.45,"{\""seasonal\"": \""30%\""}",154561,1,"""Africa""" +2023-03-26,60723,8629,"[\""Wireless Mouse\"", \""Keyboard\""]",4478.72,"{\"": \""17%\""}",191136,1,"""Africa""" +2024-02-21,60724,7302,"[\""Tablet\""]",4719.2,"{\""promo\"": \""14%\""}",268610,0,"""Africa""" +2023-10-19,60725,2856,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1247.33,{},74215,1,"""Africa""" +2024-01-15,60726,8597,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3396.64,{},285336,1,"""North America""" +2024-11-21,60727,7020,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1429.65,{},61971,1,"""North America""" +2024-04-04,60728,5002,"[\""Headphones\""]",2408.48,"{\""seasonal\"": \""13%\""}",80525,1,"""North America""" +2023-06-01,60729,7205,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",975.37,{},192082,0,"""Europe""" +2023-06-05,60730,2370,"[\""Wireless Mouse\""]",2639.67,"{\""loyalty\"": \""8%\""}",57811,0,"""Europe""" +2023-01-30,60731,822,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4092.47,{},243867,0,"""Africa""" +2024-10-02,60732,6479,"[\""Laptop\""]",2762.66,{},297873,1,"""Asia""" +2023-07-04,60733,132,"[\""Keyboard\"", \""Laptop\""]",4364.12,{},96369,1,"""North America""" +2024-07-28,60734,2085,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",521.45,{},177188,0,"""Africa""" +2024-07-21,60735,924,"[\""Monitor\""]",939.74,{},86781,0,"""Africa""" +2024-07-20,60736,8279,"[\""Monitor\""]",3122.54,{},153340,1,"""Europe""" +2023-12-25,60737,7945,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",473.81,{},189959,0,"""Asia""" +2023-04-19,60738,4456,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2963.21,{},64660,1,"""South America""" +2023-11-30,60739,458,"[\""Charger\"", \""Wireless Mouse\""]",3175.5,"{\""promo\"": \""10%\""}",29547,1,"""Asia""" +2023-03-27,60740,1415,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4383.93,"{\""loyalty\"": \""25%\""}",79211,0,"""North America""" +2024-04-08,60741,7435,"[\""Tablet\"", \""Headphones\""]",1002.84,{},26068,1,"""North America""" +2024-07-19,60742,5348,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4870.56,{},211658,1,"""South America""" +2023-04-23,60743,5756,"[\""Wireless Mouse\""]",2728.64,{},171098,0,"""North America""" +2024-03-19,60744,7364,"[\""Wireless Mouse\""]",3214.39,{},196685,1,"""South America""" +2024-11-20,60745,6830,"[\""Tablet\"", \""Keyboard\""]",4261.08,{},123141,1,"""South America""" +2023-09-25,60746,5435,"[\""Monitor\"", \""Charger\""]",3140.07,"{\""loyalty\"": \""15%\""}",234889,0,"""South America""" +2024-01-18,60747,4503,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4411.81,{},204863,0,"""Africa""" +2024-06-17,60748,1505,"[\""Phone\""]",4872.38,{},73704,1,"""Asia""" +2024-09-08,60749,3013,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",586.43,{},296683,1,"""Europe""" +2024-10-15,60750,4039,"[\""Phone\"", \""Keyboard\""]",1850.34,{},226933,1,"""Africa""" +2024-01-12,60751,1435,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2989.49,{},27724,0,"""Africa""" +2024-07-30,60752,98,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4771.05,{},285479,1,"""North America""" +2024-05-05,60753,8271,"[\""Headphones\"", \""Charger\""]",3877.44,"{\""promo\"": \""26%\""}",28522,0,"""Europe""" +2023-09-08,60754,5976,"[\""Keyboard\""]",557.5,{},238434,0,"""Asia""" +2023-02-06,60755,6562,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2205.23,"{\""loyalty\"": \""24%\""}",245283,1,"""South America""" +2024-10-20,60756,7917,"[\""Charger\""]",1934.01,{},292542,1,"""North America""" +2023-06-24,60757,4712,"[\""Monitor\"", \""Tablet\""]",3608.85,{},140199,1,"""Africa""" +2023-03-28,60758,1363,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",969.83,{},141602,1,"""South America""" +2023-07-30,60759,5550,"[\""Keyboard\"", \""Charger\""]",2849.93,{},288192,0,"""North America""" +2024-12-11,60760,9993,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2812.67,{},227646,0,"""South America""" +2023-07-05,60761,3563,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4374.93,{},90558,0,"""Africa""" +2023-02-14,60762,1389,"[\""Headphones\"", \""Tablet\""]",1639.61,{},175441,1,"""Europe""" +2024-02-15,60763,4932,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2884.6,{},108414,0,"""South America""" +2024-01-19,60764,4633,"[\""Keyboard\""]",4000.89,"{\""seasonal\"": \""8%\""}",189735,1,"""Africa""" +2024-04-13,60765,6218,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",766.79,"{\""seasonal\"": \""30%\""}",279987,1,"""Asia""" +2024-12-14,60766,1511,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2659.81,"{\""promo\"": \""21%\""}",100242,0,"""South America""" +2024-09-04,60767,6627,"[\""Tablet\""]",4188.91,"{\""loyalty\"": \""29%\""}",228439,1,"""Africa""" +2023-10-26,60768,4513,"[\""Wireless Mouse\""]",2988.22,{},9071,1,"""South America""" +2023-02-26,60769,6930,"[\""Charger\"", \""Tablet\""]",3623.55,{},111878,1,"""South America""" +2024-04-07,60770,2571,"[\""Laptop\""]",1641.08,"{\""loyalty\"": \""25%\""}",138421,0,"""North America""" +2024-11-24,60771,3686,"[\""Wireless Mouse\"", \""Phone\""]",2276.47,{},211972,1,"""South America""" +2024-03-07,60772,4128,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1672.51,{},217392,1,"""Europe""" +2023-01-01,60773,9958,"[\""Charger\""]",1699.14,{},22804,0,"""North America""" +2024-10-15,60774,2102,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1479.58,"{\""loyalty\"": \""28%\""}",48334,1,"""South America""" +2023-03-15,60775,6335,"[\""Headphones\""]",2973.21,{},10298,1,"""Asia""" +2023-08-23,60776,2138,"[\""Tablet\""]",2235.98,{},253285,1,"""North America""" +2024-01-25,60777,8939,"[\""Keyboard\"", \""Wireless Mouse\""]",1325.91,"{\""seasonal\"": \""13%\""}",264112,0,"""South America""" +2024-03-18,60778,8804,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",321.57,{},223304,0,"""South America""" +2024-04-17,60779,5339,"[\""Monitor\"", \""Tablet\""]",1239.25,"{\""loyalty\"": \""11%\""}",158027,0,"""South America""" +2024-10-13,60780,4804,"[\""Keyboard\"", \""Charger\""]",480.68,"{\""promo\"": \""7%\""}",178796,1,"""Europe""" +2023-08-02,60781,3918,"[\""Headphones\""]",3959.99,{},164783,0,"""North America""" +2023-05-08,60782,798,"[\""Phone\"", \""Headphones\""]",2713.59,"{\""seasonal\"": \""8%\""}",103439,0,"""South America""" +2023-09-19,60783,332,"[\""Charger\"", \""Headphones\""]",4505.42,"{\""loyalty\"": \""11%\""}",202442,0,"""South America""" +2024-12-04,60784,5181,"[\""Charger\"", \""Monitor\""]",4543.89,{},45949,1,"""Africa""" +2023-11-05,60785,6798,"[\""Keyboard\"", \""Monitor\""]",990.55,"{\""seasonal\"": \""17%\""}",118258,1,"""South America""" +2024-10-19,60786,8474,"[\""Keyboard\"", \""Laptop\""]",3913.79,{},240380,1,"""Asia""" +2024-03-27,60787,773,"[\""Monitor\""]",1586.85,"{\""promo\"": \""10%\""}",135198,0,"""Europe""" +2023-06-09,60788,7642,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3988.84,{},37839,1,"""Europe""" +2023-04-04,60789,7886,"[\""Phone\""]",2072.53,"{\""promo\"": \""5%\""}",10323,1,"""North America""" +2023-03-20,60790,9083,"[\""Wireless Mouse\""]",239.71,{},142588,0,"""Africa""" +2023-09-04,60791,2357,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4161.32,"{\""promo\"": \""22%\""}",155666,1,"""Asia""" +2023-05-16,60792,3439,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",908.36,"{\""promo\"": \""26%\""}",244448,1,"""North America""" +2024-10-18,60793,1565,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3696.24,{},154982,0,"""Africa""" +2024-02-29,60794,7303,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4850.2,"{\"": \""12%\""}",249043,1,"""Africa""" +2024-06-12,60795,8080,"[\""Tablet\"", \""Headphones\""]",131.54,{},37826,1,"""North America""" +2024-07-21,60796,9136,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",741.19,"{\"": \""7%\""}",22285,0,"""South America""" +2023-03-04,60797,324,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3738.51,{},108987,1,"""South America""" +2023-04-19,60798,8939,"[\""Headphones\""]",2984.28,"{\""loyalty\"": \""22%\""}",10664,0,"""North America""" +2023-04-27,60799,6767,"[\""Monitor\"", \""Tablet\""]",1861.0,{},17862,0,"""Europe""" +2023-11-27,60800,9055,"[\""Tablet\"", \""Wireless Mouse\""]",3835.73,{},94019,0,"""Africa""" +2023-02-24,60801,9654,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2647.35,"{\""seasonal\"": \""29%\""}",163721,1,"""Europe""" +2024-03-23,60802,3495,"[\""Headphones\""]",2662.02,"{\""loyalty\"": \""5%\""}",238783,0,"""Africa""" +2023-12-31,60803,5787,"[\""Laptop\"", \""Headphones\""]",434.59,{},126758,1,"""Asia""" +2024-02-02,60804,506,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3331.19,"{\""loyalty\"": \""25%\""}",105811,1,"""Europe""" +2024-04-15,60805,857,"[\""Phone\"", \""Laptop\""]",4354.37,"{\"": \""6%\""}",27812,1,"""North America""" +2023-03-19,60806,5596,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2491.74,"{\""loyalty\"": \""5%\""}",284053,0,"""South America""" +2023-03-11,60807,7485,"[\""Phone\""]",3785.3,"{\""loyalty\"": \""13%\""}",45609,0,"""Asia""" +2024-01-13,60808,5656,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1925.96,"{\""seasonal\"": \""24%\""}",12713,1,"""Europe""" +2023-05-14,60809,2039,"[\""Phone\""]",2355.08,"{\""seasonal\"": \""27%\""}",204379,0,"""Europe""" +2024-05-30,60810,4274,"[\""Headphones\"", \""Tablet\""]",3381.96,"{\""loyalty\"": \""11%\""}",107048,0,"""North America""" +2024-01-26,60811,954,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1387.62,{},208157,1,"""North America""" +2023-02-02,60812,9092,"[\""Wireless Mouse\""]",1190.21,{},72157,1,"""South America""" +2023-12-28,60813,5319,"[\""Headphones\""]",1525.55,{},267084,1,"""Europe""" +2024-08-08,60814,9603,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4410.92,"{\""promo\"": \""11%\""}",136436,0,"""Africa""" +2024-07-10,60815,5687,"[\""Headphones\"", \""Keyboard\""]",3453.27,"{\""loyalty\"": \""26%\""}",278003,0,"""North America""" +2024-03-12,60816,2818,"[\""Headphones\""]",4658.93,"{\""promo\"": \""22%\""}",221352,1,"""South America""" +2024-05-19,60817,3250,"[\""Monitor\"", \""Charger\""]",570.56,"{\""loyalty\"": \""23%\""}",107246,1,"""Asia""" +2024-11-27,60818,7307,"[\""Charger\""]",3856.31,"{\""loyalty\"": \""28%\""}",79244,0,"""South America""" +2024-04-19,60819,7085,"[\""Charger\"", \""Phone\""]",2256.49,{},6998,1,"""Europe""" +2023-12-22,60820,3708,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",329.51,{},290081,0,"""Europe""" +2024-04-22,60821,8422,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2628.97,{},144482,0,"""Europe""" +2023-09-06,60822,7997,"[\""Headphones\"", \""Laptop\""]",2092.34,{},9121,1,"""North America""" +2023-06-06,60823,3060,"[\""Charger\""]",1759.96,"{\"": \""10%\""}",148788,1,"""North America""" +2023-02-16,60824,6361,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3521.89,{},174605,0,"""Africa""" +2023-01-30,60825,2351,"[\""Monitor\""]",4038.71,"{\""seasonal\"": \""17%\""}",224073,0,"""Africa""" +2023-10-16,60826,7988,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",631.5,"{\"": \""15%\""}",237169,0,"""Africa""" +2023-09-22,60827,6767,"[\""Keyboard\"", \""Phone\""]",4262.15,"{\""loyalty\"": \""20%\""}",148119,0,"""Europe""" +2023-02-10,60828,9259,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",340.8,"{\"": \""19%\""}",288819,1,"""South America""" +2023-09-15,60829,4224,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2432.12,"{\"": \""6%\""}",114373,1,"""South America""" +2024-03-03,60830,2542,"[\""Headphones\"", \""Laptop\""]",2300.63,"{\""promo\"": \""8%\""}",93283,0,"""North America""" +2023-09-11,60831,4879,"[\""Charger\"", \""Keyboard\""]",3567.5,{},29058,1,"""Europe""" +2024-11-24,60832,2755,"[\""Headphones\""]",4396.12,"{\""loyalty\"": \""7%\""}",156668,0,"""Asia""" +2023-01-02,60833,2513,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4785.69,"{\""promo\"": \""22%\""}",208773,1,"""South America""" +2023-04-08,60834,3210,"[\""Charger\"", \""Wireless Mouse\""]",2768.63,"{\""seasonal\"": \""20%\""}",204131,0,"""Africa""" +2024-10-10,60835,6297,"[\""Monitor\"", \""Wireless Mouse\""]",3127.58,{},292803,1,"""North America""" +2023-04-10,60836,4482,"[\""Tablet\""]",3233.52,{},289585,1,"""Asia""" +2024-07-30,60837,7583,"[\""Headphones\"", \""Phone\""]",2510.18,{},194052,0,"""Africa""" +2023-06-24,60838,427,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1491.05,"{\""promo\"": \""26%\""}",153822,1,"""Africa""" +2023-06-03,60839,6348,"[\""Charger\""]",2399.92,"{\"": \""27%\""}",182217,0,"""Europe""" +2023-09-25,60840,5537,"[\""Tablet\"", \""Charger\""]",867.13,{},89705,1,"""Asia""" +2023-09-14,60841,8827,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2538.3,"{\"": \""6%\""}",257346,1,"""Africa""" +2024-06-06,60842,6985,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2289.53,"{\""loyalty\"": \""10%\""}",257932,1,"""Europe""" +2024-12-09,60843,5494,"[\""Tablet\"", \""Charger\""]",4341.47,"{\""promo\"": \""8%\""}",279158,1,"""Asia""" +2023-01-18,60844,404,"[\""Keyboard\""]",4418.1,{},201961,0,"""Asia""" +2024-11-26,60845,5472,"[\""Charger\""]",4764.98,"{\""promo\"": \""16%\""}",36892,1,"""Europe""" +2023-12-27,60846,4881,"[\""Headphones\""]",2293.85,{},199818,1,"""Africa""" +2024-11-16,60847,3793,"[\""Keyboard\""]",2053.88,{},124688,1,"""Africa""" +2023-09-24,60848,4924,"[\""Phone\""]",3499.74,{},259125,0,"""Europe""" +2023-02-14,60849,7393,"[\""Tablet\"", \""Keyboard\""]",3558.9,"{\""promo\"": \""30%\""}",76707,0,"""Asia""" +2023-11-15,60850,4736,"[\""Laptop\""]",275.5,"{\"": \""14%\""}",147948,1,"""South America""" +2024-01-04,60851,224,"[\""Charger\"", \""Phone\""]",2001.39,{},256007,1,"""Africa""" +2023-02-10,60852,1061,"[\""Headphones\"", \""Phone\""]",3863.24,"{\""loyalty\"": \""28%\""}",147730,0,"""South America""" +2024-01-20,60853,2353,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",270.86,{},105314,1,"""Asia""" +2023-03-14,60854,4912,"[\""Laptop\""]",3780.55,"{\""promo\"": \""5%\""}",148009,1,"""Africa""" +2024-08-18,60855,9991,"[\""Tablet\"", \""Monitor\""]",1269.99,{},75290,1,"""South America""" +2024-02-29,60856,6831,"[\""Monitor\""]",1352.76,{},220175,1,"""North America""" +2024-02-28,60857,5590,"[\""Phone\"", \""Wireless Mouse\""]",515.59,{},180944,0,"""North America""" +2023-04-07,60858,4107,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2681.4,"{\"": \""30%\""}",5566,0,"""Africa""" +2023-11-24,60859,1854,"[\""Headphones\"", \""Laptop\""]",1487.82,"{\""loyalty\"": \""25%\""}",140798,1,"""South America""" +2024-10-09,60860,4040,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3307.52,"{\"": \""16%\""}",1316,1,"""Africa""" +2023-10-23,60861,1327,"[\""Keyboard\""]",843.41,{},12452,1,"""Asia""" +2023-08-14,60862,5075,"[\""Laptop\""]",4421.49,{},257055,1,"""North America""" +2024-08-06,60863,8269,"[\""Wireless Mouse\""]",2865.39,"{\""promo\"": \""16%\""}",272799,0,"""Africa""" +2023-07-13,60864,167,"[\""Charger\""]",4042.38,{},181152,1,"""Europe""" +2023-05-15,60865,9476,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4788.98,"{\""loyalty\"": \""30%\""}",138013,1,"""South America""" +2024-04-10,60866,3517,"[\""Phone\"", \""Headphones\""]",1539.72,{},53162,1,"""Africa""" +2024-03-18,60867,7953,"[\""Headphones\"", \""Monitor\""]",2917.33,{},161616,0,"""Africa""" +2024-01-21,60868,7097,"[\""Charger\"", \""Tablet\""]",3064.4,"{\""seasonal\"": \""23%\""}",43312,0,"""North America""" +2024-05-20,60869,2968,"[\""Wireless Mouse\"", \""Tablet\""]",3994.33,"{\""loyalty\"": \""17%\""}",33617,1,"""Europe""" +2024-10-12,60870,1079,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4565.0,{},150489,0,"""Asia""" +2023-11-22,60871,9492,"[\""Monitor\""]",481.18,{},187540,1,"""North America""" +2024-07-31,60872,6652,"[\""Phone\"", \""Tablet\""]",4908.25,{},247138,1,"""Europe""" +2023-05-21,60873,5425,"[\""Wireless Mouse\"", \""Keyboard\""]",2403.28,{},98014,1,"""Europe""" +2024-12-01,60874,8898,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3401.37,"{\""seasonal\"": \""23%\""}",280292,0,"""Europe""" +2023-11-01,60875,4618,"[\""Tablet\"", \""Keyboard\""]",69.28,"{\"": \""20%\""}",27249,1,"""South America""" +2023-04-23,60876,8476,"[\""Monitor\"", \""Keyboard\""]",365.6,"{\""loyalty\"": \""7%\""}",234312,0,"""Europe""" +2023-04-25,60877,4849,"[\""Laptop\"", \""Tablet\""]",3440.75,"{\""promo\"": \""27%\""}",87882,0,"""Europe""" +2023-10-08,60878,878,"[\""Laptop\""]",1982.39,"{\"": \""26%\""}",166933,1,"""South America""" +2024-06-20,60879,8150,"[\""Keyboard\"", \""Headphones\""]",1677.52,{},265612,0,"""Asia""" +2024-07-11,60880,8624,"[\""Wireless Mouse\""]",4815.57,"{\"": \""15%\""}",207808,0,"""Africa""" +2023-11-25,60881,3343,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4641.4,"{\"": \""29%\""}",210088,1,"""Asia""" +2024-05-29,60882,6041,"[\""Wireless Mouse\""]",2255.25,{},75971,1,"""North America""" +2023-12-23,60883,6146,"[\""Wireless Mouse\"", \""Phone\""]",1632.87,"{\"": \""28%\""}",127631,1,"""Asia""" +2023-09-04,60884,1952,"[\""Charger\"", \""Monitor\""]",2257.38,{},248273,0,"""North America""" +2023-07-15,60885,41,"[\""Headphones\"", \""Charger\""]",415.09,{},216746,1,"""South America""" +2023-10-18,60886,467,"[\""Tablet\"", \""Charger\""]",1271.02,"{\""loyalty\"": \""26%\""}",108631,0,"""South America""" +2024-08-27,60887,5240,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2920.44,"{\""loyalty\"": \""7%\""}",217046,0,"""North America""" +2024-07-17,60888,5982,"[\""Phone\""]",220.16,{},105752,1,"""Africa""" +2023-05-21,60889,3190,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3266.41,"{\""loyalty\"": \""26%\""}",103085,1,"""Africa""" +2023-09-28,60890,8962,"[\""Headphones\"", \""Phone\""]",4409.22,"{\""promo\"": \""11%\""}",7571,0,"""South America""" +2024-02-28,60891,5084,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1361.82,"{\"": \""22%\""}",165603,1,"""North America""" +2024-03-09,60892,8274,"[\""Monitor\"", \""Charger\""]",3569.66,"{\""seasonal\"": \""25%\""}",296683,1,"""Europe""" +2023-09-05,60893,2078,"[\""Headphones\""]",534.75,{},186951,0,"""Europe""" +2024-04-10,60894,9251,"[\""Laptop\"", \""Tablet\""]",4261.43,"{\""loyalty\"": \""9%\""}",43800,1,"""North America""" +2024-07-30,60895,4627,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",87.67,{},60383,1,"""Africa""" +2024-06-08,60896,7326,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4942.52,"{\"": \""6%\""}",181133,0,"""Asia""" +2024-06-11,60897,3084,"[\""Tablet\""]",3070.42,{},222748,1,"""Asia""" +2024-09-28,60898,442,"[\""Monitor\"", \""Laptop\""]",3510.44,{},37096,1,"""South America""" +2024-08-26,60899,8693,"[\""Monitor\"", \""Charger\""]",3914.7,{},279076,0,"""South America""" +2023-09-28,60900,3716,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2212.59,{},94119,1,"""South America""" +2024-10-04,60901,464,"[\""Monitor\"", \""Keyboard\""]",2630.47,{},182851,0,"""Africa""" +2024-09-29,60902,7149,"[\""Wireless Mouse\""]",3064.21,"{\""promo\"": \""15%\""}",229314,0,"""North America""" +2024-08-21,60903,691,"[\""Tablet\""]",3345.62,{},79197,1,"""North America""" +2023-10-23,60904,2732,"[\""Charger\""]",4560.06,{},149004,0,"""South America""" +2024-11-16,60905,6382,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4670.13,{},231674,0,"""Africa""" +2023-12-14,60906,8801,"[\""Wireless Mouse\""]",1358.11,"{\""loyalty\"": \""15%\""}",279325,1,"""Europe""" +2023-07-06,60907,2385,"[\""Keyboard\"", \""Headphones\""]",801.05,"{\"": \""9%\""}",93809,1,"""Asia""" +2024-03-15,60908,4569,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2351.2,{},188389,0,"""North America""" +2023-10-21,60909,5748,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2451.0,{},107184,0,"""South America""" +2024-11-19,60910,8082,"[\""Keyboard\"", \""Charger\""]",765.59,"{\""loyalty\"": \""14%\""}",262917,1,"""North America""" +2024-11-18,60911,8168,"[\""Monitor\"", \""Wireless Mouse\""]",2071.96,"{\""promo\"": \""14%\""}",148539,0,"""Africa""" +2024-11-20,60912,6915,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4481.83,"{\""promo\"": \""26%\""}",262595,0,"""South America""" +2023-10-29,60913,9052,"[\""Monitor\"", \""Headphones\""]",1421.8,{},270557,1,"""Europe""" +2023-12-29,60914,8980,"[\""Keyboard\"", \""Wireless Mouse\""]",4684.9,{},50292,1,"""Africa""" +2023-07-14,60915,2634,"[\""Headphones\""]",1547.77,{},298400,1,"""Africa""" +2023-01-09,60916,4757,"[\""Tablet\""]",4075.18,"{\"": \""23%\""}",269095,0,"""Europe""" +2023-09-28,60917,4216,"[\""Laptop\""]",2978.39,"{\"": \""20%\""}",123357,0,"""South America""" +2024-01-01,60918,8241,"[\""Headphones\"", \""Phone\""]",1771.26,{},107570,0,"""Europe""" +2023-02-09,60919,4803,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1633.95,{},68618,1,"""North America""" +2024-11-19,60920,53,"[\""Laptop\"", \""Charger\""]",544.49,"{\""loyalty\"": \""28%\""}",65953,0,"""Asia""" +2024-08-06,60921,2456,"[\""Laptop\""]",4425.48,"{\"": \""9%\""}",100658,0,"""North America""" +2023-04-07,60922,2247,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2851.48,"{\""seasonal\"": \""16%\""}",66388,0,"""South America""" +2023-07-24,60923,6017,"[\""Keyboard\""]",3945.46,{},49799,1,"""South America""" +2024-04-20,60924,7232,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2103.88,{},196456,1,"""Asia""" +2023-12-09,60925,7614,"[\""Monitor\""]",3122.4,{},26131,0,"""North America""" +2024-08-29,60926,734,"[\""Keyboard\"", \""Phone\""]",4761.31,"{\""loyalty\"": \""19%\""}",222775,0,"""Africa""" +2023-06-04,60927,3181,"[\""Charger\"", \""Monitor\""]",4328.15,"{\""seasonal\"": \""24%\""}",291385,1,"""Africa""" +2024-06-16,60928,4526,"[\""Headphones\""]",3205.64,{},231140,1,"""Asia""" +2024-09-30,60929,4377,"[\""Laptop\"", \""Tablet\""]",1613.36,"{\""seasonal\"": \""28%\""}",237666,1,"""Asia""" +2023-07-15,60930,8168,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1465.87,{},70206,1,"""Asia""" +2024-03-19,60931,7969,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2255.96,{},39187,0,"""Africa""" +2023-05-01,60932,9676,"[\""Phone\"", \""Wireless Mouse\""]",4173.29,{},263413,1,"""Asia""" +2024-08-04,60933,6035,"[\""Wireless Mouse\""]",4147.04,"{\"": \""18%\""}",259658,1,"""Africa""" +2023-01-14,60934,6935,"[\""Wireless Mouse\"", \""Charger\""]",4356.65,"{\""seasonal\"": \""19%\""}",109206,1,"""Africa""" +2023-12-31,60935,8044,"[\""Charger\""]",4531.31,"{\""loyalty\"": \""17%\""}",88111,0,"""North America""" +2023-06-28,60936,7081,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2520.52,"{\""loyalty\"": \""30%\""}",144681,0,"""North America""" +2024-12-06,60937,7929,"[\""Laptop\""]",3956.56,"{\""seasonal\"": \""8%\""}",161548,0,"""South America""" +2024-09-07,60938,1758,"[\""Headphones\"", \""Phone\""]",1943.01,{},297392,1,"""Asia""" +2024-02-26,60939,1109,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4888.5,"{\""seasonal\"": \""24%\""}",24364,1,"""Asia""" +2023-11-17,60940,3881,"[\""Tablet\""]",2859.27,"{\""promo\"": \""29%\""}",21421,1,"""Europe""" +2024-11-05,60941,9748,"[\""Headphones\"", \""Laptop\""]",536.13,{},22723,0,"""South America""" +2023-05-23,60942,8012,"[\""Phone\"", \""Laptop\""]",2995.62,{},29241,0,"""Europe""" +2023-02-10,60943,5243,"[\""Phone\""]",231.47,"{\""loyalty\"": \""10%\""}",197048,1,"""South America""" +2024-10-15,60944,4439,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4561.67,"{\""loyalty\"": \""15%\""}",75856,0,"""North America""" +2024-03-27,60945,2924,"[\""Phone\""]",2843.16,"{\"": \""9%\""}",47652,0,"""Africa""" +2024-04-27,60946,3277,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4008.28,{},151253,1,"""South America""" +2023-12-08,60947,6196,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2610.64,{},94839,0,"""North America""" +2023-12-19,60948,9737,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3328.18,"{\"": \""29%\""}",21166,0,"""South America""" +2024-08-09,60949,4815,"[\""Laptop\""]",1492.67,{},133067,0,"""North America""" +2023-04-07,60950,226,"[\""Tablet\""]",4088.4,{},211800,0,"""Europe""" +2024-06-13,60951,847,"[\""Keyboard\"", \""Tablet\""]",1323.93,"{\"": \""17%\""}",58407,1,"""South America""" +2023-08-25,60952,2919,"[\""Keyboard\""]",1804.0,"{\"": \""21%\""}",239374,1,"""North America""" +2023-01-20,60953,1744,"[\""Monitor\"", \""Laptop\""]",3755.04,{},221404,1,"""Europe""" +2024-07-28,60954,1535,"[\""Tablet\""]",2186.66,{},146987,1,"""Africa""" +2024-05-11,60955,3125,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4320.62,"{\""loyalty\"": \""20%\""}",180843,0,"""Asia""" +2023-04-05,60956,5467,"[\""Charger\"", \""Monitor\""]",1022.04,"{\""loyalty\"": \""24%\""}",50457,0,"""Europe""" +2024-06-03,60957,3045,"[\""Monitor\"", \""Headphones\""]",1256.41,"{\"": \""16%\""}",163106,0,"""South America""" +2023-02-24,60958,4750,"[\""Monitor\"", \""Charger\""]",846.25,{},271588,0,"""Asia""" +2024-11-28,60959,853,"[\""Charger\"", \""Tablet\""]",2177.35,{},188168,0,"""Europe""" +2023-07-05,60960,765,"[\""Laptop\""]",2461.77,"{\"": \""13%\""}",43708,1,"""South America""" +2023-01-11,60961,6584,"[\""Phone\""]",120.93,"{\""promo\"": \""6%\""}",19901,1,"""Africa""" +2024-12-24,60962,7868,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3607.79,{},118806,0,"""Europe""" +2024-03-05,60963,7560,"[\""Laptop\"", \""Headphones\""]",2378.49,{},290464,0,"""South America""" +2024-11-24,60964,1100,"[\""Charger\""]",4630.18,{},92604,0,"""South America""" +2023-07-04,60965,1023,"[\""Charger\"", \""Phone\"", \""Laptop\""]",388.41,{},98785,0,"""Africa""" +2024-02-07,60966,8439,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1642.52,{},171193,0,"""South America""" +2024-01-26,60967,9503,"[\""Phone\""]",2657.48,"{\""seasonal\"": \""17%\""}",41595,1,"""North America""" +2024-01-29,60968,74,"[\""Phone\""]",4406.38,{},56298,0,"""North America""" +2024-05-03,60969,287,"[\""Headphones\""]",4641.7,{},27298,1,"""Africa""" +2024-11-16,60970,5541,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3251.02,{},53425,0,"""North America""" +2024-01-15,60971,5986,"[\""Phone\""]",3537.01,"{\""loyalty\"": \""7%\""}",45539,1,"""Europe""" +2023-08-11,60972,9116,"[\""Wireless Mouse\""]",4427.95,"{\""loyalty\"": \""5%\""}",50113,0,"""Asia""" +2024-09-30,60973,4209,"[\""Keyboard\""]",3632.56,{},167998,1,"""North America""" +2024-04-10,60974,917,"[\""Wireless Mouse\""]",3710.94,{},252878,1,"""Asia""" +2023-08-02,60975,3436,"[\""Phone\""]",2057.02,{},5760,0,"""Europe""" +2024-11-18,60976,782,"[\""Laptop\"", \""Monitor\""]",2295.42,"{\""promo\"": \""29%\""}",80516,0,"""South America""" +2024-10-25,60977,7567,"[\""Charger\"", \""Headphones\""]",1254.47,"{\""seasonal\"": \""11%\""}",26913,1,"""North America""" +2024-11-02,60978,4126,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3257.31,{},52693,1,"""Africa""" +2024-12-10,60979,5054,"[\""Wireless Mouse\"", \""Charger\""]",4685.88,{},249229,0,"""Africa""" +2023-08-23,60980,6010,"[\""Headphones\"", \""Tablet\""]",4018.13,{},102950,0,"""Africa""" +2023-02-20,60981,1886,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4844.35,{},200409,1,"""North America""" +2023-11-11,60982,1859,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",480.91,"{\""seasonal\"": \""7%\""}",109015,0,"""Africa""" +2023-07-27,60983,4878,"[\""Phone\""]",1442.21,{},120926,0,"""Africa""" +2024-12-24,60984,3118,"[\""Headphones\"", \""Charger\""]",1263.96,"{\""loyalty\"": \""5%\""}",8600,1,"""Asia""" +2023-01-22,60985,3583,"[\""Phone\""]",3973.93,{},24637,0,"""South America""" +2023-11-19,60986,3128,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2331.99,"{\""loyalty\"": \""16%\""}",169205,0,"""Europe""" +2024-04-07,60987,3953,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1396.91,"{\"": \""17%\""}",14092,0,"""Africa""" +2024-09-26,60988,5175,"[\""Laptop\"", \""Wireless Mouse\""]",4487.22,"{\"": \""22%\""}",120720,0,"""Europe""" +2024-07-13,60989,8910,"[\""Monitor\"", \""Keyboard\""]",2164.48,"{\""loyalty\"": \""5%\""}",63926,0,"""Europe""" +2024-01-27,60990,8681,"[\""Laptop\"", \""Charger\""]",2064.33,{},171766,0,"""Europe""" +2024-09-27,60991,8355,"[\""Phone\""]",4621.84,"{\"": \""25%\""}",212226,1,"""South America""" +2023-11-25,60992,5982,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3247.41,"{\""seasonal\"": \""22%\""}",44623,0,"""North America""" +2023-07-28,60993,6724,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1718.7,{},294239,1,"""Europe""" +2024-12-24,60994,847,"[\""Keyboard\"", \""Wireless Mouse\""]",1656.04,"{\""seasonal\"": \""11%\""}",234167,0,"""Europe""" +2024-03-08,60995,5991,"[\""Charger\""]",1412.06,"{\"": \""26%\""}",115737,1,"""Europe""" +2023-07-24,60996,4212,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1459.09,{},110023,0,"""Asia""" +2023-08-13,60997,2818,"[\""Monitor\""]",2369.44,"{\""seasonal\"": \""17%\""}",274379,0,"""Europe""" +2024-02-01,60998,3396,"[\""Laptop\""]",3506.32,"{\""promo\"": \""24%\""}",161315,1,"""South America""" +2024-06-04,60999,4690,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",143.68,{},259489,0,"""Asia""" +2024-07-26,61000,7242,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2135.76,"{\""promo\"": \""10%\""}",146117,1,"""Africa""" +2023-09-15,61001,5865,"[\""Laptop\""]",3187.2,"{\"": \""21%\""}",65304,0,"""Asia""" +2024-05-28,61002,2557,"[\""Tablet\""]",1321.23,"{\""loyalty\"": \""9%\""}",157797,1,"""North America""" +2024-01-31,61003,1822,"[\""Charger\""]",4720.95,"{\""seasonal\"": \""19%\""}",60975,1,"""Europe""" +2024-05-03,61004,8455,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",945.93,{},265504,0,"""Asia""" +2023-04-03,61005,8673,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",307.72,{},120756,0,"""South America""" +2023-08-18,61006,4158,"[\""Monitor\""]",1269.4,{},238307,1,"""South America""" +2023-02-15,61007,7686,"[\""Keyboard\"", \""Phone\""]",273.27,"{\""loyalty\"": \""30%\""}",221083,1,"""Europe""" +2024-06-20,61008,5495,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3433.33,"{\""promo\"": \""27%\""}",154789,1,"""Europe""" +2024-12-21,61009,9251,"[\""Phone\"", \""Laptop\""]",1224.08,"{\""loyalty\"": \""25%\""}",233788,0,"""North America""" +2024-11-04,61010,8388,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4614.13,"{\""promo\"": \""20%\""}",265401,1,"""South America""" +2024-06-19,61011,5147,"[\""Monitor\""]",3168.55,"{\""loyalty\"": \""5%\""}",275367,0,"""Europe""" +2024-02-18,61012,3136,"[\""Wireless Mouse\""]",1506.21,"{\""seasonal\"": \""8%\""}",192777,1,"""Asia""" +2024-09-28,61013,2839,"[\""Phone\"", \""Charger\""]",3798.08,{},4226,0,"""North America""" +2024-01-17,61014,1609,"[\""Monitor\""]",4637.06,{},159141,0,"""North America""" +2024-01-02,61015,3952,"[\""Phone\"", \""Charger\""]",1396.05,{},283672,1,"""Europe""" +2024-07-05,61016,8941,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3402.56,"{\""promo\"": \""28%\""}",239346,0,"""Asia""" +2024-07-12,61017,769,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2212.25,"{\"": \""24%\""}",175658,0,"""Asia""" +2024-06-19,61018,3134,"[\""Charger\"", \""Monitor\"", \""Phone\""]",150.45,{},177955,1,"""Europe""" +2024-01-22,61019,3746,"[\""Laptop\"", \""Charger\""]",3499.68,"{\""loyalty\"": \""12%\""}",11121,0,"""Europe""" +2023-03-03,61020,2273,"[\""Tablet\""]",711.93,"{\""promo\"": \""10%\""}",135716,0,"""Africa""" +2024-06-26,61021,6386,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",502.98,{},111988,1,"""North America""" +2023-12-07,61022,6109,"[\""Headphones\"", \""Charger\""]",3715.41,{},100329,0,"""Europe""" +2023-05-06,61023,2828,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",901.95,"{\""promo\"": \""24%\""}",96436,0,"""North America""" +2024-08-20,61024,6258,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4155.45,"{\"": \""7%\""}",52366,0,"""Africa""" +2024-09-07,61025,4690,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4598.82,"{\""seasonal\"": \""21%\""}",238740,0,"""Asia""" +2023-03-19,61026,4502,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1611.32,"{\""promo\"": \""23%\""}",93841,0,"""Asia""" +2023-11-23,61027,265,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1461.82,"{\"": \""12%\""}",240030,1,"""North America""" +2023-03-06,61028,1164,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3097.82,{},153227,0,"""South America""" +2024-06-15,61029,8356,"[\""Monitor\""]",1087.4,{},244683,0,"""North America""" +2023-05-24,61030,8401,"[\""Headphones\"", \""Tablet\""]",4271.43,"{\""loyalty\"": \""20%\""}",137613,1,"""Asia""" +2024-08-08,61031,791,"[\""Charger\""]",3044.67,"{\"": \""23%\""}",59508,0,"""North America""" +2023-11-22,61032,5015,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1451.42,"{\""loyalty\"": \""22%\""}",224775,0,"""Africa""" +2023-11-23,61033,7120,"[\""Headphones\""]",2837.69,{},99006,0,"""South America""" +2023-04-09,61034,4946,"[\""Headphones\""]",4906.32,"{\""promo\"": \""15%\""}",13592,1,"""Europe""" +2024-09-13,61035,2457,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2162.98,"{\""seasonal\"": \""30%\""}",217979,1,"""Asia""" +2024-06-04,61036,192,"[\""Tablet\""]",4633.91,"{\""promo\"": \""18%\""}",253677,0,"""South America""" +2023-01-17,61037,8583,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3328.81,"{\""loyalty\"": \""11%\""}",72167,1,"""South America""" +2023-03-30,61038,9404,"[\""Charger\""]",4365.69,"{\""seasonal\"": \""20%\""}",219163,0,"""Asia""" +2024-04-09,61039,8077,"[\""Keyboard\"", \""Laptop\""]",1753.38,{},60046,1,"""North America""" +2023-10-23,61040,9869,"[\""Keyboard\"", \""Wireless Mouse\""]",1828.19,{},47629,1,"""North America""" +2023-11-05,61041,5216,"[\""Keyboard\"", \""Phone\""]",3251.43,{},94248,0,"""Asia""" +2024-07-14,61042,9288,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",125.59,"{\"": \""14%\""}",96722,1,"""North America""" +2023-08-16,61043,3390,"[\""Laptop\""]",4124.25,"{\""loyalty\"": \""29%\""}",228372,1,"""South America""" +2024-12-03,61044,6538,"[\""Charger\"", \""Laptop\""]",2216.19,"{\""seasonal\"": \""15%\""}",19027,0,"""South America""" +2023-09-21,61045,8481,"[\""Phone\"", \""Wireless Mouse\""]",4150.16,"{\""seasonal\"": \""8%\""}",228026,1,"""Asia""" +2023-07-19,61046,7451,"[\""Charger\"", \""Laptop\""]",4076.67,{},90803,1,"""North America""" +2023-10-12,61047,3428,"[\""Charger\"", \""Laptop\""]",78.69,{},259049,0,"""Asia""" +2024-09-03,61048,6935,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1647.59,"{\"": \""16%\""}",192339,1,"""Asia""" +2024-08-22,61049,5102,"[\""Tablet\"", \""Keyboard\""]",1324.5,{},113825,0,"""South America""" +2023-06-18,61050,6921,"[\""Wireless Mouse\""]",722.56,"{\""loyalty\"": \""18%\""}",264148,1,"""South America""" +2023-09-06,61051,7902,"[\""Laptop\""]",4826.84,"{\""seasonal\"": \""27%\""}",239887,1,"""North America""" +2024-11-06,61052,2891,"[\""Keyboard\""]",2656.17,"{\"": \""13%\""}",171223,0,"""Asia""" +2024-07-09,61053,5813,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3268.49,{},46564,1,"""South America""" +2023-07-16,61054,4521,"[\""Wireless Mouse\"", \""Laptop\""]",3922.72,"{\""promo\"": \""19%\""}",240693,1,"""Europe""" +2023-12-07,61055,6575,"[\""Wireless Mouse\"", \""Charger\""]",4298.08,"{\""seasonal\"": \""16%\""}",67837,1,"""North America""" +2023-07-03,61056,8920,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3841.23,"{\""promo\"": \""5%\""}",124266,0,"""North America""" +2023-04-01,61057,1729,"[\""Tablet\""]",4478.04,{},140304,0,"""Asia""" +2024-10-05,61058,1862,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",111.46,"{\"": \""26%\""}",298901,0,"""South America""" +2024-02-19,61059,7565,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4200.33,{},51131,0,"""Africa""" +2023-08-13,61060,9267,"[\""Phone\"", \""Wireless Mouse\""]",2366.02,"{\"": \""11%\""}",28155,1,"""Europe""" +2023-09-26,61061,1261,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2749.84,{},228463,0,"""Asia""" +2024-12-25,61062,8677,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3495.2,{},279825,0,"""Europe""" +2024-02-02,61063,7808,"[\""Wireless Mouse\"", \""Headphones\""]",589.81,{},44498,0,"""Europe""" +2024-02-14,61064,5444,"[\""Phone\""]",1542.9,"{\"": \""5%\""}",178006,1,"""Europe""" +2024-06-26,61065,9829,"[\""Monitor\""]",2885.86,{},283138,0,"""Asia""" +2024-05-17,61066,9299,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3478.63,{},123753,1,"""South America""" +2023-01-22,61067,9480,"[\""Laptop\"", \""Keyboard\""]",85.11,"{\""loyalty\"": \""8%\""}",9840,0,"""Africa""" +2023-08-03,61068,949,"[\""Wireless Mouse\"", \""Charger\""]",4133.36,{},236632,1,"""Africa""" +2023-08-12,61069,2871,"[\""Keyboard\"", \""Monitor\""]",3889.8,{},239597,1,"""Africa""" +2024-01-10,61070,9843,"[\""Laptop\"", \""Tablet\""]",3109.22,"{\""seasonal\"": \""29%\""}",25316,1,"""South America""" +2023-06-07,61071,1800,"[\""Wireless Mouse\""]",3331.1,"{\""loyalty\"": \""10%\""}",272896,1,"""North America""" +2024-12-26,61072,7626,"[\""Keyboard\"", \""Tablet\""]",2705.72,"{\""loyalty\"": \""6%\""}",265604,0,"""Europe""" +2024-06-02,61073,6924,"[\""Wireless Mouse\"", \""Phone\""]",2023.39,{},48455,1,"""Europe""" +2024-12-23,61074,792,"[\""Headphones\""]",828.9,"{\"": \""9%\""}",256717,1,"""Asia""" +2024-10-31,61075,2543,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",126.78,{},30825,1,"""North America""" +2024-02-23,61076,3314,"[\""Laptop\""]",1233.18,"{\"": \""6%\""}",84757,0,"""Asia""" +2024-11-09,61077,6138,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",560.53,"{\"": \""9%\""}",164733,1,"""Asia""" +2024-01-17,61078,4199,"[\""Monitor\"", \""Charger\""]",1883.85,"{\""promo\"": \""25%\""}",3943,0,"""Africa""" +2024-07-20,61079,593,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2760.97,{},220029,0,"""Asia""" +2023-02-23,61080,4965,"[\""Monitor\"", \""Tablet\""]",3245.23,"{\""promo\"": \""22%\""}",219022,1,"""South America""" +2024-12-28,61081,4090,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3438.65,"{\""promo\"": \""23%\""}",183330,0,"""South America""" +2024-04-26,61082,9642,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2133.2,"{\""seasonal\"": \""28%\""}",294283,0,"""Africa""" +2023-11-16,61083,4216,"[\""Charger\"", \""Laptop\""]",1495.18,"{\""loyalty\"": \""25%\""}",221754,0,"""Africa""" +2024-08-29,61084,6559,"[\""Phone\"", \""Headphones\""]",1203.8,{},259353,1,"""Africa""" +2023-07-11,61085,437,"[\""Headphones\""]",4022.24,"{\"": \""19%\""}",78348,0,"""South America""" +2023-10-02,61086,6986,"[\""Laptop\"", \""Monitor\""]",3256.86,{},76305,0,"""North America""" +2023-05-22,61087,8295,"[\""Tablet\""]",4240.43,{},60863,0,"""North America""" +2023-07-30,61088,3690,"[\""Charger\""]",3578.66,"{\""seasonal\"": \""13%\""}",193673,0,"""North America""" +2023-06-15,61089,6937,"[\""Monitor\"", \""Tablet\""]",4880.11,"{\""seasonal\"": \""26%\""}",136165,1,"""Europe""" +2024-07-14,61090,1786,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1956.97,"{\""seasonal\"": \""20%\""}",30735,1,"""Europe""" +2023-09-21,61091,1074,"[\""Wireless Mouse\""]",4218.67,{},208743,0,"""South America""" +2024-04-20,61092,4422,"[\""Phone\"", \""Laptop\"", \""Charger\""]",637.23,{},182531,0,"""South America""" +2024-06-04,61093,3599,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3681.18,{},14618,0,"""Europe""" +2023-09-16,61094,9121,"[\""Wireless Mouse\"", \""Monitor\""]",1598.4,"{\"": \""27%\""}",282750,0,"""North America""" +2024-04-21,61095,6367,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1759.57,{},85545,1,"""North America""" +2023-11-27,61096,2657,"[\""Charger\""]",482.4,"{\""seasonal\"": \""29%\""}",83149,0,"""Africa""" +2024-05-19,61097,2549,"[\""Monitor\""]",3636.49,{},223822,0,"""Asia""" +2024-10-17,61098,3045,"[\""Laptop\"", \""Keyboard\""]",2575.67,{},139199,0,"""Africa""" +2023-07-01,61099,2354,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3344.4,{},45223,0,"""Asia""" +2024-07-09,61100,2446,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3979.26,{},224043,0,"""Africa""" +2023-10-29,61101,449,"[\""Phone\"", \""Charger\"", \""Tablet\""]",222.56,"{\"": \""6%\""}",257810,0,"""South America""" +2024-01-07,61102,4509,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",114.78,{},198478,0,"""South America""" +2023-02-10,61103,9282,"[\""Wireless Mouse\""]",2154.56,"{\""loyalty\"": \""9%\""}",25922,1,"""Asia""" +2023-09-13,61104,9202,"[\""Tablet\""]",1536.43,{},14696,1,"""South America""" +2024-08-31,61105,3709,"[\""Phone\"", \""Tablet\""]",805.93,"{\""seasonal\"": \""11%\""}",165323,0,"""North America""" +2024-03-17,61106,1959,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3670.8,{},133585,0,"""Asia""" +2024-10-24,61107,5616,"[\""Laptop\""]",4490.21,{},201372,1,"""Africa""" +2023-11-15,61108,6335,"[\""Headphones\""]",1255.76,"{\""loyalty\"": \""21%\""}",120096,1,"""Africa""" +2023-02-02,61109,8304,"[\""Monitor\"", \""Laptop\""]",2078.22,"{\""promo\"": \""5%\""}",229251,1,"""North America""" +2023-06-29,61110,2926,"[\""Wireless Mouse\""]",2319.49,"{\""promo\"": \""26%\""}",86121,0,"""North America""" +2024-11-10,61111,6620,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1493.5,"{\""seasonal\"": \""29%\""}",66598,0,"""Asia""" +2023-07-12,61112,5664,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4381.25,"{\""seasonal\"": \""13%\""}",120612,1,"""Africa""" +2023-04-09,61113,7613,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4795.85,{},22652,0,"""Africa""" +2024-10-15,61114,4654,"[\""Laptop\""]",247.64,{},47132,1,"""North America""" +2024-11-25,61115,5119,"[\""Tablet\""]",1843.7,{},271678,0,"""Asia""" +2023-11-18,61116,7632,"[\""Headphones\""]",3782.6,"{\""loyalty\"": \""15%\""}",39050,1,"""Europe""" +2024-04-09,61117,4927,"[\""Headphones\"", \""Laptop\""]",3637.97,{},65290,1,"""North America""" +2024-02-05,61118,7192,"[\""Charger\""]",464.0,{},214579,0,"""North America""" +2023-01-08,61119,1443,"[\""Headphones\"", \""Tablet\""]",4532.62,"{\""loyalty\"": \""12%\""}",16867,0,"""Asia""" +2023-04-08,61120,9525,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2678.15,"{\""loyalty\"": \""15%\""}",43995,0,"""Asia""" +2023-11-21,61121,4408,"[\""Wireless Mouse\"", \""Headphones\""]",1691.24,"{\""loyalty\"": \""15%\""}",90717,0,"""Africa""" +2024-01-11,61122,9213,"[\""Laptop\"", \""Keyboard\""]",3586.46,{},62094,1,"""Europe""" +2024-03-18,61123,200,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",352.23,"{\""promo\"": \""30%\""}",110651,1,"""South America""" +2023-04-13,61124,4605,"[\""Phone\"", \""Charger\""]",404.42,{},259621,1,"""North America""" +2024-07-04,61125,5856,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1118.86,"{\"": \""19%\""}",274568,0,"""Asia""" +2024-11-22,61126,7195,"[\""Phone\""]",931.82,{},233967,0,"""North America""" +2023-06-17,61127,2421,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3198.26,{},195958,1,"""South America""" +2023-05-11,61128,4434,"[\""Laptop\""]",3666.49,{},7520,0,"""South America""" +2024-12-18,61129,1076,"[\""Phone\""]",2571.92,"{\""promo\"": \""13%\""}",137226,1,"""South America""" +2024-06-18,61130,2931,"[\""Keyboard\"", \""Laptop\""]",261.62,{},151316,0,"""Europe""" +2024-02-04,61131,4888,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",287.62,"{\""seasonal\"": \""23%\""}",122769,0,"""Europe""" +2024-06-03,61132,1573,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3613.02,{},7623,0,"""South America""" +2024-07-10,61133,5894,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3828.05,"{\"": \""8%\""}",271825,0,"""Europe""" +2024-04-18,61134,6033,"[\""Phone\""]",2508.66,"{\""loyalty\"": \""8%\""}",119103,1,"""Africa""" +2024-07-04,61135,6783,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1764.02,{},242804,0,"""North America""" +2023-05-03,61136,8449,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1674.8,{},46213,0,"""Africa""" +2024-07-28,61137,766,"[\""Laptop\"", \""Phone\"", \""Charger\""]",342.6,{},193608,0,"""North America""" +2023-10-24,61138,1332,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4927.54,"{\""promo\"": \""7%\""}",88053,1,"""Africa""" +2024-04-10,61139,7739,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3432.68,"{\""promo\"": \""16%\""}",123921,0,"""North America""" +2024-10-17,61140,5193,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",459.46,{},259381,1,"""Europe""" +2024-08-02,61141,2162,"[\""Headphones\"", \""Charger\""]",3381.72,{},264494,1,"""Africa""" +2024-05-14,61142,5384,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2862.93,"{\""promo\"": \""30%\""}",219786,1,"""Africa""" +2023-12-28,61143,3562,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3004.69,"{\""seasonal\"": \""16%\""}",213113,1,"""South America""" +2024-07-22,61144,979,"[\""Phone\"", \""Charger\""]",3676.45,{},72300,0,"""South America""" +2023-11-03,61145,282,"[\""Laptop\""]",2669.07,{},200595,1,"""South America""" +2023-07-08,61146,4544,"[\""Wireless Mouse\""]",1707.17,{},270446,0,"""North America""" +2024-03-29,61147,737,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2210.89,{},99445,0,"""Asia""" +2023-07-30,61148,860,"[\""Keyboard\""]",4919.21,{},158540,1,"""Europe""" +2024-10-02,61149,4859,"[\""Tablet\""]",2645.09,{},253739,0,"""Europe""" +2023-08-08,61150,6285,"[\""Charger\"", \""Phone\""]",3724.31,{},107145,1,"""Europe""" +2023-11-08,61151,8329,"[\""Keyboard\"", \""Headphones\""]",1782.2,{},247896,0,"""Europe""" +2023-04-10,61152,1950,"[\""Charger\"", \""Laptop\""]",1438.17,{},74690,0,"""Europe""" +2023-04-20,61153,5727,"[\""Phone\"", \""Monitor\"", \""Charger\""]",167.57,"{\"": \""12%\""}",29700,1,"""Africa""" +2024-03-03,61154,2805,"[\""Headphones\"", \""Monitor\""]",4090.26,"{\""loyalty\"": \""9%\""}",158908,0,"""Africa""" +2023-12-08,61155,2815,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1898.52,"{\""seasonal\"": \""11%\""}",189002,0,"""North America""" +2023-02-06,61156,5621,"[\""Tablet\""]",4879.59,"{\"": \""12%\""}",159989,1,"""Asia""" +2024-02-05,61157,9045,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1073.82,{},205437,1,"""South America""" +2024-01-19,61158,332,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4545.16,{},148923,1,"""South America""" +2023-02-25,61159,718,"[\""Phone\""]",133.44,{},17638,0,"""South America""" +2023-10-30,61160,3229,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4629.98,{},90447,1,"""Europe""" +2023-11-28,61161,8936,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",710.05,{},222677,1,"""Africa""" +2023-08-20,61162,9201,"[\""Charger\""]",239.27,{},60266,0,"""Europe""" +2023-03-26,61163,9558,"[\""Charger\"", \""Keyboard\""]",4355.74,"{\""seasonal\"": \""22%\""}",162976,1,"""North America""" +2023-07-17,61164,2035,"[\""Keyboard\""]",2165.19,{},114047,0,"""Asia""" +2023-10-05,61165,3024,"[\""Keyboard\"", \""Phone\""]",271.02,"{\""promo\"": \""26%\""}",45487,1,"""Europe""" +2023-05-29,61166,5263,"[\""Keyboard\""]",1458.53,{},214164,1,"""Asia""" +2023-12-30,61167,6641,"[\""Tablet\""]",4018.06,{},274327,0,"""Asia""" +2023-12-24,61168,5225,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2430.57,"{\""promo\"": \""5%\""}",225009,0,"""South America""" +2024-03-19,61169,3157,"[\""Tablet\""]",1628.85,{},214890,0,"""Europe""" +2024-06-21,61170,2630,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3784.44,"{\""loyalty\"": \""6%\""}",151810,1,"""Africa""" +2023-07-10,61171,1252,"[\""Charger\"", \""Wireless Mouse\""]",3348.35,{},164810,1,"""Europe""" +2023-02-14,61172,942,"[\""Phone\"", \""Laptop\""]",3338.93,"{\""promo\"": \""15%\""}",192312,1,"""South America""" +2023-07-29,61173,6740,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1961.36,{},68061,0,"""South America""" +2023-07-22,61174,6007,"[\""Keyboard\"", \""Headphones\""]",2330.88,"{\""promo\"": \""13%\""}",25480,1,"""South America""" +2024-07-23,61175,4394,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1296.79,{},82792,0,"""Asia""" +2023-12-26,61176,7250,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",205.94,"{\""promo\"": \""13%\""}",25239,1,"""Africa""" +2024-12-18,61177,7906,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4478.98,"{\""promo\"": \""8%\""}",81997,0,"""South America""" +2023-04-21,61178,7333,"[\""Charger\"", \""Wireless Mouse\""]",2552.11,"{\""seasonal\"": \""7%\""}",166784,1,"""Asia""" +2024-03-18,61179,2418,"[\""Wireless Mouse\"", \""Monitor\""]",397.75,"{\"": \""30%\""}",179280,0,"""Europe""" +2024-07-17,61180,1908,"[\""Phone\"", \""Keyboard\""]",1269.64,{},129210,1,"""Asia""" +2024-05-31,61181,8289,"[\""Phone\"", \""Monitor\""]",506.95,"{\""seasonal\"": \""22%\""}",129849,0,"""North America""" +2024-12-30,61182,2462,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2175.94,{},42643,1,"""South America""" +2023-10-09,61183,7147,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2951.27,{},157036,1,"""Africa""" +2024-07-02,61184,685,"[\""Tablet\""]",2581.52,{},278638,0,"""Africa""" +2023-10-07,61185,6052,"[\""Headphones\"", \""Laptop\""]",4249.86,{},92631,0,"""South America""" +2024-10-16,61186,6557,"[\""Phone\"", \""Headphones\""]",1718.24,"{\""seasonal\"": \""15%\""}",280085,0,"""Asia""" +2024-10-09,61187,5100,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",987.74,"{\""promo\"": \""23%\""}",197988,1,"""South America""" +2023-07-29,61188,6537,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2434.25,"{\""promo\"": \""18%\""}",208756,0,"""Africa""" +2024-07-01,61189,9210,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2888.91,{},232331,0,"""Africa""" +2024-09-04,61190,7410,"[\""Monitor\""]",2396.38,"{\""loyalty\"": \""23%\""}",163706,0,"""Africa""" +2023-07-03,61191,5011,"[\""Wireless Mouse\"", \""Tablet\""]",1019.03,"{\""seasonal\"": \""27%\""}",19466,1,"""Europe""" +2024-10-19,61192,9281,"[\""Wireless Mouse\"", \""Keyboard\""]",1437.38,{},219264,0,"""Africa""" +2024-05-30,61193,5812,"[\""Tablet\""]",2265.4,{},274714,0,"""Asia""" +2023-07-19,61194,8852,"[\""Phone\"", \""Laptop\""]",4091.54,{},138430,0,"""North America""" +2024-03-22,61195,8614,"[\""Wireless Mouse\"", \""Monitor\""]",3522.18,"{\""promo\"": \""18%\""}",56328,1,"""Asia""" +2023-08-30,61196,1473,"[\""Tablet\""]",2559.34,{},288820,0,"""North America""" +2024-08-09,61197,523,"[\""Phone\"", \""Tablet\""]",2803.85,{},144856,0,"""Europe""" +2023-03-18,61198,6043,"[\""Headphones\""]",4951.91,{},291555,0,"""Africa""" +2024-07-21,61199,5437,"[\""Wireless Mouse\""]",903.17,"{\""promo\"": \""9%\""}",211985,0,"""Asia""" +2023-01-13,61200,2733,"[\""Phone\""]",4413.78,{},292171,0,"""Europe""" +2023-03-25,61201,360,"[\""Headphones\""]",122.48,{},107144,1,"""North America""" +2024-04-30,61202,5979,"[\""Headphones\"", \""Charger\""]",1641.2,{},206189,0,"""South America""" +2024-10-29,61203,5390,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4519.1,"{\""promo\"": \""20%\""}",240487,1,"""North America""" +2023-09-27,61204,4590,"[\""Laptop\"", \""Monitor\""]",1605.39,{},164825,1,"""Europe""" +2024-10-09,61205,4082,"[\""Charger\"", \""Headphones\""]",2774.84,{},25253,0,"""South America""" +2023-01-01,61206,3477,"[\""Monitor\"", \""Phone\""]",4937.01,"{\"": \""12%\""}",65397,1,"""Asia""" +2024-02-27,61207,5786,"[\""Charger\""]",3865.0,{},151417,1,"""Europe""" +2023-06-25,61208,9307,"[\""Wireless Mouse\""]",2551.28,"{\""loyalty\"": \""5%\""}",58578,1,"""Europe""" +2023-03-30,61209,6086,"[\""Keyboard\"", \""Wireless Mouse\""]",2112.35,{},59143,1,"""Europe""" +2023-09-17,61210,832,"[\""Phone\""]",3594.84,"{\""loyalty\"": \""8%\""}",135955,0,"""Africa""" +2023-11-06,61211,4136,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2860.16,"{\""loyalty\"": \""20%\""}",127772,0,"""Asia""" +2023-03-19,61212,4002,"[\""Headphones\"", \""Keyboard\""]",4791.75,{},29881,0,"""Europe""" +2023-04-22,61213,1237,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1799.42,"{\""seasonal\"": \""26%\""}",169190,1,"""South America""" +2024-09-24,61214,358,"[\""Charger\""]",2514.39,{},88052,0,"""Africa""" +2024-10-24,61215,658,"[\""Charger\""]",1740.86,"{\""promo\"": \""13%\""}",110488,0,"""Africa""" +2023-03-26,61216,6295,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2417.87,"{\"": \""21%\""}",41238,1,"""Europe""" +2024-12-15,61217,421,"[\""Keyboard\"", \""Charger\""]",1728.9,{},192643,1,"""Europe""" +2024-12-25,61218,2642,"[\""Keyboard\""]",1221.41,{},202539,0,"""South America""" +2024-02-26,61219,4007,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",318.56,{},196962,1,"""Asia""" +2023-05-25,61220,1565,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2507.93,{},256512,0,"""Asia""" +2024-07-13,61221,6469,"[\""Monitor\""]",1683.76,{},63222,0,"""South America""" +2023-06-11,61222,1078,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3628.14,{},41113,1,"""Africa""" +2023-02-20,61223,4518,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4635.07,{},127251,0,"""Asia""" +2023-04-18,61224,2103,"[\""Keyboard\""]",3795.06,{},278460,0,"""Europe""" +2023-02-25,61225,5369,"[\""Monitor\"", \""Keyboard\""]",3057.32,{},139863,1,"""North America""" +2024-02-14,61226,9560,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1640.94,{},119964,1,"""North America""" +2024-05-10,61227,7506,"[\""Charger\"", \""Headphones\""]",329.76,{},75059,0,"""Africa""" +2023-06-14,61228,2215,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",794.09,"{\"": \""25%\""}",211032,0,"""South America""" +2024-10-25,61229,6898,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3729.88,"{\""seasonal\"": \""27%\""}",31878,0,"""Europe""" +2024-08-13,61230,3752,"[\""Monitor\""]",667.88,{},238024,0,"""Africa""" +2024-02-28,61231,4018,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4678.75,{},85404,0,"""South America""" +2023-01-08,61232,8491,"[\""Phone\"", \""Charger\""]",2332.14,{},160640,0,"""South America""" +2024-06-28,61233,9876,"[\""Monitor\"", \""Tablet\""]",1457.39,{},153116,1,"""South America""" +2024-11-24,61234,1338,"[\""Phone\"", \""Tablet\""]",2316.64,{},220691,0,"""Africa""" +2023-11-28,61235,9042,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1771.69,"{\""loyalty\"": \""26%\""}",127680,1,"""Africa""" +2023-09-09,61236,4693,"[\""Charger\"", \""Wireless Mouse\""]",102.32,"{\""promo\"": \""21%\""}",38960,0,"""North America""" +2024-11-05,61237,2984,"[\""Laptop\"", \""Phone\""]",2747.33,{},277339,1,"""Africa""" +2023-11-26,61238,8366,"[\""Tablet\"", \""Phone\""]",209.71,"{\""seasonal\"": \""16%\""}",261440,1,"""Africa""" +2023-12-14,61239,570,"[\""Monitor\""]",3734.86,{},75574,1,"""Europe""" +2024-04-02,61240,4178,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3258.1,"{\""loyalty\"": \""8%\""}",48906,0,"""Europe""" +2024-01-26,61241,49,"[\""Phone\"", \""Tablet\""]",2776.91,{},89195,0,"""Asia""" +2023-08-31,61242,5438,"[\""Tablet\"", \""Headphones\""]",1226.5,"{\""loyalty\"": \""26%\""}",233847,1,"""Europe""" +2023-12-24,61243,1376,"[\""Headphones\""]",3567.31,{},98784,1,"""Asia""" +2023-09-04,61244,1965,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1342.11,"{\"": \""5%\""}",91666,0,"""Europe""" +2023-01-25,61245,296,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2600.71,{},3528,0,"""Africa""" +2023-07-06,61246,9101,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2085.8,"{\""promo\"": \""26%\""}",95401,1,"""Asia""" +2024-01-25,61247,3753,"[\""Monitor\"", \""Wireless Mouse\""]",3902.75,{},5027,0,"""Europe""" +2023-06-13,61248,4509,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3784.36,"{\"": \""10%\""}",65192,1,"""North America""" +2024-08-08,61249,979,"[\""Charger\"", \""Laptop\""]",3500.3,"{\""loyalty\"": \""27%\""}",283855,0,"""Asia""" +2024-03-07,61250,3164,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2584.57,{},108916,1,"""Africa""" +2023-12-08,61251,9857,"[\""Laptop\""]",1971.91,{},167375,1,"""South America""" +2023-12-21,61252,8364,"[\""Wireless Mouse\""]",2192.85,"{\""loyalty\"": \""24%\""}",35228,1,"""Asia""" +2023-03-31,61253,174,"[\""Tablet\""]",597.52,"{\""promo\"": \""24%\""}",102401,1,"""Asia""" +2024-10-28,61254,1261,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4849.68,"{\"": \""15%\""}",114092,1,"""North America""" +2024-03-30,61255,4665,"[\""Tablet\""]",4018.82,{},46650,1,"""Europe""" +2024-09-04,61256,8890,"[\""Monitor\""]",3940.74,"{\""seasonal\"": \""20%\""}",206426,0,"""North America""" +2024-05-22,61257,2000,"[\""Headphones\""]",1776.39,"{\""seasonal\"": \""9%\""}",111982,0,"""North America""" +2023-09-16,61258,5177,"[\""Monitor\""]",740.39,{},286093,0,"""South America""" +2024-02-10,61259,2156,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1523.05,{},28030,1,"""Africa""" +2023-06-25,61260,6635,"[\""Charger\""]",3242.54,"{\""seasonal\"": \""21%\""}",255210,0,"""Africa""" +2024-07-16,61261,7108,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",353.45,"{\""seasonal\"": \""30%\""}",192830,1,"""Asia""" +2024-11-07,61262,4517,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3075.47,{},122735,0,"""Africa""" +2024-07-06,61263,9384,"[\""Monitor\"", \""Charger\""]",3660.4,"{\""promo\"": \""29%\""}",165328,1,"""Europe""" +2023-05-19,61264,2324,"[\""Tablet\"", \""Keyboard\""]",1812.75,{},19868,0,"""Asia""" +2024-10-03,61265,2521,"[\""Keyboard\""]",4175.7,{},27263,0,"""South America""" +2024-01-04,61266,82,"[\""Tablet\"", \""Phone\""]",1995.52,{},151676,0,"""Europe""" +2023-04-05,61267,6710,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2224.98,{},219751,1,"""Europe""" +2024-01-30,61268,2911,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2203.91,"{\""promo\"": \""23%\""}",219730,0,"""North America""" +2024-11-21,61269,3924,"[\""Wireless Mouse\"", \""Monitor\""]",3993.97,{},295906,0,"""Asia""" +2024-06-28,61270,4714,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1260.57,"{\""seasonal\"": \""23%\""}",182567,1,"""South America""" +2023-10-15,61271,1179,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1910.91,{},116617,0,"""Europe""" +2023-07-16,61272,2599,"[\""Keyboard\""]",3168.26,"{\""loyalty\"": \""9%\""}",122651,1,"""Asia""" +2024-11-01,61273,4310,"[\""Keyboard\""]",1642.62,"{\""seasonal\"": \""7%\""}",297253,1,"""North America""" +2024-07-12,61274,8662,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4349.73,{},72656,0,"""Africa""" +2024-04-23,61275,8490,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2613.5,{},171717,1,"""South America""" +2023-04-29,61276,2295,"[\""Wireless Mouse\"", \""Headphones\""]",3223.94,"{\""loyalty\"": \""19%\""}",225798,0,"""Europe""" +2023-02-25,61277,2626,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3787.71,"{\""loyalty\"": \""29%\""}",205302,0,"""South America""" +2023-12-02,61278,7340,"[\""Keyboard\""]",189.75,{},274199,0,"""Europe""" +2023-03-01,61279,6282,"[\""Headphones\"", \""Charger\""]",1968.41,"{\""loyalty\"": \""30%\""}",194266,0,"""North America""" +2023-05-22,61280,6881,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1493.72,{},199733,1,"""Africa""" +2024-10-18,61281,3466,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2159.74,"{\""seasonal\"": \""14%\""}",15979,0,"""Europe""" +2023-04-08,61282,7718,"[\""Tablet\""]",4168.49,{},37967,1,"""Asia""" +2024-03-15,61283,849,"[\""Monitor\""]",290.25,{},273180,0,"""Africa""" +2024-10-07,61284,4609,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2262.66,{},299970,1,"""Europe""" +2024-04-15,61285,1691,"[\""Wireless Mouse\"", \""Tablet\""]",4702.14,"{\""seasonal\"": \""27%\""}",52999,0,"""North America""" +2024-11-02,61286,4399,"[\""Keyboard\"", \""Tablet\""]",2789.63,"{\""promo\"": \""22%\""}",181473,1,"""North America""" +2024-05-05,61287,2542,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2974.12,"{\"": \""24%\""}",41131,0,"""South America""" +2024-11-14,61288,6122,"[\""Charger\"", \""Laptop\""]",1031.26,"{\"": \""28%\""}",241524,1,"""Africa""" +2023-05-05,61289,7881,"[\""Monitor\"", \""Headphones\""]",4182.19,{},259610,0,"""North America""" +2024-04-16,61290,7808,"[\""Charger\""]",2559.5,"{\"": \""21%\""}",59842,0,"""Europe""" +2024-06-26,61291,2258,"[\""Charger\"", \""Keyboard\""]",1289.95,"{\""seasonal\"": \""23%\""}",79130,0,"""Europe""" +2024-11-29,61292,8694,"[\""Phone\"", \""Laptop\""]",420.97,{},73736,0,"""South America""" +2023-09-26,61293,4837,"[\""Wireless Mouse\"", \""Phone\""]",265.79,"{\""loyalty\"": \""21%\""}",227113,0,"""Europe""" +2024-12-14,61294,3897,"[\""Phone\""]",3074.15,"{\""loyalty\"": \""13%\""}",87286,1,"""Europe""" +2023-09-20,61295,9111,"[\""Monitor\""]",4210.89,{},141847,1,"""Europe""" +2024-07-22,61296,1529,"[\""Headphones\""]",2494.8,{},96426,0,"""Europe""" +2023-04-24,61297,5931,"[\""Headphones\""]",3711.1,"{\"": \""9%\""}",59996,0,"""South America""" +2024-01-07,61298,1604,"[\""Headphones\"", \""Laptop\""]",3442.63,{},238793,0,"""Europe""" +2023-01-12,61299,2595,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1163.82,{},247156,0,"""Africa""" +2023-05-22,61300,7818,"[\""Headphones\"", \""Wireless Mouse\""]",1908.33,{},40187,0,"""Africa""" +2024-07-25,61301,1992,"[\""Laptop\""]",1896.55,{},139879,1,"""Europe""" +2023-06-07,61302,6734,"[\""Laptop\""]",2708.78,"{\""seasonal\"": \""25%\""}",105197,0,"""Europe""" +2024-10-19,61303,7737,"[\""Phone\""]",1817.77,"{\""promo\"": \""10%\""}",259853,0,"""Asia""" +2023-05-29,61304,3610,"[\""Keyboard\"", \""Tablet\""]",4894.73,"{\""promo\"": \""23%\""}",98653,1,"""South America""" +2023-12-17,61305,1929,"[\""Wireless Mouse\""]",1529.53,{},27027,0,"""South America""" +2023-08-25,61306,4098,"[\""Keyboard\""]",4218.73,"{\""promo\"": \""28%\""}",245077,1,"""Africa""" +2023-12-14,61307,9965,"[\""Laptop\""]",2244.34,{},24254,1,"""Europe""" +2024-01-30,61308,1185,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3774.23,"{\""seasonal\"": \""5%\""}",267274,1,"""Europe""" +2023-07-31,61309,9352,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4090.21,{},39208,1,"""North America""" +2023-10-04,61310,2581,"[\""Tablet\"", \""Phone\""]",4950.21,"{\""loyalty\"": \""6%\""}",231997,1,"""Europe""" +2023-08-21,61311,2,"[\""Laptop\"", \""Monitor\""]",4517.19,"{\"": \""21%\""}",133511,1,"""Africa""" +2023-01-06,61312,3641,"[\""Keyboard\""]",4576.52,{},123118,0,"""South America""" +2024-05-30,61313,8654,"[\""Keyboard\""]",4104.88,{},102496,0,"""Africa""" +2024-04-08,61314,8311,"[\""Charger\""]",4950.27,{},202411,0,"""Asia""" +2024-01-01,61315,9798,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4245.28,"{\""seasonal\"": \""12%\""}",247909,0,"""Africa""" +2023-05-03,61316,3236,"[\""Laptop\"", \""Wireless Mouse\""]",2298.33,{},89621,1,"""North America""" +2023-06-22,61317,8181,"[\""Phone\""]",517.28,"{\""promo\"": \""7%\""}",111586,1,"""South America""" +2023-01-23,61318,374,"[\""Tablet\"", \""Laptop\""]",3232.25,"{\""seasonal\"": \""13%\""}",246991,1,"""North America""" +2024-10-11,61319,939,"[\""Charger\""]",3300.4,{},223984,0,"""Asia""" +2024-12-12,61320,5323,"[\""Phone\""]",1458.03,"{\""loyalty\"": \""15%\""}",35567,0,"""North America""" +2024-12-10,61321,3956,"[\""Tablet\"", \""Headphones\""]",4790.61,"{\"": \""12%\""}",222071,1,"""Africa""" +2023-01-25,61322,8417,"[\""Laptop\"", \""Phone\""]",1876.38,"{\""promo\"": \""8%\""}",149503,1,"""North America""" +2023-05-29,61323,9241,"[\""Charger\""]",1787.66,{},148643,0,"""Africa""" +2023-08-07,61324,5261,"[\""Laptop\"", \""Headphones\""]",3956.88,"{\""loyalty\"": \""13%\""}",129161,1,"""North America""" +2023-05-28,61325,2739,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1892.98,"{\""promo\"": \""9%\""}",61464,1,"""Africa""" +2023-12-18,61326,9282,"[\""Charger\""]",57.28,"{\""loyalty\"": \""28%\""}",214467,1,"""South America""" +2023-11-29,61327,1911,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",163.78,"{\""loyalty\"": \""26%\""}",129182,0,"""Asia""" +2023-02-06,61328,6128,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3872.98,"{\""promo\"": \""22%\""}",233611,1,"""North America""" +2024-12-04,61329,3343,"[\""Keyboard\""]",2434.19,{},96779,1,"""South America""" +2023-06-21,61330,1045,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4293.91,"{\"": \""7%\""}",86377,0,"""Asia""" +2023-08-19,61331,8382,"[\""Charger\""]",1180.49,{},190192,1,"""Europe""" +2023-04-26,61332,9168,"[\""Monitor\"", \""Charger\""]",4225.4,{},131234,1,"""Africa""" +2023-11-24,61333,4126,"[\""Tablet\"", \""Keyboard\""]",430.97,"{\""loyalty\"": \""15%\""}",5532,1,"""Asia""" +2024-07-23,61334,1634,"[\""Monitor\""]",1940.77,{},166853,1,"""North America""" +2024-04-15,61335,9369,"[\""Laptop\""]",3537.73,{},145662,0,"""Europe""" +2024-11-25,61336,4620,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4526.95,{},268552,1,"""Europe""" +2024-06-17,61337,1636,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1591.6,{},222969,0,"""North America""" +2024-10-04,61338,4582,"[\""Headphones\"", \""Phone\""]",2006.71,{},192551,0,"""Europe""" +2024-08-15,61339,8053,"[\""Keyboard\"", \""Wireless Mouse\""]",3977.14,{},37104,0,"""North America""" +2023-05-19,61340,1677,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3477.97,"{\""seasonal\"": \""19%\""}",255108,1,"""Europe""" +2023-11-10,61341,8234,"[\""Tablet\"", \""Monitor\""]",3709.3,{},149168,0,"""South America""" +2023-04-06,61342,4990,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2219.9,{},40254,1,"""North America""" +2023-11-02,61343,702,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2502.41,"{\""seasonal\"": \""9%\""}",163212,1,"""Europe""" +2023-06-19,61344,1203,"[\""Charger\""]",3065.63,"{\""seasonal\"": \""5%\""}",180580,0,"""Africa""" +2024-11-23,61345,2338,"[\""Phone\""]",1083.72,"{\""promo\"": \""18%\""}",206141,1,"""South America""" +2024-04-15,61346,5477,"[\""Keyboard\"", \""Tablet\""]",3582.4,"{\""seasonal\"": \""21%\""}",186637,0,"""Europe""" +2023-11-17,61347,9878,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4823.76,"{\""promo\"": \""14%\""}",124938,1,"""Africa""" +2023-07-04,61348,5530,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4089.78,{},79110,0,"""Africa""" +2023-05-22,61349,4847,"[\""Laptop\"", \""Wireless Mouse\""]",776.5,{},10158,0,"""Europe""" +2024-11-22,61350,1828,"[\""Monitor\""]",1906.54,{},234470,0,"""Africa""" +2024-11-02,61351,2885,"[\""Headphones\"", \""Charger\""]",2119.52,{},162080,1,"""Africa""" +2023-01-12,61352,1184,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1381.64,{},30100,1,"""North America""" +2023-06-19,61353,3706,"[\""Charger\""]",4657.45,"{\"": \""14%\""}",170226,0,"""Asia""" +2024-05-18,61354,3428,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1174.48,"{\""promo\"": \""6%\""}",31830,0,"""Asia""" +2023-07-23,61355,4649,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3153.0,{},78001,0,"""South America""" +2024-03-31,61356,4259,"[\""Headphones\"", \""Charger\""]",1585.68,{},173112,1,"""South America""" +2024-05-27,61357,6333,"[\""Tablet\""]",4042.97,{},291264,1,"""Asia""" +2024-06-26,61358,7997,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2716.28,"{\""loyalty\"": \""16%\""}",159643,0,"""Europe""" +2023-09-29,61359,4523,"[\""Keyboard\""]",2378.38,"{\"": \""6%\""}",147683,0,"""South America""" +2023-10-20,61360,7509,"[\""Laptop\"", \""Phone\""]",2273.33,{},285327,0,"""South America""" +2024-04-24,61361,4315,"[\""Laptop\"", \""Monitor\""]",2571.9,"{\""seasonal\"": \""19%\""}",56186,1,"""North America""" +2023-10-07,61362,7050,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4561.09,"{\""loyalty\"": \""11%\""}",164055,1,"""Europe""" +2024-07-08,61363,3958,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1248.65,"{\""seasonal\"": \""27%\""}",218548,1,"""South America""" +2024-09-27,61364,2425,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3515.72,{},288299,1,"""Asia""" +2023-04-29,61365,552,"[\""Laptop\"", \""Charger\""]",3400.66,{},22823,1,"""Europe""" +2024-08-29,61366,7185,"[\""Tablet\"", \""Wireless Mouse\""]",2323.89,{},232269,1,"""Asia""" +2023-01-12,61367,4342,"[\""Monitor\""]",3934.5,{},74953,1,"""Asia""" +2024-10-22,61368,6312,"[\""Monitor\""]",951.67,{},54872,0,"""North America""" +2023-11-15,61369,369,"[\""Phone\""]",2743.46,{},15044,0,"""Europe""" +2023-09-11,61370,2256,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4882.2,{},113684,1,"""Africa""" +2023-10-18,61371,443,"[\""Keyboard\""]",211.25,{},48949,0,"""Asia""" +2023-03-17,61372,3531,"[\""Charger\"", \""Wireless Mouse\""]",1515.15,"{\""seasonal\"": \""16%\""}",11075,1,"""Europe""" +2023-07-07,61373,5628,"[\""Headphones\""]",2159.42,{},259871,0,"""Europe""" +2024-02-27,61374,6133,"[\""Headphones\"", \""Monitor\""]",3041.84,{},11624,1,"""Asia""" +2024-08-12,61375,1036,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4347.07,{},254329,0,"""North America""" +2024-12-17,61376,5925,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4980.75,"{\""seasonal\"": \""15%\""}",189872,0,"""North America""" +2024-03-26,61377,182,"[\""Phone\""]",4811.19,{},221655,1,"""South America""" +2024-01-17,61378,799,"[\""Laptop\"", \""Monitor\""]",3010.66,"{\"": \""30%\""}",167562,0,"""Africa""" +2023-10-11,61379,8979,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1702.1,"{\""seasonal\"": \""9%\""}",246631,1,"""Europe""" +2024-12-20,61380,5368,"[\""Phone\"", \""Charger\"", \""Headphones\""]",110.72,"{\"": \""12%\""}",184482,0,"""Asia""" +2023-09-05,61381,8365,"[\""Keyboard\""]",469.87,"{\""seasonal\"": \""22%\""}",146141,0,"""Asia""" +2023-03-28,61382,8833,"[\""Monitor\"", \""Headphones\""]",1580.93,"{\"": \""26%\""}",76084,0,"""North America""" +2024-12-03,61383,9085,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1774.15,"{\""seasonal\"": \""12%\""}",261068,1,"""Asia""" +2024-03-10,61384,8715,"[\""Charger\""]",2587.81,"{\""seasonal\"": \""16%\""}",200923,0,"""North America""" +2023-03-23,61385,2780,"[\""Headphones\"", \""Laptop\""]",3675.62,"{\""loyalty\"": \""22%\""}",167591,1,"""Asia""" +2023-07-22,61386,5604,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1380.37,"{\""promo\"": \""21%\""}",61651,1,"""Asia""" +2023-07-31,61387,8358,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3180.64,"{\""loyalty\"": \""14%\""}",122703,1,"""Asia""" +2024-08-01,61388,1481,"[\""Phone\""]",979.92,"{\""seasonal\"": \""11%\""}",53952,0,"""Europe""" +2023-04-08,61389,3920,"[\""Laptop\"", \""Wireless Mouse\""]",3618.37,"{\""seasonal\"": \""10%\""}",269219,1,"""Asia""" +2024-11-01,61390,1053,"[\""Monitor\"", \""Phone\""]",4980.96,{},216971,0,"""Asia""" +2024-06-29,61391,8356,"[\""Phone\""]",1566.89,"{\"": \""16%\""}",91189,1,"""North America""" +2024-05-29,61392,6162,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4949.82,{},202405,1,"""South America""" +2023-08-20,61393,4205,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2033.13,{},20112,1,"""Asia""" +2023-04-18,61394,9209,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3334.6,"{\"": \""5%\""}",258323,1,"""South America""" +2023-04-11,61395,7853,"[\""Phone\""]",3046.56,{},97426,1,"""Europe""" +2023-10-06,61396,43,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1459.46,"{\""loyalty\"": \""28%\""}",151559,0,"""Asia""" +2024-09-22,61397,389,"[\""Charger\"", \""Keyboard\""]",2363.74,"{\""promo\"": \""26%\""}",171465,1,"""Asia""" +2023-05-09,61398,7111,"[\""Charger\""]",3794.45,"{\""seasonal\"": \""6%\""}",57098,1,"""Asia""" +2024-05-28,61399,6120,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2533.86,"{\"": \""30%\""}",246494,1,"""North America""" +2023-05-29,61400,3991,"[\""Charger\""]",2611.58,"{\""seasonal\"": \""28%\""}",85109,0,"""South America""" +2024-05-24,61401,3079,"[\""Keyboard\"", \""Wireless Mouse\""]",3545.48,{},228850,0,"""Asia""" +2024-06-28,61402,1018,"[\""Wireless Mouse\""]",204.14,"{\""loyalty\"": \""12%\""}",166673,1,"""North America""" +2023-02-23,61403,7778,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1761.61,{},90076,1,"""Africa""" +2024-01-07,61404,645,"[\""Phone\"", \""Monitor\""]",3151.11,"{\""loyalty\"": \""10%\""}",272219,1,"""Africa""" +2023-07-18,61405,1128,"[\""Charger\"", \""Phone\""]",1643.36,"{\""seasonal\"": \""5%\""}",72612,1,"""Europe""" +2024-03-21,61406,1180,"[\""Keyboard\"", \""Tablet\""]",4428.83,{},267225,1,"""Asia""" +2023-12-15,61407,2593,"[\""Charger\""]",4065.64,{},123399,0,"""Asia""" +2024-05-26,61408,9925,"[\""Tablet\""]",2398.67,"{\"": \""18%\""}",288463,0,"""Africa""" +2024-05-07,61409,4052,"[\""Headphones\"", \""Tablet\""]",4042.32,{},194119,1,"""Africa""" +2023-04-28,61410,6662,"[\""Keyboard\""]",3295.19,"{\""seasonal\"": \""16%\""}",76331,0,"""Africa""" +2023-10-16,61411,8755,"[\""Headphones\"", \""Tablet\""]",2662.44,"{\""seasonal\"": \""18%\""}",42139,0,"""North America""" +2024-04-04,61412,2749,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2027.19,{},258071,1,"""Asia""" +2023-01-02,61413,7967,"[\""Phone\"", \""Tablet\""]",1816.41,"{\""seasonal\"": \""22%\""}",213617,0,"""South America""" +2023-08-31,61414,2804,"[\""Wireless Mouse\""]",285.38,{},282051,0,"""Africa""" +2024-12-30,61415,2681,"[\""Tablet\"", \""Charger\""]",1875.76,{},162555,0,"""South America""" +2024-10-16,61416,4073,"[\""Keyboard\"", \""Phone\""]",4844.93,"{\""seasonal\"": \""30%\""}",140984,0,"""South America""" +2023-06-15,61417,1371,"[\""Wireless Mouse\"", \""Phone\""]",4420.51,{},25734,0,"""Asia""" +2023-03-21,61418,7516,"[\""Phone\"", \""Wireless Mouse\""]",3505.39,"{\""seasonal\"": \""16%\""}",144617,0,"""Europe""" +2024-03-14,61419,5616,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4881.26,{},20666,1,"""North America""" +2024-03-04,61420,94,"[\""Keyboard\""]",2197.84,{},37231,0,"""Europe""" +2023-11-30,61421,1609,"[\""Phone\"", \""Charger\""]",4282.03,{},183579,0,"""South America""" +2024-11-07,61422,5091,"[\""Monitor\"", \""Laptop\""]",983.6,"{\""loyalty\"": \""7%\""}",241455,1,"""Africa""" +2024-05-27,61423,4191,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1831.9,{},206584,1,"""Europe""" +2023-10-17,61424,6945,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4114.37,"{\""promo\"": \""17%\""}",119159,1,"""South America""" +2023-11-11,61425,5054,"[\""Charger\""]",964.52,{},234925,0,"""North America""" +2024-09-02,61426,1558,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2810.69,"{\""seasonal\"": \""15%\""}",149803,1,"""Africa""" +2023-06-26,61427,9872,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4959.95,"{\"": \""8%\""}",88979,1,"""South America""" +2023-09-19,61428,2149,"[\""Monitor\"", \""Wireless Mouse\""]",1408.22,"{\"": \""14%\""}",138067,0,"""Asia""" +2024-03-02,61429,1342,"[\""Wireless Mouse\"", \""Charger\""]",160.71,"{\""promo\"": \""6%\""}",253069,0,"""South America""" +2024-06-30,61430,396,"[\""Charger\""]",4120.65,"{\""seasonal\"": \""29%\""}",263841,1,"""Europe""" +2023-11-30,61431,7776,"[\""Wireless Mouse\"", \""Monitor\""]",4033.37,{},162018,1,"""Asia""" +2024-07-23,61432,7416,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",998.06,{},270363,0,"""Africa""" +2024-07-11,61433,9693,"[\""Headphones\"", \""Keyboard\""]",4090.51,{},28736,1,"""Africa""" +2024-05-16,61434,1819,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1179.12,{},44715,1,"""South America""" +2024-11-09,61435,8047,"[\""Wireless Mouse\""]",4788.61,{},115127,0,"""Africa""" +2023-05-17,61436,6772,"[\""Tablet\"", \""Monitor\""]",1658.45,{},125850,1,"""South America""" +2024-09-01,61437,3782,"[\""Phone\""]",2924.82,{},174371,0,"""North America""" +2024-01-28,61438,2236,"[\""Phone\"", \""Charger\""]",2667.22,{},79240,0,"""Europe""" +2024-10-30,61439,3075,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",395.97,{},4340,0,"""Asia""" +2024-10-06,61440,7796,"[\""Laptop\"", \""Tablet\""]",1411.34,{},3149,1,"""Africa""" +2023-07-18,61441,6328,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1759.27,{},106084,0,"""Europe""" +2024-12-08,61442,2239,"[\""Charger\"", \""Monitor\""]",309.88,{},101523,1,"""South America""" +2023-05-12,61443,5843,"[\""Keyboard\""]",3921.42,"{\"": \""23%\""}",144376,1,"""South America""" +2023-01-10,61444,1903,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3151.6,{},2679,0,"""Europe""" +2023-08-22,61445,5939,"[\""Charger\""]",196.18,{},67510,1,"""Asia""" +2024-01-29,61446,3513,"[\""Phone\"", \""Monitor\""]",322.24,"{\"": \""30%\""}",170586,1,"""South America""" +2024-03-16,61447,3138,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4503.51,"{\""promo\"": \""28%\""}",59607,1,"""South America""" +2023-10-06,61448,1100,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4022.84,{},66670,0,"""North America""" +2023-09-04,61449,1668,"[\""Headphones\""]",535.32,{},57964,1,"""Europe""" +2024-03-19,61450,4388,"[\""Keyboard\""]",4263.36,"{\"": \""15%\""}",161747,1,"""North America""" +2024-11-09,61451,5199,"[\""Keyboard\""]",255.04,{},220705,0,"""North America""" +2023-03-26,61452,6522,"[\""Monitor\"", \""Tablet\""]",4724.25,"{\""loyalty\"": \""12%\""}",299901,0,"""South America""" +2024-06-23,61453,1521,"[\""Tablet\"", \""Wireless Mouse\""]",3837.54,"{\"": \""12%\""}",271731,0,"""Africa""" +2023-07-10,61454,2540,"[\""Wireless Mouse\""]",4885.17,"{\""loyalty\"": \""16%\""}",232862,1,"""Asia""" +2023-01-27,61455,6880,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2623.14,"{\""promo\"": \""12%\""}",245313,0,"""Africa""" +2024-04-07,61456,2979,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1975.32,{},76115,1,"""North America""" +2024-05-26,61457,5976,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2471.35,{},172319,0,"""Asia""" +2023-01-07,61458,4013,"[\""Tablet\""]",2703.4,"{\""seasonal\"": \""29%\""}",244867,1,"""Africa""" +2023-12-13,61459,4967,"[\""Headphones\""]",196.14,{},253820,0,"""Africa""" +2024-01-28,61460,119,"[\""Monitor\""]",3558.34,"{\""loyalty\"": \""7%\""}",16807,1,"""South America""" +2023-08-20,61461,8124,"[\""Phone\""]",3501.53,"{\"": \""10%\""}",5805,1,"""Asia""" +2023-06-16,61462,5425,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2307.48,{},156925,0,"""North America""" +2024-02-03,61463,8662,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1723.43,"{\""promo\"": \""28%\""}",69150,1,"""Asia""" +2023-12-22,61464,2071,"[\""Keyboard\""]",4009.81,"{\"": \""24%\""}",257177,1,"""Asia""" +2024-05-10,61465,8185,"[\""Monitor\""]",576.32,{},199431,0,"""South America""" +2023-06-27,61466,3836,"[\""Headphones\"", \""Tablet\""]",2157.08,"{\""loyalty\"": \""30%\""}",268039,1,"""Asia""" +2023-12-26,61467,1251,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1048.46,"{\""promo\"": \""28%\""}",165698,1,"""South America""" +2023-04-11,61468,2843,"[\""Phone\""]",1347.66,"{\""promo\"": \""23%\""}",144117,0,"""South America""" +2023-07-28,61469,9642,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3362.28,{},22196,0,"""Europe""" +2024-05-04,61470,4085,"[\""Monitor\"", \""Keyboard\""]",2550.39,{},72327,0,"""Europe""" +2024-01-08,61471,1479,"[\""Charger\""]",927.49,{},10325,0,"""Europe""" +2024-04-23,61472,7596,"[\""Monitor\"", \""Charger\""]",2616.34,{},296337,0,"""Europe""" +2024-07-17,61473,8816,"[\""Headphones\"", \""Wireless Mouse\""]",4260.53,{},123508,1,"""Europe""" +2024-02-18,61474,6168,"[\""Laptop\""]",1114.21,"{\""promo\"": \""24%\""}",152177,0,"""North America""" +2023-11-27,61475,1151,"[\""Charger\""]",2987.49,"{\""loyalty\"": \""15%\""}",42097,0,"""Africa""" +2024-05-03,61476,982,"[\""Laptop\""]",126.96,{},193648,1,"""Asia""" +2024-10-23,61477,6320,"[\""Phone\""]",4242.62,{},183139,0,"""North America""" +2023-10-17,61478,1483,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1060.34,"{\""loyalty\"": \""17%\""}",248425,1,"""Asia""" +2024-05-14,61479,7002,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1575.22,{},278453,0,"""Africa""" +2024-11-05,61480,387,"[\""Headphones\""]",1827.42,"{\""promo\"": \""23%\""}",23292,1,"""Asia""" +2023-10-24,61481,9281,"[\""Tablet\""]",1619.06,"{\""seasonal\"": \""24%\""}",133113,0,"""Africa""" +2023-04-22,61482,9845,"[\""Phone\""]",876.18,{},66896,0,"""Africa""" +2023-08-09,61483,2649,"[\""Charger\"", \""Monitor\""]",2875.81,{},160854,0,"""Africa""" +2023-12-10,61484,9368,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2828.22,"{\"": \""19%\""}",278865,0,"""Asia""" +2024-09-25,61485,5885,"[\""Charger\""]",2182.4,"{\""loyalty\"": \""5%\""}",253488,1,"""Asia""" +2023-03-25,61486,5451,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",314.03,{},283185,1,"""Africa""" +2024-01-01,61487,8958,"[\""Monitor\"", \""Tablet\""]",2825.26,{},115946,0,"""North America""" +2023-10-02,61488,6194,"[\""Wireless Mouse\"", \""Keyboard\""]",3135.12,"{\""promo\"": \""15%\""}",80197,1,"""Europe""" +2023-03-21,61489,9950,"[\""Tablet\""]",4919.38,{},28518,1,"""Asia""" +2024-04-20,61490,9070,"[\""Keyboard\""]",1899.07,{},197847,1,"""South America""" +2024-03-20,61491,36,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4596.52,"{\""promo\"": \""6%\""}",153450,1,"""Europe""" +2024-06-21,61492,6620,"[\""Tablet\""]",4159.61,{},264596,0,"""Europe""" +2024-01-27,61493,9932,"[\""Headphones\""]",4605.39,"{\""promo\"": \""21%\""}",115771,1,"""North America""" +2023-03-23,61494,2369,"[\""Laptop\""]",3785.68,{},246058,0,"""Africa""" +2024-04-26,61495,3423,"[\""Wireless Mouse\"", \""Monitor\""]",2649.2,"{\""loyalty\"": \""28%\""}",25964,0,"""North America""" +2023-01-03,61496,1504,"[\""Tablet\""]",3515.21,"{\""seasonal\"": \""6%\""}",189419,1,"""North America""" +2023-12-02,61497,8419,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",481.47,{},35630,1,"""North America""" +2024-03-04,61498,3375,"[\""Wireless Mouse\""]",3089.49,"{\""seasonal\"": \""30%\""}",38598,1,"""South America""" +2024-08-16,61499,7573,"[\""Laptop\"", \""Wireless Mouse\""]",3308.53,"{\""promo\"": \""12%\""}",221480,0,"""Asia""" +2023-02-13,61500,1241,"[\""Laptop\""]",1733.26,"{\""seasonal\"": \""25%\""}",149683,0,"""Europe""" +2023-01-27,61501,4701,"[\""Monitor\""]",2456.25,{},168650,1,"""Africa""" +2024-04-04,61502,2686,"[\""Headphones\""]",972.14,{},38721,0,"""Africa""" +2024-12-12,61503,2197,"[\""Laptop\""]",624.35,{},243013,1,"""Africa""" +2023-08-29,61504,650,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4889.15,"{\""loyalty\"": \""24%\""}",74814,0,"""Africa""" +2023-04-12,61505,7811,"[\""Headphones\"", \""Monitor\""]",2024.08,{},218492,1,"""South America""" +2023-05-27,61506,9129,"[\""Phone\""]",4856.96,"{\""seasonal\"": \""9%\""}",105761,0,"""Asia""" +2023-08-31,61507,3536,"[\""Wireless Mouse\""]",3448.29,"{\"": \""9%\""}",84681,0,"""Africa""" +2024-11-01,61508,2202,"[\""Monitor\"", \""Keyboard\""]",2739.58,{},194367,0,"""Europe""" +2023-07-26,61509,4441,"[\""Charger\"", \""Monitor\""]",2176.56,"{\""promo\"": \""6%\""}",153361,1,"""North America""" +2024-01-25,61510,1980,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4283.8,{},164412,1,"""Asia""" +2024-01-31,61511,8589,"[\""Keyboard\"", \""Tablet\""]",322.91,{},64412,1,"""Africa""" +2023-09-12,61512,7730,"[\""Monitor\"", \""Charger\""]",1114.33,"{\""seasonal\"": \""11%\""}",246234,1,"""Africa""" +2023-09-30,61513,5312,"[\""Headphones\"", \""Keyboard\""]",2177.7,{},107830,1,"""North America""" +2024-06-10,61514,7365,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",460.84,{},16049,0,"""South America""" +2023-07-24,61515,7924,"[\""Tablet\""]",72.17,{},212643,1,"""North America""" +2023-01-28,61516,8068,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4745.95,{},159423,1,"""Africa""" +2023-04-22,61517,4492,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2926.43,"{\""seasonal\"": \""16%\""}",97497,1,"""North America""" +2023-10-25,61518,6549,"[\""Laptop\"", \""Headphones\""]",297.64,{},232452,0,"""Africa""" +2024-05-06,61519,3823,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2452.51,{},165413,1,"""Africa""" +2023-03-18,61520,4845,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4856.77,{},16638,0,"""Europe""" +2023-02-21,61521,5750,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",359.29,"{\""promo\"": \""23%\""}",27313,0,"""Europe""" +2023-04-14,61522,2518,"[\""Headphones\""]",1395.27,"{\""promo\"": \""21%\""}",157846,0,"""Asia""" +2023-03-13,61523,6511,"[\""Laptop\""]",3266.54,"{\""seasonal\"": \""5%\""}",250530,0,"""South America""" +2023-10-26,61524,201,"[\""Headphones\""]",4118.45,"{\""loyalty\"": \""5%\""}",128818,1,"""Asia""" +2023-10-27,61525,6551,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1846.13,"{\""seasonal\"": \""18%\""}",187920,1,"""North America""" +2023-07-26,61526,9032,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2767.71,{},256601,1,"""North America""" +2024-08-20,61527,9331,"[\""Charger\"", \""Tablet\""]",3639.23,{},177292,1,"""Europe""" +2024-05-25,61528,788,"[\""Charger\""]",2388.05,{},295568,0,"""Asia""" +2023-12-24,61529,575,"[\""Charger\"", \""Monitor\""]",1712.94,"{\""seasonal\"": \""11%\""}",207335,0,"""Asia""" +2024-08-05,61530,4847,"[\""Phone\""]",3697.74,"{\""promo\"": \""19%\""}",158750,1,"""Africa""" +2023-09-15,61531,1774,"[\""Phone\""]",4992.86,"{\""loyalty\"": \""25%\""}",287287,1,"""South America""" +2024-11-17,61532,3564,"[\""Phone\"", \""Tablet\""]",3375.72,"{\""seasonal\"": \""16%\""}",50937,1,"""Asia""" +2024-03-09,61533,2912,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1729.01,{},91189,1,"""North America""" +2024-01-10,61534,6956,"[\""Wireless Mouse\""]",451.08,"{\"": \""15%\""}",89591,0,"""Europe""" +2024-08-25,61535,958,"[\""Tablet\"", \""Keyboard\""]",4591.74,{},194820,1,"""North America""" +2024-08-01,61536,9728,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1485.95,{},180042,0,"""Europe""" +2024-10-25,61537,1847,"[\""Phone\""]",1960.64,{},259409,0,"""Africa""" +2023-09-17,61538,2194,"[\""Monitor\""]",4465.03,{},54695,0,"""Africa""" +2024-12-30,61539,4210,"[\""Monitor\"", \""Wireless Mouse\""]",541.01,{},156149,1,"""North America""" +2024-08-11,61540,4161,"[\""Phone\""]",4054.08,"{\""promo\"": \""12%\""}",295487,0,"""Africa""" +2023-02-03,61541,8743,"[\""Tablet\"", \""Keyboard\""]",1634.28,{},99002,1,"""South America""" +2024-05-13,61542,3430,"[\""Laptop\"", \""Wireless Mouse\""]",480.48,{},148395,0,"""North America""" +2024-08-28,61543,4975,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",692.5,"{\""loyalty\"": \""15%\""}",290484,1,"""Africa""" +2023-01-24,61544,3213,"[\""Headphones\""]",2389.19,"{\""seasonal\"": \""13%\""}",66158,1,"""North America""" +2024-06-29,61545,5548,"[\""Phone\"", \""Laptop\""]",238.7,"{\""promo\"": \""10%\""}",266661,1,"""Europe""" +2024-01-15,61546,569,"[\""Charger\"", \""Tablet\"", \""Phone\""]",956.35,"{\""seasonal\"": \""20%\""}",157571,0,"""Europe""" +2023-11-21,61547,7809,"[\""Headphones\"", \""Laptop\""]",2552.88,"{\""loyalty\"": \""13%\""}",278032,0,"""Asia""" +2023-07-14,61548,209,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",238.02,{},74006,0,"""Asia""" +2024-09-23,61549,9653,"[\""Laptop\"", \""Keyboard\""]",254.02,"{\""seasonal\"": \""6%\""}",76231,1,"""North America""" +2023-08-22,61550,4371,"[\""Keyboard\""]",1524.36,"{\"": \""17%\""}",80461,1,"""North America""" +2023-10-29,61551,3861,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4837.52,"{\""promo\"": \""23%\""}",133832,0,"""Africa""" +2024-03-25,61552,1825,"[\""Phone\""]",3931.47,{},206663,1,"""South America""" +2024-02-12,61553,5388,"[\""Tablet\"", \""Keyboard\""]",2780.01,"{\""loyalty\"": \""8%\""}",132177,0,"""Africa""" +2023-11-15,61554,1447,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",617.17,"{\"": \""28%\""}",7306,0,"""Africa""" +2024-03-31,61555,2511,"[\""Wireless Mouse\"", \""Phone\""]",1870.77,{},116273,1,"""North America""" +2024-08-02,61556,7276,"[\""Laptop\""]",4158.16,"{\""seasonal\"": \""29%\""}",201363,0,"""Asia""" +2023-09-02,61557,588,"[\""Monitor\""]",2684.79,"{\""promo\"": \""30%\""}",224002,0,"""Asia""" +2024-10-30,61558,1686,"[\""Keyboard\"", \""Wireless Mouse\""]",4051.44,{},252776,1,"""Asia""" +2024-01-24,61559,2104,"[\""Monitor\"", \""Keyboard\""]",521.44,"{\"": \""18%\""}",129551,0,"""South America""" +2024-01-21,61560,3101,"[\""Charger\"", \""Laptop\""]",4298.73,"{\""loyalty\"": \""11%\""}",37288,1,"""Asia""" +2023-04-22,61561,8496,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2811.33,{},156932,1,"""Africa""" +2024-07-22,61562,6355,"[\""Phone\""]",1332.36,{},114053,1,"""Africa""" +2024-05-16,61563,214,"[\""Headphones\"", \""Wireless Mouse\""]",130.46,"{\""promo\"": \""8%\""}",94162,0,"""North America""" +2023-01-03,61564,7301,"[\""Keyboard\"", \""Monitor\""]",3387.6,{},53908,0,"""Europe""" +2023-04-15,61565,3577,"[\""Headphones\""]",816.34,"{\""seasonal\"": \""26%\""}",101570,1,"""Africa""" +2024-08-27,61566,8315,"[\""Phone\""]",3719.74,"{\""seasonal\"": \""11%\""}",115531,0,"""South America""" +2023-04-03,61567,4095,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3882.91,{},110887,0,"""North America""" +2023-11-17,61568,3830,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3437.42,{},3012,0,"""North America""" +2023-05-20,61569,1186,"[\""Charger\""]",4551.25,"{\""promo\"": \""30%\""}",145415,0,"""South America""" +2024-02-12,61570,692,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4785.57,{},212276,1,"""Asia""" +2024-03-06,61571,6037,"[\""Phone\""]",3264.5,"{\""seasonal\"": \""16%\""}",4826,0,"""Europe""" +2023-01-27,61572,1670,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1506.37,"{\"": \""13%\""}",217528,0,"""Asia""" +2023-03-15,61573,5589,"[\""Laptop\"", \""Tablet\""]",414.19,{},12734,0,"""Asia""" +2023-06-28,61574,4467,"[\""Phone\"", \""Laptop\""]",3878.74,{},182501,0,"""Africa""" +2024-07-03,61575,2283,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3141.43,{},31798,0,"""South America""" +2023-12-09,61576,3934,"[\""Monitor\""]",2539.49,"{\""seasonal\"": \""28%\""}",241353,1,"""Asia""" +2023-08-31,61577,920,"[\""Laptop\"", \""Headphones\""]",113.64,"{\""promo\"": \""25%\""}",197361,0,"""North America""" +2024-02-15,61578,2413,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3124.71,{},73199,0,"""Africa""" +2024-04-24,61579,1808,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2750.49,"{\"": \""6%\""}",290701,0,"""North America""" +2023-01-02,61580,1724,"[\""Wireless Mouse\""]",1600.1,"{\""loyalty\"": \""15%\""}",131784,1,"""South America""" +2023-10-22,61581,3535,"[\""Headphones\"", \""Phone\""]",1698.74,{},55367,1,"""South America""" +2024-05-06,61582,1143,"[\""Monitor\"", \""Keyboard\""]",2044.72,{},204261,0,"""Africa""" +2023-05-21,61583,9512,"[\""Laptop\""]",379.48,"{\""seasonal\"": \""26%\""}",46048,0,"""Africa""" +2024-02-07,61584,5190,"[\""Tablet\""]",3995.95,{},33266,1,"""North America""" +2023-05-25,61585,9476,"[\""Headphones\""]",4614.06,"{\""promo\"": \""11%\""}",21991,1,"""Africa""" +2023-10-23,61586,5074,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2166.25,"{\"": \""15%\""}",71758,1,"""South America""" +2024-02-07,61587,4994,"[\""Laptop\""]",2122.38,{},205720,1,"""South America""" +2023-11-11,61588,8090,"[\""Tablet\""]",758.86,{},19393,0,"""North America""" +2024-03-07,61589,5909,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1551.45,{},10182,1,"""Asia""" +2024-08-15,61590,5434,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1255.35,{},103813,1,"""South America""" +2023-08-26,61591,8550,"[\""Wireless Mouse\""]",3575.33,"{\""seasonal\"": \""5%\""}",16376,1,"""Africa""" +2023-11-13,61592,9192,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1924.18,{},76026,0,"""North America""" +2024-12-02,61593,8466,"[\""Wireless Mouse\""]",2957.86,"{\"": \""22%\""}",24120,1,"""Asia""" +2023-03-24,61594,8007,"[\""Monitor\""]",3720.63,"{\"": \""24%\""}",228807,0,"""Europe""" +2023-10-07,61595,7460,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2324.85,"{\""loyalty\"": \""16%\""}",283667,0,"""South America""" +2023-05-08,61596,1201,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",134.26,"{\"": \""23%\""}",66101,0,"""Asia""" +2024-10-15,61597,3696,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3833.86,"{\""promo\"": \""9%\""}",89791,0,"""Europe""" +2024-01-16,61598,8817,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3559.05,"{\""promo\"": \""14%\""}",238358,1,"""Europe""" +2024-10-25,61599,7139,"[\""Monitor\""]",747.45,{},138265,0,"""Africa""" +2023-10-14,61600,9316,"[\""Monitor\""]",4038.85,{},27991,0,"""North America""" +2024-07-02,61601,1625,"[\""Charger\""]",4955.32,{},110570,0,"""Africa""" +2023-07-29,61602,4082,"[\""Tablet\"", \""Headphones\""]",2219.73,{},273477,1,"""South America""" +2023-07-19,61603,4364,"[\""Monitor\"", \""Tablet\""]",2614.46,"{\""promo\"": \""18%\""}",265308,0,"""Asia""" +2023-05-29,61604,7269,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3941.38,"{\""loyalty\"": \""18%\""}",195119,1,"""Africa""" +2024-01-11,61605,9366,"[\""Keyboard\"", \""Charger\""]",1968.17,"{\""loyalty\"": \""6%\""}",225594,0,"""Africa""" +2023-03-13,61606,6003,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",290.17,{},235838,1,"""Europe""" +2024-01-24,61607,5245,"[\""Wireless Mouse\""]",1181.71,"{\""seasonal\"": \""20%\""}",123338,1,"""Europe""" +2024-07-01,61608,673,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3601.92,"{\"": \""29%\""}",186968,0,"""Europe""" +2024-10-21,61609,7553,"[\""Charger\""]",3701.0,"{\""promo\"": \""22%\""}",61080,1,"""North America""" +2024-03-09,61610,6827,"[\""Keyboard\""]",2431.02,{},265256,1,"""Asia""" +2024-09-08,61611,9530,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3583.55,{},99875,0,"""North America""" +2024-12-04,61612,7236,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",570.96,{},43748,0,"""North America""" +2024-12-06,61613,3487,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1980.16,"{\""loyalty\"": \""21%\""}",87995,0,"""Europe""" +2023-06-07,61614,7229,"[\""Phone\"", \""Laptop\""]",133.35,"{\"": \""16%\""}",202722,1,"""North America""" +2024-12-21,61615,7558,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4914.81,{},250773,0,"""Africa""" +2023-07-12,61616,1835,"[\""Phone\""]",4961.31,"{\"": \""10%\""}",271290,0,"""Asia""" +2023-12-24,61617,1801,"[\""Keyboard\""]",2559.48,"{\""seasonal\"": \""19%\""}",178304,0,"""Europe""" +2024-07-27,61618,2122,"[\""Monitor\"", \""Headphones\""]",1522.63,"{\""seasonal\"": \""16%\""}",171395,1,"""Europe""" +2024-08-16,61619,3327,"[\""Laptop\""]",4634.14,"{\""seasonal\"": \""21%\""}",263133,1,"""Europe""" +2024-09-06,61620,6598,"[\""Phone\""]",1670.46,{},123339,0,"""Asia""" +2023-06-12,61621,5421,"[\""Charger\"", \""Monitor\""]",114.33,{},120028,1,"""Asia""" +2024-09-15,61622,2226,"[\""Charger\"", \""Monitor\""]",480.65,{},172599,1,"""Asia""" +2023-05-03,61623,7775,"[\""Laptop\"", \""Wireless Mouse\""]",2009.82,"{\"": \""25%\""}",221927,0,"""Asia""" +2024-10-29,61624,2166,"[\""Charger\""]",2939.01,{},147209,1,"""North America""" +2023-11-09,61625,3840,"[\""Monitor\""]",1273.71,{},208784,1,"""Asia""" +2024-12-16,61626,39,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3157.48,{},236165,1,"""Asia""" +2024-06-24,61627,2884,"[\""Wireless Mouse\"", \""Charger\""]",1962.68,{},36211,0,"""South America""" +2023-02-20,61628,1924,"[\""Charger\""]",1642.76,"{\""loyalty\"": \""20%\""}",118767,1,"""North America""" +2024-08-28,61629,9845,"[\""Laptop\"", \""Tablet\""]",816.37,{},153534,1,"""Europe""" +2023-06-22,61630,9899,"[\""Tablet\""]",309.95,"{\"": \""5%\""}",270805,0,"""Africa""" +2023-02-27,61631,5467,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",689.15,{},12491,1,"""South America""" +2024-09-30,61632,9882,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3788.81,{},94432,0,"""Europe""" +2024-12-05,61633,2281,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1740.24,"{\""promo\"": \""21%\""}",285662,1,"""North America""" +2024-07-09,61634,1927,"[\""Wireless Mouse\""]",4222.61,{},34815,0,"""North America""" +2024-10-01,61635,4631,"[\""Wireless Mouse\""]",1236.21,{},94148,0,"""Asia""" +2023-09-30,61636,5937,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4707.2,{},259638,0,"""Europe""" +2024-11-29,61637,156,"[\""Phone\"", \""Charger\""]",4764.04,"{\"": \""7%\""}",146243,1,"""North America""" +2023-07-01,61638,8764,"[\""Laptop\""]",1987.08,"{\"": \""21%\""}",196147,1,"""South America""" +2024-01-31,61639,327,"[\""Charger\""]",1627.62,{},176251,0,"""North America""" +2023-09-16,61640,4668,"[\""Headphones\"", \""Tablet\""]",3722.62,"{\"": \""8%\""}",263950,1,"""South America""" +2023-10-22,61641,5764,"[\""Monitor\""]",892.05,"{\""seasonal\"": \""12%\""}",272432,1,"""North America""" +2023-01-21,61642,5045,"[\""Charger\"", \""Monitor\""]",4417.76,"{\""loyalty\"": \""16%\""}",233387,1,"""Africa""" +2024-04-14,61643,8828,"[\""Charger\"", \""Monitor\""]",4698.77,{},85431,0,"""South America""" +2023-10-02,61644,9852,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1747.53,{},1851,0,"""Asia""" +2024-09-09,61645,1967,"[\""Tablet\""]",3874.41,"{\""promo\"": \""28%\""}",199553,0,"""Africa""" +2024-01-25,61646,1893,"[\""Laptop\""]",3842.09,"{\"": \""20%\""}",22390,1,"""Asia""" +2024-01-29,61647,4445,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2942.33,"{\""seasonal\"": \""12%\""}",290769,1,"""South America""" +2023-01-25,61648,8324,"[\""Phone\"", \""Tablet\""]",1492.91,{},210720,0,"""Africa""" +2023-03-08,61649,2917,"[\""Phone\""]",2870.56,"{\""loyalty\"": \""22%\""}",284620,0,"""South America""" +2024-09-15,61650,88,"[\""Keyboard\""]",1461.68,{},179603,0,"""Africa""" +2023-11-24,61651,8497,"[\""Phone\""]",2915.06,{},294684,0,"""Asia""" +2024-11-03,61652,5393,"[\""Monitor\"", \""Phone\""]",3935.65,{},130981,1,"""Africa""" +2024-07-16,61653,7573,"[\""Laptop\"", \""Keyboard\""]",3781.78,{},240481,0,"""Africa""" +2024-07-15,61654,9116,"[\""Wireless Mouse\""]",4296.57,{},84775,0,"""North America""" +2024-02-15,61655,9530,"[\""Monitor\""]",388.39,"{\""loyalty\"": \""11%\""}",291115,1,"""Africa""" +2023-08-13,61656,7512,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2523.45,"{\""promo\"": \""21%\""}",80815,1,"""Europe""" +2024-03-31,61657,9311,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1675.18,{},42875,0,"""Europe""" +2024-05-08,61658,8140,"[\""Charger\""]",564.62,"{\"": \""23%\""}",70653,1,"""Europe""" +2023-04-25,61659,4255,"[\""Keyboard\""]",3998.57,"{\"": \""20%\""}",255388,0,"""Asia""" +2023-03-31,61660,8456,"[\""Keyboard\""]",887.58,{},224587,0,"""South America""" +2024-10-23,61661,113,"[\""Headphones\""]",188.78,{},54528,0,"""South America""" +2023-11-28,61662,1867,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3953.06,"{\""loyalty\"": \""6%\""}",42077,1,"""Europe""" +2024-10-31,61663,3937,"[\""Tablet\""]",4417.96,{},78441,1,"""North America""" +2024-12-21,61664,5585,"[\""Tablet\"", \""Monitor\""]",557.08,"{\""loyalty\"": \""21%\""}",253960,0,"""Europe""" +2023-02-05,61665,1923,"[\""Phone\"", \""Monitor\""]",4035.8,{},136045,1,"""Europe""" +2023-06-22,61666,711,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4424.63,"{\""loyalty\"": \""16%\""}",119419,1,"""Africa""" +2024-05-18,61667,9033,"[\""Charger\"", \""Headphones\""]",2453.22,{},156510,0,"""Asia""" +2024-11-15,61668,7476,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",505.18,{},30050,0,"""Asia""" +2023-03-10,61669,4065,"[\""Headphones\""]",1097.35,{},207497,0,"""Africa""" +2023-08-31,61670,2602,"[\""Phone\""]",459.7,"{\""promo\"": \""8%\""}",154078,1,"""North America""" +2023-06-13,61671,7547,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3487.42,"{\""seasonal\"": \""10%\""}",138030,1,"""North America""" +2023-02-20,61672,4664,"[\""Headphones\""]",4532.02,{},120073,0,"""Asia""" +2023-05-23,61673,3438,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2716.62,"{\""seasonal\"": \""10%\""}",89639,1,"""North America""" +2024-01-12,61674,6637,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1358.43,"{\""promo\"": \""22%\""}",136519,0,"""North America""" +2023-01-04,61675,3304,"[\""Tablet\"", \""Phone\""]",1207.92,"{\""loyalty\"": \""21%\""}",239700,1,"""Asia""" +2023-08-22,61676,1813,"[\""Phone\"", \""Monitor\""]",1946.45,"{\""promo\"": \""18%\""}",276528,0,"""Asia""" +2024-04-18,61677,9968,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4865.58,{},122476,0,"""Asia""" +2024-06-21,61678,616,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4874.56,"{\""loyalty\"": \""16%\""}",95639,0,"""North America""" +2023-07-25,61679,7467,"[\""Tablet\""]",4747.32,{},135059,0,"""North America""" +2023-07-03,61680,9359,"[\""Headphones\""]",692.3,"{\""seasonal\"": \""26%\""}",91956,0,"""Asia""" +2023-12-09,61681,2709,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2316.43,"{\"": \""9%\""}",186005,1,"""Europe""" +2024-05-25,61682,634,"[\""Charger\"", \""Phone\""]",4528.6,{},272523,0,"""Europe""" +2024-07-02,61683,6044,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4958.66,"{\""loyalty\"": \""24%\""}",247708,0,"""Africa""" +2023-12-18,61684,8205,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2056.67,"{\""promo\"": \""24%\""}",101035,1,"""Africa""" +2024-09-30,61685,3149,"[\""Wireless Mouse\"", \""Headphones\""]",4927.05,{},260658,1,"""North America""" +2024-06-27,61686,3358,"[\""Tablet\"", \""Laptop\""]",2060.34,{},279788,0,"""North America""" +2023-10-20,61687,1033,"[\""Headphones\"", \""Charger\""]",1708.55,{},115148,1,"""Europe""" +2023-12-07,61688,8189,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",932.23,{},213359,1,"""Asia""" +2024-01-26,61689,8956,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2709.51,"{\"": \""10%\""}",150850,1,"""North America""" +2024-01-05,61690,3604,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3892.49,"{\""loyalty\"": \""28%\""}",185750,0,"""South America""" +2024-05-24,61691,7472,"[\""Charger\"", \""Headphones\""]",1751.85,{},274197,1,"""South America""" +2023-09-07,61692,9884,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2739.95,"{\"": \""13%\""}",140402,0,"""Africa""" +2024-09-14,61693,1765,"[\""Monitor\""]",2856.24,{},200690,0,"""Asia""" +2024-06-14,61694,4209,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4592.17,{},190534,1,"""South America""" +2024-12-12,61695,8842,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",190.67,{},168698,1,"""Europe""" +2023-01-25,61696,7968,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3271.48,{},254811,0,"""Europe""" +2023-03-07,61697,6722,"[\""Phone\""]",1834.4,{},11155,1,"""Africa""" +2024-07-13,61698,3474,"[\""Monitor\""]",1356.5,{},6054,1,"""Asia""" +2023-04-24,61699,3373,"[\""Monitor\"", \""Phone\""]",1502.35,"{\""loyalty\"": \""13%\""}",276592,0,"""South America""" +2024-12-27,61700,1063,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4985.19,"{\""promo\"": \""24%\""}",116508,0,"""Africa""" +2024-04-18,61701,4840,"[\""Headphones\"", \""Wireless Mouse\""]",3270.33,{},84899,0,"""North America""" +2024-06-22,61702,7919,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",752.66,{},45666,0,"""Africa""" +2024-12-20,61703,4246,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4477.53,"{\""promo\"": \""23%\""}",296238,1,"""North America""" +2024-03-08,61704,5858,"[\""Headphones\"", \""Phone\""]",2086.45,"{\""promo\"": \""30%\""}",258366,1,"""Africa""" +2023-06-19,61705,4002,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4618.69,"{\""seasonal\"": \""18%\""}",15350,0,"""South America""" +2024-12-30,61706,617,"[\""Charger\""]",2275.93,"{\""loyalty\"": \""27%\""}",33517,0,"""Africa""" +2023-02-02,61707,8046,"[\""Keyboard\"", \""Laptop\""]",1514.11,{},123433,1,"""Africa""" +2023-05-13,61708,8939,"[\""Monitor\""]",2605.85,"{\""seasonal\"": \""15%\""}",73364,1,"""South America""" +2023-02-05,61709,25,"[\""Phone\"", \""Keyboard\""]",2139.92,"{\""seasonal\"": \""17%\""}",182471,1,"""North America""" +2023-02-28,61710,3073,"[\""Tablet\"", \""Headphones\""]",3496.05,{},48013,1,"""Africa""" +2023-04-25,61711,8038,"[\""Monitor\""]",246.49,{},183176,0,"""Europe""" +2024-01-05,61712,6586,"[\""Keyboard\""]",2200.85,"{\""promo\"": \""28%\""}",37876,0,"""South America""" +2023-03-05,61713,6704,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2409.77,{},239646,1,"""Asia""" +2024-10-22,61714,5136,"[\""Charger\""]",1621.92,{},129470,1,"""Asia""" +2024-11-11,61715,489,"[\""Keyboard\""]",2413.32,{},157397,1,"""Asia""" +2024-09-14,61716,9452,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1915.71,"{\""seasonal\"": \""19%\""}",238512,1,"""Asia""" +2024-12-12,61717,1342,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4533.14,"{\""promo\"": \""26%\""}",151636,1,"""Asia""" +2023-06-02,61718,1675,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4314.44,"{\""seasonal\"": \""13%\""}",25527,0,"""Europe""" +2024-05-12,61719,7861,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4434.11,{},92062,1,"""Europe""" +2024-11-12,61720,2603,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",762.4,"{\"": \""28%\""}",120808,0,"""North America""" +2023-07-06,61721,7294,"[\""Keyboard\"", \""Tablet\""]",1246.06,{},117605,1,"""North America""" +2024-09-22,61722,4253,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3172.1,{},99003,0,"""North America""" +2023-11-26,61723,4285,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2139.44,{},207191,1,"""Europe""" +2023-07-24,61724,2244,"[\""Headphones\"", \""Keyboard\""]",1953.09,"{\""loyalty\"": \""17%\""}",78067,0,"""South America""" +2023-09-10,61725,7192,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2247.07,"{\""seasonal\"": \""21%\""}",225397,1,"""Africa""" +2024-01-04,61726,1287,"[\""Headphones\"", \""Phone\""]",3964.99,{},134317,1,"""Europe""" +2023-03-04,61727,9251,"[\""Keyboard\"", \""Headphones\""]",3047.44,"{\"": \""8%\""}",194282,0,"""Europe""" +2024-12-02,61728,5611,"[\""Charger\"", \""Headphones\""]",1094.86,{},40740,0,"""North America""" +2023-04-28,61729,4838,"[\""Tablet\"", \""Headphones\""]",2378.09,"{\"": \""17%\""}",43574,1,"""North America""" +2024-02-19,61730,9264,"[\""Laptop\""]",4799.94,{},56714,1,"""Asia""" +2024-09-21,61731,5158,"[\""Laptop\""]",889.95,{},184408,0,"""North America""" +2023-10-31,61732,2695,"[\""Phone\"", \""Charger\""]",2940.83,{},276771,0,"""Asia""" +2023-01-11,61733,3767,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",55.2,{},222635,1,"""Asia""" +2024-12-27,61734,2831,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3127.01,"{\""seasonal\"": \""16%\""}",104911,1,"""Europe""" +2023-12-20,61735,2876,"[\""Phone\"", \""Tablet\""]",3844.08,"{\""promo\"": \""13%\""}",200498,1,"""Africa""" +2024-04-23,61736,9168,"[\""Headphones\"", \""Wireless Mouse\""]",2141.61,"{\""promo\"": \""7%\""}",63640,0,"""Asia""" +2024-02-12,61737,1133,"[\""Charger\"", \""Monitor\""]",3529.95,"{\""loyalty\"": \""18%\""}",71972,1,"""South America""" +2024-09-07,61738,1317,"[\""Charger\""]",2797.26,"{\""promo\"": \""29%\""}",142352,0,"""Asia""" +2023-04-19,61739,9265,"[\""Laptop\""]",3303.21,"{\"": \""19%\""}",241384,1,"""Europe""" +2024-04-09,61740,3414,"[\""Phone\""]",2831.14,"{\""promo\"": \""20%\""}",74729,0,"""Asia""" +2024-06-01,61741,8061,"[\""Monitor\"", \""Keyboard\""]",4492.89,{},249061,0,"""North America""" +2024-01-29,61742,1773,"[\""Monitor\""]",2912.23,{},287654,0,"""Africa""" +2023-09-26,61743,567,"[\""Headphones\"", \""Phone\""]",4171.73,"{\""loyalty\"": \""12%\""}",82068,0,"""Europe""" +2023-02-22,61744,2388,"[\""Monitor\"", \""Keyboard\""]",2936.21,"{\""loyalty\"": \""20%\""}",28795,0,"""South America""" +2024-12-31,61745,8139,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2688.92,"{\""seasonal\"": \""17%\""}",9766,1,"""Europe""" +2024-04-08,61746,8149,"[\""Tablet\"", \""Headphones\""]",4288.48,"{\""seasonal\"": \""5%\""}",83051,1,"""Africa""" +2023-10-31,61747,8582,"[\""Laptop\"", \""Headphones\""]",988.97,"{\""promo\"": \""9%\""}",293000,1,"""North America""" +2024-12-24,61748,8650,"[\""Headphones\""]",3820.79,"{\""loyalty\"": \""6%\""}",159839,0,"""Asia""" +2023-04-08,61749,3841,"[\""Tablet\"", \""Phone\""]",3031.0,{},205873,0,"""South America""" +2023-04-07,61750,5980,"[\""Headphones\""]",4065.52,{},250345,1,"""South America""" +2023-12-04,61751,1132,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",559.41,"{\""promo\"": \""23%\""}",25323,0,"""Europe""" +2023-03-02,61752,3707,"[\""Keyboard\"", \""Headphones\""]",1822.93,"{\"": \""22%\""}",51352,0,"""Europe""" +2024-07-28,61753,8477,"[\""Headphones\"", \""Charger\""]",2945.26,"{\""loyalty\"": \""20%\""}",117414,1,"""Africa""" +2024-01-31,61754,5797,"[\""Keyboard\""]",1303.56,{},17502,1,"""Asia""" +2024-05-15,61755,188,"[\""Phone\"", \""Tablet\""]",3721.02,{},137129,1,"""South America""" +2023-11-28,61756,941,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3520.85,"{\""promo\"": \""5%\""}",91637,0,"""Europe""" +2023-12-20,61757,908,"[\""Monitor\"", \""Charger\""]",1221.3,"{\""loyalty\"": \""30%\""}",133899,1,"""Africa""" +2024-03-08,61758,7316,"[\""Laptop\""]",707.67,{},13608,1,"""North America""" +2024-01-16,61759,2037,"[\""Charger\"", \""Phone\""]",1490.3,{},192061,1,"""Africa""" +2023-04-11,61760,7042,"[\""Charger\"", \""Monitor\""]",4219.43,"{\""promo\"": \""25%\""}",154588,0,"""South America""" +2024-11-06,61761,8991,"[\""Phone\""]",830.85,{},40395,0,"""Africa""" +2024-11-19,61762,6310,"[\""Headphones\"", \""Charger\""]",1858.31,{},197591,0,"""North America""" +2023-12-21,61763,5677,"[\""Charger\""]",2300.27,"{\""seasonal\"": \""27%\""}",114249,0,"""Europe""" +2023-07-06,61764,8690,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4044.51,{},212090,1,"""Africa""" +2024-05-02,61765,4770,"[\""Charger\""]",2341.38,"{\"": \""25%\""}",142520,0,"""South America""" +2024-07-11,61766,1351,"[\""Tablet\"", \""Keyboard\""]",4192.08,{},36498,1,"""Asia""" +2024-04-17,61767,5908,"[\""Phone\"", \""Laptop\""]",1886.82,"{\"": \""16%\""}",251329,1,"""Africa""" +2023-11-25,61768,9210,"[\""Tablet\""]",1038.85,"{\""loyalty\"": \""18%\""}",268820,0,"""South America""" +2024-04-27,61769,3459,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1514.85,{},224011,0,"""Europe""" +2024-03-20,61770,375,"[\""Wireless Mouse\"", \""Phone\""]",2296.4,{},275793,0,"""Africa""" +2024-07-19,61771,4886,"[\""Phone\""]",2235.03,{},147357,0,"""Asia""" +2024-01-03,61772,4431,"[\""Keyboard\"", \""Charger\""]",4031.2,{},212152,1,"""Africa""" +2023-12-28,61773,6904,"[\""Phone\""]",283.47,{},91059,0,"""Africa""" +2024-01-27,61774,4051,"[\""Wireless Mouse\"", \""Headphones\""]",2721.59,"{\""promo\"": \""24%\""}",36633,1,"""Asia""" +2023-03-11,61775,8768,"[\""Tablet\"", \""Phone\""]",3155.09,"{\""seasonal\"": \""15%\""}",80393,0,"""Asia""" +2024-12-03,61776,7135,"[\""Headphones\""]",3515.31,{},223489,1,"""North America""" +2023-10-23,61777,1316,"[\""Phone\"", \""Laptop\""]",4750.32,{},216741,1,"""Africa""" +2023-05-30,61778,3256,"[\""Phone\""]",447.57,"{\"": \""26%\""}",16233,1,"""Africa""" +2024-05-21,61779,2560,"[\""Tablet\""]",4036.52,"{\""seasonal\"": \""18%\""}",165209,1,"""North America""" +2024-10-22,61780,2566,"[\""Charger\"", \""Keyboard\""]",3384.36,"{\""promo\"": \""10%\""}",39924,1,"""Asia""" +2024-11-29,61781,1734,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2637.04,"{\""loyalty\"": \""5%\""}",40945,0,"""South America""" +2024-10-11,61782,4316,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1360.23,{},39161,0,"""South America""" +2024-11-25,61783,681,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",4162.74,"{\"": \""17%\""}",180401,1,"""South America""" +2024-01-02,61784,1784,"[\""Headphones\"", \""Charger\""]",343.95,{},92895,1,"""Asia""" +2024-05-14,61785,4035,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1557.38,"{\""loyalty\"": \""22%\""}",22668,0,"""North America""" +2023-10-09,61786,8456,"[\""Laptop\"", \""Monitor\""]",1045.22,"{\""seasonal\"": \""8%\""}",293910,0,"""Africa""" +2023-05-02,61787,8673,"[\""Charger\""]",2751.74,{},88575,1,"""Asia""" +2024-07-15,61788,6735,"[\""Wireless Mouse\""]",3699.56,"{\""seasonal\"": \""25%\""}",99889,0,"""North America""" +2024-09-24,61789,5408,"[\""Headphones\"", \""Phone\""]",1799.98,"{\""loyalty\"": \""14%\""}",68778,1,"""South America""" +2024-10-05,61790,5369,"[\""Keyboard\"", \""Phone\""]",318.54,{},3741,0,"""North America""" +2023-10-12,61791,4697,"[\""Laptop\""]",3105.03,"{\""promo\"": \""30%\""}",128957,1,"""North America""" +2023-04-17,61792,110,"[\""Charger\"", \""Headphones\""]",1136.76,"{\""seasonal\"": \""26%\""}",60243,1,"""Africa""" +2024-09-16,61793,6371,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1791.65,{},189362,1,"""Africa""" +2024-10-06,61794,8973,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3046.73,{},181739,1,"""Europe""" +2024-07-06,61795,5951,"[\""Charger\""]",2203.17,{},267705,0,"""Africa""" +2023-10-07,61796,9867,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",358.55,"{\""seasonal\"": \""27%\""}",29910,1,"""Asia""" +2024-12-06,61797,1840,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1549.7,"{\"": \""24%\""}",109680,0,"""Europe""" +2024-10-30,61798,1423,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1024.19,"{\""loyalty\"": \""17%\""}",214863,1,"""Europe""" +2024-01-29,61799,532,"[\""Phone\"", \""Keyboard\""]",1482.76,"{\"": \""25%\""}",170570,0,"""Asia""" +2024-01-26,61800,6380,"[\""Charger\"", \""Laptop\""]",4359.13,"{\"": \""15%\""}",203807,1,"""Africa""" +2023-03-02,61801,10000,"[\""Keyboard\"", \""Monitor\""]",3854.32,{},239721,0,"""North America""" +2023-09-24,61802,5903,"[\""Tablet\"", \""Charger\""]",4547.29,"{\""seasonal\"": \""8%\""}",136003,0,"""Asia""" +2024-07-12,61803,995,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2136.38,"{\"": \""8%\""}",84038,1,"""South America""" +2024-03-01,61804,9759,"[\""Laptop\""]",3094.75,{},166228,0,"""North America""" +2024-10-24,61805,8500,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2783.25,"{\""seasonal\"": \""11%\""}",244699,1,"""Asia""" +2024-04-13,61806,9898,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2984.9,"{\""seasonal\"": \""10%\""}",248943,1,"""North America""" +2023-12-06,61807,7725,"[\""Laptop\""]",3311.78,{},125906,0,"""South America""" +2024-04-21,61808,1699,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3945.72,{},85926,0,"""North America""" +2023-06-29,61809,1042,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",999.39,{},234336,0,"""Africa""" +2024-04-07,61810,2681,"[\""Wireless Mouse\""]",1594.85,"{\""loyalty\"": \""14%\""}",31728,0,"""Africa""" +2023-05-08,61811,3458,"[\""Tablet\""]",763.2,"{\""promo\"": \""16%\""}",224652,0,"""North America""" +2024-09-09,61812,4051,"[\""Tablet\"", \""Headphones\""]",1362.23,"{\""promo\"": \""8%\""}",297791,1,"""South America""" +2023-05-13,61813,3168,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1198.52,{},75861,0,"""North America""" +2024-05-19,61814,1531,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",558.09,{},238506,1,"""South America""" +2024-11-17,61815,5929,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4851.77,{},166184,1,"""South America""" +2024-12-14,61816,6122,"[\""Headphones\""]",4635.91,{},132491,1,"""North America""" +2023-06-30,61817,7971,"[\""Phone\"", \""Laptop\""]",1154.52,{},105447,1,"""Africa""" +2024-02-04,61818,7575,"[\""Phone\""]",1564.29,{},152192,0,"""South America""" +2024-04-10,61819,2676,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",795.26,{},230146,0,"""South America""" +2023-04-16,61820,5577,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3082.25,"{\""loyalty\"": \""20%\""}",86294,1,"""Africa""" +2024-07-06,61821,2060,"[\""Headphones\"", \""Charger\""]",4485.22,{},296583,0,"""Europe""" +2023-02-03,61822,7330,"[\""Wireless Mouse\""]",2117.95,{},211908,1,"""Asia""" +2023-07-22,61823,9378,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",430.98,{},251789,1,"""Europe""" +2023-01-22,61824,3471,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2140.98,{},101098,0,"""Africa""" +2023-12-21,61825,8660,"[\""Wireless Mouse\""]",2893.08,{},192174,0,"""South America""" +2023-06-07,61826,5518,"[\""Monitor\"", \""Charger\""]",1266.76,"{\""seasonal\"": \""22%\""}",240234,0,"""Africa""" +2023-12-28,61827,5158,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4555.74,{},44914,1,"""South America""" +2024-01-03,61828,3883,"[\""Keyboard\""]",3399.14,"{\"": \""27%\""}",185987,1,"""North America""" +2023-11-20,61829,247,"[\""Headphones\""]",4077.04,{},47053,0,"""South America""" +2024-05-18,61830,2929,"[\""Wireless Mouse\"", \""Tablet\""]",1092.37,"{\""loyalty\"": \""14%\""}",194809,1,"""South America""" +2024-05-21,61831,1212,"[\""Monitor\""]",1385.02,{},90856,1,"""Africa""" +2024-04-06,61832,5215,"[\""Monitor\""]",2286.63,"{\""promo\"": \""12%\""}",26310,0,"""Africa""" +2024-06-07,61833,649,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1599.76,"{\"": \""26%\""}",12947,1,"""Europe""" +2023-10-21,61834,4100,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4656.35,"{\"": \""22%\""}",291442,0,"""Asia""" +2023-12-18,61835,2145,"[\""Phone\"", \""Wireless Mouse\""]",576.15,"{\"": \""30%\""}",242612,0,"""Africa""" +2024-08-25,61836,5624,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",344.84,{},105122,0,"""South America""" +2023-05-03,61837,2042,"[\""Keyboard\"", \""Monitor\""]",435.14,{},225005,0,"""Africa""" +2024-06-20,61838,7924,"[\""Phone\"", \""Headphones\""]",2927.33,{},269138,1,"""North America""" +2024-11-21,61839,5008,"[\""Tablet\"", \""Charger\""]",1649.0,"{\""loyalty\"": \""10%\""}",26802,0,"""Africa""" +2024-04-10,61840,8546,"[\""Headphones\""]",921.99,"{\"": \""5%\""}",206700,0,"""Asia""" +2023-09-15,61841,2009,"[\""Phone\"", \""Laptop\""]",4600.64,{},293402,1,"""Asia""" +2023-06-23,61842,7059,"[\""Monitor\"", \""Headphones\""]",4953.57,{},132247,1,"""Europe""" +2024-05-30,61843,8369,"[\""Keyboard\""]",456.43,"{\""promo\"": \""12%\""}",250961,0,"""Europe""" +2024-01-01,61844,4015,"[\""Wireless Mouse\"", \""Phone\""]",2042.61,"{\""loyalty\"": \""29%\""}",2973,0,"""North America""" +2023-11-21,61845,7314,"[\""Wireless Mouse\"", \""Charger\""]",4399.01,{},139009,1,"""Africa""" +2024-11-17,61846,551,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3502.8,{},51300,0,"""South America""" +2023-11-08,61847,5395,"[\""Phone\"", \""Tablet\""]",3517.77,{},138597,1,"""Europe""" +2023-08-20,61848,138,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4940.85,{},284715,1,"""Asia""" +2023-03-28,61849,3827,"[\""Laptop\"", \""Wireless Mouse\""]",3774.59,{},81133,0,"""Asia""" +2023-07-02,61850,6344,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2535.62,{},49396,1,"""South America""" +2023-10-20,61851,3780,"[\""Phone\"", \""Keyboard\""]",4223.99,{},94837,0,"""North America""" +2023-06-15,61852,200,"[\""Tablet\"", \""Headphones\""]",1127.82,{},238598,0,"""North America""" +2024-11-19,61853,8177,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3768.04,{},215544,0,"""South America""" +2023-12-14,61854,9869,"[\""Phone\""]",204.85,{},38440,1,"""North America""" +2023-11-04,61855,466,"[\""Charger\"", \""Monitor\""]",3836.76,{},113739,1,"""North America""" +2023-09-14,61856,170,"[\""Phone\"", \""Monitor\""]",4466.81,{},125335,1,"""South America""" +2023-07-20,61857,9766,"[\""Headphones\"", \""Phone\""]",1843.17,{},281865,1,"""South America""" +2024-10-13,61858,6100,"[\""Headphones\"", \""Laptop\""]",889.18,{},257812,1,"""Europe""" +2024-07-18,61859,9460,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4145.39,"{\""loyalty\"": \""28%\""}",268902,0,"""Asia""" +2023-12-30,61860,9004,"[\""Keyboard\""]",4210.23,"{\"": \""17%\""}",239337,1,"""Asia""" +2023-10-29,61861,330,"[\""Tablet\"", \""Monitor\""]",3450.93,"{\"": \""13%\""}",75277,1,"""North America""" +2023-10-30,61862,609,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2183.58,{},107396,0,"""South America""" +2023-09-07,61863,6294,"[\""Laptop\""]",856.5,"{\""loyalty\"": \""22%\""}",178548,0,"""South America""" +2024-12-05,61864,9869,"[\""Keyboard\"", \""Phone\""]",4971.1,{},269960,0,"""Africa""" +2024-11-12,61865,9923,"[\""Phone\""]",932.91,{},173180,0,"""South America""" +2023-08-17,61866,9220,"[\""Tablet\""]",1654.52,"{\""loyalty\"": \""27%\""}",200532,0,"""Asia""" +2024-11-29,61867,1721,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3520.19,{},294831,0,"""Africa""" +2023-11-30,61868,4196,"[\""Headphones\""]",1846.27,"{\""seasonal\"": \""7%\""}",146254,0,"""North America""" +2023-10-22,61869,2218,"[\""Monitor\"", \""Charger\""]",135.44,{},133480,0,"""North America""" +2023-05-03,61870,5616,"[\""Monitor\""]",3882.11,"{\""seasonal\"": \""10%\""}",255261,1,"""Asia""" +2024-08-01,61871,4841,"[\""Tablet\"", \""Monitor\""]",2663.45,{},31851,1,"""North America""" +2023-10-02,61872,5740,"[\""Laptop\"", \""Charger\""]",1562.44,"{\""promo\"": \""17%\""}",166059,0,"""North America""" +2023-06-10,61873,9435,"[\""Keyboard\""]",2274.95,"{\"": \""11%\""}",170514,0,"""North America""" +2024-12-16,61874,3930,"[\""Tablet\""]",2746.41,{},7295,0,"""North America""" +2024-12-02,61875,1717,"[\""Keyboard\"", \""Headphones\""]",3901.15,{},102904,0,"""North America""" +2024-07-25,61876,8136,"[\""Wireless Mouse\""]",672.79,{},18300,1,"""Europe""" +2024-10-16,61877,9755,"[\""Keyboard\"", \""Charger\""]",3893.17,"{\""loyalty\"": \""11%\""}",96431,1,"""Europe""" +2023-12-27,61878,3458,"[\""Laptop\"", \""Monitor\""]",3479.29,"{\""loyalty\"": \""11%\""}",98035,0,"""North America""" +2024-10-11,61879,5224,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1664.99,"{\""loyalty\"": \""24%\""}",98799,1,"""Asia""" +2023-02-15,61880,8751,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",580.08,"{\""promo\"": \""17%\""}",249569,0,"""Asia""" +2023-09-13,61881,9012,"[\""Headphones\"", \""Tablet\""]",2426.82,"{\""loyalty\"": \""7%\""}",70377,0,"""Asia""" +2023-03-25,61882,738,"[\""Tablet\"", \""Wireless Mouse\""]",4936.73,"{\"": \""23%\""}",213514,0,"""North America""" +2023-02-13,61883,1524,"[\""Monitor\"", \""Headphones\""]",3552.91,{},121529,0,"""Africa""" +2024-07-02,61884,3708,"[\""Laptop\""]",3607.09,{},270982,0,"""Asia""" +2023-07-06,61885,9939,"[\""Monitor\"", \""Wireless Mouse\""]",868.22,{},272129,1,"""Asia""" +2023-11-03,61886,1181,"[\""Wireless Mouse\"", \""Tablet\""]",1965.08,"{\""seasonal\"": \""5%\""}",183247,1,"""Asia""" +2024-03-03,61887,2775,"[\""Wireless Mouse\""]",1569.63,"{\""promo\"": \""5%\""}",14135,0,"""Asia""" +2024-05-27,61888,4780,"[\""Wireless Mouse\"", \""Laptop\""]",3599.14,{},18916,1,"""South America""" +2023-06-25,61889,1049,"[\""Headphones\""]",909.18,{},166782,0,"""Asia""" +2024-07-07,61890,5244,"[\""Monitor\"", \""Tablet\""]",3059.89,{},236825,0,"""North America""" +2023-11-29,61891,2897,"[\""Tablet\"", \""Phone\""]",284.77,"{\""promo\"": \""12%\""}",259277,1,"""South America""" +2024-10-30,61892,6251,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1368.99,{},19017,1,"""Europe""" +2024-03-20,61893,9863,"[\""Wireless Mouse\""]",4991.9,"{\"": \""11%\""}",17353,1,"""Africa""" +2023-03-06,61894,1561,"[\""Laptop\"", \""Keyboard\""]",4813.02,{},246915,0,"""Africa""" +2023-05-16,61895,4349,"[\""Tablet\""]",2040.31,"{\"": \""7%\""}",181341,0,"""South America""" +2024-08-09,61896,8710,"[\""Wireless Mouse\"", \""Headphones\""]",2593.99,{},231110,1,"""North America""" +2024-05-10,61897,2949,"[\""Laptop\"", \""Charger\""]",2141.95,"{\""seasonal\"": \""22%\""}",253508,1,"""Africa""" +2023-01-04,61898,9675,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1494.48,"{\""seasonal\"": \""12%\""}",288357,0,"""South America""" +2023-11-27,61899,3183,"[\""Laptop\"", \""Tablet\""]",1333.68,{},154806,0,"""South America""" +2023-09-09,61900,4134,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4660.41,"{\""seasonal\"": \""25%\""}",123797,0,"""North America""" +2024-02-19,61901,7659,"[\""Charger\"", \""Laptop\""]",3503.76,{},282816,1,"""Africa""" +2023-09-17,61902,6944,"[\""Laptop\"", \""Charger\""]",243.61,{},211219,1,"""Asia""" +2023-02-25,61903,5060,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",555.61,"{\"": \""26%\""}",109205,1,"""Europe""" +2023-11-23,61904,6483,"[\""Monitor\"", \""Wireless Mouse\""]",4749.48,"{\""loyalty\"": \""30%\""}",60617,1,"""Africa""" +2023-10-21,61905,9237,"[\""Charger\""]",3764.77,"{\""promo\"": \""8%\""}",121339,1,"""Asia""" +2023-06-04,61906,5644,"[\""Charger\"", \""Monitor\""]",1787.65,"{\"": \""27%\""}",226865,1,"""North America""" +2024-09-06,61907,8976,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4592.4,"{\"": \""14%\""}",81746,1,"""Europe""" +2024-04-12,61908,1312,"[\""Laptop\"", \""Wireless Mouse\""]",1816.06,{},288897,0,"""Africa""" +2024-10-06,61909,1168,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4705.15,{},236005,1,"""Asia""" +2024-02-10,61910,2761,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3920.53,{},87087,0,"""Africa""" +2023-07-24,61911,7626,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2677.69,"{\""loyalty\"": \""25%\""}",119082,1,"""Africa""" +2023-08-23,61912,2526,"[\""Monitor\"", \""Charger\""]",4705.08,{},88014,0,"""North America""" +2023-04-21,61913,646,"[\""Monitor\""]",4008.68,{},37540,1,"""South America""" +2023-12-02,61914,5301,"[\""Laptop\""]",3010.34,{},225719,0,"""Asia""" +2024-10-05,61915,5486,"[\""Laptop\"", \""Wireless Mouse\""]",4540.66,{},2112,0,"""South America""" +2023-01-22,61916,2868,"[\""Monitor\"", \""Phone\""]",1636.81,"{\"": \""10%\""}",54485,1,"""South America""" +2023-05-07,61917,9301,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2783.44,"{\""promo\"": \""12%\""}",74484,0,"""North America""" +2024-01-14,61918,1987,"[\""Laptop\"", \""Phone\""]",4090.56,{},248465,0,"""South America""" +2023-02-03,61919,3444,"[\""Phone\"", \""Monitor\""]",1161.55,{},188110,1,"""North America""" +2024-09-03,61920,665,"[\""Keyboard\"", \""Laptop\""]",1257.5,{},65892,1,"""Asia""" +2024-06-05,61921,5065,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4888.62,"{\""seasonal\"": \""8%\""}",28466,0,"""Africa""" +2023-03-10,61922,2290,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4820.0,{},242889,1,"""Europe""" +2023-02-06,61923,7836,"[\""Keyboard\""]",4836.7,"{\""seasonal\"": \""15%\""}",206401,0,"""South America""" +2023-08-19,61924,4350,"[\""Wireless Mouse\""]",3126.23,{},149720,0,"""South America""" +2024-05-08,61925,9820,"[\""Wireless Mouse\"", \""Headphones\""]",2569.4,{},180046,0,"""Asia""" +2024-12-18,61926,2046,"[\""Charger\""]",1943.44,"{\""promo\"": \""21%\""}",95004,1,"""Asia""" +2024-11-19,61927,6463,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1326.51,{},170251,0,"""Europe""" +2024-12-01,61928,6347,"[\""Wireless Mouse\"", \""Keyboard\""]",4782.04,"{\""loyalty\"": \""18%\""}",126938,0,"""Africa""" +2023-03-04,61929,9450,"[\""Charger\"", \""Keyboard\""]",2709.14,"{\""seasonal\"": \""14%\""}",88844,1,"""South America""" +2024-10-24,61930,4937,"[\""Laptop\"", \""Tablet\""]",4412.38,{},199658,1,"""Asia""" +2023-05-20,61931,8184,"[\""Monitor\""]",1940.26,{},195057,1,"""South America""" +2023-08-16,61932,1013,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2396.46,"{\"": \""12%\""}",125757,0,"""Asia""" +2023-08-01,61933,6455,"[\""Phone\"", \""Wireless Mouse\""]",3279.72,{},271396,1,"""Africa""" +2024-05-31,61934,5401,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3782.62,"{\""promo\"": \""18%\""}",297688,1,"""Asia""" +2024-08-04,61935,4526,"[\""Headphones\"", \""Keyboard\""]",2277.14,{},58282,1,"""Europe""" +2024-04-18,61936,1356,"[\""Charger\""]",2508.72,{},40833,1,"""North America""" +2023-04-17,61937,5527,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1747.95,{},239234,1,"""Asia""" +2024-06-01,61938,5333,"[\""Headphones\"", \""Laptop\""]",3455.01,"{\"": \""16%\""}",168748,0,"""South America""" +2024-04-14,61939,9703,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4673.2,"{\""seasonal\"": \""12%\""}",256191,0,"""Asia""" +2023-01-12,61940,7625,"[\""Charger\""]",4699.3,{},67900,0,"""North America""" +2023-04-20,61941,4413,"[\""Tablet\""]",1942.74,{},174253,0,"""North America""" +2024-07-27,61942,2294,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1997.67,{},145727,0,"""Africa""" +2023-12-09,61943,2142,"[\""Headphones\""]",3193.75,"{\"": \""27%\""}",67582,1,"""Asia""" +2023-01-15,61944,1156,"[\""Keyboard\"", \""Phone\""]",4718.29,{},225873,0,"""Asia""" +2023-02-28,61945,4926,"[\""Wireless Mouse\""]",4038.31,"{\""loyalty\"": \""6%\""}",214980,0,"""Africa""" +2024-06-01,61946,8177,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1271.57,"{\""seasonal\"": \""17%\""}",299433,0,"""South America""" +2024-10-11,61947,8073,"[\""Tablet\"", \""Charger\""]",758.34,"{\"": \""18%\""}",144368,1,"""South America""" +2023-02-11,61948,6331,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1404.2,"{\""promo\"": \""27%\""}",245454,1,"""Europe""" +2024-09-03,61949,4807,"[\""Keyboard\"", \""Wireless Mouse\""]",2756.42,{},149444,0,"""Africa""" +2023-10-24,61950,1449,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3889.05,{},223552,0,"""Asia""" +2023-04-03,61951,6355,"[\""Tablet\"", \""Wireless Mouse\""]",4926.85,"{\""loyalty\"": \""5%\""}",173543,1,"""North America""" +2024-02-02,61952,9347,"[\""Tablet\""]",2097.46,{},194587,1,"""North America""" +2023-12-27,61953,3924,"[\""Tablet\""]",3568.36,{},179654,1,"""Europe""" +2024-08-30,61954,9012,"[\""Laptop\""]",1933.73,{},270378,0,"""Asia""" +2023-03-18,61955,5163,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2825.72,{},7582,1,"""Asia""" +2024-10-15,61956,7939,"[\""Headphones\""]",2856.3,"{\""loyalty\"": \""6%\""}",260415,1,"""Africa""" +2024-11-10,61957,2248,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4169.01,"{\"": \""26%\""}",86493,0,"""Asia""" +2024-10-04,61958,3581,"[\""Laptop\""]",4198.41,"{\""promo\"": \""11%\""}",50679,1,"""Africa""" +2024-01-19,61959,1537,"[\""Laptop\""]",4820.58,"{\""seasonal\"": \""24%\""}",273182,0,"""Asia""" +2023-08-24,61960,9531,"[\""Headphones\"", \""Keyboard\""]",448.95,"{\"": \""21%\""}",42180,1,"""North America""" +2024-06-03,61961,4718,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4692.58,{},77565,1,"""South America""" +2023-04-23,61962,9913,"[\""Monitor\""]",4286.31,{},200619,0,"""North America""" +2023-07-08,61963,3791,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1733.49,"{\""promo\"": \""7%\""}",4647,1,"""Africa""" +2023-01-02,61964,6517,"[\""Headphones\"", \""Phone\""]",4076.54,"{\""loyalty\"": \""21%\""}",110154,0,"""Asia""" +2023-05-13,61965,6666,"[\""Wireless Mouse\""]",4895.24,{},255833,1,"""Africa""" +2023-04-09,61966,6107,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4339.14,{},122706,0,"""North America""" +2023-03-11,61967,5395,"[\""Phone\""]",1032.37,{},162300,0,"""Africa""" +2023-01-07,61968,3026,"[\""Headphones\"", \""Laptop\""]",4115.49,{},79460,0,"""South America""" +2023-09-10,61969,4636,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4568.79,{},34920,1,"""Europe""" +2024-10-22,61970,5775,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",737.76,"{\"": \""11%\""}",40583,0,"""Asia""" +2024-12-25,61971,2463,"[\""Keyboard\"", \""Laptop\""]",3118.44,"{\"": \""8%\""}",93478,1,"""Asia""" +2023-07-14,61972,4590,"[\""Phone\"", \""Charger\""]",782.59,"{\""seasonal\"": \""18%\""}",53696,0,"""Europe""" +2024-02-13,61973,8083,"[\""Monitor\""]",3174.95,{},130635,0,"""South America""" +2023-09-05,61974,3427,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1076.75,{},273957,1,"""North America""" +2024-11-30,61975,7431,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4281.36,"{\""loyalty\"": \""23%\""}",67513,0,"""North America""" +2024-01-20,61976,7691,"[\""Laptop\""]",1550.74,{},103022,0,"""Europe""" +2023-07-04,61977,6470,"[\""Tablet\""]",1661.6,"{\""seasonal\"": \""12%\""}",61171,1,"""Asia""" +2023-12-30,61978,5815,"[\""Headphones\""]",3118.86,"{\""seasonal\"": \""16%\""}",241471,1,"""North America""" +2024-03-07,61979,1208,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",463.76,"{\""seasonal\"": \""11%\""}",277221,0,"""Africa""" +2023-06-23,61980,7399,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2795.19,{},129519,0,"""North America""" +2023-11-20,61981,3884,"[\""Laptop\""]",4511.61,{},225069,0,"""Asia""" +2024-06-20,61982,1249,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",443.74,{},135967,1,"""Asia""" +2024-09-16,61983,3416,"[\""Tablet\""]",2952.25,"{\""seasonal\"": \""25%\""}",20949,1,"""Europe""" +2023-04-25,61984,7148,"[\""Phone\"", \""Charger\""]",164.63,{},135286,1,"""Africa""" +2024-04-30,61985,4280,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2522.6,{},261041,1,"""Asia""" +2023-12-11,61986,2792,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3576.22,"{\"": \""27%\""}",257422,1,"""Africa""" +2024-08-12,61987,6801,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2433.81,"{\"": \""8%\""}",16228,1,"""South America""" +2024-12-18,61988,1580,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3577.71,{},138673,0,"""North America""" +2023-07-05,61989,3126,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3345.17,{},88334,0,"""Asia""" +2024-10-12,61990,8346,"[\""Tablet\"", \""Monitor\""]",2714.27,{},149342,1,"""North America""" +2024-11-14,61991,5529,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1916.51,"{\""loyalty\"": \""22%\""}",90687,1,"""North America""" +2023-05-05,61992,5700,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4149.9,{},206291,0,"""Asia""" +2023-05-26,61993,6104,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4381.99,"{\"": \""30%\""}",147414,1,"""Africa""" +2024-07-11,61994,7759,"[\""Wireless Mouse\"", \""Phone\""]",4367.9,"{\""loyalty\"": \""13%\""}",199294,0,"""Europe""" +2023-01-27,61995,5846,"[\""Tablet\""]",132.14,{},69729,1,"""Asia""" +2023-09-18,61996,8571,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3880.95,"{\""seasonal\"": \""27%\""}",30902,0,"""Asia""" +2024-04-28,61997,586,"[\""Laptop\"", \""Charger\""]",1958.87,"{\""loyalty\"": \""12%\""}",176355,1,"""Africa""" +2023-05-26,61998,4798,"[\""Phone\"", \""Tablet\""]",1006.27,"{\""promo\"": \""18%\""}",281294,1,"""North America""" +2023-06-12,61999,565,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3028.65,{},55552,1,"""Africa""" +2024-10-31,62000,2961,"[\""Headphones\""]",606.26,"{\""promo\"": \""9%\""}",110822,1,"""South America""" +2024-08-12,62001,6798,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3675.75,{},271363,0,"""Asia""" +2024-09-29,62002,3187,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1655.99,{},270208,1,"""South America""" +2024-10-13,62003,3194,"[\""Headphones\"", \""Phone\""]",4221.89,{},244547,0,"""Europe""" +2023-10-20,62004,6900,"[\""Headphones\"", \""Keyboard\""]",1804.5,{},259841,0,"""Africa""" +2023-11-08,62005,4017,"[\""Wireless Mouse\""]",215.83,{},174968,1,"""South America""" +2024-11-17,62006,1011,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1618.33,{},234514,0,"""South America""" +2023-06-19,62007,3770,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4098.64,{},190109,0,"""Asia""" +2023-07-24,62008,2599,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",330.92,"{\"": \""8%\""}",96535,1,"""Europe""" +2024-11-07,62009,819,"[\""Tablet\"", \""Headphones\""]",1898.8,{},262431,1,"""Europe""" +2023-06-29,62010,929,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4262.22,{},95853,0,"""Asia""" +2023-01-09,62011,1827,"[\""Laptop\""]",2120.3,"{\""seasonal\"": \""26%\""}",292372,1,"""Africa""" +2024-04-07,62012,3025,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2882.86,"{\""promo\"": \""5%\""}",89482,1,"""South America""" +2024-07-19,62013,483,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1061.79,"{\""loyalty\"": \""11%\""}",263307,1,"""North America""" +2023-08-23,62014,5599,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1573.23,{},14522,1,"""Africa""" +2024-09-11,62015,9444,"[\""Laptop\""]",829.66,"{\"": \""18%\""}",235124,0,"""Africa""" +2023-06-01,62016,3395,"[\""Wireless Mouse\"", \""Tablet\""]",4364.37,"{\""loyalty\"": \""30%\""}",282242,1,"""Africa""" +2023-11-27,62017,8261,"[\""Wireless Mouse\""]",2980.9,"{\""promo\"": \""26%\""}",261111,0,"""Asia""" +2024-07-16,62018,5340,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3859.58,"{\"": \""20%\""}",105345,1,"""South America""" +2024-10-30,62019,2413,"[\""Headphones\""]",1343.5,{},115254,1,"""North America""" +2023-10-31,62020,4098,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4167.7,{},216821,1,"""Asia""" +2023-09-23,62021,6126,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3452.38,"{\""seasonal\"": \""27%\""}",144610,0,"""South America""" +2024-09-25,62022,102,"[\""Phone\""]",1292.91,{},277498,0,"""Asia""" +2023-08-07,62023,7268,"[\""Headphones\""]",4756.48,{},246751,0,"""North America""" +2023-07-01,62024,2356,"[\""Keyboard\""]",3335.01,{},1033,0,"""Europe""" +2023-01-20,62025,7021,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2500.44,"{\""loyalty\"": \""23%\""}",88479,1,"""Africa""" +2023-08-27,62026,8983,"[\""Laptop\""]",1155.55,{},147817,1,"""Africa""" +2024-10-22,62027,8294,"[\""Wireless Mouse\""]",152.97,"{\""loyalty\"": \""20%\""}",234321,0,"""Europe""" +2024-08-23,62028,9351,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2461.61,"{\"": \""16%\""}",230815,1,"""Africa""" +2024-04-24,62029,3299,"[\""Keyboard\""]",846.56,{},139796,1,"""Asia""" +2023-10-31,62030,4712,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4784.43,"{\""loyalty\"": \""29%\""}",222299,1,"""South America""" +2024-09-18,62031,187,"[\""Keyboard\""]",4422.0,{},271739,1,"""Africa""" +2023-12-01,62032,1333,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4106.17,"{\"": \""10%\""}",290187,1,"""Africa""" +2023-02-07,62033,9444,"[\""Headphones\"", \""Monitor\""]",4931.07,"{\""seasonal\"": \""17%\""}",27695,1,"""Europe""" +2023-11-24,62034,9138,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",115.61,"{\""loyalty\"": \""11%\""}",288617,1,"""Europe""" +2023-11-16,62035,2077,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3305.42,"{\""loyalty\"": \""25%\""}",105545,1,"""South America""" +2024-05-06,62036,9167,"[\""Charger\"", \""Headphones\""]",2344.41,"{\""seasonal\"": \""24%\""}",284093,0,"""Europe""" +2023-02-18,62037,6584,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3660.75,"{\"": \""11%\""}",147024,0,"""North America""" +2024-02-01,62038,7151,"[\""Monitor\""]",1782.31,{},28910,0,"""North America""" +2024-07-10,62039,3761,"[\""Headphones\"", \""Keyboard\""]",3873.08,"{\""promo\"": \""5%\""}",257833,1,"""Europe""" +2023-05-31,62040,2018,"[\""Keyboard\""]",1403.73,"{\""seasonal\"": \""8%\""}",243734,0,"""North America""" +2024-11-27,62041,6219,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3172.51,"{\""loyalty\"": \""8%\""}",112525,1,"""Europe""" +2024-04-12,62042,7304,"[\""Tablet\"", \""Monitor\""]",2501.61,"{\"": \""29%\""}",123878,1,"""Asia""" +2024-09-13,62043,7471,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1908.76,{},88025,1,"""South America""" +2024-09-03,62044,4325,"[\""Wireless Mouse\"", \""Laptop\""]",3203.77,{},46632,1,"""South America""" +2023-08-26,62045,5521,"[\""Charger\"", \""Wireless Mouse\""]",4751.69,"{\""seasonal\"": \""24%\""}",270527,1,"""Africa""" +2023-11-10,62046,849,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3361.39,{},97077,1,"""North America""" +2024-12-30,62047,4621,"[\""Phone\"", \""Keyboard\""]",3340.84,{},220802,0,"""Africa""" +2024-07-23,62048,6535,"[\""Headphones\""]",4270.04,"{\""loyalty\"": \""16%\""}",86982,0,"""South America""" +2023-02-26,62049,4303,"[\""Laptop\"", \""Headphones\""]",4118.83,"{\""seasonal\"": \""22%\""}",117615,0,"""Africa""" +2024-01-31,62050,2222,"[\""Monitor\"", \""Tablet\""]",766.8,"{\"": \""20%\""}",191998,1,"""South America""" +2023-05-15,62051,3091,"[\""Headphones\"", \""Charger\""]",2090.04,"{\"": \""13%\""}",5747,1,"""Asia""" +2024-06-15,62052,4608,"[\""Monitor\""]",3093.77,"{\""loyalty\"": \""25%\""}",101521,0,"""Asia""" +2023-07-26,62053,4672,"[\""Phone\""]",4949.4,"{\""loyalty\"": \""14%\""}",28920,1,"""Europe""" +2023-07-21,62054,8560,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4898.98,{},1655,1,"""Europe""" +2024-02-09,62055,738,"[\""Tablet\""]",3338.9,"{\""seasonal\"": \""24%\""}",220589,0,"""South America""" +2023-08-16,62056,5043,"[\""Charger\""]",3328.25,{},64363,0,"""Asia""" +2024-06-02,62057,5752,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",454.63,{},195140,1,"""North America""" +2024-02-19,62058,6609,"[\""Wireless Mouse\"", \""Laptop\""]",875.04,{},17410,1,"""Asia""" +2024-08-21,62059,8046,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",403.35,"{\""promo\"": \""13%\""}",224986,0,"""Africa""" +2024-03-13,62060,6163,"[\""Wireless Mouse\"", \""Phone\""]",3244.65,{},140411,0,"""South America""" +2023-06-02,62061,5362,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3268.42,{},67517,1,"""Africa""" +2023-07-26,62062,5151,"[\""Tablet\""]",1887.07,{},12496,0,"""Africa""" +2023-07-24,62063,5835,"[\""Charger\"", \""Laptop\""]",880.63,{},256163,1,"""South America""" +2023-04-14,62064,544,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2033.88,"{\""loyalty\"": \""24%\""}",142907,0,"""North America""" +2023-11-05,62065,2724,"[\""Keyboard\""]",3721.29,"{\"": \""28%\""}",275991,1,"""Africa""" +2023-06-18,62066,3014,"[\""Phone\"", \""Monitor\""]",4086.63,{},24322,0,"""Asia""" +2023-05-26,62067,4055,"[\""Keyboard\"", \""Phone\""]",3465.93,{},249593,0,"""Africa""" +2023-02-25,62068,3770,"[\""Keyboard\""]",4790.28,"{\""seasonal\"": \""23%\""}",135171,1,"""Asia""" +2023-02-27,62069,3921,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4256.97,{},170069,0,"""Asia""" +2023-12-08,62070,9498,"[\""Wireless Mouse\"", \""Phone\""]",3321.22,{},158523,1,"""Europe""" +2024-07-28,62071,7733,"[\""Monitor\""]",3438.03,"{\""loyalty\"": \""29%\""}",238857,1,"""North America""" +2023-06-15,62072,1616,"[\""Headphones\"", \""Keyboard\""]",4147.03,{},75541,0,"""Asia""" +2024-02-24,62073,8187,"[\""Wireless Mouse\"", \""Tablet\""]",4278.23,"{\""seasonal\"": \""18%\""}",27152,1,"""Asia""" +2023-08-13,62074,8231,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",241.65,{},179443,1,"""North America""" +2023-01-06,62075,6499,"[\""Phone\""]",2457.56,{},87264,1,"""Asia""" +2023-12-10,62076,1473,"[\""Monitor\"", \""Charger\""]",4123.62,{},95158,1,"""Africa""" +2023-02-06,62077,9646,"[\""Monitor\""]",4910.89,"{\""promo\"": \""23%\""}",61757,1,"""Asia""" +2023-01-04,62078,7476,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4371.64,{},132972,0,"""North America""" +2024-05-03,62079,6131,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2021.22,{},101129,1,"""Europe""" +2024-09-23,62080,3451,"[\""Tablet\""]",2518.76,{},7508,1,"""North America""" +2024-07-23,62081,9531,"[\""Tablet\"", \""Laptop\""]",2930.74,{},92295,0,"""Asia""" +2024-08-20,62082,3312,"[\""Phone\"", \""Tablet\""]",1452.85,"{\""seasonal\"": \""12%\""}",144788,1,"""North America""" +2023-04-25,62083,4565,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2847.93,"{\""promo\"": \""7%\""}",232392,1,"""Asia""" +2024-12-25,62084,6332,"[\""Phone\"", \""Headphones\""]",1203.39,{},164015,0,"""South America""" +2023-07-21,62085,7955,"[\""Charger\"", \""Wireless Mouse\""]",4864.57,"{\"": \""28%\""}",207076,0,"""Europe""" +2024-07-26,62086,5704,"[\""Phone\""]",1192.54,{},67847,1,"""North America""" +2023-07-11,62087,150,"[\""Laptop\""]",2328.83,{},3685,0,"""Europe""" +2023-06-07,62088,7695,"[\""Laptop\"", \""Headphones\""]",1784.16,"{\""loyalty\"": \""29%\""}",14128,0,"""Asia""" +2023-02-06,62089,2348,"[\""Wireless Mouse\"", \""Tablet\""]",1206.45,"{\""loyalty\"": \""7%\""}",254629,0,"""Europe""" +2023-05-13,62090,7958,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2897.67,"{\""seasonal\"": \""14%\""}",195999,0,"""Europe""" +2024-07-14,62091,6179,"[\""Laptop\"", \""Phone\""]",2364.06,{},210105,0,"""South America""" +2024-04-04,62092,2590,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1492.53,"{\""seasonal\"": \""7%\""}",53694,0,"""Europe""" +2023-12-08,62093,9059,"[\""Laptop\""]",306.42,"{\""loyalty\"": \""15%\""}",196534,1,"""Europe""" +2023-01-26,62094,5635,"[\""Headphones\""]",952.11,{},298616,1,"""Africa""" +2024-11-14,62095,6629,"[\""Tablet\"", \""Headphones\""]",4777.91,{},186805,1,"""Asia""" +2023-09-14,62096,7301,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",659.89,{},274962,1,"""Asia""" +2023-12-06,62097,3350,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4118.94,{},26178,0,"""North America""" +2024-06-24,62098,7850,"[\""Laptop\"", \""Headphones\""]",766.12,"{\""seasonal\"": \""16%\""}",216150,0,"""Asia""" +2023-07-05,62099,75,"[\""Keyboard\""]",3054.21,{},289507,0,"""North America""" +2023-10-20,62100,7882,"[\""Charger\""]",2989.19,{},140608,1,"""Asia""" +2024-03-10,62101,5267,"[\""Monitor\"", \""Wireless Mouse\""]",3754.09,"{\"": \""10%\""}",143551,0,"""Asia""" +2024-03-26,62102,6154,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3496.18,"{\"": \""24%\""}",257870,0,"""North America""" +2023-11-30,62103,7974,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3498.19,"{\""seasonal\"": \""11%\""}",142272,0,"""Europe""" +2024-07-25,62104,7064,"[\""Keyboard\"", \""Headphones\""]",1369.28,{},297808,0,"""North America""" +2023-03-11,62105,4105,"[\""Laptop\""]",784.85,{},174791,0,"""Europe""" +2023-11-03,62106,4259,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3366.94,"{\"": \""8%\""}",130029,0,"""Asia""" +2024-02-22,62107,3030,"[\""Laptop\""]",4212.6,"{\""loyalty\"": \""26%\""}",113676,1,"""South America""" +2023-02-21,62108,404,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1331.39,"{\"": \""30%\""}",176632,1,"""Asia""" +2024-01-09,62109,8877,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1241.75,{},184008,1,"""North America""" +2023-08-07,62110,625,"[\""Headphones\""]",1629.79,"{\""seasonal\"": \""27%\""}",172207,1,"""Asia""" +2023-09-25,62111,2689,"[\""Headphones\""]",2182.36,{},181121,1,"""Europe""" +2024-03-01,62112,4622,"[\""Tablet\""]",4770.16,{},53071,0,"""North America""" +2024-10-16,62113,3449,"[\""Laptop\"", \""Monitor\""]",1983.39,{},62706,0,"""Africa""" +2023-05-11,62114,1932,"[\""Keyboard\""]",4694.73,"{\"": \""19%\""}",136556,1,"""Africa""" +2023-08-23,62115,2137,"[\""Keyboard\""]",498.93,{},81972,0,"""Europe""" +2024-10-25,62116,9805,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3091.18,"{\""loyalty\"": \""24%\""}",3693,1,"""Asia""" +2024-09-06,62117,4051,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3436.63,"{\"": \""21%\""}",273062,1,"""North America""" +2023-04-16,62118,2354,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",893.28,"{\"": \""16%\""}",183247,1,"""Europe""" +2024-11-11,62119,5512,"[\""Phone\"", \""Keyboard\""]",876.2,{},232601,1,"""South America""" +2024-07-18,62120,554,"[\""Laptop\"", \""Phone\""]",1632.99,{},108967,0,"""Asia""" +2023-11-04,62121,4359,"[\""Monitor\"", \""Wireless Mouse\""]",3047.11,{},56857,0,"""Asia""" +2024-11-23,62122,7210,"[\""Phone\""]",2821.52,{},79233,0,"""North America""" +2024-09-13,62123,1356,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",509.08,{},240976,0,"""North America""" +2023-09-11,62124,6972,"[\""Keyboard\"", \""Charger\""]",2774.46,{},260327,0,"""Africa""" +2024-06-28,62125,7903,"[\""Phone\"", \""Headphones\""]",1510.65,{},110456,1,"""Europe""" +2023-09-21,62126,2211,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4040.25,{},140948,1,"""Europe""" +2024-03-25,62127,7373,"[\""Phone\""]",4589.38,{},296087,0,"""Europe""" +2023-09-26,62128,2648,"[\""Tablet\""]",1245.75,{},60241,1,"""Asia""" +2023-08-07,62129,3939,"[\""Headphones\"", \""Wireless Mouse\""]",1941.52,{},90553,0,"""Africa""" +2023-09-05,62130,5867,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4850.57,{},239723,1,"""Europe""" +2024-05-25,62131,2659,"[\""Laptop\"", \""Headphones\""]",3693.61,"{\"": \""13%\""}",257440,0,"""North America""" +2023-12-13,62132,9581,"[\""Laptop\""]",3011.25,{},271571,1,"""Africa""" +2024-04-25,62133,9648,"[\""Charger\""]",3718.95,{},140610,0,"""Africa""" +2023-07-25,62134,8875,"[\""Wireless Mouse\""]",3317.82,{},161076,1,"""South America""" +2024-02-11,62135,3610,"[\""Wireless Mouse\""]",341.43,{},102198,0,"""Africa""" +2024-03-01,62136,517,"[\""Keyboard\"", \""Tablet\""]",4090.68,"{\"": \""5%\""}",17694,1,"""Asia""" +2023-04-25,62137,2933,"[\""Headphones\""]",3931.3,{},219477,1,"""Africa""" +2024-08-26,62138,1528,"[\""Laptop\"", \""Phone\""]",2600.21,"{\"": \""18%\""}",175815,1,"""South America""" +2024-06-27,62139,6539,"[\""Laptop\""]",2480.52,"{\""promo\"": \""26%\""}",267423,1,"""Africa""" +2023-12-09,62140,2110,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2072.82,{},210162,1,"""Europe""" +2024-12-06,62141,3957,"[\""Monitor\""]",2843.65,"{\""loyalty\"": \""5%\""}",189337,1,"""Africa""" +2023-10-06,62142,6601,"[\""Headphones\""]",1745.86,"{\"": \""14%\""}",297205,1,"""North America""" +2024-06-23,62143,3486,"[\""Headphones\""]",3398.39,"{\"": \""23%\""}",141738,0,"""Asia""" +2024-11-20,62144,9594,"[\""Keyboard\""]",1997.56,{},142128,1,"""North America""" +2023-09-25,62145,418,"[\""Tablet\""]",1979.1,"{\""promo\"": \""13%\""}",68978,0,"""Asia""" +2023-02-03,62146,3295,"[\""Keyboard\"", \""Laptop\""]",3526.22,{},160168,0,"""North America""" +2024-07-12,62147,3983,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2122.82,"{\""promo\"": \""22%\""}",295796,1,"""North America""" +2023-11-30,62148,6244,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4980.6,{},221756,1,"""Europe""" +2023-02-24,62149,1087,"[\""Tablet\"", \""Charger\""]",3997.6,"{\""seasonal\"": \""20%\""}",185927,0,"""South America""" +2023-08-06,62150,7264,"[\""Monitor\"", \""Tablet\""]",2808.79,"{\""seasonal\"": \""19%\""}",194242,0,"""Europe""" +2023-12-10,62151,1611,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3982.47,{},275664,0,"""Europe""" +2024-12-25,62152,714,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2102.37,{},48493,1,"""North America""" +2024-05-09,62153,7503,"[\""Phone\""]",4459.23,{},190276,0,"""Europe""" +2024-12-11,62154,4696,"[\""Tablet\""]",4052.12,"{\""promo\"": \""19%\""}",183178,1,"""Europe""" +2023-07-18,62155,8089,"[\""Tablet\""]",750.33,{},231738,1,"""Africa""" +2024-01-07,62156,7403,"[\""Headphones\""]",2110.69,"{\""loyalty\"": \""15%\""}",182756,1,"""Africa""" +2023-08-16,62157,383,"[\""Phone\"", \""Laptop\""]",3718.48,{},285387,0,"""Europe""" +2023-11-04,62158,2679,"[\""Keyboard\""]",3618.29,"{\""seasonal\"": \""23%\""}",233110,1,"""Asia""" +2024-03-02,62159,1674,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4351.9,{},150434,0,"""Asia""" +2024-03-31,62160,1731,"[\""Monitor\"", \""Keyboard\""]",2221.06,{},246257,0,"""South America""" +2023-09-19,62161,862,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1855.19,{},5040,1,"""Africa""" +2024-06-15,62162,5104,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1725.79,"{\"": \""20%\""}",259076,0,"""Asia""" +2024-03-25,62163,1080,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3489.62,"{\"": \""25%\""}",129999,0,"""Asia""" +2024-02-25,62164,5005,"[\""Headphones\""]",4286.66,"{\""seasonal\"": \""17%\""}",235391,0,"""Asia""" +2024-04-11,62165,8566,"[\""Headphones\"", \""Tablet\""]",649.32,"{\""loyalty\"": \""17%\""}",294327,1,"""Europe""" +2023-12-21,62166,8222,"[\""Headphones\"", \""Wireless Mouse\""]",3879.13,"{\""loyalty\"": \""18%\""}",224404,1,"""Africa""" +2024-08-14,62167,5089,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2585.44,"{\""loyalty\"": \""19%\""}",155906,1,"""Europe""" +2024-09-06,62168,8889,"[\""Tablet\"", \""Keyboard\""]",4024.18,"{\"": \""16%\""}",238210,0,"""Europe""" +2023-11-16,62169,603,"[\""Keyboard\""]",1806.08,{},60731,0,"""Africa""" +2023-10-12,62170,3712,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",921.13,{},214754,0,"""Africa""" +2023-12-06,62171,429,"[\""Laptop\""]",3838.76,{},86801,1,"""South America""" +2023-12-02,62172,7479,"[\""Phone\"", \""Laptop\""]",2700.58,{},176057,0,"""Europe""" +2023-12-07,62173,2903,"[\""Headphones\"", \""Keyboard\""]",3551.68,{},5701,0,"""Asia""" +2024-03-21,62174,2801,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3907.34,{},106999,0,"""Africa""" +2023-12-17,62175,8777,"[\""Keyboard\""]",975.91,"{\""loyalty\"": \""13%\""}",30384,0,"""Asia""" +2024-09-14,62176,8802,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3990.85,"{\"": \""12%\""}",292819,1,"""South America""" +2024-12-21,62177,807,"[\""Keyboard\"", \""Wireless Mouse\""]",305.24,"{\"": \""20%\""}",126905,0,"""South America""" +2024-08-04,62178,3611,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2643.28,{},233524,0,"""Africa""" +2024-08-02,62179,338,"[\""Keyboard\""]",644.88,"{\""promo\"": \""9%\""}",28891,1,"""Africa""" +2023-04-08,62180,7425,"[\""Laptop\""]",2850.16,"{\""seasonal\"": \""9%\""}",57944,1,"""Africa""" +2024-07-06,62181,3377,"[\""Wireless Mouse\"", \""Monitor\""]",1370.68,"{\""loyalty\"": \""19%\""}",278680,1,"""North America""" +2023-01-19,62182,3162,"[\""Headphones\"", \""Monitor\""]",2577.38,{},191855,1,"""Asia""" +2023-02-05,62183,8889,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4771.29,"{\""seasonal\"": \""20%\""}",223788,0,"""North America""" +2024-06-15,62184,354,"[\""Charger\""]",107.39,{},200416,0,"""South America""" +2023-03-16,62185,3696,"[\""Monitor\"", \""Keyboard\""]",4643.95,"{\""seasonal\"": \""5%\""}",74891,1,"""Asia""" +2024-12-16,62186,626,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2493.57,"{\""loyalty\"": \""24%\""}",222423,0,"""Europe""" +2023-12-30,62187,6327,"[\""Tablet\""]",1000.79,{},107182,1,"""Asia""" +2024-01-19,62188,1946,"[\""Laptop\""]",4969.84,"{\""loyalty\"": \""24%\""}",286158,0,"""Africa""" +2023-02-25,62189,8470,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3962.3,"{\""seasonal\"": \""26%\""}",17688,1,"""Europe""" +2024-11-21,62190,6027,"[\""Wireless Mouse\""]",1760.38,{},266725,1,"""Africa""" +2024-02-25,62191,5040,"[\""Phone\""]",74.74,"{\""seasonal\"": \""7%\""}",154280,0,"""South America""" +2023-10-14,62192,4281,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1623.1,"{\""seasonal\"": \""28%\""}",285207,0,"""Asia""" +2024-08-05,62193,848,"[\""Laptop\""]",1183.25,"{\""promo\"": \""9%\""}",113333,1,"""Europe""" +2023-07-04,62194,4968,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4478.66,"{\"": \""21%\""}",224077,0,"""South America""" +2023-06-02,62195,1379,"[\""Phone\"", \""Laptop\""]",4656.99,"{\"": \""18%\""}",298944,0,"""Asia""" +2024-04-01,62196,6962,"[\""Wireless Mouse\"", \""Keyboard\""]",919.88,"{\""promo\"": \""11%\""}",130087,1,"""Asia""" +2024-12-31,62197,6040,"[\""Tablet\""]",2595.83,{},199254,1,"""South America""" +2023-09-02,62198,4141,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",313.08,{},215289,0,"""North America""" +2023-07-25,62199,4805,"[\""Keyboard\"", \""Tablet\""]",2736.48,"{\"": \""10%\""}",140133,1,"""Europe""" +2023-01-19,62200,7272,"[\""Tablet\""]",4047.52,"{\""promo\"": \""25%\""}",286444,1,"""North America""" +2024-09-27,62201,9762,"[\""Monitor\""]",2013.8,"{\""seasonal\"": \""18%\""}",56907,1,"""Africa""" +2023-07-24,62202,9700,"[\""Keyboard\""]",812.11,{},84702,0,"""Africa""" +2023-11-04,62203,1344,"[\""Laptop\""]",2795.95,"{\""loyalty\"": \""30%\""}",294616,0,"""Africa""" +2023-01-14,62204,184,"[\""Keyboard\""]",4670.27,"{\""loyalty\"": \""11%\""}",295122,1,"""Asia""" +2024-12-24,62205,4215,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1249.27,"{\""promo\"": \""25%\""}",167158,0,"""Europe""" +2023-12-03,62206,704,"[\""Wireless Mouse\""]",105.36,{},233983,1,"""Asia""" +2024-08-05,62207,597,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4666.31,{},175434,0,"""North America""" +2024-06-04,62208,4701,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4366.21,"{\""seasonal\"": \""10%\""}",173656,1,"""Africa""" +2024-11-16,62209,164,"[\""Monitor\""]",4168.06,{},30385,0,"""South America""" +2024-03-09,62210,6902,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4770.14,{},41372,1,"""North America""" +2023-06-20,62211,5558,"[\""Wireless Mouse\"", \""Phone\""]",1376.98,{},265592,1,"""South America""" +2024-05-31,62212,8828,"[\""Headphones\"", \""Wireless Mouse\""]",1187.07,{},182765,0,"""North America""" +2024-05-06,62213,9460,"[\""Keyboard\"", \""Phone\""]",2628.61,{},195912,0,"""North America""" +2023-03-18,62214,4550,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2445.18,"{\""promo\"": \""23%\""}",225982,0,"""Europe""" +2023-05-09,62215,6433,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4838.87,"{\"": \""5%\""}",158054,0,"""North America""" +2024-09-10,62216,4752,"[\""Monitor\"", \""Headphones\""]",504.48,{},201317,1,"""North America""" +2024-06-17,62217,1782,"[\""Keyboard\"", \""Headphones\""]",3445.81,"{\"": \""24%\""}",16267,0,"""North America""" +2024-11-20,62218,6214,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3645.24,{},254619,0,"""South America""" +2023-01-19,62219,8750,"[\""Keyboard\""]",303.77,"{\"": \""22%\""}",149311,1,"""Europe""" +2023-05-04,62220,6669,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",375.83,"{\""loyalty\"": \""15%\""}",51550,1,"""North America""" +2024-03-10,62221,541,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2353.54,{},133381,1,"""South America""" +2023-12-19,62222,68,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2324.06,{},113589,0,"""Africa""" +2024-09-21,62223,9318,"[\""Headphones\"", \""Laptop\""]",4647.36,"{\""seasonal\"": \""5%\""}",45728,0,"""Asia""" +2024-06-12,62224,4360,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4059.18,{},11836,1,"""Asia""" +2023-03-23,62225,2452,"[\""Charger\""]",2453.45,"{\""promo\"": \""5%\""}",167137,0,"""North America""" +2023-03-28,62226,8078,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2455.28,{},133198,0,"""North America""" +2024-10-20,62227,8015,"[\""Wireless Mouse\"", \""Monitor\""]",3176.16,"{\""loyalty\"": \""17%\""}",192809,1,"""North America""" +2023-01-16,62228,1737,"[\""Headphones\""]",4681.11,{},197629,1,"""North America""" +2024-09-19,62229,2379,"[\""Laptop\""]",4421.39,{},14156,0,"""Africa""" +2024-07-31,62230,7354,"[\""Wireless Mouse\""]",1527.05,{},281936,1,"""Europe""" +2023-02-09,62231,6154,"[\""Keyboard\""]",3087.64,{},41040,1,"""Asia""" +2023-11-22,62232,7306,"[\""Tablet\"", \""Keyboard\""]",776.35,{},258457,1,"""North America""" +2024-07-14,62233,8311,"[\""Headphones\""]",4502.84,{},48291,0,"""South America""" +2024-03-27,62234,3186,"[\""Charger\"", \""Laptop\""]",3634.43,"{\"": \""29%\""}",48896,0,"""Africa""" +2024-11-25,62235,1374,"[\""Tablet\""]",3333.11,"{\""loyalty\"": \""11%\""}",280527,1,"""Asia""" +2023-05-09,62236,5445,"[\""Headphones\"", \""Laptop\""]",3165.01,"{\""seasonal\"": \""14%\""}",68536,1,"""South America""" +2023-08-27,62237,7970,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3481.15,{},83088,1,"""Asia""" +2024-10-29,62238,8226,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",296.83,{},260390,1,"""South America""" +2024-01-14,62239,8595,"[\""Headphones\""]",2603.66,{},250614,1,"""Europe""" +2024-10-24,62240,314,"[\""Laptop\"", \""Wireless Mouse\""]",3571.02,{},243008,1,"""North America""" +2023-09-15,62241,1799,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3416.06,{},97188,0,"""Africa""" +2024-07-11,62242,1491,"[\""Phone\""]",378.37,{},252210,0,"""South America""" +2023-08-01,62243,7483,"[\""Monitor\""]",1792.5,"{\""promo\"": \""15%\""}",92968,1,"""North America""" +2024-02-04,62244,403,"[\""Wireless Mouse\""]",1385.57,"{\""promo\"": \""21%\""}",64256,1,"""South America""" +2024-05-31,62245,1953,"[\""Wireless Mouse\""]",1296.38,{},122697,0,"""Africa""" +2024-07-29,62246,2236,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2825.33,"{\""promo\"": \""5%\""}",77940,0,"""Asia""" +2024-08-05,62247,7155,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",175.8,{},171029,0,"""North America""" +2023-03-27,62248,8645,"[\""Phone\""]",1954.74,"{\""seasonal\"": \""26%\""}",136084,1,"""Europe""" +2024-05-08,62249,5718,"[\""Wireless Mouse\"", \""Charger\""]",415.02,"{\""loyalty\"": \""10%\""}",99865,0,"""North America""" +2023-09-12,62250,8939,"[\""Keyboard\"", \""Wireless Mouse\""]",1383.95,{},80623,1,"""Europe""" +2023-07-01,62251,9541,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4201.39,"{\"": \""22%\""}",102331,0,"""North America""" +2024-08-30,62252,814,"[\""Keyboard\""]",2821.62,{},104686,1,"""Asia""" +2024-04-04,62253,6916,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1385.26,"{\""loyalty\"": \""13%\""}",238819,1,"""South America""" +2024-02-12,62254,3963,"[\""Tablet\"", \""Phone\""]",2578.61,"{\""loyalty\"": \""15%\""}",229288,1,"""North America""" +2024-01-14,62255,5237,"[\""Monitor\"", \""Phone\""]",93.78,{},105278,1,"""Africa""" +2023-03-09,62256,1101,"[\""Tablet\""]",1348.9,"{\""promo\"": \""16%\""}",53463,0,"""Asia""" +2024-06-05,62257,7927,"[\""Wireless Mouse\"", \""Laptop\""]",4819.44,{},67024,1,"""South America""" +2024-02-21,62258,4368,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1340.02,{},51287,0,"""South America""" +2023-01-13,62259,85,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3792.51,"{\""seasonal\"": \""24%\""}",132627,1,"""Asia""" +2024-02-20,62260,8891,"[\""Headphones\"", \""Phone\""]",1991.56,{},156848,0,"""North America""" +2023-05-02,62261,832,"[\""Keyboard\"", \""Phone\""]",234.69,"{\""seasonal\"": \""25%\""}",171386,1,"""South America""" +2024-04-11,62262,1729,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",337.3,{},101452,1,"""Africa""" +2023-12-28,62263,6179,"[\""Phone\""]",2269.87,{},173349,0,"""Africa""" +2024-11-20,62264,3964,"[\""Keyboard\""]",1885.92,"{\""seasonal\"": \""30%\""}",198642,0,"""Europe""" +2023-03-16,62265,1744,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",920.84,"{\""loyalty\"": \""13%\""}",274710,0,"""Europe""" +2023-03-23,62266,3199,"[\""Keyboard\"", \""Charger\""]",1118.05,{},246224,1,"""Africa""" +2024-11-07,62267,602,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3460.78,"{\"": \""28%\""}",10094,1,"""Asia""" +2024-10-23,62268,9037,"[\""Monitor\""]",2352.67,"{\""seasonal\"": \""18%\""}",101134,0,"""Africa""" +2024-03-11,62269,3846,"[\""Headphones\"", \""Phone\""]",428.96,{},242073,0,"""South America""" +2024-06-01,62270,5230,"[\""Monitor\""]",1651.57,"{\""promo\"": \""20%\""}",227294,1,"""South America""" +2024-01-16,62271,2438,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2710.32,"{\""seasonal\"": \""23%\""}",7013,1,"""Asia""" +2023-11-13,62272,7362,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2762.85,"{\""loyalty\"": \""13%\""}",57942,0,"""North America""" +2023-07-02,62273,7916,"[\""Headphones\""]",2128.66,{},175588,1,"""Europe""" +2024-10-26,62274,6256,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",474.18,"{\""promo\"": \""30%\""}",56262,0,"""Africa""" +2024-01-27,62275,332,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4142.08,{},119897,0,"""Africa""" +2023-03-07,62276,293,"[\""Headphones\""]",4903.31,"{\""promo\"": \""9%\""}",189171,1,"""Asia""" +2023-03-14,62277,5289,"[\""Monitor\""]",3340.22,"{\""seasonal\"": \""26%\""}",216497,0,"""Europe""" +2024-08-19,62278,3597,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2152.77,"{\""seasonal\"": \""25%\""}",29309,1,"""Europe""" +2023-04-08,62279,7813,"[\""Keyboard\""]",2981.17,{},257901,0,"""North America""" +2024-09-04,62280,8567,"[\""Keyboard\"", \""Wireless Mouse\""]",623.27,"{\""loyalty\"": \""5%\""}",15891,0,"""Europe""" +2024-07-25,62281,5124,"[\""Keyboard\""]",475.18,{},200928,0,"""Asia""" +2023-04-01,62282,5881,"[\""Charger\""]",3428.98,"{\"": \""15%\""}",127776,1,"""Europe""" +2024-03-31,62283,5724,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",958.09,{},125250,1,"""Asia""" +2024-09-05,62284,6644,"[\""Tablet\"", \""Charger\""]",805.25,"{\""seasonal\"": \""19%\""}",284177,1,"""Africa""" +2023-08-04,62285,3310,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",355.59,"{\"": \""14%\""}",3454,0,"""Europe""" +2023-05-13,62286,2661,"[\""Keyboard\"", \""Wireless Mouse\""]",3106.17,{},88462,1,"""North America""" +2023-10-20,62287,8581,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2432.83,{},168363,1,"""South America""" +2023-08-03,62288,2819,"[\""Keyboard\"", \""Laptop\""]",3148.48,{},12270,1,"""North America""" +2023-12-30,62289,8659,"[\""Keyboard\"", \""Wireless Mouse\""]",2346.44,"{\""loyalty\"": \""13%\""}",59237,1,"""Europe""" +2024-08-17,62290,9652,"[\""Tablet\""]",4057.4,"{\""promo\"": \""19%\""}",180539,1,"""Africa""" +2023-04-02,62291,9406,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",170.94,"{\""loyalty\"": \""12%\""}",252626,1,"""South America""" +2024-03-15,62292,9475,"[\""Keyboard\"", \""Laptop\""]",2696.2,"{\""seasonal\"": \""24%\""}",144581,0,"""Asia""" +2023-08-09,62293,1717,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2260.79,{},175187,0,"""Asia""" +2024-02-04,62294,5631,"[\""Headphones\""]",609.31,"{\""loyalty\"": \""6%\""}",21078,0,"""North America""" +2023-08-06,62295,7219,"[\""Phone\""]",629.61,"{\""loyalty\"": \""24%\""}",273593,1,"""South America""" +2023-04-20,62296,8802,"[\""Headphones\"", \""Charger\""]",1293.23,{},251148,1,"""Africa""" +2023-08-23,62297,4138,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2712.76,"{\""seasonal\"": \""26%\""}",109681,0,"""North America""" +2024-02-18,62298,9166,"[\""Wireless Mouse\""]",506.67,"{\""promo\"": \""18%\""}",32739,0,"""Europe""" +2023-07-10,62299,2684,"[\""Phone\""]",4247.1,{},201470,0,"""North America""" +2023-04-19,62300,8381,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3548.83,"{\""loyalty\"": \""18%\""}",155402,0,"""South America""" +2024-01-31,62301,6715,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4797.74,{},135994,1,"""Asia""" +2023-08-23,62302,9629,"[\""Laptop\"", \""Tablet\""]",2817.78,{},49751,1,"""South America""" +2023-08-19,62303,3837,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2103.66,{},108396,1,"""North America""" +2023-02-19,62304,2154,"[\""Phone\"", \""Monitor\""]",3515.29,{},40211,0,"""Africa""" +2023-07-25,62305,4487,"[\""Keyboard\""]",4918.68,"{\""loyalty\"": \""6%\""}",95742,0,"""South America""" +2023-09-26,62306,6910,"[\""Monitor\""]",2993.37,{},243367,0,"""Asia""" +2024-04-17,62307,1403,"[\""Tablet\""]",745.62,"{\""loyalty\"": \""28%\""}",101176,0,"""Europe""" +2024-11-15,62308,6484,"[\""Charger\"", \""Laptop\""]",3152.23,"{\""promo\"": \""16%\""}",242090,1,"""North America""" +2024-01-30,62309,6106,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2863.74,"{\""loyalty\"": \""23%\""}",35349,1,"""North America""" +2024-04-18,62310,6357,"[\""Laptop\"", \""Monitor\""]",4787.22,"{\""loyalty\"": \""26%\""}",163084,0,"""Europe""" +2023-02-24,62311,2490,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",677.84,{},9666,1,"""North America""" +2024-09-26,62312,187,"[\""Laptop\""]",1721.83,{},251349,1,"""Europe""" +2024-06-11,62313,6819,"[\""Headphones\"", \""Charger\""]",3789.65,{},98085,1,"""Africa""" +2024-07-13,62314,4559,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",418.53,"{\""seasonal\"": \""17%\""}",6748,1,"""Africa""" +2024-01-10,62315,9708,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4567.74,"{\""promo\"": \""25%\""}",190848,0,"""North America""" +2024-08-12,62316,6124,"[\""Keyboard\""]",2917.67,"{\""seasonal\"": \""5%\""}",15558,0,"""South America""" +2024-01-22,62317,9557,"[\""Wireless Mouse\"", \""Keyboard\""]",1138.99,{},238481,0,"""Europe""" +2023-08-21,62318,8906,"[\""Wireless Mouse\"", \""Tablet\""]",2414.47,"{\""promo\"": \""19%\""}",206841,1,"""Africa""" +2024-07-13,62319,1658,"[\""Monitor\""]",1823.74,"{\""promo\"": \""30%\""}",165659,1,"""South America""" +2024-08-11,62320,6443,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3783.25,{},176516,1,"""North America""" +2023-04-15,62321,5945,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4389.95,{},222654,0,"""Europe""" +2023-09-07,62322,7577,"[\""Headphones\"", \""Wireless Mouse\""]",4814.03,{},61888,0,"""Asia""" +2023-02-15,62323,7256,"[\""Laptop\"", \""Phone\""]",373.91,{},217147,0,"""Africa""" +2023-09-24,62324,2073,"[\""Headphones\"", \""Phone\""]",1216.31,"{\""loyalty\"": \""24%\""}",276035,1,"""Europe""" +2024-08-12,62325,6360,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3612.83,{},104662,1,"""Asia""" +2023-08-14,62326,9172,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",686.2,{},31397,1,"""Europe""" +2024-06-02,62327,4925,"[\""Charger\"", \""Wireless Mouse\""]",4340.49,{},57718,1,"""Africa""" +2024-05-06,62328,9424,"[\""Keyboard\"", \""Wireless Mouse\""]",1888.69,{},48675,0,"""Europe""" +2024-01-02,62329,5704,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3099.98,{},76949,0,"""Africa""" +2023-03-08,62330,1818,"[\""Laptop\""]",2608.84,"{\"": \""10%\""}",298579,0,"""Asia""" +2023-09-10,62331,5187,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4642.2,"{\"": \""29%\""}",1932,0,"""Africa""" +2023-11-30,62332,4126,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",954.46,{},71232,0,"""North America""" +2024-11-26,62333,4212,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2853.7,"{\""promo\"": \""18%\""}",63342,0,"""Europe""" +2024-04-18,62334,2532,"[\""Headphones\""]",1592.92,{},222725,0,"""North America""" +2023-10-16,62335,3973,"[\""Wireless Mouse\"", \""Monitor\""]",1098.08,"{\""loyalty\"": \""30%\""}",88597,1,"""Africa""" +2024-07-25,62336,8040,"[\""Charger\""]",285.27,{},282699,0,"""Asia""" +2023-03-16,62337,3239,"[\""Charger\"", \""Headphones\""]",3994.9,"{\""promo\"": \""19%\""}",66152,0,"""Africa""" +2024-10-12,62338,5909,"[\""Wireless Mouse\"", \""Tablet\""]",2759.31,"{\""loyalty\"": \""28%\""}",177203,1,"""North America""" +2024-06-17,62339,6784,"[\""Headphones\"", \""Phone\""]",439.3,"{\""loyalty\"": \""22%\""}",68209,1,"""North America""" +2024-05-11,62340,15,"[\""Wireless Mouse\"", \""Keyboard\""]",2230.09,{},42374,0,"""North America""" +2024-11-15,62341,1533,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4291.83,{},255586,0,"""North America""" +2024-11-27,62342,2305,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3745.24,{},268763,1,"""Africa""" +2023-12-17,62343,7848,"[\""Charger\""]",801.39,{},248809,0,"""Asia""" +2024-03-14,62344,1126,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3247.5,{},150428,0,"""Europe""" +2023-01-23,62345,3448,"[\""Tablet\""]",1613.73,{},10260,1,"""South America""" +2023-07-09,62346,574,"[\""Laptop\""]",3508.64,{},283152,1,"""Europe""" +2023-12-07,62347,1859,"[\""Monitor\"", \""Wireless Mouse\""]",4335.48,"{\"": \""16%\""}",82282,0,"""Africa""" +2024-07-12,62348,6045,"[\""Laptop\""]",3526.18,"{\"": \""18%\""}",143625,0,"""Europe""" +2024-02-28,62349,8686,"[\""Charger\"", \""Tablet\""]",957.88,{},33231,1,"""Europe""" +2023-02-04,62350,7419,"[\""Laptop\""]",2893.43,"{\"": \""28%\""}",74841,0,"""Africa""" +2024-12-02,62351,2916,"[\""Wireless Mouse\""]",1810.65,{},200619,0,"""Asia""" +2023-08-17,62352,2332,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",233.0,"{\"": \""26%\""}",123619,0,"""Europe""" +2023-05-01,62353,395,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",851.09,"{\"": \""23%\""}",223413,0,"""North America""" +2023-05-22,62354,6852,"[\""Monitor\""]",4660.62,"{\""promo\"": \""24%\""}",154925,1,"""Africa""" +2023-06-11,62355,3252,"[\""Wireless Mouse\""]",154.25,"{\""promo\"": \""11%\""}",175698,0,"""North America""" +2024-01-05,62356,3927,"[\""Tablet\""]",4571.2,{},292742,0,"""Europe""" +2023-10-19,62357,1556,"[\""Charger\""]",2009.82,"{\""loyalty\"": \""23%\""}",12965,0,"""South America""" +2023-01-14,62358,7982,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4478.95,"{\""seasonal\"": \""24%\""}",78520,0,"""North America""" +2024-10-30,62359,643,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2757.1,{},51993,1,"""Africa""" +2023-03-30,62360,4002,"[\""Monitor\""]",4875.32,"{\""loyalty\"": \""6%\""}",128521,0,"""Europe""" +2024-08-09,62361,5077,"[\""Headphones\"", \""Keyboard\""]",3471.06,{},117444,0,"""North America""" +2023-01-25,62362,1398,"[\""Headphones\"", \""Monitor\""]",2492.34,"{\""seasonal\"": \""8%\""}",149471,0,"""South America""" +2024-09-20,62363,1268,"[\""Charger\"", \""Wireless Mouse\""]",3699.98,"{\""loyalty\"": \""29%\""}",94902,0,"""South America""" +2023-10-25,62364,1811,"[\""Charger\""]",1794.25,"{\""loyalty\"": \""10%\""}",176924,1,"""North America""" +2023-01-29,62365,7830,"[\""Monitor\"", \""Wireless Mouse\""]",3992.07,"{\""loyalty\"": \""21%\""}",34212,1,"""Africa""" +2024-12-24,62366,2481,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4863.26,"{\"": \""5%\""}",253979,1,"""Europe""" +2023-12-30,62367,479,"[\""Wireless Mouse\""]",3340.96,"{\"": \""16%\""}",126425,0,"""South America""" +2024-04-02,62368,3202,"[\""Tablet\""]",1928.69,"{\""promo\"": \""23%\""}",21555,1,"""Africa""" +2024-12-27,62369,4960,"[\""Phone\"", \""Laptop\""]",4157.92,"{\""promo\"": \""16%\""}",8732,1,"""South America""" +2024-05-07,62370,7622,"[\""Tablet\""]",4164.07,{},40541,1,"""Europe""" +2024-01-12,62371,663,"[\""Laptop\""]",2114.81,{},26207,0,"""Asia""" +2023-08-11,62372,1809,"[\""Headphones\"", \""Charger\"", \""Phone\""]",120.48,"{\""seasonal\"": \""15%\""}",211127,0,"""Europe""" +2023-06-22,62373,8108,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4689.91,{},26540,0,"""North America""" +2023-04-26,62374,8066,"[\""Wireless Mouse\"", \""Headphones\""]",3371.66,{},126611,1,"""North America""" +2024-05-27,62375,8409,"[\""Laptop\""]",4763.59,{},4449,0,"""Europe""" +2023-10-31,62376,7429,"[\""Charger\"", \""Phone\""]",1368.18,{},49246,1,"""Europe""" +2023-07-24,62377,1349,"[\""Wireless Mouse\"", \""Keyboard\""]",59.17,{},148411,1,"""Europe""" +2024-04-17,62378,4393,"[\""Keyboard\"", \""Laptop\""]",958.21,{},241664,1,"""Europe""" +2024-06-07,62379,9580,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2673.52,"{\"": \""15%\""}",134701,0,"""South America""" +2023-07-06,62380,4130,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4837.37,"{\"": \""8%\""}",181884,1,"""South America""" +2024-07-03,62381,9645,"[\""Keyboard\"", \""Phone\""]",201.74,{},93991,1,"""Asia""" +2023-03-17,62382,5599,"[\""Wireless Mouse\"", \""Monitor\""]",2848.12,"{\""seasonal\"": \""12%\""}",165244,0,"""Africa""" +2023-02-28,62383,7910,"[\""Keyboard\""]",2719.89,"{\""promo\"": \""21%\""}",252295,0,"""Europe""" +2023-06-20,62384,1472,"[\""Wireless Mouse\""]",1714.38,"{\""seasonal\"": \""5%\""}",139117,0,"""North America""" +2024-06-28,62385,9104,"[\""Laptop\""]",4318.33,{},116239,1,"""Africa""" +2023-03-10,62386,4756,"[\""Charger\""]",1495.21,{},34267,1,"""Africa""" +2023-06-27,62387,5234,"[\""Headphones\"", \""Tablet\""]",3163.82,"{\""seasonal\"": \""25%\""}",272808,1,"""South America""" +2024-08-21,62388,5451,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2596.25,"{\""seasonal\"": \""8%\""}",47229,1,"""Africa""" +2024-07-05,62389,6252,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",967.68,{},46677,1,"""Asia""" +2023-07-18,62390,7547,"[\""Tablet\""]",4920.41,{},165012,0,"""South America""" +2024-09-24,62391,6610,"[\""Keyboard\""]",3262.61,"{\""promo\"": \""22%\""}",29140,0,"""North America""" +2024-10-28,62392,6715,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3047.09,"{\""seasonal\"": \""11%\""}",94751,0,"""Asia""" +2024-06-15,62393,9378,"[\""Tablet\"", \""Charger\""]",392.11,{},205549,0,"""Asia""" +2024-01-22,62394,431,"[\""Tablet\"", \""Laptop\""]",4061.47,"{\""loyalty\"": \""18%\""}",18308,1,"""Africa""" +2023-09-09,62395,8137,"[\""Keyboard\"", \""Tablet\""]",3735.48,{},72000,1,"""North America""" +2024-03-24,62396,1568,"[\""Phone\"", \""Wireless Mouse\""]",3154.17,"{\""promo\"": \""24%\""}",15856,1,"""Europe""" +2024-03-05,62397,2004,"[\""Wireless Mouse\"", \""Tablet\""]",963.32,"{\""promo\"": \""26%\""}",58911,0,"""Africa""" +2024-12-09,62398,4326,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",483.85,"{\""promo\"": \""21%\""}",190206,1,"""Africa""" +2023-05-09,62399,7152,"[\""Keyboard\""]",818.09,"{\""loyalty\"": \""23%\""}",223234,1,"""Africa""" +2024-03-07,62400,8859,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2631.39,"{\""loyalty\"": \""19%\""}",254360,0,"""South America""" +2024-02-19,62401,8228,"[\""Headphones\""]",4858.73,"{\""loyalty\"": \""6%\""}",104957,0,"""Africa""" +2024-01-07,62402,21,"[\""Headphones\"", \""Keyboard\""]",4683.08,"{\""promo\"": \""13%\""}",284887,0,"""North America""" +2024-02-25,62403,5411,"[\""Laptop\"", \""Charger\""]",4333.42,"{\"": \""8%\""}",195366,1,"""Asia""" +2023-11-21,62404,6907,"[\""Wireless Mouse\"", \""Phone\""]",2001.08,{},152158,0,"""Europe""" +2024-02-01,62405,2159,"[\""Headphones\"", \""Tablet\""]",2352.64,{},294320,1,"""Africa""" +2024-06-18,62406,5283,"[\""Charger\"", \""Keyboard\""]",1693.9,"{\""seasonal\"": \""9%\""}",177736,0,"""Europe""" +2023-11-09,62407,2389,"[\""Monitor\""]",4849.33,"{\"": \""7%\""}",261586,0,"""Europe""" +2023-02-20,62408,4100,"[\""Charger\"", \""Headphones\""]",934.99,"{\""promo\"": \""30%\""}",211690,1,"""Europe""" +2024-01-05,62409,7013,"[\""Keyboard\""]",2224.0,"{\""seasonal\"": \""24%\""}",163212,0,"""North America""" +2024-04-27,62410,6530,"[\""Tablet\"", \""Laptop\""]",1268.82,{},105585,0,"""Africa""" +2023-04-10,62411,2514,"[\""Monitor\""]",1453.4,{},104258,0,"""Africa""" +2023-02-01,62412,1892,"[\""Wireless Mouse\"", \""Laptop\""]",525.48,{},283217,1,"""Africa""" +2023-04-16,62413,4192,"[\""Wireless Mouse\""]",4546.39,"{\"": \""24%\""}",247537,0,"""Africa""" +2023-09-07,62414,4389,"[\""Keyboard\""]",4252.14,{},209442,0,"""Asia""" +2024-05-04,62415,1458,"[\""Headphones\"", \""Monitor\""]",1769.87,"{\"": \""10%\""}",37127,1,"""South America""" +2023-09-17,62416,2467,"[\""Tablet\""]",4210.36,"{\""promo\"": \""14%\""}",135815,0,"""Europe""" +2024-08-05,62417,8856,"[\""Monitor\"", \""Phone\""]",2516.55,{},41709,0,"""North America""" +2023-11-16,62418,6325,"[\""Phone\""]",1821.06,{},182138,1,"""South America""" +2024-12-16,62419,2854,"[\""Charger\""]",4042.49,{},272163,0,"""Europe""" +2023-01-26,62420,5087,"[\""Laptop\""]",1753.37,{},167086,1,"""Asia""" +2023-07-26,62421,1466,"[\""Tablet\""]",1523.2,{},108046,0,"""South America""" +2024-07-21,62422,1446,"[\""Tablet\"", \""Phone\""]",225.83,"{\""seasonal\"": \""25%\""}",268008,1,"""Asia""" +2023-05-31,62423,1518,"[\""Tablet\"", \""Headphones\""]",2332.33,{},289300,1,"""South America""" +2024-07-15,62424,6574,"[\""Charger\"", \""Headphones\""]",4243.14,{},289995,1,"""North America""" +2024-02-14,62425,6860,"[\""Wireless Mouse\""]",3996.99,"{\""promo\"": \""24%\""}",269380,1,"""Europe""" +2023-10-17,62426,9141,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",409.72,"{\"": \""14%\""}",270915,0,"""Asia""" +2024-12-29,62427,5016,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",375.94,{},267604,0,"""Africa""" +2023-05-26,62428,4223,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1894.67,{},265746,0,"""South America""" +2023-01-18,62429,2793,"[\""Headphones\"", \""Charger\""]",1677.52,{},148762,1,"""North America""" +2024-01-28,62430,2064,"[\""Laptop\""]",3265.86,{},127148,0,"""North America""" +2024-10-05,62431,9942,"[\""Keyboard\""]",4482.67,{},131660,1,"""Asia""" +2023-06-01,62432,4267,"[\""Tablet\""]",2067.68,"{\""seasonal\"": \""16%\""}",265341,0,"""Asia""" +2024-08-20,62433,1816,"[\""Keyboard\""]",3080.3,{},195486,1,"""Asia""" +2023-01-28,62434,5513,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4330.32,{},6399,1,"""Europe""" +2024-08-24,62435,7460,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4509.78,"{\""loyalty\"": \""6%\""}",213145,0,"""South America""" +2024-08-28,62436,7355,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",824.65,{},126639,1,"""North America""" +2024-02-29,62437,5890,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",323.53,{},104812,0,"""Europe""" +2024-06-07,62438,6137,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4284.52,{},297529,0,"""Asia""" +2024-12-11,62439,5104,"[\""Phone\""]",4399.49,{},273160,1,"""Africa""" +2023-12-26,62440,5495,"[\""Charger\""]",4925.46,{},75570,0,"""Europe""" +2023-10-04,62441,4983,"[\""Headphones\"", \""Tablet\""]",3107.06,{},235440,0,"""North America""" +2024-08-20,62442,1953,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4880.87,"{\""seasonal\"": \""23%\""}",86397,0,"""Asia""" +2024-09-23,62443,3084,"[\""Headphones\""]",3981.69,{},131772,0,"""Asia""" +2023-07-10,62444,2895,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",149.71,"{\""promo\"": \""9%\""}",266123,0,"""South America""" +2023-07-07,62445,3061,"[\""Monitor\"", \""Phone\"", \""Charger\""]",79.39,"{\"": \""17%\""}",218999,1,"""Africa""" +2024-10-24,62446,6460,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1166.97,"{\""promo\"": \""16%\""}",106617,0,"""Europe""" +2023-11-19,62447,5520,"[\""Monitor\""]",4616.03,{},270147,1,"""South America""" +2023-09-21,62448,5449,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2203.33,"{\"": \""9%\""}",166699,0,"""Asia""" +2023-07-06,62449,2200,"[\""Tablet\""]",4331.17,"{\""loyalty\"": \""18%\""}",153188,1,"""Asia""" +2023-01-12,62450,1805,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4195.32,{},125363,1,"""Asia""" +2023-01-02,62451,4197,"[\""Wireless Mouse\""]",4697.56,{},268056,0,"""North America""" +2024-12-14,62452,990,"[\""Monitor\"", \""Laptop\""]",2145.11,{},251545,1,"""North America""" +2024-04-24,62453,2721,"[\""Headphones\"", \""Monitor\""]",1331.73,"{\""loyalty\"": \""9%\""}",121107,0,"""Africa""" +2024-05-05,62454,7905,"[\""Keyboard\"", \""Monitor\""]",3131.9,{},120255,1,"""Asia""" +2024-12-10,62455,1127,"[\""Tablet\"", \""Headphones\""]",4790.55,{},74849,0,"""North America""" +2024-08-01,62456,3758,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2653.25,"{\""promo\"": \""15%\""}",293139,0,"""Europe""" +2024-08-17,62457,8151,"[\""Phone\""]",270.8,{},86254,1,"""Africa""" +2023-06-06,62458,3774,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",656.14,{},21466,1,"""Asia""" +2023-05-24,62459,1247,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1723.82,"{\"": \""30%\""}",107224,1,"""North America""" +2024-05-18,62460,2943,"[\""Phone\"", \""Charger\""]",4799.12,{},215701,1,"""South America""" +2024-01-26,62461,710,"[\""Tablet\""]",3960.96,{},294969,0,"""Asia""" +2023-12-31,62462,1375,"[\""Phone\""]",2896.2,"{\""promo\"": \""5%\""}",131219,1,"""North America""" +2024-01-28,62463,7442,"[\""Monitor\"", \""Phone\""]",3427.53,"{\""promo\"": \""27%\""}",188713,1,"""Europe""" +2024-01-25,62464,6966,"[\""Wireless Mouse\""]",4107.48,{},17859,1,"""Africa""" +2024-11-24,62465,7347,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3269.06,"{\""loyalty\"": \""28%\""}",129406,0,"""Africa""" +2024-12-26,62466,130,"[\""Laptop\"", \""Keyboard\""]",579.62,"{\""seasonal\"": \""23%\""}",92813,1,"""Asia""" +2024-05-24,62467,930,"[\""Headphones\"", \""Phone\""]",2588.91,{},101029,1,"""Africa""" +2024-04-14,62468,5373,"[\""Monitor\""]",2704.87,"{\""seasonal\"": \""16%\""}",283191,1,"""Asia""" +2024-04-13,62469,7450,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3813.48,"{\""loyalty\"": \""23%\""}",96871,1,"""North America""" +2023-10-18,62470,545,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1496.27,{},52993,1,"""South America""" +2024-01-11,62471,5591,"[\""Tablet\"", \""Wireless Mouse\""]",1730.63,"{\""loyalty\"": \""9%\""}",146009,1,"""Africa""" +2024-08-10,62472,1681,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",964.53,"{\""loyalty\"": \""12%\""}",91952,0,"""North America""" +2023-11-13,62473,4623,"[\""Keyboard\""]",4808.25,"{\""seasonal\"": \""13%\""}",72534,0,"""South America""" +2023-04-11,62474,634,"[\""Phone\""]",4814.68,"{\""promo\"": \""21%\""}",138468,1,"""South America""" +2024-11-14,62475,9725,"[\""Keyboard\"", \""Headphones\""]",1762.19,"{\""loyalty\"": \""16%\""}",129154,1,"""Asia""" +2024-10-27,62476,9260,"[\""Keyboard\""]",504.83,"{\""loyalty\"": \""14%\""}",275384,0,"""Africa""" +2023-06-02,62477,3848,"[\""Phone\"", \""Headphones\""]",3705.33,{},61744,1,"""Asia""" +2023-10-25,62478,4318,"[\""Monitor\""]",389.78,"{\""promo\"": \""11%\""}",59116,1,"""Europe""" +2023-11-13,62479,3739,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",649.45,{},269950,1,"""North America""" +2024-12-10,62480,6493,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3272.85,{},213611,1,"""South America""" +2023-08-07,62481,2739,"[\""Phone\""]",186.65,"{\"": \""19%\""}",104524,0,"""Europe""" +2023-06-21,62482,3751,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3016.4,"{\""seasonal\"": \""20%\""}",236929,1,"""North America""" +2024-10-05,62483,4696,"[\""Monitor\"", \""Wireless Mouse\""]",3919.87,"{\""loyalty\"": \""24%\""}",150339,0,"""Europe""" +2023-10-21,62484,492,"[\""Wireless Mouse\"", \""Phone\""]",4122.3,"{\""loyalty\"": \""30%\""}",147371,1,"""Africa""" +2023-03-13,62485,5090,"[\""Laptop\""]",196.82,{},132335,1,"""Europe""" +2023-04-13,62486,7841,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",420.19,"{\""promo\"": \""6%\""}",76871,0,"""Europe""" +2024-06-05,62487,9193,"[\""Keyboard\""]",3065.02,"{\""seasonal\"": \""30%\""}",191722,1,"""South America""" +2023-04-13,62488,2516,"[\""Monitor\"", \""Phone\""]",3608.51,"{\"": \""11%\""}",193528,1,"""Europe""" +2023-03-13,62489,4441,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3544.29,"{\"": \""7%\""}",209033,0,"""South America""" +2024-08-22,62490,8266,"[\""Keyboard\"", \""Wireless Mouse\""]",4751.97,"{\""loyalty\"": \""16%\""}",94041,1,"""Europe""" +2023-12-05,62491,3928,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2215.8,{},50746,0,"""Asia""" +2024-01-22,62492,3390,"[\""Keyboard\""]",4128.93,{},99917,0,"""Europe""" +2024-12-07,62493,7009,"[\""Laptop\"", \""Monitor\""]",1778.09,"{\""loyalty\"": \""5%\""}",275107,1,"""Asia""" +2024-06-17,62494,8413,"[\""Phone\""]",3407.4,"{\""seasonal\"": \""16%\""}",268730,0,"""Asia""" +2023-05-24,62495,2934,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1519.52,"{\""seasonal\"": \""12%\""}",201617,1,"""Asia""" +2023-01-09,62496,7704,"[\""Charger\"", \""Phone\"", \""Tablet\""]",917.18,{},197359,1,"""Asia""" +2024-06-13,62497,6283,"[\""Wireless Mouse\"", \""Laptop\""]",4708.1,"{\"": \""15%\""}",86025,0,"""North America""" +2023-04-16,62498,9879,"[\""Headphones\""]",1198.7,"{\""promo\"": \""26%\""}",162717,0,"""Asia""" +2024-09-13,62499,9093,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1655.06,"{\""loyalty\"": \""28%\""}",111434,0,"""North America""" +2023-01-29,62500,174,"[\""Tablet\"", \""Monitor\""]",2649.56,{},196631,0,"""Asia""" +2024-09-27,62501,1324,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3319.4,"{\""seasonal\"": \""22%\""}",269848,1,"""Asia""" +2024-07-30,62502,9620,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",229.01,"{\"": \""29%\""}",234763,1,"""Africa""" +2023-11-05,62503,4607,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4497.55,"{\""loyalty\"": \""26%\""}",138095,0,"""Europe""" +2023-07-26,62504,6873,"[\""Headphones\""]",3925.23,"{\""promo\"": \""13%\""}",236954,1,"""Africa""" +2023-03-13,62505,4863,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4279.95,{},34766,1,"""South America""" +2024-11-24,62506,4482,"[\""Headphones\"", \""Charger\""]",411.39,"{\""loyalty\"": \""21%\""}",1500,0,"""Asia""" +2023-10-17,62507,828,"[\""Tablet\""]",4262.04,"{\""loyalty\"": \""30%\""}",99328,1,"""Asia""" +2023-08-07,62508,7206,"[\""Charger\""]",3699.69,{},91098,0,"""Asia""" +2024-08-01,62509,3731,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",520.14,"{\""seasonal\"": \""29%\""}",19370,1,"""North America""" +2023-12-02,62510,9773,"[\""Monitor\""]",4189.21,{},236587,0,"""Europe""" +2024-04-08,62511,6508,"[\""Headphones\""]",350.72,{},96936,1,"""Europe""" +2023-08-23,62512,8928,"[\""Headphones\"", \""Charger\""]",1277.36,{},292451,0,"""Asia""" +2024-11-19,62513,2003,"[\""Keyboard\""]",1830.9,"{\"": \""9%\""}",196981,1,"""Africa""" +2023-08-22,62514,6736,"[\""Phone\""]",958.28,"{\"": \""28%\""}",102865,0,"""Asia""" +2023-04-26,62515,2214,"[\""Laptop\"", \""Monitor\""]",2871.46,{},34405,1,"""Africa""" +2024-10-04,62516,3518,"[\""Tablet\"", \""Keyboard\""]",4434.28,"{\""seasonal\"": \""18%\""}",81581,1,"""Europe""" +2023-05-08,62517,5627,"[\""Monitor\"", \""Headphones\""]",3555.85,"{\""loyalty\"": \""17%\""}",27081,0,"""North America""" +2023-03-13,62518,182,"[\""Laptop\""]",2761.31,{},178222,0,"""Asia""" +2023-09-21,62519,2663,"[\""Headphones\"", \""Monitor\""]",3075.14,"{\""loyalty\"": \""10%\""}",103818,1,"""North America""" +2023-03-24,62520,6882,"[\""Wireless Mouse\""]",513.82,{},121564,0,"""Africa""" +2024-02-17,62521,8526,"[\""Phone\"", \""Tablet\""]",1198.91,{},164467,1,"""Asia""" +2024-02-20,62522,1493,"[\""Monitor\""]",913.43,"{\""seasonal\"": \""19%\""}",61390,0,"""Africa""" +2023-02-01,62523,4891,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",151.27,{},58151,0,"""Asia""" +2024-04-06,62524,4358,"[\""Keyboard\"", \""Phone\""]",108.3,{},99193,0,"""Asia""" +2023-04-27,62525,2004,"[\""Headphones\"", \""Monitor\""]",3243.27,{},275319,0,"""Europe""" +2024-06-07,62526,2295,"[\""Monitor\"", \""Wireless Mouse\""]",563.98,{},61292,0,"""Africa""" +2023-11-29,62527,7881,"[\""Tablet\"", \""Charger\""]",1311.92,"{\"": \""17%\""}",79543,0,"""Africa""" +2023-08-12,62528,7713,"[\""Keyboard\""]",2581.58,{},146669,1,"""Asia""" +2023-12-07,62529,6719,"[\""Headphones\""]",1279.14,{},28123,0,"""Asia""" +2024-11-19,62530,5422,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3445.38,{},73866,1,"""Asia""" +2023-02-15,62531,1233,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2377.5,{},260748,1,"""South America""" +2024-01-14,62532,7808,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2576.0,{},150995,1,"""Africa""" +2023-10-23,62533,7825,"[\""Keyboard\""]",3400.89,{},87905,0,"""North America""" +2023-04-29,62534,5194,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2506.9,{},249536,1,"""Europe""" +2024-02-13,62535,9472,"[\""Headphones\"", \""Laptop\""]",809.04,{},126313,1,"""Africa""" +2023-01-14,62536,3001,"[\""Laptop\"", \""Keyboard\""]",4100.62,{},260927,1,"""Asia""" +2024-06-15,62537,9803,"[\""Charger\"", \""Tablet\""]",4098.32,{},26991,0,"""Asia""" +2023-05-06,62538,4107,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1662.59,{},110172,1,"""North America""" +2023-02-06,62539,5020,"[\""Phone\"", \""Keyboard\""]",465.79,{},118495,0,"""South America""" +2024-11-22,62540,5121,"[\""Tablet\""]",1457.12,{},8271,0,"""North America""" +2023-10-19,62541,4675,"[\""Laptop\"", \""Monitor\""]",1929.4,{},242756,1,"""Europe""" +2024-03-26,62542,6287,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",995.1,{},213102,1,"""Africa""" +2024-05-15,62543,9349,"[\""Keyboard\""]",2790.72,{},114448,0,"""Africa""" +2024-02-03,62544,3538,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2621.39,{},239864,0,"""Africa""" +2024-08-14,62545,3001,"[\""Laptop\""]",1865.15,"{\"": \""18%\""}",135922,0,"""Asia""" +2024-03-02,62546,4305,"[\""Keyboard\"", \""Phone\""]",2042.64,{},296391,1,"""Africa""" +2024-11-02,62547,2371,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",513.81,"{\"": \""29%\""}",146256,1,"""South America""" +2024-12-11,62548,2528,"[\""Charger\""]",1150.98,{},112548,0,"""North America""" +2024-11-17,62549,4583,"[\""Tablet\"", \""Wireless Mouse\""]",3100.55,{},48737,0,"""North America""" +2024-03-28,62550,1351,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4926.8,{},101836,1,"""Europe""" +2023-08-12,62551,7727,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1921.23,"{\"": \""13%\""}",141355,0,"""Europe""" +2023-07-26,62552,3119,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3363.38,"{\"": \""22%\""}",35416,1,"""Asia""" +2023-03-28,62553,1095,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1602.32,"{\""promo\"": \""13%\""}",170207,0,"""South America""" +2024-01-07,62554,9895,"[\""Wireless Mouse\""]",1625.01,{},100192,0,"""Europe""" +2023-03-03,62555,6987,"[\""Phone\"", \""Wireless Mouse\""]",3400.47,"{\""promo\"": \""30%\""}",19933,1,"""Europe""" +2023-06-15,62556,5872,"[\""Laptop\""]",1257.13,"{\""seasonal\"": \""15%\""}",254685,1,"""Asia""" +2024-05-24,62557,5399,"[\""Tablet\"", \""Charger\""]",3150.38,{},120383,0,"""Asia""" +2024-12-06,62558,3059,"[\""Phone\"", \""Laptop\""]",1760.39,{},201430,0,"""Africa""" +2024-04-18,62559,9616,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4016.71,{},93855,0,"""North America""" +2024-06-09,62560,5776,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4379.7,"{\""promo\"": \""30%\""}",44763,0,"""South America""" +2024-08-28,62561,3956,"[\""Wireless Mouse\"", \""Phone\""]",2808.23,{},109806,0,"""Africa""" +2023-07-15,62562,8325,"[\""Tablet\""]",498.19,"{\""loyalty\"": \""30%\""}",99940,1,"""Asia""" +2024-10-24,62563,9124,"[\""Laptop\""]",3509.64,{},120095,0,"""Africa""" +2024-04-02,62564,270,"[\""Tablet\""]",2064.02,{},126045,1,"""Africa""" +2023-11-27,62565,1289,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",67.74,"{\""promo\"": \""19%\""}",138169,1,"""South America""" +2024-01-11,62566,3942,"[\""Monitor\""]",4681.33,"{\""loyalty\"": \""7%\""}",252508,0,"""Europe""" +2023-12-29,62567,5212,"[\""Tablet\""]",2248.16,{},40401,0,"""South America""" +2023-09-20,62568,6147,"[\""Tablet\""]",196.0,"{\""promo\"": \""11%\""}",145409,1,"""Africa""" +2023-01-26,62569,3565,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2006.81,{},173069,0,"""Africa""" +2023-01-27,62570,8391,"[\""Monitor\""]",4927.34,"{\""loyalty\"": \""9%\""}",24513,0,"""Asia""" +2024-03-17,62571,560,"[\""Charger\""]",428.25,{},126368,1,"""Africa""" +2023-11-16,62572,1548,"[\""Monitor\""]",778.08,"{\"": \""7%\""}",158199,0,"""Europe""" +2023-12-04,62573,883,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4703.57,"{\""promo\"": \""13%\""}",77983,1,"""Africa""" +2024-01-08,62574,4023,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2540.71,"{\"": \""7%\""}",12724,1,"""South America""" +2024-08-28,62575,7275,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3527.79,"{\"": \""23%\""}",173439,0,"""Europe""" +2023-01-12,62576,6615,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",243.7,{},62602,0,"""North America""" +2023-02-12,62577,7977,"[\""Keyboard\""]",161.5,{},196732,1,"""South America""" +2023-11-19,62578,5989,"[\""Tablet\"", \""Charger\""]",3291.7,{},233746,0,"""North America""" +2024-12-25,62579,8643,"[\""Wireless Mouse\"", \""Keyboard\""]",122.55,"{\""loyalty\"": \""22%\""}",75975,0,"""Africa""" +2024-11-04,62580,5628,"[\""Keyboard\"", \""Charger\""]",2039.36,"{\"": \""6%\""}",222769,1,"""Europe""" +2023-05-10,62581,8554,"[\""Wireless Mouse\""]",4171.58,{},299633,1,"""South America""" +2024-01-31,62582,6560,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1923.94,"{\"": \""14%\""}",76953,1,"""Asia""" +2023-11-19,62583,9527,"[\""Charger\"", \""Keyboard\""]",3807.87,{},52972,1,"""Asia""" +2023-09-16,62584,4949,"[\""Keyboard\"", \""Laptop\""]",4529.08,{},39215,1,"""Europe""" +2024-12-09,62585,8860,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1959.56,{},276500,1,"""South America""" +2024-08-20,62586,5349,"[\""Phone\"", \""Tablet\""]",4053.92,{},128013,1,"""South America""" +2024-11-10,62587,4098,"[\""Keyboard\""]",4614.43,"{\"": \""12%\""}",105541,0,"""North America""" +2024-08-08,62588,1440,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2251.26,{},182509,0,"""Europe""" +2023-02-12,62589,2458,"[\""Laptop\"", \""Phone\""]",4236.03,{},123770,1,"""Europe""" +2023-10-06,62590,1712,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3347.54,"{\""loyalty\"": \""14%\""}",5659,1,"""South America""" +2023-11-26,62591,8906,"[\""Keyboard\"", \""Phone\""]",2856.42,{},130755,1,"""Africa""" +2024-04-29,62592,5402,"[\""Laptop\""]",3392.86,"{\""loyalty\"": \""30%\""}",6852,1,"""Africa""" +2023-09-25,62593,8818,"[\""Laptop\""]",139.47,"{\""promo\"": \""20%\""}",116208,1,"""South America""" +2024-08-26,62594,4769,"[\""Wireless Mouse\"", \""Charger\""]",1419.72,"{\"": \""24%\""}",130612,0,"""North America""" +2023-07-10,62595,4567,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3927.29,"{\""seasonal\"": \""17%\""}",16250,0,"""Asia""" +2023-09-06,62596,5209,"[\""Charger\""]",4244.11,"{\""seasonal\"": \""19%\""}",240789,1,"""South America""" +2023-11-09,62597,8733,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1814.33,{},116560,1,"""Africa""" +2023-05-17,62598,8649,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4552.62,{},104353,0,"""North America""" +2023-03-30,62599,2015,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4530.23,{},57795,1,"""North America""" +2024-07-01,62600,7753,"[\""Tablet\""]",1283.53,"{\"": \""28%\""}",274150,0,"""North America""" +2023-02-09,62601,2545,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1293.94,{},272336,0,"""South America""" +2023-08-21,62602,2495,"[\""Monitor\"", \""Tablet\""]",650.51,{},288857,1,"""South America""" +2023-12-17,62603,3331,"[\""Tablet\"", \""Phone\""]",1365.29,{},59230,0,"""Asia""" +2023-12-01,62604,5842,"[\""Phone\""]",655.48,"{\""seasonal\"": \""12%\""}",128157,1,"""Europe""" +2023-06-11,62605,8030,"[\""Tablet\"", \""Keyboard\""]",1755.78,{},132879,0,"""North America""" +2024-01-08,62606,6792,"[\""Charger\""]",3802.45,{},72162,1,"""North America""" +2024-11-20,62607,3513,"[\""Monitor\"", \""Laptop\""]",2330.46,"{\"": \""29%\""}",118390,0,"""Africa""" +2023-12-09,62608,8806,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3742.32,{},298705,1,"""North America""" +2024-03-29,62609,9953,"[\""Charger\""]",2398.35,"{\"": \""6%\""}",6507,0,"""Africa""" +2024-03-03,62610,9078,"[\""Phone\"", \""Monitor\""]",3087.63,{},214410,0,"""Africa""" +2024-03-25,62611,2132,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1723.98,{},68726,1,"""North America""" +2024-04-27,62612,1827,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2122.0,{},22787,0,"""Africa""" +2024-04-29,62613,7484,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3114.77,"{\""promo\"": \""20%\""}",180116,1,"""Asia""" +2024-08-28,62614,2744,"[\""Tablet\""]",599.48,{},14076,0,"""North America""" +2023-09-12,62615,497,"[\""Charger\""]",2992.0,"{\""seasonal\"": \""10%\""}",85933,1,"""Asia""" +2024-05-01,62616,7794,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3748.35,"{\""promo\"": \""23%\""}",105559,0,"""Africa""" +2023-04-22,62617,4273,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1500.44,{},135930,0,"""Africa""" +2024-05-10,62618,3462,"[\""Wireless Mouse\"", \""Laptop\""]",3922.01,"{\"": \""11%\""}",103589,1,"""Asia""" +2024-12-24,62619,3735,"[\""Phone\""]",528.34,{},237805,0,"""Africa""" +2023-02-18,62620,1366,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1280.85,{},30352,1,"""North America""" +2024-09-15,62621,9713,"[\""Phone\"", \""Laptop\""]",884.97,{},62926,0,"""Europe""" +2023-06-06,62622,8175,"[\""Keyboard\"", \""Monitor\""]",693.51,{},197741,1,"""Europe""" +2024-01-30,62623,2437,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4040.32,{},67684,0,"""Asia""" +2023-10-16,62624,5657,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4118.08,"{\"": \""14%\""}",292216,1,"""Europe""" +2024-04-06,62625,8610,"[\""Charger\"", \""Wireless Mouse\""]",1513.3,"{\""seasonal\"": \""21%\""}",71117,1,"""North America""" +2023-06-14,62626,2223,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",322.89,"{\""seasonal\"": \""22%\""}",204352,1,"""Africa""" +2023-03-20,62627,8279,"[\""Monitor\"", \""Laptop\""]",901.04,{},194165,1,"""North America""" +2023-09-19,62628,4846,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4117.15,"{\""seasonal\"": \""17%\""}",203455,0,"""South America""" +2023-12-12,62629,4090,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1721.2,{},16014,0,"""South America""" +2024-06-13,62630,6744,"[\""Headphones\""]",1626.43,{},237743,0,"""Europe""" +2023-04-27,62631,466,"[\""Keyboard\"", \""Laptop\""]",4670.11,"{\""loyalty\"": \""14%\""}",232489,0,"""South America""" +2024-08-07,62632,6371,"[\""Keyboard\""]",4695.37,"{\""seasonal\"": \""26%\""}",105590,0,"""South America""" +2023-09-29,62633,5565,"[\""Laptop\"", \""Charger\""]",1424.56,{},43586,1,"""Asia""" +2023-03-19,62634,7974,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2528.48,"{\"": \""5%\""}",220606,0,"""Africa""" +2024-09-17,62635,3216,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4908.9,{},115444,1,"""North America""" +2024-02-29,62636,5212,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4345.17,"{\"": \""16%\""}",213828,1,"""North America""" +2023-12-23,62637,5939,"[\""Laptop\"", \""Keyboard\""]",4946.56,"{\""loyalty\"": \""21%\""}",168553,1,"""South America""" +2024-12-05,62638,2493,"[\""Tablet\""]",2444.07,{},242614,0,"""South America""" +2024-11-18,62639,1883,"[\""Keyboard\"", \""Wireless Mouse\""]",1488.03,"{\""loyalty\"": \""24%\""}",284552,1,"""North America""" +2023-05-28,62640,9950,"[\""Phone\""]",3727.82,"{\"": \""5%\""}",21055,0,"""Europe""" +2023-05-18,62641,2411,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3356.66,"{\""seasonal\"": \""9%\""}",110579,1,"""Asia""" +2023-09-15,62642,9247,"[\""Headphones\"", \""Charger\""]",2127.89,{},7964,0,"""North America""" +2024-08-25,62643,2568,"[\""Wireless Mouse\""]",2708.3,"{\""seasonal\"": \""15%\""}",90994,0,"""South America""" +2024-02-22,62644,7598,"[\""Tablet\""]",3471.73,"{\""loyalty\"": \""24%\""}",38958,0,"""North America""" +2023-12-28,62645,360,"[\""Phone\"", \""Tablet\""]",4038.74,{},65265,0,"""Europe""" +2024-10-26,62646,584,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1763.24,{},268591,1,"""Europe""" +2023-02-20,62647,5856,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3838.72,"{\""seasonal\"": \""18%\""}",153606,0,"""North America""" +2023-08-22,62648,2011,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4378.01,"{\""promo\"": \""5%\""}",266677,1,"""North America""" +2023-05-30,62649,9389,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2679.43,{},109057,1,"""North America""" +2023-04-17,62650,263,"[\""Phone\"", \""Monitor\""]",1254.29,"{\""seasonal\"": \""21%\""}",78756,0,"""South America""" +2023-01-27,62651,74,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1654.84,{},45713,1,"""North America""" +2023-12-31,62652,4466,"[\""Charger\""]",4999.57,"{\""seasonal\"": \""28%\""}",116680,1,"""Africa""" +2024-10-18,62653,3113,"[\""Wireless Mouse\"", \""Tablet\""]",312.84,"{\""loyalty\"": \""25%\""}",222512,1,"""Asia""" +2024-09-21,62654,7559,"[\""Wireless Mouse\"", \""Phone\""]",333.17,{},48159,1,"""Asia""" +2023-07-23,62655,6346,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2607.13,{},35594,1,"""Africa""" +2024-03-02,62656,708,"[\""Keyboard\""]",4214.57,"{\""seasonal\"": \""29%\""}",296388,0,"""Asia""" +2024-11-01,62657,7505,"[\""Headphones\"", \""Charger\""]",1689.65,"{\"": \""5%\""}",295827,0,"""Africa""" +2023-04-17,62658,5245,"[\""Phone\""]",3275.64,"{\"": \""28%\""}",132228,0,"""South America""" +2024-12-23,62659,2563,"[\""Headphones\"", \""Phone\""]",3969.16,{},228550,1,"""Asia""" +2024-04-23,62660,9137,"[\""Laptop\"", \""Keyboard\""]",4718.29,"{\""promo\"": \""9%\""}",40315,0,"""Europe""" +2023-10-07,62661,5172,"[\""Keyboard\""]",1182.66,{},48492,0,"""Europe""" +2023-11-11,62662,9260,"[\""Laptop\""]",3546.64,{},131710,0,"""South America""" +2024-02-14,62663,5679,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4537.03,{},255195,0,"""North America""" +2024-10-30,62664,7926,"[\""Headphones\"", \""Wireless Mouse\""]",4676.78,"{\""promo\"": \""27%\""}",286740,0,"""Asia""" +2024-01-18,62665,1366,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",481.44,{},150444,0,"""Europe""" +2024-08-17,62666,1812,"[\""Laptop\""]",4733.23,"{\""promo\"": \""9%\""}",107510,1,"""North America""" +2023-06-10,62667,3728,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2673.29,{},173639,0,"""North America""" +2023-03-10,62668,2683,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2465.6,{},268148,0,"""North America""" +2024-01-08,62669,3097,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",186.71,{},279715,1,"""Europe""" +2023-03-22,62670,8727,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2683.19,"{\""seasonal\"": \""13%\""}",113756,1,"""North America""" +2024-09-15,62671,8433,"[\""Laptop\"", \""Headphones\""]",1318.57,{},86606,1,"""Africa""" +2023-09-17,62672,4139,"[\""Laptop\"", \""Tablet\""]",4036.82,"{\"": \""12%\""}",179506,1,"""Europe""" +2024-09-13,62673,1182,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",71.04,{},94835,0,"""North America""" +2024-06-22,62674,6619,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2322.82,"{\""loyalty\"": \""25%\""}",176589,1,"""South America""" +2023-11-14,62675,5042,"[\""Headphones\""]",1350.49,{},63300,1,"""Europe""" +2023-02-07,62676,161,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3264.92,{},196631,0,"""Europe""" +2024-12-22,62677,3585,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1971.96,"{\""seasonal\"": \""22%\""}",114529,0,"""North America""" +2023-06-07,62678,3084,"[\""Tablet\"", \""Monitor\""]",2095.52,{},231363,0,"""Europe""" +2024-12-25,62679,1136,"[\""Laptop\""]",4870.07,"{\""seasonal\"": \""27%\""}",193831,0,"""South America""" +2024-12-31,62680,5117,"[\""Monitor\"", \""Laptop\""]",4415.48,"{\"": \""27%\""}",271718,1,"""South America""" +2024-12-26,62681,501,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3092.18,"{\""seasonal\"": \""21%\""}",42081,0,"""Europe""" +2023-10-14,62682,1184,"[\""Wireless Mouse\"", \""Tablet\""]",4929.87,"{\""promo\"": \""15%\""}",184389,1,"""South America""" +2024-09-23,62683,9035,"[\""Phone\"", \""Charger\""]",2387.92,"{\""seasonal\"": \""28%\""}",118295,1,"""South America""" +2024-01-19,62684,3063,"[\""Tablet\"", \""Monitor\""]",793.04,"{\""loyalty\"": \""6%\""}",67510,0,"""Europe""" +2023-11-16,62685,6981,"[\""Monitor\"", \""Wireless Mouse\""]",4830.38,"{\"": \""9%\""}",164455,0,"""Europe""" +2023-04-07,62686,3272,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1262.94,"{\""loyalty\"": \""12%\""}",204887,0,"""Africa""" +2024-05-16,62687,956,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",574.36,{},236360,0,"""North America""" +2024-03-05,62688,5512,"[\""Laptop\"", \""Monitor\""]",728.42,{},159031,1,"""Asia""" +2024-06-16,62689,9504,"[\""Wireless Mouse\""]",4239.53,{},200109,0,"""Europe""" +2023-03-28,62690,3713,"[\""Keyboard\"", \""Tablet\""]",2333.82,{},220779,1,"""North America""" +2023-06-03,62691,54,"[\""Laptop\""]",4076.21,"{\""promo\"": \""29%\""}",162276,1,"""Europe""" +2023-05-23,62692,2388,"[\""Headphones\""]",654.98,{},148407,1,"""Africa""" +2023-02-27,62693,7196,"[\""Keyboard\"", \""Charger\""]",1459.12,"{\"": \""12%\""}",262008,0,"""South America""" +2024-10-03,62694,7339,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3811.97,"{\""seasonal\"": \""12%\""}",240752,1,"""Asia""" +2024-05-16,62695,5583,"[\""Wireless Mouse\""]",2531.0,"{\""seasonal\"": \""14%\""}",224330,0,"""North America""" +2023-11-01,62696,1662,"[\""Laptop\"", \""Monitor\""]",3884.45,"{\"": \""6%\""}",209549,1,"""Africa""" +2024-11-20,62697,7598,"[\""Headphones\"", \""Keyboard\""]",1377.09,"{\""promo\"": \""7%\""}",210211,1,"""Asia""" +2023-08-08,62698,1509,"[\""Phone\"", \""Tablet\""]",3447.86,{},196577,0,"""North America""" +2023-06-19,62699,2077,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1531.93,"{\""seasonal\"": \""25%\""}",188716,1,"""North America""" +2023-12-05,62700,2942,"[\""Laptop\"", \""Phone\""]",4324.04,{},129728,1,"""Asia""" +2023-04-14,62701,8997,"[\""Phone\""]",164.79,"{\""promo\"": \""27%\""}",196080,0,"""South America""" +2024-07-07,62702,9274,"[\""Tablet\"", \""Charger\""]",1182.6,"{\""promo\"": \""22%\""}",182364,0,"""South America""" +2024-04-14,62703,3076,"[\""Wireless Mouse\""]",3057.1,"{\""promo\"": \""23%\""}",188550,1,"""South America""" +2023-04-14,62704,4111,"[\""Wireless Mouse\""]",3727.67,"{\""promo\"": \""20%\""}",2201,0,"""Asia""" +2024-02-11,62705,2138,"[\""Charger\"", \""Wireless Mouse\""]",1701.12,"{\""promo\"": \""18%\""}",92496,0,"""Asia""" +2024-11-28,62706,8817,"[\""Laptop\"", \""Phone\""]",4635.15,{},242567,1,"""South America""" +2024-06-26,62707,6742,"[\""Monitor\""]",2964.89,"{\""promo\"": \""13%\""}",17435,1,"""Africa""" +2024-05-23,62708,8046,"[\""Laptop\"", \""Headphones\""]",1305.1,{},224937,0,"""North America""" +2023-07-06,62709,6186,"[\""Phone\""]",2531.28,"{\""promo\"": \""26%\""}",121181,0,"""North America""" +2023-01-08,62710,448,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4564.02,{},91875,0,"""North America""" +2024-01-09,62711,2122,"[\""Keyboard\"", \""Laptop\""]",1604.52,{},49003,0,"""Europe""" +2024-04-27,62712,229,"[\""Tablet\""]",3261.85,"{\""loyalty\"": \""7%\""}",234162,0,"""North America""" +2024-10-31,62713,4943,"[\""Monitor\"", \""Charger\""]",4619.1,"{\""seasonal\"": \""27%\""}",160552,0,"""North America""" +2023-03-13,62714,9174,"[\""Monitor\"", \""Laptop\""]",1806.95,"{\"": \""9%\""}",251445,1,"""Asia""" +2024-03-13,62715,1605,"[\""Charger\"", \""Phone\""]",3691.42,"{\"": \""24%\""}",49909,1,"""North America""" +2023-02-20,62716,4349,"[\""Laptop\"", \""Keyboard\""]",4463.04,{},149902,0,"""North America""" +2023-01-11,62717,5893,"[\""Headphones\"", \""Tablet\""]",3189.54,"{\""loyalty\"": \""13%\""}",158728,0,"""North America""" +2024-05-20,62718,3981,"[\""Phone\"", \""Keyboard\""]",2703.8,"{\""seasonal\"": \""18%\""}",33558,0,"""Asia""" +2023-05-05,62719,950,"[\""Monitor\""]",725.39,{},77843,0,"""South America""" +2023-06-04,62720,7566,"[\""Tablet\"", \""Wireless Mouse\""]",3975.74,"{\""promo\"": \""14%\""}",210111,1,"""Europe""" +2023-11-21,62721,1064,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3370.6,"{\""loyalty\"": \""30%\""}",147558,1,"""Africa""" +2024-08-16,62722,6550,"[\""Monitor\""]",4222.48,{},287645,0,"""Asia""" +2024-11-02,62723,1993,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3294.13,"{\""promo\"": \""28%\""}",46347,0,"""North America""" +2024-08-31,62724,7874,"[\""Headphones\""]",4881.88,{},43460,0,"""North America""" +2024-03-17,62725,1114,"[\""Tablet\"", \""Phone\""]",4307.36,"{\"": \""17%\""}",281709,1,"""Africa""" +2024-04-10,62726,9818,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2019.9,{},231345,1,"""South America""" +2023-04-10,62727,4389,"[\""Headphones\"", \""Monitor\""]",856.51,"{\"": \""16%\""}",59340,0,"""North America""" +2023-04-28,62728,5557,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4404.67,{},269856,0,"""Asia""" +2023-12-07,62729,3302,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4715.39,"{\""promo\"": \""10%\""}",79896,0,"""South America""" +2023-07-14,62730,6064,"[\""Monitor\"", \""Laptop\""]",521.2,{},215738,0,"""Asia""" +2023-12-07,62731,4980,"[\""Tablet\""]",1333.58,{},136838,1,"""Asia""" +2024-03-25,62732,1467,"[\""Wireless Mouse\""]",3504.12,{},242671,1,"""North America""" +2023-08-01,62733,5716,"[\""Charger\""]",1003.75,"{\""loyalty\"": \""5%\""}",152414,0,"""Asia""" +2024-08-10,62734,2254,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",230.69,"{\""seasonal\"": \""20%\""}",22733,1,"""Africa""" +2024-02-08,62735,4001,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1045.71,{},1170,0,"""Africa""" +2024-01-15,62736,2541,"[\""Laptop\""]",1379.05,{},87717,1,"""Asia""" +2024-04-23,62737,6165,"[\""Charger\""]",1652.49,{},163482,0,"""Europe""" +2024-06-11,62738,1568,"[\""Wireless Mouse\""]",4580.8,"{\""seasonal\"": \""30%\""}",292724,0,"""South America""" +2024-11-28,62739,6105,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1230.41,"{\""promo\"": \""26%\""}",13304,0,"""South America""" +2023-09-29,62740,4321,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3089.58,{},7938,1,"""North America""" +2024-01-25,62741,7913,"[\""Tablet\""]",2946.4,"{\""seasonal\"": \""26%\""}",235700,1,"""South America""" +2023-08-15,62742,3886,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2570.37,{},44382,1,"""North America""" +2024-02-11,62743,9550,"[\""Laptop\""]",1906.44,{},4673,0,"""Asia""" +2024-10-02,62744,6065,"[\""Laptop\"", \""Keyboard\""]",1922.48,"{\""loyalty\"": \""30%\""}",69674,0,"""Europe""" +2023-10-27,62745,179,"[\""Keyboard\"", \""Phone\""]",270.42,"{\""seasonal\"": \""13%\""}",1078,1,"""Africa""" +2024-03-30,62746,629,"[\""Wireless Mouse\""]",4429.73,"{\"": \""15%\""}",282032,0,"""Asia""" +2023-05-04,62747,3537,"[\""Laptop\"", \""Tablet\""]",1281.46,"{\""promo\"": \""19%\""}",132486,0,"""Asia""" +2023-12-13,62748,6224,"[\""Keyboard\""]",3994.64,{},204989,0,"""North America""" +2023-03-21,62749,5817,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",728.63,"{\""promo\"": \""25%\""}",129227,0,"""Africa""" +2024-01-22,62750,6734,"[\""Laptop\""]",385.3,"{\""promo\"": \""25%\""}",4687,0,"""Asia""" +2024-09-02,62751,5681,"[\""Charger\"", \""Monitor\""]",984.99,{},33425,1,"""South America""" +2023-07-27,62752,9097,"[\""Laptop\""]",4216.69,"{\""promo\"": \""12%\""}",214943,1,"""Asia""" +2024-07-05,62753,9112,"[\""Keyboard\"", \""Phone\""]",3866.19,"{\"": \""8%\""}",8607,1,"""Asia""" +2023-02-11,62754,5111,"[\""Headphones\"", \""Tablet\""]",722.57,{},103748,0,"""North America""" +2023-08-01,62755,8200,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3334.24,{},219985,1,"""Africa""" +2024-02-13,62756,7332,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3152.52,"{\""promo\"": \""19%\""}",38426,0,"""Europe""" +2023-10-04,62757,3317,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1306.88,"{\""loyalty\"": \""29%\""}",116697,0,"""North America""" +2023-10-18,62758,9950,"[\""Charger\""]",3629.64,{},235195,0,"""Europe""" +2023-07-10,62759,6212,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4824.59,{},151071,0,"""Europe""" +2024-01-15,62760,7054,"[\""Headphones\"", \""Phone\""]",1052.33,{},119542,1,"""South America""" +2024-06-12,62761,6005,"[\""Laptop\"", \""Phone\""]",324.32,"{\""promo\"": \""5%\""}",216425,1,"""South America""" +2024-10-30,62762,9335,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3602.18,{},128807,1,"""North America""" +2024-11-20,62763,3016,"[\""Phone\""]",1870.58,"{\""seasonal\"": \""16%\""}",30017,1,"""Asia""" +2023-07-27,62764,3745,"[\""Laptop\""]",3352.59,{},226062,1,"""Europe""" +2023-10-12,62765,2840,"[\""Monitor\"", \""Headphones\""]",2423.84,{},25060,1,"""Europe""" +2024-07-05,62766,4211,"[\""Wireless Mouse\""]",3182.78,{},189005,0,"""North America""" +2024-01-08,62767,9490,"[\""Charger\""]",3246.51,"{\""loyalty\"": \""12%\""}",168476,0,"""Africa""" +2024-07-15,62768,7540,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2299.05,"{\""seasonal\"": \""17%\""}",89137,1,"""South America""" +2023-05-03,62769,1323,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2312.73,"{\""promo\"": \""7%\""}",287106,1,"""Africa""" +2024-12-02,62770,5176,"[\""Keyboard\""]",2530.11,"{\""promo\"": \""11%\""}",98464,1,"""South America""" +2024-04-25,62771,5621,"[\""Keyboard\""]",3013.54,"{\"": \""27%\""}",215523,0,"""Africa""" +2023-07-23,62772,1062,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3371.35,{},146331,0,"""North America""" +2023-07-20,62773,4694,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4411.54,"{\""seasonal\"": \""12%\""}",297730,0,"""Europe""" +2023-08-26,62774,7676,"[\""Headphones\"", \""Keyboard\""]",1858.71,"{\""seasonal\"": \""17%\""}",179811,0,"""Europe""" +2023-10-30,62775,2761,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2874.96,{},33976,1,"""Asia""" +2024-11-24,62776,4876,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3971.17,"{\""loyalty\"": \""7%\""}",43795,0,"""North America""" +2024-10-03,62777,2058,"[\""Charger\"", \""Monitor\""]",2041.39,"{\""promo\"": \""22%\""}",62961,0,"""Africa""" +2024-01-25,62778,5950,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",234.99,"{\""seasonal\"": \""11%\""}",162808,1,"""North America""" +2023-12-20,62779,462,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",78.96,{},122961,0,"""South America""" +2024-02-07,62780,9699,"[\""Laptop\""]",1283.56,{},271300,1,"""South America""" +2024-12-31,62781,5596,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2598.22,"{\"": \""30%\""}",3486,0,"""North America""" +2024-04-01,62782,5568,"[\""Wireless Mouse\"", \""Keyboard\""]",2711.87,{},293968,0,"""North America""" +2023-10-15,62783,3830,"[\""Charger\""]",1528.71,{},199081,1,"""Africa""" +2023-10-13,62784,7237,"[\""Keyboard\""]",4686.01,{},59191,0,"""Asia""" +2024-10-24,62785,416,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1741.46,{},283161,0,"""Europe""" +2024-04-22,62786,3439,"[\""Tablet\""]",4386.26,"{\""loyalty\"": \""29%\""}",200957,1,"""Asia""" +2023-03-09,62787,7114,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",647.81,"{\""loyalty\"": \""5%\""}",34947,1,"""South America""" +2023-08-01,62788,9641,"[\""Laptop\""]",4022.44,{},68278,0,"""Africa""" +2023-01-09,62789,7261,"[\""Laptop\""]",1425.13,"{\""promo\"": \""29%\""}",263448,0,"""Europe""" +2023-10-09,62790,600,"[\""Laptop\""]",1031.92,{},51134,0,"""South America""" +2023-07-11,62791,3,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1817.19,{},191559,0,"""Africa""" +2023-01-14,62792,2030,"[\""Tablet\""]",565.81,"{\""loyalty\"": \""27%\""}",151239,0,"""Africa""" +2024-09-26,62793,812,"[\""Tablet\""]",854.15,{},81114,0,"""Africa""" +2024-11-10,62794,9829,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2613.72,{},25634,0,"""Asia""" +2023-10-20,62795,4610,"[\""Headphones\"", \""Charger\""]",3970.9,{},32955,1,"""South America""" +2023-09-30,62796,9036,"[\""Monitor\"", \""Headphones\""]",2640.29,{},77704,0,"""Europe""" +2023-03-28,62797,8175,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3134.18,"{\""seasonal\"": \""30%\""}",149914,0,"""South America""" +2024-10-31,62798,9825,"[\""Keyboard\"", \""Tablet\""]",1509.97,{},80062,0,"""South America""" +2023-08-02,62799,1034,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1871.45,"{\""seasonal\"": \""7%\""}",297839,0,"""Asia""" +2023-01-04,62800,9644,"[\""Monitor\"", \""Keyboard\""]",4368.81,{},99228,1,"""Europe""" +2023-10-28,62801,6620,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1223.01,{},262578,0,"""Africa""" +2024-11-12,62802,4525,"[\""Phone\"", \""Headphones\""]",2821.11,"{\""seasonal\"": \""23%\""}",173372,0,"""South America""" +2024-06-08,62803,8124,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",179.74,"{\""promo\"": \""7%\""}",23377,1,"""South America""" +2023-10-11,62804,924,"[\""Charger\"", \""Wireless Mouse\""]",4179.15,"{\""promo\"": \""9%\""}",44880,0,"""Asia""" +2023-04-02,62805,9895,"[\""Tablet\"", \""Laptop\""]",124.89,{},237883,1,"""North America""" +2024-07-11,62806,6587,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2726.59,{},182162,0,"""Africa""" +2023-07-13,62807,1064,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2870.24,"{\"": \""11%\""}",107893,0,"""North America""" +2024-01-04,62808,100,"[\""Phone\""]",205.64,"{\""seasonal\"": \""26%\""}",168084,0,"""North America""" +2024-12-16,62809,944,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1471.62,{},220725,1,"""Africa""" +2023-08-03,62810,7683,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2921.92,{},255084,0,"""Asia""" +2024-11-08,62811,5069,"[\""Phone\""]",4735.04,{},222553,0,"""Asia""" +2023-08-21,62812,5037,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2989.23,{},87752,0,"""Europe""" +2023-05-17,62813,199,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1726.26,{},98996,1,"""Asia""" +2024-05-22,62814,6942,"[\""Wireless Mouse\"", \""Tablet\""]",2923.9,"{\""seasonal\"": \""25%\""}",212071,0,"""North America""" +2023-11-11,62815,4013,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3145.0,"{\"": \""26%\""}",17356,1,"""Europe""" +2024-09-01,62816,359,"[\""Charger\""]",3513.46,{},190669,0,"""Europe""" +2024-08-13,62817,4742,"[\""Keyboard\""]",3595.28,{},115216,1,"""South America""" +2024-02-06,62818,214,"[\""Laptop\"", \""Keyboard\""]",4495.35,{},139512,0,"""Asia""" +2024-02-05,62819,2778,"[\""Keyboard\"", \""Wireless Mouse\""]",3615.98,{},28666,1,"""Asia""" +2023-11-16,62820,3215,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",638.38,"{\""seasonal\"": \""11%\""}",127166,0,"""North America""" +2024-11-29,62821,8328,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3247.27,{},232189,0,"""North America""" +2024-07-25,62822,1464,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1626.8,{},97975,0,"""North America""" +2023-06-02,62823,5345,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",701.14,{},298098,1,"""Europe""" +2024-07-11,62824,6366,"[\""Monitor\""]",3608.5,{},83310,1,"""South America""" +2023-01-09,62825,426,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4225.55,"{\""seasonal\"": \""26%\""}",259713,1,"""South America""" +2023-07-27,62826,8978,"[\""Wireless Mouse\""]",3727.14,{},18541,1,"""Africa""" +2024-11-05,62827,7638,"[\""Tablet\""]",235.19,"{\""promo\"": \""8%\""}",72309,1,"""Asia""" +2023-01-19,62828,4257,"[\""Phone\"", \""Headphones\""]",2999.9,"{\"": \""20%\""}",263358,1,"""South America""" +2023-06-28,62829,2048,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3999.14,"{\""seasonal\"": \""20%\""}",27350,0,"""Asia""" +2023-05-22,62830,2251,"[\""Tablet\""]",70.95,{},104716,1,"""Asia""" +2023-06-09,62831,4233,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4509.85,"{\"": \""21%\""}",189332,0,"""South America""" +2024-02-11,62832,4163,"[\""Keyboard\"", \""Tablet\""]",1645.34,{},237419,1,"""Asia""" +2024-01-13,62833,4967,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1541.22,"{\""promo\"": \""30%\""}",4377,1,"""North America""" +2024-12-05,62834,5118,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1443.15,{},218586,0,"""Africa""" +2023-06-04,62835,637,"[\""Charger\""]",593.16,{},43135,0,"""Europe""" +2024-05-29,62836,9912,"[\""Headphones\"", \""Laptop\""]",454.6,"{\""seasonal\"": \""7%\""}",74168,0,"""Europe""" +2024-06-15,62837,7045,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4493.59,{},264679,1,"""North America""" +2024-01-19,62838,1957,"[\""Phone\"", \""Keyboard\""]",1147.09,{},195446,1,"""Europe""" +2024-05-05,62839,6991,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3839.47,{},291292,1,"""Asia""" +2023-10-19,62840,1765,"[\""Headphones\"", \""Keyboard\""]",1367.06,{},244780,1,"""Europe""" +2024-04-29,62841,5861,"[\""Wireless Mouse\""]",2419.96,"{\"": \""28%\""}",61209,1,"""South America""" +2024-06-24,62842,3252,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1428.67,"{\"": \""25%\""}",299990,1,"""South America""" +2023-03-22,62843,9169,"[\""Headphones\""]",1751.28,{},126102,1,"""Europe""" +2023-08-19,62844,8661,"[\""Tablet\""]",2218.99,"{\""loyalty\"": \""6%\""}",106569,0,"""South America""" +2023-04-28,62845,9275,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2844.71,"{\""loyalty\"": \""21%\""}",259504,1,"""Asia""" +2023-03-18,62846,4446,"[\""Charger\"", \""Laptop\""]",3459.99,{},209770,0,"""North America""" +2023-10-28,62847,8546,"[\""Phone\"", \""Keyboard\""]",2373.19,{},296784,1,"""Asia""" +2024-01-20,62848,5705,"[\""Wireless Mouse\"", \""Phone\""]",1909.37,"{\"": \""13%\""}",111491,1,"""South America""" +2024-01-16,62849,2561,"[\""Charger\"", \""Laptop\""]",3580.57,"{\"": \""6%\""}",133040,0,"""North America""" +2023-02-01,62850,3889,"[\""Phone\"", \""Wireless Mouse\""]",3376.11,{},266436,0,"""Europe""" +2024-03-02,62851,5476,"[\""Tablet\"", \""Phone\""]",594.59,"{\""loyalty\"": \""21%\""}",98177,0,"""Asia""" +2023-03-14,62852,3180,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",913.76,{},234605,1,"""Asia""" +2024-11-17,62853,9002,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3158.46,"{\""promo\"": \""28%\""}",99367,0,"""Africa""" +2024-12-09,62854,8843,"[\""Wireless Mouse\"", \""Headphones\""]",3730.19,"{\""loyalty\"": \""21%\""}",95303,1,"""Asia""" +2024-08-31,62855,3197,"[\""Charger\"", \""Monitor\""]",1024.17,"{\"": \""16%\""}",61915,1,"""North America""" +2023-04-03,62856,3455,"[\""Charger\"", \""Laptop\""]",2084.59,"{\""loyalty\"": \""9%\""}",248604,1,"""Africa""" +2023-07-02,62857,474,"[\""Tablet\""]",1378.58,{},251107,1,"""Europe""" +2024-02-19,62858,2943,"[\""Keyboard\""]",55.21,"{\"": \""20%\""}",20652,0,"""North America""" +2024-08-28,62859,379,"[\""Phone\"", \""Tablet\""]",923.69,{},74635,1,"""Asia""" +2024-06-19,62860,5599,"[\""Monitor\""]",267.85,{},103494,0,"""Africa""" +2024-02-18,62861,4026,"[\""Wireless Mouse\"", \""Laptop\""]",1521.04,"{\"": \""7%\""}",7169,1,"""Africa""" +2024-04-19,62862,5843,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",162.42,{},17584,1,"""Africa""" +2024-07-24,62863,2650,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",708.3,"{\""loyalty\"": \""18%\""}",148278,1,"""Europe""" +2023-07-15,62864,139,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2421.24,{},199848,1,"""Europe""" +2023-02-17,62865,4163,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3762.1,{},275387,0,"""Europe""" +2023-09-22,62866,1536,"[\""Wireless Mouse\"", \""Headphones\""]",4115.8,"{\"": \""6%\""}",261372,0,"""Asia""" +2024-12-26,62867,8914,"[\""Keyboard\""]",3460.7,{},57282,0,"""Africa""" +2024-03-27,62868,9259,"[\""Tablet\"", \""Monitor\""]",4935.56,"{\"": \""23%\""}",268268,0,"""South America""" +2023-09-15,62869,2566,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3696.03,"{\""promo\"": \""12%\""}",29153,1,"""Europe""" +2024-03-02,62870,6426,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3424.86,"{\""loyalty\"": \""12%\""}",288752,0,"""Asia""" +2023-03-11,62871,6506,"[\""Tablet\"", \""Phone\""]",691.29,"{\""seasonal\"": \""27%\""}",243872,1,"""Europe""" +2024-07-24,62872,1111,"[\""Headphones\"", \""Tablet\""]",1327.77,{},186275,1,"""Africa""" +2024-12-29,62873,3347,"[\""Keyboard\""]",1546.76,{},166970,1,"""Africa""" +2023-08-12,62874,9563,"[\""Phone\"", \""Laptop\""]",2129.4,{},275150,1,"""Africa""" +2024-03-28,62875,5742,"[\""Phone\"", \""Laptop\""]",1713.07,{},129145,1,"""South America""" +2023-11-09,62876,3414,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3570.07,"{\""seasonal\"": \""28%\""}",177262,0,"""Europe""" +2024-08-15,62877,6952,"[\""Keyboard\"", \""Headphones\""]",1537.42,{},190979,1,"""Europe""" +2024-10-16,62878,284,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",97.79,"{\""loyalty\"": \""29%\""}",33466,0,"""Africa""" +2023-11-20,62879,1022,"[\""Wireless Mouse\"", \""Laptop\""]",4876.46,"{\"": \""13%\""}",36596,1,"""North America""" +2023-04-19,62880,7367,"[\""Keyboard\"", \""Phone\""]",3024.32,"{\""seasonal\"": \""15%\""}",251859,1,"""North America""" +2024-06-19,62881,6762,"[\""Tablet\"", \""Charger\""]",909.32,{},285724,1,"""North America""" +2024-05-26,62882,4632,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2455.62,"{\""loyalty\"": \""24%\""}",294433,1,"""South America""" +2024-07-21,62883,7530,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",635.06,{},113359,1,"""North America""" +2023-03-10,62884,5122,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3012.8,"{\""loyalty\"": \""15%\""}",50217,0,"""Asia""" +2023-09-29,62885,9078,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1024.58,{},164476,0,"""North America""" +2024-01-01,62886,9798,"[\""Phone\"", \""Tablet\""]",4376.37,"{\""loyalty\"": \""29%\""}",115347,0,"""Europe""" +2023-06-22,62887,3413,"[\""Keyboard\"", \""Charger\""]",2661.92,{},290970,0,"""North America""" +2023-08-12,62888,5488,"[\""Wireless Mouse\""]",4271.47,"{\""loyalty\"": \""25%\""}",238197,1,"""Europe""" +2024-03-29,62889,3214,"[\""Laptop\"", \""Headphones\""]",1134.92,{},297629,1,"""Europe""" +2023-03-02,62890,1100,"[\""Monitor\"", \""Tablet\""]",1422.77,"{\""promo\"": \""13%\""}",227975,0,"""Africa""" +2023-08-14,62891,9057,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4194.38,{},249140,0,"""Europe""" +2023-08-24,62892,8616,"[\""Monitor\""]",1982.61,"{\"": \""21%\""}",289537,0,"""Africa""" +2024-03-31,62893,8124,"[\""Charger\""]",3878.67,"{\""seasonal\"": \""8%\""}",26064,0,"""Africa""" +2024-07-24,62894,3494,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1710.04,"{\""seasonal\"": \""14%\""}",131846,0,"""Asia""" +2023-09-04,62895,3659,"[\""Laptop\"", \""Headphones\""]",4898.13,{},27278,1,"""South America""" +2023-08-10,62896,1580,"[\""Laptop\""]",4516.27,"{\""loyalty\"": \""5%\""}",280109,1,"""Asia""" +2023-06-11,62897,77,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1514.24,"{\"": \""10%\""}",67789,1,"""Europe""" +2024-02-19,62898,1730,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1925.51,{},60972,1,"""Africa""" +2023-06-01,62899,4223,"[\""Charger\"", \""Phone\""]",1504.91,"{\"": \""29%\""}",291306,1,"""Europe""" +2023-05-09,62900,5600,"[\""Wireless Mouse\"", \""Monitor\""]",370.22,{},177471,0,"""Africa""" +2024-02-02,62901,9528,"[\""Keyboard\""]",3048.35,"{\""seasonal\"": \""23%\""}",32721,1,"""North America""" +2024-04-25,62902,8155,"[\""Keyboard\""]",1453.12,"{\""loyalty\"": \""6%\""}",218667,1,"""Asia""" +2023-10-03,62903,6087,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1124.47,{},239734,0,"""North America""" +2023-10-07,62904,7967,"[\""Wireless Mouse\"", \""Headphones\""]",2154.99,{},200962,1,"""North America""" +2024-11-24,62905,3825,"[\""Wireless Mouse\""]",4746.25,"{\""promo\"": \""24%\""}",109496,0,"""Europe""" +2024-05-14,62906,482,"[\""Charger\"", \""Monitor\""]",4490.05,{},219187,0,"""South America""" +2023-09-24,62907,4130,"[\""Charger\"", \""Tablet\""]",2841.64,{},81687,1,"""North America""" +2024-02-22,62908,4002,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3806.06,"{\""seasonal\"": \""12%\""}",128228,1,"""Asia""" +2023-10-10,62909,414,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",130.5,{},118898,1,"""Africa""" +2024-07-09,62910,1757,"[\""Wireless Mouse\"", \""Headphones\""]",457.47,"{\""promo\"": \""21%\""}",64538,0,"""South America""" +2023-08-27,62911,6902,"[\""Monitor\""]",2860.48,"{\""seasonal\"": \""16%\""}",39610,1,"""Asia""" +2023-10-22,62912,1132,"[\""Phone\""]",523.11,{},65885,0,"""Europe""" +2023-04-16,62913,1772,"[\""Phone\"", \""Charger\""]",4890.56,"{\""seasonal\"": \""30%\""}",236630,1,"""South America""" +2024-09-07,62914,2672,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3859.27,"{\""promo\"": \""28%\""}",248830,0,"""Asia""" +2024-09-04,62915,6052,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",388.84,{},243672,0,"""South America""" +2024-10-11,62916,8460,"[\""Charger\"", \""Headphones\""]",2633.3,"{\""loyalty\"": \""16%\""}",242547,1,"""Europe""" +2023-09-02,62917,803,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",535.14,"{\""promo\"": \""15%\""}",106177,1,"""North America""" +2024-05-25,62918,6492,"[\""Keyboard\""]",3698.36,{},222458,0,"""South America""" +2024-01-06,62919,5857,"[\""Keyboard\""]",2422.16,{},7771,0,"""North America""" +2024-10-05,62920,4672,"[\""Monitor\""]",3182.22,"{\""seasonal\"": \""19%\""}",23026,1,"""Asia""" +2024-07-01,62921,6798,"[\""Phone\""]",1424.41,{},200563,1,"""Africa""" +2023-03-25,62922,6605,"[\""Headphones\""]",244.78,"{\""loyalty\"": \""13%\""}",208317,0,"""Asia""" +2023-12-29,62923,8261,"[\""Tablet\"", \""Headphones\""]",4820.98,"{\""loyalty\"": \""13%\""}",172917,0,"""Africa""" +2023-07-07,62924,2230,"[\""Headphones\""]",1233.4,"{\""loyalty\"": \""20%\""}",41699,1,"""North America""" +2024-11-11,62925,1114,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",791.3,"{\""seasonal\"": \""19%\""}",108490,1,"""Europe""" +2024-10-31,62926,1562,"[\""Monitor\"", \""Keyboard\""]",3308.04,{},124881,1,"""Europe""" +2024-12-09,62927,790,"[\""Wireless Mouse\""]",4696.78,{},268924,1,"""Africa""" +2024-11-02,62928,7193,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2112.55,"{\"": \""5%\""}",281483,0,"""Africa""" +2023-03-09,62929,2159,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4400.71,"{\""loyalty\"": \""10%\""}",103155,0,"""South America""" +2023-04-21,62930,4317,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2768.26,{},262469,1,"""Africa""" +2024-11-14,62931,7045,"[\""Charger\""]",3844.19,"{\""seasonal\"": \""19%\""}",144242,1,"""Europe""" +2024-07-21,62932,8035,"[\""Headphones\""]",4006.96,{},266565,0,"""Europe""" +2023-08-16,62933,9682,"[\""Wireless Mouse\"", \""Tablet\""]",819.31,{},92962,1,"""South America""" +2023-09-23,62934,5382,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",135.07,{},167525,1,"""South America""" +2023-07-14,62935,9714,"[\""Keyboard\""]",152.45,"{\"": \""19%\""}",2441,1,"""Asia""" +2023-08-12,62936,2487,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1213.67,"{\""loyalty\"": \""21%\""}",276730,1,"""Europe""" +2023-04-20,62937,9942,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2154.19,"{\"": \""25%\""}",151190,1,"""North America""" +2023-07-03,62938,382,"[\""Wireless Mouse\"", \""Charger\""]",4292.91,{},195772,1,"""Europe""" +2023-10-31,62939,9740,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",489.84,{},233615,1,"""Asia""" +2023-11-24,62940,8939,"[\""Charger\""]",109.33,"{\""loyalty\"": \""8%\""}",195218,1,"""Africa""" +2024-04-09,62941,5127,"[\""Phone\"", \""Headphones\""]",2174.68,"{\"": \""11%\""}",134158,1,"""South America""" +2024-07-06,62942,5218,"[\""Charger\""]",1115.3,{},107757,1,"""South America""" +2024-10-11,62943,1189,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4498.38,"{\""promo\"": \""25%\""}",248637,0,"""South America""" +2023-01-25,62944,1398,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2656.81,"{\""promo\"": \""14%\""}",113998,1,"""South America""" +2024-10-08,62945,5862,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1642.09,{},167528,1,"""North America""" +2023-10-25,62946,2247,"[\""Phone\""]",804.66,{},193618,1,"""Asia""" +2023-02-25,62947,2640,"[\""Keyboard\""]",1124.22,"{\""loyalty\"": \""29%\""}",51354,0,"""North America""" +2024-07-21,62948,8111,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4442.17,{},14892,0,"""North America""" +2023-10-20,62949,1960,"[\""Headphones\""]",1411.03,{},115117,0,"""North America""" +2023-08-18,62950,2363,"[\""Monitor\"", \""Phone\""]",4132.07,{},144417,0,"""Asia""" +2023-11-14,62951,2027,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4412.28,"{\""seasonal\"": \""11%\""}",198866,0,"""South America""" +2024-07-04,62952,4033,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2969.35,{},259358,1,"""Europe""" +2024-05-21,62953,8985,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1724.42,{},72536,0,"""Asia""" +2024-09-23,62954,5540,"[\""Laptop\"", \""Phone\""]",485.16,"{\""loyalty\"": \""29%\""}",146491,1,"""Africa""" +2023-09-19,62955,9298,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3869.62,"{\""loyalty\"": \""30%\""}",255396,0,"""South America""" +2024-02-13,62956,4754,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3453.4,"{\""seasonal\"": \""23%\""}",152872,0,"""Europe""" +2023-06-05,62957,9183,"[\""Tablet\"", \""Monitor\""]",3530.34,{},126532,0,"""North America""" +2024-07-29,62958,3310,"[\""Headphones\"", \""Charger\""]",1470.74,{},110131,0,"""Asia""" +2023-01-19,62959,755,"[\""Monitor\"", \""Keyboard\""]",3209.16,"{\"": \""20%\""}",264088,0,"""Africa""" +2024-12-19,62960,976,"[\""Headphones\""]",3142.66,"{\""loyalty\"": \""28%\""}",189376,1,"""Asia""" +2024-02-27,62961,8869,"[\""Phone\""]",3758.05,{},155219,0,"""North America""" +2024-11-12,62962,6497,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",124.09,"{\"": \""12%\""}",117813,1,"""Africa""" +2023-06-07,62963,2994,"[\""Headphones\"", \""Keyboard\""]",797.43,{},119875,1,"""South America""" +2024-12-06,62964,6230,"[\""Monitor\""]",3812.26,{},67459,1,"""Europe""" +2023-02-26,62965,8783,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",445.26,{},230341,0,"""South America""" +2023-04-30,62966,3046,"[\""Keyboard\""]",267.92,{},244704,0,"""Africa""" +2024-05-09,62967,9553,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3902.35,{},160463,1,"""Europe""" +2024-09-11,62968,7211,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3223.42,"{\""promo\"": \""16%\""}",169070,1,"""Europe""" +2023-06-19,62969,397,"[\""Phone\""]",4940.5,"{\""seasonal\"": \""28%\""}",26764,1,"""Africa""" +2023-06-13,62970,7181,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1517.89,"{\""promo\"": \""19%\""}",199055,0,"""Africa""" +2023-06-19,62971,5534,"[\""Tablet\"", \""Keyboard\""]",4249.0,{},150887,0,"""Europe""" +2024-02-04,62972,4081,"[\""Monitor\""]",1143.59,{},8085,1,"""Europe""" +2023-09-10,62973,240,"[\""Charger\""]",403.27,{},52877,0,"""Asia""" +2023-08-29,62974,9581,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3644.27,"{\""loyalty\"": \""16%\""}",100203,1,"""South America""" +2024-09-17,62975,2382,"[\""Headphones\"", \""Phone\""]",4416.1,"{\""promo\"": \""10%\""}",15677,0,"""South America""" +2024-04-10,62976,295,"[\""Keyboard\"", \""Laptop\""]",919.93,"{\""promo\"": \""20%\""}",235200,0,"""Europe""" +2023-01-01,62977,319,"[\""Laptop\""]",2894.69,"{\"": \""22%\""}",113413,1,"""South America""" +2023-04-02,62978,3681,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1672.26,"{\""seasonal\"": \""30%\""}",87505,0,"""South America""" +2024-02-02,62979,2159,"[\""Keyboard\""]",3242.2,{},127660,1,"""North America""" +2023-03-26,62980,6475,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3908.81,{},262430,1,"""Asia""" +2024-11-07,62981,449,"[\""Wireless Mouse\""]",4126.98,{},215570,0,"""Africa""" +2023-09-26,62982,4963,"[\""Phone\"", \""Tablet\""]",3343.52,{},10103,1,"""Africa""" +2024-03-10,62983,4999,"[\""Laptop\""]",4429.33,{},269001,1,"""Asia""" +2024-01-13,62984,9068,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",465.57,{},240533,1,"""Asia""" +2023-01-12,62985,2534,"[\""Keyboard\""]",3123.29,"{\"": \""25%\""}",43523,1,"""Africa""" +2023-02-28,62986,9013,"[\""Phone\""]",273.52,"{\""promo\"": \""14%\""}",293528,1,"""Africa""" +2024-08-14,62987,8535,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2763.96,{},42751,1,"""North America""" +2024-10-07,62988,5510,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1627.99,{},143270,0,"""Africa""" +2024-10-02,62989,201,"[\""Tablet\"", \""Keyboard\""]",1956.57,"{\""loyalty\"": \""23%\""}",281774,0,"""North America""" +2024-08-12,62990,1113,"[\""Keyboard\""]",1409.58,"{\""seasonal\"": \""9%\""}",255610,1,"""Africa""" +2023-06-25,62991,2686,"[\""Laptop\""]",75.99,{},21449,0,"""Asia""" +2023-10-21,62992,572,"[\""Laptop\"", \""Tablet\""]",1058.52,"{\""loyalty\"": \""18%\""}",144030,0,"""Asia""" +2024-11-09,62993,2510,"[\""Monitor\"", \""Laptop\""]",169.22,{},3938,0,"""South America""" +2024-10-10,62994,9065,"[\""Headphones\""]",3904.08,"{\""promo\"": \""9%\""}",151932,1,"""South America""" +2024-03-10,62995,1514,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4638.1,"{\""seasonal\"": \""28%\""}",231805,1,"""North America""" +2023-10-02,62996,8127,"[\""Headphones\""]",959.83,"{\"": \""25%\""}",69216,1,"""South America""" +2023-06-24,62997,1797,"[\""Phone\"", \""Laptop\""]",494.75,{},154229,0,"""North America""" +2024-03-06,62998,8540,"[\""Charger\"", \""Laptop\""]",4263.41,"{\""seasonal\"": \""11%\""}",247739,0,"""Africa""" +2023-09-23,62999,9097,"[\""Keyboard\"", \""Wireless Mouse\""]",2870.76,"{\""promo\"": \""25%\""}",296008,0,"""South America""" +2024-01-08,63000,8753,"[\""Charger\""]",1688.74,{},137743,0,"""South America""" +2023-03-15,63001,3407,"[\""Monitor\""]",3258.76,{},233081,1,"""Europe""" +2023-05-24,63002,6382,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",576.4,{},150281,0,"""Africa""" +2024-08-14,63003,1849,"[\""Tablet\""]",4542.03,"{\""loyalty\"": \""13%\""}",104475,0,"""Asia""" +2023-10-13,63004,8758,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2573.07,{},73920,0,"""Europe""" +2024-03-30,63005,4111,"[\""Headphones\"", \""Wireless Mouse\""]",3080.73,{},128323,1,"""Europe""" +2024-11-21,63006,9781,"[\""Monitor\""]",2646.4,{},177037,0,"""Asia""" +2024-03-23,63007,5690,"[\""Laptop\""]",4580.94,{},118713,0,"""Europe""" +2024-05-03,63008,99,"[\""Laptop\"", \""Phone\""]",1096.03,{},5359,1,"""North America""" +2024-03-16,63009,4314,"[\""Charger\""]",4942.49,{},20816,1,"""North America""" +2023-05-04,63010,6997,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1528.53,{},297462,0,"""South America""" +2024-12-21,63011,4483,"[\""Tablet\"", \""Charger\""]",530.66,{},196703,0,"""North America""" +2023-07-25,63012,3857,"[\""Headphones\"", \""Monitor\""]",4345.1,"{\"": \""6%\""}",75864,1,"""Africa""" +2024-03-11,63013,8937,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3130.62,{},161202,0,"""Europe""" +2023-08-15,63014,5297,"[\""Monitor\"", \""Keyboard\""]",269.99,"{\""loyalty\"": \""16%\""}",63687,1,"""Europe""" +2023-09-18,63015,1953,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1147.55,"{\"": \""22%\""}",33392,1,"""Africa""" +2024-02-26,63016,7830,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4099.91,{},190942,0,"""North America""" +2023-05-29,63017,166,"[\""Laptop\""]",3285.23,{},197490,0,"""Asia""" +2023-05-27,63018,3860,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",915.66,{},81932,0,"""North America""" +2023-01-23,63019,1093,"[\""Wireless Mouse\""]",3220.46,{},146949,1,"""Asia""" +2024-07-06,63020,817,"[\""Headphones\""]",2067.78,"{\""seasonal\"": \""16%\""}",81716,0,"""Asia""" +2023-10-01,63021,3429,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",869.06,{},270193,1,"""South America""" +2023-12-15,63022,1395,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4555.55,"{\""loyalty\"": \""27%\""}",105866,0,"""North America""" +2023-08-26,63023,6132,"[\""Headphones\""]",3972.57,{},168630,0,"""Asia""" +2024-01-23,63024,3779,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2329.09,{},168171,1,"""South America""" +2024-05-04,63025,4306,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3033.92,"{\""loyalty\"": \""8%\""}",240273,1,"""Europe""" +2024-06-19,63026,1368,"[\""Monitor\""]",4457.78,{},255134,0,"""South America""" +2024-07-14,63027,8354,"[\""Headphones\"", \""Wireless Mouse\""]",3463.62,"{\""seasonal\"": \""13%\""}",163554,1,"""South America""" +2024-07-08,63028,9019,"[\""Wireless Mouse\"", \""Headphones\""]",3090.67,{},235387,0,"""Europe""" +2023-05-24,63029,9168,"[\""Phone\""]",141.7,"{\""promo\"": \""21%\""}",139725,1,"""South America""" +2023-02-02,63030,7200,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4085.24,"{\"": \""23%\""}",173747,0,"""South America""" +2024-03-02,63031,9525,"[\""Tablet\""]",2197.12,{},198479,0,"""Europe""" +2023-08-19,63032,835,"[\""Tablet\""]",351.19,"{\""loyalty\"": \""25%\""}",90263,0,"""North America""" +2024-10-09,63033,1198,"[\""Wireless Mouse\""]",4371.31,"{\""loyalty\"": \""24%\""}",13319,0,"""Asia""" +2024-10-06,63034,1,"[\""Tablet\""]",2681.96,{},41321,1,"""North America""" +2023-09-16,63035,6138,"[\""Charger\"", \""Tablet\""]",3783.29,{},195105,0,"""South America""" +2023-08-26,63036,3402,"[\""Charger\""]",2734.1,{},99045,0,"""Asia""" +2023-11-22,63037,7592,"[\""Charger\""]",2841.91,{},211220,1,"""Africa""" +2023-02-20,63038,4217,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2521.74,"{\""seasonal\"": \""24%\""}",269333,1,"""North America""" +2023-04-22,63039,1744,"[\""Headphones\""]",4437.91,{},261002,1,"""Africa""" +2024-10-12,63040,7806,"[\""Monitor\""]",2207.4,"{\""loyalty\"": \""10%\""}",109811,0,"""Europe""" +2024-01-23,63041,1212,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",191.58,{},184170,0,"""South America""" +2024-12-30,63042,2896,"[\""Keyboard\""]",4004.81,"{\""loyalty\"": \""11%\""}",141482,1,"""Asia""" +2023-02-27,63043,2436,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1755.87,"{\""promo\"": \""21%\""}",64176,0,"""Asia""" +2023-05-30,63044,6237,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3707.52,{},194109,1,"""Europe""" +2024-11-13,63045,3005,"[\""Monitor\"", \""Laptop\""]",2070.75,{},288933,1,"""North America""" +2024-05-08,63046,8272,"[\""Charger\""]",2869.8,{},95092,0,"""Africa""" +2023-06-26,63047,5574,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",212.85,{},79289,1,"""North America""" +2023-10-19,63048,9512,"[\""Wireless Mouse\""]",1966.69,"{\""loyalty\"": \""6%\""}",92705,1,"""North America""" +2024-02-03,63049,7050,"[\""Charger\"", \""Headphones\""]",4838.01,{},225386,0,"""Asia""" +2023-04-12,63050,2446,"[\""Phone\"", \""Keyboard\""]",1505.55,"{\""promo\"": \""22%\""}",134596,0,"""South America""" +2023-07-27,63051,6157,"[\""Charger\""]",3566.05,{},170130,0,"""Africa""" +2024-10-25,63052,1741,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3636.68,"{\""promo\"": \""18%\""}",52472,0,"""South America""" +2024-10-20,63053,296,"[\""Phone\""]",4984.7,"{\""promo\"": \""8%\""}",130643,0,"""Europe""" +2024-06-12,63054,8938,"[\""Monitor\"", \""Keyboard\""]",2162.76,"{\""promo\"": \""26%\""}",247770,1,"""Asia""" +2024-08-26,63055,7766,"[\""Laptop\""]",2023.09,{},161882,0,"""Africa""" +2023-01-05,63056,7602,"[\""Headphones\""]",1051.24,{},271197,0,"""Asia""" +2023-11-03,63057,1092,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3121.46,{},174432,1,"""North America""" +2023-11-06,63058,2325,"[\""Charger\"", \""Monitor\""]",2491.78,{},136741,1,"""Asia""" +2024-08-26,63059,8031,"[\""Headphones\""]",2204.12,"{\""loyalty\"": \""12%\""}",180367,1,"""Europe""" +2024-08-29,63060,1734,"[\""Tablet\"", \""Laptop\""]",880.89,"{\""loyalty\"": \""11%\""}",30486,0,"""South America""" +2024-03-10,63061,793,"[\""Phone\""]",1169.58,"{\""loyalty\"": \""18%\""}",187631,1,"""North America""" +2024-12-06,63062,3956,"[\""Phone\"", \""Charger\""]",4992.13,"{\""promo\"": \""6%\""}",292603,0,"""Europe""" +2023-06-28,63063,4731,"[\""Charger\"", \""Keyboard\""]",2493.18,{},244097,0,"""Asia""" +2024-09-04,63064,3331,"[\""Charger\"", \""Phone\""]",2622.88,{},231217,0,"""Europe""" +2023-06-20,63065,7697,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4653.1,{},272696,1,"""Europe""" +2023-06-16,63066,9222,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3463.45,{},283922,0,"""South America""" +2023-03-18,63067,5069,"[\""Phone\"", \""Tablet\""]",1906.75,"{\""seasonal\"": \""24%\""}",261530,1,"""South America""" +2024-04-13,63068,3830,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1984.78,"{\""loyalty\"": \""26%\""}",32625,1,"""South America""" +2024-11-09,63069,3609,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",448.15,"{\""seasonal\"": \""20%\""}",215622,1,"""Europe""" +2024-06-02,63070,3894,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",360.01,{},245377,1,"""North America""" +2023-01-03,63071,9711,"[\""Phone\"", \""Charger\""]",3586.77,{},96305,1,"""Africa""" +2023-11-05,63072,5217,"[\""Headphones\"", \""Laptop\""]",3525.17,"{\"": \""8%\""}",270758,0,"""Europe""" +2024-11-09,63073,9609,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4119.14,{},148538,0,"""South America""" +2023-03-22,63074,9137,"[\""Charger\""]",1804.01,{},2912,0,"""Asia""" +2023-05-25,63075,946,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1731.13,"{\"": \""10%\""}",132583,1,"""South America""" +2023-06-21,63076,9274,"[\""Charger\"", \""Headphones\""]",1051.42,"{\""seasonal\"": \""21%\""}",241139,0,"""Asia""" +2024-03-21,63077,9310,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4428.42,"{\""loyalty\"": \""10%\""}",108156,1,"""South America""" +2023-08-08,63078,4520,"[\""Phone\""]",4983.19,{},135218,1,"""Europe""" +2023-12-17,63079,8969,"[\""Wireless Mouse\""]",2130.33,"{\""seasonal\"": \""27%\""}",242527,0,"""North America""" +2023-06-17,63080,3441,"[\""Phone\""]",881.63,{},209706,0,"""Asia""" +2024-02-29,63081,529,"[\""Charger\""]",1969.55,{},206057,0,"""Asia""" +2024-12-15,63082,6212,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1845.92,{},206192,1,"""Europe""" +2024-10-05,63083,2283,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1974.85,{},125085,0,"""Africa""" +2024-05-29,63084,3369,"[\""Monitor\""]",4006.08,{},233093,0,"""Europe""" +2024-05-23,63085,4906,"[\""Tablet\""]",4401.86,"{\""seasonal\"": \""25%\""}",71180,0,"""Africa""" +2023-07-19,63086,3524,"[\""Headphones\"", \""Laptop\""]",2843.84,"{\""seasonal\"": \""24%\""}",252652,1,"""Asia""" +2023-08-11,63087,2490,"[\""Keyboard\""]",2125.05,{},149643,0,"""South America""" +2024-09-21,63088,5255,"[\""Wireless Mouse\"", \""Monitor\""]",3883.51,{},36279,1,"""Europe""" +2024-01-29,63089,4585,"[\""Phone\"", \""Headphones\""]",2039.55,{},21805,0,"""Asia""" +2023-10-16,63090,8985,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4729.69,"{\""loyalty\"": \""13%\""}",193146,0,"""Africa""" +2024-06-28,63091,7643,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",225.65,"{\""seasonal\"": \""24%\""}",299579,1,"""South America""" +2023-11-26,63092,9897,"[\""Monitor\""]",3603.42,{},150440,1,"""South America""" +2023-03-28,63093,1053,"[\""Keyboard\"", \""Headphones\""]",2685.92,"{\"": \""7%\""}",251389,1,"""Asia""" +2023-07-23,63094,5904,"[\""Monitor\"", \""Keyboard\""]",679.37,{},100763,0,"""South America""" +2023-09-30,63095,8711,"[\""Laptop\""]",1620.3,{},71061,0,"""Asia""" +2023-08-19,63096,7890,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4758.65,{},287986,1,"""North America""" +2024-05-01,63097,9204,"[\""Keyboard\"", \""Tablet\""]",452.74,"{\""loyalty\"": \""16%\""}",280156,0,"""North America""" +2024-02-07,63098,170,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1182.3,{},225867,1,"""Europe""" +2023-10-07,63099,7159,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4561.68,{},114064,1,"""Asia""" +2024-10-05,63100,5624,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1689.61,"{\"": \""18%\""}",173271,1,"""North America""" +2024-01-06,63101,5760,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1670.39,{},170224,0,"""Africa""" +2024-12-04,63102,2640,"[\""Tablet\""]",3607.42,{},108180,0,"""Asia""" +2024-08-30,63103,8763,"[\""Tablet\"", \""Phone\""]",1347.3,"{\""promo\"": \""19%\""}",288603,0,"""North America""" +2024-03-14,63104,1931,"[\""Monitor\"", \""Tablet\""]",209.12,{},251233,1,"""South America""" +2024-08-25,63105,5573,"[\""Headphones\""]",3762.05,"{\""loyalty\"": \""16%\""}",9100,1,"""North America""" +2023-02-11,63106,5572,"[\""Wireless Mouse\""]",4575.66,{},27754,1,"""Europe""" +2023-04-30,63107,9840,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2797.15,{},286830,1,"""Europe""" +2024-12-21,63108,4363,"[\""Charger\"", \""Phone\""]",4215.2,"{\""seasonal\"": \""6%\""}",64297,0,"""Europe""" +2023-07-27,63109,7228,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3439.25,"{\""promo\"": \""30%\""}",95366,1,"""South America""" +2023-10-13,63110,5557,"[\""Wireless Mouse\""]",1502.69,"{\"": \""30%\""}",204739,1,"""Europe""" +2023-07-10,63111,5287,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2765.83,{},56291,1,"""Asia""" +2024-06-09,63112,3060,"[\""Monitor\""]",4087.02,"{\""promo\"": \""6%\""}",202190,1,"""Asia""" +2024-11-17,63113,7697,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1058.73,"{\""seasonal\"": \""25%\""}",42392,0,"""Asia""" +2023-10-21,63114,1886,"[\""Headphones\""]",1666.04,"{\""seasonal\"": \""19%\""}",183840,1,"""Asia""" +2023-06-06,63115,2942,"[\""Tablet\""]",2824.58,{},107910,0,"""Europe""" +2024-08-19,63116,1830,"[\""Tablet\"", \""Charger\""]",4644.1,{},11272,1,"""Europe""" +2024-07-28,63117,8404,"[\""Laptop\""]",3580.66,"{\""promo\"": \""8%\""}",264965,0,"""Europe""" +2024-06-08,63118,9999,"[\""Laptop\""]",1696.64,{},136686,1,"""North America""" +2023-11-05,63119,4389,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1167.45,{},136167,1,"""Asia""" +2024-03-12,63120,2020,"[\""Tablet\""]",598.38,"{\"": \""8%\""}",195599,1,"""North America""" +2024-05-15,63121,7006,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4017.31,"{\""loyalty\"": \""5%\""}",245327,1,"""Africa""" +2024-07-21,63122,8818,"[\""Keyboard\"", \""Laptop\""]",1547.32,{},98307,1,"""Europe""" +2024-08-11,63123,9558,"[\""Phone\""]",474.44,{},96431,1,"""Africa""" +2023-06-26,63124,6084,"[\""Headphones\"", \""Charger\""]",1412.66,"{\""seasonal\"": \""8%\""}",46100,1,"""Europe""" +2023-05-02,63125,5184,"[\""Charger\""]",361.68,"{\"": \""22%\""}",110257,1,"""South America""" +2024-01-25,63126,6479,"[\""Monitor\"", \""Phone\""]",4430.56,{},33577,1,"""North America""" +2023-07-19,63127,1740,"[\""Keyboard\""]",4682.04,"{\"": \""24%\""}",277096,1,"""South America""" +2024-08-29,63128,2913,"[\""Monitor\""]",656.9,"{\""loyalty\"": \""10%\""}",27742,1,"""Africa""" +2023-08-09,63129,7345,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2295.87,{},53174,0,"""Africa""" +2024-02-21,63130,7176,"[\""Charger\"", \""Wireless Mouse\""]",4097.79,{},206228,0,"""South America""" +2024-06-18,63131,789,"[\""Headphones\""]",1107.02,"{\""seasonal\"": \""16%\""}",115754,1,"""North America""" +2023-07-13,63132,3089,"[\""Charger\"", \""Keyboard\""]",3629.26,{},96416,0,"""Europe""" +2024-06-30,63133,7746,"[\""Monitor\"", \""Tablet\""]",1839.09,{},232688,1,"""North America""" +2024-01-14,63134,6563,"[\""Headphones\""]",1871.31,{},170213,0,"""Asia""" +2024-07-06,63135,3307,"[\""Tablet\"", \""Charger\""]",3478.42,"{\"": \""16%\""}",224763,0,"""South America""" +2023-08-13,63136,8287,"[\""Charger\"", \""Phone\""]",2799.44,"{\""loyalty\"": \""24%\""}",258361,1,"""North America""" +2023-05-30,63137,1676,"[\""Charger\"", \""Laptop\""]",441.78,{},298679,0,"""Africa""" +2024-03-07,63138,3990,"[\""Laptop\"", \""Keyboard\""]",2043.83,{},202156,0,"""North America""" +2024-05-09,63139,8748,"[\""Laptop\""]",1355.25,{},221412,1,"""Europe""" +2023-03-26,63140,6652,"[\""Phone\""]",2825.79,"{\""loyalty\"": \""26%\""}",294031,1,"""South America""" +2023-07-11,63141,8147,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3885.33,{},126121,0,"""South America""" +2024-03-17,63142,5640,"[\""Charger\""]",2713.98,"{\"": \""11%\""}",73065,1,"""Europe""" +2024-04-27,63143,7041,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2455.69,{},135244,0,"""Africa""" +2024-09-20,63144,2552,"[\""Laptop\"", \""Charger\""]",1806.69,{},169010,1,"""Asia""" +2024-11-21,63145,1918,"[\""Phone\""]",2592.48,"{\""seasonal\"": \""9%\""}",2392,0,"""Asia""" +2023-01-09,63146,5335,"[\""Monitor\"", \""Laptop\""]",345.94,{},33999,0,"""North America""" +2024-07-30,63147,5619,"[\""Wireless Mouse\""]",1379.49,"{\""promo\"": \""14%\""}",69480,0,"""North America""" +2024-07-17,63148,7791,"[\""Monitor\"", \""Tablet\""]",4862.65,"{\""seasonal\"": \""28%\""}",283015,0,"""North America""" +2024-11-26,63149,2655,"[\""Charger\"", \""Headphones\""]",4108.08,{},182292,0,"""Europe""" +2024-05-12,63150,5632,"[\""Wireless Mouse\""]",3010.65,"{\""promo\"": \""18%\""}",118788,1,"""Africa""" +2024-07-11,63151,6718,"[\""Phone\"", \""Keyboard\""]",1298.44,{},154914,1,"""Africa""" +2024-09-11,63152,65,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2825.4,"{\""promo\"": \""17%\""}",245084,0,"""South America""" +2023-07-17,63153,2613,"[\""Headphones\"", \""Tablet\""]",339.56,{},277308,1,"""North America""" +2023-01-31,63154,2846,"[\""Keyboard\"", \""Phone\""]",4699.91,{},94787,0,"""North America""" +2023-08-08,63155,5890,"[\""Keyboard\""]",1239.13,{},144228,0,"""Africa""" +2024-04-10,63156,2810,"[\""Wireless Mouse\"", \""Phone\""]",1308.26,{},75831,1,"""Asia""" +2024-12-31,63157,2023,"[\""Phone\""]",1739.47,{},38012,1,"""Europe""" +2024-02-22,63158,2095,"[\""Tablet\"", \""Headphones\""]",2533.51,{},10517,1,"""Asia""" +2023-10-29,63159,4006,"[\""Monitor\"", \""Phone\""]",4059.17,{},247594,1,"""North America""" +2023-09-21,63160,6493,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4781.19,"{\"": \""26%\""}",266758,0,"""North America""" +2024-07-09,63161,3403,"[\""Headphones\"", \""Monitor\""]",1991.05,{},199712,1,"""North America""" +2024-01-11,63162,8205,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4175.69,{},180870,0,"""Africa""" +2024-11-09,63163,1478,"[\""Wireless Mouse\""]",1464.35,"{\"": \""10%\""}",247314,1,"""Africa""" +2023-05-31,63164,9372,"[\""Charger\"", \""Tablet\""]",2738.72,"{\""loyalty\"": \""20%\""}",22090,1,"""Africa""" +2024-04-06,63165,2861,"[\""Charger\""]",4996.55,{},135892,1,"""Asia""" +2023-09-21,63166,9696,"[\""Headphones\""]",4214.09,"{\"": \""7%\""}",269212,0,"""Asia""" +2023-02-27,63167,4007,"[\""Laptop\""]",4668.96,{},241792,0,"""Asia""" +2023-08-31,63168,1782,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4198.36,"{\""promo\"": \""9%\""}",217896,0,"""Europe""" +2024-01-09,63169,8455,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1789.41,"{\""promo\"": \""24%\""}",158092,0,"""Europe""" +2024-04-22,63170,2915,"[\""Phone\"", \""Tablet\""]",3456.64,{},103472,1,"""Europe""" +2024-09-21,63171,5697,"[\""Phone\"", \""Tablet\""]",4589.79,"{\"": \""18%\""}",259972,1,"""Asia""" +2024-09-11,63172,6456,"[\""Phone\""]",507.83,{},51066,0,"""North America""" +2024-06-21,63173,5725,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2444.77,{},90659,0,"""Asia""" +2024-02-14,63174,4422,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1338.9,{},63545,1,"""Asia""" +2023-12-03,63175,4174,"[\""Headphones\"", \""Keyboard\""]",4583.82,"{\""promo\"": \""11%\""}",237133,0,"""Europe""" +2024-06-19,63176,6806,"[\""Phone\"", \""Headphones\""]",921.41,"{\""seasonal\"": \""6%\""}",182601,1,"""South America""" +2024-02-29,63177,3672,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",206.21,{},99820,1,"""Asia""" +2023-07-16,63178,8153,"[\""Wireless Mouse\""]",3224.27,{},194381,1,"""Europe""" +2023-05-22,63179,7012,"[\""Tablet\"", \""Phone\""]",3676.84,"{\""loyalty\"": \""8%\""}",261912,0,"""South America""" +2023-08-24,63180,7401,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3984.41,"{\""promo\"": \""6%\""}",123294,1,"""North America""" +2023-12-21,63181,3010,"[\""Keyboard\"", \""Headphones\""]",661.02,{},289336,1,"""Asia""" +2023-02-01,63182,9663,"[\""Headphones\"", \""Phone\""]",226.72,"{\""seasonal\"": \""25%\""}",11811,0,"""Africa""" +2024-01-18,63183,854,"[\""Headphones\"", \""Monitor\""]",1674.99,"{\""loyalty\"": \""13%\""}",121397,1,"""North America""" +2024-01-03,63184,1953,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3757.71,"{\""promo\"": \""23%\""}",50651,0,"""Europe""" +2024-06-27,63185,9356,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2554.79,{},271060,1,"""Europe""" +2024-12-21,63186,6388,"[\""Wireless Mouse\"", \""Laptop\""]",2012.84,{},224990,1,"""Asia""" +2024-01-01,63187,1800,"[\""Keyboard\""]",650.28,{},255109,0,"""Asia""" +2024-06-30,63188,9327,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2740.46,{},44574,0,"""Africa""" +2024-01-11,63189,2891,"[\""Laptop\""]",434.46,{},229932,0,"""Africa""" +2024-12-10,63190,9069,"[\""Laptop\"", \""Monitor\""]",3832.98,{},292383,0,"""South America""" +2024-07-25,63191,4221,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2881.75,{},141118,0,"""Europe""" +2023-05-03,63192,9653,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4929.96,{},298293,0,"""North America""" +2024-02-23,63193,9291,"[\""Charger\"", \""Wireless Mouse\""]",4737.14,{},255991,0,"""North America""" +2023-10-19,63194,8261,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2657.75,{},167759,1,"""North America""" +2023-05-02,63195,754,"[\""Wireless Mouse\""]",595.13,"{\""loyalty\"": \""25%\""}",150332,0,"""North America""" +2024-08-21,63196,3339,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4220.82,"{\""loyalty\"": \""10%\""}",182266,1,"""Europe""" +2023-07-25,63197,7862,"[\""Monitor\""]",1450.11,"{\""promo\"": \""14%\""}",225864,1,"""Asia""" +2024-04-20,63198,9363,"[\""Keyboard\"", \""Tablet\""]",982.87,"{\""promo\"": \""9%\""}",281924,1,"""South America""" +2024-06-09,63199,8711,"[\""Tablet\"", \""Laptop\""]",3721.41,{},219365,0,"""North America""" +2023-11-27,63200,4533,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2677.12,"{\""loyalty\"": \""16%\""}",275474,1,"""South America""" +2024-02-18,63201,3126,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4538.81,"{\"": \""25%\""}",271888,0,"""Africa""" +2023-09-26,63202,9462,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3364.6,"{\""seasonal\"": \""6%\""}",276961,0,"""Asia""" +2023-05-08,63203,3477,"[\""Phone\"", \""Wireless Mouse\""]",4766.64,{},38448,1,"""Asia""" +2024-06-26,63204,3802,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2026.18,"{\""loyalty\"": \""6%\""}",291874,0,"""Africa""" +2023-01-25,63205,5641,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2901.12,{},98142,0,"""Africa""" +2024-01-05,63206,7454,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1050.45,"{\""promo\"": \""5%\""}",118417,0,"""South America""" +2024-12-02,63207,9604,"[\""Headphones\"", \""Monitor\""]",1525.93,{},71698,0,"""North America""" +2023-03-19,63208,8002,"[\""Wireless Mouse\""]",3400.51,{},144511,1,"""North America""" +2023-08-15,63209,7510,"[\""Keyboard\"", \""Tablet\""]",656.66,"{\""seasonal\"": \""8%\""}",226857,0,"""South America""" +2023-05-08,63210,8541,"[\""Monitor\""]",826.76,"{\""seasonal\"": \""20%\""}",272630,1,"""Asia""" +2023-08-25,63211,2696,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3223.32,{},84376,1,"""South America""" +2024-05-18,63212,2263,"[\""Charger\""]",709.1,{},155707,1,"""Africa""" +2023-07-01,63213,2154,"[\""Monitor\""]",3039.59,{},99712,1,"""South America""" +2024-02-23,63214,4926,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3492.71,{},169442,1,"""North America""" +2023-03-24,63215,6169,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3940.42,"{\""seasonal\"": \""25%\""}",176729,0,"""Europe""" +2024-12-23,63216,9507,"[\""Laptop\""]",3887.51,"{\""promo\"": \""26%\""}",195814,1,"""North America""" +2023-02-23,63217,5190,"[\""Wireless Mouse\""]",731.82,"{\""loyalty\"": \""15%\""}",241028,1,"""North America""" +2024-07-29,63218,96,"[\""Tablet\""]",4576.16,"{\""seasonal\"": \""27%\""}",15945,1,"""Africa""" +2023-07-19,63219,6226,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4639.9,{},233603,0,"""South America""" +2024-11-01,63220,534,"[\""Laptop\""]",3457.07,{},45062,1,"""North America""" +2023-03-17,63221,8667,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",223.46,{},274857,0,"""Africa""" +2023-07-28,63222,3909,"[\""Monitor\""]",4261.52,{},7149,0,"""Europe""" +2024-04-22,63223,111,"[\""Laptop\""]",4041.77,"{\""promo\"": \""22%\""}",239272,1,"""North America""" +2023-03-27,63224,4146,"[\""Keyboard\"", \""Phone\""]",3461.65,{},26851,0,"""Africa""" +2023-11-13,63225,9252,"[\""Monitor\"", \""Phone\""]",2616.99,"{\""promo\"": \""24%\""}",25425,1,"""Asia""" +2023-01-18,63226,5963,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2008.28,{},212893,1,"""Asia""" +2023-06-28,63227,611,"[\""Wireless Mouse\""]",2858.98,"{\""promo\"": \""11%\""}",265307,0,"""Europe""" +2024-05-25,63228,6364,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",760.18,{},124559,0,"""Europe""" +2024-07-24,63229,981,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2068.58,{},249681,1,"""South America""" +2024-07-24,63230,2265,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2491.89,"{\""loyalty\"": \""28%\""}",220566,0,"""Asia""" +2024-07-05,63231,137,"[\""Wireless Mouse\""]",4023.12,{},213084,1,"""North America""" +2024-10-31,63232,7088,"[\""Wireless Mouse\""]",1801.9,{},213818,1,"""Europe""" +2023-03-05,63233,8804,"[\""Phone\"", \""Laptop\""]",4033.29,"{\"": \""14%\""}",75145,0,"""Africa""" +2023-11-12,63234,2900,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4060.19,"{\""loyalty\"": \""28%\""}",246484,0,"""South America""" +2024-07-27,63235,4317,"[\""Headphones\""]",3892.54,"{\""promo\"": \""9%\""}",227579,1,"""South America""" +2023-08-14,63236,5985,"[\""Headphones\"", \""Charger\""]",3803.13,"{\""loyalty\"": \""6%\""}",118225,0,"""South America""" +2023-04-14,63237,2274,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1346.17,{},243427,0,"""Europe""" +2023-02-19,63238,9219,"[\""Wireless Mouse\""]",1003.33,"{\""seasonal\"": \""29%\""}",195700,0,"""Asia""" +2023-09-03,63239,9541,"[\""Headphones\""]",1062.98,"{\"": \""5%\""}",129752,1,"""Asia""" +2024-08-05,63240,4672,"[\""Phone\""]",2912.31,"{\"": \""18%\""}",42116,0,"""Asia""" +2024-06-28,63241,7815,"[\""Charger\""]",541.29,{},196523,1,"""Africa""" +2024-12-17,63242,899,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4350.81,{},158108,0,"""South America""" +2023-06-09,63243,4752,"[\""Phone\"", \""Headphones\""]",1848.4,{},279277,1,"""South America""" +2024-12-26,63244,1081,"[\""Wireless Mouse\""]",435.63,{},69271,0,"""Europe""" +2023-04-22,63245,9249,"[\""Laptop\""]",864.11,"{\""seasonal\"": \""25%\""}",275882,0,"""North America""" +2024-02-29,63246,9168,"[\""Laptop\""]",300.92,"{\""loyalty\"": \""15%\""}",217958,0,"""North America""" +2023-09-05,63247,5922,"[\""Wireless Mouse\""]",2118.6,"{\""promo\"": \""19%\""}",144160,0,"""Africa""" +2023-09-06,63248,9927,"[\""Laptop\""]",2007.6,"{\""promo\"": \""10%\""}",268774,1,"""South America""" +2023-06-25,63249,1618,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1806.27,{},262290,0,"""Asia""" +2023-02-15,63250,4779,"[\""Keyboard\""]",547.24,{},51425,1,"""North America""" +2024-10-10,63251,758,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2804.48,"{\""loyalty\"": \""26%\""}",35798,1,"""Asia""" +2023-07-23,63252,3666,"[\""Charger\""]",3374.73,{},230006,1,"""Europe""" +2024-03-02,63253,1777,"[\""Laptop\"", \""Monitor\""]",3865.22,"{\""seasonal\"": \""22%\""}",181992,1,"""South America""" +2023-12-28,63254,4475,"[\""Monitor\"", \""Keyboard\""]",1283.27,"{\""seasonal\"": \""6%\""}",255883,0,"""North America""" +2023-01-19,63255,9581,"[\""Wireless Mouse\""]",4372.04,"{\""loyalty\"": \""6%\""}",53534,0,"""North America""" +2024-12-25,63256,7615,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4369.88,"{\""promo\"": \""10%\""}",201618,0,"""Africa""" +2023-01-31,63257,7133,"[\""Laptop\""]",1503.61,"{\""seasonal\"": \""12%\""}",25594,1,"""Asia""" +2024-02-04,63258,2013,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",97.19,{},141324,0,"""Africa""" +2023-12-08,63259,5262,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3194.06,{},271111,1,"""Europe""" +2023-05-14,63260,4312,"[\""Tablet\""]",3246.95,"{\""loyalty\"": \""18%\""}",217515,0,"""Africa""" +2024-11-15,63261,9383,"[\""Wireless Mouse\"", \""Laptop\""]",1224.04,"{\"": \""30%\""}",135379,0,"""Asia""" +2024-05-22,63262,5259,"[\""Headphones\"", \""Laptop\""]",3691.47,{},143101,0,"""Asia""" +2023-12-16,63263,2873,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4109.63,{},297514,0,"""South America""" +2023-05-03,63264,9230,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3360.47,"{\""seasonal\"": \""28%\""}",103129,1,"""North America""" +2024-01-19,63265,3853,"[\""Wireless Mouse\"", \""Phone\""]",3685.96,{},265782,0,"""Africa""" +2024-02-18,63266,2189,"[\""Charger\""]",4205.83,"{\"": \""27%\""}",267902,1,"""South America""" +2023-08-16,63267,5822,"[\""Phone\""]",3942.29,"{\""seasonal\"": \""20%\""}",21506,0,"""Asia""" +2024-02-09,63268,4101,"[\""Tablet\"", \""Wireless Mouse\""]",1788.81,{},127873,0,"""South America""" +2024-07-04,63269,2101,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4487.8,"{\""loyalty\"": \""10%\""}",74324,1,"""North America""" +2023-02-03,63270,3365,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2371.47,"{\""promo\"": \""6%\""}",231796,1,"""North America""" +2024-12-12,63271,7541,"[\""Headphones\""]",4362.45,"{\"": \""23%\""}",3958,1,"""Asia""" +2023-12-24,63272,1631,"[\""Keyboard\""]",1952.8,"{\""loyalty\"": \""5%\""}",14091,1,"""Africa""" +2024-11-23,63273,3780,"[\""Wireless Mouse\"", \""Tablet\""]",2993.43,"{\""promo\"": \""12%\""}",209242,1,"""Africa""" +2024-12-28,63274,2291,"[\""Charger\"", \""Headphones\""]",1110.11,{},121808,0,"""North America""" +2024-08-07,63275,9443,"[\""Monitor\""]",3479.3,{},299471,1,"""Asia""" +2024-05-31,63276,5310,"[\""Headphones\""]",803.67,"{\""loyalty\"": \""16%\""}",46589,0,"""Europe""" +2023-01-09,63277,5479,"[\""Headphones\""]",2300.61,{},32741,0,"""Europe""" +2024-02-09,63278,2029,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1413.45,"{\""seasonal\"": \""16%\""}",157717,0,"""North America""" +2024-01-23,63279,5947,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4619.06,"{\""seasonal\"": \""18%\""}",54498,0,"""North America""" +2023-06-17,63280,5138,"[\""Charger\""]",2952.99,{},93659,0,"""Asia""" +2024-05-29,63281,4464,"[\""Tablet\""]",1378.8,"{\""seasonal\"": \""20%\""}",84661,1,"""Europe""" +2023-11-18,63282,4725,"[\""Wireless Mouse\"", \""Tablet\""]",3106.5,{},291135,1,"""Asia""" +2024-10-28,63283,2436,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2769.22,{},266228,1,"""Europe""" +2024-09-01,63284,1157,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",445.64,"{\""promo\"": \""5%\""}",24773,1,"""Africa""" +2023-10-10,63285,3956,"[\""Laptop\""]",4534.75,"{\"": \""8%\""}",289752,0,"""South America""" +2024-04-23,63286,3049,"[\""Wireless Mouse\"", \""Tablet\""]",3313.4,{},124327,0,"""Asia""" +2024-01-22,63287,5351,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2065.37,{},129239,1,"""North America""" +2023-02-17,63288,3678,"[\""Laptop\"", \""Monitor\""]",1752.38,{},249747,0,"""South America""" +2024-01-08,63289,8643,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",933.77,"{\""promo\"": \""26%\""}",298025,1,"""North America""" +2023-06-09,63290,6137,"[\""Laptop\""]",3140.06,"{\""seasonal\"": \""11%\""}",221640,0,"""North America""" +2024-10-23,63291,7665,"[\""Wireless Mouse\"", \""Phone\""]",2489.86,"{\"": \""26%\""}",171199,0,"""North America""" +2023-06-12,63292,778,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",196.42,"{\""promo\"": \""13%\""}",155315,1,"""North America""" +2023-05-29,63293,6541,"[\""Charger\"", \""Keyboard\""]",3547.66,{},157937,1,"""Africa""" +2024-08-30,63294,9133,"[\""Headphones\"", \""Phone\""]",1381.33,"{\""loyalty\"": \""15%\""}",5982,0,"""North America""" +2024-05-22,63295,4603,"[\""Headphones\""]",4001.68,"{\"": \""26%\""}",72579,1,"""Africa""" +2023-02-04,63296,5810,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",324.0,"{\""seasonal\"": \""18%\""}",76767,0,"""North America""" +2024-09-26,63297,9218,"[\""Monitor\""]",3365.34,"{\""loyalty\"": \""19%\""}",126064,1,"""North America""" +2024-07-13,63298,3909,"[\""Headphones\""]",4298.41,{},239074,1,"""North America""" +2024-04-25,63299,335,"[\""Monitor\"", \""Laptop\""]",1461.71,{},53495,1,"""Africa""" +2023-11-28,63300,1740,"[\""Headphones\"", \""Laptop\""]",1720.26,{},31447,0,"""North America""" +2024-03-09,63301,9740,"[\""Monitor\"", \""Headphones\""]",3201.0,{},94094,0,"""Europe""" +2024-01-09,63302,6463,"[\""Keyboard\"", \""Headphones\""]",4547.53,{},45198,0,"""North America""" +2024-04-15,63303,5839,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3914.53,{},274790,0,"""South America""" +2024-10-13,63304,8610,"[\""Monitor\""]",3660.77,"{\"": \""17%\""}",32597,0,"""Africa""" +2024-04-16,63305,893,"[\""Monitor\""]",2064.91,"{\""promo\"": \""18%\""}",206028,1,"""South America""" +2023-08-26,63306,3941,"[\""Charger\"", \""Laptop\""]",4125.78,"{\"": \""11%\""}",192282,0,"""Asia""" +2024-02-24,63307,1481,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4150.14,"{\""promo\"": \""22%\""}",5515,1,"""North America""" +2023-02-18,63308,4989,"[\""Wireless Mouse\"", \""Headphones\""]",4820.94,"{\""seasonal\"": \""11%\""}",178217,1,"""Africa""" +2024-12-27,63309,7322,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1970.21,"{\"": \""24%\""}",210883,0,"""Europe""" +2023-07-19,63310,65,"[\""Headphones\""]",62.41,{},180507,0,"""Africa""" +2023-12-05,63311,7900,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4763.72,"{\""promo\"": \""5%\""}",88746,1,"""South America""" +2024-04-03,63312,3320,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4071.07,"{\""loyalty\"": \""25%\""}",75207,0,"""Africa""" +2023-11-04,63313,7464,"[\""Charger\""]",1135.14,{},11445,1,"""North America""" +2023-07-27,63314,7314,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3165.61,{},124644,1,"""North America""" +2024-03-16,63315,3998,"[\""Wireless Mouse\"", \""Charger\""]",343.34,{},82019,0,"""Europe""" +2024-06-26,63316,9232,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",682.46,"{\""seasonal\"": \""30%\""}",266957,1,"""Africa""" +2023-11-19,63317,5318,"[\""Laptop\""]",1608.05,"{\""loyalty\"": \""20%\""}",151422,1,"""Asia""" +2024-02-11,63318,5244,"[\""Laptop\""]",4009.72,"{\""promo\"": \""21%\""}",288714,0,"""Asia""" +2023-01-24,63319,3134,"[\""Keyboard\"", \""Phone\""]",3342.36,"{\""seasonal\"": \""27%\""}",1498,0,"""Asia""" +2023-06-11,63320,9809,"[\""Laptop\"", \""Keyboard\""]",3328.51,"{\""seasonal\"": \""22%\""}",144389,0,"""South America""" +2024-05-15,63321,3553,"[\""Keyboard\"", \""Monitor\""]",2158.33,{},260537,0,"""Europe""" +2024-06-27,63322,3369,"[\""Headphones\""]",4503.4,"{\"": \""25%\""}",236752,0,"""North America""" +2024-05-30,63323,4340,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1154.58,"{\"": \""14%\""}",148576,0,"""South America""" +2024-12-01,63324,2963,"[\""Charger\""]",3034.96,"{\"": \""6%\""}",299895,0,"""Africa""" +2024-02-15,63325,6642,"[\""Monitor\""]",1139.24,"{\""loyalty\"": \""29%\""}",270513,0,"""South America""" +2023-11-21,63326,4017,"[\""Charger\""]",915.83,"{\"": \""23%\""}",80189,1,"""Africa""" +2023-01-07,63327,7394,"[\""Monitor\""]",4877.6,{},50053,1,"""Africa""" +2023-02-14,63328,9027,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2173.47,{},101841,0,"""Asia""" +2023-04-26,63329,4962,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4769.1,"{\""loyalty\"": \""15%\""}",151609,1,"""Europe""" +2024-09-13,63330,1464,"[\""Monitor\""]",887.44,{},164731,0,"""Asia""" +2024-08-30,63331,567,"[\""Headphones\"", \""Laptop\""]",1754.66,{},59176,1,"""Europe""" +2024-03-15,63332,8411,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1426.2,"{\"": \""18%\""}",177122,1,"""South America""" +2023-05-20,63333,449,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1656.82,"{\""seasonal\"": \""22%\""}",244758,1,"""North America""" +2024-10-16,63334,8787,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",117.54,{},31069,1,"""Africa""" +2024-07-27,63335,4859,"[\""Charger\"", \""Keyboard\""]",3946.88,{},208680,1,"""Asia""" +2024-03-13,63336,4192,"[\""Monitor\"", \""Tablet\""]",3054.31,"{\""loyalty\"": \""23%\""}",90271,1,"""North America""" +2023-11-04,63337,8344,"[\""Charger\""]",901.55,{},100241,0,"""North America""" +2024-06-08,63338,1818,"[\""Monitor\""]",2136.8,{},237400,1,"""Africa""" +2023-01-12,63339,2863,"[\""Keyboard\""]",1268.06,{},220124,0,"""North America""" +2024-11-20,63340,3838,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2901.64,"{\""promo\"": \""8%\""}",65421,1,"""Asia""" +2023-02-16,63341,3380,"[\""Charger\"", \""Tablet\""]",2910.31,{},294773,0,"""Asia""" +2023-12-25,63342,630,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",692.24,"{\""seasonal\"": \""15%\""}",99703,1,"""South America""" +2024-07-04,63343,8380,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4956.98,"{\""loyalty\"": \""5%\""}",282892,1,"""Asia""" +2024-06-23,63344,2804,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2444.0,{},297057,1,"""Europe""" +2024-06-19,63345,7291,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2425.95,"{\"": \""18%\""}",236572,1,"""Africa""" +2024-03-12,63346,2197,"[\""Phone\"", \""Wireless Mouse\""]",486.29,"{\""seasonal\"": \""16%\""}",127862,1,"""North America""" +2023-07-08,63347,624,"[\""Keyboard\""]",110.15,"{\""promo\"": \""5%\""}",147156,1,"""Europe""" +2024-06-19,63348,8325,"[\""Phone\"", \""Tablet\""]",3990.7,"{\""promo\"": \""17%\""}",171956,0,"""North America""" +2023-10-05,63349,4110,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1399.03,{},68397,1,"""Europe""" +2023-01-11,63350,2818,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1125.78,{},132368,1,"""Europe""" +2023-12-18,63351,1526,"[\""Monitor\"", \""Laptop\""]",1661.67,{},125708,1,"""Africa""" +2024-10-18,63352,1251,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4815.17,{},170329,1,"""South America""" +2024-07-21,63353,4803,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3426.18,{},251938,0,"""Africa""" +2023-02-17,63354,2727,"[\""Monitor\""]",3478.22,{},258400,0,"""Africa""" +2024-08-09,63355,528,"[\""Wireless Mouse\"", \""Keyboard\""]",1101.71,{},150621,1,"""Africa""" +2023-05-01,63356,336,"[\""Phone\"", \""Headphones\""]",3767.15,{},29959,0,"""Europe""" +2024-03-27,63357,2984,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1397.85,{},253110,1,"""Africa""" +2024-04-03,63358,3610,"[\""Tablet\""]",3698.2,"{\"": \""30%\""}",268530,0,"""South America""" +2024-06-30,63359,151,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2775.11,{},216678,0,"""Europe""" +2024-03-06,63360,274,"[\""Headphones\"", \""Laptop\""]",3129.94,"{\""promo\"": \""23%\""}",28637,0,"""Europe""" +2024-06-29,63361,9345,"[\""Headphones\"", \""Tablet\""]",3708.14,"{\"": \""21%\""}",135512,1,"""South America""" +2024-07-18,63362,3605,"[\""Laptop\""]",2640.18,"{\""promo\"": \""24%\""}",146221,0,"""South America""" +2023-05-26,63363,5893,"[\""Phone\""]",913.87,{},233412,0,"""Africa""" +2023-10-01,63364,9668,"[\""Monitor\"", \""Wireless Mouse\""]",2807.0,{},74388,1,"""Asia""" +2024-01-14,63365,4742,"[\""Monitor\"", \""Keyboard\""]",1643.71,"{\"": \""14%\""}",281837,1,"""South America""" +2024-09-16,63366,1368,"[\""Phone\""]",1513.66,"{\""promo\"": \""8%\""}",58634,0,"""Africa""" +2024-08-21,63367,3742,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2786.33,"{\""loyalty\"": \""26%\""}",145899,1,"""Asia""" +2024-07-02,63368,5364,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1673.46,"{\""promo\"": \""11%\""}",30686,0,"""Africa""" +2024-03-13,63369,3842,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2052.19,"{\""promo\"": \""20%\""}",19400,0,"""North America""" +2024-07-21,63370,3169,"[\""Monitor\""]",2894.01,{},196027,1,"""Asia""" +2023-06-06,63371,5677,"[\""Wireless Mouse\""]",4659.13,"{\""promo\"": \""12%\""}",286428,0,"""Asia""" +2023-11-23,63372,7765,"[\""Headphones\""]",1586.06,"{\""promo\"": \""27%\""}",282683,1,"""Europe""" +2023-04-10,63373,7685,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1511.14,{},111052,1,"""Africa""" +2023-12-20,63374,9819,"[\""Tablet\"", \""Monitor\""]",4306.52,"{\""seasonal\"": \""24%\""}",119079,1,"""North America""" +2023-08-28,63375,9149,"[\""Tablet\""]",1177.68,"{\""seasonal\"": \""30%\""}",168709,1,"""South America""" +2024-12-08,63376,2436,"[\""Monitor\""]",1625.89,{},274909,1,"""Europe""" +2024-02-04,63377,6247,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",564.98,{},96866,1,"""Africa""" +2023-01-22,63378,3098,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1740.45,{},252745,0,"""Asia""" +2023-04-11,63379,5505,"[\""Monitor\"", \""Phone\""]",2036.13,{},232917,1,"""Asia""" +2023-04-15,63380,6739,"[\""Charger\""]",2568.08,"{\""seasonal\"": \""7%\""}",210532,0,"""South America""" +2023-10-06,63381,9418,"[\""Monitor\""]",3102.15,{},158460,0,"""North America""" +2024-10-12,63382,1038,"[\""Tablet\"", \""Phone\""]",1212.39,"{\""seasonal\"": \""18%\""}",193145,1,"""Asia""" +2024-04-21,63383,8320,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",700.57,{},37743,0,"""Asia""" +2023-08-21,63384,9291,"[\""Keyboard\"", \""Phone\""]",3232.88,"{\""seasonal\"": \""21%\""}",26320,1,"""North America""" +2024-01-18,63385,6294,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3518.35,{},26302,1,"""Europe""" +2023-02-17,63386,1941,"[\""Phone\"", \""Keyboard\""]",780.62,"{\""loyalty\"": \""7%\""}",69918,0,"""South America""" +2023-11-12,63387,8219,"[\""Wireless Mouse\"", \""Keyboard\""]",3809.76,{},51024,0,"""Africa""" +2023-09-21,63388,4938,"[\""Tablet\"", \""Phone\""]",2648.08,"{\"": \""5%\""}",67409,1,"""North America""" +2024-09-03,63389,4624,"[\""Headphones\"", \""Keyboard\""]",2161.72,"{\"": \""17%\""}",87293,0,"""Asia""" +2023-03-13,63390,7117,"[\""Headphones\"", \""Laptop\""]",3792.27,{},136989,1,"""Europe""" +2024-07-10,63391,6155,"[\""Tablet\"", \""Monitor\""]",3234.47,"{\""loyalty\"": \""18%\""}",48464,0,"""Africa""" +2023-03-15,63392,4362,"[\""Phone\""]",3867.97,{},267177,0,"""North America""" +2023-02-04,63393,5449,"[\""Charger\""]",1926.83,{},269494,0,"""Europe""" +2023-09-24,63394,4881,"[\""Charger\"", \""Headphones\""]",3063.55,{},193535,0,"""North America""" +2024-05-26,63395,7456,"[\""Phone\""]",959.31,{},29162,0,"""North America""" +2023-05-01,63396,6578,"[\""Monitor\""]",824.51,{},61188,1,"""Africa""" +2024-07-27,63397,8764,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2339.71,"{\""promo\"": \""9%\""}",81000,1,"""Asia""" +2024-01-21,63398,2621,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1010.78,{},251991,0,"""South America""" +2023-05-05,63399,9811,"[\""Headphones\"", \""Phone\""]",1894.06,{},21845,1,"""North America""" +2024-11-24,63400,6510,"[\""Monitor\""]",3483.45,"{\""promo\"": \""28%\""}",27740,1,"""South America""" +2024-01-28,63401,3332,"[\""Charger\""]",1293.66,{},31321,0,"""South America""" +2023-06-05,63402,4338,"[\""Headphones\""]",3344.68,{},163575,1,"""South America""" +2023-09-18,63403,7133,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1329.11,"{\""loyalty\"": \""26%\""}",3152,0,"""Asia""" +2023-12-15,63404,9067,"[\""Charger\"", \""Phone\""]",4547.86,{},177284,1,"""South America""" +2023-04-10,63405,8197,"[\""Keyboard\"", \""Phone\""]",2088.11,"{\""promo\"": \""30%\""}",21423,0,"""Asia""" +2024-05-26,63406,2434,"[\""Charger\"", \""Laptop\""]",3939.93,{},110767,1,"""Africa""" +2023-08-03,63407,8996,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2305.99,"{\""promo\"": \""6%\""}",99856,1,"""Africa""" +2023-05-05,63408,7197,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1218.67,{},236328,1,"""Europe""" +2024-05-13,63409,7668,"[\""Wireless Mouse\""]",280.16,{},10147,1,"""Asia""" +2023-11-17,63410,6036,"[\""Laptop\"", \""Wireless Mouse\""]",4178.26,"{\""seasonal\"": \""5%\""}",277168,1,"""Europe""" +2023-02-08,63411,4207,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1435.98,{},170818,0,"""Africa""" +2023-01-28,63412,8881,"[\""Wireless Mouse\""]",3560.74,{},194524,1,"""South America""" +2024-07-24,63413,2966,"[\""Phone\""]",3650.07,"{\""loyalty\"": \""27%\""}",217553,1,"""Asia""" +2024-10-06,63414,5694,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1762.81,"{\"": \""14%\""}",208174,0,"""Africa""" +2024-08-15,63415,1952,"[\""Laptop\""]",3019.29,{},258281,1,"""North America""" +2024-08-22,63416,5141,"[\""Laptop\"", \""Wireless Mouse\""]",706.02,{},131824,1,"""Europe""" +2024-07-22,63417,6328,"[\""Phone\"", \""Keyboard\""]",862.34,"{\"": \""5%\""}",100813,1,"""South America""" +2024-11-29,63418,3054,"[\""Monitor\""]",4309.33,{},160858,1,"""Asia""" +2023-02-28,63419,2856,"[\""Monitor\"", \""Keyboard\""]",4515.74,{},62714,0,"""North America""" +2023-06-01,63420,628,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3229.05,{},144793,0,"""South America""" +2024-05-12,63421,5719,"[\""Wireless Mouse\"", \""Phone\""]",1012.06,{},296759,0,"""North America""" +2023-09-30,63422,1744,"[\""Phone\""]",2626.6,{},267758,0,"""North America""" +2023-10-06,63423,5787,"[\""Charger\"", \""Headphones\""]",3970.05,"{\""seasonal\"": \""28%\""}",231305,1,"""Europe""" +2023-09-05,63424,3265,"[\""Phone\"", \""Monitor\""]",842.03,{},296821,1,"""Africa""" +2023-10-15,63425,5523,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1692.81,"{\""loyalty\"": \""28%\""}",167227,0,"""South America""" +2024-10-13,63426,443,"[\""Laptop\""]",588.36,{},168726,1,"""Africa""" +2023-06-03,63427,2591,"[\""Wireless Mouse\""]",3669.82,"{\"": \""12%\""}",195824,1,"""Africa""" +2024-08-03,63428,3801,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1729.42,"{\""seasonal\"": \""27%\""}",27257,1,"""Africa""" +2024-04-17,63429,4183,"[\""Headphones\""]",3375.71,"{\""promo\"": \""8%\""}",126861,1,"""North America""" +2024-10-16,63430,2570,"[\""Tablet\"", \""Monitor\""]",213.43,"{\""promo\"": \""27%\""}",89183,1,"""Africa""" +2024-10-05,63431,2643,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4364.67,{},283419,1,"""Asia""" +2023-05-27,63432,7146,"[\""Charger\"", \""Monitor\""]",3845.15,{},134785,0,"""Europe""" +2023-06-21,63433,3862,"[\""Wireless Mouse\""]",2649.95,"{\""promo\"": \""25%\""}",213147,0,"""Asia""" +2024-01-07,63434,8789,"[\""Headphones\"", \""Monitor\""]",4214.03,{},265598,1,"""Africa""" +2024-09-23,63435,4784,"[\""Headphones\"", \""Tablet\""]",2400.92,{},117267,1,"""South America""" +2024-01-11,63436,4954,"[\""Monitor\""]",3250.51,{},93382,0,"""Asia""" +2023-08-31,63437,8797,"[\""Wireless Mouse\""]",2864.55,{},178297,1,"""Asia""" +2023-06-23,63438,9047,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4930.23,"{\""loyalty\"": \""11%\""}",185424,0,"""Africa""" +2023-07-29,63439,9036,"[\""Phone\""]",1102.2,"{\"": \""20%\""}",192903,0,"""Europe""" +2024-04-12,63440,6743,"[\""Keyboard\"", \""Phone\""]",1215.94,"{\""seasonal\"": \""23%\""}",26048,1,"""South America""" +2024-04-27,63441,7422,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3715.92,{},118924,1,"""Africa""" +2024-01-03,63442,6561,"[\""Headphones\""]",2886.68,"{\""promo\"": \""21%\""}",117938,1,"""Europe""" +2023-02-07,63443,7552,"[\""Monitor\""]",1349.44,"{\""promo\"": \""29%\""}",221910,0,"""Africa""" +2023-12-12,63444,8221,"[\""Monitor\"", \""Headphones\""]",3486.9,{},151749,1,"""South America""" +2024-04-10,63445,6468,"[\""Phone\""]",1714.95,{},89228,1,"""Europe""" +2023-08-14,63446,5709,"[\""Laptop\"", \""Tablet\""]",4878.94,"{\""promo\"": \""25%\""}",223528,0,"""South America""" +2023-10-27,63447,1631,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",453.69,{},49752,1,"""Europe""" +2024-10-21,63448,7235,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1356.88,{},263166,1,"""Europe""" +2024-05-22,63449,9343,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1440.47,{},62965,0,"""North America""" +2024-06-28,63450,2207,"[\""Laptop\"", \""Wireless Mouse\""]",2309.45,{},39908,0,"""North America""" +2024-03-21,63451,594,"[\""Tablet\"", \""Wireless Mouse\""]",758.33,{},272257,0,"""Africa""" +2024-09-24,63452,7236,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2628.21,"{\""seasonal\"": \""21%\""}",20128,1,"""Europe""" +2023-11-28,63453,2025,"[\""Charger\"", \""Tablet\""]",3597.72,{},154844,1,"""South America""" +2024-08-05,63454,2560,"[\""Headphones\"", \""Phone\""]",3614.54,"{\"": \""30%\""}",196015,0,"""South America""" +2024-03-11,63455,397,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",353.59,{},202395,1,"""North America""" +2023-06-25,63456,2561,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",112.44,"{\""loyalty\"": \""22%\""}",221459,0,"""South America""" +2023-02-05,63457,7383,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4049.4,"{\""seasonal\"": \""14%\""}",65345,1,"""Europe""" +2024-08-14,63458,9723,"[\""Tablet\"", \""Keyboard\""]",2127.54,{},164859,0,"""Europe""" +2024-06-07,63459,2786,"[\""Headphones\"", \""Wireless Mouse\""]",4806.71,"{\"": \""30%\""}",233049,1,"""North America""" +2023-10-22,63460,8389,"[\""Tablet\""]",2045.15,{},231066,1,"""Africa""" +2024-12-13,63461,1096,"[\""Charger\"", \""Laptop\""]",1525.08,"{\""loyalty\"": \""10%\""}",58265,1,"""Asia""" +2023-06-24,63462,6793,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3214.67,{},70604,1,"""South America""" +2023-09-14,63463,6315,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",517.0,{},52636,1,"""Asia""" +2023-04-12,63464,7362,"[\""Charger\"", \""Laptop\""]",4560.63,"{\""loyalty\"": \""5%\""}",255260,0,"""Asia""" +2023-11-09,63465,2229,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4629.72,"{\""seasonal\"": \""23%\""}",164880,1,"""North America""" +2023-08-22,63466,2700,"[\""Keyboard\"", \""Laptop\""]",1408.27,"{\""promo\"": \""18%\""}",117634,0,"""Africa""" +2024-11-29,63467,9419,"[\""Charger\""]",1486.03,{},43717,1,"""South America""" +2023-05-28,63468,4648,"[\""Charger\"", \""Laptop\""]",4439.89,{},35059,1,"""Asia""" +2024-01-05,63469,9228,"[\""Charger\"", \""Wireless Mouse\""]",3594.92,"{\"": \""7%\""}",293669,0,"""Europe""" +2024-01-08,63470,63,"[\""Charger\""]",3439.56,{},239505,0,"""North America""" +2024-10-27,63471,9069,"[\""Phone\""]",577.57,"{\""loyalty\"": \""12%\""}",53073,0,"""Europe""" +2023-04-30,63472,1788,"[\""Wireless Mouse\"", \""Headphones\""]",4566.44,"{\"": \""25%\""}",173749,0,"""Asia""" +2023-08-24,63473,7256,"[\""Tablet\""]",1818.01,{},246543,0,"""South America""" +2024-02-04,63474,9593,"[\""Phone\""]",595.09,{},159882,1,"""North America""" +2024-09-13,63475,2589,"[\""Laptop\"", \""Phone\""]",666.79,"{\"": \""11%\""}",295674,1,"""North America""" +2024-12-13,63476,8141,"[\""Keyboard\"", \""Wireless Mouse\""]",1421.06,{},77192,0,"""North America""" +2023-04-27,63477,8534,"[\""Tablet\""]",1404.88,"{\"": \""17%\""}",81538,1,"""Europe""" +2024-02-16,63478,1009,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4453.75,"{\""seasonal\"": \""7%\""}",31371,1,"""Asia""" +2024-12-23,63479,8491,"[\""Tablet\""]",3273.95,"{\""promo\"": \""11%\""}",268398,1,"""Europe""" +2024-02-19,63480,6498,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",697.36,{},56720,1,"""North America""" +2023-07-18,63481,3185,"[\""Monitor\""]",268.84,{},75680,0,"""North America""" +2024-09-25,63482,3066,"[\""Phone\"", \""Tablet\""]",1745.86,{},263309,1,"""South America""" +2024-12-08,63483,8982,"[\""Keyboard\"", \""Tablet\""]",4721.16,"{\""loyalty\"": \""22%\""}",230030,1,"""North America""" +2024-02-06,63484,9294,"[\""Tablet\""]",346.62,{},114647,0,"""North America""" +2023-12-25,63485,722,"[\""Wireless Mouse\""]",1646.97,"{\""loyalty\"": \""23%\""}",133570,1,"""Africa""" +2023-01-24,63486,3276,"[\""Tablet\""]",2679.04,{},109667,0,"""Asia""" +2023-08-16,63487,2764,"[\""Charger\""]",4051.59,"{\""seasonal\"": \""30%\""}",114024,1,"""Europe""" +2023-12-16,63488,5868,"[\""Laptop\"", \""Phone\""]",870.26,"{\"": \""24%\""}",244205,1,"""Africa""" +2024-06-12,63489,151,"[\""Charger\"", \""Monitor\""]",1492.97,"{\"": \""22%\""}",283390,1,"""North America""" +2023-03-13,63490,4129,"[\""Keyboard\"", \""Tablet\""]",4032.75,"{\""seasonal\"": \""27%\""}",208862,1,"""Asia""" +2024-01-06,63491,4594,"[\""Keyboard\""]",3477.33,{},87013,0,"""South America""" +2024-04-03,63492,2650,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",276.38,"{\"": \""26%\""}",113198,1,"""Asia""" +2023-10-26,63493,1460,"[\""Keyboard\"", \""Charger\""]",1967.78,{},168968,0,"""Europe""" +2023-05-14,63494,5794,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2671.02,"{\""seasonal\"": \""8%\""}",208063,0,"""Europe""" +2023-06-25,63495,9433,"[\""Charger\"", \""Phone\"", \""Laptop\""]",745.74,"{\""loyalty\"": \""20%\""}",237943,0,"""South America""" +2023-08-18,63496,4479,"[\""Charger\""]",3389.73,{},146048,1,"""Asia""" +2023-08-11,63497,7048,"[\""Keyboard\""]",3527.2,"{\"": \""24%\""}",260660,0,"""South America""" +2023-02-28,63498,1707,"[\""Wireless Mouse\""]",183.27,"{\"": \""19%\""}",75552,1,"""Africa""" +2023-12-27,63499,5782,"[\""Laptop\""]",377.84,"{\""promo\"": \""20%\""}",189903,0,"""Asia""" +2024-06-18,63500,9286,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3287.31,{},25041,1,"""Africa""" +2023-09-28,63501,9458,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4855.49,{},74119,0,"""South America""" +2024-10-10,63502,327,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1602.64,"{\"": \""14%\""}",220713,1,"""Europe""" +2023-05-12,63503,9339,"[\""Keyboard\"", \""Tablet\""]",4490.09,"{\""seasonal\"": \""16%\""}",199049,0,"""North America""" +2024-05-05,63504,3069,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2917.94,{},289394,0,"""Asia""" +2023-03-22,63505,8213,"[\""Headphones\"", \""Charger\""]",281.46,{},104608,1,"""Africa""" +2024-05-17,63506,1963,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2490.87,{},153828,1,"""Europe""" +2023-12-06,63507,3918,"[\""Keyboard\"", \""Phone\""]",1112.52,"{\"": \""14%\""}",26922,0,"""Asia""" +2024-04-24,63508,6297,"[\""Charger\"", \""Wireless Mouse\""]",839.32,{},9276,1,"""North America""" +2024-04-29,63509,1242,"[\""Wireless Mouse\"", \""Laptop\""]",667.62,"{\""seasonal\"": \""13%\""}",271728,0,"""South America""" +2024-01-30,63510,6594,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1335.01,{},207372,0,"""Asia""" +2023-01-21,63511,1238,"[\""Charger\"", \""Laptop\""]",3679.25,"{\""loyalty\"": \""5%\""}",4946,1,"""South America""" +2024-02-06,63512,1196,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3643.56,"{\""loyalty\"": \""28%\""}",232896,1,"""Europe""" +2023-07-10,63513,4868,"[\""Tablet\"", \""Monitor\""]",2274.7,"{\""seasonal\"": \""13%\""}",81160,0,"""Europe""" +2023-09-24,63514,2251,"[\""Wireless Mouse\""]",2665.23,"{\""loyalty\"": \""12%\""}",6197,1,"""North America""" +2023-10-18,63515,828,"[\""Laptop\"", \""Charger\"", \""Phone\""]",203.11,"{\"": \""22%\""}",178820,1,"""South America""" +2024-08-28,63516,2675,"[\""Laptop\"", \""Wireless Mouse\""]",1738.48,"{\"": \""26%\""}",2241,0,"""Asia""" +2024-05-20,63517,2839,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4352.67,{},170966,1,"""Asia""" +2024-07-04,63518,8114,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2107.43,{},38596,1,"""Europe""" +2023-12-30,63519,1696,"[\""Laptop\""]",4063.62,{},161276,1,"""Europe""" +2024-06-28,63520,1611,"[\""Headphones\"", \""Keyboard\""]",3139.88,{},222245,1,"""Europe""" +2024-08-13,63521,9106,"[\""Charger\""]",1766.83,"{\""promo\"": \""19%\""}",230531,1,"""South America""" +2024-01-26,63522,1557,"[\""Wireless Mouse\""]",4464.86,{},41057,1,"""Asia""" +2023-03-12,63523,9798,"[\""Keyboard\"", \""Tablet\""]",343.4,{},8558,0,"""Europe""" +2024-02-23,63524,7325,"[\""Keyboard\""]",4721.52,{},50609,1,"""South America""" +2023-04-25,63525,4902,"[\""Phone\"", \""Monitor\""]",2420.48,{},70850,1,"""Africa""" +2024-02-24,63526,1050,"[\""Monitor\"", \""Keyboard\""]",4621.63,{},254361,1,"""North America""" +2023-08-16,63527,8024,"[\""Charger\""]",734.72,{},60586,0,"""Africa""" +2024-06-21,63528,8730,"[\""Wireless Mouse\""]",4173.75,"{\""seasonal\"": \""25%\""}",49337,1,"""Africa""" +2023-10-17,63529,8054,"[\""Keyboard\"", \""Tablet\""]",2327.29,{},239716,0,"""South America""" +2024-10-01,63530,3510,"[\""Phone\"", \""Wireless Mouse\""]",1475.09,"{\""loyalty\"": \""11%\""}",25431,1,"""North America""" +2024-12-24,63531,7976,"[\""Keyboard\"", \""Wireless Mouse\""]",2449.44,"{\""promo\"": \""8%\""}",38305,1,"""Europe""" +2023-04-21,63532,3109,"[\""Laptop\"", \""Phone\""]",215.64,{},267115,1,"""North America""" +2024-08-24,63533,6890,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2030.26,"{\""promo\"": \""27%\""}",49945,0,"""Africa""" +2023-12-18,63534,6859,"[\""Phone\""]",1555.67,"{\""promo\"": \""8%\""}",49251,1,"""South America""" +2023-08-26,63535,4849,"[\""Monitor\""]",2997.7,"{\""loyalty\"": \""24%\""}",115131,1,"""North America""" +2024-03-21,63536,1933,"[\""Phone\"", \""Tablet\""]",4117.14,{},63803,0,"""Europe""" +2024-04-05,63537,6975,"[\""Laptop\"", \""Tablet\""]",3876.36,{},67814,1,"""Asia""" +2024-01-20,63538,8778,"[\""Tablet\"", \""Laptop\""]",4941.48,"{\"": \""11%\""}",271964,1,"""Europe""" +2024-03-19,63539,7619,"[\""Monitor\""]",2819.63,{},17452,0,"""South America""" +2023-06-25,63540,6155,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2623.89,"{\"": \""13%\""}",184409,1,"""South America""" +2024-12-19,63541,7270,"[\""Tablet\"", \""Monitor\""]",2895.64,{},233262,0,"""South America""" +2024-11-17,63542,913,"[\""Monitor\""]",633.71,{},67961,0,"""North America""" +2024-01-09,63543,1248,"[\""Tablet\"", \""Charger\""]",1431.31,"{\""loyalty\"": \""15%\""}",272842,1,"""Africa""" +2024-11-01,63544,8780,"[\""Charger\"", \""Laptop\""]",127.33,{},52490,0,"""North America""" +2024-10-09,63545,8514,"[\""Laptop\"", \""Phone\""]",2614.59,{},190573,0,"""Europe""" +2024-05-15,63546,2890,"[\""Monitor\""]",3429.31,"{\""seasonal\"": \""30%\""}",33807,0,"""Europe""" +2024-12-28,63547,3260,"[\""Charger\"", \""Monitor\""]",101.19,{},191133,1,"""South America""" +2024-07-20,63548,2994,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",446.07,"{\""seasonal\"": \""26%\""}",245421,1,"""Asia""" +2024-05-31,63549,3127,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2373.78,"{\""promo\"": \""16%\""}",287509,0,"""Europe""" +2023-03-20,63550,8347,"[\""Tablet\""]",3949.02,"{\"": \""7%\""}",268485,0,"""Africa""" +2024-04-05,63551,8130,"[\""Monitor\"", \""Wireless Mouse\""]",1000.88,"{\""promo\"": \""17%\""}",261090,0,"""North America""" +2024-03-15,63552,8624,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1035.4,{},264510,1,"""Asia""" +2024-05-08,63553,5352,"[\""Tablet\"", \""Phone\""]",374.93,{},120067,1,"""Europe""" +2023-08-01,63554,3535,"[\""Wireless Mouse\"", \""Headphones\""]",3757.34,"{\""seasonal\"": \""21%\""}",152406,1,"""South America""" +2024-02-03,63555,776,"[\""Charger\"", \""Wireless Mouse\""]",259.87,"{\""loyalty\"": \""12%\""}",65098,0,"""South America""" +2024-01-14,63556,2468,"[\""Wireless Mouse\""]",4568.18,{},251075,1,"""Europe""" +2024-11-28,63557,7025,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4342.52,"{\""loyalty\"": \""5%\""}",105723,0,"""South America""" +2023-09-22,63558,8114,"[\""Phone\"", \""Headphones\""]",169.36,{},107242,1,"""North America""" +2023-05-13,63559,6992,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2327.02,{},11006,1,"""South America""" +2023-02-07,63560,7181,"[\""Keyboard\""]",2143.18,"{\"": \""21%\""}",128632,1,"""Europe""" +2023-07-30,63561,9694,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3407.26,{},196952,0,"""Asia""" +2024-10-10,63562,2449,"[\""Laptop\"", \""Charger\""]",1507.62,{},22522,0,"""Asia""" +2024-09-19,63563,1800,"[\""Tablet\""]",2393.57,{},42289,0,"""South America""" +2024-02-22,63564,8909,"[\""Monitor\"", \""Keyboard\""]",1855.06,"{\""loyalty\"": \""20%\""}",225431,1,"""South America""" +2024-06-25,63565,4834,"[\""Phone\"", \""Monitor\""]",4497.2,"{\""promo\"": \""11%\""}",79664,1,"""Europe""" +2024-11-13,63566,6271,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3393.48,{},262500,1,"""Europe""" +2023-06-08,63567,8984,"[\""Monitor\"", \""Headphones\""]",3186.87,"{\"": \""8%\""}",221091,0,"""North America""" +2023-11-18,63568,1729,"[\""Tablet\""]",1249.52,{},85647,1,"""North America""" +2023-08-06,63569,3794,"[\""Charger\"", \""Tablet\""]",4342.25,{},177772,1,"""North America""" +2024-01-20,63570,8469,"[\""Keyboard\"", \""Wireless Mouse\""]",3481.93,{},102946,0,"""South America""" +2023-10-20,63571,2626,"[\""Charger\""]",4973.34,"{\""loyalty\"": \""30%\""}",266885,0,"""North America""" +2023-09-18,63572,2480,"[\""Charger\""]",3568.54,"{\""seasonal\"": \""21%\""}",58525,0,"""North America""" +2024-01-21,63573,5525,"[\""Tablet\""]",3292.05,{},98691,1,"""North America""" +2023-09-17,63574,5483,"[\""Tablet\""]",4279.71,"{\""promo\"": \""6%\""}",211873,1,"""South America""" +2023-09-26,63575,1344,"[\""Charger\"", \""Phone\""]",3462.04,{},54578,1,"""Africa""" +2024-02-27,63576,283,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2480.97,"{\""loyalty\"": \""19%\""}",99653,0,"""South America""" +2023-03-09,63577,5840,"[\""Keyboard\""]",3034.16,{},276189,1,"""Africa""" +2024-08-20,63578,1004,"[\""Tablet\"", \""Phone\""]",3350.23,{},101574,1,"""North America""" +2023-06-06,63579,9533,"[\""Wireless Mouse\""]",2720.09,"{\"": \""24%\""}",193283,0,"""Africa""" +2024-07-11,63580,2845,"[\""Tablet\""]",3069.04,{},12040,0,"""South America""" +2024-02-11,63581,7926,"[\""Keyboard\""]",906.0,{},54449,0,"""Asia""" +2023-06-04,63582,8087,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3448.41,{},262357,0,"""Asia""" +2023-12-17,63583,1443,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1571.68,{},176746,1,"""Africa""" +2024-12-28,63584,6049,"[\""Phone\"", \""Laptop\""]",1545.97,"{\""loyalty\"": \""16%\""}",275622,1,"""North America""" +2024-05-13,63585,9584,"[\""Wireless Mouse\""]",1509.74,"{\"": \""8%\""}",108465,0,"""Europe""" +2024-10-13,63586,2755,"[\""Charger\"", \""Headphones\""]",4827.76,{},71154,1,"""Europe""" +2024-12-14,63587,3566,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3788.44,{},50054,0,"""Asia""" +2024-10-29,63588,9193,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",832.15,"{\""seasonal\"": \""26%\""}",62313,0,"""South America""" +2024-03-08,63589,6214,"[\""Headphones\"", \""Phone\""]",4372.65,"{\""loyalty\"": \""27%\""}",2879,1,"""Africa""" +2023-07-30,63590,4754,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2729.06,{},121238,1,"""Africa""" +2024-03-12,63591,8374,"[\""Wireless Mouse\""]",936.04,"{\""seasonal\"": \""11%\""}",144844,0,"""Africa""" +2023-09-18,63592,7142,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3501.73,{},212358,0,"""Europe""" +2023-07-06,63593,9541,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4645.42,{},122476,1,"""South America""" +2024-07-10,63594,5930,"[\""Charger\""]",3088.1,{},250600,0,"""South America""" +2024-07-19,63595,4578,"[\""Charger\""]",4248.89,"{\"": \""22%\""}",210042,0,"""North America""" +2023-05-15,63596,509,"[\""Wireless Mouse\""]",2349.18,"{\""promo\"": \""19%\""}",18848,0,"""North America""" +2023-12-21,63597,6846,"[\""Keyboard\""]",4361.71,"{\"": \""16%\""}",149771,1,"""Asia""" +2023-03-19,63598,1293,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1225.51,"{\""promo\"": \""9%\""}",239750,1,"""Asia""" +2023-08-10,63599,5908,"[\""Headphones\""]",4997.95,{},93001,1,"""Africa""" +2023-03-07,63600,8171,"[\""Headphones\""]",987.59,"{\""seasonal\"": \""26%\""}",203715,1,"""South America""" +2023-04-04,63601,8513,"[\""Laptop\"", \""Tablet\""]",430.58,"{\"": \""5%\""}",145693,0,"""Europe""" +2024-03-09,63602,5070,"[\""Headphones\"", \""Phone\""]",3396.41,"{\""seasonal\"": \""8%\""}",137717,1,"""North America""" +2023-10-28,63603,6260,"[\""Laptop\""]",64.7,"{\""seasonal\"": \""14%\""}",134358,0,"""South America""" +2023-04-14,63604,4990,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4442.96,"{\""seasonal\"": \""19%\""}",12810,0,"""Europe""" +2023-05-08,63605,1991,"[\""Tablet\""]",91.61,"{\"": \""13%\""}",219396,0,"""Europe""" +2024-08-01,63606,8307,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1116.62,{},106280,0,"""Asia""" +2024-04-05,63607,1957,"[\""Keyboard\""]",4608.53,{},252955,0,"""Africa""" +2024-12-06,63608,2400,"[\""Wireless Mouse\""]",4907.58,{},265825,1,"""North America""" +2023-02-27,63609,9714,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",993.2,"{\"": \""18%\""}",45850,1,"""Africa""" +2024-07-26,63610,4109,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3148.57,"{\""promo\"": \""22%\""}",210289,1,"""Africa""" +2024-02-11,63611,6754,"[\""Headphones\"", \""Phone\""]",3711.23,"{\""seasonal\"": \""19%\""}",233964,0,"""Asia""" +2024-04-27,63612,4439,"[\""Phone\""]",1230.14,"{\""seasonal\"": \""7%\""}",158377,1,"""Asia""" +2023-07-08,63613,2024,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4200.74,{},210843,1,"""Asia""" +2024-05-31,63614,1859,"[\""Headphones\""]",1241.8,"{\""promo\"": \""15%\""}",20655,1,"""Asia""" +2024-12-09,63615,8830,"[\""Keyboard\""]",1109.76,"{\""loyalty\"": \""21%\""}",150718,0,"""North America""" +2024-08-05,63616,8870,"[\""Monitor\"", \""Laptop\""]",4799.34,"{\""promo\"": \""19%\""}",77081,0,"""Europe""" +2023-02-04,63617,960,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4247.41,{},290713,0,"""North America""" +2023-05-01,63618,1954,"[\""Wireless Mouse\"", \""Phone\""]",1541.19,{},211283,0,"""Europe""" +2024-04-01,63619,894,"[\""Tablet\""]",2267.87,{},260108,0,"""Europe""" +2023-03-17,63620,7578,"[\""Phone\""]",2781.46,"{\""promo\"": \""15%\""}",188309,0,"""Africa""" +2024-07-15,63621,9601,"[\""Monitor\"", \""Phone\""]",3912.56,"{\""loyalty\"": \""30%\""}",24257,1,"""Europe""" +2023-01-20,63622,867,"[\""Charger\"", \""Headphones\"", \""Phone\""]",544.32,"{\""loyalty\"": \""14%\""}",141440,0,"""Europe""" +2024-06-18,63623,9755,"[\""Charger\""]",3224.55,"{\"": \""14%\""}",291832,1,"""Europe""" +2023-10-26,63624,7222,"[\""Tablet\"", \""Keyboard\""]",206.03,"{\""promo\"": \""14%\""}",192151,1,"""North America""" +2024-07-26,63625,779,"[\""Wireless Mouse\""]",1723.32,{},124157,1,"""Asia""" +2023-06-05,63626,2867,"[\""Headphones\""]",4133.88,{},156552,1,"""Africa""" +2023-02-16,63627,2308,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2430.3,"{\""seasonal\"": \""30%\""}",127821,0,"""South America""" +2024-01-25,63628,6313,"[\""Tablet\"", \""Monitor\""]",2520.58,"{\""seasonal\"": \""12%\""}",89308,1,"""Africa""" +2024-08-26,63629,8285,"[\""Tablet\"", \""Keyboard\""]",304.98,"{\""promo\"": \""23%\""}",118234,0,"""Europe""" +2024-08-02,63630,6254,"[\""Laptop\""]",1978.19,"{\""loyalty\"": \""10%\""}",206515,1,"""Africa""" +2023-08-11,63631,306,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4027.69,{},188038,0,"""South America""" +2023-12-13,63632,3243,"[\""Phone\"", \""Tablet\""]",4276.75,"{\"": \""21%\""}",44589,0,"""Africa""" +2024-11-30,63633,4644,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3126.5,"{\""loyalty\"": \""14%\""}",282531,0,"""Africa""" +2023-08-23,63634,8345,"[\""Charger\""]",2595.58,{},26328,1,"""Africa""" +2024-01-22,63635,1613,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2442.89,{},80198,0,"""South America""" +2023-07-04,63636,7178,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",149.53,{},284758,1,"""Africa""" +2024-03-29,63637,5635,"[\""Charger\"", \""Phone\""]",2995.84,"{\"": \""17%\""}",115024,1,"""Europe""" +2024-03-14,63638,442,"[\""Tablet\"", \""Laptop\""]",190.93,"{\""seasonal\"": \""7%\""}",34568,0,"""Europe""" +2024-09-05,63639,1087,"[\""Headphones\""]",776.52,{},166425,1,"""North America""" +2023-01-13,63640,3345,"[\""Wireless Mouse\""]",870.53,"{\"": \""13%\""}",36078,1,"""North America""" +2023-12-04,63641,1109,"[\""Headphones\"", \""Monitor\""]",2162.42,"{\""loyalty\"": \""11%\""}",62650,0,"""South America""" +2024-11-02,63642,8928,"[\""Headphones\""]",723.76,{},150418,0,"""North America""" +2023-03-03,63643,1037,"[\""Wireless Mouse\"", \""Headphones\""]",3427.92,"{\""loyalty\"": \""16%\""}",3143,0,"""North America""" +2023-03-28,63644,8752,"[\""Charger\"", \""Phone\""]",2182.89,{},208940,0,"""South America""" +2024-05-05,63645,715,"[\""Monitor\""]",4845.92,{},126553,0,"""Asia""" +2023-12-28,63646,5520,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2466.51,"{\""loyalty\"": \""25%\""}",235503,1,"""Europe""" +2023-07-13,63647,3446,"[\""Headphones\""]",4760.62,"{\""promo\"": \""29%\""}",87335,0,"""Africa""" +2023-10-22,63648,4794,"[\""Laptop\""]",4237.32,"{\"": \""13%\""}",119826,1,"""South America""" +2023-01-21,63649,2823,"[\""Headphones\""]",4816.82,{},128437,0,"""Europe""" +2024-12-28,63650,2804,"[\""Laptop\"", \""Monitor\""]",1487.47,{},108050,0,"""South America""" +2023-05-20,63651,2929,"[\""Headphones\"", \""Laptop\""]",1805.06,"{\""seasonal\"": \""11%\""}",247088,1,"""Asia""" +2023-09-08,63652,9349,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1111.62,{},151132,1,"""Europe""" +2024-12-15,63653,4084,"[\""Laptop\""]",4404.04,{},128429,0,"""South America""" +2023-06-14,63654,6699,"[\""Phone\"", \""Wireless Mouse\""]",1914.39,{},99349,0,"""Africa""" +2024-04-30,63655,693,"[\""Headphones\""]",4018.29,"{\"": \""21%\""}",77805,1,"""Europe""" +2023-03-22,63656,2495,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2060.49,"{\""seasonal\"": \""27%\""}",234189,1,"""South America""" +2023-01-11,63657,9219,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4919.86,"{\""seasonal\"": \""10%\""}",278986,0,"""Asia""" +2023-03-31,63658,1782,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2406.76,"{\""seasonal\"": \""17%\""}",26965,0,"""Asia""" +2024-02-27,63659,1087,"[\""Wireless Mouse\""]",4751.46,{},224796,0,"""Africa""" +2023-03-14,63660,2632,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1207.71,"{\"": \""8%\""}",228038,0,"""Asia""" +2024-10-07,63661,3205,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1819.36,{},115934,1,"""Africa""" +2024-03-10,63662,6248,"[\""Headphones\"", \""Laptop\""]",3576.19,"{\""promo\"": \""25%\""}",293464,1,"""Africa""" +2024-10-28,63663,3669,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4364.49,"{\""promo\"": \""20%\""}",132090,1,"""Asia""" +2024-08-03,63664,264,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1376.91,{},81598,1,"""Europe""" +2023-05-25,63665,1133,"[\""Charger\""]",892.41,"{\""seasonal\"": \""5%\""}",52477,0,"""North America""" +2024-08-11,63666,3618,"[\""Keyboard\""]",4702.98,{},37154,0,"""Africa""" +2023-06-25,63667,4275,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2339.98,{},73326,0,"""Asia""" +2024-03-28,63668,1666,"[\""Laptop\""]",4452.2,{},32157,0,"""Africa""" +2024-02-13,63669,7398,"[\""Charger\""]",4581.76,{},216991,1,"""Africa""" +2023-04-19,63670,5484,"[\""Wireless Mouse\"", \""Phone\""]",3488.5,{},117256,0,"""South America""" +2023-03-10,63671,4626,"[\""Charger\""]",3582.33,"{\""promo\"": \""6%\""}",15708,1,"""South America""" +2024-02-21,63672,2553,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2935.43,{},102243,0,"""North America""" +2024-11-15,63673,1913,"[\""Headphones\""]",2907.87,"{\"": \""24%\""}",73411,1,"""Europe""" +2024-07-08,63674,8456,"[\""Phone\"", \""Charger\""]",2532.52,"{\"": \""16%\""}",282802,0,"""Europe""" +2023-07-30,63675,2836,"[\""Wireless Mouse\""]",448.79,{},202670,0,"""Asia""" +2024-03-01,63676,3451,"[\""Phone\"", \""Monitor\""]",4479.36,"{\""promo\"": \""19%\""}",125008,0,"""Asia""" +2023-12-04,63677,3350,"[\""Laptop\"", \""Phone\""]",1556.06,"{\""promo\"": \""19%\""}",157284,1,"""Africa""" +2023-02-24,63678,6501,"[\""Headphones\""]",1772.14,{},245977,0,"""South America""" +2024-04-18,63679,471,"[\""Laptop\"", \""Headphones\""]",4569.29,{},13422,1,"""Africa""" +2024-01-18,63680,4194,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4886.28,{},261130,1,"""South America""" +2024-07-25,63681,8873,"[\""Monitor\"", \""Keyboard\""]",4855.81,{},197584,0,"""North America""" +2024-12-15,63682,590,"[\""Phone\"", \""Headphones\""]",3824.26,{},129649,0,"""Europe""" +2023-02-17,63683,8117,"[\""Keyboard\""]",4950.77,"{\"": \""12%\""}",9057,0,"""Europe""" +2023-06-09,63684,835,"[\""Tablet\"", \""Charger\""]",2375.77,"{\""promo\"": \""8%\""}",220342,1,"""Africa""" +2023-01-09,63685,2823,"[\""Phone\""]",136.0,"{\"": \""21%\""}",166925,0,"""North America""" +2024-08-08,63686,5374,"[\""Monitor\""]",3413.07,"{\"": \""21%\""}",295562,0,"""Europe""" +2023-10-02,63687,250,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1253.01,{},157344,0,"""Africa""" +2024-05-07,63688,6216,"[\""Phone\"", \""Keyboard\""]",601.78,"{\""promo\"": \""25%\""}",67582,1,"""South America""" +2024-03-24,63689,216,"[\""Charger\""]",4240.03,"{\""loyalty\"": \""30%\""}",257479,0,"""Asia""" +2023-09-05,63690,454,"[\""Keyboard\""]",3865.37,"{\""seasonal\"": \""13%\""}",130701,1,"""North America""" +2024-05-14,63691,5735,"[\""Keyboard\"", \""Tablet\""]",271.52,"{\"": \""22%\""}",85083,1,"""Africa""" +2024-05-09,63692,4970,"[\""Headphones\"", \""Laptop\""]",3184.24,{},97983,1,"""Asia""" +2024-09-20,63693,9076,"[\""Tablet\"", \""Charger\""]",1013.52,"{\"": \""10%\""}",292043,1,"""Europe""" +2024-09-11,63694,6250,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1927.96,{},99090,0,"""Asia""" +2024-10-21,63695,9191,"[\""Tablet\"", \""Wireless Mouse\""]",4711.19,"{\""loyalty\"": \""24%\""}",93982,1,"""Europe""" +2023-07-24,63696,3431,"[\""Keyboard\"", \""Tablet\""]",2033.02,"{\""promo\"": \""30%\""}",18438,0,"""Europe""" +2023-09-20,63697,5415,"[\""Monitor\"", \""Headphones\""]",3160.29,{},74491,1,"""Asia""" +2023-05-17,63698,8340,"[\""Charger\"", \""Tablet\""]",4402.47,{},136512,0,"""Africa""" +2024-09-23,63699,471,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2131.67,{},60325,0,"""Europe""" +2023-06-20,63700,3090,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1590.95,"{\""promo\"": \""13%\""}",181141,1,"""North America""" +2024-10-25,63701,2788,"[\""Monitor\""]",3257.03,{},277938,0,"""Asia""" +2024-04-18,63702,1990,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3064.95,"{\""loyalty\"": \""19%\""}",86081,1,"""North America""" +2024-02-12,63703,6584,"[\""Phone\""]",3885.06,"{\""promo\"": \""23%\""}",85282,1,"""South America""" +2024-02-24,63704,5774,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2024.46,{},132041,0,"""Africa""" +2024-12-19,63705,7975,"[\""Phone\"", \""Wireless Mouse\""]",3349.03,{},114858,1,"""South America""" +2023-08-01,63706,9561,"[\""Keyboard\""]",3462.12,{},87196,1,"""South America""" +2024-04-05,63707,2401,"[\""Phone\""]",2384.68,{},281768,1,"""Asia""" +2024-08-08,63708,1584,"[\""Charger\"", \""Phone\""]",2736.15,"{\""seasonal\"": \""5%\""}",204604,1,"""South America""" +2024-07-19,63709,1821,"[\""Headphones\""]",3148.53,"{\""promo\"": \""5%\""}",201267,0,"""North America""" +2023-02-26,63710,5678,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3584.89,"{\""promo\"": \""10%\""}",268279,1,"""Europe""" +2024-12-26,63711,5529,"[\""Wireless Mouse\"", \""Tablet\""]",3507.09,{},169958,1,"""South America""" +2024-01-26,63712,7956,"[\""Wireless Mouse\"", \""Headphones\""]",3282.5,{},135979,1,"""Europe""" +2023-11-08,63713,5605,"[\""Phone\"", \""Laptop\""]",2722.61,{},255858,0,"""Europe""" +2023-01-13,63714,3959,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3726.04,{},178064,0,"""Europe""" +2024-01-03,63715,6344,"[\""Charger\""]",1983.23,"{\""loyalty\"": \""7%\""}",233933,1,"""Europe""" +2023-01-05,63716,6031,"[\""Headphones\"", \""Tablet\""]",3707.41,{},66751,1,"""Africa""" +2024-08-31,63717,8560,"[\""Wireless Mouse\""]",3109.11,"{\""loyalty\"": \""24%\""}",141320,0,"""Asia""" +2023-01-13,63718,9659,"[\""Monitor\"", \""Phone\""]",1285.3,{},178605,0,"""North America""" +2023-07-23,63719,2944,"[\""Keyboard\""]",2157.83,"{\""loyalty\"": \""21%\""}",138995,0,"""Asia""" +2023-06-12,63720,9225,"[\""Charger\""]",3248.96,"{\""seasonal\"": \""17%\""}",196653,0,"""North America""" +2023-10-19,63721,3509,"[\""Laptop\""]",4309.87,"{\""promo\"": \""6%\""}",9993,1,"""North America""" +2023-12-21,63722,1363,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1347.41,{},134971,1,"""South America""" +2023-04-07,63723,1248,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3426.67,{},11252,1,"""Africa""" +2023-10-27,63724,8782,"[\""Headphones\"", \""Keyboard\""]",2611.26,{},129163,0,"""North America""" +2024-09-15,63725,9643,"[\""Monitor\""]",2696.01,{},56660,0,"""Europe""" +2024-07-17,63726,1797,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",766.74,{},188446,1,"""Africa""" +2023-08-26,63727,9214,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4530.57,{},198045,1,"""North America""" +2024-06-08,63728,7080,"[\""Laptop\""]",342.68,"{\""promo\"": \""9%\""}",214388,0,"""Asia""" +2024-10-25,63729,9699,"[\""Keyboard\"", \""Tablet\""]",3876.28,{},212328,0,"""Asia""" +2024-11-27,63730,1385,"[\""Charger\"", \""Laptop\""]",3748.32,"{\"": \""17%\""}",122336,0,"""Europe""" +2023-08-30,63731,149,"[\""Keyboard\""]",4828.69,{},195718,1,"""Africa""" +2023-03-11,63732,3699,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2276.86,{},154195,0,"""Asia""" +2023-03-31,63733,1651,"[\""Wireless Mouse\""]",1013.39,"{\""seasonal\"": \""21%\""}",287015,0,"""Africa""" +2023-01-20,63734,8464,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",476.12,{},186498,1,"""South America""" +2024-09-06,63735,404,"[\""Monitor\"", \""Tablet\""]",1377.76,"{\"": \""23%\""}",81508,1,"""South America""" +2024-03-08,63736,1149,"[\""Monitor\"", \""Phone\""]",2142.01,{},186361,0,"""Europe""" +2023-12-06,63737,2702,"[\""Keyboard\""]",556.47,{},4233,1,"""North America""" +2024-04-15,63738,7664,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2111.3,"{\"": \""12%\""}",225498,1,"""North America""" +2024-09-20,63739,2163,"[\""Laptop\"", \""Phone\""]",1753.93,{},211491,1,"""Africa""" +2023-10-22,63740,9528,"[\""Keyboard\""]",4329.52,{},203281,0,"""North America""" +2023-07-24,63741,5161,"[\""Laptop\"", \""Wireless Mouse\""]",2590.49,"{\"": \""20%\""}",170466,1,"""Africa""" +2024-04-29,63742,8076,"[\""Tablet\""]",3685.79,{},21304,1,"""Europe""" +2024-01-27,63743,7214,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1164.24,{},36786,1,"""Africa""" +2023-03-02,63744,8940,"[\""Phone\"", \""Keyboard\""]",3682.13,{},9839,1,"""Europe""" +2024-09-21,63745,9391,"[\""Charger\""]",1226.59,{},140632,0,"""South America""" +2023-04-10,63746,1421,"[\""Tablet\"", \""Phone\""]",4573.26,"{\""seasonal\"": \""7%\""}",53101,0,"""Africa""" +2024-04-26,63747,6420,"[\""Keyboard\"", \""Phone\""]",4652.08,"{\""seasonal\"": \""12%\""}",19282,0,"""Asia""" +2023-01-01,63748,6168,"[\""Monitor\""]",1303.34,"{\"": \""29%\""}",289306,0,"""Africa""" +2024-04-05,63749,9793,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",891.59,"{\""loyalty\"": \""19%\""}",185819,0,"""Europe""" +2023-02-16,63750,4084,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2603.68,{},49098,1,"""Europe""" +2023-05-23,63751,8870,"[\""Phone\""]",2748.7,{},247329,0,"""Europe""" +2023-03-29,63752,386,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2087.35,"{\"": \""19%\""}",225053,0,"""Asia""" +2023-08-24,63753,2030,"[\""Tablet\""]",4335.84,{},35414,1,"""Europe""" +2024-05-12,63754,3921,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1355.12,{},184887,1,"""South America""" +2023-07-28,63755,6632,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4534.51,"{\""promo\"": \""9%\""}",175793,1,"""Asia""" +2024-06-04,63756,4721,"[\""Laptop\"", \""Monitor\""]",4366.05,{},140079,0,"""Asia""" +2024-05-15,63757,5356,"[\""Headphones\""]",2219.21,"{\""promo\"": \""24%\""}",236675,0,"""Asia""" +2023-12-06,63758,1306,"[\""Charger\"", \""Tablet\""]",581.09,"{\""promo\"": \""20%\""}",157371,1,"""North America""" +2023-08-15,63759,5536,"[\""Phone\""]",1804.89,{},86738,1,"""Asia""" +2023-06-14,63760,7507,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",308.9,"{\""promo\"": \""11%\""}",3079,0,"""Africa""" +2024-10-13,63761,8640,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3815.65,{},132945,1,"""Africa""" +2024-10-09,63762,5743,"[\""Phone\""]",4215.89,{},295960,1,"""Africa""" +2023-11-23,63763,5215,"[\""Keyboard\""]",3726.79,"{\""loyalty\"": \""12%\""}",242705,1,"""South America""" +2024-05-02,63764,1662,"[\""Monitor\""]",359.65,{},142127,0,"""North America""" +2023-10-31,63765,7816,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3045.76,{},101837,1,"""Africa""" +2023-12-16,63766,4633,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2468.13,"{\""loyalty\"": \""17%\""}",240668,0,"""Asia""" +2023-07-01,63767,9699,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1310.28,"{\""loyalty\"": \""24%\""}",12473,0,"""Africa""" +2023-11-14,63768,6003,"[\""Laptop\""]",374.41,"{\""seasonal\"": \""11%\""}",15694,0,"""Asia""" +2023-08-08,63769,2554,"[\""Monitor\""]",390.86,{},19927,0,"""Africa""" +2023-06-19,63770,1436,"[\""Monitor\"", \""Laptop\""]",1434.83,{},93093,0,"""Asia""" +2024-10-05,63771,3976,"[\""Monitor\"", \""Keyboard\""]",921.5,"{\""promo\"": \""10%\""}",67464,0,"""Asia""" +2024-08-03,63772,2340,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2058.33,"{\""seasonal\"": \""14%\""}",37656,1,"""Europe""" +2023-01-28,63773,8683,"[\""Monitor\""]",3699.07,"{\""promo\"": \""14%\""}",254868,0,"""Asia""" +2024-06-09,63774,6330,"[\""Phone\""]",3066.26,"{\""promo\"": \""16%\""}",140928,1,"""Asia""" +2023-07-19,63775,2005,"[\""Tablet\"", \""Keyboard\""]",4979.03,{},206571,0,"""Asia""" +2024-05-12,63776,3866,"[\""Wireless Mouse\"", \""Monitor\""]",459.25,{},8173,1,"""South America""" +2023-02-17,63777,7456,"[\""Wireless Mouse\"", \""Phone\""]",4959.86,{},122135,0,"""Europe""" +2023-01-06,63778,1738,"[\""Tablet\""]",4815.33,"{\"": \""29%\""}",116742,1,"""Europe""" +2024-04-05,63779,9594,"[\""Laptop\""]",4958.52,{},181504,0,"""Asia""" +2024-12-31,63780,5545,"[\""Tablet\""]",3359.0,"{\""promo\"": \""17%\""}",286669,1,"""Asia""" +2023-08-27,63781,3074,"[\""Keyboard\""]",1757.52,{},108178,0,"""Asia""" +2023-04-24,63782,7567,"[\""Phone\""]",3409.26,{},204211,0,"""Africa""" +2023-10-05,63783,8409,"[\""Laptop\"", \""Headphones\""]",1396.51,"{\""promo\"": \""11%\""}",150357,1,"""Africa""" +2023-02-15,63784,1717,"[\""Headphones\"", \""Monitor\""]",1382.83,"{\""promo\"": \""18%\""}",128738,0,"""North America""" +2023-10-13,63785,7313,"[\""Monitor\"", \""Phone\""]",3621.76,"{\""promo\"": \""22%\""}",200869,1,"""South America""" +2023-08-27,63786,1797,"[\""Monitor\"", \""Phone\""]",2487.83,"{\""loyalty\"": \""28%\""}",192463,0,"""North America""" +2023-12-08,63787,9906,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4055.76,{},285751,1,"""Africa""" +2024-04-24,63788,4171,"[\""Keyboard\"", \""Monitor\""]",597.29,{},33477,1,"""South America""" +2023-04-10,63789,9783,"[\""Keyboard\""]",4699.77,"{\"": \""28%\""}",27764,0,"""South America""" +2023-10-15,63790,5628,"[\""Keyboard\""]",784.66,"{\"": \""27%\""}",266241,0,"""Europe""" +2023-05-08,63791,7717,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3440.43,{},131575,0,"""Asia""" +2024-02-03,63792,592,"[\""Phone\"", \""Laptop\""]",468.32,{},85413,0,"""Europe""" +2023-05-17,63793,9459,"[\""Tablet\"", \""Wireless Mouse\""]",107.3,"{\""loyalty\"": \""24%\""}",121836,1,"""Africa""" +2024-03-15,63794,900,"[\""Tablet\"", \""Monitor\""]",803.56,{},139927,1,"""South America""" +2024-11-09,63795,7851,"[\""Tablet\"", \""Laptop\""]",610.32,{},4227,1,"""Europe""" +2023-10-16,63796,8851,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2955.41,"{\""promo\"": \""23%\""}",217045,1,"""Africa""" +2024-10-14,63797,6198,"[\""Laptop\""]",1187.88,"{\"": \""6%\""}",123558,1,"""Africa""" +2024-01-07,63798,9295,"[\""Headphones\""]",1065.36,"{\""seasonal\"": \""14%\""}",92358,0,"""Asia""" +2024-05-19,63799,8835,"[\""Charger\"", \""Monitor\""]",3626.74,{},27448,0,"""North America""" +2024-03-30,63800,5487,"[\""Headphones\"", \""Monitor\""]",3228.61,{},231945,0,"""Asia""" +2023-09-17,63801,7805,"[\""Wireless Mouse\""]",1292.67,"{\""loyalty\"": \""24%\""}",20711,1,"""South America""" +2023-08-14,63802,4273,"[\""Charger\"", \""Wireless Mouse\""]",4865.0,{},136677,0,"""Asia""" +2023-11-19,63803,1820,"[\""Charger\"", \""Keyboard\""]",133.21,"{\""loyalty\"": \""13%\""}",258666,0,"""Asia""" +2024-04-03,63804,1692,"[\""Monitor\""]",1042.96,{},272415,0,"""Asia""" +2024-07-06,63805,2816,"[\""Charger\""]",2597.46,{},237418,1,"""Europe""" +2023-09-18,63806,1133,"[\""Monitor\""]",1488.11,"{\""loyalty\"": \""9%\""}",146278,0,"""North America""" +2024-12-25,63807,2925,"[\""Keyboard\""]",3195.79,"{\"": \""9%\""}",181674,0,"""Asia""" +2024-07-11,63808,711,"[\""Tablet\"", \""Charger\""]",3008.07,"{\"": \""14%\""}",220267,1,"""North America""" +2024-08-17,63809,7407,"[\""Monitor\"", \""Keyboard\""]",3227.25,{},34094,0,"""South America""" +2023-08-21,63810,7037,"[\""Monitor\"", \""Laptop\""]",3234.8,{},193492,1,"""Europe""" +2024-11-03,63811,3037,"[\""Phone\"", \""Wireless Mouse\""]",4304.09,{},280188,0,"""Europe""" +2023-11-03,63812,8336,"[\""Charger\"", \""Monitor\""]",4948.51,{},74848,1,"""Africa""" +2024-06-15,63813,6357,"[\""Headphones\""]",4773.9,"{\"": \""21%\""}",279304,1,"""Africa""" +2024-01-13,63814,2812,"[\""Keyboard\"", \""Charger\""]",2300.52,{},252122,1,"""Europe""" +2023-02-10,63815,1866,"[\""Monitor\"", \""Keyboard\""]",2263.18,{},174237,0,"""South America""" +2023-11-05,63816,1511,"[\""Laptop\"", \""Charger\""]",3371.32,{},296815,0,"""North America""" +2023-12-17,63817,1024,"[\""Keyboard\""]",1795.53,{},250932,0,"""Europe""" +2024-06-04,63818,9644,"[\""Keyboard\""]",3927.69,{},140467,0,"""Asia""" +2023-10-08,63819,7311,"[\""Phone\""]",2234.1,"{\""seasonal\"": \""8%\""}",33401,0,"""North America""" +2024-06-11,63820,8261,"[\""Charger\""]",2493.09,{},151107,0,"""Africa""" +2024-08-14,63821,6817,"[\""Tablet\""]",2456.89,"{\"": \""25%\""}",151926,1,"""North America""" +2023-11-07,63822,361,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2637.33,{},46391,0,"""Africa""" +2024-03-07,63823,7678,"[\""Keyboard\""]",2952.43,{},35850,0,"""Asia""" +2024-03-02,63824,3615,"[\""Phone\"", \""Laptop\""]",1536.63,"{\"": \""19%\""}",214865,1,"""Africa""" +2023-08-01,63825,1867,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1073.95,{},190545,0,"""Africa""" +2023-03-11,63826,7796,"[\""Phone\""]",3688.62,{},143160,0,"""Africa""" +2024-05-21,63827,5043,"[\""Monitor\"", \""Tablet\""]",1897.53,"{\""loyalty\"": \""26%\""}",199150,1,"""Europe""" +2024-10-02,63828,5893,"[\""Headphones\"", \""Phone\""]",1156.26,{},144327,1,"""Asia""" +2023-10-19,63829,7142,"[\""Laptop\""]",2136.36,"{\""loyalty\"": \""10%\""}",165181,0,"""Asia""" +2023-04-17,63830,8687,"[\""Keyboard\"", \""Wireless Mouse\""]",3658.45,{},110525,0,"""Europe""" +2023-11-05,63831,7823,"[\""Phone\""]",3006.2,"{\""loyalty\"": \""13%\""}",220868,0,"""North America""" +2024-02-18,63832,1831,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3484.7,"{\""promo\"": \""12%\""}",264831,0,"""North America""" +2024-05-03,63833,6332,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4030.26,"{\""promo\"": \""26%\""}",97886,0,"""Africa""" +2024-12-29,63834,151,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1590.56,"{\""seasonal\"": \""8%\""}",247685,1,"""Asia""" +2023-10-08,63835,3675,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4369.29,{},147276,1,"""South America""" +2024-08-03,63836,4385,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4073.04,{},192413,1,"""South America""" +2024-08-19,63837,5300,"[\""Headphones\""]",1437.84,{},63919,0,"""Europe""" +2023-04-22,63838,8998,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1398.11,"{\"": \""22%\""}",123099,0,"""Africa""" +2023-07-11,63839,4499,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4999.11,{},100091,1,"""Europe""" +2023-06-12,63840,3720,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3849.09,{},187487,1,"""Africa""" +2023-09-18,63841,2340,"[\""Wireless Mouse\""]",87.87,"{\""seasonal\"": \""25%\""}",38466,1,"""Africa""" +2023-05-01,63842,3765,"[\""Tablet\""]",1042.24,{},293626,1,"""North America""" +2023-07-03,63843,4145,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3503.53,"{\""loyalty\"": \""20%\""}",118654,0,"""Africa""" +2024-06-22,63844,90,"[\""Tablet\"", \""Wireless Mouse\""]",4806.99,{},51837,0,"""North America""" +2024-07-27,63845,6449,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1823.76,{},285835,0,"""Europe""" +2023-01-12,63846,3082,"[\""Monitor\""]",3140.03,{},147854,0,"""Asia""" +2024-06-15,63847,3210,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",279.22,"{\""promo\"": \""14%\""}",227245,1,"""Asia""" +2023-12-16,63848,8244,"[\""Laptop\""]",3015.42,{},45676,0,"""Asia""" +2023-10-13,63849,532,"[\""Phone\""]",2665.84,"{\""seasonal\"": \""10%\""}",221947,1,"""Europe""" +2023-10-21,63850,9243,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1008.4,"{\""seasonal\"": \""10%\""}",23783,0,"""Europe""" +2023-06-18,63851,4269,"[\""Monitor\""]",2702.09,"{\"": \""29%\""}",88224,0,"""North America""" +2023-06-20,63852,9068,"[\""Wireless Mouse\"", \""Charger\""]",4815.44,"{\""seasonal\"": \""10%\""}",155474,1,"""North America""" +2023-04-28,63853,2780,"[\""Headphones\"", \""Charger\""]",3263.68,"{\""promo\"": \""21%\""}",218262,0,"""North America""" +2023-10-17,63854,7250,"[\""Laptop\""]",3765.37,"{\""seasonal\"": \""8%\""}",60589,0,"""Europe""" +2023-02-03,63855,115,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1816.35,"{\""seasonal\"": \""11%\""}",75381,1,"""Asia""" +2024-01-07,63856,3011,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1436.6,{},196567,0,"""Asia""" +2024-12-05,63857,3021,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3845.05,"{\""seasonal\"": \""13%\""}",109500,0,"""Africa""" +2023-07-14,63858,7719,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",952.85,{},268188,0,"""Africa""" +2024-01-28,63859,5904,"[\""Tablet\"", \""Headphones\""]",151.77,{},220915,0,"""North America""" +2023-04-01,63860,5526,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2516.72,"{\""loyalty\"": \""30%\""}",126370,1,"""Europe""" +2024-02-22,63861,9898,"[\""Phone\""]",4765.59,{},71078,0,"""Asia""" +2023-04-06,63862,2321,"[\""Phone\""]",363.16,{},185710,1,"""Asia""" +2024-06-24,63863,3092,"[\""Headphones\"", \""Laptop\""]",2627.9,"{\""loyalty\"": \""8%\""}",8785,1,"""North America""" +2024-09-26,63864,4202,"[\""Headphones\"", \""Phone\""]",3819.69,"{\""promo\"": \""6%\""}",129653,1,"""Asia""" +2024-06-15,63865,1731,"[\""Charger\""]",1177.08,{},223604,0,"""South America""" +2023-08-04,63866,456,"[\""Headphones\""]",4688.54,"{\""promo\"": \""7%\""}",123196,1,"""South America""" +2023-01-04,63867,7657,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4970.96,"{\""loyalty\"": \""12%\""}",75322,1,"""North America""" +2023-10-08,63868,4742,"[\""Monitor\"", \""Charger\""]",649.09,"{\"": \""5%\""}",134153,0,"""South America""" +2023-11-13,63869,4460,"[\""Tablet\"", \""Wireless Mouse\""]",4513.61,{},265843,1,"""Asia""" +2024-01-14,63870,4053,"[\""Charger\""]",2458.07,"{\""loyalty\"": \""7%\""}",69939,1,"""Asia""" +2023-04-05,63871,7459,"[\""Laptop\""]",2321.16,{},29360,0,"""Asia""" +2023-02-21,63872,8913,"[\""Laptop\""]",4831.09,"{\""promo\"": \""24%\""}",69953,0,"""Asia""" +2023-07-03,63873,9621,"[\""Charger\"", \""Wireless Mouse\""]",1182.7,{},28169,1,"""Asia""" +2024-03-27,63874,9235,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",386.87,"{\""promo\"": \""28%\""}",165953,1,"""North America""" +2023-12-29,63875,6747,"[\""Tablet\"", \""Phone\""]",3355.49,{},232290,1,"""Europe""" +2024-02-26,63876,1880,"[\""Laptop\"", \""Headphones\""]",388.02,"{\"": \""22%\""}",106765,0,"""North America""" +2023-10-24,63877,3567,"[\""Laptop\"", \""Wireless Mouse\""]",902.66,"{\""loyalty\"": \""11%\""}",198391,0,"""Asia""" +2023-07-28,63878,5531,"[\""Headphones\"", \""Laptop\""]",1570.81,{},82410,1,"""Europe""" +2023-04-28,63879,1727,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1915.66,"{\"": \""29%\""}",31213,1,"""Europe""" +2024-09-23,63880,1466,"[\""Charger\"", \""Tablet\""]",4579.43,{},269984,0,"""North America""" +2024-03-09,63881,5081,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3285.34,{},297214,0,"""Asia""" +2023-03-28,63882,8973,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4878.21,{},205984,0,"""Europe""" +2024-10-11,63883,439,"[\""Monitor\"", \""Tablet\""]",599.29,{},226358,1,"""South America""" +2024-08-02,63884,8020,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4694.35,{},270309,0,"""Africa""" +2024-05-22,63885,3310,"[\""Tablet\""]",1199.7,{},201624,1,"""Europe""" +2024-03-28,63886,5377,"[\""Laptop\"", \""Tablet\""]",3812.42,"{\"": \""5%\""}",290914,0,"""North America""" +2023-05-07,63887,2231,"[\""Keyboard\"", \""Monitor\""]",127.07,{},289877,1,"""Europe""" +2023-08-19,63888,6167,"[\""Keyboard\""]",77.06,"{\""seasonal\"": \""25%\""}",122991,0,"""South America""" +2023-03-03,63889,2390,"[\""Tablet\""]",3882.54,"{\""promo\"": \""20%\""}",83388,1,"""Africa""" +2024-12-25,63890,4893,"[\""Charger\""]",3735.2,"{\""seasonal\"": \""30%\""}",288661,1,"""South America""" +2023-02-26,63891,2447,"[\""Laptop\"", \""Phone\""]",1170.62,{},19221,0,"""South America""" +2024-05-28,63892,796,"[\""Phone\""]",165.77,"{\""seasonal\"": \""15%\""}",122279,0,"""Asia""" +2024-05-18,63893,6570,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4653.02,{},260143,1,"""Africa""" +2023-09-24,63894,6103,"[\""Monitor\""]",4101.63,"{\""promo\"": \""7%\""}",260120,1,"""North America""" +2023-09-29,63895,2599,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3681.96,"{\""promo\"": \""19%\""}",211731,0,"""Asia""" +2024-07-10,63896,1983,"[\""Charger\""]",480.4,{},282061,0,"""Europe""" +2023-03-15,63897,6459,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3830.71,"{\"": \""28%\""}",201857,1,"""Europe""" +2023-01-14,63898,7078,"[\""Phone\""]",2313.54,"{\""promo\"": \""28%\""}",83129,1,"""Asia""" +2023-08-05,63899,6118,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4982.78,"{\""promo\"": \""15%\""}",185627,0,"""North America""" +2024-01-25,63900,1291,"[\""Wireless Mouse\"", \""Monitor\""]",1511.92,"{\""loyalty\"": \""19%\""}",256312,1,"""Europe""" +2023-02-22,63901,2723,"[\""Laptop\""]",3640.13,{},179335,0,"""Europe""" +2023-11-20,63902,9507,"[\""Charger\"", \""Laptop\""]",3976.46,{},281101,0,"""Africa""" +2024-12-07,63903,4640,"[\""Phone\""]",1158.99,{},218343,0,"""South America""" +2023-12-09,63904,6496,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3311.13,"{\""promo\"": \""22%\""}",61116,0,"""South America""" +2023-09-04,63905,64,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1954.67,{},50485,1,"""Europe""" +2023-11-04,63906,9773,"[\""Charger\""]",4707.23,"{\"": \""23%\""}",19052,0,"""South America""" +2023-09-09,63907,1387,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4122.88,{},3406,1,"""Europe""" +2023-12-27,63908,3346,"[\""Laptop\""]",4927.85,{},297601,0,"""Asia""" +2023-11-04,63909,6890,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3416.03,"{\""loyalty\"": \""18%\""}",190356,1,"""North America""" +2023-07-28,63910,4040,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2988.25,{},183960,1,"""Asia""" +2023-11-21,63911,6452,"[\""Phone\"", \""Charger\""]",2048.4,{},115943,1,"""Europe""" +2024-11-22,63912,4182,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",654.43,"{\""loyalty\"": \""20%\""}",27014,1,"""Asia""" +2023-06-12,63913,7817,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",132.72,"{\"": \""30%\""}",86543,0,"""North America""" +2024-08-24,63914,9485,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4082.97,"{\""promo\"": \""21%\""}",279425,1,"""Europe""" +2024-07-28,63915,9629,"[\""Monitor\""]",3746.09,"{\""loyalty\"": \""27%\""}",23867,1,"""Africa""" +2023-07-23,63916,8231,"[\""Laptop\"", \""Wireless Mouse\""]",3061.43,{},16928,1,"""Asia""" +2023-07-05,63917,3052,"[\""Tablet\""]",4783.76,{},164265,1,"""Africa""" +2023-12-18,63918,7278,"[\""Wireless Mouse\""]",1238.16,"{\""promo\"": \""5%\""}",103658,0,"""Europe""" +2023-01-30,63919,1274,"[\""Phone\"", \""Monitor\"", \""Charger\""]",854.23,{},299371,1,"""Africa""" +2023-02-01,63920,1372,"[\""Headphones\""]",3765.08,"{\""promo\"": \""16%\""}",195651,1,"""North America""" +2023-09-06,63921,5629,"[\""Charger\""]",2461.19,"{\"": \""7%\""}",110563,0,"""North America""" +2023-04-17,63922,9802,"[\""Wireless Mouse\""]",980.36,{},37417,1,"""Africa""" +2024-12-16,63923,334,"[\""Wireless Mouse\""]",4860.82,{},283773,0,"""Africa""" +2023-10-30,63924,3964,"[\""Keyboard\"", \""Laptop\""]",3698.32,"{\""promo\"": \""26%\""}",134034,0,"""North America""" +2023-07-17,63925,3847,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",553.21,{},290902,0,"""South America""" +2024-06-01,63926,4478,"[\""Monitor\""]",1089.21,{},205057,0,"""South America""" +2023-11-24,63927,410,"[\""Charger\""]",587.67,"{\""seasonal\"": \""24%\""}",147282,0,"""Europe""" +2023-11-01,63928,8894,"[\""Tablet\"", \""Headphones\""]",2991.23,"{\""loyalty\"": \""13%\""}",100251,0,"""North America""" +2024-01-05,63929,5121,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",64.65,"{\""promo\"": \""26%\""}",182036,1,"""Europe""" +2023-03-21,63930,4579,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4153.68,"{\""promo\"": \""17%\""}",165242,1,"""North America""" +2024-06-17,63931,3221,"[\""Monitor\""]",650.71,"{\""seasonal\"": \""5%\""}",154714,1,"""North America""" +2024-09-24,63932,3020,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1261.43,"{\"": \""15%\""}",158253,0,"""North America""" +2024-02-03,63933,7432,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",407.69,"{\""loyalty\"": \""7%\""}",106350,1,"""Africa""" +2024-04-16,63934,3565,"[\""Headphones\""]",2488.04,"{\""promo\"": \""28%\""}",282322,1,"""Europe""" +2024-08-08,63935,4168,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1364.1,"{\""promo\"": \""27%\""}",172849,0,"""South America""" +2024-07-31,63936,5274,"[\""Charger\""]",436.47,"{\""seasonal\"": \""17%\""}",238552,0,"""Africa""" +2023-01-23,63937,2543,"[\""Wireless Mouse\""]",2436.22,{},196614,0,"""North America""" +2023-10-25,63938,7398,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1152.88,{},250746,0,"""Asia""" +2024-08-12,63939,8497,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",615.69,{},4781,1,"""South America""" +2024-02-21,63940,7697,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1179.47,{},85882,1,"""South America""" +2023-02-04,63941,1605,"[\""Charger\"", \""Monitor\""]",2207.46,"{\""seasonal\"": \""22%\""}",89487,1,"""Europe""" +2023-06-04,63942,3477,"[\""Headphones\""]",4231.07,{},84580,1,"""South America""" +2023-03-14,63943,5794,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",358.49,"{\""promo\"": \""6%\""}",286272,1,"""Asia""" +2024-01-23,63944,5628,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2409.88,"{\"": \""25%\""}",75694,0,"""North America""" +2023-04-15,63945,8061,"[\""Charger\"", \""Keyboard\""]",4329.38,{},262069,0,"""Asia""" +2024-10-11,63946,9600,"[\""Monitor\"", \""Laptop\""]",3482.34,"{\""promo\"": \""30%\""}",233082,0,"""Europe""" +2023-02-03,63947,4279,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2901.0,"{\"": \""22%\""}",73293,1,"""North America""" +2024-10-23,63948,9631,"[\""Keyboard\""]",3212.21,{},119176,1,"""Africa""" +2023-10-06,63949,9007,"[\""Headphones\""]",1266.44,"{\""loyalty\"": \""9%\""}",32118,1,"""Europe""" +2024-01-13,63950,322,"[\""Phone\""]",2831.91,{},213016,1,"""North America""" +2023-06-29,63951,7661,"[\""Monitor\"", \""Tablet\""]",4759.17,{},243174,0,"""North America""" +2024-02-24,63952,1215,"[\""Monitor\"", \""Keyboard\""]",2515.54,"{\"": \""8%\""}",157804,1,"""Europe""" +2023-09-09,63953,9796,"[\""Wireless Mouse\"", \""Tablet\""]",2552.67,"{\""seasonal\"": \""24%\""}",259461,1,"""Asia""" +2023-09-01,63954,1568,"[\""Headphones\""]",1103.81,"{\"": \""26%\""}",153141,1,"""Africa""" +2024-06-02,63955,4939,"[\""Monitor\"", \""Keyboard\""]",2269.54,{},2468,0,"""Africa""" +2024-12-13,63956,21,"[\""Headphones\""]",3297.43,"{\"": \""29%\""}",96054,0,"""Europe""" +2023-07-14,63957,2126,"[\""Monitor\""]",2115.38,"{\"": \""23%\""}",178357,0,"""Asia""" +2024-07-05,63958,4999,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1768.99,"{\"": \""28%\""}",290865,0,"""Europe""" +2023-06-18,63959,2163,"[\""Headphones\""]",4722.14,{},280189,0,"""Europe""" +2023-12-04,63960,1380,"[\""Headphones\""]",2831.09,{},191492,0,"""Africa""" +2024-07-10,63961,3924,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3216.37,"{\""promo\"": \""13%\""}",38999,1,"""North America""" +2023-05-07,63962,1774,"[\""Laptop\""]",2523.19,{},254487,0,"""Europe""" +2023-07-01,63963,2628,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1919.69,{},216025,0,"""South America""" +2024-02-22,63964,9690,"[\""Laptop\"", \""Charger\""]",744.69,{},243052,1,"""North America""" +2024-07-17,63965,5703,"[\""Wireless Mouse\"", \""Monitor\""]",301.07,"{\"": \""28%\""}",42126,0,"""Europe""" +2023-01-24,63966,4123,"[\""Wireless Mouse\"", \""Charger\""]",4516.58,{},105059,1,"""Africa""" +2024-07-20,63967,7958,"[\""Wireless Mouse\"", \""Charger\""]",1987.97,"{\""seasonal\"": \""17%\""}",272862,1,"""South America""" +2024-03-24,63968,2397,"[\""Laptop\""]",3470.23,"{\""loyalty\"": \""29%\""}",167823,0,"""Europe""" +2023-10-22,63969,2445,"[\""Monitor\"", \""Laptop\""]",1001.99,"{\""seasonal\"": \""19%\""}",210212,0,"""North America""" +2023-06-03,63970,5454,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4572.89,"{\""loyalty\"": \""15%\""}",222173,0,"""Asia""" +2023-04-14,63971,3405,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1610.31,{},223276,0,"""Europe""" +2024-07-17,63972,4811,"[\""Charger\""]",2779.27,{},223647,0,"""Europe""" +2024-05-01,63973,8927,"[\""Charger\"", \""Headphones\""]",2313.86,{},94198,0,"""South America""" +2023-01-10,63974,8765,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1827.62,{},60271,1,"""South America""" +2023-05-22,63975,3494,"[\""Tablet\"", \""Keyboard\""]",238.46,"{\"": \""9%\""}",94097,1,"""Africa""" +2023-09-04,63976,2593,"[\""Laptop\""]",4228.96,{},167818,0,"""North America""" +2024-01-10,63977,1701,"[\""Keyboard\"", \""Wireless Mouse\""]",4312.81,"{\""seasonal\"": \""8%\""}",130492,0,"""South America""" +2023-06-21,63978,6955,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3449.56,{},245912,1,"""Africa""" +2023-07-30,63979,3286,"[\""Tablet\""]",382.31,"{\"": \""9%\""}",201639,0,"""North America""" +2023-03-28,63980,4937,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",288.95,{},205341,1,"""Europe""" +2024-11-08,63981,9459,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3606.89,{},137771,1,"""Europe""" +2023-07-26,63982,1938,"[\""Charger\""]",483.16,"{\""seasonal\"": \""12%\""}",80731,1,"""South America""" +2023-08-12,63983,8144,"[\""Tablet\"", \""Keyboard\""]",4061.38,"{\"": \""24%\""}",150045,1,"""Asia""" +2023-09-25,63984,4036,"[\""Laptop\"", \""Phone\""]",1879.76,"{\""loyalty\"": \""27%\""}",58494,0,"""South America""" +2024-01-04,63985,2741,"[\""Headphones\"", \""Tablet\""]",1439.44,{},201127,0,"""South America""" +2024-11-24,63986,9074,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2389.61,{},121559,1,"""Asia""" +2023-08-30,63987,7229,"[\""Monitor\""]",2716.6,{},270059,1,"""North America""" +2024-11-02,63988,3167,"[\""Laptop\""]",1006.21,"{\""loyalty\"": \""7%\""}",268052,0,"""Europe""" +2024-04-17,63989,3138,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2062.03,{},224314,1,"""Africa""" +2024-12-01,63990,4236,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",520.47,"{\"": \""6%\""}",234966,0,"""South America""" +2023-03-11,63991,3868,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",253.89,{},150841,1,"""South America""" +2023-01-28,63992,7787,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",634.26,{},160709,1,"""South America""" +2023-07-17,63993,1347,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2415.53,"{\""promo\"": \""10%\""}",217110,1,"""Europe""" +2023-10-11,63994,1486,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3636.12,{},136629,1,"""Asia""" +2023-10-25,63995,9504,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1359.71,{},264113,1,"""Asia""" +2024-02-15,63996,170,"[\""Keyboard\"", \""Wireless Mouse\""]",475.27,{},275830,1,"""Europe""" +2024-06-20,63997,8096,"[\""Wireless Mouse\""]",4023.88,{},236897,0,"""Europe""" +2023-07-29,63998,7942,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3453.34,"{\""promo\"": \""21%\""}",254467,0,"""Africa""" +2023-05-02,63999,3374,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1826.44,{},153039,0,"""South America""" +2024-01-08,64000,4920,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2239.64,"{\""loyalty\"": \""25%\""}",71616,1,"""South America""" +2024-02-17,64001,7176,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",590.28,{},279951,1,"""North America""" +2024-12-11,64002,1165,"[\""Keyboard\""]",1380.48,"{\""seasonal\"": \""28%\""}",87633,0,"""Asia""" +2024-06-14,64003,1928,"[\""Charger\"", \""Headphones\""]",2384.9,"{\""seasonal\"": \""21%\""}",68314,1,"""Europe""" +2023-07-06,64004,524,"[\""Tablet\""]",4648.67,{},258694,0,"""Africa""" +2024-10-31,64005,8641,"[\""Wireless Mouse\"", \""Phone\""]",512.96,{},235709,0,"""Africa""" +2023-04-18,64006,5019,"[\""Headphones\"", \""Monitor\""]",3105.54,{},197072,0,"""Europe""" +2023-09-18,64007,3116,"[\""Charger\"", \""Monitor\""]",2981.92,{},56657,1,"""Europe""" +2023-09-20,64008,1376,"[\""Headphones\""]",1943.43,"{\"": \""23%\""}",163333,1,"""Africa""" +2023-05-28,64009,2244,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",574.54,"{\""seasonal\"": \""8%\""}",129943,0,"""South America""" +2023-06-06,64010,4705,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4296.29,"{\""loyalty\"": \""13%\""}",211056,1,"""South America""" +2024-01-26,64011,8085,"[\""Headphones\"", \""Keyboard\""]",382.45,{},165993,1,"""North America""" +2023-09-12,64012,5117,"[\""Tablet\""]",738.87,"{\""loyalty\"": \""24%\""}",286972,1,"""Asia""" +2023-01-03,64013,6247,"[\""Keyboard\""]",3237.15,"{\""promo\"": \""9%\""}",60836,0,"""North America""" +2024-10-04,64014,4288,"[\""Phone\"", \""Charger\""]",449.59,{},16880,0,"""Europe""" +2023-01-16,64015,4381,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2417.57,"{\""seasonal\"": \""27%\""}",134431,0,"""Europe""" +2023-04-23,64016,8553,"[\""Laptop\""]",691.33,{},230906,1,"""Africa""" +2023-09-12,64017,3391,"[\""Wireless Mouse\""]",3577.74,{},106871,0,"""Europe""" +2024-10-08,64018,241,"[\""Charger\"", \""Headphones\""]",3271.75,{},56748,0,"""North America""" +2023-10-04,64019,819,"[\""Tablet\"", \""Wireless Mouse\""]",1553.96,"{\"": \""6%\""}",21829,0,"""Europe""" +2024-02-20,64020,2681,"[\""Wireless Mouse\"", \""Tablet\""]",2994.67,"{\"": \""9%\""}",27772,1,"""Africa""" +2024-09-04,64021,6738,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1366.79,{},93907,0,"""Africa""" +2024-02-25,64022,156,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4255.13,"{\""promo\"": \""18%\""}",119257,1,"""South America""" +2023-03-03,64023,4575,"[\""Monitor\"", \""Wireless Mouse\""]",73.74,"{\""seasonal\"": \""16%\""}",85772,1,"""Europe""" +2024-06-19,64024,9442,"[\""Headphones\"", \""Phone\""]",3120.94,{},191018,0,"""Africa""" +2024-09-09,64025,2428,"[\""Monitor\"", \""Laptop\""]",1273.62,{},107956,0,"""Europe""" +2024-08-06,64026,4117,"[\""Monitor\"", \""Wireless Mouse\""]",2352.15,"{\""seasonal\"": \""6%\""}",142257,1,"""Europe""" +2024-03-22,64027,8877,"[\""Laptop\""]",621.74,"{\"": \""18%\""}",164756,0,"""North America""" +2023-03-04,64028,2198,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",833.97,{},130968,0,"""Asia""" +2024-11-24,64029,8303,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3313.08,{},215847,0,"""North America""" +2024-03-03,64030,7209,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",375.17,{},135494,1,"""Asia""" +2023-12-05,64031,2627,"[\""Monitor\"", \""Tablet\""]",2270.4,"{\""seasonal\"": \""11%\""}",168477,0,"""North America""" +2023-02-18,64032,6621,"[\""Charger\""]",2979.58,"{\""loyalty\"": \""10%\""}",62834,0,"""North America""" +2023-07-06,64033,2282,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4760.66,"{\""seasonal\"": \""16%\""}",73487,1,"""Africa""" +2023-01-16,64034,7018,"[\""Headphones\""]",4623.34,"{\""promo\"": \""29%\""}",30372,1,"""Asia""" +2023-03-27,64035,5876,"[\""Laptop\"", \""Tablet\""]",264.01,"{\""seasonal\"": \""20%\""}",38555,1,"""South America""" +2024-09-16,64036,6317,"[\""Phone\"", \""Keyboard\""]",4202.53,"{\""seasonal\"": \""5%\""}",181407,1,"""South America""" +2023-04-04,64037,5486,"[\""Phone\""]",2898.02,"{\""seasonal\"": \""27%\""}",33263,1,"""South America""" +2024-05-05,64038,4721,"[\""Phone\""]",4725.91,{},119153,0,"""Africa""" +2023-05-28,64039,8566,"[\""Phone\"", \""Laptop\""]",1435.19,{},70931,0,"""Asia""" +2023-10-14,64040,4482,"[\""Charger\"", \""Laptop\""]",2956.28,"{\""promo\"": \""26%\""}",68142,1,"""Asia""" +2024-11-13,64041,3710,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3559.16,"{\""loyalty\"": \""14%\""}",47854,0,"""North America""" +2023-09-11,64042,4140,"[\""Wireless Mouse\"", \""Headphones\""]",4945.21,"{\"": \""25%\""}",72237,0,"""Africa""" +2024-12-09,64043,1767,"[\""Wireless Mouse\""]",1105.63,"{\"": \""7%\""}",207185,0,"""North America""" +2024-06-01,64044,6506,"[\""Wireless Mouse\""]",284.97,{},174723,0,"""Asia""" +2023-11-01,64045,6791,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",853.39,{},165797,1,"""Africa""" +2024-09-28,64046,7407,"[\""Wireless Mouse\"", \""Tablet\""]",371.49,{},89046,1,"""Asia""" +2023-02-11,64047,8125,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4564.02,{},165894,1,"""South America""" +2024-11-02,64048,3642,"[\""Charger\"", \""Monitor\""]",4608.95,"{\""promo\"": \""20%\""}",177594,0,"""South America""" +2023-12-20,64049,2249,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1242.51,"{\"": \""16%\""}",246003,0,"""Europe""" +2023-03-01,64050,1464,"[\""Keyboard\"", \""Charger\""]",3838.84,{},194042,1,"""Africa""" +2023-06-03,64051,5617,"[\""Wireless Mouse\""]",2118.7,"{\"": \""14%\""}",210358,0,"""Europe""" +2023-11-10,64052,5273,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3230.11,"{\"": \""19%\""}",82311,1,"""Africa""" +2024-12-05,64053,6831,"[\""Phone\"", \""Tablet\""]",2998.61,{},195181,1,"""Africa""" +2023-03-13,64054,9189,"[\""Monitor\"", \""Headphones\""]",2973.43,{},240218,0,"""North America""" +2024-10-30,64055,3437,"[\""Laptop\""]",4482.66,{},175151,0,"""Asia""" +2024-09-01,64056,4389,"[\""Phone\""]",172.23,{},140345,0,"""North America""" +2024-01-01,64057,9278,"[\""Laptop\""]",3173.02,{},285409,0,"""Europe""" +2024-09-09,64058,3299,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4822.6,"{\""promo\"": \""19%\""}",91833,1,"""Africa""" +2024-04-30,64059,8800,"[\""Wireless Mouse\""]",3953.45,"{\""loyalty\"": \""17%\""}",137861,1,"""South America""" +2023-11-24,64060,9010,"[\""Headphones\""]",4375.99,"{\""loyalty\"": \""15%\""}",98860,1,"""Asia""" +2023-10-19,64061,1852,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2077.94,{},255001,1,"""South America""" +2023-11-10,64062,5595,"[\""Keyboard\""]",4525.63,{},21815,0,"""Asia""" +2024-07-16,64063,6148,"[\""Tablet\""]",3408.4,{},239081,1,"""Africa""" +2024-12-04,64064,3911,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3874.78,{},139266,1,"""Europe""" +2023-09-20,64065,4919,"[\""Tablet\"", \""Headphones\""]",3732.86,"{\""seasonal\"": \""21%\""}",159712,1,"""Europe""" +2024-02-21,64066,8317,"[\""Monitor\"", \""Tablet\""]",204.97,"{\""seasonal\"": \""25%\""}",214778,0,"""North America""" +2024-12-12,64067,5717,"[\""Keyboard\""]",2425.52,"{\""seasonal\"": \""21%\""}",139810,1,"""North America""" +2023-05-16,64068,5420,"[\""Phone\"", \""Wireless Mouse\""]",4663.59,{},127246,0,"""North America""" +2024-06-29,64069,1771,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4388.79,"{\""promo\"": \""6%\""}",60374,0,"""North America""" +2023-10-17,64070,1787,"[\""Tablet\""]",2765.93,{},154492,0,"""North America""" +2023-10-05,64071,378,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",430.47,"{\""seasonal\"": \""19%\""}",106921,0,"""South America""" +2023-05-19,64072,5131,"[\""Laptop\"", \""Phone\""]",3780.75,"{\"": \""7%\""}",176067,0,"""Europe""" +2024-12-17,64073,6394,"[\""Laptop\""]",1969.29,"{\""loyalty\"": \""10%\""}",168791,0,"""South America""" +2023-10-01,64074,5048,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2868.06,{},153432,0,"""North America""" +2024-12-04,64075,5959,"[\""Laptop\""]",3212.27,"{\"": \""10%\""}",216238,0,"""North America""" +2024-02-15,64076,8263,"[\""Wireless Mouse\"", \""Laptop\""]",3447.37,"{\""promo\"": \""6%\""}",218282,0,"""Asia""" +2024-06-24,64077,7828,"[\""Monitor\"", \""Wireless Mouse\""]",3003.38,"{\""loyalty\"": \""18%\""}",196550,0,"""Asia""" +2023-11-04,64078,2746,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3859.49,{},294377,1,"""South America""" +2024-12-19,64079,9906,"[\""Keyboard\""]",1555.49,{},147382,0,"""South America""" +2024-03-13,64080,2198,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",390.46,"{\"": \""17%\""}",104413,1,"""Europe""" +2024-11-23,64081,5615,"[\""Wireless Mouse\"", \""Laptop\""]",2607.74,"{\"": \""24%\""}",86657,0,"""South America""" +2024-07-18,64082,4184,"[\""Monitor\"", \""Tablet\""]",4714.82,"{\""promo\"": \""21%\""}",183440,0,"""Asia""" +2023-08-06,64083,5610,"[\""Monitor\""]",4733.92,{},189413,0,"""South America""" +2023-03-11,64084,6102,"[\""Charger\""]",1687.9,{},80549,1,"""Africa""" +2024-02-01,64085,8918,"[\""Headphones\""]",2534.49,{},202988,0,"""Asia""" +2024-10-04,64086,5411,"[\""Phone\""]",4949.22,{},27353,1,"""Europe""" +2023-07-18,64087,7955,"[\""Headphones\"", \""Laptop\""]",329.1,"{\""seasonal\"": \""11%\""}",151887,1,"""Europe""" +2024-07-05,64088,3817,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3679.16,"{\"": \""10%\""}",139693,1,"""North America""" +2024-11-10,64089,6591,"[\""Monitor\""]",3199.61,"{\""promo\"": \""5%\""}",239708,0,"""Europe""" +2023-06-20,64090,4335,"[\""Keyboard\"", \""Monitor\""]",3167.95,{},38915,1,"""Asia""" +2024-05-28,64091,7937,"[\""Phone\"", \""Charger\""]",58.63,{},7751,0,"""South America""" +2024-07-14,64092,1932,"[\""Monitor\"", \""Wireless Mouse\""]",598.23,"{\""loyalty\"": \""21%\""}",259970,1,"""Asia""" +2024-01-06,64093,6202,"[\""Laptop\""]",1651.1,"{\""promo\"": \""18%\""}",124917,0,"""Africa""" +2023-09-27,64094,5852,"[\""Wireless Mouse\"", \""Charger\""]",4642.56,{},150917,1,"""Asia""" +2024-11-03,64095,46,"[\""Monitor\"", \""Headphones\""]",1268.2,{},129908,0,"""Asia""" +2023-12-30,64096,7531,"[\""Keyboard\"", \""Headphones\""]",306.06,{},99726,0,"""Africa""" +2023-09-09,64097,7091,"[\""Keyboard\"", \""Charger\""]",3026.64,{},299724,0,"""Asia""" +2023-12-13,64098,677,"[\""Laptop\"", \""Keyboard\""]",2873.41,{},22854,1,"""Europe""" +2023-11-15,64099,2422,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",406.69,"{\"": \""8%\""}",81655,0,"""Asia""" +2024-03-06,64100,6735,"[\""Headphones\"", \""Charger\""]",822.76,{},97794,1,"""North America""" +2023-06-28,64101,1428,"[\""Wireless Mouse\""]",1471.74,"{\"": \""28%\""}",172264,0,"""Europe""" +2023-10-11,64102,755,"[\""Headphones\"", \""Phone\""]",4618.22,"{\""loyalty\"": \""16%\""}",18236,1,"""South America""" +2023-03-29,64103,6305,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3088.71,{},245343,1,"""North America""" +2024-10-16,64104,9377,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2366.15,{},291234,1,"""South America""" +2024-11-04,64105,9047,"[\""Laptop\""]",4506.23,{},34856,0,"""South America""" +2024-03-19,64106,4716,"[\""Phone\"", \""Headphones\""]",217.83,"{\""loyalty\"": \""26%\""}",208225,0,"""Africa""" +2023-07-24,64107,9233,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3069.55,{},68334,1,"""Africa""" +2024-10-03,64108,7386,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3991.33,"{\""promo\"": \""17%\""}",76683,0,"""North America""" +2024-02-15,64109,3732,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4361.5,"{\""promo\"": \""9%\""}",243190,0,"""North America""" +2023-03-27,64110,5790,"[\""Phone\"", \""Monitor\""]",4053.95,"{\""promo\"": \""5%\""}",214609,0,"""Asia""" +2023-01-23,64111,8556,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3582.99,{},289570,1,"""North America""" +2023-09-01,64112,3941,"[\""Headphones\""]",2169.21,{},205452,0,"""South America""" +2023-10-15,64113,9100,"[\""Charger\"", \""Headphones\""]",3319.49,"{\""loyalty\"": \""16%\""}",158145,0,"""Europe""" +2024-01-05,64114,4832,"[\""Monitor\""]",796.47,"{\""loyalty\"": \""24%\""}",289918,1,"""South America""" +2023-02-13,64115,4492,"[\""Phone\""]",1156.46,"{\"": \""30%\""}",295568,0,"""Europe""" +2023-12-02,64116,1788,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",322.26,"{\""promo\"": \""6%\""}",51848,0,"""North America""" +2024-09-03,64117,5944,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4366.28,{},156804,1,"""North America""" +2023-04-25,64118,8707,"[\""Wireless Mouse\""]",2646.53,"{\""loyalty\"": \""25%\""}",30826,1,"""North America""" +2023-01-21,64119,4569,"[\""Charger\"", \""Keyboard\""]",3073.83,"{\""loyalty\"": \""24%\""}",25934,1,"""Europe""" +2024-02-19,64120,4640,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3009.52,{},133241,0,"""South America""" +2023-08-21,64121,9129,"[\""Charger\"", \""Phone\""]",1956.83,"{\"": \""22%\""}",23189,1,"""Europe""" +2023-03-01,64122,2566,"[\""Headphones\"", \""Wireless Mouse\""]",2186.49,"{\""promo\"": \""22%\""}",33531,0,"""North America""" +2024-11-24,64123,5169,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",68.57,{},274818,0,"""Europe""" +2023-03-11,64124,5100,"[\""Phone\""]",1739.02,"{\""seasonal\"": \""5%\""}",102021,1,"""North America""" +2024-04-19,64125,1306,"[\""Monitor\"", \""Keyboard\""]",1681.9,"{\"": \""21%\""}",161924,1,"""Africa""" +2023-05-26,64126,9833,"[\""Keyboard\"", \""Monitor\""]",4277.27,{},6271,0,"""Europe""" +2024-04-05,64127,6897,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",266.77,{},20015,0,"""Asia""" +2023-03-23,64128,9687,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2154.91,"{\""loyalty\"": \""16%\""}",183883,0,"""South America""" +2023-03-16,64129,7470,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",523.23,{},282364,0,"""Africa""" +2024-02-01,64130,2943,"[\""Laptop\""]",4543.92,{},58956,0,"""Europe""" +2023-07-16,64131,7441,"[\""Monitor\""]",935.61,{},78214,0,"""Africa""" +2023-05-26,64132,5537,"[\""Tablet\""]",2790.02,{},154465,0,"""North America""" +2024-09-29,64133,3646,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2097.73,{},193938,1,"""Asia""" +2023-08-06,64134,5791,"[\""Monitor\"", \""Phone\""]",1554.73,{},148032,1,"""Europe""" +2024-03-19,64135,9122,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3892.23,{},3708,1,"""Europe""" +2024-05-31,64136,844,"[\""Tablet\"", \""Phone\""]",1356.66,"{\"": \""18%\""}",76248,1,"""Asia""" +2024-09-19,64137,7170,"[\""Headphones\""]",2825.2,"{\"": \""20%\""}",1515,1,"""North America""" +2023-09-19,64138,3613,"[\""Wireless Mouse\""]",4095.74,{},11948,0,"""Asia""" +2023-05-16,64139,5338,"[\""Wireless Mouse\"", \""Headphones\""]",4968.11,{},17276,1,"""North America""" +2024-04-05,64140,3922,"[\""Monitor\""]",2083.96,"{\""promo\"": \""20%\""}",104910,0,"""Africa""" +2024-02-29,64141,8911,"[\""Tablet\"", \""Keyboard\""]",1836.97,"{\""seasonal\"": \""8%\""}",213998,1,"""South America""" +2023-06-29,64142,2588,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3166.65,"{\""promo\"": \""27%\""}",206144,0,"""Africa""" +2023-11-19,64143,1255,"[\""Tablet\"", \""Phone\""]",2631.8,"{\""promo\"": \""6%\""}",118336,1,"""Africa""" +2024-04-10,64144,3949,"[\""Monitor\"", \""Tablet\""]",947.29,"{\""promo\"": \""18%\""}",194886,0,"""Europe""" +2024-11-02,64145,5292,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1861.07,"{\""promo\"": \""30%\""}",203358,0,"""North America""" +2024-09-02,64146,5226,"[\""Wireless Mouse\""]",4816.91,{},206543,0,"""Africa""" +2024-04-30,64147,1388,"[\""Charger\"", \""Wireless Mouse\""]",920.97,{},264342,1,"""Africa""" +2024-10-11,64148,2773,"[\""Headphones\"", \""Monitor\""]",2659.55,"{\"": \""23%\""}",230185,1,"""South America""" +2023-01-02,64149,4168,"[\""Keyboard\"", \""Wireless Mouse\""]",567.35,{},287269,0,"""Europe""" +2023-10-11,64150,2179,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4867.24,"{\"": \""14%\""}",206704,1,"""Asia""" +2023-05-23,64151,1271,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2636.98,"{\""seasonal\"": \""21%\""}",21800,1,"""Europe""" +2024-06-02,64152,9058,"[\""Laptop\"", \""Keyboard\""]",144.45,{},20830,1,"""Africa""" +2023-05-20,64153,1722,"[\""Wireless Mouse\"", \""Laptop\""]",861.68,"{\"": \""19%\""}",218293,0,"""Asia""" +2023-06-06,64154,3796,"[\""Laptop\""]",3015.76,"{\""seasonal\"": \""8%\""}",267678,1,"""Europe""" +2023-09-27,64155,1804,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3527.41,"{\""loyalty\"": \""28%\""}",164615,0,"""North America""" +2024-07-24,64156,4729,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3839.38,{},92207,1,"""Asia""" +2023-04-03,64157,6502,"[\""Headphones\"", \""Charger\""]",4879.02,"{\""promo\"": \""12%\""}",217093,1,"""South America""" +2024-11-03,64158,4410,"[\""Headphones\"", \""Wireless Mouse\""]",63.43,"{\""seasonal\"": \""25%\""}",109494,0,"""Asia""" +2024-07-07,64159,2554,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4878.58,{},185232,0,"""Africa""" +2023-01-16,64160,670,"[\""Phone\""]",1509.76,"{\""loyalty\"": \""13%\""}",228235,0,"""Africa""" +2023-08-28,64161,5062,"[\""Wireless Mouse\""]",4535.18,{},121702,0,"""North America""" +2024-05-23,64162,2538,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2645.86,"{\""promo\"": \""14%\""}",74866,1,"""Africa""" +2023-12-27,64163,2285,"[\""Wireless Mouse\"", \""Phone\""]",665.07,{},114565,0,"""Asia""" +2023-12-24,64164,8271,"[\""Charger\"", \""Tablet\""]",3213.77,"{\""promo\"": \""15%\""}",260093,1,"""Europe""" +2023-10-25,64165,2508,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2471.57,{},105393,1,"""Africa""" +2023-07-22,64166,5466,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3779.85,{},42395,0,"""South America""" +2024-08-25,64167,332,"[\""Wireless Mouse\"", \""Monitor\""]",153.88,{},74307,1,"""South America""" +2024-01-10,64168,4501,"[\""Headphones\"", \""Monitor\""]",2611.71,{},251920,0,"""Africa""" +2024-04-05,64169,5564,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",117.42,{},280978,0,"""Europe""" +2023-11-21,64170,3200,"[\""Headphones\""]",4823.09,"{\"": \""17%\""}",253185,0,"""Asia""" +2024-08-08,64171,3333,"[\""Tablet\""]",4028.79,{},183288,1,"""Europe""" +2023-04-25,64172,2159,"[\""Phone\"", \""Headphones\""]",1269.63,{},119708,1,"""North America""" +2023-12-16,64173,4210,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1984.99,"{\""seasonal\"": \""17%\""}",216263,0,"""North America""" +2023-06-23,64174,5602,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3600.98,{},269524,0,"""Europe""" +2023-04-26,64175,7904,"[\""Wireless Mouse\"", \""Phone\""]",1680.13,{},190529,0,"""Africa""" +2023-06-25,64176,7699,"[\""Monitor\""]",4288.7,"{\""loyalty\"": \""23%\""}",147580,1,"""Asia""" +2023-05-28,64177,5566,"[\""Keyboard\"", \""Monitor\""]",1029.05,{},53303,1,"""Asia""" +2023-05-29,64178,383,"[\""Keyboard\"", \""Monitor\""]",4792.67,"{\""promo\"": \""23%\""}",244830,0,"""South America""" +2023-03-08,64179,9946,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2890.59,"{\""seasonal\"": \""12%\""}",173912,1,"""Europe""" +2023-03-19,64180,3163,"[\""Monitor\"", \""Charger\""]",2174.35,"{\"": \""11%\""}",43052,1,"""Europe""" +2023-03-19,64181,2736,"[\""Wireless Mouse\"", \""Headphones\""]",339.84,{},87521,0,"""Europe""" +2023-04-13,64182,3990,"[\""Tablet\""]",2066.37,{},237088,1,"""Africa""" +2023-08-28,64183,4179,"[\""Laptop\"", \""Phone\""]",1595.22,{},264271,0,"""Europe""" +2023-12-15,64184,1716,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2538.54,{},83931,1,"""South America""" +2023-05-17,64185,2969,"[\""Tablet\"", \""Keyboard\""]",1869.2,{},290793,1,"""Europe""" +2024-05-09,64186,4552,"[\""Phone\"", \""Tablet\""]",3535.21,"{\""loyalty\"": \""5%\""}",50884,1,"""Africa""" +2023-02-03,64187,1534,"[\""Headphones\"", \""Tablet\""]",3419.21,{},36665,0,"""Asia""" +2023-06-09,64188,5246,"[\""Phone\"", \""Charger\""]",1995.34,"{\""loyalty\"": \""12%\""}",144325,0,"""North America""" +2023-12-05,64189,3758,"[\""Charger\""]",3973.3,"{\"": \""24%\""}",84014,0,"""Asia""" +2024-08-20,64190,5383,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2393.05,{},151017,1,"""South America""" +2023-05-20,64191,8656,"[\""Laptop\""]",4056.9,{},101046,1,"""North America""" +2024-03-01,64192,7514,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2554.56,"{\"": \""10%\""}",92872,1,"""South America""" +2023-11-22,64193,5012,"[\""Tablet\"", \""Laptop\""]",4955.79,"{\""loyalty\"": \""12%\""}",265001,0,"""Europe""" +2023-09-13,64194,9694,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2774.66,"{\"": \""5%\""}",97245,1,"""North America""" +2023-08-08,64195,2067,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4735.47,"{\""promo\"": \""13%\""}",74883,0,"""Europe""" +2024-04-05,64196,5782,"[\""Monitor\"", \""Phone\""]",397.94,{},267657,0,"""Asia""" +2023-01-13,64197,6606,"[\""Headphones\"", \""Laptop\""]",3969.89,{},209314,0,"""South America""" +2024-02-02,64198,4328,"[\""Phone\"", \""Laptop\""]",2180.66,"{\"": \""22%\""}",161305,1,"""North America""" +2024-07-07,64199,1026,"[\""Headphones\"", \""Phone\""]",643.06,{},80580,1,"""South America""" +2024-03-11,64200,794,"[\""Phone\""]",1455.04,{},147884,1,"""Africa""" +2024-08-27,64201,2045,"[\""Tablet\"", \""Charger\""]",728.78,{},29968,1,"""Africa""" +2024-07-28,64202,1315,"[\""Laptop\""]",1000.45,"{\"": \""12%\""}",17785,1,"""Asia""" +2024-06-11,64203,368,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2178.2,{},34782,1,"""South America""" +2024-12-14,64204,8808,"[\""Wireless Mouse\""]",398.63,"{\"": \""26%\""}",11004,1,"""Asia""" +2023-03-13,64205,7676,"[\""Tablet\"", \""Monitor\""]",3505.26,{},77531,1,"""Asia""" +2023-12-08,64206,2722,"[\""Headphones\"", \""Monitor\""]",3258.82,"{\"": \""6%\""}",5128,1,"""Africa""" +2023-05-20,64207,5391,"[\""Headphones\""]",2557.93,{},277316,0,"""North America""" +2023-12-18,64208,2726,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3027.43,"{\"": \""7%\""}",189529,0,"""North America""" +2023-06-21,64209,3759,"[\""Tablet\"", \""Phone\""]",3158.53,"{\""loyalty\"": \""11%\""}",287422,0,"""Europe""" +2023-01-19,64210,6361,"[\""Keyboard\""]",3581.73,"{\""seasonal\"": \""22%\""}",253877,0,"""South America""" +2023-05-07,64211,4548,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2135.17,{},10978,1,"""Asia""" +2023-05-24,64212,8891,"[\""Headphones\"", \""Monitor\""]",2041.62,{},298926,1,"""Asia""" +2024-10-22,64213,444,"[\""Monitor\""]",2732.53,{},157831,1,"""Europe""" +2023-02-28,64214,4231,"[\""Keyboard\"", \""Tablet\""]",2823.5,{},194757,0,"""South America""" +2023-06-13,64215,7543,"[\""Tablet\"", \""Laptop\""]",2927.19,{},109464,0,"""Asia""" +2023-10-03,64216,4798,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4769.12,{},162157,1,"""Europe""" +2024-02-18,64217,430,"[\""Monitor\""]",4520.52,{},194257,0,"""Africa""" +2024-09-04,64218,5496,"[\""Wireless Mouse\""]",4459.13,{},108004,0,"""Europe""" +2023-09-15,64219,8135,"[\""Keyboard\""]",326.2,{},225089,0,"""Europe""" +2023-03-30,64220,8568,"[\""Phone\""]",3496.08,{},271071,1,"""South America""" +2023-11-30,64221,2888,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1248.09,"{\"": \""15%\""}",132528,0,"""North America""" +2024-10-02,64222,4611,"[\""Tablet\"", \""Wireless Mouse\""]",1166.21,{},211634,1,"""North America""" +2024-08-29,64223,3089,"[\""Headphones\""]",4768.37,"{\"": \""6%\""}",294409,0,"""Africa""" +2023-01-29,64224,4312,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2906.25,"{\""seasonal\"": \""20%\""}",88440,1,"""Asia""" +2023-10-28,64225,5818,"[\""Tablet\"", \""Monitor\""]",924.71,{},208475,1,"""Europe""" +2024-03-17,64226,3275,"[\""Headphones\"", \""Tablet\""]",955.63,"{\""promo\"": \""9%\""}",189419,1,"""North America""" +2024-08-18,64227,6086,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3952.56,"{\""loyalty\"": \""24%\""}",224302,1,"""Africa""" +2024-08-05,64228,7220,"[\""Tablet\""]",1287.99,"{\""seasonal\"": \""27%\""}",184705,0,"""North America""" +2023-11-28,64229,9658,"[\""Monitor\"", \""Phone\""]",1559.0,"{\""loyalty\"": \""30%\""}",222418,1,"""Asia""" +2024-04-16,64230,2178,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4427.21,"{\""loyalty\"": \""12%\""}",127889,1,"""South America""" +2023-01-10,64231,8572,"[\""Monitor\""]",1632.84,"{\"": \""16%\""}",234751,1,"""Asia""" +2023-09-20,64232,9945,"[\""Laptop\"", \""Tablet\""]",212.25,{},102369,1,"""South America""" +2024-06-18,64233,8255,"[\""Headphones\"", \""Laptop\""]",2570.07,{},122755,0,"""North America""" +2023-12-04,64234,5880,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3918.05,{},160399,0,"""South America""" +2023-07-28,64235,8527,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1934.44,{},118874,0,"""South America""" +2023-09-12,64236,5642,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2972.78,{},74218,0,"""South America""" +2024-12-29,64237,6813,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",230.25,"{\""seasonal\"": \""9%\""}",94766,1,"""Europe""" +2024-03-22,64238,5263,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",278.47,{},204315,1,"""South America""" +2024-05-21,64239,9322,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4727.08,"{\""seasonal\"": \""15%\""}",198472,1,"""Europe""" +2024-08-22,64240,765,"[\""Headphones\"", \""Wireless Mouse\""]",423.39,"{\""loyalty\"": \""17%\""}",40405,0,"""South America""" +2024-01-04,64241,7945,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2499.7,"{\""promo\"": \""21%\""}",293047,0,"""Europe""" +2024-06-20,64242,6231,"[\""Laptop\"", \""Monitor\""]",2709.65,{},80917,1,"""Europe""" +2023-08-26,64243,4092,"[\""Laptop\"", \""Headphones\""]",3402.86,"{\""loyalty\"": \""9%\""}",214519,0,"""Asia""" +2024-09-14,64244,3248,"[\""Charger\"", \""Laptop\""]",1028.39,"{\""seasonal\"": \""22%\""}",3067,1,"""North America""" +2023-10-28,64245,6358,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2265.18,{},106207,0,"""Asia""" +2024-06-02,64246,7901,"[\""Wireless Mouse\"", \""Monitor\""]",1183.24,{},294656,0,"""Africa""" +2024-08-10,64247,3973,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4758.48,{},194507,0,"""South America""" +2023-07-05,64248,2867,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2871.67,{},130009,1,"""Asia""" +2024-09-16,64249,4085,"[\""Headphones\"", \""Tablet\""]",512.77,{},54399,0,"""North America""" +2023-07-14,64250,4537,"[\""Monitor\"", \""Tablet\""]",309.54,"{\"": \""18%\""}",238129,1,"""Asia""" +2024-11-02,64251,5612,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3174.14,"{\""promo\"": \""29%\""}",44667,0,"""North America""" +2024-01-18,64252,7086,"[\""Monitor\"", \""Laptop\""]",1563.7,{},122333,0,"""Asia""" +2024-07-02,64253,2532,"[\""Laptop\""]",3222.0,{},11633,0,"""Asia""" +2023-06-02,64254,9624,"[\""Headphones\""]",308.21,{},139636,0,"""Europe""" +2023-01-14,64255,2040,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3044.83,{},207728,0,"""Africa""" +2024-07-23,64256,7860,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3347.4,"{\""seasonal\"": \""22%\""}",4975,1,"""Europe""" +2024-06-22,64257,8567,"[\""Phone\"", \""Wireless Mouse\""]",3619.3,"{\""loyalty\"": \""10%\""}",263727,0,"""Africa""" +2024-03-26,64258,5806,"[\""Keyboard\"", \""Headphones\""]",1697.63,{},56295,1,"""Europe""" +2023-07-05,64259,3909,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4450.49,{},80819,0,"""South America""" +2024-01-15,64260,9499,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4256.06,"{\"": \""28%\""}",243222,0,"""South America""" +2024-01-03,64261,3116,"[\""Monitor\"", \""Wireless Mouse\""]",4312.14,"{\"": \""7%\""}",264404,1,"""Asia""" +2023-05-26,64262,2643,"[\""Charger\""]",3439.17,{},61654,0,"""Europe""" +2024-03-28,64263,8457,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",406.4,{},33301,0,"""Asia""" +2024-04-10,64264,266,"[\""Keyboard\"", \""Charger\""]",1126.81,"{\""loyalty\"": \""28%\""}",11890,1,"""Asia""" +2024-03-19,64265,5216,"[\""Tablet\"", \""Monitor\""]",4972.97,"{\""seasonal\"": \""17%\""}",230293,0,"""Asia""" +2023-09-05,64266,6885,"[\""Monitor\"", \""Phone\""]",3399.81,{},41237,1,"""Europe""" +2023-09-18,64267,8719,"[\""Phone\""]",1066.0,{},231968,0,"""South America""" +2024-09-11,64268,7613,"[\""Charger\""]",1276.76,"{\""loyalty\"": \""5%\""}",19929,1,"""Europe""" +2023-01-12,64269,4569,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3818.68,{},94399,1,"""Africa""" +2024-08-04,64270,5673,"[\""Laptop\""]",3656.15,"{\""promo\"": \""21%\""}",227478,0,"""South America""" +2024-08-06,64271,1754,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3637.93,{},213294,1,"""South America""" +2023-07-02,64272,5668,"[\""Wireless Mouse\"", \""Keyboard\""]",584.18,{},152578,1,"""North America""" +2024-05-29,64273,7175,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1569.75,{},197345,0,"""Africa""" +2023-07-10,64274,4744,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4673.55,"{\""loyalty\"": \""19%\""}",265840,1,"""South America""" +2023-06-18,64275,3135,"[\""Monitor\""]",697.45,{},134075,0,"""North America""" +2024-04-05,64276,5641,"[\""Laptop\"", \""Wireless Mouse\""]",2379.19,"{\""seasonal\"": \""16%\""}",30073,1,"""South America""" +2024-06-26,64277,7401,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3938.92,{},21704,1,"""South America""" +2023-04-17,64278,8690,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2719.5,"{\""promo\"": \""5%\""}",158797,1,"""Europe""" +2024-09-17,64279,6419,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2446.4,{},31631,1,"""Africa""" +2024-04-29,64280,2638,"[\""Laptop\"", \""Wireless Mouse\""]",2841.81,"{\""seasonal\"": \""15%\""}",92113,0,"""Asia""" +2024-07-24,64281,8806,"[\""Tablet\""]",1173.14,{},225214,1,"""Africa""" +2023-09-17,64282,9225,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2059.21,"{\"": \""15%\""}",159336,1,"""South America""" +2024-11-11,64283,4686,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3200.69,{},63015,0,"""Africa""" +2023-08-24,64284,8066,"[\""Monitor\""]",223.05,"{\""loyalty\"": \""24%\""}",13568,1,"""Africa""" +2023-07-09,64285,6553,"[\""Keyboard\""]",3032.03,{},28353,1,"""Africa""" +2023-07-04,64286,6673,"[\""Monitor\""]",3096.41,"{\""promo\"": \""24%\""}",186227,1,"""Europe""" +2023-01-24,64287,9773,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1369.15,"{\"": \""25%\""}",249877,0,"""Europe""" +2023-03-02,64288,5478,"[\""Headphones\"", \""Tablet\""]",346.27,"{\""seasonal\"": \""27%\""}",18702,0,"""Europe""" +2024-12-25,64289,9021,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4871.93,{},201729,1,"""Asia""" +2023-10-31,64290,5482,"[\""Headphones\"", \""Phone\""]",2532.27,{},177755,0,"""North America""" +2023-06-20,64291,971,"[\""Laptop\""]",3796.65,{},43267,1,"""Europe""" +2023-10-31,64292,4575,"[\""Phone\"", \""Monitor\""]",1353.37,"{\""promo\"": \""16%\""}",157195,1,"""Asia""" +2024-01-13,64293,4314,"[\""Monitor\""]",1331.47,"{\""seasonal\"": \""27%\""}",259246,0,"""Asia""" +2023-07-27,64294,1868,"[\""Headphones\"", \""Wireless Mouse\""]",2535.54,"{\""loyalty\"": \""25%\""}",23470,1,"""Asia""" +2024-05-20,64295,9170,"[\""Keyboard\"", \""Tablet\""]",4937.34,"{\"": \""25%\""}",147655,0,"""Africa""" +2024-08-05,64296,5378,"[\""Monitor\""]",4638.53,"{\""promo\"": \""8%\""}",42853,1,"""Asia""" +2023-12-30,64297,3814,"[\""Tablet\"", \""Headphones\""]",2643.52,{},264642,0,"""North America""" +2023-03-12,64298,8183,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1814.86,{},244804,1,"""North America""" +2024-03-13,64299,1675,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3779.72,"{\"": \""15%\""}",244933,0,"""North America""" +2024-03-25,64300,3578,"[\""Tablet\""]",4181.01,"{\""seasonal\"": \""13%\""}",85146,0,"""Asia""" +2023-02-21,64301,7385,"[\""Tablet\"", \""Headphones\""]",1241.76,"{\""seasonal\"": \""25%\""}",64938,1,"""South America""" +2023-03-27,64302,7455,"[\""Keyboard\"", \""Monitor\""]",1931.02,"{\""seasonal\"": \""29%\""}",244919,1,"""South America""" +2023-05-24,64303,3606,"[\""Tablet\"", \""Phone\""]",1862.04,{},68045,0,"""Europe""" +2023-12-14,64304,3920,"[\""Laptop\"", \""Tablet\""]",3871.58,{},215688,1,"""Asia""" +2023-12-10,64305,9548,"[\""Headphones\""]",3251.44,{},214179,1,"""Africa""" +2023-04-24,64306,3525,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4230.31,{},201894,1,"""North America""" +2024-11-19,64307,8326,"[\""Headphones\""]",3045.25,{},234781,1,"""Africa""" +2023-06-15,64308,9769,"[\""Laptop\"", \""Monitor\""]",3561.61,"{\""promo\"": \""26%\""}",42597,0,"""North America""" +2024-03-08,64309,2142,"[\""Headphones\"", \""Charger\""]",2659.38,"{\""promo\"": \""17%\""}",110378,0,"""Africa""" +2024-03-29,64310,9340,"[\""Keyboard\""]",3468.97,{},199488,0,"""South America""" +2024-07-02,64311,6291,"[\""Keyboard\"", \""Laptop\""]",1445.37,{},26192,1,"""North America""" +2023-02-28,64312,8981,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",276.76,"{\""loyalty\"": \""26%\""}",186658,1,"""South America""" +2024-06-16,64313,1563,"[\""Phone\""]",896.06,"{\""seasonal\"": \""27%\""}",47317,1,"""Asia""" +2023-02-27,64314,5561,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2693.1,{},274411,1,"""Africa""" +2023-10-31,64315,6709,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3555.62,"{\""promo\"": \""27%\""}",119753,0,"""Europe""" +2024-12-22,64316,9493,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2569.14,{},267019,1,"""Asia""" +2024-04-15,64317,7438,"[\""Keyboard\"", \""Monitor\""]",4296.75,"{\""seasonal\"": \""23%\""}",203912,1,"""Europe""" +2023-01-24,64318,6166,"[\""Wireless Mouse\"", \""Phone\""]",3062.09,"{\""loyalty\"": \""12%\""}",288949,0,"""North America""" +2024-01-09,64319,9092,"[\""Laptop\""]",1984.64,"{\"": \""25%\""}",144852,0,"""South America""" +2023-07-26,64320,3771,"[\""Headphones\"", \""Laptop\""]",3735.12,"{\""promo\"": \""9%\""}",227113,1,"""North America""" +2024-06-04,64321,7583,"[\""Tablet\""]",4656.79,"{\"": \""20%\""}",96716,1,"""Asia""" +2024-12-31,64322,4437,"[\""Wireless Mouse\"", \""Tablet\""]",3714.51,{},222334,1,"""Africa""" +2024-04-16,64323,705,"[\""Headphones\"", \""Laptop\""]",3741.98,"{\"": \""18%\""}",41686,0,"""Africa""" +2023-09-27,64324,7764,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3807.57,{},269090,1,"""Africa""" +2024-03-28,64325,7241,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",167.91,"{\""promo\"": \""9%\""}",194288,1,"""South America""" +2023-11-28,64326,2758,"[\""Keyboard\"", \""Phone\""]",4555.05,{},291337,0,"""North America""" +2023-10-29,64327,2579,"[\""Tablet\""]",4014.03,"{\"": \""23%\""}",138655,0,"""North America""" +2024-03-22,64328,1638,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4959.66,{},254529,0,"""Europe""" +2024-04-13,64329,5187,"[\""Tablet\""]",3320.07,"{\"": \""19%\""}",201874,1,"""South America""" +2023-12-12,64330,4591,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",298.42,{},212530,1,"""North America""" +2024-09-30,64331,5315,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2731.97,"{\""promo\"": \""25%\""}",61453,0,"""Europe""" +2023-03-26,64332,251,"[\""Headphones\"", \""Tablet\""]",2859.62,"{\""promo\"": \""25%\""}",5867,0,"""North America""" +2024-12-07,64333,9602,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2802.24,{},140264,0,"""Asia""" +2023-02-12,64334,9901,"[\""Keyboard\""]",2698.47,"{\""loyalty\"": \""25%\""}",192742,1,"""Asia""" +2023-04-30,64335,4313,"[\""Charger\"", \""Monitor\""]",2006.87,{},41046,0,"""Europe""" +2023-06-16,64336,2620,"[\""Phone\""]",2422.34,{},192804,1,"""North America""" +2023-05-23,64337,4935,"[\""Laptop\""]",1877.61,{},176566,1,"""North America""" +2023-12-21,64338,8220,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2521.97,{},68083,0,"""North America""" +2024-10-16,64339,4674,"[\""Monitor\"", \""Wireless Mouse\""]",1959.95,{},291565,1,"""South America""" +2023-03-26,64340,7829,"[\""Keyboard\""]",3019.12,"{\""seasonal\"": \""25%\""}",220040,1,"""Europe""" +2023-10-08,64341,4287,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",970.83,"{\"": \""25%\""}",178322,0,"""Europe""" +2023-01-20,64342,4511,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1050.07,{},281579,0,"""South America""" +2023-05-29,64343,5950,"[\""Headphones\""]",4008.83,"{\""loyalty\"": \""24%\""}",143635,1,"""Asia""" +2024-08-28,64344,232,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4772.56,{},193500,1,"""Asia""" +2023-12-08,64345,4570,"[\""Headphones\"", \""Phone\""]",3846.52,{},155436,1,"""North America""" +2024-06-22,64346,9181,"[\""Headphones\"", \""Monitor\""]",2945.29,"{\""loyalty\"": \""28%\""}",16671,0,"""Asia""" +2024-10-28,64347,5627,"[\""Keyboard\""]",1923.03,"{\""seasonal\"": \""9%\""}",273532,0,"""Europe""" +2023-03-07,64348,8506,"[\""Headphones\"", \""Wireless Mouse\""]",2234.94,{},23454,1,"""Europe""" +2024-03-31,64349,9706,"[\""Monitor\""]",1294.32,{},275660,0,"""North America""" +2024-12-25,64350,1517,"[\""Laptop\""]",4504.04,"{\""loyalty\"": \""5%\""}",267872,1,"""Asia""" +2023-01-31,64351,8663,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1239.58,{},181122,1,"""Africa""" +2023-01-01,64352,7936,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",299.65,"{\""loyalty\"": \""12%\""}",113235,1,"""Asia""" +2023-08-01,64353,5740,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3521.18,{},187018,0,"""Europe""" +2024-05-18,64354,3762,"[\""Monitor\"", \""Tablet\""]",2364.94,"{\""promo\"": \""12%\""}",129658,0,"""Africa""" +2024-05-22,64355,6657,"[\""Laptop\"", \""Headphones\""]",2225.06,{},187278,0,"""Europe""" +2023-08-21,64356,2005,"[\""Tablet\"", \""Monitor\""]",3173.98,"{\""loyalty\"": \""20%\""}",5291,1,"""Europe""" +2023-04-05,64357,7683,"[\""Monitor\"", \""Phone\""]",2152.18,"{\""loyalty\"": \""27%\""}",33587,1,"""Asia""" +2023-01-22,64358,5479,"[\""Monitor\""]",1716.58,"{\""promo\"": \""22%\""}",94512,1,"""Africa""" +2023-01-07,64359,3816,"[\""Wireless Mouse\""]",3538.52,"{\""loyalty\"": \""12%\""}",133608,1,"""South America""" +2023-06-07,64360,5214,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4038.3,"{\""promo\"": \""17%\""}",236606,0,"""South America""" +2024-10-15,64361,857,"[\""Headphones\"", \""Phone\""]",1914.13,"{\""loyalty\"": \""12%\""}",21366,1,"""South America""" +2024-08-16,64362,3321,"[\""Laptop\""]",4063.34,"{\""loyalty\"": \""10%\""}",294521,0,"""Africa""" +2023-03-03,64363,3007,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4659.49,{},130840,0,"""Asia""" +2023-04-01,64364,2133,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",773.17,"{\""loyalty\"": \""17%\""}",25487,0,"""Europe""" +2024-09-01,64365,4775,"[\""Headphones\""]",2772.38,"{\""seasonal\"": \""30%\""}",257788,1,"""Europe""" +2023-11-23,64366,7211,"[\""Tablet\"", \""Monitor\""]",542.85,"{\""promo\"": \""16%\""}",31889,0,"""South America""" +2023-05-06,64367,4393,"[\""Charger\"", \""Monitor\""]",660.25,{},122928,0,"""Europe""" +2024-08-02,64368,5626,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4925.76,"{\"": \""14%\""}",64781,0,"""Europe""" +2023-12-26,64369,5039,"[\""Keyboard\""]",779.04,{},70402,1,"""Africa""" +2023-02-16,64370,9737,"[\""Phone\"", \""Charger\""]",1328.35,{},124619,1,"""South America""" +2024-09-05,64371,9710,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",91.29,{},128123,0,"""South America""" +2024-09-16,64372,5989,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2864.64,{},67861,0,"""North America""" +2024-12-14,64373,4353,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1811.96,"{\"": \""14%\""}",261620,0,"""Asia""" +2024-01-04,64374,4817,"[\""Charger\"", \""Keyboard\""]",4320.38,{},62278,0,"""Europe""" +2024-05-07,64375,5826,"[\""Wireless Mouse\""]",550.46,"{\""promo\"": \""13%\""}",213209,1,"""Asia""" +2023-05-09,64376,4993,"[\""Charger\""]",3687.31,"{\"": \""13%\""}",274511,1,"""Asia""" +2023-11-23,64377,8499,"[\""Wireless Mouse\""]",1089.62,"{\""seasonal\"": \""8%\""}",138844,0,"""North America""" +2024-01-13,64378,1178,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",685.36,{},241981,1,"""Europe""" +2023-12-13,64379,7692,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4728.18,"{\""loyalty\"": \""15%\""}",195783,1,"""Africa""" +2023-03-22,64380,9940,"[\""Wireless Mouse\""]",4241.61,{},272526,1,"""South America""" +2023-03-24,64381,9250,"[\""Laptop\""]",703.3,"{\"": \""5%\""}",208290,1,"""South America""" +2024-11-08,64382,139,"[\""Wireless Mouse\""]",3863.95,"{\""promo\"": \""25%\""}",159486,1,"""Asia""" +2024-04-18,64383,2847,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1223.09,"{\"": \""12%\""}",61271,1,"""South America""" +2023-03-24,64384,8598,"[\""Wireless Mouse\"", \""Charger\""]",4641.19,"{\""promo\"": \""16%\""}",91679,0,"""Europe""" +2023-05-31,64385,7612,"[\""Wireless Mouse\""]",2814.57,{},97011,0,"""North America""" +2024-05-31,64386,2057,"[\""Keyboard\"", \""Tablet\""]",503.81,"{\""seasonal\"": \""17%\""}",77035,1,"""Asia""" +2024-08-27,64387,8377,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4825.32,"{\"": \""18%\""}",161388,1,"""Asia""" +2024-12-14,64388,6750,"[\""Laptop\""]",3528.99,"{\""promo\"": \""14%\""}",149482,0,"""Europe""" +2024-11-15,64389,8964,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3354.45,"{\""loyalty\"": \""8%\""}",234937,0,"""South America""" +2024-06-13,64390,8913,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",133.17,"{\"": \""5%\""}",184110,1,"""South America""" +2023-01-24,64391,2575,"[\""Wireless Mouse\""]",508.5,{},297107,0,"""Europe""" +2024-12-02,64392,4691,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3522.86,"{\""promo\"": \""6%\""}",168530,1,"""Asia""" +2023-03-16,64393,1391,"[\""Monitor\""]",656.93,{},234786,1,"""Africa""" +2024-09-23,64394,2308,"[\""Keyboard\"", \""Wireless Mouse\""]",1524.34,"{\"": \""30%\""}",170284,1,"""Asia""" +2023-11-13,64395,9567,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",630.43,{},62046,1,"""South America""" +2023-05-15,64396,3696,"[\""Monitor\""]",4989.19,{},239320,0,"""Africa""" +2023-06-28,64397,3743,"[\""Tablet\"", \""Wireless Mouse\""]",3298.42,{},55655,0,"""Asia""" +2023-03-14,64398,4805,"[\""Laptop\"", \""Charger\""]",4947.73,{},44456,0,"""Europe""" +2023-04-23,64399,7292,"[\""Keyboard\"", \""Charger\""]",2352.65,{},67459,0,"""Africa""" +2024-07-22,64400,577,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4515.81,{},25796,1,"""Africa""" +2023-06-02,64401,8534,"[\""Keyboard\""]",934.66,"{\""promo\"": \""24%\""}",150496,1,"""Europe""" +2024-12-30,64402,4909,"[\""Wireless Mouse\""]",1659.36,{},158054,1,"""North America""" +2023-03-30,64403,7490,"[\""Monitor\""]",2154.62,{},30280,0,"""Africa""" +2023-03-22,64404,6042,"[\""Charger\""]",3390.24,{},239623,0,"""Africa""" +2023-08-23,64405,3226,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4014.94,{},96673,1,"""Europe""" +2023-01-08,64406,3111,"[\""Phone\"", \""Keyboard\""]",65.79,{},145590,1,"""Asia""" +2023-11-13,64407,5837,"[\""Monitor\"", \""Tablet\""]",304.09,{},261506,0,"""Asia""" +2024-10-21,64408,9005,"[\""Charger\"", \""Phone\""]",2418.3,"{\""seasonal\"": \""27%\""}",41871,0,"""Asia""" +2024-07-19,64409,6756,"[\""Keyboard\"", \""Monitor\""]",1759.81,"{\""loyalty\"": \""27%\""}",141119,0,"""Africa""" +2024-10-20,64410,2247,"[\""Laptop\"", \""Phone\""]",2141.05,"{\"": \""5%\""}",36243,0,"""South America""" +2024-01-23,64411,6447,"[\""Tablet\""]",204.98,{},285381,1,"""Europe""" +2023-01-27,64412,6540,"[\""Tablet\""]",4934.48,"{\""loyalty\"": \""26%\""}",116159,1,"""Asia""" +2024-07-12,64413,338,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2480.82,"{\"": \""16%\""}",40443,0,"""South America""" +2023-06-07,64414,5892,"[\""Monitor\"", \""Phone\""]",4471.34,{},146721,0,"""Europe""" +2024-10-13,64415,9945,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1629.51,"{\""seasonal\"": \""21%\""}",210097,1,"""Europe""" +2024-07-23,64416,4594,"[\""Laptop\""]",1872.59,"{\""loyalty\"": \""21%\""}",58741,0,"""Europe""" +2024-05-23,64417,109,"[\""Tablet\"", \""Laptop\""]",4597.63,"{\""seasonal\"": \""13%\""}",140229,1,"""North America""" +2024-12-07,64418,1855,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4587.42,{},230263,0,"""South America""" +2024-11-25,64419,6134,"[\""Monitor\"", \""Tablet\""]",1248.38,"{\""seasonal\"": \""19%\""}",163102,1,"""Asia""" +2024-02-18,64420,6908,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4746.4,"{\""loyalty\"": \""15%\""}",50679,1,"""Europe""" +2024-04-10,64421,7447,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1777.17,"{\""promo\"": \""20%\""}",295263,0,"""South America""" +2023-05-20,64422,8781,"[\""Headphones\""]",1687.31,{},160871,0,"""South America""" +2024-11-01,64423,8653,"[\""Wireless Mouse\""]",2234.31,{},185409,1,"""Europe""" +2024-08-27,64424,5601,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4977.78,"{\"": \""27%\""}",261289,0,"""Africa""" +2023-03-04,64425,837,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",440.08,{},130805,1,"""Asia""" +2024-07-10,64426,3700,"[\""Laptop\"", \""Monitor\""]",1720.72,{},27142,0,"""Europe""" +2024-09-05,64427,2193,"[\""Keyboard\"", \""Monitor\""]",2353.44,"{\""seasonal\"": \""15%\""}",26293,1,"""South America""" +2024-12-09,64428,597,"[\""Wireless Mouse\"", \""Laptop\""]",900.97,{},183958,1,"""North America""" +2023-05-02,64429,6377,"[\""Tablet\"", \""Laptop\""]",4113.01,{},26770,1,"""Europe""" +2024-06-30,64430,1028,"[\""Headphones\""]",210.35,{},32043,1,"""Asia""" +2023-02-26,64431,7584,"[\""Laptop\"", \""Tablet\""]",4695.16,"{\""seasonal\"": \""15%\""}",175383,0,"""Africa""" +2023-01-29,64432,1451,"[\""Phone\"", \""Tablet\""]",3176.58,{},44976,1,"""Europe""" +2024-01-02,64433,5754,"[\""Laptop\""]",261.87,"{\""promo\"": \""27%\""}",79860,1,"""South America""" +2023-04-18,64434,9945,"[\""Phone\"", \""Charger\""]",1940.44,{},131217,0,"""Europe""" +2023-05-06,64435,5221,"[\""Phone\"", \""Monitor\""]",3707.76,{},200360,0,"""North America""" +2023-12-30,64436,2878,"[\""Headphones\"", \""Charger\""]",3670.76,{},52898,0,"""Asia""" +2023-09-21,64437,9190,"[\""Headphones\""]",3563.49,{},183030,0,"""South America""" +2024-03-12,64438,3198,"[\""Wireless Mouse\"", \""Charger\""]",2649.94,"{\""seasonal\"": \""14%\""}",29023,0,"""Africa""" +2023-05-22,64439,5315,"[\""Keyboard\"", \""Laptop\""]",560.86,{},9387,1,"""North America""" +2023-06-06,64440,4790,"[\""Keyboard\"", \""Wireless Mouse\""]",4530.61,{},79665,1,"""South America""" +2024-04-18,64441,8850,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",518.85,{},189508,1,"""Africa""" +2023-11-26,64442,303,"[\""Keyboard\"", \""Laptop\""]",3434.75,"{\"": \""11%\""}",21416,1,"""North America""" +2023-12-05,64443,3079,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3185.44,{},243055,0,"""North America""" +2023-11-06,64444,5129,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2087.87,{},74248,0,"""Asia""" +2024-05-12,64445,1149,"[\""Laptop\"", \""Wireless Mouse\""]",2175.13,{},78532,0,"""North America""" +2024-04-25,64446,8320,"[\""Monitor\""]",971.02,"{\""loyalty\"": \""8%\""}",140621,1,"""Africa""" +2024-03-17,64447,8482,"[\""Monitor\"", \""Charger\""]",1369.66,{},107903,0,"""Africa""" +2023-01-31,64448,8550,"[\""Wireless Mouse\""]",149.92,"{\"": \""26%\""}",85012,1,"""South America""" +2024-04-18,64449,7145,"[\""Tablet\""]",1105.98,{},268545,0,"""Asia""" +2024-04-13,64450,2065,"[\""Laptop\""]",209.09,"{\"": \""14%\""}",77291,0,"""Africa""" +2023-12-22,64451,613,"[\""Headphones\""]",2757.79,"{\""seasonal\"": \""16%\""}",88222,1,"""South America""" +2023-04-03,64452,9451,"[\""Charger\""]",478.69,{},16381,1,"""South America""" +2023-02-28,64453,1505,"[\""Charger\"", \""Phone\""]",2734.36,{},20377,0,"""South America""" +2024-02-15,64454,8368,"[\""Tablet\"", \""Laptop\""]",2209.16,"{\"": \""27%\""}",193647,1,"""South America""" +2024-03-25,64455,6813,"[\""Monitor\"", \""Wireless Mouse\""]",3661.63,"{\""loyalty\"": \""16%\""}",269701,0,"""Asia""" +2023-04-10,64456,3391,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1788.68,{},50121,0,"""Asia""" +2024-03-06,64457,7499,"[\""Keyboard\""]",1787.3,"{\"": \""21%\""}",127314,1,"""North America""" +2024-01-31,64458,1714,"[\""Laptop\""]",803.42,"{\""seasonal\"": \""19%\""}",83343,0,"""Africa""" +2024-03-18,64459,4562,"[\""Phone\"", \""Monitor\""]",2182.78,{},166401,1,"""North America""" +2024-08-13,64460,7155,"[\""Wireless Mouse\""]",3335.02,"{\""loyalty\"": \""28%\""}",61725,1,"""South America""" +2023-06-14,64461,6630,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4113.89,"{\""promo\"": \""12%\""}",134249,1,"""North America""" +2023-08-31,64462,4535,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",932.71,{},18415,1,"""Africa""" +2023-02-24,64463,6811,"[\""Tablet\"", \""Wireless Mouse\""]",1926.31,{},160346,0,"""Europe""" +2023-11-19,64464,7515,"[\""Wireless Mouse\""]",3949.88,{},177925,1,"""North America""" +2024-05-21,64465,7571,"[\""Tablet\"", \""Monitor\""]",695.16,"{\"": \""21%\""}",194052,0,"""North America""" +2024-05-03,64466,8955,"[\""Wireless Mouse\""]",2860.36,"{\""seasonal\"": \""12%\""}",239460,0,"""Africa""" +2023-04-25,64467,2109,"[\""Wireless Mouse\"", \""Headphones\""]",4803.66,"{\""promo\"": \""8%\""}",89428,1,"""Europe""" +2024-03-25,64468,2156,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",57.71,{},39190,0,"""Europe""" +2024-12-20,64469,6682,"[\""Tablet\""]",236.28,"{\""loyalty\"": \""17%\""}",61159,0,"""Africa""" +2024-08-14,64470,6263,"[\""Wireless Mouse\"", \""Headphones\""]",3346.3,"{\""seasonal\"": \""7%\""}",147054,0,"""Asia""" +2024-08-18,64471,3808,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4059.1,"{\"": \""25%\""}",259503,0,"""Africa""" +2024-06-27,64472,6020,"[\""Monitor\""]",2494.51,"{\""seasonal\"": \""20%\""}",9373,0,"""North America""" +2024-05-20,64473,1910,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1545.55,"{\""promo\"": \""20%\""}",73016,1,"""Europe""" +2023-02-12,64474,1333,"[\""Wireless Mouse\"", \""Tablet\""]",3316.94,{},285040,0,"""Europe""" +2023-10-05,64475,2731,"[\""Monitor\""]",1518.13,"{\""seasonal\"": \""17%\""}",151303,1,"""North America""" +2023-02-28,64476,9836,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2374.94,"{\""loyalty\"": \""18%\""}",251320,0,"""Europe""" +2023-04-30,64477,7267,"[\""Headphones\"", \""Tablet\""]",113.95,"{\""promo\"": \""18%\""}",155202,1,"""Asia""" +2024-08-27,64478,54,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1957.38,{},57079,1,"""Europe""" +2023-09-07,64479,7045,"[\""Monitor\""]",3456.67,"{\"": \""10%\""}",60067,1,"""North America""" +2023-02-10,64480,7844,"[\""Headphones\""]",3396.84,{},51877,0,"""Asia""" +2023-01-30,64481,5314,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3058.86,"{\""loyalty\"": \""23%\""}",291230,0,"""South America""" +2023-11-26,64482,267,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",616.39,"{\""seasonal\"": \""10%\""}",54794,0,"""Africa""" +2024-11-12,64483,6297,"[\""Laptop\""]",3488.8,{},151025,0,"""North America""" +2023-08-09,64484,5110,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2571.87,"{\""seasonal\"": \""19%\""}",209545,0,"""North America""" +2023-04-14,64485,438,"[\""Monitor\"", \""Wireless Mouse\""]",4065.1,{},165505,0,"""North America""" +2023-08-11,64486,1963,"[\""Tablet\"", \""Phone\""]",1111.17,"{\""seasonal\"": \""21%\""}",259825,0,"""Europe""" +2024-07-09,64487,5205,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3580.67,"{\""promo\"": \""6%\""}",109311,1,"""Africa""" +2023-08-01,64488,3146,"[\""Keyboard\""]",3838.67,{},138567,1,"""Europe""" +2023-03-17,64489,1552,"[\""Tablet\""]",3689.19,{},148979,1,"""Africa""" +2023-10-26,64490,2545,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4583.12,"{\""seasonal\"": \""28%\""}",196109,1,"""Asia""" +2024-04-27,64491,3881,"[\""Charger\"", \""Headphones\""]",538.76,{},168848,1,"""Europe""" +2023-07-16,64492,7031,"[\""Headphones\""]",2771.13,{},51743,0,"""Europe""" +2024-05-05,64493,8489,"[\""Phone\""]",3842.3,{},139727,1,"""Asia""" +2024-03-25,64494,4227,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1932.7,{},23484,0,"""Asia""" +2023-03-22,64495,7592,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2896.61,{},30275,1,"""North America""" +2024-11-29,64496,6459,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3591.6,{},97735,1,"""Asia""" +2023-01-28,64497,5131,"[\""Tablet\""]",4968.05,"{\"": \""22%\""}",216304,1,"""North America""" +2024-01-08,64498,8322,"[\""Headphones\""]",1975.0,{},234284,1,"""North America""" +2023-05-21,64499,3861,"[\""Monitor\"", \""Keyboard\""]",4936.22,"{\""seasonal\"": \""16%\""}",7544,1,"""Africa""" +2023-06-19,64500,5750,"[\""Tablet\""]",262.9,{},61900,0,"""Africa""" +2024-09-20,64501,1488,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3074.34,"{\""seasonal\"": \""25%\""}",240228,1,"""South America""" +2023-08-05,64502,1377,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3382.11,"{\""loyalty\"": \""24%\""}",155678,0,"""Europe""" +2023-02-28,64503,5493,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2358.34,{},273712,1,"""South America""" +2023-10-23,64504,1596,"[\""Wireless Mouse\""]",670.03,{},213053,1,"""Asia""" +2024-10-14,64505,3508,"[\""Laptop\""]",4416.5,"{\""seasonal\"": \""30%\""}",107684,1,"""South America""" +2024-11-18,64506,2561,"[\""Monitor\"", \""Wireless Mouse\""]",1925.15,"{\""promo\"": \""12%\""}",218810,1,"""South America""" +2023-06-30,64507,8866,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",828.52,"{\""promo\"": \""21%\""}",122357,1,"""Europe""" +2023-07-19,64508,5661,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",619.24,{},180172,1,"""Europe""" +2023-04-22,64509,2318,"[\""Keyboard\""]",4458.69,"{\""promo\"": \""12%\""}",83359,0,"""Europe""" +2023-01-23,64510,1274,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2640.48,"{\"": \""8%\""}",109222,1,"""Asia""" +2024-05-26,64511,3365,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1550.42,"{\""loyalty\"": \""11%\""}",21350,1,"""South America""" +2023-01-10,64512,6294,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3787.11,"{\""seasonal\"": \""26%\""}",254804,1,"""North America""" +2023-12-26,64513,978,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3259.68,"{\""loyalty\"": \""30%\""}",215348,0,"""Africa""" +2023-05-25,64514,7161,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1853.76,"{\""seasonal\"": \""12%\""}",195006,0,"""Europe""" +2024-09-07,64515,3369,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2237.66,{},19883,0,"""North America""" +2023-08-24,64516,3772,"[\""Keyboard\""]",1646.1,"{\""loyalty\"": \""5%\""}",133440,0,"""North America""" +2024-11-05,64517,7282,"[\""Tablet\""]",2441.71,"{\""promo\"": \""28%\""}",140354,1,"""Europe""" +2023-03-13,64518,1050,"[\""Monitor\"", \""Laptop\""]",1426.11,"{\""seasonal\"": \""30%\""}",8231,1,"""Africa""" +2023-05-09,64519,5836,"[\""Monitor\"", \""Tablet\""]",3696.46,{},169053,0,"""North America""" +2023-04-28,64520,8443,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2620.43,{},200964,0,"""Africa""" +2023-11-15,64521,2325,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4669.07,"{\""promo\"": \""6%\""}",138767,1,"""South America""" +2023-12-24,64522,2709,"[\""Laptop\""]",1079.07,{},111148,0,"""Asia""" +2024-04-23,64523,532,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4279.69,"{\""loyalty\"": \""15%\""}",207183,1,"""South America""" +2023-08-24,64524,4865,"[\""Phone\"", \""Keyboard\""]",1608.73,"{\""loyalty\"": \""17%\""}",32742,0,"""Asia""" +2023-09-07,64525,4282,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3606.97,"{\""promo\"": \""14%\""}",14179,1,"""North America""" +2024-07-12,64526,609,"[\""Charger\""]",2465.46,{},186946,0,"""South America""" +2023-11-22,64527,2254,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3564.02,"{\""loyalty\"": \""16%\""}",239548,1,"""South America""" +2023-01-08,64528,1091,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4271.24,"{\"": \""13%\""}",116149,1,"""North America""" +2024-06-08,64529,7096,"[\""Charger\"", \""Keyboard\""]",2751.73,{},238415,0,"""South America""" +2024-09-10,64530,1218,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1489.81,{},40476,1,"""Asia""" +2023-08-01,64531,8287,"[\""Keyboard\""]",2485.78,{},193682,0,"""North America""" +2023-09-12,64532,7560,"[\""Tablet\""]",1064.95,"{\""loyalty\"": \""14%\""}",76419,0,"""Europe""" +2024-02-02,64533,9199,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1853.54,"{\""promo\"": \""14%\""}",72216,0,"""Europe""" +2023-09-04,64534,4502,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4104.0,{},198885,1,"""North America""" +2024-10-26,64535,1438,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4682.96,{},218790,0,"""South America""" +2023-03-10,64536,4978,"[\""Phone\""]",3117.17,{},19463,1,"""North America""" +2023-04-18,64537,3448,"[\""Headphones\"", \""Phone\""]",1404.8,{},193173,0,"""Africa""" +2023-06-29,64538,428,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2142.54,{},23933,1,"""Europe""" +2024-12-11,64539,2935,"[\""Wireless Mouse\"", \""Keyboard\""]",3181.7,"{\"": \""16%\""}",68104,1,"""North America""" +2023-12-30,64540,704,"[\""Monitor\"", \""Laptop\""]",455.68,{},267986,0,"""South America""" +2024-08-13,64541,5468,"[\""Wireless Mouse\""]",706.34,"{\""seasonal\"": \""12%\""}",105451,1,"""Europe""" +2023-07-04,64542,273,"[\""Headphones\""]",2991.63,"{\""loyalty\"": \""20%\""}",226755,1,"""North America""" +2024-12-26,64543,7847,"[\""Phone\"", \""Tablet\""]",3773.78,"{\"": \""14%\""}",205696,0,"""Asia""" +2023-11-27,64544,4742,"[\""Keyboard\"", \""Tablet\""]",3883.82,"{\""promo\"": \""6%\""}",23773,1,"""Africa""" +2024-12-21,64545,9004,"[\""Laptop\"", \""Headphones\""]",4186.3,"{\""promo\"": \""8%\""}",296949,0,"""North America""" +2024-11-12,64546,1930,"[\""Monitor\"", \""Headphones\""]",763.39,"{\""promo\"": \""14%\""}",175634,0,"""Africa""" +2024-04-08,64547,5718,"[\""Keyboard\""]",4631.03,{},280408,1,"""Europe""" +2024-06-17,64548,7197,"[\""Laptop\"", \""Charger\""]",1671.72,{},180595,1,"""Africa""" +2023-07-17,64549,2922,"[\""Keyboard\""]",1401.77,"{\"": \""17%\""}",96799,1,"""Asia""" +2024-06-03,64550,284,"[\""Keyboard\"", \""Tablet\""]",1609.13,{},147597,1,"""South America""" +2024-03-09,64551,6757,"[\""Headphones\"", \""Phone\"", \""Charger\""]",400.7,{},27918,0,"""Europe""" +2023-03-29,64552,8064,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",357.8,{},36358,0,"""Africa""" +2023-01-10,64553,8813,"[\""Keyboard\""]",2240.2,"{\"": \""27%\""}",231377,0,"""North America""" +2023-03-16,64554,2239,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1602.32,"{\""seasonal\"": \""7%\""}",259992,1,"""Asia""" +2023-04-03,64555,5455,"[\""Phone\"", \""Headphones\""]",2588.54,"{\""promo\"": \""26%\""}",155854,1,"""Africa""" +2024-08-30,64556,6016,"[\""Keyboard\""]",2531.52,{},288655,0,"""Europe""" +2024-01-18,64557,6486,"[\""Tablet\"", \""Charger\""]",3825.53,"{\""loyalty\"": \""27%\""}",281347,1,"""South America""" +2023-10-26,64558,304,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",538.79,{},291622,1,"""Asia""" +2023-08-18,64559,4247,"[\""Charger\"", \""Tablet\""]",2833.09,"{\""loyalty\"": \""12%\""}",58021,0,"""Africa""" +2023-06-15,64560,6160,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2019.27,{},217307,0,"""Europe""" +2023-05-11,64561,4274,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",932.39,{},242572,1,"""Europe""" +2023-12-15,64562,2796,"[\""Wireless Mouse\"", \""Keyboard\""]",438.26,"{\""loyalty\"": \""14%\""}",277812,1,"""Europe""" +2024-06-13,64563,3767,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4902.13,"{\""loyalty\"": \""28%\""}",221395,1,"""Europe""" +2024-03-25,64564,4532,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3029.25,"{\""seasonal\"": \""10%\""}",161061,1,"""Asia""" +2023-12-04,64565,5425,"[\""Headphones\""]",2231.96,"{\"": \""8%\""}",92674,0,"""Asia""" +2024-06-21,64566,1998,"[\""Phone\""]",1206.07,{},143894,0,"""North America""" +2023-03-31,64567,1786,"[\""Keyboard\"", \""Phone\""]",1707.97,{},72545,0,"""North America""" +2023-02-22,64568,1441,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3135.33,"{\""loyalty\"": \""27%\""}",273305,0,"""North America""" +2023-09-30,64569,9671,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",515.9,{},93472,1,"""South America""" +2023-09-11,64570,8263,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",478.65,"{\"": \""30%\""}",250752,1,"""Europe""" +2024-05-18,64571,6878,"[\""Laptop\"", \""Headphones\""]",4859.92,{},99150,1,"""South America""" +2024-11-22,64572,9927,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2220.8,{},216211,1,"""South America""" +2024-01-22,64573,3243,"[\""Charger\""]",3719.69,"{\""promo\"": \""27%\""}",257295,0,"""North America""" +2024-11-09,64574,4867,"[\""Laptop\"", \""Monitor\""]",4741.91,{},188257,1,"""North America""" +2024-02-12,64575,2937,"[\""Wireless Mouse\""]",2905.21,"{\"": \""22%\""}",30433,0,"""Asia""" +2023-01-12,64576,2028,"[\""Tablet\""]",4501.52,{},169705,1,"""Europe""" +2024-04-23,64577,1503,"[\""Tablet\""]",4221.4,"{\""loyalty\"": \""16%\""}",142341,0,"""South America""" +2023-01-28,64578,1085,"[\""Monitor\"", \""Wireless Mouse\""]",3228.41,{},113909,1,"""Africa""" +2024-09-30,64579,2171,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",670.42,{},187738,1,"""Europe""" +2023-12-31,64580,467,"[\""Tablet\""]",2563.39,"{\""seasonal\"": \""28%\""}",283414,1,"""South America""" +2023-09-24,64581,4423,"[\""Charger\""]",2373.38,"{\""promo\"": \""8%\""}",274145,0,"""Europe""" +2023-11-11,64582,5914,"[\""Monitor\"", \""Laptop\""]",1059.03,{},88861,1,"""North America""" +2023-12-12,64583,3889,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3820.1,{},245882,0,"""North America""" +2023-11-10,64584,6156,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3108.96,{},122910,0,"""Africa""" +2023-11-18,64585,7052,"[\""Charger\"", \""Keyboard\""]",3797.03,{},281541,0,"""Asia""" +2023-03-26,64586,8069,"[\""Tablet\""]",2379.01,{},181903,1,"""North America""" +2023-01-15,64587,1,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1623.94,{},45779,1,"""Africa""" +2024-06-30,64588,1890,"[\""Headphones\"", \""Monitor\""]",3072.21,{},101037,0,"""Europe""" +2023-09-13,64589,7476,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",393.14,{},3576,0,"""Asia""" +2023-11-13,64590,4347,"[\""Laptop\"", \""Monitor\""]",1687.04,"{\""seasonal\"": \""16%\""}",142716,1,"""North America""" +2023-10-04,64591,6194,"[\""Charger\""]",4552.5,{},256082,1,"""Europe""" +2023-11-30,64592,4738,"[\""Monitor\"", \""Laptop\""]",2866.91,"{\""loyalty\"": \""22%\""}",288206,0,"""Asia""" +2023-03-27,64593,6172,"[\""Headphones\""]",3561.4,"{\""loyalty\"": \""14%\""}",241735,1,"""North America""" +2024-03-23,64594,9119,"[\""Phone\"", \""Charger\""]",2788.53,{},208673,1,"""North America""" +2023-03-17,64595,4901,"[\""Monitor\""]",1448.71,"{\""seasonal\"": \""27%\""}",147297,1,"""Africa""" +2024-07-31,64596,8790,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2193.8,{},25104,1,"""South America""" +2023-09-21,64597,162,"[\""Tablet\"", \""Wireless Mouse\""]",864.98,"{\""loyalty\"": \""6%\""}",161640,0,"""Asia""" +2024-05-18,64598,4056,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",412.35,{},128164,0,"""Europe""" +2024-09-29,64599,7517,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1885.08,"{\""loyalty\"": \""13%\""}",102233,1,"""Europe""" +2024-02-02,64600,5773,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2083.68,"{\""promo\"": \""26%\""}",110819,1,"""Europe""" +2023-02-28,64601,1663,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3978.16,{},105232,1,"""Africa""" +2024-03-25,64602,2060,"[\""Phone\"", \""Monitor\""]",3470.61,{},19366,0,"""South America""" +2023-06-02,64603,9159,"[\""Wireless Mouse\"", \""Phone\""]",4494.63,"{\""promo\"": \""20%\""}",295430,1,"""South America""" +2023-06-18,64604,1025,"[\""Wireless Mouse\""]",1218.57,{},153834,1,"""Africa""" +2024-07-29,64605,2962,"[\""Phone\""]",328.82,{},73962,1,"""South America""" +2024-06-16,64606,402,"[\""Tablet\"", \""Laptop\""]",2042.34,{},169412,1,"""Europe""" +2023-12-26,64607,397,"[\""Tablet\""]",1970.9,"{\"": \""15%\""}",11655,0,"""Africa""" +2023-12-21,64608,9143,"[\""Monitor\"", \""Wireless Mouse\""]",3528.78,"{\"": \""13%\""}",38411,1,"""South America""" +2024-01-19,64609,9328,"[\""Keyboard\"", \""Wireless Mouse\""]",3409.38,{},27497,1,"""Europe""" +2023-10-17,64610,3942,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",383.71,{},39131,0,"""Africa""" +2023-09-04,64611,1367,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",123.37,{},96317,0,"""Asia""" +2023-05-16,64612,8437,"[\""Laptop\""]",363.71,"{\"": \""7%\""}",134725,0,"""Europe""" +2024-07-30,64613,2045,"[\""Wireless Mouse\""]",4574.72,"{\""promo\"": \""24%\""}",44784,0,"""Europe""" +2023-01-19,64614,4688,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1285.02,"{\""seasonal\"": \""17%\""}",96517,0,"""South America""" +2024-07-13,64615,7982,"[\""Monitor\""]",979.62,"{\""promo\"": \""19%\""}",257331,0,"""Asia""" +2024-08-03,64616,7156,"[\""Headphones\"", \""Phone\""]",2429.55,"{\""loyalty\"": \""18%\""}",114929,0,"""Europe""" +2024-11-18,64617,8218,"[\""Headphones\"", \""Monitor\""]",335.97,{},230086,0,"""Europe""" +2023-11-10,64618,5673,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2544.96,"{\""seasonal\"": \""25%\""}",174512,1,"""Europe""" +2023-11-07,64619,6758,"[\""Headphones\"", \""Tablet\""]",711.79,"{\""promo\"": \""26%\""}",124942,1,"""Europe""" +2023-06-10,64620,111,"[\""Keyboard\"", \""Monitor\""]",2721.41,{},223332,1,"""Asia""" +2023-10-19,64621,1302,"[\""Laptop\"", \""Monitor\""]",4272.77,"{\""promo\"": \""26%\""}",32536,1,"""Europe""" +2023-01-11,64622,2316,"[\""Monitor\"", \""Keyboard\""]",2271.36,"{\""seasonal\"": \""25%\""}",251160,1,"""North America""" +2023-06-20,64623,1090,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4220.27,{},271658,0,"""North America""" +2023-05-07,64624,95,"[\""Charger\""]",3962.19,"{\""loyalty\"": \""27%\""}",176466,1,"""South America""" +2024-05-24,64625,2816,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1919.25,"{\""seasonal\"": \""16%\""}",98084,1,"""Africa""" +2024-01-01,64626,5770,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3586.0,{},119282,0,"""Africa""" +2024-07-16,64627,709,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",366.73,"{\""promo\"": \""23%\""}",59505,1,"""Africa""" +2023-11-02,64628,9745,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4889.67,"{\"": \""24%\""}",188011,0,"""Asia""" +2024-02-10,64629,1570,"[\""Monitor\"", \""Headphones\""]",3197.84,"{\""promo\"": \""27%\""}",73909,1,"""Europe""" +2023-11-19,64630,666,"[\""Keyboard\"", \""Charger\""]",67.92,{},266348,0,"""South America""" +2023-05-24,64631,925,"[\""Tablet\"", \""Laptop\""]",951.74,{},150398,0,"""Asia""" +2024-05-27,64632,4130,"[\""Keyboard\""]",1735.5,{},155984,1,"""Europe""" +2023-12-04,64633,4387,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3879.17,"{\"": \""10%\""}",261568,0,"""Europe""" +2023-05-16,64634,5799,"[\""Headphones\""]",232.33,{},261344,1,"""Europe""" +2024-01-29,64635,825,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3174.64,"{\""loyalty\"": \""27%\""}",58607,1,"""Asia""" +2023-01-03,64636,1632,"[\""Laptop\""]",422.45,"{\""seasonal\"": \""26%\""}",32785,0,"""Asia""" +2024-07-04,64637,1341,"[\""Charger\"", \""Phone\""]",2196.89,"{\"": \""14%\""}",103843,1,"""Africa""" +2024-07-06,64638,5291,"[\""Headphones\"", \""Keyboard\""]",223.46,{},298142,0,"""South America""" +2023-11-29,64639,7770,"[\""Charger\""]",1481.16,"{\""promo\"": \""26%\""}",229557,1,"""Europe""" +2024-10-07,64640,5290,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3150.41,"{\""seasonal\"": \""25%\""}",297040,1,"""Africa""" +2023-12-26,64641,7121,"[\""Keyboard\""]",1818.21,"{\""promo\"": \""15%\""}",296867,1,"""Europe""" +2024-01-23,64642,7157,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4575.33,"{\""seasonal\"": \""9%\""}",275709,1,"""Asia""" +2024-06-15,64643,661,"[\""Phone\"", \""Keyboard\""]",2262.12,{},148914,0,"""Africa""" +2023-04-07,64644,62,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",77.53,{},33730,1,"""South America""" +2023-08-13,64645,6963,"[\""Keyboard\"", \""Headphones\""]",3209.47,{},106420,1,"""Europe""" +2023-01-19,64646,7347,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1524.19,"{\""loyalty\"": \""29%\""}",211173,0,"""Europe""" +2024-04-22,64647,4918,"[\""Headphones\"", \""Monitor\""]",4859.72,"{\""loyalty\"": \""29%\""}",160885,0,"""Europe""" +2024-11-05,64648,7035,"[\""Phone\"", \""Keyboard\""]",3031.26,"{\""promo\"": \""12%\""}",80455,1,"""North America""" +2023-03-02,64649,5410,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1937.04,"{\""seasonal\"": \""14%\""}",73548,1,"""Africa""" +2023-08-13,64650,494,"[\""Headphones\""]",1283.13,{},116154,0,"""Africa""" +2024-11-22,64651,5894,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2438.19,{},112898,1,"""South America""" +2024-10-14,64652,9115,"[\""Monitor\""]",1954.02,"{\""loyalty\"": \""6%\""}",115588,1,"""South America""" +2024-10-05,64653,7164,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3218.96,"{\""promo\"": \""24%\""}",273282,1,"""North America""" +2024-01-12,64654,2459,"[\""Keyboard\""]",1569.2,"{\"": \""13%\""}",285962,1,"""South America""" +2024-05-03,64655,1176,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",523.35,"{\""seasonal\"": \""8%\""}",241944,1,"""South America""" +2024-06-01,64656,1676,"[\""Phone\"", \""Headphones\""]",2973.32,"{\"": \""23%\""}",58078,0,"""North America""" +2023-10-09,64657,5212,"[\""Laptop\"", \""Monitor\""]",4907.17,"{\"": \""23%\""}",117624,1,"""North America""" +2024-01-22,64658,96,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",278.38,"{\"": \""24%\""}",257808,1,"""South America""" +2024-07-13,64659,8820,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4793.8,"{\""loyalty\"": \""30%\""}",191396,0,"""Europe""" +2024-06-22,64660,4208,"[\""Charger\"", \""Monitor\""]",2031.38,"{\"": \""12%\""}",90312,1,"""Europe""" +2023-04-10,64661,2166,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4933.44,"{\"": \""13%\""}",4532,0,"""South America""" +2024-11-15,64662,7719,"[\""Wireless Mouse\"", \""Laptop\""]",970.59,{},290017,1,"""Asia""" +2024-02-01,64663,8735,"[\""Charger\"", \""Wireless Mouse\""]",2132.58,"{\""loyalty\"": \""13%\""}",112208,0,"""Europe""" +2024-08-30,64664,9627,"[\""Charger\"", \""Keyboard\""]",3445.3,{},219265,1,"""Europe""" +2024-11-18,64665,6551,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3244.81,"{\"": \""19%\""}",296683,1,"""Africa""" +2024-01-21,64666,6053,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2215.24,{},55348,1,"""South America""" +2023-12-07,64667,4577,"[\""Phone\""]",85.77,"{\""promo\"": \""16%\""}",192980,1,"""North America""" +2023-08-21,64668,8402,"[\""Laptop\""]",851.85,{},259679,1,"""Europe""" +2023-10-08,64669,1528,"[\""Headphones\"", \""Wireless Mouse\""]",895.18,"{\""loyalty\"": \""28%\""}",278986,0,"""South America""" +2024-10-26,64670,9462,"[\""Headphones\""]",1369.14,{},296817,1,"""Africa""" +2024-02-05,64671,9479,"[\""Laptop\""]",2577.01,"{\""loyalty\"": \""13%\""}",89054,0,"""Europe""" +2024-07-06,64672,1966,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1272.98,{},252278,1,"""Africa""" +2024-02-19,64673,9877,"[\""Phone\""]",1491.18,"{\""loyalty\"": \""17%\""}",225172,0,"""Africa""" +2023-11-28,64674,3274,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1926.58,"{\""loyalty\"": \""6%\""}",121727,1,"""Africa""" +2024-03-27,64675,2196,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2725.07,{},68052,0,"""South America""" +2024-02-11,64676,4038,"[\""Charger\""]",3907.1,{},118708,0,"""North America""" +2023-12-06,64677,9009,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",172.87,{},260081,1,"""Europe""" +2023-03-05,64678,1502,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4380.06,"{\""promo\"": \""27%\""}",110739,1,"""Asia""" +2024-10-02,64679,1129,"[\""Wireless Mouse\""]",4167.92,{},207423,1,"""South America""" +2024-01-23,64680,8396,"[\""Monitor\"", \""Wireless Mouse\""]",614.64,{},297582,1,"""Africa""" +2023-02-20,64681,3168,"[\""Headphones\""]",3940.72,"{\""seasonal\"": \""10%\""}",176145,0,"""Africa""" +2024-07-14,64682,1030,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2976.24,{},82558,0,"""Asia""" +2023-04-05,64683,1583,"[\""Keyboard\""]",3530.31,{},170477,0,"""North America""" +2024-07-12,64684,5874,"[\""Tablet\"", \""Keyboard\""]",869.32,"{\""promo\"": \""16%\""}",68354,1,"""Asia""" +2024-12-26,64685,3337,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3152.73,{},103561,1,"""South America""" +2024-02-05,64686,1012,"[\""Laptop\"", \""Monitor\""]",899.31,{},241545,1,"""South America""" +2023-12-15,64687,2284,"[\""Tablet\""]",2600.71,{},196189,1,"""Africa""" +2023-11-15,64688,6358,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4835.1,{},172466,0,"""Africa""" +2023-11-05,64689,2129,"[\""Wireless Mouse\"", \""Keyboard\""]",4399.52,"{\""seasonal\"": \""17%\""}",31018,1,"""South America""" +2024-12-07,64690,3051,"[\""Monitor\"", \""Wireless Mouse\""]",4141.39,"{\""loyalty\"": \""30%\""}",47202,1,"""Africa""" +2023-01-11,64691,4828,"[\""Laptop\""]",1079.46,{},164470,0,"""South America""" +2023-10-26,64692,4416,"[\""Charger\""]",1741.48,"{\"": \""12%\""}",130248,1,"""South America""" +2023-03-04,64693,7454,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",468.17,"{\""seasonal\"": \""18%\""}",124259,0,"""Africa""" +2024-03-27,64694,8988,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1485.64,"{\""promo\"": \""21%\""}",158900,0,"""South America""" +2023-04-07,64695,4835,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2715.19,{},168684,0,"""Africa""" +2024-01-31,64696,176,"[\""Wireless Mouse\"", \""Phone\""]",4319.75,{},112540,0,"""Africa""" +2023-02-24,64697,7161,"[\""Wireless Mouse\"", \""Keyboard\""]",4641.97,"{\"": \""7%\""}",254751,1,"""Asia""" +2024-11-08,64698,5074,"[\""Charger\""]",1955.72,{},139827,1,"""Africa""" +2024-07-16,64699,5323,"[\""Phone\""]",3902.31,"{\""promo\"": \""30%\""}",139554,0,"""North America""" +2023-09-15,64700,6156,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4463.51,{},127963,1,"""Europe""" +2023-08-04,64701,2653,"[\""Phone\"", \""Headphones\""]",2146.73,"{\"": \""28%\""}",127365,0,"""South America""" +2023-04-21,64702,4151,"[\""Tablet\"", \""Phone\""]",2985.64,{},98634,0,"""South America""" +2023-12-04,64703,5871,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",66.8,"{\""seasonal\"": \""28%\""}",75245,0,"""North America""" +2023-04-12,64704,7308,"[\""Phone\"", \""Headphones\""]",1984.31,"{\""seasonal\"": \""9%\""}",121147,0,"""Europe""" +2023-07-21,64705,8054,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",919.47,{},216063,0,"""Africa""" +2023-12-27,64706,9008,"[\""Phone\""]",2228.27,"{\"": \""23%\""}",229109,0,"""Africa""" +2024-08-15,64707,2444,"[\""Headphones\""]",698.25,{},247594,0,"""Asia""" +2024-06-18,64708,3482,"[\""Tablet\"", \""Phone\""]",4550.77,{},122934,0,"""Africa""" +2024-12-09,64709,1512,"[\""Wireless Mouse\"", \""Monitor\""]",435.16,{},63484,1,"""Europe""" +2023-09-10,64710,3440,"[\""Headphones\""]",488.0,"{\""seasonal\"": \""17%\""}",3283,1,"""Africa""" +2023-10-24,64711,6986,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",359.5,{},271034,1,"""North America""" +2023-11-05,64712,3434,"[\""Monitor\"", \""Charger\""]",2266.67,"{\""promo\"": \""25%\""}",59937,1,"""Africa""" +2024-03-08,64713,1296,"[\""Phone\"", \""Wireless Mouse\""]",1582.67,{},154449,0,"""North America""" +2024-07-05,64714,8645,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1735.14,{},139684,1,"""Europe""" +2024-05-31,64715,2590,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4215.4,"{\""seasonal\"": \""11%\""}",111783,0,"""North America""" +2024-03-06,64716,7745,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1430.39,"{\""seasonal\"": \""11%\""}",93733,0,"""Europe""" +2023-06-10,64717,3630,"[\""Tablet\"", \""Wireless Mouse\""]",2583.43,"{\""seasonal\"": \""6%\""}",108651,1,"""South America""" +2023-08-12,64718,6671,"[\""Tablet\"", \""Charger\"", \""Phone\""]",637.73,{},217247,1,"""North America""" +2024-08-17,64719,3377,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",895.26,"{\""seasonal\"": \""8%\""}",184945,1,"""North America""" +2024-03-25,64720,72,"[\""Phone\"", \""Monitor\""]",1809.94,"{\""seasonal\"": \""15%\""}",30632,0,"""Asia""" +2023-10-12,64721,8667,"[\""Laptop\""]",2424.98,{},70268,1,"""South America""" +2023-03-18,64722,6010,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1134.92,"{\""seasonal\"": \""27%\""}",122071,0,"""North America""" +2023-06-20,64723,3238,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1391.6,"{\""promo\"": \""13%\""}",106653,0,"""North America""" +2024-07-16,64724,5908,"[\""Monitor\""]",4228.25,{},283032,1,"""Europe""" +2023-02-22,64725,9448,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2683.78,{},297159,1,"""Asia""" +2024-03-23,64726,5664,"[\""Phone\""]",3628.7,"{\"": \""30%\""}",245678,1,"""Europe""" +2024-04-19,64727,3447,"[\""Monitor\""]",2750.45,"{\"": \""19%\""}",176351,0,"""North America""" +2024-03-21,64728,7777,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",753.16,{},91689,0,"""South America""" +2024-03-16,64729,4920,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2857.18,{},129743,0,"""South America""" +2023-10-21,64730,5719,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3164.24,"{\"": \""7%\""}",278879,0,"""Asia""" +2024-06-23,64731,9768,"[\""Charger\"", \""Tablet\""]",4932.62,{},102067,0,"""Asia""" +2023-09-08,64732,7831,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3389.93,"{\""loyalty\"": \""23%\""}",71132,1,"""North America""" +2024-06-19,64733,4867,"[\""Charger\"", \""Laptop\""]",3500.84,{},29907,1,"""North America""" +2024-02-24,64734,6118,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4976.63,"{\"": \""29%\""}",1670,0,"""Europe""" +2023-11-17,64735,5892,"[\""Keyboard\""]",1886.15,{},280899,1,"""Africa""" +2023-07-30,64736,8792,"[\""Wireless Mouse\"", \""Keyboard\""]",1246.26,{},123465,0,"""Europe""" +2024-01-12,64737,1140,"[\""Wireless Mouse\""]",3346.33,"{\""promo\"": \""21%\""}",102141,0,"""Africa""" +2024-05-14,64738,732,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1892.64,"{\""seasonal\"": \""9%\""}",207886,1,"""North America""" +2024-01-25,64739,7806,"[\""Phone\"", \""Charger\""]",4950.74,{},127221,0,"""North America""" +2023-01-08,64740,6796,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",232.53,"{\""loyalty\"": \""25%\""}",84347,1,"""Africa""" +2024-02-01,64741,368,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3275.36,"{\"": \""25%\""}",279484,1,"""Africa""" +2024-04-04,64742,3046,"[\""Monitor\"", \""Laptop\""]",2397.27,{},149695,1,"""Africa""" +2024-08-10,64743,1058,"[\""Wireless Mouse\""]",2346.33,{},227644,1,"""Africa""" +2023-01-12,64744,5162,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",621.28,"{\""promo\"": \""6%\""}",83038,0,"""North America""" +2024-05-10,64745,9642,"[\""Keyboard\""]",1512.1,{},114405,1,"""Asia""" +2023-03-04,64746,7845,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",577.76,"{\"": \""21%\""}",298947,1,"""Africa""" +2024-02-10,64747,6291,"[\""Wireless Mouse\""]",3462.34,"{\""loyalty\"": \""19%\""}",23801,0,"""Asia""" +2023-07-18,64748,6208,"[\""Monitor\""]",2076.47,{},177352,0,"""North America""" +2024-07-01,64749,2331,"[\""Phone\""]",1822.71,{},172346,1,"""South America""" +2023-09-23,64750,2680,"[\""Laptop\"", \""Headphones\""]",1409.53,"{\""seasonal\"": \""21%\""}",1968,0,"""Europe""" +2024-05-28,64751,9942,"[\""Tablet\"", \""Keyboard\""]",4861.25,{},126686,1,"""South America""" +2024-06-23,64752,875,"[\""Wireless Mouse\"", \""Headphones\""]",1887.63,{},253362,1,"""Africa""" +2023-10-24,64753,6629,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1744.67,"{\""seasonal\"": \""28%\""}",251897,1,"""South America""" +2024-05-28,64754,4248,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",407.33,"{\""seasonal\"": \""30%\""}",154536,1,"""Europe""" +2023-01-20,64755,9635,"[\""Keyboard\"", \""Tablet\""]",1208.19,{},190983,1,"""North America""" +2023-10-20,64756,7231,"[\""Tablet\"", \""Phone\""]",2058.42,{},275812,1,"""Europe""" +2024-08-16,64757,1081,"[\""Tablet\""]",4879.42,"{\"": \""19%\""}",176436,0,"""Asia""" +2023-12-20,64758,6510,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",78.79,{},63313,0,"""Asia""" +2024-09-28,64759,8512,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4314.63,{},215812,1,"""Africa""" +2023-05-26,64760,9584,"[\""Headphones\""]",4645.2,"{\""loyalty\"": \""5%\""}",146599,1,"""Europe""" +2024-11-19,64761,5334,"[\""Headphones\"", \""Wireless Mouse\""]",3128.19,"{\""seasonal\"": \""6%\""}",82485,0,"""Europe""" +2023-04-20,64762,6455,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",111.68,{},201836,1,"""North America""" +2023-06-25,64763,1094,"[\""Laptop\"", \""Wireless Mouse\""]",1626.89,"{\"": \""29%\""}",212090,0,"""South America""" +2023-09-12,64764,311,"[\""Monitor\""]",3615.19,{},184398,1,"""Europe""" +2023-10-09,64765,7460,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1365.62,"{\""promo\"": \""28%\""}",270735,1,"""Europe""" +2024-06-13,64766,1168,"[\""Headphones\""]",812.39,"{\""seasonal\"": \""5%\""}",298575,0,"""South America""" +2024-08-06,64767,8680,"[\""Monitor\""]",3632.14,{},74526,0,"""Africa""" +2024-04-30,64768,6443,"[\""Phone\"", \""Monitor\""]",124.59,{},263418,0,"""Africa""" +2023-06-20,64769,2188,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1214.31,{},181784,1,"""North America""" +2024-01-05,64770,2689,"[\""Keyboard\""]",3728.32,"{\""promo\"": \""28%\""}",228805,1,"""Africa""" +2024-12-20,64771,81,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3774.6,"{\""promo\"": \""25%\""}",161690,0,"""South America""" +2024-08-23,64772,7057,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",304.67,{},278332,0,"""South America""" +2023-01-01,64773,6258,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3108.33,"{\"": \""8%\""}",27776,1,"""Asia""" +2024-07-23,64774,7164,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4053.75,{},290628,0,"""North America""" +2023-12-26,64775,61,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4120.14,{},239449,0,"""Asia""" +2023-03-13,64776,1499,"[\""Phone\"", \""Tablet\""]",1966.36,"{\""promo\"": \""5%\""}",107807,0,"""Asia""" +2024-06-10,64777,2692,"[\""Wireless Mouse\""]",761.28,{},85629,0,"""Asia""" +2023-09-22,64778,1442,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",96.8,"{\""seasonal\"": \""28%\""}",62705,0,"""Asia""" +2023-11-13,64779,3205,"[\""Charger\"", \""Laptop\""]",1582.05,{},241035,1,"""Africa""" +2024-02-15,64780,5931,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1942.35,{},203952,1,"""Asia""" +2023-06-04,64781,6352,"[\""Keyboard\"", \""Phone\""]",2639.44,{},151104,0,"""Europe""" +2024-02-28,64782,3403,"[\""Keyboard\""]",4974.12,{},294627,0,"""South America""" +2023-05-24,64783,8616,"[\""Phone\"", \""Tablet\""]",1578.96,"{\""loyalty\"": \""24%\""}",281560,0,"""North America""" +2024-05-27,64784,6480,"[\""Wireless Mouse\"", \""Keyboard\""]",1881.93,{},151286,0,"""Africa""" +2023-06-13,64785,7798,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",747.89,{},141096,1,"""South America""" +2023-07-22,64786,8846,"[\""Phone\"", \""Headphones\""]",3165.24,{},85527,0,"""Africa""" +2024-12-14,64787,5959,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2591.93,"{\"": \""8%\""}",290167,1,"""Europe""" +2023-01-02,64788,859,"[\""Keyboard\"", \""Wireless Mouse\""]",637.33,"{\""promo\"": \""27%\""}",230872,1,"""Africa""" +2024-03-07,64789,6603,"[\""Wireless Mouse\""]",2781.1,"{\""promo\"": \""28%\""}",167010,0,"""South America""" +2024-08-01,64790,7618,"[\""Keyboard\""]",3495.59,"{\"": \""11%\""}",11274,1,"""Asia""" +2023-01-04,64791,9361,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4899.03,"{\""promo\"": \""11%\""}",59974,0,"""South America""" +2023-12-28,64792,3712,"[\""Monitor\"", \""Wireless Mouse\""]",3141.85,{},22017,0,"""Asia""" +2024-03-26,64793,2338,"[\""Headphones\""]",1030.61,{},114665,0,"""South America""" +2023-06-19,64794,5086,"[\""Phone\""]",1106.73,{},117513,1,"""North America""" +2024-11-08,64795,2647,"[\""Tablet\""]",2210.51,"{\""seasonal\"": \""24%\""}",34073,0,"""Europe""" +2023-12-01,64796,4868,"[\""Phone\""]",2627.58,{},87563,0,"""Europe""" +2023-08-29,64797,5528,"[\""Wireless Mouse\"", \""Tablet\""]",4612.41,{},37509,1,"""North America""" +2024-02-28,64798,8491,"[\""Wireless Mouse\""]",1324.01,"{\""loyalty\"": \""15%\""}",187995,1,"""North America""" +2023-10-24,64799,6100,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4225.17,"{\""loyalty\"": \""30%\""}",176994,0,"""Asia""" +2023-05-13,64800,9910,"[\""Tablet\""]",1280.72,"{\"": \""20%\""}",235933,0,"""North America""" +2023-07-02,64801,8626,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1507.8,"{\""loyalty\"": \""22%\""}",128700,0,"""Asia""" +2023-08-25,64802,911,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4988.7,"{\""loyalty\"": \""6%\""}",253489,1,"""Asia""" +2023-05-27,64803,1376,"[\""Wireless Mouse\"", \""Keyboard\""]",2189.75,{},180439,0,"""Europe""" +2023-08-15,64804,8426,"[\""Headphones\"", \""Phone\""]",3880.27,{},7766,0,"""Europe""" +2024-12-13,64805,9402,"[\""Wireless Mouse\"", \""Phone\""]",4284.29,{},182958,0,"""North America""" +2023-09-01,64806,7343,"[\""Charger\""]",2001.36,{},124307,0,"""Asia""" +2024-10-11,64807,8007,"[\""Wireless Mouse\""]",2470.05,{},89077,0,"""Africa""" +2024-08-15,64808,6353,"[\""Charger\""]",2012.13,{},56019,1,"""Africa""" +2023-08-11,64809,1493,"[\""Monitor\""]",2982.21,{},168791,1,"""Europe""" +2024-03-23,64810,3551,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2380.17,"{\""seasonal\"": \""13%\""}",295364,0,"""North America""" +2023-09-29,64811,5458,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3071.2,"{\""promo\"": \""21%\""}",211867,1,"""Africa""" +2023-11-23,64812,9643,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",212.58,{},119897,1,"""South America""" +2024-07-03,64813,4957,"[\""Wireless Mouse\"", \""Laptop\""]",3587.15,"{\""loyalty\"": \""9%\""}",106449,1,"""Africa""" +2023-12-23,64814,3656,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1372.51,{},45813,1,"""Asia""" +2023-04-03,64815,4922,"[\""Tablet\""]",3173.06,{},88695,0,"""Europe""" +2024-09-27,64816,1193,"[\""Headphones\""]",3919.97,{},253311,1,"""South America""" +2023-03-17,64817,216,"[\""Charger\""]",4627.79,"{\""loyalty\"": \""18%\""}",75161,1,"""Europe""" +2023-12-08,64818,7707,"[\""Wireless Mouse\"", \""Monitor\""]",4841.54,"{\""loyalty\"": \""12%\""}",261564,1,"""Europe""" +2024-04-07,64819,3479,"[\""Headphones\"", \""Monitor\""]",3273.84,{},298368,0,"""South America""" +2023-08-27,64820,4965,"[\""Laptop\"", \""Phone\""]",4418.83,"{\""seasonal\"": \""24%\""}",157565,0,"""Asia""" +2024-01-15,64821,9197,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3438.36,"{\""seasonal\"": \""6%\""}",159308,1,"""Asia""" +2024-07-29,64822,7480,"[\""Tablet\"", \""Charger\""]",96.26,{},232849,0,"""Asia""" +2023-06-14,64823,2201,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1696.9,{},49008,0,"""Africa""" +2024-06-17,64824,7405,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",195.82,{},164249,0,"""South America""" +2023-10-02,64825,2620,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",562.79,{},39528,0,"""North America""" +2023-11-06,64826,1723,"[\""Monitor\""]",2630.68,{},244586,0,"""North America""" +2023-06-07,64827,6830,"[\""Monitor\"", \""Keyboard\""]",4319.37,{},240781,0,"""South America""" +2023-07-03,64828,5712,"[\""Wireless Mouse\""]",4875.43,{},244612,0,"""Asia""" +2024-11-13,64829,6862,"[\""Headphones\""]",491.08,"{\""loyalty\"": \""9%\""}",58132,0,"""Europe""" +2024-02-17,64830,516,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",138.98,{},81386,1,"""South America""" +2024-10-15,64831,5316,"[\""Charger\"", \""Tablet\""]",3826.53,"{\""loyalty\"": \""10%\""}",157340,1,"""North America""" +2024-05-25,64832,5468,"[\""Phone\"", \""Monitor\""]",3203.4,{},128824,1,"""Asia""" +2023-08-12,64833,2976,"[\""Keyboard\""]",2653.22,"{\""promo\"": \""21%\""}",82514,1,"""North America""" +2023-03-29,64834,9680,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2804.09,{},108945,0,"""South America""" +2024-07-30,64835,4491,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3713.72,"{\"": \""11%\""}",157186,0,"""North America""" +2023-09-19,64836,7491,"[\""Monitor\""]",2583.57,{},205555,0,"""Africa""" +2024-03-11,64837,2701,"[\""Wireless Mouse\"", \""Tablet\""]",1773.57,{},30377,0,"""Europe""" +2024-03-09,64838,1255,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3702.76,"{\""seasonal\"": \""13%\""}",233201,0,"""Asia""" +2024-05-23,64839,6852,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4875.93,{},267190,1,"""Africa""" +2024-06-27,64840,4807,"[\""Keyboard\"", \""Charger\""]",844.44,{},282050,0,"""South America""" +2023-11-27,64841,5951,"[\""Wireless Mouse\""]",4334.83,"{\""promo\"": \""17%\""}",75837,0,"""Asia""" +2024-05-09,64842,6711,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2479.2,"{\"": \""5%\""}",122254,1,"""South America""" +2023-09-29,64843,3675,"[\""Phone\"", \""Wireless Mouse\""]",3955.35,{},285003,0,"""Asia""" +2024-06-16,64844,4069,"[\""Wireless Mouse\""]",2416.7,{},38429,0,"""South America""" +2024-03-10,64845,3230,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1974.41,{},101274,1,"""North America""" +2024-01-20,64846,1577,"[\""Laptop\""]",3994.16,{},245968,1,"""Africa""" +2023-08-19,64847,6031,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2528.32,"{\""promo\"": \""11%\""}",156122,0,"""Asia""" +2024-12-14,64848,4444,"[\""Wireless Mouse\""]",289.47,{},78573,0,"""Europe""" +2023-02-11,64849,6562,"[\""Wireless Mouse\""]",509.15,"{\""seasonal\"": \""15%\""}",217734,0,"""Africa""" +2023-01-03,64850,9208,"[\""Wireless Mouse\"", \""Tablet\""]",4136.13,{},106915,1,"""Asia""" +2024-02-21,64851,8579,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2125.96,"{\"": \""25%\""}",114747,1,"""Africa""" +2023-04-13,64852,2353,"[\""Phone\""]",4853.03,"{\""seasonal\"": \""13%\""}",145767,0,"""Europe""" +2024-08-06,64853,5399,"[\""Laptop\"", \""Charger\""]",1911.09,{},159924,1,"""Asia""" +2023-01-21,64854,2791,"[\""Tablet\"", \""Wireless Mouse\""]",2211.39,"{\""loyalty\"": \""26%\""}",174316,1,"""Africa""" +2023-05-25,64855,9465,"[\""Charger\""]",3346.29,{},80138,1,"""North America""" +2024-02-19,64856,9828,"[\""Charger\""]",722.36,{},169448,0,"""Africa""" +2023-09-01,64857,2443,"[\""Tablet\"", \""Laptop\""]",3534.92,"{\""seasonal\"": \""24%\""}",44258,0,"""Africa""" +2023-12-13,64858,8332,"[\""Laptop\""]",4508.88,{},163301,1,"""South America""" +2023-04-01,64859,5770,"[\""Keyboard\"", \""Monitor\""]",2813.21,{},140102,0,"""Asia""" +2023-02-23,64860,7195,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4212.44,{},157036,1,"""Europe""" +2024-11-23,64861,7403,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1566.14,{},103843,0,"""Africa""" +2024-01-30,64862,8181,"[\""Wireless Mouse\""]",4864.7,"{\"": \""19%\""}",59717,0,"""Africa""" +2024-01-11,64863,4001,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1304.7,"{\"": \""14%\""}",240677,1,"""Africa""" +2023-07-11,64864,7988,"[\""Charger\"", \""Phone\""]",215.79,{},71454,1,"""North America""" +2024-07-09,64865,8746,"[\""Laptop\"", \""Phone\""]",4926.64,"{\""loyalty\"": \""16%\""}",156625,1,"""Asia""" +2023-12-09,64866,3559,"[\""Charger\"", \""Wireless Mouse\""]",3768.62,{},283933,1,"""Asia""" +2023-04-05,64867,3791,"[\""Wireless Mouse\"", \""Laptop\""]",3044.39,{},184357,1,"""Europe""" +2024-11-08,64868,2062,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4025.75,"{\""promo\"": \""26%\""}",143864,1,"""North America""" +2024-02-20,64869,6555,"[\""Monitor\"", \""Laptop\""]",3327.14,{},60502,1,"""South America""" +2023-10-30,64870,1381,"[\""Wireless Mouse\"", \""Laptop\""]",2747.7,"{\"": \""5%\""}",49039,0,"""Europe""" +2024-05-11,64871,9739,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4460.64,{},259592,1,"""North America""" +2024-12-04,64872,1374,"[\""Laptop\"", \""Wireless Mouse\""]",2648.89,"{\""seasonal\"": \""18%\""}",142150,0,"""South America""" +2023-04-09,64873,2590,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2188.1,{},240209,1,"""Europe""" +2023-04-26,64874,9982,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3619.61,{},216617,0,"""North America""" +2023-10-27,64875,4851,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",364.97,{},4087,0,"""Europe""" +2023-06-11,64876,6857,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2236.06,"{\""promo\"": \""5%\""}",118991,1,"""Africa""" +2023-01-30,64877,9538,"[\""Wireless Mouse\""]",96.13,"{\"": \""8%\""}",282215,1,"""North America""" +2023-04-05,64878,8226,"[\""Tablet\""]",1490.64,{},191551,0,"""North America""" +2024-09-09,64879,9298,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4044.28,"{\""promo\"": \""6%\""}",241566,0,"""North America""" +2023-10-01,64880,1494,"[\""Headphones\""]",2253.71,"{\""promo\"": \""24%\""}",137556,0,"""South America""" +2023-04-14,64881,4984,"[\""Monitor\""]",3580.74,"{\""seasonal\"": \""22%\""}",49087,0,"""South America""" +2023-02-16,64882,9654,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2581.61,{},98283,0,"""North America""" +2024-08-08,64883,9582,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1998.95,"{\""seasonal\"": \""25%\""}",292523,0,"""Africa""" +2023-02-28,64884,3152,"[\""Laptop\"", \""Headphones\""]",2697.84,"{\""promo\"": \""28%\""}",92524,1,"""South America""" +2024-08-16,64885,9262,"[\""Laptop\"", \""Charger\""]",3839.39,"{\"": \""14%\""}",129437,0,"""Europe""" +2024-12-04,64886,9984,"[\""Laptop\""]",4079.86,"{\""promo\"": \""29%\""}",193538,0,"""Europe""" +2023-09-03,64887,2221,"[\""Keyboard\"", \""Tablet\""]",4053.44,{},28067,1,"""Africa""" +2023-10-15,64888,5125,"[\""Tablet\"", \""Keyboard\""]",3239.74,{},199059,0,"""Africa""" +2024-01-02,64889,110,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2504.38,{},241281,1,"""Asia""" +2024-04-05,64890,5132,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2627.66,"{\""promo\"": \""24%\""}",229715,1,"""Europe""" +2024-10-24,64891,2563,"[\""Wireless Mouse\"", \""Keyboard\""]",3033.7,{},137633,0,"""South America""" +2023-02-25,64892,979,"[\""Charger\"", \""Tablet\""]",1183.26,"{\""promo\"": \""11%\""}",32467,1,"""North America""" +2023-09-17,64893,9284,"[\""Wireless Mouse\""]",1398.35,"{\"": \""28%\""}",60151,0,"""Africa""" +2024-07-11,64894,8292,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3790.44,"{\""loyalty\"": \""25%\""}",98535,0,"""South America""" +2024-09-06,64895,5697,"[\""Tablet\"", \""Keyboard\""]",3079.49,{},42483,1,"""Asia""" +2023-04-04,64896,3147,"[\""Wireless Mouse\"", \""Monitor\""]",3899.01,"{\""seasonal\"": \""19%\""}",74665,1,"""Africa""" +2024-10-23,64897,4781,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4729.06,"{\""seasonal\"": \""5%\""}",256603,1,"""Asia""" +2023-07-11,64898,8881,"[\""Laptop\"", \""Phone\""]",3791.8,"{\""promo\"": \""13%\""}",144501,1,"""Africa""" +2024-08-10,64899,1550,"[\""Wireless Mouse\"", \""Tablet\""]",1080.48,"{\"": \""18%\""}",86597,1,"""Europe""" +2024-04-21,64900,1377,"[\""Tablet\""]",4861.78,"{\""loyalty\"": \""10%\""}",237032,1,"""Africa""" +2024-02-02,64901,9054,"[\""Phone\""]",1762.31,{},155398,0,"""Europe""" +2023-01-25,64902,7064,"[\""Keyboard\"", \""Charger\""]",4037.91,"{\""seasonal\"": \""16%\""}",285061,1,"""Europe""" +2024-04-15,64903,6566,"[\""Charger\""]",3264.93,{},30641,0,"""North America""" +2024-09-08,64904,2054,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4373.24,{},167221,0,"""South America""" +2024-06-16,64905,6809,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",486.78,"{\"": \""26%\""}",8605,0,"""Asia""" +2023-02-16,64906,1576,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1446.45,{},77244,0,"""North America""" +2023-12-30,64907,2767,"[\""Headphones\""]",2176.0,{},177075,0,"""Europe""" +2024-09-30,64908,6990,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1129.94,{},236412,0,"""Asia""" +2023-06-25,64909,1151,"[\""Tablet\"", \""Charger\""]",4286.58,{},197221,1,"""South America""" +2023-09-30,64910,9072,"[\""Charger\""]",3241.27,{},236947,0,"""South America""" +2023-03-27,64911,9102,"[\""Charger\"", \""Laptop\""]",3942.91,{},287997,0,"""North America""" +2023-12-23,64912,3827,"[\""Keyboard\"", \""Charger\""]",223.87,"{\""loyalty\"": \""7%\""}",7250,0,"""Europe""" +2024-09-21,64913,3801,"[\""Wireless Mouse\""]",1915.77,"{\""promo\"": \""23%\""}",168651,0,"""Africa""" +2023-02-11,64914,3244,"[\""Keyboard\"", \""Charger\""]",3355.12,{},221173,0,"""Africa""" +2024-04-24,64915,650,"[\""Headphones\"", \""Laptop\""]",1376.39,{},129672,1,"""North America""" +2023-02-28,64916,3045,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4172.72,"{\"": \""15%\""}",247015,1,"""South America""" +2024-05-29,64917,6632,"[\""Wireless Mouse\""]",1081.12,"{\"": \""6%\""}",172556,0,"""South America""" +2024-05-12,64918,6737,"[\""Laptop\"", \""Phone\""]",4405.91,{},25495,0,"""Africa""" +2024-05-29,64919,6600,"[\""Laptop\""]",4675.91,{},237435,0,"""North America""" +2023-04-18,64920,4219,"[\""Keyboard\""]",180.15,"{\"": \""17%\""}",224448,0,"""North America""" +2024-08-01,64921,5824,"[\""Headphones\""]",3278.26,"{\""promo\"": \""18%\""}",218764,0,"""Asia""" +2024-07-17,64922,156,"[\""Phone\""]",1159.0,{},33425,1,"""South America""" +2024-09-13,64923,5379,"[\""Phone\""]",2800.7,{},297538,1,"""Asia""" +2023-05-01,64924,9807,"[\""Laptop\""]",2687.17,{},39079,1,"""Asia""" +2024-02-22,64925,3227,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",380.42,{},97868,0,"""Africa""" +2024-01-08,64926,6010,"[\""Phone\"", \""Charger\""]",1192.02,{},270786,0,"""North America""" +2024-04-13,64927,9399,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2325.09,{},21456,0,"""North America""" +2024-07-29,64928,3631,"[\""Charger\""]",3225.99,{},41379,0,"""Europe""" +2023-05-05,64929,18,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1046.57,{},183104,1,"""South America""" +2023-08-16,64930,1510,"[\""Tablet\"", \""Monitor\""]",2225.19,{},281223,0,"""Africa""" +2024-05-23,64931,7993,"[\""Charger\"", \""Laptop\""]",3498.07,{},275915,1,"""South America""" +2024-05-10,64932,5829,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1575.28,{},176249,1,"""South America""" +2024-06-14,64933,6850,"[\""Monitor\""]",1047.82,"{\""promo\"": \""6%\""}",129200,0,"""Asia""" +2023-11-26,64934,9877,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",854.31,"{\"": \""15%\""}",272305,1,"""Africa""" +2024-04-29,64935,4252,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4177.36,{},53590,1,"""Africa""" +2024-01-19,64936,7796,"[\""Monitor\"", \""Headphones\""]",4151.03,"{\""loyalty\"": \""5%\""}",118699,1,"""Africa""" +2023-11-08,64937,2576,"[\""Laptop\"", \""Charger\""]",201.17,{},178960,0,"""North America""" +2023-11-19,64938,7430,"[\""Wireless Mouse\""]",3557.41,"{\""seasonal\"": \""25%\""}",35509,0,"""Europe""" +2023-03-20,64939,695,"[\""Phone\""]",3424.39,"{\""loyalty\"": \""19%\""}",18395,0,"""South America""" +2024-04-04,64940,2615,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2391.47,{},225124,0,"""South America""" +2023-05-14,64941,9054,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1564.77,"{\""promo\"": \""19%\""}",280224,1,"""Asia""" +2024-02-05,64942,4125,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3329.41,"{\""loyalty\"": \""10%\""}",216581,1,"""Asia""" +2023-06-22,64943,8709,"[\""Keyboard\"", \""Charger\""]",2415.36,"{\"": \""20%\""}",17353,0,"""Africa""" +2024-10-14,64944,8003,"[\""Charger\""]",3087.57,"{\""loyalty\"": \""26%\""}",200029,1,"""South America""" +2024-04-14,64945,6128,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",710.0,{},129827,1,"""Asia""" +2023-03-12,64946,3429,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2550.15,"{\"": \""8%\""}",253113,0,"""Africa""" +2023-11-03,64947,9284,"[\""Wireless Mouse\"", \""Monitor\""]",3652.0,"{\""seasonal\"": \""28%\""}",142316,1,"""Africa""" +2024-10-19,64948,2757,"[\""Wireless Mouse\""]",2155.36,{},253672,0,"""South America""" +2024-11-13,64949,1279,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",487.04,{},280894,0,"""Africa""" +2024-01-08,64950,2080,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",479.13,{},53037,0,"""Asia""" +2024-06-28,64951,5306,"[\""Laptop\""]",4535.49,{},130236,0,"""Africa""" +2024-10-04,64952,12,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2933.27,"{\""loyalty\"": \""13%\""}",170296,0,"""South America""" +2023-01-19,64953,830,"[\""Charger\"", \""Keyboard\""]",321.29,{},263516,0,"""Africa""" +2024-08-28,64954,9477,"[\""Headphones\""]",4348.45,{},253310,1,"""North America""" +2024-04-14,64955,8813,"[\""Laptop\""]",2299.27,"{\"": \""20%\""}",171418,0,"""Europe""" +2023-02-27,64956,6211,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1186.66,"{\""loyalty\"": \""19%\""}",36769,0,"""Africa""" +2023-06-18,64957,851,"[\""Keyboard\""]",1018.71,{},136012,1,"""South America""" +2024-11-19,64958,2645,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1200.13,"{\""seasonal\"": \""28%\""}",239192,0,"""North America""" +2023-11-19,64959,528,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2706.93,"{\"": \""18%\""}",117782,1,"""Asia""" +2023-07-29,64960,1557,"[\""Wireless Mouse\"", \""Charger\""]",435.6,"{\"": \""26%\""}",170532,0,"""Asia""" +2024-05-24,64961,8788,"[\""Laptop\""]",4761.79,{},77068,1,"""South America""" +2023-08-04,64962,7221,"[\""Laptop\"", \""Monitor\""]",1033.61,"{\""loyalty\"": \""15%\""}",220256,0,"""South America""" +2024-01-12,64963,769,"[\""Headphones\"", \""Laptop\""]",213.52,"{\""loyalty\"": \""7%\""}",9092,0,"""Europe""" +2024-01-26,64964,4846,"[\""Tablet\"", \""Monitor\""]",2062.65,"{\""promo\"": \""26%\""}",10672,0,"""Europe""" +2024-06-19,64965,2744,"[\""Phone\"", \""Laptop\""]",4565.49,"{\""promo\"": \""30%\""}",1428,0,"""South America""" +2023-01-03,64966,11,"[\""Laptop\""]",3390.26,"{\"": \""27%\""}",274774,0,"""North America""" +2024-01-23,64967,6323,"[\""Monitor\"", \""Keyboard\""]",1554.23,"{\""loyalty\"": \""21%\""}",225980,1,"""Africa""" +2024-03-31,64968,2683,"[\""Wireless Mouse\""]",4182.2,{},220154,1,"""Europe""" +2024-02-23,64969,4534,"[\""Phone\""]",1258.17,{},186771,1,"""Asia""" +2024-01-02,64970,7840,"[\""Monitor\""]",1131.63,"{\""seasonal\"": \""17%\""}",181624,0,"""Europe""" +2024-07-23,64971,6978,"[\""Charger\"", \""Wireless Mouse\""]",3423.49,{},169350,1,"""Asia""" +2023-10-29,64972,4629,"[\""Charger\"", \""Headphones\""]",3212.67,{},187064,1,"""North America""" +2024-07-06,64973,8967,"[\""Wireless Mouse\""]",519.79,{},29520,0,"""Asia""" +2023-11-27,64974,6941,"[\""Charger\"", \""Monitor\""]",3416.34,{},134887,1,"""South America""" +2024-10-31,64975,6909,"[\""Headphones\"", \""Laptop\""]",3799.41,{},100190,0,"""Africa""" +2024-08-12,64976,6286,"[\""Laptop\""]",2050.16,{},83337,1,"""North America""" +2023-11-11,64977,2441,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4857.38,"{\""seasonal\"": \""30%\""}",260384,1,"""Asia""" +2023-02-03,64978,5438,"[\""Monitor\"", \""Tablet\""]",3984.35,"{\"": \""28%\""}",125667,1,"""Asia""" +2024-12-25,64979,9853,"[\""Tablet\""]",3310.18,"{\""seasonal\"": \""24%\""}",264015,1,"""South America""" +2023-07-05,64980,7465,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2923.1,"{\"": \""25%\""}",269435,1,"""Europe""" +2023-03-05,64981,9985,"[\""Phone\"", \""Charger\""]",2716.22,{},182158,0,"""South America""" +2024-02-24,64982,208,"[\""Monitor\""]",1714.56,{},294445,0,"""Africa""" +2023-02-28,64983,4992,"[\""Phone\"", \""Monitor\""]",1318.34,"{\"": \""19%\""}",24036,0,"""Asia""" +2023-04-27,64984,1064,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2894.84,"{\""promo\"": \""12%\""}",93448,1,"""Africa""" +2024-10-28,64985,56,"[\""Tablet\"", \""Charger\""]",3867.33,{},30417,1,"""Europe""" +2024-09-15,64986,3190,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1623.47,"{\""seasonal\"": \""20%\""}",7391,0,"""Europe""" +2024-12-16,64987,9022,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2862.77,{},67084,0,"""Africa""" +2024-10-26,64988,8845,"[\""Headphones\""]",467.4,"{\"": \""29%\""}",87567,1,"""South America""" +2024-04-29,64989,8755,"[\""Wireless Mouse\""]",1575.73,{},222507,0,"""Asia""" +2023-02-14,64990,7677,"[\""Headphones\"", \""Tablet\""]",1881.14,"{\""loyalty\"": \""28%\""}",281793,1,"""Europe""" +2024-10-06,64991,1375,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4649.31,"{\""promo\"": \""27%\""}",255710,0,"""Europe""" +2024-02-03,64992,4304,"[\""Tablet\"", \""Charger\""]",4771.46,{},261881,0,"""Asia""" +2023-09-20,64993,59,"[\""Monitor\""]",1472.32,"{\""loyalty\"": \""24%\""}",251081,1,"""South America""" +2024-07-16,64994,9346,"[\""Headphones\""]",2630.34,"{\"": \""21%\""}",67476,0,"""Europe""" +2023-11-27,64995,4137,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3556.26,{},112297,0,"""Africa""" +2023-09-08,64996,149,"[\""Headphones\""]",1473.75,{},181095,0,"""South America""" +2024-05-14,64997,5131,"[\""Wireless Mouse\""]",1199.94,"{\""loyalty\"": \""30%\""}",80062,0,"""South America""" +2024-05-02,64998,89,"[\""Tablet\"", \""Phone\""]",627.8,{},199802,1,"""Europe""" +2024-04-20,64999,8343,"[\""Keyboard\"", \""Charger\""]",3320.56,{},93671,1,"""Asia""" +2023-01-20,65000,9325,"[\""Monitor\"", \""Keyboard\""]",963.08,"{\""promo\"": \""27%\""}",296271,1,"""South America""" +2024-04-13,65001,1309,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3407.0,"{\""loyalty\"": \""10%\""}",70378,1,"""Europe""" +2023-11-04,65002,7771,"[\""Wireless Mouse\"", \""Laptop\""]",4088.34,{},233315,1,"""Asia""" +2024-02-11,65003,2981,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1874.53,"{\""seasonal\"": \""21%\""}",62034,1,"""North America""" +2024-12-19,65004,3503,"[\""Keyboard\"", \""Charger\""]",4132.09,{},152339,1,"""Africa""" +2023-08-12,65005,370,"[\""Keyboard\"", \""Headphones\""]",3629.18,{},33645,0,"""North America""" +2024-02-21,65006,8412,"[\""Wireless Mouse\""]",1123.48,"{\""loyalty\"": \""21%\""}",183070,1,"""Asia""" +2024-06-04,65007,3471,"[\""Phone\"", \""Tablet\""]",1081.09,"{\""loyalty\"": \""15%\""}",1832,0,"""Asia""" +2023-10-19,65008,8655,"[\""Charger\"", \""Laptop\""]",3125.29,{},273842,0,"""Africa""" +2024-10-28,65009,2574,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4939.38,{},32422,0,"""South America""" +2024-11-25,65010,8870,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2079.6,"{\""loyalty\"": \""13%\""}",86946,0,"""Europe""" +2023-08-20,65011,2326,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3256.01,{},69815,0,"""Africa""" +2023-12-16,65012,4413,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1121.26,{},242225,0,"""North America""" +2024-10-19,65013,9426,"[\""Charger\"", \""Tablet\""]",779.88,"{\""seasonal\"": \""28%\""}",172280,0,"""Europe""" +2023-09-01,65014,5406,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",432.6,"{\""seasonal\"": \""21%\""}",263775,0,"""Africa""" +2023-11-11,65015,2066,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1144.43,"{\""seasonal\"": \""16%\""}",249477,0,"""Africa""" +2023-07-13,65016,5816,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3344.9,"{\""seasonal\"": \""5%\""}",287834,1,"""South America""" +2024-06-08,65017,3999,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",439.1,"{\""loyalty\"": \""16%\""}",243114,0,"""Africa""" +2024-07-15,65018,6023,"[\""Wireless Mouse\""]",3485.64,"{\"": \""9%\""}",217863,1,"""Europe""" +2023-06-27,65019,7065,"[\""Laptop\""]",1969.54,{},131798,0,"""Asia""" +2023-02-17,65020,7108,"[\""Wireless Mouse\""]",3684.52,"{\""loyalty\"": \""15%\""}",139417,1,"""Europe""" +2023-02-04,65021,5561,"[\""Wireless Mouse\""]",561.36,"{\""promo\"": \""8%\""}",223170,0,"""Africa""" +2023-03-26,65022,5175,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1997.12,{},249923,1,"""North America""" +2024-09-09,65023,1302,"[\""Headphones\"", \""Tablet\""]",3296.89,{},151454,0,"""Africa""" +2024-07-30,65024,6222,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3931.49,{},286668,0,"""North America""" +2024-06-12,65025,9752,"[\""Headphones\""]",2117.1,{},226810,1,"""South America""" +2023-09-22,65026,8019,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3205.0,{},113343,0,"""Asia""" +2023-02-03,65027,2810,"[\""Laptop\"", \""Keyboard\""]",236.63,{},98951,0,"""Europe""" +2023-06-15,65028,9532,"[\""Keyboard\""]",2092.18,{},135855,0,"""Africa""" +2024-04-26,65029,1799,"[\""Phone\""]",4190.62,{},269186,1,"""North America""" +2024-06-28,65030,5345,"[\""Charger\""]",665.14,"{\""seasonal\"": \""25%\""}",32150,1,"""North America""" +2023-12-23,65031,6574,"[\""Monitor\""]",3736.57,"{\""seasonal\"": \""6%\""}",222023,0,"""Asia""" +2024-11-07,65032,8295,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3046.76,{},167422,1,"""North America""" +2024-09-07,65033,2679,"[\""Laptop\"", \""Keyboard\""]",4186.16,"{\""promo\"": \""27%\""}",36414,1,"""South America""" +2023-06-28,65034,5707,"[\""Wireless Mouse\""]",2905.06,{},264346,0,"""Europe""" +2023-09-14,65035,8251,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2991.9,"{\""loyalty\"": \""24%\""}",224892,0,"""South America""" +2024-03-10,65036,7769,"[\""Laptop\""]",3327.05,"{\""promo\"": \""16%\""}",238989,1,"""Africa""" +2023-07-26,65037,7176,"[\""Wireless Mouse\""]",4111.59,"{\""promo\"": \""12%\""}",243130,1,"""North America""" +2024-07-10,65038,4986,"[\""Charger\"", \""Headphones\""]",1379.75,"{\"": \""30%\""}",147597,1,"""Europe""" +2024-09-03,65039,9451,"[\""Monitor\"", \""Charger\""]",725.09,{},106046,0,"""Africa""" +2023-11-07,65040,8489,"[\""Tablet\""]",3059.87,{},62274,0,"""North America""" +2024-01-22,65041,4703,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2969.55,{},269363,0,"""South America""" +2024-05-07,65042,6518,"[\""Phone\"", \""Headphones\""]",3345.63,"{\""seasonal\"": \""26%\""}",65346,0,"""North America""" +2024-12-13,65043,7294,"[\""Headphones\""]",4245.23,{},114474,1,"""South America""" +2023-08-18,65044,9363,"[\""Wireless Mouse\"", \""Keyboard\""]",1005.39,{},117733,0,"""North America""" +2024-05-10,65045,252,"[\""Keyboard\""]",2282.29,{},59752,1,"""Asia""" +2024-12-06,65046,5257,"[\""Phone\"", \""Monitor\""]",1922.04,{},92430,1,"""Africa""" +2023-06-25,65047,7986,"[\""Tablet\"", \""Headphones\""]",1181.84,{},90265,1,"""Europe""" +2024-08-02,65048,6630,"[\""Keyboard\""]",4775.78,"{\"": \""9%\""}",161923,0,"""Europe""" +2023-04-30,65049,9817,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2644.49,{},207154,1,"""Europe""" +2023-09-20,65050,3555,"[\""Laptop\""]",3009.62,"{\"": \""24%\""}",285911,1,"""Africa""" +2023-11-06,65051,1601,"[\""Keyboard\"", \""Charger\""]",2026.79,"{\"": \""22%\""}",248312,0,"""South America""" +2024-11-27,65052,7377,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",225.82,{},96764,1,"""North America""" +2024-01-11,65053,2998,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1769.22,"{\""loyalty\"": \""6%\""}",28698,0,"""North America""" +2023-05-02,65054,1216,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1551.75,{},74186,1,"""Asia""" +2023-01-08,65055,6110,"[\""Wireless Mouse\"", \""Laptop\""]",4479.59,{},145506,1,"""South America""" +2023-11-16,65056,6352,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3443.27,"{\""loyalty\"": \""25%\""}",238767,1,"""Asia""" +2023-01-18,65057,2823,"[\""Tablet\""]",4806.98,"{\"": \""26%\""}",125187,0,"""Europe""" +2023-03-29,65058,7976,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1865.58,{},234236,0,"""North America""" +2023-06-01,65059,2852,"[\""Headphones\""]",1046.1,{},139345,1,"""Africa""" +2024-12-23,65060,1671,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2398.15,"{\""loyalty\"": \""21%\""}",299410,1,"""Africa""" +2023-02-25,65061,2551,"[\""Monitor\"", \""Tablet\""]",2978.53,{},283509,1,"""Asia""" +2024-08-04,65062,2905,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",876.16,{},110179,1,"""South America""" +2023-07-19,65063,6017,"[\""Monitor\""]",4585.44,{},15941,1,"""South America""" +2023-07-02,65064,5397,"[\""Tablet\"", \""Charger\""]",3354.72,"{\""seasonal\"": \""15%\""}",291078,1,"""Africa""" +2023-06-05,65065,8713,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1391.18,"{\"": \""14%\""}",220958,1,"""South America""" +2023-12-02,65066,2566,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4760.14,{},109487,1,"""Africa""" +2023-05-26,65067,600,"[\""Monitor\"", \""Tablet\""]",420.74,"{\""seasonal\"": \""14%\""}",20303,0,"""North America""" +2024-10-06,65068,3000,"[\""Wireless Mouse\"", \""Keyboard\""]",964.96,{},121092,0,"""North America""" +2024-11-04,65069,3611,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3026.35,{},99370,0,"""Europe""" +2023-04-01,65070,461,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3849.12,{},286408,1,"""South America""" +2023-05-22,65071,4312,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1282.9,"{\""promo\"": \""10%\""}",263588,1,"""North America""" +2024-02-11,65072,7112,"[\""Laptop\""]",1705.29,{},250533,0,"""South America""" +2023-12-29,65073,8828,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3647.54,{},201481,1,"""Europe""" +2023-02-08,65074,8284,"[\""Phone\""]",2529.33,"{\""loyalty\"": \""12%\""}",139806,1,"""Europe""" +2024-07-21,65075,2706,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1213.52,"{\""seasonal\"": \""13%\""}",110271,0,"""Asia""" +2023-11-25,65076,5076,"[\""Monitor\"", \""Tablet\""]",2378.05,{},228773,1,"""Europe""" +2023-05-29,65077,6390,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4494.0,"{\""seasonal\"": \""21%\""}",204804,0,"""Africa""" +2024-05-20,65078,1168,"[\""Phone\""]",448.69,"{\""seasonal\"": \""27%\""}",171834,1,"""South America""" +2024-08-06,65079,14,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",511.51,"{\""seasonal\"": \""21%\""}",162784,1,"""Europe""" +2023-03-26,65080,1980,"[\""Phone\""]",3538.07,{},109647,1,"""Europe""" +2024-09-11,65081,122,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2208.0,"{\"": \""26%\""}",257300,0,"""Europe""" +2023-11-02,65082,2822,"[\""Charger\""]",582.64,"{\""loyalty\"": \""18%\""}",27388,1,"""Asia""" +2023-01-28,65083,1018,"[\""Wireless Mouse\"", \""Monitor\""]",1441.96,{},246436,1,"""Asia""" +2024-07-11,65084,6981,"[\""Laptop\""]",1661.43,{},71337,1,"""Asia""" +2023-04-07,65085,289,"[\""Tablet\""]",1675.69,"{\""promo\"": \""5%\""}",176234,0,"""Africa""" +2024-05-06,65086,9248,"[\""Keyboard\""]",562.1,{},29248,0,"""Asia""" +2024-05-05,65087,1122,"[\""Charger\""]",4075.83,{},199773,0,"""Europe""" +2023-07-29,65088,6946,"[\""Charger\""]",783.65,{},11038,0,"""Europe""" +2024-06-05,65089,6560,"[\""Monitor\"", \""Keyboard\""]",3048.96,"{\""promo\"": \""20%\""}",63600,1,"""South America""" +2024-03-07,65090,6592,"[\""Keyboard\""]",3082.58,{},220051,1,"""Africa""" +2023-08-06,65091,7875,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4527.21,{},141217,1,"""South America""" +2024-07-06,65092,7832,"[\""Keyboard\""]",1833.87,"{\""loyalty\"": \""8%\""}",178516,1,"""Europe""" +2023-02-15,65093,3655,"[\""Charger\""]",1984.73,{},273457,0,"""Asia""" +2024-11-10,65094,6228,"[\""Phone\"", \""Headphones\""]",3437.17,{},83642,1,"""North America""" +2023-07-28,65095,339,"[\""Phone\"", \""Keyboard\""]",2241.2,"{\""seasonal\"": \""23%\""}",253134,1,"""South America""" +2024-05-22,65096,4041,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3485.18,{},101522,1,"""South America""" +2024-02-07,65097,4697,"[\""Tablet\""]",2009.88,"{\"": \""5%\""}",157674,0,"""Africa""" +2023-02-27,65098,1155,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4029.07,{},97520,0,"""Asia""" +2023-12-31,65099,6535,"[\""Laptop\"", \""Phone\""]",3650.8,"{\""loyalty\"": \""18%\""}",56948,1,"""Europe""" +2024-07-30,65100,377,"[\""Keyboard\"", \""Tablet\""]",4314.93,"{\"": \""9%\""}",54899,1,"""Asia""" +2024-01-30,65101,8159,"[\""Tablet\""]",4281.95,{},78993,0,"""South America""" +2023-01-08,65102,3553,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1197.36,{},13121,1,"""South America""" +2023-03-07,65103,7863,"[\""Headphones\""]",4946.22,"{\""loyalty\"": \""13%\""}",143345,1,"""Europe""" +2023-12-30,65104,8969,"[\""Monitor\""]",2049.97,"{\"": \""13%\""}",73868,0,"""North America""" +2023-06-01,65105,9160,"[\""Wireless Mouse\"", \""Tablet\""]",4024.19,{},156929,1,"""South America""" +2024-09-08,65106,5366,"[\""Tablet\""]",4199.33,"{\""seasonal\"": \""17%\""}",28941,0,"""Europe""" +2023-12-19,65107,9174,"[\""Charger\"", \""Laptop\""]",1825.12,{},133065,0,"""North America""" +2023-05-16,65108,9338,"[\""Headphones\""]",4285.88,"{\""loyalty\"": \""11%\""}",172514,1,"""South America""" +2023-09-06,65109,5470,"[\""Tablet\""]",4303.94,"{\""promo\"": \""11%\""}",58364,0,"""Europe""" +2023-12-31,65110,1737,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1049.18,{},202127,0,"""South America""" +2023-12-02,65111,1635,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1158.24,"{\""loyalty\"": \""14%\""}",6033,0,"""Africa""" +2024-07-14,65112,5703,"[\""Keyboard\""]",4595.35,{},294826,1,"""Asia""" +2023-07-09,65113,3732,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2125.74,{},139624,0,"""Asia""" +2023-10-21,65114,9968,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1085.95,{},178173,0,"""North America""" +2024-04-06,65115,4325,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2783.98,{},257687,0,"""Asia""" +2024-12-21,65116,2070,"[\""Wireless Mouse\"", \""Charger\""]",4263.0,{},39395,1,"""Africa""" +2024-01-09,65117,555,"[\""Monitor\"", \""Headphones\""]",2471.75,"{\""promo\"": \""10%\""}",3402,0,"""Africa""" +2023-06-28,65118,461,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",501.48,"{\""promo\"": \""10%\""}",174329,0,"""Africa""" +2023-09-20,65119,3393,"[\""Charger\""]",4781.49,{},135429,1,"""North America""" +2024-12-03,65120,4312,"[\""Monitor\"", \""Phone\""]",1846.97,{},121042,0,"""Europe""" +2024-09-21,65121,3199,"[\""Laptop\"", \""Headphones\""]",4085.62,"{\"": \""22%\""}",248650,0,"""Europe""" +2023-01-24,65122,5607,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1727.03,{},87190,1,"""Africa""" +2024-01-11,65123,3875,"[\""Monitor\""]",2138.15,"{\""loyalty\"": \""9%\""}",184628,0,"""North America""" +2023-09-20,65124,8056,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2938.77,{},290816,1,"""Europe""" +2024-01-18,65125,1507,"[\""Keyboard\"", \""Laptop\""]",2344.38,{},89034,0,"""Asia""" +2023-12-10,65126,5360,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4867.85,{},170189,1,"""Africa""" +2023-07-10,65127,6559,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",986.88,{},33400,0,"""South America""" +2023-05-28,65128,2246,"[\""Monitor\"", \""Headphones\""]",770.63,"{\""loyalty\"": \""6%\""}",144836,1,"""North America""" +2023-06-06,65129,5889,"[\""Monitor\"", \""Phone\""]",1541.19,{},55860,0,"""Asia""" +2023-07-11,65130,2864,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1588.91,"{\""loyalty\"": \""20%\""}",196143,1,"""Europe""" +2024-08-01,65131,4175,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3752.3,{},291506,1,"""Asia""" +2024-01-19,65132,4236,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1192.36,"{\""seasonal\"": \""22%\""}",179505,0,"""Asia""" +2023-05-09,65133,2122,"[\""Headphones\"", \""Phone\""]",3860.2,"{\""promo\"": \""30%\""}",267927,0,"""Africa""" +2024-09-12,65134,2381,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1162.41,"{\""loyalty\"": \""27%\""}",118878,0,"""Asia""" +2023-06-19,65135,9781,"[\""Headphones\"", \""Keyboard\""]",953.79,"{\""seasonal\"": \""27%\""}",266985,0,"""North America""" +2024-06-29,65136,1661,"[\""Headphones\""]",3595.99,{},186460,1,"""Europe""" +2023-06-09,65137,9171,"[\""Phone\""]",4452.04,{},37503,0,"""Asia""" +2024-05-15,65138,8841,"[\""Charger\"", \""Keyboard\""]",3587.05,"{\""loyalty\"": \""28%\""}",232309,1,"""Europe""" +2024-02-17,65139,1640,"[\""Laptop\"", \""Charger\""]",163.36,"{\"": \""6%\""}",140383,0,"""Asia""" +2023-04-25,65140,93,"[\""Headphones\"", \""Tablet\""]",3470.39,"{\"": \""26%\""}",171587,0,"""South America""" +2024-12-22,65141,8711,"[\""Keyboard\""]",1261.7,{},86322,1,"""Europe""" +2024-08-08,65142,1635,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3231.48,"{\"": \""25%\""}",291773,1,"""Asia""" +2023-12-16,65143,337,"[\""Monitor\"", \""Laptop\""]",487.59,"{\""promo\"": \""29%\""}",213616,1,"""Africa""" +2023-05-06,65144,6467,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4724.9,{},67045,1,"""Africa""" +2024-10-14,65145,4158,"[\""Monitor\""]",3287.32,{},14673,0,"""North America""" +2023-03-17,65146,1658,"[\""Tablet\"", \""Wireless Mouse\""]",376.62,"{\""promo\"": \""25%\""}",27734,0,"""Europe""" +2024-06-06,65147,7221,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",318.32,"{\""loyalty\"": \""30%\""}",64159,0,"""Asia""" +2024-05-24,65148,4361,"[\""Charger\""]",2375.65,"{\"": \""6%\""}",204676,0,"""Asia""" +2023-05-31,65149,3315,"[\""Phone\""]",1686.42,{},12301,1,"""Africa""" +2023-05-22,65150,1646,"[\""Phone\""]",2303.89,"{\""seasonal\"": \""29%\""}",245362,0,"""Asia""" +2023-08-22,65151,5217,"[\""Keyboard\""]",2325.79,{},144966,0,"""Asia""" +2023-12-10,65152,6120,"[\""Headphones\"", \""Laptop\""]",2761.62,"{\""promo\"": \""22%\""}",123816,1,"""South America""" +2023-04-11,65153,2229,"[\""Keyboard\""]",850.18,"{\""promo\"": \""30%\""}",122315,1,"""South America""" +2023-04-04,65154,7630,"[\""Headphones\""]",3090.31,{},202385,1,"""Africa""" +2024-05-14,65155,3086,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2940.65,"{\""promo\"": \""18%\""}",12466,0,"""North America""" +2023-11-29,65156,9927,"[\""Laptop\""]",972.53,{},159064,1,"""Europe""" +2024-05-19,65157,4328,"[\""Monitor\"", \""Keyboard\""]",2871.24,"{\""seasonal\"": \""23%\""}",106862,1,"""Europe""" +2024-05-24,65158,6083,"[\""Wireless Mouse\"", \""Tablet\""]",4863.37,"{\"": \""10%\""}",277094,1,"""Africa""" +2023-05-17,65159,6038,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4336.15,"{\""seasonal\"": \""8%\""}",99864,1,"""Asia""" +2023-02-06,65160,8873,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3531.47,{},70159,0,"""Asia""" +2023-05-20,65161,6234,"[\""Monitor\""]",1066.04,"{\"": \""10%\""}",87931,0,"""Europe""" +2023-08-18,65162,993,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",692.81,"{\""loyalty\"": \""25%\""}",28523,1,"""Asia""" +2023-04-17,65163,3122,"[\""Keyboard\"", \""Charger\""]",3173.3,"{\""loyalty\"": \""27%\""}",100472,0,"""South America""" +2024-07-24,65164,1961,"[\""Monitor\"", \""Phone\""]",987.28,{},89109,0,"""Africa""" +2024-02-08,65165,8833,"[\""Keyboard\"", \""Laptop\""]",3482.61,"{\"": \""6%\""}",108846,0,"""Asia""" +2024-06-25,65166,5369,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3459.52,"{\""seasonal\"": \""21%\""}",104685,0,"""Europe""" +2023-10-09,65167,3502,"[\""Keyboard\""]",4766.63,"{\""promo\"": \""30%\""}",145442,1,"""South America""" +2024-09-25,65168,5525,"[\""Laptop\""]",1872.32,{},58060,0,"""Europe""" +2023-05-14,65169,8930,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4911.34,"{\""loyalty\"": \""11%\""}",155382,0,"""Africa""" +2024-03-13,65170,5254,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4149.85,{},211288,1,"""South America""" +2024-02-23,65171,5062,"[\""Tablet\""]",3854.75,"{\""seasonal\"": \""28%\""}",154256,1,"""Asia""" +2023-09-03,65172,7706,"[\""Phone\""]",976.95,{},274994,0,"""Asia""" +2024-01-22,65173,3307,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",52.1,{},6416,1,"""Asia""" +2024-05-02,65174,5472,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",795.41,"{\""promo\"": \""12%\""}",161368,1,"""Africa""" +2024-07-07,65175,2586,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2178.02,{},259342,1,"""North America""" +2024-02-08,65176,6163,"[\""Wireless Mouse\""]",1511.59,{},152796,1,"""Europe""" +2024-04-30,65177,7009,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4138.15,{},82639,0,"""South America""" +2023-06-05,65178,5204,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",991.63,"{\""loyalty\"": \""26%\""}",81119,0,"""Asia""" +2024-12-17,65179,9711,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3166.91,{},122322,0,"""Africa""" +2024-02-17,65180,5633,"[\""Wireless Mouse\""]",281.08,{},181937,0,"""Asia""" +2024-01-25,65181,7839,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3366.64,"{\"": \""30%\""}",76512,1,"""Asia""" +2023-07-03,65182,8506,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2729.31,{},276629,0,"""South America""" +2023-11-14,65183,484,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3858.03,"{\""promo\"": \""15%\""}",68225,0,"""North America""" +2023-11-19,65184,6603,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2627.89,"{\""promo\"": \""9%\""}",122911,0,"""Africa""" +2023-02-24,65185,3626,"[\""Wireless Mouse\""]",3329.77,"{\""seasonal\"": \""6%\""}",26401,0,"""Asia""" +2024-06-05,65186,3234,"[\""Monitor\"", \""Laptop\""]",1198.14,"{\""seasonal\"": \""23%\""}",197726,1,"""South America""" +2023-09-23,65187,5190,"[\""Charger\"", \""Wireless Mouse\""]",1486.64,"{\""seasonal\"": \""26%\""}",205848,0,"""Asia""" +2024-09-10,65188,3453,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1175.95,"{\"": \""26%\""}",104359,0,"""Africa""" +2023-12-10,65189,400,"[\""Keyboard\""]",4849.1,{},182349,0,"""Africa""" +2024-07-29,65190,6081,"[\""Laptop\"", \""Monitor\""]",2178.94,"{\""promo\"": \""5%\""}",103794,1,"""Europe""" +2023-08-30,65191,2438,"[\""Phone\""]",3132.97,{},196413,0,"""Africa""" +2023-02-08,65192,4540,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4852.87,{},124174,1,"""Europe""" +2023-02-14,65193,8519,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4268.61,{},84899,0,"""Asia""" +2023-09-06,65194,9815,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3528.72,{},75294,1,"""Africa""" +2024-12-30,65195,8665,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3095.15,"{\"": \""27%\""}",94862,1,"""Africa""" +2024-09-28,65196,7301,"[\""Phone\"", \""Headphones\""]",994.71,{},294503,1,"""North America""" +2024-04-23,65197,3557,"[\""Laptop\""]",2055.69,"{\""loyalty\"": \""21%\""}",88177,1,"""Europe""" +2023-11-04,65198,5496,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3620.67,{},75826,0,"""Africa""" +2024-08-07,65199,918,"[\""Laptop\""]",1011.45,"{\""promo\"": \""9%\""}",38346,1,"""Africa""" +2023-12-07,65200,5991,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1996.54,"{\""promo\"": \""5%\""}",13683,0,"""North America""" +2023-12-29,65201,2494,"[\""Laptop\""]",3988.01,{},15358,0,"""North America""" +2024-05-07,65202,1179,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",327.56,"{\""promo\"": \""26%\""}",209021,1,"""North America""" +2024-06-22,65203,8192,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1604.64,{},56749,1,"""Europe""" +2023-01-07,65204,1757,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1693.09,{},157961,0,"""Europe""" +2024-09-08,65205,8500,"[\""Phone\"", \""Tablet\""]",864.59,{},144853,0,"""Africa""" +2024-02-20,65206,4470,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1374.94,"{\""loyalty\"": \""21%\""}",222491,1,"""Africa""" +2024-11-07,65207,8921,"[\""Tablet\""]",1489.78,{},295520,1,"""Asia""" +2023-01-24,65208,5895,"[\""Phone\""]",3047.45,{},164030,1,"""Europe""" +2023-01-25,65209,4665,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",137.55,"{\""seasonal\"": \""23%\""}",108610,0,"""Europe""" +2023-01-22,65210,3186,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4146.25,"{\""seasonal\"": \""17%\""}",248379,1,"""Europe""" +2024-09-05,65211,1113,"[\""Phone\""]",2535.66,"{\"": \""18%\""}",14317,0,"""Africa""" +2024-01-29,65212,5378,"[\""Tablet\"", \""Wireless Mouse\""]",3391.88,{},21295,0,"""North America""" +2024-07-08,65213,3618,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2544.72,"{\""loyalty\"": \""28%\""}",294460,1,"""North America""" +2024-09-10,65214,7405,"[\""Laptop\"", \""Keyboard\""]",949.28,{},132203,1,"""South America""" +2023-08-09,65215,6219,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2964.83,"{\""seasonal\"": \""14%\""}",70564,0,"""Africa""" +2024-05-06,65216,4243,"[\""Charger\"", \""Phone\""]",2919.33,"{\"": \""29%\""}",239023,0,"""North America""" +2024-03-14,65217,4133,"[\""Charger\"", \""Tablet\""]",1659.67,"{\""loyalty\"": \""21%\""}",11828,1,"""South America""" +2023-07-01,65218,4539,"[\""Wireless Mouse\""]",2054.26,{},119680,0,"""North America""" +2024-06-01,65219,1235,"[\""Phone\""]",1791.06,"{\""promo\"": \""5%\""}",165995,1,"""Asia""" +2024-03-20,65220,3330,"[\""Charger\"", \""Laptop\""]",3640.03,"{\"": \""16%\""}",102622,0,"""North America""" +2024-12-06,65221,8210,"[\""Keyboard\"", \""Phone\""]",102.77,"{\""promo\"": \""5%\""}",254990,0,"""South America""" +2023-07-30,65222,5167,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2348.03,{},211294,0,"""Africa""" +2023-01-17,65223,4871,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2347.72,"{\""seasonal\"": \""23%\""}",10406,1,"""Asia""" +2023-07-21,65224,1549,"[\""Keyboard\"", \""Laptop\""]",3282.87,"{\""loyalty\"": \""7%\""}",288624,0,"""Europe""" +2024-06-23,65225,3492,"[\""Tablet\""]",4599.14,{},262656,0,"""Europe""" +2024-03-21,65226,183,"[\""Keyboard\"", \""Tablet\""]",2892.03,{},39179,1,"""Africa""" +2024-05-26,65227,1116,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1304.79,"{\"": \""21%\""}",297004,0,"""South America""" +2024-09-15,65228,5657,"[\""Laptop\"", \""Wireless Mouse\""]",390.57,{},136209,1,"""Europe""" +2024-05-18,65229,3141,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1204.86,"{\""seasonal\"": \""12%\""}",258227,1,"""Europe""" +2023-11-23,65230,118,"[\""Charger\""]",490.79,{},150918,0,"""Asia""" +2024-11-19,65231,6412,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1067.7,{},25559,1,"""North America""" +2024-10-27,65232,5137,"[\""Monitor\"", \""Laptop\""]",3904.96,"{\""promo\"": \""13%\""}",270952,0,"""Africa""" +2024-01-25,65233,6045,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4311.33,"{\""loyalty\"": \""22%\""}",204013,0,"""North America""" +2023-08-12,65234,5676,"[\""Laptop\""]",4996.45,{},21477,1,"""North America""" +2024-04-15,65235,191,"[\""Headphones\""]",3546.82,"{\""seasonal\"": \""18%\""}",291566,1,"""Asia""" +2024-05-26,65236,5822,"[\""Keyboard\"", \""Headphones\""]",2116.43,{},18839,0,"""Asia""" +2024-05-21,65237,4393,"[\""Phone\"", \""Charger\""]",1363.81,"{\""seasonal\"": \""15%\""}",10243,0,"""Africa""" +2024-09-18,65238,1072,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4925.72,"{\""seasonal\"": \""28%\""}",200100,1,"""Africa""" +2024-03-25,65239,1418,"[\""Laptop\""]",2805.47,{},16232,1,"""South America""" +2024-05-28,65240,8305,"[\""Monitor\"", \""Charger\""]",180.78,{},1881,0,"""North America""" +2024-08-06,65241,4461,"[\""Laptop\""]",1640.27,"{\"": \""8%\""}",57297,1,"""Africa""" +2024-09-16,65242,9577,"[\""Monitor\"", \""Laptop\""]",1875.68,"{\""seasonal\"": \""20%\""}",125771,0,"""Africa""" +2023-07-04,65243,9009,"[\""Tablet\""]",355.55,{},286398,0,"""Asia""" +2023-10-26,65244,3498,"[\""Laptop\"", \""Keyboard\""]",708.26,"{\"": \""10%\""}",255709,0,"""Europe""" +2023-06-10,65245,7176,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2854.86,{},245025,0,"""Africa""" +2024-11-30,65246,1639,"[\""Laptop\""]",2663.42,{},122899,0,"""South America""" +2023-10-28,65247,5145,"[\""Monitor\""]",1420.13,"{\""loyalty\"": \""25%\""}",110056,1,"""South America""" +2023-09-18,65248,9532,"[\""Monitor\"", \""Phone\""]",850.14,"{\""promo\"": \""27%\""}",188930,1,"""South America""" +2024-05-16,65249,5803,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4964.23,{},85903,1,"""Asia""" +2024-04-15,65250,1848,"[\""Tablet\""]",2633.23,{},232243,1,"""Asia""" +2023-02-09,65251,7362,"[\""Monitor\""]",2786.91,"{\""promo\"": \""10%\""}",92506,1,"""Asia""" +2023-01-06,65252,9596,"[\""Tablet\"", \""Wireless Mouse\""]",1447.88,"{\""seasonal\"": \""15%\""}",139162,1,"""Europe""" +2024-05-07,65253,7780,"[\""Keyboard\""]",1808.07,{},75254,0,"""South America""" +2024-11-28,65254,9812,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2534.37,"{\""loyalty\"": \""19%\""}",110990,1,"""South America""" +2023-01-01,65255,4571,"[\""Tablet\""]",365.31,{},214043,1,"""Asia""" +2024-06-30,65256,3644,"[\""Charger\"", \""Phone\"", \""Monitor\""]",613.18,{},15826,1,"""South America""" +2023-06-01,65257,1615,"[\""Monitor\""]",1203.61,"{\""promo\"": \""6%\""}",83915,1,"""Europe""" +2024-09-12,65258,450,"[\""Headphones\""]",748.63,{},147732,1,"""South America""" +2023-09-03,65259,8322,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2795.06,{},113126,0,"""Europe""" +2024-05-31,65260,9296,"[\""Keyboard\""]",4811.11,{},255583,0,"""Africa""" +2024-09-04,65261,659,"[\""Tablet\"", \""Charger\""]",2858.09,{},143637,0,"""South America""" +2024-04-09,65262,4123,"[\""Phone\"", \""Wireless Mouse\""]",1233.65,{},29871,0,"""Europe""" +2024-09-28,65263,1610,"[\""Keyboard\"", \""Wireless Mouse\""]",1431.11,"{\""seasonal\"": \""24%\""}",70325,1,"""North America""" +2023-07-20,65264,4828,"[\""Phone\""]",1732.18,{},99774,1,"""Europe""" +2023-10-18,65265,5181,"[\""Wireless Mouse\"", \""Monitor\""]",4248.79,{},101150,1,"""Africa""" +2023-07-01,65266,2836,"[\""Charger\""]",2422.2,"{\""promo\"": \""20%\""}",251146,0,"""South America""" +2024-06-20,65267,1540,"[\""Tablet\"", \""Phone\""]",1703.79,"{\""loyalty\"": \""20%\""}",219963,1,"""Africa""" +2024-01-08,65268,6549,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",742.23,{},180609,0,"""Asia""" +2024-04-16,65269,6624,"[\""Charger\"", \""Tablet\""]",4484.38,{},41143,0,"""Africa""" +2024-02-10,65270,3988,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2548.17,"{\""seasonal\"": \""25%\""}",281851,0,"""Europe""" +2023-05-30,65271,7019,"[\""Charger\"", \""Keyboard\""]",3361.55,"{\""seasonal\"": \""27%\""}",70508,0,"""Europe""" +2023-01-23,65272,4131,"[\""Monitor\"", \""Laptop\""]",2507.45,"{\"": \""23%\""}",149042,0,"""North America""" +2024-05-20,65273,4876,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2107.39,"{\"": \""21%\""}",180113,0,"""Europe""" +2024-01-16,65274,3739,"[\""Charger\""]",1322.55,"{\""loyalty\"": \""28%\""}",206993,1,"""Africa""" +2023-05-03,65275,3926,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2613.13,{},268078,0,"""Europe""" +2024-02-18,65276,4532,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1250.12,"{\""loyalty\"": \""14%\""}",74866,0,"""South America""" +2023-12-25,65277,1068,"[\""Charger\"", \""Wireless Mouse\""]",2972.7,"{\""promo\"": \""26%\""}",8860,0,"""Asia""" +2023-05-11,65278,4008,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4204.59,{},111556,0,"""Africa""" +2024-03-30,65279,8452,"[\""Phone\""]",1334.65,"{\"": \""20%\""}",144378,1,"""South America""" +2024-09-16,65280,662,"[\""Monitor\"", \""Wireless Mouse\""]",2810.35,"{\""promo\"": \""8%\""}",224736,0,"""Asia""" +2023-04-22,65281,1571,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4399.52,{},62482,0,"""Europe""" +2024-04-30,65282,9728,"[\""Phone\""]",2576.4,"{\""promo\"": \""22%\""}",22630,0,"""North America""" +2024-10-24,65283,4279,"[\""Laptop\"", \""Tablet\""]",1669.51,"{\""seasonal\"": \""6%\""}",133575,0,"""Africa""" +2024-11-17,65284,236,"[\""Keyboard\"", \""Charger\""]",3731.66,"{\""promo\"": \""17%\""}",39993,1,"""Africa""" +2023-01-04,65285,8054,"[\""Tablet\""]",2149.6,{},253712,1,"""Europe""" +2023-11-17,65286,9317,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3916.92,"{\""seasonal\"": \""19%\""}",95903,1,"""Europe""" +2023-05-26,65287,8311,"[\""Headphones\"", \""Phone\""]",652.15,"{\""promo\"": \""22%\""}",261406,0,"""North America""" +2023-04-07,65288,9333,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4235.92,{},260732,0,"""North America""" +2023-12-26,65289,2684,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2728.23,{},74621,0,"""South America""" +2024-02-10,65290,7834,"[\""Phone\"", \""Monitor\"", \""Charger\""]",481.96,{},185342,0,"""Africa""" +2024-10-19,65291,4611,"[\""Keyboard\"", \""Headphones\""]",847.85,{},158276,0,"""Africa""" +2024-10-19,65292,6301,"[\""Tablet\"", \""Wireless Mouse\""]",4034.65,{},259135,0,"""Africa""" +2023-12-22,65293,5218,"[\""Charger\"", \""Headphones\""]",147.77,"{\"": \""26%\""}",100250,0,"""Africa""" +2024-12-26,65294,1475,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2182.13,"{\""loyalty\"": \""15%\""}",131732,0,"""North America""" +2023-02-13,65295,3046,"[\""Phone\"", \""Headphones\""]",1230.96,{},26120,0,"""South America""" +2023-12-28,65296,8443,"[\""Charger\"", \""Keyboard\""]",912.56,{},254991,0,"""South America""" +2023-10-23,65297,4108,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4827.72,{},203323,0,"""Europe""" +2024-10-13,65298,1564,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1477.18,"{\"": \""19%\""}",44034,1,"""South America""" +2023-04-04,65299,4047,"[\""Phone\"", \""Wireless Mouse\""]",2495.96,"{\""loyalty\"": \""28%\""}",89947,0,"""Asia""" +2023-10-25,65300,6824,"[\""Monitor\"", \""Tablet\""]",912.24,{},85260,0,"""South America""" +2024-02-17,65301,5074,"[\""Keyboard\""]",932.01,"{\""seasonal\"": \""5%\""}",32562,1,"""Asia""" +2024-10-10,65302,2572,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3680.21,{},210199,0,"""Asia""" +2024-10-09,65303,2412,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",897.17,"{\""loyalty\"": \""6%\""}",90067,1,"""Asia""" +2023-12-06,65304,4871,"[\""Charger\"", \""Tablet\""]",1090.42,"{\""promo\"": \""23%\""}",173717,0,"""Africa""" +2024-08-22,65305,6744,"[\""Keyboard\"", \""Laptop\""]",2620.7,"{\""seasonal\"": \""21%\""}",190258,1,"""Africa""" +2023-04-17,65306,5923,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2761.15,"{\""promo\"": \""26%\""}",140762,1,"""North America""" +2024-03-04,65307,778,"[\""Monitor\"", \""Keyboard\""]",2766.44,{},195528,1,"""North America""" +2023-08-09,65308,556,"[\""Keyboard\"", \""Monitor\""]",984.49,"{\"": \""21%\""}",160026,1,"""North America""" +2023-11-21,65309,5170,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4176.61,"{\"": \""8%\""}",52310,1,"""Asia""" +2024-01-17,65310,8197,"[\""Wireless Mouse\"", \""Laptop\""]",1750.46,"{\""loyalty\"": \""26%\""}",139544,1,"""North America""" +2024-10-29,65311,2451,"[\""Keyboard\"", \""Laptop\""]",1510.39,"{\""loyalty\"": \""8%\""}",238616,1,"""Asia""" +2024-04-17,65312,3186,"[\""Wireless Mouse\""]",943.25,"{\""loyalty\"": \""18%\""}",208239,1,"""Asia""" +2023-06-28,65313,7767,"[\""Charger\""]",1342.77,{},281308,0,"""North America""" +2023-01-28,65314,1020,"[\""Keyboard\""]",2382.63,{},111095,1,"""Africa""" +2023-05-01,65315,9423,"[\""Monitor\""]",3148.0,"{\""loyalty\"": \""26%\""}",256625,0,"""North America""" +2023-08-31,65316,7097,"[\""Charger\"", \""Wireless Mouse\""]",1404.85,{},2909,0,"""South America""" +2024-12-27,65317,3672,"[\""Keyboard\""]",623.26,{},232939,0,"""Africa""" +2024-03-21,65318,5668,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",594.33,"{\"": \""26%\""}",81732,0,"""Africa""" +2024-04-23,65319,9588,"[\""Monitor\""]",4966.31,{},280609,0,"""Europe""" +2024-06-24,65320,4799,"[\""Laptop\""]",2610.81,{},175847,1,"""Europe""" +2023-10-09,65321,8994,"[\""Keyboard\""]",832.97,"{\""loyalty\"": \""24%\""}",51624,0,"""Europe""" +2024-07-06,65322,5866,"[\""Wireless Mouse\"", \""Laptop\""]",3620.05,{},289378,1,"""Asia""" +2024-01-01,65323,5165,"[\""Tablet\"", \""Wireless Mouse\""]",2270.53,{},43732,1,"""Europe""" +2024-09-03,65324,8117,"[\""Laptop\"", \""Monitor\""]",2574.66,"{\""loyalty\"": \""23%\""}",97088,1,"""Asia""" +2023-10-06,65325,7127,"[\""Tablet\""]",533.07,"{\""loyalty\"": \""20%\""}",122353,0,"""South America""" +2024-04-15,65326,5600,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2601.91,{},15874,1,"""Europe""" +2023-05-13,65327,5440,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1799.66,"{\""loyalty\"": \""25%\""}",32388,0,"""Africa""" +2024-04-26,65328,6411,"[\""Keyboard\"", \""Wireless Mouse\""]",1707.76,{},213141,0,"""South America""" +2023-01-24,65329,8918,"[\""Headphones\"", \""Monitor\""]",2872.4,{},137321,0,"""Africa""" +2024-09-16,65330,1073,"[\""Laptop\"", \""Headphones\""]",192.08,"{\"": \""30%\""}",252840,0,"""Africa""" +2024-08-04,65331,5083,"[\""Phone\""]",4362.92,{},65867,0,"""South America""" +2024-12-05,65332,6112,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",76.96,"{\""promo\"": \""25%\""}",26442,0,"""North America""" +2023-08-10,65333,3440,"[\""Monitor\"", \""Tablet\""]",2693.42,"{\""seasonal\"": \""6%\""}",47886,1,"""Africa""" +2023-07-21,65334,97,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4746.81,"{\""seasonal\"": \""24%\""}",246295,1,"""Europe""" +2023-03-26,65335,5831,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4405.78,"{\""promo\"": \""23%\""}",87892,0,"""South America""" +2024-02-28,65336,6310,"[\""Keyboard\"", \""Wireless Mouse\""]",863.2,{},196747,0,"""Asia""" +2024-11-20,65337,4410,"[\""Headphones\"", \""Monitor\""]",1035.96,"{\""seasonal\"": \""11%\""}",263857,1,"""South America""" +2024-07-20,65338,2798,"[\""Keyboard\"", \""Laptop\""]",3398.72,"{\"": \""10%\""}",174703,1,"""Africa""" +2024-12-11,65339,237,"[\""Laptop\"", \""Charger\""]",1524.32,"{\""seasonal\"": \""29%\""}",231942,0,"""Africa""" +2023-09-04,65340,4025,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",684.96,{},277886,1,"""North America""" +2023-08-03,65341,4392,"[\""Monitor\""]",3657.01,"{\"": \""5%\""}",184819,0,"""Asia""" +2023-12-18,65342,969,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",811.92,{},54018,0,"""Europe""" +2023-02-28,65343,6701,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4126.71,"{\""seasonal\"": \""5%\""}",226341,0,"""South America""" +2024-01-22,65344,3498,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4602.91,{},133713,1,"""Europe""" +2023-01-04,65345,3016,"[\""Charger\""]",2174.55,{},293661,0,"""South America""" +2024-02-15,65346,5750,"[\""Laptop\""]",1755.52,{},238852,1,"""Europe""" +2024-04-05,65347,7793,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2224.12,{},184022,0,"""North America""" +2023-02-15,65348,7920,"[\""Headphones\""]",1946.87,{},168912,1,"""South America""" +2023-11-16,65349,1561,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1302.85,"{\""promo\"": \""15%\""}",148615,0,"""North America""" +2023-10-25,65350,4470,"[\""Charger\"", \""Wireless Mouse\""]",4142.56,"{\""loyalty\"": \""28%\""}",171575,0,"""Africa""" +2024-04-22,65351,7541,"[\""Monitor\"", \""Charger\""]",733.75,{},111485,0,"""Asia""" +2023-09-20,65352,2484,"[\""Tablet\"", \""Keyboard\""]",2268.82,{},139603,1,"""South America""" +2023-01-01,65353,8159,"[\""Monitor\"", \""Phone\""]",4521.28,"{\""loyalty\"": \""25%\""}",113750,1,"""Africa""" +2024-01-26,65354,8808,"[\""Charger\""]",1815.06,{},48330,1,"""Africa""" +2023-09-09,65355,9265,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2872.06,"{\""loyalty\"": \""27%\""}",64894,1,"""Africa""" +2023-05-09,65356,7081,"[\""Laptop\"", \""Headphones\""]",4747.03,{},177285,1,"""Africa""" +2023-04-16,65357,3141,"[\""Charger\"", \""Tablet\""]",3224.1,{},15046,1,"""Europe""" +2024-06-22,65358,6505,"[\""Phone\""]",3790.82,{},18439,1,"""Europe""" +2024-08-22,65359,9389,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2056.6,"{\""promo\"": \""11%\""}",65365,1,"""Asia""" +2023-12-10,65360,3975,"[\""Monitor\""]",3978.83,"{\""seasonal\"": \""10%\""}",91418,1,"""Africa""" +2023-05-04,65361,3002,"[\""Headphones\""]",428.95,{},15757,1,"""Europe""" +2024-05-07,65362,3467,"[\""Laptop\""]",4969.35,{},6622,0,"""South America""" +2024-09-20,65363,778,"[\""Laptop\"", \""Charger\""]",2136.94,"{\"": \""23%\""}",287329,0,"""Asia""" +2023-09-11,65364,9046,"[\""Headphones\"", \""Phone\""]",4680.05,{},88228,1,"""Europe""" +2023-10-10,65365,4921,"[\""Keyboard\"", \""Tablet\""]",4252.95,{},214307,0,"""North America""" +2023-11-22,65366,9226,"[\""Charger\""]",3308.23,{},176364,0,"""Africa""" +2024-02-19,65367,7326,"[\""Charger\"", \""Tablet\""]",2233.28,{},214798,0,"""Africa""" +2024-09-27,65368,1621,"[\""Charger\""]",1932.64,{},56400,0,"""North America""" +2023-10-14,65369,8433,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3063.84,"{\"": \""11%\""}",216455,1,"""Europe""" +2023-06-17,65370,9113,"[\""Phone\"", \""Wireless Mouse\""]",753.07,{},269485,0,"""North America""" +2023-07-23,65371,4675,"[\""Tablet\""]",946.91,"{\"": \""12%\""}",154496,1,"""South America""" +2024-03-19,65372,6859,"[\""Phone\"", \""Charger\""]",1887.01,"{\"": \""19%\""}",217203,1,"""Africa""" +2023-09-25,65373,8076,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",924.0,{},211525,1,"""South America""" +2024-03-25,65374,7251,"[\""Tablet\""]",438.44,"{\"": \""12%\""}",164859,1,"""Europe""" +2023-08-31,65375,2236,"[\""Phone\"", \""Monitor\""]",236.87,"{\""seasonal\"": \""12%\""}",280482,1,"""South America""" +2024-03-08,65376,5000,"[\""Phone\""]",1233.01,{},91411,0,"""North America""" +2023-03-14,65377,1916,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1302.12,"{\"": \""24%\""}",87380,0,"""Europe""" +2023-03-27,65378,7417,"[\""Headphones\""]",4032.92,{},145098,1,"""Europe""" +2023-10-05,65379,4634,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1168.0,{},34966,1,"""Asia""" +2023-12-11,65380,8337,"[\""Tablet\""]",2972.44,{},156122,1,"""South America""" +2024-07-07,65381,6521,"[\""Tablet\""]",1875.18,{},216199,1,"""South America""" +2024-08-19,65382,9482,"[\""Charger\""]",293.31,"{\""promo\"": \""9%\""}",4830,0,"""Europe""" +2023-01-23,65383,1619,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1804.37,"{\""promo\"": \""26%\""}",239907,1,"""Europe""" +2024-11-18,65384,694,"[\""Headphones\"", \""Phone\""]",4014.95,"{\""seasonal\"": \""30%\""}",249602,1,"""North America""" +2023-05-25,65385,3097,"[\""Wireless Mouse\""]",2590.58,{},87080,0,"""North America""" +2023-09-05,65386,9758,"[\""Headphones\""]",2065.14,{},33543,0,"""Asia""" +2024-05-04,65387,1016,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3831.01,{},73551,1,"""Asia""" +2024-03-02,65388,6414,"[\""Tablet\"", \""Headphones\""]",737.85,{},257669,0,"""Africa""" +2023-08-15,65389,3383,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2208.67,"{\""loyalty\"": \""15%\""}",160342,0,"""South America""" +2023-10-25,65390,7692,"[\""Headphones\""]",3749.94,{},117973,1,"""North America""" +2023-04-04,65391,8646,"[\""Tablet\"", \""Charger\""]",272.9,{},241982,1,"""North America""" +2023-03-23,65392,351,"[\""Keyboard\""]",1260.27,"{\""seasonal\"": \""15%\""}",78937,1,"""Africa""" +2024-08-26,65393,380,"[\""Headphones\""]",2156.29,"{\""seasonal\"": \""11%\""}",99896,1,"""Europe""" +2023-01-04,65394,8198,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4541.66,{},237230,1,"""Europe""" +2024-03-15,65395,904,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3759.39,"{\""seasonal\"": \""27%\""}",2531,0,"""Europe""" +2023-01-01,65396,1779,"[\""Monitor\"", \""Headphones\""]",1446.3,"{\""seasonal\"": \""30%\""}",160816,0,"""South America""" +2024-12-07,65397,3651,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1976.77,"{\""promo\"": \""18%\""}",58407,1,"""South America""" +2024-05-04,65398,4388,"[\""Tablet\"", \""Headphones\""]",4584.71,"{\"": \""26%\""}",215884,1,"""Africa""" +2023-06-27,65399,756,"[\""Tablet\""]",4573.26,"{\""promo\"": \""13%\""}",218168,1,"""Europe""" +2023-04-26,65400,3945,"[\""Keyboard\""]",3603.24,{},153406,0,"""Asia""" +2024-08-05,65401,253,"[\""Monitor\"", \""Phone\""]",3777.32,"{\"": \""5%\""}",176083,0,"""Europe""" +2023-02-18,65402,4011,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3896.14,"{\""promo\"": \""22%\""}",216880,1,"""Europe""" +2024-07-03,65403,3762,"[\""Laptop\""]",1204.6,"{\""promo\"": \""10%\""}",28090,0,"""North America""" +2023-05-12,65404,3127,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1704.77,{},155640,0,"""North America""" +2023-01-01,65405,2651,"[\""Tablet\"", \""Keyboard\""]",1030.47,"{\""promo\"": \""12%\""}",149646,0,"""Africa""" +2023-12-18,65406,7149,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3890.6,"{\""loyalty\"": \""8%\""}",282729,1,"""North America""" +2023-02-07,65407,939,"[\""Charger\""]",3391.81,{},153191,1,"""Asia""" +2024-08-28,65408,3046,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3019.09,{},176318,1,"""Asia""" +2024-06-20,65409,8205,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2236.35,"{\"": \""5%\""}",216927,1,"""South America""" +2023-06-27,65410,6487,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4109.21,{},128681,0,"""South America""" +2024-05-16,65411,2716,"[\""Tablet\""]",3510.17,"{\"": \""20%\""}",204211,1,"""Europe""" +2024-12-18,65412,5038,"[\""Monitor\"", \""Phone\""]",3679.71,"{\"": \""7%\""}",66113,1,"""South America""" +2023-03-24,65413,805,"[\""Wireless Mouse\""]",218.46,{},137363,1,"""North America""" +2023-07-29,65414,1578,"[\""Laptop\"", \""Monitor\""]",3890.01,{},209824,1,"""South America""" +2024-09-26,65415,6890,"[\""Tablet\"", \""Phone\""]",2019.98,"{\"": \""16%\""}",184798,1,"""Europe""" +2024-11-12,65416,5606,"[\""Laptop\"", \""Charger\""]",1401.87,{},118543,0,"""South America""" +2023-10-02,65417,81,"[\""Keyboard\""]",3483.74,{},60376,1,"""South America""" +2023-12-09,65418,719,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",163.46,"{\""loyalty\"": \""24%\""}",244176,0,"""Europe""" +2023-03-17,65419,665,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2963.34,{},28260,1,"""Africa""" +2024-11-23,65420,3952,"[\""Phone\""]",4023.39,{},79264,1,"""Europe""" +2024-02-24,65421,2729,"[\""Tablet\"", \""Monitor\""]",3741.98,{},196726,1,"""Africa""" +2024-02-16,65422,612,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3119.87,{},67557,1,"""Asia""" +2023-09-21,65423,5345,"[\""Wireless Mouse\"", \""Headphones\""]",4921.58,"{\""promo\"": \""19%\""}",64023,1,"""Africa""" +2024-12-30,65424,6015,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2201.22,{},234725,0,"""Asia""" +2023-04-14,65425,1547,"[\""Headphones\"", \""Charger\""]",3193.83,{},20477,0,"""Africa""" +2023-12-27,65426,6435,"[\""Tablet\"", \""Wireless Mouse\""]",3746.58,"{\"": \""30%\""}",262195,0,"""Asia""" +2024-11-18,65427,9042,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1231.82,"{\""seasonal\"": \""13%\""}",22408,0,"""South America""" +2023-06-14,65428,5995,"[\""Headphones\""]",4953.05,"{\""loyalty\"": \""14%\""}",290594,0,"""North America""" +2024-08-01,65429,2365,"[\""Tablet\"", \""Laptop\""]",1808.06,{},175477,1,"""Africa""" +2024-05-11,65430,5005,"[\""Wireless Mouse\"", \""Monitor\""]",1567.28,"{\"": \""16%\""}",268265,1,"""Europe""" +2023-07-07,65431,4381,"[\""Keyboard\"", \""Charger\""]",2670.0,{},86562,0,"""Asia""" +2023-09-10,65432,319,"[\""Keyboard\""]",4050.05,"{\""loyalty\"": \""20%\""}",137822,0,"""South America""" +2024-10-29,65433,5000,"[\""Headphones\"", \""Monitor\""]",1968.14,{},31423,0,"""South America""" +2024-04-02,65434,6363,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3118.0,{},218256,0,"""South America""" +2024-06-03,65435,5784,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2451.36,{},295761,1,"""North America""" +2024-09-01,65436,3254,"[\""Keyboard\"", \""Monitor\""]",4109.05,"{\""loyalty\"": \""20%\""}",271859,0,"""Africa""" +2024-01-08,65437,7765,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",425.4,{},253476,1,"""Africa""" +2024-03-14,65438,3443,"[\""Keyboard\"", \""Laptop\""]",4358.72,"{\""promo\"": \""27%\""}",79943,0,"""North America""" +2024-09-22,65439,3997,"[\""Monitor\""]",4124.11,{},64471,0,"""North America""" +2023-12-06,65440,3748,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3589.33,{},189866,1,"""Africa""" +2023-04-26,65441,4728,"[\""Keyboard\""]",960.95,{},179517,1,"""Africa""" +2023-01-16,65442,3261,"[\""Charger\""]",2356.85,"{\""loyalty\"": \""18%\""}",212038,0,"""Africa""" +2024-02-12,65443,8404,"[\""Phone\""]",2309.07,{},287247,1,"""Africa""" +2023-06-08,65444,2280,"[\""Wireless Mouse\"", \""Keyboard\""]",866.24,{},78042,1,"""North America""" +2024-04-15,65445,9366,"[\""Tablet\"", \""Monitor\""]",1114.66,{},74188,0,"""Europe""" +2024-02-09,65446,1645,"[\""Headphones\""]",4672.84,{},156685,0,"""Europe""" +2023-07-22,65447,6681,"[\""Monitor\""]",3882.1,{},119464,1,"""South America""" +2023-03-18,65448,112,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",652.72,"{\""promo\"": \""28%\""}",46954,0,"""Asia""" +2024-10-16,65449,5978,"[\""Wireless Mouse\""]",1138.09,"{\""loyalty\"": \""27%\""}",237949,0,"""South America""" +2024-12-21,65450,1704,"[\""Monitor\""]",3217.19,{},249343,1,"""Asia""" +2024-07-09,65451,6944,"[\""Monitor\""]",3765.32,{},268776,0,"""North America""" +2024-11-06,65452,2167,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2129.26,"{\""loyalty\"": \""28%\""}",270120,1,"""Africa""" +2023-06-06,65453,2624,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",779.99,{},100286,1,"""Europe""" +2023-04-04,65454,4288,"[\""Monitor\"", \""Headphones\""]",4080.82,"{\""loyalty\"": \""21%\""}",123207,0,"""North America""" +2023-11-19,65455,7808,"[\""Tablet\"", \""Headphones\""]",997.11,"{\""loyalty\"": \""18%\""}",129313,0,"""Africa""" +2024-10-16,65456,6992,"[\""Keyboard\"", \""Wireless Mouse\""]",1707.22,{},183705,1,"""North America""" +2023-01-05,65457,4577,"[\""Phone\"", \""Headphones\""]",934.45,"{\""loyalty\"": \""9%\""}",141405,0,"""North America""" +2024-11-03,65458,6762,"[\""Keyboard\""]",2453.77,"{\""loyalty\"": \""6%\""}",242984,0,"""Africa""" +2023-04-01,65459,4995,"[\""Monitor\""]",4053.61,"{\""promo\"": \""24%\""}",117171,0,"""South America""" +2024-01-02,65460,5456,"[\""Monitor\"", \""Headphones\""]",4362.0,{},169520,0,"""Africa""" +2024-07-07,65461,748,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2854.19,"{\"": \""10%\""}",37837,0,"""North America""" +2023-11-25,65462,3942,"[\""Wireless Mouse\"", \""Monitor\""]",3650.39,"{\""loyalty\"": \""15%\""}",290092,0,"""Europe""" +2023-05-30,65463,4270,"[\""Headphones\""]",1913.25,{},128182,1,"""Asia""" +2023-05-18,65464,261,"[\""Keyboard\""]",1557.47,{},199411,0,"""Europe""" +2023-10-02,65465,9584,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3980.85,"{\""promo\"": \""18%\""}",137633,1,"""Africa""" +2023-04-12,65466,8122,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1053.34,"{\""seasonal\"": \""25%\""}",238583,0,"""South America""" +2023-09-02,65467,4009,"[\""Wireless Mouse\"", \""Laptop\""]",948.0,{},17416,1,"""Asia""" +2024-08-24,65468,5713,"[\""Keyboard\"", \""Phone\""]",4814.89,"{\""promo\"": \""30%\""}",164952,0,"""Asia""" +2023-06-06,65469,9279,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1470.63,"{\""loyalty\"": \""27%\""}",99491,1,"""North America""" +2024-10-09,65470,9806,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",631.78,"{\""loyalty\"": \""21%\""}",249213,1,"""Asia""" +2023-07-12,65471,1280,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3364.17,{},121930,0,"""South America""" +2024-12-22,65472,33,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",179.48,{},127247,0,"""South America""" +2023-12-09,65473,1484,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",938.71,"{\""loyalty\"": \""11%\""}",52836,0,"""South America""" +2024-12-31,65474,5683,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4406.43,{},31594,1,"""North America""" +2023-05-08,65475,9231,"[\""Charger\""]",2674.62,"{\""seasonal\"": \""7%\""}",139186,0,"""Africa""" +2024-07-05,65476,9141,"[\""Keyboard\""]",280.37,"{\"": \""30%\""}",124735,0,"""Europe""" +2024-07-16,65477,2256,"[\""Headphones\"", \""Tablet\""]",3752.95,{},131283,0,"""South America""" +2024-10-23,65478,2568,"[\""Keyboard\""]",2985.66,"{\""seasonal\"": \""7%\""}",77425,1,"""North America""" +2023-01-04,65479,9679,"[\""Monitor\""]",250.03,{},54118,1,"""South America""" +2023-10-11,65480,6241,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2408.11,{},28370,0,"""Africa""" +2023-10-19,65481,8814,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1987.95,{},272868,0,"""Asia""" +2023-03-31,65482,6024,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2594.35,"{\""loyalty\"": \""22%\""}",149124,0,"""Asia""" +2024-08-15,65483,4471,"[\""Phone\"", \""Laptop\""]",3329.0,{},37900,0,"""Asia""" +2023-07-25,65484,367,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4623.53,"{\""seasonal\"": \""7%\""}",169877,0,"""North America""" +2023-08-01,65485,5601,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2607.11,{},126151,1,"""Africa""" +2024-01-22,65486,3544,"[\""Laptop\""]",736.59,{},3570,1,"""North America""" +2024-01-17,65487,3213,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3683.25,{},135542,1,"""Europe""" +2024-09-26,65488,1668,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",629.2,{},249840,0,"""Africa""" +2023-07-21,65489,9576,"[\""Headphones\""]",4331.03,"{\""loyalty\"": \""25%\""}",52271,0,"""North America""" +2024-12-06,65490,5935,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",211.26,{},68488,1,"""Europe""" +2023-01-21,65491,8415,"[\""Phone\""]",247.54,"{\""loyalty\"": \""21%\""}",94405,1,"""South America""" +2024-06-19,65492,2994,"[\""Keyboard\""]",2080.56,{},274737,0,"""Europe""" +2024-05-04,65493,5441,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4913.4,"{\""promo\"": \""26%\""}",145357,1,"""South America""" +2024-06-30,65494,300,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1910.73,{},276595,0,"""Europe""" +2024-04-06,65495,6644,"[\""Charger\"", \""Wireless Mouse\""]",1712.35,{},193050,0,"""Asia""" +2023-08-31,65496,4741,"[\""Laptop\""]",3351.74,"{\""promo\"": \""29%\""}",12105,0,"""Asia""" +2024-04-05,65497,4094,"[\""Laptop\"", \""Charger\""]",1750.27,{},64507,0,"""Africa""" +2023-08-13,65498,9246,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",260.35,"{\""loyalty\"": \""27%\""}",242369,0,"""Europe""" +2023-09-10,65499,1063,"[\""Laptop\""]",722.86,"{\""seasonal\"": \""30%\""}",228160,1,"""South America""" +2024-04-17,65500,2660,"[\""Monitor\""]",4118.51,{},284228,1,"""North America""" +2023-11-28,65501,2626,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4216.65,"{\"": \""6%\""}",228449,1,"""Asia""" +2024-02-06,65502,2794,"[\""Phone\""]",1340.34,{},294112,1,"""Africa""" +2023-06-18,65503,2754,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4520.58,"{\""seasonal\"": \""22%\""}",184206,0,"""Asia""" +2024-05-22,65504,7832,"[\""Tablet\""]",2973.0,{},30911,1,"""Asia""" +2023-01-06,65505,2308,"[\""Monitor\""]",4718.49,"{\"": \""15%\""}",242657,1,"""Europe""" +2024-10-07,65506,2164,"[\""Tablet\"", \""Monitor\""]",1936.48,"{\""loyalty\"": \""27%\""}",32174,1,"""Europe""" +2023-07-03,65507,6992,"[\""Laptop\"", \""Monitor\""]",1741.11,{},51369,0,"""South America""" +2023-11-11,65508,2453,"[\""Charger\"", \""Phone\""]",4036.79,{},129474,1,"""Europe""" +2024-07-06,65509,8591,"[\""Headphones\"", \""Wireless Mouse\""]",4848.93,"{\""promo\"": \""26%\""}",276120,1,"""Asia""" +2024-02-10,65510,2662,"[\""Laptop\"", \""Headphones\""]",3788.17,"{\""promo\"": \""12%\""}",173991,0,"""North America""" +2024-08-13,65511,3671,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4674.08,"{\""loyalty\"": \""5%\""}",205503,1,"""Europe""" +2024-10-01,65512,7222,"[\""Monitor\"", \""Charger\""]",4001.73,"{\""seasonal\"": \""11%\""}",255449,0,"""South America""" +2023-04-23,65513,3153,"[\""Charger\""]",142.28,"{\""loyalty\"": \""19%\""}",99143,0,"""Africa""" +2024-05-23,65514,2054,"[\""Phone\""]",2082.55,{},24364,0,"""North America""" +2023-09-29,65515,3920,"[\""Wireless Mouse\""]",220.93,{},235212,0,"""North America""" +2023-06-16,65516,5063,"[\""Keyboard\"", \""Charger\""]",1120.53,{},200667,1,"""Africa""" +2024-12-14,65517,4370,"[\""Wireless Mouse\"", \""Phone\""]",2651.87,"{\""loyalty\"": \""17%\""}",28844,1,"""Europe""" +2023-07-26,65518,1273,"[\""Phone\"", \""Headphones\""]",782.65,"{\"": \""21%\""}",272762,1,"""North America""" +2023-06-05,65519,8493,"[\""Keyboard\""]",1463.95,{},189075,0,"""South America""" +2024-01-27,65520,2433,"[\""Tablet\"", \""Phone\""]",4128.19,{},33028,1,"""Africa""" +2024-05-29,65521,6762,"[\""Phone\""]",2896.5,{},288056,0,"""Europe""" +2024-02-17,65522,6823,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1186.57,"{\"": \""14%\""}",87453,1,"""Europe""" +2023-05-30,65523,4286,"[\""Phone\""]",3642.82,"{\"": \""15%\""}",245302,1,"""Africa""" +2024-08-23,65524,8471,"[\""Headphones\"", \""Tablet\""]",3894.22,"{\""promo\"": \""21%\""}",109907,0,"""Asia""" +2023-12-25,65525,1800,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2109.42,{},24267,0,"""North America""" +2024-10-15,65526,2250,"[\""Monitor\""]",2752.37,"{\""promo\"": \""8%\""}",49419,0,"""North America""" +2023-02-22,65527,4302,"[\""Tablet\""]",3308.62,"{\""seasonal\"": \""17%\""}",8990,1,"""South America""" +2024-11-26,65528,3613,"[\""Headphones\""]",1142.72,"{\""promo\"": \""28%\""}",149733,0,"""Europe""" +2023-08-20,65529,264,"[\""Headphones\"", \""Phone\""]",2394.62,{},22583,0,"""Europe""" +2024-05-13,65530,4644,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3252.01,"{\""seasonal\"": \""23%\""}",207120,0,"""South America""" +2024-11-24,65531,2192,"[\""Tablet\"", \""Headphones\""]",2112.3,{},243460,1,"""North America""" +2023-05-08,65532,3002,"[\""Keyboard\""]",1677.41,"{\"": \""28%\""}",286458,1,"""South America""" +2024-03-04,65533,2367,"[\""Phone\"", \""Charger\""]",2556.4,"{\""promo\"": \""16%\""}",144333,1,"""South America""" +2024-09-27,65534,8878,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4563.24,"{\""seasonal\"": \""20%\""}",230007,1,"""Europe""" +2023-10-11,65535,2963,"[\""Headphones\""]",1875.06,"{\"": \""30%\""}",178621,1,"""Europe""" +2024-02-29,65536,5883,"[\""Headphones\"", \""Tablet\""]",1242.44,"{\"": \""23%\""}",100421,0,"""North America""" +2023-10-29,65537,179,"[\""Phone\"", \""Wireless Mouse\""]",2571.35,"{\""promo\"": \""9%\""}",173609,1,"""South America""" +2024-07-03,65538,3119,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",417.74,"{\""loyalty\"": \""18%\""}",62275,1,"""North America""" +2024-06-11,65539,5452,"[\""Laptop\""]",885.82,{},253419,0,"""Europe""" +2023-03-12,65540,2602,"[\""Tablet\"", \""Phone\""]",3425.65,{},212325,0,"""Europe""" +2023-01-05,65541,185,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2972.55,"{\""seasonal\"": \""7%\""}",53716,0,"""North America""" +2023-06-05,65542,1675,"[\""Headphones\""]",4550.5,{},209520,1,"""Europe""" +2023-06-27,65543,5967,"[\""Phone\""]",2202.56,{},111254,0,"""South America""" +2023-08-14,65544,9410,"[\""Phone\""]",520.2,"{\""loyalty\"": \""15%\""}",166703,0,"""Asia""" +2024-04-27,65545,3060,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",747.24,"{\""seasonal\"": \""10%\""}",285765,1,"""South America""" +2023-08-04,65546,9305,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3452.2,{},191589,0,"""North America""" +2024-03-17,65547,376,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2046.84,{},3329,0,"""South America""" +2024-07-02,65548,5056,"[\""Monitor\"", \""Keyboard\""]",3100.13,{},171328,0,"""South America""" +2023-03-09,65549,9109,"[\""Headphones\"", \""Laptop\""]",4477.29,"{\""seasonal\"": \""14%\""}",233124,0,"""Asia""" +2024-05-01,65550,6990,"[\""Tablet\""]",3576.12,"{\"": \""24%\""}",201708,1,"""Europe""" +2024-09-01,65551,1885,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2835.81,"{\""seasonal\"": \""17%\""}",232022,0,"""South America""" +2024-11-24,65552,7487,"[\""Laptop\""]",1270.34,"{\""seasonal\"": \""16%\""}",25743,1,"""South America""" +2024-02-08,65553,3936,"[\""Headphones\"", \""Charger\""]",2173.46,"{\""loyalty\"": \""17%\""}",204928,0,"""Africa""" +2024-05-05,65554,9630,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1811.15,{},107472,0,"""Africa""" +2023-04-23,65555,5482,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3421.46,"{\""promo\"": \""16%\""}",133358,1,"""Africa""" +2024-12-20,65556,8293,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1280.45,"{\""loyalty\"": \""29%\""}",13402,0,"""Asia""" +2024-03-16,65557,2808,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",276.75,{},10179,1,"""Africa""" +2024-12-26,65558,9012,"[\""Headphones\""]",3423.22,{},265607,0,"""Asia""" +2024-01-04,65559,1141,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",766.19,"{\""seasonal\"": \""20%\""}",10124,0,"""South America""" +2024-07-18,65560,7897,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3188.29,{},210648,1,"""South America""" +2024-09-16,65561,778,"[\""Charger\"", \""Phone\""]",3315.34,"{\"": \""11%\""}",48674,0,"""Europe""" +2023-11-26,65562,4495,"[\""Keyboard\""]",3312.79,{},13789,1,"""Asia""" +2023-10-13,65563,7048,"[\""Tablet\"", \""Laptop\""]",4258.79,"{\""seasonal\"": \""15%\""}",104684,1,"""Asia""" +2023-10-03,65564,2218,"[\""Phone\""]",171.76,"{\""seasonal\"": \""23%\""}",86125,0,"""Africa""" +2024-12-31,65565,9821,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3548.17,"{\""loyalty\"": \""12%\""}",10730,1,"""Asia""" +2023-05-03,65566,1084,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4557.43,"{\""promo\"": \""23%\""}",191236,0,"""North America""" +2024-03-14,65567,2628,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4883.36,"{\""loyalty\"": \""7%\""}",294139,0,"""South America""" +2023-03-15,65568,8056,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1908.62,{},207970,1,"""North America""" +2023-06-28,65569,9828,"[\""Monitor\"", \""Laptop\""]",1549.82,"{\"": \""13%\""}",34050,1,"""Africa""" +2023-04-19,65570,4472,"[\""Phone\""]",83.39,"{\""loyalty\"": \""7%\""}",88692,1,"""Asia""" +2023-10-17,65571,6033,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4807.93,{},94807,1,"""North America""" +2023-12-08,65572,499,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3881.5,{},57265,1,"""Europe""" +2023-01-24,65573,92,"[\""Monitor\"", \""Headphones\""]",3072.64,{},136225,1,"""Asia""" +2023-01-10,65574,4422,"[\""Wireless Mouse\""]",164.6,"{\""promo\"": \""13%\""}",56000,0,"""North America""" +2024-08-11,65575,2253,"[\""Tablet\"", \""Monitor\""]",3987.26,{},142014,1,"""Africa""" +2023-02-14,65576,9495,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2722.32,"{\""loyalty\"": \""19%\""}",212704,0,"""Asia""" +2023-02-28,65577,1963,"[\""Keyboard\"", \""Phone\""]",1413.49,"{\"": \""27%\""}",26733,0,"""Africa""" +2023-12-02,65578,1732,"[\""Headphones\""]",712.94,{},223911,1,"""Africa""" +2023-01-19,65579,1086,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4575.38,"{\""promo\"": \""24%\""}",120124,1,"""North America""" +2024-02-18,65580,5400,"[\""Tablet\"", \""Phone\""]",3182.36,{},38535,0,"""North America""" +2024-06-05,65581,4637,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3297.2,"{\""loyalty\"": \""18%\""}",117899,1,"""Asia""" +2023-08-15,65582,3111,"[\""Headphones\""]",4103.28,{},24441,1,"""Europe""" +2024-09-09,65583,9712,"[\""Wireless Mouse\""]",1133.9,"{\""loyalty\"": \""26%\""}",235689,0,"""Asia""" +2023-02-25,65584,7022,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2596.08,{},61692,0,"""South America""" +2024-12-26,65585,8039,"[\""Keyboard\"", \""Laptop\""]",4167.81,"{\""promo\"": \""7%\""}",250436,0,"""Africa""" +2023-04-07,65586,652,"[\""Keyboard\"", \""Wireless Mouse\""]",349.59,{},231201,1,"""South America""" +2024-10-19,65587,5740,"[\""Tablet\""]",4699.1,{},37185,0,"""North America""" +2023-11-25,65588,1167,"[\""Tablet\"", \""Monitor\""]",3218.46,"{\""promo\"": \""19%\""}",116485,1,"""Asia""" +2024-03-16,65589,9034,"[\""Headphones\"", \""Laptop\""]",256.81,"{\""promo\"": \""27%\""}",218969,1,"""Europe""" +2023-02-10,65590,3180,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2528.31,{},230807,1,"""Europe""" +2023-09-09,65591,9087,"[\""Monitor\"", \""Keyboard\""]",2073.59,{},275522,0,"""Asia""" +2023-08-05,65592,4803,"[\""Wireless Mouse\"", \""Keyboard\""]",1772.57,"{\""loyalty\"": \""27%\""}",82261,0,"""Asia""" +2023-11-26,65593,9150,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3332.67,"{\"": \""26%\""}",280370,0,"""South America""" +2024-01-14,65594,9643,"[\""Headphones\""]",3075.65,{},65312,1,"""Africa""" +2024-10-23,65595,8483,"[\""Headphones\""]",1155.11,"{\""loyalty\"": \""7%\""}",273941,1,"""Asia""" +2024-12-28,65596,6155,"[\""Charger\""]",2476.54,"{\""seasonal\"": \""27%\""}",223529,0,"""South America""" +2024-02-12,65597,8078,"[\""Keyboard\""]",3707.46,{},120118,1,"""Europe""" +2023-08-06,65598,8894,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3925.72,"{\""seasonal\"": \""26%\""}",206180,1,"""North America""" +2024-07-14,65599,3795,"[\""Monitor\"", \""Phone\""]",2112.09,{},191819,0,"""Europe""" +2024-06-09,65600,2064,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4524.84,"{\""seasonal\"": \""30%\""}",192650,0,"""Asia""" +2024-02-01,65601,4843,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3539.52,"{\""seasonal\"": \""25%\""}",221082,0,"""North America""" +2024-12-28,65602,6544,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1466.54,{},106476,1,"""Africa""" +2024-05-03,65603,8098,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1710.47,{},284218,1,"""Africa""" +2024-10-09,65604,9350,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2734.09,{},190900,1,"""Europe""" +2023-12-25,65605,3005,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",50.49,"{\""loyalty\"": \""29%\""}",178353,1,"""Europe""" +2023-05-03,65606,7970,"[\""Tablet\""]",264.58,"{\""seasonal\"": \""14%\""}",255752,1,"""Asia""" +2023-09-25,65607,640,"[\""Charger\"", \""Laptop\""]",2004.69,{},93440,0,"""Africa""" +2023-10-25,65608,479,"[\""Monitor\""]",1102.63,{},280817,1,"""South America""" +2023-06-02,65609,1126,"[\""Monitor\""]",2902.23,{},36700,1,"""Asia""" +2024-09-15,65610,4060,"[\""Keyboard\"", \""Phone\""]",755.79,"{\"": \""29%\""}",30426,1,"""Europe""" +2023-08-24,65611,8315,"[\""Wireless Mouse\""]",3272.15,"{\"": \""6%\""}",293746,1,"""Asia""" +2023-04-03,65612,410,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1290.81,"{\""loyalty\"": \""14%\""}",279015,1,"""Africa""" +2023-02-19,65613,8641,"[\""Monitor\""]",2594.81,"{\""promo\"": \""28%\""}",169135,0,"""Europe""" +2024-10-16,65614,6553,"[\""Phone\"", \""Monitor\""]",1803.09,"{\""loyalty\"": \""8%\""}",76957,0,"""Asia""" +2023-11-03,65615,8792,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4796.37,{},192934,1,"""Asia""" +2023-05-19,65616,5829,"[\""Headphones\""]",716.44,{},141996,1,"""South America""" +2024-09-17,65617,555,"[\""Laptop\""]",2107.86,{},231089,1,"""Europe""" +2024-04-02,65618,258,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",512.65,{},214969,0,"""North America""" +2023-01-28,65619,1994,"[\""Wireless Mouse\""]",130.83,"{\""promo\"": \""14%\""}",235503,1,"""Asia""" +2024-11-21,65620,672,"[\""Tablet\"", \""Charger\""]",2160.34,"{\""loyalty\"": \""23%\""}",114196,1,"""Asia""" +2024-03-16,65621,4084,"[\""Phone\"", \""Keyboard\""]",3562.97,"{\""seasonal\"": \""21%\""}",251578,1,"""Europe""" +2023-03-24,65622,517,"[\""Monitor\"", \""Headphones\""]",4819.78,"{\"": \""30%\""}",289508,0,"""Africa""" +2024-10-16,65623,2102,"[\""Charger\"", \""Wireless Mouse\""]",2291.61,"{\"": \""25%\""}",162911,1,"""Africa""" +2023-11-17,65624,2903,"[\""Tablet\""]",4259.81,"{\""promo\"": \""8%\""}",52879,1,"""Asia""" +2023-10-05,65625,3732,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4724.67,{},224257,0,"""Asia""" +2024-02-27,65626,2330,"[\""Laptop\""]",1147.5,"{\"": \""23%\""}",213181,1,"""Africa""" +2024-08-29,65627,5682,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4340.64,"{\""promo\"": \""6%\""}",106030,1,"""South America""" +2023-01-25,65628,876,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3558.56,"{\""loyalty\"": \""20%\""}",50420,0,"""Asia""" +2024-10-28,65629,7215,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1654.13,"{\""seasonal\"": \""24%\""}",197107,1,"""Africa""" +2023-12-30,65630,8764,"[\""Phone\"", \""Laptop\""]",2305.96,{},12110,1,"""Asia""" +2023-03-06,65631,6665,"[\""Wireless Mouse\""]",2759.03,{},149872,1,"""Africa""" +2023-07-11,65632,1796,"[\""Charger\""]",1610.92,{},35611,0,"""South America""" +2023-07-10,65633,7423,"[\""Phone\""]",452.32,"{\""promo\"": \""25%\""}",64349,0,"""Africa""" +2024-02-15,65634,4783,"[\""Charger\""]",3863.74,{},44389,0,"""North America""" +2023-12-02,65635,8918,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3879.32,"{\""seasonal\"": \""6%\""}",80275,0,"""North America""" +2024-05-12,65636,4161,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",932.94,"{\""seasonal\"": \""5%\""}",24559,0,"""South America""" +2024-01-10,65637,1557,"[\""Headphones\""]",4363.82,"{\"": \""7%\""}",30670,0,"""Europe""" +2024-09-22,65638,7180,"[\""Charger\""]",2076.45,"{\"": \""14%\""}",165520,0,"""Asia""" +2024-06-06,65639,6011,"[\""Wireless Mouse\"", \""Laptop\""]",1615.1,{},209459,0,"""Europe""" +2023-07-10,65640,8160,"[\""Tablet\"", \""Phone\""]",2045.86,{},173518,0,"""Asia""" +2023-02-02,65641,8205,"[\""Monitor\"", \""Laptop\""]",1317.04,{},43682,0,"""Africa""" +2024-01-09,65642,780,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4613.92,"{\""seasonal\"": \""18%\""}",229075,0,"""Europe""" +2024-09-28,65643,9787,"[\""Keyboard\"", \""Monitor\""]",3752.54,{},154918,1,"""Europe""" +2023-10-12,65644,1815,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4597.53,"{\""seasonal\"": \""12%\""}",43816,0,"""Europe""" +2024-01-01,65645,7290,"[\""Charger\"", \""Keyboard\""]",3330.66,{},49283,0,"""Asia""" +2024-12-04,65646,1902,"[\""Charger\""]",1991.57,{},288816,1,"""Asia""" +2023-07-08,65647,2664,"[\""Phone\""]",2039.18,"{\""loyalty\"": \""23%\""}",256648,0,"""Asia""" +2024-11-15,65648,6619,"[\""Phone\""]",925.02,{},110758,0,"""South America""" +2024-08-03,65649,7968,"[\""Wireless Mouse\"", \""Monitor\""]",4551.4,"{\""promo\"": \""12%\""}",116679,0,"""Europe""" +2024-03-23,65650,7275,"[\""Monitor\""]",4564.57,"{\""promo\"": \""28%\""}",261033,0,"""North America""" +2023-10-19,65651,8767,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3134.93,{},45782,1,"""Africa""" +2023-11-24,65652,2166,"[\""Monitor\""]",843.12,"{\""promo\"": \""17%\""}",10085,1,"""Asia""" +2024-07-20,65653,6614,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2273.81,{},11677,0,"""Asia""" +2023-12-10,65654,901,"[\""Charger\"", \""Monitor\""]",4541.84,"{\""loyalty\"": \""10%\""}",154171,0,"""South America""" +2023-07-21,65655,8214,"[\""Tablet\""]",4037.02,"{\""seasonal\"": \""24%\""}",167610,0,"""Asia""" +2023-01-19,65656,5439,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1482.68,"{\""promo\"": \""28%\""}",212787,1,"""Africa""" +2023-09-18,65657,8884,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4655.31,{},104801,1,"""Asia""" +2024-12-26,65658,4530,"[\""Monitor\"", \""Wireless Mouse\""]",3106.97,{},128110,0,"""Europe""" +2023-12-25,65659,6712,"[\""Tablet\"", \""Charger\""]",2766.72,"{\"": \""16%\""}",98032,1,"""Asia""" +2024-05-01,65660,7086,"[\""Wireless Mouse\"", \""Phone\""]",1008.39,{},76355,0,"""Europe""" +2023-01-11,65661,1861,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4110.42,"{\""loyalty\"": \""8%\""}",282617,1,"""Asia""" +2024-01-12,65662,464,"[\""Tablet\""]",1466.99,"{\""seasonal\"": \""29%\""}",36117,1,"""Asia""" +2024-02-01,65663,478,"[\""Tablet\""]",1021.69,"{\"": \""10%\""}",280785,1,"""North America""" +2023-08-08,65664,7005,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2930.44,{},153419,1,"""Asia""" +2024-04-10,65665,1844,"[\""Monitor\""]",3094.43,{},166536,1,"""Africa""" +2024-12-08,65666,3489,"[\""Laptop\"", \""Phone\""]",676.13,"{\""seasonal\"": \""28%\""}",256061,0,"""Europe""" +2024-04-28,65667,7696,"[\""Keyboard\""]",1295.85,{},292632,0,"""Europe""" +2024-04-22,65668,3455,"[\""Wireless Mouse\"", \""Keyboard\""]",735.38,"{\""seasonal\"": \""17%\""}",229931,0,"""Asia""" +2024-12-28,65669,2516,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3790.17,{},102560,0,"""Europe""" +2024-03-17,65670,8916,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",563.26,"{\""promo\"": \""9%\""}",21615,1,"""South America""" +2023-09-16,65671,8294,"[\""Tablet\""]",1862.51,"{\""seasonal\"": \""16%\""}",8915,0,"""Asia""" +2024-11-07,65672,3249,"[\""Keyboard\"", \""Wireless Mouse\""]",4482.75,{},231988,0,"""North America""" +2024-10-10,65673,6297,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",578.55,"{\""loyalty\"": \""17%\""}",216498,1,"""Africa""" +2024-09-16,65674,7020,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1805.34,{},80268,1,"""Africa""" +2023-05-20,65675,5695,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4653.52,"{\""seasonal\"": \""8%\""}",55826,1,"""South America""" +2024-02-06,65676,2640,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2212.45,{},178257,0,"""North America""" +2024-03-29,65677,1004,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",638.0,{},286795,0,"""Africa""" +2023-03-02,65678,4838,"[\""Phone\""]",2963.61,"{\""seasonal\"": \""18%\""}",132150,1,"""Africa""" +2023-08-27,65679,1779,"[\""Charger\""]",2444.73,{},93778,1,"""Europe""" +2024-05-20,65680,3499,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3100.78,{},187194,0,"""Asia""" +2023-05-07,65681,2007,"[\""Phone\"", \""Charger\""]",4470.85,"{\""promo\"": \""10%\""}",219493,1,"""Asia""" +2023-06-06,65682,9045,"[\""Keyboard\"", \""Headphones\""]",1929.11,"{\""promo\"": \""7%\""}",191299,0,"""Africa""" +2023-04-10,65683,9803,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4092.55,"{\""seasonal\"": \""20%\""}",127221,1,"""South America""" +2024-09-02,65684,1910,"[\""Laptop\"", \""Tablet\""]",1420.35,"{\""loyalty\"": \""7%\""}",102002,1,"""North America""" +2023-07-19,65685,7999,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3003.08,{},293708,1,"""Africa""" +2024-04-28,65686,5110,"[\""Headphones\"", \""Laptop\""]",3304.04,"{\""seasonal\"": \""9%\""}",237060,1,"""Asia""" +2023-03-16,65687,6109,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3047.05,"{\"": \""20%\""}",15157,1,"""South America""" +2023-03-15,65688,3310,"[\""Monitor\"", \""Laptop\""]",3519.07,"{\""seasonal\"": \""27%\""}",29828,1,"""North America""" +2024-07-07,65689,4990,"[\""Phone\"", \""Keyboard\""]",1349.71,{},142634,0,"""North America""" +2023-05-15,65690,740,"[\""Monitor\""]",3877.23,{},290748,0,"""South America""" +2024-02-23,65691,7153,"[\""Laptop\""]",301.8,{},224074,0,"""North America""" +2023-05-20,65692,7075,"[\""Wireless Mouse\"", \""Keyboard\""]",2788.66,"{\"": \""8%\""}",31309,1,"""Europe""" +2023-07-19,65693,5490,"[\""Phone\""]",2220.92,{},277135,1,"""Asia""" +2023-02-21,65694,2222,"[\""Monitor\""]",4895.24,{},73632,1,"""Europe""" +2024-10-29,65695,6661,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2766.2,{},279177,0,"""Europe""" +2024-06-05,65696,5992,"[\""Tablet\""]",4110.73,"{\""loyalty\"": \""8%\""}",90417,1,"""Africa""" +2024-06-21,65697,1547,"[\""Laptop\""]",353.06,{},175343,1,"""Asia""" +2024-06-02,65698,2223,"[\""Monitor\"", \""Headphones\""]",1422.94,"{\""loyalty\"": \""21%\""}",163572,1,"""North America""" +2023-05-25,65699,5498,"[\""Phone\""]",4032.22,{},288308,0,"""North America""" +2024-08-18,65700,3857,"[\""Phone\""]",765.82,{},157324,0,"""Asia""" +2024-06-27,65701,8708,"[\""Phone\""]",631.77,{},209761,1,"""Europe""" +2024-05-29,65702,7646,"[\""Keyboard\""]",95.54,{},170415,1,"""Asia""" +2023-06-15,65703,3738,"[\""Phone\""]",1527.67,{},41114,0,"""Europe""" +2024-01-17,65704,6998,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4451.14,{},102892,0,"""North America""" +2024-03-22,65705,4724,"[\""Headphones\""]",4702.07,{},102835,1,"""Africa""" +2023-11-01,65706,6704,"[\""Tablet\"", \""Wireless Mouse\""]",2425.28,"{\""seasonal\"": \""13%\""}",242501,1,"""Africa""" +2024-08-02,65707,1258,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3682.24,"{\""seasonal\"": \""22%\""}",152039,0,"""South America""" +2024-04-24,65708,150,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",392.13,"{\""loyalty\"": \""5%\""}",25672,0,"""Africa""" +2024-09-09,65709,5458,"[\""Charger\""]",4867.86,"{\""promo\"": \""30%\""}",227880,1,"""Asia""" +2023-07-15,65710,1469,"[\""Headphones\""]",2916.95,"{\""seasonal\"": \""27%\""}",96407,0,"""South America""" +2024-05-21,65711,7229,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4883.6,"{\""promo\"": \""10%\""}",78895,1,"""Europe""" +2023-06-19,65712,3262,"[\""Tablet\""]",548.41,{},35278,0,"""Asia""" +2023-04-09,65713,8869,"[\""Monitor\""]",4153.2,"{\""seasonal\"": \""22%\""}",73085,0,"""Africa""" +2023-03-15,65714,5890,"[\""Headphones\""]",495.72,{},260600,1,"""South America""" +2023-10-22,65715,6832,"[\""Wireless Mouse\"", \""Tablet\""]",2231.96,{},10123,1,"""North America""" +2024-11-26,65716,3796,"[\""Keyboard\"", \""Laptop\""]",2677.76,{},277921,1,"""South America""" +2024-02-05,65717,3491,"[\""Phone\""]",1833.06,"{\"": \""16%\""}",2892,0,"""Asia""" +2023-02-04,65718,8141,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1629.72,"{\""promo\"": \""21%\""}",6616,0,"""Europe""" +2023-01-22,65719,625,"[\""Charger\""]",2166.26,"{\"": \""30%\""}",175370,1,"""Europe""" +2024-08-10,65720,1105,"[\""Monitor\"", \""Phone\""]",1982.13,{},5262,1,"""Europe""" +2023-06-23,65721,2279,"[\""Laptop\""]",1890.19,{},286772,1,"""Europe""" +2023-08-06,65722,7684,"[\""Tablet\"", \""Monitor\""]",597.14,"{\""promo\"": \""17%\""}",239294,0,"""Africa""" +2024-09-18,65723,2771,"[\""Tablet\"", \""Monitor\""]",1235.9,{},163040,1,"""South America""" +2024-05-31,65724,2637,"[\""Laptop\"", \""Charger\""]",3588.96,{},187789,0,"""Asia""" +2023-07-12,65725,225,"[\""Headphones\"", \""Tablet\""]",183.03,"{\""loyalty\"": \""29%\""}",66324,1,"""Europe""" +2023-01-05,65726,6048,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3965.37,"{\"": \""20%\""}",128728,1,"""North America""" +2023-09-05,65727,3127,"[\""Laptop\""]",4122.97,{},212456,1,"""Europe""" +2023-10-31,65728,8976,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3378.55,{},126250,1,"""South America""" +2023-06-14,65729,853,"[\""Phone\""]",1020.0,"{\""loyalty\"": \""29%\""}",291830,1,"""Asia""" +2023-07-14,65730,6671,"[\""Monitor\""]",540.21,"{\""seasonal\"": \""22%\""}",118648,1,"""Europe""" +2023-02-07,65731,8207,"[\""Laptop\"", \""Phone\""]",4866.36,"{\""promo\"": \""27%\""}",272190,0,"""South America""" +2024-11-15,65732,7618,"[\""Laptop\""]",1066.13,"{\""loyalty\"": \""30%\""}",60774,0,"""Africa""" +2023-06-13,65733,5115,"[\""Phone\"", \""Keyboard\""]",2421.14,{},77968,1,"""North America""" +2024-02-20,65734,293,"[\""Phone\"", \""Laptop\"", \""Charger\""]",601.14,"{\"": \""18%\""}",231890,0,"""Africa""" +2024-01-22,65735,4526,"[\""Phone\""]",255.89,{},109627,0,"""Asia""" +2023-04-13,65736,4819,"[\""Monitor\""]",3176.26,"{\"": \""18%\""}",222122,0,"""Africa""" +2024-08-30,65737,5872,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3643.58,{},62494,1,"""South America""" +2024-09-17,65738,9210,"[\""Keyboard\""]",3957.19,{},259223,0,"""North America""" +2023-12-23,65739,6768,"[\""Keyboard\""]",1428.7,{},280198,0,"""North America""" +2023-02-07,65740,9676,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2544.63,{},181027,1,"""South America""" +2024-12-31,65741,4611,"[\""Headphones\""]",716.91,{},277800,0,"""South America""" +2024-05-05,65742,8520,"[\""Laptop\"", \""Charger\""]",3126.88,{},96717,1,"""North America""" +2024-12-16,65743,1401,"[\""Wireless Mouse\""]",3203.07,{},234341,0,"""Africa""" +2024-02-05,65744,4688,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4783.84,"{\"": \""29%\""}",87210,1,"""Europe""" +2023-07-02,65745,3237,"[\""Monitor\""]",4976.36,{},270892,1,"""North America""" +2024-06-14,65746,3907,"[\""Monitor\"", \""Headphones\""]",3643.03,{},232698,0,"""Africa""" +2023-10-09,65747,8888,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1793.79,"{\""promo\"": \""6%\""}",111462,0,"""Asia""" +2023-08-04,65748,2828,"[\""Headphones\""]",2967.75,"{\""seasonal\"": \""7%\""}",31185,1,"""North America""" +2024-05-10,65749,693,"[\""Charger\"", \""Keyboard\""]",2460.77,{},113083,1,"""North America""" +2023-06-17,65750,6077,"[\""Phone\""]",3379.31,{},166741,1,"""South America""" +2024-08-06,65751,1124,"[\""Headphones\"", \""Tablet\""]",4372.9,"{\""promo\"": \""8%\""}",4664,1,"""Asia""" +2024-11-29,65752,2179,"[\""Headphones\"", \""Tablet\""]",3228.66,{},215685,0,"""Africa""" +2024-06-27,65753,626,"[\""Phone\""]",2047.04,"{\""loyalty\"": \""13%\""}",64279,1,"""North America""" +2024-08-19,65754,5455,"[\""Headphones\"", \""Tablet\""]",4281.5,"{\"": \""21%\""}",20694,1,"""South America""" +2024-10-30,65755,6401,"[\""Wireless Mouse\""]",607.16,"{\""promo\"": \""22%\""}",288569,0,"""Europe""" +2023-02-13,65756,3124,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4446.29,{},90822,0,"""South America""" +2024-03-21,65757,57,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2389.74,{},7822,0,"""Europe""" +2023-08-11,65758,5194,"[\""Laptop\"", \""Charger\""]",2839.89,"{\""promo\"": \""14%\""}",97399,0,"""Asia""" +2024-05-03,65759,2998,"[\""Headphones\"", \""Monitor\""]",2490.88,{},96329,0,"""Africa""" +2024-06-09,65760,3916,"[\""Keyboard\"", \""Laptop\""]",407.75,{},97508,1,"""Europe""" +2023-09-17,65761,5591,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3151.84,"{\"": \""9%\""}",126439,1,"""Africa""" +2024-02-22,65762,4978,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",288.56,"{\""loyalty\"": \""8%\""}",164801,0,"""Asia""" +2023-08-29,65763,4621,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3443.34,{},42868,1,"""Asia""" +2024-06-01,65764,7623,"[\""Tablet\"", \""Laptop\""]",1035.97,"{\""seasonal\"": \""8%\""}",128931,1,"""Europe""" +2023-10-06,65765,1473,"[\""Charger\""]",3793.96,"{\""promo\"": \""18%\""}",236576,0,"""South America""" +2023-10-10,65766,6033,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4097.54,"{\""loyalty\"": \""29%\""}",29043,1,"""South America""" +2024-11-22,65767,8680,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4420.61,{},239457,1,"""Asia""" +2023-09-28,65768,5303,"[\""Laptop\""]",4418.4,{},17055,1,"""Asia""" +2023-07-17,65769,2036,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3490.56,{},293646,0,"""Asia""" +2024-09-09,65770,8221,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1250.98,{},123857,1,"""Europe""" +2023-04-11,65771,7658,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",359.55,{},67291,0,"""Asia""" +2023-04-20,65772,7858,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",474.19,{},267868,1,"""Asia""" +2024-01-10,65773,6860,"[\""Laptop\""]",1034.38,{},222920,0,"""North America""" +2024-08-10,65774,7236,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3767.51,{},48541,0,"""Asia""" +2024-03-27,65775,8025,"[\""Tablet\"", \""Phone\""]",3891.45,{},96999,0,"""North America""" +2024-12-23,65776,6439,"[\""Wireless Mouse\""]",2798.89,"{\""promo\"": \""30%\""}",63721,1,"""Asia""" +2023-09-24,65777,3279,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1223.42,"{\""seasonal\"": \""11%\""}",59762,1,"""North America""" +2023-01-18,65778,7486,"[\""Laptop\"", \""Tablet\""]",2760.59,"{\""loyalty\"": \""8%\""}",88072,0,"""North America""" +2024-04-26,65779,1048,"[\""Tablet\""]",2534.15,"{\""seasonal\"": \""20%\""}",208994,1,"""Europe""" +2024-11-12,65780,968,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",993.77,{},50435,0,"""Asia""" +2023-06-09,65781,464,"[\""Headphones\""]",4714.28,{},149503,1,"""North America""" +2023-01-12,65782,1869,"[\""Wireless Mouse\""]",4112.8,"{\""seasonal\"": \""13%\""}",42737,0,"""North America""" +2024-09-23,65783,9835,"[\""Headphones\""]",3087.97,{},170145,0,"""South America""" +2023-01-04,65784,3650,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4564.84,"{\""seasonal\"": \""5%\""}",57608,0,"""Europe""" +2024-01-29,65785,2221,"[\""Charger\"", \""Phone\""]",2533.39,{},34313,1,"""North America""" +2023-12-18,65786,7824,"[\""Tablet\"", \""Charger\""]",4625.13,{},4397,1,"""North America""" +2023-03-21,65787,7325,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3107.33,{},287080,0,"""Africa""" +2023-08-06,65788,7582,"[\""Keyboard\"", \""Charger\""]",3123.59,{},114896,1,"""Europe""" +2024-01-16,65789,8822,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3570.34,{},251126,0,"""Europe""" +2023-10-24,65790,4372,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2116.38,"{\"": \""8%\""}",194204,0,"""Europe""" +2023-08-18,65791,3470,"[\""Wireless Mouse\""]",508.98,"{\""seasonal\"": \""30%\""}",294423,0,"""Asia""" +2023-11-02,65792,8490,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3840.54,"{\""loyalty\"": \""23%\""}",277466,0,"""South America""" +2024-06-18,65793,8993,"[\""Laptop\"", \""Headphones\""]",1800.1,{},81848,0,"""South America""" +2024-04-10,65794,8838,"[\""Keyboard\"", \""Laptop\""]",1280.62,"{\"": \""29%\""}",117217,0,"""North America""" +2024-10-20,65795,268,"[\""Headphones\"", \""Laptop\""]",3389.58,{},15116,0,"""Africa""" +2023-01-23,65796,7469,"[\""Wireless Mouse\""]",3371.08,"{\""loyalty\"": \""26%\""}",144208,0,"""South America""" +2023-06-03,65797,8784,"[\""Laptop\""]",4111.28,{},60374,0,"""Asia""" +2023-07-26,65798,2743,"[\""Wireless Mouse\"", \""Tablet\""]",4411.34,{},120527,1,"""Asia""" +2024-10-31,65799,9680,"[\""Laptop\"", \""Wireless Mouse\""]",392.24,"{\""promo\"": \""16%\""}",123778,1,"""Africa""" +2024-01-04,65800,7296,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2370.16,{},215480,0,"""Europe""" +2023-01-25,65801,5065,"[\""Tablet\"", \""Laptop\""]",2473.56,{},268080,0,"""Asia""" +2023-03-21,65802,2320,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2745.15,"{\"": \""6%\""}",141691,0,"""North America""" +2024-07-25,65803,4508,"[\""Phone\""]",3672.72,"{\""loyalty\"": \""22%\""}",20959,0,"""Africa""" +2024-05-17,65804,8699,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2191.99,{},34399,1,"""South America""" +2024-01-09,65805,6984,"[\""Tablet\"", \""Monitor\""]",3182.18,{},129235,1,"""South America""" +2024-02-04,65806,4339,"[\""Keyboard\""]",1173.56,{},180650,0,"""Africa""" +2023-05-28,65807,993,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2965.36,"{\"": \""11%\""}",251606,0,"""North America""" +2023-05-13,65808,6612,"[\""Phone\"", \""Keyboard\""]",3095.29,"{\"": \""25%\""}",14047,0,"""Asia""" +2024-02-18,65809,9923,"[\""Wireless Mouse\""]",685.85,{},236038,0,"""South America""" +2023-08-31,65810,4765,"[\""Monitor\""]",3466.73,"{\""loyalty\"": \""20%\""}",51474,1,"""Asia""" +2023-08-15,65811,4702,"[\""Charger\""]",2801.43,"{\"": \""21%\""}",29079,1,"""Europe""" +2024-05-04,65812,1204,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1581.9,{},45894,0,"""Asia""" +2024-12-02,65813,4901,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4927.41,{},195198,1,"""Europe""" +2024-11-26,65814,623,"[\""Tablet\"", \""Phone\""]",4997.84,{},228283,0,"""Europe""" +2023-03-27,65815,3992,"[\""Phone\"", \""Tablet\""]",3645.22,{},136649,0,"""Asia""" +2023-12-16,65816,6009,"[\""Charger\"", \""Laptop\""]",4280.1,{},296859,0,"""South America""" +2023-06-02,65817,542,"[\""Laptop\""]",1584.4,{},271451,0,"""Asia""" +2023-08-31,65818,5147,"[\""Wireless Mouse\""]",3294.61,"{\""loyalty\"": \""18%\""}",82329,1,"""Europe""" +2024-08-17,65819,8445,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1170.88,{},216234,1,"""North America""" +2023-08-31,65820,8463,"[\""Laptop\"", \""Charger\""]",2218.84,{},13870,0,"""Africa""" +2024-05-17,65821,2341,"[\""Monitor\"", \""Headphones\""]",2255.3,{},255139,1,"""South America""" +2024-06-12,65822,8704,"[\""Laptop\"", \""Keyboard\""]",107.32,{},160297,1,"""North America""" +2024-07-23,65823,2598,"[\""Wireless Mouse\"", \""Headphones\""]",2764.56,{},236332,0,"""Africa""" +2024-08-05,65824,5100,"[\""Laptop\"", \""Tablet\""]",3892.1,"{\""seasonal\"": \""15%\""}",163511,0,"""Africa""" +2024-06-20,65825,9898,"[\""Laptop\"", \""Headphones\""]",1814.89,"{\""loyalty\"": \""11%\""}",218330,0,"""South America""" +2023-04-09,65826,760,"[\""Phone\""]",153.23,{},73027,1,"""South America""" +2024-06-02,65827,6072,"[\""Keyboard\"", \""Laptop\""]",863.11,{},126432,1,"""Africa""" +2024-08-18,65828,9429,"[\""Phone\"", \""Monitor\""]",1735.48,{},107327,0,"""North America""" +2023-10-04,65829,4591,"[\""Headphones\""]",3841.33,"{\""seasonal\"": \""26%\""}",185371,1,"""Africa""" +2024-06-12,65830,6456,"[\""Laptop\""]",2825.37,"{\""seasonal\"": \""8%\""}",277640,0,"""North America""" +2024-10-11,65831,1452,"[\""Keyboard\""]",3472.83,{},68020,0,"""South America""" +2024-11-14,65832,7660,"[\""Laptop\""]",1259.08,{},169068,1,"""North America""" +2023-07-30,65833,4385,"[\""Wireless Mouse\"", \""Charger\""]",4618.6,"{\"": \""17%\""}",193597,1,"""North America""" +2024-09-28,65834,7249,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",749.36,"{\""seasonal\"": \""26%\""}",226077,0,"""North America""" +2024-07-21,65835,9069,"[\""Laptop\"", \""Charger\""]",4746.0,"{\""promo\"": \""13%\""}",263434,0,"""Asia""" +2024-01-12,65836,8161,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3624.79,{},144091,1,"""South America""" +2024-01-02,65837,8173,"[\""Laptop\"", \""Phone\""]",3179.34,"{\"": \""28%\""}",70549,0,"""Asia""" +2023-09-30,65838,4897,"[\""Phone\"", \""Laptop\""]",4243.9,{},225748,0,"""North America""" +2024-01-09,65839,4007,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1298.05,"{\""promo\"": \""17%\""}",210871,0,"""Africa""" +2024-01-09,65840,8159,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1441.67,{},103014,0,"""Asia""" +2024-10-13,65841,4900,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2119.99,"{\"": \""9%\""}",142135,0,"""North America""" +2024-03-06,65842,4531,"[\""Laptop\"", \""Charger\""]",4808.53,{},175997,0,"""North America""" +2024-08-13,65843,3090,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3662.76,{},150208,1,"""Europe""" +2024-01-02,65844,6636,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2316.33,"{\""promo\"": \""11%\""}",253026,0,"""North America""" +2023-05-20,65845,2400,"[\""Headphones\"", \""Keyboard\""]",1638.05,"{\""promo\"": \""24%\""}",265425,0,"""Europe""" +2024-10-28,65846,4515,"[\""Wireless Mouse\""]",4912.09,{},246737,0,"""Africa""" +2024-02-15,65847,7573,"[\""Wireless Mouse\""]",242.19,"{\"": \""19%\""}",130283,0,"""Africa""" +2023-12-06,65848,533,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1423.36,"{\""seasonal\"": \""18%\""}",78937,1,"""Africa""" +2023-04-07,65849,5759,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1601.65,"{\""seasonal\"": \""30%\""}",35340,1,"""Asia""" +2024-12-08,65850,7883,"[\""Wireless Mouse\"", \""Tablet\""]",67.97,"{\""promo\"": \""12%\""}",184016,1,"""Europe""" +2023-08-17,65851,9104,"[\""Monitor\""]",3850.7,{},178753,0,"""Africa""" +2024-02-12,65852,5854,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1993.05,"{\"": \""26%\""}",18079,1,"""North America""" +2023-03-11,65853,3141,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3666.21,{},15423,0,"""South America""" +2023-11-29,65854,4021,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3372.73,"{\""loyalty\"": \""13%\""}",275890,1,"""Asia""" +2023-09-19,65855,8666,"[\""Keyboard\"", \""Monitor\""]",2024.93,"{\""seasonal\"": \""21%\""}",69253,1,"""South America""" +2023-11-12,65856,9828,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2565.97,{},68169,0,"""North America""" +2023-09-02,65857,8070,"[\""Charger\"", \""Monitor\""]",4099.88,{},231278,1,"""Europe""" +2024-04-07,65858,761,"[\""Tablet\""]",1538.45,"{\""seasonal\"": \""28%\""}",216336,1,"""Europe""" +2023-04-03,65859,5904,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4747.24,{},54850,1,"""North America""" +2024-06-03,65860,1465,"[\""Headphones\""]",708.72,{},165185,0,"""Europe""" +2024-02-11,65861,8974,"[\""Headphones\"", \""Laptop\""]",3253.3,{},86869,1,"""Asia""" +2024-06-23,65862,7372,"[\""Phone\""]",4547.51,"{\"": \""11%\""}",92716,1,"""Asia""" +2023-01-11,65863,7032,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1495.84,"{\""seasonal\"": \""11%\""}",239974,0,"""South America""" +2024-12-06,65864,1509,"[\""Tablet\""]",2253.94,"{\"": \""16%\""}",186180,1,"""South America""" +2024-01-03,65865,9820,"[\""Wireless Mouse\"", \""Tablet\""]",2996.5,"{\"": \""13%\""}",79012,0,"""South America""" +2023-09-22,65866,1904,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3911.01,"{\""promo\"": \""18%\""}",118277,1,"""North America""" +2024-04-25,65867,8112,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4211.36,{},144164,0,"""Africa""" +2024-07-26,65868,5716,"[\""Headphones\"", \""Phone\""]",3034.2,{},173218,0,"""Africa""" +2024-01-29,65869,2681,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1486.32,{},75511,1,"""South America""" +2024-08-31,65870,1035,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4155.76,{},194884,1,"""North America""" +2023-04-04,65871,8389,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4960.63,"{\""seasonal\"": \""21%\""}",297166,0,"""Europe""" +2024-04-04,65872,6841,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1921.55,"{\""promo\"": \""20%\""}",111032,0,"""Africa""" +2023-07-03,65873,2337,"[\""Tablet\"", \""Phone\""]",3287.64,{},245885,0,"""Africa""" +2023-12-06,65874,3854,"[\""Tablet\""]",500.02,"{\""promo\"": \""11%\""}",235038,0,"""South America""" +2024-07-27,65875,684,"[\""Monitor\""]",4150.77,{},198025,0,"""Asia""" +2023-06-14,65876,850,"[\""Keyboard\"", \""Laptop\""]",3307.24,{},96300,1,"""North America""" +2023-06-02,65877,4449,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1232.67,"{\""loyalty\"": \""5%\""}",127801,0,"""Asia""" +2023-11-13,65878,6157,"[\""Keyboard\""]",1736.63,"{\"": \""12%\""}",79308,1,"""Asia""" +2023-09-29,65879,6147,"[\""Tablet\"", \""Monitor\""]",2864.14,"{\""loyalty\"": \""18%\""}",67516,1,"""North America""" +2023-04-05,65880,1681,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2168.72,"{\""seasonal\"": \""20%\""}",119147,0,"""South America""" +2024-04-15,65881,2774,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",942.99,"{\""seasonal\"": \""10%\""}",218484,1,"""Asia""" +2024-12-21,65882,4584,"[\""Headphones\""]",1191.9,"{\""promo\"": \""18%\""}",85500,0,"""Europe""" +2024-07-21,65883,6327,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3658.29,"{\""loyalty\"": \""16%\""}",247771,0,"""Europe""" +2023-08-20,65884,3931,"[\""Tablet\"", \""Wireless Mouse\""]",1935.68,{},217744,1,"""North America""" +2023-04-26,65885,9731,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2961.72,"{\"": \""13%\""}",2619,1,"""Europe""" +2024-11-01,65886,9388,"[\""Monitor\""]",3500.91,{},291756,1,"""South America""" +2023-01-08,65887,8239,"[\""Keyboard\""]",4426.32,"{\""promo\"": \""15%\""}",26337,0,"""Asia""" +2023-04-19,65888,7185,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",725.69,"{\""promo\"": \""13%\""}",112754,1,"""North America""" +2023-08-28,65889,6809,"[\""Wireless Mouse\""]",2059.47,"{\"": \""11%\""}",204610,0,"""Europe""" +2023-03-07,65890,3099,"[\""Keyboard\""]",1284.34,{},242678,0,"""South America""" +2023-04-18,65891,1697,"[\""Charger\""]",3391.26,{},91307,0,"""Europe""" +2024-07-17,65892,3897,"[\""Charger\""]",2258.39,"{\""seasonal\"": \""22%\""}",137772,1,"""South America""" +2024-08-18,65893,9643,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3068.98,{},295876,1,"""Asia""" +2023-09-11,65894,3859,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3678.0,"{\""promo\"": \""13%\""}",167386,0,"""North America""" +2023-11-30,65895,2725,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3143.5,{},269906,0,"""North America""" +2023-10-02,65896,5549,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2420.95,"{\""loyalty\"": \""19%\""}",66998,1,"""Asia""" +2024-04-03,65897,535,"[\""Phone\""]",4776.29,"{\""seasonal\"": \""5%\""}",86936,0,"""Europe""" +2023-06-12,65898,6367,"[\""Headphones\""]",289.38,"{\""seasonal\"": \""13%\""}",46096,0,"""Asia""" +2024-08-30,65899,1742,"[\""Laptop\"", \""Keyboard\""]",4677.88,{},281067,0,"""Asia""" +2023-10-12,65900,9755,"[\""Keyboard\"", \""Charger\""]",4847.44,"{\""seasonal\"": \""16%\""}",22026,1,"""Asia""" +2024-12-17,65901,7244,"[\""Keyboard\"", \""Monitor\""]",4332.45,{},112141,1,"""North America""" +2024-05-12,65902,5351,"[\""Phone\"", \""Wireless Mouse\""]",1274.42,{},193433,1,"""Asia""" +2023-09-21,65903,2047,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1815.43,{},213481,1,"""South America""" +2024-12-07,65904,4536,"[\""Headphones\""]",3448.28,"{\"": \""18%\""}",161437,0,"""Africa""" +2024-02-29,65905,47,"[\""Keyboard\""]",2969.73,"{\""seasonal\"": \""20%\""}",11348,0,"""South America""" +2024-03-27,65906,5881,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3195.89,"{\""seasonal\"": \""16%\""}",218225,0,"""Africa""" +2023-11-18,65907,5584,"[\""Tablet\""]",4958.99,{},92030,1,"""South America""" +2023-12-08,65908,524,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4519.5,"{\""seasonal\"": \""13%\""}",179495,1,"""South America""" +2024-10-18,65909,2458,"[\""Laptop\"", \""Tablet\""]",2509.63,"{\""seasonal\"": \""25%\""}",142836,0,"""Europe""" +2024-01-28,65910,9221,"[\""Phone\""]",1791.76,{},193042,1,"""Europe""" +2023-08-24,65911,4315,"[\""Monitor\"", \""Tablet\""]",2066.27,{},244142,0,"""South America""" +2023-02-26,65912,1678,"[\""Phone\"", \""Laptop\""]",697.57,{},283162,0,"""Asia""" +2024-01-20,65913,1588,"[\""Wireless Mouse\""]",2451.04,{},142206,0,"""Africa""" +2023-05-31,65914,6472,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2498.9,"{\""loyalty\"": \""21%\""}",44936,1,"""Asia""" +2023-01-02,65915,2262,"[\""Wireless Mouse\""]",2290.23,{},23664,1,"""Europe""" +2023-12-28,65916,708,"[\""Monitor\"", \""Phone\""]",1500.14,{},175065,1,"""Asia""" +2024-01-13,65917,2560,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1957.61,"{\""loyalty\"": \""23%\""}",37497,0,"""North America""" +2024-08-20,65918,5143,"[\""Headphones\"", \""Tablet\""]",2276.53,"{\"": \""18%\""}",51721,0,"""Asia""" +2023-03-31,65919,6128,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3670.98,{},184524,0,"""Europe""" +2023-05-24,65920,4582,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",719.98,{},148882,0,"""North America""" +2024-01-14,65921,9938,"[\""Tablet\""]",2987.28,"{\""promo\"": \""7%\""}",215213,0,"""Africa""" +2024-09-21,65922,897,"[\""Charger\"", \""Tablet\""]",835.31,{},144364,0,"""North America""" +2023-12-15,65923,6517,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4134.48,{},241142,1,"""North America""" +2024-04-04,65924,9518,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1359.81,{},247337,1,"""Europe""" +2023-05-10,65925,9233,"[\""Keyboard\""]",1561.43,{},41239,0,"""Europe""" +2023-05-06,65926,411,"[\""Phone\""]",2253.06,{},257003,0,"""Africa""" +2023-04-28,65927,1389,"[\""Phone\""]",624.95,"{\""seasonal\"": \""17%\""}",136433,1,"""South America""" +2023-01-06,65928,3437,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4021.51,"{\""seasonal\"": \""20%\""}",77222,1,"""North America""" +2023-11-04,65929,7785,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3309.04,{},201421,0,"""Asia""" +2023-03-06,65930,2628,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",486.53,{},42793,0,"""South America""" +2023-08-03,65931,3305,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",92.82,{},95504,1,"""Africa""" +2023-12-11,65932,6730,"[\""Phone\""]",903.89,{},272765,1,"""Asia""" +2024-11-25,65933,9204,"[\""Phone\""]",1953.01,"{\""seasonal\"": \""9%\""}",224583,0,"""Asia""" +2023-08-28,65934,7281,"[\""Laptop\""]",1280.49,"{\"": \""23%\""}",244321,0,"""North America""" +2024-06-11,65935,5967,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4369.89,"{\""seasonal\"": \""8%\""}",71329,0,"""South America""" +2023-11-22,65936,9141,"[\""Monitor\"", \""Wireless Mouse\""]",2892.57,{},228860,0,"""North America""" +2024-10-08,65937,7699,"[\""Laptop\"", \""Keyboard\""]",3483.86,{},276991,0,"""Asia""" +2024-03-17,65938,4176,"[\""Monitor\"", \""Charger\""]",3190.14,"{\""loyalty\"": \""19%\""}",67515,1,"""Europe""" +2023-02-05,65939,7193,"[\""Charger\"", \""Keyboard\""]",1595.49,"{\"": \""5%\""}",128248,0,"""South America""" +2024-04-12,65940,444,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3419.92,"{\""promo\"": \""16%\""}",199670,1,"""Asia""" +2024-12-25,65941,5533,"[\""Charger\""]",3683.83,"{\"": \""26%\""}",87947,1,"""North America""" +2023-07-11,65942,6298,"[\""Tablet\"", \""Keyboard\""]",2560.87,{},104819,0,"""Europe""" +2023-01-27,65943,2805,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2333.81,"{\"": \""19%\""}",167239,1,"""Europe""" +2023-10-07,65944,4604,"[\""Laptop\""]",4541.67,{},33904,1,"""North America""" +2023-07-19,65945,6807,"[\""Wireless Mouse\""]",3682.86,{},231026,1,"""Asia""" +2023-04-07,65946,1637,"[\""Headphones\""]",4612.82,{},113067,1,"""North America""" +2023-02-18,65947,1970,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4865.11,{},187425,1,"""North America""" +2023-12-19,65948,606,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1266.83,{},292411,1,"""Asia""" +2023-05-10,65949,4108,"[\""Monitor\"", \""Laptop\""]",1145.14,{},176254,1,"""North America""" +2023-09-04,65950,9638,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2506.77,{},4677,1,"""South America""" +2023-05-16,65951,3814,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1439.66,"{\"": \""6%\""}",90829,0,"""Asia""" +2023-01-09,65952,7175,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4087.37,"{\""seasonal\"": \""18%\""}",143103,0,"""Africa""" +2023-07-09,65953,5046,"[\""Monitor\"", \""Headphones\""]",4181.46,{},170805,0,"""North America""" +2023-12-29,65954,1333,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2003.54,{},68624,0,"""North America""" +2024-01-05,65955,4712,"[\""Headphones\"", \""Laptop\""]",2124.63,"{\""seasonal\"": \""19%\""}",166626,1,"""North America""" +2023-08-10,65956,7896,"[\""Laptop\"", \""Charger\""]",1805.81,"{\"": \""10%\""}",19526,0,"""Africa""" +2023-03-09,65957,5278,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4339.0,{},118441,0,"""Asia""" +2024-06-27,65958,2728,"[\""Phone\"", \""Headphones\""]",2122.52,"{\""promo\"": \""23%\""}",51260,0,"""Asia""" +2024-11-21,65959,1547,"[\""Charger\"", \""Tablet\""]",1309.06,{},280336,0,"""Asia""" +2024-09-29,65960,495,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3767.77,"{\""seasonal\"": \""5%\""}",237671,1,"""South America""" +2024-11-06,65961,2273,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1447.24,{},268045,0,"""Europe""" +2024-04-14,65962,8791,"[\""Keyboard\""]",3041.55,"{\""promo\"": \""27%\""}",128134,1,"""North America""" +2023-04-09,65963,9159,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1924.33,{},201071,0,"""North America""" +2024-01-08,65964,5017,"[\""Phone\"", \""Wireless Mouse\""]",4902.52,"{\""seasonal\"": \""13%\""}",221702,1,"""South America""" +2024-12-04,65965,3142,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4641.93,{},97351,1,"""North America""" +2024-05-11,65966,5710,"[\""Keyboard\""]",2848.95,{},292662,1,"""South America""" +2023-04-04,65967,5690,"[\""Laptop\""]",893.53,"{\""loyalty\"": \""9%\""}",160022,1,"""Asia""" +2023-02-13,65968,3885,"[\""Monitor\"", \""Phone\""]",878.77,{},191305,0,"""South America""" +2023-03-04,65969,2623,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2718.89,"{\""promo\"": \""24%\""}",235743,0,"""Europe""" +2023-11-19,65970,1343,"[\""Wireless Mouse\"", \""Tablet\""]",3566.79,"{\"": \""11%\""}",39396,0,"""South America""" +2023-07-19,65971,2998,"[\""Tablet\"", \""Laptop\""]",3700.29,"{\""loyalty\"": \""27%\""}",78885,0,"""Africa""" +2024-08-16,65972,8802,"[\""Laptop\"", \""Charger\""]",1641.59,"{\""promo\"": \""14%\""}",109033,1,"""North America""" +2024-10-22,65973,1070,"[\""Wireless Mouse\"", \""Laptop\""]",1655.88,"{\"": \""30%\""}",180524,0,"""Europe""" +2024-11-16,65974,5208,"[\""Keyboard\"", \""Wireless Mouse\""]",809.17,{},59875,1,"""North America""" +2024-03-28,65975,8989,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3374.76,"{\""loyalty\"": \""10%\""}",251266,1,"""Africa""" +2023-02-23,65976,447,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2783.11,{},47989,1,"""Asia""" +2024-06-26,65977,5087,"[\""Phone\""]",3791.37,{},75158,1,"""Asia""" +2023-01-01,65978,7523,"[\""Phone\""]",974.04,"{\""seasonal\"": \""13%\""}",40450,0,"""South America""" +2024-06-28,65979,6053,"[\""Charger\""]",659.93,"{\"": \""13%\""}",73618,0,"""Africa""" +2024-09-15,65980,6404,"[\""Phone\"", \""Headphones\""]",1190.44,"{\""loyalty\"": \""29%\""}",121813,0,"""Europe""" +2024-08-28,65981,5030,"[\""Laptop\""]",1415.09,"{\"": \""23%\""}",86431,0,"""Africa""" +2024-01-29,65982,5101,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3491.38,{},143421,0,"""Europe""" +2024-07-03,65983,7278,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3688.41,"{\""loyalty\"": \""12%\""}",166362,1,"""Asia""" +2024-06-26,65984,746,"[\""Phone\""]",2577.82,"{\""seasonal\"": \""12%\""}",177502,1,"""South America""" +2023-08-07,65985,2745,"[\""Monitor\"", \""Charger\""]",3249.7,{},69124,0,"""South America""" +2023-02-25,65986,2095,"[\""Tablet\"", \""Laptop\""]",3763.45,{},240962,1,"""South America""" +2024-09-30,65987,5582,"[\""Phone\"", \""Charger\""]",1061.92,{},45830,1,"""South America""" +2024-12-30,65988,4381,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1249.31,"{\""seasonal\"": \""17%\""}",7189,1,"""Africa""" +2023-11-21,65989,5973,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",637.55,"{\""loyalty\"": \""24%\""}",56530,0,"""North America""" +2023-09-23,65990,4460,"[\""Tablet\"", \""Wireless Mouse\""]",3675.29,"{\""seasonal\"": \""28%\""}",299495,1,"""Africa""" +2023-02-06,65991,8693,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2236.99,{},13147,1,"""North America""" +2023-11-17,65992,9646,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1025.76,"{\"": \""10%\""}",179524,1,"""Asia""" +2024-04-10,65993,2569,"[\""Tablet\""]",4223.18,"{\""promo\"": \""20%\""}",182783,0,"""Europe""" +2024-01-27,65994,6397,"[\""Phone\"", \""Monitor\""]",1598.14,{},111313,0,"""Africa""" +2023-07-08,65995,6307,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1906.89,{},13752,1,"""Asia""" +2023-11-07,65996,3836,"[\""Laptop\""]",4311.61,{},160711,0,"""Africa""" +2023-11-22,65997,1376,"[\""Wireless Mouse\"", \""Headphones\""]",921.51,"{\""loyalty\"": \""16%\""}",174739,0,"""North America""" +2024-11-06,65998,7622,"[\""Charger\""]",2812.47,{},71011,0,"""Asia""" +2024-11-26,65999,8322,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4040.26,{},246159,0,"""Europe""" +2024-12-01,66000,4137,"[\""Tablet\""]",4523.84,"{\""promo\"": \""29%\""}",103662,0,"""North America""" +2024-04-24,66001,9619,"[\""Phone\"", \""Monitor\""]",1772.03,"{\""promo\"": \""30%\""}",142101,1,"""South America""" +2024-06-12,66002,454,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",904.83,"{\""loyalty\"": \""8%\""}",168994,1,"""Africa""" +2024-11-26,66003,6735,"[\""Headphones\"", \""Tablet\""]",711.65,"{\"": \""22%\""}",195018,1,"""Asia""" +2024-09-24,66004,1798,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",859.5,{},223319,1,"""Europe""" +2024-09-30,66005,1482,"[\""Tablet\"", \""Wireless Mouse\""]",4045.36,{},121008,0,"""Africa""" +2023-09-12,66006,2814,"[\""Charger\"", \""Keyboard\""]",2108.65,{},289465,0,"""Europe""" +2024-01-04,66007,2809,"[\""Headphones\""]",4600.11,{},296184,0,"""Asia""" +2024-01-03,66008,7069,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",527.64,{},119039,0,"""North America""" +2024-03-04,66009,9982,"[\""Phone\"", \""Laptop\""]",1325.01,{},188047,0,"""South America""" +2023-02-09,66010,6087,"[\""Keyboard\""]",1617.68,{},262607,1,"""South America""" +2023-05-20,66011,8529,"[\""Headphones\"", \""Charger\""]",873.56,"{\""seasonal\"": \""11%\""}",169205,0,"""South America""" +2023-11-09,66012,9850,"[\""Keyboard\""]",1994.62,"{\""seasonal\"": \""17%\""}",247251,0,"""Europe""" +2024-02-24,66013,6199,"[\""Keyboard\"", \""Headphones\""]",1165.18,{},117372,0,"""North America""" +2024-07-18,66014,4790,"[\""Keyboard\""]",1351.63,"{\""loyalty\"": \""30%\""}",139480,0,"""Europe""" +2024-05-25,66015,684,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3992.87,{},121490,1,"""Asia""" +2024-03-06,66016,9555,"[\""Keyboard\""]",1394.01,{},172393,0,"""Europe""" +2023-12-18,66017,2429,"[\""Charger\""]",2895.63,{},206442,1,"""Asia""" +2024-02-05,66018,2355,"[\""Tablet\""]",1279.0,{},120210,1,"""Europe""" +2023-04-05,66019,2629,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4733.49,{},231046,1,"""Africa""" +2024-05-06,66020,2130,"[\""Headphones\""]",4093.46,{},136968,1,"""Europe""" +2024-07-13,66021,3423,"[\""Wireless Mouse\""]",3853.97,"{\""promo\"": \""9%\""}",73149,1,"""North America""" +2023-09-25,66022,9062,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",117.25,{},110407,0,"""South America""" +2023-02-04,66023,2387,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2383.43,{},15419,0,"""Asia""" +2024-05-23,66024,7684,"[\""Headphones\"", \""Monitor\""]",1626.58,"{\""loyalty\"": \""10%\""}",12383,0,"""North America""" +2023-10-07,66025,4307,"[\""Monitor\"", \""Tablet\""]",2139.25,"{\""promo\"": \""23%\""}",91524,0,"""North America""" +2023-01-14,66026,1585,"[\""Tablet\"", \""Monitor\""]",3320.23,"{\""seasonal\"": \""27%\""}",232075,1,"""Asia""" +2024-11-14,66027,2658,"[\""Charger\""]",3040.99,{},290140,0,"""Asia""" +2023-09-23,66028,5838,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2224.56,{},279116,0,"""South America""" +2023-08-02,66029,8768,"[\""Wireless Mouse\""]",1897.26,"{\"": \""29%\""}",100404,0,"""North America""" +2024-04-27,66030,8198,"[\""Charger\"", \""Wireless Mouse\""]",1313.28,{},280257,1,"""North America""" +2024-01-01,66031,4417,"[\""Laptop\""]",4189.25,"{\""seasonal\"": \""21%\""}",93618,0,"""Asia""" +2023-06-24,66032,3596,"[\""Phone\"", \""Charger\""]",4735.64,"{\""loyalty\"": \""5%\""}",35227,1,"""Asia""" +2023-01-16,66033,6113,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3500.46,"{\""loyalty\"": \""21%\""}",296371,1,"""South America""" +2024-03-11,66034,6618,"[\""Phone\"", \""Wireless Mouse\""]",4722.56,{},185463,1,"""Asia""" +2023-07-07,66035,5712,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",651.77,"{\"": \""30%\""}",150474,1,"""South America""" +2023-01-07,66036,6242,"[\""Tablet\""]",2766.41,{},30101,1,"""North America""" +2023-05-27,66037,433,"[\""Wireless Mouse\""]",2362.18,{},77382,1,"""Asia""" +2024-12-02,66038,5364,"[\""Charger\"", \""Wireless Mouse\""]",3943.35,{},76677,0,"""North America""" +2023-01-10,66039,6348,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4391.72,{},72581,0,"""North America""" +2023-04-28,66040,2094,"[\""Monitor\""]",131.87,"{\""seasonal\"": \""25%\""}",152055,1,"""Africa""" +2024-08-08,66041,6877,"[\""Charger\"", \""Laptop\""]",2683.14,{},247611,0,"""Europe""" +2023-04-21,66042,2258,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1347.63,{},128088,0,"""North America""" +2023-01-30,66043,6254,"[\""Keyboard\"", \""Charger\""]",1251.6,{},101864,0,"""North America""" +2023-01-03,66044,49,"[\""Laptop\""]",592.35,"{\""loyalty\"": \""6%\""}",256702,1,"""Asia""" +2023-01-24,66045,2831,"[\""Laptop\""]",4090.36,{},237842,0,"""North America""" +2023-03-27,66046,9277,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3567.95,{},216388,1,"""North America""" +2023-06-08,66047,4555,"[\""Keyboard\"", \""Laptop\""]",4613.99,"{\""loyalty\"": \""7%\""}",114807,1,"""North America""" +2023-12-07,66048,5843,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3952.43,{},44841,1,"""South America""" +2023-09-22,66049,4484,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",592.75,{},114294,0,"""North America""" +2024-07-23,66050,9122,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2054.48,{},198996,0,"""Asia""" +2023-06-16,66051,3563,"[\""Laptop\"", \""Monitor\""]",741.32,"{\"": \""14%\""}",31647,1,"""Asia""" +2023-12-23,66052,5144,"[\""Phone\""]",4504.1,"{\""promo\"": \""13%\""}",263117,1,"""Asia""" +2024-01-12,66053,8316,"[\""Keyboard\""]",3976.73,"{\""seasonal\"": \""11%\""}",250657,0,"""Asia""" +2023-11-24,66054,5042,"[\""Charger\""]",3012.69,{},98521,0,"""Europe""" +2024-02-27,66055,5074,"[\""Tablet\"", \""Headphones\""]",1997.12,{},138549,0,"""Asia""" +2023-04-24,66056,8560,"[\""Keyboard\""]",3469.75,"{\"": \""11%\""}",22227,0,"""Asia""" +2023-11-23,66057,1086,"[\""Charger\"", \""Laptop\""]",532.91,{},232491,0,"""Europe""" +2023-02-25,66058,975,"[\""Tablet\"", \""Keyboard\""]",2898.5,"{\"": \""29%\""}",299185,0,"""Asia""" +2023-04-12,66059,3163,"[\""Charger\"", \""Monitor\""]",3770.01,"{\""promo\"": \""28%\""}",220599,0,"""Africa""" +2023-03-04,66060,6389,"[\""Keyboard\""]",3106.48,{},271507,0,"""Asia""" +2023-09-03,66061,3772,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1514.66,{},28103,0,"""Europe""" +2023-01-29,66062,5681,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2854.26,{},191335,1,"""Africa""" +2024-08-05,66063,5450,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4632.29,{},108968,1,"""Africa""" +2023-01-28,66064,6837,"[\""Charger\""]",2893.0,"{\""seasonal\"": \""28%\""}",97075,0,"""Europe""" +2024-11-04,66065,5365,"[\""Tablet\""]",840.57,"{\""seasonal\"": \""5%\""}",97233,0,"""Africa""" +2023-02-24,66066,937,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3691.22,{},120630,0,"""Europe""" +2024-10-12,66067,4883,"[\""Tablet\""]",4806.54,{},215674,1,"""North America""" +2024-07-22,66068,158,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1884.36,{},294406,1,"""Africa""" +2023-10-22,66069,9599,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2981.0,{},146491,0,"""Europe""" +2024-02-23,66070,8018,"[\""Monitor\""]",745.57,{},68098,1,"""Asia""" +2023-09-06,66071,9783,"[\""Charger\""]",4724.52,{},98159,1,"""South America""" +2023-06-23,66072,3085,"[\""Keyboard\""]",3253.43,"{\""seasonal\"": \""22%\""}",247712,0,"""South America""" +2023-08-19,66073,2716,"[\""Headphones\""]",785.35,"{\""loyalty\"": \""10%\""}",44809,1,"""North America""" +2023-12-24,66074,1350,"[\""Monitor\"", \""Tablet\""]",2782.47,"{\""seasonal\"": \""19%\""}",204890,1,"""North America""" +2023-04-02,66075,4836,"[\""Charger\"", \""Keyboard\""]",340.46,{},1451,1,"""Europe""" +2024-12-27,66076,9667,"[\""Headphones\"", \""Monitor\""]",3259.31,{},256869,0,"""Africa""" +2024-01-23,66077,8741,"[\""Monitor\"", \""Wireless Mouse\""]",2388.39,"{\""promo\"": \""17%\""}",58473,1,"""South America""" +2023-03-21,66078,3244,"[\""Keyboard\"", \""Tablet\""]",1731.52,{},109650,1,"""Europe""" +2023-10-23,66079,5048,"[\""Headphones\"", \""Wireless Mouse\""]",1294.56,"{\""loyalty\"": \""25%\""}",147975,1,"""Asia""" +2023-07-21,66080,6063,"[\""Laptop\"", \""Charger\""]",2485.27,{},109320,0,"""Asia""" +2023-12-20,66081,4303,"[\""Headphones\"", \""Keyboard\""]",1254.25,{},176661,1,"""Asia""" +2024-01-23,66082,2322,"[\""Headphones\""]",4660.94,"{\""seasonal\"": \""29%\""}",152406,1,"""Africa""" +2024-08-11,66083,3141,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2877.25,"{\""seasonal\"": \""15%\""}",243688,0,"""North America""" +2024-07-20,66084,4508,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1029.84,{},294010,0,"""Europe""" +2024-04-02,66085,5611,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2084.07,"{\"": \""10%\""}",89452,1,"""Asia""" +2024-07-20,66086,3794,"[\""Laptop\""]",2352.29,{},292332,0,"""Africa""" +2023-08-09,66087,5511,"[\""Tablet\"", \""Charger\""]",4877.17,{},168237,0,"""South America""" +2023-05-04,66088,452,"[\""Laptop\"", \""Wireless Mouse\""]",2545.22,"{\""promo\"": \""25%\""}",28954,1,"""Asia""" +2023-12-25,66089,6914,"[\""Headphones\""]",1840.33,{},45946,0,"""North America""" +2024-08-04,66090,2471,"[\""Laptop\""]",1130.45,"{\""promo\"": \""21%\""}",284030,0,"""Asia""" +2024-12-14,66091,7132,"[\""Monitor\"", \""Tablet\""]",2022.72,"{\""promo\"": \""19%\""}",94481,0,"""South America""" +2024-02-06,66092,45,"[\""Headphones\""]",921.01,"{\"": \""6%\""}",27751,1,"""North America""" +2024-07-11,66093,2814,"[\""Headphones\""]",4829.02,{},190349,1,"""Asia""" +2024-07-01,66094,7958,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2210.5,{},200294,0,"""Asia""" +2023-05-15,66095,8945,"[\""Headphones\"", \""Tablet\""]",4164.94,{},95381,0,"""Asia""" +2023-12-19,66096,2623,"[\""Monitor\"", \""Keyboard\""]",507.85,"{\""seasonal\"": \""16%\""}",251957,0,"""Europe""" +2023-12-23,66097,4825,"[\""Keyboard\""]",2410.28,{},193890,0,"""North America""" +2024-12-22,66098,8321,"[\""Monitor\""]",725.07,{},14818,0,"""South America""" +2024-11-08,66099,6170,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4643.61,"{\""seasonal\"": \""17%\""}",46477,1,"""Asia""" +2023-11-30,66100,9081,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4118.48,"{\""seasonal\"": \""20%\""}",58372,0,"""Africa""" +2024-12-25,66101,1925,"[\""Charger\"", \""Headphones\""]",1964.28,{},151572,1,"""South America""" +2023-06-10,66102,9681,"[\""Keyboard\"", \""Wireless Mouse\""]",3519.47,"{\""seasonal\"": \""12%\""}",273378,0,"""Asia""" +2023-10-02,66103,3778,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4799.36,{},184624,0,"""Europe""" +2024-06-13,66104,9172,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4940.11,"{\""loyalty\"": \""22%\""}",190775,1,"""Africa""" +2023-10-24,66105,5581,"[\""Tablet\"", \""Keyboard\""]",4242.5,"{\""seasonal\"": \""27%\""}",114505,0,"""South America""" +2024-05-17,66106,6925,"[\""Tablet\""]",1852.98,"{\""loyalty\"": \""8%\""}",108498,0,"""North America""" +2023-07-13,66107,8480,"[\""Laptop\"", \""Tablet\""]",2991.34,{},183917,0,"""North America""" +2024-04-23,66108,3180,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1580.93,"{\""promo\"": \""19%\""}",73705,0,"""North America""" +2024-06-09,66109,8291,"[\""Headphones\"", \""Tablet\""]",951.8,"{\""seasonal\"": \""29%\""}",65599,1,"""South America""" +2024-02-26,66110,7633,"[\""Charger\"", \""Phone\""]",1097.57,{},50811,1,"""Africa""" +2024-12-21,66111,4217,"[\""Charger\""]",939.39,"{\""loyalty\"": \""14%\""}",88174,1,"""North America""" +2024-07-03,66112,3320,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2983.29,"{\""promo\"": \""20%\""}",148412,1,"""Asia""" +2023-02-21,66113,3608,"[\""Wireless Mouse\"", \""Phone\""]",4634.14,"{\""seasonal\"": \""14%\""}",116285,1,"""Asia""" +2024-08-30,66114,6615,"[\""Tablet\"", \""Charger\""]",3366.35,"{\""promo\"": \""8%\""}",140762,1,"""South America""" +2024-11-29,66115,5449,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3879.16,{},188193,1,"""North America""" +2024-12-18,66116,304,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",381.78,{},229276,0,"""Asia""" +2023-12-30,66117,5846,"[\""Charger\""]",830.37,"{\""seasonal\"": \""24%\""}",276586,0,"""Asia""" +2024-08-19,66118,2946,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4958.05,"{\""promo\"": \""29%\""}",43990,0,"""South America""" +2023-07-08,66119,8693,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1951.14,"{\""loyalty\"": \""26%\""}",129054,1,"""Europe""" +2023-01-27,66120,4610,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4520.25,{},294467,1,"""Asia""" +2024-06-28,66121,2270,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3231.09,"{\"": \""5%\""}",261506,0,"""Asia""" +2023-11-17,66122,7509,"[\""Headphones\"", \""Laptop\""]",4508.75,"{\""promo\"": \""21%\""}",125954,1,"""Africa""" +2024-05-11,66123,3120,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3217.17,"{\"": \""7%\""}",59966,0,"""South America""" +2024-10-08,66124,7594,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",223.86,"{\""seasonal\"": \""29%\""}",102360,0,"""Asia""" +2024-04-01,66125,2574,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1552.56,"{\""promo\"": \""25%\""}",74319,0,"""North America""" +2023-10-17,66126,8118,"[\""Headphones\"", \""Tablet\""]",3303.78,"{\"": \""10%\""}",119390,0,"""North America""" +2024-05-27,66127,3881,"[\""Monitor\""]",274.16,"{\"": \""18%\""}",66856,1,"""Africa""" +2024-03-22,66128,8478,"[\""Tablet\""]",4898.24,"{\""loyalty\"": \""27%\""}",217693,1,"""South America""" +2024-05-11,66129,2138,"[\""Headphones\""]",4565.03,{},260198,0,"""Asia""" +2024-07-18,66130,5243,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1669.15,"{\""loyalty\"": \""22%\""}",132813,1,"""South America""" +2023-08-09,66131,5383,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2731.37,{},92811,1,"""North America""" +2023-10-30,66132,4938,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",167.21,{},163699,0,"""South America""" +2024-10-09,66133,7213,"[\""Phone\""]",3453.31,{},194767,0,"""Europe""" +2024-10-18,66134,3696,"[\""Keyboard\"", \""Wireless Mouse\""]",4462.57,"{\""loyalty\"": \""6%\""}",37847,0,"""Asia""" +2024-08-17,66135,7750,"[\""Phone\"", \""Tablet\""]",3923.97,"{\"": \""20%\""}",200832,0,"""North America""" +2024-11-03,66136,130,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",124.25,{},165911,1,"""South America""" +2023-03-06,66137,3813,"[\""Phone\""]",1874.14,"{\""seasonal\"": \""13%\""}",123808,0,"""South America""" +2023-10-24,66138,3883,"[\""Charger\"", \""Monitor\""]",4594.16,"{\""promo\"": \""25%\""}",32455,1,"""Europe""" +2023-05-30,66139,5985,"[\""Phone\""]",3105.5,"{\""loyalty\"": \""17%\""}",256622,1,"""Europe""" +2024-05-23,66140,6883,"[\""Keyboard\""]",1623.94,{},38051,1,"""Europe""" +2023-03-03,66141,4887,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1388.82,"{\""promo\"": \""30%\""}",294244,1,"""Africa""" +2024-02-22,66142,264,"[\""Wireless Mouse\"", \""Headphones\""]",2104.31,"{\"": \""19%\""}",268901,1,"""Asia""" +2024-07-13,66143,988,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1350.77,{},279545,0,"""Asia""" +2023-07-06,66144,7087,"[\""Phone\""]",4674.95,{},201674,1,"""Europe""" +2023-12-25,66145,1921,"[\""Headphones\"", \""Tablet\""]",4086.78,"{\""promo\"": \""15%\""}",217623,1,"""Asia""" +2023-11-12,66146,76,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3327.58,{},83933,0,"""Asia""" +2023-03-06,66147,9278,"[\""Charger\"", \""Monitor\""]",2048.91,{},160565,0,"""North America""" +2024-07-27,66148,252,"[\""Tablet\"", \""Wireless Mouse\""]",3518.09,{},238701,1,"""North America""" +2023-01-08,66149,5610,"[\""Tablet\""]",1983.51,"{\"": \""13%\""}",246919,0,"""South America""" +2024-04-25,66150,5588,"[\""Phone\""]",802.38,"{\""promo\"": \""9%\""}",113972,0,"""Africa""" +2023-05-24,66151,6367,"[\""Keyboard\"", \""Tablet\""]",2927.82,{},149383,0,"""North America""" +2023-07-05,66152,7729,"[\""Keyboard\"", \""Wireless Mouse\""]",1415.03,"{\""seasonal\"": \""17%\""}",73456,0,"""Asia""" +2024-07-06,66153,2508,"[\""Headphones\""]",2372.3,"{\""promo\"": \""6%\""}",20652,0,"""Europe""" +2024-02-08,66154,3876,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3763.34,{},14775,0,"""Asia""" +2023-10-05,66155,4244,"[\""Wireless Mouse\""]",3207.82,{},157505,0,"""Europe""" +2024-05-23,66156,1804,"[\""Phone\"", \""Laptop\""]",3587.44,{},257719,0,"""North America""" +2024-10-15,66157,8919,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2489.5,{},29781,0,"""North America""" +2024-12-24,66158,9159,"[\""Headphones\"", \""Monitor\""]",577.32,"{\""seasonal\"": \""9%\""}",236695,0,"""Asia""" +2023-05-15,66159,4070,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2668.45,{},202125,1,"""Europe""" +2023-02-01,66160,7082,"[\""Wireless Mouse\"", \""Headphones\""]",772.37,{},46898,1,"""Europe""" +2024-03-15,66161,2712,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4651.41,{},146751,0,"""Asia""" +2024-08-16,66162,8425,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4830.74,{},14949,0,"""Europe""" +2024-06-03,66163,9529,"[\""Tablet\"", \""Monitor\""]",2297.05,"{\""loyalty\"": \""19%\""}",297287,0,"""South America""" +2024-12-28,66164,2572,"[\""Phone\""]",2499.69,{},203247,0,"""South America""" +2023-11-11,66165,9085,"[\""Wireless Mouse\""]",1558.07,"{\""promo\"": \""5%\""}",142861,0,"""North America""" +2023-08-20,66166,9767,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1477.92,"{\"": \""6%\""}",191892,0,"""South America""" +2023-02-24,66167,3986,"[\""Tablet\"", \""Phone\""]",739.64,{},231231,1,"""North America""" +2023-06-14,66168,5297,"[\""Charger\"", \""Headphones\""]",3073.53,{},105492,0,"""North America""" +2023-06-07,66169,5481,"[\""Tablet\""]",4613.59,{},109283,1,"""South America""" +2023-10-26,66170,1372,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",693.09,"{\""loyalty\"": \""22%\""}",190847,1,"""South America""" +2023-07-28,66171,6748,"[\""Phone\""]",2223.34,{},161116,0,"""Asia""" +2023-03-10,66172,2858,"[\""Headphones\"", \""Tablet\""]",3007.52,{},114522,0,"""Europe""" +2023-05-29,66173,3940,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4246.49,{},4585,0,"""Africa""" +2024-08-31,66174,2140,"[\""Keyboard\""]",721.46,"{\""seasonal\"": \""21%\""}",134405,0,"""Europe""" +2024-10-11,66175,7998,"[\""Charger\"", \""Headphones\""]",4458.89,{},170493,1,"""South America""" +2024-08-25,66176,7028,"[\""Keyboard\"", \""Tablet\""]",2005.63,{},194073,1,"""Africa""" +2023-06-08,66177,1174,"[\""Wireless Mouse\"", \""Headphones\""]",272.73,"{\""seasonal\"": \""24%\""}",131326,1,"""Africa""" +2024-06-14,66178,2250,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1018.42,{},13425,1,"""Europe""" +2024-10-22,66179,5956,"[\""Laptop\"", \""Headphones\""]",4870.25,{},140605,0,"""Africa""" +2024-07-12,66180,1790,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",222.15,"{\""promo\"": \""8%\""}",257972,1,"""South America""" +2023-08-04,66181,7594,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1612.1,{},147985,1,"""South America""" +2023-01-15,66182,8603,"[\""Keyboard\""]",60.53,"{\"": \""15%\""}",66073,0,"""Africa""" +2024-12-30,66183,3140,"[\""Laptop\"", \""Wireless Mouse\""]",1296.75,{},59577,1,"""Europe""" +2024-10-05,66184,8524,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2717.33,"{\"": \""17%\""}",126823,0,"""Europe""" +2023-09-11,66185,3791,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1120.91,{},273935,0,"""Africa""" +2024-05-09,66186,4395,"[\""Monitor\"", \""Phone\""]",2377.41,"{\"": \""8%\""}",248165,1,"""South America""" +2023-04-07,66187,1084,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1926.85,{},208111,0,"""Africa""" +2024-06-12,66188,6825,"[\""Phone\""]",2947.97,"{\""seasonal\"": \""14%\""}",12900,1,"""Europe""" +2024-03-21,66189,2168,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3338.15,{},94634,1,"""North America""" +2023-03-02,66190,4888,"[\""Laptop\""]",3531.93,{},115626,0,"""Asia""" +2024-04-07,66191,3317,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1234.66,"{\""loyalty\"": \""10%\""}",230512,0,"""Africa""" +2024-11-25,66192,4807,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4464.75,"{\"": \""9%\""}",266625,1,"""Africa""" +2024-11-15,66193,12,"[\""Headphones\""]",748.13,"{\""loyalty\"": \""16%\""}",252017,0,"""Asia""" +2023-02-18,66194,7096,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3010.93,{},137568,1,"""Europe""" +2024-03-05,66195,4446,"[\""Monitor\"", \""Phone\""]",1048.47,"{\"": \""12%\""}",89849,1,"""Asia""" +2023-05-02,66196,3724,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2349.48,"{\""loyalty\"": \""20%\""}",69698,0,"""Europe""" +2024-05-05,66197,9984,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2163.19,"{\""seasonal\"": \""14%\""}",276439,0,"""South America""" +2024-03-13,66198,5760,"[\""Wireless Mouse\""]",674.87,{},138932,0,"""Europe""" +2024-10-19,66199,5394,"[\""Wireless Mouse\"", \""Charger\""]",3491.3,{},160128,1,"""Europe""" +2024-08-01,66200,1316,"[\""Keyboard\""]",3229.7,{},47469,0,"""South America""" +2024-02-09,66201,5743,"[\""Laptop\"", \""Headphones\""]",2006.74,{},258769,0,"""Europe""" +2024-08-08,66202,5921,"[\""Monitor\"", \""Charger\""]",4693.58,"{\"": \""20%\""}",252487,1,"""South America""" +2024-11-06,66203,5050,"[\""Wireless Mouse\"", \""Headphones\""]",1610.33,{},59568,1,"""South America""" +2023-07-04,66204,2795,"[\""Charger\"", \""Tablet\""]",4806.75,{},72999,1,"""Europe""" +2023-05-29,66205,8513,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1880.73,{},198861,1,"""Europe""" +2024-06-07,66206,4535,"[\""Phone\"", \""Monitor\""]",71.52,{},141245,1,"""Africa""" +2024-02-06,66207,755,"[\""Tablet\"", \""Charger\""]",461.41,{},98904,1,"""Asia""" +2024-11-22,66208,4782,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",795.69,"{\""loyalty\"": \""5%\""}",147660,0,"""Africa""" +2024-02-11,66209,9390,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4263.47,"{\""promo\"": \""21%\""}",93049,0,"""Europe""" +2024-01-22,66210,1212,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",458.58,"{\"": \""6%\""}",156888,0,"""South America""" +2024-08-02,66211,3666,"[\""Headphones\""]",2717.78,"{\""seasonal\"": \""19%\""}",80698,0,"""North America""" +2024-12-23,66212,7081,"[\""Tablet\""]",3624.05,{},189390,0,"""Africa""" +2023-08-19,66213,874,"[\""Laptop\"", \""Headphones\""]",1717.54,{},165710,1,"""South America""" +2024-12-13,66214,2766,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1215.09,"{\""seasonal\"": \""7%\""}",296795,1,"""Africa""" +2023-05-24,66215,5825,"[\""Headphones\"", \""Monitor\""]",3374.89,"{\""loyalty\"": \""13%\""}",151677,0,"""Europe""" +2024-08-06,66216,3946,"[\""Tablet\"", \""Monitor\""]",866.17,{},106247,0,"""Africa""" +2024-06-14,66217,8811,"[\""Phone\""]",411.77,"{\""loyalty\"": \""23%\""}",115740,1,"""Africa""" +2024-11-21,66218,9997,"[\""Laptop\"", \""Charger\""]",4035.14,{},94178,0,"""South America""" +2023-12-11,66219,5441,"[\""Headphones\"", \""Tablet\""]",2005.25,{},40249,0,"""South America""" +2024-12-10,66220,466,"[\""Monitor\""]",2802.76,"{\""seasonal\"": \""16%\""}",62915,0,"""Europe""" +2023-07-14,66221,4460,"[\""Charger\"", \""Wireless Mouse\""]",324.25,"{\""seasonal\"": \""22%\""}",86831,1,"""Asia""" +2023-05-17,66222,601,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1505.13,"{\"": \""5%\""}",27218,1,"""Asia""" +2024-03-18,66223,9625,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",639.24,{},191537,0,"""Africa""" +2023-03-26,66224,7023,"[\""Keyboard\""]",1891.14,"{\"": \""23%\""}",209217,0,"""North America""" +2023-10-06,66225,1661,"[\""Phone\""]",374.8,"{\"": \""22%\""}",19822,0,"""Europe""" +2024-06-29,66226,6751,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4020.82,{},171872,1,"""Asia""" +2024-08-09,66227,8211,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2140.73,"{\"": \""17%\""}",62967,0,"""Africa""" +2024-04-25,66228,6346,"[\""Tablet\"", \""Phone\""]",2535.31,{},135663,0,"""Asia""" +2024-08-03,66229,6158,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4123.37,"{\""seasonal\"": \""24%\""}",57119,0,"""Africa""" +2024-01-02,66230,3169,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2689.56,"{\"": \""27%\""}",106399,1,"""North America""" +2023-09-11,66231,7531,"[\""Keyboard\""]",2836.9,{},81312,0,"""Europe""" +2024-09-27,66232,8716,"[\""Headphones\""]",4967.44,"{\"": \""24%\""}",63858,0,"""Africa""" +2024-09-12,66233,5480,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",283.53,"{\""loyalty\"": \""16%\""}",233208,1,"""Africa""" +2023-02-16,66234,2051,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",458.96,"{\"": \""13%\""}",269576,1,"""North America""" +2024-11-13,66235,4897,"[\""Laptop\"", \""Headphones\""]",4929.66,"{\""loyalty\"": \""18%\""}",133112,0,"""North America""" +2023-09-14,66236,8978,"[\""Headphones\"", \""Keyboard\""]",1483.1,{},154421,0,"""Asia""" +2023-09-15,66237,1097,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4254.23,{},165052,1,"""Europe""" +2024-10-03,66238,2456,"[\""Charger\""]",2551.74,{},55352,0,"""Africa""" +2024-11-24,66239,1852,"[\""Wireless Mouse\""]",4548.26,{},94141,0,"""Europe""" +2023-03-05,66240,8158,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2380.09,"{\"": \""9%\""}",254463,1,"""North America""" +2024-02-05,66241,3829,"[\""Tablet\"", \""Keyboard\""]",349.12,{},24966,1,"""North America""" +2023-12-24,66242,4317,"[\""Monitor\"", \""Charger\""]",4764.12,"{\""loyalty\"": \""10%\""}",206986,1,"""Africa""" +2023-10-04,66243,8108,"[\""Monitor\""]",594.93,"{\""seasonal\"": \""9%\""}",100696,1,"""South America""" +2024-08-18,66244,1211,"[\""Tablet\"", \""Monitor\""]",977.29,"{\""promo\"": \""17%\""}",237393,0,"""South America""" +2024-05-24,66245,874,"[\""Wireless Mouse\""]",1856.7,{},260463,0,"""North America""" +2024-02-20,66246,9823,"[\""Wireless Mouse\"", \""Phone\""]",669.54,"{\"": \""30%\""}",199765,0,"""Africa""" +2024-12-03,66247,9255,"[\""Headphones\""]",4815.47,"{\"": \""27%\""}",69625,1,"""North America""" +2024-08-10,66248,3641,"[\""Wireless Mouse\"", \""Phone\""]",2921.5,{},295300,0,"""Africa""" +2024-11-06,66249,8157,"[\""Monitor\""]",958.45,"{\"": \""24%\""}",114493,0,"""Europe""" +2024-02-10,66250,796,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",604.48,{},74192,1,"""Africa""" +2024-05-25,66251,8485,"[\""Tablet\"", \""Monitor\""]",1651.73,"{\""promo\"": \""27%\""}",87655,1,"""Africa""" +2023-08-06,66252,4503,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",997.96,{},284275,0,"""Africa""" +2023-07-31,66253,842,"[\""Tablet\""]",2387.06,{},2755,0,"""Africa""" +2023-05-06,66254,821,"[\""Keyboard\"", \""Laptop\""]",244.48,"{\"": \""12%\""}",58228,1,"""Europe""" +2024-05-10,66255,802,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1289.09,"{\""promo\"": \""13%\""}",66716,0,"""Europe""" +2024-03-30,66256,8257,"[\""Keyboard\"", \""Headphones\""]",2262.07,{},267454,0,"""South America""" +2024-09-10,66257,462,"[\""Wireless Mouse\""]",955.16,{},67040,0,"""Asia""" +2023-11-05,66258,5558,"[\""Headphones\"", \""Monitor\""]",2102.11,{},178003,1,"""Europe""" +2024-11-16,66259,3268,"[\""Wireless Mouse\"", \""Phone\""]",2535.85,{},38304,1,"""Africa""" +2023-06-05,66260,2375,"[\""Headphones\"", \""Laptop\""]",2296.34,"{\""promo\"": \""16%\""}",139270,1,"""South America""" +2023-05-24,66261,4963,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1412.43,{},39295,0,"""North America""" +2023-07-02,66262,2775,"[\""Charger\"", \""Phone\""]",347.54,{},39722,0,"""North America""" +2023-09-02,66263,8624,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1859.46,"{\""seasonal\"": \""30%\""}",240307,1,"""Europe""" +2024-07-22,66264,9202,"[\""Tablet\""]",4092.46,{},139773,0,"""Asia""" +2024-05-04,66265,9394,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4287.38,{},183845,0,"""Africa""" +2023-01-25,66266,2346,"[\""Laptop\"", \""Charger\"", \""Phone\""]",622.98,"{\"": \""19%\""}",269217,0,"""Asia""" +2024-03-27,66267,4063,"[\""Wireless Mouse\"", \""Tablet\""]",4035.68,"{\"": \""17%\""}",45105,0,"""North America""" +2023-12-13,66268,9398,"[\""Charger\""]",591.12,{},246142,0,"""Africa""" +2023-02-15,66269,8814,"[\""Keyboard\""]",2351.65,"{\"": \""5%\""}",69232,0,"""North America""" +2023-12-27,66270,4235,"[\""Headphones\"", \""Laptop\""]",3124.18,{},164762,1,"""Africa""" +2023-06-21,66271,9675,"[\""Keyboard\"", \""Laptop\""]",4776.61,"{\""promo\"": \""27%\""}",276923,0,"""Europe""" +2023-05-13,66272,7598,"[\""Laptop\""]",3149.28,"{\"": \""15%\""}",249539,1,"""Asia""" +2023-06-25,66273,8279,"[\""Keyboard\"", \""Headphones\""]",3678.14,"{\""seasonal\"": \""26%\""}",204323,0,"""Europe""" +2023-12-11,66274,7265,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3181.84,"{\""seasonal\"": \""10%\""}",109547,0,"""Asia""" +2023-12-23,66275,1938,"[\""Wireless Mouse\""]",186.25,{},151832,1,"""South America""" +2024-08-25,66276,9125,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3858.81,{},206145,1,"""Asia""" +2023-08-24,66277,6142,"[\""Monitor\"", \""Keyboard\""]",1162.27,{},262219,0,"""Europe""" +2023-10-29,66278,9844,"[\""Charger\"", \""Wireless Mouse\""]",1999.56,{},18518,0,"""Africa""" +2023-12-12,66279,6008,"[\""Wireless Mouse\""]",1994.39,{},161284,0,"""South America""" +2023-04-27,66280,46,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",742.27,"{\""seasonal\"": \""15%\""}",153593,1,"""Africa""" +2024-09-19,66281,9455,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1311.4,"{\""seasonal\"": \""30%\""}",241068,1,"""Europe""" +2023-03-31,66282,9381,"[\""Tablet\""]",3529.01,"{\"": \""25%\""}",298028,0,"""South America""" +2024-01-09,66283,5036,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2295.9,"{\""promo\"": \""20%\""}",197240,0,"""Africa""" +2023-12-06,66284,2450,"[\""Wireless Mouse\""]",4881.23,{},241238,0,"""Asia""" +2023-12-01,66285,6070,"[\""Headphones\""]",1240.42,{},208304,0,"""South America""" +2024-01-12,66286,4227,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3998.12,"{\""seasonal\"": \""12%\""}",69906,0,"""South America""" +2024-01-26,66287,3264,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1245.18,"{\""loyalty\"": \""14%\""}",66089,1,"""Africa""" +2023-12-21,66288,357,"[\""Charger\""]",2057.74,{},191370,1,"""North America""" +2023-12-22,66289,3296,"[\""Wireless Mouse\""]",125.38,"{\"": \""24%\""}",179631,1,"""Europe""" +2023-05-04,66290,814,"[\""Wireless Mouse\"", \""Phone\""]",2662.93,{},217773,0,"""South America""" +2023-08-26,66291,7882,"[\""Tablet\"", \""Wireless Mouse\""]",556.97,{},46771,0,"""South America""" +2023-09-25,66292,7653,"[\""Keyboard\""]",3749.16,{},212208,1,"""South America""" +2023-10-06,66293,3506,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3202.93,{},156218,1,"""South America""" +2023-05-28,66294,5998,"[\""Charger\""]",4886.77,"{\""loyalty\"": \""14%\""}",86748,0,"""Africa""" +2024-03-31,66295,7691,"[\""Charger\"", \""Tablet\""]",3696.58,"{\""seasonal\"": \""13%\""}",180329,0,"""Asia""" +2023-07-20,66296,4671,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4443.42,{},215938,1,"""North America""" +2023-09-02,66297,9196,"[\""Headphones\""]",2188.98,"{\""seasonal\"": \""18%\""}",136154,0,"""South America""" +2023-02-07,66298,7069,"[\""Phone\""]",1652.77,{},240040,0,"""North America""" +2023-03-06,66299,2204,"[\""Headphones\""]",4075.62,{},117123,0,"""North America""" +2023-10-17,66300,6942,"[\""Charger\"", \""Headphones\""]",3268.65,{},216918,0,"""Europe""" +2024-06-07,66301,4077,"[\""Keyboard\""]",4218.77,"{\""loyalty\"": \""24%\""}",166211,0,"""Europe""" +2024-11-12,66302,3883,"[\""Monitor\""]",1638.28,"{\""seasonal\"": \""11%\""}",164151,1,"""North America""" +2023-01-26,66303,905,"[\""Charger\"", \""Headphones\""]",1454.0,"{\""loyalty\"": \""29%\""}",7255,1,"""North America""" +2023-11-18,66304,1972,"[\""Charger\"", \""Tablet\""]",3176.13,{},53103,0,"""South America""" +2023-07-09,66305,284,"[\""Charger\""]",1120.32,{},267441,1,"""North America""" +2024-02-04,66306,6650,"[\""Monitor\""]",913.3,"{\""promo\"": \""15%\""}",280462,0,"""South America""" +2024-04-23,66307,3951,"[\""Charger\""]",1537.19,{},45684,0,"""Europe""" +2023-09-14,66308,884,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",306.85,"{\""seasonal\"": \""30%\""}",105603,0,"""North America""" +2024-06-14,66309,4853,"[\""Headphones\"", \""Tablet\""]",78.26,{},255777,1,"""Africa""" +2024-11-21,66310,2756,"[\""Phone\""]",1759.48,"{\""seasonal\"": \""15%\""}",247879,1,"""Asia""" +2024-02-28,66311,9124,"[\""Headphones\"", \""Keyboard\""]",4235.66,"{\""loyalty\"": \""26%\""}",79723,0,"""Asia""" +2023-07-30,66312,1840,"[\""Monitor\""]",4505.42,{},132196,0,"""South America""" +2024-06-21,66313,7366,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1080.99,{},106466,0,"""North America""" +2024-11-02,66314,8185,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3254.82,"{\""promo\"": \""17%\""}",236972,0,"""Europe""" +2024-12-27,66315,779,"[\""Charger\""]",2125.02,{},51655,0,"""Europe""" +2023-05-22,66316,3896,"[\""Charger\"", \""Headphones\""]",1088.62,{},31652,0,"""South America""" +2024-09-05,66317,1897,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2752.78,{},33385,0,"""South America""" +2023-04-27,66318,5686,"[\""Phone\"", \""Keyboard\""]",4893.38,"{\""seasonal\"": \""21%\""}",268840,0,"""Asia""" +2024-05-18,66319,5661,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4655.22,"{\"": \""9%\""}",71924,0,"""South America""" +2024-04-06,66320,7930,"[\""Headphones\"", \""Monitor\""]",3509.75,{},265727,1,"""Africa""" +2023-05-14,66321,4353,"[\""Charger\"", \""Headphones\""]",2868.34,"{\"": \""18%\""}",110574,1,"""South America""" +2024-10-27,66322,9324,"[\""Keyboard\"", \""Monitor\""]",3672.58,{},31184,0,"""Europe""" +2024-08-05,66323,3361,"[\""Charger\"", \""Monitor\""]",3955.47,{},285340,1,"""North America""" +2023-06-29,66324,8397,"[\""Keyboard\"", \""Laptop\""]",3296.66,{},36934,1,"""Asia""" +2023-07-30,66325,2449,"[\""Charger\""]",3592.57,"{\""seasonal\"": \""19%\""}",151056,0,"""Europe""" +2023-03-17,66326,5403,"[\""Laptop\"", \""Headphones\""]",839.76,{},252364,1,"""Europe""" +2024-01-14,66327,6691,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2864.79,"{\""seasonal\"": \""30%\""}",192798,1,"""Asia""" +2024-11-11,66328,7924,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1493.83,"{\""promo\"": \""6%\""}",248704,1,"""North America""" +2024-08-30,66329,9433,"[\""Laptop\""]",2447.66,{},15905,1,"""Africa""" +2023-03-30,66330,4512,"[\""Keyboard\""]",4379.44,{},15489,0,"""Africa""" +2023-04-05,66331,4549,"[\""Monitor\"", \""Phone\""]",2571.11,{},203158,0,"""Europe""" +2023-07-03,66332,8106,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1876.83,"{\""seasonal\"": \""28%\""}",185679,0,"""North America""" +2023-09-10,66333,3437,"[\""Phone\""]",3345.44,{},115965,1,"""Africa""" +2023-03-14,66334,8510,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4353.13,{},152576,0,"""Europe""" +2023-04-15,66335,149,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1993.04,{},170152,1,"""South America""" +2024-12-14,66336,112,"[\""Charger\""]",2137.62,{},255873,1,"""Africa""" +2024-04-05,66337,2194,"[\""Monitor\""]",1009.1,"{\""loyalty\"": \""12%\""}",224817,0,"""Africa""" +2024-01-13,66338,6566,"[\""Laptop\"", \""Phone\""]",455.69,{},144784,1,"""Africa""" +2023-08-27,66339,7018,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3414.01,"{\"": \""8%\""}",216459,0,"""Asia""" +2023-03-03,66340,7643,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3710.36,{},74095,0,"""North America""" +2023-03-21,66341,3801,"[\""Laptop\"", \""Wireless Mouse\""]",1736.08,{},81098,0,"""Asia""" +2023-01-01,66342,8300,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4356.62,"{\""loyalty\"": \""17%\""}",27798,1,"""South America""" +2023-09-12,66343,8261,"[\""Charger\""]",2374.27,{},105136,0,"""Europe""" +2023-11-28,66344,8388,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",959.58,"{\""seasonal\"": \""12%\""}",47858,1,"""South America""" +2024-04-21,66345,6724,"[\""Wireless Mouse\""]",671.43,{},233845,0,"""Africa""" +2023-02-03,66346,2639,"[\""Tablet\"", \""Monitor\""]",3763.26,"{\""seasonal\"": \""13%\""}",56006,0,"""North America""" +2023-10-22,66347,8463,"[\""Tablet\""]",2784.18,"{\""seasonal\"": \""11%\""}",294356,1,"""Europe""" +2023-09-14,66348,1552,"[\""Phone\"", \""Monitor\""]",2577.1,{},143474,1,"""North America""" +2023-01-12,66349,3529,"[\""Headphones\""]",808.55,{},294490,1,"""South America""" +2023-12-08,66350,9958,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2428.46,{},83482,0,"""South America""" +2023-10-01,66351,5829,"[\""Charger\"", \""Phone\""]",3918.63,{},169793,1,"""Africa""" +2024-08-13,66352,165,"[\""Monitor\""]",2606.01,{},66939,1,"""Asia""" +2023-06-01,66353,492,"[\""Charger\""]",2231.79,"{\"": \""18%\""}",244557,1,"""South America""" +2024-04-24,66354,5916,"[\""Keyboard\"", \""Wireless Mouse\""]",761.78,"{\""loyalty\"": \""5%\""}",282216,1,"""South America""" +2024-10-20,66355,3184,"[\""Charger\""]",4326.39,{},80925,1,"""Africa""" +2024-08-05,66356,4204,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3474.73,"{\""promo\"": \""15%\""}",241045,0,"""Europe""" +2024-01-08,66357,4599,"[\""Headphones\""]",2289.34,"{\"": \""20%\""}",266827,1,"""Europe""" +2023-06-25,66358,1718,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3039.36,{},229348,1,"""Europe""" +2024-12-30,66359,1700,"[\""Headphones\"", \""Laptop\""]",2974.33,"{\""seasonal\"": \""20%\""}",89039,0,"""North America""" +2023-06-22,66360,8113,"[\""Keyboard\"", \""Monitor\""]",4999.1,{},282877,0,"""Europe""" +2024-01-01,66361,9616,"[\""Wireless Mouse\""]",2154.74,{},64251,1,"""Europe""" +2024-12-23,66362,7321,"[\""Keyboard\""]",1483.54,{},220199,1,"""North America""" +2024-08-09,66363,9485,"[\""Charger\"", \""Laptop\""]",3925.09,{},153304,0,"""Africa""" +2023-12-08,66364,9293,"[\""Charger\""]",1649.57,{},244738,1,"""Asia""" +2024-10-06,66365,6459,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1305.5,"{\""loyalty\"": \""27%\""}",172329,0,"""South America""" +2024-02-02,66366,6692,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4657.47,"{\"": \""17%\""}",35073,1,"""Europe""" +2024-05-03,66367,3722,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4731.81,{},250805,1,"""Asia""" +2024-03-12,66368,4713,"[\""Laptop\""]",509.86,"{\""loyalty\"": \""29%\""}",235875,1,"""Africa""" +2023-11-25,66369,1310,"[\""Keyboard\""]",231.87,{},66385,1,"""Africa""" +2024-06-21,66370,6936,"[\""Monitor\"", \""Laptop\""]",3122.57,"{\""loyalty\"": \""25%\""}",11418,1,"""North America""" +2024-09-27,66371,758,"[\""Headphones\""]",2346.93,"{\""loyalty\"": \""23%\""}",132594,0,"""North America""" +2024-07-23,66372,3064,"[\""Phone\"", \""Laptop\""]",1495.02,{},273084,1,"""South America""" +2023-03-26,66373,6107,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3674.24,{},27168,0,"""Europe""" +2023-02-26,66374,9513,"[\""Charger\"", \""Wireless Mouse\""]",2551.94,{},44855,1,"""Africa""" +2024-04-03,66375,5250,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3036.91,"{\""loyalty\"": \""29%\""}",154706,1,"""South America""" +2024-09-30,66376,2077,"[\""Phone\"", \""Wireless Mouse\""]",4535.41,{},176857,0,"""South America""" +2023-05-09,66377,2142,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2642.43,{},209919,1,"""North America""" +2024-12-11,66378,6741,"[\""Laptop\""]",1015.79,{},8467,0,"""Asia""" +2023-10-17,66379,4442,"[\""Wireless Mouse\"", \""Phone\""]",2251.2,{},137099,1,"""Asia""" +2024-05-05,66380,5290,"[\""Keyboard\""]",1726.88,"{\""loyalty\"": \""11%\""}",19258,0,"""North America""" +2024-06-01,66381,8115,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3083.47,"{\"": \""16%\""}",220319,0,"""North America""" +2024-07-16,66382,1072,"[\""Wireless Mouse\""]",1165.65,"{\""seasonal\"": \""10%\""}",144612,1,"""Africa""" +2023-01-22,66383,5090,"[\""Laptop\""]",2677.18,{},192538,1,"""Europe""" +2023-02-15,66384,9670,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4371.5,{},18288,0,"""South America""" +2023-11-05,66385,6022,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2280.85,{},230920,1,"""Europe""" +2023-08-31,66386,436,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1519.94,"{\"": \""29%\""}",132931,0,"""Asia""" +2023-08-16,66387,4251,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1645.2,"{\""loyalty\"": \""20%\""}",154971,1,"""South America""" +2024-03-16,66388,5004,"[\""Phone\"", \""Laptop\""]",2792.45,"{\""seasonal\"": \""14%\""}",44830,0,"""Asia""" +2024-11-13,66389,7593,"[\""Keyboard\"", \""Tablet\""]",2372.54,"{\"": \""10%\""}",269609,1,"""Africa""" +2023-03-09,66390,1283,"[\""Wireless Mouse\""]",514.53,"{\""loyalty\"": \""22%\""}",208851,0,"""Asia""" +2024-10-16,66391,1382,"[\""Monitor\"", \""Laptop\""]",2153.47,{},159786,0,"""South America""" +2024-04-24,66392,1860,"[\""Keyboard\"", \""Phone\""]",4355.04,"{\""loyalty\"": \""5%\""}",194409,0,"""Asia""" +2024-10-02,66393,4342,"[\""Keyboard\"", \""Headphones\""]",2288.29,{},267420,1,"""Africa""" +2023-12-01,66394,5107,"[\""Charger\""]",1113.11,{},270743,0,"""Asia""" +2024-03-23,66395,2029,"[\""Wireless Mouse\"", \""Headphones\""]",106.06,"{\""loyalty\"": \""16%\""}",183881,0,"""Africa""" +2024-01-04,66396,1734,"[\""Phone\""]",4090.33,"{\""promo\"": \""15%\""}",16805,1,"""Asia""" +2024-05-18,66397,4980,"[\""Monitor\"", \""Tablet\""]",3413.37,{},37214,1,"""North America""" +2024-08-12,66398,3915,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",328.85,{},253765,1,"""Africa""" +2023-03-21,66399,8161,"[\""Tablet\"", \""Wireless Mouse\""]",647.99,"{\""seasonal\"": \""21%\""}",69933,0,"""Europe""" +2023-10-04,66400,2975,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",106.85,{},54306,0,"""Europe""" +2023-11-01,66401,7481,"[\""Headphones\""]",3414.61,"{\""seasonal\"": \""27%\""}",207528,0,"""South America""" +2024-04-29,66402,6509,"[\""Phone\""]",3689.52,"{\"": \""23%\""}",112546,1,"""South America""" +2024-02-16,66403,391,"[\""Phone\"", \""Monitor\""]",3182.47,{},140102,0,"""Africa""" +2023-02-14,66404,5910,"[\""Monitor\""]",425.86,{},195125,0,"""Asia""" +2024-04-23,66405,559,"[\""Charger\""]",1636.82,{},276448,1,"""Europe""" +2023-10-07,66406,4459,"[\""Wireless Mouse\""]",2703.8,"{\"": \""20%\""}",224182,0,"""North America""" +2024-03-18,66407,922,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3078.0,"{\""seasonal\"": \""15%\""}",106970,1,"""Asia""" +2023-09-01,66408,9797,"[\""Laptop\""]",3108.1,{},106417,0,"""South America""" +2024-05-20,66409,8001,"[\""Phone\"", \""Keyboard\""]",4882.61,"{\"": \""6%\""}",122594,1,"""Europe""" +2024-04-04,66410,5744,"[\""Laptop\""]",1680.29,{},206714,0,"""Europe""" +2023-10-26,66411,3175,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3044.0,{},54033,1,"""North America""" +2023-05-28,66412,2921,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3473.57,"{\""loyalty\"": \""21%\""}",20991,1,"""North America""" +2023-03-20,66413,5006,"[\""Charger\"", \""Wireless Mouse\""]",179.04,"{\""promo\"": \""12%\""}",123705,1,"""North America""" +2023-11-07,66414,6761,"[\""Monitor\"", \""Wireless Mouse\""]",2704.11,"{\""seasonal\"": \""12%\""}",251399,1,"""South America""" +2024-06-06,66415,2809,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1890.51,{},13686,0,"""Asia""" +2023-12-17,66416,3287,"[\""Tablet\"", \""Phone\""]",968.72,"{\"": \""8%\""}",146709,0,"""Africa""" +2024-01-06,66417,9190,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3442.93,"{\""seasonal\"": \""28%\""}",299804,0,"""North America""" +2024-06-03,66418,6320,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4915.6,"{\""loyalty\"": \""7%\""}",114097,1,"""South America""" +2023-08-06,66419,7729,"[\""Laptop\""]",2879.29,"{\""seasonal\"": \""12%\""}",146512,0,"""North America""" +2024-12-01,66420,4487,"[\""Phone\""]",1441.57,"{\""loyalty\"": \""26%\""}",277440,0,"""Africa""" +2023-02-21,66421,2545,"[\""Charger\""]",4720.64,{},282293,1,"""Asia""" +2023-11-09,66422,4870,"[\""Monitor\""]",4179.87,"{\"": \""29%\""}",8446,1,"""Asia""" +2023-02-05,66423,3136,"[\""Headphones\""]",1589.78,"{\""seasonal\"": \""29%\""}",133845,0,"""South America""" +2023-08-24,66424,904,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3310.1,"{\""promo\"": \""22%\""}",156599,0,"""South America""" +2024-03-09,66425,5712,"[\""Monitor\"", \""Laptop\""]",4197.5,{},31210,1,"""North America""" +2024-06-22,66426,544,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3164.14,{},133274,0,"""North America""" +2023-09-18,66427,5378,"[\""Phone\"", \""Keyboard\""]",577.47,{},168125,1,"""Europe""" +2024-09-15,66428,2761,"[\""Wireless Mouse\"", \""Monitor\""]",4923.76,"{\""promo\"": \""5%\""}",294828,1,"""North America""" +2024-03-26,66429,9257,"[\""Phone\""]",1270.48,{},89628,1,"""North America""" +2023-04-25,66430,1414,"[\""Tablet\""]",481.26,{},23009,1,"""North America""" +2024-03-09,66431,73,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",794.91,"{\""seasonal\"": \""13%\""}",269864,1,"""Asia""" +2023-05-30,66432,4380,"[\""Phone\"", \""Charger\""]",1955.86,"{\""loyalty\"": \""19%\""}",249812,0,"""Asia""" +2024-12-21,66433,2529,"[\""Monitor\"", \""Laptop\""]",3639.7,{},57867,0,"""Africa""" +2023-11-19,66434,4887,"[\""Phone\""]",1350.46,{},156395,0,"""Africa""" +2024-02-28,66435,966,"[\""Laptop\""]",192.58,"{\"": \""19%\""}",180498,0,"""South America""" +2023-11-07,66436,3488,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2584.38,"{\""seasonal\"": \""10%\""}",184768,0,"""Africa""" +2023-11-19,66437,5627,"[\""Wireless Mouse\""]",2058.46,"{\""loyalty\"": \""6%\""}",92893,0,"""Europe""" +2023-03-03,66438,8393,"[\""Phone\"", \""Charger\""]",2400.69,{},10754,1,"""Asia""" +2023-10-14,66439,8782,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4953.01,{},231191,1,"""North America""" +2024-05-18,66440,7205,"[\""Tablet\""]",929.61,"{\""seasonal\"": \""13%\""}",168124,0,"""Europe""" +2023-10-02,66441,3630,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3804.91,{},244519,1,"""Europe""" +2024-04-28,66442,1277,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2824.57,"{\""loyalty\"": \""9%\""}",60145,0,"""South America""" +2023-03-04,66443,594,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2047.42,{},246332,1,"""North America""" +2023-12-24,66444,9522,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",564.22,"{\""seasonal\"": \""20%\""}",118733,1,"""Europe""" +2023-07-01,66445,3714,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2646.47,{},116613,1,"""Asia""" +2023-01-06,66446,9035,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2831.02,{},43532,0,"""Asia""" +2024-01-11,66447,897,"[\""Wireless Mouse\""]",181.68,"{\""promo\"": \""16%\""}",76678,1,"""Africa""" +2023-10-16,66448,9880,"[\""Phone\""]",1302.2,{},108986,1,"""Asia""" +2023-07-04,66449,8420,"[\""Charger\"", \""Monitor\""]",2734.46,"{\""promo\"": \""7%\""}",241793,1,"""North America""" +2024-06-22,66450,6517,"[\""Wireless Mouse\""]",687.24,"{\"": \""17%\""}",281243,0,"""Africa""" +2024-07-21,66451,4750,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",264.05,{},196815,0,"""North America""" +2023-09-01,66452,8284,"[\""Tablet\""]",3939.28,"{\""promo\"": \""9%\""}",133477,0,"""North America""" +2024-10-28,66453,663,"[\""Headphones\"", \""Tablet\""]",3923.9,"{\"": \""13%\""}",141757,1,"""Africa""" +2024-02-24,66454,7836,"[\""Keyboard\""]",1404.57,"{\"": \""28%\""}",104432,1,"""Europe""" +2024-02-06,66455,2930,"[\""Laptop\"", \""Tablet\""]",4495.55,"{\"": \""6%\""}",216545,0,"""Europe""" +2024-02-25,66456,3212,"[\""Headphones\""]",2766.14,"{\""promo\"": \""13%\""}",73122,0,"""Asia""" +2023-01-29,66457,6809,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3893.89,"{\""promo\"": \""15%\""}",65853,0,"""South America""" +2024-10-05,66458,5730,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",553.48,{},10296,0,"""Asia""" +2023-09-26,66459,8606,"[\""Laptop\"", \""Headphones\""]",4836.13,{},248859,1,"""Europe""" +2024-04-21,66460,1070,"[\""Keyboard\""]",2340.39,{},254628,1,"""Africa""" +2024-03-18,66461,9521,"[\""Phone\""]",3810.2,{},289815,0,"""South America""" +2023-05-24,66462,4721,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3545.08,"{\""loyalty\"": \""8%\""}",262703,1,"""Asia""" +2023-09-14,66463,8001,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",70.71,{},169047,1,"""Africa""" +2023-09-03,66464,8057,"[\""Tablet\""]",4373.85,"{\"": \""16%\""}",22467,1,"""Europe""" +2023-01-02,66465,4144,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4721.33,"{\""promo\"": \""24%\""}",64108,0,"""Africa""" +2023-09-20,66466,8125,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4213.54,"{\""seasonal\"": \""25%\""}",154376,1,"""South America""" +2024-06-27,66467,3295,"[\""Phone\"", \""Headphones\""]",1347.85,{},127073,1,"""Asia""" +2023-04-15,66468,9913,"[\""Charger\"", \""Laptop\""]",1363.19,"{\""promo\"": \""29%\""}",1408,1,"""South America""" +2023-04-11,66469,1059,"[\""Wireless Mouse\""]",2857.12,"{\""promo\"": \""16%\""}",162379,1,"""North America""" +2024-11-24,66470,2570,"[\""Wireless Mouse\"", \""Keyboard\""]",3396.71,"{\""loyalty\"": \""30%\""}",42914,1,"""South America""" +2024-11-09,66471,2523,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4223.69,"{\"": \""6%\""}",196070,1,"""Asia""" +2024-02-07,66472,2932,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1980.71,"{\""promo\"": \""17%\""}",207473,0,"""South America""" +2024-12-05,66473,3963,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1792.64,"{\""seasonal\"": \""17%\""}",257842,0,"""South America""" +2023-04-15,66474,6137,"[\""Charger\"", \""Phone\""]",254.11,{},104433,1,"""Europe""" +2024-10-11,66475,7953,"[\""Laptop\"", \""Monitor\""]",3999.55,"{\""seasonal\"": \""9%\""}",191476,0,"""North America""" +2023-06-20,66476,9045,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1178.52,"{\""promo\"": \""24%\""}",73117,1,"""North America""" +2023-03-03,66477,4391,"[\""Wireless Mouse\"", \""Phone\""]",3569.16,"{\"": \""16%\""}",207822,0,"""South America""" +2024-02-12,66478,5286,"[\""Charger\""]",2002.31,"{\"": \""25%\""}",270426,0,"""Africa""" +2024-08-01,66479,561,"[\""Charger\"", \""Tablet\""]",1433.1,{},162342,1,"""Europe""" +2023-06-17,66480,9861,"[\""Phone\"", \""Headphones\""]",2392.78,{},51457,1,"""North America""" +2024-03-30,66481,3489,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1991.86,"{\""seasonal\"": \""17%\""}",276525,0,"""South America""" +2024-08-12,66482,3063,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3874.01,{},291446,0,"""Asia""" +2023-11-26,66483,5024,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1953.96,{},298941,1,"""Europe""" +2024-01-30,66484,5555,"[\""Laptop\"", \""Headphones\""]",349.96,{},174040,0,"""South America""" +2023-03-14,66485,4493,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4090.5,"{\""seasonal\"": \""5%\""}",8480,0,"""Europe""" +2023-12-17,66486,2548,"[\""Phone\""]",4954.11,{},240569,1,"""Asia""" +2024-01-29,66487,4806,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4721.58,"{\""seasonal\"": \""5%\""}",92150,1,"""Africa""" +2024-10-29,66488,3869,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3870.7,{},124800,1,"""South America""" +2023-02-28,66489,1807,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2540.62,{},32355,1,"""Africa""" +2024-05-27,66490,1101,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3128.87,"{\""promo\"": \""23%\""}",293496,1,"""Africa""" +2024-01-31,66491,5585,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",597.44,"{\"": \""14%\""}",180302,1,"""South America""" +2024-06-17,66492,1819,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1789.91,"{\""promo\"": \""16%\""}",285588,0,"""Africa""" +2024-06-25,66493,7041,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3077.62,"{\""promo\"": \""20%\""}",172466,1,"""Asia""" +2023-09-08,66494,9379,"[\""Wireless Mouse\""]",119.61,"{\""loyalty\"": \""6%\""}",271333,1,"""Asia""" +2024-06-03,66495,5647,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2677.83,{},188577,1,"""South America""" +2024-10-08,66496,5587,"[\""Keyboard\"", \""Phone\""]",1217.55,{},11908,1,"""North America""" +2024-11-29,66497,5942,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1160.71,"{\""loyalty\"": \""8%\""}",80937,1,"""Africa""" +2023-04-25,66498,3635,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3717.63,{},168474,1,"""Africa""" +2024-04-20,66499,7950,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3746.72,{},251030,1,"""South America""" +2023-12-10,66500,7410,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3673.26,{},281394,1,"""Africa""" +2023-06-29,66501,6899,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2664.38,"{\""loyalty\"": \""14%\""}",104242,1,"""Asia""" +2024-12-17,66502,2898,"[\""Charger\"", \""Tablet\""]",3455.35,{},251779,1,"""Europe""" +2023-08-27,66503,1928,"[\""Headphones\"", \""Monitor\""]",1352.97,"{\""promo\"": \""27%\""}",51675,1,"""Europe""" +2023-05-07,66504,901,"[\""Phone\"", \""Headphones\""]",4597.22,"{\"": \""16%\""}",121432,0,"""South America""" +2023-04-19,66505,2034,"[\""Monitor\""]",2308.99,"{\""seasonal\"": \""17%\""}",89907,0,"""South America""" +2024-03-29,66506,876,"[\""Monitor\""]",3221.33,{},186534,1,"""Africa""" +2024-09-28,66507,962,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2124.39,{},79294,0,"""North America""" +2023-02-20,66508,9806,"[\""Keyboard\"", \""Wireless Mouse\""]",2953.97,"{\""promo\"": \""25%\""}",40427,1,"""Europe""" +2023-04-18,66509,7922,"[\""Monitor\""]",4459.84,"{\""seasonal\"": \""12%\""}",197448,0,"""Europe""" +2024-09-21,66510,315,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3763.33,"{\""seasonal\"": \""28%\""}",273289,1,"""Asia""" +2023-08-12,66511,6775,"[\""Tablet\"", \""Laptop\""]",1732.92,{},264927,1,"""South America""" +2024-10-07,66512,3499,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4474.68,"{\"": \""10%\""}",164522,0,"""North America""" +2024-02-28,66513,3909,"[\""Phone\""]",3201.87,"{\""promo\"": \""26%\""}",235393,1,"""Europe""" +2024-01-28,66514,5961,"[\""Headphones\""]",2847.2,"{\"": \""8%\""}",233252,0,"""Europe""" +2023-04-05,66515,4967,"[\""Charger\""]",1450.41,{},215208,0,"""Europe""" +2023-10-04,66516,2927,"[\""Phone\""]",4037.93,"{\""loyalty\"": \""17%\""}",177202,1,"""Asia""" +2024-05-22,66517,5621,"[\""Monitor\""]",430.3,{},166339,1,"""Africa""" +2024-12-13,66518,4122,"[\""Monitor\"", \""Keyboard\""]",2041.45,"{\""promo\"": \""21%\""}",135617,1,"""Asia""" +2024-07-03,66519,2344,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3640.41,{},195113,1,"""Europe""" +2023-12-15,66520,7986,"[\""Headphones\"", \""Monitor\""]",4354.62,{},61914,0,"""Europe""" +2023-05-09,66521,9702,"[\""Headphones\"", \""Wireless Mouse\""]",480.25,{},156560,0,"""Africa""" +2023-01-12,66522,6168,"[\""Keyboard\"", \""Phone\""]",410.78,{},219950,1,"""North America""" +2023-08-11,66523,3257,"[\""Tablet\"", \""Charger\""]",1982.52,{},205026,1,"""South America""" +2024-05-09,66524,4382,"[\""Phone\"", \""Keyboard\""]",1158.36,{},48024,1,"""Asia""" +2023-10-20,66525,8892,"[\""Tablet\"", \""Phone\""]",3411.2,{},228122,1,"""South America""" +2024-02-04,66526,520,"[\""Monitor\""]",3000.78,{},152497,0,"""Asia""" +2023-06-17,66527,2196,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2019.48,{},159890,0,"""Asia""" +2024-05-26,66528,4744,"[\""Charger\""]",3877.87,"{\""promo\"": \""13%\""}",32475,1,"""South America""" +2023-12-15,66529,2323,"[\""Keyboard\"", \""Headphones\""]",176.84,"{\"": \""7%\""}",39552,1,"""North America""" +2023-12-25,66530,1914,"[\""Keyboard\""]",3406.24,"{\""promo\"": \""24%\""}",214306,1,"""South America""" +2024-06-28,66531,1011,"[\""Keyboard\"", \""Monitor\""]",1507.2,{},3884,1,"""Asia""" +2023-01-15,66532,7354,"[\""Tablet\""]",1957.99,{},289958,1,"""Africa""" +2024-07-27,66533,6959,"[\""Headphones\"", \""Wireless Mouse\""]",1218.51,{},8275,1,"""Europe""" +2023-10-20,66534,4944,"[\""Wireless Mouse\""]",4837.16,"{\""promo\"": \""20%\""}",9019,0,"""Asia""" +2024-03-29,66535,7188,"[\""Monitor\"", \""Laptop\""]",4714.36,{},111734,1,"""South America""" +2023-12-16,66536,823,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",317.52,"{\""promo\"": \""13%\""}",42507,1,"""Europe""" +2023-01-09,66537,2428,"[\""Laptop\""]",2599.65,"{\""loyalty\"": \""13%\""}",3816,1,"""North America""" +2023-08-02,66538,6814,"[\""Headphones\""]",339.32,{},92978,1,"""South America""" +2023-12-20,66539,9428,"[\""Keyboard\""]",2604.96,"{\""seasonal\"": \""6%\""}",114789,1,"""North America""" +2024-10-09,66540,7164,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1582.61,{},284376,0,"""Europe""" +2024-04-13,66541,7220,"[\""Tablet\""]",4723.92,{},245237,1,"""Africa""" +2024-03-03,66542,9767,"[\""Keyboard\"", \""Headphones\""]",3553.95,"{\"": \""11%\""}",107082,1,"""South America""" +2023-08-22,66543,2148,"[\""Laptop\"", \""Wireless Mouse\""]",3798.4,"{\""seasonal\"": \""12%\""}",112244,1,"""North America""" +2024-07-18,66544,9383,"[\""Keyboard\""]",3286.12,"{\""promo\"": \""17%\""}",136724,0,"""Africa""" +2023-05-14,66545,7532,"[\""Headphones\""]",4845.86,"{\""seasonal\"": \""9%\""}",31931,0,"""Asia""" +2024-04-11,66546,8166,"[\""Headphones\"", \""Charger\""]",2205.72,"{\""seasonal\"": \""8%\""}",121716,0,"""Africa""" +2023-12-26,66547,1423,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",456.22,"{\""loyalty\"": \""5%\""}",250462,1,"""North America""" +2024-08-11,66548,8620,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4009.69,"{\""seasonal\"": \""23%\""}",209622,1,"""Asia""" +2023-07-11,66549,9992,"[\""Headphones\"", \""Charger\""]",3032.55,{},248022,1,"""Asia""" +2023-02-18,66550,3035,"[\""Wireless Mouse\""]",3296.6,{},176722,1,"""Asia""" +2024-01-29,66551,1893,"[\""Laptop\"", \""Monitor\""]",1378.26,"{\""loyalty\"": \""20%\""}",266378,0,"""Africa""" +2023-11-10,66552,7446,"[\""Charger\"", \""Tablet\""]",3842.18,"{\""seasonal\"": \""7%\""}",217490,1,"""North America""" +2024-09-19,66553,3515,"[\""Laptop\""]",2962.3,{},74473,1,"""Africa""" +2024-07-06,66554,317,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1680.55,{},241301,0,"""North America""" +2023-03-16,66555,3348,"[\""Monitor\""]",2907.17,"{\""loyalty\"": \""18%\""}",23660,0,"""Europe""" +2024-03-13,66556,6226,"[\""Monitor\""]",3936.3,{},103105,1,"""North America""" +2024-12-17,66557,5922,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2006.62,{},252908,0,"""South America""" +2024-05-31,66558,4787,"[\""Phone\""]",2508.85,"{\""loyalty\"": \""7%\""}",137545,0,"""North America""" +2024-07-13,66559,3408,"[\""Monitor\""]",3759.83,{},200275,1,"""South America""" +2023-01-12,66560,8833,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4319.46,"{\""loyalty\"": \""26%\""}",71336,1,"""Asia""" +2023-10-01,66561,8556,"[\""Wireless Mouse\"", \""Phone\""]",4589.84,{},283017,1,"""North America""" +2024-01-24,66562,815,"[\""Phone\""]",1181.5,"{\""loyalty\"": \""22%\""}",180724,1,"""Asia""" +2023-11-21,66563,4033,"[\""Keyboard\""]",4775.39,{},107857,1,"""Europe""" +2023-05-24,66564,8268,"[\""Monitor\"", \""Keyboard\""]",50.47,{},6443,0,"""Europe""" +2023-10-09,66565,746,"[\""Keyboard\"", \""Phone\""]",100.51,"{\""loyalty\"": \""26%\""}",288664,1,"""Europe""" +2024-05-18,66566,8998,"[\""Monitor\""]",2759.64,"{\"": \""27%\""}",49612,0,"""Asia""" +2023-04-17,66567,8305,"[\""Laptop\"", \""Tablet\""]",2685.05,"{\""promo\"": \""24%\""}",1083,1,"""South America""" +2024-12-10,66568,6692,"[\""Monitor\""]",2409.94,"{\""seasonal\"": \""7%\""}",19421,0,"""Africa""" +2023-08-11,66569,352,"[\""Wireless Mouse\""]",247.74,{},142239,0,"""South America""" +2024-03-20,66570,507,"[\""Laptop\"", \""Monitor\""]",4118.29,"{\"": \""10%\""}",136262,0,"""Asia""" +2023-12-28,66571,4775,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1040.16,{},38410,0,"""South America""" +2023-06-06,66572,7811,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4043.77,"{\""promo\"": \""8%\""}",223454,1,"""Asia""" +2023-11-05,66573,3808,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",829.02,"{\""loyalty\"": \""22%\""}",21626,0,"""Asia""" +2023-11-22,66574,4980,"[\""Wireless Mouse\""]",3543.51,{},7754,1,"""North America""" +2023-09-29,66575,9120,"[\""Laptop\""]",3536.23,"{\""loyalty\"": \""21%\""}",79069,0,"""Africa""" +2023-08-30,66576,7966,"[\""Headphones\"", \""Laptop\""]",2893.99,{},173621,0,"""North America""" +2023-07-26,66577,2441,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2113.15,"{\""promo\"": \""20%\""}",238116,1,"""Europe""" +2023-06-30,66578,6948,"[\""Charger\""]",2606.96,"{\""seasonal\"": \""6%\""}",137820,0,"""South America""" +2023-07-03,66579,2249,"[\""Wireless Mouse\"", \""Keyboard\""]",2075.58,"{\""loyalty\"": \""28%\""}",206812,1,"""South America""" +2024-09-21,66580,9131,"[\""Keyboard\""]",3378.77,"{\""promo\"": \""13%\""}",218927,0,"""Asia""" +2024-08-29,66581,2665,"[\""Wireless Mouse\"", \""Headphones\""]",4397.72,{},101586,0,"""North America""" +2024-04-17,66582,2510,"[\""Laptop\"", \""Monitor\""]",4031.91,{},201874,0,"""Africa""" +2023-09-28,66583,379,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2199.95,{},41362,0,"""Africa""" +2024-12-10,66584,745,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2206.37,{},31611,1,"""Africa""" +2024-07-31,66585,5543,"[\""Phone\"", \""Charger\""]",2853.73,"{\""loyalty\"": \""14%\""}",157015,0,"""Africa""" +2023-04-09,66586,5223,"[\""Tablet\"", \""Phone\""]",1686.38,{},290369,1,"""Africa""" +2024-01-20,66587,3841,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3911.57,"{\"": \""23%\""}",91460,0,"""Asia""" +2023-11-26,66588,9993,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2972.2,"{\""promo\"": \""12%\""}",59059,0,"""North America""" +2024-02-08,66589,82,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4660.26,"{\""promo\"": \""9%\""}",11476,0,"""Europe""" +2023-03-13,66590,7189,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",295.54,"{\""loyalty\"": \""6%\""}",32444,1,"""North America""" +2023-09-01,66591,2853,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4341.02,"{\""seasonal\"": \""23%\""}",164957,1,"""Asia""" +2023-02-24,66592,2616,"[\""Keyboard\""]",726.7,{},102257,0,"""Africa""" +2023-10-11,66593,7980,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2749.19,{},208540,1,"""South America""" +2024-05-14,66594,2523,"[\""Headphones\"", \""Laptop\""]",696.45,"{\""seasonal\"": \""25%\""}",26008,0,"""South America""" +2023-03-17,66595,3474,"[\""Wireless Mouse\"", \""Laptop\""]",1500.22,"{\"": \""7%\""}",43393,0,"""South America""" +2024-01-09,66596,6538,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1624.24,{},16113,0,"""South America""" +2024-08-28,66597,3543,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3957.67,"{\"": \""30%\""}",167279,1,"""Europe""" +2024-09-27,66598,5295,"[\""Keyboard\""]",4148.47,{},28701,1,"""South America""" +2023-02-03,66599,5418,"[\""Charger\""]",2844.55,{},23208,0,"""North America""" +2023-08-13,66600,7067,"[\""Monitor\""]",142.79,{},200040,1,"""Africa""" +2024-02-07,66601,3408,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3961.06,{},198393,1,"""South America""" +2024-09-03,66602,248,"[\""Phone\""]",4099.59,"{\""promo\"": \""30%\""}",254052,0,"""Europe""" +2023-10-03,66603,701,"[\""Headphones\"", \""Charger\"", \""Phone\""]",432.59,{},12192,1,"""Africa""" +2023-07-21,66604,3451,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4342.51,"{\""loyalty\"": \""30%\""}",257271,1,"""South America""" +2023-01-16,66605,5639,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2789.81,{},75496,1,"""Asia""" +2024-03-15,66606,4339,"[\""Keyboard\"", \""Tablet\""]",4627.61,{},172253,1,"""North America""" +2024-03-11,66607,4836,"[\""Laptop\"", \""Headphones\""]",2452.16,"{\""seasonal\"": \""8%\""}",15794,0,"""North America""" +2024-10-03,66608,590,"[\""Charger\"", \""Headphones\""]",565.7,{},78158,1,"""Asia""" +2023-12-06,66609,729,"[\""Phone\""]",4947.98,"{\""loyalty\"": \""7%\""}",124944,0,"""Europe""" +2024-08-02,66610,4349,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1808.17,"{\"": \""22%\""}",32993,0,"""Europe""" +2023-10-13,66611,8727,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3074.15,"{\""promo\"": \""18%\""}",273130,0,"""North America""" +2023-12-06,66612,5070,"[\""Phone\"", \""Tablet\""]",4948.42,{},113099,1,"""South America""" +2024-06-01,66613,7968,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3119.35,"{\""promo\"": \""13%\""}",158486,0,"""Asia""" +2024-06-19,66614,7506,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1320.83,"{\""promo\"": \""8%\""}",1156,1,"""North America""" +2023-02-11,66615,6072,"[\""Laptop\"", \""Wireless Mouse\""]",368.38,"{\""promo\"": \""16%\""}",118764,1,"""Asia""" +2023-03-06,66616,6412,"[\""Wireless Mouse\""]",4663.68,"{\""loyalty\"": \""9%\""}",26194,0,"""North America""" +2023-08-11,66617,4328,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4695.09,"{\""seasonal\"": \""14%\""}",172370,0,"""South America""" +2023-10-18,66618,511,"[\""Monitor\"", \""Headphones\""]",1572.61,{},267773,0,"""Asia""" +2023-01-17,66619,2537,"[\""Headphones\""]",3245.99,{},83597,0,"""South America""" +2023-12-10,66620,2687,"[\""Wireless Mouse\""]",3793.28,"{\""loyalty\"": \""6%\""}",174293,0,"""Asia""" +2024-02-20,66621,3874,"[\""Charger\"", \""Headphones\""]",4671.01,"{\""seasonal\"": \""16%\""}",155151,1,"""North America""" +2023-05-22,66622,1645,"[\""Monitor\""]",4583.18,"{\""seasonal\"": \""22%\""}",275797,0,"""Europe""" +2023-04-26,66623,1640,"[\""Tablet\""]",128.7,"{\"": \""14%\""}",174188,1,"""North America""" +2023-02-13,66624,5978,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",192.8,{},256434,1,"""North America""" +2024-11-24,66625,2952,"[\""Charger\""]",4099.14,"{\""loyalty\"": \""23%\""}",217671,0,"""Europe""" +2024-11-10,66626,3004,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",278.24,{},242942,0,"""Africa""" +2024-12-10,66627,2772,"[\""Keyboard\""]",1991.66,"{\""promo\"": \""5%\""}",286082,1,"""Africa""" +2023-12-19,66628,6062,"[\""Wireless Mouse\"", \""Keyboard\""]",1540.84,{},273565,1,"""South America""" +2023-06-20,66629,3332,"[\""Phone\"", \""Laptop\""]",371.64,{},48456,0,"""North America""" +2023-08-19,66630,4773,"[\""Wireless Mouse\""]",2378.19,{},225048,0,"""Africa""" +2023-02-24,66631,8449,"[\""Keyboard\"", \""Wireless Mouse\""]",3689.06,"{\"": \""12%\""}",238375,1,"""Asia""" +2023-12-17,66632,180,"[\""Monitor\"", \""Keyboard\""]",1944.9,{},283949,0,"""South America""" +2024-08-18,66633,3250,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3221.13,{},96582,1,"""North America""" +2023-04-15,66634,8627,"[\""Laptop\"", \""Headphones\""]",3500.97,{},9531,1,"""South America""" +2023-10-24,66635,3793,"[\""Tablet\""]",2821.16,"{\""promo\"": \""19%\""}",10400,0,"""South America""" +2024-04-12,66636,8814,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1411.18,{},187167,1,"""North America""" +2023-11-13,66637,1388,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2181.31,{},29195,1,"""Asia""" +2023-06-27,66638,1412,"[\""Keyboard\"", \""Headphones\""]",3255.24,"{\""loyalty\"": \""6%\""}",242323,0,"""Asia""" +2023-09-16,66639,983,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",935.72,"{\"": \""14%\""}",297337,0,"""Africa""" +2024-07-07,66640,1451,"[\""Wireless Mouse\"", \""Phone\""]",4769.6,{},285344,1,"""Asia""" +2023-07-10,66641,4022,"[\""Monitor\""]",411.2,"{\""seasonal\"": \""26%\""}",276805,0,"""Africa""" +2024-07-31,66642,7539,"[\""Monitor\""]",1449.73,{},202204,0,"""Asia""" +2024-11-26,66643,1758,"[\""Charger\"", \""Headphones\""]",4327.03,"{\""loyalty\"": \""11%\""}",74096,0,"""South America""" +2024-10-20,66644,8587,"[\""Headphones\"", \""Tablet\""]",1855.44,{},218070,0,"""North America""" +2024-09-07,66645,127,"[\""Headphones\""]",4264.62,{},249366,0,"""North America""" +2023-02-16,66646,4871,"[\""Charger\"", \""Laptop\""]",3233.6,"{\""promo\"": \""18%\""}",230550,1,"""Asia""" +2023-07-29,66647,4020,"[\""Laptop\"", \""Tablet\""]",4115.86,"{\""loyalty\"": \""9%\""}",262093,1,"""North America""" +2024-03-14,66648,610,"[\""Laptop\""]",4372.48,{},47952,0,"""Europe""" +2023-03-06,66649,6301,"[\""Phone\""]",799.89,{},217088,1,"""North America""" +2024-12-03,66650,1516,"[\""Tablet\"", \""Headphones\""]",572.2,{},252463,0,"""Africa""" +2023-12-22,66651,2733,"[\""Tablet\"", \""Monitor\""]",1429.32,"{\""promo\"": \""10%\""}",209280,1,"""Europe""" +2023-07-30,66652,7813,"[\""Charger\""]",1174.92,"{\""promo\"": \""10%\""}",233666,0,"""Africa""" +2024-11-19,66653,8398,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",673.53,"{\"": \""15%\""}",234217,1,"""Europe""" +2023-10-02,66654,8100,"[\""Tablet\""]",1592.6,"{\""loyalty\"": \""21%\""}",286293,0,"""South America""" +2024-05-16,66655,3618,"[\""Tablet\""]",2984.57,"{\""seasonal\"": \""18%\""}",224235,0,"""Africa""" +2024-05-30,66656,636,"[\""Phone\"", \""Charger\""]",3577.43,"{\""loyalty\"": \""18%\""}",262259,0,"""North America""" +2024-04-27,66657,5449,"[\""Keyboard\"", \""Headphones\""]",1518.34,{},149662,1,"""Asia""" +2024-04-21,66658,7859,"[\""Laptop\"", \""Keyboard\""]",2621.49,{},34401,0,"""Africa""" +2023-03-14,66659,3919,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2798.44,{},96723,1,"""North America""" +2023-03-05,66660,1810,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3965.89,"{\""promo\"": \""17%\""}",271355,0,"""Africa""" +2024-03-18,66661,2425,"[\""Tablet\"", \""Charger\""]",1335.81,{},253367,0,"""North America""" +2023-05-19,66662,4517,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2050.26,"{\""seasonal\"": \""29%\""}",110130,0,"""North America""" +2024-10-03,66663,8597,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3536.56,{},273369,0,"""Asia""" +2023-11-13,66664,6368,"[\""Phone\""]",4027.76,{},148077,1,"""Africa""" +2023-09-18,66665,3242,"[\""Laptop\"", \""Tablet\""]",2597.46,"{\""loyalty\"": \""27%\""}",236220,1,"""Africa""" +2024-05-28,66666,4763,"[\""Tablet\""]",4941.74,"{\""loyalty\"": \""8%\""}",15192,1,"""North America""" +2023-12-29,66667,8395,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1249.17,{},260243,1,"""Africa""" +2023-12-16,66668,9617,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2799.54,{},296908,1,"""Asia""" +2024-08-29,66669,6212,"[\""Wireless Mouse\"", \""Monitor\""]",4242.53,{},109376,0,"""Europe""" +2024-06-28,66670,1509,"[\""Phone\""]",1966.63,{},93040,1,"""Europe""" +2024-04-02,66671,3085,"[\""Tablet\""]",4942.07,{},131009,0,"""Africa""" +2023-09-23,66672,3751,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1783.99,"{\""loyalty\"": \""24%\""}",26166,0,"""North America""" +2023-03-22,66673,2213,"[\""Tablet\"", \""Monitor\""]",2167.61,"{\""seasonal\"": \""25%\""}",210995,1,"""North America""" +2023-01-24,66674,5988,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3093.15,"{\""seasonal\"": \""27%\""}",275470,0,"""South America""" +2024-03-07,66675,8104,"[\""Phone\""]",3265.55,{},167655,0,"""Asia""" +2024-04-01,66676,7034,"[\""Laptop\""]",4262.33,{},166547,0,"""Asia""" +2024-06-03,66677,9702,"[\""Wireless Mouse\""]",1691.83,"{\""loyalty\"": \""17%\""}",227883,1,"""Europe""" +2024-08-08,66678,4389,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3399.79,"{\"": \""5%\""}",86875,1,"""Europe""" +2024-05-08,66679,5660,"[\""Charger\"", \""Keyboard\""]",3219.8,{},280713,0,"""Europe""" +2023-08-02,66680,642,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",691.64,"{\""loyalty\"": \""26%\""}",184520,0,"""Asia""" +2023-11-25,66681,9761,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2150.25,{},145579,1,"""Europe""" +2024-07-24,66682,9761,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4519.52,"{\"": \""20%\""}",227547,0,"""South America""" +2023-06-25,66683,7015,"[\""Charger\"", \""Keyboard\""]",4890.85,"{\""loyalty\"": \""18%\""}",167080,1,"""North America""" +2024-11-03,66684,7192,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2795.98,"{\""promo\"": \""9%\""}",180685,1,"""Africa""" +2024-03-01,66685,7768,"[\""Keyboard\"", \""Headphones\""]",2049.52,"{\""loyalty\"": \""22%\""}",128612,1,"""South America""" +2024-06-26,66686,5172,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2633.53,"{\""seasonal\"": \""30%\""}",247060,0,"""North America""" +2024-05-24,66687,407,"[\""Monitor\""]",4606.84,"{\""promo\"": \""13%\""}",297379,1,"""North America""" +2024-08-10,66688,9230,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1795.61,"{\""loyalty\"": \""22%\""}",138965,1,"""South America""" +2024-04-07,66689,1895,"[\""Tablet\""]",3408.22,{},14964,0,"""Asia""" +2024-11-10,66690,1329,"[\""Tablet\"", \""Charger\"", \""Phone\""]",379.51,"{\""seasonal\"": \""23%\""}",129142,0,"""Asia""" +2024-01-14,66691,4507,"[\""Laptop\"", \""Charger\""]",4216.0,{},2488,0,"""Asia""" +2024-08-09,66692,4365,"[\""Wireless Mouse\"", \""Keyboard\""]",491.25,"{\""loyalty\"": \""23%\""}",160331,1,"""Europe""" +2023-09-21,66693,3569,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1639.93,{},271116,1,"""North America""" +2023-01-10,66694,317,"[\""Phone\""]",4838.68,"{\"": \""24%\""}",267341,1,"""South America""" +2024-05-02,66695,2381,"[\""Monitor\""]",1207.78,"{\"": \""13%\""}",159792,0,"""Asia""" +2024-01-04,66696,4043,"[\""Tablet\""]",1063.11,"{\""loyalty\"": \""20%\""}",154737,1,"""Asia""" +2023-01-07,66697,9603,"[\""Phone\""]",3993.13,{},80672,1,"""Europe""" +2023-05-05,66698,2769,"[\""Headphones\"", \""Charger\""]",2154.99,{},9105,1,"""Africa""" +2023-09-03,66699,271,"[\""Monitor\""]",3488.18,"{\""seasonal\"": \""23%\""}",133804,1,"""Africa""" +2024-05-06,66700,7012,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",572.89,"{\""loyalty\"": \""27%\""}",83313,0,"""Africa""" +2024-07-17,66701,4404,"[\""Wireless Mouse\""]",1765.05,{},126138,0,"""North America""" +2023-06-30,66702,852,"[\""Laptop\""]",281.17,{},53930,0,"""Africa""" +2024-04-10,66703,4281,"[\""Wireless Mouse\""]",1356.33,{},293473,0,"""North America""" +2023-04-07,66704,6173,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4080.46,{},298629,1,"""Asia""" +2024-04-23,66705,8121,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2749.23,"{\""promo\"": \""19%\""}",282683,1,"""Asia""" +2023-09-01,66706,9686,"[\""Wireless Mouse\"", \""Monitor\""]",1885.94,"{\""seasonal\"": \""16%\""}",182435,1,"""Africa""" +2024-06-07,66707,1302,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3595.41,"{\""seasonal\"": \""22%\""}",262116,0,"""South America""" +2023-11-28,66708,4103,"[\""Tablet\"", \""Monitor\""]",2263.95,{},247568,0,"""Africa""" +2024-01-22,66709,1933,"[\""Phone\"", \""Headphones\""]",985.94,"{\"": \""24%\""}",248625,0,"""Asia""" +2024-06-02,66710,8342,"[\""Monitor\""]",4647.25,{},296338,1,"""South America""" +2023-07-13,66711,5233,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",922.09,"{\"": \""25%\""}",195567,1,"""Africa""" +2023-06-29,66712,3534,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1079.67,{},204394,0,"""Africa""" +2023-12-29,66713,5167,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3124.92,{},196034,1,"""Europe""" +2023-06-11,66714,8638,"[\""Tablet\""]",3113.75,"{\"": \""16%\""}",37918,1,"""Europe""" +2023-06-20,66715,9367,"[\""Wireless Mouse\""]",3563.05,"{\""seasonal\"": \""5%\""}",33605,1,"""Europe""" +2024-08-18,66716,8248,"[\""Headphones\"", \""Monitor\""]",3384.44,"{\""seasonal\"": \""17%\""}",292248,0,"""Asia""" +2023-02-09,66717,408,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4717.18,"{\""promo\"": \""5%\""}",186194,1,"""South America""" +2024-02-14,66718,2395,"[\""Charger\"", \""Phone\""]",1181.69,{},19615,0,"""Africa""" +2023-04-23,66719,3416,"[\""Keyboard\""]",521.64,{},231502,0,"""Europe""" +2024-03-29,66720,214,"[\""Monitor\"", \""Tablet\""]",4560.64,"{\""promo\"": \""22%\""}",289400,0,"""North America""" +2024-04-14,66721,8499,"[\""Laptop\""]",4245.98,"{\""promo\"": \""13%\""}",165342,0,"""Asia""" +2023-11-22,66722,5774,"[\""Keyboard\"", \""Laptop\""]",1781.64,"{\""seasonal\"": \""13%\""}",30552,0,"""Europe""" +2024-07-11,66723,7912,"[\""Wireless Mouse\""]",870.55,{},30489,1,"""Asia""" +2023-10-30,66724,3294,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2164.68,{},181237,1,"""Africa""" +2023-05-09,66725,3284,"[\""Headphones\"", \""Phone\""]",517.71,"{\""seasonal\"": \""29%\""}",234913,1,"""Europe""" +2023-10-18,66726,1550,"[\""Headphones\"", \""Charger\""]",1907.25,{},65861,0,"""South America""" +2023-08-24,66727,227,"[\""Phone\"", \""Laptop\""]",2803.51,"{\"": \""26%\""}",175045,0,"""Asia""" +2023-07-30,66728,5910,"[\""Tablet\"", \""Charger\""]",1986.77,"{\"": \""15%\""}",133721,0,"""Asia""" +2023-06-08,66729,205,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4977.14,{},146342,0,"""North America""" +2024-04-30,66730,1232,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4297.83,"{\""loyalty\"": \""26%\""}",284247,1,"""North America""" +2023-09-16,66731,6608,"[\""Charger\""]",798.68,{},147804,0,"""Europe""" +2023-03-06,66732,4091,"[\""Laptop\"", \""Phone\""]",1586.73,"{\""loyalty\"": \""26%\""}",198006,1,"""South America""" +2023-10-13,66733,4856,"[\""Monitor\""]",3986.51,{},69190,0,"""Europe""" +2023-08-08,66734,423,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2852.27,"{\""loyalty\"": \""15%\""}",150394,1,"""Asia""" +2024-03-17,66735,8768,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1341.86,{},146368,1,"""Europe""" +2024-08-10,66736,6983,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",77.23,"{\""promo\"": \""15%\""}",246750,0,"""South America""" +2023-08-06,66737,4037,"[\""Monitor\"", \""Charger\""]",4666.18,"{\""promo\"": \""15%\""}",204103,1,"""North America""" +2023-06-30,66738,1372,"[\""Keyboard\""]",4039.3,"{\"": \""24%\""}",256374,1,"""Africa""" +2023-12-27,66739,6298,"[\""Wireless Mouse\""]",1628.12,{},90856,1,"""Africa""" +2023-08-14,66740,4116,"[\""Tablet\""]",4163.12,{},269201,0,"""Europe""" +2024-09-26,66741,3726,"[\""Monitor\"", \""Tablet\""]",1468.9,{},26844,0,"""Africa""" +2023-09-14,66742,8097,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",113.91,"{\"": \""22%\""}",97133,0,"""North America""" +2023-06-23,66743,2897,"[\""Keyboard\""]",2067.54,{},290929,0,"""Africa""" +2024-11-08,66744,6705,"[\""Keyboard\"", \""Wireless Mouse\""]",603.89,{},65877,0,"""South America""" +2024-05-27,66745,1096,"[\""Charger\""]",2827.53,{},64266,0,"""Asia""" +2024-08-10,66746,1903,"[\""Tablet\""]",4476.74,"{\"": \""25%\""}",41310,1,"""South America""" +2024-08-12,66747,2596,"[\""Monitor\""]",218.05,{},131328,1,"""North America""" +2023-05-15,66748,9562,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2315.7,{},202231,1,"""South America""" +2024-08-24,66749,4575,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4345.95,{},14430,0,"""South America""" +2023-09-22,66750,5639,"[\""Keyboard\"", \""Monitor\""]",4466.92,{},53288,1,"""Asia""" +2024-08-30,66751,159,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3648.21,"{\""promo\"": \""29%\""}",69143,1,"""South America""" +2023-12-17,66752,9093,"[\""Tablet\"", \""Monitor\""]",1320.61,"{\""seasonal\"": \""21%\""}",159236,0,"""South America""" +2023-08-17,66753,6251,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3549.15,{},173418,0,"""North America""" +2024-10-16,66754,6592,"[\""Tablet\"", \""Phone\""]",1085.35,{},61054,1,"""Asia""" +2023-08-13,66755,8131,"[\""Charger\"", \""Phone\"", \""Headphones\""]",271.47,{},255544,1,"""North America""" +2023-09-30,66756,7328,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",306.22,"{\""promo\"": \""25%\""}",118902,0,"""South America""" +2023-12-11,66757,5412,"[\""Tablet\""]",4427.63,{},95831,1,"""North America""" +2024-08-15,66758,9398,"[\""Charger\"", \""Tablet\""]",2690.59,{},88384,1,"""Asia""" +2024-12-09,66759,5846,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",531.44,"{\""seasonal\"": \""22%\""}",220456,0,"""South America""" +2023-09-23,66760,4690,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4726.8,"{\""loyalty\"": \""29%\""}",118073,0,"""North America""" +2023-02-04,66761,3200,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4251.53,"{\"": \""5%\""}",144162,0,"""South America""" +2023-04-17,66762,6603,"[\""Phone\"", \""Tablet\""]",1715.25,{},32344,1,"""Europe""" +2024-11-26,66763,3340,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3929.77,{},192409,0,"""Europe""" +2024-04-18,66764,3403,"[\""Wireless Mouse\"", \""Keyboard\""]",194.0,{},280059,0,"""North America""" +2024-10-01,66765,4418,"[\""Keyboard\""]",2587.85,"{\""loyalty\"": \""19%\""}",214154,0,"""Africa""" +2023-09-06,66766,3432,"[\""Headphones\"", \""Laptop\""]",2988.79,"{\""promo\"": \""22%\""}",279891,1,"""South America""" +2023-05-24,66767,4440,"[\""Tablet\""]",2169.29,"{\"": \""7%\""}",184642,0,"""Asia""" +2024-11-29,66768,2875,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",713.97,{},38906,1,"""Asia""" +2023-11-15,66769,4083,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",729.33,"{\""loyalty\"": \""26%\""}",193274,1,"""Europe""" +2023-09-01,66770,1417,"[\""Monitor\""]",3678.09,{},68835,1,"""Europe""" +2023-01-06,66771,4158,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2712.84,"{\"": \""13%\""}",261407,0,"""South America""" +2024-05-12,66772,7540,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",819.15,"{\""seasonal\"": \""9%\""}",91319,0,"""South America""" +2023-05-14,66773,35,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",436.06,{},98698,0,"""Asia""" +2023-05-03,66774,6818,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3029.71,{},14216,0,"""South America""" +2024-03-19,66775,7682,"[\""Phone\""]",3627.16,"{\""promo\"": \""17%\""}",21602,1,"""Europe""" +2024-02-14,66776,4037,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3992.84,{},6162,1,"""North America""" +2023-07-06,66777,987,"[\""Monitor\""]",3992.35,{},241614,1,"""Asia""" +2023-12-11,66778,9519,"[\""Tablet\""]",784.9,"{\""promo\"": \""14%\""}",136991,1,"""South America""" +2023-09-15,66779,5253,"[\""Tablet\""]",2359.49,"{\""seasonal\"": \""11%\""}",252785,0,"""Africa""" +2024-06-14,66780,304,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2538.97,"{\"": \""19%\""}",186225,1,"""Europe""" +2023-06-30,66781,3733,"[\""Laptop\"", \""Wireless Mouse\""]",512.4,{},166373,0,"""North America""" +2024-10-24,66782,1307,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1625.8,{},138484,0,"""Africa""" +2024-11-26,66783,9971,"[\""Headphones\"", \""Monitor\""]",692.52,"{\"": \""7%\""}",47758,1,"""Europe""" +2024-02-20,66784,8651,"[\""Keyboard\""]",1508.44,{},214850,0,"""Africa""" +2024-09-16,66785,7138,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2584.68,"{\""promo\"": \""10%\""}",209992,1,"""North America""" +2024-03-22,66786,7997,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",289.61,{},208940,0,"""South America""" +2023-04-01,66787,6672,"[\""Keyboard\"", \""Phone\""]",709.19,"{\""seasonal\"": \""5%\""}",49615,0,"""Europe""" +2023-11-21,66788,5705,"[\""Keyboard\""]",1151.42,"{\""loyalty\"": \""23%\""}",15033,0,"""Asia""" +2023-12-09,66789,277,"[\""Phone\""]",50.48,"{\""seasonal\"": \""7%\""}",177144,1,"""Europe""" +2023-05-31,66790,3376,"[\""Keyboard\"", \""Laptop\""]",458.6,"{\""seasonal\"": \""25%\""}",258085,0,"""Africa""" +2023-11-28,66791,3852,"[\""Headphones\""]",2676.21,"{\""loyalty\"": \""26%\""}",96795,1,"""South America""" +2024-06-21,66792,1887,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2678.99,{},252692,1,"""Asia""" +2024-02-05,66793,7831,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2583.83,{},168530,0,"""Asia""" +2023-03-13,66794,8031,"[\""Keyboard\"", \""Monitor\""]",549.83,{},183105,1,"""Europe""" +2023-12-05,66795,2290,"[\""Headphones\""]",2355.04,"{\""loyalty\"": \""15%\""}",50756,0,"""South America""" +2023-05-01,66796,7868,"[\""Laptop\"", \""Monitor\""]",4989.85,"{\""loyalty\"": \""8%\""}",273326,1,"""South America""" +2023-08-24,66797,2804,"[\""Wireless Mouse\""]",1986.45,{},228096,0,"""South America""" +2024-05-31,66798,6660,"[\""Monitor\""]",4405.13,"{\""seasonal\"": \""28%\""}",135663,0,"""South America""" +2024-04-02,66799,7751,"[\""Phone\""]",1476.48,"{\""seasonal\"": \""12%\""}",235161,0,"""Asia""" +2023-04-25,66800,971,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3197.81,{},42406,1,"""Africa""" +2023-06-29,66801,2447,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4440.24,"{\"": \""24%\""}",47814,0,"""Africa""" +2024-07-06,66802,6015,"[\""Wireless Mouse\""]",436.01,"{\""seasonal\"": \""13%\""}",33265,1,"""Europe""" +2024-09-17,66803,1963,"[\""Headphones\""]",4512.95,{},149074,0,"""Africa""" +2023-02-05,66804,1360,"[\""Keyboard\""]",2464.98,"{\""promo\"": \""14%\""}",191020,1,"""Asia""" +2023-05-14,66805,1270,"[\""Phone\"", \""Tablet\""]",4894.82,{},213464,0,"""Africa""" +2024-03-11,66806,7033,"[\""Wireless Mouse\"", \""Laptop\""]",4572.51,{},215142,1,"""North America""" +2023-10-05,66807,5837,"[\""Laptop\"", \""Tablet\""]",198.31,"{\""promo\"": \""10%\""}",273980,1,"""South America""" +2023-03-25,66808,1055,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2573.69,"{\"": \""24%\""}",239760,1,"""Asia""" +2023-05-05,66809,5634,"[\""Monitor\"", \""Keyboard\""]",1554.89,{},229224,1,"""North America""" +2023-05-15,66810,7680,"[\""Monitor\"", \""Wireless Mouse\""]",962.67,{},36216,1,"""South America""" +2024-07-16,66811,483,"[\""Keyboard\""]",2890.42,"{\""loyalty\"": \""19%\""}",130306,1,"""Asia""" +2023-07-19,66812,5381,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4706.97,{},119188,0,"""Europe""" +2024-12-26,66813,7518,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1708.41,{},275925,1,"""Africa""" +2023-09-24,66814,4483,"[\""Tablet\""]",2334.3,{},296671,1,"""Europe""" +2024-02-29,66815,3463,"[\""Tablet\"", \""Keyboard\""]",716.1,{},256622,1,"""South America""" +2024-02-10,66816,3557,"[\""Keyboard\""]",159.62,{},67369,1,"""Africa""" +2023-05-05,66817,3003,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1814.27,{},74171,0,"""South America""" +2024-11-30,66818,3864,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",500.78,"{\""loyalty\"": \""15%\""}",295321,0,"""Africa""" +2023-10-13,66819,4501,"[\""Headphones\"", \""Charger\""]",1531.99,"{\"": \""20%\""}",201514,0,"""Africa""" +2023-11-19,66820,2655,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2958.51,"{\""promo\"": \""29%\""}",237429,1,"""South America""" +2024-08-15,66821,8862,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",938.49,{},10720,1,"""South America""" +2023-03-13,66822,9043,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4026.54,"{\""loyalty\"": \""7%\""}",198075,0,"""South America""" +2023-09-07,66823,173,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4762.85,{},49747,1,"""Europe""" +2024-09-01,66824,8997,"[\""Tablet\""]",1234.61,"{\""loyalty\"": \""30%\""}",239563,0,"""Asia""" +2023-05-18,66825,6126,"[\""Tablet\"", \""Charger\""]",178.6,{},178909,1,"""Africa""" +2023-12-01,66826,653,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2335.97,{},186100,0,"""Africa""" +2023-06-11,66827,3665,"[\""Monitor\""]",2353.94,{},266162,1,"""Asia""" +2023-11-28,66828,2406,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",718.59,"{\""promo\"": \""8%\""}",268773,0,"""North America""" +2023-12-24,66829,1571,"[\""Headphones\""]",4963.73,{},18865,1,"""South America""" +2024-12-20,66830,2711,"[\""Monitor\""]",2060.1,{},260891,0,"""Africa""" +2023-03-20,66831,1462,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4008.61,{},217722,0,"""North America""" +2023-06-25,66832,5139,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2706.84,{},206293,0,"""Asia""" +2023-11-28,66833,9940,"[\""Headphones\""]",2476.18,{},202401,0,"""North America""" +2024-04-01,66834,1458,"[\""Headphones\""]",3224.89,{},254630,0,"""Asia""" +2023-05-24,66835,5890,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2415.99,{},133226,1,"""South America""" +2024-08-14,66836,6087,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2813.66,{},169471,1,"""South America""" +2023-04-15,66837,1243,"[\""Wireless Mouse\"", \""Charger\""]",620.65,"{\"": \""15%\""}",251111,1,"""North America""" +2023-09-14,66838,3160,"[\""Phone\"", \""Keyboard\""]",508.29,"{\""loyalty\"": \""21%\""}",82529,0,"""South America""" +2023-12-25,66839,9517,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4732.16,"{\""loyalty\"": \""7%\""}",128123,0,"""Europe""" +2024-05-08,66840,6287,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2081.71,"{\""loyalty\"": \""7%\""}",281156,0,"""Europe""" +2024-07-13,66841,9522,"[\""Charger\""]",4020.02,"{\""promo\"": \""5%\""}",53364,1,"""South America""" +2024-09-23,66842,8485,"[\""Phone\""]",4991.05,"{\""promo\"": \""19%\""}",32686,0,"""Europe""" +2024-04-23,66843,3460,"[\""Monitor\""]",3480.73,{},185748,0,"""South America""" +2023-03-14,66844,4073,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2300.72,"{\""promo\"": \""6%\""}",286383,0,"""Africa""" +2023-03-05,66845,7529,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4356.82,"{\"": \""16%\""}",40824,1,"""North America""" +2024-03-10,66846,8792,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",331.75,"{\"": \""24%\""}",152885,1,"""Asia""" +2024-03-08,66847,5030,"[\""Monitor\"", \""Wireless Mouse\""]",1198.15,"{\""promo\"": \""26%\""}",257395,0,"""Europe""" +2023-09-15,66848,2315,"[\""Tablet\"", \""Monitor\""]",1431.26,{},23863,1,"""South America""" +2023-11-14,66849,7595,"[\""Wireless Mouse\""]",1266.85,"{\""loyalty\"": \""29%\""}",133151,0,"""South America""" +2024-10-30,66850,3754,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3753.68,{},108838,0,"""Asia""" +2023-05-19,66851,1706,"[\""Keyboard\"", \""Charger\""]",294.09,"{\"": \""20%\""}",284345,0,"""Africa""" +2023-07-27,66852,3337,"[\""Keyboard\"", \""Charger\""]",4665.92,"{\"": \""24%\""}",212251,1,"""Africa""" +2023-08-23,66853,9151,"[\""Wireless Mouse\""]",4935.19,{},175735,0,"""Europe""" +2023-01-04,66854,3514,"[\""Phone\"", \""Monitor\""]",2249.27,"{\""loyalty\"": \""5%\""}",13219,0,"""South America""" +2024-12-11,66855,7208,"[\""Charger\"", \""Headphones\""]",4904.01,{},276962,1,"""Asia""" +2023-10-23,66856,52,"[\""Monitor\""]",4043.04,"{\""seasonal\"": \""22%\""}",72196,1,"""North America""" +2024-04-05,66857,9940,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2373.75,"{\""loyalty\"": \""20%\""}",270183,1,"""North America""" +2023-12-14,66858,3535,"[\""Keyboard\""]",573.32,{},224920,1,"""North America""" +2024-05-27,66859,4803,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1942.91,"{\"": \""10%\""}",195264,0,"""South America""" +2023-12-11,66860,7278,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",868.46,"{\"": \""14%\""}",146581,0,"""Asia""" +2023-06-17,66861,4788,"[\""Phone\""]",895.23,{},26407,1,"""Asia""" +2024-09-06,66862,6085,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2411.48,{},50913,0,"""South America""" +2024-04-19,66863,8371,"[\""Charger\"", \""Monitor\""]",1044.04,{},255862,0,"""Africa""" +2023-03-11,66864,5120,"[\""Laptop\""]",456.04,{},71928,1,"""South America""" +2023-05-05,66865,3667,"[\""Tablet\""]",4101.92,"{\""promo\"": \""15%\""}",226692,0,"""Africa""" +2024-06-19,66866,3233,"[\""Keyboard\"", \""Laptop\""]",4474.69,"{\""seasonal\"": \""21%\""}",2527,0,"""Africa""" +2024-10-23,66867,6568,"[\""Laptop\"", \""Monitor\""]",2974.62,{},183624,1,"""Africa""" +2023-07-07,66868,6529,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",728.78,{},125718,0,"""Europe""" +2024-09-16,66869,45,"[\""Keyboard\"", \""Phone\""]",2882.55,{},270060,1,"""Africa""" +2024-01-15,66870,7639,"[\""Monitor\"", \""Charger\""]",4317.59,{},126341,1,"""Asia""" +2023-03-08,66871,9513,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3011.84,"{\""promo\"": \""29%\""}",214509,0,"""South America""" +2023-06-10,66872,2193,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1171.15,{},250050,0,"""Asia""" +2024-01-19,66873,4426,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",123.17,{},210397,0,"""Asia""" +2024-04-04,66874,3368,"[\""Phone\""]",920.91,"{\""loyalty\"": \""24%\""}",268985,0,"""North America""" +2023-03-15,66875,4755,"[\""Tablet\"", \""Monitor\""]",468.13,{},2713,0,"""Africa""" +2024-05-05,66876,4489,"[\""Phone\"", \""Keyboard\""]",2880.26,{},28348,0,"""Africa""" +2023-05-27,66877,3293,"[\""Tablet\"", \""Monitor\""]",2188.36,"{\""promo\"": \""14%\""}",104218,1,"""North America""" +2024-08-05,66878,6358,"[\""Keyboard\""]",3991.36,"{\"": \""9%\""}",230992,0,"""North America""" +2024-03-26,66879,9214,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",66.11,"{\""loyalty\"": \""18%\""}",137976,1,"""South America""" +2023-01-18,66880,8282,"[\""Headphones\""]",4878.33,"{\"": \""11%\""}",78575,1,"""Asia""" +2024-03-12,66881,1244,"[\""Keyboard\"", \""Wireless Mouse\""]",991.83,{},133496,0,"""Asia""" +2024-03-10,66882,9284,"[\""Wireless Mouse\""]",2686.13,"{\""loyalty\"": \""7%\""}",59268,1,"""Europe""" +2023-04-02,66883,8392,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",89.13,"{\""seasonal\"": \""25%\""}",25461,0,"""Asia""" +2023-07-01,66884,4623,"[\""Wireless Mouse\""]",1695.7,"{\"": \""9%\""}",67317,1,"""Asia""" +2024-04-19,66885,278,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2529.56,{},291469,0,"""South America""" +2024-11-23,66886,4665,"[\""Charger\"", \""Wireless Mouse\""]",4501.51,{},201401,1,"""North America""" +2024-10-22,66887,1845,"[\""Phone\""]",4295.45,"{\""loyalty\"": \""16%\""}",285763,1,"""Africa""" +2024-05-15,66888,5727,"[\""Laptop\"", \""Charger\""]",513.88,{},267430,1,"""Europe""" +2023-05-01,66889,7499,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",884.74,{},57383,1,"""North America""" +2024-04-18,66890,2394,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3968.37,"{\""loyalty\"": \""12%\""}",228285,0,"""North America""" +2024-03-05,66891,6464,"[\""Keyboard\"", \""Tablet\""]",2721.3,{},156433,0,"""Africa""" +2024-09-26,66892,8393,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2057.71,"{\""seasonal\"": \""12%\""}",173297,0,"""South America""" +2023-09-03,66893,5973,"[\""Charger\""]",1420.17,{},34134,1,"""North America""" +2023-11-15,66894,2085,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",800.54,"{\""promo\"": \""9%\""}",267113,0,"""Europe""" +2024-12-28,66895,5277,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3737.6,"{\""loyalty\"": \""21%\""}",235632,1,"""Asia""" +2023-05-21,66896,6906,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3354.78,"{\""seasonal\"": \""29%\""}",255265,1,"""Europe""" +2024-06-06,66897,8229,"[\""Charger\""]",113.67,"{\""loyalty\"": \""15%\""}",292394,0,"""Asia""" +2023-06-30,66898,7234,"[\""Headphones\"", \""Tablet\""]",4183.29,{},38870,0,"""South America""" +2023-04-23,66899,4309,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4847.87,"{\"": \""5%\""}",298435,0,"""South America""" +2024-07-12,66900,2652,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1334.63,"{\""seasonal\"": \""28%\""}",212606,0,"""South America""" +2024-06-13,66901,2768,"[\""Phone\""]",3850.18,{},159784,0,"""North America""" +2024-10-24,66902,4376,"[\""Headphones\""]",4671.12,{},284588,0,"""Europe""" +2023-12-08,66903,1494,"[\""Monitor\"", \""Keyboard\""]",1458.79,{},168721,1,"""Asia""" +2023-06-26,66904,8825,"[\""Headphones\""]",539.8,"{\""promo\"": \""14%\""}",225038,1,"""Asia""" +2023-02-21,66905,2105,"[\""Monitor\"", \""Laptop\""]",222.86,"{\""promo\"": \""29%\""}",51140,0,"""Africa""" +2023-01-25,66906,1158,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",745.5,{},139573,0,"""Africa""" +2024-03-01,66907,1311,"[\""Wireless Mouse\""]",621.54,"{\""promo\"": \""11%\""}",109031,0,"""Asia""" +2023-08-09,66908,2863,"[\""Keyboard\"", \""Charger\""]",4336.71,"{\""promo\"": \""14%\""}",134496,0,"""Europe""" +2023-09-11,66909,7206,"[\""Phone\""]",2952.48,"{\""loyalty\"": \""13%\""}",7944,0,"""Asia""" +2023-11-26,66910,952,"[\""Monitor\"", \""Headphones\""]",2255.27,{},16293,1,"""Europe""" +2023-01-24,66911,1457,"[\""Tablet\""]",4505.44,"{\""loyalty\"": \""28%\""}",131276,1,"""Africa""" +2023-08-25,66912,6096,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2185.47,{},148291,0,"""Europe""" +2023-10-30,66913,6283,"[\""Monitor\"", \""Charger\""]",699.18,"{\""promo\"": \""8%\""}",163091,0,"""South America""" +2023-07-20,66914,4767,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3383.12,"{\""seasonal\"": \""20%\""}",31038,0,"""Europe""" +2023-11-02,66915,7206,"[\""Headphones\"", \""Wireless Mouse\""]",1390.31,{},133137,1,"""Europe""" +2024-04-27,66916,6861,"[\""Keyboard\""]",2614.54,"{\""loyalty\"": \""16%\""}",22279,0,"""South America""" +2024-04-23,66917,2341,"[\""Tablet\""]",3662.62,{},41628,0,"""Europe""" +2023-02-07,66918,4192,"[\""Keyboard\"", \""Monitor\""]",2105.2,{},4752,1,"""Africa""" +2023-12-12,66919,2241,"[\""Wireless Mouse\""]",3820.03,"{\""seasonal\"": \""21%\""}",257215,0,"""North America""" +2023-03-14,66920,9098,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3981.78,{},146108,0,"""North America""" +2024-11-19,66921,2128,"[\""Laptop\"", \""Tablet\""]",2673.74,{},156686,1,"""South America""" +2023-08-09,66922,862,"[\""Keyboard\"", \""Wireless Mouse\""]",2479.06,"{\""seasonal\"": \""20%\""}",299692,1,"""North America""" +2023-01-09,66923,7970,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3512.94,"{\""seasonal\"": \""19%\""}",186258,1,"""North America""" +2024-09-11,66924,3955,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",3667.77,"{\""seasonal\"": \""20%\""}",113482,0,"""North America""" +2023-07-01,66925,7608,"[\""Laptop\""]",3958.78,{},184942,0,"""South America""" +2024-02-03,66926,3779,"[\""Charger\"", \""Headphones\""]",2503.84,"{\""promo\"": \""7%\""}",290843,0,"""Africa""" +2024-07-28,66927,6267,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3487.98,{},223636,1,"""Asia""" +2024-12-03,66928,3543,"[\""Headphones\""]",2904.56,"{\""promo\"": \""11%\""}",181149,1,"""Africa""" +2024-12-03,66929,5338,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1148.93,"{\"": \""27%\""}",246588,0,"""Asia""" +2023-10-17,66930,4462,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",254.13,{},130705,0,"""North America""" +2023-09-28,66931,2796,"[\""Monitor\""]",2836.94,{},121174,0,"""North America""" +2024-04-16,66932,4965,"[\""Wireless Mouse\"", \""Laptop\""]",1395.23,{},6116,0,"""Asia""" +2024-05-07,66933,2683,"[\""Keyboard\"", \""Monitor\""]",797.43,"{\"": \""22%\""}",40792,1,"""Africa""" +2024-04-12,66934,2817,"[\""Wireless Mouse\"", \""Phone\""]",415.52,"{\"": \""24%\""}",98888,1,"""North America""" +2024-06-08,66935,8437,"[\""Monitor\"", \""Charger\""]",2651.01,"{\"": \""25%\""}",217015,1,"""North America""" +2023-05-29,66936,8464,"[\""Phone\""]",3177.27,{},168519,0,"""Europe""" +2023-01-15,66937,2595,"[\""Wireless Mouse\"", \""Keyboard\""]",1242.3,"{\""promo\"": \""7%\""}",86658,1,"""South America""" +2023-03-18,66938,296,"[\""Keyboard\""]",997.93,"{\""seasonal\"": \""13%\""}",292016,1,"""Asia""" +2024-04-02,66939,1861,"[\""Charger\""]",3196.26,{},195250,0,"""South America""" +2024-02-15,66940,1280,"[\""Wireless Mouse\"", \""Headphones\""]",1084.4,{},299891,1,"""South America""" +2024-01-05,66941,9516,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4021.94,"{\""promo\"": \""14%\""}",29778,1,"""Africa""" +2024-09-26,66942,117,"[\""Headphones\"", \""Phone\""]",2476.74,"{\"": \""16%\""}",99803,1,"""South America""" +2023-05-03,66943,7604,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1216.29,"{\""promo\"": \""30%\""}",298219,1,"""North America""" +2024-12-27,66944,2060,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1150.52,"{\"": \""7%\""}",77905,1,"""South America""" +2023-11-27,66945,6053,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1973.19,{},266878,0,"""South America""" +2024-06-10,66946,835,"[\""Keyboard\""]",3103.73,"{\""loyalty\"": \""19%\""}",19911,0,"""Europe""" +2024-07-15,66947,7834,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",654.48,{},71516,1,"""South America""" +2023-09-27,66948,6677,"[\""Keyboard\""]",3998.5,{},25881,1,"""Asia""" +2023-03-28,66949,2954,"[\""Wireless Mouse\"", \""Monitor\""]",2533.99,"{\""promo\"": \""11%\""}",232768,0,"""Europe""" +2023-06-20,66950,4921,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4690.65,"{\""seasonal\"": \""15%\""}",76122,1,"""Africa""" +2023-09-07,66951,3933,"[\""Wireless Mouse\""]",2190.01,"{\""loyalty\"": \""22%\""}",10874,0,"""Africa""" +2024-03-27,66952,617,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4449.06,{},67442,0,"""North America""" +2024-07-17,66953,5319,"[\""Headphones\"", \""Laptop\""]",555.88,"{\""promo\"": \""28%\""}",42799,0,"""Asia""" +2024-05-04,66954,9718,"[\""Laptop\"", \""Headphones\""]",1855.21,"{\""loyalty\"": \""29%\""}",183615,0,"""Africa""" +2023-07-31,66955,2683,"[\""Monitor\"", \""Tablet\""]",1805.79,{},133886,1,"""Africa""" +2024-12-24,66956,382,"[\""Headphones\"", \""Tablet\""]",2506.12,{},8308,1,"""Europe""" +2024-03-29,66957,7302,"[\""Keyboard\"", \""Monitor\""]",4952.05,"{\"": \""11%\""}",71551,1,"""Africa""" +2024-02-25,66958,9330,"[\""Wireless Mouse\""]",75.33,{},278193,0,"""Europe""" +2023-04-13,66959,6235,"[\""Charger\"", \""Keyboard\""]",1714.35,"{\""loyalty\"": \""17%\""}",114049,0,"""Africa""" +2024-06-09,66960,1197,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2649.16,"{\"": \""18%\""}",127093,0,"""Asia""" +2023-02-27,66961,6847,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2706.84,{},243831,0,"""Africa""" +2024-10-03,66962,5556,"[\""Phone\""]",3573.2,"{\""loyalty\"": \""25%\""}",297179,1,"""Asia""" +2023-10-30,66963,7360,"[\""Tablet\"", \""Laptop\""]",1969.68,{},226082,1,"""Europe""" +2023-09-14,66964,9295,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4535.03,{},175042,1,"""Europe""" +2023-10-09,66965,844,"[\""Wireless Mouse\""]",548.4,"{\"": \""21%\""}",189394,0,"""South America""" +2024-11-27,66966,604,"[\""Charger\"", \""Wireless Mouse\""]",2765.23,{},133041,0,"""South America""" +2024-05-31,66967,1427,"[\""Keyboard\"", \""Headphones\""]",4350.37,{},85188,1,"""Africa""" +2023-01-23,66968,7714,"[\""Charger\"", \""Monitor\""]",3818.76,"{\""promo\"": \""12%\""}",35842,1,"""Africa""" +2023-10-02,66969,3784,"[\""Charger\"", \""Phone\""]",3701.58,{},138078,0,"""Europe""" +2023-06-08,66970,6941,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3841.32,"{\""loyalty\"": \""24%\""}",161575,1,"""Africa""" +2024-05-29,66971,715,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",314.99,{},158275,1,"""North America""" +2023-12-13,66972,3866,"[\""Keyboard\""]",3543.33,{},203133,0,"""Asia""" +2024-04-12,66973,1486,"[\""Laptop\"", \""Phone\""]",4726.57,{},92620,1,"""Asia""" +2024-09-12,66974,9172,"[\""Charger\""]",319.54,{},113004,0,"""North America""" +2023-04-11,66975,1059,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4393.67,{},215441,0,"""North America""" +2023-12-08,66976,5653,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2095.03,"{\""promo\"": \""28%\""}",250286,1,"""North America""" +2023-09-18,66977,1059,"[\""Headphones\"", \""Laptop\""]",593.5,"{\""seasonal\"": \""9%\""}",7013,1,"""Europe""" +2024-10-20,66978,9093,"[\""Tablet\"", \""Headphones\""]",804.58,{},25354,0,"""Asia""" +2023-09-14,66979,7021,"[\""Charger\"", \""Headphones\""]",2249.77,"{\""loyalty\"": \""7%\""}",90094,1,"""North America""" +2024-11-15,66980,9108,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",220.08,{},204577,0,"""Europe""" +2023-02-14,66981,6627,"[\""Wireless Mouse\""]",1969.12,{},198674,0,"""North America""" +2024-03-29,66982,1287,"[\""Headphones\""]",2018.52,{},250060,1,"""North America""" +2023-03-07,66983,7755,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2292.14,{},66255,0,"""Asia""" +2024-08-12,66984,8104,"[\""Monitor\"", \""Tablet\""]",2799.66,"{\""loyalty\"": \""20%\""}",158326,1,"""Africa""" +2023-08-05,66985,7920,"[\""Laptop\""]",3781.07,"{\""promo\"": \""16%\""}",119659,0,"""North America""" +2024-10-15,66986,4778,"[\""Phone\"", \""Headphones\""]",2931.32,{},30333,1,"""North America""" +2024-05-20,66987,4630,"[\""Keyboard\""]",1527.49,"{\""seasonal\"": \""26%\""}",253926,1,"""Africa""" +2024-05-20,66988,4903,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1170.55,{},94518,1,"""South America""" +2024-10-18,66989,4021,"[\""Laptop\""]",4558.4,{},252615,1,"""Africa""" +2023-10-21,66990,1699,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1231.68,{},26636,1,"""Asia""" +2024-11-11,66991,3017,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4136.49,{},261287,0,"""South America""" +2024-02-22,66992,2358,"[\""Tablet\""]",152.27,{},58164,0,"""Europe""" +2024-03-20,66993,7798,"[\""Phone\"", \""Wireless Mouse\""]",3483.96,"{\"": \""29%\""}",283587,1,"""North America""" +2023-11-04,66994,6831,"[\""Laptop\"", \""Keyboard\""]",1275.32,{},21966,1,"""North America""" +2024-11-10,66995,6653,"[\""Headphones\""]",322.79,"{\""loyalty\"": \""20%\""}",222763,0,"""Africa""" +2023-08-02,66996,7459,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3531.7,{},275655,1,"""Asia""" +2024-10-26,66997,4334,"[\""Tablet\"", \""Keyboard\""]",1322.48,"{\"": \""15%\""}",94750,1,"""North America""" +2023-06-19,66998,2443,"[\""Keyboard\"", \""Phone\""]",518.25,{},164924,0,"""Europe""" +2023-07-18,66999,1332,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3794.61,"{\"": \""13%\""}",79081,1,"""North America""" +2023-07-01,67000,7388,"[\""Tablet\""]",1408.69,"{\""promo\"": \""10%\""}",244807,0,"""Asia""" +2023-10-30,67001,4452,"[\""Laptop\"", \""Charger\""]",393.66,"{\""seasonal\"": \""29%\""}",43316,0,"""Asia""" +2024-09-05,67002,7728,"[\""Monitor\""]",2868.08,"{\""seasonal\"": \""16%\""}",3918,0,"""North America""" +2023-06-07,67003,8545,"[\""Headphones\"", \""Tablet\""]",3206.87,"{\""promo\"": \""30%\""}",85592,1,"""South America""" +2023-09-08,67004,3775,"[\""Monitor\""]",3373.26,"{\""loyalty\"": \""23%\""}",218356,0,"""North America""" +2023-05-05,67005,5118,"[\""Charger\""]",3422.02,{},40793,1,"""Africa""" +2023-10-17,67006,9386,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2328.73,{},230700,1,"""Europe""" +2024-10-04,67007,6233,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3483.28,"{\""loyalty\"": \""5%\""}",173194,0,"""Africa""" +2024-12-30,67008,4427,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1187.06,"{\""promo\"": \""10%\""}",30419,1,"""Asia""" +2023-01-25,67009,6173,"[\""Monitor\"", \""Phone\""]",2981.76,"{\""seasonal\"": \""15%\""}",124705,1,"""Asia""" +2024-07-17,67010,8160,"[\""Wireless Mouse\""]",3047.87,"{\""seasonal\"": \""29%\""}",281816,0,"""North America""" +2024-08-04,67011,6753,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1996.0,{},98763,0,"""South America""" +2024-01-12,67012,821,"[\""Headphones\""]",3298.38,{},153408,1,"""Asia""" +2023-10-14,67013,6222,"[\""Tablet\"", \""Keyboard\""]",3378.98,{},289169,1,"""North America""" +2024-02-18,67014,659,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1600.51,"{\""promo\"": \""13%\""}",143533,0,"""Asia""" +2024-09-28,67015,5802,"[\""Charger\"", \""Headphones\""]",491.96,"{\""promo\"": \""20%\""}",155557,1,"""South America""" +2024-03-09,67016,6669,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4419.64,"{\""promo\"": \""16%\""}",232031,0,"""Asia""" +2024-10-09,67017,180,"[\""Phone\"", \""Charger\""]",2942.99,{},106391,0,"""North America""" +2024-03-26,67018,2060,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2510.12,{},76805,0,"""Asia""" +2023-05-03,67019,9706,"[\""Keyboard\""]",493.06,"{\"": \""14%\""}",92298,0,"""North America""" +2023-04-20,67020,4801,"[\""Tablet\"", \""Phone\""]",4000.26,{},61578,1,"""Asia""" +2023-09-29,67021,7688,"[\""Headphones\"", \""Monitor\""]",2935.69,{},35665,0,"""South America""" +2024-02-26,67022,6239,"[\""Phone\"", \""Monitor\""]",2367.94,{},119161,1,"""Asia""" +2024-12-15,67023,4186,"[\""Laptop\"", \""Wireless Mouse\""]",195.03,"{\"": \""11%\""}",129502,1,"""South America""" +2024-09-17,67024,9579,"[\""Keyboard\"", \""Phone\""]",296.67,{},105749,1,"""North America""" +2024-07-04,67025,9358,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2195.39,"{\""loyalty\"": \""29%\""}",112281,0,"""Africa""" +2024-04-10,67026,3837,"[\""Phone\"", \""Tablet\""]",4939.48,{},82104,0,"""North America""" +2023-08-09,67027,8940,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4932.17,"{\""promo\"": \""11%\""}",66494,1,"""Africa""" +2024-12-17,67028,1829,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1872.95,"{\"": \""25%\""}",5613,0,"""Europe""" +2024-02-17,67029,6167,"[\""Monitor\""]",3357.16,"{\""loyalty\"": \""24%\""}",284236,1,"""Europe""" +2024-12-13,67030,9530,"[\""Tablet\"", \""Headphones\""]",4806.3,{},241707,1,"""North America""" +2024-06-17,67031,5624,"[\""Keyboard\""]",1569.32,"{\""promo\"": \""29%\""}",47737,1,"""South America""" +2023-04-16,67032,1866,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",131.77,"{\"": \""24%\""}",237322,1,"""Europe""" +2023-02-26,67033,5817,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3294.89,{},185351,0,"""Africa""" +2024-08-09,67034,1526,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",648.05,"{\""seasonal\"": \""29%\""}",197453,0,"""South America""" +2024-05-01,67035,3175,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1654.98,{},176834,0,"""Asia""" +2023-04-26,67036,7435,"[\""Monitor\"", \""Charger\""]",4140.4,{},98464,0,"""North America""" +2023-09-09,67037,2333,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1276.94,"{\""loyalty\"": \""29%\""}",263395,0,"""Europe""" +2024-08-26,67038,7667,"[\""Charger\""]",3568.33,{},8493,0,"""Europe""" +2024-08-09,67039,4778,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2610.34,"{\"": \""21%\""}",92168,0,"""Asia""" +2024-05-26,67040,7245,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4296.56,{},18357,1,"""Africa""" +2023-06-02,67041,751,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4086.1,{},203439,1,"""Asia""" +2024-05-19,67042,5549,"[\""Headphones\""]",2204.63,{},121308,0,"""Africa""" +2023-08-03,67043,5992,"[\""Headphones\"", \""Tablet\""]",831.16,"{\""loyalty\"": \""20%\""}",121237,0,"""North America""" +2024-05-14,67044,6701,"[\""Laptop\"", \""Tablet\""]",3690.62,{},103533,1,"""North America""" +2024-04-08,67045,8022,"[\""Monitor\""]",4073.04,{},179439,1,"""Africa""" +2024-06-30,67046,9013,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",608.46,{},87584,0,"""North America""" +2024-09-01,67047,1267,"[\""Phone\""]",619.37,{},91245,0,"""Asia""" +2024-03-10,67048,9443,"[\""Headphones\""]",4482.26,"{\""promo\"": \""27%\""}",140013,1,"""Africa""" +2024-04-25,67049,501,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2746.48,{},147268,0,"""Asia""" +2024-09-07,67050,4647,"[\""Headphones\""]",4084.12,"{\"": \""9%\""}",279582,1,"""Europe""" +2023-10-13,67051,3010,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2639.13,"{\""seasonal\"": \""9%\""}",258236,1,"""North America""" +2023-05-20,67052,4180,"[\""Phone\""]",216.94,{},211316,1,"""South America""" +2024-05-11,67053,1901,"[\""Charger\""]",4183.98,{},284893,1,"""North America""" +2023-07-10,67054,7005,"[\""Phone\"", \""Headphones\""]",2038.42,{},249226,1,"""Europe""" +2023-05-31,67055,9109,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1885.11,"{\"": \""22%\""}",126590,1,"""North America""" +2024-12-08,67056,6353,"[\""Phone\""]",1049.74,"{\""promo\"": \""21%\""}",85614,0,"""Europe""" +2024-05-27,67057,2460,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4869.35,"{\""seasonal\"": \""9%\""}",65538,0,"""Asia""" +2023-07-26,67058,3811,"[\""Keyboard\""]",1280.38,{},150807,1,"""South America""" +2023-02-01,67059,2042,"[\""Keyboard\"", \""Wireless Mouse\""]",4270.03,{},93075,1,"""South America""" +2024-07-11,67060,1121,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2381.81,{},16610,1,"""South America""" +2023-11-05,67061,9955,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2573.91,{},296404,1,"""Asia""" +2023-03-06,67062,7952,"[\""Charger\""]",4684.4,"{\"": \""15%\""}",63016,0,"""Europe""" +2023-06-01,67063,3380,"[\""Laptop\"", \""Wireless Mouse\""]",3764.26,{},291310,0,"""Asia""" +2023-04-30,67064,3469,"[\""Charger\"", \""Headphones\""]",4114.56,"{\""loyalty\"": \""9%\""}",269852,1,"""Africa""" +2024-08-29,67065,5381,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1220.85,{},267502,0,"""North America""" +2023-07-04,67066,4532,"[\""Keyboard\""]",1934.58,{},200826,0,"""South America""" +2023-07-16,67067,2618,"[\""Charger\"", \""Phone\""]",2150.54,"{\""promo\"": \""21%\""}",265992,0,"""Europe""" +2024-09-14,67068,6270,"[\""Wireless Mouse\""]",955.0,{},184910,0,"""Europe""" +2023-11-04,67069,332,"[\""Laptop\"", \""Wireless Mouse\""]",4243.69,"{\"": \""11%\""}",268249,1,"""Africa""" +2024-12-07,67070,1365,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1452.34,{},149959,0,"""North America""" +2024-07-08,67071,8025,"[\""Tablet\""]",3322.18,{},111711,0,"""South America""" +2024-02-19,67072,8396,"[\""Keyboard\""]",2675.3,{},6465,0,"""North America""" +2023-04-03,67073,7174,"[\""Monitor\"", \""Tablet\""]",3715.63,{},251842,0,"""South America""" +2024-12-27,67074,8156,"[\""Keyboard\""]",1758.45,{},229240,1,"""Asia""" +2024-11-02,67075,413,"[\""Phone\"", \""Charger\""]",1352.75,"{\"": \""27%\""}",231321,1,"""Asia""" +2023-04-17,67076,7634,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2312.15,{},242210,0,"""Europe""" +2023-04-18,67077,8682,"[\""Wireless Mouse\"", \""Headphones\""]",556.52,"{\""loyalty\"": \""25%\""}",236315,0,"""Europe""" +2024-03-13,67078,17,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",420.48,{},174852,0,"""North America""" +2024-08-04,67079,2853,"[\""Monitor\"", \""Tablet\""]",2331.3,"{\""loyalty\"": \""18%\""}",298602,0,"""Europe""" +2023-10-29,67080,5051,"[\""Headphones\""]",3436.66,{},8372,1,"""North America""" +2024-04-24,67081,9265,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",311.22,{},177298,0,"""Europe""" +2023-11-14,67082,6396,"[\""Keyboard\""]",4038.68,"{\""seasonal\"": \""19%\""}",207021,0,"""Asia""" +2024-07-11,67083,3386,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1897.63,{},272651,0,"""North America""" +2023-02-16,67084,4284,"[\""Laptop\"", \""Wireless Mouse\""]",3910.41,{},162828,1,"""South America""" +2023-01-20,67085,7208,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3363.32,"{\""loyalty\"": \""15%\""}",152750,1,"""Europe""" +2024-11-23,67086,9724,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3496.52,{},60485,0,"""Europe""" +2023-02-15,67087,6218,"[\""Phone\"", \""Monitor\""]",1537.37,{},59608,1,"""Africa""" +2024-09-09,67088,2945,"[\""Monitor\"", \""Charger\""]",2228.1,"{\""seasonal\"": \""27%\""}",253829,1,"""Europe""" +2024-06-15,67089,402,"[\""Charger\"", \""Phone\""]",2908.68,"{\""promo\"": \""29%\""}",16811,1,"""North America""" +2023-11-02,67090,5569,"[\""Tablet\""]",4829.29,"{\""promo\"": \""26%\""}",145319,1,"""Africa""" +2024-01-25,67091,7075,"[\""Wireless Mouse\"", \""Keyboard\""]",3100.85,{},206957,1,"""South America""" +2023-10-22,67092,4775,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1886.79,{},60528,1,"""Africa""" +2023-09-29,67093,5407,"[\""Headphones\"", \""Monitor\""]",3747.37,{},29259,1,"""Europe""" +2023-04-08,67094,6519,"[\""Charger\"", \""Phone\""]",836.95,"{\""loyalty\"": \""22%\""}",58066,1,"""Europe""" +2024-03-29,67095,3485,"[\""Phone\"", \""Headphones\""]",1411.44,{},284150,1,"""South America""" +2024-06-08,67096,5976,"[\""Headphones\"", \""Tablet\""]",4248.01,{},127563,1,"""Europe""" +2023-06-05,67097,5229,"[\""Wireless Mouse\""]",3846.74,"{\""loyalty\"": \""6%\""}",219621,0,"""South America""" +2024-07-05,67098,8468,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3490.16,"{\""seasonal\"": \""12%\""}",197282,0,"""South America""" +2024-12-06,67099,1834,"[\""Keyboard\""]",3064.08,"{\"": \""30%\""}",198616,1,"""South America""" +2024-07-01,67100,6865,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3105.29,"{\""loyalty\"": \""26%\""}",22952,1,"""North America""" +2024-02-11,67101,5211,"[\""Tablet\""]",4151.88,{},193634,1,"""Asia""" +2024-11-28,67102,1041,"[\""Tablet\""]",3912.44,"{\"": \""10%\""}",203037,1,"""Africa""" +2024-09-26,67103,9214,"[\""Charger\"", \""Headphones\""]",356.77,{},61397,0,"""Europe""" +2024-08-16,67104,4223,"[\""Charger\"", \""Tablet\""]",1095.02,{},193386,0,"""North America""" +2024-02-17,67105,8866,"[\""Laptop\""]",3130.63,"{\"": \""16%\""}",109113,1,"""Europe""" +2024-11-01,67106,6705,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1356.66,"{\""promo\"": \""26%\""}",215601,0,"""North America""" +2024-02-28,67107,7361,"[\""Tablet\"", \""Monitor\""]",3387.91,"{\""seasonal\"": \""25%\""}",220286,1,"""Africa""" +2023-08-06,67108,5004,"[\""Keyboard\"", \""Headphones\""]",3766.85,{},31636,1,"""Africa""" +2023-03-26,67109,2412,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3542.69,{},201718,0,"""Africa""" +2023-03-01,67110,9078,"[\""Wireless Mouse\""]",3962.34,"{\""loyalty\"": \""13%\""}",79704,0,"""Europe""" +2024-02-15,67111,4054,"[\""Monitor\"", \""Phone\""]",2082.69,{},288225,1,"""North America""" +2023-03-27,67112,5339,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1559.87,{},210037,1,"""North America""" +2024-09-02,67113,2551,"[\""Laptop\""]",2838.03,{},16329,0,"""Africa""" +2023-06-04,67114,7724,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4527.28,"{\""promo\"": \""11%\""}",191280,1,"""Africa""" +2024-11-30,67115,1776,"[\""Tablet\"", \""Phone\""]",3143.63,{},131646,1,"""Asia""" +2023-02-11,67116,7612,"[\""Monitor\"", \""Tablet\""]",344.66,{},293840,1,"""Africa""" +2023-11-18,67117,9820,"[\""Tablet\""]",460.62,"{\""seasonal\"": \""12%\""}",228677,0,"""Asia""" +2023-08-26,67118,3400,"[\""Headphones\""]",1379.8,"{\""seasonal\"": \""18%\""}",156892,0,"""Europe""" +2024-12-25,67119,7055,"[\""Phone\"", \""Monitor\""]",2170.61,{},92236,0,"""South America""" +2024-05-29,67120,14,"[\""Charger\""]",3607.3,"{\""seasonal\"": \""21%\""}",277433,0,"""Asia""" +2024-11-17,67121,4445,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3271.99,"{\""seasonal\"": \""9%\""}",214156,0,"""Europe""" +2024-10-09,67122,577,"[\""Monitor\"", \""Charger\""]",1296.71,"{\""promo\"": \""23%\""}",274033,0,"""Africa""" +2024-04-19,67123,7457,"[\""Charger\""]",1622.54,{},174618,0,"""North America""" +2024-03-09,67124,1593,"[\""Charger\""]",413.35,{},68124,0,"""North America""" +2024-05-01,67125,4421,"[\""Wireless Mouse\"", \""Keyboard\""]",4485.23,"{\""loyalty\"": \""25%\""}",220898,0,"""Africa""" +2023-07-24,67126,4287,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2878.7,{},65364,1,"""South America""" +2024-03-27,67127,1210,"[\""Tablet\"", \""Phone\""]",1267.87,{},192922,1,"""Africa""" +2023-11-17,67128,8273,"[\""Charger\"", \""Monitor\""]",768.73,"{\""loyalty\"": \""23%\""}",51335,1,"""South America""" +2023-01-17,67129,293,"[\""Tablet\""]",2550.02,"{\"": \""18%\""}",82870,0,"""Europe""" +2023-03-13,67130,7870,"[\""Headphones\""]",1418.48,{},23313,1,"""Africa""" +2023-09-15,67131,5622,"[\""Monitor\"", \""Phone\""]",273.37,"{\""promo\"": \""18%\""}",107063,1,"""North America""" +2024-10-31,67132,2940,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3378.02,{},164906,1,"""North America""" +2024-10-31,67133,8662,"[\""Keyboard\""]",4601.6,"{\"": \""27%\""}",100153,0,"""South America""" +2024-08-26,67134,4764,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4131.37,"{\""seasonal\"": \""30%\""}",176676,1,"""Africa""" +2024-01-04,67135,9127,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",813.8,"{\""loyalty\"": \""28%\""}",43327,1,"""Africa""" +2023-08-07,67136,5968,"[\""Laptop\"", \""Phone\""]",2835.24,"{\""loyalty\"": \""7%\""}",286422,1,"""Europe""" +2024-05-15,67137,4499,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3464.79,{},119161,0,"""North America""" +2024-09-16,67138,7695,"[\""Charger\"", \""Keyboard\""]",1505.53,"{\""loyalty\"": \""17%\""}",22771,0,"""North America""" +2023-06-19,67139,3662,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",984.83,{},185698,1,"""Asia""" +2023-10-09,67140,5719,"[\""Phone\""]",4597.01,"{\""seasonal\"": \""20%\""}",146695,0,"""North America""" +2023-05-27,67141,3282,"[\""Wireless Mouse\"", \""Phone\""]",137.69,{},262245,0,"""Asia""" +2024-03-10,67142,2684,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4040.69,{},4909,1,"""Africa""" +2023-05-20,67143,4454,"[\""Wireless Mouse\""]",4157.29,{},102467,1,"""Asia""" +2024-09-22,67144,771,"[\""Wireless Mouse\""]",3309.96,"{\"": \""13%\""}",260008,0,"""Asia""" +2024-07-03,67145,177,"[\""Charger\""]",1828.33,"{\""loyalty\"": \""8%\""}",46919,0,"""Africa""" +2023-09-03,67146,1294,"[\""Laptop\"", \""Phone\"", \""Charger\""]",907.72,"{\""promo\"": \""20%\""}",235707,1,"""South America""" +2023-03-03,67147,2235,"[\""Phone\"", \""Keyboard\""]",4372.66,"{\"": \""19%\""}",230326,1,"""North America""" +2023-02-22,67148,7531,"[\""Monitor\"", \""Charger\""]",1593.55,{},111693,1,"""Africa""" +2023-01-09,67149,183,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3113.51,{},191409,0,"""North America""" +2024-01-03,67150,5839,"[\""Charger\""]",3688.18,{},164290,1,"""Africa""" +2023-10-21,67151,7455,"[\""Monitor\""]",1556.25,"{\""loyalty\"": \""11%\""}",258031,1,"""North America""" +2024-10-14,67152,8480,"[\""Tablet\""]",3036.19,{},92013,1,"""Asia""" +2024-06-22,67153,6794,"[\""Wireless Mouse\""]",1366.69,{},77658,1,"""Europe""" +2023-12-14,67154,7173,"[\""Charger\"", \""Headphones\""]",3494.14,{},193963,0,"""Africa""" +2024-11-22,67155,563,"[\""Monitor\""]",344.22,{},73933,0,"""North America""" +2023-07-28,67156,204,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2259.27,{},98297,0,"""South America""" +2024-02-03,67157,7113,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",853.86,{},176464,1,"""Europe""" +2023-08-22,67158,3857,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3592.88,"{\""seasonal\"": \""16%\""}",36177,0,"""North America""" +2023-11-11,67159,1198,"[\""Wireless Mouse\""]",2384.6,"{\""seasonal\"": \""21%\""}",144737,1,"""North America""" +2024-05-17,67160,6095,"[\""Headphones\"", \""Laptop\""]",4369.44,{},46442,1,"""North America""" +2024-05-21,67161,1962,"[\""Laptop\"", \""Tablet\""]",1611.71,"{\""seasonal\"": \""5%\""}",262732,1,"""South America""" +2023-04-13,67162,7280,"[\""Charger\""]",4185.56,"{\""loyalty\"": \""19%\""}",46511,1,"""South America""" +2023-02-18,67163,4853,"[\""Headphones\""]",2749.61,"{\""loyalty\"": \""21%\""}",76296,1,"""South America""" +2023-12-08,67164,4327,"[\""Charger\""]",4882.9,{},249613,0,"""South America""" +2023-08-29,67165,8583,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",982.61,{},51487,0,"""Europe""" +2024-07-11,67166,7889,"[\""Keyboard\""]",2418.47,{},264074,1,"""South America""" +2024-05-07,67167,6568,"[\""Tablet\""]",3389.99,{},231658,0,"""Europe""" +2023-06-20,67168,2380,"[\""Keyboard\"", \""Monitor\""]",2879.09,{},211635,1,"""North America""" +2024-04-13,67169,9975,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2097.7,"{\""seasonal\"": \""18%\""}",17689,1,"""Asia""" +2024-09-03,67170,2938,"[\""Charger\"", \""Monitor\""]",4248.35,"{\""promo\"": \""13%\""}",211624,1,"""South America""" +2023-10-26,67171,3121,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1241.31,{},278038,1,"""Africa""" +2023-02-05,67172,3096,"[\""Tablet\""]",4930.84,"{\""loyalty\"": \""27%\""}",202463,0,"""Africa""" +2024-12-06,67173,9021,"[\""Charger\"", \""Wireless Mouse\""]",2749.89,"{\""promo\"": \""20%\""}",26090,1,"""South America""" +2023-04-15,67174,9900,"[\""Wireless Mouse\"", \""Laptop\""]",1612.7,"{\""seasonal\"": \""20%\""}",210202,1,"""Europe""" +2023-09-15,67175,7227,"[\""Phone\"", \""Laptop\""]",3207.52,"{\""seasonal\"": \""13%\""}",60990,1,"""Asia""" +2023-01-04,67176,9328,"[\""Headphones\"", \""Keyboard\""]",2354.25,"{\""seasonal\"": \""8%\""}",48300,1,"""North America""" +2024-12-16,67177,5497,"[\""Tablet\"", \""Keyboard\""]",2382.94,"{\"": \""28%\""}",123320,1,"""Asia""" +2024-11-18,67178,9691,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2100.04,"{\"": \""5%\""}",137779,0,"""Africa""" +2023-03-07,67179,5444,"[\""Laptop\"", \""Phone\""]",1584.93,"{\""promo\"": \""26%\""}",33872,0,"""Asia""" +2023-02-22,67180,5777,"[\""Tablet\"", \""Phone\""]",2325.95,{},76073,1,"""Africa""" +2024-05-01,67181,5330,"[\""Wireless Mouse\""]",3934.79,"{\""loyalty\"": \""19%\""}",183956,0,"""Asia""" +2024-08-04,67182,4376,"[\""Wireless Mouse\"", \""Charger\""]",4505.64,{},51470,1,"""Africa""" +2023-07-23,67183,3020,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",743.25,{},117517,1,"""South America""" +2024-01-31,67184,1827,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2067.69,"{\""promo\"": \""11%\""}",166196,1,"""Europe""" +2023-01-22,67185,777,"[\""Laptop\""]",4536.89,"{\""seasonal\"": \""23%\""}",55452,0,"""Europe""" +2023-10-27,67186,2755,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3965.32,{},240937,0,"""South America""" +2024-08-11,67187,8310,"[\""Laptop\"", \""Charger\""]",4392.82,{},217587,1,"""Africa""" +2024-06-19,67188,3188,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4521.53,"{\""promo\"": \""9%\""}",107497,1,"""Africa""" +2023-09-28,67189,6986,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",189.54,"{\""loyalty\"": \""10%\""}",220581,0,"""Africa""" +2023-02-25,67190,1142,"[\""Charger\""]",3095.61,{},45765,1,"""South America""" +2023-11-09,67191,9634,"[\""Wireless Mouse\""]",4861.96,{},57378,0,"""Asia""" +2024-03-23,67192,5240,"[\""Charger\"", \""Tablet\""]",1145.24,{},156651,0,"""Europe""" +2023-12-06,67193,7354,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",753.3,"{\"": \""12%\""}",45665,0,"""North America""" +2024-07-01,67194,1465,"[\""Tablet\"", \""Headphones\""]",3944.01,"{\""seasonal\"": \""24%\""}",40237,0,"""Europe""" +2024-01-29,67195,9822,"[\""Tablet\""]",313.12,{},155372,0,"""Africa""" +2023-12-13,67196,9791,"[\""Wireless Mouse\"", \""Monitor\""]",766.5,"{\""loyalty\"": \""10%\""}",219037,1,"""South America""" +2023-12-06,67197,4757,"[\""Wireless Mouse\""]",1245.24,"{\"": \""11%\""}",179876,0,"""Europe""" +2023-02-08,67198,1803,"[\""Phone\"", \""Monitor\""]",3820.86,"{\"": \""16%\""}",142045,0,"""South America""" +2024-02-15,67199,1330,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2851.7,"{\""promo\"": \""21%\""}",2791,0,"""South America""" +2024-02-01,67200,1119,"[\""Wireless Mouse\""]",3700.41,"{\""promo\"": \""6%\""}",73132,0,"""North America""" +2023-04-04,67201,1537,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3600.95,{},198307,1,"""Africa""" +2024-01-03,67202,6425,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4427.58,"{\"": \""13%\""}",156649,1,"""North America""" +2024-12-01,67203,6560,"[\""Charger\""]",238.56,"{\""loyalty\"": \""21%\""}",124218,0,"""Africa""" +2023-02-04,67204,524,"[\""Laptop\""]",4499.34,{},42097,0,"""Asia""" +2024-05-23,67205,7332,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4708.33,"{\""promo\"": \""16%\""}",95644,0,"""North America""" +2024-12-03,67206,3272,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3957.24,{},73872,1,"""North America""" +2023-06-26,67207,2511,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3519.34,"{\""seasonal\"": \""26%\""}",275870,0,"""South America""" +2024-03-23,67208,9142,"[\""Wireless Mouse\"", \""Charger\""]",1355.71,"{\"": \""30%\""}",159795,0,"""South America""" +2024-02-29,67209,6347,"[\""Keyboard\"", \""Monitor\""]",1946.01,"{\"": \""24%\""}",185372,1,"""North America""" +2024-04-08,67210,9858,"[\""Headphones\""]",3963.23,"{\""loyalty\"": \""14%\""}",144769,0,"""Asia""" +2023-03-02,67211,7469,"[\""Phone\""]",4189.72,"{\"": \""30%\""}",17812,0,"""South America""" +2024-11-30,67212,2272,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3768.77,"{\"": \""14%\""}",113803,1,"""Africa""" +2024-08-19,67213,3505,"[\""Phone\"", \""Keyboard\""]",4193.13,{},198138,1,"""Africa""" +2024-03-02,67214,1627,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1713.2,"{\""loyalty\"": \""29%\""}",256766,1,"""Asia""" +2023-08-21,67215,8283,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1956.47,{},68615,1,"""South America""" +2023-08-08,67216,1418,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4963.8,{},74955,0,"""Asia""" +2023-10-05,67217,8570,"[\""Phone\"", \""Keyboard\""]",565.61,"{\""loyalty\"": \""22%\""}",213373,0,"""North America""" +2023-06-05,67218,2022,"[\""Monitor\"", \""Laptop\""]",3048.46,"{\""loyalty\"": \""21%\""}",111788,1,"""Europe""" +2023-12-01,67219,5098,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1769.21,"{\""seasonal\"": \""17%\""}",5189,0,"""Asia""" +2023-03-12,67220,6532,"[\""Wireless Mouse\"", \""Tablet\""]",710.75,"{\"": \""30%\""}",279896,1,"""South America""" +2023-01-29,67221,2453,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2361.48,{},21323,0,"""South America""" +2023-09-08,67222,22,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",361.55,"{\""loyalty\"": \""9%\""}",195104,0,"""North America""" +2024-06-25,67223,8225,"[\""Monitor\"", \""Wireless Mouse\""]",2520.89,{},21741,0,"""Asia""" +2024-11-26,67224,7279,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3682.27,{},126918,1,"""Europe""" +2023-04-23,67225,9644,"[\""Laptop\"", \""Headphones\""]",812.02,"{\""promo\"": \""9%\""}",230462,1,"""Asia""" +2024-02-14,67226,8393,"[\""Laptop\"", \""Tablet\""]",651.99,"{\""seasonal\"": \""5%\""}",296444,1,"""Europe""" +2023-03-25,67227,6483,"[\""Wireless Mouse\"", \""Laptop\""]",1629.94,"{\""promo\"": \""24%\""}",225220,0,"""South America""" +2023-12-22,67228,1256,"[\""Wireless Mouse\""]",4545.13,{},192639,0,"""North America""" +2023-11-28,67229,5554,"[\""Headphones\""]",2280.47,{},123029,0,"""Asia""" +2023-06-27,67230,9425,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4810.13,{},73314,1,"""Africa""" +2024-02-19,67231,6722,"[\""Laptop\"", \""Charger\"", \""Phone\""]",448.28,"{\""promo\"": \""11%\""}",233175,1,"""North America""" +2024-03-27,67232,6378,"[\""Keyboard\"", \""Wireless Mouse\""]",3709.54,{},190619,1,"""South America""" +2024-03-07,67233,1248,"[\""Phone\"", \""Monitor\""]",4734.83,{},204784,1,"""Europe""" +2024-10-28,67234,2495,"[\""Phone\""]",3951.13,"{\""loyalty\"": \""9%\""}",172025,1,"""Asia""" +2024-12-30,67235,3862,"[\""Headphones\"", \""Wireless Mouse\""]",1613.48,{},8497,0,"""Asia""" +2023-05-24,67236,3853,"[\""Wireless Mouse\""]",3879.38,"{\""seasonal\"": \""7%\""}",192732,0,"""Asia""" +2024-10-26,67237,1234,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",547.77,"{\""seasonal\"": \""19%\""}",173029,1,"""Europe""" +2023-10-15,67238,2920,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2441.54,"{\"": \""13%\""}",39062,1,"""Europe""" +2023-05-16,67239,1821,"[\""Phone\""]",2678.08,"{\""seasonal\"": \""19%\""}",212354,0,"""North America""" +2023-05-26,67240,2139,"[\""Wireless Mouse\"", \""Tablet\""]",4780.55,{},208314,1,"""Europe""" +2023-05-29,67241,6418,"[\""Headphones\""]",3291.82,{},91984,1,"""North America""" +2023-05-15,67242,1412,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2732.26,"{\""seasonal\"": \""25%\""}",279569,0,"""Africa""" +2024-09-13,67243,1869,"[\""Charger\""]",3543.4,{},228522,1,"""Africa""" +2024-02-05,67244,9348,"[\""Keyboard\""]",1109.29,"{\""loyalty\"": \""30%\""}",152011,1,"""Africa""" +2023-04-19,67245,7904,"[\""Phone\""]",929.08,{},204574,1,"""Asia""" +2023-09-16,67246,7586,"[\""Wireless Mouse\""]",3336.65,"{\"": \""18%\""}",286835,1,"""Europe""" +2024-09-25,67247,758,"[\""Headphones\"", \""Tablet\""]",4495.88,{},204406,1,"""Africa""" +2024-05-12,67248,5383,"[\""Phone\"", \""Laptop\""]",237.19,{},186862,1,"""South America""" +2023-07-07,67249,1894,"[\""Monitor\"", \""Keyboard\""]",2518.92,{},242058,1,"""North America""" +2024-10-14,67250,8872,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",471.03,"{\""loyalty\"": \""26%\""}",21007,1,"""Europe""" +2024-02-09,67251,3147,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2565.73,"{\""loyalty\"": \""14%\""}",15744,0,"""Africa""" +2024-01-10,67252,2840,"[\""Keyboard\"", \""Charger\""]",4315.36,{},125370,0,"""North America""" +2024-08-19,67253,7446,"[\""Headphones\"", \""Monitor\""]",3977.56,"{\""seasonal\"": \""15%\""}",171162,0,"""South America""" +2023-01-07,67254,9504,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3379.45,"{\""promo\"": \""23%\""}",95551,0,"""Europe""" +2023-07-17,67255,3360,"[\""Wireless Mouse\"", \""Keyboard\""]",3804.94,{},233432,1,"""North America""" +2023-08-11,67256,5988,"[\""Monitor\""]",4575.54,{},63065,0,"""South America""" +2023-10-07,67257,3583,"[\""Monitor\"", \""Keyboard\""]",2583.47,"{\"": \""8%\""}",286183,1,"""South America""" +2024-01-02,67258,1137,"[\""Charger\""]",2914.73,"{\""seasonal\"": \""28%\""}",45142,0,"""Asia""" +2024-09-06,67259,3501,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1052.14,{},145810,0,"""Asia""" +2023-05-01,67260,3811,"[\""Laptop\""]",732.35,"{\""loyalty\"": \""14%\""}",144601,1,"""South America""" +2023-11-12,67261,4190,"[\""Charger\""]",2791.94,"{\"": \""21%\""}",124091,0,"""Africa""" +2023-10-05,67262,2555,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2761.71,{},105410,1,"""Asia""" +2024-05-25,67263,8023,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1300.55,{},69447,0,"""Africa""" +2024-03-22,67264,3788,"[\""Headphones\""]",3950.03,{},28994,0,"""South America""" +2023-02-12,67265,9470,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4680.23,{},55772,1,"""North America""" +2024-04-26,67266,4858,"[\""Wireless Mouse\""]",2703.51,"{\"": \""23%\""}",37952,0,"""South America""" +2024-08-07,67267,3472,"[\""Monitor\"", \""Phone\""]",368.59,{},196235,1,"""Europe""" +2024-02-20,67268,4458,"[\""Headphones\"", \""Laptop\""]",1915.55,"{\"": \""14%\""}",105395,1,"""South America""" +2024-04-07,67269,7886,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1258.26,"{\""seasonal\"": \""19%\""}",58304,1,"""Asia""" +2024-09-14,67270,6518,"[\""Keyboard\""]",3566.51,"{\""seasonal\"": \""9%\""}",130365,0,"""South America""" +2023-01-08,67271,5889,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1438.05,"{\""promo\"": \""20%\""}",145068,1,"""North America""" +2023-09-11,67272,3172,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1662.93,{},34908,1,"""Europe""" +2024-10-05,67273,5097,"[\""Phone\"", \""Keyboard\""]",3788.12,"{\""promo\"": \""7%\""}",268029,1,"""Europe""" +2023-06-05,67274,100,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4953.18,"{\""promo\"": \""20%\""}",37811,0,"""Africa""" +2024-01-04,67275,457,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1445.77,"{\""promo\"": \""13%\""}",170721,0,"""Asia""" +2024-07-19,67276,3535,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1003.35,"{\""promo\"": \""24%\""}",204260,0,"""Europe""" +2023-03-08,67277,845,"[\""Tablet\""]",1767.17,"{\""loyalty\"": \""5%\""}",295241,0,"""Europe""" +2023-10-24,67278,9377,"[\""Monitor\""]",1323.54,{},291712,1,"""Asia""" +2024-04-28,67279,756,"[\""Tablet\"", \""Monitor\""]",2433.05,"{\""loyalty\"": \""9%\""}",130633,1,"""South America""" +2023-05-23,67280,5795,"[\""Tablet\"", \""Headphones\""]",2220.82,"{\""seasonal\"": \""15%\""}",107709,1,"""Europe""" +2023-12-08,67281,8506,"[\""Laptop\"", \""Phone\""]",691.57,{},122040,0,"""Asia""" +2024-10-19,67282,8876,"[\""Wireless Mouse\"", \""Charger\""]",4898.77,"{\"": \""14%\""}",294950,0,"""North America""" +2024-01-01,67283,8402,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4046.83,{},192583,0,"""Asia""" +2024-02-20,67284,1457,"[\""Charger\""]",1574.01,{},10976,1,"""Europe""" +2023-06-11,67285,5013,"[\""Headphones\""]",4872.75,{},231419,1,"""Europe""" +2024-09-13,67286,5791,"[\""Keyboard\""]",685.36,"{\""loyalty\"": \""7%\""}",153242,0,"""North America""" +2024-07-12,67287,1777,"[\""Tablet\""]",2924.58,"{\""promo\"": \""24%\""}",82547,0,"""North America""" +2024-09-15,67288,8699,"[\""Keyboard\"", \""Monitor\""]",3650.71,"{\"": \""17%\""}",178613,0,"""Europe""" +2024-02-20,67289,8091,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2928.86,{},215854,1,"""Europe""" +2023-03-29,67290,1931,"[\""Keyboard\""]",1068.14,{},8136,1,"""Asia""" +2024-05-23,67291,38,"[\""Keyboard\""]",3446.05,{},126448,0,"""Europe""" +2023-08-10,67292,9249,"[\""Monitor\"", \""Keyboard\""]",1455.06,"{\""loyalty\"": \""22%\""}",243408,1,"""South America""" +2023-01-19,67293,1176,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",591.45,"{\""seasonal\"": \""12%\""}",104880,1,"""South America""" +2023-03-06,67294,6764,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4618.41,{},118440,1,"""Africa""" +2024-07-24,67295,2297,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",436.25,"{\""loyalty\"": \""26%\""}",88833,1,"""Europe""" +2024-10-04,67296,4722,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1361.73,{},275075,1,"""Europe""" +2023-07-08,67297,7281,"[\""Wireless Mouse\""]",2990.37,"{\""promo\"": \""6%\""}",92194,1,"""Africa""" +2023-12-05,67298,331,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1759.84,{},1692,0,"""Europe""" +2024-12-07,67299,2100,"[\""Charger\""]",2871.41,"{\""promo\"": \""28%\""}",188032,0,"""South America""" +2024-04-13,67300,1195,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",123.96,{},248351,1,"""Asia""" +2023-06-10,67301,3126,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2109.58,{},9959,1,"""North America""" +2024-07-02,67302,3491,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4202.28,"{\""promo\"": \""10%\""}",220106,1,"""Europe""" +2024-04-20,67303,3003,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",649.83,{},221561,0,"""Europe""" +2023-03-18,67304,1389,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2981.78,{},146961,1,"""North America""" +2023-06-18,67305,5593,"[\""Wireless Mouse\""]",1357.64,{},1060,1,"""North America""" +2023-06-25,67306,5796,"[\""Laptop\""]",2640.22,{},110070,0,"""South America""" +2023-04-28,67307,4747,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2634.52,{},5826,0,"""South America""" +2024-06-28,67308,9171,"[\""Keyboard\""]",2415.87,{},44268,1,"""Africa""" +2024-09-26,67309,6282,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",849.88,{},37636,0,"""South America""" +2023-04-12,67310,6456,"[\""Phone\""]",1949.43,{},186947,0,"""Asia""" +2023-06-15,67311,8812,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2959.47,"{\""promo\"": \""11%\""}",233916,0,"""Africa""" +2024-05-17,67312,6379,"[\""Laptop\""]",1418.14,"{\""seasonal\"": \""11%\""}",227783,0,"""Africa""" +2023-06-27,67313,202,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2881.03,{},184787,1,"""Asia""" +2023-01-27,67314,3469,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",146.7,"{\""promo\"": \""17%\""}",177190,1,"""North America""" +2024-12-04,67315,6189,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3674.53,{},234386,0,"""North America""" +2024-02-26,67316,1632,"[\""Wireless Mouse\""]",4746.44,{},118312,0,"""North America""" +2024-11-09,67317,2321,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3224.71,{},30683,0,"""Asia""" +2024-03-13,67318,2158,"[\""Monitor\""]",947.51,{},66721,1,"""Europe""" +2024-11-03,67319,6512,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4541.42,{},64921,1,"""South America""" +2024-04-19,67320,4349,"[\""Charger\"", \""Phone\"", \""Headphones\""]",214.58,{},76354,1,"""Europe""" +2023-10-06,67321,7511,"[\""Laptop\""]",4577.04,"{\""loyalty\"": \""13%\""}",125669,1,"""Asia""" +2023-07-27,67322,9251,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1861.99,"{\""seasonal\"": \""5%\""}",61074,0,"""Europe""" +2023-08-02,67323,7634,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1205.1,{},13785,0,"""Europe""" +2023-06-02,67324,9304,"[\""Phone\"", \""Tablet\""]",4050.65,"{\"": \""14%\""}",94967,0,"""Africa""" +2023-12-28,67325,5101,"[\""Laptop\"", \""Headphones\""]",2649.08,{},30434,1,"""North America""" +2024-05-08,67326,2649,"[\""Keyboard\""]",1815.57,"{\""promo\"": \""26%\""}",224518,0,"""Africa""" +2023-10-06,67327,9741,"[\""Laptop\"", \""Headphones\""]",698.96,{},158717,1,"""Asia""" +2024-08-21,67328,6738,"[\""Keyboard\""]",975.45,{},268992,0,"""Asia""" +2024-06-23,67329,6183,"[\""Tablet\"", \""Phone\""]",3972.52,{},249805,0,"""Asia""" +2024-02-07,67330,838,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3565.73,{},193104,0,"""South America""" +2023-08-26,67331,503,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4058.82,"{\""promo\"": \""21%\""}",1011,1,"""Africa""" +2023-01-03,67332,4734,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",885.92,"{\""loyalty\"": \""29%\""}",245726,0,"""North America""" +2023-11-03,67333,2782,"[\""Headphones\"", \""Tablet\""]",2887.36,"{\""loyalty\"": \""18%\""}",292351,0,"""Europe""" +2024-02-28,67334,6955,"[\""Headphones\""]",2543.17,{},237562,0,"""Africa""" +2024-06-26,67335,3395,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4535.3,{},220425,0,"""North America""" +2023-11-01,67336,7581,"[\""Keyboard\""]",4543.92,"{\"": \""9%\""}",96169,1,"""North America""" +2023-12-23,67337,917,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",271.1,{},118151,1,"""South America""" +2024-05-28,67338,6488,"[\""Charger\""]",363.72,"{\""seasonal\"": \""18%\""}",129477,1,"""Africa""" +2024-02-21,67339,3953,"[\""Headphones\"", \""Laptop\""]",73.68,{},10961,1,"""South America""" +2024-09-10,67340,9255,"[\""Keyboard\"", \""Wireless Mouse\""]",4647.09,{},275355,0,"""Europe""" +2024-03-09,67341,7677,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2176.47,"{\""loyalty\"": \""24%\""}",75041,0,"""Asia""" +2024-08-15,67342,2303,"[\""Headphones\""]",2995.98,"{\"": \""29%\""}",226391,0,"""Asia""" +2023-07-07,67343,73,"[\""Tablet\""]",4948.03,{},152953,0,"""Asia""" +2024-03-20,67344,9261,"[\""Phone\""]",237.01,"{\"": \""24%\""}",141771,0,"""North America""" +2024-09-20,67345,8489,"[\""Wireless Mouse\""]",2726.64,{},36106,1,"""Africa""" +2024-03-17,67346,917,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2702.1,{},148959,1,"""North America""" +2024-02-12,67347,8257,"[\""Tablet\"", \""Phone\""]",1553.02,{},1997,0,"""North America""" +2024-11-15,67348,9437,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",941.46,{},80028,0,"""Europe""" +2024-03-19,67349,1112,"[\""Headphones\""]",1386.93,{},20145,0,"""South America""" +2024-11-01,67350,3450,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3762.14,"{\""loyalty\"": \""21%\""}",172245,1,"""North America""" +2024-08-05,67351,1077,"[\""Charger\""]",3516.03,"{\"": \""21%\""}",81188,0,"""South America""" +2024-11-09,67352,2096,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3758.78,{},20999,0,"""Africa""" +2023-01-22,67353,4236,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",217.25,{},170417,1,"""South America""" +2023-08-10,67354,1523,"[\""Monitor\"", \""Headphones\""]",533.83,"{\""seasonal\"": \""15%\""}",206014,1,"""South America""" +2023-12-12,67355,732,"[\""Keyboard\"", \""Phone\""]",2566.06,"{\""seasonal\"": \""17%\""}",158786,1,"""Asia""" +2024-04-01,67356,770,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1335.11,"{\""promo\"": \""5%\""}",128438,1,"""Asia""" +2023-12-06,67357,7422,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1923.23,"{\""promo\"": \""13%\""}",49335,0,"""South America""" +2024-02-19,67358,5832,"[\""Keyboard\""]",4895.94,"{\""seasonal\"": \""10%\""}",253374,1,"""South America""" +2023-12-24,67359,7846,"[\""Phone\"", \""Laptop\""]",4542.63,{},135987,1,"""South America""" +2023-08-21,67360,5782,"[\""Phone\""]",3313.1,{},261959,0,"""North America""" +2023-11-07,67361,6555,"[\""Phone\"", \""Headphones\""]",3587.5,"{\""promo\"": \""15%\""}",83545,1,"""Africa""" +2023-01-21,67362,2323,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2732.28,"{\""seasonal\"": \""16%\""}",246224,0,"""Africa""" +2024-04-28,67363,5146,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1205.94,"{\"": \""8%\""}",94243,0,"""Europe""" +2024-04-15,67364,3317,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2784.91,"{\""loyalty\"": \""6%\""}",242583,0,"""Europe""" +2023-08-17,67365,1004,"[\""Phone\""]",2579.38,"{\""promo\"": \""28%\""}",91116,1,"""Europe""" +2023-03-19,67366,84,"[\""Headphones\""]",1662.75,"{\"": \""22%\""}",179741,0,"""North America""" +2023-08-07,67367,2421,"[\""Charger\"", \""Monitor\""]",3926.98,{},193011,0,"""Europe""" +2023-05-27,67368,5224,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2504.78,"{\""loyalty\"": \""28%\""}",225413,0,"""South America""" +2024-09-15,67369,3741,"[\""Keyboard\""]",1610.78,"{\""seasonal\"": \""19%\""}",132971,0,"""North America""" +2024-11-11,67370,8927,"[\""Laptop\"", \""Phone\""]",4307.3,{},290073,1,"""Europe""" +2023-07-22,67371,5947,"[\""Laptop\"", \""Headphones\""]",4097.08,{},5964,0,"""Africa""" +2023-05-15,67372,5382,"[\""Charger\""]",2187.08,{},119913,0,"""South America""" +2024-06-11,67373,759,"[\""Wireless Mouse\"", \""Charger\""]",1230.51,"{\""promo\"": \""13%\""}",13420,0,"""Europe""" +2023-01-29,67374,5114,"[\""Laptop\"", \""Wireless Mouse\""]",3871.48,"{\"": \""15%\""}",151621,1,"""Africa""" +2024-09-09,67375,6792,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",375.65,"{\""seasonal\"": \""24%\""}",137366,1,"""South America""" +2024-05-22,67376,2988,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3893.85,"{\""loyalty\"": \""26%\""}",177983,0,"""South America""" +2024-05-11,67377,2019,"[\""Headphones\"", \""Monitor\""]",2282.53,{},255107,0,"""Africa""" +2024-06-25,67378,2708,"[\""Monitor\"", \""Keyboard\""]",1006.79,{},264604,1,"""North America""" +2023-11-15,67379,9944,"[\""Phone\""]",2279.45,{},244463,0,"""North America""" +2023-05-09,67380,235,"[\""Headphones\"", \""Tablet\""]",3520.54,{},199260,0,"""Asia""" +2024-11-03,67381,5336,"[\""Monitor\""]",1361.56,{},286956,0,"""South America""" +2024-12-31,67382,2033,"[\""Monitor\""]",3337.05,{},120730,0,"""Europe""" +2024-10-06,67383,4910,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1280.5,{},220039,0,"""Europe""" +2024-10-20,67384,8563,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4649.23,{},157954,0,"""Asia""" +2023-10-28,67385,6231,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3372.36,{},272975,1,"""North America""" +2023-01-06,67386,9157,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1057.11,"{\"": \""26%\""}",85141,0,"""North America""" +2024-06-03,67387,784,"[\""Laptop\""]",4915.32,{},111398,1,"""South America""" +2024-03-26,67388,8261,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3199.39,{},52147,1,"""Asia""" +2023-08-12,67389,6881,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2724.9,{},27341,0,"""Asia""" +2024-10-13,67390,5070,"[\""Tablet\""]",601.51,"{\""loyalty\"": \""14%\""}",292661,1,"""South America""" +2024-05-12,67391,2080,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2765.79,"{\""promo\"": \""12%\""}",18187,0,"""Africa""" +2023-05-29,67392,8070,"[\""Wireless Mouse\""]",4559.88,"{\""loyalty\"": \""14%\""}",8928,1,"""Africa""" +2024-09-04,67393,6781,"[\""Tablet\""]",169.44,"{\""promo\"": \""22%\""}",269415,0,"""South America""" +2023-09-19,67394,732,"[\""Wireless Mouse\""]",1803.72,{},106772,0,"""North America""" +2023-12-13,67395,170,"[\""Tablet\""]",3817.6,"{\""promo\"": \""25%\""}",76951,1,"""Asia""" +2024-01-20,67396,9975,"[\""Tablet\"", \""Laptop\""]",1452.53,{},171408,0,"""South America""" +2023-03-24,67397,5315,"[\""Phone\""]",761.66,"{\""promo\"": \""25%\""}",60029,1,"""North America""" +2024-04-04,67398,2495,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2896.6,{},279797,0,"""Africa""" +2024-01-16,67399,453,"[\""Charger\""]",4791.35,{},218019,0,"""Asia""" +2024-08-09,67400,6902,"[\""Laptop\""]",336.17,"{\"": \""27%\""}",268544,0,"""South America""" +2023-02-28,67401,9030,"[\""Laptop\"", \""Wireless Mouse\""]",4117.9,"{\""promo\"": \""13%\""}",17532,0,"""North America""" +2024-01-02,67402,5789,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2307.27,"{\""seasonal\"": \""15%\""}",245664,0,"""Europe""" +2024-12-03,67403,4636,"[\""Tablet\"", \""Headphones\""]",883.78,"{\""seasonal\"": \""8%\""}",215481,0,"""Asia""" +2023-03-24,67404,884,"[\""Monitor\"", \""Tablet\""]",4152.46,{},8018,1,"""South America""" +2023-02-05,67405,2248,"[\""Laptop\"", \""Headphones\""]",4675.79,"{\""promo\"": \""15%\""}",115005,0,"""North America""" +2024-07-21,67406,7330,"[\""Laptop\"", \""Monitor\""]",329.72,"{\""promo\"": \""6%\""}",293413,1,"""South America""" +2023-11-26,67407,1063,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1455.14,{},57211,0,"""South America""" +2023-09-06,67408,3053,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1741.59,"{\""loyalty\"": \""20%\""}",55249,0,"""North America""" +2023-11-03,67409,9174,"[\""Keyboard\"", \""Tablet\""]",2414.44,"{\""promo\"": \""6%\""}",127228,0,"""Africa""" +2024-09-22,67410,3281,"[\""Tablet\"", \""Headphones\""]",3758.43,{},243149,1,"""South America""" +2024-12-04,67411,7435,"[\""Laptop\"", \""Charger\""]",1938.28,{},46989,1,"""South America""" +2024-07-20,67412,5734,"[\""Monitor\""]",2731.23,{},171367,0,"""North America""" +2023-05-14,67413,227,"[\""Laptop\""]",2471.26,{},286589,0,"""North America""" +2024-04-10,67414,7246,"[\""Wireless Mouse\""]",4010.95,{},81262,0,"""Africa""" +2023-11-13,67415,1439,"[\""Laptop\""]",4250.5,{},19736,0,"""North America""" +2024-11-04,67416,5762,"[\""Keyboard\"", \""Charger\""]",794.02,"{\""promo\"": \""15%\""}",299415,1,"""Europe""" +2023-03-18,67417,5011,"[\""Headphones\"", \""Phone\""]",4820.68,{},183332,0,"""Asia""" +2024-12-12,67418,664,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3740.8,{},23551,1,"""South America""" +2024-07-05,67419,6186,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3444.62,"{\""loyalty\"": \""13%\""}",172293,1,"""Asia""" +2023-04-04,67420,5572,"[\""Tablet\"", \""Monitor\""]",3286.03,"{\""promo\"": \""22%\""}",112876,1,"""Europe""" +2023-06-19,67421,9979,"[\""Charger\""]",254.93,{},62729,0,"""Europe""" +2024-02-05,67422,703,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3388.74,"{\""seasonal\"": \""30%\""}",174239,0,"""Africa""" +2024-07-11,67423,5956,"[\""Tablet\""]",1031.29,{},206684,0,"""North America""" +2023-06-23,67424,2822,"[\""Phone\""]",625.36,"{\""promo\"": \""13%\""}",97364,1,"""Africa""" +2023-01-23,67425,8809,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4200.07,{},36259,0,"""Europe""" +2024-05-10,67426,8801,"[\""Phone\"", \""Monitor\""]",3438.35,{},122191,0,"""Africa""" +2023-07-03,67427,5597,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4061.18,{},67655,0,"""South America""" +2023-07-07,67428,2652,"[\""Keyboard\""]",3133.17,{},88541,0,"""Asia""" +2024-02-23,67429,6086,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3439.72,"{\""loyalty\"": \""21%\""}",116401,1,"""Africa""" +2023-02-09,67430,801,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",533.81,{},25640,0,"""Europe""" +2023-04-28,67431,1637,"[\""Charger\""]",197.52,"{\""loyalty\"": \""23%\""}",250287,0,"""Asia""" +2023-08-28,67432,6331,"[\""Tablet\""]",4892.48,{},76281,1,"""Africa""" +2024-01-04,67433,7416,"[\""Headphones\"", \""Monitor\""]",739.0,{},39347,1,"""Africa""" +2023-05-10,67434,7475,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",478.24,"{\""seasonal\"": \""14%\""}",70926,1,"""Europe""" +2023-09-01,67435,4561,"[\""Monitor\""]",4669.69,"{\""promo\"": \""10%\""}",28561,1,"""Asia""" +2024-08-12,67436,9052,"[\""Headphones\""]",2253.48,{},250231,0,"""Europe""" +2024-11-14,67437,8701,"[\""Laptop\"", \""Wireless Mouse\""]",642.18,{},153838,1,"""Europe""" +2024-01-10,67438,5830,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4513.68,"{\""loyalty\"": \""18%\""}",175929,0,"""South America""" +2024-03-30,67439,1198,"[\""Laptop\""]",1863.67,{},278406,1,"""North America""" +2023-02-08,67440,5652,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4587.18,{},281967,1,"""South America""" +2024-08-14,67441,6820,"[\""Charger\"", \""Wireless Mouse\""]",2756.88,"{\""loyalty\"": \""15%\""}",80271,1,"""South America""" +2023-05-22,67442,7372,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1477.5,"{\""seasonal\"": \""17%\""}",187491,1,"""South America""" +2023-07-07,67443,4261,"[\""Laptop\"", \""Charger\""]",1197.21,"{\""promo\"": \""21%\""}",160269,1,"""Africa""" +2024-07-17,67444,6178,"[\""Keyboard\""]",1156.07,{},268956,0,"""Europe""" +2024-11-20,67445,6254,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",917.55,{},240947,0,"""Asia""" +2023-03-01,67446,900,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3473.83,{},249780,1,"""South America""" +2023-11-30,67447,7993,"[\""Wireless Mouse\""]",4785.31,{},279055,1,"""North America""" +2023-10-16,67448,6313,"[\""Laptop\""]",4303.89,"{\""loyalty\"": \""28%\""}",241523,0,"""Asia""" +2023-01-14,67449,8376,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1256.05,"{\""loyalty\"": \""23%\""}",11916,1,"""Europe""" +2024-05-21,67450,65,"[\""Charger\"", \""Tablet\""]",3926.2,{},164600,0,"""Europe""" +2023-04-02,67451,9981,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3444.15,"{\""seasonal\"": \""6%\""}",168691,0,"""South America""" +2023-03-18,67452,4512,"[\""Headphones\""]",1354.61,"{\"": \""22%\""}",6743,1,"""North America""" +2024-02-25,67453,6070,"[\""Charger\"", \""Monitor\""]",3560.25,{},299952,0,"""Africa""" +2024-07-02,67454,1521,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2336.39,{},291828,1,"""Asia""" +2024-10-31,67455,1158,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3943.05,"{\""seasonal\"": \""20%\""}",240386,0,"""North America""" +2023-04-16,67456,9459,"[\""Phone\""]",3260.56,{},250291,0,"""Africa""" +2023-11-30,67457,9555,"[\""Laptop\""]",3322.2,"{\""seasonal\"": \""28%\""}",14978,0,"""South America""" +2024-04-18,67458,1887,"[\""Headphones\""]",4227.43,{},143643,1,"""North America""" +2024-06-23,67459,1799,"[\""Headphones\"", \""Charger\""]",298.38,"{\""seasonal\"": \""7%\""}",260079,0,"""Asia""" +2024-06-25,67460,1550,"[\""Keyboard\"", \""Charger\""]",58.69,{},65730,1,"""Africa""" +2024-11-20,67461,8888,"[\""Phone\""]",2578.37,"{\""seasonal\"": \""22%\""}",278165,0,"""Asia""" +2024-10-04,67462,3907,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3570.37,{},52017,1,"""Africa""" +2023-06-11,67463,3500,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1689.82,"{\""loyalty\"": \""17%\""}",65929,1,"""Africa""" +2023-09-06,67464,9758,"[\""Phone\""]",4631.48,{},1049,1,"""South America""" +2023-06-18,67465,864,"[\""Monitor\""]",1524.44,{},235588,1,"""Europe""" +2024-07-20,67466,7986,"[\""Headphones\""]",2518.44,"{\""promo\"": \""24%\""}",203278,0,"""North America""" +2023-03-14,67467,207,"[\""Laptop\"", \""Headphones\""]",4825.03,{},65830,1,"""Asia""" +2023-04-12,67468,437,"[\""Wireless Mouse\""]",2639.66,"{\""promo\"": \""20%\""}",63357,0,"""North America""" +2023-12-11,67469,5698,"[\""Headphones\""]",782.62,"{\""seasonal\"": \""18%\""}",39147,0,"""Europe""" +2024-07-16,67470,8385,"[\""Tablet\"", \""Phone\""]",1520.4,{},276445,0,"""South America""" +2024-02-07,67471,5076,"[\""Wireless Mouse\"", \""Monitor\""]",1600.79,"{\""promo\"": \""20%\""}",145230,1,"""North America""" +2023-08-30,67472,8868,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4567.65,"{\"": \""22%\""}",79796,1,"""North America""" +2023-07-11,67473,334,"[\""Tablet\"", \""Laptop\""]",2184.24,{},63311,1,"""Africa""" +2023-09-02,67474,346,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2850.3,"{\""seasonal\"": \""18%\""}",11950,1,"""South America""" +2024-11-20,67475,1391,"[\""Headphones\"", \""Wireless Mouse\""]",4768.3,"{\""loyalty\"": \""26%\""}",155593,1,"""Europe""" +2024-10-05,67476,5425,"[\""Charger\""]",3262.2,"{\""seasonal\"": \""12%\""}",178381,0,"""South America""" +2023-12-02,67477,4898,"[\""Phone\""]",3551.03,"{\"": \""19%\""}",97976,0,"""North America""" +2024-07-24,67478,5096,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3097.31,"{\"": \""15%\""}",287776,0,"""North America""" +2024-04-07,67479,9114,"[\""Tablet\""]",2895.43,{},92666,0,"""South America""" +2024-11-24,67480,2582,"[\""Laptop\"", \""Tablet\""]",3978.7,{},221401,0,"""Asia""" +2023-08-15,67481,8003,"[\""Laptop\"", \""Charger\""]",167.02,"{\""loyalty\"": \""6%\""}",124936,0,"""Asia""" +2023-11-25,67482,46,"[\""Wireless Mouse\"", \""Phone\""]",1638.39,"{\"": \""18%\""}",135661,0,"""Africa""" +2024-02-10,67483,5522,"[\""Headphones\""]",2958.68,"{\""loyalty\"": \""10%\""}",244536,0,"""Asia""" +2023-02-05,67484,6162,"[\""Tablet\""]",4004.22,"{\""loyalty\"": \""13%\""}",7796,1,"""South America""" +2023-10-21,67485,9017,"[\""Tablet\""]",3853.37,{},154101,0,"""Asia""" +2024-05-15,67486,2904,"[\""Wireless Mouse\"", \""Keyboard\""]",691.8,"{\""promo\"": \""12%\""}",72114,1,"""Europe""" +2023-10-01,67487,5345,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2479.92,{},271474,1,"""North America""" +2024-05-26,67488,6935,"[\""Wireless Mouse\""]",3357.52,"{\""seasonal\"": \""24%\""}",229654,0,"""Africa""" +2023-01-12,67489,5613,"[\""Tablet\""]",2572.37,{},165403,0,"""South America""" +2024-04-18,67490,1205,"[\""Tablet\"", \""Monitor\""]",4077.07,{},237054,1,"""Africa""" +2024-12-13,67491,3576,"[\""Monitor\"", \""Keyboard\""]",1280.93,"{\"": \""25%\""}",34729,0,"""North America""" +2024-03-17,67492,1737,"[\""Keyboard\""]",77.39,{},190282,1,"""Europe""" +2024-09-05,67493,6365,"[\""Headphones\""]",4432.29,"{\""seasonal\"": \""21%\""}",127097,0,"""South America""" +2024-11-11,67494,1553,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2429.39,{},97878,0,"""North America""" +2023-11-01,67495,6592,"[\""Charger\""]",4511.08,{},237761,1,"""North America""" +2023-11-06,67496,7542,"[\""Phone\"", \""Charger\""]",2231.05,"{\""promo\"": \""12%\""}",146725,1,"""Asia""" +2024-06-30,67497,7072,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2175.19,"{\""promo\"": \""14%\""}",105438,1,"""Asia""" +2024-12-10,67498,459,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",649.64,{},215216,1,"""Europe""" +2024-06-01,67499,2564,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1681.91,{},15543,0,"""North America""" +2024-01-27,67500,8463,"[\""Laptop\"", \""Charger\""]",2851.25,{},54945,1,"""South America""" +2023-08-02,67501,298,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",555.66,{},51309,0,"""Africa""" +2024-04-11,67502,3671,"[\""Keyboard\"", \""Phone\""]",3377.82,"{\""promo\"": \""18%\""}",241406,1,"""Africa""" +2023-11-28,67503,2080,"[\""Tablet\""]",3111.04,{},298249,1,"""North America""" +2023-09-13,67504,5699,"[\""Headphones\"", \""Tablet\""]",143.67,{},188918,0,"""Asia""" +2024-07-09,67505,2549,"[\""Laptop\"", \""Tablet\""]",3791.81,"{\""loyalty\"": \""30%\""}",126874,0,"""North America""" +2024-03-10,67506,7683,"[\""Wireless Mouse\""]",3304.93,{},238712,0,"""South America""" +2023-10-07,67507,1095,"[\""Laptop\""]",3000.23,{},258723,1,"""South America""" +2024-10-16,67508,4189,"[\""Charger\"", \""Keyboard\""]",3602.39,"{\"": \""15%\""}",127894,1,"""Asia""" +2024-12-10,67509,67,"[\""Monitor\""]",2636.58,"{\"": \""6%\""}",282764,1,"""Europe""" +2024-02-04,67510,280,"[\""Tablet\"", \""Laptop\""]",4152.63,"{\"": \""30%\""}",219111,0,"""Europe""" +2024-04-02,67511,6932,"[\""Headphones\"", \""Laptop\""]",539.8,{},14812,1,"""Africa""" +2023-06-12,67512,6,"[\""Keyboard\"", \""Phone\""]",4786.49,{},293493,1,"""Africa""" +2024-05-22,67513,105,"[\""Keyboard\"", \""Monitor\""]",105.46,"{\""loyalty\"": \""30%\""}",89212,1,"""North America""" +2024-02-14,67514,1038,"[\""Laptop\""]",2879.82,"{\""seasonal\"": \""10%\""}",207669,0,"""Europe""" +2024-10-22,67515,282,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2667.57,{},267819,0,"""Africa""" +2024-12-19,67516,4369,"[\""Monitor\"", \""Wireless Mouse\""]",4617.9,{},259304,0,"""Africa""" +2023-06-12,67517,2581,"[\""Wireless Mouse\"", \""Monitor\""]",1435.61,{},42328,1,"""South America""" +2024-08-07,67518,8327,"[\""Phone\"", \""Monitor\""]",3111.77,{},275280,1,"""North America""" +2023-09-04,67519,2133,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3513.48,"{\""promo\"": \""12%\""}",124373,1,"""Europe""" +2023-11-20,67520,7300,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2133.56,{},84163,0,"""Europe""" +2023-08-10,67521,7553,"[\""Keyboard\""]",4856.43,{},294283,0,"""Africa""" +2024-07-20,67522,4429,"[\""Laptop\""]",4377.76,{},189518,1,"""Africa""" +2023-07-28,67523,7153,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4754.55,"{\""promo\"": \""16%\""}",126260,0,"""Europe""" +2024-09-03,67524,4141,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4102.82,{},237620,1,"""Africa""" +2023-03-12,67525,7353,"[\""Keyboard\""]",4952.71,"{\"": \""14%\""}",91698,1,"""North America""" +2024-07-31,67526,7831,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1146.64,"{\""seasonal\"": \""20%\""}",40560,1,"""Europe""" +2024-06-06,67527,3786,"[\""Tablet\"", \""Phone\""]",3142.71,{},77556,1,"""North America""" +2024-06-25,67528,2347,"[\""Charger\"", \""Laptop\""]",4831.02,{},99400,1,"""South America""" +2024-01-26,67529,1439,"[\""Keyboard\""]",354.77,{},115834,0,"""South America""" +2023-12-15,67530,9149,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4358.69,{},173772,0,"""South America""" +2023-07-13,67531,8067,"[\""Phone\"", \""Laptop\""]",1449.66,"{\"": \""10%\""}",109086,0,"""North America""" +2023-01-02,67532,2156,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4694.63,{},82162,1,"""North America""" +2024-04-02,67533,7985,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",343.6,"{\""seasonal\"": \""21%\""}",106531,0,"""Asia""" +2024-10-07,67534,3357,"[\""Wireless Mouse\""]",1627.03,{},130157,1,"""North America""" +2024-05-26,67535,7966,"[\""Phone\"", \""Charger\""]",654.73,"{\""seasonal\"": \""29%\""}",108350,0,"""Europe""" +2024-11-26,67536,4591,"[\""Charger\"", \""Headphones\""]",1648.2,"{\"": \""28%\""}",113885,1,"""Africa""" +2023-03-29,67537,8339,"[\""Monitor\""]",850.81,{},279474,1,"""Asia""" +2023-02-13,67538,9908,"[\""Tablet\"", \""Monitor\""]",4737.22,{},160706,0,"""Africa""" +2023-08-01,67539,278,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",356.85,{},202761,1,"""North America""" +2023-02-13,67540,8200,"[\""Wireless Mouse\""]",1122.03,{},177332,0,"""South America""" +2023-12-14,67541,3366,"[\""Charger\""]",1558.84,"{\""promo\"": \""8%\""}",193111,0,"""Europe""" +2023-09-08,67542,6353,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2698.84,{},102872,0,"""Africa""" +2023-04-19,67543,5782,"[\""Headphones\"", \""Monitor\""]",3562.17,{},143113,0,"""South America""" +2023-07-27,67544,3190,"[\""Wireless Mouse\""]",1593.62,"{\""loyalty\"": \""9%\""}",87625,0,"""South America""" +2024-11-30,67545,6973,"[\""Charger\"", \""Laptop\""]",3200.79,"{\"": \""6%\""}",53794,0,"""North America""" +2024-02-25,67546,9003,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",594.02,{},7980,1,"""South America""" +2023-02-24,67547,7241,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3501.11,"{\""promo\"": \""8%\""}",262504,1,"""Asia""" +2023-01-03,67548,6421,"[\""Monitor\"", \""Laptop\""]",3034.95,{},79704,1,"""Africa""" +2024-01-14,67549,411,"[\""Keyboard\""]",2882.75,{},297908,1,"""Africa""" +2023-07-23,67550,1637,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",655.41,"{\""loyalty\"": \""24%\""}",217334,1,"""Europe""" +2024-05-08,67551,9139,"[\""Keyboard\""]",1441.94,{},131407,0,"""South America""" +2023-03-17,67552,909,"[\""Charger\"", \""Monitor\""]",4801.98,"{\""seasonal\"": \""17%\""}",171415,1,"""South America""" +2023-04-12,67553,3844,"[\""Keyboard\"", \""Headphones\""]",448.85,"{\""loyalty\"": \""10%\""}",280324,0,"""Europe""" +2023-04-06,67554,7348,"[\""Laptop\""]",2468.91,{},125759,1,"""Africa""" +2023-08-01,67555,4708,"[\""Headphones\"", \""Keyboard\""]",2358.43,"{\""seasonal\"": \""30%\""}",169775,0,"""Europe""" +2024-12-14,67556,8532,"[\""Phone\"", \""Tablet\""]",4947.05,{},9064,1,"""North America""" +2024-06-10,67557,180,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1162.74,"{\"": \""10%\""}",30619,0,"""Europe""" +2023-10-19,67558,3108,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4852.97,{},68535,0,"""Europe""" +2023-07-13,67559,5706,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4988.06,{},251818,0,"""North America""" +2024-12-13,67560,4223,"[\""Monitor\""]",2715.8,{},251285,1,"""Africa""" +2024-08-18,67561,679,"[\""Keyboard\"", \""Monitor\""]",1575.13,{},274809,0,"""South America""" +2024-10-06,67562,2237,"[\""Keyboard\"", \""Wireless Mouse\""]",468.4,"{\""loyalty\"": \""12%\""}",48476,1,"""North America""" +2023-12-15,67563,5114,"[\""Wireless Mouse\"", \""Headphones\""]",2280.65,{},203790,0,"""North America""" +2023-10-11,67564,3456,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3721.96,"{\""loyalty\"": \""17%\""}",242632,0,"""North America""" +2024-10-01,67565,2582,"[\""Phone\"", \""Monitor\""]",2668.25,"{\"": \""24%\""}",95264,0,"""Asia""" +2023-04-20,67566,9249,"[\""Headphones\""]",1418.12,{},247825,1,"""North America""" +2024-10-22,67567,5859,"[\""Phone\"", \""Tablet\""]",3476.36,{},230654,1,"""Europe""" +2023-08-05,67568,9633,"[\""Wireless Mouse\"", \""Phone\""]",1538.97,"{\"": \""30%\""}",89092,0,"""Asia""" +2024-12-18,67569,8250,"[\""Keyboard\""]",3349.28,{},132150,0,"""Africa""" +2023-04-10,67570,3350,"[\""Phone\""]",4738.44,{},267029,0,"""Asia""" +2023-05-01,67571,8162,"[\""Wireless Mouse\"", \""Laptop\""]",4949.39,{},295557,0,"""Africa""" +2023-08-10,67572,943,"[\""Keyboard\""]",484.95,{},129936,1,"""South America""" +2024-06-25,67573,2798,"[\""Phone\""]",4585.05,"{\"": \""14%\""}",256825,0,"""Europe""" +2024-01-11,67574,2674,"[\""Monitor\""]",3474.33,"{\"": \""11%\""}",35675,1,"""Africa""" +2023-10-01,67575,408,"[\""Laptop\""]",4712.98,"{\""loyalty\"": \""25%\""}",281024,0,"""Africa""" +2023-07-31,67576,6060,"[\""Phone\""]",4298.76,{},295515,0,"""Africa""" +2023-06-29,67577,1674,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1442.52,{},45486,0,"""South America""" +2024-12-17,67578,5969,"[\""Headphones\"", \""Phone\""]",170.65,{},267365,1,"""Asia""" +2023-02-12,67579,4868,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",845.93,"{\"": \""21%\""}",115902,1,"""North America""" +2024-12-11,67580,2747,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1792.46,{},116177,0,"""Asia""" +2024-09-09,67581,4276,"[\""Monitor\""]",4458.92,{},42592,0,"""Africa""" +2023-09-04,67582,8850,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",987.87,{},103572,1,"""Asia""" +2023-01-27,67583,4126,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3321.13,"{\""seasonal\"": \""21%\""}",5866,0,"""North America""" +2024-07-07,67584,716,"[\""Headphones\"", \""Charger\""]",2807.23,"{\""seasonal\"": \""17%\""}",98530,0,"""Africa""" +2024-06-27,67585,35,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",451.15,{},250675,0,"""Europe""" +2024-12-07,67586,7541,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2585.9,"{\""loyalty\"": \""10%\""}",37660,0,"""North America""" +2024-07-05,67587,640,"[\""Tablet\""]",2711.37,{},247909,1,"""South America""" +2023-11-05,67588,1596,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",267.9,"{\""seasonal\"": \""5%\""}",33253,1,"""Asia""" +2024-01-19,67589,5802,"[\""Laptop\"", \""Tablet\""]",2144.59,{},244075,0,"""Asia""" +2023-06-21,67590,9343,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",138.54,{},131015,1,"""Asia""" +2024-02-14,67591,8,"[\""Headphones\"", \""Phone\""]",4746.55,{},40436,1,"""South America""" +2024-07-05,67592,6203,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2635.89,{},246485,1,"""South America""" +2024-09-14,67593,1313,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2553.5,"{\""loyalty\"": \""13%\""}",280903,0,"""South America""" +2024-05-28,67594,9750,"[\""Monitor\""]",2905.38,"{\""seasonal\"": \""29%\""}",230964,1,"""Europe""" +2023-03-15,67595,5563,"[\""Wireless Mouse\"", \""Phone\""]",1938.83,{},13375,1,"""Europe""" +2024-08-15,67596,7522,"[\""Keyboard\"", \""Laptop\""]",3339.07,"{\""loyalty\"": \""19%\""}",223849,0,"""Europe""" +2023-08-05,67597,9728,"[\""Laptop\"", \""Tablet\""]",3032.75,{},16316,0,"""Africa""" +2023-04-27,67598,5049,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3806.69,{},292036,1,"""Asia""" +2023-08-08,67599,9434,"[\""Wireless Mouse\"", \""Keyboard\""]",2450.93,"{\""seasonal\"": \""5%\""}",200198,0,"""North America""" +2024-07-02,67600,3663,"[\""Headphones\"", \""Laptop\""]",3246.5,{},123060,0,"""Africa""" +2024-12-29,67601,7669,"[\""Monitor\""]",4846.11,"{\""loyalty\"": \""27%\""}",77544,1,"""Asia""" +2023-08-07,67602,1629,"[\""Charger\""]",1100.24,{},195632,0,"""South America""" +2023-03-11,67603,9153,"[\""Phone\"", \""Laptop\""]",1260.81,"{\""loyalty\"": \""23%\""}",36070,0,"""South America""" +2024-08-03,67604,3465,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4556.96,"{\""loyalty\"": \""11%\""}",108226,1,"""Europe""" +2024-08-24,67605,6064,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",517.72,"{\""loyalty\"": \""6%\""}",85302,1,"""North America""" +2023-12-23,67606,6719,"[\""Phone\"", \""Charger\""]",254.94,"{\""loyalty\"": \""30%\""}",205259,0,"""South America""" +2023-10-03,67607,7526,"[\""Wireless Mouse\""]",4345.86,{},35825,0,"""North America""" +2023-05-13,67608,7321,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3764.85,"{\""seasonal\"": \""23%\""}",122095,0,"""South America""" +2023-01-10,67609,7424,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2621.31,"{\"": \""28%\""}",86613,0,"""South America""" +2023-01-29,67610,5557,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",397.4,{},119679,1,"""Europe""" +2024-04-20,67611,5389,"[\""Phone\"", \""Keyboard\""]",4730.38,"{\""loyalty\"": \""26%\""}",236820,1,"""Africa""" +2024-04-29,67612,261,"[\""Charger\""]",977.26,{},5391,1,"""South America""" +2024-10-01,67613,26,"[\""Wireless Mouse\"", \""Tablet\""]",4520.5,{},43202,0,"""South America""" +2024-01-18,67614,7727,"[\""Charger\"", \""Tablet\""]",1230.51,"{\""loyalty\"": \""8%\""}",108355,1,"""Asia""" +2024-11-07,67615,4800,"[\""Headphones\""]",915.55,{},157505,1,"""Africa""" +2023-10-12,67616,3483,"[\""Headphones\""]",4628.43,{},131156,1,"""Africa""" +2024-05-13,67617,2989,"[\""Phone\""]",1434.94,"{\""seasonal\"": \""8%\""}",99782,0,"""Africa""" +2023-10-06,67618,1814,"[\""Phone\""]",4010.87,{},27119,1,"""Europe""" +2023-08-24,67619,4264,"[\""Phone\"", \""Headphones\""]",3072.5,"{\""promo\"": \""14%\""}",219294,1,"""Europe""" +2023-05-05,67620,7909,"[\""Wireless Mouse\"", \""Headphones\""]",3256.79,"{\""seasonal\"": \""14%\""}",102291,1,"""South America""" +2023-06-10,67621,2371,"[\""Phone\"", \""Laptop\""]",587.53,"{\""seasonal\"": \""30%\""}",77303,0,"""South America""" +2023-12-01,67622,4333,"[\""Tablet\"", \""Laptop\""]",3884.16,{},178496,0,"""South America""" +2024-10-16,67623,8682,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2648.34,"{\""seasonal\"": \""8%\""}",51499,1,"""South America""" +2023-05-29,67624,6973,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3400.9,{},56296,0,"""North America""" +2023-11-19,67625,2954,"[\""Wireless Mouse\""]",761.39,"{\""seasonal\"": \""28%\""}",100444,0,"""Europe""" +2023-12-20,67626,6501,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3006.51,{},239510,1,"""Asia""" +2024-05-28,67627,7772,"[\""Monitor\"", \""Charger\""]",4770.83,"{\"": \""6%\""}",295686,0,"""Africa""" +2023-02-12,67628,8213,"[\""Laptop\""]",4273.19,{},151363,0,"""North America""" +2024-12-19,67629,9342,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1651.65,{},146367,1,"""South America""" +2023-05-12,67630,6922,"[\""Tablet\""]",301.72,"{\""loyalty\"": \""18%\""}",251916,1,"""South America""" +2023-07-22,67631,8630,"[\""Keyboard\"", \""Charger\""]",572.34,{},40661,0,"""Africa""" +2023-05-20,67632,7203,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4935.96,"{\""promo\"": \""15%\""}",15914,0,"""Asia""" +2024-01-17,67633,5719,"[\""Tablet\"", \""Charger\""]",2202.77,"{\"": \""14%\""}",272334,0,"""Europe""" +2023-10-19,67634,6755,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3448.33,{},120077,0,"""Europe""" +2023-02-06,67635,507,"[\""Charger\""]",2459.73,{},103205,0,"""Asia""" +2023-04-28,67636,5892,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1366.32,"{\""loyalty\"": \""20%\""}",274397,0,"""Europe""" +2024-10-08,67637,4183,"[\""Charger\"", \""Keyboard\""]",4314.82,"{\""loyalty\"": \""28%\""}",222497,1,"""Europe""" +2023-05-10,67638,4938,"[\""Keyboard\""]",4421.16,{},132803,0,"""South America""" +2023-03-14,67639,1645,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",421.15,{},54470,1,"""Asia""" +2023-02-02,67640,5016,"[\""Charger\"", \""Tablet\""]",3858.49,{},212433,1,"""Asia""" +2023-10-14,67641,9007,"[\""Charger\"", \""Headphones\""]",1812.75,"{\"": \""12%\""}",84870,0,"""North America""" +2024-05-13,67642,738,"[\""Laptop\"", \""Tablet\""]",1067.93,"{\""seasonal\"": \""28%\""}",69388,1,"""North America""" +2023-06-16,67643,3303,"[\""Charger\""]",1796.42,"{\""seasonal\"": \""18%\""}",250415,1,"""Asia""" +2023-11-10,67644,5740,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4046.03,{},134898,1,"""Africa""" +2023-12-03,67645,1038,"[\""Keyboard\""]",2697.37,{},40244,1,"""North America""" +2024-09-17,67646,6775,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4913.82,{},296690,1,"""North America""" +2024-02-04,67647,2688,"[\""Wireless Mouse\"", \""Headphones\""]",4521.77,"{\""loyalty\"": \""15%\""}",115208,0,"""Asia""" +2023-04-28,67648,3232,"[\""Charger\"", \""Tablet\""]",2759.53,"{\""seasonal\"": \""11%\""}",143750,1,"""Europe""" +2023-12-12,67649,940,"[\""Tablet\"", \""Phone\""]",1442.4,"{\""loyalty\"": \""28%\""}",235125,0,"""North America""" +2024-10-12,67650,3561,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3951.16,{},79209,1,"""Africa""" +2023-12-18,67651,5346,"[\""Charger\""]",672.31,"{\""seasonal\"": \""20%\""}",261591,1,"""South America""" +2024-04-17,67652,6212,"[\""Wireless Mouse\""]",2229.48,"{\""loyalty\"": \""23%\""}",151170,1,"""Europe""" +2023-09-24,67653,5302,"[\""Monitor\""]",1267.44,"{\""loyalty\"": \""28%\""}",223640,0,"""Europe""" +2023-05-10,67654,958,"[\""Keyboard\""]",656.56,"{\""loyalty\"": \""17%\""}",83169,1,"""Asia""" +2023-01-30,67655,5646,"[\""Tablet\""]",1907.51,"{\""promo\"": \""18%\""}",5392,1,"""North America""" +2024-08-16,67656,2022,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4863.25,"{\""loyalty\"": \""16%\""}",11971,1,"""South America""" +2024-09-10,67657,7645,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3699.05,{},195698,0,"""Europe""" +2024-07-07,67658,9553,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2814.81,{},56147,1,"""Africa""" +2023-12-02,67659,7043,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4330.36,"{\"": \""28%\""}",159028,1,"""Asia""" +2024-12-10,67660,5395,"[\""Tablet\""]",1663.65,{},297292,0,"""South America""" +2023-11-04,67661,9047,"[\""Charger\""]",1180.97,"{\""loyalty\"": \""27%\""}",122298,1,"""Africa""" +2024-08-04,67662,151,"[\""Phone\"", \""Charger\""]",2549.05,{},196930,1,"""Asia""" +2023-06-12,67663,1333,"[\""Wireless Mouse\"", \""Phone\""]",343.34,"{\""seasonal\"": \""8%\""}",40122,0,"""Europe""" +2023-09-22,67664,951,"[\""Headphones\"", \""Keyboard\""]",1381.37,{},125843,1,"""Africa""" +2024-02-02,67665,7416,"[\""Headphones\"", \""Phone\""]",4872.38,{},294361,1,"""Africa""" +2024-11-11,67666,2635,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",596.94,"{\""promo\"": \""19%\""}",93336,0,"""North America""" +2023-03-24,67667,3345,"[\""Monitor\""]",1675.88,"{\""seasonal\"": \""27%\""}",154119,0,"""South America""" +2024-06-21,67668,317,"[\""Phone\""]",1160.76,{},73243,0,"""Africa""" +2024-07-16,67669,3542,"[\""Wireless Mouse\""]",470.05,"{\"": \""7%\""}",226524,0,"""North America""" +2023-04-09,67670,3009,"[\""Monitor\"", \""Charger\""]",383.35,{},62473,0,"""Asia""" +2023-10-01,67671,7214,"[\""Keyboard\""]",3380.11,"{\""seasonal\"": \""11%\""}",14491,1,"""South America""" +2023-11-15,67672,7677,"[\""Laptop\"", \""Keyboard\""]",2130.65,"{\"": \""13%\""}",138826,0,"""Asia""" +2024-03-09,67673,5477,"[\""Keyboard\""]",707.36,{},169407,0,"""Asia""" +2023-07-04,67674,324,"[\""Monitor\""]",2397.58,{},262792,1,"""North America""" +2024-04-25,67675,3438,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3946.0,{},105328,1,"""North America""" +2023-11-22,67676,8363,"[\""Keyboard\""]",2919.52,"{\"": \""29%\""}",215819,1,"""Europe""" +2024-11-23,67677,2277,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",327.23,"{\"": \""20%\""}",113278,1,"""North America""" +2023-08-02,67678,787,"[\""Monitor\""]",4956.48,{},99048,0,"""Africa""" +2023-09-30,67679,1796,"[\""Monitor\""]",3504.1,{},161353,0,"""Africa""" +2023-09-29,67680,1613,"[\""Tablet\"", \""Charger\""]",2933.94,{},108327,0,"""South America""" +2024-06-29,67681,552,"[\""Phone\"", \""Tablet\""]",2497.85,"{\""promo\"": \""19%\""}",206326,1,"""Europe""" +2024-08-07,67682,6565,"[\""Phone\""]",1726.6,"{\"": \""30%\""}",182848,1,"""North America""" +2023-11-04,67683,3398,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2932.5,{},162725,0,"""South America""" +2023-07-02,67684,5793,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4749.14,"{\""seasonal\"": \""23%\""}",69385,0,"""North America""" +2024-12-10,67685,5457,"[\""Monitor\"", \""Laptop\""]",1636.23,{},141417,1,"""North America""" +2023-12-06,67686,2131,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",496.03,"{\""loyalty\"": \""6%\""}",187827,0,"""South America""" +2024-11-18,67687,2126,"[\""Keyboard\""]",374.68,"{\""promo\"": \""11%\""}",123556,0,"""Asia""" +2024-06-14,67688,6685,"[\""Monitor\"", \""Keyboard\""]",4513.92,{},274588,0,"""Africa""" +2024-08-15,67689,103,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",912.76,"{\"": \""30%\""}",52702,0,"""South America""" +2024-02-23,67690,1831,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1481.95,"{\""seasonal\"": \""22%\""}",268765,1,"""Asia""" +2024-11-10,67691,9383,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4428.43,{},82716,1,"""South America""" +2023-10-14,67692,6127,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",488.42,{},75550,0,"""South America""" +2024-08-07,67693,3430,"[\""Headphones\""]",2501.87,"{\"": \""5%\""}",199530,0,"""North America""" +2023-07-15,67694,102,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1987.05,"{\""seasonal\"": \""16%\""}",175374,1,"""South America""" +2023-03-15,67695,8918,"[\""Phone\"", \""Charger\""]",3395.15,{},267017,0,"""South America""" +2024-05-22,67696,7700,"[\""Monitor\"", \""Phone\""]",4824.85,"{\""loyalty\"": \""28%\""}",246280,1,"""Africa""" +2023-11-18,67697,6963,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3524.03,{},149120,1,"""North America""" +2024-09-03,67698,3753,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2659.38,"{\"": \""13%\""}",109113,0,"""North America""" +2023-08-20,67699,1862,"[\""Phone\"", \""Monitor\""]",1145.14,{},92334,1,"""Africa""" +2024-12-03,67700,8329,"[\""Monitor\"", \""Keyboard\""]",2715.98,{},240010,0,"""Asia""" +2023-06-17,67701,6442,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2704.86,{},17428,0,"""Africa""" +2023-06-11,67702,5464,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",537.39,"{\""seasonal\"": \""28%\""}",88969,1,"""Europe""" +2023-01-23,67703,1658,"[\""Headphones\""]",4996.82,"{\""loyalty\"": \""25%\""}",125222,0,"""Africa""" +2023-02-17,67704,5299,"[\""Wireless Mouse\"", \""Laptop\""]",3453.08,"{\""loyalty\"": \""14%\""}",286992,0,"""South America""" +2023-10-19,67705,8919,"[\""Tablet\""]",3309.47,{},113146,0,"""Europe""" +2023-10-10,67706,7996,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",434.54,"{\""seasonal\"": \""10%\""}",32384,1,"""Asia""" +2023-07-05,67707,3668,"[\""Keyboard\"", \""Charger\""]",2756.3,{},57692,1,"""Asia""" +2024-03-26,67708,6735,"[\""Charger\""]",3982.78,"{\""seasonal\"": \""11%\""}",58973,1,"""South America""" +2023-11-24,67709,9963,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4057.32,{},12371,1,"""South America""" +2024-09-25,67710,4421,"[\""Monitor\""]",660.54,"{\""promo\"": \""7%\""}",289935,0,"""Africa""" +2024-06-13,67711,2908,"[\""Tablet\"", \""Phone\""]",3448.55,{},29555,1,"""Africa""" +2024-02-06,67712,2873,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4741.55,{},18058,1,"""Africa""" +2023-06-15,67713,9899,"[\""Charger\""]",613.91,"{\""seasonal\"": \""19%\""}",127269,1,"""North America""" +2024-03-02,67714,8382,"[\""Headphones\""]",3141.23,"{\""loyalty\"": \""12%\""}",76189,1,"""North America""" +2023-12-16,67715,5953,"[\""Charger\"", \""Monitor\""]",2249.37,{},236359,0,"""Europe""" +2024-02-11,67716,6638,"[\""Monitor\""]",638.66,{},206046,1,"""Europe""" +2024-05-04,67717,4468,"[\""Headphones\""]",4793.86,"{\""loyalty\"": \""5%\""}",202199,0,"""Europe""" +2024-02-16,67718,3779,"[\""Charger\""]",289.61,"{\""seasonal\"": \""20%\""}",220592,0,"""Europe""" +2024-06-06,67719,2236,"[\""Headphones\"", \""Keyboard\""]",444.9,{},222533,1,"""Europe""" +2024-07-26,67720,7841,"[\""Headphones\"", \""Keyboard\""]",3676.82,{},39250,1,"""Africa""" +2024-07-27,67721,9656,"[\""Phone\""]",3964.64,"{\"": \""15%\""}",282655,0,"""Europe""" +2023-09-09,67722,549,"[\""Wireless Mouse\""]",3665.01,"{\""promo\"": \""18%\""}",228494,0,"""South America""" +2023-03-25,67723,1864,"[\""Wireless Mouse\"", \""Tablet\""]",4809.16,{},181359,1,"""Africa""" +2024-07-27,67724,7950,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4072.34,"{\""seasonal\"": \""11%\""}",124824,1,"""North America""" +2023-01-10,67725,437,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4131.22,"{\""seasonal\"": \""24%\""}",230716,1,"""Africa""" +2023-03-25,67726,3629,"[\""Monitor\""]",1736.03,{},229710,1,"""North America""" +2024-01-29,67727,2412,"[\""Tablet\"", \""Laptop\""]",1274.02,{},270150,1,"""Asia""" +2024-01-25,67728,1729,"[\""Phone\""]",763.2,{},214932,1,"""North America""" +2023-01-13,67729,1503,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1084.67,{},90701,1,"""North America""" +2024-01-31,67730,1712,"[\""Tablet\""]",2660.8,"{\"": \""10%\""}",206117,1,"""Africa""" +2024-11-12,67731,6313,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2406.22,"{\""promo\"": \""30%\""}",155364,1,"""Africa""" +2023-06-13,67732,6733,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2710.64,"{\"": \""26%\""}",19339,1,"""Africa""" +2023-03-21,67733,3078,"[\""Tablet\"", \""Headphones\""]",507.88,{},286312,0,"""Asia""" +2023-10-21,67734,926,"[\""Charger\"", \""Laptop\""]",2471.9,"{\""seasonal\"": \""11%\""}",221844,1,"""Asia""" +2024-06-12,67735,8932,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4245.96,{},157316,1,"""Africa""" +2024-05-16,67736,5786,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",370.55,"{\""seasonal\"": \""10%\""}",157785,0,"""North America""" +2023-09-16,67737,1946,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4094.31,"{\""promo\"": \""16%\""}",204750,0,"""North America""" +2023-07-06,67738,2140,"[\""Monitor\"", \""Phone\""]",730.72,{},96184,0,"""Africa""" +2023-02-28,67739,2751,"[\""Phone\"", \""Headphones\""]",2450.53,"{\""promo\"": \""12%\""}",3332,0,"""North America""" +2023-09-23,67740,7052,"[\""Charger\""]",4499.82,"{\""seasonal\"": \""11%\""}",118104,1,"""Africa""" +2023-07-02,67741,3092,"[\""Keyboard\""]",4912.29,{},228569,0,"""Asia""" +2023-07-05,67742,5616,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1007.03,{},292921,1,"""Europe""" +2024-03-03,67743,8971,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",4470.9,{},122090,1,"""Africa""" +2024-06-28,67744,6803,"[\""Phone\""]",2263.74,"{\""loyalty\"": \""27%\""}",227090,1,"""Asia""" +2023-08-19,67745,1816,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4908.13,{},299630,1,"""Asia""" +2024-05-18,67746,8364,"[\""Monitor\""]",1530.28,{},44451,1,"""Asia""" +2023-07-03,67747,7864,"[\""Headphones\""]",1517.96,"{\""seasonal\"": \""15%\""}",73905,1,"""North America""" +2024-07-16,67748,4370,"[\""Phone\"", \""Wireless Mouse\""]",242.56,{},10832,0,"""North America""" +2023-04-25,67749,5347,"[\""Laptop\""]",2785.41,{},246418,0,"""South America""" +2023-09-15,67750,5125,"[\""Wireless Mouse\"", \""Keyboard\""]",4878.12,"{\""seasonal\"": \""26%\""}",11927,1,"""South America""" +2024-08-27,67751,2925,"[\""Phone\"", \""Wireless Mouse\""]",2903.06,"{\""promo\"": \""13%\""}",135477,0,"""Africa""" +2024-02-18,67752,3341,"[\""Charger\"", \""Keyboard\""]",386.98,{},217485,1,"""Africa""" +2023-08-04,67753,780,"[\""Monitor\""]",1897.86,{},266682,1,"""Asia""" +2024-01-17,67754,6304,"[\""Monitor\""]",397.82,{},2628,1,"""Asia""" +2024-07-03,67755,2098,"[\""Headphones\""]",2394.98,{},148141,1,"""Europe""" +2024-02-21,67756,9157,"[\""Monitor\""]",3185.54,{},116170,0,"""South America""" +2024-02-16,67757,7459,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3820.34,{},104697,0,"""Europe""" +2023-02-05,67758,2378,"[\""Laptop\""]",873.19,"{\"": \""26%\""}",279328,1,"""North America""" +2023-07-13,67759,2429,"[\""Headphones\""]",540.49,"{\""promo\"": \""26%\""}",43342,1,"""South America""" +2024-06-24,67760,8940,"[\""Headphones\"", \""Monitor\""]",2623.93,"{\""seasonal\"": \""30%\""}",211196,1,"""North America""" +2023-01-15,67761,1741,"[\""Keyboard\"", \""Tablet\""]",4600.1,{},107691,1,"""Asia""" +2024-07-10,67762,3409,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1216.46,"{\""loyalty\"": \""22%\""}",174525,0,"""South America""" +2023-06-12,67763,8787,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1473.42,"{\""seasonal\"": \""10%\""}",216736,0,"""Africa""" +2023-08-21,67764,8000,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4143.84,{},32619,0,"""North America""" +2023-02-19,67765,8667,"[\""Tablet\"", \""Laptop\""]",3983.19,{},79453,1,"""Africa""" +2024-04-14,67766,302,"[\""Phone\""]",1483.88,"{\""seasonal\"": \""10%\""}",263859,1,"""Asia""" +2024-09-28,67767,5507,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2173.64,"{\""seasonal\"": \""8%\""}",38059,0,"""Europe""" +2024-04-28,67768,7689,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3459.26,"{\"": \""28%\""}",106499,1,"""Asia""" +2024-07-13,67769,7787,"[\""Headphones\"", \""Monitor\""]",3629.81,{},216661,1,"""Asia""" +2023-03-24,67770,7008,"[\""Monitor\"", \""Charger\""]",4068.41,{},267143,1,"""Asia""" +2024-09-17,67771,1468,"[\""Phone\"", \""Headphones\""]",2239.15,"{\"": \""18%\""}",288888,1,"""Europe""" +2024-11-12,67772,9147,"[\""Monitor\"", \""Wireless Mouse\""]",4632.17,{},77533,0,"""South America""" +2023-09-04,67773,9740,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4545.73,{},99132,0,"""Africa""" +2024-08-28,67774,8945,"[\""Charger\""]",3166.76,{},253145,1,"""Africa""" +2023-12-19,67775,6179,"[\""Monitor\""]",2118.92,"{\"": \""16%\""}",110954,0,"""Asia""" +2024-01-23,67776,7439,"[\""Charger\"", \""Keyboard\""]",237.65,"{\""loyalty\"": \""30%\""}",107895,1,"""North America""" +2023-07-23,67777,7175,"[\""Keyboard\""]",2442.04,{},205554,1,"""South America""" +2023-06-01,67778,1122,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",879.6,"{\"": \""20%\""}",108222,1,"""Europe""" +2023-03-16,67779,8291,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2526.73,{},267561,0,"""North America""" +2024-02-19,67780,9161,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2744.8,"{\""seasonal\"": \""25%\""}",254783,1,"""Africa""" +2023-01-28,67781,5146,"[\""Phone\""]",3739.97,{},274731,0,"""South America""" +2023-05-02,67782,7237,"[\""Phone\"", \""Charger\""]",1913.27,"{\""loyalty\"": \""7%\""}",161088,0,"""Europe""" +2023-05-03,67783,1615,"[\""Laptop\"", \""Phone\""]",2553.07,"{\""seasonal\"": \""8%\""}",184543,0,"""Asia""" +2023-12-24,67784,8312,"[\""Laptop\""]",2254.38,{},89947,0,"""South America""" +2024-06-21,67785,9583,"[\""Wireless Mouse\"", \""Charger\""]",2068.39,"{\""seasonal\"": \""30%\""}",167673,0,"""Europe""" +2024-09-25,67786,95,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3494.52,{},88332,1,"""Africa""" +2024-12-07,67787,6333,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3249.26,"{\""seasonal\"": \""22%\""}",45964,0,"""Africa""" +2023-09-26,67788,2531,"[\""Charger\""]",802.42,"{\""promo\"": \""15%\""}",137589,0,"""North America""" +2023-07-22,67789,9348,"[\""Headphones\""]",2316.31,{},280556,0,"""Asia""" +2024-12-20,67790,6027,"[\""Laptop\"", \""Wireless Mouse\""]",2538.2,{},246273,0,"""Europe""" +2024-10-11,67791,6120,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2717.41,{},134174,1,"""Africa""" +2024-08-19,67792,1114,"[\""Phone\"", \""Tablet\""]",2237.57,{},292443,1,"""Asia""" +2023-09-27,67793,8844,"[\""Monitor\"", \""Wireless Mouse\""]",2756.66,{},209703,0,"""North America""" +2023-04-18,67794,8580,"[\""Tablet\"", \""Phone\""]",1429.33,{},163768,0,"""Africa""" +2023-04-02,67795,8192,"[\""Monitor\""]",3051.18,"{\"": \""26%\""}",55703,0,"""Africa""" +2023-04-16,67796,9706,"[\""Charger\""]",2359.68,{},194885,1,"""Europe""" +2024-09-17,67797,729,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4592.33,{},36988,0,"""Europe""" +2023-07-03,67798,8804,"[\""Wireless Mouse\"", \""Keyboard\""]",4728.11,{},140645,0,"""Asia""" +2023-05-05,67799,4701,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3959.52,"{\"": \""8%\""}",44714,1,"""South America""" +2023-04-12,67800,8995,"[\""Wireless Mouse\"", \""Phone\""]",1023.71,{},114460,0,"""Asia""" +2023-07-17,67801,8288,"[\""Wireless Mouse\"", \""Laptop\""]",2327.08,{},277297,0,"""Asia""" +2024-04-01,67802,440,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3386.99,"{\""loyalty\"": \""5%\""}",28489,1,"""Asia""" +2023-08-01,67803,3872,"[\""Phone\"", \""Monitor\""]",4855.4,"{\""loyalty\"": \""18%\""}",183387,1,"""Europe""" +2024-01-18,67804,3764,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4754.98,"{\""loyalty\"": \""15%\""}",102979,1,"""North America""" +2024-10-03,67805,3794,"[\""Wireless Mouse\"", \""Tablet\""]",2539.64,{},26949,0,"""Europe""" +2023-11-03,67806,2706,"[\""Charger\""]",1196.82,{},65101,0,"""Asia""" +2023-02-25,67807,7915,"[\""Phone\"", \""Monitor\""]",492.85,"{\""loyalty\"": \""5%\""}",83884,1,"""Europe""" +2023-05-21,67808,5481,"[\""Laptop\"", \""Wireless Mouse\""]",3029.96,"{\""seasonal\"": \""15%\""}",173289,0,"""Europe""" +2023-11-14,67809,9024,"[\""Laptop\""]",472.5,{},133970,0,"""Asia""" +2023-11-17,67810,2964,"[\""Wireless Mouse\"", \""Tablet\""]",192.1,"{\""loyalty\"": \""28%\""}",127260,0,"""Europe""" +2023-02-26,67811,2985,"[\""Laptop\"", \""Tablet\""]",1115.18,"{\"": \""17%\""}",88544,0,"""Africa""" +2024-07-11,67812,8311,"[\""Tablet\"", \""Laptop\""]",4794.47,"{\"": \""17%\""}",205436,0,"""Africa""" +2023-01-30,67813,7623,"[\""Phone\""]",1604.13,{},185579,0,"""Africa""" +2024-10-13,67814,8076,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3392.63,"{\""seasonal\"": \""7%\""}",128034,0,"""Asia""" +2024-02-02,67815,7363,"[\""Headphones\""]",3928.87,{},256211,1,"""Asia""" +2023-06-12,67816,2516,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",651.2,"{\"": \""15%\""}",222471,1,"""Europe""" +2024-04-24,67817,7859,"[\""Headphones\""]",4979.09,{},278797,1,"""South America""" +2024-07-16,67818,8908,"[\""Monitor\"", \""Phone\""]",4054.4,{},261272,1,"""Europe""" +2023-11-01,67819,2684,"[\""Tablet\""]",1454.99,{},86052,0,"""Africa""" +2023-01-08,67820,8205,"[\""Wireless Mouse\""]",962.09,{},160781,0,"""Europe""" +2024-04-24,67821,1401,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2249.45,{},20363,1,"""North America""" +2024-03-22,67822,5506,"[\""Monitor\"", \""Headphones\""]",4872.0,{},259524,0,"""South America""" +2024-06-02,67823,872,"[\""Monitor\""]",3052.52,{},81607,1,"""North America""" +2023-11-18,67824,2420,"[\""Laptop\"", \""Charger\""]",289.64,{},278460,1,"""Africa""" +2024-03-11,67825,5238,"[\""Headphones\""]",1653.97,"{\""promo\"": \""14%\""}",3495,0,"""Europe""" +2024-11-14,67826,3575,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",865.84,"{\""loyalty\"": \""13%\""}",45021,1,"""Asia""" +2023-05-16,67827,5588,"[\""Charger\"", \""Monitor\""]",4865.36,"{\""promo\"": \""8%\""}",94431,0,"""Asia""" +2024-09-05,67828,6503,"[\""Tablet\"", \""Keyboard\""]",4072.7,"{\""loyalty\"": \""23%\""}",46591,1,"""Europe""" +2023-01-19,67829,362,"[\""Keyboard\"", \""Wireless Mouse\""]",2435.37,"{\""promo\"": \""12%\""}",52448,1,"""South America""" +2024-01-28,67830,4974,"[\""Keyboard\"", \""Charger\""]",3236.53,{},289255,1,"""South America""" +2023-04-15,67831,9983,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3261.65,{},184365,0,"""North America""" +2024-08-06,67832,5330,"[\""Monitor\""]",2428.47,{},45146,0,"""South America""" +2023-02-11,67833,8479,"[\""Keyboard\""]",3288.71,{},162924,1,"""Europe""" +2024-02-10,67834,7778,"[\""Monitor\"", \""Wireless Mouse\""]",2869.44,"{\"": \""12%\""}",24888,0,"""Asia""" +2024-11-15,67835,1810,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",664.68,{},225113,0,"""Europe""" +2024-12-12,67836,2243,"[\""Wireless Mouse\""]",4900.38,{},12537,1,"""North America""" +2024-02-04,67837,8423,"[\""Keyboard\"", \""Headphones\""]",2557.24,"{\""loyalty\"": \""30%\""}",102600,1,"""Europe""" +2023-09-19,67838,6119,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4525.87,"{\""seasonal\"": \""29%\""}",235627,1,"""Asia""" +2023-12-18,67839,5811,"[\""Monitor\""]",4716.69,"{\""loyalty\"": \""22%\""}",258799,0,"""Africa""" +2024-11-29,67840,8248,"[\""Keyboard\"", \""Charger\""]",3657.9,{},256672,1,"""Africa""" +2024-07-16,67841,3118,"[\""Headphones\"", \""Monitor\""]",2765.48,{},5226,1,"""South America""" +2024-10-01,67842,9306,"[\""Charger\"", \""Laptop\""]",1446.34,{},109460,1,"""North America""" +2024-03-14,67843,6977,"[\""Monitor\"", \""Laptop\""]",1473.33,"{\""loyalty\"": \""8%\""}",122970,1,"""North America""" +2023-06-01,67844,3518,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",327.27,{},259026,1,"""Asia""" +2023-05-02,67845,7181,"[\""Headphones\"", \""Monitor\""]",548.84,{},146929,0,"""North America""" +2023-07-16,67846,5964,"[\""Charger\"", \""Phone\""]",2410.76,"{\""loyalty\"": \""10%\""}",146041,1,"""Africa""" +2023-08-28,67847,949,"[\""Laptop\""]",4681.59,{},10338,1,"""South America""" +2023-08-27,67848,9187,"[\""Charger\""]",4337.99,{},111872,1,"""Africa""" +2024-02-11,67849,4601,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2426.94,{},55714,1,"""Africa""" +2024-10-03,67850,747,"[\""Keyboard\""]",248.73,{},110121,0,"""Europe""" +2024-08-19,67851,1586,"[\""Charger\""]",2575.39,"{\""promo\"": \""18%\""}",108225,0,"""Africa""" +2023-11-27,67852,7627,"[\""Laptop\""]",2863.66,{},254065,1,"""Europe""" +2024-08-22,67853,3060,"[\""Phone\""]",1301.55,{},24221,0,"""Asia""" +2023-05-17,67854,717,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3581.23,"{\""loyalty\"": \""5%\""}",33142,0,"""Asia""" +2024-05-09,67855,584,"[\""Tablet\"", \""Wireless Mouse\""]",4844.67,{},154582,0,"""Africa""" +2024-01-18,67856,9725,"[\""Phone\""]",1775.31,"{\""loyalty\"": \""10%\""}",271530,1,"""South America""" +2023-05-03,67857,2386,"[\""Headphones\"", \""Charger\""]",1231.97,"{\""loyalty\"": \""11%\""}",239014,1,"""North America""" +2024-01-18,67858,610,"[\""Phone\""]",200.27,"{\"": \""18%\""}",107706,0,"""Africa""" +2023-01-17,67859,5151,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4031.83,{},206739,1,"""Europe""" +2024-09-27,67860,7966,"[\""Phone\"", \""Wireless Mouse\""]",1635.76,"{\""seasonal\"": \""11%\""}",159618,0,"""Europe""" +2024-09-25,67861,627,"[\""Charger\""]",1300.17,"{\""seasonal\"": \""11%\""}",210350,0,"""Europe""" +2023-01-14,67862,9768,"[\""Phone\"", \""Wireless Mouse\""]",3502.63,"{\"": \""13%\""}",156373,0,"""Asia""" +2023-11-06,67863,2645,"[\""Laptop\"", \""Charger\""]",4973.79,{},170162,0,"""Asia""" +2023-11-01,67864,2520,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",793.57,{},77156,0,"""South America""" +2024-01-13,67865,2323,"[\""Headphones\""]",2846.6,"{\""loyalty\"": \""18%\""}",207984,1,"""Asia""" +2024-04-22,67866,7390,"[\""Monitor\"", \""Charger\""]",1736.57,{},292816,1,"""Asia""" +2024-02-23,67867,7237,"[\""Charger\""]",1585.71,{},233162,1,"""Asia""" +2023-01-23,67868,9825,"[\""Phone\""]",933.84,"{\""seasonal\"": \""14%\""}",89544,0,"""Europe""" +2024-10-07,67869,921,"[\""Headphones\""]",2156.29,{},7566,0,"""North America""" +2024-06-05,67870,1876,"[\""Wireless Mouse\""]",4359.44,"{\"": \""29%\""}",253511,1,"""Africa""" +2024-09-06,67871,5160,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4144.36,"{\""loyalty\"": \""8%\""}",225755,0,"""South America""" +2023-10-04,67872,1810,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",835.47,"{\"": \""30%\""}",10984,0,"""South America""" +2024-10-26,67873,2216,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4877.94,"{\""loyalty\"": \""23%\""}",118862,1,"""Europe""" +2024-10-13,67874,3073,"[\""Keyboard\"", \""Wireless Mouse\""]",2025.43,"{\""seasonal\"": \""27%\""}",107694,0,"""South America""" +2024-12-11,67875,7818,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",878.53,"{\""promo\"": \""26%\""}",4542,1,"""Africa""" +2023-10-28,67876,362,"[\""Wireless Mouse\""]",1407.85,"{\""promo\"": \""8%\""}",119290,0,"""Europe""" +2024-01-17,67877,1731,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3022.68,"{\"": \""24%\""}",70088,1,"""North America""" +2023-03-19,67878,238,"[\""Charger\""]",264.47,"{\""seasonal\"": \""24%\""}",251008,1,"""Asia""" +2023-09-19,67879,1653,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2715.94,"{\""loyalty\"": \""29%\""}",287674,1,"""Europe""" +2024-09-17,67880,3776,"[\""Phone\"", \""Laptop\""]",2309.03,"{\""promo\"": \""6%\""}",267300,0,"""North America""" +2024-12-08,67881,3704,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4519.45,{},197043,0,"""North America""" +2023-10-01,67882,7418,"[\""Phone\""]",4117.1,"{\""loyalty\"": \""29%\""}",65963,1,"""Asia""" +2024-09-19,67883,9938,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4381.88,"{\""loyalty\"": \""9%\""}",22980,0,"""Asia""" +2024-06-11,67884,4971,"[\""Headphones\""]",2882.32,{},261842,0,"""North America""" +2023-04-07,67885,6150,"[\""Laptop\"", \""Tablet\""]",1037.71,"{\""seasonal\"": \""19%\""}",137011,1,"""Europe""" +2024-11-30,67886,3385,"[\""Headphones\"", \""Monitor\""]",3525.18,{},169862,0,"""Africa""" +2024-03-28,67887,5615,"[\""Tablet\""]",1152.45,"{\""seasonal\"": \""10%\""}",43601,1,"""Europe""" +2024-03-03,67888,75,"[\""Wireless Mouse\"", \""Keyboard\""]",1404.28,{},57445,1,"""Europe""" +2024-09-28,67889,4812,"[\""Laptop\"", \""Headphones\""]",3494.56,"{\""seasonal\"": \""6%\""}",99171,0,"""Asia""" +2024-07-06,67890,2751,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",770.54,"{\""seasonal\"": \""23%\""}",246651,1,"""Africa""" +2023-01-18,67891,2907,"[\""Monitor\"", \""Charger\""]",1317.39,{},114083,0,"""Asia""" +2023-03-25,67892,1953,"[\""Monitor\""]",1569.29,{},37052,0,"""South America""" +2023-11-19,67893,5203,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3348.18,{},261286,0,"""North America""" +2024-05-02,67894,4009,"[\""Charger\""]",3141.3,{},35218,0,"""South America""" +2024-09-26,67895,3729,"[\""Laptop\""]",4993.02,{},290887,0,"""Africa""" +2023-12-19,67896,7627,"[\""Wireless Mouse\"", \""Laptop\""]",1695.89,{},251295,1,"""Europe""" +2024-05-02,67897,7448,"[\""Keyboard\"", \""Phone\""]",912.06,"{\""seasonal\"": \""20%\""}",26714,0,"""Europe""" +2024-08-14,67898,8027,"[\""Laptop\"", \""Monitor\""]",1650.76,{},83093,1,"""South America""" +2024-07-17,67899,1338,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1027.92,"{\""seasonal\"": \""29%\""}",65828,1,"""South America""" +2024-04-30,67900,9462,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4369.34,{},199857,0,"""North America""" +2023-08-14,67901,2402,"[\""Wireless Mouse\"", \""Laptop\""]",256.1,"{\""loyalty\"": \""9%\""}",206467,0,"""Europe""" +2023-05-21,67902,7691,"[\""Keyboard\"", \""Charger\""]",1649.84,{},113910,0,"""Africa""" +2024-01-14,67903,884,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3081.17,{},221032,1,"""North America""" +2023-12-06,67904,5883,"[\""Wireless Mouse\""]",1221.33,{},166460,1,"""Europe""" +2024-06-05,67905,2228,"[\""Headphones\""]",3400.51,"{\""promo\"": \""21%\""}",72183,0,"""Asia""" +2023-02-17,67906,2963,"[\""Wireless Mouse\"", \""Keyboard\""]",237.48,"{\""promo\"": \""9%\""}",121137,1,"""South America""" +2024-03-30,67907,4571,"[\""Laptop\"", \""Charger\""]",4739.09,{},77711,0,"""Africa""" +2024-07-29,67908,2447,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2698.92,{},212896,0,"""Europe""" +2024-09-30,67909,7304,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4724.72,"{\""seasonal\"": \""5%\""}",200681,0,"""Europe""" +2023-05-31,67910,7962,"[\""Keyboard\""]",4889.06,"{\""promo\"": \""12%\""}",166383,0,"""Africa""" +2023-04-27,67911,1180,"[\""Phone\"", \""Headphones\""]",1455.83,"{\""seasonal\"": \""14%\""}",218616,0,"""North America""" +2024-12-07,67912,990,"[\""Wireless Mouse\"", \""Tablet\""]",4419.57,{},140262,1,"""North America""" +2023-09-25,67913,8108,"[\""Monitor\"", \""Headphones\""]",3250.08,"{\""loyalty\"": \""10%\""}",106854,0,"""South America""" +2024-10-18,67914,7534,"[\""Phone\"", \""Charger\""]",2354.65,{},131980,1,"""Africa""" +2024-01-31,67915,9326,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1149.93,{},253595,1,"""Europe""" +2024-02-17,67916,7106,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3889.77,"{\""promo\"": \""15%\""}",299271,1,"""Asia""" +2023-01-23,67917,6766,"[\""Keyboard\"", \""Headphones\""]",806.72,"{\""promo\"": \""25%\""}",199444,0,"""Asia""" +2023-07-31,67918,6345,"[\""Headphones\""]",2566.62,{},51837,0,"""Africa""" +2023-09-30,67919,5255,"[\""Laptop\""]",1857.54,{},57475,0,"""Africa""" +2023-03-14,67920,9248,"[\""Tablet\"", \""Keyboard\""]",3504.13,"{\"": \""30%\""}",31757,1,"""South America""" +2023-03-22,67921,7980,"[\""Laptop\""]",3784.8,{},265564,1,"""Europe""" +2023-01-25,67922,6816,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1772.72,{},88828,0,"""Asia""" +2023-07-16,67923,9052,"[\""Monitor\"", \""Tablet\""]",427.21,{},229520,1,"""South America""" +2024-01-14,67924,8684,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1219.32,{},81698,1,"""North America""" +2023-01-30,67925,7466,"[\""Wireless Mouse\"", \""Phone\""]",4414.37,{},239748,0,"""Europe""" +2023-12-19,67926,1013,"[\""Laptop\""]",3823.28,"{\""seasonal\"": \""6%\""}",163280,0,"""Africa""" +2023-04-19,67927,2287,"[\""Keyboard\"", \""Laptop\""]",99.03,"{\"": \""26%\""}",46213,1,"""Africa""" +2023-05-15,67928,8919,"[\""Headphones\""]",462.6,{},23963,0,"""North America""" +2024-05-20,67929,2957,"[\""Laptop\"", \""Phone\""]",4231.76,"{\""seasonal\"": \""15%\""}",143374,1,"""South America""" +2024-05-13,67930,813,"[\""Charger\""]",254.43,"{\""seasonal\"": \""16%\""}",117131,1,"""North America""" +2023-02-08,67931,3244,"[\""Keyboard\"", \""Laptop\""]",3678.96,"{\""loyalty\"": \""27%\""}",25618,1,"""Asia""" +2024-10-27,67932,7460,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1310.06,{},206142,0,"""South America""" +2024-12-22,67933,2772,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1123.26,"{\""loyalty\"": \""19%\""}",29440,0,"""Europe""" +2024-10-28,67934,4979,"[\""Monitor\"", \""Keyboard\""]",3101.33,{},46586,1,"""South America""" +2024-01-14,67935,1636,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",719.02,{},298232,1,"""Africa""" +2024-08-13,67936,5262,"[\""Charger\""]",4768.32,"{\""loyalty\"": \""24%\""}",144665,0,"""South America""" +2023-08-21,67937,5826,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3328.39,{},172446,1,"""Asia""" +2024-09-07,67938,602,"[\""Charger\""]",3182.12,"{\""promo\"": \""5%\""}",249860,0,"""Europe""" +2023-12-04,67939,5960,"[\""Wireless Mouse\"", \""Keyboard\""]",4407.38,"{\""loyalty\"": \""13%\""}",220341,1,"""Europe""" +2024-05-16,67940,8617,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",131.43,"{\"": \""8%\""}",87067,0,"""Europe""" +2023-08-24,67941,92,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4925.62,{},16393,1,"""Asia""" +2023-03-21,67942,6681,"[\""Tablet\""]",2101.69,{},80362,1,"""Africa""" +2023-09-06,67943,3890,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3504.74,"{\""loyalty\"": \""8%\""}",146623,1,"""Europe""" +2024-10-21,67944,298,"[\""Headphones\"", \""Laptop\""]",4073.74,"{\""promo\"": \""23%\""}",73067,1,"""Europe""" +2023-08-17,67945,8611,"[\""Charger\"", \""Monitor\""]",600.73,{},27472,0,"""South America""" +2023-09-27,67946,3348,"[\""Monitor\""]",582.25,{},44475,0,"""Africa""" +2023-03-21,67947,5047,"[\""Charger\""]",1341.03,"{\""promo\"": \""16%\""}",213930,0,"""Asia""" +2024-09-19,67948,9706,"[\""Tablet\""]",1736.3,{},79472,1,"""South America""" +2024-01-30,67949,9708,"[\""Headphones\""]",2210.99,"{\""loyalty\"": \""18%\""}",263668,0,"""North America""" +2023-02-05,67950,5549,"[\""Headphones\""]",1888.63,"{\""seasonal\"": \""23%\""}",105101,0,"""Africa""" +2023-10-04,67951,3726,"[\""Laptop\"", \""Keyboard\""]",570.51,"{\""loyalty\"": \""17%\""}",269730,0,"""Asia""" +2024-07-19,67952,7491,"[\""Laptop\""]",1618.92,"{\""promo\"": \""11%\""}",104026,1,"""Asia""" +2023-09-28,67953,768,"[\""Keyboard\""]",2592.79,"{\""seasonal\"": \""13%\""}",98569,1,"""South America""" +2023-09-13,67954,3124,"[\""Laptop\""]",3378.98,{},245737,0,"""Asia""" +2023-02-02,67955,7190,"[\""Laptop\"", \""Headphones\""]",2234.02,"{\""seasonal\"": \""24%\""}",23616,1,"""Africa""" +2024-10-01,67956,6355,"[\""Keyboard\""]",4253.86,{},52713,0,"""North America""" +2023-01-02,67957,4055,"[\""Wireless Mouse\""]",1924.41,"{\""loyalty\"": \""5%\""}",220218,0,"""Africa""" +2023-07-10,67958,5139,"[\""Charger\""]",4836.16,{},107520,0,"""Africa""" +2023-08-18,67959,772,"[\""Keyboard\""]",3603.3,{},17964,1,"""Asia""" +2024-03-20,67960,1077,"[\""Monitor\""]",3277.3,{},14013,0,"""North America""" +2023-11-26,67961,799,"[\""Keyboard\"", \""Phone\""]",951.5,"{\""loyalty\"": \""5%\""}",208403,1,"""North America""" +2023-12-04,67962,5400,"[\""Wireless Mouse\""]",4598.29,{},101967,1,"""South America""" +2023-12-24,67963,3323,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1952.26,{},154863,0,"""North America""" +2024-09-24,67964,4899,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1163.76,{},280042,0,"""Asia""" +2024-02-22,67965,5942,"[\""Wireless Mouse\""]",978.69,{},54612,0,"""Europe""" +2023-08-19,67966,8012,"[\""Keyboard\"", \""Tablet\""]",2826.76,"{\""loyalty\"": \""8%\""}",192343,0,"""Europe""" +2024-12-07,67967,4667,"[\""Headphones\""]",1914.58,{},152071,0,"""Europe""" +2023-11-07,67968,9907,"[\""Headphones\"", \""Keyboard\""]",158.2,{},271343,1,"""Europe""" +2024-10-29,67969,7943,"[\""Laptop\"", \""Wireless Mouse\""]",2190.46,{},105132,1,"""Europe""" +2024-12-09,67970,988,"[\""Laptop\""]",1010.0,"{\"": \""30%\""}",171455,0,"""South America""" +2024-01-11,67971,6198,"[\""Headphones\"", \""Charger\""]",2023.98,{},241596,0,"""Europe""" +2023-10-08,67972,306,"[\""Laptop\"", \""Wireless Mouse\""]",3716.87,{},179022,0,"""Africa""" +2024-10-13,67973,882,"[\""Keyboard\""]",1052.28,"{\""loyalty\"": \""27%\""}",261209,0,"""Asia""" +2024-06-08,67974,85,"[\""Wireless Mouse\"", \""Phone\""]",4907.38,{},9367,0,"""Asia""" +2023-09-27,67975,4867,"[\""Wireless Mouse\"", \""Phone\""]",3730.58,{},12252,0,"""Africa""" +2024-05-24,67976,2097,"[\""Laptop\""]",3167.34,"{\""seasonal\"": \""13%\""}",292650,1,"""Asia""" +2023-03-14,67977,6698,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",462.86,"{\""loyalty\"": \""13%\""}",238684,0,"""South America""" +2023-05-13,67978,911,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3812.92,{},273147,0,"""Africa""" +2023-02-02,67979,530,"[\""Phone\""]",4736.51,{},265348,1,"""Asia""" +2024-05-30,67980,8470,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4327.45,{},279644,1,"""North America""" +2023-09-30,67981,8772,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1849.51,{},250423,0,"""Asia""" +2024-07-02,67982,4142,"[\""Headphones\"", \""Phone\""]",1725.59,"{\""promo\"": \""24%\""}",11370,0,"""Africa""" +2023-09-15,67983,1589,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2715.01,"{\""promo\"": \""24%\""}",281857,1,"""North America""" +2023-09-10,67984,9361,"[\""Monitor\""]",4236.59,"{\""seasonal\"": \""13%\""}",295854,1,"""Asia""" +2023-07-14,67985,144,"[\""Wireless Mouse\"", \""Charger\""]",4443.5,"{\"": \""9%\""}",299065,0,"""Asia""" +2023-02-22,67986,3204,"[\""Phone\"", \""Tablet\""]",3265.95,{},225437,0,"""Asia""" +2023-08-19,67987,9247,"[\""Phone\""]",3348.23,"{\""seasonal\"": \""22%\""}",85751,1,"""North America""" +2023-12-18,67988,6811,"[\""Headphones\"", \""Keyboard\""]",1420.77,"{\"": \""28%\""}",152414,0,"""North America""" +2023-01-07,67989,5624,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4163.15,"{\"": \""6%\""}",15125,0,"""Asia""" +2023-08-09,67990,4712,"[\""Headphones\""]",3579.25,{},81885,0,"""Asia""" +2023-11-23,67991,8526,"[\""Monitor\""]",4521.71,"{\""seasonal\"": \""21%\""}",143875,1,"""South America""" +2024-03-23,67992,506,"[\""Keyboard\""]",2805.17,"{\""loyalty\"": \""14%\""}",144955,1,"""South America""" +2023-03-13,67993,789,"[\""Charger\""]",4791.04,"{\""promo\"": \""11%\""}",19308,0,"""North America""" +2023-01-10,67994,9091,"[\""Wireless Mouse\""]",967.64,"{\""seasonal\"": \""10%\""}",144297,0,"""Europe""" +2024-06-05,67995,475,"[\""Monitor\"", \""Charger\""]",4541.88,{},138954,0,"""North America""" +2023-02-24,67996,2231,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4463.61,"{\""loyalty\"": \""18%\""}",215645,1,"""North America""" +2023-08-28,67997,8860,"[\""Wireless Mouse\"", \""Charger\""]",2434.25,"{\""loyalty\"": \""8%\""}",277365,0,"""Asia""" +2024-05-04,67998,4876,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4579.76,{},288169,1,"""Africa""" +2024-05-29,67999,5425,"[\""Phone\"", \""Wireless Mouse\""]",4895.62,{},35688,1,"""Asia""" +2024-01-03,68000,7593,"[\""Monitor\"", \""Wireless Mouse\""]",3470.68,{},149671,1,"""Asia""" +2024-09-12,68001,3031,"[\""Laptop\"", \""Phone\""]",869.4,{},59615,1,"""South America""" +2024-12-05,68002,4775,"[\""Tablet\""]",3815.58,"{\"": \""28%\""}",180555,1,"""Africa""" +2023-08-16,68003,2544,"[\""Phone\"", \""Wireless Mouse\""]",2716.98,{},169045,0,"""North America""" +2023-09-14,68004,3528,"[\""Keyboard\"", \""Monitor\""]",3512.44,{},81775,1,"""Africa""" +2023-08-04,68005,6609,"[\""Wireless Mouse\"", \""Monitor\""]",4202.42,{},226855,1,"""Africa""" +2023-04-11,68006,8970,"[\""Keyboard\""]",2922.32,{},204314,0,"""Africa""" +2023-03-29,68007,4708,"[\""Phone\"", \""Charger\""]",318.3,"{\""promo\"": \""7%\""}",215710,0,"""South America""" +2023-04-18,68008,4006,"[\""Charger\"", \""Headphones\""]",848.62,{},57324,1,"""Asia""" +2024-05-30,68009,8039,"[\""Monitor\""]",4241.87,"{\""seasonal\"": \""23%\""}",269080,1,"""Africa""" +2024-02-05,68010,8290,"[\""Laptop\"", \""Tablet\""]",4110.31,"{\""seasonal\"": \""14%\""}",292179,1,"""Europe""" +2024-02-17,68011,1051,"[\""Keyboard\"", \""Headphones\""]",2204.02,"{\""seasonal\"": \""12%\""}",183073,0,"""Europe""" +2023-01-09,68012,4767,"[\""Phone\"", \""Tablet\""]",195.06,"{\"": \""28%\""}",85263,1,"""Africa""" +2023-12-14,68013,603,"[\""Wireless Mouse\""]",3405.08,{},32957,1,"""Africa""" +2024-02-08,68014,6172,"[\""Charger\"", \""Wireless Mouse\""]",2383.22,{},106881,1,"""Africa""" +2024-08-20,68015,1762,"[\""Monitor\"", \""Phone\""]",761.06,"{\""seasonal\"": \""19%\""}",153654,1,"""North America""" +2023-11-08,68016,2054,"[\""Headphones\""]",3821.51,"{\""promo\"": \""25%\""}",221179,0,"""North America""" +2024-06-02,68017,33,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2584.9,{},22575,1,"""Africa""" +2023-05-06,68018,8522,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2369.42,{},128618,1,"""Asia""" +2024-08-14,68019,4626,"[\""Phone\"", \""Laptop\""]",4904.47,"{\"": \""11%\""}",56664,0,"""Europe""" +2023-05-12,68020,408,"[\""Monitor\"", \""Wireless Mouse\""]",769.92,"{\""promo\"": \""18%\""}",267355,1,"""South America""" +2024-12-31,68021,9208,"[\""Tablet\""]",2247.0,"{\"": \""26%\""}",169266,0,"""Asia""" +2024-07-21,68022,7860,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",748.53,{},256270,1,"""Europe""" +2023-01-03,68023,5457,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3025.6,{},104531,1,"""North America""" +2024-08-24,68024,4318,"[\""Monitor\"", \""Phone\""]",3881.09,{},216332,1,"""Africa""" +2024-07-04,68025,8064,"[\""Laptop\"", \""Headphones\""]",679.08,{},280938,0,"""North America""" +2024-04-18,68026,2742,"[\""Laptop\""]",3503.61,"{\""seasonal\"": \""16%\""}",188822,1,"""North America""" +2023-06-21,68027,1960,"[\""Phone\"", \""Monitor\""]",381.08,{},42325,1,"""North America""" +2024-08-06,68028,8672,"[\""Laptop\"", \""Keyboard\""]",314.3,{},5774,1,"""Africa""" +2023-11-04,68029,1166,"[\""Charger\""]",752.29,{},77114,0,"""Asia""" +2023-07-17,68030,7837,"[\""Headphones\""]",2623.66,{},234708,1,"""South America""" +2024-02-21,68031,4173,"[\""Laptop\"", \""Tablet\""]",612.95,"{\""seasonal\"": \""28%\""}",172700,1,"""Africa""" +2024-04-07,68032,4949,"[\""Tablet\"", \""Wireless Mouse\""]",2694.82,"{\"": \""7%\""}",212360,1,"""Europe""" +2024-02-07,68033,9039,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3682.75,"{\""seasonal\"": \""30%\""}",236029,0,"""Europe""" +2024-09-18,68034,8599,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1982.15,"{\"": \""24%\""}",2960,0,"""Africa""" +2024-02-21,68035,3183,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2472.98,"{\""promo\"": \""23%\""}",85568,1,"""Europe""" +2023-05-28,68036,4023,"[\""Tablet\""]",941.53,"{\""seasonal\"": \""30%\""}",24699,0,"""South America""" +2023-08-05,68037,5853,"[\""Charger\""]",2783.6,"{\""promo\"": \""10%\""}",256574,0,"""Asia""" +2023-03-12,68038,8042,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1685.14,"{\""seasonal\"": \""29%\""}",152179,1,"""Europe""" +2024-12-18,68039,4387,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",316.72,{},43624,0,"""South America""" +2024-06-14,68040,7109,"[\""Headphones\""]",4455.63,{},32056,1,"""Africa""" +2024-02-19,68041,4028,"[\""Charger\""]",776.9,"{\"": \""9%\""}",101075,1,"""South America""" +2024-07-14,68042,901,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3566.46,"{\""loyalty\"": \""17%\""}",287466,0,"""Asia""" +2024-09-11,68043,9303,"[\""Phone\"", \""Charger\""]",4412.33,"{\"": \""14%\""}",88916,1,"""South America""" +2023-02-07,68044,8411,"[\""Charger\""]",3532.84,{},152572,1,"""South America""" +2024-03-27,68045,5359,"[\""Monitor\""]",3619.82,{},177759,1,"""North America""" +2024-11-08,68046,5895,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2088.44,"{\"": \""6%\""}",108301,1,"""North America""" +2024-02-26,68047,4345,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3248.41,{},65530,1,"""North America""" +2023-05-13,68048,3018,"[\""Phone\"", \""Wireless Mouse\""]",1187.81,"{\"": \""12%\""}",292100,1,"""South America""" +2024-03-16,68049,198,"[\""Charger\"", \""Phone\""]",768.58,"{\""seasonal\"": \""11%\""}",119092,1,"""Africa""" +2024-05-20,68050,1382,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4843.36,"{\""promo\"": \""9%\""}",250517,0,"""North America""" +2024-05-16,68051,5037,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4674.37,"{\""seasonal\"": \""29%\""}",194918,0,"""North America""" +2023-01-09,68052,28,"[\""Tablet\""]",2321.92,"{\"": \""14%\""}",72607,0,"""Africa""" +2024-06-23,68053,7757,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4165.88,{},254998,0,"""South America""" +2024-11-08,68054,3827,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2239.68,"{\""seasonal\"": \""19%\""}",69717,0,"""South America""" +2023-05-30,68055,159,"[\""Monitor\""]",4637.73,"{\"": \""7%\""}",111375,1,"""Europe""" +2023-03-26,68056,8751,"[\""Phone\"", \""Charger\""]",1158.5,{},97442,1,"""South America""" +2023-05-05,68057,7843,"[\""Tablet\"", \""Keyboard\""]",1361.73,"{\""seasonal\"": \""19%\""}",58665,1,"""Asia""" +2023-04-13,68058,291,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4903.96,{},17774,1,"""Africa""" +2023-01-18,68059,7523,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1352.29,{},61316,1,"""Africa""" +2024-08-19,68060,4193,"[\""Tablet\""]",3207.22,"{\""loyalty\"": \""15%\""}",147355,0,"""North America""" +2024-04-21,68061,8835,"[\""Wireless Mouse\""]",178.69,"{\""seasonal\"": \""13%\""}",56114,1,"""North America""" +2023-01-28,68062,8695,"[\""Charger\""]",2327.6,{},220308,1,"""Europe""" +2024-11-10,68063,5746,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",240.19,"{\"": \""13%\""}",107248,0,"""Asia""" +2024-05-21,68064,9505,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3824.16,"{\""promo\"": \""15%\""}",60561,0,"""Europe""" +2023-01-06,68065,4060,"[\""Monitor\"", \""Phone\""]",2012.4,"{\""seasonal\"": \""13%\""}",41260,1,"""South America""" +2023-04-11,68066,9489,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4103.53,"{\""seasonal\"": \""27%\""}",247584,1,"""South America""" +2024-09-04,68067,347,"[\""Charger\""]",2725.19,{},18079,1,"""South America""" +2023-04-17,68068,1039,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4377.76,{},169687,1,"""South America""" +2024-10-29,68069,2921,"[\""Wireless Mouse\""]",2915.79,"{\""promo\"": \""16%\""}",291643,0,"""Asia""" +2024-06-27,68070,8402,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2704.37,{},10892,0,"""Europe""" +2024-11-26,68071,2980,"[\""Charger\"", \""Monitor\""]",1037.67,"{\""seasonal\"": \""7%\""}",227513,0,"""Asia""" +2023-08-12,68072,8918,"[\""Phone\"", \""Laptop\""]",4575.04,"{\""seasonal\"": \""30%\""}",240853,1,"""Europe""" +2023-01-08,68073,7837,"[\""Phone\""]",3347.24,"{\""loyalty\"": \""16%\""}",90356,0,"""Africa""" +2023-04-15,68074,845,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3904.44,{},299849,1,"""Africa""" +2024-01-09,68075,9266,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1104.8,{},149748,1,"""South America""" +2024-01-25,68076,2763,"[\""Phone\""]",1793.6,"{\""promo\"": \""23%\""}",206724,0,"""North America""" +2023-09-22,68077,6017,"[\""Phone\"", \""Headphones\""]",4970.17,"{\""promo\"": \""15%\""}",233175,1,"""North America""" +2023-12-21,68078,8347,"[\""Monitor\""]",121.23,{},236550,1,"""South America""" +2023-10-09,68079,5919,"[\""Charger\"", \""Tablet\""]",354.06,"{\""loyalty\"": \""10%\""}",81335,1,"""Asia""" +2024-11-26,68080,6929,"[\""Wireless Mouse\"", \""Monitor\""]",1008.69,"{\""loyalty\"": \""7%\""}",87898,0,"""South America""" +2023-11-12,68081,2446,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4302.84,"{\""seasonal\"": \""29%\""}",174286,0,"""Africa""" +2023-02-01,68082,9801,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",858.33,{},83565,1,"""Africa""" +2023-09-27,68083,5379,"[\""Monitor\""]",4642.33,"{\"": \""12%\""}",40231,1,"""Asia""" +2023-10-23,68084,1521,"[\""Wireless Mouse\"", \""Headphones\""]",748.32,{},18829,0,"""Europe""" +2024-06-12,68085,6494,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2173.76,"{\""promo\"": \""9%\""}",222277,1,"""Africa""" +2024-12-16,68086,2917,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4928.3,{},260350,1,"""Europe""" +2023-10-27,68087,972,"[\""Phone\""]",2847.78,"{\""promo\"": \""27%\""}",50176,0,"""Asia""" +2023-04-15,68088,5078,"[\""Charger\"", \""Tablet\""]",1817.62,"{\"": \""23%\""}",146539,0,"""South America""" +2024-07-12,68089,7240,"[\""Keyboard\""]",3192.23,{},77296,0,"""South America""" +2023-01-25,68090,6791,"[\""Laptop\""]",3795.3,"{\"": \""20%\""}",249976,0,"""North America""" +2023-07-14,68091,7935,"[\""Monitor\"", \""Phone\""]",1122.57,"{\""promo\"": \""10%\""}",58005,0,"""South America""" +2023-07-15,68092,9557,"[\""Keyboard\""]",3596.23,{},193099,0,"""Africa""" +2024-11-25,68093,2576,"[\""Monitor\""]",2202.01,{},249742,1,"""North America""" +2024-07-07,68094,4818,"[\""Laptop\"", \""Wireless Mouse\""]",3421.36,"{\""promo\"": \""20%\""}",91230,1,"""Europe""" +2024-11-27,68095,5181,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2454.75,"{\"": \""10%\""}",188591,1,"""North America""" +2023-08-09,68096,4077,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1300.19,{},277980,0,"""Africa""" +2024-06-08,68097,7237,"[\""Keyboard\""]",2672.77,"{\""seasonal\"": \""21%\""}",239846,0,"""Asia""" +2024-02-08,68098,6927,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2087.48,{},204876,0,"""North America""" +2023-04-09,68099,6792,"[\""Phone\""]",2256.96,"{\"": \""9%\""}",200206,1,"""South America""" +2023-06-11,68100,2693,"[\""Monitor\"", \""Keyboard\""]",3129.59,{},70048,0,"""Europe""" +2023-05-14,68101,6053,"[\""Phone\""]",4526.71,{},29429,1,"""South America""" +2023-12-15,68102,6063,"[\""Wireless Mouse\""]",3052.85,"{\"": \""11%\""}",16185,0,"""Africa""" +2023-01-14,68103,8590,"[\""Tablet\"", \""Phone\""]",2126.37,{},218387,1,"""Asia""" +2023-08-27,68104,6475,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1558.18,{},215042,0,"""Africa""" +2023-08-09,68105,3000,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1249.51,"{\""promo\"": \""20%\""}",155297,0,"""South America""" +2023-12-05,68106,7682,"[\""Phone\"", \""Charger\""]",410.97,"{\""seasonal\"": \""12%\""}",3639,1,"""North America""" +2023-03-19,68107,1212,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4878.29,{},109351,1,"""Europe""" +2024-10-12,68108,1350,"[\""Headphones\""]",4439.01,{},257285,1,"""Africa""" +2024-03-21,68109,8205,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1111.75,{},49823,0,"""South America""" +2024-03-19,68110,7245,"[\""Headphones\"", \""Monitor\""]",3210.25,"{\"": \""13%\""}",86035,1,"""Africa""" +2024-01-12,68111,3514,"[\""Laptop\"", \""Phone\""]",4116.82,{},210920,1,"""Europe""" +2024-01-28,68112,730,"[\""Laptop\"", \""Phone\""]",1014.83,"{\""seasonal\"": \""14%\""}",171213,0,"""Asia""" +2023-12-13,68113,4301,"[\""Monitor\"", \""Keyboard\""]",3013.91,{},95436,0,"""Europe""" +2024-10-16,68114,5812,"[\""Monitor\""]",4688.06,"{\"": \""10%\""}",164821,0,"""South America""" +2024-10-18,68115,9353,"[\""Headphones\""]",3321.52,{},204878,0,"""Africa""" +2023-04-09,68116,4083,"[\""Wireless Mouse\""]",4317.68,"{\""seasonal\"": \""14%\""}",189006,1,"""North America""" +2024-12-31,68117,9991,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4714.95,"{\"": \""22%\""}",173537,1,"""Africa""" +2023-04-16,68118,312,"[\""Monitor\"", \""Charger\""]",4149.28,"{\""promo\"": \""13%\""}",193537,1,"""Europe""" +2024-01-13,68119,9912,"[\""Tablet\""]",337.88,"{\""seasonal\"": \""9%\""}",59791,1,"""South America""" +2024-04-27,68120,6326,"[\""Monitor\""]",3485.65,"{\"": \""8%\""}",252176,1,"""South America""" +2023-09-17,68121,8168,"[\""Monitor\""]",4285.08,{},145957,1,"""Europe""" +2024-05-30,68122,9126,"[\""Wireless Mouse\""]",4600.9,{},179538,0,"""South America""" +2023-04-21,68123,7888,"[\""Tablet\"", \""Monitor\""]",2410.52,"{\"": \""17%\""}",75973,0,"""Europe""" +2023-06-06,68124,9240,"[\""Keyboard\""]",4451.86,{},287296,1,"""Europe""" +2024-08-31,68125,9701,"[\""Charger\"", \""Headphones\""]",4816.58,{},28089,0,"""Africa""" +2024-04-17,68126,7486,"[\""Wireless Mouse\""]",554.07,"{\""promo\"": \""28%\""}",283348,1,"""North America""" +2024-05-03,68127,6886,"[\""Laptop\"", \""Phone\"", \""Charger\""]",855.66,"{\"": \""25%\""}",64255,0,"""Asia""" +2023-01-26,68128,6772,"[\""Monitor\""]",3704.39,{},166666,1,"""Europe""" +2023-09-21,68129,4501,"[\""Tablet\"", \""Phone\""]",1625.26,"{\""loyalty\"": \""7%\""}",39835,0,"""North America""" +2023-11-17,68130,719,"[\""Wireless Mouse\""]",3907.76,"{\""seasonal\"": \""8%\""}",61733,1,"""Asia""" +2023-08-20,68131,4563,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2865.73,{},57053,1,"""Africa""" +2023-04-24,68132,8415,"[\""Charger\""]",4474.39,"{\"": \""21%\""}",294461,1,"""North America""" +2023-12-21,68133,7049,"[\""Headphones\""]",3805.22,"{\"": \""22%\""}",151654,0,"""North America""" +2023-08-28,68134,6887,"[\""Wireless Mouse\"", \""Charger\""]",401.26,{},187586,1,"""South America""" +2024-06-01,68135,3093,"[\""Headphones\""]",1162.44,"{\""promo\"": \""21%\""}",14965,0,"""South America""" +2024-10-08,68136,5843,"[\""Keyboard\""]",4322.82,"{\""loyalty\"": \""9%\""}",21672,1,"""Africa""" +2023-04-29,68137,5904,"[\""Phone\"", \""Monitor\""]",589.27,"{\""seasonal\"": \""28%\""}",249588,1,"""Europe""" +2023-08-04,68138,1709,"[\""Phone\""]",4905.64,{},105834,0,"""Africa""" +2023-07-28,68139,2549,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",923.61,{},62054,1,"""Europe""" +2024-06-30,68140,9703,"[\""Tablet\"", \""Wireless Mouse\""]",2092.21,{},164002,1,"""South America""" +2024-08-05,68141,9737,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2162.58,{},136356,1,"""North America""" +2024-05-10,68142,2652,"[\""Charger\"", \""Keyboard\""]",2129.76,{},285566,1,"""Asia""" +2024-05-05,68143,4676,"[\""Laptop\""]",3879.76,"{\""promo\"": \""12%\""}",76700,1,"""North America""" +2024-12-31,68144,9226,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3053.84,{},100049,0,"""North America""" +2023-01-03,68145,7640,"[\""Headphones\""]",2360.13,"{\""seasonal\"": \""13%\""}",75286,0,"""North America""" +2024-03-10,68146,6018,"[\""Keyboard\""]",3191.19,"{\""seasonal\"": \""22%\""}",213044,1,"""Asia""" +2024-03-16,68147,7772,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4447.84,"{\""seasonal\"": \""9%\""}",261912,1,"""South America""" +2024-10-07,68148,3122,"[\""Phone\""]",2111.1,{},251508,0,"""Europe""" +2023-03-24,68149,1559,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",504.49,{},262273,1,"""North America""" +2023-08-21,68150,5068,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1209.11,"{\""seasonal\"": \""30%\""}",285914,0,"""Asia""" +2023-12-20,68151,4650,"[\""Keyboard\"", \""Wireless Mouse\""]",2507.5,"{\"": \""5%\""}",205381,1,"""North America""" +2023-07-20,68152,7881,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1091.17,"{\""seasonal\"": \""9%\""}",288188,0,"""North America""" +2023-01-22,68153,1453,"[\""Phone\"", \""Laptop\""]",777.68,"{\""loyalty\"": \""16%\""}",189842,0,"""North America""" +2024-06-07,68154,6913,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2735.14,{},34339,1,"""Europe""" +2023-08-04,68155,5957,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",735.35,"{\""promo\"": \""17%\""}",83554,1,"""Europe""" +2024-06-09,68156,2280,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1158.03,"{\""seasonal\"": \""8%\""}",99079,1,"""North America""" +2023-12-13,68157,9259,"[\""Tablet\"", \""Keyboard\""]",3340.04,"{\"": \""27%\""}",95167,0,"""South America""" +2023-10-15,68158,3977,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1889.71,"{\""loyalty\"": \""9%\""}",103359,0,"""Europe""" +2023-06-11,68159,3856,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3453.44,{},287835,0,"""North America""" +2024-05-25,68160,2985,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",628.55,"{\""promo\"": \""30%\""}",289649,0,"""Africa""" +2023-02-15,68161,8529,"[\""Keyboard\"", \""Monitor\""]",509.85,{},127168,0,"""South America""" +2023-09-24,68162,359,"[\""Charger\"", \""Headphones\""]",833.41,{},85937,1,"""Asia""" +2024-03-18,68163,820,"[\""Wireless Mouse\"", \""Phone\""]",1107.41,{},13431,0,"""Europe""" +2024-03-10,68164,1814,"[\""Tablet\""]",2862.53,"{\""loyalty\"": \""11%\""}",119864,1,"""South America""" +2023-11-22,68165,8817,"[\""Phone\"", \""Charger\""]",3587.77,"{\"": \""10%\""}",35006,1,"""North America""" +2023-08-21,68166,7083,"[\""Monitor\""]",1724.89,"{\""loyalty\"": \""8%\""}",165451,0,"""Asia""" +2024-02-29,68167,9089,"[\""Wireless Mouse\"", \""Charger\""]",3817.32,{},243464,0,"""Europe""" +2023-07-02,68168,1036,"[\""Phone\""]",1652.75,{},12629,0,"""South America""" +2023-08-26,68169,1002,"[\""Charger\""]",4884.11,"{\""promo\"": \""30%\""}",138952,0,"""Asia""" +2024-03-08,68170,8207,"[\""Wireless Mouse\""]",3003.6,"{\""seasonal\"": \""30%\""}",195985,0,"""Europe""" +2023-02-25,68171,2102,"[\""Charger\"", \""Phone\""]",3865.28,{},290082,0,"""Asia""" +2023-11-18,68172,7883,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2785.85,"{\"": \""20%\""}",251385,1,"""Africa""" +2023-08-14,68173,1632,"[\""Laptop\""]",4290.33,"{\""seasonal\"": \""28%\""}",44887,0,"""Asia""" +2024-01-09,68174,1979,"[\""Phone\"", \""Wireless Mouse\""]",232.95,"{\""promo\"": \""30%\""}",123598,0,"""Africa""" +2023-03-01,68175,6415,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2242.43,"{\""loyalty\"": \""12%\""}",209687,0,"""Asia""" +2023-03-17,68176,6988,"[\""Headphones\""]",3053.22,"{\""seasonal\"": \""9%\""}",147007,0,"""Europe""" +2024-03-08,68177,8629,"[\""Charger\""]",374.34,{},262468,0,"""Asia""" +2024-09-09,68178,7776,"[\""Phone\"", \""Headphones\""]",1618.35,"{\""loyalty\"": \""26%\""}",91724,0,"""Asia""" +2024-09-30,68179,769,"[\""Laptop\"", \""Keyboard\""]",1135.67,"{\""promo\"": \""9%\""}",183159,1,"""Asia""" +2024-04-27,68180,4040,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1142.17,{},38980,0,"""South America""" +2023-01-11,68181,9677,"[\""Laptop\"", \""Tablet\""]",2800.9,"{\""seasonal\"": \""25%\""}",42477,1,"""Europe""" +2024-02-12,68182,3890,"[\""Keyboard\"", \""Phone\""]",2611.25,{},11099,0,"""North America""" +2024-12-25,68183,1524,"[\""Monitor\"", \""Headphones\""]",4644.89,{},97395,1,"""South America""" +2023-02-22,68184,7269,"[\""Monitor\"", \""Headphones\""]",4390.4,"{\"": \""29%\""}",270140,0,"""Asia""" +2024-07-14,68185,2714,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2373.16,{},229794,1,"""South America""" +2024-04-29,68186,4892,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4478.99,"{\""promo\"": \""11%\""}",209009,0,"""South America""" +2023-05-22,68187,3969,"[\""Monitor\"", \""Laptop\""]",1680.01,{},213199,0,"""Africa""" +2023-09-20,68188,2197,"[\""Wireless Mouse\""]",346.5,"{\""loyalty\"": \""5%\""}",36949,1,"""Europe""" +2023-01-12,68189,8096,"[\""Laptop\""]",1543.36,"{\"": \""22%\""}",288002,1,"""Asia""" +2023-08-15,68190,2716,"[\""Phone\"", \""Wireless Mouse\""]",4787.95,{},164181,1,"""North America""" +2023-11-02,68191,7436,"[\""Tablet\"", \""Charger\""]",3135.52,"{\""promo\"": \""23%\""}",220080,1,"""North America""" +2024-05-19,68192,533,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",194.85,{},170838,0,"""Asia""" +2024-06-24,68193,7725,"[\""Phone\"", \""Wireless Mouse\""]",3358.02,{},93454,0,"""Europe""" +2024-05-05,68194,7963,"[\""Charger\"", \""Tablet\""]",4317.14,"{\""promo\"": \""16%\""}",146351,0,"""Africa""" +2023-08-07,68195,5976,"[\""Laptop\"", \""Keyboard\""]",3162.2,{},79195,1,"""Asia""" +2024-07-07,68196,4760,"[\""Phone\"", \""Charger\"", \""Headphones\""]",845.79,"{\""loyalty\"": \""27%\""}",224155,0,"""Africa""" +2023-09-01,68197,9065,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3463.93,{},132608,1,"""Europe""" +2024-05-20,68198,716,"[\""Headphones\""]",3379.43,"{\""promo\"": \""26%\""}",149975,0,"""Asia""" +2023-03-14,68199,3987,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4496.74,"{\""loyalty\"": \""30%\""}",47077,1,"""Europe""" +2023-12-24,68200,8980,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2233.96,{},57662,1,"""Africa""" +2023-07-22,68201,4068,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2191.87,"{\""promo\"": \""13%\""}",7939,0,"""South America""" +2024-04-23,68202,499,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1923.71,{},256547,1,"""North America""" +2023-11-06,68203,367,"[\""Phone\""]",3499.22,"{\"": \""12%\""}",164284,1,"""South America""" +2023-12-19,68204,8559,"[\""Charger\""]",4095.96,"{\""seasonal\"": \""28%\""}",182885,0,"""Europe""" +2023-07-15,68205,316,"[\""Wireless Mouse\"", \""Monitor\""]",548.43,{},273303,1,"""South America""" +2024-12-13,68206,3524,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4557.99,"{\""seasonal\"": \""30%\""}",189062,0,"""North America""" +2023-08-13,68207,5094,"[\""Charger\"", \""Wireless Mouse\""]",4368.35,{},265256,1,"""Asia""" +2024-03-29,68208,7467,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",764.11,"{\"": \""24%\""}",96276,1,"""North America""" +2024-07-05,68209,3671,"[\""Charger\""]",1014.59,"{\""promo\"": \""25%\""}",202433,1,"""South America""" +2023-10-26,68210,4494,"[\""Phone\"", \""Wireless Mouse\""]",1346.21,"{\""loyalty\"": \""25%\""}",281043,1,"""Africa""" +2023-11-07,68211,2912,"[\""Wireless Mouse\""]",4318.7,{},55933,0,"""Africa""" +2023-05-29,68212,7040,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4251.66,"{\"": \""5%\""}",92164,0,"""Asia""" +2024-09-19,68213,1749,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",363.56,"{\""loyalty\"": \""13%\""}",72529,0,"""Asia""" +2023-03-25,68214,1881,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2362.4,"{\""loyalty\"": \""23%\""}",34304,0,"""South America""" +2024-09-18,68215,6509,"[\""Wireless Mouse\""]",1578.55,{},136456,0,"""Asia""" +2023-03-13,68216,393,"[\""Charger\""]",4726.91,{},193883,0,"""South America""" +2023-07-13,68217,3784,"[\""Charger\"", \""Keyboard\""]",3253.12,{},141158,1,"""Africa""" +2024-12-11,68218,5480,"[\""Phone\"", \""Charger\"", \""Headphones\""]",145.33,"{\""seasonal\"": \""17%\""}",48592,1,"""North America""" +2024-06-14,68219,4840,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4305.82,{},138590,1,"""Asia""" +2023-10-19,68220,3166,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1533.94,{},58408,0,"""North America""" +2024-12-21,68221,3321,"[\""Phone\"", \""Laptop\""]",3062.48,{},227824,1,"""Europe""" +2024-09-24,68222,7759,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4217.45,"{\""promo\"": \""13%\""}",141769,0,"""Asia""" +2024-05-06,68223,4901,"[\""Wireless Mouse\"", \""Laptop\""]",1898.66,"{\""seasonal\"": \""11%\""}",161618,0,"""North America""" +2024-12-24,68224,5101,"[\""Monitor\"", \""Headphones\""]",2261.73,{},195957,0,"""Europe""" +2024-03-29,68225,5820,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1699.48,{},28984,1,"""Africa""" +2023-06-01,68226,6434,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",798.57,{},43028,1,"""Europe""" +2023-05-20,68227,4808,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3909.45,{},260617,0,"""South America""" +2024-11-18,68228,8008,"[\""Monitor\""]",448.17,"{\""promo\"": \""11%\""}",118160,0,"""Asia""" +2023-07-28,68229,2222,"[\""Tablet\"", \""Laptop\""]",4683.5,"{\"": \""18%\""}",224864,1,"""South America""" +2023-11-25,68230,8837,"[\""Tablet\"", \""Headphones\""]",3496.61,{},162189,0,"""South America""" +2024-05-10,68231,8998,"[\""Keyboard\""]",4785.45,{},187688,0,"""Africa""" +2024-07-11,68232,8153,"[\""Monitor\"", \""Tablet\""]",4856.78,{},90002,1,"""Asia""" +2023-06-14,68233,2015,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3772.04,"{\""loyalty\"": \""23%\""}",182697,1,"""Asia""" +2023-06-08,68234,6,"[\""Laptop\""]",2231.24,"{\""loyalty\"": \""9%\""}",287144,0,"""Asia""" +2024-07-24,68235,7170,"[\""Headphones\""]",4371.08,"{\""promo\"": \""27%\""}",48887,1,"""North America""" +2024-09-22,68236,7481,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3203.03,"{\""loyalty\"": \""10%\""}",65251,0,"""Europe""" +2023-03-20,68237,6438,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4265.53,"{\""seasonal\"": \""14%\""}",31428,0,"""North America""" +2023-02-14,68238,8577,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1255.56,{},265894,0,"""South America""" +2023-01-31,68239,7485,"[\""Tablet\"", \""Charger\""]",1789.87,"{\""seasonal\"": \""29%\""}",94334,1,"""Asia""" +2024-06-04,68240,9554,"[\""Keyboard\"", \""Monitor\""]",2420.25,"{\""loyalty\"": \""10%\""}",253976,0,"""Africa""" +2023-11-01,68241,3678,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1811.26,"{\""loyalty\"": \""6%\""}",92878,1,"""Africa""" +2024-01-01,68242,9062,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1019.43,"{\""seasonal\"": \""13%\""}",141280,1,"""North America""" +2023-10-11,68243,711,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2779.58,{},275767,0,"""Africa""" +2023-09-12,68244,1495,"[\""Keyboard\""]",186.7,"{\""promo\"": \""14%\""}",93937,0,"""South America""" +2024-05-05,68245,3634,"[\""Tablet\"", \""Charger\""]",3497.19,{},25019,0,"""South America""" +2023-02-13,68246,2763,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2556.76,"{\"": \""18%\""}",269761,1,"""Asia""" +2023-02-24,68247,9522,"[\""Tablet\""]",3573.78,"{\""loyalty\"": \""8%\""}",267705,1,"""Africa""" +2024-04-25,68248,2068,"[\""Tablet\""]",645.87,"{\""promo\"": \""25%\""}",157178,0,"""South America""" +2023-01-16,68249,2154,"[\""Headphones\"", \""Keyboard\""]",4706.71,{},144544,0,"""North America""" +2023-08-22,68250,502,"[\""Wireless Mouse\"", \""Charger\""]",3318.1,"{\""seasonal\"": \""25%\""}",204611,1,"""South America""" +2023-12-18,68251,8104,"[\""Headphones\"", \""Laptop\""]",999.78,{},255544,0,"""South America""" +2023-04-16,68252,7294,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4480.38,"{\""seasonal\"": \""17%\""}",135238,0,"""Africa""" +2023-02-13,68253,9202,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4064.47,"{\""promo\"": \""21%\""}",72485,0,"""Europe""" +2023-03-06,68254,8362,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2361.82,{},22501,1,"""Africa""" +2024-11-13,68255,4795,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2924.82,{},99531,1,"""South America""" +2024-11-26,68256,4527,"[\""Headphones\""]",4488.17,{},64007,0,"""Asia""" +2023-07-11,68257,875,"[\""Wireless Mouse\""]",4903.29,"{\""loyalty\"": \""15%\""}",289142,1,"""Africa""" +2024-07-12,68258,2843,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",424.29,{},34166,1,"""Europe""" +2023-08-08,68259,5497,"[\""Monitor\"", \""Phone\""]",3323.46,{},223248,0,"""North America""" +2023-06-04,68260,5341,"[\""Laptop\""]",1101.6,{},276280,0,"""North America""" +2023-03-24,68261,2772,"[\""Charger\"", \""Monitor\""]",155.54,"{\""seasonal\"": \""15%\""}",14701,0,"""Asia""" +2024-08-16,68262,2502,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",189.43,{},52159,0,"""Africa""" +2024-11-20,68263,2676,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1464.04,"{\"": \""24%\""}",78639,1,"""North America""" +2024-06-27,68264,3647,"[\""Tablet\"", \""Charger\""]",4976.51,"{\""loyalty\"": \""22%\""}",3550,1,"""Europe""" +2024-07-21,68265,5,"[\""Tablet\""]",2473.12,{},247456,1,"""Africa""" +2024-03-02,68266,5220,"[\""Tablet\"", \""Wireless Mouse\""]",3118.21,{},260194,0,"""Europe""" +2024-10-18,68267,7098,"[\""Wireless Mouse\""]",364.68,"{\""promo\"": \""22%\""}",198827,0,"""North America""" +2023-09-14,68268,3094,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",573.07,"{\""promo\"": \""25%\""}",6772,0,"""North America""" +2023-11-02,68269,8589,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3499.04,{},131015,1,"""South America""" +2024-06-10,68270,5189,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1975.46,"{\""seasonal\"": \""23%\""}",157579,0,"""Africa""" +2023-09-15,68271,6316,"[\""Monitor\""]",801.59,"{\""loyalty\"": \""15%\""}",148183,1,"""Europe""" +2023-02-03,68272,3863,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1840.95,{},198837,1,"""Africa""" +2024-01-17,68273,4082,"[\""Monitor\""]",2367.32,{},298253,1,"""Asia""" +2024-05-10,68274,5798,"[\""Laptop\"", \""Headphones\""]",1726.31,"{\"": \""24%\""}",93942,1,"""Europe""" +2024-07-20,68275,561,"[\""Monitor\""]",3399.34,{},143066,0,"""Europe""" +2023-09-09,68276,9618,"[\""Headphones\""]",889.21,{},45816,1,"""Asia""" +2023-10-15,68277,9086,"[\""Keyboard\"", \""Charger\""]",2274.28,{},268182,0,"""Africa""" +2023-09-04,68278,761,"[\""Charger\""]",3646.4,"{\""seasonal\"": \""12%\""}",181801,0,"""Africa""" +2023-08-28,68279,7414,"[\""Charger\""]",1883.04,"{\""seasonal\"": \""5%\""}",76241,0,"""Africa""" +2024-10-22,68280,279,"[\""Keyboard\"", \""Laptop\""]",4078.65,{},157851,0,"""Asia""" +2023-10-15,68281,2549,"[\""Phone\"", \""Wireless Mouse\""]",952.03,{},146329,1,"""North America""" +2024-08-21,68282,9733,"[\""Keyboard\"", \""Monitor\""]",4035.92,{},58473,1,"""Europe""" +2023-08-12,68283,4023,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3283.81,"{\"": \""8%\""}",263224,0,"""Africa""" +2023-09-18,68284,7592,"[\""Monitor\"", \""Phone\"", \""Charger\""]",448.88,"{\""loyalty\"": \""11%\""}",177979,0,"""South America""" +2024-07-27,68285,3721,"[\""Tablet\""]",78.16,"{\""loyalty\"": \""19%\""}",296935,0,"""Africa""" +2024-02-08,68286,9480,"[\""Phone\"", \""Charger\""]",1239.34,"{\""promo\"": \""6%\""}",113991,0,"""Europe""" +2023-02-01,68287,5338,"[\""Charger\""]",614.34,"{\""promo\"": \""16%\""}",198306,1,"""North America""" +2023-01-26,68288,903,"[\""Monitor\"", \""Headphones\""]",4586.05,"{\"": \""10%\""}",99604,1,"""South America""" +2024-02-20,68289,72,"[\""Monitor\""]",550.26,{},180412,0,"""North America""" +2024-10-07,68290,4480,"[\""Tablet\""]",4103.83,"{\""loyalty\"": \""9%\""}",206998,1,"""North America""" +2023-06-03,68291,1818,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",829.69,"{\""seasonal\"": \""10%\""}",233514,1,"""South America""" +2024-06-28,68292,8053,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3047.01,{},146447,1,"""North America""" +2024-12-10,68293,6222,"[\""Headphones\""]",3131.5,{},146807,1,"""South America""" +2024-11-24,68294,3700,"[\""Tablet\"", \""Keyboard\""]",2502.62,"{\""loyalty\"": \""24%\""}",49144,0,"""Asia""" +2024-10-08,68295,8324,"[\""Charger\"", \""Headphones\""]",665.78,{},246050,0,"""Europe""" +2024-04-08,68296,770,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3666.97,{},84700,1,"""Asia""" +2023-02-28,68297,9009,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",424.54,{},276753,0,"""Europe""" +2024-11-24,68298,780,"[\""Laptop\"", \""Phone\""]",2550.48,"{\""seasonal\"": \""8%\""}",74220,1,"""Africa""" +2024-05-30,68299,3584,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",815.27,"{\""seasonal\"": \""14%\""}",27768,0,"""South America""" +2024-12-25,68300,4997,"[\""Charger\""]",1379.76,{},18063,0,"""North America""" +2023-11-12,68301,4811,"[\""Charger\"", \""Tablet\""]",4074.97,"{\""seasonal\"": \""11%\""}",49698,1,"""Africa""" +2023-07-22,68302,9418,"[\""Monitor\"", \""Tablet\""]",2934.56,"{\"": \""17%\""}",228418,1,"""Asia""" +2024-11-20,68303,9807,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3274.11,"{\""promo\"": \""20%\""}",249993,1,"""Europe""" +2024-03-06,68304,7660,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4708.44,{},83822,1,"""Asia""" +2024-10-01,68305,4255,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",143.9,{},129346,0,"""Africa""" +2024-04-03,68306,6060,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",375.38,{},29691,0,"""North America""" +2023-11-08,68307,7994,"[\""Phone\""]",1614.63,"{\"": \""29%\""}",231367,0,"""Asia""" +2024-10-03,68308,5090,"[\""Charger\"", \""Laptop\""]",4252.33,{},4845,0,"""Asia""" +2024-04-11,68309,7502,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1699.99,"{\""loyalty\"": \""24%\""}",265930,0,"""North America""" +2024-07-20,68310,5255,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1369.51,"{\"": \""8%\""}",193780,0,"""Africa""" +2024-01-27,68311,2528,"[\""Phone\""]",3305.09,"{\""promo\"": \""7%\""}",96690,0,"""Asia""" +2023-07-18,68312,5801,"[\""Tablet\""]",3159.45,"{\"": \""9%\""}",282496,0,"""Europe""" +2024-10-16,68313,3412,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3500.14,"{\""promo\"": \""6%\""}",81904,0,"""North America""" +2024-08-29,68314,8993,"[\""Monitor\""]",3854.27,{},96314,1,"""North America""" +2023-02-21,68315,4618,"[\""Keyboard\"", \""Tablet\""]",192.3,{},243106,0,"""Europe""" +2024-09-15,68316,813,"[\""Wireless Mouse\"", \""Keyboard\""]",4198.82,{},113833,1,"""North America""" +2024-10-20,68317,7894,"[\""Headphones\""]",1965.37,{},293760,1,"""Africa""" +2023-01-18,68318,1413,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",157.67,{},238291,1,"""Asia""" +2024-04-19,68319,7029,"[\""Monitor\""]",2483.11,"{\"": \""8%\""}",45818,0,"""Africa""" +2024-04-04,68320,8927,"[\""Charger\""]",816.94,"{\""loyalty\"": \""13%\""}",49295,0,"""South America""" +2024-10-04,68321,945,"[\""Headphones\""]",581.4,{},232166,1,"""South America""" +2023-06-05,68322,4691,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3536.23,"{\""promo\"": \""13%\""}",245027,1,"""Asia""" +2023-04-30,68323,5083,"[\""Tablet\""]",650.61,{},23798,1,"""Asia""" +2023-11-30,68324,8020,"[\""Headphones\"", \""Tablet\""]",934.71,{},269593,1,"""Africa""" +2024-12-27,68325,2110,"[\""Tablet\""]",2198.56,"{\"": \""20%\""}",164339,1,"""North America""" +2024-12-11,68326,4196,"[\""Phone\""]",2216.14,{},195496,1,"""Asia""" +2024-08-16,68327,7317,"[\""Charger\"", \""Keyboard\""]",1435.62,"{\"": \""15%\""}",46472,0,"""South America""" +2024-05-22,68328,4571,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3226.17,{},218228,1,"""Africa""" +2023-07-20,68329,1882,"[\""Laptop\""]",2313.21,{},161358,1,"""South America""" +2023-06-04,68330,4726,"[\""Wireless Mouse\""]",2795.85,{},219632,1,"""Africa""" +2024-10-02,68331,165,"[\""Charger\""]",2951.61,"{\""seasonal\"": \""25%\""}",221146,0,"""South America""" +2024-03-16,68332,6881,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4279.28,"{\""loyalty\"": \""17%\""}",79893,0,"""South America""" +2023-08-28,68333,8436,"[\""Phone\"", \""Headphones\""]",2801.28,"{\""loyalty\"": \""7%\""}",172193,0,"""North America""" +2024-03-22,68334,9198,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2403.72,"{\""seasonal\"": \""14%\""}",209078,0,"""Asia""" +2023-05-29,68335,7628,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3908.03,{},182471,0,"""North America""" +2024-07-31,68336,5039,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4606.99,"{\"": \""25%\""}",236331,0,"""North America""" +2023-06-07,68337,4886,"[\""Tablet\""]",3034.23,{},61250,0,"""Europe""" +2023-10-02,68338,7003,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1383.23,{},118350,1,"""South America""" +2023-12-09,68339,2629,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1898.16,"{\""loyalty\"": \""23%\""}",284989,1,"""Africa""" +2023-11-06,68340,5615,"[\""Monitor\"", \""Keyboard\""]",2208.02,{},75050,0,"""North America""" +2023-03-03,68341,1176,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3797.74,{},47897,0,"""Europe""" +2023-10-02,68342,4379,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2513.5,"{\""promo\"": \""21%\""}",96622,1,"""Asia""" +2023-03-18,68343,5194,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",386.64,"{\"": \""28%\""}",81951,0,"""Europe""" +2024-11-24,68344,5170,"[\""Laptop\"", \""Headphones\""]",4461.25,{},245836,0,"""Africa""" +2023-07-05,68345,790,"[\""Headphones\"", \""Phone\""]",3354.89,"{\""loyalty\"": \""18%\""}",118254,0,"""Africa""" +2023-11-16,68346,5912,"[\""Headphones\"", \""Charger\""]",4471.26,{},263173,1,"""North America""" +2023-05-27,68347,2652,"[\""Keyboard\"", \""Charger\""]",4893.33,"{\""seasonal\"": \""14%\""}",232933,0,"""North America""" +2023-05-23,68348,2220,"[\""Tablet\""]",4593.04,{},295333,0,"""South America""" +2024-08-18,68349,4866,"[\""Tablet\""]",3380.58,{},146648,1,"""Europe""" +2023-12-10,68350,950,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1397.82,{},63534,0,"""South America""" +2023-05-12,68351,4958,"[\""Laptop\"", \""Monitor\""]",3589.41,{},278787,1,"""North America""" +2024-03-13,68352,1642,"[\""Wireless Mouse\""]",4117.67,"{\""promo\"": \""25%\""}",259512,0,"""Europe""" +2024-10-13,68353,8753,"[\""Keyboard\"", \""Phone\""]",545.93,"{\""loyalty\"": \""30%\""}",182610,1,"""Africa""" +2023-07-04,68354,807,"[\""Phone\"", \""Monitor\""]",4529.62,"{\""seasonal\"": \""20%\""}",198699,1,"""North America""" +2023-09-12,68355,4452,"[\""Charger\"", \""Monitor\""]",1571.12,"{\""loyalty\"": \""17%\""}",244955,0,"""Europe""" +2023-10-27,68356,4091,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1474.56,"{\"": \""18%\""}",220229,0,"""Africa""" +2024-09-11,68357,6944,"[\""Tablet\""]",3637.25,{},187677,0,"""Asia""" +2023-09-29,68358,8421,"[\""Phone\"", \""Keyboard\""]",1102.49,"{\"": \""11%\""}",44322,0,"""Africa""" +2024-09-14,68359,503,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2906.73,"{\""promo\"": \""24%\""}",209184,1,"""North America""" +2024-11-03,68360,8704,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3240.75,"{\""promo\"": \""12%\""}",139955,0,"""South America""" +2023-01-11,68361,114,"[\""Tablet\"", \""Wireless Mouse\""]",1983.06,{},12911,1,"""Asia""" +2024-07-03,68362,5065,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4639.58,"{\""loyalty\"": \""21%\""}",237147,0,"""North America""" +2024-02-02,68363,7265,"[\""Monitor\""]",2038.96,"{\"": \""23%\""}",162232,0,"""Europe""" +2023-03-13,68364,432,"[\""Phone\"", \""Headphones\""]",607.1,{},59869,1,"""Europe""" +2024-02-26,68365,9713,"[\""Laptop\""]",1907.49,{},281339,1,"""South America""" +2024-08-04,68366,8014,"[\""Keyboard\""]",906.85,{},30421,1,"""North America""" +2024-10-20,68367,4614,"[\""Phone\"", \""Wireless Mouse\""]",3966.08,"{\""promo\"": \""8%\""}",128717,0,"""North America""" +2024-02-06,68368,9435,"[\""Keyboard\""]",1226.45,{},85550,1,"""North America""" +2024-04-29,68369,8107,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3792.68,{},110947,1,"""Europe""" +2024-10-15,68370,4583,"[\""Tablet\"", \""Phone\""]",2816.13,"{\""loyalty\"": \""16%\""}",56175,1,"""Asia""" +2024-05-09,68371,23,"[\""Charger\"", \""Laptop\""]",582.69,{},148393,1,"""Europe""" +2023-10-19,68372,1483,"[\""Headphones\"", \""Wireless Mouse\""]",3129.28,{},187229,0,"""Africa""" +2023-11-30,68373,8854,"[\""Headphones\""]",4363.16,"{\""promo\"": \""23%\""}",21783,1,"""Asia""" +2023-11-26,68374,8385,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",964.07,"{\""loyalty\"": \""8%\""}",226515,1,"""Asia""" +2023-03-08,68375,6335,"[\""Keyboard\"", \""Phone\""]",1835.96,"{\""loyalty\"": \""7%\""}",138644,1,"""South America""" +2023-09-04,68376,2061,"[\""Phone\""]",2540.02,{},33891,0,"""North America""" +2023-11-22,68377,5397,"[\""Wireless Mouse\"", \""Keyboard\""]",4580.64,{},48419,1,"""North America""" +2024-12-23,68378,9811,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2511.6,"{\""loyalty\"": \""12%\""}",100557,0,"""Europe""" +2023-11-07,68379,8102,"[\""Headphones\"", \""Keyboard\""]",4276.73,{},253042,0,"""Africa""" +2023-11-23,68380,1733,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4651.21,"{\""promo\"": \""8%\""}",258609,0,"""Asia""" +2023-10-21,68381,2003,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4003.77,"{\""seasonal\"": \""8%\""}",35753,0,"""Europe""" +2023-06-02,68382,2691,"[\""Phone\"", \""Wireless Mouse\""]",2805.01,{},255875,1,"""Europe""" +2023-03-10,68383,4171,"[\""Phone\""]",1966.21,"{\""seasonal\"": \""6%\""}",149669,0,"""Africa""" +2023-05-24,68384,8815,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3165.52,{},218657,0,"""Europe""" +2024-11-15,68385,1808,"[\""Headphones\"", \""Phone\""]",2117.45,"{\"": \""5%\""}",285464,0,"""Africa""" +2023-04-20,68386,7634,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3070.59,{},298780,1,"""Africa""" +2024-12-14,68387,9940,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1756.1,{},241282,1,"""Asia""" +2024-11-13,68388,7022,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3650.25,{},87942,0,"""South America""" +2024-08-23,68389,3887,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1900.4,{},196532,0,"""Europe""" +2023-02-24,68390,5126,"[\""Headphones\""]",4717.81,{},215127,0,"""Europe""" +2023-04-17,68391,4239,"[\""Wireless Mouse\""]",1703.5,"{\"": \""26%\""}",66161,0,"""Europe""" +2024-12-25,68392,437,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",265.94,"{\""promo\"": \""27%\""}",146572,0,"""Europe""" +2023-12-21,68393,5207,"[\""Monitor\"", \""Tablet\""]",566.76,{},106271,0,"""North America""" +2023-07-15,68394,1140,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3617.81,"{\"": \""22%\""}",217671,0,"""Asia""" +2024-12-11,68395,6737,"[\""Phone\""]",2127.99,{},148122,0,"""Asia""" +2023-03-20,68396,8087,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1688.57,"{\""promo\"": \""19%\""}",131726,1,"""Africa""" +2023-11-12,68397,2081,"[\""Wireless Mouse\"", \""Keyboard\""]",2645.37,{},192385,0,"""North America""" +2023-09-06,68398,9040,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1468.42,{},71191,1,"""Africa""" +2024-01-01,68399,9030,"[\""Charger\""]",2936.27,{},10885,0,"""Asia""" +2023-03-01,68400,9472,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3193.19,{},226344,0,"""South America""" +2024-10-02,68401,9789,"[\""Wireless Mouse\""]",1946.21,{},227105,0,"""South America""" +2023-04-11,68402,8724,"[\""Keyboard\""]",1813.34,"{\""loyalty\"": \""6%\""}",241288,0,"""South America""" +2024-08-09,68403,9410,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1941.4,{},203523,1,"""Africa""" +2023-06-29,68404,8355,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3128.05,{},294297,1,"""South America""" +2023-02-15,68405,6643,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",358.12,"{\""loyalty\"": \""22%\""}",113750,0,"""South America""" +2023-04-15,68406,9591,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2513.56,"{\""loyalty\"": \""20%\""}",96466,0,"""Asia""" +2023-01-08,68407,8160,"[\""Phone\"", \""Headphones\""]",4310.76,{},33254,1,"""North America""" +2023-05-26,68408,693,"[\""Tablet\"", \""Keyboard\""]",4047.39,{},273177,0,"""Africa""" +2023-01-06,68409,7257,"[\""Monitor\"", \""Keyboard\""]",2480.05,"{\""promo\"": \""20%\""}",63534,0,"""Europe""" +2024-05-07,68410,3230,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4341.04,"{\""loyalty\"": \""19%\""}",14058,1,"""Africa""" +2024-07-17,68411,5385,"[\""Charger\"", \""Wireless Mouse\""]",3563.58,"{\""promo\"": \""10%\""}",190410,1,"""South America""" +2023-04-05,68412,4575,"[\""Tablet\"", \""Charger\""]",2605.11,{},136974,1,"""South America""" +2023-08-03,68413,5469,"[\""Phone\"", \""Tablet\""]",4217.05,"{\""loyalty\"": \""14%\""}",151267,1,"""Africa""" +2023-02-19,68414,6093,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3278.41,"{\"": \""8%\""}",8960,1,"""Europe""" +2023-06-24,68415,6086,"[\""Laptop\"", \""Wireless Mouse\""]",4816.02,"{\"": \""15%\""}",205213,0,"""North America""" +2024-09-26,68416,1686,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1709.37,"{\""promo\"": \""6%\""}",178910,0,"""Africa""" +2024-09-28,68417,4388,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2106.79,{},295418,0,"""Asia""" +2023-09-08,68418,6993,"[\""Headphones\"", \""Phone\""]",4535.51,"{\""promo\"": \""15%\""}",151116,0,"""South America""" +2024-08-10,68419,4800,"[\""Keyboard\"", \""Charger\""]",3463.68,"{\"": \""16%\""}",290043,0,"""Africa""" +2024-06-18,68420,6666,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4728.24,"{\"": \""7%\""}",214562,1,"""North America""" +2024-10-06,68421,4917,"[\""Keyboard\"", \""Charger\""]",202.84,{},255802,1,"""Europe""" +2024-03-25,68422,2498,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",117.63,"{\""loyalty\"": \""10%\""}",145453,1,"""South America""" +2024-09-12,68423,2428,"[\""Phone\""]",4086.47,"{\""promo\"": \""15%\""}",244520,0,"""Africa""" +2023-05-20,68424,6278,"[\""Tablet\"", \""Wireless Mouse\""]",4189.82,"{\"": \""16%\""}",258101,0,"""Africa""" +2024-07-23,68425,3701,"[\""Headphones\"", \""Laptop\""]",677.98,{},76490,1,"""Asia""" +2023-10-30,68426,6572,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3169.13,"{\""promo\"": \""17%\""}",176559,0,"""North America""" +2023-11-28,68427,764,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",999.25,"{\""loyalty\"": \""8%\""}",68500,1,"""North America""" +2024-01-10,68428,2817,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3565.73,"{\""promo\"": \""16%\""}",134483,1,"""Europe""" +2023-10-27,68429,4728,"[\""Wireless Mouse\""]",2042.66,"{\"": \""9%\""}",277124,0,"""Europe""" +2024-06-10,68430,2368,"[\""Headphones\""]",2603.93,"{\"": \""27%\""}",107909,0,"""Africa""" +2023-09-22,68431,5697,"[\""Laptop\"", \""Wireless Mouse\""]",4902.25,{},199478,0,"""Asia""" +2024-08-04,68432,1035,"[\""Charger\""]",2089.37,"{\""seasonal\"": \""17%\""}",99828,0,"""Europe""" +2023-03-22,68433,6109,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1608.76,{},94252,0,"""Asia""" +2023-07-17,68434,4667,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4898.6,"{\""promo\"": \""11%\""}",282911,0,"""Europe""" +2024-09-22,68435,3678,"[\""Headphones\"", \""Charger\""]",4847.27,{},96586,1,"""Europe""" +2023-08-10,68436,4367,"[\""Laptop\""]",4332.16,"{\""seasonal\"": \""17%\""}",298783,0,"""North America""" +2023-05-29,68437,5403,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3638.38,"{\"": \""6%\""}",255377,1,"""Asia""" +2024-09-21,68438,6956,"[\""Keyboard\""]",3318.11,{},112127,1,"""North America""" +2024-04-08,68439,6121,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2413.08,"{\""promo\"": \""20%\""}",194154,0,"""South America""" +2023-02-07,68440,3161,"[\""Laptop\""]",4120.14,"{\"": \""25%\""}",46082,0,"""Africa""" +2024-06-02,68441,4534,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2195.14,{},191707,1,"""Africa""" +2023-08-07,68442,6719,"[\""Charger\"", \""Wireless Mouse\""]",4326.67,{},151964,1,"""South America""" +2024-07-19,68443,6879,"[\""Headphones\"", \""Laptop\""]",251.07,"{\""seasonal\"": \""9%\""}",261420,0,"""North America""" +2024-06-22,68444,438,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1549.92,"{\""seasonal\"": \""11%\""}",92120,1,"""Africa""" +2024-03-01,68445,2460,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1750.56,"{\""loyalty\"": \""28%\""}",153436,0,"""South America""" +2023-03-08,68446,3743,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4748.98,"{\""promo\"": \""13%\""}",265720,1,"""North America""" +2024-08-05,68447,9444,"[\""Keyboard\"", \""Tablet\""]",3810.74,"{\""loyalty\"": \""22%\""}",13017,1,"""Asia""" +2023-10-30,68448,7180,"[\""Tablet\"", \""Charger\""]",349.22,"{\""promo\"": \""14%\""}",121785,0,"""Africa""" +2024-08-01,68449,4308,"[\""Laptop\""]",4946.38,{},76770,1,"""Africa""" +2023-01-28,68450,8108,"[\""Laptop\"", \""Monitor\""]",3720.74,{},142266,1,"""Asia""" +2024-06-20,68451,203,"[\""Keyboard\""]",2017.55,"{\"": \""8%\""}",116654,1,"""Africa""" +2024-10-03,68452,9009,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4342.51,"{\""seasonal\"": \""25%\""}",89182,1,"""Europe""" +2024-07-10,68453,6511,"[\""Wireless Mouse\""]",1456.57,{},198751,0,"""Europe""" +2024-10-15,68454,7611,"[\""Headphones\""]",208.76,"{\""promo\"": \""26%\""}",58940,1,"""Asia""" +2023-04-15,68455,9728,"[\""Charger\"", \""Tablet\""]",4770.99,{},76662,1,"""Asia""" +2024-11-10,68456,6390,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",751.35,"{\""promo\"": \""15%\""}",90039,1,"""Europe""" +2024-09-13,68457,6211,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2405.97,{},196922,1,"""Asia""" +2024-03-06,68458,5247,"[\""Laptop\"", \""Monitor\""]",2383.07,{},96458,1,"""North America""" +2023-02-16,68459,4863,"[\""Laptop\""]",3847.11,{},293716,1,"""South America""" +2024-03-05,68460,5076,"[\""Keyboard\""]",176.97,{},110933,0,"""North America""" +2024-10-04,68461,4437,"[\""Monitor\""]",1281.85,{},153783,1,"""North America""" +2024-03-28,68462,3624,"[\""Laptop\"", \""Phone\""]",3070.03,{},20692,0,"""Europe""" +2024-01-05,68463,8086,"[\""Tablet\""]",183.83,"{\""loyalty\"": \""29%\""}",218990,0,"""Europe""" +2023-09-19,68464,2512,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2188.6,"{\"": \""20%\""}",191800,0,"""Africa""" +2024-12-17,68465,1465,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",304.29,{},227248,1,"""Asia""" +2023-02-24,68466,9717,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1540.41,"{\""loyalty\"": \""24%\""}",156627,1,"""North America""" +2023-11-26,68467,6740,"[\""Charger\""]",722.73,"{\"": \""12%\""}",127237,0,"""Asia""" +2023-02-19,68468,4308,"[\""Headphones\""]",465.35,{},76081,1,"""Asia""" +2023-08-27,68469,1794,"[\""Monitor\"", \""Phone\""]",4237.93,{},151160,1,"""South America""" +2023-10-18,68470,5608,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4549.16,"{\"": \""21%\""}",4152,0,"""Africa""" +2024-02-17,68471,1300,"[\""Charger\""]",658.52,{},38418,0,"""North America""" +2024-01-02,68472,6851,"[\""Phone\"", \""Monitor\""]",4480.82,"{\""promo\"": \""17%\""}",153262,1,"""Asia""" +2023-05-11,68473,9086,"[\""Phone\"", \""Wireless Mouse\""]",3999.11,"{\""promo\"": \""5%\""}",185944,1,"""Asia""" +2024-09-11,68474,7236,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1817.3,{},218476,1,"""Asia""" +2023-10-30,68475,7218,"[\""Tablet\"", \""Monitor\""]",2615.25,"{\""loyalty\"": \""6%\""}",225567,0,"""Africa""" +2023-03-18,68476,2530,"[\""Headphones\"", \""Wireless Mouse\""]",3037.19,"{\"": \""8%\""}",55389,1,"""Europe""" +2024-07-14,68477,6246,"[\""Monitor\""]",3937.5,"{\""seasonal\"": \""7%\""}",189532,0,"""Asia""" +2024-06-20,68478,4018,"[\""Monitor\"", \""Tablet\""]",3688.08,"{\""loyalty\"": \""21%\""}",286091,1,"""Africa""" +2023-09-22,68479,806,"[\""Laptop\""]",779.16,"{\""promo\"": \""13%\""}",77533,0,"""North America""" +2024-01-05,68480,2218,"[\""Keyboard\""]",1973.6,"{\""seasonal\"": \""27%\""}",74056,0,"""Europe""" +2024-05-12,68481,4006,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3989.85,{},26136,1,"""North America""" +2023-05-31,68482,4479,"[\""Phone\"", \""Tablet\""]",266.16,{},139599,1,"""Africa""" +2023-12-22,68483,3189,"[\""Tablet\"", \""Laptop\""]",749.74,"{\""loyalty\"": \""19%\""}",7243,1,"""North America""" +2023-09-12,68484,4929,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",411.83,"{\""promo\"": \""27%\""}",56820,0,"""Africa""" +2023-07-29,68485,7713,"[\""Headphones\"", \""Phone\""]",2614.79,"{\""loyalty\"": \""23%\""}",98553,1,"""Europe""" +2023-06-17,68486,8166,"[\""Laptop\""]",524.12,"{\"": \""16%\""}",200207,1,"""Africa""" +2024-11-24,68487,472,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3986.33,"{\"": \""20%\""}",212080,0,"""North America""" +2024-12-27,68488,4481,"[\""Keyboard\""]",737.48,"{\"": \""11%\""}",194570,1,"""North America""" +2024-02-07,68489,9522,"[\""Monitor\"", \""Charger\""]",3306.95,"{\"": \""23%\""}",261659,1,"""Europe""" +2023-04-07,68490,753,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4240.77,{},260309,0,"""Africa""" +2024-07-19,68491,7587,"[\""Laptop\""]",3848.71,{},228130,1,"""Africa""" +2024-09-04,68492,3266,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4296.25,"{\""loyalty\"": \""30%\""}",117324,0,"""Europe""" +2023-03-28,68493,7067,"[\""Keyboard\"", \""Headphones\""]",416.27,{},207485,0,"""Africa""" +2023-10-23,68494,1910,"[\""Wireless Mouse\"", \""Laptop\""]",4872.75,"{\""loyalty\"": \""17%\""}",157724,0,"""North America""" +2023-09-02,68495,3862,"[\""Phone\"", \""Keyboard\""]",4204.17,"{\""seasonal\"": \""22%\""}",223220,1,"""Europe""" +2023-11-08,68496,9154,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3447.34,{},38686,0,"""North America""" +2023-01-17,68497,9177,"[\""Charger\"", \""Keyboard\""]",3920.1,{},17333,1,"""North America""" +2023-09-19,68498,8053,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",455.94,{},35904,1,"""Asia""" +2024-10-22,68499,1525,"[\""Wireless Mouse\""]",2774.33,{},94979,0,"""South America""" +2024-07-03,68500,357,"[\""Laptop\""]",2548.09,"{\""promo\"": \""13%\""}",158411,1,"""North America""" +2024-01-22,68501,1035,"[\""Monitor\"", \""Wireless Mouse\""]",1589.4,"{\""promo\"": \""14%\""}",144715,0,"""Europe""" +2023-04-26,68502,3838,"[\""Laptop\"", \""Phone\""]",3483.97,{},18042,0,"""Africa""" +2024-08-08,68503,3648,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",188.42,{},183827,1,"""Europe""" +2024-06-28,68504,3143,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2988.89,{},133762,0,"""Africa""" +2023-12-05,68505,7948,"[\""Laptop\""]",991.83,{},221127,0,"""Europe""" +2023-11-07,68506,2730,"[\""Tablet\""]",3887.0,{},180008,0,"""South America""" +2024-12-04,68507,9223,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",359.08,"{\""loyalty\"": \""19%\""}",235324,1,"""Africa""" +2024-12-08,68508,8740,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1877.38,{},142246,0,"""Africa""" +2023-10-19,68509,6200,"[\""Charger\"", \""Laptop\""]",4660.82,"{\"": \""6%\""}",16103,1,"""Asia""" +2024-11-07,68510,9382,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3430.09,{},139680,1,"""Africa""" +2024-06-20,68511,4854,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",788.67,{},288541,0,"""North America""" +2023-04-27,68512,3793,"[\""Laptop\"", \""Phone\""]",2612.78,"{\""promo\"": \""15%\""}",102565,1,"""Africa""" +2023-11-23,68513,5513,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3085.0,{},107729,0,"""Europe""" +2023-10-24,68514,6104,"[\""Charger\"", \""Phone\""]",4062.66,"{\""promo\"": \""23%\""}",164168,1,"""Africa""" +2024-07-12,68515,1816,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1404.68,{},116093,1,"""North America""" +2023-08-26,68516,7239,"[\""Charger\"", \""Laptop\""]",203.13,{},49378,0,"""South America""" +2024-04-25,68517,2495,"[\""Wireless Mouse\"", \""Monitor\""]",3701.49,{},277140,0,"""Africa""" +2023-07-27,68518,741,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3418.5,{},58069,1,"""North America""" +2024-02-23,68519,8763,"[\""Keyboard\""]",311.42,"{\""promo\"": \""22%\""}",197853,0,"""Africa""" +2024-02-27,68520,1645,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2032.5,"{\""promo\"": \""24%\""}",217084,1,"""Europe""" +2023-01-25,68521,7638,"[\""Charger\""]",4021.36,{},168669,1,"""Africa""" +2023-09-04,68522,6205,"[\""Laptop\""]",3298.98,"{\""promo\"": \""12%\""}",242526,1,"""Africa""" +2023-01-01,68523,9280,"[\""Keyboard\""]",3769.79,{},260604,1,"""Europe""" +2024-12-16,68524,3531,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",349.66,{},283182,0,"""South America""" +2023-04-17,68525,963,"[\""Monitor\""]",2708.09,"{\""promo\"": \""14%\""}",37395,1,"""Asia""" +2024-06-22,68526,5698,"[\""Phone\""]",1465.29,"{\""seasonal\"": \""17%\""}",17228,0,"""North America""" +2023-09-28,68527,982,"[\""Tablet\""]",506.52,"{\""loyalty\"": \""12%\""}",90538,0,"""North America""" +2024-02-03,68528,5529,"[\""Keyboard\""]",3911.35,"{\""promo\"": \""6%\""}",14209,1,"""Europe""" +2024-05-20,68529,5265,"[\""Keyboard\"", \""Charger\""]",3232.79,{},5196,0,"""South America""" +2024-04-21,68530,6272,"[\""Headphones\"", \""Laptop\""]",2141.51,{},114317,0,"""Asia""" +2023-09-09,68531,1161,"[\""Wireless Mouse\""]",4173.04,{},30214,1,"""Africa""" +2023-04-26,68532,3851,"[\""Wireless Mouse\"", \""Charger\""]",145.12,"{\""seasonal\"": \""25%\""}",144339,0,"""Africa""" +2023-08-02,68533,6615,"[\""Phone\"", \""Wireless Mouse\""]",2970.46,{},5195,0,"""South America""" +2023-06-10,68534,146,"[\""Wireless Mouse\""]",2590.92,{},213155,0,"""Africa""" +2023-05-04,68535,5094,"[\""Tablet\""]",1071.12,{},170190,1,"""Africa""" +2024-12-08,68536,2822,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",104.47,"{\"": \""15%\""}",244129,1,"""Europe""" +2023-08-18,68537,9423,"[\""Phone\"", \""Tablet\""]",177.16,{},14602,1,"""South America""" +2024-07-31,68538,4964,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4074.35,{},223670,0,"""Europe""" +2024-09-28,68539,1199,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4240.43,"{\"": \""20%\""}",82368,0,"""Africa""" +2024-07-20,68540,9678,"[\""Keyboard\"", \""Tablet\""]",64.93,{},85201,0,"""North America""" +2023-10-25,68541,670,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2967.25,{},116960,0,"""Europe""" +2023-10-22,68542,6031,"[\""Phone\"", \""Laptop\""]",4076.52,{},165400,1,"""South America""" +2023-10-10,68543,9579,"[\""Charger\""]",1062.66,"{\""promo\"": \""15%\""}",224399,0,"""Asia""" +2024-04-18,68544,7946,"[\""Charger\"", \""Phone\"", \""Tablet\""]",952.6,"{\""seasonal\"": \""22%\""}",296076,1,"""Asia""" +2024-04-29,68545,7816,"[\""Phone\""]",778.2,"{\"": \""22%\""}",8474,0,"""Africa""" +2023-09-23,68546,1308,"[\""Monitor\""]",3747.25,{},56612,1,"""Asia""" +2024-09-03,68547,654,"[\""Laptop\""]",2565.88,{},185108,1,"""North America""" +2023-05-19,68548,786,"[\""Tablet\"", \""Monitor\""]",3545.69,"{\""promo\"": \""28%\""}",260747,1,"""Asia""" +2024-07-18,68549,4803,"[\""Phone\""]",3033.89,"{\"": \""21%\""}",58856,0,"""Asia""" +2024-07-08,68550,4337,"[\""Laptop\"", \""Keyboard\""]",2695.33,"{\""promo\"": \""27%\""}",234625,1,"""Asia""" +2023-04-12,68551,2623,"[\""Charger\""]",3789.43,"{\""promo\"": \""22%\""}",147215,0,"""Asia""" +2024-08-25,68552,5050,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4916.78,{},171468,1,"""North America""" +2023-01-10,68553,3638,"[\""Headphones\"", \""Charger\""]",2099.71,"{\""promo\"": \""15%\""}",17505,1,"""North America""" +2024-03-08,68554,5322,"[\""Phone\""]",2831.75,{},187520,1,"""Asia""" +2023-01-21,68555,9266,"[\""Wireless Mouse\"", \""Keyboard\""]",3471.38,{},154552,0,"""South America""" +2023-03-17,68556,4336,"[\""Charger\"", \""Laptop\""]",3011.27,"{\""promo\"": \""10%\""}",226529,1,"""North America""" +2023-01-18,68557,997,"[\""Phone\"", \""Wireless Mouse\""]",3770.69,"{\""loyalty\"": \""27%\""}",129344,0,"""South America""" +2023-09-01,68558,3053,"[\""Charger\""]",2621.87,"{\""seasonal\"": \""26%\""}",215307,1,"""Asia""" +2023-01-11,68559,7320,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",701.11,"{\""seasonal\"": \""20%\""}",214422,0,"""North America""" +2024-07-04,68560,966,"[\""Wireless Mouse\""]",2287.61,{},100582,1,"""Asia""" +2024-06-29,68561,8868,"[\""Tablet\""]",4910.58,"{\""loyalty\"": \""9%\""}",121302,0,"""Asia""" +2023-05-04,68562,6888,"[\""Charger\"", \""Phone\""]",1045.72,"{\""promo\"": \""10%\""}",226932,1,"""South America""" +2024-12-11,68563,8671,"[\""Monitor\""]",233.69,"{\""promo\"": \""30%\""}",94466,1,"""North America""" +2024-12-26,68564,7243,"[\""Keyboard\"", \""Monitor\""]",4821.44,{},244373,1,"""Europe""" +2023-04-30,68565,6438,"[\""Tablet\""]",4383.6,{},193715,1,"""South America""" +2024-08-29,68566,2583,"[\""Tablet\""]",1006.97,"{\"": \""9%\""}",97321,1,"""Europe""" +2024-05-12,68567,7558,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4431.0,{},242712,1,"""Asia""" +2023-04-12,68568,8332,"[\""Laptop\""]",1995.86,"{\""seasonal\"": \""11%\""}",298964,0,"""Asia""" +2023-04-29,68569,2025,"[\""Headphones\""]",2732.28,{},26678,0,"""North America""" +2024-06-25,68570,299,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3230.98,"{\""loyalty\"": \""11%\""}",203420,0,"""South America""" +2023-10-29,68571,7354,"[\""Laptop\""]",1252.39,"{\""promo\"": \""13%\""}",6393,1,"""Europe""" +2023-09-04,68572,3328,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2610.42,"{\""loyalty\"": \""15%\""}",268231,0,"""South America""" +2023-01-27,68573,4880,"[\""Keyboard\"", \""Wireless Mouse\""]",3786.38,"{\"": \""7%\""}",82097,0,"""Asia""" +2024-05-15,68574,4611,"[\""Tablet\"", \""Charger\""]",375.58,"{\""loyalty\"": \""16%\""}",60988,0,"""Asia""" +2023-10-31,68575,1558,"[\""Laptop\"", \""Charger\""]",3021.62,{},213813,1,"""North America""" +2023-10-25,68576,7964,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4763.0,{},297072,0,"""Asia""" +2023-04-05,68577,841,"[\""Keyboard\""]",3834.83,"{\""loyalty\"": \""23%\""}",294165,0,"""Asia""" +2024-06-24,68578,915,"[\""Monitor\""]",3342.76,"{\"": \""27%\""}",187028,0,"""Europe""" +2024-11-05,68579,7078,"[\""Wireless Mouse\"", \""Laptop\""]",4048.5,"{\""seasonal\"": \""20%\""}",48317,0,"""South America""" +2024-11-08,68580,2169,"[\""Monitor\"", \""Charger\""]",2606.55,{},38302,0,"""Asia""" +2024-03-27,68581,1325,"[\""Monitor\""]",1004.87,"{\""promo\"": \""14%\""}",65237,1,"""Europe""" +2023-09-26,68582,8600,"[\""Keyboard\"", \""Phone\""]",1451.98,{},231057,1,"""Africa""" +2023-03-08,68583,4480,"[\""Headphones\""]",1525.67,"{\"": \""7%\""}",49338,1,"""South America""" +2023-10-06,68584,3960,"[\""Headphones\""]",2808.82,"{\"": \""27%\""}",232192,0,"""Africa""" +2023-04-11,68585,8564,"[\""Laptop\""]",2033.9,"{\"": \""30%\""}",127714,1,"""Africa""" +2023-09-01,68586,6654,"[\""Wireless Mouse\""]",144.6,{},129831,0,"""North America""" +2024-10-16,68587,9759,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4262.36,{},112432,0,"""South America""" +2023-03-11,68588,9963,"[\""Tablet\"", \""Headphones\""]",3553.93,"{\""promo\"": \""13%\""}",18102,1,"""North America""" +2024-01-02,68589,2507,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2269.23,{},150248,0,"""South America""" +2023-01-15,68590,7949,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4791.24,{},142661,1,"""Asia""" +2023-12-24,68591,7404,"[\""Tablet\""]",3265.42,"{\"": \""9%\""}",160432,1,"""North America""" +2024-11-15,68592,2218,"[\""Wireless Mouse\"", \""Monitor\""]",540.98,"{\""loyalty\"": \""9%\""}",75809,0,"""Asia""" +2023-01-01,68593,8798,"[\""Keyboard\"", \""Charger\""]",1420.1,{},288868,0,"""Europe""" +2024-02-22,68594,7391,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1152.15,{},212964,1,"""South America""" +2023-07-19,68595,8530,"[\""Phone\"", \""Laptop\""]",1573.01,"{\""promo\"": \""16%\""}",72792,1,"""Africa""" +2023-10-14,68596,2059,"[\""Keyboard\""]",3682.66,{},1164,1,"""Asia""" +2024-07-12,68597,3962,"[\""Monitor\""]",354.13,"{\""promo\"": \""19%\""}",206560,1,"""Asia""" +2024-09-24,68598,495,"[\""Monitor\"", \""Keyboard\""]",1383.22,{},189822,1,"""Africa""" +2023-01-05,68599,2511,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",516.93,{},269322,0,"""Europe""" +2023-09-13,68600,3562,"[\""Keyboard\""]",2643.66,"{\""loyalty\"": \""6%\""}",265375,1,"""Asia""" +2023-03-12,68601,2968,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1589.86,{},27952,0,"""Asia""" +2024-11-30,68602,4070,"[\""Keyboard\""]",2627.99,{},246367,0,"""South America""" +2024-04-15,68603,6878,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4563.72,{},184227,0,"""Europe""" +2024-07-05,68604,5073,"[\""Charger\"", \""Laptop\""]",1427.76,{},298077,0,"""Europe""" +2023-11-20,68605,7777,"[\""Keyboard\""]",3046.6,{},61841,1,"""South America""" +2023-07-30,68606,8793,"[\""Laptop\"", \""Monitor\""]",1968.41,"{\""promo\"": \""8%\""}",287027,1,"""South America""" +2024-06-01,68607,417,"[\""Charger\""]",378.45,{},179594,0,"""Asia""" +2023-08-02,68608,4865,"[\""Phone\"", \""Monitor\""]",1925.38,"{\"": \""19%\""}",265072,1,"""Europe""" +2023-01-20,68609,5067,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3616.14,"{\""promo\"": \""23%\""}",231249,0,"""Asia""" +2023-08-21,68610,9053,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2945.23,{},256261,1,"""Europe""" +2024-02-08,68611,1507,"[\""Laptop\"", \""Phone\""]",3042.61,{},250030,1,"""South America""" +2024-11-13,68612,6145,"[\""Tablet\""]",1360.53,"{\""promo\"": \""5%\""}",255552,1,"""Africa""" +2023-01-09,68613,8864,"[\""Headphones\"", \""Charger\""]",4607.33,"{\"": \""15%\""}",236926,0,"""South America""" +2024-02-14,68614,8664,"[\""Keyboard\"", \""Phone\""]",3718.76,{},29663,0,"""South America""" +2024-06-19,68615,3913,"[\""Headphones\"", \""Monitor\""]",4288.11,{},221858,1,"""South America""" +2023-07-10,68616,8601,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1648.17,{},95061,1,"""Europe""" +2023-11-19,68617,8727,"[\""Laptop\""]",3319.18,{},254378,0,"""Europe""" +2023-01-22,68618,3850,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2268.05,"{\"": \""14%\""}",161248,0,"""South America""" +2023-11-17,68619,6264,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3800.54,{},225087,1,"""South America""" +2024-09-11,68620,3122,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3788.31,"{\"": \""29%\""}",148928,0,"""South America""" +2024-05-16,68621,561,"[\""Charger\""]",554.39,"{\""seasonal\"": \""16%\""}",292678,0,"""Africa""" +2023-02-28,68622,9553,"[\""Charger\"", \""Keyboard\""]",1603.29,{},34537,0,"""Europe""" +2023-08-25,68623,8023,"[\""Tablet\"", \""Phone\""]",3557.39,"{\""loyalty\"": \""27%\""}",49887,0,"""North America""" +2024-09-05,68624,1440,"[\""Laptop\"", \""Tablet\""]",4169.84,"{\""seasonal\"": \""24%\""}",52557,1,"""Europe""" +2024-07-19,68625,2273,"[\""Monitor\"", \""Wireless Mouse\""]",2514.09,"{\""seasonal\"": \""30%\""}",63387,0,"""South America""" +2023-08-06,68626,8177,"[\""Laptop\"", \""Tablet\""]",1403.49,{},24471,1,"""Asia""" +2023-08-19,68627,1380,"[\""Phone\"", \""Charger\""]",2947.46,{},77430,0,"""North America""" +2023-01-04,68628,3046,"[\""Phone\""]",2917.03,"{\"": \""6%\""}",263992,0,"""North America""" +2023-07-04,68629,7143,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4121.01,{},86847,0,"""North America""" +2023-10-15,68630,5829,"[\""Monitor\""]",2898.3,"{\""seasonal\"": \""21%\""}",100917,1,"""Africa""" +2023-04-15,68631,9719,"[\""Keyboard\""]",4293.29,{},299858,1,"""North America""" +2024-02-28,68632,3753,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2002.73,"{\""seasonal\"": \""30%\""}",210624,0,"""South America""" +2023-11-27,68633,2793,"[\""Charger\"", \""Keyboard\""]",229.49,"{\""promo\"": \""22%\""}",150947,1,"""South America""" +2023-11-25,68634,1963,"[\""Headphones\""]",1482.92,{},242631,1,"""Asia""" +2024-10-28,68635,2472,"[\""Monitor\""]",246.96,{},80682,1,"""South America""" +2024-08-16,68636,4265,"[\""Phone\""]",4758.94,"{\""promo\"": \""26%\""}",161386,1,"""South America""" +2023-11-06,68637,7737,"[\""Phone\""]",1548.11,{},259266,0,"""South America""" +2023-10-22,68638,6741,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",964.07,"{\""loyalty\"": \""24%\""}",145455,1,"""Africa""" +2024-04-03,68639,9371,"[\""Wireless Mouse\""]",1142.26,"{\""loyalty\"": \""11%\""}",215822,0,"""South America""" +2023-05-14,68640,6814,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2519.34,{},139648,0,"""Europe""" +2023-02-02,68641,5004,"[\""Monitor\""]",3029.93,{},254544,1,"""Europe""" +2024-04-18,68642,7018,"[\""Headphones\""]",506.32,"{\"": \""24%\""}",285916,0,"""Asia""" +2023-11-07,68643,8649,"[\""Monitor\""]",2443.32,{},103363,0,"""South America""" +2024-04-24,68644,3332,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3239.73,"{\""seasonal\"": \""17%\""}",115143,0,"""Europe""" +2024-07-22,68645,1113,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2227.97,"{\"": \""10%\""}",94774,0,"""Europe""" +2023-06-19,68646,234,"[\""Phone\""]",1207.16,{},13151,1,"""Europe""" +2024-05-13,68647,4539,"[\""Keyboard\""]",3075.96,"{\""seasonal\"": \""9%\""}",186585,0,"""Africa""" +2023-02-05,68648,7883,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",627.63,{},117797,1,"""Africa""" +2024-05-07,68649,8596,"[\""Phone\""]",2069.51,"{\"": \""9%\""}",64087,1,"""North America""" +2023-11-01,68650,5897,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3266.66,{},82640,1,"""Africa""" +2023-05-08,68651,6374,"[\""Tablet\"", \""Monitor\""]",744.05,"{\"": \""14%\""}",186393,0,"""Europe""" +2024-12-17,68652,6265,"[\""Keyboard\"", \""Tablet\""]",4062.88,"{\""seasonal\"": \""13%\""}",20252,0,"""Europe""" +2024-01-06,68653,6507,"[\""Monitor\"", \""Phone\""]",3341.19,{},16976,0,"""North America""" +2023-12-07,68654,6252,"[\""Monitor\"", \""Phone\""]",1888.12,{},90672,0,"""Africa""" +2024-12-17,68655,7148,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",217.77,"{\""seasonal\"": \""21%\""}",149138,1,"""Africa""" +2024-08-14,68656,6132,"[\""Tablet\"", \""Charger\""]",2519.27,{},160767,0,"""North America""" +2023-09-28,68657,1964,"[\""Tablet\""]",3266.35,{},260328,1,"""North America""" +2023-09-09,68658,8823,"[\""Wireless Mouse\"", \""Phone\""]",1936.92,{},252889,1,"""Europe""" +2024-12-28,68659,5674,"[\""Wireless Mouse\""]",386.86,{},206540,0,"""Europe""" +2024-08-18,68660,8193,"[\""Phone\""]",3864.22,{},282107,0,"""North America""" +2023-04-02,68661,3273,"[\""Keyboard\"", \""Laptop\""]",3437.91,"{\""seasonal\"": \""11%\""}",243998,1,"""South America""" +2024-08-17,68662,2073,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3775.75,"{\""loyalty\"": \""17%\""}",75313,0,"""North America""" +2024-04-12,68663,3213,"[\""Keyboard\"", \""Tablet\""]",1748.24,{},51906,0,"""North America""" +2023-10-11,68664,1569,"[\""Laptop\"", \""Wireless Mouse\""]",1060.61,{},84082,1,"""Asia""" +2024-12-20,68665,6400,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3022.79,"{\""promo\"": \""14%\""}",173288,0,"""South America""" +2023-07-09,68666,4467,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2691.09,"{\""loyalty\"": \""12%\""}",66427,0,"""South America""" +2023-04-15,68667,2434,"[\""Tablet\"", \""Monitor\""]",2659.43,"{\""loyalty\"": \""7%\""}",152267,0,"""South America""" +2024-04-28,68668,2261,"[\""Monitor\"", \""Headphones\""]",1046.64,"{\"": \""13%\""}",86196,1,"""South America""" +2023-11-14,68669,3213,"[\""Laptop\""]",4334.88,{},213451,0,"""South America""" +2024-09-26,68670,1736,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3589.42,{},101185,0,"""Asia""" +2023-11-27,68671,9071,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1808.45,{},71577,1,"""South America""" +2024-11-09,68672,7156,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1562.61,{},228379,0,"""Europe""" +2023-09-06,68673,9384,"[\""Wireless Mouse\"", \""Tablet\""]",1574.87,"{\""promo\"": \""8%\""}",269735,0,"""Africa""" +2024-07-28,68674,7090,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3257.22,{},105641,0,"""Africa""" +2024-08-29,68675,5769,"[\""Monitor\"", \""Laptop\""]",1916.15,{},68795,0,"""Europe""" +2024-05-24,68676,3856,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2200.62,{},82469,0,"""Africa""" +2024-09-30,68677,924,"[\""Charger\"", \""Wireless Mouse\""]",4266.62,{},265085,0,"""Europe""" +2023-02-22,68678,6810,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3612.63,{},232020,0,"""South America""" +2023-11-22,68679,3639,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4113.47,{},52474,0,"""Europe""" +2023-12-08,68680,6773,"[\""Wireless Mouse\"", \""Headphones\""]",4635.08,"{\""loyalty\"": \""16%\""}",71232,1,"""Asia""" +2023-04-13,68681,4719,"[\""Headphones\"", \""Monitor\""]",256.37,"{\""loyalty\"": \""17%\""}",104799,1,"""North America""" +2023-03-29,68682,2705,"[\""Keyboard\"", \""Headphones\""]",3278.45,{},102974,0,"""Europe""" +2023-09-13,68683,4613,"[\""Keyboard\"", \""Tablet\""]",4637.1,"{\""seasonal\"": \""18%\""}",162474,1,"""North America""" +2024-10-12,68684,5800,"[\""Monitor\"", \""Charger\""]",1225.67,"{\""loyalty\"": \""8%\""}",231864,0,"""Africa""" +2024-12-08,68685,4388,"[\""Charger\""]",1250.62,"{\"": \""28%\""}",74018,0,"""Africa""" +2024-11-04,68686,2658,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1616.01,{},273426,1,"""South America""" +2023-05-17,68687,3156,"[\""Phone\""]",2542.1,{},6052,0,"""Europe""" +2023-10-21,68688,2004,"[\""Monitor\"", \""Charger\""]",1378.2,"{\""promo\"": \""19%\""}",25014,1,"""South America""" +2023-03-21,68689,2330,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1976.23,"{\""seasonal\"": \""17%\""}",2173,1,"""South America""" +2024-11-19,68690,5823,"[\""Tablet\""]",582.15,"{\""seasonal\"": \""30%\""}",170220,1,"""South America""" +2023-05-07,68691,8620,"[\""Tablet\"", \""Keyboard\""]",2262.01,{},291423,1,"""Europe""" +2024-03-08,68692,114,"[\""Phone\""]",1573.88,{},67986,0,"""North America""" +2024-08-24,68693,8689,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4783.11,{},225227,0,"""Africa""" +2023-04-27,68694,3150,"[\""Keyboard\""]",1604.64,"{\""loyalty\"": \""26%\""}",193792,1,"""Asia""" +2024-11-04,68695,9324,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1824.77,{},178943,0,"""South America""" +2023-10-27,68696,9065,"[\""Laptop\"", \""Wireless Mouse\""]",1936.0,{},11114,1,"""North America""" +2023-06-30,68697,1140,"[\""Monitor\"", \""Wireless Mouse\""]",2669.07,"{\""loyalty\"": \""10%\""}",211180,1,"""North America""" +2024-01-30,68698,2112,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1830.49,{},18645,1,"""North America""" +2023-12-26,68699,5066,"[\""Headphones\"", \""Phone\""]",2416.5,{},59244,0,"""Asia""" +2023-08-24,68700,9009,"[\""Keyboard\""]",1966.56,{},47880,0,"""Asia""" +2023-01-09,68701,8896,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3061.41,"{\"": \""5%\""}",219427,1,"""Asia""" +2023-10-29,68702,2668,"[\""Tablet\""]",2982.0,"{\""seasonal\"": \""23%\""}",169171,0,"""Asia""" +2024-05-11,68703,7180,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",84.64,{},24761,0,"""South America""" +2023-08-29,68704,1524,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3907.36,{},96467,0,"""Asia""" +2023-05-06,68705,466,"[\""Headphones\""]",4715.17,"{\""seasonal\"": \""21%\""}",224091,1,"""Europe""" +2023-09-07,68706,5401,"[\""Keyboard\"", \""Tablet\""]",3042.13,"{\""promo\"": \""29%\""}",262660,1,"""South America""" +2024-01-10,68707,1829,"[\""Tablet\"", \""Charger\""]",4138.16,"{\""promo\"": \""26%\""}",16572,1,"""Africa""" +2023-12-24,68708,6086,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3670.8,{},19883,0,"""Europe""" +2024-03-01,68709,5831,"[\""Keyboard\""]",1788.85,"{\""promo\"": \""27%\""}",30775,0,"""North America""" +2024-03-09,68710,2187,"[\""Charger\"", \""Keyboard\""]",4303.29,{},177539,1,"""Asia""" +2023-06-09,68711,4790,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4119.5,{},104255,0,"""North America""" +2023-11-05,68712,442,"[\""Phone\"", \""Keyboard\""]",175.25,"{\""promo\"": \""25%\""}",1531,1,"""Africa""" +2023-11-26,68713,9641,"[\""Tablet\""]",358.75,{},2283,0,"""Africa""" +2023-02-09,68714,7193,"[\""Charger\""]",686.92,{},146714,1,"""Europe""" +2024-01-31,68715,7029,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",428.35,{},188731,0,"""Europe""" +2023-08-07,68716,9466,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1847.92,{},122414,0,"""South America""" +2023-08-14,68717,49,"[\""Keyboard\"", \""Tablet\""]",1508.37,{},176046,1,"""Africa""" +2023-10-22,68718,6792,"[\""Keyboard\""]",4978.85,"{\"": \""10%\""}",30817,0,"""Europe""" +2023-11-29,68719,9239,"[\""Laptop\""]",1842.24,"{\""loyalty\"": \""20%\""}",49716,1,"""Africa""" +2024-08-07,68720,9017,"[\""Laptop\"", \""Wireless Mouse\""]",4760.93,{},189234,1,"""Europe""" +2024-11-15,68721,86,"[\""Phone\"", \""Charger\""]",2877.49,{},51180,0,"""Africa""" +2023-05-10,68722,8059,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2231.83,{},251212,0,"""South America""" +2023-04-14,68723,3626,"[\""Headphones\"", \""Keyboard\""]",2609.56,{},230594,0,"""Europe""" +2024-01-14,68724,6290,"[\""Keyboard\"", \""Wireless Mouse\""]",4599.63,{},260904,1,"""Asia""" +2024-10-26,68725,8135,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1893.79,{},185267,0,"""Asia""" +2023-09-02,68726,6469,"[\""Keyboard\"", \""Monitor\""]",4679.45,"{\""seasonal\"": \""30%\""}",199808,1,"""Africa""" +2023-09-07,68727,2548,"[\""Monitor\"", \""Charger\""]",1763.65,"{\""seasonal\"": \""23%\""}",273777,0,"""North America""" +2023-01-03,68728,5757,"[\""Keyboard\"", \""Tablet\""]",3824.96,"{\""loyalty\"": \""17%\""}",117465,1,"""North America""" +2024-07-02,68729,5163,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4681.15,"{\""promo\"": \""6%\""}",288071,0,"""Asia""" +2024-05-18,68730,3822,"[\""Wireless Mouse\"", \""Charger\""]",2028.94,{},267193,1,"""Asia""" +2023-07-20,68731,8089,"[\""Charger\""]",1303.79,"{\""promo\"": \""5%\""}",46747,1,"""Asia""" +2023-07-27,68732,3013,"[\""Headphones\""]",703.66,{},23679,0,"""Asia""" +2024-09-05,68733,2205,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1043.14,{},184357,0,"""Europe""" +2024-08-29,68734,2697,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3025.24,"{\"": \""25%\""}",155925,1,"""South America""" +2023-10-29,68735,6755,"[\""Headphones\""]",2690.95,"{\"": \""7%\""}",229261,1,"""Europe""" +2024-03-06,68736,4874,"[\""Laptop\"", \""Tablet\""]",924.8,{},78154,0,"""Asia""" +2023-08-04,68737,1653,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4445.66,"{\""seasonal\"": \""12%\""}",24639,0,"""Asia""" +2024-08-08,68738,6607,"[\""Keyboard\""]",4036.28,{},95236,0,"""South America""" +2023-10-25,68739,1354,"[\""Tablet\"", \""Phone\""]",922.32,"{\""seasonal\"": \""14%\""}",240076,0,"""South America""" +2023-11-20,68740,4653,"[\""Wireless Mouse\"", \""Monitor\""]",4895.8,"{\""promo\"": \""10%\""}",98013,0,"""Asia""" +2023-03-10,68741,2890,"[\""Tablet\"", \""Phone\""]",1460.38,"{\""promo\"": \""6%\""}",86830,1,"""South America""" +2023-03-17,68742,6464,"[\""Wireless Mouse\""]",3930.05,{},296139,0,"""South America""" +2023-10-03,68743,5734,"[\""Laptop\""]",2068.85,"{\""seasonal\"": \""18%\""}",174291,0,"""Africa""" +2023-03-09,68744,3008,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2714.77,{},136050,1,"""Asia""" +2023-04-03,68745,6292,"[\""Charger\"", \""Monitor\""]",1628.74,{},29116,1,"""Europe""" +2023-12-15,68746,2563,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",497.78,{},52367,1,"""Europe""" +2024-04-25,68747,1450,"[\""Monitor\"", \""Wireless Mouse\""]",101.29,{},120955,1,"""South America""" +2024-04-13,68748,6432,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2851.46,"{\""loyalty\"": \""12%\""}",164680,0,"""Africa""" +2024-03-14,68749,6070,"[\""Headphones\""]",4731.01,{},294229,0,"""North America""" +2024-09-07,68750,2391,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",902.26,{},153099,0,"""Africa""" +2023-10-10,68751,3858,"[\""Charger\"", \""Phone\""]",3123.32,"{\""seasonal\"": \""26%\""}",145446,0,"""South America""" +2023-07-14,68752,322,"[\""Keyboard\"", \""Tablet\""]",2255.09,{},85209,0,"""North America""" +2024-05-22,68753,8979,"[\""Phone\""]",4393.32,{},90307,0,"""North America""" +2024-08-23,68754,747,"[\""Keyboard\""]",3682.49,"{\""promo\"": \""24%\""}",141535,0,"""South America""" +2024-09-02,68755,1966,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3009.43,"{\""seasonal\"": \""8%\""}",128824,1,"""South America""" +2023-02-16,68756,4707,"[\""Laptop\"", \""Wireless Mouse\""]",1039.49,"{\""promo\"": \""28%\""}",271424,0,"""North America""" +2023-04-16,68757,324,"[\""Monitor\""]",1171.3,{},53678,1,"""Europe""" +2023-08-25,68758,5083,"[\""Phone\""]",3003.92,{},289565,0,"""Asia""" +2024-09-04,68759,4928,"[\""Phone\"", \""Laptop\""]",4856.01,{},59467,0,"""North America""" +2023-05-23,68760,1922,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1156.9,"{\""seasonal\"": \""5%\""}",21072,1,"""South America""" +2023-01-03,68761,4898,"[\""Charger\"", \""Phone\""]",430.08,"{\""promo\"": \""10%\""}",251776,0,"""Europe""" +2023-04-11,68762,2653,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3889.12,"{\""loyalty\"": \""26%\""}",64429,0,"""Africa""" +2024-08-27,68763,9624,"[\""Tablet\"", \""Keyboard\""]",4844.43,"{\""seasonal\"": \""9%\""}",92638,0,"""North America""" +2023-09-13,68764,2659,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",741.28,"{\""seasonal\"": \""11%\""}",2402,0,"""Europe""" +2023-09-13,68765,4137,"[\""Keyboard\""]",4489.43,{},84299,1,"""Asia""" +2023-04-04,68766,6447,"[\""Keyboard\""]",2544.27,"{\""loyalty\"": \""25%\""}",287123,0,"""North America""" +2023-03-12,68767,4780,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4195.93,"{\""promo\"": \""10%\""}",71789,1,"""Asia""" +2023-04-04,68768,9375,"[\""Tablet\""]",2348.08,"{\"": \""23%\""}",147497,0,"""Asia""" +2023-03-28,68769,5167,"[\""Headphones\""]",2289.28,"{\""loyalty\"": \""25%\""}",217108,1,"""South America""" +2023-03-24,68770,4747,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2899.32,{},86154,0,"""North America""" +2023-06-07,68771,3151,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",471.23,{},39346,0,"""Asia""" +2023-06-10,68772,9431,"[\""Tablet\"", \""Keyboard\""]",2621.23,"{\"": \""9%\""}",129863,0,"""Asia""" +2024-12-17,68773,7270,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1257.02,{},75912,0,"""North America""" +2024-02-11,68774,6911,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4229.89,"{\"": \""14%\""}",58290,0,"""South America""" +2024-07-18,68775,4503,"[\""Charger\""]",1766.84,"{\""seasonal\"": \""8%\""}",41535,1,"""Africa""" +2023-02-26,68776,4891,"[\""Monitor\""]",1429.0,{},3655,0,"""Europe""" +2023-06-28,68777,1386,"[\""Charger\"", \""Tablet\""]",2736.68,{},166708,1,"""Africa""" +2024-04-09,68778,1403,"[\""Monitor\"", \""Phone\""]",4512.74,"{\""promo\"": \""10%\""}",147216,0,"""Asia""" +2023-10-01,68779,6084,"[\""Charger\"", \""Tablet\""]",4040.32,{},102562,1,"""Africa""" +2024-05-16,68780,3900,"[\""Charger\""]",2142.34,{},258273,1,"""Europe""" +2023-10-18,68781,7509,"[\""Monitor\""]",1363.53,{},51740,1,"""Europe""" +2023-06-08,68782,8537,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4002.63,"{\""seasonal\"": \""24%\""}",205569,1,"""Europe""" +2024-01-28,68783,3290,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",78.79,{},273843,1,"""North America""" +2023-01-12,68784,2311,"[\""Laptop\""]",4583.33,"{\"": \""20%\""}",50884,1,"""Europe""" +2023-03-10,68785,6029,"[\""Tablet\"", \""Charger\""]",2478.26,"{\""seasonal\"": \""25%\""}",200772,0,"""South America""" +2024-01-05,68786,5476,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2221.47,"{\""promo\"": \""8%\""}",66198,1,"""Europe""" +2023-04-16,68787,4979,"[\""Headphones\"", \""Tablet\""]",4874.21,"{\"": \""17%\""}",97278,1,"""Europe""" +2024-05-03,68788,8588,"[\""Keyboard\""]",4437.54,{},172788,1,"""Africa""" +2024-04-01,68789,3972,"[\""Monitor\"", \""Keyboard\""]",3267.05,{},213929,0,"""Europe""" +2024-06-12,68790,6817,"[\""Laptop\"", \""Wireless Mouse\""]",1830.26,{},97932,0,"""Europe""" +2023-05-11,68791,5026,"[\""Laptop\"", \""Headphones\""]",2308.45,{},284644,0,"""Africa""" +2023-04-16,68792,7936,"[\""Monitor\"", \""Headphones\""]",140.03,{},258669,0,"""South America""" +2023-07-30,68793,2955,"[\""Headphones\""]",2563.42,"{\"": \""8%\""}",41955,1,"""North America""" +2024-09-30,68794,8517,"[\""Phone\""]",4687.0,{},128884,0,"""Asia""" +2024-08-07,68795,3655,"[\""Keyboard\"", \""Tablet\""]",4591.12,"{\""promo\"": \""13%\""}",221379,1,"""Africa""" +2024-01-01,68796,2770,"[\""Tablet\""]",2092.66,"{\""loyalty\"": \""29%\""}",21296,1,"""Africa""" +2023-03-13,68797,5403,"[\""Tablet\"", \""Wireless Mouse\""]",1571.73,"{\""seasonal\"": \""21%\""}",20842,1,"""Asia""" +2023-10-07,68798,8620,"[\""Wireless Mouse\""]",2748.92,"{\""loyalty\"": \""22%\""}",112670,0,"""North America""" +2023-03-16,68799,8847,"[\""Monitor\"", \""Laptop\""]",1942.99,{},64905,0,"""Europe""" +2023-09-08,68800,9551,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2774.9,"{\""loyalty\"": \""15%\""}",122402,1,"""North America""" +2024-01-13,68801,2377,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",900.52,{},152829,0,"""North America""" +2023-01-31,68802,1015,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3044.51,"{\""loyalty\"": \""25%\""}",235307,0,"""Europe""" +2024-09-11,68803,3036,"[\""Wireless Mouse\"", \""Charger\""]",4782.57,{},186902,1,"""South America""" +2023-06-13,68804,4978,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2219.51,{},275263,1,"""Asia""" +2023-11-24,68805,8532,"[\""Monitor\"", \""Phone\""]",2531.95,"{\""seasonal\"": \""18%\""}",295155,1,"""Asia""" +2023-10-18,68806,8216,"[\""Phone\""]",406.52,{},182174,1,"""Asia""" +2024-10-29,68807,9557,"[\""Laptop\""]",4074.14,{},63106,0,"""Europe""" +2024-04-29,68808,141,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4900.15,{},32855,1,"""Africa""" +2023-04-09,68809,5291,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1996.29,"{\""seasonal\"": \""11%\""}",67762,1,"""Asia""" +2023-05-08,68810,234,"[\""Laptop\""]",2330.38,"{\""loyalty\"": \""13%\""}",237230,1,"""South America""" +2024-07-08,68811,1254,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3772.52,"{\""loyalty\"": \""9%\""}",177549,1,"""North America""" +2024-02-13,68812,1057,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",593.36,{},11558,1,"""Europe""" +2023-09-29,68813,2548,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4071.16,{},132352,1,"""Europe""" +2023-09-01,68814,6141,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2961.08,"{\""loyalty\"": \""13%\""}",112764,1,"""North America""" +2024-10-06,68815,6314,"[\""Tablet\"", \""Keyboard\""]",2590.66,"{\""seasonal\"": \""9%\""}",23623,1,"""Europe""" +2024-02-21,68816,1785,"[\""Headphones\"", \""Keyboard\""]",3606.09,{},180491,0,"""Africa""" +2024-02-07,68817,6278,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4138.06,"{\""loyalty\"": \""12%\""}",141573,1,"""Africa""" +2024-06-16,68818,1062,"[\""Wireless Mouse\"", \""Keyboard\""]",3304.36,{},180511,1,"""Europe""" +2023-04-30,68819,203,"[\""Monitor\""]",4447.14,"{\"": \""20%\""}",227015,1,"""Africa""" +2023-09-07,68820,2231,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2599.09,"{\""seasonal\"": \""26%\""}",284428,1,"""South America""" +2024-08-21,68821,193,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2240.64,"{\""loyalty\"": \""29%\""}",38776,1,"""South America""" +2024-05-28,68822,6769,"[\""Phone\"", \""Keyboard\""]",3234.26,{},266333,0,"""Africa""" +2024-08-13,68823,5668,"[\""Phone\"", \""Charger\""]",4978.52,"{\""seasonal\"": \""19%\""}",76729,0,"""North America""" +2023-06-22,68824,6068,"[\""Laptop\""]",1021.22,"{\""seasonal\"": \""15%\""}",62510,1,"""Europe""" +2024-05-15,68825,2949,"[\""Charger\"", \""Wireless Mouse\""]",135.87,{},249454,1,"""Asia""" +2023-10-20,68826,7857,"[\""Keyboard\""]",4653.25,"{\""promo\"": \""5%\""}",256632,0,"""Asia""" +2023-01-04,68827,158,"[\""Laptop\"", \""Monitor\""]",3005.78,{},266544,0,"""Europe""" +2023-01-11,68828,6107,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3328.46,"{\""promo\"": \""21%\""}",231394,0,"""Asia""" +2023-08-06,68829,8649,"[\""Keyboard\""]",72.08,"{\""loyalty\"": \""13%\""}",175763,0,"""Africa""" +2024-10-09,68830,5971,"[\""Phone\"", \""Headphones\""]",1391.76,{},170214,1,"""South America""" +2023-03-22,68831,7774,"[\""Phone\"", \""Laptop\""]",4424.22,"{\""promo\"": \""27%\""}",166354,1,"""Africa""" +2023-01-03,68832,5426,"[\""Laptop\""]",3527.13,{},136488,0,"""Europe""" +2023-02-14,68833,6373,"[\""Keyboard\"", \""Charger\""]",2443.61,"{\""loyalty\"": \""15%\""}",103163,1,"""Africa""" +2024-11-10,68834,6850,"[\""Headphones\"", \""Phone\""]",4663.73,"{\""promo\"": \""18%\""}",156736,1,"""Africa""" +2024-07-16,68835,7129,"[\""Keyboard\""]",4601.03,{},89373,1,"""North America""" +2024-07-03,68836,2579,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3455.77,{},54119,1,"""South America""" +2023-03-03,68837,2742,"[\""Phone\""]",3798.85,"{\""seasonal\"": \""9%\""}",146811,1,"""Asia""" +2023-05-14,68838,2055,"[\""Phone\"", \""Headphones\""]",2946.95,"{\""seasonal\"": \""20%\""}",278156,0,"""Europe""" +2023-04-20,68839,9407,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2827.35,"{\""seasonal\"": \""13%\""}",162629,1,"""Africa""" +2023-04-23,68840,5440,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4359.84,"{\""loyalty\"": \""24%\""}",297169,1,"""South America""" +2023-01-03,68841,7772,"[\""Tablet\"", \""Keyboard\""]",291.06,"{\""loyalty\"": \""11%\""}",275262,1,"""North America""" +2024-10-30,68842,460,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2576.15,{},189122,0,"""Asia""" +2023-10-19,68843,4792,"[\""Keyboard\"", \""Phone\""]",3046.73,"{\""loyalty\"": \""24%\""}",15411,0,"""Asia""" +2024-01-07,68844,3912,"[\""Tablet\"", \""Laptop\""]",505.13,{},37061,0,"""Asia""" +2023-02-28,68845,9709,"[\""Laptop\""]",729.38,"{\"": \""8%\""}",252078,1,"""Europe""" +2023-08-15,68846,4120,"[\""Tablet\"", \""Charger\""]",3094.95,{},114608,0,"""Asia""" +2024-07-07,68847,9426,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4798.28,"{\""seasonal\"": \""17%\""}",92069,1,"""North America""" +2024-09-04,68848,7976,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4371.37,{},289116,0,"""Europe""" +2024-07-07,68849,8975,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",760.68,"{\""loyalty\"": \""15%\""}",119648,0,"""North America""" +2024-03-18,68850,8005,"[\""Phone\""]",350.92,"{\""promo\"": \""24%\""}",128432,1,"""North America""" +2024-12-29,68851,2660,"[\""Headphones\"", \""Laptop\""]",501.51,"{\""promo\"": \""18%\""}",117984,1,"""South America""" +2024-07-18,68852,9328,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2803.96,{},37680,1,"""Asia""" +2023-06-13,68853,3571,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",565.6,"{\"": \""25%\""}",286928,0,"""Asia""" +2023-08-19,68854,2858,"[\""Laptop\""]",564.84,{},125184,1,"""North America""" +2023-04-25,68855,1094,"[\""Charger\"", \""Headphones\""]",4015.44,{},241551,0,"""Africa""" +2024-05-07,68856,3848,"[\""Charger\"", \""Wireless Mouse\""]",3045.24,{},144655,0,"""North America""" +2024-04-01,68857,4056,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",250.83,"{\""loyalty\"": \""16%\""}",272293,0,"""Asia""" +2023-09-10,68858,2686,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3337.02,"{\"": \""15%\""}",54509,1,"""South America""" +2024-02-29,68859,9904,"[\""Keyboard\"", \""Laptop\""]",130.88,{},288044,0,"""South America""" +2023-01-21,68860,9302,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",548.64,{},258338,1,"""South America""" +2024-09-11,68861,7151,"[\""Tablet\""]",4312.42,{},289330,1,"""North America""" +2023-06-17,68862,1255,"[\""Charger\""]",3006.55,"{\""promo\"": \""10%\""}",129713,0,"""South America""" +2024-02-06,68863,8705,"[\""Headphones\""]",3413.23,{},255495,0,"""Asia""" +2024-12-06,68864,2965,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3298.03,"{\""loyalty\"": \""30%\""}",279547,0,"""North America""" +2023-09-21,68865,8204,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4204.76,"{\""seasonal\"": \""23%\""}",27462,1,"""North America""" +2024-05-23,68866,6310,"[\""Wireless Mouse\"", \""Tablet\""]",3859.47,{},233399,0,"""South America""" +2023-12-20,68867,8006,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2251.96,{},296457,0,"""Asia""" +2023-12-04,68868,4189,"[\""Charger\"", \""Keyboard\""]",2003.03,"{\"": \""12%\""}",191074,0,"""Europe""" +2023-02-09,68869,748,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4529.93,"{\"": \""10%\""}",283830,0,"""Asia""" +2024-10-28,68870,8614,"[\""Wireless Mouse\"", \""Monitor\""]",3050.54,{},107438,1,"""North America""" +2023-05-25,68871,4962,"[\""Phone\"", \""Laptop\""]",3790.8,{},215872,0,"""Africa""" +2024-11-11,68872,1861,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1298.81,{},254889,0,"""Asia""" +2024-03-18,68873,5213,"[\""Keyboard\"", \""Phone\""]",3629.93,"{\"": \""23%\""}",195640,0,"""Asia""" +2024-05-19,68874,3950,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3249.43,{},269535,0,"""North America""" +2023-02-08,68875,1295,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1665.35,{},196811,0,"""Europe""" +2023-06-07,68876,7726,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4072.27,"{\""seasonal\"": \""5%\""}",49102,1,"""South America""" +2024-09-27,68877,5817,"[\""Tablet\""]",4683.98,{},290207,0,"""Africa""" +2023-04-21,68878,109,"[\""Headphones\"", \""Charger\""]",3903.83,{},198395,0,"""Africa""" +2023-05-02,68879,8129,"[\""Monitor\""]",2080.18,"{\"": \""15%\""}",157231,1,"""Asia""" +2024-07-23,68880,506,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3617.06,{},222212,0,"""Africa""" +2023-11-27,68881,5538,"[\""Tablet\""]",4012.95,{},223373,1,"""Europe""" +2024-01-05,68882,8070,"[\""Wireless Mouse\"", \""Tablet\""]",735.58,{},290328,1,"""Europe""" +2023-11-08,68883,2767,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2547.16,{},167554,0,"""North America""" +2023-06-02,68884,8888,"[\""Monitor\"", \""Keyboard\""]",3480.05,{},15275,1,"""South America""" +2024-10-04,68885,3526,"[\""Wireless Mouse\""]",1252.15,"{\""seasonal\"": \""14%\""}",123571,0,"""North America""" +2023-06-05,68886,3669,"[\""Charger\"", \""Monitor\""]",4013.55,{},118309,1,"""Asia""" +2023-07-18,68887,2870,"[\""Keyboard\""]",3737.8,"{\"": \""14%\""}",181899,1,"""Africa""" +2024-12-11,68888,692,"[\""Tablet\"", \""Monitor\""]",2017.5,{},137407,0,"""Asia""" +2023-12-30,68889,523,"[\""Monitor\"", \""Wireless Mouse\""]",1281.09,{},107581,0,"""Africa""" +2024-01-10,68890,7165,"[\""Charger\""]",2155.42,{},104750,1,"""North America""" +2024-07-24,68891,8032,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1823.18,{},145152,0,"""Asia""" +2024-04-30,68892,8458,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1462.41,"{\""promo\"": \""21%\""}",49955,0,"""Africa""" +2024-11-17,68893,8168,"[\""Monitor\"", \""Phone\""]",4744.75,{},167734,0,"""South America""" +2024-04-21,68894,8065,"[\""Charger\""]",4991.21,{},86981,0,"""South America""" +2024-01-25,68895,6139,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2213.79,{},108880,1,"""South America""" +2023-12-04,68896,1975,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2441.19,{},171823,0,"""North America""" +2023-03-11,68897,3944,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4235.3,"{\""seasonal\"": \""29%\""}",253250,1,"""Europe""" +2024-08-02,68898,2399,"[\""Wireless Mouse\"", \""Laptop\""]",3435.39,{},210129,1,"""Asia""" +2023-06-07,68899,438,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1845.81,{},133136,0,"""South America""" +2023-04-08,68900,939,"[\""Wireless Mouse\"", \""Charger\""]",3157.44,{},186413,0,"""Asia""" +2024-10-09,68901,6395,"[\""Tablet\""]",3793.83,"{\""loyalty\"": \""7%\""}",3739,0,"""Africa""" +2024-03-24,68902,5796,"[\""Charger\"", \""Tablet\""]",3184.77,{},143921,1,"""Europe""" +2024-12-17,68903,9343,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4280.94,"{\""loyalty\"": \""20%\""}",171443,1,"""Africa""" +2024-01-06,68904,444,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4625.01,{},30859,1,"""South America""" +2023-04-16,68905,1707,"[\""Headphones\""]",4999.78,"{\""seasonal\"": \""21%\""}",71053,0,"""Europe""" +2024-02-18,68906,8387,"[\""Wireless Mouse\"", \""Monitor\""]",478.33,{},124323,1,"""Asia""" +2024-12-14,68907,3291,"[\""Wireless Mouse\""]",245.6,"{\""seasonal\"": \""17%\""}",190813,0,"""South America""" +2023-12-08,68908,4454,"[\""Phone\"", \""Laptop\""]",1231.82,{},107947,1,"""Asia""" +2023-10-10,68909,1891,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1981.04,{},44093,0,"""South America""" +2023-02-14,68910,931,"[\""Monitor\"", \""Headphones\""]",3902.99,"{\""seasonal\"": \""5%\""}",55716,0,"""Europe""" +2024-01-06,68911,7819,"[\""Wireless Mouse\"", \""Keyboard\""]",4159.53,"{\""promo\"": \""24%\""}",97957,0,"""Africa""" +2023-10-15,68912,4685,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3426.25,{},109782,0,"""South America""" +2023-01-12,68913,8401,"[\""Laptop\"", \""Charger\""]",2406.64,"{\""seasonal\"": \""25%\""}",18569,0,"""Asia""" +2024-08-08,68914,3541,"[\""Monitor\"", \""Laptop\""]",190.24,{},235132,0,"""Africa""" +2024-07-12,68915,7239,"[\""Tablet\""]",2584.33,"{\""loyalty\"": \""16%\""}",215660,0,"""South America""" +2023-07-11,68916,8141,"[\""Wireless Mouse\"", \""Keyboard\""]",489.46,{},84653,1,"""Asia""" +2023-12-06,68917,7580,"[\""Wireless Mouse\""]",3867.58,"{\"": \""9%\""}",220085,0,"""Asia""" +2023-09-05,68918,203,"[\""Headphones\""]",1307.25,{},23691,1,"""South America""" +2024-07-24,68919,2676,"[\""Charger\""]",2571.3,{},38661,0,"""Europe""" +2024-04-28,68920,50,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2634.62,{},3842,1,"""North America""" +2024-03-12,68921,9431,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",308.24,{},268538,1,"""South America""" +2024-05-10,68922,7450,"[\""Monitor\"", \""Charger\""]",3044.94,"{\""loyalty\"": \""25%\""}",169132,0,"""North America""" +2024-10-10,68923,1743,"[\""Tablet\"", \""Keyboard\""]",3631.87,{},136796,0,"""Asia""" +2024-10-18,68924,6698,"[\""Monitor\"", \""Laptop\""]",1247.42,"{\""loyalty\"": \""8%\""}",146724,1,"""Asia""" +2024-10-15,68925,1925,"[\""Monitor\""]",2611.58,"{\""loyalty\"": \""20%\""}",8930,0,"""Africa""" +2023-12-13,68926,6717,"[\""Laptop\"", \""Wireless Mouse\""]",2581.93,{},150506,1,"""South America""" +2023-12-29,68927,1958,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4711.2,"{\"": \""21%\""}",63549,1,"""South America""" +2023-05-30,68928,750,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4519.11,{},203383,1,"""North America""" +2024-05-18,68929,6619,"[\""Headphones\""]",1247.14,"{\""seasonal\"": \""9%\""}",196029,1,"""North America""" +2023-04-23,68930,104,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3445.99,{},236372,0,"""Africa""" +2023-11-04,68931,4867,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",966.18,"{\""promo\"": \""7%\""}",219369,1,"""South America""" +2023-10-08,68932,8002,"[\""Laptop\"", \""Monitor\""]",1058.46,{},37904,1,"""Europe""" +2024-08-22,68933,3881,"[\""Keyboard\"", \""Phone\""]",2626.08,{},205503,1,"""Asia""" +2023-02-17,68934,1221,"[\""Wireless Mouse\""]",1780.77,"{\""loyalty\"": \""9%\""}",72760,0,"""North America""" +2024-09-02,68935,7183,"[\""Charger\""]",1974.97,{},184711,0,"""Europe""" +2023-05-08,68936,5593,"[\""Headphones\""]",3207.49,{},127970,1,"""South America""" +2024-10-09,68937,4727,"[\""Wireless Mouse\""]",2851.29,"{\""promo\"": \""9%\""}",42194,0,"""Asia""" +2023-05-03,68938,6845,"[\""Laptop\""]",2154.96,"{\""seasonal\"": \""23%\""}",282819,0,"""Asia""" +2023-02-26,68939,3773,"[\""Phone\"", \""Charger\""]",3464.49,{},207469,1,"""Europe""" +2023-06-04,68940,7130,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",776.53,"{\"": \""5%\""}",10691,0,"""South America""" +2024-04-30,68941,5370,"[\""Wireless Mouse\"", \""Laptop\""]",4643.24,"{\""seasonal\"": \""25%\""}",297669,0,"""North America""" +2023-06-28,68942,7065,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3075.8,"{\"": \""29%\""}",125142,1,"""South America""" +2024-09-30,68943,3531,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",202.97,{},289572,1,"""North America""" +2024-05-31,68944,7436,"[\""Monitor\""]",1050.96,{},260282,1,"""North America""" +2023-04-24,68945,8586,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1927.37,"{\"": \""17%\""}",82810,1,"""Africa""" +2023-09-13,68946,1112,"[\""Headphones\""]",1235.06,{},130142,0,"""Europe""" +2024-05-18,68947,8859,"[\""Phone\""]",1202.1,"{\"": \""30%\""}",213119,1,"""North America""" +2024-04-29,68948,4767,"[\""Phone\"", \""Tablet\""]",3730.23,{},144421,0,"""South America""" +2023-03-17,68949,5955,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4655.93,{},213436,0,"""South America""" +2023-11-28,68950,6497,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",59.97,"{\""loyalty\"": \""6%\""}",82615,0,"""Asia""" +2023-05-13,68951,2201,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",534.68,{},31828,1,"""South America""" +2023-09-06,68952,8498,"[\""Monitor\"", \""Charger\""]",331.4,"{\""promo\"": \""9%\""}",178257,0,"""South America""" +2024-09-10,68953,8783,"[\""Monitor\""]",2137.05,{},43045,1,"""Europe""" +2024-11-20,68954,6109,"[\""Wireless Mouse\""]",4158.62,"{\"": \""16%\""}",39621,0,"""Africa""" +2024-09-29,68955,5950,"[\""Monitor\"", \""Charger\""]",2087.15,{},2746,0,"""Africa""" +2023-12-07,68956,2522,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1232.07,"{\""loyalty\"": \""24%\""}",277409,1,"""Asia""" +2024-10-05,68957,7019,"[\""Phone\"", \""Charger\""]",3073.09,{},114961,1,"""Asia""" +2023-03-23,68958,7047,"[\""Monitor\""]",1400.91,{},49481,0,"""Africa""" +2023-07-08,68959,9052,"[\""Phone\"", \""Laptop\""]",2640.07,"{\"": \""7%\""}",218941,1,"""Europe""" +2024-08-13,68960,7872,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4806.53,{},10885,0,"""Asia""" +2023-10-01,68961,6867,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2630.53,{},139178,0,"""South America""" +2023-06-24,68962,1822,"[\""Headphones\""]",266.04,"{\"": \""22%\""}",8313,1,"""Europe""" +2023-04-30,68963,194,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2600.32,{},214559,0,"""Europe""" +2023-10-07,68964,7200,"[\""Tablet\"", \""Phone\""]",4694.44,{},226978,0,"""Europe""" +2023-12-01,68965,5847,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1099.67,{},170310,1,"""Africa""" +2024-05-22,68966,6248,"[\""Charger\""]",1462.22,{},65228,1,"""Africa""" +2023-07-05,68967,9607,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2824.36,{},155091,1,"""Europe""" +2023-08-03,68968,9621,"[\""Headphones\"", \""Monitor\""]",558.08,{},27321,0,"""South America""" +2024-06-14,68969,5699,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2573.22,"{\"": \""22%\""}",226713,1,"""Africa""" +2024-01-08,68970,6001,"[\""Keyboard\"", \""Monitor\""]",2098.13,{},252402,1,"""Africa""" +2023-11-13,68971,3770,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3375.57,"{\""promo\"": \""9%\""}",224910,0,"""Europe""" +2023-07-12,68972,8331,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2275.31,{},19132,1,"""South America""" +2023-01-15,68973,1010,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4460.7,"{\""seasonal\"": \""10%\""}",64786,1,"""Europe""" +2023-05-10,68974,7776,"[\""Monitor\""]",1596.71,{},115518,1,"""North America""" +2024-06-24,68975,2522,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",722.45,"{\""seasonal\"": \""26%\""}",111971,1,"""Africa""" +2023-05-01,68976,3743,"[\""Wireless Mouse\""]",3769.36,{},114439,0,"""North America""" +2023-12-17,68977,962,"[\""Headphones\""]",2724.07,"{\""loyalty\"": \""8%\""}",223900,1,"""Europe""" +2024-06-30,68978,8272,"[\""Tablet\"", \""Laptop\""]",1576.93,{},190702,0,"""Asia""" +2023-09-15,68979,9359,"[\""Keyboard\""]",2154.32,"{\""promo\"": \""23%\""}",17619,0,"""Asia""" +2023-01-30,68980,8042,"[\""Wireless Mouse\"", \""Charger\""]",3662.37,"{\""seasonal\"": \""30%\""}",105938,0,"""Asia""" +2024-11-23,68981,7202,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",562.45,{},235401,0,"""North America""" +2023-01-26,68982,8223,"[\""Phone\"", \""Headphones\""]",4070.98,{},262697,0,"""Europe""" +2024-07-05,68983,2520,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",375.75,{},146356,0,"""Asia""" +2024-03-09,68984,7647,"[\""Wireless Mouse\""]",154.96,"{\"": \""22%\""}",220141,0,"""South America""" +2023-07-12,68985,9798,"[\""Laptop\"", \""Tablet\""]",2635.21,"{\""promo\"": \""21%\""}",282623,0,"""Europe""" +2024-04-03,68986,835,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3811.27,{},202567,1,"""South America""" +2024-01-04,68987,7454,"[\""Phone\"", \""Laptop\""]",1948.87,"{\""seasonal\"": \""13%\""}",10286,0,"""Asia""" +2023-02-16,68988,2876,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2396.55,"{\""promo\"": \""7%\""}",240602,1,"""Africa""" +2023-06-14,68989,7183,"[\""Tablet\""]",3103.93,{},253501,0,"""Africa""" +2023-09-28,68990,1407,"[\""Laptop\"", \""Charger\""]",4072.17,"{\""loyalty\"": \""5%\""}",114118,0,"""North America""" +2023-12-22,68991,4998,"[\""Charger\"", \""Wireless Mouse\""]",4302.39,{},49414,1,"""South America""" +2023-08-30,68992,8507,"[\""Phone\"", \""Keyboard\""]",1253.99,{},257463,0,"""Asia""" +2023-12-15,68993,646,"[\""Tablet\"", \""Phone\""]",2767.07,"{\""seasonal\"": \""12%\""}",162050,0,"""North America""" +2023-09-23,68994,489,"[\""Wireless Mouse\"", \""Phone\""]",4475.58,{},194346,1,"""Europe""" +2024-10-02,68995,6702,"[\""Charger\""]",4273.06,{},159827,0,"""Asia""" +2024-05-15,68996,9870,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",625.29,{},4700,1,"""North America""" +2023-05-31,68997,4610,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2638.63,{},232287,0,"""Africa""" +2023-04-21,68998,8191,"[\""Tablet\""]",1578.33,{},287536,0,"""Europe""" +2023-09-27,68999,3122,"[\""Laptop\"", \""Monitor\""]",1417.57,{},236031,1,"""Africa""" +2023-02-26,69000,1400,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1043.83,{},75232,1,"""Europe""" +2024-12-20,69001,5071,"[\""Tablet\"", \""Phone\""]",1100.65,"{\""promo\"": \""27%\""}",268290,1,"""Asia""" +2023-04-22,69002,4668,"[\""Laptop\"", \""Tablet\""]",3544.56,{},225585,0,"""North America""" +2024-03-29,69003,5295,"[\""Keyboard\"", \""Charger\""]",307.31,"{\""promo\"": \""24%\""}",73257,0,"""North America""" +2023-07-27,69004,9739,"[\""Headphones\"", \""Tablet\""]",737.8,"{\""loyalty\"": \""19%\""}",108478,0,"""Africa""" +2024-08-31,69005,1147,"[\""Monitor\"", \""Wireless Mouse\""]",1418.43,"{\""loyalty\"": \""8%\""}",158482,1,"""South America""" +2024-09-20,69006,2172,"[\""Monitor\""]",2597.5,"{\""loyalty\"": \""28%\""}",209157,1,"""Africa""" +2024-11-05,69007,6600,"[\""Headphones\""]",3461.6,{},107833,0,"""Africa""" +2023-06-28,69008,4312,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3791.58,{},293157,1,"""South America""" +2023-10-22,69009,5688,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2485.05,{},218113,0,"""South America""" +2024-03-12,69010,2951,"[\""Tablet\"", \""Phone\""]",4498.46,{},102162,1,"""North America""" +2023-07-03,69011,488,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2548.78,{},237253,0,"""South America""" +2023-12-10,69012,6187,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",156.42,{},133433,0,"""South America""" +2023-07-12,69013,8303,"[\""Wireless Mouse\""]",68.84,"{\""promo\"": \""18%\""}",228238,0,"""Africa""" +2024-06-15,69014,479,"[\""Tablet\""]",1203.63,"{\""seasonal\"": \""25%\""}",13587,1,"""Asia""" +2023-04-30,69015,8680,"[\""Tablet\""]",2850.44,"{\""seasonal\"": \""7%\""}",21538,1,"""Africa""" +2024-07-31,69016,2125,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4025.73,{},163917,1,"""South America""" +2023-04-26,69017,819,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4995.9,"{\"": \""29%\""}",57199,0,"""Africa""" +2023-12-28,69018,9015,"[\""Wireless Mouse\"", \""Monitor\""]",3547.47,{},241814,1,"""Africa""" +2024-07-25,69019,6846,"[\""Headphones\""]",2037.06,"{\""promo\"": \""23%\""}",20817,1,"""Africa""" +2023-08-28,69020,7390,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3290.69,"{\"": \""21%\""}",32876,0,"""Europe""" +2023-06-29,69021,8602,"[\""Phone\"", \""Keyboard\""]",4927.15,{},191304,1,"""Africa""" +2023-07-13,69022,1557,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1417.67,"{\"": \""11%\""}",293577,1,"""South America""" +2024-08-31,69023,9542,"[\""Keyboard\"", \""Headphones\""]",2756.47,{},126796,0,"""South America""" +2024-09-28,69024,7783,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2711.73,{},230748,0,"""Africa""" +2024-09-02,69025,6234,"[\""Monitor\""]",424.23,{},297872,0,"""North America""" +2024-02-07,69026,6263,"[\""Headphones\"", \""Monitor\""]",868.86,"{\"": \""26%\""}",14057,0,"""Africa""" +2024-11-22,69027,6047,"[\""Phone\"", \""Headphones\""]",450.22,"{\"": \""6%\""}",4526,1,"""Asia""" +2024-08-13,69028,1824,"[\""Headphones\"", \""Laptop\""]",1046.5,{},130709,1,"""Europe""" +2024-11-26,69029,6851,"[\""Monitor\""]",4723.65,"{\""promo\"": \""9%\""}",207328,0,"""Europe""" +2023-10-22,69030,3753,"[\""Keyboard\"", \""Headphones\""]",1890.82,{},285279,0,"""South America""" +2023-04-18,69031,4551,"[\""Headphones\"", \""Keyboard\""]",1246.96,"{\""seasonal\"": \""24%\""}",157979,0,"""Europe""" +2023-02-26,69032,9298,"[\""Charger\"", \""Monitor\""]",2460.7,{},49048,0,"""Europe""" +2024-02-18,69033,8192,"[\""Keyboard\"", \""Charger\""]",3389.48,"{\""loyalty\"": \""30%\""}",40357,0,"""Europe""" +2023-03-29,69034,9290,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2443.05,{},118939,1,"""Europe""" +2024-01-31,69035,3082,"[\""Keyboard\"", \""Tablet\""]",4626.38,"{\"": \""11%\""}",5000,0,"""South America""" +2023-04-08,69036,4670,"[\""Keyboard\""]",4270.78,"{\""promo\"": \""24%\""}",122680,1,"""Asia""" +2024-09-28,69037,331,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2760.9,{},163953,1,"""South America""" +2023-11-02,69038,8014,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3411.24,{},4147,1,"""Asia""" +2023-09-05,69039,394,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4735.0,"{\""seasonal\"": \""22%\""}",181802,0,"""Africa""" +2023-10-01,69040,3916,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4549.67,{},229441,0,"""South America""" +2024-03-10,69041,3362,"[\""Phone\""]",2261.79,{},205292,1,"""Africa""" +2023-03-10,69042,1579,"[\""Monitor\""]",4727.73,"{\""promo\"": \""30%\""}",100581,0,"""Asia""" +2024-02-20,69043,9491,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2320.28,"{\""promo\"": \""16%\""}",91241,0,"""South America""" +2024-12-06,69044,6993,"[\""Wireless Mouse\""]",3205.78,"{\""seasonal\"": \""11%\""}",38086,1,"""Africa""" +2024-08-06,69045,7699,"[\""Keyboard\"", \""Tablet\""]",491.53,"{\""seasonal\"": \""19%\""}",155051,1,"""Africa""" +2023-04-15,69046,3758,"[\""Phone\"", \""Laptop\""]",540.22,"{\""loyalty\"": \""7%\""}",245579,0,"""North America""" +2023-11-09,69047,5571,"[\""Headphones\""]",157.81,{},221064,0,"""Asia""" +2023-03-25,69048,2374,"[\""Laptop\""]",4639.33,{},246350,0,"""South America""" +2023-07-19,69049,9658,"[\""Charger\"", \""Wireless Mouse\""]",1170.29,"{\""seasonal\"": \""8%\""}",2589,0,"""Africa""" +2024-04-13,69050,6515,"[\""Wireless Mouse\"", \""Laptop\""]",3308.55,{},53292,0,"""Africa""" +2023-02-21,69051,3222,"[\""Headphones\""]",121.94,"{\""promo\"": \""22%\""}",52742,1,"""South America""" +2023-06-21,69052,3637,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2164.2,{},198160,1,"""Europe""" +2024-09-19,69053,1682,"[\""Tablet\""]",4589.5,"{\""promo\"": \""15%\""}",169186,0,"""Africa""" +2023-07-09,69054,5242,"[\""Laptop\"", \""Charger\""]",2327.95,"{\""loyalty\"": \""17%\""}",232199,0,"""Europe""" +2023-06-24,69055,6933,"[\""Phone\"", \""Laptop\""]",1880.11,"{\""seasonal\"": \""19%\""}",177999,1,"""Asia""" +2023-10-10,69056,5701,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3813.73,"{\""promo\"": \""27%\""}",7847,1,"""North America""" +2023-12-29,69057,3044,"[\""Keyboard\""]",2223.26,"{\"": \""24%\""}",205186,0,"""South America""" +2023-02-11,69058,4254,"[\""Wireless Mouse\"", \""Keyboard\""]",4036.33,{},29950,0,"""Africa""" +2023-10-09,69059,1012,"[\""Keyboard\"", \""Headphones\""]",2586.66,{},170779,0,"""Europe""" +2024-04-08,69060,5809,"[\""Headphones\"", \""Laptop\""]",87.19,{},101152,0,"""North America""" +2023-12-18,69061,2381,"[\""Wireless Mouse\"", \""Keyboard\""]",4042.3,{},126006,1,"""Asia""" +2024-05-08,69062,7793,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3642.16,{},58477,1,"""Europe""" +2024-10-16,69063,7468,"[\""Tablet\""]",4166.49,{},2050,1,"""Africa""" +2024-02-29,69064,3809,"[\""Wireless Mouse\"", \""Laptop\""]",1033.91,"{\""seasonal\"": \""17%\""}",242235,1,"""Africa""" +2023-09-21,69065,5370,"[\""Phone\""]",4898.1,"{\"": \""25%\""}",187891,0,"""Africa""" +2023-09-24,69066,8150,"[\""Charger\""]",1117.54,"{\""seasonal\"": \""12%\""}",155386,0,"""South America""" +2024-08-20,69067,4513,"[\""Phone\"", \""Headphones\""]",4980.38,{},67677,0,"""Africa""" +2024-04-21,69068,9712,"[\""Phone\"", \""Charger\""]",1958.56,{},265001,0,"""South America""" +2023-10-25,69069,6300,"[\""Monitor\""]",2661.83,{},199280,1,"""North America""" +2024-05-04,69070,6484,"[\""Tablet\"", \""Keyboard\""]",2996.04,{},130266,1,"""South America""" +2024-05-27,69071,263,"[\""Headphones\"", \""Phone\"", \""Charger\""]",867.51,"{\""promo\"": \""14%\""}",207917,0,"""Europe""" +2024-09-28,69072,6085,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",435.89,"{\""loyalty\"": \""11%\""}",225081,0,"""South America""" +2024-01-05,69073,2103,"[\""Keyboard\""]",3007.58,"{\""loyalty\"": \""26%\""}",259598,0,"""North America""" +2023-01-07,69074,889,"[\""Laptop\""]",4070.03,"{\""promo\"": \""22%\""}",292922,0,"""South America""" +2024-09-22,69075,5704,"[\""Charger\"", \""Headphones\""]",2068.52,{},92442,0,"""Africa""" +2023-07-08,69076,8691,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1087.77,{},34889,1,"""Africa""" +2024-07-15,69077,1631,"[\""Headphones\"", \""Charger\""]",2201.17,{},106500,0,"""North America""" +2023-06-03,69078,4688,"[\""Wireless Mouse\""]",725.13,"{\""loyalty\"": \""22%\""}",239893,1,"""Africa""" +2024-06-29,69079,3084,"[\""Tablet\"", \""Phone\""]",658.07,{},143685,1,"""Africa""" +2024-09-09,69080,8054,"[\""Keyboard\""]",1573.34,"{\"": \""17%\""}",102601,0,"""South America""" +2023-11-19,69081,8673,"[\""Keyboard\"", \""Laptop\""]",3557.42,"{\""loyalty\"": \""22%\""}",224493,0,"""Europe""" +2024-08-13,69082,453,"[\""Headphones\""]",2746.94,{},218342,1,"""Europe""" +2023-04-04,69083,1971,"[\""Charger\""]",1459.53,{},197249,1,"""Asia""" +2024-06-04,69084,3867,"[\""Tablet\"", \""Wireless Mouse\""]",588.03,{},130014,0,"""South America""" +2023-09-01,69085,4898,"[\""Wireless Mouse\"", \""Phone\""]",2007.0,{},94455,1,"""North America""" +2024-08-21,69086,4391,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4214.8,"{\""loyalty\"": \""26%\""}",146692,1,"""Europe""" +2023-03-11,69087,7689,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1335.96,"{\"": \""29%\""}",62350,0,"""North America""" +2023-01-20,69088,9721,"[\""Phone\"", \""Wireless Mouse\""]",198.61,{},175684,1,"""Europe""" +2024-11-23,69089,835,"[\""Monitor\"", \""Tablet\""]",2405.74,"{\""loyalty\"": \""12%\""}",179783,1,"""Africa""" +2023-01-03,69090,491,"[\""Monitor\"", \""Keyboard\""]",2508.3,"{\"": \""21%\""}",262803,1,"""Europe""" +2023-12-28,69091,4110,"[\""Wireless Mouse\"", \""Keyboard\""]",2300.61,"{\""loyalty\"": \""12%\""}",71005,1,"""Europe""" +2024-02-28,69092,102,"[\""Wireless Mouse\""]",1558.09,{},193784,1,"""South America""" +2023-02-03,69093,5251,"[\""Wireless Mouse\"", \""Monitor\""]",2636.05,"{\""seasonal\"": \""9%\""}",241265,1,"""Europe""" +2023-08-16,69094,9005,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3032.69,"{\""seasonal\"": \""11%\""}",52978,1,"""South America""" +2023-06-06,69095,2209,"[\""Wireless Mouse\""]",4306.0,"{\""promo\"": \""21%\""}",246236,0,"""North America""" +2024-01-14,69096,9670,"[\""Charger\""]",3687.19,{},254957,0,"""Asia""" +2023-04-24,69097,7894,"[\""Phone\"", \""Keyboard\""]",3988.87,{},167064,0,"""Europe""" +2023-04-10,69098,4750,"[\""Monitor\""]",3297.35,{},122788,0,"""North America""" +2024-06-01,69099,5966,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1909.55,"{\""promo\"": \""20%\""}",255374,1,"""Asia""" +2024-03-21,69100,4349,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1141.74,{},232375,0,"""Asia""" +2024-01-08,69101,7482,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3750.38,{},9448,1,"""North America""" +2023-10-04,69102,8153,"[\""Tablet\"", \""Monitor\""]",3293.47,"{\"": \""5%\""}",118242,0,"""Africa""" +2024-05-31,69103,4082,"[\""Laptop\""]",4253.33,{},169526,0,"""South America""" +2024-04-15,69104,4488,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1613.62,"{\""seasonal\"": \""29%\""}",256070,1,"""Europe""" +2023-06-02,69105,7257,"[\""Phone\"", \""Monitor\""]",3417.56,{},190015,0,"""Asia""" +2023-02-17,69106,4927,"[\""Monitor\"", \""Laptop\""]",1366.72,"{\"": \""7%\""}",258011,0,"""Asia""" +2024-06-24,69107,7704,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3226.4,"{\""loyalty\"": \""28%\""}",214961,0,"""North America""" +2024-10-06,69108,8165,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3413.08,"{\""loyalty\"": \""9%\""}",63770,1,"""Asia""" +2024-07-08,69109,8472,"[\""Monitor\"", \""Keyboard\""]",275.45,"{\""seasonal\"": \""19%\""}",160965,0,"""South America""" +2024-07-04,69110,486,"[\""Keyboard\"", \""Tablet\""]",3030.73,"{\"": \""22%\""}",216454,1,"""Asia""" +2023-03-29,69111,7706,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3676.5,"{\"": \""9%\""}",163602,1,"""Europe""" +2024-08-24,69112,2064,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2446.7,"{\""loyalty\"": \""7%\""}",172400,1,"""Africa""" +2024-07-19,69113,7818,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4889.78,{},238323,0,"""Europe""" +2023-03-23,69114,6988,"[\""Headphones\"", \""Monitor\""]",1629.78,"{\"": \""29%\""}",212481,1,"""North America""" +2023-08-06,69115,2151,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",72.81,{},107528,1,"""Asia""" +2023-08-16,69116,1363,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4739.57,{},58210,0,"""Africa""" +2024-08-28,69117,3265,"[\""Phone\"", \""Laptop\""]",2898.78,{},40162,1,"""Europe""" +2024-01-20,69118,5952,"[\""Charger\"", \""Wireless Mouse\""]",4673.16,{},268173,0,"""North America""" +2023-01-14,69119,6176,"[\""Phone\"", \""Headphones\""]",288.0,"{\"": \""6%\""}",13899,1,"""South America""" +2023-05-21,69120,5963,"[\""Laptop\""]",940.53,"{\""loyalty\"": \""26%\""}",15768,1,"""Africa""" +2023-03-29,69121,4580,"[\""Laptop\"", \""Headphones\""]",4565.55,{},165184,1,"""Asia""" +2023-11-20,69122,8572,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3291.97,{},156265,0,"""Africa""" +2023-11-20,69123,6507,"[\""Tablet\"", \""Laptop\""]",981.18,{},91946,0,"""Europe""" +2024-09-20,69124,6224,"[\""Phone\""]",3968.02,"{\""seasonal\"": \""24%\""}",47913,1,"""Europe""" +2024-12-11,69125,1144,"[\""Laptop\""]",460.85,{},245952,0,"""Europe""" +2023-05-05,69126,26,"[\""Keyboard\""]",2585.9,"{\"": \""29%\""}",126696,1,"""Asia""" +2024-11-08,69127,5428,"[\""Headphones\"", \""Wireless Mouse\""]",2101.66,{},100481,0,"""Europe""" +2024-05-09,69128,6667,"[\""Wireless Mouse\""]",4386.91,{},125588,1,"""Europe""" +2024-04-02,69129,5711,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",236.56,"{\""promo\"": \""11%\""}",230982,1,"""South America""" +2023-08-09,69130,2330,"[\""Keyboard\"", \""Tablet\""]",2934.28,{},30195,0,"""Africa""" +2024-03-14,69131,8127,"[\""Monitor\"", \""Laptop\""]",3607.75,{},141328,1,"""Africa""" +2023-01-04,69132,3121,"[\""Monitor\""]",3350.54,{},258978,1,"""South America""" +2024-09-09,69133,4573,"[\""Wireless Mouse\"", \""Phone\""]",2708.31,{},9151,0,"""Europe""" +2023-06-05,69134,2671,"[\""Laptop\"", \""Keyboard\""]",1888.25,{},209403,1,"""Africa""" +2023-04-10,69135,6688,"[\""Headphones\"", \""Laptop\""]",4544.39,{},193139,1,"""Europe""" +2023-10-27,69136,1216,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1787.21,{},277946,0,"""South America""" +2024-06-09,69137,1232,"[\""Phone\""]",4192.75,{},59595,1,"""Europe""" +2023-03-26,69138,8766,"[\""Laptop\"", \""Phone\""]",805.1,{},38484,1,"""Europe""" +2024-05-09,69139,8217,"[\""Headphones\"", \""Phone\""]",505.73,"{\""promo\"": \""16%\""}",184993,0,"""Europe""" +2024-11-18,69140,5960,"[\""Monitor\"", \""Laptop\""]",2237.99,"{\""promo\"": \""29%\""}",281232,1,"""Asia""" +2023-11-11,69141,7523,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3216.55,"{\""promo\"": \""27%\""}",299726,1,"""Africa""" +2023-09-17,69142,1155,"[\""Headphones\"", \""Monitor\""]",156.42,"{\""seasonal\"": \""13%\""}",192871,0,"""Africa""" +2023-12-06,69143,8790,"[\""Phone\""]",1438.88,"{\""loyalty\"": \""23%\""}",122311,1,"""South America""" +2024-05-03,69144,4561,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4364.97,{},67351,0,"""Europe""" +2023-05-05,69145,5315,"[\""Monitor\"", \""Charger\""]",1268.58,"{\""promo\"": \""22%\""}",279446,1,"""South America""" +2023-02-10,69146,7587,"[\""Headphones\""]",1422.91,"{\""loyalty\"": \""19%\""}",147822,1,"""Europe""" +2024-07-02,69147,3539,"[\""Tablet\"", \""Keyboard\""]",1680.85,"{\""seasonal\"": \""25%\""}",86028,0,"""Europe""" +2024-07-17,69148,9420,"[\""Charger\"", \""Headphones\""]",2933.93,"{\""seasonal\"": \""5%\""}",132383,1,"""Europe""" +2024-12-24,69149,6281,"[\""Headphones\""]",1023.43,"{\""promo\"": \""26%\""}",9242,0,"""South America""" +2024-04-27,69150,2634,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4517.46,{},52367,0,"""North America""" +2023-02-24,69151,2613,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1827.07,"{\"": \""25%\""}",57098,1,"""Asia""" +2024-02-02,69152,3567,"[\""Wireless Mouse\""]",235.55,"{\""promo\"": \""27%\""}",214591,0,"""South America""" +2023-08-16,69153,3947,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",877.46,{},126200,0,"""Asia""" +2023-12-12,69154,9943,"[\""Charger\"", \""Monitor\""]",1904.89,{},226301,1,"""North America""" +2023-06-02,69155,6035,"[\""Monitor\""]",4732.77,{},58163,0,"""Europe""" +2024-01-31,69156,582,"[\""Wireless Mouse\""]",3185.47,{},44797,1,"""Africa""" +2024-09-30,69157,4366,"[\""Monitor\""]",1386.15,{},64009,1,"""Asia""" +2024-12-19,69158,8619,"[\""Monitor\"", \""Phone\"", \""Charger\""]",761.4,"{\""promo\"": \""17%\""}",108534,1,"""South America""" +2023-02-02,69159,3505,"[\""Phone\""]",1025.07,{},57664,0,"""South America""" +2023-03-10,69160,2354,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",391.1,"{\""promo\"": \""21%\""}",31296,1,"""North America""" +2024-06-01,69161,8890,"[\""Laptop\"", \""Monitor\""]",1833.6,"{\""promo\"": \""20%\""}",177641,0,"""South America""" +2023-09-05,69162,4212,"[\""Keyboard\""]",4751.66,{},180921,0,"""North America""" +2023-06-22,69163,4709,"[\""Headphones\"", \""Monitor\""]",1445.75,{},42084,0,"""Africa""" +2024-07-31,69164,8823,"[\""Charger\"", \""Monitor\""]",3836.94,"{\""promo\"": \""21%\""}",60589,1,"""South America""" +2023-04-22,69165,2398,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2966.5,"{\""seasonal\"": \""16%\""}",108828,0,"""Asia""" +2024-10-12,69166,9732,"[\""Charger\"", \""Keyboard\""]",3348.8,{},138893,0,"""Asia""" +2023-02-04,69167,3786,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",83.86,"{\""loyalty\"": \""20%\""}",16881,1,"""North America""" +2024-05-24,69168,6877,"[\""Keyboard\"", \""Laptop\""]",273.52,{},32295,1,"""Africa""" +2024-08-15,69169,2540,"[\""Tablet\"", \""Headphones\""]",659.12,"{\"": \""17%\""}",83362,1,"""South America""" +2024-09-24,69170,8835,"[\""Headphones\"", \""Laptop\""]",1662.42,"{\"": \""6%\""}",26780,0,"""Africa""" +2023-05-13,69171,817,"[\""Keyboard\""]",3497.75,{},298928,1,"""Europe""" +2024-09-21,69172,8748,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4560.98,"{\"": \""21%\""}",53571,1,"""Africa""" +2023-11-19,69173,5183,"[\""Tablet\""]",4395.69,{},237797,0,"""Europe""" +2024-12-09,69174,1981,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3527.72,{},122817,1,"""Africa""" +2023-02-19,69175,5067,"[\""Laptop\"", \""Monitor\""]",908.45,"{\""seasonal\"": \""26%\""}",59844,0,"""North America""" +2023-08-03,69176,4876,"[\""Phone\""]",1362.99,"{\"": \""20%\""}",183708,0,"""Asia""" +2024-03-07,69177,1416,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2477.27,"{\""loyalty\"": \""18%\""}",190083,1,"""South America""" +2023-10-29,69178,8712,"[\""Charger\"", \""Monitor\""]",536.39,"{\""loyalty\"": \""5%\""}",275956,1,"""North America""" +2024-03-19,69179,161,"[\""Keyboard\"", \""Charger\""]",1858.34,"{\"": \""8%\""}",259932,1,"""Asia""" +2024-03-15,69180,3175,"[\""Tablet\"", \""Charger\""]",1668.67,"{\""loyalty\"": \""5%\""}",273787,1,"""South America""" +2023-11-13,69181,5728,"[\""Laptop\""]",2050.95,{},256033,0,"""Africa""" +2023-09-09,69182,3070,"[\""Phone\"", \""Laptop\""]",4533.99,"{\""promo\"": \""29%\""}",38029,1,"""South America""" +2023-02-27,69183,1222,"[\""Tablet\""]",476.5,{},287503,0,"""Europe""" +2023-03-01,69184,3106,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2813.74,{},168248,1,"""North America""" +2024-12-07,69185,5166,"[\""Wireless Mouse\""]",2161.72,{},36722,1,"""South America""" +2024-01-19,69186,797,"[\""Keyboard\""]",3173.37,{},51245,1,"""Asia""" +2023-07-12,69187,8613,"[\""Phone\"", \""Charger\""]",4890.76,"{\""seasonal\"": \""16%\""}",10370,1,"""South America""" +2023-01-12,69188,7699,"[\""Headphones\""]",3191.54,{},176784,1,"""North America""" +2023-05-26,69189,1466,"[\""Monitor\"", \""Tablet\""]",4023.57,{},290597,1,"""Asia""" +2023-11-26,69190,2539,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3577.4,{},226606,0,"""South America""" +2023-09-27,69191,7984,"[\""Wireless Mouse\""]",2653.14,{},89463,0,"""Europe""" +2024-05-29,69192,6775,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1830.29,{},179204,0,"""South America""" +2023-06-30,69193,753,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1990.55,"{\"": \""11%\""}",14982,1,"""South America""" +2023-03-18,69194,6222,"[\""Charger\""]",4242.77,"{\"": \""6%\""}",59952,1,"""North America""" +2024-07-10,69195,7454,"[\""Tablet\""]",4621.85,"{\""loyalty\"": \""17%\""}",17983,1,"""North America""" +2023-02-27,69196,5224,"[\""Headphones\""]",4295.05,"{\""seasonal\"": \""11%\""}",204481,1,"""North America""" +2024-07-29,69197,8556,"[\""Phone\"", \""Charger\""]",4671.32,"{\"": \""28%\""}",239761,1,"""Europe""" +2023-03-09,69198,7597,"[\""Laptop\""]",3468.04,{},93981,1,"""South America""" +2024-01-22,69199,7418,"[\""Laptop\"", \""Keyboard\""]",2081.52,"{\""loyalty\"": \""11%\""}",284586,1,"""Asia""" +2023-08-07,69200,2249,"[\""Monitor\"", \""Charger\""]",866.1,{},264410,1,"""Europe""" +2023-07-08,69201,2650,"[\""Laptop\"", \""Charger\""]",350.77,{},112685,0,"""North America""" +2023-07-30,69202,8951,"[\""Tablet\"", \""Headphones\""]",3909.58,"{\""seasonal\"": \""17%\""}",130980,0,"""Europe""" +2023-03-06,69203,8130,"[\""Wireless Mouse\"", \""Monitor\""]",3927.08,{},155721,1,"""North America""" +2023-05-24,69204,7979,"[\""Headphones\""]",3879.28,{},143777,1,"""Europe""" +2024-05-24,69205,6395,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",362.9,{},153664,1,"""South America""" +2023-07-07,69206,2989,"[\""Phone\""]",640.77,{},24294,1,"""South America""" +2023-05-19,69207,4720,"[\""Monitor\"", \""Phone\""]",4694.79,{},183156,1,"""Asia""" +2024-03-11,69208,1344,"[\""Headphones\""]",3052.36,{},268681,0,"""Asia""" +2023-11-14,69209,7863,"[\""Tablet\"", \""Charger\""]",3169.54,{},121490,0,"""South America""" +2024-11-16,69210,2813,"[\""Keyboard\""]",298.3,"{\""seasonal\"": \""6%\""}",294888,0,"""Asia""" +2023-02-16,69211,6816,"[\""Tablet\"", \""Monitor\""]",1788.56,"{\""seasonal\"": \""19%\""}",165513,0,"""Asia""" +2024-01-01,69212,8186,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2471.74,{},137097,1,"""Europe""" +2023-11-08,69213,8446,"[\""Keyboard\""]",3605.74,"{\""promo\"": \""15%\""}",44094,1,"""Europe""" +2023-01-24,69214,477,"[\""Headphones\""]",3552.45,"{\""seasonal\"": \""17%\""}",201426,0,"""Asia""" +2023-04-07,69215,8086,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1030.49,"{\""seasonal\"": \""16%\""}",63090,1,"""Africa""" +2023-10-11,69216,948,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4792.14,{},131821,1,"""Asia""" +2024-05-29,69217,4623,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2670.44,{},174455,0,"""Africa""" +2023-06-21,69218,5804,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2173.8,"{\""promo\"": \""11%\""}",66207,0,"""North America""" +2024-04-03,69219,1208,"[\""Wireless Mouse\"", \""Laptop\""]",896.24,"{\""seasonal\"": \""7%\""}",282864,1,"""South America""" +2024-10-11,69220,1709,"[\""Keyboard\""]",2660.08,{},284685,0,"""Europe""" +2023-07-19,69221,9212,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",762.78,{},131291,0,"""South America""" +2024-02-03,69222,2482,"[\""Tablet\"", \""Monitor\""]",3768.2,{},163388,1,"""Europe""" +2024-09-30,69223,1414,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",368.0,{},292872,0,"""Africa""" +2023-09-03,69224,6115,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",948.51,"{\"": \""7%\""}",183045,1,"""North America""" +2024-02-26,69225,6582,"[\""Phone\""]",4559.13,"{\""promo\"": \""24%\""}",274373,0,"""Europe""" +2023-09-18,69226,5809,"[\""Monitor\""]",2262.66,"{\""loyalty\"": \""16%\""}",242155,1,"""North America""" +2024-02-27,69227,3548,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4213.89,"{\""promo\"": \""12%\""}",84618,0,"""North America""" +2023-01-05,69228,296,"[\""Charger\"", \""Phone\""]",3088.48,"{\"": \""7%\""}",241684,0,"""Europe""" +2024-05-06,69229,6237,"[\""Keyboard\"", \""Phone\""]",1027.67,{},81532,1,"""Asia""" +2024-10-09,69230,5933,"[\""Monitor\"", \""Tablet\""]",3774.27,{},188481,1,"""Europe""" +2024-10-12,69231,3930,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1015.0,"{\""promo\"": \""17%\""}",92125,0,"""Asia""" +2023-09-18,69232,6011,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3688.77,{},165446,0,"""South America""" +2024-04-30,69233,1278,"[\""Charger\""]",321.33,{},218800,0,"""North America""" +2023-11-16,69234,5151,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1171.32,"{\"": \""12%\""}",105792,0,"""Europe""" +2024-08-27,69235,5689,"[\""Wireless Mouse\"", \""Phone\""]",4063.72,"{\""loyalty\"": \""14%\""}",238619,1,"""Asia""" +2024-11-19,69236,6337,"[\""Keyboard\""]",3542.92,"{\""loyalty\"": \""21%\""}",223753,0,"""Africa""" +2023-08-05,69237,8070,"[\""Laptop\"", \""Wireless Mouse\""]",2880.56,"{\""seasonal\"": \""7%\""}",50006,1,"""Asia""" +2023-05-09,69238,9870,"[\""Headphones\""]",3169.71,{},115565,0,"""North America""" +2024-01-30,69239,1924,"[\""Laptop\""]",3687.27,"{\""seasonal\"": \""28%\""}",23148,0,"""Asia""" +2024-08-08,69240,2633,"[\""Laptop\""]",3455.93,{},96786,0,"""Europe""" +2024-09-29,69241,5021,"[\""Charger\"", \""Tablet\""]",2514.16,"{\""promo\"": \""13%\""}",142343,1,"""Africa""" +2024-06-14,69242,9080,"[\""Headphones\""]",441.03,"{\""loyalty\"": \""12%\""}",290380,0,"""Asia""" +2023-08-28,69243,6290,"[\""Headphones\""]",4638.62,{},126113,0,"""Africa""" +2023-01-19,69244,8198,"[\""Charger\"", \""Headphones\""]",808.53,{},69115,1,"""Europe""" +2024-03-26,69245,9507,"[\""Phone\""]",215.42,{},68413,0,"""Asia""" +2024-01-28,69246,9067,"[\""Laptop\"", \""Phone\""]",672.39,{},168972,0,"""Europe""" +2024-10-09,69247,5177,"[\""Charger\""]",4697.92,"{\""seasonal\"": \""19%\""}",140554,0,"""Asia""" +2024-11-16,69248,2136,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1640.27,"{\""loyalty\"": \""22%\""}",250022,1,"""Europe""" +2023-04-03,69249,3968,"[\""Headphones\""]",469.97,{},130944,0,"""Africa""" +2024-12-06,69250,3262,"[\""Headphones\"", \""Wireless Mouse\""]",1702.99,"{\""loyalty\"": \""17%\""}",202798,1,"""South America""" +2023-01-09,69251,8595,"[\""Monitor\"", \""Headphones\""]",53.35,{},206167,0,"""Europe""" +2023-12-09,69252,9141,"[\""Monitor\"", \""Charger\""]",3053.24,{},119011,1,"""Africa""" +2024-02-18,69253,5930,"[\""Charger\""]",2019.99,"{\""seasonal\"": \""16%\""}",292064,0,"""North America""" +2024-10-07,69254,8557,"[\""Monitor\""]",4261.94,"{\"": \""6%\""}",213571,0,"""Europe""" +2023-06-29,69255,9977,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4943.59,{},254946,0,"""South America""" +2024-09-23,69256,5912,"[\""Keyboard\"", \""Wireless Mouse\""]",1661.35,{},37877,1,"""North America""" +2024-02-29,69257,6977,"[\""Tablet\""]",1490.78,{},29093,0,"""Asia""" +2024-10-03,69258,5811,"[\""Wireless Mouse\"", \""Headphones\""]",4754.08,"{\""seasonal\"": \""17%\""}",211551,0,"""Africa""" +2023-09-27,69259,1921,"[\""Headphones\""]",3191.56,"{\""seasonal\"": \""23%\""}",130858,1,"""North America""" +2024-10-04,69260,9994,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1735.4,"{\""promo\"": \""17%\""}",126384,1,"""Africa""" +2024-08-28,69261,7145,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1228.72,"{\"": \""23%\""}",62442,1,"""Europe""" +2023-02-23,69262,6969,"[\""Wireless Mouse\""]",719.07,{},9624,0,"""Africa""" +2023-05-18,69263,1474,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3879.91,"{\"": \""20%\""}",291424,1,"""Europe""" +2023-06-29,69264,5491,"[\""Headphones\""]",3389.23,"{\"": \""24%\""}",291585,0,"""Africa""" +2023-04-06,69265,1899,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2716.97,"{\"": \""11%\""}",261064,1,"""Europe""" +2024-09-06,69266,1777,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1229.18,"{\""loyalty\"": \""11%\""}",296158,0,"""South America""" +2024-08-29,69267,1077,"[\""Wireless Mouse\"", \""Keyboard\""]",2150.81,{},221258,0,"""Africa""" +2023-11-24,69268,5999,"[\""Tablet\""]",82.57,"{\""loyalty\"": \""14%\""}",113694,1,"""North America""" +2023-08-25,69269,7242,"[\""Laptop\"", \""Tablet\""]",271.52,"{\""loyalty\"": \""29%\""}",247850,1,"""South America""" +2024-09-21,69270,9196,"[\""Headphones\"", \""Tablet\""]",4451.83,{},38652,0,"""Asia""" +2024-07-01,69271,6651,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2409.07,{},48587,1,"""North America""" +2023-01-02,69272,902,"[\""Charger\"", \""Headphones\""]",2041.99,"{\""seasonal\"": \""19%\""}",125708,0,"""Asia""" +2024-06-02,69273,2459,"[\""Wireless Mouse\"", \""Phone\""]",107.35,{},255928,1,"""Asia""" +2024-11-27,69274,1923,"[\""Charger\"", \""Phone\""]",1100.35,"{\""seasonal\"": \""16%\""}",106797,1,"""Europe""" +2023-08-26,69275,5542,"[\""Phone\"", \""Tablet\""]",598.05,{},136386,0,"""Africa""" +2023-05-31,69276,6727,"[\""Laptop\""]",3151.03,"{\""loyalty\"": \""10%\""}",160989,0,"""South America""" +2023-05-02,69277,4097,"[\""Headphones\""]",4955.6,"{\"": \""27%\""}",121061,0,"""Africa""" +2023-11-02,69278,946,"[\""Laptop\"", \""Tablet\""]",2692.52,{},102688,0,"""North America""" +2024-04-01,69279,6772,"[\""Charger\"", \""Tablet\""]",2648.06,"{\""loyalty\"": \""12%\""}",266892,1,"""Africa""" +2024-06-13,69280,5094,"[\""Wireless Mouse\"", \""Phone\""]",2550.87,"{\""promo\"": \""16%\""}",295219,1,"""South America""" +2023-02-07,69281,4208,"[\""Monitor\"", \""Headphones\""]",442.01,"{\""promo\"": \""5%\""}",25359,1,"""Africa""" +2023-10-30,69282,5600,"[\""Tablet\""]",919.23,{},87821,0,"""North America""" +2024-07-11,69283,333,"[\""Charger\"", \""Keyboard\""]",4854.8,{},226043,0,"""Asia""" +2024-09-04,69284,9672,"[\""Headphones\""]",370.5,{},23366,0,"""Asia""" +2023-06-27,69285,4104,"[\""Wireless Mouse\""]",2597.23,{},264350,0,"""Africa""" +2023-10-26,69286,3540,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2443.71,{},78987,1,"""Europe""" +2024-01-01,69287,587,"[\""Wireless Mouse\"", \""Tablet\""]",2858.65,{},222809,1,"""Europe""" +2024-02-28,69288,2615,"[\""Monitor\""]",1129.2,"{\""loyalty\"": \""14%\""}",207754,1,"""North America""" +2024-10-12,69289,5325,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4658.21,"{\""promo\"": \""17%\""}",224085,0,"""Europe""" +2024-06-23,69290,8506,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4210.14,"{\""loyalty\"": \""6%\""}",235554,0,"""North America""" +2024-06-07,69291,5850,"[\""Phone\""]",2255.37,{},151157,1,"""Africa""" +2024-09-05,69292,463,"[\""Headphones\""]",4383.36,"{\""promo\"": \""20%\""}",91501,0,"""North America""" +2024-01-25,69293,8576,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3180.28,"{\""seasonal\"": \""17%\""}",29863,0,"""North America""" +2024-09-30,69294,2669,"[\""Wireless Mouse\""]",4964.87,"{\"": \""29%\""}",206927,0,"""Africa""" +2023-02-14,69295,5285,"[\""Wireless Mouse\"", \""Phone\""]",1412.0,{},123440,0,"""Asia""" +2023-02-15,69296,2666,"[\""Tablet\"", \""Charger\""]",4063.71,{},118910,1,"""Asia""" +2023-08-22,69297,9229,"[\""Laptop\""]",3918.87,{},149558,1,"""Europe""" +2023-04-17,69298,2014,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4091.56,{},176493,0,"""Asia""" +2023-12-13,69299,1360,"[\""Monitor\"", \""Wireless Mouse\""]",1199.78,{},248530,0,"""North America""" +2023-10-05,69300,3522,"[\""Keyboard\""]",2383.84,"{\""promo\"": \""20%\""}",229032,1,"""North America""" +2023-08-07,69301,5824,"[\""Charger\"", \""Laptop\""]",4389.61,{},90752,1,"""Europe""" +2023-01-10,69302,322,"[\""Tablet\""]",84.22,{},211112,0,"""North America""" +2024-09-17,69303,2156,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3494.47,{},232029,1,"""North America""" +2023-02-27,69304,6222,"[\""Laptop\"", \""Wireless Mouse\""]",2282.85,"{\""promo\"": \""27%\""}",119308,0,"""North America""" +2024-08-31,69305,3804,"[\""Headphones\"", \""Laptop\""]",2492.36,{},220968,1,"""North America""" +2024-08-27,69306,9255,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3359.1,"{\""loyalty\"": \""17%\""}",232582,0,"""South America""" +2023-02-07,69307,8159,"[\""Monitor\"", \""Charger\""]",3511.25,"{\""seasonal\"": \""10%\""}",136541,1,"""Asia""" +2023-09-24,69308,4022,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1968.13,{},246932,1,"""North America""" +2024-09-19,69309,2662,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",1282.76,{},185582,0,"""Europe""" +2024-10-11,69310,3366,"[\""Wireless Mouse\""]",2216.65,{},196396,0,"""Asia""" +2023-05-20,69311,8778,"[\""Monitor\"", \""Phone\""]",2146.05,"{\"": \""27%\""}",214997,1,"""Africa""" +2024-01-16,69312,644,"[\""Monitor\""]",4790.82,{},75324,0,"""Africa""" +2024-08-22,69313,6224,"[\""Phone\""]",2672.9,{},212250,0,"""Africa""" +2023-02-19,69314,3860,"[\""Wireless Mouse\""]",1645.61,"{\""loyalty\"": \""19%\""}",199580,1,"""Asia""" +2024-08-17,69315,2020,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",985.29,{},222898,0,"""North America""" +2023-02-11,69316,539,"[\""Laptop\"", \""Phone\""]",2693.13,"{\""promo\"": \""9%\""}",4672,1,"""North America""" +2023-12-13,69317,1602,"[\""Keyboard\""]",4632.98,"{\""loyalty\"": \""22%\""}",97938,0,"""North America""" +2023-02-13,69318,156,"[\""Charger\"", \""Laptop\""]",951.85,{},225256,0,"""Europe""" +2024-09-04,69319,6102,"[\""Keyboard\"", \""Charger\""]",4229.84,{},176869,1,"""Asia""" +2023-07-25,69320,2641,"[\""Laptop\"", \""Wireless Mouse\""]",3957.6,{},282136,0,"""Europe""" +2024-09-21,69321,7983,"[\""Phone\""]",4692.44,{},158674,1,"""South America""" +2024-11-16,69322,9138,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",462.28,{},58510,0,"""Africa""" +2023-10-11,69323,4395,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4264.9,{},51654,0,"""South America""" +2024-01-28,69324,6750,"[\""Phone\"", \""Headphones\""]",909.99,{},166963,1,"""Africa""" +2023-09-30,69325,4124,"[\""Laptop\""]",2350.41,{},241214,1,"""Asia""" +2024-03-07,69326,6988,"[\""Charger\""]",4917.41,{},158994,0,"""Africa""" +2024-12-03,69327,7051,"[\""Charger\""]",836.06,{},149563,0,"""Asia""" +2024-11-20,69328,3736,"[\""Tablet\"", \""Monitor\""]",4583.9,{},33469,1,"""Africa""" +2023-12-17,69329,3966,"[\""Headphones\"", \""Keyboard\""]",1043.15,{},11276,1,"""South America""" +2024-01-13,69330,8380,"[\""Wireless Mouse\"", \""Headphones\""]",4859.57,"{\""seasonal\"": \""25%\""}",4031,1,"""Asia""" +2023-06-22,69331,4935,"[\""Phone\"", \""Laptop\""]",1093.22,{},282391,0,"""Africa""" +2023-03-30,69332,7410,"[\""Charger\""]",1820.37,"{\""seasonal\"": \""22%\""}",258549,1,"""Asia""" +2023-10-15,69333,2855,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3775.55,"{\""loyalty\"": \""18%\""}",261342,1,"""North America""" +2024-11-20,69334,4429,"[\""Monitor\"", \""Laptop\""]",1312.58,"{\""seasonal\"": \""8%\""}",294055,1,"""Asia""" +2024-05-11,69335,9508,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4120.17,{},13066,0,"""Asia""" +2024-11-27,69336,4998,"[\""Keyboard\"", \""Phone\""]",4098.14,{},122996,0,"""Europe""" +2024-08-25,69337,4920,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2530.74,{},9613,1,"""Africa""" +2024-08-09,69338,7300,"[\""Tablet\""]",2998.77,{},195053,0,"""Europe""" +2024-06-11,69339,1384,"[\""Laptop\""]",818.3,{},229157,0,"""Asia""" +2024-07-17,69340,3411,"[\""Monitor\"", \""Wireless Mouse\""]",1362.32,"{\""loyalty\"": \""18%\""}",201245,0,"""North America""" +2023-01-31,69341,1763,"[\""Phone\""]",1484.68,"{\""promo\"": \""8%\""}",119961,0,"""Europe""" +2024-10-27,69342,7215,"[\""Wireless Mouse\"", \""Laptop\""]",2910.49,"{\""seasonal\"": \""19%\""}",134179,0,"""North America""" +2024-08-14,69343,883,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4892.88,"{\""promo\"": \""21%\""}",113448,1,"""Asia""" +2024-02-10,69344,8718,"[\""Keyboard\""]",2886.15,{},254241,0,"""North America""" +2024-06-25,69345,9674,"[\""Headphones\""]",1228.63,"{\"": \""27%\""}",252842,1,"""Asia""" +2023-09-13,69346,4515,"[\""Monitor\"", \""Charger\""]",572.77,"{\"": \""11%\""}",10720,1,"""Europe""" +2023-12-07,69347,6369,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4675.07,{},82346,0,"""Europe""" +2024-11-30,69348,6157,"[\""Keyboard\""]",1519.09,"{\"": \""30%\""}",85174,0,"""North America""" +2024-05-14,69349,2772,"[\""Headphones\"", \""Keyboard\""]",4117.19,{},283338,1,"""South America""" +2023-03-13,69350,7204,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2608.17,{},236118,1,"""South America""" +2024-01-08,69351,5576,"[\""Phone\""]",900.95,{},96590,1,"""Africa""" +2024-06-22,69352,379,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1152.35,"{\"": \""19%\""}",64698,0,"""Europe""" +2024-04-17,69353,7605,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3823.96,"{\"": \""25%\""}",137620,1,"""Asia""" +2024-03-29,69354,3598,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3049.87,"{\""loyalty\"": \""16%\""}",138739,0,"""Asia""" +2023-04-26,69355,6904,"[\""Laptop\""]",2432.47,{},64966,1,"""Europe""" +2023-08-05,69356,3975,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2673.54,{},182430,1,"""Africa""" +2023-05-18,69357,3650,"[\""Monitor\"", \""Keyboard\""]",1022.16,{},95783,0,"""Africa""" +2024-04-04,69358,5896,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4908.96,"{\""seasonal\"": \""23%\""}",208619,0,"""Africa""" +2023-06-01,69359,8864,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4227.28,{},36422,0,"""North America""" +2023-01-14,69360,2805,"[\""Headphones\"", \""Laptop\""]",2118.76,"{\""loyalty\"": \""20%\""}",153429,0,"""North America""" +2024-08-07,69361,3833,"[\""Keyboard\"", \""Headphones\""]",2912.48,{},19103,1,"""North America""" +2024-10-08,69362,9489,"[\""Phone\""]",866.07,"{\""promo\"": \""22%\""}",171525,1,"""Asia""" +2023-08-06,69363,1514,"[\""Phone\""]",4099.83,{},50833,0,"""Asia""" +2023-07-22,69364,1664,"[\""Headphones\"", \""Tablet\""]",4923.99,{},287164,0,"""Africa""" +2023-11-06,69365,2975,"[\""Headphones\"", \""Charger\""]",1355.79,{},15923,0,"""North America""" +2024-04-30,69366,7930,"[\""Tablet\""]",441.81,{},89663,1,"""Asia""" +2023-08-03,69367,9221,"[\""Laptop\"", \""Wireless Mouse\""]",1323.11,{},139714,1,"""Asia""" +2023-12-04,69368,5548,"[\""Headphones\""]",4550.56,{},23511,1,"""South America""" +2024-03-17,69369,6254,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4356.33,{},278107,1,"""South America""" +2023-12-21,69370,5375,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2989.95,"{\"": \""18%\""}",5819,1,"""Asia""" +2024-09-16,69371,9885,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3248.95,"{\"": \""16%\""}",114036,0,"""South America""" +2024-02-28,69372,9317,"[\""Phone\""]",2000.89,{},6166,1,"""South America""" +2024-10-25,69373,7236,"[\""Headphones\""]",3839.96,{},107912,1,"""Europe""" +2024-08-06,69374,1555,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1500.31,{},178792,1,"""South America""" +2023-09-10,69375,9293,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3308.64,{},287287,1,"""South America""" +2023-08-23,69376,7048,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2769.31,"{\""promo\"": \""7%\""}",56888,0,"""Asia""" +2024-10-04,69377,8756,"[\""Charger\""]",3261.29,"{\""promo\"": \""25%\""}",256410,0,"""North America""" +2024-02-25,69378,5323,"[\""Headphones\""]",224.81,"{\""loyalty\"": \""20%\""}",256013,1,"""North America""" +2024-06-24,69379,7872,"[\""Phone\"", \""Keyboard\""]",4374.72,{},161690,1,"""Africa""" +2023-04-30,69380,2255,"[\""Tablet\""]",62.32,"{\""loyalty\"": \""10%\""}",143211,0,"""North America""" +2024-04-17,69381,2601,"[\""Phone\""]",3934.51,{},106343,1,"""South America""" +2023-10-06,69382,513,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",691.84,"{\""promo\"": \""6%\""}",236400,0,"""North America""" +2024-01-30,69383,7911,"[\""Monitor\"", \""Wireless Mouse\""]",906.06,"{\"": \""27%\""}",79375,1,"""South America""" +2024-11-09,69384,3713,"[\""Tablet\"", \""Keyboard\""]",4554.71,"{\"": \""9%\""}",84109,1,"""Asia""" +2024-08-03,69385,4207,"[\""Laptop\"", \""Headphones\""]",1482.79,{},161297,1,"""South America""" +2024-09-07,69386,516,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4789.2,{},49724,1,"""North America""" +2023-10-03,69387,411,"[\""Wireless Mouse\"", \""Keyboard\""]",1148.83,"{\"": \""23%\""}",138357,1,"""South America""" +2023-08-01,69388,3026,"[\""Tablet\"", \""Headphones\""]",2913.41,{},231596,0,"""Africa""" +2023-08-30,69389,5315,"[\""Keyboard\"", \""Charger\""]",4725.28,{},113977,0,"""South America""" +2023-03-21,69390,4152,"[\""Monitor\"", \""Wireless Mouse\""]",3550.74,{},139618,0,"""Europe""" +2023-12-19,69391,7466,"[\""Monitor\"", \""Headphones\""]",250.87,{},289064,0,"""South America""" +2024-03-17,69392,6554,"[\""Wireless Mouse\""]",3918.93,{},118040,0,"""Asia""" +2023-08-03,69393,4247,"[\""Charger\"", \""Tablet\""]",1133.11,"{\""seasonal\"": \""8%\""}",232297,1,"""South America""" +2024-10-22,69394,6576,"[\""Laptop\""]",3060.47,"{\""seasonal\"": \""21%\""}",47760,1,"""Asia""" +2024-12-17,69395,8596,"[\""Monitor\""]",4426.41,"{\""promo\"": \""28%\""}",39233,1,"""North America""" +2023-11-20,69396,6128,"[\""Headphones\""]",1775.1,{},168127,0,"""South America""" +2024-11-21,69397,2442,"[\""Phone\""]",4618.81,{},208587,1,"""South America""" +2023-05-14,69398,1460,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2525.97,{},274795,1,"""Asia""" +2024-09-10,69399,4628,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4990.26,{},278032,0,"""Africa""" +2024-09-28,69400,6720,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1809.84,{},35456,0,"""Africa""" +2023-02-25,69401,7583,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1088.01,"{\""seasonal\"": \""20%\""}",95586,1,"""Europe""" +2023-03-11,69402,8616,"[\""Monitor\""]",345.83,"{\""loyalty\"": \""30%\""}",180573,1,"""Asia""" +2024-05-15,69403,7797,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1430.07,"{\""seasonal\"": \""6%\""}",77951,0,"""North America""" +2024-11-11,69404,4142,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",146.85,"{\""loyalty\"": \""9%\""}",190879,1,"""North America""" +2024-07-13,69405,81,"[\""Laptop\"", \""Headphones\""]",451.89,{},245157,0,"""South America""" +2024-03-27,69406,5976,"[\""Keyboard\"", \""Charger\""]",3858.24,"{\"": \""26%\""}",83852,1,"""Africa""" +2023-02-21,69407,2082,"[\""Monitor\""]",4932.11,{},297085,0,"""North America""" +2024-12-08,69408,5771,"[\""Laptop\"", \""Phone\""]",4853.24,{},237828,1,"""North America""" +2023-11-04,69409,8662,"[\""Charger\""]",3469.46,"{\"": \""27%\""}",207338,0,"""North America""" +2023-04-28,69410,820,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4773.31,{},62737,0,"""Africa""" +2023-11-25,69411,5628,"[\""Laptop\"", \""Wireless Mouse\""]",3308.69,"{\""loyalty\"": \""23%\""}",97344,0,"""Africa""" +2024-02-19,69412,1491,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4422.74,{},121994,1,"""Europe""" +2023-01-27,69413,1399,"[\""Headphones\"", \""Phone\""]",1639.43,{},287164,1,"""North America""" +2023-02-16,69414,3198,"[\""Tablet\""]",861.07,"{\""promo\"": \""24%\""}",35604,1,"""North America""" +2023-04-20,69415,9715,"[\""Keyboard\"", \""Monitor\""]",672.55,"{\""loyalty\"": \""28%\""}",252788,1,"""Asia""" +2024-01-14,69416,9277,"[\""Tablet\""]",4853.99,{},149637,0,"""Asia""" +2023-05-22,69417,7153,"[\""Keyboard\""]",2712.19,"{\""loyalty\"": \""8%\""}",203520,1,"""North America""" +2024-12-14,69418,5899,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2214.69,"{\""seasonal\"": \""29%\""}",115295,1,"""Africa""" +2024-05-05,69419,5493,"[\""Wireless Mouse\""]",1913.54,{},257312,0,"""North America""" +2024-01-06,69420,8191,"[\""Wireless Mouse\""]",2942.77,"{\""loyalty\"": \""7%\""}",120983,1,"""Africa""" +2023-09-29,69421,8017,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3705.58,"{\""promo\"": \""6%\""}",52928,1,"""Asia""" +2023-08-05,69422,2355,"[\""Keyboard\"", \""Wireless Mouse\""]",694.23,"{\""loyalty\"": \""26%\""}",238099,1,"""North America""" +2024-06-12,69423,1839,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1758.12,"{\"": \""28%\""}",16815,1,"""Africa""" +2024-07-22,69424,4421,"[\""Monitor\""]",3608.59,{},296885,1,"""Africa""" +2024-05-16,69425,448,"[\""Phone\""]",359.53,"{\""seasonal\"": \""28%\""}",82125,0,"""Africa""" +2023-07-21,69426,9614,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",781.88,{},7205,0,"""South America""" +2024-06-26,69427,7495,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1316.2,{},171927,1,"""North America""" +2023-08-28,69428,1043,"[\""Charger\"", \""Headphones\""]",4590.84,"{\""loyalty\"": \""18%\""}",119283,1,"""Asia""" +2023-11-23,69429,9812,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1489.26,{},288735,0,"""South America""" +2023-12-29,69430,5016,"[\""Phone\""]",1694.46,{},265057,0,"""North America""" +2024-07-15,69431,1269,"[\""Headphones\""]",2737.36,"{\""promo\"": \""11%\""}",145466,1,"""Asia""" +2024-01-05,69432,4265,"[\""Laptop\""]",3733.85,{},267192,0,"""Africa""" +2024-01-27,69433,8009,"[\""Charger\""]",3015.24,"{\"": \""25%\""}",139254,0,"""Asia""" +2024-11-18,69434,5568,"[\""Wireless Mouse\""]",438.93,{},123610,0,"""Asia""" +2024-07-11,69435,3818,"[\""Monitor\"", \""Tablet\""]",3681.83,"{\""loyalty\"": \""24%\""}",238696,1,"""Africa""" +2024-07-12,69436,9424,"[\""Headphones\""]",720.87,"{\"": \""12%\""}",238202,1,"""Africa""" +2023-05-04,69437,8939,"[\""Phone\""]",2435.54,{},118704,1,"""Europe""" +2024-09-07,69438,4278,"[\""Phone\"", \""Laptop\""]",3519.53,{},101938,0,"""South America""" +2023-06-15,69439,8871,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4332.45,{},144075,0,"""North America""" +2023-10-03,69440,6363,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3573.84,"{\""loyalty\"": \""8%\""}",279347,1,"""Africa""" +2024-01-01,69441,3271,"[\""Wireless Mouse\"", \""Phone\""]",4700.63,"{\""promo\"": \""21%\""}",155555,1,"""Europe""" +2024-06-16,69442,3345,"[\""Headphones\""]",2610.24,"{\""loyalty\"": \""8%\""}",128977,0,"""Asia""" +2023-09-09,69443,1684,"[\""Laptop\"", \""Phone\""]",160.9,{},199609,1,"""South America""" +2024-01-22,69444,5808,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2715.49,{},74519,0,"""Africa""" +2024-07-20,69445,5378,"[\""Laptop\"", \""Charger\""]",1445.95,"{\""promo\"": \""19%\""}",159853,1,"""Asia""" +2024-12-18,69446,3304,"[\""Laptop\""]",4863.88,{},243938,0,"""South America""" +2024-12-23,69447,5053,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1594.91,{},164112,0,"""South America""" +2023-02-07,69448,665,"[\""Wireless Mouse\""]",1455.54,"{\""seasonal\"": \""27%\""}",281518,1,"""Asia""" +2024-06-21,69449,4912,"[\""Phone\"", \""Headphones\""]",966.14,"{\""promo\"": \""17%\""}",13781,0,"""Africa""" +2024-01-17,69450,8982,"[\""Phone\"", \""Headphones\""]",2687.43,{},27782,1,"""North America""" +2024-03-05,69451,796,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1345.21,"{\""loyalty\"": \""25%\""}",156976,1,"""North America""" +2023-03-15,69452,603,"[\""Phone\"", \""Tablet\""]",3301.19,"{\""promo\"": \""20%\""}",205013,0,"""South America""" +2024-07-05,69453,9502,"[\""Laptop\""]",1561.22,"{\""loyalty\"": \""5%\""}",194658,0,"""Africa""" +2023-05-19,69454,8425,"[\""Charger\""]",1185.7,"{\""loyalty\"": \""6%\""}",251547,1,"""Asia""" +2024-09-29,69455,2333,"[\""Tablet\"", \""Wireless Mouse\""]",708.1,{},248489,1,"""South America""" +2024-10-21,69456,9599,"[\""Monitor\""]",3507.22,{},276891,0,"""Asia""" +2024-04-20,69457,238,"[\""Phone\"", \""Charger\""]",2554.82,{},144255,0,"""Asia""" +2024-04-06,69458,7049,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1055.01,{},54749,0,"""Europe""" +2023-06-15,69459,9872,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4591.31,"{\""loyalty\"": \""6%\""}",215215,1,"""Europe""" +2024-06-03,69460,9168,"[\""Wireless Mouse\""]",2092.43,{},99850,1,"""Asia""" +2023-02-08,69461,2781,"[\""Monitor\"", \""Headphones\""]",2851.99,{},298671,0,"""Asia""" +2023-03-13,69462,6505,"[\""Headphones\"", \""Charger\""]",549.39,{},200985,0,"""North America""" +2024-08-21,69463,7768,"[\""Laptop\"", \""Headphones\""]",2833.85,{},138067,0,"""South America""" +2024-09-14,69464,2265,"[\""Charger\"", \""Phone\""]",1461.57,{},22729,0,"""Africa""" +2023-11-15,69465,2102,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2962.49,{},207406,0,"""Asia""" +2024-09-13,69466,4378,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",431.6,"{\""promo\"": \""15%\""}",78914,0,"""Africa""" +2024-05-25,69467,7187,"[\""Charger\""]",2190.76,"{\""promo\"": \""8%\""}",39785,1,"""Asia""" +2024-05-23,69468,4986,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2382.63,"{\""loyalty\"": \""24%\""}",77922,1,"""Asia""" +2024-09-07,69469,5708,"[\""Monitor\""]",1139.28,"{\""seasonal\"": \""18%\""}",250133,1,"""South America""" +2024-06-24,69470,1398,"[\""Keyboard\"", \""Charger\""]",1788.71,{},16834,1,"""Europe""" +2023-06-15,69471,4470,"[\""Keyboard\"", \""Charger\""]",4379.0,"{\""promo\"": \""27%\""}",271235,0,"""Asia""" +2024-11-26,69472,3932,"[\""Keyboard\"", \""Phone\""]",3297.83,"{\""seasonal\"": \""22%\""}",230791,1,"""South America""" +2023-10-05,69473,8096,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2225.89,{},261428,0,"""Europe""" +2024-07-20,69474,7911,"[\""Laptop\""]",2964.26,{},184130,0,"""South America""" +2023-11-19,69475,9617,"[\""Laptop\"", \""Monitor\""]",4258.83,{},203082,0,"""North America""" +2024-09-28,69476,196,"[\""Tablet\"", \""Wireless Mouse\""]",179.07,{},221008,1,"""Asia""" +2023-12-23,69477,2116,"[\""Charger\"", \""Tablet\""]",1073.54,{},19440,1,"""North America""" +2023-07-26,69478,1717,"[\""Charger\""]",3495.7,{},155425,1,"""Africa""" +2023-09-09,69479,8880,"[\""Monitor\""]",2734.19,"{\""seasonal\"": \""29%\""}",187013,0,"""Africa""" +2024-03-21,69480,3782,"[\""Laptop\""]",4515.8,"{\""loyalty\"": \""7%\""}",102811,1,"""Asia""" +2023-09-19,69481,6379,"[\""Keyboard\""]",3164.84,{},235921,0,"""North America""" +2023-05-27,69482,1490,"[\""Phone\""]",2241.39,"{\""seasonal\"": \""17%\""}",135393,1,"""Europe""" +2024-07-21,69483,8030,"[\""Phone\""]",2705.53,"{\""promo\"": \""17%\""}",242093,1,"""North America""" +2024-09-27,69484,7670,"[\""Laptop\""]",2337.4,"{\""promo\"": \""6%\""}",268086,0,"""North America""" +2023-08-14,69485,8589,"[\""Headphones\""]",408.91,"{\"": \""22%\""}",236890,0,"""South America""" +2023-06-06,69486,8928,"[\""Headphones\""]",1200.93,"{\"": \""16%\""}",203662,1,"""Europe""" +2024-03-29,69487,8170,"[\""Headphones\""]",2600.55,{},229571,1,"""South America""" +2023-06-03,69488,8302,"[\""Keyboard\"", \""Monitor\""]",4203.86,{},86438,0,"""Africa""" +2024-02-22,69489,1418,"[\""Keyboard\"", \""Wireless Mouse\""]",4854.83,"{\""promo\"": \""23%\""}",91890,1,"""Asia""" +2023-09-01,69490,7711,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2717.59,{},195954,1,"""Africa""" +2024-11-30,69491,6622,"[\""Headphones\"", \""Phone\""]",3518.23,"{\"": \""28%\""}",67139,0,"""Africa""" +2024-12-11,69492,2662,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3564.66,{},26493,0,"""North America""" +2023-09-29,69493,5254,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2168.97,{},225774,1,"""South America""" +2024-07-23,69494,6961,"[\""Charger\""]",649.29,{},207208,1,"""Asia""" +2024-08-30,69495,6945,"[\""Charger\""]",4207.72,{},73299,1,"""South America""" +2024-03-05,69496,4936,"[\""Phone\""]",657.09,{},191066,1,"""Europe""" +2024-04-03,69497,8849,"[\""Monitor\"", \""Tablet\""]",4745.99,{},173762,0,"""Europe""" +2023-06-27,69498,5648,"[\""Monitor\""]",1280.53,"{\""loyalty\"": \""16%\""}",299541,0,"""Europe""" +2023-06-24,69499,8926,"[\""Phone\"", \""Headphones\""]",2516.97,{},158911,0,"""Europe""" +2023-12-28,69500,2863,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3679.75,"{\""seasonal\"": \""11%\""}",75533,0,"""South America""" +2024-02-03,69501,4930,"[\""Keyboard\""]",4270.2,"{\""promo\"": \""7%\""}",51267,1,"""Africa""" +2024-09-22,69502,7436,"[\""Charger\"", \""Tablet\""]",3799.19,"{\"": \""7%\""}",194230,1,"""Europe""" +2024-11-09,69503,2092,"[\""Laptop\""]",487.38,{},150968,1,"""Africa""" +2023-08-03,69504,5691,"[\""Keyboard\""]",394.78,{},176834,1,"""Asia""" +2023-06-13,69505,3296,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4429.5,"{\""loyalty\"": \""30%\""}",122660,1,"""Europe""" +2023-03-06,69506,5381,"[\""Laptop\""]",1770.6,"{\""seasonal\"": \""15%\""}",6250,1,"""South America""" +2024-09-29,69507,2198,"[\""Charger\"", \""Phone\""]",2741.11,"{\""promo\"": \""8%\""}",205120,1,"""Africa""" +2023-05-11,69508,6414,"[\""Laptop\"", \""Tablet\""]",3711.26,{},82583,1,"""North America""" +2023-09-11,69509,2145,"[\""Laptop\""]",2475.89,"{\"": \""6%\""}",3856,0,"""Africa""" +2024-09-25,69510,3451,"[\""Wireless Mouse\"", \""Laptop\""]",1546.57,{},7293,0,"""Europe""" +2023-11-16,69511,1500,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1927.65,"{\""loyalty\"": \""14%\""}",109582,1,"""Asia""" +2023-08-18,69512,1447,"[\""Laptop\"", \""Tablet\""]",893.71,{},86739,1,"""Europe""" +2024-09-19,69513,2159,"[\""Keyboard\"", \""Charger\""]",2003.72,"{\""promo\"": \""19%\""}",265969,1,"""Europe""" +2023-05-21,69514,7737,"[\""Laptop\"", \""Charger\""]",3940.62,{},8046,1,"""South America""" +2023-08-17,69515,4670,"[\""Headphones\""]",3850.24,"{\""promo\"": \""30%\""}",134634,1,"""South America""" +2023-10-23,69516,1366,"[\""Charger\"", \""Phone\""]",1884.29,{},286337,1,"""Asia""" +2024-01-12,69517,8198,"[\""Headphones\"", \""Tablet\""]",4924.37,{},82498,0,"""Africa""" +2024-09-20,69518,8424,"[\""Wireless Mouse\"", \""Laptop\""]",1269.88,"{\"": \""11%\""}",200164,1,"""North America""" +2023-03-30,69519,884,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2807.35,{},194383,1,"""North America""" +2024-10-13,69520,3347,"[\""Phone\""]",491.14,{},115086,0,"""Europe""" +2024-09-29,69521,8962,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1538.71,"{\""seasonal\"": \""26%\""}",209170,0,"""Europe""" +2024-05-12,69522,4027,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2934.59,"{\""loyalty\"": \""11%\""}",153042,1,"""Europe""" +2023-11-20,69523,8336,"[\""Monitor\"", \""Wireless Mouse\""]",2151.22,{},54327,1,"""Africa""" +2024-06-13,69524,2946,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",102.79,{},147163,0,"""North America""" +2024-01-11,69525,332,"[\""Monitor\"", \""Wireless Mouse\""]",3187.32,{},156690,0,"""South America""" +2023-09-16,69526,1900,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3716.21,{},216245,0,"""Asia""" +2024-05-08,69527,5443,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4586.58,{},7227,1,"""Africa""" +2023-05-12,69528,7048,"[\""Keyboard\"", \""Wireless Mouse\""]",941.96,{},37427,0,"""Africa""" +2023-06-12,69529,2073,"[\""Laptop\"", \""Headphones\""]",996.71,{},90640,1,"""Asia""" +2023-02-07,69530,5417,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3021.77,"{\"": \""9%\""}",29877,0,"""Asia""" +2023-09-17,69531,2292,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3369.36,"{\""promo\"": \""8%\""}",25643,0,"""North America""" +2024-11-15,69532,5229,"[\""Headphones\""]",3910.75,"{\""promo\"": \""28%\""}",64456,0,"""South America""" +2024-12-04,69533,4489,"[\""Phone\""]",1327.52,{},244023,0,"""Africa""" +2023-04-04,69534,1700,"[\""Wireless Mouse\""]",2869.78,{},3561,0,"""South America""" +2023-10-06,69535,4964,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4239.35,"{\"": \""27%\""}",278710,0,"""Asia""" +2023-08-26,69536,9055,"[\""Laptop\"", \""Headphones\""]",176.18,"{\""seasonal\"": \""21%\""}",206964,0,"""Europe""" +2024-05-11,69537,33,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1899.96,{},108186,1,"""Asia""" +2023-07-15,69538,2307,"[\""Charger\"", \""Monitor\""]",2167.25,"{\""loyalty\"": \""25%\""}",245387,0,"""South America""" +2023-07-25,69539,6896,"[\""Keyboard\""]",2143.94,"{\""loyalty\"": \""11%\""}",117121,1,"""South America""" +2023-08-16,69540,7663,"[\""Keyboard\"", \""Monitor\""]",2992.04,{},146671,1,"""North America""" +2024-10-01,69541,6560,"[\""Monitor\""]",145.17,"{\"": \""21%\""}",143008,1,"""Asia""" +2023-02-17,69542,8126,"[\""Monitor\""]",3361.26,{},15171,1,"""Africa""" +2023-02-01,69543,3141,"[\""Laptop\"", \""Monitor\""]",1362.92,"{\"": \""5%\""}",149371,1,"""North America""" +2023-09-04,69544,3953,"[\""Phone\""]",3046.32,{},66391,0,"""South America""" +2024-07-08,69545,3633,"[\""Phone\"", \""Charger\""]",581.08,{},26066,1,"""Europe""" +2024-05-15,69546,53,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",52.8,{},7034,1,"""South America""" +2023-12-27,69547,7108,"[\""Phone\""]",4377.46,"{\""promo\"": \""21%\""}",263699,1,"""Africa""" +2024-09-09,69548,4728,"[\""Keyboard\"", \""Tablet\""]",1505.58,{},118795,0,"""Europe""" +2024-04-06,69549,1046,"[\""Charger\""]",4798.37,{},38842,1,"""Africa""" +2024-11-06,69550,1986,"[\""Monitor\""]",2459.63,{},268994,0,"""South America""" +2024-02-08,69551,2720,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4781.81,{},293823,0,"""South America""" +2024-10-15,69552,4431,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",934.33,{},162082,1,"""North America""" +2024-02-28,69553,100,"[\""Keyboard\"", \""Wireless Mouse\""]",943.54,{},121878,0,"""South America""" +2024-06-07,69554,3326,"[\""Wireless Mouse\"", \""Headphones\""]",371.02,"{\""loyalty\"": \""6%\""}",113501,0,"""Africa""" +2023-11-11,69555,7373,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4934.34,"{\""promo\"": \""7%\""}",216689,1,"""Europe""" +2023-05-12,69556,7127,"[\""Tablet\""]",3461.17,"{\""loyalty\"": \""22%\""}",262828,1,"""Africa""" +2024-10-15,69557,1093,"[\""Monitor\"", \""Charger\""]",2597.74,{},117937,1,"""North America""" +2023-06-18,69558,154,"[\""Laptop\""]",584.35,{},275089,0,"""South America""" +2023-12-06,69559,2314,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2642.94,{},288788,0,"""Europe""" +2024-10-10,69560,2101,"[\""Phone\"", \""Tablet\""]",367.63,{},268080,0,"""Africa""" +2023-03-04,69561,672,"[\""Wireless Mouse\"", \""Headphones\""]",2640.24,{},279988,0,"""North America""" +2024-02-13,69562,6788,"[\""Monitor\"", \""Keyboard\""]",4134.74,"{\"": \""26%\""}",175386,0,"""Africa""" +2024-05-04,69563,207,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2735.94,{},232788,0,"""Africa""" +2024-08-02,69564,9350,"[\""Phone\""]",2996.84,{},177212,0,"""Africa""" +2024-06-23,69565,88,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4243.25,{},186921,1,"""Europe""" +2023-09-02,69566,302,"[\""Monitor\"", \""Charger\""]",799.44,{},216344,1,"""North America""" +2023-04-28,69567,1252,"[\""Tablet\"", \""Phone\""]",3758.01,{},293740,1,"""Asia""" +2024-09-24,69568,3858,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4874.17,"{\""promo\"": \""9%\""}",117286,0,"""North America""" +2024-09-06,69569,1529,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3572.88,"{\""loyalty\"": \""11%\""}",15247,1,"""Europe""" +2024-02-13,69570,9477,"[\""Keyboard\""]",556.87,{},249729,1,"""North America""" +2024-10-16,69571,1870,"[\""Headphones\"", \""Charger\""]",4499.67,"{\"": \""16%\""}",17030,1,"""Africa""" +2023-10-29,69572,601,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4599.13,{},297091,1,"""Europe""" +2024-12-01,69573,8253,"[\""Phone\"", \""Charger\""]",4733.77,"{\""loyalty\"": \""15%\""}",229220,0,"""North America""" +2023-07-20,69574,243,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3201.89,"{\"": \""14%\""}",129696,0,"""North America""" +2024-08-04,69575,6048,"[\""Wireless Mouse\"", \""Headphones\""]",2591.08,{},63070,0,"""Asia""" +2024-12-24,69576,893,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4455.48,{},189653,1,"""North America""" +2024-03-01,69577,2309,"[\""Charger\""]",3375.79,"{\""loyalty\"": \""14%\""}",90331,0,"""Europe""" +2023-01-05,69578,6337,"[\""Monitor\""]",1939.14,"{\""promo\"": \""17%\""}",251204,1,"""Europe""" +2023-06-27,69579,6410,"[\""Headphones\""]",3984.54,{},152929,0,"""Africa""" +2024-12-08,69580,7079,"[\""Tablet\"", \""Laptop\""]",260.6,"{\""seasonal\"": \""12%\""}",68359,1,"""Africa""" +2023-10-19,69581,3351,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1393.49,{},237179,0,"""Europe""" +2024-05-07,69582,1522,"[\""Headphones\"", \""Tablet\""]",4555.28,"{\"": \""8%\""}",221812,1,"""South America""" +2024-05-19,69583,5994,"[\""Laptop\"", \""Wireless Mouse\""]",4575.41,"{\""loyalty\"": \""23%\""}",148490,1,"""North America""" +2023-06-30,69584,8575,"[\""Wireless Mouse\"", \""Monitor\""]",4647.84,{},287156,1,"""North America""" +2024-09-22,69585,9283,"[\""Headphones\"", \""Wireless Mouse\""]",2533.49,{},225983,0,"""Europe""" +2024-04-13,69586,9832,"[\""Keyboard\""]",3969.37,"{\""promo\"": \""27%\""}",33200,0,"""Africa""" +2024-10-01,69587,488,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3465.77,{},26027,1,"""South America""" +2024-05-19,69588,8672,"[\""Laptop\""]",188.09,{},64287,0,"""Europe""" +2024-10-20,69589,9980,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",730.91,"{\""loyalty\"": \""8%\""}",184240,0,"""North America""" +2023-05-18,69590,2322,"[\""Laptop\""]",369.98,{},224590,1,"""Africa""" +2024-10-24,69591,3560,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1759.77,"{\""seasonal\"": \""8%\""}",79759,0,"""South America""" +2024-01-05,69592,105,"[\""Tablet\"", \""Phone\""]",327.4,"{\"": \""11%\""}",241043,1,"""South America""" +2023-12-03,69593,516,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3826.93,{},227637,0,"""Europe""" +2023-06-05,69594,948,"[\""Phone\""]",2238.6,"{\"": \""8%\""}",145662,1,"""South America""" +2023-10-14,69595,4346,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3326.41,{},266627,1,"""North America""" +2024-06-04,69596,1132,"[\""Headphones\""]",955.61,{},172278,0,"""Europe""" +2024-11-08,69597,9715,"[\""Keyboard\"", \""Charger\""]",2903.21,"{\""promo\"": \""14%\""}",261264,0,"""South America""" +2024-08-23,69598,3365,"[\""Phone\""]",1821.76,"{\""promo\"": \""26%\""}",132244,1,"""South America""" +2024-01-12,69599,2278,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1410.49,{},289233,0,"""North America""" +2024-03-09,69600,6222,"[\""Phone\"", \""Monitor\""]",250.64,"{\""promo\"": \""18%\""}",125644,0,"""North America""" +2024-09-12,69601,4903,"[\""Wireless Mouse\""]",3870.57,"{\"": \""27%\""}",134788,1,"""South America""" +2023-08-10,69602,8243,"[\""Monitor\""]",2126.4,{},4772,1,"""Asia""" +2023-02-05,69603,9505,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2378.5,"{\"": \""28%\""}",211992,1,"""Asia""" +2023-05-24,69604,7543,"[\""Tablet\""]",3764.06,{},226524,1,"""Africa""" +2024-07-06,69605,4419,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2965.79,"{\""promo\"": \""21%\""}",200229,1,"""Asia""" +2023-01-05,69606,1554,"[\""Laptop\"", \""Tablet\""]",3648.42,{},51502,0,"""Africa""" +2023-09-22,69607,4903,"[\""Keyboard\""]",1006.57,{},140380,0,"""Africa""" +2023-02-16,69608,5131,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",749.94,{},291028,1,"""North America""" +2023-11-24,69609,4510,"[\""Wireless Mouse\"", \""Phone\""]",1511.97,{},78106,0,"""Asia""" +2023-06-25,69610,3518,"[\""Charger\"", \""Wireless Mouse\""]",1854.1,{},90073,0,"""Africa""" +2023-06-05,69611,5491,"[\""Charger\""]",3921.63,"{\""promo\"": \""18%\""}",81195,0,"""Africa""" +2024-11-29,69612,3464,"[\""Wireless Mouse\""]",4608.28,"{\"": \""20%\""}",240645,1,"""South America""" +2024-05-26,69613,2750,"[\""Headphones\"", \""Tablet\""]",4920.04,"{\"": \""5%\""}",177664,1,"""North America""" +2023-07-27,69614,6755,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",506.66,"{\"": \""7%\""}",177330,1,"""Africa""" +2023-12-26,69615,3841,"[\""Keyboard\""]",726.28,"{\""promo\"": \""5%\""}",75978,1,"""Africa""" +2024-01-26,69616,7120,"[\""Keyboard\"", \""Monitor\""]",1649.02,"{\"": \""25%\""}",260528,1,"""North America""" +2023-08-03,69617,475,"[\""Charger\"", \""Phone\""]",3711.37,"{\""promo\"": \""22%\""}",92530,0,"""South America""" +2024-03-11,69618,2104,"[\""Laptop\""]",4607.36,"{\""loyalty\"": \""30%\""}",23395,0,"""South America""" +2024-01-22,69619,6282,"[\""Charger\"", \""Headphones\""]",1959.33,{},46440,0,"""Asia""" +2024-01-21,69620,7505,"[\""Monitor\"", \""Headphones\""]",4015.46,{},33837,0,"""South America""" +2024-06-06,69621,3237,"[\""Keyboard\"", \""Monitor\""]",1279.9,"{\""promo\"": \""24%\""}",6560,1,"""Europe""" +2024-03-09,69622,1277,"[\""Headphones\"", \""Tablet\""]",3796.79,"{\""loyalty\"": \""19%\""}",11703,0,"""Asia""" +2024-07-25,69623,3604,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3022.18,"{\""promo\"": \""21%\""}",290728,1,"""Africa""" +2024-03-26,69624,2353,"[\""Monitor\""]",1459.75,{},97714,1,"""South America""" +2024-09-13,69625,3493,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4534.05,{},109749,1,"""Africa""" +2024-07-19,69626,6617,"[\""Monitor\"", \""Wireless Mouse\""]",3333.75,"{\""loyalty\"": \""14%\""}",215477,0,"""Europe""" +2023-02-09,69627,2651,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2375.08,"{\""promo\"": \""25%\""}",40550,0,"""Europe""" +2024-08-10,69628,3670,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3309.94,"{\""promo\"": \""7%\""}",294908,0,"""Europe""" +2023-04-28,69629,7524,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",75.67,"{\""seasonal\"": \""28%\""}",45140,0,"""Europe""" +2023-03-03,69630,7164,"[\""Monitor\"", \""Headphones\""]",1419.19,{},237923,0,"""South America""" +2023-07-26,69631,6433,"[\""Tablet\""]",1555.17,{},120460,0,"""Asia""" +2024-08-16,69632,6037,"[\""Charger\""]",3109.76,"{\"": \""8%\""}",21419,1,"""North America""" +2024-03-24,69633,3536,"[\""Phone\"", \""Keyboard\""]",3052.2,"{\""seasonal\"": \""6%\""}",172713,1,"""Africa""" +2024-02-01,69634,605,"[\""Phone\"", \""Laptop\""]",1220.91,{},276865,1,"""Asia""" +2024-11-19,69635,194,"[\""Wireless Mouse\""]",2255.32,"{\"": \""16%\""}",83139,0,"""North America""" +2024-08-27,69636,5743,"[\""Headphones\""]",2873.0,{},66420,1,"""South America""" +2024-05-01,69637,7423,"[\""Phone\""]",1038.65,{},123024,0,"""Africa""" +2023-05-14,69638,7378,"[\""Tablet\"", \""Headphones\""]",1682.98,{},155739,0,"""North America""" +2023-08-24,69639,1898,"[\""Monitor\"", \""Laptop\""]",99.6,{},48786,1,"""South America""" +2024-01-01,69640,6922,"[\""Tablet\""]",1558.35,{},157549,0,"""North America""" +2024-12-18,69641,6505,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2361.24,{},174906,0,"""North America""" +2023-08-25,69642,9232,"[\""Wireless Mouse\"", \""Laptop\""]",3487.65,{},299609,0,"""Africa""" +2023-11-25,69643,8919,"[\""Tablet\"", \""Keyboard\""]",472.31,"{\""promo\"": \""11%\""}",216293,0,"""Africa""" +2023-09-10,69644,7462,"[\""Wireless Mouse\""]",2026.4,{},277423,0,"""South America""" +2024-12-08,69645,4756,"[\""Laptop\""]",1049.07,"{\""promo\"": \""15%\""}",45397,0,"""Asia""" +2024-05-19,69646,7528,"[\""Monitor\"", \""Keyboard\""]",640.33,{},6399,1,"""Africa""" +2023-03-15,69647,1678,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3442.18,{},234237,1,"""Asia""" +2023-08-02,69648,3718,"[\""Keyboard\"", \""Charger\""]",3436.45,{},151219,1,"""Africa""" +2024-12-07,69649,4013,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2684.15,"{\""promo\"": \""8%\""}",248208,1,"""North America""" +2024-04-15,69650,8708,"[\""Monitor\""]",4469.02,{},8725,1,"""South America""" +2024-09-12,69651,8080,"[\""Phone\"", \""Wireless Mouse\""]",4418.91,"{\"": \""9%\""}",245426,1,"""South America""" +2024-01-04,69652,359,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4956.18,{},99768,0,"""Africa""" +2023-05-26,69653,3767,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3529.59,"{\""promo\"": \""29%\""}",15623,0,"""Asia""" +2023-12-25,69654,2383,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1961.04,{},95767,1,"""North America""" +2024-09-10,69655,7630,"[\""Keyboard\"", \""Tablet\""]",2222.93,{},110746,0,"""Africa""" +2024-08-12,69656,7355,"[\""Laptop\"", \""Monitor\""]",2402.15,{},92786,1,"""South America""" +2024-12-09,69657,7454,"[\""Keyboard\""]",3487.54,"{\""promo\"": \""30%\""}",59637,0,"""Asia""" +2024-03-12,69658,871,"[\""Headphones\""]",2226.66,{},44617,0,"""Europe""" +2023-08-14,69659,2371,"[\""Charger\"", \""Tablet\""]",2445.3,{},6871,0,"""North America""" +2023-05-12,69660,9235,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4008.44,"{\"": \""30%\""}",33228,0,"""Africa""" +2024-02-10,69661,1823,"[\""Keyboard\"", \""Phone\""]",2837.61,{},228094,1,"""Asia""" +2023-02-02,69662,7247,"[\""Monitor\""]",1906.38,"{\"": \""20%\""}",136511,1,"""North America""" +2024-07-06,69663,771,"[\""Laptop\"", \""Headphones\""]",571.06,{},62814,1,"""North America""" +2023-03-23,69664,634,"[\""Tablet\""]",260.21,"{\""promo\"": \""12%\""}",154127,1,"""Europe""" +2023-06-16,69665,2915,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",798.61,{},289366,1,"""Europe""" +2024-02-12,69666,2892,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2289.23,{},148567,1,"""Asia""" +2024-08-02,69667,9043,"[\""Tablet\""]",2938.44,"{\""seasonal\"": \""22%\""}",10184,0,"""Asia""" +2023-06-03,69668,5223,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1286.23,"{\""promo\"": \""19%\""}",120833,1,"""North America""" +2024-01-29,69669,791,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2053.38,{},286474,0,"""Europe""" +2023-01-17,69670,1049,"[\""Wireless Mouse\"", \""Headphones\""]",3219.83,{},287052,1,"""Asia""" +2023-09-03,69671,9992,"[\""Tablet\""]",4236.48,{},281584,0,"""South America""" +2023-01-17,69672,986,"[\""Headphones\"", \""Wireless Mouse\""]",1491.84,{},39200,0,"""Europe""" +2024-07-08,69673,541,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3752.97,{},186124,0,"""South America""" +2023-08-01,69674,6768,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4944.8,{},46483,1,"""Asia""" +2023-03-29,69675,6960,"[\""Headphones\"", \""Phone\"", \""Charger\""]",884.17,{},15397,1,"""Asia""" +2023-12-02,69676,347,"[\""Charger\"", \""Keyboard\""]",4702.25,{},158409,0,"""North America""" +2023-09-20,69677,279,"[\""Laptop\"", \""Wireless Mouse\""]",2955.61,{},102033,1,"""Africa""" +2024-07-22,69678,765,"[\""Wireless Mouse\"", \""Monitor\""]",4144.05,"{\""loyalty\"": \""29%\""}",106227,1,"""Africa""" +2023-10-13,69679,3724,"[\""Headphones\"", \""Laptop\""]",414.93,{},87776,0,"""Asia""" +2023-12-20,69680,9892,"[\""Charger\"", \""Phone\""]",4203.47,{},168607,1,"""Africa""" +2023-10-15,69681,5406,"[\""Charger\"", \""Tablet\""]",2205.39,"{\"": \""8%\""}",9329,0,"""Asia""" +2023-03-05,69682,7074,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1639.82,{},175409,0,"""North America""" +2023-03-28,69683,7769,"[\""Wireless Mouse\""]",4859.64,"{\""loyalty\"": \""19%\""}",93053,1,"""Asia""" +2023-03-02,69684,2267,"[\""Monitor\"", \""Charger\""]",2794.31,{},225268,1,"""South America""" +2023-04-04,69685,5077,"[\""Charger\""]",2611.07,"{\""seasonal\"": \""24%\""}",96732,1,"""South America""" +2023-10-04,69686,7348,"[\""Headphones\""]",1553.56,{},243837,0,"""South America""" +2023-06-10,69687,2379,"[\""Wireless Mouse\"", \""Keyboard\""]",4528.18,"{\"": \""9%\""}",166391,1,"""North America""" +2023-10-10,69688,3475,"[\""Keyboard\"", \""Monitor\""]",3106.74,{},194172,1,"""Europe""" +2024-02-19,69689,7660,"[\""Monitor\""]",4818.96,"{\"": \""13%\""}",30811,1,"""Europe""" +2023-04-23,69690,3564,"[\""Laptop\"", \""Phone\""]",2274.16,"{\""promo\"": \""21%\""}",258171,1,"""South America""" +2023-06-25,69691,8353,"[\""Wireless Mouse\"", \""Tablet\""]",2918.25,"{\""loyalty\"": \""27%\""}",74358,1,"""South America""" +2024-10-18,69692,2775,"[\""Phone\""]",2122.29,{},43683,1,"""Asia""" +2023-11-21,69693,4601,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1638.94,"{\""promo\"": \""25%\""}",59571,0,"""Asia""" +2023-06-24,69694,4162,"[\""Tablet\"", \""Wireless Mouse\""]",1428.05,"{\""loyalty\"": \""7%\""}",187155,1,"""Africa""" +2024-02-26,69695,2637,"[\""Charger\""]",2230.29,{},176894,0,"""Europe""" +2024-04-21,69696,3719,"[\""Keyboard\""]",1409.68,{},62515,0,"""North America""" +2023-07-18,69697,1570,"[\""Tablet\"", \""Wireless Mouse\""]",4527.97,{},34028,0,"""Asia""" +2023-04-12,69698,4770,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2972.35,{},269461,1,"""Europe""" +2024-07-05,69699,9861,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",621.85,{},86846,1,"""Africa""" +2023-04-17,69700,4312,"[\""Tablet\"", \""Charger\""]",3807.13,"{\""loyalty\"": \""24%\""}",296545,1,"""Asia""" +2023-02-25,69701,5684,"[\""Keyboard\""]",388.0,{},223528,1,"""Asia""" +2023-07-19,69702,6134,"[\""Phone\"", \""Charger\"", \""Tablet\""]",960.84,"{\""loyalty\"": \""28%\""}",140411,1,"""Europe""" +2023-06-16,69703,7088,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4779.23,"{\""seasonal\"": \""13%\""}",89838,0,"""Africa""" +2023-02-28,69704,5683,"[\""Monitor\""]",3724.23,{},242992,1,"""Africa""" +2024-06-24,69705,2816,"[\""Keyboard\"", \""Phone\""]",2167.28,{},105502,1,"""Europe""" +2024-07-21,69706,3737,"[\""Laptop\""]",456.38,"{\""promo\"": \""17%\""}",108198,1,"""Africa""" +2024-04-09,69707,1104,"[\""Headphones\"", \""Charger\""]",3768.22,{},103052,1,"""South America""" +2024-11-01,69708,2946,"[\""Monitor\"", \""Headphones\""]",619.16,{},170500,0,"""Africa""" +2023-01-31,69709,6522,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1062.44,{},241713,0,"""North America""" +2023-02-10,69710,6868,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",318.89,"{\"": \""17%\""}",228029,0,"""North America""" +2024-02-23,69711,4297,"[\""Charger\""]",1817.55,{},91338,1,"""North America""" +2023-07-16,69712,389,"[\""Headphones\"", \""Monitor\""]",4584.67,{},34652,0,"""Africa""" +2024-06-02,69713,1313,"[\""Charger\""]",3361.07,"{\""loyalty\"": \""21%\""}",90456,0,"""South America""" +2023-11-01,69714,4194,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4539.42,"{\""loyalty\"": \""21%\""}",181228,1,"""Europe""" +2024-12-03,69715,6062,"[\""Phone\""]",184.65,"{\""loyalty\"": \""10%\""}",120329,0,"""Europe""" +2023-07-15,69716,2447,"[\""Laptop\""]",936.61,"{\""loyalty\"": \""22%\""}",115429,0,"""Europe""" +2024-05-01,69717,449,"[\""Phone\"", \""Tablet\""]",4007.22,"{\"": \""13%\""}",246846,1,"""North America""" +2023-10-22,69718,3108,"[\""Keyboard\""]",4089.4,{},35099,0,"""Europe""" +2023-04-26,69719,400,"[\""Wireless Mouse\"", \""Tablet\""]",1736.67,"{\""loyalty\"": \""6%\""}",4818,1,"""Europe""" +2023-07-25,69720,9906,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3799.71,"{\"": \""24%\""}",231372,1,"""North America""" +2023-05-27,69721,2893,"[\""Phone\"", \""Monitor\""]",1913.48,{},102122,0,"""Africa""" +2023-05-23,69722,3380,"[\""Phone\"", \""Wireless Mouse\""]",3306.37,{},222911,0,"""Africa""" +2023-10-05,69723,7180,"[\""Wireless Mouse\"", \""Laptop\""]",491.36,{},103795,1,"""Asia""" +2023-03-05,69724,614,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3307.74,"{\""seasonal\"": \""14%\""}",151116,0,"""Asia""" +2023-10-14,69725,1658,"[\""Keyboard\""]",2408.76,"{\""seasonal\"": \""24%\""}",64768,0,"""Africa""" +2023-06-21,69726,4021,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",738.05,"{\"": \""26%\""}",179200,0,"""Asia""" +2023-08-29,69727,3884,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2030.77,"{\"": \""9%\""}",153031,1,"""Europe""" +2024-07-10,69728,2941,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4949.28,{},133584,0,"""North America""" +2023-09-02,69729,4391,"[\""Phone\""]",4538.28,"{\""loyalty\"": \""25%\""}",166016,1,"""Africa""" +2024-05-09,69730,9703,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4342.05,{},261803,1,"""Europe""" +2024-12-31,69731,4552,"[\""Headphones\""]",4475.18,"{\"": \""6%\""}",156212,1,"""South America""" +2024-10-28,69732,7506,"[\""Monitor\"", \""Laptop\""]",1429.7,{},94658,1,"""Africa""" +2023-01-02,69733,7309,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3638.68,"{\""promo\"": \""12%\""}",46018,1,"""Africa""" +2024-04-24,69734,5588,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",97.82,"{\""loyalty\"": \""7%\""}",126551,0,"""Europe""" +2023-07-08,69735,5054,"[\""Laptop\""]",4465.11,"{\""seasonal\"": \""28%\""}",89481,1,"""Africa""" +2024-02-25,69736,1060,"[\""Laptop\""]",4674.97,"{\"": \""10%\""}",195256,0,"""Africa""" +2023-08-27,69737,5121,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1071.9,"{\""seasonal\"": \""14%\""}",255899,1,"""Europe""" +2023-08-20,69738,3708,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2852.37,{},12454,1,"""Europe""" +2024-05-14,69739,3735,"[\""Keyboard\""]",4341.09,{},296030,1,"""Europe""" +2024-02-28,69740,993,"[\""Headphones\"", \""Charger\""]",668.9,"{\""promo\"": \""10%\""}",61654,0,"""Asia""" +2023-08-30,69741,627,"[\""Monitor\""]",3262.4,{},4387,1,"""South America""" +2024-01-05,69742,7988,"[\""Phone\""]",4781.65,"{\""loyalty\"": \""29%\""}",79094,0,"""North America""" +2024-12-24,69743,931,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",386.3,{},11003,0,"""Africa""" +2023-03-27,69744,255,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",88.67,{},150903,0,"""Africa""" +2024-04-09,69745,9099,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",197.12,"{\""seasonal\"": \""10%\""}",70070,0,"""Africa""" +2024-08-09,69746,2060,"[\""Laptop\"", \""Keyboard\""]",3956.28,"{\""promo\"": \""13%\""}",299299,1,"""South America""" +2023-04-10,69747,205,"[\""Wireless Mouse\"", \""Laptop\""]",1502.93,{},147110,0,"""North America""" +2024-11-14,69748,603,"[\""Charger\""]",1525.46,{},60047,1,"""Africa""" +2023-04-21,69749,6325,"[\""Monitor\""]",4812.9,{},94821,0,"""Asia""" +2024-08-12,69750,5043,"[\""Tablet\""]",2589.13,"{\""loyalty\"": \""9%\""}",267018,0,"""South America""" +2024-07-05,69751,9293,"[\""Monitor\""]",949.91,"{\""promo\"": \""24%\""}",281599,1,"""Asia""" +2024-11-07,69752,2695,"[\""Headphones\""]",58.81,{},139869,0,"""South America""" +2024-12-16,69753,5790,"[\""Wireless Mouse\""]",3745.41,"{\""seasonal\"": \""30%\""}",43718,1,"""Africa""" +2023-09-27,69754,7477,"[\""Phone\"", \""Laptop\"", \""Charger\""]",760.67,"{\""seasonal\"": \""8%\""}",24495,1,"""Africa""" +2023-05-01,69755,9717,"[\""Phone\"", \""Laptop\""]",4640.96,"{\""seasonal\"": \""23%\""}",109315,1,"""Asia""" +2023-07-06,69756,2369,"[\""Keyboard\""]",754.42,{},256632,1,"""South America""" +2023-06-11,69757,2025,"[\""Phone\"", \""Monitor\""]",1775.34,"{\"": \""21%\""}",251302,1,"""Africa""" +2024-05-02,69758,8564,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4027.62,"{\""promo\"": \""23%\""}",299831,1,"""Europe""" +2023-02-28,69759,2855,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3918.15,"{\""seasonal\"": \""23%\""}",297023,0,"""Africa""" +2023-09-12,69760,8207,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",867.91,{},244792,0,"""Africa""" +2023-07-21,69761,5363,"[\""Tablet\""]",2487.81,{},11615,0,"""Africa""" +2023-01-22,69762,6860,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2124.54,"{\"": \""19%\""}",102455,1,"""North America""" +2024-09-27,69763,7419,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3415.41,"{\""loyalty\"": \""12%\""}",294500,1,"""South America""" +2024-02-07,69764,9386,"[\""Headphones\""]",3578.59,{},59751,1,"""Asia""" +2023-01-26,69765,6914,"[\""Laptop\"", \""Charger\""]",1112.07,"{\""promo\"": \""6%\""}",249397,0,"""North America""" +2024-11-26,69766,4100,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",768.58,"{\""seasonal\"": \""8%\""}",202610,1,"""Europe""" +2023-06-29,69767,758,"[\""Wireless Mouse\""]",1076.77,{},223925,0,"""Africa""" +2024-11-19,69768,1774,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2593.23,{},234424,1,"""South America""" +2024-06-22,69769,6223,"[\""Phone\""]",3113.75,"{\"": \""5%\""}",156498,1,"""South America""" +2024-07-22,69770,3064,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3060.8,"{\""seasonal\"": \""28%\""}",201596,1,"""Europe""" +2024-12-23,69771,6962,"[\""Charger\"", \""Wireless Mouse\""]",4764.84,"{\""seasonal\"": \""26%\""}",56461,0,"""Europe""" +2024-07-27,69772,9722,"[\""Phone\"", \""Headphones\""]",2045.41,"{\""loyalty\"": \""22%\""}",31588,0,"""Asia""" +2024-11-15,69773,7535,"[\""Laptop\""]",3666.2,"{\""promo\"": \""21%\""}",96612,1,"""Asia""" +2024-05-13,69774,8000,"[\""Charger\""]",1202.56,"{\""loyalty\"": \""11%\""}",140958,0,"""Asia""" +2023-02-15,69775,692,"[\""Wireless Mouse\""]",3740.01,{},237884,1,"""North America""" +2024-12-04,69776,6647,"[\""Laptop\""]",514.03,"{\""seasonal\"": \""13%\""}",67067,1,"""Asia""" +2024-06-10,69777,6264,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3320.51,{},196616,0,"""Asia""" +2024-06-25,69778,8482,"[\""Laptop\"", \""Charger\""]",4000.8,{},31276,1,"""North America""" +2023-07-07,69779,7613,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4669.44,{},38609,1,"""South America""" +2024-05-10,69780,5688,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",876.82,{},234956,1,"""Africa""" +2023-06-26,69781,7333,"[\""Phone\"", \""Laptop\""]",3253.81,{},52592,0,"""Asia""" +2023-06-16,69782,4007,"[\""Monitor\""]",317.13,"{\""promo\"": \""6%\""}",173393,0,"""South America""" +2024-10-04,69783,7732,"[\""Charger\""]",4797.01,"{\""loyalty\"": \""8%\""}",241598,0,"""North America""" +2023-08-02,69784,496,"[\""Headphones\"", \""Charger\""]",3134.35,"{\""seasonal\"": \""7%\""}",288124,1,"""Asia""" +2024-09-03,69785,7592,"[\""Monitor\""]",3574.87,{},163260,1,"""North America""" +2024-07-18,69786,6838,"[\""Headphones\""]",4969.01,{},247969,1,"""North America""" +2023-11-16,69787,3677,"[\""Monitor\"", \""Headphones\""]",2750.7,"{\"": \""23%\""}",37344,1,"""Europe""" +2024-03-18,69788,6954,"[\""Charger\"", \""Keyboard\""]",946.36,"{\""loyalty\"": \""13%\""}",241079,0,"""Asia""" +2024-06-01,69789,7441,"[\""Charger\""]",4687.48,"{\""seasonal\"": \""11%\""}",215857,1,"""South America""" +2024-08-13,69790,9395,"[\""Charger\""]",2332.47,"{\""seasonal\"": \""5%\""}",193887,1,"""Asia""" +2023-02-20,69791,3621,"[\""Keyboard\"", \""Laptop\""]",1138.95,{},48521,0,"""Europe""" +2024-04-05,69792,7226,"[\""Wireless Mouse\"", \""Headphones\""]",3184.89,"{\""loyalty\"": \""29%\""}",67082,1,"""South America""" +2024-05-16,69793,7902,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3304.88,{},175564,0,"""Asia""" +2023-06-04,69794,6855,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3900.55,{},254927,0,"""Europe""" +2023-01-27,69795,2449,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2070.81,{},188770,0,"""Africa""" +2024-03-16,69796,2950,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1543.85,{},261257,1,"""Africa""" +2024-08-29,69797,7823,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3232.95,"{\""loyalty\"": \""21%\""}",256560,0,"""South America""" +2023-07-16,69798,5528,"[\""Charger\"", \""Laptop\""]",279.9,{},18876,0,"""Asia""" +2024-03-09,69799,3691,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",89.83,"{\""promo\"": \""14%\""}",247125,0,"""North America""" +2023-10-16,69800,2571,"[\""Tablet\""]",679.81,"{\""promo\"": \""20%\""}",293955,1,"""South America""" +2023-12-26,69801,9463,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1152.17,{},132937,1,"""Asia""" +2023-12-23,69802,8085,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3420.6,{},264024,1,"""Africa""" +2023-12-22,69803,5225,"[\""Headphones\""]",913.65,"{\""seasonal\"": \""20%\""}",98572,1,"""Africa""" +2024-06-03,69804,9619,"[\""Tablet\""]",3064.42,"{\""seasonal\"": \""28%\""}",231552,1,"""South America""" +2024-05-17,69805,1305,"[\""Phone\"", \""Laptop\""]",3960.42,"{\""loyalty\"": \""8%\""}",108719,1,"""Europe""" +2024-04-06,69806,5380,"[\""Tablet\"", \""Charger\""]",1093.46,"{\"": \""14%\""}",75907,0,"""Africa""" +2024-07-24,69807,1328,"[\""Tablet\"", \""Monitor\""]",1734.58,"{\"": \""10%\""}",71619,0,"""Europe""" +2024-07-09,69808,3865,"[\""Tablet\"", \""Keyboard\""]",1346.14,{},38964,1,"""Africa""" +2023-03-13,69809,8836,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",765.23,{},8088,1,"""Asia""" +2023-03-20,69810,7660,"[\""Tablet\"", \""Laptop\""]",2366.33,{},74151,1,"""South America""" +2024-03-06,69811,9798,"[\""Tablet\""]",1695.94,{},273649,1,"""Africa""" +2023-01-17,69812,6329,"[\""Headphones\"", \""Wireless Mouse\""]",3637.88,"{\""promo\"": \""19%\""}",33512,1,"""North America""" +2023-04-21,69813,3327,"[\""Tablet\"", \""Laptop\""]",3047.25,{},275761,1,"""Europe""" +2024-03-19,69814,5251,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2768.39,{},97482,1,"""Africa""" +2024-09-14,69815,7375,"[\""Laptop\""]",4370.76,{},62660,1,"""Africa""" +2023-01-24,69816,4310,"[\""Monitor\""]",1129.59,{},152952,0,"""Europe""" +2023-03-08,69817,1457,"[\""Laptop\"", \""Wireless Mouse\""]",316.36,{},238990,1,"""Asia""" +2024-10-04,69818,3285,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2376.24,"{\"": \""20%\""}",177022,1,"""Europe""" +2023-06-13,69819,600,"[\""Monitor\""]",3341.61,"{\""promo\"": \""11%\""}",233027,0,"""Asia""" +2023-08-10,69820,3914,"[\""Charger\""]",290.43,"{\""seasonal\"": \""18%\""}",17925,1,"""Asia""" +2023-04-10,69821,3057,"[\""Charger\"", \""Headphones\""]",1174.18,{},4298,0,"""North America""" +2024-06-23,69822,1396,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",181.61,"{\""promo\"": \""22%\""}",148518,0,"""Europe""" +2023-08-30,69823,9826,"[\""Phone\""]",4768.89,"{\""promo\"": \""17%\""}",252132,1,"""South America""" +2024-07-01,69824,7800,"[\""Charger\"", \""Headphones\""]",4547.12,{},67742,0,"""Asia""" +2024-04-30,69825,3750,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4862.83,"{\""loyalty\"": \""21%\""}",176884,0,"""Africa""" +2024-09-01,69826,3857,"[\""Tablet\"", \""Phone\""]",2960.27,{},255557,1,"""South America""" +2023-04-23,69827,2024,"[\""Wireless Mouse\""]",1956.21,{},231929,1,"""South America""" +2023-07-13,69828,3369,"[\""Monitor\"", \""Laptop\""]",798.37,{},113028,1,"""Africa""" +2024-11-18,69829,5699,"[\""Tablet\""]",2710.26,"{\"": \""18%\""}",86095,0,"""North America""" +2023-08-29,69830,9070,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2551.9,{},125682,0,"""Asia""" +2024-04-09,69831,261,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3063.87,{},58505,0,"""Africa""" +2024-01-07,69832,4038,"[\""Keyboard\"", \""Headphones\""]",582.86,"{\"": \""16%\""}",158191,0,"""Europe""" +2024-05-03,69833,1161,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2451.27,{},3690,1,"""North America""" +2024-04-25,69834,8395,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1853.61,"{\""loyalty\"": \""18%\""}",11347,0,"""North America""" +2024-04-15,69835,42,"[\""Tablet\"", \""Laptop\""]",3797.96,{},100532,1,"""Asia""" +2024-11-13,69836,6247,"[\""Headphones\""]",4103.3,{},124910,0,"""South America""" +2024-04-05,69837,9992,"[\""Laptop\"", \""Charger\""]",3733.78,{},167160,0,"""Europe""" +2024-01-28,69838,9462,"[\""Headphones\"", \""Phone\""]",1967.14,{},259937,1,"""South America""" +2024-01-22,69839,7024,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2918.97,"{\"": \""29%\""}",9656,0,"""South America""" +2024-09-12,69840,8420,"[\""Tablet\"", \""Keyboard\""]",915.73,"{\"": \""13%\""}",93764,1,"""Europe""" +2023-03-24,69841,7545,"[\""Headphones\"", \""Phone\""]",1345.85,"{\""promo\"": \""24%\""}",288960,0,"""Africa""" +2024-03-01,69842,2830,"[\""Monitor\""]",4904.08,{},193246,0,"""Africa""" +2024-04-11,69843,3965,"[\""Wireless Mouse\""]",3408.75,"{\""loyalty\"": \""16%\""}",206039,0,"""Asia""" +2024-03-25,69844,9321,"[\""Phone\"", \""Monitor\""]",337.07,"{\""promo\"": \""21%\""}",175222,0,"""Asia""" +2023-08-22,69845,7241,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",693.13,{},4796,1,"""Europe""" +2024-11-01,69846,6889,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1130.09,{},296618,1,"""Asia""" +2024-03-25,69847,6178,"[\""Charger\""]",1374.37,{},208624,1,"""Europe""" +2024-04-21,69848,2105,"[\""Wireless Mouse\"", \""Tablet\""]",2181.95,"{\""seasonal\"": \""5%\""}",103816,0,"""Europe""" +2023-06-14,69849,5133,"[\""Headphones\"", \""Laptop\""]",3475.04,{},9338,0,"""North America""" +2023-01-19,69850,988,"[\""Phone\""]",1326.97,"{\""seasonal\"": \""24%\""}",23239,0,"""Asia""" +2024-02-19,69851,6867,"[\""Headphones\"", \""Phone\""]",3147.98,"{\""seasonal\"": \""23%\""}",165344,0,"""Africa""" +2024-09-14,69852,648,"[\""Monitor\""]",1562.05,"{\""promo\"": \""8%\""}",299811,0,"""Europe""" +2023-06-08,69853,6973,"[\""Wireless Mouse\""]",1922.46,{},36300,1,"""North America""" +2023-05-11,69854,2791,"[\""Charger\""]",203.0,"{\""promo\"": \""29%\""}",62627,1,"""Asia""" +2023-11-27,69855,2625,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3511.37,{},148575,1,"""North America""" +2024-08-07,69856,3764,"[\""Keyboard\""]",1676.6,{},274835,1,"""Asia""" +2023-06-30,69857,4771,"[\""Monitor\"", \""Tablet\""]",3951.13,"{\"": \""25%\""}",276555,1,"""North America""" +2023-06-29,69858,4595,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2731.35,{},108566,0,"""South America""" +2024-01-07,69859,3095,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4083.79,{},162205,0,"""North America""" +2023-07-10,69860,8885,"[\""Charger\""]",1433.94,{},68276,0,"""North America""" +2023-06-27,69861,9299,"[\""Laptop\"", \""Wireless Mouse\""]",2694.94,"{\""promo\"": \""20%\""}",202956,1,"""Europe""" +2023-09-08,69862,2055,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3768.58,{},11003,0,"""Asia""" +2023-12-13,69863,5203,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3308.25,"{\""promo\"": \""24%\""}",120420,0,"""South America""" +2023-11-16,69864,3032,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",420.24,{},181906,0,"""North America""" +2023-08-09,69865,4719,"[\""Keyboard\"", \""Monitor\""]",1776.2,{},152058,1,"""Asia""" +2023-02-22,69866,5662,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3482.62,"{\"": \""12%\""}",160271,0,"""Africa""" +2023-02-18,69867,5664,"[\""Charger\""]",2241.36,"{\""promo\"": \""5%\""}",58049,0,"""Africa""" +2023-04-06,69868,1129,"[\""Keyboard\""]",967.16,{},235388,0,"""North America""" +2023-01-25,69869,233,"[\""Tablet\""]",3265.31,"{\""seasonal\"": \""5%\""}",159896,0,"""Asia""" +2024-02-05,69870,1893,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",522.58,{},266599,0,"""Africa""" +2024-09-15,69871,6219,"[\""Monitor\"", \""Phone\""]",4953.19,"{\""promo\"": \""8%\""}",116220,1,"""Asia""" +2023-04-14,69872,2910,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2809.36,{},37324,0,"""South America""" +2023-10-11,69873,1195,"[\""Wireless Mouse\""]",4047.23,"{\""promo\"": \""30%\""}",99928,0,"""Africa""" +2024-07-28,69874,6838,"[\""Headphones\"", \""Wireless Mouse\""]",4179.21,"{\"": \""18%\""}",11584,0,"""North America""" +2023-06-27,69875,1720,"[\""Charger\"", \""Keyboard\""]",1251.03,{},277574,0,"""South America""" +2023-08-05,69876,6955,"[\""Monitor\"", \""Tablet\""]",1947.88,{},270049,1,"""Asia""" +2024-02-10,69877,3446,"[\""Headphones\"", \""Phone\""]",4876.86,{},293462,1,"""South America""" +2023-05-11,69878,2700,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4396.46,{},151242,1,"""South America""" +2024-12-22,69879,6067,"[\""Keyboard\""]",1434.08,"{\""promo\"": \""12%\""}",36629,1,"""Africa""" +2023-03-31,69880,3780,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3295.08,"{\"": \""12%\""}",298330,1,"""North America""" +2024-04-29,69881,1345,"[\""Phone\"", \""Wireless Mouse\""]",2730.02,{},34552,1,"""South America""" +2023-05-25,69882,9060,"[\""Charger\""]",1786.85,{},74229,0,"""South America""" +2024-04-17,69883,1963,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2922.86,"{\""loyalty\"": \""30%\""}",126878,1,"""North America""" +2023-08-08,69884,8379,"[\""Laptop\"", \""Wireless Mouse\""]",53.49,"{\""seasonal\"": \""15%\""}",69043,0,"""Asia""" +2023-03-15,69885,6056,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1535.02,"{\""seasonal\"": \""24%\""}",86081,1,"""Europe""" +2024-02-25,69886,3206,"[\""Monitor\""]",449.67,{},253893,1,"""Africa""" +2023-04-17,69887,9023,"[\""Headphones\""]",1875.24,"{\""loyalty\"": \""15%\""}",211762,1,"""Africa""" +2024-08-31,69888,4626,"[\""Charger\"", \""Monitor\""]",1104.51,"{\""loyalty\"": \""29%\""}",6867,1,"""Asia""" +2024-08-27,69889,1082,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1525.4,{},249296,1,"""Africa""" +2024-10-04,69890,5842,"[\""Charger\""]",2308.09,{},45902,1,"""Asia""" +2024-04-18,69891,9702,"[\""Headphones\"", \""Charger\"", \""Phone\""]",399.93,"{\""loyalty\"": \""21%\""}",223266,0,"""Asia""" +2023-06-04,69892,6263,"[\""Monitor\""]",923.9,"{\""loyalty\"": \""14%\""}",61996,1,"""Africa""" +2024-02-03,69893,7014,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2052.1,{},210757,0,"""Africa""" +2023-01-23,69894,1305,"[\""Laptop\""]",602.33,"{\""seasonal\"": \""30%\""}",33976,0,"""Asia""" +2023-02-22,69895,7019,"[\""Wireless Mouse\"", \""Headphones\""]",4002.32,{},19381,0,"""Africa""" +2024-03-17,69896,2240,"[\""Keyboard\""]",3800.59,"{\"": \""14%\""}",65488,0,"""Africa""" +2024-05-04,69897,8953,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1688.57,{},235544,1,"""Asia""" +2024-06-18,69898,8067,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1054.31,{},79780,0,"""Asia""" +2024-11-13,69899,7042,"[\""Charger\""]",54.88,{},123972,1,"""South America""" +2023-02-05,69900,8574,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3704.01,{},138345,1,"""Africa""" +2023-06-19,69901,9934,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1370.26,{},118473,1,"""Asia""" +2024-06-07,69902,5702,"[\""Tablet\"", \""Monitor\""]",2660.85,{},271316,1,"""Africa""" +2023-05-07,69903,9906,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",257.01,{},161018,0,"""Africa""" +2024-02-18,69904,6809,"[\""Headphones\"", \""Charger\""]",307.7,{},167261,1,"""Africa""" +2023-12-30,69905,3868,"[\""Headphones\""]",3985.13,{},284596,0,"""North America""" +2024-01-11,69906,636,"[\""Laptop\""]",3753.37,"{\""loyalty\"": \""16%\""}",188292,1,"""North America""" +2023-12-13,69907,3111,"[\""Charger\""]",1239.96,"{\""loyalty\"": \""14%\""}",224976,0,"""South America""" +2024-09-16,69908,497,"[\""Monitor\""]",1869.57,"{\"": \""30%\""}",108109,0,"""South America""" +2023-08-03,69909,5760,"[\""Charger\""]",3085.6,"{\""promo\"": \""28%\""}",182631,1,"""South America""" +2023-10-19,69910,1113,"[\""Keyboard\""]",2174.26,"{\""promo\"": \""28%\""}",66906,0,"""Asia""" +2023-12-17,69911,9708,"[\""Monitor\""]",3463.51,{},268756,0,"""South America""" +2023-06-11,69912,6279,"[\""Tablet\""]",1226.25,"{\"": \""15%\""}",199336,1,"""South America""" +2024-05-11,69913,3968,"[\""Wireless Mouse\"", \""Keyboard\""]",1525.3,"{\""seasonal\"": \""16%\""}",251389,1,"""Europe""" +2023-07-09,69914,7438,"[\""Phone\"", \""Laptop\""]",799.52,{},247307,1,"""Europe""" +2023-02-03,69915,1767,"[\""Tablet\"", \""Wireless Mouse\""]",1767.32,{},155918,0,"""Europe""" +2023-12-05,69916,4733,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1295.15,{},185317,0,"""Africa""" +2024-08-06,69917,8057,"[\""Wireless Mouse\""]",2473.87,"{\""promo\"": \""23%\""}",182401,0,"""South America""" +2024-11-26,69918,194,"[\""Wireless Mouse\"", \""Tablet\""]",4315.64,{},61518,0,"""Africa""" +2024-12-20,69919,2420,"[\""Tablet\""]",2648.21,"{\""loyalty\"": \""13%\""}",271887,0,"""Europe""" +2023-07-15,69920,5210,"[\""Monitor\"", \""Tablet\""]",962.9,{},285494,1,"""Europe""" +2023-11-21,69921,6831,"[\""Tablet\"", \""Wireless Mouse\""]",1259.28,"{\""loyalty\"": \""30%\""}",150220,0,"""Africa""" +2024-04-26,69922,9978,"[\""Wireless Mouse\"", \""Keyboard\""]",3549.97,"{\""loyalty\"": \""21%\""}",230746,0,"""Africa""" +2024-07-23,69923,6109,"[\""Monitor\"", \""Charger\""]",2722.26,{},99293,0,"""Africa""" +2023-09-02,69924,4870,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3158.13,"{\""loyalty\"": \""28%\""}",122498,1,"""North America""" +2023-01-22,69925,9,"[\""Wireless Mouse\"", \""Headphones\""]",1053.47,"{\"": \""10%\""}",48385,1,"""Asia""" +2024-08-09,69926,2433,"[\""Tablet\"", \""Phone\""]",2324.12,"{\"": \""15%\""}",159692,1,"""South America""" +2023-06-01,69927,9704,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3296.64,{},268545,0,"""Asia""" +2023-02-11,69928,6216,"[\""Phone\""]",4140.61,{},53862,1,"""North America""" +2024-09-03,69929,7030,"[\""Headphones\"", \""Tablet\""]",3171.47,"{\""seasonal\"": \""26%\""}",141404,1,"""Asia""" +2024-07-20,69930,996,"[\""Charger\"", \""Tablet\""]",1315.82,{},190912,0,"""Africa""" +2023-07-23,69931,7898,"[\""Keyboard\""]",3754.69,{},169574,0,"""North America""" +2024-10-20,69932,9262,"[\""Keyboard\"", \""Monitor\""]",2414.96,{},110157,1,"""Africa""" +2023-01-03,69933,7576,"[\""Wireless Mouse\"", \""Monitor\""]",473.56,"{\""seasonal\"": \""26%\""}",155784,0,"""Asia""" +2023-11-20,69934,3679,"[\""Tablet\"", \""Headphones\""]",2644.6,"{\"": \""7%\""}",250779,1,"""South America""" +2023-05-20,69935,5653,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4851.3,{},99860,1,"""Asia""" +2024-03-19,69936,3605,"[\""Monitor\""]",4228.21,{},73940,0,"""Africa""" +2024-06-27,69937,8728,"[\""Monitor\""]",1878.04,{},187198,1,"""Europe""" +2023-03-05,69938,906,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4299.1,{},257166,0,"""Africa""" +2023-10-11,69939,4102,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4933.72,"{\""loyalty\"": \""25%\""}",153183,1,"""Asia""" +2024-03-10,69940,344,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1076.67,"{\"": \""14%\""}",235116,0,"""South America""" +2024-04-23,69941,3938,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4964.57,{},293221,0,"""Asia""" +2023-05-12,69942,9462,"[\""Headphones\""]",4925.45,{},153912,0,"""Africa""" +2024-05-13,69943,4225,"[\""Wireless Mouse\"", \""Monitor\""]",3401.31,{},91972,0,"""North America""" +2023-04-17,69944,5245,"[\""Tablet\"", \""Keyboard\""]",3008.13,{},162072,0,"""Europe""" +2024-03-11,69945,2511,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",758.67,{},8042,1,"""Asia""" +2024-05-03,69946,8000,"[\""Wireless Mouse\"", \""Monitor\""]",1996.94,{},36152,1,"""South America""" +2024-02-19,69947,688,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",631.13,"{\"": \""21%\""}",13427,1,"""South America""" +2023-04-11,69948,9396,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2762.67,"{\""seasonal\"": \""16%\""}",243052,0,"""Europe""" +2024-02-14,69949,4667,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1006.67,{},215669,0,"""Africa""" +2024-03-10,69950,9081,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2440.88,{},234976,0,"""South America""" +2024-12-11,69951,379,"[\""Monitor\""]",3447.05,{},25371,1,"""North America""" +2023-07-30,69952,8192,"[\""Phone\""]",2675.54,{},221369,0,"""Africa""" +2024-08-06,69953,4983,"[\""Laptop\"", \""Tablet\""]",3801.35,"{\""loyalty\"": \""28%\""}",206774,1,"""North America""" +2023-09-05,69954,3184,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2573.64,"{\""promo\"": \""6%\""}",38826,0,"""Asia""" +2023-12-19,69955,7947,"[\""Laptop\""]",4473.85,"{\""promo\"": \""16%\""}",213337,0,"""Europe""" +2024-05-26,69956,8937,"[\""Keyboard\""]",1785.42,{},139790,0,"""Asia""" +2023-10-22,69957,8173,"[\""Tablet\""]",965.46,{},268191,0,"""Asia""" +2023-12-13,69958,8433,"[\""Phone\"", \""Headphones\""]",3336.84,"{\""promo\"": \""7%\""}",126520,0,"""Europe""" +2024-01-09,69959,9573,"[\""Keyboard\""]",2133.21,{},67207,1,"""North America""" +2023-05-08,69960,6316,"[\""Tablet\"", \""Laptop\""]",522.95,"{\""loyalty\"": \""12%\""}",212769,0,"""Asia""" +2023-12-13,69961,336,"[\""Tablet\""]",4990.54,{},239890,1,"""Africa""" +2023-11-29,69962,2414,"[\""Wireless Mouse\""]",156.98,"{\"": \""18%\""}",101504,1,"""Asia""" +2023-12-24,69963,6170,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1776.0,"{\""seasonal\"": \""8%\""}",65737,0,"""Asia""" +2024-07-28,69964,4852,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",592.2,"{\"": \""27%\""}",185748,0,"""Africa""" +2023-08-04,69965,6928,"[\""Charger\"", \""Monitor\""]",2775.19,"{\""seasonal\"": \""30%\""}",269831,1,"""South America""" +2024-10-17,69966,7656,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",956.81,{},92319,0,"""Africa""" +2024-05-25,69967,5838,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3340.62,"{\""seasonal\"": \""12%\""}",234815,1,"""Africa""" +2023-06-05,69968,6223,"[\""Laptop\""]",3705.28,"{\"": \""7%\""}",172710,1,"""Africa""" +2023-09-19,69969,2137,"[\""Tablet\""]",3049.47,{},142586,0,"""Africa""" +2024-11-20,69970,1953,"[\""Wireless Mouse\"", \""Monitor\""]",3474.73,{},136425,1,"""Asia""" +2023-10-30,69971,6078,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2829.77,{},299857,1,"""Europe""" +2024-02-10,69972,1738,"[\""Monitor\""]",253.29,"{\""loyalty\"": \""22%\""}",113579,1,"""Europe""" +2023-11-13,69973,9741,"[\""Wireless Mouse\"", \""Monitor\""]",2708.83,{},242133,1,"""North America""" +2024-10-30,69974,3709,"[\""Laptop\"", \""Phone\""]",2992.1,"{\""seasonal\"": \""6%\""}",279236,1,"""Asia""" +2023-01-01,69975,3053,"[\""Keyboard\""]",3721.94,{},76644,0,"""Asia""" +2024-07-03,69976,5998,"[\""Laptop\""]",4602.48,"{\""loyalty\"": \""21%\""}",206254,0,"""South America""" +2023-06-08,69977,7173,"[\""Monitor\""]",3873.28,"{\""loyalty\"": \""5%\""}",46408,0,"""South America""" +2023-11-10,69978,2758,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2509.75,{},95987,0,"""Europe""" +2024-01-11,69979,6086,"[\""Tablet\""]",1797.29,{},22757,1,"""North America""" +2024-09-13,69980,1044,"[\""Laptop\""]",1537.47,"{\"": \""15%\""}",59098,0,"""North America""" +2024-02-22,69981,3759,"[\""Monitor\""]",585.16,{},291783,1,"""North America""" +2024-12-16,69982,5522,"[\""Monitor\""]",2973.36,"{\""seasonal\"": \""19%\""}",251435,0,"""Asia""" +2024-06-16,69983,5669,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",795.04,{},29808,1,"""North America""" +2024-07-09,69984,6902,"[\""Laptop\"", \""Wireless Mouse\""]",3391.19,"{\"": \""10%\""}",104661,1,"""Europe""" +2024-07-06,69985,2995,"[\""Tablet\""]",2151.82,{},187749,1,"""Asia""" +2024-09-17,69986,4949,"[\""Tablet\""]",4386.17,{},7101,0,"""Asia""" +2024-09-25,69987,1590,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3465.53,{},94519,1,"""South America""" +2024-05-10,69988,9008,"[\""Phone\""]",3786.57,{},25775,1,"""Europe""" +2024-08-29,69989,7459,"[\""Laptop\""]",2634.53,{},158266,1,"""South America""" +2024-06-02,69990,6293,"[\""Laptop\"", \""Phone\""]",4980.28,{},37284,0,"""North America""" +2024-11-02,69991,8566,"[\""Wireless Mouse\""]",2602.78,"{\""promo\"": \""15%\""}",78148,0,"""Africa""" +2023-11-24,69992,3532,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1310.89,{},164053,1,"""South America""" +2023-12-11,69993,1610,"[\""Laptop\"", \""Monitor\""]",1006.84,{},8788,1,"""North America""" +2023-10-09,69994,8268,"[\""Wireless Mouse\""]",551.35,{},87799,1,"""Europe""" +2023-07-16,69995,7911,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1227.86,{},224208,1,"""Europe""" +2024-06-27,69996,8932,"[\""Charger\""]",345.14,{},231113,0,"""Africa""" +2024-06-12,69997,7416,"[\""Laptop\"", \""Keyboard\""]",3834.57,"{\"": \""29%\""}",106993,0,"""South America""" +2024-09-24,69998,3226,"[\""Laptop\""]",2644.87,"{\""seasonal\"": \""30%\""}",145263,1,"""South America""" +2023-11-23,69999,8970,"[\""Laptop\""]",606.89,{},102109,0,"""Europe""" +2023-04-12,70000,5703,"[\""Phone\"", \""Headphones\""]",3817.64,{},121868,1,"""South America""" +2024-07-16,70001,8872,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2215.88,{},289585,0,"""Europe""" +2024-09-05,70002,2159,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2243.17,{},206613,1,"""Asia""" +2024-04-03,70003,4504,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4995.44,"{\""promo\"": \""22%\""}",196279,0,"""Europe""" +2024-02-26,70004,2943,"[\""Monitor\""]",804.52,{},134930,0,"""South America""" +2024-07-18,70005,6807,"[\""Keyboard\"", \""Headphones\""]",3645.67,{},154906,0,"""North America""" +2023-06-19,70006,4996,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3933.98,{},86660,0,"""South America""" +2024-03-30,70007,2241,"[\""Laptop\"", \""Keyboard\""]",1877.34,{},136157,1,"""South America""" +2023-03-15,70008,9623,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1415.78,{},244867,0,"""Africa""" +2023-07-20,70009,1616,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1585.43,{},150578,0,"""Asia""" +2023-10-27,70010,2995,"[\""Keyboard\""]",205.4,{},5802,0,"""Asia""" +2023-10-13,70011,2478,"[\""Phone\"", \""Charger\""]",2527.14,"{\""seasonal\"": \""26%\""}",128571,0,"""Europe""" +2023-08-08,70012,2818,"[\""Headphones\"", \""Tablet\""]",4023.21,{},174661,1,"""Africa""" +2023-04-30,70013,2688,"[\""Wireless Mouse\"", \""Phone\""]",57.7,"{\"": \""12%\""}",103769,0,"""Africa""" +2024-02-10,70014,2535,"[\""Phone\"", \""Tablet\""]",4197.12,"{\""seasonal\"": \""6%\""}",268580,0,"""South America""" +2024-08-29,70015,1173,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",3157.93,{},254248,0,"""Europe""" +2023-01-23,70016,1925,"[\""Tablet\""]",3712.23,"{\"": \""8%\""}",140269,0,"""Africa""" +2023-12-24,70017,6764,"[\""Charger\""]",2102.79,"{\"": \""15%\""}",95502,0,"""North America""" +2024-04-12,70018,7412,"[\""Laptop\""]",4076.23,"{\""seasonal\"": \""21%\""}",142887,0,"""North America""" +2024-07-11,70019,1911,"[\""Tablet\"", \""Monitor\""]",576.46,"{\"": \""26%\""}",135649,0,"""North America""" +2023-04-19,70020,159,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3877.94,"{\""loyalty\"": \""10%\""}",216309,0,"""North America""" +2024-02-24,70021,7426,"[\""Wireless Mouse\""]",504.02,"{\""promo\"": \""16%\""}",207243,0,"""Europe""" +2023-03-21,70022,7741,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1318.38,"{\""seasonal\"": \""9%\""}",56073,0,"""North America""" +2024-09-16,70023,8869,"[\""Monitor\""]",3344.76,"{\""promo\"": \""23%\""}",130621,0,"""Africa""" +2023-11-08,70024,4410,"[\""Wireless Mouse\"", \""Laptop\""]",977.34,"{\""seasonal\"": \""17%\""}",259685,0,"""North America""" +2024-04-20,70025,6187,"[\""Headphones\"", \""Charger\""]",1765.18,{},125412,1,"""North America""" +2024-11-06,70026,7179,"[\""Phone\"", \""Headphones\""]",892.95,{},78131,1,"""Europe""" +2023-12-17,70027,1414,"[\""Wireless Mouse\"", \""Tablet\""]",2714.28,"{\"": \""20%\""}",175397,1,"""South America""" +2023-06-24,70028,4890,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1806.84,{},249774,1,"""Asia""" +2024-09-19,70029,1058,"[\""Laptop\"", \""Headphones\""]",177.97,{},132465,1,"""Asia""" +2024-06-05,70030,3950,"[\""Tablet\""]",602.19,{},258648,0,"""South America""" +2023-05-28,70031,1787,"[\""Phone\""]",4617.45,"{\""seasonal\"": \""26%\""}",237493,1,"""Africa""" +2023-06-20,70032,1361,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3963.92,"{\"": \""19%\""}",24633,0,"""Europe""" +2024-11-22,70033,8088,"[\""Phone\""]",1658.68,{},220643,1,"""Europe""" +2024-06-03,70034,7844,"[\""Laptop\""]",104.23,"{\""promo\"": \""14%\""}",228044,1,"""Africa""" +2023-10-12,70035,7459,"[\""Charger\"", \""Tablet\""]",3723.23,{},250466,0,"""Europe""" +2024-10-18,70036,7791,"[\""Wireless Mouse\""]",107.61,"{\""promo\"": \""10%\""}",94986,0,"""South America""" +2023-08-10,70037,1844,"[\""Tablet\"", \""Wireless Mouse\""]",3710.78,{},26380,0,"""Africa""" +2023-10-06,70038,7249,"[\""Monitor\""]",3410.11,{},114334,0,"""South America""" +2024-12-07,70039,5376,"[\""Headphones\""]",112.28,"{\""loyalty\"": \""13%\""}",65814,0,"""Europe""" +2024-10-04,70040,577,"[\""Phone\"", \""Keyboard\""]",3627.6,"{\""loyalty\"": \""20%\""}",154480,1,"""South America""" +2024-11-02,70041,3171,"[\""Phone\""]",2159.73,"{\"": \""15%\""}",130982,0,"""South America""" +2024-05-01,70042,3063,"[\""Tablet\""]",983.27,{},256656,0,"""Europe""" +2023-10-31,70043,4625,"[\""Keyboard\"", \""Charger\""]",3777.75,{},158220,0,"""Europe""" +2023-11-12,70044,9737,"[\""Laptop\"", \""Tablet\""]",2524.64,"{\""seasonal\"": \""23%\""}",112112,0,"""Africa""" +2023-08-07,70045,5159,"[\""Monitor\""]",1072.71,{},277764,1,"""Asia""" +2023-05-19,70046,8442,"[\""Phone\""]",1169.94,"{\""promo\"": \""6%\""}",183166,1,"""South America""" +2024-07-16,70047,3206,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2488.07,"{\""promo\"": \""9%\""}",170200,1,"""Asia""" +2024-06-09,70048,1364,"[\""Wireless Mouse\""]",1763.86,{},297431,0,"""Africa""" +2024-08-25,70049,3247,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1935.95,{},239513,1,"""North America""" +2023-01-04,70050,2363,"[\""Tablet\"", \""Laptop\""]",4650.95,"{\""seasonal\"": \""7%\""}",73340,1,"""South America""" +2023-11-14,70051,3067,"[\""Headphones\""]",163.19,"{\""loyalty\"": \""12%\""}",119302,0,"""Asia""" +2024-01-17,70052,6658,"[\""Charger\"", \""Wireless Mouse\""]",85.23,{},277371,1,"""North America""" +2024-08-15,70053,1131,"[\""Keyboard\"", \""Phone\""]",4546.15,{},81821,0,"""Europe""" +2023-12-26,70054,3709,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2205.9,{},272371,1,"""North America""" +2023-09-02,70055,4223,"[\""Keyboard\""]",4305.97,{},3723,1,"""Asia""" +2023-08-15,70056,2973,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",97.67,"{\"": \""23%\""}",106733,1,"""South America""" +2024-01-07,70057,5529,"[\""Keyboard\""]",3669.5,{},78727,1,"""Africa""" +2023-02-20,70058,3818,"[\""Wireless Mouse\""]",4657.05,"{\""seasonal\"": \""14%\""}",78378,1,"""North America""" +2023-08-18,70059,869,"[\""Headphones\""]",169.15,"{\""loyalty\"": \""7%\""}",11865,0,"""South America""" +2023-04-27,70060,9148,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2787.02,{},152249,0,"""Asia""" +2023-01-26,70061,6828,"[\""Phone\"", \""Wireless Mouse\""]",3336.13,{},247225,0,"""Africa""" +2023-01-03,70062,8750,"[\""Keyboard\"", \""Phone\""]",3912.9,{},228073,0,"""South America""" +2023-08-15,70063,9389,"[\""Laptop\"", \""Wireless Mouse\""]",1532.72,{},198393,1,"""North America""" +2023-11-09,70064,8947,"[\""Phone\""]",1413.64,"{\""seasonal\"": \""23%\""}",187064,0,"""South America""" +2024-06-02,70065,4703,"[\""Tablet\"", \""Monitor\""]",4109.48,{},9100,1,"""South America""" +2024-04-04,70066,9064,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1190.05,{},282154,0,"""South America""" +2023-11-07,70067,5550,"[\""Tablet\"", \""Phone\""]",611.88,"{\""seasonal\"": \""17%\""}",182194,1,"""Africa""" +2023-05-07,70068,9675,"[\""Keyboard\""]",743.4,"{\""loyalty\"": \""17%\""}",92031,1,"""North America""" +2023-11-15,70069,6317,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2556.46,{},138916,1,"""North America""" +2024-12-18,70070,2727,"[\""Phone\"", \""Tablet\""]",4813.78,"{\""loyalty\"": \""5%\""}",208872,0,"""South America""" +2024-07-12,70071,9158,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1176.34,"{\"": \""10%\""}",236052,1,"""South America""" +2024-05-02,70072,5235,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3140.26,{},62694,1,"""South America""" +2024-07-09,70073,5755,"[\""Monitor\""]",2187.73,"{\""promo\"": \""22%\""}",149516,0,"""Africa""" +2023-08-15,70074,27,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3716.95,"{\""loyalty\"": \""21%\""}",277284,1,"""North America""" +2023-02-17,70075,9934,"[\""Headphones\""]",2858.57,"{\""promo\"": \""8%\""}",200956,1,"""Asia""" +2023-01-01,70076,1377,"[\""Wireless Mouse\"", \""Phone\""]",3967.7,"{\""seasonal\"": \""17%\""}",108077,0,"""North America""" +2023-11-30,70077,6205,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1732.55,{},124668,1,"""Europe""" +2023-12-28,70078,3845,"[\""Wireless Mouse\"", \""Monitor\""]",3129.66,{},248293,0,"""Africa""" +2023-11-09,70079,3131,"[\""Wireless Mouse\"", \""Headphones\""]",3496.27,{},191153,1,"""Africa""" +2023-05-01,70080,3575,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3768.19,"{\"": \""16%\""}",112023,1,"""Asia""" +2023-12-24,70081,7025,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4830.78,"{\""promo\"": \""27%\""}",234293,0,"""Europe""" +2024-07-07,70082,6633,"[\""Laptop\"", \""Tablet\""]",1597.11,"{\"": \""20%\""}",211474,0,"""Europe""" +2023-06-16,70083,2489,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2759.53,"{\"": \""8%\""}",206433,0,"""Europe""" +2024-08-07,70084,8373,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1154.61,{},277421,0,"""North America""" +2024-06-27,70085,802,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3213.61,"{\"": \""10%\""}",53228,1,"""Africa""" +2024-05-31,70086,4234,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4269.87,{},187783,1,"""Asia""" +2024-10-17,70087,7886,"[\""Headphones\"", \""Charger\""]",2752.7,{},275924,0,"""Africa""" +2023-06-28,70088,2299,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1444.15,{},175205,0,"""Asia""" +2024-12-26,70089,953,"[\""Keyboard\"", \""Laptop\""]",254.49,"{\""promo\"": \""29%\""}",118064,1,"""Asia""" +2023-06-16,70090,3082,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2314.95,"{\""loyalty\"": \""14%\""}",196064,1,"""Asia""" +2024-01-31,70091,2073,"[\""Charger\"", \""Keyboard\""]",458.87,"{\""promo\"": \""5%\""}",162291,0,"""South America""" +2024-04-29,70092,9305,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4764.29,{},31018,1,"""North America""" +2024-08-17,70093,2256,"[\""Wireless Mouse\""]",2801.42,"{\""loyalty\"": \""25%\""}",287051,0,"""South America""" +2024-10-29,70094,1692,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4744.45,{},207194,1,"""North America""" +2024-04-19,70095,4200,"[\""Wireless Mouse\""]",4431.71,"{\"": \""15%\""}",110765,1,"""Europe""" +2024-04-11,70096,8613,"[\""Phone\""]",2543.96,{},47829,1,"""Asia""" +2023-02-23,70097,5063,"[\""Headphones\""]",1782.01,"{\""promo\"": \""10%\""}",242467,0,"""North America""" +2024-04-26,70098,175,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1674.27,{},194643,0,"""Europe""" +2024-07-01,70099,347,"[\""Keyboard\""]",1784.18,"{\""seasonal\"": \""10%\""}",27744,0,"""Asia""" +2024-12-08,70100,5904,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",250.89,"{\"": \""20%\""}",257331,0,"""Asia""" +2023-10-07,70101,9305,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3103.17,{},271615,1,"""Asia""" +2023-01-26,70102,6289,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2038.33,"{\""seasonal\"": \""18%\""}",139504,1,"""Asia""" +2024-09-16,70103,2585,"[\""Laptop\""]",2630.81,{},51658,1,"""Europe""" +2023-07-05,70104,1829,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1407.83,{},259661,0,"""South America""" +2023-05-21,70105,4668,"[\""Tablet\"", \""Wireless Mouse\""]",4384.44,"{\""promo\"": \""7%\""}",296966,0,"""Europe""" +2023-05-01,70106,1326,"[\""Laptop\""]",89.49,{},290474,1,"""Asia""" +2023-04-19,70107,246,"[\""Headphones\""]",2831.71,"{\""seasonal\"": \""20%\""}",117423,1,"""North America""" +2024-11-12,70108,8371,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4177.96,{},100350,0,"""South America""" +2023-12-17,70109,357,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4761.3,"{\""loyalty\"": \""14%\""}",190942,0,"""South America""" +2023-06-10,70110,8485,"[\""Monitor\"", \""Laptop\""]",2707.09,"{\"": \""18%\""}",189549,0,"""Asia""" +2023-12-28,70111,1740,"[\""Charger\""]",2549.31,"{\""promo\"": \""22%\""}",9074,0,"""South America""" +2023-01-11,70112,9847,"[\""Phone\"", \""Charger\"", \""Laptop\""]",647.62,"{\"": \""15%\""}",166958,0,"""North America""" +2023-11-22,70113,644,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",856.02,{},18343,0,"""Asia""" +2024-12-17,70114,5840,"[\""Wireless Mouse\"", \""Tablet\""]",2714.65,{},140743,1,"""South America""" +2024-12-23,70115,5177,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",352.29,"{\""seasonal\"": \""17%\""}",218330,0,"""Europe""" +2024-05-02,70116,5454,"[\""Wireless Mouse\"", \""Phone\""]",974.35,"{\""seasonal\"": \""26%\""}",161480,0,"""Africa""" +2024-09-26,70117,6561,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4686.39,"{\""seasonal\"": \""19%\""}",237503,0,"""South America""" +2024-02-11,70118,3304,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",531.31,{},214783,1,"""Africa""" +2024-03-11,70119,6240,"[\""Headphones\""]",4583.2,{},177756,1,"""North America""" +2023-01-20,70120,357,"[\""Wireless Mouse\"", \""Laptop\""]",2441.94,{},60278,1,"""Africa""" +2024-04-26,70121,6895,"[\""Laptop\""]",3579.91,"{\"": \""22%\""}",196520,1,"""Africa""" +2024-08-20,70122,1,"[\""Tablet\""]",565.71,{},256474,0,"""North America""" +2023-11-08,70123,8809,"[\""Monitor\"", \""Wireless Mouse\""]",949.01,{},252662,0,"""Africa""" +2024-01-14,70124,221,"[\""Monitor\""]",2730.22,{},220333,1,"""Asia""" +2024-08-25,70125,6579,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2768.06,"{\"": \""27%\""}",227249,1,"""Africa""" +2024-06-23,70126,7288,"[\""Keyboard\"", \""Charger\""]",4872.07,"{\""promo\"": \""7%\""}",221964,0,"""Europe""" +2023-11-28,70127,6693,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1824.27,"{\""seasonal\"": \""29%\""}",176731,1,"""Europe""" +2023-10-11,70128,2722,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2140.04,{},177720,0,"""Europe""" +2023-03-12,70129,7805,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3105.2,"{\""loyalty\"": \""18%\""}",102201,1,"""Asia""" +2024-10-19,70130,2810,"[\""Charger\""]",3347.1,{},105530,1,"""Europe""" +2023-07-23,70131,5124,"[\""Keyboard\"", \""Charger\""]",1813.75,"{\""promo\"": \""25%\""}",71090,1,"""South America""" +2024-08-02,70132,4712,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1074.37,"{\""seasonal\"": \""20%\""}",45876,0,"""Asia""" +2024-02-25,70133,8121,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4230.36,{},84469,1,"""Europe""" +2023-02-08,70134,7670,"[\""Wireless Mouse\"", \""Headphones\""]",3774.79,{},253402,1,"""Africa""" +2024-06-11,70135,5779,"[\""Headphones\"", \""Tablet\""]",4852.33,"{\""seasonal\"": \""23%\""}",89877,1,"""Asia""" +2023-03-05,70136,3149,"[\""Phone\""]",613.32,{},168176,0,"""Asia""" +2024-10-29,70137,2163,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3813.82,{},185911,0,"""South America""" +2023-01-25,70138,9215,"[\""Tablet\"", \""Monitor\""]",1700.5,"{\"": \""17%\""}",258816,1,"""Europe""" +2023-04-12,70139,8853,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3475.16,"{\""seasonal\"": \""28%\""}",205042,1,"""Europe""" +2024-04-15,70140,8236,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2942.68,"{\""loyalty\"": \""16%\""}",41914,0,"""Asia""" +2024-02-03,70141,6170,"[\""Keyboard\"", \""Charger\""]",329.46,{},145804,1,"""Europe""" +2024-10-24,70142,4707,"[\""Headphones\"", \""Phone\""]",4951.66,"{\""loyalty\"": \""30%\""}",239009,1,"""Africa""" +2023-01-21,70143,9204,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3238.55,"{\""promo\"": \""6%\""}",185551,0,"""South America""" +2024-01-22,70144,9853,"[\""Wireless Mouse\""]",2947.61,{},27267,0,"""Europe""" +2023-06-06,70145,6491,"[\""Wireless Mouse\""]",250.85,"{\""loyalty\"": \""28%\""}",146176,0,"""North America""" +2023-11-24,70146,2033,"[\""Phone\"", \""Tablet\""]",3107.56,"{\"": \""6%\""}",195226,1,"""Africa""" +2024-04-09,70147,1334,"[\""Tablet\"", \""Wireless Mouse\""]",3169.88,{},195216,0,"""Europe""" +2023-03-05,70148,9746,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2388.0,{},11736,0,"""South America""" +2023-10-25,70149,2737,"[\""Tablet\""]",4377.9,"{\"": \""7%\""}",68065,0,"""North America""" +2023-05-17,70150,6383,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",738.95,"{\"": \""22%\""}",265019,0,"""Asia""" +2024-08-13,70151,7025,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",112.57,{},46283,1,"""Asia""" +2024-04-10,70152,1366,"[\""Phone\"", \""Keyboard\""]",345.88,"{\""seasonal\"": \""5%\""}",109497,1,"""North America""" +2023-05-01,70153,2262,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1604.41,"{\""seasonal\"": \""26%\""}",173836,1,"""North America""" +2023-04-08,70154,3361,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1737.82,"{\""seasonal\"": \""25%\""}",284484,0,"""Asia""" +2024-08-14,70155,1294,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4518.67,{},196188,0,"""Europe""" +2024-12-27,70156,8262,"[\""Charger\""]",4430.33,"{\""loyalty\"": \""21%\""}",298757,1,"""Asia""" +2023-09-19,70157,1730,"[\""Monitor\""]",2943.01,{},20726,1,"""South America""" +2024-07-17,70158,8651,"[\""Charger\""]",1858.97,"{\"": \""27%\""}",3300,0,"""Asia""" +2023-02-02,70159,1063,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",972.62,{},221675,0,"""Africa""" +2024-12-30,70160,6573,"[\""Wireless Mouse\""]",4906.38,{},198149,0,"""Asia""" +2023-03-24,70161,2206,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4722.86,{},123226,0,"""Europe""" +2023-09-27,70162,3984,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",166.94,"{\""promo\"": \""27%\""}",151722,1,"""North America""" +2024-05-17,70163,4837,"[\""Wireless Mouse\""]",4218.99,"{\""seasonal\"": \""23%\""}",234987,1,"""Europe""" +2024-07-23,70164,4799,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1292.85,"{\"": \""19%\""}",74551,0,"""South America""" +2023-10-22,70165,5118,"[\""Laptop\"", \""Charger\""]",3998.09,"{\""promo\"": \""12%\""}",205950,1,"""Africa""" +2023-03-19,70166,2573,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1275.1,"{\"": \""9%\""}",293804,0,"""Europe""" +2024-02-25,70167,8912,"[\""Laptop\""]",4848.37,{},178543,1,"""North America""" +2023-09-22,70168,7193,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2996.95,"{\""seasonal\"": \""15%\""}",154544,0,"""Africa""" +2024-08-29,70169,2557,"[\""Phone\""]",672.17,"{\"": \""19%\""}",265436,1,"""Africa""" +2023-10-03,70170,5511,"[\""Charger\"", \""Monitor\""]",1450.59,"{\""loyalty\"": \""7%\""}",143394,0,"""Africa""" +2024-11-21,70171,6206,"[\""Laptop\""]",1584.87,"{\""loyalty\"": \""24%\""}",176372,0,"""Europe""" +2023-05-09,70172,7163,"[\""Phone\"", \""Headphones\""]",622.2,{},171676,1,"""Asia""" +2024-12-02,70173,9993,"[\""Phone\""]",3282.89,{},294308,1,"""Europe""" +2024-11-04,70174,8581,"[\""Tablet\""]",4794.35,"{\""loyalty\"": \""10%\""}",205111,0,"""Asia""" +2024-04-28,70175,9281,"[\""Laptop\""]",2120.92,{},66253,0,"""Asia""" +2024-04-13,70176,9191,"[\""Headphones\"", \""Laptop\""]",2518.42,"{\""seasonal\"": \""12%\""}",265564,1,"""Asia""" +2024-06-19,70177,3227,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3777.88,"{\""promo\"": \""23%\""}",29821,0,"""Africa""" +2023-03-06,70178,9869,"[\""Tablet\"", \""Keyboard\""]",886.88,"{\""promo\"": \""20%\""}",247453,1,"""North America""" +2023-08-25,70179,764,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3923.87,"{\""promo\"": \""8%\""}",41783,1,"""Asia""" +2023-06-29,70180,1521,"[\""Monitor\""]",4102.84,{},167523,1,"""Asia""" +2023-05-17,70181,7448,"[\""Laptop\"", \""Wireless Mouse\""]",1691.75,"{\""seasonal\"": \""27%\""}",23292,0,"""South America""" +2023-08-14,70182,5643,"[\""Wireless Mouse\"", \""Laptop\""]",4479.54,"{\"": \""13%\""}",288470,1,"""Africa""" +2024-03-17,70183,4792,"[\""Tablet\""]",3617.57,{},49632,1,"""Europe""" +2024-09-29,70184,7910,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1307.21,{},198343,1,"""Asia""" +2024-11-18,70185,8890,"[\""Monitor\""]",3713.08,"{\""loyalty\"": \""8%\""}",11134,0,"""South America""" +2023-10-17,70186,6031,"[\""Headphones\""]",4346.57,{},256315,1,"""North America""" +2023-10-26,70187,3527,"[\""Keyboard\""]",4789.79,"{\""loyalty\"": \""27%\""}",143834,0,"""Europe""" +2023-09-26,70188,4819,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4075.04,{},181415,1,"""Africa""" +2023-03-03,70189,6061,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3442.61,"{\""loyalty\"": \""16%\""}",190449,0,"""Africa""" +2023-02-14,70190,5303,"[\""Tablet\"", \""Phone\""]",3107.87,"{\"": \""5%\""}",55971,0,"""Asia""" +2024-05-14,70191,9967,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1901.96,{},17293,1,"""Africa""" +2024-07-28,70192,9366,"[\""Keyboard\""]",1161.0,{},299956,0,"""Asia""" +2023-04-18,70193,9066,"[\""Headphones\"", \""Wireless Mouse\""]",1544.75,{},221694,0,"""Europe""" +2023-01-12,70194,4142,"[\""Headphones\""]",4729.41,{},227233,1,"""Africa""" +2024-12-30,70195,5298,"[\""Tablet\"", \""Headphones\""]",822.95,{},40883,1,"""North America""" +2024-01-02,70196,6119,"[\""Wireless Mouse\"", \""Phone\""]",4421.18,"{\""seasonal\"": \""15%\""}",6312,0,"""North America""" +2023-03-31,70197,6712,"[\""Phone\"", \""Keyboard\""]",2780.35,{},30201,1,"""Africa""" +2023-10-21,70198,9546,"[\""Charger\"", \""Phone\""]",2210.31,"{\""loyalty\"": \""18%\""}",82264,1,"""Africa""" +2024-04-04,70199,8259,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1505.26,{},27708,0,"""Asia""" +2023-08-20,70200,6618,"[\""Tablet\"", \""Wireless Mouse\""]",3526.36,{},233317,1,"""Asia""" +2024-08-17,70201,6304,"[\""Tablet\"", \""Charger\""]",3894.89,"{\""seasonal\"": \""30%\""}",38217,0,"""Asia""" +2023-07-30,70202,5650,"[\""Monitor\""]",1650.34,{},147204,0,"""North America""" +2024-08-04,70203,5257,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2672.63,{},3403,1,"""Asia""" +2024-10-22,70204,9336,"[\""Charger\""]",4640.69,"{\"": \""16%\""}",4627,1,"""Asia""" +2024-12-12,70205,8327,"[\""Tablet\"", \""Phone\""]",1882.26,{},237682,1,"""North America""" +2023-09-21,70206,5237,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2448.82,"{\"": \""29%\""}",146494,1,"""Asia""" +2023-06-28,70207,9951,"[\""Tablet\""]",4321.33,"{\"": \""16%\""}",95016,1,"""South America""" +2023-10-21,70208,7622,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3756.72,{},181602,0,"""South America""" +2023-07-24,70209,7115,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3464.0,"{\""promo\"": \""12%\""}",75280,1,"""North America""" +2023-07-15,70210,7690,"[\""Keyboard\""]",2098.02,{},2207,1,"""Europe""" +2023-03-13,70211,9719,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3828.42,"{\""seasonal\"": \""25%\""}",171857,1,"""Asia""" +2023-06-09,70212,8675,"[\""Wireless Mouse\"", \""Headphones\""]",2330.18,{},278536,1,"""Europe""" +2023-02-26,70213,2249,"[\""Tablet\""]",237.14,"{\"": \""5%\""}",34694,0,"""South America""" +2023-04-27,70214,5725,"[\""Headphones\"", \""Laptop\""]",542.25,{},266578,0,"""Europe""" +2024-06-23,70215,2948,"[\""Laptop\""]",2614.73,"{\""loyalty\"": \""12%\""}",277313,1,"""North America""" +2023-01-16,70216,9387,"[\""Tablet\"", \""Keyboard\""]",2065.43,"{\""promo\"": \""6%\""}",14912,0,"""Africa""" +2024-03-24,70217,2822,"[\""Keyboard\""]",4113.97,"{\"": \""23%\""}",183037,1,"""South America""" +2023-04-22,70218,3888,"[\""Laptop\"", \""Phone\""]",2397.53,"{\""promo\"": \""19%\""}",292616,0,"""Asia""" +2023-08-03,70219,5238,"[\""Laptop\""]",1068.46,{},131963,1,"""Europe""" +2024-04-11,70220,3907,"[\""Phone\"", \""Tablet\""]",4234.74,{},134183,1,"""North America""" +2024-07-07,70221,3159,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",466.83,{},97942,1,"""North America""" +2024-07-26,70222,1633,"[\""Keyboard\""]",2595.44,{},199524,1,"""South America""" +2024-04-02,70223,9919,"[\""Tablet\""]",4708.49,"{\""promo\"": \""9%\""}",198601,0,"""Africa""" +2023-11-08,70224,8766,"[\""Monitor\""]",659.08,"{\""loyalty\"": \""22%\""}",193276,1,"""Europe""" +2023-07-05,70225,1634,"[\""Phone\""]",215.26,{},210656,1,"""North America""" +2024-07-29,70226,6294,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1263.64,"{\"": \""14%\""}",42572,0,"""Europe""" +2023-06-03,70227,543,"[\""Keyboard\"", \""Wireless Mouse\""]",575.4,"{\"": \""21%\""}",127298,1,"""Asia""" +2023-10-26,70228,7385,"[\""Laptop\"", \""Keyboard\""]",3439.86,"{\""seasonal\"": \""8%\""}",222409,1,"""Europe""" +2023-02-16,70229,3225,"[\""Wireless Mouse\"", \""Headphones\""]",2605.12,"{\""promo\"": \""14%\""}",32936,1,"""Africa""" +2024-01-14,70230,3811,"[\""Phone\"", \""Wireless Mouse\""]",679.98,"{\"": \""10%\""}",283622,1,"""Asia""" +2023-03-13,70231,6524,"[\""Headphones\"", \""Keyboard\""]",713.61,{},219775,1,"""Europe""" +2024-01-12,70232,345,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1041.49,"{\""promo\"": \""8%\""}",144679,0,"""Africa""" +2024-04-25,70233,6971,"[\""Keyboard\""]",3554.21,{},119963,0,"""Europe""" +2024-09-02,70234,3390,"[\""Headphones\""]",4122.01,"{\""promo\"": \""21%\""}",219342,1,"""North America""" +2023-10-29,70235,9338,"[\""Wireless Mouse\""]",2604.75,{},115453,1,"""Asia""" +2024-03-19,70236,7029,"[\""Charger\""]",4524.21,{},235293,0,"""North America""" +2023-07-20,70237,2491,"[\""Laptop\""]",4489.1,{},234997,1,"""Europe""" +2023-02-25,70238,8397,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3645.42,"{\""promo\"": \""14%\""}",61544,1,"""Africa""" +2024-11-30,70239,732,"[\""Laptop\""]",4070.14,{},73731,0,"""Africa""" +2024-02-23,70240,6192,"[\""Keyboard\""]",3064.04,"{\""loyalty\"": \""27%\""}",231586,1,"""North America""" +2024-05-08,70241,7319,"[\""Phone\""]",1105.66,{},69512,0,"""South America""" +2023-01-17,70242,7685,"[\""Laptop\""]",3317.2,{},208616,0,"""Asia""" +2024-09-01,70243,7762,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2761.99,"{\""seasonal\"": \""6%\""}",71793,1,"""South America""" +2023-08-22,70244,2167,"[\""Monitor\""]",3467.21,{},241343,1,"""Europe""" +2023-08-18,70245,7093,"[\""Phone\""]",4467.54,"{\"": \""21%\""}",272043,1,"""Europe""" +2024-01-27,70246,404,"[\""Keyboard\""]",4659.0,"{\""loyalty\"": \""8%\""}",58225,0,"""Asia""" +2024-11-08,70247,3984,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3362.84,"{\""loyalty\"": \""23%\""}",41965,0,"""South America""" +2024-09-07,70248,8077,"[\""Tablet\""]",3358.54,{},130490,1,"""Europe""" +2024-08-14,70249,7436,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2440.41,{},181802,0,"""Asia""" +2024-03-16,70250,5820,"[\""Wireless Mouse\""]",3672.51,"{\""loyalty\"": \""17%\""}",118664,0,"""Africa""" +2023-02-06,70251,3524,"[\""Charger\""]",602.1,{},167090,1,"""North America""" +2024-12-01,70252,9632,"[\""Wireless Mouse\"", \""Laptop\""]",3259.82,{},258307,0,"""Europe""" +2023-09-19,70253,7112,"[\""Headphones\""]",3292.57,"{\""promo\"": \""9%\""}",130191,1,"""Asia""" +2023-05-17,70254,2638,"[\""Keyboard\""]",4247.25,{},225642,0,"""North America""" +2023-07-18,70255,2710,"[\""Phone\"", \""Keyboard\""]",4773.24,"{\""seasonal\"": \""27%\""}",216584,1,"""South America""" +2024-09-07,70256,8609,"[\""Wireless Mouse\"", \""Headphones\""]",2646.52,{},171743,0,"""Europe""" +2023-01-20,70257,440,"[\""Charger\"", \""Monitor\""]",4555.86,{},2733,1,"""Europe""" +2024-09-23,70258,351,"[\""Headphones\""]",2731.47,"{\""seasonal\"": \""30%\""}",247976,1,"""Asia""" +2023-12-19,70259,8638,"[\""Keyboard\""]",1833.65,"{\""seasonal\"": \""16%\""}",247817,1,"""Asia""" +2024-02-07,70260,1458,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2583.9,{},32542,0,"""Africa""" +2024-11-24,70261,1246,"[\""Keyboard\"", \""Laptop\""]",2396.28,{},209104,1,"""Africa""" +2024-07-04,70262,234,"[\""Phone\""]",1969.04,"{\""seasonal\"": \""13%\""}",56849,0,"""South America""" +2024-05-14,70263,6331,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1772.04,{},172860,0,"""South America""" +2024-01-15,70264,4086,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2645.0,{},122437,1,"""North America""" +2023-10-16,70265,5991,"[\""Phone\""]",2807.62,{},137139,0,"""Asia""" +2023-07-31,70266,8888,"[\""Wireless Mouse\"", \""Laptop\""]",3897.37,{},36484,1,"""Africa""" +2024-06-26,70267,5761,"[\""Charger\"", \""Phone\""]",637.64,"{\"": \""7%\""}",183620,0,"""Asia""" +2023-12-23,70268,5217,"[\""Keyboard\"", \""Wireless Mouse\""]",926.57,{},142966,0,"""Africa""" +2024-03-07,70269,2026,"[\""Wireless Mouse\"", \""Tablet\""]",3033.3,{},35634,0,"""Africa""" +2023-10-13,70270,3698,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2472.88,"{\""promo\"": \""19%\""}",150735,1,"""Africa""" +2024-05-17,70271,547,"[\""Wireless Mouse\"", \""Phone\""]",1232.18,"{\""promo\"": \""8%\""}",96400,0,"""Africa""" +2023-04-04,70272,5148,"[\""Keyboard\""]",397.47,{},230990,1,"""Asia""" +2024-06-11,70273,3216,"[\""Laptop\""]",243.6,{},36007,1,"""Asia""" +2023-05-02,70274,5776,"[\""Phone\""]",1179.71,{},291541,1,"""Africa""" +2024-12-04,70275,7948,"[\""Headphones\"", \""Laptop\""]",3360.15,"{\"": \""20%\""}",165512,1,"""South America""" +2023-09-19,70276,1549,"[\""Tablet\"", \""Charger\""]",776.63,"{\""seasonal\"": \""15%\""}",73161,0,"""Europe""" +2024-10-17,70277,6186,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2545.8,{},148024,1,"""Europe""" +2023-05-12,70278,6053,"[\""Tablet\""]",450.31,{},287814,0,"""Asia""" +2024-05-21,70279,7331,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2529.75,"{\""promo\"": \""5%\""}",46141,1,"""Europe""" +2023-01-31,70280,5886,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2516.4,"{\""seasonal\"": \""25%\""}",254274,1,"""Asia""" +2024-06-29,70281,1003,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4469.02,"{\""loyalty\"": \""13%\""}",149521,1,"""Europe""" +2024-11-01,70282,7543,"[\""Tablet\"", \""Wireless Mouse\""]",1743.49,{},296937,1,"""North America""" +2024-01-14,70283,1490,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2988.17,{},233333,0,"""North America""" +2023-01-16,70284,2223,"[\""Charger\"", \""Phone\""]",3493.56,"{\""seasonal\"": \""17%\""}",66199,1,"""Asia""" +2024-10-02,70285,8532,"[\""Laptop\""]",4955.65,"{\""seasonal\"": \""6%\""}",265069,0,"""Europe""" +2024-05-25,70286,5146,"[\""Laptop\"", \""Keyboard\""]",106.84,"{\""loyalty\"": \""7%\""}",61919,1,"""Europe""" +2023-08-05,70287,9962,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3381.6,"{\"": \""25%\""}",249180,0,"""Asia""" +2023-10-12,70288,9665,"[\""Keyboard\"", \""Tablet\""]",3262.03,{},128830,1,"""South America""" +2024-04-06,70289,5983,"[\""Tablet\""]",1943.39,"{\""promo\"": \""27%\""}",132626,0,"""Asia""" +2023-06-23,70290,7085,"[\""Wireless Mouse\"", \""Headphones\""]",1961.05,"{\"": \""25%\""}",165345,0,"""South America""" +2024-10-30,70291,8188,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",934.64,"{\""seasonal\"": \""20%\""}",163684,1,"""North America""" +2023-02-08,70292,3270,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1675.53,{},285202,0,"""Africa""" +2024-11-22,70293,2420,"[\""Keyboard\"", \""Headphones\""]",2586.97,{},43854,1,"""North America""" +2024-08-04,70294,7375,"[\""Headphones\"", \""Monitor\""]",3454.15,"{\""seasonal\"": \""24%\""}",250815,0,"""North America""" +2024-04-03,70295,4613,"[\""Charger\""]",3895.62,{},15454,1,"""Europe""" +2023-09-25,70296,8940,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",645.55,{},1868,0,"""Africa""" +2024-06-15,70297,763,"[\""Monitor\"", \""Tablet\""]",2598.26,"{\""loyalty\"": \""10%\""}",84205,1,"""Asia""" +2024-12-19,70298,2837,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4625.62,"{\"": \""5%\""}",141238,1,"""Europe""" +2023-02-08,70299,7873,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2340.09,"{\""loyalty\"": \""17%\""}",137756,1,"""Asia""" +2024-07-24,70300,2159,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4272.31,"{\"": \""11%\""}",170666,1,"""South America""" +2024-12-03,70301,1508,"[\""Wireless Mouse\"", \""Laptop\""]",4368.62,"{\"": \""12%\""}",184734,0,"""North America""" +2024-01-09,70302,6147,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1153.08,{},127193,1,"""Africa""" +2024-09-04,70303,6283,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",665.97,"{\"": \""30%\""}",129225,1,"""Africa""" +2024-01-25,70304,1675,"[\""Monitor\""]",1290.14,"{\""loyalty\"": \""26%\""}",119954,1,"""North America""" +2024-10-20,70305,7539,"[\""Headphones\""]",1519.6,"{\"": \""19%\""}",69028,1,"""Africa""" +2023-05-13,70306,4100,"[\""Keyboard\""]",3139.84,{},267167,0,"""Asia""" +2024-09-24,70307,297,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1120.16,{},170171,1,"""South America""" +2023-04-07,70308,2812,"[\""Keyboard\""]",1220.68,"{\""promo\"": \""16%\""}",180707,1,"""Asia""" +2023-06-10,70309,8832,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1215.9,"{\""promo\"": \""26%\""}",17781,0,"""Africa""" +2024-08-18,70310,2763,"[\""Charger\"", \""Headphones\""]",889.83,{},286801,0,"""South America""" +2024-05-11,70311,1241,"[\""Tablet\"", \""Keyboard\""]",2321.56,"{\""loyalty\"": \""22%\""}",148767,0,"""Africa""" +2024-04-16,70312,7574,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",967.59,"{\""seasonal\"": \""20%\""}",129593,0,"""South America""" +2023-11-02,70313,2337,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2180.27,"{\""seasonal\"": \""26%\""}",144945,0,"""Asia""" +2023-07-26,70314,6748,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2876.04,{},283872,1,"""Africa""" +2024-07-08,70315,1674,"[\""Headphones\"", \""Wireless Mouse\""]",1506.79,"{\""loyalty\"": \""29%\""}",287275,0,"""Africa""" +2023-05-26,70316,1069,"[\""Charger\"", \""Laptop\""]",874.08,"{\"": \""25%\""}",56974,1,"""Europe""" +2024-10-19,70317,3815,"[\""Laptop\"", \""Phone\""]",2694.98,"{\""loyalty\"": \""26%\""}",196427,0,"""North America""" +2024-11-21,70318,4568,"[\""Headphones\"", \""Laptop\""]",4331.84,{},176485,0,"""Asia""" +2024-04-26,70319,6570,"[\""Keyboard\""]",456.38,{},134109,0,"""North America""" +2023-01-17,70320,3351,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4711.35,"{\""promo\"": \""24%\""}",260770,1,"""Europe""" +2023-10-28,70321,3060,"[\""Charger\""]",3299.29,{},86260,0,"""Asia""" +2023-05-31,70322,1419,"[\""Laptop\"", \""Wireless Mouse\""]",4528.55,{},67026,1,"""North America""" +2023-03-24,70323,445,"[\""Monitor\"", \""Phone\""]",4471.56,"{\"": \""20%\""}",188485,1,"""North America""" +2023-06-04,70324,9357,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3374.28,"{\"": \""11%\""}",156498,1,"""Asia""" +2024-07-17,70325,7495,"[\""Phone\"", \""Laptop\""]",1013.13,{},154369,0,"""South America""" +2023-11-23,70326,1598,"[\""Headphones\""]",2365.7,{},265032,0,"""North America""" +2024-10-31,70327,4743,"[\""Laptop\""]",2228.36,"{\""promo\"": \""26%\""}",253283,1,"""South America""" +2024-02-18,70328,5273,"[\""Laptop\""]",476.34,"{\"": \""9%\""}",194158,0,"""Asia""" +2024-12-21,70329,8812,"[\""Laptop\"", \""Phone\""]",4950.49,"{\""seasonal\"": \""15%\""}",108122,1,"""Africa""" +2024-08-05,70330,2801,"[\""Tablet\""]",2523.67,"{\"": \""8%\""}",80128,1,"""North America""" +2023-02-27,70331,4359,"[\""Headphones\""]",3679.17,{},24121,0,"""Europe""" +2023-12-24,70332,3774,"[\""Phone\""]",1288.63,"{\""seasonal\"": \""17%\""}",171415,1,"""North America""" +2024-02-04,70333,9970,"[\""Tablet\""]",1522.52,"{\""loyalty\"": \""12%\""}",299685,1,"""Asia""" +2024-03-24,70334,8781,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4009.14,{},21737,0,"""Europe""" +2024-10-22,70335,5543,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",816.75,"{\""seasonal\"": \""10%\""}",208575,0,"""South America""" +2024-05-31,70336,8495,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2707.06,"{\""promo\"": \""13%\""}",156824,1,"""Europe""" +2024-11-27,70337,5300,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1817.06,"{\""loyalty\"": \""26%\""}",134819,1,"""North America""" +2024-01-20,70338,8140,"[\""Tablet\""]",1302.74,{},224350,1,"""North America""" +2024-08-27,70339,3926,"[\""Charger\""]",3277.57,{},129226,1,"""South America""" +2024-06-30,70340,7546,"[\""Headphones\"", \""Keyboard\""]",3825.67,{},202329,0,"""Africa""" +2024-01-05,70341,3820,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4412.21,{},149904,0,"""Africa""" +2024-01-07,70342,3143,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4455.69,{},263214,1,"""North America""" +2024-03-15,70343,2281,"[\""Headphones\"", \""Keyboard\""]",164.72,{},80829,0,"""Africa""" +2023-09-03,70344,1051,"[\""Wireless Mouse\"", \""Monitor\""]",4563.12,{},241260,0,"""Europe""" +2024-01-11,70345,2262,"[\""Charger\"", \""Monitor\""]",4426.27,{},277632,1,"""Europe""" +2023-03-19,70346,2136,"[\""Laptop\"", \""Phone\""]",3357.28,{},138903,1,"""Asia""" +2024-05-19,70347,7326,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",567.99,"{\""seasonal\"": \""16%\""}",299966,1,"""Africa""" +2024-07-31,70348,8073,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1435.63,"{\"": \""9%\""}",73108,1,"""Europe""" +2024-08-08,70349,3760,"[\""Headphones\"", \""Monitor\""]",1686.32,{},19607,1,"""North America""" +2023-04-03,70350,5089,"[\""Tablet\"", \""Monitor\""]",4624.44,{},6191,1,"""Africa""" +2024-11-19,70351,4409,"[\""Keyboard\""]",1471.94,{},72953,0,"""Africa""" +2024-04-12,70352,9630,"[\""Monitor\"", \""Tablet\""]",3491.72,"{\"": \""13%\""}",299520,1,"""South America""" +2024-08-28,70353,7955,"[\""Tablet\"", \""Charger\""]",4212.31,{},57803,1,"""Africa""" +2024-04-09,70354,5214,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",841.03,"{\""loyalty\"": \""14%\""}",130880,1,"""Europe""" +2024-09-22,70355,4739,"[\""Wireless Mouse\""]",2057.78,"{\"": \""7%\""}",194011,1,"""Asia""" +2024-01-30,70356,4835,"[\""Tablet\""]",1856.88,"{\"": \""24%\""}",28361,0,"""Europe""" +2023-05-04,70357,2694,"[\""Charger\""]",3854.76,"{\"": \""20%\""}",256464,1,"""Asia""" +2023-12-03,70358,9496,"[\""Wireless Mouse\""]",381.44,"{\""promo\"": \""8%\""}",273662,0,"""Asia""" +2024-10-27,70359,2973,"[\""Phone\"", \""Headphones\""]",4034.66,"{\""seasonal\"": \""20%\""}",157375,1,"""Asia""" +2024-12-09,70360,9804,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",660.82,{},97721,1,"""North America""" +2023-10-07,70361,9063,"[\""Monitor\""]",4814.77,{},118040,1,"""South America""" +2023-05-05,70362,4795,"[\""Keyboard\""]",4863.13,{},92471,0,"""North America""" +2024-08-04,70363,3029,"[\""Tablet\""]",3964.93,"{\""seasonal\"": \""28%\""}",128775,1,"""Asia""" +2024-05-21,70364,2163,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",563.51,{},107530,0,"""Asia""" +2024-11-14,70365,1219,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2338.69,"{\"": \""12%\""}",108548,0,"""South America""" +2023-10-12,70366,2540,"[\""Tablet\"", \""Monitor\""]",3465.03,{},240815,1,"""North America""" +2023-10-02,70367,4603,"[\""Wireless Mouse\""]",2862.19,{},143567,0,"""North America""" +2023-05-30,70368,861,"[\""Charger\""]",1649.63,{},248610,0,"""Asia""" +2023-08-06,70369,7063,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2031.71,{},153592,1,"""Africa""" +2023-12-22,70370,4167,"[\""Tablet\""]",305.94,"{\""loyalty\"": \""28%\""}",241712,0,"""Europe""" +2023-01-11,70371,2433,"[\""Laptop\""]",1770.97,"{\"": \""12%\""}",233495,1,"""South America""" +2024-09-13,70372,5137,"[\""Charger\""]",4075.68,"{\"": \""18%\""}",95514,0,"""Europe""" +2024-09-14,70373,4121,"[\""Charger\"", \""Phone\""]",739.73,{},85489,1,"""Africa""" +2023-06-06,70374,4182,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",375.09,{},122534,1,"""North America""" +2024-03-07,70375,3239,"[\""Tablet\"", \""Monitor\""]",1157.03,{},286389,0,"""Asia""" +2024-10-12,70376,9003,"[\""Charger\""]",4713.29,{},127924,1,"""North America""" +2023-08-28,70377,3987,"[\""Charger\"", \""Monitor\""]",2159.64,"{\"": \""22%\""}",221367,0,"""Europe""" +2024-04-22,70378,860,"[\""Keyboard\"", \""Wireless Mouse\""]",2134.38,{},94877,0,"""South America""" +2023-06-09,70379,2020,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",736.84,{},135580,1,"""North America""" +2023-05-11,70380,3879,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",481.69,"{\""promo\"": \""19%\""}",81202,0,"""North America""" +2024-12-10,70381,3811,"[\""Tablet\""]",3330.01,{},229892,0,"""Africa""" +2024-08-24,70382,1959,"[\""Tablet\""]",1623.1,"{\"": \""26%\""}",5759,0,"""Africa""" +2023-03-22,70383,2995,"[\""Wireless Mouse\""]",1699.27,{},216416,0,"""Asia""" +2023-11-02,70384,4962,"[\""Laptop\"", \""Wireless Mouse\""]",1518.41,{},155758,1,"""North America""" +2023-03-07,70385,4428,"[\""Headphones\"", \""Laptop\""]",3600.18,{},240088,0,"""Europe""" +2024-05-09,70386,5237,"[\""Phone\"", \""Keyboard\""]",3703.93,"{\""seasonal\"": \""10%\""}",33303,1,"""North America""" +2024-06-27,70387,9523,"[\""Charger\""]",4262.17,"{\""seasonal\"": \""6%\""}",160207,0,"""South America""" +2024-10-14,70388,7135,"[\""Headphones\"", \""Laptop\""]",2662.09,"{\"": \""13%\""}",222716,0,"""Europe""" +2024-03-16,70389,2556,"[\""Headphones\""]",1153.46,{},259842,0,"""South America""" +2024-05-25,70390,164,"[\""Tablet\""]",2707.45,{},96118,0,"""Europe""" +2023-07-15,70391,8224,"[\""Tablet\""]",1819.18,{},136250,0,"""Africa""" +2024-02-11,70392,3623,"[\""Keyboard\"", \""Phone\""]",4518.17,{},253635,1,"""Europe""" +2023-02-12,70393,1675,"[\""Charger\"", \""Monitor\""]",1822.05,"{\"": \""30%\""}",141695,1,"""Asia""" +2023-06-23,70394,9297,"[\""Monitor\""]",3814.85,"{\""promo\"": \""15%\""}",9249,0,"""Europe""" +2024-12-23,70395,2605,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1558.01,{},12242,1,"""Europe""" +2024-04-29,70396,4385,"[\""Headphones\""]",4616.74,"{\""promo\"": \""21%\""}",93775,1,"""South America""" +2023-06-08,70397,2265,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2185.56,"{\"": \""9%\""}",25623,0,"""North America""" +2024-08-17,70398,3091,"[\""Headphones\"", \""Phone\""]",595.42,{},79774,0,"""North America""" +2023-05-21,70399,7050,"[\""Tablet\"", \""Wireless Mouse\""]",4768.59,{},271232,1,"""South America""" +2023-02-18,70400,2172,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1172.48,"{\""promo\"": \""13%\""}",8745,1,"""Europe""" +2023-12-15,70401,7032,"[\""Headphones\""]",3594.91,{},139569,1,"""Europe""" +2024-06-27,70402,5719,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2166.55,{},211476,1,"""Asia""" +2023-11-07,70403,4892,"[\""Charger\"", \""Tablet\""]",2173.87,{},251512,1,"""North America""" +2024-07-14,70404,234,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1966.99,{},122177,0,"""North America""" +2023-09-02,70405,3296,"[\""Phone\"", \""Charger\""]",2979.88,{},180143,1,"""North America""" +2024-12-01,70406,2875,"[\""Laptop\""]",3124.66,{},278025,1,"""North America""" +2024-05-12,70407,4416,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1971.1,{},114148,1,"""North America""" +2024-09-13,70408,3826,"[\""Phone\""]",4977.29,{},31831,1,"""North America""" +2023-02-04,70409,8738,"[\""Monitor\"", \""Headphones\""]",2111.05,"{\""loyalty\"": \""26%\""}",274268,1,"""Asia""" +2023-11-18,70410,6725,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3933.62,{},28825,1,"""South America""" +2023-09-10,70411,7455,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2240.53,{},222721,0,"""South America""" +2023-04-29,70412,3662,"[\""Headphones\"", \""Wireless Mouse\""]",381.54,{},279718,1,"""Africa""" +2023-10-27,70413,9114,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1333.74,"{\""promo\"": \""5%\""}",108685,1,"""North America""" +2024-06-29,70414,9443,"[\""Charger\""]",1703.41,{},81208,0,"""Africa""" +2023-10-01,70415,5941,"[\""Charger\"", \""Laptop\""]",2414.99,"{\""seasonal\"": \""22%\""}",108878,0,"""South America""" +2024-11-04,70416,987,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4191.09,{},237595,0,"""South America""" +2023-08-17,70417,5097,"[\""Keyboard\""]",1983.77,{},145677,0,"""Asia""" +2024-06-12,70418,6429,"[\""Keyboard\""]",1115.52,"{\""loyalty\"": \""7%\""}",178656,1,"""Africa""" +2023-07-24,70419,762,"[\""Keyboard\"", \""Tablet\""]",3907.93,{},219003,1,"""Africa""" +2024-10-08,70420,7752,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3207.95,{},88899,1,"""South America""" +2023-04-16,70421,243,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3923.55,{},236406,1,"""North America""" +2023-12-18,70422,7500,"[\""Headphones\""]",2323.25,"{\""loyalty\"": \""23%\""}",57509,0,"""North America""" +2024-04-23,70423,2156,"[\""Laptop\"", \""Monitor\""]",4771.55,"{\"": \""26%\""}",184966,0,"""Asia""" +2023-03-16,70424,346,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1539.74,"{\""promo\"": \""23%\""}",278813,1,"""Africa""" +2023-04-04,70425,6982,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3143.96,"{\""loyalty\"": \""5%\""}",61958,1,"""Asia""" +2024-07-16,70426,1740,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3275.04,"{\""loyalty\"": \""11%\""}",122522,0,"""Europe""" +2023-01-10,70427,7974,"[\""Charger\"", \""Tablet\""]",2287.25,{},276538,1,"""Asia""" +2023-01-26,70428,9181,"[\""Wireless Mouse\""]",638.36,"{\"": \""10%\""}",17046,1,"""Europe""" +2023-09-12,70429,9716,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",254.56,"{\"": \""20%\""}",126917,1,"""North America""" +2023-06-28,70430,1574,"[\""Tablet\""]",3118.11,{},290690,1,"""Africa""" +2024-09-13,70431,8454,"[\""Keyboard\""]",4435.19,"{\""loyalty\"": \""20%\""}",112682,1,"""South America""" +2023-05-23,70432,8301,"[\""Keyboard\"", \""Charger\""]",2573.98,"{\""promo\"": \""19%\""}",216006,1,"""Europe""" +2024-01-12,70433,5869,"[\""Keyboard\""]",339.09,{},248348,1,"""Asia""" +2024-05-11,70434,9383,"[\""Keyboard\"", \""Laptop\""]",4567.51,"{\"": \""26%\""}",78140,0,"""South America""" +2024-02-08,70435,5333,"[\""Wireless Mouse\"", \""Tablet\""]",1960.72,{},135939,0,"""Asia""" +2024-10-15,70436,5587,"[\""Wireless Mouse\""]",1267.42,{},113225,1,"""Africa""" +2023-07-02,70437,7051,"[\""Laptop\""]",579.65,"{\""promo\"": \""16%\""}",186958,0,"""Africa""" +2024-03-29,70438,5051,"[\""Monitor\"", \""Wireless Mouse\""]",3656.61,{},115144,0,"""North America""" +2023-07-21,70439,2799,"[\""Laptop\""]",333.16,"{\""loyalty\"": \""19%\""}",7996,0,"""North America""" +2023-04-09,70440,2923,"[\""Charger\""]",2699.71,{},63365,1,"""South America""" +2024-12-10,70441,5553,"[\""Keyboard\"", \""Phone\""]",1790.63,"{\""promo\"": \""27%\""}",208065,0,"""South America""" +2023-07-23,70442,1813,"[\""Monitor\"", \""Wireless Mouse\""]",3201.14,"{\""seasonal\"": \""17%\""}",32894,1,"""Europe""" +2023-09-10,70443,3668,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1548.14,{},247881,1,"""Africa""" +2024-01-06,70444,2571,"[\""Phone\"", \""Laptop\""]",2603.8,"{\"": \""30%\""}",277264,1,"""Asia""" +2023-07-30,70445,3055,"[\""Monitor\""]",2600.2,{},198939,0,"""Africa""" +2024-08-01,70446,5915,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4116.53,{},36824,1,"""Asia""" +2024-04-24,70447,6053,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2270.85,{},12636,1,"""Asia""" +2023-06-11,70448,2549,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",266.76,{},14124,0,"""Africa""" +2024-09-04,70449,9308,"[\""Headphones\""]",4412.52,"{\""seasonal\"": \""13%\""}",113580,1,"""Asia""" +2023-06-06,70450,9362,"[\""Tablet\"", \""Laptop\""]",1753.37,"{\""promo\"": \""11%\""}",209776,0,"""Europe""" +2024-06-04,70451,8502,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",956.1,"{\"": \""16%\""}",137932,1,"""North America""" +2023-03-04,70452,1514,"[\""Wireless Mouse\""]",3746.73,{},85222,0,"""Europe""" +2024-04-03,70453,372,"[\""Monitor\"", \""Wireless Mouse\""]",2189.58,{},217341,1,"""North America""" +2024-06-05,70454,3014,"[\""Keyboard\""]",1527.65,{},266711,0,"""North America""" +2023-02-23,70455,4658,"[\""Laptop\""]",346.72,"{\""promo\"": \""27%\""}",276884,0,"""North America""" +2024-05-14,70456,9032,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3724.0,{},28267,1,"""North America""" +2023-10-23,70457,4858,"[\""Laptop\""]",4092.76,{},88961,1,"""Asia""" +2023-08-31,70458,6119,"[\""Phone\"", \""Laptop\""]",1325.45,{},151129,0,"""South America""" +2024-04-09,70459,7733,"[\""Phone\""]",1593.66,{},104580,0,"""Asia""" +2023-02-24,70460,4342,"[\""Tablet\"", \""Phone\""]",4652.23,{},83170,1,"""Africa""" +2024-07-26,70461,2330,"[\""Monitor\"", \""Phone\""]",4350.06,"{\"": \""10%\""}",74879,1,"""Europe""" +2024-11-04,70462,4745,"[\""Wireless Mouse\"", \""Headphones\""]",2025.72,"{\""seasonal\"": \""28%\""}",53394,0,"""Europe""" +2024-11-07,70463,4163,"[\""Charger\"", \""Laptop\""]",1001.78,{},38536,1,"""Asia""" +2024-03-28,70464,5692,"[\""Tablet\"", \""Laptop\""]",1929.48,"{\"": \""28%\""}",56887,1,"""Asia""" +2024-03-08,70465,7036,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",509.87,"{\""loyalty\"": \""14%\""}",108058,1,"""North America""" +2024-10-23,70466,1716,"[\""Tablet\"", \""Wireless Mouse\""]",3974.34,{},25232,0,"""South America""" +2023-06-13,70467,7866,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1763.67,"{\""promo\"": \""7%\""}",213372,0,"""Africa""" +2024-09-25,70468,8060,"[\""Laptop\""]",1578.24,{},89426,0,"""Asia""" +2023-12-05,70469,7648,"[\""Phone\"", \""Headphones\""]",4998.34,"{\""loyalty\"": \""9%\""}",244482,0,"""Europe""" +2023-01-03,70470,7222,"[\""Headphones\""]",1381.2,"{\""promo\"": \""14%\""}",219221,0,"""South America""" +2024-02-27,70471,1592,"[\""Headphones\"", \""Laptop\""]",125.39,"{\""loyalty\"": \""17%\""}",138005,1,"""North America""" +2023-06-12,70472,7118,"[\""Tablet\"", \""Headphones\""]",1295.31,"{\""promo\"": \""30%\""}",124880,0,"""Asia""" +2024-08-02,70473,1229,"[\""Phone\"", \""Headphones\""]",1092.71,{},182239,0,"""South America""" +2023-07-22,70474,5472,"[\""Wireless Mouse\"", \""Headphones\""]",3324.37,{},49361,1,"""North America""" +2024-01-01,70475,1408,"[\""Laptop\""]",4782.35,{},188983,0,"""Africa""" +2023-01-11,70476,1674,"[\""Phone\"", \""Charger\""]",4412.33,"{\""loyalty\"": \""5%\""}",224269,1,"""Asia""" +2023-11-24,70477,2999,"[\""Tablet\""]",3489.98,{},72948,0,"""Europe""" +2023-01-05,70478,9171,"[\""Wireless Mouse\"", \""Phone\""]",3283.91,"{\""loyalty\"": \""26%\""}",228230,0,"""Europe""" +2023-08-24,70479,2540,"[\""Headphones\"", \""Wireless Mouse\""]",116.69,"{\"": \""15%\""}",111141,1,"""Europe""" +2024-03-29,70480,911,"[\""Charger\"", \""Monitor\""]",604.63,{},115262,0,"""North America""" +2023-03-31,70481,1280,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1571.02,{},185706,1,"""South America""" +2023-11-29,70482,8111,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3969.99,{},1913,0,"""South America""" +2023-06-10,70483,1463,"[\""Keyboard\""]",3585.18,"{\"": \""9%\""}",3646,0,"""South America""" +2023-06-23,70484,6562,"[\""Phone\""]",743.81,"{\""seasonal\"": \""12%\""}",193326,1,"""Asia""" +2023-09-27,70485,9204,"[\""Phone\""]",1923.49,{},293793,0,"""North America""" +2023-12-02,70486,9332,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1271.71,"{\""loyalty\"": \""13%\""}",136424,0,"""South America""" +2023-04-19,70487,5865,"[\""Charger\"", \""Laptop\""]",3902.62,{},75468,0,"""Africa""" +2023-09-17,70488,9248,"[\""Keyboard\""]",4565.96,"{\"": \""15%\""}",159015,1,"""South America""" +2024-10-20,70489,4047,"[\""Charger\"", \""Wireless Mouse\""]",2408.86,"{\""seasonal\"": \""6%\""}",28943,1,"""Africa""" +2023-02-17,70490,2016,"[\""Laptop\"", \""Headphones\""]",988.29,"{\""promo\"": \""29%\""}",131155,1,"""North America""" +2024-11-29,70491,8586,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",491.07,{},247844,0,"""Europe""" +2023-10-25,70492,448,"[\""Laptop\"", \""Keyboard\""]",1552.48,"{\""loyalty\"": \""19%\""}",118723,0,"""Europe""" +2024-11-07,70493,9531,"[\""Tablet\""]",1124.72,{},181148,1,"""Africa""" +2023-05-09,70494,1115,"[\""Phone\"", \""Laptop\""]",1781.0,{},174564,0,"""Asia""" +2024-07-17,70495,4656,"[\""Phone\"", \""Laptop\""]",3575.0,"{\""seasonal\"": \""27%\""}",235770,0,"""South America""" +2023-04-08,70496,1360,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2065.3,"{\""promo\"": \""10%\""}",148713,1,"""Africa""" +2024-12-10,70497,7803,"[\""Headphones\"", \""Charger\""]",3077.32,{},286056,1,"""North America""" +2023-02-21,70498,1448,"[\""Phone\""]",4009.54,"{\"": \""14%\""}",200640,0,"""North America""" +2024-12-17,70499,432,"[\""Tablet\"", \""Keyboard\""]",3334.62,{},108314,0,"""Africa""" +2023-12-10,70500,8005,"[\""Phone\"", \""Monitor\""]",1701.42,{},257521,0,"""Africa""" +2023-02-05,70501,5538,"[\""Monitor\""]",4671.36,"{\""seasonal\"": \""20%\""}",173176,1,"""Europe""" +2024-07-23,70502,6403,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",437.5,"{\""seasonal\"": \""12%\""}",169660,0,"""Africa""" +2024-12-09,70503,6159,"[\""Keyboard\""]",1570.63,"{\""loyalty\"": \""5%\""}",62251,0,"""Europe""" +2023-04-23,70504,4045,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",372.96,"{\"": \""28%\""}",222996,0,"""Africa""" +2024-10-02,70505,3301,"[\""Tablet\""]",1691.0,"{\""seasonal\"": \""13%\""}",82398,0,"""Africa""" +2023-03-19,70506,5289,"[\""Tablet\"", \""Keyboard\""]",1446.47,{},130758,0,"""Asia""" +2023-05-06,70507,7351,"[\""Tablet\"", \""Wireless Mouse\""]",1332.87,"{\""seasonal\"": \""29%\""}",297948,0,"""North America""" +2023-04-19,70508,4896,"[\""Phone\"", \""Keyboard\""]",4645.93,{},215850,1,"""Africa""" +2024-07-06,70509,5252,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4276.53,"{\""loyalty\"": \""6%\""}",74322,0,"""Europe""" +2023-09-25,70510,7355,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3633.5,{},274341,0,"""South America""" +2023-04-11,70511,4250,"[\""Wireless Mouse\"", \""Headphones\""]",373.15,{},76866,1,"""Asia""" +2024-11-16,70512,8861,"[\""Monitor\""]",2547.7,"{\""seasonal\"": \""9%\""}",40021,0,"""Africa""" +2024-02-29,70513,7144,"[\""Headphones\"", \""Tablet\""]",3359.02,{},298193,0,"""North America""" +2023-12-09,70514,6169,"[\""Phone\""]",1885.33,"{\"": \""24%\""}",285998,1,"""Europe""" +2024-01-18,70515,6988,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3943.85,"{\""loyalty\"": \""11%\""}",160875,0,"""South America""" +2024-11-23,70516,6634,"[\""Monitor\"", \""Headphones\""]",3166.6,{},130167,1,"""Africa""" +2024-04-21,70517,1779,"[\""Keyboard\""]",3033.33,{},194385,1,"""North America""" +2023-10-28,70518,6638,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3566.93,"{\""seasonal\"": \""7%\""}",276926,0,"""South America""" +2024-05-11,70519,3710,"[\""Phone\"", \""Wireless Mouse\""]",61.28,"{\""promo\"": \""30%\""}",127246,1,"""North America""" +2023-01-29,70520,4106,"[\""Wireless Mouse\"", \""Monitor\""]",1003.08,"{\""loyalty\"": \""23%\""}",220108,1,"""Europe""" +2023-11-21,70521,4294,"[\""Phone\"", \""Wireless Mouse\""]",4753.17,"{\""loyalty\"": \""17%\""}",297885,0,"""South America""" +2024-03-17,70522,285,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4175.03,{},243407,0,"""South America""" +2024-02-29,70523,1004,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1988.42,{},257438,0,"""North America""" +2023-07-17,70524,3751,"[\""Laptop\"", \""Charger\""]",4812.61,{},262238,0,"""Europe""" +2024-01-10,70525,4533,"[\""Charger\""]",3733.29,"{\""seasonal\"": \""7%\""}",68409,1,"""Europe""" +2024-07-01,70526,1733,"[\""Monitor\""]",2773.02,"{\""seasonal\"": \""20%\""}",289626,1,"""South America""" +2024-02-20,70527,1783,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1916.02,"{\""seasonal\"": \""20%\""}",166582,1,"""Africa""" +2023-08-07,70528,9543,"[\""Headphones\""]",949.86,"{\"": \""15%\""}",248980,1,"""North America""" +2024-09-19,70529,7711,"[\""Tablet\""]",1235.5,"{\""promo\"": \""12%\""}",266216,0,"""South America""" +2024-05-04,70530,4887,"[\""Tablet\""]",761.38,"{\"": \""13%\""}",85811,0,"""South America""" +2023-12-07,70531,3147,"[\""Charger\"", \""Laptop\""]",2141.33,{},128248,1,"""Asia""" +2024-07-13,70532,9969,"[\""Tablet\""]",52.22,"{\"": \""6%\""}",213249,1,"""Asia""" +2023-04-03,70533,308,"[\""Wireless Mouse\"", \""Phone\""]",2362.69,"{\"": \""8%\""}",34421,1,"""South America""" +2023-06-19,70534,4944,"[\""Phone\""]",4258.97,"{\""promo\"": \""13%\""}",213111,0,"""North America""" +2024-03-10,70535,4517,"[\""Wireless Mouse\"", \""Headphones\""]",4650.4,{},83749,0,"""Africa""" +2023-02-26,70536,2308,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4802.93,{},23309,1,"""Asia""" +2023-01-06,70537,757,"[\""Monitor\"", \""Phone\""]",177.43,"{\""promo\"": \""22%\""}",15129,0,"""Europe""" +2023-02-15,70538,3781,"[\""Phone\"", \""Monitor\""]",2280.57,"{\""promo\"": \""9%\""}",277749,1,"""Africa""" +2023-09-08,70539,2275,"[\""Phone\"", \""Wireless Mouse\""]",2439.77,"{\""loyalty\"": \""24%\""}",71878,1,"""Europe""" +2023-03-30,70540,2310,"[\""Phone\""]",1357.84,{},120996,1,"""South America""" +2023-04-29,70541,4461,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1010.1,{},165814,1,"""Africa""" +2023-06-12,70542,6751,"[\""Tablet\"", \""Charger\""]",3247.96,"{\""promo\"": \""28%\""}",10814,0,"""South America""" +2023-01-27,70543,6788,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1081.91,"{\""seasonal\"": \""11%\""}",195737,0,"""Europe""" +2023-06-20,70544,2974,"[\""Phone\"", \""Tablet\""]",1580.5,"{\"": \""25%\""}",292636,1,"""South America""" +2024-02-27,70545,8095,"[\""Charger\"", \""Laptop\""]",3834.4,{},283855,1,"""South America""" +2024-08-15,70546,8435,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4674.65,"{\""promo\"": \""9%\""}",265253,0,"""Asia""" +2023-12-30,70547,4619,"[\""Tablet\"", \""Charger\""]",2903.6,{},95922,1,"""North America""" +2023-03-30,70548,9781,"[\""Phone\""]",1535.81,{},46226,1,"""South America""" +2024-07-23,70549,5497,"[\""Headphones\"", \""Keyboard\""]",3731.84,{},130519,1,"""North America""" +2023-02-22,70550,1842,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",248.27,"{\""seasonal\"": \""23%\""}",158996,1,"""Asia""" +2023-01-16,70551,2634,"[\""Phone\""]",2305.61,{},205858,1,"""Africa""" +2023-10-12,70552,4745,"[\""Tablet\""]",524.47,"{\""promo\"": \""20%\""}",201660,0,"""Asia""" +2024-12-30,70553,1028,"[\""Wireless Mouse\""]",116.05,"{\""seasonal\"": \""10%\""}",142446,0,"""South America""" +2023-08-18,70554,5326,"[\""Phone\"", \""Charger\""]",4304.24,{},40449,1,"""Africa""" +2023-08-19,70555,8504,"[\""Tablet\""]",950.28,{},12829,1,"""South America""" +2024-01-05,70556,9067,"[\""Monitor\"", \""Keyboard\""]",1550.76,"{\""promo\"": \""11%\""}",177471,0,"""South America""" +2023-08-05,70557,6021,"[\""Wireless Mouse\""]",2535.44,"{\"": \""23%\""}",116398,1,"""South America""" +2024-10-22,70558,6188,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",993.39,"{\""loyalty\"": \""28%\""}",8815,1,"""Asia""" +2024-10-16,70559,5971,"[\""Monitor\""]",2476.26,{},25146,1,"""Asia""" +2024-08-17,70560,1098,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1382.92,"{\""seasonal\"": \""11%\""}",46088,1,"""Asia""" +2024-09-17,70561,8618,"[\""Charger\"", \""Headphones\""]",3476.09,"{\"": \""16%\""}",12634,0,"""North America""" +2024-06-18,70562,5437,"[\""Keyboard\"", \""Monitor\""]",3303.9,"{\"": \""9%\""}",27011,0,"""Africa""" +2024-03-20,70563,4559,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3139.32,"{\""seasonal\"": \""17%\""}",255382,1,"""North America""" +2024-09-30,70564,9658,"[\""Laptop\"", \""Headphones\""]",1815.49,{},96560,0,"""North America""" +2024-03-28,70565,5247,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2508.55,{},252908,0,"""South America""" +2023-05-28,70566,531,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4132.76,"{\"": \""22%\""}",179940,1,"""Europe""" +2024-06-12,70567,667,"[\""Headphones\""]",1261.57,{},201206,0,"""South America""" +2023-10-24,70568,2155,"[\""Tablet\"", \""Keyboard\""]",455.96,{},276189,0,"""South America""" +2024-10-31,70569,5413,"[\""Headphones\""]",3069.16,{},205542,0,"""North America""" +2023-02-26,70570,8567,"[\""Laptop\"", \""Wireless Mouse\""]",1111.11,{},241833,0,"""Europe""" +2023-09-06,70571,3076,"[\""Phone\""]",2516.81,{},190158,0,"""Asia""" +2023-02-04,70572,4076,"[\""Keyboard\""]",4676.03,{},52911,1,"""Africa""" +2023-09-27,70573,8265,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3365.56,"{\""loyalty\"": \""24%\""}",42294,1,"""Africa""" +2023-10-21,70574,7008,"[\""Tablet\"", \""Monitor\""]",3894.22,"{\""loyalty\"": \""30%\""}",31804,1,"""Asia""" +2024-06-24,70575,9418,"[\""Keyboard\""]",4158.29,{},217806,0,"""South America""" +2024-06-19,70576,2813,"[\""Headphones\"", \""Wireless Mouse\""]",371.07,{},183936,1,"""South America""" +2023-02-06,70577,3338,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1910.37,"{\""loyalty\"": \""20%\""}",172206,1,"""Africa""" +2024-12-14,70578,4425,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2452.61,{},152294,1,"""Asia""" +2024-07-28,70579,6944,"[\""Charger\""]",980.87,{},298364,0,"""Africa""" +2024-02-14,70580,5534,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4140.31,"{\""promo\"": \""22%\""}",237509,1,"""North America""" +2024-01-18,70581,7950,"[\""Wireless Mouse\"", \""Laptop\""]",2112.97,"{\""promo\"": \""19%\""}",282441,0,"""North America""" +2023-11-16,70582,2006,"[\""Tablet\"", \""Laptop\""]",671.48,"{\""loyalty\"": \""9%\""}",177315,1,"""South America""" +2023-07-27,70583,7723,"[\""Tablet\"", \""Headphones\""]",3035.66,"{\""loyalty\"": \""24%\""}",58392,0,"""Asia""" +2023-03-15,70584,1496,"[\""Laptop\"", \""Charger\""]",4979.15,{},159710,0,"""North America""" +2024-04-15,70585,5478,"[\""Charger\""]",3883.3,{},49707,1,"""Asia""" +2024-03-14,70586,3520,"[\""Tablet\"", \""Phone\""]",4276.98,{},179744,1,"""Africa""" +2024-04-17,70587,7744,"[\""Laptop\"", \""Wireless Mouse\""]",583.31,{},295712,1,"""South America""" +2023-11-08,70588,3457,"[\""Wireless Mouse\"", \""Tablet\""]",2166.31,{},145742,1,"""Europe""" +2024-11-05,70589,4906,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4058.55,"{\""promo\"": \""19%\""}",52857,1,"""North America""" +2024-06-20,70590,684,"[\""Charger\""]",2539.21,{},192439,0,"""Europe""" +2024-03-16,70591,1200,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3618.08,{},232191,0,"""Europe""" +2023-12-08,70592,8561,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1375.41,{},161157,1,"""Africa""" +2024-12-03,70593,8566,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4519.96,{},36329,1,"""South America""" +2024-11-22,70594,9034,"[\""Charger\"", \""Wireless Mouse\""]",4458.0,{},15649,0,"""Asia""" +2023-03-24,70595,7173,"[\""Headphones\"", \""Wireless Mouse\""]",4336.83,{},269563,0,"""North America""" +2024-08-11,70596,8147,"[\""Phone\""]",2359.41,{},152421,1,"""Africa""" +2024-07-20,70597,5017,"[\""Keyboard\""]",1253.18,{},7630,0,"""South America""" +2024-08-14,70598,5799,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2019.35,{},46666,1,"""North America""" +2023-09-13,70599,6721,"[\""Monitor\""]",1712.19,"{\""promo\"": \""6%\""}",109654,1,"""Africa""" +2024-03-11,70600,1845,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2211.69,{},228580,1,"""North America""" +2023-11-14,70601,1616,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",120.19,"{\""promo\"": \""22%\""}",23673,1,"""South America""" +2023-05-25,70602,4793,"[\""Headphones\""]",1896.49,"{\"": \""16%\""}",213810,1,"""Europe""" +2023-04-16,70603,414,"[\""Tablet\"", \""Laptop\""]",2331.71,{},67183,0,"""North America""" +2023-12-06,70604,1757,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4551.65,"{\""seasonal\"": \""11%\""}",170539,0,"""Europe""" +2024-10-24,70605,7635,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2859.72,{},207279,0,"""Asia""" +2023-01-19,70606,3091,"[\""Wireless Mouse\"", \""Headphones\""]",4660.08,{},6338,0,"""Africa""" +2024-08-25,70607,1300,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4216.31,"{\""loyalty\"": \""22%\""}",57934,1,"""Africa""" +2023-12-07,70608,4980,"[\""Monitor\""]",4348.44,"{\""loyalty\"": \""14%\""}",148804,1,"""Europe""" +2024-02-01,70609,3124,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1947.37,"{\""promo\"": \""26%\""}",113602,1,"""North America""" +2024-09-28,70610,3624,"[\""Charger\""]",3177.4,{},127860,1,"""Europe""" +2023-09-08,70611,2976,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1297.81,"{\""loyalty\"": \""11%\""}",177684,1,"""Africa""" +2024-04-27,70612,3495,"[\""Charger\"", \""Monitor\""]",645.81,{},112829,0,"""Asia""" +2023-06-27,70613,2936,"[\""Tablet\""]",2090.06,{},170314,1,"""Africa""" +2024-06-11,70614,3458,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4114.1,{},93604,1,"""Asia""" +2024-08-27,70615,5315,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4537.81,"{\"": \""15%\""}",274772,0,"""Asia""" +2024-08-25,70616,5972,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2920.31,{},206726,0,"""North America""" +2023-04-14,70617,9964,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1252.88,"{\"": \""17%\""}",46526,1,"""Asia""" +2024-01-30,70618,9725,"[\""Laptop\""]",4458.79,{},29399,0,"""Europe""" +2024-06-08,70619,9332,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2824.94,"{\"": \""24%\""}",134456,1,"""South America""" +2024-05-05,70620,2891,"[\""Monitor\""]",1441.94,"{\"": \""24%\""}",221667,1,"""South America""" +2024-09-10,70621,5242,"[\""Phone\""]",3624.79,"{\"": \""27%\""}",157437,0,"""South America""" +2023-02-04,70622,6694,"[\""Keyboard\"", \""Headphones\""]",4795.82,"{\""loyalty\"": \""5%\""}",139972,1,"""North America""" +2023-11-08,70623,1883,"[\""Laptop\""]",1543.49,"{\"": \""9%\""}",38518,1,"""South America""" +2024-02-23,70624,6460,"[\""Keyboard\"", \""Monitor\""]",2753.66,{},247067,1,"""Asia""" +2024-05-23,70625,1177,"[\""Laptop\"", \""Phone\""]",318.41,"{\"": \""30%\""}",181163,0,"""South America""" +2024-02-22,70626,7664,"[\""Laptop\""]",3835.49,"{\""seasonal\"": \""29%\""}",41770,0,"""Asia""" +2024-02-14,70627,9913,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1824.91,{},21544,0,"""North America""" +2023-05-30,70628,9204,"[\""Monitor\""]",2632.69,"{\""promo\"": \""9%\""}",296503,1,"""Europe""" +2023-07-01,70629,66,"[\""Wireless Mouse\""]",4621.83,"{\"": \""10%\""}",12371,0,"""Europe""" +2023-07-09,70630,5459,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",59.2,{},46592,1,"""Asia""" +2023-03-11,70631,2033,"[\""Headphones\"", \""Phone\""]",177.0,"{\"": \""24%\""}",120471,1,"""South America""" +2023-09-21,70632,4665,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2401.99,{},254519,1,"""South America""" +2023-01-08,70633,7593,"[\""Charger\""]",3559.09,"{\"": \""18%\""}",108565,1,"""Africa""" +2024-09-12,70634,3467,"[\""Tablet\"", \""Keyboard\""]",327.23,{},235764,1,"""South America""" +2023-07-09,70635,8421,"[\""Tablet\"", \""Headphones\""]",3331.44,{},153840,1,"""Africa""" +2024-06-28,70636,5745,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",187.39,"{\""seasonal\"": \""27%\""}",84344,1,"""Asia""" +2024-12-31,70637,8788,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",457.58,{},81133,0,"""Africa""" +2024-09-07,70638,6692,"[\""Monitor\"", \""Headphones\""]",2618.9,"{\""loyalty\"": \""11%\""}",260940,1,"""Africa""" +2024-08-16,70639,1955,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4145.06,"{\""promo\"": \""8%\""}",45687,1,"""Asia""" +2024-07-11,70640,6559,"[\""Monitor\"", \""Headphones\""]",3360.15,{},62436,0,"""Africa""" +2023-11-04,70641,4331,"[\""Tablet\""]",3007.56,{},1060,1,"""North America""" +2024-03-23,70642,9241,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4664.89,"{\""seasonal\"": \""18%\""}",196016,0,"""Asia""" +2023-06-12,70643,3208,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2588.42,"{\""loyalty\"": \""22%\""}",131355,1,"""North America""" +2023-12-01,70644,9502,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",519.23,{},196408,0,"""South America""" +2023-06-20,70645,2316,"[\""Tablet\"", \""Wireless Mouse\""]",3372.04,"{\""promo\"": \""6%\""}",233279,0,"""South America""" +2024-09-24,70646,4561,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1497.54,{},230800,0,"""Europe""" +2024-07-11,70647,7805,"[\""Keyboard\""]",2833.01,{},206635,0,"""North America""" +2024-12-18,70648,7235,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4243.19,{},128153,0,"""Africa""" +2023-10-16,70649,2232,"[\""Wireless Mouse\"", \""Keyboard\""]",3196.49,{},199897,1,"""South America""" +2024-09-06,70650,7910,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1893.75,{},154363,0,"""North America""" +2024-10-03,70651,6861,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2929.14,"{\""loyalty\"": \""18%\""}",145542,1,"""Asia""" +2024-08-31,70652,1744,"[\""Charger\"", \""Keyboard\""]",1358.75,{},152335,0,"""Asia""" +2024-12-18,70653,2824,"[\""Tablet\""]",1279.96,{},145962,0,"""Asia""" +2023-11-22,70654,6282,"[\""Laptop\"", \""Wireless Mouse\""]",1711.9,"{\""promo\"": \""28%\""}",192200,0,"""North America""" +2024-05-14,70655,5448,"[\""Charger\"", \""Monitor\""]",499.27,{},105748,1,"""Asia""" +2023-08-27,70656,8332,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4538.34,"{\"": \""6%\""}",247813,0,"""South America""" +2024-11-06,70657,9928,"[\""Phone\"", \""Monitor\""]",1054.18,"{\""seasonal\"": \""24%\""}",193493,0,"""Africa""" +2023-08-29,70658,2486,"[\""Tablet\""]",3598.0,{},268815,0,"""South America""" +2023-03-18,70659,4400,"[\""Monitor\""]",3011.91,{},85629,0,"""South America""" +2023-05-06,70660,8397,"[\""Headphones\"", \""Keyboard\""]",1125.49,"{\""loyalty\"": \""19%\""}",129758,0,"""Africa""" +2023-12-12,70661,9592,"[\""Wireless Mouse\"", \""Keyboard\""]",761.96,{},122169,0,"""Asia""" +2024-07-25,70662,4053,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4327.25,{},20448,1,"""Africa""" +2024-10-18,70663,4498,"[\""Laptop\"", \""Phone\""]",4972.27,{},62983,0,"""Europe""" +2023-06-29,70664,4768,"[\""Charger\""]",2883.9,"{\""loyalty\"": \""18%\""}",49871,1,"""South America""" +2024-12-01,70665,8731,"[\""Tablet\"", \""Charger\""]",4128.36,"{\""loyalty\"": \""15%\""}",230433,1,"""North America""" +2023-06-16,70666,3669,"[\""Charger\""]",4238.7,{},125357,0,"""North America""" +2024-08-17,70667,8380,"[\""Headphones\"", \""Tablet\""]",1328.98,{},8084,0,"""Africa""" +2023-02-15,70668,9667,"[\""Tablet\""]",1406.15,{},42604,1,"""Africa""" +2023-07-10,70669,5405,"[\""Charger\"", \""Headphones\""]",2627.23,"{\"": \""9%\""}",200444,1,"""Asia""" +2024-06-15,70670,4532,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1693.18,"{\""loyalty\"": \""23%\""}",299536,0,"""Asia""" +2023-07-08,70671,8353,"[\""Wireless Mouse\"", \""Phone\""]",1419.74,{},220741,1,"""Asia""" +2023-11-05,70672,8642,"[\""Keyboard\""]",2006.1,"{\""promo\"": \""16%\""}",280155,0,"""Europe""" +2024-11-21,70673,3134,"[\""Wireless Mouse\""]",4247.9,"{\""seasonal\"": \""14%\""}",124120,0,"""South America""" +2023-10-24,70674,3709,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1496.46,{},281165,0,"""Europe""" +2023-01-28,70675,5564,"[\""Charger\"", \""Tablet\""]",1100.42,"{\""seasonal\"": \""6%\""}",100267,1,"""Asia""" +2023-10-14,70676,5789,"[\""Phone\""]",4795.17,{},12807,0,"""South America""" +2024-12-27,70677,8949,"[\""Keyboard\"", \""Charger\""]",2339.05,{},162374,1,"""Africa""" +2023-07-26,70678,7787,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4604.68,"{\""promo\"": \""8%\""}",103044,1,"""South America""" +2023-01-19,70679,5265,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2517.12,{},188708,1,"""North America""" +2023-09-23,70680,4692,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3585.34,"{\"": \""15%\""}",14266,0,"""Europe""" +2024-08-20,70681,641,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",116.98,{},182330,1,"""Africa""" +2024-01-09,70682,3656,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",423.78,{},233945,0,"""South America""" +2024-04-08,70683,4551,"[\""Keyboard\"", \""Monitor\""]",3502.24,"{\""seasonal\"": \""27%\""}",198634,1,"""South America""" +2024-07-17,70684,2993,"[\""Monitor\"", \""Phone\""]",1925.23,{},49428,0,"""North America""" +2023-06-18,70685,1024,"[\""Keyboard\"", \""Headphones\""]",551.98,"{\""loyalty\"": \""6%\""}",149185,1,"""Europe""" +2023-01-21,70686,934,"[\""Keyboard\"", \""Laptop\""]",2789.45,"{\"": \""13%\""}",146162,1,"""Africa""" +2023-03-06,70687,7343,"[\""Monitor\"", \""Keyboard\""]",1542.99,{},7674,0,"""Africa""" +2023-08-02,70688,9196,"[\""Headphones\"", \""Phone\""]",3569.6,"{\""promo\"": \""11%\""}",231619,1,"""Asia""" +2024-04-16,70689,2104,"[\""Monitor\"", \""Laptop\""]",1775.89,"{\"": \""24%\""}",221037,1,"""Asia""" +2024-03-14,70690,272,"[\""Headphones\"", \""Laptop\""]",4398.17,"{\""seasonal\"": \""13%\""}",202724,0,"""North America""" +2023-07-11,70691,2840,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1839.15,{},135618,1,"""South America""" +2023-09-08,70692,9107,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",55.01,"{\""promo\"": \""19%\""}",7213,0,"""Europe""" +2024-01-21,70693,7485,"[\""Tablet\"", \""Charger\""]",1555.73,"{\""seasonal\"": \""17%\""}",246703,0,"""South America""" +2024-10-30,70694,585,"[\""Keyboard\""]",3114.85,{},53411,1,"""North America""" +2024-07-13,70695,2463,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1621.27,"{\""loyalty\"": \""20%\""}",159873,0,"""Europe""" +2023-10-23,70696,9865,"[\""Wireless Mouse\""]",3565.21,"{\"": \""23%\""}",162954,1,"""South America""" +2023-01-12,70697,2015,"[\""Wireless Mouse\""]",1560.74,"{\""seasonal\"": \""10%\""}",85071,1,"""North America""" +2024-11-01,70698,7998,"[\""Laptop\""]",469.61,{},19357,0,"""Europe""" +2024-06-09,70699,3698,"[\""Charger\"", \""Headphones\""]",557.76,{},266724,0,"""Africa""" +2023-12-22,70700,9259,"[\""Keyboard\""]",1268.54,"{\""seasonal\"": \""24%\""}",108647,1,"""South America""" +2023-02-25,70701,1341,"[\""Wireless Mouse\"", \""Monitor\""]",1000.54,{},183031,1,"""Africa""" +2023-02-26,70702,6338,"[\""Headphones\""]",1753.08,{},102332,0,"""South America""" +2024-09-23,70703,3648,"[\""Keyboard\"", \""Headphones\""]",4374.2,{},272675,1,"""North America""" +2024-01-15,70704,2151,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2990.03,"{\""seasonal\"": \""24%\""}",21816,0,"""Asia""" +2023-07-29,70705,5143,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3020.05,"{\""seasonal\"": \""6%\""}",211024,1,"""South America""" +2024-05-18,70706,1965,"[\""Wireless Mouse\"", \""Keyboard\""]",1400.08,{},255710,1,"""South America""" +2023-05-19,70707,6769,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3897.68,{},245736,0,"""Asia""" +2023-10-24,70708,3641,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3072.4,"{\"": \""19%\""}",22451,1,"""South America""" +2023-09-25,70709,2304,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1980.85,{},33063,0,"""North America""" +2024-01-22,70710,1941,"[\""Charger\"", \""Phone\"", \""Tablet\""]",55.12,{},160963,0,"""North America""" +2024-05-22,70711,3558,"[\""Tablet\"", \""Headphones\""]",975.61,{},91849,1,"""Africa""" +2023-08-04,70712,2754,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4887.37,"{\""promo\"": \""24%\""}",234255,0,"""Asia""" +2024-05-25,70713,2233,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1565.99,"{\""loyalty\"": \""14%\""}",258784,1,"""Africa""" +2024-03-03,70714,7073,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3946.68,{},141721,1,"""Asia""" +2023-02-25,70715,9458,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2040.53,{},8097,1,"""South America""" +2024-06-12,70716,5850,"[\""Tablet\"", \""Laptop\""]",3231.42,"{\""promo\"": \""29%\""}",35669,1,"""South America""" +2023-07-31,70717,7306,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",80.42,{},74502,0,"""North America""" +2024-03-01,70718,8080,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4567.04,{},291440,0,"""South America""" +2024-01-27,70719,3004,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1490.81,"{\""loyalty\"": \""11%\""}",172079,1,"""Europe""" +2023-11-25,70720,9909,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2716.67,{},137965,0,"""Asia""" +2023-06-21,70721,997,"[\""Charger\""]",4875.63,{},266682,0,"""Africa""" +2023-10-19,70722,7967,"[\""Headphones\""]",1707.49,{},152672,1,"""Europe""" +2024-07-17,70723,794,"[\""Charger\""]",3223.69,"{\"": \""15%\""}",126610,1,"""Africa""" +2024-11-15,70724,2738,"[\""Laptop\"", \""Headphones\""]",3817.73,"{\""loyalty\"": \""18%\""}",156463,1,"""South America""" +2023-10-20,70725,6279,"[\""Wireless Mouse\"", \""Headphones\""]",4878.25,"{\""promo\"": \""15%\""}",158709,0,"""Africa""" +2024-12-01,70726,7968,"[\""Keyboard\""]",2479.69,"{\""seasonal\"": \""6%\""}",145600,0,"""Africa""" +2023-06-09,70727,1798,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1734.04,{},134617,0,"""South America""" +2024-09-08,70728,445,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3821.7,{},57855,1,"""Africa""" +2023-07-14,70729,5702,"[\""Monitor\"", \""Headphones\""]",4513.95,"{\"": \""25%\""}",214785,1,"""Africa""" +2023-06-20,70730,2279,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3859.97,"{\"": \""16%\""}",277806,1,"""Africa""" +2023-08-16,70731,7754,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2648.64,"{\""loyalty\"": \""6%\""}",107612,1,"""North America""" +2023-06-27,70732,5532,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1730.13,{},232504,0,"""South America""" +2023-06-23,70733,5683,"[\""Laptop\""]",690.42,{},11672,0,"""South America""" +2023-08-11,70734,4067,"[\""Tablet\"", \""Monitor\""]",3443.14,{},161773,1,"""Asia""" +2023-12-31,70735,422,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",845.47,"{\"": \""5%\""}",240668,1,"""Asia""" +2024-12-27,70736,662,"[\""Monitor\""]",4162.68,{},17286,1,"""Africa""" +2024-08-31,70737,6214,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4334.77,"{\"": \""14%\""}",105741,0,"""South America""" +2024-07-30,70738,7150,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3210.63,{},226367,0,"""Africa""" +2023-06-04,70739,398,"[\""Headphones\"", \""Laptop\""]",860.01,{},81615,1,"""South America""" +2024-07-21,70740,9329,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2662.93,{},246531,0,"""North America""" +2024-01-16,70741,4501,"[\""Tablet\"", \""Headphones\""]",2615.96,{},238332,1,"""Asia""" +2024-08-03,70742,5423,"[\""Laptop\"", \""Tablet\""]",3143.67,{},254065,1,"""North America""" +2023-05-12,70743,3698,"[\""Monitor\""]",701.88,"{\""loyalty\"": \""26%\""}",244578,0,"""Asia""" +2024-01-01,70744,8111,"[\""Monitor\""]",1464.53,"{\""seasonal\"": \""7%\""}",15445,0,"""North America""" +2024-01-01,70745,8664,"[\""Wireless Mouse\"", \""Keyboard\""]",2537.26,{},217353,0,"""South America""" +2023-10-21,70746,3083,"[\""Monitor\"", \""Laptop\""]",4268.7,{},101892,0,"""Africa""" +2023-08-11,70747,5387,"[\""Wireless Mouse\""]",833.13,"{\""promo\"": \""22%\""}",10556,0,"""Europe""" +2024-05-25,70748,5916,"[\""Monitor\"", \""Tablet\""]",3956.21,"{\""seasonal\"": \""28%\""}",166016,1,"""Europe""" +2024-10-10,70749,3597,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",73.43,"{\""seasonal\"": \""13%\""}",65617,0,"""Africa""" +2023-08-06,70750,404,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1471.35,{},31954,0,"""Africa""" +2023-05-23,70751,4239,"[\""Charger\"", \""Laptop\""]",855.08,{},200768,0,"""South America""" +2023-04-28,70752,1876,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1149.51,{},155953,0,"""North America""" +2024-04-22,70753,6984,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",311.74,{},217337,1,"""South America""" +2024-01-27,70754,3319,"[\""Wireless Mouse\"", \""Phone\""]",520.23,"{\"": \""15%\""}",234359,1,"""Asia""" +2024-10-09,70755,6298,"[\""Laptop\""]",3636.09,{},291180,1,"""Europe""" +2023-08-27,70756,1450,"[\""Keyboard\"", \""Charger\""]",3441.11,{},155249,1,"""North America""" +2024-11-16,70757,9872,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",240.77,"{\""seasonal\"": \""24%\""}",280084,1,"""Africa""" +2024-08-09,70758,7064,"[\""Wireless Mouse\""]",3829.57,"{\"": \""6%\""}",122739,0,"""North America""" +2023-08-06,70759,1052,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1066.27,"{\"": \""8%\""}",122949,1,"""South America""" +2024-07-06,70760,4106,"[\""Tablet\"", \""Wireless Mouse\""]",3449.94,"{\""seasonal\"": \""27%\""}",269652,1,"""Europe""" +2024-11-12,70761,2569,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1778.1,"{\""seasonal\"": \""16%\""}",116010,1,"""North America""" +2024-02-21,70762,7664,"[\""Monitor\""]",4043.16,{},217995,1,"""South America""" +2023-04-21,70763,932,"[\""Wireless Mouse\"", \""Laptop\""]",1040.82,{},270055,1,"""Europe""" +2023-11-30,70764,6142,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",938.92,"{\""promo\"": \""30%\""}",190158,0,"""Europe""" +2023-05-09,70765,3976,"[\""Keyboard\""]",3248.5,"{\"": \""22%\""}",127088,0,"""Europe""" +2024-11-24,70766,9112,"[\""Charger\"", \""Wireless Mouse\""]",1376.93,{},210550,0,"""Europe""" +2024-01-01,70767,8959,"[\""Keyboard\""]",4157.31,{},74012,0,"""North America""" +2024-05-11,70768,2754,"[\""Keyboard\""]",1337.24,{},73091,1,"""Africa""" +2024-12-14,70769,1455,"[\""Tablet\"", \""Wireless Mouse\""]",942.04,"{\""loyalty\"": \""22%\""}",7068,0,"""Europe""" +2024-01-05,70770,1929,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1982.03,{},50973,1,"""Asia""" +2024-08-13,70771,6276,"[\""Phone\"", \""Laptop\""]",1428.43,"{\""seasonal\"": \""29%\""}",135820,0,"""South America""" +2023-02-17,70772,5635,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4251.15,{},170549,1,"""Asia""" +2024-05-05,70773,5682,"[\""Monitor\""]",3522.17,{},151949,0,"""Europe""" +2023-04-01,70774,4955,"[\""Wireless Mouse\"", \""Monitor\""]",1921.92,"{\"": \""7%\""}",125573,1,"""South America""" +2024-08-16,70775,8472,"[\""Phone\""]",4021.36,{},237286,0,"""Africa""" +2023-08-18,70776,7730,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4619.58,{},222545,1,"""Europe""" +2024-08-20,70777,3017,"[\""Wireless Mouse\""]",1197.39,{},66883,0,"""South America""" +2024-07-02,70778,105,"[\""Headphones\"", \""Monitor\""]",3200.64,{},185655,0,"""North America""" +2024-06-12,70779,9707,"[\""Keyboard\""]",1739.8,{},12002,0,"""Europe""" +2024-06-20,70780,9816,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3719.09,{},299948,1,"""Europe""" +2024-06-21,70781,6282,"[\""Charger\""]",1361.54,"{\"": \""18%\""}",251738,0,"""North America""" +2023-07-13,70782,5429,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4359.66,"{\""promo\"": \""25%\""}",90415,0,"""South America""" +2024-04-21,70783,2827,"[\""Headphones\""]",4083.39,"{\""loyalty\"": \""10%\""}",206603,0,"""South America""" +2023-03-15,70784,1510,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1376.62,"{\""loyalty\"": \""10%\""}",82666,0,"""Europe""" +2023-06-02,70785,7500,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4450.41,"{\""promo\"": \""24%\""}",137433,1,"""South America""" +2024-12-10,70786,5126,"[\""Tablet\""]",1972.94,{},4057,0,"""North America""" +2023-09-15,70787,3124,"[\""Wireless Mouse\"", \""Headphones\""]",3009.24,{},46694,0,"""Africa""" +2023-05-30,70788,6781,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2780.04,{},88096,1,"""Europe""" +2023-10-22,70789,5165,"[\""Keyboard\""]",551.45,{},96575,0,"""Asia""" +2023-03-29,70790,7770,"[\""Tablet\"", \""Wireless Mouse\""]",806.28,"{\""loyalty\"": \""5%\""}",91384,0,"""South America""" +2023-12-17,70791,912,"[\""Wireless Mouse\""]",4381.47,{},66511,0,"""South America""" +2024-02-11,70792,7469,"[\""Keyboard\"", \""Monitor\""]",3835.5,"{\""promo\"": \""27%\""}",155004,1,"""Europe""" +2024-03-31,70793,8009,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1428.12,"{\""loyalty\"": \""10%\""}",221714,0,"""South America""" +2024-09-14,70794,3249,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4333.31,"{\""seasonal\"": \""18%\""}",153066,1,"""Asia""" +2024-06-01,70795,3459,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",637.14,"{\"": \""25%\""}",47514,1,"""Africa""" +2023-04-02,70796,1625,"[\""Phone\"", \""Tablet\""]",4338.29,"{\""seasonal\"": \""19%\""}",123673,0,"""North America""" +2023-01-12,70797,6435,"[\""Monitor\"", \""Tablet\""]",4064.68,{},296223,0,"""South America""" +2023-08-22,70798,1710,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3637.24,{},148048,1,"""North America""" +2024-10-21,70799,5710,"[\""Charger\""]",4378.29,{},257387,0,"""Africa""" +2024-10-26,70800,987,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3511.73,"{\"": \""9%\""}",149850,1,"""South America""" +2024-02-21,70801,7428,"[\""Laptop\"", \""Tablet\""]",893.59,"{\""seasonal\"": \""7%\""}",291902,0,"""Europe""" +2023-10-17,70802,311,"[\""Phone\""]",1061.53,"{\""loyalty\"": \""19%\""}",211760,1,"""Europe""" +2023-07-27,70803,7882,"[\""Phone\"", \""Wireless Mouse\""]",1165.66,"{\""loyalty\"": \""5%\""}",248178,0,"""Europe""" +2023-02-26,70804,7797,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1713.56,"{\"": \""14%\""}",228555,0,"""North America""" +2024-04-16,70805,7778,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3994.88,{},30266,0,"""Europe""" +2023-12-03,70806,678,"[\""Wireless Mouse\"", \""Laptop\""]",3496.99,"{\""promo\"": \""15%\""}",52310,0,"""North America""" +2023-10-14,70807,6729,"[\""Headphones\"", \""Phone\""]",1733.98,{},210624,0,"""South America""" +2023-03-16,70808,1762,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2298.54,{},293989,0,"""North America""" +2023-05-16,70809,1020,"[\""Wireless Mouse\"", \""Laptop\""]",364.95,"{\"": \""18%\""}",21130,0,"""North America""" +2024-11-03,70810,3023,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3062.34,{},105466,1,"""Africa""" +2023-07-18,70811,1244,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3635.69,{},226202,1,"""Asia""" +2024-06-25,70812,3964,"[\""Wireless Mouse\""]",4084.34,{},209662,0,"""Africa""" +2024-05-06,70813,778,"[\""Headphones\"", \""Laptop\""]",2589.58,{},131546,0,"""North America""" +2023-05-26,70814,9399,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2442.82,{},31472,1,"""Europe""" +2023-10-10,70815,7646,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1687.61,"{\""promo\"": \""15%\""}",92736,1,"""Europe""" +2023-10-25,70816,6631,"[\""Laptop\""]",1261.53,"{\""seasonal\"": \""14%\""}",260598,0,"""North America""" +2023-07-15,70817,7565,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2046.89,"{\""seasonal\"": \""18%\""}",116213,0,"""Africa""" +2023-09-14,70818,261,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3981.78,"{\"": \""7%\""}",87900,0,"""Asia""" +2024-11-20,70819,2653,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1777.52,"{\""loyalty\"": \""14%\""}",91818,0,"""Africa""" +2024-04-18,70820,3146,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1208.26,"{\""seasonal\"": \""12%\""}",25482,0,"""Europe""" +2023-06-12,70821,4444,"[\""Monitor\"", \""Keyboard\""]",4809.5,{},255499,0,"""Europe""" +2024-09-03,70822,8069,"[\""Laptop\""]",2723.48,{},94874,0,"""North America""" +2023-10-20,70823,3557,"[\""Phone\""]",3701.42,"{\""loyalty\"": \""9%\""}",27995,1,"""Asia""" +2024-03-21,70824,9182,"[\""Headphones\"", \""Monitor\""]",82.61,"{\""loyalty\"": \""12%\""}",22003,0,"""Asia""" +2023-07-16,70825,1149,"[\""Laptop\""]",1166.71,{},179465,1,"""Europe""" +2023-08-29,70826,8569,"[\""Laptop\""]",2225.09,"{\""loyalty\"": \""27%\""}",123408,0,"""Asia""" +2024-01-31,70827,7977,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3529.24,{},238087,1,"""South America""" +2024-10-24,70828,4750,"[\""Laptop\""]",2871.38,"{\""loyalty\"": \""30%\""}",53558,1,"""Europe""" +2024-08-17,70829,9258,"[\""Monitor\""]",4660.35,{},277712,0,"""South America""" +2024-04-07,70830,8657,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2665.88,"{\""seasonal\"": \""30%\""}",43314,1,"""South America""" +2023-10-19,70831,9434,"[\""Phone\""]",2995.53,"{\"": \""7%\""}",54343,1,"""North America""" +2023-02-17,70832,9251,"[\""Charger\""]",253.76,{},285875,1,"""South America""" +2024-10-27,70833,4357,"[\""Tablet\"", \""Charger\""]",1952.56,{},148975,0,"""Europe""" +2023-08-13,70834,5804,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4748.0,"{\""seasonal\"": \""13%\""}",276853,0,"""Europe""" +2023-05-06,70835,5013,"[\""Laptop\"", \""Keyboard\""]",1552.81,{},148954,0,"""Africa""" +2024-11-11,70836,4526,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3225.07,{},193958,0,"""Africa""" +2024-08-13,70837,7588,"[\""Wireless Mouse\""]",1787.28,{},167713,0,"""South America""" +2023-10-11,70838,2194,"[\""Laptop\"", \""Phone\""]",1390.0,{},252407,0,"""South America""" +2024-02-03,70839,2618,"[\""Charger\"", \""Phone\""]",98.12,{},223246,0,"""Africa""" +2023-09-24,70840,4967,"[\""Laptop\"", \""Wireless Mouse\""]",4316.81,"{\""seasonal\"": \""21%\""}",20958,1,"""Africa""" +2023-12-22,70841,9363,"[\""Tablet\""]",706.16,"{\""seasonal\"": \""24%\""}",21793,1,"""Europe""" +2024-02-17,70842,6535,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4525.14,{},275152,0,"""South America""" +2024-04-03,70843,1077,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4344.82,{},76104,0,"""Africa""" +2023-04-21,70844,609,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",591.91,{},106908,0,"""Europe""" +2024-08-18,70845,8595,"[\""Tablet\"", \""Monitor\""]",2509.86,{},73747,0,"""Asia""" +2024-11-26,70846,9148,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3088.72,"{\""loyalty\"": \""16%\""}",272878,1,"""Africa""" +2023-07-31,70847,9839,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3386.22,{},167132,1,"""Asia""" +2024-11-16,70848,1321,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4622.56,"{\""loyalty\"": \""30%\""}",94659,0,"""South America""" +2023-09-27,70849,6064,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2096.49,{},49732,1,"""Asia""" +2024-11-15,70850,2146,"[\""Phone\""]",3989.28,"{\""seasonal\"": \""19%\""}",43423,0,"""Europe""" +2023-03-24,70851,5632,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",985.97,"{\""seasonal\"": \""8%\""}",272030,0,"""Africa""" +2024-10-29,70852,5454,"[\""Phone\"", \""Laptop\""]",4994.19,"{\"": \""24%\""}",13327,1,"""South America""" +2023-12-07,70853,9547,"[\""Headphones\""]",3069.79,"{\""seasonal\"": \""25%\""}",229913,0,"""Asia""" +2024-04-29,70854,8397,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3320.23,{},111474,1,"""Europe""" +2023-01-20,70855,6527,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1666.5,{},245784,1,"""Europe""" +2024-05-02,70856,5871,"[\""Phone\""]",3240.77,"{\""seasonal\"": \""16%\""}",116749,0,"""Asia""" +2024-01-19,70857,9339,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4539.05,"{\""loyalty\"": \""22%\""}",225622,1,"""South America""" +2023-09-15,70858,8191,"[\""Keyboard\"", \""Headphones\""]",4811.71,"{\"": \""30%\""}",11299,1,"""Europe""" +2023-03-02,70859,9473,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2373.22,"{\""promo\"": \""18%\""}",51318,0,"""Europe""" +2024-03-28,70860,9151,"[\""Wireless Mouse\"", \""Monitor\""]",86.69,"{\""loyalty\"": \""12%\""}",229219,0,"""North America""" +2023-03-11,70861,4897,"[\""Tablet\"", \""Monitor\""]",4696.52,{},97882,1,"""North America""" +2024-07-04,70862,9401,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2946.73,{},20219,0,"""Europe""" +2023-02-04,70863,2899,"[\""Phone\""]",4952.76,{},45839,1,"""Africa""" +2023-08-25,70864,6821,"[\""Headphones\""]",3001.36,"{\""promo\"": \""7%\""}",33430,1,"""South America""" +2024-04-16,70865,7061,"[\""Phone\"", \""Tablet\""]",2221.12,"{\""seasonal\"": \""26%\""}",121596,1,"""Europe""" +2023-02-14,70866,8832,"[\""Wireless Mouse\""]",4290.26,"{\""loyalty\"": \""10%\""}",204606,0,"""Europe""" +2023-05-26,70867,5588,"[\""Keyboard\"", \""Charger\""]",3816.82,"{\""seasonal\"": \""20%\""}",164566,1,"""North America""" +2024-02-12,70868,3147,"[\""Monitor\""]",904.94,{},217253,1,"""Europe""" +2023-01-13,70869,1304,"[\""Charger\"", \""Phone\""]",245.03,"{\""loyalty\"": \""9%\""}",224539,1,"""Asia""" +2024-05-08,70870,503,"[\""Keyboard\"", \""Charger\""]",351.81,{},76878,1,"""Europe""" +2023-02-05,70871,8545,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3646.91,{},144064,1,"""South America""" +2023-06-24,70872,5871,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",89.74,"{\""promo\"": \""14%\""}",210012,0,"""Europe""" +2023-06-19,70873,7863,"[\""Monitor\""]",1112.41,"{\""promo\"": \""15%\""}",41692,0,"""South America""" +2024-08-12,70874,530,"[\""Keyboard\"", \""Charger\""]",1983.13,{},147786,0,"""North America""" +2024-02-06,70875,990,"[\""Monitor\"", \""Keyboard\""]",2342.64,{},59335,1,"""Africa""" +2023-01-21,70876,7245,"[\""Headphones\""]",1752.97,{},120238,1,"""South America""" +2023-04-03,70877,2365,"[\""Headphones\""]",3748.41,"{\""seasonal\"": \""25%\""}",296819,1,"""North America""" +2023-01-26,70878,160,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",316.36,"{\""loyalty\"": \""28%\""}",64292,0,"""Asia""" +2023-05-28,70879,1403,"[\""Tablet\"", \""Wireless Mouse\""]",4256.38,{},233856,1,"""Europe""" +2023-02-15,70880,6798,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",348.99,"{\""loyalty\"": \""11%\""}",232336,1,"""Asia""" +2024-08-28,70881,98,"[\""Monitor\""]",3782.12,{},203714,1,"""Asia""" +2023-11-04,70882,4984,"[\""Wireless Mouse\""]",287.77,"{\""loyalty\"": \""6%\""}",136057,0,"""Asia""" +2023-09-30,70883,4395,"[\""Phone\""]",2436.17,"{\"": \""27%\""}",16738,1,"""North America""" +2024-07-07,70884,3523,"[\""Keyboard\""]",1322.63,"{\""seasonal\"": \""24%\""}",161063,0,"""Asia""" +2023-02-26,70885,2132,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",193.41,"{\""seasonal\"": \""21%\""}",148148,0,"""Africa""" +2024-01-06,70886,8905,"[\""Phone\"", \""Laptop\""]",2099.98,"{\"": \""6%\""}",20503,0,"""Africa""" +2023-10-28,70887,3533,"[\""Wireless Mouse\"", \""Tablet\""]",4665.11,"{\""promo\"": \""21%\""}",160425,0,"""South America""" +2023-07-24,70888,1786,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2929.57,{},204845,0,"""South America""" +2024-04-13,70889,4785,"[\""Monitor\"", \""Tablet\""]",1870.87,{},161323,0,"""Asia""" +2023-11-20,70890,5800,"[\""Wireless Mouse\""]",1700.3,{},19463,0,"""North America""" +2023-01-03,70891,6117,"[\""Tablet\""]",4429.7,{},258738,1,"""Africa""" +2024-09-01,70892,2702,"[\""Headphones\"", \""Monitor\""]",2189.87,{},22724,0,"""North America""" +2023-02-23,70893,5533,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2460.88,{},5207,1,"""Africa""" +2023-10-31,70894,9416,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4360.0,{},52743,0,"""South America""" +2023-08-30,70895,1885,"[\""Phone\""]",3794.62,"{\"": \""29%\""}",240208,1,"""Europe""" +2023-09-12,70896,7091,"[\""Charger\""]",3621.02,{},158136,0,"""Europe""" +2024-08-15,70897,6878,"[\""Wireless Mouse\"", \""Phone\""]",2274.92,"{\""loyalty\"": \""13%\""}",171634,1,"""Europe""" +2024-06-13,70898,7627,"[\""Keyboard\"", \""Wireless Mouse\""]",866.56,{},172256,1,"""Africa""" +2024-08-09,70899,5642,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2563.2,"{\"": \""27%\""}",33133,0,"""Europe""" +2023-02-16,70900,9519,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4827.99,"{\""promo\"": \""26%\""}",102415,1,"""Africa""" +2023-12-18,70901,6333,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4015.4,{},183916,1,"""Asia""" +2024-03-06,70902,2604,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",211.05,{},286834,1,"""Europe""" +2024-04-01,70903,3554,"[\""Charger\""]",2385.16,{},256393,1,"""Europe""" +2023-08-18,70904,7681,"[\""Charger\""]",1048.87,{},48805,0,"""Europe""" +2023-12-02,70905,9584,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3678.45,"{\""seasonal\"": \""9%\""}",25911,0,"""Africa""" +2023-08-23,70906,3754,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2406.4,{},272287,1,"""South America""" +2024-12-24,70907,524,"[\""Phone\"", \""Headphones\""]",2413.47,{},41254,1,"""Africa""" +2024-01-10,70908,5349,"[\""Laptop\"", \""Charger\""]",1228.77,"{\"": \""7%\""}",210017,0,"""Europe""" +2024-10-03,70909,9978,"[\""Wireless Mouse\"", \""Headphones\""]",384.32,"{\""seasonal\"": \""6%\""}",129505,0,"""South America""" +2023-02-06,70910,7254,"[\""Tablet\""]",1243.48,{},295797,1,"""Africa""" +2024-03-10,70911,1191,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4680.0,"{\""promo\"": \""10%\""}",110039,1,"""North America""" +2024-06-16,70912,5517,"[\""Tablet\""]",3447.43,{},186755,1,"""Africa""" +2024-03-21,70913,1230,"[\""Wireless Mouse\""]",611.1,{},259985,1,"""Africa""" +2024-01-05,70914,423,"[\""Charger\"", \""Keyboard\""]",1248.3,"{\""promo\"": \""25%\""}",160510,1,"""South America""" +2024-01-02,70915,4406,"[\""Keyboard\""]",2146.52,{},181547,1,"""South America""" +2024-05-30,70916,7913,"[\""Phone\""]",4357.45,"{\""promo\"": \""18%\""}",260448,0,"""Africa""" +2023-11-13,70917,1660,"[\""Headphones\"", \""Keyboard\""]",2814.55,{},149570,0,"""Asia""" +2023-03-21,70918,9616,"[\""Charger\"", \""Tablet\""]",143.38,"{\""promo\"": \""28%\""}",1717,0,"""North America""" +2024-09-23,70919,4280,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",513.78,"{\""promo\"": \""9%\""}",33121,1,"""Europe""" +2023-06-01,70920,3274,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1124.75,"{\""seasonal\"": \""13%\""}",198624,1,"""North America""" +2024-09-08,70921,7660,"[\""Headphones\"", \""Charger\""]",2020.08,{},154387,1,"""Asia""" +2023-06-26,70922,6105,"[\""Keyboard\"", \""Charger\""]",270.3,"{\""seasonal\"": \""10%\""}",88732,1,"""Asia""" +2024-02-16,70923,5333,"[\""Phone\"", \""Tablet\""]",1339.78,"{\"": \""24%\""}",146919,1,"""North America""" +2023-11-29,70924,6316,"[\""Monitor\"", \""Laptop\""]",3170.63,"{\""promo\"": \""7%\""}",122970,1,"""North America""" +2024-12-15,70925,1344,"[\""Keyboard\"", \""Laptop\""]",2287.78,"{\""loyalty\"": \""27%\""}",245523,0,"""South America""" +2023-09-25,70926,3812,"[\""Charger\"", \""Laptop\""]",3489.16,{},193700,1,"""North America""" +2023-01-12,70927,8455,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1913.48,{},33133,1,"""Asia""" +2024-02-03,70928,285,"[\""Tablet\""]",407.2,"{\""promo\"": \""8%\""}",62752,0,"""Europe""" +2024-02-12,70929,5539,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2791.55,"{\""loyalty\"": \""22%\""}",155015,1,"""Africa""" +2023-07-09,70930,2832,"[\""Charger\"", \""Keyboard\""]",798.01,{},218114,1,"""Asia""" +2023-09-29,70931,7964,"[\""Phone\"", \""Laptop\""]",3332.46,"{\"": \""30%\""}",32988,1,"""South America""" +2024-01-29,70932,3424,"[\""Tablet\""]",3777.83,{},24196,0,"""Asia""" +2023-08-22,70933,535,"[\""Wireless Mouse\""]",3746.92,{},200045,1,"""North America""" +2024-03-23,70934,6498,"[\""Wireless Mouse\"", \""Headphones\""]",1038.79,"{\""loyalty\"": \""14%\""}",17910,0,"""South America""" +2024-12-17,70935,4637,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4552.6,"{\"": \""9%\""}",25434,0,"""Africa""" +2023-10-08,70936,4554,"[\""Tablet\""]",4577.6,{},13198,1,"""Asia""" +2024-01-28,70937,5845,"[\""Headphones\""]",2199.57,{},294758,1,"""Africa""" +2023-01-19,70938,5743,"[\""Keyboard\"", \""Wireless Mouse\""]",2822.24,{},212202,0,"""North America""" +2023-10-30,70939,3301,"[\""Wireless Mouse\"", \""Headphones\""]",564.15,{},70503,0,"""Africa""" +2023-05-10,70940,7230,"[\""Tablet\"", \""Keyboard\""]",3446.85,"{\""promo\"": \""19%\""}",94180,1,"""Europe""" +2023-09-01,70941,809,"[\""Tablet\""]",1409.02,"{\"": \""16%\""}",240816,1,"""Asia""" +2024-06-26,70942,844,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4434.09,{},43688,1,"""Africa""" +2023-12-29,70943,9926,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1320.55,{},107184,0,"""South America""" +2024-11-12,70944,5509,"[\""Laptop\""]",1064.85,{},239073,0,"""South America""" +2024-08-07,70945,6710,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3139.02,{},222615,1,"""Europe""" +2024-02-07,70946,7599,"[\""Wireless Mouse\""]",2094.51,{},156382,1,"""North America""" +2024-09-30,70947,8319,"[\""Monitor\"", \""Laptop\""]",1570.88,"{\""promo\"": \""13%\""}",65889,0,"""North America""" +2023-04-29,70948,7035,"[\""Phone\"", \""Charger\""]",1943.47,{},212038,1,"""Africa""" +2024-11-23,70949,5146,"[\""Laptop\"", \""Charger\""]",803.08,"{\""loyalty\"": \""17%\""}",157109,0,"""South America""" +2024-05-15,70950,7755,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3394.58,"{\""loyalty\"": \""20%\""}",128197,0,"""Asia""" +2024-12-03,70951,9076,"[\""Phone\""]",2067.7,{},222348,0,"""North America""" +2023-05-24,70952,3984,"[\""Headphones\"", \""Tablet\""]",307.13,{},131446,0,"""Africa""" +2023-12-28,70953,5171,"[\""Laptop\"", \""Charger\""]",192.96,{},130124,0,"""Africa""" +2023-06-07,70954,1184,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",474.17,{},27574,0,"""Europe""" +2023-11-12,70955,6514,"[\""Wireless Mouse\"", \""Laptop\""]",1270.97,"{\"": \""8%\""}",144557,0,"""Asia""" +2024-12-20,70956,1547,"[\""Tablet\""]",920.61,"{\"": \""24%\""}",53121,1,"""Africa""" +2024-03-30,70957,1947,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",695.71,"{\""promo\"": \""5%\""}",93025,0,"""Asia""" +2023-08-17,70958,1589,"[\""Tablet\"", \""Headphones\""]",446.03,{},37301,1,"""Asia""" +2024-05-13,70959,4864,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4232.39,"{\"": \""30%\""}",193578,0,"""North America""" +2024-02-29,70960,4052,"[\""Tablet\""]",3810.0,{},168650,1,"""Europe""" +2023-02-06,70961,7687,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3169.3,{},69028,0,"""North America""" +2024-01-27,70962,8977,"[\""Charger\""]",4529.78,{},216734,0,"""North America""" +2024-08-14,70963,484,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1604.18,{},5018,1,"""Asia""" +2024-06-09,70964,6478,"[\""Keyboard\""]",3206.04,"{\""seasonal\"": \""19%\""}",261336,0,"""Africa""" +2023-10-19,70965,1755,"[\""Phone\"", \""Charger\""]",3426.49,{},147348,0,"""South America""" +2023-12-20,70966,5376,"[\""Wireless Mouse\"", \""Laptop\""]",1515.39,"{\""seasonal\"": \""21%\""}",293816,0,"""Europe""" +2023-10-28,70967,5990,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",699.73,{},258734,0,"""Asia""" +2023-03-21,70968,7638,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",557.06,"{\""loyalty\"": \""11%\""}",118372,1,"""South America""" +2023-03-02,70969,2137,"[\""Headphones\""]",3210.84,{},22195,1,"""Africa""" +2024-12-28,70970,1531,"[\""Laptop\"", \""Keyboard\""]",460.56,"{\"": \""19%\""}",101533,0,"""Europe""" +2024-12-12,70971,2955,"[\""Phone\""]",666.77,{},119123,1,"""South America""" +2023-04-24,70972,5727,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4907.07,"{\"": \""23%\""}",164046,1,"""Asia""" +2024-09-16,70973,4354,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4485.62,{},51204,1,"""Asia""" +2024-10-05,70974,424,"[\""Wireless Mouse\""]",2983.57,{},255548,1,"""North America""" +2024-09-06,70975,5898,"[\""Tablet\""]",975.76,"{\"": \""24%\""}",260612,1,"""North America""" +2023-03-05,70976,9217,"[\""Headphones\""]",4298.14,{},152774,0,"""Asia""" +2023-06-25,70977,3253,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",377.56,"{\""loyalty\"": \""15%\""}",130039,1,"""Europe""" +2024-01-09,70978,9577,"[\""Headphones\""]",4413.87,"{\""promo\"": \""14%\""}",71761,1,"""North America""" +2024-01-14,70979,1235,"[\""Monitor\""]",4038.12,{},143711,1,"""North America""" +2024-09-14,70980,7256,"[\""Keyboard\""]",1115.08,{},126765,1,"""Europe""" +2024-09-27,70981,7864,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4524.3,"{\""seasonal\"": \""12%\""}",237376,1,"""Asia""" +2023-07-21,70982,2720,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",862.45,"{\""loyalty\"": \""22%\""}",166108,1,"""Asia""" +2023-06-13,70983,2710,"[\""Wireless Mouse\"", \""Phone\""]",3641.71,{},250336,0,"""Asia""" +2023-10-06,70984,1510,"[\""Phone\""]",255.07,{},40922,0,"""Africa""" +2023-08-29,70985,5999,"[\""Monitor\""]",816.61,{},225851,1,"""North America""" +2024-07-13,70986,5487,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2823.53,"{\""promo\"": \""18%\""}",274175,0,"""South America""" +2023-07-02,70987,6788,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2314.03,{},173393,1,"""Africa""" +2024-02-24,70988,1696,"[\""Wireless Mouse\""]",1801.83,{},283161,1,"""Europe""" +2023-04-27,70989,2528,"[\""Tablet\"", \""Laptop\""]",1435.97,"{\"": \""29%\""}",117380,0,"""Africa""" +2023-08-24,70990,9257,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3764.13,{},231666,1,"""South America""" +2023-06-09,70991,7679,"[\""Wireless Mouse\""]",4413.57,{},237727,0,"""South America""" +2023-07-05,70992,3879,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3790.17,{},134118,1,"""South America""" +2023-08-28,70993,2029,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4429.69,"{\""loyalty\"": \""30%\""}",84453,1,"""South America""" +2023-12-08,70994,7397,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4216.31,{},282085,0,"""Africa""" +2023-12-16,70995,5034,"[\""Headphones\""]",4648.62,"{\""loyalty\"": \""8%\""}",242173,0,"""South America""" +2024-03-25,70996,761,"[\""Phone\""]",4598.82,"{\""promo\"": \""16%\""}",57817,1,"""Africa""" +2023-01-09,70997,163,"[\""Monitor\"", \""Headphones\""]",1701.88,{},272204,0,"""Europe""" +2024-10-11,70998,4434,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4988.87,{},275950,1,"""Europe""" +2024-06-02,70999,2996,"[\""Headphones\"", \""Tablet\""]",2988.5,"{\"": \""26%\""}",67984,1,"""Africa""" +2024-02-18,71000,8697,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2675.78,"{\""loyalty\"": \""24%\""}",225703,0,"""South America""" +2023-10-21,71001,6728,"[\""Wireless Mouse\""]",1467.38,"{\"": \""13%\""}",137748,0,"""South America""" +2024-02-02,71002,9686,"[\""Laptop\""]",4142.42,"{\"": \""27%\""}",93988,1,"""Europe""" +2024-05-13,71003,7674,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",156.18,"{\""loyalty\"": \""26%\""}",107174,0,"""North America""" +2023-07-24,71004,3380,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4031.6,"{\""promo\"": \""5%\""}",138083,1,"""North America""" +2024-08-12,71005,7999,"[\""Charger\"", \""Wireless Mouse\""]",1941.43,"{\""seasonal\"": \""24%\""}",296115,1,"""Europe""" +2024-08-11,71006,9607,"[\""Laptop\""]",4180.74,{},174075,0,"""Asia""" +2023-08-03,71007,597,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",780.48,{},124643,1,"""South America""" +2024-12-13,71008,1631,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1645.14,{},240435,1,"""Europe""" +2024-11-11,71009,8207,"[\""Monitor\"", \""Phone\""]",843.03,{},287304,0,"""North America""" +2024-04-15,71010,9681,"[\""Laptop\""]",1532.86,{},223716,0,"""South America""" +2024-10-23,71011,2078,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2198.43,"{\"": \""13%\""}",46177,1,"""Asia""" +2024-07-29,71012,585,"[\""Laptop\""]",1871.75,"{\""loyalty\"": \""27%\""}",108663,0,"""South America""" +2024-05-17,71013,4666,"[\""Phone\"", \""Laptop\""]",4747.24,{},165032,0,"""Asia""" +2024-08-12,71014,6700,"[\""Laptop\""]",1939.22,"{\""seasonal\"": \""23%\""}",88039,0,"""South America""" +2023-06-02,71015,6046,"[\""Wireless Mouse\""]",3064.14,{},271818,0,"""North America""" +2023-06-01,71016,5526,"[\""Headphones\""]",455.23,"{\""loyalty\"": \""12%\""}",34983,0,"""South America""" +2023-07-25,71017,3397,"[\""Keyboard\""]",1810.53,{},113238,1,"""Asia""" +2024-10-13,71018,6065,"[\""Tablet\""]",667.44,"{\""loyalty\"": \""22%\""}",1551,0,"""South America""" +2024-05-30,71019,1528,"[\""Tablet\"", \""Charger\""]",1531.0,{},117529,1,"""North America""" +2023-06-12,71020,5258,"[\""Keyboard\""]",1760.84,"{\""promo\"": \""16%\""}",264818,0,"""North America""" +2024-05-05,71021,909,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4276.79,{},244004,0,"""Africa""" +2023-12-03,71022,9948,"[\""Wireless Mouse\"", \""Laptop\""]",4645.66,{},26041,0,"""Africa""" +2023-10-14,71023,2292,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2819.78,"{\""loyalty\"": \""19%\""}",148517,1,"""Asia""" +2024-01-15,71024,7951,"[\""Wireless Mouse\""]",1177.56,{},34380,0,"""Africa""" +2023-09-11,71025,4205,"[\""Tablet\""]",684.28,{},156192,1,"""Asia""" +2024-08-22,71026,3697,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3281.51,{},106636,1,"""North America""" +2024-06-21,71027,694,"[\""Headphones\""]",3893.08,{},117642,1,"""North America""" +2023-11-24,71028,4315,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4678.76,"{\""promo\"": \""9%\""}",22554,0,"""Europe""" +2023-04-11,71029,57,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1885.11,{},265623,0,"""Europe""" +2024-01-20,71030,1396,"[\""Monitor\""]",1891.8,{},50327,0,"""Africa""" +2023-01-20,71031,1888,"[\""Keyboard\""]",3445.6,{},50228,0,"""Asia""" +2024-12-29,71032,4362,"[\""Phone\""]",1242.9,"{\""loyalty\"": \""18%\""}",210053,1,"""Europe""" +2023-07-27,71033,4769,"[\""Wireless Mouse\""]",4504.02,{},62988,0,"""Europe""" +2023-03-03,71034,5282,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1702.42,{},13512,0,"""North America""" +2023-10-26,71035,7916,"[\""Monitor\""]",4570.18,{},255148,0,"""Asia""" +2023-08-14,71036,9502,"[\""Keyboard\"", \""Phone\""]",4077.12,"{\""seasonal\"": \""23%\""}",297577,0,"""Africa""" +2024-04-11,71037,9700,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4110.86,"{\""promo\"": \""12%\""}",1832,0,"""Europe""" +2024-05-17,71038,2338,"[\""Wireless Mouse\""]",2145.53,{},287087,1,"""Asia""" +2024-06-05,71039,4303,"[\""Phone\"", \""Charger\""]",4400.87,{},65213,0,"""Africa""" +2024-05-17,71040,9360,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3995.7,{},39382,0,"""Asia""" +2023-11-28,71041,7620,"[\""Charger\"", \""Monitor\""]",3394.41,{},252536,1,"""North America""" +2023-04-22,71042,7776,"[\""Monitor\"", \""Keyboard\""]",772.54,"{\""loyalty\"": \""26%\""}",124687,0,"""South America""" +2024-10-13,71043,2458,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",412.26,"{\""loyalty\"": \""27%\""}",206528,1,"""North America""" +2023-07-12,71044,7750,"[\""Monitor\""]",2730.08,{},127483,0,"""Asia""" +2024-09-08,71045,710,"[\""Headphones\"", \""Laptop\""]",1411.03,"{\""seasonal\"": \""26%\""}",270687,0,"""Asia""" +2024-02-12,71046,283,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4473.26,"{\""seasonal\"": \""21%\""}",77748,1,"""North America""" +2023-02-15,71047,7935,"[\""Tablet\"", \""Wireless Mouse\""]",1362.6,"{\"": \""25%\""}",51573,0,"""Europe""" +2023-02-13,71048,8988,"[\""Tablet\"", \""Charger\""]",1202.86,{},242582,0,"""South America""" +2024-01-15,71049,5700,"[\""Charger\""]",2142.2,"{\""promo\"": \""11%\""}",40142,1,"""Africa""" +2024-08-23,71050,1550,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3848.64,{},173882,0,"""South America""" +2024-09-06,71051,928,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3573.75,"{\""loyalty\"": \""12%\""}",192655,1,"""Asia""" +2024-02-07,71052,3354,"[\""Headphones\"", \""Monitor\""]",3233.87,{},120079,0,"""Europe""" +2024-05-18,71053,6030,"[\""Wireless Mouse\"", \""Phone\""]",497.0,{},203253,0,"""Europe""" +2023-11-02,71054,5320,"[\""Phone\"", \""Monitor\""]",1644.63,{},4269,0,"""Europe""" +2023-05-12,71055,2800,"[\""Phone\""]",2980.74,{},147509,0,"""Africa""" +2024-12-27,71056,3871,"[\""Wireless Mouse\"", \""Monitor\""]",1391.65,"{\""loyalty\"": \""19%\""}",238610,1,"""North America""" +2024-04-28,71057,681,"[\""Tablet\""]",1619.28,{},255795,0,"""Africa""" +2023-02-04,71058,3437,"[\""Headphones\"", \""Charger\""]",4051.52,"{\""seasonal\"": \""8%\""}",272906,0,"""South America""" +2023-10-16,71059,4398,"[\""Keyboard\""]",4905.99,{},299044,0,"""Africa""" +2023-03-17,71060,6617,"[\""Keyboard\""]",116.9,"{\"": \""25%\""}",233572,1,"""South America""" +2024-06-27,71061,7018,"[\""Keyboard\"", \""Wireless Mouse\""]",4815.24,{},35780,0,"""North America""" +2023-03-22,71062,16,"[\""Charger\""]",902.37,"{\""loyalty\"": \""10%\""}",18463,1,"""Europe""" +2023-10-06,71063,5674,"[\""Wireless Mouse\"", \""Tablet\""]",1012.53,{},69603,0,"""Africa""" +2023-06-22,71064,3218,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4774.05,"{\""loyalty\"": \""27%\""}",231304,1,"""Africa""" +2024-04-01,71065,7137,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",526.71,"{\""promo\"": \""28%\""}",67588,1,"""Asia""" +2024-08-31,71066,2012,"[\""Wireless Mouse\"", \""Monitor\""]",1852.86,"{\""seasonal\"": \""9%\""}",187701,1,"""Europe""" +2023-02-14,71067,7021,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",498.85,{},64947,1,"""Africa""" +2024-02-17,71068,4481,"[\""Wireless Mouse\""]",391.56,"{\""loyalty\"": \""26%\""}",128399,1,"""Africa""" +2024-04-07,71069,9629,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2142.12,"{\""loyalty\"": \""14%\""}",249438,0,"""Asia""" +2024-03-11,71070,9568,"[\""Tablet\""]",4988.15,{},75762,0,"""South America""" +2023-02-24,71071,5376,"[\""Charger\"", \""Laptop\""]",674.37,"{\""loyalty\"": \""18%\""}",295196,0,"""South America""" +2023-04-17,71072,7130,"[\""Monitor\"", \""Wireless Mouse\""]",2500.5,"{\""seasonal\"": \""11%\""}",79932,1,"""South America""" +2024-05-04,71073,354,"[\""Monitor\""]",660.41,{},24031,0,"""South America""" +2024-05-13,71074,8667,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1469.85,"{\""seasonal\"": \""13%\""}",173701,0,"""Europe""" +2023-02-24,71075,8519,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",849.66,{},249950,0,"""North America""" +2024-07-29,71076,6481,"[\""Phone\"", \""Keyboard\""]",2416.47,{},89480,0,"""Europe""" +2024-03-06,71077,4596,"[\""Wireless Mouse\"", \""Laptop\""]",945.64,{},24673,1,"""North America""" +2023-05-17,71078,9721,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4569.3,{},229806,0,"""Asia""" +2023-11-24,71079,3302,"[\""Tablet\"", \""Monitor\""]",3082.76,"{\""promo\"": \""11%\""}",259461,0,"""Europe""" +2024-12-29,71080,335,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3483.71,{},52622,1,"""North America""" +2023-07-16,71081,339,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3345.06,"{\""loyalty\"": \""24%\""}",114054,0,"""Asia""" +2023-03-05,71082,5088,"[\""Wireless Mouse\""]",2816.89,"{\"": \""22%\""}",266488,0,"""Asia""" +2023-03-12,71083,3783,"[\""Charger\"", \""Phone\""]",2026.75,"{\""seasonal\"": \""7%\""}",285828,1,"""Europe""" +2024-12-23,71084,9722,"[\""Headphones\""]",3188.66,{},144382,0,"""Europe""" +2024-06-22,71085,3192,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4685.3,{},105110,1,"""Asia""" +2024-12-17,71086,8388,"[\""Wireless Mouse\"", \""Charger\""]",4464.06,{},102517,1,"""North America""" +2023-11-27,71087,4252,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2917.2,"{\""seasonal\"": \""14%\""}",127986,0,"""North America""" +2023-04-12,71088,8976,"[\""Phone\"", \""Tablet\""]",3808.44,{},210802,0,"""North America""" +2023-04-14,71089,6626,"[\""Phone\"", \""Tablet\""]",1108.63,"{\"": \""12%\""}",2266,1,"""South America""" +2023-11-03,71090,9959,"[\""Laptop\"", \""Tablet\""]",794.05,{},222445,0,"""South America""" +2023-03-30,71091,8704,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",484.76,"{\"": \""6%\""}",198603,1,"""Europe""" +2023-05-14,71092,4700,"[\""Laptop\""]",2857.08,"{\""seasonal\"": \""18%\""}",212759,0,"""Asia""" +2023-09-29,71093,8115,"[\""Tablet\"", \""Keyboard\""]",4151.3,"{\""loyalty\"": \""10%\""}",6447,1,"""North America""" +2024-05-04,71094,7871,"[\""Charger\"", \""Wireless Mouse\""]",4426.27,{},122386,1,"""South America""" +2024-02-29,71095,1825,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4999.18,{},240404,0,"""Europe""" +2024-09-19,71096,4048,"[\""Wireless Mouse\""]",4470.63,"{\""seasonal\"": \""9%\""}",158691,0,"""Africa""" +2023-11-10,71097,6008,"[\""Charger\"", \""Phone\"", \""Laptop\""]",575.59,"{\""loyalty\"": \""8%\""}",298198,0,"""South America""" +2024-09-21,71098,3612,"[\""Wireless Mouse\""]",4940.53,{},207224,0,"""Europe""" +2023-05-17,71099,8735,"[\""Laptop\""]",2039.47,{},251008,0,"""North America""" +2023-09-19,71100,5557,"[\""Wireless Mouse\"", \""Charger\""]",4395.98,{},134115,1,"""South America""" +2024-07-02,71101,2245,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4624.04,{},192380,1,"""North America""" +2024-11-18,71102,4255,"[\""Tablet\""]",3389.83,"{\""seasonal\"": \""20%\""}",76733,0,"""Africa""" +2023-05-21,71103,6522,"[\""Tablet\"", \""Wireless Mouse\""]",2525.22,"{\"": \""19%\""}",104101,0,"""Asia""" +2023-04-04,71104,3894,"[\""Wireless Mouse\"", \""Laptop\""]",4304.84,"{\"": \""18%\""}",19664,0,"""Europe""" +2024-06-22,71105,7999,"[\""Phone\""]",3896.0,{},131817,0,"""Africa""" +2024-08-03,71106,6809,"[\""Monitor\""]",4356.79,{},248611,0,"""Africa""" +2023-10-30,71107,7049,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1826.11,"{\""seasonal\"": \""7%\""}",281972,1,"""South America""" +2024-07-29,71108,5021,"[\""Phone\""]",4012.7,{},28590,0,"""North America""" +2023-10-28,71109,7554,"[\""Wireless Mouse\""]",3340.31,"{\""seasonal\"": \""20%\""}",8156,0,"""Asia""" +2023-07-15,71110,3261,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",70.85,"{\""loyalty\"": \""13%\""}",173321,0,"""Africa""" +2024-11-19,71111,8718,"[\""Tablet\""]",1681.53,"{\"": \""23%\""}",145702,1,"""Europe""" +2024-08-06,71112,6835,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",701.97,{},72349,0,"""Europe""" +2024-06-06,71113,5028,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3316.83,{},72577,1,"""North America""" +2023-11-02,71114,5448,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2760.69,"{\""seasonal\"": \""19%\""}",256755,1,"""South America""" +2024-02-03,71115,6303,"[\""Headphones\"", \""Charger\""]",3257.53,{},205602,0,"""Africa""" +2023-07-17,71116,478,"[\""Keyboard\"", \""Monitor\""]",446.1,"{\"": \""14%\""}",96066,1,"""Asia""" +2024-02-24,71117,3753,"[\""Keyboard\""]",3398.2,{},251048,0,"""Asia""" +2023-01-16,71118,1339,"[\""Wireless Mouse\"", \""Laptop\""]",3461.29,"{\""loyalty\"": \""21%\""}",152847,1,"""Asia""" +2024-11-09,71119,4470,"[\""Headphones\""]",4746.54,"{\"": \""12%\""}",168006,0,"""Europe""" +2023-10-10,71120,5827,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3397.8,"{\""promo\"": \""21%\""}",79082,1,"""South America""" +2023-07-22,71121,8298,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3499.39,{},192714,1,"""South America""" +2024-08-29,71122,5672,"[\""Tablet\""]",4227.37,"{\""promo\"": \""16%\""}",293859,1,"""Asia""" +2023-10-27,71123,8689,"[\""Tablet\"", \""Keyboard\""]",4489.45,{},277221,0,"""Europe""" +2023-10-29,71124,6067,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1342.05,"{\""seasonal\"": \""29%\""}",275365,1,"""North America""" +2023-01-13,71125,1876,"[\""Laptop\"", \""Charger\""]",2216.65,{},108996,1,"""Asia""" +2024-09-23,71126,3192,"[\""Keyboard\"", \""Phone\""]",3435.18,{},216097,1,"""South America""" +2024-12-29,71127,3861,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4774.44,{},287615,0,"""Africa""" +2023-06-27,71128,2436,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",915.47,"{\""loyalty\"": \""9%\""}",208977,0,"""Africa""" +2024-05-29,71129,1721,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",249.89,{},12645,0,"""Europe""" +2024-07-24,71130,3655,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",869.01,{},54735,0,"""Asia""" +2023-03-24,71131,1054,"[\""Headphones\""]",3435.7,{},166168,1,"""Asia""" +2023-11-27,71132,9200,"[\""Headphones\"", \""Wireless Mouse\""]",4216.17,{},48047,1,"""Africa""" +2023-12-25,71133,7286,"[\""Monitor\"", \""Wireless Mouse\""]",834.16,{},287817,0,"""Africa""" +2024-09-14,71134,6340,"[\""Wireless Mouse\""]",4039.75,{},256826,1,"""South America""" +2024-05-01,71135,9940,"[\""Tablet\"", \""Charger\""]",3588.45,{},89121,0,"""Europe""" +2024-02-20,71136,7834,"[\""Monitor\""]",4477.05,"{\"": \""18%\""}",36766,1,"""Asia""" +2024-06-30,71137,4077,"[\""Monitor\"", \""Tablet\""]",2830.0,"{\""loyalty\"": \""29%\""}",55557,1,"""South America""" +2023-02-12,71138,9961,"[\""Tablet\"", \""Monitor\""]",2038.69,{},292255,1,"""Europe""" +2024-03-22,71139,7334,"[\""Phone\""]",1691.17,{},102753,1,"""South America""" +2024-10-19,71140,8851,"[\""Tablet\"", \""Wireless Mouse\""]",3863.23,{},121587,1,"""South America""" +2024-06-10,71141,1849,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2920.94,{},232527,0,"""Europe""" +2023-12-09,71142,7164,"[\""Monitor\""]",3035.11,"{\""promo\"": \""15%\""}",2550,0,"""Africa""" +2023-01-11,71143,3433,"[\""Headphones\"", \""Phone\""]",3619.56,{},183029,0,"""Europe""" +2023-08-18,71144,4123,"[\""Wireless Mouse\""]",1975.1,"{\"": \""26%\""}",239275,1,"""North America""" +2024-04-07,71145,4352,"[\""Charger\"", \""Phone\""]",847.88,{},255894,0,"""Asia""" +2024-03-25,71146,5672,"[\""Keyboard\"", \""Laptop\""]",3770.32,"{\"": \""10%\""}",176696,1,"""North America""" +2024-06-04,71147,7012,"[\""Monitor\"", \""Wireless Mouse\""]",4475.66,{},92451,1,"""Africa""" +2023-08-26,71148,8461,"[\""Wireless Mouse\""]",4881.36,"{\"": \""22%\""}",256963,1,"""South America""" +2024-12-23,71149,7216,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3212.06,{},64469,1,"""North America""" +2023-02-20,71150,4951,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3177.1,{},95013,1,"""Europe""" +2024-04-02,71151,8684,"[\""Wireless Mouse\""]",837.88,"{\""seasonal\"": \""13%\""}",202584,1,"""Africa""" +2024-09-10,71152,6988,"[\""Monitor\""]",1369.43,"{\""loyalty\"": \""14%\""}",170963,1,"""North America""" +2023-02-01,71153,1997,"[\""Keyboard\""]",2603.17,"{\""promo\"": \""13%\""}",221660,1,"""North America""" +2023-06-26,71154,2748,"[\""Wireless Mouse\""]",396.55,"{\""seasonal\"": \""16%\""}",190632,0,"""South America""" +2024-08-03,71155,8335,"[\""Laptop\"", \""Keyboard\""]",1510.56,{},159043,1,"""South America""" +2024-06-26,71156,1095,"[\""Phone\""]",73.51,{},128833,0,"""Africa""" +2024-10-11,71157,2540,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",650.34,{},266478,0,"""South America""" +2023-07-12,71158,3581,"[\""Tablet\"", \""Keyboard\""]",1020.25,{},73737,0,"""Africa""" +2024-03-10,71159,9465,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2223.07,{},209870,0,"""North America""" +2023-04-17,71160,423,"[\""Wireless Mouse\""]",4757.93,{},257776,0,"""North America""" +2023-05-15,71161,6294,"[\""Phone\""]",4459.62,{},275210,1,"""Europe""" +2023-09-07,71162,5243,"[\""Headphones\""]",4816.06,"{\""loyalty\"": \""17%\""}",287720,1,"""Africa""" +2024-11-24,71163,6379,"[\""Monitor\"", \""Phone\""]",3467.16,{},19422,0,"""Asia""" +2024-12-16,71164,2152,"[\""Laptop\""]",578.44,{},206269,0,"""North America""" +2023-10-22,71165,1213,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3773.05,"{\""promo\"": \""9%\""}",245069,0,"""North America""" +2024-01-05,71166,6113,"[\""Headphones\""]",1858.74,{},214480,0,"""Africa""" +2023-05-02,71167,1956,"[\""Keyboard\""]",3480.88,{},94118,1,"""Europe""" +2024-07-21,71168,6814,"[\""Charger\"", \""Wireless Mouse\""]",1023.13,"{\""promo\"": \""6%\""}",169078,0,"""North America""" +2023-10-11,71169,6173,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4584.44,{},79138,0,"""Africa""" +2023-04-09,71170,5954,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3056.7,"{\""promo\"": \""30%\""}",257505,0,"""Asia""" +2023-09-21,71171,4200,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4580.91,"{\""seasonal\"": \""29%\""}",276142,1,"""Africa""" +2023-12-22,71172,1333,"[\""Laptop\"", \""Wireless Mouse\""]",4552.36,{},13901,1,"""Asia""" +2024-11-29,71173,4159,"[\""Headphones\""]",2358.53,{},98211,0,"""Africa""" +2024-12-15,71174,796,"[\""Monitor\""]",889.48,{},205101,1,"""Africa""" +2024-05-10,71175,3313,"[\""Headphones\"", \""Laptop\""]",4741.16,{},6362,1,"""Asia""" +2024-06-03,71176,3555,"[\""Keyboard\"", \""Charger\""]",2540.6,"{\"": \""28%\""}",87433,1,"""Europe""" +2024-07-13,71177,5232,"[\""Monitor\"", \""Phone\""]",2110.16,{},16667,1,"""North America""" +2023-10-13,71178,2111,"[\""Laptop\"", \""Wireless Mouse\""]",3245.26,"{\"": \""29%\""}",72077,0,"""Africa""" +2023-06-19,71179,4183,"[\""Headphones\""]",4447.9,"{\""promo\"": \""29%\""}",275041,0,"""Asia""" +2023-03-31,71180,8798,"[\""Keyboard\"", \""Charger\""]",1287.37,{},26730,0,"""North America""" +2024-09-02,71181,3155,"[\""Keyboard\"", \""Wireless Mouse\""]",107.58,"{\""promo\"": \""19%\""}",285338,1,"""South America""" +2023-01-12,71182,1551,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1662.69,"{\"": \""8%\""}",221004,1,"""Asia""" +2024-06-22,71183,1885,"[\""Wireless Mouse\"", \""Headphones\""]",1069.86,{},159877,1,"""Africa""" +2024-11-09,71184,5462,"[\""Charger\"", \""Monitor\""]",2205.44,"{\""loyalty\"": \""24%\""}",192176,0,"""Africa""" +2024-12-01,71185,7297,"[\""Wireless Mouse\""]",1871.68,"{\""promo\"": \""7%\""}",59868,0,"""North America""" +2023-09-27,71186,5028,"[\""Headphones\"", \""Tablet\""]",3494.65,{},191618,1,"""Europe""" +2024-01-07,71187,5398,"[\""Wireless Mouse\""]",2766.25,"{\"": \""22%\""}",112937,0,"""Africa""" +2023-06-28,71188,484,"[\""Tablet\""]",4180.52,{},160020,1,"""Africa""" +2023-06-15,71189,5264,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3649.36,{},171572,0,"""North America""" +2024-09-11,71190,623,"[\""Laptop\""]",2346.82,"{\""loyalty\"": \""21%\""}",140060,1,"""Europe""" +2024-04-14,71191,4825,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",308.43,{},59130,1,"""Asia""" +2023-11-29,71192,5886,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",279.11,{},33530,0,"""Africa""" +2024-02-09,71193,8824,"[\""Keyboard\""]",3789.25,"{\""loyalty\"": \""20%\""}",204686,0,"""South America""" +2023-04-05,71194,7773,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4966.27,{},89712,0,"""Africa""" +2024-02-13,71195,1438,"[\""Laptop\"", \""Wireless Mouse\""]",3754.85,{},180552,1,"""Africa""" +2024-10-08,71196,8042,"[\""Monitor\"", \""Wireless Mouse\""]",4782.53,{},90308,0,"""Africa""" +2023-06-18,71197,9926,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4520.76,"{\""loyalty\"": \""24%\""}",176759,0,"""Asia""" +2023-01-06,71198,4601,"[\""Headphones\"", \""Monitor\""]",1185.65,{},226953,1,"""Asia""" +2023-06-24,71199,4729,"[\""Charger\"", \""Laptop\""]",223.99,{},112551,0,"""North America""" +2024-05-16,71200,233,"[\""Tablet\"", \""Phone\""]",1764.9,"{\""seasonal\"": \""5%\""}",24909,0,"""Africa""" +2023-09-28,71201,7476,"[\""Headphones\""]",4743.79,"{\"": \""14%\""}",206247,1,"""Africa""" +2023-07-10,71202,91,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1647.63,"{\"": \""8%\""}",259349,1,"""North America""" +2024-10-08,71203,8214,"[\""Laptop\""]",3934.61,"{\""loyalty\"": \""28%\""}",34002,1,"""Asia""" +2024-03-16,71204,4976,"[\""Phone\"", \""Tablet\""]",3460.07,{},215046,1,"""Europe""" +2024-05-07,71205,80,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",659.58,{},34614,0,"""Asia""" +2023-07-25,71206,6000,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4230.2,{},106315,1,"""South America""" +2024-10-28,71207,2329,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1024.95,"{\""loyalty\"": \""30%\""}",174408,1,"""Europe""" +2024-10-31,71208,1076,"[\""Laptop\"", \""Charger\""]",2207.6,"{\""seasonal\"": \""8%\""}",60740,1,"""North America""" +2023-05-04,71209,2617,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1480.33,{},89240,1,"""North America""" +2023-03-09,71210,4556,"[\""Laptop\"", \""Monitor\""]",609.54,{},129572,0,"""South America""" +2024-12-24,71211,5046,"[\""Charger\"", \""Phone\""]",4984.3,"{\"": \""29%\""}",240309,1,"""South America""" +2024-05-17,71212,6143,"[\""Phone\"", \""Laptop\""]",4235.29,"{\""seasonal\"": \""7%\""}",213574,0,"""North America""" +2023-06-10,71213,2667,"[\""Keyboard\"", \""Laptop\""]",2356.2,{},13946,1,"""Europe""" +2024-10-28,71214,6896,"[\""Charger\"", \""Tablet\""]",2222.28,{},28976,0,"""Asia""" +2024-05-25,71215,2127,"[\""Monitor\""]",751.9,{},129536,1,"""Asia""" +2023-06-07,71216,4621,"[\""Keyboard\"", \""Charger\""]",174.24,{},187716,0,"""Europe""" +2023-04-21,71217,1556,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1912.38,"{\"": \""22%\""}",73326,0,"""South America""" +2024-08-26,71218,9121,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2157.81,{},105969,1,"""South America""" +2023-04-08,71219,926,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1457.72,{},68074,1,"""Asia""" +2024-04-04,71220,2857,"[\""Charger\""]",4928.71,{},277378,1,"""Europe""" +2024-04-16,71221,2873,"[\""Keyboard\"", \""Phone\""]",1146.43,"{\""seasonal\"": \""28%\""}",53637,1,"""Africa""" +2023-12-11,71222,2267,"[\""Keyboard\"", \""Charger\""]",3496.34,"{\"": \""25%\""}",81176,0,"""Europe""" +2023-07-05,71223,5084,"[\""Monitor\"", \""Charger\""]",2522.92,"{\""promo\"": \""28%\""}",68709,0,"""Africa""" +2023-07-19,71224,6412,"[\""Phone\"", \""Headphones\""]",2395.17,"{\""loyalty\"": \""30%\""}",4176,1,"""Africa""" +2024-07-21,71225,6256,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1254.53,"{\""seasonal\"": \""29%\""}",132066,1,"""Europe""" +2023-01-22,71226,5535,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1640.48,{},153717,1,"""North America""" +2023-03-04,71227,1537,"[\""Keyboard\""]",482.64,"{\""seasonal\"": \""26%\""}",157947,0,"""North America""" +2024-04-06,71228,106,"[\""Headphones\""]",525.97,"{\""seasonal\"": \""27%\""}",137679,0,"""Europe""" +2024-07-23,71229,909,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4058.14,"{\""seasonal\"": \""13%\""}",44729,0,"""Europe""" +2023-02-13,71230,5395,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3772.92,"{\""seasonal\"": \""29%\""}",69173,0,"""North America""" +2024-03-06,71231,9939,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3060.26,"{\""seasonal\"": \""18%\""}",249227,1,"""Africa""" +2024-04-06,71232,8666,"[\""Tablet\""]",3699.36,"{\"": \""16%\""}",265435,1,"""South America""" +2024-01-20,71233,6004,"[\""Monitor\"", \""Phone\""]",1353.23,"{\""loyalty\"": \""11%\""}",298210,0,"""South America""" +2023-03-18,71234,2734,"[\""Charger\""]",4890.48,"{\""seasonal\"": \""7%\""}",176000,1,"""North America""" +2023-07-16,71235,8116,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2210.17,{},210287,0,"""Europe""" +2023-06-15,71236,4646,"[\""Laptop\"", \""Tablet\""]",3869.24,{},79031,0,"""Europe""" +2023-02-23,71237,4629,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4472.58,{},55614,1,"""Europe""" +2023-04-30,71238,5614,"[\""Keyboard\"", \""Phone\""]",748.07,"{\"": \""30%\""}",31542,1,"""North America""" +2023-07-02,71239,5568,"[\""Laptop\""]",1581.77,{},162904,0,"""Africa""" +2023-05-21,71240,4914,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1852.26,{},161923,1,"""Asia""" +2024-04-12,71241,5717,"[\""Keyboard\"", \""Tablet\""]",3931.13,{},254904,1,"""Africa""" +2023-03-28,71242,8432,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4311.06,"{\""seasonal\"": \""10%\""}",194728,0,"""Europe""" +2024-04-07,71243,4923,"[\""Charger\""]",1356.55,"{\""loyalty\"": \""12%\""}",119402,0,"""South America""" +2023-02-11,71244,8777,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4143.91,"{\""loyalty\"": \""24%\""}",99159,0,"""North America""" +2024-11-07,71245,2740,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",804.41,{},188630,0,"""North America""" +2023-10-08,71246,30,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3854.44,"{\""seasonal\"": \""18%\""}",144485,0,"""North America""" +2024-10-10,71247,5635,"[\""Monitor\""]",2755.18,{},216416,0,"""North America""" +2024-07-23,71248,1507,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1266.81,{},212376,1,"""Europe""" +2023-08-20,71249,685,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4405.77,"{\""promo\"": \""27%\""}",41547,0,"""North America""" +2024-03-14,71250,7485,"[\""Charger\""]",1746.33,"{\""seasonal\"": \""17%\""}",81962,1,"""South America""" +2023-02-24,71251,8427,"[\""Laptop\""]",3558.6,"{\""loyalty\"": \""30%\""}",298016,1,"""South America""" +2023-08-24,71252,2559,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2477.37,"{\""promo\"": \""23%\""}",181164,1,"""South America""" +2024-02-08,71253,4582,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3411.54,{},63823,0,"""Africa""" +2023-12-06,71254,310,"[\""Wireless Mouse\""]",1197.82,"{\""promo\"": \""13%\""}",277615,0,"""North America""" +2023-10-06,71255,1328,"[\""Headphones\""]",3260.93,{},218717,1,"""Europe""" +2023-09-20,71256,4375,"[\""Charger\""]",452.38,"{\"": \""9%\""}",264204,1,"""North America""" +2023-02-09,71257,1518,"[\""Monitor\""]",244.24,"{\""loyalty\"": \""28%\""}",232545,1,"""South America""" +2024-07-12,71258,4654,"[\""Tablet\"", \""Wireless Mouse\""]",185.18,{},262306,1,"""North America""" +2023-02-13,71259,7420,"[\""Headphones\"", \""Wireless Mouse\""]",168.8,"{\""loyalty\"": \""23%\""}",60521,1,"""South America""" +2023-03-17,71260,9511,"[\""Wireless Mouse\""]",1888.78,"{\""loyalty\"": \""16%\""}",164489,1,"""Africa""" +2023-02-18,71261,7600,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",546.98,"{\""seasonal\"": \""28%\""}",289423,0,"""Asia""" +2023-01-13,71262,8214,"[\""Headphones\""]",3601.56,"{\"": \""17%\""}",240231,0,"""Europe""" +2023-02-08,71263,594,"[\""Keyboard\""]",2796.95,"{\""loyalty\"": \""6%\""}",102805,1,"""Africa""" +2024-11-01,71264,1250,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3920.03,{},156574,1,"""North America""" +2024-05-30,71265,5782,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",841.91,"{\""promo\"": \""7%\""}",291484,0,"""Europe""" +2024-01-14,71266,4492,"[\""Charger\""]",2186.25,"{\""promo\"": \""11%\""}",72728,1,"""Europe""" +2024-08-22,71267,5435,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3807.65,{},200317,0,"""Asia""" +2023-01-13,71268,6562,"[\""Wireless Mouse\""]",4891.1,{},241365,0,"""South America""" +2024-10-08,71269,6860,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",251.59,{},13888,1,"""Europe""" +2023-12-29,71270,5746,"[\""Tablet\""]",1386.74,{},165483,1,"""Europe""" +2024-10-05,71271,7856,"[\""Tablet\"", \""Keyboard\""]",1673.13,"{\""promo\"": \""21%\""}",99248,1,"""Europe""" +2024-01-14,71272,7933,"[\""Keyboard\""]",1735.6,{},166473,0,"""South America""" +2023-10-15,71273,9901,"[\""Monitor\"", \""Keyboard\""]",3664.38,{},57308,1,"""Asia""" +2023-06-12,71274,356,"[\""Phone\""]",1165.55,{},235694,0,"""Europe""" +2024-09-29,71275,1884,"[\""Wireless Mouse\""]",3233.62,{},284797,0,"""South America""" +2023-01-02,71276,8073,"[\""Laptop\"", \""Tablet\""]",3961.73,{},108928,1,"""Africa""" +2024-10-12,71277,5811,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2899.03,"{\""promo\"": \""22%\""}",266298,1,"""Europe""" +2023-12-21,71278,4621,"[\""Charger\""]",1750.68,"{\"": \""27%\""}",61122,0,"""South America""" +2023-11-11,71279,8578,"[\""Headphones\""]",3204.28,{},259294,0,"""Europe""" +2024-08-18,71280,9439,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",495.37,"{\"": \""17%\""}",123225,0,"""North America""" +2024-03-27,71281,3493,"[\""Tablet\"", \""Charger\""]",3773.26,{},127057,1,"""Europe""" +2023-12-28,71282,2503,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",677.25,{},50541,1,"""South America""" +2023-06-16,71283,4342,"[\""Headphones\""]",1609.67,"{\""seasonal\"": \""15%\""}",193151,0,"""North America""" +2023-05-22,71284,6660,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3577.39,"{\""seasonal\"": \""18%\""}",205075,1,"""Asia""" +2024-05-29,71285,2475,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4373.19,"{\""loyalty\"": \""12%\""}",175607,1,"""Africa""" +2023-02-07,71286,8330,"[\""Phone\"", \""Monitor\""]",1781.99,{},174028,0,"""Europe""" +2024-06-05,71287,5426,"[\""Phone\"", \""Charger\""]",2063.01,"{\""loyalty\"": \""15%\""}",8337,1,"""Europe""" +2024-08-13,71288,25,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1731.15,{},193122,0,"""Africa""" +2024-11-24,71289,5777,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",297.68,{},154422,1,"""South America""" +2023-04-29,71290,6956,"[\""Phone\""]",4686.02,"{\""promo\"": \""28%\""}",158525,0,"""Asia""" +2023-01-23,71291,6202,"[\""Keyboard\""]",1868.01,{},242619,0,"""South America""" +2024-11-23,71292,9198,"[\""Charger\"", \""Headphones\""]",453.62,"{\""seasonal\"": \""19%\""}",157410,1,"""Africa""" +2023-03-28,71293,7717,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2045.99,"{\""loyalty\"": \""12%\""}",133944,1,"""North America""" +2023-09-27,71294,7260,"[\""Keyboard\"", \""Monitor\""]",4721.77,"{\"": \""12%\""}",81083,0,"""Europe""" +2024-09-17,71295,4559,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2186.74,"{\""loyalty\"": \""8%\""}",249802,1,"""Africa""" +2024-01-12,71296,5626,"[\""Monitor\"", \""Laptop\""]",783.72,{},295065,1,"""North America""" +2023-06-08,71297,7802,"[\""Monitor\""]",2298.57,{},282123,0,"""South America""" +2023-07-10,71298,5015,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1024.59,"{\""loyalty\"": \""8%\""}",263080,1,"""South America""" +2024-06-11,71299,9541,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4605.95,"{\"": \""29%\""}",222503,0,"""Africa""" +2024-07-15,71300,5047,"[\""Charger\"", \""Monitor\""]",2736.59,{},188432,1,"""Africa""" +2023-03-25,71301,3075,"[\""Keyboard\"", \""Tablet\""]",1608.79,"{\""promo\"": \""7%\""}",97443,0,"""North America""" +2024-02-02,71302,1206,"[\""Laptop\"", \""Keyboard\""]",2485.6,{},93208,0,"""Africa""" +2023-09-28,71303,6048,"[\""Headphones\"", \""Keyboard\""]",4591.9,{},136275,0,"""Asia""" +2024-04-18,71304,8443,"[\""Charger\""]",2184.04,"{\""seasonal\"": \""28%\""}",192859,1,"""Africa""" +2024-01-02,71305,3571,"[\""Wireless Mouse\""]",1536.05,"{\""seasonal\"": \""26%\""}",227139,0,"""Asia""" +2023-03-18,71306,9178,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2826.91,"{\""loyalty\"": \""25%\""}",119891,0,"""Africa""" +2024-04-26,71307,6701,"[\""Monitor\""]",1238.87,"{\""seasonal\"": \""20%\""}",234691,0,"""South America""" +2024-09-14,71308,1438,"[\""Charger\""]",3703.13,"{\"": \""9%\""}",264203,1,"""Asia""" +2023-04-01,71309,4853,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4602.94,"{\""loyalty\"": \""19%\""}",161636,1,"""South America""" +2023-07-10,71310,8270,"[\""Monitor\"", \""Headphones\""]",3793.59,{},258732,0,"""South America""" +2023-06-25,71311,3119,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",233.37,"{\""loyalty\"": \""25%\""}",95196,0,"""Asia""" +2023-02-13,71312,5916,"[\""Wireless Mouse\"", \""Keyboard\""]",3295.15,{},2006,1,"""North America""" +2024-11-29,71313,9686,"[\""Wireless Mouse\""]",4950.65,{},141702,1,"""Europe""" +2024-03-02,71314,3489,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",167.35,"{\""seasonal\"": \""11%\""}",84423,1,"""Asia""" +2024-10-07,71315,7244,"[\""Laptop\"", \""Keyboard\""]",1603.24,{},30782,0,"""South America""" +2024-05-11,71316,2837,"[\""Keyboard\""]",4488.19,{},160483,0,"""North America""" +2023-06-15,71317,8277,"[\""Phone\""]",4243.22,{},217847,0,"""Africa""" +2024-03-01,71318,1840,"[\""Tablet\"", \""Keyboard\""]",4615.76,"{\""promo\"": \""17%\""}",195093,0,"""South America""" +2023-03-20,71319,7690,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1247.27,"{\"": \""15%\""}",87326,0,"""Asia""" +2024-07-08,71320,1992,"[\""Monitor\"", \""Charger\""]",139.59,"{\"": \""15%\""}",38577,1,"""Africa""" +2023-06-24,71321,1672,"[\""Phone\""]",597.07,{},83491,0,"""Africa""" +2023-10-07,71322,4581,"[\""Charger\"", \""Laptop\""]",4238.92,"{\""loyalty\"": \""21%\""}",94707,0,"""Europe""" +2024-11-30,71323,3058,"[\""Wireless Mouse\""]",3193.56,"{\""promo\"": \""27%\""}",170854,0,"""South America""" +2024-01-23,71324,8524,"[\""Keyboard\""]",3073.22,"{\""loyalty\"": \""23%\""}",107501,1,"""North America""" +2023-12-31,71325,3516,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1381.57,{},195925,0,"""Europe""" +2024-05-03,71326,4456,"[\""Keyboard\""]",950.84,"{\""promo\"": \""6%\""}",216619,0,"""Africa""" +2024-08-16,71327,7798,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",523.37,"{\""promo\"": \""6%\""}",101564,1,"""North America""" +2024-12-26,71328,8538,"[\""Tablet\""]",967.84,"{\""seasonal\"": \""29%\""}",83082,1,"""Europe""" +2023-12-04,71329,4530,"[\""Laptop\""]",1893.02,{},208436,0,"""South America""" +2024-06-07,71330,9128,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2171.01,{},228785,0,"""Africa""" +2023-07-09,71331,2440,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1342.18,"{\"": \""21%\""}",126703,1,"""Asia""" +2023-06-28,71332,9927,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1313.83,"{\""promo\"": \""13%\""}",46159,0,"""South America""" +2024-11-06,71333,6819,"[\""Charger\""]",1778.72,"{\""seasonal\"": \""22%\""}",222093,1,"""Africa""" +2023-09-23,71334,8776,"[\""Keyboard\""]",1650.69,{},216005,0,"""South America""" +2024-03-31,71335,8184,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1607.75,"{\""loyalty\"": \""26%\""}",84266,0,"""Europe""" +2023-12-16,71336,1555,"[\""Wireless Mouse\""]",2243.33,{},230972,1,"""Africa""" +2023-03-28,71337,8678,"[\""Phone\"", \""Wireless Mouse\""]",552.73,"{\""loyalty\"": \""19%\""}",282264,1,"""South America""" +2023-02-09,71338,340,"[\""Phone\""]",3328.39,{},64515,1,"""South America""" +2023-11-17,71339,6119,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2810.31,"{\"": \""5%\""}",16114,0,"""Africa""" +2023-01-16,71340,7961,"[\""Keyboard\"", \""Wireless Mouse\""]",224.76,{},215667,0,"""Europe""" +2024-03-09,71341,7472,"[\""Headphones\"", \""Phone\""]",4872.98,"{\""seasonal\"": \""28%\""}",56236,1,"""Europe""" +2024-03-12,71342,9558,"[\""Phone\""]",694.21,"{\""seasonal\"": \""18%\""}",54235,1,"""Africa""" +2024-10-04,71343,7965,"[\""Phone\"", \""Charger\""]",3400.44,"{\"": \""8%\""}",299858,0,"""South America""" +2024-05-06,71344,4500,"[\""Tablet\"", \""Charger\""]",182.97,"{\""loyalty\"": \""11%\""}",282604,0,"""South America""" +2023-03-07,71345,4434,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",95.93,"{\"": \""10%\""}",208746,1,"""Europe""" +2023-10-18,71346,5542,"[\""Headphones\""]",2993.59,{},33209,0,"""Asia""" +2023-08-23,71347,8525,"[\""Headphones\"", \""Phone\""]",1919.06,"{\""loyalty\"": \""13%\""}",223537,1,"""Africa""" +2023-05-14,71348,1528,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1529.94,"{\""loyalty\"": \""21%\""}",65604,1,"""Europe""" +2023-04-12,71349,9015,"[\""Tablet\""]",1913.35,{},218498,1,"""South America""" +2023-12-24,71350,9832,"[\""Tablet\""]",2116.94,"{\""seasonal\"": \""21%\""}",225531,0,"""Asia""" +2024-11-17,71351,8244,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1311.52,"{\"": \""27%\""}",106703,1,"""Asia""" +2023-06-18,71352,5321,"[\""Phone\""]",1776.09,"{\""seasonal\"": \""26%\""}",194426,1,"""Asia""" +2023-12-14,71353,2774,"[\""Wireless Mouse\"", \""Monitor\""]",1520.27,"{\"": \""18%\""}",250817,1,"""North America""" +2024-10-08,71354,1225,"[\""Phone\""]",2584.54,"{\"": \""7%\""}",256020,0,"""North America""" +2024-06-29,71355,6787,"[\""Charger\"", \""Wireless Mouse\""]",2251.19,"{\"": \""25%\""}",174267,1,"""North America""" +2023-09-14,71356,9878,"[\""Monitor\"", \""Phone\""]",4039.06,{},30116,1,"""Asia""" +2024-11-15,71357,8458,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",724.42,{},290072,1,"""Africa""" +2023-03-24,71358,3041,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",663.62,{},44910,0,"""North America""" +2023-08-08,71359,7541,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2274.8,{},291053,1,"""Europe""" +2023-05-31,71360,3604,"[\""Wireless Mouse\""]",3483.76,"{\""seasonal\"": \""24%\""}",40347,0,"""Europe""" +2023-07-24,71361,5327,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",128.89,"{\""promo\"": \""5%\""}",29053,0,"""North America""" +2023-11-27,71362,7503,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3262.12,{},179393,1,"""Africa""" +2023-01-01,71363,5536,"[\""Phone\"", \""Monitor\""]",2168.27,"{\"": \""30%\""}",90048,1,"""North America""" +2023-12-22,71364,5407,"[\""Tablet\"", \""Headphones\""]",2955.34,"{\"": \""21%\""}",104895,1,"""North America""" +2024-02-03,71365,1207,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",513.63,{},297374,0,"""South America""" +2024-08-22,71366,9537,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3059.39,"{\""promo\"": \""21%\""}",157860,0,"""Africa""" +2023-01-25,71367,5612,"[\""Charger\"", \""Tablet\""]",3288.57,{},48180,0,"""South America""" +2024-09-04,71368,1843,"[\""Headphones\""]",1721.51,"{\""promo\"": \""21%\""}",117977,0,"""South America""" +2024-02-23,71369,7451,"[\""Tablet\""]",3964.73,"{\"": \""5%\""}",272579,1,"""North America""" +2023-02-28,71370,2041,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",442.45,{},63196,1,"""South America""" +2024-02-14,71371,8729,"[\""Tablet\"", \""Charger\""]",4879.17,{},206909,0,"""Asia""" +2024-04-05,71372,5249,"[\""Charger\"", \""Tablet\""]",286.86,{},214569,0,"""North America""" +2024-09-13,71373,1589,"[\""Wireless Mouse\"", \""Tablet\""]",507.1,"{\""loyalty\"": \""27%\""}",85674,0,"""Africa""" +2024-06-08,71374,1203,"[\""Charger\""]",1368.33,{},155091,1,"""North America""" +2024-11-22,71375,6513,"[\""Headphones\""]",2929.33,"{\""promo\"": \""15%\""}",167016,1,"""Asia""" +2024-07-03,71376,9997,"[\""Tablet\"", \""Charger\""]",3067.56,{},177977,1,"""Africa""" +2024-11-26,71377,3655,"[\""Headphones\"", \""Keyboard\""]",107.32,{},105915,0,"""South America""" +2024-07-10,71378,4480,"[\""Keyboard\""]",1777.98,"{\""loyalty\"": \""26%\""}",10251,1,"""North America""" +2024-11-24,71379,2850,"[\""Laptop\"", \""Wireless Mouse\""]",2045.31,{},24010,1,"""Africa""" +2024-07-10,71380,6060,"[\""Keyboard\""]",3107.91,{},45732,1,"""Asia""" +2024-12-24,71381,7148,"[\""Charger\"", \""Tablet\""]",2503.84,"{\""loyalty\"": \""6%\""}",172838,0,"""South America""" +2024-11-12,71382,6685,"[\""Tablet\""]",3650.37,"{\""loyalty\"": \""13%\""}",61862,1,"""South America""" +2023-03-16,71383,9509,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3150.24,"{\""seasonal\"": \""23%\""}",209647,0,"""Africa""" +2023-12-28,71384,4532,"[\""Monitor\""]",2759.09,{},270938,0,"""South America""" +2024-06-23,71385,9189,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4072.99,"{\""promo\"": \""17%\""}",240650,0,"""South America""" +2023-07-29,71386,8327,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1799.56,{},46125,1,"""Europe""" +2023-01-18,71387,9307,"[\""Tablet\""]",3831.54,{},157603,1,"""Africa""" +2023-06-06,71388,6953,"[\""Laptop\""]",847.73,{},86062,1,"""Europe""" +2024-02-04,71389,3122,"[\""Wireless Mouse\""]",578.28,"{\""loyalty\"": \""14%\""}",143900,1,"""South America""" +2023-03-31,71390,6192,"[\""Monitor\"", \""Headphones\""]",810.51,"{\""promo\"": \""10%\""}",243577,0,"""Europe""" +2024-07-10,71391,3309,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",690.82,{},76326,0,"""North America""" +2023-06-08,71392,8248,"[\""Headphones\"", \""Laptop\""]",1922.21,{},276891,0,"""Asia""" +2023-04-06,71393,5154,"[\""Headphones\"", \""Laptop\""]",1050.63,{},75619,0,"""Africa""" +2024-02-29,71394,8045,"[\""Phone\"", \""Laptop\""]",4261.76,"{\""promo\"": \""15%\""}",99819,1,"""Africa""" +2024-08-22,71395,24,"[\""Monitor\""]",1012.82,{},274943,1,"""South America""" +2024-03-25,71396,4076,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2713.9,"{\""seasonal\"": \""19%\""}",134221,1,"""Asia""" +2023-11-30,71397,6122,"[\""Headphones\"", \""Monitor\""]",947.92,"{\""loyalty\"": \""27%\""}",11486,0,"""South America""" +2023-01-21,71398,9387,"[\""Keyboard\"", \""Tablet\""]",1257.2,"{\""promo\"": \""6%\""}",143990,1,"""Europe""" +2023-08-13,71399,9698,"[\""Charger\"", \""Monitor\""]",4286.92,{},173498,0,"""Europe""" +2023-11-04,71400,7836,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4848.01,"{\""promo\"": \""16%\""}",281640,0,"""South America""" +2024-02-06,71401,9476,"[\""Wireless Mouse\"", \""Monitor\""]",2396.59,"{\""seasonal\"": \""23%\""}",293122,0,"""Asia""" +2024-05-04,71402,2924,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3330.4,{},144454,0,"""North America""" +2024-05-10,71403,3486,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",806.13,{},269132,0,"""Asia""" +2024-01-07,71404,8398,"[\""Headphones\""]",2567.05,"{\""loyalty\"": \""17%\""}",236246,0,"""Asia""" +2023-07-22,71405,7542,"[\""Laptop\"", \""Tablet\""]",3487.95,"{\""loyalty\"": \""18%\""}",204289,1,"""Asia""" +2024-04-27,71406,576,"[\""Keyboard\""]",1374.86,"{\""seasonal\"": \""27%\""}",95430,1,"""Asia""" +2024-03-24,71407,9456,"[\""Monitor\"", \""Phone\""]",1171.41,"{\"": \""13%\""}",11630,0,"""South America""" +2023-04-13,71408,5326,"[\""Monitor\"", \""Charger\""]",3389.57,{},67478,0,"""North America""" +2024-10-19,71409,5297,"[\""Headphones\"", \""Keyboard\""]",4072.27,"{\""promo\"": \""30%\""}",87173,1,"""North America""" +2024-01-19,71410,1517,"[\""Phone\"", \""Wireless Mouse\""]",2077.03,{},82363,1,"""South America""" +2023-07-12,71411,5718,"[\""Laptop\"", \""Wireless Mouse\""]",1358.42,"{\""promo\"": \""28%\""}",283878,1,"""Europe""" +2024-04-27,71412,8461,"[\""Tablet\"", \""Charger\""]",55.14,{},28166,0,"""South America""" +2024-05-30,71413,5321,"[\""Phone\"", \""Wireless Mouse\""]",3485.96,{},25675,1,"""Europe""" +2024-05-24,71414,8459,"[\""Wireless Mouse\""]",4009.92,"{\""loyalty\"": \""10%\""}",27434,1,"""North America""" +2024-06-13,71415,9961,"[\""Laptop\""]",1258.77,{},67001,0,"""North America""" +2023-01-17,71416,9566,"[\""Wireless Mouse\"", \""Charger\""]",602.23,{},35842,1,"""North America""" +2023-02-04,71417,8998,"[\""Monitor\"", \""Headphones\""]",408.36,{},51532,0,"""Asia""" +2024-07-06,71418,3066,"[\""Headphones\""]",1087.75,"{\""seasonal\"": \""15%\""}",66991,0,"""Africa""" +2023-02-04,71419,3342,"[\""Keyboard\""]",3923.8,{},160831,1,"""Africa""" +2023-04-28,71420,5560,"[\""Monitor\"", \""Phone\""]",3732.39,{},176134,0,"""Africa""" +2023-01-01,71421,1644,"[\""Tablet\"", \""Phone\""]",1581.41,"{\"": \""22%\""}",192392,1,"""North America""" +2023-05-29,71422,5682,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1009.26,"{\""promo\"": \""19%\""}",146217,1,"""Africa""" +2024-12-16,71423,1213,"[\""Tablet\""]",118.63,"{\""promo\"": \""27%\""}",102979,0,"""South America""" +2024-10-25,71424,2482,"[\""Keyboard\""]",4551.55,{},209330,1,"""Africa""" +2024-10-06,71425,2144,"[\""Charger\""]",4369.83,{},284524,0,"""North America""" +2024-03-21,71426,9269,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1084.59,"{\""loyalty\"": \""9%\""}",207243,0,"""Africa""" +2024-05-01,71427,8543,"[\""Keyboard\""]",4842.98,"{\""promo\"": \""20%\""}",218148,1,"""North America""" +2024-09-24,71428,8543,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3503.24,"{\""seasonal\"": \""8%\""}",31162,0,"""Asia""" +2024-01-30,71429,4884,"[\""Tablet\""]",1302.59,{},242452,0,"""North America""" +2023-04-10,71430,8999,"[\""Wireless Mouse\""]",4435.64,"{\""promo\"": \""11%\""}",62050,0,"""Europe""" +2024-11-30,71431,2288,"[\""Wireless Mouse\""]",3125.13,{},283509,0,"""Asia""" +2023-07-30,71432,6915,"[\""Monitor\"", \""Keyboard\""]",3730.74,"{\"": \""23%\""}",53662,1,"""Europe""" +2024-03-12,71433,5481,"[\""Charger\"", \""Wireless Mouse\""]",3372.6,{},127209,0,"""Europe""" +2024-11-03,71434,9420,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1385.1,{},287666,0,"""Europe""" +2024-05-03,71435,8829,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2169.64,"{\"": \""17%\""}",256654,0,"""North America""" +2023-06-19,71436,8697,"[\""Charger\""]",3309.69,"{\""loyalty\"": \""21%\""}",27596,1,"""Europe""" +2023-06-15,71437,2016,"[\""Tablet\"", \""Headphones\""]",2781.4,{},64960,1,"""Africa""" +2023-12-19,71438,6715,"[\""Laptop\""]",3412.7,"{\""promo\"": \""30%\""}",188729,1,"""Africa""" +2023-07-10,71439,5084,"[\""Laptop\"", \""Tablet\""]",2235.45,{},56152,1,"""South America""" +2024-06-26,71440,8502,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",364.69,"{\""promo\"": \""16%\""}",270293,1,"""Africa""" +2023-04-19,71441,9699,"[\""Phone\"", \""Charger\""]",1360.85,{},96257,0,"""Europe""" +2023-01-15,71442,8167,"[\""Tablet\""]",634.53,{},102849,1,"""North America""" +2024-04-19,71443,6026,"[\""Monitor\""]",260.73,{},199608,0,"""Africa""" +2024-03-15,71444,4685,"[\""Laptop\""]",3062.79,"{\""seasonal\"": \""16%\""}",45056,1,"""Europe""" +2023-12-19,71445,1235,"[\""Phone\""]",1553.85,"{\""promo\"": \""17%\""}",251557,0,"""Africa""" +2023-08-25,71446,9717,"[\""Keyboard\"", \""Wireless Mouse\""]",4700.47,{},37450,1,"""Asia""" +2024-09-21,71447,9978,"[\""Tablet\""]",2774.4,{},138805,0,"""Africa""" +2023-06-20,71448,314,"[\""Tablet\"", \""Charger\""]",225.28,"{\"": \""8%\""}",169611,1,"""South America""" +2023-11-11,71449,4705,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1616.9,"{\""loyalty\"": \""28%\""}",164896,0,"""North America""" +2024-02-26,71450,2347,"[\""Headphones\""]",4288.84,{},243187,1,"""Asia""" +2024-03-11,71451,992,"[\""Keyboard\"", \""Phone\""]",1807.6,{},60466,1,"""South America""" +2024-08-23,71452,4273,"[\""Charger\"", \""Wireless Mouse\""]",990.79,{},61899,0,"""Africa""" +2023-05-29,71453,3250,"[\""Keyboard\""]",502.64,"{\"": \""10%\""}",88489,1,"""South America""" +2023-10-17,71454,2971,"[\""Tablet\""]",4394.79,"{\"": \""6%\""}",112505,0,"""Asia""" +2024-02-15,71455,3362,"[\""Headphones\""]",3840.13,{},188354,0,"""Europe""" +2023-01-01,71456,2904,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",775.04,{},224706,0,"""Africa""" +2023-08-01,71457,151,"[\""Tablet\"", \""Headphones\""]",3154.45,{},196382,0,"""North America""" +2024-07-02,71458,167,"[\""Charger\""]",749.85,"{\""loyalty\"": \""5%\""}",205380,0,"""Europe""" +2024-01-26,71459,3855,"[\""Headphones\"", \""Phone\""]",1569.43,{},75244,1,"""South America""" +2023-08-31,71460,5901,"[\""Charger\"", \""Phone\""]",1557.73,"{\"": \""8%\""}",293165,0,"""Europe""" +2023-04-16,71461,1595,"[\""Keyboard\"", \""Wireless Mouse\""]",2366.42,"{\""seasonal\"": \""6%\""}",36386,0,"""South America""" +2023-05-13,71462,8101,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1414.42,{},242428,0,"""North America""" +2024-03-25,71463,7597,"[\""Monitor\""]",2287.88,"{\""promo\"": \""28%\""}",66961,1,"""Europe""" +2024-06-18,71464,4168,"[\""Monitor\""]",1459.52,"{\""loyalty\"": \""11%\""}",152064,1,"""Asia""" +2023-09-02,71465,7089,"[\""Monitor\""]",3228.1,"{\""seasonal\"": \""23%\""}",271581,1,"""Europe""" +2024-03-14,71466,5329,"[\""Laptop\"", \""Monitor\""]",3092.08,{},216735,1,"""South America""" +2024-11-03,71467,9468,"[\""Tablet\"", \""Wireless Mouse\""]",3265.32,{},129373,1,"""North America""" +2023-07-15,71468,8084,"[\""Wireless Mouse\""]",1999.83,"{\""seasonal\"": \""15%\""}",234772,1,"""South America""" +2024-07-26,71469,5489,"[\""Keyboard\"", \""Monitor\""]",3826.06,{},11806,1,"""Asia""" +2024-01-26,71470,3494,"[\""Phone\"", \""Laptop\""]",4788.52,{},87081,0,"""North America""" +2024-10-20,71471,7747,"[\""Tablet\""]",4428.2,"{\""promo\"": \""5%\""}",89855,1,"""South America""" +2024-05-22,71472,3100,"[\""Wireless Mouse\"", \""Phone\""]",398.38,{},94768,0,"""Europe""" +2023-07-14,71473,3232,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3711.4,"{\"": \""6%\""}",56514,0,"""Asia""" +2024-01-10,71474,9279,"[\""Phone\""]",659.12,"{\"": \""29%\""}",49908,0,"""Asia""" +2023-03-31,71475,8893,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1709.2,{},278654,1,"""Europe""" +2023-10-22,71476,4999,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3811.29,"{\""promo\"": \""23%\""}",43534,1,"""Africa""" +2024-07-14,71477,4356,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",219.7,{},126638,0,"""Africa""" +2024-08-11,71478,3489,"[\""Charger\""]",4914.86,"{\""promo\"": \""28%\""}",13691,1,"""Europe""" +2023-08-06,71479,6086,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3760.95,{},254827,0,"""Asia""" +2024-10-07,71480,736,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3288.79,"{\""promo\"": \""9%\""}",11664,0,"""Asia""" +2024-07-08,71481,9122,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4347.65,"{\""seasonal\"": \""9%\""}",9861,1,"""South America""" +2024-11-23,71482,4798,"[\""Monitor\""]",4797.39,"{\""seasonal\"": \""7%\""}",62787,0,"""Africa""" +2023-11-15,71483,6376,"[\""Charger\"", \""Laptop\""]",154.29,{},77255,1,"""South America""" +2023-08-04,71484,5092,"[\""Laptop\"", \""Wireless Mouse\""]",1356.18,{},145006,1,"""South America""" +2023-05-01,71485,7556,"[\""Phone\""]",4710.83,{},53376,0,"""Asia""" +2024-07-04,71486,748,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",613.4,{},44523,1,"""South America""" +2024-06-13,71487,334,"[\""Laptop\"", \""Wireless Mouse\""]",4497.01,"{\"": \""6%\""}",228609,0,"""South America""" +2024-03-22,71488,9685,"[\""Headphones\""]",2310.92,"{\""promo\"": \""6%\""}",289209,1,"""Asia""" +2023-03-20,71489,9481,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2223.13,{},167192,1,"""Asia""" +2023-05-05,71490,4135,"[\""Wireless Mouse\""]",2330.49,"{\"": \""28%\""}",256320,1,"""Europe""" +2023-02-10,71491,3806,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1057.1,{},27345,0,"""Europe""" +2023-02-05,71492,9076,"[\""Charger\"", \""Monitor\""]",2362.15,"{\""loyalty\"": \""20%\""}",174619,1,"""South America""" +2024-03-07,71493,4342,"[\""Wireless Mouse\""]",3082.65,"{\""seasonal\"": \""11%\""}",77996,1,"""North America""" +2023-03-13,71494,2397,"[\""Phone\"", \""Charger\""]",101.66,{},137133,1,"""South America""" +2024-11-08,71495,9522,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1501.14,{},14948,1,"""Europe""" +2023-06-08,71496,464,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3994.69,{},215822,0,"""Europe""" +2023-10-03,71497,7181,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2588.4,"{\""loyalty\"": \""18%\""}",249289,1,"""South America""" +2024-07-16,71498,6720,"[\""Monitor\"", \""Headphones\""]",1919.69,{},165372,1,"""South America""" +2023-06-14,71499,6071,"[\""Laptop\""]",2623.4,{},130148,1,"""Africa""" +2024-03-25,71500,4426,"[\""Phone\""]",4816.86,{},42925,1,"""South America""" +2024-06-20,71501,5230,"[\""Headphones\"", \""Keyboard\""]",1238.79,"{\""seasonal\"": \""7%\""}",248379,0,"""Africa""" +2023-06-21,71502,1287,"[\""Charger\"", \""Phone\""]",1459.3,"{\"": \""26%\""}",133204,0,"""North America""" +2024-07-29,71503,5659,"[\""Charger\"", \""Wireless Mouse\""]",2544.0,"{\"": \""9%\""}",109559,0,"""South America""" +2023-01-26,71504,5665,"[\""Laptop\""]",3489.06,"{\""seasonal\"": \""29%\""}",233317,1,"""Africa""" +2024-04-14,71505,795,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4904.82,{},232127,0,"""Europe""" +2024-03-13,71506,7689,"[\""Laptop\"", \""Keyboard\""]",1586.96,"{\""seasonal\"": \""5%\""}",249559,1,"""Europe""" +2023-03-10,71507,134,"[\""Laptop\""]",3529.3,"{\""loyalty\"": \""21%\""}",241293,1,"""Africa""" +2023-08-27,71508,2964,"[\""Charger\"", \""Laptop\""]",3064.94,{},213967,0,"""Asia""" +2024-09-29,71509,3631,"[\""Monitor\""]",3622.23,{},104628,0,"""South America""" +2023-06-10,71510,194,"[\""Tablet\"", \""Wireless Mouse\""]",1554.56,{},268280,1,"""Africa""" +2024-02-10,71511,2066,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3828.57,{},160309,0,"""Asia""" +2024-04-15,71512,9063,"[\""Monitor\""]",1124.0,{},102929,1,"""North America""" +2024-06-01,71513,3748,"[\""Charger\""]",931.57,{},168149,1,"""Europe""" +2023-03-26,71514,6277,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3355.61,{},17602,1,"""Asia""" +2024-02-28,71515,6895,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2782.24,{},251777,0,"""Africa""" +2023-02-14,71516,3396,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4583.65,{},232102,0,"""Africa""" +2023-06-03,71517,8100,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3131.05,{},105676,0,"""South America""" +2023-03-24,71518,9542,"[\""Tablet\"", \""Charger\""]",1465.7,"{\""seasonal\"": \""11%\""}",60663,1,"""South America""" +2023-03-23,71519,2085,"[\""Laptop\""]",4887.46,"{\"": \""29%\""}",75369,1,"""South America""" +2023-09-18,71520,8033,"[\""Headphones\""]",4929.62,"{\"": \""13%\""}",131809,1,"""Africa""" +2024-07-03,71521,2304,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1226.36,"{\""seasonal\"": \""10%\""}",280114,1,"""Europe""" +2024-12-06,71522,1948,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3731.35,{},116368,1,"""South America""" +2023-12-01,71523,7659,"[\""Phone\"", \""Laptop\""]",906.0,{},169100,1,"""South America""" +2023-06-10,71524,5473,"[\""Tablet\""]",3899.12,"{\""seasonal\"": \""5%\""}",2487,0,"""Asia""" +2023-09-17,71525,400,"[\""Charger\"", \""Tablet\""]",3441.39,{},180359,1,"""North America""" +2023-08-09,71526,1229,"[\""Keyboard\""]",1857.37,{},50536,1,"""Asia""" +2024-08-21,71527,8951,"[\""Phone\"", \""Headphones\""]",3652.08,"{\""loyalty\"": \""26%\""}",186434,1,"""Africa""" +2023-01-02,71528,3531,"[\""Charger\"", \""Phone\""]",3038.2,{},6734,1,"""Europe""" +2024-01-27,71529,4807,"[\""Keyboard\"", \""Headphones\""]",1820.99,{},265013,0,"""Europe""" +2024-09-07,71530,3077,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4209.57,{},60197,0,"""South America""" +2023-09-07,71531,5772,"[\""Laptop\""]",4555.15,{},122588,1,"""Asia""" +2023-10-27,71532,4219,"[\""Laptop\"", \""Keyboard\""]",1259.41,{},85390,1,"""South America""" +2023-09-23,71533,4237,"[\""Charger\""]",972.83,"{\""seasonal\"": \""21%\""}",297512,0,"""Asia""" +2024-07-09,71534,4806,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3865.47,{},108177,0,"""North America""" +2023-02-24,71535,8628,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3457.05,{},197592,0,"""Africa""" +2023-02-26,71536,57,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2040.92,"{\"": \""11%\""}",152640,1,"""Asia""" +2023-04-07,71537,8307,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1800.75,{},135755,1,"""Europe""" +2024-06-01,71538,905,"[\""Laptop\""]",4561.65,"{\""seasonal\"": \""14%\""}",231235,1,"""Africa""" +2023-11-24,71539,2026,"[\""Laptop\""]",4943.23,{},176678,0,"""South America""" +2023-01-19,71540,6187,"[\""Keyboard\"", \""Monitor\""]",4170.05,{},172709,1,"""Asia""" +2024-05-19,71541,7143,"[\""Keyboard\"", \""Phone\""]",313.47,{},174769,0,"""North America""" +2024-01-21,71542,372,"[\""Monitor\""]",4566.74,{},71462,1,"""North America""" +2023-11-13,71543,5404,"[\""Tablet\""]",1805.86,"{\"": \""15%\""}",109051,0,"""Africa""" +2023-04-15,71544,9444,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2043.36,"{\""promo\"": \""14%\""}",171520,1,"""South America""" +2023-09-27,71545,1617,"[\""Phone\""]",174.46,"{\""loyalty\"": \""9%\""}",37440,1,"""Asia""" +2023-10-11,71546,4325,"[\""Wireless Mouse\""]",2875.2,{},237670,1,"""South America""" +2024-04-25,71547,9163,"[\""Wireless Mouse\""]",4846.37,{},16362,0,"""North America""" +2024-11-07,71548,8197,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1348.21,"{\""seasonal\"": \""22%\""}",196068,0,"""Europe""" +2023-02-03,71549,4087,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1021.12,{},38296,0,"""South America""" +2023-08-18,71550,1133,"[\""Tablet\"", \""Headphones\""]",1668.6,{},278880,1,"""Africa""" +2024-01-26,71551,2424,"[\""Tablet\""]",3255.16,"{\""seasonal\"": \""23%\""}",3485,1,"""Africa""" +2024-10-31,71552,9022,"[\""Headphones\"", \""Laptop\""]",4898.32,{},266775,0,"""Asia""" +2023-03-02,71553,2747,"[\""Monitor\"", \""Headphones\""]",1473.79,"{\""loyalty\"": \""28%\""}",27109,1,"""Asia""" +2023-10-22,71554,768,"[\""Keyboard\"", \""Headphones\""]",3445.54,"{\""seasonal\"": \""11%\""}",2172,1,"""South America""" +2023-03-05,71555,8580,"[\""Tablet\"", \""Keyboard\""]",3666.18,{},187527,1,"""Africa""" +2023-04-26,71556,9308,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2906.27,"{\""seasonal\"": \""30%\""}",236894,0,"""South America""" +2024-06-13,71557,5329,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",373.54,{},186103,0,"""Africa""" +2023-09-05,71558,6008,"[\""Phone\"", \""Wireless Mouse\""]",3079.23,{},166911,1,"""Asia""" +2024-11-22,71559,9772,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3726.45,{},297814,0,"""South America""" +2024-08-11,71560,420,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",327.34,"{\"": \""19%\""}",211627,1,"""Asia""" +2024-12-18,71561,8305,"[\""Wireless Mouse\""]",1455.58,{},166531,1,"""Asia""" +2023-06-07,71562,1086,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1548.0,{},97451,0,"""South America""" +2023-04-24,71563,7665,"[\""Keyboard\"", \""Phone\""]",1304.89,"{\""promo\"": \""12%\""}",124601,1,"""Africa""" +2023-05-15,71564,9981,"[\""Headphones\"", \""Wireless Mouse\""]",4497.53,"{\""promo\"": \""21%\""}",59668,1,"""South America""" +2023-03-20,71565,8254,"[\""Keyboard\""]",3202.97,{},243961,1,"""Africa""" +2024-09-26,71566,9423,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",557.78,"{\""loyalty\"": \""14%\""}",31565,0,"""Africa""" +2023-12-08,71567,8005,"[\""Tablet\""]",3253.9,{},118772,1,"""North America""" +2024-11-18,71568,8830,"[\""Keyboard\""]",3774.67,"{\"": \""11%\""}",95731,0,"""Asia""" +2023-03-07,71569,8143,"[\""Charger\""]",1511.2,"{\""promo\"": \""17%\""}",260704,1,"""Africa""" +2023-09-11,71570,8253,"[\""Headphones\""]",449.05,{},276893,1,"""Europe""" +2023-07-07,71571,9160,"[\""Headphones\"", \""Keyboard\""]",4233.14,{},151600,0,"""Europe""" +2023-03-01,71572,2310,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",751.61,"{\""loyalty\"": \""17%\""}",2664,0,"""Africa""" +2023-10-20,71573,7231,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2631.88,"{\""seasonal\"": \""30%\""}",51610,1,"""Africa""" +2024-04-28,71574,1813,"[\""Wireless Mouse\""]",1149.08,"{\"": \""10%\""}",144901,0,"""Europe""" +2024-10-04,71575,3973,"[\""Monitor\""]",2816.16,{},89714,0,"""Europe""" +2024-03-26,71576,5031,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1349.22,{},194433,1,"""South America""" +2024-04-10,71577,8443,"[\""Headphones\""]",965.15,"{\""loyalty\"": \""15%\""}",92014,1,"""Europe""" +2024-10-31,71578,5943,"[\""Tablet\""]",4357.11,{},78860,1,"""Africa""" +2024-12-04,71579,4904,"[\""Headphones\"", \""Monitor\""]",1745.5,"{\""promo\"": \""29%\""}",83563,1,"""Europe""" +2024-02-10,71580,9147,"[\""Laptop\"", \""Phone\""]",3130.54,"{\""seasonal\"": \""26%\""}",179027,0,"""Asia""" +2023-05-08,71581,4524,"[\""Charger\"", \""Tablet\""]",3239.33,"{\""loyalty\"": \""5%\""}",143798,0,"""South America""" +2023-05-03,71582,8826,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4653.69,{},71040,1,"""Africa""" +2024-01-14,71583,3216,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1669.02,"{\""loyalty\"": \""25%\""}",92915,1,"""Africa""" +2023-05-28,71584,5670,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3633.9,"{\""promo\"": \""14%\""}",55341,0,"""South America""" +2024-08-01,71585,9819,"[\""Keyboard\"", \""Monitor\""]",1215.84,{},35939,0,"""Asia""" +2023-10-11,71586,6505,"[\""Headphones\"", \""Charger\""]",2006.55,"{\"": \""19%\""}",271408,0,"""North America""" +2023-04-27,71587,5410,"[\""Phone\"", \""Wireless Mouse\""]",1464.32,"{\""loyalty\"": \""7%\""}",93760,0,"""North America""" +2024-08-19,71588,3073,"[\""Tablet\"", \""Wireless Mouse\""]",4361.79,{},247131,1,"""Asia""" +2024-11-02,71589,6642,"[\""Phone\""]",1175.81,"{\""seasonal\"": \""20%\""}",296684,1,"""South America""" +2024-12-08,71590,195,"[\""Keyboard\""]",1283.75,{},249975,0,"""Europe""" +2023-04-29,71591,52,"[\""Monitor\""]",2644.71,{},152462,0,"""Asia""" +2023-07-07,71592,8722,"[\""Monitor\"", \""Charger\""]",2068.37,"{\""seasonal\"": \""22%\""}",114638,1,"""Asia""" +2024-09-26,71593,7324,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1904.51,"{\""promo\"": \""14%\""}",109965,0,"""North America""" +2024-11-10,71594,1024,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4694.96,"{\""promo\"": \""22%\""}",88975,1,"""Asia""" +2024-02-18,71595,6276,"[\""Charger\"", \""Keyboard\""]",4378.3,"{\""loyalty\"": \""24%\""}",278358,0,"""South America""" +2024-01-10,71596,726,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2240.41,"{\""seasonal\"": \""28%\""}",164363,1,"""Asia""" +2024-03-05,71597,4382,"[\""Monitor\""]",1437.01,"{\""seasonal\"": \""26%\""}",29950,0,"""South America""" +2024-04-26,71598,5637,"[\""Phone\""]",3240.08,"{\""promo\"": \""20%\""}",107143,1,"""North America""" +2023-11-17,71599,8302,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4472.19,{},263145,1,"""Africa""" +2024-10-12,71600,2188,"[\""Charger\"", \""Monitor\""]",4046.07,"{\""promo\"": \""27%\""}",235705,1,"""South America""" +2023-06-20,71601,4170,"[\""Phone\""]",3161.25,{},292566,0,"""North America""" +2024-06-08,71602,9313,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4042.18,{},94797,1,"""Africa""" +2024-09-08,71603,3454,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2921.2,{},231852,0,"""North America""" +2024-07-16,71604,3456,"[\""Headphones\""]",4731.14,{},207183,0,"""South America""" +2024-04-30,71605,6984,"[\""Headphones\"", \""Tablet\""]",4290.93,"{\"": \""12%\""}",117312,1,"""Asia""" +2024-06-07,71606,4781,"[\""Charger\"", \""Wireless Mouse\""]",3012.8,{},159281,1,"""North America""" +2024-01-21,71607,4222,"[\""Headphones\""]",346.06,{},132259,0,"""Europe""" +2024-09-04,71608,3143,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3834.76,"{\""loyalty\"": \""29%\""}",82954,1,"""Europe""" +2023-01-28,71609,2142,"[\""Headphones\""]",2896.74,{},216257,0,"""Europe""" +2023-11-04,71610,4782,"[\""Laptop\"", \""Phone\""]",1555.59,"{\""promo\"": \""17%\""}",235263,0,"""Africa""" +2023-07-21,71611,2677,"[\""Laptop\""]",2057.39,{},198812,1,"""Europe""" +2023-11-24,71612,9269,"[\""Wireless Mouse\""]",3086.68,{},245559,0,"""Europe""" +2023-05-22,71613,352,"[\""Keyboard\"", \""Wireless Mouse\""]",780.09,{},216546,0,"""North America""" +2024-10-28,71614,4692,"[\""Wireless Mouse\"", \""Laptop\""]",556.07,{},204020,1,"""North America""" +2024-08-14,71615,7063,"[\""Laptop\"", \""Monitor\""]",4645.74,{},136711,0,"""South America""" +2023-01-14,71616,2219,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",72.69,"{\""promo\"": \""5%\""}",230034,0,"""North America""" +2023-01-04,71617,6958,"[\""Keyboard\"", \""Charger\""]",3985.16,"{\""promo\"": \""16%\""}",133203,0,"""Asia""" +2024-03-30,71618,3520,"[\""Keyboard\""]",2285.54,"{\"": \""28%\""}",127102,1,"""Asia""" +2023-09-26,71619,7626,"[\""Headphones\"", \""Phone\""]",4650.19,"{\""loyalty\"": \""10%\""}",12927,1,"""North America""" +2023-09-01,71620,9328,"[\""Phone\""]",2782.52,"{\"": \""15%\""}",290093,0,"""South America""" +2023-10-16,71621,9342,"[\""Monitor\""]",2673.19,"{\""seasonal\"": \""19%\""}",237159,1,"""Africa""" +2023-03-30,71622,169,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3020.73,{},239677,1,"""Asia""" +2023-08-02,71623,476,"[\""Laptop\""]",3551.83,{},164306,1,"""South America""" +2023-06-28,71624,1838,"[\""Keyboard\""]",3022.3,"{\""loyalty\"": \""6%\""}",6041,0,"""South America""" +2024-03-07,71625,8849,"[\""Phone\""]",1137.26,{},160220,1,"""South America""" +2024-01-19,71626,9148,"[\""Wireless Mouse\""]",553.35,{},20981,1,"""North America""" +2024-10-27,71627,1940,"[\""Keyboard\""]",2707.81,"{\""loyalty\"": \""22%\""}",58120,1,"""North America""" +2024-09-06,71628,1906,"[\""Headphones\"", \""Phone\""]",1493.26,{},157243,1,"""South America""" +2024-02-12,71629,4659,"[\""Headphones\"", \""Monitor\""]",436.22,{},191135,0,"""Asia""" +2024-06-30,71630,5600,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1167.08,{},186384,0,"""Africa""" +2023-03-17,71631,6448,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3550.1,"{\"": \""12%\""}",121787,0,"""Europe""" +2023-08-22,71632,2754,"[\""Tablet\""]",1068.49,"{\""promo\"": \""25%\""}",109205,0,"""Africa""" +2024-03-26,71633,5861,"[\""Headphones\""]",2324.29,"{\""seasonal\"": \""10%\""}",255477,0,"""North America""" +2024-03-01,71634,3922,"[\""Laptop\"", \""Monitor\""]",4391.38,"{\"": \""8%\""}",190072,0,"""Europe""" +2023-05-11,71635,2771,"[\""Keyboard\""]",3221.02,{},73078,1,"""South America""" +2024-09-07,71636,4747,"[\""Keyboard\""]",1955.66,{},239347,1,"""Africa""" +2023-01-14,71637,1489,"[\""Headphones\""]",4136.79,{},194348,0,"""Europe""" +2024-08-18,71638,7575,"[\""Laptop\"", \""Headphones\""]",4422.66,"{\""loyalty\"": \""25%\""}",207866,1,"""Africa""" +2024-12-19,71639,8364,"[\""Wireless Mouse\""]",1465.94,{},225272,0,"""South America""" +2023-10-17,71640,5253,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3296.08,"{\""promo\"": \""22%\""}",208426,0,"""North America""" +2024-10-09,71641,6927,"[\""Phone\"", \""Charger\"", \""Headphones\""]",256.22,{},55578,1,"""South America""" +2024-10-23,71642,1688,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2883.01,"{\""seasonal\"": \""14%\""}",42238,1,"""North America""" +2024-04-07,71643,8602,"[\""Keyboard\"", \""Headphones\""]",4248.71,"{\"": \""23%\""}",149130,0,"""South America""" +2023-11-19,71644,9813,"[\""Wireless Mouse\"", \""Phone\""]",2121.65,{},188019,1,"""Europe""" +2024-09-10,71645,5088,"[\""Laptop\"", \""Tablet\""]",262.23,{},263281,0,"""Asia""" +2023-06-28,71646,7621,"[\""Monitor\"", \""Keyboard\""]",818.96,"{\""loyalty\"": \""16%\""}",123215,1,"""Africa""" +2024-12-04,71647,5540,"[\""Charger\"", \""Laptop\"", \""Phone\""]",767.51,{},60315,1,"""South America""" +2024-09-07,71648,6077,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1129.04,"{\""seasonal\"": \""26%\""}",95670,1,"""Africa""" +2024-06-22,71649,3173,"[\""Phone\""]",4753.2,{},299081,0,"""North America""" +2024-05-03,71650,9599,"[\""Wireless Mouse\"", \""Phone\""]",2768.95,"{\""loyalty\"": \""28%\""}",120979,1,"""Europe""" +2023-08-06,71651,6880,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3054.02,{},219680,1,"""North America""" +2024-07-08,71652,7001,"[\""Keyboard\"", \""Headphones\""]",3952.94,"{\""loyalty\"": \""6%\""}",258630,0,"""South America""" +2024-10-02,71653,612,"[\""Wireless Mouse\""]",4401.53,{},296990,0,"""Africa""" +2024-07-02,71654,3885,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2720.26,"{\""loyalty\"": \""19%\""}",141333,1,"""Europe""" +2023-09-30,71655,6664,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",73.7,{},7954,0,"""South America""" +2023-04-08,71656,722,"[\""Tablet\"", \""Monitor\""]",4386.8,"{\""seasonal\"": \""29%\""}",63211,1,"""North America""" +2024-01-18,71657,7653,"[\""Wireless Mouse\"", \""Monitor\""]",4278.3,{},123942,1,"""Africa""" +2024-03-25,71658,5296,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1164.77,{},177561,1,"""Africa""" +2024-12-13,71659,9567,"[\""Tablet\""]",3198.62,"{\""seasonal\"": \""23%\""}",169331,1,"""South America""" +2024-02-17,71660,9208,"[\""Tablet\""]",2511.58,{},254020,1,"""Europe""" +2024-03-08,71661,6680,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3668.31,"{\""seasonal\"": \""13%\""}",244560,0,"""Europe""" +2024-12-11,71662,7995,"[\""Tablet\"", \""Charger\""]",565.6,"{\""seasonal\"": \""22%\""}",22732,1,"""Asia""" +2024-01-30,71663,2561,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2475.03,"{\""promo\"": \""29%\""}",236760,1,"""Asia""" +2024-06-12,71664,8982,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1567.39,"{\""loyalty\"": \""20%\""}",186056,0,"""Africa""" +2024-07-11,71665,4044,"[\""Monitor\""]",4965.46,"{\"": \""12%\""}",296051,0,"""Europe""" +2024-05-30,71666,4719,"[\""Headphones\"", \""Keyboard\""]",2745.05,{},15930,1,"""Asia""" +2023-07-09,71667,1434,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1862.32,{},267528,1,"""North America""" +2024-07-14,71668,8984,"[\""Keyboard\"", \""Monitor\""]",1142.59,"{\""loyalty\"": \""14%\""}",264485,0,"""Africa""" +2023-11-01,71669,6525,"[\""Monitor\""]",2124.87,"{\""seasonal\"": \""28%\""}",156029,0,"""Africa""" +2024-09-26,71670,7680,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1848.91,{},64541,0,"""North America""" +2023-10-05,71671,625,"[\""Headphones\""]",3383.59,{},30567,1,"""South America""" +2024-03-26,71672,167,"[\""Phone\"", \""Wireless Mouse\""]",2171.0,{},20195,0,"""Asia""" +2024-12-26,71673,547,"[\""Wireless Mouse\"", \""Tablet\""]",3301.61,{},240519,1,"""Africa""" +2023-09-04,71674,1299,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3980.94,"{\"": \""22%\""}",31533,0,"""Europe""" +2023-02-08,71675,6408,"[\""Monitor\"", \""Phone\""]",2708.07,"{\"": \""20%\""}",226726,0,"""Asia""" +2024-12-30,71676,7405,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1410.65,"{\"": \""24%\""}",47695,0,"""Europe""" +2024-05-18,71677,9332,"[\""Charger\""]",182.68,"{\""promo\"": \""9%\""}",182855,0,"""South America""" +2023-12-10,71678,5546,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4539.34,{},191299,1,"""Africa""" +2024-12-19,71679,1268,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4341.91,"{\""seasonal\"": \""21%\""}",39894,0,"""Asia""" +2023-01-20,71680,5824,"[\""Charger\"", \""Keyboard\""]",455.6,"{\""promo\"": \""26%\""}",73090,0,"""North America""" +2023-08-05,71681,4951,"[\""Wireless Mouse\"", \""Keyboard\""]",4327.23,"{\""promo\"": \""16%\""}",82641,0,"""North America""" +2023-08-03,71682,7917,"[\""Keyboard\"", \""Monitor\""]",434.24,"{\"": \""20%\""}",268260,1,"""Europe""" +2024-08-05,71683,9337,"[\""Wireless Mouse\""]",1153.85,"{\""loyalty\"": \""30%\""}",94629,0,"""South America""" +2023-05-01,71684,7920,"[\""Charger\"", \""Wireless Mouse\""]",3818.84,"{\"": \""8%\""}",186479,1,"""North America""" +2024-06-09,71685,5141,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4310.03,"{\"": \""5%\""}",209724,1,"""Africa""" +2023-03-28,71686,9769,"[\""Charger\"", \""Laptop\""]",4149.56,"{\""loyalty\"": \""29%\""}",264368,0,"""North America""" +2023-07-27,71687,810,"[\""Laptop\"", \""Monitor\""]",385.36,{},282005,0,"""Africa""" +2024-02-23,71688,2552,"[\""Keyboard\""]",3753.71,"{\""promo\"": \""23%\""}",192187,1,"""Africa""" +2024-05-20,71689,2481,"[\""Tablet\"", \""Laptop\""]",4004.82,{},12240,0,"""Europe""" +2024-11-11,71690,4671,"[\""Wireless Mouse\"", \""Tablet\""]",3209.26,"{\"": \""8%\""}",292275,1,"""Europe""" +2023-11-09,71691,6412,"[\""Charger\"", \""Monitor\""]",2862.26,{},246317,0,"""South America""" +2024-03-07,71692,3410,"[\""Monitor\""]",4977.54,{},138400,0,"""North America""" +2023-05-17,71693,6830,"[\""Keyboard\"", \""Laptop\""]",1170.61,{},24299,1,"""South America""" +2024-06-05,71694,4721,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",254.34,{},73651,0,"""South America""" +2024-05-21,71695,9569,"[\""Charger\"", \""Monitor\""]",3114.37,"{\""promo\"": \""17%\""}",123176,1,"""Europe""" +2024-12-03,71696,3079,"[\""Wireless Mouse\"", \""Charger\""]",2924.5,{},180939,0,"""Africa""" +2024-12-22,71697,6301,"[\""Headphones\""]",2252.56,{},87073,1,"""North America""" +2023-12-31,71698,7374,"[\""Monitor\""]",1770.36,{},151700,1,"""Africa""" +2023-12-18,71699,317,"[\""Wireless Mouse\"", \""Monitor\""]",325.83,{},255572,1,"""South America""" +2023-12-16,71700,5607,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3354.56,"{\""promo\"": \""14%\""}",58156,0,"""North America""" +2023-12-09,71701,5229,"[\""Charger\"", \""Tablet\""]",3563.6,"{\"": \""29%\""}",3188,1,"""Africa""" +2023-12-21,71702,2965,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",991.97,"{\""seasonal\"": \""24%\""}",64386,1,"""South America""" +2024-06-12,71703,4579,"[\""Keyboard\"", \""Tablet\""]",2604.77,"{\""promo\"": \""12%\""}",232487,0,"""North America""" +2023-03-28,71704,5440,"[\""Charger\""]",1395.53,{},101705,0,"""Europe""" +2024-09-21,71705,1478,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4746.03,{},197311,1,"""North America""" +2024-02-17,71706,3782,"[\""Monitor\"", \""Phone\""]",3560.07,"{\"": \""18%\""}",112067,0,"""Africa""" +2024-11-14,71707,4208,"[\""Charger\"", \""Tablet\""]",2664.02,"{\""loyalty\"": \""16%\""}",245324,1,"""Asia""" +2023-04-27,71708,2060,"[\""Monitor\""]",3485.09,"{\""seasonal\"": \""20%\""}",16604,1,"""Europe""" +2024-12-14,71709,8504,"[\""Monitor\"", \""Tablet\""]",1820.01,"{\""seasonal\"": \""20%\""}",5788,0,"""Asia""" +2023-12-01,71710,9533,"[\""Tablet\"", \""Monitor\""]",1076.37,"{\""promo\"": \""28%\""}",226108,1,"""South America""" +2024-09-06,71711,6142,"[\""Monitor\"", \""Keyboard\""]",462.97,{},172121,1,"""South America""" +2023-03-13,71712,8026,"[\""Tablet\""]",246.77,{},265074,1,"""Asia""" +2024-12-22,71713,805,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4230.43,{},248938,0,"""Europe""" +2024-11-02,71714,8132,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2659.07,"{\""promo\"": \""8%\""}",162121,1,"""Europe""" +2023-03-11,71715,2418,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",549.56,"{\""seasonal\"": \""25%\""}",219478,1,"""Africa""" +2023-08-26,71716,3015,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4282.63,{},282618,0,"""Asia""" +2024-07-30,71717,7326,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4040.68,{},121657,0,"""Asia""" +2024-10-25,71718,4299,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3055.71,{},172346,0,"""North America""" +2024-09-04,71719,6999,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2465.35,{},131888,0,"""Africa""" +2023-12-16,71720,3071,"[\""Headphones\"", \""Laptop\""]",3460.15,"{\"": \""18%\""}",41727,1,"""North America""" +2024-12-27,71721,5357,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4203.81,{},73339,1,"""Europe""" +2023-07-28,71722,9882,"[\""Laptop\"", \""Headphones\""]",4085.63,{},174562,1,"""Asia""" +2024-06-12,71723,3714,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3702.76,{},42799,1,"""South America""" +2023-06-19,71724,2259,"[\""Keyboard\"", \""Laptop\""]",3697.57,"{\""loyalty\"": \""29%\""}",156105,0,"""North America""" +2024-08-21,71725,9451,"[\""Wireless Mouse\"", \""Headphones\""]",3881.6,{},71535,1,"""Europe""" +2024-03-26,71726,6258,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",142.89,"{\""promo\"": \""8%\""}",232183,1,"""Africa""" +2024-02-27,71727,9504,"[\""Headphones\""]",683.85,"{\""seasonal\"": \""24%\""}",259385,1,"""Europe""" +2023-02-05,71728,9214,"[\""Phone\"", \""Charger\""]",2531.9,"{\""seasonal\"": \""15%\""}",191623,1,"""North America""" +2023-02-28,71729,1839,"[\""Phone\"", \""Keyboard\""]",872.56,{},240303,1,"""Africa""" +2024-09-26,71730,3042,"[\""Tablet\"", \""Phone\""]",484.52,{},138489,0,"""Africa""" +2023-08-18,71731,8609,"[\""Keyboard\""]",3727.8,"{\""seasonal\"": \""18%\""}",19242,0,"""South America""" +2024-11-28,71732,5737,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3016.97,{},212152,1,"""South America""" +2023-12-05,71733,550,"[\""Phone\""]",4400.99,{},68196,1,"""South America""" +2023-01-10,71734,2316,"[\""Keyboard\""]",1654.47,{},86041,1,"""Africa""" +2024-11-15,71735,1344,"[\""Phone\"", \""Charger\""]",3853.86,"{\"": \""13%\""}",297750,1,"""South America""" +2023-03-04,71736,3815,"[\""Tablet\"", \""Wireless Mouse\""]",4144.08,{},133410,1,"""Asia""" +2024-12-13,71737,2032,"[\""Headphones\""]",2030.67,{},178708,1,"""Asia""" +2023-11-18,71738,8988,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1503.22,{},65476,0,"""Asia""" +2023-02-27,71739,2731,"[\""Laptop\"", \""Wireless Mouse\""]",2299.38,"{\""promo\"": \""30%\""}",11757,1,"""North America""" +2024-07-17,71740,9815,"[\""Tablet\"", \""Monitor\""]",2758.78,"{\""seasonal\"": \""18%\""}",162572,0,"""South America""" +2024-07-31,71741,2218,"[\""Keyboard\"", \""Laptop\""]",2987.4,"{\""promo\"": \""30%\""}",16378,1,"""Europe""" +2024-04-21,71742,5207,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",495.04,"{\""seasonal\"": \""26%\""}",56750,0,"""Asia""" +2024-08-27,71743,2705,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4236.02,{},98807,0,"""North America""" +2023-07-17,71744,6534,"[\""Monitor\"", \""Phone\""]",1695.12,"{\""seasonal\"": \""26%\""}",262657,1,"""Europe""" +2023-12-31,71745,6722,"[\""Headphones\"", \""Monitor\""]",2109.44,"{\""seasonal\"": \""22%\""}",283283,1,"""South America""" +2024-05-24,71746,6116,"[\""Tablet\"", \""Wireless Mouse\""]",1823.57,{},284648,0,"""North America""" +2023-09-02,71747,7369,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4200.28,{},29858,0,"""Europe""" +2024-07-09,71748,4173,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2395.34,"{\"": \""27%\""}",49587,1,"""Europe""" +2024-10-21,71749,808,"[\""Headphones\"", \""Phone\""]",1075.14,"{\""loyalty\"": \""23%\""}",84068,0,"""Europe""" +2024-04-04,71750,490,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1739.92,"{\""loyalty\"": \""7%\""}",273195,0,"""Africa""" +2024-03-09,71751,7499,"[\""Tablet\"", \""Monitor\""]",765.51,{},269941,1,"""Europe""" +2024-05-26,71752,7025,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1682.7,"{\""seasonal\"": \""8%\""}",32028,0,"""Asia""" +2023-07-20,71753,6496,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2912.54,{},3275,0,"""South America""" +2023-06-19,71754,7672,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4398.09,{},286824,1,"""Africa""" +2023-08-03,71755,4340,"[\""Phone\"", \""Charger\""]",4239.56,{},120453,1,"""Africa""" +2024-05-14,71756,9230,"[\""Wireless Mouse\"", \""Tablet\""]",323.64,"{\""loyalty\"": \""22%\""}",119990,1,"""Europe""" +2024-03-13,71757,9294,"[\""Keyboard\"", \""Phone\""]",3949.3,"{\"": \""9%\""}",270401,1,"""Europe""" +2024-08-28,71758,1261,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1889.74,{},99361,1,"""North America""" +2023-10-29,71759,8267,"[\""Headphones\""]",860.34,{},270066,0,"""Asia""" +2024-06-01,71760,8299,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4795.29,{},218958,1,"""North America""" +2023-12-19,71761,9325,"[\""Headphones\"", \""Laptop\""]",2343.2,{},93608,1,"""North America""" +2024-03-08,71762,5548,"[\""Headphones\"", \""Phone\""]",3048.27,{},98397,1,"""North America""" +2023-06-14,71763,7351,"[\""Headphones\""]",4296.66,{},52919,1,"""Europe""" +2024-01-08,71764,8123,"[\""Wireless Mouse\"", \""Headphones\""]",1917.88,{},21546,1,"""Africa""" +2023-11-09,71765,3257,"[\""Headphones\""]",3614.84,"{\""seasonal\"": \""13%\""}",209391,0,"""Africa""" +2024-01-16,71766,1013,"[\""Laptop\"", \""Charger\""]",2620.4,"{\""loyalty\"": \""16%\""}",54760,0,"""Asia""" +2024-07-09,71767,1743,"[\""Laptop\"", \""Charger\""]",4943.82,"{\""loyalty\"": \""5%\""}",227352,1,"""South America""" +2023-01-25,71768,3290,"[\""Headphones\"", \""Laptop\""]",1904.12,"{\""loyalty\"": \""25%\""}",46565,0,"""South America""" +2023-03-31,71769,7828,"[\""Headphones\""]",2614.92,{},110236,1,"""Europe""" +2024-08-01,71770,5480,"[\""Phone\""]",2026.33,"{\""promo\"": \""10%\""}",298526,1,"""North America""" +2024-10-30,71771,8953,"[\""Keyboard\"", \""Charger\""]",4564.09,{},21431,1,"""South America""" +2024-04-17,71772,7183,"[\""Headphones\""]",3609.7,{},2684,0,"""Europe""" +2023-07-13,71773,8807,"[\""Wireless Mouse\"", \""Monitor\""]",1160.99,{},201768,0,"""South America""" +2023-07-30,71774,7020,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4096.03,"{\""promo\"": \""10%\""}",1333,1,"""North America""" +2024-01-12,71775,8183,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4645.49,{},249727,1,"""North America""" +2023-05-19,71776,1012,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",100.4,"{\""promo\"": \""30%\""}",174528,0,"""Asia""" +2024-07-21,71777,3304,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2551.72,{},31066,1,"""Africa""" +2023-06-18,71778,9455,"[\""Charger\""]",3500.51,"{\"": \""10%\""}",104882,1,"""South America""" +2023-09-18,71779,8593,"[\""Keyboard\"", \""Phone\""]",257.18,{},3866,0,"""North America""" +2023-08-18,71780,7836,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4091.96,{},18011,0,"""South America""" +2023-05-29,71781,2948,"[\""Wireless Mouse\"", \""Laptop\""]",1307.48,{},47921,0,"""Africa""" +2024-12-23,71782,5976,"[\""Tablet\"", \""Wireless Mouse\""]",1409.16,{},7439,0,"""Africa""" +2023-06-01,71783,3491,"[\""Charger\""]",4044.53,{},40639,1,"""North America""" +2024-06-30,71784,9683,"[\""Monitor\""]",247.73,"{\"": \""5%\""}",286608,0,"""South America""" +2024-10-07,71785,6436,"[\""Keyboard\""]",1236.92,"{\""promo\"": \""24%\""}",72641,0,"""South America""" +2023-02-22,71786,9084,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1601.15,"{\""promo\"": \""25%\""}",102537,0,"""South America""" +2024-11-10,71787,2127,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2431.22,"{\""seasonal\"": \""27%\""}",142031,1,"""North America""" +2024-09-20,71788,84,"[\""Monitor\""]",4429.63,{},277142,0,"""North America""" +2024-05-01,71789,3481,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2683.1,"{\""promo\"": \""27%\""}",231908,0,"""Asia""" +2023-02-24,71790,4526,"[\""Phone\""]",1015.07,"{\""loyalty\"": \""23%\""}",97817,1,"""Europe""" +2023-02-06,71791,3146,"[\""Tablet\""]",2106.81,{},152593,0,"""Asia""" +2023-06-22,71792,8217,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4502.15,{},49871,1,"""North America""" +2023-12-31,71793,2056,"[\""Keyboard\""]",487.62,{},199125,0,"""Asia""" +2024-02-28,71794,9885,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3347.16,"{\"": \""28%\""}",245744,0,"""Africa""" +2024-06-04,71795,6434,"[\""Monitor\""]",2479.64,{},203394,0,"""South America""" +2024-01-03,71796,939,"[\""Keyboard\""]",3537.69,{},101046,1,"""Europe""" +2024-05-01,71797,2729,"[\""Charger\""]",4362.9,{},226898,0,"""North America""" +2024-08-19,71798,2673,"[\""Charger\""]",1978.74,"{\""seasonal\"": \""16%\""}",74029,1,"""Europe""" +2024-01-22,71799,5353,"[\""Monitor\""]",54.61,{},25895,0,"""Asia""" +2023-01-31,71800,2664,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1118.84,{},37787,1,"""Europe""" +2024-01-27,71801,3278,"[\""Wireless Mouse\"", \""Laptop\""]",3539.81,{},232570,1,"""South America""" +2024-03-13,71802,5765,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3698.49,{},237414,0,"""Europe""" +2023-01-08,71803,7638,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3886.47,{},82577,0,"""North America""" +2024-10-10,71804,7349,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4169.11,"{\""promo\"": \""8%\""}",290952,0,"""Asia""" +2023-12-08,71805,1779,"[\""Keyboard\"", \""Phone\""]",4797.37,{},261312,1,"""Asia""" +2023-12-26,71806,5317,"[\""Laptop\""]",3060.91,{},70292,0,"""South America""" +2024-01-11,71807,9883,"[\""Keyboard\"", \""Phone\""]",1246.14,"{\""loyalty\"": \""13%\""}",276430,0,"""North America""" +2024-10-26,71808,745,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1800.57,"{\""loyalty\"": \""21%\""}",78878,0,"""Africa""" +2024-02-04,71809,9936,"[\""Laptop\"", \""Tablet\""]",2791.2,{},154584,0,"""Europe""" +2023-06-17,71810,7568,"[\""Phone\"", \""Wireless Mouse\""]",1907.32,{},166003,1,"""Africa""" +2023-03-26,71811,366,"[\""Laptop\""]",3855.37,"{\""promo\"": \""8%\""}",60683,0,"""Africa""" +2024-07-08,71812,3057,"[\""Keyboard\""]",875.24,"{\""loyalty\"": \""29%\""}",208929,1,"""South America""" +2023-06-13,71813,867,"[\""Phone\""]",1135.35,{},231990,0,"""South America""" +2024-07-07,71814,3874,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",582.49,"{\""loyalty\"": \""16%\""}",24746,0,"""Africa""" +2024-06-16,71815,7395,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1360.0,{},258369,1,"""Europe""" +2024-04-15,71816,2564,"[\""Tablet\""]",522.56,{},90752,0,"""Asia""" +2023-04-06,71817,2793,"[\""Headphones\"", \""Laptop\""]",2734.83,"{\"": \""9%\""}",67260,1,"""Europe""" +2024-08-28,71818,4553,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",292.15,"{\""seasonal\"": \""17%\""}",188208,1,"""Africa""" +2024-07-12,71819,543,"[\""Monitor\"", \""Headphones\""]",1404.41,{},288498,1,"""Africa""" +2023-09-17,71820,8836,"[\""Tablet\"", \""Keyboard\""]",1078.5,"{\"": \""16%\""}",157214,0,"""Asia""" +2024-01-18,71821,6444,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4447.36,{},246365,0,"""Asia""" +2024-11-01,71822,3569,"[\""Phone\"", \""Wireless Mouse\""]",2156.31,"{\""loyalty\"": \""22%\""}",234741,1,"""North America""" +2024-05-30,71823,6606,"[\""Headphones\""]",3316.11,"{\""loyalty\"": \""24%\""}",179783,1,"""South America""" +2023-06-18,71824,3357,"[\""Tablet\""]",2423.1,{},247858,1,"""South America""" +2023-04-10,71825,4739,"[\""Charger\""]",1243.37,"{\""promo\"": \""30%\""}",247673,0,"""Africa""" +2024-01-23,71826,5706,"[\""Headphones\""]",3206.4,{},147786,0,"""South America""" +2024-12-08,71827,613,"[\""Charger\""]",815.07,{},24136,0,"""Africa""" +2024-04-22,71828,9315,"[\""Tablet\""]",900.21,{},231382,1,"""South America""" +2023-08-30,71829,714,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3607.42,"{\""seasonal\"": \""18%\""}",133842,0,"""Africa""" +2023-04-14,71830,2941,"[\""Wireless Mouse\""]",4524.7,{},154103,0,"""Asia""" +2023-06-29,71831,8703,"[\""Wireless Mouse\"", \""Headphones\""]",4242.23,{},244783,0,"""Asia""" +2024-07-05,71832,4223,"[\""Charger\""]",1459.87,"{\""loyalty\"": \""25%\""}",170681,0,"""North America""" +2023-02-02,71833,7520,"[\""Keyboard\""]",987.86,{},95019,1,"""South America""" +2024-10-19,71834,1985,"[\""Headphones\""]",1253.56,"{\"": \""28%\""}",47578,1,"""South America""" +2023-10-10,71835,2480,"[\""Tablet\"", \""Charger\""]",2063.19,{},10308,0,"""Africa""" +2023-08-27,71836,5113,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",969.58,"{\"": \""9%\""}",227484,1,"""North America""" +2023-10-31,71837,3079,"[\""Charger\""]",2765.51,"{\""seasonal\"": \""27%\""}",5078,0,"""North America""" +2023-12-07,71838,942,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",370.53,"{\""loyalty\"": \""24%\""}",28310,1,"""South America""" +2024-08-19,71839,4604,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3939.55,{},258932,1,"""North America""" +2023-05-31,71840,8269,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4068.71,{},25352,0,"""South America""" +2023-10-31,71841,108,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2216.7,{},153055,1,"""Europe""" +2023-04-09,71842,2842,"[\""Charger\"", \""Tablet\"", \""Phone\""]",859.16,{},231202,1,"""Asia""" +2024-08-22,71843,1944,"[\""Phone\"", \""Monitor\""]",2313.68,{},238846,1,"""Europe""" +2024-07-20,71844,5509,"[\""Wireless Mouse\"", \""Laptop\""]",4152.47,"{\""loyalty\"": \""20%\""}",148985,0,"""South America""" +2024-01-20,71845,3487,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",714.96,"{\""seasonal\"": \""25%\""}",38956,0,"""Europe""" +2023-05-08,71846,1329,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2178.24,{},105236,0,"""Africa""" +2024-04-11,71847,9716,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3345.39,{},148250,0,"""Africa""" +2023-08-31,71848,1760,"[\""Monitor\""]",2423.1,"{\"": \""10%\""}",10636,0,"""North America""" +2023-04-27,71849,8773,"[\""Laptop\"", \""Charger\""]",1758.19,"{\"": \""11%\""}",119016,1,"""Europe""" +2023-08-05,71850,8150,"[\""Laptop\""]",1000.32,"{\""loyalty\"": \""11%\""}",233683,0,"""Europe""" +2023-01-26,71851,8932,"[\""Laptop\""]",1825.93,{},205394,0,"""South America""" +2023-11-07,71852,5835,"[\""Charger\""]",4759.42,{},264508,1,"""Europe""" +2024-08-25,71853,4130,"[\""Tablet\"", \""Wireless Mouse\""]",871.32,{},263736,1,"""Africa""" +2023-12-30,71854,671,"[\""Wireless Mouse\""]",3957.82,{},202577,0,"""Asia""" +2023-06-10,71855,9934,"[\""Monitor\"", \""Laptop\""]",1441.23,"{\"": \""9%\""}",6580,1,"""North America""" +2023-07-11,71856,474,"[\""Tablet\""]",2754.94,{},1022,0,"""Africa""" +2024-08-31,71857,7440,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2639.95,"{\""seasonal\"": \""22%\""}",150016,0,"""Africa""" +2024-04-21,71858,6628,"[\""Keyboard\""]",1538.88,{},224045,0,"""South America""" +2024-11-16,71859,9786,"[\""Keyboard\""]",3818.42,"{\""loyalty\"": \""29%\""}",177487,1,"""Europe""" +2023-07-07,71860,4459,"[\""Charger\"", \""Headphones\""]",2909.63,"{\""promo\"": \""13%\""}",114736,0,"""Africa""" +2023-02-14,71861,5729,"[\""Keyboard\""]",1269.68,{},69096,1,"""North America""" +2023-01-26,71862,2035,"[\""Monitor\"", \""Wireless Mouse\""]",2084.89,{},74000,0,"""Asia""" +2023-02-23,71863,675,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1652.47,"{\"": \""7%\""}",229738,0,"""Europe""" +2023-06-05,71864,8360,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2760.97,{},44769,0,"""Europe""" +2023-05-11,71865,8001,"[\""Wireless Mouse\""]",1144.93,"{\""loyalty\"": \""7%\""}",126834,1,"""South America""" +2023-01-30,71866,8935,"[\""Headphones\""]",3608.94,"{\""seasonal\"": \""22%\""}",159910,0,"""Europe""" +2024-03-20,71867,4577,"[\""Wireless Mouse\"", \""Keyboard\""]",123.99,"{\""seasonal\"": \""19%\""}",49106,0,"""Asia""" +2023-10-15,71868,837,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4170.36,{},227479,1,"""Africa""" +2023-02-28,71869,3046,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",72.43,"{\"": \""14%\""}",205520,1,"""Europe""" +2024-06-13,71870,36,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",371.55,"{\"": \""11%\""}",17961,0,"""Europe""" +2024-07-28,71871,4268,"[\""Wireless Mouse\""]",4940.82,"{\""loyalty\"": \""19%\""}",277428,1,"""Africa""" +2023-04-23,71872,4428,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4833.64,{},124411,1,"""Europe""" +2024-07-09,71873,1924,"[\""Wireless Mouse\"", \""Headphones\""]",1116.9,{},39515,0,"""Europe""" +2024-01-04,71874,9757,"[\""Laptop\""]",885.18,"{\"": \""22%\""}",93927,1,"""Asia""" +2024-05-04,71875,2384,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2586.41,{},170093,0,"""Africa""" +2024-06-01,71876,70,"[\""Headphones\"", \""Charger\""]",3427.67,{},19873,1,"""Asia""" +2023-12-21,71877,6490,"[\""Wireless Mouse\"", \""Monitor\""]",4862.62,"{\"": \""13%\""}",157819,1,"""Europe""" +2024-06-28,71878,4228,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3193.99,{},149645,1,"""North America""" +2024-08-26,71879,2643,"[\""Tablet\"", \""Monitor\""]",148.07,"{\""promo\"": \""29%\""}",235990,0,"""Africa""" +2023-06-29,71880,2355,"[\""Wireless Mouse\""]",2545.14,{},101030,0,"""North America""" +2023-12-02,71881,2518,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",260.82,"{\""seasonal\"": \""26%\""}",175229,0,"""Asia""" +2024-07-17,71882,6446,"[\""Tablet\"", \""Phone\""]",434.35,{},253744,0,"""North America""" +2024-05-27,71883,9606,"[\""Wireless Mouse\""]",363.04,"{\""promo\"": \""28%\""}",200116,0,"""Africa""" +2024-06-05,71884,481,"[\""Phone\""]",518.85,"{\""loyalty\"": \""14%\""}",22782,1,"""Africa""" +2024-03-22,71885,3092,"[\""Laptop\""]",631.81,"{\""promo\"": \""10%\""}",152593,1,"""Asia""" +2023-01-19,71886,8038,"[\""Monitor\"", \""Phone\""]",3985.42,"{\""promo\"": \""19%\""}",193282,1,"""Europe""" +2023-04-23,71887,8428,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1542.73,"{\"": \""19%\""}",126574,1,"""Africa""" +2024-10-31,71888,1814,"[\""Charger\""]",4350.21,{},223310,0,"""North America""" +2024-11-08,71889,8987,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",149.95,"{\""promo\"": \""19%\""}",19882,0,"""South America""" +2024-06-30,71890,9211,"[\""Monitor\""]",4872.82,"{\"": \""5%\""}",176619,1,"""North America""" +2024-03-10,71891,5285,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3049.32,{},115374,1,"""South America""" +2024-06-03,71892,5565,"[\""Monitor\""]",3768.56,{},282934,0,"""North America""" +2023-03-25,71893,6325,"[\""Phone\""]",368.61,{},64369,1,"""Asia""" +2024-12-16,71894,3248,"[\""Laptop\"", \""Phone\""]",1233.69,"{\""loyalty\"": \""9%\""}",211425,1,"""Europe""" +2023-05-15,71895,6198,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3411.67,{},180572,1,"""North America""" +2023-02-05,71896,3670,"[\""Phone\""]",882.02,"{\""loyalty\"": \""20%\""}",290433,0,"""Asia""" +2023-06-16,71897,7853,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1435.84,"{\""seasonal\"": \""29%\""}",114246,1,"""Asia""" +2024-03-10,71898,8902,"[\""Monitor\""]",2889.02,"{\""loyalty\"": \""7%\""}",111681,0,"""Africa""" +2024-01-29,71899,5045,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3382.29,"{\""promo\"": \""8%\""}",98919,0,"""South America""" +2024-04-28,71900,7298,"[\""Laptop\""]",3355.51,"{\""promo\"": \""5%\""}",259072,1,"""South America""" +2023-06-23,71901,5329,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",550.5,"{\""promo\"": \""30%\""}",164319,1,"""Europe""" +2023-05-06,71902,8254,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3078.94,"{\""promo\"": \""11%\""}",220492,0,"""South America""" +2023-01-31,71903,7582,"[\""Charger\""]",2937.49,{},114017,1,"""Asia""" +2024-01-26,71904,7742,"[\""Tablet\""]",1812.51,"{\""loyalty\"": \""6%\""}",73762,1,"""Asia""" +2023-04-02,71905,7950,"[\""Tablet\"", \""Monitor\""]",4040.05,"{\""seasonal\"": \""6%\""}",154814,0,"""South America""" +2024-12-24,71906,5278,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4989.3,"{\""promo\"": \""11%\""}",21317,1,"""Africa""" +2024-11-15,71907,72,"[\""Tablet\""]",184.24,"{\""seasonal\"": \""14%\""}",114444,1,"""Asia""" +2023-11-19,71908,3048,"[\""Monitor\""]",2066.5,"{\""loyalty\"": \""17%\""}",83309,1,"""Asia""" +2024-08-29,71909,3349,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2567.99,{},64998,0,"""North America""" +2024-08-09,71910,8081,"[\""Headphones\""]",903.6,{},129701,0,"""Europe""" +2023-08-02,71911,9148,"[\""Charger\""]",3676.72,{},151929,1,"""Europe""" +2024-11-29,71912,3827,"[\""Wireless Mouse\""]",3751.95,"{\""promo\"": \""6%\""}",94528,1,"""North America""" +2023-07-02,71913,9453,"[\""Monitor\""]",1438.52,"{\""seasonal\"": \""17%\""}",217606,1,"""Europe""" +2024-09-25,71914,3909,"[\""Tablet\""]",3696.2,{},106736,1,"""South America""" +2024-11-24,71915,2677,"[\""Headphones\""]",156.24,{},234498,1,"""Europe""" +2024-06-19,71916,9912,"[\""Headphones\"", \""Keyboard\""]",1365.06,{},30597,1,"""Asia""" +2024-04-17,71917,3012,"[\""Phone\"", \""Keyboard\""]",1812.33,{},74955,1,"""North America""" +2024-07-24,71918,5275,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2162.94,"{\""seasonal\"": \""17%\""}",128795,0,"""Africa""" +2023-05-12,71919,5443,"[\""Wireless Mouse\""]",4639.39,"{\""seasonal\"": \""23%\""}",85819,0,"""Europe""" +2023-06-29,71920,4655,"[\""Phone\"", \""Wireless Mouse\""]",182.84,"{\"": \""16%\""}",217834,1,"""Europe""" +2023-02-03,71921,5966,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2080.23,"{\""promo\"": \""12%\""}",151403,0,"""Africa""" +2023-09-15,71922,2206,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2528.87,"{\""loyalty\"": \""20%\""}",27253,1,"""Asia""" +2023-07-14,71923,7132,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",870.68,"{\""loyalty\"": \""25%\""}",250445,1,"""Africa""" +2023-03-07,71924,9000,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1849.35,"{\""promo\"": \""7%\""}",100730,1,"""South America""" +2024-09-29,71925,3992,"[\""Phone\"", \""Charger\""]",1313.8,{},18919,1,"""North America""" +2024-12-10,71926,5822,"[\""Phone\""]",2152.39,{},283255,1,"""South America""" +2024-05-30,71927,2681,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4950.11,{},55738,1,"""Asia""" +2023-04-29,71928,7389,"[\""Charger\"", \""Laptop\""]",4414.33,"{\"": \""11%\""}",275830,1,"""South America""" +2023-09-03,71929,2014,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2153.02,"{\""seasonal\"": \""26%\""}",281698,0,"""South America""" +2024-03-13,71930,7360,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4380.7,{},177092,1,"""South America""" +2023-06-28,71931,7411,"[\""Phone\"", \""Wireless Mouse\""]",3503.95,"{\""promo\"": \""28%\""}",219887,1,"""South America""" +2023-02-27,71932,1961,"[\""Laptop\""]",982.33,"{\""promo\"": \""11%\""}",265904,1,"""Asia""" +2024-08-04,71933,6785,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2876.28,{},234956,0,"""Asia""" +2024-11-16,71934,51,"[\""Headphones\"", \""Laptop\""]",4036.03,{},116795,0,"""North America""" +2024-08-19,71935,5010,"[\""Headphones\"", \""Wireless Mouse\""]",4177.37,"{\""promo\"": \""20%\""}",158219,0,"""South America""" +2023-02-22,71936,4566,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3661.94,"{\"": \""8%\""}",83176,0,"""Asia""" +2024-06-02,71937,3530,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2828.46,"{\""promo\"": \""19%\""}",122482,1,"""Africa""" +2024-08-06,71938,3529,"[\""Monitor\""]",2827.81,"{\""loyalty\"": \""30%\""}",281818,1,"""Europe""" +2024-08-01,71939,7861,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4108.78,{},21796,0,"""South America""" +2023-07-05,71940,4403,"[\""Tablet\""]",3744.07,{},143931,0,"""North America""" +2023-12-02,71941,8551,"[\""Phone\""]",246.72,{},104854,1,"""South America""" +2024-04-07,71942,1960,"[\""Headphones\""]",3151.9,"{\""loyalty\"": \""12%\""}",147187,1,"""Africa""" +2023-10-06,71943,8179,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1932.0,{},291552,0,"""North America""" +2024-11-01,71944,8058,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",146.71,"{\""promo\"": \""11%\""}",107005,1,"""Europe""" +2024-05-07,71945,3246,"[\""Tablet\""]",1214.79,"{\"": \""7%\""}",266805,1,"""Europe""" +2024-03-16,71946,3817,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1562.73,"{\"": \""12%\""}",158057,1,"""Asia""" +2023-05-27,71947,30,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",538.77,"{\""promo\"": \""10%\""}",62520,1,"""Africa""" +2023-07-09,71948,9540,"[\""Monitor\"", \""Wireless Mouse\""]",4574.51,"{\""loyalty\"": \""30%\""}",214829,1,"""Africa""" +2024-06-14,71949,813,"[\""Headphones\""]",3398.25,{},224543,0,"""South America""" +2024-04-13,71950,8470,"[\""Monitor\"", \""Tablet\""]",704.6,{},115372,1,"""Africa""" +2024-01-25,71951,1935,"[\""Tablet\"", \""Monitor\""]",4382.69,"{\"": \""21%\""}",65394,0,"""Africa""" +2024-10-17,71952,8403,"[\""Tablet\""]",3472.04,{},148886,1,"""Europe""" +2023-08-26,71953,2538,"[\""Phone\"", \""Laptop\""]",2788.11,"{\""seasonal\"": \""27%\""}",268985,1,"""South America""" +2024-01-07,71954,6463,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1602.57,{},69367,1,"""South America""" +2023-10-05,71955,6077,"[\""Laptop\"", \""Tablet\""]",2221.83,{},148373,1,"""North America""" +2024-02-03,71956,3319,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",217.57,"{\""seasonal\"": \""8%\""}",287728,0,"""Europe""" +2023-04-07,71957,8272,"[\""Laptop\"", \""Phone\""]",4765.51,{},19003,0,"""South America""" +2023-05-07,71958,5620,"[\""Headphones\""]",1620.66,{},139294,1,"""North America""" +2024-10-17,71959,9773,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",680.68,{},225671,1,"""South America""" +2024-05-18,71960,239,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3644.35,{},104777,0,"""Europe""" +2023-03-17,71961,6548,"[\""Charger\"", \""Keyboard\""]",3004.09,"{\""seasonal\"": \""23%\""}",243611,0,"""Asia""" +2023-09-09,71962,2443,"[\""Monitor\""]",4083.11,{},99700,0,"""South America""" +2023-10-17,71963,2277,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1373.35,{},252095,1,"""Africa""" +2024-02-06,71964,6721,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2339.94,"{\""promo\"": \""26%\""}",177811,1,"""Asia""" +2023-11-07,71965,4899,"[\""Keyboard\""]",2052.21,"{\"": \""12%\""}",286691,1,"""Asia""" +2024-08-29,71966,8507,"[\""Wireless Mouse\"", \""Keyboard\""]",2362.84,{},267268,1,"""North America""" +2024-02-05,71967,4339,"[\""Tablet\""]",2600.09,"{\""loyalty\"": \""20%\""}",53281,1,"""Africa""" +2024-02-01,71968,6127,"[\""Charger\"", \""Tablet\""]",184.18,"{\""loyalty\"": \""30%\""}",298530,0,"""Africa""" +2023-10-13,71969,9817,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2524.42,"{\""promo\"": \""5%\""}",48466,1,"""South America""" +2023-11-21,71970,4459,"[\""Keyboard\""]",369.44,"{\""promo\"": \""15%\""}",205396,0,"""North America""" +2024-06-20,71971,2859,"[\""Headphones\""]",3528.73,"{\""seasonal\"": \""24%\""}",229746,0,"""Africa""" +2024-06-21,71972,8324,"[\""Wireless Mouse\""]",3217.68,{},129626,0,"""North America""" +2023-11-11,71973,4715,"[\""Headphones\""]",1154.54,"{\""seasonal\"": \""22%\""}",291152,1,"""South America""" +2024-11-04,71974,8650,"[\""Laptop\"", \""Wireless Mouse\""]",430.11,{},58006,0,"""Asia""" +2023-06-17,71975,5015,"[\""Headphones\"", \""Phone\""]",1488.23,"{\"": \""6%\""}",260617,1,"""Africa""" +2023-04-20,71976,5161,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2066.06,{},103466,0,"""Europe""" +2023-02-25,71977,7662,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1058.3,{},80852,0,"""Africa""" +2024-01-20,71978,6049,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4658.56,{},161087,0,"""Europe""" +2024-06-29,71979,1241,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4081.45,{},44857,0,"""Asia""" +2024-12-25,71980,4668,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3420.72,{},167494,0,"""Europe""" +2024-06-14,71981,6571,"[\""Wireless Mouse\"", \""Monitor\""]",3307.27,"{\""promo\"": \""19%\""}",122745,0,"""Europe""" +2024-07-14,71982,9257,"[\""Keyboard\"", \""Phone\""]",4577.47,"{\""loyalty\"": \""30%\""}",43798,1,"""Africa""" +2023-07-09,71983,6160,"[\""Keyboard\""]",351.8,{},70423,0,"""Europe""" +2024-06-04,71984,7768,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4649.99,{},117727,0,"""Africa""" +2023-03-26,71985,6145,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2087.71,"{\""promo\"": \""26%\""}",251919,0,"""North America""" +2023-05-10,71986,5518,"[\""Wireless Mouse\""]",376.2,"{\"": \""23%\""}",163993,1,"""Europe""" +2023-06-04,71987,2564,"[\""Laptop\""]",1533.06,"{\""promo\"": \""6%\""}",296817,1,"""Asia""" +2023-08-01,71988,5872,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3455.04,"{\""promo\"": \""22%\""}",286599,1,"""Europe""" +2024-04-14,71989,4103,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",944.81,{},61999,0,"""Europe""" +2023-11-29,71990,6449,"[\""Headphones\""]",3213.43,"{\""loyalty\"": \""26%\""}",57469,0,"""Asia""" +2024-08-12,71991,8972,"[\""Tablet\"", \""Laptop\""]",3866.81,{},245043,0,"""Asia""" +2023-01-24,71992,6239,"[\""Tablet\""]",4795.31,{},214972,0,"""Africa""" +2023-01-08,71993,1742,"[\""Laptop\"", \""Wireless Mouse\""]",2578.14,"{\""promo\"": \""24%\""}",121126,1,"""Europe""" +2023-12-26,71994,1429,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",594.18,{},26674,0,"""North America""" +2024-10-30,71995,7861,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",552.61,{},78794,1,"""Europe""" +2023-12-06,71996,723,"[\""Tablet\"", \""Charger\""]",2973.63,{},133715,0,"""Africa""" +2024-01-16,71997,7591,"[\""Wireless Mouse\""]",3001.28,{},90497,1,"""Africa""" +2023-12-29,71998,4943,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1952.11,{},16912,1,"""Europe""" +2023-06-02,71999,9717,"[\""Tablet\"", \""Phone\""]",342.77,"{\""loyalty\"": \""29%\""}",239685,0,"""Europe""" +2024-10-20,72000,8554,"[\""Monitor\""]",3173.25,"{\""loyalty\"": \""14%\""}",129820,1,"""Europe""" +2023-02-09,72001,1460,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2426.78,"{\""loyalty\"": \""22%\""}",109061,1,"""South America""" +2023-10-11,72002,245,"[\""Wireless Mouse\"", \""Charger\""]",4298.14,"{\""promo\"": \""8%\""}",107318,1,"""Europe""" +2023-03-01,72003,3931,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4651.96,"{\""loyalty\"": \""6%\""}",58186,0,"""South America""" +2024-10-05,72004,7941,"[\""Tablet\"", \""Phone\""]",4637.72,{},192552,1,"""South America""" +2023-03-17,72005,3322,"[\""Tablet\"", \""Monitor\""]",1004.76,"{\""promo\"": \""7%\""}",233704,0,"""North America""" +2023-09-08,72006,6856,"[\""Charger\""]",3145.28,"{\""seasonal\"": \""20%\""}",144364,0,"""North America""" +2023-05-20,72007,8696,"[\""Tablet\""]",3829.26,{},233959,0,"""Europe""" +2024-06-28,72008,9795,"[\""Charger\""]",1457.04,{},217609,1,"""North America""" +2023-09-14,72009,8379,"[\""Phone\"", \""Tablet\""]",3673.14,"{\""loyalty\"": \""14%\""}",16890,1,"""Africa""" +2023-03-08,72010,8330,"[\""Wireless Mouse\""]",228.88,{},287514,1,"""South America""" +2024-03-13,72011,3348,"[\""Phone\"", \""Tablet\""]",4497.45,"{\"": \""20%\""}",158247,1,"""North America""" +2024-03-12,72012,3017,"[\""Charger\"", \""Keyboard\""]",1083.78,{},256379,0,"""South America""" +2024-03-17,72013,2987,"[\""Wireless Mouse\""]",1754.35,{},214005,1,"""Africa""" +2024-08-12,72014,8136,"[\""Monitor\"", \""Tablet\""]",3656.14,"{\"": \""18%\""}",298022,1,"""South America""" +2023-04-04,72015,5806,"[\""Keyboard\"", \""Charger\""]",3250.75,"{\""promo\"": \""27%\""}",83201,1,"""Asia""" +2024-05-03,72016,1548,"[\""Tablet\""]",2595.91,{},46617,1,"""Africa""" +2024-01-10,72017,2178,"[\""Tablet\""]",2725.71,{},175735,0,"""North America""" +2024-02-08,72018,2518,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1855.73,"{\""promo\"": \""23%\""}",179106,0,"""South America""" +2024-04-29,72019,1126,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4721.8,{},71580,1,"""South America""" +2024-01-06,72020,7520,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2916.09,{},118998,1,"""Europe""" +2024-09-25,72021,7105,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3881.74,"{\""loyalty\"": \""5%\""}",19767,1,"""South America""" +2023-09-09,72022,4167,"[\""Tablet\"", \""Wireless Mouse\""]",3409.99,"{\"": \""17%\""}",127505,1,"""Asia""" +2024-08-12,72023,9894,"[\""Wireless Mouse\"", \""Monitor\""]",4301.9,{},253574,0,"""Africa""" +2023-03-14,72024,9548,"[\""Charger\""]",1383.5,"{\""promo\"": \""20%\""}",105344,0,"""Europe""" +2023-07-04,72025,6277,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3845.71,"{\""loyalty\"": \""27%\""}",188275,1,"""Africa""" +2023-05-01,72026,520,"[\""Charger\""]",75.48,"{\""promo\"": \""5%\""}",246269,1,"""Asia""" +2024-01-01,72027,1775,"[\""Monitor\""]",3849.61,{},134795,1,"""Africa""" +2024-09-26,72028,2361,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",881.51,{},2760,1,"""Asia""" +2023-12-29,72029,1287,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2366.04,{},295485,0,"""Asia""" +2024-01-20,72030,3716,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2491.22,{},145252,0,"""Asia""" +2023-02-16,72031,9449,"[\""Monitor\"", \""Tablet\""]",2775.47,"{\""promo\"": \""10%\""}",239994,0,"""Europe""" +2023-11-27,72032,9891,"[\""Headphones\""]",2188.81,"{\""loyalty\"": \""6%\""}",236077,0,"""Asia""" +2024-08-12,72033,1524,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4727.85,{},17269,0,"""South America""" +2023-06-19,72034,6469,"[\""Laptop\""]",2533.04,"{\""promo\"": \""24%\""}",268682,0,"""North America""" +2023-12-13,72035,214,"[\""Tablet\""]",333.92,{},198501,0,"""Asia""" +2023-12-01,72036,1716,"[\""Charger\""]",3228.82,{},19135,1,"""Africa""" +2023-06-20,72037,7482,"[\""Headphones\""]",931.11,"{\""loyalty\"": \""7%\""}",23123,0,"""Asia""" +2023-01-29,72038,2024,"[\""Wireless Mouse\"", \""Charger\""]",3285.12,{},227333,1,"""Asia""" +2023-01-23,72039,3477,"[\""Headphones\""]",133.39,"{\""loyalty\"": \""11%\""}",178946,0,"""Europe""" +2023-03-13,72040,5303,"[\""Laptop\"", \""Keyboard\""]",4503.25,{},100286,0,"""Europe""" +2023-09-19,72041,4441,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3112.66,"{\"": \""24%\""}",149972,0,"""North America""" +2023-02-05,72042,2315,"[\""Keyboard\"", \""Monitor\""]",1129.0,"{\""loyalty\"": \""27%\""}",257715,1,"""Africa""" +2024-01-26,72043,4346,"[\""Charger\""]",1793.2,{},192155,1,"""North America""" +2024-12-20,72044,9933,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1577.97,{},89757,0,"""Europe""" +2023-11-27,72045,5338,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4794.46,"{\""loyalty\"": \""16%\""}",208590,0,"""Africa""" +2023-03-31,72046,3166,"[\""Wireless Mouse\""]",4939.33,"{\""promo\"": \""22%\""}",254104,0,"""Asia""" +2024-08-13,72047,5497,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",715.16,"{\""seasonal\"": \""12%\""}",18968,1,"""Asia""" +2024-03-17,72048,2692,"[\""Laptop\"", \""Charger\""]",775.79,"{\""promo\"": \""22%\""}",73130,1,"""Africa""" +2024-08-14,72049,337,"[\""Laptop\""]",4780.83,"{\""promo\"": \""6%\""}",248919,1,"""North America""" +2024-07-29,72050,2882,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3931.77,"{\""loyalty\"": \""11%\""}",237837,1,"""North America""" +2024-12-07,72051,5708,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4859.63,"{\""loyalty\"": \""25%\""}",151033,1,"""Africa""" +2024-02-25,72052,9907,"[\""Charger\""]",4603.06,"{\"": \""25%\""}",281044,0,"""Asia""" +2024-03-20,72053,7134,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4094.99,"{\"": \""30%\""}",180379,1,"""South America""" +2024-02-13,72054,7127,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4011.19,{},202271,0,"""Europe""" +2024-12-20,72055,7626,"[\""Laptop\""]",4527.03,"{\""seasonal\"": \""10%\""}",144610,0,"""Asia""" +2024-07-07,72056,7920,"[\""Keyboard\""]",913.06,"{\""promo\"": \""8%\""}",97678,1,"""Africa""" +2023-11-02,72057,9174,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4389.54,{},259338,1,"""South America""" +2024-11-10,72058,4440,"[\""Laptop\""]",1271.73,{},171616,1,"""Africa""" +2024-11-18,72059,9971,"[\""Monitor\""]",2492.87,{},225202,0,"""Asia""" +2023-09-06,72060,745,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1424.15,"{\""seasonal\"": \""19%\""}",201136,0,"""Asia""" +2023-07-07,72061,2931,"[\""Keyboard\""]",3107.43,"{\""loyalty\"": \""5%\""}",230225,0,"""Asia""" +2024-12-04,72062,7531,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4182.69,"{\""loyalty\"": \""14%\""}",85780,0,"""Africa""" +2024-07-09,72063,5380,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4549.69,"{\"": \""30%\""}",55033,0,"""Europe""" +2024-07-31,72064,4390,"[\""Keyboard\"", \""Phone\""]",542.4,"{\""loyalty\"": \""20%\""}",220215,1,"""Asia""" +2024-01-21,72065,5318,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2672.99,{},216035,0,"""Asia""" +2024-06-04,72066,9049,"[\""Keyboard\""]",3111.79,"{\"": \""21%\""}",69919,0,"""South America""" +2023-11-23,72067,7269,"[\""Wireless Mouse\""]",3798.04,"{\""seasonal\"": \""27%\""}",115630,1,"""Asia""" +2023-09-28,72068,8319,"[\""Wireless Mouse\"", \""Charger\""]",4859.68,{},8572,1,"""Asia""" +2023-03-17,72069,487,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4745.81,{},281301,1,"""Asia""" +2024-05-30,72070,7100,"[\""Charger\"", \""Phone\""]",4990.79,"{\""loyalty\"": \""11%\""}",74442,1,"""North America""" +2023-07-15,72071,9041,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3137.96,{},42234,1,"""South America""" +2024-06-17,72072,1286,"[\""Laptop\"", \""Tablet\""]",2190.91,{},179298,1,"""North America""" +2024-10-27,72073,8712,"[\""Tablet\""]",3466.71,{},184922,0,"""South America""" +2024-08-07,72074,1261,"[\""Charger\"", \""Keyboard\""]",3907.01,"{\""promo\"": \""21%\""}",279005,0,"""Africa""" +2024-06-30,72075,8195,"[\""Laptop\"", \""Tablet\""]",3472.64,"{\"": \""26%\""}",27763,0,"""North America""" +2024-11-17,72076,4270,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1707.31,"{\""loyalty\"": \""23%\""}",290124,1,"""Europe""" +2023-02-01,72077,4023,"[\""Monitor\"", \""Laptop\""]",3601.09,"{\"": \""29%\""}",50426,0,"""Africa""" +2024-12-08,72078,2620,"[\""Monitor\""]",2305.05,"{\""seasonal\"": \""28%\""}",155432,1,"""North America""" +2024-09-24,72079,2875,"[\""Monitor\"", \""Phone\""]",1792.8,{},40179,1,"""Asia""" +2024-06-01,72080,6814,"[\""Keyboard\"", \""Tablet\""]",939.24,{},185979,1,"""South America""" +2023-07-18,72081,1928,"[\""Phone\"", \""Wireless Mouse\""]",1845.04,"{\""seasonal\"": \""10%\""}",104686,1,"""South America""" +2024-05-22,72082,2903,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",123.58,{},287222,0,"""North America""" +2024-11-24,72083,3584,"[\""Phone\"", \""Headphones\""]",4836.06,"{\""seasonal\"": \""9%\""}",204135,1,"""Asia""" +2024-06-14,72084,2657,"[\""Laptop\"", \""Wireless Mouse\""]",2139.21,"{\""loyalty\"": \""9%\""}",104388,1,"""Asia""" +2024-07-18,72085,3423,"[\""Wireless Mouse\""]",4102.36,{},26096,0,"""South America""" +2024-08-29,72086,6471,"[\""Wireless Mouse\""]",2050.39,{},288767,0,"""Europe""" +2023-01-17,72087,4086,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1067.0,{},198601,0,"""Africa""" +2024-08-11,72088,6811,"[\""Monitor\""]",426.54,{},82440,0,"""Africa""" +2023-03-31,72089,3316,"[\""Laptop\""]",2157.15,{},21486,1,"""Africa""" +2024-07-02,72090,4064,"[\""Wireless Mouse\"", \""Keyboard\""]",1037.91,"{\""loyalty\"": \""20%\""}",210458,0,"""Asia""" +2024-06-19,72091,6271,"[\""Charger\"", \""Phone\""]",4744.45,"{\""seasonal\"": \""10%\""}",208035,0,"""Africa""" +2024-09-08,72092,9414,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3225.01,"{\""loyalty\"": \""18%\""}",7040,0,"""North America""" +2023-03-20,72093,1227,"[\""Tablet\""]",4024.48,"{\"": \""27%\""}",142425,1,"""Europe""" +2024-06-26,72094,4869,"[\""Laptop\""]",4946.33,"{\"": \""25%\""}",58802,0,"""Asia""" +2024-08-30,72095,7195,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",62.52,{},249226,0,"""Asia""" +2024-12-01,72096,2092,"[\""Monitor\""]",981.89,{},67952,0,"""Europe""" +2023-04-30,72097,6900,"[\""Keyboard\""]",3379.67,"{\""loyalty\"": \""26%\""}",242383,0,"""Europe""" +2023-11-05,72098,7085,"[\""Laptop\"", \""Headphones\""]",3554.76,"{\""promo\"": \""22%\""}",190181,1,"""Europe""" +2024-11-25,72099,1599,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3284.39,"{\""seasonal\"": \""29%\""}",75901,1,"""Europe""" +2023-08-16,72100,137,"[\""Wireless Mouse\""]",2599.03,{},291164,1,"""South America""" +2024-07-30,72101,5669,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",599.91,{},14428,0,"""Africa""" +2024-08-25,72102,6872,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4522.16,{},36060,1,"""North America""" +2023-01-24,72103,3867,"[\""Charger\"", \""Monitor\""]",3441.91,"{\"": \""18%\""}",154514,0,"""Europe""" +2024-07-22,72104,6768,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",993.15,{},43273,0,"""Europe""" +2023-07-05,72105,2308,"[\""Charger\""]",4778.89,"{\""seasonal\"": \""24%\""}",99065,0,"""Europe""" +2024-07-09,72106,5546,"[\""Charger\""]",3304.43,{},115991,1,"""Asia""" +2024-10-15,72107,2121,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4954.88,{},33757,0,"""North America""" +2023-08-30,72108,3937,"[\""Monitor\"", \""Charger\""]",4572.94,"{\""promo\"": \""23%\""}",220218,1,"""Africa""" +2024-09-11,72109,2920,"[\""Phone\""]",933.96,{},59305,0,"""North America""" +2024-08-19,72110,5290,"[\""Headphones\""]",2704.57,"{\""loyalty\"": \""23%\""}",41276,1,"""Africa""" +2024-02-27,72111,9466,"[\""Tablet\"", \""Keyboard\""]",523.93,"{\"": \""30%\""}",228647,0,"""Asia""" +2023-07-18,72112,2941,"[\""Tablet\"", \""Wireless Mouse\""]",1608.13,"{\""seasonal\"": \""21%\""}",216193,1,"""South America""" +2023-12-28,72113,7138,"[\""Monitor\"", \""Charger\""]",4161.04,{},37372,0,"""Asia""" +2024-06-21,72114,8681,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2905.71,{},223715,1,"""North America""" +2023-11-07,72115,104,"[\""Phone\"", \""Keyboard\""]",3167.05,{},185852,0,"""Africa""" +2024-02-04,72116,802,"[\""Phone\""]",3695.26,"{\""promo\"": \""30%\""}",159778,1,"""Africa""" +2023-11-14,72117,7048,"[\""Headphones\"", \""Keyboard\""]",2653.37,"{\""seasonal\"": \""20%\""}",44421,1,"""Europe""" +2023-03-06,72118,6247,"[\""Keyboard\"", \""Monitor\""]",4503.87,"{\""seasonal\"": \""9%\""}",185986,0,"""North America""" +2023-12-16,72119,5632,"[\""Headphones\"", \""Monitor\""]",2963.04,{},125365,0,"""Africa""" +2023-04-26,72120,9459,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3661.16,"{\""promo\"": \""12%\""}",45846,1,"""Asia""" +2023-01-09,72121,4515,"[\""Phone\""]",3683.29,"{\""seasonal\"": \""20%\""}",128283,1,"""Europe""" +2024-10-07,72122,4890,"[\""Tablet\"", \""Charger\""]",4482.88,"{\""loyalty\"": \""10%\""}",122353,0,"""Asia""" +2023-12-25,72123,421,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3447.32,"{\"": \""19%\""}",297246,0,"""North America""" +2023-08-22,72124,7175,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",939.99,"{\""seasonal\"": \""19%\""}",263867,1,"""Europe""" +2023-07-07,72125,5151,"[\""Tablet\""]",790.27,"{\""promo\"": \""27%\""}",16799,0,"""South America""" +2023-05-05,72126,8412,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4830.98,{},111184,0,"""South America""" +2023-09-15,72127,7698,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1215.84,"{\"": \""19%\""}",190070,1,"""North America""" +2023-01-31,72128,5138,"[\""Headphones\"", \""Tablet\""]",4168.25,{},158820,1,"""Asia""" +2023-01-02,72129,7435,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",875.67,{},29214,0,"""Africa""" +2024-04-14,72130,5755,"[\""Keyboard\"", \""Phone\""]",1100.36,{},21913,0,"""Africa""" +2024-03-17,72131,9044,"[\""Wireless Mouse\""]",3728.45,{},78392,0,"""Asia""" +2024-05-08,72132,5660,"[\""Tablet\""]",2671.11,"{\""loyalty\"": \""27%\""}",115790,1,"""Africa""" +2023-06-25,72133,7611,"[\""Monitor\"", \""Charger\""]",3713.09,{},6261,1,"""Africa""" +2023-05-20,72134,5538,"[\""Monitor\"", \""Tablet\""]",4423.2,"{\""loyalty\"": \""26%\""}",38081,1,"""Africa""" +2023-11-26,72135,4629,"[\""Laptop\""]",2997.76,"{\""seasonal\"": \""24%\""}",213256,0,"""Asia""" +2023-07-29,72136,5049,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1927.68,{},269455,1,"""South America""" +2024-06-20,72137,4754,"[\""Monitor\""]",4173.27,"{\""loyalty\"": \""6%\""}",83665,1,"""Asia""" +2024-07-19,72138,8609,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",152.65,"{\"": \""25%\""}",289046,1,"""Africa""" +2023-09-19,72139,6474,"[\""Charger\"", \""Laptop\""]",4113.18,"{\""promo\"": \""28%\""}",172041,1,"""Asia""" +2023-10-20,72140,8796,"[\""Tablet\""]",3825.98,"{\""seasonal\"": \""15%\""}",146472,0,"""North America""" +2024-02-15,72141,4238,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",141.62,{},119487,0,"""Asia""" +2023-02-17,72142,4233,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4655.26,{},195560,0,"""Europe""" +2024-05-12,72143,5913,"[\""Phone\"", \""Tablet\""]",2732.18,"{\""seasonal\"": \""25%\""}",140786,1,"""South America""" +2024-10-13,72144,6963,"[\""Monitor\""]",1940.61,"{\""promo\"": \""16%\""}",72781,0,"""Africa""" +2023-04-20,72145,5066,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2765.67,{},239444,1,"""South America""" +2024-05-10,72146,2969,"[\""Tablet\"", \""Headphones\""]",4825.26,"{\""promo\"": \""28%\""}",44078,1,"""North America""" +2023-10-08,72147,9060,"[\""Keyboard\""]",3903.51,{},274496,0,"""North America""" +2024-12-29,72148,5109,"[\""Tablet\""]",2099.46,{},98671,0,"""Europe""" +2023-11-19,72149,8187,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3418.63,{},155483,1,"""South America""" +2023-07-20,72150,167,"[\""Phone\"", \""Monitor\""]",2459.79,"{\""seasonal\"": \""14%\""}",244366,1,"""South America""" +2024-04-01,72151,4525,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4855.28,{},254263,1,"""South America""" +2023-09-14,72152,3174,"[\""Wireless Mouse\"", \""Monitor\""]",530.96,{},110712,1,"""South America""" +2024-12-14,72153,4849,"[\""Charger\"", \""Wireless Mouse\""]",3497.66,{},230790,0,"""South America""" +2024-05-24,72154,8564,"[\""Phone\"", \""Charger\""]",1249.5,{},137651,1,"""South America""" +2024-09-08,72155,280,"[\""Laptop\""]",758.16,{},29529,1,"""Asia""" +2023-02-22,72156,134,"[\""Keyboard\""]",2039.9,"{\"": \""20%\""}",295550,0,"""North America""" +2024-11-23,72157,2800,"[\""Phone\""]",3677.42,{},263558,1,"""Asia""" +2023-02-10,72158,8030,"[\""Tablet\"", \""Monitor\""]",1237.55,{},8084,0,"""Asia""" +2024-05-24,72159,716,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1164.54,"{\""loyalty\"": \""5%\""}",61677,1,"""South America""" +2024-01-08,72160,1431,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1373.32,{},35020,0,"""South America""" +2023-05-26,72161,226,"[\""Phone\""]",3533.28,{},189705,1,"""Europe""" +2024-05-27,72162,7864,"[\""Phone\"", \""Headphones\""]",3895.86,"{\""seasonal\"": \""18%\""}",5719,1,"""Asia""" +2024-07-04,72163,7357,"[\""Charger\""]",2999.32,{},259134,0,"""Europe""" +2024-05-29,72164,7531,"[\""Keyboard\"", \""Tablet\""]",2070.75,{},46687,0,"""Africa""" +2023-10-17,72165,1072,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1304.5,"{\"": \""19%\""}",230280,1,"""North America""" +2023-01-25,72166,6980,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2721.29,{},148046,1,"""South America""" +2023-04-13,72167,9909,"[\""Charger\"", \""Laptop\""]",785.35,{},240629,1,"""Africa""" +2023-12-13,72168,4997,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",264.5,"{\""loyalty\"": \""17%\""}",115565,0,"""North America""" +2023-12-16,72169,905,"[\""Charger\""]",161.07,{},78104,1,"""Africa""" +2023-09-26,72170,9765,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",723.67,{},281696,1,"""Asia""" +2024-05-16,72171,9274,"[\""Phone\"", \""Charger\""]",815.01,"{\""loyalty\"": \""23%\""}",169419,1,"""North America""" +2023-07-02,72172,7387,"[\""Laptop\""]",3286.43,{},62613,0,"""North America""" +2024-02-27,72173,806,"[\""Wireless Mouse\""]",2212.19,{},202282,0,"""Africa""" +2024-01-03,72174,7888,"[\""Wireless Mouse\"", \""Laptop\""]",4892.4,"{\""promo\"": \""30%\""}",170651,0,"""South America""" +2023-06-21,72175,537,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2812.5,"{\"": \""5%\""}",21712,0,"""North America""" +2024-04-30,72176,6271,"[\""Keyboard\"", \""Phone\""]",3391.47,"{\"": \""30%\""}",256428,0,"""Asia""" +2024-06-05,72177,2677,"[\""Headphones\""]",3601.07,"{\"": \""18%\""}",152026,0,"""South America""" +2024-11-06,72178,8446,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4315.18,"{\""seasonal\"": \""9%\""}",44890,1,"""North America""" +2024-06-15,72179,5780,"[\""Phone\"", \""Laptop\""]",4179.74,{},268486,0,"""North America""" +2023-10-28,72180,7265,"[\""Wireless Mouse\"", \""Headphones\""]",1380.14,{},1889,0,"""Asia""" +2024-10-19,72181,8294,"[\""Monitor\"", \""Wireless Mouse\""]",4734.73,{},36907,1,"""Europe""" +2024-01-09,72182,8098,"[\""Wireless Mouse\""]",3583.35,"{\""seasonal\"": \""8%\""}",157473,0,"""Asia""" +2023-03-28,72183,5314,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",485.14,{},6543,1,"""Africa""" +2024-07-15,72184,7857,"[\""Monitor\""]",2449.03,"{\""seasonal\"": \""19%\""}",220837,0,"""South America""" +2023-05-07,72185,8691,"[\""Wireless Mouse\""]",2063.31,{},277516,1,"""Europe""" +2024-07-10,72186,6797,"[\""Phone\"", \""Monitor\""]",2843.6,"{\""loyalty\"": \""22%\""}",209012,1,"""South America""" +2023-04-23,72187,5415,"[\""Keyboard\"", \""Tablet\""]",2716.95,{},223063,0,"""South America""" +2023-10-20,72188,5176,"[\""Laptop\"", \""Keyboard\""]",3617.46,"{\""loyalty\"": \""9%\""}",213151,0,"""Europe""" +2023-04-13,72189,8148,"[\""Laptop\"", \""Headphones\""]",3880.67,"{\"": \""6%\""}",77531,1,"""Africa""" +2024-07-22,72190,7734,"[\""Phone\"", \""Keyboard\""]",4080.24,"{\"": \""11%\""}",140551,1,"""South America""" +2023-05-16,72191,9965,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",723.23,"{\"": \""27%\""}",167137,1,"""South America""" +2024-11-02,72192,8610,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",764.05,{},113891,0,"""Asia""" +2023-06-17,72193,5196,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1767.82,{},122702,0,"""North America""" +2024-10-04,72194,5397,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1665.6,"{\""seasonal\"": \""24%\""}",28761,0,"""Africa""" +2024-02-15,72195,5771,"[\""Phone\""]",3669.84,{},46724,0,"""Europe""" +2023-12-14,72196,4087,"[\""Phone\""]",2640.21,"{\"": \""15%\""}",232588,0,"""Europe""" +2024-08-07,72197,641,"[\""Laptop\""]",1528.34,{},48794,1,"""Europe""" +2023-02-01,72198,5059,"[\""Keyboard\""]",1447.71,{},131568,0,"""South America""" +2023-12-28,72199,2911,"[\""Keyboard\"", \""Phone\""]",2433.43,{},133442,1,"""North America""" +2023-08-29,72200,6118,"[\""Headphones\"", \""Laptop\""]",279.72,{},154188,0,"""Europe""" +2023-05-26,72201,5608,"[\""Charger\""]",1019.89,{},175262,1,"""North America""" +2023-12-23,72202,7412,"[\""Tablet\""]",1665.53,"{\""seasonal\"": \""13%\""}",94458,0,"""South America""" +2024-04-14,72203,4815,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",525.82,{},232636,1,"""North America""" +2024-09-01,72204,1998,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4087.17,{},258900,0,"""Asia""" +2023-08-13,72205,2313,"[\""Tablet\""]",4725.04,"{\"": \""11%\""}",181418,1,"""South America""" +2023-03-02,72206,3814,"[\""Keyboard\"", \""Tablet\""]",3701.52,"{\""promo\"": \""17%\""}",217119,0,"""Europe""" +2023-03-03,72207,9945,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2877.92,{},205818,0,"""North America""" +2023-07-25,72208,9915,"[\""Monitor\"", \""Headphones\""]",351.72,{},28534,0,"""Asia""" +2023-02-18,72209,8706,"[\""Charger\""]",4412.64,{},137339,1,"""Asia""" +2024-06-24,72210,7881,"[\""Keyboard\"", \""Monitor\""]",534.79,{},237544,0,"""Asia""" +2023-04-25,72211,6576,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",847.87,{},198949,0,"""North America""" +2024-04-04,72212,2639,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4571.69,{},174832,0,"""North America""" +2024-09-18,72213,3239,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",439.92,"{\""seasonal\"": \""21%\""}",109337,0,"""North America""" +2024-12-29,72214,5007,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2564.41,{},196494,0,"""North America""" +2023-04-27,72215,6475,"[\""Headphones\""]",109.16,{},207636,1,"""Europe""" +2023-01-24,72216,3529,"[\""Charger\"", \""Monitor\""]",788.21,{},261105,1,"""Europe""" +2024-03-29,72217,2554,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",999.41,"{\""loyalty\"": \""19%\""}",102628,1,"""Asia""" +2024-05-21,72218,8409,"[\""Monitor\""]",3218.08,{},111792,0,"""Europe""" +2023-12-27,72219,5921,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1543.9,{},60078,0,"""Africa""" +2023-10-02,72220,7196,"[\""Keyboard\""]",3613.28,"{\"": \""26%\""}",10153,0,"""Asia""" +2023-06-15,72221,8752,"[\""Phone\"", \""Wireless Mouse\""]",677.52,"{\""loyalty\"": \""8%\""}",171737,0,"""Asia""" +2023-06-29,72222,8918,"[\""Phone\"", \""Monitor\""]",1876.6,{},104143,1,"""Africa""" +2024-10-13,72223,1757,"[\""Keyboard\"", \""Charger\""]",4613.75,{},71785,1,"""Asia""" +2024-08-10,72224,4760,"[\""Keyboard\"", \""Phone\""]",999.87,"{\""seasonal\"": \""10%\""}",200965,0,"""South America""" +2023-12-20,72225,4682,"[\""Headphones\"", \""Wireless Mouse\""]",2214.99,{},31204,1,"""Africa""" +2024-12-02,72226,768,"[\""Laptop\"", \""Tablet\""]",114.74,{},225398,0,"""North America""" +2024-03-20,72227,256,"[\""Phone\"", \""Monitor\""]",2357.06,"{\""seasonal\"": \""17%\""}",70364,0,"""Europe""" +2023-10-27,72228,588,"[\""Charger\""]",4311.98,{},122228,1,"""Asia""" +2024-09-01,72229,5672,"[\""Keyboard\"", \""Phone\""]",2058.12,"{\""seasonal\"": \""30%\""}",45074,1,"""Africa""" +2023-11-03,72230,1587,"[\""Headphones\""]",3234.74,{},251298,0,"""Asia""" +2023-10-23,72231,3644,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4722.11,{},55270,1,"""North America""" +2024-07-22,72232,9806,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2531.43,{},33807,1,"""North America""" +2024-05-25,72233,6987,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3672.14,{},193763,0,"""North America""" +2023-03-13,72234,7801,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4935.62,"{\""loyalty\"": \""14%\""}",200020,0,"""Africa""" +2023-09-26,72235,9116,"[\""Tablet\""]",983.8,"{\""seasonal\"": \""16%\""}",16834,0,"""Asia""" +2023-10-19,72236,9767,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2981.38,"{\""promo\"": \""5%\""}",22637,1,"""Africa""" +2023-01-24,72237,9820,"[\""Keyboard\"", \""Charger\""]",4571.65,"{\""promo\"": \""16%\""}",266079,1,"""Asia""" +2024-11-11,72238,3285,"[\""Headphones\""]",3944.2,{},20020,0,"""Asia""" +2023-07-29,72239,7953,"[\""Tablet\""]",1249.05,"{\"": \""16%\""}",290085,0,"""North America""" +2024-09-26,72240,4833,"[\""Tablet\"", \""Monitor\""]",3188.52,"{\""seasonal\"": \""9%\""}",188356,0,"""Europe""" +2023-06-30,72241,8843,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",396.16,{},222475,0,"""North America""" +2024-02-03,72242,3353,"[\""Phone\"", \""Charger\""]",1022.85,"{\""promo\"": \""14%\""}",8608,1,"""North America""" +2023-12-23,72243,2659,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1088.02,{},31198,0,"""Asia""" +2023-04-17,72244,5111,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1420.76,"{\""seasonal\"": \""24%\""}",110242,0,"""South America""" +2024-12-20,72245,2989,"[\""Headphones\"", \""Keyboard\""]",1807.07,{},96366,1,"""North America""" +2023-02-14,72246,17,"[\""Keyboard\""]",2882.73,"{\""promo\"": \""13%\""}",127619,1,"""South America""" +2023-09-04,72247,6363,"[\""Charger\""]",2545.54,"{\""promo\"": \""18%\""}",73882,1,"""Europe""" +2024-04-23,72248,9571,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4793.18,{},87575,0,"""Europe""" +2023-02-14,72249,4751,"[\""Charger\"", \""Laptop\""]",2702.84,{},248549,1,"""Africa""" +2023-07-12,72250,8390,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4107.53,{},183472,1,"""Africa""" +2023-08-28,72251,7256,"[\""Laptop\""]",3657.67,{},110910,1,"""Africa""" +2024-09-25,72252,332,"[\""Charger\"", \""Headphones\""]",1242.84,{},281127,1,"""North America""" +2023-08-25,72253,1537,"[\""Tablet\""]",1814.86,"{\""promo\"": \""30%\""}",205057,0,"""North America""" +2024-12-29,72254,6459,"[\""Tablet\""]",647.71,{},2322,1,"""North America""" +2023-02-08,72255,6176,"[\""Monitor\""]",698.04,"{\"": \""6%\""}",233795,0,"""Asia""" +2023-01-11,72256,6552,"[\""Laptop\"", \""Charger\""]",1239.33,"{\""loyalty\"": \""16%\""}",3235,0,"""Europe""" +2023-12-12,72257,4023,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2686.09,"{\""promo\"": \""29%\""}",124693,0,"""Europe""" +2023-02-11,72258,1049,"[\""Headphones\""]",3927.58,"{\"": \""5%\""}",208736,1,"""South America""" +2023-11-10,72259,7320,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1605.8,"{\""promo\"": \""25%\""}",247582,1,"""North America""" +2023-08-30,72260,4037,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1829.58,"{\""seasonal\"": \""16%\""}",132552,1,"""Africa""" +2023-07-24,72261,9882,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4382.39,"{\""promo\"": \""8%\""}",207176,1,"""Asia""" +2024-03-08,72262,3912,"[\""Charger\"", \""Laptop\""]",4530.75,{},125011,1,"""North America""" +2024-10-04,72263,3581,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1194.76,{},230314,0,"""South America""" +2023-12-06,72264,5714,"[\""Wireless Mouse\"", \""Keyboard\""]",4709.39,"{\"": \""21%\""}",127370,0,"""Europe""" +2023-01-01,72265,3758,"[\""Tablet\""]",1876.6,{},113363,0,"""North America""" +2024-01-03,72266,6914,"[\""Monitor\"", \""Headphones\""]",306.33,"{\""loyalty\"": \""12%\""}",45577,0,"""Europe""" +2023-10-22,72267,3693,"[\""Charger\"", \""Phone\""]",4181.62,{},3977,1,"""Asia""" +2023-08-25,72268,4401,"[\""Phone\""]",221.99,"{\""seasonal\"": \""7%\""}",95678,1,"""Europe""" +2023-04-01,72269,4389,"[\""Keyboard\"", \""Wireless Mouse\""]",3708.27,{},5550,1,"""Europe""" +2024-09-16,72270,6577,"[\""Charger\"", \""Laptop\""]",3286.62,"{\""promo\"": \""22%\""}",40737,1,"""North America""" +2024-02-17,72271,8271,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4196.02,{},138180,1,"""Africa""" +2024-08-13,72272,9587,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2571.53,"{\""loyalty\"": \""11%\""}",21039,0,"""Asia""" +2023-12-30,72273,20,"[\""Wireless Mouse\""]",2842.34,"{\""loyalty\"": \""7%\""}",72598,0,"""Europe""" +2023-10-15,72274,6617,"[\""Wireless Mouse\"", \""Monitor\""]",4937.17,{},292538,0,"""Europe""" +2024-05-26,72275,4870,"[\""Headphones\"", \""Charger\""]",1244.54,"{\""loyalty\"": \""28%\""}",247559,0,"""South America""" +2024-11-01,72276,9039,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3099.98,"{\""seasonal\"": \""6%\""}",21302,0,"""North America""" +2023-08-19,72277,3343,"[\""Laptop\"", \""Phone\""]",3455.84,"{\""seasonal\"": \""8%\""}",263305,1,"""North America""" +2024-07-15,72278,2319,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1855.93,"{\"": \""10%\""}",59631,1,"""Asia""" +2023-02-23,72279,9904,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4525.5,"{\""promo\"": \""25%\""}",249780,0,"""Africa""" +2024-02-25,72280,7618,"[\""Charger\""]",3538.06,"{\"": \""24%\""}",11618,1,"""Asia""" +2024-03-07,72281,6793,"[\""Charger\"", \""Monitor\""]",1685.49,"{\"": \""23%\""}",166119,0,"""North America""" +2024-05-30,72282,8499,"[\""Phone\""]",1271.86,{},95014,1,"""North America""" +2024-04-28,72283,848,"[\""Keyboard\"", \""Laptop\""]",1812.19,"{\"": \""20%\""}",179162,0,"""Africa""" +2023-10-23,72284,8502,"[\""Headphones\"", \""Monitor\""]",4849.59,"{\""seasonal\"": \""12%\""}",272823,0,"""Europe""" +2023-11-12,72285,1004,"[\""Laptop\""]",3989.94,{},149124,1,"""Asia""" +2024-06-01,72286,6008,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",253.54,{},62855,1,"""Asia""" +2024-10-11,72287,7536,"[\""Charger\"", \""Wireless Mouse\""]",2391.31,"{\""promo\"": \""7%\""}",196696,0,"""Europe""" +2024-02-06,72288,7202,"[\""Tablet\"", \""Laptop\""]",3786.32,{},103457,1,"""North America""" +2024-10-28,72289,2827,"[\""Keyboard\"", \""Wireless Mouse\""]",1474.94,{},177165,0,"""Africa""" +2023-10-21,72290,4963,"[\""Keyboard\"", \""Wireless Mouse\""]",408.39,{},242142,0,"""Europe""" +2023-10-06,72291,7234,"[\""Charger\"", \""Laptop\""]",3893.2,"{\""promo\"": \""29%\""}",216926,0,"""Africa""" +2023-08-20,72292,1678,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1104.16,"{\""seasonal\"": \""6%\""}",106032,0,"""Asia""" +2024-07-05,72293,749,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3258.35,{},27450,0,"""Europe""" +2024-09-05,72294,6822,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2038.99,"{\""seasonal\"": \""12%\""}",47235,0,"""Africa""" +2024-03-19,72295,9000,"[\""Tablet\""]",2771.74,{},157558,1,"""Asia""" +2023-11-04,72296,4108,"[\""Tablet\"", \""Laptop\""]",1340.43,{},71098,1,"""Asia""" +2023-12-19,72297,1248,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2293.44,{},11024,1,"""Europe""" +2024-03-08,72298,1763,"[\""Keyboard\"", \""Tablet\""]",619.83,"{\"": \""21%\""}",150910,1,"""North America""" +2024-03-15,72299,8850,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2292.04,{},219750,0,"""Europe""" +2023-12-30,72300,6656,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",86.61,"{\""promo\"": \""21%\""}",164726,1,"""South America""" +2024-09-18,72301,8822,"[\""Headphones\""]",2065.64,{},172859,0,"""South America""" +2023-10-02,72302,4775,"[\""Monitor\"", \""Wireless Mouse\""]",3326.11,{},193191,0,"""Asia""" +2023-02-28,72303,994,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3621.35,"{\""loyalty\"": \""7%\""}",232566,1,"""Asia""" +2023-11-28,72304,6522,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",174.0,{},142908,1,"""North America""" +2023-12-13,72305,4431,"[\""Phone\""]",410.45,"{\""loyalty\"": \""30%\""}",10158,1,"""Europe""" +2023-03-05,72306,605,"[\""Laptop\"", \""Phone\""]",2782.51,"{\""loyalty\"": \""15%\""}",206127,1,"""North America""" +2024-12-29,72307,7422,"[\""Monitor\"", \""Tablet\""]",1090.72,"{\""seasonal\"": \""26%\""}",228459,1,"""Europe""" +2023-10-11,72308,2634,"[\""Phone\"", \""Tablet\""]",602.86,"{\""loyalty\"": \""18%\""}",60501,0,"""Africa""" +2023-06-21,72309,5245,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4480.87,{},114969,1,"""Africa""" +2023-09-30,72310,796,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2711.11,{},160443,0,"""Africa""" +2023-09-25,72311,2832,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",359.2,{},90729,0,"""Asia""" +2023-09-28,72312,9867,"[\""Monitor\"", \""Charger\""]",856.77,{},249362,1,"""South America""" +2023-12-29,72313,2473,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4061.0,"{\""promo\"": \""14%\""}",164759,0,"""North America""" +2024-03-05,72314,1949,"[\""Monitor\""]",3455.38,"{\"": \""28%\""}",245235,1,"""Asia""" +2024-06-01,72315,9602,"[\""Keyboard\""]",3587.36,"{\"": \""28%\""}",112678,0,"""North America""" +2024-04-03,72316,2454,"[\""Keyboard\"", \""Monitor\""]",4915.03,{},147962,0,"""Africa""" +2024-07-12,72317,5487,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1547.12,"{\""promo\"": \""25%\""}",47347,1,"""Asia""" +2023-11-24,72318,5502,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",4043.54,{},58589,1,"""Africa""" +2023-01-13,72319,7070,"[\""Monitor\""]",1814.91,{},288597,1,"""North America""" +2024-02-14,72320,7021,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",929.1,{},214894,1,"""North America""" +2023-11-24,72321,5993,"[\""Monitor\"", \""Wireless Mouse\""]",3509.87,"{\""seasonal\"": \""5%\""}",8459,0,"""North America""" +2024-09-09,72322,2964,"[\""Charger\""]",2438.88,"{\""seasonal\"": \""19%\""}",249209,1,"""North America""" +2023-06-30,72323,4126,"[\""Keyboard\"", \""Monitor\""]",4101.47,{},272095,0,"""South America""" +2024-06-02,72324,3702,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",124.53,{},143638,0,"""Asia""" +2023-07-18,72325,4511,"[\""Charger\"", \""Monitor\""]",1450.46,{},12906,0,"""Africa""" +2023-04-09,72326,726,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3579.74,{},148932,0,"""Africa""" +2023-03-27,72327,4627,"[\""Keyboard\""]",706.28,{},208603,0,"""Asia""" +2024-07-30,72328,9717,"[\""Charger\"", \""Laptop\""]",791.86,"{\""loyalty\"": \""7%\""}",170411,1,"""South America""" +2023-01-22,72329,8318,"[\""Keyboard\"", \""Charger\""]",969.76,{},267897,1,"""Africa""" +2024-08-01,72330,4872,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2253.22,"{\"": \""22%\""}",171951,1,"""Europe""" +2023-11-03,72331,8739,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2788.94,"{\""promo\"": \""13%\""}",235350,1,"""South America""" +2024-12-12,72332,7415,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3447.34,{},270967,1,"""Africa""" +2024-04-02,72333,6718,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2815.96,{},57279,1,"""Europe""" +2023-01-09,72334,7750,"[\""Monitor\""]",275.21,{},199799,1,"""Asia""" +2024-02-24,72335,7261,"[\""Charger\""]",920.06,"{\"": \""13%\""}",38886,1,"""North America""" +2023-01-08,72336,5346,"[\""Wireless Mouse\""]",2556.23,"{\""loyalty\"": \""16%\""}",29384,0,"""South America""" +2023-07-31,72337,9675,"[\""Phone\"", \""Laptop\""]",3886.34,{},233317,0,"""Africa""" +2024-01-12,72338,4067,"[\""Phone\""]",97.92,"{\""promo\"": \""16%\""}",10402,0,"""Africa""" +2024-05-02,72339,178,"[\""Tablet\""]",3631.06,"{\"": \""5%\""}",239813,0,"""Europe""" +2023-06-28,72340,8495,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1845.79,{},263774,1,"""South America""" +2024-10-29,72341,3600,"[\""Keyboard\""]",3085.47,"{\""loyalty\"": \""16%\""}",251712,0,"""North America""" +2023-01-05,72342,6108,"[\""Headphones\""]",1011.5,{},270461,1,"""North America""" +2024-08-04,72343,4282,"[\""Wireless Mouse\""]",4793.53,"{\""loyalty\"": \""7%\""}",22963,1,"""South America""" +2024-10-03,72344,3835,"[\""Monitor\""]",3361.85,"{\""promo\"": \""8%\""}",46351,1,"""South America""" +2023-01-18,72345,1531,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4964.25,{},32683,0,"""South America""" +2023-02-23,72346,1483,"[\""Monitor\""]",906.56,"{\""seasonal\"": \""16%\""}",290092,0,"""North America""" +2024-06-02,72347,5715,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1193.11,{},110938,1,"""North America""" +2023-08-09,72348,9198,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4528.35,{},41130,1,"""Asia""" +2023-04-26,72349,4369,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2973.49,"{\""loyalty\"": \""11%\""}",57685,1,"""Africa""" +2024-04-30,72350,8574,"[\""Wireless Mouse\"", \""Phone\""]",3747.82,{},172571,1,"""North America""" +2024-09-26,72351,3617,"[\""Phone\"", \""Monitor\""]",1343.9,"{\"": \""24%\""}",217429,1,"""North America""" +2023-05-18,72352,840,"[\""Laptop\""]",3700.82,"{\"": \""15%\""}",27683,1,"""Asia""" +2023-07-13,72353,4731,"[\""Wireless Mouse\""]",4665.81,"{\""promo\"": \""30%\""}",78974,1,"""South America""" +2023-09-07,72354,6153,"[\""Phone\"", \""Wireless Mouse\""]",3703.32,{},176447,1,"""North America""" +2023-07-06,72355,420,"[\""Headphones\""]",4285.1,{},148567,0,"""Europe""" +2024-08-09,72356,5411,"[\""Tablet\""]",1030.44,{},156966,0,"""North America""" +2024-03-24,72357,2803,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",662.17,"{\""loyalty\"": \""29%\""}",96493,0,"""Africa""" +2024-11-08,72358,1200,"[\""Headphones\""]",2584.75,"{\""seasonal\"": \""5%\""}",216776,0,"""North America""" +2024-01-26,72359,9922,"[\""Laptop\""]",2043.49,"{\"": \""22%\""}",9365,0,"""Africa""" +2024-07-12,72360,4736,"[\""Monitor\""]",74.99,"{\""loyalty\"": \""8%\""}",175885,0,"""Asia""" +2023-09-23,72361,9076,"[\""Headphones\""]",1029.53,"{\""seasonal\"": \""27%\""}",126600,1,"""South America""" +2024-02-12,72362,7542,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1268.4,{},90838,1,"""North America""" +2024-03-04,72363,5406,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3810.25,"{\""promo\"": \""15%\""}",263925,0,"""South America""" +2023-09-20,72364,3770,"[\""Monitor\""]",4023.77,{},200375,0,"""Africa""" +2024-03-12,72365,9801,"[\""Charger\""]",99.98,"{\""seasonal\"": \""11%\""}",261197,1,"""Europe""" +2024-08-09,72366,2089,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3604.53,{},105300,0,"""Africa""" +2024-08-26,72367,7516,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1707.03,"{\"": \""9%\""}",273821,1,"""North America""" +2024-12-08,72368,9969,"[\""Monitor\"", \""Tablet\""]",395.68,"{\""seasonal\"": \""6%\""}",149722,0,"""Asia""" +2023-08-01,72369,6318,"[\""Tablet\"", \""Headphones\""]",3807.18,{},189586,1,"""Europe""" +2024-03-14,72370,3841,"[\""Tablet\""]",3242.26,{},212599,0,"""Europe""" +2023-03-03,72371,7513,"[\""Keyboard\"", \""Wireless Mouse\""]",2592.17,"{\"": \""6%\""}",106830,1,"""Europe""" +2024-12-01,72372,7945,"[\""Keyboard\"", \""Phone\""]",1229.62,{},255646,0,"""Europe""" +2023-11-18,72373,5200,"[\""Phone\"", \""Charger\""]",3380.26,{},256465,1,"""South America""" +2024-04-19,72374,4033,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1440.51,{},87986,0,"""Asia""" +2023-04-29,72375,7717,"[\""Tablet\"", \""Phone\""]",2110.26,{},196671,1,"""Europe""" +2023-10-15,72376,5220,"[\""Headphones\""]",418.39,{},97141,1,"""South America""" +2023-11-06,72377,3948,"[\""Keyboard\"", \""Laptop\""]",2646.41,{},80492,0,"""North America""" +2024-05-07,72378,2526,"[\""Monitor\""]",3737.22,"{\""seasonal\"": \""17%\""}",275845,1,"""North America""" +2024-12-06,72379,6438,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3680.15,"{\""loyalty\"": \""5%\""}",277160,0,"""Asia""" +2024-01-05,72380,3644,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4269.18,{},107177,0,"""Europe""" +2023-05-03,72381,3844,"[\""Laptop\"", \""Phone\""]",3824.9,{},233566,1,"""North America""" +2024-07-09,72382,8040,"[\""Headphones\"", \""Wireless Mouse\""]",4899.4,{},192818,0,"""Africa""" +2023-02-06,72383,5286,"[\""Keyboard\"", \""Monitor\""]",350.03,{},5177,1,"""South America""" +2024-12-04,72384,4557,"[\""Wireless Mouse\"", \""Tablet\""]",4547.06,{},9036,1,"""South America""" +2023-07-26,72385,4334,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2929.41,"{\""promo\"": \""22%\""}",23381,1,"""Europe""" +2024-03-17,72386,6268,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",608.4,{},13641,1,"""North America""" +2024-01-25,72387,5879,"[\""Phone\""]",530.61,"{\""loyalty\"": \""30%\""}",291290,0,"""Europe""" +2023-09-27,72388,8714,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2538.26,"{\""loyalty\"": \""24%\""}",89135,0,"""North America""" +2023-08-25,72389,3995,"[\""Laptop\""]",3728.97,{},121112,0,"""North America""" +2024-06-21,72390,5001,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",421.22,{},213371,0,"""North America""" +2023-02-16,72391,5151,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",966.12,"{\"": \""23%\""}",8042,0,"""South America""" +2023-04-28,72392,256,"[\""Tablet\"", \""Keyboard\""]",2984.1,"{\""promo\"": \""22%\""}",216425,1,"""South America""" +2024-01-18,72393,1775,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",369.31,{},249164,0,"""North America""" +2024-08-25,72394,9651,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",369.44,{},124215,0,"""North America""" +2024-03-13,72395,2163,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1683.95,{},219779,1,"""North America""" +2023-07-18,72396,1380,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1571.39,"{\"": \""25%\""}",142641,1,"""North America""" +2024-06-12,72397,9277,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4232.38,"{\""seasonal\"": \""18%\""}",53976,0,"""South America""" +2024-07-28,72398,3301,"[\""Keyboard\"", \""Wireless Mouse\""]",4601.0,{},104460,1,"""South America""" +2024-05-22,72399,7053,"[\""Headphones\"", \""Phone\""]",221.67,{},120732,1,"""Africa""" +2023-04-16,72400,4388,"[\""Charger\""]",2284.19,{},185884,1,"""Europe""" +2024-12-10,72401,4228,"[\""Laptop\"", \""Keyboard\""]",3082.63,{},57185,1,"""Africa""" +2024-03-30,72402,5568,"[\""Charger\""]",3043.95,"{\""seasonal\"": \""11%\""}",186549,0,"""Africa""" +2023-11-27,72403,7502,"[\""Tablet\"", \""Wireless Mouse\""]",458.33,{},107624,0,"""North America""" +2023-03-11,72404,4376,"[\""Wireless Mouse\"", \""Phone\""]",215.37,{},35048,0,"""Asia""" +2023-12-11,72405,358,"[\""Laptop\"", \""Keyboard\""]",2991.18,{},191634,1,"""North America""" +2024-11-02,72406,8296,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2729.09,"{\""promo\"": \""11%\""}",237847,1,"""Asia""" +2023-03-17,72407,6797,"[\""Monitor\"", \""Phone\""]",1090.44,"{\"": \""5%\""}",169666,1,"""North America""" +2024-08-20,72408,1558,"[\""Keyboard\"", \""Headphones\""]",2010.5,{},289979,0,"""South America""" +2023-07-21,72409,9510,"[\""Charger\""]",2093.1,{},139042,1,"""Europe""" +2023-03-16,72410,7156,"[\""Phone\"", \""Headphones\""]",4431.37,"{\""loyalty\"": \""9%\""}",188237,0,"""Asia""" +2024-06-30,72411,8450,"[\""Tablet\"", \""Monitor\""]",1804.2,"{\"": \""29%\""}",34340,1,"""North America""" +2023-05-08,72412,7627,"[\""Tablet\""]",4097.82,"{\""loyalty\"": \""10%\""}",273599,0,"""Africa""" +2024-11-30,72413,4673,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",918.48,{},188870,1,"""Asia""" +2024-10-28,72414,9246,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1234.15,{},245698,1,"""North America""" +2023-06-05,72415,2640,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",929.06,{},268376,1,"""Africa""" +2024-05-16,72416,1550,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4565.3,"{\""promo\"": \""29%\""}",294884,1,"""Africa""" +2023-01-04,72417,3728,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1889.23,{},275220,1,"""Europe""" +2024-07-01,72418,3227,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2743.7,{},194124,1,"""South America""" +2023-12-05,72419,4116,"[\""Headphones\""]",3638.5,{},10783,0,"""Europe""" +2024-02-02,72420,7343,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2029.48,{},90311,1,"""South America""" +2024-09-15,72421,8694,"[\""Wireless Mouse\""]",2251.67,"{\"": \""10%\""}",89868,1,"""North America""" +2023-11-15,72422,6471,"[\""Monitor\"", \""Charger\""]",692.56,"{\""seasonal\"": \""29%\""}",246099,1,"""South America""" +2023-07-20,72423,6379,"[\""Wireless Mouse\""]",1669.07,"{\"": \""25%\""}",114790,0,"""South America""" +2024-10-13,72424,7684,"[\""Monitor\""]",4657.81,"{\""loyalty\"": \""10%\""}",92186,0,"""Europe""" +2023-03-03,72425,3277,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3230.3,{},7128,0,"""North America""" +2023-12-02,72426,5936,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2598.24,"{\""loyalty\"": \""8%\""}",50017,0,"""Africa""" +2024-09-01,72427,4238,"[\""Tablet\"", \""Keyboard\""]",2829.35,{},236775,0,"""North America""" +2023-12-21,72428,1634,"[\""Monitor\"", \""Phone\""]",4273.98,"{\""loyalty\"": \""10%\""}",97150,1,"""Africa""" +2024-01-09,72429,5307,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",749.9,{},116579,0,"""South America""" +2023-01-03,72430,7782,"[\""Keyboard\"", \""Charger\""]",1222.86,"{\""loyalty\"": \""27%\""}",209301,0,"""Africa""" +2024-06-02,72431,3971,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3099.76,"{\""seasonal\"": \""20%\""}",39605,1,"""South America""" +2024-11-21,72432,7763,"[\""Monitor\"", \""Laptop\""]",1929.17,"{\""promo\"": \""18%\""}",103564,0,"""Asia""" +2023-01-24,72433,4262,"[\""Charger\"", \""Tablet\""]",4341.71,{},141051,1,"""Asia""" +2023-10-28,72434,9488,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1955.42,"{\""promo\"": \""7%\""}",185748,1,"""Asia""" +2023-06-13,72435,6489,"[\""Keyboard\"", \""Monitor\""]",3460.39,{},60773,0,"""Africa""" +2024-08-08,72436,8805,"[\""Keyboard\""]",4467.25,{},80115,1,"""Asia""" +2023-04-11,72437,1696,"[\""Tablet\""]",2940.81,"{\""seasonal\"": \""23%\""}",209646,1,"""Africa""" +2024-09-25,72438,7114,"[\""Laptop\""]",3989.8,{},107579,0,"""South America""" +2024-06-01,72439,6316,"[\""Wireless Mouse\"", \""Keyboard\""]",4023.03,{},111347,0,"""Europe""" +2023-11-08,72440,2763,"[\""Laptop\"", \""Charger\""]",2524.39,"{\""loyalty\"": \""24%\""}",288308,1,"""Africa""" +2024-04-30,72441,9707,"[\""Keyboard\""]",2159.52,"{\""promo\"": \""19%\""}",21800,1,"""Asia""" +2024-09-17,72442,1322,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2165.33,"{\""seasonal\"": \""12%\""}",29288,0,"""Asia""" +2024-10-10,72443,9127,"[\""Monitor\""]",4522.3,"{\""seasonal\"": \""26%\""}",94857,1,"""North America""" +2024-07-20,72444,6083,"[\""Phone\"", \""Charger\""]",3888.61,"{\"": \""7%\""}",170899,1,"""Asia""" +2023-08-13,72445,9671,"[\""Headphones\""]",4566.57,{},50242,1,"""North America""" +2023-12-14,72446,2227,"[\""Tablet\""]",3702.32,{},99938,0,"""South America""" +2024-03-19,72447,5142,"[\""Charger\""]",3845.06,{},117352,0,"""North America""" +2024-10-08,72448,7991,"[\""Phone\""]",215.36,"{\""loyalty\"": \""15%\""}",131548,1,"""Europe""" +2024-03-28,72449,600,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",1844.61,{},215347,0,"""North America""" +2024-04-30,72450,8296,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2728.97,"{\"": \""9%\""}",52977,0,"""South America""" +2024-07-13,72451,8243,"[\""Keyboard\"", \""Charger\""]",862.47,"{\""seasonal\"": \""8%\""}",186254,1,"""South America""" +2023-07-26,72452,5913,"[\""Tablet\""]",4594.34,"{\""promo\"": \""22%\""}",9020,0,"""North America""" +2023-10-16,72453,8308,"[\""Laptop\"", \""Charger\""]",4164.94,{},77318,1,"""Europe""" +2023-04-28,72454,3234,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",956.66,"{\""promo\"": \""14%\""}",12016,1,"""North America""" +2023-11-23,72455,4867,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1235.35,{},197238,0,"""Europe""" +2024-01-24,72456,4318,"[\""Charger\""]",3466.92,"{\""promo\"": \""23%\""}",78490,0,"""Asia""" +2024-09-29,72457,1543,"[\""Wireless Mouse\""]",4977.58,{},248975,1,"""Europe""" +2024-10-04,72458,3140,"[\""Tablet\"", \""Wireless Mouse\""]",1546.65,{},159500,1,"""Europe""" +2024-02-11,72459,3126,"[\""Keyboard\"", \""Tablet\""]",1570.87,"{\""loyalty\"": \""27%\""}",247663,0,"""North America""" +2024-12-25,72460,2507,"[\""Tablet\""]",3608.26,{},57706,1,"""North America""" +2023-07-09,72461,1281,"[\""Keyboard\""]",195.86,"{\"": \""18%\""}",269148,1,"""Europe""" +2023-02-12,72462,9190,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1876.28,{},55255,1,"""Europe""" +2023-12-23,72463,771,"[\""Laptop\"", \""Tablet\""]",3040.44,"{\""promo\"": \""14%\""}",279229,0,"""Africa""" +2024-05-23,72464,5737,"[\""Headphones\""]",4534.93,{},59051,0,"""Asia""" +2023-01-03,72465,894,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3991.91,{},51886,0,"""South America""" +2023-12-06,72466,1454,"[\""Tablet\"", \""Laptop\""]",2996.8,{},250747,1,"""Asia""" +2024-12-02,72467,1413,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2717.81,{},91616,0,"""Asia""" +2024-01-12,72468,8570,"[\""Phone\"", \""Laptop\""]",4327.19,"{\""seasonal\"": \""8%\""}",1494,1,"""Africa""" +2023-09-12,72469,6489,"[\""Laptop\"", \""Keyboard\""]",3887.3,"{\""promo\"": \""5%\""}",255302,0,"""South America""" +2023-07-10,72470,8344,"[\""Phone\"", \""Monitor\""]",2917.28,{},178915,0,"""North America""" +2024-09-08,72471,741,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4507.64,"{\""seasonal\"": \""29%\""}",157123,1,"""Europe""" +2024-01-29,72472,3853,"[\""Keyboard\""]",1448.82,"{\""promo\"": \""21%\""}",215147,1,"""North America""" +2024-03-30,72473,2738,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3499.64,{},55471,0,"""Europe""" +2023-08-24,72474,400,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",573.98,"{\""loyalty\"": \""15%\""}",96867,1,"""South America""" +2024-05-24,72475,8401,"[\""Tablet\"", \""Monitor\""]",72.49,"{\""promo\"": \""12%\""}",123858,1,"""North America""" +2023-03-23,72476,3916,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2744.24,{},233728,0,"""Asia""" +2023-07-25,72477,7428,"[\""Tablet\"", \""Laptop\""]",4051.3,{},105224,1,"""North America""" +2023-04-05,72478,6147,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3067.39,{},189474,0,"""Asia""" +2023-11-22,72479,9302,"[\""Laptop\""]",4678.07,{},142642,1,"""North America""" +2024-07-30,72480,8872,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4629.29,"{\""loyalty\"": \""14%\""}",205846,1,"""Asia""" +2023-12-24,72481,4837,"[\""Charger\"", \""Laptop\""]",4947.21,{},256918,0,"""South America""" +2023-01-25,72482,7834,"[\""Wireless Mouse\"", \""Laptop\""]",3912.57,"{\""loyalty\"": \""14%\""}",203546,0,"""Europe""" +2023-09-26,72483,4960,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1814.69,"{\""loyalty\"": \""15%\""}",229120,1,"""South America""" +2023-12-28,72484,7573,"[\""Laptop\"", \""Tablet\""]",4159.24,{},49589,1,"""Africa""" +2023-02-07,72485,982,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2862.12,"{\"": \""20%\""}",74414,0,"""Asia""" +2024-03-04,72486,4727,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2146.76,{},277672,1,"""Asia""" +2023-04-29,72487,6477,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1086.94,{},12354,1,"""North America""" +2024-11-13,72488,9367,"[\""Charger\""]",3187.56,{},6876,0,"""Europe""" +2024-07-31,72489,9228,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4308.73,"{\""loyalty\"": \""18%\""}",180562,1,"""Europe""" +2023-04-23,72490,3562,"[\""Keyboard\""]",4021.04,"{\""loyalty\"": \""29%\""}",46247,1,"""North America""" +2024-05-04,72491,2280,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3584.58,{},208676,0,"""North America""" +2024-01-25,72492,7721,"[\""Laptop\""]",522.6,"{\""promo\"": \""10%\""}",148693,1,"""Asia""" +2024-03-14,72493,6900,"[\""Laptop\"", \""Monitor\""]",2093.91,{},60790,1,"""Europe""" +2023-03-09,72494,7146,"[\""Wireless Mouse\"", \""Headphones\""]",4152.48,"{\"": \""24%\""}",160521,0,"""North America""" +2024-03-05,72495,7462,"[\""Monitor\"", \""Wireless Mouse\""]",2573.97,{},92411,0,"""North America""" +2024-10-19,72496,5773,"[\""Monitor\""]",2861.34,"{\""loyalty\"": \""18%\""}",90409,0,"""North America""" +2023-11-01,72497,2994,"[\""Phone\"", \""Keyboard\""]",952.92,"{\""promo\"": \""17%\""}",155163,1,"""North America""" +2023-06-29,72498,1510,"[\""Charger\""]",4396.52,"{\""promo\"": \""16%\""}",267823,0,"""Asia""" +2023-08-15,72499,3121,"[\""Tablet\""]",2211.12,{},275108,0,"""Africa""" +2024-08-21,72500,6347,"[\""Tablet\"", \""Charger\""]",2558.77,"{\""loyalty\"": \""7%\""}",117840,1,"""Asia""" +2023-03-14,72501,7562,"[\""Keyboard\""]",1403.62,{},63044,1,"""Europe""" +2023-07-16,72502,6612,"[\""Charger\""]",1629.89,"{\""seasonal\"": \""24%\""}",50699,0,"""Asia""" +2023-10-08,72503,5124,"[\""Tablet\"", \""Keyboard\""]",755.07,"{\""loyalty\"": \""7%\""}",43997,0,"""South America""" +2023-01-03,72504,8829,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2325.78,{},296168,0,"""Africa""" +2024-08-13,72505,3430,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1688.7,{},177764,1,"""Europe""" +2023-02-10,72506,8759,"[\""Monitor\""]",3672.7,{},35693,1,"""Asia""" +2023-09-23,72507,1198,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2087.27,"{\""seasonal\"": \""24%\""}",157524,1,"""Africa""" +2023-05-23,72508,8665,"[\""Monitor\""]",251.96,"{\""promo\"": \""24%\""}",105675,1,"""Asia""" +2024-07-09,72509,200,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1548.56,"{\""loyalty\"": \""15%\""}",240423,1,"""Europe""" +2023-05-23,72510,3885,"[\""Laptop\""]",1677.92,"{\""promo\"": \""20%\""}",87622,1,"""North America""" +2024-06-03,72511,7964,"[\""Wireless Mouse\""]",2226.58,"{\""promo\"": \""7%\""}",120404,1,"""Europe""" +2023-08-22,72512,1561,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3800.08,{},191236,0,"""South America""" +2024-05-13,72513,6373,"[\""Monitor\"", \""Charger\""]",4629.68,"{\""loyalty\"": \""20%\""}",290332,1,"""Africa""" +2024-12-11,72514,1584,"[\""Tablet\""]",374.32,"{\""promo\"": \""11%\""}",242785,1,"""North America""" +2024-07-08,72515,3215,"[\""Charger\""]",4022.55,"{\""seasonal\"": \""18%\""}",8230,0,"""Asia""" +2023-06-18,72516,4024,"[\""Monitor\"", \""Headphones\""]",894.13,"{\""loyalty\"": \""18%\""}",251739,1,"""North America""" +2024-09-25,72517,9340,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2739.13,"{\""promo\"": \""15%\""}",266353,0,"""North America""" +2023-05-18,72518,7381,"[\""Laptop\""]",1059.07,"{\""promo\"": \""8%\""}",260179,1,"""South America""" +2024-07-27,72519,1808,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3577.72,"{\""promo\"": \""5%\""}",38338,1,"""Asia""" +2024-03-15,72520,8375,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1115.71,"{\"": \""10%\""}",62881,1,"""Asia""" +2023-09-21,72521,5414,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4078.14,"{\""loyalty\"": \""10%\""}",32534,1,"""Asia""" +2023-05-18,72522,8479,"[\""Monitor\""]",898.98,"{\"": \""8%\""}",109720,0,"""Africa""" +2024-10-15,72523,9573,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1275.39,{},216497,1,"""Africa""" +2024-07-16,72524,3798,"[\""Tablet\"", \""Phone\"", \""Charger\""]",163.78,"{\"": \""21%\""}",263657,1,"""North America""" +2023-03-15,72525,6567,"[\""Keyboard\"", \""Tablet\""]",759.13,"{\""seasonal\"": \""19%\""}",102520,1,"""North America""" +2023-08-15,72526,9686,"[\""Keyboard\"", \""Monitor\""]",1928.16,"{\""promo\"": \""20%\""}",12442,0,"""Asia""" +2024-03-31,72527,7367,"[\""Headphones\""]",359.99,{},102576,1,"""Asia""" +2023-02-23,72528,3928,"[\""Phone\"", \""Charger\""]",4941.09,{},184058,0,"""North America""" +2024-03-06,72529,128,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1014.11,{},18767,0,"""Europe""" +2024-08-26,72530,2719,"[\""Keyboard\"", \""Wireless Mouse\""]",3052.99,{},60172,1,"""South America""" +2024-06-12,72531,7910,"[\""Laptop\"", \""Keyboard\""]",2984.81,{},167509,0,"""Europe""" +2023-12-08,72532,2492,"[\""Wireless Mouse\"", \""Phone\""]",1277.2,"{\""promo\"": \""18%\""}",61655,0,"""Europe""" +2024-05-14,72533,4765,"[\""Headphones\"", \""Phone\""]",3088.41,"{\""loyalty\"": \""16%\""}",288942,0,"""Asia""" +2024-01-26,72534,2741,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",715.41,{},162459,0,"""Europe""" +2024-12-06,72535,3200,"[\""Laptop\"", \""Phone\""]",4086.93,{},190726,0,"""Africa""" +2023-06-24,72536,8567,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1949.83,"{\""promo\"": \""30%\""}",153125,0,"""North America""" +2024-01-26,72537,6490,"[\""Laptop\""]",2974.2,{},118196,1,"""North America""" +2024-05-19,72538,9539,"[\""Phone\""]",3551.11,"{\""seasonal\"": \""27%\""}",262322,1,"""North America""" +2023-11-12,72539,3373,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",267.95,{},236469,1,"""South America""" +2023-11-16,72540,8610,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2790.04,{},64489,1,"""South America""" +2024-03-06,72541,8535,"[\""Wireless Mouse\"", \""Headphones\""]",2466.82,"{\""seasonal\"": \""12%\""}",132935,0,"""South America""" +2024-05-21,72542,7923,"[\""Phone\""]",4859.13,"{\"": \""18%\""}",20205,1,"""Africa""" +2024-12-27,72543,3360,"[\""Phone\""]",3783.32,{},162540,1,"""South America""" +2023-05-10,72544,5313,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2347.31,"{\"": \""22%\""}",18010,1,"""North America""" +2024-04-23,72545,1128,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1355.28,{},234351,0,"""North America""" +2024-04-02,72546,1488,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2326.82,{},165786,1,"""North America""" +2023-04-24,72547,9790,"[\""Headphones\""]",1516.37,"{\""promo\"": \""17%\""}",220209,0,"""Africa""" +2023-12-20,72548,440,"[\""Tablet\""]",3754.38,"{\""loyalty\"": \""18%\""}",10923,0,"""South America""" +2024-03-17,72549,5901,"[\""Monitor\"", \""Wireless Mouse\""]",1072.92,{},182711,1,"""Europe""" +2023-10-10,72550,2755,"[\""Keyboard\""]",2779.62,"{\"": \""24%\""}",199614,1,"""North America""" +2023-03-21,72551,2378,"[\""Phone\"", \""Wireless Mouse\""]",2296.87,{},247909,1,"""North America""" +2023-10-29,72552,3361,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2719.48,{},232914,1,"""Africa""" +2023-02-12,72553,2506,"[\""Wireless Mouse\"", \""Charger\""]",4928.98,{},155574,1,"""Asia""" +2023-10-06,72554,3424,"[\""Tablet\""]",372.72,"{\""seasonal\"": \""18%\""}",42102,1,"""Europe""" +2023-06-26,72555,4718,"[\""Monitor\""]",3484.31,"{\""loyalty\"": \""26%\""}",31394,0,"""North America""" +2024-01-03,72556,9085,"[\""Phone\""]",1103.66,{},124667,1,"""Europe""" +2024-04-09,72557,6150,"[\""Wireless Mouse\"", \""Tablet\""]",4593.43,"{\""promo\"": \""13%\""}",182942,0,"""Europe""" +2023-10-27,72558,6800,"[\""Tablet\"", \""Keyboard\""]",1058.21,{},183653,1,"""North America""" +2023-03-18,72559,7912,"[\""Phone\""]",2627.89,{},7985,1,"""Europe""" +2023-06-15,72560,2753,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1716.65,{},55261,1,"""Asia""" +2024-10-21,72561,2433,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4026.39,"{\""promo\"": \""30%\""}",7424,1,"""Asia""" +2024-07-03,72562,2946,"[\""Headphones\"", \""Tablet\""]",2180.37,{},106021,1,"""South America""" +2024-04-12,72563,2779,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3324.88,{},69500,1,"""Africa""" +2024-12-13,72564,2800,"[\""Charger\"", \""Laptop\""]",3114.3,{},109179,1,"""South America""" +2024-03-05,72565,6006,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",885.61,{},44616,1,"""Africa""" +2024-06-27,72566,9649,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3349.9,{},95876,1,"""South America""" +2024-02-10,72567,3479,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1528.68,"{\"": \""17%\""}",178766,1,"""South America""" +2023-05-04,72568,8421,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",842.19,{},278575,1,"""Europe""" +2023-02-05,72569,2033,"[\""Monitor\"", \""Charger\""]",1484.71,"{\""loyalty\"": \""12%\""}",24559,0,"""North America""" +2023-11-27,72570,8733,"[\""Tablet\"", \""Wireless Mouse\""]",390.49,{},278027,0,"""North America""" +2024-12-12,72571,3628,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3361.62,{},265118,1,"""North America""" +2024-02-13,72572,7795,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3449.32,"{\""seasonal\"": \""28%\""}",127546,1,"""Africa""" +2023-04-30,72573,6885,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1319.2,"{\"": \""5%\""}",226928,0,"""South America""" +2024-02-02,72574,4891,"[\""Keyboard\"", \""Laptop\""]",4853.45,{},122165,0,"""Africa""" +2024-03-17,72575,8344,"[\""Headphones\""]",1926.39,{},289151,0,"""South America""" +2024-01-11,72576,5437,"[\""Laptop\"", \""Headphones\""]",796.47,{},113942,1,"""South America""" +2023-12-05,72577,207,"[\""Charger\""]",2486.58,"{\""loyalty\"": \""28%\""}",114402,0,"""Africa""" +2024-09-27,72578,9497,"[\""Monitor\"", \""Tablet\""]",2764.43,"{\""promo\"": \""13%\""}",210238,0,"""Europe""" +2024-06-28,72579,9570,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1096.87,{},248951,1,"""South America""" +2024-07-26,72580,1704,"[\""Keyboard\""]",2502.9,{},228631,0,"""South America""" +2023-09-06,72581,9978,"[\""Headphones\""]",684.41,{},106226,0,"""Europe""" +2024-06-21,72582,7598,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3458.56,"{\"": \""27%\""}",218859,1,"""North America""" +2024-02-20,72583,5870,"[\""Keyboard\""]",3693.32,{},267004,1,"""Europe""" +2024-07-16,72584,7457,"[\""Laptop\"", \""Keyboard\""]",2589.62,"{\""seasonal\"": \""9%\""}",122133,1,"""North America""" +2024-03-07,72585,3215,"[\""Monitor\"", \""Wireless Mouse\""]",3485.58,{},231922,0,"""South America""" +2024-11-27,72586,8268,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3811.09,"{\""seasonal\"": \""14%\""}",33120,0,"""Europe""" +2023-11-22,72587,7247,"[\""Wireless Mouse\""]",3079.38,{},219812,0,"""South America""" +2023-03-01,72588,9983,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2844.74,{},284858,1,"""North America""" +2024-03-23,72589,1161,"[\""Wireless Mouse\"", \""Monitor\""]",1266.76,"{\""loyalty\"": \""15%\""}",147727,0,"""North America""" +2023-06-19,72590,6005,"[\""Phone\""]",3280.75,{},159345,0,"""South America""" +2024-05-07,72591,5447,"[\""Charger\""]",4544.09,"{\""promo\"": \""14%\""}",230601,1,"""Asia""" +2024-04-11,72592,9953,"[\""Wireless Mouse\""]",1320.39,"{\""loyalty\"": \""13%\""}",40744,1,"""South America""" +2024-11-29,72593,4893,"[\""Laptop\"", \""Phone\""]",2224.17,"{\""seasonal\"": \""6%\""}",38846,1,"""Asia""" +2024-05-23,72594,1728,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2769.0,"{\""seasonal\"": \""26%\""}",74448,0,"""South America""" +2023-05-09,72595,2913,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2448.88,{},108309,1,"""Asia""" +2023-12-17,72596,4200,"[\""Phone\"", \""Tablet\""]",4738.54,"{\""promo\"": \""24%\""}",269823,1,"""Africa""" +2023-02-14,72597,6410,"[\""Tablet\""]",114.76,{},256707,1,"""Asia""" +2023-05-06,72598,9380,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1544.68,{},87561,1,"""Europe""" +2024-07-28,72599,9135,"[\""Phone\"", \""Charger\""]",126.25,"{\""seasonal\"": \""16%\""}",158300,1,"""Africa""" +2023-04-03,72600,2132,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2555.76,"{\"": \""8%\""}",149554,0,"""South America""" +2023-10-12,72601,3308,"[\""Keyboard\"", \""Headphones\""]",886.03,"{\""promo\"": \""30%\""}",138025,1,"""South America""" +2024-11-29,72602,4852,"[\""Laptop\"", \""Phone\""]",1958.55,"{\""seasonal\"": \""18%\""}",206710,1,"""North America""" +2023-03-20,72603,8767,"[\""Tablet\""]",1727.69,"{\""loyalty\"": \""21%\""}",6048,0,"""Europe""" +2023-10-08,72604,7976,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1783.12,{},40695,0,"""Asia""" +2024-05-14,72605,8065,"[\""Monitor\""]",4728.01,{},293097,0,"""South America""" +2023-01-01,72606,8017,"[\""Laptop\""]",4406.29,"{\"": \""8%\""}",139310,0,"""North America""" +2024-12-08,72607,5253,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",216.53,{},162953,1,"""North America""" +2024-11-03,72608,8764,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3300.97,"{\"": \""16%\""}",186759,0,"""Africa""" +2024-08-07,72609,3016,"[\""Headphones\"", \""Laptop\""]",835.98,{},148471,0,"""Europe""" +2024-09-18,72610,299,"[\""Charger\"", \""Keyboard\""]",3064.32,"{\""loyalty\"": \""11%\""}",13733,1,"""North America""" +2023-07-20,72611,9618,"[\""Charger\"", \""Laptop\""]",364.85,{},105516,0,"""South America""" +2023-11-20,72612,4525,"[\""Laptop\""]",2550.35,"{\""promo\"": \""21%\""}",291743,0,"""Asia""" +2023-02-28,72613,3446,"[\""Charger\""]",3458.24,"{\""seasonal\"": \""27%\""}",229424,0,"""Africa""" +2023-03-01,72614,329,"[\""Phone\""]",679.89,"{\""seasonal\"": \""16%\""}",283695,0,"""Africa""" +2024-10-23,72615,9218,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3051.89,{},97722,0,"""Asia""" +2024-03-09,72616,3286,"[\""Wireless Mouse\"", \""Tablet\""]",4429.04,{},267577,0,"""South America""" +2023-06-29,72617,4575,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",267.16,{},154271,1,"""Europe""" +2023-05-19,72618,7892,"[\""Wireless Mouse\""]",1284.23,{},89401,0,"""South America""" +2024-01-31,72619,208,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",254.43,"{\""loyalty\"": \""26%\""}",289977,0,"""Asia""" +2024-08-30,72620,7768,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4606.27,{},101409,0,"""Europe""" +2024-08-10,72621,193,"[\""Wireless Mouse\""]",1221.31,{},202669,1,"""Europe""" +2023-02-25,72622,4732,"[\""Wireless Mouse\""]",3718.92,{},282005,0,"""Asia""" +2024-12-13,72623,3076,"[\""Keyboard\"", \""Laptop\""]",4283.99,"{\""seasonal\"": \""12%\""}",60193,0,"""North America""" +2023-07-15,72624,7950,"[\""Charger\"", \""Headphones\""]",3986.89,"{\"": \""6%\""}",146422,1,"""South America""" +2024-06-22,72625,1743,"[\""Phone\""]",2319.44,{},66912,1,"""Asia""" +2024-03-24,72626,6386,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4121.94,{},115855,1,"""South America""" +2024-01-17,72627,1536,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4442.76,{},8679,0,"""South America""" +2024-04-16,72628,1764,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1488.47,"{\""seasonal\"": \""17%\""}",211221,0,"""South America""" +2023-10-01,72629,9993,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1662.03,"{\""seasonal\"": \""12%\""}",71563,1,"""North America""" +2024-05-30,72630,3680,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4500.2,"{\""seasonal\"": \""23%\""}",11862,1,"""Asia""" +2024-01-04,72631,9042,"[\""Headphones\"", \""Laptop\""]",4530.96,{},243949,0,"""North America""" +2024-11-01,72632,7178,"[\""Monitor\""]",4060.82,"{\""seasonal\"": \""12%\""}",256310,1,"""Europe""" +2024-04-19,72633,112,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1618.0,{},134527,1,"""North America""" +2024-11-09,72634,6009,"[\""Laptop\"", \""Keyboard\""]",3987.58,{},154932,1,"""South America""" +2024-03-13,72635,4278,"[\""Phone\""]",468.96,{},133606,1,"""North America""" +2024-04-05,72636,8629,"[\""Headphones\"", \""Phone\""]",1361.99,"{\""seasonal\"": \""8%\""}",116261,1,"""North America""" +2024-05-13,72637,2765,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",147.41,"{\""seasonal\"": \""6%\""}",240516,1,"""Europe""" +2024-11-06,72638,4487,"[\""Wireless Mouse\"", \""Charger\""]",4079.69,{},104873,1,"""South America""" +2024-09-28,72639,8348,"[\""Charger\"", \""Tablet\""]",2374.66,{},263057,1,"""South America""" +2023-04-15,72640,6844,"[\""Headphones\""]",785.92,{},130189,0,"""Asia""" +2024-11-07,72641,1810,"[\""Charger\"", \""Laptop\""]",700.82,{},5336,0,"""Africa""" +2023-04-15,72642,6060,"[\""Tablet\""]",599.87,"{\""loyalty\"": \""28%\""}",247148,1,"""Asia""" +2023-01-03,72643,9349,"[\""Charger\""]",2173.05,"{\""loyalty\"": \""12%\""}",43459,1,"""North America""" +2023-01-20,72644,8576,"[\""Wireless Mouse\"", \""Tablet\""]",408.3,"{\""seasonal\"": \""28%\""}",81524,0,"""North America""" +2023-12-22,72645,9735,"[\""Charger\"", \""Tablet\""]",3666.44,{},68131,0,"""South America""" +2024-02-28,72646,1305,"[\""Charger\""]",4986.45,{},48802,1,"""Asia""" +2024-10-24,72647,2009,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2983.13,"{\""promo\"": \""29%\""}",68606,0,"""Africa""" +2024-09-26,72648,9508,"[\""Monitor\""]",3489.59,{},97176,0,"""Africa""" +2024-03-07,72649,4899,"[\""Wireless Mouse\"", \""Phone\""]",4187.3,{},237039,0,"""South America""" +2023-09-29,72650,2439,"[\""Charger\""]",3243.62,{},221169,1,"""North America""" +2024-09-04,72651,5792,"[\""Wireless Mouse\"", \""Phone\""]",1548.25,{},210391,1,"""Europe""" +2023-11-20,72652,4582,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1749.59,{},22532,0,"""Africa""" +2023-01-08,72653,3083,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1079.31,"{\""seasonal\"": \""25%\""}",247189,1,"""Europe""" +2023-10-03,72654,1933,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",358.39,{},279343,1,"""Africa""" +2023-06-19,72655,9972,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",788.39,{},197116,1,"""South America""" +2023-02-06,72656,2025,"[\""Phone\"", \""Wireless Mouse\""]",4297.75,{},32967,1,"""South America""" +2023-12-25,72657,8880,"[\""Laptop\"", \""Phone\""]",2009.31,{},119360,1,"""Asia""" +2024-11-23,72658,7901,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1213.84,"{\""loyalty\"": \""16%\""}",254142,0,"""Europe""" +2024-12-18,72659,3195,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3425.53,"{\""loyalty\"": \""26%\""}",180135,0,"""Asia""" +2023-11-03,72660,1050,"[\""Tablet\""]",4636.52,{},175934,1,"""Asia""" +2023-09-03,72661,4504,"[\""Keyboard\""]",4104.29,"{\"": \""25%\""}",145288,0,"""Africa""" +2024-06-16,72662,427,"[\""Headphones\"", \""Wireless Mouse\""]",1418.27,{},19991,1,"""North America""" +2024-07-07,72663,6988,"[\""Charger\"", \""Headphones\""]",1628.85,"{\"": \""12%\""}",99430,0,"""Africa""" +2023-02-18,72664,9507,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",3413.56,"{\""loyalty\"": \""30%\""}",146376,0,"""Europe""" +2023-10-02,72665,3704,"[\""Headphones\"", \""Monitor\""]",1511.89,"{\""promo\"": \""25%\""}",140769,1,"""Africa""" +2023-09-13,72666,22,"[\""Wireless Mouse\"", \""Headphones\""]",1740.28,{},232481,0,"""Europe""" +2023-07-23,72667,2458,"[\""Keyboard\"", \""Monitor\""]",1540.05,{},42507,0,"""Europe""" +2023-12-12,72668,4083,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4900.22,{},13199,0,"""Europe""" +2024-06-04,72669,3487,"[\""Tablet\""]",1742.47,"{\""promo\"": \""7%\""}",42902,1,"""Asia""" +2023-08-16,72670,242,"[\""Tablet\""]",736.52,{},268127,0,"""South America""" +2024-05-13,72671,7421,"[\""Phone\"", \""Monitor\""]",3675.26,{},5389,0,"""Europe""" +2023-02-08,72672,3431,"[\""Tablet\""]",2920.0,{},46677,0,"""Europe""" +2023-09-27,72673,9996,"[\""Keyboard\""]",4227.45,{},156720,0,"""South America""" +2024-12-16,72674,558,"[\""Monitor\""]",2066.2,"{\"": \""9%\""}",120627,1,"""Africa""" +2023-05-13,72675,6028,"[\""Keyboard\""]",2483.04,"{\""promo\"": \""27%\""}",179778,0,"""North America""" +2023-12-21,72676,5364,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3014.93,"{\""seasonal\"": \""27%\""}",262457,0,"""North America""" +2023-08-13,72677,5224,"[\""Keyboard\"", \""Monitor\""]",3420.52,"{\""seasonal\"": \""20%\""}",213736,1,"""South America""" +2023-12-02,72678,2938,"[\""Wireless Mouse\"", \""Phone\""]",610.1,{},94166,0,"""Africa""" +2023-09-07,72679,9208,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3122.93,{},112432,1,"""Africa""" +2024-11-14,72680,4218,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",162.55,{},285630,1,"""Europe""" +2024-08-09,72681,9742,"[\""Wireless Mouse\""]",668.14,{},16050,1,"""Europe""" +2023-05-03,72682,5640,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4992.6,{},192665,1,"""Asia""" +2024-09-07,72683,3143,"[\""Phone\"", \""Headphones\""]",1508.89,{},123330,1,"""Africa""" +2023-02-26,72684,554,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2950.53,{},125959,1,"""South America""" +2024-08-04,72685,7274,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4417.85,{},120514,0,"""North America""" +2024-12-12,72686,1142,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2087.07,{},60451,0,"""Africa""" +2023-04-15,72687,862,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4980.41,"{\""loyalty\"": \""15%\""}",24957,1,"""North America""" +2023-03-24,72688,6331,"[\""Tablet\""]",4015.1,"{\"": \""8%\""}",293747,0,"""North America""" +2023-04-14,72689,1832,"[\""Tablet\""]",3221.17,"{\""loyalty\"": \""15%\""}",83519,1,"""North America""" +2023-04-27,72690,429,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3675.34,{},211374,1,"""South America""" +2023-12-14,72691,174,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3562.1,"{\""promo\"": \""26%\""}",158602,1,"""South America""" +2023-05-30,72692,7231,"[\""Keyboard\""]",725.77,"{\""promo\"": \""26%\""}",49564,0,"""North America""" +2024-03-24,72693,5032,"[\""Charger\""]",4544.94,{},83530,0,"""Asia""" +2024-10-23,72694,3891,"[\""Wireless Mouse\"", \""Tablet\""]",1046.97,{},190624,0,"""Africa""" +2024-07-09,72695,5477,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4667.25,{},177124,1,"""North America""" +2023-11-23,72696,8743,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1258.22,"{\""promo\"": \""15%\""}",111707,1,"""Europe""" +2024-12-08,72697,3310,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2138.36,"{\"": \""26%\""}",10653,0,"""Africa""" +2023-11-19,72698,3351,"[\""Tablet\""]",3881.84,"{\""promo\"": \""22%\""}",220540,0,"""Asia""" +2024-06-08,72699,3701,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1044.52,"{\"": \""5%\""}",228414,0,"""South America""" +2024-11-19,72700,8725,"[\""Charger\"", \""Tablet\""]",1237.07,{},213407,0,"""Africa""" +2024-09-19,72701,4651,"[\""Monitor\"", \""Keyboard\""]",258.42,{},24940,0,"""Africa""" +2023-12-01,72702,3828,"[\""Wireless Mouse\""]",2243.26,"{\"": \""30%\""}",249335,1,"""Europe""" +2024-02-16,72703,595,"[\""Charger\""]",4881.18,{},286256,0,"""Europe""" +2023-11-21,72704,1151,"[\""Charger\""]",4377.01,"{\"": \""11%\""}",202445,0,"""Africa""" +2023-06-21,72705,8545,"[\""Charger\""]",2376.03,"{\""seasonal\"": \""9%\""}",15604,1,"""Europe""" +2024-06-28,72706,9476,"[\""Charger\""]",3559.5,"{\""promo\"": \""15%\""}",47178,0,"""South America""" +2024-11-08,72707,8257,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4422.7,{},271321,0,"""Europe""" +2023-04-18,72708,5963,"[\""Charger\""]",4151.75,"{\""promo\"": \""9%\""}",145652,0,"""North America""" +2023-08-01,72709,466,"[\""Monitor\"", \""Laptop\""]",4806.18,"{\""loyalty\"": \""20%\""}",167063,0,"""Africa""" +2024-01-10,72710,6104,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",819.62,{},44206,0,"""Africa""" +2023-01-02,72711,1352,"[\""Tablet\""]",3175.85,"{\""promo\"": \""6%\""}",190431,0,"""South America""" +2024-05-28,72712,4293,"[\""Laptop\"", \""Headphones\""]",207.35,{},92251,1,"""Africa""" +2023-05-01,72713,3465,"[\""Tablet\"", \""Monitor\""]",2666.89,{},93738,1,"""Africa""" +2024-05-30,72714,1193,"[\""Monitor\"", \""Tablet\""]",4845.81,"{\""promo\"": \""30%\""}",67288,1,"""South America""" +2023-08-01,72715,5777,"[\""Headphones\""]",2330.23,{},141319,0,"""South America""" +2024-05-15,72716,542,"[\""Laptop\""]",3040.65,{},239680,1,"""Europe""" +2023-09-16,72717,6181,"[\""Charger\"", \""Wireless Mouse\""]",692.5,{},282442,0,"""Asia""" +2024-02-07,72718,412,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",892.45,"{\""promo\"": \""30%\""}",136662,1,"""Asia""" +2023-02-12,72719,2449,"[\""Charger\""]",3664.3,{},51196,0,"""Europe""" +2024-09-03,72720,5900,"[\""Laptop\"", \""Tablet\""]",1321.07,{},234539,0,"""North America""" +2023-05-25,72721,9050,"[\""Wireless Mouse\"", \""Charger\""]",2843.41,{},139550,1,"""Europe""" +2024-04-10,72722,1326,"[\""Phone\""]",1217.68,{},260996,1,"""Africa""" +2024-01-07,72723,2051,"[\""Keyboard\"", \""Wireless Mouse\""]",2890.44,{},55320,1,"""Europe""" +2024-05-12,72724,9798,"[\""Headphones\"", \""Monitor\""]",753.04,"{\""promo\"": \""19%\""}",101986,0,"""Asia""" +2024-08-24,72725,9223,"[\""Laptop\"", \""Charger\""]",4210.63,{},157354,1,"""South America""" +2023-05-21,72726,3344,"[\""Phone\""]",2312.11,{},172810,1,"""Africa""" +2023-05-16,72727,5520,"[\""Phone\"", \""Charger\""]",639.1,{},14495,1,"""Asia""" +2024-06-14,72728,5924,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1093.55,"{\"": \""25%\""}",161527,1,"""South America""" +2024-10-10,72729,1793,"[\""Charger\""]",3194.1,{},248418,1,"""South America""" +2023-05-19,72730,7777,"[\""Keyboard\"", \""Headphones\""]",2738.91,"{\""seasonal\"": \""21%\""}",12645,1,"""North America""" +2024-06-16,72731,8921,"[\""Charger\"", \""Wireless Mouse\""]",3947.74,"{\""promo\"": \""14%\""}",53978,0,"""Asia""" +2023-04-10,72732,4345,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3503.05,"{\""seasonal\"": \""25%\""}",131432,1,"""North America""" +2023-02-27,72733,6747,"[\""Charger\"", \""Phone\""]",4838.79,{},69617,1,"""Europe""" +2023-04-02,72734,5951,"[\""Charger\""]",860.61,{},58272,1,"""Asia""" +2024-05-12,72735,3941,"[\""Headphones\""]",3523.03,{},169400,1,"""Asia""" +2024-08-23,72736,2163,"[\""Monitor\"", \""Laptop\""]",4297.69,"{\""promo\"": \""27%\""}",285429,0,"""Africa""" +2024-04-01,72737,9453,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2454.99,"{\"": \""28%\""}",71569,0,"""Europe""" +2023-02-11,72738,6489,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3519.81,{},188201,1,"""Asia""" +2024-12-16,72739,1759,"[\""Laptop\"", \""Wireless Mouse\""]",3034.36,"{\""promo\"": \""30%\""}",272407,1,"""Asia""" +2024-05-11,72740,6686,"[\""Monitor\""]",3915.94,"{\""seasonal\"": \""20%\""}",275737,1,"""South America""" +2023-08-27,72741,6478,"[\""Laptop\"", \""Monitor\""]",1764.35,{},109286,0,"""Africa""" +2023-10-16,72742,1569,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2368.71,"{\""seasonal\"": \""12%\""}",83039,1,"""Europe""" +2023-08-14,72743,7095,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",779.51,{},283130,1,"""Africa""" +2023-10-03,72744,8971,"[\""Tablet\"", \""Monitor\""]",467.46,{},25027,0,"""North America""" +2024-12-07,72745,9006,"[\""Keyboard\"", \""Phone\""]",4935.95,"{\""seasonal\"": \""5%\""}",295578,0,"""Africa""" +2024-09-19,72746,4639,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2370.06,{},197365,0,"""South America""" +2024-12-29,72747,8889,"[\""Keyboard\""]",320.03,"{\"": \""7%\""}",166746,0,"""North America""" +2024-04-30,72748,5552,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2993.22,"{\"": \""11%\""}",108711,1,"""Asia""" +2024-12-18,72749,83,"[\""Keyboard\""]",1300.19,{},6662,0,"""South America""" +2023-01-30,72750,3366,"[\""Phone\"", \""Laptop\""]",1118.88,"{\""loyalty\"": \""11%\""}",24046,1,"""Africa""" +2024-06-19,72751,9106,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",52.71,{},293074,1,"""Asia""" +2023-05-14,72752,9249,"[\""Tablet\"", \""Laptop\""]",3819.36,"{\""loyalty\"": \""14%\""}",201598,1,"""Asia""" +2023-03-06,72753,241,"[\""Laptop\"", \""Tablet\""]",1027.93,{},38067,1,"""North America""" +2024-01-24,72754,6226,"[\""Tablet\""]",3733.39,"{\"": \""7%\""}",186483,0,"""South America""" +2024-10-11,72755,102,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",50.74,{},55429,1,"""South America""" +2023-02-06,72756,7248,"[\""Tablet\""]",1270.06,"{\""loyalty\"": \""29%\""}",17385,0,"""Europe""" +2023-08-30,72757,6733,"[\""Tablet\""]",852.93,"{\""promo\"": \""9%\""}",254334,1,"""Africa""" +2023-06-26,72758,5496,"[\""Headphones\"", \""Wireless Mouse\""]",4126.92,{},180765,1,"""Europe""" +2024-07-24,72759,7994,"[\""Laptop\""]",3099.72,"{\"": \""11%\""}",211214,1,"""North America""" +2024-01-05,72760,2553,"[\""Charger\""]",646.59,"{\""loyalty\"": \""25%\""}",279569,0,"""Europe""" +2024-06-20,72761,3691,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",714.86,{},95516,0,"""South America""" +2023-06-08,72762,3409,"[\""Tablet\"", \""Wireless Mouse\""]",3656.54,"{\"": \""8%\""}",58551,1,"""North America""" +2024-06-07,72763,4596,"[\""Wireless Mouse\"", \""Charger\""]",2692.1,{},159009,1,"""Europe""" +2023-02-05,72764,6079,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2305.5,{},69995,0,"""Europe""" +2024-04-29,72765,8980,"[\""Tablet\"", \""Wireless Mouse\""]",3354.86,"{\""seasonal\"": \""22%\""}",175136,1,"""Europe""" +2024-11-06,72766,7346,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4691.45,"{\"": \""10%\""}",199996,1,"""North America""" +2024-03-15,72767,2727,"[\""Charger\""]",743.94,{},140784,1,"""South America""" +2023-10-03,72768,2944,"[\""Wireless Mouse\"", \""Charger\""]",3482.38,{},178649,0,"""Asia""" +2024-02-12,72769,2575,"[\""Tablet\""]",1548.39,{},10289,0,"""Asia""" +2024-03-16,72770,6848,"[\""Charger\"", \""Laptop\""]",4164.95,{},283424,0,"""North America""" +2024-08-18,72771,6217,"[\""Phone\""]",3821.76,"{\""loyalty\"": \""17%\""}",182403,0,"""Europe""" +2023-06-20,72772,4843,"[\""Tablet\""]",4581.89,"{\"": \""21%\""}",240973,0,"""Europe""" +2023-07-30,72773,6882,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2855.75,{},271330,0,"""South America""" +2023-05-24,72774,1301,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2854.44,"{\"": \""6%\""}",193960,1,"""South America""" +2023-11-08,72775,5659,"[\""Wireless Mouse\"", \""Charger\""]",4872.74,"{\"": \""16%\""}",125505,1,"""Asia""" +2024-08-17,72776,6040,"[\""Monitor\"", \""Charger\""]",4050.51,{},209682,1,"""Europe""" +2023-02-24,72777,5185,"[\""Phone\"", \""Monitor\""]",2923.46,"{\""promo\"": \""10%\""}",190790,1,"""South America""" +2023-02-20,72778,3178,"[\""Tablet\""]",3644.0,"{\""loyalty\"": \""11%\""}",174805,0,"""North America""" +2023-12-23,72779,8077,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3751.42,{},34462,0,"""Africa""" +2023-04-07,72780,1557,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",592.75,"{\"": \""22%\""}",127364,1,"""Asia""" +2024-05-22,72781,1126,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2900.71,"{\"": \""10%\""}",211567,1,"""South America""" +2023-03-14,72782,7826,"[\""Tablet\""]",3884.15,"{\""seasonal\"": \""25%\""}",148668,1,"""North America""" +2024-02-01,72783,1205,"[\""Monitor\""]",739.26,{},272552,0,"""South America""" +2024-12-16,72784,8051,"[\""Wireless Mouse\"", \""Keyboard\""]",4659.59,"{\"": \""17%\""}",47109,0,"""Asia""" +2023-07-28,72785,9675,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2255.23,"{\"": \""26%\""}",41095,1,"""Europe""" +2024-11-19,72786,5613,"[\""Phone\"", \""Tablet\""]",4462.52,"{\""loyalty\"": \""10%\""}",287444,1,"""Europe""" +2024-07-24,72787,5881,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4358.25,{},208380,1,"""Africa""" +2023-01-31,72788,141,"[\""Charger\"", \""Tablet\""]",2457.38,"{\""seasonal\"": \""21%\""}",52872,1,"""Africa""" +2023-09-27,72789,6741,"[\""Monitor\""]",1993.08,{},5725,0,"""Europe""" +2024-07-05,72790,7868,"[\""Charger\"", \""Laptop\""]",4674.07,{},215760,1,"""South America""" +2023-02-03,72791,4822,"[\""Tablet\"", \""Charger\""]",745.7,"{\""promo\"": \""13%\""}",134651,1,"""Africa""" +2024-09-18,72792,5717,"[\""Tablet\""]",1606.38,"{\""seasonal\"": \""23%\""}",104720,1,"""Asia""" +2023-04-21,72793,2958,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3970.35,"{\"": \""5%\""}",89727,1,"""Europe""" +2023-10-12,72794,4088,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1578.23,"{\"": \""15%\""}",235162,0,"""Africa""" +2024-09-22,72795,7366,"[\""Tablet\"", \""Laptop\""]",2021.85,{},28841,0,"""Europe""" +2023-02-26,72796,1293,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3306.74,"{\""seasonal\"": \""26%\""}",212282,0,"""Asia""" +2024-10-11,72797,5724,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1103.0,{},126473,0,"""Africa""" +2023-12-14,72798,28,"[\""Charger\"", \""Headphones\""]",4264.65,{},249134,0,"""North America""" +2024-03-21,72799,1365,"[\""Phone\"", \""Headphones\""]",2596.53,"{\"": \""28%\""}",275850,1,"""Europe""" +2023-05-19,72800,1688,"[\""Headphones\""]",2576.84,"{\""seasonal\"": \""23%\""}",183439,0,"""Asia""" +2023-07-13,72801,1708,"[\""Phone\""]",1891.63,{},63659,0,"""South America""" +2024-11-22,72802,7456,"[\""Laptop\""]",2758.73,{},173503,1,"""Africa""" +2024-03-27,72803,7732,"[\""Wireless Mouse\"", \""Headphones\""]",804.82,{},276934,0,"""North America""" +2024-10-09,72804,1567,"[\""Phone\""]",268.4,{},192537,1,"""Asia""" +2024-07-19,72805,7570,"[\""Phone\""]",4701.9,{},76706,0,"""Europe""" +2023-07-13,72806,4611,"[\""Wireless Mouse\"", \""Phone\""]",4766.97,{},77911,1,"""Africa""" +2024-04-19,72807,7000,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4465.92,"{\""seasonal\"": \""29%\""}",207084,1,"""South America""" +2024-01-01,72808,4240,"[\""Keyboard\"", \""Charger\""]",4863.55,"{\""loyalty\"": \""5%\""}",153436,1,"""Africa""" +2024-06-27,72809,2111,"[\""Tablet\""]",3362.84,{},217913,1,"""Asia""" +2024-07-13,72810,841,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2430.98,{},32589,1,"""Africa""" +2023-10-14,72811,7636,"[\""Charger\"", \""Wireless Mouse\""]",2910.28,"{\""loyalty\"": \""22%\""}",146182,1,"""Africa""" +2023-05-08,72812,498,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1723.76,"{\""seasonal\"": \""13%\""}",214817,1,"""Africa""" +2023-04-29,72813,8518,"[\""Monitor\""]",4592.07,{},299288,0,"""North America""" +2023-01-24,72814,3228,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",586.54,{},86934,0,"""Europe""" +2023-05-30,72815,981,"[\""Laptop\""]",2941.28,{},201528,0,"""Africa""" +2023-08-29,72816,7513,"[\""Keyboard\""]",2304.98,{},81404,0,"""Africa""" +2023-12-26,72817,1271,"[\""Laptop\""]",1919.85,{},117105,1,"""Africa""" +2024-04-23,72818,1905,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3989.94,{},207572,1,"""Europe""" +2023-02-08,72819,9038,"[\""Wireless Mouse\""]",4674.55,"{\""seasonal\"": \""12%\""}",108145,1,"""Europe""" +2024-06-14,72820,6749,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4817.53,{},98846,1,"""Asia""" +2023-11-27,72821,72,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4423.89,{},279960,0,"""South America""" +2023-04-08,72822,6442,"[\""Monitor\"", \""Keyboard\""]",1036.59,"{\"": \""29%\""}",179465,0,"""North America""" +2024-12-26,72823,1818,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4419.04,{},180562,1,"""North America""" +2023-07-23,72824,8313,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4499.02,"{\""seasonal\"": \""12%\""}",67676,0,"""Asia""" +2023-08-05,72825,9193,"[\""Monitor\""]",860.59,"{\""promo\"": \""7%\""}",281332,0,"""Africa""" +2023-04-16,72826,7193,"[\""Keyboard\""]",1391.39,{},172497,0,"""Africa""" +2024-08-28,72827,564,"[\""Charger\""]",1247.38,{},90854,1,"""Europe""" +2023-03-02,72828,3357,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3411.1,"{\""seasonal\"": \""26%\""}",48432,0,"""Africa""" +2024-11-10,72829,2782,"[\""Charger\"", \""Phone\""]",2464.11,"{\"": \""8%\""}",226342,0,"""Africa""" +2023-01-31,72830,6228,"[\""Phone\"", \""Keyboard\""]",4545.07,"{\""promo\"": \""18%\""}",299738,1,"""South America""" +2024-07-24,72831,3334,"[\""Charger\""]",440.48,"{\""loyalty\"": \""17%\""}",154944,1,"""South America""" +2024-08-19,72832,2463,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",100.86,{},45756,0,"""Africa""" +2023-04-28,72833,9267,"[\""Headphones\"", \""Tablet\""]",4043.03,"{\""promo\"": \""19%\""}",183064,0,"""Asia""" +2023-12-15,72834,8865,"[\""Monitor\""]",3017.06,{},262227,0,"""North America""" +2023-11-29,72835,8723,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4178.65,"{\""promo\"": \""26%\""}",163138,1,"""South America""" +2023-01-21,72836,3391,"[\""Charger\"", \""Phone\""]",4571.05,"{\""seasonal\"": \""29%\""}",84680,0,"""South America""" +2024-09-17,72837,9515,"[\""Tablet\""]",2783.89,"{\"": \""10%\""}",64160,0,"""North America""" +2024-10-07,72838,8847,"[\""Laptop\""]",1555.91,"{\""seasonal\"": \""13%\""}",275877,1,"""Asia""" +2023-04-12,72839,8412,"[\""Keyboard\""]",3420.26,"{\"": \""6%\""}",294610,0,"""Europe""" +2024-05-10,72840,8893,"[\""Headphones\""]",2097.8,"{\""seasonal\"": \""18%\""}",278785,0,"""South America""" +2024-01-21,72841,4690,"[\""Tablet\""]",3670.81,{},254159,0,"""Asia""" +2023-07-26,72842,658,"[\""Phone\""]",2854.11,{},268723,0,"""South America""" +2023-08-06,72843,9,"[\""Phone\""]",1855.04,"{\""loyalty\"": \""11%\""}",288821,1,"""Europe""" +2023-04-01,72844,9926,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4212.8,"{\""seasonal\"": \""23%\""}",53872,1,"""South America""" +2023-10-04,72845,5480,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4224.22,"{\""loyalty\"": \""10%\""}",122484,1,"""North America""" +2024-01-27,72846,198,"[\""Monitor\"", \""Tablet\""]",4465.4,{},54649,0,"""Africa""" +2024-10-21,72847,2453,"[\""Charger\""]",870.0,{},207132,1,"""North America""" +2023-09-23,72848,1957,"[\""Charger\""]",4740.06,{},152440,1,"""North America""" +2023-02-09,72849,3475,"[\""Monitor\""]",142.59,{},114608,1,"""Asia""" +2024-07-22,72850,7330,"[\""Wireless Mouse\""]",2751.54,{},178801,0,"""Europe""" +2023-05-27,72851,6982,"[\""Tablet\""]",1202.38,{},149343,0,"""North America""" +2023-05-26,72852,9743,"[\""Headphones\""]",2418.53,{},264705,0,"""Asia""" +2024-07-29,72853,8909,"[\""Headphones\"", \""Monitor\""]",2413.98,"{\""loyalty\"": \""27%\""}",90223,1,"""North America""" +2023-08-06,72854,2931,"[\""Charger\"", \""Headphones\""]",2388.94,"{\""promo\"": \""6%\""}",98097,0,"""North America""" +2024-07-15,72855,2405,"[\""Tablet\"", \""Phone\""]",1134.3,{},136692,1,"""Asia""" +2024-11-19,72856,330,"[\""Charger\""]",1838.15,{},162106,0,"""North America""" +2023-11-19,72857,5433,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2733.59,"{\""promo\"": \""6%\""}",139305,1,"""Africa""" +2023-01-27,72858,6243,"[\""Keyboard\"", \""Monitor\""]",2752.05,"{\""loyalty\"": \""10%\""}",159844,0,"""South America""" +2023-08-10,72859,2417,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4821.38,"{\"": \""13%\""}",122004,0,"""South America""" +2023-12-21,72860,46,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",849.24,"{\""loyalty\"": \""7%\""}",231882,0,"""South America""" +2024-07-31,72861,8224,"[\""Keyboard\"", \""Phone\""]",523.95,{},77002,1,"""Africa""" +2024-08-02,72862,8819,"[\""Headphones\"", \""Tablet\""]",2089.71,{},294438,1,"""Asia""" +2023-11-16,72863,717,"[\""Laptop\"", \""Headphones\""]",4512.23,{},12728,0,"""Asia""" +2023-01-26,72864,1504,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4798.23,"{\""seasonal\"": \""28%\""}",280298,1,"""Africa""" +2024-01-24,72865,3967,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1784.86,{},196077,1,"""Africa""" +2023-01-06,72866,8574,"[\""Monitor\""]",4747.7,{},57979,0,"""Europe""" +2023-07-13,72867,9792,"[\""Tablet\""]",2793.79,{},134074,1,"""North America""" +2024-09-22,72868,7704,"[\""Phone\""]",1247.29,"{\""loyalty\"": \""7%\""}",5083,0,"""Europe""" +2024-08-15,72869,3206,"[\""Charger\"", \""Tablet\""]",3985.96,{},205956,1,"""Africa""" +2024-12-30,72870,5795,"[\""Phone\"", \""Wireless Mouse\""]",2590.61,"{\""promo\"": \""5%\""}",32541,0,"""North America""" +2023-10-07,72871,272,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",924.69,"{\""loyalty\"": \""29%\""}",71689,1,"""North America""" +2024-06-03,72872,4433,"[\""Monitor\"", \""Keyboard\""]",2118.32,"{\""loyalty\"": \""25%\""}",275213,0,"""Asia""" +2023-01-04,72873,8637,"[\""Laptop\"", \""Wireless Mouse\""]",1226.35,{},191171,1,"""Africa""" +2023-10-21,72874,975,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1047.27,"{\""promo\"": \""6%\""}",240767,0,"""Asia""" +2024-07-11,72875,658,"[\""Phone\""]",2864.73,{},106057,1,"""Asia""" +2023-05-26,72876,5606,"[\""Charger\""]",4038.19,{},254615,0,"""South America""" +2024-02-05,72877,1208,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1973.23,"{\""promo\"": \""14%\""}",261142,1,"""South America""" +2024-08-26,72878,2760,"[\""Laptop\""]",92.25,{},52440,0,"""North America""" +2024-01-08,72879,1159,"[\""Tablet\""]",3526.48,{},5000,1,"""Africa""" +2024-10-05,72880,8666,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1482.0,"{\""seasonal\"": \""30%\""}",286950,1,"""Africa""" +2024-05-12,72881,1472,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3520.47,"{\"": \""24%\""}",2132,1,"""Europe""" +2024-07-06,72882,3405,"[\""Headphones\"", \""Phone\""]",1548.63,{},119326,0,"""Asia""" +2023-03-07,72883,9009,"[\""Keyboard\""]",4540.34,"{\"": \""25%\""}",92379,1,"""South America""" +2023-12-21,72884,2720,"[\""Phone\"", \""Charger\"", \""Tablet\""]",245.17,{},204920,0,"""Africa""" +2023-06-04,72885,3145,"[\""Charger\"", \""Keyboard\""]",4873.6,"{\"": \""10%\""}",34675,0,"""Africa""" +2024-11-23,72886,7618,"[\""Tablet\""]",363.45,{},218017,0,"""Africa""" +2023-01-02,72887,9220,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",437.38,{},52920,0,"""South America""" +2023-09-05,72888,1445,"[\""Laptop\"", \""Phone\""]",3449.03,"{\""loyalty\"": \""20%\""}",72049,0,"""North America""" +2023-02-12,72889,9926,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2432.66,"{\""seasonal\"": \""7%\""}",142102,1,"""South America""" +2023-10-24,72890,9763,"[\""Charger\""]",1417.3,{},163191,1,"""Asia""" +2024-01-21,72891,1128,"[\""Laptop\""]",145.08,{},109611,0,"""Europe""" +2023-11-27,72892,2426,"[\""Monitor\""]",390.6,{},164697,0,"""North America""" +2024-07-23,72893,495,"[\""Keyboard\"", \""Phone\""]",4317.23,"{\""promo\"": \""26%\""}",48657,0,"""Africa""" +2023-05-30,72894,4374,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3325.09,"{\""seasonal\"": \""28%\""}",164741,0,"""South America""" +2023-11-02,72895,6998,"[\""Charger\""]",3279.16,"{\""promo\"": \""22%\""}",136039,1,"""Africa""" +2024-05-22,72896,760,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1334.54,{},34822,0,"""North America""" +2023-04-23,72897,3937,"[\""Monitor\"", \""Charger\""]",3628.28,{},279176,0,"""South America""" +2023-09-30,72898,6573,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3554.95,"{\""seasonal\"": \""29%\""}",155672,0,"""Africa""" +2024-03-14,72899,6317,"[\""Wireless Mouse\""]",1393.5,{},211590,0,"""Europe""" +2023-10-24,72900,4482,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4534.08,{},17256,1,"""Europe""" +2024-04-14,72901,575,"[\""Keyboard\""]",3999.3,{},154150,0,"""North America""" +2023-08-21,72902,1985,"[\""Tablet\""]",1317.01,{},273377,1,"""South America""" +2024-04-14,72903,6012,"[\""Keyboard\""]",4803.67,{},86267,1,"""Europe""" +2024-02-25,72904,1400,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2797.48,{},26726,0,"""North America""" +2023-03-16,72905,7361,"[\""Headphones\"", \""Charger\""]",4545.11,{},244849,0,"""North America""" +2023-06-18,72906,300,"[\""Keyboard\"", \""Monitor\""]",1871.76,"{\""seasonal\"": \""24%\""}",104958,0,"""North America""" +2024-02-02,72907,6375,"[\""Laptop\""]",139.18,{},123828,1,"""South America""" +2024-07-03,72908,2096,"[\""Tablet\"", \""Monitor\""]",2873.68,"{\""seasonal\"": \""15%\""}",280441,0,"""North America""" +2023-11-14,72909,7898,"[\""Phone\""]",4755.16,"{\""promo\"": \""9%\""}",252948,0,"""Africa""" +2024-02-21,72910,5836,"[\""Monitor\""]",4103.99,{},226659,1,"""Africa""" +2023-01-15,72911,3826,"[\""Wireless Mouse\""]",1538.81,"{\""loyalty\"": \""18%\""}",228520,0,"""Europe""" +2024-06-16,72912,3700,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1070.36,"{\""promo\"": \""26%\""}",100041,0,"""North America""" +2024-06-11,72913,8052,"[\""Monitor\""]",3575.61,"{\""loyalty\"": \""7%\""}",169657,0,"""Europe""" +2024-11-25,72914,2167,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1897.85,"{\""seasonal\"": \""27%\""}",165222,1,"""Asia""" +2024-12-16,72915,6161,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2341.1,"{\""promo\"": \""13%\""}",163625,0,"""Europe""" +2023-02-24,72916,6866,"[\""Laptop\"", \""Charger\""]",1757.72,{},152745,0,"""South America""" +2024-11-21,72917,492,"[\""Wireless Mouse\""]",1614.56,{},139408,0,"""Europe""" +2024-01-22,72918,1002,"[\""Monitor\"", \""Laptop\""]",178.66,"{\""seasonal\"": \""17%\""}",247181,1,"""Asia""" +2024-11-27,72919,3882,"[\""Tablet\"", \""Laptop\""]",1666.31,"{\""seasonal\"": \""29%\""}",117017,0,"""North America""" +2023-12-09,72920,5817,"[\""Wireless Mouse\"", \""Keyboard\""]",3130.67,"{\"": \""23%\""}",265825,1,"""Europe""" +2024-04-09,72921,4857,"[\""Monitor\""]",1979.79,{},195878,0,"""South America""" +2023-06-25,72922,2898,"[\""Headphones\""]",4034.25,{},212186,0,"""North America""" +2023-04-28,72923,8950,"[\""Laptop\"", \""Tablet\""]",130.74,"{\""promo\"": \""15%\""}",155734,0,"""Africa""" +2023-06-14,72924,8082,"[\""Keyboard\"", \""Laptop\""]",3264.49,{},209560,0,"""South America""" +2023-10-11,72925,6644,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4980.71,{},130971,1,"""South America""" +2023-09-04,72926,3492,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",360.28,{},53156,1,"""Asia""" +2024-10-17,72927,2186,"[\""Tablet\""]",4569.52,"{\"": \""7%\""}",222937,0,"""South America""" +2023-02-02,72928,9463,"[\""Phone\""]",2213.57,"{\""promo\"": \""9%\""}",280152,0,"""North America""" +2023-02-06,72929,3616,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1822.71,"{\"": \""11%\""}",64249,0,"""North America""" +2023-04-28,72930,1937,"[\""Charger\""]",2662.02,{},85175,0,"""Asia""" +2023-06-15,72931,6566,"[\""Laptop\""]",1081.64,"{\""promo\"": \""21%\""}",92100,1,"""South America""" +2023-04-16,72932,4994,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1740.15,"{\""seasonal\"": \""10%\""}",189919,1,"""South America""" +2024-03-01,72933,6360,"[\""Keyboard\""]",3047.81,{},277757,1,"""Europe""" +2024-09-29,72934,8301,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3512.42,"{\""seasonal\"": \""5%\""}",221914,1,"""Europe""" +2023-10-05,72935,4032,"[\""Monitor\""]",1161.15,{},75934,0,"""Africa""" +2024-01-07,72936,4868,"[\""Wireless Mouse\""]",2007.94,{},222006,1,"""North America""" +2024-12-10,72937,6785,"[\""Charger\"", \""Monitor\""]",1856.88,"{\"": \""19%\""}",229735,0,"""South America""" +2024-07-10,72938,1728,"[\""Laptop\"", \""Tablet\""]",4938.13,{},214957,1,"""North America""" +2023-11-04,72939,3934,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1956.19,"{\""loyalty\"": \""28%\""}",86974,1,"""North America""" +2023-05-31,72940,6127,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2964.7,{},107978,1,"""North America""" +2023-11-05,72941,9585,"[\""Tablet\""]",4254.77,"{\""loyalty\"": \""14%\""}",146991,0,"""South America""" +2024-07-19,72942,8753,"[\""Headphones\""]",3391.16,{},252569,1,"""North America""" +2023-04-17,72943,9633,"[\""Tablet\"", \""Wireless Mouse\""]",2453.91,"{\""seasonal\"": \""28%\""}",65352,1,"""South America""" +2024-08-20,72944,1331,"[\""Monitor\""]",2474.06,{},32179,1,"""North America""" +2023-12-20,72945,9214,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2825.16,"{\""promo\"": \""16%\""}",152104,1,"""Europe""" +2024-01-30,72946,2903,"[\""Laptop\"", \""Headphones\""]",552.44,{},252810,0,"""South America""" +2024-02-29,72947,6062,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1517.54,{},53840,1,"""Europe""" +2023-01-03,72948,8591,"[\""Headphones\"", \""Phone\""]",4927.98,{},195515,0,"""North America""" +2023-05-14,72949,4523,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2412.66,{},280378,0,"""Europe""" +2023-11-23,72950,2101,"[\""Laptop\""]",639.19,"{\""loyalty\"": \""12%\""}",53599,1,"""Asia""" +2023-03-17,72951,5600,"[\""Phone\""]",2725.5,{},164790,1,"""Asia""" +2024-12-25,72952,6352,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2606.05,"{\""seasonal\"": \""30%\""}",62117,1,"""Asia""" +2024-02-21,72953,8474,"[\""Wireless Mouse\""]",3429.83,{},222969,0,"""Europe""" +2023-02-21,72954,461,"[\""Tablet\"", \""Phone\""]",4791.98,"{\""loyalty\"": \""25%\""}",218354,0,"""Asia""" +2024-08-18,72955,9119,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3124.87,{},31094,1,"""Africa""" +2023-01-06,72956,2579,"[\""Laptop\"", \""Monitor\""]",2048.57,"{\""loyalty\"": \""29%\""}",193565,1,"""Europe""" +2023-06-30,72957,9578,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1533.32,"{\""promo\"": \""30%\""}",159430,1,"""Africa""" +2023-04-18,72958,3614,"[\""Keyboard\""]",4818.39,"{\""loyalty\"": \""9%\""}",107610,0,"""South America""" +2024-10-18,72959,2898,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",293.79,{},160400,1,"""Europe""" +2023-05-17,72960,5555,"[\""Tablet\""]",660.82,{},255442,1,"""South America""" +2023-10-25,72961,3511,"[\""Keyboard\""]",4494.63,{},168376,0,"""North America""" +2024-05-30,72962,285,"[\""Laptop\""]",4715.44,{},288127,1,"""North America""" +2024-04-21,72963,9136,"[\""Keyboard\""]",1929.1,"{\"": \""24%\""}",173600,0,"""Africa""" +2024-03-04,72964,1332,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",342.19,{},72450,1,"""North America""" +2024-05-29,72965,8975,"[\""Charger\""]",1004.01,"{\""promo\"": \""23%\""}",45937,1,"""Asia""" +2023-06-16,72966,1105,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1986.65,{},200492,1,"""Africa""" +2023-10-06,72967,1310,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2315.26,"{\"": \""7%\""}",177813,1,"""Asia""" +2024-07-29,72968,1474,"[\""Monitor\""]",4894.21,{},166766,0,"""Asia""" +2023-09-06,72969,9505,"[\""Monitor\"", \""Laptop\""]",3111.45,"{\""seasonal\"": \""8%\""}",130206,0,"""South America""" +2024-11-13,72970,2282,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3847.33,"{\""seasonal\"": \""9%\""}",236821,0,"""North America""" +2024-01-30,72971,4584,"[\""Wireless Mouse\""]",2312.03,"{\""loyalty\"": \""27%\""}",216460,0,"""North America""" +2024-06-27,72972,1836,"[\""Tablet\"", \""Charger\""]",1581.42,{},47168,0,"""South America""" +2024-02-16,72973,8887,"[\""Keyboard\""]",2282.53,"{\""loyalty\"": \""17%\""}",266331,0,"""North America""" +2024-01-07,72974,3889,"[\""Keyboard\"", \""Monitor\""]",1031.35,{},219574,0,"""North America""" +2023-07-25,72975,4220,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",311.25,"{\""loyalty\"": \""24%\""}",116600,0,"""Europe""" +2024-03-01,72976,922,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2573.62,"{\""loyalty\"": \""17%\""}",89142,0,"""North America""" +2023-03-04,72977,1951,"[\""Wireless Mouse\"", \""Charger\""]",875.12,"{\""promo\"": \""21%\""}",201498,1,"""North America""" +2024-09-27,72978,7567,"[\""Headphones\""]",1006.25,{},241878,1,"""Africa""" +2024-04-19,72979,603,"[\""Charger\""]",4998.83,{},108489,0,"""North America""" +2023-09-10,72980,7753,"[\""Tablet\""]",3667.66,{},34254,1,"""Asia""" +2024-02-11,72981,3692,"[\""Wireless Mouse\""]",1394.41,{},256036,0,"""Europe""" +2023-02-10,72982,2952,"[\""Laptop\""]",3023.45,"{\""seasonal\"": \""9%\""}",87423,0,"""South America""" +2024-08-05,72983,4156,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3508.94,{},92147,1,"""Europe""" +2024-01-26,72984,36,"[\""Laptop\""]",2494.42,{},188385,0,"""Africa""" +2023-04-21,72985,68,"[\""Headphones\"", \""Keyboard\""]",1636.41,"{\"": \""29%\""}",222602,1,"""Africa""" +2023-01-13,72986,8503,"[\""Phone\"", \""Headphones\""]",4939.45,{},4492,0,"""Africa""" +2023-02-13,72987,6725,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1108.38,"{\"": \""18%\""}",182513,0,"""Asia""" +2024-12-06,72988,9443,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4221.91,"{\""promo\"": \""21%\""}",4526,0,"""Europe""" +2023-07-29,72989,4562,"[\""Monitor\"", \""Wireless Mouse\""]",1912.42,{},181630,0,"""Europe""" +2024-03-07,72990,5891,"[\""Tablet\"", \""Headphones\""]",3837.91,"{\""loyalty\"": \""30%\""}",266789,0,"""South America""" +2024-11-26,72991,2300,"[\""Keyboard\"", \""Monitor\""]",3929.43,"{\""promo\"": \""13%\""}",20066,0,"""Europe""" +2023-08-26,72992,818,"[\""Laptop\""]",778.07,"{\""seasonal\"": \""12%\""}",114386,1,"""Europe""" +2024-05-23,72993,751,"[\""Phone\""]",1164.87,"{\""seasonal\"": \""19%\""}",93953,0,"""Europe""" +2023-10-07,72994,7613,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1617.74,{},130353,0,"""North America""" +2024-08-07,72995,9761,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1579.5,"{\""loyalty\"": \""21%\""}",46786,0,"""North America""" +2024-11-05,72996,6555,"[\""Charger\""]",3249.07,{},35990,1,"""Europe""" +2023-11-30,72997,35,"[\""Keyboard\""]",1591.96,{},139692,1,"""Europe""" +2024-07-23,72998,8473,"[\""Monitor\"", \""Wireless Mouse\""]",3236.87,{},93068,0,"""Europe""" +2024-11-27,72999,4636,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4992.3,{},10248,0,"""Asia""" +2024-08-14,73000,2762,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2235.47,"{\""loyalty\"": \""7%\""}",73694,1,"""Europe""" +2024-01-19,73001,3579,"[\""Monitor\""]",858.97,{},148343,1,"""Africa""" +2024-08-03,73002,7463,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2358.08,{},185517,1,"""North America""" +2023-08-26,73003,9219,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1870.31,"{\""promo\"": \""5%\""}",80387,0,"""North America""" +2024-03-20,73004,3197,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2358.95,"{\""loyalty\"": \""7%\""}",210072,1,"""Europe""" +2024-09-24,73005,1386,"[\""Wireless Mouse\"", \""Laptop\""]",4656.07,"{\""loyalty\"": \""5%\""}",137961,0,"""North America""" +2024-05-01,73006,9166,"[\""Wireless Mouse\""]",1771.58,{},104025,0,"""South America""" +2024-12-07,73007,8541,"[\""Keyboard\""]",594.39,{},9600,0,"""Africa""" +2023-12-28,73008,4300,"[\""Tablet\""]",3426.98,"{\""promo\"": \""14%\""}",26416,0,"""North America""" +2024-10-05,73009,5000,"[\""Tablet\"", \""Phone\""]",1401.0,"{\""seasonal\"": \""13%\""}",254553,0,"""Asia""" +2023-01-31,73010,9616,"[\""Tablet\""]",2757.3,{},154073,0,"""North America""" +2023-06-29,73011,4621,"[\""Keyboard\""]",1311.14,{},46788,1,"""North America""" +2024-10-05,73012,1019,"[\""Headphones\"", \""Tablet\""]",4386.47,{},136395,1,"""Europe""" +2023-07-21,73013,9496,"[\""Keyboard\"", \""Monitor\""]",4940.73,"{\""promo\"": \""22%\""}",125513,1,"""Europe""" +2023-10-27,73014,380,"[\""Tablet\""]",4985.75,"{\""promo\"": \""9%\""}",171966,0,"""Asia""" +2023-07-30,73015,7424,"[\""Monitor\""]",621.15,"{\""promo\"": \""28%\""}",222272,0,"""Europe""" +2023-05-07,73016,5841,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3157.68,"{\""promo\"": \""20%\""}",289210,0,"""Asia""" +2024-05-28,73017,7951,"[\""Phone\""]",3083.92,{},168850,0,"""Europe""" +2023-11-01,73018,3456,"[\""Tablet\""]",3467.45,"{\""loyalty\"": \""25%\""}",187639,0,"""Africa""" +2023-04-15,73019,6018,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",870.1,"{\"": \""25%\""}",170022,1,"""Africa""" +2024-12-10,73020,6426,"[\""Monitor\"", \""Tablet\""]",3369.91,{},205762,0,"""Europe""" +2024-09-13,73021,7092,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1630.92,"{\""loyalty\"": \""21%\""}",128972,1,"""Asia""" +2023-02-26,73022,8053,"[\""Laptop\"", \""Monitor\""]",740.93,"{\""loyalty\"": \""14%\""}",52132,1,"""South America""" +2023-10-18,73023,523,"[\""Tablet\""]",2804.39,"{\"": \""11%\""}",134313,0,"""Africa""" +2024-10-08,73024,3335,"[\""Tablet\"", \""Keyboard\""]",3872.54,{},123466,0,"""South America""" +2024-10-18,73025,8342,"[\""Charger\""]",1151.55,"{\""seasonal\"": \""17%\""}",246974,0,"""North America""" +2024-03-31,73026,2142,"[\""Phone\"", \""Monitor\""]",1293.45,"{\""seasonal\"": \""12%\""}",294814,1,"""North America""" +2024-12-27,73027,4947,"[\""Charger\"", \""Headphones\""]",719.91,{},267866,1,"""Asia""" +2024-07-09,73028,9669,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3466.12,{},200837,1,"""South America""" +2024-11-16,73029,6696,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",287.8,{},297051,1,"""Africa""" +2024-08-31,73030,8155,"[\""Charger\""]",4197.59,"{\""loyalty\"": \""6%\""}",25269,0,"""North America""" +2024-01-09,73031,6713,"[\""Charger\""]",1267.54,"{\""promo\"": \""15%\""}",279381,0,"""Europe""" +2023-03-30,73032,1140,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1764.0,"{\""promo\"": \""12%\""}",111892,0,"""Africa""" +2024-10-21,73033,8638,"[\""Keyboard\""]",238.86,{},47758,0,"""Africa""" +2024-07-19,73034,3408,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2655.41,"{\""seasonal\"": \""24%\""}",168064,0,"""Africa""" +2023-08-24,73035,5481,"[\""Headphones\"", \""Phone\""]",2499.83,"{\""promo\"": \""30%\""}",80695,1,"""South America""" +2023-05-15,73036,1161,"[\""Laptop\""]",2509.43,"{\"": \""30%\""}",77488,0,"""North America""" +2024-07-13,73037,5675,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1488.38,{},149841,0,"""Asia""" +2024-08-09,73038,3868,"[\""Laptop\"", \""Tablet\""]",2705.1,"{\""seasonal\"": \""10%\""}",182330,1,"""Asia""" +2023-05-23,73039,4676,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1716.64,"{\""seasonal\"": \""5%\""}",207578,1,"""South America""" +2024-02-04,73040,3815,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1340.99,"{\""seasonal\"": \""5%\""}",105185,1,"""North America""" +2024-03-27,73041,6034,"[\""Wireless Mouse\""]",2920.86,"{\""promo\"": \""11%\""}",186770,0,"""North America""" +2024-06-19,73042,9502,"[\""Phone\"", \""Tablet\""]",370.18,"{\""promo\"": \""24%\""}",42799,1,"""North America""" +2023-06-11,73043,1308,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3830.97,"{\""promo\"": \""10%\""}",162555,1,"""Europe""" +2024-03-15,73044,44,"[\""Wireless Mouse\"", \""Laptop\""]",1862.45,"{\"": \""12%\""}",109231,1,"""Europe""" +2024-02-16,73045,9270,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",248.6,"{\""loyalty\"": \""28%\""}",49937,0,"""North America""" +2023-11-12,73046,4469,"[\""Headphones\""]",1910.54,{},224173,1,"""Europe""" +2024-10-24,73047,8240,"[\""Phone\""]",4545.52,{},2668,0,"""Africa""" +2024-07-24,73048,4002,"[\""Charger\""]",4644.32,"{\""promo\"": \""24%\""}",2130,1,"""Asia""" +2023-01-29,73049,99,"[\""Wireless Mouse\""]",1744.4,{},206841,0,"""Europe""" +2024-04-19,73050,4088,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2980.06,"{\""promo\"": \""5%\""}",15314,1,"""Africa""" +2023-03-10,73051,6487,"[\""Charger\"", \""Monitor\""]",428.28,{},8436,1,"""Asia""" +2023-08-26,73052,8606,"[\""Wireless Mouse\""]",4395.9,{},70659,0,"""North America""" +2023-03-29,73053,7427,"[\""Wireless Mouse\"", \""Monitor\""]",4284.43,{},24629,0,"""South America""" +2024-12-30,73054,6768,"[\""Laptop\"", \""Wireless Mouse\""]",2346.58,"{\""seasonal\"": \""12%\""}",278273,1,"""Africa""" +2024-03-10,73055,4467,"[\""Tablet\"", \""Headphones\""]",1480.72,"{\""promo\"": \""17%\""}",264784,0,"""Europe""" +2024-06-17,73056,1991,"[\""Keyboard\"", \""Laptop\""]",161.85,{},196350,1,"""South America""" +2024-09-11,73057,8343,"[\""Monitor\"", \""Keyboard\""]",4622.97,{},245460,1,"""South America""" +2024-12-11,73058,4135,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4221.01,"{\"": \""28%\""}",190172,1,"""Africa""" +2023-07-21,73059,4924,"[\""Phone\"", \""Laptop\""]",1728.56,"{\"": \""13%\""}",85217,1,"""South America""" +2024-03-13,73060,9129,"[\""Wireless Mouse\"", \""Phone\""]",1714.13,"{\""seasonal\"": \""23%\""}",248007,0,"""Africa""" +2023-10-09,73061,6693,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",987.93,"{\""promo\"": \""23%\""}",205834,0,"""North America""" +2024-05-08,73062,9434,"[\""Tablet\"", \""Laptop\""]",4298.94,{},65757,1,"""Europe""" +2023-05-05,73063,5644,"[\""Keyboard\""]",2786.25,{},272698,1,"""North America""" +2024-07-23,73064,7869,"[\""Monitor\""]",2208.59,{},98728,0,"""North America""" +2024-01-04,73065,4573,"[\""Laptop\"", \""Phone\""]",102.2,{},41889,0,"""North America""" +2024-11-06,73066,6634,"[\""Monitor\""]",718.82,{},170766,1,"""South America""" +2023-02-15,73067,2788,"[\""Monitor\"", \""Wireless Mouse\""]",310.0,"{\""promo\"": \""19%\""}",107817,1,"""North America""" +2024-06-26,73068,2838,"[\""Charger\""]",1323.87,{},99858,1,"""North America""" +2023-11-11,73069,4886,"[\""Laptop\""]",999.83,"{\""loyalty\"": \""11%\""}",146808,0,"""North America""" +2024-12-16,73070,6745,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",605.65,"{\""promo\"": \""25%\""}",182557,1,"""South America""" +2024-10-18,73071,7295,"[\""Phone\""]",3836.1,"{\""seasonal\"": \""29%\""}",239611,0,"""Europe""" +2023-05-11,73072,2415,"[\""Charger\"", \""Laptop\""]",764.25,{},132985,1,"""North America""" +2024-05-07,73073,5697,"[\""Monitor\""]",3932.75,"{\""promo\"": \""26%\""}",119375,1,"""Africa""" +2024-09-28,73074,2151,"[\""Headphones\""]",876.87,"{\""promo\"": \""20%\""}",111974,0,"""Europe""" +2024-08-24,73075,7882,"[\""Monitor\"", \""Laptop\""]",768.69,{},138464,1,"""Asia""" +2024-02-11,73076,1160,"[\""Keyboard\"", \""Tablet\""]",1967.88,"{\""loyalty\"": \""7%\""}",280721,1,"""South America""" +2023-08-12,73077,7412,"[\""Keyboard\""]",4713.96,{},65081,1,"""South America""" +2023-05-08,73078,1893,"[\""Headphones\"", \""Phone\""]",4520.26,"{\"": \""27%\""}",152539,1,"""South America""" +2023-06-11,73079,8074,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2903.94,{},170019,1,"""Europe""" +2024-03-15,73080,6773,"[\""Wireless Mouse\""]",133.8,"{\"": \""15%\""}",113300,0,"""Europe""" +2024-03-04,73081,4696,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",995.72,"{\"": \""24%\""}",103665,0,"""Asia""" +2024-05-16,73082,2213,"[\""Tablet\"", \""Laptop\""]",3933.53,{},56703,0,"""South America""" +2024-11-06,73083,5896,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2357.43,"{\""promo\"": \""15%\""}",3545,0,"""Asia""" +2024-07-05,73084,4703,"[\""Laptop\"", \""Monitor\""]",328.42,"{\""loyalty\"": \""8%\""}",221921,1,"""North America""" +2023-01-18,73085,4653,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2081.85,"{\""seasonal\"": \""15%\""}",54537,0,"""North America""" +2024-10-16,73086,6942,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1431.44,{},11753,1,"""North America""" +2023-09-23,73087,9404,"[\""Laptop\"", \""Tablet\""]",3505.59,{},273851,0,"""Europe""" +2024-06-20,73088,5711,"[\""Tablet\""]",1603.32,{},276684,1,"""North America""" +2024-09-21,73089,9679,"[\""Phone\"", \""Headphones\""]",1832.73,{},12562,0,"""Europe""" +2023-04-14,73090,632,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1259.49,{},251005,1,"""Europe""" +2023-08-27,73091,4159,"[\""Charger\""]",3008.75,{},160224,1,"""South America""" +2024-04-19,73092,2380,"[\""Charger\""]",1342.83,"{\""promo\"": \""19%\""}",258738,0,"""Africa""" +2024-07-25,73093,3123,"[\""Phone\""]",4427.31,{},66218,0,"""Africa""" +2024-06-23,73094,5008,"[\""Monitor\""]",3761.56,"{\""loyalty\"": \""23%\""}",50336,1,"""Asia""" +2023-10-25,73095,1716,"[\""Headphones\""]",3324.83,"{\""seasonal\"": \""19%\""}",166433,1,"""North America""" +2023-08-08,73096,4498,"[\""Phone\""]",2130.16,"{\""promo\"": \""28%\""}",20627,0,"""North America""" +2024-06-10,73097,7025,"[\""Laptop\""]",488.27,"{\""promo\"": \""13%\""}",201557,1,"""North America""" +2023-07-18,73098,7278,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2042.99,{},269213,0,"""Europe""" +2023-04-01,73099,9176,"[\""Laptop\"", \""Keyboard\""]",3899.23,"{\""seasonal\"": \""19%\""}",193151,0,"""Europe""" +2023-06-08,73100,8306,"[\""Tablet\""]",286.37,"{\"": \""9%\""}",287208,1,"""Africa""" +2024-02-05,73101,504,"[\""Charger\""]",102.93,{},198333,1,"""Europe""" +2023-09-18,73102,206,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3314.46,{},228759,0,"""South America""" +2023-10-03,73103,9825,"[\""Laptop\""]",3144.92,"{\""promo\"": \""20%\""}",237598,0,"""Europe""" +2023-03-05,73104,9537,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2274.75,"{\""promo\"": \""6%\""}",23258,1,"""North America""" +2024-01-23,73105,8004,"[\""Laptop\""]",2935.38,{},111390,1,"""Asia""" +2023-06-04,73106,8801,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2357.09,"{\"": \""26%\""}",282797,1,"""Africa""" +2024-01-14,73107,9112,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1246.36,"{\"": \""27%\""}",116194,0,"""South America""" +2024-08-05,73108,3844,"[\""Keyboard\"", \""Phone\""]",4225.07,"{\""loyalty\"": \""30%\""}",234534,1,"""Europe""" +2023-02-17,73109,2742,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1329.09,"{\""loyalty\"": \""9%\""}",146353,1,"""North America""" +2024-02-18,73110,8939,"[\""Laptop\"", \""Phone\""]",3610.44,{},246132,1,"""Asia""" +2024-03-21,73111,1261,"[\""Wireless Mouse\"", \""Keyboard\""]",4613.61,"{\"": \""22%\""}",227554,1,"""Asia""" +2023-08-27,73112,7792,"[\""Keyboard\""]",3700.51,"{\""promo\"": \""15%\""}",86184,1,"""Africa""" +2023-07-29,73113,7783,"[\""Wireless Mouse\""]",3493.11,"{\""seasonal\"": \""18%\""}",132333,0,"""Europe""" +2023-04-14,73114,8344,"[\""Charger\""]",1934.54,{},211853,0,"""North America""" +2024-01-12,73115,8593,"[\""Wireless Mouse\""]",256.74,"{\"": \""9%\""}",20403,1,"""Europe""" +2023-12-29,73116,79,"[\""Tablet\""]",3933.44,"{\""loyalty\"": \""8%\""}",213572,0,"""South America""" +2023-04-04,73117,444,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3099.16,{},64126,1,"""Africa""" +2024-10-21,73118,3862,"[\""Monitor\"", \""Charger\""]",2765.07,"{\""promo\"": \""8%\""}",237864,1,"""North America""" +2023-03-04,73119,468,"[\""Headphones\""]",3475.56,"{\""loyalty\"": \""24%\""}",142071,0,"""North America""" +2024-12-19,73120,7198,"[\""Keyboard\"", \""Charger\""]",1134.51,{},95827,1,"""Europe""" +2023-10-25,73121,3918,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1544.63,{},27949,1,"""South America""" +2023-12-20,73122,8097,"[\""Headphones\""]",219.02,{},3187,1,"""North America""" +2023-11-19,73123,8579,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3902.85,{},248251,0,"""North America""" +2024-01-06,73124,4810,"[\""Headphones\""]",210.75,{},39526,1,"""North America""" +2024-05-31,73125,138,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3824.34,{},171116,0,"""North America""" +2024-07-26,73126,8771,"[\""Keyboard\""]",192.29,{},81642,1,"""Asia""" +2023-04-08,73127,8300,"[\""Monitor\"", \""Keyboard\""]",1227.55,{},184786,0,"""Europe""" +2024-06-08,73128,7770,"[\""Phone\"", \""Wireless Mouse\""]",4193.22,{},26810,1,"""Africa""" +2023-07-03,73129,8539,"[\""Keyboard\"", \""Laptop\""]",4627.42,{},209719,1,"""North America""" +2023-12-17,73130,5708,"[\""Tablet\""]",1918.35,{},126613,0,"""Africa""" +2023-11-29,73131,4057,"[\""Phone\""]",4582.54,"{\""promo\"": \""8%\""}",134389,1,"""North America""" +2024-08-12,73132,7950,"[\""Phone\""]",4848.54,"{\""promo\"": \""26%\""}",241009,0,"""South America""" +2024-03-31,73133,3572,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3402.59,"{\""seasonal\"": \""6%\""}",42761,1,"""Africa""" +2024-09-19,73134,7078,"[\""Headphones\"", \""Laptop\""]",1475.58,"{\""seasonal\"": \""29%\""}",122655,0,"""Europe""" +2024-08-19,73135,6574,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4957.96,"{\""seasonal\"": \""17%\""}",3031,0,"""South America""" +2023-06-29,73136,3215,"[\""Keyboard\""]",551.07,{},228467,0,"""Europe""" +2023-04-29,73137,650,"[\""Monitor\""]",578.64,"{\""seasonal\"": \""18%\""}",272986,1,"""Asia""" +2023-02-19,73138,3044,"[\""Keyboard\""]",954.17,"{\""promo\"": \""19%\""}",29569,0,"""Europe""" +2023-05-27,73139,2138,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2973.59,{},67635,0,"""North America""" +2023-03-06,73140,6550,"[\""Monitor\""]",2763.95,"{\""promo\"": \""14%\""}",65613,0,"""Asia""" +2023-08-01,73141,4401,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4829.88,"{\""loyalty\"": \""23%\""}",238950,0,"""Europe""" +2024-05-23,73142,8395,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1256.07,{},80846,0,"""Africa""" +2023-07-19,73143,1899,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4757.91,"{\""promo\"": \""23%\""}",79889,1,"""Africa""" +2023-03-09,73144,6274,"[\""Headphones\""]",2856.02,{},203541,0,"""North America""" +2024-07-01,73145,1813,"[\""Keyboard\"", \""Wireless Mouse\""]",3408.54,{},218891,1,"""Africa""" +2024-02-15,73146,1868,"[\""Tablet\"", \""Laptop\""]",729.07,"{\"": \""7%\""}",183046,1,"""Asia""" +2023-07-01,73147,8095,"[\""Laptop\"", \""Charger\""]",2711.14,{},128030,0,"""Asia""" +2024-04-16,73148,7840,"[\""Laptop\""]",3817.96,"{\""loyalty\"": \""23%\""}",223397,1,"""Europe""" +2024-11-02,73149,1955,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4868.04,{},192132,1,"""Africa""" +2024-05-12,73150,7975,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1892.8,{},267268,0,"""Africa""" +2023-04-16,73151,4821,"[\""Headphones\"", \""Monitor\""]",319.23,"{\""promo\"": \""23%\""}",15786,0,"""North America""" +2023-04-11,73152,6049,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3377.69,{},255863,0,"""Asia""" +2023-06-04,73153,2605,"[\""Keyboard\"", \""Monitor\""]",1722.99,{},11556,0,"""North America""" +2024-03-25,73154,7003,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4145.99,{},81653,1,"""Europe""" +2023-03-25,73155,3569,"[\""Tablet\"", \""Keyboard\""]",763.72,{},134426,0,"""North America""" +2023-06-08,73156,6164,"[\""Monitor\"", \""Charger\""]",555.46,"{\""seasonal\"": \""14%\""}",206599,0,"""South America""" +2024-05-12,73157,355,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3484.08,"{\""loyalty\"": \""6%\""}",101243,0,"""North America""" +2024-02-17,73158,9102,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",166.62,{},193460,1,"""Europe""" +2023-02-25,73159,5873,"[\""Phone\""]",985.0,"{\""seasonal\"": \""12%\""}",40099,0,"""South America""" +2023-06-18,73160,7640,"[\""Phone\"", \""Tablet\""]",1574.73,{},126773,0,"""North America""" +2023-09-24,73161,3666,"[\""Tablet\"", \""Phone\""]",3560.52,"{\""promo\"": \""16%\""}",60269,0,"""South America""" +2024-01-07,73162,2306,"[\""Keyboard\""]",4874.95,"{\""seasonal\"": \""29%\""}",121092,1,"""North America""" +2023-04-16,73163,1250,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",823.8,"{\""seasonal\"": \""13%\""}",155023,1,"""North America""" +2024-04-09,73164,7490,"[\""Monitor\"", \""Headphones\""]",4810.72,{},89731,0,"""Europe""" +2024-04-20,73165,4163,"[\""Charger\"", \""Tablet\""]",616.94,{},281836,1,"""Asia""" +2023-10-03,73166,8570,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",406.68,{},224561,1,"""Africa""" +2023-11-20,73167,1302,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4956.27,"{\""seasonal\"": \""30%\""}",226211,1,"""Asia""" +2023-08-25,73168,4637,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",851.28,"{\""seasonal\"": \""26%\""}",199966,0,"""North America""" +2024-06-30,73169,4276,"[\""Wireless Mouse\""]",3927.16,"{\""promo\"": \""8%\""}",196616,0,"""South America""" +2024-09-16,73170,606,"[\""Laptop\""]",405.92,{},76213,0,"""Asia""" +2023-07-26,73171,6801,"[\""Monitor\""]",4967.32,{},164636,1,"""South America""" +2023-03-20,73172,7252,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3043.44,"{\""loyalty\"": \""24%\""}",234233,0,"""Africa""" +2024-06-05,73173,6462,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3683.91,{},42762,1,"""Europe""" +2024-01-18,73174,3602,"[\""Monitor\""]",1886.55,"{\""loyalty\"": \""30%\""}",141378,1,"""North America""" +2024-05-16,73175,1812,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2100.44,"{\""seasonal\"": \""22%\""}",60850,0,"""South America""" +2023-07-04,73176,968,"[\""Tablet\"", \""Keyboard\""]",3061.6,"{\""promo\"": \""6%\""}",248405,0,"""Africa""" +2024-06-09,73177,3991,"[\""Headphones\"", \""Monitor\""]",2165.16,"{\""promo\"": \""18%\""}",208273,1,"""South America""" +2023-01-27,73178,9267,"[\""Headphones\""]",3333.59,{},237508,1,"""North America""" +2023-03-28,73179,3882,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1970.24,"{\""loyalty\"": \""10%\""}",31603,0,"""Asia""" +2024-11-13,73180,7644,"[\""Headphones\"", \""Laptop\""]",1967.97,"{\""seasonal\"": \""15%\""}",288016,1,"""North America""" +2024-01-12,73181,432,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",122.44,"{\""loyalty\"": \""13%\""}",73965,1,"""Africa""" +2023-07-21,73182,8036,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3328.39,"{\""promo\"": \""20%\""}",212464,1,"""Europe""" +2024-12-29,73183,1487,"[\""Wireless Mouse\"", \""Charger\""]",287.5,"{\"": \""16%\""}",292108,1,"""Africa""" +2024-11-10,73184,1905,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3527.14,{},26841,0,"""Europe""" +2023-06-11,73185,7012,"[\""Keyboard\""]",2460.41,{},103721,0,"""Asia""" +2024-08-18,73186,3681,"[\""Headphones\"", \""Laptop\""]",2976.56,{},59796,1,"""Africa""" +2024-02-13,73187,2187,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3830.75,{},65181,0,"""North America""" +2024-08-09,73188,530,"[\""Charger\"", \""Headphones\""]",651.53,"{\"": \""8%\""}",227414,1,"""Europe""" +2024-03-13,73189,7319,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4176.38,{},283078,0,"""South America""" +2023-09-01,73190,8004,"[\""Charger\"", \""Wireless Mouse\""]",2136.62,{},107528,0,"""Africa""" +2023-05-02,73191,6966,"[\""Tablet\""]",4994.14,{},208181,0,"""North America""" +2024-09-28,73192,622,"[\""Monitor\""]",3050.07,"{\""promo\"": \""26%\""}",164986,1,"""Asia""" +2023-11-24,73193,4525,"[\""Keyboard\""]",1476.82,{},150485,0,"""Europe""" +2023-06-19,73194,756,"[\""Charger\""]",363.35,"{\""loyalty\"": \""25%\""}",129299,1,"""Asia""" +2024-03-30,73195,8566,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4141.01,"{\"": \""12%\""}",296137,1,"""South America""" +2023-05-10,73196,3277,"[\""Keyboard\""]",1688.04,{},299686,0,"""North America""" +2024-06-02,73197,6221,"[\""Charger\""]",3207.07,{},252969,0,"""South America""" +2024-12-30,73198,5738,"[\""Wireless Mouse\"", \""Keyboard\""]",692.58,"{\""loyalty\"": \""13%\""}",144324,0,"""Europe""" +2024-04-23,73199,13,"[\""Headphones\"", \""Laptop\""]",3181.19,"{\""loyalty\"": \""19%\""}",148852,1,"""North America""" +2023-12-04,73200,3911,"[\""Laptop\""]",4894.0,"{\""loyalty\"": \""7%\""}",184694,0,"""Europe""" +2024-02-19,73201,6029,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",167.35,{},39767,1,"""Asia""" +2024-10-09,73202,4892,"[\""Headphones\"", \""Monitor\""]",4469.32,"{\""loyalty\"": \""29%\""}",66035,0,"""North America""" +2024-05-12,73203,9607,"[\""Phone\"", \""Tablet\""]",4685.28,"{\""seasonal\"": \""8%\""}",265989,1,"""North America""" +2023-07-10,73204,1430,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2577.84,"{\"": \""18%\""}",28280,0,"""Africa""" +2024-06-13,73205,4782,"[\""Keyboard\"", \""Headphones\""]",1952.35,{},277429,1,"""Europe""" +2023-07-29,73206,9373,"[\""Phone\"", \""Headphones\""]",4926.88,{},166318,0,"""North America""" +2024-05-17,73207,3390,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3076.39,{},186742,1,"""South America""" +2024-09-28,73208,6331,"[\""Headphones\"", \""Wireless Mouse\""]",676.16,{},182391,0,"""Africa""" +2024-01-26,73209,640,"[\""Tablet\"", \""Headphones\""]",582.25,"{\""seasonal\"": \""6%\""}",112476,1,"""Europe""" +2023-01-26,73210,4467,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1474.17,{},185822,0,"""North America""" +2024-10-31,73211,1891,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3965.52,"{\""promo\"": \""30%\""}",222574,0,"""North America""" +2024-08-29,73212,1864,"[\""Phone\"", \""Laptop\""]",619.6,{},34867,1,"""South America""" +2024-08-28,73213,6169,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1482.92,{},54929,0,"""North America""" +2023-11-03,73214,6062,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4787.51,{},255945,1,"""South America""" +2023-07-21,73215,3668,"[\""Charger\"", \""Monitor\""]",490.87,{},133924,1,"""North America""" +2024-10-16,73216,9314,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",739.33,"{\""loyalty\"": \""9%\""}",92517,1,"""Africa""" +2023-01-12,73217,3889,"[\""Keyboard\""]",628.01,"{\""loyalty\"": \""21%\""}",41809,1,"""South America""" +2024-03-20,73218,9039,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2955.22,{},280733,1,"""North America""" +2023-04-12,73219,4526,"[\""Charger\""]",3854.74,"{\""seasonal\"": \""25%\""}",166136,0,"""Europe""" +2023-03-29,73220,25,"[\""Charger\""]",3912.37,"{\""seasonal\"": \""21%\""}",20927,1,"""Asia""" +2023-09-26,73221,9563,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1123.36,{},23891,1,"""South America""" +2023-06-20,73222,3419,"[\""Tablet\"", \""Monitor\""]",325.12,"{\""seasonal\"": \""14%\""}",108829,1,"""North America""" +2024-11-24,73223,4364,"[\""Phone\"", \""Keyboard\""]",2266.81,"{\""loyalty\"": \""26%\""}",285391,0,"""Africa""" +2023-04-16,73224,6009,"[\""Wireless Mouse\""]",143.94,{},91379,1,"""North America""" +2024-09-23,73225,6782,"[\""Headphones\""]",2408.26,"{\""seasonal\"": \""15%\""}",294627,0,"""Africa""" +2024-11-24,73226,2653,"[\""Charger\"", \""Phone\""]",2730.9,{},140974,0,"""Africa""" +2023-06-26,73227,2026,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3613.37,{},225713,1,"""South America""" +2023-07-29,73228,3058,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3197.75,{},193451,0,"""Europe""" +2024-12-02,73229,9589,"[\""Wireless Mouse\"", \""Monitor\""]",3121.45,"{\""promo\"": \""27%\""}",293753,0,"""North America""" +2023-09-22,73230,3306,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1434.26,{},281405,1,"""Africa""" +2023-09-16,73231,4558,"[\""Monitor\"", \""Laptop\""]",2910.79,{},287865,1,"""South America""" +2023-04-15,73232,3651,"[\""Keyboard\""]",3948.02,"{\"": \""24%\""}",244100,1,"""North America""" +2023-07-21,73233,3717,"[\""Headphones\""]",4786.17,"{\""seasonal\"": \""17%\""}",95511,1,"""South America""" +2024-08-22,73234,3475,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4853.15,"{\""promo\"": \""20%\""}",31114,0,"""Africa""" +2023-08-02,73235,9951,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1472.63,"{\""promo\"": \""30%\""}",171235,0,"""South America""" +2023-09-22,73236,57,"[\""Wireless Mouse\""]",2550.19,{},23700,1,"""North America""" +2024-10-15,73237,6047,"[\""Monitor\""]",3619.32,"{\""seasonal\"": \""27%\""}",191290,0,"""North America""" +2023-03-03,73238,4296,"[\""Headphones\""]",4147.65,{},60016,1,"""North America""" +2024-02-08,73239,9041,"[\""Wireless Mouse\""]",1924.86,{},255073,0,"""North America""" +2024-06-23,73240,7276,"[\""Headphones\"", \""Laptop\""]",4296.04,"{\""loyalty\"": \""21%\""}",298271,0,"""South America""" +2024-05-28,73241,5770,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4110.92,{},222196,0,"""Africa""" +2023-12-18,73242,4080,"[\""Monitor\""]",3179.63,{},153940,1,"""Asia""" +2023-11-10,73243,3248,"[\""Laptop\"", \""Headphones\""]",3656.53,{},222416,0,"""North America""" +2023-08-02,73244,3283,"[\""Tablet\""]",586.68,"{\""loyalty\"": \""29%\""}",39020,1,"""South America""" +2023-01-28,73245,3223,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",133.51,{},287674,1,"""Africa""" +2023-02-28,73246,1021,"[\""Monitor\"", \""Tablet\""]",4568.94,{},263961,1,"""South America""" +2024-04-29,73247,4825,"[\""Wireless Mouse\""]",667.47,{},16241,1,"""Europe""" +2024-10-10,73248,3762,"[\""Tablet\""]",1755.66,"{\""seasonal\"": \""25%\""}",141732,0,"""South America""" +2024-02-05,73249,7154,"[\""Tablet\"", \""Laptop\""]",2239.3,"{\""loyalty\"": \""27%\""}",28961,0,"""South America""" +2024-06-07,73250,7666,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",58.27,{},21977,1,"""Africa""" +2023-08-04,73251,6557,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1489.58,{},124091,0,"""Africa""" +2024-02-11,73252,5712,"[\""Phone\"", \""Keyboard\""]",1664.18,"{\""seasonal\"": \""8%\""}",33155,0,"""Europe""" +2024-12-22,73253,7616,"[\""Headphones\""]",1473.33,{},252565,0,"""Asia""" +2023-12-11,73254,5200,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1797.3,{},137072,1,"""Asia""" +2024-03-17,73255,3305,"[\""Monitor\"", \""Wireless Mouse\""]",3140.85,{},276420,0,"""Europe""" +2024-11-06,73256,5632,"[\""Laptop\"", \""Wireless Mouse\""]",1677.04,"{\"": \""9%\""}",238615,1,"""North America""" +2024-10-18,73257,1470,"[\""Keyboard\"", \""Charger\""]",4389.64,"{\"": \""29%\""}",4369,1,"""North America""" +2024-02-03,73258,4337,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1983.55,{},19318,0,"""South America""" +2024-05-18,73259,5579,"[\""Tablet\"", \""Headphones\""]",2117.21,{},296875,1,"""North America""" +2024-03-30,73260,260,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3142.66,{},106554,1,"""Europe""" +2024-02-22,73261,1230,"[\""Phone\""]",1684.03,"{\""seasonal\"": \""8%\""}",237432,0,"""South America""" +2024-03-18,73262,5138,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4892.63,"{\""seasonal\"": \""29%\""}",167893,0,"""Asia""" +2023-04-26,73263,2660,"[\""Phone\"", \""Keyboard\""]",4971.89,{},290894,1,"""Africa""" +2024-08-13,73264,414,"[\""Headphones\""]",715.66,"{\"": \""17%\""}",247612,1,"""North America""" +2024-09-15,73265,9402,"[\""Laptop\""]",3450.17,"{\""loyalty\"": \""19%\""}",31987,1,"""Africa""" +2024-05-09,73266,6965,"[\""Tablet\""]",586.65,"{\""promo\"": \""9%\""}",113707,1,"""North America""" +2024-09-09,73267,1672,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4790.38,{},174164,0,"""South America""" +2024-12-20,73268,7930,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4612.3,{},177895,0,"""Europe""" +2023-03-26,73269,7021,"[\""Keyboard\""]",137.88,"{\"": \""23%\""}",166262,0,"""South America""" +2024-11-24,73270,4689,"[\""Laptop\""]",823.55,{},115775,1,"""North America""" +2024-10-13,73271,6054,"[\""Keyboard\"", \""Phone\""]",1450.66,"{\""promo\"": \""15%\""}",59931,0,"""Asia""" +2024-11-25,73272,8187,"[\""Keyboard\""]",1577.5,{},153228,0,"""Asia""" +2023-08-11,73273,5335,"[\""Wireless Mouse\""]",4598.23,"{\""seasonal\"": \""16%\""}",24264,0,"""North America""" +2023-08-15,73274,3334,"[\""Tablet\"", \""Wireless Mouse\""]",3876.63,"{\""loyalty\"": \""5%\""}",186256,0,"""Africa""" +2024-09-02,73275,3132,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2573.31,{},296933,0,"""Africa""" +2024-07-31,73276,6964,"[\""Phone\""]",2028.49,"{\""promo\"": \""7%\""}",228148,0,"""Africa""" +2023-02-24,73277,7840,"[\""Charger\""]",1487.45,{},296171,1,"""Europe""" +2024-12-19,73278,7229,"[\""Tablet\"", \""Laptop\""]",1235.6,"{\""promo\"": \""17%\""}",105688,0,"""Africa""" +2024-07-29,73279,8306,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3011.7,{},264579,1,"""Africa""" +2024-02-27,73280,3917,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4145.89,"{\"": \""5%\""}",252273,0,"""North America""" +2024-07-04,73281,1658,"[\""Laptop\""]",3984.61,"{\""seasonal\"": \""15%\""}",20752,0,"""South America""" +2023-12-19,73282,5599,"[\""Laptop\"", \""Keyboard\""]",996.93,"{\""seasonal\"": \""29%\""}",291268,0,"""Asia""" +2024-01-06,73283,2814,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2912.88,"{\""seasonal\"": \""21%\""}",280931,1,"""Asia""" +2023-11-20,73284,6723,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1782.85,{},215455,0,"""Asia""" +2023-02-16,73285,3638,"[\""Phone\""]",2052.78,"{\""loyalty\"": \""21%\""}",47086,0,"""North America""" +2023-06-28,73286,8790,"[\""Wireless Mouse\"", \""Laptop\""]",52.09,{},40556,0,"""Europe""" +2024-09-24,73287,6760,"[\""Phone\"", \""Headphones\""]",1580.11,"{\""promo\"": \""13%\""}",250196,1,"""North America""" +2023-10-29,73288,999,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3378.72,"{\"": \""9%\""}",67908,1,"""Europe""" +2024-11-05,73289,9124,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1440.53,{},114283,0,"""South America""" +2023-08-01,73290,7633,"[\""Monitor\"", \""Laptop\""]",1699.22,"{\""loyalty\"": \""15%\""}",203070,0,"""North America""" +2023-11-06,73291,7231,"[\""Wireless Mouse\""]",535.56,"{\""promo\"": \""9%\""}",92940,0,"""Africa""" +2024-09-06,73292,675,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1017.06,"{\""loyalty\"": \""14%\""}",146609,0,"""North America""" +2024-12-22,73293,2392,"[\""Headphones\""]",4257.91,{},57376,0,"""Asia""" +2024-08-24,73294,5073,"[\""Headphones\"", \""Phone\""]",3100.32,"{\""loyalty\"": \""15%\""}",145142,1,"""Europe""" +2023-12-01,73295,6314,"[\""Phone\""]",1329.44,{},130667,1,"""Asia""" +2024-06-04,73296,824,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4222.99,{},58203,1,"""Asia""" +2023-02-24,73297,4178,"[\""Tablet\"", \""Phone\""]",3838.93,"{\""seasonal\"": \""19%\""}",137594,0,"""Europe""" +2024-06-07,73298,4624,"[\""Headphones\"", \""Tablet\""]",3007.77,"{\""seasonal\"": \""11%\""}",23822,0,"""Europe""" +2024-09-23,73299,6499,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1938.95,{},168838,0,"""Africa""" +2024-06-19,73300,4135,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2334.41,{},297196,1,"""South America""" +2024-05-04,73301,38,"[\""Wireless Mouse\"", \""Keyboard\""]",1261.15,"{\""promo\"": \""13%\""}",152601,1,"""Asia""" +2023-10-02,73302,1037,"[\""Tablet\"", \""Keyboard\""]",2193.5,{},196226,0,"""Africa""" +2024-02-18,73303,450,"[\""Keyboard\"", \""Tablet\""]",3030.06,{},288258,0,"""South America""" +2024-06-18,73304,2617,"[\""Keyboard\"", \""Phone\""]",2293.76,"{\""seasonal\"": \""14%\""}",111142,1,"""Africa""" +2023-04-01,73305,1649,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1834.69,"{\""loyalty\"": \""20%\""}",238497,0,"""North America""" +2024-10-15,73306,8032,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1458.35,{},252242,0,"""South America""" +2024-05-16,73307,3850,"[\""Monitor\""]",267.95,{},237455,0,"""Asia""" +2024-08-22,73308,7962,"[\""Monitor\"", \""Charger\""]",3437.72,{},8606,0,"""South America""" +2024-07-07,73309,822,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2416.5,{},34658,1,"""South America""" +2023-06-06,73310,6507,"[\""Headphones\"", \""Phone\""]",1335.35,{},268638,0,"""Asia""" +2024-07-13,73311,1107,"[\""Monitor\""]",2671.02,"{\""loyalty\"": \""12%\""}",139245,0,"""Africa""" +2023-02-27,73312,918,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3692.11,{},65172,0,"""Europe""" +2024-04-28,73313,794,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1328.9,"{\""loyalty\"": \""19%\""}",76891,0,"""Africa""" +2023-06-29,73314,4044,"[\""Keyboard\"", \""Phone\""]",2739.28,{},28229,0,"""Africa""" +2023-02-05,73315,8821,"[\""Wireless Mouse\""]",1739.63,{},8762,0,"""Africa""" +2024-01-09,73316,7469,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2676.67,"{\""promo\"": \""5%\""}",264428,0,"""Asia""" +2023-01-03,73317,6089,"[\""Laptop\"", \""Phone\""]",641.55,{},280657,1,"""North America""" +2023-08-23,73318,5781,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1686.73,{},108147,1,"""North America""" +2024-04-28,73319,786,"[\""Headphones\""]",2070.58,{},227225,1,"""Europe""" +2024-12-22,73320,5277,"[\""Monitor\"", \""Charger\""]",4338.02,{},48720,0,"""Europe""" +2023-03-19,73321,4201,"[\""Phone\"", \""Laptop\""]",359.77,{},77319,0,"""Africa""" +2024-10-10,73322,2479,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2890.06,"{\"": \""6%\""}",142985,0,"""Europe""" +2024-03-21,73323,766,"[\""Keyboard\"", \""Charger\""]",2533.38,{},72843,1,"""South America""" +2023-11-28,73324,3912,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3074.65,"{\""loyalty\"": \""25%\""}",207920,1,"""Europe""" +2024-10-14,73325,2279,"[\""Laptop\""]",3693.94,{},241360,1,"""Africa""" +2024-07-30,73326,5661,"[\""Keyboard\"", \""Phone\""]",4472.05,"{\"": \""8%\""}",16144,1,"""Europe""" +2023-01-26,73327,5517,"[\""Headphones\"", \""Charger\""]",3637.77,"{\""loyalty\"": \""16%\""}",9088,0,"""Asia""" +2024-01-26,73328,6573,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4631.28,"{\""promo\"": \""16%\""}",40584,0,"""Africa""" +2024-10-24,73329,936,"[\""Laptop\""]",1698.45,{},230517,1,"""Europe""" +2023-12-10,73330,3891,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4854.65,"{\"": \""24%\""}",161429,0,"""North America""" +2024-07-11,73331,6754,"[\""Tablet\"", \""Keyboard\""]",4754.12,{},287681,0,"""Africa""" +2024-09-25,73332,8557,"[\""Monitor\"", \""Headphones\""]",2390.96,{},199315,0,"""Asia""" +2023-06-17,73333,4307,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2024.96,"{\""loyalty\"": \""19%\""}",84946,1,"""Europe""" +2023-03-17,73334,5600,"[\""Keyboard\"", \""Phone\""]",4579.03,"{\""loyalty\"": \""13%\""}",169944,1,"""Europe""" +2024-08-30,73335,9731,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4641.1,{},241407,1,"""Asia""" +2023-03-27,73336,6327,"[\""Keyboard\""]",4289.15,"{\"": \""17%\""}",21845,1,"""South America""" +2023-08-20,73337,8204,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4428.65,"{\""seasonal\"": \""28%\""}",68827,1,"""South America""" +2023-04-04,73338,8565,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2590.73,"{\""loyalty\"": \""28%\""}",151252,1,"""Asia""" +2024-07-07,73339,5601,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3986.75,{},64987,0,"""Europe""" +2023-03-07,73340,2015,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3954.42,"{\""promo\"": \""20%\""}",220141,0,"""South America""" +2024-03-24,73341,4554,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",847.55,{},60794,1,"""South America""" +2024-11-20,73342,8681,"[\""Charger\"", \""Phone\""]",2741.36,"{\""seasonal\"": \""23%\""}",18947,0,"""Africa""" +2024-07-18,73343,5889,"[\""Laptop\"", \""Charger\""]",4946.14,{},21701,1,"""North America""" +2023-01-02,73344,8774,"[\""Keyboard\""]",2906.93,{},22561,1,"""Europe""" +2024-08-28,73345,7510,"[\""Wireless Mouse\""]",2470.96,{},238922,1,"""Asia""" +2024-08-14,73346,3688,"[\""Monitor\"", \""Keyboard\""]",1183.34,{},219039,0,"""South America""" +2023-12-07,73347,156,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2183.4,"{\""seasonal\"": \""14%\""}",18233,0,"""Asia""" +2023-09-10,73348,7474,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2576.85,{},112852,1,"""Africa""" +2023-01-24,73349,7254,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2870.71,"{\""loyalty\"": \""8%\""}",180547,1,"""Asia""" +2023-09-06,73350,5264,"[\""Headphones\"", \""Monitor\""]",953.14,{},243084,0,"""Asia""" +2024-11-05,73351,5190,"[\""Phone\"", \""Tablet\""]",1577.16,"{\"": \""29%\""}",11562,0,"""Africa""" +2024-02-17,73352,5871,"[\""Charger\"", \""Wireless Mouse\""]",883.42,{},55995,0,"""North America""" +2023-03-23,73353,2803,"[\""Wireless Mouse\"", \""Laptop\""]",3311.29,{},269391,0,"""Africa""" +2024-07-08,73354,3056,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4476.4,"{\""loyalty\"": \""9%\""}",148402,0,"""North America""" +2023-11-12,73355,2243,"[\""Charger\"", \""Headphones\""]",2971.58,{},281931,0,"""Africa""" +2023-10-21,73356,3689,"[\""Laptop\""]",4536.7,{},5281,0,"""Africa""" +2024-01-01,73357,5153,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2057.62,"{\"": \""15%\""}",9078,0,"""North America""" +2024-01-15,73358,4016,"[\""Laptop\""]",2129.42,{},291126,0,"""Asia""" +2023-04-24,73359,2650,"[\""Charger\"", \""Monitor\""]",2398.91,{},227804,0,"""Africa""" +2023-10-23,73360,1442,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4639.35,"{\""loyalty\"": \""19%\""}",201294,0,"""Europe""" +2023-05-18,73361,7479,"[\""Phone\"", \""Charger\""]",3590.98,{},72310,0,"""Africa""" +2023-08-14,73362,9647,"[\""Keyboard\"", \""Tablet\""]",397.34,{},286291,0,"""South America""" +2024-11-22,73363,6815,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",269.99,{},31438,1,"""North America""" +2024-07-06,73364,8659,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3851.79,{},61500,1,"""Africa""" +2024-01-12,73365,4715,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2471.9,"{\""loyalty\"": \""6%\""}",209681,1,"""Africa""" +2024-12-04,73366,5142,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3809.95,{},70838,0,"""Asia""" +2023-12-10,73367,2496,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3067.72,"{\"": \""16%\""}",87590,1,"""Asia""" +2024-07-02,73368,5484,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4645.97,"{\""loyalty\"": \""27%\""}",251271,1,"""Asia""" +2023-07-17,73369,6950,"[\""Charger\""]",59.28,"{\""loyalty\"": \""24%\""}",182575,0,"""Europe""" +2024-09-15,73370,7876,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1160.24,"{\""loyalty\"": \""7%\""}",190324,1,"""North America""" +2023-05-12,73371,9455,"[\""Laptop\""]",2699.77,{},200851,0,"""South America""" +2023-09-02,73372,6251,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",898.9,"{\"": \""22%\""}",196053,0,"""Europe""" +2024-04-04,73373,5823,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3199.74,{},11590,1,"""North America""" +2024-01-01,73374,7217,"[\""Laptop\""]",2561.18,{},26057,1,"""Europe""" +2023-06-02,73375,7599,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3039.6,"{\""loyalty\"": \""8%\""}",275615,1,"""Africa""" +2023-08-10,73376,229,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2350.67,{},120978,0,"""South America""" +2023-11-24,73377,2705,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",302.93,"{\"": \""23%\""}",172460,1,"""Europe""" +2024-07-02,73378,3676,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3955.42,"{\""seasonal\"": \""24%\""}",131602,0,"""Africa""" +2024-08-24,73379,1243,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1661.98,{},95884,1,"""North America""" +2023-03-13,73380,392,"[\""Monitor\"", \""Charger\""]",4277.32,"{\""promo\"": \""5%\""}",140088,0,"""South America""" +2023-10-06,73381,2378,"[\""Monitor\""]",3345.37,"{\""loyalty\"": \""5%\""}",298203,0,"""Africa""" +2023-08-22,73382,2765,"[\""Keyboard\""]",215.09,{},218648,1,"""North America""" +2024-01-30,73383,4844,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3790.05,{},5264,0,"""South America""" +2024-01-17,73384,7051,"[\""Tablet\"", \""Monitor\""]",301.68,"{\"": \""26%\""}",81370,1,"""Africa""" +2024-01-04,73385,2284,"[\""Keyboard\"", \""Phone\""]",2778.13,{},199642,1,"""Africa""" +2024-10-03,73386,3363,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2023.09,{},240519,0,"""Africa""" +2024-01-10,73387,2927,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",707.15,{},272139,1,"""North America""" +2023-01-11,73388,1929,"[\""Laptop\""]",4955.12,{},163626,0,"""Africa""" +2023-12-13,73389,1985,"[\""Laptop\""]",3814.8,"{\""seasonal\"": \""10%\""}",5664,1,"""North America""" +2023-07-15,73390,8880,"[\""Phone\"", \""Charger\""]",2005.23,{},175733,1,"""Asia""" +2024-01-19,73391,905,"[\""Laptop\"", \""Tablet\""]",344.02,"{\"": \""19%\""}",147305,0,"""North America""" +2024-08-08,73392,4813,"[\""Keyboard\""]",78.74,{},201208,1,"""Africa""" +2023-06-21,73393,3456,"[\""Monitor\""]",3342.21,{},288112,1,"""Asia""" +2023-09-29,73394,8992,"[\""Phone\"", \""Wireless Mouse\""]",958.72,{},52400,0,"""North America""" +2023-03-13,73395,4175,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3309.82,{},165176,0,"""Asia""" +2023-11-23,73396,7103,"[\""Keyboard\""]",2421.4,"{\"": \""9%\""}",62441,1,"""North America""" +2024-07-02,73397,1504,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2617.36,{},99091,0,"""North America""" +2023-05-22,73398,238,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3178.43,{},233207,0,"""South America""" +2023-09-30,73399,126,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4628.26,{},273213,0,"""North America""" +2024-01-22,73400,9199,"[\""Charger\""]",1299.83,{},22379,0,"""Africa""" +2024-01-19,73401,5496,"[\""Monitor\""]",1870.43,{},216290,0,"""Asia""" +2024-01-12,73402,2613,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",663.51,{},114035,0,"""South America""" +2023-03-16,73403,4578,"[\""Monitor\""]",4937.96,{},125570,0,"""Africa""" +2024-06-17,73404,5347,"[\""Monitor\""]",297.03,{},21945,1,"""South America""" +2023-12-02,73405,8277,"[\""Monitor\"", \""Tablet\""]",1594.43,"{\"": \""24%\""}",117279,0,"""Europe""" +2024-02-14,73406,9547,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3215.85,{},185359,0,"""North America""" +2023-12-29,73407,4624,"[\""Monitor\""]",232.37,{},96664,0,"""Asia""" +2024-02-13,73408,5327,"[\""Laptop\"", \""Monitor\""]",812.99,{},175479,0,"""Africa""" +2024-06-22,73409,7170,"[\""Monitor\"", \""Wireless Mouse\""]",682.47,"{\""promo\"": \""22%\""}",15630,0,"""Asia""" +2023-12-17,73410,1227,"[\""Headphones\""]",698.61,"{\""seasonal\"": \""9%\""}",177018,0,"""Africa""" +2023-10-27,73411,9834,"[\""Headphones\"", \""Phone\""]",4695.89,"{\""promo\"": \""23%\""}",79737,1,"""Asia""" +2024-11-06,73412,7037,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4961.91,"{\"": \""22%\""}",296621,0,"""Europe""" +2024-06-20,73413,1080,"[\""Keyboard\"", \""Charger\""]",4139.25,{},134318,1,"""Asia""" +2023-09-18,73414,5756,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2285.33,"{\"": \""29%\""}",229626,0,"""Asia""" +2023-12-10,73415,1521,"[\""Phone\""]",1520.92,{},217497,0,"""Europe""" +2023-04-10,73416,8055,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1985.03,{},58322,1,"""Europe""" +2023-12-10,73417,338,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3613.04,{},267867,0,"""South America""" +2024-12-07,73418,8306,"[\""Monitor\""]",1353.73,"{\""seasonal\"": \""10%\""}",234582,1,"""South America""" +2023-10-12,73419,246,"[\""Tablet\""]",1423.8,{},83846,0,"""North America""" +2024-02-20,73420,7188,"[\""Tablet\""]",1357.4,"{\"": \""9%\""}",139514,1,"""North America""" +2023-10-16,73421,3133,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1454.08,"{\""promo\"": \""8%\""}",270015,0,"""Europe""" +2024-09-11,73422,8130,"[\""Tablet\"", \""Charger\""]",3449.01,"{\""loyalty\"": \""17%\""}",263992,1,"""Africa""" +2023-01-08,73423,3086,"[\""Wireless Mouse\"", \""Laptop\""]",1081.65,{},249650,0,"""Africa""" +2023-05-20,73424,4197,"[\""Monitor\""]",1439.84,{},76438,0,"""North America""" +2023-09-10,73425,3068,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2590.92,{},211445,1,"""Africa""" +2023-10-11,73426,4109,"[\""Monitor\"", \""Wireless Mouse\""]",765.8,{},90399,1,"""Africa""" +2023-01-01,73427,4624,"[\""Monitor\"", \""Laptop\""]",1367.72,"{\""promo\"": \""7%\""}",198846,1,"""South America""" +2023-04-04,73428,717,"[\""Keyboard\""]",654.25,"{\""promo\"": \""20%\""}",136697,0,"""Asia""" +2024-02-03,73429,5950,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",597.39,{},163481,1,"""North America""" +2024-06-03,73430,1438,"[\""Wireless Mouse\"", \""Tablet\""]",3102.61,"{\""seasonal\"": \""7%\""}",192002,0,"""Africa""" +2023-08-04,73431,2287,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4596.32,"{\""promo\"": \""21%\""}",7815,1,"""North America""" +2023-02-16,73432,2421,"[\""Wireless Mouse\""]",2002.83,"{\"": \""26%\""}",90303,1,"""North America""" +2024-10-04,73433,390,"[\""Keyboard\"", \""Charger\""]",2525.62,"{\"": \""17%\""}",167875,1,"""South America""" +2024-12-17,73434,5458,"[\""Tablet\""]",3685.55,{},175623,0,"""North America""" +2023-07-12,73435,1671,"[\""Phone\"", \""Headphones\""]",1480.14,{},4062,0,"""North America""" +2024-04-21,73436,7691,"[\""Headphones\""]",3670.33,"{\"": \""30%\""}",235365,0,"""South America""" +2023-03-31,73437,6927,"[\""Headphones\"", \""Laptop\""]",763.43,{},14411,0,"""Europe""" +2023-03-24,73438,2524,"[\""Laptop\""]",2066.3,{},32135,0,"""South America""" +2024-02-13,73439,2534,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1207.38,{},82463,1,"""Africa""" +2023-08-08,73440,3510,"[\""Tablet\"", \""Monitor\""]",1165.19,{},277130,0,"""South America""" +2024-05-15,73441,3674,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",965.6,"{\"": \""23%\""}",253463,1,"""Asia""" +2023-08-30,73442,9284,"[\""Headphones\""]",311.24,"{\""seasonal\"": \""17%\""}",111863,1,"""North America""" +2024-02-25,73443,6137,"[\""Wireless Mouse\""]",1007.87,{},242912,1,"""South America""" +2024-02-17,73444,1983,"[\""Headphones\"", \""Charger\""]",3286.65,{},144054,1,"""North America""" +2023-10-26,73445,5799,"[\""Phone\""]",4789.63,"{\""promo\"": \""14%\""}",258470,1,"""South America""" +2023-03-26,73446,4519,"[\""Headphones\"", \""Monitor\""]",3021.41,"{\""loyalty\"": \""16%\""}",69725,1,"""South America""" +2024-02-25,73447,4638,"[\""Laptop\"", \""Monitor\""]",2263.72,"{\""seasonal\"": \""18%\""}",169370,1,"""Africa""" +2023-12-27,73448,9567,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3959.54,{},13260,1,"""North America""" +2024-12-30,73449,9311,"[\""Wireless Mouse\"", \""Phone\""]",4313.79,{},37778,1,"""Asia""" +2023-10-01,73450,9800,"[\""Laptop\""]",267.91,{},118155,0,"""North America""" +2023-01-07,73451,2849,"[\""Laptop\"", \""Monitor\""]",4076.31,"{\"": \""15%\""}",4479,0,"""North America""" +2024-12-26,73452,7182,"[\""Phone\""]",2878.5,{},7858,0,"""Europe""" +2024-10-15,73453,5826,"[\""Headphones\"", \""Laptop\""]",3174.02,{},121747,1,"""Asia""" +2023-06-21,73454,4665,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4861.31,{},255683,0,"""Europe""" +2023-12-22,73455,3375,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4387.0,{},215936,0,"""North America""" +2023-02-22,73456,6897,"[\""Keyboard\"", \""Wireless Mouse\""]",3454.11,"{\""promo\"": \""12%\""}",231469,1,"""North America""" +2023-12-12,73457,1712,"[\""Charger\""]",358.97,"{\""seasonal\"": \""24%\""}",5677,0,"""South America""" +2023-03-02,73458,7181,"[\""Phone\"", \""Keyboard\""]",4685.84,"{\""seasonal\"": \""29%\""}",167087,0,"""Asia""" +2024-11-11,73459,5541,"[\""Laptop\"", \""Wireless Mouse\""]",4814.28,{},10378,0,"""North America""" +2024-11-03,73460,7899,"[\""Phone\"", \""Headphones\""]",293.65,{},28001,1,"""Europe""" +2023-03-19,73461,5764,"[\""Monitor\"", \""Keyboard\""]",2260.27,{},64079,0,"""Europe""" +2023-04-01,73462,9593,"[\""Keyboard\"", \""Tablet\""]",2381.12,"{\""seasonal\"": \""16%\""}",98874,1,"""Asia""" +2023-09-07,73463,2609,"[\""Phone\"", \""Keyboard\""]",3059.58,"{\"": \""9%\""}",62941,0,"""Europe""" +2024-10-02,73464,3533,"[\""Tablet\""]",1555.33,{},260075,0,"""Africa""" +2023-07-14,73465,4298,"[\""Keyboard\"", \""Monitor\""]",381.82,{},51165,0,"""South America""" +2023-09-11,73466,8995,"[\""Charger\"", \""Keyboard\""]",4643.79,{},2703,1,"""Asia""" +2023-08-20,73467,9480,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",620.42,{},166460,0,"""North America""" +2023-09-14,73468,597,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1862.11,{},217217,0,"""Europe""" +2023-08-28,73469,9369,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3442.41,"{\""loyalty\"": \""19%\""}",267166,0,"""South America""" +2023-04-03,73470,8493,"[\""Laptop\""]",2578.78,{},173399,1,"""Europe""" +2023-02-05,73471,7542,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4348.11,"{\""loyalty\"": \""18%\""}",62894,0,"""South America""" +2023-10-24,73472,9608,"[\""Phone\""]",2657.16,{},252834,1,"""Africa""" +2023-03-14,73473,1774,"[\""Laptop\""]",2695.12,"{\""seasonal\"": \""23%\""}",70897,0,"""Africa""" +2023-06-27,73474,1785,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4976.9,"{\""promo\"": \""19%\""}",101178,0,"""Asia""" +2024-11-21,73475,3113,"[\""Laptop\""]",1460.16,"{\""promo\"": \""21%\""}",76580,0,"""South America""" +2024-10-14,73476,8896,"[\""Charger\""]",3330.25,{},63617,1,"""North America""" +2024-02-24,73477,4430,"[\""Charger\"", \""Tablet\""]",1671.93,{},65059,1,"""Africa""" +2024-08-21,73478,2449,"[\""Headphones\"", \""Charger\""]",3699.11,"{\""loyalty\"": \""9%\""}",240421,0,"""South America""" +2024-10-08,73479,5246,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",332.38,{},171518,1,"""Europe""" +2024-06-27,73480,9019,"[\""Phone\""]",362.77,{},80185,1,"""South America""" +2024-02-04,73481,639,"[\""Wireless Mouse\"", \""Laptop\""]",2734.64,"{\""loyalty\"": \""23%\""}",92753,1,"""North America""" +2024-06-06,73482,1121,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2238.93,{},82654,1,"""North America""" +2024-06-15,73483,1524,"[\""Phone\"", \""Tablet\""]",4525.53,"{\""loyalty\"": \""14%\""}",157387,1,"""Africa""" +2023-10-19,73484,7754,"[\""Tablet\""]",4674.76,"{\""promo\"": \""26%\""}",295372,1,"""Asia""" +2024-10-23,73485,5360,"[\""Headphones\""]",1078.6,{},132908,0,"""North America""" +2023-09-12,73486,6987,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1110.94,"{\""seasonal\"": \""26%\""}",182635,0,"""Asia""" +2023-09-25,73487,1443,"[\""Keyboard\"", \""Headphones\""]",345.16,{},213853,0,"""Europe""" +2023-08-07,73488,3284,"[\""Phone\"", \""Keyboard\""]",2820.78,"{\"": \""22%\""}",90999,1,"""South America""" +2023-10-23,73489,7319,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1308.63,"{\""seasonal\"": \""14%\""}",275079,0,"""Europe""" +2023-02-08,73490,8811,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4817.63,"{\""promo\"": \""25%\""}",74328,0,"""North America""" +2023-01-02,73491,6848,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1907.94,"{\"": \""11%\""}",66909,1,"""Asia""" +2024-07-10,73492,4065,"[\""Wireless Mouse\""]",4605.62,"{\""loyalty\"": \""24%\""}",62677,1,"""Asia""" +2023-01-18,73493,9132,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3971.67,"{\""seasonal\"": \""21%\""}",186174,0,"""Africa""" +2024-01-06,73494,9579,"[\""Laptop\"", \""Headphones\""]",3746.95,"{\"": \""19%\""}",230520,0,"""Africa""" +2024-06-16,73495,519,"[\""Phone\""]",2141.1,"{\""seasonal\"": \""27%\""}",226202,1,"""North America""" +2023-03-09,73496,8923,"[\""Keyboard\"", \""Charger\""]",1421.92,"{\""seasonal\"": \""17%\""}",167728,0,"""Europe""" +2023-09-11,73497,5154,"[\""Monitor\"", \""Phone\""]",3686.68,"{\""seasonal\"": \""6%\""}",24245,0,"""South America""" +2023-04-02,73498,2781,"[\""Wireless Mouse\""]",1213.91,{},91802,1,"""Europe""" +2023-01-04,73499,9723,"[\""Keyboard\""]",4453.5,"{\"": \""16%\""}",161705,1,"""South America""" +2023-10-09,73500,817,"[\""Headphones\""]",2361.07,"{\"": \""27%\""}",84934,1,"""Asia""" +2023-02-02,73501,9357,"[\""Monitor\""]",1469.66,{},281861,0,"""Europe""" +2023-10-24,73502,6545,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4464.37,"{\""seasonal\"": \""7%\""}",180678,0,"""Europe""" +2023-05-08,73503,7913,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2048.18,{},68457,1,"""North America""" +2023-03-07,73504,1704,"[\""Monitor\""]",3946.21,"{\""loyalty\"": \""17%\""}",186473,1,"""Africa""" +2024-04-13,73505,2805,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2315.48,"{\""loyalty\"": \""16%\""}",215586,0,"""Africa""" +2024-05-19,73506,2320,"[\""Laptop\""]",2744.29,{},63608,1,"""Africa""" +2024-07-10,73507,7072,"[\""Phone\""]",2677.42,{},166550,0,"""Africa""" +2024-01-01,73508,4585,"[\""Monitor\""]",745.25,"{\""seasonal\"": \""29%\""}",260167,1,"""Africa""" +2024-02-08,73509,3177,"[\""Keyboard\""]",643.33,"{\""seasonal\"": \""13%\""}",112509,1,"""South America""" +2023-05-03,73510,5643,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",76.78,{},125062,1,"""Africa""" +2023-03-13,73511,4540,"[\""Keyboard\""]",4562.49,{},274156,0,"""North America""" +2023-05-20,73512,6712,"[\""Phone\""]",4748.5,"{\""seasonal\"": \""29%\""}",75028,0,"""Asia""" +2024-08-05,73513,1201,"[\""Keyboard\""]",199.65,{},280132,0,"""North America""" +2024-03-23,73514,7871,"[\""Monitor\"", \""Wireless Mouse\""]",3151.78,"{\""loyalty\"": \""8%\""}",298671,0,"""North America""" +2024-02-04,73515,1123,"[\""Wireless Mouse\""]",3295.87,{},68534,0,"""Europe""" +2024-11-09,73516,7195,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1659.6,"{\""loyalty\"": \""19%\""}",185787,1,"""Africa""" +2023-06-07,73517,633,"[\""Laptop\"", \""Headphones\""]",1655.38,"{\""promo\"": \""14%\""}",62634,0,"""Africa""" +2024-11-02,73518,9878,"[\""Laptop\"", \""Wireless Mouse\""]",82.16,{},165224,0,"""North America""" +2024-02-06,73519,6653,"[\""Keyboard\""]",4353.37,{},180812,1,"""South America""" +2023-06-14,73520,929,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2939.43,{},190683,0,"""North America""" +2023-11-13,73521,8461,"[\""Monitor\"", \""Headphones\""]",587.0,"{\"": \""16%\""}",130022,1,"""Asia""" +2023-06-06,73522,8898,"[\""Phone\"", \""Headphones\""]",4878.98,"{\""seasonal\"": \""9%\""}",168138,1,"""Asia""" +2024-10-11,73523,8772,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1238.36,{},157551,0,"""Africa""" +2023-03-04,73524,6715,"[\""Tablet\"", \""Phone\""]",3480.25,{},51691,0,"""North America""" +2023-10-08,73525,295,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",762.69,{},257198,0,"""North America""" +2024-04-03,73526,8805,"[\""Wireless Mouse\"", \""Monitor\""]",4878.05,{},48874,1,"""South America""" +2024-10-18,73527,7341,"[\""Charger\"", \""Laptop\""]",2494.45,{},32505,1,"""Africa""" +2023-03-15,73528,5691,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2179.79,"{\""promo\"": \""25%\""}",44838,1,"""South America""" +2024-05-27,73529,2903,"[\""Monitor\"", \""Headphones\""]",2430.57,{},285324,0,"""South America""" +2023-04-09,73530,6457,"[\""Phone\""]",2343.67,{},279692,1,"""South America""" +2024-01-06,73531,5966,"[\""Headphones\""]",3360.13,{},144555,0,"""Europe""" +2023-01-20,73532,7024,"[\""Phone\"", \""Keyboard\""]",2265.22,"{\""seasonal\"": \""6%\""}",102853,0,"""Africa""" +2023-05-13,73533,9449,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4881.48,"{\"": \""8%\""}",43180,0,"""Europe""" +2024-11-22,73534,6030,"[\""Charger\"", \""Laptop\""]",110.47,"{\""seasonal\"": \""22%\""}",13293,0,"""North America""" +2024-08-01,73535,3553,"[\""Tablet\"", \""Monitor\""]",652.55,"{\""loyalty\"": \""13%\""}",278911,0,"""Europe""" +2023-06-04,73536,7329,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1424.31,"{\""seasonal\"": \""5%\""}",299739,1,"""Europe""" +2023-12-21,73537,4635,"[\""Charger\""]",2359.69,"{\""seasonal\"": \""12%\""}",6664,1,"""Asia""" +2023-01-29,73538,4400,"[\""Wireless Mouse\""]",2271.98,{},139567,1,"""Africa""" +2023-10-10,73539,6201,"[\""Headphones\"", \""Phone\""]",4897.5,"{\"": \""21%\""}",55519,1,"""Asia""" +2024-04-13,73540,4430,"[\""Phone\"", \""Wireless Mouse\""]",1864.76,{},268422,0,"""Asia""" +2024-11-29,73541,2893,"[\""Charger\"", \""Keyboard\""]",697.32,{},194023,1,"""North America""" +2023-12-31,73542,1821,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",374.71,{},145055,0,"""Europe""" +2023-09-25,73543,3586,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3598.47,{},239587,1,"""Africa""" +2023-03-07,73544,5802,"[\""Monitor\""]",2316.09,{},251607,0,"""Europe""" +2023-10-06,73545,491,"[\""Tablet\"", \""Monitor\""]",3653.27,"{\""loyalty\"": \""29%\""}",67707,0,"""Asia""" +2023-01-16,73546,9211,"[\""Monitor\"", \""Wireless Mouse\""]",3935.41,"{\""loyalty\"": \""14%\""}",35516,0,"""Africa""" +2023-04-08,73547,7010,"[\""Laptop\"", \""Wireless Mouse\""]",3013.7,"{\"": \""24%\""}",44947,1,"""South America""" +2024-05-14,73548,8157,"[\""Wireless Mouse\"", \""Phone\""]",2259.16,{},56909,1,"""North America""" +2024-10-08,73549,3418,"[\""Wireless Mouse\""]",924.04,"{\"": \""23%\""}",125397,1,"""Europe""" +2023-11-14,73550,3040,"[\""Laptop\""]",1086.04,{},105901,0,"""Europe""" +2023-03-18,73551,7723,"[\""Keyboard\"", \""Phone\""]",4614.25,"{\"": \""13%\""}",162504,0,"""Europe""" +2023-05-16,73552,9981,"[\""Wireless Mouse\"", \""Monitor\""]",1376.52,"{\""loyalty\"": \""13%\""}",85668,1,"""Europe""" +2023-07-14,73553,8231,"[\""Monitor\""]",1974.29,{},138758,1,"""South America""" +2024-03-25,73554,8420,"[\""Laptop\""]",1051.79,{},143181,0,"""Africa""" +2024-03-05,73555,3650,"[\""Monitor\""]",1814.42,"{\"": \""19%\""}",15135,0,"""Africa""" +2023-12-31,73556,5066,"[\""Tablet\"", \""Monitor\""]",338.06,{},236335,0,"""Europe""" +2023-04-09,73557,755,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2688.0,{},74414,1,"""Africa""" +2024-08-30,73558,7019,"[\""Charger\"", \""Tablet\""]",4643.03,{},157879,1,"""North America""" +2024-01-29,73559,7268,"[\""Charger\""]",479.65,{},265418,0,"""North America""" +2023-05-20,73560,4214,"[\""Tablet\""]",3980.32,{},125651,1,"""Europe""" +2023-11-06,73561,8624,"[\""Keyboard\"", \""Charger\""]",3754.37,"{\""loyalty\"": \""6%\""}",224086,1,"""Asia""" +2023-02-18,73562,2083,"[\""Charger\""]",2487.89,"{\""seasonal\"": \""20%\""}",54056,1,"""Africa""" +2023-02-12,73563,1268,"[\""Laptop\""]",2035.35,"{\""loyalty\"": \""23%\""}",139917,1,"""Africa""" +2024-08-15,73564,1096,"[\""Keyboard\"", \""Headphones\""]",4707.12,"{\""seasonal\"": \""7%\""}",110962,1,"""Asia""" +2023-01-16,73565,8247,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",659.96,{},20761,0,"""North America""" +2024-03-16,73566,7377,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2598.38,"{\""promo\"": \""5%\""}",124242,1,"""Asia""" +2024-01-11,73567,3101,"[\""Keyboard\""]",2209.02,{},129356,0,"""Africa""" +2024-09-15,73568,6211,"[\""Wireless Mouse\""]",298.02,"{\""loyalty\"": \""6%\""}",209503,1,"""South America""" +2023-04-21,73569,8199,"[\""Keyboard\"", \""Monitor\""]",1770.06,"{\""loyalty\"": \""30%\""}",48855,0,"""North America""" +2023-08-18,73570,6570,"[\""Wireless Mouse\""]",4791.76,{},68871,0,"""South America""" +2023-08-26,73571,4767,"[\""Laptop\""]",3071.61,{},102611,0,"""Europe""" +2023-01-19,73572,802,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2744.92,"{\""promo\"": \""5%\""}",127288,0,"""Europe""" +2024-01-02,73573,2027,"[\""Wireless Mouse\""]",1974.83,"{\""promo\"": \""27%\""}",210794,0,"""Europe""" +2023-03-11,73574,2125,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1309.08,"{\""loyalty\"": \""24%\""}",39127,1,"""Africa""" +2023-03-22,73575,7505,"[\""Charger\"", \""Phone\""]",1003.65,{},286743,1,"""Asia""" +2023-05-05,73576,8995,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",432.64,"{\""seasonal\"": \""23%\""}",139353,0,"""South America""" +2024-06-06,73577,7941,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3867.73,{},130646,1,"""North America""" +2023-02-01,73578,5512,"[\""Wireless Mouse\""]",1934.24,"{\""seasonal\"": \""22%\""}",53406,0,"""North America""" +2023-09-12,73579,1865,"[\""Phone\""]",473.94,{},247269,0,"""Asia""" +2024-03-05,73580,9369,"[\""Charger\"", \""Monitor\""]",2946.49,{},175225,1,"""Africa""" +2024-09-04,73581,4124,"[\""Wireless Mouse\""]",4435.99,{},55858,1,"""North America""" +2024-12-11,73582,9529,"[\""Laptop\""]",155.04,{},137732,0,"""North America""" +2024-09-25,73583,2633,"[\""Headphones\""]",3275.52,"{\""promo\"": \""5%\""}",151269,0,"""Africa""" +2023-06-20,73584,3181,"[\""Keyboard\""]",4579.5,"{\""promo\"": \""15%\""}",177289,1,"""North America""" +2024-06-19,73585,8835,"[\""Charger\""]",842.84,{},83855,1,"""North America""" +2023-10-19,73586,5983,"[\""Wireless Mouse\""]",1880.44,"{\""seasonal\"": \""15%\""}",77010,1,"""Africa""" +2023-11-23,73587,8743,"[\""Charger\"", \""Tablet\""]",2600.54,{},138302,1,"""Asia""" +2023-10-20,73588,5306,"[\""Charger\""]",3069.92,"{\""loyalty\"": \""7%\""}",130185,0,"""Europe""" +2024-05-13,73589,541,"[\""Wireless Mouse\""]",4963.58,{},28632,1,"""North America""" +2023-12-10,73590,6483,"[\""Laptop\"", \""Keyboard\""]",3064.14,"{\"": \""15%\""}",202733,0,"""South America""" +2023-04-24,73591,7853,"[\""Monitor\"", \""Phone\""]",258.56,{},102302,1,"""Africa""" +2023-01-09,73592,3102,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4885.9,{},145873,0,"""South America""" +2023-01-23,73593,3529,"[\""Phone\"", \""Tablet\""]",1152.04,{},146103,1,"""Africa""" +2024-05-12,73594,585,"[\""Keyboard\"", \""Tablet\""]",1426.86,"{\""promo\"": \""16%\""}",144442,0,"""South America""" +2024-02-25,73595,2457,"[\""Monitor\""]",876.97,"{\""loyalty\"": \""14%\""}",72453,1,"""Europe""" +2023-03-19,73596,2629,"[\""Keyboard\"", \""Headphones\""]",3883.07,{},20748,1,"""Asia""" +2024-01-03,73597,9523,"[\""Wireless Mouse\""]",2035.86,{},296437,1,"""South America""" +2023-03-16,73598,5926,"[\""Wireless Mouse\""]",1068.69,"{\""promo\"": \""11%\""}",211880,0,"""Europe""" +2023-11-22,73599,8445,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",297.33,"{\""seasonal\"": \""18%\""}",132173,0,"""Africa""" +2024-11-07,73600,4678,"[\""Phone\"", \""Keyboard\""]",1904.88,"{\""seasonal\"": \""10%\""}",168448,1,"""South America""" +2024-02-14,73601,8628,"[\""Keyboard\""]",1969.59,{},165649,1,"""North America""" +2023-01-10,73602,5774,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4677.14,{},239108,0,"""North America""" +2023-05-20,73603,1489,"[\""Charger\""]",1647.88,"{\"": \""6%\""}",109436,0,"""Africa""" +2023-09-29,73604,9213,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2325.92,"{\""loyalty\"": \""10%\""}",298302,0,"""Africa""" +2024-05-21,73605,3658,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2546.83,"{\"": \""18%\""}",69355,0,"""North America""" +2023-10-16,73606,5833,"[\""Monitor\"", \""Laptop\""]",976.79,"{\""loyalty\"": \""23%\""}",24962,0,"""Africa""" +2023-07-20,73607,8385,"[\""Keyboard\""]",4386.78,{},32306,1,"""Europe""" +2023-12-17,73608,3128,"[\""Tablet\"", \""Keyboard\""]",972.39,"{\"": \""20%\""}",22951,1,"""South America""" +2024-05-16,73609,2384,"[\""Monitor\""]",2415.58,{},98455,1,"""North America""" +2024-07-28,73610,2405,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1933.78,"{\""loyalty\"": \""17%\""}",293349,1,"""Europe""" +2024-11-06,73611,601,"[\""Laptop\""]",4896.26,{},37323,0,"""Asia""" +2024-01-29,73612,90,"[\""Headphones\"", \""Phone\""]",1348.05,{},205964,1,"""North America""" +2024-12-30,73613,587,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3481.55,"{\""loyalty\"": \""26%\""}",3445,0,"""South America""" +2023-12-04,73614,8407,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2652.35,{},174642,1,"""Europe""" +2023-09-28,73615,269,"[\""Tablet\"", \""Laptop\""]",2906.72,{},203695,0,"""South America""" +2023-09-23,73616,1343,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1847.38,"{\"": \""6%\""}",258110,1,"""Europe""" +2024-11-15,73617,8880,"[\""Tablet\""]",732.02,{},220581,1,"""Africa""" +2024-04-02,73618,6713,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1917.64,"{\""seasonal\"": \""5%\""}",151942,0,"""Africa""" +2023-11-11,73619,4905,"[\""Phone\""]",2168.27,{},41511,1,"""Europe""" +2023-08-29,73620,484,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2391.44,"{\""promo\"": \""12%\""}",22330,0,"""Africa""" +2024-10-04,73621,3219,"[\""Phone\""]",1975.77,{},126479,1,"""Africa""" +2023-01-07,73622,8009,"[\""Phone\"", \""Monitor\""]",2238.01,"{\""promo\"": \""17%\""}",200714,1,"""South America""" +2024-08-07,73623,848,"[\""Laptop\"", \""Charger\""]",3397.38,"{\""promo\"": \""12%\""}",77025,0,"""Asia""" +2024-06-19,73624,3562,"[\""Charger\"", \""Wireless Mouse\""]",3702.28,{},267827,0,"""Asia""" +2023-05-28,73625,2990,"[\""Wireless Mouse\"", \""Charger\""]",3800.43,{},81814,1,"""Africa""" +2023-06-22,73626,5703,"[\""Charger\"", \""Monitor\""]",2823.1,{},239641,0,"""Africa""" +2023-05-29,73627,8526,"[\""Wireless Mouse\"", \""Monitor\""]",2781.45,"{\"": \""23%\""}",84259,1,"""Asia""" +2024-12-12,73628,542,"[\""Phone\"", \""Keyboard\""]",3840.76,{},239585,1,"""Africa""" +2023-09-05,73629,5683,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2662.6,"{\""promo\"": \""25%\""}",76734,0,"""Africa""" +2024-03-07,73630,6137,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",300.41,"{\""seasonal\"": \""16%\""}",87653,0,"""North America""" +2023-05-31,73631,6967,"[\""Monitor\""]",2922.31,"{\""seasonal\"": \""22%\""}",62237,1,"""North America""" +2024-04-09,73632,4732,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3427.22,"{\"": \""23%\""}",251128,1,"""North America""" +2024-08-24,73633,4955,"[\""Headphones\""]",326.83,{},128199,0,"""Africa""" +2024-12-31,73634,4220,"[\""Laptop\""]",1745.14,"{\""loyalty\"": \""25%\""}",115239,1,"""Europe""" +2023-02-06,73635,7568,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4467.25,{},81944,1,"""Asia""" +2023-06-28,73636,2423,"[\""Phone\"", \""Monitor\""]",3193.87,{},273211,0,"""Africa""" +2024-06-02,73637,2558,"[\""Keyboard\"", \""Monitor\""]",3837.51,{},169406,0,"""Europe""" +2024-10-21,73638,7838,"[\""Monitor\""]",2619.58,"{\""loyalty\"": \""14%\""}",100362,1,"""Africa""" +2023-03-21,73639,8988,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4540.13,"{\""promo\"": \""21%\""}",88740,0,"""Asia""" +2023-05-11,73640,8099,"[\""Phone\"", \""Wireless Mouse\""]",4492.41,"{\""seasonal\"": \""17%\""}",1093,1,"""North America""" +2023-05-11,73641,529,"[\""Laptop\""]",694.51,"{\""promo\"": \""9%\""}",69392,1,"""Asia""" +2024-06-28,73642,8347,"[\""Keyboard\""]",3414.07,"{\""seasonal\"": \""26%\""}",161731,1,"""Europe""" +2024-08-10,73643,4896,"[\""Phone\"", \""Charger\"", \""Headphones\""]",903.25,"{\""promo\"": \""17%\""}",63431,1,"""North America""" +2023-07-16,73644,4734,"[\""Monitor\"", \""Tablet\""]",2084.71,"{\""seasonal\"": \""12%\""}",249029,0,"""South America""" +2024-02-06,73645,1000,"[\""Wireless Mouse\""]",3857.68,{},137430,1,"""Asia""" +2023-11-27,73646,6337,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1595.7,{},139855,1,"""South America""" +2023-11-17,73647,3277,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4099.94,{},1325,0,"""Africa""" +2024-09-24,73648,5106,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4831.5,"{\""promo\"": \""11%\""}",206137,1,"""Asia""" +2023-02-27,73649,9097,"[\""Keyboard\""]",334.91,{},108052,0,"""Asia""" +2023-05-16,73650,8122,"[\""Monitor\"", \""Keyboard\""]",961.82,"{\""seasonal\"": \""14%\""}",140629,0,"""Europe""" +2024-02-26,73651,8948,"[\""Wireless Mouse\"", \""Laptop\""]",4486.42,"{\"": \""8%\""}",71520,0,"""South America""" +2023-12-30,73652,3550,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4423.75,{},190746,0,"""Europe""" +2024-09-17,73653,1370,"[\""Monitor\"", \""Laptop\""]",4879.98,{},63840,1,"""South America""" +2024-08-29,73654,2435,"[\""Charger\""]",3250.51,{},176626,0,"""North America""" +2024-03-09,73655,7104,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1438.68,"{\""promo\"": \""22%\""}",217496,0,"""North America""" +2024-05-08,73656,2587,"[\""Monitor\""]",425.42,"{\""loyalty\"": \""30%\""}",281906,1,"""North America""" +2024-03-09,73657,28,"[\""Keyboard\"", \""Charger\""]",726.36,{},72448,1,"""North America""" +2023-12-07,73658,9781,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4819.57,"{\""seasonal\"": \""17%\""}",288204,1,"""Asia""" +2023-12-09,73659,4966,"[\""Charger\""]",551.87,"{\""seasonal\"": \""30%\""}",96228,0,"""Africa""" +2024-02-05,73660,2548,"[\""Monitor\""]",3751.65,{},17261,1,"""Africa""" +2024-09-04,73661,8860,"[\""Phone\"", \""Laptop\""]",4258.16,"{\""loyalty\"": \""26%\""}",206883,0,"""South America""" +2023-01-02,73662,5369,"[\""Laptop\"", \""Keyboard\""]",2000.33,"{\"": \""16%\""}",136985,1,"""South America""" +2024-12-11,73663,4887,"[\""Charger\"", \""Phone\""]",1627.84,"{\"": \""27%\""}",254264,1,"""Asia""" +2024-04-10,73664,9067,"[\""Monitor\"", \""Phone\""]",4134.28,"{\""seasonal\"": \""26%\""}",162887,0,"""Europe""" +2024-10-26,73665,7668,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4207.02,"{\""seasonal\"": \""26%\""}",219436,0,"""South America""" +2024-05-11,73666,7416,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3318.12,"{\""seasonal\"": \""28%\""}",128902,1,"""North America""" +2024-05-17,73667,4946,"[\""Phone\"", \""Laptop\""]",4576.1,{},8841,0,"""South America""" +2024-05-10,73668,173,"[\""Monitor\""]",4067.07,"{\""promo\"": \""23%\""}",250771,0,"""Asia""" +2023-06-10,73669,8852,"[\""Monitor\""]",1934.34,{},64025,0,"""Africa""" +2023-08-15,73670,8529,"[\""Charger\"", \""Phone\"", \""Laptop\""]",844.77,"{\""promo\"": \""11%\""}",139302,0,"""South America""" +2024-03-29,73671,3822,"[\""Keyboard\""]",2587.86,{},111865,0,"""North America""" +2023-07-09,73672,4924,"[\""Phone\""]",4430.98,{},192620,0,"""Asia""" +2024-07-14,73673,4010,"[\""Monitor\""]",1219.37,"{\""promo\"": \""10%\""}",144519,1,"""Asia""" +2024-02-03,73674,657,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1887.61,{},47082,1,"""North America""" +2023-10-15,73675,388,"[\""Wireless Mouse\""]",4160.02,{},191602,0,"""Asia""" +2023-11-22,73676,1323,"[\""Monitor\"", \""Phone\""]",502.6,"{\""promo\"": \""13%\""}",170819,1,"""North America""" +2024-10-01,73677,4690,"[\""Wireless Mouse\""]",3113.36,{},6186,0,"""Europe""" +2024-08-24,73678,5704,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",475.75,{},219787,1,"""North America""" +2023-11-06,73679,9385,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4339.75,"{\"": \""27%\""}",147704,0,"""Africa""" +2023-05-18,73680,3327,"[\""Phone\"", \""Headphones\""]",1525.67,{},179945,0,"""Europe""" +2023-03-28,73681,9334,"[\""Phone\""]",2752.57,{},143337,0,"""Africa""" +2023-09-18,73682,3842,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",59.39,{},222790,1,"""Africa""" +2023-01-19,73683,7474,"[\""Monitor\""]",1708.23,"{\"": \""19%\""}",241960,1,"""Asia""" +2024-09-10,73684,9333,"[\""Laptop\""]",392.23,"{\""promo\"": \""24%\""}",293472,1,"""Asia""" +2024-03-02,73685,6395,"[\""Phone\"", \""Headphones\""]",3901.99,{},129504,1,"""Asia""" +2023-06-22,73686,2262,"[\""Monitor\"", \""Headphones\""]",1612.52,"{\""promo\"": \""16%\""}",45869,1,"""Africa""" +2023-01-03,73687,2545,"[\""Tablet\""]",1250.49,{},71929,0,"""Asia""" +2023-11-10,73688,4338,"[\""Headphones\""]",3667.91,{},38697,1,"""Africa""" +2023-03-05,73689,5748,"[\""Headphones\""]",4671.47,"{\""loyalty\"": \""5%\""}",275408,1,"""North America""" +2023-12-31,73690,7405,"[\""Headphones\"", \""Keyboard\""]",1268.5,"{\""promo\"": \""21%\""}",287856,1,"""Europe""" +2023-09-16,73691,2966,"[\""Headphones\""]",1258.38,"{\""loyalty\"": \""14%\""}",218237,1,"""Europe""" +2024-05-26,73692,5351,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",362.66,"{\""seasonal\"": \""21%\""}",217074,0,"""Asia""" +2024-11-13,73693,114,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1457.14,{},211375,0,"""South America""" +2023-11-28,73694,8081,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4183.79,{},88661,0,"""South America""" +2023-03-10,73695,5930,"[\""Monitor\"", \""Charger\""]",4875.81,"{\""seasonal\"": \""21%\""}",228122,0,"""Africa""" +2023-03-17,73696,8887,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2658.06,"{\"": \""11%\""}",157407,0,"""Africa""" +2024-09-10,73697,3659,"[\""Monitor\""]",2905.48,{},139450,1,"""South America""" +2023-01-14,73698,279,"[\""Laptop\"", \""Keyboard\""]",4132.83,"{\"": \""24%\""}",278671,0,"""Europe""" +2024-10-21,73699,6158,"[\""Charger\""]",3776.76,"{\""seasonal\"": \""5%\""}",287766,0,"""Asia""" +2023-04-01,73700,4326,"[\""Monitor\""]",2988.29,{},147704,1,"""Europe""" +2024-08-19,73701,6244,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2966.21,"{\"": \""21%\""}",86131,1,"""Asia""" +2024-07-17,73702,7723,"[\""Charger\"", \""Wireless Mouse\""]",1884.55,"{\""promo\"": \""21%\""}",299662,0,"""Europe""" +2024-12-21,73703,3577,"[\""Keyboard\"", \""Laptop\""]",2918.51,"{\""loyalty\"": \""14%\""}",224469,0,"""Africa""" +2023-01-04,73704,9787,"[\""Monitor\""]",495.98,"{\""promo\"": \""8%\""}",212565,1,"""North America""" +2023-02-16,73705,8863,"[\""Headphones\"", \""Tablet\""]",1819.33,{},160002,1,"""Europe""" +2023-01-11,73706,6303,"[\""Phone\"", \""Wireless Mouse\""]",2571.09,{},200898,1,"""Asia""" +2024-03-25,73707,3511,"[\""Phone\""]",293.79,"{\""promo\"": \""7%\""}",214096,1,"""Africa""" +2023-11-30,73708,4276,"[\""Tablet\"", \""Charger\""]",491.26,{},122689,0,"""Africa""" +2023-09-01,73709,8227,"[\""Tablet\"", \""Monitor\""]",2894.61,"{\"": \""27%\""}",162866,0,"""South America""" +2023-11-15,73710,5430,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",415.15,"{\"": \""29%\""}",6488,0,"""Europe""" +2023-12-19,73711,1449,"[\""Keyboard\""]",3900.99,{},150907,0,"""South America""" +2024-04-08,73712,4915,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3024.38,{},15257,0,"""Asia""" +2023-11-12,73713,6293,"[\""Phone\""]",1165.91,"{\""loyalty\"": \""23%\""}",256104,1,"""Europe""" +2023-10-24,73714,7930,"[\""Tablet\"", \""Laptop\""]",64.06,{},173150,1,"""South America""" +2023-07-02,73715,3757,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3979.9,{},33399,0,"""Africa""" +2024-01-07,73716,9060,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2410.35,{},43333,1,"""Europe""" +2023-10-22,73717,770,"[\""Headphones\"", \""Laptop\""]",2666.32,"{\"": \""10%\""}",30324,1,"""South America""" +2024-04-23,73718,2714,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1935.04,"{\""seasonal\"": \""14%\""}",59895,1,"""North America""" +2023-10-15,73719,3101,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",412.0,"{\""seasonal\"": \""9%\""}",103941,0,"""Africa""" +2024-06-24,73720,6573,"[\""Charger\"", \""Laptop\""]",2874.07,"{\""loyalty\"": \""23%\""}",299930,0,"""South America""" +2023-08-13,73721,9970,"[\""Keyboard\""]",196.29,{},219469,1,"""Africa""" +2024-07-21,73722,8270,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1284.92,"{\""loyalty\"": \""11%\""}",41468,1,"""North America""" +2024-11-03,73723,9701,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",300.8,{},245563,0,"""Africa""" +2024-07-22,73724,8069,"[\""Headphones\""]",4432.72,"{\""loyalty\"": \""20%\""}",259698,1,"""South America""" +2023-06-22,73725,3008,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",926.07,{},200610,1,"""Europe""" +2024-10-17,73726,7415,"[\""Keyboard\"", \""Monitor\""]",3181.13,"{\""promo\"": \""16%\""}",71751,1,"""South America""" +2024-06-17,73727,2964,"[\""Charger\""]",4753.86,{},238385,0,"""Asia""" +2023-08-05,73728,4628,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4822.8,"{\"": \""8%\""}",29302,0,"""Asia""" +2024-02-06,73729,7497,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1068.59,"{\""seasonal\"": \""16%\""}",65885,0,"""Asia""" +2024-08-02,73730,5465,"[\""Phone\""]",2714.56,"{\""seasonal\"": \""28%\""}",49458,0,"""Africa""" +2024-01-27,73731,2633,"[\""Tablet\""]",4395.73,{},150629,1,"""Europe""" +2023-05-04,73732,2733,"[\""Keyboard\"", \""Charger\""]",2885.98,"{\"": \""27%\""}",213548,0,"""Asia""" +2023-06-07,73733,2669,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3995.51,{},184701,0,"""Africa""" +2024-11-14,73734,7886,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",648.42,{},278093,0,"""South America""" +2024-09-13,73735,5802,"[\""Laptop\""]",2090.99,{},283437,1,"""Asia""" +2023-07-27,73736,6074,"[\""Keyboard\"", \""Wireless Mouse\""]",4842.38,"{\""promo\"": \""15%\""}",90674,1,"""Europe""" +2024-03-07,73737,8396,"[\""Monitor\"", \""Phone\""]",4233.35,{},251619,1,"""Africa""" +2024-04-28,73738,9707,"[\""Charger\"", \""Headphones\""]",630.58,{},265336,0,"""Europe""" +2023-07-02,73739,166,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2672.9,"{\""promo\"": \""21%\""}",101050,1,"""North America""" +2024-07-19,73740,7210,"[\""Headphones\"", \""Phone\""]",209.5,"{\""promo\"": \""30%\""}",15562,1,"""Africa""" +2023-11-02,73741,9003,"[\""Charger\"", \""Phone\""]",4132.65,{},254046,1,"""Asia""" +2023-05-28,73742,1047,"[\""Wireless Mouse\""]",2317.37,{},1540,1,"""South America""" +2024-09-15,73743,4693,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3998.13,"{\""promo\"": \""25%\""}",16373,1,"""Asia""" +2023-10-26,73744,4204,"[\""Wireless Mouse\""]",1596.22,"{\"": \""14%\""}",92171,1,"""Asia""" +2023-03-03,73745,1728,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2216.61,"{\""seasonal\"": \""8%\""}",205506,0,"""Asia""" +2024-03-12,73746,3414,"[\""Laptop\"", \""Charger\""]",2240.43,{},113268,0,"""Asia""" +2023-05-14,73747,569,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4272.44,{},67602,0,"""South America""" +2023-04-25,73748,4558,"[\""Headphones\"", \""Tablet\""]",3738.44,{},268464,1,"""Asia""" +2023-09-14,73749,9204,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",75.1,"{\""promo\"": \""14%\""}",235916,0,"""North America""" +2024-05-11,73750,3751,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4399.34,{},180117,0,"""Africa""" +2023-07-24,73751,6512,"[\""Phone\""]",3228.01,{},181646,0,"""Africa""" +2024-05-16,73752,2987,"[\""Laptop\""]",1939.89,"{\""promo\"": \""24%\""}",28088,1,"""Asia""" +2023-05-19,73753,4311,"[\""Monitor\""]",848.39,{},244077,0,"""Europe""" +2024-01-10,73754,3186,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",287.7,{},181563,0,"""North America""" +2024-01-08,73755,5919,"[\""Headphones\"", \""Keyboard\""]",3807.23,{},40636,0,"""Africa""" +2024-08-23,73756,9385,"[\""Keyboard\""]",2944.74,{},53953,0,"""South America""" +2023-12-03,73757,1501,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4615.43,"{\"": \""17%\""}",116213,0,"""Africa""" +2023-12-31,73758,6594,"[\""Laptop\"", \""Headphones\""]",2695.36,{},185434,0,"""North America""" +2024-05-27,73759,8928,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",781.94,"{\""loyalty\"": \""28%\""}",299718,0,"""North America""" +2023-01-27,73760,4852,"[\""Phone\""]",4893.69,{},218557,0,"""Europe""" +2023-04-27,73761,124,"[\""Phone\""]",806.45,{},167761,0,"""Africa""" +2023-02-19,73762,6690,"[\""Phone\"", \""Monitor\""]",2184.1,{},175373,0,"""Europe""" +2023-05-06,73763,9981,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1002.03,"{\""promo\"": \""25%\""}",252607,0,"""North America""" +2024-04-12,73764,1843,"[\""Wireless Mouse\""]",2962.6,{},151842,0,"""North America""" +2023-03-04,73765,7874,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2946.98,{},41586,0,"""Africa""" +2024-11-01,73766,902,"[\""Phone\"", \""Keyboard\""]",1512.0,{},117530,0,"""South America""" +2023-04-05,73767,4566,"[\""Charger\"", \""Tablet\""]",3958.2,"{\"": \""23%\""}",218964,1,"""Africa""" +2023-10-17,73768,2237,"[\""Phone\"", \""Wireless Mouse\""]",705.37,"{\""seasonal\"": \""12%\""}",209776,1,"""Africa""" +2024-06-25,73769,6025,"[\""Laptop\""]",4579.09,"{\""seasonal\"": \""17%\""}",126757,0,"""South America""" +2024-02-15,73770,9904,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2266.38,{},129670,0,"""Asia""" +2024-07-24,73771,4116,"[\""Monitor\""]",3296.31,"{\""loyalty\"": \""8%\""}",39358,0,"""Europe""" +2023-01-14,73772,5137,"[\""Headphones\""]",1484.37,"{\""promo\"": \""6%\""}",216124,1,"""North America""" +2024-11-22,73773,307,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3135.73,{},126219,1,"""Europe""" +2024-02-25,73774,8410,"[\""Wireless Mouse\"", \""Charger\""]",559.24,"{\""promo\"": \""27%\""}",14544,1,"""South America""" +2023-12-05,73775,8172,"[\""Tablet\""]",936.14,{},14839,1,"""South America""" +2023-11-28,73776,8184,"[\""Headphones\""]",4626.05,{},179074,1,"""Asia""" +2024-09-24,73777,4874,"[\""Charger\"", \""Keyboard\""]",3572.1,{},233430,0,"""Africa""" +2024-09-19,73778,2540,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3322.41,"{\""promo\"": \""10%\""}",64956,1,"""South America""" +2023-08-23,73779,7307,"[\""Monitor\"", \""Keyboard\""]",3396.73,{},25976,0,"""North America""" +2024-12-05,73780,3213,"[\""Keyboard\"", \""Phone\""]",3416.9,{},259086,1,"""Asia""" +2023-01-10,73781,9026,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3286.52,"{\""promo\"": \""7%\""}",113161,0,"""South America""" +2024-11-12,73782,9090,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2154.88,"{\"": \""25%\""}",32132,1,"""Asia""" +2023-06-22,73783,53,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3096.23,{},151727,1,"""South America""" +2023-06-08,73784,6861,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4715.29,{},107475,1,"""North America""" +2024-12-28,73785,2814,"[\""Keyboard\"", \""Monitor\""]",2660.25,"{\""seasonal\"": \""15%\""}",260199,0,"""Africa""" +2024-05-27,73786,6330,"[\""Charger\"", \""Phone\""]",644.52,"{\""seasonal\"": \""19%\""}",285855,1,"""Africa""" +2023-12-11,73787,5918,"[\""Laptop\"", \""Wireless Mouse\""]",3409.25,"{\""seasonal\"": \""29%\""}",162160,0,"""South America""" +2023-08-07,73788,9465,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2108.28,"{\""promo\"": \""10%\""}",263528,1,"""Africa""" +2024-06-24,73789,774,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3981.95,"{\""loyalty\"": \""29%\""}",69065,1,"""Asia""" +2024-08-28,73790,1383,"[\""Keyboard\"", \""Monitor\""]",1407.8,{},127162,0,"""Europe""" +2024-12-04,73791,2238,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3236.55,"{\""seasonal\"": \""6%\""}",280436,1,"""Asia""" +2024-04-26,73792,3246,"[\""Headphones\"", \""Charger\""]",2675.33,{},166609,1,"""North America""" +2024-05-01,73793,3773,"[\""Wireless Mouse\"", \""Keyboard\""]",166.34,"{\"": \""10%\""}",37727,1,"""South America""" +2023-05-05,73794,8209,"[\""Charger\""]",4844.12,"{\""loyalty\"": \""13%\""}",232989,0,"""Africa""" +2023-10-28,73795,1891,"[\""Keyboard\""]",261.69,{},168751,0,"""South America""" +2024-07-19,73796,9133,"[\""Headphones\""]",3988.24,"{\""promo\"": \""12%\""}",85352,0,"""North America""" +2023-01-16,73797,5797,"[\""Keyboard\"", \""Tablet\""]",983.9,"{\"": \""25%\""}",26117,1,"""Asia""" +2023-08-14,73798,5573,"[\""Tablet\"", \""Laptop\""]",2268.52,{},122450,1,"""Europe""" +2023-07-27,73799,6351,"[\""Monitor\""]",3665.43,"{\""promo\"": \""21%\""}",191024,0,"""North America""" +2024-09-17,73800,9069,"[\""Tablet\""]",351.37,{},102226,1,"""North America""" +2024-01-03,73801,9470,"[\""Laptop\"", \""Monitor\""]",1891.62,{},285698,1,"""Europe""" +2024-12-16,73802,4658,"[\""Keyboard\"", \""Headphones\""]",1464.27,"{\"": \""25%\""}",33399,0,"""Europe""" +2023-08-28,73803,5596,"[\""Wireless Mouse\"", \""Charger\""]",117.33,"{\""promo\"": \""12%\""}",9635,1,"""Africa""" +2023-11-11,73804,3338,"[\""Laptop\"", \""Charger\""]",1118.19,"{\""seasonal\"": \""19%\""}",166857,1,"""North America""" +2024-03-31,73805,9818,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3564.7,"{\""loyalty\"": \""27%\""}",60922,0,"""Asia""" +2023-09-19,73806,6159,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2016.67,"{\"": \""12%\""}",138515,1,"""Africa""" +2024-10-13,73807,204,"[\""Wireless Mouse\"", \""Phone\""]",2684.62,"{\"": \""22%\""}",35522,0,"""North America""" +2023-09-18,73808,9012,"[\""Laptop\""]",1219.89,"{\""promo\"": \""15%\""}",67294,0,"""South America""" +2023-08-25,73809,2685,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2015.28,"{\""promo\"": \""12%\""}",168716,1,"""Africa""" +2023-07-17,73810,5709,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2720.34,"{\""promo\"": \""23%\""}",71096,0,"""North America""" +2024-02-21,73811,650,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",971.76,{},214967,1,"""North America""" +2023-02-27,73812,586,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1822.49,"{\"": \""23%\""}",221966,1,"""Europe""" +2023-03-27,73813,2226,"[\""Monitor\""]",2809.71,{},8844,0,"""Africa""" +2023-05-10,73814,6392,"[\""Laptop\""]",3669.1,"{\"": \""14%\""}",13845,1,"""Africa""" +2023-07-26,73815,8630,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1191.06,"{\""seasonal\"": \""21%\""}",259623,0,"""North America""" +2024-09-17,73816,4013,"[\""Headphones\""]",866.87,"{\""promo\"": \""14%\""}",18500,1,"""Europe""" +2023-08-01,73817,2369,"[\""Phone\"", \""Charger\""]",3744.33,{},174667,0,"""South America""" +2023-12-16,73818,9348,"[\""Phone\""]",3034.49,"{\""loyalty\"": \""11%\""}",71367,0,"""Europe""" +2024-10-06,73819,2339,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1619.11,{},182477,1,"""South America""" +2023-06-28,73820,3681,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1813.56,{},176036,1,"""South America""" +2023-01-16,73821,5222,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",596.53,"{\"": \""24%\""}",269777,0,"""Europe""" +2024-12-10,73822,990,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3816.95,"{\""promo\"": \""12%\""}",56636,1,"""Europe""" +2024-06-17,73823,1673,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4348.36,"{\""seasonal\"": \""30%\""}",281084,0,"""Asia""" +2023-06-19,73824,8829,"[\""Charger\""]",704.5,"{\""promo\"": \""23%\""}",227852,1,"""Africa""" +2023-07-25,73825,3952,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1462.28,"{\"": \""9%\""}",135318,1,"""South America""" +2023-06-10,73826,5776,"[\""Wireless Mouse\""]",2167.64,"{\"": \""6%\""}",117504,0,"""Asia""" +2023-01-24,73827,8746,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",501.32,{},197043,0,"""Africa""" +2023-05-23,73828,379,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2849.53,"{\""loyalty\"": \""17%\""}",298021,0,"""South America""" +2024-02-24,73829,1165,"[\""Headphones\""]",2670.13,"{\""loyalty\"": \""16%\""}",275131,0,"""Africa""" +2024-02-17,73830,2308,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1958.71,{},176133,0,"""Africa""" +2024-12-03,73831,8646,"[\""Charger\""]",4140.54,"{\"": \""20%\""}",25264,1,"""Africa""" +2024-03-11,73832,1882,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4749.68,{},181735,1,"""North America""" +2024-03-09,73833,1480,"[\""Wireless Mouse\""]",3501.25,{},235163,1,"""Asia""" +2024-08-16,73834,7285,"[\""Tablet\"", \""Headphones\""]",2107.98,"{\""promo\"": \""7%\""}",176180,1,"""North America""" +2023-04-17,73835,7712,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3732.95,{},204810,0,"""Asia""" +2024-07-28,73836,9912,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1906.38,"{\""promo\"": \""18%\""}",235492,1,"""South America""" +2024-03-04,73837,6605,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",746.59,"{\"": \""25%\""}",158769,1,"""Europe""" +2023-06-28,73838,1679,"[\""Headphones\"", \""Monitor\""]",3097.2,"{\"": \""10%\""}",223835,1,"""South America""" +2023-06-13,73839,2685,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3207.12,"{\"": \""27%\""}",223622,1,"""Africa""" +2024-03-08,73840,6247,"[\""Monitor\""]",3854.81,{},125846,0,"""Asia""" +2023-08-03,73841,7813,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",983.01,"{\""seasonal\"": \""23%\""}",210774,0,"""Europe""" +2024-09-18,73842,9048,"[\""Charger\""]",3961.28,{},185994,0,"""North America""" +2024-06-10,73843,9534,"[\""Phone\"", \""Headphones\""]",4107.99,{},106461,1,"""South America""" +2023-08-04,73844,537,"[\""Tablet\"", \""Phone\""]",2685.44,"{\"": \""23%\""}",165995,1,"""North America""" +2023-02-26,73845,5073,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4874.61,{},179621,1,"""South America""" +2023-10-30,73846,6160,"[\""Tablet\""]",3945.57,"{\""promo\"": \""8%\""}",3622,1,"""Africa""" +2023-04-02,73847,3813,"[\""Headphones\"", \""Tablet\""]",4410.91,"{\""seasonal\"": \""9%\""}",182194,0,"""North America""" +2023-05-24,73848,8202,"[\""Keyboard\""]",4275.32,"{\""seasonal\"": \""18%\""}",44016,1,"""South America""" +2024-07-07,73849,6940,"[\""Monitor\""]",4528.15,{},257787,1,"""South America""" +2024-06-28,73850,6429,"[\""Charger\""]",1146.11,"{\"": \""23%\""}",134569,0,"""Asia""" +2023-09-05,73851,8194,"[\""Monitor\""]",2830.29,"{\""seasonal\"": \""18%\""}",215038,1,"""South America""" +2024-11-06,73852,1311,"[\""Headphones\""]",1798.45,{},147111,0,"""North America""" +2023-09-06,73853,3053,"[\""Wireless Mouse\""]",3613.7,{},145338,1,"""Africa""" +2023-08-28,73854,2903,"[\""Monitor\""]",409.74,"{\""seasonal\"": \""20%\""}",225601,0,"""South America""" +2024-09-03,73855,589,"[\""Phone\"", \""Keyboard\""]",2343.94,{},160468,0,"""Europe""" +2023-01-13,73856,3594,"[\""Wireless Mouse\"", \""Monitor\""]",2189.86,"{\"": \""11%\""}",47584,0,"""South America""" +2023-05-10,73857,3687,"[\""Laptop\"", \""Charger\""]",70.7,"{\"": \""10%\""}",256614,1,"""South America""" +2023-01-13,73858,6827,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3096.3,"{\""loyalty\"": \""16%\""}",70249,1,"""Europe""" +2024-05-31,73859,3582,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4206.83,{},98650,1,"""Europe""" +2023-09-27,73860,1698,"[\""Wireless Mouse\"", \""Laptop\""]",3450.48,{},273287,0,"""North America""" +2023-01-02,73861,1165,"[\""Keyboard\""]",2173.92,"{\"": \""8%\""}",262374,0,"""South America""" +2023-08-28,73862,3082,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3655.7,{},243275,0,"""Europe""" +2024-08-26,73863,9924,"[\""Charger\"", \""Monitor\""]",1545.58,{},93000,0,"""Africa""" +2024-12-22,73864,1840,"[\""Phone\"", \""Wireless Mouse\""]",3213.19,"{\""seasonal\"": \""10%\""}",154405,1,"""Europe""" +2024-12-03,73865,8958,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1269.71,{},140391,1,"""North America""" +2024-08-20,73866,8380,"[\""Keyboard\"", \""Phone\""]",1578.39,"{\""seasonal\"": \""6%\""}",189155,0,"""Africa""" +2024-01-30,73867,9256,"[\""Phone\"", \""Charger\""]",545.86,{},112631,1,"""Asia""" +2023-01-21,73868,6693,"[\""Laptop\"", \""Phone\""]",3865.32,{},105025,1,"""Africa""" +2023-09-30,73869,1845,"[\""Monitor\"", \""Headphones\""]",2112.95,"{\""seasonal\"": \""10%\""}",209786,0,"""South America""" +2024-02-09,73870,6213,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4567.53,{},129774,1,"""North America""" +2024-01-14,73871,1562,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1147.13,"{\""promo\"": \""28%\""}",138907,0,"""Europe""" +2023-11-05,73872,9967,"[\""Keyboard\""]",300.08,{},112433,0,"""South America""" +2023-09-01,73873,2184,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3351.98,"{\""promo\"": \""29%\""}",113066,0,"""North America""" +2023-10-09,73874,2354,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2978.33,"{\""seasonal\"": \""26%\""}",131502,1,"""North America""" +2023-10-20,73875,6780,"[\""Charger\""]",4823.97,"{\""seasonal\"": \""29%\""}",267855,1,"""South America""" +2024-11-06,73876,4310,"[\""Headphones\""]",4682.48,{},91338,1,"""Europe""" +2024-06-24,73877,7293,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2007.51,"{\""loyalty\"": \""24%\""}",96259,0,"""Africa""" +2023-05-27,73878,2131,"[\""Keyboard\""]",2338.57,"{\"": \""5%\""}",104369,1,"""Europe""" +2023-07-03,73879,5257,"[\""Wireless Mouse\""]",887.65,{},274196,0,"""Africa""" +2024-01-28,73880,5815,"[\""Headphones\"", \""Tablet\""]",1626.86,"{\""loyalty\"": \""16%\""}",290773,1,"""Asia""" +2023-01-03,73881,4973,"[\""Phone\"", \""Headphones\""]",3489.48,{},46999,1,"""North America""" +2024-12-05,73882,2440,"[\""Charger\""]",552.94,"{\""promo\"": \""25%\""}",51755,1,"""South America""" +2024-05-22,73883,6140,"[\""Charger\"", \""Laptop\""]",4434.32,{},152671,1,"""Europe""" +2024-04-20,73884,822,"[\""Wireless Mouse\"", \""Headphones\""]",178.54,"{\"": \""15%\""}",19185,0,"""Asia""" +2024-07-06,73885,2005,"[\""Charger\""]",1958.72,{},16924,1,"""Africa""" +2023-03-16,73886,8819,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2319.13,"{\""seasonal\"": \""14%\""}",95081,0,"""Europe""" +2024-04-19,73887,3898,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4135.5,{},188816,1,"""Europe""" +2024-05-22,73888,6007,"[\""Tablet\"", \""Monitor\""]",1781.99,{},173153,0,"""South America""" +2024-11-15,73889,6199,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4242.88,{},197101,0,"""Asia""" +2024-11-09,73890,7220,"[\""Phone\""]",1902.37,"{\""seasonal\"": \""20%\""}",53083,1,"""North America""" +2024-05-27,73891,9966,"[\""Keyboard\"", \""Charger\""]",1149.4,{},248355,0,"""Europe""" +2024-09-08,73892,3934,"[\""Monitor\""]",857.36,"{\""promo\"": \""11%\""}",230125,0,"""Europe""" +2023-01-21,73893,6380,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3281.66,{},224392,1,"""South America""" +2024-02-10,73894,19,"[\""Laptop\""]",134.79,"{\""seasonal\"": \""5%\""}",125762,1,"""Asia""" +2023-07-05,73895,8775,"[\""Headphones\""]",2746.43,{},259802,1,"""Africa""" +2024-09-20,73896,7971,"[\""Keyboard\""]",1451.04,{},266215,1,"""South America""" +2023-08-26,73897,8336,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3836.31,"{\""seasonal\"": \""14%\""}",205398,1,"""North America""" +2024-07-13,73898,4742,"[\""Phone\""]",4624.1,"{\""promo\"": \""12%\""}",271651,1,"""Africa""" +2024-11-15,73899,9390,"[\""Phone\""]",3232.24,"{\""loyalty\"": \""30%\""}",92691,1,"""Africa""" +2023-09-18,73900,9462,"[\""Monitor\""]",3048.46,"{\""promo\"": \""23%\""}",59507,0,"""Europe""" +2024-05-20,73901,5379,"[\""Charger\""]",4671.0,{},267972,1,"""Europe""" +2024-08-24,73902,2705,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4575.23,{},261885,1,"""Europe""" +2023-06-12,73903,4911,"[\""Wireless Mouse\"", \""Laptop\""]",1821.92,"{\""loyalty\"": \""7%\""}",83054,0,"""South America""" +2024-06-01,73904,1846,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",578.53,{},242175,0,"""Asia""" +2023-08-16,73905,6361,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3049.77,"{\""seasonal\"": \""7%\""}",22848,1,"""Europe""" +2023-12-15,73906,2247,"[\""Phone\"", \""Tablet\""]",3479.31,{},270439,1,"""Europe""" +2024-10-03,73907,2253,"[\""Keyboard\"", \""Wireless Mouse\""]",1251.36,{},278935,1,"""North America""" +2024-06-08,73908,1205,"[\""Wireless Mouse\""]",2866.94,"{\"": \""30%\""}",61829,1,"""North America""" +2023-08-03,73909,4445,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4585.13,"{\"": \""29%\""}",239467,1,"""Asia""" +2024-09-17,73910,1666,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4327.57,"{\"": \""5%\""}",59033,0,"""South America""" +2023-07-02,73911,3799,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4485.56,"{\""loyalty\"": \""17%\""}",134573,1,"""South America""" +2024-10-06,73912,359,"[\""Laptop\""]",100.35,"{\""seasonal\"": \""27%\""}",102518,0,"""South America""" +2024-02-18,73913,4258,"[\""Phone\""]",3424.77,"{\""promo\"": \""5%\""}",19106,0,"""Europe""" +2023-05-03,73914,8023,"[\""Charger\"", \""Phone\""]",252.78,{},205405,0,"""North America""" +2023-05-31,73915,4178,"[\""Monitor\""]",2082.87,{},147609,0,"""Asia""" +2023-07-29,73916,6547,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4646.24,"{\"": \""8%\""}",23716,1,"""Europe""" +2023-12-18,73917,9759,"[\""Wireless Mouse\""]",2673.01,"{\""loyalty\"": \""17%\""}",102004,1,"""Africa""" +2024-05-21,73918,1010,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2413.77,{},253525,0,"""Europe""" +2023-10-22,73919,8280,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1099.09,{},249372,0,"""Africa""" +2024-03-02,73920,8549,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",137.19,{},187464,1,"""Africa""" +2023-09-21,73921,3788,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2228.44,"{\""seasonal\"": \""28%\""}",65597,0,"""Europe""" +2024-02-08,73922,6881,"[\""Wireless Mouse\"", \""Tablet\""]",1566.43,{},98328,1,"""North America""" +2023-07-04,73923,1154,"[\""Phone\"", \""Tablet\""]",1631.12,{},105509,0,"""South America""" +2024-02-11,73924,9861,"[\""Phone\"", \""Charger\""]",3175.81,{},200250,1,"""South America""" +2024-10-15,73925,6475,"[\""Headphones\"", \""Phone\""]",2496.72,"{\""seasonal\"": \""20%\""}",174644,1,"""Asia""" +2023-06-06,73926,411,"[\""Phone\"", \""Headphones\""]",228.42,"{\""seasonal\"": \""5%\""}",12786,0,"""South America""" +2023-11-18,73927,3188,"[\""Keyboard\"", \""Headphones\""]",1725.65,{},132909,0,"""North America""" +2024-05-16,73928,2107,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",227.36,"{\""loyalty\"": \""22%\""}",50812,1,"""North America""" +2023-02-14,73929,2109,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4595.95,"{\""loyalty\"": \""23%\""}",177707,1,"""North America""" +2023-08-07,73930,7464,"[\""Keyboard\"", \""Tablet\""]",2380.98,{},251102,1,"""Africa""" +2024-09-04,73931,9157,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4374.24,{},195037,1,"""Africa""" +2024-02-07,73932,4265,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2197.28,"{\"": \""19%\""}",104313,1,"""South America""" +2024-06-05,73933,1833,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2630.41,{},70908,0,"""North America""" +2023-11-18,73934,969,"[\""Keyboard\"", \""Monitor\""]",4635.42,{},229133,0,"""North America""" +2023-11-04,73935,7425,"[\""Laptop\""]",3988.21,{},48957,1,"""North America""" +2023-08-28,73936,2841,"[\""Charger\"", \""Wireless Mouse\""]",905.14,{},86484,1,"""Asia""" +2024-11-30,73937,7090,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",63.28,"{\""promo\"": \""9%\""}",8955,0,"""Asia""" +2023-08-08,73938,7805,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",651.32,{},244219,1,"""North America""" +2023-03-19,73939,4187,"[\""Charger\"", \""Laptop\""]",2920.24,{},48032,0,"""South America""" +2024-06-04,73940,3452,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4518.56,"{\"": \""16%\""}",118795,0,"""Asia""" +2023-12-26,73941,8206,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2214.21,"{\"": \""8%\""}",138937,0,"""Africa""" +2023-12-05,73942,3617,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4143.8,{},128910,0,"""Africa""" +2024-09-19,73943,7333,"[\""Keyboard\"", \""Headphones\""]",1943.93,{},142529,1,"""Europe""" +2023-04-26,73944,493,"[\""Keyboard\"", \""Headphones\""]",732.04,{},216538,0,"""Europe""" +2024-11-12,73945,5828,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3081.98,"{\""loyalty\"": \""12%\""}",51580,1,"""Asia""" +2024-04-30,73946,6465,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3522.31,"{\"": \""16%\""}",91894,1,"""South America""" +2024-07-26,73947,8366,"[\""Keyboard\""]",4906.54,"{\"": \""9%\""}",213319,0,"""South America""" +2023-12-19,73948,2700,"[\""Phone\"", \""Keyboard\""]",474.67,"{\""loyalty\"": \""28%\""}",204678,1,"""Asia""" +2024-07-05,73949,4485,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4045.61,{},10892,1,"""South America""" +2024-08-13,73950,7782,"[\""Laptop\"", \""Charger\""]",3834.32,"{\""loyalty\"": \""21%\""}",21184,0,"""South America""" +2024-07-28,73951,1299,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1475.58,{},273634,0,"""South America""" +2024-09-18,73952,5283,"[\""Keyboard\"", \""Laptop\""]",3718.32,"{\""seasonal\"": \""23%\""}",134643,0,"""South America""" +2023-02-17,73953,3838,"[\""Headphones\""]",3358.83,"{\"": \""13%\""}",109766,0,"""North America""" +2023-11-15,73954,8364,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",311.26,"{\"": \""19%\""}",150244,1,"""Europe""" +2023-07-28,73955,541,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",745.46,{},283022,1,"""North America""" +2024-10-19,73956,7075,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2310.03,"{\""loyalty\"": \""6%\""}",260926,1,"""Europe""" +2023-05-25,73957,9124,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1557.95,"{\""promo\"": \""29%\""}",159657,1,"""Europe""" +2023-07-17,73958,7099,"[\""Wireless Mouse\"", \""Headphones\""]",1045.76,{},271825,0,"""North America""" +2024-06-13,73959,383,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4874.75,"{\"": \""5%\""}",231376,0,"""North America""" +2023-05-01,73960,2675,"[\""Keyboard\"", \""Headphones\""]",3723.72,"{\""promo\"": \""23%\""}",36322,1,"""South America""" +2023-08-14,73961,4105,"[\""Phone\"", \""Tablet\""]",3056.24,{},10706,1,"""Asia""" +2023-12-30,73962,2093,"[\""Monitor\""]",4708.2,"{\""seasonal\"": \""6%\""}",220534,0,"""Europe""" +2023-06-20,73963,2563,"[\""Keyboard\""]",4986.19,{},192713,0,"""Asia""" +2023-12-25,73964,3336,"[\""Keyboard\""]",168.65,{},129907,0,"""Asia""" +2024-06-11,73965,5411,"[\""Keyboard\"", \""Monitor\""]",4298.8,{},206295,1,"""Africa""" +2024-03-18,73966,2462,"[\""Phone\"", \""Monitor\""]",3640.77,"{\""seasonal\"": \""9%\""}",139477,1,"""South America""" +2024-02-12,73967,6989,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1193.64,{},1917,0,"""Asia""" +2024-10-20,73968,9649,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2604.9,{},291288,1,"""South America""" +2024-11-04,73969,6486,"[\""Headphones\"", \""Phone\""]",813.88,"{\"": \""15%\""}",21548,1,"""Africa""" +2023-10-30,73970,8076,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3095.47,"{\""loyalty\"": \""24%\""}",256086,1,"""Europe""" +2024-08-05,73971,9038,"[\""Headphones\"", \""Tablet\""]",4454.45,{},60168,1,"""Africa""" +2024-10-19,73972,6702,"[\""Keyboard\""]",703.11,"{\""seasonal\"": \""19%\""}",101804,1,"""North America""" +2023-10-31,73973,5705,"[\""Headphones\"", \""Phone\"", \""Charger\""]",191.61,{},262348,0,"""North America""" +2023-10-16,73974,6029,"[\""Headphones\"", \""Laptop\""]",4591.73,{},143201,1,"""Europe""" +2024-06-10,73975,3878,"[\""Laptop\""]",4295.48,{},205005,0,"""Africa""" +2024-07-11,73976,9359,"[\""Wireless Mouse\""]",231.93,{},225038,0,"""Europe""" +2024-04-15,73977,5726,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4040.42,{},260534,0,"""Asia""" +2023-12-17,73978,7044,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4448.31,{},293862,1,"""Africa""" +2023-01-10,73979,4837,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2290.79,"{\""promo\"": \""12%\""}",65254,1,"""South America""" +2023-10-31,73980,8266,"[\""Phone\"", \""Headphones\""]",3435.57,{},38204,0,"""Africa""" +2024-09-05,73981,7680,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3821.01,{},65671,1,"""South America""" +2024-05-07,73982,2208,"[\""Wireless Mouse\"", \""Phone\""]",709.04,"{\"": \""30%\""}",182493,0,"""Asia""" +2023-07-04,73983,9120,"[\""Monitor\"", \""Tablet\""]",2360.42,{},20732,1,"""North America""" +2024-11-22,73984,4650,"[\""Charger\"", \""Keyboard\""]",807.72,"{\""promo\"": \""11%\""}",78982,0,"""Asia""" +2023-05-25,73985,8286,"[\""Wireless Mouse\""]",3053.06,"{\"": \""11%\""}",198302,0,"""Asia""" +2024-06-09,73986,5453,"[\""Phone\"", \""Keyboard\""]",2828.28,{},128099,1,"""Europe""" +2024-02-09,73987,3709,"[\""Monitor\"", \""Phone\""]",218.34,{},243759,0,"""South America""" +2024-11-11,73988,6579,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1272.34,"{\""seasonal\"": \""14%\""}",25724,0,"""Europe""" +2023-09-13,73989,4585,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1739.92,{},92351,1,"""Africa""" +2023-07-28,73990,3617,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4864.12,"{\""seasonal\"": \""21%\""}",107096,1,"""South America""" +2023-09-19,73991,5497,"[\""Tablet\"", \""Wireless Mouse\""]",1029.81,{},200041,1,"""North America""" +2023-05-06,73992,269,"[\""Headphones\""]",1072.41,"{\""promo\"": \""22%\""}",270499,1,"""Asia""" +2024-08-23,73993,1409,"[\""Laptop\"", \""Keyboard\""]",1939.13,{},50029,1,"""South America""" +2024-06-27,73994,5031,"[\""Keyboard\""]",742.57,"{\""seasonal\"": \""5%\""}",249904,1,"""Europe""" +2024-08-09,73995,9572,"[\""Charger\"", \""Monitor\""]",4621.08,"{\""loyalty\"": \""10%\""}",199863,0,"""South America""" +2023-08-05,73996,8676,"[\""Keyboard\""]",4884.79,{},148586,0,"""Asia""" +2023-11-13,73997,2233,"[\""Wireless Mouse\"", \""Headphones\""]",3179.38,"{\""loyalty\"": \""30%\""}",281649,1,"""Africa""" +2024-01-12,73998,7490,"[\""Headphones\""]",4019.03,"{\"": \""14%\""}",99063,0,"""Africa""" +2023-03-16,73999,8783,"[\""Wireless Mouse\""]",2670.92,{},242077,0,"""Asia""" +2024-04-01,74000,2398,"[\""Charger\"", \""Wireless Mouse\""]",4442.89,"{\""loyalty\"": \""5%\""}",122373,0,"""North America""" +2024-11-11,74001,7707,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3185.12,{},286420,1,"""Africa""" +2023-11-11,74002,5854,"[\""Phone\""]",3422.65,{},10657,1,"""North America""" +2023-07-30,74003,2257,"[\""Laptop\""]",3203.57,"{\"": \""24%\""}",44653,0,"""North America""" +2024-11-16,74004,8274,"[\""Phone\"", \""Laptop\""]",659.74,{},136683,1,"""Africa""" +2024-08-11,74005,456,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",450.76,"{\"": \""12%\""}",79330,0,"""Africa""" +2023-04-19,74006,3013,"[\""Phone\"", \""Tablet\""]",3496.82,{},248932,0,"""Africa""" +2024-04-26,74007,1740,"[\""Laptop\"", \""Headphones\""]",4615.82,{},13559,1,"""Africa""" +2023-05-22,74008,9308,"[\""Tablet\""]",4028.48,{},240206,0,"""Asia""" +2023-06-20,74009,5566,"[\""Laptop\""]",3451.33,{},213935,0,"""Asia""" +2024-02-02,74010,2424,"[\""Wireless Mouse\""]",1889.37,{},35485,0,"""Asia""" +2023-02-03,74011,3939,"[\""Tablet\"", \""Keyboard\""]",2634.7,{},237938,0,"""South America""" +2024-12-30,74012,6908,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3870.64,"{\"": \""7%\""}",198065,0,"""Asia""" +2023-09-24,74013,7908,"[\""Charger\"", \""Keyboard\""]",3450.9,{},13676,1,"""Africa""" +2024-11-30,74014,6954,"[\""Keyboard\""]",4490.64,{},74122,1,"""South America""" +2024-05-21,74015,2438,"[\""Keyboard\"", \""Charger\""]",4222.46,{},74875,1,"""Europe""" +2024-01-08,74016,2273,"[\""Tablet\""]",4152.53,{},91293,1,"""Africa""" +2023-06-10,74017,675,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2308.56,{},280546,1,"""Asia""" +2024-09-02,74018,5454,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",176.55,"{\""seasonal\"": \""23%\""}",137211,0,"""Europe""" +2024-12-31,74019,2849,"[\""Monitor\"", \""Headphones\""]",3868.45,{},192892,0,"""North America""" +2024-03-22,74020,7428,"[\""Headphones\"", \""Wireless Mouse\""]",4189.89,{},201827,0,"""Asia""" +2024-07-24,74021,9611,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2007.21,{},81580,1,"""North America""" +2024-05-06,74022,3014,"[\""Monitor\"", \""Keyboard\""]",4904.23,"{\""promo\"": \""5%\""}",7888,1,"""Africa""" +2024-08-08,74023,4461,"[\""Headphones\""]",3011.4,{},4164,0,"""Asia""" +2023-12-06,74024,2554,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1125.35,"{\""promo\"": \""7%\""}",27139,0,"""Europe""" +2024-10-31,74025,4757,"[\""Charger\"", \""Wireless Mouse\""]",4268.08,{},238239,1,"""South America""" +2023-12-15,74026,8453,"[\""Laptop\"", \""Wireless Mouse\""]",4669.33,{},42823,1,"""North America""" +2023-10-30,74027,5119,"[\""Charger\"", \""Tablet\""]",4366.68,{},237065,1,"""North America""" +2024-06-07,74028,8808,"[\""Tablet\""]",3007.49,{},28203,0,"""Europe""" +2024-05-10,74029,8334,"[\""Tablet\""]",4450.36,{},121475,0,"""Africa""" +2023-10-14,74030,9545,"[\""Wireless Mouse\"", \""Phone\""]",3963.37,{},173604,1,"""South America""" +2024-11-11,74031,668,"[\""Phone\"", \""Monitor\""]",2113.91,{},26946,1,"""Asia""" +2024-02-07,74032,383,"[\""Phone\""]",2012.17,"{\""seasonal\"": \""17%\""}",29145,1,"""Africa""" +2023-05-21,74033,1800,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4611.29,"{\""seasonal\"": \""28%\""}",80769,1,"""Europe""" +2024-03-23,74034,8358,"[\""Monitor\"", \""Laptop\""]",4760.77,"{\"": \""18%\""}",80502,1,"""South America""" +2023-04-20,74035,4968,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1334.67,"{\""loyalty\"": \""19%\""}",41372,0,"""Africa""" +2024-11-23,74036,8861,"[\""Phone\"", \""Wireless Mouse\""]",3627.42,{},250941,1,"""North America""" +2023-02-15,74037,8002,"[\""Laptop\""]",3739.01,{},257237,0,"""South America""" +2024-10-28,74038,5390,"[\""Headphones\""]",122.57,{},235422,1,"""South America""" +2024-01-01,74039,6176,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3871.05,"{\""promo\"": \""24%\""}",237726,1,"""Asia""" +2024-10-27,74040,6676,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1673.06,{},157430,1,"""Asia""" +2024-01-06,74041,1386,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3545.2,"{\""loyalty\"": \""8%\""}",277352,0,"""Asia""" +2023-12-31,74042,8040,"[\""Charger\"", \""Tablet\""]",788.09,{},183716,1,"""South America""" +2024-05-09,74043,9556,"[\""Wireless Mouse\"", \""Tablet\""]",1638.95,{},246576,0,"""Africa""" +2024-01-02,74044,6144,"[\""Tablet\"", \""Phone\""]",2387.75,{},258673,0,"""South America""" +2023-02-27,74045,6341,"[\""Wireless Mouse\"", \""Laptop\""]",1351.05,"{\"": \""16%\""}",287065,0,"""North America""" +2024-07-13,74046,1716,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3534.13,"{\""promo\"": \""25%\""}",17229,0,"""Africa""" +2024-08-28,74047,229,"[\""Tablet\"", \""Charger\""]",3012.51,"{\""seasonal\"": \""29%\""}",55029,1,"""Europe""" +2023-02-01,74048,1914,"[\""Wireless Mouse\"", \""Laptop\""]",3177.0,{},144465,0,"""Europe""" +2023-03-27,74049,6125,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3163.41,"{\"": \""30%\""}",170196,0,"""Africa""" +2024-02-24,74050,8766,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3601.75,"{\""promo\"": \""21%\""}",100245,0,"""Asia""" +2024-08-18,74051,4789,"[\""Laptop\""]",1785.7,{},101008,1,"""North America""" +2023-03-12,74052,9593,"[\""Wireless Mouse\"", \""Tablet\""]",4892.51,{},151138,1,"""South America""" +2023-09-22,74053,8525,"[\""Charger\"", \""Phone\""]",3706.45,{},149481,0,"""Africa""" +2024-06-03,74054,3882,"[\""Tablet\"", \""Phone\""]",2406.93,"{\""seasonal\"": \""16%\""}",26974,1,"""Africa""" +2023-04-27,74055,3516,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3288.81,"{\""loyalty\"": \""13%\""}",21518,0,"""Asia""" +2023-02-17,74056,5945,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3434.21,"{\""seasonal\"": \""11%\""}",180521,0,"""Asia""" +2023-04-09,74057,5409,"[\""Laptop\"", \""Charger\""]",2096.33,"{\"": \""23%\""}",106094,1,"""Africa""" +2023-05-07,74058,3455,"[\""Monitor\"", \""Charger\""]",4308.35,{},216746,0,"""Europe""" +2023-05-04,74059,1650,"[\""Monitor\"", \""Charger\""]",3136.47,"{\""loyalty\"": \""27%\""}",24739,1,"""Asia""" +2023-02-28,74060,354,"[\""Keyboard\"", \""Tablet\""]",1693.27,{},272324,0,"""Africa""" +2024-07-30,74061,2064,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3459.43,{},282383,0,"""Asia""" +2024-03-04,74062,5913,"[\""Monitor\""]",477.9,{},111636,0,"""Africa""" +2023-01-03,74063,5274,"[\""Wireless Mouse\""]",906.31,{},121466,0,"""North America""" +2024-01-01,74064,3968,"[\""Headphones\""]",1016.42,{},268258,1,"""Europe""" +2023-08-13,74065,1149,"[\""Keyboard\"", \""Laptop\""]",647.61,{},104339,1,"""North America""" +2023-01-08,74066,9781,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1839.16,"{\""loyalty\"": \""8%\""}",66337,1,"""Asia""" +2023-08-02,74067,4274,"[\""Keyboard\""]",162.95,"{\""seasonal\"": \""24%\""}",249602,0,"""Asia""" +2023-08-07,74068,4244,"[\""Monitor\"", \""Laptop\""]",3230.01,"{\""loyalty\"": \""5%\""}",150504,0,"""South America""" +2024-08-15,74069,8470,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4865.42,{},273092,0,"""Africa""" +2023-12-19,74070,5268,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4199.03,"{\"": \""15%\""}",287112,1,"""North America""" +2023-02-04,74071,634,"[\""Tablet\"", \""Wireless Mouse\""]",530.85,"{\""seasonal\"": \""10%\""}",4461,1,"""North America""" +2024-04-16,74072,1803,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",241.58,{},127400,0,"""South America""" +2023-03-18,74073,2922,"[\""Keyboard\"", \""Charger\""]",2277.24,{},35713,1,"""North America""" +2023-02-06,74074,4130,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2196.73,"{\"": \""8%\""}",51299,1,"""South America""" +2024-06-06,74075,189,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3555.16,"{\""loyalty\"": \""27%\""}",84075,1,"""Europe""" +2023-12-02,74076,9974,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3850.21,"{\""loyalty\"": \""17%\""}",173997,1,"""Asia""" +2024-04-25,74077,6070,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3421.89,{},95798,0,"""Asia""" +2023-03-26,74078,3026,"[\""Headphones\"", \""Wireless Mouse\""]",4738.7,"{\"": \""14%\""}",164292,0,"""Africa""" +2023-03-18,74079,3669,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4898.84,"{\""loyalty\"": \""24%\""}",36980,1,"""Europe""" +2023-11-04,74080,171,"[\""Charger\""]",536.07,{},79246,1,"""South America""" +2023-08-07,74081,2449,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4699.99,{},161787,0,"""Asia""" +2023-07-26,74082,1493,"[\""Headphones\"", \""Wireless Mouse\""]",259.62,"{\""promo\"": \""13%\""}",94512,0,"""Europe""" +2023-08-18,74083,488,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1288.36,"{\""seasonal\"": \""28%\""}",123608,1,"""Asia""" +2024-12-20,74084,3878,"[\""Wireless Mouse\"", \""Laptop\""]",656.25,"{\""loyalty\"": \""11%\""}",220839,0,"""Europe""" +2023-11-17,74085,6326,"[\""Charger\"", \""Keyboard\""]",774.17,"{\""loyalty\"": \""27%\""}",162032,0,"""Europe""" +2023-11-09,74086,9535,"[\""Phone\""]",2603.88,{},124730,0,"""Europe""" +2023-04-16,74087,9316,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2455.12,{},32026,1,"""North America""" +2023-08-23,74088,5577,"[\""Laptop\""]",2934.91,{},279714,0,"""North America""" +2023-08-14,74089,177,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",144.03,"{\""seasonal\"": \""17%\""}",119445,0,"""North America""" +2023-02-12,74090,8955,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4421.32,{},22267,1,"""Asia""" +2023-10-15,74091,6156,"[\""Keyboard\"", \""Monitor\""]",1301.07,"{\""loyalty\"": \""7%\""}",151269,1,"""Europe""" +2024-04-23,74092,1301,"[\""Phone\""]",3032.54,"{\"": \""10%\""}",190186,1,"""South America""" +2024-04-30,74093,1393,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",969.05,{},207933,0,"""North America""" +2024-07-16,74094,5916,"[\""Monitor\""]",4400.91,{},170151,0,"""South America""" +2023-09-11,74095,8305,"[\""Phone\"", \""Laptop\""]",1006.72,{},187142,0,"""Africa""" +2023-08-22,74096,7148,"[\""Monitor\""]",4753.11,{},12464,1,"""Asia""" +2023-11-05,74097,1797,"[\""Tablet\"", \""Charger\""]",422.38,{},161916,1,"""Europe""" +2023-02-07,74098,5170,"[\""Wireless Mouse\""]",1982.12,{},90337,1,"""Europe""" +2024-03-12,74099,1232,"[\""Tablet\""]",3693.86,{},50548,0,"""Africa""" +2024-09-26,74100,5187,"[\""Wireless Mouse\"", \""Laptop\""]",3324.55,{},111041,0,"""North America""" +2023-11-30,74101,2368,"[\""Laptop\""]",4072.99,{},235419,0,"""South America""" +2023-07-28,74102,2264,"[\""Laptop\"", \""Monitor\""]",161.65,{},192877,1,"""North America""" +2023-12-16,74103,5977,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4471.99,{},186617,0,"""Europe""" +2024-12-05,74104,207,"[\""Keyboard\""]",2122.03,"{\""promo\"": \""10%\""}",145689,1,"""Asia""" +2024-12-31,74105,6877,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",111.84,{},195343,1,"""Asia""" +2024-11-17,74106,7704,"[\""Keyboard\""]",1560.67,"{\""seasonal\"": \""24%\""}",101032,1,"""North America""" +2023-12-24,74107,1868,"[\""Keyboard\"", \""Tablet\""]",3292.36,{},225393,1,"""Asia""" +2024-01-07,74108,9567,"[\""Charger\"", \""Laptop\""]",1238.48,{},264626,1,"""North America""" +2023-12-31,74109,7988,"[\""Phone\""]",3959.28,{},248526,0,"""Africa""" +2023-04-15,74110,8325,"[\""Monitor\""]",2701.98,{},125455,1,"""South America""" +2023-01-05,74111,2420,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3979.98,"{\""promo\"": \""20%\""}",275771,0,"""Asia""" +2023-12-09,74112,26,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3491.72,{},135942,0,"""South America""" +2024-07-26,74113,2242,"[\""Tablet\"", \""Charger\""]",1219.4,"{\""seasonal\"": \""19%\""}",288826,1,"""Africa""" +2023-11-08,74114,2349,"[\""Charger\""]",4962.01,"{\""promo\"": \""27%\""}",60165,0,"""South America""" +2024-03-22,74115,7021,"[\""Wireless Mouse\""]",1841.06,{},87983,1,"""Europe""" +2024-09-22,74116,9074,"[\""Phone\"", \""Headphones\""]",2019.46,{},22650,0,"""South America""" +2024-04-17,74117,8975,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4402.99,"{\"": \""14%\""}",256036,1,"""Europe""" +2024-01-20,74118,7264,"[\""Laptop\"", \""Wireless Mouse\""]",417.19,"{\"": \""21%\""}",40311,0,"""South America""" +2023-09-14,74119,3427,"[\""Phone\"", \""Wireless Mouse\""]",4727.21,{},196666,0,"""South America""" +2024-06-02,74120,584,"[\""Headphones\"", \""Keyboard\""]",4008.31,{},43341,0,"""North America""" +2023-05-01,74121,1746,"[\""Headphones\""]",2102.1,{},189797,1,"""Africa""" +2023-01-15,74122,2443,"[\""Monitor\""]",4357.72,"{\""seasonal\"": \""5%\""}",243715,1,"""South America""" +2024-11-02,74123,991,"[\""Headphones\""]",1814.16,{},139158,1,"""Asia""" +2024-03-09,74124,3271,"[\""Charger\""]",272.99,{},102485,0,"""North America""" +2024-11-06,74125,1856,"[\""Headphones\""]",4372.18,"{\""seasonal\"": \""22%\""}",271187,1,"""Europe""" +2024-09-04,74126,2406,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4439.89,"{\""loyalty\"": \""14%\""}",30078,1,"""South America""" +2024-02-25,74127,9334,"[\""Headphones\"", \""Wireless Mouse\""]",2841.29,"{\"": \""30%\""}",86932,1,"""South America""" +2024-01-10,74128,1545,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3851.79,"{\""seasonal\"": \""28%\""}",252538,1,"""North America""" +2024-04-10,74129,5032,"[\""Keyboard\""]",62.9,"{\""promo\"": \""23%\""}",108508,0,"""North America""" +2023-12-25,74130,6744,"[\""Phone\""]",3129.53,"{\""seasonal\"": \""13%\""}",129174,1,"""Asia""" +2024-04-04,74131,152,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",242.24,{},249258,0,"""Asia""" +2024-02-19,74132,9317,"[\""Tablet\""]",2502.56,"{\""promo\"": \""6%\""}",99536,0,"""Europe""" +2023-06-25,74133,2042,"[\""Charger\"", \""Keyboard\""]",1618.93,"{\"": \""13%\""}",299378,1,"""Africa""" +2024-09-25,74134,7111,"[\""Laptop\""]",3997.26,{},62089,1,"""Africa""" +2024-09-14,74135,5816,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4253.7,"{\""seasonal\"": \""19%\""}",296913,1,"""South America""" +2024-07-09,74136,8104,"[\""Laptop\""]",4678.84,{},270508,0,"""North America""" +2024-08-26,74137,6435,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4940.05,{},78808,1,"""Europe""" +2024-01-22,74138,2406,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1855.34,"{\""promo\"": \""6%\""}",267123,1,"""South America""" +2024-07-16,74139,4942,"[\""Laptop\"", \""Headphones\""]",4634.74,"{\"": \""5%\""}",78999,1,"""North America""" +2023-05-21,74140,95,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",294.07,"{\"": \""20%\""}",216671,1,"""Asia""" +2023-03-06,74141,4503,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",94.85,{},240272,0,"""Europe""" +2023-10-28,74142,3959,"[\""Tablet\""]",3343.59,"{\""seasonal\"": \""21%\""}",232143,1,"""Africa""" +2023-02-03,74143,8825,"[\""Tablet\""]",3954.94,"{\""seasonal\"": \""13%\""}",233247,1,"""Africa""" +2023-05-13,74144,7718,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4328.67,{},118912,1,"""North America""" +2024-09-21,74145,7885,"[\""Tablet\"", \""Headphones\""]",1314.34,"{\""loyalty\"": \""15%\""}",18703,1,"""Asia""" +2023-08-29,74146,2721,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",171.72,"{\""promo\"": \""28%\""}",279826,1,"""South America""" +2024-08-20,74147,8910,"[\""Wireless Mouse\""]",4135.3,"{\""promo\"": \""9%\""}",32445,0,"""North America""" +2023-11-19,74148,2363,"[\""Headphones\""]",995.69,{},231947,0,"""Asia""" +2024-09-14,74149,9993,"[\""Tablet\"", \""Phone\""]",2193.78,"{\""promo\"": \""10%\""}",46616,0,"""Europe""" +2024-06-28,74150,6303,"[\""Charger\""]",1907.93,{},164698,1,"""South America""" +2023-10-01,74151,1139,"[\""Wireless Mouse\""]",2510.04,"{\""promo\"": \""14%\""}",272684,0,"""Asia""" +2023-10-13,74152,886,"[\""Charger\"", \""Keyboard\""]",4168.66,{},228945,0,"""North America""" +2024-07-19,74153,5857,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",465.41,"{\""loyalty\"": \""22%\""}",295770,1,"""Europe""" +2024-09-13,74154,6067,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",490.7,"{\""promo\"": \""27%\""}",155083,1,"""Asia""" +2024-07-26,74155,1481,"[\""Phone\"", \""Keyboard\""]",3758.34,{},172864,0,"""Africa""" +2024-08-08,74156,8284,"[\""Headphones\""]",972.89,"{\"": \""12%\""}",284464,1,"""Europe""" +2024-06-25,74157,1935,"[\""Wireless Mouse\""]",3275.28,{},32334,0,"""North America""" +2024-05-14,74158,4227,"[\""Headphones\""]",1998.76,{},230775,0,"""South America""" +2024-10-17,74159,299,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4200.72,{},207039,1,"""Asia""" +2023-09-06,74160,7956,"[\""Keyboard\"", \""Monitor\""]",1120.42,{},60858,1,"""Africa""" +2024-02-11,74161,3088,"[\""Keyboard\""]",3554.04,"{\""promo\"": \""13%\""}",173736,1,"""South America""" +2023-02-23,74162,6175,"[\""Keyboard\"", \""Wireless Mouse\""]",1985.28,{},110834,0,"""Asia""" +2023-04-12,74163,5716,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2265.41,"{\""promo\"": \""20%\""}",277692,1,"""Africa""" +2024-06-01,74164,403,"[\""Tablet\""]",3970.69,"{\"": \""28%\""}",44230,0,"""Europe""" +2024-08-07,74165,3030,"[\""Laptop\""]",4420.35,"{\""promo\"": \""20%\""}",105759,1,"""Africa""" +2023-05-15,74166,8830,"[\""Wireless Mouse\"", \""Headphones\""]",4998.65,{},20261,0,"""Asia""" +2024-07-23,74167,4167,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1248.67,"{\"": \""18%\""}",38679,0,"""Africa""" +2023-10-04,74168,7077,"[\""Keyboard\"", \""Charger\""]",3513.68,{},125133,1,"""Africa""" +2024-04-18,74169,4074,"[\""Headphones\"", \""Laptop\""]",1848.22,{},138445,1,"""North America""" +2024-05-05,74170,8144,"[\""Monitor\""]",1721.17,"{\""seasonal\"": \""10%\""}",268254,0,"""North America""" +2023-09-18,74171,6326,"[\""Tablet\""]",4434.25,"{\""promo\"": \""14%\""}",141528,1,"""North America""" +2023-09-07,74172,5546,"[\""Headphones\""]",61.48,{},239741,0,"""Europe""" +2024-08-03,74173,9919,"[\""Wireless Mouse\""]",1502.43,{},156171,0,"""Asia""" +2024-02-29,74174,6369,"[\""Monitor\"", \""Charger\""]",3718.43,{},25070,0,"""Europe""" +2023-12-22,74175,511,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",450.94,{},226811,1,"""North America""" +2024-06-01,74176,2642,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3096.68,{},224558,1,"""Africa""" +2023-02-19,74177,4341,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",996.26,{},211360,0,"""South America""" +2023-06-11,74178,814,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4415.36,{},293004,1,"""Africa""" +2024-03-05,74179,8718,"[\""Headphones\"", \""Keyboard\""]",3355.74,"{\"": \""26%\""}",169030,0,"""Africa""" +2024-12-03,74180,7444,"[\""Charger\""]",4130.19,{},190104,1,"""Africa""" +2023-10-26,74181,1233,"[\""Headphones\"", \""Phone\""]",2282.84,"{\""promo\"": \""14%\""}",154546,1,"""Africa""" +2024-11-13,74182,4854,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",227.96,"{\""promo\"": \""10%\""}",133292,0,"""Europe""" +2023-10-28,74183,8002,"[\""Headphones\""]",1614.18,"{\""seasonal\"": \""19%\""}",77998,1,"""Africa""" +2024-05-20,74184,6996,"[\""Keyboard\"", \""Charger\""]",1996.21,"{\""promo\"": \""17%\""}",171843,0,"""Europe""" +2024-09-29,74185,2608,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1065.26,"{\""seasonal\"": \""21%\""}",57588,1,"""Asia""" +2023-10-19,74186,3501,"[\""Tablet\"", \""Phone\""]",3376.23,"{\""seasonal\"": \""13%\""}",25354,0,"""South America""" +2024-11-23,74187,8999,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1248.74,"{\""seasonal\"": \""30%\""}",69615,1,"""South America""" +2024-04-05,74188,768,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",705.82,"{\""promo\"": \""18%\""}",192871,0,"""Europe""" +2023-04-14,74189,7161,"[\""Keyboard\"", \""Headphones\""]",4268.3,"{\""promo\"": \""13%\""}",149385,1,"""Asia""" +2024-02-03,74190,2219,"[\""Charger\""]",3347.68,"{\"": \""29%\""}",41145,1,"""North America""" +2024-12-02,74191,358,"[\""Keyboard\"", \""Headphones\""]",4816.7,"{\""seasonal\"": \""27%\""}",105413,0,"""Asia""" +2023-07-15,74192,6508,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2374.89,{},96619,0,"""North America""" +2024-05-08,74193,1921,"[\""Keyboard\""]",1396.14,{},111222,1,"""Asia""" +2023-10-28,74194,5188,"[\""Monitor\"", \""Laptop\""]",1204.96,{},208889,1,"""Africa""" +2024-08-03,74195,9256,"[\""Tablet\""]",3769.37,"{\""promo\"": \""14%\""}",109671,1,"""North America""" +2024-11-05,74196,4142,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4882.64,{},112067,0,"""Africa""" +2023-01-15,74197,9754,"[\""Charger\"", \""Phone\""]",2896.23,"{\"": \""27%\""}",149559,0,"""Asia""" +2023-08-17,74198,4623,"[\""Charger\""]",1774.21,{},206472,0,"""North America""" +2024-12-09,74199,1292,"[\""Tablet\""]",2224.13,{},29949,0,"""South America""" +2023-03-28,74200,4558,"[\""Keyboard\"", \""Phone\""]",309.01,{},65128,1,"""Africa""" +2023-11-19,74201,4699,"[\""Charger\""]",2449.11,"{\""promo\"": \""17%\""}",31984,1,"""Asia""" +2024-05-23,74202,65,"[\""Wireless Mouse\"", \""Monitor\""]",2601.42,"{\""promo\"": \""8%\""}",227066,1,"""South America""" +2023-03-07,74203,690,"[\""Phone\"", \""Tablet\""]",4479.27,"{\""loyalty\"": \""29%\""}",101957,1,"""North America""" +2024-08-04,74204,4174,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3065.37,"{\""seasonal\"": \""12%\""}",212241,0,"""North America""" +2023-12-28,74205,9033,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4711.58,"{\""seasonal\"": \""16%\""}",88976,1,"""Africa""" +2024-09-13,74206,5856,"[\""Charger\"", \""Wireless Mouse\""]",985.74,{},92034,0,"""Europe""" +2023-04-21,74207,5929,"[\""Headphones\""]",2588.15,{},226263,1,"""Asia""" +2024-08-02,74208,5391,"[\""Headphones\""]",1328.53,"{\""seasonal\"": \""24%\""}",140396,0,"""North America""" +2024-03-07,74209,6002,"[\""Laptop\""]",2191.74,"{\"": \""5%\""}",292526,1,"""Asia""" +2024-05-31,74210,3322,"[\""Keyboard\""]",4607.81,"{\""seasonal\"": \""24%\""}",166890,0,"""South America""" +2024-07-31,74211,7929,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3398.15,"{\""promo\"": \""21%\""}",131089,0,"""South America""" +2023-09-13,74212,9583,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2633.0,{},226856,1,"""Asia""" +2023-11-17,74213,6442,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2849.74,"{\""seasonal\"": \""24%\""}",184691,0,"""Asia""" +2023-06-10,74214,5767,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4850.77,"{\""promo\"": \""21%\""}",203625,0,"""Africa""" +2023-06-20,74215,591,"[\""Laptop\"", \""Monitor\""]",2752.9,{},234836,0,"""South America""" +2024-11-07,74216,6574,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4090.44,"{\"": \""13%\""}",235841,0,"""Africa""" +2023-02-25,74217,4685,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3355.72,{},297355,0,"""Europe""" +2024-11-18,74218,5092,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1248.25,"{\""loyalty\"": \""14%\""}",115227,0,"""South America""" +2024-08-15,74219,2695,"[\""Charger\""]",3528.78,"{\"": \""23%\""}",105379,0,"""Africa""" +2023-02-02,74220,5715,"[\""Keyboard\"", \""Headphones\""]",751.81,"{\""seasonal\"": \""24%\""}",141499,0,"""South America""" +2024-12-26,74221,1102,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4515.56,"{\""promo\"": \""17%\""}",192913,1,"""Africa""" +2023-01-30,74222,7849,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4663.69,{},248790,0,"""Africa""" +2023-08-09,74223,3286,"[\""Charger\"", \""Keyboard\""]",1146.52,"{\""promo\"": \""26%\""}",149462,1,"""Asia""" +2024-06-18,74224,2157,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1415.37,{},227072,0,"""South America""" +2024-06-30,74225,9456,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1754.39,{},205822,0,"""North America""" +2024-06-20,74226,3278,"[\""Tablet\""]",581.7,{},287981,1,"""Africa""" +2024-01-17,74227,2988,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1455.84,"{\""promo\"": \""10%\""}",112795,0,"""South America""" +2024-07-15,74228,9543,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4635.86,"{\"": \""23%\""}",74930,1,"""South America""" +2023-04-12,74229,238,"[\""Monitor\""]",4303.97,{},40861,0,"""Europe""" +2023-09-19,74230,1434,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3566.92,"{\""promo\"": \""20%\""}",105346,1,"""Africa""" +2023-02-21,74231,9937,"[\""Phone\"", \""Charger\""]",4897.44,{},226667,0,"""North America""" +2023-11-05,74232,7150,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2561.83,{},292558,1,"""Africa""" +2023-02-09,74233,1751,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1190.71,"{\""loyalty\"": \""5%\""}",279501,0,"""North America""" +2023-12-25,74234,4494,"[\""Laptop\""]",3331.93,{},114507,0,"""South America""" +2024-10-23,74235,6796,"[\""Monitor\"", \""Laptop\""]",1224.89,"{\""loyalty\"": \""24%\""}",219036,1,"""Asia""" +2023-07-21,74236,3755,"[\""Phone\""]",2450.22,{},176306,0,"""North America""" +2024-12-26,74237,7276,"[\""Wireless Mouse\""]",4689.17,{},207482,1,"""Asia""" +2024-07-09,74238,2697,"[\""Tablet\""]",727.1,{},113363,1,"""North America""" +2023-04-03,74239,2526,"[\""Wireless Mouse\"", \""Keyboard\""]",594.94,{},17929,1,"""South America""" +2023-10-15,74240,4709,"[\""Monitor\"", \""Laptop\""]",2220.01,"{\""seasonal\"": \""13%\""}",243820,0,"""Europe""" +2023-06-05,74241,937,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3782.76,{},246060,1,"""Africa""" +2024-09-10,74242,2182,"[\""Charger\"", \""Headphones\""]",2216.77,{},215501,0,"""Europe""" +2024-08-28,74243,2139,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2913.93,"{\""promo\"": \""15%\""}",177765,0,"""Europe""" +2023-01-16,74244,4719,"[\""Monitor\"", \""Tablet\""]",2752.1,{},15627,0,"""Europe""" +2023-08-17,74245,6988,"[\""Keyboard\"", \""Charger\""]",3716.81,"{\"": \""27%\""}",166280,0,"""South America""" +2024-02-21,74246,2540,"[\""Phone\""]",4606.96,"{\""loyalty\"": \""11%\""}",256894,1,"""South America""" +2023-04-15,74247,9945,"[\""Tablet\""]",3316.4,{},241321,1,"""North America""" +2023-12-03,74248,7695,"[\""Monitor\"", \""Phone\""]",3323.75,{},138705,1,"""Africa""" +2023-05-20,74249,5289,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",376.42,{},96614,0,"""Africa""" +2023-05-06,74250,6316,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1015.63,"{\""promo\"": \""9%\""}",206121,1,"""Africa""" +2024-09-16,74251,9344,"[\""Wireless Mouse\""]",2154.41,{},115977,0,"""South America""" +2024-07-28,74252,4616,"[\""Tablet\"", \""Wireless Mouse\""]",4171.61,{},149944,1,"""Asia""" +2024-05-08,74253,5770,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3211.83,"{\"": \""25%\""}",293294,0,"""South America""" +2023-08-10,74254,7185,"[\""Monitor\"", \""Tablet\""]",3951.27,{},223482,1,"""Europe""" +2023-02-06,74255,2434,"[\""Headphones\""]",1236.15,"{\""loyalty\"": \""18%\""}",142173,0,"""Europe""" +2024-10-09,74256,4124,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1371.03,{},227020,1,"""North America""" +2023-02-23,74257,203,"[\""Wireless Mouse\""]",4549.28,{},121379,0,"""North America""" +2024-12-10,74258,1974,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4914.28,"{\""promo\"": \""13%\""}",198418,1,"""North America""" +2023-08-16,74259,1388,"[\""Headphones\""]",4666.52,"{\"": \""27%\""}",50938,1,"""North America""" +2024-11-19,74260,7946,"[\""Headphones\"", \""Phone\""]",3994.85,{},134990,0,"""Asia""" +2024-12-08,74261,9637,"[\""Tablet\""]",4065.98,{},289666,0,"""Europe""" +2023-11-19,74262,6805,"[\""Tablet\""]",2518.52,{},103157,1,"""Europe""" +2024-06-22,74263,6837,"[\""Wireless Mouse\"", \""Charger\""]",4969.53,{},14163,1,"""Asia""" +2024-02-24,74264,8706,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2190.84,{},92534,0,"""North America""" +2024-04-23,74265,1967,"[\""Wireless Mouse\""]",3742.53,{},145052,0,"""North America""" +2023-04-17,74266,4249,"[\""Keyboard\"", \""Phone\""]",1146.98,"{\""promo\"": \""19%\""}",206722,0,"""North America""" +2023-09-07,74267,1092,"[\""Phone\""]",2878.45,"{\""promo\"": \""22%\""}",47592,1,"""North America""" +2024-08-30,74268,249,"[\""Laptop\""]",1816.94,{},227758,1,"""Europe""" +2024-12-06,74269,2524,"[\""Keyboard\"", \""Monitor\""]",365.09,"{\""promo\"": \""14%\""}",27996,0,"""Africa""" +2024-06-15,74270,5474,"[\""Laptop\"", \""Headphones\""]",2052.31,{},33773,1,"""North America""" +2023-12-01,74271,7036,"[\""Charger\""]",2814.28,{},291597,1,"""Europe""" +2023-07-25,74272,7523,"[\""Laptop\""]",4639.28,"{\"": \""9%\""}",93369,0,"""Europe""" +2024-02-06,74273,3027,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4856.84,{},167720,1,"""Africa""" +2023-12-01,74274,4388,"[\""Tablet\"", \""Wireless Mouse\""]",2100.06,{},11822,0,"""Europe""" +2023-01-05,74275,3337,"[\""Phone\"", \""Tablet\""]",2867.74,"{\""promo\"": \""6%\""}",289421,0,"""South America""" +2024-11-01,74276,6227,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",991.52,{},232227,0,"""Africa""" +2024-11-10,74277,4575,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",711.45,{},145844,0,"""Africa""" +2024-03-06,74278,4273,"[\""Wireless Mouse\"", \""Laptop\""]",1946.03,{},25971,0,"""Europe""" +2023-05-09,74279,4562,"[\""Headphones\""]",4338.8,{},121135,1,"""South America""" +2023-09-19,74280,6895,"[\""Wireless Mouse\""]",52.35,"{\""seasonal\"": \""22%\""}",79180,0,"""North America""" +2023-03-31,74281,2536,"[\""Charger\""]",1897.16,{},80866,1,"""Asia""" +2024-05-19,74282,8871,"[\""Charger\""]",4332.92,"{\""promo\"": \""29%\""}",266804,1,"""North America""" +2023-05-18,74283,115,"[\""Monitor\"", \""Keyboard\""]",4571.06,{},166195,0,"""Africa""" +2024-04-01,74284,76,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4028.87,{},253614,1,"""Africa""" +2024-01-14,74285,1365,"[\""Keyboard\""]",4053.78,{},207418,0,"""Asia""" +2024-03-29,74286,1932,"[\""Charger\"", \""Monitor\""]",672.92,{},233062,1,"""Europe""" +2023-09-07,74287,4991,"[\""Charger\"", \""Wireless Mouse\""]",2250.35,{},183828,0,"""North America""" +2023-09-23,74288,2127,"[\""Monitor\""]",1967.86,"{\""promo\"": \""26%\""}",229155,1,"""Asia""" +2023-04-15,74289,3627,"[\""Wireless Mouse\""]",1299.42,"{\"": \""26%\""}",30786,0,"""South America""" +2023-06-01,74290,2466,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1885.32,"{\""promo\"": \""28%\""}",176321,1,"""Asia""" +2023-03-13,74291,2061,"[\""Tablet\"", \""Charger\""]",3530.65,"{\""seasonal\"": \""21%\""}",24258,1,"""North America""" +2024-05-24,74292,4583,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1249.97,"{\""loyalty\"": \""7%\""}",121967,1,"""Africa""" +2023-12-31,74293,5469,"[\""Keyboard\""]",4812.84,{},244667,1,"""Asia""" +2023-02-07,74294,8780,"[\""Wireless Mouse\""]",917.69,{},243367,1,"""North America""" +2024-02-13,74295,7468,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2170.27,{},248470,0,"""Europe""" +2023-08-26,74296,4999,"[\""Laptop\"", \""Headphones\""]",3882.73,{},79356,0,"""South America""" +2024-12-03,74297,1856,"[\""Headphones\"", \""Wireless Mouse\""]",1367.28,"{\""promo\"": \""25%\""}",151955,0,"""South America""" +2024-12-26,74298,8252,"[\""Laptop\"", \""Phone\""]",2511.39,"{\""seasonal\"": \""11%\""}",119140,1,"""South America""" +2024-10-06,74299,1369,"[\""Phone\"", \""Charger\"", \""Monitor\""]",825.66,{},56714,0,"""Europe""" +2024-10-11,74300,1317,"[\""Laptop\"", \""Monitor\""]",608.53,"{\""promo\"": \""23%\""}",146937,1,"""North America""" +2024-01-24,74301,5037,"[\""Keyboard\""]",748.43,"{\""loyalty\"": \""8%\""}",178228,0,"""Asia""" +2024-01-11,74302,6141,"[\""Laptop\"", \""Keyboard\""]",1234.01,{},281902,0,"""Africa""" +2023-06-01,74303,8315,"[\""Charger\"", \""Wireless Mouse\""]",1369.27,{},169781,0,"""Europe""" +2024-11-27,74304,5500,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2674.09,{},221979,0,"""Europe""" +2024-12-05,74305,450,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2112.36,{},77927,1,"""Asia""" +2024-07-09,74306,1382,"[\""Headphones\""]",1696.23,{},103528,1,"""North America""" +2023-10-25,74307,3005,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1368.42,{},166697,0,"""Europe""" +2024-09-07,74308,1970,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1086.14,"{\"": \""18%\""}",129234,0,"""South America""" +2023-11-10,74309,2992,"[\""Tablet\""]",2177.55,{},175219,1,"""North America""" +2023-08-19,74310,1281,"[\""Monitor\""]",4440.06,"{\""loyalty\"": \""7%\""}",292826,0,"""South America""" +2023-09-26,74311,1361,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1495.12,"{\""seasonal\"": \""19%\""}",194239,0,"""Africa""" +2024-10-12,74312,8742,"[\""Laptop\"", \""Phone\""]",4992.3,"{\""loyalty\"": \""24%\""}",283120,0,"""North America""" +2024-01-31,74313,3614,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",329.31,"{\""seasonal\"": \""14%\""}",57604,1,"""Africa""" +2024-06-17,74314,983,"[\""Wireless Mouse\""]",4282.06,{},70446,1,"""South America""" +2024-02-22,74315,853,"[\""Wireless Mouse\"", \""Monitor\""]",954.13,{},152423,1,"""South America""" +2024-10-09,74316,5087,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",382.32,"{\"": \""22%\""}",275411,0,"""North America""" +2023-04-02,74317,1407,"[\""Phone\"", \""Tablet\""]",1538.28,"{\""loyalty\"": \""27%\""}",95164,0,"""Asia""" +2024-11-27,74318,444,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4357.27,{},2875,0,"""Africa""" +2023-11-02,74319,9875,"[\""Tablet\"", \""Charger\""]",4744.36,{},267283,1,"""Asia""" +2024-02-12,74320,2901,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4325.98,"{\""loyalty\"": \""29%\""}",279576,0,"""Africa""" +2024-07-01,74321,7127,"[\""Laptop\"", \""Headphones\""]",1412.42,{},138316,1,"""Europe""" +2023-04-18,74322,2181,"[\""Tablet\"", \""Keyboard\""]",421.49,"{\""seasonal\"": \""12%\""}",119351,1,"""South America""" +2023-01-06,74323,4958,"[\""Laptop\""]",1802.54,{},135628,0,"""Europe""" +2023-01-14,74324,7630,"[\""Keyboard\""]",505.59,{},270789,0,"""Europe""" +2024-05-16,74325,8626,"[\""Headphones\"", \""Wireless Mouse\""]",1025.58,"{\"": \""9%\""}",158753,0,"""North America""" +2024-01-30,74326,7579,"[\""Phone\"", \""Keyboard\""]",4248.14,{},13721,1,"""North America""" +2024-02-26,74327,5795,"[\""Laptop\""]",2088.89,{},56986,1,"""Europe""" +2023-11-16,74328,1038,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4079.65,{},108155,1,"""South America""" +2024-04-30,74329,1661,"[\""Laptop\""]",1088.74,"{\"": \""20%\""}",4923,1,"""South America""" +2024-10-30,74330,659,"[\""Tablet\"", \""Headphones\""]",4839.85,"{\""loyalty\"": \""28%\""}",50517,0,"""South America""" +2024-10-15,74331,3582,"[\""Monitor\""]",3071.04,"{\""seasonal\"": \""22%\""}",135119,1,"""Europe""" +2023-06-26,74332,561,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3233.54,{},85072,0,"""North America""" +2023-04-05,74333,1797,"[\""Wireless Mouse\""]",807.07,{},133499,0,"""Asia""" +2024-03-04,74334,4950,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2312.13,"{\""seasonal\"": \""10%\""}",187257,1,"""Africa""" +2024-12-12,74335,5678,"[\""Charger\"", \""Wireless Mouse\""]",4469.44,{},261316,1,"""North America""" +2024-10-15,74336,4140,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1194.05,{},174809,0,"""Europe""" +2023-11-17,74337,7553,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",739.71,"{\"": \""19%\""}",238709,1,"""South America""" +2024-01-10,74338,9817,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4610.82,"{\""seasonal\"": \""12%\""}",105331,0,"""Europe""" +2023-11-27,74339,3833,"[\""Monitor\"", \""Laptop\""]",1821.55,"{\""seasonal\"": \""8%\""}",185659,1,"""Asia""" +2024-01-11,74340,7805,"[\""Tablet\"", \""Headphones\""]",598.61,"{\""promo\"": \""22%\""}",296662,1,"""Africa""" +2023-03-09,74341,7302,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",116.0,{},138026,0,"""South America""" +2023-09-20,74342,1641,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3605.1,"{\""promo\"": \""7%\""}",285412,0,"""Africa""" +2024-07-24,74343,4133,"[\""Headphones\""]",1820.58,"{\""seasonal\"": \""15%\""}",277028,0,"""North America""" +2024-02-04,74344,3527,"[\""Phone\"", \""Charger\""]",1284.69,"{\"": \""18%\""}",68964,0,"""Asia""" +2023-05-05,74345,1154,"[\""Wireless Mouse\""]",3945.82,{},72180,0,"""North America""" +2023-07-13,74346,2361,"[\""Headphones\""]",1477.56,{},248334,0,"""North America""" +2024-05-25,74347,2650,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3043.76,{},30093,0,"""North America""" +2024-01-13,74348,5836,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",116.02,"{\"": \""26%\""}",118759,0,"""North America""" +2023-03-18,74349,6493,"[\""Wireless Mouse\""]",2090.79,"{\"": \""11%\""}",14486,1,"""North America""" +2024-05-04,74350,4874,"[\""Charger\"", \""Phone\""]",2046.26,"{\""promo\"": \""6%\""}",198931,1,"""North America""" +2024-06-07,74351,3303,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",189.93,{},172940,1,"""Africa""" +2023-07-22,74352,9535,"[\""Phone\"", \""Keyboard\""]",4012.34,"{\""seasonal\"": \""10%\""}",290475,1,"""South America""" +2024-11-30,74353,7487,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3579.12,{},191385,1,"""Asia""" +2023-09-29,74354,4742,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4543.37,"{\"": \""20%\""}",221216,1,"""Asia""" +2024-01-11,74355,2739,"[\""Headphones\""]",239.14,"{\"": \""24%\""}",29528,0,"""North America""" +2024-04-05,74356,7099,"[\""Headphones\"", \""Tablet\""]",4860.08,{},139257,0,"""Africa""" +2023-08-18,74357,6499,"[\""Charger\"", \""Tablet\""]",734.09,"{\"": \""27%\""}",296740,0,"""North America""" +2023-04-14,74358,3143,"[\""Headphones\""]",3616.46,{},202346,1,"""Asia""" +2024-12-11,74359,7368,"[\""Charger\""]",616.42,{},282546,1,"""South America""" +2024-03-11,74360,7289,"[\""Keyboard\"", \""Tablet\""]",2355.08,{},220828,1,"""Africa""" +2023-06-18,74361,569,"[\""Headphones\""]",3465.29,{},186118,1,"""Europe""" +2023-06-12,74362,3659,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2543.77,"{\"": \""13%\""}",289268,0,"""Africa""" +2024-09-05,74363,5249,"[\""Keyboard\"", \""Laptop\""]",418.64,{},156897,1,"""Asia""" +2024-10-18,74364,4180,"[\""Keyboard\"", \""Laptop\""]",4158.73,"{\""loyalty\"": \""16%\""}",26350,1,"""Africa""" +2023-04-13,74365,8540,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1686.41,{},22128,1,"""Europe""" +2024-08-26,74366,9562,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3913.83,"{\""seasonal\"": \""20%\""}",90903,1,"""Africa""" +2023-07-17,74367,3971,"[\""Wireless Mouse\""]",1493.1,{},49560,0,"""North America""" +2024-02-07,74368,4184,"[\""Wireless Mouse\"", \""Tablet\""]",2222.1,"{\""promo\"": \""9%\""}",124625,1,"""North America""" +2024-08-26,74369,8658,"[\""Keyboard\"", \""Monitor\""]",1817.22,{},174480,0,"""Europe""" +2024-06-11,74370,1696,"[\""Phone\"", \""Tablet\""]",1210.31,{},50504,1,"""Africa""" +2023-10-16,74371,4011,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1466.6,"{\""promo\"": \""5%\""}",224784,0,"""North America""" +2023-02-06,74372,4395,"[\""Laptop\"", \""Charger\""]",4232.79,"{\""loyalty\"": \""17%\""}",97715,0,"""North America""" +2024-04-29,74373,5472,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",733.2,{},173347,0,"""Europe""" +2024-10-23,74374,1965,"[\""Wireless Mouse\""]",4095.27,{},265750,1,"""South America""" +2024-09-09,74375,404,"[\""Wireless Mouse\""]",3006.2,{},189976,1,"""Europe""" +2024-09-04,74376,317,"[\""Headphones\"", \""Keyboard\""]",536.65,"{\""seasonal\"": \""17%\""}",226214,1,"""Asia""" +2024-10-21,74377,5613,"[\""Keyboard\"", \""Charger\""]",1847.42,"{\""promo\"": \""27%\""}",172117,1,"""Asia""" +2023-07-31,74378,6391,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3682.41,"{\"": \""19%\""}",153770,0,"""South America""" +2023-08-31,74379,8806,"[\""Keyboard\"", \""Charger\""]",4211.97,"{\""seasonal\"": \""21%\""}",186727,0,"""North America""" +2023-09-18,74380,7243,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4843.6,{},20110,0,"""North America""" +2023-02-04,74381,11,"[\""Tablet\"", \""Wireless Mouse\""]",1180.91,"{\"": \""20%\""}",150880,0,"""Europe""" +2023-12-17,74382,4288,"[\""Monitor\""]",3770.36,{},113123,0,"""Africa""" +2024-07-30,74383,5416,"[\""Headphones\"", \""Monitor\""]",890.18,{},132923,0,"""Africa""" +2023-12-21,74384,455,"[\""Tablet\"", \""Headphones\""]",72.86,{},225038,1,"""Africa""" +2024-11-16,74385,773,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",832.97,"{\""seasonal\"": \""17%\""}",50840,1,"""Asia""" +2024-11-05,74386,3819,"[\""Headphones\""]",3634.53,{},124615,0,"""North America""" +2023-12-30,74387,7041,"[\""Phone\""]",3955.76,"{\""promo\"": \""21%\""}",1207,0,"""Africa""" +2024-03-27,74388,8447,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1063.25,"{\""seasonal\"": \""27%\""}",177726,0,"""Europe""" +2024-04-08,74389,1101,"[\""Phone\"", \""Laptop\"", \""Charger\""]",822.05,{},25297,0,"""Africa""" +2024-07-27,74390,3764,"[\""Keyboard\"", \""Phone\""]",3892.26,"{\""seasonal\"": \""11%\""}",299788,1,"""Asia""" +2023-12-21,74391,7933,"[\""Tablet\""]",910.99,"{\""seasonal\"": \""30%\""}",151933,0,"""Africa""" +2023-04-11,74392,124,"[\""Laptop\"", \""Tablet\""]",2177.94,"{\""loyalty\"": \""12%\""}",145605,0,"""North America""" +2024-11-23,74393,9723,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4101.63,{},108943,0,"""North America""" +2024-03-23,74394,8208,"[\""Laptop\""]",4928.87,{},249998,1,"""South America""" +2024-09-01,74395,198,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1006.25,"{\""promo\"": \""20%\""}",244438,1,"""North America""" +2024-03-05,74396,7394,"[\""Charger\"", \""Laptop\""]",4655.27,{},170262,1,"""Africa""" +2024-10-01,74397,7831,"[\""Keyboard\"", \""Laptop\""]",2423.56,{},155508,1,"""North America""" +2023-03-10,74398,9797,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",741.55,"{\""loyalty\"": \""11%\""}",25209,1,"""Africa""" +2024-02-14,74399,2771,"[\""Phone\"", \""Tablet\""]",1228.27,{},49095,1,"""Africa""" +2023-07-18,74400,7635,"[\""Wireless Mouse\"", \""Monitor\""]",1781.53,"{\""promo\"": \""5%\""}",137815,1,"""Africa""" +2024-03-13,74401,2127,"[\""Laptop\"", \""Wireless Mouse\""]",4333.04,{},105938,1,"""North America""" +2024-03-06,74402,8033,"[\""Monitor\""]",4350.86,"{\""loyalty\"": \""8%\""}",69077,1,"""South America""" +2024-10-15,74403,8645,"[\""Headphones\""]",2296.69,{},224684,1,"""North America""" +2023-12-18,74404,6735,"[\""Charger\""]",1229.54,"{\""promo\"": \""20%\""}",199976,1,"""Africa""" +2024-09-04,74405,5432,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1520.81,{},208497,0,"""Africa""" +2024-06-01,74406,6184,"[\""Headphones\"", \""Phone\""]",1648.78,{},9289,1,"""Africa""" +2024-10-02,74407,9027,"[\""Laptop\""]",4430.44,{},238460,1,"""Asia""" +2024-10-03,74408,5659,"[\""Phone\"", \""Headphones\""]",604.41,{},123867,0,"""South America""" +2023-12-08,74409,18,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2134.57,{},247040,1,"""South America""" +2023-10-20,74410,6483,"[\""Keyboard\""]",2912.06,"{\""seasonal\"": \""6%\""}",43375,1,"""Asia""" +2024-07-12,74411,2640,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1523.69,"{\""promo\"": \""17%\""}",265823,0,"""North America""" +2023-03-14,74412,3219,"[\""Laptop\""]",4496.86,{},61706,0,"""Africa""" +2023-07-09,74413,5797,"[\""Laptop\""]",823.62,"{\""promo\"": \""8%\""}",225190,1,"""North America""" +2024-01-19,74414,9808,"[\""Keyboard\"", \""Phone\""]",1838.97,"{\""promo\"": \""16%\""}",237128,0,"""Asia""" +2024-01-08,74415,8182,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3387.47,{},163017,1,"""Europe""" +2023-07-03,74416,7930,"[\""Monitor\"", \""Wireless Mouse\""]",1249.01,{},158122,0,"""Europe""" +2024-02-09,74417,328,"[\""Keyboard\"", \""Headphones\""]",2223.17,{},201151,1,"""Africa""" +2024-03-28,74418,3512,"[\""Phone\""]",3765.97,{},122633,0,"""North America""" +2024-07-29,74419,9929,"[\""Headphones\"", \""Tablet\""]",2322.24,{},115600,0,"""North America""" +2024-04-09,74420,6115,"[\""Wireless Mouse\""]",2639.59,{},172478,0,"""Asia""" +2024-05-16,74421,4703,"[\""Tablet\"", \""Monitor\""]",2897.93,"{\""seasonal\"": \""20%\""}",233417,0,"""North America""" +2023-12-03,74422,1532,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1811.72,"{\""seasonal\"": \""8%\""}",218747,1,"""South America""" +2024-03-24,74423,8175,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1338.47,{},33918,0,"""Asia""" +2024-08-27,74424,7426,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",2934.14,"{\""seasonal\"": \""7%\""}",85645,1,"""Europe""" +2024-05-11,74425,4479,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4575.96,"{\""seasonal\"": \""11%\""}",154649,0,"""Europe""" +2024-05-19,74426,2093,"[\""Laptop\"", \""Headphones\""]",1684.74,"{\"": \""6%\""}",194060,1,"""Europe""" +2023-10-23,74427,758,"[\""Laptop\"", \""Headphones\""]",4218.73,"{\""promo\"": \""15%\""}",146500,1,"""North America""" +2023-04-07,74428,1806,"[\""Monitor\""]",479.53,{},22645,0,"""North America""" +2023-07-08,74429,426,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1066.73,{},166000,0,"""Asia""" +2023-12-28,74430,5034,"[\""Phone\""]",2399.46,"{\""seasonal\"": \""12%\""}",81737,1,"""Africa""" +2023-08-23,74431,8855,"[\""Laptop\""]",2455.92,"{\"": \""29%\""}",238786,0,"""Africa""" +2024-08-02,74432,7615,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2609.31,"{\"": \""21%\""}",79269,1,"""Europe""" +2024-02-08,74433,3697,"[\""Keyboard\"", \""Headphones\""]",2989.48,{},261147,1,"""Europe""" +2023-08-07,74434,9688,"[\""Headphones\"", \""Keyboard\""]",3550.33,{},144249,0,"""North America""" +2024-11-24,74435,914,"[\""Laptop\""]",908.91,"{\""loyalty\"": \""6%\""}",229086,0,"""Africa""" +2024-10-01,74436,7909,"[\""Wireless Mouse\"", \""Headphones\""]",1060.27,{},112459,1,"""South America""" +2024-09-29,74437,1569,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2238.77,"{\"": \""11%\""}",264042,1,"""South America""" +2023-07-09,74438,1198,"[\""Wireless Mouse\"", \""Headphones\""]",4218.42,"{\"": \""9%\""}",299368,0,"""Africa""" +2023-02-22,74439,9520,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3788.54,{},161819,1,"""North America""" +2024-08-08,74440,7353,"[\""Phone\""]",3459.05,"{\"": \""20%\""}",41767,0,"""South America""" +2024-02-23,74441,8509,"[\""Wireless Mouse\""]",4960.51,"{\""promo\"": \""14%\""}",144271,0,"""South America""" +2023-09-21,74442,7448,"[\""Headphones\"", \""Keyboard\""]",3005.93,{},187200,0,"""North America""" +2024-01-14,74443,8770,"[\""Headphones\"", \""Wireless Mouse\""]",1154.53,{},260899,1,"""Africa""" +2024-05-30,74444,3454,"[\""Keyboard\"", \""Headphones\""]",3430.44,"{\""seasonal\"": \""9%\""}",243574,1,"""South America""" +2023-06-05,74445,1981,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1520.57,{},178060,0,"""Asia""" +2023-07-05,74446,9879,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",797.32,"{\""loyalty\"": \""17%\""}",111545,0,"""Asia""" +2023-08-02,74447,6686,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",921.71,"{\""promo\"": \""17%\""}",223692,1,"""Africa""" +2023-07-01,74448,2768,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3718.05,{},257962,0,"""Asia""" +2023-12-16,74449,1399,"[\""Headphones\""]",3519.65,{},181716,0,"""South America""" +2024-12-29,74450,9275,"[\""Wireless Mouse\"", \""Phone\""]",4210.2,"{\""promo\"": \""29%\""}",295363,1,"""Europe""" +2023-01-31,74451,4724,"[\""Tablet\"", \""Keyboard\""]",4559.85,"{\""promo\"": \""8%\""}",291447,1,"""Asia""" +2023-08-15,74452,1115,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1594.7,{},11806,0,"""Africa""" +2024-11-04,74453,3150,"[\""Tablet\""]",3096.46,{},257878,1,"""North America""" +2023-01-27,74454,6758,"[\""Keyboard\"", \""Charger\""]",4839.58,{},164896,1,"""North America""" +2023-04-05,74455,3338,"[\""Laptop\""]",3682.11,{},240286,0,"""Africa""" +2023-07-17,74456,8657,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1053.1,"{\""promo\"": \""24%\""}",268808,0,"""Europe""" +2024-08-27,74457,2621,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",918.28,"{\""loyalty\"": \""29%\""}",184329,1,"""South America""" +2024-10-15,74458,4959,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",684.44,"{\""promo\"": \""8%\""}",269582,0,"""South America""" +2023-08-22,74459,5652,"[\""Charger\"", \""Phone\""]",523.13,{},53886,0,"""Asia""" +2023-09-14,74460,3842,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4541.04,"{\""seasonal\"": \""15%\""}",270437,1,"""Africa""" +2023-12-15,74461,2019,"[\""Keyboard\"", \""Phone\""]",1443.23,"{\""promo\"": \""23%\""}",202037,0,"""Africa""" +2023-04-02,74462,2699,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3055.75,{},266528,1,"""North America""" +2023-11-20,74463,2385,"[\""Headphones\"", \""Monitor\""]",3901.7,"{\""promo\"": \""11%\""}",181180,0,"""South America""" +2023-08-06,74464,8765,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4575.25,"{\""seasonal\"": \""11%\""}",95965,1,"""Asia""" +2024-09-13,74465,3809,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2242.75,"{\""promo\"": \""5%\""}",260091,1,"""Asia""" +2023-08-09,74466,2134,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",788.98,{},243996,1,"""Europe""" +2024-10-28,74467,3680,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",548.11,"{\""promo\"": \""19%\""}",249019,1,"""Asia""" +2023-08-12,74468,2585,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2216.1,"{\""loyalty\"": \""20%\""}",242762,1,"""South America""" +2023-03-13,74469,216,"[\""Phone\"", \""Headphones\""]",3612.86,"{\"": \""29%\""}",210371,1,"""South America""" +2024-09-13,74470,498,"[\""Monitor\"", \""Headphones\""]",1832.58,"{\""promo\"": \""27%\""}",250260,0,"""North America""" +2023-05-10,74471,3534,"[\""Keyboard\"", \""Phone\""]",2405.94,"{\"": \""6%\""}",235614,1,"""Europe""" +2023-06-02,74472,9641,"[\""Tablet\""]",3069.24,"{\""loyalty\"": \""23%\""}",30747,0,"""Asia""" +2023-02-16,74473,2293,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3045.29,"{\"": \""26%\""}",263346,1,"""Europe""" +2023-09-21,74474,3745,"[\""Monitor\"", \""Laptop\""]",3759.72,"{\""promo\"": \""25%\""}",151771,1,"""North America""" +2023-05-14,74475,4985,"[\""Laptop\""]",3603.51,{},30722,0,"""South America""" +2023-07-18,74476,2769,"[\""Tablet\"", \""Phone\""]",864.1,{},200008,1,"""North America""" +2023-02-24,74477,9422,"[\""Keyboard\"", \""Charger\""]",3292.83,"{\""promo\"": \""26%\""}",151488,1,"""Europe""" +2024-12-22,74478,7877,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",654.58,{},108968,1,"""South America""" +2024-07-23,74479,4056,"[\""Keyboard\""]",3577.89,{},214118,1,"""North America""" +2023-01-27,74480,1034,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1381.65,{},149189,1,"""Asia""" +2023-08-24,74481,7243,"[\""Wireless Mouse\"", \""Headphones\""]",2376.19,"{\"": \""13%\""}",95965,0,"""Africa""" +2023-12-10,74482,9441,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",515.6,{},211442,1,"""Europe""" +2023-02-05,74483,9333,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4566.93,{},13595,0,"""Africa""" +2024-03-16,74484,5820,"[\""Wireless Mouse\""]",4444.48,"{\""loyalty\"": \""15%\""}",109979,1,"""North America""" +2024-06-04,74485,1168,"[\""Headphones\""]",4579.98,"{\"": \""30%\""}",138142,1,"""Asia""" +2024-11-07,74486,9615,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4868.11,{},81393,1,"""Europe""" +2024-05-12,74487,1616,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1474.84,"{\"": \""6%\""}",141653,0,"""Asia""" +2024-11-06,74488,4513,"[\""Wireless Mouse\""]",2743.96,"{\""promo\"": \""28%\""}",204069,0,"""South America""" +2024-11-02,74489,348,"[\""Charger\""]",1060.97,{},46236,0,"""Africa""" +2023-04-07,74490,6110,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2754.59,"{\""loyalty\"": \""13%\""}",168625,1,"""South America""" +2024-09-01,74491,6911,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3834.63,"{\""seasonal\"": \""28%\""}",209924,1,"""Africa""" +2024-05-19,74492,5465,"[\""Tablet\"", \""Keyboard\""]",4526.84,{},206376,1,"""North America""" +2023-04-24,74493,1675,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2170.85,"{\""seasonal\"": \""15%\""}",81593,1,"""Africa""" +2023-06-07,74494,6219,"[\""Keyboard\"", \""Monitor\""]",1974.18,"{\"": \""13%\""}",118468,1,"""Africa""" +2023-03-29,74495,5450,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2017.55,"{\""promo\"": \""17%\""}",213455,1,"""North America""" +2024-02-11,74496,5452,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1931.22,"{\""loyalty\"": \""7%\""}",9271,1,"""South America""" +2024-02-18,74497,5822,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",712.03,"{\""promo\"": \""19%\""}",50103,1,"""Africa""" +2024-06-29,74498,8429,"[\""Tablet\"", \""Headphones\""]",3299.21,"{\""loyalty\"": \""27%\""}",68305,0,"""Europe""" +2023-10-12,74499,4064,"[\""Monitor\""]",3065.27,"{\""seasonal\"": \""29%\""}",134149,1,"""Europe""" +2023-04-08,74500,8658,"[\""Tablet\"", \""Keyboard\""]",922.08,"{\"": \""11%\""}",93272,0,"""North America""" +2023-12-25,74501,1741,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",361.91,"{\"": \""12%\""}",52624,1,"""Asia""" +2023-11-16,74502,8383,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4551.62,{},265174,0,"""North America""" +2023-04-21,74503,3206,"[\""Charger\"", \""Headphones\""]",786.83,"{\""seasonal\"": \""7%\""}",290532,0,"""Asia""" +2023-09-05,74504,6710,"[\""Laptop\""]",747.71,"{\"": \""17%\""}",260355,0,"""Asia""" +2024-11-03,74505,5341,"[\""Headphones\"", \""Keyboard\""]",1702.01,{},90436,1,"""South America""" +2024-08-28,74506,5610,"[\""Wireless Mouse\"", \""Charger\""]",4114.86,"{\"": \""27%\""}",165424,0,"""South America""" +2024-02-17,74507,4009,"[\""Phone\"", \""Wireless Mouse\""]",3096.79,"{\""promo\"": \""17%\""}",229299,1,"""Europe""" +2023-02-14,74508,5666,"[\""Keyboard\"", \""Wireless Mouse\""]",4484.51,"{\"": \""6%\""}",151361,0,"""Asia""" +2024-02-21,74509,4311,"[\""Laptop\""]",4520.83,{},173653,0,"""North America""" +2023-05-17,74510,112,"[\""Charger\"", \""Monitor\""]",4932.77,"{\""loyalty\"": \""19%\""}",29611,1,"""South America""" +2023-09-29,74511,8192,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1347.21,{},9153,1,"""Africa""" +2023-09-03,74512,3535,"[\""Phone\"", \""Wireless Mouse\""]",2707.51,{},98778,1,"""South America""" +2024-12-27,74513,3971,"[\""Tablet\""]",3345.15,{},93196,0,"""Africa""" +2024-12-18,74514,384,"[\""Headphones\""]",4955.8,"{\""seasonal\"": \""21%\""}",226269,0,"""North America""" +2023-05-05,74515,2731,"[\""Laptop\"", \""Monitor\""]",1715.43,{},106719,1,"""North America""" +2024-04-13,74516,9804,"[\""Phone\"", \""Headphones\""]",2459.77,{},249745,0,"""Europe""" +2023-11-24,74517,7954,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3363.25,{},118454,1,"""North America""" +2023-08-08,74518,1373,"[\""Laptop\"", \""Keyboard\""]",1919.79,"{\""promo\"": \""10%\""}",139816,1,"""Europe""" +2023-11-19,74519,7752,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",652.19,{},71869,1,"""North America""" +2023-06-22,74520,9796,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2487.97,"{\""loyalty\"": \""19%\""}",29656,1,"""Africa""" +2023-11-27,74521,5295,"[\""Charger\"", \""Wireless Mouse\""]",686.6,"{\""promo\"": \""18%\""}",121282,0,"""South America""" +2023-06-09,74522,3721,"[\""Headphones\"", \""Wireless Mouse\""]",4009.9,"{\"": \""29%\""}",234025,1,"""South America""" +2023-06-12,74523,3064,"[\""Keyboard\"", \""Headphones\""]",1003.59,"{\""loyalty\"": \""16%\""}",235940,1,"""Asia""" +2023-02-11,74524,8511,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",784.78,{},226225,0,"""Europe""" +2024-07-02,74525,3984,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2024.31,"{\"": \""10%\""}",11823,1,"""South America""" +2024-03-16,74526,2286,"[\""Keyboard\"", \""Tablet\""]",744.79,"{\""loyalty\"": \""13%\""}",205754,0,"""Asia""" +2024-06-26,74527,288,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",465.1,"{\""promo\"": \""29%\""}",252054,1,"""Europe""" +2023-09-24,74528,901,"[\""Charger\"", \""Phone\""]",1690.94,"{\""seasonal\"": \""15%\""}",80972,1,"""Africa""" +2023-07-17,74529,5631,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1689.58,"{\""loyalty\"": \""8%\""}",29932,0,"""North America""" +2024-10-27,74530,5538,"[\""Laptop\""]",1419.99,{},46158,1,"""North America""" +2023-03-25,74531,6977,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1268.81,"{\""loyalty\"": \""6%\""}",159998,1,"""Africa""" +2023-04-30,74532,319,"[\""Laptop\"", \""Headphones\""]",4279.07,"{\"": \""7%\""}",39864,1,"""Europe""" +2023-01-01,74533,1204,"[\""Headphones\""]",932.47,{},37141,0,"""South America""" +2023-05-23,74534,8554,"[\""Keyboard\"", \""Phone\""]",328.63,"{\"": \""6%\""}",8615,0,"""Asia""" +2024-06-24,74535,5832,"[\""Phone\"", \""Headphones\""]",4645.23,"{\""seasonal\"": \""29%\""}",236562,1,"""Europe""" +2023-10-02,74536,3154,"[\""Laptop\""]",72.23,{},172876,1,"""Europe""" +2024-09-07,74537,628,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1201.22,{},103371,1,"""Asia""" +2024-03-05,74538,5043,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",657.64,"{\""promo\"": \""22%\""}",69320,1,"""Asia""" +2023-04-12,74539,6913,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",278.77,"{\""promo\"": \""29%\""}",291681,1,"""South America""" +2023-09-08,74540,1252,"[\""Wireless Mouse\""]",1145.61,{},265424,0,"""Europe""" +2023-09-14,74541,7584,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3959.62,"{\""promo\"": \""13%\""}",65237,0,"""Africa""" +2023-01-04,74542,2108,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1886.86,"{\""seasonal\"": \""17%\""}",239115,0,"""Asia""" +2023-06-17,74543,5140,"[\""Headphones\""]",67.52,{},210107,0,"""Asia""" +2023-06-18,74544,7880,"[\""Phone\"", \""Keyboard\""]",3047.31,{},78716,0,"""Europe""" +2023-07-01,74545,9462,"[\""Laptop\"", \""Phone\""]",771.56,{},137057,0,"""Africa""" +2023-04-05,74546,3087,"[\""Laptop\"", \""Phone\""]",3839.87,"{\""seasonal\"": \""28%\""}",164627,1,"""Africa""" +2024-11-23,74547,2133,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3688.83,"{\"": \""24%\""}",230574,0,"""Asia""" +2023-03-15,74548,6469,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4623.04,{},97556,1,"""North America""" +2024-07-08,74549,6826,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1782.27,{},137411,0,"""North America""" +2023-05-19,74550,1703,"[\""Tablet\""]",2408.31,{},286669,1,"""North America""" +2023-06-30,74551,136,"[\""Monitor\""]",4459.06,"{\"": \""8%\""}",37206,1,"""Africa""" +2023-05-17,74552,5542,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2698.78,"{\""seasonal\"": \""18%\""}",27971,0,"""Asia""" +2024-03-17,74553,3616,"[\""Charger\""]",2378.12,"{\"": \""27%\""}",152027,1,"""North America""" +2023-05-31,74554,8931,"[\""Phone\""]",2551.69,{},180412,1,"""Europe""" +2023-05-29,74555,9718,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3434.47,"{\"": \""20%\""}",9203,0,"""Asia""" +2024-12-17,74556,2397,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",428.63,"{\""promo\"": \""21%\""}",296034,1,"""North America""" +2023-01-16,74557,2629,"[\""Keyboard\""]",830.98,{},161195,1,"""South America""" +2024-03-31,74558,2186,"[\""Laptop\""]",115.92,{},297483,1,"""North America""" +2024-11-26,74559,7668,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1216.22,"{\""promo\"": \""13%\""}",33890,0,"""Europe""" +2024-10-12,74560,6642,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1254.76,{},151676,1,"""Africa""" +2024-11-13,74561,629,"[\""Wireless Mouse\""]",3339.63,{},69305,1,"""Asia""" +2024-02-23,74562,1829,"[\""Keyboard\""]",3267.07,{},195190,0,"""North America""" +2023-08-26,74563,6681,"[\""Phone\"", \""Tablet\""]",4306.31,"{\""loyalty\"": \""20%\""}",65396,0,"""Africa""" +2023-11-20,74564,9770,"[\""Charger\"", \""Headphones\""]",281.64,{},180173,1,"""Africa""" +2023-04-26,74565,9946,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",315.28,{},30047,0,"""Africa""" +2023-01-08,74566,6219,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3323.91,"{\""promo\"": \""18%\""}",239170,0,"""North America""" +2024-09-04,74567,9145,"[\""Phone\""]",1910.59,"{\""promo\"": \""7%\""}",212477,0,"""Asia""" +2023-08-24,74568,5705,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3837.07,{},273342,1,"""Africa""" +2023-10-04,74569,9286,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",979.23,{},257123,1,"""Europe""" +2023-05-13,74570,5710,"[\""Wireless Mouse\"", \""Tablet\""]",3100.63,{},192579,0,"""Africa""" +2024-08-17,74571,8787,"[\""Laptop\""]",1352.23,"{\""seasonal\"": \""21%\""}",107071,1,"""South America""" +2024-07-28,74572,6471,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2783.01,{},95648,0,"""Europe""" +2024-05-19,74573,7676,"[\""Monitor\"", \""Tablet\""]",274.36,{},236385,1,"""Africa""" +2023-08-22,74574,2378,"[\""Wireless Mouse\""]",2433.16,"{\""loyalty\"": \""14%\""}",261920,0,"""Europe""" +2023-06-04,74575,8743,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1330.31,"{\"": \""29%\""}",270027,0,"""South America""" +2023-06-05,74576,1655,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",574.97,"{\""loyalty\"": \""23%\""}",216724,1,"""Europe""" +2023-04-03,74577,14,"[\""Charger\""]",2713.12,{},299645,0,"""Europe""" +2024-04-27,74578,7516,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3496.32,{},202813,0,"""Asia""" +2024-11-13,74579,3529,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2997.25,"{\"": \""29%\""}",265897,1,"""Europe""" +2024-04-20,74580,4688,"[\""Phone\""]",2337.74,"{\"": \""30%\""}",27302,0,"""Europe""" +2024-11-30,74581,3449,"[\""Wireless Mouse\""]",3972.23,"{\""promo\"": \""19%\""}",285464,0,"""North America""" +2023-07-07,74582,3772,"[\""Tablet\"", \""Monitor\""]",1633.32,"{\"": \""16%\""}",78605,0,"""North America""" +2024-06-03,74583,9251,"[\""Keyboard\"", \""Phone\""]",1297.54,"{\""promo\"": \""20%\""}",38382,1,"""North America""" +2023-02-15,74584,3256,"[\""Wireless Mouse\"", \""Keyboard\""]",305.1,"{\""seasonal\"": \""11%\""}",154069,0,"""Africa""" +2024-08-27,74585,2243,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1080.58,"{\""promo\"": \""15%\""}",192856,1,"""Europe""" +2023-10-04,74586,5621,"[\""Keyboard\""]",4176.39,{},159237,1,"""Asia""" +2024-12-10,74587,7826,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4041.8,"{\""seasonal\"": \""13%\""}",268377,0,"""Africa""" +2023-09-03,74588,6021,"[\""Monitor\""]",3372.99,"{\""loyalty\"": \""16%\""}",97557,1,"""Europe""" +2023-08-03,74589,9749,"[\""Wireless Mouse\""]",1701.56,{},13588,0,"""Asia""" +2024-01-29,74590,2372,"[\""Wireless Mouse\"", \""Keyboard\""]",2372.72,{},4669,1,"""Africa""" +2024-04-25,74591,3522,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4735.5,{},120086,1,"""Asia""" +2023-02-19,74592,9221,"[\""Tablet\"", \""Headphones\""]",3833.9,{},238583,1,"""Asia""" +2023-04-16,74593,9446,"[\""Wireless Mouse\""]",2252.81,"{\""seasonal\"": \""8%\""}",125623,0,"""North America""" +2023-07-04,74594,91,"[\""Charger\"", \""Phone\""]",1873.85,"{\""promo\"": \""11%\""}",250821,1,"""Africa""" +2024-01-13,74595,1603,"[\""Tablet\""]",2381.89,{},269778,1,"""North America""" +2024-04-01,74596,3334,"[\""Wireless Mouse\""]",4254.93,{},156280,0,"""Africa""" +2024-03-21,74597,8445,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4661.12,{},238851,1,"""Asia""" +2024-03-27,74598,4668,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3515.4,"{\""seasonal\"": \""8%\""}",82830,0,"""South America""" +2023-01-19,74599,7383,"[\""Laptop\""]",4029.25,{},32950,1,"""North America""" +2024-07-28,74600,1754,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4406.31,"{\""seasonal\"": \""27%\""}",124183,0,"""North America""" +2023-11-14,74601,384,"[\""Keyboard\""]",1829.89,"{\"": \""21%\""}",129492,0,"""North America""" +2024-01-08,74602,8096,"[\""Charger\"", \""Laptop\""]",580.33,{},45629,1,"""North America""" +2023-05-13,74603,40,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3199.06,{},184045,0,"""Europe""" +2023-09-04,74604,7986,"[\""Laptop\"", \""Phone\""]",4301.39,{},156577,1,"""South America""" +2024-12-20,74605,68,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3167.49,{},220404,0,"""Asia""" +2023-03-17,74606,8514,"[\""Phone\""]",2853.54,{},255360,0,"""South America""" +2023-02-18,74607,1749,"[\""Monitor\"", \""Tablet\""]",855.27,{},137990,0,"""South America""" +2023-06-01,74608,5547,"[\""Wireless Mouse\""]",1316.78,"{\""promo\"": \""22%\""}",255560,0,"""Africa""" +2023-07-03,74609,3002,"[\""Monitor\""]",1321.71,"{\"": \""5%\""}",236664,0,"""North America""" +2024-02-07,74610,1547,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4776.88,"{\"": \""14%\""}",274811,1,"""Africa""" +2024-06-25,74611,9483,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3960.57,{},18901,1,"""Asia""" +2023-03-15,74612,3796,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3508.52,"{\""loyalty\"": \""10%\""}",28487,0,"""South America""" +2024-04-11,74613,3126,"[\""Laptop\"", \""Monitor\""]",1234.26,{},204070,0,"""Europe""" +2023-12-05,74614,7069,"[\""Laptop\"", \""Wireless Mouse\""]",2518.84,"{\"": \""11%\""}",290063,1,"""Asia""" +2023-03-27,74615,4215,"[\""Phone\"", \""Monitor\""]",311.54,{},196176,1,"""Asia""" +2024-07-21,74616,1900,"[\""Laptop\""]",4855.6,{},68356,0,"""Africa""" +2024-03-26,74617,9636,"[\""Tablet\""]",976.5,"{\""loyalty\"": \""13%\""}",169237,0,"""Asia""" +2024-02-15,74618,1119,"[\""Tablet\"", \""Wireless Mouse\""]",2925.21,{},275687,1,"""South America""" +2024-06-23,74619,5484,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",416.15,{},96185,1,"""Asia""" +2024-08-14,74620,7436,"[\""Keyboard\"", \""Laptop\""]",579.07,{},184443,1,"""North America""" +2023-05-06,74621,8449,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4463.68,{},194769,0,"""Africa""" +2024-05-25,74622,4014,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4895.15,{},217112,1,"""Europe""" +2024-02-08,74623,3384,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3432.34,"{\""seasonal\"": \""30%\""}",268043,1,"""North America""" +2024-07-31,74624,1454,"[\""Phone\""]",4797.61,{},123543,0,"""Africa""" +2023-11-24,74625,2975,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3183.94,{},175233,0,"""Asia""" +2024-06-16,74626,626,"[\""Phone\"", \""Keyboard\""]",3655.91,{},4501,1,"""Europe""" +2024-06-14,74627,8209,"[\""Charger\""]",3174.76,{},209590,1,"""Asia""" +2024-04-12,74628,4936,"[\""Monitor\""]",1042.73,"{\""promo\"": \""23%\""}",5400,1,"""South America""" +2023-02-06,74629,257,"[\""Wireless Mouse\"", \""Headphones\""]",3212.99,{},249942,0,"""Asia""" +2024-10-28,74630,1110,"[\""Headphones\""]",3941.66,{},192314,1,"""North America""" +2023-06-23,74631,2445,"[\""Headphones\"", \""Monitor\""]",97.56,"{\"": \""11%\""}",184158,1,"""North America""" +2024-06-22,74632,1608,"[\""Charger\""]",2913.32,{},124562,0,"""South America""" +2024-06-12,74633,4940,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4098.92,{},149238,0,"""South America""" +2024-05-11,74634,1279,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2441.27,{},140460,1,"""Africa""" +2024-08-02,74635,6168,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1358.63,{},32632,0,"""North America""" +2024-09-28,74636,7162,"[\""Monitor\"", \""Phone\""]",2177.56,{},93612,0,"""Africa""" +2023-02-14,74637,8293,"[\""Headphones\""]",3660.06,"{\""promo\"": \""21%\""}",188968,1,"""Asia""" +2023-10-17,74638,7583,"[\""Monitor\""]",4049.18,"{\""promo\"": \""29%\""}",64186,0,"""North America""" +2023-11-20,74639,6231,"[\""Tablet\""]",304.09,{},293163,0,"""Asia""" +2023-10-25,74640,3848,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1709.57,"{\""seasonal\"": \""25%\""}",185073,0,"""Europe""" +2023-04-17,74641,857,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",672.13,{},52880,1,"""Europe""" +2024-12-24,74642,3166,"[\""Headphones\"", \""Wireless Mouse\""]",2716.78,"{\""seasonal\"": \""19%\""}",284499,1,"""Africa""" +2023-09-11,74643,8578,"[\""Tablet\""]",2965.99,"{\""seasonal\"": \""30%\""}",58309,1,"""Europe""" +2023-01-07,74644,7505,"[\""Wireless Mouse\"", \""Laptop\""]",4469.15,"{\""promo\"": \""11%\""}",24053,0,"""South America""" +2023-10-06,74645,5483,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2341.91,"{\""seasonal\"": \""23%\""}",262106,1,"""Asia""" +2023-12-23,74646,3915,"[\""Keyboard\""]",3923.59,{},263389,0,"""North America""" +2024-01-08,74647,1527,"[\""Monitor\""]",1863.42,"{\""promo\"": \""18%\""}",290264,1,"""North America""" +2024-04-29,74648,5080,"[\""Headphones\""]",4254.97,{},192438,1,"""Asia""" +2024-09-09,74649,3552,"[\""Headphones\"", \""Keyboard\""]",4307.32,{},187036,0,"""Asia""" +2023-07-05,74650,2192,"[\""Headphones\"", \""Monitor\""]",2151.08,{},33918,0,"""Asia""" +2023-04-06,74651,2598,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3060.77,"{\""loyalty\"": \""18%\""}",233438,0,"""North America""" +2023-04-14,74652,2698,"[\""Laptop\"", \""Keyboard\""]",4250.77,"{\"": \""30%\""}",144569,1,"""North America""" +2023-01-10,74653,273,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",454.43,"{\""promo\"": \""27%\""}",207150,1,"""South America""" +2023-07-28,74654,6712,"[\""Charger\""]",2358.21,"{\""seasonal\"": \""18%\""}",93690,1,"""Europe""" +2023-05-18,74655,1717,"[\""Monitor\""]",4277.2,"{\"": \""9%\""}",17817,0,"""North America""" +2024-03-03,74656,5109,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3690.25,{},273699,0,"""South America""" +2023-02-03,74657,7230,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1202.65,{},259037,1,"""Europe""" +2023-07-24,74658,2143,"[\""Keyboard\"", \""Headphones\""]",1610.31,"{\""seasonal\"": \""22%\""}",259147,0,"""Asia""" +2024-01-14,74659,4043,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4938.76,"{\"": \""9%\""}",35419,0,"""Asia""" +2023-08-07,74660,715,"[\""Keyboard\""]",1137.21,"{\""seasonal\"": \""22%\""}",231744,1,"""Asia""" +2024-09-07,74661,77,"[\""Wireless Mouse\"", \""Charger\""]",4160.83,"{\""promo\"": \""19%\""}",103197,1,"""South America""" +2023-02-28,74662,2308,"[\""Wireless Mouse\""]",2095.7,{},170745,0,"""Asia""" +2023-10-08,74663,4407,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",845.59,{},51344,0,"""South America""" +2023-01-26,74664,6312,"[\""Charger\"", \""Tablet\""]",4790.63,{},55573,1,"""Europe""" +2023-04-27,74665,5157,"[\""Phone\""]",4082.6,"{\""loyalty\"": \""24%\""}",218888,0,"""South America""" +2023-12-24,74666,63,"[\""Tablet\"", \""Laptop\""]",3760.95,{},296160,0,"""Asia""" +2023-06-09,74667,6580,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4613.31,"{\""loyalty\"": \""29%\""}",298059,0,"""South America""" +2024-09-19,74668,1682,"[\""Charger\"", \""Tablet\""]",3309.89,{},30169,1,"""Asia""" +2023-09-16,74669,1486,"[\""Wireless Mouse\"", \""Monitor\""]",1037.52,"{\""seasonal\"": \""22%\""}",167224,0,"""Europe""" +2023-06-14,74670,8113,"[\""Phone\"", \""Laptop\""]",1779.36,"{\""loyalty\"": \""30%\""}",46775,1,"""Africa""" +2023-07-31,74671,7010,"[\""Laptop\""]",3894.31,"{\""seasonal\"": \""28%\""}",70223,1,"""North America""" +2023-12-16,74672,3759,"[\""Laptop\""]",1348.66,"{\"": \""29%\""}",156167,1,"""Europe""" +2024-02-14,74673,2540,"[\""Headphones\"", \""Laptop\""]",389.98,{},259076,1,"""Asia""" +2024-01-17,74674,6023,"[\""Wireless Mouse\""]",3095.17,"{\""loyalty\"": \""18%\""}",81816,1,"""Africa""" +2023-01-15,74675,4391,"[\""Laptop\""]",3811.9,"{\""seasonal\"": \""17%\""}",149730,1,"""Asia""" +2024-07-30,74676,1736,"[\""Charger\"", \""Laptop\""]",3397.43,"{\""seasonal\"": \""11%\""}",31896,1,"""Asia""" +2023-03-20,74677,4160,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3576.2,"{\""loyalty\"": \""27%\""}",167264,0,"""Asia""" +2023-08-19,74678,130,"[\""Charger\"", \""Phone\""]",2877.89,{},289148,0,"""Asia""" +2024-11-19,74679,123,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3070.01,{},185115,0,"""Europe""" +2024-01-19,74680,7781,"[\""Phone\"", \""Charger\"", \""Laptop\""]",343.2,{},24883,1,"""Africa""" +2023-03-02,74681,6169,"[\""Tablet\"", \""Phone\""]",4252.09,"{\""promo\"": \""14%\""}",42149,1,"""South America""" +2023-05-18,74682,7748,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4010.03,{},203783,1,"""South America""" +2023-11-29,74683,5748,"[\""Headphones\""]",4615.15,"{\"": \""12%\""}",57418,0,"""North America""" +2023-05-27,74684,5347,"[\""Phone\""]",346.25,"{\""promo\"": \""11%\""}",291456,0,"""Africa""" +2023-12-29,74685,703,"[\""Keyboard\""]",4307.13,"{\""seasonal\"": \""9%\""}",233229,1,"""South America""" +2023-01-28,74686,2655,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4413.8,{},158951,1,"""Asia""" +2023-01-30,74687,7395,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3088.26,{},50655,1,"""North America""" +2024-02-06,74688,7411,"[\""Charger\"", \""Tablet\""]",1856.97,{},280260,1,"""Asia""" +2023-12-09,74689,9949,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4274.32,"{\""seasonal\"": \""17%\""}",177955,0,"""North America""" +2024-09-12,74690,8105,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",122.24,"{\""loyalty\"": \""22%\""}",38288,0,"""Europe""" +2024-10-14,74691,6642,"[\""Wireless Mouse\"", \""Phone\""]",617.6,"{\""promo\"": \""8%\""}",95376,1,"""Asia""" +2024-08-20,74692,2248,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4540.78,{},31551,1,"""South America""" +2024-12-20,74693,3130,"[\""Charger\""]",4464.78,"{\""seasonal\"": \""22%\""}",137581,0,"""South America""" +2024-01-06,74694,6178,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",328.86,"{\"": \""10%\""}",278938,0,"""South America""" +2023-07-07,74695,9174,"[\""Keyboard\""]",907.64,{},80071,1,"""North America""" +2024-11-01,74696,799,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1823.3,{},18650,0,"""Europe""" +2024-11-22,74697,2741,"[\""Charger\"", \""Wireless Mouse\""]",4053.64,"{\""loyalty\"": \""20%\""}",273049,0,"""Europe""" +2023-10-14,74698,8933,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2299.17,{},275566,0,"""Europe""" +2023-08-14,74699,2407,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",87.84,"{\"": \""22%\""}",178084,1,"""North America""" +2023-07-20,74700,2108,"[\""Charger\""]",1110.95,{},190521,1,"""Europe""" +2024-08-02,74701,6248,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1841.53,{},291808,1,"""Africa""" +2023-05-18,74702,5595,"[\""Tablet\"", \""Charger\""]",1620.47,"{\""loyalty\"": \""15%\""}",16238,0,"""Asia""" +2024-09-17,74703,9689,"[\""Laptop\""]",463.37,{},22741,0,"""South America""" +2024-12-14,74704,6682,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3310.68,"{\""seasonal\"": \""30%\""}",183496,0,"""North America""" +2024-12-05,74705,9351,"[\""Charger\"", \""Wireless Mouse\""]",4408.34,"{\"": \""7%\""}",292126,0,"""Asia""" +2023-02-03,74706,4948,"[\""Keyboard\""]",1111.85,{},285869,0,"""Asia""" +2024-08-06,74707,1798,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",82.55,{},128784,1,"""Asia""" +2024-07-24,74708,1550,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4211.17,{},170020,1,"""South America""" +2023-11-01,74709,3518,"[\""Tablet\""]",420.67,{},169563,0,"""South America""" +2024-04-29,74710,9238,"[\""Monitor\"", \""Charger\""]",2408.93,{},211323,0,"""North America""" +2023-09-15,74711,6383,"[\""Keyboard\"", \""Monitor\""]",3081.02,{},242837,1,"""Africa""" +2024-05-16,74712,9041,"[\""Keyboard\""]",463.84,"{\"": \""7%\""}",259004,1,"""North America""" +2024-10-07,74713,2514,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3836.66,{},227789,0,"""North America""" +2023-12-24,74714,2030,"[\""Phone\""]",2737.77,"{\""promo\"": \""27%\""}",288174,1,"""Asia""" +2023-05-04,74715,4530,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",437.68,{},161693,1,"""Asia""" +2023-04-15,74716,4511,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3511.69,{},43880,1,"""Europe""" +2023-03-02,74717,3127,"[\""Laptop\""]",388.35,"{\"": \""18%\""}",81904,0,"""South America""" +2024-03-31,74718,8428,"[\""Monitor\"", \""Wireless Mouse\""]",91.39,"{\""loyalty\"": \""8%\""}",129446,0,"""Africa""" +2024-11-27,74719,5336,"[\""Keyboard\""]",367.99,{},66330,1,"""Africa""" +2024-12-05,74720,4324,"[\""Laptop\"", \""Keyboard\""]",4295.17,"{\""loyalty\"": \""28%\""}",267676,1,"""Europe""" +2024-05-15,74721,8349,"[\""Wireless Mouse\"", \""Tablet\""]",3693.69,"{\""promo\"": \""22%\""}",2142,1,"""Africa""" +2024-07-18,74722,5229,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4196.85,{},57437,0,"""South America""" +2024-10-14,74723,8638,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4280.75,{},231644,0,"""North America""" +2023-01-28,74724,9969,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2995.04,{},16431,1,"""Africa""" +2024-02-24,74725,7280,"[\""Headphones\""]",4135.92,{},294145,0,"""North America""" +2024-05-10,74726,465,"[\""Wireless Mouse\""]",673.62,{},262011,1,"""North America""" +2023-01-21,74727,5610,"[\""Keyboard\""]",4624.83,{},44772,1,"""Asia""" +2024-04-30,74728,9001,"[\""Wireless Mouse\"", \""Monitor\""]",1454.05,{},52573,0,"""South America""" +2023-02-01,74729,9574,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4529.54,{},245318,0,"""South America""" +2024-04-13,74730,4869,"[\""Phone\"", \""Keyboard\""]",789.67,"{\""promo\"": \""16%\""}",63584,0,"""Europe""" +2023-02-22,74731,889,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4652.17,"{\""promo\"": \""25%\""}",287503,0,"""North America""" +2024-07-28,74732,6490,"[\""Monitor\"", \""Charger\""]",3375.45,{},179922,1,"""Europe""" +2023-07-04,74733,1366,"[\""Wireless Mouse\""]",2633.37,{},140014,0,"""Asia""" +2024-09-22,74734,3718,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1465.11,{},203595,1,"""Asia""" +2023-08-01,74735,2428,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",806.69,{},145692,1,"""Europe""" +2024-09-26,74736,7098,"[\""Tablet\"", \""Headphones\""]",2970.5,"{\""promo\"": \""25%\""}",291276,1,"""Europe""" +2023-03-19,74737,6938,"[\""Tablet\""]",4412.14,{},130224,0,"""North America""" +2023-10-24,74738,2137,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3749.94,{},270912,0,"""Africa""" +2024-04-16,74739,9406,"[\""Headphones\"", \""Tablet\""]",2260.44,{},196589,1,"""Europe""" +2023-10-15,74740,1143,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4772.2,{},274929,1,"""Africa""" +2024-10-20,74741,7031,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2020.95,{},19171,1,"""Asia""" +2023-08-23,74742,5255,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3952.51,{},177322,0,"""Europe""" +2023-12-26,74743,4701,"[\""Headphones\"", \""Tablet\""]",4915.17,"{\"": \""20%\""}",61284,1,"""Europe""" +2023-08-12,74744,470,"[\""Laptop\"", \""Monitor\""]",3401.45,{},127232,1,"""South America""" +2024-06-01,74745,7798,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4711.43,"{\""promo\"": \""11%\""}",78644,0,"""Asia""" +2024-08-05,74746,8706,"[\""Charger\"", \""Phone\""]",3516.9,"{\"": \""18%\""}",247052,0,"""South America""" +2024-09-21,74747,5786,"[\""Laptop\""]",4971.46,"{\""loyalty\"": \""19%\""}",144495,0,"""North America""" +2023-05-01,74748,8920,"[\""Tablet\""]",531.04,{},297077,1,"""Asia""" +2024-01-24,74749,9137,"[\""Monitor\"", \""Wireless Mouse\""]",3878.44,{},165216,0,"""Europe""" +2023-06-17,74750,8737,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",134.35,"{\""loyalty\"": \""16%\""}",175800,0,"""Europe""" +2024-02-18,74751,2652,"[\""Charger\"", \""Headphones\""]",1863.88,{},33293,1,"""North America""" +2024-01-31,74752,1996,"[\""Charger\"", \""Wireless Mouse\""]",416.73,{},25553,1,"""North America""" +2023-04-20,74753,7195,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1720.1,{},57458,0,"""Europe""" +2023-03-03,74754,6635,"[\""Laptop\"", \""Headphones\""]",4563.33,"{\""seasonal\"": \""25%\""}",76613,1,"""Asia""" +2023-03-01,74755,5829,"[\""Phone\"", \""Keyboard\""]",1692.37,"{\""loyalty\"": \""29%\""}",48073,1,"""North America""" +2023-03-23,74756,2683,"[\""Wireless Mouse\""]",4901.19,{},105261,1,"""Europe""" +2023-05-02,74757,9330,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3045.53,{},194133,1,"""Africa""" +2024-03-23,74758,6640,"[\""Keyboard\""]",3438.54,{},79180,0,"""South America""" +2024-02-01,74759,3560,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4708.84,"{\""loyalty\"": \""23%\""}",152486,1,"""Africa""" +2024-10-03,74760,7322,"[\""Tablet\"", \""Monitor\""]",3404.56,"{\""promo\"": \""23%\""}",45606,1,"""Asia""" +2023-04-08,74761,755,"[\""Laptop\"", \""Phone\""]",3838.0,"{\"": \""8%\""}",22565,1,"""Asia""" +2023-07-28,74762,2521,"[\""Keyboard\"", \""Wireless Mouse\""]",2714.17,{},235510,0,"""North America""" +2024-04-26,74763,6133,"[\""Keyboard\"", \""Laptop\""]",1607.0,{},3202,1,"""Europe""" +2024-10-21,74764,9599,"[\""Keyboard\""]",90.57,"{\""loyalty\"": \""23%\""}",156981,1,"""South America""" +2023-04-25,74765,4176,"[\""Headphones\""]",3053.54,{},232475,1,"""Africa""" +2024-07-25,74766,1761,"[\""Monitor\"", \""Tablet\""]",1257.11,"{\"": \""12%\""}",98784,0,"""Europe""" +2023-12-25,74767,1930,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2099.98,{},31868,1,"""Europe""" +2023-10-13,74768,1139,"[\""Monitor\"", \""Laptop\""]",3628.75,{},227147,0,"""Asia""" +2023-12-07,74769,6619,"[\""Phone\"", \""Wireless Mouse\""]",2255.29,"{\""promo\"": \""28%\""}",62486,0,"""North America""" +2024-05-21,74770,4839,"[\""Tablet\"", \""Wireless Mouse\""]",2470.37,"{\"": \""11%\""}",101054,1,"""South America""" +2024-06-28,74771,5301,"[\""Tablet\""]",1303.33,{},57841,1,"""Asia""" +2024-06-11,74772,5889,"[\""Monitor\"", \""Keyboard\""]",404.21,"{\""seasonal\"": \""8%\""}",247116,1,"""North America""" +2023-04-30,74773,4733,"[\""Tablet\""]",1679.76,{},39841,0,"""North America""" +2023-09-15,74774,8052,"[\""Laptop\""]",1475.77,{},227311,0,"""Africa""" +2023-04-27,74775,6873,"[\""Phone\"", \""Tablet\""]",212.27,{},48667,1,"""South America""" +2023-05-07,74776,7,"[\""Tablet\""]",3820.83,{},85297,1,"""South America""" +2023-06-03,74777,7962,"[\""Wireless Mouse\""]",2896.56,"{\""loyalty\"": \""6%\""}",142152,1,"""North America""" +2023-12-10,74778,764,"[\""Tablet\""]",181.23,{},54535,1,"""South America""" +2023-05-21,74779,7570,"[\""Tablet\"", \""Monitor\""]",4398.1,"{\"": \""12%\""}",193177,1,"""South America""" +2023-08-31,74780,7068,"[\""Tablet\""]",1750.97,"{\""promo\"": \""29%\""}",183136,0,"""North America""" +2024-02-09,74781,4326,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3187.44,"{\"": \""8%\""}",2527,0,"""Asia""" +2024-02-04,74782,3449,"[\""Charger\"", \""Headphones\""]",2029.24,"{\""seasonal\"": \""10%\""}",184271,0,"""Europe""" +2024-01-14,74783,2457,"[\""Charger\""]",1519.56,{},35395,0,"""South America""" +2024-03-16,74784,7057,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2866.4,"{\"": \""14%\""}",209716,0,"""Asia""" +2024-06-18,74785,8079,"[\""Charger\""]",180.96,"{\""seasonal\"": \""20%\""}",129211,1,"""Asia""" +2024-10-29,74786,2346,"[\""Phone\""]",1433.77,{},122334,0,"""North America""" +2024-10-28,74787,8708,"[\""Wireless Mouse\""]",1504.05,"{\""seasonal\"": \""27%\""}",11076,0,"""Asia""" +2024-06-12,74788,7669,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4778.14,"{\""seasonal\"": \""6%\""}",159170,1,"""Europe""" +2023-06-14,74789,1415,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",389.66,"{\""loyalty\"": \""9%\""}",169747,1,"""South America""" +2023-09-09,74790,1345,"[\""Keyboard\"", \""Tablet\""]",4190.27,"{\"": \""13%\""}",195413,1,"""South America""" +2023-04-05,74791,1172,"[\""Headphones\""]",4162.01,{},217264,1,"""Africa""" +2024-01-26,74792,1524,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3172.53,"{\"": \""10%\""}",60019,1,"""Asia""" +2024-01-29,74793,963,"[\""Monitor\""]",1737.01,"{\""seasonal\"": \""28%\""}",5916,1,"""North America""" +2024-08-24,74794,836,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1210.1,{},50525,1,"""Asia""" +2024-11-16,74795,8288,"[\""Charger\""]",3161.02,"{\""seasonal\"": \""21%\""}",20488,1,"""Africa""" +2024-04-28,74796,9262,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4280.71,"{\""seasonal\"": \""23%\""}",74901,1,"""South America""" +2023-08-12,74797,9154,"[\""Headphones\""]",2799.49,{},287577,0,"""Africa""" +2024-09-24,74798,1536,"[\""Keyboard\"", \""Wireless Mouse\""]",4413.15,"{\""promo\"": \""7%\""}",9171,1,"""South America""" +2024-08-16,74799,8489,"[\""Headphones\""]",2371.46,{},289579,0,"""Asia""" +2023-10-23,74800,7044,"[\""Headphones\""]",3217.53,"{\"": \""5%\""}",209529,1,"""North America""" +2023-03-14,74801,3268,"[\""Laptop\"", \""Charger\""]",4323.69,{},100634,1,"""Africa""" +2023-10-31,74802,6830,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1390.8,{},91698,1,"""Europe""" +2024-04-19,74803,1965,"[\""Keyboard\""]",4569.46,"{\""loyalty\"": \""9%\""}",95483,0,"""Asia""" +2024-06-24,74804,9322,"[\""Charger\"", \""Tablet\""]",151.8,"{\""seasonal\"": \""10%\""}",11425,1,"""Asia""" +2024-09-18,74805,3427,"[\""Headphones\"", \""Wireless Mouse\""]",1518.41,{},255712,1,"""South America""" +2024-08-21,74806,7936,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",432.64,"{\""seasonal\"": \""26%\""}",107307,1,"""Europe""" +2023-10-12,74807,1912,"[\""Charger\""]",4110.86,{},228584,1,"""Asia""" +2024-02-04,74808,8443,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4379.06,"{\""promo\"": \""17%\""}",145074,0,"""North America""" +2023-07-05,74809,8097,"[\""Tablet\"", \""Charger\""]",1319.74,"{\"": \""5%\""}",39115,0,"""North America""" +2024-06-24,74810,5954,"[\""Phone\""]",2196.08,"{\""promo\"": \""23%\""}",146249,1,"""Asia""" +2024-10-05,74811,7974,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1080.88,{},276616,0,"""Europe""" +2024-07-13,74812,2260,"[\""Headphones\""]",1174.74,{},9139,0,"""South America""" +2023-07-18,74813,5508,"[\""Phone\"", \""Laptop\""]",1724.45,"{\""loyalty\"": \""6%\""}",36576,1,"""South America""" +2024-03-30,74814,1688,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4422.25,"{\"": \""13%\""}",58924,1,"""Asia""" +2024-12-21,74815,9746,"[\""Wireless Mouse\"", \""Laptop\""]",1398.64,"{\"": \""23%\""}",297883,0,"""Europe""" +2023-04-29,74816,6222,"[\""Headphones\"", \""Laptop\""]",3073.65,{},113539,1,"""South America""" +2024-02-14,74817,5071,"[\""Monitor\""]",2216.49,"{\""promo\"": \""15%\""}",192164,1,"""Asia""" +2023-07-08,74818,4044,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",937.51,{},96863,1,"""Europe""" +2023-03-22,74819,9124,"[\""Keyboard\"", \""Charger\""]",283.74,{},112369,1,"""Africa""" +2023-10-19,74820,5623,"[\""Tablet\""]",3033.78,"{\""loyalty\"": \""20%\""}",66017,1,"""Europe""" +2023-10-20,74821,9176,"[\""Wireless Mouse\""]",924.55,{},219554,1,"""North America""" +2024-05-03,74822,5337,"[\""Wireless Mouse\"", \""Laptop\""]",4065.66,"{\"": \""18%\""}",69601,1,"""Europe""" +2024-02-08,74823,9557,"[\""Charger\""]",4322.9,{},279318,1,"""Asia""" +2024-11-14,74824,1041,"[\""Monitor\"", \""Tablet\""]",3739.66,"{\""loyalty\"": \""28%\""}",115942,0,"""Africa""" +2023-01-19,74825,4963,"[\""Tablet\"", \""Headphones\""]",1534.82,"{\"": \""26%\""}",42932,0,"""North America""" +2023-01-06,74826,8947,"[\""Laptop\""]",965.81,{},174934,0,"""Africa""" +2023-02-10,74827,47,"[\""Charger\"", \""Monitor\""]",638.92,{},219894,0,"""South America""" +2024-01-08,74828,515,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4477.5,{},9999,1,"""South America""" +2023-09-19,74829,8085,"[\""Keyboard\""]",2717.16,"{\""seasonal\"": \""19%\""}",93392,0,"""Asia""" +2023-05-05,74830,3126,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1905.38,"{\""seasonal\"": \""21%\""}",182487,1,"""South America""" +2024-01-23,74831,4380,"[\""Laptop\""]",3935.44,"{\""promo\"": \""12%\""}",240196,0,"""Africa""" +2024-03-03,74832,9971,"[\""Headphones\""]",4092.9,{},139976,1,"""Europe""" +2024-01-26,74833,7672,"[\""Headphones\"", \""Keyboard\""]",3233.72,{},176670,0,"""North America""" +2024-12-07,74834,2809,"[\""Keyboard\"", \""Tablet\""]",3287.05,{},77411,0,"""Africa""" +2024-05-29,74835,3739,"[\""Charger\""]",1229.63,"{\"": \""28%\""}",269515,0,"""Europe""" +2023-07-25,74836,9121,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4633.72,"{\""loyalty\"": \""22%\""}",250480,1,"""North America""" +2024-06-08,74837,7817,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3891.38,"{\"": \""5%\""}",159582,1,"""Asia""" +2023-10-24,74838,6261,"[\""Monitor\""]",3272.45,{},81500,1,"""North America""" +2024-10-16,74839,645,"[\""Charger\"", \""Tablet\""]",1337.43,{},85137,0,"""Africa""" +2024-05-19,74840,7006,"[\""Charger\"", \""Phone\""]",1373.3,{},93093,0,"""North America""" +2023-11-14,74841,1361,"[\""Headphones\"", \""Wireless Mouse\""]",3741.24,{},264360,0,"""South America""" +2023-04-17,74842,9666,"[\""Keyboard\""]",3649.54,{},285823,1,"""North America""" +2024-01-21,74843,6631,"[\""Headphones\""]",1082.95,{},148786,0,"""Europe""" +2024-03-09,74844,529,"[\""Keyboard\""]",538.47,{},87637,1,"""North America""" +2024-10-15,74845,3523,"[\""Tablet\""]",4602.13,{},226547,1,"""Africa""" +2024-05-13,74846,1468,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1455.25,"{\""seasonal\"": \""17%\""}",70989,1,"""Europe""" +2023-08-01,74847,8004,"[\""Keyboard\""]",1309.97,"{\"": \""21%\""}",254994,1,"""Europe""" +2024-10-23,74848,1737,"[\""Wireless Mouse\"", \""Monitor\""]",4992.22,{},136880,0,"""Europe""" +2023-06-24,74849,3131,"[\""Wireless Mouse\"", \""Monitor\""]",1924.17,"{\"": \""9%\""}",167435,1,"""South America""" +2023-10-04,74850,5887,"[\""Headphones\""]",1036.99,{},33544,0,"""Africa""" +2023-04-08,74851,5667,"[\""Headphones\"", \""Laptop\""]",3108.84,"{\""seasonal\"": \""23%\""}",267075,0,"""South America""" +2024-09-27,74852,6243,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",949.53,"{\""seasonal\"": \""12%\""}",139688,1,"""South America""" +2023-03-08,74853,4937,"[\""Charger\"", \""Phone\""]",1530.73,"{\""seasonal\"": \""28%\""}",270205,0,"""North America""" +2024-10-09,74854,567,"[\""Charger\""]",3204.24,"{\""seasonal\"": \""21%\""}",143732,1,"""Africa""" +2023-11-14,74855,260,"[\""Headphones\""]",1140.16,{},207024,1,"""Europe""" +2023-01-01,74856,8247,"[\""Tablet\"", \""Phone\""]",1287.21,{},184927,0,"""Europe""" +2024-11-16,74857,1125,"[\""Headphones\"", \""Monitor\""]",4126.72,{},194563,0,"""Europe""" +2024-10-03,74858,3153,"[\""Phone\""]",4429.3,"{\""promo\"": \""16%\""}",186614,0,"""North America""" +2024-02-06,74859,5910,"[\""Charger\"", \""Keyboard\""]",4876.52,"{\""loyalty\"": \""23%\""}",132767,1,"""Europe""" +2024-10-30,74860,9223,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4291.1,{},289612,1,"""Europe""" +2023-04-13,74861,3236,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2477.54,{},256042,1,"""North America""" +2023-02-11,74862,6649,"[\""Keyboard\"", \""Laptop\""]",353.9,"{\"": \""21%\""}",271581,0,"""North America""" +2023-02-25,74863,6413,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3185.38,{},28889,0,"""Europe""" +2023-02-19,74864,7655,"[\""Laptop\""]",2251.61,"{\"": \""17%\""}",57520,1,"""North America""" +2024-07-31,74865,3412,"[\""Wireless Mouse\"", \""Tablet\""]",4338.84,{},89381,0,"""Europe""" +2023-10-05,74866,2944,"[\""Keyboard\"", \""Charger\""]",4583.55,{},198072,1,"""Europe""" +2023-08-13,74867,4238,"[\""Charger\"", \""Headphones\""]",1066.16,{},108910,0,"""North America""" +2024-06-11,74868,4642,"[\""Keyboard\"", \""Charger\""]",4166.0,{},164398,1,"""North America""" +2024-10-19,74869,7482,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2392.59,{},171119,1,"""Europe""" +2024-08-30,74870,7503,"[\""Tablet\"", \""Monitor\""]",93.58,{},62702,1,"""Africa""" +2024-07-19,74871,3748,"[\""Tablet\""]",3378.17,"{\"": \""25%\""}",98482,0,"""Asia""" +2024-06-19,74872,8783,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",730.5,"{\"": \""27%\""}",94316,0,"""Asia""" +2023-11-28,74873,1695,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2096.66,{},93385,0,"""Asia""" +2024-01-21,74874,7614,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1050.22,"{\""seasonal\"": \""6%\""}",30204,0,"""North America""" +2024-02-05,74875,8373,"[\""Phone\"", \""Tablet\""]",1338.91,"{\""promo\"": \""12%\""}",60271,1,"""North America""" +2024-11-23,74876,5807,"[\""Phone\"", \""Monitor\""]",1546.66,{},106709,0,"""North America""" +2023-08-05,74877,247,"[\""Monitor\"", \""Keyboard\""]",2199.82,{},119373,0,"""Asia""" +2024-10-21,74878,8534,"[\""Headphones\"", \""Wireless Mouse\""]",4866.3,{},32948,1,"""Africa""" +2024-12-09,74879,1572,"[\""Charger\"", \""Keyboard\""]",3346.9,{},105575,1,"""Europe""" +2024-09-10,74880,6054,"[\""Laptop\""]",1641.0,"{\""loyalty\"": \""25%\""}",277061,1,"""South America""" +2024-06-22,74881,5089,"[\""Monitor\""]",580.15,"{\""loyalty\"": \""28%\""}",257323,1,"""Africa""" +2023-01-17,74882,8393,"[\""Wireless Mouse\"", \""Headphones\""]",1493.62,"{\"": \""11%\""}",86066,0,"""Europe""" +2024-10-04,74883,8640,"[\""Tablet\"", \""Laptop\""]",150.39,"{\"": \""16%\""}",65481,1,"""Asia""" +2024-04-17,74884,4747,"[\""Laptop\""]",4019.43,{},5131,1,"""South America""" +2023-10-18,74885,5448,"[\""Monitor\""]",1302.0,{},174619,0,"""Africa""" +2024-09-11,74886,4369,"[\""Charger\""]",520.56,{},191052,1,"""Europe""" +2023-07-05,74887,4206,"[\""Charger\""]",2824.64,"{\"": \""7%\""}",246814,0,"""Europe""" +2024-11-18,74888,8439,"[\""Keyboard\""]",3125.6,{},27113,0,"""Europe""" +2023-05-22,74889,843,"[\""Wireless Mouse\"", \""Laptop\""]",4927.54,"{\""loyalty\"": \""24%\""}",145802,1,"""Asia""" +2023-01-18,74890,6368,"[\""Charger\""]",3204.42,"{\""loyalty\"": \""5%\""}",262261,1,"""South America""" +2024-08-05,74891,8758,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",518.8,{},126340,0,"""Asia""" +2024-03-11,74892,1839,"[\""Headphones\"", \""Monitor\""]",4240.41,"{\""promo\"": \""24%\""}",239782,0,"""North America""" +2023-02-04,74893,3201,"[\""Headphones\"", \""Tablet\""]",564.04,"{\"": \""8%\""}",50875,1,"""South America""" +2024-01-07,74894,4527,"[\""Laptop\"", \""Charger\""]",614.82,{},20021,0,"""South America""" +2023-01-24,74895,7698,"[\""Monitor\""]",4637.07,{},12368,0,"""Europe""" +2023-01-13,74896,1336,"[\""Monitor\"", \""Headphones\""]",613.87,"{\""loyalty\"": \""18%\""}",253796,1,"""South America""" +2023-01-15,74897,3087,"[\""Tablet\""]",128.66,{},180641,0,"""North America""" +2023-07-08,74898,4968,"[\""Tablet\"", \""Wireless Mouse\""]",1368.28,{},236928,1,"""North America""" +2024-08-15,74899,6177,"[\""Wireless Mouse\""]",4890.31,"{\""promo\"": \""27%\""}",168932,1,"""Europe""" +2023-10-29,74900,930,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3679.94,"{\""promo\"": \""30%\""}",166174,0,"""South America""" +2023-12-05,74901,221,"[\""Charger\""]",1441.17,"{\""seasonal\"": \""14%\""}",65809,1,"""North America""" +2023-09-14,74902,9092,"[\""Wireless Mouse\""]",2721.48,"{\""promo\"": \""22%\""}",42246,0,"""Africa""" +2024-05-28,74903,1698,"[\""Phone\""]",1197.55,"{\"": \""30%\""}",148060,0,"""Europe""" +2023-03-05,74904,1854,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",278.99,"{\""loyalty\"": \""19%\""}",82950,1,"""North America""" +2024-02-03,74905,5920,"[\""Monitor\""]",357.49,{},82275,0,"""Europe""" +2024-03-11,74906,8498,"[\""Keyboard\""]",3437.19,"{\""promo\"": \""27%\""}",31379,1,"""Europe""" +2024-03-11,74907,7205,"[\""Keyboard\""]",3816.59,"{\""loyalty\"": \""18%\""}",232110,0,"""Africa""" +2024-04-23,74908,2501,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1574.89,{},165626,1,"""South America""" +2024-04-15,74909,2043,"[\""Wireless Mouse\""]",2053.3,"{\"": \""28%\""}",20884,0,"""Asia""" +2023-01-18,74910,9985,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",930.68,"{\"": \""23%\""}",268940,0,"""Africa""" +2023-11-04,74911,7062,"[\""Tablet\"", \""Wireless Mouse\""]",4519.14,"{\"": \""15%\""}",230009,1,"""Asia""" +2023-08-01,74912,310,"[\""Charger\""]",457.21,{},77624,0,"""Asia""" +2023-04-07,74913,6685,"[\""Laptop\""]",3913.29,{},288875,1,"""South America""" +2024-02-05,74914,5210,"[\""Phone\""]",4085.41,{},20584,0,"""Asia""" +2024-11-21,74915,1499,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1431.82,"{\"": \""25%\""}",175170,0,"""North America""" +2023-10-29,74916,2218,"[\""Headphones\"", \""Keyboard\""]",1104.27,"{\"": \""30%\""}",72579,1,"""South America""" +2024-05-28,74917,8718,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1233.46,{},11775,0,"""North America""" +2024-08-25,74918,264,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4505.7,{},206032,1,"""North America""" +2024-12-06,74919,2922,"[\""Tablet\"", \""Laptop\""]",3724.17,"{\"": \""15%\""}",117494,1,"""Africa""" +2023-03-14,74920,7091,"[\""Keyboard\"", \""Tablet\""]",1565.24,{},96100,1,"""Asia""" +2024-04-20,74921,5783,"[\""Headphones\""]",3807.62,{},99572,0,"""Africa""" +2024-11-18,74922,2911,"[\""Phone\"", \""Wireless Mouse\""]",4510.86,"{\"": \""29%\""}",232376,0,"""Asia""" +2023-10-15,74923,1193,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2503.24,{},231629,0,"""South America""" +2024-09-08,74924,3143,"[\""Wireless Mouse\"", \""Monitor\""]",2940.69,"{\""promo\"": \""6%\""}",56410,0,"""Asia""" +2024-09-20,74925,5476,"[\""Wireless Mouse\""]",4606.15,"{\""seasonal\"": \""21%\""}",82206,1,"""North America""" +2024-11-17,74926,7904,"[\""Phone\""]",1501.51,"{\"": \""22%\""}",194241,0,"""Europe""" +2023-10-28,74927,6465,"[\""Laptop\""]",4887.79,{},83024,0,"""South America""" +2023-08-12,74928,3546,"[\""Tablet\""]",2477.64,"{\""seasonal\"": \""24%\""}",179934,0,"""Africa""" +2024-06-08,74929,3806,"[\""Headphones\""]",1508.74,"{\""promo\"": \""22%\""}",11742,1,"""Africa""" +2023-05-11,74930,3627,"[\""Laptop\""]",3243.55,{},206744,1,"""Africa""" +2024-03-29,74931,5856,"[\""Headphones\"", \""Laptop\""]",4545.47,{},168500,0,"""Asia""" +2024-02-01,74932,4989,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2095.16,"{\""promo\"": \""9%\""}",74671,1,"""Europe""" +2023-03-07,74933,7301,"[\""Charger\""]",4531.01,{},56624,0,"""Asia""" +2024-04-09,74934,3689,"[\""Wireless Mouse\"", \""Laptop\""]",3613.01,{},24186,0,"""Asia""" +2024-02-10,74935,7368,"[\""Monitor\""]",573.53,"{\""promo\"": \""14%\""}",10194,0,"""South America""" +2023-07-05,74936,7641,"[\""Charger\"", \""Laptop\""]",3011.76,"{\""promo\"": \""6%\""}",162064,1,"""South America""" +2023-04-12,74937,9140,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3822.66,{},149462,1,"""Africa""" +2024-07-25,74938,8191,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1688.23,{},173663,0,"""Asia""" +2024-08-09,74939,9129,"[\""Charger\""]",1523.44,"{\""promo\"": \""21%\""}",22057,1,"""Europe""" +2024-09-14,74940,5909,"[\""Keyboard\"", \""Tablet\""]",4981.07,{},83494,0,"""Europe""" +2024-03-09,74941,695,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1880.72,{},230219,1,"""Europe""" +2023-05-27,74942,7366,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3169.14,{},3194,0,"""North America""" +2023-05-16,74943,2110,"[\""Charger\"", \""Wireless Mouse\""]",538.97,"{\"": \""9%\""}",49453,0,"""Asia""" +2024-10-30,74944,2831,"[\""Tablet\""]",4962.91,{},249813,0,"""Africa""" +2023-12-13,74945,9169,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2071.28,{},74219,0,"""Asia""" +2024-12-16,74946,6248,"[\""Keyboard\""]",2341.71,"{\""seasonal\"": \""9%\""}",138512,0,"""Asia""" +2023-08-01,74947,1100,"[\""Keyboard\""]",4476.19,{},292941,1,"""South America""" +2024-09-20,74948,3186,"[\""Headphones\"", \""Charger\""]",1028.57,{},280736,1,"""Africa""" +2024-05-19,74949,7387,"[\""Tablet\""]",2676.58,"{\"": \""29%\""}",224588,1,"""Asia""" +2024-12-04,74950,7144,"[\""Wireless Mouse\""]",3187.75,{},10498,1,"""Europe""" +2024-03-31,74951,9641,"[\""Phone\""]",4990.82,{},216346,1,"""Europe""" +2024-04-13,74952,5311,"[\""Wireless Mouse\"", \""Phone\""]",1386.81,{},68723,0,"""Europe""" +2024-06-16,74953,9420,"[\""Phone\"", \""Tablet\""]",4718.52,"{\""loyalty\"": \""30%\""}",144625,1,"""Africa""" +2024-04-15,74954,1309,"[\""Tablet\"", \""Charger\""]",918.62,"{\""seasonal\"": \""16%\""}",223452,1,"""North America""" +2024-06-30,74955,6797,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2917.61,{},277814,0,"""South America""" +2024-04-29,74956,3507,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",873.4,{},30994,1,"""Africa""" +2023-01-10,74957,981,"[\""Charger\"", \""Tablet\""]",1246.49,{},10258,1,"""South America""" +2024-10-16,74958,7885,"[\""Phone\""]",1245.76,"{\"": \""20%\""}",48716,1,"""Europe""" +2024-11-18,74959,7957,"[\""Tablet\"", \""Keyboard\""]",2328.18,{},275271,1,"""North America""" +2023-03-21,74960,6670,"[\""Phone\""]",2087.82,{},292162,1,"""South America""" +2023-11-07,74961,7970,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4666.38,{},45188,0,"""Asia""" +2023-07-10,74962,7318,"[\""Laptop\""]",387.76,{},205683,0,"""Africa""" +2023-01-30,74963,9948,"[\""Laptop\""]",4493.46,{},115835,1,"""Africa""" +2023-09-28,74964,3085,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2056.27,"{\""loyalty\"": \""6%\""}",8766,1,"""North America""" +2023-03-29,74965,9597,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2532.2,{},109949,0,"""Africa""" +2023-10-31,74966,2158,"[\""Tablet\""]",3407.25,{},112351,0,"""Europe""" +2023-04-02,74967,503,"[\""Laptop\"", \""Tablet\""]",2908.98,{},58965,0,"""South America""" +2023-01-17,74968,7780,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2205.1,{},122711,0,"""Asia""" +2024-03-13,74969,1541,"[\""Monitor\"", \""Laptop\""]",2406.54,"{\""loyalty\"": \""7%\""}",111633,1,"""Europe""" +2024-10-31,74970,1850,"[\""Tablet\"", \""Laptop\""]",4578.73,{},218127,1,"""Africa""" +2023-07-06,74971,417,"[\""Wireless Mouse\"", \""Keyboard\""]",498.86,{},178218,1,"""Africa""" +2023-04-13,74972,1169,"[\""Charger\""]",1399.05,{},126840,0,"""South America""" +2024-11-23,74973,1900,"[\""Laptop\"", \""Monitor\""]",1799.35,{},29248,0,"""Asia""" +2023-05-09,74974,7914,"[\""Keyboard\""]",645.24,{},26083,1,"""Africa""" +2024-01-27,74975,750,"[\""Charger\"", \""Monitor\""]",462.18,{},23958,0,"""South America""" +2024-07-12,74976,401,"[\""Tablet\""]",4244.77,"{\"": \""9%\""}",26400,1,"""Africa""" +2024-12-26,74977,196,"[\""Headphones\"", \""Monitor\""]",492.8,"{\"": \""18%\""}",48372,1,"""North America""" +2023-04-18,74978,7203,"[\""Keyboard\""]",2206.35,{},225755,0,"""South America""" +2024-06-11,74979,5407,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",521.04,{},214227,0,"""South America""" +2024-01-06,74980,1671,"[\""Keyboard\"", \""Headphones\""]",3466.55,"{\""loyalty\"": \""6%\""}",26230,1,"""Africa""" +2023-11-14,74981,112,"[\""Wireless Mouse\"", \""Charger\""]",2387.77,"{\"": \""21%\""}",146260,1,"""Europe""" +2024-04-05,74982,6293,"[\""Headphones\""]",185.39,"{\""loyalty\"": \""29%\""}",33888,0,"""Asia""" +2024-11-29,74983,438,"[\""Laptop\""]",1330.3,"{\""seasonal\"": \""29%\""}",171654,0,"""North America""" +2024-08-23,74984,1627,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1316.61,"{\""loyalty\"": \""13%\""}",210612,0,"""Africa""" +2024-07-03,74985,6228,"[\""Monitor\"", \""Laptop\""]",4571.52,{},203995,0,"""North America""" +2024-11-21,74986,4371,"[\""Phone\"", \""Headphones\""]",4702.57,{},134979,1,"""Asia""" +2023-02-03,74987,4413,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3822.28,"{\""promo\"": \""5%\""}",82831,0,"""Asia""" +2024-07-19,74988,3720,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1976.11,"{\"": \""9%\""}",70896,0,"""North America""" +2023-02-05,74989,4800,"[\""Phone\"", \""Laptop\""]",3404.79,"{\""loyalty\"": \""17%\""}",145673,1,"""North America""" +2024-02-17,74990,1223,"[\""Keyboard\""]",326.86,{},234028,0,"""South America""" +2023-03-13,74991,1630,"[\""Charger\"", \""Tablet\""]",1808.76,{},181400,0,"""Europe""" +2024-03-27,74992,6713,"[\""Laptop\""]",2445.09,{},295623,1,"""Africa""" +2024-10-23,74993,1238,"[\""Phone\"", \""Keyboard\""]",220.01,"{\"": \""24%\""}",283387,1,"""Europe""" +2024-01-12,74994,2321,"[\""Headphones\"", \""Charger\""]",3600.35,"{\"": \""11%\""}",217299,0,"""North America""" +2024-02-13,74995,1929,"[\""Keyboard\""]",2721.97,"{\""promo\"": \""16%\""}",232058,1,"""Asia""" +2023-07-14,74996,7176,"[\""Monitor\"", \""Keyboard\""]",3875.4,{},272626,0,"""South America""" +2023-03-21,74997,4464,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2736.43,"{\"": \""26%\""}",134912,0,"""Africa""" +2024-08-19,74998,3175,"[\""Wireless Mouse\""]",2343.23,"{\""loyalty\"": \""10%\""}",196091,1,"""South America""" +2024-09-15,74999,771,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2289.17,"{\"": \""23%\""}",169374,0,"""Europe""" +2023-10-28,75000,5770,"[\""Wireless Mouse\"", \""Laptop\""]",3320.76,{},94841,1,"""North America""" +2023-10-01,75001,1667,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3257.91,{},59459,0,"""Asia""" +2024-12-15,75002,3268,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4209.1,"{\""promo\"": \""13%\""}",82556,0,"""South America""" +2024-12-22,75003,8219,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",769.93,{},184556,0,"""Asia""" +2024-12-04,75004,5786,"[\""Charger\""]",4057.31,"{\"": \""7%\""}",122798,1,"""Asia""" +2023-01-23,75005,5770,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",367.49,"{\"": \""14%\""}",25958,1,"""North America""" +2023-07-28,75006,8696,"[\""Wireless Mouse\"", \""Laptop\""]",3203.1,"{\"": \""19%\""}",184364,1,"""South America""" +2023-07-18,75007,6999,"[\""Laptop\""]",4723.16,{},55866,0,"""Africa""" +2024-10-28,75008,1657,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1836.5,"{\""promo\"": \""11%\""}",201737,0,"""Asia""" +2024-07-10,75009,4660,"[\""Headphones\""]",2977.94,{},246131,1,"""North America""" +2024-07-10,75010,1702,"[\""Keyboard\""]",1290.45,"{\""seasonal\"": \""16%\""}",108569,1,"""Europe""" +2024-09-19,75011,7931,"[\""Tablet\"", \""Phone\""]",4889.87,{},224946,1,"""South America""" +2024-08-27,75012,1011,"[\""Phone\""]",427.4,"{\""seasonal\"": \""28%\""}",38835,0,"""Africa""" +2023-05-10,75013,2223,"[\""Tablet\"", \""Monitor\""]",1128.92,{},250539,1,"""Asia""" +2024-11-07,75014,8769,"[\""Charger\""]",2410.44,"{\""promo\"": \""29%\""}",285965,0,"""North America""" +2023-01-20,75015,3909,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",982.41,{},39509,1,"""North America""" +2023-05-14,75016,5935,"[\""Wireless Mouse\"", \""Monitor\""]",3275.62,"{\"": \""8%\""}",126152,1,"""Asia""" +2023-11-13,75017,8802,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",251.83,{},61600,1,"""North America""" +2024-08-14,75018,9341,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1383.84,"{\""promo\"": \""19%\""}",229065,0,"""Asia""" +2023-08-22,75019,8236,"[\""Keyboard\""]",3897.71,{},109551,1,"""South America""" +2024-10-17,75020,5471,"[\""Keyboard\"", \""Monitor\""]",1544.46,{},34182,0,"""Africa""" +2024-01-04,75021,2956,"[\""Wireless Mouse\""]",3851.69,{},52210,0,"""North America""" +2024-03-08,75022,8251,"[\""Charger\""]",4828.3,{},148072,0,"""Asia""" +2024-04-27,75023,365,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4848.06,"{\""promo\"": \""10%\""}",52914,1,"""North America""" +2024-07-26,75024,6613,"[\""Phone\"", \""Headphones\""]",1890.28,"{\""seasonal\"": \""28%\""}",118152,1,"""Europe""" +2023-06-26,75025,9364,"[\""Monitor\"", \""Tablet\""]",4566.63,"{\""seasonal\"": \""11%\""}",65361,0,"""North America""" +2024-08-31,75026,7767,"[\""Headphones\"", \""Laptop\""]",2142.8,{},273281,0,"""Asia""" +2023-10-13,75027,3482,"[\""Monitor\""]",1514.54,{},181411,0,"""South America""" +2024-01-09,75028,9552,"[\""Wireless Mouse\""]",1330.23,"{\""seasonal\"": \""22%\""}",177356,0,"""Asia""" +2024-04-24,75029,2515,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",342.97,{},21356,0,"""North America""" +2024-03-24,75030,2520,"[\""Charger\"", \""Laptop\""]",1355.37,{},106611,0,"""North America""" +2023-11-24,75031,1368,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2205.87,{},119827,1,"""North America""" +2023-12-25,75032,3349,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4948.18,"{\""seasonal\"": \""21%\""}",124015,1,"""Europe""" +2023-05-27,75033,9648,"[\""Tablet\"", \""Phone\""]",2309.09,"{\""promo\"": \""26%\""}",150533,0,"""Europe""" +2024-06-12,75034,5733,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3041.98,"{\""loyalty\"": \""18%\""}",105529,1,"""South America""" +2023-01-01,75035,8150,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1801.77,"{\""seasonal\"": \""13%\""}",35873,0,"""Asia""" +2024-12-11,75036,6351,"[\""Wireless Mouse\""]",1243.67,{},104752,0,"""Asia""" +2024-03-14,75037,436,"[\""Headphones\"", \""Keyboard\""]",2177.6,"{\""seasonal\"": \""17%\""}",291096,1,"""North America""" +2024-10-11,75038,6675,"[\""Tablet\""]",4963.95,"{\""promo\"": \""9%\""}",200623,0,"""North America""" +2024-04-05,75039,7892,"[\""Monitor\""]",680.54,"{\""loyalty\"": \""16%\""}",20161,1,"""South America""" +2024-06-21,75040,1902,"[\""Charger\""]",4050.19,"{\""seasonal\"": \""12%\""}",156021,0,"""Africa""" +2023-12-18,75041,439,"[\""Monitor\""]",2744.13,{},159966,0,"""South America""" +2024-07-27,75042,5538,"[\""Laptop\"", \""Phone\""]",739.02,{},47773,0,"""Africa""" +2024-11-01,75043,9181,"[\""Keyboard\""]",210.22,{},57240,1,"""South America""" +2024-04-27,75044,553,"[\""Phone\""]",1089.27,{},157911,1,"""Asia""" +2024-11-15,75045,1526,"[\""Monitor\"", \""Headphones\""]",110.39,{},6891,0,"""Africa""" +2023-03-29,75046,3195,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1695.7,"{\""loyalty\"": \""30%\""}",299035,0,"""South America""" +2024-03-06,75047,4130,"[\""Wireless Mouse\""]",3057.83,"{\"": \""20%\""}",18813,0,"""Africa""" +2023-08-14,75048,501,"[\""Monitor\""]",1239.38,"{\""promo\"": \""25%\""}",196520,1,"""Europe""" +2024-12-01,75049,8561,"[\""Laptop\""]",383.44,"{\""seasonal\"": \""18%\""}",36134,0,"""North America""" +2024-04-21,75050,2056,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4389.81,{},261731,0,"""North America""" +2024-11-30,75051,479,"[\""Monitor\""]",442.53,{},10279,0,"""South America""" +2024-12-27,75052,2812,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2330.25,"{\""promo\"": \""23%\""}",245309,1,"""South America""" +2023-01-09,75053,3019,"[\""Charger\"", \""Monitor\""]",2493.48,"{\"": \""13%\""}",237214,0,"""South America""" +2024-06-09,75054,5669,"[\""Phone\"", \""Monitor\""]",2879.08,"{\""seasonal\"": \""27%\""}",17675,0,"""North America""" +2023-06-03,75055,2031,"[\""Headphones\"", \""Wireless Mouse\""]",765.83,"{\""promo\"": \""21%\""}",243302,0,"""Asia""" +2023-07-14,75056,5047,"[\""Monitor\"", \""Headphones\""]",2054.92,{},218450,0,"""Europe""" +2023-06-24,75057,520,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2752.43,{},206773,1,"""Asia""" +2024-06-25,75058,6691,"[\""Tablet\""]",1352.95,{},266808,1,"""South America""" +2023-11-08,75059,5547,"[\""Laptop\"", \""Keyboard\""]",1716.09,"{\""seasonal\"": \""12%\""}",204276,0,"""North America""" +2023-09-24,75060,6974,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2349.54,{},68850,0,"""Europe""" +2023-12-23,75061,824,"[\""Headphones\""]",2130.94,{},90295,1,"""Africa""" +2024-11-08,75062,2065,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",190.05,"{\""seasonal\"": \""30%\""}",231446,0,"""North America""" +2024-08-08,75063,3752,"[\""Laptop\""]",4904.06,{},3384,0,"""Europe""" +2023-09-20,75064,6759,"[\""Headphones\"", \""Laptop\""]",2068.42,"{\""seasonal\"": \""5%\""}",150868,1,"""North America""" +2024-03-30,75065,608,"[\""Monitor\"", \""Wireless Mouse\""]",525.4,{},145190,0,"""Europe""" +2024-12-08,75066,435,"[\""Charger\""]",85.52,"{\""seasonal\"": \""14%\""}",283705,0,"""Asia""" +2023-11-23,75067,4801,"[\""Keyboard\"", \""Monitor\""]",4375.68,{},70778,1,"""South America""" +2023-09-19,75068,3313,"[\""Charger\""]",4034.06,"{\"": \""14%\""}",288350,1,"""South America""" +2024-02-18,75069,3102,"[\""Phone\"", \""Laptop\""]",1284.47,{},134341,0,"""Asia""" +2023-09-06,75070,9891,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",471.88,"{\"": \""9%\""}",96382,1,"""South America""" +2024-01-27,75071,8712,"[\""Charger\"", \""Wireless Mouse\""]",1152.4,"{\""seasonal\"": \""17%\""}",78279,0,"""Africa""" +2023-09-15,75072,6388,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3471.64,"{\""promo\"": \""8%\""}",146304,1,"""Europe""" +2023-12-26,75073,9387,"[\""Wireless Mouse\""]",482.89,"{\""seasonal\"": \""30%\""}",199403,1,"""Europe""" +2023-06-25,75074,3732,"[\""Tablet\"", \""Wireless Mouse\""]",3741.74,"{\""promo\"": \""5%\""}",25268,0,"""Europe""" +2024-03-11,75075,1344,"[\""Laptop\"", \""Headphones\""]",2304.63,{},4837,0,"""Africa""" +2024-11-11,75076,1565,"[\""Laptop\"", \""Charger\""]",3231.95,"{\""seasonal\"": \""11%\""}",194124,0,"""Europe""" +2023-03-04,75077,7294,"[\""Tablet\""]",260.85,{},35443,1,"""North America""" +2023-10-18,75078,4633,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1504.79,"{\""loyalty\"": \""19%\""}",49722,1,"""South America""" +2023-06-02,75079,3014,"[\""Phone\""]",1201.69,"{\""seasonal\"": \""30%\""}",268789,1,"""North America""" +2024-12-26,75080,9443,"[\""Laptop\"", \""Phone\""]",3767.72,"{\""loyalty\"": \""17%\""}",9342,1,"""North America""" +2024-12-14,75081,1340,"[\""Wireless Mouse\""]",716.43,"{\""seasonal\"": \""6%\""}",227738,1,"""Africa""" +2024-02-11,75082,9366,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1645.85,{},152328,0,"""Asia""" +2024-12-10,75083,6958,"[\""Laptop\"", \""Keyboard\""]",2367.45,{},53480,1,"""North America""" +2024-09-27,75084,8455,"[\""Laptop\""]",4136.7,{},195820,0,"""Africa""" +2024-01-31,75085,8393,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",561.66,"{\""loyalty\"": \""17%\""}",71825,1,"""Europe""" +2024-11-14,75086,156,"[\""Tablet\""]",2075.25,{},142102,1,"""South America""" +2023-02-02,75087,7852,"[\""Phone\"", \""Keyboard\""]",2546.65,{},188156,1,"""Africa""" +2023-09-28,75088,9590,"[\""Tablet\""]",405.97,"{\""promo\"": \""28%\""}",179310,1,"""Africa""" +2023-03-17,75089,5977,"[\""Charger\""]",3629.23,{},167359,0,"""Europe""" +2023-12-26,75090,6983,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3412.1,{},159564,1,"""Africa""" +2024-02-07,75091,5433,"[\""Laptop\""]",2741.6,"{\""loyalty\"": \""9%\""}",78611,0,"""South America""" +2023-11-10,75092,2233,"[\""Wireless Mouse\"", \""Monitor\""]",4985.87,{},225741,1,"""Africa""" +2024-04-01,75093,1139,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",491.18,{},84685,0,"""North America""" +2023-04-07,75094,3558,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1621.23,{},277687,1,"""North America""" +2023-07-15,75095,7262,"[\""Laptop\"", \""Headphones\""]",625.99,{},149773,1,"""Africa""" +2024-08-09,75096,4471,"[\""Tablet\"", \""Headphones\""]",1580.5,{},134241,0,"""Asia""" +2023-03-13,75097,7486,"[\""Tablet\""]",4636.91,{},271295,1,"""Africa""" +2024-08-04,75098,1886,"[\""Phone\""]",2964.13,"{\""promo\"": \""18%\""}",243393,0,"""South America""" +2023-12-17,75099,3716,"[\""Keyboard\""]",2563.22,"{\""loyalty\"": \""18%\""}",176878,1,"""Asia""" +2024-07-11,75100,5054,"[\""Keyboard\""]",4812.81,{},41624,0,"""North America""" +2024-05-03,75101,3627,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2268.56,{},234208,1,"""North America""" +2024-03-08,75102,1629,"[\""Keyboard\""]",3305.18,"{\""loyalty\"": \""19%\""}",245575,1,"""South America""" +2024-09-28,75103,7150,"[\""Tablet\"", \""Phone\""]",4259.64,"{\""seasonal\"": \""7%\""}",111728,1,"""South America""" +2023-03-23,75104,7578,"[\""Monitor\""]",4666.21,"{\""promo\"": \""25%\""}",279119,0,"""North America""" +2023-12-20,75105,1973,"[\""Headphones\""]",4138.02,{},165594,0,"""North America""" +2023-05-13,75106,6674,"[\""Monitor\"", \""Wireless Mouse\""]",4571.3,{},279820,1,"""South America""" +2023-09-03,75107,5831,"[\""Wireless Mouse\""]",2694.59,"{\""promo\"": \""12%\""}",140813,1,"""Africa""" +2023-11-13,75108,3873,"[\""Laptop\"", \""Charger\""]",3826.44,"{\""seasonal\"": \""21%\""}",35533,1,"""South America""" +2024-09-02,75109,7885,"[\""Tablet\"", \""Keyboard\""]",1601.12,"{\""promo\"": \""25%\""}",174466,1,"""Europe""" +2023-09-02,75110,8809,"[\""Wireless Mouse\""]",2363.42,{},124991,1,"""Africa""" +2023-07-29,75111,5836,"[\""Laptop\"", \""Keyboard\""]",3832.72,{},37998,0,"""North America""" +2024-02-17,75112,5553,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3779.72,{},85847,1,"""Europe""" +2023-12-06,75113,626,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3583.46,{},92242,0,"""North America""" +2023-11-28,75114,3680,"[\""Monitor\""]",2615.99,"{\""seasonal\"": \""11%\""}",11000,0,"""Asia""" +2023-05-28,75115,5834,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4174.3,"{\""loyalty\"": \""9%\""}",7883,0,"""North America""" +2024-09-04,75116,742,"[\""Keyboard\""]",3128.4,"{\"": \""8%\""}",183704,1,"""North America""" +2023-03-22,75117,8408,"[\""Laptop\"", \""Charger\""]",1110.66,{},40515,1,"""Asia""" +2024-10-04,75118,3530,"[\""Monitor\"", \""Laptop\""]",4139.38,"{\""promo\"": \""19%\""}",69746,0,"""North America""" +2024-09-12,75119,4312,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3012.08,{},63679,1,"""Europe""" +2024-06-12,75120,2630,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2609.03,{},59582,1,"""South America""" +2024-11-09,75121,1706,"[\""Laptop\""]",1328.9,"{\""loyalty\"": \""8%\""}",69610,1,"""Africa""" +2024-01-31,75122,8,"[\""Laptop\""]",3336.51,{},222577,1,"""Asia""" +2024-11-28,75123,5563,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3447.22,"{\"": \""10%\""}",232404,0,"""Europe""" +2023-11-07,75124,2457,"[\""Wireless Mouse\""]",4229.63,{},153992,0,"""Africa""" +2024-03-14,75125,8875,"[\""Phone\"", \""Keyboard\""]",3486.02,{},92625,0,"""Africa""" +2024-04-07,75126,5583,"[\""Tablet\"", \""Laptop\""]",3854.83,"{\""promo\"": \""14%\""}",268802,0,"""South America""" +2023-08-24,75127,5538,"[\""Wireless Mouse\""]",3932.95,{},229578,1,"""North America""" +2024-01-06,75128,5893,"[\""Wireless Mouse\"", \""Tablet\""]",3654.98,"{\""loyalty\"": \""5%\""}",177137,1,"""Europe""" +2023-04-09,75129,9117,"[\""Phone\""]",2055.84,{},11169,0,"""North America""" +2024-12-13,75130,3685,"[\""Monitor\""]",940.57,{},278566,0,"""Europe""" +2023-04-01,75131,3668,"[\""Tablet\"", \""Phone\""]",3025.94,{},5361,1,"""South America""" +2024-04-23,75132,2055,"[\""Monitor\"", \""Laptop\""]",3179.19,{},34278,1,"""North America""" +2023-09-28,75133,4386,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",317.08,"{\""promo\"": \""23%\""}",67316,1,"""Europe""" +2024-10-12,75134,819,"[\""Tablet\"", \""Laptop\""]",1521.96,{},206679,0,"""South America""" +2023-11-22,75135,2430,"[\""Wireless Mouse\"", \""Charger\""]",1720.23,"{\"": \""23%\""}",208535,0,"""Asia""" +2024-08-08,75136,1526,"[\""Phone\""]",3577.02,{},291277,0,"""North America""" +2024-09-06,75137,2369,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2262.34,"{\"": \""18%\""}",245695,0,"""Asia""" +2024-07-01,75138,9530,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3378.31,{},164659,0,"""North America""" +2024-01-31,75139,5514,"[\""Headphones\""]",207.63,"{\"": \""20%\""}",14991,1,"""Asia""" +2023-11-23,75140,221,"[\""Wireless Mouse\"", \""Tablet\""]",4277.11,"{\""seasonal\"": \""7%\""}",208771,0,"""Africa""" +2023-09-12,75141,3861,"[\""Phone\""]",3387.34,"{\""promo\"": \""28%\""}",112502,1,"""Europe""" +2024-07-13,75142,6579,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3916.13,{},70954,0,"""North America""" +2024-08-24,75143,2370,"[\""Headphones\""]",3515.07,{},68870,0,"""Africa""" +2023-12-20,75144,6649,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2830.4,"{\""seasonal\"": \""20%\""}",293403,1,"""Asia""" +2023-02-13,75145,3611,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1216.15,"{\""promo\"": \""9%\""}",185313,1,"""Africa""" +2024-02-28,75146,1054,"[\""Tablet\""]",1405.08,"{\""promo\"": \""27%\""}",149476,1,"""Asia""" +2024-01-24,75147,3601,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",60.6,"{\""seasonal\"": \""26%\""}",11297,0,"""Africa""" +2023-04-06,75148,1464,"[\""Keyboard\""]",538.88,{},94187,1,"""Europe""" +2023-09-03,75149,3487,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",902.32,{},138418,1,"""Europe""" +2023-06-08,75150,933,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2465.63,{},54166,0,"""Asia""" +2024-02-09,75151,4485,"[\""Charger\"", \""Wireless Mouse\""]",2838.57,"{\""seasonal\"": \""12%\""}",14689,0,"""Europe""" +2023-09-06,75152,4803,"[\""Laptop\"", \""Monitor\""]",1991.84,{},3000,1,"""Europe""" +2023-03-14,75153,3054,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4883.18,{},242489,1,"""Africa""" +2023-10-09,75154,868,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4950.22,"{\""seasonal\"": \""20%\""}",165599,0,"""Africa""" +2023-05-17,75155,826,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",465.19,{},18013,0,"""North America""" +2023-11-29,75156,676,"[\""Keyboard\"", \""Laptop\""]",1211.07,{},229989,1,"""South America""" +2024-10-27,75157,9851,"[\""Laptop\""]",2052.01,"{\""seasonal\"": \""28%\""}",251136,0,"""North America""" +2023-10-21,75158,5635,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3904.79,"{\"": \""25%\""}",247879,1,"""South America""" +2024-06-08,75159,8431,"[\""Laptop\""]",2430.84,{},172010,0,"""South America""" +2024-03-08,75160,2025,"[\""Wireless Mouse\"", \""Phone\""]",3389.36,{},84987,0,"""Europe""" +2023-07-26,75161,4120,"[\""Charger\""]",3257.07,"{\""seasonal\"": \""19%\""}",117918,1,"""Asia""" +2023-09-08,75162,6193,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",839.69,{},183565,1,"""North America""" +2023-01-22,75163,4773,"[\""Keyboard\"", \""Phone\""]",3868.97,"{\"": \""11%\""}",76339,1,"""Asia""" +2023-07-23,75164,4285,"[\""Phone\""]",1154.77,"{\""promo\"": \""25%\""}",166680,1,"""South America""" +2023-04-25,75165,2902,"[\""Charger\""]",4682.68,"{\""seasonal\"": \""12%\""}",165384,1,"""Asia""" +2024-06-29,75166,4919,"[\""Charger\""]",2508.48,{},59799,0,"""Africa""" +2024-09-07,75167,3412,"[\""Keyboard\"", \""Tablet\""]",2000.34,{},84018,0,"""North America""" +2024-11-04,75168,7045,"[\""Keyboard\""]",2001.21,"{\""seasonal\"": \""20%\""}",272121,0,"""Europe""" +2023-10-29,75169,4022,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1602.72,"{\""promo\"": \""12%\""}",61192,1,"""Asia""" +2023-06-30,75170,846,"[\""Phone\"", \""Wireless Mouse\""]",2652.44,{},259636,0,"""North America""" +2023-02-19,75171,2769,"[\""Tablet\"", \""Headphones\""]",980.49,"{\"": \""8%\""}",107064,1,"""South America""" +2024-03-29,75172,385,"[\""Phone\""]",1448.42,"{\"": \""20%\""}",110430,1,"""Europe""" +2023-12-11,75173,2537,"[\""Wireless Mouse\""]",4528.01,{},258048,1,"""Europe""" +2023-05-27,75174,2778,"[\""Monitor\"", \""Tablet\""]",3681.82,{},262249,1,"""Asia""" +2024-03-25,75175,191,"[\""Headphones\""]",2151.92,"{\"": \""30%\""}",14985,1,"""North America""" +2023-04-28,75176,2683,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1283.58,"{\"": \""20%\""}",9474,0,"""Asia""" +2023-04-12,75177,3711,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3437.92,{},87969,0,"""North America""" +2024-01-29,75178,2891,"[\""Headphones\"", \""Tablet\""]",4092.64,"{\""promo\"": \""16%\""}",158326,0,"""Asia""" +2023-07-25,75179,6916,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4672.08,{},236552,0,"""Africa""" +2023-09-27,75180,8644,"[\""Keyboard\"", \""Charger\""]",179.88,{},32240,0,"""Africa""" +2023-03-20,75181,7374,"[\""Monitor\"", \""Tablet\""]",301.13,{},141298,0,"""North America""" +2023-07-30,75182,2964,"[\""Wireless Mouse\""]",862.78,"{\""seasonal\"": \""27%\""}",128284,0,"""North America""" +2023-11-08,75183,1970,"[\""Laptop\""]",2073.56,"{\"": \""8%\""}",86687,1,"""South America""" +2024-04-25,75184,4614,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4654.05,{},223245,0,"""South America""" +2024-11-04,75185,3812,"[\""Phone\"", \""Keyboard\""]",1147.6,"{\""loyalty\"": \""23%\""}",153773,0,"""Africa""" +2024-09-12,75186,3256,"[\""Phone\"", \""Charger\""]",4875.28,{},226241,0,"""South America""" +2023-09-22,75187,1873,"[\""Phone\"", \""Wireless Mouse\""]",4823.0,{},160967,1,"""South America""" +2024-12-05,75188,1913,"[\""Phone\"", \""Laptop\""]",3611.88,"{\""promo\"": \""14%\""}",262299,1,"""South America""" +2023-06-28,75189,147,"[\""Wireless Mouse\"", \""Laptop\""]",464.8,"{\""seasonal\"": \""15%\""}",28645,0,"""South America""" +2024-05-08,75190,2221,"[\""Keyboard\""]",123.17,"{\""loyalty\"": \""13%\""}",8341,1,"""Africa""" +2024-10-21,75191,4696,"[\""Charger\"", \""Laptop\""]",3926.22,{},109255,0,"""North America""" +2024-10-24,75192,4877,"[\""Wireless Mouse\""]",3579.1,{},127054,0,"""South America""" +2024-10-25,75193,969,"[\""Headphones\"", \""Charger\""]",3287.82,"{\""promo\"": \""19%\""}",171626,0,"""Asia""" +2024-08-01,75194,1822,"[\""Wireless Mouse\""]",2202.35,{},53708,1,"""Africa""" +2024-12-24,75195,7275,"[\""Headphones\"", \""Laptop\""]",4196.96,{},260013,0,"""Europe""" +2024-06-10,75196,3190,"[\""Phone\"", \""Monitor\""]",2352.8,"{\"": \""21%\""}",127289,1,"""Europe""" +2024-08-30,75197,9751,"[\""Headphones\"", \""Wireless Mouse\""]",2778.61,"{\""seasonal\"": \""12%\""}",2153,0,"""North America""" +2024-07-22,75198,507,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2751.12,{},178355,1,"""Asia""" +2023-09-17,75199,3020,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2104.82,"{\""promo\"": \""11%\""}",94043,0,"""North America""" +2023-10-23,75200,7676,"[\""Charger\"", \""Phone\""]",2417.24,{},15257,0,"""Europe""" +2023-02-06,75201,355,"[\""Wireless Mouse\"", \""Monitor\""]",3181.28,"{\""seasonal\"": \""22%\""}",59422,0,"""Asia""" +2023-11-01,75202,2881,"[\""Monitor\""]",4471.03,"{\""loyalty\"": \""28%\""}",121501,1,"""Africa""" +2023-01-01,75203,2194,"[\""Monitor\"", \""Laptop\""]",4819.63,"{\""loyalty\"": \""24%\""}",203197,0,"""Europe""" +2024-10-29,75204,5758,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2207.82,{},46932,0,"""South America""" +2024-12-13,75205,4558,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2756.12,{},26923,1,"""Europe""" +2024-11-07,75206,3642,"[\""Headphones\""]",2470.69,{},15473,0,"""South America""" +2024-05-09,75207,8938,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2078.66,"{\""seasonal\"": \""18%\""}",112081,1,"""South America""" +2023-06-22,75208,3383,"[\""Laptop\"", \""Keyboard\""]",4642.88,{},181758,0,"""Africa""" +2023-12-21,75209,1765,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2329.45,"{\""seasonal\"": \""10%\""}",31710,0,"""Africa""" +2024-09-13,75210,8833,"[\""Wireless Mouse\""]",2855.05,"{\"": \""10%\""}",55616,1,"""North America""" +2023-05-15,75211,4426,"[\""Keyboard\""]",2894.61,"{\""loyalty\"": \""20%\""}",286115,1,"""Europe""" +2023-11-07,75212,4372,"[\""Tablet\""]",1402.58,{},192496,1,"""Africa""" +2024-05-28,75213,7932,"[\""Monitor\""]",505.9,{},66898,1,"""Europe""" +2024-12-27,75214,8977,"[\""Keyboard\"", \""Monitor\""]",2557.46,"{\""promo\"": \""20%\""}",229494,0,"""Europe""" +2023-08-18,75215,3608,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1989.66,{},125785,1,"""Asia""" +2023-01-04,75216,2568,"[\""Keyboard\""]",2288.33,{},137119,1,"""Europe""" +2024-04-27,75217,1007,"[\""Charger\"", \""Phone\""]",726.82,{},28267,1,"""South America""" +2024-03-26,75218,3964,"[\""Headphones\"", \""Charger\""]",2221.61,"{\""promo\"": \""6%\""}",90062,0,"""Africa""" +2024-01-12,75219,853,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4602.79,{},50582,1,"""Asia""" +2024-12-27,75220,7423,"[\""Phone\"", \""Monitor\""]",2762.56,"{\"": \""7%\""}",265012,0,"""Asia""" +2023-01-28,75221,1452,"[\""Laptop\"", \""Monitor\""]",241.92,"{\""loyalty\"": \""13%\""}",212175,0,"""Africa""" +2024-11-24,75222,7064,"[\""Charger\""]",3885.35,"{\""seasonal\"": \""13%\""}",122175,0,"""Africa""" +2023-10-21,75223,4387,"[\""Keyboard\"", \""Wireless Mouse\""]",680.87,{},129577,1,"""Asia""" +2024-05-24,75224,3617,"[\""Keyboard\"", \""Headphones\""]",224.44,{},229295,0,"""South America""" +2023-04-15,75225,8514,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1294.96,"{\"": \""23%\""}",74301,0,"""North America""" +2024-08-28,75226,7939,"[\""Charger\"", \""Phone\""]",3142.62,"{\""promo\"": \""12%\""}",210921,1,"""North America""" +2023-07-02,75227,3475,"[\""Laptop\""]",4685.72,{},298991,1,"""North America""" +2023-09-27,75228,7645,"[\""Keyboard\""]",2478.62,{},208020,0,"""South America""" +2024-12-14,75229,7911,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3875.91,{},218757,0,"""South America""" +2023-03-12,75230,4413,"[\""Monitor\""]",2509.48,{},106000,0,"""South America""" +2023-03-20,75231,6440,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4789.21,"{\"": \""25%\""}",103897,1,"""Africa""" +2023-01-04,75232,5254,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4592.62,{},143322,0,"""South America""" +2024-12-28,75233,3533,"[\""Tablet\"", \""Keyboard\""]",2556.96,"{\""promo\"": \""5%\""}",224989,0,"""South America""" +2024-05-04,75234,2477,"[\""Laptop\""]",513.76,"{\""promo\"": \""7%\""}",89193,0,"""Europe""" +2024-07-02,75235,8853,"[\""Charger\""]",4847.11,{},155179,0,"""North America""" +2023-01-17,75236,3061,"[\""Laptop\""]",3602.8,{},186815,1,"""Asia""" +2024-08-08,75237,8618,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4398.22,"{\""promo\"": \""13%\""}",47821,0,"""Africa""" +2023-03-29,75238,225,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4806.39,"{\""loyalty\"": \""24%\""}",124551,0,"""Europe""" +2024-01-19,75239,4166,"[\""Charger\"", \""Laptop\""]",3988.68,"{\""promo\"": \""5%\""}",177751,1,"""Asia""" +2024-08-26,75240,7454,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2125.89,"{\"": \""30%\""}",107750,0,"""Asia""" +2024-02-06,75241,7273,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",343.59,{},15031,0,"""Europe""" +2024-10-01,75242,1960,"[\""Charger\""]",100.15,{},76835,0,"""North America""" +2024-06-04,75243,7430,"[\""Monitor\""]",2579.99,"{\"": \""6%\""}",122764,1,"""Africa""" +2023-03-01,75244,4510,"[\""Charger\""]",2518.5,"{\"": \""9%\""}",287703,0,"""Europe""" +2024-04-05,75245,7603,"[\""Tablet\""]",3305.76,"{\""loyalty\"": \""13%\""}",259738,0,"""Africa""" +2023-11-29,75246,1471,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3610.51,"{\""promo\"": \""17%\""}",197128,0,"""Asia""" +2024-10-24,75247,4919,"[\""Wireless Mouse\"", \""Laptop\""]",474.1,"{\""loyalty\"": \""13%\""}",157672,1,"""South America""" +2023-09-12,75248,5871,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4824.58,"{\""loyalty\"": \""16%\""}",92971,0,"""North America""" +2024-12-12,75249,2925,"[\""Keyboard\""]",2995.13,{},19915,0,"""North America""" +2023-08-07,75250,3539,"[\""Laptop\""]",3469.67,"{\"": \""26%\""}",177896,0,"""Asia""" +2023-07-11,75251,8468,"[\""Phone\""]",4255.52,"{\""loyalty\"": \""28%\""}",43039,1,"""Africa""" +2024-11-22,75252,9277,"[\""Tablet\""]",4022.49,"{\"": \""11%\""}",98786,1,"""North America""" +2024-04-12,75253,4846,"[\""Wireless Mouse\""]",3266.06,{},272191,1,"""Asia""" +2023-03-06,75254,9059,"[\""Monitor\"", \""Charger\""]",953.76,{},248292,0,"""South America""" +2024-11-15,75255,1618,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1592.8,{},117585,0,"""South America""" +2023-10-15,75256,1170,"[\""Phone\""]",1028.33,"{\"": \""25%\""}",60178,1,"""Asia""" +2023-11-16,75257,1795,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4444.59,"{\""loyalty\"": \""20%\""}",129451,1,"""Europe""" +2024-06-22,75258,5549,"[\""Charger\""]",2927.94,"{\"": \""25%\""}",96733,0,"""Asia""" +2023-09-30,75259,3718,"[\""Tablet\""]",1526.43,{},34790,0,"""Asia""" +2024-08-20,75260,8052,"[\""Keyboard\""]",956.5,{},69479,0,"""Europe""" +2023-04-02,75261,6197,"[\""Laptop\"", \""Phone\""]",2387.14,"{\""seasonal\"": \""20%\""}",17751,0,"""South America""" +2024-06-27,75262,7474,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1437.62,{},23955,1,"""Asia""" +2023-12-06,75263,4739,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1519.2,"{\""seasonal\"": \""18%\""}",298588,0,"""Asia""" +2024-06-10,75264,8470,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3236.01,"{\""loyalty\"": \""8%\""}",218449,0,"""North America""" +2024-06-22,75265,8430,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3113.97,"{\""loyalty\"": \""19%\""}",256679,1,"""Asia""" +2023-06-13,75266,1571,"[\""Charger\"", \""Tablet\""]",1891.0,{},74699,1,"""South America""" +2023-02-21,75267,4233,"[\""Monitor\"", \""Tablet\""]",4384.49,"{\""seasonal\"": \""23%\""}",208151,0,"""Asia""" +2024-12-01,75268,5113,"[\""Laptop\"", \""Phone\""]",3809.46,"{\"": \""19%\""}",250536,0,"""South America""" +2023-08-12,75269,7862,"[\""Monitor\""]",1091.43,{},62204,1,"""Asia""" +2023-05-16,75270,6341,"[\""Headphones\"", \""Tablet\""]",887.72,"{\""promo\"": \""23%\""}",188254,0,"""Europe""" +2023-04-25,75271,3646,"[\""Laptop\""]",2511.41,"{\""seasonal\"": \""30%\""}",182013,0,"""North America""" +2024-09-19,75272,9798,"[\""Phone\"", \""Tablet\""]",4560.52,"{\""loyalty\"": \""9%\""}",268923,1,"""Asia""" +2023-09-24,75273,920,"[\""Headphones\"", \""Keyboard\""]",960.23,{},286033,1,"""Asia""" +2024-11-02,75274,8685,"[\""Phone\""]",1476.23,"{\""seasonal\"": \""28%\""}",97792,0,"""Asia""" +2024-04-18,75275,6554,"[\""Headphones\"", \""Laptop\""]",1555.86,{},189780,1,"""South America""" +2023-03-17,75276,3191,"[\""Charger\""]",960.43,{},8041,1,"""Europe""" +2024-03-10,75277,3703,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1689.66,"{\""promo\"": \""8%\""}",94828,0,"""South America""" +2024-08-23,75278,8615,"[\""Wireless Mouse\"", \""Tablet\""]",1522.66,"{\""loyalty\"": \""16%\""}",27948,1,"""Asia""" +2023-12-07,75279,6048,"[\""Tablet\"", \""Monitor\""]",3474.7,{},187672,0,"""Africa""" +2024-11-25,75280,7988,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",566.9,"{\""promo\"": \""16%\""}",228074,1,"""Africa""" +2024-06-27,75281,4430,"[\""Headphones\""]",4106.35,{},278460,1,"""South America""" +2023-06-10,75282,6493,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2916.44,"{\""seasonal\"": \""21%\""}",155864,1,"""Africa""" +2024-05-17,75283,3387,"[\""Laptop\""]",3716.81,{},213270,1,"""Africa""" +2023-03-09,75284,2628,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2783.06,"{\"": \""16%\""}",234440,1,"""North America""" +2023-08-14,75285,3577,"[\""Phone\""]",361.76,{},36477,0,"""North America""" +2023-01-23,75286,3852,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",559.17,{},185909,0,"""Africa""" +2023-11-11,75287,3590,"[\""Monitor\"", \""Wireless Mouse\""]",1123.39,"{\""seasonal\"": \""15%\""}",50917,0,"""Europe""" +2023-03-21,75288,6882,"[\""Wireless Mouse\""]",863.9,{},211571,1,"""Europe""" +2023-10-23,75289,4860,"[\""Tablet\"", \""Laptop\""]",2982.17,"{\""promo\"": \""26%\""}",154120,1,"""Europe""" +2024-11-15,75290,9943,"[\""Charger\"", \""Laptop\""]",1902.1,"{\"": \""30%\""}",214772,1,"""Europe""" +2023-11-10,75291,5256,"[\""Phone\""]",2424.73,"{\""seasonal\"": \""25%\""}",265731,0,"""South America""" +2023-03-08,75292,8560,"[\""Headphones\""]",3346.16,"{\""seasonal\"": \""17%\""}",171072,1,"""Europe""" +2023-04-18,75293,3604,"[\""Charger\"", \""Laptop\""]",2518.2,{},183420,0,"""Asia""" +2023-02-22,75294,5524,"[\""Keyboard\""]",3246.29,"{\"": \""27%\""}",154001,1,"""Africa""" +2023-01-05,75295,9279,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2155.93,{},146421,1,"""North America""" +2024-04-01,75296,3377,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4590.58,"{\"": \""29%\""}",222949,1,"""North America""" +2024-07-10,75297,1323,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2545.37,"{\""seasonal\"": \""24%\""}",158865,0,"""Europe""" +2023-12-10,75298,6639,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2048.11,{},151804,1,"""South America""" +2024-09-26,75299,6636,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4568.63,{},73691,1,"""Europe""" +2023-08-26,75300,7697,"[\""Keyboard\"", \""Monitor\""]",4238.2,"{\""promo\"": \""7%\""}",74646,1,"""Africa""" +2024-03-20,75301,1728,"[\""Tablet\""]",756.76,"{\""seasonal\"": \""27%\""}",70102,1,"""Asia""" +2024-02-20,75302,1928,"[\""Wireless Mouse\""]",4097.12,{},107618,0,"""North America""" +2023-02-24,75303,7447,"[\""Tablet\"", \""Headphones\""]",3324.64,"{\"": \""27%\""}",93095,1,"""South America""" +2024-03-04,75304,594,"[\""Phone\""]",1156.51,{},162010,0,"""North America""" +2024-12-21,75305,386,"[\""Charger\"", \""Headphones\""]",527.4,"{\""promo\"": \""22%\""}",178575,0,"""Europe""" +2023-07-19,75306,2829,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",628.89,{},91786,1,"""Africa""" +2024-05-07,75307,8575,"[\""Monitor\""]",1337.68,"{\""promo\"": \""21%\""}",18025,1,"""North America""" +2024-03-15,75308,6059,"[\""Charger\"", \""Tablet\""]",4923.8,{},11741,0,"""South America""" +2024-11-18,75309,5022,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4612.63,{},210833,1,"""South America""" +2023-09-25,75310,5805,"[\""Tablet\"", \""Laptop\""]",1462.89,"{\""loyalty\"": \""17%\""}",159062,0,"""Asia""" +2024-09-05,75311,1778,"[\""Keyboard\"", \""Phone\""]",1431.63,"{\""seasonal\"": \""26%\""}",1211,1,"""South America""" +2024-10-29,75312,586,"[\""Phone\""]",4535.12,"{\""seasonal\"": \""11%\""}",163349,0,"""South America""" +2024-05-28,75313,3759,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4127.81,{},243989,1,"""Asia""" +2023-09-05,75314,5042,"[\""Laptop\""]",841.5,"{\""seasonal\"": \""16%\""}",189248,0,"""South America""" +2024-12-19,75315,4992,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1307.86,"{\""promo\"": \""13%\""}",240532,1,"""North America""" +2023-11-16,75316,679,"[\""Monitor\""]",2453.12,{},52406,1,"""North America""" +2023-03-18,75317,441,"[\""Wireless Mouse\""]",811.52,{},171159,0,"""North America""" +2024-05-07,75318,900,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4268.95,{},164966,1,"""South America""" +2023-03-12,75319,9537,"[\""Keyboard\"", \""Wireless Mouse\""]",1867.64,"{\""loyalty\"": \""18%\""}",161421,1,"""Europe""" +2024-05-02,75320,971,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2531.89,"{\""promo\"": \""14%\""}",205576,0,"""Asia""" +2024-08-30,75321,7630,"[\""Laptop\""]",297.81,"{\""promo\"": \""16%\""}",114157,0,"""North America""" +2023-01-04,75322,1900,"[\""Tablet\""]",637.27,"{\"": \""9%\""}",4815,0,"""Asia""" +2023-02-21,75323,7636,"[\""Monitor\""]",229.48,{},181540,1,"""South America""" +2024-08-20,75324,3131,"[\""Wireless Mouse\""]",696.14,{},113914,1,"""North America""" +2023-09-28,75325,4793,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2445.93,"{\"": \""23%\""}",173851,1,"""Europe""" +2023-11-23,75326,164,"[\""Tablet\"", \""Wireless Mouse\""]",2719.08,{},104522,1,"""Asia""" +2023-01-07,75327,3562,"[\""Charger\""]",4615.74,{},86120,1,"""North America""" +2023-04-07,75328,3076,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4992.25,"{\""promo\"": \""5%\""}",127479,0,"""South America""" +2024-02-20,75329,587,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",979.43,{},92603,1,"""South America""" +2023-04-11,75330,7459,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2139.99,"{\""seasonal\"": \""6%\""}",128265,1,"""North America""" +2023-03-28,75331,7936,"[\""Laptop\""]",2853.91,"{\""loyalty\"": \""8%\""}",190047,0,"""Europe""" +2023-08-06,75332,3630,"[\""Wireless Mouse\""]",459.59,"{\""loyalty\"": \""27%\""}",40832,0,"""Europe""" +2023-01-09,75333,5713,"[\""Tablet\"", \""Wireless Mouse\""]",4853.65,{},10130,0,"""Asia""" +2024-05-13,75334,6432,"[\""Monitor\""]",1463.55,"{\""loyalty\"": \""27%\""}",40100,1,"""Asia""" +2023-12-11,75335,9780,"[\""Laptop\"", \""Wireless Mouse\""]",813.3,"{\""loyalty\"": \""22%\""}",43925,0,"""Asia""" +2024-06-04,75336,6788,"[\""Headphones\""]",168.93,"{\""seasonal\"": \""23%\""}",184993,1,"""Africa""" +2023-02-12,75337,3864,"[\""Wireless Mouse\""]",4011.62,"{\""seasonal\"": \""13%\""}",101278,0,"""Asia""" +2023-03-05,75338,2853,"[\""Charger\"", \""Keyboard\""]",1693.26,{},273603,0,"""Europe""" +2024-10-09,75339,9700,"[\""Laptop\"", \""Monitor\""]",2897.02,"{\"": \""18%\""}",99680,1,"""Asia""" +2024-07-17,75340,6192,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",867.07,{},77564,0,"""North America""" +2023-01-02,75341,8464,"[\""Wireless Mouse\"", \""Headphones\""]",223.24,"{\""loyalty\"": \""22%\""}",112426,1,"""South America""" +2023-11-11,75342,9242,"[\""Monitor\"", \""Wireless Mouse\""]",2392.48,"{\"": \""30%\""}",207288,0,"""Europe""" +2023-05-02,75343,1824,"[\""Wireless Mouse\""]",992.78,{},115845,0,"""Africa""" +2024-12-06,75344,7613,"[\""Wireless Mouse\"", \""Monitor\""]",361.78,"{\""promo\"": \""11%\""}",294241,0,"""North America""" +2024-06-28,75345,1824,"[\""Tablet\"", \""Wireless Mouse\""]",139.39,{},276705,0,"""South America""" +2023-10-24,75346,392,"[\""Tablet\""]",4283.15,"{\""promo\"": \""30%\""}",144167,1,"""North America""" +2024-07-01,75347,1972,"[\""Wireless Mouse\""]",3009.72,{},28728,0,"""Africa""" +2024-08-21,75348,2709,"[\""Phone\"", \""Laptop\""]",1839.24,"{\""seasonal\"": \""5%\""}",103355,1,"""Africa""" +2023-01-16,75349,8214,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",373.63,"{\""seasonal\"": \""27%\""}",86140,0,"""Asia""" +2023-11-02,75350,9232,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3475.11,{},169002,0,"""Europe""" +2023-10-10,75351,9590,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4033.85,{},136620,0,"""Africa""" +2023-08-07,75352,2357,"[\""Laptop\""]",1829.97,"{\"": \""11%\""}",24836,0,"""Europe""" +2023-03-14,75353,9560,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3812.02,"{\""promo\"": \""6%\""}",255964,1,"""South America""" +2024-04-14,75354,7888,"[\""Phone\""]",245.8,"{\""loyalty\"": \""21%\""}",276132,1,"""South America""" +2024-05-28,75355,181,"[\""Laptop\""]",1700.02,"{\""promo\"": \""24%\""}",66251,1,"""Africa""" +2024-10-02,75356,5234,"[\""Phone\""]",2745.25,"{\""seasonal\"": \""17%\""}",294300,0,"""Africa""" +2023-07-02,75357,7393,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1075.37,{},298090,0,"""Asia""" +2023-03-28,75358,3094,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3844.92,"{\"": \""5%\""}",124907,1,"""South America""" +2024-05-05,75359,8927,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",903.73,"{\"": \""28%\""}",16784,0,"""Africa""" +2024-04-05,75360,5659,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3294.34,"{\""loyalty\"": \""16%\""}",12024,0,"""Europe""" +2024-10-19,75361,4063,"[\""Tablet\"", \""Monitor\""]",4652.03,{},55056,0,"""Africa""" +2023-01-20,75362,4337,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1676.67,{},57183,1,"""Europe""" +2023-06-11,75363,5194,"[\""Tablet\"", \""Phone\""]",1120.24,{},100057,1,"""Africa""" +2023-09-13,75364,9745,"[\""Monitor\""]",1090.08,"{\"": \""25%\""}",278039,0,"""South America""" +2024-10-30,75365,561,"[\""Phone\""]",251.5,"{\""promo\"": \""19%\""}",173638,0,"""South America""" +2024-04-21,75366,2547,"[\""Tablet\"", \""Laptop\""]",629.79,{},11286,0,"""Asia""" +2024-06-30,75367,500,"[\""Charger\"", \""Headphones\""]",4253.23,"{\""promo\"": \""13%\""}",21788,1,"""South America""" +2023-04-21,75368,6218,"[\""Keyboard\""]",4132.73,"{\"": \""9%\""}",209411,1,"""Asia""" +2023-10-23,75369,6851,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3608.28,{},243646,0,"""North America""" +2024-07-23,75370,705,"[\""Charger\"", \""Keyboard\""]",4555.87,"{\"": \""20%\""}",121546,1,"""Asia""" +2023-12-14,75371,7064,"[\""Headphones\"", \""Keyboard\""]",1090.01,{},196607,1,"""Asia""" +2024-10-15,75372,1207,"[\""Phone\"", \""Headphones\""]",1108.95,"{\""promo\"": \""24%\""}",164332,0,"""North America""" +2024-05-12,75373,9556,"[\""Tablet\""]",1811.22,{},74679,0,"""South America""" +2023-10-31,75374,3865,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3711.05,"{\""seasonal\"": \""23%\""}",55745,1,"""South America""" +2024-09-05,75375,2761,"[\""Wireless Mouse\""]",3121.13,"{\""loyalty\"": \""8%\""}",89453,1,"""South America""" +2023-11-19,75376,3647,"[\""Monitor\"", \""Headphones\""]",4267.19,"{\""promo\"": \""19%\""}",13735,1,"""South America""" +2024-02-19,75377,3285,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1973.27,{},219514,1,"""North America""" +2023-02-18,75378,4030,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4401.87,{},148722,0,"""Asia""" +2023-04-02,75379,584,"[\""Headphones\"", \""Tablet\""]",2134.69,{},190429,0,"""Europe""" +2024-01-18,75380,4306,"[\""Wireless Mouse\"", \""Phone\""]",4851.95,"{\""loyalty\"": \""17%\""}",234267,1,"""South America""" +2023-08-31,75381,6241,"[\""Laptop\"", \""Charger\""]",1348.77,"{\""loyalty\"": \""20%\""}",134609,1,"""Europe""" +2023-12-14,75382,5041,"[\""Monitor\""]",2961.4,{},175580,0,"""Asia""" +2023-06-03,75383,7181,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3688.46,"{\""promo\"": \""26%\""}",92529,1,"""North America""" +2024-04-06,75384,3310,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",698.59,"{\"": \""5%\""}",74315,0,"""North America""" +2024-05-24,75385,9944,"[\""Wireless Mouse\"", \""Charger\""]",269.54,{},102566,0,"""Africa""" +2023-12-21,75386,1554,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1073.3,"{\"": \""7%\""}",149847,0,"""Africa""" +2024-01-17,75387,1942,"[\""Keyboard\""]",1706.86,"{\""seasonal\"": \""21%\""}",238552,1,"""Africa""" +2023-11-28,75388,3280,"[\""Wireless Mouse\""]",2558.64,"{\""loyalty\"": \""17%\""}",243346,1,"""North America""" +2023-01-22,75389,8983,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1602.52,"{\""promo\"": \""20%\""}",281473,1,"""Africa""" +2023-02-01,75390,585,"[\""Keyboard\"", \""Monitor\""]",975.1,"{\""loyalty\"": \""11%\""}",273873,0,"""Asia""" +2024-10-03,75391,8298,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1341.26,{},239815,0,"""Europe""" +2023-08-08,75392,7999,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4450.64,{},267202,1,"""South America""" +2023-06-09,75393,2257,"[\""Phone\""]",4585.13,"{\"": \""26%\""}",265552,0,"""Europe""" +2023-07-26,75394,3327,"[\""Monitor\""]",1368.42,"{\""seasonal\"": \""16%\""}",177795,1,"""Europe""" +2024-04-22,75395,4700,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1920.76,"{\"": \""7%\""}",283756,1,"""Asia""" +2024-07-25,75396,8883,"[\""Charger\""]",3154.89,{},215665,0,"""Europe""" +2024-08-31,75397,2375,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2713.92,"{\"": \""5%\""}",114035,1,"""South America""" +2024-09-22,75398,7751,"[\""Wireless Mouse\"", \""Monitor\""]",1154.98,{},53171,0,"""Africa""" +2023-05-28,75399,5478,"[\""Headphones\"", \""Phone\""]",1047.21,"{\""promo\"": \""15%\""}",54424,1,"""Asia""" +2023-12-12,75400,9995,"[\""Phone\"", \""Headphones\""]",3684.5,{},209188,0,"""Asia""" +2023-06-23,75401,5649,"[\""Laptop\""]",1768.5,{},205497,0,"""North America""" +2023-11-14,75402,9895,"[\""Laptop\"", \""Monitor\""]",2999.69,{},200190,0,"""South America""" +2024-09-03,75403,8639,"[\""Laptop\"", \""Wireless Mouse\""]",864.13,"{\""promo\"": \""17%\""}",206745,1,"""South America""" +2023-02-04,75404,2084,"[\""Keyboard\""]",4751.93,"{\""loyalty\"": \""28%\""}",165806,0,"""South America""" +2023-04-18,75405,9395,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1813.51,"{\""promo\"": \""14%\""}",283746,0,"""Africa""" +2023-07-19,75406,978,"[\""Headphones\""]",3820.0,"{\""seasonal\"": \""25%\""}",247336,1,"""Asia""" +2023-07-24,75407,2181,"[\""Charger\""]",459.0,"{\""promo\"": \""19%\""}",131636,0,"""South America""" +2024-12-20,75408,2747,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2613.78,"{\""promo\"": \""18%\""}",9695,0,"""Asia""" +2023-07-30,75409,7424,"[\""Phone\"", \""Keyboard\""]",2788.11,{},72156,0,"""South America""" +2024-03-24,75410,7128,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3019.72,"{\""loyalty\"": \""23%\""}",220628,1,"""South America""" +2023-11-11,75411,9923,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1474.97,{},95299,1,"""North America""" +2024-06-29,75412,8636,"[\""Wireless Mouse\""]",4883.24,{},291838,1,"""North America""" +2024-04-03,75413,7537,"[\""Charger\"", \""Laptop\""]",945.36,"{\"": \""20%\""}",245809,1,"""Asia""" +2024-12-08,75414,8397,"[\""Wireless Mouse\""]",1572.62,{},290891,0,"""North America""" +2024-04-30,75415,4299,"[\""Charger\""]",549.05,"{\""loyalty\"": \""30%\""}",59912,0,"""North America""" +2024-09-28,75416,7506,"[\""Headphones\""]",2548.04,"{\""seasonal\"": \""9%\""}",20739,1,"""Africa""" +2024-10-24,75417,2008,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1288.79,{},70637,0,"""Europe""" +2024-08-26,75418,9922,"[\""Tablet\""]",3662.5,{},18346,1,"""Asia""" +2023-05-01,75419,9013,"[\""Laptop\""]",1620.2,{},35467,0,"""South America""" +2023-07-18,75420,4781,"[\""Wireless Mouse\""]",499.22,{},242658,1,"""Africa""" +2023-06-27,75421,8180,"[\""Tablet\""]",1966.91,{},121310,1,"""North America""" +2023-05-20,75422,5832,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4606.99,{},281685,0,"""South America""" +2024-08-23,75423,3764,"[\""Wireless Mouse\""]",2582.35,"{\""loyalty\"": \""19%\""}",150561,1,"""South America""" +2023-07-15,75424,6838,"[\""Charger\""]",3985.67,{},227334,1,"""Europe""" +2024-05-06,75425,1830,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2016.9,{},205557,1,"""Europe""" +2024-08-06,75426,4189,"[\""Tablet\"", \""Wireless Mouse\""]",3927.28,{},264735,0,"""Europe""" +2024-02-09,75427,1874,"[\""Headphones\"", \""Wireless Mouse\""]",642.24,"{\"": \""14%\""}",35808,1,"""Asia""" +2023-10-03,75428,9334,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3741.25,"{\""promo\"": \""9%\""}",13150,1,"""Asia""" +2024-04-24,75429,5250,"[\""Monitor\"", \""Tablet\""]",2794.85,{},31986,0,"""Asia""" +2023-06-23,75430,6229,"[\""Phone\""]",430.28,"{\""seasonal\"": \""19%\""}",142736,0,"""North America""" +2024-09-10,75431,2804,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",752.63,{},167440,0,"""South America""" +2024-02-15,75432,5308,"[\""Phone\""]",3459.32,"{\""promo\"": \""24%\""}",53225,1,"""Asia""" +2023-07-27,75433,9442,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",377.21,{},257858,0,"""Asia""" +2024-08-13,75434,4219,"[\""Monitor\""]",1400.31,{},176492,1,"""Africa""" +2023-05-21,75435,198,"[\""Monitor\"", \""Headphones\""]",2819.84,"{\""loyalty\"": \""17%\""}",108846,0,"""North America""" +2024-07-09,75436,4119,"[\""Headphones\"", \""Phone\""]",4397.6,{},67953,1,"""North America""" +2023-11-06,75437,9999,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2224.91,"{\""promo\"": \""13%\""}",84531,1,"""Europe""" +2024-09-28,75438,6099,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2502.99,"{\""promo\"": \""7%\""}",278393,1,"""Asia""" +2023-10-01,75439,429,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",793.17,{},56040,0,"""South America""" +2023-06-20,75440,6664,"[\""Charger\"", \""Phone\"", \""Laptop\""]",366.7,{},57694,1,"""South America""" +2024-07-27,75441,9118,"[\""Laptop\""]",1605.88,"{\"": \""13%\""}",24188,0,"""Asia""" +2024-04-09,75442,1185,"[\""Phone\""]",1894.14,{},272371,0,"""North America""" +2024-01-01,75443,8656,"[\""Keyboard\""]",360.8,{},21404,0,"""Africa""" +2024-05-20,75444,2853,"[\""Headphones\""]",2175.4,{},19008,1,"""Europe""" +2024-02-11,75445,361,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2264.48,{},3446,1,"""Africa""" +2024-04-18,75446,30,"[\""Phone\"", \""Headphones\""]",2711.98,{},224100,0,"""North America""" +2023-07-08,75447,8503,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4377.07,"{\""promo\"": \""25%\""}",278774,0,"""Europe""" +2024-11-15,75448,9326,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3694.99,"{\""promo\"": \""20%\""}",112833,0,"""Europe""" +2023-07-06,75449,9857,"[\""Laptop\""]",1437.89,"{\""loyalty\"": \""30%\""}",47900,0,"""South America""" +2024-08-12,75450,8952,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3851.25,{},11681,1,"""Africa""" +2023-12-07,75451,8922,"[\""Keyboard\""]",3589.37,{},119170,0,"""North America""" +2023-05-27,75452,8677,"[\""Phone\"", \""Monitor\""]",2378.26,"{\""promo\"": \""20%\""}",46596,1,"""Asia""" +2024-10-18,75453,7058,"[\""Phone\""]",929.59,{},209142,0,"""Europe""" +2024-08-23,75454,7741,"[\""Phone\"", \""Headphones\""]",2691.26,{},200436,0,"""North America""" +2023-12-27,75455,7877,"[\""Wireless Mouse\"", \""Tablet\""]",1118.8,"{\""seasonal\"": \""12%\""}",137652,1,"""North America""" +2023-10-24,75456,8201,"[\""Tablet\""]",4033.46,{},52806,0,"""Asia""" +2024-11-06,75457,5600,"[\""Laptop\""]",4909.32,{},274750,1,"""North America""" +2023-03-12,75458,3521,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2878.26,"{\""loyalty\"": \""14%\""}",194678,0,"""South America""" +2023-09-27,75459,4308,"[\""Phone\"", \""Keyboard\""]",2675.63,"{\""seasonal\"": \""14%\""}",214785,0,"""Africa""" +2024-03-28,75460,3227,"[\""Headphones\"", \""Phone\""]",3131.18,"{\""seasonal\"": \""26%\""}",99304,0,"""Africa""" +2023-03-13,75461,4583,"[\""Headphones\""]",2046.84,"{\""promo\"": \""6%\""}",157926,0,"""Africa""" +2023-09-04,75462,9243,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2540.87,{},290540,0,"""North America""" +2023-03-27,75463,9678,"[\""Laptop\""]",3323.06,{},254005,1,"""South America""" +2024-05-09,75464,3778,"[\""Monitor\"", \""Charger\""]",3908.3,{},97721,0,"""Asia""" +2023-01-28,75465,9952,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4742.53,{},92144,0,"""South America""" +2024-10-05,75466,9585,"[\""Laptop\"", \""Wireless Mouse\""]",4495.1,{},131700,0,"""Africa""" +2024-12-20,75467,3291,"[\""Tablet\"", \""Laptop\""]",2732.26,{},144715,1,"""North America""" +2024-01-11,75468,8359,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3173.41,{},102919,0,"""Africa""" +2024-04-07,75469,1725,"[\""Tablet\""]",1585.37,{},289839,0,"""South America""" +2023-12-12,75470,9348,"[\""Headphones\"", \""Charger\""]",550.73,{},258679,0,"""Europe""" +2024-02-27,75471,3819,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3499.71,{},299349,0,"""South America""" +2023-07-16,75472,3584,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3160.04,{},176537,0,"""Europe""" +2023-10-22,75473,1329,"[\""Tablet\""]",2247.38,"{\""seasonal\"": \""16%\""}",27758,1,"""North America""" +2024-06-19,75474,2261,"[\""Charger\"", \""Headphones\""]",4863.53,{},168226,1,"""Asia""" +2023-04-16,75475,704,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2947.14,"{\""loyalty\"": \""18%\""}",4393,1,"""Europe""" +2024-02-08,75476,9250,"[\""Wireless Mouse\"", \""Keyboard\""]",2868.45,{},9255,1,"""Asia""" +2024-01-26,75477,8052,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3122.14,"{\""promo\"": \""17%\""}",229920,0,"""Europe""" +2023-03-06,75478,830,"[\""Tablet\""]",4961.26,{},123276,0,"""Europe""" +2024-02-05,75479,3467,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1419.74,"{\"": \""19%\""}",85392,1,"""Africa""" +2023-08-21,75480,6491,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4435.51,"{\""promo\"": \""9%\""}",279861,1,"""Europe""" +2023-04-24,75481,3958,"[\""Charger\"", \""Laptop\"", \""Phone\""]",682.22,"{\""promo\"": \""21%\""}",160978,1,"""Africa""" +2023-03-02,75482,915,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4339.68,"{\""seasonal\"": \""12%\""}",276244,1,"""Asia""" +2024-03-26,75483,5104,"[\""Charger\"", \""Laptop\""]",2441.6,{},50505,1,"""North America""" +2023-07-06,75484,3539,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4731.46,{},42744,0,"""Asia""" +2023-01-03,75485,2402,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2741.93,"{\""seasonal\"": \""27%\""}",76053,1,"""Europe""" +2024-11-20,75486,4544,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1488.7,"{\""seasonal\"": \""21%\""}",287204,1,"""Asia""" +2023-04-26,75487,344,"[\""Wireless Mouse\""]",2881.81,"{\""loyalty\"": \""20%\""}",96401,1,"""Asia""" +2023-11-16,75488,9473,"[\""Headphones\"", \""Charger\""]",2834.13,"{\"": \""11%\""}",249892,0,"""Europe""" +2024-04-08,75489,9947,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1754.94,{},84926,0,"""North America""" +2024-04-06,75490,9417,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1607.37,"{\"": \""9%\""}",261145,1,"""South America""" +2024-10-10,75491,1388,"[\""Keyboard\"", \""Monitor\""]",3776.29,{},161071,0,"""Africa""" +2024-05-23,75492,2972,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1990.13,"{\""seasonal\"": \""27%\""}",11380,0,"""South America""" +2023-10-28,75493,6018,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4610.07,{},162551,0,"""South America""" +2023-02-16,75494,6237,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4622.42,"{\"": \""13%\""}",203677,0,"""Europe""" +2023-11-13,75495,2874,"[\""Phone\"", \""Wireless Mouse\""]",3899.94,{},276785,0,"""Asia""" +2024-05-04,75496,6352,"[\""Keyboard\"", \""Charger\""]",898.65,"{\""promo\"": \""24%\""}",176722,1,"""Africa""" +2023-09-18,75497,2734,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3142.34,"{\""seasonal\"": \""17%\""}",240878,0,"""South America""" +2023-05-02,75498,403,"[\""Headphones\""]",4260.36,"{\"": \""15%\""}",42485,1,"""Europe""" +2024-10-12,75499,6658,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1859.24,{},30828,1,"""South America""" +2024-01-28,75500,7496,"[\""Phone\"", \""Monitor\""]",4090.35,"{\""loyalty\"": \""17%\""}",69906,1,"""South America""" +2023-09-20,75501,3799,"[\""Monitor\""]",4652.53,{},69433,0,"""North America""" +2023-01-02,75502,3554,"[\""Keyboard\""]",4371.57,"{\""promo\"": \""7%\""}",180640,0,"""South America""" +2024-05-15,75503,8428,"[\""Keyboard\""]",2713.52,{},193039,0,"""Europe""" +2023-07-14,75504,6751,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",960.57,{},211287,1,"""South America""" +2023-11-23,75505,327,"[\""Phone\""]",2818.7,"{\""seasonal\"": \""15%\""}",36424,0,"""North America""" +2023-10-26,75506,1507,"[\""Keyboard\"", \""Wireless Mouse\""]",773.59,"{\""seasonal\"": \""12%\""}",248604,1,"""Europe""" +2023-08-10,75507,5703,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3750.79,"{\""seasonal\"": \""15%\""}",94910,0,"""Asia""" +2024-05-05,75508,9226,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3006.47,{},208982,0,"""Africa""" +2023-03-12,75509,4042,"[\""Headphones\"", \""Phone\""]",3961.78,"{\""seasonal\"": \""19%\""}",6135,1,"""Asia""" +2023-04-29,75510,6441,"[\""Wireless Mouse\""]",4333.72,"{\""promo\"": \""10%\""}",283480,0,"""Asia""" +2024-12-14,75511,7240,"[\""Keyboard\"", \""Monitor\""]",418.67,{},66977,1,"""North America""" +2023-05-15,75512,9880,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3796.55,"{\""seasonal\"": \""9%\""}",197317,0,"""South America""" +2023-07-26,75513,5963,"[\""Keyboard\"", \""Headphones\""]",144.37,{},92890,0,"""Europe""" +2023-02-14,75514,824,"[\""Wireless Mouse\""]",427.39,"{\""promo\"": \""26%\""}",126006,1,"""North America""" +2023-05-19,75515,3732,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",663.41,"{\"": \""26%\""}",178669,1,"""Asia""" +2024-07-19,75516,3889,"[\""Phone\""]",2516.52,"{\""seasonal\"": \""20%\""}",93943,0,"""Africa""" +2024-03-26,75517,7621,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4025.74,"{\""promo\"": \""25%\""}",290446,0,"""South America""" +2024-02-21,75518,607,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1736.21,"{\""loyalty\"": \""13%\""}",185479,0,"""Asia""" +2024-08-16,75519,1419,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4071.36,"{\""promo\"": \""6%\""}",26867,1,"""Asia""" +2023-11-21,75520,1644,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1288.15,"{\"": \""26%\""}",120885,1,"""North America""" +2023-07-26,75521,3621,"[\""Headphones\"", \""Wireless Mouse\""]",2782.55,"{\""loyalty\"": \""7%\""}",286336,0,"""Asia""" +2023-01-25,75522,7125,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3083.59,"{\""loyalty\"": \""29%\""}",137049,1,"""Asia""" +2023-06-02,75523,1228,"[\""Tablet\""]",3428.69,"{\""loyalty\"": \""6%\""}",114448,1,"""Asia""" +2024-04-08,75524,6052,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",404.92,{},112817,1,"""North America""" +2023-10-01,75525,2803,"[\""Headphones\"", \""Wireless Mouse\""]",3948.75,{},181779,1,"""Europe""" +2023-12-20,75526,3357,"[\""Tablet\""]",4753.98,{},122128,0,"""Africa""" +2024-06-16,75527,4394,"[\""Charger\"", \""Laptop\""]",2999.66,"{\""loyalty\"": \""30%\""}",74588,0,"""South America""" +2024-10-11,75528,4237,"[\""Phone\"", \""Laptop\""]",3604.36,"{\""promo\"": \""29%\""}",54102,1,"""South America""" +2024-03-21,75529,1784,"[\""Tablet\""]",932.64,{},39373,1,"""North America""" +2023-03-23,75530,1353,"[\""Wireless Mouse\"", \""Laptop\""]",1443.21,"{\""promo\"": \""27%\""}",56795,1,"""North America""" +2023-09-02,75531,2501,"[\""Wireless Mouse\"", \""Keyboard\""]",3855.3,{},268938,0,"""North America""" +2024-05-30,75532,7809,"[\""Wireless Mouse\""]",3578.26,"{\"": \""6%\""}",12730,0,"""Africa""" +2024-07-01,75533,573,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",605.38,{},101850,1,"""North America""" +2023-06-20,75534,2523,"[\""Charger\"", \""Monitor\""]",2847.91,{},298817,0,"""Africa""" +2024-05-26,75535,9151,"[\""Laptop\""]",1670.83,"{\"": \""12%\""}",254796,0,"""Africa""" +2024-06-26,75536,8631,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2926.4,"{\""loyalty\"": \""30%\""}",131935,0,"""Europe""" +2024-02-12,75537,9693,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1115.68,"{\""seasonal\"": \""24%\""}",6260,0,"""Africa""" +2024-05-05,75538,9490,"[\""Wireless Mouse\"", \""Tablet\""]",1801.23,{},286754,0,"""South America""" +2023-04-28,75539,9149,"[\""Tablet\""]",3065.47,{},52040,0,"""Asia""" +2024-04-30,75540,9428,"[\""Charger\""]",4772.76,{},232524,0,"""South America""" +2024-07-27,75541,3704,"[\""Headphones\"", \""Tablet\""]",4409.57,"{\""promo\"": \""25%\""}",66408,0,"""South America""" +2024-01-30,75542,776,"[\""Wireless Mouse\""]",1822.15,{},200963,1,"""Asia""" +2023-08-01,75543,5275,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1401.07,{},120575,1,"""Europe""" +2024-10-27,75544,3341,"[\""Keyboard\"", \""Tablet\""]",1004.32,{},225146,0,"""South America""" +2023-02-25,75545,6242,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1796.46,"{\""loyalty\"": \""23%\""}",74971,0,"""North America""" +2023-09-10,75546,4459,"[\""Laptop\""]",3426.95,"{\""promo\"": \""14%\""}",161811,0,"""Asia""" +2023-04-02,75547,3389,"[\""Keyboard\"", \""Laptop\""]",4943.92,"{\""seasonal\"": \""18%\""}",280514,1,"""Asia""" +2024-04-07,75548,4227,"[\""Keyboard\"", \""Headphones\""]",1625.45,"{\""promo\"": \""27%\""}",263484,1,"""Europe""" +2024-09-19,75549,3846,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3175.0,"{\""promo\"": \""27%\""}",159313,0,"""Africa""" +2024-06-30,75550,7378,"[\""Monitor\""]",4365.73,"{\""promo\"": \""9%\""}",92054,0,"""North America""" +2023-09-07,75551,4635,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4138.77,"{\"": \""8%\""}",59773,0,"""South America""" +2024-04-26,75552,8488,"[\""Phone\"", \""Keyboard\""]",2642.22,"{\"": \""23%\""}",86271,1,"""Europe""" +2024-07-23,75553,2252,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3999.83,"{\""seasonal\"": \""12%\""}",90262,1,"""Europe""" +2023-01-10,75554,7747,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1600.05,{},167451,1,"""Europe""" +2023-03-05,75555,3211,"[\""Headphones\"", \""Charger\""]",4582.93,{},122270,1,"""Asia""" +2023-09-07,75556,2991,"[\""Laptop\""]",3427.5,"{\"": \""14%\""}",283032,1,"""North America""" +2024-06-19,75557,5750,"[\""Monitor\"", \""Headphones\""]",71.88,"{\""promo\"": \""11%\""}",162357,1,"""South America""" +2024-07-24,75558,5311,"[\""Headphones\""]",4778.45,{},151667,0,"""Africa""" +2023-03-10,75559,4016,"[\""Tablet\""]",4001.14,{},129283,0,"""South America""" +2024-03-16,75560,1287,"[\""Monitor\""]",2007.0,{},268619,0,"""Europe""" +2024-07-25,75561,2243,"[\""Wireless Mouse\"", \""Tablet\""]",2479.85,{},185782,1,"""Africa""" +2024-10-06,75562,1956,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",146.43,{},187964,1,"""South America""" +2024-07-10,75563,8436,"[\""Keyboard\""]",3606.39,"{\""seasonal\"": \""20%\""}",179506,0,"""Europe""" +2024-01-18,75564,5367,"[\""Headphones\"", \""Monitor\""]",722.14,{},181120,0,"""North America""" +2023-10-05,75565,8301,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1691.84,{},164359,0,"""South America""" +2023-10-26,75566,7961,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1997.15,"{\""loyalty\"": \""27%\""}",78330,0,"""Asia""" +2024-05-04,75567,5077,"[\""Laptop\"", \""Charger\""]",2823.14,"{\""seasonal\"": \""12%\""}",294975,1,"""Asia""" +2024-10-16,75568,647,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3028.13,{},189855,1,"""Africa""" +2024-07-10,75569,9801,"[\""Monitor\""]",4249.35,"{\"": \""23%\""}",269198,0,"""Europe""" +2023-10-26,75570,4647,"[\""Tablet\"", \""Charger\"", \""Phone\""]",916.91,{},160607,0,"""Europe""" +2023-07-19,75571,7603,"[\""Monitor\""]",4680.09,{},103705,1,"""Africa""" +2024-05-18,75572,8523,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2838.15,"{\""loyalty\"": \""26%\""}",176264,1,"""Africa""" +2023-04-05,75573,1092,"[\""Charger\"", \""Wireless Mouse\""]",144.46,{},252199,0,"""Europe""" +2023-08-21,75574,843,"[\""Wireless Mouse\"", \""Headphones\""]",3916.01,"{\""loyalty\"": \""27%\""}",91958,0,"""Africa""" +2024-11-01,75575,512,"[\""Headphones\"", \""Monitor\""]",2268.55,"{\"": \""29%\""}",210745,0,"""Africa""" +2023-12-30,75576,9449,"[\""Laptop\"", \""Monitor\""]",2892.52,{},113703,1,"""North America""" +2024-05-15,75577,7554,"[\""Monitor\""]",4564.85,{},135595,1,"""South America""" +2024-04-04,75578,5549,"[\""Wireless Mouse\""]",4070.9,"{\"": \""30%\""}",95786,0,"""Asia""" +2023-07-14,75579,2421,"[\""Laptop\"", \""Tablet\""]",513.18,{},35930,0,"""Africa""" +2024-05-06,75580,9307,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1048.31,{},141679,0,"""North America""" +2023-09-13,75581,6826,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",661.43,{},101883,1,"""South America""" +2023-12-19,75582,9001,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4529.02,{},61720,1,"""North America""" +2024-05-31,75583,3588,"[\""Headphones\"", \""Keyboard\""]",428.1,"{\""promo\"": \""14%\""}",80003,1,"""Europe""" +2023-05-17,75584,7236,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",904.78,{},256637,1,"""Africa""" +2023-10-25,75585,6219,"[\""Tablet\"", \""Laptop\""]",2249.73,"{\""seasonal\"": \""30%\""}",177240,0,"""South America""" +2023-10-11,75586,2490,"[\""Phone\""]",1653.16,{},217054,0,"""Africa""" +2023-05-02,75587,7682,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1980.44,{},35636,1,"""Africa""" +2023-08-25,75588,2437,"[\""Headphones\""]",792.64,{},294011,0,"""Asia""" +2024-01-30,75589,3035,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2547.43,"{\"": \""5%\""}",90563,1,"""Europe""" +2024-12-23,75590,2946,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2181.11,"{\"": \""18%\""}",292018,1,"""North America""" +2023-07-23,75591,9218,"[\""Laptop\""]",4496.55,{},179976,0,"""Africa""" +2024-09-27,75592,9032,"[\""Keyboard\"", \""Laptop\""]",678.91,{},154628,1,"""North America""" +2024-11-10,75593,3139,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",420.06,{},53788,0,"""Asia""" +2023-09-28,75594,7855,"[\""Keyboard\"", \""Charger\""]",3865.35,"{\""loyalty\"": \""29%\""}",4742,1,"""Africa""" +2023-02-21,75595,3204,"[\""Keyboard\"", \""Tablet\""]",4617.95,{},48474,0,"""South America""" +2023-05-15,75596,170,"[\""Phone\"", \""Keyboard\""]",2498.72,"{\"": \""7%\""}",90901,0,"""Asia""" +2023-10-24,75597,557,"[\""Laptop\""]",1914.99,"{\""loyalty\"": \""27%\""}",286700,0,"""South America""" +2024-06-04,75598,8812,"[\""Keyboard\""]",2832.68,"{\""loyalty\"": \""14%\""}",248691,0,"""South America""" +2023-02-22,75599,4485,"[\""Keyboard\"", \""Phone\""]",3624.18,{},209911,0,"""Africa""" +2024-06-04,75600,8442,"[\""Tablet\""]",4298.31,"{\"": \""30%\""}",256632,0,"""Asia""" +2024-03-26,75601,2801,"[\""Laptop\""]",4592.87,"{\""promo\"": \""30%\""}",123919,0,"""Europe""" +2023-05-25,75602,9606,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4844.84,{},155800,0,"""Europe""" +2023-12-20,75603,4458,"[\""Tablet\""]",833.77,{},254597,0,"""North America""" +2024-12-18,75604,9162,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3772.23,"{\"": \""25%\""}",297328,0,"""Asia""" +2024-11-17,75605,8801,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3001.66,{},105034,0,"""Africa""" +2023-10-11,75606,8003,"[\""Wireless Mouse\"", \""Monitor\""]",2010.19,{},117630,0,"""Asia""" +2024-10-31,75607,6605,"[\""Wireless Mouse\"", \""Headphones\""]",292.87,{},101261,1,"""North America""" +2023-06-25,75608,3131,"[\""Phone\""]",1568.36,"{\""seasonal\"": \""29%\""}",271460,1,"""Asia""" +2023-02-18,75609,6353,"[\""Headphones\"", \""Tablet\""]",1488.49,"{\""loyalty\"": \""11%\""}",46972,0,"""Asia""" +2024-06-11,75610,7108,"[\""Charger\""]",3704.07,"{\""loyalty\"": \""18%\""}",191027,0,"""Asia""" +2023-04-30,75611,6520,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4956.86,"{\""promo\"": \""28%\""}",177888,1,"""North America""" +2023-09-04,75612,9650,"[\""Laptop\"", \""Wireless Mouse\""]",3909.36,"{\""seasonal\"": \""5%\""}",129641,1,"""Europe""" +2023-06-21,75613,5161,"[\""Keyboard\"", \""Monitor\""]",2915.75,"{\""promo\"": \""21%\""}",214936,0,"""Africa""" +2024-12-09,75614,9791,"[\""Phone\""]",2765.11,{},76931,0,"""Asia""" +2024-11-18,75615,6785,"[\""Phone\""]",959.52,{},100239,0,"""North America""" +2023-09-21,75616,6127,"[\""Wireless Mouse\"", \""Laptop\""]",1187.65,"{\"": \""21%\""}",43625,1,"""Asia""" +2024-09-10,75617,5021,"[\""Headphones\""]",3340.76,{},186176,1,"""North America""" +2023-12-20,75618,708,"[\""Laptop\""]",3498.76,"{\""loyalty\"": \""30%\""}",269841,0,"""Asia""" +2023-06-04,75619,749,"[\""Laptop\""]",436.27,{},279072,1,"""South America""" +2023-06-28,75620,2321,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",450.62,{},125244,1,"""Europe""" +2023-09-17,75621,8252,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3136.5,"{\"": \""17%\""}",224378,0,"""North America""" +2023-12-23,75622,7212,"[\""Phone\""]",3886.58,"{\""loyalty\"": \""30%\""}",130062,1,"""Europe""" +2023-03-04,75623,5785,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",349.01,{},48852,1,"""Africa""" +2024-11-27,75624,880,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4485.7,{},124023,1,"""Africa""" +2023-04-27,75625,8007,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1876.56,{},270516,0,"""Asia""" +2024-09-02,75626,795,"[\""Tablet\"", \""Keyboard\""]",800.37,"{\""seasonal\"": \""29%\""}",253023,1,"""Asia""" +2024-12-26,75627,6371,"[\""Tablet\""]",1887.36,{},112457,1,"""Europe""" +2024-07-24,75628,8178,"[\""Headphones\"", \""Keyboard\""]",4925.38,{},121593,0,"""Asia""" +2023-11-01,75629,4896,"[\""Tablet\"", \""Phone\""]",1519.88,"{\""promo\"": \""30%\""}",145708,1,"""South America""" +2024-10-09,75630,8279,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2757.17,"{\"": \""24%\""}",7347,1,"""South America""" +2023-03-11,75631,2642,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1565.96,{},259156,1,"""Asia""" +2023-11-15,75632,6610,"[\""Phone\"", \""Monitor\""]",3311.27,"{\"": \""29%\""}",192399,0,"""Africa""" +2023-11-11,75633,6784,"[\""Laptop\"", \""Charger\""]",1242.06,"{\""promo\"": \""16%\""}",102825,0,"""Africa""" +2024-12-03,75634,3004,"[\""Tablet\""]",2294.05,"{\""loyalty\"": \""6%\""}",138032,1,"""South America""" +2024-10-31,75635,7711,"[\""Charger\"", \""Keyboard\""]",313.87,{},290628,0,"""Asia""" +2023-05-26,75636,5359,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",106.81,"{\""promo\"": \""14%\""}",260153,0,"""North America""" +2023-10-02,75637,5062,"[\""Tablet\""]",3381.82,"{\""seasonal\"": \""26%\""}",17854,1,"""Asia""" +2023-07-11,75638,9337,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3553.72,{},218051,1,"""South America""" +2023-01-23,75639,8692,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3757.9,{},185122,0,"""Africa""" +2023-04-12,75640,2234,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3284.47,"{\"": \""7%\""}",8308,0,"""Africa""" +2024-03-17,75641,8693,"[\""Charger\"", \""Phone\""]",3695.73,{},128832,1,"""North America""" +2024-01-16,75642,6170,"[\""Headphones\"", \""Wireless Mouse\""]",3213.44,"{\""seasonal\"": \""27%\""}",240839,1,"""North America""" +2024-11-02,75643,9614,"[\""Charger\""]",4703.43,{},52937,1,"""South America""" +2024-04-19,75644,4249,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1305.11,{},294182,0,"""Africa""" +2023-11-15,75645,8648,"[\""Laptop\""]",1359.88,{},82323,1,"""Europe""" +2024-03-14,75646,2765,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2847.04,"{\""loyalty\"": \""16%\""}",205428,0,"""Asia""" +2024-03-29,75647,2290,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3419.04,"{\""loyalty\"": \""6%\""}",123052,0,"""Africa""" +2024-08-10,75648,376,"[\""Monitor\""]",3492.61,{},100782,1,"""Africa""" +2023-12-06,75649,601,"[\""Laptop\"", \""Charger\""]",4135.27,"{\""promo\"": \""20%\""}",227193,0,"""North America""" +2023-05-24,75650,2473,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",696.04,{},266913,1,"""Europe""" +2024-09-17,75651,7743,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4340.34,"{\""loyalty\"": \""11%\""}",172852,0,"""Asia""" +2024-06-30,75652,1872,"[\""Wireless Mouse\""]",1306.66,{},30882,0,"""Asia""" +2023-02-26,75653,3786,"[\""Wireless Mouse\"", \""Phone\""]",2168.83,"{\"": \""28%\""}",123253,1,"""Asia""" +2024-07-02,75654,2452,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4482.2,"{\""promo\"": \""29%\""}",10840,0,"""Africa""" +2023-07-01,75655,2719,"[\""Monitor\""]",1224.01,{},181353,0,"""Asia""" +2024-09-01,75656,1366,"[\""Phone\"", \""Laptop\"", \""Charger\""]",764.09,{},225064,1,"""Europe""" +2023-01-13,75657,7961,"[\""Tablet\"", \""Keyboard\""]",1564.84,"{\""loyalty\"": \""18%\""}",296650,1,"""Europe""" +2023-03-26,75658,1788,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2149.43,{},297195,1,"""Europe""" +2023-11-05,75659,1716,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1427.08,"{\""seasonal\"": \""17%\""}",278589,1,"""South America""" +2024-12-28,75660,6741,"[\""Tablet\"", \""Wireless Mouse\""]",1232.95,"{\""loyalty\"": \""25%\""}",279493,0,"""North America""" +2023-08-22,75661,3972,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2112.07,{},50450,0,"""South America""" +2023-02-23,75662,2719,"[\""Wireless Mouse\""]",1061.37,{},181506,1,"""North America""" +2023-04-01,75663,8565,"[\""Headphones\""]",3567.47,"{\"": \""26%\""}",192916,0,"""Africa""" +2024-12-20,75664,9382,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2592.4,"{\""loyalty\"": \""12%\""}",251449,1,"""Asia""" +2023-01-26,75665,6591,"[\""Phone\"", \""Tablet\""]",378.09,"{\""seasonal\"": \""12%\""}",106918,0,"""North America""" +2023-09-25,75666,7938,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1322.2,"{\""loyalty\"": \""6%\""}",89767,0,"""South America""" +2023-06-23,75667,1752,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1052.47,{},8287,1,"""Asia""" +2023-09-23,75668,6201,"[\""Wireless Mouse\""]",4411.73,{},151814,1,"""Europe""" +2023-02-23,75669,7031,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1893.38,{},125649,0,"""Africa""" +2023-04-10,75670,2092,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3211.52,{},279953,0,"""North America""" +2023-06-16,75671,8366,"[\""Monitor\"", \""Headphones\""]",4272.1,"{\"": \""8%\""}",85793,1,"""Europe""" +2024-06-28,75672,5245,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2753.59,"{\""promo\"": \""14%\""}",185675,0,"""Africa""" +2023-11-12,75673,1955,"[\""Phone\"", \""Headphones\""]",3999.35,"{\""promo\"": \""8%\""}",133886,0,"""North America""" +2024-11-09,75674,7328,"[\""Headphones\""]",2189.27,"{\""promo\"": \""10%\""}",142974,1,"""Africa""" +2024-08-27,75675,9768,"[\""Headphones\"", \""Laptop\""]",4475.3,"{\""seasonal\"": \""20%\""}",83412,0,"""Africa""" +2023-07-16,75676,7311,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4372.13,{},113030,1,"""Africa""" +2023-06-26,75677,9340,"[\""Headphones\"", \""Charger\""]",3279.02,"{\""loyalty\"": \""30%\""}",199074,0,"""Asia""" +2024-12-22,75678,4006,"[\""Laptop\""]",3757.69,"{\""promo\"": \""11%\""}",48135,1,"""Europe""" +2024-11-09,75679,9081,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1571.12,"{\""loyalty\"": \""26%\""}",277412,1,"""Europe""" +2023-04-11,75680,608,"[\""Phone\"", \""Charger\""]",2143.21,"{\""loyalty\"": \""20%\""}",260685,0,"""Asia""" +2023-03-15,75681,7222,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3515.01,{},99454,1,"""Europe""" +2024-05-06,75682,6583,"[\""Wireless Mouse\""]",1862.81,{},81590,0,"""North America""" +2024-07-08,75683,1413,"[\""Laptop\"", \""Headphones\""]",4196.48,{},152027,1,"""Africa""" +2024-11-16,75684,3025,"[\""Keyboard\"", \""Monitor\""]",4349.07,{},48339,1,"""South America""" +2024-02-17,75685,9537,"[\""Phone\"", \""Charger\""]",2773.86,{},21674,1,"""Asia""" +2024-04-05,75686,6890,"[\""Laptop\""]",3006.06,"{\""promo\"": \""7%\""}",128884,1,"""Africa""" +2024-09-28,75687,8027,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4694.13,{},121590,0,"""Europe""" +2024-05-02,75688,1513,"[\""Keyboard\"", \""Charger\""]",1943.07,{},166334,0,"""Asia""" +2023-10-03,75689,5762,"[\""Keyboard\""]",1569.04,{},224976,1,"""North America""" +2023-01-24,75690,890,"[\""Headphones\"", \""Phone\""]",1953.71,{},156664,0,"""Africa""" +2024-02-22,75691,9393,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3514.02,"{\""loyalty\"": \""13%\""}",257504,1,"""South America""" +2024-08-27,75692,3904,"[\""Monitor\""]",3547.29,{},46542,0,"""Africa""" +2024-07-11,75693,4124,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3334.75,"{\"": \""27%\""}",160920,1,"""Asia""" +2024-10-24,75694,5709,"[\""Charger\""]",89.52,"{\""loyalty\"": \""6%\""}",187421,0,"""Africa""" +2023-11-13,75695,9846,"[\""Phone\""]",1691.34,"{\"": \""21%\""}",149891,0,"""South America""" +2023-03-29,75696,7143,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1373.14,{},32100,1,"""Europe""" +2023-10-16,75697,614,"[\""Tablet\"", \""Monitor\""]",4444.57,{},8205,1,"""Europe""" +2024-11-26,75698,3833,"[\""Tablet\"", \""Phone\""]",423.21,"{\""seasonal\"": \""7%\""}",119262,0,"""South America""" +2023-05-01,75699,7110,"[\""Headphones\""]",3059.43,{},196241,1,"""Africa""" +2024-07-04,75700,2857,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3342.26,"{\"": \""15%\""}",280925,0,"""Africa""" +2023-12-19,75701,9758,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1303.48,"{\""promo\"": \""30%\""}",57211,1,"""North America""" +2024-02-26,75702,8673,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2407.21,"{\""loyalty\"": \""5%\""}",219308,0,"""Africa""" +2023-11-29,75703,4824,"[\""Wireless Mouse\""]",4528.07,"{\""promo\"": \""9%\""}",3547,1,"""Europe""" +2023-10-26,75704,7409,"[\""Charger\""]",493.14,{},166794,1,"""Asia""" +2023-07-07,75705,6685,"[\""Phone\""]",1530.46,"{\""seasonal\"": \""8%\""}",102435,0,"""Europe""" +2023-12-22,75706,4635,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2454.64,"{\"": \""22%\""}",213750,1,"""Europe""" +2024-10-06,75707,510,"[\""Monitor\""]",3504.63,{},131278,1,"""South America""" +2023-02-08,75708,1839,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1611.05,{},255982,0,"""Africa""" +2024-09-22,75709,1199,"[\""Phone\"", \""Keyboard\""]",3253.6,"{\"": \""5%\""}",286259,1,"""Europe""" +2024-01-31,75710,4464,"[\""Charger\"", \""Tablet\""]",3976.56,"{\""seasonal\"": \""30%\""}",191938,0,"""North America""" +2024-07-19,75711,8642,"[\""Phone\"", \""Wireless Mouse\""]",2133.95,{},135349,0,"""South America""" +2024-12-01,75712,6911,"[\""Charger\""]",3510.93,{},107532,1,"""Asia""" +2023-03-10,75713,2813,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2422.98,{},270441,1,"""Europe""" +2024-02-28,75714,1724,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3874.48,{},67297,0,"""Europe""" +2023-10-03,75715,5437,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3460.15,{},180455,0,"""Europe""" +2024-08-03,75716,1754,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1877.06,{},224102,0,"""Africa""" +2024-10-13,75717,6287,"[\""Keyboard\"", \""Laptop\""]",3562.38,"{\""loyalty\"": \""23%\""}",196348,1,"""Europe""" +2023-10-22,75718,6693,"[\""Charger\"", \""Keyboard\""]",1421.06,{},163252,0,"""Europe""" +2024-01-01,75719,3565,"[\""Laptop\""]",3657.65,{},199251,1,"""North America""" +2023-12-01,75720,5882,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",127.07,{},272581,0,"""Asia""" +2024-06-29,75721,1425,"[\""Monitor\"", \""Keyboard\""]",3537.49,{},163578,0,"""Asia""" +2023-07-06,75722,650,"[\""Wireless Mouse\"", \""Tablet\""]",3071.52,{},229798,1,"""Africa""" +2024-08-01,75723,2937,"[\""Laptop\"", \""Headphones\""]",3004.69,{},92978,0,"""Africa""" +2023-07-17,75724,5372,"[\""Keyboard\"", \""Wireless Mouse\""]",3235.02,"{\""loyalty\"": \""9%\""}",174254,0,"""Europe""" +2023-10-23,75725,1722,"[\""Headphones\""]",3897.04,{},71915,0,"""Asia""" +2024-12-28,75726,520,"[\""Phone\"", \""Charger\"", \""Headphones\""]",270.55,{},20964,0,"""North America""" +2023-04-29,75727,410,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4224.84,{},152862,0,"""Asia""" +2023-10-08,75728,9875,"[\""Tablet\"", \""Charger\""]",2352.27,{},84767,1,"""Europe""" +2024-11-08,75729,4118,"[\""Phone\""]",2446.86,"{\""loyalty\"": \""9%\""}",33287,1,"""Africa""" +2024-09-25,75730,5519,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3005.31,{},251293,1,"""North America""" +2024-12-17,75731,9444,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1703.06,"{\"": \""14%\""}",77508,1,"""Africa""" +2023-04-14,75732,5515,"[\""Monitor\""]",4795.44,{},139216,0,"""Africa""" +2024-02-21,75733,4698,"[\""Tablet\"", \""Keyboard\""]",3009.71,"{\""promo\"": \""15%\""}",164607,1,"""Africa""" +2023-12-05,75734,816,"[\""Tablet\"", \""Monitor\""]",4948.25,"{\"": \""10%\""}",216556,0,"""South America""" +2024-07-22,75735,3818,"[\""Monitor\""]",1177.44,"{\""promo\"": \""5%\""}",210267,1,"""Asia""" +2024-12-08,75736,5763,"[\""Keyboard\"", \""Headphones\""]",2079.65,"{\""seasonal\"": \""13%\""}",44720,0,"""Africa""" +2023-12-27,75737,6004,"[\""Monitor\""]",3198.5,"{\""loyalty\"": \""13%\""}",134903,1,"""Europe""" +2024-06-21,75738,943,"[\""Tablet\"", \""Headphones\""]",1986.68,{},83134,1,"""South America""" +2023-04-15,75739,4477,"[\""Headphones\"", \""Tablet\""]",2245.25,"{\""seasonal\"": \""12%\""}",107881,0,"""South America""" +2024-10-20,75740,6974,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2904.8,{},77662,1,"""South America""" +2024-04-25,75741,3566,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3183.05,{},161200,0,"""Europe""" +2023-11-21,75742,7987,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2956.27,{},227505,0,"""Europe""" +2024-02-18,75743,3331,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2248.27,{},193152,1,"""Asia""" +2023-05-01,75744,2265,"[\""Phone\"", \""Monitor\""]",3230.41,"{\""promo\"": \""7%\""}",196533,1,"""Africa""" +2023-02-11,75745,6542,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",461.76,"{\"": \""18%\""}",249511,1,"""North America""" +2023-10-15,75746,3334,"[\""Headphones\""]",1779.65,"{\""promo\"": \""12%\""}",74880,0,"""Africa""" +2023-03-12,75747,8063,"[\""Tablet\"", \""Keyboard\""]",928.16,{},289486,1,"""Africa""" +2024-02-21,75748,6558,"[\""Tablet\"", \""Keyboard\""]",921.76,"{\""loyalty\"": \""7%\""}",215680,1,"""Asia""" +2023-12-29,75749,995,"[\""Headphones\""]",1228.1,"{\"": \""27%\""}",77616,0,"""Europe""" +2024-06-28,75750,1722,"[\""Laptop\"", \""Keyboard\""]",2756.99,{},32439,0,"""Asia""" +2023-01-29,75751,973,"[\""Phone\""]",3307.81,{},204808,1,"""Africa""" +2023-06-17,75752,1760,"[\""Monitor\"", \""Charger\""]",1989.06,{},248151,0,"""North America""" +2024-12-23,75753,9714,"[\""Wireless Mouse\"", \""Monitor\""]",3059.63,"{\""seasonal\"": \""16%\""}",2057,1,"""Europe""" +2024-03-12,75754,4894,"[\""Phone\"", \""Charger\""]",2075.77,"{\""seasonal\"": \""21%\""}",264453,1,"""South America""" +2024-03-01,75755,5498,"[\""Phone\"", \""Laptop\""]",3862.68,"{\""promo\"": \""6%\""}",141659,0,"""Africa""" +2023-06-25,75756,1572,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",785.8,"{\"": \""20%\""}",298730,0,"""Africa""" +2024-02-03,75757,7037,"[\""Wireless Mouse\""]",3903.7,{},235540,0,"""North America""" +2024-05-09,75758,1200,"[\""Wireless Mouse\"", \""Monitor\""]",794.08,"{\""loyalty\"": \""28%\""}",63256,0,"""Asia""" +2024-06-24,75759,1602,"[\""Tablet\""]",2058.24,{},77701,0,"""Europe""" +2024-08-14,75760,3442,"[\""Phone\"", \""Headphones\""]",189.29,"{\""promo\"": \""20%\""}",295701,1,"""North America""" +2024-03-23,75761,729,"[\""Charger\"", \""Tablet\""]",220.1,{},174011,0,"""Africa""" +2024-01-01,75762,2033,"[\""Headphones\""]",4380.69,"{\"": \""6%\""}",17607,1,"""Asia""" +2024-11-02,75763,4578,"[\""Wireless Mouse\""]",4525.2,"{\""seasonal\"": \""15%\""}",218064,1,"""Asia""" +2024-02-21,75764,6041,"[\""Charger\"", \""Wireless Mouse\""]",4408.19,"{\""seasonal\"": \""23%\""}",117258,1,"""North America""" +2023-06-19,75765,5347,"[\""Wireless Mouse\"", \""Phone\""]",1195.76,"{\""loyalty\"": \""29%\""}",244872,1,"""North America""" +2024-03-22,75766,9137,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2590.95,{},112878,1,"""South America""" +2023-02-13,75767,6790,"[\""Charger\""]",3413.03,"{\""loyalty\"": \""14%\""}",34161,1,"""Europe""" +2024-01-11,75768,6526,"[\""Wireless Mouse\""]",2698.97,"{\""seasonal\"": \""24%\""}",87740,1,"""North America""" +2023-09-23,75769,6318,"[\""Tablet\""]",854.49,{},220855,0,"""Europe""" +2024-02-25,75770,1229,"[\""Keyboard\"", \""Laptop\""]",272.03,"{\""loyalty\"": \""11%\""}",149438,1,"""South America""" +2024-02-27,75771,6532,"[\""Charger\"", \""Phone\""]",507.59,{},9033,1,"""Asia""" +2023-03-16,75772,5674,"[\""Charger\""]",3727.49,{},261239,1,"""Europe""" +2024-06-10,75773,6463,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4188.68,"{\""loyalty\"": \""18%\""}",150335,1,"""Asia""" +2024-12-08,75774,2833,"[\""Tablet\""]",3091.27,"{\""seasonal\"": \""19%\""}",188877,0,"""Europe""" +2024-06-05,75775,4262,"[\""Wireless Mouse\"", \""Headphones\""]",2597.62,"{\""loyalty\"": \""14%\""}",214316,1,"""South America""" +2023-04-11,75776,17,"[\""Laptop\"", \""Headphones\""]",2324.57,{},81362,0,"""Europe""" +2024-07-06,75777,652,"[\""Charger\""]",733.5,"{\""loyalty\"": \""21%\""}",237070,0,"""Asia""" +2024-05-15,75778,1515,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3665.18,"{\""loyalty\"": \""15%\""}",273690,0,"""Africa""" +2024-07-13,75779,5286,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3125.51,{},278704,1,"""Asia""" +2023-08-09,75780,656,"[\""Keyboard\""]",746.02,{},28904,1,"""Asia""" +2024-05-30,75781,874,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1420.54,"{\""seasonal\"": \""8%\""}",156103,0,"""Europe""" +2023-03-16,75782,7843,"[\""Laptop\""]",3580.48,{},186773,0,"""South America""" +2024-07-11,75783,1328,"[\""Wireless Mouse\"", \""Headphones\""]",550.68,{},175873,1,"""Africa""" +2023-12-28,75784,3997,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",230.56,{},151585,0,"""Africa""" +2023-02-18,75785,6731,"[\""Tablet\"", \""Laptop\""]",2105.18,"{\""loyalty\"": \""5%\""}",87379,0,"""Europe""" +2024-08-20,75786,221,"[\""Keyboard\"", \""Wireless Mouse\""]",4140.08,"{\"": \""26%\""}",292419,1,"""South America""" +2024-07-24,75787,3621,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4847.22,"{\""promo\"": \""26%\""}",183028,1,"""Europe""" +2024-10-02,75788,9128,"[\""Keyboard\""]",312.98,"{\""seasonal\"": \""18%\""}",11986,0,"""Asia""" +2024-03-05,75789,9181,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",969.11,"{\"": \""27%\""}",184879,1,"""Africa""" +2024-12-07,75790,3211,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2627.44,"{\""promo\"": \""14%\""}",60417,0,"""Asia""" +2023-07-11,75791,9047,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1559.31,"{\""seasonal\"": \""11%\""}",106330,1,"""Europe""" +2024-12-18,75792,6243,"[\""Phone\"", \""Tablet\""]",4791.42,{},28015,1,"""Asia""" +2023-02-12,75793,7794,"[\""Charger\"", \""Headphones\""]",4934.25,{},51843,0,"""Europe""" +2024-11-26,75794,86,"[\""Headphones\""]",448.02,"{\""seasonal\"": \""12%\""}",2869,1,"""North America""" +2024-07-18,75795,4,"[\""Charger\""]",1541.69,"{\""promo\"": \""16%\""}",227513,1,"""North America""" +2023-11-08,75796,5029,"[\""Keyboard\""]",4281.7,"{\""loyalty\"": \""23%\""}",63073,0,"""Africa""" +2023-05-11,75797,5136,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",227.2,{},14738,1,"""Africa""" +2024-12-24,75798,6326,"[\""Monitor\"", \""Tablet\""]",519.33,{},170960,1,"""Africa""" +2023-08-21,75799,1591,"[\""Laptop\""]",2767.76,{},119128,1,"""North America""" +2024-07-31,75800,5187,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2438.79,{},28108,0,"""Europe""" +2024-01-01,75801,1511,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2645.51,"{\""promo\"": \""7%\""}",246387,1,"""North America""" +2023-04-26,75802,4896,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2767.24,"{\"": \""25%\""}",52314,1,"""Europe""" +2024-02-01,75803,6070,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1871.88,"{\"": \""17%\""}",21459,1,"""Africa""" +2024-03-18,75804,9349,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3965.25,"{\""promo\"": \""20%\""}",186410,1,"""Asia""" +2024-02-18,75805,7350,"[\""Keyboard\"", \""Wireless Mouse\""]",1578.52,"{\""seasonal\"": \""18%\""}",109021,1,"""Europe""" +2023-07-31,75806,5662,"[\""Keyboard\""]",3311.26,{},37724,0,"""Africa""" +2023-12-09,75807,8565,"[\""Charger\"", \""Keyboard\""]",3699.36,"{\"": \""18%\""}",25672,0,"""Africa""" +2023-10-21,75808,6650,"[\""Monitor\""]",2782.91,"{\""promo\"": \""21%\""}",109201,0,"""North America""" +2024-03-15,75809,9625,"[\""Keyboard\""]",4301.12,{},20624,0,"""Africa""" +2024-01-22,75810,9911,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3559.38,"{\""promo\"": \""27%\""}",175983,0,"""North America""" +2023-10-08,75811,2272,"[\""Charger\""]",671.22,"{\""promo\"": \""14%\""}",18588,0,"""South America""" +2024-04-22,75812,9081,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1367.9,{},122831,1,"""Europe""" +2024-10-05,75813,8936,"[\""Tablet\"", \""Monitor\""]",808.3,"{\""loyalty\"": \""25%\""}",271883,1,"""Europe""" +2024-11-02,75814,3979,"[\""Wireless Mouse\""]",3208.46,{},197241,0,"""Europe""" +2023-06-12,75815,7608,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3569.05,"{\""promo\"": \""11%\""}",31249,1,"""Europe""" +2023-04-16,75816,699,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1673.03,{},286485,0,"""Europe""" +2023-07-08,75817,361,"[\""Phone\""]",4592.7,"{\""loyalty\"": \""20%\""}",269537,1,"""Africa""" +2024-05-28,75818,904,"[\""Charger\""]",3639.24,{},43319,0,"""South America""" +2024-11-02,75819,2243,"[\""Laptop\""]",1984.72,{},175091,0,"""Europe""" +2024-10-22,75820,2808,"[\""Monitor\"", \""Tablet\""]",2177.33,{},201021,0,"""North America""" +2024-04-25,75821,725,"[\""Charger\"", \""Wireless Mouse\""]",2920.33,{},224774,1,"""Asia""" +2023-10-05,75822,5085,"[\""Headphones\""]",878.45,{},275474,1,"""Africa""" +2023-06-30,75823,9593,"[\""Monitor\"", \""Wireless Mouse\""]",818.29,"{\""promo\"": \""22%\""}",146564,1,"""Europe""" +2023-08-03,75824,7358,"[\""Charger\""]",1982.21,{},163311,0,"""Europe""" +2024-11-05,75825,1817,"[\""Charger\"", \""Phone\"", \""Headphones\""]",183.37,{},175588,1,"""North America""" +2024-02-03,75826,1916,"[\""Wireless Mouse\""]",2054.92,"{\"": \""15%\""}",266395,0,"""Asia""" +2023-10-11,75827,8765,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2564.52,"{\"": \""25%\""}",169251,0,"""Africa""" +2023-01-26,75828,736,"[\""Phone\""]",3827.85,{},129466,1,"""Africa""" +2023-06-29,75829,9857,"[\""Tablet\""]",475.92,"{\"": \""26%\""}",133901,0,"""Africa""" +2024-09-16,75830,168,"[\""Phone\"", \""Headphones\""]",4033.75,{},239128,1,"""Africa""" +2023-02-15,75831,2114,"[\""Keyboard\""]",3604.84,"{\""loyalty\"": \""8%\""}",221126,0,"""North America""" +2023-12-31,75832,9151,"[\""Tablet\"", \""Keyboard\""]",1876.96,{},119524,0,"""South America""" +2023-11-11,75833,7360,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",51.27,{},209566,0,"""South America""" +2024-10-24,75834,3623,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4600.72,{},199395,0,"""Asia""" +2023-02-03,75835,2101,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2690.75,"{\"": \""5%\""}",3083,1,"""North America""" +2024-12-29,75836,6523,"[\""Keyboard\"", \""Phone\""]",1693.11,"{\""seasonal\"": \""22%\""}",98460,0,"""Europe""" +2024-07-05,75837,8213,"[\""Laptop\"", \""Tablet\""]",2276.96,"{\""loyalty\"": \""30%\""}",166079,0,"""Africa""" +2024-09-24,75838,1760,"[\""Phone\"", \""Charger\""]",727.42,"{\""seasonal\"": \""7%\""}",195538,0,"""Africa""" +2023-09-20,75839,993,"[\""Monitor\""]",4137.25,{},285797,1,"""Europe""" +2024-01-12,75840,7079,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2041.86,{},18868,0,"""Europe""" +2024-09-18,75841,5418,"[\""Wireless Mouse\""]",1863.59,"{\""seasonal\"": \""30%\""}",82146,1,"""Africa""" +2023-10-14,75842,9563,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1897.75,{},88534,0,"""North America""" +2024-09-04,75843,6595,"[\""Charger\"", \""Laptop\""]",1279.28,{},196262,0,"""Europe""" +2023-03-24,75844,3609,"[\""Charger\""]",2410.06,{},143916,1,"""Africa""" +2023-09-03,75845,7493,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3837.63,"{\""promo\"": \""13%\""}",36332,0,"""Europe""" +2023-03-24,75846,743,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3022.41,"{\""promo\"": \""18%\""}",125136,1,"""Europe""" +2024-02-27,75847,7414,"[\""Headphones\"", \""Keyboard\""]",105.92,{},144577,0,"""South America""" +2023-10-14,75848,1434,"[\""Wireless Mouse\"", \""Tablet\""]",3669.6,{},295897,0,"""Europe""" +2023-03-11,75849,508,"[\""Headphones\""]",4212.55,{},91387,0,"""North America""" +2024-02-12,75850,1642,"[\""Charger\""]",2785.88,{},229039,1,"""North America""" +2023-07-13,75851,1911,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",618.89,{},165324,1,"""Europe""" +2024-06-30,75852,9606,"[\""Laptop\"", \""Headphones\""]",4196.28,"{\""promo\"": \""6%\""}",207684,1,"""Africa""" +2023-06-04,75853,1834,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",409.0,"{\""seasonal\"": \""9%\""}",136215,0,"""Asia""" +2023-09-22,75854,3238,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",508.68,"{\""seasonal\"": \""9%\""}",25570,0,"""Africa""" +2023-12-16,75855,7315,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1086.99,{},196675,1,"""North America""" +2024-05-04,75856,1436,"[\""Laptop\"", \""Monitor\""]",2643.88,"{\""seasonal\"": \""17%\""}",86511,1,"""Asia""" +2023-11-25,75857,3174,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1503.33,{},111636,1,"""Europe""" +2024-10-02,75858,9572,"[\""Charger\"", \""Laptop\""]",3732.4,{},252253,0,"""Africa""" +2024-03-28,75859,4756,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2249.76,"{\"": \""12%\""}",165379,0,"""Asia""" +2023-12-13,75860,578,"[\""Charger\""]",3804.62,{},53986,1,"""North America""" +2023-06-21,75861,8826,"[\""Keyboard\""]",2529.64,{},14557,0,"""South America""" +2023-10-23,75862,8757,"[\""Keyboard\"", \""Laptop\""]",1752.22,"{\"": \""26%\""}",241273,0,"""Europe""" +2023-09-19,75863,537,"[\""Monitor\""]",973.11,"{\""seasonal\"": \""29%\""}",141398,1,"""Asia""" +2023-06-05,75864,3011,"[\""Monitor\"", \""Phone\""]",3621.6,"{\""promo\"": \""12%\""}",221733,1,"""Asia""" +2023-11-19,75865,9181,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3863.52,"{\""loyalty\"": \""29%\""}",158589,0,"""South America""" +2024-03-31,75866,5487,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2788.58,"{\"": \""26%\""}",140505,0,"""North America""" +2024-07-29,75867,5358,"[\""Monitor\""]",3707.0,{},291502,1,"""South America""" +2024-10-23,75868,5945,"[\""Keyboard\"", \""Monitor\""]",4420.15,{},77588,1,"""Asia""" +2024-08-30,75869,1618,"[\""Charger\"", \""Monitor\""]",4011.28,{},12072,0,"""Europe""" +2024-04-17,75870,4789,"[\""Charger\"", \""Keyboard\""]",1604.06,"{\"": \""21%\""}",23332,0,"""South America""" +2023-05-14,75871,3331,"[\""Phone\""]",3178.67,{},21461,1,"""Europe""" +2024-03-26,75872,5798,"[\""Charger\""]",3785.91,"{\""promo\"": \""23%\""}",49078,0,"""North America""" +2023-02-28,75873,9905,"[\""Tablet\""]",3064.45,"{\"": \""15%\""}",269169,1,"""Africa""" +2023-06-02,75874,1194,"[\""Phone\""]",2477.62,{},172666,1,"""South America""" +2023-10-22,75875,241,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4851.27,{},199377,1,"""North America""" +2024-10-08,75876,769,"[\""Phone\""]",4381.91,"{\""loyalty\"": \""26%\""}",241519,0,"""Asia""" +2023-07-01,75877,6947,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2985.29,{},50664,1,"""Europe""" +2024-09-29,75878,9985,"[\""Wireless Mouse\""]",1958.31,{},279441,0,"""Africa""" +2023-03-28,75879,8857,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3841.07,{},67693,1,"""North America""" +2024-10-07,75880,2702,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",380.08,{},188281,0,"""Europe""" +2023-07-20,75881,7803,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1754.97,"{\""loyalty\"": \""19%\""}",278671,1,"""Asia""" +2024-03-27,75882,2160,"[\""Keyboard\""]",3568.08,{},277307,1,"""North America""" +2024-02-05,75883,6751,"[\""Charger\"", \""Keyboard\""]",2908.96,{},89497,0,"""South America""" +2024-10-12,75884,9395,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2231.44,"{\""seasonal\"": \""14%\""}",90629,0,"""Africa""" +2023-12-15,75885,3525,"[\""Charger\"", \""Phone\""]",3968.25,"{\""loyalty\"": \""15%\""}",167998,0,"""North America""" +2023-06-06,75886,6250,"[\""Headphones\"", \""Keyboard\""]",4438.1,"{\""loyalty\"": \""27%\""}",216879,0,"""South America""" +2023-07-27,75887,4974,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2749.86,{},285071,1,"""North America""" +2023-08-11,75888,8148,"[\""Keyboard\""]",4900.72,"{\""loyalty\"": \""20%\""}",121855,0,"""Europe""" +2024-08-20,75889,4830,"[\""Headphones\"", \""Keyboard\""]",2198.83,{},289243,0,"""North America""" +2023-02-13,75890,3713,"[\""Laptop\"", \""Tablet\""]",2683.71,"{\"": \""24%\""}",36823,0,"""Asia""" +2024-08-12,75891,9590,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",305.12,"{\""seasonal\"": \""15%\""}",289612,1,"""Africa""" +2024-01-26,75892,1153,"[\""Monitor\"", \""Phone\""]",316.46,"{\"": \""23%\""}",178666,1,"""Asia""" +2023-08-15,75893,2249,"[\""Keyboard\"", \""Wireless Mouse\""]",1444.0,"{\""promo\"": \""10%\""}",232228,1,"""North America""" +2023-02-11,75894,7385,"[\""Keyboard\""]",4123.37,{},77124,0,"""Europe""" +2024-02-27,75895,2083,"[\""Phone\"", \""Wireless Mouse\""]",1156.51,{},220828,0,"""South America""" +2023-06-12,75896,9978,"[\""Monitor\""]",3230.74,{},171389,0,"""Asia""" +2024-02-06,75897,7150,"[\""Tablet\"", \""Headphones\""]",2525.13,{},240099,0,"""South America""" +2023-04-11,75898,2115,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",139.06,"{\""seasonal\"": \""28%\""}",133060,0,"""Europe""" +2024-02-15,75899,9818,"[\""Laptop\"", \""Charger\""]",1939.94,{},125583,0,"""North America""" +2024-02-17,75900,6747,"[\""Tablet\"", \""Charger\""]",4679.8,"{\""seasonal\"": \""25%\""}",18616,0,"""South America""" +2023-11-06,75901,4807,"[\""Charger\"", \""Headphones\""]",3795.61,"{\""seasonal\"": \""27%\""}",155903,1,"""Europe""" +2023-08-19,75902,6218,"[\""Wireless Mouse\""]",1275.42,"{\""loyalty\"": \""10%\""}",75673,0,"""North America""" +2024-10-01,75903,1325,"[\""Keyboard\"", \""Wireless Mouse\""]",4696.44,{},192122,0,"""South America""" +2023-04-29,75904,6541,"[\""Keyboard\"", \""Wireless Mouse\""]",3690.89,"{\""seasonal\"": \""23%\""}",180671,1,"""Asia""" +2023-11-10,75905,5104,"[\""Monitor\""]",190.06,"{\""seasonal\"": \""26%\""}",121842,0,"""North America""" +2024-06-26,75906,6332,"[\""Keyboard\"", \""Tablet\""]",1297.2,{},124989,0,"""Asia""" +2023-01-25,75907,5051,"[\""Tablet\""]",1476.74,{},91649,0,"""Asia""" +2023-10-17,75908,4913,"[\""Phone\""]",537.7,"{\""loyalty\"": \""19%\""}",273283,1,"""South America""" +2023-04-03,75909,3901,"[\""Headphones\""]",2456.11,{},10218,1,"""Asia""" +2023-07-04,75910,1503,"[\""Monitor\"", \""Headphones\""]",2589.84,"{\""promo\"": \""6%\""}",161937,0,"""Asia""" +2024-10-27,75911,962,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1059.26,"{\""promo\"": \""15%\""}",134092,0,"""South America""" +2024-07-14,75912,8509,"[\""Tablet\"", \""Headphones\""]",3311.92,"{\""promo\"": \""30%\""}",114589,1,"""Europe""" +2024-06-27,75913,3646,"[\""Phone\""]",1869.79,{},109125,1,"""Asia""" +2024-06-29,75914,8672,"[\""Keyboard\"", \""Headphones\""]",2343.31,"{\"": \""21%\""}",46726,1,"""Asia""" +2023-03-29,75915,1208,"[\""Laptop\""]",3571.13,{},219314,0,"""North America""" +2024-02-19,75916,5141,"[\""Laptop\""]",4646.26,{},59863,0,"""Asia""" +2024-02-02,75917,9851,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4876.35,{},235875,1,"""South America""" +2024-07-30,75918,3531,"[\""Tablet\""]",3805.26,{},169643,0,"""South America""" +2024-08-04,75919,4586,"[\""Laptop\"", \""Tablet\""]",1569.24,"{\""seasonal\"": \""11%\""}",111429,0,"""Asia""" +2024-04-24,75920,5238,"[\""Keyboard\""]",876.6,"{\"": \""9%\""}",231979,1,"""South America""" +2023-12-13,75921,6619,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3881.94,"{\""loyalty\"": \""5%\""}",15143,1,"""South America""" +2024-10-19,75922,6084,"[\""Phone\"", \""Tablet\""]",1003.56,"{\""seasonal\"": \""21%\""}",160280,0,"""Asia""" +2024-09-25,75923,6403,"[\""Headphones\"", \""Tablet\""]",4303.96,"{\""loyalty\"": \""11%\""}",63004,1,"""North America""" +2023-11-03,75924,4255,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1804.89,"{\"": \""19%\""}",283700,1,"""Africa""" +2024-10-29,75925,9339,"[\""Wireless Mouse\""]",2182.54,{},220656,0,"""Africa""" +2024-09-09,75926,5031,"[\""Headphones\"", \""Tablet\""]",4819.29,{},292961,1,"""Asia""" +2023-05-17,75927,9015,"[\""Phone\"", \""Monitor\""]",3580.16,"{\""seasonal\"": \""22%\""}",17771,0,"""North America""" +2023-05-08,75928,5082,"[\""Laptop\""]",3004.1,"{\""promo\"": \""21%\""}",294238,0,"""Africa""" +2023-02-26,75929,9077,"[\""Tablet\""]",1289.2,{},227992,0,"""Europe""" +2023-07-19,75930,1517,"[\""Keyboard\"", \""Phone\""]",4481.47,{},144001,0,"""Asia""" +2024-07-30,75931,4472,"[\""Headphones\""]",3553.99,{},24309,1,"""Asia""" +2023-10-18,75932,5147,"[\""Monitor\"", \""Keyboard\""]",3667.15,{},18082,0,"""South America""" +2023-06-18,75933,9860,"[\""Charger\"", \""Tablet\""]",3278.44,"{\""loyalty\"": \""6%\""}",193175,1,"""South America""" +2023-12-06,75934,2656,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3107.48,"{\""seasonal\"": \""9%\""}",23761,0,"""South America""" +2023-02-22,75935,3428,"[\""Keyboard\""]",634.73,{},12632,0,"""South America""" +2023-03-14,75936,9517,"[\""Wireless Mouse\"", \""Phone\""]",2565.59,{},96814,1,"""South America""" +2024-02-26,75937,1358,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",77.08,"{\""loyalty\"": \""8%\""}",162681,1,"""Europe""" +2024-06-02,75938,6205,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4956.83,{},15157,1,"""North America""" +2024-03-15,75939,149,"[\""Headphones\""]",1439.93,{},201874,0,"""Asia""" +2024-06-03,75940,7567,"[\""Monitor\""]",3079.11,{},152922,1,"""South America""" +2023-07-09,75941,3234,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",934.46,"{\""promo\"": \""18%\""}",103166,0,"""North America""" +2024-02-22,75942,1915,"[\""Tablet\"", \""Phone\""]",849.65,{},5643,1,"""Europe""" +2024-07-27,75943,211,"[\""Wireless Mouse\""]",3626.08,"{\""loyalty\"": \""28%\""}",255495,0,"""Europe""" +2024-06-19,75944,7277,"[\""Headphones\"", \""Keyboard\""]",4091.83,{},12909,1,"""Europe""" +2023-06-24,75945,4170,"[\""Phone\""]",1589.2,{},57938,1,"""Europe""" +2023-11-22,75946,7718,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3409.93,"{\""loyalty\"": \""5%\""}",261532,0,"""Europe""" +2024-06-01,75947,2564,"[\""Phone\"", \""Wireless Mouse\""]",3722.9,{},155904,0,"""North America""" +2023-06-30,75948,5713,"[\""Laptop\"", \""Phone\""]",3855.86,{},159247,0,"""Africa""" +2024-03-20,75949,191,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",137.34,{},5085,0,"""North America""" +2023-04-30,75950,9912,"[\""Tablet\""]",2575.54,{},36630,1,"""South America""" +2024-09-18,75951,238,"[\""Tablet\""]",298.3,"{\""seasonal\"": \""23%\""}",11315,0,"""South America""" +2023-09-10,75952,8840,"[\""Headphones\""]",2039.69,"{\"": \""25%\""}",155855,1,"""North America""" +2024-11-18,75953,3159,"[\""Tablet\""]",4454.43,"{\""loyalty\"": \""13%\""}",213515,0,"""Europe""" +2024-03-09,75954,3952,"[\""Monitor\"", \""Wireless Mouse\""]",250.24,{},82366,0,"""Europe""" +2023-05-13,75955,9644,"[\""Wireless Mouse\"", \""Monitor\""]",915.38,{},90080,1,"""North America""" +2023-12-29,75956,3858,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",822.34,"{\""seasonal\"": \""28%\""}",209618,0,"""Asia""" +2024-04-14,75957,6001,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4153.26,{},264491,0,"""North America""" +2023-05-01,75958,3755,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",572.5,{},220106,1,"""Asia""" +2023-01-03,75959,5044,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1829.99,{},71509,1,"""Africa""" +2024-06-28,75960,9959,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2878.45,{},155150,1,"""South America""" +2023-07-17,75961,9577,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3685.4,{},299293,1,"""Europe""" +2024-03-03,75962,4636,"[\""Charger\"", \""Wireless Mouse\""]",4509.52,{},175169,0,"""Asia""" +2023-10-03,75963,4153,"[\""Laptop\""]",2122.98,{},207317,0,"""North America""" +2023-07-16,75964,4813,"[\""Tablet\""]",356.52,"{\""promo\"": \""19%\""}",11436,0,"""South America""" +2023-11-15,75965,1364,"[\""Laptop\""]",3406.22,{},285812,0,"""South America""" +2024-03-31,75966,7085,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4358.09,{},142610,0,"""North America""" +2023-10-14,75967,2126,"[\""Wireless Mouse\"", \""Phone\""]",1991.12,{},204090,0,"""Europe""" +2023-04-13,75968,5084,"[\""Keyboard\""]",2627.37,"{\""seasonal\"": \""5%\""}",261529,0,"""Europe""" +2024-09-08,75969,5336,"[\""Laptop\"", \""Monitor\""]",3525.86,"{\""seasonal\"": \""13%\""}",207724,0,"""North America""" +2023-01-03,75970,173,"[\""Monitor\""]",3666.43,"{\""promo\"": \""21%\""}",198915,0,"""Africa""" +2024-08-28,75971,7972,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4076.13,"{\""promo\"": \""12%\""}",149351,0,"""Asia""" +2024-08-31,75972,6124,"[\""Tablet\"", \""Keyboard\""]",3086.74,"{\""promo\"": \""12%\""}",14071,1,"""Africa""" +2023-09-15,75973,2631,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1535.38,{},248018,0,"""Asia""" +2024-05-13,75974,7783,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2601.39,"{\""promo\"": \""16%\""}",189857,0,"""Africa""" +2023-02-07,75975,8731,"[\""Wireless Mouse\"", \""Charger\""]",975.6,"{\""loyalty\"": \""11%\""}",56657,0,"""South America""" +2024-06-25,75976,2548,"[\""Phone\"", \""Laptop\""]",3874.97,{},90918,0,"""Africa""" +2023-04-28,75977,2376,"[\""Keyboard\""]",2569.12,"{\""seasonal\"": \""23%\""}",119999,0,"""Europe""" +2023-09-05,75978,311,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2317.0,{},91449,1,"""North America""" +2024-06-17,75979,339,"[\""Charger\""]",4145.01,"{\"": \""14%\""}",26477,0,"""Asia""" +2023-09-25,75980,1282,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1888.58,{},205427,0,"""North America""" +2023-07-01,75981,7463,"[\""Wireless Mouse\""]",2079.4,{},122835,1,"""Asia""" +2024-01-08,75982,1148,"[\""Laptop\""]",1616.32,"{\""promo\"": \""10%\""}",178167,0,"""Europe""" +2023-11-04,75983,7562,"[\""Laptop\""]",4234.65,{},140657,1,"""Africa""" +2024-01-22,75984,9817,"[\""Tablet\""]",3088.88,{},256592,0,"""South America""" +2024-11-25,75985,8876,"[\""Wireless Mouse\""]",4591.82,{},225531,0,"""North America""" +2023-07-21,75986,8821,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1141.74,{},45538,0,"""Africa""" +2024-07-13,75987,2498,"[\""Keyboard\""]",2256.99,{},102384,0,"""South America""" +2023-05-25,75988,2563,"[\""Wireless Mouse\""]",3608.63,{},73895,0,"""South America""" +2023-07-14,75989,7546,"[\""Keyboard\"", \""Monitor\""]",3202.55,"{\""seasonal\"": \""10%\""}",106488,1,"""Europe""" +2023-12-26,75990,9676,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4422.34,"{\""loyalty\"": \""6%\""}",298787,1,"""Africa""" +2024-07-18,75991,7236,"[\""Monitor\"", \""Keyboard\""]",756.23,"{\""loyalty\"": \""7%\""}",4906,0,"""South America""" +2023-01-14,75992,9671,"[\""Keyboard\"", \""Charger\""]",4706.15,{},207583,1,"""South America""" +2023-02-02,75993,2192,"[\""Tablet\""]",2229.57,{},17322,1,"""North America""" +2023-03-01,75994,4406,"[\""Phone\""]",4956.04,"{\""promo\"": \""28%\""}",267031,1,"""Europe""" +2024-12-21,75995,6870,"[\""Laptop\"", \""Phone\""]",2764.33,"{\""promo\"": \""17%\""}",8990,1,"""Europe""" +2023-07-21,75996,5282,"[\""Keyboard\"", \""Laptop\""]",990.65,"{\""loyalty\"": \""16%\""}",101636,0,"""South America""" +2024-05-10,75997,3620,"[\""Monitor\"", \""Tablet\""]",2125.64,"{\""promo\"": \""13%\""}",52496,0,"""Asia""" +2023-02-13,75998,2916,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4790.15,"{\"": \""15%\""}",56452,0,"""Africa""" +2023-05-01,75999,9857,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3730.37,"{\""loyalty\"": \""8%\""}",212747,0,"""South America""" +2024-03-09,76000,3767,"[\""Monitor\"", \""Laptop\""]",1823.33,{},221778,1,"""Europe""" +2024-04-21,76001,3842,"[\""Laptop\""]",4324.55,{},127850,0,"""Africa""" +2024-11-09,76002,3758,"[\""Laptop\"", \""Headphones\""]",2986.29,{},129249,0,"""Europe""" +2024-09-29,76003,775,"[\""Laptop\""]",4099.63,{},67678,1,"""Europe""" +2024-08-14,76004,8903,"[\""Keyboard\"", \""Tablet\""]",1926.28,"{\""loyalty\"": \""22%\""}",279055,1,"""Africa""" +2023-03-29,76005,2314,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4264.5,{},233138,1,"""Europe""" +2024-03-23,76006,4801,"[\""Monitor\""]",794.3,{},165162,0,"""South America""" +2023-01-20,76007,838,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2278.51,"{\"": \""24%\""}",103717,1,"""Asia""" +2023-10-20,76008,2215,"[\""Headphones\""]",467.36,{},107732,1,"""Africa""" +2024-02-27,76009,7601,"[\""Wireless Mouse\""]",3318.93,{},156984,0,"""North America""" +2024-01-27,76010,2775,"[\""Wireless Mouse\"", \""Laptop\""]",3628.55,"{\""seasonal\"": \""27%\""}",218362,0,"""North America""" +2023-08-08,76011,606,"[\""Phone\""]",4530.92,"{\""promo\"": \""30%\""}",191594,1,"""Africa""" +2024-02-21,76012,3261,"[\""Headphones\"", \""Phone\""]",345.8,{},269160,0,"""Europe""" +2023-05-11,76013,7824,"[\""Keyboard\""]",3767.84,{},18699,1,"""South America""" +2023-12-12,76014,6446,"[\""Wireless Mouse\"", \""Laptop\""]",3148.2,{},189267,0,"""Africa""" +2024-05-10,76015,4368,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3949.33,{},212625,1,"""Europe""" +2023-09-02,76016,6212,"[\""Phone\""]",2558.94,{},178232,0,"""North America""" +2023-10-22,76017,1662,"[\""Laptop\""]",3157.79,{},113785,0,"""Europe""" +2024-06-27,76018,7794,"[\""Tablet\""]",2134.52,"{\""seasonal\"": \""6%\""}",48927,1,"""South America""" +2023-06-16,76019,9169,"[\""Laptop\"", \""Wireless Mouse\""]",4469.52,"{\""promo\"": \""9%\""}",7608,1,"""Asia""" +2023-02-18,76020,8125,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",266.25,"{\"": \""7%\""}",185525,0,"""Europe""" +2023-09-05,76021,7357,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2252.72,{},108530,1,"""Europe""" +2024-02-20,76022,6134,"[\""Phone\"", \""Tablet\""]",4822.39,"{\"": \""9%\""}",217247,0,"""Asia""" +2023-07-28,76023,3856,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1559.62,{},124406,0,"""South America""" +2024-11-09,76024,8642,"[\""Wireless Mouse\""]",1922.75,"{\""promo\"": \""25%\""}",219478,1,"""Europe""" +2023-11-15,76025,2351,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4422.63,"{\""promo\"": \""20%\""}",225799,0,"""Africa""" +2024-07-26,76026,6101,"[\""Monitor\"", \""Phone\""]",2828.87,"{\""seasonal\"": \""6%\""}",7379,1,"""Asia""" +2023-11-04,76027,7244,"[\""Tablet\"", \""Keyboard\""]",2167.36,"{\""loyalty\"": \""26%\""}",169206,1,"""South America""" +2023-10-19,76028,4981,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2812.39,{},241113,1,"""Asia""" +2023-07-09,76029,3493,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",621.46,{},73675,1,"""Europe""" +2024-02-14,76030,3935,"[\""Headphones\""]",727.75,{},135197,0,"""South America""" +2024-03-08,76031,9656,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1581.68,"{\""loyalty\"": \""17%\""}",135326,1,"""Europe""" +2024-12-11,76032,298,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4427.07,{},38839,0,"""North America""" +2024-03-15,76033,9829,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4433.56,{},114478,1,"""South America""" +2024-09-20,76034,9356,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3690.42,{},277481,0,"""Europe""" +2023-05-26,76035,5371,"[\""Charger\""]",3159.39,{},34379,0,"""Europe""" +2023-02-15,76036,9845,"[\""Keyboard\""]",4443.18,"{\""loyalty\"": \""8%\""}",41984,0,"""South America""" +2024-11-13,76037,5653,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",256.14,{},175655,0,"""Africa""" +2024-06-30,76038,994,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1130.81,"{\""loyalty\"": \""13%\""}",231323,0,"""Europe""" +2023-01-10,76039,5787,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2886.82,{},136094,0,"""Europe""" +2024-07-17,76040,5556,"[\""Tablet\"", \""Wireless Mouse\""]",2673.84,{},118474,1,"""South America""" +2024-04-18,76041,2950,"[\""Monitor\""]",4938.38,{},182017,1,"""Africa""" +2024-07-30,76042,2825,"[\""Tablet\"", \""Phone\"", \""Charger\""]",382.0,{},235481,1,"""Asia""" +2024-07-18,76043,2599,"[\""Tablet\""]",4599.97,"{\"": \""25%\""}",85350,1,"""Asia""" +2023-04-18,76044,8793,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2158.78,{},92931,0,"""Africa""" +2023-03-23,76045,9621,"[\""Keyboard\"", \""Phone\""]",1454.48,"{\""seasonal\"": \""30%\""}",91849,0,"""Africa""" +2024-03-11,76046,5523,"[\""Charger\""]",1496.42,{},116031,1,"""Africa""" +2023-09-21,76047,7414,"[\""Phone\"", \""Headphones\""]",2289.55,"{\""promo\"": \""16%\""}",193689,1,"""South America""" +2023-10-18,76048,9881,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3858.2,{},184895,1,"""Africa""" +2023-05-17,76049,3992,"[\""Wireless Mouse\""]",3451.13,{},188775,0,"""South America""" +2024-09-10,76050,1888,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4920.11,"{\"": \""22%\""}",74243,0,"""North America""" +2023-11-07,76051,1982,"[\""Tablet\""]",2057.67,{},31850,0,"""North America""" +2024-09-20,76052,4984,"[\""Wireless Mouse\"", \""Monitor\""]",4672.36,"{\""seasonal\"": \""11%\""}",236627,1,"""South America""" +2024-07-12,76053,6538,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4120.48,{},176105,0,"""Europe""" +2023-05-14,76054,8914,"[\""Phone\""]",2401.95,{},59324,1,"""Africa""" +2024-06-27,76055,7387,"[\""Tablet\"", \""Headphones\""]",4695.83,{},244147,0,"""Asia""" +2024-06-01,76056,4858,"[\""Phone\"", \""Charger\""]",3473.65,{},235653,1,"""Africa""" +2024-09-30,76057,900,"[\""Phone\"", \""Headphones\""]",2581.37,{},198147,0,"""South America""" +2023-04-25,76058,7251,"[\""Monitor\""]",1990.43,{},295694,0,"""Asia""" +2024-02-14,76059,302,"[\""Laptop\"", \""Headphones\""]",1515.96,{},17187,0,"""Africa""" +2023-08-29,76060,9136,"[\""Wireless Mouse\""]",4797.53,"{\"": \""25%\""}",87732,0,"""North America""" +2023-08-07,76061,4075,"[\""Laptop\""]",916.9,"{\""promo\"": \""11%\""}",44639,0,"""Europe""" +2023-08-06,76062,5818,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2406.0,"{\""loyalty\"": \""16%\""}",208485,0,"""Asia""" +2024-10-28,76063,8584,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3745.85,{},220709,1,"""Africa""" +2024-07-19,76064,909,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3732.74,{},223566,0,"""North America""" +2024-11-14,76065,3713,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1311.15,{},251248,1,"""Asia""" +2023-09-11,76066,1429,"[\""Headphones\"", \""Wireless Mouse\""]",1041.47,{},236623,0,"""South America""" +2023-07-13,76067,2398,"[\""Keyboard\"", \""Tablet\""]",919.87,{},69727,0,"""Europe""" +2024-10-20,76068,2637,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4532.17,"{\"": \""28%\""}",136355,0,"""Africa""" +2023-07-26,76069,7704,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1339.37,{},198114,0,"""North America""" +2024-09-19,76070,1971,"[\""Tablet\""]",224.14,"{\"": \""26%\""}",168784,0,"""Asia""" +2024-12-04,76071,1968,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1193.64,"{\""loyalty\"": \""26%\""}",53069,1,"""North America""" +2024-05-26,76072,5550,"[\""Headphones\""]",2767.95,{},217452,1,"""South America""" +2023-12-19,76073,5556,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2070.83,"{\""loyalty\"": \""20%\""}",32846,1,"""Africa""" +2023-03-20,76074,9572,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3660.47,"{\""promo\"": \""17%\""}",156228,1,"""Asia""" +2023-12-21,76075,7638,"[\""Headphones\""]",3947.78,{},104455,1,"""North America""" +2024-11-09,76076,1200,"[\""Phone\"", \""Laptop\""]",4624.54,"{\""loyalty\"": \""8%\""}",190121,0,"""Asia""" +2023-12-31,76077,6037,"[\""Keyboard\"", \""Wireless Mouse\""]",3846.96,"{\""loyalty\"": \""27%\""}",290386,0,"""Europe""" +2023-08-19,76078,5936,"[\""Wireless Mouse\""]",2660.19,{},138611,0,"""Europe""" +2024-06-27,76079,3084,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",914.46,"{\""loyalty\"": \""18%\""}",53635,0,"""Europe""" +2024-11-09,76080,4606,"[\""Phone\""]",4513.57,{},200837,1,"""Europe""" +2024-09-07,76081,8601,"[\""Wireless Mouse\"", \""Keyboard\""]",4693.19,{},28532,0,"""Europe""" +2023-07-09,76082,4933,"[\""Keyboard\""]",635.99,"{\"": \""19%\""}",285020,1,"""Asia""" +2024-06-15,76083,624,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3785.49,"{\""seasonal\"": \""13%\""}",197406,1,"""Europe""" +2023-05-05,76084,6455,"[\""Keyboard\""]",2062.36,{},148085,1,"""Europe""" +2023-03-16,76085,8494,"[\""Keyboard\""]",3111.19,"{\""seasonal\"": \""25%\""}",199757,1,"""North America""" +2023-11-27,76086,6140,"[\""Headphones\""]",2777.82,{},245524,1,"""South America""" +2024-10-19,76087,898,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2884.78,"{\"": \""22%\""}",190257,1,"""Asia""" +2023-12-08,76088,428,"[\""Headphones\"", \""Laptop\""]",3151.56,{},69708,1,"""South America""" +2024-03-08,76089,328,"[\""Laptop\"", \""Phone\""]",3595.61,"{\""seasonal\"": \""19%\""}",108041,1,"""Europe""" +2024-07-13,76090,2401,"[\""Keyboard\""]",1608.35,{},288266,1,"""Asia""" +2023-07-10,76091,3177,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2653.42,"{\""promo\"": \""13%\""}",243883,0,"""South America""" +2023-10-11,76092,3369,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1563.94,"{\""loyalty\"": \""12%\""}",186248,1,"""Africa""" +2024-12-22,76093,3592,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3077.82,"{\""loyalty\"": \""9%\""}",285221,0,"""Africa""" +2023-03-02,76094,3484,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2156.8,{},32388,1,"""Asia""" +2024-07-01,76095,9631,"[\""Monitor\"", \""Laptop\""]",1965.18,{},229815,1,"""Europe""" +2023-05-08,76096,6123,"[\""Headphones\""]",1474.68,"{\""promo\"": \""10%\""}",212315,1,"""Africa""" +2023-04-28,76097,82,"[\""Tablet\""]",399.88,{},84820,1,"""Europe""" +2024-12-27,76098,2668,"[\""Tablet\"", \""Monitor\""]",4676.92,"{\""seasonal\"": \""9%\""}",190564,1,"""Asia""" +2024-01-22,76099,7352,"[\""Charger\"", \""Wireless Mouse\""]",561.73,"{\""loyalty\"": \""6%\""}",299678,0,"""Africa""" +2024-05-08,76100,7885,"[\""Laptop\""]",3511.7,"{\""seasonal\"": \""22%\""}",167001,0,"""Asia""" +2024-06-15,76101,8037,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4749.56,{},225922,0,"""North America""" +2024-04-18,76102,2220,"[\""Monitor\""]",1558.26,"{\""promo\"": \""24%\""}",119408,0,"""South America""" +2024-09-27,76103,1110,"[\""Tablet\""]",4035.92,"{\""loyalty\"": \""26%\""}",98101,1,"""North America""" +2024-05-08,76104,3867,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2512.26,"{\""seasonal\"": \""18%\""}",15834,0,"""Asia""" +2023-11-08,76105,5234,"[\""Monitor\""]",1212.19,{},260167,0,"""Africa""" +2023-05-21,76106,9900,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1976.31,"{\""loyalty\"": \""16%\""}",194452,1,"""Asia""" +2023-11-15,76107,5787,"[\""Tablet\""]",4249.09,"{\""loyalty\"": \""28%\""}",244516,0,"""Asia""" +2024-04-24,76108,5627,"[\""Wireless Mouse\"", \""Laptop\""]",1485.78,"{\""loyalty\"": \""12%\""}",292381,0,"""Africa""" +2023-09-17,76109,601,"[\""Tablet\"", \""Phone\""]",654.91,"{\""loyalty\"": \""8%\""}",277824,1,"""South America""" +2023-12-01,76110,4281,"[\""Keyboard\"", \""Phone\""]",467.3,{},51258,1,"""North America""" +2023-01-26,76111,729,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",512.99,{},287800,1,"""North America""" +2024-09-02,76112,5463,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",3699.21,{},224646,0,"""North America""" +2024-09-02,76113,3909,"[\""Headphones\"", \""Phone\""]",4611.64,"{\""seasonal\"": \""25%\""}",64374,0,"""Africa""" +2023-08-14,76114,458,"[\""Charger\"", \""Headphones\""]",384.72,"{\"": \""22%\""}",273418,0,"""North America""" +2023-05-19,76115,5828,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4977.77,"{\""seasonal\"": \""5%\""}",125898,0,"""Asia""" +2024-10-22,76116,2652,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4284.47,"{\""promo\"": \""13%\""}",30630,0,"""North America""" +2024-12-21,76117,7070,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2248.97,"{\""seasonal\"": \""27%\""}",293585,1,"""Africa""" +2023-11-12,76118,5457,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",652.71,{},33758,1,"""Europe""" +2023-12-07,76119,9523,"[\""Charger\""]",1282.6,"{\"": \""25%\""}",113893,0,"""Africa""" +2023-04-01,76120,3601,"[\""Headphones\""]",956.6,"{\""seasonal\"": \""9%\""}",9549,0,"""Asia""" +2024-02-24,76121,9806,"[\""Phone\"", \""Charger\""]",3583.27,"{\""seasonal\"": \""27%\""}",275079,1,"""Africa""" +2023-08-28,76122,6506,"[\""Tablet\"", \""Monitor\""]",2979.58,"{\""promo\"": \""23%\""}",64495,0,"""Europe""" +2024-12-24,76123,8198,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4292.36,"{\""promo\"": \""22%\""}",232215,1,"""North America""" +2023-04-21,76124,4648,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2894.26,{},284430,1,"""South America""" +2023-09-19,76125,379,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4490.26,"{\"": \""21%\""}",191691,0,"""North America""" +2024-08-29,76126,5724,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1401.63,{},196635,0,"""Africa""" +2024-10-11,76127,206,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4711.09,"{\""seasonal\"": \""5%\""}",10022,0,"""North America""" +2023-12-02,76128,2456,"[\""Tablet\""]",278.62,"{\""loyalty\"": \""11%\""}",67261,0,"""Asia""" +2023-09-12,76129,8060,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",832.79,{},233110,0,"""South America""" +2024-10-22,76130,4612,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3143.95,"{\""promo\"": \""11%\""}",234434,1,"""South America""" +2023-10-23,76131,1921,"[\""Wireless Mouse\""]",413.62,"{\""seasonal\"": \""28%\""}",269091,1,"""South America""" +2024-08-16,76132,4736,"[\""Tablet\""]",2650.38,"{\""loyalty\"": \""13%\""}",125991,0,"""Europe""" +2024-11-14,76133,179,"[\""Laptop\"", \""Phone\""]",4505.06,"{\""promo\"": \""6%\""}",98477,1,"""Europe""" +2023-05-06,76134,866,"[\""Headphones\""]",4451.64,"{\""promo\"": \""19%\""}",281925,0,"""Europe""" +2023-03-18,76135,3335,"[\""Charger\""]",4976.92,{},169265,1,"""South America""" +2024-07-26,76136,6417,"[\""Wireless Mouse\""]",4010.2,{},191338,0,"""Asia""" +2023-02-07,76137,6793,"[\""Wireless Mouse\"", \""Phone\""]",4839.61,"{\"": \""23%\""}",239559,1,"""Africa""" +2024-12-31,76138,5345,"[\""Monitor\""]",3931.88,{},12514,0,"""Asia""" +2024-06-30,76139,8207,"[\""Charger\""]",1643.71,"{\""promo\"": \""30%\""}",165991,1,"""Asia""" +2023-04-22,76140,2930,"[\""Charger\""]",1131.01,"{\""seasonal\"": \""13%\""}",233693,1,"""South America""" +2023-06-13,76141,5506,"[\""Headphones\"", \""Wireless Mouse\""]",3978.75,"{\""loyalty\"": \""17%\""}",237827,0,"""North America""" +2023-12-10,76142,6460,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1745.34,{},289392,0,"""Europe""" +2023-01-01,76143,2720,"[\""Keyboard\"", \""Charger\""]",4542.49,"{\""promo\"": \""18%\""}",135587,1,"""Asia""" +2023-04-13,76144,1146,"[\""Headphones\""]",3594.12,{},74323,0,"""South America""" +2023-11-13,76145,3573,"[\""Monitor\"", \""Charger\""]",490.64,{},246294,0,"""North America""" +2023-06-25,76146,8563,"[\""Monitor\""]",517.36,"{\""loyalty\"": \""18%\""}",157009,1,"""South America""" +2023-10-13,76147,5432,"[\""Keyboard\""]",285.33,{},191589,0,"""North America""" +2023-10-10,76148,7546,"[\""Wireless Mouse\"", \""Keyboard\""]",1202.38,"{\""loyalty\"": \""26%\""}",216887,0,"""Africa""" +2023-06-28,76149,6337,"[\""Laptop\"", \""Phone\""]",1498.87,{},139805,0,"""North America""" +2024-02-08,76150,7754,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2332.04,{},272441,0,"""North America""" +2023-12-02,76151,51,"[\""Laptop\"", \""Keyboard\""]",3723.93,"{\""promo\"": \""17%\""}",5241,0,"""South America""" +2024-08-29,76152,7153,"[\""Monitor\"", \""Charger\""]",1706.34,"{\""seasonal\"": \""30%\""}",263239,1,"""North America""" +2024-09-30,76153,1098,"[\""Wireless Mouse\"", \""Laptop\""]",1926.05,{},288091,0,"""Europe""" +2023-09-07,76154,2740,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4352.72,"{\""promo\"": \""21%\""}",177755,0,"""South America""" +2024-12-17,76155,6056,"[\""Wireless Mouse\""]",2393.01,"{\""loyalty\"": \""21%\""}",103416,0,"""Asia""" +2024-12-31,76156,6698,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3053.14,"{\""promo\"": \""10%\""}",250758,0,"""Asia""" +2023-03-22,76157,8065,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3279.23,"{\""seasonal\"": \""5%\""}",257283,1,"""North America""" +2023-07-10,76158,4808,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1709.8,"{\""loyalty\"": \""23%\""}",125101,0,"""Asia""" +2024-08-28,76159,6793,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4628.64,{},282782,0,"""Africa""" +2023-06-23,76160,5232,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3701.03,{},106475,0,"""South America""" +2023-11-05,76161,990,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1879.29,"{\""loyalty\"": \""15%\""}",173969,1,"""South America""" +2024-05-16,76162,4176,"[\""Monitor\"", \""Keyboard\""]",3472.22,{},87484,0,"""Asia""" +2023-02-19,76163,3181,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2361.96,"{\""seasonal\"": \""15%\""}",66445,1,"""North America""" +2023-11-04,76164,1393,"[\""Laptop\""]",4950.11,{},91855,0,"""North America""" +2024-08-26,76165,4863,"[\""Wireless Mouse\"", \""Tablet\""]",2289.37,{},129226,1,"""North America""" +2023-02-15,76166,6330,"[\""Headphones\"", \""Wireless Mouse\""]",4435.63,{},280009,1,"""North America""" +2024-10-20,76167,7232,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2282.79,{},81026,1,"""Asia""" +2023-07-21,76168,5179,"[\""Keyboard\"", \""Tablet\""]",1481.3,"{\""loyalty\"": \""17%\""}",250233,1,"""North America""" +2023-10-06,76169,2317,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4610.31,"{\"": \""20%\""}",112421,0,"""Africa""" +2023-07-05,76170,7878,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1415.79,{},49014,0,"""Europe""" +2023-07-16,76171,575,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",180.43,{},153404,1,"""North America""" +2023-09-15,76172,6932,"[\""Wireless Mouse\"", \""Charger\""]",3203.65,"{\""seasonal\"": \""28%\""}",269363,0,"""Asia""" +2023-10-16,76173,7823,"[\""Laptop\"", \""Charger\""]",3758.97,"{\""promo\"": \""8%\""}",163207,1,"""South America""" +2024-01-09,76174,7839,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1079.99,{},139208,0,"""Europe""" +2023-02-19,76175,473,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",412.36,{},92251,1,"""Africa""" +2023-12-06,76176,6495,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1789.47,{},172311,0,"""North America""" +2023-04-07,76177,8894,"[\""Monitor\""]",886.13,"{\"": \""13%\""}",89189,1,"""North America""" +2024-12-18,76178,2342,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1155.53,{},174743,0,"""North America""" +2024-04-11,76179,3019,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1906.96,"{\""promo\"": \""27%\""}",65037,1,"""North America""" +2024-08-16,76180,2538,"[\""Wireless Mouse\""]",4847.53,{},128327,1,"""North America""" +2023-09-06,76181,5113,"[\""Headphones\"", \""Charger\""]",4471.52,"{\""promo\"": \""5%\""}",287178,0,"""Europe""" +2024-03-27,76182,8647,"[\""Charger\""]",3792.05,{},62445,1,"""South America""" +2024-05-20,76183,1933,"[\""Charger\""]",1240.53,"{\""seasonal\"": \""12%\""}",156314,0,"""Europe""" +2024-04-20,76184,5814,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1204.5,"{\"": \""27%\""}",260013,0,"""South America""" +2023-11-29,76185,3234,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",420.61,{},19284,0,"""South America""" +2023-05-16,76186,6293,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",65.82,{},67305,1,"""North America""" +2023-08-10,76187,4636,"[\""Monitor\"", \""Keyboard\""]",3379.33,"{\""promo\"": \""16%\""}",18582,1,"""North America""" +2023-02-03,76188,5710,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2320.26,{},50562,1,"""Africa""" +2023-07-23,76189,1675,"[\""Charger\"", \""Phone\""]",4556.9,{},217896,1,"""Africa""" +2024-02-16,76190,8594,"[\""Wireless Mouse\"", \""Tablet\""]",2071.92,"{\""loyalty\"": \""21%\""}",224176,1,"""Asia""" +2023-10-12,76191,4773,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4574.49,{},42009,0,"""Asia""" +2023-02-15,76192,5177,"[\""Phone\""]",1576.38,"{\""seasonal\"": \""13%\""}",160115,1,"""North America""" +2023-02-23,76193,5143,"[\""Charger\"", \""Laptop\""]",1329.99,{},207810,0,"""Africa""" +2024-02-12,76194,2017,"[\""Monitor\""]",2043.45,"{\""promo\"": \""21%\""}",251476,0,"""South America""" +2024-04-20,76195,921,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",557.63,{},6640,0,"""Europe""" +2023-08-08,76196,7533,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",611.91,{},187848,1,"""Asia""" +2023-04-13,76197,2127,"[\""Monitor\"", \""Tablet\""]",3030.69,{},52779,0,"""Asia""" +2024-04-14,76198,4154,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2403.63,{},206211,1,"""Asia""" +2023-10-17,76199,841,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",663.87,"{\""promo\"": \""8%\""}",56091,0,"""North America""" +2024-10-27,76200,8230,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3872.93,"{\"": \""20%\""}",82246,0,"""South America""" +2024-03-11,76201,7966,"[\""Tablet\""]",4382.4,{},154622,0,"""Europe""" +2024-06-16,76202,3731,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2035.63,{},233343,1,"""South America""" +2024-12-17,76203,8136,"[\""Tablet\""]",2381.29,"{\""loyalty\"": \""10%\""}",144568,1,"""North America""" +2023-12-29,76204,1332,"[\""Phone\""]",3379.27,"{\""promo\"": \""26%\""}",155405,1,"""Asia""" +2023-08-22,76205,2483,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3610.98,"{\""promo\"": \""12%\""}",33427,1,"""Asia""" +2024-07-06,76206,2809,"[\""Wireless Mouse\"", \""Phone\""]",1483.55,{},90384,1,"""Europe""" +2023-11-20,76207,7205,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4614.0,{},146119,1,"""North America""" +2024-01-20,76208,4019,"[\""Headphones\""]",1337.19,{},24902,1,"""Europe""" +2023-07-02,76209,4352,"[\""Monitor\""]",2106.95,"{\""seasonal\"": \""24%\""}",253484,1,"""Africa""" +2024-04-14,76210,4199,"[\""Phone\"", \""Laptop\""]",4890.41,"{\""loyalty\"": \""9%\""}",107281,1,"""Africa""" +2024-05-10,76211,4955,"[\""Tablet\"", \""Wireless Mouse\""]",483.86,"{\""loyalty\"": \""5%\""}",73560,1,"""Europe""" +2024-01-05,76212,1635,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",650.45,"{\""seasonal\"": \""13%\""}",15693,0,"""North America""" +2023-06-23,76213,49,"[\""Wireless Mouse\""]",2451.16,"{\""seasonal\"": \""9%\""}",64140,0,"""Africa""" +2023-01-08,76214,6236,"[\""Monitor\"", \""Wireless Mouse\""]",1324.54,"{\""promo\"": \""23%\""}",7642,1,"""South America""" +2024-02-12,76215,5671,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1227.15,"{\""loyalty\"": \""6%\""}",242968,0,"""Africa""" +2024-04-18,76216,8641,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4163.07,"{\"": \""11%\""}",274075,1,"""Africa""" +2023-05-06,76217,7211,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4786.52,"{\""promo\"": \""25%\""}",18557,0,"""Africa""" +2023-03-15,76218,6132,"[\""Monitor\""]",4872.52,{},220561,0,"""Asia""" +2024-03-21,76219,7184,"[\""Charger\"", \""Wireless Mouse\""]",1327.02,"{\""promo\"": \""18%\""}",134015,1,"""Europe""" +2024-05-12,76220,4346,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4567.17,{},221239,1,"""Asia""" +2023-06-01,76221,6190,"[\""Wireless Mouse\""]",3802.03,"{\"": \""21%\""}",228643,1,"""Africa""" +2023-09-02,76222,7101,"[\""Tablet\"", \""Charger\""]",2925.14,"{\""loyalty\"": \""11%\""}",228411,0,"""North America""" +2024-09-20,76223,7887,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4163.83,{},9977,0,"""South America""" +2023-06-13,76224,5955,"[\""Phone\"", \""Laptop\""]",4575.81,{},226226,0,"""South America""" +2024-04-22,76225,9689,"[\""Charger\""]",2097.88,{},23021,1,"""South America""" +2024-06-07,76226,8203,"[\""Wireless Mouse\""]",3619.66,"{\""loyalty\"": \""7%\""}",173347,0,"""North America""" +2024-07-27,76227,9180,"[\""Keyboard\""]",3437.92,"{\"": \""27%\""}",277887,1,"""Asia""" +2023-02-20,76228,1757,"[\""Phone\"", \""Keyboard\""]",1667.5,"{\"": \""12%\""}",200703,0,"""Africa""" +2023-01-19,76229,7203,"[\""Wireless Mouse\""]",3443.6,"{\""promo\"": \""27%\""}",173936,1,"""Asia""" +2023-10-15,76230,2033,"[\""Keyboard\"", \""Phone\""]",2641.38,"{\""seasonal\"": \""9%\""}",43386,1,"""Africa""" +2023-02-23,76231,450,"[\""Wireless Mouse\"", \""Headphones\""]",1773.33,{},125626,1,"""North America""" +2023-03-08,76232,2200,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3772.63,{},95766,1,"""Europe""" +2023-12-05,76233,8487,"[\""Wireless Mouse\""]",535.1,"{\""promo\"": \""29%\""}",271788,0,"""Europe""" +2023-01-24,76234,3380,"[\""Headphones\""]",1755.56,{},72985,0,"""Africa""" +2023-10-14,76235,3819,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3942.67,{},272406,1,"""Europe""" +2023-09-18,76236,4473,"[\""Wireless Mouse\"", \""Monitor\""]",2537.35,"{\""promo\"": \""11%\""}",21653,1,"""North America""" +2024-09-15,76237,1385,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1449.13,{},40751,1,"""Asia""" +2024-10-30,76238,9849,"[\""Monitor\"", \""Headphones\""]",4577.5,"{\""loyalty\"": \""24%\""}",232805,0,"""Asia""" +2023-06-09,76239,5720,"[\""Charger\"", \""Laptop\""]",1233.2,{},66805,1,"""North America""" +2023-09-04,76240,9719,"[\""Keyboard\""]",418.94,{},20510,1,"""North America""" +2023-04-28,76241,5457,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4121.98,{},68569,1,"""Africa""" +2023-05-05,76242,2287,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3694.14,{},104445,1,"""Asia""" +2023-05-20,76243,2664,"[\""Charger\"", \""Wireless Mouse\""]",2724.44,{},221336,1,"""Europe""" +2024-04-01,76244,4200,"[\""Laptop\"", \""Keyboard\""]",4787.87,{},27825,1,"""Africa""" +2024-03-28,76245,4832,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4191.94,"{\""seasonal\"": \""12%\""}",43717,0,"""Asia""" +2023-02-17,76246,8779,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2300.6,{},152640,1,"""Africa""" +2023-12-07,76247,4535,"[\""Headphones\"", \""Keyboard\""]",3580.9,"{\""promo\"": \""19%\""}",74363,0,"""Africa""" +2024-04-26,76248,1986,"[\""Wireless Mouse\"", \""Monitor\""]",1365.25,{},277268,1,"""Africa""" +2024-09-05,76249,6843,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4311.04,{},33791,0,"""Asia""" +2024-07-20,76250,6194,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2591.81,"{\""seasonal\"": \""11%\""}",1825,0,"""Africa""" +2024-04-22,76251,4008,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",774.19,{},292250,1,"""North America""" +2023-12-05,76252,9468,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1155.63,{},164994,1,"""North America""" +2023-03-07,76253,4403,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4797.56,{},268667,0,"""Europe""" +2024-09-04,76254,3180,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2145.49,{},194743,0,"""Africa""" +2024-09-09,76255,960,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1802.15,"{\""loyalty\"": \""10%\""}",51917,1,"""Asia""" +2024-12-21,76256,2007,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3468.47,"{\"": \""13%\""}",227812,1,"""Europe""" +2023-12-03,76257,8976,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",320.27,"{\""seasonal\"": \""19%\""}",118089,1,"""Europe""" +2024-01-20,76258,2598,"[\""Phone\""]",3754.73,"{\""promo\"": \""15%\""}",8344,0,"""Europe""" +2023-02-01,76259,9502,"[\""Phone\""]",4240.39,{},202565,0,"""Asia""" +2023-06-21,76260,9905,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4742.23,{},292977,1,"""North America""" +2023-09-28,76261,6886,"[\""Monitor\"", \""Keyboard\""]",1396.52,{},11885,0,"""South America""" +2024-06-12,76262,3536,"[\""Phone\""]",2036.69,{},165712,1,"""Asia""" +2023-03-08,76263,7340,"[\""Phone\"", \""Laptop\""]",818.71,{},281295,1,"""Africa""" +2023-12-02,76264,1206,"[\""Charger\""]",2279.52,{},50646,1,"""Europe""" +2023-02-06,76265,1286,"[\""Charger\"", \""Phone\"", \""Laptop\""]",150.0,{},79516,1,"""North America""" +2023-12-31,76266,6859,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3316.75,{},272398,0,"""South America""" +2024-11-29,76267,4146,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2657.75,{},231347,1,"""Europe""" +2024-07-11,76268,9739,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4200.14,"{\"": \""25%\""}",123113,0,"""North America""" +2023-11-20,76269,9171,"[\""Wireless Mouse\""]",294.86,{},297057,1,"""Africa""" +2023-10-24,76270,5948,"[\""Tablet\""]",681.78,{},113585,1,"""North America""" +2024-10-06,76271,4281,"[\""Keyboard\""]",797.26,{},299329,0,"""Africa""" +2023-05-19,76272,5223,"[\""Tablet\""]",3765.32,{},11774,1,"""Europe""" +2023-10-18,76273,5592,"[\""Charger\"", \""Phone\""]",142.16,{},280275,0,"""Asia""" +2023-08-25,76274,7783,"[\""Keyboard\"", \""Monitor\""]",2181.44,"{\""loyalty\"": \""8%\""}",116885,0,"""Europe""" +2024-06-19,76275,7064,"[\""Charger\"", \""Keyboard\""]",1999.18,{},112845,0,"""Asia""" +2024-01-24,76276,1406,"[\""Wireless Mouse\""]",1999.09,"{\""loyalty\"": \""26%\""}",284425,1,"""Europe""" +2023-02-24,76277,7837,"[\""Monitor\"", \""Laptop\""]",958.43,"{\"": \""25%\""}",199888,0,"""South America""" +2023-08-02,76278,4222,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4190.89,{},265243,1,"""Europe""" +2023-09-14,76279,6863,"[\""Laptop\"", \""Headphones\""]",2464.45,{},39346,1,"""Africa""" +2023-05-20,76280,6549,"[\""Monitor\""]",3242.56,"{\""seasonal\"": \""30%\""}",50326,0,"""South America""" +2024-10-29,76281,2571,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3811.86,"{\""loyalty\"": \""30%\""}",127677,1,"""Europe""" +2024-04-15,76282,4313,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",788.9,{},152022,0,"""Asia""" +2023-02-13,76283,722,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3187.06,"{\""promo\"": \""15%\""}",172462,1,"""North America""" +2023-04-11,76284,477,"[\""Headphones\""]",4623.89,{},175468,1,"""Asia""" +2024-11-17,76285,4292,"[\""Headphones\"", \""Wireless Mouse\""]",1130.32,{},163176,1,"""South America""" +2023-12-16,76286,6083,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4791.53,"{\""seasonal\"": \""15%\""}",178343,0,"""South America""" +2024-08-31,76287,3722,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",838.91,{},189995,1,"""South America""" +2023-07-05,76288,2038,"[\""Wireless Mouse\""]",649.38,"{\""promo\"": \""26%\""}",263949,1,"""Asia""" +2024-09-10,76289,7427,"[\""Headphones\""]",2880.42,{},112319,0,"""South America""" +2024-02-29,76290,7001,"[\""Charger\""]",3765.38,"{\""promo\"": \""24%\""}",114146,1,"""Africa""" +2024-04-18,76291,9014,"[\""Charger\""]",1035.8,"{\"": \""25%\""}",67144,1,"""Asia""" +2023-05-29,76292,8968,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4421.64,{},94404,0,"""North America""" +2024-01-29,76293,5619,"[\""Charger\""]",4181.82,"{\""seasonal\"": \""12%\""}",83641,1,"""South America""" +2023-07-17,76294,4338,"[\""Monitor\""]",4522.82,"{\"": \""7%\""}",22955,1,"""Africa""" +2024-02-19,76295,6082,"[\""Headphones\"", \""Tablet\""]",4401.25,{},186331,0,"""Africa""" +2023-01-27,76296,569,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",719.49,{},106516,0,"""South America""" +2023-01-08,76297,1485,"[\""Monitor\"", \""Laptop\""]",64.81,"{\"": \""23%\""}",234162,1,"""Asia""" +2023-02-08,76298,8052,"[\""Laptop\"", \""Monitor\""]",4387.78,"{\"": \""8%\""}",197156,0,"""North America""" +2024-01-05,76299,8448,"[\""Phone\"", \""Tablet\""]",3368.02,"{\""seasonal\"": \""29%\""}",267721,0,"""Africa""" +2024-06-12,76300,7927,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",202.8,{},246131,0,"""Africa""" +2023-10-03,76301,7984,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4632.14,"{\""seasonal\"": \""29%\""}",4434,1,"""Africa""" +2023-11-24,76302,7278,"[\""Tablet\"", \""Headphones\""]",2994.31,{},246989,0,"""South America""" +2023-05-05,76303,954,"[\""Tablet\"", \""Keyboard\""]",4581.52,"{\""seasonal\"": \""19%\""}",199005,0,"""South America""" +2023-06-29,76304,7751,"[\""Charger\""]",2803.51,"{\""promo\"": \""23%\""}",157409,0,"""Africa""" +2024-03-18,76305,2466,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2229.71,{},298384,0,"""Europe""" +2023-11-11,76306,141,"[\""Phone\""]",1688.42,"{\""seasonal\"": \""14%\""}",124474,1,"""South America""" +2024-10-12,76307,8198,"[\""Headphones\"", \""Monitor\""]",1389.84,{},69417,1,"""Europe""" +2023-09-29,76308,315,"[\""Charger\"", \""Laptop\""]",2945.93,{},272806,0,"""Asia""" +2024-03-26,76309,4851,"[\""Monitor\""]",202.78,"{\""seasonal\"": \""20%\""}",104721,1,"""Asia""" +2024-07-15,76310,9343,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1046.93,{},242942,1,"""Europe""" +2023-10-03,76311,1283,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1717.09,{},10506,1,"""Asia""" +2024-08-29,76312,6621,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4200.05,{},293458,0,"""North America""" +2023-12-22,76313,5494,"[\""Monitor\""]",669.88,"{\""loyalty\"": \""7%\""}",105162,0,"""North America""" +2024-05-21,76314,1980,"[\""Headphones\"", \""Tablet\""]",2027.8,"{\""promo\"": \""21%\""}",295303,1,"""Asia""" +2024-08-13,76315,3838,"[\""Headphones\""]",1777.17,"{\"": \""22%\""}",94051,1,"""Europe""" +2023-07-14,76316,489,"[\""Headphones\""]",1881.18,{},267534,1,"""South America""" +2023-07-02,76317,5852,"[\""Tablet\"", \""Monitor\""]",1128.76,{},76618,0,"""South America""" +2024-04-29,76318,1307,"[\""Keyboard\""]",429.44,{},283917,0,"""South America""" +2024-10-19,76319,8184,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3732.63,{},136423,0,"""Asia""" +2023-12-10,76320,1914,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",2749.7,"{\"": \""25%\""}",210062,0,"""Europe""" +2024-03-14,76321,1274,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4626.82,"{\""seasonal\"": \""14%\""}",32588,0,"""Europe""" +2023-10-26,76322,7599,"[\""Laptop\""]",1231.47,"{\""seasonal\"": \""21%\""}",203084,1,"""Asia""" +2023-03-14,76323,3130,"[\""Monitor\"", \""Wireless Mouse\""]",741.53,{},80032,0,"""Africa""" +2023-02-14,76324,9135,"[\""Tablet\""]",1049.18,{},291865,1,"""Europe""" +2023-04-13,76325,1639,"[\""Charger\"", \""Wireless Mouse\""]",1361.78,"{\"": \""21%\""}",126459,0,"""Asia""" +2023-08-15,76326,1249,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",137.14,"{\"": \""17%\""}",136831,1,"""Africa""" +2023-08-15,76327,8386,"[\""Keyboard\""]",1153.92,{},265477,0,"""Europe""" +2023-08-03,76328,7499,"[\""Phone\"", \""Keyboard\""]",1026.11,{},257414,1,"""North America""" +2023-09-04,76329,9407,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4686.08,"{\"": \""22%\""}",233281,1,"""South America""" +2023-03-21,76330,8260,"[\""Laptop\""]",2970.95,"{\""loyalty\"": \""5%\""}",116068,1,"""Africa""" +2023-07-03,76331,6109,"[\""Monitor\""]",2973.85,{},90302,1,"""North America""" +2024-06-22,76332,320,"[\""Headphones\"", \""Wireless Mouse\""]",3477.41,"{\""promo\"": \""9%\""}",160947,1,"""Europe""" +2024-01-15,76333,1525,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2481.09,{},231080,1,"""Europe""" +2023-10-26,76334,1635,"[\""Headphones\"", \""Tablet\""]",2400.47,"{\""loyalty\"": \""15%\""}",55951,1,"""South America""" +2024-04-07,76335,7653,"[\""Monitor\"", \""Wireless Mouse\""]",4560.72,{},120474,1,"""Asia""" +2023-07-03,76336,1828,"[\""Wireless Mouse\""]",3743.17,{},48858,1,"""Europe""" +2024-05-18,76337,8010,"[\""Wireless Mouse\"", \""Keyboard\""]",973.58,"{\""loyalty\"": \""17%\""}",215939,1,"""Europe""" +2024-04-23,76338,2020,"[\""Keyboard\"", \""Headphones\""]",1101.25,"{\"": \""22%\""}",277547,0,"""Africa""" +2023-11-26,76339,8645,"[\""Charger\"", \""Wireless Mouse\""]",1958.19,{},218512,1,"""Africa""" +2024-07-07,76340,9100,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4515.59,"{\""loyalty\"": \""12%\""}",284034,1,"""South America""" +2023-10-11,76341,475,"[\""Phone\"", \""Laptop\""]",2162.0,{},240464,1,"""North America""" +2023-12-04,76342,5492,"[\""Monitor\""]",1274.11,{},266123,0,"""South America""" +2023-12-06,76343,2301,"[\""Phone\""]",3306.4,"{\""promo\"": \""26%\""}",190645,1,"""Europe""" +2024-12-22,76344,2801,"[\""Wireless Mouse\""]",3425.35,"{\"": \""22%\""}",232295,1,"""Africa""" +2023-02-23,76345,5300,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",884.29,"{\""promo\"": \""13%\""}",275594,1,"""South America""" +2024-10-28,76346,9121,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1370.44,"{\""loyalty\"": \""20%\""}",276910,0,"""Europe""" +2024-01-31,76347,2927,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",317.16,"{\""promo\"": \""13%\""}",22485,0,"""North America""" +2023-12-01,76348,6710,"[\""Tablet\"", \""Keyboard\""]",4785.73,{},191794,1,"""Asia""" +2024-11-03,76349,544,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",447.96,"{\""seasonal\"": \""28%\""}",76163,0,"""Africa""" +2023-02-20,76350,6586,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",1363.76,"{\"": \""19%\""}",41071,0,"""Europe""" +2023-04-08,76351,6518,"[\""Charger\""]",4524.5,"{\""loyalty\"": \""28%\""}",228530,0,"""Africa""" +2024-06-29,76352,6199,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2518.38,"{\""promo\"": \""27%\""}",91759,1,"""South America""" +2023-08-15,76353,3836,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3324.01,"{\""promo\"": \""28%\""}",150436,1,"""North America""" +2024-11-23,76354,5517,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3396.98,"{\""seasonal\"": \""10%\""}",50333,0,"""South America""" +2024-10-11,76355,8591,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4218.26,"{\""seasonal\"": \""27%\""}",114085,1,"""South America""" +2023-08-12,76356,8815,"[\""Monitor\""]",1709.07,"{\""seasonal\"": \""5%\""}",149662,0,"""North America""" +2024-10-01,76357,4463,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4410.72,"{\""seasonal\"": \""24%\""}",8551,0,"""Asia""" +2023-04-20,76358,6482,"[\""Charger\""]",2915.74,{},190034,1,"""North America""" +2023-03-27,76359,9766,"[\""Keyboard\""]",3367.03,{},127392,0,"""Africa""" +2023-08-21,76360,4606,"[\""Monitor\"", \""Keyboard\""]",751.04,"{\""loyalty\"": \""6%\""}",275337,0,"""Asia""" +2023-11-13,76361,9288,"[\""Tablet\"", \""Headphones\""]",3506.37,{},295210,0,"""North America""" +2023-01-14,76362,1946,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1076.1,"{\""seasonal\"": \""20%\""}",165579,0,"""North America""" +2024-12-27,76363,178,"[\""Wireless Mouse\"", \""Monitor\""]",3321.33,"{\""seasonal\"": \""13%\""}",262084,1,"""Africa""" +2023-01-04,76364,6099,"[\""Laptop\""]",4033.73,{},100192,1,"""North America""" +2024-09-22,76365,933,"[\""Tablet\"", \""Monitor\""]",771.41,{},190727,0,"""South America""" +2024-07-09,76366,5999,"[\""Charger\""]",4116.6,"{\""loyalty\"": \""21%\""}",52056,0,"""Africa""" +2023-10-24,76367,7967,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4870.52,{},55421,1,"""North America""" +2023-12-21,76368,7530,"[\""Charger\"", \""Keyboard\""]",3859.31,{},64783,0,"""Asia""" +2024-07-07,76369,649,"[\""Monitor\"", \""Keyboard\""]",1560.96,{},55639,1,"""Asia""" +2023-05-31,76370,4094,"[\""Headphones\"", \""Laptop\""]",313.86,{},271486,0,"""Africa""" +2023-09-05,76371,1567,"[\""Monitor\""]",58.48,{},204124,0,"""Asia""" +2023-08-31,76372,7324,"[\""Monitor\""]",3280.75,{},14409,0,"""South America""" +2024-11-11,76373,1396,"[\""Keyboard\""]",1963.33,{},201743,0,"""South America""" +2024-09-09,76374,8000,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1240.0,"{\""loyalty\"": \""28%\""}",87691,0,"""South America""" +2023-03-25,76375,7039,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3258.67,{},272408,1,"""Europe""" +2023-07-20,76376,2296,"[\""Monitor\"", \""Phone\""]",4758.19,"{\""loyalty\"": \""30%\""}",278983,1,"""South America""" +2024-02-25,76377,3157,"[\""Laptop\"", \""Headphones\""]",4011.61,{},286728,1,"""Asia""" +2024-04-02,76378,2456,"[\""Phone\"", \""Laptop\""]",982.32,{},241973,0,"""Africa""" +2023-12-30,76379,9908,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",865.59,"{\""loyalty\"": \""30%\""}",160294,0,"""Europe""" +2024-03-06,76380,6816,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3321.61,{},95339,1,"""Europe""" +2024-10-08,76381,6334,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1584.3,{},183288,0,"""Asia""" +2023-03-03,76382,9661,"[\""Wireless Mouse\"", \""Tablet\""]",1679.53,"{\""loyalty\"": \""29%\""}",220657,0,"""Asia""" +2023-05-10,76383,347,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3647.69,{},186437,0,"""Asia""" +2023-07-25,76384,6466,"[\""Charger\""]",4898.44,"{\""promo\"": \""11%\""}",275455,0,"""Europe""" +2023-07-21,76385,2113,"[\""Wireless Mouse\""]",461.47,"{\"": \""12%\""}",22669,0,"""Africa""" +2023-03-09,76386,8691,"[\""Charger\""]",4474.64,"{\""seasonal\"": \""7%\""}",298236,1,"""Africa""" +2023-03-27,76387,9100,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",229.15,{},297534,1,"""Africa""" +2024-07-12,76388,1954,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1685.72,"{\""loyalty\"": \""9%\""}",255656,1,"""North America""" +2024-12-29,76389,2853,"[\""Tablet\"", \""Headphones\""]",1926.0,"{\""loyalty\"": \""30%\""}",251184,1,"""North America""" +2023-09-13,76390,158,"[\""Keyboard\"", \""Wireless Mouse\""]",4060.4,"{\"": \""13%\""}",178262,1,"""Asia""" +2023-01-21,76391,6874,"[\""Wireless Mouse\""]",1755.84,"{\""loyalty\"": \""16%\""}",255945,0,"""South America""" +2024-08-04,76392,1301,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1192.21,{},100301,1,"""Asia""" +2023-11-09,76393,5845,"[\""Headphones\"", \""Charger\""]",4754.36,{},233482,1,"""Europe""" +2023-08-23,76394,3989,"[\""Laptop\"", \""Monitor\""]",1547.73,{},175488,0,"""Europe""" +2024-06-18,76395,145,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4500.9,"{\""seasonal\"": \""17%\""}",163880,0,"""Asia""" +2023-04-10,76396,6921,"[\""Keyboard\""]",1897.0,"{\""loyalty\"": \""14%\""}",86446,1,"""Asia""" +2023-01-23,76397,5161,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4107.86,{},31064,0,"""Europe""" +2024-10-31,76398,4385,"[\""Monitor\""]",1161.47,"{\"": \""5%\""}",156012,0,"""North America""" +2023-08-31,76399,2990,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1090.18,{},38951,1,"""Africa""" +2023-03-30,76400,6766,"[\""Monitor\"", \""Phone\""]",1799.25,"{\""promo\"": \""21%\""}",178432,1,"""Asia""" +2023-12-25,76401,9988,"[\""Keyboard\"", \""Headphones\""]",4238.16,{},157845,0,"""Africa""" +2023-08-26,76402,6866,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2928.14,{},196855,1,"""South America""" +2024-02-09,76403,843,"[\""Keyboard\""]",3269.5,{},42605,1,"""Asia""" +2024-10-22,76404,565,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1538.64,{},290975,0,"""Europe""" +2023-02-06,76405,1970,"[\""Wireless Mouse\""]",2808.82,"{\""loyalty\"": \""13%\""}",9699,1,"""Europe""" +2024-05-24,76406,6441,"[\""Wireless Mouse\""]",384.06,{},31257,1,"""South America""" +2024-12-28,76407,5816,"[\""Keyboard\"", \""Headphones\""]",3794.03,{},198542,0,"""Asia""" +2023-05-25,76408,5281,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3690.56,{},229610,1,"""Africa""" +2023-11-09,76409,514,"[\""Charger\"", \""Wireless Mouse\""]",206.78,"{\"": \""29%\""}",82956,1,"""Asia""" +2023-01-01,76410,7964,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3010.43,{},108146,0,"""Asia""" +2023-09-28,76411,3949,"[\""Charger\"", \""Wireless Mouse\""]",4054.27,{},185760,1,"""North America""" +2023-11-05,76412,395,"[\""Phone\""]",348.54,"{\""loyalty\"": \""22%\""}",231443,1,"""Africa""" +2023-08-20,76413,7878,"[\""Charger\""]",2525.22,"{\""loyalty\"": \""10%\""}",246709,0,"""Africa""" +2024-02-23,76414,2686,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2401.11,"{\""promo\"": \""18%\""}",187470,1,"""Europe""" +2024-11-08,76415,8749,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3993.39,{},6553,0,"""Asia""" +2024-06-30,76416,938,"[\""Keyboard\""]",1103.82,"{\""loyalty\"": \""15%\""}",87301,1,"""North America""" +2023-05-12,76417,1081,"[\""Charger\"", \""Headphones\""]",2248.32,"{\""loyalty\"": \""16%\""}",280515,0,"""North America""" +2024-06-08,76418,5923,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2077.36,"{\""seasonal\"": \""17%\""}",66423,0,"""Asia""" +2023-01-13,76419,5933,"[\""Phone\"", \""Tablet\""]",712.01,"{\""promo\"": \""27%\""}",139243,0,"""Asia""" +2024-11-21,76420,7114,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2755.56,{},292340,1,"""Europe""" +2024-01-23,76421,5792,"[\""Wireless Mouse\"", \""Keyboard\""]",2043.88,"{\"": \""22%\""}",251752,0,"""North America""" +2023-01-09,76422,8378,"[\""Charger\""]",4722.01,{},115861,1,"""Africa""" +2024-08-22,76423,5679,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1531.12,{},290814,0,"""South America""" +2023-06-11,76424,8905,"[\""Monitor\""]",570.08,"{\""seasonal\"": \""13%\""}",83528,0,"""Asia""" +2024-08-16,76425,5333,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",974.64,"{\""promo\"": \""18%\""}",51496,1,"""Africa""" +2024-07-09,76426,6873,"[\""Wireless Mouse\"", \""Tablet\""]",2146.67,{},110810,1,"""South America""" +2024-01-14,76427,7330,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",172.74,{},173092,1,"""South America""" +2024-07-08,76428,2283,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1834.69,{},200756,0,"""Africa""" +2024-11-21,76429,7739,"[\""Phone\"", \""Wireless Mouse\""]",3652.81,"{\""loyalty\"": \""23%\""}",72611,1,"""North America""" +2024-07-29,76430,5164,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3184.92,{},242340,0,"""South America""" +2024-02-20,76431,903,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1789.86,{},82657,1,"""Europe""" +2024-04-07,76432,9957,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1132.88,"{\""loyalty\"": \""16%\""}",49266,0,"""Africa""" +2024-05-22,76433,6438,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2146.64,{},251424,0,"""South America""" +2024-07-12,76434,9326,"[\""Phone\""]",1839.25,"{\""loyalty\"": \""29%\""}",123851,1,"""Asia""" +2023-06-23,76435,3219,"[\""Phone\"", \""Headphones\""]",2890.41,"{\""seasonal\"": \""16%\""}",100753,1,"""North America""" +2023-06-02,76436,2090,"[\""Phone\""]",4859.58,"{\""seasonal\"": \""11%\""}",115307,0,"""North America""" +2024-06-22,76437,2722,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3584.34,{},261298,1,"""Africa""" +2024-12-22,76438,7464,"[\""Charger\"", \""Wireless Mouse\""]",4545.84,{},250612,0,"""South America""" +2024-08-08,76439,9883,"[\""Wireless Mouse\""]",941.42,{},168488,0,"""Asia""" +2024-02-08,76440,3799,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4290.26,"{\""promo\"": \""5%\""}",90771,1,"""Asia""" +2024-02-16,76441,9063,"[\""Keyboard\"", \""Monitor\""]",1297.55,"{\""loyalty\"": \""17%\""}",233886,0,"""North America""" +2023-05-24,76442,235,"[\""Keyboard\"", \""Monitor\""]",3720.65,{},81420,0,"""Europe""" +2024-03-06,76443,1445,"[\""Laptop\"", \""Wireless Mouse\""]",4184.03,{},34703,0,"""Africa""" +2023-05-23,76444,5965,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3680.15,{},54392,0,"""North America""" +2023-05-26,76445,776,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3915.82,"{\""seasonal\"": \""13%\""}",142493,0,"""Europe""" +2023-09-13,76446,8848,"[\""Keyboard\"", \""Laptop\""]",2283.6,"{\""promo\"": \""21%\""}",279449,1,"""Europe""" +2023-12-26,76447,8823,"[\""Tablet\"", \""Charger\""]",952.18,{},174989,0,"""Europe""" +2024-01-02,76448,3806,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4137.03,"{\""seasonal\"": \""19%\""}",289471,0,"""North America""" +2024-11-16,76449,3803,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3352.56,{},126809,0,"""North America""" +2023-03-20,76450,9756,"[\""Phone\"", \""Laptop\""]",2530.04,{},89370,1,"""Africa""" +2024-11-08,76451,9066,"[\""Charger\""]",1463.06,{},182149,1,"""South America""" +2024-09-03,76452,6891,"[\""Headphones\"", \""Keyboard\""]",4575.89,{},273383,1,"""Asia""" +2023-12-29,76453,9834,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3779.58,"{\""promo\"": \""21%\""}",249830,1,"""South America""" +2023-09-20,76454,1528,"[\""Laptop\""]",3201.98,"{\""promo\"": \""13%\""}",16416,1,"""North America""" +2024-12-02,76455,7462,"[\""Tablet\"", \""Phone\""]",4047.24,"{\""loyalty\"": \""16%\""}",278344,1,"""Europe""" +2024-01-24,76456,7556,"[\""Tablet\""]",152.05,{},218015,1,"""Europe""" +2024-01-26,76457,8573,"[\""Tablet\"", \""Charger\""]",1062.22,"{\""loyalty\"": \""21%\""}",296338,0,"""South America""" +2023-12-29,76458,3406,"[\""Monitor\"", \""Headphones\""]",889.6,{},188599,0,"""Asia""" +2024-05-04,76459,9090,"[\""Wireless Mouse\"", \""Monitor\""]",2001.06,{},106775,1,"""South America""" +2024-12-14,76460,5311,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2325.24,{},117907,0,"""Asia""" +2024-09-16,76461,361,"[\""Keyboard\""]",523.03,{},265517,0,"""Europe""" +2024-10-21,76462,8937,"[\""Charger\""]",4050.61,"{\""seasonal\"": \""28%\""}",235075,0,"""Africa""" +2024-09-13,76463,6773,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1796.47,{},92373,1,"""South America""" +2023-10-08,76464,7341,"[\""Wireless Mouse\""]",1632.0,{},73691,0,"""Asia""" +2024-05-31,76465,7823,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",455.89,{},150644,0,"""Europe""" +2023-05-27,76466,6086,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1483.43,"{\""seasonal\"": \""17%\""}",208858,0,"""South America""" +2023-05-25,76467,3428,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4862.65,{},257716,0,"""South America""" +2024-08-17,76468,7586,"[\""Wireless Mouse\"", \""Laptop\""]",1575.3,{},27301,1,"""Africa""" +2023-08-22,76469,7117,"[\""Keyboard\""]",4441.69,"{\""seasonal\"": \""25%\""}",216459,0,"""South America""" +2024-09-28,76470,7545,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4706.87,"{\"": \""30%\""}",209231,0,"""North America""" +2024-08-14,76471,5568,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",719.95,{},288603,0,"""Africa""" +2024-06-20,76472,9667,"[\""Laptop\"", \""Headphones\""]",2143.17,{},274250,1,"""North America""" +2023-12-22,76473,5343,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4163.6,{},297023,0,"""Africa""" +2023-07-12,76474,7172,"[\""Wireless Mouse\""]",3600.14,"{\""loyalty\"": \""8%\""}",157552,0,"""Africa""" +2024-05-03,76475,1381,"[\""Wireless Mouse\"", \""Charger\""]",1440.21,{},298024,1,"""South America""" +2023-11-12,76476,9289,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3447.32,{},7757,0,"""North America""" +2024-02-01,76477,8785,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2805.65,"{\"": \""7%\""}",195037,1,"""Europe""" +2024-11-09,76478,7964,"[\""Laptop\"", \""Tablet\""]",91.61,{},296828,0,"""Africa""" +2024-11-24,76479,2036,"[\""Wireless Mouse\""]",2103.55,{},102329,0,"""Asia""" +2023-04-03,76480,3213,"[\""Tablet\""]",240.43,"{\""promo\"": \""8%\""}",266261,0,"""Africa""" +2024-12-04,76481,4156,"[\""Headphones\"", \""Charger\""]",957.36,"{\""seasonal\"": \""17%\""}",25849,0,"""South America""" +2024-05-20,76482,838,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1595.19,{},9415,0,"""Asia""" +2023-09-17,76483,5945,"[\""Keyboard\"", \""Phone\""]",4331.99,{},32733,0,"""Europe""" +2024-11-25,76484,8163,"[\""Headphones\"", \""Keyboard\""]",2294.39,"{\""loyalty\"": \""9%\""}",19222,0,"""North America""" +2024-06-09,76485,1681,"[\""Headphones\"", \""Wireless Mouse\""]",2890.06,"{\""loyalty\"": \""26%\""}",99343,0,"""Africa""" +2023-05-18,76486,1642,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",290.95,"{\""promo\"": \""6%\""}",287276,0,"""Africa""" +2023-02-08,76487,7713,"[\""Monitor\""]",91.82,"{\""seasonal\"": \""22%\""}",193941,1,"""North America""" +2024-01-06,76488,2367,"[\""Monitor\""]",1328.67,"{\""seasonal\"": \""28%\""}",57310,1,"""North America""" +2023-02-04,76489,455,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",957.15,{},130132,1,"""Asia""" +2023-08-13,76490,8496,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4095.58,{},70994,1,"""Europe""" +2023-12-05,76491,8092,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",531.55,{},8228,0,"""North America""" +2023-01-14,76492,2374,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4457.88,"{\"": \""13%\""}",101326,1,"""Africa""" +2023-05-30,76493,5908,"[\""Laptop\""]",2113.72,"{\""promo\"": \""29%\""}",140978,0,"""North America""" +2024-04-28,76494,864,"[\""Monitor\""]",182.35,{},181538,1,"""South America""" +2023-06-25,76495,2032,"[\""Keyboard\""]",1092.97,{},297713,1,"""Africa""" +2023-11-16,76496,9646,"[\""Charger\""]",168.95,"{\""loyalty\"": \""13%\""}",30834,0,"""Africa""" +2024-06-30,76497,4335,"[\""Monitor\""]",1411.12,"{\""loyalty\"": \""7%\""}",115090,0,"""South America""" +2023-10-20,76498,5088,"[\""Headphones\"", \""Charger\""]",931.52,{},158702,0,"""Africa""" +2024-11-03,76499,3774,"[\""Keyboard\"", \""Wireless Mouse\""]",1198.18,"{\""promo\"": \""6%\""}",63853,0,"""Asia""" +2023-01-23,76500,7735,"[\""Laptop\"", \""Tablet\""]",3544.12,"{\""seasonal\"": \""29%\""}",180708,0,"""Asia""" +2024-02-07,76501,5069,"[\""Monitor\"", \""Wireless Mouse\""]",1400.74,"{\"": \""19%\""}",183844,1,"""Asia""" +2024-04-30,76502,9901,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3417.5,"{\""loyalty\"": \""27%\""}",97563,0,"""Asia""" +2023-07-23,76503,8784,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1682.33,"{\""loyalty\"": \""16%\""}",260684,0,"""Europe""" +2024-03-29,76504,8995,"[\""Laptop\""]",4150.12,{},192585,1,"""Africa""" +2024-09-29,76505,5453,"[\""Keyboard\"", \""Phone\""]",773.41,{},184490,0,"""Europe""" +2024-05-23,76506,4291,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",690.64,{},180698,0,"""South America""" +2024-08-07,76507,9960,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1516.54,{},218959,1,"""Europe""" +2024-08-30,76508,7460,"[\""Keyboard\""]",1212.88,"{\""loyalty\"": \""29%\""}",48344,0,"""Europe""" +2023-12-22,76509,1551,"[\""Keyboard\""]",2436.32,"{\""seasonal\"": \""11%\""}",227918,1,"""North America""" +2024-05-01,76510,635,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1830.65,{},133461,0,"""South America""" +2023-04-14,76511,2836,"[\""Laptop\""]",3592.8,"{\"": \""21%\""}",18605,0,"""Africa""" +2023-06-16,76512,9655,"[\""Laptop\"", \""Headphones\""]",1425.02,"{\""promo\"": \""5%\""}",13835,0,"""North America""" +2024-06-26,76513,8666,"[\""Monitor\"", \""Phone\""]",1421.92,{},17164,1,"""South America""" +2024-12-18,76514,3150,"[\""Wireless Mouse\""]",2344.59,{},133822,0,"""Africa""" +2024-11-17,76515,6455,"[\""Wireless Mouse\"", \""Laptop\""]",2274.33,{},242142,0,"""Asia""" +2024-05-30,76516,8104,"[\""Phone\"", \""Wireless Mouse\""]",4504.63,"{\""promo\"": \""27%\""}",19122,1,"""Africa""" +2023-09-04,76517,6806,"[\""Keyboard\""]",4538.38,"{\"": \""26%\""}",210676,0,"""Asia""" +2024-11-23,76518,9032,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3820.23,"{\""loyalty\"": \""11%\""}",95054,1,"""Asia""" +2024-04-22,76519,6313,"[\""Phone\"", \""Tablet\""]",2247.0,{},43928,0,"""North America""" +2023-11-27,76520,5619,"[\""Laptop\""]",2729.76,{},214764,0,"""North America""" +2024-08-18,76521,9696,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2200.84,{},213274,0,"""Europe""" +2024-12-29,76522,4065,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",853.75,"{\"": \""21%\""}",284179,0,"""Asia""" +2024-04-18,76523,2865,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4240.22,"{\""promo\"": \""10%\""}",95940,0,"""North America""" +2023-09-17,76524,8519,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3588.48,"{\""seasonal\"": \""24%\""}",1188,0,"""Asia""" +2024-10-18,76525,2193,"[\""Laptop\"", \""Headphones\""]",2253.39,"{\"": \""7%\""}",71204,0,"""Asia""" +2024-01-12,76526,579,"[\""Wireless Mouse\"", \""Tablet\""]",806.25,"{\""promo\"": \""10%\""}",232774,0,"""Europe""" +2024-09-22,76527,214,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3303.78,"{\"": \""11%\""}",245132,0,"""North America""" +2023-09-01,76528,1887,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4865.27,"{\""loyalty\"": \""20%\""}",151797,0,"""North America""" +2024-02-25,76529,8530,"[\""Charger\"", \""Keyboard\""]",1193.45,"{\""promo\"": \""12%\""}",172232,1,"""North America""" +2023-03-20,76530,3917,"[\""Charger\""]",2314.88,"{\""loyalty\"": \""20%\""}",180036,1,"""Asia""" +2023-04-26,76531,5101,"[\""Headphones\""]",2352.1,{},24635,0,"""South America""" +2023-02-02,76532,8948,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4474.91,"{\""promo\"": \""16%\""}",296565,0,"""Europe""" +2023-07-17,76533,3064,"[\""Wireless Mouse\"", \""Headphones\""]",4995.97,{},159121,1,"""North America""" +2024-07-10,76534,6342,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2888.74,{},72843,0,"""South America""" +2023-06-02,76535,196,"[\""Headphones\""]",3648.14,"{\""promo\"": \""21%\""}",235137,0,"""Europe""" +2024-10-16,76536,8126,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4360.01,"{\""promo\"": \""17%\""}",42411,0,"""Africa""" +2024-07-26,76537,4866,"[\""Wireless Mouse\"", \""Monitor\""]",3326.44,{},137162,0,"""South America""" +2024-04-09,76538,6238,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2761.49,"{\"": \""30%\""}",296579,1,"""Europe""" +2024-07-03,76539,8930,"[\""Tablet\"", \""Charger\""]",1857.26,{},23150,1,"""South America""" +2023-12-11,76540,1019,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4004.36,{},11238,1,"""Europe""" +2024-01-11,76541,3792,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3313.42,"{\"": \""29%\""}",230030,0,"""Asia""" +2024-05-20,76542,7713,"[\""Charger\""]",1205.95,"{\"": \""5%\""}",253348,1,"""Africa""" +2023-11-20,76543,2003,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3200.36,"{\""loyalty\"": \""6%\""}",123187,0,"""Europe""" +2024-05-11,76544,4088,"[\""Monitor\""]",254.33,"{\""promo\"": \""22%\""}",54473,0,"""South America""" +2024-05-22,76545,6853,"[\""Tablet\""]",1299.62,{},205740,0,"""North America""" +2024-02-22,76546,3071,"[\""Headphones\""]",3989.99,"{\""loyalty\"": \""23%\""}",254716,1,"""Europe""" +2024-08-21,76547,6703,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2784.73,"{\"": \""19%\""}",57382,1,"""Asia""" +2024-06-24,76548,4648,"[\""Monitor\""]",893.22,{},259173,1,"""Europe""" +2024-04-16,76549,7614,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4947.72,"{\"": \""20%\""}",218143,0,"""South America""" +2024-10-08,76550,336,"[\""Charger\"", \""Headphones\""]",4481.3,{},21367,1,"""North America""" +2023-04-23,76551,1142,"[\""Headphones\"", \""Phone\""]",2833.81,{},123008,0,"""Europe""" +2024-06-21,76552,7687,"[\""Monitor\"", \""Keyboard\""]",1911.17,"{\""seasonal\"": \""12%\""}",238719,1,"""North America""" +2023-08-17,76553,6821,"[\""Charger\""]",3961.9,"{\""loyalty\"": \""14%\""}",72142,0,"""Asia""" +2024-12-18,76554,5435,"[\""Charger\"", \""Phone\""]",4899.0,{},288984,1,"""Asia""" +2024-11-13,76555,5867,"[\""Charger\""]",2182.67,{},150575,1,"""Asia""" +2023-07-22,76556,3264,"[\""Phone\""]",1736.06,{},67831,0,"""Africa""" +2024-10-17,76557,678,"[\""Laptop\"", \""Phone\""]",4277.91,{},21248,0,"""Asia""" +2024-10-08,76558,8292,"[\""Laptop\"", \""Headphones\""]",4131.25,{},265530,0,"""Europe""" +2023-07-03,76559,8757,"[\""Headphones\""]",263.16,"{\"": \""15%\""}",35218,1,"""North America""" +2023-10-17,76560,4536,"[\""Wireless Mouse\""]",3511.37,"{\""promo\"": \""7%\""}",295962,1,"""Asia""" +2024-10-18,76561,4863,"[\""Wireless Mouse\""]",424.48,"{\"": \""22%\""}",242009,1,"""Europe""" +2023-04-07,76562,3838,"[\""Tablet\"", \""Laptop\""]",2882.9,"{\"": \""15%\""}",122486,1,"""Africa""" +2023-12-12,76563,3932,"[\""Tablet\""]",2111.89,"{\""promo\"": \""11%\""}",267601,1,"""South America""" +2023-10-25,76564,5679,"[\""Phone\""]",3964.81,"{\""promo\"": \""29%\""}",296725,1,"""Asia""" +2023-08-12,76565,9910,"[\""Wireless Mouse\""]",2101.45,{},92598,1,"""South America""" +2024-08-24,76566,8638,"[\""Phone\""]",741.29,"{\"": \""13%\""}",173360,1,"""South America""" +2024-12-29,76567,2220,"[\""Phone\"", \""Wireless Mouse\""]",4693.95,{},251664,0,"""South America""" +2024-10-25,76568,8898,"[\""Tablet\"", \""Headphones\""]",843.1,{},130006,1,"""South America""" +2024-08-12,76569,4983,"[\""Monitor\""]",4486.79,{},6024,0,"""North America""" +2023-09-02,76570,2789,"[\""Wireless Mouse\"", \""Charger\""]",3466.87,{},174671,0,"""Europe""" +2023-05-13,76571,7609,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2384.95,"{\""loyalty\"": \""15%\""}",113152,0,"""Asia""" +2023-09-11,76572,2868,"[\""Keyboard\""]",315.53,"{\"": \""15%\""}",262352,0,"""North America""" +2023-04-22,76573,3100,"[\""Monitor\"", \""Phone\""]",1593.41,{},35028,1,"""Europe""" +2024-06-01,76574,4184,"[\""Charger\""]",477.43,"{\""promo\"": \""24%\""}",111523,0,"""Europe""" +2024-10-21,76575,904,"[\""Charger\"", \""Tablet\""]",4231.79,"{\""seasonal\"": \""20%\""}",150073,0,"""South America""" +2024-08-15,76576,7028,"[\""Laptop\""]",922.43,"{\""seasonal\"": \""6%\""}",21615,0,"""South America""" +2024-02-28,76577,276,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",743.5,{},160786,1,"""North America""" +2024-03-26,76578,7907,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3725.1,{},292114,0,"""Africa""" +2023-01-23,76579,2983,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2906.75,"{\""seasonal\"": \""20%\""}",65341,0,"""Europe""" +2023-05-06,76580,4778,"[\""Phone\"", \""Monitor\""]",297.17,{},140678,0,"""Africa""" +2024-07-11,76581,6320,"[\""Headphones\"", \""Charger\""]",3745.71,"{\"": \""18%\""}",120220,1,"""Europe""" +2023-06-22,76582,2243,"[\""Charger\""]",3058.81,{},161047,1,"""North America""" +2024-12-05,76583,2020,"[\""Laptop\""]",1882.28,{},200375,1,"""Asia""" +2023-10-28,76584,4218,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3316.28,{},179214,0,"""Europe""" +2024-07-15,76585,9445,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2560.85,{},13805,1,"""Africa""" +2024-04-19,76586,2175,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2481.16,{},238347,1,"""Asia""" +2024-08-01,76587,3767,"[\""Laptop\"", \""Phone\""]",3514.37,"{\""promo\"": \""11%\""}",157468,1,"""Europe""" +2023-10-06,76588,5297,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3048.39,"{\"": \""16%\""}",92661,0,"""North America""" +2024-03-21,76589,5257,"[\""Phone\""]",970.9,{},142451,0,"""Europe""" +2023-05-04,76590,2777,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",973.9,"{\""seasonal\"": \""28%\""}",133802,0,"""South America""" +2023-11-05,76591,3943,"[\""Headphones\"", \""Phone\""]",4127.11,"{\""loyalty\"": \""28%\""}",238025,0,"""Europe""" +2024-12-24,76592,3561,"[\""Monitor\""]",2841.13,"{\""seasonal\"": \""13%\""}",98909,0,"""Africa""" +2023-03-26,76593,4416,"[\""Laptop\""]",1448.42,{},186014,1,"""Africa""" +2023-07-17,76594,4150,"[\""Phone\""]",2677.47,{},251402,0,"""North America""" +2024-08-25,76595,580,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4616.96,"{\""loyalty\"": \""18%\""}",75467,0,"""Africa""" +2024-06-17,76596,928,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1542.11,{},68252,1,"""Asia""" +2023-06-17,76597,9118,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4977.97,{},147596,0,"""North America""" +2023-10-03,76598,7475,"[\""Keyboard\"", \""Wireless Mouse\""]",2821.61,"{\""loyalty\"": \""14%\""}",249193,1,"""Asia""" +2024-01-28,76599,7936,"[\""Headphones\""]",4750.32,{},282400,0,"""North America""" +2024-09-15,76600,3512,"[\""Keyboard\""]",1370.86,"{\"": \""19%\""}",179926,1,"""Africa""" +2023-06-08,76601,2980,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",384.59,{},104873,1,"""South America""" +2024-06-09,76602,8831,"[\""Monitor\"", \""Keyboard\""]",2840.61,"{\""loyalty\"": \""7%\""}",269329,0,"""Africa""" +2023-04-13,76603,4819,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4338.08,{},21920,0,"""North America""" +2024-10-30,76604,5956,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1744.15,"{\"": \""27%\""}",19526,0,"""Asia""" +2023-06-15,76605,1316,"[\""Laptop\"", \""Keyboard\""]",2450.98,"{\"": \""17%\""}",190904,1,"""Africa""" +2023-12-04,76606,237,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4840.6,"{\""loyalty\"": \""29%\""}",77548,0,"""Asia""" +2024-03-13,76607,8655,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2026.39,"{\"": \""8%\""}",180138,0,"""South America""" +2024-01-17,76608,1697,"[\""Wireless Mouse\"", \""Monitor\""]",4840.56,"{\""loyalty\"": \""16%\""}",246120,0,"""North America""" +2024-12-17,76609,5100,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1171.36,{},186653,1,"""Africa""" +2023-05-15,76610,5765,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3621.59,{},72192,1,"""Asia""" +2024-02-09,76611,8254,"[\""Wireless Mouse\""]",569.52,{},180771,1,"""North America""" +2024-01-31,76612,8903,"[\""Monitor\""]",4982.08,"{\""seasonal\"": \""6%\""}",74544,1,"""South America""" +2024-04-29,76613,8975,"[\""Charger\""]",958.25,{},18064,1,"""South America""" +2023-03-03,76614,2968,"[\""Phone\"", \""Monitor\""]",2361.62,"{\""loyalty\"": \""21%\""}",279330,0,"""Africa""" +2023-06-14,76615,8233,"[\""Keyboard\""]",2961.06,{},81969,1,"""Asia""" +2024-03-29,76616,4852,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4795.23,{},223789,0,"""North America""" +2023-04-26,76617,6786,"[\""Laptop\""]",1585.05,{},103873,0,"""Europe""" +2023-12-03,76618,7469,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1768.41,"{\""promo\"": \""28%\""}",176764,0,"""Africa""" +2023-10-21,76619,139,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3892.08,{},175643,1,"""Europe""" +2023-07-25,76620,2412,"[\""Tablet\""]",3164.1,"{\""seasonal\"": \""22%\""}",220895,0,"""Asia""" +2024-05-06,76621,3380,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",211.45,{},140075,0,"""Europe""" +2024-05-16,76622,4535,"[\""Phone\"", \""Headphones\""]",1593.88,{},178045,1,"""Europe""" +2024-08-01,76623,9218,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3833.24,"{\""promo\"": \""12%\""}",32545,0,"""South America""" +2023-10-31,76624,988,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2572.19,{},224908,0,"""Europe""" +2024-11-15,76625,8691,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3713.78,"{\""promo\"": \""5%\""}",142101,1,"""Africa""" +2024-06-23,76626,6210,"[\""Phone\"", \""Keyboard\""]",2841.98,{},20169,0,"""Europe""" +2023-02-28,76627,8685,"[\""Headphones\"", \""Charger\""]",4671.87,{},195501,0,"""Europe""" +2024-09-28,76628,9847,"[\""Tablet\"", \""Laptop\""]",4433.55,{},10564,1,"""Asia""" +2023-10-25,76629,5154,"[\""Phone\""]",4452.12,{},16469,0,"""South America""" +2023-09-07,76630,1532,"[\""Phone\"", \""Tablet\""]",3557.76,{},90001,0,"""South America""" +2023-04-03,76631,6567,"[\""Phone\"", \""Headphones\""]",1273.79,"{\""loyalty\"": \""30%\""}",214418,0,"""Africa""" +2023-08-04,76632,8551,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1454.36,{},186167,1,"""Asia""" +2023-02-11,76633,9951,"[\""Headphones\"", \""Keyboard\""]",2908.27,{},95408,1,"""South America""" +2023-01-08,76634,5081,"[\""Wireless Mouse\"", \""Charger\""]",52.21,{},229455,0,"""Africa""" +2023-04-07,76635,5848,"[\""Tablet\""]",738.66,{},78017,0,"""Asia""" +2024-12-06,76636,4770,"[\""Headphones\"", \""Charger\""]",3006.08,{},211922,0,"""Europe""" +2024-07-01,76637,8997,"[\""Laptop\""]",1186.14,{},277425,1,"""Africa""" +2024-12-22,76638,4144,"[\""Tablet\""]",4427.88,"{\""loyalty\"": \""16%\""}",52719,0,"""Europe""" +2024-05-09,76639,9000,"[\""Charger\""]",4530.73,{},220819,1,"""Europe""" +2024-08-11,76640,1489,"[\""Charger\"", \""Monitor\""]",472.2,{},116931,1,"""South America""" +2024-03-05,76641,1739,"[\""Headphones\"", \""Monitor\""]",4138.84,{},85403,0,"""North America""" +2024-05-04,76642,2217,"[\""Phone\""]",3657.53,{},25038,1,"""North America""" +2023-09-22,76643,7471,"[\""Keyboard\"", \""Tablet\""]",2764.35,"{\""loyalty\"": \""29%\""}",49899,1,"""South America""" +2023-04-07,76644,6341,"[\""Phone\"", \""Wireless Mouse\""]",1281.98,"{\""loyalty\"": \""24%\""}",102937,1,"""Africa""" +2024-01-15,76645,2974,"[\""Keyboard\"", \""Wireless Mouse\""]",4827.74,{},209637,1,"""North America""" +2024-01-03,76646,3680,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3994.99,{},128021,0,"""Africa""" +2024-08-02,76647,3385,"[\""Phone\""]",4045.37,{},180169,1,"""Asia""" +2023-11-28,76648,3795,"[\""Charger\"", \""Laptop\""]",4106.61,"{\"": \""9%\""}",298477,0,"""Asia""" +2024-09-12,76649,4207,"[\""Tablet\"", \""Headphones\""]",666.8,{},100181,1,"""Africa""" +2024-11-25,76650,3882,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",503.58,{},152116,1,"""South America""" +2023-10-06,76651,9069,"[\""Wireless Mouse\"", \""Laptop\""]",632.33,{},74290,0,"""Europe""" +2024-08-24,76652,9686,"[\""Keyboard\"", \""Laptop\""]",524.2,"{\""loyalty\"": \""17%\""}",33735,0,"""Africa""" +2024-05-11,76653,3301,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3455.1,{},128550,0,"""South America""" +2024-02-13,76654,3235,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1421.08,{},135105,1,"""South America""" +2024-12-05,76655,9148,"[\""Tablet\""]",359.23,{},42625,1,"""North America""" +2023-10-02,76656,8970,"[\""Phone\"", \""Monitor\""]",2487.01,"{\""seasonal\"": \""19%\""}",102646,0,"""North America""" +2023-08-17,76657,1332,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1687.39,{},235662,1,"""North America""" +2023-11-28,76658,2747,"[\""Laptop\"", \""Headphones\""]",2407.42,"{\""promo\"": \""9%\""}",247522,1,"""North America""" +2024-12-16,76659,6544,"[\""Tablet\"", \""Monitor\""]",4933.93,"{\"": \""27%\""}",17259,0,"""South America""" +2024-01-07,76660,4622,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",170.85,{},221171,1,"""Asia""" +2023-08-02,76661,7801,"[\""Wireless Mouse\"", \""Laptop\""]",1209.2,{},274319,1,"""Europe""" +2023-01-11,76662,5538,"[\""Headphones\""]",2688.03,{},251540,0,"""Africa""" +2024-04-17,76663,7958,"[\""Wireless Mouse\"", \""Charger\""]",1735.42,"{\""loyalty\"": \""28%\""}",109001,0,"""South America""" +2024-03-05,76664,8891,"[\""Laptop\"", \""Phone\""]",1906.21,{},94697,1,"""Africa""" +2024-04-21,76665,4749,"[\""Tablet\"", \""Phone\""]",1115.03,"{\""loyalty\"": \""5%\""}",237588,0,"""Europe""" +2024-05-21,76666,1667,"[\""Charger\"", \""Phone\""]",2093.06,"{\""seasonal\"": \""27%\""}",52583,0,"""Asia""" +2023-09-26,76667,9248,"[\""Laptop\""]",729.15,"{\"": \""27%\""}",244766,0,"""Europe""" +2024-09-30,76668,5133,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2473.16,"{\""loyalty\"": \""14%\""}",136692,0,"""Africa""" +2023-06-22,76669,1835,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2238.61,"{\"": \""27%\""}",227056,1,"""North America""" +2024-01-23,76670,8957,"[\""Charger\""]",4621.34,"{\"": \""11%\""}",211224,0,"""South America""" +2023-01-01,76671,7515,"[\""Keyboard\""]",2263.91,{},291740,0,"""Africa""" +2024-01-16,76672,3428,"[\""Monitor\"", \""Laptop\""]",2130.53,{},88015,1,"""Europe""" +2023-04-16,76673,4803,"[\""Phone\""]",429.26,{},143344,1,"""Europe""" +2024-05-06,76674,297,"[\""Monitor\"", \""Tablet\""]",3088.11,{},89797,1,"""North America""" +2024-12-14,76675,4421,"[\""Wireless Mouse\""]",4247.78,"{\""promo\"": \""17%\""}",99310,1,"""Europe""" +2024-04-15,76676,3324,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4643.42,"{\""seasonal\"": \""30%\""}",67234,1,"""Europe""" +2024-02-21,76677,7692,"[\""Monitor\"", \""Tablet\""]",443.52,"{\""loyalty\"": \""9%\""}",178296,1,"""Africa""" +2024-09-03,76678,9196,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2249.18,{},224976,1,"""Europe""" +2023-03-07,76679,2188,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3204.46,{},53294,0,"""Africa""" +2023-02-01,76680,3358,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2153.52,"{\"": \""21%\""}",144735,1,"""Europe""" +2024-08-28,76681,1802,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",340.14,{},60520,1,"""Africa""" +2023-04-07,76682,3783,"[\""Phone\""]",4014.42,{},98268,0,"""South America""" +2024-02-05,76683,3186,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2211.01,{},27564,1,"""South America""" +2024-01-23,76684,8967,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",991.52,{},70627,0,"""Africa""" +2024-12-04,76685,6454,"[\""Monitor\""]",770.99,"{\""promo\"": \""29%\""}",270843,0,"""Asia""" +2024-07-08,76686,769,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4338.79,{},201049,0,"""Europe""" +2023-04-09,76687,4553,"[\""Charger\"", \""Phone\"", \""Headphones\""]",431.52,"{\""promo\"": \""17%\""}",29505,1,"""Europe""" +2023-06-19,76688,4044,"[\""Tablet\""]",3630.43,"{\""loyalty\"": \""28%\""}",257179,1,"""North America""" +2024-11-04,76689,7957,"[\""Keyboard\""]",1057.9,{},218501,1,"""Europe""" +2024-09-18,76690,3976,"[\""Keyboard\"", \""Wireless Mouse\""]",2147.88,{},73422,1,"""North America""" +2024-04-06,76691,3241,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3415.27,"{\"": \""23%\""}",199795,0,"""South America""" +2023-03-17,76692,631,"[\""Headphones\"", \""Monitor\""]",3034.91,{},218430,1,"""South America""" +2024-12-05,76693,3713,"[\""Laptop\""]",4925.89,{},223003,0,"""Africa""" +2023-07-03,76694,2151,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",595.23,{},78813,0,"""Europe""" +2023-10-06,76695,8726,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4012.37,{},287145,1,"""South America""" +2024-06-03,76696,5963,"[\""Monitor\""]",2332.7,"{\""loyalty\"": \""30%\""}",69072,0,"""North America""" +2023-11-23,76697,6311,"[\""Wireless Mouse\"", \""Charger\""]",4878.98,{},186436,0,"""South America""" +2024-04-30,76698,646,"[\""Wireless Mouse\"", \""Keyboard\""]",1417.29,{},194232,0,"""North America""" +2024-10-10,76699,6859,"[\""Headphones\""]",3487.05,"{\""seasonal\"": \""25%\""}",294829,1,"""Europe""" +2023-07-13,76700,6725,"[\""Tablet\"", \""Keyboard\""]",4111.97,"{\""seasonal\"": \""9%\""}",169862,1,"""Europe""" +2023-06-19,76701,5219,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3318.37,"{\""promo\"": \""8%\""}",280030,0,"""Africa""" +2024-04-16,76702,4112,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2951.01,"{\""loyalty\"": \""8%\""}",188278,1,"""Africa""" +2024-10-26,76703,6004,"[\""Keyboard\"", \""Charger\""]",2773.97,"{\""loyalty\"": \""9%\""}",100933,0,"""South America""" +2023-02-12,76704,7259,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",338.72,"{\"": \""24%\""}",272389,0,"""Africa""" +2024-01-05,76705,1848,"[\""Wireless Mouse\"", \""Keyboard\""]",4809.68,{},98764,1,"""North America""" +2023-03-04,76706,7608,"[\""Wireless Mouse\""]",2572.16,{},178626,0,"""Europe""" +2024-04-23,76707,2817,"[\""Laptop\""]",1776.11,{},184856,0,"""Europe""" +2023-02-11,76708,5322,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",620.9,{},244655,0,"""Africa""" +2024-01-07,76709,771,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3499.76,"{\""loyalty\"": \""5%\""}",291022,1,"""Asia""" +2023-03-03,76710,7159,"[\""Charger\""]",3058.73,"{\""seasonal\"": \""26%\""}",15650,0,"""North America""" +2023-09-01,76711,4668,"[\""Headphones\"", \""Monitor\""]",2766.13,{},220413,1,"""South America""" +2023-03-26,76712,2146,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1769.91,{},193505,0,"""Asia""" +2023-12-28,76713,3293,"[\""Headphones\"", \""Charger\""]",3124.17,{},26200,0,"""Europe""" +2024-05-22,76714,4518,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2325.02,"{\"": \""19%\""}",262724,1,"""Asia""" +2023-08-04,76715,3565,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4370.92,{},107294,1,"""South America""" +2024-02-25,76716,2252,"[\""Wireless Mouse\"", \""Keyboard\""]",3059.51,"{\""seasonal\"": \""27%\""}",223780,0,"""North America""" +2024-08-16,76717,84,"[\""Charger\""]",1444.24,{},106307,1,"""Asia""" +2023-09-13,76718,1163,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3420.91,"{\""loyalty\"": \""13%\""}",208279,1,"""Europe""" +2023-02-23,76719,161,"[\""Headphones\""]",1409.89,"{\""promo\"": \""13%\""}",204513,1,"""Africa""" +2023-10-02,76720,2022,"[\""Laptop\"", \""Headphones\""]",890.46,"{\""promo\"": \""22%\""}",212497,0,"""North America""" +2024-12-14,76721,157,"[\""Monitor\"", \""Tablet\""]",2732.19,"{\"": \""19%\""}",60011,1,"""North America""" +2024-09-04,76722,8164,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4200.48,{},96676,0,"""Europe""" +2024-02-07,76723,5036,"[\""Tablet\"", \""Laptop\""]",4839.99,{},272168,1,"""South America""" +2024-08-30,76724,8579,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",945.8,"{\""seasonal\"": \""18%\""}",77452,1,"""Europe""" +2023-02-13,76725,803,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3777.54,{},191259,0,"""Asia""" +2024-06-30,76726,1144,"[\""Monitor\""]",4931.37,{},171237,0,"""South America""" +2023-06-27,76727,7702,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3079.14,"{\""promo\"": \""5%\""}",228644,0,"""Europe""" +2024-07-02,76728,483,"[\""Tablet\"", \""Monitor\""]",570.9,{},150954,0,"""Asia""" +2024-07-09,76729,1796,"[\""Laptop\""]",4049.66,{},165970,1,"""Europe""" +2023-04-14,76730,5616,"[\""Phone\""]",657.11,{},289529,1,"""Asia""" +2023-10-29,76731,4385,"[\""Monitor\""]",377.13,{},295305,1,"""Asia""" +2023-03-02,76732,1291,"[\""Wireless Mouse\"", \""Charger\""]",2528.31,"{\""seasonal\"": \""26%\""}",217764,1,"""Africa""" +2023-06-21,76733,8277,"[\""Monitor\"", \""Phone\""]",1953.38,"{\""promo\"": \""26%\""}",282562,0,"""Africa""" +2024-12-08,76734,2664,"[\""Charger\""]",3448.94,{},71984,0,"""South America""" +2024-12-06,76735,6104,"[\""Charger\""]",729.92,"{\""loyalty\"": \""25%\""}",187364,1,"""Asia""" +2023-04-01,76736,2874,"[\""Laptop\""]",1436.02,"{\""loyalty\"": \""28%\""}",32274,1,"""North America""" +2023-04-07,76737,3043,"[\""Monitor\""]",3411.98,{},77270,0,"""North America""" +2024-10-23,76738,9226,"[\""Keyboard\"", \""Monitor\""]",4703.71,{},185046,0,"""Africa""" +2023-03-31,76739,8536,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1612.16,"{\""promo\"": \""19%\""}",104657,0,"""South America""" +2024-10-25,76740,3668,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1499.41,"{\"": \""15%\""}",118513,1,"""Africa""" +2023-10-11,76741,1716,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1484.73,"{\""loyalty\"": \""16%\""}",230367,1,"""Europe""" +2024-03-08,76742,2277,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2628.96,"{\""promo\"": \""7%\""}",283638,0,"""Europe""" +2024-04-26,76743,5618,"[\""Tablet\"", \""Charger\"", \""Phone\""]",300.94,{},164830,1,"""Europe""" +2024-10-28,76744,7136,"[\""Tablet\""]",1181.73,{},224286,1,"""Africa""" +2024-09-03,76745,4342,"[\""Phone\""]",1013.89,{},77517,0,"""Europe""" +2023-05-12,76746,923,"[\""Headphones\""]",3485.64,"{\"": \""30%\""}",147649,0,"""Africa""" +2024-12-23,76747,2502,"[\""Wireless Mouse\""]",2526.05,"{\"": \""29%\""}",179080,1,"""Europe""" +2023-09-10,76748,2272,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2955.05,"{\""promo\"": \""18%\""}",169139,1,"""South America""" +2023-07-05,76749,9730,"[\""Laptop\""]",3792.85,{},55038,1,"""South America""" +2023-11-18,76750,4855,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1644.09,"{\""seasonal\"": \""22%\""}",250518,1,"""South America""" +2023-03-15,76751,6310,"[\""Keyboard\""]",2267.13,"{\""seasonal\"": \""28%\""}",81883,0,"""Africa""" +2024-06-02,76752,3305,"[\""Wireless Mouse\"", \""Keyboard\""]",3647.78,{},95852,1,"""North America""" +2024-01-16,76753,4235,"[\""Tablet\""]",4852.93,{},69049,1,"""Asia""" +2023-02-27,76754,7906,"[\""Wireless Mouse\""]",2952.67,{},68695,0,"""North America""" +2024-02-19,76755,7134,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3913.6,{},147470,0,"""South America""" +2024-05-07,76756,2571,"[\""Phone\"", \""Wireless Mouse\""]",521.7,{},232141,1,"""North America""" +2023-07-17,76757,5514,"[\""Phone\""]",1803.07,{},72101,1,"""North America""" +2024-08-12,76758,342,"[\""Phone\"", \""Monitor\""]",308.3,"{\""loyalty\"": \""8%\""}",153176,1,"""Africa""" +2023-07-11,76759,1245,"[\""Charger\""]",2752.38,{},26056,1,"""South America""" +2024-11-10,76760,5825,"[\""Keyboard\""]",1417.69,{},280034,0,"""South America""" +2024-12-01,76761,7863,"[\""Headphones\"", \""Charger\""]",4145.01,"{\""seasonal\"": \""24%\""}",230943,0,"""Asia""" +2024-07-06,76762,848,"[\""Tablet\"", \""Wireless Mouse\""]",1834.32,{},274699,0,"""North America""" +2024-10-10,76763,8939,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4382.31,{},290290,0,"""South America""" +2023-02-06,76764,2486,"[\""Laptop\"", \""Wireless Mouse\""]",3786.73,"{\""loyalty\"": \""5%\""}",220692,0,"""Asia""" +2023-06-23,76765,7471,"[\""Laptop\"", \""Headphones\""]",844.9,{},209951,1,"""South America""" +2024-02-29,76766,5758,"[\""Keyboard\"", \""Laptop\""]",2257.76,"{\""seasonal\"": \""28%\""}",210515,0,"""Europe""" +2024-10-10,76767,4769,"[\""Charger\"", \""Keyboard\""]",4508.59,"{\""loyalty\"": \""20%\""}",169635,1,"""Europe""" +2023-08-25,76768,6270,"[\""Headphones\"", \""Laptop\""]",1333.33,{},42441,0,"""Asia""" +2023-02-26,76769,3600,"[\""Laptop\""]",3364.81,"{\"": \""29%\""}",75822,0,"""Asia""" +2023-02-10,76770,6777,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3265.56,"{\""seasonal\"": \""27%\""}",239837,1,"""South America""" +2024-07-21,76771,4082,"[\""Wireless Mouse\"", \""Charger\""]",283.77,{},211647,0,"""Europe""" +2024-02-18,76772,6555,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2912.46,"{\""promo\"": \""26%\""}",92965,1,"""North America""" +2024-06-02,76773,1447,"[\""Headphones\"", \""Wireless Mouse\""]",1513.51,{},32945,1,"""South America""" +2024-11-19,76774,2155,"[\""Monitor\"", \""Phone\""]",4627.7,"{\""promo\"": \""14%\""}",97560,0,"""North America""" +2024-09-29,76775,3059,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3734.72,"{\"": \""20%\""}",155389,0,"""Africa""" +2023-05-12,76776,6206,"[\""Headphones\"", \""Phone\""]",2677.35,"{\"": \""8%\""}",99200,0,"""North America""" +2023-09-12,76777,9869,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2895.73,{},107162,1,"""Asia""" +2023-04-16,76778,9066,"[\""Phone\""]",1384.27,"{\"": \""25%\""}",13209,1,"""South America""" +2024-05-26,76779,7030,"[\""Keyboard\""]",2555.02,"{\""seasonal\"": \""11%\""}",233614,1,"""Europe""" +2023-11-07,76780,6857,"[\""Monitor\""]",4304.14,{},110585,1,"""South America""" +2024-05-25,76781,5065,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3326.05,{},258527,1,"""South America""" +2024-12-09,76782,2045,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",883.04,{},241213,0,"""North America""" +2024-04-10,76783,8736,"[\""Tablet\"", \""Headphones\""]",4336.62,"{\""loyalty\"": \""9%\""}",178175,1,"""Europe""" +2023-11-19,76784,7697,"[\""Laptop\""]",838.95,{},85501,0,"""North America""" +2023-12-19,76785,3578,"[\""Keyboard\"", \""Laptop\""]",552.06,"{\""loyalty\"": \""11%\""}",291594,0,"""Europe""" +2024-01-10,76786,4953,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2104.83,"{\""promo\"": \""8%\""}",235097,0,"""North America""" +2023-02-24,76787,3705,"[\""Headphones\""]",1789.88,{},127042,0,"""South America""" +2024-08-15,76788,9845,"[\""Phone\""]",3376.7,"{\""seasonal\"": \""8%\""}",200160,0,"""South America""" +2023-02-06,76789,6702,"[\""Monitor\"", \""Wireless Mouse\""]",1860.57,{},4031,0,"""Africa""" +2024-06-20,76790,115,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2341.07,{},152095,1,"""Africa""" +2023-04-17,76791,6809,"[\""Charger\"", \""Headphones\""]",3282.37,{},206816,0,"""North America""" +2024-12-06,76792,7098,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2568.8,"{\"": \""9%\""}",169737,0,"""Europe""" +2024-11-30,76793,3471,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2244.01,"{\"": \""18%\""}",152523,0,"""North America""" +2024-06-30,76794,5842,"[\""Charger\""]",718.23,"{\""seasonal\"": \""5%\""}",77971,0,"""North America""" +2023-11-15,76795,4346,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",889.32,"{\"": \""7%\""}",203268,1,"""North America""" +2024-07-10,76796,8915,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2381.7,{},62892,0,"""Asia""" +2023-09-29,76797,2551,"[\""Charger\"", \""Keyboard\""]",3700.38,{},263355,0,"""Asia""" +2024-08-08,76798,4821,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1745.91,{},242117,1,"""South America""" +2024-01-17,76799,6211,"[\""Monitor\"", \""Laptop\""]",644.53,"{\""promo\"": \""12%\""}",252585,1,"""South America""" +2023-12-31,76800,2700,"[\""Charger\"", \""Headphones\""]",175.76,{},180502,0,"""Europe""" +2023-07-11,76801,8766,"[\""Laptop\""]",4585.22,{},203700,1,"""North America""" +2024-06-16,76802,133,"[\""Wireless Mouse\"", \""Laptop\""]",138.46,"{\""seasonal\"": \""28%\""}",70764,0,"""Asia""" +2024-09-08,76803,487,"[\""Headphones\""]",4629.65,{},278353,1,"""North America""" +2024-08-23,76804,8266,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4517.64,{},18131,1,"""North America""" +2023-12-04,76805,562,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",367.65,"{\""loyalty\"": \""8%\""}",224927,0,"""North America""" +2024-10-17,76806,5366,"[\""Wireless Mouse\""]",3662.81,{},294201,0,"""Europe""" +2024-07-28,76807,9185,"[\""Keyboard\"", \""Phone\""]",155.09,{},38719,1,"""South America""" +2023-06-29,76808,6245,"[\""Laptop\""]",4825.41,"{\""loyalty\"": \""17%\""}",37880,0,"""Asia""" +2024-02-21,76809,2915,"[\""Charger\"", \""Wireless Mouse\""]",458.23,{},212132,0,"""Africa""" +2023-10-29,76810,5696,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4306.78,"{\""promo\"": \""24%\""}",276101,0,"""Asia""" +2024-10-06,76811,7236,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",461.26,"{\""loyalty\"": \""17%\""}",205414,0,"""North America""" +2023-08-03,76812,122,"[\""Keyboard\""]",1944.51,{},6913,0,"""South America""" +2023-07-16,76813,9824,"[\""Laptop\""]",2277.73,"{\""seasonal\"": \""19%\""}",57735,1,"""Africa""" +2023-12-20,76814,1694,"[\""Laptop\""]",4428.1,"{\""seasonal\"": \""24%\""}",192897,0,"""South America""" +2023-02-03,76815,3180,"[\""Laptop\""]",4473.5,{},192256,0,"""South America""" +2023-03-17,76816,2738,"[\""Keyboard\"", \""Charger\""]",2910.27,{},251117,1,"""South America""" +2024-05-02,76817,9674,"[\""Phone\"", \""Keyboard\""]",2195.73,{},72782,0,"""Asia""" +2023-09-13,76818,3965,"[\""Laptop\"", \""Wireless Mouse\""]",4203.17,"{\""seasonal\"": \""29%\""}",86492,0,"""South America""" +2024-10-20,76819,1628,"[\""Phone\""]",4489.85,{},116184,0,"""South America""" +2024-08-11,76820,1700,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4477.68,"{\""promo\"": \""20%\""}",246844,0,"""Africa""" +2023-02-21,76821,8049,"[\""Phone\"", \""Charger\""]",814.66,{},89875,1,"""South America""" +2023-11-24,76822,3124,"[\""Wireless Mouse\"", \""Tablet\""]",4689.61,"{\"": \""16%\""}",184762,1,"""South America""" +2024-12-23,76823,150,"[\""Laptop\"", \""Charger\""]",4938.92,"{\""loyalty\"": \""7%\""}",38650,1,"""Asia""" +2023-10-03,76824,4821,"[\""Phone\"", \""Wireless Mouse\""]",2798.25,"{\""seasonal\"": \""20%\""}",119665,0,"""North America""" +2023-09-24,76825,7471,"[\""Phone\"", \""Tablet\""]",4265.64,{},142548,1,"""Africa""" +2024-03-27,76826,2305,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3816.01,"{\""promo\"": \""16%\""}",278593,1,"""Africa""" +2024-10-16,76827,6859,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2920.16,{},264845,0,"""Africa""" +2023-06-12,76828,8341,"[\""Keyboard\"", \""Wireless Mouse\""]",3115.42,"{\""promo\"": \""10%\""}",149959,1,"""North America""" +2024-05-09,76829,3251,"[\""Keyboard\"", \""Tablet\""]",2776.02,"{\""loyalty\"": \""17%\""}",31268,1,"""Africa""" +2023-02-19,76830,2585,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2456.03,"{\""loyalty\"": \""6%\""}",3403,1,"""South America""" +2023-08-18,76831,5714,"[\""Phone\"", \""Tablet\""]",4557.3,"{\""seasonal\"": \""17%\""}",91149,0,"""Africa""" +2023-06-24,76832,5092,"[\""Keyboard\"", \""Laptop\""]",3403.68,"{\"": \""17%\""}",220366,1,"""Asia""" +2023-12-30,76833,7147,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3712.26,"{\""promo\"": \""17%\""}",217065,0,"""Asia""" +2024-04-13,76834,6603,"[\""Charger\"", \""Monitor\""]",4699.32,"{\""promo\"": \""14%\""}",273415,1,"""Europe""" +2023-02-16,76835,3739,"[\""Charger\""]",4807.61,"{\"": \""29%\""}",277146,1,"""Africa""" +2023-07-06,76836,6138,"[\""Wireless Mouse\""]",2378.75,{},163157,1,"""Europe""" +2023-10-24,76837,5111,"[\""Wireless Mouse\""]",907.68,{},177907,1,"""North America""" +2023-10-02,76838,5828,"[\""Laptop\"", \""Tablet\""]",974.5,{},278415,1,"""North America""" +2024-06-18,76839,3794,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4186.79,{},222827,0,"""North America""" +2024-03-26,76840,6677,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2713.26,"{\""loyalty\"": \""17%\""}",110378,1,"""South America""" +2024-03-09,76841,290,"[\""Monitor\"", \""Wireless Mouse\""]",4623.37,{},208423,0,"""North America""" +2023-12-27,76842,937,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1420.33,"{\"": \""18%\""}",297085,1,"""North America""" +2024-06-18,76843,2562,"[\""Laptop\"", \""Phone\""]",517.72,"{\""seasonal\"": \""24%\""}",293186,1,"""Africa""" +2024-11-30,76844,8813,"[\""Keyboard\""]",1595.07,{},46792,0,"""Africa""" +2023-07-14,76845,9037,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",129.33,{},2585,0,"""North America""" +2023-09-12,76846,6398,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3487.63,{},210926,0,"""Africa""" +2023-11-29,76847,2292,"[\""Monitor\"", \""Phone\""]",4160.27,"{\""loyalty\"": \""24%\""}",77672,0,"""Africa""" +2023-06-11,76848,6448,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2796.75,"{\""promo\"": \""16%\""}",294833,0,"""North America""" +2023-08-09,76849,8382,"[\""Wireless Mouse\""]",4457.49,"{\""loyalty\"": \""20%\""}",23452,0,"""Asia""" +2024-03-12,76850,6909,"[\""Laptop\""]",3752.12,{},166802,1,"""North America""" +2023-01-16,76851,5647,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2270.29,{},166500,0,"""North America""" +2023-05-26,76852,183,"[\""Charger\"", \""Wireless Mouse\""]",2268.22,"{\""loyalty\"": \""9%\""}",134945,0,"""Asia""" +2024-08-03,76853,1873,"[\""Phone\""]",4590.74,{},19224,0,"""Africa""" +2024-04-17,76854,6974,"[\""Keyboard\"", \""Charger\""]",2129.59,{},232538,1,"""Africa""" +2024-10-29,76855,5059,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3586.59,"{\""promo\"": \""16%\""}",276381,1,"""Europe""" +2023-03-06,76856,7648,"[\""Keyboard\""]",2068.38,{},11025,0,"""Africa""" +2023-09-06,76857,4246,"[\""Wireless Mouse\""]",1142.51,"{\""loyalty\"": \""11%\""}",275165,0,"""South America""" +2024-10-22,76858,9267,"[\""Monitor\""]",874.31,{},110552,0,"""South America""" +2024-03-25,76859,1907,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3108.37,"{\""loyalty\"": \""18%\""}",147487,1,"""Africa""" +2023-10-12,76860,2393,"[\""Wireless Mouse\""]",4002.82,"{\""loyalty\"": \""15%\""}",159841,0,"""Africa""" +2024-03-04,76861,3845,"[\""Headphones\""]",3127.44,"{\""loyalty\"": \""26%\""}",129003,0,"""North America""" +2024-12-13,76862,7243,"[\""Keyboard\""]",3101.65,{},276277,0,"""Africa""" +2023-10-28,76863,3108,"[\""Keyboard\""]",3375.04,{},142158,1,"""North America""" +2023-11-04,76864,8388,"[\""Monitor\""]",3304.17,"{\""loyalty\"": \""29%\""}",251636,0,"""Europe""" +2023-01-30,76865,5117,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",249.84,"{\""loyalty\"": \""14%\""}",245748,0,"""Africa""" +2024-12-27,76866,8907,"[\""Wireless Mouse\""]",86.08,"{\"": \""14%\""}",182949,0,"""Africa""" +2024-12-08,76867,9413,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2449.56,"{\""loyalty\"": \""24%\""}",86319,0,"""South America""" +2023-05-31,76868,6962,"[\""Monitor\""]",2817.67,"{\""promo\"": \""8%\""}",12191,0,"""Africa""" +2024-03-05,76869,8420,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1951.26,"{\""loyalty\"": \""14%\""}",223066,0,"""Africa""" +2024-12-03,76870,7735,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",104.28,{},2122,0,"""Africa""" +2023-06-13,76871,7489,"[\""Charger\"", \""Headphones\""]",2463.64,"{\"": \""30%\""}",166944,1,"""Europe""" +2023-04-20,76872,2992,"[\""Monitor\""]",4699.78,"{\""seasonal\"": \""7%\""}",44566,0,"""Europe""" +2024-09-11,76873,1287,"[\""Laptop\"", \""Keyboard\""]",821.4,{},247137,0,"""South America""" +2024-07-20,76874,3391,"[\""Keyboard\""]",4337.39,"{\""promo\"": \""17%\""}",113572,1,"""North America""" +2023-07-22,76875,2319,"[\""Charger\"", \""Tablet\""]",2273.39,{},270766,1,"""South America""" +2023-12-03,76876,9246,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1596.1,"{\""loyalty\"": \""24%\""}",183577,0,"""South America""" +2023-02-27,76877,3814,"[\""Laptop\""]",3244.92,{},11854,1,"""Africa""" +2024-06-09,76878,4430,"[\""Monitor\""]",2708.92,"{\""loyalty\"": \""13%\""}",13958,0,"""Africa""" +2023-11-18,76879,128,"[\""Monitor\"", \""Laptop\""]",132.7,{},53763,1,"""South America""" +2024-02-16,76880,7111,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2022.6,"{\""promo\"": \""27%\""}",12980,1,"""Asia""" +2024-11-30,76881,4060,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4271.38,{},101963,0,"""Africa""" +2023-03-26,76882,3996,"[\""Charger\""]",537.92,"{\""seasonal\"": \""29%\""}",252791,0,"""South America""" +2023-09-10,76883,4345,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",611.95,{},40268,1,"""Asia""" +2024-04-21,76884,9247,"[\""Charger\"", \""Laptop\""]",2227.26,"{\""loyalty\"": \""26%\""}",182282,0,"""South America""" +2024-04-08,76885,1939,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",718.8,{},57865,0,"""Africa""" +2024-01-28,76886,3104,"[\""Keyboard\"", \""Phone\""]",4085.9,{},230550,0,"""Africa""" +2023-01-12,76887,5198,"[\""Wireless Mouse\"", \""Phone\""]",3927.86,"{\"": \""7%\""}",183819,0,"""North America""" +2023-04-20,76888,1396,"[\""Keyboard\""]",4904.46,"{\""seasonal\"": \""28%\""}",26351,0,"""South America""" +2023-12-05,76889,1603,"[\""Charger\""]",1472.85,{},209574,0,"""Europe""" +2023-03-23,76890,9472,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1169.71,{},83294,0,"""Europe""" +2023-06-25,76891,4456,"[\""Keyboard\"", \""Phone\""]",3222.86,{},117316,0,"""Africa""" +2023-09-29,76892,3166,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2673.31,{},52411,0,"""Asia""" +2023-12-13,76893,3055,"[\""Keyboard\"", \""Headphones\""]",2877.63,{},134964,1,"""Europe""" +2024-10-26,76894,275,"[\""Laptop\"", \""Charger\""]",3701.13,{},55533,1,"""Africa""" +2024-06-12,76895,4349,"[\""Keyboard\""]",946.21,"{\"": \""24%\""}",132185,1,"""Europe""" +2023-06-26,76896,1931,"[\""Phone\""]",2784.48,"{\""seasonal\"": \""15%\""}",95780,0,"""Asia""" +2024-07-16,76897,3977,"[\""Headphones\""]",4448.67,"{\"": \""18%\""}",33479,1,"""Europe""" +2024-03-08,76898,5421,"[\""Phone\"", \""Wireless Mouse\""]",221.95,"{\""promo\"": \""7%\""}",63455,1,"""South America""" +2024-12-12,76899,7982,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2416.99,{},4302,0,"""Africa""" +2023-06-09,76900,8745,"[\""Monitor\""]",1600.63,"{\""loyalty\"": \""22%\""}",14105,0,"""Asia""" +2024-11-04,76901,8710,"[\""Monitor\""]",2401.8,{},93742,1,"""Asia""" +2024-04-29,76902,8988,"[\""Keyboard\"", \""Tablet\""]",4940.43,"{\""promo\"": \""22%\""}",62256,1,"""North America""" +2023-09-20,76903,9968,"[\""Laptop\"", \""Keyboard\""]",920.43,{},84708,1,"""Asia""" +2023-04-30,76904,946,"[\""Tablet\"", \""Phone\""]",4954.08,"{\""seasonal\"": \""6%\""}",30644,1,"""South America""" +2024-12-29,76905,7877,"[\""Laptop\""]",4506.51,{},210857,0,"""Africa""" +2023-09-17,76906,4021,"[\""Headphones\""]",324.98,{},227255,0,"""Asia""" +2024-01-14,76907,7918,"[\""Keyboard\""]",1238.33,{},53663,1,"""Asia""" +2024-04-26,76908,8856,"[\""Laptop\"", \""Phone\""]",1066.27,"{\""promo\"": \""18%\""}",150784,1,"""South America""" +2024-04-14,76909,3547,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4065.36,{},24047,0,"""Africa""" +2023-06-04,76910,1637,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4027.13,"{\""loyalty\"": \""14%\""}",88021,0,"""Europe""" +2023-08-31,76911,8814,"[\""Monitor\""]",4060.24,"{\"": \""18%\""}",172960,0,"""Africa""" +2023-06-03,76912,5851,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1404.79,{},263815,1,"""Africa""" +2024-03-25,76913,1341,"[\""Tablet\"", \""Keyboard\""]",559.16,"{\"": \""18%\""}",4336,0,"""Africa""" +2024-06-02,76914,1754,"[\""Charger\""]",1088.36,"{\""loyalty\"": \""21%\""}",52246,1,"""Asia""" +2024-05-10,76915,9740,"[\""Wireless Mouse\""]",917.2,{},137021,0,"""North America""" +2023-07-09,76916,1759,"[\""Headphones\"", \""Phone\""]",337.21,"{\"": \""21%\""}",43915,0,"""Europe""" +2024-05-15,76917,3952,"[\""Laptop\"", \""Wireless Mouse\""]",3230.42,"{\"": \""21%\""}",14056,1,"""Asia""" +2023-08-22,76918,8550,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1609.5,{},148242,1,"""Europe""" +2024-03-15,76919,7772,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2420.58,{},148701,0,"""South America""" +2023-03-06,76920,1237,"[\""Headphones\"", \""Tablet\""]",2769.92,"{\""seasonal\"": \""14%\""}",182945,0,"""Africa""" +2024-05-30,76921,644,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1017.77,{},219033,0,"""South America""" +2023-11-23,76922,4835,"[\""Keyboard\""]",1727.41,"{\""promo\"": \""18%\""}",264198,0,"""South America""" +2023-10-16,76923,7669,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",866.09,"{\"": \""28%\""}",220255,1,"""Africa""" +2023-01-22,76924,823,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4045.39,{},34012,1,"""South America""" +2024-11-23,76925,9033,"[\""Tablet\""]",482.3,{},93806,0,"""South America""" +2024-06-23,76926,2280,"[\""Charger\""]",3956.93,"{\""loyalty\"": \""28%\""}",255862,0,"""South America""" +2024-07-05,76927,3766,"[\""Monitor\"", \""Headphones\""]",469.17,"{\""seasonal\"": \""25%\""}",45878,1,"""Europe""" +2023-10-21,76928,9265,"[\""Tablet\""]",2526.15,"{\""promo\"": \""21%\""}",165973,1,"""North America""" +2024-09-06,76929,3196,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3725.04,"{\""loyalty\"": \""23%\""}",61592,1,"""Asia""" +2023-10-27,76930,3277,"[\""Monitor\"", \""Wireless Mouse\""]",1912.27,"{\""promo\"": \""29%\""}",35899,1,"""North America""" +2023-06-03,76931,5656,"[\""Tablet\"", \""Charger\""]",4567.27,{},251201,1,"""Africa""" +2023-10-09,76932,7006,"[\""Phone\""]",4795.88,{},93844,1,"""North America""" +2024-08-19,76933,4862,"[\""Phone\""]",4762.22,{},135208,0,"""Africa""" +2024-09-20,76934,6711,"[\""Keyboard\""]",3600.42,"{\""seasonal\"": \""19%\""}",213239,1,"""South America""" +2024-07-15,76935,4832,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2236.37,"{\"": \""9%\""}",26555,1,"""Europe""" +2023-12-22,76936,9513,"[\""Wireless Mouse\""]",3101.37,{},197803,0,"""Asia""" +2024-05-28,76937,1924,"[\""Laptop\"", \""Monitor\""]",4548.29,{},67475,0,"""Africa""" +2023-10-12,76938,2429,"[\""Phone\""]",4275.87,"{\""seasonal\"": \""22%\""}",127011,1,"""Africa""" +2023-06-05,76939,6607,"[\""Phone\"", \""Monitor\""]",1031.88,{},95303,1,"""North America""" +2023-11-18,76940,3700,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1271.37,"{\""promo\"": \""12%\""}",217598,1,"""North America""" +2023-01-09,76941,6027,"[\""Wireless Mouse\""]",1423.54,{},53722,0,"""Africa""" +2024-03-04,76942,9186,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",60.96,"{\""loyalty\"": \""30%\""}",88601,1,"""Europe""" +2023-08-12,76943,774,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1721.21,"{\""promo\"": \""24%\""}",159923,0,"""Africa""" +2023-11-25,76944,2600,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4268.37,"{\""seasonal\"": \""9%\""}",2935,0,"""South America""" +2023-09-23,76945,5184,"[\""Tablet\""]",3888.28,"{\""promo\"": \""23%\""}",176216,1,"""Africa""" +2023-05-30,76946,792,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",973.65,"{\""promo\"": \""30%\""}",22769,0,"""Asia""" +2024-01-01,76947,3175,"[\""Phone\""]",190.26,"{\""promo\"": \""13%\""}",56886,0,"""South America""" +2024-03-23,76948,2982,"[\""Wireless Mouse\"", \""Charger\""]",3364.48,{},44975,1,"""South America""" +2023-02-23,76949,712,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2958.95,"{\"": \""28%\""}",133458,1,"""Europe""" +2024-05-10,76950,9448,"[\""Charger\""]",3325.37,{},295522,0,"""South America""" +2023-01-11,76951,7334,"[\""Keyboard\"", \""Phone\""]",4126.36,{},157844,0,"""Europe""" +2023-09-12,76952,4882,"[\""Wireless Mouse\"", \""Phone\""]",1833.36,"{\""promo\"": \""24%\""}",92992,1,"""North America""" +2024-05-12,76953,380,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4890.51,{},156253,1,"""Asia""" +2024-11-17,76954,8098,"[\""Charger\"", \""Phone\""]",4670.83,{},31326,0,"""North America""" +2023-11-16,76955,2039,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",666.62,"{\""loyalty\"": \""14%\""}",6732,1,"""Europe""" +2023-09-28,76956,7756,"[\""Phone\""]",2458.05,"{\""loyalty\"": \""26%\""}",141749,0,"""Europe""" +2024-06-19,76957,4934,"[\""Monitor\""]",214.41,{},149220,1,"""Asia""" +2024-10-07,76958,564,"[\""Laptop\""]",2120.53,"{\""seasonal\"": \""24%\""}",276146,0,"""North America""" +2023-06-17,76959,6476,"[\""Phone\""]",250.71,"{\""seasonal\"": \""19%\""}",286386,0,"""Europe""" +2024-03-19,76960,6984,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2232.25,"{\""loyalty\"": \""30%\""}",54511,1,"""South America""" +2024-06-16,76961,4788,"[\""Charger\""]",2177.12,{},23433,1,"""South America""" +2023-12-03,76962,6075,"[\""Headphones\"", \""Laptop\""]",3223.91,"{\"": \""16%\""}",174718,1,"""North America""" +2023-11-19,76963,7507,"[\""Wireless Mouse\""]",1420.13,"{\""promo\"": \""17%\""}",117536,1,"""Europe""" +2024-10-02,76964,2095,"[\""Tablet\"", \""Wireless Mouse\""]",2858.67,{},10401,1,"""Africa""" +2024-11-10,76965,3279,"[\""Headphones\""]",4512.12,{},78589,1,"""North America""" +2023-08-27,76966,6567,"[\""Headphones\""]",3514.62,{},195421,0,"""Asia""" +2024-01-06,76967,7549,"[\""Wireless Mouse\""]",3699.63,{},16901,1,"""South America""" +2024-06-19,76968,3176,"[\""Laptop\""]",2841.58,{},245564,0,"""South America""" +2024-07-30,76969,793,"[\""Wireless Mouse\"", \""Monitor\""]",3278.49,"{\""seasonal\"": \""24%\""}",277370,0,"""Europe""" +2023-04-28,76970,6864,"[\""Charger\"", \""Wireless Mouse\""]",1885.83,{},105136,1,"""Africa""" +2024-03-01,76971,8647,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2356.5,"{\""loyalty\"": \""25%\""}",57536,0,"""North America""" +2023-02-28,76972,6151,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4247.15,{},39379,0,"""Asia""" +2024-04-15,76973,7979,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3002.9,{},48528,0,"""Asia""" +2023-11-06,76974,9581,"[\""Charger\""]",358.17,{},117681,0,"""South America""" +2023-12-20,76975,7613,"[\""Charger\"", \""Phone\""]",2464.85,"{\""promo\"": \""17%\""}",88411,0,"""Europe""" +2024-05-20,76976,4109,"[\""Phone\"", \""Headphones\""]",4820.76,"{\""loyalty\"": \""6%\""}",146519,1,"""Europe""" +2023-02-01,76977,5425,"[\""Wireless Mouse\"", \""Tablet\""]",751.27,"{\""seasonal\"": \""29%\""}",87939,1,"""North America""" +2024-07-23,76978,5237,"[\""Laptop\"", \""Wireless Mouse\""]",3737.55,"{\""promo\"": \""23%\""}",196684,0,"""South America""" +2024-10-19,76979,5458,"[\""Keyboard\"", \""Headphones\""]",2539.24,{},28314,1,"""Asia""" +2024-07-06,76980,9742,"[\""Phone\""]",1871.7,{},229303,0,"""Africa""" +2023-12-12,76981,4664,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2085.49,{},154230,0,"""South America""" +2023-01-06,76982,9881,"[\""Headphones\""]",852.69,{},271423,0,"""Asia""" +2024-02-08,76983,4078,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",712.02,{},279561,1,"""Europe""" +2023-03-16,76984,9997,"[\""Monitor\""]",3769.12,{},250952,0,"""South America""" +2024-01-01,76985,7222,"[\""Headphones\""]",3664.35,{},14413,1,"""Europe""" +2023-10-28,76986,2375,"[\""Tablet\""]",4278.45,"{\""seasonal\"": \""9%\""}",101764,1,"""South America""" +2024-07-15,76987,9868,"[\""Tablet\""]",1667.21,{},22268,0,"""Asia""" +2023-06-08,76988,9771,"[\""Wireless Mouse\"", \""Headphones\""]",1289.56,"{\""promo\"": \""26%\""}",203520,0,"""North America""" +2024-12-16,76989,8932,"[\""Laptop\""]",3339.58,{},293757,0,"""South America""" +2024-07-20,76990,1262,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1339.22,{},221549,1,"""South America""" +2024-02-08,76991,4295,"[\""Phone\"", \""Tablet\""]",4434.19,{},61833,1,"""Africa""" +2024-04-09,76992,1050,"[\""Keyboard\"", \""Tablet\""]",907.11,"{\""seasonal\"": \""30%\""}",222850,0,"""Europe""" +2023-12-07,76993,8898,"[\""Headphones\"", \""Charger\""]",3247.35,{},117398,1,"""Africa""" +2024-02-21,76994,987,"[\""Tablet\"", \""Charger\"", \""Phone\""]",948.75,{},238937,1,"""Europe""" +2023-05-30,76995,2928,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",3371.02,"{\"": \""8%\""}",22510,0,"""Asia""" +2024-08-30,76996,3654,"[\""Headphones\""]",2136.17,{},73755,0,"""South America""" +2023-08-15,76997,574,"[\""Phone\""]",4415.48,"{\""loyalty\"": \""11%\""}",257851,1,"""South America""" +2024-10-12,76998,5811,"[\""Charger\"", \""Tablet\""]",1807.21,"{\""promo\"": \""16%\""}",123801,0,"""South America""" +2023-01-16,76999,4075,"[\""Tablet\""]",3473.26,{},284492,1,"""Africa""" +2023-04-23,77000,7128,"[\""Charger\"", \""Monitor\""]",3165.3,"{\""promo\"": \""30%\""}",223797,0,"""Europe""" +2024-03-20,77001,9693,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1964.5,{},95328,0,"""South America""" +2024-10-31,77002,8750,"[\""Charger\""]",3449.01,"{\""promo\"": \""29%\""}",105200,0,"""North America""" +2024-04-24,77003,5408,"[\""Headphones\""]",1202.71,{},61305,1,"""North America""" +2024-04-28,77004,5312,"[\""Laptop\""]",466.78,{},110544,1,"""North America""" +2023-03-01,77005,1877,"[\""Charger\""]",2524.26,"{\""seasonal\"": \""24%\""}",170696,0,"""North America""" +2024-03-30,77006,8891,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3763.15,{},214888,0,"""Europe""" +2024-12-02,77007,8366,"[\""Headphones\""]",1393.23,{},196804,0,"""Africa""" +2024-01-09,77008,3020,"[\""Monitor\""]",3225.29,"{\""seasonal\"": \""26%\""}",117662,1,"""Asia""" +2023-12-26,77009,3852,"[\""Monitor\""]",2600.35,"{\"": \""10%\""}",22428,0,"""South America""" +2023-04-02,77010,3249,"[\""Headphones\"", \""Charger\""]",3888.65,{},264443,1,"""Africa""" +2024-07-03,77011,7077,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1059.66,"{\""loyalty\"": \""9%\""}",163639,0,"""North America""" +2023-03-14,77012,5857,"[\""Laptop\""]",3757.69,"{\""seasonal\"": \""6%\""}",87521,1,"""Asia""" +2023-03-13,77013,8675,"[\""Headphones\""]",3132.93,{},230456,0,"""North America""" +2024-04-06,77014,9172,"[\""Phone\"", \""Monitor\""]",115.32,{},96470,1,"""North America""" +2023-08-06,77015,5345,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3589.75,{},83425,0,"""Asia""" +2023-02-19,77016,7493,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1937.48,"{\""loyalty\"": \""28%\""}",207883,1,"""Europe""" +2023-01-29,77017,4939,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4303.0,"{\""seasonal\"": \""21%\""}",166755,0,"""North America""" +2023-09-10,77018,4340,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4922.42,"{\""seasonal\"": \""16%\""}",98387,0,"""Europe""" +2024-12-17,77019,5967,"[\""Tablet\""]",2147.65,{},151216,0,"""Europe""" +2024-03-15,77020,584,"[\""Laptop\"", \""Keyboard\""]",354.16,"{\"": \""21%\""}",181266,0,"""Africa""" +2023-10-14,77021,3278,"[\""Charger\"", \""Headphones\""]",4370.39,{},171476,0,"""Europe""" +2024-10-05,77022,3493,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1051.36,{},84235,0,"""Africa""" +2024-10-31,77023,9531,"[\""Phone\"", \""Laptop\""]",4675.14,"{\""seasonal\"": \""15%\""}",28995,1,"""Africa""" +2023-09-12,77024,2431,"[\""Tablet\""]",3300.09,{},66396,0,"""South America""" +2024-03-16,77025,8888,"[\""Wireless Mouse\"", \""Laptop\""]",1612.46,"{\"": \""10%\""}",129273,1,"""Africa""" +2024-08-21,77026,9676,"[\""Wireless Mouse\"", \""Laptop\""]",178.2,"{\""seasonal\"": \""10%\""}",146175,1,"""South America""" +2024-02-29,77027,8931,"[\""Monitor\"", \""Headphones\""]",1722.17,{},3196,1,"""Asia""" +2023-07-07,77028,3828,"[\""Wireless Mouse\""]",4348.67,"{\""loyalty\"": \""21%\""}",212119,1,"""Asia""" +2024-01-24,77029,5232,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",169.76,{},19639,1,"""Asia""" +2024-01-26,77030,2441,"[\""Headphones\"", \""Keyboard\""]",831.84,"{\""seasonal\"": \""14%\""}",161953,1,"""Asia""" +2023-10-20,77031,3797,"[\""Headphones\""]",3768.16,{},214744,1,"""South America""" +2023-06-11,77032,749,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",280.14,"{\""loyalty\"": \""20%\""}",229228,0,"""Africa""" +2023-10-18,77033,1612,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2069.53,"{\"": \""23%\""}",121628,0,"""North America""" +2023-09-17,77034,4466,"[\""Tablet\""]",4319.72,"{\""seasonal\"": \""5%\""}",218277,0,"""Europe""" +2024-08-06,77035,3297,"[\""Wireless Mouse\"", \""Laptop\""]",652.6,{},9488,1,"""South America""" +2023-08-24,77036,8609,"[\""Monitor\""]",3492.84,{},130825,1,"""Asia""" +2023-05-19,77037,4989,"[\""Monitor\"", \""Phone\""]",2408.42,{},155205,1,"""Europe""" +2023-08-10,77038,1184,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3336.45,"{\"": \""12%\""}",125044,1,"""North America""" +2023-09-27,77039,6180,"[\""Charger\""]",2784.92,{},237664,0,"""Asia""" +2024-10-21,77040,547,"[\""Monitor\"", \""Charger\""]",4555.74,{},118258,1,"""Europe""" +2023-07-24,77041,3912,"[\""Charger\""]",4056.53,"{\""seasonal\"": \""10%\""}",80142,1,"""South America""" +2024-09-25,77042,7151,"[\""Headphones\""]",4560.57,{},81717,1,"""South America""" +2023-03-22,77043,3105,"[\""Charger\""]",1005.29,"{\"": \""28%\""}",75211,0,"""Asia""" +2023-09-03,77044,7691,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2411.59,"{\"": \""22%\""}",24276,0,"""North America""" +2023-06-26,77045,2355,"[\""Tablet\""]",1769.74,"{\""loyalty\"": \""13%\""}",266184,1,"""South America""" +2024-11-16,77046,2562,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2244.27,{},139862,0,"""North America""" +2024-09-07,77047,5287,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3335.3,{},191081,0,"""Europe""" +2024-12-09,77048,5999,"[\""Wireless Mouse\""]",3369.19,"{\""seasonal\"": \""17%\""}",73179,0,"""Asia""" +2024-01-17,77049,9307,"[\""Phone\"", \""Wireless Mouse\""]",3795.94,{},219820,1,"""South America""" +2024-09-27,77050,102,"[\""Laptop\"", \""Wireless Mouse\""]",4516.28,"{\""promo\"": \""5%\""}",32571,1,"""Africa""" +2024-10-13,77051,33,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",223.09,{},28274,1,"""North America""" +2023-11-02,77052,5783,"[\""Tablet\""]",1147.68,{},163394,0,"""Asia""" +2024-05-02,77053,2209,"[\""Charger\"", \""Laptop\""]",93.13,"{\""loyalty\"": \""18%\""}",208193,1,"""South America""" +2024-03-04,77054,6761,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3102.68,"{\""loyalty\"": \""24%\""}",73462,1,"""North America""" +2024-05-30,77055,6860,"[\""Phone\""]",684.35,"{\""promo\"": \""25%\""}",83844,1,"""North America""" +2024-03-10,77056,4567,"[\""Charger\""]",3692.83,{},57621,0,"""South America""" +2023-01-20,77057,5917,"[\""Phone\""]",2989.68,"{\""loyalty\"": \""20%\""}",129784,1,"""Africa""" +2024-09-17,77058,5367,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4933.56,"{\""promo\"": \""28%\""}",212274,0,"""Europe""" +2024-06-20,77059,1802,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1887.38,"{\""seasonal\"": \""19%\""}",61731,0,"""Africa""" +2023-06-25,77060,2255,"[\""Phone\"", \""Laptop\""]",1072.48,"{\""loyalty\"": \""30%\""}",170670,0,"""Africa""" +2023-08-23,77061,5447,"[\""Wireless Mouse\"", \""Monitor\""]",339.31,{},160984,1,"""North America""" +2024-09-15,77062,994,"[\""Wireless Mouse\"", \""Tablet\""]",706.9,{},194366,0,"""South America""" +2024-11-10,77063,8811,"[\""Monitor\"", \""Charger\""]",1585.21,"{\""promo\"": \""25%\""}",121575,1,"""Europe""" +2023-11-23,77064,7930,"[\""Charger\""]",231.7,{},1723,1,"""North America""" +2023-01-23,77065,2187,"[\""Phone\"", \""Monitor\""]",3780.42,{},53505,0,"""Europe""" +2023-10-28,77066,6876,"[\""Tablet\"", \""Wireless Mouse\""]",3396.41,"{\""seasonal\"": \""25%\""}",188844,0,"""Africa""" +2023-07-19,77067,2152,"[\""Keyboard\"", \""Headphones\""]",1134.03,{},271820,0,"""South America""" +2023-07-13,77068,7999,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1572.49,"{\""loyalty\"": \""22%\""}",97866,1,"""Africa""" +2024-06-27,77069,2373,"[\""Wireless Mouse\""]",1536.06,"{\""loyalty\"": \""17%\""}",129238,1,"""Europe""" +2023-10-26,77070,4183,"[\""Wireless Mouse\"", \""Keyboard\""]",4995.11,{},68096,0,"""North America""" +2024-04-11,77071,6221,"[\""Charger\"", \""Headphones\""]",4801.77,{},45292,0,"""South America""" +2024-04-03,77072,9288,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2302.49,{},214388,0,"""Europe""" +2023-10-14,77073,5316,"[\""Keyboard\"", \""Wireless Mouse\""]",4831.69,{},35538,1,"""Europe""" +2024-05-26,77074,4225,"[\""Monitor\""]",1525.8,{},157164,1,"""North America""" +2023-01-29,77075,5145,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2309.92,{},102743,0,"""South America""" +2024-05-26,77076,4019,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",547.39,"{\""loyalty\"": \""24%\""}",140498,1,"""Europe""" +2024-08-05,77077,1268,"[\""Phone\"", \""Monitor\""]",909.67,{},177550,1,"""Asia""" +2024-07-02,77078,5991,"[\""Wireless Mouse\""]",2774.6,{},44935,1,"""North America""" +2024-06-27,77079,618,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",74.55,"{\""seasonal\"": \""24%\""}",7163,1,"""Africa""" +2023-09-15,77080,2099,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2231.3,{},48943,1,"""Europe""" +2023-11-16,77081,9662,"[\""Headphones\""]",4370.89,"{\""seasonal\"": \""12%\""}",95491,1,"""South America""" +2024-02-02,77082,2640,"[\""Tablet\"", \""Phone\""]",2403.19,{},220176,0,"""Asia""" +2024-05-05,77083,3361,"[\""Charger\"", \""Phone\""]",1159.36,{},52084,0,"""Africa""" +2024-04-07,77084,4241,"[\""Monitor\""]",979.95,"{\""promo\"": \""30%\""}",68029,0,"""Europe""" +2024-02-12,77085,9578,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4128.6,"{\"": \""9%\""}",18538,1,"""Africa""" +2023-10-24,77086,242,"[\""Wireless Mouse\"", \""Keyboard\""]",807.42,{},15453,1,"""Europe""" +2024-09-28,77087,961,"[\""Tablet\"", \""Monitor\""]",198.31,"{\""loyalty\"": \""7%\""}",191111,0,"""South America""" +2024-10-30,77088,3170,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4198.08,{},140121,0,"""Europe""" +2023-08-27,77089,2841,"[\""Monitor\""]",1251.74,"{\"": \""29%\""}",179468,1,"""South America""" +2024-10-10,77090,881,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1043.11,"{\""seasonal\"": \""10%\""}",37658,0,"""Europe""" +2023-01-28,77091,3787,"[\""Tablet\"", \""Keyboard\""]",4144.99,"{\""seasonal\"": \""27%\""}",230208,1,"""Europe""" +2023-10-15,77092,8011,"[\""Phone\"", \""Keyboard\""]",4162.54,{},154701,1,"""Africa""" +2023-11-04,77093,1819,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4649.98,{},233045,0,"""North America""" +2024-01-09,77094,7100,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2423.59,{},204905,1,"""Europe""" +2024-06-21,77095,719,"[\""Charger\"", \""Keyboard\""]",1850.63,"{\"": \""10%\""}",212744,0,"""Europe""" +2023-02-23,77096,4882,"[\""Charger\"", \""Keyboard\""]",2494.58,"{\""seasonal\"": \""8%\""}",290468,0,"""Europe""" +2023-05-23,77097,8092,"[\""Headphones\"", \""Tablet\""]",2033.84,{},228048,1,"""Europe""" +2024-04-01,77098,2515,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2231.13,{},143996,0,"""Africa""" +2024-09-19,77099,7684,"[\""Wireless Mouse\"", \""Phone\""]",98.03,{},86070,1,"""North America""" +2023-05-27,77100,7594,"[\""Monitor\"", \""Keyboard\""]",679.08,"{\""seasonal\"": \""13%\""}",36272,0,"""Africa""" +2023-06-02,77101,5744,"[\""Wireless Mouse\"", \""Charger\""]",1693.69,"{\"": \""23%\""}",231136,0,"""North America""" +2023-06-28,77102,4267,"[\""Charger\"", \""Keyboard\""]",1102.11,{},267722,1,"""South America""" +2024-08-29,77103,815,"[\""Charger\""]",1875.31,{},148211,0,"""South America""" +2024-04-09,77104,9301,"[\""Charger\"", \""Phone\""]",4789.17,{},195761,1,"""Europe""" +2024-08-18,77105,2575,"[\""Tablet\""]",1874.46,{},245615,0,"""Asia""" +2023-09-09,77106,6090,"[\""Laptop\"", \""Keyboard\""]",3193.45,{},245308,1,"""Asia""" +2024-07-09,77107,6915,"[\""Laptop\"", \""Tablet\""]",3822.6,"{\""promo\"": \""17%\""}",126909,0,"""North America""" +2024-10-12,77108,4922,"[\""Charger\"", \""Tablet\""]",356.05,"{\""promo\"": \""7%\""}",18535,0,"""South America""" +2024-05-18,77109,3215,"[\""Phone\"", \""Tablet\""]",2984.16,"{\""seasonal\"": \""10%\""}",134350,1,"""South America""" +2023-09-08,77110,2063,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4536.86,"{\""promo\"": \""11%\""}",141232,0,"""South America""" +2023-08-09,77111,7988,"[\""Monitor\""]",245.57,"{\""seasonal\"": \""24%\""}",14453,1,"""South America""" +2024-11-25,77112,4776,"[\""Tablet\"", \""Wireless Mouse\""]",1275.58,{},121174,1,"""Asia""" +2023-01-30,77113,8198,"[\""Keyboard\""]",4272.89,"{\"": \""19%\""}",251092,0,"""Europe""" +2023-03-16,77114,9865,"[\""Charger\""]",4417.12,"{\""loyalty\"": \""30%\""}",202657,1,"""South America""" +2024-10-02,77115,9001,"[\""Keyboard\""]",1269.02,"{\""loyalty\"": \""26%\""}",39485,0,"""North America""" +2023-10-22,77116,1608,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4786.86,"{\"": \""19%\""}",68843,1,"""Africa""" +2024-03-01,77117,8059,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2832.26,{},12700,0,"""Asia""" +2024-10-01,77118,8297,"[\""Headphones\"", \""Charger\""]",869.46,{},18772,1,"""Europe""" +2024-01-03,77119,8376,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",649.35,{},199486,1,"""Europe""" +2024-10-12,77120,8335,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1158.06,"{\""loyalty\"": \""6%\""}",73319,1,"""Africa""" +2024-09-07,77121,5876,"[\""Monitor\""]",4912.59,{},12276,1,"""Europe""" +2024-01-05,77122,6803,"[\""Tablet\""]",4745.53,{},112639,1,"""North America""" +2024-09-17,77123,1131,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2648.55,"{\""promo\"": \""12%\""}",119642,1,"""South America""" +2023-04-23,77124,7757,"[\""Headphones\"", \""Monitor\""]",1677.93,{},131802,1,"""Europe""" +2023-04-30,77125,5504,"[\""Monitor\""]",553.1,"{\""promo\"": \""15%\""}",93741,0,"""Europe""" +2024-08-17,77126,3818,"[\""Laptop\""]",555.33,{},215116,0,"""North America""" +2023-01-25,77127,9669,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1971.91,{},188389,0,"""Europe""" +2024-03-30,77128,3979,"[\""Keyboard\"", \""Monitor\""]",977.66,{},239824,1,"""Asia""" +2024-04-27,77129,6752,"[\""Tablet\"", \""Charger\""]",879.92,"{\"": \""23%\""}",262330,1,"""Europe""" +2024-02-05,77130,38,"[\""Keyboard\"", \""Wireless Mouse\""]",4010.02,{},139120,0,"""Africa""" +2023-07-10,77131,7971,"[\""Headphones\""]",2904.77,{},228050,1,"""Africa""" +2024-03-27,77132,1909,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3861.57,"{\"": \""22%\""}",223871,1,"""North America""" +2024-12-05,77133,1822,"[\""Wireless Mouse\""]",399.64,"{\"": \""11%\""}",23996,0,"""Africa""" +2024-12-01,77134,8030,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3820.4,"{\""loyalty\"": \""26%\""}",88449,0,"""Europe""" +2023-04-17,77135,8021,"[\""Monitor\"", \""Keyboard\""]",3985.17,{},286556,0,"""North America""" +2024-12-08,77136,6317,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3675.78,"{\"": \""9%\""}",54159,0,"""South America""" +2024-03-07,77137,9826,"[\""Headphones\""]",1005.64,"{\""loyalty\"": \""17%\""}",218462,1,"""Africa""" +2023-04-19,77138,591,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2345.86,{},28615,1,"""Asia""" +2023-03-06,77139,965,"[\""Tablet\"", \""Phone\""]",2716.52,"{\"": \""30%\""}",234620,0,"""Europe""" +2023-05-08,77140,1405,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1518.04,"{\""seasonal\"": \""12%\""}",130047,1,"""Africa""" +2023-08-25,77141,4915,"[\""Phone\""]",3967.65,{},43025,1,"""Africa""" +2024-11-30,77142,8062,"[\""Laptop\"", \""Phone\""]",3531.22,{},75516,1,"""Asia""" +2023-07-14,77143,2936,"[\""Monitor\"", \""Keyboard\""]",1153.09,"{\""loyalty\"": \""28%\""}",188041,0,"""Asia""" +2023-04-10,77144,110,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1029.1,{},36886,1,"""Europe""" +2024-11-17,77145,8159,"[\""Charger\"", \""Phone\""]",3605.23,{},35447,1,"""Europe""" +2023-03-09,77146,8820,"[\""Wireless Mouse\""]",2934.37,"{\""loyalty\"": \""25%\""}",208526,1,"""Africa""" +2024-03-31,77147,9519,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3153.79,"{\""promo\"": \""26%\""}",199957,0,"""North America""" +2023-01-20,77148,9963,"[\""Keyboard\""]",4562.49,"{\""promo\"": \""12%\""}",250791,0,"""Europe""" +2023-10-09,77149,1603,"[\""Charger\"", \""Monitor\""]",1432.84,"{\""loyalty\"": \""26%\""}",174289,0,"""Asia""" +2024-05-12,77150,6621,"[\""Laptop\""]",1160.07,"{\""promo\"": \""8%\""}",68781,0,"""Europe""" +2023-04-14,77151,9376,"[\""Laptop\""]",413.93,{},247206,1,"""North America""" +2024-03-17,77152,8457,"[\""Headphones\"", \""Tablet\""]",1343.68,{},96443,1,"""Asia""" +2023-08-23,77153,5344,"[\""Wireless Mouse\"", \""Tablet\""]",4292.62,"{\""loyalty\"": \""14%\""}",91610,1,"""Africa""" +2024-06-03,77154,5503,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4688.79,"{\"": \""23%\""}",160813,1,"""Asia""" +2024-04-20,77155,3054,"[\""Tablet\"", \""Laptop\""]",472.89,{},17897,0,"""Africa""" +2023-09-08,77156,2417,"[\""Headphones\""]",3127.21,{},249505,0,"""North America""" +2024-08-18,77157,7382,"[\""Wireless Mouse\""]",507.32,"{\""promo\"": \""28%\""}",56873,1,"""Europe""" +2024-03-27,77158,9241,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4638.53,{},166631,0,"""South America""" +2023-02-09,77159,151,"[\""Keyboard\"", \""Headphones\""]",3237.52,"{\""seasonal\"": \""13%\""}",70366,1,"""Africa""" +2023-09-08,77160,1886,"[\""Tablet\""]",3515.6,{},218545,1,"""North America""" +2024-02-21,77161,4752,"[\""Wireless Mouse\""]",1370.9,"{\""loyalty\"": \""29%\""}",282795,1,"""South America""" +2023-11-19,77162,3127,"[\""Phone\"", \""Laptop\""]",3246.8,"{\""seasonal\"": \""16%\""}",137373,0,"""Africa""" +2023-01-29,77163,2791,"[\""Charger\""]",2291.63,"{\""loyalty\"": \""7%\""}",289727,0,"""South America""" +2023-04-22,77164,7430,"[\""Phone\"", \""Keyboard\""]",1052.39,{},259966,1,"""Asia""" +2023-07-16,77165,2701,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4015.12,{},243891,1,"""Europe""" +2024-07-01,77166,791,"[\""Phone\""]",3406.73,"{\""loyalty\"": \""25%\""}",201740,1,"""Europe""" +2023-07-21,77167,9189,"[\""Monitor\""]",2233.78,{},230031,1,"""Asia""" +2023-02-11,77168,2747,"[\""Headphones\"", \""Keyboard\""]",4170.49,{},298501,0,"""Asia""" +2024-05-05,77169,3859,"[\""Charger\""]",3161.62,"{\""seasonal\"": \""19%\""}",268740,1,"""Europe""" +2024-09-29,77170,6807,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2057.83,{},295902,0,"""Asia""" +2023-04-13,77171,2764,"[\""Wireless Mouse\"", \""Headphones\""]",2020.59,{},235261,1,"""Africa""" +2023-06-07,77172,3223,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",87.46,"{\""seasonal\"": \""7%\""}",255011,1,"""Africa""" +2023-10-16,77173,2001,"[\""Tablet\""]",1359.48,"{\""loyalty\"": \""7%\""}",199416,1,"""North America""" +2023-10-11,77174,3510,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1887.07,{},14213,1,"""Europe""" +2024-02-02,77175,5921,"[\""Monitor\"", \""Keyboard\""]",3555.24,"{\""promo\"": \""20%\""}",265454,1,"""Europe""" +2023-02-26,77176,9234,"[\""Phone\"", \""Charger\""]",2324.72,{},193758,1,"""South America""" +2024-04-11,77177,5634,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4565.54,"{\"": \""17%\""}",40613,1,"""Africa""" +2023-03-24,77178,5251,"[\""Phone\"", \""Wireless Mouse\""]",4517.32,{},165829,0,"""Asia""" +2024-11-10,77179,4815,"[\""Tablet\""]",1828.25,{},159177,1,"""North America""" +2024-07-16,77180,5631,"[\""Charger\""]",1923.78,"{\""promo\"": \""10%\""}",78940,1,"""Europe""" +2024-03-04,77181,2335,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2864.78,"{\"": \""15%\""}",228891,1,"""Asia""" +2024-06-08,77182,5334,"[\""Headphones\""]",1391.39,{},205948,0,"""South America""" +2024-06-16,77183,7205,"[\""Laptop\"", \""Monitor\""]",4273.91,"{\""loyalty\"": \""21%\""}",56132,1,"""Asia""" +2023-08-07,77184,2757,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",253.63,"{\"": \""24%\""}",181736,1,"""Asia""" +2023-04-28,77185,5298,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",531.28,{},241019,1,"""South America""" +2023-06-12,77186,4509,"[\""Headphones\"", \""Charger\""]",609.41,"{\""promo\"": \""5%\""}",125843,0,"""Africa""" +2023-05-04,77187,6816,"[\""Phone\"", \""Laptop\""]",2286.56,{},23622,1,"""North America""" +2024-11-11,77188,6316,"[\""Monitor\""]",3190.25,{},115689,1,"""North America""" +2023-03-04,77189,6652,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3645.89,{},171726,0,"""Asia""" +2024-08-07,77190,8424,"[\""Wireless Mouse\""]",4642.15,"{\""loyalty\"": \""14%\""}",240794,0,"""Africa""" +2024-02-20,77191,2306,"[\""Monitor\"", \""Charger\""]",4378.54,{},256899,1,"""South America""" +2024-12-21,77192,1478,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4911.96,{},265567,0,"""South America""" +2023-03-18,77193,5053,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",288.37,{},189094,0,"""North America""" +2024-03-04,77194,2362,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4630.79,{},283837,1,"""Asia""" +2023-02-28,77195,4362,"[\""Laptop\""]",2447.04,{},133360,0,"""Asia""" +2023-04-02,77196,3956,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",864.42,{},287554,1,"""North America""" +2023-10-28,77197,7178,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1037.38,"{\""promo\"": \""16%\""}",117162,1,"""Asia""" +2024-10-13,77198,9045,"[\""Laptop\"", \""Keyboard\""]",3017.8,"{\""promo\"": \""19%\""}",132456,1,"""Asia""" +2024-06-05,77199,2808,"[\""Charger\"", \""Headphones\""]",2991.98,"{\"": \""7%\""}",297368,0,"""Asia""" +2023-11-16,77200,2994,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",119.62,"{\"": \""5%\""}",209793,0,"""Africa""" +2023-09-22,77201,2576,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2338.58,"{\"": \""27%\""}",229892,0,"""North America""" +2023-01-13,77202,1575,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4382.85,"{\"": \""18%\""}",212793,1,"""North America""" +2024-07-25,77203,5967,"[\""Monitor\""]",1288.85,{},44517,0,"""Asia""" +2024-10-01,77204,1135,"[\""Monitor\"", \""Keyboard\""]",3096.0,"{\""seasonal\"": \""18%\""}",237244,0,"""Asia""" +2024-01-23,77205,6775,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4751.47,"{\"": \""10%\""}",67687,1,"""Europe""" +2023-08-18,77206,5350,"[\""Phone\""]",3321.45,{},238078,0,"""South America""" +2024-07-17,77207,9427,"[\""Headphones\"", \""Tablet\""]",4811.13,"{\""seasonal\"": \""21%\""}",200316,1,"""South America""" +2023-09-16,77208,1520,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1614.93,{},141734,1,"""Africa""" +2023-11-16,77209,1112,"[\""Keyboard\"", \""Tablet\""]",2243.94,"{\"": \""5%\""}",33919,0,"""Europe""" +2024-12-11,77210,872,"[\""Keyboard\"", \""Tablet\""]",1835.97,"{\""seasonal\"": \""20%\""}",130959,0,"""North America""" +2023-08-11,77211,8186,"[\""Laptop\""]",1254.12,"{\""promo\"": \""18%\""}",63897,1,"""South America""" +2024-02-23,77212,6250,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",964.88,"{\"": \""9%\""}",177992,1,"""Africa""" +2024-01-24,77213,6087,"[\""Tablet\"", \""Charger\""]",1620.27,"{\""loyalty\"": \""14%\""}",173329,1,"""Asia""" +2023-06-22,77214,9691,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2072.37,"{\""loyalty\"": \""22%\""}",203823,1,"""Africa""" +2023-12-28,77215,1817,"[\""Tablet\"", \""Monitor\""]",2975.35,"{\""loyalty\"": \""15%\""}",59984,1,"""North America""" +2024-02-05,77216,9444,"[\""Keyboard\""]",3653.03,{},163690,0,"""Africa""" +2023-01-21,77217,4077,"[\""Keyboard\""]",4867.63,{},50554,0,"""Africa""" +2024-10-20,77218,2556,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1159.64,"{\""loyalty\"": \""7%\""}",173830,0,"""South America""" +2024-05-17,77219,6829,"[\""Laptop\"", \""Wireless Mouse\""]",3104.01,{},2213,0,"""South America""" +2024-07-08,77220,2150,"[\""Monitor\""]",1996.98,{},130482,0,"""South America""" +2024-04-24,77221,8089,"[\""Monitor\"", \""Charger\""]",4947.51,{},282695,1,"""North America""" +2023-04-05,77222,9276,"[\""Monitor\""]",3205.02,"{\""promo\"": \""11%\""}",227585,0,"""Africa""" +2024-03-09,77223,4499,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",155.36,{},187182,0,"""Europe""" +2024-11-03,77224,2043,"[\""Laptop\""]",2635.26,{},223569,1,"""Europe""" +2023-04-30,77225,262,"[\""Tablet\""]",3201.12,{},108193,1,"""Europe""" +2024-07-29,77226,3122,"[\""Keyboard\""]",580.06,"{\""loyalty\"": \""25%\""}",116397,0,"""North America""" +2024-10-28,77227,369,"[\""Charger\"", \""Monitor\""]",3040.43,{},192504,0,"""Europe""" +2024-10-06,77228,6727,"[\""Charger\""]",144.73,{},269457,0,"""Africa""" +2023-11-06,77229,3874,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3714.12,"{\""seasonal\"": \""24%\""}",186579,0,"""South America""" +2023-01-24,77230,2632,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3878.83,"{\"": \""16%\""}",41752,0,"""Europe""" +2023-12-16,77231,6486,"[\""Wireless Mouse\""]",2336.53,{},147623,0,"""Africa""" +2023-02-27,77232,2096,"[\""Phone\""]",842.26,{},20293,0,"""Asia""" +2024-11-12,77233,3292,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2459.07,{},213804,0,"""North America""" +2024-04-25,77234,8932,"[\""Phone\"", \""Tablet\""]",4162.13,{},17239,0,"""Africa""" +2024-07-25,77235,6989,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2306.26,{},288971,1,"""Africa""" +2024-07-11,77236,4940,"[\""Tablet\"", \""Phone\""]",187.56,"{\""promo\"": \""14%\""}",261891,0,"""South America""" +2024-03-11,77237,7395,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3606.81,{},93433,0,"""North America""" +2023-02-20,77238,9835,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2596.02,{},285949,0,"""Africa""" +2023-03-05,77239,5479,"[\""Laptop\""]",350.4,{},140333,1,"""Africa""" +2023-09-24,77240,8287,"[\""Wireless Mouse\""]",285.21,"{\""loyalty\"": \""6%\""}",268218,1,"""Africa""" +2023-03-31,77241,2544,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1859.53,{},163416,1,"""Africa""" +2024-09-28,77242,5217,"[\""Monitor\"", \""Wireless Mouse\""]",4550.49,"{\""seasonal\"": \""7%\""}",274479,0,"""Africa""" +2023-03-28,77243,347,"[\""Tablet\""]",2217.67,{},172804,0,"""South America""" +2023-05-14,77244,1784,"[\""Laptop\""]",1243.33,"{\""loyalty\"": \""21%\""}",121828,1,"""Europe""" +2024-11-21,77245,563,"[\""Keyboard\"", \""Tablet\""]",2119.49,{},129446,0,"""Africa""" +2023-12-14,77246,6382,"[\""Charger\"", \""Wireless Mouse\""]",4740.96,"{\"": \""12%\""}",7309,1,"""South America""" +2023-02-28,77247,8869,"[\""Charger\"", \""Wireless Mouse\""]",746.62,"{\""loyalty\"": \""30%\""}",259424,0,"""Africa""" +2024-11-06,77248,5859,"[\""Keyboard\""]",3949.32,"{\""seasonal\"": \""5%\""}",174491,1,"""Asia""" +2023-11-26,77249,2493,"[\""Wireless Mouse\"", \""Phone\""]",3865.47,{},60624,0,"""Europe""" +2024-10-04,77250,7490,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",817.47,"{\"": \""28%\""}",265838,0,"""Europe""" +2024-04-20,77251,5836,"[\""Phone\"", \""Wireless Mouse\""]",2703.39,{},277194,1,"""North America""" +2024-04-24,77252,4310,"[\""Headphones\""]",937.38,{},196680,0,"""North America""" +2023-01-07,77253,8831,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3004.78,"{\""loyalty\"": \""19%\""}",132706,0,"""Europe""" +2023-02-26,77254,2552,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2369.72,{},123166,0,"""Africa""" +2024-05-18,77255,9456,"[\""Headphones\""]",1646.18,{},207480,1,"""North America""" +2023-08-11,77256,4915,"[\""Wireless Mouse\""]",650.16,{},40900,0,"""South America""" +2024-03-22,77257,4832,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",269.96,{},56392,0,"""North America""" +2023-06-09,77258,7109,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3376.58,{},83477,0,"""Asia""" +2023-03-02,77259,6368,"[\""Monitor\"", \""Tablet\""]",810.01,{},295192,0,"""Europe""" +2024-11-30,77260,8589,"[\""Keyboard\"", \""Wireless Mouse\""]",2288.26,{},191966,0,"""Africa""" +2024-09-08,77261,5652,"[\""Tablet\""]",641.68,"{\""loyalty\"": \""30%\""}",178936,0,"""South America""" +2024-12-08,77262,2575,"[\""Wireless Mouse\"", \""Keyboard\""]",4659.46,{},93949,0,"""North America""" +2024-03-31,77263,839,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",562.88,"{\""seasonal\"": \""8%\""}",90659,0,"""Africa""" +2024-11-10,77264,4550,"[\""Headphones\"", \""Charger\""]",1529.87,{},147577,0,"""North America""" +2024-03-06,77265,6755,"[\""Phone\"", \""Wireless Mouse\""]",431.0,{},261232,0,"""North America""" +2024-01-05,77266,8489,"[\""Laptop\"", \""Charger\""]",3635.37,{},102213,1,"""South America""" +2023-12-29,77267,5497,"[\""Wireless Mouse\"", \""Tablet\""]",1112.74,{},239484,0,"""Europe""" +2024-02-16,77268,6948,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4587.99,{},85744,1,"""Europe""" +2024-09-02,77269,9160,"[\""Laptop\"", \""Monitor\""]",3104.25,{},217633,0,"""South America""" +2023-03-19,77270,4625,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1500.82,{},225011,1,"""South America""" +2024-01-09,77271,8044,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2251.82,{},95630,0,"""Asia""" +2024-09-23,77272,7165,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1603.12,"{\""promo\"": \""16%\""}",20494,0,"""North America""" +2024-08-12,77273,9419,"[\""Keyboard\""]",2312.64,"{\""promo\"": \""25%\""}",62923,1,"""North America""" +2024-06-12,77274,6216,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",763.31,{},14800,0,"""North America""" +2023-11-14,77275,4507,"[\""Phone\"", \""Headphones\""]",422.66,{},261772,0,"""Asia""" +2023-05-31,77276,1792,"[\""Wireless Mouse\"", \""Keyboard\""]",2223.09,"{\""loyalty\"": \""19%\""}",252042,0,"""Europe""" +2023-11-08,77277,8412,"[\""Charger\"", \""Keyboard\""]",2800.31,{},196873,0,"""Africa""" +2024-01-19,77278,2792,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1438.3,{},94515,1,"""North America""" +2024-08-18,77279,4543,"[\""Monitor\"", \""Wireless Mouse\""]",4996.09,{},30350,1,"""Asia""" +2024-09-26,77280,6106,"[\""Phone\"", \""Laptop\""]",876.37,{},140698,1,"""South America""" +2023-02-07,77281,3173,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",293.61,{},223571,0,"""North America""" +2024-10-20,77282,2924,"[\""Phone\""]",1776.41,"{\""loyalty\"": \""28%\""}",152419,1,"""Asia""" +2024-09-27,77283,5395,"[\""Laptop\""]",1568.5,{},43558,0,"""North America""" +2024-12-05,77284,5888,"[\""Monitor\""]",300.07,"{\""loyalty\"": \""12%\""}",178649,0,"""South America""" +2023-04-02,77285,6301,"[\""Keyboard\""]",3483.82,"{\""promo\"": \""14%\""}",190103,0,"""Africa""" +2024-07-02,77286,9198,"[\""Monitor\"", \""Wireless Mouse\""]",1178.07,{},17637,0,"""Africa""" +2023-07-30,77287,5229,"[\""Phone\"", \""Tablet\""]",1950.0,{},128433,0,"""South America""" +2024-09-03,77288,4712,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1598.52,{},230637,0,"""Asia""" +2023-04-10,77289,9490,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",157.27,"{\""promo\"": \""29%\""}",287677,1,"""Africa""" +2023-09-18,77290,8073,"[\""Wireless Mouse\""]",459.7,"{\""promo\"": \""14%\""}",67354,0,"""South America""" +2023-09-22,77291,4510,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",679.63,"{\""promo\"": \""6%\""}",227418,0,"""North America""" +2024-01-28,77292,8885,"[\""Charger\"", \""Keyboard\""]",71.07,{},46144,1,"""North America""" +2023-01-28,77293,5887,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4778.33,"{\""seasonal\"": \""14%\""}",61913,0,"""Africa""" +2023-08-28,77294,6257,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3804.12,"{\""loyalty\"": \""17%\""}",269718,1,"""North America""" +2023-01-10,77295,4889,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3374.52,{},78376,0,"""Africa""" +2023-06-23,77296,6648,"[\""Keyboard\"", \""Charger\""]",1860.17,{},36043,0,"""South America""" +2023-09-10,77297,2676,"[\""Headphones\"", \""Tablet\""]",3237.9,"{\""seasonal\"": \""11%\""}",106085,0,"""Europe""" +2023-11-02,77298,3756,"[\""Keyboard\""]",4103.05,"{\"": \""19%\""}",171112,1,"""Europe""" +2023-03-29,77299,3908,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3884.21,"{\""loyalty\"": \""24%\""}",24775,0,"""Asia""" +2023-09-17,77300,9047,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4350.23,{},52425,1,"""Asia""" +2023-02-18,77301,2859,"[\""Laptop\""]",4412.05,{},75748,1,"""Europe""" +2024-06-13,77302,1418,"[\""Laptop\"", \""Phone\""]",3673.36,"{\""promo\"": \""8%\""}",227212,1,"""Africa""" +2023-06-07,77303,9715,"[\""Keyboard\"", \""Tablet\""]",2294.09,{},35238,0,"""North America""" +2023-05-20,77304,4645,"[\""Keyboard\""]",1488.64,{},74539,1,"""South America""" +2023-01-26,77305,2373,"[\""Monitor\"", \""Laptop\""]",4950.26,"{\"": \""25%\""}",296370,1,"""Asia""" +2024-07-25,77306,6038,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4360.64,{},266021,1,"""South America""" +2024-04-09,77307,9247,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3941.92,"{\"": \""24%\""}",186871,1,"""North America""" +2024-07-29,77308,9065,"[\""Phone\"", \""Laptop\""]",734.58,"{\""promo\"": \""5%\""}",282137,0,"""South America""" +2024-05-02,77309,9450,"[\""Monitor\""]",4342.99,"{\"": \""18%\""}",64917,1,"""Asia""" +2024-05-22,77310,5918,"[\""Laptop\""]",1883.5,{},162128,0,"""North America""" +2024-07-11,77311,1543,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1375.76,{},277157,0,"""Europe""" +2024-07-05,77312,7899,"[\""Phone\"", \""Charger\""]",4995.19,"{\""promo\"": \""19%\""}",221840,1,"""South America""" +2023-02-22,77313,4333,"[\""Headphones\""]",4340.63,"{\""loyalty\"": \""26%\""}",228183,0,"""Africa""" +2024-08-30,77314,9157,"[\""Tablet\""]",307.83,"{\""promo\"": \""10%\""}",183407,0,"""Europe""" +2023-01-05,77315,8379,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1991.99,{},112515,1,"""Africa""" +2024-07-15,77316,2040,"[\""Laptop\"", \""Tablet\""]",2438.28,"{\""loyalty\"": \""14%\""}",73616,0,"""Africa""" +2024-05-18,77317,9205,"[\""Wireless Mouse\""]",2414.97,{},204717,1,"""South America""" +2024-05-10,77318,5648,"[\""Keyboard\""]",1481.92,{},135078,1,"""South America""" +2024-12-24,77319,7177,"[\""Tablet\"", \""Charger\""]",376.38,{},194085,1,"""Europe""" +2023-09-17,77320,9636,"[\""Charger\""]",1341.49,{},30080,0,"""Asia""" +2024-11-12,77321,5684,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2830.48,{},146052,0,"""South America""" +2023-01-03,77322,6918,"[\""Headphones\"", \""Charger\""]",1297.56,"{\""loyalty\"": \""29%\""}",82305,0,"""North America""" +2024-04-09,77323,8649,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3426.53,"{\""loyalty\"": \""28%\""}",152190,1,"""South America""" +2023-06-13,77324,3208,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",743.95,{},21939,0,"""Asia""" +2024-07-23,77325,9462,"[\""Keyboard\""]",1668.8,"{\""loyalty\"": \""6%\""}",98679,1,"""Asia""" +2024-02-12,77326,6274,"[\""Wireless Mouse\"", \""Phone\""]",3031.46,"{\""promo\"": \""21%\""}",259110,0,"""Africa""" +2024-08-14,77327,4967,"[\""Monitor\"", \""Keyboard\""]",2706.66,"{\""seasonal\"": \""25%\""}",253163,0,"""South America""" +2024-02-29,77328,772,"[\""Tablet\"", \""Monitor\""]",995.38,"{\""promo\"": \""8%\""}",264311,0,"""Africa""" +2024-04-16,77329,6209,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3439.81,{},134037,1,"""South America""" +2024-11-02,77330,7939,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1564.42,"{\""promo\"": \""21%\""}",209577,0,"""North America""" +2023-04-21,77331,2260,"[\""Monitor\""]",1624.36,"{\"": \""16%\""}",52019,0,"""Asia""" +2024-05-28,77332,1423,"[\""Monitor\"", \""Headphones\""]",1580.5,"{\"": \""19%\""}",34954,1,"""South America""" +2024-05-04,77333,564,"[\""Charger\""]",4627.78,"{\""promo\"": \""6%\""}",15138,1,"""Africa""" +2023-04-01,77334,268,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1135.75,{},5991,0,"""Europe""" +2023-04-30,77335,712,"[\""Laptop\""]",3355.15,{},143585,0,"""Europe""" +2024-09-14,77336,5990,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1517.27,"{\""seasonal\"": \""10%\""}",88149,1,"""North America""" +2023-12-31,77337,8073,"[\""Laptop\"", \""Monitor\""]",1716.43,{},75194,1,"""North America""" +2023-02-09,77338,6617,"[\""Phone\"", \""Monitor\""]",989.78,{},66957,0,"""North America""" +2023-02-27,77339,4862,"[\""Charger\""]",1342.3,"{\""loyalty\"": \""19%\""}",153044,1,"""Europe""" +2023-02-19,77340,224,"[\""Laptop\""]",271.13,"{\""loyalty\"": \""27%\""}",177801,0,"""South America""" +2023-07-20,77341,4141,"[\""Laptop\"", \""Keyboard\""]",3026.69,{},71170,1,"""Asia""" +2024-10-12,77342,4546,"[\""Headphones\"", \""Monitor\""]",1608.07,{},178333,0,"""North America""" +2024-03-24,77343,494,"[\""Monitor\"", \""Keyboard\""]",4848.56,{},49698,1,"""Africa""" +2024-05-18,77344,460,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",141.6,{},1065,0,"""North America""" +2023-07-06,77345,9954,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3416.0,{},231584,0,"""Asia""" +2023-10-29,77346,7158,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4773.82,"{\""loyalty\"": \""25%\""}",137016,0,"""Europe""" +2023-10-07,77347,6362,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2646.67,{},266019,1,"""Europe""" +2024-11-27,77348,6476,"[\""Laptop\""]",977.07,{},224778,0,"""Africa""" +2023-03-08,77349,7478,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1817.71,"{\""promo\"": \""5%\""}",135314,1,"""Europe""" +2024-02-14,77350,474,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1047.27,"{\""promo\"": \""24%\""}",24984,0,"""South America""" +2024-11-06,77351,5670,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3962.85,{},150425,0,"""North America""" +2024-05-21,77352,206,"[\""Laptop\"", \""Tablet\""]",4380.85,"{\"": \""21%\""}",156057,0,"""Europe""" +2024-02-28,77353,8467,"[\""Wireless Mouse\""]",4408.01,{},110432,1,"""Africa""" +2024-11-06,77354,1073,"[\""Tablet\""]",2933.18,"{\""promo\"": \""7%\""}",78255,1,"""Africa""" +2023-07-09,77355,862,"[\""Keyboard\"", \""Wireless Mouse\""]",1656.21,{},88126,1,"""Asia""" +2023-07-22,77356,2519,"[\""Laptop\""]",2444.03,"{\""seasonal\"": \""7%\""}",284515,1,"""Asia""" +2024-07-30,77357,4023,"[\""Wireless Mouse\""]",2951.18,{},197047,0,"""Africa""" +2023-12-22,77358,109,"[\""Keyboard\""]",1231.66,"{\"": \""16%\""}",205633,1,"""Europe""" +2023-02-04,77359,1447,"[\""Phone\""]",4047.15,{},45605,0,"""North America""" +2023-12-29,77360,6452,"[\""Monitor\""]",3856.26,{},27963,1,"""North America""" +2024-09-10,77361,5665,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1521.01,"{\""promo\"": \""27%\""}",254607,1,"""North America""" +2023-04-16,77362,6054,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2904.47,{},215266,1,"""North America""" +2024-05-24,77363,4342,"[\""Wireless Mouse\"", \""Tablet\""]",2177.34,{},277873,0,"""North America""" +2023-10-18,77364,2471,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4794.36,{},200901,1,"""Europe""" +2023-10-26,77365,8090,"[\""Keyboard\""]",4431.0,{},106834,1,"""South America""" +2024-04-27,77366,4647,"[\""Tablet\""]",2110.3,{},139729,1,"""Africa""" +2023-05-12,77367,929,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3948.74,{},276301,0,"""Asia""" +2024-02-02,77368,2233,"[\""Phone\""]",2025.78,"{\""loyalty\"": \""14%\""}",273865,1,"""Europe""" +2023-12-29,77369,3475,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3781.11,"{\""loyalty\"": \""26%\""}",242199,1,"""Europe""" +2024-09-20,77370,4344,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2454.26,"{\""seasonal\"": \""25%\""}",267204,0,"""North America""" +2024-03-02,77371,7608,"[\""Charger\""]",3475.95,"{\""seasonal\"": \""10%\""}",151862,0,"""Asia""" +2023-12-04,77372,4977,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1843.63,{},283698,1,"""Asia""" +2023-12-16,77373,6940,"[\""Keyboard\""]",1168.97,{},11382,1,"""Africa""" +2023-12-08,77374,6181,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3747.87,"{\""loyalty\"": \""29%\""}",215296,1,"""North America""" +2023-04-08,77375,7658,"[\""Wireless Mouse\"", \""Laptop\""]",1044.49,"{\""loyalty\"": \""26%\""}",214332,0,"""Africa""" +2023-07-08,77376,1535,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3155.47,"{\""promo\"": \""11%\""}",197873,0,"""South America""" +2023-03-16,77377,3082,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3835.12,{},284182,0,"""Africa""" +2024-02-23,77378,9197,"[\""Charger\""]",4137.31,{},188334,0,"""South America""" +2023-08-22,77379,3771,"[\""Keyboard\"", \""Laptop\""]",3089.0,{},123769,1,"""North America""" +2023-01-06,77380,1631,"[\""Monitor\""]",1221.76,"{\""loyalty\"": \""26%\""}",185876,0,"""North America""" +2024-03-23,77381,1823,"[\""Tablet\"", \""Keyboard\""]",188.9,"{\"": \""17%\""}",260895,1,"""South America""" +2023-07-14,77382,7482,"[\""Laptop\""]",4859.77,"{\"": \""26%\""}",101839,0,"""North America""" +2024-10-09,77383,3716,"[\""Phone\""]",240.93,"{\""promo\"": \""20%\""}",4330,0,"""South America""" +2024-12-25,77384,1651,"[\""Headphones\""]",3903.69,"{\""promo\"": \""21%\""}",108382,0,"""South America""" +2024-02-01,77385,6307,"[\""Phone\"", \""Tablet\""]",1514.04,{},166224,0,"""Africa""" +2023-10-15,77386,6757,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3442.6,"{\""loyalty\"": \""24%\""}",201105,1,"""Asia""" +2024-05-15,77387,7011,"[\""Keyboard\""]",4894.91,{},149115,0,"""Africa""" +2024-08-05,77388,384,"[\""Wireless Mouse\"", \""Charger\""]",4653.93,"{\""seasonal\"": \""26%\""}",15024,0,"""Europe""" +2024-11-08,77389,8849,"[\""Wireless Mouse\"", \""Monitor\""]",2250.78,{},135043,1,"""Europe""" +2024-07-13,77390,254,"[\""Laptop\""]",646.55,"{\""promo\"": \""5%\""}",138308,0,"""Africa""" +2023-04-11,77391,7093,"[\""Wireless Mouse\""]",4497.7,"{\""seasonal\"": \""6%\""}",297639,1,"""South America""" +2023-12-27,77392,8786,"[\""Phone\""]",3630.38,{},140875,1,"""South America""" +2023-01-17,77393,7434,"[\""Wireless Mouse\"", \""Keyboard\""]",4129.2,"{\""seasonal\"": \""28%\""}",65471,1,"""North America""" +2023-02-06,77394,9208,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1940.72,"{\""loyalty\"": \""7%\""}",61492,0,"""South America""" +2024-01-23,77395,6066,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4969.92,{},243536,1,"""Africa""" +2023-08-10,77396,8991,"[\""Tablet\"", \""Monitor\""]",67.01,"{\""promo\"": \""21%\""}",134590,1,"""South America""" +2024-08-09,77397,6116,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",168.24,"{\""loyalty\"": \""6%\""}",12489,0,"""Europe""" +2023-12-27,77398,3468,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4677.67,{},293040,0,"""North America""" +2024-10-19,77399,5277,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",612.66,"{\"": \""18%\""}",272164,0,"""Asia""" +2024-03-31,77400,5608,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1610.68,{},48148,0,"""Africa""" +2023-07-10,77401,5089,"[\""Monitor\""]",3470.39,{},272869,0,"""South America""" +2023-04-13,77402,8450,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4434.05,"{\"": \""27%\""}",99001,0,"""Asia""" +2024-02-24,77403,4180,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3723.02,{},160425,0,"""Asia""" +2024-11-28,77404,7800,"[\""Monitor\"", \""Laptop\""]",3700.65,"{\""seasonal\"": \""26%\""}",170391,0,"""South America""" +2024-07-16,77405,3805,"[\""Laptop\""]",847.66,{},242302,0,"""Europe""" +2023-05-19,77406,2259,"[\""Laptop\"", \""Keyboard\""]",84.0,"{\""seasonal\"": \""13%\""}",286673,0,"""Africa""" +2023-09-16,77407,1773,"[\""Tablet\""]",4772.89,"{\"": \""10%\""}",279721,1,"""North America""" +2024-04-20,77408,1309,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",826.04,{},276266,1,"""Asia""" +2023-06-02,77409,1210,"[\""Tablet\"", \""Monitor\""]",347.71,"{\""seasonal\"": \""5%\""}",108870,0,"""Asia""" +2023-11-30,77410,1450,"[\""Wireless Mouse\"", \""Keyboard\""]",411.19,"{\"": \""13%\""}",19908,0,"""Asia""" +2023-08-29,77411,6920,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2420.71,"{\""seasonal\"": \""20%\""}",196550,0,"""Europe""" +2023-12-25,77412,6919,"[\""Laptop\""]",3105.2,{},216636,0,"""Africa""" +2023-11-13,77413,8267,"[\""Wireless Mouse\""]",1454.24,{},234442,1,"""South America""" +2023-11-02,77414,8958,"[\""Laptop\""]",4883.79,{},119504,0,"""Europe""" +2024-10-25,77415,4609,"[\""Phone\""]",4074.9,"{\"": \""18%\""}",25362,0,"""North America""" +2023-01-08,77416,8184,"[\""Headphones\""]",1557.07,{},65455,1,"""South America""" +2023-02-19,77417,3606,"[\""Phone\""]",2322.9,"{\""promo\"": \""6%\""}",182786,0,"""South America""" +2024-04-30,77418,7493,"[\""Phone\"", \""Headphones\""]",2190.35,{},280729,1,"""North America""" +2024-04-04,77419,9486,"[\""Charger\"", \""Monitor\""]",3843.39,"{\""promo\"": \""24%\""}",283472,1,"""Europe""" +2023-11-03,77420,3428,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",953.28,"{\""promo\"": \""8%\""}",47638,0,"""Africa""" +2023-04-02,77421,3416,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2313.91,{},17234,0,"""Europe""" +2023-10-03,77422,8979,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",527.39,"{\"": \""26%\""}",172478,1,"""South America""" +2024-07-19,77423,4787,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4369.16,"{\""loyalty\"": \""24%\""}",255718,0,"""North America""" +2023-07-19,77424,2096,"[\""Charger\""]",2327.73,{},150021,0,"""Europe""" +2024-08-25,77425,6259,"[\""Phone\""]",1498.38,"{\"": \""24%\""}",197650,0,"""Asia""" +2023-07-02,77426,5159,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3527.06,{},87533,1,"""Africa""" +2024-07-11,77427,4216,"[\""Wireless Mouse\""]",4837.94,"{\""seasonal\"": \""8%\""}",20235,0,"""Africa""" +2023-06-15,77428,1481,"[\""Tablet\"", \""Wireless Mouse\""]",1141.16,{},175693,0,"""Africa""" +2024-12-20,77429,4585,"[\""Charger\"", \""Keyboard\""]",1681.22,{},201285,1,"""Europe""" +2023-10-11,77430,7954,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",261.42,{},75175,1,"""Africa""" +2023-11-19,77431,9633,"[\""Wireless Mouse\""]",3986.0,"{\"": \""29%\""}",1220,0,"""Africa""" +2024-10-12,77432,3425,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2066.25,"{\"": \""11%\""}",242382,0,"""Europe""" +2024-03-05,77433,1798,"[\""Wireless Mouse\"", \""Phone\""]",50.66,"{\""promo\"": \""12%\""}",233591,1,"""Europe""" +2024-03-30,77434,922,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4852.38,{},130937,1,"""Asia""" +2024-11-23,77435,2975,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4741.11,"{\"": \""25%\""}",18167,1,"""Africa""" +2024-02-27,77436,9387,"[\""Laptop\""]",1055.52,{},206370,0,"""Asia""" +2023-07-18,77437,9767,"[\""Charger\""]",3657.07,"{\"": \""30%\""}",148975,0,"""Africa""" +2024-09-15,77438,7072,"[\""Laptop\""]",1688.22,"{\""seasonal\"": \""22%\""}",225014,1,"""Africa""" +2023-10-05,77439,9490,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1397.99,"{\"": \""8%\""}",57019,0,"""Asia""" +2024-04-23,77440,6956,"[\""Wireless Mouse\"", \""Tablet\""]",2588.4,"{\""promo\"": \""6%\""}",282417,1,"""Europe""" +2024-10-14,77441,6509,"[\""Charger\""]",2641.25,{},77514,0,"""Europe""" +2024-11-27,77442,8954,"[\""Wireless Mouse\""]",4183.09,"{\"": \""30%\""}",132787,1,"""North America""" +2023-09-25,77443,4165,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3457.35,"{\""seasonal\"": \""8%\""}",296294,0,"""Africa""" +2024-01-02,77444,3036,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2013.56,"{\""promo\"": \""5%\""}",201236,0,"""Asia""" +2023-06-24,77445,9765,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1472.91,"{\""loyalty\"": \""10%\""}",152149,0,"""South America""" +2024-05-01,77446,3936,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4422.94,{},200473,1,"""Africa""" +2023-02-23,77447,8309,"[\""Wireless Mouse\""]",4531.35,{},188607,1,"""North America""" +2024-05-17,77448,5595,"[\""Monitor\""]",3876.74,"{\"": \""5%\""}",210719,1,"""South America""" +2023-03-17,77449,3669,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",914.27,{},78294,1,"""Europe""" +2023-07-09,77450,4503,"[\""Phone\"", \""Keyboard\""]",3872.43,"{\""promo\"": \""20%\""}",71539,1,"""Europe""" +2024-07-29,77451,7000,"[\""Monitor\"", \""Phone\""]",4490.47,"{\"": \""9%\""}",127712,0,"""South America""" +2023-12-14,77452,120,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1149.39,{},174444,1,"""North America""" +2024-10-11,77453,3165,"[\""Phone\""]",1015.49,{},190298,1,"""North America""" +2024-02-18,77454,4576,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3504.68,{},159683,0,"""Africa""" +2023-08-18,77455,3711,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3336.01,{},133396,0,"""Asia""" +2023-12-01,77456,3504,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2177.89,"{\"": \""5%\""}",137482,1,"""North America""" +2023-10-19,77457,7192,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2889.1,"{\""promo\"": \""24%\""}",71394,1,"""North America""" +2024-11-12,77458,6604,"[\""Phone\""]",3199.76,"{\""loyalty\"": \""27%\""}",13510,1,"""Asia""" +2023-09-26,77459,3895,"[\""Headphones\""]",806.72,{},181070,0,"""North America""" +2023-12-28,77460,2293,"[\""Monitor\""]",1362.65,{},238733,1,"""South America""" +2024-09-21,77461,9704,"[\""Monitor\""]",2325.65,"{\""promo\"": \""22%\""}",262692,1,"""South America""" +2023-09-21,77462,5279,"[\""Monitor\""]",2740.98,{},81870,1,"""Africa""" +2023-08-10,77463,9335,"[\""Monitor\""]",4105.65,{},291892,0,"""Africa""" +2024-02-20,77464,3695,"[\""Laptop\""]",949.18,{},218750,1,"""South America""" +2024-07-02,77465,7340,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",679.33,"{\""promo\"": \""30%\""}",150031,1,"""Asia""" +2023-07-06,77466,6034,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",964.4,"{\""promo\"": \""20%\""}",224318,1,"""Africa""" +2023-07-29,77467,6098,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4662.82,"{\""promo\"": \""15%\""}",114850,1,"""South America""" +2024-04-20,77468,1426,"[\""Wireless Mouse\""]",106.86,{},76784,1,"""Africa""" +2023-02-22,77469,3519,"[\""Keyboard\""]",2100.41,"{\""promo\"": \""10%\""}",287632,1,"""Asia""" +2023-05-22,77470,7005,"[\""Laptop\"", \""Keyboard\""]",4239.55,"{\""loyalty\"": \""5%\""}",228873,1,"""Asia""" +2024-06-08,77471,2568,"[\""Wireless Mouse\"", \""Phone\""]",3446.18,{},93043,1,"""Africa""" +2024-01-05,77472,2228,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2403.22,"{\""seasonal\"": \""30%\""}",125117,0,"""Africa""" +2024-12-07,77473,3290,"[\""Monitor\"", \""Tablet\""]",4652.33,"{\"": \""11%\""}",157241,1,"""Europe""" +2023-05-17,77474,8572,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4654.43,"{\"": \""18%\""}",132383,0,"""Asia""" +2023-10-20,77475,2196,"[\""Tablet\""]",4772.69,{},149692,1,"""Asia""" +2023-10-04,77476,3263,"[\""Charger\""]",1856.04,"{\"": \""19%\""}",1858,1,"""North America""" +2023-11-13,77477,1582,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2653.6,"{\""promo\"": \""15%\""}",232093,0,"""South America""" +2023-10-14,77478,414,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",739.81,"{\"": \""11%\""}",106722,1,"""Africa""" +2023-11-06,77479,4935,"[\""Wireless Mouse\"", \""Keyboard\""]",3718.83,{},243887,0,"""South America""" +2023-10-03,77480,1859,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1187.76,"{\""loyalty\"": \""16%\""}",280702,1,"""Asia""" +2024-05-20,77481,3466,"[\""Monitor\""]",1168.24,"{\""seasonal\"": \""7%\""}",150385,0,"""North America""" +2023-10-21,77482,483,"[\""Wireless Mouse\"", \""Laptop\""]",2759.77,{},22617,0,"""Africa""" +2024-04-15,77483,3540,"[\""Charger\"", \""Keyboard\""]",1308.97,"{\""seasonal\"": \""29%\""}",163182,1,"""Asia""" +2024-06-28,77484,5319,"[\""Laptop\""]",712.57,{},163140,0,"""Africa""" +2023-11-25,77485,8514,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2002.33,{},56218,0,"""North America""" +2024-01-30,77486,1303,"[\""Headphones\""]",4439.98,"{\""loyalty\"": \""28%\""}",224306,0,"""Asia""" +2024-12-27,77487,4908,"[\""Wireless Mouse\"", \""Charger\""]",1136.7,{},28782,1,"""Africa""" +2023-11-10,77488,7180,"[\""Wireless Mouse\"", \""Monitor\""]",2653.76,"{\""seasonal\"": \""17%\""}",65965,1,"""North America""" +2023-08-26,77489,1665,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1254.03,{},116675,1,"""Asia""" +2023-04-07,77490,9014,"[\""Phone\""]",917.08,{},269194,0,"""North America""" +2023-08-13,77491,8747,"[\""Phone\"", \""Wireless Mouse\""]",2281.01,{},236071,0,"""North America""" +2023-03-28,77492,4069,"[\""Laptop\"", \""Phone\""]",3808.71,{},226325,0,"""Africa""" +2024-08-04,77493,8611,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3280.82,{},277727,1,"""North America""" +2024-07-24,77494,6923,"[\""Phone\"", \""Wireless Mouse\""]",1984.58,"{\"": \""5%\""}",73782,1,"""Asia""" +2024-05-28,77495,7594,"[\""Phone\"", \""Monitor\""]",3964.21,{},211341,0,"""Europe""" +2024-04-26,77496,1798,"[\""Headphones\""]",2387.09,"{\""loyalty\"": \""15%\""}",178891,0,"""South America""" +2024-02-06,77497,125,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4001.69,{},208487,1,"""South America""" +2023-02-24,77498,1425,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2895.83,"{\""loyalty\"": \""21%\""}",282305,1,"""Europe""" +2023-10-26,77499,5326,"[\""Keyboard\""]",1188.68,"{\""promo\"": \""12%\""}",230237,1,"""Europe""" +2024-08-19,77500,7506,"[\""Tablet\""]",4410.77,{},254161,0,"""North America""" +2023-10-09,77501,9213,"[\""Charger\"", \""Monitor\"", \""Phone\""]",145.93,"{\"": \""25%\""}",218772,1,"""Europe""" +2023-12-08,77502,1707,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1729.15,"{\""promo\"": \""15%\""}",70963,1,"""North America""" +2024-07-09,77503,5849,"[\""Charger\""]",3665.35,"{\""loyalty\"": \""23%\""}",133981,1,"""Africa""" +2023-08-26,77504,4388,"[\""Headphones\""]",111.17,{},19663,0,"""Africa""" +2023-11-19,77505,2076,"[\""Laptop\"", \""Keyboard\""]",645.73,{},174899,0,"""North America""" +2024-03-02,77506,3125,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1835.98,"{\""seasonal\"": \""7%\""}",2551,1,"""Europe""" +2024-08-27,77507,2753,"[\""Headphones\""]",2819.46,{},46011,0,"""Africa""" +2023-11-12,77508,8744,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",267.81,"{\""promo\"": \""12%\""}",115984,0,"""Asia""" +2024-10-09,77509,6160,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1335.46,{},253221,0,"""North America""" +2023-09-16,77510,5846,"[\""Charger\"", \""Keyboard\""]",2437.09,"{\""promo\"": \""26%\""}",255668,0,"""South America""" +2024-01-09,77511,7798,"[\""Laptop\"", \""Monitor\""]",4434.93,{},169360,0,"""Africa""" +2023-04-23,77512,8317,"[\""Phone\""]",2525.14,{},221396,1,"""North America""" +2024-08-30,77513,7372,"[\""Charger\""]",2446.15,"{\""seasonal\"": \""12%\""}",121962,0,"""North America""" +2023-07-18,77514,1290,"[\""Phone\"", \""Laptop\""]",1625.99,{},11866,1,"""Asia""" +2024-05-21,77515,6909,"[\""Headphones\"", \""Monitor\""]",462.6,"{\""promo\"": \""21%\""}",6677,0,"""Africa""" +2024-06-26,77516,4530,"[\""Tablet\""]",4184.61,"{\""promo\"": \""14%\""}",211290,1,"""South America""" +2024-05-04,77517,9791,"[\""Phone\""]",1211.19,{},45145,1,"""North America""" +2023-03-28,77518,1597,"[\""Headphones\""]",2238.83,"{\""promo\"": \""16%\""}",135951,1,"""Asia""" +2023-01-01,77519,5039,"[\""Phone\""]",2730.09,{},262508,1,"""North America""" +2023-06-29,77520,597,"[\""Laptop\""]",1695.93,{},206105,1,"""North America""" +2024-03-21,77521,1645,"[\""Keyboard\"", \""Wireless Mouse\""]",1154.28,{},218567,1,"""Asia""" +2024-02-27,77522,7205,"[\""Monitor\"", \""Charger\""]",886.79,"{\""seasonal\"": \""29%\""}",105136,0,"""North America""" +2024-08-11,77523,8280,"[\""Wireless Mouse\""]",3251.11,"{\"": \""27%\""}",146267,1,"""North America""" +2023-07-26,77524,2812,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2156.27,{},19374,0,"""Asia""" +2023-01-31,77525,2145,"[\""Laptop\""]",2991.09,{},154663,0,"""South America""" +2024-05-06,77526,8343,"[\""Charger\"", \""Laptop\""]",1070.63,"{\""loyalty\"": \""30%\""}",13118,1,"""Europe""" +2023-08-06,77527,8388,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3508.47,{},234710,0,"""Asia""" +2023-08-28,77528,5532,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1695.96,{},173069,1,"""Europe""" +2023-02-21,77529,7817,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",233.1,{},65401,1,"""Asia""" +2024-09-05,77530,9009,"[\""Wireless Mouse\""]",3015.02,"{\""loyalty\"": \""19%\""}",20683,0,"""North America""" +2024-01-08,77531,1768,"[\""Wireless Mouse\""]",3583.36,{},140340,1,"""South America""" +2023-06-08,77532,2512,"[\""Headphones\""]",3143.08,"{\""promo\"": \""23%\""}",123700,0,"""North America""" +2024-03-15,77533,8673,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1781.49,{},232482,0,"""Asia""" +2024-08-19,77534,9908,"[\""Tablet\""]",4628.96,"{\"": \""6%\""}",128423,1,"""South America""" +2024-12-01,77535,764,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4197.97,"{\""loyalty\"": \""14%\""}",61631,1,"""North America""" +2024-02-29,77536,7674,"[\""Monitor\"", \""Wireless Mouse\""]",281.88,"{\""loyalty\"": \""25%\""}",107886,0,"""North America""" +2023-04-06,77537,1044,"[\""Monitor\""]",4158.17,"{\""loyalty\"": \""23%\""}",122048,0,"""Africa""" +2023-05-13,77538,5943,"[\""Charger\""]",2957.14,{},201846,0,"""Europe""" +2024-06-06,77539,2892,"[\""Keyboard\"", \""Phone\""]",2977.7,"{\"": \""20%\""}",249997,0,"""Africa""" +2023-09-15,77540,147,"[\""Monitor\""]",3870.41,"{\"": \""11%\""}",181534,1,"""North America""" +2024-10-08,77541,174,"[\""Monitor\"", \""Wireless Mouse\""]",3375.5,{},74229,0,"""South America""" +2023-11-03,77542,1632,"[\""Laptop\"", \""Wireless Mouse\""]",3955.36,"{\""loyalty\"": \""28%\""}",70267,0,"""North America""" +2024-01-03,77543,2015,"[\""Tablet\"", \""Headphones\""]",4510.74,{},183083,1,"""Europe""" +2024-02-19,77544,4980,"[\""Keyboard\""]",4665.78,"{\""seasonal\"": \""5%\""}",19529,0,"""Africa""" +2023-01-10,77545,1167,"[\""Keyboard\""]",969.83,{},258013,0,"""Asia""" +2023-07-29,77546,3812,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",146.1,{},64137,0,"""Europe""" +2023-02-12,77547,8499,"[\""Laptop\"", \""Phone\""]",3921.5,"{\"": \""17%\""}",173557,1,"""Asia""" +2023-10-30,77548,680,"[\""Headphones\""]",2195.99,"{\""promo\"": \""26%\""}",67912,0,"""South America""" +2024-08-27,77549,3616,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4985.51,"{\"": \""30%\""}",115621,1,"""Europe""" +2023-03-18,77550,7653,"[\""Tablet\"", \""Monitor\""]",1722.15,"{\""loyalty\"": \""13%\""}",193287,1,"""Europe""" +2023-04-01,77551,4306,"[\""Phone\"", \""Laptop\""]",4578.96,{},153056,0,"""Europe""" +2023-12-19,77552,8798,"[\""Laptop\"", \""Monitor\""]",1334.87,{},60014,0,"""Europe""" +2024-04-06,77553,1635,"[\""Charger\""]",815.96,"{\""seasonal\"": \""7%\""}",28153,1,"""Europe""" +2023-12-17,77554,5127,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1017.32,"{\""seasonal\"": \""14%\""}",170668,1,"""Europe""" +2024-10-29,77555,1866,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4420.83,{},134773,1,"""North America""" +2023-12-20,77556,1280,"[\""Headphones\""]",2464.53,"{\""loyalty\"": \""22%\""}",49413,0,"""North America""" +2023-07-31,77557,6723,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4666.15,{},63711,0,"""South America""" +2023-08-11,77558,166,"[\""Charger\"", \""Phone\""]",1241.17,"{\""loyalty\"": \""25%\""}",64919,1,"""Europe""" +2023-06-18,77559,6156,"[\""Wireless Mouse\""]",4550.02,"{\""loyalty\"": \""21%\""}",210520,1,"""North America""" +2023-01-03,77560,2914,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2923.69,{},75338,0,"""Europe""" +2023-03-02,77561,4940,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3748.39,{},86825,0,"""North America""" +2024-09-17,77562,1964,"[\""Charger\""]",753.35,"{\""promo\"": \""12%\""}",209935,1,"""South America""" +2023-11-09,77563,1649,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1082.93,{},233790,0,"""South America""" +2023-08-06,77564,8274,"[\""Phone\"", \""Headphones\""]",4647.06,{},53333,1,"""North America""" +2024-12-14,77565,2806,"[\""Charger\"", \""Wireless Mouse\""]",3966.44,"{\""seasonal\"": \""24%\""}",172090,0,"""Africa""" +2024-06-23,77566,7260,"[\""Headphones\""]",1678.72,"{\""seasonal\"": \""12%\""}",132184,1,"""South America""" +2023-09-27,77567,357,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3168.73,{},106840,1,"""Europe""" +2024-05-16,77568,4269,"[\""Tablet\""]",3837.12,"{\""promo\"": \""7%\""}",247143,0,"""Europe""" +2023-03-14,77569,1109,"[\""Keyboard\""]",3667.2,"{\""promo\"": \""8%\""}",154621,0,"""Asia""" +2024-10-16,77570,587,"[\""Wireless Mouse\""]",1094.01,{},95563,0,"""Africa""" +2024-04-16,77571,6676,"[\""Headphones\"", \""Phone\""]",2749.77,{},16993,1,"""Asia""" +2023-06-23,77572,3362,"[\""Wireless Mouse\"", \""Charger\""]",4806.7,"{\"": \""11%\""}",227819,1,"""Africa""" +2023-06-07,77573,1033,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3402.07,"{\"": \""6%\""}",20309,0,"""Asia""" +2023-05-29,77574,7676,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3409.7,"{\""seasonal\"": \""15%\""}",245235,0,"""Europe""" +2023-06-11,77575,7870,"[\""Keyboard\"", \""Monitor\""]",539.26,"{\""seasonal\"": \""11%\""}",125273,1,"""North America""" +2023-11-07,77576,1261,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2794.22,{},214346,0,"""Asia""" +2023-06-09,77577,2872,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4903.04,{},189136,0,"""Europe""" +2023-10-27,77578,9028,"[\""Monitor\""]",341.25,"{\"": \""22%\""}",62287,1,"""North America""" +2023-04-15,77579,5977,"[\""Keyboard\""]",3732.46,"{\""seasonal\"": \""13%\""}",218146,0,"""South America""" +2023-09-10,77580,9027,"[\""Tablet\"", \""Monitor\""]",4405.72,"{\""seasonal\"": \""26%\""}",35910,1,"""Asia""" +2023-02-24,77581,1937,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1573.85,"{\""promo\"": \""26%\""}",73426,1,"""Europe""" +2024-12-31,77582,8363,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4838.17,{},139362,1,"""Africa""" +2023-08-25,77583,8026,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1283.39,"{\""seasonal\"": \""9%\""}",294349,1,"""North America""" +2024-10-15,77584,9879,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3174.66,{},256148,1,"""Asia""" +2023-06-24,77585,2343,"[\""Laptop\""]",3967.54,{},143195,0,"""South America""" +2024-05-02,77586,673,"[\""Phone\"", \""Tablet\""]",497.84,{},31007,1,"""Africa""" +2024-05-20,77587,5991,"[\""Laptop\"", \""Wireless Mouse\""]",2632.47,{},38130,1,"""Africa""" +2024-10-26,77588,9336,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3454.23,{},25392,0,"""North America""" +2023-03-23,77589,160,"[\""Charger\"", \""Laptop\""]",4028.87,{},259453,1,"""Asia""" +2023-05-05,77590,2836,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2077.07,{},189011,1,"""South America""" +2024-12-09,77591,3899,"[\""Tablet\""]",2316.09,"{\""promo\"": \""26%\""}",271498,0,"""Europe""" +2024-10-29,77592,2800,"[\""Tablet\""]",1989.9,{},45542,1,"""Asia""" +2023-03-10,77593,4129,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3087.88,"{\""seasonal\"": \""19%\""}",255335,0,"""South America""" +2023-06-12,77594,8927,"[\""Wireless Mouse\""]",2024.47,"{\"": \""17%\""}",169377,0,"""Africa""" +2023-04-25,77595,914,"[\""Phone\""]",3807.32,"{\"": \""9%\""}",77063,0,"""Africa""" +2023-07-23,77596,4175,"[\""Monitor\""]",3197.56,{},21022,1,"""Asia""" +2023-05-15,77597,1319,"[\""Monitor\""]",2647.16,"{\"": \""21%\""}",250588,1,"""South America""" +2024-04-17,77598,9303,"[\""Monitor\"", \""Charger\""]",2983.51,"{\"": \""17%\""}",297135,1,"""North America""" +2024-02-10,77599,7105,"[\""Wireless Mouse\"", \""Tablet\""]",661.42,{},167937,0,"""Europe""" +2023-02-26,77600,7289,"[\""Keyboard\"", \""Charger\""]",1884.47,{},160990,1,"""Europe""" +2024-12-14,77601,5357,"[\""Charger\""]",1806.79,{},253185,1,"""Africa""" +2023-09-13,77602,934,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2801.03,{},293350,1,"""North America""" +2023-07-14,77603,4628,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1564.12,{},97121,1,"""Asia""" +2023-07-20,77604,5353,"[\""Charger\"", \""Wireless Mouse\""]",3980.66,"{\""seasonal\"": \""29%\""}",96682,1,"""Asia""" +2024-03-16,77605,8103,"[\""Laptop\"", \""Wireless Mouse\""]",4343.42,{},7243,0,"""South America""" +2023-10-31,77606,1918,"[\""Phone\"", \""Charger\""]",674.79,{},39353,0,"""Africa""" +2024-06-26,77607,3472,"[\""Charger\""]",2853.94,{},46788,1,"""South America""" +2024-09-23,77608,2715,"[\""Laptop\"", \""Headphones\""]",2758.0,{},62880,1,"""Asia""" +2023-02-14,77609,3691,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3020.15,"{\""seasonal\"": \""21%\""}",45151,0,"""Asia""" +2024-01-04,77610,283,"[\""Laptop\""]",2385.13,"{\"": \""15%\""}",238058,0,"""South America""" +2023-08-24,77611,3789,"[\""Monitor\"", \""Phone\""]",4075.18,{},186264,1,"""Africa""" +2024-05-24,77612,2013,"[\""Wireless Mouse\""]",3606.89,{},4448,1,"""Africa""" +2024-03-25,77613,4201,"[\""Wireless Mouse\""]",3107.15,"{\""promo\"": \""17%\""}",155853,0,"""Asia""" +2024-05-06,77614,5813,"[\""Charger\"", \""Laptop\""]",1876.12,{},67478,0,"""North America""" +2024-07-11,77615,4029,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",551.01,"{\""seasonal\"": \""10%\""}",158220,0,"""North America""" +2023-10-05,77616,6621,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",115.05,{},153111,1,"""Africa""" +2024-08-28,77617,1151,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",730.94,{},214710,0,"""Asia""" +2023-05-07,77618,3400,"[\""Laptop\"", \""Monitor\""]",3646.86,"{\""loyalty\"": \""14%\""}",244989,1,"""North America""" +2023-12-09,77619,3556,"[\""Phone\""]",1405.88,"{\""seasonal\"": \""6%\""}",291482,1,"""Africa""" +2024-09-17,77620,5542,"[\""Tablet\""]",4361.35,{},175214,1,"""South America""" +2024-02-12,77621,6400,"[\""Phone\"", \""Headphones\""]",1869.86,{},275652,0,"""Asia""" +2024-03-21,77622,6635,"[\""Tablet\"", \""Wireless Mouse\""]",2870.88,{},216136,0,"""North America""" +2024-01-24,77623,6924,"[\""Keyboard\""]",2174.77,{},19659,0,"""Asia""" +2023-04-22,77624,2001,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1056.27,{},58466,1,"""Asia""" +2023-12-10,77625,2373,"[\""Charger\"", \""Headphones\""]",121.38,{},138288,1,"""North America""" +2024-07-03,77626,2767,"[\""Tablet\""]",4536.5,{},187183,1,"""Africa""" +2023-05-04,77627,3262,"[\""Phone\"", \""Headphones\"", \""Charger\""]",332.78,"{\""seasonal\"": \""9%\""}",113632,0,"""North America""" +2023-09-11,77628,9027,"[\""Keyboard\""]",3782.36,"{\""promo\"": \""27%\""}",247152,0,"""North America""" +2024-10-05,77629,7941,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",383.23,"{\""loyalty\"": \""17%\""}",129024,0,"""South America""" +2024-04-19,77630,5002,"[\""Laptop\"", \""Tablet\""]",2430.61,"{\""loyalty\"": \""5%\""}",74731,1,"""Asia""" +2024-07-23,77631,8176,"[\""Headphones\""]",1511.46,"{\""promo\"": \""16%\""}",31412,1,"""Europe""" +2024-10-03,77632,8424,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1443.71,"{\""loyalty\"": \""19%\""}",19920,0,"""Asia""" +2023-03-16,77633,7689,"[\""Phone\""]",3642.61,"{\""seasonal\"": \""28%\""}",67746,0,"""Africa""" +2023-03-14,77634,1346,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",433.76,"{\""seasonal\"": \""20%\""}",47042,0,"""Europe""" +2024-05-11,77635,7429,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2065.51,"{\""seasonal\"": \""11%\""}",158788,1,"""South America""" +2023-09-20,77636,9645,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2012.99,{},16198,0,"""South America""" +2024-09-06,77637,7594,"[\""Wireless Mouse\"", \""Keyboard\""]",4030.39,"{\""seasonal\"": \""5%\""}",162183,0,"""South America""" +2024-06-17,77638,9586,"[\""Phone\"", \""Headphones\""]",4784.08,{},44146,1,"""Asia""" +2023-01-02,77639,1831,"[\""Tablet\"", \""Laptop\""]",3439.96,{},3734,0,"""Europe""" +2023-08-24,77640,9154,"[\""Monitor\""]",4579.77,"{\""promo\"": \""15%\""}",34070,0,"""Europe""" +2023-06-19,77641,6975,"[\""Tablet\""]",3676.67,{},125073,0,"""South America""" +2024-08-01,77642,9249,"[\""Tablet\"", \""Monitor\""]",4665.74,{},45549,1,"""Africa""" +2024-04-25,77643,7362,"[\""Phone\""]",2819.13,"{\""loyalty\"": \""14%\""}",116513,1,"""Africa""" +2024-05-02,77644,2321,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4867.55,{},48572,1,"""North America""" +2023-10-08,77645,5762,"[\""Monitor\""]",4863.62,"{\""loyalty\"": \""30%\""}",62875,0,"""Africa""" +2023-12-07,77646,796,"[\""Tablet\"", \""Monitor\""]",963.36,{},129878,1,"""Africa""" +2024-09-10,77647,9090,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3840.06,{},121502,1,"""Africa""" +2023-12-06,77648,8320,"[\""Charger\"", \""Keyboard\""]",3848.31,{},129463,1,"""Africa""" +2024-10-18,77649,4362,"[\""Wireless Mouse\""]",599.9,"{\""promo\"": \""21%\""}",191424,1,"""Africa""" +2023-07-08,77650,4087,"[\""Charger\""]",947.74,{},174998,1,"""Europe""" +2023-10-14,77651,2890,"[\""Phone\"", \""Wireless Mouse\""]",911.0,"{\"": \""26%\""}",260991,0,"""Europe""" +2024-05-29,77652,8743,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",410.85,"{\""seasonal\"": \""16%\""}",107661,1,"""Asia""" +2023-03-13,77653,9606,"[\""Monitor\"", \""Laptop\""]",2490.27,{},293216,1,"""Europe""" +2024-09-01,77654,3783,"[\""Laptop\"", \""Keyboard\""]",4155.58,{},97073,0,"""Europe""" +2024-12-21,77655,3396,"[\""Keyboard\"", \""Wireless Mouse\""]",426.69,"{\""loyalty\"": \""17%\""}",269882,0,"""North America""" +2023-03-19,77656,2450,"[\""Wireless Mouse\"", \""Charger\""]",4016.12,"{\""loyalty\"": \""14%\""}",248141,1,"""Africa""" +2023-04-15,77657,344,"[\""Headphones\""]",3492.17,{},1121,1,"""Africa""" +2024-11-20,77658,2973,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",667.45,{},178147,1,"""North America""" +2024-09-26,77659,6598,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3357.84,{},247478,1,"""North America""" +2023-08-31,77660,143,"[\""Phone\"", \""Tablet\""]",2742.76,{},74996,1,"""Africa""" +2024-09-23,77661,8997,"[\""Wireless Mouse\"", \""Headphones\""]",297.3,{},286053,0,"""Asia""" +2024-02-04,77662,630,"[\""Tablet\"", \""Laptop\""]",3727.96,"{\""seasonal\"": \""30%\""}",218451,0,"""Africa""" +2023-09-19,77663,8936,"[\""Laptop\"", \""Monitor\""]",733.12,{},128956,0,"""South America""" +2024-07-17,77664,1392,"[\""Laptop\"", \""Headphones\""]",1136.72,{},45812,1,"""North America""" +2023-12-27,77665,9501,"[\""Phone\""]",1465.08,{},41654,0,"""South America""" +2023-02-03,77666,2332,"[\""Tablet\""]",3566.46,{},22126,1,"""Europe""" +2023-09-08,77667,6417,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1446.51,{},182278,1,"""South America""" +2023-09-21,77668,6724,"[\""Keyboard\"", \""Charger\""]",794.59,{},151380,0,"""Asia""" +2024-02-09,77669,2455,"[\""Charger\"", \""Wireless Mouse\""]",2378.95,"{\"": \""11%\""}",35440,1,"""South America""" +2024-05-22,77670,8387,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3000.99,{},69565,1,"""Asia""" +2024-10-19,77671,3818,"[\""Phone\""]",3114.8,{},65190,0,"""North America""" +2024-01-09,77672,9236,"[\""Laptop\""]",1844.44,{},228656,1,"""South America""" +2023-05-28,77673,6825,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",234.75,{},201566,0,"""North America""" +2023-02-20,77674,9733,"[\""Wireless Mouse\"", \""Charger\""]",4840.8,"{\""promo\"": \""30%\""}",148897,1,"""Europe""" +2023-01-21,77675,8197,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2935.75,{},282892,0,"""North America""" +2023-09-08,77676,578,"[\""Tablet\"", \""Laptop\""]",2619.53,"{\""promo\"": \""20%\""}",288460,1,"""Asia""" +2023-04-02,77677,561,"[\""Laptop\""]",3794.26,{},205188,1,"""North America""" +2023-05-28,77678,5411,"[\""Charger\""]",3581.19,"{\""promo\"": \""21%\""}",42931,0,"""Europe""" +2023-04-18,77679,4721,"[\""Keyboard\""]",895.86,{},223398,0,"""Africa""" +2023-11-30,77680,1281,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4699.49,"{\""seasonal\"": \""19%\""}",74528,1,"""South America""" +2024-08-07,77681,6229,"[\""Tablet\"", \""Laptop\""]",4066.79,"{\""loyalty\"": \""12%\""}",220575,0,"""Asia""" +2023-03-15,77682,8183,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2738.53,{},19531,1,"""Europe""" +2023-04-03,77683,4070,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1964.97,"{\""loyalty\"": \""12%\""}",240689,0,"""North America""" +2023-07-13,77684,8964,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",951.02,{},180927,1,"""South America""" +2023-10-08,77685,6258,"[\""Headphones\""]",4211.62,"{\"": \""10%\""}",205495,0,"""South America""" +2024-06-03,77686,6576,"[\""Monitor\"", \""Laptop\""]",3963.65,{},200344,0,"""Europe""" +2023-05-31,77687,4587,"[\""Wireless Mouse\""]",772.45,"{\"": \""30%\""}",15877,0,"""Asia""" +2023-12-15,77688,2632,"[\""Wireless Mouse\""]",3761.01,"{\"": \""26%\""}",92043,0,"""North America""" +2024-11-21,77689,3829,"[\""Wireless Mouse\""]",4363.16,{},71010,0,"""Asia""" +2024-04-04,77690,3186,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",537.18,{},89220,0,"""North America""" +2023-09-18,77691,9852,"[\""Phone\"", \""Charger\""]",4274.03,{},281553,1,"""North America""" +2024-07-25,77692,6811,"[\""Laptop\"", \""Monitor\""]",2070.51,{},63628,0,"""Asia""" +2023-09-17,77693,1908,"[\""Wireless Mouse\"", \""Tablet\""]",2814.06,"{\""promo\"": \""5%\""}",168093,1,"""North America""" +2024-11-17,77694,9958,"[\""Tablet\""]",2111.91,"{\"": \""15%\""}",114643,0,"""South America""" +2023-12-10,77695,6717,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",255.48,"{\""loyalty\"": \""20%\""}",228325,0,"""Asia""" +2024-03-26,77696,787,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3590.94,"{\""seasonal\"": \""30%\""}",129279,0,"""South America""" +2024-04-27,77697,9492,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4303.36,{},34570,1,"""Africa""" +2024-11-04,77698,6714,"[\""Charger\"", \""Laptop\""]",3425.74,{},106358,1,"""Europe""" +2023-12-04,77699,7847,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2222.86,{},244635,1,"""Asia""" +2024-05-24,77700,1625,"[\""Tablet\""]",2339.6,"{\""loyalty\"": \""5%\""}",116927,1,"""Europe""" +2024-09-19,77701,2112,"[\""Charger\""]",3006.44,{},167087,0,"""Africa""" +2024-12-08,77702,1315,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",686.93,"{\"": \""9%\""}",220959,0,"""South America""" +2024-12-19,77703,8022,"[\""Charger\"", \""Monitor\""]",4643.02,{},160936,0,"""Africa""" +2024-11-18,77704,10,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4259.19,{},21657,1,"""Africa""" +2024-04-27,77705,56,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2720.49,{},4712,0,"""Europe""" +2023-06-07,77706,9609,"[\""Monitor\""]",798.97,{},117729,1,"""Asia""" +2023-04-21,77707,8510,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4072.22,"{\""promo\"": \""9%\""}",137438,0,"""Africa""" +2023-03-05,77708,1326,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",681.54,"{\""promo\"": \""26%\""}",279970,0,"""Europe""" +2024-11-03,77709,1818,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3725.74,"{\""loyalty\"": \""25%\""}",251389,0,"""Africa""" +2023-02-11,77710,2662,"[\""Keyboard\"", \""Laptop\""]",532.16,"{\""seasonal\"": \""26%\""}",88412,0,"""Asia""" +2024-08-18,77711,5833,"[\""Wireless Mouse\"", \""Headphones\""]",4936.14,"{\""loyalty\"": \""26%\""}",229646,1,"""Europe""" +2023-12-11,77712,686,"[\""Charger\"", \""Tablet\""]",4125.99,{},264572,0,"""Asia""" +2024-06-03,77713,1663,"[\""Phone\""]",3267.64,{},58929,1,"""North America""" +2024-08-27,77714,3608,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4921.5,"{\""seasonal\"": \""6%\""}",246117,0,"""Africa""" +2023-04-18,77715,136,"[\""Keyboard\"", \""Monitor\""]",4218.48,{},23164,1,"""North America""" +2024-01-04,77716,9302,"[\""Headphones\"", \""Tablet\""]",2618.13,{},222690,1,"""North America""" +2023-08-13,77717,4882,"[\""Headphones\""]",3223.49,{},111047,1,"""South America""" +2024-04-13,77718,2182,"[\""Charger\""]",2895.35,"{\""loyalty\"": \""22%\""}",101565,1,"""Africa""" +2023-02-04,77719,8415,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1319.02,"{\""loyalty\"": \""9%\""}",222999,1,"""Asia""" +2024-06-10,77720,1786,"[\""Wireless Mouse\""]",207.52,"{\"": \""5%\""}",189153,0,"""South America""" +2024-09-24,77721,9853,"[\""Laptop\""]",2345.68,"{\""promo\"": \""30%\""}",168064,0,"""North America""" +2023-04-16,77722,9813,"[\""Charger\""]",3468.26,{},293476,1,"""Europe""" +2023-06-19,77723,262,"[\""Tablet\"", \""Monitor\""]",1054.72,{},262680,0,"""South America""" +2023-03-21,77724,4575,"[\""Phone\""]",3109.67,"{\""promo\"": \""11%\""}",212181,0,"""Africa""" +2024-01-17,77725,4264,"[\""Tablet\"", \""Laptop\""]",3390.04,"{\""seasonal\"": \""27%\""}",1829,0,"""Europe""" +2024-08-29,77726,4552,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3835.75,{},143833,0,"""Africa""" +2024-05-05,77727,2539,"[\""Phone\""]",3415.86,{},5904,1,"""Africa""" +2023-01-18,77728,1536,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4330.08,{},72903,1,"""Africa""" +2023-03-12,77729,6978,"[\""Wireless Mouse\"", \""Tablet\""]",1701.85,"{\""loyalty\"": \""26%\""}",182155,0,"""Europe""" +2023-08-23,77730,4363,"[\""Tablet\"", \""Phone\""]",420.74,{},159361,1,"""Asia""" +2024-08-13,77731,374,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",199.56,{},290017,0,"""South America""" +2023-08-28,77732,9625,"[\""Phone\""]",3949.13,{},2106,1,"""Africa""" +2024-04-06,77733,8414,"[\""Keyboard\"", \""Phone\""]",4274.66,{},204208,0,"""Africa""" +2023-08-04,77734,7780,"[\""Phone\""]",241.51,{},257545,1,"""South America""" +2023-03-17,77735,9784,"[\""Headphones\"", \""Monitor\""]",2689.74,"{\"": \""19%\""}",61860,1,"""North America""" +2024-03-15,77736,5308,"[\""Tablet\"", \""Phone\""]",4594.58,"{\"": \""6%\""}",33406,1,"""Africa""" +2023-03-28,77737,5489,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1996.66,{},194008,1,"""South America""" +2024-11-22,77738,6784,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1776.28,{},143133,1,"""Europe""" +2023-08-02,77739,2747,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4950.8,"{\""promo\"": \""5%\""}",239631,0,"""Africa""" +2024-07-29,77740,3460,"[\""Tablet\"", \""Headphones\""]",2567.2,"{\"": \""26%\""}",35077,0,"""Europe""" +2023-02-20,77741,7255,"[\""Wireless Mouse\"", \""Tablet\""]",4587.67,"{\"": \""13%\""}",134946,1,"""Africa""" +2024-10-31,77742,4162,"[\""Monitor\""]",4223.71,"{\""seasonal\"": \""26%\""}",62271,0,"""Asia""" +2024-01-08,77743,6419,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2344.15,"{\"": \""14%\""}",193031,1,"""Europe""" +2023-10-22,77744,3852,"[\""Headphones\""]",2327.53,{},26624,1,"""Asia""" +2024-08-13,77745,4609,"[\""Phone\"", \""Laptop\""]",3841.19,{},254972,0,"""South America""" +2023-10-26,77746,6150,"[\""Tablet\""]",3807.61,"{\""seasonal\"": \""9%\""}",11128,0,"""Europe""" +2023-04-04,77747,2305,"[\""Tablet\""]",458.54,{},220929,0,"""South America""" +2024-01-27,77748,6685,"[\""Laptop\""]",2589.11,{},224804,1,"""South America""" +2024-04-02,77749,5496,"[\""Phone\"", \""Headphones\""]",2338.31,"{\""promo\"": \""30%\""}",177141,0,"""Europe""" +2023-02-19,77750,2449,"[\""Monitor\"", \""Wireless Mouse\""]",3681.14,"{\""seasonal\"": \""5%\""}",265033,1,"""Africa""" +2024-06-08,77751,9150,"[\""Keyboard\"", \""Headphones\""]",4062.26,{},44571,1,"""Asia""" +2024-06-10,77752,8789,"[\""Charger\"", \""Phone\""]",1766.82,{},147443,1,"""North America""" +2023-10-09,77753,6949,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3952.4,{},103615,0,"""South America""" +2023-04-23,77754,7284,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4435.68,"{\""loyalty\"": \""13%\""}",89913,0,"""Africa""" +2023-09-29,77755,1181,"[\""Charger\""]",3964.51,{},63309,0,"""Europe""" +2023-05-07,77756,4841,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2125.37,{},214189,0,"""Asia""" +2023-03-02,77757,7277,"[\""Phone\"", \""Monitor\""]",4805.53,{},233032,1,"""Europe""" +2024-08-11,77758,8658,"[\""Phone\""]",1190.07,"{\"": \""7%\""}",147384,1,"""South America""" +2023-03-22,77759,4947,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",800.57,{},28090,1,"""North America""" +2024-10-26,77760,7648,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3804.58,"{\""seasonal\"": \""19%\""}",172245,0,"""Africa""" +2024-11-26,77761,6808,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",317.1,"{\"": \""16%\""}",21464,1,"""North America""" +2023-10-11,77762,840,"[\""Wireless Mouse\""]",3218.07,{},64764,0,"""Asia""" +2024-08-09,77763,3999,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3739.34,{},30111,1,"""Asia""" +2023-07-11,77764,6606,"[\""Phone\"", \""Laptop\""]",649.99,{},281515,1,"""South America""" +2023-04-04,77765,771,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1315.61,{},273308,0,"""Asia""" +2024-02-02,77766,7324,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3823.9,"{\""promo\"": \""17%\""}",257198,1,"""Europe""" +2024-10-05,77767,9595,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1232.98,"{\"": \""22%\""}",8952,0,"""Africa""" +2023-02-09,77768,8789,"[\""Headphones\"", \""Tablet\""]",3222.98,{},203943,1,"""North America""" +2023-02-10,77769,8101,"[\""Monitor\"", \""Keyboard\""]",2972.11,{},165415,0,"""North America""" +2023-04-27,77770,4238,"[\""Monitor\"", \""Headphones\""]",1671.83,"{\"": \""26%\""}",89359,1,"""South America""" +2024-12-15,77771,5784,"[\""Charger\"", \""Wireless Mouse\""]",2155.95,"{\""seasonal\"": \""18%\""}",63339,1,"""Europe""" +2024-08-08,77772,6379,"[\""Wireless Mouse\""]",1626.03,"{\""seasonal\"": \""25%\""}",51744,0,"""North America""" +2023-09-28,77773,2932,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1024.02,{},71962,0,"""Asia""" +2024-05-08,77774,67,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3694.31,"{\"": \""30%\""}",67736,1,"""Europe""" +2024-02-08,77775,1775,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2516.74,"{\""promo\"": \""6%\""}",115212,0,"""Asia""" +2024-10-26,77776,4717,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3990.7,"{\"": \""11%\""}",161573,0,"""Africa""" +2023-06-02,77777,757,"[\""Tablet\""]",3685.35,{},145689,0,"""South America""" +2023-12-22,77778,1384,"[\""Wireless Mouse\"", \""Tablet\""]",1417.06,{},273092,0,"""South America""" +2023-04-09,77779,8503,"[\""Tablet\"", \""Wireless Mouse\""]",1199.5,"{\""seasonal\"": \""12%\""}",193594,1,"""Africa""" +2024-02-24,77780,4296,"[\""Charger\"", \""Monitor\""]",2932.7,"{\"": \""8%\""}",124196,1,"""Europe""" +2023-07-16,77781,520,"[\""Monitor\"", \""Keyboard\""]",4612.44,{},100025,1,"""North America""" +2023-06-08,77782,5469,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3199.29,"{\""promo\"": \""14%\""}",174080,0,"""South America""" +2023-12-21,77783,6796,"[\""Keyboard\"", \""Charger\""]",4100.93,"{\""seasonal\"": \""23%\""}",193730,0,"""Asia""" +2023-04-17,77784,8950,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",664.13,{},146998,1,"""North America""" +2024-08-28,77785,566,"[\""Laptop\"", \""Monitor\""]",4776.45,"{\""loyalty\"": \""23%\""}",27710,1,"""Asia""" +2023-02-22,77786,4528,"[\""Phone\"", \""Charger\""]",77.4,{},173018,0,"""Africa""" +2023-04-08,77787,2244,"[\""Keyboard\""]",2779.18,{},51713,1,"""Asia""" +2023-04-04,77788,3832,"[\""Laptop\"", \""Phone\""]",4840.86,{},54327,1,"""Africa""" +2023-05-19,77789,2964,"[\""Keyboard\"", \""Monitor\""]",496.0,{},131912,1,"""South America""" +2023-11-21,77790,5351,"[\""Monitor\""]",1682.53,"{\""promo\"": \""30%\""}",234986,1,"""Asia""" +2024-02-02,77791,5453,"[\""Phone\""]",2240.61,"{\""seasonal\"": \""19%\""}",11952,0,"""Africa""" +2024-12-26,77792,5870,"[\""Tablet\"", \""Wireless Mouse\""]",524.66,{},299265,0,"""Asia""" +2023-08-21,77793,2516,"[\""Phone\""]",526.72,"{\"": \""8%\""}",283697,0,"""North America""" +2023-12-01,77794,5862,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1270.84,{},148916,0,"""Europe""" +2024-06-10,77795,3717,"[\""Headphones\""]",1858.41,"{\""promo\"": \""6%\""}",188217,0,"""Asia""" +2023-04-15,77796,7742,"[\""Wireless Mouse\"", \""Laptop\""]",4033.53,{},114559,1,"""Asia""" +2023-01-14,77797,7346,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1472.65,"{\""seasonal\"": \""24%\""}",284059,0,"""Asia""" +2023-08-25,77798,2101,"[\""Charger\""]",2167.86,"{\""seasonal\"": \""15%\""}",227285,1,"""Europe""" +2023-11-16,77799,2060,"[\""Wireless Mouse\""]",3488.4,{},134192,0,"""Africa""" +2023-07-23,77800,7940,"[\""Headphones\""]",1620.59,"{\""loyalty\"": \""23%\""}",137575,1,"""Africa""" +2023-10-14,77801,8115,"[\""Headphones\"", \""Wireless Mouse\""]",1388.0,"{\""promo\"": \""23%\""}",99441,0,"""Europe""" +2024-07-04,77802,8354,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4170.72,"{\""seasonal\"": \""10%\""}",229910,0,"""South America""" +2024-08-02,77803,699,"[\""Headphones\"", \""Charger\""]",3858.02,"{\""seasonal\"": \""16%\""}",157978,0,"""South America""" +2024-12-25,77804,3220,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3181.98,"{\""promo\"": \""22%\""}",182083,1,"""Africa""" +2023-01-10,77805,2354,"[\""Headphones\"", \""Laptop\""]",4667.19,{},167144,0,"""Africa""" +2024-08-16,77806,2465,"[\""Wireless Mouse\"", \""Charger\""]",2103.11,{},70720,0,"""South America""" +2024-01-25,77807,263,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2236.95,"{\""seasonal\"": \""9%\""}",129475,0,"""South America""" +2024-04-29,77808,2266,"[\""Headphones\"", \""Charger\""]",2312.17,{},75199,1,"""Asia""" +2024-02-18,77809,9894,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2672.68,{},221641,0,"""North America""" +2023-08-24,77810,4991,"[\""Wireless Mouse\""]",3908.83,"{\""promo\"": \""23%\""}",21670,1,"""South America""" +2023-02-12,77811,6052,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",513.24,{},134429,1,"""Africa""" +2023-06-03,77812,2065,"[\""Tablet\"", \""Phone\""]",1922.72,"{\""loyalty\"": \""27%\""}",175787,1,"""Africa""" +2024-01-02,77813,9072,"[\""Charger\"", \""Wireless Mouse\""]",4155.62,"{\""loyalty\"": \""28%\""}",212534,0,"""Asia""" +2024-05-11,77814,5720,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4274.18,"{\""loyalty\"": \""7%\""}",262967,0,"""Asia""" +2024-10-24,77815,4587,"[\""Charger\""]",4159.79,{},197562,1,"""Europe""" +2023-06-20,77816,9788,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3668.28,{},292872,1,"""North America""" +2023-03-27,77817,8900,"[\""Laptop\""]",3278.76,{},17000,1,"""Asia""" +2023-01-06,77818,4993,"[\""Keyboard\"", \""Laptop\""]",2094.34,{},273843,1,"""Asia""" +2024-08-21,77819,4487,"[\""Headphones\""]",4279.26,{},108183,1,"""Europe""" +2023-07-02,77820,8121,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4509.61,{},193368,1,"""Europe""" +2024-01-18,77821,1738,"[\""Headphones\""]",2008.57,{},225627,0,"""South America""" +2023-12-27,77822,7862,"[\""Phone\"", \""Charger\""]",3184.72,"{\"": \""5%\""}",245571,1,"""Europe""" +2024-11-18,77823,8092,"[\""Tablet\""]",3832.89,"{\""promo\"": \""19%\""}",45217,0,"""Asia""" +2023-01-23,77824,6908,"[\""Wireless Mouse\""]",624.17,"{\""promo\"": \""5%\""}",186276,0,"""South America""" +2024-06-13,77825,9506,"[\""Headphones\""]",1139.2,{},294137,1,"""North America""" +2023-11-28,77826,6650,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1509.34,"{\"": \""12%\""}",145870,1,"""North America""" +2024-10-18,77827,9178,"[\""Tablet\"", \""Wireless Mouse\""]",120.84,{},222327,0,"""Asia""" +2024-03-11,77828,2021,"[\""Keyboard\""]",1996.55,"{\""loyalty\"": \""8%\""}",210121,0,"""Europe""" +2024-08-03,77829,4059,"[\""Charger\""]",1605.88,"{\"": \""14%\""}",259606,0,"""Asia""" +2023-12-29,77830,9057,"[\""Headphones\"", \""Phone\""]",3263.51,{},63729,0,"""North America""" +2023-08-13,77831,4749,"[\""Laptop\""]",4674.18,"{\""seasonal\"": \""17%\""}",138817,0,"""South America""" +2024-06-06,77832,9449,"[\""Wireless Mouse\""]",537.67,{},91243,1,"""Europe""" +2023-09-21,77833,9006,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1271.41,"{\""seasonal\"": \""10%\""}",77456,0,"""South America""" +2024-04-23,77834,6820,"[\""Wireless Mouse\"", \""Keyboard\""]",4799.83,{},222812,0,"""South America""" +2023-08-20,77835,4275,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2314.14,"{\""promo\"": \""20%\""}",230212,0,"""North America""" +2023-01-16,77836,3319,"[\""Headphones\"", \""Tablet\""]",3494.07,{},69959,0,"""Europe""" +2023-12-18,77837,6847,"[\""Monitor\"", \""Wireless Mouse\""]",2967.68,"{\""loyalty\"": \""29%\""}",240613,0,"""Africa""" +2024-12-13,77838,2211,"[\""Monitor\"", \""Laptop\""]",3572.45,"{\""seasonal\"": \""27%\""}",76237,0,"""Asia""" +2024-12-25,77839,898,"[\""Wireless Mouse\""]",4461.95,{},37913,0,"""South America""" +2024-05-06,77840,7799,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1034.73,"{\""promo\"": \""24%\""}",36744,0,"""South America""" +2023-12-10,77841,893,"[\""Monitor\""]",227.31,{},204150,1,"""North America""" +2024-02-19,77842,8151,"[\""Tablet\"", \""Phone\""]",1289.34,"{\""seasonal\"": \""30%\""}",37762,1,"""South America""" +2024-03-08,77843,6757,"[\""Laptop\"", \""Phone\""]",3118.16,"{\""promo\"": \""22%\""}",215557,1,"""South America""" +2023-12-02,77844,1055,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1404.03,"{\"": \""7%\""}",273839,0,"""Europe""" +2024-02-15,77845,702,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1601.36,"{\""loyalty\"": \""11%\""}",273656,1,"""Africa""" +2023-01-03,77846,8074,"[\""Keyboard\""]",4793.57,"{\""loyalty\"": \""20%\""}",235195,1,"""Europe""" +2023-07-09,77847,5103,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3099.26,"{\""seasonal\"": \""24%\""}",91187,1,"""Africa""" +2024-05-12,77848,5767,"[\""Tablet\"", \""Phone\""]",3038.81,{},119558,0,"""Europe""" +2024-08-09,77849,7069,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",484.93,{},14165,1,"""South America""" +2024-03-13,77850,2545,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4128.52,"{\""seasonal\"": \""8%\""}",8061,1,"""South America""" +2023-09-15,77851,8163,"[\""Charger\"", \""Wireless Mouse\""]",3002.09,"{\""promo\"": \""7%\""}",193623,1,"""North America""" +2024-08-10,77852,2752,"[\""Phone\""]",3524.75,"{\""seasonal\"": \""9%\""}",39958,1,"""Asia""" +2023-08-29,77853,6957,"[\""Charger\"", \""Phone\""]",1311.67,"{\""promo\"": \""17%\""}",23712,1,"""Europe""" +2023-04-19,77854,496,"[\""Charger\""]",516.0,"{\""seasonal\"": \""23%\""}",82707,1,"""North America""" +2024-10-30,77855,8237,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4272.12,"{\""promo\"": \""27%\""}",53432,1,"""Europe""" +2024-03-23,77856,4843,"[\""Charger\"", \""Laptop\""]",909.58,{},282866,0,"""Europe""" +2024-11-28,77857,3820,"[\""Keyboard\""]",2701.98,"{\""seasonal\"": \""11%\""}",241507,1,"""Europe""" +2023-07-19,77858,4158,"[\""Laptop\""]",1314.16,"{\""seasonal\"": \""19%\""}",13831,0,"""South America""" +2024-07-06,77859,6876,"[\""Tablet\""]",4020.54,"{\""promo\"": \""13%\""}",265277,0,"""Africa""" +2024-11-12,77860,3124,"[\""Phone\"", \""Tablet\""]",812.35,{},55354,1,"""South America""" +2023-07-24,77861,6631,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2684.19,{},83909,0,"""South America""" +2023-06-09,77862,5165,"[\""Wireless Mouse\""]",4162.96,"{\""promo\"": \""24%\""}",135458,1,"""North America""" +2023-11-22,77863,7166,"[\""Charger\"", \""Monitor\""]",4806.96,{},34627,0,"""Europe""" +2024-01-15,77864,7031,"[\""Wireless Mouse\""]",2356.87,"{\""promo\"": \""28%\""}",249870,1,"""Europe""" +2024-12-07,77865,1795,"[\""Laptop\""]",2642.31,"{\""seasonal\"": \""23%\""}",198669,0,"""Asia""" +2023-05-05,77866,1352,"[\""Keyboard\""]",2993.36,{},169209,1,"""Europe""" +2023-03-24,77867,218,"[\""Laptop\"", \""Headphones\""]",4117.42,"{\"": \""11%\""}",142916,0,"""South America""" +2023-09-05,77868,4119,"[\""Wireless Mouse\""]",3762.35,"{\""loyalty\"": \""21%\""}",45386,1,"""Europe""" +2024-04-08,77869,7919,"[\""Keyboard\""]",1764.93,"{\""promo\"": \""19%\""}",64446,1,"""Africa""" +2024-09-16,77870,9456,"[\""Headphones\""]",1194.83,{},126555,0,"""Asia""" +2024-04-13,77871,6598,"[\""Tablet\""]",3283.03,"{\""promo\"": \""30%\""}",15113,1,"""Africa""" +2024-01-24,77872,2220,"[\""Charger\""]",1395.07,{},9579,1,"""Europe""" +2023-09-02,77873,8809,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1519.05,"{\""loyalty\"": \""15%\""}",17967,0,"""Europe""" +2023-02-26,77874,8906,"[\""Tablet\"", \""Laptop\""]",622.71,{},179298,0,"""South America""" +2024-04-13,77875,3640,"[\""Monitor\""]",4538.63,{},247614,1,"""Africa""" +2023-07-22,77876,3335,"[\""Headphones\""]",1703.11,{},161330,0,"""Europe""" +2024-03-30,77877,9739,"[\""Phone\"", \""Keyboard\""]",1183.26,"{\""promo\"": \""13%\""}",217022,0,"""Europe""" +2023-04-08,77878,5939,"[\""Charger\""]",4142.03,{},2008,1,"""North America""" +2024-09-22,77879,9174,"[\""Laptop\"", \""Tablet\""]",3440.85,{},83987,1,"""Europe""" +2024-12-08,77880,9168,"[\""Phone\"", \""Laptop\""]",2912.4,{},29642,0,"""Asia""" +2023-10-13,77881,8793,"[\""Headphones\"", \""Keyboard\""]",4263.45,{},264380,1,"""Europe""" +2023-06-21,77882,2795,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1018.83,{},36097,1,"""South America""" +2023-11-19,77883,8500,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3083.98,"{\""loyalty\"": \""18%\""}",279955,1,"""Asia""" +2024-09-27,77884,107,"[\""Headphones\"", \""Charger\""]",1115.59,{},166017,1,"""North America""" +2023-03-15,77885,1546,"[\""Wireless Mouse\"", \""Laptop\""]",4138.37,{},253167,1,"""North America""" +2023-03-17,77886,4504,"[\""Keyboard\""]",3586.72,{},146939,0,"""South America""" +2023-05-27,77887,9249,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4849.65,"{\"": \""30%\""}",289220,0,"""Asia""" +2023-04-03,77888,6030,"[\""Laptop\"", \""Keyboard\""]",769.17,"{\""loyalty\"": \""13%\""}",51106,0,"""Europe""" +2023-04-18,77889,947,"[\""Wireless Mouse\"", \""Tablet\""]",4072.46,{},173296,0,"""North America""" +2024-09-20,77890,9226,"[\""Laptop\""]",634.48,{},196844,1,"""Africa""" +2024-12-04,77891,5047,"[\""Wireless Mouse\"", \""Laptop\""]",2883.48,{},266138,1,"""Asia""" +2024-05-11,77892,3759,"[\""Keyboard\"", \""Monitor\""]",4534.57,{},249224,1,"""Africa""" +2023-02-20,77893,5060,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1533.13,"{\""promo\"": \""19%\""}",193894,0,"""North America""" +2024-10-28,77894,6306,"[\""Headphones\"", \""Tablet\""]",1718.61,{},261610,1,"""South America""" +2023-11-27,77895,1272,"[\""Wireless Mouse\""]",3136.54,{},7383,1,"""North America""" +2024-05-25,77896,6131,"[\""Monitor\"", \""Laptop\""]",919.42,"{\"": \""17%\""}",174076,1,"""South America""" +2023-11-01,77897,2261,"[\""Wireless Mouse\"", \""Headphones\""]",703.52,"{\""promo\"": \""25%\""}",26503,0,"""Europe""" +2024-03-01,77898,9452,"[\""Tablet\"", \""Phone\""]",942.16,{},108232,0,"""Asia""" +2023-12-13,77899,3145,"[\""Wireless Mouse\""]",980.03,"{\"": \""13%\""}",165097,1,"""South America""" +2024-10-21,77900,5472,"[\""Tablet\""]",2688.25,{},166216,0,"""Europe""" +2023-09-10,77901,4082,"[\""Laptop\"", \""Tablet\""]",3926.72,"{\"": \""9%\""}",40599,0,"""North America""" +2023-04-02,77902,7665,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2672.68,"{\""seasonal\"": \""24%\""}",217223,0,"""Asia""" +2024-10-14,77903,5086,"[\""Headphones\""]",4813.93,"{\"": \""30%\""}",158691,0,"""Asia""" +2023-09-26,77904,7224,"[\""Headphones\""]",4725.17,"{\""loyalty\"": \""14%\""}",289418,1,"""Asia""" +2024-06-08,77905,8544,"[\""Wireless Mouse\""]",99.09,"{\""seasonal\"": \""7%\""}",175381,0,"""North America""" +2024-04-01,77906,516,"[\""Headphones\""]",3034.15,"{\"": \""24%\""}",281505,0,"""North America""" +2023-02-21,77907,2444,"[\""Monitor\"", \""Charger\""]",1724.11,"{\""loyalty\"": \""26%\""}",48814,1,"""Asia""" +2024-07-31,77908,7580,"[\""Headphones\""]",109.01,{},198564,0,"""Africa""" +2024-10-06,77909,45,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3235.22,{},43396,0,"""South America""" +2023-08-10,77910,4931,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4770.3,{},51161,1,"""Asia""" +2024-12-23,77911,2224,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1011.49,"{\""promo\"": \""14%\""}",36262,1,"""South America""" +2023-10-11,77912,7787,"[\""Wireless Mouse\""]",2704.69,"{\""seasonal\"": \""17%\""}",271887,1,"""South America""" +2024-01-20,77913,5159,"[\""Tablet\"", \""Wireless Mouse\""]",4941.63,"{\""loyalty\"": \""29%\""}",73329,0,"""Europe""" +2024-03-14,77914,3145,"[\""Tablet\""]",2929.99,{},168798,1,"""Africa""" +2023-07-05,77915,6544,"[\""Monitor\"", \""Headphones\""]",2104.95,"{\""promo\"": \""26%\""}",296014,0,"""Africa""" +2024-08-15,77916,940,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2332.94,"{\""seasonal\"": \""19%\""}",8838,0,"""Africa""" +2024-02-05,77917,5587,"[\""Headphones\""]",4946.9,"{\"": \""9%\""}",146509,0,"""North America""" +2024-11-19,77918,9059,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4393.07,"{\""loyalty\"": \""26%\""}",165690,1,"""North America""" +2024-02-09,77919,9403,"[\""Headphones\"", \""Tablet\""]",3084.81,{},19708,1,"""Africa""" +2024-10-13,77920,3009,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4945.29,"{\""seasonal\"": \""21%\""}",119794,1,"""South America""" +2023-04-01,77921,643,"[\""Charger\"", \""Keyboard\""]",4520.2,"{\""promo\"": \""30%\""}",5307,0,"""Asia""" +2023-08-06,77922,3763,"[\""Monitor\""]",3940.59,{},61476,0,"""Europe""" +2023-01-18,77923,1879,"[\""Keyboard\""]",1389.48,"{\"": \""14%\""}",136740,0,"""Asia""" +2024-04-25,77924,6356,"[\""Keyboard\"", \""Headphones\""]",1418.26,{},267906,0,"""South America""" +2024-09-03,77925,7541,"[\""Keyboard\""]",3063.58,"{\""loyalty\"": \""27%\""}",32153,1,"""Europe""" +2023-03-02,77926,91,"[\""Tablet\""]",2977.31,"{\""loyalty\"": \""5%\""}",132752,1,"""North America""" +2024-07-09,77927,447,"[\""Laptop\""]",3572.34,{},185967,0,"""North America""" +2023-07-01,77928,1425,"[\""Tablet\""]",1049.77,{},201967,1,"""North America""" +2023-12-14,77929,3364,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2213.1,"{\""loyalty\"": \""24%\""}",176592,0,"""Africa""" +2024-04-06,77930,3577,"[\""Keyboard\"", \""Tablet\""]",1970.61,"{\""promo\"": \""12%\""}",140169,0,"""Europe""" +2024-05-22,77931,4894,"[\""Phone\""]",306.96,{},226372,0,"""Europe""" +2023-02-16,77932,8047,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",526.45,"{\""promo\"": \""11%\""}",175324,1,"""South America""" +2023-11-24,77933,4457,"[\""Charger\"", \""Tablet\""]",3081.44,{},123360,0,"""Africa""" +2023-02-14,77934,793,"[\""Wireless Mouse\"", \""Tablet\""]",1991.4,"{\""loyalty\"": \""28%\""}",28456,1,"""North America""" +2023-11-13,77935,6460,"[\""Tablet\"", \""Headphones\""]",133.76,{},38212,1,"""Europe""" +2024-11-13,77936,4410,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3203.31,{},222092,1,"""North America""" +2024-06-13,77937,1041,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4515.22,"{\""seasonal\"": \""30%\""}",71595,1,"""South America""" +2024-07-02,77938,4832,"[\""Keyboard\"", \""Headphones\""]",2716.2,"{\""loyalty\"": \""20%\""}",23331,0,"""Asia""" +2023-08-14,77939,4499,"[\""Monitor\""]",4275.67,{},109919,0,"""Europe""" +2024-04-15,77940,8603,"[\""Wireless Mouse\"", \""Headphones\""]",4335.87,"{\"": \""29%\""}",296402,0,"""South America""" +2024-12-27,77941,8415,"[\""Tablet\""]",2718.52,{},172104,0,"""Asia""" +2024-05-26,77942,2909,"[\""Keyboard\"", \""Laptop\""]",4701.75,"{\""loyalty\"": \""23%\""}",115502,1,"""Asia""" +2024-01-05,77943,7094,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4544.3,"{\"": \""11%\""}",162698,0,"""Asia""" +2024-12-16,77944,2460,"[\""Charger\"", \""Laptop\""]",364.59,{},192421,1,"""Europe""" +2024-07-02,77945,4228,"[\""Laptop\""]",1201.56,"{\""seasonal\"": \""9%\""}",146284,0,"""Europe""" +2023-05-26,77946,9202,"[\""Laptop\""]",1616.44,{},46060,1,"""Asia""" +2024-09-30,77947,1225,"[\""Phone\""]",3720.15,"{\""seasonal\"": \""15%\""}",141276,0,"""Europe""" +2024-05-23,77948,5837,"[\""Wireless Mouse\"", \""Headphones\""]",1533.61,{},126451,1,"""Africa""" +2024-07-28,77949,6203,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1187.86,"{\""seasonal\"": \""23%\""}",258008,0,"""Asia""" +2024-07-21,77950,121,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1246.93,{},186739,0,"""North America""" +2023-11-15,77951,7866,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1369.77,{},244953,0,"""Africa""" +2023-06-28,77952,742,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",334.11,{},18982,1,"""Asia""" +2023-04-25,77953,1311,"[\""Headphones\"", \""Keyboard\""]",2495.79,{},120849,1,"""Africa""" +2024-02-27,77954,8348,"[\""Charger\"", \""Keyboard\""]",4857.89,{},278787,0,"""North America""" +2024-11-20,77955,2978,"[\""Keyboard\""]",354.38,"{\""promo\"": \""12%\""}",279955,1,"""South America""" +2024-01-28,77956,7995,"[\""Wireless Mouse\"", \""Headphones\""]",4330.0,"{\""loyalty\"": \""24%\""}",101176,1,"""Europe""" +2024-03-22,77957,8294,"[\""Headphones\""]",3603.86,"{\"": \""27%\""}",217560,1,"""Asia""" +2023-01-07,77958,9543,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2658.4,"{\""loyalty\"": \""22%\""}",121837,0,"""Asia""" +2023-03-07,77959,3083,"[\""Monitor\""]",1334.04,"{\""seasonal\"": \""14%\""}",57527,1,"""Africa""" +2024-04-18,77960,7060,"[\""Tablet\"", \""Keyboard\""]",3875.82,{},228316,1,"""North America""" +2023-12-05,77961,5509,"[\""Charger\""]",835.79,{},272613,0,"""North America""" +2024-02-20,77962,2214,"[\""Headphones\"", \""Phone\""]",256.99,{},208011,1,"""South America""" +2023-05-01,77963,5392,"[\""Wireless Mouse\"", \""Charger\""]",1816.98,{},66301,0,"""South America""" +2023-10-05,77964,4821,"[\""Charger\""]",4705.85,"{\""seasonal\"": \""10%\""}",203723,1,"""South America""" +2023-08-29,77965,4342,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",630.45,{},14717,1,"""North America""" +2023-12-23,77966,7247,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3765.52,{},196178,1,"""North America""" +2023-01-07,77967,8293,"[\""Tablet\""]",3262.36,"{\"": \""20%\""}",105091,0,"""South America""" +2023-05-13,77968,4978,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",604.88,{},285609,0,"""South America""" +2024-03-05,77969,6025,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4153.95,"{\""loyalty\"": \""9%\""}",78332,0,"""Africa""" +2023-12-09,77970,3509,"[\""Charger\"", \""Laptop\""]",3905.01,{},288182,0,"""South America""" +2024-02-06,77971,9273,"[\""Headphones\"", \""Charger\""]",3648.34,{},269810,0,"""Europe""" +2023-12-21,77972,7125,"[\""Headphones\""]",4357.71,{},103100,0,"""Africa""" +2024-05-21,77973,3023,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",686.73,"{\"": \""16%\""}",264014,1,"""Africa""" +2024-06-12,77974,1950,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3498.24,"{\"": \""21%\""}",9683,1,"""Europe""" +2024-09-02,77975,638,"[\""Monitor\"", \""Wireless Mouse\""]",4099.04,"{\""promo\"": \""14%\""}",187689,0,"""Africa""" +2024-07-25,77976,1710,"[\""Phone\"", \""Keyboard\""]",1616.7,{},233558,0,"""Europe""" +2023-08-23,77977,9741,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",749.24,"{\"": \""18%\""}",143783,0,"""South America""" +2023-02-27,77978,7517,"[\""Keyboard\"", \""Tablet\""]",651.39,{},211026,1,"""Asia""" +2024-12-16,77979,9265,"[\""Keyboard\""]",1560.77,"{\""seasonal\"": \""15%\""}",123759,1,"""Asia""" +2023-04-17,77980,2607,"[\""Charger\"", \""Phone\""]",2498.41,{},3148,0,"""North America""" +2024-02-18,77981,1651,"[\""Phone\"", \""Wireless Mouse\""]",3498.72,{},20924,0,"""North America""" +2024-11-29,77982,6811,"[\""Phone\"", \""Monitor\""]",1068.33,"{\""loyalty\"": \""18%\""}",256927,1,"""Africa""" +2023-10-15,77983,6608,"[\""Laptop\""]",3024.68,"{\""loyalty\"": \""8%\""}",236711,0,"""North America""" +2024-04-24,77984,750,"[\""Headphones\"", \""Monitor\""]",4276.49,{},53923,0,"""North America""" +2024-04-12,77985,1206,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1515.65,{},103194,0,"""Africa""" +2024-11-27,77986,3536,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",715.69,{},156409,0,"""Europe""" +2023-03-05,77987,2467,"[\""Monitor\""]",4536.49,"{\""seasonal\"": \""8%\""}",86877,0,"""Europe""" +2024-09-05,77988,4451,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1639.88,"{\""loyalty\"": \""21%\""}",67133,0,"""North America""" +2023-04-13,77989,7465,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1675.85,"{\""seasonal\"": \""23%\""}",46745,0,"""Europe""" +2023-03-23,77990,1144,"[\""Tablet\""]",2150.97,"{\""loyalty\"": \""20%\""}",58687,0,"""Africa""" +2023-01-05,77991,3429,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3004.17,"{\""loyalty\"": \""25%\""}",212386,1,"""Africa""" +2024-04-30,77992,7294,"[\""Monitor\""]",4617.96,"{\""promo\"": \""19%\""}",299925,1,"""North America""" +2023-05-14,77993,5121,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2915.14,"{\""seasonal\"": \""13%\""}",6008,1,"""Asia""" +2024-12-05,77994,2949,"[\""Keyboard\""]",399.66,"{\""seasonal\"": \""6%\""}",193525,0,"""Europe""" +2023-03-28,77995,3177,"[\""Charger\"", \""Phone\""]",95.16,{},216281,0,"""North America""" +2023-11-12,77996,2943,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",212.75,"{\"": \""22%\""}",276386,1,"""Europe""" +2023-04-30,77997,3377,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1362.13,{},243454,1,"""South America""" +2024-08-05,77998,5229,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2275.33,"{\""seasonal\"": \""16%\""}",268400,1,"""North America""" +2023-07-04,77999,311,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3984.22,"{\"": \""14%\""}",128808,1,"""Africa""" +2024-09-16,78000,5397,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4241.98,"{\""seasonal\"": \""14%\""}",155659,0,"""South America""" +2024-02-14,78001,4992,"[\""Keyboard\""]",4809.75,{},113109,1,"""North America""" +2023-05-21,78002,5972,"[\""Monitor\"", \""Tablet\""]",1482.05,"{\"": \""23%\""}",192278,0,"""North America""" +2023-04-07,78003,4388,"[\""Charger\"", \""Keyboard\""]",4717.81,{},26656,1,"""Asia""" +2024-07-18,78004,8943,"[\""Tablet\"", \""Charger\""]",2264.63,"{\"": \""20%\""}",4049,1,"""South America""" +2024-05-30,78005,4343,"[\""Tablet\"", \""Keyboard\""]",1534.43,{},41552,1,"""Europe""" +2023-11-10,78006,5562,"[\""Tablet\"", \""Laptop\""]",3989.56,"{\""loyalty\"": \""25%\""}",206439,1,"""North America""" +2024-03-12,78007,9972,"[\""Headphones\"", \""Phone\""]",1667.58,{},2505,1,"""Europe""" +2024-05-24,78008,388,"[\""Monitor\""]",2054.31,{},217927,0,"""Europe""" +2023-02-07,78009,3754,"[\""Charger\""]",1448.89,{},241271,1,"""Asia""" +2023-12-01,78010,789,"[\""Keyboard\""]",905.28,{},101923,1,"""South America""" +2024-07-29,78011,4388,"[\""Tablet\""]",4088.92,{},267953,1,"""Africa""" +2024-11-18,78012,1534,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",695.57,"{\""promo\"": \""10%\""}",180236,0,"""Africa""" +2024-01-03,78013,574,"[\""Headphones\""]",335.03,{},205081,0,"""South America""" +2023-08-21,78014,2093,"[\""Tablet\"", \""Keyboard\""]",2916.77,{},121998,1,"""Europe""" +2024-02-19,78015,8054,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4358.91,{},24033,0,"""Asia""" +2024-09-28,78016,4492,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2735.09,{},236411,1,"""Asia""" +2023-05-11,78017,8088,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4907.31,"{\""promo\"": \""21%\""}",49700,1,"""South America""" +2024-02-15,78018,7711,"[\""Headphones\"", \""Phone\""]",3577.72,{},80863,0,"""Africa""" +2023-07-09,78019,4844,"[\""Wireless Mouse\"", \""Keyboard\""]",431.82,{},270678,1,"""South America""" +2023-06-15,78020,7581,"[\""Keyboard\""]",3599.99,"{\""loyalty\"": \""27%\""}",190741,1,"""Africa""" +2024-09-20,78021,8696,"[\""Wireless Mouse\""]",1858.42,"{\""loyalty\"": \""7%\""}",269632,0,"""Africa""" +2024-05-03,78022,9024,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",267.19,"{\"": \""7%\""}",54919,0,"""North America""" +2023-10-02,78023,3631,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4807.34,"{\""loyalty\"": \""28%\""}",34068,1,"""South America""" +2023-11-08,78024,2634,"[\""Phone\""]",1614.57,"{\""loyalty\"": \""22%\""}",179224,1,"""Europe""" +2023-09-01,78025,9344,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4329.62,"{\""seasonal\"": \""30%\""}",153594,0,"""South America""" +2024-10-01,78026,1472,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2002.58,"{\""seasonal\"": \""8%\""}",95539,0,"""Africa""" +2023-08-12,78027,5039,"[\""Phone\""]",1342.03,{},90857,1,"""Africa""" +2024-09-20,78028,2397,"[\""Monitor\""]",3102.76,"{\""loyalty\"": \""15%\""}",6361,0,"""South America""" +2023-07-02,78029,6493,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2831.79,"{\""seasonal\"": \""30%\""}",235124,1,"""Europe""" +2024-08-07,78030,935,"[\""Tablet\""]",2479.02,"{\"": \""7%\""}",78263,0,"""Asia""" +2024-09-16,78031,1832,"[\""Wireless Mouse\"", \""Charger\""]",3370.17,{},137317,0,"""Africa""" +2024-05-29,78032,8675,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2515.08,{},227902,0,"""South America""" +2023-06-07,78033,5777,"[\""Keyboard\"", \""Tablet\""]",2642.16,{},78458,0,"""Europe""" +2024-11-14,78034,6604,"[\""Charger\"", \""Laptop\""]",347.48,{},49644,1,"""Asia""" +2024-09-16,78035,774,"[\""Phone\""]",4334.58,{},4003,1,"""North America""" +2024-10-08,78036,5417,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",135.87,"{\""loyalty\"": \""6%\""}",52630,0,"""South America""" +2024-07-26,78037,2416,"[\""Keyboard\"", \""Headphones\""]",2911.78,"{\""promo\"": \""29%\""}",81300,1,"""South America""" +2024-05-15,78038,6253,"[\""Charger\""]",3685.72,{},223668,0,"""South America""" +2023-08-18,78039,1984,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4922.68,"{\""seasonal\"": \""10%\""}",272526,0,"""North America""" +2024-01-06,78040,3489,"[\""Charger\""]",1272.79,"{\""promo\"": \""14%\""}",146300,1,"""South America""" +2024-10-22,78041,9455,"[\""Tablet\""]",2927.22,{},7433,1,"""Europe""" +2024-09-15,78042,3248,"[\""Charger\""]",1162.67,{},183898,1,"""Europe""" +2023-03-20,78043,1781,"[\""Laptop\"", \""Monitor\""]",2356.73,"{\""loyalty\"": \""10%\""}",244508,0,"""North America""" +2024-07-09,78044,3571,"[\""Phone\"", \""Headphones\""]",2252.44,{},87221,0,"""Europe""" +2024-08-06,78045,508,"[\""Laptop\""]",62.79,{},163641,1,"""North America""" +2024-03-01,78046,9094,"[\""Keyboard\"", \""Phone\""]",4936.13,{},285788,0,"""Asia""" +2023-05-30,78047,8515,"[\""Headphones\""]",4552.6,"{\"": \""23%\""}",207558,0,"""North America""" +2023-12-16,78048,1087,"[\""Tablet\""]",2556.45,"{\""loyalty\"": \""14%\""}",250382,1,"""South America""" +2023-01-20,78049,8073,"[\""Laptop\"", \""Phone\""]",1239.23,"{\""loyalty\"": \""27%\""}",144932,1,"""Europe""" +2023-09-04,78050,7217,"[\""Monitor\""]",472.67,{},28032,0,"""Africa""" +2023-10-28,78051,5208,"[\""Laptop\"", \""Keyboard\""]",2735.13,{},60916,1,"""Asia""" +2024-12-24,78052,8191,"[\""Phone\""]",3487.28,"{\""promo\"": \""9%\""}",265335,1,"""South America""" +2023-12-15,78053,3315,"[\""Keyboard\""]",2329.36,"{\""seasonal\"": \""17%\""}",263403,0,"""Africa""" +2023-12-13,78054,4844,"[\""Wireless Mouse\""]",1777.07,"{\"": \""18%\""}",233321,0,"""South America""" +2023-08-09,78055,5593,"[\""Laptop\"", \""Headphones\""]",1827.27,{},16625,1,"""Asia""" +2023-01-11,78056,2231,"[\""Keyboard\"", \""Charger\""]",4752.11,"{\""seasonal\"": \""26%\""}",186791,1,"""Europe""" +2024-10-22,78057,1,"[\""Charger\""]",4610.59,{},97941,0,"""North America""" +2023-06-11,78058,2227,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2349.66,{},82935,0,"""Africa""" +2024-06-19,78059,3408,"[\""Keyboard\""]",839.8,"{\""seasonal\"": \""11%\""}",173821,0,"""Africa""" +2024-10-10,78060,7834,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",623.61,{},106563,1,"""Africa""" +2024-08-16,78061,2850,"[\""Wireless Mouse\"", \""Charger\""]",1929.35,{},145850,1,"""North America""" +2023-11-16,78062,9062,"[\""Headphones\""]",4014.07,"{\"": \""8%\""}",75899,0,"""Europe""" +2024-10-01,78063,3482,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",105.56,{},140816,1,"""North America""" +2023-10-29,78064,1619,"[\""Laptop\"", \""Phone\""]",2896.69,"{\""loyalty\"": \""9%\""}",224602,0,"""Africa""" +2024-12-01,78065,1515,"[\""Tablet\"", \""Wireless Mouse\""]",4870.32,"{\"": \""12%\""}",242256,1,"""South America""" +2024-10-17,78066,2622,"[\""Charger\"", \""Laptop\""]",482.17,{},197605,0,"""Asia""" +2023-09-04,78067,1355,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1492.42,{},3477,1,"""Europe""" +2023-05-15,78068,3712,"[\""Charger\"", \""Tablet\""]",1288.12,{},93047,1,"""South America""" +2023-07-31,78069,6899,"[\""Tablet\""]",971.72,{},168114,0,"""Africa""" +2024-05-23,78070,7137,"[\""Tablet\"", \""Wireless Mouse\""]",4391.43,{},146471,1,"""North America""" +2023-12-23,78071,1050,"[\""Wireless Mouse\""]",2613.08,"{\""seasonal\"": \""20%\""}",171915,1,"""Africa""" +2023-12-09,78072,7333,"[\""Keyboard\""]",2224.8,{},217737,1,"""Africa""" +2023-03-12,78073,9211,"[\""Headphones\"", \""Monitor\""]",1567.74,"{\""seasonal\"": \""21%\""}",131182,0,"""Asia""" +2024-09-13,78074,9637,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",598.2,"{\""seasonal\"": \""14%\""}",187483,0,"""Asia""" +2023-12-23,78075,3428,"[\""Charger\""]",2246.51,{},276165,1,"""Africa""" +2024-05-19,78076,3267,"[\""Laptop\""]",4898.22,"{\""promo\"": \""22%\""}",161422,1,"""Europe""" +2024-02-22,78077,9317,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2978.33,{},247973,1,"""North America""" +2023-06-12,78078,3242,"[\""Wireless Mouse\"", \""Headphones\""]",3429.24,{},276360,0,"""North America""" +2024-03-01,78079,651,"[\""Wireless Mouse\""]",1106.34,"{\"": \""15%\""}",182822,0,"""Asia""" +2023-09-19,78080,7151,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1092.09,"{\"": \""19%\""}",74788,1,"""Europe""" +2024-05-14,78081,7912,"[\""Phone\""]",2730.55,{},112392,0,"""Africa""" +2024-04-29,78082,9989,"[\""Laptop\""]",4820.39,{},280569,1,"""Europe""" +2024-01-03,78083,7937,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3533.16,{},155522,0,"""Africa""" +2023-08-09,78084,2460,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2742.67,{},298014,0,"""Asia""" +2023-05-14,78085,7828,"[\""Phone\"", \""Headphones\""]",2372.18,"{\""seasonal\"": \""8%\""}",26989,1,"""Europe""" +2024-04-20,78086,520,"[\""Monitor\""]",4289.7,"{\"": \""20%\""}",262342,1,"""South America""" +2024-07-21,78087,33,"[\""Laptop\"", \""Monitor\""]",1513.29,"{\""loyalty\"": \""20%\""}",138232,0,"""Asia""" +2023-04-13,78088,9820,"[\""Wireless Mouse\"", \""Monitor\""]",2315.36,"{\""seasonal\"": \""29%\""}",41135,0,"""Europe""" +2023-04-24,78089,6929,"[\""Monitor\""]",2520.42,{},12097,1,"""South America""" +2024-04-22,78090,5865,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2550.28,"{\"": \""20%\""}",144381,1,"""North America""" +2024-06-29,78091,9962,"[\""Laptop\"", \""Charger\""]",4335.85,{},240521,1,"""South America""" +2023-06-30,78092,3595,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",570.56,{},51286,1,"""South America""" +2023-01-11,78093,9481,"[\""Tablet\"", \""Monitor\""]",1225.69,"{\""seasonal\"": \""17%\""}",267869,1,"""South America""" +2023-12-28,78094,8169,"[\""Tablet\"", \""Monitor\""]",2834.62,"{\""promo\"": \""14%\""}",108660,1,"""North America""" +2023-08-23,78095,3787,"[\""Charger\""]",590.37,{},10196,1,"""North America""" +2023-10-03,78096,3045,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1275.78,{},7053,1,"""Africa""" +2023-04-29,78097,7732,"[\""Keyboard\"", \""Charger\""]",4343.46,{},55100,0,"""North America""" +2023-11-18,78098,9403,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",543.59,"{\""promo\"": \""19%\""}",25541,1,"""South America""" +2023-12-30,78099,1848,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2988.29,"{\""seasonal\"": \""30%\""}",8301,1,"""Europe""" +2024-02-15,78100,798,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2825.02,"{\""loyalty\"": \""10%\""}",205385,0,"""South America""" +2024-10-10,78101,446,"[\""Charger\""]",3329.69,{},68677,0,"""North America""" +2024-06-08,78102,1548,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",760.67,{},7830,0,"""North America""" +2023-12-21,78103,7356,"[\""Phone\""]",1687.33,{},155579,1,"""Europe""" +2023-03-30,78104,7923,"[\""Laptop\"", \""Phone\""]",3550.31,{},110701,0,"""Africa""" +2024-01-04,78105,4735,"[\""Monitor\"", \""Phone\""]",1802.33,"{\""seasonal\"": \""30%\""}",268968,1,"""North America""" +2024-04-05,78106,3187,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4828.29,{},171891,0,"""Asia""" +2024-12-02,78107,6039,"[\""Wireless Mouse\""]",4704.56,{},161055,1,"""Asia""" +2024-05-23,78108,14,"[\""Laptop\"", \""Wireless Mouse\""]",4910.93,"{\""promo\"": \""27%\""}",131831,0,"""Africa""" +2024-05-14,78109,1567,"[\""Charger\"", \""Wireless Mouse\""]",425.74,{},269764,1,"""North America""" +2023-11-11,78110,8973,"[\""Tablet\""]",53.21,"{\"": \""13%\""}",60413,1,"""North America""" +2023-06-05,78111,3888,"[\""Monitor\"", \""Charger\""]",3022.88,{},160914,1,"""Africa""" +2023-07-11,78112,1974,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2355.02,{},251117,1,"""Asia""" +2023-10-09,78113,6357,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4658.08,{},293024,1,"""North America""" +2024-04-03,78114,795,"[\""Tablet\""]",3006.06,"{\""loyalty\"": \""21%\""}",155244,1,"""South America""" +2024-07-08,78115,8309,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3078.43,{},21720,0,"""South America""" +2023-04-25,78116,69,"[\""Phone\"", \""Headphones\""]",3189.34,"{\"": \""9%\""}",167614,0,"""Europe""" +2024-03-24,78117,2844,"[\""Laptop\""]",1581.59,{},270745,1,"""Africa""" +2024-02-14,78118,7566,"[\""Monitor\""]",2971.49,{},275815,1,"""Africa""" +2024-12-20,78119,1672,"[\""Tablet\""]",4284.78,{},298446,0,"""Asia""" +2023-06-02,78120,7682,"[\""Headphones\"", \""Monitor\""]",392.24,"{\""seasonal\"": \""17%\""}",15418,0,"""Asia""" +2023-05-03,78121,3603,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3167.98,"{\""promo\"": \""16%\""}",70701,1,"""Africa""" +2024-01-14,78122,6694,"[\""Keyboard\""]",1222.56,"{\"": \""30%\""}",4659,0,"""Asia""" +2023-09-25,78123,3995,"[\""Monitor\"", \""Phone\""]",397.56,{},295262,0,"""Africa""" +2023-09-10,78124,2808,"[\""Charger\""]",4929.47,"{\""loyalty\"": \""23%\""}",69747,1,"""South America""" +2023-12-30,78125,7439,"[\""Headphones\"", \""Tablet\""]",4128.52,"{\""seasonal\"": \""17%\""}",86256,0,"""Asia""" +2023-06-18,78126,6492,"[\""Wireless Mouse\""]",1487.23,{},171828,0,"""South America""" +2024-12-30,78127,9496,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",263.47,"{\"": \""25%\""}",131544,1,"""Asia""" +2023-07-28,78128,2283,"[\""Charger\""]",1973.39,"{\""promo\"": \""9%\""}",169435,0,"""Europe""" +2023-04-18,78129,7500,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2444.29,{},287363,0,"""Europe""" +2023-10-11,78130,2623,"[\""Charger\""]",1481.33,{},224533,1,"""Africa""" +2024-10-17,78131,2328,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1214.19,{},229032,1,"""South America""" +2023-08-15,78132,6741,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2925.24,{},133712,0,"""Europe""" +2023-08-18,78133,735,"[\""Charger\"", \""Tablet\""]",4937.4,{},121145,0,"""North America""" +2024-03-23,78134,3427,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1266.73,"{\"": \""25%\""}",207619,0,"""South America""" +2024-07-16,78135,8299,"[\""Charger\"", \""Headphones\""]",3192.33,{},103080,0,"""South America""" +2023-06-13,78136,6147,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1567.71,"{\""promo\"": \""6%\""}",161160,0,"""North America""" +2024-06-12,78137,2634,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1464.12,{},66942,1,"""North America""" +2023-07-17,78138,9245,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2927.49,{},192493,0,"""Asia""" +2023-06-16,78139,5066,"[\""Monitor\""]",2596.46,{},215289,1,"""Asia""" +2023-03-04,78140,3847,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3765.31,"{\""seasonal\"": \""23%\""}",122744,0,"""South America""" +2023-08-02,78141,9940,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4555.61,"{\""promo\"": \""11%\""}",68601,1,"""Europe""" +2024-07-16,78142,160,"[\""Headphones\"", \""Phone\"", \""Charger\""]",61.13,{},143958,1,"""North America""" +2024-02-04,78143,4396,"[\""Monitor\"", \""Keyboard\""]",248.65,"{\""loyalty\"": \""9%\""}",236622,1,"""Europe""" +2023-09-22,78144,1099,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1122.21,"{\""loyalty\"": \""9%\""}",89481,0,"""Europe""" +2023-06-19,78145,5864,"[\""Tablet\""]",2681.29,"{\""promo\"": \""24%\""}",231027,1,"""North America""" +2023-01-01,78146,4386,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2596.34,"{\""promo\"": \""15%\""}",231303,1,"""South America""" +2024-10-28,78147,1897,"[\""Keyboard\""]",2721.91,"{\""promo\"": \""22%\""}",246079,0,"""North America""" +2024-03-09,78148,7020,"[\""Phone\""]",2799.33,"{\"": \""18%\""}",123585,0,"""Africa""" +2024-03-19,78149,6789,"[\""Phone\"", \""Laptop\""]",1771.14,"{\""seasonal\"": \""15%\""}",28831,1,"""North America""" +2023-02-19,78150,532,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2517.79,{},205471,1,"""North America""" +2023-05-17,78151,6203,"[\""Monitor\""]",2613.5,{},261324,0,"""Asia""" +2023-11-23,78152,524,"[\""Tablet\""]",3798.15,"{\"": \""11%\""}",117577,0,"""Asia""" +2024-06-08,78153,6349,"[\""Charger\""]",2882.39,"{\""loyalty\"": \""22%\""}",227843,1,"""Africa""" +2023-03-20,78154,6432,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",496.98,{},89512,0,"""South America""" +2024-04-09,78155,2606,"[\""Monitor\""]",2756.19,{},203250,1,"""Africa""" +2023-01-11,78156,2982,"[\""Phone\"", \""Monitor\""]",2001.29,"{\""promo\"": \""18%\""}",15975,0,"""Europe""" +2023-05-27,78157,7743,"[\""Wireless Mouse\"", \""Tablet\""]",1960.4,"{\""promo\"": \""23%\""}",227179,0,"""North America""" +2024-07-11,78158,2079,"[\""Keyboard\"", \""Tablet\""]",1570.36,{},43272,0,"""Europe""" +2024-12-22,78159,4248,"[\""Wireless Mouse\"", \""Tablet\""]",4384.17,"{\""seasonal\"": \""7%\""}",82717,0,"""Africa""" +2023-09-04,78160,9922,"[\""Wireless Mouse\""]",3405.51,{},168148,0,"""North America""" +2023-03-04,78161,3476,"[\""Wireless Mouse\""]",2509.35,{},212103,1,"""Europe""" +2023-07-24,78162,5983,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2876.26,{},269358,0,"""Asia""" +2023-10-23,78163,5209,"[\""Laptop\""]",3062.31,{},297048,1,"""North America""" +2024-10-15,78164,230,"[\""Tablet\"", \""Wireless Mouse\""]",2623.32,{},105509,0,"""South America""" +2023-03-03,78165,3566,"[\""Keyboard\""]",4744.58,"{\""seasonal\"": \""9%\""}",161355,1,"""South America""" +2024-01-13,78166,6213,"[\""Keyboard\""]",566.14,"{\""seasonal\"": \""12%\""}",81628,1,"""Europe""" +2023-05-29,78167,1013,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",925.83,"{\"": \""17%\""}",200368,1,"""Africa""" +2023-06-22,78168,518,"[\""Charger\"", \""Laptop\""]",1263.05,"{\""promo\"": \""22%\""}",298056,1,"""Africa""" +2023-04-22,78169,9124,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3229.34,"{\"": \""8%\""}",30228,1,"""Europe""" +2023-11-22,78170,485,"[\""Wireless Mouse\"", \""Charger\""]",3874.31,{},132482,0,"""South America""" +2023-05-07,78171,5068,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",365.19,{},102531,1,"""North America""" +2024-05-05,78172,624,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",640.74,{},42802,1,"""Africa""" +2024-11-12,78173,8291,"[\""Wireless Mouse\""]",2518.0,{},163321,0,"""South America""" +2023-02-20,78174,6627,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4044.02,{},287140,1,"""North America""" +2023-12-15,78175,6143,"[\""Wireless Mouse\"", \""Laptop\""]",1984.08,"{\""loyalty\"": \""23%\""}",76583,0,"""South America""" +2024-11-27,78176,2333,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1803.25,"{\"": \""5%\""}",71776,1,"""Africa""" +2024-04-05,78177,5325,"[\""Charger\"", \""Headphones\""]",887.64,"{\"": \""20%\""}",288054,1,"""North America""" +2024-07-13,78178,2091,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",173.45,"{\""seasonal\"": \""17%\""}",204457,1,"""South America""" +2023-01-30,78179,5023,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4143.12,{},14443,0,"""Europe""" +2023-01-13,78180,5064,"[\""Phone\""]",1404.67,"{\""promo\"": \""12%\""}",149858,0,"""Africa""" +2023-01-02,78181,8952,"[\""Phone\"", \""Monitor\""]",2285.05,{},238669,0,"""South America""" +2024-11-09,78182,444,"[\""Charger\""]",2016.17,{},58508,0,"""North America""" +2024-12-22,78183,9888,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",681.76,{},285857,0,"""Asia""" +2023-09-06,78184,5033,"[\""Monitor\"", \""Phone\""]",2464.52,"{\""seasonal\"": \""5%\""}",266441,1,"""Africa""" +2023-05-29,78185,3491,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2431.56,"{\""seasonal\"": \""9%\""}",85856,1,"""North America""" +2023-06-07,78186,2455,"[\""Monitor\"", \""Phone\""]",2333.68,"{\"": \""7%\""}",213034,1,"""Africa""" +2023-01-15,78187,3375,"[\""Monitor\""]",2234.75,{},285580,0,"""Africa""" +2024-04-13,78188,9395,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3949.49,{},175782,1,"""Africa""" +2024-08-17,78189,9272,"[\""Keyboard\""]",706.4,"{\"": \""21%\""}",261673,1,"""Asia""" +2024-10-27,78190,1982,"[\""Tablet\"", \""Phone\""]",1689.56,"{\""seasonal\"": \""16%\""}",190927,0,"""South America""" +2023-12-14,78191,2284,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1879.42,"{\""loyalty\"": \""12%\""}",55499,1,"""Asia""" +2023-02-04,78192,1594,"[\""Wireless Mouse\""]",4953.33,"{\""promo\"": \""6%\""}",176455,1,"""South America""" +2024-03-04,78193,6961,"[\""Tablet\""]",2308.16,{},99851,1,"""Europe""" +2024-12-27,78194,6469,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2832.11,{},85819,0,"""Europe""" +2023-01-07,78195,759,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2785.87,"{\""promo\"": \""23%\""}",139238,0,"""Asia""" +2023-07-12,78196,2920,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3275.42,{},130306,0,"""Europe""" +2023-10-14,78197,2917,"[\""Phone\"", \""Laptop\""]",4707.12,"{\""seasonal\"": \""19%\""}",186243,1,"""Africa""" +2024-08-06,78198,5297,"[\""Wireless Mouse\""]",4473.34,"{\""promo\"": \""13%\""}",9592,1,"""South America""" +2024-11-24,78199,2053,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4392.45,"{\"": \""25%\""}",235553,0,"""South America""" +2024-10-02,78200,2035,"[\""Headphones\""]",1952.17,"{\""promo\"": \""30%\""}",274393,1,"""Europe""" +2024-12-03,78201,1003,"[\""Monitor\"", \""Wireless Mouse\""]",1994.61,"{\"": \""25%\""}",95652,0,"""North America""" +2024-11-02,78202,1637,"[\""Tablet\"", \""Wireless Mouse\""]",962.94,"{\""loyalty\"": \""21%\""}",249181,1,"""Africa""" +2023-05-29,78203,7027,"[\""Monitor\""]",1871.4,"{\""loyalty\"": \""16%\""}",275936,0,"""Africa""" +2024-11-17,78204,3738,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4938.7,{},277980,1,"""Asia""" +2023-08-19,78205,9250,"[\""Headphones\"", \""Wireless Mouse\""]",198.29,"{\""loyalty\"": \""13%\""}",30392,1,"""South America""" +2023-01-10,78206,2324,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",374.26,"{\""loyalty\"": \""30%\""}",238642,1,"""North America""" +2024-03-20,78207,1114,"[\""Laptop\""]",3224.34,{},255850,1,"""Asia""" +2024-06-07,78208,8760,"[\""Tablet\"", \""Monitor\""]",4758.36,{},93872,0,"""Africa""" +2023-07-09,78209,5241,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2530.1,"{\"": \""7%\""}",13963,1,"""North America""" +2024-03-25,78210,1749,"[\""Monitor\""]",822.47,"{\""loyalty\"": \""29%\""}",102536,1,"""North America""" +2024-08-05,78211,638,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2645.32,"{\""loyalty\"": \""28%\""}",202307,1,"""Asia""" +2024-12-04,78212,7455,"[\""Phone\"", \""Charger\""]",540.44,{},140170,1,"""Asia""" +2024-08-09,78213,6658,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4555.46,"{\""promo\"": \""24%\""}",22154,1,"""Europe""" +2024-06-20,78214,254,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2314.91,{},112054,0,"""Europe""" +2023-11-17,78215,6880,"[\""Laptop\""]",4739.38,{},180576,1,"""South America""" +2023-01-07,78216,6863,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4254.37,{},249892,0,"""Asia""" +2024-08-24,78217,4581,"[\""Headphones\""]",4369.83,{},73524,0,"""North America""" +2024-10-27,78218,1827,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4409.43,"{\""loyalty\"": \""7%\""}",244414,1,"""Asia""" +2024-02-25,78219,1676,"[\""Monitor\""]",1453.55,{},121814,1,"""North America""" +2023-10-23,78220,1660,"[\""Keyboard\"", \""Headphones\""]",2379.85,{},1514,1,"""North America""" +2023-11-26,78221,4369,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1773.28,"{\""loyalty\"": \""5%\""}",225580,1,"""Africa""" +2024-04-09,78222,2452,"[\""Headphones\"", \""Tablet\""]",4915.57,{},204779,0,"""South America""" +2024-08-05,78223,4624,"[\""Headphones\"", \""Tablet\""]",1412.16,"{\""loyalty\"": \""18%\""}",179586,1,"""South America""" +2024-04-21,78224,581,"[\""Wireless Mouse\""]",4345.43,{},33320,1,"""South America""" +2024-04-30,78225,145,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1365.27,{},133984,0,"""North America""" +2024-01-16,78226,4301,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4235.45,{},34079,1,"""Africa""" +2023-03-17,78227,6898,"[\""Charger\"", \""Tablet\""]",1185.12,"{\""seasonal\"": \""9%\""}",241689,0,"""Africa""" +2023-06-13,78228,2077,"[\""Keyboard\"", \""Headphones\""]",789.41,"{\"": \""30%\""}",28256,0,"""Asia""" +2024-04-15,78229,1839,"[\""Laptop\"", \""Phone\""]",4713.5,"{\"": \""13%\""}",188357,0,"""Africa""" +2024-06-09,78230,4608,"[\""Charger\"", \""Laptop\""]",2149.97,"{\""promo\"": \""11%\""}",183133,1,"""North America""" +2023-03-30,78231,1979,"[\""Laptop\"", \""Keyboard\""]",2442.27,{},172942,0,"""South America""" +2024-02-12,78232,4073,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1161.26,{},130807,1,"""Africa""" +2024-05-12,78233,8713,"[\""Phone\""]",1984.39,"{\""promo\"": \""7%\""}",135812,1,"""Africa""" +2023-01-03,78234,4973,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3934.51,"{\""seasonal\"": \""24%\""}",259272,0,"""Africa""" +2023-08-10,78235,5417,"[\""Monitor\"", \""Laptop\""]",1619.11,{},217127,0,"""Asia""" +2024-05-14,78236,94,"[\""Phone\"", \""Monitor\""]",4659.04,"{\""loyalty\"": \""8%\""}",8191,1,"""Africa""" +2024-03-31,78237,1560,"[\""Tablet\""]",1089.98,"{\""promo\"": \""28%\""}",241391,0,"""South America""" +2024-09-02,78238,5549,"[\""Keyboard\"", \""Monitor\""]",4856.37,{},279295,0,"""Asia""" +2023-04-07,78239,8050,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2213.89,"{\""loyalty\"": \""28%\""}",252462,0,"""North America""" +2023-01-08,78240,186,"[\""Headphones\"", \""Charger\""]",3051.29,{},124250,1,"""Africa""" +2023-12-17,78241,981,"[\""Keyboard\"", \""Tablet\""]",2413.66,"{\""seasonal\"": \""26%\""}",220229,0,"""South America""" +2023-01-01,78242,3326,"[\""Tablet\""]",2838.49,"{\""loyalty\"": \""25%\""}",275060,1,"""Europe""" +2023-09-04,78243,5866,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4403.88,"{\"": \""16%\""}",293443,0,"""South America""" +2023-04-16,78244,485,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4030.55,{},259583,0,"""North America""" +2024-02-13,78245,9030,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2653.83,{},14044,1,"""North America""" +2024-06-30,78246,8819,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",865.91,{},268575,1,"""North America""" +2023-06-27,78247,5892,"[\""Headphones\"", \""Keyboard\""]",2015.22,"{\"": \""26%\""}",262498,1,"""South America""" +2023-03-11,78248,403,"[\""Laptop\"", \""Monitor\""]",104.84,{},298616,0,"""North America""" +2023-11-17,78249,6119,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2224.38,{},186423,0,"""Europe""" +2023-10-24,78250,4767,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1000.15,"{\"": \""20%\""}",275909,0,"""North America""" +2023-08-06,78251,3226,"[\""Monitor\"", \""Keyboard\""]",106.04,{},243469,1,"""North America""" +2023-01-25,78252,4429,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2108.7,"{\"": \""19%\""}",165447,1,"""South America""" +2023-11-04,78253,3593,"[\""Keyboard\"", \""Phone\""]",1800.42,"{\""promo\"": \""21%\""}",90813,0,"""Africa""" +2024-02-29,78254,2050,"[\""Headphones\"", \""Phone\""]",1349.28,{},92346,0,"""Africa""" +2024-04-14,78255,6002,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",584.62,"{\"": \""30%\""}",86026,0,"""Europe""" +2023-05-21,78256,5918,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2592.54,"{\""loyalty\"": \""15%\""}",5545,0,"""Europe""" +2024-07-07,78257,7963,"[\""Monitor\""]",4362.11,{},123087,0,"""Europe""" +2023-03-18,78258,9899,"[\""Headphones\""]",3703.19,"{\"": \""15%\""}",108582,1,"""Asia""" +2023-09-08,78259,7322,"[\""Tablet\"", \""Keyboard\""]",4307.48,{},70217,0,"""South America""" +2024-09-13,78260,5454,"[\""Monitor\"", \""Charger\""]",4021.96,{},70764,0,"""Asia""" +2023-02-04,78261,8835,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",215.25,"{\"": \""16%\""}",82651,0,"""Asia""" +2023-02-18,78262,6121,"[\""Monitor\""]",1129.62,{},264865,0,"""South America""" +2023-02-17,78263,8454,"[\""Monitor\"", \""Phone\""]",130.32,"{\"": \""10%\""}",127113,0,"""Asia""" +2023-09-11,78264,1865,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4902.57,"{\""promo\"": \""5%\""}",81183,0,"""Africa""" +2023-06-26,78265,8500,"[\""Laptop\""]",1275.44,{},139717,0,"""Europe""" +2023-12-07,78266,7773,"[\""Monitor\"", \""Tablet\""]",515.78,{},195760,1,"""Africa""" +2023-01-28,78267,1982,"[\""Phone\"", \""Laptop\""]",963.31,{},141079,0,"""Asia""" +2023-11-13,78268,786,"[\""Charger\"", \""Tablet\""]",1259.93,"{\""loyalty\"": \""7%\""}",25435,0,"""South America""" +2023-05-10,78269,4256,"[\""Tablet\"", \""Phone\""]",4447.99,{},220544,0,"""North America""" +2023-03-05,78270,1487,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4182.45,{},206172,0,"""Africa""" +2024-04-15,78271,9152,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1374.63,{},59727,0,"""South America""" +2024-07-21,78272,313,"[\""Charger\"", \""Monitor\"", \""Phone\""]",318.92,"{\""loyalty\"": \""29%\""}",51007,1,"""Europe""" +2023-04-06,78273,6811,"[\""Tablet\""]",3577.45,{},59016,0,"""North America""" +2023-08-04,78274,8637,"[\""Laptop\"", \""Keyboard\""]",4875.05,"{\""promo\"": \""14%\""}",163801,1,"""Europe""" +2023-08-04,78275,739,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1167.67,{},269545,1,"""Africa""" +2024-04-03,78276,9680,"[\""Headphones\"", \""Laptop\""]",820.77,{},218934,0,"""Asia""" +2023-01-31,78277,6814,"[\""Tablet\""]",3297.52,"{\"": \""29%\""}",257857,1,"""Africa""" +2024-05-30,78278,4804,"[\""Laptop\"", \""Wireless Mouse\""]",2033.97,"{\"": \""24%\""}",122849,0,"""South America""" +2023-04-17,78279,3844,"[\""Laptop\""]",2661.65,{},269596,0,"""Africa""" +2023-03-05,78280,6732,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4638.61,"{\"": \""29%\""}",7692,1,"""North America""" +2024-09-20,78281,5609,"[\""Headphones\"", \""Tablet\""]",977.33,"{\""promo\"": \""9%\""}",65808,0,"""Africa""" +2024-10-15,78282,6254,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3779.57,{},119753,1,"""North America""" +2024-06-04,78283,8622,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",983.57,"{\""loyalty\"": \""8%\""}",100606,1,"""North America""" +2023-02-22,78284,9100,"[\""Laptop\""]",2186.88,{},269446,1,"""South America""" +2024-12-30,78285,2882,"[\""Phone\"", \""Tablet\""]",4269.5,"{\""loyalty\"": \""30%\""}",186579,1,"""Africa""" +2024-08-19,78286,8766,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2229.66,"{\""seasonal\"": \""24%\""}",208351,1,"""South America""" +2023-07-24,78287,4486,"[\""Charger\""]",850.19,"{\"": \""11%\""}",35609,1,"""South America""" +2023-02-12,78288,204,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3134.11,{},103880,1,"""South America""" +2023-05-03,78289,4326,"[\""Charger\"", \""Keyboard\""]",677.36,{},159521,1,"""South America""" +2024-11-08,78290,5764,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1705.84,{},68319,1,"""Asia""" +2023-02-24,78291,6551,"[\""Headphones\""]",2179.36,{},279844,1,"""Africa""" +2023-03-20,78292,6613,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2912.62,"{\""seasonal\"": \""16%\""}",112097,0,"""Asia""" +2023-09-29,78293,2025,"[\""Wireless Mouse\"", \""Headphones\""]",3446.64,{},15544,1,"""Africa""" +2023-11-29,78294,7040,"[\""Phone\""]",3149.76,{},185876,0,"""North America""" +2024-08-26,78295,4374,"[\""Tablet\""]",2716.12,{},281060,1,"""Asia""" +2024-07-22,78296,1949,"[\""Wireless Mouse\""]",695.59,{},21549,1,"""Africa""" +2023-06-26,78297,3368,"[\""Tablet\""]",2260.92,{},113844,1,"""Asia""" +2023-08-03,78298,471,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1932.29,{},85795,1,"""Asia""" +2023-12-18,78299,6741,"[\""Tablet\"", \""Charger\""]",3172.66,"{\""seasonal\"": \""18%\""}",97963,1,"""Europe""" +2023-12-28,78300,1424,"[\""Keyboard\""]",3992.05,{},1488,1,"""South America""" +2024-09-05,78301,519,"[\""Phone\""]",2608.43,"{\""seasonal\"": \""13%\""}",148074,0,"""Europe""" +2024-10-27,78302,8355,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1165.54,{},112589,1,"""South America""" +2023-12-18,78303,4868,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4557.35,{},162498,1,"""South America""" +2023-08-09,78304,9362,"[\""Laptop\""]",877.94,"{\""loyalty\"": \""29%\""}",215037,0,"""Africa""" +2023-11-18,78305,1316,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3328.54,"{\"": \""5%\""}",32722,1,"""South America""" +2024-05-19,78306,3239,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3414.13,"{\""promo\"": \""5%\""}",216890,0,"""North America""" +2023-02-22,78307,6965,"[\""Tablet\"", \""Headphones\""]",1117.7,{},56108,0,"""South America""" +2023-10-30,78308,6049,"[\""Monitor\"", \""Phone\""]",3542.05,"{\""seasonal\"": \""27%\""}",32299,1,"""Asia""" +2023-05-06,78309,6448,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",375.13,"{\"": \""18%\""}",87077,0,"""Africa""" +2024-12-03,78310,5656,"[\""Charger\""]",4923.66,"{\""seasonal\"": \""12%\""}",68743,1,"""Asia""" +2024-03-01,78311,6801,"[\""Keyboard\"", \""Phone\""]",1402.95,"{\""loyalty\"": \""18%\""}",214493,0,"""Europe""" +2024-08-30,78312,5113,"[\""Wireless Mouse\""]",714.96,{},223026,1,"""Africa""" +2024-12-20,78313,7918,"[\""Wireless Mouse\""]",502.45,"{\""loyalty\"": \""13%\""}",75336,1,"""South America""" +2024-05-10,78314,7774,"[\""Monitor\""]",2088.01,"{\""seasonal\"": \""20%\""}",256299,1,"""Africa""" +2023-12-29,78315,1287,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2916.73,{},197116,0,"""Europe""" +2023-11-26,78316,3928,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2309.69,"{\""seasonal\"": \""19%\""}",129626,0,"""Asia""" +2024-02-20,78317,5868,"[\""Keyboard\"", \""Wireless Mouse\""]",4779.98,{},176409,1,"""Africa""" +2024-07-27,78318,3433,"[\""Phone\"", \""Headphones\""]",1891.59,"{\""loyalty\"": \""27%\""}",249689,0,"""Africa""" +2024-03-03,78319,4090,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2310.89,{},33190,0,"""Africa""" +2024-05-10,78320,1285,"[\""Keyboard\""]",4671.88,"{\""seasonal\"": \""22%\""}",272274,1,"""South America""" +2023-05-01,78321,2675,"[\""Laptop\"", \""Wireless Mouse\""]",4907.65,{},38553,1,"""Europe""" +2023-04-09,78322,9780,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",452.63,"{\""promo\"": \""18%\""}",177110,0,"""Asia""" +2024-07-07,78323,3925,"[\""Headphones\""]",2408.93,{},246786,0,"""Europe""" +2023-09-03,78324,5419,"[\""Charger\"", \""Tablet\""]",2508.56,{},3099,1,"""South America""" +2023-05-15,78325,7479,"[\""Tablet\"", \""Charger\""]",227.98,{},158440,0,"""South America""" +2023-10-24,78326,3760,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4598.63,"{\""seasonal\"": \""10%\""}",120922,1,"""South America""" +2023-07-27,78327,8275,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4645.43,"{\""seasonal\"": \""22%\""}",122606,1,"""North America""" +2023-06-23,78328,897,"[\""Monitor\""]",4237.19,"{\""seasonal\"": \""11%\""}",133082,0,"""Africa""" +2024-10-16,78329,7417,"[\""Laptop\""]",131.43,"{\"": \""12%\""}",14042,0,"""Africa""" +2024-08-07,78330,5869,"[\""Keyboard\""]",538.81,"{\""seasonal\"": \""15%\""}",104903,1,"""South America""" +2023-06-24,78331,1098,"[\""Tablet\"", \""Charger\""]",2001.76,"{\"": \""26%\""}",55472,1,"""Europe""" +2024-07-24,78332,9932,"[\""Laptop\"", \""Charger\""]",2176.78,"{\""seasonal\"": \""18%\""}",290070,1,"""South America""" +2023-05-31,78333,7601,"[\""Headphones\""]",1606.35,"{\""loyalty\"": \""13%\""}",291978,0,"""Europe""" +2024-09-14,78334,3101,"[\""Wireless Mouse\""]",1966.71,{},286592,1,"""Europe""" +2024-03-09,78335,2312,"[\""Wireless Mouse\""]",2165.71,"{\"": \""11%\""}",72049,0,"""South America""" +2023-02-17,78336,5026,"[\""Monitor\"", \""Keyboard\""]",751.76,"{\""loyalty\"": \""13%\""}",136710,1,"""North America""" +2023-09-12,78337,9808,"[\""Keyboard\"", \""Phone\""]",4351.27,{},48667,0,"""South America""" +2023-07-10,78338,9602,"[\""Keyboard\""]",644.12,{},281059,1,"""Europe""" +2024-05-24,78339,6435,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2284.99,{},234701,1,"""North America""" +2024-05-14,78340,683,"[\""Monitor\"", \""Wireless Mouse\""]",191.96,"{\""promo\"": \""15%\""}",92785,1,"""North America""" +2023-09-21,78341,7117,"[\""Phone\""]",4209.11,"{\"": \""9%\""}",143059,1,"""North America""" +2023-02-20,78342,5292,"[\""Monitor\"", \""Keyboard\""]",938.15,"{\"": \""24%\""}",10036,0,"""Africa""" +2023-10-20,78343,8162,"[\""Tablet\""]",4836.43,{},269336,1,"""Europe""" +2024-01-12,78344,3193,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3979.54,{},97457,1,"""South America""" +2024-10-30,78345,9676,"[\""Charger\"", \""Keyboard\""]",3695.27,"{\"": \""9%\""}",257860,0,"""Europe""" +2024-12-21,78346,7339,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",258.48,{},223904,0,"""South America""" +2024-04-13,78347,4623,"[\""Keyboard\""]",2008.78,"{\"": \""6%\""}",299150,1,"""North America""" +2023-02-15,78348,979,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4812.29,{},189628,0,"""North America""" +2024-10-25,78349,7319,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1141.41,{},203800,1,"""Asia""" +2023-11-30,78350,7725,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4507.12,"{\""loyalty\"": \""13%\""}",289443,1,"""Europe""" +2024-07-07,78351,2026,"[\""Wireless Mouse\"", \""Keyboard\""]",825.27,{},4016,1,"""Asia""" +2024-07-11,78352,2217,"[\""Wireless Mouse\""]",2413.73,"{\""promo\"": \""15%\""}",65674,1,"""Europe""" +2023-12-02,78353,6721,"[\""Charger\"", \""Monitor\""]",2766.04,"{\""seasonal\"": \""12%\""}",283326,1,"""Africa""" +2023-05-10,78354,3762,"[\""Charger\"", \""Headphones\""]",813.05,"{\"": \""18%\""}",106621,0,"""South America""" +2023-02-12,78355,5272,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",515.22,"{\"": \""12%\""}",273218,1,"""Asia""" +2024-08-24,78356,1705,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2484.49,"{\"": \""12%\""}",45747,0,"""Asia""" +2023-11-23,78357,637,"[\""Keyboard\""]",252.85,{},107140,1,"""Asia""" +2024-02-29,78358,4393,"[\""Wireless Mouse\""]",679.07,"{\""promo\"": \""26%\""}",115928,1,"""South America""" +2023-12-27,78359,8363,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1896.9,{},206764,1,"""South America""" +2024-09-24,78360,8062,"[\""Wireless Mouse\""]",2416.41,"{\""loyalty\"": \""8%\""}",190186,0,"""Africa""" +2024-10-08,78361,6279,"[\""Headphones\"", \""Wireless Mouse\""]",1460.61,{},183702,0,"""Europe""" +2024-04-18,78362,8550,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",336.81,"{\"": \""24%\""}",98327,0,"""Asia""" +2024-04-07,78363,6681,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",253.23,{},10616,1,"""Asia""" +2024-07-28,78364,95,"[\""Charger\"", \""Keyboard\""]",2383.44,{},245902,1,"""North America""" +2024-05-30,78365,3479,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1340.13,"{\""promo\"": \""27%\""}",129170,1,"""North America""" +2024-01-28,78366,8206,"[\""Keyboard\"", \""Wireless Mouse\""]",1652.64,{},128850,1,"""Europe""" +2024-10-21,78367,2256,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",789.34,{},289709,1,"""Africa""" +2024-09-28,78368,7831,"[\""Keyboard\"", \""Laptop\""]",4432.55,"{\""seasonal\"": \""7%\""}",144439,0,"""Africa""" +2023-11-09,78369,7335,"[\""Monitor\"", \""Laptop\""]",3675.33,"{\""seasonal\"": \""10%\""}",172190,1,"""Asia""" +2023-12-07,78370,5027,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2235.19,"{\""promo\"": \""11%\""}",31302,0,"""Asia""" +2023-10-18,78371,9416,"[\""Laptop\""]",780.3,{},156944,0,"""Europe""" +2024-07-31,78372,3830,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3463.42,"{\"": \""17%\""}",96663,1,"""North America""" +2024-11-01,78373,8602,"[\""Tablet\""]",510.8,"{\""loyalty\"": \""29%\""}",105379,1,"""South America""" +2024-05-28,78374,8691,"[\""Tablet\"", \""Monitor\""]",4762.14,"{\"": \""28%\""}",291743,1,"""Africa""" +2023-08-21,78375,7,"[\""Charger\"", \""Monitor\""]",1086.17,"{\""seasonal\"": \""17%\""}",139039,1,"""Africa""" +2023-12-23,78376,920,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",205.31,{},12780,1,"""Europe""" +2023-03-31,78377,8940,"[\""Charger\""]",4946.89,"{\""loyalty\"": \""6%\""}",113589,0,"""South America""" +2024-07-13,78378,3815,"[\""Phone\""]",1669.54,"{\""seasonal\"": \""27%\""}",132808,0,"""North America""" +2024-08-16,78379,3642,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",266.43,{},293751,0,"""Europe""" +2023-11-17,78380,3906,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",173.85,"{\""promo\"": \""22%\""}",182388,0,"""North America""" +2024-07-05,78381,1123,"[\""Laptop\""]",2138.77,{},254335,0,"""Europe""" +2023-11-08,78382,6765,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4262.36,{},60910,0,"""South America""" +2024-08-31,78383,175,"[\""Tablet\"", \""Monitor\""]",2072.56,"{\"": \""13%\""}",298748,0,"""Europe""" +2023-02-01,78384,1573,"[\""Phone\""]",3603.22,"{\""promo\"": \""24%\""}",70390,1,"""Asia""" +2024-09-04,78385,5499,"[\""Phone\"", \""Tablet\""]",2508.16,"{\""seasonal\"": \""11%\""}",208085,0,"""South America""" +2024-07-27,78386,287,"[\""Monitor\"", \""Keyboard\""]",3652.07,"{\"": \""9%\""}",79016,1,"""Africa""" +2023-10-07,78387,447,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3767.45,{},184986,1,"""Europe""" +2024-08-09,78388,7142,"[\""Headphones\"", \""Monitor\""]",2087.04,{},59380,1,"""South America""" +2023-12-19,78389,827,"[\""Wireless Mouse\"", \""Headphones\""]",3435.72,{},10615,1,"""South America""" +2024-01-20,78390,3489,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",879.73,"{\""seasonal\"": \""19%\""}",8653,0,"""Africa""" +2023-09-03,78391,2334,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2085.99,"{\""loyalty\"": \""19%\""}",146634,0,"""South America""" +2023-12-17,78392,2110,"[\""Headphones\"", \""Phone\""]",3213.68,"{\"": \""14%\""}",66668,0,"""North America""" +2024-03-25,78393,1297,"[\""Charger\""]",3982.85,"{\"": \""22%\""}",240895,0,"""Asia""" +2024-01-28,78394,1639,"[\""Headphones\"", \""Charger\""]",2021.12,{},27371,0,"""South America""" +2024-02-11,78395,2834,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3315.54,"{\""loyalty\"": \""8%\""}",39323,1,"""Europe""" +2023-03-13,78396,5476,"[\""Laptop\"", \""Phone\""]",2249.45,"{\""loyalty\"": \""13%\""}",212626,0,"""Asia""" +2023-04-07,78397,136,"[\""Wireless Mouse\""]",4440.6,{},8167,1,"""North America""" +2024-05-05,78398,9049,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",243.57,{},54672,0,"""North America""" +2023-02-02,78399,5316,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2037.1,"{\""promo\"": \""17%\""}",284759,0,"""Asia""" +2023-04-10,78400,910,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3791.62,{},271942,1,"""South America""" +2023-10-15,78401,3753,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2617.82,"{\"": \""17%\""}",171942,1,"""Europe""" +2024-08-01,78402,9805,"[\""Phone\""]",2111.85,"{\""loyalty\"": \""7%\""}",145201,1,"""South America""" +2024-08-07,78403,9713,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2018.7,"{\""loyalty\"": \""6%\""}",122979,1,"""Europe""" +2023-12-26,78404,5797,"[\""Phone\""]",878.6,{},119603,1,"""Europe""" +2024-04-18,78405,8520,"[\""Wireless Mouse\""]",3945.32,{},179512,1,"""Asia""" +2023-03-29,78406,7670,"[\""Monitor\"", \""Laptop\""]",462.5,"{\""loyalty\"": \""18%\""}",283805,1,"""Africa""" +2024-02-13,78407,7512,"[\""Phone\""]",1469.01,{},198299,0,"""Europe""" +2024-06-07,78408,6498,"[\""Monitor\"", \""Wireless Mouse\""]",2345.01,"{\""loyalty\"": \""27%\""}",283760,1,"""Asia""" +2024-09-17,78409,9861,"[\""Monitor\"", \""Headphones\""]",942.32,"{\"": \""27%\""}",236802,0,"""North America""" +2023-01-15,78410,2864,"[\""Monitor\"", \""Tablet\""]",2988.76,"{\"": \""19%\""}",214212,1,"""North America""" +2024-01-09,78411,9975,"[\""Phone\"", \""Wireless Mouse\""]",2058.64,"{\"": \""8%\""}",150509,1,"""North America""" +2024-05-18,78412,4195,"[\""Phone\"", \""Charger\""]",310.31,{},129317,0,"""North America""" +2023-04-28,78413,5452,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3096.19,{},226984,1,"""Europe""" +2024-03-16,78414,2602,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1328.24,{},248119,1,"""Europe""" +2024-10-03,78415,2616,"[\""Tablet\"", \""Headphones\""]",1117.31,{},121856,1,"""Europe""" +2024-05-30,78416,6356,"[\""Charger\""]",3079.17,"{\""loyalty\"": \""11%\""}",144594,1,"""Africa""" +2024-01-05,78417,5772,"[\""Wireless Mouse\""]",1914.37,"{\""seasonal\"": \""25%\""}",175689,1,"""Africa""" +2023-11-20,78418,3288,"[\""Laptop\""]",1475.71,"{\""seasonal\"": \""20%\""}",127205,1,"""North America""" +2024-06-03,78419,7193,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",187.14,{},41790,1,"""North America""" +2024-05-09,78420,5958,"[\""Keyboard\"", \""Wireless Mouse\""]",3228.92,"{\""promo\"": \""21%\""}",240295,0,"""South America""" +2023-05-06,78421,1559,"[\""Charger\"", \""Monitor\""]",3904.74,{},145405,1,"""South America""" +2023-12-15,78422,2705,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2805.52,"{\""seasonal\"": \""9%\""}",164352,1,"""Asia""" +2023-05-08,78423,5178,"[\""Keyboard\"", \""Headphones\""]",1227.32,"{\""loyalty\"": \""20%\""}",216644,1,"""Africa""" +2023-08-27,78424,5180,"[\""Charger\""]",714.8,{},102901,0,"""North America""" +2024-07-18,78425,722,"[\""Keyboard\"", \""Charger\""]",1107.91,"{\""promo\"": \""20%\""}",262122,0,"""Africa""" +2023-02-18,78426,5064,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1476.18,{},228037,0,"""Asia""" +2024-12-19,78427,153,"[\""Tablet\"", \""Laptop\""]",3257.78,{},278690,1,"""North America""" +2023-09-06,78428,6080,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3268.29,{},85141,1,"""North America""" +2023-03-07,78429,3484,"[\""Laptop\"", \""Wireless Mouse\""]",1039.99,"{\""seasonal\"": \""17%\""}",102662,0,"""Europe""" +2023-12-01,78430,402,"[\""Laptop\""]",2793.56,{},9940,1,"""South America""" +2023-06-06,78431,204,"[\""Laptop\""]",3057.33,{},23783,0,"""Europe""" +2024-09-26,78432,315,"[\""Wireless Mouse\""]",2952.16,"{\""promo\"": \""5%\""}",166661,1,"""South America""" +2023-07-02,78433,3484,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4290.68,{},271508,0,"""North America""" +2023-09-16,78434,7725,"[\""Wireless Mouse\"", \""Charger\""]",1494.79,"{\""seasonal\"": \""10%\""}",120039,1,"""Europe""" +2023-06-07,78435,3574,"[\""Wireless Mouse\"", \""Phone\""]",953.34,"{\""promo\"": \""6%\""}",247258,0,"""North America""" +2024-08-04,78436,5211,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4638.58,{},158772,0,"""North America""" +2024-02-07,78437,3157,"[\""Tablet\""]",1587.63,{},120763,1,"""North America""" +2023-09-08,78438,7680,"[\""Wireless Mouse\"", \""Tablet\""]",2398.93,{},61924,1,"""South America""" +2023-03-20,78439,2468,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",147.68,"{\""promo\"": \""13%\""}",20220,1,"""North America""" +2023-10-06,78440,7266,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1731.24,"{\""loyalty\"": \""24%\""}",195857,0,"""North America""" +2024-03-02,78441,5019,"[\""Laptop\"", \""Keyboard\""]",4064.6,{},251256,0,"""North America""" +2023-05-12,78442,4782,"[\""Headphones\"", \""Charger\""]",3005.24,{},156809,1,"""North America""" +2023-05-22,78443,2175,"[\""Laptop\""]",2940.55,{},93991,1,"""Asia""" +2024-12-13,78444,7411,"[\""Tablet\""]",202.43,"{\""seasonal\"": \""27%\""}",50575,0,"""North America""" +2023-04-18,78445,1660,"[\""Tablet\""]",186.53,{},19345,1,"""Europe""" +2023-04-26,78446,6996,"[\""Wireless Mouse\"", \""Phone\""]",2561.42,{},201712,0,"""North America""" +2023-06-16,78447,4809,"[\""Keyboard\""]",1522.17,{},101218,1,"""Asia""" +2023-10-25,78448,7030,"[\""Headphones\"", \""Keyboard\""]",4701.6,{},124018,1,"""South America""" +2023-10-06,78449,2753,"[\""Laptop\"", \""Headphones\""]",3141.69,{},74610,1,"""Asia""" +2024-04-14,78450,520,"[\""Headphones\"", \""Tablet\""]",3189.97,{},157977,0,"""Asia""" +2023-06-01,78451,9943,"[\""Phone\""]",3596.3,{},248992,0,"""Africa""" +2023-05-15,78452,6930,"[\""Monitor\""]",2041.24,{},100003,1,"""South America""" +2024-11-18,78453,6435,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2864.3,{},192300,1,"""Africa""" +2024-06-04,78454,5889,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1254.08,{},127857,0,"""Asia""" +2024-08-29,78455,5810,"[\""Monitor\""]",834.68,{},17563,1,"""South America""" +2024-01-14,78456,8897,"[\""Headphones\"", \""Monitor\""]",2476.97,{},255185,1,"""Europe""" +2023-12-15,78457,5201,"[\""Wireless Mouse\""]",1229.84,"{\"": \""20%\""}",72633,1,"""Asia""" +2024-04-10,78458,5989,"[\""Wireless Mouse\""]",1093.03,{},142575,1,"""South America""" +2023-01-10,78459,4974,"[\""Phone\"", \""Headphones\""]",2438.19,{},19144,1,"""Asia""" +2024-10-18,78460,2605,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",68.69,"{\""loyalty\"": \""15%\""}",208776,1,"""Africa""" +2024-08-20,78461,5567,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1060.6,"{\""promo\"": \""23%\""}",41767,1,"""South America""" +2024-05-17,78462,3052,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",807.05,{},96188,0,"""South America""" +2023-01-27,78463,8222,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1510.22,"{\"": \""18%\""}",133836,0,"""North America""" +2023-02-24,78464,7918,"[\""Headphones\""]",1103.32,"{\""loyalty\"": \""18%\""}",148645,1,"""Asia""" +2024-02-07,78465,7464,"[\""Monitor\""]",484.98,{},22121,1,"""South America""" +2024-06-19,78466,7417,"[\""Phone\"", \""Wireless Mouse\""]",2436.12,{},198749,0,"""Africa""" +2024-09-17,78467,7236,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3404.44,{},217724,0,"""Africa""" +2023-08-12,78468,8908,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2280.7,{},229345,1,"""Asia""" +2024-06-20,78469,1199,"[\""Headphones\""]",3667.94,"{\""seasonal\"": \""27%\""}",290439,0,"""North America""" +2024-12-13,78470,4347,"[\""Keyboard\""]",1864.08,"{\""promo\"": \""23%\""}",244945,0,"""North America""" +2023-11-25,78471,1322,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2748.66,"{\""loyalty\"": \""17%\""}",141584,0,"""North America""" +2023-06-23,78472,8771,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2750.73,{},252923,1,"""Europe""" +2024-01-16,78473,8363,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2953.38,"{\""loyalty\"": \""5%\""}",290195,1,"""North America""" +2024-10-08,78474,8027,"[\""Tablet\""]",4502.71,"{\""promo\"": \""28%\""}",288553,1,"""Africa""" +2023-04-01,78475,2059,"[\""Monitor\""]",1871.48,"{\""seasonal\"": \""26%\""}",16513,1,"""North America""" +2023-02-15,78476,4467,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4263.63,{},142272,1,"""South America""" +2024-05-21,78477,8540,"[\""Wireless Mouse\"", \""Keyboard\""]",1146.17,"{\"": \""30%\""}",131688,1,"""North America""" +2024-04-04,78478,4063,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1997.87,"{\""promo\"": \""11%\""}",165183,0,"""Europe""" +2023-09-04,78479,5910,"[\""Monitor\""]",2924.48,{},124201,0,"""Africa""" +2024-06-10,78480,4187,"[\""Keyboard\""]",2399.77,"{\""seasonal\"": \""9%\""}",88905,1,"""Europe""" +2023-08-11,78481,3678,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4593.22,{},185512,0,"""Europe""" +2024-05-13,78482,5441,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2009.22,"{\"": \""11%\""}",157903,0,"""Asia""" +2023-10-04,78483,2059,"[\""Wireless Mouse\"", \""Tablet\""]",3691.66,{},2449,0,"""Asia""" +2023-09-01,78484,8746,"[\""Laptop\"", \""Headphones\""]",4618.4,{},122719,0,"""Europe""" +2024-04-27,78485,9616,"[\""Laptop\""]",2473.62,{},53499,0,"""Europe""" +2024-02-19,78486,8290,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4566.07,"{\""loyalty\"": \""16%\""}",76281,1,"""Africa""" +2023-06-16,78487,4659,"[\""Charger\""]",1214.31,"{\"": \""6%\""}",138553,0,"""Africa""" +2023-01-21,78488,4981,"[\""Wireless Mouse\""]",3487.6,{},159351,1,"""Asia""" +2024-04-09,78489,6027,"[\""Charger\""]",1368.1,{},28529,0,"""South America""" +2024-07-31,78490,6330,"[\""Headphones\"", \""Phone\""]",1870.51,"{\""seasonal\"": \""28%\""}",18140,0,"""Africa""" +2024-06-02,78491,7743,"[\""Phone\"", \""Monitor\""]",1031.47,"{\""promo\"": \""21%\""}",5348,1,"""Europe""" +2023-02-26,78492,5177,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",424.17,"{\""seasonal\"": \""18%\""}",57800,1,"""Africa""" +2024-05-29,78493,2862,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1854.37,{},285300,1,"""Europe""" +2023-05-17,78494,2025,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1906.24,{},253701,0,"""Europe""" +2024-09-26,78495,5814,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1655.86,{},56091,1,"""Europe""" +2024-07-04,78496,4159,"[\""Tablet\""]",4669.29,{},237873,0,"""Europe""" +2024-11-29,78497,6951,"[\""Monitor\""]",1582.82,"{\"": \""11%\""}",108698,0,"""Africa""" +2023-10-31,78498,1218,"[\""Charger\"", \""Wireless Mouse\""]",3347.54,{},24725,0,"""Asia""" +2023-12-14,78499,7057,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3242.9,"{\""loyalty\"": \""16%\""}",160656,1,"""North America""" +2024-11-16,78500,5489,"[\""Laptop\"", \""Wireless Mouse\""]",4271.52,{},151981,0,"""South America""" +2023-04-05,78501,8658,"[\""Monitor\""]",933.26,"{\""seasonal\"": \""25%\""}",167861,0,"""North America""" +2024-07-05,78502,5528,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",194.41,{},262444,0,"""Europe""" +2023-01-21,78503,235,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2201.32,{},165705,0,"""North America""" +2024-12-07,78504,9913,"[\""Monitor\""]",3503.03,"{\""loyalty\"": \""18%\""}",80331,1,"""Africa""" +2024-06-22,78505,5921,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",945.07,{},98433,1,"""South America""" +2023-11-21,78506,2551,"[\""Laptop\""]",4089.16,{},172634,1,"""South America""" +2023-02-24,78507,2768,"[\""Headphones\""]",3885.06,{},34034,0,"""South America""" +2024-11-27,78508,2896,"[\""Headphones\"", \""Tablet\""]",1691.17,{},132612,0,"""South America""" +2023-08-28,78509,7733,"[\""Charger\"", \""Phone\"", \""Headphones\""]",219.74,"{\""promo\"": \""30%\""}",163908,1,"""North America""" +2024-02-13,78510,7036,"[\""Monitor\""]",899.99,{},71267,1,"""South America""" +2023-12-18,78511,2742,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4686.61,"{\""promo\"": \""25%\""}",179447,0,"""Europe""" +2024-07-11,78512,5717,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3551.44,"{\"": \""7%\""}",44556,0,"""South America""" +2024-09-26,78513,4130,"[\""Phone\"", \""Charger\"", \""Monitor\""]",925.84,"{\""loyalty\"": \""19%\""}",235078,0,"""Europe""" +2024-02-06,78514,6075,"[\""Phone\""]",1484.53,{},66679,0,"""North America""" +2023-04-21,78515,5349,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2046.56,"{\""seasonal\"": \""8%\""}",132301,1,"""Asia""" +2024-03-16,78516,4447,"[\""Tablet\""]",3265.8,"{\""loyalty\"": \""16%\""}",83945,0,"""Africa""" +2024-02-03,78517,6262,"[\""Monitor\"", \""Laptop\""]",4595.12,"{\""promo\"": \""23%\""}",47994,0,"""Europe""" +2024-09-22,78518,3542,"[\""Wireless Mouse\"", \""Keyboard\""]",3908.76,"{\""seasonal\"": \""18%\""}",38836,1,"""Europe""" +2024-11-02,78519,4251,"[\""Monitor\"", \""Keyboard\""]",4496.91,"{\""loyalty\"": \""15%\""}",75108,1,"""Africa""" +2024-05-23,78520,2228,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4002.64,"{\""loyalty\"": \""19%\""}",165908,0,"""Asia""" +2024-11-09,78521,7460,"[\""Tablet\"", \""Phone\""]",360.85,"{\""seasonal\"": \""28%\""}",244503,0,"""Europe""" +2023-05-11,78522,4450,"[\""Phone\"", \""Headphones\""]",3778.34,{},188883,1,"""Europe""" +2023-12-07,78523,2941,"[\""Charger\"", \""Tablet\""]",3778.31,{},47871,1,"""North America""" +2023-05-20,78524,3669,"[\""Monitor\""]",2674.02,{},29365,0,"""South America""" +2024-10-22,78525,5366,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1278.8,"{\"": \""23%\""}",251685,1,"""Europe""" +2023-04-29,78526,4600,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2090.54,{},207881,0,"""Africa""" +2023-04-24,78527,1110,"[\""Wireless Mouse\""]",3701.68,"{\""loyalty\"": \""5%\""}",182260,0,"""North America""" +2023-11-03,78528,9426,"[\""Wireless Mouse\"", \""Laptop\""]",1685.56,{},10539,0,"""Africa""" +2024-06-10,78529,7880,"[\""Wireless Mouse\""]",591.94,"{\""promo\"": \""14%\""}",187392,0,"""North America""" +2023-12-20,78530,8259,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2106.92,{},15215,0,"""South America""" +2023-06-22,78531,1429,"[\""Laptop\""]",358.16,{},240192,1,"""Europe""" +2024-06-13,78532,7656,"[\""Wireless Mouse\"", \""Monitor\""]",1707.53,"{\"": \""24%\""}",219295,1,"""North America""" +2024-12-12,78533,5993,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4180.65,"{\""loyalty\"": \""14%\""}",237798,1,"""Asia""" +2024-09-21,78534,4323,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1214.39,{},22747,0,"""North America""" +2023-05-29,78535,3724,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4615.66,"{\""seasonal\"": \""11%\""}",76959,1,"""South America""" +2024-03-05,78536,8376,"[\""Charger\"", \""Headphones\""]",2919.73,{},89460,1,"""Africa""" +2023-04-05,78537,5410,"[\""Headphones\"", \""Keyboard\""]",1950.45,{},263224,1,"""Africa""" +2023-08-23,78538,5579,"[\""Wireless Mouse\"", \""Phone\""]",3155.59,{},163938,0,"""Europe""" +2024-02-09,78539,2787,"[\""Wireless Mouse\"", \""Tablet\""]",2790.95,"{\""promo\"": \""7%\""}",187729,0,"""Africa""" +2024-10-14,78540,717,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2260.83,"{\""promo\"": \""16%\""}",211183,1,"""Asia""" +2023-05-01,78541,1857,"[\""Charger\"", \""Headphones\""]",2915.84,{},264922,0,"""South America""" +2024-01-12,78542,4982,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1089.68,{},157321,1,"""Africa""" +2023-05-03,78543,1818,"[\""Wireless Mouse\"", \""Charger\""]",2105.25,{},264741,0,"""Africa""" +2024-08-14,78544,8565,"[\""Keyboard\"", \""Headphones\""]",3550.83,{},63131,1,"""Europe""" +2023-07-26,78545,4198,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4218.49,{},163817,0,"""South America""" +2024-05-13,78546,2409,"[\""Headphones\"", \""Keyboard\""]",1227.82,{},92313,0,"""Africa""" +2023-12-25,78547,2008,"[\""Charger\""]",3170.9,"{\""seasonal\"": \""30%\""}",146040,1,"""Africa""" +2024-05-15,78548,4384,"[\""Wireless Mouse\""]",3597.5,"{\""promo\"": \""30%\""}",135701,0,"""North America""" +2024-12-27,78549,7824,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2372.17,"{\"": \""19%\""}",37566,0,"""North America""" +2024-03-31,78550,9362,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",519.17,"{\""seasonal\"": \""5%\""}",22666,1,"""South America""" +2023-12-09,78551,5105,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1310.22,{},71794,1,"""North America""" +2023-04-28,78552,4500,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1388.03,"{\""promo\"": \""21%\""}",193484,0,"""North America""" +2024-08-02,78553,7637,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",806.52,"{\""promo\"": \""27%\""}",125897,1,"""Asia""" +2023-12-17,78554,5547,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2439.7,{},214450,0,"""North America""" +2023-05-11,78555,8790,"[\""Keyboard\""]",767.33,{},109388,1,"""Europe""" +2023-11-20,78556,3503,"[\""Headphones\""]",3144.84,{},116056,1,"""South America""" +2023-05-12,78557,9116,"[\""Wireless Mouse\""]",1306.6,{},223239,0,"""Africa""" +2024-12-13,78558,9304,"[\""Tablet\"", \""Laptop\""]",4963.57,"{\""seasonal\"": \""18%\""}",121273,1,"""North America""" +2024-06-15,78559,4605,"[\""Wireless Mouse\"", \""Monitor\""]",4720.66,{},83719,0,"""Asia""" +2023-05-02,78560,3578,"[\""Laptop\"", \""Wireless Mouse\""]",4993.79,"{\""seasonal\"": \""9%\""}",278671,1,"""North America""" +2023-12-13,78561,6630,"[\""Phone\""]",1721.74,{},118904,1,"""South America""" +2024-02-04,78562,3086,"[\""Headphones\"", \""Charger\""]",293.46,"{\"": \""25%\""}",196615,0,"""Asia""" +2023-12-13,78563,119,"[\""Monitor\"", \""Headphones\""]",3677.89,{},253953,1,"""North America""" +2024-07-29,78564,5514,"[\""Charger\"", \""Monitor\""]",3886.58,"{\""loyalty\"": \""30%\""}",32384,0,"""South America""" +2023-12-28,78565,6965,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2251.96,"{\""loyalty\"": \""20%\""}",247092,1,"""North America""" +2023-12-01,78566,3498,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3614.41,{},58696,1,"""Europe""" +2023-03-09,78567,7564,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1439.96,{},71384,1,"""North America""" +2024-02-11,78568,5264,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1774.7,{},167969,1,"""Asia""" +2024-08-26,78569,4764,"[\""Laptop\""]",4292.59,{},43759,0,"""North America""" +2024-05-13,78570,9106,"[\""Phone\""]",4027.68,"{\""promo\"": \""21%\""}",145663,1,"""Europe""" +2023-06-18,78571,8290,"[\""Phone\"", \""Monitor\""]",3435.46,"{\""promo\"": \""14%\""}",163511,0,"""Europe""" +2023-05-19,78572,1294,"[\""Tablet\"", \""Monitor\""]",4456.16,{},211527,0,"""Asia""" +2024-07-02,78573,2062,"[\""Phone\""]",2771.42,{},29445,0,"""North America""" +2024-07-28,78574,310,"[\""Monitor\""]",4231.57,{},104424,1,"""Africa""" +2023-10-11,78575,6532,"[\""Wireless Mouse\"", \""Laptop\""]",178.08,"{\""loyalty\"": \""28%\""}",223047,1,"""Africa""" +2024-12-13,78576,3146,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1930.83,"{\""seasonal\"": \""22%\""}",185373,0,"""Europe""" +2023-05-29,78577,3981,"[\""Phone\"", \""Laptop\""]",3843.09,{},170592,0,"""North America""" +2023-09-27,78578,7819,"[\""Tablet\""]",651.05,"{\"": \""29%\""}",202156,1,"""North America""" +2024-04-17,78579,786,"[\""Phone\"", \""Monitor\""]",2901.67,{},57786,0,"""North America""" +2024-12-21,78580,145,"[\""Headphones\"", \""Laptop\""]",4706.4,"{\""loyalty\"": \""8%\""}",195767,1,"""South America""" +2024-10-13,78581,8481,"[\""Charger\""]",3974.07,{},74337,0,"""Africa""" +2023-03-22,78582,5359,"[\""Wireless Mouse\"", \""Charger\""]",3183.88,"{\""promo\"": \""19%\""}",250474,0,"""Europe""" +2024-06-19,78583,5821,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2300.54,{},67138,0,"""North America""" +2023-03-14,78584,77,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",629.71,{},5126,0,"""North America""" +2023-12-30,78585,8414,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2929.05,"{\"": \""28%\""}",215202,0,"""South America""" +2023-10-29,78586,9862,"[\""Keyboard\""]",487.05,"{\""loyalty\"": \""6%\""}",47994,0,"""Europe""" +2024-01-19,78587,2398,"[\""Charger\""]",824.77,{},94118,1,"""Asia""" +2024-12-02,78588,6691,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1025.98,"{\""seasonal\"": \""30%\""}",88579,1,"""North America""" +2024-11-30,78589,7295,"[\""Laptop\"", \""Monitor\""]",812.15,"{\"": \""22%\""}",210413,1,"""South America""" +2023-09-21,78590,4635,"[\""Tablet\""]",2213.77,"{\""promo\"": \""22%\""}",22316,1,"""Asia""" +2024-10-31,78591,4883,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",680.4,"{\""loyalty\"": \""10%\""}",176335,1,"""Africa""" +2023-08-07,78592,2681,"[\""Headphones\""]",4693.65,{},131114,0,"""Africa""" +2023-02-21,78593,3511,"[\""Monitor\"", \""Laptop\""]",4823.52,"{\"": \""19%\""}",250537,0,"""South America""" +2023-12-06,78594,5496,"[\""Monitor\"", \""Laptop\""]",2345.48,{},93997,1,"""Asia""" +2024-07-03,78595,9479,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4921.02,"{\""loyalty\"": \""19%\""}",62366,1,"""South America""" +2023-10-06,78596,5436,"[\""Keyboard\"", \""Wireless Mouse\""]",3847.07,{},200797,1,"""South America""" +2024-12-28,78597,9520,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2736.36,"{\""loyalty\"": \""8%\""}",190912,0,"""Africa""" +2024-10-06,78598,2208,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4917.43,{},233316,1,"""North America""" +2024-10-29,78599,9890,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2812.35,{},3525,0,"""Africa""" +2024-01-06,78600,6720,"[\""Laptop\"", \""Keyboard\""]",3597.38,{},73936,0,"""South America""" +2024-07-24,78601,660,"[\""Phone\"", \""Tablet\""]",1478.36,{},173564,1,"""Africa""" +2023-01-03,78602,9994,"[\""Monitor\""]",158.1,{},292602,0,"""Africa""" +2024-06-01,78603,6180,"[\""Wireless Mouse\"", \""Keyboard\""]",4560.93,"{\""promo\"": \""22%\""}",197864,0,"""South America""" +2023-11-04,78604,3977,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1181.04,{},254902,1,"""Africa""" +2024-10-04,78605,4613,"[\""Charger\""]",925.11,"{\""loyalty\"": \""21%\""}",228941,0,"""Asia""" +2023-01-17,78606,8943,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",932.71,{},251880,1,"""North America""" +2023-12-21,78607,6172,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4478.16,"{\"": \""30%\""}",129968,0,"""Africa""" +2024-06-26,78608,3763,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2188.27,"{\""loyalty\"": \""25%\""}",139676,1,"""North America""" +2023-07-10,78609,6365,"[\""Wireless Mouse\""]",1015.26,"{\""loyalty\"": \""5%\""}",176356,0,"""Europe""" +2023-05-13,78610,7655,"[\""Monitor\""]",1412.29,{},50327,0,"""Africa""" +2024-04-24,78611,9355,"[\""Phone\"", \""Keyboard\""]",1392.42,"{\"": \""15%\""}",11983,0,"""Asia""" +2023-06-30,78612,945,"[\""Laptop\""]",4378.3,{},254616,1,"""North America""" +2024-07-16,78613,5742,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3050.1,"{\""seasonal\"": \""5%\""}",194463,1,"""South America""" +2023-06-14,78614,3931,"[\""Monitor\""]",2905.79,"{\"": \""21%\""}",256905,1,"""South America""" +2023-09-14,78615,6406,"[\""Keyboard\"", \""Tablet\""]",1015.33,{},46330,0,"""South America""" +2023-06-29,78616,3920,"[\""Wireless Mouse\""]",4188.29,{},151759,0,"""North America""" +2024-04-19,78617,2798,"[\""Monitor\"", \""Tablet\""]",4120.2,{},137025,0,"""Africa""" +2023-07-17,78618,6378,"[\""Tablet\"", \""Phone\""]",3053.72,{},233899,0,"""Asia""" +2023-11-22,78619,7783,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4421.67,{},22123,0,"""South America""" +2024-02-04,78620,6089,"[\""Charger\"", \""Monitor\""]",260.58,{},264927,0,"""Europe""" +2024-01-03,78621,2528,"[\""Laptop\""]",3652.92,"{\"": \""25%\""}",163690,0,"""Africa""" +2024-03-28,78622,211,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2252.2,{},111004,1,"""South America""" +2023-03-03,78623,3025,"[\""Keyboard\"", \""Charger\""]",895.5,"{\""seasonal\"": \""7%\""}",124071,0,"""Asia""" +2024-04-29,78624,8748,"[\""Wireless Mouse\"", \""Phone\""]",4052.13,"{\""promo\"": \""11%\""}",197553,0,"""Europe""" +2023-10-30,78625,8189,"[\""Charger\""]",2279.87,"{\""promo\"": \""6%\""}",258762,1,"""Africa""" +2023-10-16,78626,9675,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2184.36,{},50086,0,"""Asia""" +2024-12-16,78627,2678,"[\""Phone\"", \""Charger\""]",3769.38,{},71629,0,"""Europe""" +2024-08-04,78628,35,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1302.29,{},6102,1,"""South America""" +2024-08-21,78629,5365,"[\""Tablet\"", \""Wireless Mouse\""]",3663.54,"{\""loyalty\"": \""21%\""}",45915,1,"""Africa""" +2023-11-13,78630,1920,"[\""Laptop\"", \""Charger\""]",4272.99,{},161177,0,"""South America""" +2024-07-15,78631,8270,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2499.93,{},271596,1,"""North America""" +2023-06-28,78632,4168,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4822.65,"{\""promo\"": \""18%\""}",149481,0,"""Asia""" +2023-05-22,78633,4984,"[\""Phone\""]",1811.02,{},287128,1,"""Asia""" +2023-09-10,78634,5985,"[\""Phone\"", \""Headphones\""]",4443.23,"{\"": \""8%\""}",275304,0,"""North America""" +2023-12-16,78635,9506,"[\""Charger\""]",560.45,{},294749,1,"""Africa""" +2024-08-23,78636,3925,"[\""Keyboard\""]",4401.66,{},17127,0,"""South America""" +2023-05-08,78637,8719,"[\""Keyboard\"", \""Headphones\""]",3137.07,{},7685,1,"""Africa""" +2024-02-01,78638,6850,"[\""Tablet\""]",4641.64,{},164170,1,"""Asia""" +2023-07-27,78639,3635,"[\""Monitor\""]",2010.87,{},11769,1,"""Asia""" +2024-02-03,78640,7307,"[\""Monitor\""]",4408.2,"{\""loyalty\"": \""16%\""}",279509,1,"""North America""" +2023-12-31,78641,7039,"[\""Tablet\"", \""Headphones\""]",914.71,"{\""promo\"": \""10%\""}",87025,1,"""Europe""" +2024-05-19,78642,2096,"[\""Tablet\""]",3624.73,"{\""loyalty\"": \""28%\""}",23361,1,"""South America""" +2023-05-16,78643,4445,"[\""Tablet\"", \""Monitor\""]",461.01,"{\"": \""8%\""}",240037,1,"""Africa""" +2023-08-17,78644,498,"[\""Headphones\"", \""Tablet\""]",1085.78,{},91683,1,"""North America""" +2023-03-15,78645,9380,"[\""Wireless Mouse\""]",145.05,"{\""loyalty\"": \""8%\""}",216147,0,"""North America""" +2023-09-18,78646,6202,"[\""Charger\"", \""Tablet\""]",237.5,"{\"": \""21%\""}",214533,0,"""Asia""" +2024-01-16,78647,7254,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3847.92,"{\"": \""14%\""}",251006,1,"""Europe""" +2024-10-26,78648,139,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",252.96,"{\""loyalty\"": \""17%\""}",30861,0,"""North America""" +2024-10-29,78649,1126,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1968.64,"{\""loyalty\"": \""11%\""}",205436,1,"""Europe""" +2023-01-21,78650,9293,"[\""Keyboard\""]",495.66,"{\""seasonal\"": \""27%\""}",59239,0,"""Africa""" +2023-06-27,78651,9442,"[\""Charger\"", \""Headphones\""]",3871.6,"{\""promo\"": \""25%\""}",236638,0,"""Asia""" +2023-04-28,78652,6764,"[\""Tablet\""]",4995.2,{},266334,1,"""South America""" +2024-07-08,78653,6322,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",668.37,{},114252,1,"""North America""" +2024-02-15,78654,5038,"[\""Wireless Mouse\""]",2758.9,{},15529,0,"""South America""" +2024-04-28,78655,901,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3157.55,"{\""loyalty\"": \""26%\""}",105734,0,"""South America""" +2024-09-04,78656,8017,"[\""Monitor\""]",3015.2,{},299138,0,"""Africa""" +2023-04-22,78657,6005,"[\""Keyboard\""]",3602.63,{},109896,0,"""Asia""" +2024-06-10,78658,145,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1801.03,{},104610,0,"""North America""" +2024-09-23,78659,9718,"[\""Charger\"", \""Laptop\""]",1537.96,"{\"": \""29%\""}",32975,1,"""South America""" +2024-07-21,78660,920,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2649.17,{},237466,1,"""South America""" +2023-05-05,78661,5735,"[\""Keyboard\"", \""Tablet\""]",1263.77,{},263418,0,"""Asia""" +2023-06-19,78662,8459,"[\""Wireless Mouse\""]",2997.01,"{\""promo\"": \""10%\""}",89011,0,"""Europe""" +2024-10-08,78663,2121,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3008.91,{},222262,0,"""Europe""" +2024-08-30,78664,5623,"[\""Laptop\""]",4935.2,{},73928,0,"""North America""" +2023-05-22,78665,4146,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1561.72,{},72563,1,"""Europe""" +2023-02-21,78666,1669,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3512.66,"{\""promo\"": \""6%\""}",218164,0,"""Asia""" +2023-08-01,78667,8680,"[\""Monitor\""]",2183.55,{},112055,0,"""Europe""" +2024-01-03,78668,3447,"[\""Charger\"", \""Tablet\""]",2458.52,{},161526,0,"""Europe""" +2023-01-30,78669,8206,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1954.47,"{\"": \""26%\""}",56863,0,"""South America""" +2023-05-03,78670,2266,"[\""Charger\"", \""Laptop\""]",1826.95,{},284854,1,"""Asia""" +2024-10-13,78671,872,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2483.33,{},147715,1,"""Africa""" +2023-05-21,78672,272,"[\""Laptop\""]",1536.8,"{\"": \""27%\""}",198894,0,"""North America""" +2024-12-11,78673,9957,"[\""Phone\""]",2842.3,"{\""seasonal\"": \""28%\""}",104599,1,"""North America""" +2023-09-30,78674,4108,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3560.06,{},246783,1,"""South America""" +2023-04-09,78675,7383,"[\""Wireless Mouse\""]",4463.81,{},155879,0,"""Europe""" +2024-08-13,78676,4607,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",425.96,{},276629,0,"""North America""" +2024-06-08,78677,9471,"[\""Headphones\""]",2794.0,"{\"": \""8%\""}",290471,0,"""Africa""" +2024-10-14,78678,1559,"[\""Keyboard\""]",3996.6,"{\"": \""8%\""}",39698,0,"""Asia""" +2023-12-26,78679,516,"[\""Keyboard\""]",3968.45,"{\""seasonal\"": \""24%\""}",53229,1,"""Europe""" +2023-01-06,78680,3796,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2089.19,"{\""promo\"": \""12%\""}",247365,1,"""Asia""" +2024-07-25,78681,7881,"[\""Headphones\""]",1313.91,{},159215,0,"""Africa""" +2023-08-25,78682,4909,"[\""Headphones\""]",2055.12,{},72655,1,"""South America""" +2023-12-25,78683,5226,"[\""Keyboard\""]",4867.08,{},216727,0,"""Africa""" +2023-10-31,78684,5525,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",307.6,"{\""promo\"": \""14%\""}",133009,1,"""Asia""" +2024-09-10,78685,3699,"[\""Headphones\"", \""Wireless Mouse\""]",4046.44,{},89730,0,"""Asia""" +2024-07-21,78686,6956,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1621.3,"{\""seasonal\"": \""28%\""}",134862,0,"""South America""" +2023-01-09,78687,1685,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1755.2,{},78960,1,"""North America""" +2023-05-26,78688,7897,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2589.29,"{\""promo\"": \""23%\""}",52893,1,"""Africa""" +2024-01-09,78689,8216,"[\""Wireless Mouse\"", \""Monitor\""]",3323.76,"{\""loyalty\"": \""24%\""}",259648,1,"""South America""" +2024-06-12,78690,9660,"[\""Laptop\""]",2075.61,"{\""loyalty\"": \""6%\""}",202571,1,"""South America""" +2023-01-01,78691,2592,"[\""Monitor\""]",811.27,{},294176,1,"""Europe""" +2023-12-09,78692,5370,"[\""Wireless Mouse\"", \""Charger\""]",4820.29,"{\""seasonal\"": \""8%\""}",256939,1,"""Asia""" +2023-03-19,78693,7968,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",290.18,{},68641,1,"""Africa""" +2024-09-01,78694,1734,"[\""Phone\"", \""Charger\""]",4735.29,{},114396,0,"""South America""" +2023-02-19,78695,8409,"[\""Wireless Mouse\""]",3145.11,{},107029,0,"""Europe""" +2023-08-10,78696,4948,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1523.77,{},298135,0,"""South America""" +2023-12-01,78697,7060,"[\""Headphones\""]",3186.81,"{\""loyalty\"": \""21%\""}",131419,0,"""Africa""" +2024-10-07,78698,7043,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1554.7,{},265767,0,"""Asia""" +2023-05-12,78699,2364,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4284.68,"{\""loyalty\"": \""29%\""}",45315,1,"""North America""" +2024-08-28,78700,2296,"[\""Keyboard\""]",920.58,"{\""loyalty\"": \""20%\""}",129252,0,"""Europe""" +2024-04-27,78701,1715,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3331.39,"{\""loyalty\"": \""6%\""}",188535,1,"""South America""" +2023-02-27,78702,779,"[\""Phone\""]",4564.32,"{\""seasonal\"": \""29%\""}",107324,0,"""South America""" +2023-06-30,78703,4503,"[\""Laptop\""]",1508.39,{},253254,0,"""North America""" +2024-04-23,78704,2683,"[\""Laptop\""]",2198.74,"{\"": \""20%\""}",150293,1,"""Africa""" +2023-08-24,78705,1053,"[\""Keyboard\"", \""Wireless Mouse\""]",1143.46,"{\""seasonal\"": \""9%\""}",244624,0,"""North America""" +2024-09-15,78706,1107,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2254.5,"{\""seasonal\"": \""28%\""}",71829,1,"""South America""" +2024-05-08,78707,4613,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2870.24,{},210629,1,"""North America""" +2023-03-08,78708,9273,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4297.37,{},128668,0,"""North America""" +2023-09-25,78709,4971,"[\""Wireless Mouse\""]",3185.88,"{\""seasonal\"": \""18%\""}",210356,1,"""North America""" +2024-03-28,78710,4477,"[\""Keyboard\"", \""Headphones\""]",4686.05,{},72461,0,"""South America""" +2023-02-08,78711,6633,"[\""Laptop\"", \""Keyboard\""]",4903.88,{},264194,1,"""Africa""" +2023-02-28,78712,6302,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1030.58,{},23287,0,"""North America""" +2023-07-19,78713,458,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",808.18,"{\""promo\"": \""8%\""}",94399,0,"""Asia""" +2024-11-17,78714,6533,"[\""Tablet\"", \""Laptop\""]",305.23,{},279610,0,"""Africa""" +2024-01-27,78715,6085,"[\""Phone\"", \""Tablet\""]",666.49,"{\""loyalty\"": \""20%\""}",198635,0,"""North America""" +2023-05-01,78716,4423,"[\""Charger\"", \""Keyboard\""]",3015.84,"{\""loyalty\"": \""7%\""}",282815,1,"""Asia""" +2024-03-31,78717,1367,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2729.36,{},272925,0,"""North America""" +2024-04-23,78718,5481,"[\""Headphones\""]",428.97,{},281980,1,"""Africa""" +2024-01-05,78719,910,"[\""Phone\""]",4107.65,"{\""seasonal\"": \""8%\""}",271607,1,"""South America""" +2023-04-15,78720,5816,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1572.04,{},93532,1,"""Asia""" +2023-05-14,78721,4988,"[\""Phone\"", \""Tablet\""]",1478.4,{},141864,0,"""North America""" +2023-09-20,78722,5159,"[\""Phone\""]",536.64,{},126398,1,"""Europe""" +2024-04-16,78723,7067,"[\""Wireless Mouse\""]",1606.83,{},210005,0,"""South America""" +2024-02-27,78724,8758,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1508.53,{},85633,0,"""Africa""" +2024-08-05,78725,5764,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3826.04,{},294040,1,"""South America""" +2023-03-15,78726,590,"[\""Wireless Mouse\"", \""Laptop\""]",2816.74,"{\""seasonal\"": \""14%\""}",159414,0,"""Africa""" +2023-12-09,78727,1729,"[\""Tablet\"", \""Monitor\""]",3900.06,"{\"": \""24%\""}",202201,0,"""North America""" +2024-09-27,78728,9869,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4038.14,"{\""seasonal\"": \""29%\""}",270723,1,"""Europe""" +2023-12-20,78729,6400,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4819.57,"{\"": \""26%\""}",94597,1,"""Asia""" +2023-04-27,78730,7514,"[\""Tablet\"", \""Wireless Mouse\""]",942.97,"{\""seasonal\"": \""5%\""}",286159,0,"""Africa""" +2023-08-06,78731,2216,"[\""Phone\""]",1284.68,"{\""seasonal\"": \""25%\""}",45468,1,"""Africa""" +2024-04-03,78732,2237,"[\""Monitor\"", \""Charger\""]",2320.58,{},112330,0,"""Africa""" +2024-09-17,78733,9416,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4458.41,"{\"": \""9%\""}",193769,0,"""Africa""" +2023-11-13,78734,1430,"[\""Headphones\"", \""Laptop\""]",1744.04,"{\""loyalty\"": \""13%\""}",19684,1,"""Asia""" +2023-12-10,78735,7973,"[\""Monitor\"", \""Headphones\""]",1248.95,{},275201,0,"""Europe""" +2023-12-06,78736,8973,"[\""Charger\""]",1356.4,{},268946,1,"""North America""" +2024-03-23,78737,4697,"[\""Monitor\""]",4149.81,"{\""seasonal\"": \""12%\""}",292283,0,"""Africa""" +2024-06-11,78738,8722,"[\""Laptop\""]",105.41,"{\""promo\"": \""21%\""}",286017,0,"""South America""" +2024-02-05,78739,8261,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3206.45,"{\""seasonal\"": \""16%\""}",98079,0,"""North America""" +2023-11-27,78740,9973,"[\""Keyboard\"", \""Monitor\""]",391.31,"{\""loyalty\"": \""18%\""}",182088,1,"""Asia""" +2023-04-01,78741,2792,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2316.57,"{\""seasonal\"": \""19%\""}",92254,1,"""Europe""" +2024-05-20,78742,671,"[\""Wireless Mouse\""]",4879.06,"{\""seasonal\"": \""7%\""}",179547,0,"""Europe""" +2024-08-21,78743,3637,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4553.9,"{\""seasonal\"": \""22%\""}",49252,1,"""South America""" +2023-10-15,78744,3023,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",140.02,"{\"": \""10%\""}",156542,1,"""North America""" +2023-09-26,78745,527,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1493.84,{},21532,0,"""North America""" +2023-03-11,78746,9616,"[\""Monitor\"", \""Wireless Mouse\""]",1262.04,{},114488,0,"""Africa""" +2023-12-02,78747,6075,"[\""Charger\"", \""Laptop\""]",1872.52,{},136532,1,"""Europe""" +2023-04-16,78748,780,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2534.51,{},202507,1,"""North America""" +2023-02-09,78749,264,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",526.68,"{\""seasonal\"": \""6%\""}",85625,0,"""North America""" +2024-04-15,78750,8647,"[\""Monitor\"", \""Keyboard\""]",3311.77,{},184748,1,"""Asia""" +2024-04-20,78751,2897,"[\""Keyboard\"", \""Laptop\""]",3443.03,"{\""seasonal\"": \""17%\""}",157493,1,"""North America""" +2024-04-08,78752,6247,"[\""Keyboard\"", \""Laptop\""]",3666.82,{},201103,0,"""Asia""" +2024-11-13,78753,5031,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2592.24,"{\"": \""11%\""}",279486,0,"""Europe""" +2024-08-15,78754,1254,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2524.85,{},167761,1,"""Africa""" +2024-05-14,78755,5188,"[\""Headphones\""]",4044.34,"{\""seasonal\"": \""10%\""}",21152,1,"""Asia""" +2024-02-18,78756,8324,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",232.79,{},106969,1,"""Africa""" +2024-03-15,78757,7920,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3946.7,{},262346,1,"""Asia""" +2023-03-21,78758,9291,"[\""Laptop\"", \""Wireless Mouse\""]",257.25,{},274412,0,"""South America""" +2023-04-30,78759,9183,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4678.03,"{\""seasonal\"": \""12%\""}",255376,1,"""Africa""" +2024-11-16,78760,3269,"[\""Tablet\""]",3299.16,{},61667,0,"""Asia""" +2024-06-14,78761,6599,"[\""Phone\""]",3059.55,"{\""promo\"": \""16%\""}",191314,0,"""Europe""" +2023-10-03,78762,4682,"[\""Keyboard\"", \""Phone\""]",2603.51,"{\""promo\"": \""29%\""}",20128,1,"""South America""" +2024-04-14,78763,3410,"[\""Wireless Mouse\""]",208.2,{},135973,1,"""Europe""" +2023-10-02,78764,8088,"[\""Wireless Mouse\"", \""Headphones\""]",2969.45,"{\""promo\"": \""20%\""}",247410,0,"""North America""" +2024-09-28,78765,6855,"[\""Keyboard\"", \""Tablet\""]",2279.21,{},194533,1,"""North America""" +2024-01-27,78766,1525,"[\""Charger\""]",3875.18,{},143862,0,"""North America""" +2024-01-05,78767,1610,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1824.26,"{\""loyalty\"": \""23%\""}",276977,1,"""Africa""" +2024-10-15,78768,4177,"[\""Laptop\"", \""Tablet\""]",372.26,"{\""loyalty\"": \""12%\""}",54086,1,"""Europe""" +2023-08-04,78769,8715,"[\""Tablet\"", \""Monitor\""]",2028.02,{},177090,1,"""Asia""" +2024-05-16,78770,2735,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1902.46,{},119481,0,"""Asia""" +2023-09-14,78771,1391,"[\""Tablet\"", \""Wireless Mouse\""]",2932.06,"{\""promo\"": \""6%\""}",63111,1,"""South America""" +2023-06-18,78772,5630,"[\""Tablet\"", \""Phone\""]",3297.98,{},198274,0,"""South America""" +2024-10-28,78773,3572,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4758.83,{},12545,1,"""Asia""" +2023-07-15,78774,16,"[\""Keyboard\"", \""Monitor\""]",1297.1,{},153768,0,"""North America""" +2023-06-09,78775,8729,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1647.45,"{\""promo\"": \""20%\""}",59625,1,"""Africa""" +2023-11-09,78776,2107,"[\""Wireless Mouse\"", \""Laptop\""]",1130.55,"{\""loyalty\"": \""10%\""}",181407,1,"""North America""" +2023-10-08,78777,2975,"[\""Laptop\"", \""Tablet\""]",1475.9,{},104923,1,"""Asia""" +2023-01-06,78778,6175,"[\""Keyboard\""]",2828.14,"{\""promo\"": \""10%\""}",186950,1,"""North America""" +2023-06-28,78779,5158,"[\""Tablet\""]",714.96,"{\""loyalty\"": \""15%\""}",89094,1,"""Asia""" +2024-03-20,78780,3831,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3943.25,"{\""seasonal\"": \""14%\""}",261108,0,"""Africa""" +2024-02-17,78781,4725,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1554.04,{},33867,1,"""South America""" +2024-12-29,78782,7651,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3466.18,"{\""promo\"": \""22%\""}",283762,0,"""North America""" +2024-01-06,78783,6560,"[\""Laptop\""]",1258.48,{},243437,0,"""North America""" +2024-10-31,78784,7106,"[\""Headphones\"", \""Laptop\""]",729.8,{},27048,1,"""North America""" +2023-02-24,78785,5320,"[\""Headphones\"", \""Charger\""]",3760.5,{},52849,0,"""Asia""" +2024-08-18,78786,1083,"[\""Charger\"", \""Keyboard\""]",2453.83,{},80333,1,"""South America""" +2023-03-31,78787,8565,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4100.4,"{\"": \""27%\""}",162429,0,"""North America""" +2023-10-01,78788,8606,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1628.93,{},83582,0,"""South America""" +2023-02-28,78789,2028,"[\""Monitor\"", \""Headphones\""]",3831.29,{},174761,1,"""North America""" +2024-09-16,78790,3310,"[\""Laptop\""]",1627.73,"{\""seasonal\"": \""6%\""}",115346,1,"""Africa""" +2023-11-09,78791,8239,"[\""Charger\"", \""Phone\""]",2152.58,"{\""seasonal\"": \""9%\""}",187381,1,"""Asia""" +2024-03-08,78792,8284,"[\""Laptop\""]",2269.19,{},217292,1,"""South America""" +2024-10-09,78793,1761,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3026.31,{},245583,0,"""Asia""" +2024-03-16,78794,2712,"[\""Phone\""]",3330.25,"{\""promo\"": \""18%\""}",221213,1,"""North America""" +2023-08-15,78795,8270,"[\""Charger\""]",4617.99,{},100486,1,"""South America""" +2024-12-26,78796,9139,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1516.83,"{\"": \""20%\""}",151885,0,"""Europe""" +2023-11-14,78797,7340,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3058.5,{},69740,0,"""North America""" +2024-12-23,78798,5188,"[\""Headphones\"", \""Keyboard\""]",2354.81,"{\"": \""20%\""}",25000,1,"""North America""" +2023-11-29,78799,1623,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3737.03,"{\"": \""10%\""}",298378,0,"""Africa""" +2023-06-07,78800,4126,"[\""Monitor\""]",4663.05,"{\"": \""30%\""}",98184,0,"""Europe""" +2023-04-16,78801,4328,"[\""Keyboard\""]",3629.38,"{\"": \""6%\""}",259002,1,"""Asia""" +2023-08-22,78802,9063,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1647.56,"{\"": \""11%\""}",169827,1,"""South America""" +2023-01-24,78803,4171,"[\""Laptop\"", \""Wireless Mouse\""]",367.35,{},56281,0,"""Africa""" +2023-03-24,78804,8348,"[\""Phone\"", \""Keyboard\""]",1875.33,{},154330,0,"""South America""" +2024-03-24,78805,5708,"[\""Laptop\""]",2317.97,"{\"": \""18%\""}",215192,0,"""South America""" +2024-06-27,78806,8231,"[\""Monitor\""]",2944.53,"{\"": \""15%\""}",94629,1,"""Africa""" +2024-01-19,78807,6421,"[\""Monitor\""]",1028.55,"{\"": \""28%\""}",100631,1,"""South America""" +2024-08-06,78808,8758,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4666.0,{},129879,1,"""North America""" +2024-06-26,78809,3317,"[\""Charger\""]",191.82,"{\""loyalty\"": \""13%\""}",65243,0,"""Europe""" +2024-08-22,78810,3242,"[\""Wireless Mouse\"", \""Headphones\""]",2948.89,{},73253,1,"""Europe""" +2023-11-15,78811,9357,"[\""Keyboard\""]",1908.17,{},121846,1,"""North America""" +2024-01-18,78812,8513,"[\""Monitor\""]",4263.69,"{\""promo\"": \""8%\""}",77892,0,"""Asia""" +2024-10-27,78813,4152,"[\""Tablet\""]",4739.18,{},249931,1,"""Africa""" +2024-04-16,78814,6867,"[\""Headphones\"", \""Monitor\""]",3858.83,{},36426,0,"""South America""" +2024-05-25,78815,5885,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",635.84,"{\"": \""25%\""}",77187,0,"""North America""" +2023-08-18,78816,9086,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1757.66,"{\""loyalty\"": \""8%\""}",274025,1,"""South America""" +2024-06-24,78817,7231,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3134.3,"{\""promo\"": \""7%\""}",94590,0,"""North America""" +2023-08-16,78818,4450,"[\""Laptop\"", \""Headphones\""]",2252.57,"{\""loyalty\"": \""7%\""}",254869,0,"""Europe""" +2023-11-12,78819,824,"[\""Monitor\""]",3500.26,"{\""seasonal\"": \""24%\""}",76689,1,"""North America""" +2023-11-29,78820,3621,"[\""Laptop\"", \""Tablet\""]",1585.6,"{\""promo\"": \""13%\""}",262416,1,"""Africa""" +2024-07-29,78821,1351,"[\""Laptop\""]",4680.94,"{\""loyalty\"": \""20%\""}",135082,1,"""South America""" +2024-03-27,78822,219,"[\""Monitor\""]",3154.89,{},138034,0,"""Africa""" +2024-07-18,78823,5534,"[\""Monitor\"", \""Charger\""]",997.17,{},248411,1,"""Asia""" +2024-04-28,78824,9754,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4146.75,"{\""seasonal\"": \""30%\""}",142895,1,"""Europe""" +2023-05-29,78825,4409,"[\""Monitor\"", \""Laptop\""]",4141.31,"{\""seasonal\"": \""18%\""}",88253,1,"""Asia""" +2024-05-16,78826,6482,"[\""Tablet\"", \""Keyboard\""]",4142.8,"{\"": \""15%\""}",168269,0,"""South America""" +2024-07-14,78827,7271,"[\""Charger\""]",4125.53,{},206194,0,"""Europe""" +2023-05-06,78828,8481,"[\""Monitor\"", \""Keyboard\""]",4180.77,{},287771,0,"""Europe""" +2024-11-10,78829,9694,"[\""Charger\"", \""Monitor\""]",220.55,{},53612,1,"""North America""" +2024-07-11,78830,2621,"[\""Headphones\""]",3442.33,{},122488,1,"""South America""" +2023-10-29,78831,8048,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3334.82,{},113132,1,"""Europe""" +2023-11-28,78832,5054,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4413.81,{},275485,1,"""Africa""" +2023-01-04,78833,1088,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1080.67,{},265560,1,"""Europe""" +2023-08-20,78834,3813,"[\""Monitor\"", \""Charger\""]",1585.23,"{\""loyalty\"": \""26%\""}",160926,1,"""South America""" +2023-02-15,78835,5765,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4689.54,"{\""seasonal\"": \""21%\""}",163206,0,"""Asia""" +2024-04-22,78836,6003,"[\""Wireless Mouse\""]",3370.3,{},108901,1,"""North America""" +2023-02-07,78837,8838,"[\""Tablet\"", \""Headphones\""]",245.16,"{\""seasonal\"": \""12%\""}",257122,0,"""Asia""" +2023-05-02,78838,5913,"[\""Wireless Mouse\""]",4053.75,{},43303,0,"""Europe""" +2024-12-14,78839,5186,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2636.6,"{\""promo\"": \""13%\""}",66739,1,"""Europe""" +2024-12-08,78840,4673,"[\""Keyboard\""]",4874.69,{},192259,1,"""Europe""" +2023-06-06,78841,5592,"[\""Headphones\""]",3007.93,{},189010,0,"""North America""" +2023-12-15,78842,9106,"[\""Monitor\"", \""Laptop\""]",3268.96,"{\"": \""5%\""}",126274,0,"""North America""" +2023-10-31,78843,8010,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4615.09,{},126584,0,"""Asia""" +2023-05-25,78844,9522,"[\""Wireless Mouse\""]",4758.98,{},106281,0,"""Africa""" +2024-10-15,78845,2637,"[\""Wireless Mouse\"", \""Keyboard\""]",782.27,"{\""seasonal\"": \""12%\""}",243735,1,"""North America""" +2024-08-21,78846,1653,"[\""Wireless Mouse\""]",4888.56,"{\""seasonal\"": \""25%\""}",64720,1,"""Asia""" +2023-02-21,78847,6911,"[\""Headphones\""]",3183.05,{},298569,1,"""North America""" +2023-06-08,78848,6904,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3608.16,{},296418,1,"""Asia""" +2023-03-09,78849,4391,"[\""Wireless Mouse\"", \""Phone\""]",1829.57,{},11773,1,"""Europe""" +2023-02-13,78850,4088,"[\""Keyboard\"", \""Laptop\""]",895.96,{},107032,0,"""Asia""" +2024-01-11,78851,3189,"[\""Laptop\""]",4763.34,{},106757,0,"""Europe""" +2024-09-11,78852,4836,"[\""Wireless Mouse\"", \""Monitor\""]",2305.61,"{\""loyalty\"": \""12%\""}",282294,0,"""North America""" +2023-06-27,78853,6733,"[\""Monitor\"", \""Charger\""]",3039.83,{},133948,0,"""South America""" +2024-02-10,78854,6736,"[\""Charger\"", \""Phone\""]",3739.95,{},233053,1,"""North America""" +2023-07-27,78855,444,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2235.88,"{\""loyalty\"": \""28%\""}",116637,0,"""Europe""" +2024-11-09,78856,8750,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3027.97,{},214676,0,"""Europe""" +2024-12-07,78857,8775,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2531.16,{},103622,1,"""South America""" +2023-04-22,78858,5691,"[\""Wireless Mouse\"", \""Phone\""]",1032.8,"{\""promo\"": \""23%\""}",201457,1,"""North America""" +2024-12-27,78859,7014,"[\""Charger\""]",4068.93,"{\""seasonal\"": \""20%\""}",92490,0,"""Europe""" +2023-09-20,78860,1091,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2084.1,"{\""promo\"": \""15%\""}",91632,1,"""North America""" +2024-10-06,78861,9018,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3553.35,{},230714,1,"""South America""" +2024-04-13,78862,3943,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2258.4,{},268966,0,"""North America""" +2024-10-07,78863,696,"[\""Tablet\""]",875.71,{},63942,1,"""North America""" +2024-01-31,78864,7180,"[\""Charger\"", \""Laptop\""]",2364.66,"{\"": \""9%\""}",165935,1,"""South America""" +2024-08-09,78865,6921,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2158.58,"{\"": \""18%\""}",265609,0,"""Europe""" +2024-07-03,78866,3076,"[\""Wireless Mouse\""]",143.7,{},270907,0,"""Asia""" +2023-08-12,78867,2083,"[\""Charger\""]",3742.24,"{\""seasonal\"": \""16%\""}",57477,0,"""Europe""" +2024-11-24,78868,2157,"[\""Wireless Mouse\"", \""Phone\""]",235.43,"{\""seasonal\"": \""9%\""}",59043,1,"""South America""" +2023-02-10,78869,1419,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2511.96,"{\"": \""20%\""}",233725,0,"""South America""" +2023-02-13,78870,7742,"[\""Monitor\""]",1358.96,{},80942,0,"""North America""" +2023-02-10,78871,423,"[\""Phone\"", \""Monitor\""]",176.52,{},67583,1,"""Europe""" +2024-09-27,78872,6434,"[\""Wireless Mouse\""]",4819.69,"{\""promo\"": \""22%\""}",201263,1,"""Asia""" +2023-01-06,78873,7478,"[\""Laptop\"", \""Monitor\""]",4937.52,"{\""promo\"": \""8%\""}",50311,0,"""South America""" +2024-05-26,78874,5109,"[\""Monitor\"", \""Phone\""]",953.41,"{\""loyalty\"": \""29%\""}",145080,1,"""North America""" +2024-06-30,78875,5846,"[\""Keyboard\""]",257.81,{},81003,0,"""Asia""" +2023-05-23,78876,6430,"[\""Monitor\""]",4656.02,"{\""promo\"": \""19%\""}",38164,1,"""South America""" +2023-04-19,78877,9053,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",107.34,{},118654,1,"""Europe""" +2024-09-24,78878,2882,"[\""Monitor\"", \""Tablet\""]",4649.21,{},232331,0,"""North America""" +2024-01-17,78879,5353,"[\""Laptop\""]",2168.69,{},57871,0,"""Europe""" +2023-05-17,78880,4823,"[\""Monitor\"", \""Wireless Mouse\""]",3282.83,"{\""promo\"": \""25%\""}",292365,1,"""Africa""" +2024-05-14,78881,7931,"[\""Charger\""]",2058.72,{},55993,1,"""North America""" +2024-10-04,78882,2487,"[\""Phone\"", \""Headphones\""]",4371.69,{},227403,1,"""Africa""" +2024-07-02,78883,4137,"[\""Charger\"", \""Phone\""]",3750.59,"{\""seasonal\"": \""12%\""}",159808,0,"""Asia""" +2024-06-17,78884,943,"[\""Monitor\""]",3788.7,"{\""seasonal\"": \""24%\""}",276794,0,"""North America""" +2024-10-09,78885,2568,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",725.31,"{\""seasonal\"": \""7%\""}",149718,1,"""North America""" +2023-02-16,78886,3085,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1517.29,"{\"": \""11%\""}",4266,0,"""South America""" +2024-08-27,78887,3525,"[\""Monitor\"", \""Keyboard\""]",708.83,{},73744,0,"""South America""" +2024-10-07,78888,5548,"[\""Phone\""]",2206.73,"{\""promo\"": \""10%\""}",96420,0,"""Asia""" +2024-02-11,78889,1117,"[\""Phone\"", \""Tablet\""]",3607.99,"{\""promo\"": \""5%\""}",171057,1,"""North America""" +2024-08-02,78890,5783,"[\""Monitor\"", \""Tablet\""]",897.83,{},246100,0,"""Asia""" +2023-05-09,78891,8459,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4443.32,"{\""loyalty\"": \""19%\""}",36457,1,"""Africa""" +2023-09-02,78892,1056,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4113.08,{},282901,0,"""North America""" +2024-08-11,78893,9003,"[\""Monitor\""]",4968.41,{},281392,1,"""North America""" +2024-10-01,78894,8116,"[\""Charger\""]",1846.53,{},12460,1,"""South America""" +2023-03-26,78895,2409,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",474.61,{},258173,1,"""South America""" +2024-03-01,78896,470,"[\""Wireless Mouse\"", \""Monitor\""]",482.49,"{\""promo\"": \""26%\""}",197963,1,"""Africa""" +2024-09-15,78897,5384,"[\""Phone\""]",1997.24,"{\""loyalty\"": \""19%\""}",265094,1,"""Europe""" +2023-09-16,78898,5606,"[\""Tablet\"", \""Laptop\""]",4636.53,"{\"": \""12%\""}",225713,0,"""Africa""" +2024-06-15,78899,8328,"[\""Headphones\""]",4804.49,{},157028,1,"""North America""" +2024-05-13,78900,4122,"[\""Keyboard\""]",4364.66,"{\"": \""30%\""}",249671,0,"""Europe""" +2023-08-20,78901,5944,"[\""Charger\""]",2301.74,{},166102,0,"""Africa""" +2023-06-28,78902,4031,"[\""Phone\"", \""Tablet\""]",3147.35,"{\""promo\"": \""21%\""}",18094,0,"""Europe""" +2023-06-12,78903,1196,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",479.26,"{\""loyalty\"": \""27%\""}",65375,1,"""Asia""" +2024-11-27,78904,2078,"[\""Keyboard\"", \""Phone\""]",1816.18,{},109059,1,"""Africa""" +2023-10-02,78905,7016,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4818.81,"{\"": \""22%\""}",107325,0,"""Africa""" +2024-07-06,78906,4752,"[\""Tablet\""]",1413.68,"{\""seasonal\"": \""28%\""}",179106,0,"""Africa""" +2024-10-15,78907,1091,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",1679.94,"{\"": \""16%\""}",98061,1,"""Asia""" +2024-05-18,78908,857,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",478.14,"{\""promo\"": \""14%\""}",76348,1,"""South America""" +2024-02-08,78909,9963,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",130.06,"{\""promo\"": \""10%\""}",188778,1,"""South America""" +2024-09-15,78910,9739,"[\""Phone\""]",4774.82,"{\""promo\"": \""13%\""}",191565,1,"""Europe""" +2024-11-20,78911,5890,"[\""Keyboard\""]",1578.73,{},22047,1,"""Asia""" +2024-06-11,78912,1442,"[\""Wireless Mouse\"", \""Laptop\""]",498.91,"{\""seasonal\"": \""20%\""}",143098,1,"""South America""" +2024-06-07,78913,8672,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4608.68,"{\""promo\"": \""26%\""}",12148,0,"""Asia""" +2023-05-22,78914,3554,"[\""Keyboard\"", \""Charger\""]",2593.67,"{\"": \""12%\""}",63545,1,"""Europe""" +2024-01-02,78915,971,"[\""Laptop\""]",4210.54,"{\"": \""23%\""}",12489,1,"""Africa""" +2024-08-04,78916,284,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",4441.83,"{\""loyalty\"": \""8%\""}",262751,0,"""Europe""" +2024-05-25,78917,6026,"[\""Keyboard\"", \""Monitor\""]",3277.62,{},34225,0,"""Africa""" +2023-07-04,78918,824,"[\""Phone\""]",609.17,"{\""loyalty\"": \""18%\""}",43446,1,"""Africa""" +2023-10-02,78919,9367,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4046.01,"{\""seasonal\"": \""17%\""}",164156,1,"""North America""" +2023-07-14,78920,7366,"[\""Monitor\""]",4492.72,{},115861,1,"""Europe""" +2023-06-30,78921,1340,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3476.66,"{\"": \""25%\""}",39564,1,"""Asia""" +2023-02-20,78922,244,"[\""Phone\""]",753.55,"{\""promo\"": \""7%\""}",286032,1,"""North America""" +2023-10-16,78923,2632,"[\""Monitor\""]",2797.77,{},177649,1,"""North America""" +2023-03-07,78924,9969,"[\""Wireless Mouse\""]",4685.03,"{\"": \""25%\""}",123739,1,"""South America""" +2023-01-14,78925,3125,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2299.38,"{\""promo\"": \""16%\""}",129105,1,"""North America""" +2023-11-26,78926,2194,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3130.35,"{\"": \""8%\""}",40359,1,"""Europe""" +2024-11-20,78927,4187,"[\""Charger\""]",1322.69,"{\""loyalty\"": \""24%\""}",175749,1,"""Africa""" +2023-12-15,78928,2003,"[\""Keyboard\"", \""Charger\""]",1952.02,{},192679,0,"""Asia""" +2024-11-16,78929,66,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2734.12,{},1648,0,"""South America""" +2023-10-28,78930,1224,"[\""Monitor\"", \""Keyboard\""]",796.08,"{\"": \""24%\""}",69714,1,"""Africa""" +2023-12-24,78931,9738,"[\""Phone\""]",1171.88,{},276714,1,"""Asia""" +2023-12-21,78932,4848,"[\""Monitor\""]",392.23,"{\""seasonal\"": \""26%\""}",288204,1,"""South America""" +2024-05-21,78933,4392,"[\""Charger\""]",2013.39,{},252050,1,"""North America""" +2023-06-11,78934,959,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1998.71,"{\"": \""6%\""}",264873,0,"""Europe""" +2024-07-29,78935,6819,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1749.18,"{\"": \""18%\""}",215794,0,"""Asia""" +2024-09-19,78936,1279,"[\""Laptop\"", \""Tablet\""]",2800.88,{},155139,0,"""North America""" +2024-07-05,78937,1374,"[\""Monitor\""]",1698.37,"{\"": \""12%\""}",116239,0,"""Asia""" +2023-02-15,78938,2109,"[\""Headphones\""]",4234.57,"{\""loyalty\"": \""18%\""}",132198,1,"""South America""" +2023-09-01,78939,9654,"[\""Headphones\"", \""Keyboard\""]",3657.79,"{\""seasonal\"": \""5%\""}",247227,1,"""Europe""" +2024-09-14,78940,1373,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",655.93,{},214157,0,"""South America""" +2023-04-11,78941,5868,"[\""Headphones\"", \""Charger\""]",700.72,{},99691,0,"""Africa""" +2024-10-03,78942,2005,"[\""Monitor\"", \""Wireless Mouse\""]",558.96,"{\""seasonal\"": \""6%\""}",169434,1,"""North America""" +2024-11-21,78943,9615,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4696.24,{},290965,1,"""North America""" +2024-07-30,78944,7145,"[\""Headphones\"", \""Laptop\""]",2052.08,"{\""promo\"": \""15%\""}",283139,0,"""Africa""" +2024-01-19,78945,6424,"[\""Charger\""]",4821.62,{},152742,0,"""South America""" +2023-02-27,78946,9657,"[\""Tablet\""]",648.11,"{\""seasonal\"": \""14%\""}",142267,1,"""North America""" +2023-05-13,78947,7551,"[\""Monitor\""]",981.94,{},91597,1,"""South America""" +2023-10-30,78948,4358,"[\""Tablet\"", \""Phone\""]",4008.35,{},263866,0,"""Europe""" +2023-08-04,78949,3600,"[\""Charger\""]",3127.82,{},80113,0,"""Europe""" +2024-05-02,78950,300,"[\""Laptop\"", \""Monitor\""]",2199.18,{},282314,1,"""Europe""" +2023-11-05,78951,9060,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",4661.29,{},151533,0,"""Asia""" +2024-10-19,78952,8358,"[\""Keyboard\"", \""Charger\""]",2924.9,{},230002,0,"""Africa""" +2024-06-23,78953,926,"[\""Monitor\"", \""Wireless Mouse\""]",4627.19,"{\""promo\"": \""17%\""}",82662,0,"""Asia""" +2024-02-10,78954,7882,"[\""Tablet\"", \""Keyboard\""]",4909.21,{},215931,0,"""Europe""" +2023-09-20,78955,338,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3489.36,"{\""promo\"": \""22%\""}",109579,0,"""Africa""" +2023-07-05,78956,4062,"[\""Headphones\"", \""Charger\""]",2648.93,{},110411,0,"""South America""" +2024-04-26,78957,8020,"[\""Tablet\""]",168.06,{},21087,0,"""Europe""" +2024-07-30,78958,7346,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",165.75,"{\""seasonal\"": \""18%\""}",149716,0,"""North America""" +2024-12-12,78959,2792,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4057.42,{},68992,0,"""Europe""" +2024-11-05,78960,6933,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2484.79,"{\"": \""15%\""}",123720,1,"""Europe""" +2023-10-17,78961,6205,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2476.67,{},263159,1,"""North America""" +2024-01-18,78962,4632,"[\""Tablet\"", \""Headphones\""]",3939.74,"{\""loyalty\"": \""13%\""}",52168,1,"""Africa""" +2023-08-27,78963,2789,"[\""Charger\""]",3452.23,"{\""seasonal\"": \""21%\""}",217900,0,"""Europe""" +2023-03-04,78964,382,"[\""Charger\""]",2876.95,"{\""loyalty\"": \""25%\""}",5242,1,"""North America""" +2023-07-27,78965,3301,"[\""Wireless Mouse\"", \""Headphones\""]",2832.73,"{\""promo\"": \""14%\""}",158542,1,"""North America""" +2023-11-05,78966,2708,"[\""Phone\"", \""Charger\""]",3833.71,{},297918,0,"""South America""" +2023-10-19,78967,1621,"[\""Tablet\"", \""Phone\""]",1214.06,{},88652,0,"""Africa""" +2024-12-13,78968,3651,"[\""Monitor\""]",3788.25,{},151860,1,"""Europe""" +2024-05-17,78969,9391,"[\""Wireless Mouse\"", \""Tablet\""]",4443.27,"{\"": \""19%\""}",240790,1,"""Asia""" +2023-07-10,78970,8671,"[\""Laptop\"", \""Headphones\""]",3653.08,"{\"": \""14%\""}",213510,1,"""South America""" +2024-06-26,78971,6045,"[\""Headphones\""]",3882.47,{},191759,1,"""Africa""" +2023-07-20,78972,6302,"[\""Charger\""]",2222.92,"{\""seasonal\"": \""5%\""}",97472,1,"""Europe""" +2024-07-30,78973,6321,"[\""Wireless Mouse\""]",232.08,{},200694,0,"""South America""" +2024-04-18,78974,4051,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1231.81,{},97703,0,"""Africa""" +2024-07-03,78975,7181,"[\""Headphones\""]",3632.39,"{\"": \""13%\""}",93636,1,"""Asia""" +2024-06-25,78976,1328,"[\""Monitor\"", \""Headphones\""]",2865.51,{},44884,0,"""North America""" +2024-08-02,78977,5425,"[\""Keyboard\""]",4373.48,{},135232,0,"""Europe""" +2024-07-27,78978,5354,"[\""Laptop\""]",3816.52,"{\"": \""23%\""}",183471,0,"""Europe""" +2023-06-06,78979,487,"[\""Wireless Mouse\""]",997.82,{},182551,1,"""North America""" +2024-06-05,78980,5894,"[\""Keyboard\"", \""Charger\""]",3882.28,"{\""loyalty\"": \""13%\""}",217628,0,"""North America""" +2023-03-14,78981,9545,"[\""Headphones\""]",2156.25,{},114669,0,"""South America""" +2023-07-03,78982,9400,"[\""Charger\""]",4290.01,{},128998,1,"""South America""" +2024-01-02,78983,1064,"[\""Laptop\"", \""Keyboard\""]",3266.15,{},288027,1,"""North America""" +2024-12-23,78984,9725,"[\""Headphones\""]",2693.6,{},298007,0,"""North America""" +2024-02-25,78985,7396,"[\""Keyboard\""]",4751.32,{},113317,1,"""South America""" +2023-02-01,78986,6037,"[\""Keyboard\"", \""Charger\""]",3676.12,"{\""loyalty\"": \""9%\""}",255997,1,"""Asia""" +2023-12-04,78987,6449,"[\""Laptop\"", \""Headphones\""]",3482.99,"{\"": \""14%\""}",266382,1,"""North America""" +2023-11-01,78988,1896,"[\""Keyboard\"", \""Headphones\""]",2372.19,{},70421,1,"""North America""" +2024-02-07,78989,4659,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",367.61,{},138335,1,"""Asia""" +2023-10-27,78990,5311,"[\""Tablet\"", \""Monitor\""]",1578.28,"{\""loyalty\"": \""16%\""}",33476,1,"""Europe""" +2023-12-23,78991,5032,"[\""Phone\"", \""Keyboard\""]",2627.22,"{\"": \""6%\""}",210560,0,"""North America""" +2023-03-09,78992,8847,"[\""Keyboard\"", \""Tablet\""]",492.33,"{\""seasonal\"": \""23%\""}",20825,0,"""Africa""" +2023-04-07,78993,9275,"[\""Phone\""]",4457.54,{},255749,1,"""Asia""" +2023-10-11,78994,9563,"[\""Monitor\"", \""Headphones\""]",3590.54,"{\""seasonal\"": \""18%\""}",115326,1,"""North America""" +2023-08-15,78995,7798,"[\""Laptop\""]",4029.32,{},260618,1,"""Europe""" +2024-02-27,78996,8496,"[\""Wireless Mouse\""]",1480.15,"{\""loyalty\"": \""26%\""}",292042,1,"""North America""" +2023-05-15,78997,5446,"[\""Keyboard\""]",4072.27,"{\""promo\"": \""9%\""}",195176,0,"""Asia""" +2024-02-21,78998,2340,"[\""Headphones\""]",3614.7,{},163804,0,"""North America""" +2024-10-17,78999,8104,"[\""Tablet\""]",1577.1,"{\""promo\"": \""29%\""}",229469,1,"""North America""" +2024-12-17,79000,6810,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2568.87,{},131417,1,"""North America""" +2024-01-25,79001,7654,"[\""Tablet\""]",503.73,"{\"": \""16%\""}",192134,1,"""Europe""" +2024-09-08,79002,945,"[\""Tablet\"", \""Wireless Mouse\""]",2383.18,"{\""loyalty\"": \""8%\""}",55039,1,"""Europe""" +2024-12-11,79003,6328,"[\""Tablet\"", \""Charger\""]",1909.44,"{\""seasonal\"": \""23%\""}",12544,1,"""Africa""" +2023-03-27,79004,7333,"[\""Phone\""]",4450.89,"{\"": \""13%\""}",33514,1,"""North America""" +2024-01-27,79005,6999,"[\""Phone\""]",4009.86,{},244659,0,"""North America""" +2023-01-07,79006,7876,"[\""Monitor\""]",3746.08,"{\""promo\"": \""11%\""}",126494,0,"""Africa""" +2023-10-31,79007,116,"[\""Tablet\"", \""Monitor\""]",461.94,"{\"": \""19%\""}",78734,1,"""Africa""" +2024-01-13,79008,6427,"[\""Laptop\""]",1612.06,{},32486,1,"""Africa""" +2023-01-21,79009,3467,"[\""Laptop\""]",2892.92,"{\""promo\"": \""19%\""}",285198,1,"""Asia""" +2023-06-25,79010,7284,"[\""Charger\"", \""Tablet\""]",959.22,{},126059,1,"""Africa""" +2023-01-17,79011,7079,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1227.85,{},138450,1,"""Europe""" +2023-10-17,79012,3798,"[\""Laptop\""]",3356.99,{},59819,0,"""South America""" +2023-04-25,79013,1119,"[\""Tablet\""]",1459.53,"{\""promo\"": \""13%\""}",210093,0,"""Europe""" +2023-04-20,79014,789,"[\""Monitor\""]",3422.67,"{\""loyalty\"": \""28%\""}",34458,1,"""Asia""" +2024-11-06,79015,3936,"[\""Wireless Mouse\""]",717.86,{},128292,1,"""South America""" +2024-12-04,79016,604,"[\""Charger\"", \""Monitor\""]",4572.08,"{\""seasonal\"": \""13%\""}",17414,0,"""Asia""" +2023-07-17,79017,958,"[\""Charger\""]",3307.2,"{\""promo\"": \""24%\""}",282837,1,"""North America""" +2023-05-11,79018,2557,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4370.81,"{\"": \""30%\""}",24750,0,"""Asia""" +2024-12-14,79019,6276,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2197.36,"{\"": \""21%\""}",99218,0,"""South America""" +2023-06-04,79020,6996,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3062.54,"{\""promo\"": \""23%\""}",237743,1,"""Asia""" +2023-09-22,79021,4575,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",501.38,"{\"": \""16%\""}",70804,1,"""Asia""" +2024-05-19,79022,9096,"[\""Tablet\"", \""Headphones\""]",2848.85,"{\"": \""11%\""}",153585,0,"""Asia""" +2023-01-10,79023,5801,"[\""Tablet\""]",416.9,"{\""loyalty\"": \""7%\""}",289321,0,"""Africa""" +2024-06-22,79024,2969,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2537.09,"{\""promo\"": \""19%\""}",270211,0,"""Africa""" +2024-03-27,79025,5632,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",326.88,{},97048,1,"""Europe""" +2024-09-29,79026,1668,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2946.26,{},163200,1,"""Europe""" +2023-07-25,79027,3680,"[\""Charger\""]",4669.89,{},189019,1,"""South America""" +2024-05-12,79028,1650,"[\""Laptop\""]",3250.64,{},276891,0,"""South America""" +2024-07-08,79029,8446,"[\""Keyboard\"", \""Tablet\""]",4533.69,{},119350,1,"""South America""" +2024-02-22,79030,3813,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4970.2,{},119031,1,"""Europe""" +2024-10-25,79031,108,"[\""Phone\"", \""Charger\""]",1119.87,{},55326,1,"""North America""" +2024-11-15,79032,3427,"[\""Tablet\"", \""Headphones\""]",2361.07,"{\""seasonal\"": \""16%\""}",147353,1,"""Asia""" +2024-03-23,79033,1334,"[\""Tablet\""]",517.95,{},60837,0,"""North America""" +2023-04-10,79034,2675,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3754.01,"{\""seasonal\"": \""15%\""}",203795,1,"""South America""" +2023-02-01,79035,3784,"[\""Charger\"", \""Laptop\""]",4679.96,{},47340,0,"""Africa""" +2023-07-16,79036,7426,"[\""Tablet\""]",3765.76,{},85710,1,"""Asia""" +2023-05-05,79037,8610,"[\""Tablet\""]",411.85,{},68712,0,"""South America""" +2023-04-23,79038,5519,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",560.73,"{\""seasonal\"": \""16%\""}",47545,0,"""South America""" +2024-05-17,79039,8370,"[\""Tablet\"", \""Wireless Mouse\""]",3538.58,{},206863,1,"""Africa""" +2024-08-25,79040,3577,"[\""Keyboard\"", \""Tablet\""]",2397.84,"{\""seasonal\"": \""11%\""}",38671,0,"""North America""" +2023-05-10,79041,4634,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",223.9,{},203768,1,"""Asia""" +2023-04-05,79042,7216,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4454.62,{},81295,0,"""North America""" +2024-04-06,79043,1767,"[\""Tablet\""]",995.31,"{\""promo\"": \""12%\""}",285473,1,"""South America""" +2023-02-14,79044,6021,"[\""Tablet\""]",2449.46,{},141040,0,"""Europe""" +2023-12-17,79045,534,"[\""Monitor\"", \""Charger\""]",3871.35,{},109253,1,"""Africa""" +2023-09-17,79046,4350,"[\""Charger\"", \""Phone\""]",2782.68,"{\"": \""24%\""}",248975,0,"""Africa""" +2023-11-04,79047,6596,"[\""Phone\""]",1979.64,"{\""seasonal\"": \""23%\""}",164639,0,"""Africa""" +2024-11-01,79048,1345,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3162.16,"{\"": \""22%\""}",194389,0,"""South America""" +2024-07-16,79049,7058,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1953.28,"{\""promo\"": \""24%\""}",291373,1,"""Asia""" +2024-01-21,79050,7803,"[\""Monitor\"", \""Charger\""]",3241.43,{},191861,0,"""South America""" +2024-05-20,79051,1423,"[\""Charger\""]",1558.68,{},193505,0,"""Europe""" +2024-07-09,79052,9114,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3937.17,"{\""seasonal\"": \""26%\""}",289199,0,"""Asia""" +2024-03-02,79053,2877,"[\""Tablet\""]",2595.12,"{\"": \""16%\""}",297437,1,"""South America""" +2024-09-29,79054,9929,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4309.35,{},143051,1,"""South America""" +2024-12-22,79055,8911,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3034.31,{},247543,0,"""Africa""" +2023-01-27,79056,9260,"[\""Phone\"", \""Laptop\""]",3885.9,"{\""promo\"": \""7%\""}",38995,0,"""Europe""" +2024-05-09,79057,8805,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2613.17,"{\""seasonal\"": \""30%\""}",203055,0,"""Africa""" +2024-12-27,79058,5134,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3306.43,"{\""loyalty\"": \""14%\""}",129028,1,"""North America""" +2023-05-16,79059,355,"[\""Laptop\"", \""Charger\""]",3326.88,{},185753,1,"""Africa""" +2023-07-02,79060,9144,"[\""Wireless Mouse\""]",2649.99,"{\""seasonal\"": \""28%\""}",288369,0,"""Africa""" +2023-03-26,79061,8120,"[\""Monitor\""]",1302.96,"{\""loyalty\"": \""10%\""}",197951,1,"""Africa""" +2024-08-11,79062,6192,"[\""Tablet\""]",486.52,{},264135,0,"""Africa""" +2024-05-23,79063,5518,"[\""Charger\""]",3473.55,{},216533,1,"""North America""" +2024-06-08,79064,2143,"[\""Headphones\""]",351.86,"{\""seasonal\"": \""21%\""}",211340,1,"""Africa""" +2024-05-13,79065,6552,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1073.94,{},274219,1,"""South America""" +2023-07-28,79066,8630,"[\""Charger\""]",4368.19,{},226880,0,"""South America""" +2023-09-07,79067,5439,"[\""Wireless Mouse\"", \""Tablet\""]",759.18,{},2050,0,"""North America""" +2023-04-23,79068,6618,"[\""Tablet\""]",1940.55,"{\""loyalty\"": \""6%\""}",72837,0,"""North America""" +2024-01-25,79069,3271,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3032.96,"{\""seasonal\"": \""30%\""}",273979,0,"""North America""" +2023-10-30,79070,2174,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",928.6,"{\"": \""25%\""}",75250,0,"""North America""" +2024-06-14,79071,4147,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4649.6,{},33567,0,"""North America""" +2023-06-09,79072,3273,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3292.01,"{\"": \""18%\""}",232684,0,"""Africa""" +2023-04-19,79073,7947,"[\""Tablet\"", \""Headphones\""]",513.56,{},23367,1,"""North America""" +2024-05-13,79074,6276,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3646.66,"{\"": \""26%\""}",174970,0,"""South America""" +2023-06-12,79075,3985,"[\""Headphones\""]",2287.18,"{\"": \""19%\""}",19069,1,"""North America""" +2024-12-08,79076,2428,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3985.14,"{\""loyalty\"": \""14%\""}",291532,1,"""Asia""" +2024-11-15,79077,5106,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",934.44,"{\""promo\"": \""12%\""}",204767,1,"""North America""" +2023-04-18,79078,1329,"[\""Tablet\"", \""Monitor\""]",4335.1,"{\""promo\"": \""26%\""}",85855,1,"""Asia""" +2024-12-03,79079,7567,"[\""Headphones\"", \""Phone\""]",3550.36,{},28776,0,"""Africa""" +2023-09-04,79080,7255,"[\""Tablet\"", \""Wireless Mouse\""]",1789.96,{},270734,0,"""South America""" +2023-08-12,79081,1869,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3466.01,{},69030,0,"""Europe""" +2024-09-10,79082,2446,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",900.11,{},259354,0,"""Asia""" +2023-02-06,79083,7649,"[\""Charger\""]",966.37,{},142422,1,"""North America""" +2024-12-18,79084,3009,"[\""Phone\""]",1601.54,"{\""loyalty\"": \""20%\""}",115877,0,"""Asia""" +2024-01-06,79085,3586,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2476.72,"{\"": \""21%\""}",114510,1,"""Africa""" +2024-10-04,79086,8138,"[\""Phone\"", \""Laptop\""]",1409.63,{},161756,1,"""Asia""" +2023-03-25,79087,6715,"[\""Headphones\""]",2472.29,{},275988,0,"""Asia""" +2024-07-04,79088,8290,"[\""Keyboard\""]",898.29,{},240924,1,"""Africa""" +2023-09-29,79089,1153,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4132.55,"{\""seasonal\"": \""13%\""}",117778,0,"""Europe""" +2023-03-15,79090,3375,"[\""Headphones\""]",2162.43,{},235527,1,"""North America""" +2023-02-11,79091,6167,"[\""Tablet\""]",4103.93,"{\""loyalty\"": \""27%\""}",72301,1,"""South America""" +2024-11-26,79092,3221,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3893.09,"{\""loyalty\"": \""27%\""}",153888,1,"""South America""" +2024-06-09,79093,2743,"[\""Laptop\""]",4178.04,"{\""seasonal\"": \""29%\""}",172040,0,"""South America""" +2023-10-25,79094,3037,"[\""Headphones\"", \""Monitor\""]",3960.32,"{\""loyalty\"": \""29%\""}",92992,1,"""Asia""" +2024-07-11,79095,7327,"[\""Phone\"", \""Charger\""]",4234.99,{},177872,0,"""Asia""" +2023-10-15,79096,4367,"[\""Wireless Mouse\""]",1649.05,"{\""seasonal\"": \""24%\""}",89424,1,"""Asia""" +2024-09-16,79097,2495,"[\""Wireless Mouse\"", \""Keyboard\""]",1116.68,"{\""seasonal\"": \""13%\""}",10986,0,"""Africa""" +2023-07-24,79098,9145,"[\""Monitor\""]",929.26,{},9423,0,"""Europe""" +2023-07-30,79099,6712,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4911.95,{},14080,1,"""South America""" +2024-01-16,79100,2297,"[\""Laptop\"", \""Monitor\""]",576.07,{},189077,0,"""Europe""" +2024-12-29,79101,7343,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2171.21,{},134830,1,"""Europe""" +2024-08-28,79102,4354,"[\""Tablet\""]",4503.49,"{\"": \""10%\""}",258371,1,"""Africa""" +2023-06-05,79103,4368,"[\""Monitor\""]",1254.87,"{\""seasonal\"": \""19%\""}",280241,1,"""North America""" +2024-02-01,79104,3721,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2915.18,{},11305,1,"""North America""" +2024-10-28,79105,8251,"[\""Tablet\"", \""Keyboard\""]",4025.98,{},8524,0,"""Africa""" +2023-06-12,79106,8925,"[\""Tablet\""]",2191.68,{},284430,1,"""Europe""" +2023-12-30,79107,1069,"[\""Keyboard\""]",3499.95,"{\"": \""5%\""}",12365,0,"""Europe""" +2024-04-27,79108,1279,"[\""Keyboard\""]",2052.26,{},142309,1,"""Asia""" +2024-07-04,79109,447,"[\""Headphones\""]",4372.74,{},210695,0,"""North America""" +2023-09-06,79110,5435,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2881.43,{},196178,0,"""North America""" +2024-12-20,79111,7203,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2827.45,{},242052,1,"""Asia""" +2024-06-10,79112,2349,"[\""Keyboard\""]",3752.45,"{\""promo\"": \""8%\""}",157248,0,"""South America""" +2023-04-22,79113,5303,"[\""Charger\"", \""Keyboard\""]",579.81,"{\""promo\"": \""5%\""}",83257,1,"""Europe""" +2024-02-12,79114,822,"[\""Tablet\"", \""Keyboard\""]",2615.61,"{\"": \""10%\""}",38407,1,"""North America""" +2023-03-21,79115,8655,"[\""Keyboard\"", \""Headphones\""]",4923.11,"{\"": \""15%\""}",42621,1,"""Europe""" +2023-01-05,79116,7835,"[\""Keyboard\"", \""Laptop\""]",615.99,"{\""seasonal\"": \""8%\""}",121872,0,"""Africa""" +2024-07-02,79117,2922,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1616.89,{},167360,1,"""North America""" +2023-08-05,79118,7137,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2379.61,"{\""seasonal\"": \""24%\""}",32215,0,"""Europe""" +2023-11-30,79119,4826,"[\""Phone\""]",886.79,{},51025,0,"""Asia""" +2023-10-13,79120,1480,"[\""Charger\""]",3246.24,"{\""seasonal\"": \""22%\""}",96999,1,"""Europe""" +2023-06-28,79121,5090,"[\""Phone\""]",3645.66,{},50502,0,"""Africa""" +2024-10-11,79122,3626,"[\""Tablet\""]",330.2,{},106795,1,"""Asia""" +2024-03-10,79123,1316,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3027.74,{},15681,0,"""South America""" +2024-06-04,79124,2419,"[\""Wireless Mouse\"", \""Monitor\""]",3219.05,"{\""loyalty\"": \""23%\""}",39679,0,"""North America""" +2023-01-29,79125,9570,"[\""Laptop\"", \""Wireless Mouse\""]",1197.44,"{\"": \""7%\""}",125504,1,"""North America""" +2023-11-10,79126,7311,"[\""Phone\""]",3812.48,{},13792,0,"""Europe""" +2023-12-30,79127,2164,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4040.91,{},88922,0,"""Asia""" +2023-04-03,79128,7046,"[\""Laptop\""]",3011.95,{},145578,1,"""South America""" +2023-11-14,79129,661,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3715.35,{},104030,1,"""South America""" +2024-02-24,79130,6237,"[\""Keyboard\"", \""Wireless Mouse\""]",1524.63,"{\""loyalty\"": \""26%\""}",290730,1,"""Asia""" +2024-07-27,79131,5669,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3073.65,"{\""seasonal\"": \""26%\""}",239927,1,"""Africa""" +2024-10-22,79132,68,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4229.48,{},228500,0,"""South America""" +2023-02-25,79133,5998,"[\""Monitor\"", \""Tablet\""]",2505.43,"{\""promo\"": \""17%\""}",299806,1,"""Europe""" +2023-01-26,79134,3511,"[\""Phone\"", \""Headphones\""]",3239.12,{},182073,1,"""South America""" +2024-11-10,79135,6125,"[\""Monitor\""]",4395.08,{},54791,0,"""South America""" +2024-02-21,79136,8883,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3999.67,"{\""loyalty\"": \""14%\""}",238426,0,"""North America""" +2024-04-24,79137,1971,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4393.27,{},280139,0,"""Asia""" +2024-02-07,79138,4923,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2252.06,{},185171,1,"""North America""" +2023-02-10,79139,1301,"[\""Keyboard\"", \""Charger\""]",367.19,{},209202,1,"""Africa""" +2024-09-14,79140,6729,"[\""Monitor\"", \""Charger\""]",3648.15,{},87236,1,"""Asia""" +2024-04-06,79141,5716,"[\""Laptop\""]",3245.2,"{\""loyalty\"": \""13%\""}",165777,1,"""South America""" +2023-05-03,79142,2401,"[\""Laptop\"", \""Phone\""]",1547.92,"{\""promo\"": \""13%\""}",239721,1,"""South America""" +2023-05-30,79143,4485,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1625.55,"{\""promo\"": \""27%\""}",160136,1,"""North America""" +2024-06-21,79144,7282,"[\""Charger\""]",2788.06,{},44098,0,"""Europe""" +2023-06-04,79145,9750,"[\""Headphones\""]",2805.26,"{\""loyalty\"": \""25%\""}",291415,0,"""Asia""" +2024-10-23,79146,1949,"[\""Charger\"", \""Phone\""]",266.34,"{\""seasonal\"": \""7%\""}",63376,0,"""Europe""" +2023-09-10,79147,7057,"[\""Headphones\""]",3202.18,{},7975,0,"""South America""" +2023-11-24,79148,6997,"[\""Tablet\""]",1539.92,{},292538,0,"""Africa""" +2024-08-26,79149,620,"[\""Monitor\"", \""Phone\""]",4547.97,{},295051,1,"""South America""" +2023-01-01,79150,1088,"[\""Keyboard\"", \""Tablet\""]",2437.36,"{\""promo\"": \""22%\""}",48176,0,"""South America""" +2024-12-17,79151,7786,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1319.97,"{\""promo\"": \""8%\""}",235189,0,"""South America""" +2023-05-31,79152,1027,"[\""Monitor\""]",3310.07,"{\"": \""24%\""}",27203,1,"""Europe""" +2024-01-23,79153,8936,"[\""Monitor\"", \""Phone\""]",3536.63,"{\""seasonal\"": \""10%\""}",171648,1,"""Africa""" +2023-07-25,79154,3703,"[\""Headphones\""]",360.87,"{\""seasonal\"": \""10%\""}",278665,0,"""South America""" +2023-01-19,79155,6906,"[\""Laptop\"", \""Phone\""]",144.2,{},228223,0,"""Europe""" +2023-08-31,79156,2241,"[\""Laptop\""]",749.57,"{\""loyalty\"": \""29%\""}",195960,1,"""North America""" +2023-02-18,79157,467,"[\""Keyboard\""]",121.77,{},257043,0,"""North America""" +2024-03-01,79158,3963,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1751.32,"{\""loyalty\"": \""16%\""}",116934,0,"""Asia""" +2023-09-27,79159,6216,"[\""Headphones\""]",614.62,"{\"": \""20%\""}",84215,1,"""North America""" +2023-12-19,79160,9186,"[\""Laptop\""]",2967.9,"{\"": \""16%\""}",136904,1,"""Asia""" +2024-11-05,79161,9949,"[\""Charger\""]",773.5,{},166181,1,"""South America""" +2024-07-11,79162,7507,"[\""Charger\"", \""Monitor\""]",1096.44,{},113908,0,"""Europe""" +2024-12-31,79163,1216,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4451.21,"{\""seasonal\"": \""22%\""}",56337,0,"""Africa""" +2023-01-09,79164,9237,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3764.29,{},161121,0,"""North America""" +2023-05-20,79165,8104,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1009.27,{},291537,1,"""South America""" +2024-11-14,79166,5500,"[\""Charger\""]",1112.32,"{\""loyalty\"": \""23%\""}",49289,1,"""North America""" +2024-01-10,79167,2450,"[\""Monitor\""]",373.11,{},190292,0,"""Africa""" +2024-02-05,79168,7612,"[\""Wireless Mouse\""]",4616.03,"{\""promo\"": \""28%\""}",209881,1,"""Europe""" +2024-11-25,79169,9760,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3768.48,"{\"": \""13%\""}",293511,0,"""North America""" +2024-04-25,79170,2806,"[\""Keyboard\"", \""Headphones\""]",3657.32,"{\""promo\"": \""18%\""}",100823,1,"""Africa""" +2023-01-24,79171,6378,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",698.85,"{\""promo\"": \""9%\""}",277437,1,"""South America""" +2024-06-17,79172,9282,"[\""Phone\""]",1042.3,{},201316,1,"""Europe""" +2023-08-09,79173,4398,"[\""Laptop\""]",1850.47,"{\""loyalty\"": \""19%\""}",11916,0,"""South America""" +2023-09-24,79174,7390,"[\""Keyboard\"", \""Monitor\""]",1508.14,"{\"": \""21%\""}",228568,1,"""Asia""" +2023-03-24,79175,6711,"[\""Tablet\""]",876.62,"{\""loyalty\"": \""8%\""}",33790,0,"""South America""" +2023-04-28,79176,5234,"[\""Phone\""]",554.68,{},20154,1,"""Europe""" +2023-05-30,79177,6287,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4829.88,{},74065,1,"""North America""" +2023-05-23,79178,4229,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1980.01,"{\""seasonal\"": \""17%\""}",11602,0,"""South America""" +2024-02-12,79179,516,"[\""Headphones\"", \""Laptop\""]",2851.99,{},246786,1,"""North America""" +2023-04-07,79180,1531,"[\""Laptop\""]",1099.31,{},88099,0,"""Africa""" +2024-10-10,79181,8744,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2647.42,{},104150,0,"""Asia""" +2024-02-09,79182,3501,"[\""Laptop\""]",2093.79,"{\""seasonal\"": \""13%\""}",232043,1,"""North America""" +2024-08-26,79183,8561,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2268.62,"{\""promo\"": \""22%\""}",207256,1,"""Europe""" +2023-06-22,79184,8506,"[\""Monitor\"", \""Wireless Mouse\""]",3570.2,"{\""loyalty\"": \""11%\""}",23084,1,"""Asia""" +2024-01-21,79185,7704,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1906.76,"{\""loyalty\"": \""13%\""}",106295,0,"""Africa""" +2024-09-07,79186,2247,"[\""Headphones\""]",4296.27,"{\""seasonal\"": \""14%\""}",115820,1,"""North America""" +2023-06-05,79187,3865,"[\""Monitor\""]",4518.4,"{\""promo\"": \""21%\""}",116509,1,"""North America""" +2023-10-30,79188,6633,"[\""Keyboard\""]",3800.74,{},133581,0,"""North America""" +2024-12-06,79189,8191,"[\""Monitor\"", \""Phone\""]",3857.56,{},166350,1,"""North America""" +2024-10-26,79190,9799,"[\""Charger\"", \""Laptop\""]",356.41,{},99231,0,"""North America""" +2024-12-25,79191,8995,"[\""Wireless Mouse\"", \""Tablet\""]",2281.12,"{\"": \""21%\""}",173687,1,"""North America""" +2023-01-29,79192,268,"[\""Phone\"", \""Keyboard\""]",2911.88,{},238684,1,"""South America""" +2024-02-22,79193,1731,"[\""Laptop\""]",3080.49,"{\""promo\"": \""26%\""}",172358,0,"""Africa""" +2023-04-17,79194,9970,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",681.2,"{\"": \""7%\""}",176579,1,"""Europe""" +2024-03-07,79195,3438,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2630.48,{},39504,1,"""Asia""" +2024-05-08,79196,375,"[\""Monitor\""]",3957.21,{},272033,0,"""Asia""" +2024-04-13,79197,9707,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4241.16,{},173159,0,"""Africa""" +2023-01-28,79198,6695,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3861.31,"{\""promo\"": \""23%\""}",141121,0,"""South America""" +2024-11-22,79199,3029,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1252.02,{},186628,0,"""Africa""" +2023-01-11,79200,4221,"[\""Charger\"", \""Laptop\""]",4434.1,{},109837,1,"""South America""" +2023-11-15,79201,2446,"[\""Tablet\"", \""Wireless Mouse\""]",1153.21,"{\""promo\"": \""11%\""}",158220,1,"""Africa""" +2024-10-11,79202,5615,"[\""Monitor\"", \""Wireless Mouse\""]",1951.1,{},235903,0,"""North America""" +2023-10-22,79203,2381,"[\""Monitor\"", \""Phone\""]",3043.84,{},91750,0,"""Europe""" +2023-05-04,79204,24,"[\""Keyboard\"", \""Tablet\""]",1623.93,"{\""seasonal\"": \""7%\""}",68700,1,"""North America""" +2023-10-16,79205,6003,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",598.89,{},33989,0,"""Europe""" +2024-06-27,79206,858,"[\""Phone\""]",1452.54,"{\""loyalty\"": \""22%\""}",33444,0,"""North America""" +2023-10-22,79207,1866,"[\""Wireless Mouse\"", \""Phone\""]",293.45,{},147711,0,"""North America""" +2024-08-25,79208,1464,"[\""Charger\"", \""Phone\""]",939.05,{},154963,0,"""North America""" +2024-01-10,79209,3606,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4142.75,{},81073,1,"""South America""" +2024-05-21,79210,3528,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",126.13,{},241769,0,"""South America""" +2023-03-13,79211,7631,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",2649.26,{},12703,0,"""Europe""" +2023-05-25,79212,2053,"[\""Laptop\"", \""Headphones\""]",4285.2,{},290777,0,"""Africa""" +2023-12-16,79213,1563,"[\""Charger\""]",1160.05,"{\""promo\"": \""13%\""}",90723,0,"""Europe""" +2023-08-18,79214,261,"[\""Keyboard\"", \""Wireless Mouse\""]",484.39,"{\""promo\"": \""13%\""}",214987,0,"""South America""" +2023-08-08,79215,7166,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2651.38,{},140057,0,"""South America""" +2023-12-12,79216,3394,"[\""Headphones\""]",3792.28,"{\"": \""20%\""}",202645,0,"""Asia""" +2024-03-23,79217,7303,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",867.73,"{\""loyalty\"": \""14%\""}",223392,1,"""North America""" +2024-02-23,79218,9538,"[\""Wireless Mouse\""]",1210.43,"{\""seasonal\"": \""24%\""}",294198,1,"""Europe""" +2024-04-03,79219,2597,"[\""Laptop\""]",405.06,"{\""seasonal\"": \""14%\""}",275349,1,"""North America""" +2024-04-13,79220,6512,"[\""Charger\""]",4273.06,{},261422,1,"""South America""" +2024-12-04,79221,1492,"[\""Monitor\""]",601.39,{},93166,0,"""North America""" +2023-07-09,79222,7471,"[\""Tablet\""]",3630.55,{},165358,1,"""Asia""" +2024-02-08,79223,4389,"[\""Monitor\""]",3465.97,"{\"": \""6%\""}",184711,0,"""North America""" +2024-05-25,79224,3705,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3779.86,"{\""loyalty\"": \""6%\""}",64487,1,"""North America""" +2023-04-19,79225,4947,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",832.32,{},271030,0,"""North America""" +2023-01-11,79226,1225,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",558.87,"{\""seasonal\"": \""9%\""}",163187,0,"""North America""" +2024-08-16,79227,8085,"[\""Tablet\""]",2755.47,{},116275,1,"""Europe""" +2024-01-29,79228,5908,"[\""Headphones\""]",4393.94,"{\""loyalty\"": \""6%\""}",234491,1,"""Asia""" +2023-08-25,79229,6658,"[\""Phone\"", \""Headphones\""]",950.25,{},206575,1,"""Africa""" +2023-11-27,79230,7386,"[\""Wireless Mouse\""]",2264.98,{},278517,0,"""Africa""" +2024-05-17,79231,6341,"[\""Keyboard\""]",3718.78,"{\""seasonal\"": \""10%\""}",283794,1,"""Asia""" +2023-11-15,79232,1949,"[\""Phone\""]",3460.57,{},157432,0,"""Asia""" +2023-12-05,79233,8246,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2568.56,"{\""promo\"": \""24%\""}",270522,0,"""North America""" +2024-03-16,79234,8590,"[\""Charger\"", \""Tablet\""]",1957.29,{},126482,0,"""Asia""" +2024-03-09,79235,4900,"[\""Charger\""]",3656.6,{},154839,0,"""Asia""" +2023-04-11,79236,9056,"[\""Tablet\"", \""Monitor\""]",1602.41,"{\""promo\"": \""24%\""}",4757,1,"""Europe""" +2023-06-03,79237,4525,"[\""Tablet\"", \""Wireless Mouse\""]",1060.25,"{\""promo\"": \""10%\""}",76567,1,"""South America""" +2024-08-15,79238,1042,"[\""Wireless Mouse\""]",1397.25,"{\""loyalty\"": \""29%\""}",71856,1,"""South America""" +2023-08-25,79239,3578,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1691.5,{},43363,1,"""Europe""" +2024-11-06,79240,1498,"[\""Monitor\""]",2682.72,{},84272,1,"""Europe""" +2023-12-23,79241,4437,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4506.14,{},70134,1,"""North America""" +2024-12-15,79242,726,"[\""Monitor\""]",1127.27,"{\""loyalty\"": \""9%\""}",98762,0,"""Asia""" +2023-06-01,79243,7385,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",941.06,"{\"": \""25%\""}",216474,1,"""South America""" +2024-06-22,79244,5203,"[\""Monitor\""]",4126.05,"{\"": \""25%\""}",274889,0,"""South America""" +2023-06-06,79245,8276,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2368.52,{},140387,1,"""Europe""" +2023-06-25,79246,409,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2386.91,{},228750,1,"""North America""" +2024-06-19,79247,5130,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4002.07,"{\"": \""8%\""}",125208,0,"""Asia""" +2023-12-25,79248,7106,"[\""Laptop\""]",4140.54,"{\""seasonal\"": \""28%\""}",17342,0,"""North America""" +2023-03-08,79249,6037,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4524.13,{},83138,1,"""Europe""" +2024-08-16,79250,6223,"[\""Laptop\""]",1708.76,{},201349,0,"""Asia""" +2024-07-02,79251,7055,"[\""Charger\""]",3024.58,{},117178,0,"""South America""" +2024-02-13,79252,1743,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",343.34,"{\""seasonal\"": \""6%\""}",46421,1,"""South America""" +2024-09-24,79253,6202,"[\""Phone\"", \""Wireless Mouse\""]",1917.55,"{\""promo\"": \""11%\""}",195359,0,"""North America""" +2023-08-11,79254,1767,"[\""Wireless Mouse\"", \""Tablet\""]",4322.85,"{\""promo\"": \""21%\""}",293975,0,"""Africa""" +2023-03-03,79255,8806,"[\""Charger\"", \""Keyboard\""]",769.71,"{\""promo\"": \""14%\""}",39808,1,"""South America""" +2024-10-09,79256,4551,"[\""Tablet\"", \""Laptop\""]",331.73,{},162938,1,"""Africa""" +2024-08-05,79257,9108,"[\""Wireless Mouse\"", \""Headphones\""]",1896.93,{},125804,0,"""Asia""" +2023-04-21,79258,5889,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",734.99,"{\""seasonal\"": \""13%\""}",91229,0,"""North America""" +2023-02-22,79259,2475,"[\""Monitor\"", \""Wireless Mouse\""]",1491.63,{},28351,1,"""Europe""" +2024-12-14,79260,2844,"[\""Wireless Mouse\""]",4990.39,{},280478,0,"""South America""" +2024-12-21,79261,9586,"[\""Monitor\"", \""Phone\""]",2696.87,{},282724,0,"""Europe""" +2024-03-02,79262,3564,"[\""Headphones\""]",143.78,"{\""loyalty\"": \""22%\""}",221196,0,"""Europe""" +2024-12-10,79263,2622,"[\""Charger\""]",2764.99,{},268391,1,"""North America""" +2023-08-08,79264,463,"[\""Monitor\"", \""Wireless Mouse\""]",2648.72,"{\""seasonal\"": \""24%\""}",50419,1,"""Asia""" +2024-12-18,79265,4980,"[\""Wireless Mouse\"", \""Monitor\""]",699.22,{},135611,0,"""South America""" +2024-10-30,79266,6063,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1035.55,"{\""promo\"": \""10%\""}",116528,1,"""Europe""" +2023-03-29,79267,7150,"[\""Phone\""]",4961.0,"{\""promo\"": \""10%\""}",195578,1,"""North America""" +2023-01-23,79268,825,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3283.47,{},44251,0,"""North America""" +2024-12-03,79269,96,"[\""Monitor\"", \""Laptop\""]",1865.41,"{\""seasonal\"": \""6%\""}",47603,1,"""North America""" +2024-11-28,79270,1514,"[\""Charger\"", \""Monitor\""]",4240.08,{},109788,0,"""Asia""" +2024-04-06,79271,3406,"[\""Monitor\""]",680.02,"{\""loyalty\"": \""19%\""}",275056,0,"""Asia""" +2023-02-21,79272,6740,"[\""Wireless Mouse\"", \""Charger\""]",4201.46,{},111776,1,"""Europe""" +2024-05-09,79273,6945,"[\""Laptop\""]",362.89,{},188830,0,"""Africa""" +2024-06-22,79274,7906,"[\""Charger\""]",560.29,{},52843,1,"""Asia""" +2023-03-07,79275,1534,"[\""Wireless Mouse\"", \""Laptop\""]",4709.9,"{\""seasonal\"": \""12%\""}",260749,0,"""Africa""" +2024-11-15,79276,8918,"[\""Monitor\"", \""Charger\""]",659.43,"{\""loyalty\"": \""15%\""}",139481,1,"""Africa""" +2023-07-25,79277,7819,"[\""Headphones\"", \""Phone\""]",3556.06,"{\""seasonal\"": \""18%\""}",171236,0,"""South America""" +2024-07-15,79278,7174,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3356.22,"{\""seasonal\"": \""20%\""}",106785,0,"""North America""" +2024-11-27,79279,6154,"[\""Keyboard\"", \""Monitor\""]",1027.05,{},265813,1,"""Europe""" +2023-01-27,79280,6031,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3550.98,"{\""loyalty\"": \""5%\""}",75394,0,"""Asia""" +2023-12-14,79281,6275,"[\""Headphones\"", \""Laptop\""]",1962.14,{},299656,0,"""Asia""" +2023-12-15,79282,4346,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4059.64,{},284291,0,"""South America""" +2024-08-26,79283,6363,"[\""Tablet\""]",3701.04,{},45121,1,"""South America""" +2023-05-01,79284,6800,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4560.99,"{\""loyalty\"": \""22%\""}",218446,0,"""Asia""" +2023-01-15,79285,7662,"[\""Monitor\"", \""Laptop\""]",4293.24,{},223764,0,"""North America""" +2024-04-17,79286,2780,"[\""Wireless Mouse\"", \""Laptop\""]",3930.56,"{\""seasonal\"": \""11%\""}",209263,0,"""Europe""" +2023-06-11,79287,8257,"[\""Monitor\""]",3453.0,{},112793,1,"""Europe""" +2024-02-16,79288,4716,"[\""Laptop\"", \""Tablet\""]",2933.18,"{\""seasonal\"": \""11%\""}",84951,0,"""South America""" +2024-01-12,79289,3318,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2999.86,"{\""seasonal\"": \""13%\""}",168424,1,"""Asia""" +2023-05-09,79290,5102,"[\""Laptop\"", \""Tablet\""]",993.25,"{\""loyalty\"": \""7%\""}",86817,0,"""Africa""" +2024-02-15,79291,7982,"[\""Wireless Mouse\""]",4440.32,{},253089,0,"""Europe""" +2023-12-16,79292,4751,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3344.83,"{\""promo\"": \""13%\""}",157242,1,"""North America""" +2023-09-10,79293,7867,"[\""Wireless Mouse\""]",54.2,{},139103,1,"""Asia""" +2023-08-30,79294,1323,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1062.85,"{\""loyalty\"": \""24%\""}",92855,0,"""Asia""" +2023-02-04,79295,5749,"[\""Wireless Mouse\"", \""Charger\""]",3267.61,"{\""promo\"": \""29%\""}",92091,1,"""North America""" +2023-05-24,79296,1789,"[\""Headphones\""]",1932.49,"{\""seasonal\"": \""7%\""}",221136,0,"""South America""" +2023-10-09,79297,8427,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1008.28,"{\"": \""24%\""}",296796,1,"""North America""" +2024-06-24,79298,4895,"[\""Phone\""]",635.47,"{\"": \""27%\""}",138295,0,"""Europe""" +2024-06-28,79299,4846,"[\""Tablet\"", \""Wireless Mouse\""]",590.09,{},135916,1,"""Europe""" +2023-07-07,79300,6274,"[\""Wireless Mouse\"", \""Laptop\""]",1540.67,{},164252,1,"""South America""" +2023-01-06,79301,362,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",350.73,"{\""promo\"": \""9%\""}",3937,1,"""North America""" +2023-05-03,79302,1333,"[\""Wireless Mouse\""]",4351.69,"{\"": \""23%\""}",76650,0,"""Africa""" +2024-12-13,79303,4292,"[\""Tablet\"", \""Laptop\""]",4881.05,{},207486,1,"""North America""" +2024-03-24,79304,362,"[\""Tablet\"", \""Keyboard\""]",60.81,"{\"": \""8%\""}",191747,0,"""Asia""" +2024-12-27,79305,9072,"[\""Keyboard\""]",1561.43,"{\""seasonal\"": \""14%\""}",123706,0,"""South America""" +2023-08-11,79306,4810,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3339.79,"{\""promo\"": \""27%\""}",179183,0,"""North America""" +2023-09-09,79307,4264,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2245.81,"{\""promo\"": \""6%\""}",294489,0,"""Africa""" +2024-02-21,79308,9491,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3872.59,"{\"": \""27%\""}",254890,0,"""Europe""" +2023-08-08,79309,302,"[\""Phone\"", \""Monitor\""]",3894.94,{},150207,0,"""Europe""" +2023-09-19,79310,3148,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4709.1,{},115928,0,"""South America""" +2024-12-18,79311,7425,"[\""Tablet\""]",1774.13,{},32236,0,"""Asia""" +2024-04-17,79312,5127,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3224.53,{},259124,1,"""Asia""" +2024-08-19,79313,1441,"[\""Charger\"", \""Tablet\""]",3677.12,{},228285,0,"""Africa""" +2024-05-23,79314,8538,"[\""Headphones\"", \""Laptop\""]",4684.85,{},91902,0,"""North America""" +2024-07-10,79315,6200,"[\""Monitor\""]",1113.95,"{\"": \""6%\""}",78266,1,"""Africa""" +2023-03-12,79316,3022,"[\""Charger\"", \""Keyboard\""]",2120.75,{},286648,1,"""Africa""" +2023-08-02,79317,1156,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1049.35,{},120805,0,"""Asia""" +2024-06-05,79318,7453,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2312.58,"{\""promo\"": \""28%\""}",141433,1,"""South America""" +2023-02-21,79319,3053,"[\""Tablet\""]",3891.21,{},289053,1,"""South America""" +2024-01-18,79320,9732,"[\""Charger\""]",441.96,{},176529,1,"""Europe""" +2024-03-24,79321,2909,"[\""Keyboard\"", \""Headphones\""]",628.5,{},24467,1,"""Europe""" +2023-12-19,79322,8261,"[\""Tablet\"", \""Monitor\""]",187.24,{},94070,0,"""South America""" +2024-03-25,79323,5668,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1272.75,"{\""loyalty\"": \""19%\""}",190856,1,"""Europe""" +2023-12-08,79324,6576,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3586.54,{},52711,1,"""Africa""" +2023-08-18,79325,1383,"[\""Monitor\""]",2636.97,{},173918,0,"""North America""" +2023-12-25,79326,116,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3575.47,{},294121,0,"""Asia""" +2023-08-20,79327,1841,"[\""Wireless Mouse\"", \""Tablet\""]",2313.19,{},186980,0,"""North America""" +2024-09-15,79328,764,"[\""Keyboard\""]",4953.31,"{\""seasonal\"": \""17%\""}",176029,0,"""Africa""" +2024-06-14,79329,1744,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1961.37,{},151052,0,"""South America""" +2024-10-25,79330,1716,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",983.16,"{\""seasonal\"": \""18%\""}",96657,0,"""North America""" +2024-07-16,79331,2511,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3491.7,{},68482,0,"""Asia""" +2023-12-10,79332,2459,"[\""Laptop\""]",4589.2,{},157027,1,"""South America""" +2023-04-12,79333,8704,"[\""Headphones\""]",1327.39,{},60338,0,"""Africa""" +2023-07-21,79334,1998,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4656.4,{},206056,0,"""North America""" +2023-11-16,79335,9778,"[\""Tablet\""]",2035.68,"{\""seasonal\"": \""27%\""}",155831,0,"""North America""" +2023-03-03,79336,7138,"[\""Headphones\"", \""Phone\""]",674.31,"{\""promo\"": \""26%\""}",16443,0,"""Asia""" +2024-01-09,79337,7632,"[\""Laptop\""]",4604.41,"{\""promo\"": \""23%\""}",130663,0,"""South America""" +2023-03-17,79338,3402,"[\""Headphones\""]",4446.05,{},184074,0,"""Africa""" +2024-11-20,79339,3486,"[\""Headphones\""]",3695.71,{},252841,1,"""Asia""" +2024-02-15,79340,2626,"[\""Charger\""]",168.55,{},23407,1,"""Africa""" +2023-11-20,79341,875,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",218.78,"{\""promo\"": \""6%\""}",167272,0,"""North America""" +2023-11-13,79342,4133,"[\""Phone\""]",4070.03,"{\"": \""6%\""}",150713,0,"""Africa""" +2023-05-29,79343,9272,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",727.98,"{\""promo\"": \""8%\""}",180082,1,"""Asia""" +2024-09-17,79344,5052,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4401.34,"{\""seasonal\"": \""19%\""}",107087,0,"""Africa""" +2024-11-30,79345,9985,"[\""Tablet\"", \""Keyboard\""]",230.71,"{\""seasonal\"": \""12%\""}",266005,1,"""Asia""" +2024-03-30,79346,7438,"[\""Phone\"", \""Charger\""]",756.6,"{\""promo\"": \""15%\""}",131390,1,"""North America""" +2023-10-30,79347,128,"[\""Charger\"", \""Monitor\""]",1011.03,"{\""promo\"": \""25%\""}",150914,1,"""Africa""" +2024-04-12,79348,4910,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4038.83,"{\""seasonal\"": \""26%\""}",252206,0,"""Europe""" +2023-11-11,79349,3947,"[\""Charger\""]",2912.81,"{\""loyalty\"": \""25%\""}",95135,1,"""Asia""" +2023-05-01,79350,4250,"[\""Monitor\""]",2547.46,"{\""loyalty\"": \""12%\""}",123278,1,"""North America""" +2024-08-03,79351,3212,"[\""Tablet\""]",2195.65,"{\"": \""13%\""}",167590,0,"""South America""" +2024-03-16,79352,3182,"[\""Tablet\""]",620.97,"{\""promo\"": \""14%\""}",197647,1,"""South America""" +2024-05-25,79353,3529,"[\""Keyboard\"", \""Phone\""]",3975.47,{},20041,1,"""Europe""" +2024-10-23,79354,8296,"[\""Laptop\"", \""Wireless Mouse\""]",1418.7,{},80840,1,"""Asia""" +2024-12-14,79355,1599,"[\""Tablet\"", \""Wireless Mouse\""]",763.38,"{\""promo\"": \""29%\""}",101385,1,"""Asia""" +2023-11-24,79356,4424,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",378.34,{},298735,0,"""Europe""" +2023-12-19,79357,7285,"[\""Charger\""]",1789.22,"{\"": \""13%\""}",284153,0,"""North America""" +2023-08-24,79358,4848,"[\""Wireless Mouse\""]",3572.79,{},242793,1,"""North America""" +2023-02-26,79359,2825,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1882.17,"{\"": \""13%\""}",133109,0,"""Asia""" +2024-01-23,79360,8549,"[\""Headphones\"", \""Keyboard\""]",2949.94,"{\"": \""9%\""}",131892,0,"""North America""" +2024-06-30,79361,9557,"[\""Phone\"", \""Tablet\""]",401.05,"{\"": \""16%\""}",176423,1,"""Europe""" +2023-02-18,79362,5920,"[\""Wireless Mouse\"", \""Phone\""]",4645.81,{},154662,0,"""Africa""" +2024-05-26,79363,1721,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3280.18,"{\""promo\"": \""24%\""}",294553,1,"""Europe""" +2024-01-28,79364,7303,"[\""Phone\"", \""Keyboard\""]",2305.92,{},62769,1,"""North America""" +2023-11-17,79365,6594,"[\""Laptop\"", \""Charger\""]",3809.74,"{\""loyalty\"": \""11%\""}",152643,0,"""Africa""" +2024-03-18,79366,8402,"[\""Tablet\"", \""Phone\""]",1868.33,{},246385,1,"""Asia""" +2023-10-10,79367,5402,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3702.44,{},116901,0,"""Europe""" +2024-09-27,79368,3890,"[\""Phone\"", \""Laptop\""]",1546.77,{},131818,0,"""North America""" +2023-10-15,79369,8448,"[\""Keyboard\""]",2449.24,{},192435,1,"""North America""" +2024-06-02,79370,78,"[\""Laptop\"", \""Wireless Mouse\""]",3643.91,"{\"": \""19%\""}",20357,0,"""Europe""" +2023-01-17,79371,7732,"[\""Keyboard\""]",3512.8,"{\"": \""8%\""}",170135,0,"""South America""" +2024-11-25,79372,6588,"[\""Tablet\""]",84.69,{},21082,0,"""Asia""" +2024-07-26,79373,6294,"[\""Tablet\"", \""Wireless Mouse\""]",1848.09,{},26235,1,"""Asia""" +2024-02-02,79374,3272,"[\""Phone\""]",4447.02,"{\""seasonal\"": \""27%\""}",188696,1,"""North America""" +2023-01-06,79375,1248,"[\""Charger\"", \""Keyboard\""]",4791.67,"{\"": \""30%\""}",183711,1,"""North America""" +2023-09-18,79376,8826,"[\""Charger\""]",1430.55,"{\"": \""12%\""}",190494,0,"""South America""" +2023-11-15,79377,4788,"[\""Phone\""]",4730.14,{},21294,1,"""South America""" +2024-08-31,79378,9452,"[\""Monitor\""]",3913.25,"{\"": \""26%\""}",148276,0,"""Africa""" +2024-06-29,79379,6170,"[\""Monitor\"", \""Keyboard\""]",3798.7,"{\""promo\"": \""28%\""}",35097,1,"""North America""" +2023-12-26,79380,7611,"[\""Charger\"", \""Phone\""]",4251.98,{},95958,0,"""Africa""" +2023-10-23,79381,8270,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3469.82,{},46744,1,"""North America""" +2024-06-22,79382,2092,"[\""Laptop\"", \""Keyboard\""]",408.69,{},68433,0,"""Asia""" +2024-07-26,79383,9450,"[\""Tablet\""]",675.79,{},263506,1,"""North America""" +2024-07-05,79384,4194,"[\""Wireless Mouse\"", \""Laptop\""]",2437.71,"{\""seasonal\"": \""20%\""}",228878,1,"""Asia""" +2023-06-08,79385,8698,"[\""Keyboard\""]",2933.16,{},283273,1,"""South America""" +2023-06-22,79386,8315,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2181.47,{},165568,0,"""North America""" +2024-09-10,79387,3035,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",244.22,{},178990,1,"""North America""" +2023-03-25,79388,8773,"[\""Charger\"", \""Tablet\"", \""Phone\""]",223.73,"{\""promo\"": \""28%\""}",136682,0,"""Europe""" +2023-06-19,79389,5393,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4971.07,"{\""loyalty\"": \""17%\""}",8756,0,"""Asia""" +2024-06-18,79390,4378,"[\""Laptop\""]",2592.83,{},63974,0,"""Europe""" +2024-01-27,79391,7223,"[\""Tablet\"", \""Wireless Mouse\""]",4796.33,{},52682,1,"""Asia""" +2023-07-17,79392,2908,"[\""Keyboard\""]",2843.58,{},17884,0,"""North America""" +2024-09-05,79393,9962,"[\""Headphones\"", \""Keyboard\""]",2267.99,"{\""promo\"": \""8%\""}",254620,1,"""North America""" +2024-05-27,79394,4026,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4740.19,{},123549,0,"""Africa""" +2024-01-11,79395,1890,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",675.67,"{\""loyalty\"": \""12%\""}",169430,1,"""South America""" +2023-09-19,79396,8321,"[\""Wireless Mouse\"", \""Keyboard\""]",2241.05,"{\""loyalty\"": \""10%\""}",176700,0,"""Europe""" +2023-04-11,79397,8038,"[\""Monitor\"", \""Tablet\""]",521.83,"{\""seasonal\"": \""11%\""}",186295,0,"""Asia""" +2023-06-20,79398,9358,"[\""Phone\"", \""Charger\""]",4047.78,{},70472,1,"""South America""" +2023-12-14,79399,5138,"[\""Headphones\""]",4022.32,{},11005,0,"""Asia""" +2024-08-20,79400,7900,"[\""Charger\""]",1499.24,{},236424,1,"""Africa""" +2023-05-01,79401,8398,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3627.28,{},19565,1,"""Africa""" +2023-02-25,79402,4913,"[\""Headphones\""]",3845.46,{},73390,0,"""Europe""" +2023-11-28,79403,2339,"[\""Charger\"", \""Headphones\""]",109.64,"{\""seasonal\"": \""8%\""}",20950,1,"""Europe""" +2024-09-25,79404,6806,"[\""Wireless Mouse\""]",3075.56,{},251408,0,"""Asia""" +2024-01-01,79405,5558,"[\""Wireless Mouse\"", \""Phone\""]",179.49,"{\""seasonal\"": \""29%\""}",181204,1,"""South America""" +2024-06-22,79406,1941,"[\""Tablet\"", \""Laptop\""]",2551.45,{},80953,0,"""Africa""" +2023-01-12,79407,7429,"[\""Charger\""]",1701.08,"{\""loyalty\"": \""6%\""}",230686,1,"""South America""" +2023-02-24,79408,1065,"[\""Tablet\""]",1225.21,"{\""loyalty\"": \""14%\""}",195524,0,"""South America""" +2023-05-13,79409,1157,"[\""Monitor\""]",67.85,{},59745,1,"""Asia""" +2024-11-29,79410,9934,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3181.42,"{\""promo\"": \""9%\""}",184014,1,"""Asia""" +2024-06-12,79411,3621,"[\""Laptop\""]",3591.26,{},9837,1,"""Europe""" +2023-03-25,79412,6443,"[\""Wireless Mouse\"", \""Phone\""]",466.49,"{\""loyalty\"": \""5%\""}",278082,1,"""North America""" +2024-08-01,79413,8116,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3333.21,{},96319,1,"""Asia""" +2023-10-15,79414,7742,"[\""Tablet\""]",3282.81,"{\""loyalty\"": \""30%\""}",271132,1,"""Asia""" +2023-03-05,79415,3509,"[\""Monitor\"", \""Keyboard\""]",1454.76,"{\""loyalty\"": \""5%\""}",232898,1,"""Europe""" +2024-06-22,79416,1926,"[\""Monitor\""]",3699.63,{},155651,0,"""Asia""" +2024-05-02,79417,6598,"[\""Headphones\""]",2069.79,{},127775,0,"""North America""" +2024-01-08,79418,1636,"[\""Headphones\"", \""Charger\""]",3372.44,"{\""promo\"": \""12%\""}",227673,0,"""South America""" +2024-10-03,79419,4217,"[\""Keyboard\""]",1637.01,{},22337,0,"""Asia""" +2024-11-06,79420,4150,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2589.69,"{\"": \""24%\""}",93816,0,"""South America""" +2023-12-10,79421,5167,"[\""Keyboard\"", \""Tablet\""]",88.21,"{\"": \""18%\""}",25521,0,"""North America""" +2023-08-23,79422,8371,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3109.39,{},252667,0,"""South America""" +2023-01-18,79423,9512,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1120.19,{},149936,1,"""North America""" +2024-09-20,79424,7135,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3114.6,{},135805,0,"""North America""" +2024-12-10,79425,4185,"[\""Keyboard\"", \""Charger\""]",968.67,{},234376,0,"""Africa""" +2024-07-15,79426,4708,"[\""Phone\""]",3312.08,"{\""seasonal\"": \""20%\""}",235922,1,"""Asia""" +2023-08-07,79427,1348,"[\""Laptop\""]",4950.01,"{\"": \""10%\""}",216992,1,"""North America""" +2023-05-10,79428,1752,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3836.99,{},7272,0,"""Africa""" +2024-01-24,79429,7682,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2493.47,{},93249,1,"""Asia""" +2023-07-15,79430,748,"[\""Monitor\""]",2973.95,{},206406,0,"""Asia""" +2023-10-30,79431,2793,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3274.28,{},108281,1,"""Europe""" +2024-05-16,79432,4114,"[\""Wireless Mouse\""]",2409.39,{},296499,0,"""Asia""" +2024-11-28,79433,1148,"[\""Phone\"", \""Laptop\""]",1789.28,{},257109,0,"""Africa""" +2023-03-08,79434,1857,"[\""Laptop\"", \""Charger\""]",4971.5,"{\""promo\"": \""21%\""}",44526,0,"""North America""" +2023-09-13,79435,9226,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3719.38,{},285239,0,"""Asia""" +2023-08-03,79436,8555,"[\""Monitor\""]",601.81,{},241329,1,"""North America""" +2023-10-04,79437,6381,"[\""Tablet\"", \""Wireless Mouse\""]",3231.66,{},88141,1,"""Asia""" +2024-01-02,79438,1159,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4072.08,{},159947,1,"""North America""" +2023-12-23,79439,3511,"[\""Keyboard\"", \""Tablet\""]",115.87,"{\"": \""24%\""}",47599,1,"""Africa""" +2024-03-25,79440,7369,"[\""Headphones\"", \""Keyboard\""]",3541.82,{},47644,0,"""Africa""" +2024-09-10,79441,8928,"[\""Wireless Mouse\""]",2973.1,{},89797,1,"""Africa""" +2024-10-11,79442,6320,"[\""Charger\""]",1723.37,{},142396,1,"""South America""" +2023-06-13,79443,8871,"[\""Wireless Mouse\""]",4312.41,{},249414,1,"""South America""" +2024-08-22,79444,7825,"[\""Wireless Mouse\"", \""Monitor\""]",3189.66,"{\""promo\"": \""19%\""}",271516,0,"""Africa""" +2024-07-15,79445,6663,"[\""Tablet\""]",4257.83,{},97013,0,"""Africa""" +2023-09-16,79446,7793,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4986.62,{},57022,0,"""Asia""" +2023-05-01,79447,2723,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",885.76,{},288224,0,"""Europe""" +2023-01-27,79448,39,"[\""Wireless Mouse\""]",3735.85,{},144703,0,"""Europe""" +2024-04-06,79449,4869,"[\""Headphones\""]",3871.35,{},99112,0,"""Africa""" +2023-05-21,79450,3565,"[\""Keyboard\""]",2159.59,{},40258,1,"""Asia""" +2023-01-19,79451,5724,"[\""Headphones\"", \""Keyboard\""]",3654.1,{},79800,1,"""Asia""" +2023-12-07,79452,4613,"[\""Keyboard\"", \""Wireless Mouse\""]",3218.93,"{\""loyalty\"": \""11%\""}",52381,1,"""North America""" +2024-03-09,79453,9206,"[\""Laptop\""]",757.65,"{\""promo\"": \""10%\""}",107199,1,"""Africa""" +2023-01-20,79454,8414,"[\""Monitor\""]",3157.38,{},129605,1,"""Europe""" +2023-10-01,79455,110,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3587.83,"{\""promo\"": \""13%\""}",173190,0,"""North America""" +2024-02-14,79456,3067,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",324.71,{},295063,1,"""Europe""" +2023-03-30,79457,8014,"[\""Monitor\""]",814.4,"{\"": \""27%\""}",285494,1,"""Asia""" +2024-04-26,79458,4192,"[\""Charger\"", \""Laptop\""]",4935.31,{},291527,0,"""Asia""" +2023-06-08,79459,1538,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2870.16,"{\""loyalty\"": \""11%\""}",81429,1,"""Africa""" +2023-05-11,79460,9197,"[\""Monitor\""]",4601.06,{},196491,0,"""South America""" +2023-04-18,79461,824,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2874.8,"{\""promo\"": \""8%\""}",76187,0,"""Europe""" +2024-10-04,79462,811,"[\""Keyboard\""]",2952.63,{},126114,0,"""Europe""" +2024-02-15,79463,5365,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2191.94,{},164304,1,"""Africa""" +2023-07-07,79464,9709,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1604.49,{},66952,0,"""North America""" +2024-09-07,79465,6171,"[\""Laptop\"", \""Charger\""]",2301.22,"{\""promo\"": \""10%\""}",161435,0,"""Asia""" +2024-11-22,79466,1146,"[\""Charger\""]",1211.29,"{\"": \""13%\""}",90313,1,"""South America""" +2023-12-20,79467,3936,"[\""Monitor\""]",3728.91,"{\""promo\"": \""23%\""}",52398,1,"""Asia""" +2023-05-25,79468,5559,"[\""Phone\"", \""Laptop\""]",3503.42,{},280613,1,"""South America""" +2023-03-08,79469,5813,"[\""Phone\"", \""Tablet\""]",419.15,"{\"": \""24%\""}",26905,1,"""North America""" +2024-10-26,79470,7755,"[\""Monitor\""]",4837.36,"{\""loyalty\"": \""12%\""}",119590,1,"""Europe""" +2024-09-28,79471,1801,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3739.23,{},285772,0,"""Europe""" +2024-11-29,79472,7879,"[\""Phone\""]",785.37,{},121130,1,"""South America""" +2024-02-06,79473,6039,"[\""Monitor\""]",2071.63,{},102098,0,"""Europe""" +2023-11-28,79474,1321,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1331.41,"{\"": \""5%\""}",275793,0,"""Africa""" +2024-10-12,79475,4548,"[\""Tablet\"", \""Charger\""]",945.31,{},115709,0,"""Africa""" +2024-01-10,79476,4554,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3346.2,{},270931,1,"""Europe""" +2023-10-18,79477,3762,"[\""Headphones\"", \""Monitor\""]",4647.56,{},99265,0,"""South America""" +2024-03-07,79478,332,"[\""Tablet\""]",4868.4,"{\""seasonal\"": \""28%\""}",290029,0,"""North America""" +2024-04-07,79479,3140,"[\""Headphones\"", \""Laptop\""]",4650.9,"{\""seasonal\"": \""14%\""}",157452,1,"""Africa""" +2023-07-16,79480,1998,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1849.7,{},238175,1,"""Africa""" +2023-07-04,79481,1572,"[\""Keyboard\"", \""Monitor\""]",3490.74,"{\""promo\"": \""10%\""}",64090,0,"""South America""" +2024-02-20,79482,9906,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1527.36,"{\""loyalty\"": \""16%\""}",245543,1,"""North America""" +2024-07-24,79483,7259,"[\""Phone\"", \""Charger\""]",4648.98,"{\""promo\"": \""20%\""}",177124,0,"""Asia""" +2024-05-23,79484,5223,"[\""Charger\""]",416.35,"{\""loyalty\"": \""16%\""}",26100,1,"""Europe""" +2024-03-27,79485,4308,"[\""Monitor\"", \""Tablet\""]",2246.81,"{\"": \""16%\""}",254184,1,"""Asia""" +2023-03-05,79486,1599,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2573.9,"{\""seasonal\"": \""25%\""}",112818,0,"""Asia""" +2024-09-19,79487,176,"[\""Phone\""]",3010.54,{},183412,0,"""Africa""" +2023-07-01,79488,2910,"[\""Headphones\""]",2513.5,{},279558,1,"""North America""" +2023-04-22,79489,4662,"[\""Charger\""]",2435.9,"{\""seasonal\"": \""18%\""}",175594,0,"""Asia""" +2023-11-07,79490,5153,"[\""Tablet\"", \""Monitor\""]",3571.96,"{\"": \""18%\""}",251457,0,"""South America""" +2024-11-25,79491,7229,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4250.45,"{\""promo\"": \""23%\""}",97767,0,"""Africa""" +2024-07-16,79492,5880,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1838.36,"{\""seasonal\"": \""15%\""}",270794,0,"""Africa""" +2024-11-12,79493,3227,"[\""Monitor\""]",1942.78,{},211413,0,"""Africa""" +2023-12-23,79494,45,"[\""Phone\""]",573.03,"{\"": \""10%\""}",20525,1,"""Europe""" +2023-01-27,79495,4546,"[\""Headphones\"", \""Phone\""]",1231.26,"{\""seasonal\"": \""19%\""}",186773,0,"""South America""" +2023-09-13,79496,9109,"[\""Wireless Mouse\"", \""Phone\""]",1916.34,{},251721,1,"""Europe""" +2023-01-22,79497,2583,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",868.39,"{\""loyalty\"": \""5%\""}",4140,1,"""South America""" +2023-03-20,79498,9116,"[\""Laptop\"", \""Keyboard\""]",1117.07,"{\""seasonal\"": \""22%\""}",87394,0,"""South America""" +2023-11-12,79499,4284,"[\""Monitor\""]",1067.01,"{\""seasonal\"": \""28%\""}",79437,1,"""Europe""" +2023-08-10,79500,4040,"[\""Laptop\"", \""Headphones\""]",3688.3,{},180174,0,"""Africa""" +2024-11-01,79501,7470,"[\""Monitor\"", \""Charger\""]",1821.25,"{\""promo\"": \""12%\""}",289416,0,"""Europe""" +2024-12-07,79502,9006,"[\""Wireless Mouse\""]",1065.43,"{\"": \""15%\""}",189848,1,"""Africa""" +2023-12-30,79503,5991,"[\""Charger\"", \""Laptop\""]",3194.11,"{\""promo\"": \""12%\""}",262875,1,"""South America""" +2023-02-26,79504,9264,"[\""Charger\"", \""Wireless Mouse\""]",899.05,{},37496,1,"""Asia""" +2024-06-04,79505,8952,"[\""Tablet\""]",828.39,"{\""loyalty\"": \""9%\""}",280521,1,"""South America""" +2024-09-11,79506,3931,"[\""Headphones\"", \""Keyboard\""]",4784.47,"{\"": \""14%\""}",132603,1,"""Asia""" +2024-02-07,79507,7519,"[\""Phone\""]",4417.72,"{\"": \""18%\""}",111929,1,"""North America""" +2024-08-13,79508,7084,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",782.37,"{\""promo\"": \""22%\""}",255528,1,"""South America""" +2023-09-09,79509,4100,"[\""Phone\""]",2710.26,{},12409,1,"""Africa""" +2024-07-29,79510,8937,"[\""Monitor\""]",4321.5,{},26519,0,"""Africa""" +2024-04-25,79511,5355,"[\""Keyboard\"", \""Charger\""]",2355.78,"{\""promo\"": \""10%\""}",269889,0,"""Asia""" +2023-08-08,79512,6138,"[\""Keyboard\""]",4059.47,"{\"": \""10%\""}",78063,0,"""Africa""" +2024-03-29,79513,8813,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4551.63,"{\""promo\"": \""23%\""}",89087,0,"""South America""" +2024-09-01,79514,4570,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4429.49,{},168802,1,"""Africa""" +2024-10-25,79515,6384,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3591.61,"{\""loyalty\"": \""26%\""}",36112,1,"""Asia""" +2023-01-28,79516,2006,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1663.84,"{\""loyalty\"": \""30%\""}",7660,1,"""South America""" +2024-11-07,79517,7626,"[\""Laptop\""]",1092.01,"{\""seasonal\"": \""11%\""}",155740,1,"""South America""" +2024-10-26,79518,8933,"[\""Phone\"", \""Tablet\"", \""Charger\""]",757.72,"{\"": \""27%\""}",68037,1,"""South America""" +2024-06-30,79519,9700,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1138.98,{},142022,1,"""Africa""" +2023-02-11,79520,7327,"[\""Headphones\"", \""Monitor\""]",1377.41,{},158103,1,"""Asia""" +2023-10-21,79521,7672,"[\""Laptop\""]",1612.75,{},193791,0,"""Africa""" +2023-11-02,79522,4347,"[\""Laptop\""]",2531.89,{},287543,0,"""North America""" +2023-04-07,79523,8733,"[\""Phone\"", \""Keyboard\""]",1031.48,{},222601,0,"""North America""" +2024-07-28,79524,4307,"[\""Headphones\""]",1608.97,{},264260,0,"""Asia""" +2023-10-15,79525,8411,"[\""Laptop\""]",2686.73,{},193245,0,"""Asia""" +2024-09-10,79526,8116,"[\""Monitor\"", \""Wireless Mouse\""]",2225.83,{},209726,0,"""Europe""" +2023-01-28,79527,1915,"[\""Tablet\""]",3815.25,{},144142,1,"""Africa""" +2023-03-16,79528,5899,"[\""Phone\""]",1943.47,"{\""loyalty\"": \""26%\""}",213885,0,"""South America""" +2024-01-25,79529,3071,"[\""Keyboard\""]",4177.3,"{\"": \""24%\""}",259230,1,"""North America""" +2023-05-14,79530,1988,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4255.12,"{\""loyalty\"": \""25%\""}",243853,0,"""Africa""" +2024-04-23,79531,4027,"[\""Laptop\"", \""Charger\""]",3299.51,{},175934,0,"""Asia""" +2023-10-20,79532,7221,"[\""Wireless Mouse\"", \""Charger\""]",4920.25,"{\""promo\"": \""21%\""}",45020,1,"""Asia""" +2024-08-18,79533,5033,"[\""Keyboard\""]",2741.53,{},182111,0,"""Asia""" +2024-03-25,79534,6651,"[\""Charger\"", \""Headphones\""]",217.49,{},167882,1,"""Europe""" +2024-05-14,79535,8690,"[\""Phone\""]",2876.35,"{\""promo\"": \""24%\""}",206532,1,"""Africa""" +2024-02-21,79536,5333,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3255.82,"{\""seasonal\"": \""8%\""}",146965,1,"""Asia""" +2023-12-21,79537,416,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",418.2,"{\""seasonal\"": \""26%\""}",174100,1,"""Europe""" +2023-01-12,79538,4883,"[\""Charger\"", \""Tablet\""]",203.76,"{\"": \""11%\""}",26390,0,"""Asia""" +2023-01-16,79539,5434,"[\""Monitor\""]",1634.43,"{\"": \""27%\""}",221504,1,"""Africa""" +2024-08-30,79540,802,"[\""Wireless Mouse\""]",4853.48,{},291229,0,"""North America""" +2024-01-07,79541,8663,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3044.3,"{\""seasonal\"": \""15%\""}",215360,0,"""North America""" +2024-01-30,79542,1145,"[\""Tablet\"", \""Charger\""]",3292.36,"{\""loyalty\"": \""25%\""}",55294,1,"""Asia""" +2024-12-26,79543,4249,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3811.8,"{\""seasonal\"": \""25%\""}",218662,1,"""South America""" +2024-05-06,79544,8011,"[\""Phone\""]",3487.17,{},260969,0,"""North America""" +2024-09-12,79545,3746,"[\""Monitor\"", \""Phone\""]",2428.38,"{\""promo\"": \""24%\""}",242109,0,"""South America""" +2024-02-27,79546,327,"[\""Charger\""]",2278.3,{},77560,1,"""South America""" +2023-01-06,79547,4066,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1874.05,"{\""promo\"": \""15%\""}",203079,1,"""North America""" +2023-02-01,79548,2927,"[\""Laptop\"", \""Headphones\""]",2444.93,"{\""promo\"": \""26%\""}",292247,0,"""North America""" +2023-11-16,79549,9677,"[\""Headphones\"", \""Charger\""]",1481.1,"{\""seasonal\"": \""14%\""}",104069,0,"""Europe""" +2023-06-23,79550,1489,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1514.43,{},299645,1,"""South America""" +2023-04-03,79551,4164,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1224.95,"{\"": \""21%\""}",97529,0,"""Asia""" +2023-12-15,79552,7893,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4927.77,"{\""seasonal\"": \""18%\""}",118010,1,"""Asia""" +2024-07-09,79553,2088,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3694.14,"{\""promo\"": \""22%\""}",109656,1,"""South America""" +2023-07-05,79554,1139,"[\""Charger\"", \""Headphones\""]",3231.85,"{\""loyalty\"": \""5%\""}",19305,1,"""Africa""" +2023-05-30,79555,4583,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3370.74,"{\""seasonal\"": \""19%\""}",211019,0,"""North America""" +2023-01-13,79556,9135,"[\""Monitor\"", \""Tablet\""]",2614.76,"{\""seasonal\"": \""26%\""}",8670,1,"""North America""" +2024-04-24,79557,3254,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1332.1,"{\""promo\"": \""18%\""}",286106,1,"""North America""" +2023-01-30,79558,1188,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1506.64,{},35828,1,"""Africa""" +2024-06-13,79559,7022,"[\""Keyboard\"", \""Laptop\""]",4394.92,"{\""promo\"": \""28%\""}",246020,1,"""Europe""" +2024-06-25,79560,6223,"[\""Wireless Mouse\""]",4433.18,"{\""seasonal\"": \""25%\""}",53626,0,"""North America""" +2023-04-21,79561,7784,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4828.83,{},103591,1,"""South America""" +2024-02-02,79562,9029,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4014.69,"{\""seasonal\"": \""11%\""}",189242,0,"""Europe""" +2024-07-22,79563,6537,"[\""Headphones\"", \""Laptop\""]",2534.67,"{\""loyalty\"": \""22%\""}",130812,1,"""Asia""" +2023-11-12,79564,3001,"[\""Charger\""]",2670.89,{},223382,1,"""Europe""" +2024-07-17,79565,4357,"[\""Monitor\"", \""Headphones\""]",263.04,"{\"": \""16%\""}",168977,1,"""North America""" +2023-08-09,79566,113,"[\""Laptop\""]",2849.31,{},106779,1,"""North America""" +2024-09-10,79567,5980,"[\""Laptop\"", \""Charger\""]",2738.19,"{\""seasonal\"": \""19%\""}",172197,1,"""Europe""" +2023-01-08,79568,3210,"[\""Phone\""]",1006.47,"{\""loyalty\"": \""18%\""}",168240,1,"""Africa""" +2023-10-06,79569,7916,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3185.56,"{\""promo\"": \""30%\""}",102142,0,"""South America""" +2023-05-09,79570,2074,"[\""Headphones\"", \""Tablet\""]",413.22,"{\""promo\"": \""8%\""}",137790,0,"""Asia""" +2023-09-04,79571,3398,"[\""Tablet\"", \""Laptop\""]",268.99,"{\""promo\"": \""17%\""}",255067,1,"""North America""" +2024-04-11,79572,8332,"[\""Monitor\""]",2029.35,{},222422,1,"""Asia""" +2023-04-16,79573,1038,"[\""Headphones\"", \""Wireless Mouse\""]",4787.36,{},137127,1,"""Europe""" +2023-05-22,79574,1754,"[\""Keyboard\"", \""Phone\""]",1275.28,"{\""loyalty\"": \""5%\""}",243532,1,"""North America""" +2023-09-27,79575,9202,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",2372.09,"{\""loyalty\"": \""5%\""}",87536,0,"""South America""" +2024-04-17,79576,6978,"[\""Monitor\""]",1155.02,{},114260,1,"""North America""" +2024-07-22,79577,7154,"[\""Headphones\"", \""Laptop\""]",398.81,{},20921,0,"""South America""" +2024-07-17,79578,965,"[\""Monitor\""]",3762.28,{},203807,1,"""North America""" +2024-08-20,79579,4419,"[\""Phone\"", \""Charger\"", \""Laptop\""]",208.5,"{\"": \""17%\""}",135986,1,"""South America""" +2023-07-20,79580,8028,"[\""Charger\""]",3071.94,{},18904,0,"""Europe""" +2023-12-23,79581,7602,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3603.34,{},269091,1,"""Africa""" +2024-06-05,79582,1102,"[\""Headphones\"", \""Monitor\""]",3648.06,"{\""loyalty\"": \""14%\""}",168721,1,"""North America""" +2024-02-27,79583,3181,"[\""Phone\"", \""Wireless Mouse\""]",3525.43,"{\""promo\"": \""20%\""}",267090,0,"""South America""" +2024-07-07,79584,8690,"[\""Phone\""]",3461.77,"{\"": \""9%\""}",209809,1,"""South America""" +2023-09-30,79585,8057,"[\""Charger\""]",2592.28,{},46370,1,"""Europe""" +2023-12-28,79586,9294,"[\""Wireless Mouse\""]",4090.47,"{\""seasonal\"": \""26%\""}",111461,1,"""Africa""" +2024-12-19,79587,3523,"[\""Phone\""]",82.21,{},229922,0,"""South America""" +2024-03-22,79588,6509,"[\""Wireless Mouse\"", \""Keyboard\""]",1128.0,{},257073,0,"""Asia""" +2024-07-25,79589,3000,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4475.25,"{\""seasonal\"": \""20%\""}",170629,1,"""Africa""" +2024-07-17,79590,1843,"[\""Laptop\""]",792.93,"{\"": \""8%\""}",290206,1,"""Asia""" +2024-08-20,79591,9602,"[\""Laptop\""]",147.78,{},187747,0,"""North America""" +2023-06-22,79592,6088,"[\""Phone\"", \""Monitor\""]",1810.93,{},33633,1,"""Africa""" +2023-07-24,79593,2936,"[\""Keyboard\"", \""Phone\""]",1830.09,"{\""loyalty\"": \""19%\""}",172012,0,"""Africa""" +2024-12-26,79594,8708,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",358.07,{},202093,0,"""Europe""" +2024-02-17,79595,5076,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3146.73,{},63651,1,"""Asia""" +2024-07-24,79596,3378,"[\""Phone\"", \""Charger\""]",3619.85,"{\"": \""16%\""}",248648,0,"""Europe""" +2023-08-21,79597,8052,"[\""Wireless Mouse\""]",3511.0,{},177190,1,"""South America""" +2023-05-09,79598,499,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4213.03,"{\""promo\"": \""27%\""}",266232,0,"""South America""" +2024-03-01,79599,2008,"[\""Laptop\""]",3214.98,{},141766,1,"""South America""" +2024-10-14,79600,6266,"[\""Laptop\"", \""Wireless Mouse\""]",651.06,"{\""seasonal\"": \""13%\""}",233669,1,"""South America""" +2023-12-24,79601,6789,"[\""Keyboard\""]",2889.91,{},3202,0,"""North America""" +2024-01-24,79602,1844,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2550.53,"{\"": \""10%\""}",185855,1,"""Asia""" +2024-12-31,79603,8025,"[\""Monitor\""]",3504.1,{},164557,1,"""Africa""" +2024-02-27,79604,6108,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3083.45,{},52509,1,"""Asia""" +2023-03-28,79605,3677,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4985.05,"{\"": \""29%\""}",106977,0,"""Africa""" +2024-01-07,79606,9664,"[\""Headphones\"", \""Wireless Mouse\""]",1150.94,{},278562,1,"""South America""" +2023-11-22,79607,8856,"[\""Tablet\""]",4452.22,"{\""loyalty\"": \""6%\""}",236454,0,"""Europe""" +2023-08-04,79608,8405,"[\""Keyboard\"", \""Charger\""]",4159.13,"{\""seasonal\"": \""6%\""}",123628,1,"""Africa""" +2024-02-21,79609,6444,"[\""Phone\""]",2406.27,{},219722,0,"""Africa""" +2023-03-20,79610,3149,"[\""Monitor\""]",2833.15,{},241585,0,"""North America""" +2024-12-25,79611,1082,"[\""Phone\""]",1934.57,"{\""loyalty\"": \""5%\""}",79927,1,"""Africa""" +2023-10-22,79612,187,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1331.68,{},238669,0,"""Asia""" +2023-05-28,79613,6875,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1830.82,{},206690,1,"""North America""" +2023-12-19,79614,1350,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4467.5,{},209353,0,"""North America""" +2023-08-28,79615,3952,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",422.97,{},275315,0,"""South America""" +2024-09-04,79616,5070,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1354.44,"{\""loyalty\"": \""6%\""}",175232,0,"""Africa""" +2023-08-01,79617,8777,"[\""Tablet\"", \""Charger\""]",3919.42,"{\""seasonal\"": \""23%\""}",172150,1,"""North America""" +2024-07-11,79618,7438,"[\""Charger\"", \""Monitor\""]",4377.34,"{\"": \""20%\""}",10067,1,"""North America""" +2024-12-23,79619,6872,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3876.37,"{\""seasonal\"": \""8%\""}",238820,0,"""Africa""" +2024-01-11,79620,9847,"[\""Tablet\"", \""Laptop\""]",677.69,{},157363,1,"""Europe""" +2024-03-12,79621,6312,"[\""Laptop\"", \""Charger\""]",4016.15,"{\""promo\"": \""10%\""}",13219,1,"""South America""" +2023-11-23,79622,3428,"[\""Wireless Mouse\"", \""Phone\""]",1152.89,{},277899,0,"""Asia""" +2024-11-03,79623,6177,"[\""Wireless Mouse\""]",1761.66,"{\""loyalty\"": \""17%\""}",75870,1,"""Asia""" +2023-03-12,79624,3707,"[\""Keyboard\"", \""Tablet\""]",1862.42,"{\"": \""28%\""}",61939,0,"""Europe""" +2024-07-28,79625,8774,"[\""Charger\"", \""Monitor\""]",2716.01,{},195694,0,"""South America""" +2023-11-21,79626,2653,"[\""Tablet\""]",3924.09,{},159191,1,"""Africa""" +2024-12-08,79627,8516,"[\""Laptop\""]",3067.66,{},100265,1,"""Asia""" +2023-03-01,79628,3480,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4623.44,"{\""loyalty\"": \""18%\""}",175976,0,"""Europe""" +2024-09-12,79629,2949,"[\""Keyboard\"", \""Charger\""]",1399.14,"{\""seasonal\"": \""16%\""}",67996,1,"""South America""" +2023-09-26,79630,4039,"[\""Keyboard\"", \""Laptop\""]",597.93,{},155196,0,"""North America""" +2023-11-02,79631,9600,"[\""Charger\""]",2378.49,{},42943,0,"""Europe""" +2024-08-03,79632,7554,"[\""Wireless Mouse\"", \""Headphones\""]",2725.47,{},163600,0,"""Europe""" +2024-05-10,79633,8616,"[\""Wireless Mouse\"", \""Tablet\""]",962.92,{},7772,0,"""Africa""" +2024-05-07,79634,7593,"[\""Keyboard\""]",2231.98,{},199113,1,"""Asia""" +2024-08-05,79635,662,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",124.31,"{\""loyalty\"": \""9%\""}",235880,1,"""Asia""" +2024-05-01,79636,5122,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3299.8,{},19787,0,"""South America""" +2023-07-21,79637,4833,"[\""Keyboard\""]",1669.55,"{\""loyalty\"": \""22%\""}",131312,1,"""North America""" +2023-03-31,79638,4878,"[\""Headphones\"", \""Charger\""]",4583.41,"{\""seasonal\"": \""27%\""}",277455,0,"""Europe""" +2023-01-11,79639,4926,"[\""Laptop\"", \""Tablet\""]",574.91,"{\""seasonal\"": \""26%\""}",253271,1,"""Africa""" +2024-07-28,79640,6223,"[\""Laptop\""]",2055.45,"{\""seasonal\"": \""12%\""}",98675,0,"""South America""" +2023-04-04,79641,4089,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",185.61,{},121521,0,"""South America""" +2023-04-06,79642,1920,"[\""Charger\"", \""Laptop\""]",1505.18,{},192778,1,"""North America""" +2023-10-13,79643,7788,"[\""Phone\"", \""Headphones\""]",167.53,"{\""seasonal\"": \""23%\""}",206880,0,"""North America""" +2023-06-17,79644,4380,"[\""Monitor\"", \""Tablet\""]",2636.83,"{\""seasonal\"": \""8%\""}",114778,0,"""Europe""" +2024-04-09,79645,2098,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2834.99,"{\""seasonal\"": \""6%\""}",290216,0,"""North America""" +2024-12-22,79646,1253,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",859.83,"{\""seasonal\"": \""5%\""}",273049,1,"""Africa""" +2024-08-08,79647,6337,"[\""Laptop\""]",848.74,"{\""seasonal\"": \""22%\""}",98460,0,"""South America""" +2023-04-22,79648,6510,"[\""Wireless Mouse\""]",3394.77,"{\""loyalty\"": \""30%\""}",79083,0,"""Europe""" +2024-06-02,79649,4788,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3645.94,{},44867,1,"""South America""" +2024-11-05,79650,9584,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1142.31,"{\""seasonal\"": \""22%\""}",67477,1,"""Asia""" +2023-01-17,79651,7011,"[\""Monitor\"", \""Charger\""]",1754.48,"{\"": \""25%\""}",240952,1,"""Asia""" +2024-10-14,79652,3993,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4447.97,"{\""seasonal\"": \""28%\""}",132244,1,"""Africa""" +2023-06-06,79653,8259,"[\""Laptop\""]",1474.75,"{\""loyalty\"": \""26%\""}",258826,1,"""North America""" +2024-02-28,79654,8419,"[\""Monitor\"", \""Laptop\""]",310.22,"{\""loyalty\"": \""13%\""}",243124,1,"""Africa""" +2023-03-30,79655,8331,"[\""Headphones\"", \""Keyboard\""]",905.29,{},36425,0,"""Europe""" +2023-02-05,79656,5388,"[\""Laptop\"", \""Wireless Mouse\""]",2515.07,{},256849,0,"""South America""" +2024-07-17,79657,2497,"[\""Monitor\"", \""Tablet\""]",2394.42,"{\""loyalty\"": \""28%\""}",13816,1,"""South America""" +2024-04-19,79658,8293,"[\""Wireless Mouse\"", \""Phone\""]",3465.62,"{\""loyalty\"": \""27%\""}",224214,1,"""Africa""" +2023-07-04,79659,5209,"[\""Tablet\"", \""Headphones\""]",1963.75,{},8906,0,"""North America""" +2023-10-24,79660,5950,"[\""Wireless Mouse\"", \""Headphones\""]",4316.95,{},148941,0,"""Africa""" +2023-05-12,79661,981,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",997.19,"{\""loyalty\"": \""22%\""}",164529,1,"""Africa""" +2023-06-02,79662,5668,"[\""Laptop\""]",2083.19,"{\""seasonal\"": \""22%\""}",225091,0,"""North America""" +2023-05-04,79663,1109,"[\""Charger\""]",4527.89,{},153209,1,"""North America""" +2023-05-23,79664,891,"[\""Wireless Mouse\"", \""Phone\""]",4804.89,"{\"": \""10%\""}",199236,1,"""Europe""" +2024-12-21,79665,4260,"[\""Phone\""]",1206.36,"{\""loyalty\"": \""5%\""}",189866,1,"""Asia""" +2024-11-11,79666,6405,"[\""Charger\"", \""Keyboard\""]",4779.9,"{\""promo\"": \""17%\""}",59474,1,"""Africa""" +2023-12-10,79667,5401,"[\""Charger\""]",1543.02,"{\""seasonal\"": \""14%\""}",250587,0,"""South America""" +2023-01-10,79668,2961,"[\""Monitor\""]",3532.17,{},250106,1,"""South America""" +2023-04-26,79669,4319,"[\""Headphones\""]",3282.29,"{\"": \""29%\""}",136480,0,"""Asia""" +2024-06-10,79670,5172,"[\""Monitor\"", \""Charger\""]",4645.58,{},177782,1,"""Europe""" +2023-06-05,79671,7888,"[\""Monitor\""]",2517.25,"{\""promo\"": \""9%\""}",151844,0,"""Asia""" +2023-05-07,79672,2248,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",61.15,{},231393,0,"""North America""" +2023-01-27,79673,8478,"[\""Keyboard\"", \""Phone\""]",4262.27,"{\"": \""22%\""}",253603,0,"""Africa""" +2023-02-15,79674,8675,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1678.45,{},95531,1,"""Europe""" +2023-06-03,79675,2118,"[\""Phone\"", \""Charger\""]",4969.41,"{\""promo\"": \""28%\""}",126710,1,"""Africa""" +2023-12-09,79676,599,"[\""Wireless Mouse\""]",1744.54,"{\""seasonal\"": \""16%\""}",165687,1,"""South America""" +2023-08-03,79677,6540,"[\""Phone\""]",1828.8,"{\""loyalty\"": \""10%\""}",282189,0,"""Asia""" +2023-09-25,79678,4305,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1297.14,"{\""promo\"": \""9%\""}",99608,0,"""North America""" +2023-07-05,79679,5809,"[\""Wireless Mouse\"", \""Headphones\""]",2196.65,{},268961,1,"""Africa""" +2023-03-13,79680,2703,"[\""Tablet\""]",3082.5,"{\""seasonal\"": \""19%\""}",8469,1,"""Africa""" +2024-07-27,79681,5778,"[\""Charger\"", \""Laptop\"", \""Phone\""]",285.96,"{\""seasonal\"": \""12%\""}",47207,0,"""North America""" +2023-10-07,79682,8031,"[\""Headphones\"", \""Charger\""]",1285.48,{},157927,1,"""North America""" +2023-09-26,79683,9601,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3784.3,{},93506,1,"""Africa""" +2023-06-12,79684,3853,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3965.69,{},155661,1,"""North America""" +2023-10-22,79685,6395,"[\""Keyboard\"", \""Phone\""]",2713.54,"{\""promo\"": \""18%\""}",118863,0,"""South America""" +2024-05-04,79686,408,"[\""Keyboard\""]",2055.43,"{\"": \""27%\""}",63555,0,"""Asia""" +2023-04-03,79687,1703,"[\""Keyboard\""]",4656.56,"{\""seasonal\"": \""6%\""}",133810,0,"""South America""" +2024-09-02,79688,470,"[\""Laptop\""]",3597.95,"{\"": \""15%\""}",72277,1,"""Europe""" +2024-06-17,79689,1304,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1847.89,{},193131,1,"""Europe""" +2023-05-22,79690,7881,"[\""Tablet\"", \""Keyboard\""]",2235.93,{},25419,0,"""Europe""" +2023-03-23,79691,2559,"[\""Monitor\"", \""Wireless Mouse\""]",818.07,{},93925,1,"""Europe""" +2023-07-31,79692,2063,"[\""Laptop\""]",3265.88,"{\""seasonal\"": \""28%\""}",170128,0,"""South America""" +2023-11-16,79693,5179,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3736.82,"{\"": \""28%\""}",75712,1,"""Asia""" +2023-01-27,79694,2816,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3839.89,{},93273,1,"""South America""" +2023-02-26,79695,387,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4202.44,{},182469,0,"""Asia""" +2023-08-06,79696,7522,"[\""Laptop\"", \""Tablet\""]",1089.17,{},275693,1,"""South America""" +2023-11-10,79697,1073,"[\""Laptop\"", \""Keyboard\""]",3867.27,"{\"": \""25%\""}",67366,1,"""Asia""" +2023-04-17,79698,4992,"[\""Laptop\"", \""Tablet\""]",1767.42,{},55642,0,"""Africa""" +2023-09-09,79699,4009,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",772.71,"{\"": \""13%\""}",80358,1,"""North America""" +2024-01-27,79700,5053,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2747.16,{},189035,0,"""Europe""" +2023-07-23,79701,1044,"[\""Wireless Mouse\"", \""Charger\""]",4386.26,{},221050,1,"""South America""" +2024-05-29,79702,3990,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",750.04,"{\""loyalty\"": \""9%\""}",17162,0,"""North America""" +2024-03-23,79703,154,"[\""Wireless Mouse\"", \""Charger\""]",1349.13,{},67552,1,"""Africa""" +2023-12-10,79704,701,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1453.73,"{\"": \""7%\""}",271067,1,"""Africa""" +2024-07-11,79705,2308,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4788.89,"{\""loyalty\"": \""10%\""}",168956,0,"""South America""" +2024-03-06,79706,8689,"[\""Tablet\"", \""Charger\""]",1203.92,"{\""loyalty\"": \""11%\""}",58065,0,"""South America""" +2023-11-02,79707,261,"[\""Keyboard\""]",4814.85,{},260130,1,"""Asia""" +2024-05-09,79708,466,"[\""Monitor\"", \""Phone\""]",2060.25,"{\""promo\"": \""7%\""}",38442,1,"""Europe""" +2024-07-27,79709,4965,"[\""Monitor\"", \""Phone\""]",4536.1,"{\""promo\"": \""10%\""}",75369,0,"""North America""" +2024-06-04,79710,7658,"[\""Keyboard\""]",1468.91,{},68261,0,"""Africa""" +2023-08-27,79711,2471,"[\""Monitor\"", \""Wireless Mouse\""]",570.71,"{\""seasonal\"": \""25%\""}",189215,1,"""Africa""" +2024-01-08,79712,2791,"[\""Monitor\"", \""Phone\""]",324.08,"{\"": \""28%\""}",230103,1,"""Asia""" +2024-02-19,79713,3330,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3279.2,"{\""loyalty\"": \""23%\""}",59688,0,"""South America""" +2024-03-03,79714,7827,"[\""Headphones\"", \""Charger\""]",4189.96,"{\""seasonal\"": \""13%\""}",50641,0,"""Africa""" +2023-02-18,79715,8537,"[\""Tablet\"", \""Phone\""]",3085.36,"{\""seasonal\"": \""25%\""}",270808,1,"""South America""" +2024-11-27,79716,6526,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2524.0,"{\""seasonal\"": \""25%\""}",296711,0,"""Africa""" +2023-10-20,79717,4119,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1078.11,"{\""promo\"": \""21%\""}",58417,0,"""South America""" +2023-07-15,79718,3489,"[\""Charger\"", \""Headphones\""]",672.42,"{\"": \""17%\""}",233610,0,"""Europe""" +2023-12-29,79719,6811,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1320.78,{},183705,0,"""North America""" +2024-01-13,79720,952,"[\""Wireless Mouse\""]",719.19,{},91990,0,"""Africa""" +2023-10-16,79721,9925,"[\""Tablet\""]",4580.14,"{\""seasonal\"": \""21%\""}",191602,1,"""South America""" +2024-07-29,79722,4294,"[\""Laptop\""]",1704.64,"{\""seasonal\"": \""27%\""}",220283,0,"""South America""" +2024-03-30,79723,6565,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1837.44,{},25741,0,"""South America""" +2024-07-20,79724,1094,"[\""Charger\"", \""Phone\""]",3179.93,{},261766,0,"""North America""" +2024-09-06,79725,3479,"[\""Wireless Mouse\""]",1755.93,"{\""seasonal\"": \""5%\""}",139818,1,"""Asia""" +2024-11-04,79726,6677,"[\""Laptop\"", \""Tablet\""]",1716.59,{},205344,1,"""North America""" +2023-08-26,79727,3802,"[\""Headphones\""]",3209.82,{},140070,1,"""Africa""" +2023-07-27,79728,4029,"[\""Phone\"", \""Tablet\""]",802.77,"{\""loyalty\"": \""27%\""}",28057,1,"""Europe""" +2024-09-06,79729,2443,"[\""Charger\"", \""Phone\"", \""Tablet\""]",437.23,"{\""loyalty\"": \""27%\""}",284827,0,"""Europe""" +2023-03-12,79730,9336,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2160.42,{},36095,0,"""North America""" +2023-12-22,79731,7976,"[\""Monitor\""]",4965.7,"{\"": \""27%\""}",282873,1,"""North America""" +2024-05-25,79732,1243,"[\""Phone\"", \""Monitor\""]",706.03,"{\""promo\"": \""10%\""}",11036,1,"""Africa""" +2023-06-02,79733,3227,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1943.57,"{\""promo\"": \""21%\""}",229014,0,"""North America""" +2024-07-06,79734,2602,"[\""Headphones\""]",1989.47,{},25673,1,"""Africa""" +2023-10-02,79735,1291,"[\""Phone\"", \""Monitor\""]",3277.46,"{\""seasonal\"": \""24%\""}",166086,1,"""South America""" +2023-11-19,79736,9917,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3306.62,"{\""loyalty\"": \""6%\""}",63681,1,"""Europe""" +2024-06-21,79737,8296,"[\""Monitor\""]",3898.37,"{\""loyalty\"": \""16%\""}",106886,0,"""Asia""" +2023-05-12,79738,5512,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3728.44,"{\""promo\"": \""6%\""}",111245,0,"""Asia""" +2023-08-31,79739,7931,"[\""Charger\""]",2263.13,{},232452,0,"""Asia""" +2024-07-10,79740,7927,"[\""Charger\""]",4943.46,{},217349,0,"""Europe""" +2023-02-09,79741,948,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",467.29,{},76441,0,"""South America""" +2024-09-18,79742,2413,"[\""Tablet\""]",284.51,{},74511,1,"""North America""" +2023-10-20,79743,7578,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3522.92,"{\""loyalty\"": \""28%\""}",164964,0,"""Africa""" +2023-08-29,79744,3159,"[\""Keyboard\"", \""Tablet\""]",107.44,{},81427,0,"""South America""" +2024-03-21,79745,5092,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",698.43,"{\""seasonal\"": \""24%\""}",172148,1,"""Asia""" +2024-02-17,79746,8434,"[\""Monitor\""]",991.05,{},188912,0,"""Asia""" +2023-03-31,79747,4185,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4418.44,"{\""promo\"": \""5%\""}",55608,1,"""Europe""" +2024-08-14,79748,229,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",84.17,{},132406,0,"""Africa""" +2024-04-16,79749,5751,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3172.12,{},120961,1,"""Africa""" +2024-02-08,79750,9500,"[\""Keyboard\""]",4483.21,{},138440,0,"""Africa""" +2023-10-23,79751,9653,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",596.17,"{\"": \""20%\""}",129314,1,"""North America""" +2023-03-14,79752,6082,"[\""Charger\"", \""Laptop\""]",4606.28,"{\""seasonal\"": \""26%\""}",134780,0,"""Asia""" +2024-11-19,79753,6674,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3790.8,{},175161,0,"""Asia""" +2023-01-16,79754,8265,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4416.8,"{\""seasonal\"": \""26%\""}",49820,0,"""Africa""" +2024-04-09,79755,3165,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3577.15,{},73200,0,"""South America""" +2024-10-21,79756,2223,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4716.68,"{\"": \""9%\""}",81122,1,"""Africa""" +2024-09-16,79757,6592,"[\""Keyboard\"", \""Tablet\""]",656.34,"{\""loyalty\"": \""13%\""}",230484,1,"""Africa""" +2023-04-11,79758,3684,"[\""Keyboard\""]",457.99,"{\""promo\"": \""20%\""}",295908,1,"""Europe""" +2023-03-19,79759,7265,"[\""Keyboard\""]",4052.17,"{\""loyalty\"": \""6%\""}",139258,1,"""Europe""" +2024-10-14,79760,8847,"[\""Monitor\""]",66.92,"{\""promo\"": \""30%\""}",45798,1,"""Europe""" +2024-11-08,79761,9948,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2035.24,{},272767,0,"""Europe""" +2023-02-20,79762,4569,"[\""Laptop\""]",4722.23,"{\""loyalty\"": \""22%\""}",231006,1,"""South America""" +2024-05-07,79763,2580,"[\""Phone\""]",2939.29,{},23811,0,"""Europe""" +2023-08-19,79764,5626,"[\""Laptop\""]",3645.58,{},275085,1,"""South America""" +2024-03-17,79765,4007,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",596.53,"{\"": \""10%\""}",62250,1,"""Africa""" +2023-07-22,79766,8324,"[\""Laptop\""]",3764.37,{},52243,0,"""Asia""" +2023-11-28,79767,5521,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2599.18,{},6717,0,"""South America""" +2023-02-08,79768,9554,"[\""Keyboard\"", \""Tablet\""]",4840.99,{},192200,1,"""North America""" +2023-02-19,79769,9391,"[\""Tablet\""]",4325.73,{},131642,0,"""Europe""" +2023-10-31,79770,985,"[\""Wireless Mouse\"", \""Tablet\""]",1373.66,"{\""loyalty\"": \""12%\""}",292340,1,"""North America""" +2023-11-14,79771,9726,"[\""Phone\"", \""Charger\""]",2855.71,{},63081,0,"""South America""" +2024-05-24,79772,2495,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",4343.98,"{\""promo\"": \""29%\""}",83604,0,"""Africa""" +2024-04-04,79773,8103,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2545.49,"{\""seasonal\"": \""30%\""}",181497,1,"""Africa""" +2024-02-28,79774,2539,"[\""Tablet\"", \""Charger\""]",465.52,"{\"": \""8%\""}",77888,1,"""South America""" +2024-01-08,79775,1875,"[\""Charger\""]",3202.12,"{\""seasonal\"": \""27%\""}",167469,0,"""North America""" +2023-09-20,79776,4229,"[\""Tablet\""]",1089.79,"{\""loyalty\"": \""22%\""}",176784,1,"""South America""" +2023-01-02,79777,318,"[\""Laptop\""]",4102.52,"{\""loyalty\"": \""27%\""}",181969,1,"""South America""" +2024-11-12,79778,8008,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3836.69,"{\""seasonal\"": \""10%\""}",89920,0,"""Asia""" +2023-03-29,79779,3052,"[\""Tablet\""]",3120.03,{},196592,1,"""North America""" +2024-10-01,79780,375,"[\""Phone\""]",4777.21,{},30340,0,"""North America""" +2023-11-21,79781,8161,"[\""Tablet\""]",1052.11,"{\"": \""22%\""}",257055,0,"""South America""" +2023-06-02,79782,4315,"[\""Wireless Mouse\""]",417.27,{},289193,1,"""South America""" +2023-05-06,79783,7640,"[\""Wireless Mouse\""]",799.23,{},248068,0,"""Africa""" +2024-04-04,79784,2755,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3031.34,{},100720,1,"""South America""" +2024-01-25,79785,561,"[\""Phone\""]",499.89,{},284023,0,"""Africa""" +2024-05-21,79786,6516,"[\""Phone\"", \""Tablet\"", \""Charger\""]",512.21,{},240780,0,"""Asia""" +2023-07-04,79787,5375,"[\""Charger\"", \""Tablet\""]",4386.22,{},60424,1,"""North America""" +2024-06-27,79788,356,"[\""Keyboard\"", \""Tablet\""]",3889.28,{},30295,1,"""Asia""" +2024-11-11,79789,6952,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2056.5,"{\""loyalty\"": \""22%\""}",11072,1,"""South America""" +2024-08-09,79790,3116,"[\""Tablet\"", \""Headphones\""]",4989.58,{},184746,0,"""Asia""" +2023-11-17,79791,5965,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2252.18,"{\""loyalty\"": \""16%\""}",179914,1,"""Europe""" +2023-06-12,79792,8662,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",88.49,{},29206,0,"""Africa""" +2024-10-27,79793,2170,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1198.84,"{\""promo\"": \""6%\""}",95839,0,"""Asia""" +2023-02-18,79794,41,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",940.16,{},24185,1,"""Africa""" +2023-06-22,79795,8692,"[\""Laptop\""]",2155.88,{},282447,1,"""Europe""" +2023-07-02,79796,5101,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",288.67,"{\"": \""28%\""}",204538,1,"""South America""" +2023-02-04,79797,5941,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1382.09,"{\"": \""26%\""}",177356,0,"""Africa""" +2024-08-01,79798,9471,"[\""Keyboard\""]",2274.85,{},222319,1,"""Europe""" +2024-07-06,79799,3837,"[\""Phone\"", \""Monitor\""]",4251.57,"{\""promo\"": \""17%\""}",53241,0,"""Asia""" +2023-12-04,79800,1505,"[\""Charger\"", \""Monitor\""]",2703.48,{},6314,1,"""North America""" +2023-02-02,79801,5750,"[\""Charger\"", \""Headphones\""]",866.52,{},294970,0,"""Asia""" +2023-07-04,79802,5992,"[\""Tablet\""]",423.68,"{\"": \""7%\""}",143839,1,"""North America""" +2024-06-07,79803,6927,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3011.36,{},101716,0,"""Asia""" +2024-02-19,79804,1053,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3393.51,"{\""promo\"": \""12%\""}",109070,1,"""Africa""" +2023-10-11,79805,5232,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",559.98,{},212528,0,"""Africa""" +2024-04-08,79806,1229,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4258.47,"{\"": \""19%\""}",160383,1,"""Asia""" +2023-08-11,79807,6239,"[\""Wireless Mouse\""]",4216.56,"{\""loyalty\"": \""5%\""}",265426,1,"""North America""" +2023-12-19,79808,1923,"[\""Headphones\""]",1696.35,{},189668,0,"""South America""" +2023-03-11,79809,8849,"[\""Wireless Mouse\"", \""Keyboard\""]",985.73,"{\""loyalty\"": \""22%\""}",229380,1,"""North America""" +2024-02-28,79810,1011,"[\""Wireless Mouse\"", \""Laptop\""]",3120.85,{},223197,0,"""South America""" +2023-11-22,79811,398,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3432.8,"{\"": \""21%\""}",244424,1,"""Europe""" +2024-02-11,79812,4805,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4881.5,"{\""seasonal\"": \""12%\""}",168495,0,"""Africa""" +2023-05-16,79813,9738,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3675.1,{},230891,0,"""North America""" +2023-01-21,79814,4331,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2474.65,"{\""promo\"": \""8%\""}",41665,1,"""Asia""" +2023-11-29,79815,2219,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4003.69,"{\""loyalty\"": \""30%\""}",108191,1,"""Europe""" +2024-03-26,79816,5854,"[\""Headphones\"", \""Tablet\""]",4837.3,"{\"": \""29%\""}",69911,0,"""South America""" +2024-12-25,79817,9658,"[\""Charger\""]",3079.0,"{\"": \""12%\""}",138233,0,"""Europe""" +2024-08-02,79818,9272,"[\""Tablet\""]",1714.62,{},58540,1,"""North America""" +2023-04-12,79819,5748,"[\""Charger\"", \""Monitor\""]",1521.99,{},249005,1,"""South America""" +2024-01-23,79820,594,"[\""Laptop\""]",2840.95,"{\"": \""23%\""}",100434,1,"""North America""" +2023-10-10,79821,4988,"[\""Tablet\""]",1464.77,"{\""promo\"": \""20%\""}",206949,0,"""South America""" +2023-09-02,79822,5325,"[\""Wireless Mouse\"", \""Tablet\""]",3488.34,"{\""seasonal\"": \""25%\""}",254933,0,"""Asia""" +2023-06-10,79823,4605,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3351.97,"{\""seasonal\"": \""27%\""}",211914,1,"""South America""" +2024-03-06,79824,595,"[\""Laptop\"", \""Tablet\""]",1843.16,"{\""seasonal\"": \""21%\""}",24092,0,"""Africa""" +2023-04-11,79825,6514,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2722.41,{},169217,1,"""Asia""" +2024-09-16,79826,6227,"[\""Laptop\"", \""Wireless Mouse\""]",185.58,{},86447,1,"""North America""" +2023-07-13,79827,1389,"[\""Charger\"", \""Wireless Mouse\""]",4192.03,"{\""promo\"": \""22%\""}",231322,0,"""Asia""" +2023-08-23,79828,2841,"[\""Phone\"", \""Keyboard\""]",3251.94,"{\""seasonal\"": \""12%\""}",235704,1,"""South America""" +2024-08-10,79829,7236,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",347.24,{},86169,1,"""North America""" +2023-12-26,79830,5495,"[\""Headphones\""]",534.0,"{\""promo\"": \""8%\""}",96605,0,"""Africa""" +2024-10-01,79831,1613,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",480.37,"{\"": \""12%\""}",261176,0,"""Africa""" +2023-06-15,79832,3945,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1716.76,{},240199,1,"""Africa""" +2024-07-11,79833,7329,"[\""Tablet\"", \""Wireless Mouse\""]",2282.52,{},174363,0,"""North America""" +2024-05-26,79834,863,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3950.87,"{\""seasonal\"": \""21%\""}",282909,1,"""North America""" +2024-06-24,79835,7740,"[\""Laptop\"", \""Wireless Mouse\""]",3374.7,"{\""seasonal\"": \""27%\""}",205237,0,"""Europe""" +2024-05-27,79836,8432,"[\""Charger\"", \""Phone\""]",4538.26,"{\""promo\"": \""5%\""}",7229,0,"""South America""" +2023-11-04,79837,5580,"[\""Tablet\""]",3253.72,"{\""promo\"": \""20%\""}",134259,0,"""Asia""" +2023-10-23,79838,1425,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",1047.01,"{\""promo\"": \""6%\""}",244945,1,"""North America""" +2023-07-24,79839,6442,"[\""Keyboard\""]",844.55,"{\""promo\"": \""25%\""}",188449,0,"""Asia""" +2023-12-26,79840,5538,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3211.23,"{\"": \""29%\""}",69698,1,"""Asia""" +2023-01-29,79841,2669,"[\""Phone\"", \""Charger\""]",3496.52,{},127481,0,"""Europe""" +2023-05-03,79842,4155,"[\""Wireless Mouse\""]",4810.81,"{\"": \""8%\""}",107671,0,"""Europe""" +2024-06-24,79843,2371,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1603.2,"{\""loyalty\"": \""23%\""}",227247,1,"""North America""" +2024-02-23,79844,9881,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4125.16,"{\""promo\"": \""11%\""}",145224,1,"""Africa""" +2023-09-03,79845,1696,"[\""Tablet\"", \""Wireless Mouse\""]",1266.35,"{\""promo\"": \""23%\""}",268625,0,"""Europe""" +2023-12-26,79846,6703,"[\""Headphones\""]",1812.02,"{\""seasonal\"": \""5%\""}",24783,1,"""Europe""" +2024-12-16,79847,6692,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1476.02,{},161618,1,"""North America""" +2023-10-28,79848,430,"[\""Headphones\""]",3404.78,{},161898,1,"""North America""" +2024-10-06,79849,7626,"[\""Wireless Mouse\""]",4838.43,{},214397,0,"""South America""" +2023-12-31,79850,2193,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1073.65,{},262591,0,"""Asia""" +2024-07-19,79851,7712,"[\""Tablet\""]",2098.54,"{\"": \""9%\""}",40299,1,"""South America""" +2023-09-06,79852,4699,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4956.16,{},24011,0,"""South America""" +2024-08-08,79853,6032,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",134.5,{},112540,1,"""North America""" +2024-05-14,79854,4201,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",640.11,{},299103,1,"""North America""" +2024-01-03,79855,5548,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2556.98,{},74171,1,"""Europe""" +2024-01-19,79856,1234,"[\""Wireless Mouse\"", \""Charger\""]",1913.79,"{\"": \""30%\""}",197799,1,"""North America""" +2024-07-20,79857,3721,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2395.31,{},260623,0,"""South America""" +2024-09-28,79858,9261,"[\""Phone\""]",2592.02,"{\""loyalty\"": \""18%\""}",214697,0,"""North America""" +2024-12-13,79859,754,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4160.35,{},204639,0,"""Europe""" +2024-09-22,79860,668,"[\""Wireless Mouse\"", \""Charger\""]",818.74,"{\""promo\"": \""13%\""}",246375,0,"""Europe""" +2024-03-09,79861,4687,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2560.65,{},196381,1,"""Africa""" +2024-09-22,79862,3729,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3528.16,"{\""seasonal\"": \""30%\""}",12584,0,"""Europe""" +2023-02-26,79863,9026,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4086.64,{},218378,0,"""Africa""" +2024-03-10,79864,5605,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",124.69,{},231367,1,"""Africa""" +2023-06-15,79865,6076,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3805.36,"{\""seasonal\"": \""14%\""}",267571,0,"""Europe""" +2024-06-27,79866,9180,"[\""Headphones\""]",2366.69,"{\"": \""26%\""}",217848,1,"""Asia""" +2023-03-02,79867,1776,"[\""Monitor\"", \""Charger\""]",3369.76,{},236368,0,"""North America""" +2023-07-27,79868,7453,"[\""Laptop\""]",4310.13,{},70858,1,"""Africa""" +2024-04-09,79869,6693,"[\""Laptop\"", \""Wireless Mouse\""]",1520.39,{},1576,1,"""Asia""" +2023-11-11,79870,3161,"[\""Keyboard\"", \""Phone\""]",4515.41,"{\""seasonal\"": \""21%\""}",266852,1,"""Asia""" +2024-04-21,79871,4656,"[\""Charger\"", \""Keyboard\""]",453.83,{},122211,0,"""South America""" +2024-01-01,79872,8731,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3406.52,{},230464,1,"""Africa""" +2024-02-13,79873,6093,"[\""Laptop\""]",619.53,{},282801,0,"""South America""" +2024-06-03,79874,606,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4943.27,{},234349,1,"""Africa""" +2023-07-01,79875,9952,"[\""Phone\""]",2456.77,"{\"": \""11%\""}",119552,0,"""Africa""" +2023-07-12,79876,7368,"[\""Laptop\"", \""Headphones\""]",4490.07,{},112617,1,"""Africa""" +2023-10-04,79877,2432,"[\""Laptop\""]",3626.58,{},256459,1,"""North America""" +2024-05-15,79878,83,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1304.61,"{\""loyalty\"": \""11%\""}",117380,1,"""Africa""" +2023-06-15,79879,1977,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4211.33,"{\"": \""10%\""}",143617,0,"""North America""" +2023-08-23,79880,905,"[\""Headphones\"", \""Phone\""]",1333.37,{},121767,0,"""North America""" +2024-07-02,79881,9891,"[\""Monitor\""]",3565.44,"{\""loyalty\"": \""12%\""}",149082,0,"""Europe""" +2024-10-19,79882,3649,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",899.6,"{\""promo\"": \""25%\""}",42200,0,"""North America""" +2024-08-21,79883,4515,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",4144.65,"{\""promo\"": \""11%\""}",28362,0,"""South America""" +2024-05-19,79884,652,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",578.28,{},96472,0,"""Asia""" +2023-07-02,79885,9988,"[\""Phone\""]",3207.45,{},239950,1,"""Africa""" +2024-05-10,79886,5029,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4390.02,{},242195,1,"""Africa""" +2024-04-27,79887,5552,"[\""Tablet\""]",3097.16,"{\""seasonal\"": \""30%\""}",106198,0,"""Africa""" +2024-04-18,79888,8428,"[\""Charger\"", \""Phone\""]",889.38,{},142961,1,"""Asia""" +2023-07-12,79889,2154,"[\""Phone\"", \""Wireless Mouse\""]",1305.07,{},51898,0,"""South America""" +2023-06-11,79890,3788,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3156.88,{},191042,1,"""Asia""" +2024-01-15,79891,8832,"[\""Tablet\""]",764.79,{},131252,0,"""North America""" +2023-08-04,79892,6044,"[\""Monitor\"", \""Keyboard\""]",4607.69,{},55646,1,"""Africa""" +2023-08-18,79893,2280,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4131.68,{},285089,0,"""Africa""" +2023-11-06,79894,6866,"[\""Headphones\"", \""Monitor\""]",4276.22,"{\""promo\"": \""8%\""}",179737,1,"""Europe""" +2023-01-28,79895,4069,"[\""Monitor\""]",691.85,{},74264,1,"""Africa""" +2024-08-18,79896,2015,"[\""Phone\"", \""Tablet\""]",4603.1,"{\"": \""25%\""}",219983,0,"""Africa""" +2023-05-19,79897,4503,"[\""Phone\""]",1332.08,"{\""promo\"": \""26%\""}",263965,0,"""Africa""" +2024-04-14,79898,8942,"[\""Laptop\""]",4499.1,{},151050,0,"""North America""" +2024-02-18,79899,6664,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2577.14,{},7627,0,"""Europe""" +2023-06-07,79900,9095,"[\""Charger\"", \""Headphones\""]",4788.78,{},51118,1,"""South America""" +2023-05-13,79901,5927,"[\""Phone\"", \""Monitor\""]",3063.26,{},236928,1,"""Europe""" +2023-04-24,79902,6650,"[\""Headphones\""]",4887.76,{},144837,1,"""South America""" +2023-11-20,79903,7787,"[\""Headphones\""]",2746.96,{},210686,0,"""Asia""" +2023-08-08,79904,9075,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2854.62,"{\""loyalty\"": \""22%\""}",40014,1,"""Africa""" +2024-11-30,79905,6837,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1379.38,{},125412,1,"""South America""" +2024-02-28,79906,3707,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2871.5,"{\""promo\"": \""13%\""}",273127,0,"""Europe""" +2023-03-30,79907,6077,"[\""Headphones\"", \""Laptop\""]",2678.23,"{\""seasonal\"": \""23%\""}",38810,1,"""North America""" +2023-10-28,79908,2813,"[\""Monitor\"", \""Tablet\""]",732.7,{},141071,1,"""Europe""" +2023-10-03,79909,901,"[\""Tablet\""]",1452.34,{},48368,1,"""Europe""" +2023-04-12,79910,5152,"[\""Headphones\""]",1386.87,"{\"": \""27%\""}",208093,0,"""Europe""" +2023-08-20,79911,6350,"[\""Monitor\"", \""Laptop\""]",973.34,{},161059,0,"""North America""" +2024-10-20,79912,1901,"[\""Wireless Mouse\""]",2534.5,"{\""seasonal\"": \""15%\""}",151475,0,"""South America""" +2024-11-14,79913,8182,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1070.84,{},105487,1,"""Africa""" +2024-12-20,79914,8079,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1780.53,"{\""seasonal\"": \""12%\""}",126210,1,"""Asia""" +2024-11-01,79915,9689,"[\""Phone\""]",2246.73,{},54167,0,"""Africa""" +2024-12-15,79916,8103,"[\""Charger\""]",1006.32,{},299528,0,"""Asia""" +2023-12-07,79917,2571,"[\""Keyboard\"", \""Tablet\""]",911.63,{},13528,0,"""North America""" +2024-09-01,79918,1932,"[\""Keyboard\"", \""Tablet\""]",1497.62,"{\""promo\"": \""8%\""}",117497,0,"""Europe""" +2024-07-02,79919,9160,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1452.93,"{\"": \""15%\""}",168756,0,"""Europe""" +2024-11-21,79920,4577,"[\""Laptop\""]",886.36,"{\""seasonal\"": \""28%\""}",115303,0,"""Asia""" +2023-03-31,79921,4571,"[\""Headphones\"", \""Charger\""]",196.29,"{\""seasonal\"": \""28%\""}",131019,1,"""Africa""" +2023-09-15,79922,6631,"[\""Tablet\"", \""Monitor\""]",1868.77,"{\"": \""9%\""}",17587,1,"""Europe""" +2023-02-21,79923,9479,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",362.78,{},282006,0,"""North America""" +2023-02-26,79924,6700,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2761.99,"{\"": \""23%\""}",58860,0,"""North America""" +2024-05-29,79925,9453,"[\""Charger\"", \""Tablet\""]",96.42,{},167286,1,"""Asia""" +2024-01-17,79926,5362,"[\""Keyboard\""]",2965.3,{},98249,0,"""Africa""" +2023-06-22,79927,240,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4609.28,"{\"": \""9%\""}",30316,0,"""Africa""" +2024-10-18,79928,3130,"[\""Keyboard\"", \""Laptop\""]",4225.66,"{\""promo\"": \""15%\""}",63312,0,"""Asia""" +2024-02-01,79929,610,"[\""Monitor\""]",2449.43,{},269946,1,"""Africa""" +2024-03-18,79930,3637,"[\""Headphones\"", \""Keyboard\""]",812.42,"{\""loyalty\"": \""29%\""}",160100,0,"""Asia""" +2023-06-30,79931,6472,"[\""Tablet\"", \""Headphones\""]",1625.09,"{\""promo\"": \""6%\""}",71668,0,"""Europe""" +2024-02-16,79932,9872,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2054.96,{},99290,1,"""South America""" +2023-03-03,79933,5090,"[\""Monitor\""]",165.08,"{\"": \""5%\""}",117095,1,"""South America""" +2024-08-12,79934,8347,"[\""Charger\""]",2567.47,{},277657,0,"""North America""" +2024-08-02,79935,1991,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1892.01,"{\""seasonal\"": \""14%\""}",61512,0,"""Europe""" +2024-11-29,79936,8595,"[\""Laptop\""]",4152.99,{},62538,1,"""North America""" +2024-09-09,79937,355,"[\""Headphones\"", \""Charger\""]",4861.92,{},65101,0,"""Africa""" +2023-04-10,79938,7124,"[\""Wireless Mouse\""]",4194.14,{},299284,0,"""North America""" +2024-06-02,79939,2627,"[\""Tablet\"", \""Headphones\""]",705.85,"{\""seasonal\"": \""12%\""}",171670,1,"""Europe""" +2023-05-02,79940,8198,"[\""Headphones\""]",2025.42,{},106832,0,"""North America""" +2023-04-16,79941,6887,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2299.35,{},201950,0,"""Asia""" +2023-05-11,79942,3532,"[\""Monitor\""]",3574.65,"{\""promo\"": \""13%\""}",230288,1,"""South America""" +2023-08-15,79943,7972,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2341.46,{},130919,0,"""North America""" +2024-06-14,79944,8708,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4057.05,"{\"": \""12%\""}",123425,0,"""South America""" +2024-10-02,79945,1876,"[\""Tablet\"", \""Phone\""]",1286.31,"{\""seasonal\"": \""27%\""}",94933,1,"""North America""" +2023-01-21,79946,7189,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3027.56,"{\""loyalty\"": \""23%\""}",226761,0,"""Asia""" +2024-01-15,79947,2882,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",130.38,{},92769,1,"""Africa""" +2023-06-08,79948,9117,"[\""Monitor\""]",1220.05,"{\"": \""11%\""}",127288,1,"""Europe""" +2023-08-15,79949,3177,"[\""Phone\"", \""Tablet\""]",3765.84,{},234408,0,"""North America""" +2023-04-20,79950,8343,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2641.44,"{\""seasonal\"": \""7%\""}",245192,0,"""Asia""" +2023-07-22,79951,1167,"[\""Keyboard\""]",2097.15,"{\"": \""14%\""}",275095,1,"""South America""" +2023-10-08,79952,64,"[\""Phone\"", \""Keyboard\""]",1787.42,{},27378,1,"""Asia""" +2024-01-12,79953,7300,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",743.58,"{\"": \""18%\""}",200874,0,"""South America""" +2023-04-16,79954,937,"[\""Headphones\"", \""Laptop\""]",125.23,"{\""promo\"": \""28%\""}",56636,0,"""North America""" +2023-08-06,79955,4823,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1012.76,{},24134,0,"""North America""" +2023-09-25,79956,6257,"[\""Tablet\"", \""Monitor\""]",3851.94,"{\""loyalty\"": \""24%\""}",68382,1,"""Europe""" +2024-03-02,79957,6113,"[\""Monitor\""]",442.79,{},291837,0,"""Africa""" +2024-11-14,79958,9209,"[\""Keyboard\""]",4493.84,{},47710,1,"""Europe""" +2024-11-10,79959,365,"[\""Monitor\""]",3266.63,{},118460,1,"""North America""" +2024-10-29,79960,4760,"[\""Keyboard\""]",3448.27,{},297829,0,"""Africa""" +2023-01-04,79961,1003,"[\""Tablet\""]",2159.44,{},242843,0,"""Asia""" +2024-03-03,79962,2665,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4210.93,"{\""loyalty\"": \""30%\""}",227865,1,"""North America""" +2024-10-28,79963,6133,"[\""Tablet\""]",214.72,"{\"": \""24%\""}",223988,0,"""Europe""" +2023-05-09,79964,4677,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3008.41,{},14882,1,"""Asia""" +2024-06-21,79965,221,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2725.09,"{\""seasonal\"": \""27%\""}",33057,0,"""North America""" +2024-11-27,79966,1323,"[\""Phone\""]",3613.18,{},233453,1,"""Africa""" +2023-12-05,79967,1354,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2068.23,"{\""seasonal\"": \""30%\""}",284638,0,"""North America""" +2023-07-03,79968,6960,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2578.06,"{\""promo\"": \""17%\""}",69287,0,"""Africa""" +2023-08-25,79969,5469,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1792.02,"{\""promo\"": \""11%\""}",104532,0,"""North America""" +2023-01-02,79970,105,"[\""Phone\"", \""Wireless Mouse\""]",2838.25,"{\""seasonal\"": \""21%\""}",4309,0,"""North America""" +2023-05-25,79971,9057,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4977.31,"{\"": \""5%\""}",190101,0,"""South America""" +2023-02-01,79972,2147,"[\""Wireless Mouse\"", \""Charger\""]",3197.96,{},81330,0,"""Africa""" +2024-09-27,79973,6062,"[\""Laptop\"", \""Phone\""]",2836.93,"{\""seasonal\"": \""11%\""}",126405,0,"""South America""" +2023-06-25,79974,7223,"[\""Tablet\""]",1473.39,"{\""loyalty\"": \""6%\""}",273242,0,"""Africa""" +2023-12-22,79975,1765,"[\""Tablet\""]",547.16,"{\""seasonal\"": \""14%\""}",235309,1,"""South America""" +2023-11-23,79976,5617,"[\""Monitor\"", \""Phone\""]",1976.65,{},182814,1,"""Asia""" +2023-07-12,79977,8291,"[\""Charger\"", \""Headphones\""]",2988.22,"{\""seasonal\"": \""15%\""}",167924,1,"""South America""" +2024-05-27,79978,6560,"[\""Laptop\"", \""Charger\""]",390.57,"{\""loyalty\"": \""15%\""}",125157,1,"""Asia""" +2023-04-14,79979,8723,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1558.89,{},135170,0,"""Asia""" +2023-03-30,79980,6642,"[\""Wireless Mouse\""]",4105.77,"{\""loyalty\"": \""14%\""}",232430,1,"""Africa""" +2023-02-16,79981,622,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3764.85,"{\"": \""19%\""}",275745,1,"""Africa""" +2023-02-26,79982,1905,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1584.54,{},91746,1,"""Europe""" +2023-07-28,79983,7821,"[\""Phone\"", \""Monitor\""]",4451.28,"{\"": \""14%\""}",158881,0,"""Europe""" +2024-09-05,79984,5969,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2939.61,"{\""promo\"": \""17%\""}",129788,0,"""Africa""" +2023-06-08,79985,943,"[\""Keyboard\""]",2033.37,{},88818,1,"""North America""" +2023-07-29,79986,8774,"[\""Laptop\""]",379.08,{},249464,1,"""North America""" +2023-05-10,79987,4033,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3108.33,"{\""loyalty\"": \""21%\""}",291245,0,"""Africa""" +2023-04-12,79988,5481,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1040.32,"{\"": \""9%\""}",163030,1,"""Asia""" +2023-05-27,79989,3481,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",807.76,{},236980,1,"""Africa""" +2023-06-08,79990,3971,"[\""Wireless Mouse\"", \""Charger\""]",894.01,{},203909,0,"""Asia""" +2023-02-13,79991,5089,"[\""Charger\"", \""Laptop\""]",4418.43,"{\""loyalty\"": \""13%\""}",212642,0,"""Africa""" +2024-08-07,79992,3154,"[\""Tablet\"", \""Keyboard\""]",2810.17,"{\""promo\"": \""24%\""}",232022,0,"""South America""" +2024-02-25,79993,4476,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",757.47,"{\""loyalty\"": \""28%\""}",270531,0,"""North America""" +2023-07-16,79994,3845,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2536.92,"{\""loyalty\"": \""11%\""}",30985,0,"""Europe""" +2024-11-18,79995,6739,"[\""Monitor\"", \""Charger\""]",3499.52,"{\""loyalty\"": \""8%\""}",140494,1,"""North America""" +2023-09-07,79996,4151,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2057.53,"{\""promo\"": \""16%\""}",169679,0,"""Asia""" +2023-09-09,79997,5401,"[\""Charger\""]",1469.12,{},152120,1,"""Africa""" +2024-03-17,79998,3529,"[\""Phone\"", \""Laptop\""]",4830.02,{},207805,1,"""South America""" +2023-02-19,79999,2263,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3451.06,{},239469,1,"""Africa""" +2024-02-19,80000,7307,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3853.82,"{\"": \""17%\""}",216626,0,"""Asia""" +2023-03-20,80001,7028,"[\""Laptop\""]",2132.53,{},250814,1,"""Africa""" +2024-09-24,80002,4531,"[\""Keyboard\""]",2084.19,{},31399,0,"""Europe""" +2024-10-17,80003,3940,"[\""Keyboard\""]",4229.39,"{\""promo\"": \""6%\""}",240775,0,"""Africa""" +2023-09-06,80004,3768,"[\""Monitor\""]",4267.47,"{\""promo\"": \""30%\""}",55313,1,"""Europe""" +2024-12-01,80005,1738,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",262.84,"{\""seasonal\"": \""30%\""}",56377,1,"""Africa""" +2024-03-31,80006,5316,"[\""Keyboard\""]",944.14,{},16848,1,"""Asia""" +2023-04-01,80007,8276,"[\""Headphones\""]",1288.56,{},3051,1,"""Africa""" +2023-11-24,80008,8289,"[\""Laptop\""]",1075.12,{},17179,0,"""Africa""" +2023-12-12,80009,495,"[\""Tablet\"", \""Wireless Mouse\""]",2728.33,"{\""promo\"": \""5%\""}",117196,1,"""Europe""" +2024-01-19,80010,373,"[\""Headphones\""]",438.85,"{\""promo\"": \""28%\""}",50522,0,"""Europe""" +2023-11-27,80011,4768,"[\""Laptop\""]",3886.5,{},31063,0,"""Europe""" +2023-12-01,80012,5974,"[\""Tablet\"", \""Keyboard\""]",3716.41,"{\""loyalty\"": \""7%\""}",111164,0,"""Africa""" +2023-05-29,80013,7070,"[\""Monitor\""]",2009.68,{},108448,0,"""Africa""" +2024-07-03,80014,9688,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",938.08,"{\""promo\"": \""26%\""}",6903,0,"""South America""" +2024-05-22,80015,6215,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4876.87,{},195340,0,"""Africa""" +2024-11-19,80016,200,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4678.69,{},11543,1,"""South America""" +2024-01-29,80017,2348,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4296.23,"{\""loyalty\"": \""28%\""}",208783,0,"""Asia""" +2024-11-29,80018,1720,"[\""Keyboard\"", \""Laptop\""]",1740.25,{},26993,1,"""Asia""" +2024-08-07,80019,4208,"[\""Monitor\"", \""Charger\""]",3172.7,{},106345,1,"""Africa""" +2023-05-03,80020,3262,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3418.17,{},10104,1,"""North America""" +2023-08-24,80021,2783,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2133.62,{},69219,0,"""Africa""" +2024-11-04,80022,4278,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1152.24,"{\""seasonal\"": \""5%\""}",271070,0,"""South America""" +2023-03-13,80023,9597,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1018.97,"{\""loyalty\"": \""23%\""}",101449,0,"""South America""" +2023-01-07,80024,2361,"[\""Wireless Mouse\"", \""Laptop\""]",3830.53,{},266446,0,"""North America""" +2024-02-11,80025,8841,"[\""Headphones\""]",3992.81,{},155186,1,"""South America""" +2023-02-11,80026,6532,"[\""Keyboard\""]",3691.93,{},226040,0,"""South America""" +2023-07-20,80027,9230,"[\""Keyboard\""]",4448.17,"{\""loyalty\"": \""7%\""}",298319,1,"""South America""" +2024-09-02,80028,8126,"[\""Wireless Mouse\"", \""Monitor\""]",280.13,{},267957,1,"""North America""" +2023-08-13,80029,9286,"[\""Phone\""]",2841.43,{},107316,1,"""Europe""" +2024-11-21,80030,9627,"[\""Monitor\"", \""Charger\""]",3504.86,"{\"": \""6%\""}",37803,0,"""Asia""" +2024-12-27,80031,4537,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3078.98,{},60430,1,"""Europe""" +2023-04-03,80032,5928,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3765.94,"{\""loyalty\"": \""20%\""}",36485,1,"""Africa""" +2023-12-23,80033,5699,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4845.51,{},91471,1,"""South America""" +2023-07-24,80034,292,"[\""Monitor\""]",4096.09,{},269991,1,"""Africa""" +2023-02-10,80035,1220,"[\""Laptop\"", \""Keyboard\""]",1464.83,{},66193,1,"""Asia""" +2024-09-09,80036,2279,"[\""Laptop\""]",854.26,"{\""loyalty\"": \""27%\""}",268212,0,"""Asia""" +2023-09-26,80037,6814,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3418.97,{},259813,1,"""Europe""" +2023-01-15,80038,1320,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1330.85,"{\""seasonal\"": \""16%\""}",4571,1,"""Asia""" +2023-02-18,80039,4882,"[\""Monitor\"", \""Keyboard\""]",4320.46,"{\"": \""5%\""}",190893,1,"""North America""" +2024-05-27,80040,8660,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",900.75,{},202680,0,"""Africa""" +2023-04-15,80041,3647,"[\""Phone\""]",1173.48,"{\"": \""30%\""}",100515,0,"""South America""" +2023-08-24,80042,7582,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2548.68,"{\""seasonal\"": \""26%\""}",2823,1,"""Asia""" +2023-05-30,80043,4770,"[\""Charger\""]",470.78,{},10785,1,"""Europe""" +2024-02-08,80044,8808,"[\""Keyboard\"", \""Monitor\""]",1418.32,{},83413,1,"""South America""" +2024-12-06,80045,5793,"[\""Phone\""]",747.99,{},160944,1,"""South America""" +2023-03-10,80046,5777,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4623.13,"{\""loyalty\"": \""7%\""}",34971,1,"""Asia""" +2024-05-11,80047,9702,"[\""Monitor\"", \""Phone\"", \""Charger\""]",2453.0,{},208211,1,"""Asia""" +2024-01-14,80048,1628,"[\""Laptop\"", \""Monitor\""]",395.32,"{\"": \""22%\""}",235712,0,"""North America""" +2024-01-19,80049,6243,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3168.45,{},112397,0,"""North America""" +2023-04-07,80050,5168,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2405.04,"{\""promo\"": \""26%\""}",186999,0,"""North America""" +2023-02-06,80051,2143,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2908.95,"{\""seasonal\"": \""12%\""}",92168,0,"""Europe""" +2023-11-19,80052,4354,"[\""Keyboard\"", \""Wireless Mouse\""]",3056.58,"{\""loyalty\"": \""22%\""}",205442,0,"""Africa""" +2024-06-19,80053,8812,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4036.98,"{\""promo\"": \""27%\""}",84523,0,"""Asia""" +2024-01-03,80054,9126,"[\""Wireless Mouse\"", \""Keyboard\""]",2107.73,{},266390,1,"""Asia""" +2024-03-27,80055,8371,"[\""Laptop\"", \""Wireless Mouse\""]",4746.64,"{\""promo\"": \""10%\""}",174690,0,"""Africa""" +2023-10-14,80056,4031,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2680.64,"{\"": \""18%\""}",222064,1,"""Europe""" +2023-12-22,80057,3741,"[\""Tablet\""]",4522.83,"{\""loyalty\"": \""8%\""}",73849,0,"""South America""" +2024-03-19,80058,772,"[\""Wireless Mouse\""]",577.24,{},78811,1,"""North America""" +2024-10-31,80059,7014,"[\""Charger\""]",4761.8,{},30340,0,"""Europe""" +2024-02-05,80060,8819,"[\""Charger\""]",65.39,{},238282,0,"""Africa""" +2023-09-19,80061,4621,"[\""Headphones\""]",1557.7,{},283208,1,"""North America""" +2023-10-31,80062,9861,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1587.68,"{\""promo\"": \""11%\""}",94512,0,"""Europe""" +2024-08-13,80063,5546,"[\""Headphones\""]",3658.73,{},139916,1,"""Europe""" +2023-10-06,80064,2638,"[\""Laptop\"", \""Tablet\""]",1247.24,{},291580,0,"""South America""" +2024-07-06,80065,1784,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1417.24,"{\"": \""10%\""}",55883,0,"""South America""" +2024-06-29,80066,9052,"[\""Monitor\""]",4816.31,{},243781,0,"""North America""" +2023-07-06,80067,8833,"[\""Phone\""]",1961.22,"{\""seasonal\"": \""26%\""}",98937,1,"""North America""" +2023-04-04,80068,1865,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4795.97,{},28767,1,"""Europe""" +2023-03-08,80069,3762,"[\""Laptop\""]",2340.36,"{\"": \""17%\""}",218495,0,"""Africa""" +2023-08-01,80070,2825,"[\""Headphones\"", \""Phone\""]",425.11,"{\"": \""9%\""}",286551,0,"""Africa""" +2023-12-05,80071,9370,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2355.44,"{\""loyalty\"": \""18%\""}",169391,0,"""North America""" +2023-11-03,80072,4842,"[\""Phone\"", \""Tablet\""]",2089.61,"{\""promo\"": \""8%\""}",274288,1,"""South America""" +2024-12-30,80073,6142,"[\""Charger\""]",2337.28,"{\""promo\"": \""9%\""}",253138,1,"""Africa""" +2023-07-18,80074,451,"[\""Tablet\"", \""Laptop\""]",2118.52,{},40553,0,"""Africa""" +2023-12-31,80075,1660,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4626.11,{},170367,0,"""Asia""" +2023-03-09,80076,5668,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4391.23,"{\"": \""9%\""}",243975,1,"""North America""" +2023-07-03,80077,553,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2968.55,"{\"": \""12%\""}",68385,0,"""Africa""" +2024-12-14,80078,3477,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4933.89,"{\""loyalty\"": \""21%\""}",233182,0,"""North America""" +2023-03-12,80079,6410,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4462.62,{},106256,1,"""Africa""" +2023-08-23,80080,2805,"[\""Keyboard\"", \""Tablet\""]",3937.35,"{\""loyalty\"": \""18%\""}",269546,1,"""North America""" +2024-06-30,80081,7424,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",464.55,"{\""seasonal\"": \""21%\""}",56526,1,"""Europe""" +2023-08-27,80082,691,"[\""Monitor\"", \""Charger\""]",1841.1,{},13648,1,"""Asia""" +2023-03-27,80083,4802,"[\""Keyboard\""]",1517.82,"{\"": \""12%\""}",266588,1,"""Asia""" +2023-01-02,80084,8882,"[\""Phone\"", \""Headphones\""]",2905.25,{},11414,1,"""Europe""" +2023-02-23,80085,3277,"[\""Laptop\""]",4129.72,"{\""seasonal\"": \""14%\""}",265008,1,"""Europe""" +2024-06-20,80086,4609,"[\""Monitor\"", \""Headphones\""]",67.92,{},261239,0,"""Africa""" +2024-05-16,80087,4494,"[\""Tablet\""]",2963.12,"{\""promo\"": \""21%\""}",151967,0,"""Europe""" +2024-03-25,80088,4611,"[\""Headphones\""]",370.86,"{\""seasonal\"": \""9%\""}",108483,0,"""Europe""" +2024-05-31,80089,8780,"[\""Headphones\""]",1819.08,"{\"": \""18%\""}",232222,1,"""Asia""" +2024-03-11,80090,2752,"[\""Monitor\""]",1541.89,"{\""loyalty\"": \""23%\""}",137458,0,"""Asia""" +2023-09-09,80091,1880,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4011.42,{},218500,0,"""Asia""" +2023-01-30,80092,5315,"[\""Wireless Mouse\""]",1210.76,{},149953,1,"""Europe""" +2023-01-27,80093,7348,"[\""Headphones\""]",2075.54,"{\"": \""20%\""}",235872,1,"""Africa""" +2024-11-12,80094,8670,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4270.43,{},122332,0,"""Europe""" +2024-01-22,80095,4955,"[\""Tablet\"", \""Headphones\""]",1068.6,{},192784,1,"""South America""" +2023-05-29,80096,368,"[\""Charger\""]",3567.27,"{\"": \""15%\""}",248470,0,"""Africa""" +2023-06-25,80097,8606,"[\""Phone\"", \""Charger\""]",1975.25,{},166643,1,"""Asia""" +2023-06-16,80098,3505,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",971.99,{},23334,1,"""Asia""" +2024-07-05,80099,8712,"[\""Wireless Mouse\"", \""Charger\""]",2811.34,{},222818,1,"""North America""" +2024-09-05,80100,5322,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",949.01,{},42281,1,"""North America""" +2023-04-30,80101,7592,"[\""Headphones\"", \""Charger\""]",1503.79,{},5916,0,"""South America""" +2024-07-20,80102,1319,"[\""Wireless Mouse\"", \""Keyboard\""]",1493.63,{},239149,0,"""Asia""" +2023-04-28,80103,8558,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4020.16,{},90729,0,"""North America""" +2024-07-23,80104,5790,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4767.7,{},193960,1,"""Asia""" +2023-07-07,80105,4084,"[\""Laptop\""]",3716.95,{},232929,0,"""Europe""" +2023-11-23,80106,5513,"[\""Keyboard\"", \""Laptop\""]",3607.81,{},295181,1,"""South America""" +2023-11-26,80107,6779,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2774.05,"{\""seasonal\"": \""29%\""}",113080,1,"""Africa""" +2023-11-27,80108,9288,"[\""Wireless Mouse\"", \""Keyboard\""]",3285.97,{},85003,0,"""Asia""" +2024-11-07,80109,6395,"[\""Keyboard\""]",4477.41,{},172330,1,"""Africa""" +2023-03-07,80110,943,"[\""Keyboard\"", \""Wireless Mouse\""]",3198.72,"{\""loyalty\"": \""10%\""}",205971,0,"""South America""" +2023-07-26,80111,6134,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3069.02,"{\""seasonal\"": \""14%\""}",292719,1,"""Africa""" +2024-08-23,80112,4676,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4362.05,"{\""promo\"": \""22%\""}",229893,0,"""Europe""" +2024-06-18,80113,3394,"[\""Phone\""]",1901.12,"{\""loyalty\"": \""19%\""}",149825,0,"""Europe""" +2024-02-06,80114,5336,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4724.17,"{\""loyalty\"": \""6%\""}",1235,0,"""Europe""" +2024-04-06,80115,1135,"[\""Charger\"", \""Keyboard\""]",2776.66,{},110396,1,"""Europe""" +2023-09-25,80116,8052,"[\""Headphones\""]",4240.85,"{\""loyalty\"": \""16%\""}",283237,1,"""Asia""" +2023-06-17,80117,3441,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3654.71,{},74794,1,"""Europe""" +2023-04-27,80118,6918,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1535.49,{},247198,0,"""North America""" +2024-10-28,80119,7039,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4061.98,"{\"": \""16%\""}",159267,0,"""South America""" +2023-08-03,80120,5612,"[\""Charger\""]",1594.82,{},157932,0,"""North America""" +2023-07-23,80121,3526,"[\""Keyboard\""]",2667.1,"{\"": \""11%\""}",283676,1,"""North America""" +2024-12-07,80122,1340,"[\""Headphones\"", \""Laptop\""]",2251.58,{},210078,0,"""South America""" +2023-06-30,80123,2969,"[\""Phone\"", \""Monitor\""]",3134.1,"{\"": \""19%\""}",242575,0,"""Africa""" +2023-04-08,80124,4513,"[\""Wireless Mouse\"", \""Keyboard\""]",299.87,"{\""seasonal\"": \""9%\""}",85094,1,"""Asia""" +2024-08-06,80125,3270,"[\""Wireless Mouse\""]",2026.91,"{\""seasonal\"": \""6%\""}",39639,0,"""Asia""" +2023-10-05,80126,291,"[\""Keyboard\"", \""Laptop\""]",4341.59,"{\""seasonal\"": \""11%\""}",153303,1,"""Asia""" +2024-04-08,80127,6224,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2372.98,{},111983,1,"""Asia""" +2023-02-20,80128,2474,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3549.01,{},13390,1,"""North America""" +2024-03-14,80129,4697,"[\""Headphones\""]",3117.62,"{\""promo\"": \""19%\""}",38834,0,"""North America""" +2024-10-13,80130,1943,"[\""Phone\"", \""Monitor\"", \""Charger\""]",332.72,"{\""seasonal\"": \""9%\""}",158429,1,"""Africa""" +2023-09-29,80131,8431,"[\""Phone\"", \""Charger\""]",3860.95,"{\""promo\"": \""27%\""}",268208,0,"""Europe""" +2023-08-30,80132,3145,"[\""Wireless Mouse\"", \""Headphones\""]",4620.41,"{\""seasonal\"": \""16%\""}",284680,0,"""Africa""" +2023-01-01,80133,4971,"[\""Phone\""]",1643.24,"{\"": \""7%\""}",105884,0,"""Europe""" +2024-10-18,80134,7929,"[\""Wireless Mouse\"", \""Headphones\""]",943.77,{},15668,0,"""Europe""" +2024-09-28,80135,6449,"[\""Laptop\"", \""Phone\""]",505.97,"{\"": \""21%\""}",213949,0,"""Asia""" +2024-06-21,80136,3040,"[\""Laptop\"", \""Monitor\""]",269.95,{},276175,0,"""Europe""" +2024-03-03,80137,6023,"[\""Monitor\""]",1204.95,{},73294,1,"""North America""" +2023-05-16,80138,5234,"[\""Wireless Mouse\""]",3989.13,{},132627,1,"""South America""" +2024-06-29,80139,9710,"[\""Charger\""]",3241.71,{},187548,1,"""South America""" +2024-10-17,80140,9447,"[\""Keyboard\"", \""Headphones\""]",1481.73,{},124101,1,"""Europe""" +2023-11-27,80141,8479,"[\""Phone\"", \""Wireless Mouse\""]",3455.84,{},264789,1,"""Asia""" +2023-04-02,80142,1257,"[\""Charger\""]",2273.45,"{\""loyalty\"": \""8%\""}",39802,1,"""South America""" +2024-03-11,80143,8936,"[\""Monitor\""]",3545.14,"{\""promo\"": \""20%\""}",106112,1,"""North America""" +2024-12-07,80144,5077,"[\""Headphones\"", \""Charger\""]",4695.04,"{\""loyalty\"": \""26%\""}",53970,0,"""Europe""" +2024-12-20,80145,3556,"[\""Monitor\"", \""Phone\""]",532.64,{},197222,0,"""Africa""" +2024-04-22,80146,1430,"[\""Headphones\"", \""Tablet\""]",4228.43,"{\"": \""5%\""}",117100,1,"""Asia""" +2023-11-22,80147,1703,"[\""Charger\""]",1639.0,"{\""promo\"": \""23%\""}",137315,0,"""Africa""" +2023-12-23,80148,4802,"[\""Tablet\"", \""Keyboard\""]",4295.89,{},70327,0,"""North America""" +2024-03-23,80149,287,"[\""Charger\"", \""Wireless Mouse\""]",3733.33,"{\""seasonal\"": \""7%\""}",118289,0,"""South America""" +2024-02-09,80150,4272,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",778.48,{},253827,0,"""North America""" +2024-11-17,80151,2861,"[\""Charger\""]",468.23,{},128568,0,"""Africa""" +2024-07-09,80152,9679,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",870.59,{},75113,0,"""South America""" +2024-10-29,80153,1978,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1584.69,"{\""seasonal\"": \""15%\""}",270736,1,"""South America""" +2023-07-31,80154,8554,"[\""Phone\""]",1803.27,"{\""seasonal\"": \""26%\""}",227389,0,"""Africa""" +2024-10-19,80155,7683,"[\""Wireless Mouse\""]",3551.78,"{\""seasonal\"": \""7%\""}",266620,0,"""Europe""" +2024-02-15,80156,7910,"[\""Phone\"", \""Charger\""]",248.01,{},161830,0,"""South America""" +2024-07-29,80157,9866,"[\""Wireless Mouse\"", \""Keyboard\""]",619.15,{},109847,1,"""Asia""" +2024-08-25,80158,7315,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3527.04,{},103769,1,"""Europe""" +2024-03-30,80159,5238,"[\""Charger\""]",1665.09,"{\""promo\"": \""12%\""}",155621,1,"""South America""" +2024-07-30,80160,4115,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4763.29,{},110358,1,"""North America""" +2023-10-11,80161,9232,"[\""Wireless Mouse\"", \""Laptop\""]",719.07,{},194061,1,"""Europe""" +2023-05-26,80162,5614,"[\""Wireless Mouse\""]",171.6,"{\"": \""29%\""}",27221,1,"""Asia""" +2024-04-15,80163,2428,"[\""Keyboard\""]",2993.31,"{\"": \""10%\""}",261378,0,"""Africa""" +2024-05-08,80164,6960,"[\""Charger\"", \""Laptop\""]",1166.02,"{\""promo\"": \""17%\""}",143245,1,"""Europe""" +2024-08-27,80165,6481,"[\""Monitor\""]",802.59,"{\"": \""24%\""}",264109,1,"""South America""" +2023-06-22,80166,7962,"[\""Charger\"", \""Headphones\""]",1650.12,"{\""seasonal\"": \""27%\""}",254663,0,"""Europe""" +2024-09-04,80167,6032,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",173.06,{},152985,0,"""Asia""" +2024-12-02,80168,87,"[\""Tablet\"", \""Phone\""]",4501.47,"{\""seasonal\"": \""13%\""}",23708,0,"""Asia""" +2024-11-11,80169,3493,"[\""Wireless Mouse\"", \""Tablet\""]",3619.19,"{\""loyalty\"": \""18%\""}",173607,0,"""Africa""" +2023-11-04,80170,3255,"[\""Phone\""]",3990.12,"{\""loyalty\"": \""21%\""}",38208,1,"""South America""" +2024-08-27,80171,1998,"[\""Charger\"", \""Tablet\""]",2106.97,"{\""promo\"": \""6%\""}",218635,0,"""South America""" +2023-07-28,80172,3501,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3679.9,"{\"": \""5%\""}",23009,0,"""Europe""" +2023-07-06,80173,115,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",978.05,"{\""loyalty\"": \""9%\""}",176870,0,"""Africa""" +2023-10-11,80174,391,"[\""Laptop\""]",1221.52,"{\""seasonal\"": \""21%\""}",277791,0,"""South America""" +2024-06-17,80175,7081,"[\""Phone\"", \""Headphones\""]",3841.89,{},226399,1,"""Europe""" +2024-01-14,80176,7871,"[\""Monitor\""]",2812.05,{},185030,1,"""Europe""" +2024-10-31,80177,1604,"[\""Tablet\""]",4451.55,{},90510,0,"""Africa""" +2023-05-02,80178,3771,"[\""Headphones\""]",4159.12,"{\""seasonal\"": \""25%\""}",278807,0,"""Africa""" +2023-11-05,80179,4236,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1635.91,{},221291,0,"""Asia""" +2023-12-14,80180,9104,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",168.15,{},98413,1,"""Asia""" +2023-03-19,80181,5940,"[\""Headphones\"", \""Monitor\""]",1661.75,{},248594,0,"""North America""" +2023-02-10,80182,7670,"[\""Keyboard\""]",2951.83,{},62545,1,"""Asia""" +2023-08-08,80183,9875,"[\""Charger\""]",4522.18,"{\""promo\"": \""14%\""}",72565,1,"""South America""" +2024-07-16,80184,1458,"[\""Phone\""]",663.49,"{\""loyalty\"": \""18%\""}",291626,1,"""Africa""" +2024-06-03,80185,8528,"[\""Monitor\""]",2149.05,{},246539,1,"""South America""" +2024-12-24,80186,4286,"[\""Headphones\"", \""Keyboard\""]",897.49,{},297600,0,"""North America""" +2023-03-05,80187,4666,"[\""Headphones\""]",4549.46,{},264992,0,"""South America""" +2023-10-09,80188,8067,"[\""Tablet\"", \""Headphones\""]",3300.61,"{\""seasonal\"": \""6%\""}",53616,0,"""Africa""" +2023-05-04,80189,4017,"[\""Keyboard\"", \""Headphones\""]",2700.08,{},108704,0,"""Asia""" +2024-09-25,80190,5609,"[\""Wireless Mouse\""]",3683.73,{},42089,0,"""Europe""" +2024-08-05,80191,4941,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4484.52,{},236776,0,"""South America""" +2024-07-20,80192,611,"[\""Charger\""]",4308.74,"{\""loyalty\"": \""30%\""}",27677,0,"""Asia""" +2024-05-09,80193,9829,"[\""Tablet\""]",4048.51,"{\""seasonal\"": \""23%\""}",241691,0,"""South America""" +2024-03-25,80194,7433,"[\""Laptop\"", \""Wireless Mouse\""]",1862.26,"{\""promo\"": \""25%\""}",262855,0,"""North America""" +2023-08-09,80195,8943,"[\""Keyboard\"", \""Monitor\""]",2816.78,"{\""promo\"": \""22%\""}",175169,1,"""Europe""" +2024-01-07,80196,4953,"[\""Tablet\"", \""Monitor\""]",4132.08,"{\"": \""9%\""}",252098,0,"""Africa""" +2023-10-24,80197,9100,"[\""Phone\"", \""Charger\""]",4773.76,{},205242,0,"""Europe""" +2024-05-22,80198,405,"[\""Keyboard\""]",2459.71,"{\""loyalty\"": \""23%\""}",193093,1,"""North America""" +2023-02-06,80199,2894,"[\""Monitor\"", \""Wireless Mouse\""]",2446.75,"{\"": \""22%\""}",43756,0,"""Asia""" +2023-07-26,80200,5262,"[\""Laptop\""]",363.87,"{\""promo\"": \""18%\""}",10577,1,"""Africa""" +2024-07-14,80201,7020,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4156.66,{},18976,0,"""North America""" +2023-10-23,80202,2762,"[\""Keyboard\""]",1064.74,"{\""loyalty\"": \""8%\""}",262251,0,"""Europe""" +2024-03-13,80203,44,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",698.22,"{\""seasonal\"": \""6%\""}",286837,0,"""Africa""" +2024-11-28,80204,119,"[\""Charger\"", \""Monitor\""]",3874.12,{},284274,0,"""Europe""" +2023-11-04,80205,9694,"[\""Tablet\""]",4740.56,"{\""seasonal\"": \""29%\""}",37570,0,"""North America""" +2023-01-31,80206,2082,"[\""Wireless Mouse\""]",2412.44,{},161719,1,"""Europe""" +2023-10-16,80207,522,"[\""Monitor\""]",4791.81,"{\""seasonal\"": \""18%\""}",180460,0,"""South America""" +2024-02-05,80208,4113,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4761.15,"{\""loyalty\"": \""14%\""}",241260,1,"""Europe""" +2023-04-25,80209,9507,"[\""Wireless Mouse\"", \""Charger\""]",469.76,{},6967,1,"""North America""" +2023-05-29,80210,8049,"[\""Headphones\""]",2062.76,{},59909,0,"""North America""" +2024-10-16,80211,4912,"[\""Charger\"", \""Phone\""]",2986.96,"{\"": \""21%\""}",142814,1,"""North America""" +2023-08-12,80212,3994,"[\""Monitor\"", \""Phone\""]",4006.44,{},268858,1,"""Asia""" +2024-05-28,80213,1040,"[\""Wireless Mouse\""]",80.44,{},181121,0,"""South America""" +2024-02-21,80214,1920,"[\""Keyboard\"", \""Laptop\""]",4554.06,"{\""promo\"": \""5%\""}",95843,1,"""North America""" +2024-10-20,80215,1604,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3919.17,{},150503,0,"""North America""" +2023-07-28,80216,4786,"[\""Tablet\""]",2916.69,"{\""promo\"": \""30%\""}",68705,1,"""Asia""" +2023-03-06,80217,7407,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2999.0,{},220611,0,"""Asia""" +2024-12-05,80218,9718,"[\""Tablet\""]",1798.15,"{\""loyalty\"": \""8%\""}",270159,0,"""Europe""" +2023-09-23,80219,3722,"[\""Monitor\""]",4378.54,{},253122,1,"""North America""" +2023-04-28,80220,9184,"[\""Headphones\""]",1517.24,"{\""loyalty\"": \""15%\""}",104492,1,"""Africa""" +2024-06-07,80221,9930,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2233.47,{},95047,1,"""Africa""" +2024-02-26,80222,5390,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3921.07,"{\"": \""11%\""}",61330,1,"""Asia""" +2023-05-02,80223,5641,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4816.54,"{\""loyalty\"": \""12%\""}",259481,1,"""Europe""" +2023-06-09,80224,107,"[\""Phone\""]",3364.86,{},181776,1,"""North America""" +2023-11-24,80225,4397,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1063.22,"{\""loyalty\"": \""20%\""}",8125,1,"""Africa""" +2024-10-30,80226,4597,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4482.14,"{\""loyalty\"": \""29%\""}",127061,1,"""North America""" +2023-08-03,80227,3683,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4051.24,{},275341,1,"""Europe""" +2024-06-25,80228,6958,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1721.13,{},173396,1,"""Asia""" +2024-10-19,80229,7665,"[\""Headphones\""]",2947.89,"{\""promo\"": \""12%\""}",45790,1,"""Europe""" +2023-08-18,80230,2016,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1045.34,{},13480,0,"""Asia""" +2023-02-09,80231,9653,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1661.77,{},214156,1,"""North America""" +2024-02-01,80232,2943,"[\""Wireless Mouse\""]",84.45,"{\"": \""7%\""}",140721,1,"""North America""" +2024-01-10,80233,4853,"[\""Headphones\""]",3751.34,{},60253,0,"""Asia""" +2023-09-29,80234,1109,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3332.76,{},273694,0,"""Europe""" +2024-08-30,80235,4049,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",704.93,{},276651,0,"""North America""" +2023-02-17,80236,6995,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4817.47,{},123126,1,"""South America""" +2024-07-26,80237,6168,"[\""Wireless Mouse\""]",2880.85,"{\"": \""13%\""}",112826,0,"""Europe""" +2023-04-06,80238,4149,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3482.49,{},225757,0,"""South America""" +2024-04-15,80239,101,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3971.09,"{\""seasonal\"": \""11%\""}",80304,1,"""North America""" +2023-08-29,80240,9404,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4106.07,"{\""loyalty\"": \""25%\""}",259300,1,"""Africa""" +2024-04-21,80241,7938,"[\""Keyboard\"", \""Laptop\""]",3552.46,{},89506,0,"""Europe""" +2024-09-23,80242,4293,"[\""Headphones\""]",2354.93,"{\""seasonal\"": \""23%\""}",68790,1,"""Africa""" +2024-02-13,80243,1510,"[\""Charger\""]",2972.84,"{\""promo\"": \""9%\""}",149353,1,"""South America""" +2023-09-21,80244,2034,"[\""Headphones\""]",3566.84,"{\"": \""15%\""}",13794,1,"""North America""" +2024-08-20,80245,8459,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4441.45,"{\""seasonal\"": \""9%\""}",172107,1,"""Asia""" +2023-11-04,80246,3877,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",570.3,"{\""promo\"": \""16%\""}",280089,1,"""North America""" +2023-09-22,80247,3327,"[\""Wireless Mouse\""]",1024.2,{},102870,0,"""North America""" +2023-07-26,80248,1923,"[\""Laptop\"", \""Charger\""]",4167.89,{},202318,0,"""Europe""" +2023-07-10,80249,8795,"[\""Charger\"", \""Tablet\""]",275.19,{},185073,1,"""South America""" +2023-08-05,80250,4024,"[\""Wireless Mouse\""]",969.64,{},200332,1,"""South America""" +2024-10-11,80251,4856,"[\""Phone\"", \""Tablet\""]",4949.53,{},150854,0,"""Asia""" +2023-12-18,80252,184,"[\""Charger\"", \""Keyboard\""]",1902.3,{},152382,1,"""North America""" +2024-08-19,80253,1345,"[\""Tablet\"", \""Wireless Mouse\""]",2455.28,{},299651,0,"""Africa""" +2024-12-31,80254,9109,"[\""Laptop\"", \""Charger\""]",1952.43,"{\"": \""5%\""}",121495,0,"""Asia""" +2023-05-11,80255,8014,"[\""Wireless Mouse\""]",548.13,{},163334,1,"""North America""" +2023-06-14,80256,7504,"[\""Phone\""]",4680.48,"{\""loyalty\"": \""28%\""}",86671,0,"""Africa""" +2023-08-26,80257,8526,"[\""Tablet\"", \""Headphones\""]",184.84,{},217059,1,"""South America""" +2024-03-07,80258,5694,"[\""Keyboard\"", \""Headphones\""]",506.09,{},295216,0,"""South America""" +2024-10-23,80259,6064,"[\""Tablet\""]",2247.29,"{\""loyalty\"": \""10%\""}",119142,1,"""Europe""" +2023-08-26,80260,9272,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1150.27,{},25434,0,"""Asia""" +2023-08-07,80261,2805,"[\""Headphones\""]",1099.32,{},41444,1,"""Europe""" +2024-04-21,80262,4828,"[\""Keyboard\"", \""Laptop\""]",3567.1,{},228413,1,"""South America""" +2024-05-11,80263,5319,"[\""Monitor\""]",1900.39,"{\""seasonal\"": \""27%\""}",34485,0,"""Asia""" +2024-03-30,80264,6033,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3274.41,"{\""seasonal\"": \""10%\""}",276042,1,"""Africa""" +2023-12-02,80265,7488,"[\""Tablet\"", \""Laptop\""]",2175.18,"{\""loyalty\"": \""23%\""}",257705,1,"""Asia""" +2024-07-24,80266,6877,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2619.47,"{\""seasonal\"": \""22%\""}",55703,0,"""Asia""" +2024-09-01,80267,9664,"[\""Keyboard\""]",4769.18,{},238389,0,"""Europe""" +2024-12-07,80268,160,"[\""Charger\"", \""Phone\""]",2696.5,"{\""seasonal\"": \""21%\""}",211416,1,"""Asia""" +2024-09-05,80269,9503,"[\""Laptop\""]",4968.41,"{\""seasonal\"": \""26%\""}",87559,0,"""Europe""" +2023-02-25,80270,7122,"[\""Monitor\""]",4614.85,{},287987,1,"""Africa""" +2024-02-11,80271,1951,"[\""Tablet\"", \""Laptop\""]",2005.22,"{\"": \""26%\""}",49719,1,"""Asia""" +2024-07-19,80272,9660,"[\""Phone\"", \""Monitor\""]",4578.72,{},217829,1,"""Africa""" +2024-01-31,80273,8008,"[\""Monitor\"", \""Headphones\""]",1064.63,{},195835,0,"""Asia""" +2023-04-24,80274,5662,"[\""Phone\"", \""Headphones\""]",2231.88,{},60238,0,"""South America""" +2024-03-25,80275,997,"[\""Laptop\""]",2161.53,"{\"": \""10%\""}",93460,1,"""Europe""" +2023-09-12,80276,4558,"[\""Wireless Mouse\"", \""Tablet\""]",3535.18,{},268468,0,"""Asia""" +2024-03-12,80277,5507,"[\""Phone\"", \""Wireless Mouse\""]",197.57,"{\""seasonal\"": \""20%\""}",282444,0,"""Europe""" +2023-11-08,80278,1138,"[\""Headphones\"", \""Keyboard\""]",1056.95,{},269760,1,"""North America""" +2023-01-06,80279,7836,"[\""Monitor\"", \""Charger\""]",818.42,"{\""promo\"": \""6%\""}",90790,1,"""Europe""" +2024-08-22,80280,8554,"[\""Keyboard\"", \""Charger\""]",668.08,"{\""loyalty\"": \""28%\""}",34177,0,"""Asia""" +2023-07-21,80281,5179,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3044.87,"{\"": \""11%\""}",40683,1,"""Asia""" +2023-11-01,80282,215,"[\""Laptop\""]",3111.25,{},262141,0,"""Africa""" +2023-01-17,80283,7034,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2872.4,"{\""promo\"": \""21%\""}",188048,0,"""Africa""" +2023-09-14,80284,3286,"[\""Laptop\""]",898.35,"{\"": \""20%\""}",274824,0,"""Europe""" +2023-12-15,80285,321,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2959.83,{},182808,1,"""Africa""" +2023-11-26,80286,2162,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2516.48,{},174967,1,"""Asia""" +2023-10-28,80287,4880,"[\""Monitor\""]",4269.75,{},188022,0,"""Africa""" +2023-03-15,80288,1934,"[\""Headphones\"", \""Keyboard\""]",1747.87,{},145138,1,"""South America""" +2023-09-30,80289,2421,"[\""Laptop\"", \""Keyboard\""]",4703.38,{},179941,0,"""North America""" +2023-02-05,80290,1217,"[\""Keyboard\"", \""Tablet\""]",62.27,"{\"": \""13%\""}",37328,0,"""Asia""" +2023-02-19,80291,4653,"[\""Wireless Mouse\"", \""Tablet\""]",3365.84,"{\"": \""28%\""}",124237,1,"""North America""" +2024-11-05,80292,4870,"[\""Tablet\""]",4983.16,{},265328,0,"""Africa""" +2024-03-27,80293,3746,"[\""Phone\"", \""Monitor\""]",1121.3,"{\""promo\"": \""17%\""}",195270,1,"""North America""" +2023-07-12,80294,4960,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4930.03,{},176075,1,"""Asia""" +2023-09-19,80295,348,"[\""Monitor\"", \""Keyboard\""]",2209.22,{},191750,0,"""South America""" +2024-05-04,80296,3540,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",2189.61,{},112915,0,"""Asia""" +2024-01-29,80297,2590,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4662.97,{},231347,0,"""Asia""" +2024-03-14,80298,3725,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2415.17,"{\""promo\"": \""5%\""}",268834,0,"""Asia""" +2024-10-23,80299,2214,"[\""Monitor\""]",3230.81,{},87567,1,"""North America""" +2024-12-05,80300,4533,"[\""Headphones\""]",4858.52,{},107778,0,"""Asia""" +2023-11-11,80301,9292,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1124.06,{},141193,1,"""South America""" +2023-01-18,80302,6847,"[\""Tablet\""]",2822.55,{},210695,1,"""South America""" +2023-05-26,80303,975,"[\""Tablet\""]",4848.86,{},7598,0,"""Asia""" +2023-12-22,80304,8392,"[\""Monitor\""]",2273.83,"{\""promo\"": \""15%\""}",131187,1,"""Europe""" +2024-04-30,80305,1462,"[\""Phone\""]",1310.26,"{\""promo\"": \""7%\""}",118353,0,"""Africa""" +2023-11-09,80306,9322,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3493.46,{},283129,0,"""Europe""" +2023-11-22,80307,4694,"[\""Wireless Mouse\""]",3618.07,"{\""promo\"": \""5%\""}",160240,1,"""North America""" +2024-02-01,80308,3649,"[\""Headphones\""]",1748.91,"{\""promo\"": \""9%\""}",114304,0,"""Europe""" +2023-08-18,80309,248,"[\""Monitor\"", \""Tablet\""]",2883.18,"{\""promo\"": \""7%\""}",150385,0,"""Asia""" +2024-08-16,80310,9966,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3366.02,{},50094,0,"""Asia""" +2024-03-15,80311,5067,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4972.44,{},208750,1,"""Africa""" +2023-08-03,80312,9565,"[\""Keyboard\"", \""Phone\""]",3646.48,"{\"": \""8%\""}",154934,1,"""Africa""" +2024-04-22,80313,4205,"[\""Tablet\""]",310.68,{},251492,1,"""Europe""" +2024-09-08,80314,9629,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2128.46,"{\""promo\"": \""24%\""}",142915,0,"""Asia""" +2023-05-13,80315,7659,"[\""Monitor\"", \""Laptop\""]",207.69,{},98445,1,"""Africa""" +2024-06-08,80316,3659,"[\""Headphones\"", \""Monitor\""]",3701.87,"{\""loyalty\"": \""27%\""}",298733,0,"""Asia""" +2024-06-07,80317,3333,"[\""Charger\"", \""Headphones\""]",1514.11,{},268602,1,"""Asia""" +2024-06-12,80318,7154,"[\""Monitor\""]",4349.59,"{\""promo\"": \""6%\""}",225100,0,"""Africa""" +2023-07-31,80319,7663,"[\""Monitor\"", \""Headphones\""]",2348.15,{},57494,1,"""Europe""" +2024-01-15,80320,6192,"[\""Phone\""]",789.93,{},272103,1,"""South America""" +2024-11-29,80321,6345,"[\""Keyboard\"", \""Laptop\""]",2890.18,{},152440,1,"""Asia""" +2023-03-04,80322,2989,"[\""Phone\""]",4213.46,"{\""loyalty\"": \""28%\""}",2328,1,"""South America""" +2024-10-06,80323,7286,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3293.93,"{\""promo\"": \""16%\""}",14795,1,"""Europe""" +2024-06-30,80324,2763,"[\""Charger\"", \""Headphones\""]",271.77,{},89076,1,"""Africa""" +2023-04-28,80325,6552,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1342.74,{},290745,0,"""Asia""" +2023-10-23,80326,4226,"[\""Keyboard\"", \""Headphones\""]",2626.59,"{\""loyalty\"": \""17%\""}",29638,0,"""Europe""" +2024-12-24,80327,6209,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",735.71,"{\""loyalty\"": \""30%\""}",161448,1,"""Africa""" +2024-01-21,80328,4736,"[\""Laptop\"", \""Headphones\""]",2671.94,"{\""promo\"": \""8%\""}",221910,0,"""Europe""" +2023-02-23,80329,2060,"[\""Headphones\""]",2784.71,"{\""loyalty\"": \""19%\""}",140848,1,"""Europe""" +2023-07-06,80330,9010,"[\""Tablet\"", \""Laptop\""]",3163.21,{},143274,0,"""North America""" +2024-04-15,80331,3423,"[\""Wireless Mouse\""]",676.94,{},271937,1,"""South America""" +2024-05-07,80332,2497,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4317.99,"{\""promo\"": \""19%\""}",62275,1,"""South America""" +2023-12-11,80333,8675,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2473.15,"{\""promo\"": \""22%\""}",55499,1,"""Europe""" +2024-01-16,80334,4191,"[\""Monitor\""]",719.94,"{\""seasonal\"": \""21%\""}",200571,0,"""South America""" +2023-07-15,80335,462,"[\""Keyboard\"", \""Tablet\""]",659.56,{},137929,1,"""South America""" +2024-10-29,80336,6736,"[\""Headphones\""]",2960.94,"{\""seasonal\"": \""27%\""}",107378,1,"""South America""" +2024-12-02,80337,1751,"[\""Headphones\"", \""Laptop\""]",3115.19,"{\""seasonal\"": \""17%\""}",109726,0,"""South America""" +2023-10-09,80338,8849,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4272.71,{},273689,1,"""South America""" +2024-11-01,80339,6788,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1233.69,{},197947,1,"""North America""" +2024-05-23,80340,8317,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2068.76,"{\""promo\"": \""27%\""}",258350,0,"""Asia""" +2024-04-15,80341,3888,"[\""Charger\"", \""Tablet\""]",1965.05,"{\"": \""11%\""}",101920,0,"""Africa""" +2024-05-25,80342,5667,"[\""Keyboard\""]",3487.29,{},99620,0,"""South America""" +2023-07-24,80343,8657,"[\""Keyboard\"", \""Wireless Mouse\""]",3276.97,{},289998,0,"""South America""" +2023-02-28,80344,3095,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4558.13,"{\""loyalty\"": \""8%\""}",246850,0,"""Europe""" +2024-07-02,80345,6298,"[\""Keyboard\"", \""Phone\""]",4448.01,"{\""loyalty\"": \""23%\""}",242131,0,"""Europe""" +2023-08-12,80346,495,"[\""Phone\"", \""Monitor\""]",343.3,"{\""seasonal\"": \""30%\""}",278074,0,"""Asia""" +2023-09-28,80347,6659,"[\""Keyboard\""]",4884.14,{},203486,0,"""Asia""" +2024-06-21,80348,577,"[\""Wireless Mouse\""]",715.21,{},8800,1,"""South America""" +2024-02-03,80349,4378,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4828.53,"{\"": \""6%\""}",225488,1,"""North America""" +2023-11-03,80350,1401,"[\""Keyboard\""]",1481.84,{},2871,1,"""South America""" +2024-10-31,80351,3337,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1607.77,{},293591,0,"""South America""" +2023-07-19,80352,273,"[\""Charger\"", \""Tablet\""]",1772.81,{},9848,1,"""Asia""" +2024-06-02,80353,1379,"[\""Headphones\"", \""Charger\""]",113.65,{},177599,1,"""Europe""" +2024-03-14,80354,8888,"[\""Headphones\"", \""Keyboard\""]",829.54,{},36966,0,"""Asia""" +2024-09-04,80355,3069,"[\""Monitor\"", \""Phone\"", \""Charger\""]",74.17,{},141413,1,"""Asia""" +2023-11-25,80356,8556,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4014.3,"{\""promo\"": \""12%\""}",131880,0,"""Europe""" +2024-06-12,80357,4785,"[\""Keyboard\""]",2499.37,{},188399,0,"""Asia""" +2024-09-19,80358,2619,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",116.59,{},111640,0,"""South America""" +2023-02-05,80359,1350,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4948.98,"{\"": \""30%\""}",162827,0,"""Asia""" +2023-12-03,80360,1489,"[\""Laptop\""]",2416.52,"{\""loyalty\"": \""9%\""}",113194,0,"""Europe""" +2024-11-14,80361,6335,"[\""Wireless Mouse\"", \""Laptop\""]",2553.32,"{\""seasonal\"": \""15%\""}",198281,1,"""Africa""" +2024-08-21,80362,5417,"[\""Laptop\"", \""Monitor\""]",4395.11,{},61817,1,"""North America""" +2023-04-15,80363,8954,"[\""Laptop\"", \""Tablet\""]",796.3,{},128082,1,"""Asia""" +2023-08-30,80364,9216,"[\""Charger\""]",3903.29,"{\""seasonal\"": \""10%\""}",157158,0,"""South America""" +2024-09-19,80365,7630,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3778.45,"{\""seasonal\"": \""15%\""}",70878,0,"""South America""" +2024-07-27,80366,7737,"[\""Wireless Mouse\"", \""Tablet\""]",4833.1,"{\""promo\"": \""17%\""}",76296,0,"""South America""" +2023-05-19,80367,8606,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2552.86,{},247200,1,"""Asia""" +2023-06-25,80368,4384,"[\""Charger\"", \""Monitor\""]",3946.02,{},167224,0,"""South America""" +2024-02-24,80369,7141,"[\""Headphones\"", \""Keyboard\""]",3806.17,{},77728,1,"""South America""" +2023-12-31,80370,8359,"[\""Tablet\"", \""Charger\""]",253.11,{},180329,1,"""Asia""" +2024-11-07,80371,545,"[\""Headphones\"", \""Wireless Mouse\""]",1086.7,{},109823,1,"""Asia""" +2024-07-03,80372,3030,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2174.76,{},79215,1,"""North America""" +2024-01-25,80373,6,"[\""Charger\""]",2922.01,"{\"": \""24%\""}",153195,0,"""North America""" +2024-03-12,80374,5016,"[\""Phone\"", \""Wireless Mouse\""]",448.93,{},46494,1,"""North America""" +2024-06-19,80375,2128,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3262.62,"{\""seasonal\"": \""21%\""}",71172,1,"""Europe""" +2024-04-11,80376,9382,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",2855.66,{},107653,1,"""South America""" +2024-12-25,80377,1187,"[\""Monitor\"", \""Keyboard\""]",1200.98,"{\""promo\"": \""21%\""}",38453,1,"""Europe""" +2024-08-12,80378,216,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1511.68,{},80541,0,"""North America""" +2024-06-15,80379,8519,"[\""Charger\"", \""Tablet\""]",1310.55,"{\""seasonal\"": \""16%\""}",74460,0,"""Asia""" +2024-03-13,80380,4344,"[\""Tablet\"", \""Headphones\""]",4002.56,{},1140,0,"""Africa""" +2024-03-22,80381,405,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4909.45,"{\""seasonal\"": \""5%\""}",47301,1,"""Africa""" +2023-05-29,80382,3667,"[\""Keyboard\""]",3880.47,"{\""loyalty\"": \""24%\""}",37441,0,"""Africa""" +2024-04-06,80383,6115,"[\""Laptop\""]",850.76,{},131117,0,"""Europe""" +2024-12-07,80384,2263,"[\""Keyboard\"", \""Wireless Mouse\""]",3666.23,{},112438,1,"""Africa""" +2023-06-09,80385,9642,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1818.7,{},141997,1,"""Europe""" +2024-02-27,80386,1428,"[\""Charger\"", \""Headphones\""]",1498.49,{},44394,0,"""North America""" +2024-04-29,80387,9036,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4904.19,{},32367,0,"""Africa""" +2023-11-18,80388,6089,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2049.51,"{\""seasonal\"": \""14%\""}",79181,1,"""South America""" +2023-06-01,80389,6846,"[\""Laptop\"", \""Monitor\""]",3103.83,{},29268,0,"""Europe""" +2023-07-02,80390,3120,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2387.47,{},293704,0,"""Asia""" +2024-02-27,80391,1503,"[\""Tablet\""]",860.27,{},30403,0,"""Europe""" +2024-04-30,80392,6076,"[\""Keyboard\""]",4291.23,{},133780,0,"""Africa""" +2023-09-20,80393,3863,"[\""Headphones\"", \""Charger\""]",3425.69,"{\""promo\"": \""10%\""}",30351,0,"""Europe""" +2023-05-30,80394,591,"[\""Charger\"", \""Headphones\""]",4841.72,{},116684,1,"""Africa""" +2023-11-20,80395,1349,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1005.3,{},152870,1,"""Africa""" +2024-11-04,80396,2794,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3559.55,"{\"": \""16%\""}",192944,1,"""South America""" +2024-01-14,80397,6802,"[\""Tablet\""]",2587.96,"{\""seasonal\"": \""14%\""}",175851,1,"""Asia""" +2024-07-20,80398,9377,"[\""Tablet\"", \""Wireless Mouse\""]",3507.7,"{\""promo\"": \""27%\""}",93227,0,"""Europe""" +2024-06-10,80399,4203,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4892.13,{},185862,1,"""South America""" +2024-11-25,80400,1462,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",799.42,{},172757,0,"""South America""" +2023-08-26,80401,7058,"[\""Monitor\""]",672.41,{},280318,1,"""Africa""" +2024-03-08,80402,7519,"[\""Laptop\"", \""Wireless Mouse\""]",2421.65,{},22739,0,"""Africa""" +2024-01-21,80403,1213,"[\""Tablet\""]",3121.65,"{\"": \""27%\""}",42147,0,"""Europe""" +2024-08-31,80404,4420,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",1352.67,{},157493,1,"""Africa""" +2024-01-25,80405,1892,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2688.63,"{\"": \""13%\""}",66393,0,"""Africa""" +2023-08-13,80406,297,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1570.47,"{\"": \""30%\""}",284244,0,"""South America""" +2024-01-23,80407,5620,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",95.75,"{\""seasonal\"": \""6%\""}",172342,0,"""Africa""" +2023-04-21,80408,9232,"[\""Monitor\"", \""Keyboard\""]",4473.71,{},187351,0,"""Asia""" +2024-01-28,80409,1547,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3803.77,"{\""seasonal\"": \""9%\""}",164601,0,"""Asia""" +2023-11-14,80410,2206,"[\""Monitor\"", \""Headphones\""]",1676.06,{},47004,1,"""South America""" +2023-08-27,80411,1822,"[\""Monitor\"", \""Phone\""]",4896.52,{},201268,1,"""Africa""" +2023-07-13,80412,3533,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4569.03,"{\""promo\"": \""29%\""}",290353,0,"""North America""" +2023-05-22,80413,999,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2484.55,{},132061,1,"""North America""" +2023-04-02,80414,3135,"[\""Keyboard\"", \""Monitor\""]",302.83,{},206279,0,"""South America""" +2023-11-05,80415,8010,"[\""Tablet\""]",2510.81,"{\""promo\"": \""9%\""}",159717,1,"""South America""" +2023-10-10,80416,92,"[\""Wireless Mouse\"", \""Charger\""]",3977.85,{},127040,0,"""Asia""" +2023-03-13,80417,1349,"[\""Tablet\""]",4295.3,{},2148,1,"""Europe""" +2023-04-06,80418,4948,"[\""Charger\""]",1822.17,{},45348,1,"""North America""" +2024-01-21,80419,3367,"[\""Laptop\""]",2327.17,{},7310,1,"""Asia""" +2023-02-17,80420,484,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",752.03,{},146555,0,"""North America""" +2023-11-16,80421,692,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1767.67,{},91932,0,"""Asia""" +2023-07-15,80422,811,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1873.66,"{\""seasonal\"": \""16%\""}",10557,0,"""South America""" +2024-02-26,80423,2544,"[\""Headphones\"", \""Monitor\""]",332.74,{},292696,0,"""Africa""" +2023-02-25,80424,3119,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4059.06,{},293099,1,"""Africa""" +2024-11-16,80425,9789,"[\""Wireless Mouse\""]",246.87,"{\""promo\"": \""8%\""}",156489,0,"""South America""" +2024-09-23,80426,8776,"[\""Keyboard\""]",4887.96,"{\"": \""11%\""}",48857,1,"""Asia""" +2023-03-29,80427,7825,"[\""Wireless Mouse\""]",3469.34,"{\"": \""28%\""}",125320,1,"""North America""" +2023-11-21,80428,5855,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2282.98,{},127012,1,"""North America""" +2023-10-06,80429,1228,"[\""Laptop\"", \""Keyboard\""]",929.79,{},274124,0,"""Asia""" +2024-01-13,80430,644,"[\""Tablet\"", \""Wireless Mouse\""]",4463.44,"{\""seasonal\"": \""28%\""}",138161,1,"""North America""" +2023-12-29,80431,9178,"[\""Monitor\"", \""Charger\""]",3790.15,{},264304,0,"""North America""" +2023-11-17,80432,510,"[\""Monitor\""]",278.59,"{\""seasonal\"": \""21%\""}",269142,0,"""North America""" +2023-07-06,80433,9998,"[\""Wireless Mouse\""]",1857.99,{},35769,0,"""Europe""" +2023-03-09,80434,7943,"[\""Phone\""]",4730.68,"{\""loyalty\"": \""23%\""}",235459,1,"""Asia""" +2024-11-15,80435,9979,"[\""Wireless Mouse\""]",299.99,{},30696,1,"""Africa""" +2024-03-10,80436,5514,"[\""Laptop\""]",3993.39,{},93407,1,"""North America""" +2024-06-08,80437,7496,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2153.95,{},25773,1,"""Europe""" +2023-09-01,80438,7559,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4819.1,{},292154,0,"""South America""" +2024-08-29,80439,4383,"[\""Tablet\""]",3676.56,{},159595,0,"""North America""" +2024-04-08,80440,1249,"[\""Headphones\"", \""Wireless Mouse\""]",4825.39,"{\"": \""13%\""}",11790,1,"""Asia""" +2023-01-15,80441,73,"[\""Tablet\"", \""Charger\""]",4362.87,{},184457,1,"""North America""" +2023-12-23,80442,9851,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3126.72,"{\""promo\"": \""23%\""}",139764,0,"""North America""" +2023-06-17,80443,7545,"[\""Charger\"", \""Headphones\""]",4790.67,{},284052,1,"""Europe""" +2024-01-01,80444,8692,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",876.2,{},149367,1,"""Africa""" +2024-12-02,80445,8078,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2993.18,"{\"": \""14%\""}",239960,0,"""North America""" +2023-04-20,80446,539,"[\""Headphones\""]",372.5,{},30967,0,"""South America""" +2024-08-16,80447,6999,"[\""Charger\""]",784.85,{},21512,0,"""South America""" +2023-01-07,80448,4881,"[\""Headphones\"", \""Keyboard\""]",1144.93,"{\""promo\"": \""7%\""}",218448,0,"""North America""" +2024-12-29,80449,3465,"[\""Headphones\"", \""Phone\""]",2243.54,"{\""loyalty\"": \""18%\""}",188000,1,"""North America""" +2024-12-26,80450,160,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1073.84,{},104163,1,"""Asia""" +2023-11-22,80451,3713,"[\""Monitor\""]",4890.7,"{\"": \""23%\""}",170693,0,"""Africa""" +2024-06-16,80452,3918,"[\""Monitor\"", \""Keyboard\""]",314.4,{},69692,1,"""North America""" +2023-12-04,80453,405,"[\""Keyboard\""]",3161.17,{},50764,0,"""South America""" +2023-09-06,80454,7533,"[\""Charger\""]",3144.07,{},178082,0,"""Europe""" +2024-10-27,80455,358,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",1233.33,{},132153,0,"""Asia""" +2024-07-13,80456,1309,"[\""Laptop\"", \""Charger\""]",4367.86,{},12972,1,"""Africa""" +2023-01-15,80457,7655,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3527.24,{},287030,0,"""Africa""" +2023-02-13,80458,6628,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",968.5,"{\""seasonal\"": \""27%\""}",59006,1,"""Europe""" +2024-01-06,80459,2486,"[\""Charger\""]",4251.35,"{\"": \""23%\""}",54527,1,"""Asia""" +2024-03-31,80460,3695,"[\""Wireless Mouse\"", \""Charger\""]",3235.06,{},252193,0,"""Europe""" +2023-07-12,80461,7271,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1762.32,{},7979,0,"""Asia""" +2024-05-25,80462,4217,"[\""Wireless Mouse\""]",4933.4,"{\"": \""17%\""}",81619,0,"""Asia""" +2024-04-13,80463,8730,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3759.05,{},224463,0,"""Africa""" +2023-03-08,80464,7251,"[\""Charger\""]",3137.55,{},281344,0,"""Europe""" +2024-01-12,80465,8026,"[\""Charger\"", \""Monitor\""]",3962.08,{},127204,0,"""South America""" +2023-08-14,80466,9631,"[\""Wireless Mouse\"", \""Laptop\""]",4296.52,"{\""promo\"": \""29%\""}",154405,0,"""Asia""" +2024-01-13,80467,6153,"[\""Tablet\""]",2022.5,{},43458,1,"""Africa""" +2023-05-23,80468,8620,"[\""Phone\""]",4671.19,"{\""promo\"": \""25%\""}",155887,1,"""Africa""" +2024-12-02,80469,3268,"[\""Phone\"", \""Monitor\""]",4973.66,{},189553,1,"""North America""" +2023-09-01,80470,4804,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4150.97,{},104601,0,"""Asia""" +2023-12-01,80471,9274,"[\""Headphones\""]",343.83,{},220510,0,"""Europe""" +2024-06-08,80472,3303,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4795.0,"{\"": \""26%\""}",152053,0,"""Europe""" +2023-10-19,80473,6867,"[\""Keyboard\""]",2807.24,"{\""promo\"": \""7%\""}",122721,0,"""Africa""" +2023-04-23,80474,2258,"[\""Phone\"", \""Charger\""]",3821.51,{},212378,1,"""South America""" +2024-12-05,80475,3512,"[\""Headphones\""]",4748.15,"{\""loyalty\"": \""25%\""}",28388,1,"""Asia""" +2024-12-26,80476,7455,"[\""Monitor\""]",203.14,{},189013,0,"""Asia""" +2024-02-03,80477,1829,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2249.59,{},281205,0,"""Asia""" +2024-05-15,80478,287,"[\""Laptop\"", \""Tablet\""]",3373.5,{},135753,1,"""North America""" +2024-09-04,80479,6884,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1378.7,"{\""seasonal\"": \""6%\""}",115134,0,"""South America""" +2024-04-25,80480,1225,"[\""Monitor\"", \""Wireless Mouse\""]",1404.91,"{\"": \""24%\""}",247595,0,"""South America""" +2023-03-19,80481,1345,"[\""Monitor\""]",2693.09,{},157408,1,"""Europe""" +2023-09-21,80482,6440,"[\""Keyboard\"", \""Laptop\""]",2428.69,"{\""loyalty\"": \""15%\""}",234506,0,"""Africa""" +2024-03-20,80483,4087,"[\""Headphones\""]",3912.2,"{\""seasonal\"": \""18%\""}",84544,1,"""South America""" +2024-09-02,80484,7141,"[\""Wireless Mouse\"", \""Charger\""]",3041.13,"{\"": \""30%\""}",66183,1,"""South America""" +2023-12-20,80485,9493,"[\""Monitor\"", \""Phone\""]",3145.01,{},244098,1,"""South America""" +2023-12-26,80486,596,"[\""Headphones\""]",3734.66,"{\""seasonal\"": \""22%\""}",76023,1,"""South America""" +2023-06-27,80487,6794,"[\""Headphones\""]",2224.32,"{\""loyalty\"": \""26%\""}",144676,0,"""Africa""" +2023-03-07,80488,6846,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1353.69,{},288535,1,"""South America""" +2024-01-13,80489,5200,"[\""Wireless Mouse\""]",4794.95,"{\""promo\"": \""26%\""}",186987,1,"""South America""" +2023-06-05,80490,4804,"[\""Charger\""]",3517.33,{},275872,1,"""South America""" +2023-11-18,80491,8442,"[\""Wireless Mouse\""]",3305.97,"{\"": \""15%\""}",268854,0,"""Europe""" +2023-01-22,80492,7476,"[\""Phone\"", \""Laptop\""]",2005.87,"{\"": \""7%\""}",96304,0,"""Africa""" +2023-08-10,80493,6257,"[\""Phone\"", \""Wireless Mouse\""]",3689.45,"{\""promo\"": \""11%\""}",260330,1,"""South America""" +2023-09-02,80494,2454,"[\""Monitor\"", \""Wireless Mouse\""]",3204.06,{},240267,0,"""North America""" +2024-09-15,80495,8075,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2531.76,"{\""loyalty\"": \""21%\""}",204918,1,"""Asia""" +2024-11-03,80496,6429,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4423.5,"{\""promo\"": \""30%\""}",264780,1,"""South America""" +2023-12-22,80497,5043,"[\""Phone\""]",732.5,{},216757,0,"""South America""" +2024-09-29,80498,1880,"[\""Keyboard\""]",1217.92,{},33560,0,"""Africa""" +2023-09-17,80499,8031,"[\""Keyboard\""]",3404.13,"{\"": \""18%\""}",240139,0,"""Europe""" +2023-05-12,80500,8858,"[\""Charger\"", \""Phone\""]",3697.38,"{\""loyalty\"": \""27%\""}",175114,1,"""Africa""" +2023-02-28,80501,1410,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2696.11,"{\"": \""13%\""}",46909,0,"""South America""" +2024-02-28,80502,4002,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2103.74,{},283536,0,"""Africa""" +2024-01-14,80503,8002,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",552.31,"{\""loyalty\"": \""8%\""}",285614,1,"""South America""" +2023-10-14,80504,2667,"[\""Tablet\"", \""Keyboard\""]",2309.37,"{\"": \""21%\""}",249164,1,"""South America""" +2023-01-05,80505,4396,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2830.06,{},24487,0,"""Europe""" +2024-04-08,80506,1652,"[\""Headphones\"", \""Wireless Mouse\""]",503.26,"{\"": \""19%\""}",51070,1,"""Africa""" +2024-06-28,80507,2217,"[\""Phone\"", \""Headphones\""]",4070.63,"{\""seasonal\"": \""12%\""}",65323,1,"""North America""" +2023-12-16,80508,5671,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4657.17,"{\""loyalty\"": \""12%\""}",296161,0,"""South America""" +2024-11-24,80509,1848,"[\""Tablet\"", \""Monitor\""]",4040.47,{},171036,1,"""Asia""" +2024-04-20,80510,5142,"[\""Laptop\""]",3971.76,{},223063,1,"""North America""" +2023-11-28,80511,9905,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",295.61,{},13133,1,"""Asia""" +2023-02-21,80512,4760,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",611.65,{},54697,1,"""South America""" +2024-01-11,80513,9296,"[\""Keyboard\""]",1514.63,"{\"": \""8%\""}",41892,0,"""South America""" +2023-07-05,80514,1115,"[\""Laptop\""]",587.4,"{\"": \""13%\""}",149712,1,"""Europe""" +2024-07-24,80515,9166,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3607.82,"{\""loyalty\"": \""13%\""}",226765,1,"""Europe""" +2024-07-13,80516,2325,"[\""Phone\""]",2949.73,{},121369,0,"""South America""" +2023-10-10,80517,8657,"[\""Monitor\"", \""Phone\""]",4117.04,{},184118,0,"""Africa""" +2023-12-13,80518,9247,"[\""Monitor\""]",3110.44,{},96442,1,"""South America""" +2023-09-12,80519,1425,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1058.61,"{\""loyalty\"": \""16%\""}",55609,0,"""Africa""" +2023-07-31,80520,9322,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2055.32,"{\""seasonal\"": \""7%\""}",291578,0,"""Africa""" +2023-03-27,80521,6192,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3034.79,"{\""promo\"": \""22%\""}",100935,1,"""South America""" +2024-08-22,80522,2279,"[\""Keyboard\""]",559.7,"{\""promo\"": \""19%\""}",220145,1,"""North America""" +2023-08-27,80523,3217,"[\""Laptop\"", \""Phone\""]",1562.92,{},71331,1,"""North America""" +2023-11-08,80524,8718,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",369.92,{},211668,0,"""South America""" +2023-11-27,80525,690,"[\""Keyboard\"", \""Monitor\""]",2915.32,{},63572,0,"""Europe""" +2023-01-12,80526,6446,"[\""Keyboard\"", \""Tablet\""]",4368.02,"{\"": \""30%\""}",105679,0,"""Africa""" +2024-09-19,80527,634,"[\""Charger\""]",2032.05,{},61988,1,"""South America""" +2023-04-22,80528,9482,"[\""Keyboard\""]",3109.18,{},52654,0,"""Europe""" +2024-11-20,80529,4196,"[\""Wireless Mouse\""]",4299.16,"{\""promo\"": \""25%\""}",192903,1,"""Africa""" +2024-07-02,80530,5713,"[\""Keyboard\"", \""Monitor\""]",332.75,"{\""promo\"": \""10%\""}",215929,0,"""South America""" +2024-05-14,80531,6471,"[\""Monitor\""]",4530.1,"{\""seasonal\"": \""18%\""}",133197,1,"""Africa""" +2023-02-02,80532,6098,"[\""Charger\"", \""Headphones\""]",1177.93,{},117261,1,"""South America""" +2023-11-13,80533,1760,"[\""Tablet\"", \""Charger\""]",259.33,{},37779,1,"""Europe""" +2024-10-14,80534,263,"[\""Headphones\"", \""Wireless Mouse\""]",1193.12,{},35096,1,"""Africa""" +2024-03-02,80535,765,"[\""Monitor\"", \""Headphones\""]",2277.47,{},247672,1,"""North America""" +2024-12-28,80536,9048,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",234.7,{},281068,1,"""South America""" +2024-02-24,80537,964,"[\""Wireless Mouse\"", \""Tablet\""]",2594.61,"{\""loyalty\"": \""8%\""}",38006,0,"""North America""" +2024-12-22,80538,6469,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3420.17,"{\""loyalty\"": \""28%\""}",236570,1,"""Asia""" +2024-01-29,80539,6048,"[\""Phone\""]",1910.35,{},42650,1,"""Europe""" +2023-09-11,80540,1205,"[\""Keyboard\""]",1244.37,{},282778,1,"""Asia""" +2024-11-01,80541,8578,"[\""Monitor\""]",135.02,{},101915,1,"""Asia""" +2024-11-08,80542,4666,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4507.75,{},198179,1,"""South America""" +2023-03-08,80543,2920,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4542.77,"{\""loyalty\"": \""10%\""}",204691,0,"""Europe""" +2024-06-18,80544,5923,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4051.14,"{\""promo\"": \""5%\""}",149618,1,"""Africa""" +2023-07-27,80545,8736,"[\""Wireless Mouse\""]",600.71,"{\""seasonal\"": \""25%\""}",284808,1,"""Asia""" +2023-10-20,80546,1780,"[\""Keyboard\""]",2817.64,{},177596,1,"""South America""" +2024-04-11,80547,1123,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4097.32,"{\""promo\"": \""23%\""}",11321,0,"""South America""" +2024-01-05,80548,995,"[\""Phone\""]",1062.82,{},208906,1,"""Africa""" +2023-09-02,80549,655,"[\""Laptop\""]",251.91,{},48714,1,"""Europe""" +2024-08-20,80550,8916,"[\""Phone\"", \""Charger\""]",204.9,"{\""promo\"": \""20%\""}",177181,1,"""South America""" +2024-06-28,80551,1500,"[\""Tablet\""]",2259.32,{},18991,0,"""Africa""" +2024-11-08,80552,8552,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4196.19,{},6772,0,"""South America""" +2024-07-29,80553,3542,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4249.12,{},240716,1,"""North America""" +2024-03-03,80554,4783,"[\""Monitor\"", \""Keyboard\""]",2559.77,"{\"": \""9%\""}",119377,0,"""Africa""" +2024-07-13,80555,5294,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4206.72,"{\""loyalty\"": \""22%\""}",229441,1,"""Asia""" +2023-03-08,80556,2782,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3641.76,"{\""seasonal\"": \""21%\""}",84707,0,"""Asia""" +2024-01-30,80557,2445,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2485.54,"{\""loyalty\"": \""30%\""}",73856,1,"""Asia""" +2024-02-28,80558,4613,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",582.87,"{\""loyalty\"": \""20%\""}",93793,1,"""Asia""" +2023-10-13,80559,2691,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1393.86,"{\""promo\"": \""17%\""}",129501,1,"""South America""" +2024-07-27,80560,9533,"[\""Charger\"", \""Headphones\""]",528.47,{},187982,1,"""South America""" +2023-02-22,80561,399,"[\""Keyboard\"", \""Headphones\""]",1897.49,"{\""loyalty\"": \""8%\""}",69148,1,"""Europe""" +2024-09-01,80562,3264,"[\""Monitor\"", \""Wireless Mouse\""]",2565.8,{},131387,0,"""North America""" +2024-09-25,80563,2844,"[\""Wireless Mouse\"", \""Phone\""]",3783.69,{},255329,0,"""Asia""" +2023-05-13,80564,6173,"[\""Keyboard\"", \""Charger\""]",3007.44,"{\""seasonal\"": \""28%\""}",92089,0,"""Europe""" +2023-02-19,80565,9478,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4033.27,"{\""seasonal\"": \""18%\""}",127271,0,"""Africa""" +2023-09-06,80566,826,"[\""Phone\""]",1045.33,"{\""seasonal\"": \""30%\""}",125781,0,"""North America""" +2024-12-04,80567,5755,"[\""Keyboard\""]",3670.49,{},116251,1,"""South America""" +2024-04-13,80568,1126,"[\""Wireless Mouse\""]",2052.45,"{\""seasonal\"": \""27%\""}",255534,1,"""North America""" +2023-07-04,80569,4573,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3525.49,"{\""promo\"": \""20%\""}",131675,1,"""North America""" +2024-01-02,80570,7441,"[\""Keyboard\"", \""Phone\""]",1661.55,{},89854,1,"""Africa""" +2023-11-10,80571,4445,"[\""Phone\""]",3575.76,{},194968,0,"""Asia""" +2023-02-14,80572,1902,"[\""Phone\"", \""Headphones\""]",3885.18,"{\""seasonal\"": \""8%\""}",113160,1,"""Africa""" +2024-10-15,80573,4377,"[\""Laptop\""]",4179.71,"{\""promo\"": \""30%\""}",18743,0,"""South America""" +2024-12-28,80574,7458,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",293.16,"{\"": \""16%\""}",299428,0,"""Africa""" +2023-03-18,80575,8637,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2820.16,{},267033,1,"""Europe""" +2023-08-19,80576,2306,"[\""Phone\""]",4942.1,"{\""loyalty\"": \""6%\""}",193362,1,"""South America""" +2023-10-10,80577,6485,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1353.61,"{\""promo\"": \""7%\""}",265035,1,"""Asia""" +2023-10-07,80578,72,"[\""Charger\""]",1333.23,{},3413,1,"""Africa""" +2023-04-13,80579,4799,"[\""Phone\""]",86.76,{},195861,0,"""Asia""" +2024-04-25,80580,1083,"[\""Wireless Mouse\""]",4873.21,"{\""seasonal\"": \""21%\""}",235002,0,"""North America""" +2024-02-29,80581,9006,"[\""Charger\""]",1159.04,"{\""promo\"": \""8%\""}",61520,1,"""Europe""" +2024-06-14,80582,6937,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4410.46,{},229543,0,"""Africa""" +2023-09-17,80583,4056,"[\""Keyboard\""]",4791.81,{},148882,0,"""North America""" +2024-09-03,80584,4225,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2938.91,{},262191,0,"""South America""" +2023-05-01,80585,5993,"[\""Phone\""]",4339.86,"{\"": \""12%\""}",250895,0,"""Europe""" +2023-07-12,80586,9235,"[\""Tablet\""]",434.37,{},137448,0,"""North America""" +2023-01-15,80587,4449,"[\""Phone\""]",4531.82,{},53095,1,"""North America""" +2024-02-23,80588,5094,"[\""Keyboard\""]",3163.65,"{\"": \""30%\""}",33990,0,"""South America""" +2024-11-05,80589,8013,"[\""Charger\"", \""Laptop\""]",4854.45,"{\"": \""18%\""}",193457,1,"""Asia""" +2023-03-18,80590,2912,"[\""Charger\""]",938.49,"{\""seasonal\"": \""18%\""}",132334,0,"""Africa""" +2023-06-20,80591,9961,"[\""Tablet\""]",2330.59,"{\""loyalty\"": \""27%\""}",202450,0,"""North America""" +2023-01-08,80592,453,"[\""Phone\"", \""Monitor\""]",3643.75,{},50365,0,"""South America""" +2024-04-02,80593,7039,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4592.87,"{\""seasonal\"": \""18%\""}",147182,1,"""Africa""" +2024-10-21,80594,6735,"[\""Monitor\"", \""Laptop\""]",69.39,{},136798,0,"""Asia""" +2024-11-24,80595,5310,"[\""Charger\""]",3532.43,"{\""loyalty\"": \""21%\""}",140878,0,"""South America""" +2023-08-23,80596,2601,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2012.78,"{\""seasonal\"": \""9%\""}",111385,1,"""Europe""" +2024-11-12,80597,7101,"[\""Phone\"", \""Monitor\""]",2039.87,"{\""seasonal\"": \""27%\""}",274281,0,"""Africa""" +2023-01-23,80598,3247,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2849.54,"{\""promo\"": \""8%\""}",94455,0,"""South America""" +2023-01-29,80599,953,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2737.65,"{\""loyalty\"": \""24%\""}",200965,0,"""Africa""" +2023-04-28,80600,9153,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",66.62,"{\"": \""28%\""}",168367,1,"""North America""" +2024-10-09,80601,2458,"[\""Monitor\"", \""Phone\""]",4445.61,{},285414,0,"""North America""" +2024-02-08,80602,9106,"[\""Laptop\""]",3707.79,{},166253,1,"""South America""" +2023-09-03,80603,6839,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1775.2,"{\"": \""30%\""}",212233,1,"""Europe""" +2024-07-29,80604,1305,"[\""Laptop\""]",2556.33,{},193632,0,"""Europe""" +2024-04-08,80605,4066,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2458.07,{},186333,1,"""Asia""" +2023-03-26,80606,1710,"[\""Wireless Mouse\"", \""Monitor\""]",2588.63,{},164918,0,"""North America""" +2023-07-09,80607,8984,"[\""Phone\""]",4257.51,{},122963,0,"""Europe""" +2024-10-25,80608,7990,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2095.84,"{\""promo\"": \""18%\""}",20503,1,"""North America""" +2023-11-28,80609,715,"[\""Monitor\""]",913.89,"{\""promo\"": \""19%\""}",31577,1,"""South America""" +2024-02-10,80610,2317,"[\""Tablet\""]",4559.52,{},27325,1,"""Africa""" +2024-02-10,80611,3400,"[\""Charger\"", \""Wireless Mouse\""]",2314.96,"{\""promo\"": \""10%\""}",112833,1,"""Asia""" +2024-11-26,80612,1663,"[\""Laptop\"", \""Wireless Mouse\""]",1103.28,"{\""seasonal\"": \""27%\""}",238776,0,"""Europe""" +2024-12-22,80613,920,"[\""Laptop\"", \""Monitor\""]",2473.63,{},60178,0,"""Asia""" +2024-08-20,80614,1675,"[\""Tablet\"", \""Monitor\""]",262.48,"{\""loyalty\"": \""9%\""}",190120,0,"""North America""" +2024-10-01,80615,9522,"[\""Tablet\"", \""Wireless Mouse\""]",3124.25,{},69893,1,"""Asia""" +2024-10-23,80616,3980,"[\""Phone\"", \""Keyboard\""]",2883.15,{},277711,1,"""Africa""" +2024-02-10,80617,7635,"[\""Phone\""]",2222.26,{},168241,0,"""North America""" +2023-11-09,80618,4272,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3728.04,{},170882,0,"""South America""" +2024-07-27,80619,6536,"[\""Charger\"", \""Wireless Mouse\""]",1283.87,{},187173,1,"""Africa""" +2023-05-17,80620,9473,"[\""Laptop\""]",3026.96,{},59567,1,"""Europe""" +2023-11-30,80621,6782,"[\""Wireless Mouse\"", \""Keyboard\""]",1921.02,{},187624,1,"""North America""" +2023-11-19,80622,4989,"[\""Headphones\""]",4414.95,"{\""promo\"": \""20%\""}",212331,0,"""Europe""" +2023-12-07,80623,2476,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3761.72,{},204606,0,"""North America""" +2023-11-16,80624,9068,"[\""Phone\""]",673.23,"{\""promo\"": \""26%\""}",296455,1,"""South America""" +2024-11-21,80625,8568,"[\""Monitor\"", \""Wireless Mouse\""]",4416.09,{},58702,0,"""North America""" +2023-12-30,80626,7702,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4031.02,"{\""loyalty\"": \""11%\""}",218216,1,"""Africa""" +2024-07-16,80627,1440,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2129.83,"{\"": \""20%\""}",193239,0,"""Europe""" +2024-02-03,80628,2601,"[\""Charger\""]",1916.74,"{\"": \""26%\""}",235418,1,"""Africa""" +2023-06-22,80629,6156,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4902.61,{},144492,0,"""South America""" +2023-03-01,80630,6948,"[\""Tablet\""]",556.66,"{\""loyalty\"": \""11%\""}",80519,0,"""Europe""" +2024-12-18,80631,6681,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4966.54,{},235373,1,"""Africa""" +2024-01-16,80632,2281,"[\""Charger\""]",2070.95,"{\""loyalty\"": \""28%\""}",226211,1,"""Africa""" +2024-10-16,80633,1753,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2653.76,{},101194,1,"""Africa""" +2024-03-22,80634,1570,"[\""Phone\"", \""Headphones\""]",2786.92,{},104856,1,"""Asia""" +2024-08-20,80635,3133,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",238.58,{},157607,1,"""North America""" +2024-10-05,80636,1065,"[\""Keyboard\""]",4906.56,"{\""loyalty\"": \""25%\""}",269616,1,"""Asia""" +2023-09-23,80637,4712,"[\""Wireless Mouse\"", \""Monitor\""]",4506.46,"{\""seasonal\"": \""17%\""}",286032,0,"""North America""" +2023-09-27,80638,7699,"[\""Keyboard\"", \""Headphones\""]",2228.22,{},239224,1,"""Asia""" +2023-10-24,80639,914,"[\""Tablet\""]",2565.11,{},5051,1,"""Asia""" +2023-12-20,80640,1886,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2771.57,{},39508,0,"""North America""" +2024-09-12,80641,3041,"[\""Keyboard\"", \""Charger\""]",4065.42,{},236700,1,"""Europe""" +2023-04-11,80642,1345,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4562.35,{},70597,0,"""Asia""" +2024-07-25,80643,4963,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3515.14,{},92684,1,"""Africa""" +2024-07-13,80644,3575,"[\""Tablet\"", \""Phone\""]",3660.85,"{\""loyalty\"": \""16%\""}",59401,1,"""South America""" +2024-02-27,80645,1683,"[\""Keyboard\""]",1193.82,{},69197,0,"""South America""" +2024-02-27,80646,2980,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",303.74,{},229894,1,"""Asia""" +2023-12-11,80647,7809,"[\""Charger\"", \""Wireless Mouse\""]",3782.36,"{\""loyalty\"": \""14%\""}",165601,1,"""South America""" +2024-05-30,80648,1188,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2655.48,{},283639,1,"""Europe""" +2024-04-13,80649,6477,"[\""Keyboard\""]",3987.15,"{\""promo\"": \""10%\""}",87261,1,"""South America""" +2023-12-12,80650,6739,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4823.59,{},66527,1,"""Asia""" +2024-04-06,80651,3026,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3148.88,"{\"": \""15%\""}",51845,1,"""North America""" +2023-07-21,80652,2619,"[\""Charger\""]",1332.45,{},30696,0,"""Africa""" +2023-10-07,80653,2751,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1801.95,"{\""loyalty\"": \""26%\""}",219222,1,"""Europe""" +2024-06-08,80654,2548,"[\""Phone\""]",1656.98,{},170657,0,"""South America""" +2023-11-04,80655,8559,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1919.7,{},279263,0,"""Europe""" +2023-06-07,80656,2053,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3010.32,{},220808,1,"""Africa""" +2023-04-08,80657,5337,"[\""Charger\"", \""Headphones\""]",3111.76,{},86564,1,"""Africa""" +2023-08-21,80658,6895,"[\""Wireless Mouse\"", \""Laptop\""]",4537.07,{},52450,1,"""Europe""" +2023-03-20,80659,8731,"[\""Monitor\""]",3817.33,"{\""loyalty\"": \""22%\""}",110217,0,"""Asia""" +2024-10-17,80660,3785,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4063.64,"{\""promo\"": \""28%\""}",108617,0,"""North America""" +2024-05-14,80661,2612,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4630.3,{},158983,0,"""North America""" +2023-10-02,80662,3124,"[\""Tablet\"", \""Keyboard\""]",212.17,{},166512,1,"""Asia""" +2023-06-05,80663,5388,"[\""Charger\""]",3106.15,{},137246,1,"""South America""" +2023-05-31,80664,6968,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2537.47,"{\""loyalty\"": \""6%\""}",27534,1,"""South America""" +2023-10-02,80665,8544,"[\""Laptop\""]",4041.65,"{\""promo\"": \""13%\""}",295327,0,"""Africa""" +2024-02-09,80666,257,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2124.78,"{\""loyalty\"": \""20%\""}",28961,1,"""South America""" +2024-10-02,80667,3330,"[\""Charger\""]",3007.02,"{\""seasonal\"": \""11%\""}",46673,0,"""Europe""" +2023-07-01,80668,9525,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2933.25,{},183886,1,"""North America""" +2023-03-01,80669,375,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3492.19,"{\"": \""12%\""}",18286,1,"""South America""" +2024-06-04,80670,404,"[\""Monitor\"", \""Laptop\""]",1625.21,"{\""seasonal\"": \""10%\""}",296234,1,"""Africa""" +2024-06-02,80671,5334,"[\""Charger\""]",825.32,"{\"": \""30%\""}",76533,1,"""Asia""" +2024-09-09,80672,649,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3265.7,{},22883,1,"""Africa""" +2024-03-25,80673,2022,"[\""Phone\"", \""Tablet\""]",2716.33,{},40966,1,"""Africa""" +2023-10-27,80674,2026,"[\""Tablet\""]",1354.73,{},266959,1,"""North America""" +2024-01-23,80675,4688,"[\""Laptop\""]",2889.98,{},246687,1,"""North America""" +2023-08-27,80676,591,"[\""Phone\"", \""Monitor\""]",308.45,{},170522,0,"""Europe""" +2024-06-05,80677,7707,"[\""Headphones\""]",782.17,{},57074,1,"""Africa""" +2023-07-25,80678,1984,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2626.52,{},184405,0,"""Asia""" +2024-01-03,80679,1002,"[\""Tablet\""]",4382.68,{},239509,1,"""South America""" +2023-03-08,80680,7021,"[\""Tablet\"", \""Headphones\""]",4190.48,{},57652,0,"""Africa""" +2023-12-15,80681,5148,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2439.22,{},290422,1,"""Africa""" +2023-04-13,80682,7720,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",810.63,{},180698,1,"""Asia""" +2023-12-06,80683,4833,"[\""Phone\"", \""Tablet\""]",3906.37,{},23739,1,"""Africa""" +2024-01-08,80684,6440,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",383.93,"{\"": \""21%\""}",11540,0,"""Africa""" +2024-02-01,80685,759,"[\""Charger\"", \""Tablet\""]",3284.49,"{\""loyalty\"": \""29%\""}",132842,0,"""Asia""" +2023-04-12,80686,1421,"[\""Charger\"", \""Monitor\""]",2915.78,{},282416,1,"""Europe""" +2024-03-28,80687,1191,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1380.41,{},274880,0,"""Europe""" +2024-05-01,80688,52,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4641.33,{},161212,1,"""Africa""" +2024-08-05,80689,7985,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1320.12,{},150629,1,"""South America""" +2023-01-09,80690,5246,"[\""Phone\""]",1195.45,{},161690,1,"""Europe""" +2023-06-20,80691,3468,"[\""Wireless Mouse\"", \""Phone\""]",4266.82,"{\"": \""12%\""}",162498,1,"""Africa""" +2023-09-17,80692,3648,"[\""Wireless Mouse\""]",4238.53,{},105980,1,"""North America""" +2024-06-10,80693,2022,"[\""Monitor\""]",2140.17,{},5267,0,"""North America""" +2024-07-11,80694,9968,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",880.84,"{\""seasonal\"": \""27%\""}",179704,0,"""Africa""" +2024-05-07,80695,1816,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1620.83,"{\"": \""22%\""}",45686,1,"""Europe""" +2024-09-10,80696,1221,"[\""Charger\""]",2978.47,"{\""promo\"": \""29%\""}",260999,0,"""North America""" +2023-01-08,80697,1040,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",757.49,{},113808,1,"""Europe""" +2023-04-10,80698,1730,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",299.12,{},155315,1,"""South America""" +2023-12-08,80699,1833,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2478.38,{},201091,1,"""North America""" +2023-12-27,80700,3977,"[\""Tablet\"", \""Monitor\""]",4784.37,{},149211,0,"""Asia""" +2023-07-20,80701,9462,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3842.65,{},195884,1,"""Asia""" +2023-01-08,80702,3709,"[\""Tablet\""]",502.33,"{\""seasonal\"": \""23%\""}",295705,1,"""North America""" +2024-03-02,80703,4443,"[\""Tablet\"", \""Wireless Mouse\""]",2488.47,{},246169,1,"""South America""" +2023-09-03,80704,1626,"[\""Laptop\"", \""Wireless Mouse\""]",4256.39,{},218228,1,"""Asia""" +2023-09-26,80705,4626,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2314.33,{},173257,1,"""South America""" +2024-08-16,80706,17,"[\""Keyboard\""]",2665.57,"{\""loyalty\"": \""18%\""}",159787,0,"""South America""" +2024-07-07,80707,6184,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3403.39,"{\""promo\"": \""17%\""}",281962,0,"""North America""" +2024-08-29,80708,4648,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1788.83,{},36437,0,"""Asia""" +2024-10-24,80709,9781,"[\""Wireless Mouse\"", \""Headphones\""]",3248.53,"{\""loyalty\"": \""24%\""}",191692,1,"""North America""" +2024-08-28,80710,9504,"[\""Tablet\""]",3216.06,{},195278,0,"""North America""" +2024-04-18,80711,6340,"[\""Tablet\""]",3348.64,{},170949,1,"""Europe""" +2023-10-10,80712,501,"[\""Wireless Mouse\"", \""Phone\""]",3355.56,{},271834,0,"""Europe""" +2023-09-04,80713,6259,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4744.04,"{\""promo\"": \""21%\""}",293815,1,"""Europe""" +2023-09-12,80714,8435,"[\""Charger\"", \""Phone\""]",1024.29,{},241009,1,"""Asia""" +2024-07-05,80715,6981,"[\""Wireless Mouse\""]",4234.1,{},37078,0,"""Asia""" +2024-08-22,80716,5360,"[\""Phone\"", \""Laptop\""]",2221.6,"{\""loyalty\"": \""11%\""}",135122,0,"""North America""" +2024-08-31,80717,6194,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",703.98,"{\""promo\"": \""11%\""}",145951,0,"""Europe""" +2024-07-31,80718,1725,"[\""Wireless Mouse\""]",2286.85,{},229920,1,"""Asia""" +2024-12-06,80719,345,"[\""Tablet\"", \""Charger\""]",123.22,{},230687,1,"""North America""" +2024-10-24,80720,4816,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3345.1,{},176171,1,"""Europe""" +2023-03-08,80721,5972,"[\""Charger\"", \""Phone\""]",2691.89,"{\""seasonal\"": \""22%\""}",42930,0,"""Africa""" +2023-06-29,80722,4034,"[\""Phone\"", \""Headphones\""]",3813.31,"{\"": \""27%\""}",130495,1,"""North America""" +2023-08-03,80723,9876,"[\""Keyboard\"", \""Phone\""]",221.54,{},56818,1,"""South America""" +2023-02-19,80724,3792,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2028.84,{},164740,0,"""North America""" +2024-09-09,80725,6621,"[\""Monitor\""]",3801.91,"{\""loyalty\"": \""16%\""}",214296,1,"""Europe""" +2024-05-31,80726,3908,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",936.65,{},91861,0,"""North America""" +2024-01-11,80727,7754,"[\""Wireless Mouse\""]",111.42,{},138455,0,"""Africa""" +2023-09-03,80728,79,"[\""Headphones\""]",3880.77,"{\""promo\"": \""28%\""}",251448,0,"""Europe""" +2024-03-18,80729,5996,"[\""Headphones\"", \""Laptop\""]",987.49,{},76879,0,"""Europe""" +2024-02-17,80730,3718,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",864.33,"{\"": \""10%\""}",243944,1,"""Africa""" +2024-06-19,80731,2270,"[\""Charger\""]",4885.36,{},79334,1,"""Europe""" +2023-07-05,80732,445,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1467.03,{},91400,1,"""Asia""" +2023-10-15,80733,6463,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3199.76,"{\""seasonal\"": \""10%\""}",115966,1,"""South America""" +2023-08-14,80734,1986,"[\""Laptop\""]",2961.84,{},271260,0,"""North America""" +2023-08-23,80735,6774,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3263.74,"{\""promo\"": \""18%\""}",57709,1,"""South America""" +2024-08-28,80736,8441,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1876.7,"{\""promo\"": \""16%\""}",279277,1,"""North America""" +2023-12-12,80737,2517,"[\""Tablet\"", \""Headphones\""]",2313.89,"{\""promo\"": \""29%\""}",43803,1,"""Africa""" +2024-04-30,80738,1013,"[\""Phone\"", \""Wireless Mouse\""]",3165.2,{},137851,1,"""Africa""" +2024-09-12,80739,3467,"[\""Monitor\""]",1046.49,{},297069,0,"""Europe""" +2024-08-26,80740,4566,"[\""Wireless Mouse\""]",603.72,"{\""loyalty\"": \""19%\""}",204761,0,"""Asia""" +2023-12-04,80741,4377,"[\""Wireless Mouse\"", \""Charger\""]",1763.78,"{\""seasonal\"": \""23%\""}",52386,0,"""Asia""" +2024-12-18,80742,7278,"[\""Tablet\"", \""Laptop\""]",3233.98,{},247508,1,"""Asia""" +2024-06-18,80743,3492,"[\""Wireless Mouse\""]",2989.96,{},177538,0,"""Africa""" +2024-11-15,80744,6644,"[\""Laptop\"", \""Keyboard\""]",414.42,{},151620,1,"""North America""" +2024-01-26,80745,3011,"[\""Monitor\"", \""Laptop\""]",1724.7,{},249643,0,"""Asia""" +2024-09-06,80746,4992,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1802.97,{},32804,1,"""South America""" +2023-06-16,80747,8973,"[\""Charger\"", \""Phone\""]",2029.21,"{\""promo\"": \""11%\""}",255859,1,"""North America""" +2023-08-26,80748,6980,"[\""Headphones\"", \""Wireless Mouse\""]",3794.91,{},218381,1,"""Africa""" +2024-07-09,80749,4951,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4749.02,"{\""seasonal\"": \""30%\""}",205349,0,"""North America""" +2023-01-09,80750,6211,"[\""Wireless Mouse\""]",1773.34,"{\"": \""19%\""}",256063,1,"""Europe""" +2023-03-13,80751,9150,"[\""Wireless Mouse\"", \""Phone\""]",1293.82,{},35404,1,"""North America""" +2023-11-15,80752,6509,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4566.78,"{\""seasonal\"": \""16%\""}",298235,0,"""Africa""" +2024-08-02,80753,4982,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3354.58,"{\""loyalty\"": \""21%\""}",179173,1,"""North America""" +2023-01-07,80754,8216,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2858.24,"{\""loyalty\"": \""30%\""}",25990,0,"""North America""" +2024-09-19,80755,8249,"[\""Wireless Mouse\""]",680.42,{},256708,1,"""Africa""" +2023-10-29,80756,4873,"[\""Tablet\""]",167.34,"{\""loyalty\"": \""21%\""}",164538,1,"""South America""" +2024-07-01,80757,5520,"[\""Charger\""]",3107.93,"{\""promo\"": \""22%\""}",25611,0,"""Africa""" +2023-11-16,80758,5583,"[\""Monitor\""]",1763.09,{},8076,0,"""Asia""" +2024-02-28,80759,6423,"[\""Wireless Mouse\"", \""Headphones\""]",1051.52,{},204724,1,"""North America""" +2023-07-03,80760,9241,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4434.04,"{\""loyalty\"": \""6%\""}",60749,0,"""Africa""" +2024-02-25,80761,2461,"[\""Wireless Mouse\""]",1448.39,"{\"": \""8%\""}",149669,0,"""North America""" +2024-04-11,80762,7290,"[\""Laptop\""]",3510.98,"{\""promo\"": \""12%\""}",127621,0,"""North America""" +2024-03-11,80763,833,"[\""Keyboard\"", \""Headphones\""]",851.97,{},269639,0,"""Europe""" +2024-03-28,80764,9288,"[\""Phone\"", \""Headphones\""]",167.95,"{\"": \""25%\""}",175319,0,"""Africa""" +2023-03-23,80765,8632,"[\""Laptop\""]",2072.73,"{\""promo\"": \""6%\""}",156933,1,"""Europe""" +2023-09-17,80766,415,"[\""Phone\"", \""Monitor\""]",2070.93,{},196761,1,"""Europe""" +2024-11-30,80767,5301,"[\""Phone\"", \""Tablet\""]",3864.76,{},263587,0,"""North America""" +2024-01-02,80768,2099,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1856.95,{},32777,0,"""Africa""" +2024-01-27,80769,1272,"[\""Wireless Mouse\"", \""Headphones\""]",3993.06,"{\"": \""28%\""}",44181,0,"""South America""" +2024-07-05,80770,308,"[\""Wireless Mouse\""]",386.63,"{\""seasonal\"": \""10%\""}",153605,0,"""North America""" +2023-08-05,80771,8384,"[\""Headphones\""]",1788.37,"{\""seasonal\"": \""16%\""}",139411,1,"""South America""" +2024-07-10,80772,5934,"[\""Phone\"", \""Wireless Mouse\""]",2860.15,{},16969,1,"""North America""" +2024-06-02,80773,2908,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2216.04,"{\""seasonal\"": \""17%\""}",27797,0,"""Europe""" +2023-02-20,80774,17,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2103.43,{},183372,1,"""Europe""" +2023-02-10,80775,8769,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4396.58,{},42917,1,"""Africa""" +2024-07-27,80776,179,"[\""Charger\""]",2840.26,{},60716,1,"""Africa""" +2024-05-09,80777,9799,"[\""Tablet\""]",4608.56,{},161549,1,"""South America""" +2024-03-09,80778,4069,"[\""Laptop\""]",3594.42,{},116561,1,"""Africa""" +2024-09-20,80779,9232,"[\""Tablet\"", \""Wireless Mouse\""]",146.41,"{\""promo\"": \""23%\""}",44799,0,"""Asia""" +2023-12-17,80780,5119,"[\""Wireless Mouse\""]",571.52,{},40705,0,"""Africa""" +2023-02-24,80781,8215,"[\""Phone\""]",4021.26,{},198669,0,"""Africa""" +2024-10-11,80782,116,"[\""Laptop\""]",709.69,"{\""promo\"": \""18%\""}",127786,0,"""Africa""" +2024-01-22,80783,2027,"[\""Charger\""]",375.53,{},245894,0,"""Africa""" +2024-01-10,80784,1821,"[\""Headphones\"", \""Charger\""]",4423.28,{},252362,1,"""Europe""" +2024-05-13,80785,9291,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3946.64,"{\""promo\"": \""5%\""}",258736,0,"""North America""" +2023-09-07,80786,3290,"[\""Keyboard\""]",2895.18,{},189903,1,"""Asia""" +2023-01-18,80787,7267,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3603.47,"{\""promo\"": \""30%\""}",39793,1,"""Europe""" +2023-04-09,80788,9945,"[\""Monitor\""]",2398.31,"{\""promo\"": \""23%\""}",93582,1,"""South America""" +2023-07-23,80789,275,"[\""Phone\"", \""Tablet\""]",3979.57,"{\""loyalty\"": \""17%\""}",282423,0,"""Asia""" +2023-10-20,80790,7784,"[\""Laptop\"", \""Charger\""]",364.97,{},43974,1,"""North America""" +2023-05-29,80791,7940,"[\""Wireless Mouse\""]",2552.45,"{\""promo\"": \""27%\""}",252466,0,"""South America""" +2024-11-28,80792,4110,"[\""Headphones\""]",4618.16,{},6714,0,"""South America""" +2024-11-05,80793,8012,"[\""Keyboard\""]",76.45,"{\"": \""7%\""}",281750,1,"""Africa""" +2024-02-10,80794,8512,"[\""Phone\"", \""Laptop\""]",2718.82,{},221706,1,"""Asia""" +2023-03-15,80795,7120,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4753.2,{},190258,0,"""Africa""" +2024-05-01,80796,9321,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3748.33,"{\""promo\"": \""6%\""}",44030,1,"""Asia""" +2024-12-09,80797,5571,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2395.39,"{\"": \""25%\""}",258754,1,"""Europe""" +2024-06-30,80798,8734,"[\""Wireless Mouse\""]",3879.12,{},201412,1,"""North America""" +2023-06-18,80799,5448,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3699.3,{},244219,0,"""Europe""" +2023-11-08,80800,2660,"[\""Phone\"", \""Headphones\""]",4039.94,{},153793,0,"""North America""" +2024-06-22,80801,2826,"[\""Headphones\"", \""Keyboard\""]",2869.35,{},48294,1,"""North America""" +2024-03-01,80802,2296,"[\""Monitor\""]",3968.62,{},249091,1,"""Asia""" +2024-08-11,80803,6407,"[\""Wireless Mouse\""]",3444.63,"{\"": \""27%\""}",142746,1,"""North America""" +2024-09-01,80804,6130,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",696.09,{},241991,1,"""Europe""" +2024-09-17,80805,8021,"[\""Charger\"", \""Wireless Mouse\""]",727.72,"{\""loyalty\"": \""18%\""}",148665,0,"""Africa""" +2024-07-13,80806,5693,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",576.34,"{\""promo\"": \""29%\""}",71363,0,"""Europe""" +2023-01-10,80807,9916,"[\""Tablet\"", \""Laptop\""]",2478.13,{},80633,0,"""Asia""" +2023-06-21,80808,6014,"[\""Tablet\""]",1238.5,"{\""loyalty\"": \""30%\""}",64413,1,"""Africa""" +2024-04-24,80809,7429,"[\""Keyboard\""]",4470.38,"{\"": \""25%\""}",45307,0,"""Asia""" +2024-07-05,80810,6616,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4153.07,"{\"": \""20%\""}",157349,1,"""Africa""" +2023-11-06,80811,5149,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2728.2,{},272506,0,"""Europe""" +2023-06-01,80812,1488,"[\""Tablet\"", \""Headphones\""]",4299.99,{},156246,0,"""South America""" +2023-01-26,80813,6307,"[\""Phone\"", \""Keyboard\""]",948.86,"{\""promo\"": \""9%\""}",144678,0,"""Africa""" +2023-12-25,80814,3191,"[\""Wireless Mouse\"", \""Monitor\""]",2565.7,"{\""seasonal\"": \""5%\""}",236060,1,"""Europe""" +2024-04-13,80815,9162,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",576.96,{},139093,1,"""North America""" +2024-07-18,80816,2913,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4969.63,"{\""promo\"": \""7%\""}",207767,0,"""North America""" +2023-09-03,80817,8113,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2046.84,"{\""promo\"": \""13%\""}",4219,1,"""North America""" +2024-09-08,80818,8761,"[\""Keyboard\"", \""Laptop\""]",910.77,"{\""loyalty\"": \""27%\""}",293951,0,"""Europe""" +2024-02-26,80819,4793,"[\""Keyboard\"", \""Tablet\""]",757.37,{},299584,0,"""Asia""" +2023-03-17,80820,7598,"[\""Tablet\"", \""Keyboard\""]",3194.02,{},133630,1,"""North America""" +2024-08-29,80821,5414,"[\""Tablet\""]",597.67,"{\""seasonal\"": \""5%\""}",105399,1,"""Asia""" +2024-02-26,80822,5639,"[\""Laptop\"", \""Charger\""]",224.13,"{\"": \""30%\""}",164505,1,"""Africa""" +2024-01-02,80823,4040,"[\""Headphones\""]",3424.03,"{\"": \""22%\""}",63973,1,"""North America""" +2023-01-11,80824,5614,"[\""Monitor\""]",794.12,"{\""loyalty\"": \""15%\""}",299460,0,"""North America""" +2023-11-07,80825,7940,"[\""Keyboard\"", \""Laptop\""]",423.68,"{\""seasonal\"": \""8%\""}",70235,0,"""Africa""" +2023-06-18,80826,8057,"[\""Monitor\"", \""Charger\""]",3049.25,{},248776,0,"""Asia""" +2023-08-10,80827,5434,"[\""Wireless Mouse\""]",1569.75,"{\""seasonal\"": \""24%\""}",81327,1,"""North America""" +2023-10-22,80828,9257,"[\""Tablet\""]",2855.41,"{\""seasonal\"": \""12%\""}",195121,0,"""Africa""" +2023-06-30,80829,1907,"[\""Monitor\""]",4369.81,"{\""seasonal\"": \""30%\""}",207211,0,"""Europe""" +2023-06-13,80830,3561,"[\""Phone\"", \""Monitor\""]",3346.54,"{\""seasonal\"": \""20%\""}",203811,1,"""Asia""" +2024-07-12,80831,3769,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2675.37,{},128927,1,"""North America""" +2024-01-09,80832,2217,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4541.57,"{\""seasonal\"": \""5%\""}",178142,0,"""Africa""" +2023-03-31,80833,4097,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1611.39,"{\""promo\"": \""22%\""}",285491,0,"""Africa""" +2024-01-22,80834,7958,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",861.2,"{\""seasonal\"": \""7%\""}",113149,0,"""North America""" +2023-04-18,80835,1408,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2200.46,{},123830,0,"""North America""" +2024-04-28,80836,6909,"[\""Phone\"", \""Tablet\""]",4629.26,{},114180,1,"""Europe""" +2023-06-09,80837,2317,"[\""Tablet\""]",2839.37,{},241525,1,"""North America""" +2024-04-22,80838,3948,"[\""Monitor\"", \""Wireless Mouse\""]",2231.45,"{\"": \""7%\""}",83643,0,"""Asia""" +2023-04-02,80839,1056,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1334.44,{},163119,1,"""North America""" +2023-11-09,80840,2926,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2595.25,{},259883,1,"""Europe""" +2024-04-08,80841,1529,"[\""Wireless Mouse\""]",981.31,"{\""promo\"": \""15%\""}",131467,0,"""North America""" +2024-08-19,80842,3121,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2047.7,"{\""seasonal\"": \""17%\""}",50978,1,"""Africa""" +2023-06-17,80843,3232,"[\""Keyboard\"", \""Laptop\""]",1188.1,"{\"": \""10%\""}",5922,0,"""Africa""" +2023-02-11,80844,9625,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3612.98,{},67427,1,"""South America""" +2024-03-28,80845,2153,"[\""Keyboard\""]",1111.83,{},175902,0,"""Europe""" +2023-03-26,80846,4210,"[\""Monitor\""]",1068.12,{},114730,0,"""Europe""" +2023-05-06,80847,8555,"[\""Monitor\""]",1769.11,{},113916,0,"""Asia""" +2023-01-17,80848,6987,"[\""Monitor\"", \""Charger\""]",4869.7,{},137685,1,"""Asia""" +2023-07-30,80849,9610,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1262.06,"{\""seasonal\"": \""23%\""}",80403,0,"""South America""" +2024-08-07,80850,208,"[\""Monitor\""]",3883.68,"{\""seasonal\"": \""10%\""}",106357,0,"""South America""" +2024-10-22,80851,5415,"[\""Phone\"", \""Charger\""]",889.83,{},140735,1,"""Asia""" +2024-06-06,80852,2612,"[\""Keyboard\""]",1226.1,"{\"": \""26%\""}",186734,0,"""Asia""" +2023-04-06,80853,2492,"[\""Charger\""]",4751.96,"{\"": \""12%\""}",255489,0,"""South America""" +2024-04-01,80854,8078,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4768.78,{},114568,0,"""South America""" +2024-11-21,80855,9217,"[\""Phone\"", \""Charger\""]",4447.94,{},158356,1,"""North America""" +2023-05-03,80856,2306,"[\""Monitor\"", \""Phone\""]",4891.78,"{\""seasonal\"": \""26%\""}",41170,0,"""Africa""" +2024-08-07,80857,9978,"[\""Charger\"", \""Wireless Mouse\""]",706.43,"{\""seasonal\"": \""22%\""}",239475,0,"""North America""" +2023-03-04,80858,8443,"[\""Keyboard\""]",3930.29,{},213195,1,"""Asia""" +2023-08-23,80859,3053,"[\""Keyboard\"", \""Phone\""]",2521.85,"{\""promo\"": \""30%\""}",6267,1,"""Asia""" +2024-02-04,80860,4175,"[\""Charger\"", \""Monitor\""]",4259.12,"{\""loyalty\"": \""20%\""}",190657,1,"""North America""" +2023-05-03,80861,5326,"[\""Monitor\""]",2192.49,{},177186,1,"""Europe""" +2023-12-11,80862,8488,"[\""Tablet\"", \""Headphones\""]",4122.14,{},187317,1,"""Asia""" +2024-12-07,80863,7431,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1134.12,"{\""loyalty\"": \""7%\""}",192989,1,"""Africa""" +2024-11-22,80864,2755,"[\""Tablet\"", \""Headphones\""]",3062.94,{},72516,0,"""Africa""" +2023-10-24,80865,2578,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1576.56,"{\"": \""15%\""}",21343,1,"""South America""" +2023-05-01,80866,3266,"[\""Monitor\"", \""Charger\""]",1232.36,{},223802,0,"""Asia""" +2024-12-28,80867,2435,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1561.1,"{\"": \""11%\""}",296823,1,"""North America""" +2024-03-29,80868,6071,"[\""Laptop\"", \""Charger\""]",83.01,{},164420,0,"""South America""" +2023-04-26,80869,8119,"[\""Monitor\""]",2392.87,{},232847,0,"""Africa""" +2024-04-30,80870,2066,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",931.71,{},74699,0,"""Europe""" +2024-04-07,80871,3711,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4117.68,"{\""loyalty\"": \""30%\""}",266635,1,"""Asia""" +2023-10-06,80872,166,"[\""Wireless Mouse\""]",1343.74,{},277784,1,"""Africa""" +2023-05-25,80873,2341,"[\""Charger\"", \""Tablet\""]",1119.47,{},153819,0,"""Asia""" +2024-12-09,80874,3188,"[\""Tablet\""]",923.39,{},25004,1,"""South America""" +2023-04-09,80875,3619,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2671.21,"{\""promo\"": \""7%\""}",41904,0,"""South America""" +2024-11-23,80876,3870,"[\""Charger\"", \""Tablet\""]",2802.67,{},297746,0,"""Africa""" +2024-12-10,80877,3053,"[\""Monitor\"", \""Charger\""]",937.32,"{\""seasonal\"": \""28%\""}",154257,1,"""North America""" +2023-06-09,80878,1667,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",710.18,"{\""loyalty\"": \""12%\""}",202184,1,"""Europe""" +2024-01-14,80879,306,"[\""Phone\"", \""Tablet\""]",2047.8,"{\""seasonal\"": \""9%\""}",26957,0,"""Europe""" +2024-05-24,80880,2072,"[\""Wireless Mouse\"", \""Headphones\""]",581.84,{},138640,1,"""Africa""" +2023-02-08,80881,7618,"[\""Keyboard\"", \""Charger\""]",2942.89,"{\"": \""30%\""}",281004,0,"""Europe""" +2024-11-18,80882,2577,"[\""Tablet\"", \""Phone\""]",4397.94,{},148394,0,"""South America""" +2024-10-31,80883,3367,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4762.66,"{\""seasonal\"": \""14%\""}",200665,0,"""Asia""" +2024-03-05,80884,4555,"[\""Headphones\""]",844.09,"{\""seasonal\"": \""17%\""}",216446,1,"""North America""" +2023-11-30,80885,55,"[\""Monitor\"", \""Wireless Mouse\""]",763.61,"{\""loyalty\"": \""6%\""}",246795,1,"""North America""" +2023-05-31,80886,7661,"[\""Keyboard\"", \""Headphones\""]",1401.64,"{\""seasonal\"": \""26%\""}",47503,1,"""Africa""" +2024-01-26,80887,750,"[\""Wireless Mouse\""]",711.83,{},5805,0,"""North America""" +2024-03-23,80888,1408,"[\""Monitor\""]",3427.85,{},288229,0,"""South America""" +2024-03-29,80889,275,"[\""Wireless Mouse\"", \""Monitor\""]",4923.23,{},118852,0,"""Africa""" +2023-09-19,80890,8427,"[\""Wireless Mouse\""]",3663.49,"{\"": \""28%\""}",207150,0,"""Europe""" +2023-04-06,80891,9297,"[\""Charger\"", \""Phone\""]",4565.4,"{\"": \""16%\""}",85904,1,"""North America""" +2024-02-27,80892,3134,"[\""Tablet\""]",1636.82,"{\""loyalty\"": \""27%\""}",63979,0,"""Europe""" +2024-09-12,80893,9985,"[\""Keyboard\""]",3853.46,"{\"": \""24%\""}",154750,0,"""Europe""" +2023-07-31,80894,1571,"[\""Monitor\""]",4010.38,{},118384,1,"""South America""" +2024-02-28,80895,8213,"[\""Charger\"", \""Headphones\""]",3660.8,{},33818,1,"""North America""" +2023-05-02,80896,7545,"[\""Monitor\""]",1125.71,"{\"": \""22%\""}",90665,0,"""Europe""" +2024-12-20,80897,693,"[\""Keyboard\"", \""Tablet\""]",4367.44,{},196243,0,"""Europe""" +2023-07-26,80898,6522,"[\""Charger\""]",872.39,{},274028,0,"""North America""" +2024-03-30,80899,2143,"[\""Keyboard\""]",3237.71,{},147380,1,"""Asia""" +2023-03-03,80900,1617,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",142.12,{},108568,1,"""Asia""" +2023-03-08,80901,6578,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1212.86,{},89116,1,"""Africa""" +2024-11-20,80902,6182,"[\""Charger\"", \""Keyboard\""]",2307.59,{},209485,0,"""Asia""" +2024-08-14,80903,8237,"[\""Phone\""]",1681.87,"{\""seasonal\"": \""12%\""}",250672,1,"""North America""" +2023-12-27,80904,9189,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3764.61,{},32635,1,"""Europe""" +2024-02-22,80905,3817,"[\""Tablet\"", \""Charger\""]",1411.65,"{\"": \""25%\""}",60326,1,"""Asia""" +2023-10-27,80906,8834,"[\""Phone\"", \""Monitor\""]",4755.6,{},189960,1,"""Europe""" +2024-05-29,80907,4083,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4323.61,{},73743,0,"""South America""" +2024-08-18,80908,1152,"[\""Monitor\""]",2809.3,{},5994,1,"""North America""" +2023-01-26,80909,8988,"[\""Charger\"", \""Monitor\""]",2680.31,{},67497,0,"""South America""" +2024-11-17,80910,1383,"[\""Laptop\"", \""Phone\""]",4623.2,"{\""loyalty\"": \""18%\""}",199757,0,"""Africa""" +2024-04-11,80911,8115,"[\""Phone\"", \""Headphones\""]",3114.5,{},255887,0,"""Africa""" +2024-09-12,80912,5676,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2826.24,{},214982,1,"""Asia""" +2024-01-18,80913,3247,"[\""Headphones\"", \""Tablet\""]",4055.56,"{\""loyalty\"": \""17%\""}",22347,0,"""North America""" +2024-04-04,80914,8954,"[\""Keyboard\""]",3606.98,{},164257,0,"""Africa""" +2024-11-11,80915,3834,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3538.43,{},252646,0,"""South America""" +2024-03-08,80916,27,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2955.67,"{\"": \""28%\""}",131262,1,"""Asia""" +2023-08-27,80917,7106,"[\""Monitor\""]",186.87,{},164825,0,"""Asia""" +2024-10-19,80918,1278,"[\""Monitor\"", \""Tablet\""]",1559.89,{},9112,0,"""South America""" +2023-06-02,80919,9294,"[\""Keyboard\""]",1656.05,"{\""loyalty\"": \""28%\""}",4164,1,"""Asia""" +2023-01-01,80920,7288,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",3663.02,"{\""loyalty\"": \""21%\""}",70355,0,"""Asia""" +2023-11-05,80921,6813,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3785.99,"{\""promo\"": \""28%\""}",26883,1,"""Asia""" +2023-03-26,80922,322,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4978.83,"{\""loyalty\"": \""13%\""}",10787,1,"""South America""" +2023-02-23,80923,7958,"[\""Charger\""]",4980.25,{},71833,1,"""Africa""" +2023-05-28,80924,4141,"[\""Phone\"", \""Tablet\""]",4268.42,{},159734,1,"""North America""" +2024-02-15,80925,5810,"[\""Laptop\"", \""Headphones\""]",4973.35,{},161375,0,"""Europe""" +2024-09-12,80926,7610,"[\""Wireless Mouse\"", \""Charger\""]",903.19,"{\""seasonal\"": \""14%\""}",251258,1,"""South America""" +2024-12-19,80927,1435,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1268.3,"{\""loyalty\"": \""9%\""}",57080,1,"""South America""" +2023-05-09,80928,8134,"[\""Laptop\"", \""Keyboard\""]",125.62,{},276676,1,"""North America""" +2024-10-27,80929,8806,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",971.99,"{\""promo\"": \""16%\""}",104903,1,"""South America""" +2024-03-30,80930,2652,"[\""Wireless Mouse\"", \""Monitor\""]",539.63,"{\"": \""20%\""}",144447,0,"""South America""" +2024-05-06,80931,2130,"[\""Keyboard\"", \""Wireless Mouse\""]",2638.29,{},48438,1,"""Europe""" +2023-03-26,80932,958,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4448.13,"{\""promo\"": \""10%\""}",126229,1,"""Africa""" +2024-09-03,80933,6845,"[\""Headphones\"", \""Wireless Mouse\""]",1999.71,{},97343,1,"""Europe""" +2023-04-13,80934,6302,"[\""Wireless Mouse\""]",2553.01,{},99489,1,"""Asia""" +2023-07-02,80935,5623,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",687.15,"{\""seasonal\"": \""23%\""}",193948,0,"""Europe""" +2024-03-26,80936,252,"[\""Monitor\""]",4156.25,{},99575,0,"""Asia""" +2024-05-07,80937,9772,"[\""Keyboard\""]",1320.52,{},151810,1,"""South America""" +2023-02-22,80938,7346,"[\""Charger\""]",2328.4,{},196155,0,"""Europe""" +2024-08-09,80939,212,"[\""Monitor\"", \""Keyboard\""]",2227.3,{},214681,1,"""North America""" +2024-05-15,80940,9419,"[\""Laptop\"", \""Charger\""]",3113.45,"{\""loyalty\"": \""6%\""}",146707,0,"""Africa""" +2024-09-30,80941,1371,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4758.12,"{\""loyalty\"": \""10%\""}",162170,1,"""Africa""" +2024-11-12,80942,4311,"[\""Tablet\""]",2352.6,"{\""loyalty\"": \""18%\""}",67053,1,"""Africa""" +2023-01-04,80943,3213,"[\""Tablet\""]",1634.31,{},2038,1,"""North America""" +2024-08-29,80944,8780,"[\""Phone\"", \""Tablet\""]",1850.38,{},95233,0,"""Europe""" +2023-02-05,80945,8780,"[\""Monitor\""]",2014.02,"{\""promo\"": \""6%\""}",166443,1,"""Africa""" +2024-12-28,80946,9656,"[\""Tablet\""]",2650.73,{},165903,1,"""Europe""" +2024-12-20,80947,4270,"[\""Keyboard\""]",1848.03,{},150839,0,"""Asia""" +2024-08-01,80948,3108,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1534.93,"{\""loyalty\"": \""21%\""}",299628,1,"""Europe""" +2023-03-21,80949,9639,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4472.74,{},105271,0,"""South America""" +2024-05-11,80950,7906,"[\""Wireless Mouse\""]",3938.47,{},37466,1,"""North America""" +2023-01-23,80951,6844,"[\""Headphones\""]",4612.02,{},14143,1,"""Africa""" +2023-09-22,80952,635,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4930.06,{},266425,0,"""Europe""" +2024-05-11,80953,9527,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1616.44,{},96663,1,"""North America""" +2024-09-24,80954,9279,"[\""Keyboard\"", \""Charger\""]",1800.89,{},66475,0,"""Africa""" +2023-02-17,80955,8513,"[\""Tablet\"", \""Phone\""]",2515.49,"{\""promo\"": \""7%\""}",72030,0,"""South America""" +2024-02-23,80956,7776,"[\""Phone\""]",3230.41,{},187688,1,"""Asia""" +2023-05-15,80957,4287,"[\""Keyboard\""]",3132.79,"{\""seasonal\"": \""13%\""}",5947,0,"""Africa""" +2024-01-15,80958,4451,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4221.04,{},189054,1,"""North America""" +2024-02-01,80959,9493,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4931.18,{},284892,1,"""North America""" +2024-06-27,80960,2489,"[\""Phone\""]",2315.24,{},91311,1,"""Asia""" +2023-12-12,80961,4038,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",819.39,{},253996,0,"""South America""" +2023-07-23,80962,2320,"[\""Charger\"", \""Wireless Mouse\""]",1594.79,"{\""loyalty\"": \""11%\""}",182784,0,"""Asia""" +2024-03-06,80963,6232,"[\""Laptop\""]",2864.87,"{\"": \""12%\""}",105010,1,"""Europe""" +2024-11-03,80964,5228,"[\""Wireless Mouse\"", \""Laptop\""]",2768.45,{},111294,1,"""Europe""" +2023-02-04,80965,7197,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1084.81,{},131904,0,"""Africa""" +2024-04-21,80966,2581,"[\""Laptop\""]",2663.02,{},74973,1,"""South America""" +2024-02-10,80967,1885,"[\""Wireless Mouse\"", \""Tablet\""]",1463.52,{},99187,1,"""South America""" +2023-05-10,80968,8013,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1176.69,{},35763,0,"""Africa""" +2024-09-27,80969,2335,"[\""Wireless Mouse\"", \""Monitor\""]",4216.98,{},244469,1,"""South America""" +2024-05-19,80970,106,"[\""Monitor\"", \""Tablet\""]",4740.13,"{\""seasonal\"": \""11%\""}",120157,0,"""Asia""" +2023-05-18,80971,5513,"[\""Keyboard\"", \""Tablet\""]",1030.85,"{\""seasonal\"": \""10%\""}",289746,1,"""South America""" +2023-09-01,80972,4137,"[\""Keyboard\"", \""Phone\""]",3852.6,"{\""promo\"": \""13%\""}",6190,0,"""Europe""" +2024-10-19,80973,5980,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4797.91,"{\""promo\"": \""21%\""}",30014,1,"""North America""" +2023-08-08,80974,2535,"[\""Headphones\"", \""Wireless Mouse\""]",1790.66,{},193361,1,"""North America""" +2023-10-29,80975,5782,"[\""Headphones\""]",3883.79,"{\""seasonal\"": \""9%\""}",36435,0,"""Europe""" +2024-06-27,80976,4498,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1931.0,{},258715,1,"""Africa""" +2024-03-10,80977,355,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",125.4,"{\"": \""20%\""}",207918,0,"""South America""" +2023-01-18,80978,1177,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4288.61,{},10238,0,"""Africa""" +2023-11-05,80979,4508,"[\""Headphones\""]",3583.39,"{\""seasonal\"": \""30%\""}",3921,1,"""North America""" +2023-11-01,80980,8591,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1155.76,"{\""seasonal\"": \""10%\""}",111450,0,"""Asia""" +2023-10-24,80981,3635,"[\""Phone\"", \""Wireless Mouse\""]",424.54,"{\""promo\"": \""29%\""}",150732,0,"""Europe""" +2023-08-29,80982,7771,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3046.04,{},291545,0,"""South America""" +2024-12-09,80983,5672,"[\""Headphones\"", \""Tablet\""]",3167.87,{},242325,1,"""North America""" +2023-08-03,80984,4232,"[\""Headphones\"", \""Phone\""]",3623.09,"{\""loyalty\"": \""28%\""}",172922,0,"""South America""" +2023-04-07,80985,287,"[\""Wireless Mouse\""]",2056.52,{},240562,0,"""South America""" +2024-07-22,80986,6876,"[\""Charger\""]",3038.14,{},128683,1,"""South America""" +2023-04-25,80987,9967,"[\""Tablet\""]",4728.5,{},192853,0,"""Africa""" +2023-06-14,80988,5597,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3908.67,"{\"": \""10%\""}",140514,0,"""North America""" +2024-10-17,80989,992,"[\""Tablet\""]",809.71,{},254785,1,"""South America""" +2024-12-29,80990,4629,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2206.96,{},257763,0,"""Europe""" +2024-09-08,80991,6675,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4364.6,{},134133,1,"""North America""" +2024-10-11,80992,5545,"[\""Phone\"", \""Keyboard\""]",3901.04,{},26771,1,"""North America""" +2024-04-02,80993,3765,"[\""Wireless Mouse\"", \""Headphones\""]",1090.92,{},222610,1,"""Africa""" +2024-12-27,80994,315,"[\""Laptop\"", \""Wireless Mouse\""]",4290.15,"{\""seasonal\"": \""11%\""}",250077,1,"""South America""" +2024-03-19,80995,8991,"[\""Tablet\"", \""Laptop\""]",2220.26,"{\"": \""17%\""}",69267,0,"""Asia""" +2023-02-27,80996,7296,"[\""Monitor\""]",2596.77,"{\""seasonal\"": \""27%\""}",57028,1,"""Africa""" +2023-09-16,80997,8612,"[\""Charger\""]",2816.77,"{\"": \""20%\""}",294572,0,"""Europe""" +2023-07-06,80998,3298,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1630.97,{},191321,1,"""Asia""" +2024-08-02,80999,6266,"[\""Keyboard\"", \""Monitor\""]",152.63,"{\""seasonal\"": \""23%\""}",18615,0,"""South America""" +2024-09-04,81000,2708,"[\""Phone\"", \""Laptop\""]",1509.3,"{\""loyalty\"": \""12%\""}",197769,0,"""South America""" +2024-07-01,81001,5345,"[\""Wireless Mouse\"", \""Monitor\""]",3370.09,"{\""seasonal\"": \""27%\""}",275018,1,"""Europe""" +2024-12-24,81002,2491,"[\""Tablet\""]",4761.35,{},267003,0,"""South America""" +2024-03-24,81003,7688,"[\""Keyboard\"", \""Charger\""]",1357.51,{},87663,0,"""Asia""" +2024-04-29,81004,8711,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2070.96,{},229099,0,"""Europe""" +2024-08-16,81005,416,"[\""Headphones\"", \""Laptop\""]",1205.64,"{\""promo\"": \""22%\""}",268160,1,"""South America""" +2024-05-31,81006,8564,"[\""Headphones\""]",3845.98,"{\""loyalty\"": \""21%\""}",259612,0,"""South America""" +2024-05-21,81007,764,"[\""Phone\"", \""Tablet\""]",803.06,{},125634,0,"""North America""" +2024-04-09,81008,8751,"[\""Laptop\"", \""Charger\""]",114.83,{},154101,1,"""South America""" +2023-11-28,81009,7690,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2831.7,{},12709,1,"""South America""" +2024-10-21,81010,7255,"[\""Monitor\"", \""Wireless Mouse\""]",830.0,{},276381,1,"""North America""" +2024-12-04,81011,9676,"[\""Charger\""]",1152.52,"{\""loyalty\"": \""9%\""}",293663,0,"""South America""" +2024-04-19,81012,3780,"[\""Headphones\""]",331.12,"{\""promo\"": \""18%\""}",152471,0,"""South America""" +2024-04-26,81013,1825,"[\""Keyboard\"", \""Wireless Mouse\""]",1672.8,"{\""promo\"": \""29%\""}",163956,1,"""Africa""" +2024-08-29,81014,6595,"[\""Charger\"", \""Headphones\""]",4115.18,"{\""loyalty\"": \""17%\""}",28019,0,"""North America""" +2024-10-17,81015,1527,"[\""Headphones\""]",1130.28,"{\""loyalty\"": \""16%\""}",42259,0,"""Africa""" +2023-11-04,81016,6798,"[\""Laptop\""]",131.93,"{\""loyalty\"": \""22%\""}",188739,1,"""North America""" +2023-07-07,81017,8691,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3605.71,{},112955,0,"""Asia""" +2023-11-05,81018,9739,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",707.58,"{\""loyalty\"": \""8%\""}",109852,1,"""Europe""" +2023-07-21,81019,5731,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4220.24,{},59198,1,"""Europe""" +2023-12-17,81020,8793,"[\""Laptop\"", \""Headphones\""]",2185.38,{},68831,1,"""Asia""" +2023-05-02,81021,9132,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3829.36,{},32599,0,"""North America""" +2024-09-12,81022,6435,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1011.85,"{\""seasonal\"": \""8%\""}",270761,1,"""South America""" +2023-05-31,81023,3160,"[\""Keyboard\""]",2122.73,"{\""seasonal\"": \""25%\""}",93118,0,"""Europe""" +2023-03-23,81024,7195,"[\""Phone\""]",4574.65,"{\""loyalty\"": \""22%\""}",93585,1,"""Asia""" +2023-12-03,81025,7843,"[\""Headphones\"", \""Charger\""]",1424.76,"{\""seasonal\"": \""6%\""}",35621,0,"""Africa""" +2023-06-05,81026,2493,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3660.52,{},29921,0,"""Asia""" +2024-11-30,81027,3854,"[\""Laptop\""]",654.12,"{\"": \""16%\""}",225547,1,"""Asia""" +2024-06-06,81028,4246,"[\""Headphones\"", \""Phone\""]",3867.63,"{\""seasonal\"": \""19%\""}",118395,1,"""South America""" +2024-04-09,81029,7260,"[\""Wireless Mouse\""]",2357.67,"{\""seasonal\"": \""17%\""}",205034,0,"""Europe""" +2023-06-16,81030,9589,"[\""Phone\""]",584.89,{},115614,0,"""North America""" +2024-12-09,81031,2653,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3250.11,{},263981,0,"""North America""" +2024-12-16,81032,9171,"[\""Keyboard\""]",699.74,"{\""loyalty\"": \""10%\""}",21726,0,"""Europe""" +2024-07-17,81033,985,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3729.16,{},124561,1,"""Asia""" +2023-05-25,81034,8287,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4812.16,{},55174,0,"""South America""" +2023-09-24,81035,4436,"[\""Phone\""]",425.72,{},107773,0,"""South America""" +2024-07-18,81036,6188,"[\""Charger\""]",1625.61,{},136015,0,"""Africa""" +2023-05-04,81037,2061,"[\""Laptop\""]",2503.7,{},250912,0,"""North America""" +2024-10-21,81038,4177,"[\""Headphones\"", \""Phone\""]",2548.22,"{\"": \""25%\""}",18206,0,"""South America""" +2024-08-27,81039,7399,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4456.82,{},140220,0,"""South America""" +2024-04-11,81040,1415,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3434.19,{},200655,1,"""South America""" +2023-04-28,81041,9062,"[\""Tablet\"", \""Phone\""]",3543.83,{},184385,1,"""Asia""" +2023-08-04,81042,9615,"[\""Keyboard\""]",3110.22,{},75402,0,"""North America""" +2024-09-05,81043,6935,"[\""Tablet\""]",2403.97,"{\""seasonal\"": \""30%\""}",278403,1,"""Europe""" +2023-03-30,81044,8367,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2781.39,"{\""seasonal\"": \""19%\""}",64591,1,"""Africa""" +2024-04-21,81045,5285,"[\""Monitor\""]",764.96,{},167517,0,"""North America""" +2023-07-18,81046,6283,"[\""Headphones\""]",2599.4,{},224130,0,"""Europe""" +2023-07-13,81047,3471,"[\""Laptop\""]",3741.88,"{\""loyalty\"": \""5%\""}",157256,1,"""Africa""" +2023-04-07,81048,1477,"[\""Headphones\"", \""Phone\""]",1403.22,{},69782,0,"""Europe""" +2023-05-05,81049,6559,"[\""Wireless Mouse\"", \""Headphones\""]",2213.91,{},252858,0,"""North America""" +2024-12-14,81050,8,"[\""Keyboard\""]",1059.97,{},234398,1,"""Europe""" +2023-05-02,81051,3735,"[\""Keyboard\""]",2335.09,"{\"": \""13%\""}",109882,0,"""Asia""" +2024-05-19,81052,3331,"[\""Tablet\"", \""Laptop\""]",1509.24,"{\""seasonal\"": \""11%\""}",275388,1,"""South America""" +2023-09-19,81053,9042,"[\""Wireless Mouse\"", \""Phone\""]",522.89,"{\""seasonal\"": \""8%\""}",67705,1,"""Asia""" +2023-03-10,81054,6116,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4881.58,{},115827,0,"""Europe""" +2023-05-26,81055,5037,"[\""Monitor\""]",743.4,"{\"": \""22%\""}",286148,0,"""Africa""" +2024-12-14,81056,8328,"[\""Monitor\""]",4189.35,"{\""seasonal\"": \""8%\""}",90028,0,"""Europe""" +2023-06-22,81057,7827,"[\""Keyboard\"", \""Charger\""]",2531.29,{},265762,0,"""Asia""" +2024-03-19,81058,2866,"[\""Wireless Mouse\"", \""Tablet\""]",4273.49,"{\""seasonal\"": \""21%\""}",136540,1,"""Africa""" +2024-07-02,81059,6165,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4320.42,{},237961,1,"""South America""" +2023-04-09,81060,6927,"[\""Headphones\""]",66.36,{},146792,1,"""Africa""" +2023-02-21,81061,1560,"[\""Laptop\""]",4913.12,{},117649,0,"""South America""" +2024-07-12,81062,2908,"[\""Wireless Mouse\""]",4849.87,"{\""seasonal\"": \""27%\""}",242737,1,"""Europe""" +2023-06-02,81063,9291,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2976.21,{},85732,0,"""South America""" +2024-01-10,81064,5987,"[\""Laptop\"", \""Tablet\""]",1843.78,"{\""promo\"": \""28%\""}",67433,0,"""Europe""" +2024-08-24,81065,1289,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1298.88,{},52560,1,"""South America""" +2023-01-17,81066,1645,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2111.25,{},105180,1,"""North America""" +2024-03-28,81067,8616,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4797.56,"{\"": \""12%\""}",97357,0,"""North America""" +2024-06-30,81068,5727,"[\""Laptop\"", \""Monitor\""]",2211.43,{},153049,1,"""Africa""" +2023-11-17,81069,1260,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",544.44,"{\"": \""22%\""}",90629,0,"""Africa""" +2024-05-19,81070,2244,"[\""Keyboard\""]",2952.18,{},166228,0,"""Africa""" +2024-05-24,81071,2790,"[\""Wireless Mouse\"", \""Keyboard\""]",3205.3,"{\""promo\"": \""10%\""}",89066,0,"""South America""" +2023-08-16,81072,6354,"[\""Wireless Mouse\""]",3153.11,"{\""seasonal\"": \""29%\""}",159520,1,"""Africa""" +2024-03-29,81073,7184,"[\""Monitor\"", \""Headphones\""]",854.47,"{\""promo\"": \""29%\""}",250170,1,"""Asia""" +2024-05-03,81074,6950,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1321.5,{},193550,0,"""Asia""" +2023-05-21,81075,7988,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3750.49,{},287055,1,"""Africa""" +2024-05-18,81076,485,"[\""Phone\"", \""Monitor\"", \""Charger\""]",638.03,"{\""loyalty\"": \""28%\""}",277576,1,"""Europe""" +2023-12-15,81077,1110,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1557.4,{},109687,1,"""Asia""" +2024-10-07,81078,6383,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",471.97,{},33848,0,"""Europe""" +2024-11-06,81079,3053,"[\""Keyboard\""]",3187.56,"{\""loyalty\"": \""5%\""}",266215,0,"""Africa""" +2024-04-30,81080,4609,"[\""Charger\"", \""Wireless Mouse\""]",1771.82,{},181641,1,"""Europe""" +2023-08-02,81081,9020,"[\""Laptop\"", \""Monitor\""]",4421.36,{},49779,0,"""Europe""" +2024-12-26,81082,8428,"[\""Laptop\""]",3002.03,"{\""loyalty\"": \""16%\""}",30457,0,"""Europe""" +2023-09-03,81083,2741,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3046.33,{},205031,1,"""Europe""" +2024-04-13,81084,2326,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1192.13,"{\""seasonal\"": \""24%\""}",203208,1,"""Africa""" +2023-06-10,81085,1353,"[\""Wireless Mouse\"", \""Phone\""]",3430.66,"{\""loyalty\"": \""27%\""}",76713,0,"""North America""" +2024-01-08,81086,5638,"[\""Wireless Mouse\""]",2677.41,"{\"": \""6%\""}",47091,1,"""Europe""" +2024-07-14,81087,5768,"[\""Monitor\"", \""Charger\""]",1663.19,"{\"": \""30%\""}",173591,1,"""Asia""" +2024-04-14,81088,2736,"[\""Headphones\"", \""Laptop\""]",1868.14,"{\""promo\"": \""7%\""}",281750,1,"""Africa""" +2024-03-07,81089,5542,"[\""Tablet\""]",2870.59,"{\""loyalty\"": \""21%\""}",260970,1,"""Africa""" +2023-06-29,81090,6616,"[\""Phone\"", \""Tablet\""]",4954.46,{},51179,1,"""Asia""" +2024-03-30,81091,2520,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",3573.64,{},25934,0,"""Africa""" +2024-06-12,81092,8683,"[\""Tablet\""]",4388.47,{},228938,1,"""Africa""" +2023-08-20,81093,358,"[\""Charger\"", \""Monitor\""]",738.01,"{\""loyalty\"": \""26%\""}",241949,1,"""North America""" +2023-12-13,81094,7611,"[\""Tablet\"", \""Charger\""]",437.68,"{\""loyalty\"": \""21%\""}",245503,1,"""Asia""" +2024-06-25,81095,4982,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3930.9,{},289238,1,"""South America""" +2023-02-24,81096,5386,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1419.3,"{\""promo\"": \""12%\""}",197903,0,"""North America""" +2024-07-13,81097,7110,"[\""Monitor\""]",1203.63,"{\"": \""7%\""}",191052,1,"""Asia""" +2023-11-04,81098,2944,"[\""Tablet\""]",1500.58,{},11540,1,"""Africa""" +2023-11-29,81099,1852,"[\""Charger\""]",2057.33,{},72031,1,"""North America""" +2024-10-05,81100,908,"[\""Tablet\""]",1738.73,{},65661,1,"""Asia""" +2024-08-25,81101,5622,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4599.78,{},10627,1,"""North America""" +2023-05-08,81102,9440,"[\""Monitor\""]",4873.95,"{\""seasonal\"": \""19%\""}",214823,0,"""South America""" +2023-02-19,81103,8826,"[\""Tablet\"", \""Phone\""]",709.47,{},115130,0,"""Asia""" +2024-06-30,81104,1001,"[\""Headphones\"", \""Monitor\""]",1955.5,{},181256,0,"""Europe""" +2023-10-07,81105,1879,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",652.95,"{\""loyalty\"": \""14%\""}",100836,1,"""Europe""" +2023-09-27,81106,2858,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4023.51,{},196326,1,"""Asia""" +2024-07-30,81107,905,"[\""Wireless Mouse\"", \""Charger\""]",219.51,"{\""loyalty\"": \""9%\""}",6623,0,"""Africa""" +2024-11-25,81108,1020,"[\""Phone\""]",4864.21,"{\""promo\"": \""11%\""}",245574,0,"""South America""" +2024-08-10,81109,372,"[\""Headphones\""]",4252.69,{},286985,0,"""Europe""" +2023-04-06,81110,3695,"[\""Tablet\"", \""Laptop\""]",1204.74,{},189308,1,"""North America""" +2023-01-12,81111,8134,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",258.67,{},56809,0,"""Africa""" +2024-06-22,81112,3686,"[\""Headphones\"", \""Keyboard\""]",3944.67,{},272703,1,"""South America""" +2024-08-10,81113,3163,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4164.37,"{\"": \""10%\""}",60722,1,"""Africa""" +2024-11-06,81114,2696,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4585.85,{},9033,0,"""Africa""" +2024-01-31,81115,7487,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",590.34,{},59283,0,"""Africa""" +2023-07-23,81116,6206,"[\""Tablet\"", \""Headphones\""]",2357.69,{},280846,0,"""Asia""" +2024-09-12,81117,1361,"[\""Tablet\""]",407.35,"{\""loyalty\"": \""9%\""}",155742,1,"""Europe""" +2024-08-20,81118,7857,"[\""Keyboard\"", \""Monitor\""]",735.94,"{\""loyalty\"": \""14%\""}",49646,1,"""Asia""" +2024-08-30,81119,5763,"[\""Wireless Mouse\"", \""Monitor\""]",1843.81,"{\""promo\"": \""19%\""}",181060,0,"""South America""" +2023-07-02,81120,4981,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1106.66,{},119367,0,"""South America""" +2023-09-23,81121,4266,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",935.12,{},194024,0,"""Africa""" +2024-01-21,81122,9628,"[\""Charger\"", \""Keyboard\""]",1333.0,{},97233,1,"""South America""" +2023-10-04,81123,9848,"[\""Charger\"", \""Laptop\""]",4045.37,"{\""seasonal\"": \""14%\""}",8634,0,"""Europe""" +2023-01-24,81124,1963,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4932.37,"{\""loyalty\"": \""22%\""}",264849,0,"""Africa""" +2024-08-21,81125,6186,"[\""Wireless Mouse\"", \""Keyboard\""]",2296.59,{},186207,0,"""South America""" +2023-07-28,81126,4960,"[\""Charger\"", \""Monitor\""]",1123.8,"{\""promo\"": \""25%\""}",137127,0,"""Asia""" +2023-05-14,81127,1,"[\""Monitor\"", \""Tablet\""]",4852.53,"{\""promo\"": \""25%\""}",149383,1,"""Europe""" +2023-04-07,81128,9730,"[\""Tablet\""]",4966.1,{},214082,0,"""Africa""" +2024-04-23,81129,6523,"[\""Monitor\""]",1238.21,"{\""loyalty\"": \""14%\""}",249283,1,"""North America""" +2024-02-06,81130,2053,"[\""Phone\"", \""Laptop\""]",2680.9,{},157472,1,"""Africa""" +2024-10-09,81131,6430,"[\""Wireless Mouse\""]",1305.28,"{\""promo\"": \""18%\""}",40980,1,"""North America""" +2023-11-23,81132,1589,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4778.72,"{\"": \""18%\""}",3517,0,"""North America""" +2023-10-29,81133,4829,"[\""Charger\""]",3945.39,{},63725,1,"""South America""" +2024-03-28,81134,437,"[\""Monitor\"", \""Phone\""]",4308.01,{},289911,0,"""Europe""" +2024-01-06,81135,9729,"[\""Keyboard\"", \""Wireless Mouse\""]",2132.09,{},245006,0,"""Africa""" +2024-06-09,81136,8936,"[\""Keyboard\""]",113.82,"{\"": \""20%\""}",66125,1,"""South America""" +2023-01-23,81137,8615,"[\""Laptop\""]",944.74,{},217554,0,"""Europe""" +2023-11-11,81138,462,"[\""Headphones\""]",4236.28,{},254507,0,"""Asia""" +2024-01-06,81139,3967,"[\""Laptop\"", \""Charger\""]",4283.25,{},241729,0,"""Asia""" +2023-01-14,81140,4790,"[\""Monitor\""]",2872.97,"{\"": \""27%\""}",142033,0,"""Europe""" +2023-05-25,81141,3602,"[\""Monitor\""]",854.5,"{\"": \""27%\""}",56986,0,"""Europe""" +2024-11-01,81142,7435,"[\""Charger\""]",1524.99,"{\""promo\"": \""6%\""}",298129,0,"""Asia""" +2024-10-15,81143,3954,"[\""Phone\"", \""Headphones\""]",4279.26,{},244398,1,"""North America""" +2024-09-20,81144,9631,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3490.86,"{\"": \""9%\""}",169677,0,"""Europe""" +2023-09-21,81145,2213,"[\""Wireless Mouse\"", \""Keyboard\""]",843.48,{},145352,1,"""North America""" +2023-02-16,81146,9972,"[\""Wireless Mouse\""]",2445.56,{},154585,0,"""Africa""" +2023-12-13,81147,5718,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3802.71,"{\"": \""11%\""}",38807,0,"""Africa""" +2024-08-27,81148,4358,"[\""Keyboard\""]",2210.46,{},36368,1,"""North America""" +2023-07-08,81149,221,"[\""Monitor\"", \""Charger\""]",4809.18,{},37730,0,"""Asia""" +2024-12-31,81150,6659,"[\""Charger\"", \""Keyboard\""]",1100.88,"{\""seasonal\"": \""22%\""}",211193,0,"""Africa""" +2024-10-24,81151,9040,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4728.09,{},152560,0,"""North America""" +2023-09-22,81152,9527,"[\""Monitor\""]",3401.81,{},163156,0,"""Europe""" +2024-05-19,81153,7000,"[\""Phone\""]",3025.52,{},257837,1,"""Europe""" +2024-12-19,81154,3931,"[\""Tablet\"", \""Headphones\""]",4622.54,{},33947,0,"""Europe""" +2024-12-25,81155,633,"[\""Headphones\""]",1553.21,{},249946,1,"""North America""" +2024-03-31,81156,3831,"[\""Tablet\"", \""Wireless Mouse\""]",2294.47,{},23922,0,"""Africa""" +2024-08-15,81157,9921,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3757.91,"{\""loyalty\"": \""11%\""}",202651,0,"""Asia""" +2023-01-18,81158,2653,"[\""Monitor\""]",4937.15,{},69145,0,"""Europe""" +2024-05-27,81159,1289,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2437.6,"{\""seasonal\"": \""10%\""}",204734,1,"""South America""" +2024-07-10,81160,5008,"[\""Laptop\""]",4223.62,{},193019,1,"""Africa""" +2024-07-08,81161,7001,"[\""Keyboard\""]",1681.73,{},246437,0,"""Asia""" +2024-07-07,81162,7512,"[\""Monitor\""]",4020.53,{},162604,1,"""North America""" +2024-06-19,81163,263,"[\""Tablet\"", \""Monitor\""]",2244.57,{},188110,0,"""Africa""" +2024-01-19,81164,2513,"[\""Wireless Mouse\"", \""Charger\""]",1400.36,{},237741,0,"""North America""" +2024-01-30,81165,706,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3519.69,{},99183,1,"""Africa""" +2023-05-06,81166,109,"[\""Headphones\"", \""Charger\""]",3649.78,"{\""loyalty\"": \""15%\""}",136128,1,"""Europe""" +2023-08-02,81167,8109,"[\""Tablet\"", \""Phone\""]",186.85,{},263283,0,"""South America""" +2024-06-09,81168,3607,"[\""Headphones\"", \""Wireless Mouse\""]",4399.12,"{\""loyalty\"": \""25%\""}",270695,1,"""South America""" +2024-06-15,81169,8230,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4459.62,{},230290,0,"""South America""" +2024-01-29,81170,9137,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2279.32,{},227339,0,"""South America""" +2024-03-08,81171,8984,"[\""Phone\""]",1689.03,{},33854,0,"""North America""" +2023-06-26,81172,2192,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2666.7,{},255624,0,"""Asia""" +2024-09-26,81173,3867,"[\""Phone\"", \""Monitor\""]",3819.99,{},188989,0,"""North America""" +2023-06-21,81174,3004,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",4042.02,"{\""promo\"": \""9%\""}",233311,1,"""South America""" +2023-12-26,81175,6120,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",612.18,{},62717,0,"""North America""" +2023-04-25,81176,1317,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1336.49,{},88634,0,"""Europe""" +2023-09-12,81177,1892,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1556.56,"{\""loyalty\"": \""24%\""}",187933,0,"""North America""" +2024-06-29,81178,248,"[\""Charger\"", \""Wireless Mouse\""]",3894.1,{},61202,1,"""Europe""" +2023-01-06,81179,4658,"[\""Headphones\"", \""Tablet\""]",4229.7,"{\""loyalty\"": \""13%\""}",248164,1,"""Africa""" +2023-03-11,81180,8672,"[\""Phone\""]",1372.63,"{\""seasonal\"": \""6%\""}",260850,0,"""North America""" +2024-08-22,81181,8965,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",190.79,"{\""seasonal\"": \""18%\""}",233004,0,"""Europe""" +2024-05-03,81182,4340,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2893.48,{},70512,0,"""Asia""" +2023-12-18,81183,380,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1813.24,{},222783,0,"""Africa""" +2023-01-20,81184,3283,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3066.94,"{\""seasonal\"": \""18%\""}",259900,0,"""South America""" +2024-01-19,81185,7247,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1449.41,"{\""promo\"": \""19%\""}",269443,1,"""North America""" +2024-06-21,81186,8129,"[\""Tablet\""]",4361.77,{},183496,1,"""South America""" +2023-10-23,81187,8165,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4998.31,"{\""promo\"": \""12%\""}",105305,0,"""Europe""" +2023-05-29,81188,8549,"[\""Wireless Mouse\"", \""Keyboard\""]",4458.97,"{\""promo\"": \""13%\""}",124441,1,"""Africa""" +2024-04-19,81189,6541,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3176.43,"{\""seasonal\"": \""10%\""}",132817,1,"""South America""" +2024-03-07,81190,3536,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2606.67,{},184778,1,"""Africa""" +2023-07-31,81191,6572,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",993.3,"{\""loyalty\"": \""5%\""}",271539,1,"""South America""" +2024-08-24,81192,3577,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",496.47,"{\"": \""30%\""}",201520,0,"""Africa""" +2023-03-05,81193,9094,"[\""Wireless Mouse\"", \""Phone\""]",3471.35,{},135577,0,"""North America""" +2024-01-29,81194,2702,"[\""Laptop\""]",4391.6,"{\""loyalty\"": \""24%\""}",251788,1,"""Africa""" +2023-06-02,81195,5475,"[\""Keyboard\"", \""Laptop\""]",828.8,"{\""seasonal\"": \""21%\""}",39025,1,"""South America""" +2024-12-06,81196,6268,"[\""Phone\"", \""Monitor\""]",1545.95,{},52330,0,"""North America""" +2023-02-11,81197,7926,"[\""Wireless Mouse\""]",2877.36,"{\"": \""15%\""}",136146,1,"""North America""" +2024-08-11,81198,2305,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2938.16,{},201943,1,"""North America""" +2023-01-03,81199,7155,"[\""Monitor\""]",2386.48,"{\""loyalty\"": \""29%\""}",238362,0,"""North America""" +2024-03-18,81200,1677,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4272.91,"{\""loyalty\"": \""30%\""}",189419,0,"""Africa""" +2023-07-16,81201,452,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1772.17,{},251528,1,"""Africa""" +2023-12-25,81202,8449,"[\""Wireless Mouse\"", \""Laptop\""]",3123.14,{},146060,0,"""Asia""" +2024-06-20,81203,8439,"[\""Tablet\""]",90.65,{},55798,0,"""North America""" +2024-04-24,81204,3431,"[\""Phone\"", \""Laptop\""]",383.08,"{\""loyalty\"": \""14%\""}",123188,1,"""Africa""" +2024-01-07,81205,5916,"[\""Monitor\"", \""Headphones\""]",3954.53,"{\""loyalty\"": \""12%\""}",159909,1,"""North America""" +2023-04-10,81206,3149,"[\""Charger\"", \""Headphones\""]",689.09,{},78521,1,"""Africa""" +2023-07-17,81207,6826,"[\""Laptop\""]",1641.41,{},86102,0,"""North America""" +2023-05-07,81208,3053,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2003.56,"{\""seasonal\"": \""25%\""}",96780,1,"""Africa""" +2023-06-08,81209,9982,"[\""Wireless Mouse\""]",3847.78,"{\""seasonal\"": \""29%\""}",78013,1,"""Asia""" +2024-06-30,81210,162,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1240.83,{},59857,0,"""South America""" +2024-01-27,81211,5136,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",373.0,{},169602,1,"""North America""" +2023-03-04,81212,1626,"[\""Monitor\"", \""Phone\""]",4417.06,"{\""promo\"": \""17%\""}",182217,0,"""Europe""" +2023-07-09,81213,7761,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4640.88,{},17006,0,"""Africa""" +2024-10-11,81214,9028,"[\""Laptop\"", \""Wireless Mouse\""]",3708.25,"{\"": \""18%\""}",271949,0,"""Europe""" +2023-11-04,81215,7463,"[\""Phone\"", \""Tablet\""]",2579.27,{},58928,1,"""Africa""" +2023-07-08,81216,9382,"[\""Headphones\""]",2861.46,"{\""seasonal\"": \""24%\""}",291305,1,"""Africa""" +2023-12-22,81217,647,"[\""Phone\"", \""Wireless Mouse\""]",2248.26,"{\""promo\"": \""24%\""}",145291,0,"""Asia""" +2024-11-01,81218,2863,"[\""Charger\""]",1048.95,"{\""promo\"": \""15%\""}",268184,1,"""Africa""" +2023-07-05,81219,3606,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3421.5,{},133707,1,"""Asia""" +2024-01-09,81220,6628,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2088.07,{},136022,1,"""South America""" +2023-01-17,81221,35,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",605.45,"{\"": \""24%\""}",188448,1,"""Africa""" +2023-03-05,81222,7911,"[\""Phone\"", \""Charger\""]",2762.81,"{\""promo\"": \""26%\""}",184730,0,"""North America""" +2023-11-29,81223,9340,"[\""Charger\"", \""Tablet\""]",4233.48,{},45677,1,"""Asia""" +2024-07-27,81224,4089,"[\""Keyboard\""]",73.14,{},285483,0,"""Europe""" +2023-12-30,81225,551,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",328.1,{},167723,0,"""Europe""" +2023-02-10,81226,6715,"[\""Phone\"", \""Laptop\""]",4879.55,{},178281,1,"""Asia""" +2023-07-05,81227,2680,"[\""Laptop\"", \""Charger\""]",2345.76,"{\""loyalty\"": \""12%\""}",266138,0,"""Europe""" +2024-06-13,81228,6596,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",819.17,{},241229,1,"""Asia""" +2023-04-24,81229,1948,"[\""Headphones\""]",242.4,{},6338,0,"""South America""" +2023-06-14,81230,2406,"[\""Headphones\"", \""Monitor\""]",3529.35,{},237257,0,"""Europe""" +2023-04-29,81231,6382,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1647.75,{},149610,1,"""Europe""" +2023-12-26,81232,6130,"[\""Charger\"", \""Laptop\""]",3458.06,{},78842,0,"""Asia""" +2024-06-19,81233,7737,"[\""Wireless Mouse\"", \""Tablet\""]",4550.35,"{\""promo\"": \""25%\""}",132099,0,"""South America""" +2023-01-05,81234,7944,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4723.41,{},122755,0,"""South America""" +2023-04-03,81235,8198,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2934.95,"{\""promo\"": \""21%\""}",299267,0,"""North America""" +2023-04-15,81236,891,"[\""Phone\""]",4289.25,{},196125,0,"""Europe""" +2024-03-27,81237,6761,"[\""Wireless Mouse\""]",1912.65,"{\"": \""14%\""}",113633,0,"""South America""" +2023-10-07,81238,870,"[\""Headphones\""]",4374.07,{},17605,1,"""South America""" +2024-08-31,81239,3264,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3856.25,"{\""seasonal\"": \""21%\""}",187682,0,"""North America""" +2023-12-28,81240,6780,"[\""Keyboard\""]",3081.28,"{\""loyalty\"": \""25%\""}",164861,1,"""South America""" +2024-01-23,81241,9519,"[\""Tablet\""]",4371.39,{},237305,1,"""Asia""" +2024-07-24,81242,671,"[\""Keyboard\"", \""Wireless Mouse\""]",3783.73,"{\""promo\"": \""22%\""}",219283,0,"""South America""" +2024-08-24,81243,8767,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2339.29,{},296558,1,"""South America""" +2024-11-14,81244,9149,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3260.93,{},182096,0,"""North America""" +2024-01-03,81245,6055,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4397.16,"{\"": \""20%\""}",273710,0,"""North America""" +2024-10-13,81246,1086,"[\""Headphones\"", \""Tablet\""]",1440.36,"{\""loyalty\"": \""14%\""}",274438,1,"""North America""" +2023-10-22,81247,7324,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",540.26,{},116792,1,"""North America""" +2024-01-31,81248,7350,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",656.36,{},121978,0,"""North America""" +2023-12-31,81249,4320,"[\""Phone\""]",1373.7,{},106927,1,"""Asia""" +2024-09-24,81250,9196,"[\""Charger\"", \""Wireless Mouse\""]",288.58,"{\""promo\"": \""8%\""}",149103,0,"""North America""" +2024-02-10,81251,4748,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1708.28,{},290735,0,"""Asia""" +2023-01-10,81252,3406,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",54.21,"{\""seasonal\"": \""12%\""}",294988,1,"""Asia""" +2024-04-13,81253,1558,"[\""Monitor\""]",3694.24,"{\""promo\"": \""5%\""}",112816,0,"""Asia""" +2024-07-19,81254,4948,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2850.59,"{\""seasonal\"": \""28%\""}",269085,1,"""Asia""" +2024-11-14,81255,5212,"[\""Headphones\""]",1834.03,{},97503,1,"""Europe""" +2023-03-11,81256,5932,"[\""Wireless Mouse\"", \""Keyboard\""]",4752.9,{},27545,0,"""Asia""" +2023-08-19,81257,778,"[\""Phone\""]",996.77,"{\""seasonal\"": \""28%\""}",264268,1,"""Europe""" +2023-05-08,81258,2516,"[\""Phone\""]",2392.31,"{\""seasonal\"": \""18%\""}",119817,0,"""North America""" +2023-01-10,81259,5049,"[\""Monitor\""]",3277.77,{},218715,0,"""Europe""" +2024-12-10,81260,3423,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1811.58,{},294122,1,"""Africa""" +2024-08-23,81261,2311,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",949.12,{},25491,0,"""South America""" +2023-08-06,81262,5278,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1872.61,"{\""promo\"": \""27%\""}",110837,1,"""Asia""" +2024-01-21,81263,7292,"[\""Laptop\"", \""Charger\""]",254.71,{},94903,1,"""North America""" +2024-06-12,81264,2690,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3747.19,{},59026,0,"""Asia""" +2024-05-27,81265,7137,"[\""Tablet\""]",4202.15,{},242230,1,"""Europe""" +2023-08-27,81266,4873,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3593.68,{},154495,1,"""Africa""" +2024-05-10,81267,1923,"[\""Tablet\""]",2468.16,{},119562,0,"""North America""" +2023-04-01,81268,9445,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",4134.97,"{\""seasonal\"": \""30%\""}",276082,1,"""North America""" +2023-06-06,81269,9875,"[\""Charger\"", \""Tablet\""]",1142.01,"{\""seasonal\"": \""22%\""}",213470,0,"""North America""" +2024-06-28,81270,5215,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4054.82,{},76959,0,"""Asia""" +2024-12-21,81271,7945,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2368.32,{},137933,1,"""South America""" +2024-12-30,81272,647,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3155.93,{},124391,0,"""Africa""" +2024-10-03,81273,3362,"[\""Monitor\"", \""Wireless Mouse\""]",4862.73,"{\""seasonal\"": \""19%\""}",98750,1,"""Europe""" +2023-08-06,81274,7748,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",789.35,"{\""seasonal\"": \""25%\""}",120942,1,"""North America""" +2023-03-03,81275,674,"[\""Tablet\"", \""Laptop\""]",1430.17,{},80689,0,"""South America""" +2024-02-05,81276,6171,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4344.38,"{\""seasonal\"": \""18%\""}",166180,1,"""Africa""" +2023-02-24,81277,6011,"[\""Laptop\"", \""Monitor\""]",445.83,"{\""loyalty\"": \""25%\""}",128868,0,"""Africa""" +2024-03-07,81278,8897,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4715.96,"{\""loyalty\"": \""17%\""}",44041,1,"""North America""" +2024-10-31,81279,6118,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3335.68,"{\""seasonal\"": \""21%\""}",18302,1,"""North America""" +2024-05-15,81280,9949,"[\""Tablet\"", \""Monitor\""]",824.55,{},251648,1,"""North America""" +2024-04-24,81281,1357,"[\""Headphones\""]",2475.26,"{\""loyalty\"": \""25%\""}",281705,0,"""Africa""" +2023-11-08,81282,4552,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4739.8,"{\""loyalty\"": \""26%\""}",39855,1,"""Europe""" +2024-11-14,81283,4120,"[\""Tablet\"", \""Headphones\""]",676.49,{},28946,1,"""North America""" +2024-01-01,81284,9296,"[\""Charger\"", \""Phone\"", \""Monitor\""]",640.07,"{\""promo\"": \""28%\""}",234772,1,"""Africa""" +2024-06-18,81285,1545,"[\""Phone\""]",4006.45,"{\"": \""15%\""}",179007,1,"""South America""" +2023-01-06,81286,5903,"[\""Laptop\""]",57.95,"{\"": \""14%\""}",205742,1,"""North America""" +2023-12-04,81287,2372,"[\""Headphones\"", \""Charger\""]",4637.48,"{\""promo\"": \""8%\""}",254002,1,"""North America""" +2023-03-09,81288,9820,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1820.29,{},151745,1,"""North America""" +2023-11-08,81289,7571,"[\""Laptop\""]",4042.44,"{\"": \""30%\""}",9699,1,"""North America""" +2023-06-20,81290,499,"[\""Wireless Mouse\"", \""Monitor\""]",2086.06,{},31585,1,"""Europe""" +2023-12-05,81291,7830,"[\""Headphones\"", \""Charger\""]",4842.17,"{\"": \""16%\""}",212173,1,"""Asia""" +2024-11-02,81292,3865,"[\""Headphones\"", \""Keyboard\""]",3720.21,"{\"": \""15%\""}",8472,0,"""Asia""" +2023-01-27,81293,3174,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1714.76,"{\"": \""21%\""}",103085,1,"""South America""" +2024-01-24,81294,8639,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",263.04,"{\"": \""14%\""}",178114,0,"""South America""" +2023-06-28,81295,3086,"[\""Laptop\""]",1001.96,"{\""promo\"": \""9%\""}",190917,0,"""Africa""" +2024-06-14,81296,9676,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3624.66,{},65400,1,"""Europe""" +2024-05-13,81297,3327,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",635.26,"{\""seasonal\"": \""9%\""}",18694,0,"""Africa""" +2023-01-06,81298,2482,"[\""Tablet\"", \""Phone\""]",4125.79,{},254808,1,"""Africa""" +2023-04-16,81299,7957,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",590.15,"{\""promo\"": \""28%\""}",226184,1,"""Asia""" +2024-03-29,81300,3226,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",413.82,"{\"": \""24%\""}",118061,0,"""Africa""" +2024-10-15,81301,7441,"[\""Keyboard\"", \""Monitor\""]",96.77,{},171402,1,"""Asia""" +2024-08-19,81302,8326,"[\""Keyboard\""]",378.09,"{\""promo\"": \""7%\""}",26996,0,"""South America""" +2023-06-29,81303,8933,"[\""Tablet\"", \""Wireless Mouse\""]",841.45,"{\"": \""18%\""}",243917,1,"""Asia""" +2024-01-23,81304,2311,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3066.84,{},268133,0,"""Africa""" +2024-09-26,81305,2590,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3943.02,{},136925,1,"""Europe""" +2024-04-05,81306,6917,"[\""Tablet\"", \""Laptop\""]",4750.01,"{\"": \""14%\""}",19616,0,"""North America""" +2023-08-28,81307,7697,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2179.38,"{\""promo\"": \""27%\""}",267983,0,"""North America""" +2024-03-22,81308,1841,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2426.76,{},150666,1,"""Europe""" +2024-04-22,81309,5751,"[\""Keyboard\""]",1063.37,{},184211,1,"""North America""" +2024-06-23,81310,6105,"[\""Laptop\"", \""Headphones\""]",1465.88,{},227097,1,"""Africa""" +2023-02-05,81311,8107,"[\""Phone\"", \""Monitor\""]",4726.96,{},123489,1,"""Africa""" +2023-05-13,81312,4511,"[\""Charger\"", \""Tablet\""]",4341.38,"{\""promo\"": \""28%\""}",138006,1,"""South America""" +2023-03-26,81313,2869,"[\""Monitor\""]",1705.65,"{\""seasonal\"": \""17%\""}",295393,0,"""South America""" +2024-03-31,81314,3921,"[\""Phone\"", \""Keyboard\""]",1533.82,"{\""promo\"": \""24%\""}",63571,1,"""South America""" +2024-02-18,81315,5444,"[\""Monitor\""]",732.97,"{\"": \""10%\""}",186530,1,"""South America""" +2023-07-25,81316,9810,"[\""Keyboard\"", \""Monitor\""]",979.78,{},144325,0,"""North America""" +2024-05-10,81317,450,"[\""Monitor\"", \""Keyboard\""]",4541.0,{},13135,0,"""Africa""" +2023-07-13,81318,3949,"[\""Headphones\""]",4422.93,"{\""seasonal\"": \""22%\""}",292226,0,"""North America""" +2024-03-05,81319,8034,"[\""Monitor\"", \""Wireless Mouse\""]",987.14,"{\""loyalty\"": \""19%\""}",210545,0,"""Europe""" +2024-12-04,81320,1929,"[\""Charger\"", \""Keyboard\""]",553.82,{},37330,0,"""Africa""" +2023-11-15,81321,261,"[\""Wireless Mouse\"", \""Phone\""]",220.5,{},57771,1,"""Africa""" +2024-09-03,81322,239,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",948.23,"{\"": \""14%\""}",255267,1,"""Africa""" +2023-04-11,81323,7522,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4337.79,"{\""seasonal\"": \""9%\""}",270991,1,"""Asia""" +2024-05-05,81324,1114,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3940.37,{},101979,0,"""Europe""" +2024-11-10,81325,3543,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2728.13,{},135278,0,"""Europe""" +2024-09-19,81326,6543,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4322.02,"{\""loyalty\"": \""18%\""}",11454,0,"""Europe""" +2024-09-13,81327,4082,"[\""Laptop\"", \""Tablet\""]",560.44,"{\""promo\"": \""14%\""}",233802,0,"""South America""" +2023-01-16,81328,7667,"[\""Charger\""]",4417.3,"{\""seasonal\"": \""13%\""}",269246,0,"""Africa""" +2023-04-01,81329,1847,"[\""Laptop\""]",3837.72,{},204182,1,"""South America""" +2024-04-10,81330,8246,"[\""Keyboard\"", \""Phone\""]",4490.13,{},233928,0,"""South America""" +2024-12-18,81331,9868,"[\""Phone\""]",1391.09,{},3464,0,"""North America""" +2023-12-01,81332,9770,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1846.71,{},58287,1,"""Europe""" +2024-12-25,81333,7854,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4349.27,"{\""loyalty\"": \""8%\""}",152370,0,"""Africa""" +2023-11-30,81334,928,"[\""Keyboard\""]",3895.98,{},174827,0,"""North America""" +2023-03-23,81335,2122,"[\""Charger\""]",2919.41,"{\""promo\"": \""20%\""}",250009,0,"""North America""" +2023-11-27,81336,9983,"[\""Wireless Mouse\""]",798.72,{},283643,0,"""Europe""" +2023-11-07,81337,8193,"[\""Keyboard\""]",1403.96,{},101025,0,"""Africa""" +2023-10-23,81338,5556,"[\""Wireless Mouse\""]",3872.64,"{\""seasonal\"": \""8%\""}",86272,1,"""Europe""" +2023-05-12,81339,390,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1219.8,{},265808,0,"""Asia""" +2023-02-15,81340,5862,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2142.13,"{\""promo\"": \""23%\""}",28883,0,"""Asia""" +2023-02-11,81341,172,"[\""Monitor\"", \""Charger\""]",1637.29,{},142030,1,"""Africa""" +2024-10-12,81342,5734,"[\""Keyboard\""]",3766.57,"{\"": \""7%\""}",267373,0,"""Asia""" +2024-06-30,81343,5463,"[\""Keyboard\""]",102.66,"{\""promo\"": \""10%\""}",93643,1,"""Europe""" +2023-05-13,81344,6439,"[\""Keyboard\""]",1557.33,{},140283,1,"""South America""" +2024-06-04,81345,9931,"[\""Headphones\""]",623.96,{},120115,1,"""Asia""" +2023-07-13,81346,7349,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4871.88,"{\"": \""30%\""}",262043,0,"""South America""" +2024-11-25,81347,1041,"[\""Headphones\""]",4638.73,"{\""loyalty\"": \""20%\""}",63840,0,"""North America""" +2024-10-30,81348,4019,"[\""Headphones\"", \""Keyboard\""]",1050.59,{},49501,1,"""North America""" +2023-01-02,81349,4283,"[\""Phone\"", \""Wireless Mouse\""]",254.91,{},282248,0,"""Africa""" +2024-01-18,81350,4480,"[\""Monitor\"", \""Keyboard\""]",2460.1,"{\"": \""9%\""}",30859,0,"""South America""" +2024-03-21,81351,7827,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4904.0,"{\""seasonal\"": \""13%\""}",276900,0,"""Africa""" +2023-08-08,81352,5616,"[\""Headphones\"", \""Phone\""]",964.41,{},66924,0,"""South America""" +2024-01-29,81353,4006,"[\""Tablet\"", \""Headphones\""]",3413.9,"{\""promo\"": \""24%\""}",58286,0,"""North America""" +2023-04-01,81354,6983,"[\""Phone\""]",4549.59,{},81651,1,"""South America""" +2024-06-23,81355,4621,"[\""Charger\""]",1453.91,{},20485,1,"""Asia""" +2024-12-17,81356,5713,"[\""Wireless Mouse\""]",3585.6,"{\""loyalty\"": \""23%\""}",125922,1,"""Africa""" +2023-08-23,81357,4172,"[\""Laptop\"", \""Monitor\""]",4402.11,"{\""seasonal\"": \""26%\""}",125519,0,"""Asia""" +2024-02-04,81358,1607,"[\""Laptop\""]",304.66,"{\""promo\"": \""20%\""}",24679,0,"""North America""" +2024-05-19,81359,8851,"[\""Phone\"", \""Keyboard\""]",4864.66,"{\""loyalty\"": \""21%\""}",274093,0,"""Europe""" +2023-07-04,81360,2418,"[\""Wireless Mouse\""]",1718.87,{},239296,1,"""Europe""" +2024-08-04,81361,860,"[\""Monitor\""]",1026.22,"{\"": \""20%\""}",282864,0,"""Europe""" +2024-04-14,81362,3596,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1290.09,{},198205,1,"""South America""" +2023-01-01,81363,5424,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2071.0,"{\""loyalty\"": \""21%\""}",118710,0,"""Africa""" +2023-02-24,81364,6062,"[\""Wireless Mouse\""]",2299.62,"{\""seasonal\"": \""8%\""}",250032,0,"""Europe""" +2024-02-11,81365,4849,"[\""Headphones\"", \""Laptop\""]",388.74,"{\"": \""7%\""}",276855,0,"""Africa""" +2024-09-18,81366,7288,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3793.74,{},140801,0,"""Asia""" +2023-01-19,81367,6373,"[\""Laptop\""]",3484.17,"{\""seasonal\"": \""29%\""}",7160,0,"""North America""" +2024-06-02,81368,9206,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2393.1,"{\""seasonal\"": \""28%\""}",238723,1,"""Europe""" +2024-03-31,81369,4702,"[\""Keyboard\"", \""Charger\""]",470.15,"{\"": \""27%\""}",121337,0,"""Asia""" +2024-11-01,81370,8621,"[\""Phone\""]",2880.37,"{\""seasonal\"": \""24%\""}",191879,1,"""Asia""" +2024-09-04,81371,7022,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2983.31,{},45837,1,"""Asia""" +2024-01-23,81372,6829,"[\""Phone\""]",4384.54,{},280299,0,"""Europe""" +2024-06-21,81373,29,"[\""Laptop\"", \""Charger\""]",701.37,{},23315,1,"""Asia""" +2023-04-06,81374,4700,"[\""Tablet\""]",3760.41,"{\""loyalty\"": \""25%\""}",241589,1,"""North America""" +2023-09-03,81375,9472,"[\""Charger\""]",4834.09,{},285772,1,"""Europe""" +2024-03-31,81376,1145,"[\""Laptop\"", \""Wireless Mouse\""]",1069.81,{},140596,0,"""Europe""" +2024-09-30,81377,377,"[\""Tablet\"", \""Headphones\""]",4110.34,{},24177,0,"""Europe""" +2023-10-31,81378,7424,"[\""Keyboard\""]",4952.78,{},217455,0,"""Asia""" +2024-10-31,81379,5251,"[\""Tablet\""]",1242.82,{},251855,1,"""North America""" +2023-12-15,81380,1225,"[\""Charger\"", \""Laptop\""]",886.06,{},255769,1,"""Asia""" +2023-03-06,81381,2786,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3212.71,{},267075,0,"""Asia""" +2023-09-29,81382,3498,"[\""Keyboard\""]",4344.02,"{\"": \""27%\""}",66814,1,"""Europe""" +2024-02-29,81383,9279,"[\""Wireless Mouse\"", \""Phone\""]",2165.43,{},15563,1,"""Africa""" +2024-07-17,81384,9697,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2600.5,"{\""seasonal\"": \""17%\""}",140941,0,"""South America""" +2024-07-30,81385,2376,"[\""Monitor\""]",4387.3,"{\"": \""22%\""}",31594,0,"""Europe""" +2023-10-26,81386,2412,"[\""Keyboard\"", \""Laptop\""]",4954.14,{},132199,1,"""South America""" +2024-01-17,81387,284,"[\""Phone\"", \""Tablet\""]",1259.21,"{\"": \""13%\""}",164130,1,"""Africa""" +2023-06-30,81388,1717,"[\""Headphones\"", \""Laptop\""]",204.31,{},283192,1,"""Asia""" +2024-11-22,81389,4475,"[\""Laptop\"", \""Charger\""]",4110.24,"{\""seasonal\"": \""27%\""}",273431,1,"""Europe""" +2023-05-10,81390,8389,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",719.51,"{\""seasonal\"": \""6%\""}",74016,0,"""Africa""" +2023-11-15,81391,8386,"[\""Tablet\"", \""Headphones\""]",3231.2,{},221753,1,"""North America""" +2024-02-28,81392,8854,"[\""Keyboard\"", \""Laptop\""]",275.04,"{\""loyalty\"": \""24%\""}",240122,0,"""Europe""" +2024-04-18,81393,7710,"[\""Tablet\"", \""Keyboard\""]",1995.85,"{\""loyalty\"": \""7%\""}",190433,0,"""Asia""" +2024-06-28,81394,9659,"[\""Tablet\"", \""Headphones\""]",1538.85,"{\""loyalty\"": \""16%\""}",61974,0,"""Asia""" +2023-02-25,81395,1103,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3378.43,{},292691,1,"""South America""" +2023-04-28,81396,6440,"[\""Wireless Mouse\""]",276.78,"{\""seasonal\"": \""17%\""}",94971,0,"""Africa""" +2024-04-13,81397,3381,"[\""Wireless Mouse\"", \""Headphones\""]",1818.75,"{\""loyalty\"": \""8%\""}",186388,1,"""Asia""" +2024-07-02,81398,4101,"[\""Phone\"", \""Laptop\"", \""Charger\""]",279.47,"{\"": \""9%\""}",1621,1,"""South America""" +2024-12-24,81399,2319,"[\""Phone\""]",122.32,"{\""loyalty\"": \""17%\""}",204546,1,"""Africa""" +2023-04-21,81400,6682,"[\""Tablet\"", \""Keyboard\""]",3078.43,{},9795,0,"""North America""" +2023-09-14,81401,9391,"[\""Charger\"", \""Phone\""]",3828.05,{},46328,1,"""South America""" +2023-11-27,81402,1204,"[\""Monitor\""]",1924.13,"{\"": \""14%\""}",264432,0,"""Africa""" +2024-06-08,81403,9928,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2729.36,{},245393,1,"""South America""" +2024-05-22,81404,8660,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2381.81,{},98999,0,"""South America""" +2023-07-23,81405,82,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2925.33,"{\""promo\"": \""10%\""}",189185,0,"""Europe""" +2023-11-18,81406,9994,"[\""Laptop\"", \""Keyboard\""]",187.83,{},294986,1,"""South America""" +2023-05-02,81407,4173,"[\""Headphones\"", \""Keyboard\""]",1183.45,{},2276,0,"""Asia""" +2024-04-29,81408,2353,"[\""Monitor\""]",1438.22,"{\""loyalty\"": \""24%\""}",68584,1,"""South America""" +2024-09-08,81409,6327,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4894.51,{},45519,0,"""Asia""" +2024-05-23,81410,7693,"[\""Charger\"", \""Keyboard\""]",4848.94,"{\""promo\"": \""15%\""}",131127,0,"""Africa""" +2024-04-06,81411,7570,"[\""Phone\"", \""Laptop\""]",1932.35,"{\""loyalty\"": \""5%\""}",253717,1,"""South America""" +2024-03-11,81412,683,"[\""Tablet\"", \""Charger\""]",2991.88,{},237484,1,"""Asia""" +2023-04-27,81413,6201,"[\""Phone\"", \""Monitor\""]",2207.91,"{\""seasonal\"": \""25%\""}",197109,0,"""Asia""" +2024-11-09,81414,366,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3263.71,{},237207,1,"""Africa""" +2024-10-22,81415,9712,"[\""Phone\"", \""Headphones\""]",3794.87,"{\""promo\"": \""28%\""}",98304,0,"""Europe""" +2024-05-11,81416,9310,"[\""Phone\"", \""Laptop\""]",4283.35,{},101802,1,"""North America""" +2023-12-13,81417,7498,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",829.57,"{\""loyalty\"": \""6%\""}",132775,0,"""Africa""" +2023-03-30,81418,8180,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4663.1,"{\"": \""24%\""}",270596,1,"""Europe""" +2024-04-15,81419,5248,"[\""Phone\""]",3773.0,"{\"": \""18%\""}",110927,0,"""Asia""" +2024-10-17,81420,2140,"[\""Tablet\""]",2981.64,{},178072,1,"""Europe""" +2023-08-08,81421,726,"[\""Charger\""]",167.24,"{\""promo\"": \""6%\""}",199470,1,"""Europe""" +2023-02-03,81422,7470,"[\""Charger\"", \""Tablet\""]",772.84,"{\""promo\"": \""12%\""}",134845,0,"""North America""" +2024-05-21,81423,9626,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3569.53,{},225646,0,"""Europe""" +2024-11-04,81424,5155,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",881.29,{},298687,1,"""North America""" +2023-01-26,81425,9708,"[\""Laptop\"", \""Keyboard\""]",2606.78,"{\""promo\"": \""25%\""}",292384,0,"""Europe""" +2023-05-23,81426,9267,"[\""Headphones\""]",4649.08,"{\"": \""26%\""}",137291,0,"""Europe""" +2024-02-04,81427,7478,"[\""Headphones\""]",3165.67,{},192169,1,"""Europe""" +2024-08-11,81428,6396,"[\""Monitor\""]",3935.17,"{\""seasonal\"": \""21%\""}",189969,1,"""South America""" +2024-12-13,81429,3588,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2256.41,"{\""promo\"": \""6%\""}",114658,0,"""Africa""" +2024-09-28,81430,7884,"[\""Keyboard\""]",1888.35,"{\""loyalty\"": \""19%\""}",13353,1,"""North America""" +2023-08-03,81431,64,"[\""Monitor\"", \""Laptop\""]",613.94,"{\""loyalty\"": \""6%\""}",119116,1,"""Africa""" +2024-01-30,81432,1818,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4610.19,"{\"": \""26%\""}",272426,1,"""South America""" +2024-10-20,81433,2528,"[\""Keyboard\""]",3198.23,"{\""seasonal\"": \""23%\""}",276675,1,"""Africa""" +2023-02-21,81434,2460,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2434.15,"{\""seasonal\"": \""6%\""}",177789,1,"""South America""" +2023-10-26,81435,9569,"[\""Monitor\""]",1576.05,{},107646,0,"""Asia""" +2024-07-21,81436,5647,"[\""Phone\"", \""Keyboard\""]",3583.11,"{\""seasonal\"": \""30%\""}",28582,0,"""Africa""" +2023-11-06,81437,5741,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",262.5,{},69746,1,"""North America""" +2024-09-30,81438,6117,"[\""Tablet\""]",912.77,{},72475,0,"""Africa""" +2024-02-04,81439,7430,"[\""Tablet\"", \""Charger\""]",3282.18,"{\"": \""29%\""}",36615,0,"""Africa""" +2024-12-02,81440,50,"[\""Charger\""]",1389.19,{},284187,0,"""North America""" +2023-10-22,81441,3770,"[\""Laptop\""]",3390.53,{},51234,0,"""Africa""" +2023-04-15,81442,7044,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3245.55,"{\""loyalty\"": \""17%\""}",156756,0,"""South America""" +2023-08-16,81443,1888,"[\""Tablet\""]",4999.24,"{\""seasonal\"": \""20%\""}",96776,1,"""Asia""" +2024-11-20,81444,7231,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",412.87,{},192478,0,"""Africa""" +2023-05-02,81445,9614,"[\""Laptop\"", \""Charger\""]",4958.49,{},84284,0,"""North America""" +2023-11-08,81446,9599,"[\""Laptop\""]",3430.59,"{\""seasonal\"": \""17%\""}",244789,1,"""South America""" +2024-06-27,81447,3753,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2408.04,{},191471,1,"""Europe""" +2023-05-21,81448,681,"[\""Laptop\"", \""Charger\""]",4126.35,{},204939,1,"""North America""" +2024-09-06,81449,9231,"[\""Charger\""]",98.28,{},288296,1,"""North America""" +2024-03-01,81450,5033,"[\""Tablet\""]",706.61,{},218435,1,"""Africa""" +2023-04-04,81451,5742,"[\""Tablet\"", \""Keyboard\""]",2126.21,"{\""promo\"": \""26%\""}",216526,0,"""Europe""" +2023-03-05,81452,9658,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3154.32,{},243215,1,"""Asia""" +2024-04-16,81453,685,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3879.04,{},299871,1,"""Asia""" +2023-10-31,81454,9570,"[\""Phone\""]",1846.56,{},27888,1,"""Asia""" +2023-02-08,81455,8063,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2953.64,"{\""seasonal\"": \""30%\""}",51823,0,"""North America""" +2023-02-06,81456,4082,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2351.32,{},42669,1,"""Europe""" +2023-01-01,81457,2488,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",882.27,"{\""loyalty\"": \""30%\""}",50137,1,"""Africa""" +2023-05-04,81458,1667,"[\""Laptop\""]",2001.19,"{\""promo\"": \""10%\""}",191356,0,"""Europe""" +2024-10-22,81459,4710,"[\""Wireless Mouse\"", \""Tablet\""]",996.6,"{\""loyalty\"": \""17%\""}",115633,1,"""South America""" +2023-10-31,81460,2263,"[\""Tablet\""]",2609.0,"{\""loyalty\"": \""26%\""}",278678,0,"""Africa""" +2024-12-08,81461,8704,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1228.1,"{\"": \""14%\""}",89072,0,"""Europe""" +2024-05-31,81462,7277,"[\""Headphones\""]",814.24,{},143180,1,"""North America""" +2023-09-30,81463,641,"[\""Monitor\""]",1647.71,{},80378,0,"""Africa""" +2024-07-28,81464,5368,"[\""Laptop\"", \""Tablet\""]",2098.58,{},137953,1,"""South America""" +2024-10-21,81465,7940,"[\""Keyboard\""]",1605.52,{},132456,0,"""Europe""" +2023-11-30,81466,5957,"[\""Monitor\""]",830.02,"{\""loyalty\"": \""15%\""}",134787,0,"""Africa""" +2023-10-05,81467,7225,"[\""Keyboard\""]",1146.92,"{\"": \""22%\""}",8876,1,"""North America""" +2023-12-20,81468,8075,"[\""Tablet\"", \""Phone\""]",1388.74,{},169611,1,"""North America""" +2023-01-10,81469,7493,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1181.52,"{\""promo\"": \""5%\""}",175162,1,"""Europe""" +2023-05-09,81470,8110,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",703.25,{},47858,0,"""Europe""" +2023-12-22,81471,9466,"[\""Phone\""]",3170.37,{},47254,0,"""Africa""" +2023-07-01,81472,2864,"[\""Keyboard\""]",1174.42,"{\""promo\"": \""30%\""}",276742,1,"""North America""" +2023-07-01,81473,3235,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1810.77,"{\""loyalty\"": \""27%\""}",231643,1,"""Asia""" +2024-05-04,81474,9070,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1124.79,{},37038,1,"""Africa""" +2024-12-31,81475,8003,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",298.86,{},201289,1,"""Asia""" +2023-09-19,81476,3504,"[\""Keyboard\""]",4439.31,{},36862,0,"""Asia""" +2024-12-21,81477,6064,"[\""Keyboard\"", \""Laptop\""]",3901.08,"{\""loyalty\"": \""8%\""}",232216,0,"""Asia""" +2023-03-16,81478,9324,"[\""Wireless Mouse\""]",1114.03,"{\"": \""7%\""}",132147,1,"""North America""" +2024-05-08,81479,888,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",151.85,"{\"": \""23%\""}",229404,0,"""Africa""" +2024-04-17,81480,6902,"[\""Laptop\""]",4944.36,"{\"": \""25%\""}",142062,0,"""Europe""" +2024-12-25,81481,1672,"[\""Laptop\"", \""Phone\""]",465.77,"{\"": \""5%\""}",152154,0,"""South America""" +2023-06-27,81482,3037,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4849.13,"{\""promo\"": \""29%\""}",271647,1,"""South America""" +2023-11-30,81483,5643,"[\""Phone\"", \""Charger\""]",2563.94,{},187691,0,"""Africa""" +2024-01-08,81484,4420,"[\""Charger\""]",1877.63,"{\"": \""17%\""}",240928,1,"""Africa""" +2023-09-25,81485,1881,"[\""Laptop\"", \""Monitor\""]",1348.88,"{\""seasonal\"": \""20%\""}",84141,0,"""South America""" +2023-07-10,81486,1859,"[\""Laptop\""]",2105.45,"{\"": \""25%\""}",186456,0,"""Asia""" +2024-05-18,81487,4525,"[\""Tablet\""]",4553.46,"{\""loyalty\"": \""22%\""}",46832,1,"""Africa""" +2023-11-24,81488,1946,"[\""Laptop\"", \""Charger\""]",2036.63,"{\""seasonal\"": \""12%\""}",113238,1,"""Africa""" +2024-10-01,81489,9132,"[\""Laptop\""]",1448.33,{},266585,1,"""Europe""" +2023-05-11,81490,8637,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3786.59,{},192469,1,"""South America""" +2023-11-02,81491,6724,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4286.42,{},291980,0,"""Africa""" +2024-09-01,81492,7683,"[\""Tablet\""]",2296.08,{},122641,0,"""North America""" +2024-06-20,81493,8912,"[\""Keyboard\"", \""Headphones\""]",1646.6,"{\""seasonal\"": \""10%\""}",196327,1,"""Asia""" +2023-04-17,81494,1162,"[\""Wireless Mouse\""]",814.3,{},184797,0,"""North America""" +2023-01-03,81495,3970,"[\""Headphones\"", \""Tablet\""]",2737.44,{},148894,0,"""Europe""" +2023-04-21,81496,8159,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2310.7,"{\"": \""14%\""}",229144,1,"""Africa""" +2023-05-21,81497,5547,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3418.62,{},222408,0,"""Africa""" +2024-11-08,81498,745,"[\""Wireless Mouse\"", \""Charger\""]",4270.79,"{\"": \""5%\""}",197518,1,"""South America""" +2024-03-02,81499,7459,"[\""Phone\""]",4917.2,{},217155,0,"""Asia""" +2024-06-28,81500,6006,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",72.51,{},194823,0,"""South America""" +2024-04-06,81501,1931,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1532.83,"{\""loyalty\"": \""12%\""}",146851,1,"""Europe""" +2024-09-05,81502,7925,"[\""Charger\"", \""Wireless Mouse\""]",1053.93,{},179007,0,"""Europe""" +2024-02-08,81503,1720,"[\""Headphones\"", \""Monitor\""]",1371.01,{},243755,1,"""Europe""" +2023-07-30,81504,1553,"[\""Wireless Mouse\"", \""Headphones\""]",4513.61,"{\"": \""30%\""}",61890,0,"""Africa""" +2023-08-12,81505,2336,"[\""Headphones\""]",1528.96,"{\"": \""26%\""}",206692,1,"""Europe""" +2023-07-03,81506,2199,"[\""Tablet\"", \""Phone\""]",1728.63,{},256689,0,"""Europe""" +2023-01-30,81507,7825,"[\""Tablet\""]",2220.31,"{\""promo\"": \""7%\""}",214238,0,"""Europe""" +2023-05-07,81508,6127,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3241.94,{},68487,0,"""Asia""" +2024-06-12,81509,7296,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2927.98,{},45386,0,"""South America""" +2024-09-22,81510,8850,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",612.06,{},72786,1,"""South America""" +2024-10-24,81511,3947,"[\""Wireless Mouse\""]",4392.21,{},191076,1,"""South America""" +2023-09-17,81512,9137,"[\""Charger\""]",3905.66,{},17689,1,"""Asia""" +2023-07-27,81513,7364,"[\""Tablet\"", \""Headphones\""]",2354.2,{},77698,0,"""Europe""" +2023-07-16,81514,7971,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4905.89,"{\"": \""27%\""}",48075,1,"""Asia""" +2024-08-23,81515,4374,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",789.55,{},61114,1,"""North America""" +2024-10-04,81516,2832,"[\""Charger\"", \""Wireless Mouse\""]",3431.44,{},128040,0,"""Africa""" +2023-12-14,81517,2026,"[\""Headphones\"", \""Charger\""]",4886.95,"{\""loyalty\"": \""12%\""}",199151,1,"""Africa""" +2024-07-03,81518,4564,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",998.1,"{\""loyalty\"": \""8%\""}",163887,0,"""Europe""" +2024-11-17,81519,18,"[\""Keyboard\""]",2967.14,{},165034,0,"""North America""" +2024-05-27,81520,146,"[\""Phone\""]",2760.99,"{\"": \""25%\""}",146777,1,"""Europe""" +2024-06-24,81521,3622,"[\""Phone\"", \""Laptop\""]",1702.03,{},33214,0,"""Asia""" +2024-01-04,81522,6132,"[\""Wireless Mouse\""]",4984.59,{},286057,1,"""Europe""" +2024-09-22,81523,2909,"[\""Monitor\""]",397.14,{},84768,0,"""Europe""" +2023-01-02,81524,5964,"[\""Monitor\""]",1352.67,"{\""seasonal\"": \""25%\""}",227345,0,"""Africa""" +2024-06-26,81525,1566,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3893.81,{},173519,0,"""South America""" +2023-07-08,81526,7406,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3849.46,{},80221,1,"""Europe""" +2023-06-15,81527,8506,"[\""Keyboard\""]",3901.63,"{\""promo\"": \""9%\""}",262665,0,"""Africa""" +2024-11-28,81528,3890,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1652.92,{},288789,1,"""Europe""" +2024-11-11,81529,3255,"[\""Phone\""]",3295.32,{},43520,0,"""North America""" +2024-07-12,81530,1756,"[\""Laptop\"", \""Monitor\""]",613.13,"{\""promo\"": \""18%\""}",166833,1,"""Europe""" +2024-08-06,81531,7567,"[\""Tablet\"", \""Monitor\""]",4525.93,"{\"": \""23%\""}",153315,1,"""Europe""" +2024-04-13,81532,9523,"[\""Headphones\""]",159.35,"{\""loyalty\"": \""20%\""}",119646,0,"""Asia""" +2024-08-29,81533,1345,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",634.49,{},260590,0,"""North America""" +2024-07-05,81534,7088,"[\""Tablet\"", \""Charger\""]",4163.17,"{\""seasonal\"": \""28%\""}",194689,1,"""North America""" +2023-07-30,81535,6993,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3632.03,{},286274,0,"""Europe""" +2024-12-13,81536,6740,"[\""Wireless Mouse\""]",1216.19,"{\""loyalty\"": \""29%\""}",125733,1,"""North America""" +2024-09-08,81537,7047,"[\""Phone\""]",4623.13,{},202652,0,"""South America""" +2024-08-02,81538,5954,"[\""Monitor\""]",643.71,{},296256,1,"""Africa""" +2024-04-08,81539,4524,"[\""Monitor\"", \""Keyboard\""]",1994.02,{},115215,1,"""Asia""" +2023-11-05,81540,7068,"[\""Laptop\""]",2348.2,"{\"": \""10%\""}",299450,0,"""South America""" +2023-03-29,81541,8424,"[\""Monitor\"", \""Laptop\""]",283.82,"{\"": \""11%\""}",265088,0,"""Asia""" +2024-07-28,81542,5030,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",648.89,"{\""promo\"": \""25%\""}",106521,0,"""Europe""" +2023-06-10,81543,9194,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4534.91,"{\""loyalty\"": \""21%\""}",192216,0,"""South America""" +2023-09-06,81544,4340,"[\""Laptop\"", \""Headphones\""]",2745.39,"{\""seasonal\"": \""9%\""}",72796,1,"""Asia""" +2024-12-09,81545,9362,"[\""Laptop\""]",4360.27,"{\"": \""6%\""}",299144,1,"""North America""" +2024-01-13,81546,5468,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3317.03,"{\""seasonal\"": \""27%\""}",170797,0,"""South America""" +2023-04-17,81547,6505,"[\""Headphones\""]",297.56,{},133550,1,"""Europe""" +2023-05-31,81548,8462,"[\""Wireless Mouse\"", \""Laptop\""]",2528.12,"{\""loyalty\"": \""25%\""}",41218,0,"""South America""" +2023-06-08,81549,4638,"[\""Charger\"", \""Keyboard\""]",2872.88,"{\""promo\"": \""19%\""}",296780,0,"""Europe""" +2023-06-05,81550,5205,"[\""Tablet\""]",989.35,{},35670,1,"""Asia""" +2023-02-09,81551,9231,"[\""Keyboard\"", \""Wireless Mouse\""]",1499.18,{},184753,0,"""Asia""" +2023-03-22,81552,8155,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1656.97,"{\"": \""11%\""}",12481,1,"""Europe""" +2023-02-09,81553,7577,"[\""Charger\""]",4871.96,"{\"": \""23%\""}",50537,1,"""Africa""" +2024-04-07,81554,5566,"[\""Headphones\"", \""Tablet\""]",4679.9,{},213973,1,"""North America""" +2023-02-18,81555,7432,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4460.44,{},105073,0,"""South America""" +2023-12-07,81556,2617,"[\""Charger\"", \""Monitor\""]",3743.42,"{\""loyalty\"": \""18%\""}",4720,1,"""Africa""" +2023-09-07,81557,1727,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",962.12,{},278095,0,"""North America""" +2024-08-18,81558,429,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1634.42,{},60902,1,"""South America""" +2023-11-24,81559,8618,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3258.42,"{\""seasonal\"": \""18%\""}",37774,1,"""Asia""" +2024-10-07,81560,5844,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2129.21,"{\""seasonal\"": \""9%\""}",249503,0,"""Asia""" +2024-08-28,81561,8020,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3327.77,"{\""loyalty\"": \""13%\""}",258351,0,"""Africa""" +2024-11-10,81562,8276,"[\""Laptop\""]",1763.92,{},289912,1,"""Asia""" +2024-01-09,81563,8707,"[\""Headphones\"", \""Charger\""]",829.65,"{\""seasonal\"": \""15%\""}",24474,0,"""North America""" +2024-11-24,81564,3382,"[\""Monitor\"", \""Laptop\""]",812.7,{},261307,0,"""Africa""" +2023-09-29,81565,2726,"[\""Wireless Mouse\"", \""Tablet\""]",3635.12,{},225886,1,"""South America""" +2023-06-18,81566,6436,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2246.76,"{\"": \""7%\""}",32940,0,"""Africa""" +2023-04-15,81567,5070,"[\""Tablet\"", \""Laptop\""]",992.37,"{\"": \""9%\""}",163361,1,"""South America""" +2023-06-28,81568,9591,"[\""Phone\""]",2896.56,{},191896,0,"""North America""" +2024-01-03,81569,2715,"[\""Tablet\""]",160.32,{},22120,1,"""Asia""" +2024-06-08,81570,4923,"[\""Monitor\"", \""Laptop\""]",113.14,{},167428,1,"""Asia""" +2024-05-16,81571,5406,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1159.06,"{\""loyalty\"": \""30%\""}",190403,1,"""Europe""" +2023-04-03,81572,3357,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3361.78,{},41725,1,"""South America""" +2023-11-05,81573,2073,"[\""Headphones\""]",2778.94,{},22885,1,"""South America""" +2023-07-05,81574,3591,"[\""Tablet\"", \""Charger\""]",2542.77,{},271005,1,"""South America""" +2023-03-16,81575,7460,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1528.99,{},279489,0,"""Asia""" +2023-03-27,81576,7318,"[\""Headphones\""]",3286.9,{},20742,0,"""Africa""" +2023-04-14,81577,8048,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2674.89,{},237518,0,"""North America""" +2024-09-04,81578,9274,"[\""Monitor\"", \""Phone\""]",4327.74,"{\""loyalty\"": \""11%\""}",65823,0,"""Asia""" +2023-09-03,81579,1595,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",51.84,"{\""promo\"": \""7%\""}",152749,1,"""South America""" +2024-05-18,81580,4245,"[\""Monitor\"", \""Keyboard\""]",2445.72,"{\""loyalty\"": \""12%\""}",21611,1,"""Asia""" +2023-07-26,81581,709,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",716.02,{},80386,1,"""Europe""" +2023-03-05,81582,1256,"[\""Wireless Mouse\"", \""Laptop\""]",577.31,{},152073,0,"""North America""" +2024-12-20,81583,171,"[\""Keyboard\"", \""Wireless Mouse\""]",1631.35,{},122924,1,"""Asia""" +2024-08-08,81584,4790,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1686.71,{},242255,0,"""Africa""" +2024-08-20,81585,590,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4983.14,"{\""loyalty\"": \""17%\""}",202732,1,"""Europe""" +2023-06-02,81586,4604,"[\""Keyboard\""]",4387.46,"{\""seasonal\"": \""16%\""}",150812,1,"""South America""" +2024-08-30,81587,4517,"[\""Tablet\"", \""Laptop\""]",2190.38,{},96986,0,"""North America""" +2024-07-30,81588,7204,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4130.56,{},47681,0,"""Europe""" +2023-02-21,81589,7913,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",473.59,"{\""loyalty\"": \""23%\""}",25747,0,"""South America""" +2024-01-13,81590,8723,"[\""Wireless Mouse\"", \""Tablet\""]",4945.82,"{\""loyalty\"": \""11%\""}",131957,0,"""South America""" +2024-11-11,81591,1979,"[\""Tablet\""]",4159.06,"{\"": \""21%\""}",136414,1,"""South America""" +2023-02-22,81592,8105,"[\""Laptop\"", \""Phone\""]",4293.74,"{\"": \""9%\""}",127769,0,"""North America""" +2024-09-26,81593,7740,"[\""Keyboard\"", \""Headphones\""]",1125.66,"{\""promo\"": \""11%\""}",227010,1,"""South America""" +2024-07-19,81594,6186,"[\""Monitor\"", \""Tablet\""]",4399.1,{},81771,1,"""North America""" +2023-01-31,81595,6674,"[\""Wireless Mouse\""]",3918.88,"{\""loyalty\"": \""5%\""}",227989,1,"""North America""" +2024-04-02,81596,5749,"[\""Charger\"", \""Keyboard\""]",191.67,"{\""seasonal\"": \""24%\""}",85256,0,"""South America""" +2023-07-19,81597,8016,"[\""Phone\""]",1417.33,{},265831,0,"""North America""" +2023-02-16,81598,8680,"[\""Headphones\""]",2647.52,{},78172,0,"""North America""" +2024-06-09,81599,472,"[\""Phone\""]",3216.64,"{\""seasonal\"": \""24%\""}",3990,1,"""Africa""" +2023-05-04,81600,8563,"[\""Keyboard\""]",1088.4,{},63857,1,"""Europe""" +2023-11-27,81601,6033,"[\""Charger\"", \""Wireless Mouse\""]",2042.14,{},198000,0,"""South America""" +2024-08-29,81602,7656,"[\""Keyboard\"", \""Monitor\""]",2342.06,"{\""loyalty\"": \""30%\""}",122504,0,"""North America""" +2024-05-16,81603,5181,"[\""Monitor\"", \""Laptop\""]",3725.12,"{\""seasonal\"": \""30%\""}",48309,0,"""South America""" +2023-09-07,81604,8968,"[\""Tablet\""]",87.02,{},176057,1,"""Europe""" +2023-02-28,81605,7668,"[\""Headphones\"", \""Keyboard\""]",2909.0,{},134131,0,"""North America""" +2023-07-02,81606,9979,"[\""Keyboard\"", \""Laptop\""]",1146.45,"{\"": \""13%\""}",118909,0,"""Europe""" +2024-05-29,81607,787,"[\""Headphones\""]",3255.95,"{\""seasonal\"": \""24%\""}",159990,0,"""Europe""" +2024-03-11,81608,2585,"[\""Tablet\""]",1458.53,"{\""loyalty\"": \""25%\""}",154567,1,"""Asia""" +2023-11-08,81609,2282,"[\""Keyboard\"", \""Tablet\""]",3055.01,{},163882,0,"""North America""" +2024-10-25,81610,606,"[\""Laptop\""]",1151.57,{},215743,0,"""Africa""" +2024-02-27,81611,5050,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1753.47,{},231318,1,"""Africa""" +2023-05-17,81612,5168,"[\""Charger\""]",4963.71,"{\""promo\"": \""20%\""}",87236,1,"""Europe""" +2023-10-03,81613,8115,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4308.04,"{\""promo\"": \""9%\""}",115583,1,"""Europe""" +2024-04-26,81614,1020,"[\""Tablet\"", \""Monitor\""]",1984.53,{},270347,1,"""Asia""" +2024-04-19,81615,4265,"[\""Phone\"", \""Tablet\""]",1553.24,"{\""seasonal\"": \""6%\""}",7900,1,"""North America""" +2024-12-20,81616,4012,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",464.45,{},280339,0,"""Asia""" +2023-03-27,81617,4045,"[\""Headphones\"", \""Tablet\""]",131.11,{},268936,1,"""North America""" +2023-01-31,81618,9475,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3984.67,"{\""loyalty\"": \""24%\""}",220143,1,"""Europe""" +2023-06-16,81619,6363,"[\""Wireless Mouse\""]",1644.67,"{\""seasonal\"": \""16%\""}",262050,1,"""South America""" +2024-06-25,81620,7598,"[\""Charger\"", \""Tablet\""]",1757.46,{},116640,0,"""South America""" +2024-12-24,81621,7392,"[\""Tablet\"", \""Laptop\""]",2839.78,"{\"": \""27%\""}",203250,1,"""Europe""" +2023-10-28,81622,3477,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1663.39,{},160675,1,"""Asia""" +2024-01-08,81623,5940,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2998.98,"{\""seasonal\"": \""25%\""}",298386,0,"""South America""" +2023-07-21,81624,1696,"[\""Headphones\"", \""Monitor\""]",1042.48,"{\""promo\"": \""6%\""}",77031,0,"""Asia""" +2024-11-29,81625,826,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2850.92,{},257975,1,"""Africa""" +2024-01-24,81626,1353,"[\""Headphones\"", \""Tablet\""]",2986.65,{},291648,0,"""Africa""" +2024-11-04,81627,385,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",865.4,{},262704,1,"""Asia""" +2024-06-03,81628,1587,"[\""Keyboard\""]",2798.41,"{\""seasonal\"": \""22%\""}",14917,1,"""Africa""" +2024-12-09,81629,585,"[\""Tablet\"", \""Keyboard\""]",647.48,{},98108,0,"""Europe""" +2024-02-19,81630,2966,"[\""Monitor\""]",996.37,"{\""promo\"": \""14%\""}",162740,1,"""Europe""" +2023-02-17,81631,3359,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4557.48,{},11674,0,"""North America""" +2023-12-18,81632,298,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4996.7,{},191928,1,"""Asia""" +2024-01-01,81633,6539,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",581.4,"{\""promo\"": \""10%\""}",58585,1,"""Europe""" +2023-02-03,81634,8531,"[\""Keyboard\"", \""Wireless Mouse\""]",4001.06,{},92137,1,"""Asia""" +2023-09-11,81635,4621,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",399.91,"{\""loyalty\"": \""8%\""}",22504,1,"""Europe""" +2023-07-18,81636,5825,"[\""Charger\"", \""Laptop\""]",1738.09,"{\"": \""10%\""}",90037,1,"""Africa""" +2023-07-03,81637,843,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2124.47,{},6859,1,"""Europe""" +2023-12-26,81638,3692,"[\""Phone\"", \""Keyboard\""]",4278.13,"{\""loyalty\"": \""17%\""}",60016,1,"""Europe""" +2023-05-18,81639,9165,"[\""Tablet\"", \""Wireless Mouse\""]",4228.21,"{\""seasonal\"": \""15%\""}",195213,0,"""Africa""" +2024-11-12,81640,5798,"[\""Keyboard\""]",4763.41,"{\""loyalty\"": \""14%\""}",202811,1,"""Asia""" +2024-12-19,81641,2094,"[\""Phone\"", \""Tablet\""]",1365.0,"{\""promo\"": \""8%\""}",189737,1,"""North America""" +2024-06-29,81642,1868,"[\""Tablet\""]",4030.29,"{\""seasonal\"": \""6%\""}",198614,0,"""North America""" +2023-04-01,81643,8021,"[\""Monitor\""]",4787.79,{},87603,0,"""Asia""" +2024-01-15,81644,6152,"[\""Wireless Mouse\""]",4092.76,{},138870,0,"""North America""" +2023-02-13,81645,9807,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2976.95,"{\""seasonal\"": \""13%\""}",227904,1,"""Europe""" +2023-11-24,81646,1711,"[\""Keyboard\"", \""Charger\""]",4480.16,{},23204,1,"""Europe""" +2023-11-27,81647,7434,"[\""Charger\""]",1430.95,{},141152,0,"""Asia""" +2024-04-18,81648,4532,"[\""Charger\"", \""Tablet\""]",322.52,"{\""promo\"": \""9%\""}",2817,0,"""Asia""" +2024-11-11,81649,7910,"[\""Headphones\"", \""Charger\""]",4851.0,{},278916,1,"""Africa""" +2023-07-06,81650,3878,"[\""Headphones\""]",3947.29,{},86568,1,"""North America""" +2024-05-23,81651,9284,"[\""Wireless Mouse\"", \""Tablet\""]",4849.02,"{\""promo\"": \""27%\""}",136779,0,"""Asia""" +2023-12-17,81652,621,"[\""Wireless Mouse\"", \""Keyboard\""]",1515.93,{},106759,0,"""Africa""" +2024-07-29,81653,7489,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4109.64,"{\""loyalty\"": \""29%\""}",111091,0,"""Europe""" +2023-12-11,81654,9623,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1382.46,"{\"": \""28%\""}",230576,1,"""Africa""" +2023-01-04,81655,7644,"[\""Monitor\""]",2409.84,{},71298,0,"""Asia""" +2023-01-04,81656,5016,"[\""Headphones\""]",4922.31,{},274971,0,"""Asia""" +2023-05-02,81657,9859,"[\""Keyboard\"", \""Headphones\""]",4185.32,{},9831,1,"""Africa""" +2024-09-21,81658,3306,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",886.24,{},149007,1,"""South America""" +2023-02-22,81659,410,"[\""Laptop\""]",285.32,{},63253,1,"""Africa""" +2024-03-13,81660,4331,"[\""Wireless Mouse\""]",852.22,{},226592,1,"""Asia""" +2023-04-20,81661,1490,"[\""Tablet\"", \""Charger\""]",1527.82,{},210639,0,"""Asia""" +2023-06-13,81662,8145,"[\""Keyboard\"", \""Laptop\""]",1407.47,"{\""promo\"": \""10%\""}",49690,1,"""Africa""" +2023-05-11,81663,7475,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3881.84,"{\""seasonal\"": \""29%\""}",197066,0,"""South America""" +2023-09-25,81664,4733,"[\""Phone\""]",3930.68,"{\""promo\"": \""5%\""}",117286,1,"""South America""" +2023-02-06,81665,8076,"[\""Headphones\""]",242.92,"{\""promo\"": \""27%\""}",58932,1,"""South America""" +2023-06-05,81666,9473,"[\""Laptop\"", \""Charger\""]",613.73,"{\""loyalty\"": \""8%\""}",73991,1,"""North America""" +2024-04-08,81667,1773,"[\""Wireless Mouse\"", \""Monitor\""]",1911.95,{},143041,1,"""Africa""" +2024-08-21,81668,2094,"[\""Charger\""]",4319.26,{},90780,1,"""Europe""" +2024-08-05,81669,314,"[\""Wireless Mouse\""]",2106.32,"{\""loyalty\"": \""12%\""}",199707,1,"""North America""" +2024-05-27,81670,6792,"[\""Phone\"", \""Keyboard\""]",3388.55,{},159308,0,"""South America""" +2024-05-18,81671,26,"[\""Monitor\"", \""Headphones\""]",182.76,{},99165,1,"""Europe""" +2024-01-29,81672,2114,"[\""Tablet\""]",2159.68,"{\""seasonal\"": \""25%\""}",275190,0,"""Africa""" +2024-11-23,81673,7306,"[\""Headphones\"", \""Keyboard\""]",515.84,{},225402,0,"""Europe""" +2024-12-09,81674,6046,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4213.88,"{\"": \""6%\""}",61920,1,"""Africa""" +2023-05-10,81675,7259,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3979.49,"{\""promo\"": \""13%\""}",46102,0,"""South America""" +2023-01-11,81676,5344,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3675.24,"{\""promo\"": \""10%\""}",178107,1,"""Europe""" +2024-01-24,81677,9349,"[\""Headphones\""]",1304.88,"{\""seasonal\"": \""23%\""}",298613,0,"""South America""" +2024-05-29,81678,7107,"[\""Charger\""]",1006.75,{},180302,1,"""South America""" +2024-11-05,81679,4137,"[\""Monitor\""]",1501.53,{},14220,0,"""Europe""" +2023-09-21,81680,6732,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",3907.99,"{\""loyalty\"": \""17%\""}",170176,1,"""North America""" +2023-02-22,81681,2756,"[\""Tablet\"", \""Phone\"", \""Charger\""]",543.72,{},271108,1,"""Europe""" +2023-09-14,81682,3559,"[\""Wireless Mouse\""]",458.0,{},269791,0,"""North America""" +2023-06-10,81683,8717,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4728.7,"{\"": \""13%\""}",209863,1,"""Europe""" +2023-02-24,81684,972,"[\""Keyboard\"", \""Tablet\""]",2016.34,"{\""promo\"": \""12%\""}",258100,0,"""Africa""" +2023-02-04,81685,8716,"[\""Tablet\""]",2220.72,{},178490,1,"""Asia""" +2023-01-24,81686,3052,"[\""Monitor\""]",3873.55,"{\""seasonal\"": \""15%\""}",117974,0,"""Africa""" +2023-05-14,81687,7584,"[\""Monitor\""]",3600.69,{},178322,0,"""South America""" +2023-06-28,81688,5675,"[\""Headphones\""]",967.72,{},14007,1,"""Europe""" +2024-02-03,81689,4112,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4051.77,{},57340,1,"""Europe""" +2024-12-09,81690,663,"[\""Tablet\"", \""Headphones\""]",4556.02,"{\""promo\"": \""12%\""}",143465,1,"""Asia""" +2024-10-22,81691,2408,"[\""Keyboard\"", \""Headphones\""]",1555.4,{},256924,1,"""Europe""" +2024-03-21,81692,3199,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",551.9,"{\"": \""22%\""}",148253,0,"""Europe""" +2023-12-27,81693,1954,"[\""Laptop\"", \""Charger\""]",2027.27,{},100878,0,"""Europe""" +2024-07-04,81694,2772,"[\""Keyboard\""]",3089.09,{},20940,0,"""Europe""" +2023-05-06,81695,6082,"[\""Keyboard\""]",3494.69,"{\""loyalty\"": \""6%\""}",11404,1,"""North America""" +2023-06-15,81696,3429,"[\""Monitor\"", \""Laptop\""]",3959.45,{},34484,1,"""South America""" +2024-12-05,81697,9032,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2686.43,"{\"": \""30%\""}",139535,1,"""South America""" +2023-02-21,81698,7878,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1933.5,{},257813,0,"""Europe""" +2024-02-20,81699,9043,"[\""Keyboard\""]",1106.04,{},295291,0,"""Asia""" +2023-01-24,81700,1484,"[\""Keyboard\""]",3164.86,{},272308,1,"""Europe""" +2023-09-26,81701,3377,"[\""Monitor\""]",4157.44,"{\""loyalty\"": \""5%\""}",116909,1,"""North America""" +2023-05-06,81702,7797,"[\""Tablet\"", \""Charger\"", \""Phone\""]",350.51,"{\""loyalty\"": \""13%\""}",8499,0,"""Africa""" +2024-08-01,81703,2783,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4216.51,"{\""loyalty\"": \""11%\""}",190909,0,"""Africa""" +2024-02-28,81704,6392,"[\""Monitor\""]",1690.33,"{\""loyalty\"": \""7%\""}",18457,1,"""Europe""" +2023-01-01,81705,3723,"[\""Keyboard\"", \""Tablet\""]",4646.28,{},115010,0,"""Asia""" +2023-11-19,81706,1451,"[\""Keyboard\""]",3864.35,"{\""loyalty\"": \""22%\""}",255641,0,"""Asia""" +2024-02-27,81707,4473,"[\""Phone\"", \""Laptop\""]",457.45,{},288756,1,"""Asia""" +2023-11-11,81708,6707,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1662.11,{},104938,0,"""North America""" +2024-10-30,81709,2388,"[\""Monitor\""]",4465.26,"{\""seasonal\"": \""14%\""}",15642,1,"""Asia""" +2023-01-30,81710,1715,"[\""Wireless Mouse\"", \""Laptop\""]",4593.25,{},253562,0,"""Africa""" +2023-08-24,81711,1041,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3006.0,"{\""seasonal\"": \""25%\""}",158407,0,"""Asia""" +2024-05-05,81712,587,"[\""Charger\"", \""Phone\""]",3158.09,{},60626,0,"""Europe""" +2024-12-04,81713,1856,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1943.8,"{\""seasonal\"": \""11%\""}",299905,1,"""North America""" +2023-10-16,81714,5264,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",95.63,{},131197,1,"""Asia""" +2024-06-07,81715,2392,"[\""Wireless Mouse\"", \""Laptop\""]",3336.52,"{\""seasonal\"": \""20%\""}",39627,0,"""South America""" +2023-12-05,81716,6503,"[\""Tablet\""]",3862.06,"{\""loyalty\"": \""14%\""}",7180,1,"""Asia""" +2023-01-26,81717,2481,"[\""Laptop\"", \""Keyboard\""]",2640.65,"{\""seasonal\"": \""25%\""}",114479,1,"""South America""" +2023-08-29,81718,3495,"[\""Wireless Mouse\""]",1512.72,{},285117,0,"""Asia""" +2024-10-20,81719,9513,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1680.58,{},200877,1,"""Europe""" +2023-12-20,81720,1135,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4710.02,"{\""promo\"": \""16%\""}",27614,0,"""North America""" +2024-10-16,81721,8749,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1457.0,{},23706,1,"""Africa""" +2024-05-26,81722,5117,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3078.23,{},5129,1,"""North America""" +2024-05-22,81723,1133,"[\""Laptop\"", \""Tablet\""]",2705.05,"{\""promo\"": \""5%\""}",57206,1,"""Europe""" +2023-07-06,81724,1339,"[\""Headphones\"", \""Charger\""]",2622.33,"{\""loyalty\"": \""16%\""}",249514,1,"""Africa""" +2024-04-24,81725,7289,"[\""Keyboard\"", \""Monitor\""]",3575.69,"{\""loyalty\"": \""21%\""}",265731,0,"""North America""" +2024-11-13,81726,449,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2727.46,{},88321,0,"""Africa""" +2024-03-06,81727,794,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2992.27,{},270919,0,"""North America""" +2023-07-02,81728,4690,"[\""Wireless Mouse\""]",1974.93,{},59153,0,"""South America""" +2023-09-30,81729,7556,"[\""Tablet\""]",1532.82,{},58194,0,"""Africa""" +2024-05-21,81730,7988,"[\""Monitor\""]",3626.23,{},5103,1,"""Asia""" +2023-05-13,81731,6684,"[\""Keyboard\"", \""Phone\""]",3617.79,{},164784,0,"""South America""" +2024-09-03,81732,1649,"[\""Monitor\"", \""Phone\""]",2489.53,{},67911,0,"""North America""" +2024-12-08,81733,6997,"[\""Monitor\""]",3244.67,"{\""loyalty\"": \""24%\""}",198625,0,"""North America""" +2024-10-25,81734,8875,"[\""Laptop\""]",4121.2,"{\""loyalty\"": \""15%\""}",201223,0,"""South America""" +2023-08-23,81735,1972,"[\""Tablet\""]",3718.71,"{\""promo\"": \""9%\""}",243744,1,"""Asia""" +2023-04-18,81736,5425,"[\""Laptop\"", \""Headphones\""]",313.1,{},231394,0,"""Europe""" +2023-12-29,81737,9776,"[\""Tablet\""]",1392.74,"{\""promo\"": \""25%\""}",90847,1,"""North America""" +2024-10-21,81738,2644,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4139.39,{},113769,1,"""South America""" +2024-09-10,81739,7405,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1006.64,"{\"": \""13%\""}",180272,1,"""Africa""" +2023-02-22,81740,6041,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2120.87,"{\""seasonal\"": \""6%\""}",10791,0,"""South America""" +2023-11-08,81741,9435,"[\""Tablet\""]",3646.54,"{\""promo\"": \""6%\""}",58383,0,"""South America""" +2023-05-09,81742,410,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",511.5,"{\""seasonal\"": \""26%\""}",290632,1,"""South America""" +2023-11-23,81743,9906,"[\""Charger\""]",2112.98,{},149909,1,"""Africa""" +2024-07-25,81744,5285,"[\""Wireless Mouse\"", \""Headphones\""]",2457.62,"{\""seasonal\"": \""27%\""}",210546,0,"""North America""" +2024-11-30,81745,2135,"[\""Wireless Mouse\""]",881.68,{},215746,1,"""Europe""" +2024-04-27,81746,6486,"[\""Laptop\"", \""Monitor\""]",4117.99,"{\"": \""24%\""}",91458,0,"""Africa""" +2023-10-16,81747,4405,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",969.77,"{\""promo\"": \""14%\""}",155276,0,"""Europe""" +2024-05-01,81748,6499,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2396.61,"{\""promo\"": \""5%\""}",249679,1,"""Asia""" +2024-03-05,81749,4893,"[\""Charger\""]",4268.41,{},106328,0,"""Europe""" +2024-07-22,81750,2605,"[\""Headphones\""]",890.59,"{\""seasonal\"": \""30%\""}",48513,0,"""North America""" +2023-04-16,81751,5069,"[\""Wireless Mouse\""]",3936.56,"{\""loyalty\"": \""15%\""}",267933,0,"""Asia""" +2023-12-14,81752,9278,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4491.76,{},10963,0,"""North America""" +2023-10-25,81753,7871,"[\""Keyboard\"", \""Charger\""]",1091.9,{},265087,0,"""Asia""" +2023-05-30,81754,9947,"[\""Tablet\"", \""Keyboard\""]",2573.92,{},45702,1,"""Africa""" +2024-07-07,81755,9947,"[\""Laptop\""]",3845.93,"{\""promo\"": \""5%\""}",263113,0,"""South America""" +2023-12-06,81756,8802,"[\""Wireless Mouse\"", \""Phone\""]",2755.9,"{\""loyalty\"": \""8%\""}",115426,1,"""Africa""" +2023-08-13,81757,2205,"[\""Phone\""]",4846.75,{},287998,1,"""Europe""" +2024-07-10,81758,8235,"[\""Headphones\"", \""Monitor\""]",1454.44,"{\"": \""14%\""}",181914,0,"""North America""" +2024-10-06,81759,8226,"[\""Tablet\""]",3932.41,"{\""promo\"": \""16%\""}",176586,0,"""North America""" +2023-10-16,81760,3747,"[\""Headphones\"", \""Laptop\""]",1218.11,"{\""loyalty\"": \""26%\""}",179941,1,"""Asia""" +2024-08-05,81761,5561,"[\""Charger\"", \""Phone\""]",425.06,{},121553,1,"""Africa""" +2023-01-28,81762,7176,"[\""Tablet\""]",2838.88,"{\""loyalty\"": \""20%\""}",201096,1,"""Asia""" +2024-02-12,81763,4148,"[\""Headphones\"", \""Monitor\""]",794.03,"{\""seasonal\"": \""15%\""}",173304,0,"""South America""" +2024-07-30,81764,7343,"[\""Headphones\""]",4204.59,"{\""seasonal\"": \""18%\""}",237727,1,"""South America""" +2024-02-21,81765,9511,"[\""Phone\"", \""Keyboard\""]",4956.9,{},196427,1,"""South America""" +2023-06-11,81766,7882,"[\""Monitor\""]",1655.62,"{\""seasonal\"": \""24%\""}",253462,1,"""Europe""" +2024-09-20,81767,4248,"[\""Wireless Mouse\""]",1303.33,{},213254,1,"""Europe""" +2023-09-30,81768,3985,"[\""Tablet\""]",2994.58,{},189523,1,"""Asia""" +2023-05-29,81769,9611,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3425.78,{},28094,0,"""Asia""" +2023-06-22,81770,9058,"[\""Phone\""]",4889.38,{},33526,0,"""Asia""" +2023-08-07,81771,7819,"[\""Monitor\""]",765.82,{},151528,0,"""North America""" +2023-04-05,81772,1299,"[\""Laptop\""]",282.92,{},298695,1,"""Europe""" +2023-08-31,81773,1457,"[\""Tablet\""]",106.17,"{\""promo\"": \""30%\""}",173672,1,"""South America""" +2023-01-11,81774,6426,"[\""Headphones\""]",1743.61,{},45872,0,"""North America""" +2024-10-18,81775,4304,"[\""Monitor\""]",3998.01,{},64291,1,"""North America""" +2023-10-23,81776,3534,"[\""Laptop\"", \""Tablet\""]",2536.63,{},183282,0,"""North America""" +2023-06-18,81777,7859,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1294.26,{},246180,1,"""South America""" +2023-03-23,81778,6813,"[\""Headphones\"", \""Charger\""]",3710.96,"{\""loyalty\"": \""28%\""}",271680,1,"""South America""" +2024-02-20,81779,9926,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1168.08,{},215768,1,"""North America""" +2023-08-05,81780,8224,"[\""Wireless Mouse\""]",114.34,"{\""loyalty\"": \""29%\""}",94818,1,"""Asia""" +2024-12-27,81781,5488,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1086.83,{},29426,0,"""Europe""" +2024-12-19,81782,9245,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4369.97,"{\""seasonal\"": \""14%\""}",272812,0,"""Africa""" +2023-08-24,81783,8444,"[\""Tablet\"", \""Keyboard\""]",4989.72,{},29733,1,"""Europe""" +2024-05-07,81784,7141,"[\""Monitor\"", \""Keyboard\""]",4953.37,"{\""seasonal\"": \""6%\""}",209749,0,"""North America""" +2024-12-07,81785,3957,"[\""Phone\""]",3889.25,{},184767,1,"""North America""" +2024-04-17,81786,5953,"[\""Headphones\""]",529.53,"{\"": \""17%\""}",290748,1,"""Asia""" +2024-10-13,81787,4455,"[\""Wireless Mouse\""]",3050.22,{},239538,1,"""North America""" +2023-05-05,81788,8344,"[\""Charger\"", \""Laptop\""]",1810.45,"{\""seasonal\"": \""7%\""}",298779,0,"""South America""" +2023-11-16,81789,4377,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",250.22,"{\""promo\"": \""22%\""}",175962,1,"""Europe""" +2023-02-04,81790,4287,"[\""Monitor\""]",2165.87,{},176186,0,"""Europe""" +2023-02-20,81791,9619,"[\""Laptop\"", \""Headphones\""]",1423.84,{},98378,1,"""North America""" +2024-08-04,81792,2133,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",724.26,"{\""loyalty\"": \""29%\""}",139117,0,"""Asia""" +2024-06-27,81793,9661,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",563.95,{},169901,1,"""Europe""" +2023-05-30,81794,7191,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1214.47,{},198425,1,"""South America""" +2024-12-08,81795,5353,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4193.64,"{\""loyalty\"": \""23%\""}",196843,0,"""Europe""" +2024-04-28,81796,3736,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3686.36,{},168039,1,"""Asia""" +2023-04-13,81797,2627,"[\""Keyboard\""]",541.69,"{\""promo\"": \""13%\""}",278189,0,"""South America""" +2023-09-04,81798,6916,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",740.8,{},229410,1,"""North America""" +2023-04-08,81799,9976,"[\""Charger\""]",4507.15,"{\""promo\"": \""6%\""}",97555,0,"""Europe""" +2024-08-13,81800,6401,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3449.81,{},96732,0,"""Africa""" +2023-05-03,81801,7395,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3185.39,{},172009,0,"""Europe""" +2024-11-03,81802,7949,"[\""Phone\""]",1522.24,"{\"": \""7%\""}",135104,1,"""South America""" +2023-09-22,81803,4856,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1742.65,{},121350,1,"""South America""" +2023-08-01,81804,1906,"[\""Tablet\""]",162.91,{},113503,1,"""Europe""" +2023-10-20,81805,4876,"[\""Charger\""]",3556.24,"{\""loyalty\"": \""24%\""}",249130,1,"""Europe""" +2024-02-06,81806,8763,"[\""Phone\"", \""Tablet\""]",820.48,{},264680,0,"""Africa""" +2024-06-01,81807,4455,"[\""Wireless Mouse\"", \""Phone\""]",188.27,"{\""seasonal\"": \""9%\""}",127344,0,"""Asia""" +2023-02-23,81808,7621,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3111.38,{},215159,1,"""Africa""" +2024-08-11,81809,1607,"[\""Wireless Mouse\""]",4599.25,{},32107,0,"""Europe""" +2024-12-05,81810,6544,"[\""Keyboard\"", \""Phone\""]",3713.19,{},277333,0,"""South America""" +2024-05-21,81811,3368,"[\""Headphones\""]",1884.3,{},31744,0,"""Asia""" +2024-08-31,81812,2298,"[\""Headphones\""]",744.94,"{\"": \""16%\""}",172526,0,"""Asia""" +2023-01-15,81813,6568,"[\""Wireless Mouse\""]",156.24,"{\""seasonal\"": \""15%\""}",19091,0,"""Asia""" +2024-07-10,81814,1492,"[\""Tablet\""]",4321.68,"{\""loyalty\"": \""15%\""}",274886,0,"""South America""" +2023-10-09,81815,5006,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4270.59,{},135444,0,"""Africa""" +2024-01-14,81816,5583,"[\""Laptop\"", \""Charger\""]",929.7,{},259288,1,"""Africa""" +2023-09-20,81817,4371,"[\""Wireless Mouse\""]",1775.82,{},173015,1,"""Africa""" +2024-12-22,81818,9594,"[\""Phone\""]",1797.53,"{\""promo\"": \""20%\""}",92713,0,"""North America""" +2024-08-14,81819,4918,"[\""Charger\""]",170.04,"{\""promo\"": \""26%\""}",105185,0,"""North America""" +2023-07-19,81820,125,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1713.77,"{\""loyalty\"": \""20%\""}",189446,1,"""Africa""" +2023-04-19,81821,7979,"[\""Monitor\""]",1665.99,{},194322,0,"""Europe""" +2024-10-09,81822,4604,"[\""Keyboard\""]",4569.89,{},108652,0,"""North America""" +2023-10-19,81823,6941,"[\""Monitor\"", \""Charger\""]",3146.1,{},107928,0,"""North America""" +2023-09-25,81824,7583,"[\""Charger\"", \""Phone\""]",3633.98,"{\""loyalty\"": \""12%\""}",201754,1,"""Asia""" +2023-05-06,81825,6912,"[\""Keyboard\"", \""Headphones\""]",4186.14,{},111805,0,"""Asia""" +2024-04-22,81826,3327,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3614.04,{},149487,0,"""North America""" +2023-09-07,81827,6863,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2400.78,"{\""promo\"": \""7%\""}",66500,0,"""Africa""" +2023-11-11,81828,6525,"[\""Tablet\""]",3570.9,"{\""loyalty\"": \""6%\""}",110049,1,"""Africa""" +2023-04-06,81829,7473,"[\""Tablet\""]",1607.25,{},154450,0,"""North America""" +2024-09-27,81830,5763,"[\""Charger\"", \""Laptop\""]",631.46,{},80338,1,"""Asia""" +2023-10-10,81831,6469,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2652.13,"{\""seasonal\"": \""25%\""}",53069,1,"""Europe""" +2024-01-30,81832,1240,"[\""Monitor\"", \""Wireless Mouse\""]",1503.18,"{\""promo\"": \""23%\""}",114144,1,"""Asia""" +2024-03-22,81833,4885,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1069.52,{},129655,1,"""South America""" +2023-10-07,81834,6225,"[\""Tablet\""]",2095.7,{},161728,1,"""Asia""" +2024-09-07,81835,3847,"[\""Charger\""]",1461.67,"{\""seasonal\"": \""11%\""}",65946,1,"""Asia""" +2023-10-14,81836,8632,"[\""Charger\""]",4900.77,{},151772,1,"""Africa""" +2023-06-26,81837,7327,"[\""Keyboard\""]",430.59,"{\""promo\"": \""28%\""}",118597,1,"""Asia""" +2024-06-21,81838,744,"[\""Keyboard\"", \""Charger\""]",1648.82,"{\"": \""22%\""}",191500,0,"""Africa""" +2023-12-30,81839,2054,"[\""Phone\"", \""Tablet\""]",4153.24,"{\""loyalty\"": \""20%\""}",168317,1,"""Europe""" +2023-03-18,81840,8558,"[\""Wireless Mouse\""]",3085.49,"{\"": \""26%\""}",264480,1,"""Africa""" +2024-08-07,81841,2758,"[\""Wireless Mouse\"", \""Charger\""]",4048.78,{},156944,1,"""Africa""" +2024-03-12,81842,1621,"[\""Monitor\""]",743.69,{},249477,0,"""South America""" +2024-11-26,81843,9367,"[\""Laptop\"", \""Monitor\""]",3146.67,"{\""promo\"": \""5%\""}",211929,1,"""Africa""" +2024-06-18,81844,4140,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",423.16,{},225605,1,"""Asia""" +2024-07-23,81845,2246,"[\""Laptop\"", \""Keyboard\""]",3032.55,{},70628,0,"""Europe""" +2024-07-05,81846,5748,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",4040.54,"{\"": \""12%\""}",90218,0,"""North America""" +2023-02-18,81847,9136,"[\""Monitor\""]",581.63,{},121660,1,"""Europe""" +2024-11-07,81848,8096,"[\""Laptop\""]",953.93,{},288421,0,"""Asia""" +2023-01-09,81849,4927,"[\""Monitor\""]",594.63,{},73212,0,"""Europe""" +2023-08-27,81850,1209,"[\""Phone\""]",3288.41,"{\""promo\"": \""27%\""}",160630,1,"""Europe""" +2024-12-20,81851,3319,"[\""Monitor\""]",3241.63,"{\"": \""20%\""}",276803,1,"""Asia""" +2023-04-18,81852,1367,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4266.66,"{\""seasonal\"": \""12%\""}",243735,0,"""Asia""" +2024-02-16,81853,7989,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2332.15,{},221667,1,"""South America""" +2023-06-20,81854,104,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1796.88,"{\"": \""15%\""}",33808,1,"""Europe""" +2023-01-11,81855,9999,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",295.24,"{\""seasonal\"": \""28%\""}",283724,1,"""Africa""" +2024-01-18,81856,2804,"[\""Phone\""]",1507.14,"{\""seasonal\"": \""17%\""}",112164,0,"""Europe""" +2024-08-08,81857,1269,"[\""Keyboard\"", \""Monitor\""]",906.61,"{\""promo\"": \""9%\""}",79884,1,"""Africa""" +2023-04-18,81858,530,"[\""Laptop\"", \""Keyboard\""]",4081.9,{},222367,0,"""South America""" +2024-03-18,81859,4792,"[\""Charger\""]",1387.87,{},62155,1,"""South America""" +2024-03-08,81860,431,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4963.68,{},207685,0,"""Africa""" +2024-03-21,81861,8579,"[\""Phone\"", \""Headphones\""]",2498.56,{},82122,0,"""South America""" +2023-12-08,81862,8614,"[\""Wireless Mouse\"", \""Phone\""]",4707.14,{},262126,1,"""Asia""" +2023-07-31,81863,2150,"[\""Keyboard\"", \""Laptop\""]",4751.42,"{\""loyalty\"": \""23%\""}",178160,0,"""Europe""" +2024-03-21,81864,6017,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4892.17,{},290153,0,"""Europe""" +2023-09-17,81865,6490,"[\""Headphones\""]",670.37,"{\""seasonal\"": \""25%\""}",32485,1,"""South America""" +2024-12-20,81866,4421,"[\""Wireless Mouse\"", \""Monitor\""]",703.72,{},81407,0,"""North America""" +2023-11-04,81867,2092,"[\""Headphones\"", \""Monitor\""]",3333.23,{},87881,0,"""Africa""" +2024-07-02,81868,2932,"[\""Wireless Mouse\""]",3750.13,{},180530,0,"""North America""" +2023-03-27,81869,5483,"[\""Wireless Mouse\""]",3224.98,"{\""seasonal\"": \""29%\""}",240362,1,"""North America""" +2024-07-07,81870,5957,"[\""Tablet\"", \""Laptop\""]",1297.21,{},266118,1,"""Asia""" +2023-07-13,81871,8812,"[\""Headphones\"", \""Phone\""]",3854.08,"{\""promo\"": \""11%\""}",234240,1,"""Asia""" +2024-03-10,81872,671,"[\""Laptop\""]",3401.91,{},80366,0,"""South America""" +2024-08-09,81873,9005,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3581.97,{},159502,0,"""Asia""" +2023-01-26,81874,3960,"[\""Monitor\"", \""Wireless Mouse\""]",2287.44,{},76211,1,"""Africa""" +2024-03-07,81875,5453,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",753.66,"{\""seasonal\"": \""13%\""}",10411,0,"""Africa""" +2024-10-18,81876,6317,"[\""Laptop\""]",2829.6,"{\""seasonal\"": \""20%\""}",168812,1,"""North America""" +2023-07-28,81877,9585,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4081.51,{},280532,0,"""Africa""" +2023-03-06,81878,8889,"[\""Phone\""]",128.6,{},225224,1,"""North America""" +2024-05-20,81879,4098,"[\""Tablet\""]",347.24,{},96015,1,"""North America""" +2024-09-26,81880,1912,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",229.49,"{\""loyalty\"": \""15%\""}",9591,0,"""North America""" +2023-02-16,81881,9252,"[\""Monitor\"", \""Keyboard\""]",4281.82,{},229843,1,"""South America""" +2024-05-08,81882,1984,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1443.46,"{\""loyalty\"": \""20%\""}",223174,0,"""North America""" +2023-10-11,81883,8694,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4740.55,{},48399,1,"""Europe""" +2024-11-28,81884,6032,"[\""Monitor\"", \""Phone\""]",3446.39,"{\""seasonal\"": \""9%\""}",205658,1,"""North America""" +2024-04-20,81885,8338,"[\""Wireless Mouse\"", \""Headphones\""]",1049.75,{},60408,1,"""North America""" +2023-01-13,81886,7474,"[\""Charger\"", \""Monitor\""]",4374.09,{},28457,0,"""South America""" +2024-02-25,81887,1231,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4991.56,"{\"": \""20%\""}",168860,1,"""Africa""" +2023-03-15,81888,9351,"[\""Keyboard\"", \""Phone\""]",3586.2,{},34923,0,"""Europe""" +2023-12-17,81889,4625,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1705.1,{},271611,0,"""South America""" +2023-03-26,81890,2100,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2392.86,{},13867,0,"""Europe""" +2024-08-07,81891,9967,"[\""Headphones\""]",4530.61,{},136315,1,"""Africa""" +2023-03-24,81892,6489,"[\""Charger\"", \""Keyboard\""]",2822.99,{},175037,0,"""Europe""" +2023-09-27,81893,4459,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3496.7,{},190469,0,"""Africa""" +2023-02-23,81894,8157,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",495.54,{},109421,1,"""Europe""" +2023-03-30,81895,4642,"[\""Charger\"", \""Laptop\"", \""Phone\""]",718.64,"{\""seasonal\"": \""5%\""}",121634,0,"""Africa""" +2024-03-13,81896,9635,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2400.11,{},46215,1,"""South America""" +2023-08-13,81897,1482,"[\""Charger\"", \""Monitor\""]",3306.2,"{\""seasonal\"": \""25%\""}",208871,1,"""Europe""" +2023-07-04,81898,7540,"[\""Headphones\"", \""Monitor\""]",4879.78,{},284285,0,"""Asia""" +2024-10-24,81899,7302,"[\""Wireless Mouse\""]",100.12,{},6123,1,"""Africa""" +2024-09-12,81900,4373,"[\""Wireless Mouse\"", \""Headphones\""]",2156.13,"{\""loyalty\"": \""13%\""}",148114,0,"""Europe""" +2023-09-21,81901,6157,"[\""Laptop\""]",4660.4,{},117506,0,"""Asia""" +2024-05-23,81902,6942,"[\""Wireless Mouse\""]",4001.34,{},173063,1,"""Africa""" +2024-01-19,81903,7462,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4523.82,{},76970,0,"""South America""" +2023-10-30,81904,3775,"[\""Keyboard\"", \""Laptop\""]",4652.54,{},60059,0,"""Europe""" +2024-04-23,81905,3456,"[\""Laptop\"", \""Phone\""]",4712.56,"{\""promo\"": \""12%\""}",83992,1,"""South America""" +2023-03-24,81906,3691,"[\""Phone\""]",2951.83,"{\"": \""6%\""}",47527,1,"""South America""" +2024-07-17,81907,1156,"[\""Tablet\"", \""Laptop\""]",4148.05,{},48835,1,"""Asia""" +2023-07-20,81908,5826,"[\""Headphones\""]",978.96,"{\""promo\"": \""17%\""}",1968,0,"""Europe""" +2024-03-31,81909,1603,"[\""Laptop\"", \""Phone\""]",956.96,"{\""seasonal\"": \""7%\""}",185219,0,"""Africa""" +2023-02-25,81910,4419,"[\""Phone\""]",3393.09,"{\""promo\"": \""6%\""}",295796,0,"""North America""" +2023-10-01,81911,9178,"[\""Headphones\"", \""Monitor\""]",830.54,{},102415,1,"""North America""" +2024-01-09,81912,8268,"[\""Laptop\"", \""Charger\""]",2709.53,{},247476,1,"""Europe""" +2023-03-17,81913,3188,"[\""Phone\""]",4444.1,{},45807,0,"""South America""" +2023-06-16,81914,8312,"[\""Wireless Mouse\"", \""Keyboard\""]",1605.34,{},80853,0,"""Africa""" +2023-04-10,81915,1452,"[\""Charger\""]",4673.87,"{\""seasonal\"": \""22%\""}",245070,0,"""South America""" +2024-06-14,81916,6096,"[\""Laptop\""]",2429.54,{},223974,1,"""Africa""" +2024-09-23,81917,4152,"[\""Headphones\"", \""Charger\""]",4999.04,"{\""loyalty\"": \""13%\""}",274370,0,"""South America""" +2024-08-26,81918,9608,"[\""Tablet\"", \""Laptop\""]",2919.31,{},260793,1,"""Africa""" +2024-12-02,81919,1351,"[\""Phone\"", \""Headphones\""]",932.34,"{\""promo\"": \""28%\""}",144213,0,"""Asia""" +2023-12-24,81920,1156,"[\""Headphones\""]",1201.52,{},111576,0,"""Africa""" +2023-08-02,81921,7499,"[\""Phone\"", \""Keyboard\""]",1273.2,"{\""seasonal\"": \""26%\""}",264129,0,"""North America""" +2023-12-29,81922,1143,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1871.05,{},151886,1,"""South America""" +2023-01-14,81923,6215,"[\""Monitor\""]",3144.89,{},261008,0,"""Africa""" +2024-06-07,81924,6107,"[\""Keyboard\"", \""Wireless Mouse\""]",4706.54,"{\""promo\"": \""20%\""}",16034,1,"""Africa""" +2023-09-28,81925,8664,"[\""Laptop\"", \""Headphones\""]",3427.0,{},278097,0,"""Europe""" +2024-04-06,81926,3399,"[\""Keyboard\""]",4913.76,"{\""loyalty\"": \""5%\""}",43370,1,"""South America""" +2024-08-20,81927,1323,"[\""Headphones\"", \""Keyboard\""]",3055.42,"{\""promo\"": \""8%\""}",230624,1,"""Asia""" +2023-12-19,81928,8829,"[\""Monitor\"", \""Tablet\""]",3595.13,{},295372,1,"""North America""" +2023-06-07,81929,5518,"[\""Charger\"", \""Phone\""]",1942.22,{},58464,0,"""South America""" +2024-06-28,81930,3442,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3258.26,"{\"": \""21%\""}",28135,0,"""South America""" +2023-08-27,81931,3750,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1303.56,{},295866,0,"""Asia""" +2023-11-15,81932,6022,"[\""Tablet\""]",3916.58,{},299480,1,"""North America""" +2023-07-03,81933,7566,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1018.45,"{\""promo\"": \""28%\""}",35906,0,"""South America""" +2023-04-11,81934,5118,"[\""Tablet\""]",2307.22,"{\""loyalty\"": \""16%\""}",13174,0,"""Africa""" +2023-05-21,81935,9539,"[\""Monitor\""]",1116.21,{},166544,1,"""Europe""" +2023-04-06,81936,8191,"[\""Headphones\""]",3388.06,"{\""loyalty\"": \""12%\""}",134245,1,"""Europe""" +2024-01-11,81937,8156,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2749.47,{},105174,1,"""Europe""" +2023-08-01,81938,592,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4558.46,{},267206,1,"""Europe""" +2024-05-09,81939,3462,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4053.45,{},121909,1,"""Africa""" +2023-03-14,81940,603,"[\""Wireless Mouse\""]",4792.52,{},153792,0,"""South America""" +2024-12-11,81941,2491,"[\""Wireless Mouse\""]",2447.17,{},107933,1,"""Europe""" +2023-09-25,81942,553,"[\""Headphones\""]",4875.74,{},289007,1,"""Europe""" +2024-03-20,81943,6900,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1266.98,"{\""promo\"": \""15%\""}",154429,0,"""Africa""" +2024-01-21,81944,3261,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4087.26,{},83176,0,"""Europe""" +2024-06-09,81945,9126,"[\""Phone\""]",2928.14,"{\""loyalty\"": \""27%\""}",24111,0,"""North America""" +2024-02-12,81946,3337,"[\""Charger\""]",1171.28,{},298818,0,"""Europe""" +2024-02-09,81947,3940,"[\""Laptop\""]",3296.15,"{\"": \""14%\""}",170194,0,"""Asia""" +2023-02-15,81948,4842,"[\""Wireless Mouse\""]",2554.77,{},293061,0,"""Europe""" +2024-11-01,81949,2372,"[\""Keyboard\""]",4776.33,{},66479,1,"""Europe""" +2023-02-17,81950,956,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1546.68,{},169303,0,"""North America""" +2024-04-26,81951,1401,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",97.43,"{\""promo\"": \""11%\""}",116274,0,"""Africa""" +2023-09-25,81952,7984,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1279.28,{},46240,1,"""Africa""" +2023-02-17,81953,6096,"[\""Phone\"", \""Laptop\""]",4851.73,"{\""seasonal\"": \""14%\""}",39042,0,"""Asia""" +2023-08-02,81954,6587,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1874.66,{},69003,0,"""South America""" +2023-07-29,81955,9843,"[\""Phone\"", \""Tablet\""]",4271.67,{},31177,0,"""Asia""" +2024-04-14,81956,6294,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4363.64,"{\"": \""5%\""}",72456,0,"""South America""" +2024-01-29,81957,3602,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",3995.59,{},36739,1,"""Asia""" +2023-01-29,81958,8922,"[\""Headphones\""]",2389.84,{},174229,0,"""Asia""" +2024-06-19,81959,9525,"[\""Phone\""]",1493.45,{},8266,1,"""North America""" +2024-11-20,81960,5896,"[\""Charger\"", \""Headphones\""]",527.96,"{\""seasonal\"": \""14%\""}",240308,0,"""North America""" +2024-05-28,81961,5298,"[\""Tablet\""]",2178.05,{},21424,0,"""Europe""" +2023-09-12,81962,9212,"[\""Phone\""]",1726.93,{},207884,1,"""Europe""" +2023-07-30,81963,1288,"[\""Laptop\"", \""Charger\""]",2211.87,{},192178,0,"""Europe""" +2023-03-13,81964,3134,"[\""Phone\""]",92.42,"{\""loyalty\"": \""16%\""}",105891,1,"""South America""" +2024-06-30,81965,2983,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4375.98,{},192827,1,"""South America""" +2024-10-15,81966,6301,"[\""Charger\""]",3399.21,{},31319,0,"""Asia""" +2023-02-01,81967,9097,"[\""Keyboard\""]",4823.51,{},238473,0,"""North America""" +2024-06-14,81968,3684,"[\""Wireless Mouse\"", \""Keyboard\""]",2748.2,{},246153,1,"""Africa""" +2024-11-20,81969,5870,"[\""Wireless Mouse\"", \""Tablet\""]",2967.04,"{\""promo\"": \""19%\""}",176031,0,"""North America""" +2024-01-18,81970,9234,"[\""Laptop\""]",53.91,{},24252,1,"""South America""" +2024-12-05,81971,258,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1340.28,{},192409,0,"""Europe""" +2023-04-12,81972,2341,"[\""Wireless Mouse\"", \""Phone\""]",3576.56,{},100474,0,"""Asia""" +2024-05-25,81973,6405,"[\""Wireless Mouse\"", \""Keyboard\""]",1024.43,{},281163,0,"""Europe""" +2024-02-02,81974,7200,"[\""Keyboard\""]",3281.95,"{\""seasonal\"": \""7%\""}",153639,0,"""Europe""" +2023-01-18,81975,3578,"[\""Phone\""]",4873.12,"{\""loyalty\"": \""12%\""}",110302,0,"""Africa""" +2023-11-09,81976,4426,"[\""Laptop\"", \""Phone\""]",3844.93,{},187197,0,"""Europe""" +2024-04-13,81977,7914,"[\""Wireless Mouse\""]",4398.48,{},108879,0,"""South America""" +2024-01-23,81978,821,"[\""Keyboard\""]",4407.06,"{\""loyalty\"": \""25%\""}",41113,1,"""South America""" +2024-10-20,81979,1905,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2569.2,{},46929,1,"""North America""" +2023-09-29,81980,4300,"[\""Phone\""]",3139.07,{},213074,0,"""North America""" +2024-12-22,81981,7859,"[\""Tablet\""]",1219.56,{},79854,1,"""North America""" +2023-12-23,81982,8445,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",670.13,"{\""promo\"": \""5%\""}",279862,1,"""Asia""" +2024-11-04,81983,4668,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4639.27,"{\"": \""16%\""}",160877,1,"""Europe""" +2023-04-03,81984,9203,"[\""Charger\"", \""Headphones\""]",84.54,"{\""loyalty\"": \""17%\""}",151242,1,"""Europe""" +2023-09-22,81985,8172,"[\""Keyboard\"", \""Laptop\""]",4011.73,{},67998,1,"""Europe""" +2024-08-01,81986,8261,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",746.39,"{\""seasonal\"": \""17%\""}",99630,0,"""Africa""" +2024-07-26,81987,1399,"[\""Monitor\""]",1251.58,{},132448,0,"""Africa""" +2024-05-30,81988,5467,"[\""Charger\""]",4845.14,"{\""promo\"": \""5%\""}",172740,0,"""Europe""" +2023-05-31,81989,9405,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1046.3,{},152758,1,"""Africa""" +2024-12-26,81990,733,"[\""Wireless Mouse\""]",1536.39,{},33508,1,"""Asia""" +2023-05-13,81991,8558,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",88.19,{},98087,0,"""Asia""" +2023-06-16,81992,6899,"[\""Tablet\"", \""Laptop\""]",3246.71,"{\""seasonal\"": \""20%\""}",112287,1,"""North America""" +2024-03-03,81993,5277,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1754.86,"{\""loyalty\"": \""14%\""}",241695,0,"""North America""" +2024-12-07,81994,7630,"[\""Monitor\""]",700.43,"{\""seasonal\"": \""16%\""}",107729,0,"""Africa""" +2024-09-21,81995,2524,"[\""Headphones\"", \""Wireless Mouse\""]",3982.47,{},199662,1,"""North America""" +2024-11-28,81996,3345,"[\""Monitor\"", \""Laptop\""]",1928.77,"{\""promo\"": \""18%\""}",180365,0,"""South America""" +2024-02-06,81997,1386,"[\""Headphones\""]",3366.37,{},225357,0,"""Europe""" +2023-08-20,81998,7726,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",997.04,"{\"": \""18%\""}",191888,1,"""South America""" +2023-04-15,81999,5874,"[\""Phone\""]",3878.29,"{\""seasonal\"": \""27%\""}",57361,0,"""Asia""" +2024-10-19,82000,7982,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2977.05,"{\""loyalty\"": \""25%\""}",29628,0,"""North America""" +2023-07-17,82001,5854,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3885.77,{},145229,0,"""South America""" +2023-12-10,82002,1559,"[\""Laptop\"", \""Charger\""]",1699.21,"{\""promo\"": \""29%\""}",231239,1,"""Africa""" +2024-07-28,82003,9230,"[\""Monitor\"", \""Laptop\""]",1930.02,{},246407,1,"""Asia""" +2023-03-13,82004,3700,"[\""Wireless Mouse\"", \""Tablet\""]",3697.07,{},227821,0,"""South America""" +2023-03-28,82005,961,"[\""Keyboard\"", \""Tablet\""]",4254.28,{},32837,0,"""Africa""" +2024-12-04,82006,6268,"[\""Headphones\"", \""Wireless Mouse\""]",364.55,{},63542,1,"""Africa""" +2024-06-16,82007,6533,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2622.85,{},165903,0,"""Europe""" +2023-01-29,82008,1308,"[\""Keyboard\""]",3695.62,"{\"": \""17%\""}",69652,1,"""South America""" +2024-10-26,82009,8004,"[\""Monitor\"", \""Phone\""]",2056.48,"{\""loyalty\"": \""22%\""}",140962,1,"""South America""" +2024-08-15,82010,5668,"[\""Tablet\""]",2389.82,{},283671,0,"""South America""" +2024-05-29,82011,7733,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1738.0,{},123395,0,"""Asia""" +2023-06-16,82012,2959,"[\""Charger\""]",3669.01,"{\"": \""26%\""}",231785,1,"""Europe""" +2024-08-26,82013,3351,"[\""Tablet\"", \""Phone\""]",3735.3,{},227860,0,"""Asia""" +2023-10-25,82014,6403,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4174.98,{},35513,0,"""Europe""" +2023-11-01,82015,5210,"[\""Headphones\"", \""Tablet\""]",1434.67,"{\""seasonal\"": \""8%\""}",157286,1,"""North America""" +2023-07-03,82016,5387,"[\""Tablet\""]",435.63,{},188824,1,"""North America""" +2023-12-27,82017,4884,"[\""Phone\"", \""Laptop\""]",376.74,{},299700,1,"""Europe""" +2024-08-29,82018,8458,"[\""Monitor\"", \""Headphones\""]",1663.26,"{\""loyalty\"": \""20%\""}",122154,1,"""South America""" +2024-11-26,82019,8657,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",579.04,{},203688,0,"""South America""" +2024-06-09,82020,5615,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4007.27,"{\""seasonal\"": \""8%\""}",67226,1,"""South America""" +2024-03-18,82021,2298,"[\""Tablet\"", \""Phone\""]",321.8,{},261787,1,"""Europe""" +2023-01-25,82022,2489,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1402.75,"{\""loyalty\"": \""18%\""}",294013,1,"""South America""" +2023-05-03,82023,7683,"[\""Tablet\""]",542.8,"{\"": \""30%\""}",232244,0,"""South America""" +2023-08-18,82024,6466,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4569.24,{},239644,0,"""Asia""" +2024-05-13,82025,9247,"[\""Phone\"", \""Headphones\""]",4354.83,{},243397,0,"""Asia""" +2024-09-13,82026,4348,"[\""Phone\""]",3002.7,"{\""loyalty\"": \""23%\""}",269236,0,"""Asia""" +2024-02-25,82027,8353,"[\""Laptop\""]",4192.4,"{\""loyalty\"": \""20%\""}",25045,0,"""South America""" +2024-12-05,82028,1183,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2927.08,"{\""seasonal\"": \""6%\""}",100319,1,"""Africa""" +2023-06-12,82029,4600,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4434.2,{},155602,0,"""North America""" +2023-10-12,82030,5626,"[\""Charger\"", \""Wireless Mouse\""]",329.84,"{\""promo\"": \""24%\""}",208997,0,"""North America""" +2023-11-19,82031,7836,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",747.42,{},113830,1,"""Africa""" +2024-09-10,82032,7936,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2503.07,"{\""promo\"": \""26%\""}",124923,0,"""Europe""" +2024-10-25,82033,3527,"[\""Headphones\"", \""Tablet\""]",62.01,"{\"": \""29%\""}",195807,1,"""Asia""" +2024-02-10,82034,8503,"[\""Tablet\""]",3778.85,"{\""promo\"": \""18%\""}",277817,0,"""Europe""" +2024-12-11,82035,2328,"[\""Phone\"", \""Tablet\""]",1139.23,"{\""seasonal\"": \""5%\""}",59553,0,"""Asia""" +2023-05-07,82036,27,"[\""Tablet\"", \""Monitor\""]",1558.48,"{\""promo\"": \""15%\""}",178804,0,"""North America""" +2024-11-01,82037,587,"[\""Charger\""]",1454.12,"{\""loyalty\"": \""5%\""}",199995,0,"""South America""" +2024-07-21,82038,6721,"[\""Wireless Mouse\""]",521.63,"{\""promo\"": \""25%\""}",149584,0,"""North America""" +2023-07-21,82039,814,"[\""Tablet\""]",3470.3,{},39795,1,"""Asia""" +2023-04-09,82040,4895,"[\""Wireless Mouse\"", \""Monitor\""]",203.99,{},237112,1,"""North America""" +2024-06-20,82041,3467,"[\""Laptop\""]",3437.49,{},43565,0,"""Asia""" +2024-04-27,82042,3409,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",979.87,"{\""seasonal\"": \""30%\""}",140068,1,"""South America""" +2023-12-23,82043,4580,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3662.48,{},106907,0,"""Africa""" +2023-01-09,82044,9340,"[\""Wireless Mouse\"", \""Tablet\""]",992.95,"{\""promo\"": \""28%\""}",43092,0,"""Africa""" +2023-03-04,82045,2371,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4238.96,{},214471,1,"""South America""" +2024-06-22,82046,5933,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1872.89,"{\""seasonal\"": \""8%\""}",9851,1,"""North America""" +2024-07-27,82047,5858,"[\""Charger\"", \""Headphones\""]",1936.62,"{\""loyalty\"": \""12%\""}",70557,0,"""Africa""" +2023-01-10,82048,7322,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1013.43,"{\""loyalty\"": \""20%\""}",30218,0,"""Asia""" +2023-10-08,82049,2148,"[\""Wireless Mouse\"", \""Keyboard\""]",3653.85,{},146667,0,"""North America""" +2023-03-30,82050,4522,"[\""Charger\""]",3510.11,{},195198,0,"""Europe""" +2024-09-30,82051,7881,"[\""Charger\""]",528.07,{},73807,1,"""Africa""" +2023-10-02,82052,1226,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2022.34,{},253853,1,"""Africa""" +2024-06-19,82053,3598,"[\""Wireless Mouse\"", \""Laptop\""]",3375.3,"{\""loyalty\"": \""20%\""}",62267,1,"""South America""" +2023-02-11,82054,5589,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1456.61,{},186492,1,"""Africa""" +2023-04-15,82055,6064,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",254.53,{},12283,1,"""North America""" +2023-04-26,82056,3310,"[\""Monitor\""]",2863.83,"{\""loyalty\"": \""29%\""}",10673,1,"""Africa""" +2024-09-08,82057,7707,"[\""Wireless Mouse\""]",1251.6,{},64569,1,"""Asia""" +2024-04-13,82058,8623,"[\""Charger\""]",4846.44,"{\""seasonal\"": \""14%\""}",269059,0,"""Europe""" +2023-09-12,82059,5655,"[\""Monitor\"", \""Laptop\""]",395.51,"{\""seasonal\"": \""22%\""}",37905,0,"""Africa""" +2023-02-14,82060,4074,"[\""Charger\""]",1108.62,{},294316,0,"""Asia""" +2023-08-22,82061,1381,"[\""Wireless Mouse\"", \""Headphones\""]",4036.78,"{\"": \""19%\""}",222599,0,"""South America""" +2024-11-22,82062,6453,"[\""Headphones\""]",4842.5,"{\"": \""16%\""}",15527,0,"""South America""" +2024-06-02,82063,8827,"[\""Charger\"", \""Tablet\"", \""Phone\""]",162.56,"{\""loyalty\"": \""22%\""}",51826,1,"""North America""" +2024-08-23,82064,3456,"[\""Laptop\""]",4015.68,{},203006,0,"""Europe""" +2023-05-31,82065,6007,"[\""Wireless Mouse\""]",2890.15,{},172272,0,"""South America""" +2023-02-07,82066,3853,"[\""Laptop\""]",4212.38,{},223034,1,"""South America""" +2024-10-14,82067,1209,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4839.97,{},11506,1,"""Europe""" +2023-05-06,82068,1254,"[\""Laptop\"", \""Keyboard\""]",2801.82,"{\"": \""21%\""}",119607,1,"""Europe""" +2023-04-16,82069,145,"[\""Keyboard\"", \""Charger\""]",3635.7,"{\""seasonal\"": \""12%\""}",77508,1,"""Europe""" +2023-01-21,82070,6846,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2581.41,"{\"": \""13%\""}",169637,0,"""South America""" +2023-02-11,82071,8072,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",950.2,{},290931,1,"""Asia""" +2024-10-03,82072,4202,"[\""Monitor\""]",637.45,{},219654,0,"""Asia""" +2023-02-05,82073,3738,"[\""Tablet\"", \""Monitor\""]",3645.99,"{\""seasonal\"": \""19%\""}",114985,0,"""Europe""" +2024-02-25,82074,7130,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1285.49,"{\""loyalty\"": \""13%\""}",253532,1,"""Europe""" +2023-02-20,82075,6642,"[\""Keyboard\""]",4013.23,{},61049,1,"""North America""" +2024-06-28,82076,126,"[\""Tablet\"", \""Monitor\""]",4522.56,{},94919,1,"""Europe""" +2024-02-08,82077,8432,"[\""Tablet\""]",2206.98,{},205958,1,"""Africa""" +2024-02-14,82078,9977,"[\""Charger\""]",205.3,"{\""seasonal\"": \""24%\""}",6931,0,"""North America""" +2024-09-13,82079,7734,"[\""Monitor\"", \""Charger\""]",1278.02,"{\""seasonal\"": \""14%\""}",39083,1,"""Asia""" +2024-03-28,82080,4046,"[\""Keyboard\""]",643.83,"{\""promo\"": \""11%\""}",101661,1,"""Africa""" +2023-10-02,82081,1328,"[\""Monitor\"", \""Laptop\""]",2006.76,{},292898,0,"""South America""" +2023-08-11,82082,1454,"[\""Laptop\"", \""Headphones\""]",3683.48,{},114282,1,"""South America""" +2023-04-18,82083,6862,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",233.17,"{\"": \""30%\""}",110419,1,"""South America""" +2024-09-05,82084,1316,"[\""Monitor\""]",3806.55,{},206520,0,"""North America""" +2024-09-11,82085,223,"[\""Monitor\"", \""Headphones\""]",3803.95,"{\"": \""7%\""}",207446,1,"""Europe""" +2023-04-29,82086,8556,"[\""Monitor\""]",513.52,"{\"": \""23%\""}",237799,1,"""Europe""" +2023-05-08,82087,132,"[\""Charger\""]",2129.26,{},288066,0,"""Europe""" +2023-08-27,82088,8611,"[\""Charger\""]",4443.64,{},126893,0,"""Asia""" +2023-01-15,82089,6821,"[\""Laptop\"", \""Wireless Mouse\""]",3517.06,{},192475,1,"""Africa""" +2024-02-10,82090,6510,"[\""Laptop\"", \""Phone\""]",1185.73,{},17762,0,"""North America""" +2024-08-05,82091,3769,"[\""Monitor\"", \""Tablet\""]",3794.72,{},216868,0,"""South America""" +2024-05-10,82092,2308,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2169.82,{},258102,0,"""South America""" +2024-10-25,82093,9829,"[\""Tablet\"", \""Charger\""]",1861.11,"{\""seasonal\"": \""22%\""}",247501,1,"""North America""" +2024-07-30,82094,5127,"[\""Tablet\"", \""Laptop\""]",1746.25,"{\""promo\"": \""7%\""}",67807,0,"""South America""" +2023-05-20,82095,515,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2173.46,{},46346,1,"""South America""" +2024-12-05,82096,4909,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",106.39,{},14304,1,"""Asia""" +2023-10-05,82097,3692,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2829.67,"{\""seasonal\"": \""7%\""}",103590,0,"""Asia""" +2024-03-27,82098,7903,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3083.54,"{\""promo\"": \""29%\""}",98945,1,"""Europe""" +2023-04-04,82099,817,"[\""Keyboard\""]",4818.39,"{\""seasonal\"": \""14%\""}",294048,0,"""Asia""" +2024-07-29,82100,4234,"[\""Laptop\"", \""Wireless Mouse\""]",2972.45,"{\""promo\"": \""23%\""}",98637,0,"""South America""" +2023-07-31,82101,2332,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2862.01,{},282222,1,"""South America""" +2024-03-17,82102,7013,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",894.8,{},12582,1,"""Asia""" +2023-02-04,82103,4917,"[\""Tablet\"", \""Headphones\""]",4225.19,"{\"": \""19%\""}",275375,0,"""South America""" +2023-01-31,82104,5123,"[\""Charger\""]",3534.11,"{\""seasonal\"": \""12%\""}",167612,0,"""Africa""" +2024-05-07,82105,2379,"[\""Keyboard\""]",3851.42,{},263765,1,"""North America""" +2024-08-22,82106,8759,"[\""Phone\""]",2699.48,"{\"": \""17%\""}",235482,1,"""South America""" +2024-08-19,82107,4538,"[\""Laptop\"", \""Charger\""]",4835.79,{},70161,1,"""South America""" +2023-04-13,82108,3445,"[\""Tablet\"", \""Charger\""]",219.47,"{\""loyalty\"": \""30%\""}",204055,1,"""Asia""" +2023-12-17,82109,1728,"[\""Monitor\""]",1460.55,{},116793,1,"""Africa""" +2023-02-05,82110,3362,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2158.1,"{\"": \""16%\""}",149332,0,"""Asia""" +2024-01-10,82111,9614,"[\""Phone\"", \""Headphones\""]",3242.53,{},73036,0,"""Europe""" +2023-05-25,82112,5938,"[\""Tablet\""]",3923.19,"{\""loyalty\"": \""21%\""}",135377,1,"""Africa""" +2023-11-23,82113,8382,"[\""Monitor\""]",4824.48,"{\"": \""10%\""}",142130,0,"""Asia""" +2024-04-22,82114,941,"[\""Wireless Mouse\"", \""Charger\""]",3560.12,"{\""promo\"": \""8%\""}",54564,1,"""Asia""" +2024-07-30,82115,5555,"[\""Tablet\"", \""Charger\""]",2013.78,{},62124,0,"""Asia""" +2023-02-02,82116,4905,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3240.35,{},143870,0,"""Europe""" +2023-03-12,82117,276,"[\""Wireless Mouse\""]",3947.1,{},203287,0,"""Europe""" +2024-12-19,82118,6308,"[\""Phone\"", \""Laptop\""]",907.99,{},113033,0,"""Asia""" +2023-08-07,82119,1040,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3398.55,{},83523,0,"""Asia""" +2024-02-25,82120,1444,"[\""Monitor\"", \""Phone\""]",4820.36,"{\""loyalty\"": \""24%\""}",240017,0,"""Europe""" +2024-08-07,82121,4689,"[\""Keyboard\"", \""Wireless Mouse\""]",4594.46,"{\""seasonal\"": \""20%\""}",264772,1,"""South America""" +2024-01-25,82122,2359,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2669.18,"{\""promo\"": \""5%\""}",120750,0,"""North America""" +2024-10-30,82123,4423,"[\""Phone\"", \""Headphones\""]",4376.89,"{\""seasonal\"": \""17%\""}",29775,0,"""Africa""" +2023-02-27,82124,5012,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",753.37,{},136072,1,"""North America""" +2023-01-13,82125,6381,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2600.3,{},39208,1,"""Asia""" +2023-03-24,82126,8233,"[\""Monitor\""]",4868.14,{},47009,1,"""Asia""" +2024-07-27,82127,3449,"[\""Wireless Mouse\""]",500.25,{},72551,1,"""North America""" +2024-12-08,82128,9417,"[\""Wireless Mouse\"", \""Monitor\""]",1091.53,"{\""loyalty\"": \""27%\""}",206371,0,"""North America""" +2024-11-24,82129,3180,"[\""Wireless Mouse\"", \""Phone\""]",2418.64,"{\""promo\"": \""17%\""}",190181,1,"""North America""" +2023-01-11,82130,936,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",290.88,"{\""loyalty\"": \""15%\""}",239645,1,"""South America""" +2024-09-27,82131,607,"[\""Keyboard\"", \""Laptop\""]",974.27,{},64114,0,"""Asia""" +2023-08-24,82132,5801,"[\""Charger\"", \""Laptop\""]",4999.4,{},195237,1,"""Europe""" +2024-12-19,82133,2524,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",3454.26,"{\""seasonal\"": \""15%\""}",272179,0,"""Europe""" +2023-08-23,82134,2333,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",623.12,{},24207,0,"""Europe""" +2023-07-04,82135,8520,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4019.83,"{\""promo\"": \""9%\""}",275613,1,"""Asia""" +2023-03-14,82136,9070,"[\""Keyboard\"", \""Headphones\""]",1560.05,"{\""loyalty\"": \""8%\""}",102531,1,"""Asia""" +2023-09-02,82137,7641,"[\""Headphones\""]",56.5,"{\""promo\"": \""7%\""}",88382,0,"""North America""" +2024-05-03,82138,3405,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2727.62,"{\""loyalty\"": \""17%\""}",198202,1,"""Europe""" +2023-11-27,82139,6185,"[\""Charger\"", \""Laptop\""]",4057.51,{},49033,1,"""North America""" +2023-08-23,82140,1731,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3207.99,"{\"": \""30%\""}",173894,0,"""Asia""" +2023-09-10,82141,6055,"[\""Monitor\""]",2805.34,{},77574,1,"""Africa""" +2024-08-19,82142,8542,"[\""Headphones\"", \""Monitor\""]",1409.05,"{\"": \""12%\""}",62730,0,"""South America""" +2023-03-01,82143,7338,"[\""Charger\""]",868.04,{},172778,0,"""Africa""" +2024-10-11,82144,8046,"[\""Laptop\""]",4771.27,{},19409,1,"""Europe""" +2023-12-09,82145,5427,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1496.64,{},87421,0,"""South America""" +2023-02-26,82146,3463,"[\""Tablet\"", \""Laptop\""]",1848.71,"{\""promo\"": \""16%\""}",19924,0,"""Asia""" +2024-02-21,82147,640,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2829.14,{},208290,1,"""Asia""" +2023-06-19,82148,2041,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",381.22,"{\""loyalty\"": \""25%\""}",169501,1,"""Europe""" +2024-10-11,82149,8070,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",822.4,"{\""promo\"": \""27%\""}",155480,0,"""Africa""" +2023-03-11,82150,1794,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1974.23,"{\"": \""19%\""}",106105,0,"""Asia""" +2023-10-03,82151,259,"[\""Wireless Mouse\"", \""Keyboard\""]",3396.39,{},171512,1,"""Asia""" +2023-07-16,82152,1524,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4577.96,"{\""loyalty\"": \""26%\""}",88745,1,"""Asia""" +2023-08-03,82153,4629,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1533.95,"{\""seasonal\"": \""11%\""}",46307,0,"""South America""" +2023-07-13,82154,9638,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2609.37,{},174266,0,"""Asia""" +2024-05-22,82155,38,"[\""Headphones\"", \""Phone\""]",188.53,"{\""seasonal\"": \""20%\""}",103793,1,"""Africa""" +2023-08-10,82156,7192,"[\""Monitor\"", \""Keyboard\""]",4080.63,{},219330,0,"""South America""" +2023-10-07,82157,5691,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3416.1,{},26371,0,"""Europe""" +2023-06-12,82158,75,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1933.9,{},215666,1,"""Europe""" +2024-03-09,82159,4588,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1693.66,"{\""seasonal\"": \""27%\""}",215208,1,"""Asia""" +2024-04-08,82160,7694,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4057.29,"{\""promo\"": \""26%\""}",24325,1,"""Europe""" +2023-01-18,82161,9978,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",746.68,{},291724,0,"""South America""" +2023-03-08,82162,1788,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2157.31,"{\""promo\"": \""14%\""}",134731,1,"""Europe""" +2023-01-17,82163,6855,"[\""Wireless Mouse\"", \""Charger\""]",1753.26,"{\""seasonal\"": \""20%\""}",115829,0,"""Africa""" +2023-07-25,82164,4455,"[\""Wireless Mouse\"", \""Phone\""]",1758.52,"{\""loyalty\"": \""30%\""}",276488,1,"""Asia""" +2024-01-01,82165,6418,"[\""Monitor\""]",2565.52,"{\""promo\"": \""6%\""}",163357,1,"""Europe""" +2024-07-12,82166,4799,"[\""Tablet\""]",3177.15,"{\"": \""5%\""}",41666,1,"""North America""" +2024-07-02,82167,8647,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1691.09,"{\"": \""13%\""}",132626,0,"""South America""" +2024-11-07,82168,17,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",335.58,{},44797,0,"""Africa""" +2024-01-07,82169,2011,"[\""Tablet\""]",3708.3,{},230598,0,"""South America""" +2024-07-16,82170,9610,"[\""Headphones\"", \""Phone\""]",974.16,{},183827,0,"""North America""" +2024-05-03,82171,2895,"[\""Wireless Mouse\""]",4969.09,{},150710,1,"""Asia""" +2024-04-16,82172,7683,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1099.77,"{\"": \""7%\""}",289420,0,"""Africa""" +2023-07-13,82173,2242,"[\""Laptop\"", \""Keyboard\""]",3002.15,"{\""loyalty\"": \""22%\""}",232831,1,"""Asia""" +2024-12-12,82174,9553,"[\""Tablet\""]",4534.37,"{\"": \""12%\""}",216002,0,"""Asia""" +2024-07-23,82175,3047,"[\""Wireless Mouse\"", \""Laptop\""]",1046.64,"{\""promo\"": \""27%\""}",177709,0,"""North America""" +2023-11-18,82176,6873,"[\""Phone\""]",1299.07,"{\""promo\"": \""20%\""}",258401,0,"""North America""" +2023-02-06,82177,8818,"[\""Laptop\"", \""Wireless Mouse\""]",4557.17,{},23729,0,"""Europe""" +2023-11-21,82178,798,"[\""Charger\""]",4573.55,"{\"": \""16%\""}",283102,1,"""North America""" +2023-06-06,82179,1745,"[\""Charger\"", \""Laptop\""]",3415.82,"{\""seasonal\"": \""8%\""}",59012,0,"""Asia""" +2024-04-07,82180,5817,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2671.34,{},174223,1,"""Asia""" +2023-12-08,82181,8672,"[\""Tablet\"", \""Wireless Mouse\""]",4674.75,{},254212,0,"""Asia""" +2024-07-26,82182,8659,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2664.71,"{\"": \""14%\""}",132759,1,"""Asia""" +2023-10-29,82183,432,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1043.7,{},193685,1,"""North America""" +2024-04-16,82184,5394,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",376.64,{},218465,0,"""Europe""" +2023-04-18,82185,8702,"[\""Phone\"", \""Charger\""]",3172.63,"{\""loyalty\"": \""30%\""}",141061,0,"""South America""" +2024-05-31,82186,3296,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",266.37,"{\""promo\"": \""24%\""}",202096,1,"""North America""" +2024-05-09,82187,5159,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3542.76,{},176598,1,"""North America""" +2024-01-03,82188,2767,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",327.83,{},26401,1,"""Europe""" +2023-10-08,82189,5635,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4652.17,"{\""loyalty\"": \""23%\""}",224378,1,"""Africa""" +2023-05-21,82190,1468,"[\""Laptop\"", \""Headphones\""]",1686.34,"{\"": \""5%\""}",135982,1,"""Africa""" +2023-10-29,82191,934,"[\""Keyboard\"", \""Wireless Mouse\""]",1294.89,{},116874,0,"""North America""" +2023-05-02,82192,4664,"[\""Phone\"", \""Headphones\""]",262.84,"{\"": \""21%\""}",59431,0,"""North America""" +2023-11-29,82193,1506,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1350.11,{},196513,0,"""Europe""" +2024-04-21,82194,6122,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2215.03,{},252416,0,"""Asia""" +2023-03-22,82195,5352,"[\""Phone\"", \""Laptop\""]",3366.72,"{\""seasonal\"": \""16%\""}",90519,0,"""Asia""" +2024-12-22,82196,8822,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4347.15,"{\"": \""17%\""}",162788,1,"""Asia""" +2023-02-14,82197,7548,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3265.93,"{\"": \""11%\""}",227282,0,"""North America""" +2024-02-29,82198,1895,"[\""Keyboard\"", \""Laptop\""]",3503.59,"{\""seasonal\"": \""16%\""}",127832,1,"""North America""" +2024-11-25,82199,1622,"[\""Phone\""]",933.2,"{\"": \""13%\""}",71291,0,"""Asia""" +2023-04-20,82200,2228,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4060.17,{},219588,0,"""Asia""" +2024-08-24,82201,4873,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3384.73,{},126823,0,"""South America""" +2024-07-14,82202,9482,"[\""Keyboard\""]",385.97,{},170009,1,"""South America""" +2024-05-21,82203,9859,"[\""Phone\"", \""Tablet\""]",3930.51,{},68203,1,"""North America""" +2023-01-16,82204,9915,"[\""Wireless Mouse\""]",860.48,"{\""promo\"": \""15%\""}",117368,1,"""Asia""" +2023-05-16,82205,8253,"[\""Wireless Mouse\"", \""Keyboard\""]",4273.36,{},236417,0,"""Africa""" +2024-08-22,82206,979,"[\""Charger\""]",4070.25,"{\""seasonal\"": \""9%\""}",175962,0,"""North America""" +2024-04-05,82207,2842,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",713.72,{},132261,0,"""South America""" +2024-11-21,82208,6680,"[\""Monitor\""]",4052.15,"{\""loyalty\"": \""27%\""}",102073,1,"""Asia""" +2023-04-20,82209,3817,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1557.88,{},103964,0,"""Asia""" +2024-07-06,82210,6379,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3086.35,"{\"": \""14%\""}",165156,0,"""Europe""" +2024-12-01,82211,6481,"[\""Phone\"", \""Laptop\""]",3335.86,{},208142,0,"""North America""" +2023-03-26,82212,5384,"[\""Phone\""]",1277.24,"{\"": \""8%\""}",109495,0,"""Africa""" +2024-03-13,82213,4021,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",633.57,"{\""loyalty\"": \""7%\""}",101944,1,"""North America""" +2024-09-21,82214,1944,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",914.35,{},18097,1,"""Africa""" +2024-10-25,82215,9388,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4531.36,{},187177,1,"""South America""" +2024-11-03,82216,9113,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4042.21,{},234228,1,"""Africa""" +2023-01-23,82217,9461,"[\""Laptop\"", \""Headphones\""]",4721.32,"{\""loyalty\"": \""27%\""}",35951,0,"""South America""" +2023-03-04,82218,4987,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3772.74,"{\""promo\"": \""14%\""}",130929,0,"""Asia""" +2023-03-19,82219,757,"[\""Keyboard\""]",2485.08,{},71415,1,"""Africa""" +2024-12-29,82220,7698,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4200.71,{},250717,1,"""Africa""" +2024-11-26,82221,6133,"[\""Keyboard\"", \""Wireless Mouse\""]",1407.14,"{\""promo\"": \""8%\""}",243941,1,"""South America""" +2023-04-21,82222,5463,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3026.01,"{\""promo\"": \""23%\""}",294045,1,"""South America""" +2024-07-18,82223,556,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2491.49,"{\""promo\"": \""23%\""}",226824,1,"""North America""" +2023-01-23,82224,2483,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4668.92,{},152675,0,"""Africa""" +2023-04-25,82225,9981,"[\""Wireless Mouse\""]",1615.36,{},222561,1,"""Europe""" +2023-12-10,82226,9302,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4631.75,{},251950,1,"""Africa""" +2024-07-09,82227,5922,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1498.03,"{\""loyalty\"": \""28%\""}",268510,0,"""Europe""" +2023-06-21,82228,463,"[\""Charger\"", \""Tablet\""]",4254.33,{},174871,1,"""North America""" +2024-03-21,82229,6001,"[\""Tablet\"", \""Keyboard\""]",3749.59,"{\""promo\"": \""18%\""}",97797,1,"""South America""" +2024-08-19,82230,7741,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2408.79,{},290502,1,"""South America""" +2023-08-24,82231,6982,"[\""Headphones\""]",3989.83,{},174758,1,"""Asia""" +2024-03-18,82232,5431,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3495.65,{},169797,1,"""North America""" +2024-09-18,82233,2993,"[\""Headphones\""]",1951.35,"{\""loyalty\"": \""14%\""}",73251,1,"""South America""" +2024-07-17,82234,1146,"[\""Phone\""]",85.13,"{\""promo\"": \""8%\""}",138043,0,"""Europe""" +2024-04-25,82235,1772,"[\""Headphones\""]",4037.51,{},63117,1,"""Africa""" +2023-07-03,82236,8694,"[\""Monitor\"", \""Laptop\""]",3465.06,{},196743,0,"""Europe""" +2024-06-30,82237,646,"[\""Headphones\""]",1372.56,"{\""loyalty\"": \""7%\""}",72393,1,"""Europe""" +2023-09-12,82238,4240,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4412.73,{},29056,0,"""Europe""" +2023-10-18,82239,2169,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2516.06,"{\""loyalty\"": \""25%\""}",92373,1,"""North America""" +2023-09-07,82240,3561,"[\""Phone\"", \""Monitor\""]",3424.71,"{\""loyalty\"": \""12%\""}",180890,1,"""North America""" +2024-05-06,82241,1347,"[\""Phone\"", \""Keyboard\""]",1833.83,"{\""promo\"": \""20%\""}",150224,0,"""Africa""" +2023-04-22,82242,6165,"[\""Wireless Mouse\""]",4344.26,{},122701,0,"""Africa""" +2024-12-25,82243,412,"[\""Phone\"", \""Laptop\""]",798.11,"{\""loyalty\"": \""26%\""}",118223,1,"""Asia""" +2023-05-27,82244,3799,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",810.94,"{\""seasonal\"": \""20%\""}",188921,0,"""North America""" +2023-01-18,82245,8256,"[\""Keyboard\""]",2616.42,"{\""loyalty\"": \""13%\""}",52489,0,"""North America""" +2024-03-12,82246,9886,"[\""Tablet\"", \""Laptop\""]",168.81,{},141294,0,"""South America""" +2023-09-16,82247,1587,"[\""Wireless Mouse\""]",441.21,"{\""loyalty\"": \""25%\""}",215500,0,"""Africa""" +2024-03-07,82248,3882,"[\""Phone\"", \""Headphones\""]",1188.32,{},218527,0,"""Africa""" +2024-07-10,82249,9990,"[\""Phone\""]",3708.84,"{\"": \""8%\""}",23284,0,"""North America""" +2024-09-30,82250,9666,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",555.6,"{\""loyalty\"": \""13%\""}",172920,0,"""Asia""" +2024-07-07,82251,7941,"[\""Monitor\"", \""Charger\""]",4093.07,{},201807,0,"""North America""" +2023-10-22,82252,601,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1615.9,{},279589,1,"""Africa""" +2024-11-15,82253,1342,"[\""Headphones\""]",2900.57,{},124477,1,"""Asia""" +2023-11-01,82254,8048,"[\""Headphones\""]",2102.16,{},222783,1,"""North America""" +2023-02-17,82255,8212,"[\""Charger\"", \""Headphones\""]",1364.17,{},43384,0,"""Africa""" +2024-12-06,82256,8116,"[\""Keyboard\"", \""Headphones\""]",2062.09,{},262332,1,"""Africa""" +2024-10-02,82257,7454,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1374.52,{},93526,0,"""Europe""" +2024-08-13,82258,293,"[\""Laptop\"", \""Charger\""]",2133.49,"{\"": \""26%\""}",163498,1,"""North America""" +2023-01-31,82259,9615,"[\""Wireless Mouse\""]",2626.39,"{\"": \""17%\""}",240682,1,"""Asia""" +2024-11-16,82260,9423,"[\""Laptop\""]",698.51,"{\""promo\"": \""22%\""}",90695,1,"""Africa""" +2023-09-22,82261,8144,"[\""Monitor\""]",4708.11,"{\"": \""16%\""}",195344,1,"""South America""" +2023-01-30,82262,3428,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4163.21,{},246230,0,"""Asia""" +2023-06-20,82263,1923,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1764.43,"{\"": \""15%\""}",232556,1,"""Asia""" +2024-05-23,82264,4154,"[\""Laptop\""]",4852.66,"{\"": \""18%\""}",286494,0,"""South America""" +2023-12-07,82265,6682,"[\""Phone\"", \""Headphones\""]",2188.03,{},163531,1,"""Africa""" +2024-08-21,82266,3750,"[\""Phone\""]",532.02,{},34244,0,"""North America""" +2024-07-09,82267,8254,"[\""Monitor\"", \""Laptop\""]",2354.37,"{\"": \""23%\""}",291610,0,"""Asia""" +2024-05-20,82268,2189,"[\""Wireless Mouse\""]",2987.95,{},227688,1,"""North America""" +2024-01-09,82269,5049,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",687.64,{},10174,0,"""South America""" +2023-06-17,82270,7054,"[\""Charger\""]",4650.01,{},281900,1,"""North America""" +2023-07-24,82271,101,"[\""Wireless Mouse\""]",1975.21,{},249366,1,"""North America""" +2023-08-07,82272,8422,"[\""Monitor\""]",717.31,"{\""seasonal\"": \""30%\""}",273906,1,"""North America""" +2024-01-04,82273,4827,"[\""Tablet\"", \""Headphones\""]",366.12,{},279932,0,"""Africa""" +2023-02-18,82274,5236,"[\""Keyboard\"", \""Phone\""]",1771.35,{},174685,1,"""Africa""" +2024-07-25,82275,2470,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2963.94,{},132659,0,"""South America""" +2024-10-07,82276,9729,"[\""Keyboard\"", \""Headphones\""]",2217.49,"{\"": \""12%\""}",219117,0,"""Africa""" +2023-05-28,82277,975,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2370.98,"{\"": \""25%\""}",239842,0,"""North America""" +2023-10-18,82278,1979,"[\""Headphones\""]",2158.23,{},181745,1,"""Europe""" +2024-11-08,82279,1244,"[\""Wireless Mouse\"", \""Charger\""]",865.18,{},89966,1,"""South America""" +2024-08-14,82280,2850,"[\""Charger\""]",4590.14,"{\""loyalty\"": \""27%\""}",45537,1,"""Europe""" +2023-09-06,82281,1556,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4210.35,{},32248,0,"""Asia""" +2024-01-07,82282,9316,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4386.79,{},273248,1,"""Africa""" +2024-11-02,82283,9304,"[\""Laptop\""]",4608.78,{},153672,0,"""Asia""" +2023-04-24,82284,2195,"[\""Monitor\""]",4664.1,{},217968,0,"""Europe""" +2023-07-21,82285,8200,"[\""Phone\"", \""Laptop\""]",2872.41,{},107787,0,"""Africa""" +2024-03-14,82286,4025,"[\""Wireless Mouse\"", \""Monitor\""]",547.16,"{\""seasonal\"": \""29%\""}",201716,0,"""South America""" +2023-05-07,82287,5272,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1111.46,{},241587,0,"""North America""" +2024-06-08,82288,3541,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4631.53,{},225920,0,"""Europe""" +2023-02-07,82289,2092,"[\""Wireless Mouse\""]",404.33,"{\"": \""5%\""}",239390,0,"""Europe""" +2023-08-27,82290,7900,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3337.09,{},228885,0,"""Asia""" +2023-03-15,82291,2853,"[\""Laptop\""]",4421.01,{},232469,0,"""Asia""" +2024-04-08,82292,3486,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",521.43,"{\"": \""25%\""}",204235,1,"""North America""" +2024-05-20,82293,956,"[\""Monitor\""]",4458.61,"{\"": \""30%\""}",297497,0,"""Africa""" +2023-09-27,82294,3426,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",135.42,"{\""loyalty\"": \""13%\""}",31950,1,"""Asia""" +2024-11-14,82295,8531,"[\""Tablet\""]",2646.67,"{\""promo\"": \""29%\""}",167261,1,"""Africa""" +2024-08-31,82296,7325,"[\""Keyboard\""]",918.76,"{\""promo\"": \""28%\""}",39910,1,"""Asia""" +2024-01-18,82297,2984,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4514.71,{},16309,0,"""Africa""" +2024-06-08,82298,6857,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",101.64,"{\""seasonal\"": \""26%\""}",37750,1,"""Europe""" +2024-01-04,82299,3491,"[\""Keyboard\"", \""Phone\""]",1484.69,{},178341,0,"""Europe""" +2024-05-04,82300,7018,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4757.16,"{\"": \""29%\""}",167336,0,"""Africa""" +2023-11-04,82301,1735,"[\""Headphones\""]",1988.15,{},5106,0,"""Europe""" +2024-12-18,82302,4943,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1451.5,{},73895,1,"""North America""" +2023-10-29,82303,7520,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4786.38,{},216715,1,"""South America""" +2023-11-04,82304,5676,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3651.02,{},191582,0,"""Africa""" +2023-07-17,82305,425,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3374.26,{},231098,0,"""Europe""" +2023-04-04,82306,4698,"[\""Charger\"", \""Laptop\""]",926.26,"{\""loyalty\"": \""11%\""}",192355,0,"""Asia""" +2023-06-16,82307,4240,"[\""Tablet\""]",4531.2,"{\""promo\"": \""15%\""}",144275,0,"""Asia""" +2023-07-29,82308,3302,"[\""Phone\"", \""Charger\""]",1902.88,{},207744,1,"""Europe""" +2023-10-01,82309,9931,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2416.92,{},199417,0,"""North America""" +2023-01-17,82310,1095,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1202.45,{},143794,1,"""Asia""" +2024-11-06,82311,9387,"[\""Phone\""]",4247.08,"{\""seasonal\"": \""20%\""}",144831,1,"""South America""" +2023-06-20,82312,4861,"[\""Wireless Mouse\""]",3331.77,"{\"": \""11%\""}",138394,0,"""Africa""" +2023-12-23,82313,6768,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3205.52,{},258628,0,"""Asia""" +2024-11-14,82314,3382,"[\""Charger\""]",3398.6,{},285138,0,"""Asia""" +2023-04-11,82315,7098,"[\""Headphones\""]",4033.78,"{\""promo\"": \""19%\""}",23939,0,"""South America""" +2023-11-14,82316,4973,"[\""Laptop\"", \""Phone\""]",2959.73,{},130269,0,"""Asia""" +2023-04-13,82317,1244,"[\""Phone\""]",3853.18,{},247995,1,"""South America""" +2023-02-14,82318,6131,"[\""Wireless Mouse\"", \""Charger\""]",4482.23,{},241098,0,"""Europe""" +2023-06-04,82319,2797,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1270.62,"{\"": \""22%\""}",70017,0,"""Europe""" +2023-09-17,82320,7703,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2429.7,"{\""loyalty\"": \""30%\""}",102501,1,"""Europe""" +2024-05-14,82321,8973,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3698.08,{},204056,0,"""Europe""" +2024-10-18,82322,3299,"[\""Keyboard\""]",251.92,"{\""seasonal\"": \""15%\""}",88944,1,"""South America""" +2024-12-01,82323,9309,"[\""Monitor\"", \""Charger\""]",1858.66,{},275483,0,"""Asia""" +2023-02-08,82324,6950,"[\""Monitor\""]",474.21,"{\""promo\"": \""30%\""}",162688,0,"""Africa""" +2024-12-01,82325,696,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2238.62,{},75281,1,"""South America""" +2023-08-26,82326,824,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3436.03,{},120936,0,"""South America""" +2023-12-21,82327,6205,"[\""Monitor\""]",4325.71,"{\"": \""7%\""}",157167,1,"""Asia""" +2024-05-19,82328,5771,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4960.82,"{\""loyalty\"": \""27%\""}",86782,0,"""Asia""" +2024-10-12,82329,1611,"[\""Monitor\""]",2620.86,"{\""loyalty\"": \""7%\""}",282232,1,"""Africa""" +2023-08-13,82330,1201,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",463.34,"{\""seasonal\"": \""20%\""}",69144,0,"""South America""" +2024-05-03,82331,4868,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3571.66,{},285676,0,"""South America""" +2024-07-04,82332,8829,"[\""Phone\"", \""Laptop\""]",581.81,"{\"": \""17%\""}",73377,1,"""South America""" +2023-01-01,82333,2018,"[\""Laptop\"", \""Phone\""]",3729.8,{},1091,0,"""Europe""" +2024-08-07,82334,5481,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1790.87,{},189753,0,"""Asia""" +2024-03-23,82335,8852,"[\""Headphones\""]",3244.53,"{\""loyalty\"": \""9%\""}",1875,0,"""Africa""" +2023-06-17,82336,16,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",365.46,"{\""loyalty\"": \""11%\""}",294488,0,"""Asia""" +2023-12-20,82337,8532,"[\""Wireless Mouse\""]",1830.89,"{\"": \""18%\""}",135921,1,"""Europe""" +2024-01-06,82338,5766,"[\""Keyboard\"", \""Monitor\""]",4979.25,"{\""loyalty\"": \""13%\""}",244749,1,"""North America""" +2024-07-20,82339,695,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",1464.8,{},26734,1,"""Europe""" +2024-06-23,82340,4977,"[\""Keyboard\""]",1304.92,"{\""loyalty\"": \""30%\""}",11916,0,"""Europe""" +2023-07-28,82341,9714,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",575.41,{},114757,0,"""North America""" +2024-04-20,82342,7818,"[\""Keyboard\"", \""Monitor\""]",3103.03,{},212710,1,"""Europe""" +2023-05-31,82343,4222,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1972.35,{},245929,1,"""Asia""" +2023-01-18,82344,1263,"[\""Tablet\"", \""Phone\""]",4655.94,{},76324,0,"""Africa""" +2023-12-10,82345,2782,"[\""Wireless Mouse\"", \""Monitor\""]",3925.91,"{\""promo\"": \""24%\""}",150038,1,"""Africa""" +2024-10-25,82346,9159,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4538.47,"{\""promo\"": \""21%\""}",188487,1,"""Europe""" +2024-05-13,82347,7019,"[\""Wireless Mouse\""]",2952.93,"{\""seasonal\"": \""7%\""}",142276,0,"""North America""" +2024-03-28,82348,5412,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",583.5,{},111283,0,"""Africa""" +2024-11-16,82349,5850,"[\""Phone\""]",410.21,{},152462,0,"""Europe""" +2024-11-13,82350,5905,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2412.5,{},8123,1,"""North America""" +2024-11-04,82351,2933,"[\""Phone\""]",2277.91,{},119836,0,"""Africa""" +2023-03-30,82352,6943,"[\""Keyboard\""]",2137.66,"{\""seasonal\"": \""29%\""}",62931,0,"""South America""" +2023-01-02,82353,1876,"[\""Wireless Mouse\""]",3158.12,"{\"": \""12%\""}",157481,0,"""Asia""" +2024-12-21,82354,5069,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1708.25,"{\""promo\"": \""30%\""}",84045,1,"""South America""" +2023-03-19,82355,7298,"[\""Phone\""]",2753.72,"{\""seasonal\"": \""24%\""}",297343,0,"""Asia""" +2024-03-29,82356,838,"[\""Wireless Mouse\""]",4512.03,{},154955,1,"""Asia""" +2024-11-20,82357,8900,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4220.51,"{\""seasonal\"": \""12%\""}",298883,0,"""Africa""" +2023-10-10,82358,1947,"[\""Monitor\""]",3237.57,{},197271,1,"""Europe""" +2024-07-10,82359,2822,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1511.52,"{\""promo\"": \""12%\""}",244645,1,"""Asia""" +2023-07-28,82360,5961,"[\""Headphones\"", \""Keyboard\""]",648.66,"{\""seasonal\"": \""21%\""}",233986,1,"""North America""" +2023-01-06,82361,5033,"[\""Charger\"", \""Phone\"", \""Monitor\""]",835.51,"{\""loyalty\"": \""29%\""}",29083,1,"""Europe""" +2024-10-02,82362,6472,"[\""Charger\""]",4666.22,{},288776,0,"""North America""" +2023-10-04,82363,8642,"[\""Monitor\"", \""Laptop\""]",228.81,{},241934,1,"""Africa""" +2023-10-19,82364,9320,"[\""Laptop\"", \""Monitor\""]",626.24,"{\""promo\"": \""11%\""}",14880,1,"""South America""" +2023-07-24,82365,9806,"[\""Phone\""]",4252.71,{},77815,1,"""Europe""" +2023-04-21,82366,4966,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2273.23,"{\""promo\"": \""22%\""}",91685,0,"""South America""" +2024-06-06,82367,3091,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",491.65,{},86008,0,"""North America""" +2023-07-30,82368,4027,"[\""Headphones\""]",167.77,"{\""seasonal\"": \""24%\""}",32516,1,"""Africa""" +2024-05-27,82369,2407,"[\""Keyboard\""]",3562.86,"{\""seasonal\"": \""5%\""}",157126,0,"""Europe""" +2024-05-16,82370,9971,"[\""Phone\""]",1626.8,{},270594,0,"""Asia""" +2023-01-09,82371,6162,"[\""Keyboard\"", \""Wireless Mouse\""]",2675.97,{},54613,0,"""Europe""" +2023-07-28,82372,3688,"[\""Laptop\""]",2475.19,"{\""loyalty\"": \""24%\""}",9488,0,"""Europe""" +2023-05-15,82373,809,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2702.81,{},7356,1,"""Europe""" +2023-05-20,82374,6757,"[\""Headphones\"", \""Charger\""]",4243.88,{},19779,0,"""South America""" +2024-06-23,82375,9867,"[\""Headphones\"", \""Monitor\""]",4249.16,{},248693,0,"""Asia""" +2024-03-18,82376,6925,"[\""Keyboard\"", \""Charger\""]",1754.7,"{\""loyalty\"": \""20%\""}",290340,0,"""South America""" +2024-01-27,82377,7889,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",809.05,{},223876,0,"""Europe""" +2024-02-28,82378,3154,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3797.87,{},73635,1,"""Europe""" +2023-08-30,82379,8437,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2140.96,{},178558,0,"""Africa""" +2023-07-29,82380,7343,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3137.52,{},230609,1,"""Asia""" +2024-09-25,82381,7602,"[\""Laptop\"", \""Tablet\""]",2570.73,"{\""loyalty\"": \""16%\""}",201518,0,"""Europe""" +2023-07-14,82382,9878,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",61.13,{},7679,1,"""South America""" +2024-09-25,82383,233,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1110.61,"{\"": \""11%\""}",266662,0,"""North America""" +2023-10-06,82384,1352,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",922.54,{},82240,0,"""Africa""" +2023-08-24,82385,8619,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3882.85,{},99819,1,"""South America""" +2023-08-17,82386,8337,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4174.01,{},149608,0,"""South America""" +2024-02-24,82387,8148,"[\""Charger\""]",360.24,{},92797,1,"""Asia""" +2024-04-12,82388,3959,"[\""Keyboard\""]",2074.13,{},251054,0,"""Africa""" +2023-10-27,82389,7040,"[\""Laptop\""]",2872.98,"{\""promo\"": \""16%\""}",122041,1,"""Europe""" +2023-05-27,82390,53,"[\""Charger\"", \""Monitor\""]",869.56,"{\"": \""23%\""}",150080,0,"""Africa""" +2023-02-08,82391,844,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4930.51,"{\""loyalty\"": \""20%\""}",30322,0,"""North America""" +2023-04-26,82392,8485,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2292.37,{},32151,1,"""Asia""" +2023-06-26,82393,6595,"[\""Tablet\""]",1281.37,"{\""promo\"": \""27%\""}",232217,1,"""Africa""" +2024-12-29,82394,6824,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",855.74,{},230944,0,"""Europe""" +2024-09-29,82395,746,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2114.96,{},71606,0,"""North America""" +2023-03-14,82396,8633,"[\""Wireless Mouse\"", \""Phone\""]",4531.57,"{\""promo\"": \""24%\""}",262020,1,"""Africa""" +2023-11-11,82397,9851,"[\""Charger\"", \""Keyboard\""]",1150.92,"{\""seasonal\"": \""6%\""}",16996,0,"""North America""" +2024-12-14,82398,192,"[\""Monitor\""]",1057.31,{},197441,0,"""North America""" +2023-03-05,82399,2874,"[\""Charger\"", \""Laptop\""]",2761.77,{},194109,0,"""Europe""" +2024-06-21,82400,833,"[\""Wireless Mouse\"", \""Phone\""]",2625.94,"{\""seasonal\"": \""24%\""}",27325,0,"""Europe""" +2023-08-28,82401,6443,"[\""Charger\"", \""Keyboard\""]",815.78,"{\""loyalty\"": \""14%\""}",169341,1,"""Europe""" +2024-05-02,82402,1945,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1650.48,"{\""loyalty\"": \""23%\""}",232202,0,"""North America""" +2024-11-12,82403,883,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1321.6,{},279345,0,"""Europe""" +2024-11-21,82404,4134,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2203.84,"{\""promo\"": \""20%\""}",83102,0,"""South America""" +2024-05-26,82405,3402,"[\""Wireless Mouse\""]",3373.97,{},125247,0,"""Africa""" +2023-08-05,82406,136,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1913.45,"{\""loyalty\"": \""18%\""}",134572,1,"""Asia""" +2024-04-02,82407,1434,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2535.37,"{\""promo\"": \""26%\""}",131688,0,"""Europe""" +2024-06-28,82408,6243,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4075.33,"{\""loyalty\"": \""28%\""}",148610,1,"""Africa""" +2024-11-08,82409,7497,"[\""Wireless Mouse\""]",3016.54,"{\"": \""17%\""}",215633,1,"""South America""" +2023-01-06,82410,7555,"[\""Charger\""]",446.8,{},124992,0,"""South America""" +2023-09-01,82411,6925,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3500.56,"{\""seasonal\"": \""9%\""}",103768,0,"""Europe""" +2023-06-09,82412,7600,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3594.96,{},16799,0,"""Europe""" +2024-07-01,82413,2403,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2913.21,{},34438,1,"""South America""" +2024-06-27,82414,1445,"[\""Headphones\""]",731.08,{},88635,0,"""Europe""" +2024-07-12,82415,2048,"[\""Laptop\"", \""Charger\""]",764.02,{},127865,0,"""Africa""" +2023-07-25,82416,6500,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2806.28,{},216907,0,"""Africa""" +2024-04-16,82417,6212,"[\""Wireless Mouse\""]",2940.78,"{\""loyalty\"": \""21%\""}",164583,1,"""Europe""" +2023-04-24,82418,2084,"[\""Keyboard\"", \""Monitor\""]",3082.15,"{\""seasonal\"": \""28%\""}",280576,0,"""Asia""" +2024-04-17,82419,268,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4349.11,{},147573,0,"""South America""" +2024-09-11,82420,2914,"[\""Laptop\"", \""Charger\""]",3811.06,{},29836,0,"""Europe""" +2023-12-25,82421,3940,"[\""Headphones\""]",3907.47,{},42462,0,"""Africa""" +2024-04-17,82422,6696,"[\""Monitor\"", \""Phone\""]",3674.43,{},272938,0,"""Asia""" +2023-04-01,82423,1996,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",97.48,{},281021,0,"""Asia""" +2023-06-08,82424,8357,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4911.96,"{\"": \""27%\""}",126137,1,"""North America""" +2023-11-26,82425,2459,"[\""Monitor\""]",4535.6,{},56154,1,"""South America""" +2023-01-21,82426,933,"[\""Phone\"", \""Keyboard\""]",599.12,{},31579,0,"""South America""" +2024-12-19,82427,7118,"[\""Phone\""]",404.69,{},150090,1,"""Africa""" +2023-01-05,82428,6149,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1699.44,{},120039,1,"""Africa""" +2023-11-19,82429,9882,"[\""Keyboard\"", \""Wireless Mouse\""]",643.51,"{\"": \""23%\""}",48964,0,"""Africa""" +2023-09-03,82430,2764,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2227.77,{},196429,0,"""Africa""" +2023-06-04,82431,2320,"[\""Charger\""]",1399.41,"{\"": \""5%\""}",126691,0,"""North America""" +2023-05-24,82432,5578,"[\""Tablet\"", \""Wireless Mouse\""]",1862.51,"{\""promo\"": \""20%\""}",28320,1,"""North America""" +2023-08-20,82433,6579,"[\""Charger\"", \""Headphones\""]",3604.52,"{\"": \""11%\""}",170462,1,"""Africa""" +2024-04-26,82434,1018,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",3562.87,"{\""promo\"": \""18%\""}",44135,0,"""Asia""" +2024-01-29,82435,3527,"[\""Headphones\""]",3037.57,"{\""promo\"": \""23%\""}",246527,0,"""Europe""" +2023-09-13,82436,1535,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3553.05,{},58377,0,"""Africa""" +2023-05-27,82437,3058,"[\""Tablet\"", \""Headphones\""]",4526.37,"{\""seasonal\"": \""17%\""}",144888,1,"""Asia""" +2024-09-11,82438,446,"[\""Laptop\"", \""Charger\""]",4166.13,{},75960,0,"""Africa""" +2024-05-28,82439,765,"[\""Laptop\""]",4518.8,{},231329,1,"""Africa""" +2023-10-26,82440,8175,"[\""Monitor\""]",2664.44,{},7723,0,"""North America""" +2024-05-29,82441,3156,"[\""Keyboard\"", \""Tablet\""]",1752.36,{},127750,1,"""Europe""" +2024-02-09,82442,4188,"[\""Headphones\"", \""Charger\""]",1476.4,"{\""loyalty\"": \""15%\""}",185042,0,"""Europe""" +2023-01-21,82443,9488,"[\""Tablet\""]",2078.4,{},5373,0,"""North America""" +2024-02-04,82444,6046,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2334.67,{},81106,0,"""South America""" +2023-08-23,82445,7569,"[\""Charger\"", \""Tablet\""]",3518.92,{},166350,1,"""North America""" +2023-05-02,82446,6881,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3106.63,"{\""seasonal\"": \""5%\""}",173955,1,"""North America""" +2024-07-01,82447,6978,"[\""Laptop\"", \""Tablet\""]",2969.53,"{\""loyalty\"": \""15%\""}",41876,1,"""South America""" +2023-10-07,82448,7639,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3788.14,{},79567,1,"""Africa""" +2024-10-31,82449,1844,"[\""Tablet\"", \""Laptop\""]",4995.47,{},129043,0,"""Europe""" +2023-06-15,82450,542,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4823.95,{},189378,0,"""Europe""" +2023-12-15,82451,8969,"[\""Phone\""]",1918.05,"{\""promo\"": \""21%\""}",211877,1,"""Asia""" +2023-06-12,82452,9247,"[\""Monitor\""]",693.82,"{\""loyalty\"": \""16%\""}",260067,0,"""Europe""" +2023-04-21,82453,8721,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1907.67,"{\"": \""20%\""}",241097,1,"""North America""" +2024-08-04,82454,9442,"[\""Phone\""]",2377.08,{},111426,0,"""Asia""" +2024-04-12,82455,9188,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4795.85,{},106401,0,"""Asia""" +2023-06-08,82456,8755,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1550.03,"{\""promo\"": \""19%\""}",110125,1,"""Asia""" +2023-03-02,82457,628,"[\""Tablet\""]",4933.87,"{\""promo\"": \""6%\""}",197599,1,"""Africa""" +2024-12-08,82458,424,"[\""Headphones\"", \""Tablet\""]",2162.14,"{\""loyalty\"": \""13%\""}",27553,0,"""North America""" +2023-09-25,82459,4786,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",844.88,{},279981,1,"""North America""" +2023-01-26,82460,8153,"[\""Wireless Mouse\"", \""Tablet\""]",2688.77,{},167647,1,"""North America""" +2024-11-07,82461,2640,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3222.43,"{\""seasonal\"": \""16%\""}",263929,0,"""South America""" +2023-05-11,82462,2262,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3432.65,"{\""seasonal\"": \""9%\""}",241017,0,"""Europe""" +2024-01-18,82463,839,"[\""Headphones\""]",785.97,"{\"": \""24%\""}",275852,0,"""Europe""" +2024-08-17,82464,5348,"[\""Wireless Mouse\"", \""Keyboard\""]",3661.83,{},20968,0,"""Europe""" +2024-08-25,82465,6914,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",849.02,{},11520,1,"""Asia""" +2023-05-04,82466,3992,"[\""Phone\"", \""Monitor\""]",1955.95,{},143117,1,"""South America""" +2024-04-14,82467,163,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",1065.54,"{\""seasonal\"": \""22%\""}",289991,0,"""South America""" +2024-03-28,82468,4673,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2500.91,{},196755,0,"""Europe""" +2023-03-16,82469,5242,"[\""Phone\"", \""Laptop\""]",4607.63,{},162575,1,"""South America""" +2023-09-10,82470,6629,"[\""Tablet\"", \""Charger\""]",4411.69,{},280468,0,"""Asia""" +2023-08-03,82471,2111,"[\""Tablet\"", \""Headphones\""]",3861.95,{},138911,0,"""Africa""" +2024-12-30,82472,3706,"[\""Wireless Mouse\"", \""Phone\""]",1704.7,{},52344,0,"""Asia""" +2024-11-19,82473,7082,"[\""Monitor\"", \""Tablet\""]",2908.31,"{\""loyalty\"": \""7%\""}",242166,1,"""Asia""" +2023-07-03,82474,1659,"[\""Wireless Mouse\""]",2476.34,{},210153,0,"""Asia""" +2024-10-25,82475,3469,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1038.0,"{\""seasonal\"": \""21%\""}",251447,1,"""North America""" +2023-12-03,82476,3970,"[\""Keyboard\"", \""Tablet\""]",3680.44,{},207290,0,"""Europe""" +2023-09-09,82477,1920,"[\""Monitor\"", \""Charger\""]",3293.33,{},102255,0,"""North America""" +2023-04-26,82478,8612,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2477.04,"{\""promo\"": \""28%\""}",124563,1,"""Europe""" +2024-07-29,82479,5551,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1530.63,"{\""seasonal\"": \""18%\""}",255146,1,"""South America""" +2024-08-31,82480,4255,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2831.5,{},94380,0,"""North America""" +2023-04-14,82481,6502,"[\""Keyboard\"", \""Laptop\""]",74.9,{},124181,1,"""North America""" +2023-08-05,82482,4328,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",819.81,{},64376,0,"""Africa""" +2024-08-09,82483,9145,"[\""Monitor\"", \""Headphones\""]",4139.69,{},68204,0,"""Asia""" +2023-12-18,82484,3534,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2690.11,{},124617,0,"""North America""" +2024-03-06,82485,6192,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3112.23,{},103291,1,"""Asia""" +2023-02-19,82486,1566,"[\""Headphones\""]",529.09,"{\""seasonal\"": \""30%\""}",288076,1,"""South America""" +2023-05-01,82487,867,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2324.59,{},70814,0,"""Asia""" +2023-02-04,82488,6127,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2105.48,"{\""seasonal\"": \""18%\""}",53542,1,"""Europe""" +2024-12-15,82489,921,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1638.29,{},174612,0,"""South America""" +2024-12-22,82490,1575,"[\""Laptop\"", \""Tablet\""]",4037.73,"{\""seasonal\"": \""27%\""}",48083,0,"""South America""" +2023-04-28,82491,3825,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",198.51,"{\""seasonal\"": \""9%\""}",210507,1,"""Africa""" +2023-06-12,82492,5987,"[\""Charger\""]",1936.42,"{\""seasonal\"": \""13%\""}",33034,1,"""Europe""" +2023-08-15,82493,9137,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",991.93,{},86382,1,"""North America""" +2023-08-07,82494,9751,"[\""Laptop\""]",1469.04,{},77594,1,"""South America""" +2023-10-26,82495,9555,"[\""Laptop\""]",538.26,{},191593,0,"""Africa""" +2024-08-21,82496,9699,"[\""Charger\""]",1583.78,{},248479,0,"""Africa""" +2024-11-21,82497,569,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",466.64,{},108221,1,"""Asia""" +2023-03-11,82498,7937,"[\""Laptop\"", \""Keyboard\""]",1675.65,"{\"": \""24%\""}",178404,1,"""Africa""" +2023-07-14,82499,2387,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1375.59,"{\""loyalty\"": \""22%\""}",162519,0,"""Asia""" +2024-10-31,82500,9560,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3554.23,"{\""promo\"": \""5%\""}",284945,0,"""South America""" +2023-02-23,82501,4503,"[\""Tablet\"", \""Headphones\""]",2605.45,"{\""seasonal\"": \""13%\""}",18948,0,"""Africa""" +2023-05-25,82502,1691,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4183.76,{},259235,0,"""North America""" +2024-10-08,82503,8168,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3160.69,"{\""loyalty\"": \""25%\""}",96258,0,"""South America""" +2023-08-19,82504,2587,"[\""Monitor\"", \""Laptop\""]",1167.39,"{\""loyalty\"": \""10%\""}",11108,1,"""Asia""" +2023-02-03,82505,2955,"[\""Laptop\""]",4378.95,"{\""seasonal\"": \""8%\""}",212965,1,"""South America""" +2024-11-11,82506,655,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4894.43,{},194411,1,"""South America""" +2023-05-19,82507,8048,"[\""Monitor\""]",4510.2,"{\""seasonal\"": \""19%\""}",14699,0,"""Africa""" +2023-01-13,82508,2873,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4241.03,"{\""promo\"": \""7%\""}",71955,1,"""Africa""" +2023-10-31,82509,8629,"[\""Wireless Mouse\"", \""Monitor\""]",3198.8,"{\""seasonal\"": \""13%\""}",29323,0,"""South America""" +2023-09-26,82510,9844,"[\""Laptop\""]",1257.42,"{\"": \""24%\""}",173700,0,"""Europe""" +2024-11-22,82511,8616,"[\""Headphones\""]",1418.45,"{\""promo\"": \""6%\""}",219874,1,"""South America""" +2023-12-25,82512,6349,"[\""Laptop\"", \""Monitor\""]",4046.66,"{\"": \""13%\""}",273425,0,"""Asia""" +2024-04-08,82513,1445,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3236.7,{},23838,1,"""South America""" +2023-05-07,82514,1991,"[\""Charger\""]",3515.57,"{\""seasonal\"": \""13%\""}",140657,0,"""North America""" +2024-11-15,82515,4407,"[\""Tablet\"", \""Monitor\""]",2357.52,{},171966,1,"""Europe""" +2023-05-17,82516,8423,"[\""Wireless Mouse\"", \""Keyboard\""]",1153.15,"{\""seasonal\"": \""15%\""}",130986,0,"""North America""" +2024-06-29,82517,1606,"[\""Charger\""]",2780.47,"{\""promo\"": \""6%\""}",163978,0,"""Africa""" +2023-11-05,82518,8174,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4760.72,"{\"": \""17%\""}",227540,1,"""Africa""" +2024-06-21,82519,5295,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",693.19,{},84549,1,"""Europe""" +2023-03-28,82520,9525,"[\""Keyboard\""]",4083.72,"{\""promo\"": \""8%\""}",119787,0,"""North America""" +2023-06-18,82521,5804,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4968.8,{},150170,1,"""North America""" +2023-10-01,82522,8575,"[\""Charger\""]",4546.07,"{\""seasonal\"": \""9%\""}",278430,1,"""South America""" +2023-01-12,82523,4000,"[\""Headphones\""]",3623.12,{},280680,1,"""South America""" +2024-03-05,82524,5936,"[\""Charger\""]",3810.92,"{\""seasonal\"": \""19%\""}",182869,1,"""Asia""" +2023-03-04,82525,9355,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3699.62,"{\""promo\"": \""10%\""}",143640,0,"""South America""" +2023-08-15,82526,6888,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4173.88,"{\""loyalty\"": \""19%\""}",80019,0,"""Europe""" +2023-10-27,82527,2715,"[\""Wireless Mouse\""]",1642.25,"{\""loyalty\"": \""26%\""}",206406,1,"""South America""" +2023-03-13,82528,996,"[\""Headphones\""]",1192.78,"{\""seasonal\"": \""25%\""}",95856,1,"""South America""" +2024-08-08,82529,489,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1762.43,"{\""seasonal\"": \""9%\""}",69656,0,"""South America""" +2023-10-27,82530,7549,"[\""Headphones\"", \""Laptop\""]",1259.7,"{\""seasonal\"": \""11%\""}",96895,1,"""Africa""" +2024-07-05,82531,4001,"[\""Tablet\""]",3301.4,"{\""loyalty\"": \""28%\""}",89202,1,"""Asia""" +2024-10-04,82532,850,"[\""Phone\"", \""Laptop\""]",1573.31,{},50335,0,"""North America""" +2024-08-25,82533,8634,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1890.33,{},204496,0,"""North America""" +2024-01-16,82534,1586,"[\""Charger\""]",1832.47,"{\""seasonal\"": \""22%\""}",224113,1,"""South America""" +2023-01-16,82535,4151,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3862.11,"{\""seasonal\"": \""5%\""}",264769,1,"""Europe""" +2024-09-17,82536,8231,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1775.21,{},122110,0,"""Asia""" +2024-07-01,82537,414,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",981.33,{},49986,0,"""Europe""" +2023-02-27,82538,4976,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",397.43,"{\""loyalty\"": \""23%\""}",196983,1,"""Africa""" +2023-02-26,82539,6144,"[\""Wireless Mouse\""]",3847.89,"{\"": \""26%\""}",222995,1,"""Africa""" +2024-08-21,82540,1066,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2500.35,"{\""loyalty\"": \""9%\""}",170366,1,"""Europe""" +2023-04-26,82541,8377,"[\""Monitor\"", \""Charger\""]",1346.59,{},239264,1,"""Asia""" +2024-06-30,82542,1000,"[\""Keyboard\"", \""Laptop\""]",495.82,"{\"": \""11%\""}",274747,0,"""South America""" +2024-02-18,82543,1300,"[\""Wireless Mouse\"", \""Charger\""]",1211.95,{},102045,1,"""South America""" +2023-10-24,82544,1545,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4820.23,{},247233,1,"""Europe""" +2023-03-20,82545,758,"[\""Phone\""]",757.01,{},105810,1,"""South America""" +2024-05-28,82546,7761,"[\""Monitor\""]",3757.06,{},263140,0,"""Africa""" +2024-04-29,82547,9276,"[\""Keyboard\""]",1382.85,"{\""promo\"": \""28%\""}",255394,0,"""Asia""" +2024-04-30,82548,699,"[\""Laptop\"", \""Monitor\""]",808.4,"{\"": \""29%\""}",137814,0,"""South America""" +2024-01-23,82549,4632,"[\""Keyboard\"", \""Headphones\""]",4981.69,{},59248,0,"""South America""" +2023-12-06,82550,6753,"[\""Keyboard\""]",4088.64,"{\"": \""27%\""}",274791,0,"""Europe""" +2023-07-22,82551,4317,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1116.91,{},162560,0,"""Africa""" +2023-02-09,82552,28,"[\""Charger\"", \""Wireless Mouse\""]",3789.61,"{\""promo\"": \""23%\""}",102302,0,"""South America""" +2023-10-02,82553,3988,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2853.31,"{\""loyalty\"": \""21%\""}",200761,1,"""North America""" +2024-10-16,82554,9104,"[\""Tablet\"", \""Phone\""]",2051.27,"{\""seasonal\"": \""13%\""}",215986,1,"""Asia""" +2024-08-18,82555,4129,"[\""Laptop\"", \""Keyboard\""]",79.69,{},125752,1,"""Europe""" +2024-04-04,82556,6165,"[\""Tablet\""]",4757.97,{},92733,1,"""Asia""" +2023-06-20,82557,9307,"[\""Monitor\""]",2019.78,{},176317,1,"""Asia""" +2023-03-23,82558,1704,"[\""Laptop\""]",1048.34,"{\""promo\"": \""16%\""}",212321,1,"""Asia""" +2023-09-23,82559,9923,"[\""Keyboard\""]",4193.16,"{\"": \""12%\""}",13136,0,"""South America""" +2024-07-27,82560,9859,"[\""Keyboard\"", \""Charger\""]",3365.99,"{\""loyalty\"": \""11%\""}",81472,1,"""Africa""" +2024-06-23,82561,4758,"[\""Charger\""]",1409.51,"{\""seasonal\"": \""9%\""}",155271,1,"""South America""" +2024-02-21,82562,9070,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2198.7,{},204237,0,"""South America""" +2024-04-23,82563,4922,"[\""Wireless Mouse\"", \""Charger\""]",817.73,"{\""loyalty\"": \""19%\""}",237274,0,"""Africa""" +2023-06-28,82564,6117,"[\""Keyboard\""]",2035.75,{},234810,1,"""North America""" +2023-10-30,82565,5232,"[\""Headphones\""]",2870.52,{},37538,0,"""South America""" +2023-04-16,82566,6746,"[\""Keyboard\"", \""Laptop\""]",1004.52,{},119157,0,"""Europe""" +2024-02-13,82567,2351,"[\""Monitor\""]",154.92,{},287505,0,"""North America""" +2023-04-18,82568,4697,"[\""Phone\""]",1307.5,{},96516,0,"""South America""" +2023-07-01,82569,2901,"[\""Keyboard\"", \""Phone\""]",362.48,{},40050,1,"""Africa""" +2023-04-26,82570,5838,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3963.82,{},81952,1,"""South America""" +2024-11-23,82571,9390,"[\""Headphones\""]",367.53,"{\""promo\"": \""17%\""}",36254,0,"""Europe""" +2023-08-26,82572,4402,"[\""Headphones\""]",1514.09,"{\""seasonal\"": \""9%\""}",34770,0,"""Africa""" +2024-12-15,82573,8873,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3795.82,"{\"": \""29%\""}",139255,1,"""South America""" +2023-08-20,82574,530,"[\""Keyboard\"", \""Monitor\""]",2191.69,{},133806,0,"""Asia""" +2023-01-03,82575,7057,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",777.83,{},134165,0,"""South America""" +2024-07-02,82576,4395,"[\""Wireless Mouse\"", \""Charger\""]",4341.0,{},232495,0,"""South America""" +2023-04-10,82577,9346,"[\""Wireless Mouse\"", \""Charger\""]",149.98,{},148448,1,"""North America""" +2023-09-07,82578,8460,"[\""Phone\"", \""Tablet\""]",4821.56,{},11397,1,"""Africa""" +2024-07-22,82579,782,"[\""Phone\""]",2765.02,{},158499,1,"""North America""" +2024-05-20,82580,2132,"[\""Headphones\"", \""Phone\""]",4180.75,{},23938,1,"""South America""" +2024-08-12,82581,6220,"[\""Monitor\"", \""Headphones\""]",3192.16,"{\"": \""17%\""}",181376,1,"""Asia""" +2024-09-21,82582,186,"[\""Headphones\"", \""Keyboard\""]",4443.59,{},69185,1,"""South America""" +2024-01-30,82583,7018,"[\""Wireless Mouse\"", \""Phone\""]",3773.58,"{\""seasonal\"": \""24%\""}",162762,0,"""Africa""" +2024-07-11,82584,2529,"[\""Headphones\""]",1802.87,{},266207,0,"""South America""" +2024-09-04,82585,2910,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3212.02,{},34440,1,"""North America""" +2023-07-24,82586,3756,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",4436.46,{},133877,1,"""Africa""" +2023-04-11,82587,8493,"[\""Wireless Mouse\""]",1227.31,"{\""promo\"": \""18%\""}",45169,1,"""Asia""" +2024-06-12,82588,9764,"[\""Phone\""]",674.48,"{\""promo\"": \""13%\""}",209471,0,"""Europe""" +2024-10-20,82589,9756,"[\""Tablet\"", \""Phone\""]",4012.07,"{\""promo\"": \""16%\""}",186737,1,"""Europe""" +2023-10-21,82590,9284,"[\""Phone\""]",927.14,{},226096,0,"""Africa""" +2024-04-09,82591,268,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4518.82,"{\""loyalty\"": \""28%\""}",82572,0,"""Asia""" +2024-09-10,82592,9837,"[\""Headphones\""]",749.17,"{\""seasonal\"": \""8%\""}",271289,0,"""Africa""" +2024-02-17,82593,3915,"[\""Monitor\"", \""Charger\""]",720.67,"{\""loyalty\"": \""24%\""}",18733,1,"""South America""" +2024-06-14,82594,6490,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4905.73,{},284022,1,"""Asia""" +2023-05-14,82595,3836,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4942.63,{},281995,1,"""North America""" +2023-01-12,82596,6621,"[\""Headphones\"", \""Charger\""]",1126.99,{},174250,1,"""South America""" +2023-09-23,82597,9025,"[\""Phone\"", \""Wireless Mouse\""]",1311.13,"{\""promo\"": \""18%\""}",210635,1,"""South America""" +2024-07-06,82598,6005,"[\""Wireless Mouse\"", \""Tablet\""]",4125.61,{},10118,1,"""Europe""" +2024-08-19,82599,3439,"[\""Keyboard\"", \""Monitor\""]",3030.05,"{\"": \""7%\""}",94731,1,"""Europe""" +2024-10-13,82600,3623,"[\""Tablet\"", \""Headphones\""]",2540.71,{},188920,0,"""South America""" +2023-01-13,82601,4186,"[\""Wireless Mouse\""]",970.15,"{\""promo\"": \""5%\""}",257435,1,"""Europe""" +2023-01-22,82602,8130,"[\""Tablet\""]",1183.56,{},263741,1,"""Asia""" +2023-12-22,82603,4494,"[\""Wireless Mouse\""]",796.08,"{\""promo\"": \""8%\""}",272483,1,"""Asia""" +2024-01-22,82604,587,"[\""Wireless Mouse\"", \""Monitor\""]",1896.58,{},126794,0,"""Africa""" +2023-01-09,82605,985,"[\""Tablet\"", \""Charger\""]",3329.22,"{\""loyalty\"": \""18%\""}",158702,1,"""North America""" +2024-02-12,82606,8208,"[\""Phone\"", \""Laptop\""]",2248.17,"{\""seasonal\"": \""17%\""}",190860,0,"""South America""" +2024-12-06,82607,5535,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",52.33,{},249467,0,"""Europe""" +2024-02-13,82608,6694,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3735.11,"{\""promo\"": \""27%\""}",34925,0,"""South America""" +2023-05-18,82609,1366,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",514.32,"{\""promo\"": \""11%\""}",176948,0,"""Europe""" +2023-06-29,82610,59,"[\""Laptop\"", \""Headphones\""]",625.61,"{\""loyalty\"": \""10%\""}",201450,0,"""Asia""" +2023-08-17,82611,9746,"[\""Headphones\""]",3278.54,{},232894,0,"""Africa""" +2024-05-03,82612,3259,"[\""Monitor\""]",4887.94,{},36640,0,"""Africa""" +2024-01-26,82613,1218,"[\""Charger\"", \""Monitor\""]",2449.92,"{\""promo\"": \""28%\""}",39856,1,"""Asia""" +2023-01-24,82614,1113,"[\""Charger\"", \""Phone\""]",529.69,{},247656,0,"""Asia""" +2024-06-18,82615,1176,"[\""Monitor\"", \""Charger\""]",3151.71,"{\""loyalty\"": \""22%\""}",208270,0,"""North America""" +2024-09-18,82616,3299,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1187.78,"{\"": \""11%\""}",261915,0,"""Africa""" +2023-11-26,82617,6460,"[\""Laptop\""]",3391.9,"{\""promo\"": \""9%\""}",235858,0,"""South America""" +2023-02-04,82618,4664,"[\""Charger\""]",3060.35,{},296077,1,"""Africa""" +2024-10-27,82619,21,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",914.41,"{\""promo\"": \""7%\""}",204670,1,"""Africa""" +2024-10-24,82620,7748,"[\""Charger\"", \""Headphones\""]",155.68,{},43627,1,"""North America""" +2024-03-13,82621,6281,"[\""Phone\"", \""Headphones\""]",3336.69,"{\""loyalty\"": \""7%\""}",134938,0,"""Africa""" +2024-04-16,82622,2022,"[\""Laptop\""]",1065.11,"{\""loyalty\"": \""13%\""}",57299,1,"""Africa""" +2023-02-10,82623,1406,"[\""Tablet\""]",586.95,{},187033,0,"""South America""" +2023-04-27,82624,5087,"[\""Monitor\"", \""Keyboard\""]",1907.18,{},292081,0,"""Asia""" +2024-02-06,82625,3365,"[\""Headphones\""]",1886.3,"{\"": \""9%\""}",147669,1,"""Africa""" +2024-04-24,82626,698,"[\""Charger\""]",1585.36,{},170507,0,"""South America""" +2024-12-29,82627,315,"[\""Wireless Mouse\""]",2734.71,{},128391,0,"""Europe""" +2023-12-08,82628,2850,"[\""Keyboard\""]",290.07,"{\""promo\"": \""22%\""}",15354,1,"""Asia""" +2024-09-11,82629,452,"[\""Wireless Mouse\"", \""Laptop\""]",2923.35,{},288157,0,"""Asia""" +2023-09-05,82630,1204,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3629.58,{},69719,1,"""North America""" +2023-08-18,82631,1460,"[\""Tablet\"", \""Phone\""]",2557.3,{},294368,1,"""Europe""" +2024-03-28,82632,5545,"[\""Keyboard\""]",2957.26,"{\""loyalty\"": \""14%\""}",92236,1,"""Asia""" +2024-10-17,82633,5240,"[\""Charger\"", \""Laptop\""]",2767.96,"{\""loyalty\"": \""30%\""}",34251,0,"""South America""" +2023-04-02,82634,7038,"[\""Monitor\"", \""Charger\""]",1848.49,"{\""seasonal\"": \""28%\""}",145431,1,"""Africa""" +2023-09-14,82635,1187,"[\""Headphones\""]",2358.35,{},124701,0,"""Europe""" +2023-06-24,82636,1320,"[\""Phone\"", \""Tablet\""]",984.58,"{\""seasonal\"": \""14%\""}",154152,1,"""South America""" +2024-02-19,82637,905,"[\""Headphones\""]",395.9,"{\""promo\"": \""22%\""}",217012,0,"""Asia""" +2024-09-30,82638,1592,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3069.99,"{\""seasonal\"": \""13%\""}",129860,1,"""Europe""" +2024-05-22,82639,959,"[\""Headphones\""]",948.45,{},31067,0,"""Africa""" +2023-12-26,82640,5337,"[\""Keyboard\""]",4134.11,{},219619,0,"""South America""" +2023-03-23,82641,1616,"[\""Keyboard\"", \""Laptop\""]",2090.13,"{\"": \""18%\""}",108549,0,"""Africa""" +2024-06-28,82642,1582,"[\""Keyboard\"", \""Monitor\""]",3003.62,{},31294,0,"""North America""" +2024-06-12,82643,346,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4664.71,{},120058,0,"""Europe""" +2023-06-20,82644,4668,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",365.87,"{\"": \""7%\""}",131044,0,"""South America""" +2023-01-23,82645,5269,"[\""Tablet\""]",1719.17,"{\"": \""6%\""}",14678,0,"""Europe""" +2024-01-05,82646,8255,"[\""Monitor\"", \""Tablet\""]",3960.63,"{\"": \""24%\""}",265056,1,"""North America""" +2023-04-23,82647,4460,"[\""Headphones\"", \""Charger\""]",2717.85,"{\""promo\"": \""10%\""}",278095,0,"""Europe""" +2023-03-02,82648,2193,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3192.31,{},25968,1,"""Africa""" +2023-02-09,82649,4570,"[\""Headphones\""]",3170.08,"{\""seasonal\"": \""12%\""}",200129,0,"""North America""" +2023-08-26,82650,8465,"[\""Keyboard\""]",492.37,"{\""seasonal\"": \""7%\""}",285696,1,"""North America""" +2023-05-03,82651,3512,"[\""Tablet\"", \""Keyboard\""]",4850.94,"{\""seasonal\"": \""19%\""}",151104,0,"""Africa""" +2023-04-08,82652,2360,"[\""Monitor\""]",1942.37,{},51192,0,"""Africa""" +2023-04-18,82653,50,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4420.79,"{\"": \""6%\""}",164109,1,"""North America""" +2024-03-17,82654,7541,"[\""Keyboard\"", \""Tablet\""]",3180.56,"{\""promo\"": \""27%\""}",295298,1,"""Europe""" +2023-10-28,82655,5355,"[\""Headphones\""]",3478.42,{},288441,1,"""Africa""" +2023-06-17,82656,9876,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4391.46,{},172197,0,"""South America""" +2024-03-21,82657,5532,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2950.76,{},178395,1,"""Europe""" +2023-07-11,82658,5980,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",737.79,{},287490,1,"""Europe""" +2023-06-30,82659,7134,"[\""Tablet\""]",1797.45,"{\""seasonal\"": \""14%\""}",231761,1,"""South America""" +2024-06-16,82660,3903,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3377.82,"{\""seasonal\"": \""9%\""}",136747,1,"""Africa""" +2023-02-16,82661,2435,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1279.47,"{\""seasonal\"": \""27%\""}",205477,1,"""North America""" +2023-04-17,82662,485,"[\""Charger\"", \""Wireless Mouse\""]",1579.02,"{\""loyalty\"": \""20%\""}",34955,1,"""Asia""" +2023-08-13,82663,3324,"[\""Charger\""]",1199.01,"{\""seasonal\"": \""24%\""}",240473,0,"""Asia""" +2024-04-27,82664,9936,"[\""Phone\"", \""Laptop\""]",1976.85,{},206330,1,"""Africa""" +2024-07-15,82665,1410,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3983.13,{},215115,1,"""South America""" +2024-10-22,82666,408,"[\""Charger\""]",949.3,"{\""seasonal\"": \""26%\""}",106925,1,"""Asia""" +2024-12-06,82667,9708,"[\""Headphones\""]",656.07,{},161535,1,"""Asia""" +2023-12-17,82668,7853,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",55.55,"{\""loyalty\"": \""19%\""}",249388,1,"""North America""" +2023-01-07,82669,9526,"[\""Headphones\""]",1279.58,"{\""loyalty\"": \""10%\""}",8091,1,"""Africa""" +2024-04-05,82670,918,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",625.34,{},75066,1,"""North America""" +2024-11-12,82671,7499,"[\""Headphones\""]",4807.91,"{\""promo\"": \""21%\""}",275956,0,"""South America""" +2023-11-06,82672,2095,"[\""Monitor\""]",3550.34,"{\""promo\"": \""25%\""}",33544,0,"""Asia""" +2023-06-09,82673,2589,"[\""Tablet\""]",1667.58,{},212507,1,"""Europe""" +2023-01-08,82674,6859,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1158.65,{},114535,1,"""North America""" +2023-05-05,82675,2121,"[\""Charger\""]",3485.92,"{\""seasonal\"": \""22%\""}",289727,1,"""Africa""" +2023-02-04,82676,1475,"[\""Monitor\"", \""Charger\""]",634.66,{},53827,0,"""Africa""" +2024-03-05,82677,6962,"[\""Headphones\""]",2409.37,{},212988,0,"""South America""" +2023-12-13,82678,9574,"[\""Keyboard\""]",3747.77,"{\""loyalty\"": \""15%\""}",161848,1,"""Asia""" +2023-10-09,82679,6771,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4837.91,{},286304,1,"""North America""" +2023-01-14,82680,957,"[\""Laptop\"", \""Phone\""]",1237.87,"{\""loyalty\"": \""27%\""}",229924,0,"""South America""" +2024-02-13,82681,9135,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4260.05,"{\""promo\"": \""25%\""}",28587,1,"""Africa""" +2023-05-02,82682,9190,"[\""Keyboard\"", \""Phone\""]",4896.91,{},83039,1,"""Africa""" +2023-11-10,82683,1628,"[\""Wireless Mouse\""]",159.16,{},78258,0,"""Europe""" +2024-05-29,82684,6743,"[\""Laptop\"", \""Tablet\""]",4102.77,{},280496,0,"""North America""" +2023-03-14,82685,2343,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1225.8,"{\"": \""11%\""}",191439,0,"""Europe""" +2024-11-30,82686,2482,"[\""Monitor\""]",3052.16,{},29445,0,"""North America""" +2023-12-18,82687,9427,"[\""Phone\""]",261.73,"{\""promo\"": \""24%\""}",119839,0,"""South America""" +2024-03-21,82688,4252,"[\""Phone\"", \""Tablet\""]",3833.17,"{\""seasonal\"": \""21%\""}",147625,0,"""North America""" +2024-08-06,82689,1048,"[\""Keyboard\"", \""Phone\""]",1425.41,"{\""promo\"": \""21%\""}",294949,1,"""Africa""" +2024-11-20,82690,2263,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2294.29,"{\""loyalty\"": \""14%\""}",181364,0,"""North America""" +2024-04-07,82691,7376,"[\""Tablet\""]",1977.54,{},122931,0,"""North America""" +2024-06-01,82692,7377,"[\""Wireless Mouse\"", \""Phone\""]",3792.22,"{\""loyalty\"": \""19%\""}",166195,1,"""Africa""" +2024-07-29,82693,3425,"[\""Charger\""]",4004.51,"{\""loyalty\"": \""28%\""}",109495,1,"""Europe""" +2023-06-22,82694,1837,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3386.14,{},150647,1,"""North America""" +2023-05-02,82695,7218,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1861.36,{},231487,1,"""South America""" +2023-05-21,82696,207,"[\""Wireless Mouse\""]",363.32,"{\""loyalty\"": \""12%\""}",16598,0,"""South America""" +2024-09-16,82697,4442,"[\""Charger\""]",4459.73,"{\""promo\"": \""23%\""}",206874,1,"""Europe""" +2024-08-21,82698,6872,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3903.27,{},75495,1,"""South America""" +2023-03-14,82699,7282,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2822.74,{},164038,0,"""Asia""" +2024-09-10,82700,9043,"[\""Laptop\"", \""Phone\""]",4694.01,{},225256,1,"""North America""" +2024-11-01,82701,6905,"[\""Wireless Mouse\"", \""Laptop\""]",1245.22,"{\""promo\"": \""15%\""}",186430,0,"""Africa""" +2023-03-29,82702,4978,"[\""Phone\"", \""Monitor\""]",2356.55,{},244152,0,"""Africa""" +2023-01-20,82703,2135,"[\""Headphones\""]",2547.71,{},56562,0,"""Africa""" +2023-04-09,82704,9694,"[\""Monitor\""]",325.12,"{\""promo\"": \""13%\""}",194374,1,"""South America""" +2024-01-11,82705,6707,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",705.15,{},285225,1,"""Europe""" +2024-06-16,82706,7787,"[\""Monitor\""]",2053.85,"{\""loyalty\"": \""13%\""}",216723,0,"""Europe""" +2023-06-16,82707,8578,"[\""Monitor\""]",64.6,{},296410,0,"""Africa""" +2024-08-30,82708,5079,"[\""Phone\"", \""Wireless Mouse\""]",3417.46,"{\""seasonal\"": \""24%\""}",152037,1,"""North America""" +2024-08-31,82709,2261,"[\""Keyboard\""]",4682.2,{},244642,1,"""Asia""" +2024-12-06,82710,6498,"[\""Monitor\"", \""Phone\""]",1558.47,{},265275,0,"""Europe""" +2024-09-11,82711,707,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2867.0,{},290519,1,"""South America""" +2023-06-26,82712,4954,"[\""Wireless Mouse\""]",704.65,"{\""seasonal\"": \""28%\""}",7233,1,"""Africa""" +2024-05-01,82713,217,"[\""Phone\"", \""Keyboard\""]",915.28,{},268161,0,"""South America""" +2023-12-27,82714,4156,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",190.13,"{\""promo\"": \""28%\""}",243248,0,"""South America""" +2024-03-12,82715,7040,"[\""Wireless Mouse\""]",4929.57,"{\""promo\"": \""23%\""}",126077,1,"""South America""" +2024-11-26,82716,4847,"[\""Headphones\"", \""Phone\""]",413.72,{},242219,0,"""Europe""" +2024-07-26,82717,2270,"[\""Tablet\"", \""Keyboard\""]",919.12,{},189748,0,"""Asia""" +2023-05-11,82718,3416,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",852.13,"{\""loyalty\"": \""28%\""}",148755,0,"""Europe""" +2023-10-15,82719,6324,"[\""Laptop\"", \""Phone\""]",3572.57,{},212372,1,"""Africa""" +2023-10-24,82720,6832,"[\""Headphones\""]",1989.97,{},151485,1,"""North America""" +2023-10-11,82721,5179,"[\""Phone\"", \""Laptop\""]",1177.61,{},290943,0,"""South America""" +2024-01-31,82722,7415,"[\""Monitor\""]",1830.69,"{\""loyalty\"": \""19%\""}",122108,0,"""South America""" +2024-04-08,82723,9511,"[\""Wireless Mouse\""]",2131.74,"{\"": \""24%\""}",198518,1,"""Europe""" +2023-08-01,82724,4634,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",716.63,"{\""promo\"": \""27%\""}",91607,1,"""Asia""" +2023-10-27,82725,7584,"[\""Headphones\"", \""Keyboard\""]",961.4,{},136411,1,"""Europe""" +2024-01-14,82726,8642,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2082.67,"{\""loyalty\"": \""15%\""}",126211,0,"""Asia""" +2024-10-02,82727,2552,"[\""Laptop\"", \""Phone\""]",345.38,{},49066,1,"""Africa""" +2023-10-23,82728,8779,"[\""Tablet\"", \""Charger\""]",1113.5,{},123516,1,"""North America""" +2023-05-31,82729,926,"[\""Monitor\"", \""Wireless Mouse\""]",2638.68,"{\"": \""29%\""}",76525,0,"""Europe""" +2023-11-10,82730,3384,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4238.7,"{\""seasonal\"": \""19%\""}",204290,0,"""Asia""" +2023-05-05,82731,7078,"[\""Tablet\""]",1265.27,{},95642,1,"""South America""" +2024-03-23,82732,192,"[\""Wireless Mouse\""]",1778.92,{},204233,1,"""Africa""" +2023-09-30,82733,8295,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3813.91,"{\"": \""14%\""}",144908,1,"""Europe""" +2024-09-10,82734,3305,"[\""Charger\"", \""Monitor\""]",4535.93,"{\""loyalty\"": \""27%\""}",45885,1,"""North America""" +2023-05-19,82735,8273,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2625.11,"{\""seasonal\"": \""6%\""}",236252,0,"""Africa""" +2023-08-17,82736,9046,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2778.1,"{\""loyalty\"": \""12%\""}",185605,0,"""South America""" +2024-05-23,82737,575,"[\""Headphones\"", \""Keyboard\""]",708.38,"{\""loyalty\"": \""30%\""}",187145,1,"""South America""" +2024-02-11,82738,8474,"[\""Phone\""]",373.05,{},187270,1,"""South America""" +2024-02-25,82739,2936,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2869.83,"{\""promo\"": \""11%\""}",76068,1,"""Europe""" +2023-10-01,82740,6569,"[\""Keyboard\""]",4939.48,{},63296,0,"""North America""" +2024-08-09,82741,7258,"[\""Monitor\"", \""Charger\""]",4073.28,"{\""loyalty\"": \""22%\""}",5502,1,"""South America""" +2024-12-03,82742,2777,"[\""Keyboard\"", \""Monitor\""]",3584.51,"{\""promo\"": \""28%\""}",47650,1,"""Europe""" +2024-03-25,82743,4728,"[\""Monitor\""]",1749.12,{},83193,0,"""North America""" +2023-06-28,82744,5769,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4682.14,{},33421,1,"""North America""" +2023-03-13,82745,2701,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3189.13,"{\""promo\"": \""25%\""}",102850,1,"""South America""" +2023-08-18,82746,7170,"[\""Wireless Mouse\"", \""Phone\""]",2759.48,"{\""promo\"": \""24%\""}",241033,1,"""South America""" +2023-03-17,82747,2382,"[\""Charger\""]",1114.78,"{\""seasonal\"": \""30%\""}",253861,1,"""North America""" +2024-07-06,82748,8159,"[\""Laptop\""]",2662.36,"{\""seasonal\"": \""14%\""}",81695,0,"""Africa""" +2023-03-27,82749,3074,"[\""Monitor\"", \""Headphones\""]",1046.83,"{\""promo\"": \""6%\""}",216615,0,"""South America""" +2024-11-09,82750,1154,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2912.37,"{\""seasonal\"": \""17%\""}",69831,1,"""South America""" +2023-10-16,82751,6,"[\""Charger\"", \""Monitor\""]",2194.85,"{\""seasonal\"": \""26%\""}",97147,0,"""Asia""" +2023-08-18,82752,5253,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3884.34,"{\""loyalty\"": \""23%\""}",269855,1,"""Africa""" +2023-05-15,82753,6313,"[\""Wireless Mouse\"", \""Monitor\""]",1392.26,"{\""loyalty\"": \""14%\""}",206867,1,"""Asia""" +2023-11-10,82754,1771,"[\""Phone\""]",4786.45,{},103484,0,"""North America""" +2023-05-14,82755,1826,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2670.17,"{\"": \""14%\""}",77677,0,"""North America""" +2024-01-08,82756,7911,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2578.99,"{\"": \""9%\""}",265911,1,"""Europe""" +2024-01-27,82757,9849,"[\""Keyboard\"", \""Charger\""]",4468.23,"{\""promo\"": \""12%\""}",134855,0,"""South America""" +2024-11-18,82758,8030,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1904.05,{},88529,1,"""Africa""" +2024-12-05,82759,5402,"[\""Headphones\""]",1227.25,"{\""seasonal\"": \""26%\""}",160152,1,"""Europe""" +2024-04-29,82760,9674,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2990.33,"{\""loyalty\"": \""24%\""}",76552,1,"""South America""" +2024-01-12,82761,6419,"[\""Tablet\""]",1114.22,"{\""promo\"": \""8%\""}",232386,0,"""North America""" +2024-04-09,82762,6804,"[\""Laptop\"", \""Monitor\""]",2057.7,"{\"": \""24%\""}",23226,1,"""North America""" +2023-09-15,82763,8416,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4411.3,{},217306,0,"""South America""" +2023-01-25,82764,4516,"[\""Laptop\"", \""Phone\""]",4799.04,"{\"": \""28%\""}",100884,0,"""Asia""" +2024-12-29,82765,838,"[\""Tablet\"", \""Monitor\""]",4150.84,{},27509,0,"""Asia""" +2023-09-01,82766,7272,"[\""Phone\""]",151.87,"{\""seasonal\"": \""11%\""}",19181,0,"""Europe""" +2024-05-20,82767,7620,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",753.87,{},175503,1,"""South America""" +2024-04-17,82768,5853,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4967.55,{},215414,0,"""Africa""" +2024-12-24,82769,5374,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",3980.58,"{\""promo\"": \""10%\""}",269254,0,"""South America""" +2023-10-18,82770,3252,"[\""Phone\""]",3497.22,"{\""seasonal\"": \""25%\""}",41477,0,"""Europe""" +2023-05-26,82771,2288,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3509.47,"{\""promo\"": \""20%\""}",40105,0,"""Asia""" +2024-09-21,82772,614,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1607.49,"{\""promo\"": \""19%\""}",106183,0,"""South America""" +2023-04-14,82773,9917,"[\""Headphones\""]",733.92,{},261138,1,"""Europe""" +2023-04-07,82774,1592,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2335.76,"{\""loyalty\"": \""18%\""}",54267,0,"""South America""" +2023-11-21,82775,4303,"[\""Tablet\"", \""Headphones\""]",1313.32,{},57866,1,"""Europe""" +2024-06-20,82776,5557,"[\""Wireless Mouse\""]",1478.79,"{\""seasonal\"": \""24%\""}",169809,0,"""Europe""" +2023-07-09,82777,8756,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1520.61,{},279689,0,"""Africa""" +2023-08-24,82778,2326,"[\""Tablet\""]",3393.3,"{\"": \""6%\""}",30543,1,"""Asia""" +2023-12-31,82779,7513,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1715.01,{},118569,0,"""Europe""" +2024-09-28,82780,4823,"[\""Monitor\""]",4015.96,{},173840,0,"""South America""" +2024-06-08,82781,4247,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2224.61,"{\"": \""27%\""}",82297,1,"""South America""" +2024-03-15,82782,121,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4233.6,"{\""seasonal\"": \""22%\""}",179469,0,"""Asia""" +2024-11-30,82783,1372,"[\""Headphones\""]",538.01,{},247503,1,"""Europe""" +2023-07-25,82784,2031,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1145.86,"{\"": \""27%\""}",232704,1,"""Europe""" +2024-06-16,82785,2486,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3781.35,"{\""seasonal\"": \""12%\""}",11025,1,"""Europe""" +2024-12-29,82786,5548,"[\""Monitor\"", \""Headphones\""]",2750.07,{},154927,1,"""Asia""" +2023-06-22,82787,1399,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1158.93,"{\""seasonal\"": \""28%\""}",245755,0,"""South America""" +2023-10-16,82788,3399,"[\""Headphones\"", \""Charger\""]",4111.69,{},258980,1,"""Europe""" +2024-08-20,82789,9082,"[\""Keyboard\""]",53.36,"{\"": \""18%\""}",107002,1,"""North America""" +2023-04-17,82790,9234,"[\""Monitor\"", \""Headphones\""]",366.92,"{\""seasonal\"": \""12%\""}",286653,0,"""Asia""" +2023-03-06,82791,8788,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1137.04,"{\"": \""13%\""}",250797,1,"""North America""" +2024-11-08,82792,3164,"[\""Charger\""]",4415.47,"{\"": \""8%\""}",60316,0,"""Europe""" +2024-10-29,82793,9340,"[\""Laptop\""]",3293.32,{},193800,0,"""Africa""" +2024-03-30,82794,7831,"[\""Tablet\"", \""Phone\""]",80.58,"{\""promo\"": \""19%\""}",221099,1,"""North America""" +2023-03-04,82795,3542,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2567.05,{},251556,0,"""Asia""" +2024-07-22,82796,9768,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3473.24,{},161693,0,"""Europe""" +2023-07-30,82797,6441,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4146.89,{},253649,0,"""Asia""" +2023-01-30,82798,1606,"[\""Keyboard\"", \""Charger\""]",4032.78,{},190026,0,"""Europe""" +2024-10-19,82799,4180,"[\""Keyboard\""]",1233.09,{},60286,0,"""North America""" +2023-04-30,82800,4613,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2045.55,{},118245,0,"""Asia""" +2023-09-22,82801,1111,"[\""Tablet\""]",2010.65,"{\""promo\"": \""17%\""}",248156,1,"""North America""" +2023-04-04,82802,8326,"[\""Headphones\""]",3844.74,"{\"": \""6%\""}",272007,0,"""Africa""" +2024-05-02,82803,7358,"[\""Tablet\"", \""Keyboard\""]",1048.19,{},157444,1,"""North America""" +2024-04-04,82804,6628,"[\""Phone\"", \""Charger\""]",496.07,"{\""seasonal\"": \""14%\""}",278999,0,"""North America""" +2024-04-30,82805,2315,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1886.03,"{\""loyalty\"": \""6%\""}",118214,0,"""Africa""" +2024-07-17,82806,5943,"[\""Charger\"", \""Headphones\""]",559.88,"{\"": \""30%\""}",9508,1,"""Asia""" +2024-09-11,82807,9519,"[\""Laptop\"", \""Charger\""]",2350.64,"{\""loyalty\"": \""8%\""}",46352,1,"""North America""" +2023-01-01,82808,491,"[\""Charger\"", \""Headphones\""]",2220.76,"{\""loyalty\"": \""27%\""}",254635,1,"""Africa""" +2024-07-12,82809,7747,"[\""Laptop\"", \""Charger\""]",4872.27,{},200060,0,"""South America""" +2023-01-29,82810,9448,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1231.75,{},11032,1,"""Asia""" +2024-05-18,82811,5410,"[\""Laptop\"", \""Keyboard\""]",1412.36,"{\""seasonal\"": \""10%\""}",279074,1,"""Africa""" +2024-02-01,82812,9122,"[\""Laptop\"", \""Tablet\""]",4250.82,{},97437,0,"""Europe""" +2023-05-09,82813,7119,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1678.7,"{\""promo\"": \""21%\""}",240881,0,"""Asia""" +2024-08-28,82814,6286,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2723.85,"{\""loyalty\"": \""8%\""}",152040,0,"""South America""" +2023-01-10,82815,1190,"[\""Monitor\"", \""Tablet\""]",1494.88,"{\""promo\"": \""8%\""}",73094,1,"""Africa""" +2024-03-24,82816,3694,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3724.26,{},116096,1,"""North America""" +2023-05-03,82817,3588,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2307.97,"{\""promo\"": \""13%\""}",286789,0,"""Europe""" +2023-12-19,82818,3265,"[\""Charger\""]",3328.52,{},43829,0,"""North America""" +2024-10-02,82819,3195,"[\""Keyboard\"", \""Wireless Mouse\""]",2012.42,{},242359,1,"""North America""" +2024-08-18,82820,496,"[\""Monitor\"", \""Keyboard\""]",4163.42,"{\""loyalty\"": \""8%\""}",58329,0,"""Asia""" +2024-03-06,82821,363,"[\""Headphones\""]",1048.04,{},299634,0,"""Asia""" +2023-11-21,82822,6576,"[\""Phone\"", \""Wireless Mouse\""]",3325.97,"{\""loyalty\"": \""22%\""}",162094,0,"""Europe""" +2023-11-08,82823,8530,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4091.6,"{\"": \""29%\""}",264336,0,"""Europe""" +2024-05-06,82824,964,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",563.92,{},199054,0,"""North America""" +2023-02-20,82825,3779,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",576.47,"{\"": \""10%\""}",242605,0,"""North America""" +2023-05-25,82826,5025,"[\""Charger\"", \""Monitor\""]",3708.7,{},220222,1,"""South America""" +2024-06-11,82827,9149,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1832.66,{},138676,0,"""Europe""" +2023-02-15,82828,8361,"[\""Tablet\"", \""Wireless Mouse\""]",4512.62,"{\""promo\"": \""7%\""}",288948,0,"""Europe""" +2024-08-16,82829,1364,"[\""Phone\"", \""Tablet\""]",3279.58,"{\""promo\"": \""11%\""}",227799,0,"""Africa""" +2024-01-17,82830,6883,"[\""Keyboard\"", \""Laptop\""]",464.5,"{\""promo\"": \""19%\""}",228717,0,"""South America""" +2024-09-07,82831,3191,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1306.94,"{\"": \""28%\""}",282992,1,"""South America""" +2023-05-24,82832,6594,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2364.21,"{\""loyalty\"": \""21%\""}",133502,0,"""North America""" +2023-10-17,82833,9302,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1699.64,{},198702,1,"""Europe""" +2024-12-15,82834,432,"[\""Headphones\""]",4875.11,{},276976,0,"""South America""" +2024-07-28,82835,207,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2057.57,{},104596,1,"""North America""" +2023-02-02,82836,4905,"[\""Phone\"", \""Monitor\""]",710.06,{},267243,1,"""North America""" +2023-01-14,82837,872,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1071.99,"{\""loyalty\"": \""23%\""}",134958,0,"""South America""" +2023-04-18,82838,2301,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3910.23,{},196414,0,"""South America""" +2024-11-08,82839,268,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2837.87,"{\""seasonal\"": \""25%\""}",261801,0,"""Asia""" +2023-10-21,82840,6834,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",491.05,"{\""promo\"": \""26%\""}",20438,0,"""Asia""" +2023-07-18,82841,1932,"[\""Wireless Mouse\"", \""Charger\""]",2041.45,"{\""seasonal\"": \""8%\""}",120495,0,"""North America""" +2023-08-04,82842,2755,"[\""Tablet\""]",394.73,{},62162,1,"""Europe""" +2024-01-24,82843,3488,"[\""Monitor\""]",496.68,{},101808,1,"""Africa""" +2023-07-23,82844,2862,"[\""Phone\"", \""Headphones\""]",1061.92,{},241085,0,"""Africa""" +2023-03-07,82845,6518,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4550.65,{},47377,0,"""Africa""" +2023-04-11,82846,4704,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2429.65,{},186038,1,"""Africa""" +2024-08-27,82847,9995,"[\""Keyboard\"", \""Wireless Mouse\""]",4764.15,{},34493,1,"""North America""" +2023-03-14,82848,1475,"[\""Keyboard\""]",568.09,"{\""promo\"": \""5%\""}",50642,1,"""North America""" +2023-03-31,82849,4176,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3924.14,{},156403,0,"""Africa""" +2024-03-22,82850,740,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",58.41,{},148998,0,"""Africa""" +2024-06-21,82851,3841,"[\""Tablet\"", \""Monitor\""]",796.54,{},231595,1,"""Asia""" +2024-11-28,82852,6066,"[\""Monitor\"", \""Keyboard\""]",1988.72,"{\""promo\"": \""7%\""}",240454,1,"""North America""" +2023-05-19,82853,445,"[\""Keyboard\"", \""Phone\""]",2502.11,{},1963,0,"""Europe""" +2024-12-26,82854,549,"[\""Monitor\""]",204.4,{},168068,1,"""South America""" +2024-06-04,82855,9577,"[\""Laptop\"", \""Keyboard\""]",1850.2,"{\""promo\"": \""15%\""}",196892,1,"""Europe""" +2024-04-18,82856,2660,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1347.0,"{\""promo\"": \""15%\""}",186995,1,"""Africa""" +2023-10-07,82857,1514,"[\""Tablet\"", \""Monitor\""]",4403.69,"{\""seasonal\"": \""10%\""}",134051,1,"""Asia""" +2024-02-18,82858,826,"[\""Laptop\""]",706.8,"{\""loyalty\"": \""28%\""}",151177,0,"""Africa""" +2023-09-04,82859,2307,"[\""Laptop\"", \""Monitor\""]",105.18,"{\""seasonal\"": \""29%\""}",26445,0,"""South America""" +2023-04-04,82860,6676,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4089.12,{},99484,0,"""North America""" +2024-01-24,82861,4710,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2596.48,{},62192,0,"""North America""" +2023-09-30,82862,3780,"[\""Phone\"", \""Monitor\""]",3614.83,{},271186,0,"""North America""" +2023-01-03,82863,7745,"[\""Wireless Mouse\"", \""Charger\""]",59.75,{},177578,1,"""North America""" +2023-07-17,82864,6244,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1734.76,"{\"": \""21%\""}",121576,0,"""North America""" +2023-09-20,82865,9145,"[\""Keyboard\""]",3884.9,"{\""seasonal\"": \""10%\""}",24074,0,"""Africa""" +2024-07-24,82866,2432,"[\""Monitor\""]",2447.0,{},3991,1,"""Asia""" +2024-05-11,82867,7380,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3119.33,{},173376,1,"""Europe""" +2023-08-14,82868,9911,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",940.55,{},224617,0,"""Asia""" +2023-05-05,82869,9328,"[\""Wireless Mouse\""]",3909.7,{},295308,1,"""South America""" +2024-04-29,82870,8191,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",774.45,{},299732,1,"""South America""" +2024-03-26,82871,9891,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",407.5,{},274503,0,"""Europe""" +2023-03-29,82872,3178,"[\""Wireless Mouse\"", \""Monitor\""]",4127.42,"{\""loyalty\"": \""19%\""}",23714,1,"""Africa""" +2024-04-15,82873,4164,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3616.36,"{\""loyalty\"": \""12%\""}",42351,0,"""Asia""" +2024-03-09,82874,9800,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3340.46,"{\""loyalty\"": \""28%\""}",20651,0,"""Africa""" +2024-07-02,82875,8545,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4641.31,{},210173,1,"""Africa""" +2024-06-21,82876,8644,"[\""Phone\"", \""Monitor\""]",2103.32,{},172744,1,"""Europe""" +2023-10-04,82877,852,"[\""Charger\"", \""Keyboard\""]",4509.95,"{\"": \""9%\""}",245434,1,"""Europe""" +2024-02-03,82878,5413,"[\""Laptop\"", \""Tablet\""]",2744.57,{},184475,0,"""Africa""" +2023-01-05,82879,1809,"[\""Wireless Mouse\""]",1218.17,"{\"": \""9%\""}",31166,0,"""Asia""" +2024-05-19,82880,7678,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3808.23,{},17999,0,"""Africa""" +2024-09-10,82881,2301,"[\""Wireless Mouse\""]",1659.33,"{\""promo\"": \""6%\""}",100109,0,"""South America""" +2023-03-16,82882,2617,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",863.34,"{\""seasonal\"": \""12%\""}",299532,1,"""Asia""" +2023-09-30,82883,3080,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1168.99,{},264938,1,"""Europe""" +2023-08-18,82884,6035,"[\""Laptop\""]",155.53,{},269592,1,"""Asia""" +2023-06-03,82885,7474,"[\""Headphones\""]",3975.61,{},102765,0,"""Africa""" +2024-03-14,82886,6603,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",129.35,"{\""seasonal\"": \""16%\""}",168791,1,"""North America""" +2023-06-09,82887,8910,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4133.87,{},69085,0,"""South America""" +2024-10-16,82888,6518,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",70.4,{},67365,0,"""South America""" +2024-02-06,82889,3622,"[\""Tablet\"", \""Phone\""]",4998.71,"{\""promo\"": \""20%\""}",154502,0,"""Europe""" +2024-03-12,82890,1750,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3602.37,"{\""seasonal\"": \""20%\""}",282965,1,"""Europe""" +2024-07-30,82891,2736,"[\""Laptop\""]",2148.4,"{\""loyalty\"": \""8%\""}",133536,0,"""Africa""" +2024-11-30,82892,5461,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",473.21,{},68198,1,"""Asia""" +2024-03-17,82893,5454,"[\""Headphones\""]",3931.25,"{\""loyalty\"": \""9%\""}",77526,0,"""Europe""" +2024-04-27,82894,8730,"[\""Monitor\""]",3803.86,{},178139,0,"""Asia""" +2024-12-19,82895,8343,"[\""Tablet\"", \""Wireless Mouse\""]",147.52,"{\""promo\"": \""23%\""}",269511,1,"""Asia""" +2023-05-25,82896,3151,"[\""Charger\"", \""Wireless Mouse\""]",3083.12,{},160183,0,"""North America""" +2023-08-25,82897,1927,"[\""Phone\""]",1466.17,{},58627,1,"""Africa""" +2024-08-02,82898,6822,"[\""Phone\"", \""Charger\""]",3041.52,{},135537,0,"""Asia""" +2024-01-24,82899,2448,"[\""Monitor\"", \""Tablet\""]",3420.13,"{\""promo\"": \""11%\""}",29559,1,"""Europe""" +2023-01-19,82900,21,"[\""Headphones\""]",3931.45,{},122639,1,"""North America""" +2024-04-29,82901,4595,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4441.76,"{\""seasonal\"": \""26%\""}",199945,0,"""Africa""" +2023-12-24,82902,5677,"[\""Monitor\""]",4922.57,"{\""seasonal\"": \""7%\""}",10745,0,"""North America""" +2023-07-21,82903,3995,"[\""Monitor\""]",3493.12,{},237915,0,"""Africa""" +2023-01-03,82904,8897,"[\""Laptop\""]",4687.19,{},12131,1,"""Africa""" +2024-04-20,82905,2864,"[\""Headphones\"", \""Laptop\""]",2173.26,{},173306,1,"""South America""" +2023-04-13,82906,9322,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",209.81,{},74591,1,"""Asia""" +2024-07-27,82907,4671,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4019.85,{},70827,0,"""Asia""" +2024-01-22,82908,6582,"[\""Phone\"", \""Wireless Mouse\""]",491.06,{},112884,0,"""Asia""" +2024-06-28,82909,7381,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1118.11,"{\""loyalty\"": \""19%\""}",40266,1,"""North America""" +2023-07-26,82910,6349,"[\""Monitor\"", \""Laptop\""]",4980.39,"{\""seasonal\"": \""16%\""}",100479,1,"""North America""" +2024-05-06,82911,6652,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1634.81,"{\""promo\"": \""13%\""}",46004,1,"""South America""" +2023-05-23,82912,5025,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",1874.95,{},208736,1,"""South America""" +2024-11-16,82913,2821,"[\""Keyboard\"", \""Monitor\""]",2884.13,"{\""seasonal\"": \""6%\""}",205476,0,"""North America""" +2024-07-23,82914,6139,"[\""Tablet\""]",3786.74,"{\"": \""15%\""}",19646,0,"""South America""" +2023-12-21,82915,2680,"[\""Laptop\""]",4441.51,{},156680,1,"""Africa""" +2023-03-17,82916,9288,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1994.84,{},197403,0,"""North America""" +2024-01-13,82917,1412,"[\""Phone\"", \""Keyboard\""]",1876.78,"{\""seasonal\"": \""21%\""}",159798,1,"""Asia""" +2023-11-02,82918,767,"[\""Charger\""]",1763.23,{},198425,1,"""Asia""" +2023-05-29,82919,6343,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3464.78,"{\""seasonal\"": \""6%\""}",200134,0,"""South America""" +2023-06-28,82920,497,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",199.06,{},133967,1,"""Europe""" +2024-09-29,82921,7265,"[\""Headphones\""]",4759.66,"{\"": \""6%\""}",192850,0,"""North America""" +2024-09-12,82922,2688,"[\""Laptop\""]",2440.86,"{\"": \""15%\""}",161143,0,"""Asia""" +2024-12-15,82923,8791,"[\""Phone\"", \""Wireless Mouse\""]",248.03,"{\""promo\"": \""30%\""}",294691,0,"""South America""" +2024-09-21,82924,9593,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3341.52,{},2382,0,"""South America""" +2023-07-08,82925,1802,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",71.74,"{\""seasonal\"": \""9%\""}",150582,0,"""North America""" +2023-09-15,82926,1228,"[\""Charger\""]",4531.91,"{\""seasonal\"": \""29%\""}",145005,1,"""North America""" +2024-01-11,82927,6032,"[\""Laptop\"", \""Wireless Mouse\""]",4425.8,{},157456,0,"""North America""" +2024-02-29,82928,9563,"[\""Laptop\"", \""Monitor\""]",3717.34,{},18315,0,"""North America""" +2023-04-12,82929,4157,"[\""Phone\""]",2621.25,"{\""seasonal\"": \""24%\""}",71471,0,"""Europe""" +2023-05-01,82930,2812,"[\""Monitor\"", \""Headphones\""]",659.7,{},211236,0,"""North America""" +2024-03-20,82931,6273,"[\""Laptop\"", \""Headphones\""]",2455.19,"{\""seasonal\"": \""20%\""}",225682,0,"""South America""" +2024-11-20,82932,3584,"[\""Headphones\""]",2672.2,"{\""loyalty\"": \""22%\""}",213655,1,"""South America""" +2024-05-23,82933,3354,"[\""Keyboard\"", \""Phone\""]",1647.99,{},171293,0,"""South America""" +2024-01-29,82934,4155,"[\""Keyboard\"", \""Laptop\""]",4092.25,"{\"": \""22%\""}",235823,1,"""Asia""" +2023-07-30,82935,5371,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3336.81,"{\""seasonal\"": \""26%\""}",278804,1,"""Asia""" +2023-10-28,82936,9183,"[\""Headphones\"", \""Laptop\""]",3847.3,"{\""seasonal\"": \""25%\""}",162375,0,"""South America""" +2023-04-21,82937,5347,"[\""Keyboard\""]",1715.71,"{\""seasonal\"": \""25%\""}",35486,1,"""Europe""" +2024-08-04,82938,8661,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4370.48,{},268120,0,"""Africa""" +2024-02-26,82939,2312,"[\""Wireless Mouse\""]",1738.76,"{\""promo\"": \""13%\""}",90836,1,"""Africa""" +2024-05-01,82940,9407,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3951.59,{},288051,1,"""Africa""" +2024-06-24,82941,7697,"[\""Monitor\"", \""Headphones\""]",4728.37,{},79630,1,"""Asia""" +2023-02-17,82942,318,"[\""Tablet\"", \""Keyboard\""]",1520.25,"{\"": \""27%\""}",156148,0,"""North America""" +2023-10-30,82943,7280,"[\""Headphones\""]",575.44,{},191942,0,"""Europe""" +2023-07-31,82944,4096,"[\""Wireless Mouse\""]",3197.62,{},211666,1,"""Asia""" +2024-02-10,82945,3218,"[\""Charger\"", \""Headphones\""]",2075.81,"{\""seasonal\"": \""26%\""}",192295,1,"""Europe""" +2024-02-20,82946,9915,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1354.34,"{\"": \""12%\""}",5169,1,"""South America""" +2024-04-15,82947,5768,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4374.15,{},247556,1,"""Africa""" +2024-08-06,82948,2928,"[\""Wireless Mouse\"", \""Tablet\""]",1294.75,"{\""seasonal\"": \""7%\""}",55363,1,"""Europe""" +2024-05-30,82949,223,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1401.3,"{\""loyalty\"": \""29%\""}",157890,1,"""Europe""" +2024-06-28,82950,7866,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",176.14,"{\""promo\"": \""22%\""}",210016,1,"""South America""" +2023-08-23,82951,6806,"[\""Headphones\""]",590.83,"{\""seasonal\"": \""12%\""}",149681,0,"""Africa""" +2024-12-26,82952,2238,"[\""Keyboard\""]",2288.16,"{\"": \""24%\""}",12490,0,"""Europe""" +2023-03-12,82953,6496,"[\""Charger\""]",2572.17,"{\""loyalty\"": \""11%\""}",24124,0,"""North America""" +2024-08-22,82954,2918,"[\""Monitor\"", \""Tablet\""]",4929.0,"{\""loyalty\"": \""12%\""}",259115,0,"""North America""" +2024-04-22,82955,3413,"[\""Laptop\"", \""Headphones\""]",2012.19,"{\""promo\"": \""24%\""}",127352,0,"""Europe""" +2023-06-10,82956,6192,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",786.61,"{\""loyalty\"": \""29%\""}",38338,0,"""South America""" +2024-11-08,82957,524,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1913.82,{},44709,1,"""North America""" +2024-10-26,82958,2408,"[\""Charger\""]",4826.01,"{\""loyalty\"": \""29%\""}",37936,1,"""Africa""" +2023-11-22,82959,2073,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3579.09,"{\""loyalty\"": \""20%\""}",158247,1,"""Africa""" +2023-03-08,82960,6571,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2483.87,"{\""loyalty\"": \""27%\""}",258951,1,"""Europe""" +2023-03-07,82961,3805,"[\""Laptop\"", \""Wireless Mouse\""]",4171.98,{},280407,1,"""Europe""" +2024-05-28,82962,4139,"[\""Headphones\""]",2554.33,"{\"": \""11%\""}",278661,0,"""Asia""" +2024-01-03,82963,1395,"[\""Phone\"", \""Keyboard\""]",1214.63,"{\""loyalty\"": \""13%\""}",175005,0,"""Asia""" +2023-11-27,82964,3346,"[\""Phone\"", \""Laptop\""]",2101.27,{},248422,1,"""North America""" +2023-04-16,82965,7819,"[\""Monitor\"", \""Headphones\""]",981.49,{},5523,0,"""North America""" +2023-09-30,82966,1061,"[\""Tablet\""]",4403.1,"{\""promo\"": \""23%\""}",275280,0,"""South America""" +2023-04-16,82967,5909,"[\""Headphones\"", \""Tablet\""]",3999.91,{},211163,1,"""Africa""" +2024-02-13,82968,2543,"[\""Laptop\""]",130.91,{},251017,0,"""Africa""" +2024-03-24,82969,9393,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1007.96,{},54328,1,"""North America""" +2023-03-01,82970,6489,"[\""Laptop\""]",235.82,"{\""promo\"": \""26%\""}",208797,1,"""Africa""" +2023-06-23,82971,5638,"[\""Headphones\""]",3380.38,{},1877,0,"""Asia""" +2024-08-04,82972,3300,"[\""Tablet\"", \""Phone\""]",52.78,"{\""promo\"": \""8%\""}",184495,1,"""South America""" +2024-07-11,82973,981,"[\""Keyboard\""]",3983.35,"{\""seasonal\"": \""24%\""}",198390,1,"""South America""" +2023-12-06,82974,7450,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",539.31,{},179768,1,"""South America""" +2023-08-05,82975,1064,"[\""Charger\""]",1923.82,"{\""loyalty\"": \""8%\""}",180163,0,"""Asia""" +2023-04-06,82976,9268,"[\""Phone\""]",2330.16,"{\""promo\"": \""16%\""}",46979,0,"""North America""" +2024-03-18,82977,5635,"[\""Headphones\""]",1796.98,{},8774,0,"""North America""" +2024-06-04,82978,6668,"[\""Keyboard\""]",2832.93,"{\""promo\"": \""17%\""}",90017,1,"""South America""" +2024-08-14,82979,355,"[\""Laptop\""]",2907.67,{},213967,1,"""Europe""" +2024-09-23,82980,623,"[\""Wireless Mouse\"", \""Keyboard\""]",580.59,"{\""seasonal\"": \""24%\""}",267358,0,"""North America""" +2023-02-15,82981,3976,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3426.4,"{\""promo\"": \""23%\""}",202773,0,"""Asia""" +2024-01-25,82982,6113,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",593.11,"{\""loyalty\"": \""21%\""}",158036,1,"""Africa""" +2023-10-16,82983,2469,"[\""Laptop\""]",443.77,{},67076,1,"""South America""" +2024-01-26,82984,8478,"[\""Monitor\"", \""Laptop\""]",2362.58,{},266461,1,"""North America""" +2024-12-26,82985,3802,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2207.01,"{\"": \""29%\""}",264899,0,"""Europe""" +2024-07-21,82986,9436,"[\""Phone\""]",1947.38,{},8781,1,"""North America""" +2023-02-20,82987,3052,"[\""Laptop\""]",2340.0,{},8960,0,"""Africa""" +2024-11-27,82988,241,"[\""Keyboard\"", \""Tablet\""]",1316.32,{},76558,1,"""North America""" +2024-10-05,82989,5640,"[\""Charger\"", \""Keyboard\""]",2450.97,"{\""seasonal\"": \""21%\""}",40325,0,"""South America""" +2024-07-13,82990,4431,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1457.14,{},92992,1,"""Africa""" +2023-08-22,82991,5923,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1432.04,{},257014,0,"""Europe""" +2023-09-13,82992,3997,"[\""Charger\""]",1832.51,"{\"": \""21%\""}",196767,1,"""Asia""" +2024-02-10,82993,7952,"[\""Charger\""]",304.97,{},220040,1,"""Europe""" +2023-03-21,82994,8650,"[\""Phone\""]",186.44,"{\""loyalty\"": \""15%\""}",111917,0,"""North America""" +2024-06-21,82995,2348,"[\""Charger\"", \""Keyboard\""]",3392.22,"{\"": \""27%\""}",297348,1,"""North America""" +2023-03-26,82996,3719,"[\""Charger\"", \""Headphones\""]",136.16,{},73045,0,"""South America""" +2024-12-15,82997,9350,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2930.22,{},85415,0,"""Africa""" +2024-12-08,82998,932,"[\""Charger\"", \""Phone\""]",2425.95,"{\""promo\"": \""24%\""}",2163,0,"""Europe""" +2023-10-01,82999,2681,"[\""Headphones\""]",4908.38,"{\""seasonal\"": \""20%\""}",103362,1,"""Africa""" +2024-05-23,83000,2570,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4749.26,"{\""promo\"": \""18%\""}",287761,1,"""Asia""" +2023-02-26,83001,8647,"[\""Keyboard\"", \""Headphones\""]",3347.67,"{\""seasonal\"": \""11%\""}",18399,1,"""North America""" +2023-02-02,83002,5530,"[\""Phone\""]",2843.99,{},42352,0,"""Africa""" +2024-08-31,83003,7627,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1589.45,{},153479,0,"""North America""" +2023-09-16,83004,1355,"[\""Headphones\""]",3749.27,"{\""loyalty\"": \""21%\""}",283040,1,"""Africa""" +2024-05-09,83005,4841,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",584.5,{},299087,1,"""Africa""" +2024-08-02,83006,4303,"[\""Tablet\"", \""Laptop\""]",2520.96,"{\"": \""24%\""}",201360,0,"""Africa""" +2023-01-03,83007,221,"[\""Monitor\"", \""Laptop\""]",1606.32,{},225756,1,"""Africa""" +2024-07-26,83008,9510,"[\""Headphones\"", \""Laptop\""]",2514.31,"{\"": \""18%\""}",223782,1,"""Europe""" +2024-06-13,83009,9128,"[\""Keyboard\""]",93.65,"{\""promo\"": \""20%\""}",262385,1,"""Africa""" +2024-04-06,83010,8370,"[\""Headphones\""]",3344.04,{},140080,1,"""North America""" +2023-01-27,83011,4343,"[\""Phone\""]",2239.35,"{\""loyalty\"": \""24%\""}",137033,0,"""Africa""" +2023-12-31,83012,5056,"[\""Charger\"", \""Monitor\""]",2937.36,"{\"": \""19%\""}",41589,1,"""Asia""" +2024-04-25,83013,3507,"[\""Phone\""]",1156.32,"{\""promo\"": \""13%\""}",91775,0,"""Asia""" +2023-06-04,83014,8074,"[\""Keyboard\"", \""Laptop\""]",4463.28,{},23691,1,"""Africa""" +2023-11-22,83015,8886,"[\""Headphones\"", \""Monitor\""]",1154.77,"{\""seasonal\"": \""15%\""}",250204,1,"""Africa""" +2024-07-17,83016,565,"[\""Laptop\"", \""Monitor\""]",1444.75,{},258196,0,"""North America""" +2024-06-15,83017,660,"[\""Headphones\"", \""Charger\""]",580.89,"{\""loyalty\"": \""29%\""}",238766,0,"""South America""" +2023-09-01,83018,1777,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2849.83,"{\""seasonal\"": \""8%\""}",140472,1,"""North America""" +2023-10-21,83019,8252,"[\""Wireless Mouse\""]",2009.21,"{\""promo\"": \""21%\""}",231851,0,"""Asia""" +2024-05-14,83020,6952,"[\""Wireless Mouse\"", \""Keyboard\""]",2343.96,{},121576,1,"""South America""" +2024-08-16,83021,2915,"[\""Tablet\""]",3476.4,{},295796,1,"""Africa""" +2023-11-02,83022,8202,"[\""Laptop\""]",1977.25,"{\""seasonal\"": \""24%\""}",71766,0,"""Asia""" +2023-10-11,83023,3944,"[\""Laptop\""]",436.09,{},277044,0,"""South America""" +2023-01-20,83024,2332,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",870.78,{},10698,0,"""Europe""" +2024-11-16,83025,5966,"[\""Keyboard\""]",610.82,{},134702,1,"""Africa""" +2024-05-13,83026,3944,"[\""Tablet\"", \""Monitor\""]",1138.91,"{\""loyalty\"": \""11%\""}",281989,1,"""Europe""" +2023-02-17,83027,6641,"[\""Headphones\"", \""Charger\""]",4116.86,"{\""loyalty\"": \""14%\""}",158184,0,"""North America""" +2023-03-27,83028,8408,"[\""Laptop\""]",4848.81,"{\"": \""7%\""}",219014,0,"""Asia""" +2024-05-05,83029,5411,"[\""Headphones\"", \""Monitor\""]",1107.94,"{\""seasonal\"": \""5%\""}",263455,1,"""Asia""" +2024-06-14,83030,4147,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4599.09,{},61144,1,"""Asia""" +2023-11-09,83031,4477,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2495.03,{},90701,1,"""Asia""" +2023-01-31,83032,4711,"[\""Keyboard\""]",3347.86,{},262880,1,"""South America""" +2024-08-19,83033,7367,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1796.07,{},79688,0,"""Europe""" +2023-09-14,83034,4195,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2584.5,{},18012,0,"""South America""" +2024-08-12,83035,1922,"[\""Charger\""]",2020.39,{},159764,1,"""South America""" +2023-05-13,83036,5469,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",479.3,{},26719,1,"""Asia""" +2024-12-10,83037,991,"[\""Charger\""]",1781.76,{},102470,0,"""Europe""" +2024-06-11,83038,6666,"[\""Laptop\""]",3717.64,{},13292,0,"""Asia""" +2024-05-12,83039,7745,"[\""Monitor\""]",3446.91,"{\""promo\"": \""30%\""}",259249,1,"""Europe""" +2024-08-29,83040,5826,"[\""Charger\"", \""Phone\""]",2231.46,{},110764,0,"""South America""" +2023-02-15,83041,1999,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2787.06,{},27083,1,"""South America""" +2023-01-28,83042,5346,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2106.79,{},179458,1,"""North America""" +2023-03-25,83043,1255,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1139.29,{},283070,0,"""Africa""" +2023-10-22,83044,2318,"[\""Phone\""]",2787.67,{},272140,1,"""North America""" +2024-12-06,83045,3666,"[\""Keyboard\""]",1737.3,{},78095,1,"""Africa""" +2024-11-06,83046,7784,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2470.68,"{\""seasonal\"": \""8%\""}",164886,0,"""Africa""" +2024-09-16,83047,7100,"[\""Wireless Mouse\""]",3210.03,"{\""loyalty\"": \""24%\""}",95305,1,"""Africa""" +2024-01-31,83048,7679,"[\""Headphones\""]",2879.85,{},115741,0,"""South America""" +2024-11-25,83049,896,"[\""Headphones\""]",1605.9,{},79467,1,"""Asia""" +2024-07-22,83050,3304,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1405.46,"{\"": \""25%\""}",87167,1,"""North America""" +2024-07-15,83051,2473,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3770.37,{},153766,1,"""Asia""" +2023-09-28,83052,9968,"[\""Keyboard\""]",4399.13,"{\""seasonal\"": \""17%\""}",249139,0,"""South America""" +2024-08-04,83053,5726,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3939.71,{},202135,1,"""South America""" +2023-11-11,83054,2008,"[\""Phone\"", \""Headphones\""]",1694.49,{},292571,0,"""Africa""" +2024-04-28,83055,4805,"[\""Tablet\"", \""Laptop\""]",1652.64,{},233006,1,"""North America""" +2024-08-10,83056,6777,"[\""Charger\"", \""Keyboard\""]",1204.06,"{\""loyalty\"": \""8%\""}",48485,1,"""Africa""" +2024-08-20,83057,6649,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2670.13,{},171437,1,"""North America""" +2024-09-29,83058,526,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2407.8,{},8476,1,"""Europe""" +2024-02-13,83059,7669,"[\""Keyboard\""]",1625.53,{},105309,1,"""Europe""" +2023-02-01,83060,278,"[\""Keyboard\"", \""Wireless Mouse\""]",3078.38,{},229599,1,"""North America""" +2023-06-26,83061,2163,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",584.68,"{\""promo\"": \""19%\""}",200344,1,"""South America""" +2023-09-13,83062,9109,"[\""Headphones\"", \""Monitor\""]",831.04,{},15687,0,"""Africa""" +2023-11-29,83063,6255,"[\""Charger\"", \""Monitor\""]",2084.09,"{\"": \""21%\""}",260010,1,"""South America""" +2023-02-20,83064,4955,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1929.12,"{\"": \""15%\""}",227963,1,"""South America""" +2023-09-13,83065,2461,"[\""Keyboard\""]",4239.63,"{\""promo\"": \""19%\""}",183163,0,"""Africa""" +2024-09-03,83066,1216,"[\""Laptop\"", \""Headphones\""]",2144.67,"{\""seasonal\"": \""26%\""}",128910,1,"""Asia""" +2024-02-20,83067,8874,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4205.91,"{\""seasonal\"": \""26%\""}",263042,1,"""North America""" +2023-04-16,83068,5762,"[\""Monitor\"", \""Phone\""]",1296.52,{},204383,0,"""Africa""" +2023-02-13,83069,6719,"[\""Wireless Mouse\""]",994.04,"{\""loyalty\"": \""20%\""}",102412,1,"""Africa""" +2024-10-26,83070,2538,"[\""Monitor\"", \""Keyboard\""]",1910.59,"{\""promo\"": \""10%\""}",239114,0,"""South America""" +2023-04-25,83071,9205,"[\""Laptop\""]",4354.16,{},128189,0,"""Europe""" +2023-05-22,83072,919,"[\""Monitor\"", \""Headphones\""]",2875.34,{},208868,1,"""Asia""" +2024-07-25,83073,9834,"[\""Monitor\"", \""Wireless Mouse\""]",4671.4,{},195444,0,"""South America""" +2024-05-10,83074,6104,"[\""Monitor\""]",566.39,{},272359,0,"""Asia""" +2024-07-09,83075,7073,"[\""Wireless Mouse\""]",1369.83,"{\""promo\"": \""7%\""}",251042,0,"""Europe""" +2023-11-02,83076,4308,"[\""Headphones\"", \""Wireless Mouse\""]",3306.97,{},94212,0,"""South America""" +2023-03-12,83077,6644,"[\""Wireless Mouse\"", \""Charger\""]",1854.97,{},281424,0,"""Asia""" +2023-01-19,83078,6275,"[\""Wireless Mouse\""]",2483.01,{},260963,0,"""North America""" +2024-06-26,83079,5293,"[\""Tablet\"", \""Headphones\""]",1657.34,"{\""seasonal\"": \""8%\""}",228283,0,"""Asia""" +2023-01-16,83080,3342,"[\""Tablet\"", \""Wireless Mouse\""]",897.95,{},107557,0,"""Asia""" +2024-02-14,83081,1423,"[\""Keyboard\""]",1501.04,{},220773,1,"""North America""" +2024-10-06,83082,5967,"[\""Monitor\"", \""Laptop\""]",1662.92,"{\""loyalty\"": \""18%\""}",5817,1,"""South America""" +2023-02-14,83083,4871,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",567.12,{},245703,1,"""Africa""" +2023-12-18,83084,6306,"[\""Laptop\""]",784.56,{},278025,1,"""North America""" +2023-11-10,83085,4044,"[\""Tablet\""]",3911.46,"{\""promo\"": \""8%\""}",144745,0,"""North America""" +2024-10-17,83086,3120,"[\""Keyboard\"", \""Phone\""]",3155.81,{},200429,1,"""Asia""" +2024-08-10,83087,9071,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",679.9,"{\""loyalty\"": \""18%\""}",176532,0,"""South America""" +2024-09-22,83088,7627,"[\""Tablet\"", \""Wireless Mouse\""]",2398.05,{},103454,0,"""South America""" +2024-03-26,83089,4742,"[\""Phone\"", \""Tablet\""]",3734.06,"{\""loyalty\"": \""13%\""}",118084,1,"""South America""" +2024-07-19,83090,9834,"[\""Laptop\""]",1862.36,{},266033,1,"""South America""" +2024-01-05,83091,5226,"[\""Phone\""]",1535.29,"{\""seasonal\"": \""7%\""}",219383,0,"""South America""" +2024-03-12,83092,4680,"[\""Keyboard\"", \""Charger\""]",3230.55,{},152945,1,"""Africa""" +2023-10-06,83093,3277,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1769.26,"{\""loyalty\"": \""9%\""}",293226,1,"""Africa""" +2023-08-26,83094,4342,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1958.02,"{\""loyalty\"": \""28%\""}",13570,0,"""North America""" +2024-08-15,83095,3251,"[\""Charger\"", \""Headphones\""]",2527.55,"{\""loyalty\"": \""13%\""}",56767,1,"""North America""" +2024-07-22,83096,8862,"[\""Tablet\"", \""Charger\""]",542.29,{},128851,1,"""North America""" +2023-09-01,83097,6990,"[\""Wireless Mouse\""]",4417.27,"{\""loyalty\"": \""6%\""}",293565,1,"""Africa""" +2024-08-12,83098,5217,"[\""Charger\"", \""Phone\""]",4478.7,{},188549,0,"""Europe""" +2024-01-25,83099,1098,"[\""Tablet\"", \""Phone\""]",4813.91,"{\""seasonal\"": \""30%\""}",180766,1,"""Africa""" +2024-05-20,83100,7003,"[\""Wireless Mouse\""]",4002.53,{},209038,1,"""Asia""" +2024-02-24,83101,8466,"[\""Wireless Mouse\""]",2125.0,"{\""seasonal\"": \""18%\""}",282537,0,"""Europe""" +2023-07-02,83102,511,"[\""Charger\""]",4429.0,"{\""loyalty\"": \""30%\""}",71927,1,"""Africa""" +2023-04-17,83103,8159,"[\""Headphones\"", \""Keyboard\""]",2107.25,{},177463,1,"""North America""" +2024-06-22,83104,1449,"[\""Charger\"", \""Laptop\"", \""Phone\""]",176.99,"{\""seasonal\"": \""15%\""}",220714,0,"""South America""" +2024-12-28,83105,9555,"[\""Monitor\""]",3800.73,{},264008,0,"""Europe""" +2024-01-12,83106,8801,"[\""Keyboard\"", \""Phone\""]",4149.27,"{\"": \""29%\""}",28948,0,"""Europe""" +2024-11-17,83107,6457,"[\""Monitor\""]",3448.9,"{\"": \""13%\""}",251720,1,"""Europe""" +2023-09-20,83108,9251,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2090.13,"{\""loyalty\"": \""18%\""}",141548,0,"""Africa""" +2023-12-24,83109,1620,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",212.76,{},253929,1,"""Asia""" +2024-07-06,83110,209,"[\""Keyboard\"", \""Phone\""]",2484.87,"{\""loyalty\"": \""11%\""}",50360,0,"""Africa""" +2024-02-08,83111,2698,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1575.26,{},210622,0,"""Asia""" +2023-12-16,83112,7152,"[\""Laptop\""]",3278.23,{},152967,1,"""South America""" +2024-02-23,83113,331,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",104.56,"{\"": \""29%\""}",21725,0,"""Africa""" +2023-04-03,83114,3529,"[\""Monitor\""]",316.57,"{\"": \""30%\""}",211286,1,"""South America""" +2024-05-23,83115,6181,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4120.95,"{\""seasonal\"": \""11%\""}",9043,0,"""Asia""" +2024-02-29,83116,987,"[\""Tablet\"", \""Wireless Mouse\""]",4621.47,"{\""seasonal\"": \""21%\""}",299823,0,"""South America""" +2023-03-11,83117,352,"[\""Charger\"", \""Headphones\""]",3280.3,"{\""promo\"": \""12%\""}",79512,1,"""South America""" +2024-12-22,83118,5049,"[\""Keyboard\""]",992.3,"{\"": \""26%\""}",103962,0,"""Africa""" +2023-01-16,83119,5700,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",863.97,{},75197,1,"""Europe""" +2024-09-28,83120,8992,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4466.34,"{\""promo\"": \""9%\""}",287310,1,"""Asia""" +2023-03-17,83121,7615,"[\""Laptop\""]",4625.62,"{\""seasonal\"": \""10%\""}",105826,0,"""South America""" +2023-02-18,83122,9725,"[\""Keyboard\"", \""Wireless Mouse\""]",2767.29,"{\""promo\"": \""27%\""}",114883,1,"""Europe""" +2023-06-08,83123,3336,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",856.31,"{\"": \""19%\""}",212031,1,"""North America""" +2023-03-14,83124,493,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4915.41,"{\""seasonal\"": \""25%\""}",38960,1,"""North America""" +2024-02-04,83125,9869,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1319.7,"{\""seasonal\"": \""27%\""}",104773,0,"""South America""" +2024-03-28,83126,7411,"[\""Wireless Mouse\"", \""Monitor\""]",86.71,"{\""seasonal\"": \""20%\""}",258278,0,"""South America""" +2023-06-09,83127,7493,"[\""Tablet\""]",2281.26,{},18534,1,"""Africa""" +2024-09-10,83128,6925,"[\""Tablet\"", \""Monitor\""]",3924.41,{},206270,1,"""Asia""" +2023-09-15,83129,7978,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1529.43,"{\""seasonal\"": \""20%\""}",76531,0,"""South America""" +2024-05-23,83130,4743,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2150.07,"{\"": \""7%\""}",43440,0,"""South America""" +2023-02-12,83131,1847,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1281.3,{},138854,1,"""South America""" +2024-03-20,83132,7332,"[\""Laptop\""]",952.2,"{\""promo\"": \""21%\""}",99223,0,"""North America""" +2024-01-02,83133,9221,"[\""Phone\""]",3616.58,"{\"": \""28%\""}",228689,0,"""Africa""" +2024-01-07,83134,6456,"[\""Tablet\""]",4294.68,{},121319,0,"""South America""" +2023-03-29,83135,9995,"[\""Phone\""]",1207.96,"{\"": \""13%\""}",283249,0,"""Europe""" +2023-07-11,83136,8977,"[\""Charger\"", \""Keyboard\""]",2576.17,{},178795,0,"""South America""" +2024-11-03,83137,4819,"[\""Keyboard\""]",2084.46,{},246657,0,"""Asia""" +2023-12-24,83138,5193,"[\""Keyboard\"", \""Tablet\""]",3803.25,{},287057,1,"""North America""" +2024-09-11,83139,432,"[\""Phone\"", \""Charger\""]",2917.55,"{\""loyalty\"": \""8%\""}",232409,0,"""North America""" +2023-12-27,83140,9792,"[\""Keyboard\""]",4513.48,"{\""seasonal\"": \""9%\""}",230230,0,"""Asia""" +2023-12-15,83141,10000,"[\""Wireless Mouse\""]",1731.24,"{\"": \""27%\""}",152074,0,"""Asia""" +2023-09-09,83142,3958,"[\""Charger\"", \""Headphones\""]",1631.02,"{\""loyalty\"": \""18%\""}",288900,0,"""South America""" +2023-05-22,83143,1610,"[\""Keyboard\"", \""Wireless Mouse\""]",3758.37,{},85837,0,"""Africa""" +2024-07-10,83144,7744,"[\""Monitor\"", \""Wireless Mouse\""]",799.67,"{\"": \""9%\""}",118902,1,"""Europe""" +2024-10-31,83145,8634,"[\""Wireless Mouse\""]",976.54,"{\""promo\"": \""27%\""}",13375,0,"""South America""" +2023-02-01,83146,3888,"[\""Keyboard\"", \""Phone\""]",1199.52,"{\""promo\"": \""18%\""}",274146,0,"""Africa""" +2024-08-20,83147,1617,"[\""Headphones\"", \""Monitor\""]",1247.65,"{\"": \""30%\""}",19448,0,"""Asia""" +2023-06-14,83148,9369,"[\""Laptop\""]",2822.41,{},128300,0,"""Asia""" +2023-12-22,83149,7509,"[\""Wireless Mouse\"", \""Phone\""]",2337.99,"{\""promo\"": \""6%\""}",240615,0,"""South America""" +2024-04-22,83150,6088,"[\""Keyboard\"", \""Charger\""]",3686.56,{},171684,0,"""Europe""" +2024-03-23,83151,773,"[\""Monitor\"", \""Laptop\""]",1872.33,"{\"": \""14%\""}",261974,1,"""South America""" +2023-02-13,83152,6337,"[\""Wireless Mouse\""]",1929.42,{},193053,0,"""Europe""" +2024-03-26,83153,8481,"[\""Laptop\""]",2428.05,"{\"": \""17%\""}",266927,0,"""Africa""" +2024-01-24,83154,5480,"[\""Wireless Mouse\""]",770.68,"{\"": \""15%\""}",119229,0,"""Europe""" +2023-09-12,83155,6485,"[\""Headphones\""]",550.08,{},143542,0,"""Europe""" +2023-08-10,83156,4774,"[\""Charger\""]",2356.06,{},3341,0,"""Asia""" +2024-06-29,83157,4956,"[\""Charger\"", \""Laptop\""]",793.48,"{\""promo\"": \""5%\""}",13245,0,"""Asia""" +2023-03-14,83158,4150,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1328.14,"{\""loyalty\"": \""27%\""}",252116,0,"""North America""" +2023-07-20,83159,9323,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3698.41,{},1747,1,"""North America""" +2023-12-12,83160,1144,"[\""Wireless Mouse\""]",4505.54,{},43903,1,"""Asia""" +2023-01-02,83161,8700,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2898.34,{},294888,1,"""Asia""" +2024-06-23,83162,2735,"[\""Charger\"", \""Laptop\""]",81.16,{},131088,1,"""South America""" +2023-03-09,83163,1414,"[\""Headphones\"", \""Monitor\""]",2306.51,"{\""promo\"": \""18%\""}",128024,0,"""South America""" +2024-12-23,83164,6307,"[\""Laptop\""]",1453.11,{},267979,0,"""Africa""" +2024-04-15,83165,480,"[\""Monitor\"", \""Laptop\""]",4061.89,{},262242,1,"""North America""" +2024-09-15,83166,8042,"[\""Laptop\""]",2100.06,"{\""loyalty\"": \""8%\""}",110172,1,"""South America""" +2023-07-28,83167,8580,"[\""Phone\""]",4477.66,"{\"": \""25%\""}",262352,1,"""South America""" +2024-02-10,83168,8214,"[\""Headphones\""]",2730.2,{},285251,1,"""Africa""" +2023-07-09,83169,5192,"[\""Keyboard\""]",773.41,"{\""promo\"": \""12%\""}",294783,0,"""North America""" +2024-03-17,83170,9121,"[\""Wireless Mouse\""]",1601.29,{},258780,1,"""Asia""" +2024-06-16,83171,2881,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3194.01,"{\""promo\"": \""24%\""}",113051,1,"""Asia""" +2023-04-08,83172,7450,"[\""Charger\""]",3583.13,{},99722,0,"""Africa""" +2023-11-02,83173,197,"[\""Monitor\""]",1626.18,{},131109,1,"""North America""" +2024-06-24,83174,8723,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3371.66,{},168510,0,"""Europe""" +2023-05-23,83175,421,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2067.16,{},28657,1,"""Africa""" +2023-05-19,83176,1903,"[\""Monitor\"", \""Charger\""]",3850.57,{},250073,0,"""South America""" +2024-12-04,83177,6418,"[\""Headphones\"", \""Monitor\""]",372.54,"{\""loyalty\"": \""5%\""}",289543,1,"""Asia""" +2024-10-10,83178,5765,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1436.99,"{\"": \""16%\""}",232324,0,"""North America""" +2024-12-09,83179,4057,"[\""Headphones\""]",4774.89,"{\""loyalty\"": \""16%\""}",264581,0,"""Africa""" +2023-10-03,83180,8273,"[\""Charger\"", \""Headphones\""]",1189.23,"{\"": \""26%\""}",186829,0,"""North America""" +2023-09-10,83181,3574,"[\""Headphones\"", \""Monitor\""]",3897.23,"{\""loyalty\"": \""24%\""}",298685,0,"""Asia""" +2023-10-16,83182,4337,"[\""Charger\""]",1731.95,"{\""promo\"": \""7%\""}",67171,0,"""Europe""" +2023-07-02,83183,254,"[\""Monitor\"", \""Laptop\""]",3338.08,{},299571,1,"""Asia""" +2024-06-05,83184,7165,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3670.13,{},284761,1,"""South America""" +2024-08-09,83185,1255,"[\""Phone\""]",4754.94,{},253214,0,"""Africa""" +2023-05-03,83186,7131,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1483.03,"{\""seasonal\"": \""13%\""}",150112,1,"""Asia""" +2023-01-22,83187,2291,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3052.37,"{\""seasonal\"": \""29%\""}",112720,1,"""South America""" +2024-11-26,83188,4367,"[\""Tablet\""]",3524.25,"{\""seasonal\"": \""17%\""}",262386,1,"""South America""" +2023-07-22,83189,7047,"[\""Keyboard\"", \""Headphones\""]",2286.44,{},107218,0,"""Africa""" +2024-01-20,83190,855,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",237.27,"{\""loyalty\"": \""30%\""}",65268,1,"""South America""" +2024-04-28,83191,4403,"[\""Monitor\""]",1556.18,{},239466,1,"""Asia""" +2023-06-07,83192,8626,"[\""Headphones\""]",1868.76,"{\""seasonal\"": \""5%\""}",124604,1,"""North America""" +2023-08-06,83193,1120,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3425.17,{},138020,1,"""North America""" +2023-02-24,83194,6037,"[\""Wireless Mouse\""]",1383.73,"{\"": \""11%\""}",93784,0,"""South America""" +2023-12-06,83195,5948,"[\""Charger\""]",3145.0,"{\""seasonal\"": \""16%\""}",59938,1,"""North America""" +2023-02-04,83196,1524,"[\""Charger\""]",2221.64,"{\""seasonal\"": \""12%\""}",187800,0,"""Europe""" +2023-02-19,83197,5996,"[\""Tablet\"", \""Laptop\""]",2894.86,{},159359,1,"""Asia""" +2023-03-20,83198,4420,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3696.14,"{\""promo\"": \""5%\""}",36406,0,"""South America""" +2024-08-11,83199,6859,"[\""Keyboard\"", \""Laptop\""]",1066.08,"{\""loyalty\"": \""26%\""}",11929,0,"""Asia""" +2023-09-21,83200,390,"[\""Laptop\"", \""Tablet\""]",267.16,{},126763,0,"""Asia""" +2023-09-21,83201,5992,"[\""Phone\"", \""Charger\""]",1251.43,{},182261,1,"""North America""" +2023-04-22,83202,8822,"[\""Monitor\""]",4506.57,{},208023,1,"""South America""" +2024-07-10,83203,6325,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2371.32,{},243802,0,"""North America""" +2023-04-21,83204,9,"[\""Monitor\""]",4355.22,{},13491,0,"""North America""" +2023-12-20,83205,1101,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1361.91,{},296074,1,"""South America""" +2023-10-12,83206,6716,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3304.42,"{\"": \""30%\""}",166283,1,"""North America""" +2023-07-27,83207,4045,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1336.12,"{\""promo\"": \""13%\""}",125130,0,"""North America""" +2023-03-21,83208,2551,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4973.82,"{\""loyalty\"": \""17%\""}",78921,0,"""Asia""" +2024-10-19,83209,5672,"[\""Phone\"", \""Laptop\""]",706.09,"{\""loyalty\"": \""20%\""}",49012,0,"""South America""" +2024-07-23,83210,129,"[\""Monitor\"", \""Wireless Mouse\""]",3109.25,"{\""seasonal\"": \""7%\""}",169863,0,"""South America""" +2023-01-16,83211,6091,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2469.65,"{\""seasonal\"": \""5%\""}",217484,1,"""Europe""" +2023-10-20,83212,9488,"[\""Laptop\""]",3181.3,{},105034,1,"""South America""" +2024-06-21,83213,1431,"[\""Tablet\"", \""Charger\""]",243.72,"{\""promo\"": \""11%\""}",51718,0,"""North America""" +2024-10-09,83214,2675,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1749.4,{},195263,1,"""Europe""" +2023-09-06,83215,5841,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2086.31,{},264660,0,"""Africa""" +2023-03-18,83216,2941,"[\""Laptop\"", \""Phone\""]",2354.46,"{\""promo\"": \""25%\""}",152367,0,"""North America""" +2023-03-06,83217,727,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",834.6,"{\""seasonal\"": \""23%\""}",170771,0,"""Europe""" +2024-08-02,83218,8650,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1921.09,{},72938,0,"""Europe""" +2023-11-21,83219,1872,"[\""Wireless Mouse\""]",387.12,{},173758,1,"""South America""" +2024-08-12,83220,7006,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",535.63,"{\""loyalty\"": \""6%\""}",265661,0,"""Europe""" +2024-11-22,83221,4722,"[\""Headphones\"", \""Wireless Mouse\""]",3561.82,{},171437,0,"""North America""" +2023-08-25,83222,9920,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4869.27,"{\""seasonal\"": \""6%\""}",15274,0,"""South America""" +2023-08-15,83223,7563,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3598.47,"{\""promo\"": \""20%\""}",131404,1,"""North America""" +2024-06-09,83224,7362,"[\""Tablet\"", \""Keyboard\""]",4992.71,"{\""promo\"": \""17%\""}",1285,0,"""Europe""" +2024-07-04,83225,7078,"[\""Monitor\""]",3018.14,{},13304,0,"""North America""" +2024-04-24,83226,5298,"[\""Keyboard\"", \""Charger\""]",636.61,{},41096,0,"""Africa""" +2023-08-20,83227,3779,"[\""Phone\"", \""Tablet\""]",3044.95,{},215763,0,"""North America""" +2023-01-31,83228,7846,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2182.27,"{\""loyalty\"": \""23%\""}",268457,1,"""South America""" +2023-05-29,83229,7696,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3419.94,"{\"": \""17%\""}",60720,0,"""North America""" +2024-04-17,83230,4297,"[\""Wireless Mouse\"", \""Laptop\""]",278.95,"{\""loyalty\"": \""19%\""}",107602,1,"""Europe""" +2023-09-24,83231,8423,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",745.81,"{\"": \""19%\""}",282835,1,"""Europe""" +2023-01-26,83232,6059,"[\""Tablet\""]",1947.27,"{\""promo\"": \""11%\""}",227325,0,"""North America""" +2024-02-28,83233,4110,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",132.82,"{\"": \""14%\""}",245024,1,"""Europe""" +2023-01-22,83234,2967,"[\""Monitor\"", \""Keyboard\""]",2237.47,{},89168,1,"""South America""" +2024-04-30,83235,2362,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3994.1,"{\""seasonal\"": \""27%\""}",120984,0,"""Asia""" +2024-12-09,83236,6773,"[\""Tablet\""]",2303.88,"{\""loyalty\"": \""15%\""}",138275,1,"""Europe""" +2023-11-30,83237,1998,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",4755.67,{},290570,0,"""South America""" +2023-01-13,83238,1397,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3736.88,"{\""loyalty\"": \""20%\""}",79249,0,"""Europe""" +2024-05-27,83239,2927,"[\""Charger\"", \""Monitor\""]",2274.14,"{\""promo\"": \""15%\""}",265730,0,"""North America""" +2024-05-10,83240,1538,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4118.55,"{\""loyalty\"": \""23%\""}",250997,0,"""Europe""" +2023-10-22,83241,5391,"[\""Keyboard\""]",75.46,"{\""loyalty\"": \""20%\""}",240674,1,"""South America""" +2023-06-11,83242,1975,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2005.28,"{\""seasonal\"": \""14%\""}",111048,1,"""South America""" +2023-07-30,83243,2885,"[\""Wireless Mouse\""]",3090.02,{},35039,1,"""North America""" +2023-07-21,83244,3765,"[\""Tablet\""]",1394.49,{},97010,0,"""Africa""" +2023-04-28,83245,2482,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3704.56,"{\""seasonal\"": \""21%\""}",230355,0,"""Europe""" +2024-11-12,83246,9528,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4153.22,{},74471,1,"""South America""" +2024-07-02,83247,9570,"[\""Charger\"", \""Wireless Mouse\""]",2155.54,{},238534,1,"""South America""" +2024-01-19,83248,2891,"[\""Wireless Mouse\"", \""Laptop\""]",2258.83,"{\""loyalty\"": \""26%\""}",11820,0,"""Asia""" +2024-06-10,83249,6941,"[\""Monitor\""]",3994.47,{},22735,1,"""Asia""" +2024-08-28,83250,7606,"[\""Charger\"", \""Monitor\""]",3625.6,"{\""promo\"": \""25%\""}",36546,1,"""Asia""" +2024-04-25,83251,409,"[\""Wireless Mouse\""]",4180.39,{},291399,0,"""Europe""" +2023-05-29,83252,5626,"[\""Laptop\""]",1399.7,{},199363,1,"""Africa""" +2024-06-30,83253,9143,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4759.71,"{\""seasonal\"": \""25%\""}",237847,0,"""Africa""" +2023-09-18,83254,1499,"[\""Charger\"", \""Monitor\""]",2819.61,{},230980,0,"""Europe""" +2023-08-22,83255,9535,"[\""Monitor\"", \""Wireless Mouse\""]",865.19,"{\""loyalty\"": \""30%\""}",155368,1,"""Africa""" +2024-04-22,83256,8165,"[\""Phone\"", \""Laptop\"", \""Charger\""]",780.78,"{\"": \""22%\""}",288552,1,"""Asia""" +2023-09-03,83257,2091,"[\""Monitor\""]",1495.82,"{\""promo\"": \""16%\""}",287294,0,"""Europe""" +2023-07-13,83258,5816,"[\""Tablet\""]",2057.01,"{\"": \""14%\""}",294564,0,"""Africa""" +2024-11-19,83259,7683,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4574.54,{},71298,1,"""Africa""" +2023-04-06,83260,33,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2473.03,"{\""seasonal\"": \""19%\""}",81356,1,"""North America""" +2024-12-30,83261,3209,"[\""Keyboard\"", \""Headphones\""]",1299.86,{},240620,1,"""Africa""" +2023-05-31,83262,396,"[\""Laptop\"", \""Headphones\""]",3927.54,"{\""seasonal\"": \""26%\""}",108127,1,"""Africa""" +2024-09-19,83263,2719,"[\""Laptop\""]",1941.5,"{\""promo\"": \""23%\""}",80397,0,"""South America""" +2024-05-31,83264,2850,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1910.84,{},159167,1,"""Asia""" +2024-05-24,83265,4186,"[\""Wireless Mouse\"", \""Headphones\""]",1093.43,"{\"": \""29%\""}",150872,0,"""South America""" +2024-03-04,83266,3706,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4743.8,"{\"": \""18%\""}",252170,1,"""Asia""" +2023-04-11,83267,1341,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4675.48,"{\""seasonal\"": \""6%\""}",14650,1,"""Europe""" +2023-10-29,83268,9402,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4155.19,{},237323,1,"""Europe""" +2023-04-06,83269,5347,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4613.96,{},150159,1,"""Europe""" +2024-06-29,83270,7867,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4551.94,{},1483,1,"""Asia""" +2023-12-27,83271,2126,"[\""Monitor\"", \""Phone\""]",443.84,"{\"": \""6%\""}",283643,1,"""Europe""" +2023-07-10,83272,1260,"[\""Tablet\"", \""Charger\""]",686.95,"{\""loyalty\"": \""25%\""}",147455,1,"""Asia""" +2023-10-27,83273,1947,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",51.27,{},68495,1,"""Europe""" +2023-12-04,83274,2044,"[\""Phone\""]",4527.02,"{\""seasonal\"": \""26%\""}",178787,0,"""Asia""" +2024-06-01,83275,8649,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2154.52,"{\""loyalty\"": \""22%\""}",77820,1,"""North America""" +2024-04-13,83276,5862,"[\""Tablet\"", \""Wireless Mouse\""]",2105.62,{},24813,1,"""Asia""" +2023-09-05,83277,9628,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1790.75,"{\"": \""24%\""}",59636,0,"""Europe""" +2023-06-11,83278,5780,"[\""Laptop\""]",1563.91,{},87065,0,"""North America""" +2024-04-26,83279,6565,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",3297.54,"{\""promo\"": \""23%\""}",255919,1,"""North America""" +2023-04-03,83280,2028,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",284.21,"{\""promo\"": \""26%\""}",136395,0,"""Africa""" +2024-04-28,83281,8466,"[\""Tablet\"", \""Phone\""]",707.21,"{\""seasonal\"": \""9%\""}",45746,0,"""Africa""" +2024-04-25,83282,1315,"[\""Phone\"", \""Charger\"", \""Laptop\""]",3453.27,"{\""promo\"": \""22%\""}",144316,0,"""North America""" +2023-03-03,83283,6920,"[\""Charger\"", \""Monitor\""]",3412.73,"{\"": \""7%\""}",141794,1,"""Europe""" +2024-02-21,83284,2441,"[\""Keyboard\"", \""Headphones\""]",4553.77,{},268354,0,"""North America""" +2024-10-13,83285,4974,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4192.99,{},25204,0,"""Europe""" +2023-08-16,83286,3080,"[\""Phone\"", \""Laptop\""]",640.7,"{\""loyalty\"": \""15%\""}",129405,0,"""South America""" +2023-03-08,83287,6897,"[\""Wireless Mouse\""]",660.47,"{\""seasonal\"": \""29%\""}",276791,0,"""Africa""" +2023-01-26,83288,593,"[\""Charger\"", \""Laptop\""]",1204.07,"{\""loyalty\"": \""20%\""}",25661,0,"""Africa""" +2024-06-04,83289,7433,"[\""Charger\"", \""Tablet\""]",4785.84,{},267694,1,"""South America""" +2024-01-17,83290,6872,"[\""Phone\"", \""Tablet\""]",2268.45,"{\""loyalty\"": \""10%\""}",256501,0,"""Asia""" +2024-09-25,83291,3743,"[\""Wireless Mouse\"", \""Laptop\""]",2189.16,"{\""loyalty\"": \""9%\""}",150811,0,"""Africa""" +2023-04-08,83292,2702,"[\""Wireless Mouse\""]",2960.69,{},263102,0,"""South America""" +2023-05-19,83293,8888,"[\""Headphones\"", \""Wireless Mouse\""]",2009.29,"{\""promo\"": \""29%\""}",244065,0,"""Asia""" +2023-03-21,83294,770,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2019.92,{},35239,0,"""South America""" +2024-07-12,83295,7433,"[\""Charger\""]",3114.9,{},197170,0,"""North America""" +2023-05-06,83296,5204,"[\""Charger\"", \""Monitor\""]",4174.76,{},90416,1,"""Asia""" +2024-02-13,83297,2617,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2642.92,"{\""seasonal\"": \""23%\""}",126677,0,"""Africa""" +2023-02-09,83298,7479,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3594.4,{},83928,0,"""Europe""" +2023-01-02,83299,2571,"[\""Tablet\""]",2896.09,{},72538,1,"""Europe""" +2024-10-10,83300,6329,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3778.87,{},167167,0,"""South America""" +2023-07-07,83301,5474,"[\""Tablet\"", \""Keyboard\""]",1576.66,"{\""promo\"": \""28%\""}",252715,1,"""South America""" +2024-03-07,83302,3153,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1418.94,{},122375,1,"""Europe""" +2023-05-12,83303,9306,"[\""Wireless Mouse\"", \""Keyboard\""]",4539.34,{},220094,0,"""North America""" +2023-01-01,83304,3373,"[\""Tablet\"", \""Keyboard\""]",1733.31,{},118817,1,"""Africa""" +2023-12-30,83305,518,"[\""Wireless Mouse\"", \""Laptop\""]",3024.74,"{\""promo\"": \""19%\""}",125904,0,"""Asia""" +2024-06-09,83306,466,"[\""Headphones\""]",916.31,"{\"": \""20%\""}",16647,1,"""Africa""" +2024-05-05,83307,7507,"[\""Wireless Mouse\""]",3870.07,"{\""promo\"": \""18%\""}",70582,0,"""South America""" +2024-05-25,83308,343,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1745.97,"{\""loyalty\"": \""22%\""}",235674,1,"""Europe""" +2023-04-13,83309,1656,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",3096.4,{},20188,0,"""North America""" +2023-09-21,83310,3640,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1804.91,{},149225,1,"""South America""" +2024-09-20,83311,7626,"[\""Laptop\"", \""Keyboard\""]",4185.62,"{\""promo\"": \""5%\""}",96607,0,"""Asia""" +2023-12-31,83312,1184,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3843.72,"{\""seasonal\"": \""23%\""}",195091,0,"""Asia""" +2023-02-24,83313,9016,"[\""Keyboard\"", \""Wireless Mouse\""]",4519.83,"{\""promo\"": \""29%\""}",172565,0,"""Africa""" +2024-03-24,83314,433,"[\""Tablet\"", \""Phone\""]",2180.52,"{\""loyalty\"": \""30%\""}",32612,0,"""Asia""" +2024-12-22,83315,944,"[\""Monitor\""]",3418.67,"{\""loyalty\"": \""11%\""}",55265,0,"""Asia""" +2023-02-12,83316,9746,"[\""Charger\""]",2790.62,{},197562,0,"""Asia""" +2023-05-18,83317,5845,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",1094.2,"{\""seasonal\"": \""13%\""}",112122,1,"""Asia""" +2023-11-06,83318,2158,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2761.75,{},266216,1,"""South America""" +2024-10-13,83319,7987,"[\""Charger\"", \""Laptop\""]",2212.43,{},3509,0,"""Asia""" +2023-12-19,83320,5934,"[\""Keyboard\""]",3617.97,{},200845,1,"""North America""" +2024-07-12,83321,4134,"[\""Tablet\""]",2524.0,{},283726,1,"""Africa""" +2024-11-21,83322,8707,"[\""Phone\"", \""Keyboard\""]",4142.82,{},293828,1,"""Africa""" +2024-01-28,83323,8005,"[\""Wireless Mouse\""]",469.92,"{\""loyalty\"": \""26%\""}",256097,0,"""Asia""" +2023-12-30,83324,9940,"[\""Phone\"", \""Laptop\""]",258.91,{},108054,0,"""Africa""" +2024-09-12,83325,4120,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",3524.26,"{\""loyalty\"": \""5%\""}",5360,0,"""North America""" +2023-01-08,83326,9369,"[\""Wireless Mouse\"", \""Phone\""]",62.03,"{\""seasonal\"": \""22%\""}",9207,1,"""Asia""" +2023-07-30,83327,5801,"[\""Monitor\""]",2830.88,{},178421,1,"""South America""" +2024-06-30,83328,7899,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",237.62,{},284525,0,"""Europe""" +2023-06-05,83329,3429,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1313.49,"{\""seasonal\"": \""20%\""}",205730,0,"""South America""" +2023-11-16,83330,5346,"[\""Keyboard\"", \""Phone\""]",4059.88,"{\"": \""6%\""}",104824,1,"""South America""" +2023-08-02,83331,1613,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",896.91,{},247220,1,"""North America""" +2023-09-26,83332,8626,"[\""Monitor\""]",4918.82,{},89432,0,"""Europe""" +2024-10-07,83333,2188,"[\""Tablet\"", \""Laptop\""]",2382.6,"{\"": \""6%\""}",227734,1,"""Asia""" +2023-01-25,83334,1226,"[\""Laptop\"", \""Keyboard\""]",4444.74,"{\""loyalty\"": \""7%\""}",277306,0,"""Europe""" +2024-07-19,83335,7719,"[\""Headphones\"", \""Wireless Mouse\""]",3453.71,"{\"": \""8%\""}",4003,1,"""Africa""" +2023-04-25,83336,9455,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3368.95,"{\""promo\"": \""22%\""}",73336,1,"""Africa""" +2024-09-01,83337,6629,"[\""Keyboard\""]",371.06,{},114881,1,"""Africa""" +2023-01-11,83338,2468,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3764.09,{},287116,0,"""Asia""" +2023-11-26,83339,298,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1945.38,"{\"": \""7%\""}",48594,0,"""Europe""" +2023-11-15,83340,3422,"[\""Laptop\""]",1156.69,"{\"": \""12%\""}",99097,0,"""Asia""" +2024-05-24,83341,8883,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1083.04,{},41132,0,"""Africa""" +2024-02-17,83342,285,"[\""Tablet\""]",3096.33,"{\""loyalty\"": \""26%\""}",143141,1,"""South America""" +2024-04-28,83343,1955,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1466.08,"{\"": \""17%\""}",70092,1,"""Asia""" +2024-04-21,83344,8597,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4488.45,"{\""seasonal\"": \""10%\""}",88314,1,"""South America""" +2024-04-03,83345,7582,"[\""Headphones\""]",4664.61,"{\""promo\"": \""17%\""}",272744,1,"""North America""" +2023-05-23,83346,2678,"[\""Charger\""]",4935.43,{},288926,0,"""North America""" +2023-01-30,83347,5785,"[\""Phone\"", \""Monitor\""]",322.83,{},286715,0,"""South America""" +2024-01-09,83348,2941,"[\""Headphones\"", \""Wireless Mouse\""]",4474.79,"{\""loyalty\"": \""30%\""}",1629,0,"""South America""" +2023-02-14,83349,2926,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",786.46,"{\"": \""21%\""}",29973,1,"""Asia""" +2024-12-22,83350,6962,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1462.92,{},40648,0,"""South America""" +2024-02-17,83351,630,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3294.91,{},257176,1,"""South America""" +2024-05-05,83352,8001,"[\""Wireless Mouse\""]",2647.23,{},206201,1,"""North America""" +2024-09-19,83353,4992,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1718.46,"{\""seasonal\"": \""22%\""}",223430,0,"""Europe""" +2023-10-26,83354,792,"[\""Headphones\"", \""Keyboard\""]",3337.64,{},75374,0,"""North America""" +2024-09-13,83355,7467,"[\""Laptop\""]",1822.47,"{\""seasonal\"": \""17%\""}",67487,0,"""Asia""" +2024-06-16,83356,2927,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",262.42,"{\""loyalty\"": \""7%\""}",265514,0,"""Africa""" +2024-01-20,83357,4538,"[\""Headphones\""]",3568.94,"{\"": \""23%\""}",275379,1,"""North America""" +2023-09-22,83358,1541,"[\""Wireless Mouse\"", \""Headphones\""]",1011.81,{},145059,0,"""Asia""" +2023-05-01,83359,6010,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2707.51,"{\"": \""22%\""}",279464,0,"""Europe""" +2023-10-09,83360,9935,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4198.89,{},146755,0,"""Europe""" +2024-05-20,83361,5454,"[\""Laptop\""]",4995.17,"{\""seasonal\"": \""15%\""}",188311,0,"""Asia""" +2023-04-29,83362,5531,"[\""Wireless Mouse\"", \""Headphones\""]",3751.06,"{\""promo\"": \""21%\""}",198645,0,"""Europe""" +2023-09-08,83363,1492,"[\""Tablet\""]",3204.09,"{\""seasonal\"": \""29%\""}",18731,1,"""Africa""" +2023-04-22,83364,339,"[\""Laptop\""]",4053.59,"{\""seasonal\"": \""11%\""}",43843,0,"""Asia""" +2023-06-20,83365,8438,"[\""Monitor\"", \""Wireless Mouse\""]",243.02,{},88314,1,"""South America""" +2023-01-21,83366,7414,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1937.55,{},129823,0,"""South America""" +2023-07-04,83367,8183,"[\""Laptop\""]",1392.27,"{\""promo\"": \""5%\""}",43862,0,"""Europe""" +2023-03-14,83368,2647,"[\""Charger\"", \""Laptop\""]",2658.19,{},202508,1,"""Europe""" +2023-07-28,83369,5290,"[\""Charger\"", \""Phone\""]",1475.44,"{\""seasonal\"": \""12%\""}",36075,0,"""South America""" +2023-07-30,83370,5313,"[\""Tablet\""]",1614.46,{},140631,0,"""Asia""" +2024-06-05,83371,4884,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1167.35,{},112148,1,"""Asia""" +2024-09-30,83372,7449,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1165.06,{},224468,1,"""North America""" +2024-11-29,83373,2767,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1195.04,"{\""loyalty\"": \""19%\""}",120165,1,"""Africa""" +2024-12-17,83374,9909,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2874.73,"{\""seasonal\"": \""14%\""}",195377,0,"""Africa""" +2024-09-23,83375,8271,"[\""Wireless Mouse\"", \""Charger\""]",2282.95,{},210044,0,"""South America""" +2024-12-11,83376,2219,"[\""Phone\"", \""Laptop\""]",1584.02,{},198254,1,"""Africa""" +2024-07-22,83377,267,"[\""Headphones\""]",2545.9,"{\""seasonal\"": \""13%\""}",199020,0,"""Europe""" +2023-03-06,83378,6162,"[\""Phone\"", \""Charger\""]",3907.63,"{\"": \""24%\""}",197628,0,"""North America""" +2024-11-30,83379,1914,"[\""Laptop\"", \""Headphones\""]",2812.97,"{\"": \""21%\""}",73655,0,"""Europe""" +2024-06-22,83380,3566,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",793.06,"{\""loyalty\"": \""21%\""}",206890,1,"""Europe""" +2024-12-26,83381,5674,"[\""Monitor\"", \""Phone\""]",2523.42,"{\""seasonal\"": \""10%\""}",144007,0,"""Africa""" +2023-11-03,83382,4211,"[\""Phone\""]",1615.48,{},119312,0,"""South America""" +2023-03-03,83383,881,"[\""Phone\""]",92.7,{},125886,0,"""Asia""" +2024-07-04,83384,6191,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2976.5,"{\""loyalty\"": \""28%\""}",279154,1,"""South America""" +2024-01-25,83385,8987,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",469.48,"{\""promo\"": \""24%\""}",97362,1,"""Europe""" +2024-04-19,83386,2466,"[\""Phone\""]",1893.38,"{\""loyalty\"": \""9%\""}",188676,0,"""North America""" +2023-11-06,83387,5074,"[\""Tablet\"", \""Keyboard\""]",4626.2,"{\""loyalty\"": \""20%\""}",235744,0,"""North America""" +2023-07-15,83388,8456,"[\""Phone\""]",4350.39,"{\"": \""19%\""}",221625,1,"""South America""" +2024-03-22,83389,7016,"[\""Laptop\"", \""Tablet\""]",1676.79,"{\""loyalty\"": \""30%\""}",183152,1,"""Europe""" +2023-07-29,83390,5237,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",778.91,{},192172,1,"""Europe""" +2024-06-30,83391,7485,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",796.1,"{\""seasonal\"": \""17%\""}",183851,0,"""Africa""" +2023-08-19,83392,9970,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",4441.03,{},183044,0,"""Africa""" +2024-01-23,83393,6946,"[\""Headphones\"", \""Laptop\""]",903.96,"{\""seasonal\"": \""5%\""}",132536,0,"""North America""" +2024-09-04,83394,7187,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2305.16,"{\""loyalty\"": \""20%\""}",252507,1,"""Asia""" +2024-10-28,83395,2458,"[\""Charger\""]",4525.3,"{\"": \""18%\""}",83635,1,"""Asia""" +2023-08-08,83396,8364,"[\""Laptop\""]",4082.65,"{\"": \""9%\""}",37537,1,"""Europe""" +2024-04-03,83397,6264,"[\""Laptop\"", \""Headphones\""]",3832.96,{},129175,1,"""Europe""" +2024-07-13,83398,432,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2453.22,{},94730,0,"""South America""" +2024-09-30,83399,3521,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1824.63,{},106299,1,"""South America""" +2023-01-30,83400,8275,"[\""Laptop\"", \""Tablet\""]",2457.91,{},203009,0,"""North America""" +2024-08-28,83401,6678,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3304.3,"{\"": \""5%\""}",277354,1,"""North America""" +2024-11-18,83402,9118,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1346.4,"{\"": \""26%\""}",84720,0,"""Africa""" +2024-09-25,83403,4252,"[\""Phone\"", \""Tablet\""]",1033.14,{},130442,1,"""South America""" +2023-02-20,83404,2631,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1331.49,"{\""loyalty\"": \""14%\""}",62959,0,"""Europe""" +2024-11-08,83405,415,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1926.35,"{\""loyalty\"": \""9%\""}",14070,0,"""Europe""" +2023-11-14,83406,1326,"[\""Monitor\""]",2561.73,{},96664,0,"""South America""" +2023-05-14,83407,3770,"[\""Tablet\"", \""Phone\""]",4221.94,"{\"": \""21%\""}",52748,1,"""Africa""" +2023-01-22,83408,687,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3574.74,"{\"": \""6%\""}",236607,1,"""South America""" +2023-11-05,83409,5897,"[\""Laptop\"", \""Wireless Mouse\""]",3443.67,"{\""seasonal\"": \""18%\""}",162177,1,"""Asia""" +2024-03-09,83410,1887,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4958.6,{},206896,0,"""South America""" +2023-07-26,83411,3919,"[\""Wireless Mouse\"", \""Monitor\""]",1146.25,"{\""seasonal\"": \""24%\""}",281116,0,"""North America""" +2023-04-13,83412,5883,"[\""Keyboard\""]",1621.0,"{\"": \""10%\""}",176979,1,"""North America""" +2024-09-01,83413,88,"[\""Charger\""]",54.8,{},271775,1,"""Africa""" +2023-06-13,83414,7300,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",313.73,"{\""seasonal\"": \""11%\""}",46151,1,"""South America""" +2023-04-23,83415,1632,"[\""Headphones\""]",1964.52,"{\""promo\"": \""20%\""}",273901,0,"""North America""" +2023-08-19,83416,4428,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4928.59,{},185797,1,"""South America""" +2023-05-27,83417,8741,"[\""Laptop\"", \""Headphones\""]",112.73,"{\""promo\"": \""8%\""}",249587,1,"""Asia""" +2024-12-15,83418,6974,"[\""Phone\""]",905.24,"{\""seasonal\"": \""13%\""}",221987,0,"""Africa""" +2023-05-31,83419,784,"[\""Phone\""]",236.22,{},97622,1,"""Africa""" +2024-02-08,83420,7819,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4126.93,"{\""promo\"": \""15%\""}",158781,1,"""North America""" +2024-03-02,83421,5777,"[\""Charger\"", \""Wireless Mouse\""]",1939.71,{},175092,0,"""Asia""" +2023-11-22,83422,8001,"[\""Tablet\"", \""Keyboard\""]",2569.66,"{\"": \""15%\""}",157334,0,"""Europe""" +2023-08-07,83423,4514,"[\""Tablet\"", \""Monitor\""]",2359.89,"{\""loyalty\"": \""24%\""}",244278,0,"""South America""" +2023-07-14,83424,3994,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2707.96,"{\""loyalty\"": \""5%\""}",94273,1,"""Asia""" +2023-01-02,83425,4704,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4688.8,"{\"": \""16%\""}",156522,1,"""Africa""" +2023-08-08,83426,5664,"[\""Tablet\"", \""Laptop\""]",272.99,"{\"": \""7%\""}",33857,1,"""Europe""" +2023-07-31,83427,3307,"[\""Tablet\"", \""Monitor\""]",4385.99,{},124574,0,"""Europe""" +2024-08-30,83428,2236,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1906.9,{},119930,1,"""Africa""" +2023-07-24,83429,5187,"[\""Monitor\""]",71.66,"{\"": \""12%\""}",22970,0,"""Europe""" +2023-07-12,83430,8978,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3519.09,{},47043,1,"""South America""" +2023-03-31,83431,7104,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3542.66,"{\"": \""19%\""}",203767,1,"""Africa""" +2024-08-15,83432,6269,"[\""Laptop\"", \""Charger\""]",1102.39,"{\"": \""16%\""}",85629,0,"""Asia""" +2023-05-20,83433,9824,"[\""Charger\"", \""Wireless Mouse\""]",3932.0,{},62409,0,"""Asia""" +2023-10-24,83434,4173,"[\""Charger\""]",2728.13,"{\""promo\"": \""18%\""}",270689,0,"""Europe""" +2023-10-13,83435,9869,"[\""Monitor\"", \""Charger\""]",4542.86,"{\""promo\"": \""24%\""}",157488,1,"""Africa""" +2023-06-09,83436,2228,"[\""Phone\"", \""Wireless Mouse\""]",4411.39,{},193888,1,"""North America""" +2023-07-03,83437,9041,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3028.97,{},189924,1,"""North America""" +2024-01-19,83438,4343,"[\""Monitor\"", \""Headphones\""]",1553.04,{},237283,0,"""South America""" +2023-09-27,83439,1283,"[\""Phone\""]",1470.29,"{\""seasonal\"": \""21%\""}",247817,0,"""Africa""" +2024-07-24,83440,1721,"[\""Laptop\""]",358.95,"{\""seasonal\"": \""20%\""}",97399,0,"""North America""" +2023-03-16,83441,9923,"[\""Phone\""]",3585.21,{},83470,1,"""Europe""" +2024-10-24,83442,4126,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",602.0,"{\"": \""10%\""}",119578,1,"""Europe""" +2024-09-02,83443,8879,"[\""Phone\""]",1556.86,"{\""loyalty\"": \""29%\""}",74952,1,"""Africa""" +2024-09-04,83444,1798,"[\""Charger\""]",3061.23,"{\""seasonal\"": \""15%\""}",88481,1,"""North America""" +2024-12-20,83445,9965,"[\""Monitor\"", \""Laptop\""]",1370.41,"{\""seasonal\"": \""22%\""}",105943,1,"""South America""" +2023-11-30,83446,5485,"[\""Keyboard\""]",1183.64,{},263333,0,"""North America""" +2023-01-10,83447,4903,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1179.04,{},36953,1,"""Europe""" +2023-09-24,83448,2539,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4761.51,"{\""loyalty\"": \""11%\""}",244196,0,"""Africa""" +2024-05-30,83449,405,"[\""Tablet\"", \""Charger\""]",1639.99,{},268096,1,"""South America""" +2024-10-08,83450,7399,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4228.05,"{\"": \""12%\""}",104696,0,"""Africa""" +2024-07-18,83451,4541,"[\""Monitor\"", \""Phone\""]",882.63,{},72765,0,"""Asia""" +2024-12-11,83452,2960,"[\""Tablet\""]",1559.43,{},194551,0,"""Europe""" +2023-10-02,83453,9599,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2877.08,"{\""promo\"": \""22%\""}",31112,0,"""Europe""" +2023-08-18,83454,6592,"[\""Wireless Mouse\"", \""Keyboard\""]",3334.03,"{\""seasonal\"": \""23%\""}",284380,0,"""Africa""" +2023-08-19,83455,8301,"[\""Wireless Mouse\"", \""Phone\""]",2881.05,"{\""promo\"": \""16%\""}",184514,0,"""North America""" +2024-05-11,83456,3794,"[\""Keyboard\"", \""Laptop\""]",3962.33,{},89132,0,"""South America""" +2024-10-30,83457,8979,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3580.66,"{\""promo\"": \""13%\""}",139729,1,"""Europe""" +2023-05-29,83458,5437,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",219.92,"{\"": \""19%\""}",69198,0,"""Africa""" +2024-08-06,83459,7997,"[\""Phone\""]",923.15,{},241454,0,"""Asia""" +2024-09-29,83460,9882,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2531.52,"{\""promo\"": \""5%\""}",125375,1,"""Europe""" +2023-05-08,83461,1075,"[\""Laptop\""]",2910.12,"{\""promo\"": \""20%\""}",156415,1,"""South America""" +2024-08-11,83462,4518,"[\""Laptop\""]",2272.07,{},30328,1,"""Europe""" +2024-03-24,83463,5380,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4495.5,{},270309,1,"""North America""" +2023-05-19,83464,8671,"[\""Headphones\""]",4155.86,{},87934,1,"""Africa""" +2023-09-21,83465,9558,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2436.42,{},196904,0,"""North America""" +2023-05-05,83466,7731,"[\""Charger\""]",2117.84,"{\""promo\"": \""30%\""}",112058,0,"""South America""" +2023-06-12,83467,4816,"[\""Wireless Mouse\"", \""Tablet\""]",2717.64,{},190416,0,"""Asia""" +2024-10-24,83468,444,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1283.22,"{\"": \""14%\""}",294215,0,"""North America""" +2024-04-03,83469,3531,"[\""Wireless Mouse\"", \""Monitor\""]",4679.54,"{\"": \""24%\""}",124314,1,"""Europe""" +2024-11-22,83470,3873,"[\""Tablet\"", \""Monitor\""]",3585.67,"{\"": \""15%\""}",137762,1,"""Europe""" +2023-05-03,83471,7374,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1823.66,{},197520,0,"""South America""" +2024-09-10,83472,7640,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",104.26,{},114883,0,"""South America""" +2024-09-17,83473,1004,"[\""Headphones\""]",916.53,"{\""loyalty\"": \""22%\""}",56926,1,"""South America""" +2024-05-05,83474,8622,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1924.1,"{\""loyalty\"": \""28%\""}",37298,1,"""Europe""" +2023-05-22,83475,3282,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2021.46,"{\"": \""30%\""}",285617,0,"""Europe""" +2023-01-15,83476,6156,"[\""Monitor\""]",1970.51,{},43794,0,"""Asia""" +2023-05-22,83477,8039,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3228.6,"{\""loyalty\"": \""8%\""}",231650,0,"""Africa""" +2024-04-06,83478,2381,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3854.31,{},184068,1,"""North America""" +2024-02-27,83479,8609,"[\""Wireless Mouse\"", \""Headphones\""]",2899.05,{},158739,0,"""Africa""" +2023-04-30,83480,8539,"[\""Headphones\"", \""Laptop\""]",2233.89,{},37786,1,"""Africa""" +2024-12-25,83481,9525,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1940.59,{},278689,0,"""South America""" +2023-06-21,83482,7710,"[\""Phone\"", \""Tablet\""]",4004.27,"{\"": \""19%\""}",269671,0,"""Europe""" +2023-11-29,83483,2686,"[\""Phone\""]",4600.13,{},144931,1,"""South America""" +2024-11-06,83484,9615,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1710.43,"{\""seasonal\"": \""15%\""}",218668,1,"""Africa""" +2023-07-05,83485,4757,"[\""Monitor\""]",4046.73,{},55731,0,"""South America""" +2024-03-02,83486,1148,"[\""Tablet\"", \""Wireless Mouse\""]",4502.64,"{\""loyalty\"": \""17%\""}",174709,0,"""South America""" +2024-10-03,83487,6032,"[\""Charger\"", \""Monitor\""]",2061.24,{},285199,1,"""South America""" +2023-11-17,83488,6617,"[\""Keyboard\""]",4638.55,"{\""seasonal\"": \""12%\""}",134726,0,"""Asia""" +2023-04-08,83489,9800,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4793.21,"{\""promo\"": \""30%\""}",222874,1,"""North America""" +2023-06-17,83490,9110,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2785.18,"{\""loyalty\"": \""15%\""}",72630,1,"""South America""" +2024-06-07,83491,9815,"[\""Phone\"", \""Wireless Mouse\""]",2262.32,{},135893,1,"""Europe""" +2023-10-04,83492,9230,"[\""Charger\""]",1915.23,{},249137,1,"""Africa""" +2024-02-04,83493,4476,"[\""Wireless Mouse\""]",2531.61,"{\""promo\"": \""24%\""}",254555,0,"""Europe""" +2024-06-04,83494,4528,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1311.56,"{\"": \""28%\""}",151772,0,"""Africa""" +2023-04-24,83495,9710,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4781.03,{},244466,0,"""Asia""" +2023-01-10,83496,3382,"[\""Keyboard\""]",490.87,{},224568,1,"""South America""" +2023-08-29,83497,512,"[\""Wireless Mouse\"", \""Tablet\""]",2132.82,"{\""seasonal\"": \""24%\""}",125610,0,"""Africa""" +2024-09-03,83498,8670,"[\""Phone\"", \""Keyboard\""]",641.36,{},228883,0,"""North America""" +2023-01-04,83499,1320,"[\""Monitor\"", \""Headphones\""]",3277.91,{},202962,0,"""Africa""" +2023-01-26,83500,513,"[\""Monitor\"", \""Headphones\""]",4898.37,{},295756,1,"""Europe""" +2023-04-11,83501,4986,"[\""Laptop\""]",4276.4,{},219575,1,"""South America""" +2024-06-04,83502,2292,"[\""Tablet\""]",609.88,{},252117,1,"""South America""" +2024-12-03,83503,587,"[\""Keyboard\"", \""Laptop\""]",2508.86,"{\""seasonal\"": \""29%\""}",76035,0,"""North America""" +2023-08-15,83504,5265,"[\""Wireless Mouse\""]",3147.87,"{\""promo\"": \""7%\""}",205814,1,"""Asia""" +2023-11-25,83505,6214,"[\""Tablet\"", \""Charger\""]",4329.44,"{\""seasonal\"": \""17%\""}",199134,1,"""Asia""" +2024-09-23,83506,71,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3441.89,{},216638,1,"""Asia""" +2023-12-24,83507,6864,"[\""Monitor\""]",2503.77,"{\""seasonal\"": \""22%\""}",268712,0,"""Europe""" +2023-04-08,83508,1205,"[\""Keyboard\""]",1398.69,{},110693,0,"""South America""" +2023-02-13,83509,2922,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3887.58,"{\""seasonal\"": \""14%\""}",221134,0,"""South America""" +2023-09-16,83510,4992,"[\""Laptop\"", \""Keyboard\""]",2684.91,"{\""seasonal\"": \""6%\""}",76536,1,"""South America""" +2024-09-25,83511,90,"[\""Phone\"", \""Tablet\""]",2264.91,{},206013,0,"""Asia""" +2023-11-27,83512,5644,"[\""Tablet\"", \""Phone\""]",4540.19,{},57085,1,"""North America""" +2024-07-31,83513,5592,"[\""Wireless Mouse\"", \""Charger\""]",1619.79,"{\""seasonal\"": \""24%\""}",247395,0,"""Africa""" +2024-05-27,83514,3988,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3245.19,{},47160,0,"""Europe""" +2023-07-05,83515,2365,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3961.48,"{\""promo\"": \""8%\""}",222934,1,"""North America""" +2024-10-15,83516,8954,"[\""Monitor\"", \""Phone\""]",1217.77,{},150346,1,"""South America""" +2024-02-23,83517,8891,"[\""Wireless Mouse\"", \""Charger\""]",786.95,"{\""seasonal\"": \""28%\""}",16503,0,"""North America""" +2023-05-18,83518,4497,"[\""Phone\""]",1123.23,{},96707,1,"""Africa""" +2023-12-23,83519,6608,"[\""Wireless Mouse\""]",571.14,"{\""loyalty\"": \""15%\""}",2306,1,"""South America""" +2023-10-20,83520,1428,"[\""Headphones\"", \""Monitor\""]",242.79,{},177833,0,"""South America""" +2024-11-27,83521,2557,"[\""Charger\""]",571.66,"{\""promo\"": \""8%\""}",64597,0,"""North America""" +2024-04-24,83522,2524,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2591.45,"{\""loyalty\"": \""15%\""}",180507,0,"""Asia""" +2024-12-20,83523,7025,"[\""Charger\""]",3307.09,"{\""seasonal\"": \""18%\""}",191314,0,"""South America""" +2023-08-26,83524,7531,"[\""Keyboard\""]",4636.88,{},233692,1,"""South America""" +2023-02-02,83525,2211,"[\""Tablet\"", \""Charger\""]",1147.85,"{\""promo\"": \""7%\""}",46254,1,"""Africa""" +2023-05-01,83526,5814,"[\""Charger\""]",221.54,"{\"": \""21%\""}",120739,1,"""Africa""" +2023-02-18,83527,6780,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1198.71,{},33425,0,"""Asia""" +2023-09-11,83528,7186,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1612.71,"{\""seasonal\"": \""8%\""}",11959,0,"""Asia""" +2023-08-28,83529,8047,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4532.17,"{\"": \""12%\""}",142551,1,"""Africa""" +2024-08-29,83530,8579,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",567.34,"{\""seasonal\"": \""8%\""}",111286,1,"""South America""" +2023-06-17,83531,7257,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1423.65,"{\""seasonal\"": \""12%\""}",141211,1,"""Africa""" +2024-08-05,83532,7076,"[\""Phone\"", \""Keyboard\""]",1922.56,"{\""promo\"": \""11%\""}",211375,0,"""Africa""" +2024-03-16,83533,886,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1600.94,"{\""promo\"": \""22%\""}",191107,1,"""Asia""" +2023-04-07,83534,4194,"[\""Monitor\""]",2867.22,"{\"": \""17%\""}",279452,0,"""Asia""" +2024-09-04,83535,7504,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1647.35,"{\""promo\"": \""26%\""}",180735,1,"""South America""" +2024-02-11,83536,6678,"[\""Headphones\""]",1388.39,{},92180,1,"""Africa""" +2024-04-12,83537,6308,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3755.37,"{\""promo\"": \""21%\""}",30189,1,"""Asia""" +2023-05-19,83538,8980,"[\""Monitor\""]",1706.83,"{\""promo\"": \""29%\""}",286184,1,"""South America""" +2024-04-09,83539,9950,"[\""Keyboard\""]",2367.29,{},201976,1,"""Africa""" +2024-04-03,83540,8955,"[\""Wireless Mouse\""]",1579.42,"{\""promo\"": \""25%\""}",162748,1,"""Africa""" +2023-01-21,83541,8268,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1571.89,{},175644,0,"""Europe""" +2024-12-11,83542,5170,"[\""Charger\""]",3632.34,"{\""seasonal\"": \""13%\""}",195676,0,"""Asia""" +2024-07-19,83543,2726,"[\""Monitor\"", \""Keyboard\""]",2291.91,"{\""promo\"": \""16%\""}",240543,0,"""Africa""" +2023-12-25,83544,873,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1181.19,"{\""promo\"": \""8%\""}",123397,1,"""Europe""" +2023-11-14,83545,3455,"[\""Monitor\"", \""Phone\""]",2426.79,"{\""promo\"": \""20%\""}",170934,1,"""Asia""" +2023-03-22,83546,167,"[\""Tablet\"", \""Phone\""]",3342.03,"{\"": \""17%\""}",55093,0,"""Europe""" +2024-03-14,83547,5023,"[\""Tablet\""]",1373.52,"{\""promo\"": \""15%\""}",125482,0,"""Asia""" +2023-11-09,83548,1342,"[\""Wireless Mouse\""]",3778.06,"{\""loyalty\"": \""24%\""}",238739,1,"""South America""" +2024-03-03,83549,6341,"[\""Keyboard\"", \""Headphones\""]",310.09,{},89078,0,"""Europe""" +2023-01-29,83550,6943,"[\""Tablet\"", \""Headphones\""]",2069.48,"{\"": \""20%\""}",116645,0,"""Asia""" +2023-05-24,83551,4263,"[\""Keyboard\""]",1036.3,{},289640,1,"""North America""" +2024-07-26,83552,4668,"[\""Headphones\"", \""Keyboard\""]",4938.37,{},175017,1,"""Asia""" +2024-11-05,83553,8112,"[\""Phone\"", \""Headphones\""]",4635.45,{},262319,1,"""North America""" +2024-07-21,83554,8951,"[\""Phone\""]",3171.45,{},266795,0,"""Africa""" +2023-01-30,83555,3271,"[\""Tablet\"", \""Headphones\""]",4280.49,{},291674,0,"""Europe""" +2023-03-27,83556,406,"[\""Charger\""]",1497.33,{},99232,0,"""Asia""" +2023-06-08,83557,1838,"[\""Charger\""]",506.93,"{\""promo\"": \""23%\""}",66480,1,"""Africa""" +2023-04-13,83558,3809,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",71.29,"{\""promo\"": \""17%\""}",142981,1,"""South America""" +2023-10-16,83559,9432,"[\""Wireless Mouse\"", \""Keyboard\""]",2371.58,{},85389,1,"""North America""" +2024-04-23,83560,8436,"[\""Laptop\""]",2879.18,"{\""loyalty\"": \""17%\""}",227411,0,"""Asia""" +2023-08-20,83561,2672,"[\""Tablet\"", \""Laptop\""]",2054.9,"{\""seasonal\"": \""17%\""}",206077,0,"""Europe""" +2024-12-11,83562,8415,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4798.84,{},24932,1,"""Europe""" +2023-03-28,83563,9965,"[\""Keyboard\"", \""Monitor\""]",1911.43,{},21104,1,"""Asia""" +2023-07-24,83564,9107,"[\""Headphones\"", \""Phone\""]",3643.82,{},153388,1,"""Europe""" +2024-07-25,83565,1890,"[\""Wireless Mouse\"", \""Phone\""]",3487.7,"{\"": \""20%\""}",183892,0,"""Africa""" +2023-08-12,83566,7060,"[\""Headphones\""]",1432.02,{},232829,0,"""Europe""" +2023-07-28,83567,1385,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2847.97,"{\"": \""18%\""}",273104,1,"""Africa""" +2023-03-30,83568,8700,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2225.84,"{\""promo\"": \""6%\""}",26894,1,"""Asia""" +2024-06-03,83569,6542,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4647.83,"{\"": \""29%\""}",208270,1,"""Asia""" +2024-06-10,83570,4164,"[\""Monitor\"", \""Tablet\""]",4753.85,"{\""seasonal\"": \""9%\""}",28135,1,"""North America""" +2023-09-23,83571,8539,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3474.7,{},254862,0,"""North America""" +2023-01-24,83572,6907,"[\""Charger\""]",342.32,{},22409,0,"""South America""" +2023-09-06,83573,5952,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2748.63,{},208703,0,"""North America""" +2023-02-27,83574,2416,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2041.29,{},206275,0,"""North America""" +2023-10-30,83575,3029,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3285.88,"{\"": \""25%\""}",27035,1,"""South America""" +2023-08-30,83576,4008,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1994.17,"{\""promo\"": \""30%\""}",232912,1,"""South America""" +2023-03-12,83577,593,"[\""Phone\"", \""Wireless Mouse\""]",4991.09,"{\""promo\"": \""11%\""}",30946,0,"""South America""" +2023-01-24,83578,3782,"[\""Charger\""]",1373.54,{},83580,0,"""Africa""" +2024-04-28,83579,6989,"[\""Laptop\"", \""Tablet\""]",1658.09,"{\""loyalty\"": \""15%\""}",223856,0,"""Asia""" +2023-02-14,83580,3776,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2761.91,{},4765,0,"""Europe""" +2024-05-05,83581,9286,"[\""Phone\"", \""Wireless Mouse\""]",397.68,{},28940,1,"""Europe""" +2023-01-22,83582,539,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3632.82,"{\""seasonal\"": \""5%\""}",275926,0,"""Europe""" +2023-08-01,83583,512,"[\""Headphones\"", \""Charger\""]",4338.09,"{\""promo\"": \""24%\""}",97896,0,"""Asia""" +2023-09-26,83584,839,"[\""Laptop\"", \""Monitor\""]",3525.77,"{\"": \""26%\""}",261720,0,"""Europe""" +2024-02-01,83585,8719,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3703.75,"{\""loyalty\"": \""16%\""}",262867,1,"""Africa""" +2024-06-01,83586,5084,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",143.58,{},109752,0,"""Asia""" +2023-10-26,83587,2269,"[\""Keyboard\"", \""Tablet\""]",2566.02,{},258131,1,"""Europe""" +2023-08-08,83588,5034,"[\""Laptop\""]",2869.44,"{\""seasonal\"": \""21%\""}",89525,0,"""South America""" +2024-07-09,83589,3892,"[\""Laptop\""]",4519.59,{},64387,0,"""Europe""" +2024-07-16,83590,9887,"[\""Headphones\""]",4675.13,"{\"": \""10%\""}",19348,1,"""South America""" +2024-07-23,83591,734,"[\""Phone\"", \""Headphones\""]",807.13,{},215201,1,"""Europe""" +2024-11-13,83592,6072,"[\""Tablet\""]",1357.94,{},194128,0,"""Asia""" +2023-09-24,83593,4345,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4430.2,"{\"": \""29%\""}",44017,1,"""North America""" +2024-03-01,83594,388,"[\""Headphones\"", \""Tablet\""]",919.62,{},236545,1,"""Europe""" +2024-08-20,83595,9147,"[\""Keyboard\"", \""Phone\""]",715.85,"{\"": \""18%\""}",246592,1,"""South America""" +2023-10-12,83596,7772,"[\""Wireless Mouse\"", \""Headphones\""]",2633.29,"{\""seasonal\"": \""20%\""}",270934,1,"""Asia""" +2024-03-21,83597,3369,"[\""Charger\""]",787.24,"{\""loyalty\"": \""10%\""}",125841,0,"""South America""" +2024-05-25,83598,6375,"[\""Monitor\""]",435.34,{},30873,0,"""South America""" +2023-11-23,83599,4179,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",942.69,"{\""loyalty\"": \""20%\""}",50791,1,"""Africa""" +2023-12-18,83600,9490,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4019.27,{},224460,0,"""Europe""" +2023-07-28,83601,3101,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1104.62,"{\""seasonal\"": \""10%\""}",140461,0,"""North America""" +2024-12-26,83602,6290,"[\""Monitor\"", \""Keyboard\""]",3256.18,"{\""loyalty\"": \""9%\""}",84411,0,"""Asia""" +2024-11-14,83603,8241,"[\""Keyboard\"", \""Laptop\""]",4572.52,"{\""seasonal\"": \""26%\""}",145371,1,"""South America""" +2024-06-28,83604,1085,"[\""Keyboard\""]",3020.1,{},211593,0,"""Asia""" +2024-03-22,83605,6711,"[\""Charger\"", \""Wireless Mouse\""]",3341.35,{},173613,0,"""Asia""" +2024-03-26,83606,3047,"[\""Keyboard\"", \""Headphones\""]",3945.92,{},140924,1,"""Africa""" +2024-01-28,83607,1858,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3580.89,{},128987,0,"""Asia""" +2023-05-27,83608,7916,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3482.26,"{\""seasonal\"": \""10%\""}",140239,0,"""Asia""" +2023-02-25,83609,9844,"[\""Keyboard\""]",353.45,{},44742,0,"""Africa""" +2024-02-04,83610,6052,"[\""Monitor\"", \""Phone\""]",4708.76,"{\"": \""18%\""}",20247,0,"""Africa""" +2024-03-09,83611,5335,"[\""Charger\""]",2644.54,"{\""promo\"": \""19%\""}",54161,1,"""Africa""" +2023-07-30,83612,7638,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1368.58,{},65934,0,"""Asia""" +2024-02-14,83613,4355,"[\""Tablet\"", \""Laptop\""]",2332.58,"{\""seasonal\"": \""20%\""}",275569,0,"""Africa""" +2024-07-23,83614,4409,"[\""Monitor\""]",1532.12,{},228244,0,"""North America""" +2023-03-21,83615,4919,"[\""Headphones\""]",4372.99,{},247050,0,"""Africa""" +2024-03-10,83616,1749,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1362.05,{},215048,0,"""South America""" +2024-03-14,83617,5791,"[\""Keyboard\""]",3521.54,"{\"": \""19%\""}",6807,1,"""Africa""" +2024-05-09,83618,4876,"[\""Monitor\"", \""Headphones\""]",519.82,"{\""seasonal\"": \""29%\""}",54323,0,"""Asia""" +2024-01-04,83619,3355,"[\""Headphones\""]",3752.92,"{\""promo\"": \""15%\""}",276798,0,"""Asia""" +2024-12-30,83620,2808,"[\""Keyboard\""]",398.17,{},83762,0,"""Europe""" +2024-03-05,83621,2542,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4853.79,{},86087,1,"""North America""" +2023-05-03,83622,8715,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",481.88,"{\""seasonal\"": \""18%\""}",180410,1,"""North America""" +2023-01-18,83623,3514,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3111.89,"{\"": \""12%\""}",231883,1,"""South America""" +2023-06-08,83624,766,"[\""Tablet\"", \""Wireless Mouse\""]",474.43,"{\"": \""26%\""}",256853,1,"""Africa""" +2023-03-26,83625,3632,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2935.3,"{\""seasonal\"": \""12%\""}",31451,0,"""Europe""" +2023-09-15,83626,8749,"[\""Monitor\""]",2603.72,{},187060,1,"""Africa""" +2024-10-12,83627,6080,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",683.62,"{\"": \""18%\""}",275274,1,"""Africa""" +2024-07-19,83628,7391,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",4644.33,{},20946,1,"""Asia""" +2023-06-04,83629,1029,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4822.41,{},263383,0,"""Asia""" +2023-02-10,83630,8379,"[\""Keyboard\""]",2230.82,{},159266,1,"""Asia""" +2024-11-07,83631,9297,"[\""Phone\"", \""Keyboard\""]",659.32,{},281547,1,"""Asia""" +2024-10-18,83632,885,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4119.54,"{\""seasonal\"": \""10%\""}",222538,1,"""Africa""" +2024-05-22,83633,969,"[\""Phone\""]",2208.23,"{\""promo\"": \""26%\""}",54360,1,"""South America""" +2023-11-02,83634,5830,"[\""Charger\""]",4654.78,{},261900,1,"""Asia""" +2023-10-15,83635,2333,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1443.8,"{\""promo\"": \""20%\""}",200937,1,"""North America""" +2024-01-17,83636,1419,"[\""Charger\""]",244.61,{},272538,1,"""Europe""" +2024-01-08,83637,7293,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3605.28,"{\"": \""8%\""}",76472,0,"""Asia""" +2024-05-02,83638,466,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",176.46,{},90823,1,"""North America""" +2023-09-21,83639,8262,"[\""Keyboard\"", \""Tablet\""]",321.71,{},272815,1,"""Africa""" +2023-08-19,83640,3871,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4018.08,"{\"": \""24%\""}",63168,1,"""Asia""" +2023-02-15,83641,5001,"[\""Charger\"", \""Phone\""]",1551.11,{},283692,1,"""Europe""" +2023-02-21,83642,1030,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1300.36,"{\"": \""15%\""}",203669,1,"""Asia""" +2024-01-08,83643,250,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4792.4,{},45807,0,"""Africa""" +2024-06-25,83644,9511,"[\""Charger\"", \""Monitor\""]",2608.18,{},202668,1,"""Africa""" +2023-07-15,83645,7636,"[\""Phone\""]",1196.0,"{\""loyalty\"": \""15%\""}",137086,1,"""Asia""" +2024-04-24,83646,4352,"[\""Tablet\"", \""Laptop\""]",4918.9,{},129760,1,"""South America""" +2024-08-23,83647,8416,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2434.1,"{\""loyalty\"": \""30%\""}",214208,0,"""North America""" +2024-07-03,83648,3256,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4675.28,{},295519,0,"""Africa""" +2024-06-12,83649,4685,"[\""Laptop\""]",2737.91,"{\""loyalty\"": \""17%\""}",154461,1,"""Asia""" +2024-01-05,83650,3291,"[\""Phone\""]",434.65,"{\"": \""14%\""}",150761,0,"""South America""" +2024-07-03,83651,3971,"[\""Headphones\""]",2441.92,{},132848,1,"""Europe""" +2024-11-18,83652,6683,"[\""Headphones\""]",2449.87,"{\""loyalty\"": \""30%\""}",98484,0,"""North America""" +2023-07-20,83653,5355,"[\""Tablet\""]",4261.35,{},115281,1,"""Asia""" +2023-07-08,83654,9351,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4415.06,{},181537,0,"""Europe""" +2024-09-29,83655,2527,"[\""Charger\""]",255.56,{},260750,1,"""South America""" +2023-05-21,83656,8145,"[\""Laptop\"", \""Phone\""]",3036.15,{},96649,1,"""Europe""" +2023-09-12,83657,2065,"[\""Headphones\"", \""Laptop\""]",2666.92,{},70375,1,"""Asia""" +2023-08-29,83658,6902,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1265.5,"{\"": \""6%\""}",282188,1,"""North America""" +2023-09-04,83659,2542,"[\""Wireless Mouse\""]",2917.7,"{\""seasonal\"": \""27%\""}",145768,0,"""North America""" +2023-12-25,83660,8875,"[\""Charger\""]",1387.48,{},185586,1,"""Africa""" +2023-12-06,83661,8969,"[\""Wireless Mouse\"", \""Phone\""]",2950.84,{},245035,1,"""Africa""" +2024-10-28,83662,5900,"[\""Charger\"", \""Monitor\""]",3465.93,"{\""loyalty\"": \""13%\""}",239820,1,"""South America""" +2023-02-10,83663,3046,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4952.43,{},231942,1,"""South America""" +2024-02-01,83664,341,"[\""Wireless Mouse\"", \""Laptop\""]",4921.88,{},106794,0,"""South America""" +2024-09-23,83665,6057,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3850.72,"{\""promo\"": \""21%\""}",68946,1,"""South America""" +2024-08-01,83666,3782,"[\""Monitor\""]",2296.6,{},77206,0,"""Europe""" +2024-05-29,83667,2266,"[\""Monitor\"", \""Keyboard\""]",3459.68,"{\""promo\"": \""30%\""}",5410,1,"""North America""" +2023-09-13,83668,7038,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1442.76,"{\""promo\"": \""21%\""}",98809,0,"""North America""" +2023-02-21,83669,2776,"[\""Charger\"", \""Laptop\""]",3506.44,"{\""seasonal\"": \""16%\""}",71541,1,"""Europe""" +2024-07-17,83670,2795,"[\""Charger\"", \""Tablet\""]",332.29,"{\""promo\"": \""22%\""}",1184,0,"""South America""" +2024-04-21,83671,6204,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4092.8,"{\""seasonal\"": \""9%\""}",2720,0,"""Asia""" +2024-02-02,83672,8419,"[\""Tablet\"", \""Phone\""]",1280.85,{},62991,1,"""North America""" +2024-07-12,83673,8277,"[\""Monitor\""]",1624.05,{},112134,1,"""Africa""" +2024-05-16,83674,2094,"[\""Charger\""]",914.99,"{\""seasonal\"": \""25%\""}",201431,1,"""Asia""" +2023-04-28,83675,491,"[\""Headphones\""]",1436.89,"{\""seasonal\"": \""23%\""}",184691,1,"""North America""" +2023-06-08,83676,5803,"[\""Keyboard\""]",1816.02,{},276859,1,"""North America""" +2023-09-15,83677,7915,"[\""Charger\""]",2597.52,"{\"": \""22%\""}",61573,0,"""Europe""" +2024-03-21,83678,7112,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1962.17,"{\""promo\"": \""21%\""}",40774,0,"""Africa""" +2024-07-09,83679,9611,"[\""Tablet\"", \""Phone\""]",2800.34,"{\""seasonal\"": \""29%\""}",87530,1,"""Europe""" +2023-05-16,83680,1322,"[\""Tablet\""]",176.86,{},8579,1,"""Asia""" +2023-07-06,83681,4462,"[\""Phone\"", \""Wireless Mouse\""]",2270.11,"{\""seasonal\"": \""15%\""}",192801,0,"""Asia""" +2023-07-28,83682,8656,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2406.59,"{\"": \""9%\""}",54156,0,"""Europe""" +2024-06-10,83683,8401,"[\""Monitor\""]",573.93,{},219320,1,"""Asia""" +2023-08-16,83684,2920,"[\""Laptop\"", \""Tablet\""]",2885.46,"{\"": \""19%\""}",163599,0,"""North America""" +2023-05-30,83685,4549,"[\""Headphones\"", \""Monitor\""]",2116.97,"{\""seasonal\"": \""6%\""}",4781,0,"""Asia""" +2024-09-20,83686,3349,"[\""Keyboard\""]",3945.29,"{\"": \""20%\""}",219135,1,"""Europe""" +2023-10-15,83687,3120,"[\""Charger\""]",1756.04,{},70693,1,"""South America""" +2023-01-30,83688,7114,"[\""Laptop\"", \""Phone\""]",1396.56,{},175160,0,"""Asia""" +2023-05-17,83689,3615,"[\""Monitor\"", \""Phone\"", \""Charger\""]",182.99,{},217857,1,"""Europe""" +2023-06-28,83690,9317,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1549.01,"{\"": \""26%\""}",258330,0,"""South America""" +2023-10-23,83691,5083,"[\""Monitor\"", \""Charger\""]",1521.6,{},69274,0,"""North America""" +2024-09-19,83692,3956,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4231.58,{},133582,0,"""Asia""" +2023-04-06,83693,9094,"[\""Charger\"", \""Laptop\""]",4387.84,"{\"": \""18%\""}",58920,1,"""North America""" +2024-02-02,83694,5233,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4690.07,"{\""promo\"": \""11%\""}",24626,0,"""North America""" +2024-06-15,83695,4796,"[\""Laptop\""]",671.09,{},97127,0,"""Europe""" +2023-02-17,83696,7428,"[\""Tablet\"", \""Wireless Mouse\""]",2175.68,{},171090,1,"""Europe""" +2024-01-21,83697,3749,"[\""Keyboard\"", \""Phone\""]",937.94,{},161587,1,"""South America""" +2024-05-01,83698,2254,"[\""Tablet\""]",3754.58,{},55837,1,"""Europe""" +2024-10-22,83699,5969,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3467.34,"{\""promo\"": \""7%\""}",78983,1,"""North America""" +2024-06-30,83700,468,"[\""Phone\"", \""Headphones\"", \""Charger\""]",886.24,"{\""promo\"": \""19%\""}",68398,1,"""South America""" +2023-02-07,83701,7626,"[\""Laptop\"", \""Headphones\""]",1393.57,{},138612,0,"""Africa""" +2023-11-21,83702,7676,"[\""Headphones\"", \""Phone\""]",4801.33,{},28599,0,"""Asia""" +2024-04-21,83703,4605,"[\""Monitor\"", \""Headphones\""]",1156.09,"{\"": \""26%\""}",196689,1,"""Asia""" +2024-07-25,83704,9934,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4066.21,"{\""loyalty\"": \""18%\""}",218204,0,"""Asia""" +2023-12-23,83705,2902,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2403.61,"{\"": \""27%\""}",17204,1,"""South America""" +2023-03-03,83706,2585,"[\""Tablet\""]",2274.12,"{\""promo\"": \""11%\""}",170846,1,"""South America""" +2023-07-19,83707,9968,"[\""Laptop\""]",4817.02,{},17644,0,"""North America""" +2023-01-25,83708,2608,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1847.47,"{\""seasonal\"": \""12%\""}",106831,0,"""Africa""" +2024-01-20,83709,1514,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4811.45,{},205428,1,"""South America""" +2024-09-13,83710,3412,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",251.9,{},138246,0,"""Asia""" +2024-02-05,83711,6902,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2543.77,"{\""promo\"": \""26%\""}",190829,0,"""Asia""" +2024-03-27,83712,578,"[\""Charger\""]",734.14,"{\""seasonal\"": \""15%\""}",256210,0,"""Africa""" +2023-05-05,83713,1633,"[\""Laptop\"", \""Charger\""]",2988.05,{},103229,0,"""Africa""" +2023-09-24,83714,1630,"[\""Headphones\"", \""Wireless Mouse\""]",123.63,{},53989,1,"""Asia""" +2023-01-03,83715,8105,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2415.38,{},286763,0,"""Europe""" +2023-05-01,83716,7721,"[\""Tablet\"", \""Monitor\""]",3399.31,{},236753,0,"""Africa""" +2023-06-05,83717,5669,"[\""Charger\"", \""Tablet\""]",3737.29,{},133505,1,"""Asia""" +2024-09-18,83718,9920,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",4736.52,{},221198,0,"""Asia""" +2023-08-01,83719,3538,"[\""Charger\"", \""Tablet\""]",787.5,{},266703,1,"""Europe""" +2024-06-10,83720,3421,"[\""Laptop\"", \""Phone\""]",82.31,{},250489,1,"""South America""" +2023-03-23,83721,43,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1928.3,{},73274,1,"""Asia""" +2023-10-23,83722,3517,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",915.82,{},121292,1,"""Africa""" +2023-10-10,83723,5966,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3119.53,"{\"": \""29%\""}",33052,0,"""Europe""" +2023-06-03,83724,6478,"[\""Phone\"", \""Keyboard\""]",1864.44,{},158277,1,"""North America""" +2023-11-18,83725,7514,"[\""Phone\"", \""Monitor\""]",4275.2,{},234738,0,"""Europe""" +2023-02-26,83726,6950,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4041.66,"{\""seasonal\"": \""27%\""}",270338,1,"""Asia""" +2023-04-26,83727,8636,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",105.12,{},105516,0,"""Asia""" +2023-06-21,83728,269,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2568.49,{},10547,0,"""South America""" +2024-01-16,83729,2488,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2817.39,"{\"": \""7%\""}",178064,0,"""Africa""" +2024-07-06,83730,3209,"[\""Tablet\""]",3501.56,"{\""promo\"": \""29%\""}",170355,0,"""Europe""" +2023-07-05,83731,9700,"[\""Charger\""]",2359.7,{},37370,1,"""Africa""" +2024-04-21,83732,2066,"[\""Headphones\"", \""Tablet\""]",2984.35,"{\""seasonal\"": \""15%\""}",226489,1,"""Europe""" +2024-10-07,83733,6207,"[\""Wireless Mouse\""]",4147.16,"{\""loyalty\"": \""29%\""}",292773,0,"""South America""" +2023-12-30,83734,9916,"[\""Phone\"", \""Keyboard\""]",2334.41,"{\""promo\"": \""17%\""}",95211,0,"""Africa""" +2023-06-20,83735,4175,"[\""Headphones\"", \""Laptop\""]",2632.48,"{\""seasonal\"": \""20%\""}",41964,1,"""Europe""" +2023-06-20,83736,4435,"[\""Wireless Mouse\""]",1096.43,"{\""loyalty\"": \""19%\""}",33666,1,"""Asia""" +2024-12-05,83737,268,"[\""Keyboard\""]",1402.11,{},274502,1,"""Africa""" +2024-05-30,83738,8887,"[\""Monitor\"", \""Wireless Mouse\""]",2542.59,"{\""loyalty\"": \""8%\""}",295326,0,"""Africa""" +2024-11-28,83739,7566,"[\""Wireless Mouse\""]",1042.92,"{\"": \""23%\""}",86133,1,"""Europe""" +2023-03-10,83740,8397,"[\""Phone\""]",181.66,{},76405,0,"""Europe""" +2024-03-14,83741,6125,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4275.08,{},126245,0,"""North America""" +2024-04-20,83742,5043,"[\""Phone\""]",3380.09,{},7841,0,"""North America""" +2024-03-19,83743,2832,"[\""Keyboard\"", \""Wireless Mouse\""]",3478.81,"{\""seasonal\"": \""20%\""}",247658,0,"""Asia""" +2024-10-12,83744,9846,"[\""Headphones\"", \""Charger\""]",854.06,{},293919,0,"""Europe""" +2024-01-02,83745,8993,"[\""Monitor\""]",1765.05,"{\"": \""29%\""}",23170,0,"""Europe""" +2023-08-28,83746,913,"[\""Wireless Mouse\"", \""Headphones\""]",2844.99,"{\""loyalty\"": \""18%\""}",173096,1,"""Asia""" +2024-12-19,83747,9386,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",133.59,{},261401,1,"""South America""" +2024-12-11,83748,5753,"[\""Laptop\""]",2993.62,{},227907,0,"""Africa""" +2024-01-08,83749,1518,"[\""Charger\"", \""Monitor\""]",599.59,"{\""loyalty\"": \""13%\""}",23371,0,"""South America""" +2024-10-22,83750,8933,"[\""Tablet\""]",4699.08,"{\""seasonal\"": \""23%\""}",203630,1,"""North America""" +2023-06-12,83751,8908,"[\""Charger\""]",1061.22,"{\""promo\"": \""21%\""}",174494,1,"""Europe""" +2023-08-25,83752,6751,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3419.09,"{\""loyalty\"": \""25%\""}",201466,0,"""Asia""" +2023-05-01,83753,5909,"[\""Charger\"", \""Headphones\""]",287.81,{},221178,1,"""North America""" +2024-04-07,83754,4161,"[\""Laptop\""]",1112.1,{},189503,1,"""Asia""" +2024-11-24,83755,4784,"[\""Laptop\"", \""Monitor\""]",1368.87,{},35393,1,"""Africa""" +2024-10-07,83756,9105,"[\""Laptop\""]",1847.74,{},14353,0,"""North America""" +2024-03-27,83757,8752,"[\""Monitor\""]",3032.07,"{\""loyalty\"": \""11%\""}",197738,0,"""Africa""" +2024-03-21,83758,5928,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",540.79,{},199163,0,"""Asia""" +2024-07-30,83759,5754,"[\""Wireless Mouse\"", \""Keyboard\""]",726.34,{},217447,1,"""South America""" +2024-12-14,83760,8188,"[\""Monitor\"", \""Wireless Mouse\""]",4970.24,"{\""promo\"": \""23%\""}",285662,1,"""North America""" +2023-11-23,83761,8807,"[\""Tablet\"", \""Keyboard\""]",599.36,"{\""promo\"": \""29%\""}",265306,0,"""South America""" +2023-05-06,83762,3409,"[\""Tablet\"", \""Charger\""]",4678.58,"{\""seasonal\"": \""14%\""}",61149,1,"""Africa""" +2023-07-25,83763,8370,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3446.23,"{\""seasonal\"": \""18%\""}",89404,0,"""Africa""" +2023-06-06,83764,4428,"[\""Phone\""]",3825.14,"{\"": \""25%\""}",219043,1,"""Asia""" +2024-10-30,83765,3332,"[\""Charger\"", \""Tablet\""]",2378.46,"{\""seasonal\"": \""5%\""}",284998,1,"""Europe""" +2024-05-02,83766,386,"[\""Monitor\""]",930.29,{},214952,1,"""South America""" +2023-10-10,83767,495,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1276.91,"{\""loyalty\"": \""23%\""}",261984,0,"""Asia""" +2023-08-28,83768,6827,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2581.73,"{\""seasonal\"": \""30%\""}",3028,0,"""Asia""" +2023-08-23,83769,2632,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1076.26,{},11234,0,"""South America""" +2023-10-15,83770,2586,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",736.2,{},84911,0,"""Africa""" +2024-02-16,83771,3039,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4079.11,"{\""promo\"": \""12%\""}",120188,0,"""South America""" +2023-05-09,83772,8826,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3970.3,"{\""loyalty\"": \""28%\""}",159542,1,"""South America""" +2024-06-05,83773,7541,"[\""Wireless Mouse\"", \""Tablet\""]",783.45,"{\""seasonal\"": \""24%\""}",28252,1,"""Europe""" +2023-07-24,83774,878,"[\""Laptop\"", \""Headphones\""]",4348.36,{},104584,1,"""Africa""" +2024-10-19,83775,4932,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4151.68,{},73158,0,"""Asia""" +2023-11-01,83776,8774,"[\""Headphones\"", \""Monitor\""]",120.7,"{\"": \""21%\""}",185257,1,"""North America""" +2023-06-23,83777,8269,"[\""Laptop\"", \""Tablet\""]",2923.66,{},184954,1,"""North America""" +2024-12-06,83778,811,"[\""Headphones\"", \""Tablet\""]",1259.77,{},20722,0,"""Europe""" +2024-07-15,83779,9855,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4144.26,"{\""promo\"": \""23%\""}",274386,0,"""Asia""" +2023-11-12,83780,9223,"[\""Headphones\""]",2047.74,"{\""promo\"": \""11%\""}",214377,0,"""Asia""" +2023-05-22,83781,4455,"[\""Tablet\"", \""Keyboard\""]",456.18,"{\"": \""25%\""}",220294,1,"""Asia""" +2023-09-21,83782,8664,"[\""Wireless Mouse\"", \""Laptop\""]",1974.41,"{\""loyalty\"": \""21%\""}",76551,1,"""Europe""" +2023-03-22,83783,428,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2068.67,{},25182,0,"""Europe""" +2023-08-09,83784,609,"[\""Tablet\""]",148.71,"{\""seasonal\"": \""15%\""}",104575,1,"""Asia""" +2024-10-04,83785,4414,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1433.25,"{\""seasonal\"": \""15%\""}",88274,1,"""South America""" +2024-11-04,83786,4886,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3086.98,{},271115,0,"""South America""" +2023-01-22,83787,4461,"[\""Tablet\"", \""Laptop\""]",4459.77,"{\""loyalty\"": \""26%\""}",126134,0,"""Asia""" +2024-07-12,83788,5324,"[\""Monitor\"", \""Wireless Mouse\""]",3937.75,{},150696,0,"""Africa""" +2023-07-28,83789,54,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",388.93,{},271142,0,"""Africa""" +2024-08-09,83790,1360,"[\""Headphones\""]",3629.84,"{\""seasonal\"": \""8%\""}",116987,1,"""Asia""" +2024-08-06,83791,4042,"[\""Keyboard\"", \""Monitor\""]",1825.44,{},170692,0,"""Europe""" +2023-06-28,83792,9230,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",133.88,{},51457,1,"""North America""" +2024-06-05,83793,9151,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",950.7,"{\""promo\"": \""15%\""}",299755,0,"""North America""" +2023-03-14,83794,3816,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3643.58,"{\""loyalty\"": \""28%\""}",287362,0,"""Europe""" +2023-09-26,83795,9908,"[\""Tablet\"", \""Headphones\""]",4125.91,{},109612,1,"""South America""" +2024-08-19,83796,445,"[\""Keyboard\"", \""Phone\""]",4385.42,"{\""seasonal\"": \""8%\""}",39038,1,"""South America""" +2023-03-18,83797,8577,"[\""Monitor\""]",4116.99,{},61938,1,"""Asia""" +2023-10-25,83798,1329,"[\""Monitor\""]",529.69,"{\""loyalty\"": \""15%\""}",52995,1,"""North America""" +2024-09-12,83799,6680,"[\""Keyboard\""]",1258.27,{},258217,0,"""Asia""" +2023-11-07,83800,8051,"[\""Headphones\"", \""Laptop\""]",1429.09,{},139753,0,"""North America""" +2024-03-31,83801,8572,"[\""Phone\"", \""Laptop\""]",1905.38,{},49607,1,"""North America""" +2023-09-19,83802,8209,"[\""Charger\""]",4749.67,"{\"": \""20%\""}",171163,0,"""South America""" +2024-01-12,83803,6624,"[\""Monitor\""]",3707.16,{},99995,0,"""North America""" +2024-03-30,83804,3879,"[\""Tablet\"", \""Charger\""]",2233.99,{},224022,0,"""Europe""" +2024-03-16,83805,8315,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4776.6,"{\"": \""22%\""}",39776,1,"""Asia""" +2023-03-17,83806,1044,"[\""Keyboard\"", \""Headphones\""]",4634.05,{},178234,0,"""North America""" +2023-08-25,83807,7451,"[\""Charger\"", \""Monitor\""]",3779.91,"{\""promo\"": \""15%\""}",11853,1,"""North America""" +2023-09-12,83808,9026,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",152.4,"{\"": \""26%\""}",59094,1,"""North America""" +2023-08-07,83809,6761,"[\""Monitor\""]",3353.51,{},235558,1,"""Europe""" +2024-08-07,83810,3315,"[\""Laptop\""]",4827.94,{},148369,1,"""Africa""" +2024-10-02,83811,4771,"[\""Headphones\""]",4561.14,"{\""promo\"": \""7%\""}",74728,1,"""Africa""" +2023-04-29,83812,9709,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2153.14,"{\""promo\"": \""12%\""}",60327,1,"""South America""" +2023-04-29,83813,3610,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3451.23,"{\""seasonal\"": \""16%\""}",94539,0,"""Europe""" +2023-05-20,83814,2552,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2499.34,"{\""promo\"": \""6%\""}",23823,1,"""South America""" +2024-12-11,83815,3984,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1366.08,"{\""seasonal\"": \""7%\""}",177958,0,"""North America""" +2024-04-20,83816,6609,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",136.24,"{\""seasonal\"": \""18%\""}",52671,1,"""South America""" +2023-11-09,83817,5722,"[\""Laptop\""]",2653.47,{},30543,0,"""Africa""" +2024-02-28,83818,6739,"[\""Phone\""]",204.28,{},206891,0,"""Europe""" +2024-05-31,83819,7467,"[\""Charger\"", \""Monitor\""]",1887.36,{},184029,0,"""North America""" +2023-04-24,83820,9678,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3510.67,{},244415,0,"""Europe""" +2024-11-09,83821,6249,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",901.63,"{\""promo\"": \""22%\""}",106302,1,"""Asia""" +2023-11-16,83822,6145,"[\""Tablet\"", \""Headphones\""]",502.54,{},252434,1,"""Europe""" +2023-01-24,83823,3831,"[\""Tablet\""]",901.0,{},17758,0,"""North America""" +2024-10-31,83824,309,"[\""Phone\"", \""Laptop\""]",1497.52,{},121338,0,"""Africa""" +2024-08-15,83825,9740,"[\""Headphones\""]",4954.3,{},108961,0,"""Europe""" +2024-06-23,83826,9104,"[\""Tablet\""]",4558.36,{},53818,0,"""Europe""" +2024-12-24,83827,3445,"[\""Monitor\"", \""Laptop\""]",4774.31,{},283639,0,"""North America""" +2023-08-06,83828,7983,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4857.39,"{\""seasonal\"": \""29%\""}",40578,0,"""Africa""" +2024-06-27,83829,4712,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3151.88,"{\"": \""14%\""}",177642,1,"""Asia""" +2024-11-26,83830,9059,"[\""Charger\""]",234.58,"{\"": \""13%\""}",92066,1,"""Africa""" +2023-08-17,83831,126,"[\""Headphones\""]",4482.22,{},219155,1,"""Africa""" +2023-11-22,83832,4312,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1482.07,{},29154,1,"""Asia""" +2024-02-08,83833,943,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2376.91,"{\"": \""5%\""}",59158,0,"""Africa""" +2023-09-09,83834,4481,"[\""Monitor\""]",4587.36,"{\"": \""5%\""}",47120,0,"""Africa""" +2024-03-02,83835,4033,"[\""Charger\"", \""Wireless Mouse\""]",2680.27,{},270930,1,"""Europe""" +2024-12-13,83836,806,"[\""Headphones\"", \""Wireless Mouse\""]",4064.08,{},188182,1,"""Africa""" +2023-11-23,83837,8659,"[\""Keyboard\"", \""Tablet\""]",2581.27,"{\""promo\"": \""13%\""}",146591,0,"""South America""" +2023-12-22,83838,9502,"[\""Headphones\"", \""Laptop\""]",1440.17,"{\""loyalty\"": \""25%\""}",181239,1,"""Africa""" +2023-11-01,83839,1684,"[\""Headphones\"", \""Monitor\""]",1832.17,{},34328,1,"""Asia""" +2023-07-01,83840,8838,"[\""Monitor\""]",2328.68,"{\""promo\"": \""25%\""}",206583,1,"""Asia""" +2024-01-25,83841,7701,"[\""Keyboard\"", \""Wireless Mouse\""]",1321.41,"{\""loyalty\"": \""25%\""}",257374,0,"""Europe""" +2024-06-25,83842,7775,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1940.9,"{\""loyalty\"": \""18%\""}",140738,0,"""Africa""" +2023-01-27,83843,7492,"[\""Laptop\"", \""Headphones\""]",3191.42,"{\""loyalty\"": \""14%\""}",204513,1,"""Africa""" +2023-04-04,83844,1122,"[\""Wireless Mouse\""]",1454.16,{},99855,0,"""Africa""" +2024-07-12,83845,4932,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2669.82,"{\""promo\"": \""22%\""}",90254,0,"""Asia""" +2024-11-24,83846,3505,"[\""Wireless Mouse\"", \""Phone\""]",4079.83,{},6026,0,"""South America""" +2024-12-10,83847,1320,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1516.94,{},148062,1,"""Africa""" +2023-04-03,83848,8861,"[\""Tablet\"", \""Monitor\""]",100.02,"{\"": \""18%\""}",25748,0,"""Africa""" +2023-01-19,83849,9909,"[\""Keyboard\"", \""Wireless Mouse\""]",170.62,{},204105,1,"""Africa""" +2023-09-20,83850,7302,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4718.33,{},65011,1,"""Europe""" +2024-10-22,83851,9639,"[\""Laptop\""]",4316.93,"{\""seasonal\"": \""27%\""}",9644,0,"""South America""" +2024-07-10,83852,2415,"[\""Phone\""]",796.87,"{\""seasonal\"": \""11%\""}",264537,1,"""South America""" +2024-04-06,83853,6212,"[\""Charger\""]",3297.8,{},191570,1,"""Europe""" +2024-01-29,83854,9416,"[\""Phone\"", \""Keyboard\""]",2887.42,"{\"": \""13%\""}",262286,1,"""Asia""" +2023-11-01,83855,2832,"[\""Wireless Mouse\"", \""Phone\""]",710.75,"{\""loyalty\"": \""18%\""}",78842,0,"""North America""" +2024-03-10,83856,2157,"[\""Phone\""]",2990.46,{},63662,1,"""South America""" +2024-01-28,83857,2337,"[\""Monitor\"", \""Headphones\""]",1898.95,{},120134,0,"""Europe""" +2024-09-21,83858,296,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2034.6,"{\""loyalty\"": \""27%\""}",63715,0,"""Asia""" +2023-11-29,83859,7424,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3678.89,"{\""promo\"": \""26%\""}",42288,0,"""South America""" +2023-12-12,83860,3698,"[\""Monitor\"", \""Headphones\""]",2275.56,{},93069,1,"""Asia""" +2024-10-10,83861,7507,"[\""Keyboard\""]",1104.91,"{\""promo\"": \""23%\""}",117819,1,"""Europe""" +2023-04-24,83862,2616,"[\""Monitor\""]",1766.2,{},90364,1,"""Europe""" +2023-08-25,83863,3324,"[\""Monitor\"", \""Laptop\""]",1303.24,"{\""promo\"": \""9%\""}",95887,1,"""South America""" +2024-04-19,83864,9843,"[\""Keyboard\"", \""Phone\""]",4964.13,{},87060,1,"""Europe""" +2023-01-03,83865,290,"[\""Phone\"", \""Tablet\"", \""Charger\""]",335.67,"{\""promo\"": \""30%\""}",106090,1,"""South America""" +2023-03-20,83866,4800,"[\""Headphones\""]",796.78,{},143595,0,"""Europe""" +2023-05-04,83867,8817,"[\""Tablet\""]",1430.54,"{\""seasonal\"": \""15%\""}",227383,0,"""North America""" +2024-03-24,83868,139,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2345.09,"{\""promo\"": \""28%\""}",287865,0,"""North America""" +2023-04-27,83869,9591,"[\""Tablet\"", \""Headphones\""]",135.58,{},241670,0,"""South America""" +2024-03-25,83870,6922,"[\""Keyboard\"", \""Tablet\""]",185.4,"{\""loyalty\"": \""30%\""}",102329,1,"""North America""" +2024-12-14,83871,1575,"[\""Keyboard\""]",640.38,"{\""loyalty\"": \""20%\""}",261038,1,"""North America""" +2024-08-14,83872,7721,"[\""Tablet\""]",4272.06,"{\""promo\"": \""7%\""}",193488,0,"""Europe""" +2023-02-05,83873,7389,"[\""Headphones\""]",2873.42,"{\""seasonal\"": \""10%\""}",211781,0,"""North America""" +2024-06-10,83874,3983,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4458.63,"{\""promo\"": \""22%\""}",191878,1,"""Europe""" +2024-03-17,83875,2711,"[\""Wireless Mouse\""]",1239.44,"{\""promo\"": \""18%\""}",278377,0,"""Africa""" +2024-12-18,83876,425,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4946.17,{},251084,0,"""Africa""" +2024-09-29,83877,8266,"[\""Phone\""]",4034.78,{},17457,0,"""Africa""" +2024-07-17,83878,2641,"[\""Charger\""]",2337.55,"{\"": \""27%\""}",49645,1,"""Europe""" +2024-02-21,83879,3030,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2911.81,"{\""loyalty\"": \""13%\""}",179926,0,"""North America""" +2024-07-05,83880,2511,"[\""Keyboard\""]",1288.85,{},155039,0,"""Europe""" +2024-10-22,83881,1171,"[\""Keyboard\"", \""Phone\""]",167.65,{},16977,0,"""North America""" +2023-05-08,83882,207,"[\""Wireless Mouse\"", \""Monitor\""]",1169.71,{},206420,0,"""Asia""" +2023-01-25,83883,3768,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1058.9,"{\"": \""13%\""}",235931,1,"""Asia""" +2023-06-22,83884,8807,"[\""Laptop\"", \""Keyboard\""]",3579.57,{},46390,0,"""Africa""" +2024-01-21,83885,8949,"[\""Monitor\"", \""Charger\""]",4558.52,{},205469,1,"""South America""" +2024-06-08,83886,8224,"[\""Tablet\"", \""Charger\""]",3616.03,"{\""seasonal\"": \""22%\""}",293885,0,"""Asia""" +2024-12-21,83887,7248,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4729.43,"{\""loyalty\"": \""24%\""}",138749,0,"""Europe""" +2024-06-27,83888,8883,"[\""Phone\"", \""Keyboard\""]",461.92,"{\""seasonal\"": \""27%\""}",95814,1,"""South America""" +2024-02-29,83889,7089,"[\""Keyboard\""]",2880.58,"{\""seasonal\"": \""28%\""}",118960,1,"""Asia""" +2024-03-10,83890,2600,"[\""Charger\""]",1376.0,"{\""seasonal\"": \""5%\""}",89783,0,"""Asia""" +2023-09-27,83891,2972,"[\""Phone\"", \""Headphones\""]",3776.02,"{\"": \""5%\""}",132218,1,"""Europe""" +2024-10-03,83892,6947,"[\""Keyboard\"", \""Tablet\""]",147.61,"{\"": \""21%\""}",263833,0,"""Africa""" +2023-09-26,83893,2802,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4306.63,"{\""seasonal\"": \""18%\""}",121557,0,"""North America""" +2024-04-19,83894,6785,"[\""Laptop\""]",2845.88,{},86755,1,"""North America""" +2024-07-11,83895,8330,"[\""Phone\"", \""Monitor\""]",1396.35,{},218810,0,"""South America""" +2024-08-07,83896,1773,"[\""Phone\"", \""Charger\""]",4867.5,"{\""promo\"": \""29%\""}",96911,0,"""Asia""" +2023-07-06,83897,1955,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1837.32,{},101416,1,"""South America""" +2024-06-23,83898,151,"[\""Wireless Mouse\"", \""Headphones\""]",3278.24,"{\""loyalty\"": \""20%\""}",153549,0,"""South America""" +2024-05-19,83899,2531,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3308.88,"{\""loyalty\"": \""27%\""}",151535,1,"""South America""" +2023-05-31,83900,2683,"[\""Tablet\""]",4545.14,{},85158,1,"""South America""" +2023-06-02,83901,1889,"[\""Keyboard\""]",689.12,"{\""promo\"": \""10%\""}",150266,0,"""North America""" +2023-09-09,83902,2685,"[\""Monitor\"", \""Headphones\""]",3123.51,"{\""seasonal\"": \""28%\""}",105445,1,"""Africa""" +2023-05-04,83903,8190,"[\""Laptop\"", \""Phone\""]",2923.64,{},23149,1,"""North America""" +2024-02-25,83904,1431,"[\""Monitor\"", \""Headphones\""]",958.9,{},235774,1,"""South America""" +2023-02-23,83905,8726,"[\""Keyboard\"", \""Wireless Mouse\""]",3758.79,{},171573,0,"""South America""" +2023-09-23,83906,9991,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1888.45,"{\""seasonal\"": \""8%\""}",273867,0,"""Africa""" +2024-10-02,83907,5068,"[\""Monitor\"", \""Tablet\""]",2075.86,{},136190,0,"""South America""" +2023-10-03,83908,1138,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",889.64,{},47273,1,"""Asia""" +2024-08-19,83909,3567,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",221.34,{},238815,0,"""Europe""" +2023-02-04,83910,6912,"[\""Headphones\"", \""Keyboard\""]",2105.44,"{\""loyalty\"": \""10%\""}",289452,0,"""South America""" +2023-07-05,83911,1927,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1120.94,{},235039,1,"""Asia""" +2024-06-16,83912,5247,"[\""Laptop\""]",671.01,"{\"": \""14%\""}",180116,1,"""North America""" +2024-12-04,83913,7967,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4216.4,{},151054,1,"""Africa""" +2024-02-08,83914,7521,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1228.7,{},131239,1,"""South America""" +2024-05-16,83915,929,"[\""Monitor\"", \""Phone\""]",2159.47,"{\""promo\"": \""27%\""}",19369,0,"""North America""" +2023-05-16,83916,3634,"[\""Charger\"", \""Phone\""]",4250.4,{},276080,1,"""North America""" +2023-10-31,83917,8150,"[\""Laptop\""]",3227.45,{},258144,1,"""Africa""" +2023-04-10,83918,5315,"[\""Monitor\"", \""Wireless Mouse\""]",1929.16,"{\""loyalty\"": \""11%\""}",24848,0,"""South America""" +2024-01-18,83919,9030,"[\""Wireless Mouse\"", \""Tablet\""]",4905.71,{},211260,0,"""Asia""" +2023-03-19,83920,3226,"[\""Laptop\"", \""Headphones\""]",1877.98,"{\"": \""30%\""}",266539,1,"""South America""" +2023-02-20,83921,3347,"[\""Laptop\""]",577.56,{},78334,1,"""North America""" +2023-12-25,83922,8550,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1918.31,{},203586,0,"""Europe""" +2023-10-15,83923,7757,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1962.73,{},260284,1,"""Asia""" +2024-09-17,83924,4544,"[\""Phone\""]",1514.53,{},295619,1,"""Asia""" +2023-07-17,83925,6581,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2493.27,{},176358,0,"""South America""" +2023-09-20,83926,6482,"[\""Phone\"", \""Headphones\""]",1071.25,{},13702,0,"""South America""" +2024-05-20,83927,1631,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4641.65,{},36542,0,"""Europe""" +2023-02-03,83928,4720,"[\""Wireless Mouse\""]",2674.17,{},293351,1,"""Europe""" +2023-05-11,83929,4429,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4730.09,{},177585,1,"""Africa""" +2024-01-30,83930,5953,"[\""Headphones\""]",3907.4,{},139193,1,"""North America""" +2023-11-07,83931,7074,"[\""Laptop\""]",3122.95,{},66259,1,"""Africa""" +2024-08-25,83932,232,"[\""Wireless Mouse\""]",4373.42,{},196264,1,"""South America""" +2023-08-29,83933,3265,"[\""Headphones\""]",80.79,"{\"": \""20%\""}",134103,0,"""South America""" +2023-02-01,83934,4612,"[\""Charger\""]",2745.99,"{\""promo\"": \""12%\""}",52477,1,"""Europe""" +2024-11-10,83935,6650,"[\""Monitor\"", \""Charger\""]",3384.11,"{\""promo\"": \""28%\""}",59983,1,"""Europe""" +2024-11-22,83936,8029,"[\""Phone\"", \""Laptop\""]",2433.8,"{\""loyalty\"": \""16%\""}",255813,0,"""Asia""" +2024-03-15,83937,9314,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4040.22,"{\""loyalty\"": \""20%\""}",171599,1,"""Asia""" +2023-05-17,83938,400,"[\""Phone\""]",2071.67,"{\"": \""8%\""}",142033,1,"""Africa""" +2024-11-19,83939,3447,"[\""Monitor\""]",1769.05,"{\""loyalty\"": \""9%\""}",258412,1,"""Europe""" +2023-11-23,83940,7106,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4506.93,"{\""promo\"": \""14%\""}",76227,1,"""Africa""" +2024-08-30,83941,1659,"[\""Wireless Mouse\"", \""Monitor\""]",2556.94,{},42413,0,"""Asia""" +2024-12-08,83942,7963,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1761.95,{},148122,0,"""North America""" +2023-04-27,83943,9909,"[\""Keyboard\"", \""Laptop\""]",2621.39,{},211520,1,"""Europe""" +2024-11-04,83944,6582,"[\""Wireless Mouse\""]",1218.55,"{\""promo\"": \""23%\""}",213364,0,"""Europe""" +2024-10-28,83945,4247,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2734.44,{},104703,0,"""South America""" +2024-03-04,83946,7428,"[\""Wireless Mouse\""]",743.53,"{\""loyalty\"": \""6%\""}",24586,0,"""South America""" +2023-04-24,83947,3629,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1536.95,"{\""seasonal\"": \""18%\""}",122954,1,"""South America""" +2023-12-13,83948,62,"[\""Wireless Mouse\""]",2836.34,{},129029,0,"""Europe""" +2024-09-11,83949,5002,"[\""Laptop\"", \""Charger\""]",2072.03,{},261598,1,"""Africa""" +2024-11-26,83950,6106,"[\""Tablet\""]",4738.41,{},198631,0,"""South America""" +2023-02-14,83951,1500,"[\""Headphones\"", \""Laptop\""]",1451.19,"{\""loyalty\"": \""17%\""}",117150,1,"""Africa""" +2024-09-23,83952,3931,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4392.45,{},34286,1,"""Asia""" +2023-12-22,83953,2684,"[\""Wireless Mouse\"", \""Keyboard\""]",3533.34,{},199701,0,"""Asia""" +2023-09-01,83954,5300,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4865.0,"{\""promo\"": \""12%\""}",4225,0,"""Europe""" +2023-10-26,83955,1238,"[\""Laptop\"", \""Keyboard\""]",4036.05,"{\""seasonal\"": \""18%\""}",39298,0,"""South America""" +2023-03-16,83956,2574,"[\""Charger\""]",454.75,"{\""seasonal\"": \""23%\""}",107359,0,"""North America""" +2024-01-08,83957,412,"[\""Tablet\""]",768.84,"{\""seasonal\"": \""23%\""}",104703,1,"""Africa""" +2023-02-20,83958,1963,"[\""Tablet\""]",3979.08,{},265621,1,"""North America""" +2023-08-20,83959,782,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1351.59,{},273386,1,"""South America""" +2023-03-29,83960,541,"[\""Charger\""]",3458.99,"{\""promo\"": \""18%\""}",15058,0,"""North America""" +2024-01-07,83961,8598,"[\""Headphones\"", \""Charger\""]",480.88,{},158744,1,"""Europe""" +2024-10-13,83962,4914,"[\""Laptop\"", \""Headphones\""]",194.44,"{\""loyalty\"": \""26%\""}",120365,0,"""Europe""" +2024-04-28,83963,3240,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2425.28,"{\""loyalty\"": \""26%\""}",95755,0,"""Europe""" +2024-01-14,83964,4497,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4685.75,{},1046,0,"""Europe""" +2023-11-20,83965,9905,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4329.37,"{\"": \""30%\""}",98511,1,"""Africa""" +2023-12-25,83966,6865,"[\""Laptop\"", \""Charger\""]",2446.91,"{\""promo\"": \""22%\""}",150490,0,"""South America""" +2023-03-31,83967,7879,"[\""Headphones\"", \""Charger\""]",3064.55,{},219537,0,"""Asia""" +2023-02-15,83968,4588,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",2334.54,{},45472,1,"""Europe""" +2023-05-28,83969,1710,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3397.79,"{\"": \""21%\""}",290296,1,"""Africa""" +2023-11-24,83970,6020,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2836.95,"{\"": \""19%\""}",272505,0,"""South America""" +2024-02-01,83971,1551,"[\""Keyboard\""]",382.31,"{\""promo\"": \""13%\""}",298733,1,"""Asia""" +2024-09-18,83972,3801,"[\""Phone\""]",2854.0,"{\""promo\"": \""14%\""}",9762,0,"""North America""" +2023-11-09,83973,4937,"[\""Phone\""]",648.5,"{\""loyalty\"": \""17%\""}",63212,1,"""Asia""" +2023-04-20,83974,5291,"[\""Monitor\""]",259.12,"{\""loyalty\"": \""8%\""}",127735,1,"""South America""" +2024-02-08,83975,5053,"[\""Keyboard\""]",2020.99,"{\""loyalty\"": \""26%\""}",245918,0,"""Africa""" +2024-11-08,83976,7791,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",370.45,{},2457,0,"""North America""" +2023-01-10,83977,5548,"[\""Wireless Mouse\"", \""Tablet\""]",4843.75,"{\""seasonal\"": \""14%\""}",69864,0,"""Asia""" +2023-09-01,83978,358,"[\""Monitor\"", \""Charger\""]",2853.62,"{\""loyalty\"": \""10%\""}",48770,0,"""North America""" +2023-11-25,83979,637,"[\""Charger\""]",3151.65,"{\"": \""6%\""}",273402,0,"""Africa""" +2023-05-31,83980,3972,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4356.9,{},195992,1,"""Asia""" +2024-02-19,83981,7705,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3092.05,"{\""promo\"": \""9%\""}",106769,1,"""North America""" +2024-10-03,83982,9056,"[\""Monitor\"", \""Laptop\""]",2228.02,"{\""promo\"": \""9%\""}",109546,0,"""South America""" +2024-02-04,83983,9026,"[\""Keyboard\"", \""Tablet\""]",2608.17,{},236959,0,"""South America""" +2024-09-05,83984,9339,"[\""Charger\""]",4628.74,{},277661,1,"""Asia""" +2024-05-11,83985,2230,"[\""Tablet\"", \""Charger\""]",3057.42,"{\""promo\"": \""14%\""}",275826,1,"""North America""" +2023-03-26,83986,7084,"[\""Keyboard\""]",4022.22,"{\""loyalty\"": \""26%\""}",148247,0,"""South America""" +2024-06-29,83987,8178,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",186.25,"{\""seasonal\"": \""10%\""}",18753,0,"""South America""" +2023-11-27,83988,5373,"[\""Tablet\"", \""Wireless Mouse\""]",191.32,"{\""loyalty\"": \""12%\""}",189075,0,"""Asia""" +2023-09-18,83989,1038,"[\""Headphones\""]",1627.63,"{\"": \""10%\""}",183893,0,"""Asia""" +2023-08-23,83990,2750,"[\""Headphones\""]",4791.48,"{\""seasonal\"": \""7%\""}",9643,0,"""South America""" +2024-02-09,83991,4027,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",429.38,"{\"": \""14%\""}",125825,0,"""North America""" +2023-03-21,83992,5369,"[\""Charger\"", \""Keyboard\""]",4742.49,{},161370,1,"""North America""" +2023-10-29,83993,662,"[\""Phone\""]",1523.32,{},45439,0,"""Africa""" +2024-12-09,83994,9548,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2639.81,{},211279,0,"""North America""" +2023-09-18,83995,625,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2828.04,"{\""seasonal\"": \""7%\""}",230786,1,"""Africa""" +2024-08-13,83996,9100,"[\""Charger\"", \""Headphones\""]",1766.04,{},94715,0,"""Asia""" +2023-10-23,83997,6565,"[\""Monitor\"", \""Laptop\""]",1402.59,{},53457,1,"""South America""" +2023-04-22,83998,6640,"[\""Charger\"", \""Phone\""]",705.01,"{\"": \""29%\""}",258822,1,"""Europe""" +2024-02-24,83999,3647,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4664.01,"{\""seasonal\"": \""9%\""}",285570,1,"""South America""" +2023-05-14,84000,9635,"[\""Wireless Mouse\""]",4283.76,{},10424,1,"""Europe""" +2024-07-16,84001,9612,"[\""Monitor\"", \""Wireless Mouse\""]",2020.11,"{\""loyalty\"": \""10%\""}",100049,0,"""Europe""" +2024-04-04,84002,2745,"[\""Monitor\"", \""Headphones\""]",2452.74,{},12329,1,"""North America""" +2024-05-08,84003,8671,"[\""Laptop\""]",3540.89,"{\""seasonal\"": \""22%\""}",137825,0,"""Africa""" +2024-02-02,84004,2265,"[\""Laptop\""]",3080.41,"{\"": \""7%\""}",153875,1,"""Africa""" +2023-04-02,84005,6023,"[\""Keyboard\""]",3456.4,"{\""seasonal\"": \""15%\""}",111147,1,"""Europe""" +2024-01-06,84006,4849,"[\""Tablet\"", \""Wireless Mouse\""]",2491.87,"{\"": \""18%\""}",187599,0,"""Asia""" +2023-02-14,84007,3641,"[\""Charger\""]",4551.04,"{\""loyalty\"": \""9%\""}",93034,1,"""Europe""" +2023-05-18,84008,8689,"[\""Phone\""]",1395.18,"{\"": \""10%\""}",57580,1,"""Asia""" +2023-01-26,84009,6527,"[\""Phone\"", \""Laptop\""]",3146.76,"{\""promo\"": \""17%\""}",179043,0,"""South America""" +2023-02-18,84010,6451,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4954.38,{},182883,1,"""Asia""" +2023-02-28,84011,616,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",698.63,{},187341,1,"""Asia""" +2023-05-02,84012,9464,"[\""Charger\"", \""Phone\""]",1913.96,"{\""seasonal\"": \""16%\""}",255645,0,"""Asia""" +2023-01-26,84013,1093,"[\""Monitor\"", \""Phone\""]",522.66,"{\""loyalty\"": \""25%\""}",198193,0,"""North America""" +2023-06-02,84014,3367,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2509.98,"{\""loyalty\"": \""6%\""}",238366,0,"""North America""" +2023-05-13,84015,1357,"[\""Keyboard\""]",2874.43,"{\""seasonal\"": \""15%\""}",233191,0,"""North America""" +2024-08-17,84016,2444,"[\""Laptop\"", \""Wireless Mouse\""]",3532.73,{},148110,0,"""Europe""" +2023-10-20,84017,7069,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1305.42,"{\""loyalty\"": \""11%\""}",165965,0,"""North America""" +2024-09-20,84018,5897,"[\""Laptop\""]",2992.35,"{\""loyalty\"": \""15%\""}",102347,1,"""Asia""" +2023-01-31,84019,9852,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1662.79,{},192346,0,"""North America""" +2023-08-07,84020,3153,"[\""Tablet\"", \""Phone\""]",563.14,"{\"": \""15%\""}",28835,1,"""Asia""" +2024-12-19,84021,8581,"[\""Keyboard\"", \""Laptop\""]",1357.88,{},240310,0,"""Asia""" +2023-11-25,84022,5485,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2080.64,{},263575,1,"""North America""" +2024-09-02,84023,4802,"[\""Phone\""]",959.34,"{\"": \""9%\""}",228981,1,"""Asia""" +2024-05-24,84024,4383,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",352.07,{},209411,0,"""Africa""" +2023-01-05,84025,1031,"[\""Phone\"", \""Laptop\""]",1699.52,{},64911,0,"""Europe""" +2023-07-02,84026,9603,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4388.23,{},75610,0,"""South America""" +2024-01-21,84027,2753,"[\""Wireless Mouse\""]",2168.73,"{\"": \""5%\""}",241083,1,"""Africa""" +2024-07-19,84028,8048,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2468.67,"{\""promo\"": \""7%\""}",96046,1,"""Africa""" +2023-07-04,84029,7842,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2973.43,"{\"": \""16%\""}",281179,0,"""North America""" +2023-04-13,84030,2450,"[\""Laptop\"", \""Monitor\""]",1612.13,{},130369,0,"""South America""" +2023-07-27,84031,996,"[\""Monitor\""]",4836.73,{},187023,0,"""North America""" +2023-03-13,84032,1232,"[\""Phone\"", \""Tablet\""]",821.45,{},134423,1,"""Asia""" +2024-10-22,84033,8455,"[\""Wireless Mouse\"", \""Headphones\""]",2871.29,{},33530,0,"""Asia""" +2023-06-05,84034,1552,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1164.32,{},236552,0,"""North America""" +2024-01-21,84035,6664,"[\""Keyboard\""]",624.13,"{\""promo\"": \""22%\""}",78431,0,"""Asia""" +2024-02-22,84036,9187,"[\""Keyboard\"", \""Phone\""]",1130.13,"{\"": \""18%\""}",270844,1,"""South America""" +2024-08-25,84037,8164,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2539.3,"{\""loyalty\"": \""18%\""}",224106,0,"""Asia""" +2024-03-10,84038,3144,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4854.32,"{\"": \""15%\""}",113795,1,"""Africa""" +2024-11-01,84039,1793,"[\""Wireless Mouse\"", \""Headphones\""]",3152.56,{},223413,0,"""Africa""" +2023-03-25,84040,64,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2068.52,{},283828,0,"""South America""" +2024-02-05,84041,1363,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4319.86,"{\""loyalty\"": \""18%\""}",214806,0,"""Europe""" +2023-01-30,84042,4974,"[\""Headphones\""]",4282.41,"{\""promo\"": \""15%\""}",154321,0,"""Africa""" +2023-12-21,84043,5372,"[\""Charger\""]",2204.48,"{\""promo\"": \""9%\""}",87050,0,"""North America""" +2024-07-16,84044,1185,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4487.54,{},38099,0,"""Africa""" +2023-03-05,84045,3797,"[\""Laptop\""]",3285.69,"{\""seasonal\"": \""8%\""}",104686,0,"""Europe""" +2024-11-17,84046,4873,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3785.59,{},153499,1,"""North America""" +2024-06-10,84047,8476,"[\""Laptop\"", \""Headphones\""]",2740.87,"{\""loyalty\"": \""20%\""}",96196,0,"""South America""" +2023-09-07,84048,3071,"[\""Keyboard\"", \""Wireless Mouse\""]",841.07,{},147786,0,"""Europe""" +2023-07-09,84049,3253,"[\""Headphones\""]",4191.04,{},147970,0,"""Africa""" +2024-12-13,84050,1096,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3772.78,"{\"": \""16%\""}",37269,0,"""Asia""" +2023-04-16,84051,9640,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",899.85,{},282723,0,"""Asia""" +2023-09-27,84052,8092,"[\""Keyboard\"", \""Wireless Mouse\""]",3451.03,{},271248,1,"""Africa""" +2023-05-18,84053,7599,"[\""Headphones\""]",3668.58,"{\"": \""11%\""}",186845,0,"""Asia""" +2023-07-13,84054,5300,"[\""Tablet\"", \""Headphones\""]",430.78,{},130338,0,"""Asia""" +2023-05-30,84055,6171,"[\""Phone\""]",1802.27,{},282721,1,"""North America""" +2024-08-11,84056,6053,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3797.89,"{\""loyalty\"": \""5%\""}",164694,0,"""Europe""" +2023-05-22,84057,6538,"[\""Wireless Mouse\""]",348.38,{},241643,0,"""Africa""" +2024-07-07,84058,4578,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1861.57,"{\""loyalty\"": \""29%\""}",287662,0,"""Europe""" +2024-09-22,84059,7044,"[\""Wireless Mouse\"", \""Tablet\""]",174.98,{},216238,0,"""South America""" +2023-11-25,84060,828,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3289.75,{},185879,1,"""Europe""" +2023-04-18,84061,2323,"[\""Monitor\"", \""Tablet\""]",774.58,{},193102,1,"""South America""" +2023-10-14,84062,2053,"[\""Headphones\""]",3170.05,{},40461,1,"""Africa""" +2023-08-25,84063,504,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1070.43,"{\""seasonal\"": \""10%\""}",161504,1,"""South America""" +2024-06-26,84064,7194,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3572.19,{},100340,1,"""South America""" +2024-01-12,84065,86,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1638.55,"{\"": \""18%\""}",92773,1,"""South America""" +2024-01-24,84066,9813,"[\""Wireless Mouse\"", \""Monitor\""]",3268.56,"{\""loyalty\"": \""6%\""}",285020,0,"""Asia""" +2023-03-12,84067,4484,"[\""Keyboard\"", \""Monitor\""]",1677.99,{},232387,0,"""South America""" +2024-02-03,84068,2818,"[\""Headphones\""]",1306.54,"{\""promo\"": \""15%\""}",163550,1,"""Europe""" +2023-06-02,84069,9575,"[\""Keyboard\"", \""Headphones\""]",1667.56,{},238328,1,"""Europe""" +2023-05-19,84070,7635,"[\""Headphones\""]",2430.84,"{\""promo\"": \""17%\""}",167451,0,"""Europe""" +2024-02-23,84071,6225,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",733.03,"{\""seasonal\"": \""17%\""}",148450,1,"""North America""" +2024-11-19,84072,3138,"[\""Keyboard\""]",268.43,"{\""loyalty\"": \""21%\""}",259306,0,"""Africa""" +2024-03-08,84073,6047,"[\""Keyboard\""]",1448.63,{},163596,1,"""North America""" +2023-02-05,84074,570,"[\""Wireless Mouse\"", \""Keyboard\""]",1573.11,"{\""promo\"": \""19%\""}",257460,0,"""Asia""" +2023-07-15,84075,7022,"[\""Headphones\"", \""Wireless Mouse\""]",4739.54,{},251891,0,"""Asia""" +2024-01-23,84076,541,"[\""Keyboard\"", \""Tablet\""]",3741.81,{},127776,0,"""Africa""" +2024-05-07,84077,1598,"[\""Headphones\"", \""Monitor\""]",944.26,{},282672,1,"""Europe""" +2024-08-23,84078,3487,"[\""Charger\""]",2028.39,{},221991,1,"""North America""" +2023-11-21,84079,7057,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4959.04,{},72314,0,"""Africa""" +2024-12-14,84080,8617,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1839.07,"{\""promo\"": \""25%\""}",158027,0,"""Africa""" +2023-02-03,84081,5742,"[\""Keyboard\"", \""Tablet\""]",4507.67,"{\"": \""12%\""}",290986,1,"""Asia""" +2024-12-01,84082,1731,"[\""Monitor\""]",1593.75,"{\"": \""12%\""}",135091,0,"""Europe""" +2023-03-31,84083,1490,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1408.11,"{\""seasonal\"": \""21%\""}",273254,0,"""Asia""" +2023-12-06,84084,2534,"[\""Tablet\""]",2394.52,{},153448,0,"""Asia""" +2023-10-24,84085,8726,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3566.13,"{\"": \""9%\""}",289344,0,"""South America""" +2024-05-22,84086,2318,"[\""Phone\"", \""Keyboard\""]",685.22,{},266260,1,"""Europe""" +2024-12-15,84087,2642,"[\""Wireless Mouse\""]",2292.12,"{\""loyalty\"": \""25%\""}",68094,1,"""North America""" +2024-04-20,84088,741,"[\""Monitor\""]",2817.68,"{\""seasonal\"": \""15%\""}",262817,1,"""North America""" +2023-05-29,84089,2686,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3781.42,"{\""seasonal\"": \""23%\""}",278342,1,"""North America""" +2024-11-30,84090,1438,"[\""Monitor\"", \""Keyboard\""]",1934.22,{},296932,1,"""North America""" +2024-06-10,84091,1946,"[\""Wireless Mouse\"", \""Laptop\""]",3393.76,"{\"": \""13%\""}",214640,1,"""South America""" +2024-01-19,84092,9328,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2024.36,{},41939,1,"""Africa""" +2024-11-05,84093,263,"[\""Tablet\""]",1876.31,{},295233,1,"""North America""" +2023-02-11,84094,188,"[\""Laptop\"", \""Phone\""]",4516.39,{},19291,0,"""Europe""" +2024-10-18,84095,117,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2191.17,{},47165,1,"""Asia""" +2024-01-25,84096,9311,"[\""Monitor\"", \""Keyboard\""]",650.51,{},107677,0,"""North America""" +2023-02-20,84097,6233,"[\""Phone\"", \""Monitor\""]",1959.29,{},78447,1,"""Europe""" +2024-02-15,84098,1082,"[\""Wireless Mouse\"", \""Monitor\""]",3558.0,"{\""promo\"": \""30%\""}",17620,1,"""Asia""" +2023-12-25,84099,9347,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1895.18,"{\""loyalty\"": \""8%\""}",215302,0,"""North America""" +2023-07-07,84100,8243,"[\""Headphones\"", \""Laptop\""]",3847.23,{},6040,0,"""Asia""" +2024-02-07,84101,2685,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",662.4,{},220207,1,"""Asia""" +2023-08-15,84102,9205,"[\""Tablet\"", \""Keyboard\""]",4337.89,"{\"": \""24%\""}",59026,1,"""Asia""" +2023-11-16,84103,601,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4723.96,"{\""loyalty\"": \""18%\""}",293279,0,"""Africa""" +2024-05-30,84104,5527,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3210.6,{},261021,1,"""Europe""" +2024-10-21,84105,6584,"[\""Wireless Mouse\"", \""Monitor\""]",3396.88,"{\""seasonal\"": \""25%\""}",9289,0,"""South America""" +2023-05-07,84106,1251,"[\""Keyboard\""]",1811.45,{},74716,1,"""South America""" +2023-06-30,84107,342,"[\""Tablet\""]",2838.9,"{\""seasonal\"": \""25%\""}",269794,0,"""South America""" +2023-10-25,84108,190,"[\""Tablet\""]",3011.85,{},225915,0,"""Europe""" +2024-01-05,84109,6870,"[\""Headphones\""]",4542.6,{},258146,0,"""South America""" +2023-08-27,84110,7428,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",486.87,{},282260,0,"""South America""" +2023-02-27,84111,1032,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2114.33,{},179387,1,"""South America""" +2024-04-08,84112,8968,"[\""Charger\"", \""Monitor\""]",229.85,{},44803,1,"""Africa""" +2024-07-01,84113,7176,"[\""Charger\"", \""Monitor\""]",1925.22,{},184492,1,"""North America""" +2024-01-14,84114,4635,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4005.46,{},192051,1,"""Africa""" +2024-05-29,84115,9008,"[\""Keyboard\""]",4148.56,"{\""seasonal\"": \""29%\""}",172778,1,"""Asia""" +2023-05-01,84116,4882,"[\""Laptop\""]",1140.83,"{\""promo\"": \""30%\""}",249680,1,"""Asia""" +2023-09-10,84117,5868,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",3307.06,"{\""promo\"": \""11%\""}",195106,1,"""Africa""" +2023-09-08,84118,2031,"[\""Charger\"", \""Wireless Mouse\""]",1177.62,"{\"": \""18%\""}",97875,0,"""Africa""" +2024-10-24,84119,8070,"[\""Monitor\""]",4030.72,"{\""seasonal\"": \""24%\""}",28902,0,"""Africa""" +2024-10-01,84120,9232,"[\""Charger\"", \""Monitor\""]",4583.92,{},289412,1,"""Africa""" +2024-12-21,84121,8922,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1595.52,{},20626,1,"""Asia""" +2023-02-28,84122,7217,"[\""Wireless Mouse\"", \""Monitor\""]",2064.14,{},286669,1,"""South America""" +2024-06-21,84123,8011,"[\""Phone\"", \""Keyboard\""]",2443.31,{},293463,1,"""South America""" +2024-06-21,84124,4292,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",4050.36,"{\""seasonal\"": \""30%\""}",139838,1,"""Europe""" +2024-02-07,84125,7578,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4095.22,{},269731,1,"""South America""" +2024-09-13,84126,4875,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3733.53,{},176954,0,"""Asia""" +2023-01-29,84127,390,"[\""Wireless Mouse\""]",3106.48,{},122716,0,"""South America""" +2024-08-07,84128,7270,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",391.87,{},179315,0,"""North America""" +2023-04-11,84129,8220,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",335.23,{},153256,0,"""Europe""" +2024-04-06,84130,1084,"[\""Laptop\"", \""Wireless Mouse\""]",2533.03,{},276232,0,"""Asia""" +2023-10-12,84131,9560,"[\""Phone\""]",1244.55,{},272822,1,"""North America""" +2023-10-30,84132,7977,"[\""Phone\""]",4803.92,"{\"": \""17%\""}",125091,1,"""Africa""" +2023-05-21,84133,2278,"[\""Keyboard\"", \""Phone\""]",2156.05,{},171179,0,"""Africa""" +2023-10-03,84134,3658,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2254.38,"{\"": \""12%\""}",21336,1,"""Africa""" +2024-03-05,84135,4115,"[\""Tablet\""]",314.72,"{\""loyalty\"": \""20%\""}",165881,1,"""North America""" +2023-07-19,84136,3399,"[\""Charger\"", \""Laptop\""]",1108.18,"{\""loyalty\"": \""26%\""}",257823,0,"""Asia""" +2024-10-14,84137,3553,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2967.16,"{\"": \""17%\""}",49562,1,"""Europe""" +2023-12-25,84138,6169,"[\""Monitor\""]",751.27,"{\""seasonal\"": \""29%\""}",26510,0,"""Europe""" +2024-06-15,84139,511,"[\""Phone\""]",4008.46,{},175187,1,"""Asia""" +2023-07-27,84140,7297,"[\""Tablet\"", \""Wireless Mouse\""]",796.17,{},27794,1,"""Europe""" +2024-01-23,84141,160,"[\""Headphones\""]",198.62,"{\""seasonal\"": \""13%\""}",260840,0,"""Africa""" +2024-12-30,84142,5854,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4286.49,{},282243,1,"""Asia""" +2023-10-05,84143,2675,"[\""Headphones\""]",4745.6,"{\"": \""7%\""}",69410,0,"""Africa""" +2023-02-22,84144,8478,"[\""Phone\"", \""Laptop\""]",1550.29,{},48429,1,"""Europe""" +2024-05-30,84145,6579,"[\""Charger\"", \""Phone\""]",3701.34,"{\""loyalty\"": \""23%\""}",230705,1,"""Africa""" +2024-07-25,84146,6217,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3290.16,{},197511,0,"""South America""" +2024-12-14,84147,1122,"[\""Charger\""]",4246.56,{},244322,0,"""Africa""" +2024-04-15,84148,3805,"[\""Laptop\""]",2083.63,{},72387,0,"""North America""" +2023-07-14,84149,7611,"[\""Phone\"", \""Keyboard\""]",1026.76,"{\"": \""22%\""}",121383,1,"""Asia""" +2024-11-22,84150,1297,"[\""Headphones\""]",3955.29,"{\""seasonal\"": \""12%\""}",279726,0,"""Africa""" +2024-01-26,84151,3414,"[\""Keyboard\"", \""Tablet\""]",364.91,"{\""loyalty\"": \""8%\""}",6226,1,"""North America""" +2024-04-12,84152,3580,"[\""Tablet\""]",2826.69,{},163567,0,"""North America""" +2023-11-14,84153,5065,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3118.98,"{\"": \""29%\""}",90374,0,"""Europe""" +2023-04-11,84154,8400,"[\""Charger\""]",4948.19,{},37906,1,"""Asia""" +2024-09-01,84155,886,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3778.97,"{\""promo\"": \""18%\""}",1590,1,"""Europe""" +2024-06-21,84156,9981,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3880.77,{},160365,0,"""North America""" +2023-02-23,84157,8232,"[\""Monitor\""]",4325.58,{},217243,1,"""South America""" +2023-01-25,84158,5043,"[\""Monitor\""]",198.7,"{\""seasonal\"": \""28%\""}",155060,1,"""Africa""" +2023-12-26,84159,4382,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",964.39,{},222036,1,"""South America""" +2024-12-16,84160,8154,"[\""Laptop\"", \""Charger\""]",312.78,"{\""seasonal\"": \""10%\""}",9387,0,"""Africa""" +2024-01-05,84161,849,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",701.92,{},102348,0,"""North America""" +2024-12-05,84162,3525,"[\""Monitor\"", \""Keyboard\""]",3856.58,"{\"": \""24%\""}",181753,1,"""South America""" +2024-10-17,84163,3875,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3962.37,{},262803,1,"""Asia""" +2023-04-09,84164,2451,"[\""Headphones\""]",4730.25,{},229568,1,"""Africa""" +2023-11-19,84165,7922,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2055.48,{},42884,0,"""Europe""" +2023-06-25,84166,6736,"[\""Tablet\"", \""Phone\""]",548.92,{},162591,0,"""South America""" +2024-10-18,84167,4025,"[\""Headphones\"", \""Laptop\""]",288.32,{},216309,1,"""Africa""" +2024-08-09,84168,1281,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1381.69,{},288168,0,"""Europe""" +2023-01-09,84169,6068,"[\""Tablet\""]",2971.99,{},27968,0,"""Asia""" +2023-02-17,84170,31,"[\""Phone\""]",2509.51,{},265568,1,"""South America""" +2024-12-03,84171,1534,"[\""Charger\""]",1330.7,"{\"": \""29%\""}",180192,1,"""North America""" +2023-09-17,84172,8704,"[\""Wireless Mouse\"", \""Headphones\""]",2561.01,{},54365,0,"""Asia""" +2024-09-29,84173,3074,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",601.33,"{\""loyalty\"": \""25%\""}",177715,0,"""Asia""" +2024-11-25,84174,5427,"[\""Wireless Mouse\"", \""Laptop\""]",3262.94,"{\""loyalty\"": \""29%\""}",134196,1,"""Asia""" +2023-01-21,84175,9889,"[\""Charger\""]",2346.51,"{\""seasonal\"": \""30%\""}",30546,0,"""Asia""" +2023-03-24,84176,6344,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",863.35,"{\""promo\"": \""16%\""}",130538,1,"""South America""" +2023-09-23,84177,8314,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1747.52,"{\""promo\"": \""14%\""}",53666,1,"""Europe""" +2024-03-23,84178,7979,"[\""Wireless Mouse\"", \""Charger\""]",4839.1,{},246965,0,"""Asia""" +2023-09-29,84179,2073,"[\""Tablet\"", \""Phone\""]",3584.89,"{\""seasonal\"": \""6%\""}",214137,0,"""Europe""" +2023-06-29,84180,1549,"[\""Phone\""]",515.93,{},13172,1,"""Asia""" +2024-01-30,84181,5545,"[\""Headphones\""]",400.59,{},288611,1,"""North America""" +2024-04-07,84182,6626,"[\""Charger\"", \""Keyboard\""]",119.17,{},261958,0,"""Africa""" +2024-01-09,84183,3634,"[\""Keyboard\""]",773.54,"{\""loyalty\"": \""17%\""}",212900,0,"""South America""" +2024-08-17,84184,6996,"[\""Laptop\"", \""Phone\""]",4825.53,"{\""promo\"": \""5%\""}",205250,0,"""North America""" +2024-05-14,84185,1350,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4768.88,{},185480,0,"""Asia""" +2024-07-21,84186,3826,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2213.1,{},176760,1,"""Asia""" +2024-05-26,84187,8085,"[\""Tablet\"", \""Phone\""]",892.83,"{\""loyalty\"": \""20%\""}",277592,0,"""North America""" +2024-01-10,84188,8210,"[\""Monitor\"", \""Tablet\""]",1684.52,"{\""promo\"": \""7%\""}",69312,0,"""Asia""" +2023-06-05,84189,9518,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2159.62,{},296682,0,"""Africa""" +2023-06-15,84190,5755,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1845.77,"{\""seasonal\"": \""22%\""}",209547,1,"""Asia""" +2023-10-03,84191,7994,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",495.26,{},207092,0,"""Europe""" +2023-12-18,84192,9003,"[\""Keyboard\"", \""Monitor\""]",72.93,{},149382,0,"""Asia""" +2023-05-31,84193,8267,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3160.97,{},228551,0,"""Europe""" +2024-04-23,84194,9359,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2059.89,{},272817,0,"""Asia""" +2024-11-28,84195,4805,"[\""Keyboard\""]",629.08,{},44030,1,"""Asia""" +2024-10-23,84196,314,"[\""Monitor\"", \""Tablet\""]",3944.22,"{\"": \""30%\""}",128053,0,"""Europe""" +2023-09-07,84197,8863,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1647.39,"{\""loyalty\"": \""24%\""}",237708,0,"""North America""" +2023-03-11,84198,3201,"[\""Tablet\"", \""Monitor\""]",3559.38,{},255226,0,"""Africa""" +2023-03-19,84199,33,"[\""Tablet\"", \""Headphones\""]",2366.73,{},131348,1,"""Europe""" +2024-10-09,84200,77,"[\""Laptop\""]",1414.88,{},17379,0,"""Asia""" +2023-12-04,84201,6049,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2370.92,"{\""loyalty\"": \""29%\""}",63545,0,"""Asia""" +2024-04-13,84202,4334,"[\""Wireless Mouse\""]",3860.89,{},158489,0,"""Asia""" +2023-11-09,84203,5268,"[\""Phone\""]",2651.92,"{\""loyalty\"": \""23%\""}",196223,0,"""Asia""" +2024-08-15,84204,5778,"[\""Charger\"", \""Tablet\""]",1854.05,"{\"": \""16%\""}",180252,0,"""Europe""" +2024-07-02,84205,198,"[\""Charger\""]",3316.55,"{\""promo\"": \""13%\""}",27440,1,"""Europe""" +2024-11-27,84206,3480,"[\""Headphones\""]",1367.06,"{\"": \""7%\""}",153934,0,"""Europe""" +2024-07-01,84207,3109,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",938.75,"{\""loyalty\"": \""15%\""}",171436,1,"""Africa""" +2024-08-23,84208,4894,"[\""Headphones\"", \""Charger\""]",2642.45,"{\""promo\"": \""8%\""}",237225,0,"""North America""" +2023-09-07,84209,482,"[\""Laptop\""]",319.83,{},15701,0,"""North America""" +2024-09-21,84210,8895,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",965.8,"{\""seasonal\"": \""18%\""}",210103,1,"""Asia""" +2024-11-29,84211,5540,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",776.52,{},182155,1,"""North America""" +2023-06-10,84212,8550,"[\""Keyboard\""]",1481.23,"{\""loyalty\"": \""26%\""}",90544,0,"""Europe""" +2023-01-01,84213,9440,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1796.57,{},134414,0,"""South America""" +2023-08-05,84214,3109,"[\""Headphones\""]",2909.84,"{\""promo\"": \""15%\""}",159603,0,"""North America""" +2024-10-09,84215,1668,"[\""Tablet\""]",675.12,{},166283,1,"""Africa""" +2024-08-26,84216,3798,"[\""Monitor\""]",2219.86,{},299679,1,"""South America""" +2023-03-25,84217,3825,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2425.94,"{\""seasonal\"": \""10%\""}",207379,0,"""Africa""" +2023-01-17,84218,2791,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2932.02,{},42267,0,"""South America""" +2023-01-24,84219,1752,"[\""Phone\""]",4028.84,{},196458,0,"""Europe""" +2024-08-29,84220,9604,"[\""Monitor\"", \""Wireless Mouse\""]",2879.82,{},24462,0,"""Europe""" +2023-08-11,84221,9890,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1530.84,{},231319,1,"""South America""" +2023-08-18,84222,1406,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1840.79,"{\""seasonal\"": \""17%\""}",62030,1,"""North America""" +2024-01-15,84223,6486,"[\""Wireless Mouse\"", \""Monitor\""]",73.14,{},290629,1,"""South America""" +2023-06-06,84224,8597,"[\""Wireless Mouse\""]",4099.42,"{\""loyalty\"": \""25%\""}",189167,0,"""North America""" +2024-07-09,84225,2529,"[\""Tablet\""]",3468.81,"{\""seasonal\"": \""11%\""}",33088,1,"""Asia""" +2024-08-17,84226,237,"[\""Tablet\"", \""Phone\""]",3466.29,"{\""loyalty\"": \""18%\""}",165225,1,"""Africa""" +2023-07-14,84227,4545,"[\""Tablet\""]",277.54,"{\""seasonal\"": \""14%\""}",65743,1,"""South America""" +2023-02-10,84228,4264,"[\""Tablet\""]",923.32,"{\""loyalty\"": \""12%\""}",238629,0,"""Asia""" +2023-05-08,84229,628,"[\""Keyboard\"", \""Charger\""]",2733.79,{},61486,1,"""North America""" +2023-03-03,84230,5280,"[\""Laptop\""]",3318.54,{},262861,0,"""North America""" +2024-10-07,84231,3136,"[\""Monitor\""]",183.29,{},92686,1,"""Europe""" +2024-03-20,84232,2461,"[\""Headphones\"", \""Charger\""]",573.33,"{\""seasonal\"": \""17%\""}",275685,0,"""South America""" +2023-12-13,84233,6388,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1824.53,{},266343,0,"""Africa""" +2024-10-31,84234,3181,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3316.89,{},243792,0,"""North America""" +2024-04-24,84235,6010,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3777.14,{},117747,1,"""Europe""" +2023-01-12,84236,9817,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1602.82,"{\""promo\"": \""25%\""}",194295,1,"""South America""" +2023-10-21,84237,2437,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",1416.14,{},218308,0,"""Asia""" +2024-04-26,84238,5872,"[\""Charger\"", \""Headphones\""]",4047.68,{},145534,0,"""Asia""" +2023-10-13,84239,3358,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4454.2,"{\"": \""15%\""}",249344,0,"""Africa""" +2023-01-24,84240,8586,"[\""Laptop\"", \""Wireless Mouse\""]",3225.55,{},213937,1,"""Asia""" +2023-11-29,84241,293,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1133.93,"{\"": \""25%\""}",146937,1,"""North America""" +2023-07-30,84242,4315,"[\""Phone\"", \""Tablet\""]",3576.11,{},72816,1,"""Europe""" +2023-01-21,84243,8021,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3583.82,"{\""loyalty\"": \""29%\""}",258167,1,"""South America""" +2023-09-26,84244,3496,"[\""Wireless Mouse\""]",1718.86,{},194123,0,"""Europe""" +2023-01-10,84245,1393,"[\""Tablet\""]",551.2,"{\"": \""5%\""}",88499,1,"""Africa""" +2024-07-02,84246,1457,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2729.84,{},50419,1,"""South America""" +2023-11-25,84247,8785,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1743.54,{},192623,1,"""Asia""" +2024-12-15,84248,7911,"[\""Keyboard\"", \""Wireless Mouse\""]",891.43,"{\""seasonal\"": \""14%\""}",295378,1,"""South America""" +2023-12-26,84249,3606,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3549.0,{},88267,1,"""South America""" +2024-05-07,84250,7334,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2673.93,"{\""promo\"": \""20%\""}",238331,0,"""Africa""" +2023-10-15,84251,8105,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",236.48,{},80415,0,"""Asia""" +2024-01-12,84252,8830,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4961.87,{},168869,0,"""Europe""" +2024-08-11,84253,5786,"[\""Monitor\""]",243.25,"{\""promo\"": \""14%\""}",124935,1,"""South America""" +2024-01-19,84254,1839,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3344.59,{},164908,0,"""Europe""" +2023-02-21,84255,9089,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2711.9,"{\"": \""27%\""}",298958,1,"""North America""" +2024-03-03,84256,7341,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4864.74,"{\""loyalty\"": \""6%\""}",254398,1,"""Asia""" +2024-11-11,84257,7505,"[\""Phone\""]",3171.91,"{\""promo\"": \""5%\""}",124487,1,"""North America""" +2023-09-22,84258,5246,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",762.48,"{\"": \""7%\""}",27504,0,"""North America""" +2024-03-31,84259,5696,"[\""Laptop\""]",2323.23,{},158165,0,"""South America""" +2023-01-17,84260,2145,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",273.92,"{\""loyalty\"": \""14%\""}",41359,1,"""Europe""" +2023-10-10,84261,5795,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2833.43,"{\"": \""6%\""}",224928,1,"""South America""" +2024-02-15,84262,1647,"[\""Keyboard\""]",4620.85,{},281664,0,"""Asia""" +2024-01-09,84263,6124,"[\""Wireless Mouse\"", \""Monitor\""]",2706.3,"{\"": \""11%\""}",91450,0,"""North America""" +2024-09-06,84264,4651,"[\""Tablet\""]",4685.61,"{\"": \""25%\""}",94072,0,"""South America""" +2024-08-26,84265,7785,"[\""Headphones\"", \""Keyboard\""]",1357.58,"{\""seasonal\"": \""10%\""}",263820,1,"""North America""" +2024-08-07,84266,902,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1551.97,{},89625,1,"""Africa""" +2023-08-21,84267,9902,"[\""Headphones\""]",4775.47,{},66448,0,"""Africa""" +2023-08-14,84268,1806,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1866.41,"{\""seasonal\"": \""26%\""}",250553,1,"""Europe""" +2024-08-26,84269,1601,"[\""Wireless Mouse\"", \""Laptop\""]",4962.28,{},191902,1,"""Asia""" +2024-12-14,84270,2415,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3506.9,{},133157,1,"""South America""" +2023-11-02,84271,1387,"[\""Tablet\""]",631.95,{},85380,0,"""North America""" +2024-11-30,84272,347,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4480.62,{},69568,0,"""Asia""" +2023-08-08,84273,5530,"[\""Charger\"", \""Monitor\""]",1175.55,{},108530,0,"""Asia""" +2024-05-01,84274,21,"[\""Phone\"", \""Keyboard\""]",2866.15,"{\""promo\"": \""10%\""}",53007,1,"""Africa""" +2023-04-30,84275,2973,"[\""Phone\"", \""Wireless Mouse\""]",1202.94,{},18293,0,"""South America""" +2024-11-11,84276,3284,"[\""Charger\"", \""Laptop\""]",2713.38,{},148934,0,"""Africa""" +2024-03-17,84277,3301,"[\""Charger\"", \""Laptop\""]",1650.86,{},225947,1,"""Africa""" +2024-01-08,84278,419,"[\""Charger\"", \""Wireless Mouse\""]",158.21,"{\""loyalty\"": \""28%\""}",284299,0,"""North America""" +2023-03-15,84279,2896,"[\""Headphones\""]",2396.21,{},236297,0,"""Europe""" +2023-10-04,84280,5205,"[\""Keyboard\""]",1077.16,"{\""promo\"": \""28%\""}",186754,0,"""Africa""" +2023-03-19,84281,798,"[\""Keyboard\"", \""Headphones\""]",3204.84,"{\""loyalty\"": \""17%\""}",166667,0,"""Europe""" +2023-02-02,84282,704,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3081.85,{},261421,0,"""Europe""" +2024-01-23,84283,6787,"[\""Phone\"", \""Monitor\""]",1411.07,"{\""loyalty\"": \""19%\""}",105550,0,"""Africa""" +2024-07-14,84284,3005,"[\""Monitor\""]",145.38,{},216028,0,"""Asia""" +2023-08-26,84285,6366,"[\""Charger\"", \""Monitor\""]",2267.04,{},46449,1,"""South America""" +2023-11-01,84286,254,"[\""Wireless Mouse\"", \""Charger\""]",2598.32,{},19557,1,"""Africa""" +2023-04-06,84287,5570,"[\""Charger\""]",3056.21,"{\"": \""28%\""}",255138,0,"""South America""" +2023-03-19,84288,7178,"[\""Laptop\"", \""Tablet\""]",209.45,{},283937,1,"""South America""" +2023-11-18,84289,8243,"[\""Headphones\"", \""Tablet\""]",170.73,{},164039,0,"""South America""" +2023-06-19,84290,1360,"[\""Wireless Mouse\""]",1281.2,{},40565,1,"""North America""" +2023-04-13,84291,849,"[\""Laptop\""]",526.57,"{\"": \""12%\""}",101497,0,"""Europe""" +2023-03-20,84292,2806,"[\""Keyboard\""]",1244.64,"{\""loyalty\"": \""19%\""}",35655,0,"""South America""" +2023-05-05,84293,5657,"[\""Monitor\"", \""Tablet\""]",336.73,{},293632,0,"""Europe""" +2023-09-16,84294,2671,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",162.32,{},260534,1,"""Europe""" +2024-12-21,84295,1136,"[\""Phone\""]",4005.53,"{\""promo\"": \""16%\""}",157983,0,"""South America""" +2023-04-04,84296,1485,"[\""Keyboard\"", \""Phone\""]",709.56,{},266683,1,"""Europe""" +2023-06-04,84297,6149,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4618.57,"{\""seasonal\"": \""7%\""}",36740,1,"""North America""" +2024-10-14,84298,8203,"[\""Laptop\"", \""Monitor\""]",2911.89,{},122057,1,"""Europe""" +2024-09-28,84299,4610,"[\""Headphones\"", \""Phone\""]",1240.71,"{\""promo\"": \""9%\""}",112830,0,"""Asia""" +2023-04-04,84300,5951,"[\""Laptop\"", \""Keyboard\""]",4477.73,"{\""loyalty\"": \""20%\""}",289771,0,"""North America""" +2024-08-23,84301,9119,"[\""Tablet\""]",208.45,{},21713,1,"""Africa""" +2023-08-04,84302,2036,"[\""Wireless Mouse\"", \""Laptop\""]",2166.26,"{\""promo\"": \""23%\""}",28300,0,"""Europe""" +2024-10-31,84303,5953,"[\""Headphones\""]",1509.8,{},252133,1,"""Africa""" +2023-10-12,84304,8208,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",522.1,{},181231,1,"""Asia""" +2023-06-20,84305,2997,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3302.28,"{\""promo\"": \""15%\""}",13472,0,"""Asia""" +2024-04-09,84306,1321,"[\""Monitor\""]",745.69,{},194864,1,"""South America""" +2024-09-12,84307,4823,"[\""Phone\""]",4670.84,"{\""seasonal\"": \""14%\""}",106050,0,"""Asia""" +2023-02-27,84308,9279,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",928.82,{},265679,1,"""Africa""" +2023-07-09,84309,4239,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4719.55,"{\"": \""28%\""}",58056,0,"""Europe""" +2023-04-12,84310,9474,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",60.37,{},268780,0,"""North America""" +2023-11-19,84311,466,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1859.04,"{\""loyalty\"": \""28%\""}",70279,1,"""South America""" +2024-07-27,84312,2398,"[\""Phone\"", \""Charger\"", \""Tablet\""]",1902.19,{},116731,0,"""North America""" +2023-04-11,84313,9039,"[\""Tablet\""]",4975.23,"{\""seasonal\"": \""5%\""}",53501,1,"""North America""" +2023-05-10,84314,100,"[\""Tablet\"", \""Monitor\""]",1248.43,"{\""promo\"": \""13%\""}",122827,0,"""Africa""" +2023-07-22,84315,1361,"[\""Headphones\"", \""Monitor\""]",1050.35,"{\"": \""12%\""}",226633,0,"""South America""" +2023-12-15,84316,5868,"[\""Tablet\"", \""Charger\""]",1213.92,{},178862,0,"""Africa""" +2024-06-03,84317,408,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4880.07,"{\""loyalty\"": \""26%\""}",37865,0,"""Asia""" +2024-03-18,84318,5848,"[\""Phone\""]",584.81,{},247672,1,"""Africa""" +2023-07-04,84319,344,"[\""Headphones\""]",3301.8,{},31134,0,"""Europe""" +2023-05-25,84320,1488,"[\""Charger\""]",4645.08,"{\""seasonal\"": \""13%\""}",155883,0,"""Africa""" +2023-09-20,84321,2466,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",1740.39,"{\""loyalty\"": \""11%\""}",247882,0,"""South America""" +2024-12-04,84322,5350,"[\""Charger\"", \""Phone\"", \""Laptop\""]",503.93,{},172036,0,"""Africa""" +2023-12-04,84323,9400,"[\""Monitor\"", \""Laptop\""]",4527.28,"{\""promo\"": \""11%\""}",206353,1,"""Europe""" +2024-11-27,84324,8372,"[\""Headphones\"", \""Monitor\""]",3763.72,{},221231,1,"""North America""" +2023-02-22,84325,4058,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",501.29,{},36880,1,"""Asia""" +2024-12-06,84326,3370,"[\""Keyboard\""]",2879.05,{},287713,1,"""South America""" +2023-12-19,84327,3925,"[\""Wireless Mouse\"", \""Phone\""]",2403.99,{},205516,0,"""Europe""" +2024-01-23,84328,4922,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3549.1,{},189416,1,"""Asia""" +2024-07-12,84329,7867,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4884.34,{},121638,1,"""Asia""" +2023-05-14,84330,941,"[\""Monitor\"", \""Laptop\""]",4876.76,"{\"": \""17%\""}",173311,0,"""Asia""" +2024-06-10,84331,5823,"[\""Wireless Mouse\""]",1087.27,{},272081,0,"""North America""" +2023-04-20,84332,6799,"[\""Phone\"", \""Charger\""]",4024.0,"{\""loyalty\"": \""29%\""}",148377,1,"""Africa""" +2024-09-10,84333,9933,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2103.31,{},130551,0,"""South America""" +2023-01-13,84334,279,"[\""Headphones\"", \""Tablet\""]",3416.59,{},150310,0,"""North America""" +2023-07-09,84335,2513,"[\""Laptop\""]",2032.72,{},62865,0,"""Asia""" +2024-03-09,84336,7946,"[\""Tablet\"", \""Wireless Mouse\""]",3580.7,{},11812,0,"""South America""" +2023-09-12,84337,3492,"[\""Headphones\"", \""Tablet\""]",1054.94,{},262433,1,"""North America""" +2023-01-19,84338,6903,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1913.72,{},191150,1,"""South America""" +2024-08-13,84339,6483,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4774.29,"{\"": \""16%\""}",116910,1,"""Africa""" +2023-12-14,84340,2866,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4180.56,{},37829,0,"""North America""" +2023-07-15,84341,5644,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",736.06,{},206055,0,"""Africa""" +2024-06-18,84342,6503,"[\""Monitor\""]",4872.66,"{\""loyalty\"": \""30%\""}",235385,0,"""Asia""" +2023-11-27,84343,7257,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3910.63,{},39433,1,"""Europe""" +2024-03-01,84344,2259,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1139.15,"{\""promo\"": \""14%\""}",212074,0,"""South America""" +2023-12-08,84345,3553,"[\""Keyboard\""]",1299.41,"{\""seasonal\"": \""9%\""}",293339,1,"""Europe""" +2023-05-25,84346,4087,"[\""Laptop\"", \""Headphones\""]",417.27,"{\""loyalty\"": \""10%\""}",57923,1,"""South America""" +2023-07-08,84347,3349,"[\""Charger\""]",3790.84,{},72641,0,"""Asia""" +2024-03-29,84348,321,"[\""Monitor\""]",583.11,{},193829,1,"""South America""" +2024-03-05,84349,5250,"[\""Tablet\""]",4314.29,{},140589,0,"""North America""" +2023-09-01,84350,8618,"[\""Headphones\"", \""Keyboard\""]",2843.44,{},125706,0,"""South America""" +2023-01-15,84351,8724,"[\""Headphones\""]",2804.2,"{\""promo\"": \""7%\""}",111019,0,"""Europe""" +2023-10-27,84352,5983,"[\""Monitor\""]",3483.05,{},233654,1,"""Asia""" +2024-02-08,84353,2154,"[\""Monitor\""]",1892.22,"{\"": \""8%\""}",143279,0,"""South America""" +2023-01-06,84354,8047,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",408.97,{},58978,1,"""Africa""" +2024-12-30,84355,9735,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",239.45,{},221141,0,"""Europe""" +2023-01-28,84356,2962,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1351.41,{},115595,1,"""Europe""" +2024-03-01,84357,4919,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3602.34,{},41208,1,"""North America""" +2023-06-26,84358,9274,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",4122.49,"{\"": \""19%\""}",187121,0,"""Africa""" +2023-12-14,84359,1133,"[\""Charger\""]",4038.6,"{\""promo\"": \""14%\""}",163289,0,"""Europe""" +2024-06-23,84360,4183,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3470.94,{},169243,0,"""North America""" +2023-06-07,84361,7571,"[\""Monitor\"", \""Laptop\""]",3293.27,"{\""loyalty\"": \""8%\""}",144164,1,"""Europe""" +2023-10-19,84362,2729,"[\""Keyboard\""]",3048.4,"{\""loyalty\"": \""26%\""}",247606,0,"""South America""" +2024-02-04,84363,2691,"[\""Wireless Mouse\"", \""Monitor\""]",1725.75,"{\""loyalty\"": \""19%\""}",233420,1,"""Europe""" +2024-06-08,84364,8349,"[\""Keyboard\""]",2459.69,"{\""loyalty\"": \""19%\""}",146388,0,"""Asia""" +2023-04-12,84365,9219,"[\""Monitor\""]",1668.61,"{\"": \""30%\""}",231624,1,"""South America""" +2023-06-20,84366,6797,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3485.26,"{\"": \""7%\""}",3841,0,"""Asia""" +2023-03-25,84367,3602,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1569.33,{},216972,1,"""North America""" +2024-01-12,84368,6258,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4932.36,{},132968,0,"""Asia""" +2024-03-28,84369,824,"[\""Monitor\""]",2488.33,"{\"": \""21%\""}",84482,0,"""North America""" +2023-01-27,84370,2028,"[\""Keyboard\"", \""Headphones\""]",2268.13,{},286827,1,"""North America""" +2023-06-02,84371,9620,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",385.92,{},209284,1,"""South America""" +2023-08-15,84372,1947,"[\""Laptop\""]",1603.99,"{\""loyalty\"": \""16%\""}",174911,1,"""Asia""" +2024-01-17,84373,4237,"[\""Phone\"", \""Wireless Mouse\""]",550.72,{},259115,0,"""South America""" +2024-12-03,84374,3857,"[\""Phone\"", \""Laptop\""]",940.1,{},28027,1,"""Africa""" +2024-12-02,84375,6275,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2944.38,{},40012,1,"""North America""" +2023-12-14,84376,6926,"[\""Keyboard\""]",1749.7,"{\""seasonal\"": \""23%\""}",73773,0,"""South America""" +2023-03-17,84377,5184,"[\""Laptop\""]",2169.2,"{\""promo\"": \""29%\""}",241486,1,"""Africa""" +2024-02-05,84378,6699,"[\""Keyboard\"", \""Wireless Mouse\""]",4680.4,"{\""loyalty\"": \""5%\""}",188520,0,"""North America""" +2023-07-06,84379,5252,"[\""Phone\"", \""Laptop\""]",1445.42,{},93218,1,"""South America""" +2024-04-28,84380,2101,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",263.15,"{\""seasonal\"": \""14%\""}",296479,1,"""North America""" +2024-07-14,84381,2291,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",379.09,"{\"": \""17%\""}",287735,0,"""Africa""" +2023-05-12,84382,2208,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",289.65,"{\"": \""23%\""}",131485,1,"""Africa""" +2024-02-01,84383,6971,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",643.99,"{\""promo\"": \""7%\""}",143878,0,"""Africa""" +2023-05-12,84384,7041,"[\""Keyboard\"", \""Tablet\""]",4888.65,"{\""loyalty\"": \""8%\""}",39777,0,"""Europe""" +2024-04-01,84385,6706,"[\""Charger\""]",137.19,"{\"": \""5%\""}",26752,0,"""Asia""" +2024-07-22,84386,9006,"[\""Wireless Mouse\"", \""Keyboard\""]",235.25,"{\"": \""21%\""}",204229,1,"""Africa""" +2024-09-15,84387,8344,"[\""Laptop\""]",3438.78,"{\"": \""16%\""}",232435,0,"""Africa""" +2024-12-20,84388,4151,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",214.39,{},26025,1,"""Europe""" +2023-05-08,84389,7411,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",932.94,"{\"": \""24%\""}",162906,1,"""South America""" +2023-02-24,84390,2231,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4867.54,"{\""seasonal\"": \""5%\""}",267933,0,"""South America""" +2023-06-05,84391,1015,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2380.58,"{\"": \""28%\""}",297295,1,"""North America""" +2024-10-22,84392,923,"[\""Charger\""]",2229.02,"{\""promo\"": \""16%\""}",143645,0,"""Asia""" +2023-06-14,84393,2610,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4524.24,{},46855,1,"""North America""" +2024-02-12,84394,1215,"[\""Laptop\"", \""Tablet\""]",2133.22,{},131273,1,"""Asia""" +2023-02-20,84395,1685,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2806.43,{},69965,0,"""Africa""" +2024-05-25,84396,7245,"[\""Monitor\""]",4048.62,"{\""seasonal\"": \""26%\""}",95333,1,"""North America""" +2023-06-22,84397,4755,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4659.53,{},121738,0,"""Africa""" +2024-10-16,84398,7571,"[\""Phone\""]",2322.76,{},130530,1,"""Asia""" +2024-07-09,84399,6898,"[\""Charger\""]",156.08,"{\""seasonal\"": \""23%\""}",13625,1,"""Asia""" +2023-04-01,84400,9944,"[\""Monitor\""]",1246.44,"{\""promo\"": \""7%\""}",245803,1,"""South America""" +2023-07-01,84401,8833,"[\""Tablet\""]",3895.69,"{\""seasonal\"": \""10%\""}",29127,0,"""North America""" +2023-06-21,84402,5202,"[\""Charger\"", \""Tablet\""]",3681.2,"{\""loyalty\"": \""29%\""}",68996,0,"""Africa""" +2024-09-08,84403,6071,"[\""Charger\"", \""Wireless Mouse\""]",4153.7,{},116642,0,"""Asia""" +2024-03-23,84404,6739,"[\""Tablet\"", \""Laptop\""]",1004.11,{},64942,0,"""Europe""" +2024-07-29,84405,2847,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3288.42,{},69043,1,"""Asia""" +2024-06-03,84406,9849,"[\""Wireless Mouse\""]",4823.52,"{\""promo\"": \""21%\""}",64155,0,"""Europe""" +2023-08-24,84407,6432,"[\""Monitor\"", \""Phone\""]",1166.79,{},18236,0,"""North America""" +2024-05-06,84408,571,"[\""Phone\"", \""Keyboard\""]",2080.08,"{\""promo\"": \""16%\""}",236077,1,"""Asia""" +2024-12-25,84409,8297,"[\""Keyboard\"", \""Tablet\""]",3570.89,"{\""loyalty\"": \""13%\""}",100499,1,"""Asia""" +2023-04-17,84410,1908,"[\""Phone\"", \""Headphones\""]",2736.08,"{\"": \""26%\""}",48429,0,"""Asia""" +2023-02-01,84411,4641,"[\""Keyboard\"", \""Headphones\""]",4027.17,{},242512,0,"""Africa""" +2023-06-11,84412,8421,"[\""Phone\""]",2898.43,"{\""seasonal\"": \""6%\""}",85364,0,"""South America""" +2023-02-27,84413,316,"[\""Charger\"", \""Wireless Mouse\""]",2020.45,{},28721,0,"""Africa""" +2023-11-02,84414,6061,"[\""Charger\""]",3449.04,{},8256,1,"""North America""" +2023-04-14,84415,6444,"[\""Wireless Mouse\"", \""Phone\""]",2415.06,{},160500,0,"""South America""" +2024-08-23,84416,6636,"[\""Phone\""]",2713.07,"{\""promo\"": \""12%\""}",7758,1,"""North America""" +2023-05-12,84417,6383,"[\""Tablet\""]",1161.74,"{\"": \""5%\""}",82515,0,"""Europe""" +2024-04-04,84418,1122,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2436.04,{},96770,1,"""Europe""" +2024-03-24,84419,1371,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3732.66,"{\"": \""8%\""}",51424,1,"""Europe""" +2023-07-24,84420,9851,"[\""Laptop\""]",3603.25,{},8713,1,"""Africa""" +2023-03-10,84421,4454,"[\""Phone\""]",453.74,{},197566,1,"""Europe""" +2023-07-12,84422,9433,"[\""Headphones\""]",3014.97,{},180730,0,"""Asia""" +2023-01-12,84423,355,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",270.8,"{\""loyalty\"": \""5%\""}",131850,0,"""Europe""" +2024-05-16,84424,2592,"[\""Monitor\"", \""Keyboard\""]",3440.11,{},160554,1,"""Africa""" +2024-01-27,84425,5572,"[\""Wireless Mouse\""]",740.17,"{\"": \""14%\""}",213196,0,"""South America""" +2023-05-22,84426,5973,"[\""Wireless Mouse\""]",1733.78,{},135186,1,"""North America""" +2024-07-22,84427,3386,"[\""Phone\"", \""Monitor\""]",1301.12,"{\"": \""6%\""}",22965,1,"""Europe""" +2023-05-27,84428,9396,"[\""Phone\"", \""Charger\""]",155.55,"{\""seasonal\"": \""8%\""}",46567,0,"""South America""" +2023-01-07,84429,2639,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2676.54,{},205096,1,"""South America""" +2024-04-26,84430,2236,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2378.48,"{\"": \""9%\""}",249946,1,"""Asia""" +2024-07-30,84431,7747,"[\""Laptop\"", \""Phone\""]",4894.38,"{\"": \""19%\""}",147993,1,"""North America""" +2024-06-03,84432,4083,"[\""Laptop\""]",1545.87,"{\""promo\"": \""16%\""}",170192,0,"""North America""" +2024-01-06,84433,4144,"[\""Monitor\"", \""Laptop\""]",1778.08,"{\""seasonal\"": \""17%\""}",102041,0,"""Asia""" +2023-01-07,84434,8023,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4178.16,{},115600,0,"""North America""" +2023-11-18,84435,3883,"[\""Phone\"", \""Tablet\""]",4809.37,"{\""promo\"": \""19%\""}",297761,0,"""South America""" +2023-07-09,84436,4705,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",803.22,"{\""seasonal\"": \""15%\""}",47960,0,"""North America""" +2023-09-06,84437,686,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1727.28,"{\""promo\"": \""12%\""}",53007,1,"""Africa""" +2024-06-08,84438,7698,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2444.93,"{\""seasonal\"": \""30%\""}",150596,1,"""North America""" +2024-04-23,84439,7566,"[\""Keyboard\""]",4976.62,{},193521,1,"""North America""" +2023-01-01,84440,8913,"[\""Wireless Mouse\""]",4671.56,"{\"": \""20%\""}",277711,1,"""North America""" +2023-06-04,84441,909,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1249.25,{},104764,0,"""South America""" +2023-04-18,84442,7282,"[\""Laptop\"", \""Charger\""]",2913.4,{},38213,1,"""South America""" +2024-09-27,84443,8328,"[\""Monitor\"", \""Keyboard\""]",752.26,"{\"": \""25%\""}",195076,1,"""South America""" +2024-06-04,84444,9775,"[\""Tablet\""]",394.08,"{\""promo\"": \""9%\""}",19301,0,"""Europe""" +2024-12-27,84445,7892,"[\""Wireless Mouse\""]",4852.88,"{\""loyalty\"": \""18%\""}",223682,0,"""Asia""" +2023-06-05,84446,1248,"[\""Phone\""]",1178.18,"{\""promo\"": \""23%\""}",258679,0,"""Asia""" +2023-06-24,84447,866,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4693.41,{},153086,1,"""Asia""" +2023-02-19,84448,98,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4850.05,"{\"": \""5%\""}",273478,0,"""Asia""" +2024-04-25,84449,5084,"[\""Phone\""]",2178.22,"{\""promo\"": \""21%\""}",251305,1,"""North America""" +2024-02-28,84450,9338,"[\""Monitor\"", \""Charger\""]",478.34,{},162361,0,"""Europe""" +2024-12-19,84451,4002,"[\""Keyboard\""]",998.06,"{\"": \""17%\""}",77853,1,"""South America""" +2024-05-21,84452,4828,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4633.86,{},106085,1,"""South America""" +2023-05-10,84453,3431,"[\""Headphones\"", \""Keyboard\""]",259.06,{},8580,0,"""North America""" +2024-01-31,84454,7700,"[\""Tablet\"", \""Phone\""]",4401.71,"{\"": \""23%\""}",297543,1,"""Europe""" +2023-06-27,84455,622,"[\""Headphones\"", \""Tablet\""]",392.65,"{\""loyalty\"": \""28%\""}",212149,1,"""North America""" +2024-03-17,84456,5283,"[\""Charger\""]",3551.94,{},249523,0,"""Asia""" +2024-06-17,84457,617,"[\""Laptop\"", \""Wireless Mouse\""]",3154.48,"{\""seasonal\"": \""5%\""}",290669,1,"""Africa""" +2023-10-30,84458,4150,"[\""Headphones\""]",2885.41,"{\"": \""27%\""}",281905,1,"""Europe""" +2023-03-26,84459,339,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1340.56,"{\"": \""15%\""}",20540,1,"""Asia""" +2024-04-30,84460,448,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3848.41,"{\""loyalty\"": \""9%\""}",203370,0,"""North America""" +2023-04-19,84461,3268,"[\""Headphones\"", \""Laptop\""]",1227.81,"{\""loyalty\"": \""14%\""}",191592,1,"""Asia""" +2023-07-13,84462,5189,"[\""Charger\""]",1235.03,"{\""promo\"": \""21%\""}",202080,1,"""Asia""" +2024-11-24,84463,2539,"[\""Headphones\""]",2358.2,"{\""promo\"": \""21%\""}",276534,1,"""South America""" +2024-09-20,84464,599,"[\""Keyboard\""]",4808.12,"{\""seasonal\"": \""13%\""}",134339,1,"""Asia""" +2023-12-03,84465,8569,"[\""Wireless Mouse\""]",490.88,"{\""promo\"": \""17%\""}",180856,1,"""Africa""" +2023-08-13,84466,8263,"[\""Phone\""]",3292.23,{},132871,1,"""Africa""" +2023-01-24,84467,2518,"[\""Laptop\"", \""Keyboard\""]",2494.87,"{\""promo\"": \""11%\""}",86664,1,"""Europe""" +2023-10-02,84468,2516,"[\""Monitor\""]",2336.33,"{\"": \""25%\""}",287178,0,"""Asia""" +2024-12-22,84469,4,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3356.78,{},38572,1,"""South America""" +2023-01-21,84470,5086,"[\""Monitor\""]",4508.35,{},5274,0,"""Africa""" +2023-06-24,84471,2964,"[\""Phone\""]",2450.57,{},248034,0,"""South America""" +2023-07-12,84472,5689,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4464.55,{},211964,1,"""Africa""" +2023-11-06,84473,6771,"[\""Charger\""]",2500.62,"{\"": \""25%\""}",95449,1,"""North America""" +2024-06-13,84474,7512,"[\""Laptop\""]",2899.93,"{\""loyalty\"": \""11%\""}",135346,0,"""South America""" +2023-04-23,84475,7360,"[\""Phone\"", \""Wireless Mouse\""]",4661.38,{},18681,1,"""Asia""" +2024-02-01,84476,5485,"[\""Monitor\""]",2878.7,"{\"": \""12%\""}",232136,0,"""Europe""" +2024-04-13,84477,8821,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3747.06,"{\""loyalty\"": \""17%\""}",126748,1,"""Europe""" +2023-03-14,84478,3701,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3762.81,"{\""loyalty\"": \""28%\""}",137119,1,"""Africa""" +2023-12-27,84479,8254,"[\""Monitor\"", \""Wireless Mouse\""]",3722.5,{},120209,1,"""North America""" +2023-07-11,84480,8441,"[\""Monitor\"", \""Laptop\""]",1423.91,{},171615,0,"""South America""" +2023-07-27,84481,6227,"[\""Keyboard\""]",3655.82,{},2875,0,"""Europe""" +2024-01-24,84482,9110,"[\""Wireless Mouse\"", \""Headphones\""]",1552.28,"{\""loyalty\"": \""17%\""}",205179,1,"""Africa""" +2023-03-22,84483,1287,"[\""Monitor\"", \""Laptop\""]",2688.23,{},6044,1,"""North America""" +2024-08-17,84484,7651,"[\""Charger\""]",3844.0,"{\""loyalty\"": \""19%\""}",38678,1,"""Africa""" +2024-02-20,84485,2279,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1573.7,"{\"": \""15%\""}",160289,1,"""Africa""" +2024-03-05,84486,2870,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2816.76,"{\""loyalty\"": \""18%\""}",98408,1,"""South America""" +2024-10-19,84487,6033,"[\""Phone\""]",4473.06,"{\""seasonal\"": \""27%\""}",176767,0,"""South America""" +2024-05-26,84488,4444,"[\""Tablet\""]",889.0,"{\""loyalty\"": \""27%\""}",271629,0,"""Africa""" +2023-09-29,84489,988,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",795.33,"{\""seasonal\"": \""6%\""}",264809,1,"""North America""" +2023-12-09,84490,7612,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1523.01,{},54065,0,"""South America""" +2024-01-07,84491,4986,"[\""Wireless Mouse\""]",819.95,{},247306,1,"""North America""" +2023-11-16,84492,6546,"[\""Charger\"", \""Headphones\""]",399.59,"{\""promo\"": \""26%\""}",202171,1,"""North America""" +2024-09-09,84493,1270,"[\""Monitor\""]",1225.53,"{\""loyalty\"": \""5%\""}",214734,1,"""Europe""" +2023-05-14,84494,5562,"[\""Laptop\"", \""Phone\""]",913.57,"{\""loyalty\"": \""21%\""}",191346,1,"""Europe""" +2023-01-28,84495,8250,"[\""Keyboard\""]",4252.98,"{\"": \""8%\""}",84085,0,"""Asia""" +2023-10-27,84496,3836,"[\""Monitor\""]",1648.21,{},199592,0,"""Asia""" +2024-03-19,84497,1179,"[\""Wireless Mouse\"", \""Phone\""]",1420.43,{},174226,1,"""South America""" +2023-10-25,84498,3060,"[\""Wireless Mouse\""]",4618.8,{},6051,1,"""South America""" +2024-05-07,84499,424,"[\""Monitor\"", \""Wireless Mouse\""]",4870.06,"{\""promo\"": \""18%\""}",13335,0,"""South America""" +2024-04-25,84500,9844,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1396.33,{},211644,1,"""Africa""" +2023-11-10,84501,6783,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1790.74,{},128548,0,"""North America""" +2023-08-04,84502,9379,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3071.6,{},248170,1,"""North America""" +2023-10-05,84503,9739,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",273.55,"{\""loyalty\"": \""11%\""}",268614,0,"""Europe""" +2023-01-03,84504,1424,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",539.09,"{\""loyalty\"": \""14%\""}",135859,1,"""North America""" +2024-04-23,84505,5694,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",534.99,{},135213,1,"""North America""" +2024-02-20,84506,8296,"[\""Wireless Mouse\"", \""Keyboard\""]",2589.81,{},120137,0,"""Africa""" +2023-03-19,84507,1252,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2260.5,{},279017,1,"""Europe""" +2023-09-30,84508,4501,"[\""Monitor\""]",3592.84,{},42300,1,"""Africa""" +2023-12-28,84509,6680,"[\""Keyboard\"", \""Phone\""]",2657.19,"{\""loyalty\"": \""27%\""}",97267,0,"""Asia""" +2024-10-17,84510,3607,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",337.47,{},140062,0,"""Africa""" +2024-10-11,84511,9374,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4809.34,{},269306,1,"""Europe""" +2023-09-26,84512,5532,"[\""Charger\"", \""Laptop\""]",4091.37,{},69655,1,"""South America""" +2023-05-09,84513,6913,"[\""Phone\"", \""Charger\""]",3556.43,"{\"": \""13%\""}",265812,1,"""Africa""" +2023-03-26,84514,7383,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2696.28,{},130765,1,"""Europe""" +2023-03-24,84515,1652,"[\""Tablet\"", \""Headphones\""]",4294.49,"{\""loyalty\"": \""9%\""}",157881,1,"""South America""" +2023-02-09,84516,678,"[\""Keyboard\""]",130.28,{},86722,0,"""North America""" +2024-09-26,84517,6620,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",74.02,{},38594,1,"""Europe""" +2023-12-12,84518,5324,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3034.74,{},169660,1,"""North America""" +2024-01-10,84519,1875,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2725.09,"{\""promo\"": \""5%\""}",284717,1,"""Africa""" +2023-02-02,84520,6653,"[\""Tablet\""]",337.23,"{\"": \""29%\""}",70491,1,"""North America""" +2024-02-12,84521,2832,"[\""Monitor\"", \""Headphones\""]",2547.91,"{\""seasonal\"": \""30%\""}",75500,1,"""North America""" +2023-09-19,84522,7186,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",766.22,"{\""loyalty\"": \""8%\""}",279620,1,"""North America""" +2024-10-12,84523,9468,"[\""Laptop\"", \""Wireless Mouse\""]",4519.78,{},24265,0,"""Africa""" +2023-05-08,84524,1437,"[\""Tablet\""]",3007.55,"{\"": \""6%\""}",164988,0,"""Europe""" +2024-05-27,84525,9175,"[\""Headphones\""]",1812.67,"{\""seasonal\"": \""23%\""}",102844,0,"""North America""" +2024-09-22,84526,299,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4486.75,{},198195,1,"""Africa""" +2024-11-18,84527,1408,"[\""Wireless Mouse\"", \""Monitor\""]",3873.54,"{\""loyalty\"": \""15%\""}",217054,1,"""South America""" +2023-07-18,84528,9349,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2232.69,"{\""promo\"": \""25%\""}",248523,0,"""South America""" +2024-08-04,84529,1668,"[\""Monitor\"", \""Tablet\""]",2944.14,"{\""loyalty\"": \""17%\""}",175864,1,"""Africa""" +2023-03-25,84530,5397,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1011.84,"{\""seasonal\"": \""23%\""}",224754,0,"""Africa""" +2024-05-21,84531,2754,"[\""Phone\""]",2836.66,"{\""seasonal\"": \""25%\""}",57444,0,"""North America""" +2023-06-11,84532,3851,"[\""Wireless Mouse\""]",2908.87,"{\"": \""24%\""}",70411,0,"""North America""" +2023-03-12,84533,3211,"[\""Laptop\"", \""Monitor\""]",1692.23,{},190247,1,"""Asia""" +2023-06-04,84534,7737,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1245.83,"{\"": \""5%\""}",176071,1,"""Asia""" +2024-09-17,84535,6771,"[\""Laptop\"", \""Monitor\""]",2410.95,{},289838,0,"""Europe""" +2024-12-18,84536,9879,"[\""Charger\""]",2399.79,{},64817,1,"""Asia""" +2024-09-16,84537,8171,"[\""Tablet\""]",995.39,{},297257,0,"""Asia""" +2024-01-08,84538,2174,"[\""Laptop\""]",611.98,{},24465,1,"""Europe""" +2024-08-06,84539,4363,"[\""Keyboard\""]",1033.73,{},61363,0,"""South America""" +2023-01-09,84540,4954,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1315.94,{},30021,0,"""North America""" +2024-04-24,84541,7056,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1344.67,{},207352,1,"""Asia""" +2024-03-26,84542,3599,"[\""Tablet\""]",294.45,"{\"": \""16%\""}",103378,1,"""Asia""" +2024-05-09,84543,7549,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",926.99,{},163240,0,"""South America""" +2024-06-01,84544,4952,"[\""Wireless Mouse\"", \""Charger\""]",1768.38,{},125292,0,"""South America""" +2023-09-28,84545,9044,"[\""Headphones\""]",245.52,"{\""loyalty\"": \""29%\""}",2564,1,"""Asia""" +2023-05-09,84546,4444,"[\""Monitor\"", \""Tablet\""]",782.71,"{\""seasonal\"": \""19%\""}",13209,0,"""North America""" +2024-07-14,84547,3842,"[\""Laptop\""]",639.35,{},288216,1,"""Europe""" +2023-03-27,84548,4439,"[\""Charger\""]",4424.17,"{\""loyalty\"": \""30%\""}",284424,0,"""Africa""" +2024-05-20,84549,7997,"[\""Charger\""]",4739.02,"{\""loyalty\"": \""24%\""}",117756,1,"""South America""" +2023-12-31,84550,9097,"[\""Phone\""]",2794.69,{},227776,1,"""Africa""" +2023-09-07,84551,7624,"[\""Keyboard\""]",4350.22,{},214445,1,"""North America""" +2024-08-04,84552,8296,"[\""Headphones\"", \""Tablet\""]",2524.82,{},219384,1,"""South America""" +2023-11-22,84553,1423,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2217.15,{},260874,1,"""Europe""" +2023-06-28,84554,3750,"[\""Phone\"", \""Keyboard\""]",4565.28,{},224431,1,"""Asia""" +2024-12-16,84555,6544,"[\""Tablet\"", \""Wireless Mouse\""]",2522.39,"{\""seasonal\"": \""20%\""}",220001,0,"""North America""" +2024-09-12,84556,7263,"[\""Laptop\"", \""Tablet\""]",2100.08,{},93510,1,"""South America""" +2024-02-23,84557,3395,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3958.53,"{\""seasonal\"": \""15%\""}",262469,1,"""Europe""" +2024-10-12,84558,496,"[\""Charger\""]",1582.83,{},194468,0,"""Africa""" +2024-01-17,84559,6796,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",2191.46,{},136602,1,"""Africa""" +2023-05-18,84560,6228,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4638.99,"{\""promo\"": \""19%\""}",143362,0,"""Asia""" +2024-03-04,84561,5483,"[\""Tablet\"", \""Keyboard\""]",1622.52,"{\""promo\"": \""12%\""}",251495,0,"""Africa""" +2024-08-06,84562,8205,"[\""Headphones\""]",340.61,"{\""seasonal\"": \""5%\""}",148504,0,"""North America""" +2023-06-29,84563,343,"[\""Headphones\""]",3993.21,"{\""promo\"": \""16%\""}",119977,1,"""Africa""" +2023-02-13,84564,9632,"[\""Monitor\"", \""Keyboard\""]",4848.43,{},268487,0,"""North America""" +2024-09-14,84565,217,"[\""Monitor\""]",4933.1,{},164953,1,"""Europe""" +2024-08-03,84566,5553,"[\""Wireless Mouse\""]",2346.43,"{\""seasonal\"": \""22%\""}",60930,1,"""North America""" +2024-11-20,84567,4456,"[\""Tablet\"", \""Laptop\""]",1935.03,"{\""promo\"": \""10%\""}",284335,0,"""South America""" +2024-11-20,84568,6106,"[\""Wireless Mouse\""]",484.83,{},194560,0,"""Africa""" +2023-02-05,84569,5978,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",187.85,"{\"": \""22%\""}",151028,0,"""Asia""" +2024-09-08,84570,5017,"[\""Keyboard\"", \""Laptop\""]",1170.22,"{\""loyalty\"": \""13%\""}",90072,1,"""Africa""" +2023-11-23,84571,1338,"[\""Headphones\"", \""Charger\""]",1830.98,{},295660,0,"""Europe""" +2024-01-29,84572,3541,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3320.69,{},91689,0,"""North America""" +2024-12-12,84573,8936,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1900.36,"{\""seasonal\"": \""5%\""}",26215,1,"""Europe""" +2023-08-30,84574,9607,"[\""Phone\""]",3121.7,"{\"": \""19%\""}",84345,1,"""South America""" +2024-07-10,84575,1048,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3360.69,"{\""seasonal\"": \""20%\""}",100595,0,"""South America""" +2023-04-10,84576,1806,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2710.73,{},56772,0,"""North America""" +2023-10-20,84577,5149,"[\""Wireless Mouse\"", \""Headphones\""]",1865.37,{},210913,1,"""Africa""" +2024-09-05,84578,5884,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1400.95,"{\""loyalty\"": \""22%\""}",278073,1,"""Asia""" +2023-10-22,84579,2782,"[\""Laptop\""]",2868.54,"{\""seasonal\"": \""28%\""}",282326,0,"""Africa""" +2023-01-20,84580,8502,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",195.54,{},200813,1,"""Europe""" +2024-03-19,84581,4394,"[\""Keyboard\""]",1064.11,{},41962,1,"""Europe""" +2024-01-19,84582,589,"[\""Headphones\"", \""Wireless Mouse\""]",4804.06,"{\""loyalty\"": \""9%\""}",255355,1,"""Africa""" +2023-12-06,84583,9050,"[\""Keyboard\""]",3565.69,"{\"": \""19%\""}",270340,1,"""North America""" +2023-10-13,84584,8863,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3591.84,{},204862,0,"""Europe""" +2024-03-12,84585,6505,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2629.13,{},120104,0,"""Asia""" +2023-08-23,84586,4920,"[\""Tablet\"", \""Headphones\""]",782.41,{},85341,1,"""Asia""" +2024-03-11,84587,6336,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4004.76,{},153430,1,"""Africa""" +2023-12-19,84588,775,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4635.79,{},190786,1,"""Europe""" +2023-01-31,84589,8958,"[\""Charger\""]",4407.85,"{\""seasonal\"": \""11%\""}",225379,1,"""Africa""" +2024-08-27,84590,4304,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3986.37,{},226578,0,"""Europe""" +2023-10-30,84591,5361,"[\""Monitor\""]",1036.91,{},146020,0,"""North America""" +2024-01-13,84592,6982,"[\""Tablet\"", \""Laptop\""]",1074.73,"{\"": \""7%\""}",2517,0,"""Europe""" +2024-10-19,84593,2297,"[\""Phone\""]",2866.24,"{\""loyalty\"": \""19%\""}",169710,1,"""Asia""" +2023-08-30,84594,394,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1113.08,"{\""seasonal\"": \""26%\""}",43696,0,"""Asia""" +2024-08-23,84595,3632,"[\""Laptop\""]",4733.86,{},162553,1,"""Africa""" +2023-08-27,84596,2705,"[\""Headphones\"", \""Keyboard\""]",3597.19,{},170951,0,"""North America""" +2023-05-16,84597,8338,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2488.14,{},135925,1,"""South America""" +2024-07-31,84598,7149,"[\""Wireless Mouse\"", \""Laptop\""]",668.75,{},247714,0,"""South America""" +2023-07-17,84599,5732,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4949.63,"{\""promo\"": \""10%\""}",27802,1,"""Asia""" +2024-05-29,84600,3506,"[\""Tablet\"", \""Charger\""]",3369.67,{},199977,0,"""Africa""" +2023-05-13,84601,6959,"[\""Headphones\"", \""Monitor\""]",3536.67,"{\""loyalty\"": \""21%\""}",238670,1,"""Africa""" +2024-08-30,84602,5528,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",746.12,"{\"": \""17%\""}",14963,1,"""Africa""" +2024-10-21,84603,7275,"[\""Phone\""]",2426.57,"{\""seasonal\"": \""7%\""}",277244,1,"""Asia""" +2023-10-29,84604,2890,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1552.39,{},256384,1,"""Asia""" +2023-01-31,84605,6897,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2412.91,{},17092,0,"""North America""" +2023-11-05,84606,374,"[\""Phone\"", \""Headphones\""]",2842.45,"{\""promo\"": \""20%\""}",241397,0,"""Africa""" +2023-09-08,84607,8156,"[\""Keyboard\"", \""Monitor\""]",858.89,{},261909,1,"""North America""" +2024-05-08,84608,9407,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",966.67,"{\"": \""19%\""}",6425,0,"""South America""" +2023-11-28,84609,8945,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1788.76,"{\""loyalty\"": \""5%\""}",266656,0,"""Europe""" +2023-07-16,84610,3723,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2289.01,{},280727,0,"""Asia""" +2023-08-08,84611,8431,"[\""Headphones\"", \""Keyboard\""]",3982.32,{},33584,1,"""Africa""" +2023-07-11,84612,5090,"[\""Headphones\""]",851.44,{},285416,0,"""South America""" +2023-03-11,84613,8112,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2116.05,"{\""loyalty\"": \""11%\""}",270091,0,"""Africa""" +2024-08-29,84614,2330,"[\""Charger\"", \""Monitor\""]",830.95,{},185380,1,"""South America""" +2023-06-17,84615,2663,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2717.4,"{\""promo\"": \""21%\""}",294166,1,"""Europe""" +2024-01-19,84616,4264,"[\""Charger\"", \""Tablet\""]",699.25,"{\""loyalty\"": \""19%\""}",218572,0,"""South America""" +2023-11-27,84617,7105,"[\""Headphones\""]",4207.88,{},13177,1,"""Asia""" +2023-10-02,84618,2705,"[\""Tablet\"", \""Phone\""]",1806.51,"{\""promo\"": \""14%\""}",211245,0,"""North America""" +2023-06-02,84619,9279,"[\""Tablet\"", \""Charger\""]",4405.36,{},19439,1,"""Africa""" +2023-12-02,84620,4595,"[\""Keyboard\"", \""Wireless Mouse\""]",1244.21,{},139725,1,"""North America""" +2024-01-31,84621,4115,"[\""Laptop\"", \""Keyboard\""]",2388.05,{},282567,1,"""South America""" +2024-05-03,84622,1502,"[\""Tablet\""]",3698.5,"{\""seasonal\"": \""8%\""}",280838,0,"""Asia""" +2023-03-23,84623,6078,"[\""Headphones\""]",2195.45,"{\""loyalty\"": \""27%\""}",125264,0,"""North America""" +2024-06-21,84624,6489,"[\""Charger\""]",3066.54,{},115079,1,"""Europe""" +2023-09-16,84625,9495,"[\""Tablet\"", \""Keyboard\""]",2992.84,{},113234,1,"""South America""" +2024-05-30,84626,4554,"[\""Tablet\"", \""Keyboard\""]",2020.16,"{\""seasonal\"": \""24%\""}",222808,1,"""Asia""" +2024-10-13,84627,3001,"[\""Wireless Mouse\""]",3384.17,"{\""seasonal\"": \""11%\""}",123922,0,"""Africa""" +2023-05-14,84628,8341,"[\""Keyboard\"", \""Monitor\""]",4679.33,"{\""promo\"": \""14%\""}",238487,1,"""Asia""" +2024-07-23,84629,6141,"[\""Tablet\"", \""Phone\""]",4125.38,{},30574,1,"""Europe""" +2023-04-13,84630,9194,"[\""Tablet\""]",4018.89,{},296355,0,"""South America""" +2023-01-21,84631,7522,"[\""Charger\"", \""Keyboard\""]",755.38,"{\""seasonal\"": \""21%\""}",131770,0,"""Europe""" +2024-07-14,84632,9097,"[\""Laptop\"", \""Charger\""]",4157.48,{},168079,0,"""Asia""" +2024-10-08,84633,7184,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2823.28,{},208336,0,"""North America""" +2023-02-23,84634,9742,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3187.2,"{\"": \""14%\""}",135765,1,"""North America""" +2023-05-03,84635,6239,"[\""Tablet\"", \""Wireless Mouse\""]",4030.58,"{\""seasonal\"": \""27%\""}",275151,1,"""North America""" +2024-04-10,84636,8779,"[\""Monitor\""]",2143.57,"{\""seasonal\"": \""14%\""}",240844,1,"""Africa""" +2024-08-31,84637,5656,"[\""Phone\"", \""Charger\""]",1809.36,{},222956,0,"""North America""" +2023-04-19,84638,4062,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",549.83,"{\""promo\"": \""27%\""}",236879,1,"""Europe""" +2024-06-08,84639,2804,"[\""Tablet\""]",976.66,"{\""seasonal\"": \""16%\""}",123150,1,"""Europe""" +2024-10-15,84640,6351,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4307.47,{},134891,1,"""Europe""" +2023-03-16,84641,967,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1145.16,"{\""seasonal\"": \""26%\""}",259077,0,"""Asia""" +2024-09-28,84642,7457,"[\""Wireless Mouse\"", \""Phone\""]",3528.01,{},58489,0,"""Africa""" +2023-08-09,84643,1300,"[\""Headphones\""]",2042.93,"{\"": \""23%\""}",138064,0,"""South America""" +2024-07-26,84644,7297,"[\""Wireless Mouse\""]",1375.0,{},67868,0,"""North America""" +2023-03-19,84645,4093,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1926.21,"{\""loyalty\"": \""16%\""}",138251,0,"""Europe""" +2023-09-06,84646,5967,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2102.32,{},266885,0,"""North America""" +2024-11-12,84647,4705,"[\""Tablet\""]",3233.82,"{\"": \""25%\""}",91320,0,"""North America""" +2023-03-04,84648,1426,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3373.15,{},245046,0,"""Europe""" +2023-03-29,84649,241,"[\""Wireless Mouse\"", \""Phone\""]",975.91,"{\"": \""26%\""}",69942,1,"""South America""" +2024-02-08,84650,8077,"[\""Laptop\"", \""Wireless Mouse\""]",651.66,{},91903,1,"""South America""" +2024-11-07,84651,9744,"[\""Phone\""]",2022.16,"{\""loyalty\"": \""9%\""}",143019,0,"""North America""" +2024-08-23,84652,6820,"[\""Laptop\"", \""Headphones\""]",4530.83,{},106273,1,"""Asia""" +2024-11-09,84653,6260,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2027.63,"{\""promo\"": \""14%\""}",197421,1,"""South America""" +2024-12-20,84654,4790,"[\""Headphones\""]",1414.19,"{\"": \""5%\""}",185027,0,"""Asia""" +2023-11-10,84655,7606,"[\""Charger\"", \""Headphones\""]",3750.59,"{\""loyalty\"": \""22%\""}",108121,0,"""Asia""" +2024-11-17,84656,5928,"[\""Wireless Mouse\""]",4736.33,{},44908,0,"""North America""" +2024-02-12,84657,884,"[\""Monitor\""]",3892.56,"{\""promo\"": \""6%\""}",165060,0,"""Europe""" +2024-01-29,84658,929,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1147.49,{},169481,0,"""Asia""" +2023-04-07,84659,6526,"[\""Phone\""]",1046.71,"{\""promo\"": \""9%\""}",192129,0,"""Asia""" +2023-07-17,84660,5362,"[\""Headphones\"", \""Phone\""]",3056.33,{},12158,0,"""Africa""" +2024-03-04,84661,648,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4808.95,"{\""promo\"": \""9%\""}",203010,0,"""Africa""" +2023-07-13,84662,6597,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4806.54,{},12968,1,"""Europe""" +2024-09-26,84663,8525,"[\""Headphones\"", \""Wireless Mouse\""]",4144.92,"{\""loyalty\"": \""23%\""}",203077,1,"""Europe""" +2024-07-30,84664,4718,"[\""Phone\"", \""Wireless Mouse\""]",4096.5,{},260075,1,"""Asia""" +2024-09-17,84665,7086,"[\""Charger\"", \""Laptop\""]",4070.98,{},189638,1,"""Asia""" +2023-04-15,84666,7370,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3909.58,{},126684,0,"""Asia""" +2024-09-02,84667,6415,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1023.09,{},296146,1,"""North America""" +2023-01-20,84668,8504,"[\""Wireless Mouse\"", \""Phone\""]",661.33,"{\"": \""8%\""}",88563,1,"""Asia""" +2024-12-18,84669,6856,"[\""Wireless Mouse\""]",2505.18,"{\"": \""5%\""}",204468,1,"""Europe""" +2023-10-03,84670,4809,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4728.31,"{\""seasonal\"": \""26%\""}",254607,1,"""North America""" +2024-02-25,84671,5957,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",338.36,{},2383,0,"""Asia""" +2024-11-07,84672,1843,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3832.64,"{\""loyalty\"": \""11%\""}",102286,1,"""South America""" +2024-08-13,84673,2200,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1493.52,"{\""promo\"": \""17%\""}",87509,1,"""Asia""" +2024-04-14,84674,6440,"[\""Laptop\"", \""Phone\""]",2447.45,{},58471,0,"""Asia""" +2023-11-13,84675,6243,"[\""Wireless Mouse\""]",2870.06,{},98291,1,"""Africa""" +2023-02-23,84676,4783,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1406.86,"{\""seasonal\"": \""9%\""}",204613,0,"""North America""" +2023-08-17,84677,6171,"[\""Tablet\"", \""Keyboard\""]",1887.44,"{\""seasonal\"": \""7%\""}",73905,0,"""North America""" +2024-12-29,84678,7507,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",541.42,{},26173,1,"""Africa""" +2023-04-30,84679,7316,"[\""Tablet\"", \""Monitor\""]",3274.2,{},76597,0,"""Africa""" +2024-02-17,84680,1445,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3224.67,{},285816,1,"""Asia""" +2023-05-08,84681,4856,"[\""Tablet\"", \""Keyboard\""]",920.26,"{\""loyalty\"": \""6%\""}",94661,0,"""North America""" +2024-03-05,84682,5949,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",315.18,"{\""loyalty\"": \""27%\""}",244121,0,"""North America""" +2023-09-14,84683,8531,"[\""Headphones\"", \""Charger\""]",128.77,{},217704,0,"""South America""" +2024-06-29,84684,9535,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2941.06,{},79717,0,"""Africa""" +2023-06-08,84685,6387,"[\""Headphones\""]",123.47,"{\"": \""22%\""}",246267,0,"""North America""" +2024-06-12,84686,3963,"[\""Laptop\""]",4349.97,"{\"": \""18%\""}",186871,0,"""South America""" +2024-08-31,84687,9137,"[\""Laptop\""]",122.9,"{\""loyalty\"": \""13%\""}",249955,0,"""North America""" +2023-01-16,84688,6363,"[\""Tablet\"", \""Laptop\""]",1184.25,{},232487,0,"""North America""" +2024-06-22,84689,7564,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2837.92,{},62251,0,"""South America""" +2023-09-03,84690,9961,"[\""Charger\""]",1208.33,{},18092,0,"""North America""" +2024-10-24,84691,2138,"[\""Phone\"", \""Monitor\""]",1512.54,"{\""loyalty\"": \""22%\""}",58447,1,"""Europe""" +2024-07-29,84692,9961,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1246.64,{},178364,1,"""North America""" +2024-09-12,84693,2378,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1949.06,"{\""loyalty\"": \""29%\""}",196898,0,"""Asia""" +2023-01-31,84694,5470,"[\""Headphones\"", \""Charger\""]",3563.47,{},196771,0,"""Asia""" +2023-02-15,84695,8128,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2130.62,"{\""seasonal\"": \""20%\""}",190536,1,"""Europe""" +2023-10-29,84696,3799,"[\""Keyboard\"", \""Wireless Mouse\""]",2063.13,"{\""loyalty\"": \""27%\""}",25430,0,"""Asia""" +2023-12-18,84697,5034,"[\""Keyboard\"", \""Headphones\""]",3250.95,"{\""seasonal\"": \""11%\""}",39458,0,"""Europe""" +2023-10-09,84698,9449,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2912.19,"{\""seasonal\"": \""10%\""}",159992,0,"""South America""" +2024-01-03,84699,9991,"[\""Phone\""]",3630.23,"{\""seasonal\"": \""24%\""}",122149,1,"""Africa""" +2023-05-15,84700,6876,"[\""Laptop\"", \""Wireless Mouse\""]",2823.19,"{\""loyalty\"": \""24%\""}",82908,1,"""South America""" +2023-06-17,84701,6727,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1768.56,"{\"": \""23%\""}",121110,1,"""Europe""" +2023-10-13,84702,6383,"[\""Keyboard\"", \""Wireless Mouse\""]",3168.96,"{\""loyalty\"": \""20%\""}",118229,1,"""Europe""" +2023-03-21,84703,2044,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2162.14,"{\""promo\"": \""6%\""}",8202,1,"""Asia""" +2023-04-23,84704,7473,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2992.87,{},212897,1,"""South America""" +2023-11-18,84705,4743,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4025.34,{},43167,0,"""Africa""" +2023-08-04,84706,8233,"[\""Laptop\""]",2865.05,"{\""loyalty\"": \""30%\""}",225032,1,"""Asia""" +2023-06-01,84707,9516,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",687.41,{},152537,0,"""Europe""" +2023-12-27,84708,7661,"[\""Charger\""]",727.43,{},251947,0,"""Europe""" +2023-03-24,84709,4639,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2761.26,"{\""loyalty\"": \""27%\""}",214850,0,"""Asia""" +2023-03-02,84710,4061,"[\""Keyboard\""]",3962.7,"{\"": \""12%\""}",291994,0,"""North America""" +2024-05-21,84711,8122,"[\""Headphones\""]",4940.35,{},136719,0,"""North America""" +2023-03-13,84712,4100,"[\""Tablet\"", \""Phone\""]",1818.52,{},270470,0,"""North America""" +2023-01-21,84713,20,"[\""Wireless Mouse\"", \""Headphones\""]",795.85,"{\""seasonal\"": \""14%\""}",99151,0,"""Asia""" +2023-06-24,84714,998,"[\""Laptop\""]",1376.9,"{\""loyalty\"": \""10%\""}",209245,1,"""Europe""" +2023-02-27,84715,9486,"[\""Phone\""]",4335.88,{},82218,0,"""Europe""" +2024-09-06,84716,8567,"[\""Wireless Mouse\""]",499.87,{},78749,0,"""Asia""" +2023-03-28,84717,3656,"[\""Monitor\""]",3176.95,"{\""seasonal\"": \""16%\""}",52082,1,"""Africa""" +2024-07-10,84718,7092,"[\""Keyboard\""]",3250.01,{},243913,0,"""Europe""" +2023-11-04,84719,8499,"[\""Wireless Mouse\"", \""Headphones\""]",2465.42,{},42823,0,"""North America""" +2023-10-13,84720,783,"[\""Tablet\""]",4739.42,{},143048,0,"""North America""" +2024-11-10,84721,848,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2411.24,{},296619,1,"""South America""" +2024-09-22,84722,5464,"[\""Wireless Mouse\"", \""Charger\""]",1739.9,"{\"": \""14%\""}",87100,1,"""North America""" +2023-10-08,84723,5337,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",370.15,{},4306,0,"""Africa""" +2023-03-14,84724,6173,"[\""Laptop\""]",2214.67,{},178875,1,"""Asia""" +2023-08-17,84725,8194,"[\""Tablet\"", \""Phone\""]",1642.55,"{\"": \""17%\""}",283609,0,"""North America""" +2023-04-17,84726,7577,"[\""Tablet\"", \""Keyboard\""]",3717.53,{},17868,0,"""South America""" +2023-07-11,84727,3818,"[\""Monitor\""]",3018.95,{},138150,0,"""Europe""" +2023-03-07,84728,8731,"[\""Tablet\""]",820.84,"{\"": \""24%\""}",57834,1,"""Europe""" +2024-07-08,84729,9209,"[\""Keyboard\""]",977.69,{},175302,1,"""North America""" +2024-09-18,84730,7315,"[\""Laptop\""]",2507.08,"{\""seasonal\"": \""28%\""}",92013,0,"""Europe""" +2024-10-21,84731,6131,"[\""Phone\"", \""Monitor\""]",499.85,{},284969,0,"""North America""" +2024-11-11,84732,3208,"[\""Wireless Mouse\"", \""Headphones\""]",2688.91,"{\""promo\"": \""16%\""}",139401,0,"""Europe""" +2024-02-08,84733,5355,"[\""Tablet\""]",1315.05,"{\""seasonal\"": \""30%\""}",269829,0,"""North America""" +2023-07-23,84734,1229,"[\""Headphones\""]",3134.08,{},203625,1,"""Asia""" +2024-01-23,84735,8912,"[\""Wireless Mouse\"", \""Headphones\""]",2910.59,{},281878,0,"""Africa""" +2024-01-23,84736,2245,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3983.05,"{\"": \""11%\""}",299019,0,"""Africa""" +2023-07-12,84737,6266,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2388.16,{},113693,1,"""South America""" +2024-05-11,84738,93,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1704.82,"{\""seasonal\"": \""5%\""}",154111,1,"""South America""" +2024-02-25,84739,9081,"[\""Headphones\"", \""Charger\""]",489.89,"{\""seasonal\"": \""9%\""}",254706,0,"""North America""" +2023-06-21,84740,6351,"[\""Laptop\""]",2360.51,"{\""loyalty\"": \""8%\""}",29404,1,"""South America""" +2024-04-27,84741,3688,"[\""Monitor\""]",3767.81,"{\"": \""21%\""}",247970,1,"""North America""" +2023-05-16,84742,934,"[\""Tablet\"", \""Monitor\""]",4030.85,{},212845,0,"""South America""" +2023-06-05,84743,1647,"[\""Tablet\"", \""Charger\""]",2176.79,"{\""promo\"": \""13%\""}",48515,1,"""South America""" +2024-06-13,84744,7788,"[\""Keyboard\""]",1450.19,{},149266,0,"""Asia""" +2023-09-14,84745,3821,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3208.34,"{\"": \""21%\""}",202649,0,"""South America""" +2024-07-29,84746,3523,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4844.02,{},109135,0,"""Africa""" +2023-08-03,84747,3614,"[\""Keyboard\"", \""Wireless Mouse\""]",1526.55,{},149445,0,"""North America""" +2023-06-02,84748,4980,"[\""Monitor\""]",237.74,"{\"": \""8%\""}",75806,0,"""South America""" +2024-07-13,84749,7883,"[\""Laptop\"", \""Headphones\""]",1013.33,"{\""loyalty\"": \""15%\""}",275862,0,"""North America""" +2023-04-30,84750,2476,"[\""Headphones\"", \""Tablet\""]",3128.43,{},108097,1,"""Asia""" +2024-03-29,84751,1199,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1731.52,"{\"": \""12%\""}",109972,1,"""South America""" +2023-01-16,84752,5191,"[\""Keyboard\""]",1012.91,"{\""promo\"": \""20%\""}",13886,1,"""South America""" +2024-03-23,84753,277,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3781.22,{},40443,0,"""Africa""" +2023-02-26,84754,6743,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",75.35,"{\"": \""14%\""}",230080,1,"""North America""" +2023-01-17,84755,9957,"[\""Phone\""]",4289.92,"{\""loyalty\"": \""28%\""}",164029,0,"""North America""" +2023-07-05,84756,2364,"[\""Wireless Mouse\""]",4058.1,{},218817,0,"""Asia""" +2023-04-09,84757,2921,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2123.15,"{\""promo\"": \""23%\""}",89810,0,"""Africa""" +2024-10-10,84758,202,"[\""Phone\"", \""Charger\""]",3053.29,{},1186,0,"""Africa""" +2024-06-13,84759,3813,"[\""Laptop\""]",363.75,"{\""seasonal\"": \""13%\""}",103756,0,"""Africa""" +2024-02-15,84760,7585,"[\""Headphones\""]",3198.59,"{\""promo\"": \""18%\""}",107556,1,"""Asia""" +2023-01-24,84761,1459,"[\""Laptop\"", \""Charger\""]",655.42,{},156556,1,"""Europe""" +2023-06-05,84762,1692,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",4941.29,"{\""seasonal\"": \""29%\""}",127781,1,"""South America""" +2023-04-15,84763,8637,"[\""Tablet\""]",630.27,{},32908,1,"""North America""" +2024-11-21,84764,9959,"[\""Monitor\"", \""Wireless Mouse\""]",1034.47,"{\"": \""22%\""}",52053,0,"""Africa""" +2024-09-15,84765,1670,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1674.75,{},240542,0,"""Africa""" +2023-08-24,84766,3015,"[\""Keyboard\"", \""Headphones\""]",1371.92,"{\"": \""13%\""}",277447,1,"""Africa""" +2024-12-18,84767,7932,"[\""Keyboard\""]",1270.11,{},223681,0,"""Africa""" +2024-12-11,84768,9158,"[\""Laptop\""]",1487.65,"{\""loyalty\"": \""17%\""}",156169,1,"""North America""" +2023-04-30,84769,2000,"[\""Wireless Mouse\"", \""Keyboard\""]",713.56,"{\"": \""20%\""}",38232,0,"""South America""" +2024-10-04,84770,2347,"[\""Headphones\""]",4386.66,{},136440,0,"""South America""" +2023-04-22,84771,9492,"[\""Wireless Mouse\""]",2107.63,"{\""loyalty\"": \""27%\""}",99574,0,"""North America""" +2024-10-18,84772,111,"[\""Laptop\"", \""Phone\""]",904.11,{},109483,0,"""North America""" +2024-06-26,84773,7633,"[\""Charger\"", \""Headphones\""]",3163.32,"{\""promo\"": \""28%\""}",33733,0,"""Asia""" +2023-03-23,84774,2624,"[\""Charger\"", \""Phone\""]",1650.88,{},9546,0,"""Europe""" +2024-06-14,84775,6696,"[\""Charger\"", \""Phone\""]",2520.06,"{\""seasonal\"": \""18%\""}",21276,0,"""North America""" +2024-06-26,84776,6300,"[\""Headphones\""]",230.18,"{\""promo\"": \""5%\""}",119555,1,"""North America""" +2024-06-04,84777,2872,"[\""Phone\"", \""Charger\""]",4488.13,{},43081,1,"""Europe""" +2023-08-12,84778,9177,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",253.08,{},291327,0,"""Africa""" +2024-08-26,84779,6540,"[\""Tablet\""]",4821.82,{},187058,0,"""South America""" +2024-11-24,84780,987,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3688.73,{},206003,1,"""North America""" +2024-07-28,84781,4520,"[\""Headphones\""]",1039.32,{},139474,0,"""South America""" +2024-04-13,84782,426,"[\""Tablet\"", \""Phone\""]",453.57,"{\""promo\"": \""18%\""}",211585,0,"""Europe""" +2023-02-21,84783,220,"[\""Tablet\""]",4929.45,"{\""promo\"": \""19%\""}",196882,0,"""South America""" +2023-03-14,84784,1611,"[\""Charger\"", \""Headphones\""]",1597.1,{},39241,0,"""South America""" +2023-03-21,84785,520,"[\""Headphones\""]",4861.26,"{\"": \""9%\""}",73730,0,"""Europe""" +2024-09-10,84786,4427,"[\""Keyboard\"", \""Monitor\""]",734.72,{},294172,0,"""South America""" +2023-10-02,84787,281,"[\""Tablet\""]",1292.32,"{\"": \""20%\""}",181801,1,"""South America""" +2023-03-09,84788,4956,"[\""Monitor\"", \""Phone\""]",4604.6,"{\""seasonal\"": \""23%\""}",188523,1,"""Africa""" +2024-07-28,84789,301,"[\""Headphones\"", \""Wireless Mouse\""]",3053.82,"{\""promo\"": \""15%\""}",51462,1,"""Asia""" +2023-12-25,84790,8695,"[\""Headphones\"", \""Phone\""]",2700.41,"{\""seasonal\"": \""7%\""}",33850,0,"""South America""" +2023-02-03,84791,4939,"[\""Keyboard\"", \""Charger\""]",1700.07,"{\""loyalty\"": \""29%\""}",201404,0,"""Africa""" +2024-05-06,84792,575,"[\""Laptop\""]",3747.94,{},247334,0,"""South America""" +2023-09-16,84793,6096,"[\""Headphones\"", \""Monitor\""]",1142.71,"{\""promo\"": \""19%\""}",79037,0,"""Africa""" +2024-03-23,84794,629,"[\""Keyboard\"", \""Phone\""]",147.71,{},285592,0,"""North America""" +2023-12-31,84795,5435,"[\""Keyboard\""]",3016.89,{},51115,1,"""South America""" +2023-05-03,84796,11,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",175.5,{},44916,0,"""Africa""" +2024-04-28,84797,8217,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",1462.59,{},164946,1,"""Europe""" +2023-01-23,84798,8236,"[\""Charger\""]",4848.54,{},206355,1,"""South America""" +2023-03-30,84799,6932,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2039.33,{},51853,0,"""Africa""" +2024-02-24,84800,8051,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",382.02,"{\""promo\"": \""10%\""}",38414,1,"""Africa""" +2024-02-18,84801,2872,"[\""Phone\"", \""Keyboard\""]",1054.53,{},96024,1,"""North America""" +2023-04-04,84802,7001,"[\""Charger\"", \""Monitor\""]",2237.18,{},130166,1,"""South America""" +2023-08-07,84803,8649,"[\""Wireless Mouse\""]",3347.98,"{\""promo\"": \""11%\""}",246908,1,"""South America""" +2023-10-08,84804,6303,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1491.09,{},173112,1,"""Asia""" +2023-02-16,84805,8616,"[\""Monitor\""]",412.28,"{\""promo\"": \""7%\""}",117216,0,"""South America""" +2023-02-12,84806,7933,"[\""Monitor\""]",3450.29,{},36712,1,"""Asia""" +2023-04-28,84807,779,"[\""Phone\"", \""Monitor\""]",1917.1,"{\""promo\"": \""23%\""}",121436,1,"""Africa""" +2024-06-24,84808,6783,"[\""Laptop\""]",3206.81,"{\""seasonal\"": \""20%\""}",185123,1,"""North America""" +2024-11-22,84809,2079,"[\""Monitor\""]",4660.74,"{\"": \""6%\""}",283295,0,"""South America""" +2023-06-12,84810,462,"[\""Keyboard\""]",1620.73,{},192402,0,"""Europe""" +2023-09-04,84811,9174,"[\""Monitor\"", \""Phone\""]",241.95,"{\""promo\"": \""10%\""}",287145,1,"""South America""" +2023-05-30,84812,4584,"[\""Tablet\"", \""Monitor\""]",3370.6,"{\""seasonal\"": \""6%\""}",209083,1,"""Asia""" +2023-07-03,84813,1734,"[\""Tablet\"", \""Headphones\""]",3273.81,"{\"": \""14%\""}",27971,0,"""North America""" +2023-08-26,84814,758,"[\""Charger\""]",1385.33,{},30682,0,"""South America""" +2023-12-14,84815,5957,"[\""Charger\"", \""Phone\""]",4894.38,"{\""seasonal\"": \""17%\""}",105556,1,"""Europe""" +2023-08-01,84816,1248,"[\""Headphones\"", \""Tablet\""]",2352.09,"{\""seasonal\"": \""30%\""}",259098,1,"""Africa""" +2024-04-15,84817,7426,"[\""Headphones\"", \""Keyboard\""]",1202.56,"{\""seasonal\"": \""26%\""}",213679,0,"""Asia""" +2023-09-30,84818,3542,"[\""Headphones\""]",62.99,"{\"": \""21%\""}",174906,1,"""Asia""" +2023-07-29,84819,1802,"[\""Wireless Mouse\""]",462.59,"{\""seasonal\"": \""5%\""}",86819,0,"""South America""" +2024-01-24,84820,2848,"[\""Keyboard\""]",1234.2,"{\""loyalty\"": \""15%\""}",280593,1,"""Europe""" +2023-08-21,84821,6519,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1325.69,"{\""promo\"": \""19%\""}",190859,0,"""South America""" +2024-01-29,84822,6273,"[\""Headphones\""]",2215.44,{},3084,0,"""South America""" +2024-03-18,84823,2167,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3367.2,{},79992,0,"""Europe""" +2023-12-26,84824,9965,"[\""Charger\"", \""Tablet\""]",2485.0,"{\""loyalty\"": \""29%\""}",48547,0,"""North America""" +2024-07-20,84825,1429,"[\""Keyboard\""]",760.59,{},55548,0,"""Africa""" +2024-02-17,84826,6856,"[\""Laptop\""]",4360.24,"{\""promo\"": \""28%\""}",49467,1,"""North America""" +2023-06-14,84827,3395,"[\""Phone\"", \""Headphones\""]",519.67,"{\"": \""28%\""}",96166,0,"""North America""" +2024-12-15,84828,6558,"[\""Wireless Mouse\"", \""Laptop\""]",422.44,"{\""promo\"": \""11%\""}",60141,1,"""North America""" +2023-09-18,84829,3353,"[\""Laptop\""]",451.54,{},202536,1,"""South America""" +2023-07-01,84830,9158,"[\""Phone\"", \""Charger\""]",2450.93,"{\""promo\"": \""15%\""}",151879,1,"""Africa""" +2023-03-28,84831,8787,"[\""Wireless Mouse\""]",2839.53,{},54306,1,"""South America""" +2024-01-02,84832,3271,"[\""Charger\"", \""Phone\""]",248.97,"{\""loyalty\"": \""11%\""}",183010,1,"""Asia""" +2023-12-24,84833,4517,"[\""Keyboard\"", \""Monitor\""]",4100.04,{},55055,1,"""North America""" +2024-06-19,84834,6612,"[\""Wireless Mouse\"", \""Phone\""]",2696.17,"{\""seasonal\"": \""11%\""}",30636,1,"""North America""" +2024-09-20,84835,7673,"[\""Wireless Mouse\"", \""Laptop\""]",663.14,"{\""seasonal\"": \""19%\""}",20782,0,"""Africa""" +2024-10-26,84836,8742,"[\""Laptop\"", \""Monitor\""]",327.87,"{\""loyalty\"": \""10%\""}",242453,1,"""Asia""" +2024-03-06,84837,2342,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4957.38,{},161149,0,"""North America""" +2023-04-24,84838,5861,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2661.89,"{\""seasonal\"": \""14%\""}",187473,1,"""Europe""" +2023-04-23,84839,1874,"[\""Keyboard\""]",613.15,"{\""seasonal\"": \""28%\""}",109871,1,"""South America""" +2023-04-07,84840,9694,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2654.72,"{\""loyalty\"": \""30%\""}",192963,0,"""South America""" +2023-03-10,84841,8940,"[\""Tablet\""]",2485.54,{},296597,1,"""Africa""" +2024-03-04,84842,8619,"[\""Keyboard\""]",3075.35,"{\""loyalty\"": \""26%\""}",55920,0,"""South America""" +2023-01-14,84843,2462,"[\""Monitor\"", \""Headphones\""]",477.6,{},262328,1,"""South America""" +2023-04-01,84844,5395,"[\""Monitor\"", \""Tablet\""]",1142.12,"{\""promo\"": \""20%\""}",99594,1,"""Africa""" +2023-07-15,84845,9385,"[\""Monitor\"", \""Keyboard\""]",2492.59,"{\""seasonal\"": \""25%\""}",155755,1,"""South America""" +2023-12-15,84846,9558,"[\""Phone\""]",2651.15,{},253632,1,"""North America""" +2024-02-03,84847,3938,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4478.87,{},237440,0,"""South America""" +2024-09-03,84848,1966,"[\""Headphones\""]",2427.6,"{\"": \""16%\""}",146569,1,"""Asia""" +2024-10-23,84849,2641,"[\""Keyboard\""]",4260.18,{},107367,1,"""North America""" +2023-10-04,84850,5504,"[\""Tablet\"", \""Headphones\""]",3439.41,{},51826,1,"""Asia""" +2024-09-11,84851,9271,"[\""Monitor\"", \""Tablet\""]",4191.28,{},242891,1,"""North America""" +2024-02-01,84852,66,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2893.69,{},141734,1,"""South America""" +2023-10-20,84853,9001,"[\""Keyboard\"", \""Monitor\""]",1459.48,{},92398,1,"""North America""" +2024-09-21,84854,6260,"[\""Charger\""]",2810.38,"{\""loyalty\"": \""17%\""}",114506,0,"""South America""" +2023-11-26,84855,4848,"[\""Charger\""]",4060.74,"{\""promo\"": \""5%\""}",298711,1,"""Europe""" +2024-03-16,84856,7961,"[\""Monitor\""]",228.38,{},248041,0,"""Asia""" +2023-03-02,84857,2587,"[\""Keyboard\"", \""Monitor\""]",1251.39,{},176298,1,"""North America""" +2023-12-17,84858,4554,"[\""Laptop\""]",3586.76,{},118332,1,"""Asia""" +2023-07-08,84859,5607,"[\""Keyboard\""]",2895.92,"{\"": \""29%\""}",26854,1,"""Asia""" +2024-11-26,84860,7106,"[\""Wireless Mouse\"", \""Keyboard\""]",362.22,"{\"": \""29%\""}",119582,1,"""Europe""" +2023-02-22,84861,2327,"[\""Wireless Mouse\""]",3213.61,{},22457,1,"""Asia""" +2024-10-31,84862,6461,"[\""Monitor\""]",4733.08,"{\""loyalty\"": \""24%\""}",31661,1,"""South America""" +2024-10-04,84863,7026,"[\""Laptop\""]",3021.44,{},250160,0,"""Africa""" +2023-11-04,84864,1016,"[\""Keyboard\""]",943.23,"{\""seasonal\"": \""25%\""}",201004,0,"""Africa""" +2024-02-18,84865,3185,"[\""Monitor\"", \""Laptop\""]",3219.08,{},3304,1,"""South America""" +2023-03-20,84866,6070,"[\""Phone\""]",257.21,{},74859,0,"""Asia""" +2024-04-20,84867,7201,"[\""Laptop\"", \""Tablet\""]",2065.54,{},213384,1,"""Africa""" +2024-09-11,84868,5591,"[\""Tablet\"", \""Charger\""]",1497.36,{},189164,0,"""North America""" +2024-03-13,84869,4404,"[\""Tablet\""]",4563.86,{},207704,1,"""South America""" +2023-09-07,84870,4492,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3915.35,{},237794,1,"""Europe""" +2024-05-28,84871,7668,"[\""Phone\"", \""Charger\""]",577.47,"{\""promo\"": \""18%\""}",101523,1,"""North America""" +2024-01-19,84872,283,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4791.5,"{\""seasonal\"": \""23%\""}",221512,0,"""North America""" +2023-12-26,84873,3876,"[\""Wireless Mouse\"", \""Headphones\""]",4152.01,{},199196,0,"""North America""" +2024-01-17,84874,56,"[\""Monitor\"", \""Tablet\""]",2015.16,"{\""seasonal\"": \""25%\""}",95103,0,"""Africa""" +2024-08-08,84875,9289,"[\""Keyboard\""]",3429.31,"{\""seasonal\"": \""18%\""}",82194,0,"""North America""" +2024-09-09,84876,2350,"[\""Tablet\"", \""Keyboard\""]",3135.65,"{\"": \""23%\""}",292833,0,"""North America""" +2023-09-29,84877,9417,"[\""Monitor\"", \""Wireless Mouse\""]",1176.79,"{\""loyalty\"": \""30%\""}",134674,0,"""Asia""" +2023-07-16,84878,2995,"[\""Monitor\""]",2954.0,{},205013,1,"""Asia""" +2023-02-23,84879,3338,"[\""Phone\"", \""Keyboard\""]",977.5,{},187784,0,"""Europe""" +2023-07-14,84880,4582,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1172.98,"{\""loyalty\"": \""15%\""}",37850,1,"""South America""" +2024-05-31,84881,8145,"[\""Tablet\""]",2581.33,{},259717,1,"""North America""" +2023-11-05,84882,5512,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2757.13,"{\""seasonal\"": \""27%\""}",259657,0,"""Asia""" +2024-12-17,84883,7607,"[\""Headphones\""]",3097.07,"{\"": \""24%\""}",42427,1,"""South America""" +2024-06-23,84884,7422,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2550.77,{},244105,0,"""Europe""" +2024-05-17,84885,8387,"[\""Monitor\""]",551.59,{},185703,0,"""Asia""" +2023-10-17,84886,911,"[\""Phone\"", \""Tablet\""]",2793.76,"{\""promo\"": \""17%\""}",85852,1,"""Europe""" +2024-04-17,84887,1135,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",406.39,"{\"": \""30%\""}",15344,0,"""North America""" +2023-12-18,84888,5751,"[\""Monitor\"", \""Tablet\""]",1379.09,{},181446,0,"""South America""" +2024-02-08,84889,1395,"[\""Keyboard\"", \""Monitor\""]",1197.28,"{\""seasonal\"": \""23%\""}",33773,1,"""Europe""" +2024-04-08,84890,5142,"[\""Laptop\"", \""Tablet\""]",4545.1,{},180063,1,"""Europe""" +2023-09-06,84891,718,"[\""Laptop\""]",1673.1,{},33776,0,"""Asia""" +2024-03-07,84892,3170,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2915.17,"{\""seasonal\"": \""12%\""}",265150,0,"""Africa""" +2023-07-20,84893,8695,"[\""Headphones\""]",218.36,{},122302,1,"""South America""" +2023-07-26,84894,7977,"[\""Keyboard\""]",3413.74,"{\""promo\"": \""29%\""}",265739,1,"""North America""" +2023-12-21,84895,3297,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3860.33,{},219768,1,"""South America""" +2023-12-06,84896,3918,"[\""Wireless Mouse\""]",2949.83,{},228556,0,"""South America""" +2023-12-17,84897,3125,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",857.53,{},30191,0,"""Asia""" +2024-07-26,84898,4419,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3382.85,{},219086,1,"""South America""" +2023-10-11,84899,6250,"[\""Wireless Mouse\""]",1659.69,"{\""promo\"": \""29%\""}",45724,0,"""Africa""" +2024-03-04,84900,4142,"[\""Headphones\"", \""Keyboard\""]",4527.93,{},20702,0,"""Africa""" +2024-12-09,84901,334,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3298.75,{},255371,1,"""North America""" +2024-06-29,84902,7697,"[\""Phone\"", \""Wireless Mouse\""]",405.64,{},159223,0,"""Africa""" +2023-01-04,84903,4439,"[\""Tablet\""]",3428.59,"{\""loyalty\"": \""15%\""}",275139,0,"""South America""" +2023-11-28,84904,8432,"[\""Headphones\""]",3990.86,{},100366,1,"""Asia""" +2024-08-22,84905,6145,"[\""Laptop\""]",3334.75,{},287615,0,"""Asia""" +2023-11-17,84906,5988,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4731.49,{},152300,1,"""Asia""" +2023-05-14,84907,6686,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2454.82,"{\""promo\"": \""29%\""}",165942,1,"""South America""" +2024-02-16,84908,7401,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4274.05,{},178718,0,"""North America""" +2023-05-24,84909,6522,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",3211.74,{},226873,1,"""Africa""" +2024-03-18,84910,7231,"[\""Tablet\""]",4436.98,"{\""loyalty\"": \""30%\""}",97764,0,"""South America""" +2023-05-01,84911,2449,"[\""Phone\"", \""Keyboard\""]",3196.09,"{\"": \""29%\""}",289888,1,"""Europe""" +2023-06-04,84912,991,"[\""Keyboard\"", \""Laptop\""]",1485.91,"{\""loyalty\"": \""12%\""}",33144,0,"""Africa""" +2023-10-17,84913,5062,"[\""Tablet\"", \""Monitor\""]",1862.38,"{\""loyalty\"": \""19%\""}",186992,0,"""South America""" +2024-01-24,84914,2349,"[\""Monitor\""]",4705.15,{},276408,1,"""Asia""" +2023-08-28,84915,848,"[\""Laptop\""]",4514.11,{},117982,0,"""Europe""" +2023-03-31,84916,8341,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2249.18,"{\""loyalty\"": \""10%\""}",119534,1,"""South America""" +2023-08-26,84917,4073,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4349.1,"{\""promo\"": \""11%\""}",186251,1,"""Asia""" +2024-01-04,84918,9634,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4048.15,"{\""loyalty\"": \""19%\""}",88115,0,"""Africa""" +2023-04-15,84919,2473,"[\""Charger\""]",2366.38,"{\""promo\"": \""21%\""}",3709,0,"""North America""" +2023-09-18,84920,414,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1649.64,"{\""promo\"": \""14%\""}",154771,0,"""South America""" +2023-01-10,84921,7428,"[\""Phone\"", \""Charger\"", \""Tablet\""]",221.08,"{\""seasonal\"": \""29%\""}",5242,0,"""South America""" +2024-08-25,84922,5447,"[\""Charger\"", \""Phone\""]",4818.59,{},204447,1,"""Africa""" +2023-04-05,84923,4457,"[\""Keyboard\""]",4262.85,"{\"": \""17%\""}",293297,1,"""North America""" +2024-09-19,84924,7022,"[\""Laptop\""]",458.74,"{\""loyalty\"": \""24%\""}",78720,0,"""Asia""" +2024-08-07,84925,8409,"[\""Charger\""]",2997.4,{},156770,1,"""Europe""" +2024-05-23,84926,97,"[\""Headphones\""]",799.12,{},174397,0,"""South America""" +2023-06-13,84927,2602,"[\""Keyboard\"", \""Wireless Mouse\""]",669.23,"{\""promo\"": \""8%\""}",197047,1,"""Europe""" +2023-05-06,84928,4247,"[\""Wireless Mouse\"", \""Monitor\""]",933.53,{},79676,1,"""Asia""" +2023-10-23,84929,2440,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1547.44,{},17651,1,"""Africa""" +2023-07-24,84930,1414,"[\""Charger\"", \""Monitor\""]",4430.3,"{\""seasonal\"": \""7%\""}",81707,0,"""Europe""" +2023-01-25,84931,6981,"[\""Headphones\"", \""Charger\""]",4597.54,"{\""promo\"": \""30%\""}",39829,1,"""Africa""" +2024-06-01,84932,4716,"[\""Phone\""]",2262.1,"{\""seasonal\"": \""17%\""}",51478,1,"""Asia""" +2023-04-24,84933,7983,"[\""Phone\"", \""Monitor\""]",2723.83,"{\""loyalty\"": \""20%\""}",82222,0,"""Africa""" +2023-12-16,84934,94,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4929.18,{},134262,1,"""Africa""" +2024-02-01,84935,1386,"[\""Laptop\""]",3391.73,{},185072,1,"""Africa""" +2024-03-29,84936,6867,"[\""Headphones\""]",1592.27,"{\"": \""16%\""}",290345,1,"""South America""" +2024-01-31,84937,4545,"[\""Wireless Mouse\"", \""Headphones\""]",1803.46,{},49904,1,"""Europe""" +2023-06-06,84938,3369,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3289.35,{},259220,0,"""North America""" +2023-11-01,84939,695,"[\""Laptop\""]",306.48,{},230635,1,"""Europe""" +2024-10-18,84940,3022,"[\""Keyboard\""]",2127.03,"{\""promo\"": \""17%\""}",51278,0,"""Asia""" +2023-04-06,84941,7916,"[\""Charger\"", \""Tablet\""]",1934.04,"{\"": \""11%\""}",51350,0,"""Asia""" +2023-11-08,84942,2960,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2998.42,{},67163,1,"""Asia""" +2024-09-26,84943,8580,"[\""Wireless Mouse\"", \""Charger\""]",323.29,{},288972,1,"""Africa""" +2023-06-10,84944,7333,"[\""Wireless Mouse\"", \""Charger\""]",746.69,"{\""seasonal\"": \""7%\""}",158471,1,"""South America""" +2024-11-18,84945,8838,"[\""Monitor\""]",4804.52,"{\""seasonal\"": \""18%\""}",134891,1,"""North America""" +2024-10-18,84946,8885,"[\""Keyboard\""]",4677.43,{},27668,0,"""Europe""" +2024-09-05,84947,3533,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2614.54,{},169804,0,"""Africa""" +2024-09-05,84948,3641,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",797.33,{},242672,0,"""Europe""" +2024-02-27,84949,3248,"[\""Laptop\""]",4561.29,{},234434,1,"""Africa""" +2024-05-31,84950,6083,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1308.28,{},41598,0,"""Africa""" +2023-02-26,84951,3347,"[\""Laptop\"", \""Headphones\""]",1595.55,"{\""promo\"": \""6%\""}",282494,0,"""Africa""" +2023-11-19,84952,3241,"[\""Charger\""]",3466.15,"{\""seasonal\"": \""16%\""}",71685,1,"""Europe""" +2024-04-21,84953,9958,"[\""Keyboard\""]",1181.86,"{\"": \""13%\""}",24535,0,"""Africa""" +2024-02-20,84954,7198,"[\""Keyboard\""]",4237.68,{},299721,1,"""Asia""" +2024-01-13,84955,2467,"[\""Wireless Mouse\"", \""Charger\""]",2404.96,"{\""loyalty\"": \""7%\""}",194170,1,"""North America""" +2024-12-29,84956,8273,"[\""Keyboard\"", \""Laptop\""]",3645.55,"{\""loyalty\"": \""24%\""}",111019,0,"""North America""" +2023-08-16,84957,3144,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2477.04,{},108016,0,"""Asia""" +2023-07-26,84958,7066,"[\""Monitor\"", \""Tablet\""]",966.81,"{\""promo\"": \""20%\""}",68527,0,"""South America""" +2023-03-22,84959,3683,"[\""Phone\""]",4742.79,"{\""loyalty\"": \""21%\""}",92032,1,"""Asia""" +2024-11-17,84960,4053,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4978.02,"{\""promo\"": \""14%\""}",204801,1,"""Europe""" +2024-06-26,84961,220,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",4352.91,{},29841,0,"""South America""" +2023-03-07,84962,4715,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",1125.69,{},33606,1,"""Africa""" +2024-01-06,84963,3790,"[\""Headphones\"", \""Keyboard\""]",4799.2,{},103177,1,"""South America""" +2023-06-01,84964,5857,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1886.85,"{\""loyalty\"": \""21%\""}",237744,1,"""Asia""" +2023-10-22,84965,6207,"[\""Laptop\"", \""Monitor\""]",3529.52,"{\""seasonal\"": \""25%\""}",21993,1,"""North America""" +2024-06-15,84966,7191,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4012.66,{},50158,1,"""Asia""" +2024-06-26,84967,3647,"[\""Tablet\""]",955.13,"{\""seasonal\"": \""10%\""}",6122,1,"""North America""" +2023-10-18,84968,786,"[\""Wireless Mouse\"", \""Laptop\""]",3676.74,"{\""promo\"": \""17%\""}",109639,0,"""Europe""" +2023-11-14,84969,5497,"[\""Headphones\""]",3921.14,{},109719,1,"""South America""" +2024-07-03,84970,746,"[\""Monitor\""]",3315.06,{},151893,0,"""Europe""" +2023-04-28,84971,2302,"[\""Wireless Mouse\""]",1080.75,"{\""seasonal\"": \""18%\""}",140793,0,"""Africa""" +2023-07-25,84972,9556,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3409.77,{},295898,1,"""North America""" +2024-01-14,84973,2271,"[\""Tablet\"", \""Laptop\""]",646.97,"{\""seasonal\"": \""30%\""}",232246,1,"""Asia""" +2023-05-11,84974,1891,"[\""Phone\""]",3631.84,{},50880,1,"""Asia""" +2023-03-20,84975,344,"[\""Charger\""]",2393.14,"{\""promo\"": \""16%\""}",140609,1,"""Asia""" +2024-08-05,84976,7383,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",766.14,{},275296,1,"""North America""" +2024-05-04,84977,6608,"[\""Tablet\""]",4430.82,{},130831,0,"""South America""" +2023-11-05,84978,1048,"[\""Wireless Mouse\"", \""Monitor\""]",2270.31,{},37504,0,"""Europe""" +2023-05-13,84979,2594,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2099.18,"{\""promo\"": \""26%\""}",254888,1,"""Asia""" +2023-03-10,84980,2510,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1451.91,"{\"": \""26%\""}",100975,1,"""South America""" +2024-12-29,84981,2301,"[\""Tablet\"", \""Headphones\""]",3564.36,{},151795,0,"""North America""" +2024-08-02,84982,6293,"[\""Tablet\"", \""Phone\""]",4951.14,"{\""loyalty\"": \""6%\""}",46978,0,"""Africa""" +2023-10-29,84983,8522,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",316.23,{},46285,0,"""South America""" +2023-02-03,84984,8603,"[\""Monitor\""]",495.43,{},11594,0,"""Asia""" +2023-07-27,84985,7334,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2812.61,{},180020,0,"""Europe""" +2023-06-25,84986,9692,"[\""Headphones\""]",622.83,"{\"": \""26%\""}",263059,1,"""Asia""" +2023-04-03,84987,3969,"[\""Monitor\""]",577.11,{},239980,1,"""North America""" +2023-05-11,84988,4073,"[\""Tablet\""]",969.48,"{\""loyalty\"": \""29%\""}",137459,1,"""Europe""" +2024-02-22,84989,4492,"[\""Phone\""]",2311.07,{},59925,0,"""Africa""" +2024-04-20,84990,8430,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1184.73,"{\""promo\"": \""8%\""}",160966,1,"""Africa""" +2023-08-26,84991,1226,"[\""Headphones\"", \""Wireless Mouse\""]",2863.4,{},174721,1,"""Africa""" +2023-10-19,84992,955,"[\""Phone\""]",4779.49,"{\""loyalty\"": \""24%\""}",226868,1,"""North America""" +2024-08-16,84993,4077,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1370.38,{},185050,1,"""South America""" +2024-01-18,84994,5996,"[\""Wireless Mouse\"", \""Keyboard\""]",4678.71,{},259417,0,"""Africa""" +2023-01-08,84995,2302,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2029.97,{},221590,1,"""Europe""" +2023-01-09,84996,6246,"[\""Laptop\"", \""Tablet\""]",2493.83,{},289959,0,"""Africa""" +2023-03-25,84997,7548,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3210.61,{},28658,1,"""North America""" +2023-02-23,84998,3547,"[\""Phone\"", \""Tablet\""]",935.07,"{\""loyalty\"": \""16%\""}",47757,0,"""Africa""" +2023-11-02,84999,563,"[\""Keyboard\""]",2936.73,"{\""loyalty\"": \""17%\""}",229667,0,"""South America""" +2024-01-13,85000,9601,"[\""Phone\""]",4525.82,{},170874,1,"""South America""" +2023-08-30,85001,942,"[\""Tablet\"", \""Monitor\""]",785.33,"{\""loyalty\"": \""26%\""}",42448,1,"""Asia""" +2024-02-14,85002,853,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1213.67,"{\""loyalty\"": \""15%\""}",253513,1,"""South America""" +2024-03-23,85003,7046,"[\""Keyboard\""]",2540.08,"{\"": \""15%\""}",166926,0,"""Europe""" +2023-10-03,85004,105,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1442.67,{},238231,1,"""Asia""" +2024-08-18,85005,6507,"[\""Keyboard\""]",4456.39,"{\""promo\"": \""22%\""}",88146,1,"""Africa""" +2023-05-30,85006,5196,"[\""Laptop\""]",1545.19,{},248099,1,"""Asia""" +2023-06-29,85007,1254,"[\""Wireless Mouse\"", \""Keyboard\""]",589.05,"{\""promo\"": \""15%\""}",230505,0,"""North America""" +2024-06-25,85008,6168,"[\""Monitor\"", \""Wireless Mouse\""]",2566.97,"{\"": \""8%\""}",218422,0,"""Africa""" +2023-05-18,85009,3849,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2342.3,{},283981,0,"""South America""" +2024-12-09,85010,7370,"[\""Tablet\"", \""Laptop\""]",3462.53,"{\""promo\"": \""15%\""}",3215,1,"""Africa""" +2024-06-20,85011,4972,"[\""Laptop\""]",4584.44,{},217866,1,"""North America""" +2024-12-26,85012,9561,"[\""Monitor\"", \""Keyboard\""]",1773.83,"{\""loyalty\"": \""7%\""}",15605,1,"""North America""" +2024-07-30,85013,2613,"[\""Wireless Mouse\""]",3820.29,{},164057,0,"""North America""" +2024-03-14,85014,4802,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4902.31,"{\"": \""21%\""}",42020,0,"""Europe""" +2023-08-03,85015,6544,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1751.58,"{\""promo\"": \""26%\""}",253789,0,"""Africa""" +2023-12-02,85016,4533,"[\""Laptop\"", \""Charger\""]",2244.13,{},196312,1,"""Asia""" +2024-09-03,85017,3619,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2098.42,"{\"": \""30%\""}",297472,1,"""Europe""" +2023-02-01,85018,9113,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1039.25,"{\"": \""26%\""}",211118,1,"""North America""" +2024-08-04,85019,3170,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",692.4,{},229202,1,"""Europe""" +2024-01-23,85020,2900,"[\""Headphones\"", \""Keyboard\""]",2245.67,"{\"": \""19%\""}",248923,0,"""Asia""" +2023-09-13,85021,6980,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1688.27,"{\""promo\"": \""15%\""}",110326,1,"""Africa""" +2023-10-10,85022,670,"[\""Phone\"", \""Headphones\""]",2729.78,"{\""seasonal\"": \""17%\""}",109545,1,"""North America""" +2023-02-20,85023,6709,"[\""Keyboard\""]",3856.66,{},203262,1,"""Europe""" +2023-05-22,85024,4868,"[\""Headphones\"", \""Laptop\""]",1115.79,"{\"": \""16%\""}",24990,0,"""South America""" +2024-03-30,85025,1078,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4221.24,"{\"": \""5%\""}",24647,0,"""North America""" +2023-10-04,85026,7064,"[\""Laptop\""]",3762.96,"{\""loyalty\"": \""25%\""}",140539,0,"""Africa""" +2023-07-11,85027,9736,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3070.19,"{\""seasonal\"": \""26%\""}",186444,0,"""South America""" +2024-06-20,85028,9640,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1398.24,{},117864,1,"""Asia""" +2024-01-02,85029,5866,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1142.44,"{\""loyalty\"": \""28%\""}",35286,1,"""Africa""" +2023-07-18,85030,7685,"[\""Keyboard\"", \""Tablet\""]",4676.25,"{\""loyalty\"": \""23%\""}",189376,1,"""Europe""" +2024-10-22,85031,3936,"[\""Monitor\""]",432.38,"{\""loyalty\"": \""15%\""}",247955,0,"""Europe""" +2023-12-01,85032,6704,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4108.7,{},138917,1,"""Asia""" +2024-08-02,85033,8812,"[\""Wireless Mouse\""]",4541.06,{},164760,0,"""South America""" +2023-10-24,85034,6838,"[\""Wireless Mouse\""]",4595.92,"{\"": \""6%\""}",6762,0,"""Africa""" +2023-02-12,85035,9062,"[\""Phone\"", \""Charger\""]",4047.23,"{\""loyalty\"": \""5%\""}",210926,0,"""North America""" +2023-07-29,85036,3198,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1104.82,{},216637,1,"""South America""" +2023-06-30,85037,2871,"[\""Headphones\"", \""Phone\""]",684.44,{},55289,1,"""South America""" +2024-04-30,85038,5025,"[\""Phone\"", \""Headphones\""]",3885.36,{},276035,0,"""North America""" +2024-03-08,85039,4051,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2215.74,"{\"": \""28%\""}",103548,0,"""Europe""" +2023-09-24,85040,7039,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2775.04,"{\"": \""11%\""}",36353,0,"""Europe""" +2024-06-06,85041,693,"[\""Headphones\"", \""Keyboard\""]",4906.95,"{\""promo\"": \""9%\""}",80215,0,"""North America""" +2023-04-06,85042,3377,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3108.36,"{\""loyalty\"": \""8%\""}",284968,1,"""Europe""" +2023-04-23,85043,4437,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3910.69,{},2106,1,"""North America""" +2024-04-04,85044,5221,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",706.52,"{\""loyalty\"": \""21%\""}",247219,1,"""Asia""" +2023-04-11,85045,9408,"[\""Tablet\"", \""Headphones\""]",2071.44,{},246660,1,"""Africa""" +2023-03-18,85046,7908,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3479.07,{},217093,0,"""Europe""" +2024-08-16,85047,55,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4939.25,"{\""seasonal\"": \""6%\""}",203160,1,"""Europe""" +2023-11-09,85048,5845,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1663.13,{},12716,1,"""Europe""" +2023-05-31,85049,6640,"[\""Wireless Mouse\"", \""Keyboard\""]",2902.29,{},172154,0,"""Europe""" +2024-07-08,85050,8004,"[\""Charger\""]",1609.21,"{\""loyalty\"": \""18%\""}",283556,0,"""Asia""" +2023-03-20,85051,8366,"[\""Charger\"", \""Laptop\""]",2520.04,{},181094,1,"""South America""" +2024-02-27,85052,8233,"[\""Laptop\"", \""Tablet\""]",2202.76,"{\""seasonal\"": \""11%\""}",32915,1,"""Asia""" +2024-01-17,85053,9447,"[\""Phone\"", \""Tablet\""]",4761.82,"{\"": \""13%\""}",201775,0,"""Europe""" +2023-08-14,85054,2988,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1827.55,{},255078,1,"""Europe""" +2024-12-12,85055,3961,"[\""Phone\"", \""Tablet\""]",3247.62,{},34241,1,"""North America""" +2024-04-07,85056,1340,"[\""Keyboard\"", \""Tablet\""]",3400.6,"{\""loyalty\"": \""6%\""}",138070,1,"""Africa""" +2023-08-31,85057,409,"[\""Charger\""]",1506.62,"{\""promo\"": \""17%\""}",193876,0,"""North America""" +2024-11-08,85058,6946,"[\""Phone\""]",3528.99,{},34883,1,"""Europe""" +2023-01-28,85059,9219,"[\""Headphones\""]",354.14,{},125260,1,"""Asia""" +2023-08-02,85060,6168,"[\""Laptop\""]",4873.34,{},277107,0,"""North America""" +2024-03-02,85061,5281,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1404.55,"{\""promo\"": \""9%\""}",139327,1,"""South America""" +2024-05-19,85062,3703,"[\""Headphones\""]",2845.79,{},150916,0,"""Europe""" +2023-11-14,85063,542,"[\""Phone\"", \""Headphones\""]",4989.99,{},219475,1,"""Asia""" +2024-12-17,85064,1692,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1199.69,{},68092,0,"""Africa""" +2024-09-09,85065,9582,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2030.66,{},192660,0,"""Europe""" +2024-06-28,85066,5762,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2490.34,"{\""loyalty\"": \""6%\""}",153663,1,"""Asia""" +2023-04-04,85067,8046,"[\""Wireless Mouse\"", \""Tablet\""]",3115.17,{},56455,0,"""South America""" +2024-01-24,85068,447,"[\""Tablet\"", \""Laptop\""]",4277.29,{},85405,1,"""Asia""" +2023-05-25,85069,4502,"[\""Laptop\"", \""Wireless Mouse\""]",816.36,{},201860,0,"""Europe""" +2024-06-18,85070,4460,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",236.71,"{\""promo\"": \""14%\""}",198310,1,"""Asia""" +2024-09-08,85071,8556,"[\""Laptop\"", \""Tablet\""]",1139.09,"{\"": \""28%\""}",136107,0,"""Asia""" +2023-04-20,85072,9791,"[\""Keyboard\""]",480.86,"{\""promo\"": \""27%\""}",129462,0,"""South America""" +2023-12-05,85073,9373,"[\""Keyboard\""]",1611.3,{},12936,0,"""Europe""" +2024-10-31,85074,4857,"[\""Headphones\"", \""Keyboard\""]",4344.42,{},63357,0,"""Africa""" +2023-12-01,85075,3855,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3759.16,"{\""loyalty\"": \""17%\""}",154219,1,"""Africa""" +2023-08-15,85076,6734,"[\""Headphones\""]",3071.48,"{\""promo\"": \""13%\""}",168490,1,"""Europe""" +2024-06-21,85077,3574,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3440.37,{},263211,1,"""Asia""" +2024-03-18,85078,7117,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3322.36,{},290996,1,"""North America""" +2023-06-01,85079,577,"[\""Monitor\""]",2386.99,"{\""loyalty\"": \""29%\""}",121478,0,"""Europe""" +2023-01-03,85080,4454,"[\""Tablet\""]",904.23,"{\"": \""21%\""}",95192,1,"""Africa""" +2024-10-16,85081,2174,"[\""Monitor\"", \""Keyboard\""]",276.85,{},224005,0,"""Europe""" +2023-04-19,85082,3440,"[\""Monitor\""]",2291.32,{},45266,0,"""Africa""" +2023-01-24,85083,9684,"[\""Keyboard\""]",1162.1,{},218639,0,"""Africa""" +2024-01-16,85084,2548,"[\""Charger\"", \""Tablet\""]",4647.19,{},62237,1,"""North America""" +2024-01-24,85085,467,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2461.48,"{\""promo\"": \""27%\""}",239453,0,"""Asia""" +2023-03-13,85086,6449,"[\""Monitor\"", \""Laptop\""]",4195.08,{},96750,1,"""North America""" +2024-09-02,85087,3616,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",893.27,{},87095,1,"""Africa""" +2024-02-23,85088,8278,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1267.81,{},170025,1,"""Asia""" +2024-10-31,85089,3794,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",1389.61,"{\"": \""12%\""}",236459,0,"""Africa""" +2023-10-09,85090,9262,"[\""Charger\""]",4869.21,"{\""seasonal\"": \""9%\""}",295022,1,"""Asia""" +2024-11-20,85091,6004,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2578.69,{},296632,0,"""Africa""" +2024-03-14,85092,9311,"[\""Phone\"", \""Monitor\""]",3711.2,{},169991,1,"""North America""" +2023-05-09,85093,4935,"[\""Monitor\"", \""Charger\""]",1794.38,"{\""seasonal\"": \""5%\""}",173770,0,"""North America""" +2023-11-22,85094,9696,"[\""Wireless Mouse\"", \""Charger\""]",3667.6,{},137115,0,"""Europe""" +2024-03-14,85095,1397,"[\""Keyboard\"", \""Headphones\""]",254.9,{},233807,0,"""South America""" +2024-05-13,85096,5246,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3573.88,{},102058,0,"""Africa""" +2024-05-26,85097,6817,"[\""Laptop\"", \""Monitor\""]",2565.37,{},27324,0,"""Africa""" +2023-07-17,85098,6329,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4431.68,{},221728,1,"""South America""" +2024-02-05,85099,8648,"[\""Headphones\""]",2028.16,"{\"": \""8%\""}",288129,0,"""South America""" +2024-04-14,85100,4274,"[\""Charger\""]",3137.4,"{\""loyalty\"": \""23%\""}",69352,1,"""Asia""" +2024-06-05,85101,9387,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1721.16,"{\""loyalty\"": \""27%\""}",217303,0,"""North America""" +2024-05-09,85102,3569,"[\""Phone\"", \""Charger\"", \""Laptop\""]",960.24,{},6564,0,"""Asia""" +2023-07-17,85103,2587,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4081.47,"{\""seasonal\"": \""6%\""}",298565,0,"""South America""" +2024-12-05,85104,6854,"[\""Wireless Mouse\""]",1408.52,"{\""seasonal\"": \""30%\""}",208597,0,"""Africa""" +2023-10-15,85105,7507,"[\""Monitor\""]",1604.61,{},92174,1,"""Europe""" +2023-10-09,85106,707,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3583.06,{},72194,0,"""South America""" +2024-01-23,85107,3530,"[\""Monitor\"", \""Phone\""]",1170.05,{},250409,1,"""Asia""" +2023-01-10,85108,5007,"[\""Wireless Mouse\"", \""Keyboard\""]",1195.42,{},203036,1,"""Africa""" +2023-01-08,85109,4940,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3833.56,{},281137,0,"""Africa""" +2023-04-18,85110,3068,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2203.15,{},166453,0,"""Asia""" +2024-12-06,85111,8899,"[\""Monitor\"", \""Headphones\""]",4694.94,"{\""promo\"": \""9%\""}",289828,0,"""Africa""" +2023-06-19,85112,5960,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1512.25,{},51829,0,"""South America""" +2023-04-14,85113,7614,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2858.74,{},168367,1,"""South America""" +2024-01-27,85114,8805,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2670.78,"{\""seasonal\"": \""27%\""}",202788,1,"""North America""" +2023-09-10,85115,5929,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3883.56,"{\"": \""15%\""}",198469,1,"""South America""" +2024-09-16,85116,2513,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",419.61,"{\""seasonal\"": \""26%\""}",295572,1,"""Africa""" +2024-11-12,85117,6418,"[\""Monitor\""]",689.45,"{\""loyalty\"": \""28%\""}",185141,0,"""Asia""" +2023-02-01,85118,4262,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2942.62,"{\""promo\"": \""19%\""}",157989,1,"""Africa""" +2023-06-27,85119,7898,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4844.15,{},258233,1,"""North America""" +2024-05-17,85120,3904,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",490.44,{},223554,1,"""South America""" +2023-09-07,85121,3359,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",536.96,"{\"": \""7%\""}",299140,1,"""Asia""" +2024-10-29,85122,4171,"[\""Headphones\"", \""Keyboard\""]",1462.44,{},14612,0,"""Africa""" +2023-07-31,85123,3524,"[\""Charger\"", \""Wireless Mouse\""]",353.56,{},114162,1,"""Asia""" +2024-11-22,85124,5531,"[\""Phone\"", \""Wireless Mouse\""]",1402.15,"{\""seasonal\"": \""28%\""}",19267,1,"""Europe""" +2024-02-20,85125,4411,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2413.65,"{\""loyalty\"": \""10%\""}",37660,1,"""Africa""" +2024-08-28,85126,9206,"[\""Headphones\"", \""Wireless Mouse\""]",2981.93,{},94711,0,"""Asia""" +2024-09-11,85127,6704,"[\""Phone\"", \""Keyboard\""]",3529.22,"{\"": \""18%\""}",41329,1,"""Asia""" +2023-04-08,85128,8593,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1574.33,{},190331,1,"""Asia""" +2023-05-07,85129,9013,"[\""Charger\""]",1589.14,"{\""promo\"": \""13%\""}",74031,0,"""South America""" +2023-01-06,85130,1798,"[\""Headphones\""]",4368.15,{},251274,1,"""North America""" +2024-07-26,85131,8291,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3778.14,{},241880,0,"""North America""" +2024-08-17,85132,5396,"[\""Keyboard\"", \""Monitor\""]",1626.78,"{\""loyalty\"": \""23%\""}",128598,1,"""North America""" +2023-04-17,85133,3483,"[\""Laptop\""]",4525.85,"{\""loyalty\"": \""27%\""}",286897,0,"""South America""" +2024-12-21,85134,6353,"[\""Keyboard\"", \""Phone\""]",4772.72,{},180653,1,"""Africa""" +2023-10-07,85135,7501,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2745.35,"{\""seasonal\"": \""24%\""}",261078,1,"""North America""" +2024-09-07,85136,5803,"[\""Phone\"", \""Charger\""]",3431.83,{},254104,0,"""Europe""" +2024-12-30,85137,4800,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1805.22,{},199663,1,"""Africa""" +2024-01-13,85138,1519,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4659.56,"{\""promo\"": \""13%\""}",254275,1,"""Europe""" +2024-01-18,85139,4496,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1094.91,"{\""loyalty\"": \""20%\""}",173661,1,"""Asia""" +2023-10-08,85140,6283,"[\""Tablet\""]",591.57,{},296027,1,"""Africa""" +2023-11-28,85141,6170,"[\""Tablet\""]",2666.0,"{\"": \""20%\""}",96513,0,"""South America""" +2023-06-05,85142,3125,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3371.73,{},63091,1,"""Asia""" +2023-02-11,85143,15,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1009.71,{},232067,1,"""North America""" +2023-06-16,85144,4144,"[\""Wireless Mouse\""]",2688.8,"{\""loyalty\"": \""6%\""}",219601,1,"""Africa""" +2024-08-30,85145,9107,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4008.27,"{\"": \""9%\""}",266518,0,"""Asia""" +2023-11-17,85146,4693,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4783.58,{},141983,1,"""Europe""" +2023-07-07,85147,6287,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1771.86,{},186655,1,"""South America""" +2023-08-05,85148,6915,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3051.95,{},123435,0,"""Africa""" +2024-02-13,85149,9174,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1786.37,"{\""loyalty\"": \""28%\""}",290737,0,"""Asia""" +2023-03-31,85150,2876,"[\""Phone\"", \""Laptop\""]",4550.35,"{\""loyalty\"": \""10%\""}",275219,1,"""North America""" +2023-08-25,85151,8271,"[\""Keyboard\"", \""Wireless Mouse\""]",4258.49,{},135220,0,"""Asia""" +2024-06-05,85152,6148,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1957.12,"{\""seasonal\"": \""18%\""}",150439,1,"""Asia""" +2023-06-27,85153,2045,"[\""Wireless Mouse\""]",117.4,{},4251,1,"""Asia""" +2023-05-31,85154,6487,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",942.52,{},165834,1,"""North America""" +2023-09-15,85155,5723,"[\""Phone\""]",2687.02,{},259056,0,"""Europe""" +2023-08-15,85156,9029,"[\""Laptop\"", \""Headphones\""]",2150.8,"{\""loyalty\"": \""12%\""}",223332,1,"""South America""" +2024-04-07,85157,1176,"[\""Keyboard\""]",2921.47,"{\""loyalty\"": \""24%\""}",101830,0,"""Africa""" +2024-11-14,85158,5202,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3790.09,{},260616,0,"""Africa""" +2023-02-01,85159,1306,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4422.12,"{\""promo\"": \""30%\""}",158275,1,"""South America""" +2023-11-12,85160,2576,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3672.65,{},56356,0,"""Asia""" +2023-03-03,85161,9935,"[\""Headphones\"", \""Wireless Mouse\""]",2531.49,{},213341,1,"""Europe""" +2024-06-23,85162,5561,"[\""Headphones\""]",221.94,"{\""loyalty\"": \""12%\""}",66802,0,"""Europe""" +2024-11-21,85163,6028,"[\""Wireless Mouse\"", \""Keyboard\""]",1680.88,{},36978,0,"""Europe""" +2023-09-05,85164,5689,"[\""Phone\"", \""Charger\""]",3256.79,{},177438,0,"""Africa""" +2023-08-02,85165,9605,"[\""Phone\"", \""Wireless Mouse\""]",1135.65,{},181114,1,"""North America""" +2024-01-26,85166,5556,"[\""Charger\"", \""Phone\"", \""Tablet\""]",705.5,"{\""promo\"": \""21%\""}",252344,0,"""South America""" +2023-02-25,85167,8451,"[\""Phone\""]",655.37,{},72853,0,"""Asia""" +2024-03-19,85168,4123,"[\""Wireless Mouse\""]",3812.76,"{\""loyalty\"": \""7%\""}",242006,0,"""North America""" +2024-07-10,85169,9067,"[\""Phone\""]",923.22,"{\""promo\"": \""22%\""}",72424,0,"""Africa""" +2024-05-08,85170,2321,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3822.73,{},128806,0,"""North America""" +2023-07-21,85171,8460,"[\""Laptop\""]",3810.81,{},277991,0,"""Asia""" +2024-01-21,85172,4787,"[\""Phone\""]",3120.77,{},271556,0,"""North America""" +2023-08-31,85173,1050,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",690.41,{},283804,1,"""Europe""" +2024-09-19,85174,5931,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",628.9,{},108445,0,"""North America""" +2023-08-15,85175,5287,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1531.74,{},206529,0,"""Africa""" +2023-02-10,85176,6966,"[\""Tablet\""]",3053.41,{},268036,0,"""South America""" +2023-05-13,85177,376,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3334.01,"{\""seasonal\"": \""30%\""}",153864,0,"""North America""" +2024-04-03,85178,1472,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2136.88,"{\"": \""22%\""}",155023,1,"""North America""" +2024-12-24,85179,54,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3604.64,"{\""seasonal\"": \""19%\""}",281668,0,"""Africa""" +2024-03-03,85180,2621,"[\""Headphones\""]",688.53,{},277020,1,"""North America""" +2023-11-04,85181,2227,"[\""Headphones\""]",1506.44,"{\""loyalty\"": \""18%\""}",265086,0,"""North America""" +2024-02-23,85182,3732,"[\""Charger\""]",2263.55,"{\""promo\"": \""9%\""}",82888,1,"""Asia""" +2024-03-29,85183,8864,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1746.25,{},260186,0,"""Europe""" +2023-02-06,85184,6890,"[\""Tablet\"", \""Monitor\""]",3284.04,"{\""loyalty\"": \""16%\""}",94373,1,"""Europe""" +2023-06-25,85185,1446,"[\""Keyboard\""]",760.4,{},49128,0,"""Asia""" +2023-02-12,85186,5580,"[\""Tablet\"", \""Laptop\""]",1707.39,"{\""seasonal\"": \""13%\""}",227225,0,"""South America""" +2024-09-13,85187,7433,"[\""Phone\"", \""Headphones\""]",4858.4,"{\""seasonal\"": \""14%\""}",100778,1,"""Asia""" +2023-11-24,85188,9133,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",310.1,"{\""promo\"": \""20%\""}",115326,0,"""North America""" +2023-08-22,85189,5961,"[\""Headphones\"", \""Monitor\""]",437.34,"{\""seasonal\"": \""8%\""}",117209,0,"""North America""" +2024-05-02,85190,4865,"[\""Laptop\"", \""Phone\""]",677.96,{},216784,0,"""South America""" +2023-05-29,85191,4176,"[\""Phone\"", \""Laptop\""]",2544.68,"{\""loyalty\"": \""26%\""}",128040,0,"""Africa""" +2024-11-17,85192,6023,"[\""Laptop\""]",4339.69,"{\""seasonal\"": \""14%\""}",19403,1,"""Africa""" +2023-06-29,85193,2916,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4663.42,"{\""promo\"": \""5%\""}",203669,0,"""Asia""" +2024-11-21,85194,826,"[\""Tablet\""]",886.51,{},135601,0,"""Europe""" +2024-06-01,85195,5588,"[\""Tablet\""]",896.41,{},281422,0,"""Europe""" +2024-02-17,85196,2300,"[\""Phone\""]",3840.47,"{\"": \""15%\""}",23052,0,"""North America""" +2023-03-22,85197,6384,"[\""Phone\""]",2856.56,"{\""loyalty\"": \""19%\""}",234891,0,"""North America""" +2024-06-14,85198,5557,"[\""Wireless Mouse\"", \""Tablet\""]",4317.81,{},261497,1,"""Asia""" +2023-09-27,85199,2912,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4195.71,{},87529,1,"""Asia""" +2023-07-13,85200,8317,"[\""Monitor\""]",1779.46,{},144076,0,"""Asia""" +2023-06-19,85201,9107,"[\""Phone\"", \""Monitor\""]",1445.03,"{\""seasonal\"": \""29%\""}",246760,1,"""North America""" +2023-09-02,85202,284,"[\""Keyboard\"", \""Charger\""]",2453.09,"{\""promo\"": \""30%\""}",112708,0,"""Europe""" +2023-03-09,85203,7635,"[\""Keyboard\"", \""Wireless Mouse\""]",3963.68,"{\""promo\"": \""29%\""}",191427,1,"""Africa""" +2024-03-13,85204,4330,"[\""Headphones\""]",4438.28,"{\"": \""26%\""}",212183,0,"""North America""" +2023-06-13,85205,6372,"[\""Tablet\"", \""Wireless Mouse\""]",106.41,{},54380,1,"""North America""" +2023-03-26,85206,733,"[\""Headphones\""]",1327.34,{},115875,1,"""South America""" +2024-06-28,85207,38,"[\""Tablet\""]",1224.01,{},155947,1,"""Europe""" +2024-06-27,85208,1763,"[\""Wireless Mouse\""]",1851.2,"{\"": \""8%\""}",211017,1,"""North America""" +2023-10-23,85209,6604,"[\""Keyboard\"", \""Tablet\""]",4162.24,"{\"": \""22%\""}",271287,0,"""Africa""" +2024-10-28,85210,9587,"[\""Phone\""]",1814.66,{},74672,1,"""North America""" +2023-07-13,85211,1277,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2331.62,{},239112,0,"""Africa""" +2023-12-17,85212,6376,"[\""Tablet\"", \""Monitor\""]",1985.11,{},184564,0,"""North America""" +2023-08-18,85213,524,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4170.33,{},111855,0,"""North America""" +2023-10-03,85214,9048,"[\""Laptop\"", \""Tablet\""]",2506.06,{},1022,1,"""South America""" +2024-10-11,85215,1188,"[\""Charger\"", \""Keyboard\""]",402.08,{},171846,0,"""Asia""" +2023-02-07,85216,8232,"[\""Headphones\"", \""Charger\""]",2782.89,"{\""loyalty\"": \""17%\""}",279615,1,"""North America""" +2023-04-19,85217,5383,"[\""Laptop\"", \""Keyboard\""]",3571.6,"{\"": \""17%\""}",124990,1,"""Africa""" +2023-09-14,85218,2712,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1199.85,"{\""promo\"": \""6%\""}",134961,0,"""Europe""" +2024-12-29,85219,9979,"[\""Charger\""]",2582.42,{},38201,1,"""North America""" +2024-04-30,85220,3862,"[\""Monitor\""]",2904.82,"{\""seasonal\"": \""21%\""}",257274,0,"""Asia""" +2024-03-30,85221,4062,"[\""Charger\""]",2050.02,"{\""seasonal\"": \""29%\""}",26451,0,"""Asia""" +2024-06-26,85222,9212,"[\""Wireless Mouse\"", \""Laptop\""]",1737.8,"{\""loyalty\"": \""11%\""}",260118,1,"""Asia""" +2024-01-06,85223,6803,"[\""Tablet\""]",2231.04,{},226655,0,"""Africa""" +2024-01-15,85224,1665,"[\""Wireless Mouse\"", \""Keyboard\""]",4279.76,{},283159,0,"""North America""" +2024-04-22,85225,1293,"[\""Phone\""]",1237.74,{},70082,1,"""Asia""" +2024-06-07,85226,729,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4311.92,{},233759,0,"""South America""" +2024-09-28,85227,8234,"[\""Wireless Mouse\""]",3078.07,"{\""loyalty\"": \""18%\""}",62809,0,"""Asia""" +2023-11-03,85228,6330,"[\""Keyboard\"", \""Laptop\""]",1200.81,{},21297,1,"""Asia""" +2024-11-06,85229,5015,"[\""Keyboard\"", \""Phone\""]",4059.16,{},207114,1,"""North America""" +2024-07-28,85230,6409,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4533.26,"{\""promo\"": \""16%\""}",176627,0,"""Europe""" +2024-10-31,85231,8023,"[\""Phone\"", \""Laptop\""]",4212.9,{},253351,0,"""Asia""" +2023-12-24,85232,6211,"[\""Laptop\"", \""Charger\""]",3350.03,{},118573,0,"""North America""" +2023-06-23,85233,3672,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3220.63,{},227782,1,"""Europe""" +2024-12-14,85234,5671,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4691.79,{},175575,1,"""Europe""" +2024-08-19,85235,3975,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4266.66,{},11702,1,"""Europe""" +2023-01-28,85236,2391,"[\""Tablet\"", \""Phone\""]",1580.84,{},161326,0,"""Africa""" +2024-11-28,85237,9013,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3534.68,{},13426,1,"""Africa""" +2024-10-01,85238,8298,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",78.45,"{\""loyalty\"": \""20%\""}",143944,0,"""Europe""" +2024-05-06,85239,6041,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",189.64,"{\"": \""27%\""}",122087,1,"""South America""" +2024-05-25,85240,6929,"[\""Keyboard\"", \""Monitor\""]",1165.91,{},278697,0,"""Europe""" +2024-04-09,85241,4265,"[\""Laptop\"", \""Keyboard\""]",3172.55,{},267476,0,"""North America""" +2024-09-30,85242,7973,"[\""Wireless Mouse\"", \""Laptop\""]",475.33,"{\""seasonal\"": \""28%\""}",62416,0,"""Africa""" +2024-05-25,85243,2520,"[\""Charger\"", \""Phone\""]",205.52,"{\"": \""8%\""}",184576,0,"""Europe""" +2023-03-01,85244,6091,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2111.64,"{\""seasonal\"": \""21%\""}",43992,0,"""North America""" +2023-04-08,85245,8063,"[\""Wireless Mouse\""]",617.21,"{\""promo\"": \""23%\""}",61625,0,"""North America""" +2023-11-05,85246,1637,"[\""Wireless Mouse\"", \""Monitor\""]",394.36,"{\""loyalty\"": \""5%\""}",220714,0,"""Asia""" +2023-03-03,85247,5865,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1127.41,"{\""seasonal\"": \""22%\""}",53604,0,"""Asia""" +2023-02-23,85248,41,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4700.73,{},23023,1,"""Asia""" +2024-04-27,85249,3307,"[\""Keyboard\"", \""Headphones\""]",2516.56,"{\""loyalty\"": \""17%\""}",219706,1,"""Asia""" +2024-12-04,85250,3464,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2492.16,{},165694,1,"""North America""" +2023-12-06,85251,4858,"[\""Monitor\""]",3683.26,"{\""seasonal\"": \""9%\""}",124012,0,"""North America""" +2023-02-01,85252,4732,"[\""Charger\""]",4790.02,"{\""promo\"": \""5%\""}",114215,0,"""South America""" +2024-02-01,85253,7798,"[\""Laptop\""]",3665.28,"{\""seasonal\"": \""28%\""}",42062,1,"""North America""" +2023-11-06,85254,5643,"[\""Headphones\"", \""Laptop\""]",4998.51,"{\""seasonal\"": \""15%\""}",82179,0,"""North America""" +2023-07-10,85255,1092,"[\""Tablet\""]",2020.92,{},206011,0,"""North America""" +2024-11-02,85256,608,"[\""Wireless Mouse\""]",456.59,{},53999,1,"""North America""" +2024-03-30,85257,7142,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3835.06,"{\""loyalty\"": \""29%\""}",232330,0,"""Asia""" +2024-05-23,85258,3692,"[\""Charger\""]",519.77,{},208659,0,"""North America""" +2023-04-11,85259,8959,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4309.69,{},92024,1,"""North America""" +2023-08-15,85260,9324,"[\""Monitor\"", \""Headphones\""]",305.83,{},47881,0,"""Europe""" +2023-07-16,85261,7853,"[\""Laptop\""]",643.81,"{\""seasonal\"": \""30%\""}",243521,1,"""South America""" +2024-09-12,85262,6797,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2167.45,"{\""seasonal\"": \""19%\""}",89224,1,"""Africa""" +2023-09-21,85263,3788,"[\""Headphones\""]",1277.27,"{\""loyalty\"": \""5%\""}",3654,1,"""North America""" +2023-07-20,85264,5025,"[\""Monitor\"", \""Keyboard\""]",3720.54,{},218516,1,"""North America""" +2023-10-24,85265,6912,"[\""Laptop\""]",686.99,"{\""seasonal\"": \""19%\""}",72824,1,"""Africa""" +2023-08-20,85266,9658,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3064.84,"{\""promo\"": \""22%\""}",130533,1,"""South America""" +2024-05-20,85267,268,"[\""Headphones\""]",120.41,{},103916,1,"""Europe""" +2023-08-30,85268,9915,"[\""Phone\""]",993.71,{},249721,1,"""North America""" +2024-09-22,85269,1376,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4608.02,{},96860,1,"""South America""" +2023-02-12,85270,9146,"[\""Headphones\"", \""Laptop\""]",2080.87,{},71043,0,"""South America""" +2023-08-19,85271,4645,"[\""Phone\"", \""Laptop\""]",2833.12,{},222072,1,"""Asia""" +2023-05-13,85272,6432,"[\""Monitor\""]",3202.31,"{\"": \""27%\""}",237838,0,"""Asia""" +2023-03-17,85273,950,"[\""Keyboard\""]",3303.14,{},61856,0,"""North America""" +2023-08-16,85274,6696,"[\""Tablet\"", \""Charger\""]",1884.39,{},273181,1,"""South America""" +2024-02-12,85275,9150,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2137.28,{},135906,0,"""Africa""" +2024-10-05,85276,7831,"[\""Keyboard\""]",1889.38,{},117145,1,"""South America""" +2023-04-29,85277,2260,"[\""Phone\"", \""Tablet\""]",1828.0,"{\""seasonal\"": \""18%\""}",210868,1,"""North America""" +2024-02-01,85278,3961,"[\""Headphones\"", \""Charger\""]",1663.99,{},168740,1,"""Europe""" +2024-05-19,85279,6286,"[\""Wireless Mouse\"", \""Charger\""]",1233.39,{},261592,1,"""Africa""" +2024-11-30,85280,7980,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1685.18,{},122035,0,"""Asia""" +2024-06-30,85281,4840,"[\""Laptop\""]",851.94,{},68144,1,"""Africa""" +2024-05-21,85282,8166,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",273.15,{},243252,0,"""North America""" +2024-02-09,85283,8074,"[\""Charger\""]",3809.42,{},151720,1,"""South America""" +2023-02-02,85284,8304,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1453.97,"{\""seasonal\"": \""5%\""}",67768,0,"""South America""" +2023-08-01,85285,9610,"[\""Keyboard\""]",4811.5,"{\""seasonal\"": \""6%\""}",264381,1,"""Europe""" +2024-02-26,85286,4540,"[\""Charger\"", \""Tablet\""]",3081.55,{},41143,1,"""North America""" +2023-07-14,85287,474,"[\""Charger\"", \""Phone\""]",881.21,{},102659,0,"""South America""" +2023-03-06,85288,788,"[\""Headphones\"", \""Monitor\""]",1984.87,"{\"": \""28%\""}",170778,1,"""Europe""" +2024-07-11,85289,1463,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3455.71,"{\""loyalty\"": \""13%\""}",267675,0,"""Europe""" +2024-03-23,85290,5439,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",757.17,"{\""promo\"": \""24%\""}",275736,1,"""Asia""" +2024-05-20,85291,3009,"[\""Headphones\"", \""Charger\""]",4211.25,"{\""seasonal\"": \""28%\""}",69630,1,"""Asia""" +2024-07-02,85292,3777,"[\""Headphones\"", \""Phone\"", \""Charger\""]",3679.3,"{\""loyalty\"": \""30%\""}",139606,0,"""Asia""" +2023-09-29,85293,322,"[\""Laptop\"", \""Keyboard\""]",3474.02,"{\""promo\"": \""25%\""}",38587,0,"""Africa""" +2023-10-01,85294,9102,"[\""Keyboard\""]",3135.27,{},68960,1,"""Africa""" +2024-10-25,85295,3449,"[\""Charger\""]",2238.45,"{\""promo\"": \""23%\""}",43141,0,"""Africa""" +2024-07-19,85296,8571,"[\""Headphones\"", \""Laptop\""]",1596.67,"{\"": \""9%\""}",130367,0,"""Europe""" +2023-11-29,85297,5106,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",271.49,{},17134,1,"""South America""" +2024-12-21,85298,3555,"[\""Wireless Mouse\"", \""Keyboard\""]",3842.25,{},54993,1,"""South America""" +2023-11-05,85299,7353,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",2308.07,{},209119,0,"""Asia""" +2024-08-24,85300,215,"[\""Wireless Mouse\""]",4066.45,"{\"": \""18%\""}",128935,0,"""South America""" +2023-03-09,85301,7587,"[\""Monitor\"", \""Charger\""]",1644.61,"{\""loyalty\"": \""16%\""}",47594,1,"""Asia""" +2024-07-17,85302,9763,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3705.93,"{\"": \""14%\""}",223280,0,"""Africa""" +2023-02-26,85303,3946,"[\""Monitor\"", \""Charger\""]",52.12,{},128982,0,"""North America""" +2023-03-22,85304,6050,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2910.98,{},280537,0,"""North America""" +2024-08-26,85305,6747,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",785.8,"{\"": \""8%\""}",66333,0,"""South America""" +2023-07-04,85306,8841,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3616.0,{},84315,1,"""Europe""" +2023-01-19,85307,3459,"[\""Charger\"", \""Monitor\""]",411.93,{},39472,0,"""North America""" +2023-06-15,85308,9956,"[\""Headphones\"", \""Laptop\""]",2526.42,"{\"": \""20%\""}",136088,0,"""Europe""" +2023-05-11,85309,4753,"[\""Headphones\"", \""Charger\""]",4160.41,{},218508,1,"""Asia""" +2023-07-09,85310,3293,"[\""Phone\"", \""Charger\""]",1647.81,{},23568,0,"""Asia""" +2023-12-09,85311,3797,"[\""Headphones\""]",2001.81,"{\""seasonal\"": \""27%\""}",282190,0,"""South America""" +2023-09-01,85312,8507,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3288.42,"{\""loyalty\"": \""5%\""}",234900,0,"""Europe""" +2023-04-01,85313,3382,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3136.02,"{\""promo\"": \""26%\""}",225297,0,"""Europe""" +2023-10-07,85314,3795,"[\""Wireless Mouse\""]",438.08,{},258712,0,"""Europe""" +2023-05-21,85315,1533,"[\""Laptop\""]",3156.58,"{\""promo\"": \""12%\""}",175804,1,"""Europe""" +2023-11-30,85316,4532,"[\""Headphones\"", \""Laptop\""]",3670.52,"{\"": \""26%\""}",108084,0,"""Asia""" +2023-11-18,85317,3871,"[\""Laptop\"", \""Charger\""]",4286.28,{},115109,1,"""Africa""" +2024-05-03,85318,2236,"[\""Charger\"", \""Phone\""]",220.39,"{\""promo\"": \""19%\""}",219073,0,"""Africa""" +2024-11-04,85319,6807,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3403.45,"{\""loyalty\"": \""24%\""}",164078,1,"""Europe""" +2024-11-25,85320,5985,"[\""Tablet\"", \""Headphones\""]",3963.8,"{\""seasonal\"": \""24%\""}",164437,1,"""North America""" +2023-06-01,85321,3610,"[\""Wireless Mouse\"", \""Tablet\""]",218.19,{},58643,1,"""Africa""" +2024-07-10,85322,3821,"[\""Charger\"", \""Laptop\""]",782.93,"{\"": \""26%\""}",219129,1,"""Europe""" +2024-07-11,85323,4643,"[\""Charger\"", \""Wireless Mouse\""]",88.86,{},97493,1,"""Europe""" +2024-06-27,85324,6072,"[\""Charger\""]",2467.34,"{\""loyalty\"": \""8%\""}",143767,1,"""North America""" +2024-03-06,85325,8804,"[\""Monitor\"", \""Laptop\""]",3019.93,"{\""seasonal\"": \""7%\""}",20819,0,"""Asia""" +2024-04-05,85326,7638,"[\""Wireless Mouse\"", \""Tablet\""]",2347.51,{},129045,0,"""Africa""" +2024-08-06,85327,8658,"[\""Charger\"", \""Laptop\""]",4558.94,"{\"": \""13%\""}",181231,0,"""Africa""" +2024-02-15,85328,1939,"[\""Tablet\""]",2384.86,"{\""loyalty\"": \""22%\""}",260822,1,"""North America""" +2024-03-30,85329,9,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",970.96,"{\""promo\"": \""9%\""}",87840,1,"""Asia""" +2023-11-23,85330,4770,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",837.6,"{\"": \""6%\""}",172827,1,"""Asia""" +2023-07-20,85331,4709,"[\""Monitor\"", \""Charger\""]",1364.31,{},83427,0,"""South America""" +2024-09-01,85332,5500,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3901.93,"{\"": \""29%\""}",212613,1,"""North America""" +2023-03-12,85333,6730,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2733.05,{},118445,0,"""Europe""" +2023-12-11,85334,1784,"[\""Headphones\""]",4141.55,{},31550,0,"""Africa""" +2024-08-01,85335,7892,"[\""Laptop\"", \""Wireless Mouse\""]",3895.37,{},34496,1,"""Africa""" +2024-03-23,85336,9416,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1283.71,"{\""promo\"": \""27%\""}",42703,0,"""South America""" +2024-05-06,85337,5160,"[\""Headphones\""]",4989.32,"{\"": \""20%\""}",170764,1,"""Europe""" +2023-06-01,85338,1537,"[\""Phone\""]",4559.64,"{\"": \""22%\""}",14114,1,"""North America""" +2024-08-16,85339,3144,"[\""Keyboard\""]",3411.88,{},285082,1,"""South America""" +2023-02-02,85340,9483,"[\""Charger\"", \""Headphones\"", \""Phone\""]",362.96,"{\""seasonal\"": \""28%\""}",51448,1,"""Africa""" +2023-05-03,85341,7354,"[\""Phone\"", \""Tablet\""]",4823.37,"{\""loyalty\"": \""29%\""}",130907,0,"""Asia""" +2023-03-31,85342,9737,"[\""Monitor\""]",1541.02,{},14906,0,"""South America""" +2023-08-27,85343,6395,"[\""Phone\"", \""Tablet\""]",3622.4,"{\""seasonal\"": \""20%\""}",78090,1,"""Europe""" +2024-12-07,85344,5789,"[\""Laptop\"", \""Phone\""]",3117.91,{},126248,1,"""North America""" +2023-11-21,85345,6082,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1010.77,"{\""loyalty\"": \""7%\""}",14524,0,"""North America""" +2023-05-30,85346,4346,"[\""Monitor\""]",2455.34,{},4644,0,"""Asia""" +2024-05-18,85347,3201,"[\""Headphones\"", \""Keyboard\""]",3747.02,"{\""seasonal\"": \""27%\""}",49548,1,"""North America""" +2023-04-17,85348,4902,"[\""Phone\""]",3434.78,{},26458,1,"""Europe""" +2023-01-01,85349,3354,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3800.43,"{\"": \""8%\""}",166215,0,"""Europe""" +2023-04-11,85350,9412,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3689.19,{},173052,1,"""Africa""" +2023-03-11,85351,7063,"[\""Tablet\"", \""Wireless Mouse\""]",364.35,"{\""loyalty\"": \""23%\""}",277009,0,"""Africa""" +2024-04-19,85352,4277,"[\""Phone\""]",1940.26,"{\""seasonal\"": \""23%\""}",62388,0,"""Asia""" +2024-09-04,85353,7244,"[\""Keyboard\""]",4520.22,{},145878,0,"""North America""" +2024-05-28,85354,455,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1614.27,"{\""loyalty\"": \""6%\""}",75794,0,"""Asia""" +2023-02-09,85355,8589,"[\""Keyboard\""]",2763.62,{},66172,1,"""Africa""" +2023-03-17,85356,5817,"[\""Monitor\"", \""Charger\""]",1605.88,"{\""promo\"": \""12%\""}",295906,1,"""South America""" +2024-01-18,85357,2370,"[\""Laptop\""]",1345.37,"{\""promo\"": \""19%\""}",282288,0,"""Asia""" +2024-10-31,85358,3605,"[\""Laptop\"", \""Keyboard\""]",2370.9,{},103574,0,"""Europe""" +2023-11-13,85359,3661,"[\""Phone\"", \""Laptop\""]",1239.17,{},48737,0,"""North America""" +2024-08-28,85360,8038,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4530.4,{},263128,0,"""North America""" +2023-02-22,85361,5075,"[\""Charger\""]",4152.76,"{\""promo\"": \""27%\""}",149267,1,"""Asia""" +2023-07-02,85362,958,"[\""Phone\"", \""Charger\""]",4566.8,{},79075,1,"""Europe""" +2024-10-24,85363,6455,"[\""Monitor\"", \""Laptop\""]",2812.5,"{\""promo\"": \""18%\""}",199433,0,"""Europe""" +2024-07-13,85364,472,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4243.15,{},263096,1,"""South America""" +2023-10-20,85365,8611,"[\""Headphones\""]",1331.05,"{\""promo\"": \""19%\""}",192526,0,"""North America""" +2024-09-01,85366,3934,"[\""Monitor\"", \""Laptop\""]",4263.86,"{\""promo\"": \""11%\""}",114808,1,"""Asia""" +2023-11-09,85367,205,"[\""Monitor\""]",1622.02,"{\"": \""16%\""}",221476,1,"""Africa""" +2023-06-29,85368,2548,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3011.46,{},187283,1,"""Europe""" +2024-02-09,85369,5384,"[\""Phone\"", \""Charger\""]",120.12,"{\"": \""28%\""}",64165,0,"""Asia""" +2024-05-05,85370,3305,"[\""Charger\""]",2490.46,{},247138,1,"""Asia""" +2023-05-22,85371,222,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4085.38,{},286755,1,"""Asia""" +2024-02-07,85372,7221,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3142.46,{},75822,0,"""North America""" +2023-02-18,85373,2603,"[\""Headphones\"", \""Charger\""]",2560.37,"{\""promo\"": \""19%\""}",221597,0,"""Europe""" +2024-11-25,85374,254,"[\""Keyboard\"", \""Wireless Mouse\""]",2863.98,{},92448,0,"""Asia""" +2024-11-14,85375,1760,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2123.49,{},173047,0,"""North America""" +2023-01-14,85376,7442,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4029.35,"{\""promo\"": \""29%\""}",273128,1,"""South America""" +2023-09-04,85377,529,"[\""Monitor\"", \""Headphones\""]",3199.26,{},60464,0,"""Asia""" +2023-01-03,85378,9864,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",244.68,{},88184,1,"""Asia""" +2023-06-01,85379,4405,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1013.37,{},293752,0,"""Asia""" +2024-11-10,85380,2831,"[\""Headphones\"", \""Phone\""]",2501.36,{},60204,0,"""North America""" +2024-04-18,85381,4354,"[\""Laptop\"", \""Keyboard\""]",898.73,{},189805,1,"""South America""" +2024-08-09,85382,866,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3595.58,"{\""seasonal\"": \""28%\""}",280414,1,"""Europe""" +2023-01-31,85383,9106,"[\""Wireless Mouse\"", \""Monitor\""]",487.26,"{\"": \""30%\""}",269292,0,"""South America""" +2023-06-02,85384,7348,"[\""Charger\""]",2851.91,{},19492,1,"""South America""" +2023-05-29,85385,1675,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1902.6,"{\""promo\"": \""30%\""}",203883,0,"""South America""" +2024-09-21,85386,8477,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3257.42,{},13175,1,"""North America""" +2023-06-05,85387,777,"[\""Keyboard\""]",4148.75,"{\""promo\"": \""22%\""}",289724,1,"""Asia""" +2024-07-19,85388,7201,"[\""Phone\"", \""Monitor\""]",3660.47,"{\"": \""12%\""}",185977,0,"""Europe""" +2024-12-12,85389,7608,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1293.23,"{\""loyalty\"": \""26%\""}",107916,1,"""Asia""" +2023-03-03,85390,4903,"[\""Monitor\"", \""Charger\""]",3543.07,{},105790,1,"""North America""" +2024-03-04,85391,9540,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4385.13,"{\""seasonal\"": \""24%\""}",191416,0,"""North America""" +2023-06-24,85392,7335,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",1484.52,"{\""seasonal\"": \""10%\""}",122153,0,"""Asia""" +2023-01-15,85393,1954,"[\""Laptop\""]",616.72,"{\""seasonal\"": \""8%\""}",279767,1,"""Africa""" +2023-07-10,85394,519,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3995.88,"{\"": \""16%\""}",5856,1,"""Europe""" +2023-03-07,85395,22,"[\""Monitor\""]",2426.94,"{\"": \""28%\""}",209333,0,"""North America""" +2024-07-08,85396,1900,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1317.57,{},145603,0,"""Europe""" +2024-01-31,85397,5763,"[\""Laptop\"", \""Headphones\""]",1963.15,{},115812,1,"""Africa""" +2024-01-14,85398,4307,"[\""Keyboard\"", \""Laptop\""]",1201.78,"{\""loyalty\"": \""26%\""}",157835,1,"""Asia""" +2023-10-24,85399,7895,"[\""Laptop\"", \""Wireless Mouse\""]",267.11,"{\""promo\"": \""16%\""}",275156,1,"""North America""" +2023-05-24,85400,3242,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3730.69,{},144392,1,"""Africa""" +2023-10-22,85401,2926,"[\""Tablet\"", \""Phone\""]",4062.15,{},37326,1,"""Asia""" +2024-06-19,85402,842,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4724.32,{},286069,0,"""South America""" +2023-01-22,85403,3016,"[\""Phone\""]",4921.32,{},88585,0,"""Africa""" +2023-03-01,85404,7037,"[\""Charger\""]",1163.97,{},62581,0,"""North America""" +2024-08-31,85405,8034,"[\""Tablet\"", \""Headphones\""]",502.27,{},13262,0,"""Europe""" +2024-04-28,85406,9253,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4784.65,{},261202,1,"""South America""" +2024-12-07,85407,334,"[\""Phone\""]",4841.53,{},127592,0,"""North America""" +2024-05-24,85408,8896,"[\""Phone\""]",1157.94,"{\""seasonal\"": \""18%\""}",238554,0,"""South America""" +2024-09-22,85409,4427,"[\""Keyboard\"", \""Monitor\""]",387.41,{},247263,1,"""South America""" +2024-01-07,85410,114,"[\""Laptop\""]",748.09,{},239880,1,"""Europe""" +2024-03-13,85411,6253,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1349.85,{},151989,1,"""North America""" +2024-07-12,85412,6158,"[\""Wireless Mouse\"", \""Tablet\""]",2600.02,{},167326,0,"""Asia""" +2024-01-07,85413,821,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2989.75,"{\""loyalty\"": \""14%\""}",202288,0,"""Asia""" +2023-01-04,85414,6489,"[\""Tablet\""]",3134.45,{},36294,1,"""North America""" +2023-06-27,85415,212,"[\""Laptop\""]",1471.56,"{\""loyalty\"": \""21%\""}",125585,1,"""Africa""" +2024-06-21,85416,9140,"[\""Headphones\""]",2229.25,{},129098,0,"""North America""" +2024-03-05,85417,4624,"[\""Tablet\""]",4441.95,{},172468,0,"""South America""" +2024-01-29,85418,9655,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4818.5,{},265076,0,"""Europe""" +2023-10-04,85419,2584,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3165.88,{},220806,1,"""Europe""" +2024-08-19,85420,5142,"[\""Phone\"", \""Headphones\""]",2862.04,{},164661,1,"""South America""" +2024-10-06,85421,3200,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",81.62,{},67819,1,"""North America""" +2024-10-01,85422,28,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4951.25,{},3927,0,"""North America""" +2023-12-11,85423,6672,"[\""Monitor\"", \""Keyboard\""]",3587.9,{},173518,1,"""Europe""" +2024-05-07,85424,2799,"[\""Laptop\"", \""Monitor\""]",4317.13,{},130982,0,"""Europe""" +2023-09-02,85425,3660,"[\""Charger\""]",4395.02,"{\""seasonal\"": \""9%\""}",212669,1,"""South America""" +2023-10-15,85426,8291,"[\""Phone\""]",2617.53,"{\"": \""21%\""}",39063,1,"""Asia""" +2024-04-18,85427,5588,"[\""Phone\"", \""Laptop\""]",2582.45,{},90082,0,"""Africa""" +2024-12-24,85428,8824,"[\""Laptop\"", \""Headphones\""]",4645.46,"{\"": \""16%\""}",89481,0,"""Europe""" +2023-02-02,85429,5415,"[\""Monitor\""]",323.81,{},110645,1,"""Europe""" +2024-10-19,85430,5502,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4030.28,"{\"": \""9%\""}",188560,1,"""Europe""" +2024-03-21,85431,1069,"[\""Keyboard\"", \""Tablet\""]",1520.66,{},296035,0,"""Asia""" +2023-02-17,85432,2676,"[\""Laptop\"", \""Tablet\""]",2509.28,"{\""loyalty\"": \""26%\""}",231460,0,"""Africa""" +2023-12-30,85433,4788,"[\""Monitor\"", \""Charger\""]",4460.72,"{\""loyalty\"": \""27%\""}",245703,0,"""South America""" +2023-03-18,85434,6905,"[\""Headphones\"", \""Phone\""]",2602.9,{},89193,0,"""North America""" +2024-12-30,85435,8772,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2789.35,"{\"": \""12%\""}",254519,0,"""Europe""" +2024-01-15,85436,1048,"[\""Tablet\"", \""Headphones\""]",1521.76,{},93730,0,"""North America""" +2024-01-24,85437,912,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",747.23,"{\""promo\"": \""12%\""}",260042,0,"""Asia""" +2024-10-13,85438,6811,"[\""Laptop\""]",3050.57,"{\""loyalty\"": \""14%\""}",154353,0,"""South America""" +2023-10-14,85439,8449,"[\""Wireless Mouse\""]",319.66,{},55029,0,"""Asia""" +2023-06-19,85440,8095,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1475.65,{},124575,0,"""Asia""" +2023-05-27,85441,6466,"[\""Phone\""]",1353.47,{},126537,1,"""Africa""" +2024-01-29,85442,6969,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",2192.24,"{\""loyalty\"": \""15%\""}",261445,1,"""Europe""" +2024-01-07,85443,3698,"[\""Monitor\""]",2688.98,"{\""loyalty\"": \""20%\""}",83375,1,"""North America""" +2024-12-29,85444,5455,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2777.73,{},227845,1,"""North America""" +2024-09-17,85445,9284,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1589.51,{},294478,1,"""South America""" +2023-08-05,85446,9499,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",3402.69,"{\""promo\"": \""5%\""}",165792,0,"""Europe""" +2024-11-16,85447,4543,"[\""Phone\"", \""Charger\""]",1677.24,"{\"": \""10%\""}",155239,1,"""South America""" +2024-09-04,85448,2684,"[\""Charger\""]",3541.95,{},162422,1,"""South America""" +2024-10-26,85449,6068,"[\""Tablet\"", \""Wireless Mouse\""]",2217.79,"{\""loyalty\"": \""25%\""}",37924,1,"""Asia""" +2023-11-24,85450,7349,"[\""Tablet\"", \""Phone\""]",319.65,{},269732,0,"""Europe""" +2023-12-03,85451,868,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2516.96,"{\""promo\"": \""14%\""}",114752,0,"""Africa""" +2024-06-17,85452,4913,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1595.54,{},290782,1,"""South America""" +2024-05-31,85453,2985,"[\""Headphones\"", \""Monitor\""]",1572.15,{},299517,0,"""North America""" +2023-12-31,85454,1373,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",908.06,{},164398,0,"""Europe""" +2024-09-13,85455,4309,"[\""Monitor\""]",1823.31,"{\"": \""15%\""}",10180,1,"""Asia""" +2023-12-12,85456,7248,"[\""Wireless Mouse\"", \""Monitor\""]",634.17,{},280957,0,"""Africa""" +2024-07-11,85457,2896,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2278.8,"{\""promo\"": \""24%\""}",87693,0,"""Europe""" +2024-09-23,85458,1130,"[\""Laptop\"", \""Phone\""]",4968.72,"{\"": \""16%\""}",5955,1,"""South America""" +2023-09-13,85459,446,"[\""Phone\""]",4719.29,{},18707,1,"""North America""" +2023-10-07,85460,3910,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4981.54,"{\"": \""12%\""}",273665,0,"""North America""" +2024-05-19,85461,4538,"[\""Charger\"", \""Headphones\""]",3516.49,{},184670,0,"""Asia""" +2023-03-19,85462,817,"[\""Keyboard\""]",3848.61,{},181753,0,"""Europe""" +2024-02-25,85463,2806,"[\""Phone\"", \""Wireless Mouse\""]",566.03,"{\""promo\"": \""5%\""}",57146,0,"""North America""" +2023-02-09,85464,7621,"[\""Laptop\"", \""Monitor\""]",1557.81,"{\""promo\"": \""12%\""}",68043,0,"""Africa""" +2024-08-11,85465,218,"[\""Phone\""]",4657.44,"{\"": \""29%\""}",245069,0,"""North America""" +2024-11-07,85466,1205,"[\""Wireless Mouse\""]",4716.8,{},215510,1,"""Asia""" +2024-03-22,85467,8447,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1885.78,"{\""loyalty\"": \""28%\""}",220466,1,"""Africa""" +2024-04-16,85468,7028,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",352.18,"{\""promo\"": \""9%\""}",88984,0,"""Asia""" +2024-06-18,85469,9714,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1316.64,"{\""promo\"": \""5%\""}",59745,1,"""South America""" +2023-11-01,85470,3008,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3884.83,"{\""seasonal\"": \""5%\""}",294194,0,"""Asia""" +2024-09-11,85471,8667,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",1181.83,"{\""loyalty\"": \""24%\""}",203968,1,"""North America""" +2023-06-19,85472,6672,"[\""Tablet\""]",2547.15,{},89837,0,"""South America""" +2023-11-17,85473,981,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4221.01,{},261467,1,"""Europe""" +2024-01-08,85474,1150,"[\""Phone\""]",1355.4,{},169183,0,"""North America""" +2024-01-30,85475,7133,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3640.94,{},128063,1,"""North America""" +2024-04-20,85476,470,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3117.14,"{\"": \""20%\""}",74306,1,"""North America""" +2024-05-27,85477,6309,"[\""Monitor\""]",3662.66,{},173703,1,"""Europe""" +2024-11-17,85478,6262,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4001.49,"{\""loyalty\"": \""23%\""}",28322,1,"""South America""" +2023-09-12,85479,8500,"[\""Tablet\""]",683.05,"{\"": \""25%\""}",52519,0,"""North America""" +2023-10-17,85480,4850,"[\""Charger\"", \""Phone\"", \""Laptop\""]",936.51,"{\""loyalty\"": \""26%\""}",188875,0,"""South America""" +2023-09-25,85481,5338,"[\""Wireless Mouse\""]",1105.42,"{\""loyalty\"": \""15%\""}",54167,0,"""Asia""" +2024-10-10,85482,1289,"[\""Keyboard\""]",1758.64,{},296603,0,"""North America""" +2024-10-25,85483,3182,"[\""Monitor\"", \""Headphones\""]",1013.27,"{\""promo\"": \""19%\""}",52461,1,"""Asia""" +2023-10-12,85484,3450,"[\""Wireless Mouse\""]",337.56,"{\"": \""16%\""}",83475,1,"""Europe""" +2023-11-01,85485,8430,"[\""Wireless Mouse\""]",3548.71,{},162105,0,"""Africa""" +2023-12-15,85486,9605,"[\""Laptop\"", \""Monitor\""]",1963.93,{},33086,1,"""Asia""" +2024-02-10,85487,1448,"[\""Monitor\"", \""Keyboard\""]",1695.58,"{\""loyalty\"": \""28%\""}",31133,0,"""Europe""" +2024-10-04,85488,8287,"[\""Wireless Mouse\"", \""Phone\""]",1700.18,"{\""seasonal\"": \""13%\""}",83568,1,"""South America""" +2023-02-24,85489,9804,"[\""Monitor\"", \""Charger\""]",1883.61,"{\"": \""22%\""}",242289,1,"""Africa""" +2024-03-26,85490,5265,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2675.13,"{\""loyalty\"": \""14%\""}",267761,1,"""Asia""" +2023-06-06,85491,4549,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2584.28,{},208222,0,"""North America""" +2024-05-08,85492,4669,"[\""Headphones\"", \""Charger\""]",4913.22,{},116334,0,"""Asia""" +2023-04-12,85493,6719,"[\""Tablet\""]",4840.98,"{\""promo\"": \""16%\""}",263765,0,"""Asia""" +2024-04-04,85494,1553,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3478.36,"{\""loyalty\"": \""6%\""}",63137,0,"""Asia""" +2024-06-17,85495,6113,"[\""Headphones\""]",4982.13,"{\""seasonal\"": \""21%\""}",218685,0,"""Europe""" +2023-12-04,85496,132,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3034.33,"{\""seasonal\"": \""6%\""}",163322,1,"""South America""" +2023-10-31,85497,9848,"[\""Monitor\""]",4786.42,{},274475,1,"""Africa""" +2023-02-25,85498,2242,"[\""Phone\""]",2722.25,"{\""seasonal\"": \""6%\""}",208607,1,"""Asia""" +2023-02-10,85499,4867,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1921.41,{},233132,0,"""Europe""" +2024-01-15,85500,1549,"[\""Wireless Mouse\""]",1466.57,{},75773,1,"""Asia""" +2024-08-25,85501,2397,"[\""Laptop\""]",2170.03,{},155968,0,"""Asia""" +2023-08-04,85502,3258,"[\""Phone\""]",3634.37,{},195863,0,"""Asia""" +2023-10-21,85503,691,"[\""Monitor\"", \""Headphones\""]",2370.21,{},80525,0,"""Europe""" +2024-05-15,85504,9482,"[\""Wireless Mouse\""]",3511.72,{},160080,0,"""Africa""" +2023-08-03,85505,7324,"[\""Wireless Mouse\""]",1859.82,{},281589,1,"""Europe""" +2024-05-19,85506,2827,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2006.13,{},99981,0,"""South America""" +2024-06-14,85507,9090,"[\""Wireless Mouse\""]",2783.79,{},10331,0,"""Asia""" +2024-03-13,85508,9858,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4916.26,"{\""promo\"": \""11%\""}",125810,1,"""Asia""" +2023-07-17,85509,1520,"[\""Charger\"", \""Laptop\""]",1211.92,"{\""promo\"": \""5%\""}",180587,1,"""South America""" +2024-04-15,85510,2043,"[\""Laptop\""]",4398.53,{},109399,1,"""Asia""" +2023-01-20,85511,1118,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3314.81,"{\""promo\"": \""15%\""}",218724,0,"""Europe""" +2023-12-06,85512,6689,"[\""Laptop\""]",4880.38,"{\""promo\"": \""15%\""}",8878,1,"""Europe""" +2024-03-24,85513,5683,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",737.77,{},250766,0,"""North America""" +2023-08-13,85514,6707,"[\""Tablet\""]",567.56,{},256398,0,"""South America""" +2023-11-19,85515,5394,"[\""Headphones\"", \""Wireless Mouse\""]",1720.23,{},291313,1,"""South America""" +2023-10-18,85516,7465,"[\""Charger\"", \""Phone\""]",1800.93,"{\""promo\"": \""29%\""}",47322,1,"""Asia""" +2023-02-15,85517,8652,"[\""Wireless Mouse\"", \""Laptop\""]",2250.08,"{\""promo\"": \""20%\""}",161500,0,"""North America""" +2023-08-29,85518,2667,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2943.39,{},28612,1,"""Asia""" +2023-03-06,85519,5301,"[\""Charger\"", \""Wireless Mouse\""]",1570.55,{},65838,0,"""Europe""" +2024-05-09,85520,6004,"[\""Tablet\""]",3475.96,{},140365,0,"""Asia""" +2024-03-23,85521,1591,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",920.25,{},88637,1,"""Asia""" +2023-07-01,85522,4238,"[\""Headphones\""]",3139.19,"{\""seasonal\"": \""7%\""}",288704,1,"""North America""" +2024-03-31,85523,5615,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3249.12,"{\""seasonal\"": \""11%\""}",143932,0,"""Europe""" +2024-06-01,85524,5617,"[\""Charger\""]",2004.74,{},76034,1,"""South America""" +2023-12-05,85525,6000,"[\""Wireless Mouse\"", \""Headphones\""]",2316.23,{},100433,1,"""Europe""" +2023-04-02,85526,9778,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2774.37,{},249721,1,"""Europe""" +2023-10-17,85527,5991,"[\""Keyboard\"", \""Charger\""]",2183.38,{},57107,1,"""North America""" +2024-05-25,85528,7660,"[\""Phone\"", \""Headphones\""]",3362.71,"{\""seasonal\"": \""25%\""}",41041,0,"""Europe""" +2024-09-11,85529,1161,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3680.2,"{\""seasonal\"": \""12%\""}",86325,1,"""Asia""" +2023-05-12,85530,72,"[\""Headphones\""]",1446.33,"{\""seasonal\"": \""5%\""}",25824,0,"""Asia""" +2023-09-26,85531,3239,"[\""Headphones\""]",4164.84,{},65583,0,"""South America""" +2024-04-12,85532,1388,"[\""Keyboard\""]",4122.9,{},220204,1,"""Africa""" +2023-09-27,85533,4536,"[\""Monitor\""]",222.76,"{\"": \""9%\""}",179440,0,"""South America""" +2023-05-18,85534,1190,"[\""Wireless Mouse\""]",2655.5,{},161290,0,"""Europe""" +2023-01-03,85535,6610,"[\""Keyboard\"", \""Monitor\""]",4869.92,{},269887,1,"""South America""" +2023-09-17,85536,1212,"[\""Charger\"", \""Tablet\""]",52.0,"{\""seasonal\"": \""30%\""}",236529,1,"""Africa""" +2023-09-20,85537,3887,"[\""Charger\""]",872.87,"{\""loyalty\"": \""18%\""}",162627,0,"""Asia""" +2024-02-04,85538,6776,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",614.85,"{\"": \""18%\""}",224764,1,"""South America""" +2024-12-04,85539,217,"[\""Headphones\""]",993.95,"{\""promo\"": \""14%\""}",193262,0,"""Europe""" +2023-10-08,85540,6099,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",207.49,{},45757,1,"""Africa""" +2023-01-17,85541,957,"[\""Monitor\"", \""Tablet\""]",684.55,{},235966,0,"""Africa""" +2024-04-10,85542,9288,"[\""Headphones\""]",3936.81,"{\""promo\"": \""13%\""}",218768,0,"""North America""" +2023-01-01,85543,4818,"[\""Charger\"", \""Laptop\""]",674.51,{},237662,1,"""Africa""" +2024-07-03,85544,2353,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1507.9,{},72501,0,"""Europe""" +2023-02-02,85545,1574,"[\""Phone\""]",4191.85,"{\"": \""10%\""}",262450,0,"""Africa""" +2024-08-20,85546,5717,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3487.46,{},74144,1,"""North America""" +2024-10-10,85547,7465,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4445.03,{},197021,1,"""South America""" +2023-08-15,85548,7756,"[\""Keyboard\"", \""Monitor\""]",1637.36,{},63800,1,"""North America""" +2024-04-11,85549,1420,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3628.39,{},117656,0,"""Asia""" +2024-03-08,85550,4329,"[\""Charger\""]",868.67,"{\"": \""7%\""}",47925,1,"""South America""" +2024-01-23,85551,6377,"[\""Charger\"", \""Monitor\""]",2848.7,{},275468,1,"""Africa""" +2023-04-01,85552,5688,"[\""Laptop\"", \""Phone\""]",1371.35,"{\""loyalty\"": \""21%\""}",269564,0,"""South America""" +2023-08-13,85553,2980,"[\""Monitor\"", \""Headphones\""]",1745.31,{},17123,0,"""Europe""" +2024-08-13,85554,8915,"[\""Monitor\"", \""Charger\""]",2221.84,{},225778,1,"""Europe""" +2024-04-25,85555,7974,"[\""Phone\""]",355.61,"{\"": \""10%\""}",153425,1,"""South America""" +2023-07-21,85556,9152,"[\""Keyboard\""]",4590.75,{},119645,1,"""Europe""" +2024-01-08,85557,8774,"[\""Monitor\"", \""Charger\""]",219.79,"{\""promo\"": \""27%\""}",20755,1,"""South America""" +2024-08-18,85558,4566,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",934.0,{},245296,1,"""Africa""" +2024-11-30,85559,498,"[\""Tablet\""]",670.15,"{\""promo\"": \""7%\""}",71997,0,"""Asia""" +2023-11-06,85560,3406,"[\""Tablet\""]",1419.25,{},180517,1,"""North America""" +2023-02-14,85561,5661,"[\""Wireless Mouse\"", \""Phone\""]",4079.18,"{\"": \""16%\""}",252055,0,"""Asia""" +2023-08-03,85562,4070,"[\""Tablet\""]",2680.34,{},108265,0,"""South America""" +2024-02-02,85563,5053,"[\""Laptop\"", \""Wireless Mouse\""]",2795.06,"{\""promo\"": \""29%\""}",212610,0,"""Africa""" +2024-05-16,85564,5042,"[\""Wireless Mouse\""]",2147.02,{},128974,1,"""Asia""" +2023-01-05,85565,9561,"[\""Monitor\"", \""Laptop\""]",2700.64,{},168428,0,"""North America""" +2023-01-01,85566,2109,"[\""Headphones\""]",3246.67,"{\""promo\"": \""22%\""}",35481,0,"""Europe""" +2023-04-22,85567,6545,"[\""Headphones\""]",1764.01,{},176802,1,"""Asia""" +2024-01-08,85568,8949,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",720.68,"{\"": \""9%\""}",62933,1,"""Asia""" +2024-07-24,85569,5186,"[\""Monitor\"", \""Keyboard\""]",801.54,{},163402,1,"""North America""" +2024-06-20,85570,6456,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3930.91,{},31556,1,"""North America""" +2023-09-02,85571,1118,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3159.17,{},137472,1,"""Europe""" +2024-05-17,85572,1476,"[\""Charger\"", \""Headphones\""]",2622.31,"{\""loyalty\"": \""15%\""}",126700,1,"""South America""" +2023-03-16,85573,4654,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4265.46,"{\""promo\"": \""13%\""}",270587,1,"""South America""" +2024-05-10,85574,7634,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1020.61,"{\""loyalty\"": \""9%\""}",288274,0,"""Asia""" +2023-01-04,85575,7365,"[\""Headphones\""]",98.68,{},192270,1,"""Africa""" +2023-12-25,85576,2015,"[\""Monitor\"", \""Wireless Mouse\""]",4324.62,"{\""loyalty\"": \""12%\""}",254635,0,"""South America""" +2024-04-13,85577,2257,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2017.97,{},293046,0,"""North America""" +2023-10-18,85578,3597,"[\""Monitor\""]",1884.45,"{\""promo\"": \""13%\""}",84311,1,"""Africa""" +2024-01-12,85579,9749,"[\""Headphones\""]",1144.62,{},17645,0,"""North America""" +2024-06-06,85580,8675,"[\""Wireless Mouse\"", \""Monitor\""]",2726.71,"{\""seasonal\"": \""13%\""}",219675,0,"""Africa""" +2023-10-25,85581,3163,"[\""Wireless Mouse\""]",2552.13,"{\"": \""15%\""}",248867,1,"""Africa""" +2024-04-20,85582,2996,"[\""Wireless Mouse\"", \""Tablet\""]",4348.88,"{\"": \""16%\""}",175863,1,"""Asia""" +2023-06-14,85583,1947,"[\""Headphones\""]",1819.78,{},127604,0,"""Asia""" +2023-03-31,85584,3953,"[\""Monitor\""]",4331.75,"{\""seasonal\"": \""26%\""}",5184,0,"""Africa""" +2023-10-24,85585,5586,"[\""Tablet\"", \""Laptop\""]",4317.75,"{\""seasonal\"": \""16%\""}",47307,0,"""South America""" +2023-07-08,85586,39,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",793.61,"{\""promo\"": \""26%\""}",211161,1,"""South America""" +2024-06-18,85587,7982,"[\""Wireless Mouse\"", \""Tablet\""]",4091.2,{},162530,0,"""South America""" +2023-11-29,85588,8530,"[\""Keyboard\""]",4182.91,{},274586,0,"""Europe""" +2024-12-28,85589,2911,"[\""Phone\"", \""Keyboard\""]",2703.37,{},178109,1,"""Africa""" +2023-07-18,85590,6140,"[\""Keyboard\"", \""Phone\""]",4872.81,"{\""loyalty\"": \""25%\""}",249077,0,"""North America""" +2023-03-24,85591,3204,"[\""Charger\""]",3478.6,"{\""seasonal\"": \""30%\""}",74181,0,"""North America""" +2023-10-12,85592,8974,"[\""Keyboard\""]",3418.2,"{\""loyalty\"": \""23%\""}",194939,1,"""Europe""" +2023-01-11,85593,981,"[\""Phone\"", \""Tablet\""]",3678.15,{},66405,1,"""North America""" +2024-01-04,85594,4187,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",245.19,{},259042,0,"""Asia""" +2023-04-17,85595,2636,"[\""Keyboard\""]",3063.03,{},102584,0,"""Africa""" +2023-09-25,85596,1948,"[\""Phone\"", \""Monitor\""]",908.58,"{\"": \""29%\""}",232079,1,"""Europe""" +2024-07-08,85597,9290,"[\""Headphones\""]",4239.78,"{\""loyalty\"": \""21%\""}",81930,1,"""South America""" +2023-08-25,85598,9593,"[\""Laptop\"", \""Monitor\""]",3328.49,"{\""seasonal\"": \""26%\""}",257624,1,"""South America""" +2024-06-17,85599,8679,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1974.74,"{\"": \""28%\""}",46350,0,"""Europe""" +2024-02-08,85600,7355,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4619.85,{},271445,0,"""Asia""" +2023-10-17,85601,6018,"[\""Keyboard\"", \""Monitor\""]",4364.7,"{\""seasonal\"": \""14%\""}",43667,1,"""North America""" +2024-07-19,85602,5440,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1611.6,"{\""seasonal\"": \""23%\""}",287003,0,"""Africa""" +2023-09-16,85603,1703,"[\""Charger\"", \""Tablet\""]",2994.48,{},107296,1,"""North America""" +2023-01-02,85604,8880,"[\""Phone\""]",1941.45,{},116701,0,"""South America""" +2024-07-21,85605,2706,"[\""Monitor\"", \""Charger\""]",4624.12,"{\""loyalty\"": \""8%\""}",202364,1,"""Asia""" +2023-08-27,85606,4566,"[\""Phone\"", \""Headphones\""]",3168.49,"{\""seasonal\"": \""8%\""}",297978,0,"""Asia""" +2024-12-01,85607,3409,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2135.52,{},48786,1,"""Europe""" +2023-04-20,85608,3753,"[\""Headphones\"", \""Laptop\""]",352.24,"{\""promo\"": \""6%\""}",253136,1,"""Asia""" +2023-01-06,85609,9962,"[\""Charger\"", \""Tablet\""]",692.67,"{\""seasonal\"": \""7%\""}",255345,1,"""Europe""" +2023-07-09,85610,4035,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4414.13,"{\""promo\"": \""22%\""}",108431,1,"""North America""" +2023-11-16,85611,2929,"[\""Phone\""]",184.79,"{\""loyalty\"": \""25%\""}",210856,1,"""North America""" +2023-01-03,85612,448,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2179.3,"{\""promo\"": \""9%\""}",203113,1,"""North America""" +2024-10-25,85613,9946,"[\""Phone\""]",1924.72,{},190315,0,"""South America""" +2024-03-07,85614,3920,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1029.63,{},224567,1,"""Asia""" +2023-08-30,85615,4197,"[\""Tablet\"", \""Laptop\""]",1523.11,{},146500,1,"""Asia""" +2023-05-10,85616,3214,"[\""Headphones\"", \""Tablet\""]",1343.27,{},69023,0,"""Asia""" +2023-05-11,85617,8362,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3673.83,{},124119,0,"""Europe""" +2023-01-07,85618,3729,"[\""Tablet\""]",2472.27,"{\""loyalty\"": \""26%\""}",148648,1,"""Asia""" +2023-01-13,85619,9832,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1808.21,{},239123,0,"""Asia""" +2024-12-21,85620,796,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",785.12,"{\""promo\"": \""14%\""}",287530,1,"""Europe""" +2023-08-10,85621,9351,"[\""Phone\""]",996.37,"{\"": \""23%\""}",253936,0,"""Asia""" +2023-01-20,85622,4946,"[\""Headphones\""]",1634.08,"{\"": \""20%\""}",182899,0,"""North America""" +2024-09-18,85623,1906,"[\""Monitor\"", \""Headphones\""]",1681.45,{},24321,0,"""Asia""" +2023-08-29,85624,7774,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3733.02,"{\""seasonal\"": \""20%\""}",67386,0,"""Europe""" +2023-10-10,85625,3790,"[\""Tablet\""]",424.18,"{\""loyalty\"": \""12%\""}",281789,0,"""Africa""" +2023-02-01,85626,9693,"[\""Headphones\""]",3554.01,{},99350,1,"""Africa""" +2024-10-26,85627,9125,"[\""Laptop\""]",3922.16,{},252869,0,"""North America""" +2023-07-21,85628,3541,"[\""Monitor\""]",3665.51,"{\"": \""29%\""}",5704,0,"""Asia""" +2023-11-07,85629,7364,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3536.33,{},219506,0,"""Europe""" +2023-01-05,85630,4974,"[\""Monitor\""]",1306.91,{},124665,0,"""Europe""" +2024-01-10,85631,3170,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2921.45,"{\""seasonal\"": \""10%\""}",145519,1,"""Africa""" +2024-12-03,85632,4717,"[\""Monitor\""]",2567.59,{},68722,0,"""Africa""" +2024-03-01,85633,2869,"[\""Wireless Mouse\"", \""Laptop\""]",3043.26,{},112694,1,"""North America""" +2024-01-30,85634,980,"[\""Wireless Mouse\""]",1967.79,{},18619,1,"""Asia""" +2024-11-24,85635,2152,"[\""Wireless Mouse\""]",3773.76,{},256502,1,"""Africa""" +2023-02-08,85636,8862,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3746.31,"{\""promo\"": \""10%\""}",254338,0,"""North America""" +2023-07-19,85637,3233,"[\""Monitor\""]",3334.8,"{\""loyalty\"": \""24%\""}",35739,0,"""South America""" +2023-05-01,85638,2864,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",2121.91,{},251517,1,"""South America""" +2023-08-27,85639,6592,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",891.16,{},177264,0,"""Europe""" +2024-08-23,85640,5548,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2907.27,"{\""loyalty\"": \""20%\""}",220900,1,"""South America""" +2023-04-02,85641,593,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2513.35,{},273007,1,"""Asia""" +2024-12-16,85642,6365,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",179.48,{},92141,1,"""South America""" +2023-06-02,85643,2460,"[\""Tablet\"", \""Wireless Mouse\""]",1077.25,{},50200,0,"""Africa""" +2024-10-09,85644,44,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4937.01,"{\""loyalty\"": \""13%\""}",11679,1,"""North America""" +2023-02-24,85645,8230,"[\""Keyboard\"", \""Headphones\""]",1694.61,"{\""promo\"": \""27%\""}",226886,1,"""Asia""" +2023-12-28,85646,1941,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2644.54,{},263311,1,"""Asia""" +2024-06-21,85647,9551,"[\""Headphones\""]",1601.26,{},74647,1,"""Asia""" +2024-08-05,85648,4656,"[\""Wireless Mouse\"", \""Tablet\""]",4911.3,{},163475,1,"""Africa""" +2023-01-19,85649,7580,"[\""Headphones\"", \""Keyboard\""]",2693.28,{},221667,0,"""North America""" +2023-03-22,85650,6836,"[\""Monitor\"", \""Keyboard\""]",3854.75,{},54864,1,"""Asia""" +2024-01-29,85651,8016,"[\""Headphones\""]",2842.65,{},83068,1,"""North America""" +2023-08-18,85652,5275,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4358.43,"{\""promo\"": \""15%\""}",238485,1,"""Africa""" +2024-07-18,85653,8657,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2242.86,{},33534,1,"""South America""" +2023-11-27,85654,3440,"[\""Charger\"", \""Monitor\""]",2680.85,"{\""loyalty\"": \""24%\""}",46204,1,"""Asia""" +2024-11-09,85655,6556,"[\""Phone\"", \""Wireless Mouse\""]",383.08,"{\"": \""28%\""}",144758,1,"""Europe""" +2023-12-25,85656,2690,"[\""Monitor\"", \""Wireless Mouse\""]",3781.17,"{\""seasonal\"": \""14%\""}",261302,1,"""North America""" +2023-06-10,85657,1305,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1354.19,{},225911,1,"""South America""" +2024-05-09,85658,4583,"[\""Tablet\"", \""Phone\""]",4436.13,"{\""promo\"": \""20%\""}",177573,0,"""South America""" +2023-01-01,85659,7854,"[\""Wireless Mouse\""]",3938.97,{},206289,0,"""South America""" +2023-01-25,85660,7407,"[\""Phone\""]",4430.19,{},296816,0,"""Asia""" +2024-07-28,85661,3275,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",439.72,{},104968,1,"""North America""" +2024-05-23,85662,7451,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",800.86,{},124835,1,"""North America""" +2024-04-25,85663,1152,"[\""Tablet\""]",469.94,{},137391,1,"""Europe""" +2024-11-19,85664,4724,"[\""Phone\""]",1974.98,"{\""promo\"": \""28%\""}",279496,1,"""North America""" +2024-07-01,85665,2628,"[\""Headphones\""]",2513.75,{},113862,1,"""Africa""" +2023-03-15,85666,3592,"[\""Headphones\"", \""Keyboard\""]",2611.25,"{\""loyalty\"": \""11%\""}",3486,0,"""South America""" +2023-01-10,85667,1455,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1542.1,"{\""promo\"": \""5%\""}",101337,0,"""Europe""" +2024-10-06,85668,8471,"[\""Phone\""]",2080.06,"{\""loyalty\"": \""7%\""}",227692,1,"""Europe""" +2023-10-25,85669,4146,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2752.25,{},91485,0,"""North America""" +2023-03-22,85670,620,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1341.79,"{\""seasonal\"": \""30%\""}",295594,0,"""Europe""" +2023-01-21,85671,1010,"[\""Tablet\"", \""Wireless Mouse\""]",3924.1,{},154329,0,"""South America""" +2024-08-04,85672,5720,"[\""Tablet\""]",2585.41,"{\""promo\"": \""13%\""}",223563,1,"""South America""" +2024-04-02,85673,9737,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1295.51,{},99941,0,"""Asia""" +2023-02-03,85674,8493,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3073.32,"{\""promo\"": \""8%\""}",297326,1,"""Africa""" +2024-05-29,85675,4486,"[\""Charger\""]",4693.89,"{\""loyalty\"": \""11%\""}",119623,1,"""Europe""" +2024-10-06,85676,1393,"[\""Keyboard\"", \""Headphones\""]",337.46,"{\""seasonal\"": \""24%\""}",57921,1,"""Asia""" +2024-10-27,85677,7026,"[\""Wireless Mouse\"", \""Charger\""]",4698.38,{},84111,0,"""Europe""" +2024-07-26,85678,1421,"[\""Wireless Mouse\""]",1917.03,{},91776,0,"""Africa""" +2023-06-04,85679,4378,"[\""Wireless Mouse\"", \""Tablet\""]",401.92,"{\""promo\"": \""18%\""}",58039,1,"""Africa""" +2023-07-31,85680,9037,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",93.89,{},154063,1,"""Asia""" +2024-12-08,85681,4548,"[\""Keyboard\""]",1805.11,"{\""seasonal\"": \""12%\""}",211358,1,"""Europe""" +2023-11-17,85682,7087,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2249.19,{},24755,0,"""Asia""" +2023-06-30,85683,7235,"[\""Keyboard\"", \""Laptop\""]",3345.07,"{\""promo\"": \""9%\""}",225141,0,"""Africa""" +2023-04-20,85684,6405,"[\""Charger\""]",4771.56,"{\"": \""10%\""}",267246,0,"""North America""" +2024-11-07,85685,9989,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3609.31,"{\""promo\"": \""27%\""}",8373,0,"""North America""" +2024-07-16,85686,9853,"[\""Headphones\""]",1062.96,"{\""promo\"": \""17%\""}",145668,1,"""Africa""" +2023-04-05,85687,2591,"[\""Wireless Mouse\""]",909.11,{},69200,1,"""Africa""" +2023-03-03,85688,5039,"[\""Keyboard\""]",1568.04,"{\"": \""29%\""}",75227,0,"""South America""" +2023-05-02,85689,5027,"[\""Headphones\"", \""Charger\""]",1911.9,{},298933,0,"""Africa""" +2024-03-13,85690,7761,"[\""Tablet\"", \""Headphones\""]",2208.99,"{\""seasonal\"": \""23%\""}",252843,1,"""Africa""" +2024-01-14,85691,3431,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3529.84,"{\""seasonal\"": \""30%\""}",297232,1,"""Europe""" +2023-05-17,85692,1160,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4047.04,"{\""seasonal\"": \""24%\""}",140652,0,"""Europe""" +2023-09-20,85693,3568,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",557.55,{},264555,1,"""Europe""" +2023-12-14,85694,8944,"[\""Charger\""]",1153.51,{},292556,1,"""Asia""" +2024-10-31,85695,9328,"[\""Headphones\""]",724.19,"{\""loyalty\"": \""15%\""}",287305,0,"""South America""" +2024-10-06,85696,6644,"[\""Tablet\""]",457.79,{},199889,1,"""North America""" +2023-08-06,85697,244,"[\""Keyboard\"", \""Wireless Mouse\""]",717.36,{},185769,1,"""North America""" +2023-05-06,85698,5257,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1449.91,{},185754,1,"""North America""" +2024-12-12,85699,3258,"[\""Keyboard\"", \""Tablet\""]",4845.68,"{\""loyalty\"": \""14%\""}",196620,1,"""Asia""" +2024-11-29,85700,7681,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1860.05,{},84166,1,"""Europe""" +2023-03-28,85701,488,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",2219.59,"{\"": \""13%\""}",224633,0,"""Africa""" +2023-01-21,85702,6201,"[\""Keyboard\"", \""Charger\""]",564.1,"{\""promo\"": \""26%\""}",91941,1,"""South America""" +2024-08-05,85703,514,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",427.08,{},11396,1,"""North America""" +2024-01-07,85704,3902,"[\""Phone\"", \""Monitor\""]",1024.19,{},202787,1,"""South America""" +2024-09-06,85705,830,"[\""Charger\""]",679.13,"{\"": \""12%\""}",67841,0,"""Asia""" +2024-12-07,85706,7297,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2535.95,"{\"": \""11%\""}",3095,0,"""Asia""" +2023-01-13,85707,4312,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",407.17,"{\"": \""28%\""}",167020,1,"""Africa""" +2024-06-16,85708,4541,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",3919.16,"{\""seasonal\"": \""10%\""}",83289,0,"""South America""" +2024-11-19,85709,1196,"[\""Wireless Mouse\""]",2696.82,{},47058,1,"""North America""" +2024-06-11,85710,2983,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2966.8,{},21604,1,"""Africa""" +2024-12-27,85711,4978,"[\""Monitor\"", \""Charger\""]",360.29,{},175130,1,"""Europe""" +2024-06-18,85712,5215,"[\""Wireless Mouse\"", \""Headphones\""]",4064.93,{},95247,1,"""Africa""" +2023-07-25,85713,5372,"[\""Keyboard\"", \""Charger\""]",1410.64,{},242254,0,"""Europe""" +2024-11-27,85714,2388,"[\""Laptop\"", \""Phone\""]",3489.11,"{\""promo\"": \""27%\""}",3690,1,"""North America""" +2023-02-12,85715,593,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2948.18,"{\"": \""30%\""}",218984,1,"""Europe""" +2024-08-16,85716,4018,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1146.17,{},25681,1,"""North America""" +2024-02-27,85717,2250,"[\""Charger\"", \""Monitor\""]",1061.8,"{\""seasonal\"": \""27%\""}",120036,0,"""Europe""" +2023-11-17,85718,181,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2476.43,{},240105,1,"""Africa""" +2024-02-11,85719,1197,"[\""Monitor\""]",242.75,{},244372,1,"""Asia""" +2024-05-24,85720,8927,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1607.93,{},163006,0,"""North America""" +2023-07-03,85721,3258,"[\""Headphones\""]",3652.26,"{\"": \""8%\""}",130976,1,"""Asia""" +2024-02-12,85722,9184,"[\""Tablet\""]",4911.9,{},3894,1,"""Africa""" +2024-01-24,85723,925,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",826.65,"{\""seasonal\"": \""15%\""}",112774,1,"""South America""" +2024-07-22,85724,3570,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",3860.74,"{\""loyalty\"": \""15%\""}",35138,1,"""South America""" +2024-03-15,85725,3849,"[\""Keyboard\"", \""Headphones\""]",1928.88,{},22228,1,"""South America""" +2023-03-17,85726,2333,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4754.95,"{\"": \""12%\""}",119604,1,"""Europe""" +2023-04-21,85727,7714,"[\""Tablet\"", \""Phone\"", \""Charger\""]",964.66,"{\""seasonal\"": \""7%\""}",286725,0,"""South America""" +2024-05-09,85728,8508,"[\""Monitor\"", \""Headphones\""]",2049.84,{},210042,0,"""North America""" +2024-11-11,85729,6325,"[\""Phone\"", \""Laptop\""]",4765.3,"{\""promo\"": \""12%\""}",25410,1,"""Europe""" +2023-11-30,85730,5044,"[\""Wireless Mouse\"", \""Tablet\""]",386.06,"{\""promo\"": \""28%\""}",224818,0,"""Africa""" +2024-01-18,85731,1667,"[\""Charger\""]",596.83,{},236232,1,"""Asia""" +2023-09-25,85732,4312,"[\""Headphones\""]",546.79,"{\""seasonal\"": \""28%\""}",7254,0,"""Europe""" +2023-11-26,85733,3949,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3797.77,{},229409,0,"""Africa""" +2023-07-19,85734,1744,"[\""Charger\""]",4360.51,"{\"": \""30%\""}",214410,0,"""Europe""" +2023-06-12,85735,9377,"[\""Wireless Mouse\"", \""Tablet\""]",1981.9,"{\""loyalty\"": \""16%\""}",128427,1,"""North America""" +2023-08-08,85736,1418,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2741.04,{},276372,0,"""North America""" +2024-08-12,85737,1711,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3519.75,{},159301,1,"""North America""" +2023-04-22,85738,5905,"[\""Keyboard\"", \""Tablet\""]",1835.11,"{\""loyalty\"": \""5%\""}",155609,1,"""North America""" +2024-02-14,85739,9004,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3221.67,"{\""promo\"": \""27%\""}",261368,1,"""Europe""" +2024-02-12,85740,862,"[\""Phone\"", \""Wireless Mouse\""]",4815.01,"{\""loyalty\"": \""30%\""}",168882,1,"""Europe""" +2023-09-17,85741,3716,"[\""Headphones\"", \""Wireless Mouse\""]",3577.52,"{\""seasonal\"": \""29%\""}",262052,1,"""Africa""" +2024-03-31,85742,5523,"[\""Tablet\"", \""Headphones\""]",2230.66,"{\""loyalty\"": \""18%\""}",245469,1,"""Africa""" +2023-09-19,85743,8920,"[\""Monitor\"", \""Tablet\""]",805.62,"{\"": \""27%\""}",154017,1,"""Africa""" +2023-10-26,85744,9282,"[\""Headphones\""]",2387.14,"{\""loyalty\"": \""8%\""}",153534,1,"""South America""" +2024-08-10,85745,631,"[\""Phone\""]",1860.07,"{\""loyalty\"": \""17%\""}",181810,0,"""North America""" +2023-02-11,85746,2102,"[\""Laptop\""]",2319.34,"{\""seasonal\"": \""19%\""}",24279,0,"""Europe""" +2024-06-28,85747,497,"[\""Monitor\""]",1345.17,{},98195,0,"""Asia""" +2024-04-13,85748,9190,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1455.48,{},99724,1,"""South America""" +2023-09-19,85749,9045,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",3203.56,{},190967,0,"""Asia""" +2023-11-23,85750,6348,"[\""Charger\"", \""Phone\""]",4546.8,"{\""seasonal\"": \""6%\""}",47794,1,"""South America""" +2023-09-29,85751,5044,"[\""Monitor\""]",4497.17,{},46720,1,"""Africa""" +2023-08-16,85752,338,"[\""Keyboard\"", \""Phone\""]",3748.28,"{\""loyalty\"": \""15%\""}",280182,1,"""Europe""" +2024-11-25,85753,3757,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3600.86,{},43082,1,"""North America""" +2024-10-05,85754,8435,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4058.44,{},144856,1,"""North America""" +2023-06-08,85755,6203,"[\""Monitor\"", \""Keyboard\""]",1556.69,{},260143,1,"""Asia""" +2024-03-11,85756,5128,"[\""Monitor\""]",3553.78,{},46027,1,"""North America""" +2023-05-19,85757,646,"[\""Phone\"", \""Monitor\"", \""Charger\""]",970.78,{},121760,1,"""Africa""" +2023-10-14,85758,6375,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3310.98,"{\""loyalty\"": \""22%\""}",132963,0,"""Africa""" +2024-12-14,85759,50,"[\""Phone\"", \""Keyboard\""]",3343.83,"{\""seasonal\"": \""20%\""}",198891,0,"""Asia""" +2024-01-14,85760,1126,"[\""Laptop\"", \""Tablet\""]",1181.68,{},6299,0,"""North America""" +2023-05-28,85761,9697,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",1121.75,"{\""loyalty\"": \""14%\""}",218537,0,"""Africa""" +2023-08-20,85762,2878,"[\""Wireless Mouse\""]",2300.67,{},272615,1,"""North America""" +2023-10-14,85763,8830,"[\""Laptop\"", \""Charger\""]",2885.27,{},13326,1,"""Europe""" +2023-06-26,85764,6222,"[\""Tablet\"", \""Phone\""]",1738.28,{},101521,1,"""Asia""" +2024-03-26,85765,8106,"[\""Monitor\"", \""Charger\""]",272.62,"{\"": \""19%\""}",99463,1,"""South America""" +2023-03-31,85766,9249,"[\""Phone\"", \""Wireless Mouse\""]",877.89,"{\""promo\"": \""27%\""}",40992,0,"""North America""" +2023-03-08,85767,2845,"[\""Monitor\"", \""Keyboard\""]",3897.3,"{\""loyalty\"": \""17%\""}",46757,1,"""Europe""" +2024-11-11,85768,5436,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1398.77,{},93118,0,"""Africa""" +2023-01-22,85769,9712,"[\""Keyboard\""]",4599.64,{},92739,0,"""Asia""" +2024-10-09,85770,3954,"[\""Laptop\"", \""Wireless Mouse\""]",218.26,"{\""seasonal\"": \""29%\""}",296352,1,"""Europe""" +2023-01-18,85771,415,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",547.06,"{\""loyalty\"": \""6%\""}",270672,0,"""Asia""" +2023-09-20,85772,6945,"[\""Charger\"", \""Wireless Mouse\""]",2523.87,"{\""loyalty\"": \""16%\""}",295931,1,"""North America""" +2024-04-17,85773,5990,"[\""Charger\""]",3811.69,{},218106,1,"""Europe""" +2024-05-23,85774,2441,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3602.54,{},186598,0,"""South America""" +2023-03-26,85775,8473,"[\""Wireless Mouse\"", \""Laptop\""]",2756.32,"{\""loyalty\"": \""19%\""}",278752,1,"""North America""" +2023-11-11,85776,5089,"[\""Laptop\""]",4985.74,{},125117,1,"""Europe""" +2023-12-20,85777,4552,"[\""Phone\"", \""Laptop\""]",3782.58,{},47948,1,"""Europe""" +2024-08-03,85778,8221,"[\""Keyboard\"", \""Tablet\""]",2104.89,"{\""seasonal\"": \""22%\""}",98783,0,"""Europe""" +2024-04-14,85779,7531,"[\""Monitor\""]",1516.71,"{\""seasonal\"": \""28%\""}",298459,1,"""South America""" +2023-11-01,85780,599,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2232.26,{},83659,1,"""North America""" +2023-03-08,85781,5296,"[\""Keyboard\"", \""Wireless Mouse\""]",1778.06,"{\"": \""23%\""}",127064,0,"""Europe""" +2024-05-02,85782,2923,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1547.05,"{\""loyalty\"": \""18%\""}",56657,0,"""North America""" +2024-08-12,85783,227,"[\""Charger\""]",2420.28,{},127452,1,"""Asia""" +2024-09-21,85784,9188,"[\""Wireless Mouse\""]",3070.22,{},161470,1,"""Africa""" +2024-03-27,85785,5354,"[\""Headphones\"", \""Wireless Mouse\""]",3146.08,{},259735,1,"""Africa""" +2024-10-29,85786,1870,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3545.75,{},41273,0,"""Europe""" +2024-11-14,85787,4380,"[\""Monitor\""]",1231.6,"{\""loyalty\"": \""17%\""}",51786,1,"""Africa""" +2024-11-26,85788,8514,"[\""Charger\"", \""Headphones\""]",1117.7,"{\""promo\"": \""5%\""}",208212,0,"""North America""" +2023-03-22,85789,3371,"[\""Monitor\""]",1284.93,"{\""loyalty\"": \""24%\""}",101763,1,"""Africa""" +2023-09-28,85790,8657,"[\""Charger\"", \""Monitor\""]",4881.82,"{\""seasonal\"": \""13%\""}",228066,1,"""North America""" +2023-07-04,85791,3202,"[\""Keyboard\""]",1597.98,{},272049,1,"""South America""" +2023-11-19,85792,3002,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",1823.93,"{\""loyalty\"": \""24%\""}",29390,0,"""Europe""" +2024-01-02,85793,4349,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",770.83,{},270932,1,"""Asia""" +2023-06-16,85794,4394,"[\""Headphones\"", \""Charger\""]",2145.53,{},48842,1,"""Africa""" +2024-08-08,85795,6185,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2793.51,"{\""loyalty\"": \""15%\""}",59880,0,"""Asia""" +2023-05-17,85796,4458,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",736.1,{},138942,0,"""South America""" +2023-08-02,85797,3093,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4747.18,"{\"": \""7%\""}",271677,1,"""Europe""" +2023-10-15,85798,8029,"[\""Laptop\"", \""Keyboard\""]",2059.19,{},2410,0,"""North America""" +2024-05-12,85799,7664,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2311.01,"{\""promo\"": \""30%\""}",174543,0,"""North America""" +2024-11-04,85800,734,"[\""Phone\""]",762.94,"{\"": \""26%\""}",253937,1,"""Asia""" +2023-09-30,85801,2926,"[\""Laptop\""]",461.25,{},41008,0,"""Africa""" +2024-04-20,85802,1746,"[\""Keyboard\""]",2699.62,"{\""loyalty\"": \""19%\""}",73942,1,"""Europe""" +2023-03-25,85803,4637,"[\""Headphones\"", \""Tablet\""]",3010.37,"{\""seasonal\"": \""7%\""}",269086,0,"""Europe""" +2024-06-11,85804,7038,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4608.74,"{\""loyalty\"": \""16%\""}",74696,1,"""Africa""" +2023-01-18,85805,6190,"[\""Wireless Mouse\"", \""Tablet\""]",3955.7,"{\""loyalty\"": \""21%\""}",69180,0,"""Europe""" +2023-11-28,85806,6894,"[\""Phone\""]",2408.97,{},291618,1,"""Europe""" +2024-12-04,85807,2339,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2644.0,"{\"": \""19%\""}",145645,0,"""South America""" +2024-05-29,85808,2846,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1178.48,"{\""loyalty\"": \""6%\""}",1021,1,"""North America""" +2023-07-17,85809,794,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3914.26,"{\""promo\"": \""10%\""}",254915,1,"""North America""" +2024-06-28,85810,7062,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1092.66,{},209185,1,"""Africa""" +2024-02-19,85811,9495,"[\""Charger\"", \""Phone\""]",1372.7,"{\""loyalty\"": \""18%\""}",22273,0,"""Africa""" +2024-09-27,85812,5035,"[\""Headphones\"", \""Monitor\""]",682.52,{},103084,0,"""Africa""" +2023-12-04,85813,8150,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2763.86,{},240136,1,"""Europe""" +2023-06-30,85814,8177,"[\""Monitor\""]",2424.74,{},22236,1,"""Asia""" +2023-05-26,85815,9260,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2747.36,{},58951,0,"""North America""" +2023-12-21,85816,2407,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3717.94,{},212770,0,"""Asia""" +2024-04-11,85817,279,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3112.51,{},43485,1,"""Africa""" +2023-09-19,85818,4,"[\""Headphones\"", \""Charger\""]",750.38,{},168354,0,"""Asia""" +2024-06-13,85819,4332,"[\""Phone\"", \""Keyboard\""]",1608.02,{},94251,0,"""South America""" +2023-09-12,85820,7282,"[\""Keyboard\""]",4199.58,{},193481,1,"""Europe""" +2023-01-22,85821,5073,"[\""Keyboard\""]",1736.92,{},87296,1,"""Africa""" +2023-10-08,85822,9980,"[\""Wireless Mouse\"", \""Charger\""]",3011.86,"{\""seasonal\"": \""29%\""}",135690,1,"""Europe""" +2024-09-22,85823,3937,"[\""Charger\""]",1244.55,"{\""loyalty\"": \""17%\""}",45959,0,"""Europe""" +2023-04-25,85824,5938,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",499.81,"{\""loyalty\"": \""17%\""}",275141,1,"""South America""" +2023-06-21,85825,2884,"[\""Tablet\"", \""Monitor\""]",284.31,"{\""loyalty\"": \""23%\""}",184776,0,"""Europe""" +2024-08-27,85826,7984,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4963.83,"{\""loyalty\"": \""9%\""}",63341,1,"""Europe""" +2024-08-04,85827,7119,"[\""Headphones\"", \""Keyboard\""]",2724.52,"{\"": \""7%\""}",223082,0,"""North America""" +2024-12-17,85828,4093,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3452.84,{},24506,0,"""North America""" +2023-04-05,85829,2593,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",2859.45,"{\""seasonal\"": \""10%\""}",224023,1,"""South America""" +2024-11-01,85830,1703,"[\""Headphones\"", \""Monitor\""]",2234.03,{},151820,0,"""Europe""" +2024-09-29,85831,3679,"[\""Wireless Mouse\""]",2288.49,"{\""promo\"": \""28%\""}",183831,0,"""Africa""" +2023-04-28,85832,9438,"[\""Phone\"", \""Monitor\""]",1612.05,{},117227,1,"""South America""" +2024-05-11,85833,8363,"[\""Phone\""]",1591.66,{},37747,1,"""North America""" +2023-04-21,85834,7363,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4136.05,"{\""seasonal\"": \""9%\""}",199530,0,"""Asia""" +2023-07-24,85835,4602,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4514.56,"{\""promo\"": \""30%\""}",62669,0,"""Africa""" +2024-05-11,85836,2282,"[\""Tablet\"", \""Laptop\""]",4230.39,"{\""loyalty\"": \""11%\""}",57433,1,"""Europe""" +2024-09-28,85837,398,"[\""Charger\"", \""Phone\""]",2794.83,{},25888,1,"""Europe""" +2024-07-30,85838,6473,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2408.27,"{\""loyalty\"": \""28%\""}",153566,0,"""North America""" +2023-02-23,85839,9810,"[\""Laptop\"", \""Headphones\""]",3793.11,{},73370,1,"""Asia""" +2023-02-26,85840,2381,"[\""Wireless Mouse\""]",4643.63,"{\""promo\"": \""16%\""}",129766,1,"""South America""" +2023-05-18,85841,5301,"[\""Phone\"", \""Wireless Mouse\""]",2162.6,{},35669,0,"""Europe""" +2024-03-18,85842,1074,"[\""Monitor\""]",4750.96,"{\""seasonal\"": \""10%\""}",97927,0,"""North America""" +2023-04-29,85843,7491,"[\""Tablet\"", \""Phone\""]",4576.32,{},37757,1,"""South America""" +2024-04-14,85844,1334,"[\""Laptop\"", \""Wireless Mouse\""]",4870.87,{},44383,0,"""North America""" +2023-05-27,85845,5510,"[\""Phone\"", \""Laptop\""]",2515.67,{},19359,1,"""Europe""" +2023-07-01,85846,2936,"[\""Monitor\""]",4850.4,"{\""loyalty\"": \""22%\""}",160506,1,"""South America""" +2023-10-06,85847,1122,"[\""Monitor\""]",1285.55,"{\""loyalty\"": \""21%\""}",29640,1,"""Asia""" +2023-06-27,85848,4629,"[\""Headphones\"", \""Laptop\""]",1250.98,{},113773,0,"""Europe""" +2024-06-10,85849,7766,"[\""Charger\""]",2739.8,"{\""loyalty\"": \""27%\""}",176195,1,"""North America""" +2023-01-06,85850,354,"[\""Laptop\"", \""Keyboard\""]",1986.77,{},166623,1,"""Africa""" +2023-12-23,85851,5720,"[\""Headphones\"", \""Phone\""]",363.39,"{\"": \""30%\""}",73161,1,"""North America""" +2023-06-01,85852,8815,"[\""Phone\"", \""Monitor\""]",4336.29,"{\""loyalty\"": \""15%\""}",268699,0,"""Europe""" +2024-04-05,85853,9720,"[\""Monitor\""]",268.04,"{\""promo\"": \""17%\""}",121472,1,"""North America""" +2024-11-21,85854,5906,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2740.55,"{\""seasonal\"": \""18%\""}",199116,0,"""Africa""" +2023-02-18,85855,1816,"[\""Headphones\"", \""Keyboard\""]",2529.32,"{\""promo\"": \""19%\""}",85233,0,"""Africa""" +2023-12-01,85856,8930,"[\""Charger\"", \""Tablet\""]",972.13,"{\"": \""28%\""}",148960,1,"""South America""" +2024-12-15,85857,659,"[\""Keyboard\""]",532.03,"{\""promo\"": \""9%\""}",214675,1,"""South America""" +2023-05-20,85858,3080,"[\""Charger\"", \""Phone\""]",978.09,"{\"": \""14%\""}",288870,1,"""South America""" +2023-06-13,85859,9240,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",266.75,{},187913,1,"""Europe""" +2023-02-22,85860,4005,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2443.83,{},17881,0,"""Europe""" +2024-02-20,85861,5438,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3431.26,"{\"": \""14%\""}",89434,0,"""North America""" +2024-11-27,85862,145,"[\""Headphones\"", \""Keyboard\""]",1404.12,"{\""loyalty\"": \""5%\""}",46158,0,"""Asia""" +2023-07-08,85863,4256,"[\""Tablet\"", \""Charger\""]",406.13,"{\"": \""7%\""}",28380,0,"""South America""" +2024-12-24,85864,1917,"[\""Wireless Mouse\"", \""Charger\""]",2090.65,"{\"": \""6%\""}",121947,1,"""Europe""" +2023-08-21,85865,7291,"[\""Headphones\""]",1123.89,"{\""seasonal\"": \""22%\""}",224508,0,"""Europe""" +2024-02-07,85866,8347,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3381.2,{},177557,0,"""South America""" +2024-06-14,85867,7577,"[\""Charger\"", \""Tablet\""]",4088.71,{},207507,1,"""North America""" +2023-10-25,85868,912,"[\""Wireless Mouse\""]",4914.2,{},244852,1,"""North America""" +2023-01-31,85869,3071,"[\""Phone\""]",2978.52,{},78331,1,"""South America""" +2024-01-24,85870,1779,"[\""Tablet\""]",3319.7,{},68781,0,"""North America""" +2023-10-15,85871,618,"[\""Charger\"", \""Monitor\""]",3948.91,{},33341,1,"""North America""" +2023-11-30,85872,4246,"[\""Wireless Mouse\""]",1805.93,"{\"": \""15%\""}",177359,0,"""South America""" +2023-04-05,85873,4670,"[\""Phone\""]",4026.18,"{\""seasonal\"": \""20%\""}",235453,0,"""North America""" +2024-03-31,85874,3238,"[\""Tablet\""]",4671.99,"{\""seasonal\"": \""20%\""}",63588,0,"""Europe""" +2023-07-17,85875,4555,"[\""Phone\"", \""Wireless Mouse\""]",2325.47,"{\""loyalty\"": \""8%\""}",179594,1,"""South America""" +2023-02-01,85876,9328,"[\""Wireless Mouse\"", \""Monitor\""]",813.86,"{\""promo\"": \""16%\""}",192933,0,"""Asia""" +2024-02-26,85877,3075,"[\""Charger\""]",2067.48,"{\"": \""19%\""}",117763,0,"""North America""" +2024-08-05,85878,7651,"[\""Phone\""]",4752.55,"{\""seasonal\"": \""18%\""}",2217,1,"""Asia""" +2023-01-15,85879,1616,"[\""Phone\"", \""Keyboard\""]",1600.94,"{\""loyalty\"": \""15%\""}",195301,1,"""Europe""" +2024-03-05,85880,7615,"[\""Monitor\"", \""Laptop\""]",3965.78,"{\""loyalty\"": \""29%\""}",155485,0,"""North America""" +2024-08-01,85881,75,"[\""Keyboard\"", \""Tablet\""]",65.87,"{\""seasonal\"": \""26%\""}",25519,1,"""Africa""" +2023-03-16,85882,1998,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4313.89,"{\""promo\"": \""27%\""}",130913,0,"""Europe""" +2024-11-13,85883,4255,"[\""Phone\""]",4090.85,{},204988,1,"""Asia""" +2024-07-23,85884,4625,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3723.09,{},207805,0,"""South America""" +2023-08-27,85885,6102,"[\""Wireless Mouse\""]",3829.99,{},219561,0,"""South America""" +2023-04-10,85886,122,"[\""Laptop\"", \""Charger\""]",2979.19,{},239573,1,"""North America""" +2023-10-23,85887,3310,"[\""Tablet\""]",2761.98,{},44083,1,"""Europe""" +2023-09-15,85888,1286,"[\""Headphones\"", \""Monitor\""]",3798.53,"{\""promo\"": \""26%\""}",37436,0,"""South America""" +2024-02-13,85889,9015,"[\""Phone\""]",1949.55,"{\""promo\"": \""15%\""}",283865,0,"""Africa""" +2024-07-26,85890,8454,"[\""Wireless Mouse\"", \""Laptop\""]",4803.95,"{\"": \""11%\""}",159448,0,"""North America""" +2023-03-31,85891,9758,"[\""Headphones\"", \""Keyboard\""]",4444.42,{},194067,0,"""Africa""" +2024-04-05,85892,8585,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4523.13,"{\"": \""23%\""}",39610,1,"""South America""" +2024-06-04,85893,9431,"[\""Monitor\"", \""Laptop\""]",843.74,{},187793,1,"""Africa""" +2023-01-30,85894,5846,"[\""Tablet\"", \""Wireless Mouse\""]",2258.14,"{\""loyalty\"": \""11%\""}",145294,1,"""South America""" +2024-01-10,85895,8526,"[\""Laptop\""]",3078.9,"{\""loyalty\"": \""30%\""}",101468,1,"""Asia""" +2023-12-08,85896,3758,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",4878.04,{},298075,0,"""North America""" +2023-06-19,85897,9995,"[\""Monitor\""]",2004.4,"{\""seasonal\"": \""28%\""}",187418,1,"""South America""" +2023-11-07,85898,8020,"[\""Laptop\"", \""Tablet\""]",1908.79,"{\"": \""26%\""}",23885,1,"""North America""" +2024-04-15,85899,3640,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1614.39,"{\""promo\"": \""29%\""}",93142,0,"""North America""" +2023-05-16,85900,4973,"[\""Monitor\"", \""Keyboard\""]",3364.59,{},202928,1,"""Africa""" +2023-03-10,85901,7760,"[\""Wireless Mouse\"", \""Tablet\""]",2468.4,{},190693,1,"""North America""" +2023-01-04,85902,3326,"[\""Charger\"", \""Monitor\""]",1876.23,"{\""promo\"": \""16%\""}",243388,1,"""Africa""" +2023-03-14,85903,7060,"[\""Charger\""]",1609.68,{},210024,0,"""North America""" +2024-12-23,85904,4401,"[\""Headphones\""]",2546.67,"{\""seasonal\"": \""10%\""}",8841,1,"""South America""" +2024-04-16,85905,8419,"[\""Wireless Mouse\"", \""Monitor\""]",3787.3,{},116426,0,"""Europe""" +2024-02-27,85906,8010,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3076.8,{},56676,0,"""Europe""" +2023-10-13,85907,181,"[\""Charger\""]",364.03,"{\""seasonal\"": \""11%\""}",110059,0,"""North America""" +2024-06-22,85908,9256,"[\""Laptop\"", \""Keyboard\""]",4397.83,{},178048,0,"""North America""" +2023-01-16,85909,9064,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1558.47,{},242155,0,"""Africa""" +2023-12-13,85910,3492,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3572.83,{},226938,1,"""Asia""" +2024-11-15,85911,4601,"[\""Charger\""]",2730.73,{},83111,1,"""South America""" +2023-04-03,85912,7017,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",102.08,{},8289,1,"""Africa""" +2023-06-10,85913,5294,"[\""Wireless Mouse\"", \""Monitor\""]",2812.75,{},272706,1,"""Europe""" +2024-01-06,85914,1398,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2742.82,"{\""promo\"": \""11%\""}",286333,1,"""South America""" +2024-05-27,85915,9687,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1113.27,{},92867,0,"""North America""" +2024-06-24,85916,1787,"[\""Wireless Mouse\""]",3482.86,"{\""loyalty\"": \""8%\""}",28402,1,"""South America""" +2024-11-27,85917,1687,"[\""Monitor\""]",2994.96,{},38557,1,"""Asia""" +2024-06-04,85918,1718,"[\""Phone\""]",3823.6,{},266104,0,"""Africa""" +2024-12-27,85919,5188,"[\""Keyboard\""]",4680.81,"{\""seasonal\"": \""24%\""}",206557,0,"""North America""" +2024-06-13,85920,4646,"[\""Headphones\""]",1594.43,{},248610,1,"""South America""" +2023-01-11,85921,4447,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3867.61,{},190814,0,"""North America""" +2024-01-12,85922,1276,"[\""Wireless Mouse\"", \""Headphones\""]",584.66,"{\"": \""22%\""}",237252,0,"""South America""" +2023-12-21,85923,2288,"[\""Monitor\"", \""Phone\""]",3395.19,"{\""seasonal\"": \""27%\""}",190899,0,"""Africa""" +2024-01-26,85924,5765,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3107.74,{},103292,0,"""North America""" +2024-02-06,85925,6870,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3054.82,{},174510,0,"""Asia""" +2024-12-29,85926,3222,"[\""Phone\""]",1784.61,{},284034,1,"""Africa""" +2023-06-06,85927,3650,"[\""Charger\""]",454.88,{},77426,0,"""North America""" +2024-01-03,85928,2240,"[\""Laptop\""]",2351.31,"{\""promo\"": \""10%\""}",249359,1,"""South America""" +2023-09-30,85929,2061,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1444.71,"{\""seasonal\"": \""20%\""}",89783,0,"""Africa""" +2024-05-18,85930,1865,"[\""Wireless Mouse\""]",3333.85,"{\""seasonal\"": \""26%\""}",276775,0,"""Africa""" +2024-05-10,85931,5767,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1390.52,{},234385,1,"""Africa""" +2024-03-16,85932,3455,"[\""Headphones\"", \""Phone\""]",2497.4,{},241540,0,"""North America""" +2023-06-25,85933,2324,"[\""Headphones\""]",4353.29,"{\""promo\"": \""9%\""}",64873,1,"""North America""" +2023-10-13,85934,6658,"[\""Charger\"", \""Wireless Mouse\""]",4672.97,{},157570,1,"""Europe""" +2023-05-17,85935,9015,"[\""Keyboard\"", \""Laptop\""]",4548.76,{},100462,1,"""Europe""" +2024-08-03,85936,4947,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2216.71,"{\""promo\"": \""30%\""}",265336,0,"""South America""" +2023-04-14,85937,4085,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1266.57,"{\"": \""21%\""}",46129,0,"""North America""" +2024-01-16,85938,7959,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2004.41,{},291324,1,"""South America""" +2023-09-01,85939,1537,"[\""Monitor\""]",763.48,{},198098,1,"""Asia""" +2024-09-23,85940,3759,"[\""Wireless Mouse\"", \""Keyboard\""]",4401.54,{},223572,1,"""Africa""" +2023-02-01,85941,5813,"[\""Keyboard\""]",3112.09,{},243003,0,"""Africa""" +2023-03-27,85942,2360,"[\""Phone\"", \""Wireless Mouse\""]",4796.94,"{\""loyalty\"": \""19%\""}",279103,1,"""Asia""" +2024-02-25,85943,6791,"[\""Wireless Mouse\"", \""Monitor\""]",4270.85,{},138027,1,"""South America""" +2023-12-08,85944,3684,"[\""Tablet\""]",4575.95,{},218602,0,"""North America""" +2024-12-03,85945,7823,"[\""Phone\""]",4815.71,"{\""promo\"": \""23%\""}",118237,1,"""North America""" +2023-01-26,85946,4676,"[\""Charger\""]",1952.3,{},188997,1,"""Africa""" +2024-06-28,85947,2344,"[\""Headphones\""]",1932.81,{},63117,1,"""Africa""" +2023-12-31,85948,6246,"[\""Tablet\"", \""Keyboard\""]",638.64,{},21438,0,"""South America""" +2024-05-07,85949,1483,"[\""Tablet\""]",2782.38,{},258115,1,"""Europe""" +2023-07-02,85950,2662,"[\""Keyboard\"", \""Charger\""]",428.56,{},23732,1,"""North America""" +2023-06-09,85951,5483,"[\""Laptop\""]",2506.65,"{\""loyalty\"": \""7%\""}",178549,0,"""Europe""" +2024-04-20,85952,1341,"[\""Headphones\"", \""Monitor\""]",3168.41,"{\""seasonal\"": \""5%\""}",59195,0,"""North America""" +2024-12-27,85953,5311,"[\""Headphones\""]",1917.09,"{\""promo\"": \""8%\""}",38217,0,"""South America""" +2023-10-26,85954,7353,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3625.32,{},169993,0,"""Africa""" +2024-02-07,85955,5042,"[\""Headphones\""]",3120.22,{},85075,0,"""Africa""" +2024-03-21,85956,1627,"[\""Monitor\""]",4846.29,{},104968,1,"""South America""" +2024-10-13,85957,2857,"[\""Keyboard\"", \""Charger\""]",2768.75,{},155419,0,"""North America""" +2023-07-21,85958,6081,"[\""Charger\""]",4270.73,{},201634,0,"""Asia""" +2024-12-27,85959,3791,"[\""Tablet\""]",1316.45,{},191934,0,"""North America""" +2024-01-11,85960,7065,"[\""Keyboard\"", \""Phone\""]",4951.38,{},185409,1,"""South America""" +2024-05-14,85961,1196,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3817.78,"{\"": \""19%\""}",10884,1,"""Africa""" +2024-05-12,85962,1414,"[\""Wireless Mouse\""]",1647.34,{},136790,1,"""Asia""" +2023-07-16,85963,1471,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",1172.22,{},259097,1,"""Asia""" +2024-09-23,85964,7430,"[\""Laptop\""]",3709.66,"{\""seasonal\"": \""18%\""}",227258,1,"""Africa""" +2023-06-08,85965,6958,"[\""Laptop\"", \""Tablet\""]",4783.8,{},215015,0,"""North America""" +2024-02-06,85966,2861,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",997.73,{},229584,1,"""North America""" +2024-07-18,85967,4666,"[\""Monitor\""]",3410.3,{},169306,1,"""Africa""" +2023-02-18,85968,6357,"[\""Wireless Mouse\""]",3010.47,{},110338,0,"""Europe""" +2024-01-09,85969,6521,"[\""Tablet\""]",4852.24,"{\""loyalty\"": \""16%\""}",159161,0,"""South America""" +2024-08-05,85970,2379,"[\""Tablet\"", \""Wireless Mouse\""]",1209.48,{},118208,0,"""Africa""" +2024-06-08,85971,6348,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1046.24,"{\""promo\"": \""28%\""}",94337,0,"""Asia""" +2023-11-17,85972,75,"[\""Laptop\""]",2075.56,{},4668,0,"""North America""" +2024-11-22,85973,2099,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4205.79,"{\"": \""30%\""}",155268,0,"""Europe""" +2024-08-19,85974,8340,"[\""Keyboard\""]",534.97,{},225010,1,"""Africa""" +2024-05-25,85975,7209,"[\""Charger\"", \""Phone\""]",2924.8,{},223132,0,"""North America""" +2023-02-25,85976,1780,"[\""Keyboard\"", \""Laptop\""]",4820.36,"{\""loyalty\"": \""10%\""}",231262,1,"""South America""" +2024-11-30,85977,8305,"[\""Wireless Mouse\"", \""Phone\""]",1935.1,{},110078,1,"""Asia""" +2023-12-02,85978,5430,"[\""Wireless Mouse\"", \""Phone\""]",713.74,{},124804,0,"""Asia""" +2024-07-04,85979,2993,"[\""Laptop\""]",4640.03,"{\""seasonal\"": \""28%\""}",50683,1,"""Europe""" +2024-08-01,85980,4393,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3863.79,{},238454,1,"""Africa""" +2024-06-10,85981,8573,"[\""Laptop\""]",3935.93,{},262152,1,"""Africa""" +2023-09-29,85982,3235,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",3713.05,"{\""loyalty\"": \""8%\""}",105562,1,"""North America""" +2023-05-18,85983,4345,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4413.99,{},210926,1,"""Europe""" +2023-05-12,85984,1985,"[\""Charger\""]",4086.52,{},177087,1,"""South America""" +2023-01-22,85985,6632,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1993.58,{},87805,0,"""South America""" +2024-10-08,85986,7009,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2588.07,{},298693,1,"""Asia""" +2023-01-30,85987,4404,"[\""Charger\"", \""Headphones\""]",2603.82,{},95400,0,"""North America""" +2024-11-02,85988,703,"[\""Headphones\"", \""Tablet\""]",429.32,{},114465,1,"""Asia""" +2023-10-11,85989,525,"[\""Charger\""]",2544.76,{},159221,0,"""Asia""" +2024-12-22,85990,5303,"[\""Monitor\"", \""Laptop\""]",210.43,{},86844,1,"""Africa""" +2023-08-22,85991,1641,"[\""Phone\""]",496.86,{},246996,0,"""South America""" +2023-01-25,85992,504,"[\""Charger\""]",1867.74,{},198146,1,"""Asia""" +2023-11-23,85993,9025,"[\""Headphones\""]",4719.42,"{\""loyalty\"": \""13%\""}",167047,0,"""Europe""" +2024-02-25,85994,9113,"[\""Keyboard\""]",3789.07,"{\""seasonal\"": \""13%\""}",194210,0,"""Asia""" +2023-04-30,85995,3358,"[\""Charger\"", \""Laptop\""]",2018.93,{},140535,0,"""South America""" +2023-06-13,85996,3198,"[\""Wireless Mouse\"", \""Charger\""]",3876.05,"{\""loyalty\"": \""6%\""}",45271,0,"""Africa""" +2023-01-19,85997,6349,"[\""Charger\"", \""Phone\"", \""Laptop\""]",703.33,"{\"": \""24%\""}",287156,1,"""Africa""" +2024-10-06,85998,9269,"[\""Keyboard\"", \""Tablet\""]",2557.33,{},232420,1,"""North America""" +2024-07-22,85999,5145,"[\""Headphones\"", \""Monitor\""]",4871.4,{},213241,0,"""Asia""" +2024-11-25,86000,9264,"[\""Wireless Mouse\"", \""Laptop\""]",4451.68,"{\""promo\"": \""28%\""}",256090,1,"""Africa""" +2024-10-05,86001,8330,"[\""Wireless Mouse\"", \""Monitor\""]",3071.98,{},9494,0,"""Asia""" +2024-03-18,86002,5902,"[\""Charger\""]",4579.96,{},171550,1,"""Africa""" +2023-08-10,86003,6162,"[\""Phone\""]",2506.61,"{\""seasonal\"": \""23%\""}",128114,0,"""Africa""" +2024-03-02,86004,7932,"[\""Charger\""]",2777.52,{},44638,0,"""North America""" +2023-04-12,86005,3676,"[\""Charger\""]",4257.7,{},115166,0,"""Africa""" +2024-11-05,86006,1785,"[\""Charger\"", \""Headphones\""]",2266.19,"{\""seasonal\"": \""18%\""}",74868,1,"""Asia""" +2024-10-13,86007,7697,"[\""Tablet\""]",3658.43,"{\"": \""26%\""}",48079,1,"""Asia""" +2024-02-18,86008,8247,"[\""Keyboard\""]",964.04,{},25143,1,"""Asia""" +2023-10-25,86009,9611,"[\""Headphones\""]",941.65,"{\""seasonal\"": \""24%\""}",69643,0,"""South America""" +2023-04-18,86010,3499,"[\""Laptop\"", \""Tablet\""]",1407.6,"{\""loyalty\"": \""17%\""}",194420,1,"""North America""" +2024-02-28,86011,7350,"[\""Keyboard\""]",2817.07,"{\"": \""11%\""}",231100,0,"""Europe""" +2023-02-28,86012,2178,"[\""Charger\"", \""Laptop\""]",4661.98,{},64920,0,"""South America""" +2024-10-26,86013,6343,"[\""Phone\"", \""Keyboard\""]",2345.25,"{\"": \""14%\""}",101222,1,"""Europe""" +2023-03-18,86014,3122,"[\""Charger\"", \""Monitor\""]",3472.01,{},3415,0,"""North America""" +2024-09-07,86015,5002,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3081.78,"{\""promo\"": \""5%\""}",297220,0,"""Africa""" +2024-10-13,86016,1613,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",709.15,"{\"": \""26%\""}",114407,0,"""Africa""" +2024-12-27,86017,2657,"[\""Keyboard\""]",2869.98,{},158451,1,"""Africa""" +2023-11-10,86018,9502,"[\""Phone\""]",3877.29,{},288085,0,"""Europe""" +2024-01-09,86019,3305,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4496.12,{},166399,1,"""Africa""" +2024-05-21,86020,7005,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1754.02,"{\"": \""7%\""}",177661,1,"""North America""" +2024-01-19,86021,8509,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4666.98,"{\"": \""15%\""}",82157,1,"""Asia""" +2023-07-19,86022,5547,"[\""Wireless Mouse\"", \""Monitor\""]",3833.75,{},128153,0,"""South America""" +2024-04-05,86023,6397,"[\""Charger\"", \""Headphones\""]",3150.74,"{\""loyalty\"": \""24%\""}",139274,1,"""North America""" +2023-03-05,86024,8847,"[\""Phone\""]",4250.79,{},171795,1,"""North America""" +2024-06-09,86025,276,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",619.83,"{\""loyalty\"": \""7%\""}",131355,0,"""North America""" +2023-03-25,86026,1736,"[\""Monitor\"", \""Phone\""]",3727.55,"{\"": \""28%\""}",138747,0,"""Europe""" +2024-02-01,86027,439,"[\""Wireless Mouse\""]",1099.04,"{\""seasonal\"": \""12%\""}",51457,1,"""Africa""" +2023-05-15,86028,2367,"[\""Monitor\"", \""Wireless Mouse\""]",2150.74,"{\"": \""16%\""}",178657,1,"""South America""" +2023-09-16,86029,71,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",513.85,{},223596,1,"""North America""" +2024-05-02,86030,6920,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",198.57,"{\""loyalty\"": \""5%\""}",133460,0,"""Europe""" +2023-06-20,86031,1260,"[\""Headphones\"", \""Keyboard\""]",4361.65,"{\"": \""17%\""}",43909,0,"""Europe""" +2024-08-22,86032,6569,"[\""Monitor\"", \""Charger\""]",1414.34,"{\""loyalty\"": \""28%\""}",265138,0,"""North America""" +2024-12-01,86033,1605,"[\""Charger\""]",2195.89,{},293333,1,"""North America""" +2023-05-29,86034,6044,"[\""Laptop\""]",1951.89,{},247970,1,"""Africa""" +2024-02-13,86035,4071,"[\""Keyboard\"", \""Charger\""]",4316.27,{},189980,0,"""Asia""" +2024-10-11,86036,4834,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2540.17,{},91653,0,"""Europe""" +2023-03-21,86037,9861,"[\""Keyboard\"", \""Charger\""]",910.41,{},30984,1,"""Africa""" +2023-02-17,86038,1338,"[\""Tablet\"", \""Laptop\""]",994.85,{},296771,0,"""North America""" +2023-05-05,86039,9193,"[\""Keyboard\"", \""Laptop\""]",4438.24,"{\""promo\"": \""15%\""}",86531,1,"""North America""" +2023-04-21,86040,3599,"[\""Tablet\"", \""Charger\"", \""Phone\""]",207.96,"{\"": \""25%\""}",4313,0,"""Asia""" +2024-06-14,86041,811,"[\""Wireless Mouse\"", \""Laptop\""]",636.41,{},190887,0,"""Europe""" +2023-03-31,86042,6435,"[\""Monitor\"", \""Wireless Mouse\""]",4547.66,"{\"": \""24%\""}",110533,1,"""North America""" +2023-01-11,86043,4086,"[\""Headphones\""]",2908.55,"{\""seasonal\"": \""25%\""}",12855,1,"""South America""" +2023-11-29,86044,7658,"[\""Monitor\""]",151.75,{},50362,1,"""North America""" +2023-02-15,86045,6048,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3356.53,{},230193,1,"""Europe""" +2024-03-17,86046,4611,"[\""Wireless Mouse\""]",2374.64,{},240609,1,"""Africa""" +2023-01-26,86047,3695,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3161.33,"{\""promo\"": \""8%\""}",264895,1,"""Africa""" +2023-09-25,86048,2227,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3155.85,{},206547,1,"""Europe""" +2024-03-26,86049,2485,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3346.49,"{\"": \""20%\""}",178583,1,"""South America""" +2023-01-07,86050,2147,"[\""Laptop\""]",4871.0,"{\""promo\"": \""25%\""}",45395,0,"""North America""" +2024-12-22,86051,2178,"[\""Phone\"", \""Wireless Mouse\""]",3707.3,"{\""loyalty\"": \""6%\""}",26031,1,"""Asia""" +2024-01-29,86052,9658,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4427.34,"{\"": \""28%\""}",41353,0,"""Africa""" +2023-10-21,86053,81,"[\""Monitor\"", \""Wireless Mouse\""]",4838.86,{},203057,1,"""Europe""" +2024-03-20,86054,5702,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",644.91,{},16810,1,"""North America""" +2023-03-15,86055,8343,"[\""Keyboard\"", \""Wireless Mouse\""]",2047.53,"{\""loyalty\"": \""6%\""}",96897,1,"""South America""" +2023-10-10,86056,9943,"[\""Laptop\""]",4364.96,{},290011,1,"""Europe""" +2023-10-08,86057,1285,"[\""Laptop\"", \""Charger\""]",1411.85,"{\""seasonal\"": \""22%\""}",153155,1,"""Africa""" +2024-11-03,86058,5941,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2587.74,{},117532,0,"""Asia""" +2023-04-13,86059,9466,"[\""Phone\"", \""Keyboard\""]",922.76,{},287591,0,"""South America""" +2024-08-13,86060,4595,"[\""Charger\""]",4377.07,"{\"": \""19%\""}",207613,0,"""Europe""" +2023-08-20,86061,8192,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4770.55,{},139015,0,"""Asia""" +2024-04-19,86062,7834,"[\""Tablet\""]",1130.73,{},116591,1,"""Europe""" +2024-11-11,86063,3385,"[\""Tablet\"", \""Phone\""]",1014.37,{},207555,1,"""North America""" +2024-10-10,86064,7871,"[\""Phone\"", \""Charger\""]",4185.24,{},109359,1,"""Asia""" +2024-08-06,86065,1736,"[\""Headphones\"", \""Wireless Mouse\""]",1214.02,"{\"": \""20%\""}",1066,0,"""Asia""" +2024-08-18,86066,9688,"[\""Tablet\""]",4548.8,{},224049,1,"""South America""" +2023-03-30,86067,3618,"[\""Headphones\""]",1944.81,"{\""seasonal\"": \""30%\""}",4666,0,"""Africa""" +2024-06-04,86068,6814,"[\""Tablet\"", \""Keyboard\""]",2792.85,"{\""seasonal\"": \""8%\""}",173809,1,"""North America""" +2024-10-20,86069,70,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4422.56,{},235223,1,"""South America""" +2024-08-14,86070,2327,"[\""Tablet\""]",4976.67,{},13728,1,"""Africa""" +2024-11-20,86071,9305,"[\""Charger\""]",1788.31,"{\"": \""7%\""}",187432,0,"""North America""" +2023-06-19,86072,1524,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4972.05,{},115821,1,"""Asia""" +2024-11-23,86073,9526,"[\""Wireless Mouse\""]",4596.75,{},50924,0,"""North America""" +2023-09-17,86074,1277,"[\""Monitor\"", \""Headphones\""]",2877.97,"{\""seasonal\"": \""21%\""}",173771,1,"""North America""" +2023-04-05,86075,1086,"[\""Charger\""]",132.65,{},186751,0,"""North America""" +2024-11-26,86076,3768,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3856.47,{},261282,1,"""Africa""" +2024-01-05,86077,4749,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1566.5,{},283180,1,"""Asia""" +2024-11-11,86078,1788,"[\""Monitor\""]",1269.76,{},191348,1,"""North America""" +2024-01-21,86079,1283,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4760.08,"{\""promo\"": \""7%\""}",225655,1,"""North America""" +2024-08-21,86080,1171,"[\""Laptop\"", \""Monitor\""]",1854.54,"{\"": \""17%\""}",9174,1,"""Europe""" +2023-05-01,86081,1556,"[\""Monitor\"", \""Wireless Mouse\""]",748.01,{},258610,0,"""Asia""" +2024-11-17,86082,6892,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4595.48,"{\""seasonal\"": \""22%\""}",8370,0,"""Africa""" +2023-11-13,86083,2036,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1864.87,"{\"": \""26%\""}",161818,0,"""Asia""" +2023-12-05,86084,3229,"[\""Monitor\""]",264.8,{},213577,1,"""Europe""" +2023-06-12,86085,5291,"[\""Monitor\""]",473.77,{},46084,0,"""Europe""" +2024-03-27,86086,5908,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",161.62,{},168414,1,"""South America""" +2024-04-01,86087,7577,"[\""Keyboard\""]",428.56,{},46580,0,"""Asia""" +2023-08-13,86088,7880,"[\""Monitor\"", \""Tablet\""]",1198.71,"{\""loyalty\"": \""9%\""}",268980,0,"""Europe""" +2024-09-06,86089,8038,"[\""Headphones\""]",1813.68,"{\"": \""27%\""}",299380,0,"""North America""" +2024-11-20,86090,8530,"[\""Laptop\"", \""Wireless Mouse\""]",390.59,"{\""loyalty\"": \""13%\""}",96268,0,"""South America""" +2024-12-10,86091,874,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4109.67,{},189258,0,"""Europe""" +2024-08-05,86092,2442,"[\""Charger\"", \""Keyboard\""]",4936.21,{},266841,0,"""South America""" +2023-02-09,86093,2176,"[\""Laptop\"", \""Monitor\""]",4340.79,{},131522,1,"""Europe""" +2023-06-22,86094,7079,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",227.21,{},187147,1,"""South America""" +2024-01-04,86095,2437,"[\""Laptop\""]",3267.54,{},288877,0,"""South America""" +2024-10-06,86096,3987,"[\""Laptop\""]",2037.27,"{\""loyalty\"": \""16%\""}",275912,1,"""North America""" +2023-10-07,86097,8596,"[\""Tablet\""]",2010.24,"{\""loyalty\"": \""14%\""}",180337,0,"""South America""" +2024-06-24,86098,7043,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3262.31,"{\""seasonal\"": \""30%\""}",142293,1,"""Asia""" +2024-09-15,86099,5723,"[\""Charger\""]",1856.91,"{\"": \""23%\""}",138738,1,"""Europe""" +2024-04-12,86100,5241,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1158.77,"{\""seasonal\"": \""26%\""}",170960,1,"""North America""" +2023-10-01,86101,9531,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4973.37,{},236988,1,"""Asia""" +2023-06-08,86102,1825,"[\""Tablet\"", \""Phone\""]",3811.6,{},163534,0,"""Africa""" +2024-11-05,86103,4216,"[\""Wireless Mouse\"", \""Charger\""]",1496.21,"{\"": \""10%\""}",228071,0,"""Africa""" +2023-04-05,86104,9084,"[\""Laptop\"", \""Phone\""]",98.66,{},210476,1,"""Europe""" +2024-03-14,86105,3251,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",268.62,{},102895,0,"""Africa""" +2024-03-11,86106,7813,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3685.35,{},14366,1,"""North America""" +2024-01-05,86107,63,"[\""Laptop\""]",3700.57,"{\""seasonal\"": \""5%\""}",261498,1,"""Africa""" +2024-04-04,86108,444,"[\""Charger\"", \""Phone\""]",4652.41,{},285385,1,"""Africa""" +2024-11-06,86109,3439,"[\""Headphones\"", \""Monitor\""]",897.52,"{\"": \""6%\""}",216493,0,"""South America""" +2024-10-31,86110,2235,"[\""Keyboard\""]",632.88,{},234236,1,"""Asia""" +2024-01-30,86111,4124,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4617.65,"{\""loyalty\"": \""17%\""}",219032,0,"""South America""" +2023-02-08,86112,8662,"[\""Phone\""]",742.43,"{\""promo\"": \""22%\""}",76430,0,"""North America""" +2023-06-15,86113,7694,"[\""Monitor\""]",2731.13,{},12578,0,"""North America""" +2024-06-04,86114,3000,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2844.49,"{\""promo\"": \""13%\""}",20707,0,"""North America""" +2024-11-22,86115,1457,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3064.05,{},89826,1,"""Europe""" +2024-12-04,86116,4973,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3349.74,"{\"": \""13%\""}",73897,1,"""North America""" +2024-10-28,86117,4933,"[\""Phone\"", \""Wireless Mouse\""]",4027.81,{},214524,0,"""Africa""" +2023-10-05,86118,3465,"[\""Headphones\""]",3663.11,"{\""promo\"": \""27%\""}",181334,0,"""South America""" +2023-07-31,86119,6908,"[\""Headphones\""]",2871.54,"{\"": \""6%\""}",232516,1,"""Europe""" +2024-12-10,86120,882,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3404.57,{},86387,0,"""Asia""" +2024-05-07,86121,8876,"[\""Tablet\""]",1865.88,"{\""seasonal\"": \""28%\""}",5515,1,"""Africa""" +2024-01-11,86122,4689,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2800.38,"{\""promo\"": \""24%\""}",96861,1,"""South America""" +2024-05-22,86123,9352,"[\""Laptop\""]",1344.85,"{\""promo\"": \""26%\""}",173072,1,"""Europe""" +2023-08-20,86124,4614,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4718.57,{},50481,1,"""South America""" +2023-01-05,86125,6088,"[\""Charger\"", \""Tablet\""]",3779.7,{},69497,0,"""South America""" +2023-01-19,86126,8191,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2108.95,{},57459,1,"""Asia""" +2024-02-20,86127,7650,"[\""Phone\""]",4082.99,"{\""promo\"": \""12%\""}",185035,0,"""Europe""" +2024-12-07,86128,5354,"[\""Wireless Mouse\""]",212.16,{},149707,0,"""North America""" +2024-07-18,86129,1622,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4731.54,{},92418,0,"""Europe""" +2024-08-24,86130,7161,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2024.8,{},2567,1,"""North America""" +2023-10-19,86131,6992,"[\""Monitor\""]",1865.3,{},183308,1,"""Asia""" +2024-02-23,86132,3555,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3536.53,{},284244,1,"""North America""" +2024-03-04,86133,9105,"[\""Tablet\"", \""Phone\""]",4165.6,"{\""seasonal\"": \""30%\""}",48262,0,"""North America""" +2024-11-19,86134,6754,"[\""Wireless Mouse\""]",4536.85,"{\""promo\"": \""16%\""}",83205,1,"""North America""" +2024-04-30,86135,3463,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",4136.25,{},231971,0,"""Asia""" +2023-01-24,86136,8164,"[\""Phone\""]",3990.23,"{\""seasonal\"": \""13%\""}",254936,0,"""North America""" +2023-10-05,86137,2470,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1130.11,"{\"": \""16%\""}",243706,1,"""Asia""" +2023-08-11,86138,7241,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",4304.39,"{\""loyalty\"": \""19%\""}",106576,1,"""Africa""" +2023-07-17,86139,7444,"[\""Keyboard\"", \""Tablet\""]",1356.16,"{\""seasonal\"": \""25%\""}",135411,0,"""Asia""" +2023-11-27,86140,6115,"[\""Laptop\"", \""Wireless Mouse\""]",1660.95,{},31656,0,"""Africa""" +2024-01-29,86141,9097,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3075.5,"{\""promo\"": \""11%\""}",64297,0,"""South America""" +2023-05-31,86142,7210,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",824.9,{},296554,0,"""Asia""" +2023-09-21,86143,7180,"[\""Laptop\"", \""Monitor\""]",2276.39,"{\"": \""20%\""}",222889,0,"""Asia""" +2024-02-29,86144,9054,"[\""Wireless Mouse\"", \""Laptop\""]",3944.62,{},110705,1,"""Europe""" +2023-08-15,86145,2916,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",808.19,"{\"": \""27%\""}",293526,1,"""Europe""" +2023-02-22,86146,3032,"[\""Charger\"", \""Tablet\""]",765.23,"{\""seasonal\"": \""28%\""}",38354,0,"""South America""" +2024-10-03,86147,8220,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1741.26,"{\""seasonal\"": \""26%\""}",199952,0,"""South America""" +2023-03-01,86148,1061,"[\""Keyboard\"", \""Wireless Mouse\""]",1631.22,{},50421,0,"""South America""" +2024-09-06,86149,5680,"[\""Laptop\""]",4183.35,{},121081,1,"""Asia""" +2023-04-04,86150,3229,"[\""Keyboard\""]",4156.86,{},62943,1,"""Africa""" +2023-05-18,86151,1051,"[\""Laptop\""]",1500.1,{},41358,1,"""Africa""" +2024-04-13,86152,4025,"[\""Charger\"", \""Tablet\""]",287.36,{},18372,1,"""Europe""" +2023-05-21,86153,471,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1884.68,{},129616,0,"""Asia""" +2024-11-11,86154,6732,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1978.11,"{\""seasonal\"": \""8%\""}",41787,1,"""Africa""" +2024-06-22,86155,3748,"[\""Wireless Mouse\""]",2383.29,"{\"": \""26%\""}",135536,1,"""North America""" +2024-03-08,86156,733,"[\""Keyboard\"", \""Monitor\""]",2323.53,"{\""promo\"": \""26%\""}",185603,1,"""North America""" +2023-06-29,86157,7251,"[\""Monitor\""]",729.55,{},294768,1,"""Europe""" +2023-05-05,86158,4370,"[\""Laptop\""]",3015.9,"{\""promo\"": \""7%\""}",260303,0,"""Europe""" +2023-03-03,86159,8340,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2356.53,{},65743,1,"""Europe""" +2024-10-30,86160,1076,"[\""Laptop\""]",4351.55,{},110108,1,"""Europe""" +2024-10-22,86161,1277,"[\""Monitor\"", \""Keyboard\""]",2374.24,{},174069,1,"""Europe""" +2024-09-13,86162,9220,"[\""Keyboard\""]",3069.14,{},132726,1,"""Africa""" +2023-10-09,86163,3514,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1029.12,{},133866,0,"""Africa""" +2024-09-29,86164,9841,"[\""Monitor\"", \""Laptop\""]",4032.39,"{\"": \""9%\""}",52439,0,"""Africa""" +2024-07-04,86165,3720,"[\""Keyboard\""]",3745.16,{},241149,1,"""North America""" +2023-08-25,86166,9259,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3035.71,{},63636,0,"""South America""" +2024-04-24,86167,4298,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4785.58,{},113542,1,"""Asia""" +2024-12-16,86168,4294,"[\""Laptop\""]",358.21,{},140046,0,"""North America""" +2023-02-27,86169,7334,"[\""Keyboard\""]",1886.73,{},224483,1,"""North America""" +2024-03-22,86170,3059,"[\""Phone\""]",3860.59,{},79205,0,"""Europe""" +2023-07-27,86171,4200,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1302.11,"{\""promo\"": \""15%\""}",268316,1,"""Asia""" +2024-06-26,86172,4753,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4752.83,"{\""loyalty\"": \""24%\""}",246834,0,"""Africa""" +2024-06-12,86173,5718,"[\""Keyboard\"", \""Phone\""]",2998.77,{},98076,0,"""Africa""" +2024-01-21,86174,2972,"[\""Phone\"", \""Laptop\""]",1969.74,"{\"": \""28%\""}",214188,0,"""Europe""" +2024-05-10,86175,5431,"[\""Headphones\"", \""Charger\""]",4034.42,{},41058,0,"""Africa""" +2024-03-21,86176,6656,"[\""Wireless Mouse\"", \""Phone\""]",451.18,"{\"": \""30%\""}",205297,0,"""Africa""" +2023-02-13,86177,9778,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3954.8,"{\""seasonal\"": \""17%\""}",191401,0,"""Asia""" +2023-02-21,86178,2908,"[\""Wireless Mouse\"", \""Phone\""]",1632.8,"{\"": \""8%\""}",66466,1,"""South America""" +2023-06-25,86179,7859,"[\""Headphones\""]",4061.76,{},176893,1,"""Asia""" +2023-03-22,86180,4280,"[\""Charger\"", \""Tablet\""]",1484.37,{},290674,1,"""South America""" +2024-01-03,86181,5612,"[\""Phone\"", \""Keyboard\""]",1263.57,"{\""seasonal\"": \""6%\""}",286251,1,"""South America""" +2024-03-30,86182,2568,"[\""Charger\""]",4416.27,{},36223,0,"""North America""" +2024-08-17,86183,5683,"[\""Monitor\""]",2578.87,"{\""loyalty\"": \""17%\""}",205587,0,"""Asia""" +2024-04-10,86184,7196,"[\""Charger\""]",497.19,"{\""seasonal\"": \""6%\""}",107490,0,"""Africa""" +2023-06-07,86185,9055,"[\""Charger\"", \""Wireless Mouse\""]",3718.59,"{\""loyalty\"": \""8%\""}",279503,1,"""Asia""" +2023-11-10,86186,4275,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3014.24,{},134429,1,"""North America""" +2024-03-23,86187,8247,"[\""Phone\""]",2491.28,{},23244,1,"""Asia""" +2023-01-28,86188,4305,"[\""Monitor\"", \""Headphones\""]",4232.83,"{\"": \""10%\""}",36924,1,"""South America""" +2024-08-24,86189,1790,"[\""Headphones\"", \""Tablet\""]",1913.05,"{\""seasonal\"": \""5%\""}",257518,1,"""Africa""" +2023-07-29,86190,1182,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3184.41,"{\""promo\"": \""14%\""}",26711,1,"""Asia""" +2023-06-14,86191,3509,"[\""Tablet\"", \""Wireless Mouse\""]",3149.5,"{\"": \""18%\""}",264117,0,"""Europe""" +2023-03-05,86192,867,"[\""Keyboard\"", \""Laptop\""]",3202.29,{},279060,1,"""South America""" +2023-05-20,86193,8930,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3167.85,"{\""seasonal\"": \""9%\""}",138225,1,"""Asia""" +2023-12-04,86194,1711,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4082.92,{},185908,1,"""Asia""" +2024-01-19,86195,1783,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4896.0,{},123733,0,"""Europe""" +2023-04-15,86196,3515,"[\""Monitor\"", \""Wireless Mouse\""]",3760.48,{},18155,0,"""Africa""" +2024-06-11,86197,6905,"[\""Charger\""]",2116.7,"{\""promo\"": \""5%\""}",235180,0,"""South America""" +2023-08-17,86198,7889,"[\""Monitor\"", \""Headphones\""]",3830.64,{},28238,1,"""South America""" +2024-07-25,86199,6914,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",63.95,"{\""promo\"": \""12%\""}",224419,1,"""Africa""" +2023-11-13,86200,3530,"[\""Tablet\""]",3264.22,"{\""loyalty\"": \""30%\""}",113475,1,"""Africa""" +2023-05-20,86201,9488,"[\""Headphones\"", \""Wireless Mouse\""]",1466.55,{},190496,0,"""Africa""" +2024-11-21,86202,1445,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1459.71,{},287349,1,"""North America""" +2024-11-26,86203,89,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",3839.8,"{\"": \""30%\""}",257091,1,"""North America""" +2023-09-30,86204,9081,"[\""Monitor\"", \""Headphones\""]",4650.8,"{\""seasonal\"": \""20%\""}",15515,0,"""Africa""" +2023-01-22,86205,6044,"[\""Tablet\"", \""Charger\""]",3996.06,"{\""promo\"": \""23%\""}",39448,0,"""North America""" +2024-02-05,86206,2200,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4577.67,"{\""loyalty\"": \""7%\""}",295910,1,"""Africa""" +2024-09-13,86207,1890,"[\""Keyboard\""]",1600.46,{},209832,0,"""Asia""" +2024-11-05,86208,4653,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4796.28,{},108936,1,"""Asia""" +2023-07-24,86209,1572,"[\""Laptop\""]",3567.35,"{\"": \""26%\""}",68977,1,"""North America""" +2024-08-11,86210,18,"[\""Headphones\""]",3417.24,{},18800,0,"""North America""" +2023-01-12,86211,6547,"[\""Tablet\""]",2244.16,{},53415,1,"""North America""" +2023-02-22,86212,3055,"[\""Wireless Mouse\""]",1249.94,{},50363,1,"""Africa""" +2024-08-05,86213,4347,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2747.48,"{\"": \""14%\""}",243320,1,"""Europe""" +2024-01-08,86214,7032,"[\""Headphones\"", \""Keyboard\""]",3476.66,"{\""promo\"": \""24%\""}",140492,0,"""North America""" +2024-03-10,86215,8837,"[\""Headphones\""]",1416.06,{},219156,0,"""Asia""" +2023-01-28,86216,8606,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",245.57,{},99491,1,"""Africa""" +2023-07-21,86217,4096,"[\""Headphones\"", \""Laptop\""]",1820.66,{},56000,0,"""Africa""" +2024-10-28,86218,19,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3370.93,"{\""promo\"": \""17%\""}",168493,1,"""Africa""" +2023-10-09,86219,535,"[\""Charger\""]",3342.13,"{\""seasonal\"": \""30%\""}",191514,0,"""South America""" +2023-12-12,86220,5525,"[\""Wireless Mouse\"", \""Monitor\""]",2706.16,{},119408,1,"""Europe""" +2024-06-22,86221,6085,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",1720.52,"{\""seasonal\"": \""16%\""}",101408,0,"""Asia""" +2024-02-18,86222,1046,"[\""Phone\""]",2973.56,"{\""loyalty\"": \""27%\""}",295354,1,"""Africa""" +2024-08-15,86223,7312,"[\""Tablet\"", \""Keyboard\""]",272.97,"{\""loyalty\"": \""11%\""}",173763,0,"""Africa""" +2024-05-25,86224,6217,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2997.42,"{\""loyalty\"": \""18%\""}",216988,0,"""Africa""" +2023-05-18,86225,8902,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1689.85,"{\""seasonal\"": \""14%\""}",256695,0,"""South America""" +2024-03-05,86226,8912,"[\""Keyboard\""]",1296.9,{},136929,0,"""Europe""" +2023-01-02,86227,5578,"[\""Tablet\"", \""Headphones\""]",3145.62,"{\""promo\"": \""29%\""}",135279,0,"""South America""" +2023-11-14,86228,6958,"[\""Tablet\"", \""Laptop\""]",357.75,{},92300,0,"""Africa""" +2023-11-14,86229,7720,"[\""Wireless Mouse\""]",496.85,"{\""seasonal\"": \""9%\""}",258415,0,"""Africa""" +2024-10-10,86230,693,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",621.46,"{\""loyalty\"": \""10%\""}",12193,1,"""North America""" +2023-09-15,86231,1506,"[\""Phone\"", \""Charger\"", \""Monitor\""]",548.25,{},104168,0,"""North America""" +2024-11-25,86232,6558,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2488.85,{},132278,0,"""Africa""" +2024-06-13,86233,5681,"[\""Keyboard\"", \""Monitor\""]",4888.82,"{\""promo\"": \""7%\""}",52921,0,"""Asia""" +2024-11-26,86234,8584,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4907.31,{},63048,1,"""Europe""" +2023-09-14,86235,7702,"[\""Headphones\"", \""Laptop\""]",2657.9,{},130798,1,"""Europe""" +2024-09-26,86236,601,"[\""Tablet\"", \""Headphones\""]",1416.81,{},136534,1,"""North America""" +2024-09-29,86237,511,"[\""Laptop\""]",4138.33,"{\""seasonal\"": \""24%\""}",235965,1,"""Africa""" +2024-12-02,86238,6232,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1483.14,"{\"": \""8%\""}",9875,1,"""North America""" +2023-07-12,86239,8366,"[\""Laptop\"", \""Charger\"", \""Phone\""]",997.03,{},291684,0,"""Africa""" +2024-02-23,86240,6598,"[\""Monitor\""]",2132.86,{},63022,0,"""South America""" +2024-05-19,86241,4866,"[\""Charger\""]",1372.0,{},41474,0,"""Africa""" +2024-01-17,86242,6039,"[\""Laptop\""]",916.95,{},14264,0,"""Asia""" +2023-07-11,86243,9695,"[\""Charger\"", \""Laptop\""]",2842.46,"{\"": \""25%\""}",228082,1,"""Europe""" +2024-03-30,86244,6875,"[\""Monitor\""]",3829.48,"{\"": \""6%\""}",77836,0,"""North America""" +2023-10-30,86245,2520,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3483.05,"{\""promo\"": \""27%\""}",7493,0,"""North America""" +2023-12-15,86246,5433,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",3480.46,"{\""loyalty\"": \""26%\""}",42496,1,"""Europe""" +2023-04-13,86247,2252,"[\""Headphones\""]",3728.3,{},208166,1,"""Asia""" +2023-02-10,86248,1363,"[\""Phone\""]",1079.77,{},167522,1,"""Asia""" +2023-08-19,86249,4607,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",2708.24,"{\""promo\"": \""5%\""}",238727,1,"""Europe""" +2024-07-20,86250,833,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2751.56,{},280433,0,"""South America""" +2024-04-14,86251,7751,"[\""Wireless Mouse\""]",2046.28,"{\""promo\"": \""15%\""}",72776,0,"""South America""" +2024-11-06,86252,4098,"[\""Laptop\"", \""Charger\""]",893.38,"{\""promo\"": \""19%\""}",206905,0,"""Asia""" +2023-12-31,86253,6540,"[\""Keyboard\"", \""Tablet\""]",1545.0,{},100510,0,"""Asia""" +2024-08-24,86254,8992,"[\""Laptop\""]",3358.75,{},107650,1,"""Europe""" +2023-10-17,86255,9173,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2421.99,{},21203,1,"""Africa""" +2024-02-26,86256,3302,"[\""Monitor\""]",1921.08,{},282155,0,"""Asia""" +2023-04-30,86257,3186,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4356.5,{},137678,0,"""Asia""" +2023-08-29,86258,2826,"[\""Keyboard\""]",304.16,"{\""promo\"": \""7%\""}",151894,1,"""Asia""" +2023-09-21,86259,9166,"[\""Phone\""]",2488.01,"{\""promo\"": \""16%\""}",74909,1,"""Asia""" +2023-07-13,86260,7999,"[\""Phone\"", \""Headphones\""]",4089.12,{},218576,0,"""Africa""" +2024-09-26,86261,9475,"[\""Monitor\""]",269.32,{},144799,0,"""Asia""" +2024-07-08,86262,3763,"[\""Monitor\"", \""Tablet\""]",744.52,"{\""seasonal\"": \""27%\""}",12439,0,"""South America""" +2024-03-21,86263,2646,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4250.89,"{\"": \""8%\""}",223385,0,"""North America""" +2024-04-25,86264,9564,"[\""Charger\"", \""Tablet\""]",3958.59,"{\"": \""29%\""}",285172,1,"""Africa""" +2023-03-02,86265,6590,"[\""Tablet\"", \""Charger\""]",2022.83,"{\"": \""20%\""}",216706,0,"""Asia""" +2023-08-31,86266,7179,"[\""Keyboard\""]",461.84,{},20874,1,"""Africa""" +2023-01-26,86267,916,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4904.21,"{\""promo\"": \""16%\""}",23597,1,"""Asia""" +2024-03-03,86268,5861,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2041.97,{},140315,0,"""South America""" +2023-06-10,86269,2600,"[\""Monitor\""]",332.07,"{\""promo\"": \""19%\""}",219037,1,"""North America""" +2023-03-07,86270,1703,"[\""Monitor\""]",793.89,"{\"": \""25%\""}",289725,0,"""North America""" +2024-05-17,86271,1634,"[\""Keyboard\"", \""Wireless Mouse\""]",1838.46,{},267463,1,"""Asia""" +2024-11-15,86272,83,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1858.34,"{\"": \""13%\""}",129594,0,"""Europe""" +2023-05-15,86273,2946,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2585.8,"{\""promo\"": \""9%\""}",41549,0,"""South America""" +2024-09-24,86274,4077,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1576.49,{},221420,0,"""North America""" +2023-06-07,86275,5486,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1779.12,"{\"": \""12%\""}",33216,1,"""South America""" +2023-01-10,86276,6923,"[\""Laptop\"", \""Headphones\""]",2872.5,{},268177,0,"""North America""" +2023-03-22,86277,29,"[\""Keyboard\""]",789.06,{},244929,0,"""South America""" +2024-04-04,86278,4371,"[\""Headphones\""]",2331.58,{},65248,0,"""Europe""" +2023-08-02,86279,9757,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4690.12,{},257972,1,"""Europe""" +2023-12-10,86280,7281,"[\""Monitor\""]",3759.21,{},237057,1,"""Africa""" +2024-08-08,86281,2065,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2867.18,"{\"": \""25%\""}",168549,0,"""Asia""" +2023-04-21,86282,3902,"[\""Tablet\"", \""Monitor\""]",4168.69,{},240571,0,"""Asia""" +2024-08-07,86283,6876,"[\""Phone\""]",136.65,{},277313,0,"""Europe""" +2024-06-18,86284,921,"[\""Keyboard\""]",4955.68,"{\""seasonal\"": \""11%\""}",19311,0,"""South America""" +2024-08-31,86285,235,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1590.04,"{\""seasonal\"": \""6%\""}",132302,1,"""Africa""" +2023-03-09,86286,3987,"[\""Wireless Mouse\"", \""Headphones\""]",3260.35,{},286420,1,"""Europe""" +2023-03-19,86287,5843,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",489.55,"{\""seasonal\"": \""23%\""}",200207,0,"""South America""" +2023-11-17,86288,7830,"[\""Keyboard\""]",4634.15,"{\""loyalty\"": \""5%\""}",223289,0,"""North America""" +2023-05-29,86289,3812,"[\""Monitor\"", \""Charger\""]",1510.17,{},29017,1,"""North America""" +2023-08-16,86290,5317,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3755.93,"{\""promo\"": \""9%\""}",122599,0,"""North America""" +2023-07-23,86291,1711,"[\""Phone\""]",1016.74,{},131336,0,"""Europe""" +2023-11-01,86292,6353,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4549.82,{},86837,1,"""South America""" +2023-08-09,86293,9806,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1387.58,{},2856,0,"""Europe""" +2024-11-15,86294,8108,"[\""Phone\"", \""Keyboard\""]",2834.75,"{\"": \""5%\""}",34588,0,"""South America""" +2023-03-18,86295,648,"[\""Monitor\""]",4179.67,{},55586,1,"""North America""" +2023-12-10,86296,2205,"[\""Headphones\"", \""Tablet\""]",4804.71,{},69776,0,"""Europe""" +2023-05-16,86297,8410,"[\""Monitor\"", \""Laptop\""]",2766.92,{},19640,1,"""Asia""" +2024-08-03,86298,8176,"[\""Monitor\"", \""Charger\""]",2482.89,"{\""loyalty\"": \""15%\""}",48629,0,"""North America""" +2024-09-21,86299,8294,"[\""Phone\"", \""Headphones\""]",365.77,"{\"": \""6%\""}",214567,1,"""North America""" +2024-01-26,86300,9531,"[\""Tablet\""]",1353.68,{},209058,1,"""North America""" +2024-02-19,86301,914,"[\""Headphones\"", \""Phone\""]",96.17,"{\""loyalty\"": \""18%\""}",153101,0,"""North America""" +2024-08-11,86302,4186,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",719.61,{},190916,1,"""South America""" +2024-02-04,86303,6839,"[\""Charger\""]",1702.64,{},28547,0,"""Europe""" +2023-12-06,86304,5263,"[\""Charger\""]",2166.61,{},212112,1,"""Asia""" +2023-10-23,86305,8408,"[\""Headphones\""]",172.7,"{\""promo\"": \""21%\""}",222764,0,"""Europe""" +2024-08-29,86306,8724,"[\""Monitor\""]",4747.36,"{\"": \""22%\""}",285013,0,"""South America""" +2023-02-13,86307,2914,"[\""Headphones\"", \""Monitor\""]",1015.76,{},63905,0,"""Europe""" +2024-05-13,86308,7430,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3897.05,"{\""seasonal\"": \""17%\""}",100824,1,"""Asia""" +2023-04-17,86309,8796,"[\""Laptop\"", \""Tablet\""]",2568.93,{},194405,0,"""South America""" +2024-07-24,86310,32,"[\""Phone\"", \""Laptop\""]",4167.34,"{\""promo\"": \""20%\""}",140334,1,"""North America""" +2024-01-10,86311,2149,"[\""Tablet\""]",2640.51,{},218703,1,"""Asia""" +2023-04-17,86312,1047,"[\""Laptop\""]",2949.73,{},118611,0,"""Africa""" +2023-07-21,86313,3684,"[\""Headphones\""]",1979.08,"{\""seasonal\"": \""27%\""}",180833,0,"""Africa""" +2023-02-23,86314,8316,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",555.26,"{\""promo\"": \""10%\""}",83613,0,"""Europe""" +2023-12-06,86315,4861,"[\""Headphones\"", \""Tablet\""]",844.37,"{\""loyalty\"": \""23%\""}",297635,1,"""Africa""" +2023-12-23,86316,9709,"[\""Monitor\"", \""Charger\""]",4327.41,"{\""seasonal\"": \""21%\""}",121044,0,"""Europe""" +2023-07-24,86317,7735,"[\""Wireless Mouse\""]",3789.07,{},55292,0,"""Africa""" +2023-09-27,86318,6101,"[\""Laptop\"", \""Monitor\""]",2308.01,"{\""promo\"": \""14%\""}",289683,0,"""North America""" +2023-07-08,86319,7397,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",993.44,"{\""seasonal\"": \""5%\""}",256833,1,"""North America""" +2023-04-15,86320,6656,"[\""Phone\""]",3144.62,{},174536,0,"""Africa""" +2023-12-13,86321,7901,"[\""Phone\""]",3187.0,"{\""loyalty\"": \""22%\""}",267690,1,"""Europe""" +2024-09-04,86322,8904,"[\""Headphones\""]",1555.15,{},142246,1,"""North America""" +2023-09-15,86323,3643,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3058.23,"{\""seasonal\"": \""27%\""}",12677,0,"""North America""" +2023-03-28,86324,9377,"[\""Keyboard\"", \""Charger\""]",2549.2,"{\""loyalty\"": \""29%\""}",61826,0,"""South America""" +2023-01-13,86325,9250,"[\""Charger\"", \""Tablet\""]",268.73,{},169949,1,"""North America""" +2024-12-01,86326,1128,"[\""Phone\""]",1657.8,"{\"": \""12%\""}",138082,0,"""Africa""" +2023-02-07,86327,5010,"[\""Keyboard\"", \""Wireless Mouse\""]",2607.44,"{\""seasonal\"": \""11%\""}",120022,1,"""Africa""" +2024-03-13,86328,5941,"[\""Charger\"", \""Tablet\""]",4038.23,"{\"": \""17%\""}",62562,0,"""Europe""" +2023-01-07,86329,7153,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2789.84,{},14121,1,"""South America""" +2024-11-15,86330,6284,"[\""Laptop\""]",3558.35,"{\""loyalty\"": \""15%\""}",175147,0,"""North America""" +2023-04-19,86331,4825,"[\""Monitor\"", \""Phone\""]",2812.71,{},193604,1,"""Africa""" +2023-04-24,86332,8516,"[\""Laptop\""]",4105.17,"{\""loyalty\"": \""27%\""}",291812,0,"""South America""" +2024-03-08,86333,1197,"[\""Keyboard\""]",1349.34,{},114968,0,"""North America""" +2024-10-08,86334,9370,"[\""Headphones\"", \""Monitor\""]",585.15,{},52463,1,"""Africa""" +2023-09-30,86335,8852,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",285.02,{},143242,0,"""North America""" +2024-09-01,86336,5673,"[\""Charger\"", \""Keyboard\""]",3781.76,"{\""loyalty\"": \""6%\""}",271766,0,"""Europe""" +2023-07-22,86337,2289,"[\""Monitor\"", \""Keyboard\""]",473.92,"{\""loyalty\"": \""6%\""}",164674,1,"""Europe""" +2024-11-15,86338,3446,"[\""Keyboard\"", \""Charger\""]",2598.09,{},270639,0,"""Asia""" +2024-08-06,86339,341,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",465.59,"{\""promo\"": \""19%\""}",263793,1,"""Africa""" +2024-10-25,86340,8502,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3526.47,{},203205,0,"""North America""" +2024-05-02,86341,1007,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2570.61,"{\"": \""26%\""}",1639,0,"""South America""" +2023-10-30,86342,5501,"[\""Wireless Mouse\"", \""Charger\""]",2836.01,"{\""promo\"": \""17%\""}",81969,0,"""Asia""" +2023-07-21,86343,6438,"[\""Charger\"", \""Keyboard\""]",3473.09,"{\"": \""21%\""}",132880,0,"""North America""" +2023-05-22,86344,2403,"[\""Phone\""]",356.58,{},181445,0,"""Europe""" +2023-03-03,86345,7735,"[\""Headphones\"", \""Monitor\""]",2987.15,{},37540,0,"""Europe""" +2024-02-23,86346,2608,"[\""Monitor\""]",4210.17,{},192536,1,"""Africa""" +2023-11-10,86347,2900,"[\""Wireless Mouse\"", \""Keyboard\""]",1826.96,"{\""promo\"": \""22%\""}",23905,1,"""South America""" +2023-06-24,86348,9899,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1862.58,{},89515,0,"""Europe""" +2024-03-02,86349,2427,"[\""Keyboard\""]",1753.0,"{\""seasonal\"": \""10%\""}",159529,0,"""Africa""" +2023-06-21,86350,7452,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",726.12,{},156691,0,"""Europe""" +2023-04-26,86351,2277,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1261.89,"{\""seasonal\"": \""25%\""}",222912,1,"""Africa""" +2023-11-25,86352,7400,"[\""Charger\"", \""Phone\"", \""Tablet\""]",895.35,{},84232,0,"""Europe""" +2024-07-23,86353,867,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4753.79,"{\""seasonal\"": \""26%\""}",83256,1,"""Asia""" +2024-07-20,86354,6625,"[\""Phone\"", \""Laptop\""]",1832.16,{},56654,1,"""South America""" +2023-02-10,86355,5127,"[\""Monitor\"", \""Laptop\""]",90.59,{},194109,1,"""South America""" +2023-03-30,86356,3082,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2368.32,"{\""loyalty\"": \""6%\""}",121862,0,"""Africa""" +2023-04-11,86357,7093,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3239.62,{},247802,0,"""Asia""" +2024-06-16,86358,9304,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4424.96,{},77471,1,"""South America""" +2023-05-31,86359,8636,"[\""Keyboard\"", \""Monitor\""]",2162.97,"{\""seasonal\"": \""18%\""}",53204,1,"""Africa""" +2023-04-09,86360,8930,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4231.54,{},55162,1,"""South America""" +2024-08-14,86361,5999,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3036.21,{},110018,1,"""North America""" +2024-11-20,86362,4047,"[\""Wireless Mouse\""]",725.44,{},171163,1,"""Asia""" +2024-09-13,86363,417,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4336.76,{},67456,0,"""Asia""" +2023-02-22,86364,4095,"[\""Keyboard\""]",3936.66,{},36688,1,"""Asia""" +2023-10-25,86365,2535,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1456.97,{},289154,0,"""Europe""" +2023-08-19,86366,4598,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4016.62,"{\""seasonal\"": \""14%\""}",282068,0,"""North America""" +2024-09-18,86367,8251,"[\""Laptop\"", \""Headphones\""]",4634.7,{},32984,0,"""Europe""" +2023-12-23,86368,5634,"[\""Phone\"", \""Laptop\""]",3651.39,{},124392,1,"""Asia""" +2024-05-25,86369,3099,"[\""Tablet\""]",3209.85,"{\""loyalty\"": \""13%\""}",3602,1,"""Europe""" +2024-05-12,86370,5905,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",245.46,"{\""seasonal\"": \""8%\""}",201205,1,"""Europe""" +2023-08-11,86371,6612,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4186.67,"{\"": \""5%\""}",236640,1,"""North America""" +2023-05-04,86372,6488,"[\""Wireless Mouse\"", \""Tablet\""]",1319.85,{},44462,1,"""Asia""" +2024-07-22,86373,759,"[\""Wireless Mouse\""]",2327.46,"{\""seasonal\"": \""6%\""}",160447,1,"""Africa""" +2024-10-11,86374,7693,"[\""Tablet\""]",1983.59,{},258003,0,"""North America""" +2024-12-29,86375,5678,"[\""Laptop\""]",4767.73,{},2297,1,"""Africa""" +2023-02-21,86376,4446,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4688.8,"{\""loyalty\"": \""26%\""}",163036,0,"""South America""" +2024-10-17,86377,2327,"[\""Headphones\""]",4006.76,"{\""seasonal\"": \""7%\""}",296893,1,"""South America""" +2023-08-24,86378,4486,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3663.12,"{\""seasonal\"": \""29%\""}",166215,1,"""South America""" +2023-09-11,86379,9054,"[\""Headphones\"", \""Monitor\""]",3886.51,{},61933,0,"""Europe""" +2024-07-20,86380,4238,"[\""Phone\"", \""Laptop\""]",2147.32,{},224291,0,"""Europe""" +2023-05-23,86381,2939,"[\""Keyboard\"", \""Tablet\""]",3152.37,"{\""loyalty\"": \""11%\""}",15608,0,"""Africa""" +2024-04-21,86382,4262,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",829.28,"{\""seasonal\"": \""22%\""}",153115,1,"""Europe""" +2023-10-07,86383,26,"[\""Wireless Mouse\"", \""Tablet\""]",3838.49,"{\""promo\"": \""20%\""}",135583,1,"""Europe""" +2024-11-14,86384,5148,"[\""Laptop\""]",4804.33,"{\""promo\"": \""26%\""}",78144,0,"""Europe""" +2024-02-27,86385,3999,"[\""Laptop\"", \""Wireless Mouse\""]",4337.14,{},159374,0,"""Asia""" +2023-07-01,86386,8419,"[\""Charger\""]",1976.41,{},158360,0,"""Europe""" +2023-03-05,86387,6402,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4106.44,{},123821,0,"""Asia""" +2023-08-29,86388,7651,"[\""Keyboard\"", \""Phone\""]",3787.8,{},73271,0,"""North America""" +2023-04-27,86389,1494,"[\""Tablet\"", \""Laptop\""]",2492.93,"{\"": \""24%\""}",270157,1,"""Africa""" +2024-04-24,86390,5888,"[\""Monitor\"", \""Headphones\""]",3790.78,{},293748,1,"""Africa""" +2024-07-13,86391,6952,"[\""Monitor\"", \""Charger\""]",2150.44,"{\""seasonal\"": \""13%\""}",35302,1,"""Africa""" +2023-08-04,86392,1174,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",1596.71,{},135894,1,"""North America""" +2024-04-20,86393,7488,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2662.24,"{\"": \""19%\""}",53560,1,"""Africa""" +2024-03-26,86394,6394,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1901.13,{},137108,0,"""Asia""" +2024-02-17,86395,326,"[\""Headphones\""]",935.39,{},114016,1,"""Asia""" +2023-06-11,86396,6520,"[\""Charger\""]",3946.75,"{\""seasonal\"": \""5%\""}",225005,0,"""Africa""" +2024-05-14,86397,895,"[\""Monitor\"", \""Headphones\""]",4401.89,"{\"": \""10%\""}",291284,0,"""Europe""" +2024-01-27,86398,5421,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1337.46,"{\"": \""10%\""}",78091,0,"""North America""" +2024-02-27,86399,6248,"[\""Charger\"", \""Keyboard\""]",621.35,{},10562,0,"""Asia""" +2023-12-29,86400,1208,"[\""Laptop\"", \""Keyboard\""]",2524.66,{},68899,0,"""South America""" +2023-04-26,86401,8585,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2760.81,{},252243,0,"""Africa""" +2023-07-17,86402,1333,"[\""Tablet\""]",292.33,{},23777,1,"""Asia""" +2024-10-24,86403,1337,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3420.99,{},263380,0,"""South America""" +2024-11-22,86404,6992,"[\""Laptop\"", \""Headphones\""]",2659.0,{},66408,1,"""South America""" +2023-01-16,86405,2505,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1680.94,{},251346,0,"""North America""" +2024-12-12,86406,9863,"[\""Headphones\"", \""Keyboard\""]",3359.84,{},279828,0,"""Asia""" +2024-12-10,86407,9871,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",90.4,"{\""seasonal\"": \""6%\""}",258717,1,"""North America""" +2024-05-02,86408,2052,"[\""Wireless Mouse\"", \""Monitor\""]",4523.26,{},215011,0,"""South America""" +2024-01-31,86409,9669,"[\""Keyboard\""]",1158.43,"{\""promo\"": \""5%\""}",177730,0,"""South America""" +2024-09-15,86410,63,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4775.79,{},62958,0,"""Europe""" +2024-04-15,86411,860,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2823.88,"{\""promo\"": \""15%\""}",175795,1,"""South America""" +2024-11-09,86412,2780,"[\""Phone\"", \""Charger\""]",1829.38,"{\""seasonal\"": \""21%\""}",188282,1,"""Africa""" +2024-12-19,86413,9516,"[\""Monitor\""]",3807.77,"{\""seasonal\"": \""26%\""}",229487,0,"""Europe""" +2023-01-20,86414,6739,"[\""Laptop\""]",1138.46,"{\"": \""6%\""}",134832,0,"""Africa""" +2023-11-18,86415,2751,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1825.54,{},43753,0,"""Africa""" +2023-03-31,86416,1045,"[\""Charger\"", \""Phone\""]",3471.37,"{\""loyalty\"": \""8%\""}",213556,0,"""Asia""" +2023-06-03,86417,1696,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3253.27,"{\""seasonal\"": \""20%\""}",131998,1,"""Europe""" +2024-06-23,86418,3500,"[\""Tablet\"", \""Wireless Mouse\""]",1558.44,"{\""seasonal\"": \""13%\""}",9772,1,"""Africa""" +2024-09-14,86419,8292,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",4798.28,"{\""promo\"": \""11%\""}",221190,0,"""North America""" +2024-11-06,86420,241,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1650.95,{},229230,0,"""Asia""" +2024-08-08,86421,4962,"[\""Headphones\""]",3417.42,{},262363,1,"""Africa""" +2024-09-15,86422,1890,"[\""Headphones\"", \""Laptop\""]",3900.98,"{\"": \""23%\""}",286142,1,"""Asia""" +2024-09-14,86423,8536,"[\""Charger\""]",859.15,{},49088,1,"""Africa""" +2023-09-25,86424,2878,"[\""Tablet\"", \""Headphones\""]",3089.28,"{\""promo\"": \""19%\""}",41025,1,"""Europe""" +2023-10-09,86425,1986,"[\""Charger\""]",2065.13,"{\""promo\"": \""7%\""}",90260,1,"""South America""" +2024-03-02,86426,1871,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",530.94,"{\""promo\"": \""24%\""}",258292,0,"""South America""" +2023-02-06,86427,3220,"[\""Tablet\""]",2518.05,"{\""promo\"": \""21%\""}",80679,0,"""Asia""" +2024-06-05,86428,448,"[\""Laptop\""]",1200.43,{},183951,0,"""Europe""" +2024-05-06,86429,1573,"[\""Charger\"", \""Headphones\""]",4730.25,"{\""promo\"": \""15%\""}",214096,0,"""South America""" +2024-08-03,86430,2973,"[\""Monitor\""]",978.81,"{\"": \""7%\""}",189659,0,"""Asia""" +2024-04-01,86431,2945,"[\""Charger\""]",4714.07,{},90928,1,"""South America""" +2024-07-23,86432,9227,"[\""Phone\""]",2160.2,{},269736,0,"""South America""" +2023-11-20,86433,8344,"[\""Monitor\"", \""Phone\""]",4800.3,{},181189,0,"""South America""" +2023-08-12,86434,4744,"[\""Phone\"", \""Keyboard\""]",168.69,{},259058,0,"""South America""" +2024-06-29,86435,8390,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",1346.72,{},129988,1,"""Asia""" +2024-04-20,86436,3830,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2004.09,{},36327,0,"""Africa""" +2024-02-18,86437,7437,"[\""Tablet\"", \""Keyboard\""]",3217.29,{},80141,1,"""Asia""" +2024-06-26,86438,1864,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4410.78,{},116984,1,"""Africa""" +2024-03-05,86439,9853,"[\""Laptop\""]",1199.85,{},97203,1,"""Asia""" +2024-02-13,86440,3742,"[\""Wireless Mouse\"", \""Monitor\""]",2310.29,{},177459,1,"""South America""" +2023-10-06,86441,5683,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4235.39,"{\""seasonal\"": \""12%\""}",134272,1,"""South America""" +2023-10-22,86442,6150,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1571.56,{},157535,0,"""North America""" +2024-12-26,86443,5415,"[\""Laptop\"", \""Wireless Mouse\""]",455.28,"{\""seasonal\"": \""19%\""}",201699,1,"""Europe""" +2023-02-04,86444,9485,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3536.38,"{\"": \""23%\""}",265006,0,"""South America""" +2023-06-25,86445,2951,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3541.45,{},38728,0,"""Africa""" +2023-07-07,86446,8000,"[\""Keyboard\""]",3431.95,{},171641,0,"""Africa""" +2023-04-14,86447,391,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",624.73,"{\""promo\"": \""10%\""}",211095,1,"""Africa""" +2024-07-16,86448,4279,"[\""Monitor\"", \""Headphones\""]",1555.11,{},54164,1,"""Africa""" +2024-12-01,86449,785,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3470.28,"{\""promo\"": \""13%\""}",265873,0,"""South America""" +2024-07-30,86450,2543,"[\""Keyboard\"", \""Tablet\""]",3997.17,{},134727,0,"""Africa""" +2024-10-20,86451,4462,"[\""Tablet\"", \""Wireless Mouse\""]",4015.85,{},187726,0,"""North America""" +2024-03-27,86452,7644,"[\""Phone\"", \""Tablet\"", \""Charger\""]",4578.12,{},237634,1,"""South America""" +2023-10-18,86453,4381,"[\""Wireless Mouse\"", \""Phone\""]",2697.29,"{\"": \""29%\""}",108828,1,"""North America""" +2023-04-05,86454,5118,"[\""Wireless Mouse\""]",2816.19,{},36057,1,"""Africa""" +2024-04-01,86455,922,"[\""Tablet\""]",4549.33,"{\""loyalty\"": \""24%\""}",166413,0,"""South America""" +2023-01-13,86456,4666,"[\""Headphones\"", \""Charger\""]",3961.84,{},149497,0,"""Africa""" +2024-01-26,86457,2591,"[\""Tablet\""]",1603.35,{},162872,1,"""Asia""" +2024-05-29,86458,181,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1174.19,{},195382,0,"""Europe""" +2023-04-26,86459,3255,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3238.63,"{\""promo\"": \""10%\""}",42873,0,"""Africa""" +2024-09-27,86460,8790,"[\""Charger\""]",3439.63,{},95154,0,"""Africa""" +2024-09-10,86461,8879,"[\""Tablet\""]",2801.08,{},254432,0,"""North America""" +2023-11-18,86462,7795,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4699.41,{},32413,1,"""North America""" +2024-04-22,86463,305,"[\""Charger\""]",4563.5,"{\""promo\"": \""10%\""}",125977,1,"""Asia""" +2024-11-26,86464,72,"[\""Charger\"", \""Keyboard\""]",4054.65,{},160135,0,"""South America""" +2024-02-23,86465,6668,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3866.18,"{\""loyalty\"": \""7%\""}",66250,0,"""Africa""" +2023-05-17,86466,2727,"[\""Laptop\""]",3768.45,"{\""loyalty\"": \""26%\""}",107178,0,"""South America""" +2024-05-03,86467,1458,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4131.03,"{\""seasonal\"": \""6%\""}",52280,1,"""Africa""" +2023-05-25,86468,2726,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1289.45,"{\""loyalty\"": \""9%\""}",33083,1,"""North America""" +2023-10-26,86469,4850,"[\""Laptop\""]",2681.12,{},237403,0,"""Africa""" +2024-11-28,86470,2781,"[\""Keyboard\"", \""Monitor\""]",4891.25,{},56356,0,"""Africa""" +2024-12-14,86471,5266,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3291.4,"{\"": \""10%\""}",205061,1,"""North America""" +2023-04-15,86472,5252,"[\""Monitor\"", \""Phone\""]",3221.61,"{\"": \""16%\""}",4243,1,"""Asia""" +2023-03-09,86473,3145,"[\""Monitor\""]",4505.9,"{\"": \""19%\""}",188846,1,"""North America""" +2023-12-08,86474,9684,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",828.12,"{\""seasonal\"": \""28%\""}",245124,1,"""North America""" +2023-09-17,86475,103,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1095.59,{},194358,0,"""Europe""" +2023-06-12,86476,6250,"[\""Phone\""]",3556.15,{},199419,1,"""Asia""" +2023-10-31,86477,4059,"[\""Keyboard\""]",3644.4,{},23454,1,"""Asia""" +2024-02-21,86478,773,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1213.92,"{\""loyalty\"": \""23%\""}",261360,1,"""North America""" +2024-09-15,86479,7475,"[\""Monitor\"", \""Tablet\""]",4461.97,{},136603,0,"""Africa""" +2023-06-22,86480,8639,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1282.06,{},149544,0,"""North America""" +2023-08-02,86481,4268,"[\""Phone\"", \""Headphones\""]",2213.36,"{\""seasonal\"": \""7%\""}",202710,0,"""North America""" +2023-05-09,86482,3549,"[\""Keyboard\"", \""Tablet\""]",3349.52,{},153272,1,"""South America""" +2024-09-05,86483,4934,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2963.94,{},242451,0,"""North America""" +2024-05-01,86484,7147,"[\""Laptop\""]",3439.69,"{\"": \""6%\""}",75195,1,"""Asia""" +2024-07-20,86485,247,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4220.42,{},138660,0,"""Europe""" +2024-01-18,86486,2579,"[\""Keyboard\""]",4872.6,{},132284,1,"""Asia""" +2024-07-04,86487,6520,"[\""Headphones\""]",2185.12,{},227170,0,"""Africa""" +2023-03-25,86488,854,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",189.36,"{\"": \""5%\""}",222037,1,"""Europe""" +2023-08-18,86489,5886,"[\""Keyboard\""]",4083.37,"{\""promo\"": \""14%\""}",117532,0,"""North America""" +2023-05-10,86490,1493,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1315.15,"{\""seasonal\"": \""25%\""}",77732,1,"""South America""" +2024-01-14,86491,8805,"[\""Tablet\"", \""Laptop\""]",3372.81,"{\""promo\"": \""15%\""}",39896,0,"""Asia""" +2023-07-06,86492,2762,"[\""Tablet\""]",4513.95,{},288781,0,"""Asia""" +2024-02-09,86493,7010,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4814.86,{},158245,1,"""Europe""" +2023-06-03,86494,8238,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3334.32,"{\"": \""25%\""}",276301,1,"""North America""" +2024-07-13,86495,147,"[\""Tablet\"", \""Wireless Mouse\""]",2769.83,{},145729,1,"""South America""" +2024-02-02,86496,432,"[\""Monitor\""]",4608.02,{},79274,1,"""South America""" +2024-05-13,86497,2188,"[\""Laptop\""]",4380.53,{},164933,0,"""South America""" +2024-07-14,86498,5061,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2862.47,{},195600,0,"""North America""" +2024-03-09,86499,4881,"[\""Monitor\""]",791.05,{},7360,1,"""Europe""" +2023-05-25,86500,9719,"[\""Phone\"", \""Tablet\""]",2855.31,{},258809,0,"""South America""" +2024-07-03,86501,3169,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3568.87,"{\"": \""7%\""}",31301,0,"""Asia""" +2023-12-23,86502,9932,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",576.14,{},56074,1,"""Asia""" +2024-12-15,86503,2905,"[\""Keyboard\"", \""Monitor\""]",2527.88,{},20507,0,"""Europe""" +2023-09-13,86504,1313,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1034.11,{},282478,0,"""South America""" +2023-01-04,86505,4637,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3870.16,{},217008,0,"""Asia""" +2024-01-18,86506,858,"[\""Laptop\""]",606.51,{},248436,1,"""Europe""" +2024-12-15,86507,7249,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1404.46,"{\""seasonal\"": \""5%\""}",111597,0,"""Asia""" +2024-04-04,86508,1039,"[\""Monitor\""]",2660.06,{},6766,0,"""Africa""" +2024-02-13,86509,3438,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",3533.9,{},118440,1,"""North America""" +2023-05-30,86510,2790,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3209.06,{},82702,0,"""South America""" +2024-06-26,86511,9997,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",852.41,"{\""promo\"": \""13%\""}",170670,1,"""North America""" +2024-09-12,86512,8376,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",922.91,{},15029,1,"""Africa""" +2023-07-04,86513,8377,"[\""Monitor\""]",3050.49,{},219140,1,"""Europe""" +2024-07-31,86514,876,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2355.49,"{\""promo\"": \""29%\""}",280918,0,"""Asia""" +2024-06-24,86515,305,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1561.5,{},58472,1,"""Asia""" +2023-12-01,86516,8638,"[\""Phone\"", \""Keyboard\""]",893.59,{},117268,1,"""Asia""" +2024-04-23,86517,7714,"[\""Wireless Mouse\"", \""Monitor\""]",4878.14,"{\"": \""9%\""}",132494,1,"""Africa""" +2023-07-09,86518,3311,"[\""Monitor\"", \""Headphones\""]",2905.53,{},184764,0,"""Europe""" +2024-02-02,86519,4111,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1028.05,"{\""promo\"": \""14%\""}",46554,0,"""South America""" +2024-06-20,86520,238,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2872.1,{},227402,1,"""North America""" +2023-11-04,86521,542,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2716.56,"{\""loyalty\"": \""18%\""}",148515,0,"""Europe""" +2023-06-12,86522,7458,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3285.15,"{\"": \""20%\""}",81644,0,"""Africa""" +2024-05-21,86523,5333,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2017.38,"{\""seasonal\"": \""21%\""}",36211,1,"""Asia""" +2023-06-25,86524,7042,"[\""Wireless Mouse\""]",888.49,{},139558,1,"""Europe""" +2023-08-06,86525,1951,"[\""Keyboard\"", \""Wireless Mouse\""]",868.21,{},219127,0,"""Europe""" +2024-10-03,86526,9916,"[\""Headphones\"", \""Wireless Mouse\""]",3292.84,{},235482,0,"""South America""" +2023-08-11,86527,2826,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3653.8,{},179592,0,"""Asia""" +2024-07-08,86528,5767,"[\""Headphones\""]",4473.08,"{\""promo\"": \""12%\""}",59422,1,"""Africa""" +2024-05-13,86529,5360,"[\""Phone\"", \""Keyboard\""]",3957.07,{},66366,1,"""Europe""" +2023-09-29,86530,7507,"[\""Wireless Mouse\"", \""Keyboard\""]",835.03,"{\""loyalty\"": \""25%\""}",83914,1,"""Europe""" +2024-07-03,86531,6561,"[\""Charger\"", \""Phone\"", \""Headphones\""]",324.69,"{\""seasonal\"": \""8%\""}",5765,1,"""South America""" +2024-01-05,86532,886,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4479.28,{},220492,0,"""South America""" +2023-02-13,86533,4758,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4702.14,{},197799,0,"""Africa""" +2024-06-22,86534,3999,"[\""Laptop\""]",106.74,{},251746,0,"""South America""" +2024-08-19,86535,396,"[\""Monitor\""]",284.78,{},55394,1,"""Europe""" +2023-04-22,86536,6843,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2403.56,"{\""loyalty\"": \""12%\""}",202974,1,"""South America""" +2024-01-12,86537,4964,"[\""Monitor\""]",4258.68,{},232496,0,"""South America""" +2024-08-07,86538,9109,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",681.57,{},60985,1,"""North America""" +2024-05-07,86539,2427,"[\""Headphones\""]",63.71,"{\""promo\"": \""13%\""}",64199,1,"""South America""" +2024-11-22,86540,9584,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",450.32,"{\""loyalty\"": \""14%\""}",223845,1,"""Europe""" +2024-01-03,86541,5919,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3115.21,"{\""seasonal\"": \""14%\""}",187252,0,"""Africa""" +2024-02-23,86542,9978,"[\""Phone\""]",2981.32,{},173821,1,"""North America""" +2024-12-31,86543,8130,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3196.78,"{\""seasonal\"": \""23%\""}",119401,0,"""Africa""" +2024-02-22,86544,8276,"[\""Tablet\""]",936.23,"{\""seasonal\"": \""24%\""}",80841,1,"""Asia""" +2023-07-23,86545,8051,"[\""Phone\""]",4328.3,{},23167,0,"""Africa""" +2023-05-11,86546,3300,"[\""Headphones\"", \""Monitor\""]",3339.65,{},235003,1,"""Europe""" +2023-07-12,86547,6678,"[\""Phone\""]",4542.06,"{\""loyalty\"": \""17%\""}",101879,0,"""Europe""" +2024-06-02,86548,3732,"[\""Monitor\""]",4896.93,{},41443,0,"""Africa""" +2024-03-07,86549,858,"[\""Monitor\""]",4740.86,{},110112,0,"""Africa""" +2024-12-02,86550,1245,"[\""Monitor\"", \""Laptop\""]",2824.99,{},204871,1,"""Europe""" +2023-05-30,86551,5441,"[\""Keyboard\"", \""Charger\""]",3773.97,{},281268,0,"""North America""" +2024-09-17,86552,6541,"[\""Keyboard\"", \""Wireless Mouse\""]",4955.53,"{\""seasonal\"": \""7%\""}",90577,1,"""Europe""" +2023-03-16,86553,1392,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1185.21,"{\""promo\"": \""9%\""}",193554,0,"""South America""" +2024-02-17,86554,3796,"[\""Laptop\"", \""Phone\""]",2660.86,"{\""seasonal\"": \""13%\""}",34318,1,"""Europe""" +2024-02-26,86555,985,"[\""Headphones\"", \""Charger\""]",2569.68,{},158045,0,"""Europe""" +2023-07-24,86556,2435,"[\""Laptop\"", \""Monitor\""]",2803.8,{},32417,1,"""Europe""" +2023-07-17,86557,4684,"[\""Laptop\""]",4302.23,"{\"": \""25%\""}",19294,0,"""South America""" +2023-12-06,86558,9620,"[\""Tablet\"", \""Keyboard\""]",4258.29,"{\""promo\"": \""20%\""}",53828,1,"""South America""" +2024-01-17,86559,8099,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",106.83,"{\""seasonal\"": \""22%\""}",210020,1,"""South America""" +2024-10-28,86560,4974,"[\""Headphones\"", \""Tablet\""]",3189.72,{},241464,0,"""Europe""" +2023-12-05,86561,1354,"[\""Charger\"", \""Monitor\""]",3878.43,"{\""loyalty\"": \""23%\""}",172224,1,"""Europe""" +2024-12-27,86562,6533,"[\""Keyboard\"", \""Tablet\""]",3340.15,"{\""promo\"": \""17%\""}",98293,1,"""Europe""" +2023-07-11,86563,927,"[\""Keyboard\"", \""Monitor\""]",1922.39,{},67248,1,"""Africa""" +2023-09-05,86564,3876,"[\""Wireless Mouse\"", \""Charger\""]",2116.13,{},166549,0,"""North America""" +2024-04-14,86565,3594,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3963.74,{},278939,1,"""Africa""" +2023-07-02,86566,4285,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3982.7,"{\""loyalty\"": \""28%\""}",79812,1,"""Europe""" +2023-12-12,86567,1181,"[\""Phone\""]",1398.83,"{\""loyalty\"": \""27%\""}",47478,0,"""South America""" +2023-07-31,86568,5409,"[\""Keyboard\""]",2637.27,{},186102,0,"""Europe""" +2024-04-29,86569,3059,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4208.03,"{\""promo\"": \""19%\""}",22688,1,"""Europe""" +2023-05-23,86570,8668,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1703.5,{},251469,1,"""Africa""" +2023-08-21,86571,8140,"[\""Laptop\""]",4992.72,{},155895,1,"""Africa""" +2023-10-22,86572,9028,"[\""Wireless Mouse\"", \""Phone\""]",2509.02,{},75836,0,"""Asia""" +2023-05-12,86573,6565,"[\""Keyboard\""]",813.85,{},110598,1,"""North America""" +2023-07-10,86574,1350,"[\""Wireless Mouse\""]",2726.18,{},77921,0,"""South America""" +2024-01-27,86575,2242,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1524.32,"{\""seasonal\"": \""12%\""}",258471,0,"""Europe""" +2024-12-07,86576,4158,"[\""Charger\"", \""Laptop\""]",748.31,"{\""seasonal\"": \""21%\""}",87084,0,"""Asia""" +2023-02-12,86577,2923,"[\""Keyboard\""]",384.52,"{\"": \""12%\""}",13225,0,"""Asia""" +2024-05-01,86578,154,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1358.29,{},118888,0,"""South America""" +2024-07-06,86579,717,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",97.87,{},193344,0,"""Asia""" +2023-03-13,86580,2018,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2997.73,{},215098,1,"""Europe""" +2023-12-03,86581,7842,"[\""Keyboard\""]",537.17,"{\""promo\"": \""11%\""}",224270,1,"""South America""" +2023-09-13,86582,8534,"[\""Phone\"", \""Keyboard\""]",3086.49,{},279076,1,"""Asia""" +2024-09-29,86583,8196,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",493.37,"{\""promo\"": \""29%\""}",100352,0,"""Africa""" +2024-07-30,86584,2885,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4396.9,"{\"": \""14%\""}",161162,0,"""South America""" +2024-10-30,86585,2404,"[\""Wireless Mouse\"", \""Laptop\""]",2547.73,{},41465,1,"""North America""" +2023-12-19,86586,4027,"[\""Monitor\"", \""Keyboard\""]",3438.47,"{\""seasonal\"": \""20%\""}",153101,1,"""South America""" +2023-11-13,86587,3081,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4077.97,"{\""promo\"": \""29%\""}",113825,1,"""Africa""" +2023-08-19,86588,3891,"[\""Monitor\"", \""Charger\""]",3661.02,{},6386,1,"""Europe""" +2024-12-13,86589,4652,"[\""Monitor\""]",4350.78,{},59244,0,"""South America""" +2023-08-22,86590,1972,"[\""Charger\""]",706.87,"{\"": \""23%\""}",37090,0,"""Asia""" +2023-03-27,86591,1758,"[\""Wireless Mouse\"", \""Phone\""]",4737.79,{},168742,0,"""Europe""" +2023-06-14,86592,5265,"[\""Keyboard\""]",1365.24,{},39615,0,"""South America""" +2024-10-18,86593,3074,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1779.82,"{\""promo\"": \""27%\""}",106338,1,"""Europe""" +2024-12-26,86594,9986,"[\""Charger\"", \""Headphones\""]",1123.24,"{\""loyalty\"": \""8%\""}",17925,0,"""Europe""" +2024-04-13,86595,3872,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2987.24,"{\""promo\"": \""25%\""}",207774,0,"""Europe""" +2023-11-12,86596,3183,"[\""Keyboard\""]",3298.81,"{\""promo\"": \""30%\""}",191649,0,"""South America""" +2023-04-28,86597,7482,"[\""Phone\""]",3038.28,"{\""promo\"": \""8%\""}",270130,0,"""Europe""" +2023-12-21,86598,9511,"[\""Wireless Mouse\"", \""Monitor\""]",1441.48,{},156052,1,"""Europe""" +2024-10-09,86599,3325,"[\""Phone\"", \""Monitor\""]",263.21,{},83318,1,"""Africa""" +2024-12-10,86600,3543,"[\""Monitor\"", \""Tablet\""]",122.06,"{\""seasonal\"": \""23%\""}",94656,1,"""Asia""" +2023-05-28,86601,4697,"[\""Charger\"", \""Headphones\""]",3232.08,{},80711,0,"""Europe""" +2023-01-26,86602,7881,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",460.23,"{\""loyalty\"": \""16%\""}",205620,1,"""South America""" +2023-09-19,86603,1137,"[\""Charger\"", \""Keyboard\""]",4314.69,{},191033,0,"""Europe""" +2024-02-09,86604,1393,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4647.17,"{\"": \""12%\""}",142403,1,"""Asia""" +2024-12-12,86605,6232,"[\""Monitor\"", \""Wireless Mouse\""]",990.13,{},110938,0,"""Europe""" +2023-01-04,86606,4009,"[\""Wireless Mouse\"", \""Tablet\""]",3530.6,"{\"": \""28%\""}",278898,0,"""North America""" +2023-09-25,86607,6869,"[\""Monitor\"", \""Wireless Mouse\""]",2356.13,{},239793,0,"""North America""" +2024-12-09,86608,6213,"[\""Tablet\"", \""Wireless Mouse\""]",2780.97,"{\"": \""16%\""}",249350,0,"""Africa""" +2024-03-14,86609,8355,"[\""Laptop\""]",4458.42,{},286178,0,"""South America""" +2024-11-02,86610,4663,"[\""Wireless Mouse\""]",3042.69,"{\"": \""10%\""}",27429,1,"""Africa""" +2024-10-26,86611,8023,"[\""Keyboard\"", \""Headphones\""]",3274.17,{},216994,0,"""North America""" +2024-09-21,86612,1599,"[\""Phone\"", \""Tablet\""]",2780.57,{},98681,1,"""Europe""" +2023-01-01,86613,7085,"[\""Keyboard\"", \""Tablet\""]",1714.63,"{\"": \""24%\""}",181734,0,"""Africa""" +2024-09-03,86614,4212,"[\""Tablet\"", \""Charger\""]",1259.68,{},222709,1,"""Asia""" +2024-11-18,86615,7011,"[\""Laptop\"", \""Tablet\""]",3544.1,"{\""promo\"": \""13%\""}",270184,1,"""North America""" +2023-02-03,86616,6581,"[\""Phone\"", \""Keyboard\""]",4995.56,{},152473,0,"""Asia""" +2024-02-29,86617,27,"[\""Wireless Mouse\""]",1932.41,"{\""seasonal\"": \""26%\""}",46302,1,"""Africa""" +2024-10-09,86618,2900,"[\""Monitor\"", \""Phone\""]",1308.69,"{\""loyalty\"": \""7%\""}",259069,1,"""North America""" +2024-05-08,86619,9345,"[\""Monitor\"", \""Tablet\""]",2676.17,{},57492,0,"""Asia""" +2023-02-07,86620,6589,"[\""Phone\"", \""Charger\""]",2084.75,"{\""seasonal\"": \""8%\""}",222683,0,"""North America""" +2024-04-17,86621,4517,"[\""Charger\""]",3533.34,"{\""seasonal\"": \""20%\""}",265728,1,"""Europe""" +2023-11-09,86622,2657,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2881.84,"{\"": \""17%\""}",85710,1,"""Africa""" +2024-07-19,86623,9210,"[\""Wireless Mouse\""]",2182.17,"{\""loyalty\"": \""29%\""}",138250,1,"""South America""" +2024-11-24,86624,1708,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",111.7,"{\"": \""5%\""}",292539,0,"""Europe""" +2024-09-02,86625,2203,"[\""Headphones\"", \""Monitor\""]",1667.77,{},61252,1,"""Asia""" +2023-12-15,86626,8282,"[\""Wireless Mouse\"", \""Charger\""]",4621.17,{},60028,1,"""Europe""" +2023-09-27,86627,8793,"[\""Keyboard\""]",3866.8,{},34042,0,"""North America""" +2023-01-03,86628,4637,"[\""Charger\""]",1473.5,{},30299,0,"""Asia""" +2024-06-06,86629,8709,"[\""Keyboard\"", \""Headphones\""]",412.49,{},244293,1,"""Europe""" +2024-02-23,86630,9348,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4721.46,"{\""seasonal\"": \""28%\""}",123591,1,"""Africa""" +2024-03-26,86631,323,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3466.31,{},108988,0,"""North America""" +2023-03-17,86632,7668,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2846.65,{},32764,0,"""South America""" +2023-12-01,86633,157,"[\""Laptop\"", \""Tablet\""]",737.04,"{\"": \""26%\""}",216345,1,"""Asia""" +2024-06-15,86634,2614,"[\""Wireless Mouse\""]",4041.5,{},252692,1,"""Africa""" +2024-07-04,86635,1101,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2824.92,{},16938,1,"""Africa""" +2023-09-11,86636,9945,"[\""Monitor\""]",1469.56,"{\"": \""26%\""}",91067,0,"""Europe""" +2023-08-03,86637,6100,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4634.96,{},100059,1,"""North America""" +2024-12-08,86638,1988,"[\""Charger\""]",3830.15,{},240348,0,"""South America""" +2024-06-14,86639,7123,"[\""Monitor\"", \""Phone\""]",3676.71,{},71789,1,"""Africa""" +2024-11-28,86640,8329,"[\""Wireless Mouse\""]",3860.56,"{\""loyalty\"": \""29%\""}",211031,0,"""North America""" +2023-03-31,86641,4968,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4072.31,{},285345,1,"""North America""" +2024-09-26,86642,1246,"[\""Charger\"", \""Wireless Mouse\""]",1299.07,"{\"": \""8%\""}",53494,1,"""Europe""" +2023-07-19,86643,1588,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2433.69,"{\"": \""20%\""}",297943,1,"""North America""" +2024-06-12,86644,1322,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2494.7,{},248100,1,"""South America""" +2023-11-30,86645,620,"[\""Laptop\"", \""Charger\""]",2345.54,"{\""loyalty\"": \""10%\""}",202622,1,"""South America""" +2024-06-17,86646,6334,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1028.69,{},264328,1,"""North America""" +2024-01-06,86647,2461,"[\""Phone\"", \""Charger\""]",372.33,"{\""loyalty\"": \""13%\""}",138491,1,"""Africa""" +2024-03-23,86648,6212,"[\""Wireless Mouse\"", \""Tablet\""]",81.44,"{\"": \""10%\""}",276622,1,"""Africa""" +2024-02-15,86649,2012,"[\""Laptop\"", \""Tablet\""]",641.65,{},198551,1,"""South America""" +2024-10-19,86650,5933,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",233.5,"{\""promo\"": \""16%\""}",181326,1,"""South America""" +2024-04-09,86651,2190,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4216.14,"{\"": \""14%\""}",198946,1,"""Europe""" +2023-10-23,86652,4011,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2789.64,{},284418,0,"""Europe""" +2023-04-17,86653,9789,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4333.58,{},296187,0,"""Asia""" +2023-08-01,86654,8176,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2377.45,{},173420,0,"""North America""" +2023-09-02,86655,2181,"[\""Keyboard\""]",4438.13,{},274732,0,"""Europe""" +2023-08-17,86656,1898,"[\""Headphones\""]",1313.84,"{\""promo\"": \""11%\""}",29654,1,"""Africa""" +2023-12-30,86657,3454,"[\""Charger\"", \""Tablet\""]",4684.29,{},241205,0,"""Europe""" +2023-10-27,86658,5661,"[\""Tablet\""]",1014.27,{},10415,1,"""Asia""" +2023-10-15,86659,7351,"[\""Charger\""]",4869.52,"{\"": \""30%\""}",23018,1,"""Africa""" +2023-01-05,86660,7372,"[\""Charger\"", \""Wireless Mouse\""]",1086.9,"{\""promo\"": \""11%\""}",98034,1,"""Europe""" +2023-07-13,86661,7763,"[\""Charger\"", \""Monitor\""]",2755.98,{},117524,1,"""Asia""" +2023-06-12,86662,4127,"[\""Phone\"", \""Monitor\""]",51.91,{},240802,1,"""North America""" +2024-11-28,86663,1833,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3008.55,"{\"": \""9%\""}",28807,1,"""Africa""" +2023-06-17,86664,6753,"[\""Keyboard\"", \""Phone\""]",2951.29,"{\""promo\"": \""22%\""}",54843,1,"""Africa""" +2023-05-03,86665,782,"[\""Charger\"", \""Keyboard\""]",4365.93,"{\""promo\"": \""13%\""}",108922,1,"""Africa""" +2024-02-17,86666,2471,"[\""Charger\"", \""Monitor\""]",3781.44,"{\"": \""15%\""}",254306,0,"""Asia""" +2024-11-18,86667,7715,"[\""Charger\""]",4402.94,"{\"": \""23%\""}",107942,1,"""Africa""" +2023-03-14,86668,590,"[\""Monitor\"", \""Keyboard\""]",479.33,{},185386,1,"""Asia""" +2023-06-10,86669,2777,"[\""Monitor\""]",951.57,"{\""loyalty\"": \""23%\""}",202604,1,"""South America""" +2023-11-17,86670,4601,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2320.6,{},220738,1,"""South America""" +2023-11-11,86671,966,"[\""Headphones\"", \""Monitor\""]",2957.63,{},278509,1,"""South America""" +2023-09-06,86672,7512,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2527.85,"{\"": \""11%\""}",25240,1,"""Asia""" +2023-04-26,86673,897,"[\""Phone\""]",2958.04,"{\""seasonal\"": \""19%\""}",219892,1,"""Asia""" +2023-12-05,86674,5856,"[\""Keyboard\"", \""Monitor\""]",4340.18,"{\"": \""20%\""}",141351,1,"""South America""" +2023-02-08,86675,835,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4674.98,{},265574,0,"""Europe""" +2024-08-26,86676,5454,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4269.68,{},111955,0,"""South America""" +2024-02-21,86677,3042,"[\""Phone\"", \""Headphones\""]",2450.31,{},145131,0,"""Asia""" +2024-07-06,86678,8822,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",4414.54,"{\""seasonal\"": \""10%\""}",190693,1,"""North America""" +2023-08-25,86679,6447,"[\""Charger\"", \""Phone\"", \""Tablet\""]",238.94,"{\""seasonal\"": \""24%\""}",24319,1,"""Africa""" +2023-10-09,86680,6903,"[\""Phone\"", \""Charger\"", \""Monitor\""]",2909.62,"{\""promo\"": \""6%\""}",198369,0,"""Europe""" +2023-01-09,86681,8929,"[\""Laptop\"", \""Monitor\""]",4503.66,"{\""loyalty\"": \""9%\""}",201250,1,"""South America""" +2024-07-13,86682,3725,"[\""Headphones\""]",3747.84,"{\""loyalty\"": \""16%\""}",153536,0,"""Europe""" +2024-05-07,86683,4032,"[\""Keyboard\""]",4630.8,{},21706,0,"""North America""" +2023-02-12,86684,7185,"[\""Headphones\""]",607.78,{},268838,0,"""Africa""" +2024-08-30,86685,5315,"[\""Phone\"", \""Headphones\""]",134.93,{},108316,1,"""Asia""" +2024-04-19,86686,3486,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3221.63,{},68097,0,"""Asia""" +2024-11-12,86687,5756,"[\""Tablet\""]",3505.09,"{\"": \""5%\""}",248370,1,"""North America""" +2023-03-23,86688,3492,"[\""Wireless Mouse\""]",1964.85,{},144961,0,"""Europe""" +2024-12-07,86689,6259,"[\""Monitor\""]",2811.58,{},101839,1,"""Africa""" +2024-12-12,86690,8466,"[\""Tablet\"", \""Phone\""]",3363.38,"{\""loyalty\"": \""5%\""}",115483,1,"""Europe""" +2024-12-12,86691,3783,"[\""Headphones\""]",2245.97,"{\""promo\"": \""8%\""}",161028,0,"""North America""" +2024-06-19,86692,5210,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3286.02,"{\""promo\"": \""6%\""}",12730,1,"""Europe""" +2023-10-24,86693,9768,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2599.63,"{\""promo\"": \""8%\""}",232232,0,"""Europe""" +2023-10-03,86694,2000,"[\""Tablet\"", \""Keyboard\""]",412.13,{},102376,0,"""Africa""" +2024-07-08,86695,3613,"[\""Wireless Mouse\"", \""Headphones\""]",1988.12,{},223690,0,"""Asia""" +2023-09-22,86696,5647,"[\""Keyboard\"", \""Phone\""]",1126.67,"{\""loyalty\"": \""5%\""}",211145,1,"""South America""" +2024-09-07,86697,9116,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1786.1,"{\""promo\"": \""19%\""}",94544,1,"""North America""" +2024-08-01,86698,4364,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4646.1,"{\""seasonal\"": \""14%\""}",41122,1,"""Africa""" +2023-07-08,86699,7602,"[\""Tablet\""]",4470.57,{},135888,1,"""South America""" +2023-12-04,86700,3474,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3661.38,{},173973,1,"""South America""" +2023-06-07,86701,8411,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4744.79,{},137414,0,"""Europe""" +2024-11-07,86702,6247,"[\""Phone\"", \""Keyboard\""]",912.55,{},237543,0,"""Asia""" +2024-07-26,86703,4496,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2239.32,{},219877,0,"""North America""" +2024-02-27,86704,4296,"[\""Charger\"", \""Tablet\""]",2198.42,"{\""loyalty\"": \""9%\""}",295103,0,"""Europe""" +2023-01-31,86705,4234,"[\""Wireless Mouse\"", \""Laptop\""]",113.81,"{\""loyalty\"": \""8%\""}",35600,1,"""Asia""" +2024-09-12,86706,7998,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1205.07,"{\"": \""15%\""}",211733,0,"""South America""" +2024-07-25,86707,9959,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4911.74,"{\"": \""6%\""}",103438,0,"""North America""" +2024-10-26,86708,6119,"[\""Monitor\""]",3614.82,"{\""loyalty\"": \""30%\""}",105451,0,"""North America""" +2023-04-21,86709,3243,"[\""Wireless Mouse\""]",2812.15,"{\""loyalty\"": \""7%\""}",265620,1,"""Africa""" +2024-08-02,86710,3624,"[\""Phone\"", \""Headphones\""]",2103.63,"{\""promo\"": \""16%\""}",32028,0,"""North America""" +2023-08-23,86711,4901,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4998.65,"{\""loyalty\"": \""11%\""}",222122,0,"""Europe""" +2024-01-21,86712,6236,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4501.33,{},52247,1,"""North America""" +2023-12-24,86713,2905,"[\""Charger\"", \""Wireless Mouse\""]",541.16,{},256593,1,"""North America""" +2024-05-24,86714,3496,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3398.71,"{\""promo\"": \""22%\""}",65732,1,"""Asia""" +2024-06-28,86715,1235,"[\""Wireless Mouse\""]",4320.54,"{\""promo\"": \""6%\""}",193475,0,"""Europe""" +2023-04-28,86716,6762,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4747.7,"{\"": \""11%\""}",167265,1,"""South America""" +2024-10-07,86717,3450,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4171.08,{},213504,1,"""South America""" +2024-01-26,86718,8349,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1144.79,{},145291,0,"""North America""" +2024-02-04,86719,4502,"[\""Charger\""]",1704.28,"{\""promo\"": \""23%\""}",90954,1,"""Africa""" +2023-11-13,86720,6926,"[\""Tablet\""]",2020.7,"{\""seasonal\"": \""9%\""}",208339,1,"""Europe""" +2024-10-10,86721,3969,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1363.49,{},25306,0,"""Asia""" +2024-09-06,86722,4119,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3607.25,{},261193,0,"""North America""" +2024-09-06,86723,9709,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3047.89,"{\""loyalty\"": \""19%\""}",4992,0,"""Europe""" +2024-07-29,86724,5039,"[\""Laptop\"", \""Keyboard\""]",1375.29,"{\""loyalty\"": \""5%\""}",209181,0,"""South America""" +2024-11-03,86725,5337,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4725.29,{},37783,1,"""Africa""" +2023-10-22,86726,9617,"[\""Wireless Mouse\"", \""Charger\""]",1183.84,{},165492,0,"""Europe""" +2023-12-11,86727,2035,"[\""Charger\""]",2986.16,"{\""seasonal\"": \""12%\""}",295308,0,"""Europe""" +2023-06-02,86728,8262,"[\""Monitor\"", \""Laptop\""]",646.21,"{\""seasonal\"": \""16%\""}",100863,1,"""Europe""" +2024-10-12,86729,7838,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4265.44,{},278624,0,"""North America""" +2023-03-20,86730,1424,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3848.19,"{\""promo\"": \""17%\""}",243448,1,"""South America""" +2023-09-16,86731,1350,"[\""Laptop\""]",2974.99,{},225683,1,"""Africa""" +2024-02-15,86732,8475,"[\""Monitor\""]",1694.39,"{\""seasonal\"": \""28%\""}",24568,1,"""North America""" +2024-03-14,86733,989,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2943.37,"{\""loyalty\"": \""10%\""}",133666,1,"""North America""" +2024-05-20,86734,7800,"[\""Tablet\""]",74.04,{},152288,1,"""Asia""" +2023-05-31,86735,7760,"[\""Tablet\"", \""Monitor\""]",657.44,"{\""promo\"": \""24%\""}",58831,0,"""South America""" +2024-07-22,86736,2370,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",472.31,"{\"": \""18%\""}",191019,1,"""South America""" +2023-08-05,86737,5783,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3652.54,"{\"": \""25%\""}",111423,1,"""Asia""" +2024-01-19,86738,173,"[\""Tablet\"", \""Keyboard\""]",347.89,"{\""promo\"": \""7%\""}",297914,0,"""South America""" +2024-06-07,86739,6784,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2159.71,{},89666,0,"""South America""" +2023-09-08,86740,301,"[\""Tablet\""]",1159.23,"{\""seasonal\"": \""8%\""}",192901,0,"""North America""" +2024-10-21,86741,1022,"[\""Tablet\""]",1458.26,{},237036,1,"""Africa""" +2023-10-09,86742,7058,"[\""Wireless Mouse\"", \""Phone\""]",1170.06,"{\""promo\"": \""11%\""}",177061,1,"""Africa""" +2023-01-25,86743,7786,"[\""Charger\"", \""Wireless Mouse\""]",1118.54,"{\""seasonal\"": \""17%\""}",205748,0,"""South America""" +2024-02-23,86744,4891,"[\""Tablet\""]",1475.63,{},5103,1,"""North America""" +2023-06-30,86745,2857,"[\""Wireless Mouse\""]",1190.57,{},61012,0,"""Asia""" +2024-09-12,86746,5346,"[\""Phone\"", \""Keyboard\""]",1652.94,"{\"": \""20%\""}",77832,1,"""Europe""" +2024-04-10,86747,5366,"[\""Charger\""]",4980.15,"{\""seasonal\"": \""10%\""}",297909,1,"""Asia""" +2024-12-28,86748,5621,"[\""Keyboard\""]",1072.58,"{\""promo\"": \""19%\""}",87366,1,"""Asia""" +2023-11-29,86749,2303,"[\""Charger\"", \""Laptop\""]",3133.25,"{\""promo\"": \""19%\""}",225519,0,"""Asia""" +2024-07-11,86750,9752,"[\""Phone\"", \""Charger\""]",1722.2,"{\""seasonal\"": \""8%\""}",55311,0,"""South America""" +2024-08-05,86751,1335,"[\""Phone\""]",281.96,"{\""loyalty\"": \""14%\""}",140924,0,"""Europe""" +2023-06-05,86752,6216,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3684.13,"{\"": \""20%\""}",185490,1,"""South America""" +2024-05-26,86753,5753,"[\""Charger\"", \""Phone\""]",3115.9,{},136333,1,"""Europe""" +2024-01-06,86754,2261,"[\""Headphones\"", \""Phone\""]",511.16,{},98078,1,"""South America""" +2024-04-23,86755,1053,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",224.78,{},21853,1,"""Africa""" +2023-04-03,86756,3605,"[\""Phone\""]",4761.38,{},280759,0,"""Africa""" +2023-05-14,86757,1531,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3862.53,"{\""seasonal\"": \""21%\""}",265228,1,"""Africa""" +2024-10-29,86758,1586,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",874.83,{},36062,0,"""Africa""" +2024-10-20,86759,683,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4915.28,"{\""promo\"": \""9%\""}",27506,0,"""Africa""" +2024-06-05,86760,164,"[\""Phone\""]",918.85,{},53620,0,"""North America""" +2023-08-10,86761,1029,"[\""Keyboard\"", \""Headphones\""]",2390.01,{},189776,1,"""Africa""" +2024-02-02,86762,2723,"[\""Wireless Mouse\"", \""Phone\""]",1930.29,"{\""seasonal\"": \""23%\""}",236585,1,"""Asia""" +2024-10-25,86763,6446,"[\""Laptop\"", \""Wireless Mouse\""]",1840.71,{},50947,1,"""Europe""" +2023-01-30,86764,9239,"[\""Laptop\"", \""Charger\""]",1190.47,"{\""seasonal\"": \""16%\""}",182207,1,"""Africa""" +2024-09-05,86765,5915,"[\""Laptop\""]",4417.04,{},106618,1,"""Europe""" +2024-09-05,86766,7532,"[\""Laptop\"", \""Headphones\""]",2575.41,"{\"": \""26%\""}",37549,1,"""Europe""" +2024-09-27,86767,9752,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4877.4,"{\"": \""5%\""}",137372,1,"""Europe""" +2024-05-05,86768,4698,"[\""Wireless Mouse\""]",4726.03,"{\""seasonal\"": \""16%\""}",175496,0,"""Europe""" +2024-12-18,86769,8245,"[\""Keyboard\""]",3437.9,{},190468,0,"""Europe""" +2023-11-17,86770,9064,"[\""Headphones\"", \""Phone\""]",1507.93,{},161617,1,"""Africa""" +2023-09-26,86771,4421,"[\""Laptop\""]",992.06,{},196595,0,"""Asia""" +2023-06-24,86772,4773,"[\""Tablet\"", \""Headphones\""]",3096.28,"{\""loyalty\"": \""20%\""}",133110,0,"""North America""" +2023-06-26,86773,4849,"[\""Monitor\"", \""Wireless Mouse\""]",2914.35,"{\""promo\"": \""24%\""}",29738,1,"""South America""" +2024-07-22,86774,4248,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4199.77,{},140707,1,"""Asia""" +2024-09-11,86775,3514,"[\""Wireless Mouse\""]",730.56,{},87202,0,"""Africa""" +2024-08-14,86776,4634,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2531.3,{},37113,0,"""South America""" +2024-07-03,86777,4626,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4761.76,{},258182,1,"""Africa""" +2024-08-08,86778,6803,"[\""Phone\"", \""Keyboard\""]",987.2,"{\""promo\"": \""18%\""}",180506,0,"""North America""" +2024-11-20,86779,2732,"[\""Laptop\""]",642.74,"{\""promo\"": \""25%\""}",4179,1,"""Asia""" +2024-10-21,86780,3736,"[\""Headphones\""]",3934.68,"{\""seasonal\"": \""18%\""}",201391,1,"""North America""" +2024-11-03,86781,1474,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3160.26,{},125123,1,"""Africa""" +2024-05-12,86782,4150,"[\""Keyboard\"", \""Monitor\""]",3704.39,"{\""loyalty\"": \""10%\""}",125692,1,"""North America""" +2024-06-04,86783,606,"[\""Charger\""]",116.43,"{\""loyalty\"": \""27%\""}",178113,1,"""Africa""" +2023-04-04,86784,4164,"[\""Wireless Mouse\"", \""Tablet\""]",2818.74,"{\""seasonal\"": \""27%\""}",4545,1,"""Asia""" +2023-11-12,86785,9745,"[\""Wireless Mouse\"", \""Tablet\""]",3959.51,"{\"": \""22%\""}",256211,1,"""North America""" +2024-09-29,86786,5571,"[\""Keyboard\"", \""Monitor\""]",4555.02,{},76941,1,"""South America""" +2024-05-18,86787,1081,"[\""Charger\"", \""Keyboard\""]",3658.94,"{\""seasonal\"": \""7%\""}",46987,1,"""Asia""" +2024-05-13,86788,3807,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4440.88,"{\"": \""11%\""}",170742,1,"""North America""" +2024-02-08,86789,5006,"[\""Keyboard\""]",2514.1,"{\"": \""27%\""}",79136,0,"""Africa""" +2023-04-09,86790,3376,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1705.97,"{\""seasonal\"": \""21%\""}",298634,0,"""Asia""" +2023-01-05,86791,4635,"[\""Tablet\"", \""Headphones\""]",3519.7,"{\"": \""23%\""}",213398,1,"""South America""" +2024-08-22,86792,4295,"[\""Monitor\"", \""Wireless Mouse\""]",4352.67,{},2842,1,"""Africa""" +2024-01-20,86793,5722,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4284.06,"{\"": \""29%\""}",170406,0,"""North America""" +2023-06-20,86794,8606,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3146.04,"{\"": \""15%\""}",101189,0,"""Europe""" +2023-04-05,86795,3169,"[\""Laptop\""]",3373.12,{},171983,0,"""Europe""" +2023-06-30,86796,752,"[\""Phone\""]",2161.32,{},204331,1,"""Africa""" +2023-05-24,86797,6076,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3599.84,"{\"": \""18%\""}",191987,1,"""Asia""" +2024-10-08,86798,998,"[\""Phone\"", \""Tablet\""]",2664.63,"{\""seasonal\"": \""23%\""}",224978,1,"""North America""" +2023-01-13,86799,1393,"[\""Charger\"", \""Headphones\"", \""Phone\""]",1921.22,"{\""loyalty\"": \""19%\""}",71355,1,"""South America""" +2024-11-11,86800,913,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3811.0,"{\""promo\"": \""28%\""}",103334,0,"""North America""" +2023-02-12,86801,1684,"[\""Wireless Mouse\""]",2581.07,"{\""loyalty\"": \""28%\""}",49501,1,"""Africa""" +2024-02-14,86802,1281,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4141.99,{},86646,1,"""Africa""" +2023-05-26,86803,4083,"[\""Monitor\"", \""Keyboard\""]",3130.12,{},285731,0,"""Europe""" +2023-09-08,86804,9930,"[\""Charger\""]",3267.88,"{\""loyalty\"": \""17%\""}",60327,1,"""North America""" +2024-10-31,86805,2029,"[\""Keyboard\"", \""Laptop\""]",394.91,"{\""seasonal\"": \""17%\""}",212200,0,"""Asia""" +2024-12-24,86806,3399,"[\""Tablet\"", \""Charger\""]",4977.22,{},266341,0,"""South America""" +2024-04-02,86807,270,"[\""Headphones\"", \""Laptop\""]",3593.88,"{\""promo\"": \""8%\""}",171173,0,"""Africa""" +2023-04-09,86808,4493,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4945.84,"{\""promo\"": \""13%\""}",86480,1,"""Asia""" +2023-04-15,86809,7179,"[\""Keyboard\""]",3064.03,{},124668,1,"""Asia""" +2024-11-16,86810,1622,"[\""Tablet\""]",3562.91,{},217683,1,"""Europe""" +2024-05-17,86811,9529,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3522.43,"{\""loyalty\"": \""14%\""}",193305,1,"""Asia""" +2024-01-25,86812,6057,"[\""Tablet\"", \""Wireless Mouse\""]",4299.09,"{\""promo\"": \""16%\""}",269070,0,"""Europe""" +2023-11-26,86813,2083,"[\""Headphones\""]",1264.62,"{\"": \""20%\""}",280287,0,"""Africa""" +2023-07-31,86814,5477,"[\""Charger\""]",4645.04,"{\""seasonal\"": \""8%\""}",14874,0,"""North America""" +2024-07-05,86815,3254,"[\""Monitor\"", \""Headphones\""]",4242.31,"{\""loyalty\"": \""8%\""}",284029,0,"""South America""" +2024-04-11,86816,3651,"[\""Charger\""]",598.62,{},152622,0,"""North America""" +2023-03-23,86817,9725,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1442.73,{},6388,0,"""North America""" +2024-11-16,86818,8219,"[\""Monitor\""]",974.47,"{\"": \""18%\""}",90523,0,"""Africa""" +2024-09-24,86819,381,"[\""Headphones\"", \""Charger\""]",3746.83,{},71903,0,"""Asia""" +2023-10-10,86820,2487,"[\""Monitor\""]",1088.4,"{\"": \""23%\""}",110260,1,"""South America""" +2023-09-24,86821,2861,"[\""Laptop\""]",864.24,"{\""promo\"": \""26%\""}",241185,0,"""South America""" +2024-09-19,86822,2618,"[\""Laptop\"", \""Wireless Mouse\""]",4419.68,{},12156,1,"""North America""" +2023-09-23,86823,4707,"[\""Monitor\"", \""Headphones\""]",4893.77,{},69419,1,"""South America""" +2023-01-19,86824,2439,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",356.69,"{\"": \""7%\""}",9182,1,"""South America""" +2023-01-08,86825,1730,"[\""Tablet\""]",1911.53,"{\""loyalty\"": \""19%\""}",260724,0,"""South America""" +2024-08-02,86826,1101,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1959.16,{},112928,1,"""North America""" +2024-11-09,86827,4667,"[\""Charger\"", \""Headphones\""]",2491.59,{},171215,1,"""South America""" +2023-12-07,86828,3113,"[\""Wireless Mouse\"", \""Phone\""]",4347.81,"{\""loyalty\"": \""25%\""}",150302,1,"""North America""" +2024-01-23,86829,6661,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4481.64,"{\"": \""22%\""}",141843,0,"""North America""" +2023-11-20,86830,9825,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1952.07,"{\""loyalty\"": \""30%\""}",235744,0,"""Asia""" +2024-03-11,86831,5074,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1170.93,{},194866,1,"""Europe""" +2023-01-06,86832,5081,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",597.27,{},137506,1,"""Asia""" +2024-02-10,86833,9414,"[\""Charger\""]",4699.54,"{\"": \""20%\""}",28994,1,"""North America""" +2023-02-06,86834,5475,"[\""Keyboard\"", \""Charger\""]",3278.42,"{\"": \""5%\""}",49077,0,"""Europe""" +2023-10-29,86835,2618,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1289.07,{},36475,1,"""Europe""" +2023-01-19,86836,3681,"[\""Charger\""]",2796.52,"{\""promo\"": \""29%\""}",172527,1,"""Asia""" +2024-07-21,86837,9084,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4854.61,"{\"": \""13%\""}",21562,1,"""South America""" +2023-03-21,86838,3491,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",907.67,"{\"": \""10%\""}",109686,0,"""Europe""" +2024-03-12,86839,49,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",1077.61,{},106303,0,"""Asia""" +2023-06-27,86840,1036,"[\""Laptop\"", \""Keyboard\""]",3806.09,"{\"": \""12%\""}",292750,1,"""North America""" +2023-01-26,86841,3634,"[\""Phone\"", \""Wireless Mouse\""]",1176.85,{},185148,0,"""South America""" +2023-07-16,86842,3525,"[\""Laptop\""]",4281.65,"{\""seasonal\"": \""12%\""}",205305,0,"""Asia""" +2023-01-31,86843,2201,"[\""Headphones\""]",2690.61,"{\""loyalty\"": \""10%\""}",272935,1,"""Africa""" +2024-03-02,86844,7024,"[\""Phone\"", \""Wireless Mouse\""]",954.45,{},197485,0,"""South America""" +2023-05-18,86845,5225,"[\""Phone\"", \""Keyboard\""]",334.88,{},14761,1,"""Europe""" +2024-12-01,86846,5484,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4203.6,"{\"": \""17%\""}",71486,0,"""North America""" +2023-05-21,86847,4231,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2106.41,"{\""loyalty\"": \""13%\""}",173431,0,"""South America""" +2023-10-17,86848,8129,"[\""Monitor\""]",135.27,"{\""loyalty\"": \""24%\""}",210448,1,"""Asia""" +2023-08-01,86849,7130,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3848.59,{},39368,1,"""South America""" +2024-06-25,86850,6471,"[\""Tablet\""]",3162.3,{},246797,0,"""Europe""" +2024-12-05,86851,7848,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4847.1,{},299017,1,"""Asia""" +2024-05-29,86852,1050,"[\""Phone\""]",3523.94,{},80511,1,"""Africa""" +2024-09-07,86853,5346,"[\""Tablet\"", \""Keyboard\""]",1770.3,"{\"": \""7%\""}",275815,0,"""Africa""" +2023-12-24,86854,9889,"[\""Headphones\""]",2891.17,{},297115,0,"""South America""" +2024-08-10,86855,9714,"[\""Monitor\"", \""Headphones\""]",85.77,{},40721,1,"""Africa""" +2024-01-14,86856,3969,"[\""Headphones\""]",237.77,"{\""promo\"": \""25%\""}",183710,1,"""Asia""" +2024-12-21,86857,5071,"[\""Charger\"", \""Keyboard\""]",1292.98,{},23379,0,"""North America""" +2024-08-08,86858,168,"[\""Laptop\""]",2150.13,"{\""seasonal\"": \""13%\""}",222904,1,"""Asia""" +2024-08-18,86859,6162,"[\""Charger\"", \""Tablet\""]",2589.43,{},131127,0,"""South America""" +2023-10-21,86860,693,"[\""Headphones\"", \""Charger\""]",777.32,{},160690,0,"""Asia""" +2023-03-14,86861,5961,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4041.97,"{\""loyalty\"": \""20%\""}",2217,1,"""Europe""" +2024-06-24,86862,8119,"[\""Laptop\""]",1563.57,{},131834,1,"""Africa""" +2024-05-27,86863,1735,"[\""Headphones\"", \""Charger\""]",3433.19,{},190770,1,"""Europe""" +2023-07-06,86864,368,"[\""Tablet\"", \""Keyboard\""]",1067.17,"{\""seasonal\"": \""25%\""}",72880,1,"""North America""" +2024-09-10,86865,2594,"[\""Keyboard\"", \""Monitor\""]",4481.15,{},100502,1,"""South America""" +2023-03-17,86866,9224,"[\""Laptop\""]",439.78,{},51782,0,"""Europe""" +2024-04-25,86867,5643,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",351.67,"{\""seasonal\"": \""7%\""}",43392,0,"""Europe""" +2024-06-16,86868,5380,"[\""Tablet\"", \""Headphones\""]",3861.77,"{\""loyalty\"": \""19%\""}",286283,0,"""Europe""" +2024-08-12,86869,1483,"[\""Keyboard\""]",3031.98,"{\"": \""25%\""}",141788,0,"""South America""" +2024-07-04,86870,3923,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4486.24,"{\""loyalty\"": \""25%\""}",149723,1,"""Asia""" +2023-08-02,86871,596,"[\""Headphones\"", \""Laptop\""]",4846.89,"{\""promo\"": \""29%\""}",215045,0,"""Europe""" +2023-10-06,86872,3935,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1765.38,{},224515,1,"""North America""" +2023-12-09,86873,2394,"[\""Phone\"", \""Monitor\""]",134.92,"{\"": \""14%\""}",251845,0,"""North America""" +2023-06-03,86874,9974,"[\""Tablet\""]",4792.74,{},270880,0,"""North America""" +2024-07-13,86875,5050,"[\""Wireless Mouse\"", \""Headphones\""]",3475.44,"{\"": \""7%\""}",69203,0,"""Europe""" +2024-07-02,86876,754,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3467.88,{},120364,0,"""Africa""" +2023-09-26,86877,9886,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",167.83,{},32998,1,"""North America""" +2024-12-03,86878,8098,"[\""Monitor\"", \""Phone\""]",4030.67,{},232708,0,"""Europe""" +2024-06-27,86879,7804,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",1979.26,"{\""promo\"": \""26%\""}",279507,1,"""Africa""" +2023-06-09,86880,3442,"[\""Phone\"", \""Tablet\""]",4815.65,{},44652,1,"""South America""" +2024-01-06,86881,4036,"[\""Wireless Mouse\"", \""Headphones\""]",1860.76,{},173769,1,"""Africa""" +2024-05-15,86882,553,"[\""Monitor\"", \""Headphones\""]",661.67,{},74416,0,"""Europe""" +2023-11-23,86883,2867,"[\""Keyboard\""]",3480.34,{},205180,1,"""Asia""" +2024-10-26,86884,6641,"[\""Wireless Mouse\"", \""Keyboard\""]",2211.64,"{\""seasonal\"": \""26%\""}",118022,1,"""South America""" +2023-12-25,86885,8432,"[\""Laptop\"", \""Wireless Mouse\""]",2948.22,{},104981,0,"""North America""" +2023-07-10,86886,9536,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1156.4,"{\"": \""28%\""}",20343,1,"""Europe""" +2024-05-18,86887,5727,"[\""Tablet\"", \""Laptop\""]",2234.78,{},254366,0,"""South America""" +2023-09-29,86888,5597,"[\""Laptop\"", \""Charger\"", \""Phone\""]",284.24,"{\""loyalty\"": \""5%\""}",52969,1,"""North America""" +2023-02-12,86889,9692,"[\""Headphones\""]",897.25,"{\""promo\"": \""30%\""}",60097,0,"""Europe""" +2023-10-19,86890,7404,"[\""Tablet\""]",494.95,"{\""loyalty\"": \""18%\""}",249627,0,"""Asia""" +2024-04-01,86891,5347,"[\""Wireless Mouse\""]",4200.37,"{\""loyalty\"": \""23%\""}",141526,1,"""South America""" +2023-01-25,86892,2923,"[\""Monitor\""]",4485.43,"{\""seasonal\"": \""15%\""}",212713,1,"""North America""" +2024-04-04,86893,8969,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3234.99,{},271413,0,"""Europe""" +2024-10-01,86894,3039,"[\""Monitor\"", \""Headphones\""]",686.07,"{\""promo\"": \""24%\""}",183035,1,"""Europe""" +2023-11-04,86895,1644,"[\""Phone\""]",3066.8,{},5746,1,"""South America""" +2024-04-03,86896,6392,"[\""Laptop\"", \""Keyboard\""]",3953.93,{},283831,1,"""Asia""" +2024-01-12,86897,4211,"[\""Keyboard\""]",3070.1,"{\""loyalty\"": \""16%\""}",224699,1,"""Europe""" +2023-03-22,86898,7932,"[\""Headphones\""]",3761.94,"{\""promo\"": \""11%\""}",274824,1,"""Africa""" +2024-04-17,86899,1674,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1174.6,"{\""promo\"": \""27%\""}",169499,1,"""Europe""" +2024-08-26,86900,2160,"[\""Tablet\""]",1779.54,"{\""loyalty\"": \""15%\""}",8868,1,"""Europe""" +2023-03-19,86901,4812,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3003.9,{},40995,0,"""Europe""" +2023-09-10,86902,9742,"[\""Wireless Mouse\"", \""Monitor\""]",2302.98,{},2441,1,"""Europe""" +2024-05-27,86903,2197,"[\""Tablet\"", \""Monitor\""]",4037.09,{},59460,0,"""North America""" +2023-12-21,86904,3594,"[\""Monitor\"", \""Charger\""]",1462.66,"{\""loyalty\"": \""24%\""}",143770,1,"""North America""" +2024-01-15,86905,5330,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1934.65,"{\"": \""19%\""}",151365,1,"""Europe""" +2024-05-05,86906,8179,"[\""Charger\""]",4828.06,"{\"": \""30%\""}",74877,1,"""North America""" +2024-06-09,86907,6563,"[\""Wireless Mouse\"", \""Tablet\""]",3406.26,{},187428,0,"""North America""" +2023-11-01,86908,3921,"[\""Laptop\"", \""Wireless Mouse\""]",4576.95,"{\""promo\"": \""20%\""}",8936,1,"""Asia""" +2024-10-26,86909,8825,"[\""Laptop\""]",3731.66,"{\""seasonal\"": \""9%\""}",80474,0,"""North America""" +2024-09-07,86910,5960,"[\""Headphones\""]",1706.27,{},150184,1,"""Europe""" +2023-02-12,86911,5220,"[\""Laptop\"", \""Keyboard\""]",912.78,"{\""promo\"": \""25%\""}",126458,1,"""Africa""" +2024-09-13,86912,9543,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",702.41,"{\""loyalty\"": \""10%\""}",63272,1,"""Europe""" +2023-01-11,86913,4640,"[\""Tablet\"", \""Monitor\""]",1133.38,{},133780,0,"""Africa""" +2023-06-02,86914,1715,"[\""Laptop\""]",800.43,"{\""promo\"": \""29%\""}",4829,1,"""South America""" +2023-09-13,86915,795,"[\""Wireless Mouse\"", \""Monitor\""]",4343.33,"{\""seasonal\"": \""17%\""}",45999,1,"""Europe""" +2023-12-21,86916,3996,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3199.19,{},206382,1,"""Europe""" +2024-07-18,86917,5103,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1731.5,{},99661,1,"""Europe""" +2023-08-16,86918,4342,"[\""Charger\"", \""Wireless Mouse\""]",4436.31,"{\""loyalty\"": \""7%\""}",57101,1,"""North America""" +2024-10-18,86919,9306,"[\""Headphones\""]",4016.99,{},234053,0,"""Asia""" +2023-01-10,86920,3682,"[\""Phone\"", \""Keyboard\""]",1651.45,{},169771,0,"""Europe""" +2023-11-22,86921,122,"[\""Charger\"", \""Wireless Mouse\""]",2803.03,{},193510,1,"""South America""" +2024-08-22,86922,301,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1345.78,{},123568,0,"""Asia""" +2023-03-22,86923,8831,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3281.29,{},253774,0,"""Africa""" +2024-05-01,86924,2353,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3198.45,{},180110,1,"""Africa""" +2023-08-25,86925,7680,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4545.8,{},59900,1,"""Europe""" +2023-06-11,86926,3166,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1918.46,"{\"": \""22%\""}",85174,1,"""Asia""" +2023-02-02,86927,4791,"[\""Headphones\"", \""Wireless Mouse\""]",1966.97,"{\"": \""20%\""}",178699,0,"""South America""" +2023-09-12,86928,8729,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",774.97,{},293525,1,"""Asia""" +2024-07-27,86929,906,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4561.05,"{\""promo\"": \""25%\""}",234688,0,"""North America""" +2023-05-29,86930,4804,"[\""Charger\"", \""Monitor\""]",4991.56,"{\""loyalty\"": \""21%\""}",58738,1,"""North America""" +2024-02-02,86931,4022,"[\""Laptop\""]",3779.53,{},116631,0,"""North America""" +2024-01-18,86932,714,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4838.29,"{\""promo\"": \""29%\""}",164493,1,"""Asia""" +2024-03-21,86933,692,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1403.18,"{\"": \""11%\""}",58508,0,"""South America""" +2023-02-20,86934,2103,"[\""Phone\""]",4881.49,{},155977,1,"""North America""" +2024-08-04,86935,3766,"[\""Wireless Mouse\""]",3448.2,{},116684,0,"""Asia""" +2024-04-29,86936,3890,"[\""Phone\""]",404.05,{},212990,0,"""Africa""" +2023-11-17,86937,3031,"[\""Laptop\""]",1211.01,"{\""promo\"": \""22%\""}",256358,0,"""South America""" +2024-07-18,86938,1296,"[\""Headphones\"", \""Phone\""]",1924.07,{},274272,0,"""South America""" +2023-08-31,86939,2077,"[\""Headphones\"", \""Tablet\""]",2268.99,"{\""promo\"": \""13%\""}",9281,1,"""North America""" +2024-03-21,86940,4632,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",3142.43,"{\""promo\"": \""5%\""}",95506,1,"""North America""" +2024-05-26,86941,9819,"[\""Keyboard\"", \""Tablet\""]",4535.68,"{\""loyalty\"": \""23%\""}",173349,1,"""Europe""" +2024-07-27,86942,4998,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2670.44,{},231015,0,"""South America""" +2023-11-26,86943,9360,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",380.55,"{\"": \""27%\""}",213525,0,"""North America""" +2024-03-28,86944,2081,"[\""Laptop\""]",4585.9,{},177352,1,"""Asia""" +2023-07-11,86945,1848,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1607.34,"{\""promo\"": \""25%\""}",1111,1,"""North America""" +2024-03-19,86946,2894,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",966.18,{},233252,0,"""Africa""" +2024-06-28,86947,5671,"[\""Charger\"", \""Monitor\""]",2438.38,"{\"": \""18%\""}",8232,0,"""South America""" +2023-12-23,86948,3089,"[\""Charger\"", \""Phone\""]",647.99,"{\""promo\"": \""6%\""}",292694,0,"""Africa""" +2023-10-21,86949,1420,"[\""Headphones\""]",2369.97,"{\""loyalty\"": \""5%\""}",88334,0,"""North America""" +2024-10-16,86950,9658,"[\""Tablet\""]",1178.55,"{\""loyalty\"": \""27%\""}",48042,1,"""North America""" +2024-01-06,86951,6395,"[\""Tablet\"", \""Laptop\""]",3616.33,{},280780,1,"""North America""" +2024-02-04,86952,5196,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1037.85,{},262135,1,"""Europe""" +2024-03-30,86953,6562,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3648.47,{},75622,0,"""South America""" +2023-01-10,86954,4116,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",598.21,{},98137,0,"""North America""" +2024-06-15,86955,7975,"[\""Wireless Mouse\""]",3795.72,{},64737,1,"""South America""" +2023-06-17,86956,5106,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3421.34,"{\""seasonal\"": \""23%\""}",190058,0,"""Africa""" +2023-06-04,86957,2735,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3885.94,{},48831,0,"""Asia""" +2023-08-18,86958,5767,"[\""Monitor\"", \""Wireless Mouse\""]",4230.62,"{\""seasonal\"": \""17%\""}",233966,0,"""North America""" +2024-05-13,86959,3076,"[\""Keyboard\"", \""Monitor\""]",2033.38,{},174145,0,"""Europe""" +2023-10-10,86960,7135,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2861.42,"{\""promo\"": \""11%\""}",245212,1,"""South America""" +2024-05-30,86961,5006,"[\""Headphones\""]",1072.22,"{\"": \""12%\""}",228464,1,"""Asia""" +2024-01-03,86962,7821,"[\""Phone\""]",1605.91,{},107377,0,"""North America""" +2024-04-25,86963,4685,"[\""Tablet\"", \""Headphones\""]",1085.0,"{\""loyalty\"": \""13%\""}",21013,0,"""North America""" +2023-01-08,86964,9897,"[\""Keyboard\""]",1299.63,{},278444,1,"""South America""" +2023-02-11,86965,7616,"[\""Wireless Mouse\"", \""Keyboard\""]",3855.86,{},39690,0,"""Africa""" +2023-06-09,86966,6335,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4759.42,{},175702,0,"""South America""" +2024-05-13,86967,1469,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2450.4,"{\""loyalty\"": \""6%\""}",59828,0,"""Europe""" +2023-02-23,86968,5000,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4925.86,{},289724,0,"""Africa""" +2024-04-14,86969,1254,"[\""Tablet\""]",1145.97,"{\"": \""15%\""}",218648,0,"""Asia""" +2024-04-12,86970,2954,"[\""Laptop\"", \""Phone\""]",2994.01,{},167604,0,"""Africa""" +2023-02-22,86971,9869,"[\""Phone\""]",3917.26,{},239894,0,"""Asia""" +2024-06-25,86972,320,"[\""Tablet\"", \""Headphones\""]",1812.19,{},194543,1,"""Africa""" +2023-04-13,86973,8915,"[\""Keyboard\""]",1408.0,"{\""seasonal\"": \""30%\""}",218113,1,"""North America""" +2023-11-10,86974,5107,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2636.03,{},176633,0,"""Europe""" +2024-06-16,86975,3324,"[\""Phone\"", \""Monitor\""]",487.07,"{\"": \""25%\""}",291203,0,"""South America""" +2023-08-24,86976,9025,"[\""Keyboard\"", \""Tablet\""]",2639.51,{},207404,0,"""Europe""" +2023-03-24,86977,7135,"[\""Wireless Mouse\"", \""Phone\""]",3715.14,"{\""loyalty\"": \""30%\""}",289195,1,"""Asia""" +2024-06-18,86978,2719,"[\""Laptop\""]",1668.79,"{\""seasonal\"": \""11%\""}",179860,1,"""South America""" +2023-07-27,86979,829,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2275.54,{},110704,0,"""North America""" +2023-03-21,86980,7352,"[\""Phone\""]",4356.9,{},81111,1,"""Africa""" +2024-10-30,86981,8984,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4224.83,{},92375,1,"""Asia""" +2024-05-07,86982,8105,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2619.88,"{\""promo\"": \""27%\""}",124560,0,"""Asia""" +2024-02-14,86983,4426,"[\""Tablet\""]",454.73,{},247540,1,"""South America""" +2023-05-08,86984,602,"[\""Keyboard\""]",1057.49,{},235706,0,"""South America""" +2024-05-14,86985,9100,"[\""Phone\""]",1644.34,"{\""loyalty\"": \""5%\""}",146484,0,"""South America""" +2023-10-24,86986,5205,"[\""Phone\""]",4541.08,"{\""loyalty\"": \""23%\""}",161605,0,"""Africa""" +2023-08-11,86987,6871,"[\""Wireless Mouse\""]",4940.92,"{\""loyalty\"": \""25%\""}",112965,1,"""Europe""" +2023-01-27,86988,4441,"[\""Charger\"", \""Keyboard\""]",2862.13,"{\""promo\"": \""18%\""}",106503,0,"""Africa""" +2024-09-13,86989,9735,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4143.22,{},52877,0,"""North America""" +2023-01-08,86990,8313,"[\""Phone\"", \""Monitor\""]",1528.94,{},280997,0,"""Asia""" +2023-03-28,86991,8863,"[\""Wireless Mouse\"", \""Tablet\""]",3892.29,"{\""promo\"": \""16%\""}",98897,0,"""North America""" +2023-08-09,86992,1635,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4272.56,"{\"": \""16%\""}",80730,1,"""Africa""" +2023-02-12,86993,443,"[\""Wireless Mouse\""]",4863.43,{},264053,0,"""Asia""" +2024-07-21,86994,7863,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3721.61,"{\""loyalty\"": \""27%\""}",273173,1,"""Europe""" +2023-06-04,86995,9060,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4278.25,{},152965,0,"""South America""" +2023-05-07,86996,8385,"[\""Tablet\"", \""Laptop\""]",1432.33,{},88549,0,"""South America""" +2024-06-08,86997,1622,"[\""Charger\""]",4824.87,{},65914,1,"""North America""" +2023-11-20,86998,2801,"[\""Tablet\""]",3800.03,"{\""promo\"": \""28%\""}",253152,0,"""North America""" +2024-09-12,86999,2769,"[\""Tablet\"", \""Keyboard\""]",3939.07,"{\"": \""26%\""}",165666,0,"""Europe""" +2024-06-06,87000,7604,"[\""Phone\"", \""Keyboard\""]",3281.79,{},159463,1,"""Asia""" +2024-06-20,87001,6039,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3594.86,{},135289,0,"""Africa""" +2024-11-28,87002,8985,"[\""Tablet\"", \""Monitor\""]",3402.52,"{\""loyalty\"": \""14%\""}",139946,0,"""Africa""" +2024-05-11,87003,7441,"[\""Monitor\"", \""Laptop\""]",4207.82,"{\""loyalty\"": \""25%\""}",258470,0,"""North America""" +2023-06-11,87004,8860,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4979.62,"{\""promo\"": \""12%\""}",253175,0,"""Asia""" +2023-06-17,87005,6958,"[\""Wireless Mouse\""]",948.61,{},75963,1,"""North America""" +2024-09-15,87006,998,"[\""Monitor\""]",4161.79,{},208997,0,"""South America""" +2023-02-19,87007,2971,"[\""Charger\""]",297.13,"{\""promo\"": \""13%\""}",47617,1,"""Europe""" +2024-04-13,87008,3769,"[\""Phone\"", \""Keyboard\""]",1458.33,"{\""seasonal\"": \""19%\""}",247492,0,"""Africa""" +2023-04-11,87009,7233,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1449.06,{},263313,0,"""South America""" +2023-10-10,87010,7740,"[\""Monitor\"", \""Wireless Mouse\""]",2421.75,"{\""seasonal\"": \""6%\""}",78444,1,"""Europe""" +2023-09-02,87011,9456,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4259.07,{},120458,1,"""Europe""" +2023-08-05,87012,339,"[\""Keyboard\"", \""Tablet\""]",2601.71,"{\"": \""6%\""}",29761,1,"""Europe""" +2023-03-19,87013,6071,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3887.57,{},276997,1,"""Africa""" +2024-10-15,87014,7900,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3860.51,"{\"": \""10%\""}",95719,1,"""South America""" +2024-02-28,87015,9447,"[\""Monitor\""]",3383.37,{},97402,0,"""Africa""" +2024-12-22,87016,1225,"[\""Charger\""]",2805.84,{},80990,0,"""North America""" +2024-06-22,87017,8495,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4856.9,"{\""loyalty\"": \""12%\""}",29450,0,"""Asia""" +2024-12-07,87018,9575,"[\""Phone\"", \""Headphones\"", \""Charger\""]",626.25,"{\""promo\"": \""6%\""}",207771,0,"""Africa""" +2024-10-09,87019,4410,"[\""Headphones\"", \""Charger\""]",2025.12,{},155471,1,"""Asia""" +2023-12-09,87020,2939,"[\""Phone\""]",3673.11,{},195086,1,"""South America""" +2024-09-21,87021,1527,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3657.44,{},142185,1,"""North America""" +2023-01-18,87022,2702,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3407.41,"{\"": \""25%\""}",209913,1,"""Africa""" +2023-07-09,87023,7788,"[\""Wireless Mouse\""]",427.21,"{\""promo\"": \""14%\""}",27051,0,"""North America""" +2024-04-29,87024,9370,"[\""Monitor\"", \""Headphones\""]",2206.5,"{\""promo\"": \""7%\""}",218273,1,"""Asia""" +2024-06-26,87025,3850,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1650.86,{},8369,0,"""Asia""" +2023-02-02,87026,3831,"[\""Phone\""]",4733.71,"{\"": \""14%\""}",169615,1,"""Asia""" +2023-05-01,87027,7824,"[\""Tablet\"", \""Monitor\""]",2067.21,{},186650,0,"""Asia""" +2024-12-01,87028,835,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",963.92,{},18655,1,"""Africa""" +2023-07-21,87029,6072,"[\""Charger\""]",606.83,"{\""promo\"": \""12%\""}",196766,0,"""Europe""" +2024-09-15,87030,6559,"[\""Monitor\""]",392.74,"{\"": \""29%\""}",127190,0,"""Europe""" +2024-04-27,87031,9066,"[\""Phone\"", \""Keyboard\""]",4972.03,"{\""promo\"": \""9%\""}",263744,1,"""Asia""" +2024-12-20,87032,7009,"[\""Charger\""]",78.03,"{\""loyalty\"": \""17%\""}",72944,1,"""Asia""" +2023-06-27,87033,4569,"[\""Keyboard\""]",4193.34,{},152736,0,"""Europe""" +2024-06-17,87034,499,"[\""Keyboard\""]",1639.79,{},101346,0,"""Europe""" +2024-10-16,87035,4822,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1829.71,{},258611,1,"""Asia""" +2023-03-19,87036,3885,"[\""Wireless Mouse\""]",414.38,"{\""loyalty\"": \""15%\""}",153579,1,"""North America""" +2023-03-07,87037,5859,"[\""Laptop\"", \""Headphones\""]",4064.99,{},259256,0,"""Asia""" +2023-09-09,87038,1212,"[\""Charger\""]",3321.53,{},273042,0,"""North America""" +2023-06-02,87039,6971,"[\""Phone\""]",4919.99,{},48408,1,"""Europe""" +2023-12-05,87040,541,"[\""Charger\""]",873.62,"{\""promo\"": \""17%\""}",39894,0,"""North America""" +2024-06-12,87041,2357,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",414.65,{},167110,0,"""Europe""" +2023-01-26,87042,9571,"[\""Tablet\""]",4983.51,"{\""promo\"": \""28%\""}",85719,1,"""Africa""" +2023-04-12,87043,2259,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2696.05,{},128045,1,"""Europe""" +2024-10-25,87044,1035,"[\""Tablet\""]",2405.4,"{\""seasonal\"": \""5%\""}",91716,1,"""North America""" +2024-06-04,87045,285,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3868.97,"{\""seasonal\"": \""10%\""}",172045,1,"""Asia""" +2024-11-22,87046,877,"[\""Tablet\"", \""Keyboard\""]",2523.76,{},179640,1,"""Europe""" +2023-10-27,87047,865,"[\""Wireless Mouse\""]",1590.12,{},137702,0,"""South America""" +2024-01-04,87048,1117,"[\""Wireless Mouse\"", \""Monitor\""]",2338.1,{},210888,1,"""North America""" +2024-07-12,87049,6892,"[\""Tablet\"", \""Monitor\""]",4596.39,"{\""promo\"": \""29%\""}",18899,1,"""North America""" +2023-06-23,87050,9385,"[\""Headphones\"", \""Monitor\""]",4864.54,{},245725,1,"""Africa""" +2023-12-25,87051,6934,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",780.97,{},133556,0,"""South America""" +2024-01-16,87052,8350,"[\""Phone\""]",2784.54,{},276754,0,"""Europe""" +2023-12-20,87053,4580,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2270.87,{},185140,1,"""North America""" +2024-03-21,87054,6072,"[\""Charger\"", \""Laptop\""]",67.51,"{\""promo\"": \""29%\""}",219426,1,"""Asia""" +2023-12-06,87055,4515,"[\""Laptop\""]",396.35,"{\""promo\"": \""6%\""}",156256,1,"""South America""" +2023-02-03,87056,4758,"[\""Tablet\"", \""Phone\""]",3862.72,{},81039,0,"""South America""" +2023-10-25,87057,5682,"[\""Laptop\"", \""Tablet\""]",3957.9,{},79613,1,"""North America""" +2023-06-04,87058,1296,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3721.47,"{\""loyalty\"": \""30%\""}",103318,1,"""Europe""" +2024-06-13,87059,8624,"[\""Headphones\"", \""Wireless Mouse\""]",4995.28,{},236380,0,"""Asia""" +2024-12-23,87060,5007,"[\""Phone\"", \""Tablet\""]",2369.84,"{\""promo\"": \""16%\""}",143101,1,"""North America""" +2023-01-08,87061,7603,"[\""Keyboard\"", \""Monitor\""]",3755.59,{},123871,0,"""South America""" +2024-06-05,87062,7967,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",2386.1,{},208348,0,"""North America""" +2023-05-24,87063,6810,"[\""Charger\"", \""Headphones\""]",524.28,{},20107,1,"""North America""" +2024-03-31,87064,496,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",894.71,{},285186,0,"""North America""" +2023-11-21,87065,9093,"[\""Monitor\""]",2076.75,{},163450,0,"""South America""" +2024-05-02,87066,2010,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2158.34,{},153190,1,"""North America""" +2024-10-28,87067,8560,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4670.09,"{\""loyalty\"": \""26%\""}",215107,0,"""Asia""" +2023-10-09,87068,9933,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2160.37,"{\""seasonal\"": \""11%\""}",33193,1,"""Africa""" +2024-03-31,87069,9754,"[\""Phone\""]",1694.86,"{\"": \""22%\""}",113542,1,"""North America""" +2024-05-07,87070,7515,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4084.75,{},270724,0,"""North America""" +2024-04-17,87071,6123,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2965.6,"{\""seasonal\"": \""12%\""}",165569,0,"""South America""" +2024-04-24,87072,9043,"[\""Keyboard\""]",189.07,"{\""loyalty\"": \""14%\""}",63947,0,"""North America""" +2024-05-24,87073,8141,"[\""Phone\"", \""Tablet\""]",2826.14,"{\""seasonal\"": \""11%\""}",250048,1,"""Asia""" +2024-11-12,87074,4458,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2895.01,{},94723,1,"""Europe""" +2024-08-23,87075,7075,"[\""Headphones\""]",887.49,"{\""loyalty\"": \""29%\""}",228511,1,"""Asia""" +2024-02-09,87076,4280,"[\""Headphones\"", \""Phone\""]",1212.62,{},90601,0,"""South America""" +2024-11-17,87077,975,"[\""Monitor\""]",2456.54,"{\"": \""29%\""}",78744,1,"""Europe""" +2024-10-10,87078,7152,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1292.4,"{\"": \""19%\""}",92528,1,"""South America""" +2024-06-20,87079,759,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2823.08,{},25494,1,"""Europe""" +2023-11-17,87080,6692,"[\""Tablet\"", \""Charger\""]",1458.42,"{\""loyalty\"": \""8%\""}",48571,0,"""Africa""" +2023-02-08,87081,981,"[\""Monitor\""]",2929.59,"{\"": \""19%\""}",38389,1,"""Asia""" +2024-11-22,87082,5574,"[\""Headphones\""]",4784.18,{},140387,1,"""Asia""" +2023-08-19,87083,2229,"[\""Charger\""]",3370.0,"{\""loyalty\"": \""18%\""}",107578,0,"""South America""" +2024-05-09,87084,6206,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3644.66,"{\""promo\"": \""21%\""}",196050,1,"""South America""" +2024-09-30,87085,909,"[\""Keyboard\"", \""Monitor\""]",3193.62,"{\""seasonal\"": \""24%\""}",194191,1,"""South America""" +2024-08-02,87086,4541,"[\""Wireless Mouse\"", \""Phone\""]",3788.48,"{\""loyalty\"": \""17%\""}",18155,0,"""Europe""" +2023-04-21,87087,5330,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1876.13,"{\""seasonal\"": \""11%\""}",193721,1,"""South America""" +2023-01-02,87088,9703,"[\""Phone\""]",523.91,{},295510,1,"""Europe""" +2023-12-03,87089,2975,"[\""Laptop\""]",2549.39,"{\""loyalty\"": \""17%\""}",67935,0,"""Asia""" +2024-09-01,87090,6467,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4696.41,{},264720,0,"""South America""" +2023-09-30,87091,9460,"[\""Keyboard\"", \""Monitor\""]",308.76,"{\""seasonal\"": \""25%\""}",102527,1,"""North America""" +2023-11-15,87092,3949,"[\""Tablet\""]",2243.47,"{\""promo\"": \""30%\""}",131443,0,"""Europe""" +2024-03-31,87093,1729,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1206.92,"{\""seasonal\"": \""13%\""}",72064,1,"""Asia""" +2023-09-30,87094,844,"[\""Charger\"", \""Monitor\""]",389.8,"{\""promo\"": \""12%\""}",109344,0,"""North America""" +2023-06-06,87095,4481,"[\""Charger\"", \""Headphones\""]",2385.25,{},215942,1,"""South America""" +2023-01-23,87096,2020,"[\""Laptop\""]",288.69,{},265959,0,"""North America""" +2023-10-31,87097,9648,"[\""Wireless Mouse\""]",2017.43,{},268192,0,"""Asia""" +2023-05-31,87098,2895,"[\""Monitor\"", \""Phone\""]",4740.28,"{\""loyalty\"": \""18%\""}",120354,1,"""South America""" +2023-08-06,87099,7210,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2549.6,{},250931,1,"""Asia""" +2023-05-04,87100,3177,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",881.23,{},27758,0,"""North America""" +2023-07-12,87101,4575,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4787.66,{},248269,1,"""South America""" +2024-06-16,87102,1792,"[\""Monitor\""]",2149.84,"{\""seasonal\"": \""19%\""}",165212,0,"""Asia""" +2024-07-02,87103,2506,"[\""Monitor\""]",1683.97,"{\"": \""11%\""}",288162,1,"""Asia""" +2024-01-29,87104,4911,"[\""Headphones\""]",4671.41,"{\"": \""14%\""}",152744,1,"""Europe""" +2023-01-11,87105,9756,"[\""Tablet\"", \""Phone\""]",3318.62,{},135560,1,"""Europe""" +2023-08-26,87106,2858,"[\""Monitor\""]",800.27,{},14688,1,"""South America""" +2023-09-24,87107,4220,"[\""Headphones\"", \""Monitor\""]",743.2,"{\""promo\"": \""7%\""}",66380,0,"""South America""" +2023-02-24,87108,9367,"[\""Keyboard\"", \""Headphones\""]",909.9,{},53334,0,"""South America""" +2023-12-11,87109,3104,"[\""Charger\""]",823.04,{},88890,1,"""North America""" +2024-06-06,87110,4344,"[\""Keyboard\""]",4640.47,"{\""loyalty\"": \""14%\""}",208334,0,"""South America""" +2023-01-12,87111,5711,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1970.8,{},25642,1,"""Africa""" +2024-12-18,87112,7165,"[\""Phone\""]",3073.94,"{\""seasonal\"": \""6%\""}",217096,1,"""South America""" +2024-10-01,87113,7537,"[\""Keyboard\""]",4795.27,"{\""loyalty\"": \""24%\""}",293810,0,"""Europe""" +2024-11-16,87114,1552,"[\""Charger\"", \""Headphones\"", \""Phone\""]",639.01,"{\""promo\"": \""12%\""}",207225,0,"""North America""" +2023-01-23,87115,7740,"[\""Phone\"", \""Laptop\""]",636.09,"{\""promo\"": \""10%\""}",224761,0,"""Africa""" +2024-03-11,87116,7246,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1044.03,{},95581,0,"""Africa""" +2024-11-26,87117,5313,"[\""Wireless Mouse\"", \""Phone\""]",2774.99,"{\""seasonal\"": \""9%\""}",136481,0,"""Europe""" +2024-08-09,87118,249,"[\""Charger\""]",4769.28,{},227315,1,"""North America""" +2023-03-10,87119,362,"[\""Phone\""]",1310.1,{},151343,0,"""South America""" +2023-09-09,87120,8824,"[\""Wireless Mouse\""]",2426.36,{},38656,1,"""Europe""" +2023-05-14,87121,4939,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",1491.48,"{\""loyalty\"": \""17%\""}",53163,0,"""South America""" +2023-12-01,87122,709,"[\""Tablet\""]",2184.09,"{\""promo\"": \""18%\""}",152854,1,"""Europe""" +2024-03-23,87123,2260,"[\""Keyboard\"", \""Laptop\""]",1383.61,{},168093,0,"""Asia""" +2024-06-25,87124,3586,"[\""Wireless Mouse\"", \""Tablet\""]",3077.21,"{\"": \""8%\""}",215160,0,"""Africa""" +2024-12-17,87125,2507,"[\""Tablet\"", \""Wireless Mouse\""]",4683.53,{},52569,0,"""Asia""" +2023-06-03,87126,6136,"[\""Headphones\"", \""Wireless Mouse\""]",357.31,"{\""loyalty\"": \""22%\""}",41843,1,"""Asia""" +2023-09-16,87127,9113,"[\""Headphones\"", \""Monitor\""]",2864.11,{},292935,0,"""Africa""" +2023-08-23,87128,5104,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1053.99,"{\""seasonal\"": \""13%\""}",267423,1,"""South America""" +2024-02-14,87129,5780,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4486.67,{},85079,1,"""Asia""" +2024-07-21,87130,3498,"[\""Laptop\"", \""Tablet\""]",1154.28,{},49267,1,"""Asia""" +2024-01-16,87131,7324,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4014.99,"{\""loyalty\"": \""17%\""}",185854,1,"""Africa""" +2024-04-02,87132,7619,"[\""Wireless Mouse\"", \""Tablet\""]",3235.17,{},161544,0,"""Europe""" +2024-08-13,87133,914,"[\""Wireless Mouse\""]",1785.39,{},199505,0,"""South America""" +2023-10-13,87134,29,"[\""Phone\""]",308.53,{},238818,0,"""Europe""" +2023-03-08,87135,360,"[\""Laptop\""]",3132.36,{},172802,0,"""North America""" +2023-08-15,87136,7012,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4038.01,"{\"": \""23%\""}",121923,1,"""Europe""" +2023-08-05,87137,9179,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3935.63,{},197174,1,"""North America""" +2024-02-13,87138,744,"[\""Keyboard\"", \""Tablet\""]",2995.12,{},112609,1,"""Asia""" +2024-05-23,87139,5914,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2007.96,{},211201,0,"""Asia""" +2024-09-10,87140,4980,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1502.5,"{\""promo\"": \""29%\""}",62632,0,"""Europe""" +2024-12-13,87141,2879,"[\""Phone\""]",665.94,{},140108,1,"""Africa""" +2024-07-02,87142,728,"[\""Tablet\""]",173.44,"{\"": \""22%\""}",234146,0,"""Europe""" +2023-05-29,87143,1230,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3382.23,"{\""promo\"": \""19%\""}",128532,1,"""Europe""" +2023-04-19,87144,1040,"[\""Tablet\""]",3882.34,"{\"": \""25%\""}",125459,0,"""South America""" +2023-02-25,87145,4648,"[\""Headphones\""]",2984.49,{},185026,1,"""South America""" +2023-10-22,87146,6533,"[\""Charger\""]",69.29,"{\""seasonal\"": \""22%\""}",260496,1,"""South America""" +2024-09-06,87147,804,"[\""Charger\""]",235.41,"{\""loyalty\"": \""17%\""}",210316,0,"""Africa""" +2023-07-28,87148,6109,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",938.86,"{\"": \""27%\""}",77714,1,"""Asia""" +2024-08-05,87149,9403,"[\""Laptop\"", \""Wireless Mouse\""]",4017.3,"{\"": \""26%\""}",28366,1,"""South America""" +2024-08-01,87150,5979,"[\""Charger\"", \""Keyboard\""]",3359.53,"{\""promo\"": \""19%\""}",68968,1,"""South America""" +2024-11-21,87151,2232,"[\""Tablet\"", \""Phone\""]",1591.38,{},236289,1,"""Africa""" +2023-12-23,87152,5748,"[\""Monitor\"", \""Phone\"", \""Charger\""]",218.03,"{\""promo\"": \""28%\""}",190369,1,"""Asia""" +2023-05-07,87153,2188,"[\""Wireless Mouse\"", \""Tablet\""]",290.56,{},232334,1,"""Africa""" +2023-11-25,87154,7128,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",1565.32,"{\""promo\"": \""18%\""}",291970,1,"""Africa""" +2023-07-12,87155,7514,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1012.71,{},130725,1,"""South America""" +2023-11-17,87156,3132,"[\""Phone\"", \""Tablet\""]",4331.05,{},274041,1,"""Europe""" +2023-01-07,87157,2064,"[\""Charger\"", \""Monitor\""]",2356.64,"{\"": \""23%\""}",32599,0,"""Africa""" +2024-03-11,87158,1655,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1240.59,"{\""seasonal\"": \""12%\""}",151328,1,"""Europe""" +2024-12-27,87159,9527,"[\""Wireless Mouse\""]",1000.68,{},82100,1,"""Europe""" +2023-11-18,87160,3968,"[\""Wireless Mouse\"", \""Monitor\""]",3520.5,{},170756,0,"""Africa""" +2023-10-14,87161,6444,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",183.24,{},89736,0,"""Africa""" +2023-02-02,87162,5512,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4030.68,{},196891,1,"""Europe""" +2023-06-23,87163,733,"[\""Wireless Mouse\""]",2823.67,"{\"": \""12%\""}",297726,1,"""Europe""" +2024-01-30,87164,2928,"[\""Charger\"", \""Keyboard\""]",2469.98,"{\""seasonal\"": \""9%\""}",15326,1,"""Asia""" +2023-05-31,87165,9407,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3322.26,"{\"": \""24%\""}",256572,0,"""South America""" +2024-09-08,87166,5356,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",51.72,"{\""seasonal\"": \""28%\""}",91885,0,"""Asia""" +2024-07-02,87167,4759,"[\""Keyboard\"", \""Phone\""]",4954.15,"{\""promo\"": \""29%\""}",287289,0,"""Asia""" +2023-07-09,87168,5741,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",87.45,"{\""promo\"": \""22%\""}",109522,0,"""Africa""" +2024-08-07,87169,4469,"[\""Headphones\""]",802.85,{},181156,0,"""Europe""" +2024-01-04,87170,8251,"[\""Tablet\""]",1502.78,{},286799,1,"""Africa""" +2024-10-31,87171,3006,"[\""Wireless Mouse\""]",2003.66,"{\""promo\"": \""9%\""}",106084,0,"""North America""" +2024-04-04,87172,3938,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3620.58,"{\""seasonal\"": \""5%\""}",286592,1,"""Europe""" +2024-10-06,87173,7197,"[\""Headphones\""]",3754.92,"{\""promo\"": \""13%\""}",190513,1,"""Asia""" +2023-08-26,87174,6785,"[\""Keyboard\"", \""Phone\""]",3630.99,{},7154,1,"""South America""" +2024-10-10,87175,4417,"[\""Wireless Mouse\""]",1102.0,"{\"": \""20%\""}",170865,1,"""Asia""" +2023-06-24,87176,5878,"[\""Laptop\""]",4294.22,"{\""seasonal\"": \""13%\""}",200062,1,"""Europe""" +2023-02-16,87177,75,"[\""Tablet\"", \""Wireless Mouse\""]",4349.46,{},260243,1,"""Europe""" +2024-02-09,87178,1818,"[\""Tablet\""]",2221.89,{},45958,1,"""Asia""" +2023-04-23,87179,2512,"[\""Monitor\""]",769.7,"{\""loyalty\"": \""30%\""}",250722,1,"""Asia""" +2023-07-23,87180,1894,"[\""Charger\""]",399.55,"{\""seasonal\"": \""25%\""}",90918,1,"""North America""" +2024-01-17,87181,4710,"[\""Wireless Mouse\""]",4919.74,"{\""loyalty\"": \""25%\""}",193328,1,"""North America""" +2023-06-21,87182,7662,"[\""Tablet\""]",537.59,"{\""promo\"": \""29%\""}",45930,0,"""North America""" +2024-06-01,87183,4399,"[\""Keyboard\""]",2974.42,"{\""loyalty\"": \""14%\""}",294874,1,"""North America""" +2023-07-11,87184,7160,"[\""Keyboard\""]",4546.12,{},37943,1,"""Europe""" +2023-03-30,87185,9848,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2516.91,{},169546,1,"""South America""" +2024-04-14,87186,5912,"[\""Headphones\""]",1130.29,{},56446,1,"""North America""" +2023-06-08,87187,1208,"[\""Headphones\""]",441.74,"{\"": \""11%\""}",191265,0,"""North America""" +2024-10-27,87188,461,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3858.78,"{\""seasonal\"": \""23%\""}",70901,0,"""South America""" +2024-04-24,87189,7739,"[\""Headphones\""]",698.96,"{\""promo\"": \""23%\""}",208362,0,"""South America""" +2023-06-29,87190,2246,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",3489.12,"{\""seasonal\"": \""23%\""}",82135,1,"""South America""" +2024-10-07,87191,3123,"[\""Tablet\""]",4809.3,{},299328,1,"""North America""" +2023-02-19,87192,1900,"[\""Charger\""]",465.21,{},41766,1,"""North America""" +2024-10-06,87193,3186,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1750.47,{},166378,1,"""Asia""" +2024-09-30,87194,6920,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2841.72,{},248188,1,"""North America""" +2024-08-10,87195,4623,"[\""Monitor\""]",2031.89,{},228618,0,"""Asia""" +2024-11-12,87196,7285,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2547.07,{},132316,1,"""North America""" +2023-08-30,87197,2195,"[\""Phone\"", \""Wireless Mouse\""]",3841.74,"{\""promo\"": \""26%\""}",98035,1,"""North America""" +2024-09-04,87198,3007,"[\""Tablet\""]",91.95,"{\"": \""30%\""}",198320,1,"""South America""" +2023-12-05,87199,5671,"[\""Tablet\"", \""Charger\""]",4888.58,"{\""promo\"": \""24%\""}",298084,0,"""Africa""" +2024-10-28,87200,1437,"[\""Keyboard\""]",4490.74,{},130927,0,"""Africa""" +2023-04-23,87201,7686,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4494.21,"{\""loyalty\"": \""27%\""}",30970,0,"""North America""" +2023-01-31,87202,1056,"[\""Keyboard\""]",1301.5,{},225124,0,"""Asia""" +2023-09-22,87203,4728,"[\""Tablet\"", \""Laptop\""]",3139.66,{},15931,0,"""Asia""" +2024-04-30,87204,31,"[\""Phone\""]",1527.62,{},23492,1,"""Africa""" +2024-01-16,87205,6840,"[\""Phone\"", \""Laptop\""]",2173.26,"{\""loyalty\"": \""20%\""}",110420,1,"""Africa""" +2023-11-03,87206,9707,"[\""Laptop\""]",2776.8,{},1051,0,"""South America""" +2023-12-25,87207,9923,"[\""Wireless Mouse\""]",1106.7,"{\""seasonal\"": \""5%\""}",59618,1,"""Europe""" +2023-07-31,87208,5055,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3737.87,"{\""seasonal\"": \""14%\""}",280063,1,"""North America""" +2024-01-13,87209,2954,"[\""Wireless Mouse\"", \""Charger\""]",1485.91,{},188706,0,"""Europe""" +2023-07-19,87210,197,"[\""Tablet\""]",2970.76,{},132704,1,"""North America""" +2024-01-31,87211,187,"[\""Monitor\""]",3404.96,{},263507,1,"""Africa""" +2023-01-07,87212,2954,"[\""Headphones\""]",161.61,"{\""promo\"": \""21%\""}",173782,0,"""North America""" +2023-05-26,87213,6616,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2843.44,{},203060,0,"""North America""" +2023-12-09,87214,8073,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2167.49,{},157201,1,"""South America""" +2024-05-07,87215,2995,"[\""Monitor\"", \""Phone\""]",764.34,"{\""promo\"": \""19%\""}",254361,0,"""Africa""" +2024-01-18,87216,3364,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1165.3,{},194517,0,"""Africa""" +2024-06-14,87217,6113,"[\""Charger\""]",1793.9,{},152589,1,"""Africa""" +2024-11-01,87218,3570,"[\""Charger\"", \""Keyboard\""]",1868.63,"{\"": \""10%\""}",78574,0,"""South America""" +2023-08-16,87219,5846,"[\""Keyboard\"", \""Laptop\""]",4024.09,{},245560,1,"""Africa""" +2023-01-22,87220,2071,"[\""Tablet\"", \""Phone\""]",2998.06,"{\""promo\"": \""8%\""}",168657,0,"""Europe""" +2023-10-22,87221,6926,"[\""Charger\"", \""Laptop\""]",4744.81,{},292796,0,"""Europe""" +2023-03-18,87222,816,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4742.96,"{\""seasonal\"": \""26%\""}",236681,1,"""North America""" +2024-01-05,87223,1973,"[\""Monitor\""]",2278.34,{},252189,0,"""Asia""" +2024-08-28,87224,6718,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",532.02,{},18005,1,"""Africa""" +2023-05-14,87225,450,"[\""Charger\"", \""Keyboard\""]",864.21,"{\""seasonal\"": \""21%\""}",247468,1,"""South America""" +2023-01-13,87226,1801,"[\""Headphones\""]",1244.38,{},36814,1,"""South America""" +2024-02-26,87227,9257,"[\""Headphones\"", \""Wireless Mouse\""]",782.83,{},164746,0,"""South America""" +2023-09-12,87228,8879,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",52.56,"{\""seasonal\"": \""30%\""}",250256,0,"""South America""" +2024-11-06,87229,8273,"[\""Laptop\"", \""Tablet\""]",3633.67,{},192321,0,"""Africa""" +2024-04-06,87230,9212,"[\""Phone\""]",1443.04,"{\""promo\"": \""28%\""}",29042,1,"""North America""" +2024-10-03,87231,861,"[\""Phone\""]",3906.69,"{\""promo\"": \""21%\""}",265634,1,"""Europe""" +2024-05-02,87232,5179,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4939.98,{},192436,0,"""Europe""" +2024-12-09,87233,5115,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",3472.22,{},233532,1,"""Asia""" +2024-05-29,87234,3523,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",514.31,"{\"": \""27%\""}",180709,0,"""Asia""" +2024-05-24,87235,6457,"[\""Phone\"", \""Wireless Mouse\""]",2066.94,"{\"": \""13%\""}",249645,1,"""Africa""" +2023-01-19,87236,7620,"[\""Tablet\"", \""Wireless Mouse\""]",4282.81,"{\""promo\"": \""23%\""}",7723,0,"""Africa""" +2024-05-19,87237,3323,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2398.74,{},144270,1,"""Europe""" +2023-12-24,87238,9422,"[\""Keyboard\"", \""Phone\""]",2035.07,"{\""seasonal\"": \""15%\""}",31884,0,"""Asia""" +2024-08-31,87239,7050,"[\""Monitor\"", \""Charger\""]",3631.3,"{\""promo\"": \""17%\""}",120842,0,"""Europe""" +2024-01-15,87240,7161,"[\""Charger\"", \""Keyboard\""]",3609.81,"{\""seasonal\"": \""13%\""}",222034,1,"""Asia""" +2023-01-29,87241,5945,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4640.09,{},136077,0,"""North America""" +2024-04-27,87242,382,"[\""Keyboard\""]",3181.08,"{\""promo\"": \""23%\""}",280641,0,"""South America""" +2023-07-14,87243,1974,"[\""Charger\"", \""Phone\"", \""Laptop\""]",600.16,{},157552,0,"""Europe""" +2023-08-30,87244,9122,"[\""Headphones\"", \""Keyboard\""]",3498.25,"{\""promo\"": \""13%\""}",187269,1,"""North America""" +2023-06-08,87245,8640,"[\""Monitor\"", \""Laptop\""]",2988.84,{},106260,0,"""South America""" +2023-10-27,87246,6876,"[\""Tablet\""]",3029.26,"{\""promo\"": \""10%\""}",226252,0,"""North America""" +2024-07-30,87247,4439,"[\""Wireless Mouse\"", \""Laptop\""]",99.54,{},33164,0,"""Africa""" +2024-08-06,87248,3996,"[\""Keyboard\""]",1825.06,"{\"": \""10%\""}",162916,1,"""Africa""" +2024-12-17,87249,3002,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4155.72,{},101490,0,"""Africa""" +2023-10-30,87250,7399,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",955.16,{},217887,1,"""Asia""" +2023-08-21,87251,5066,"[\""Phone\""]",2897.85,"{\"": \""15%\""}",94291,0,"""Asia""" +2023-02-24,87252,9171,"[\""Keyboard\"", \""Headphones\""]",1489.27,"{\""loyalty\"": \""15%\""}",258725,1,"""Africa""" +2024-08-01,87253,6944,"[\""Keyboard\"", \""Charger\""]",2617.37,{},281445,0,"""Africa""" +2023-04-01,87254,4788,"[\""Charger\""]",370.4,{},146867,0,"""Asia""" +2023-07-16,87255,2440,"[\""Charger\""]",4275.47,"{\""seasonal\"": \""27%\""}",123691,0,"""Africa""" +2024-09-24,87256,7538,"[\""Wireless Mouse\""]",1168.51,{},51534,0,"""Europe""" +2024-12-27,87257,6886,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1141.65,{},25053,0,"""North America""" +2023-03-22,87258,6087,"[\""Monitor\""]",4933.31,"{\"": \""20%\""}",181383,0,"""South America""" +2024-12-24,87259,4946,"[\""Keyboard\""]",699.27,"{\""loyalty\"": \""14%\""}",58805,1,"""South America""" +2024-11-09,87260,957,"[\""Phone\"", \""Wireless Mouse\""]",1725.88,{},43511,0,"""Africa""" +2023-09-19,87261,3973,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1424.71,{},178293,1,"""Africa""" +2024-05-04,87262,2197,"[\""Phone\"", \""Headphones\""]",3121.11,"{\""loyalty\"": \""23%\""}",141158,1,"""North America""" +2023-10-09,87263,7601,"[\""Laptop\"", \""Phone\""]",353.24,"{\""loyalty\"": \""27%\""}",115398,1,"""South America""" +2024-05-10,87264,3376,"[\""Charger\"", \""Keyboard\""]",445.85,"{\""loyalty\"": \""24%\""}",274287,1,"""Europe""" +2023-05-05,87265,4823,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2107.24,"{\""seasonal\"": \""15%\""}",190815,1,"""North America""" +2024-01-30,87266,7531,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4137.87,"{\"": \""15%\""}",174571,0,"""Europe""" +2023-09-07,87267,6346,"[\""Keyboard\""]",3184.23,{},113003,1,"""Asia""" +2023-07-24,87268,3083,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2017.16,"{\""loyalty\"": \""15%\""}",245832,1,"""Africa""" +2024-11-18,87269,2067,"[\""Phone\"", \""Keyboard\""]",3033.46,"{\""loyalty\"": \""28%\""}",1703,1,"""Europe""" +2024-07-25,87270,8996,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2448.11,"{\"": \""30%\""}",51684,1,"""Africa""" +2023-10-05,87271,631,"[\""Wireless Mouse\""]",113.49,{},252742,1,"""Europe""" +2023-02-23,87272,1696,"[\""Tablet\"", \""Laptop\""]",1528.22,"{\"": \""24%\""}",115942,0,"""South America""" +2023-05-25,87273,758,"[\""Phone\"", \""Charger\""]",2354.52,{},263019,1,"""Europe""" +2024-02-29,87274,7096,"[\""Headphones\"", \""Phone\""]",1954.57,{},12296,1,"""Africa""" +2023-07-22,87275,926,"[\""Wireless Mouse\"", \""Phone\""]",4465.07,{},204257,0,"""North America""" +2024-08-26,87276,8502,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3304.04,{},241666,1,"""South America""" +2024-03-31,87277,3064,"[\""Headphones\"", \""Phone\""]",2479.59,{},140504,0,"""Asia""" +2024-11-21,87278,8328,"[\""Phone\""]",732.69,{},19708,1,"""Asia""" +2023-04-10,87279,2756,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4634.95,{},175526,1,"""Asia""" +2023-09-17,87280,9314,"[\""Phone\"", \""Headphones\""]",3582.54,{},225532,0,"""South America""" +2024-06-03,87281,3850,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2249.39,{},101171,1,"""Asia""" +2023-05-02,87282,2031,"[\""Keyboard\"", \""Headphones\""]",3605.14,"{\"": \""24%\""}",105081,0,"""South America""" +2023-01-23,87283,962,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3216.76,{},273292,0,"""Africa""" +2023-07-15,87284,2272,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1972.65,"{\""seasonal\"": \""16%\""}",256996,0,"""Asia""" +2023-10-15,87285,3002,"[\""Headphones\""]",400.24,"{\""loyalty\"": \""11%\""}",198638,1,"""Europe""" +2023-02-05,87286,1479,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2212.95,"{\""promo\"": \""11%\""}",142023,1,"""North America""" +2024-02-21,87287,5368,"[\""Tablet\""]",3166.18,{},111372,0,"""Europe""" +2023-04-16,87288,3402,"[\""Wireless Mouse\""]",1016.54,"{\""promo\"": \""5%\""}",5301,0,"""Europe""" +2023-01-09,87289,2174,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1092.54,"{\""loyalty\"": \""13%\""}",88390,1,"""Africa""" +2024-06-12,87290,5435,"[\""Headphones\""]",4516.96,"{\""seasonal\"": \""9%\""}",121754,1,"""Europe""" +2024-06-26,87291,308,"[\""Phone\""]",3217.78,"{\""loyalty\"": \""13%\""}",162657,1,"""Asia""" +2024-02-19,87292,2690,"[\""Phone\""]",3483.32,"{\""promo\"": \""29%\""}",10285,1,"""North America""" +2023-10-17,87293,6677,"[\""Headphones\"", \""Wireless Mouse\""]",2064.12,"{\""loyalty\"": \""9%\""}",59309,0,"""Africa""" +2023-09-15,87294,3609,"[\""Phone\""]",409.82,"{\""promo\"": \""12%\""}",34247,0,"""Africa""" +2023-11-10,87295,3517,"[\""Phone\""]",2775.9,{},34812,1,"""South America""" +2023-02-13,87296,3155,"[\""Phone\""]",2019.59,"{\""promo\"": \""20%\""}",178751,1,"""Europe""" +2024-03-29,87297,6112,"[\""Tablet\""]",459.16,"{\"": \""26%\""}",40820,0,"""Africa""" +2023-06-13,87298,8264,"[\""Charger\""]",4322.49,{},124189,1,"""South America""" +2024-04-26,87299,8490,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3473.23,{},233377,1,"""Europe""" +2023-06-09,87300,9834,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3233.4,{},76015,1,"""Asia""" +2023-12-14,87301,7720,"[\""Phone\""]",3946.41,{},66262,1,"""South America""" +2024-11-17,87302,6648,"[\""Monitor\""]",3940.72,"{\"": \""11%\""}",157827,0,"""Africa""" +2024-09-25,87303,4899,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3039.33,{},227698,0,"""Europe""" +2024-03-02,87304,2756,"[\""Keyboard\"", \""Wireless Mouse\""]",4234.91,{},253882,1,"""Africa""" +2024-04-16,87305,7832,"[\""Laptop\"", \""Wireless Mouse\""]",4236.66,"{\"": \""7%\""}",151029,1,"""Asia""" +2024-01-31,87306,3239,"[\""Monitor\""]",1673.34,"{\""promo\"": \""29%\""}",278703,0,"""North America""" +2024-05-26,87307,5192,"[\""Monitor\"", \""Keyboard\""]",2487.75,{},284047,0,"""Africa""" +2023-01-16,87308,400,"[\""Phone\"", \""Tablet\""]",1966.15,"{\"": \""23%\""}",6186,0,"""North America""" +2023-04-05,87309,2378,"[\""Tablet\""]",1169.23,{},234402,1,"""North America""" +2023-09-13,87310,888,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2582.31,"{\""seasonal\"": \""6%\""}",274228,0,"""Asia""" +2024-01-03,87311,3,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4406.14,"{\""seasonal\"": \""22%\""}",35724,0,"""Africa""" +2023-04-12,87312,3912,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",666.67,{},99057,0,"""Asia""" +2024-01-15,87313,5328,"[\""Headphones\""]",3185.19,{},265208,0,"""Asia""" +2024-09-07,87314,6990,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2967.0,{},32464,1,"""South America""" +2023-10-08,87315,8295,"[\""Wireless Mouse\"", \""Headphones\""]",2393.08,"{\""loyalty\"": \""19%\""}",75534,1,"""Europe""" +2023-12-26,87316,1006,"[\""Headphones\"", \""Laptop\""]",531.44,"{\""seasonal\"": \""11%\""}",74102,0,"""Asia""" +2023-12-23,87317,7155,"[\""Laptop\"", \""Headphones\""]",2883.54,"{\"": \""11%\""}",17951,0,"""South America""" +2023-12-12,87318,4376,"[\""Monitor\"", \""Tablet\""]",2455.21,"{\"": \""24%\""}",207839,1,"""Asia""" +2023-01-04,87319,5975,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",784.17,{},106900,1,"""South America""" +2024-04-13,87320,1690,"[\""Tablet\"", \""Wireless Mouse\""]",2802.43,{},52264,0,"""South America""" +2024-12-20,87321,1698,"[\""Monitor\"", \""Tablet\""]",466.93,{},174402,0,"""South America""" +2023-04-11,87322,5441,"[\""Monitor\""]",491.28,{},211646,0,"""Africa""" +2024-07-29,87323,589,"[\""Tablet\""]",4999.44,{},2186,1,"""Asia""" +2024-01-13,87324,8584,"[\""Phone\"", \""Charger\""]",4777.63,"{\""seasonal\"": \""17%\""}",231804,0,"""North America""" +2024-07-10,87325,8463,"[\""Wireless Mouse\""]",99.44,"{\"": \""23%\""}",288135,0,"""North America""" +2024-03-16,87326,1169,"[\""Keyboard\""]",4599.27,"{\""promo\"": \""9%\""}",59166,0,"""Asia""" +2024-09-12,87327,4199,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3797.44,"{\""promo\"": \""28%\""}",204268,0,"""Africa""" +2024-05-29,87328,6674,"[\""Keyboard\"", \""Phone\""]",1710.04,{},34346,0,"""Europe""" +2023-01-07,87329,2106,"[\""Wireless Mouse\"", \""Tablet\""]",2170.88,{},66738,1,"""Africa""" +2024-06-11,87330,4092,"[\""Headphones\""]",1251.24,"{\"": \""15%\""}",177812,0,"""Europe""" +2024-10-18,87331,6846,"[\""Phone\"", \""Headphones\""]",618.18,{},28866,0,"""North America""" +2024-11-05,87332,3838,"[\""Wireless Mouse\"", \""Headphones\""]",4653.71,"{\""loyalty\"": \""23%\""}",298994,1,"""Asia""" +2023-09-01,87333,6629,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",145.06,"{\""loyalty\"": \""30%\""}",134645,1,"""Africa""" +2024-02-18,87334,2143,"[\""Keyboard\""]",3580.0,{},87181,0,"""North America""" +2023-07-10,87335,5699,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",181.07,"{\""seasonal\"": \""8%\""}",177742,1,"""Asia""" +2024-02-14,87336,7808,"[\""Monitor\"", \""Phone\""]",2540.62,{},264946,1,"""Europe""" +2024-09-07,87337,3606,"[\""Keyboard\"", \""Wireless Mouse\""]",2089.12,"{\""promo\"": \""14%\""}",147238,0,"""North America""" +2024-01-30,87338,312,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4396.29,"{\""seasonal\"": \""28%\""}",4801,1,"""South America""" +2023-10-24,87339,3915,"[\""Keyboard\""]",1678.9,{},187304,1,"""Europe""" +2024-12-29,87340,612,"[\""Laptop\""]",2364.68,"{\""seasonal\"": \""12%\""}",292577,1,"""Asia""" +2024-12-29,87341,6278,"[\""Monitor\"", \""Charger\""]",1673.42,"{\"": \""20%\""}",112181,1,"""Asia""" +2023-05-19,87342,7567,"[\""Phone\""]",2504.86,"{\""promo\"": \""29%\""}",88240,1,"""South America""" +2023-09-13,87343,5721,"[\""Wireless Mouse\""]",1957.23,"{\""seasonal\"": \""16%\""}",220593,0,"""South America""" +2023-11-23,87344,2960,"[\""Wireless Mouse\"", \""Monitor\""]",3942.33,"{\""promo\"": \""14%\""}",241949,0,"""North America""" +2024-07-10,87345,9519,"[\""Monitor\""]",3402.71,"{\""promo\"": \""22%\""}",156279,1,"""Europe""" +2024-09-27,87346,711,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",542.41,{},201901,1,"""Europe""" +2024-02-09,87347,6613,"[\""Tablet\""]",3141.81,{},137204,1,"""North America""" +2023-05-18,87348,9046,"[\""Wireless Mouse\"", \""Keyboard\""]",3369.62,"{\"": \""28%\""}",49122,0,"""North America""" +2023-10-27,87349,1887,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4655.41,{},175692,1,"""North America""" +2024-02-09,87350,4475,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",608.48,"{\""promo\"": \""25%\""}",268516,0,"""Asia""" +2024-01-05,87351,8253,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1674.53,{},104024,1,"""Europe""" +2024-10-07,87352,4436,"[\""Phone\""]",4240.73,{},58533,1,"""North America""" +2024-11-26,87353,4841,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3213.31,{},35450,1,"""Asia""" +2023-05-14,87354,1103,"[\""Keyboard\""]",3018.87,{},166377,1,"""North America""" +2023-12-11,87355,9015,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",2859.72,{},226506,0,"""Asia""" +2024-01-04,87356,9583,"[\""Monitor\""]",2773.76,{},283620,1,"""South America""" +2023-11-17,87357,5956,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2305.4,{},243207,1,"""Asia""" +2023-09-08,87358,4199,"[\""Phone\""]",2914.93,"{\""promo\"": \""20%\""}",127255,1,"""Africa""" +2024-02-19,87359,4547,"[\""Laptop\""]",3387.46,"{\"": \""30%\""}",53451,1,"""North America""" +2023-02-07,87360,3479,"[\""Laptop\""]",1491.37,"{\""loyalty\"": \""6%\""}",36670,1,"""Africa""" +2024-05-20,87361,7300,"[\""Charger\"", \""Keyboard\""]",3520.28,{},217052,1,"""Africa""" +2023-07-26,87362,7851,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4645.03,"{\""promo\"": \""27%\""}",19170,1,"""Africa""" +2024-01-19,87363,1941,"[\""Charger\""]",4483.1,{},243348,0,"""North America""" +2023-05-18,87364,764,"[\""Keyboard\"", \""Charger\""]",3855.18,{},259930,0,"""Asia""" +2024-05-11,87365,2056,"[\""Charger\""]",2840.75,"{\"": \""12%\""}",189075,1,"""South America""" +2023-03-08,87366,7260,"[\""Wireless Mouse\"", \""Charger\""]",3282.96,{},88932,1,"""South America""" +2023-08-12,87367,5593,"[\""Monitor\"", \""Wireless Mouse\""]",4093.43,"{\""loyalty\"": \""18%\""}",252806,1,"""Africa""" +2023-08-31,87368,8254,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3177.98,{},257037,0,"""South America""" +2024-04-09,87369,8021,"[\""Charger\""]",3711.23,"{\""promo\"": \""18%\""}",229138,1,"""South America""" +2024-09-19,87370,6413,"[\""Wireless Mouse\""]",4941.41,{},26158,0,"""Africa""" +2024-12-09,87371,3468,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3952.7,"{\""promo\"": \""27%\""}",170702,1,"""Europe""" +2024-11-11,87372,7744,"[\""Phone\""]",3901.13,"{\""promo\"": \""21%\""}",52963,0,"""North America""" +2023-09-26,87373,1411,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2815.44,"{\""loyalty\"": \""7%\""}",240046,1,"""Africa""" +2023-06-19,87374,6723,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",207.21,{},209725,1,"""Asia""" +2023-07-14,87375,1318,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3391.1,"{\""seasonal\"": \""14%\""}",133191,1,"""South America""" +2024-01-08,87376,5642,"[\""Headphones\""]",3464.62,"{\""seasonal\"": \""8%\""}",175911,1,"""Africa""" +2024-09-27,87377,9590,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",4641.45,{},221841,0,"""Europe""" +2023-09-06,87378,674,"[\""Charger\"", \""Keyboard\""]",263.26,"{\""promo\"": \""8%\""}",155743,0,"""Europe""" +2024-03-20,87379,5437,"[\""Monitor\""]",2549.43,"{\""loyalty\"": \""30%\""}",271761,1,"""Asia""" +2024-11-01,87380,6814,"[\""Wireless Mouse\"", \""Laptop\""]",1722.36,{},77530,0,"""Africa""" +2023-12-26,87381,2295,"[\""Tablet\"", \""Monitor\""]",50.44,{},129280,1,"""South America""" +2023-08-30,87382,3047,"[\""Headphones\"", \""Wireless Mouse\""]",1968.5,"{\"": \""16%\""}",174731,1,"""Europe""" +2024-05-31,87383,2471,"[\""Monitor\"", \""Phone\""]",189.79,"{\"": \""8%\""}",61983,0,"""Europe""" +2024-08-23,87384,5940,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4987.89,"{\"": \""21%\""}",183641,0,"""Asia""" +2024-07-28,87385,7402,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4802.06,{},200499,0,"""South America""" +2023-07-23,87386,6839,"[\""Phone\"", \""Laptop\""]",2111.4,{},79606,1,"""South America""" +2024-07-10,87387,3528,"[\""Monitor\""]",3940.64,"{\""loyalty\"": \""9%\""}",275992,0,"""South America""" +2024-10-12,87388,1094,"[\""Monitor\"", \""Wireless Mouse\""]",1299.52,{},197846,1,"""North America""" +2023-07-19,87389,2051,"[\""Laptop\"", \""Keyboard\""]",3918.41,{},53899,1,"""North America""" +2024-03-13,87390,8295,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4932.22,"{\""loyalty\"": \""28%\""}",104556,0,"""Europe""" +2024-01-23,87391,9448,"[\""Laptop\""]",3914.28,{},112863,0,"""Asia""" +2024-09-25,87392,1049,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",2660.38,"{\"": \""30%\""}",25881,0,"""Europe""" +2023-01-03,87393,930,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4814.63,"{\""seasonal\"": \""13%\""}",270472,0,"""North America""" +2023-05-16,87394,5821,"[\""Headphones\""]",4010.01,{},279749,0,"""Asia""" +2023-02-10,87395,7473,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",64.83,"{\""seasonal\"": \""8%\""}",24795,0,"""South America""" +2024-03-11,87396,2209,"[\""Headphones\""]",4533.81,{},172616,0,"""Asia""" +2024-12-23,87397,186,"[\""Phone\"", \""Monitor\""]",4520.14,{},13129,0,"""South America""" +2023-12-03,87398,3420,"[\""Phone\"", \""Tablet\""]",4767.15,{},231474,1,"""North America""" +2023-07-06,87399,3630,"[\""Keyboard\"", \""Phone\""]",208.36,{},25212,1,"""South America""" +2023-05-17,87400,6406,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2781.84,{},230195,1,"""Europe""" +2023-05-11,87401,3415,"[\""Wireless Mouse\""]",4014.08,{},287002,1,"""Asia""" +2024-02-04,87402,8247,"[\""Laptop\""]",4702.6,{},165370,1,"""Europe""" +2024-05-23,87403,3430,"[\""Tablet\""]",2873.36,"{\"": \""27%\""}",182072,1,"""Asia""" +2024-07-03,87404,8763,"[\""Monitor\""]",3601.48,{},272255,0,"""Africa""" +2023-04-06,87405,3929,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",700.89,"{\""seasonal\"": \""8%\""}",281848,0,"""Asia""" +2024-10-05,87406,8637,"[\""Tablet\""]",2973.88,"{\"": \""5%\""}",269342,1,"""Asia""" +2024-05-09,87407,1204,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4467.59,"{\"": \""14%\""}",141182,0,"""South America""" +2024-03-03,87408,617,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2348.41,"{\""seasonal\"": \""30%\""}",163535,0,"""North America""" +2024-07-11,87409,7893,"[\""Wireless Mouse\""]",1742.64,"{\""loyalty\"": \""15%\""}",85352,1,"""North America""" +2023-08-01,87410,895,"[\""Charger\""]",4586.87,{},249497,1,"""Europe""" +2024-10-08,87411,2114,"[\""Charger\"", \""Monitor\"", \""Phone\""]",740.2,"{\""promo\"": \""18%\""}",25208,0,"""South America""" +2024-10-30,87412,1932,"[\""Phone\"", \""Keyboard\""]",4617.14,"{\""seasonal\"": \""21%\""}",230643,0,"""Europe""" +2023-02-14,87413,2012,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2698.78,"{\"": \""19%\""}",144860,0,"""South America""" +2023-06-09,87414,5755,"[\""Laptop\""]",2151.05,"{\""seasonal\"": \""25%\""}",230396,0,"""South America""" +2023-03-26,87415,9664,"[\""Keyboard\"", \""Tablet\""]",3017.16,{},23953,0,"""Africa""" +2024-05-15,87416,1415,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1992.26,"{\""seasonal\"": \""30%\""}",25834,0,"""Europe""" +2024-07-22,87417,5264,"[\""Charger\""]",1595.77,"{\""promo\"": \""13%\""}",115727,1,"""South America""" +2024-05-17,87418,3503,"[\""Laptop\"", \""Charger\""]",1521.23,{},200648,1,"""North America""" +2023-04-19,87419,116,"[\""Phone\"", \""Keyboard\""]",4134.03,"{\""promo\"": \""16%\""}",193349,1,"""Europe""" +2024-10-19,87420,7515,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4929.54,{},62627,0,"""Asia""" +2023-08-14,87421,3772,"[\""Charger\""]",4912.21,{},125044,1,"""Europe""" +2024-09-21,87422,4815,"[\""Tablet\"", \""Headphones\""]",1870.53,"{\""loyalty\"": \""7%\""}",274029,0,"""Africa""" +2024-06-13,87423,9955,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1628.86,"{\""promo\"": \""10%\""}",23191,0,"""Asia""" +2024-12-09,87424,6788,"[\""Charger\""]",674.74,{},88916,0,"""Asia""" +2023-04-04,87425,3077,"[\""Keyboard\"", \""Tablet\""]",4864.88,{},256764,0,"""Africa""" +2024-10-12,87426,2922,"[\""Wireless Mouse\""]",4060.06,"{\"": \""6%\""}",114019,1,"""South America""" +2024-03-21,87427,6963,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3863.87,{},170061,1,"""Africa""" +2023-01-19,87428,5615,"[\""Wireless Mouse\""]",215.23,{},8629,1,"""South America""" +2023-10-23,87429,4776,"[\""Tablet\"", \""Headphones\""]",4842.9,"{\""seasonal\"": \""17%\""}",195786,1,"""Asia""" +2024-12-25,87430,5307,"[\""Headphones\""]",1479.62,{},265877,1,"""Asia""" +2024-01-29,87431,4101,"[\""Wireless Mouse\""]",2969.3,{},180391,1,"""Asia""" +2023-08-23,87432,2408,"[\""Wireless Mouse\"", \""Phone\""]",2863.27,"{\"": \""18%\""}",81317,0,"""Africa""" +2024-06-09,87433,1003,"[\""Keyboard\"", \""Charger\""]",4984.06,{},213165,0,"""South America""" +2024-04-16,87434,6857,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3238.85,{},285718,0,"""North America""" +2024-11-12,87435,3256,"[\""Keyboard\""]",2422.43,"{\""seasonal\"": \""16%\""}",29038,0,"""Asia""" +2023-06-26,87436,28,"[\""Wireless Mouse\"", \""Phone\""]",3478.16,"{\""loyalty\"": \""5%\""}",101701,1,"""North America""" +2024-09-16,87437,6306,"[\""Headphones\"", \""Keyboard\""]",2298.66,"{\""loyalty\"": \""29%\""}",164899,0,"""Europe""" +2024-10-12,87438,3849,"[\""Monitor\""]",4924.27,"{\""promo\"": \""21%\""}",185559,0,"""North America""" +2024-03-06,87439,1738,"[\""Monitor\"", \""Headphones\""]",4104.67,{},6460,1,"""Asia""" +2023-06-16,87440,4894,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3980.01,"{\"": \""9%\""}",84952,0,"""Europe""" +2024-11-26,87441,1408,"[\""Laptop\"", \""Keyboard\""]",3503.92,"{\"": \""18%\""}",247885,1,"""South America""" +2023-10-20,87442,1273,"[\""Headphones\"", \""Charger\""]",4983.91,{},39227,1,"""Africa""" +2024-03-26,87443,6962,"[\""Keyboard\""]",3496.48,{},255083,1,"""Europe""" +2024-01-18,87444,9263,"[\""Monitor\""]",1872.09,{},249354,1,"""South America""" +2024-12-19,87445,6127,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2830.49,"{\"": \""8%\""}",133087,0,"""North America""" +2023-09-05,87446,4198,"[\""Monitor\"", \""Laptop\""]",627.23,"{\""loyalty\"": \""30%\""}",156907,0,"""Africa""" +2024-04-01,87447,3793,"[\""Laptop\""]",1780.42,"{\""loyalty\"": \""20%\""}",180413,0,"""North America""" +2024-01-16,87448,5845,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",2265.4,"{\""promo\"": \""22%\""}",56412,0,"""Asia""" +2023-09-01,87449,4560,"[\""Monitor\""]",4264.93,"{\""seasonal\"": \""28%\""}",199815,1,"""South America""" +2023-04-29,87450,1368,"[\""Phone\"", \""Charger\""]",2873.51,{},133128,0,"""Europe""" +2024-04-08,87451,6661,"[\""Charger\""]",3074.68,"{\""promo\"": \""5%\""}",32913,0,"""North America""" +2023-07-07,87452,6670,"[\""Headphones\"", \""Wireless Mouse\""]",1572.39,{},89416,0,"""Europe""" +2023-08-09,87453,9423,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4300.45,"{\""loyalty\"": \""26%\""}",93587,1,"""Africa""" +2024-02-07,87454,7507,"[\""Phone\"", \""Monitor\""]",3067.85,{},265392,0,"""Asia""" +2023-06-17,87455,657,"[\""Wireless Mouse\""]",2145.39,{},105673,1,"""Asia""" +2023-02-21,87456,1643,"[\""Phone\""]",954.89,{},238608,0,"""Africa""" +2023-04-03,87457,1862,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",195.37,"{\""seasonal\"": \""24%\""}",84700,1,"""Africa""" +2024-02-24,87458,7803,"[\""Tablet\""]",3033.51,"{\""seasonal\"": \""23%\""}",133015,1,"""Africa""" +2024-08-25,87459,8096,"[\""Headphones\"", \""Charger\""]",532.73,{},217307,0,"""North America""" +2024-12-05,87460,8622,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4953.92,{},234797,1,"""Asia""" +2023-06-02,87461,1934,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",326.84,"{\""promo\"": \""17%\""}",272722,1,"""Africa""" +2024-02-25,87462,3687,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3284.86,{},249868,0,"""South America""" +2024-08-25,87463,3929,"[\""Laptop\""]",3246.49,"{\""loyalty\"": \""5%\""}",254904,0,"""Asia""" +2023-12-08,87464,2896,"[\""Charger\"", \""Monitor\""]",422.55,"{\""loyalty\"": \""21%\""}",48198,0,"""Europe""" +2023-06-18,87465,3624,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",2503.42,"{\""loyalty\"": \""29%\""}",185312,0,"""Europe""" +2023-12-22,87466,7489,"[\""Headphones\""]",1084.17,{},214882,1,"""Africa""" +2024-05-30,87467,5193,"[\""Monitor\""]",3605.73,"{\""promo\"": \""27%\""}",7976,0,"""Africa""" +2024-03-29,87468,9276,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",361.83,{},19794,1,"""Asia""" +2024-11-22,87469,4631,"[\""Wireless Mouse\"", \""Monitor\""]",1430.74,"{\"": \""7%\""}",19847,1,"""Europe""" +2024-09-08,87470,7652,"[\""Wireless Mouse\""]",3602.57,"{\""seasonal\"": \""17%\""}",169331,0,"""Europe""" +2024-10-13,87471,9892,"[\""Keyboard\"", \""Wireless Mouse\""]",956.69,{},121554,0,"""Africa""" +2024-03-05,87472,3380,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4167.25,"{\""loyalty\"": \""18%\""}",215226,1,"""Asia""" +2024-09-19,87473,2713,"[\""Monitor\""]",3425.32,{},52215,0,"""Europe""" +2024-01-18,87474,2820,"[\""Tablet\""]",1244.93,"{\""loyalty\"": \""6%\""}",36152,0,"""North America""" +2024-10-26,87475,4260,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3084.58,{},1245,0,"""Africa""" +2023-03-07,87476,347,"[\""Charger\""]",4882.87,{},248033,0,"""Africa""" +2024-12-26,87477,4380,"[\""Laptop\""]",3583.27,{},258008,1,"""South America""" +2024-01-27,87478,5584,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",336.72,"{\""promo\"": \""26%\""}",211991,1,"""South America""" +2024-01-12,87479,662,"[\""Phone\""]",3079.53,{},205674,0,"""Europe""" +2024-08-31,87480,7546,"[\""Wireless Mouse\"", \""Tablet\""]",2978.35,"{\"": \""7%\""}",120709,0,"""Asia""" +2023-10-11,87481,1377,"[\""Phone\""]",3548.84,{},78293,1,"""Asia""" +2023-09-04,87482,3710,"[\""Charger\"", \""Phone\""]",3061.7,"{\""seasonal\"": \""5%\""}",241472,1,"""Europe""" +2023-07-08,87483,1783,"[\""Tablet\""]",2094.1,{},175230,0,"""Africa""" +2023-04-07,87484,3183,"[\""Tablet\""]",4279.11,"{\""seasonal\"": \""20%\""}",177603,0,"""Asia""" +2023-02-22,87485,422,"[\""Keyboard\"", \""Headphones\""]",1229.88,"{\""promo\"": \""8%\""}",160101,0,"""Africa""" +2024-09-20,87486,726,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2667.98,{},5410,0,"""Asia""" +2024-08-08,87487,3104,"[\""Charger\"", \""Keyboard\""]",2182.99,"{\"": \""14%\""}",181606,0,"""North America""" +2023-09-17,87488,5813,"[\""Headphones\"", \""Keyboard\""]",798.12,"{\"": \""5%\""}",158942,0,"""North America""" +2024-03-09,87489,8729,"[\""Phone\"", \""Charger\"", \""Laptop\""]",112.53,{},65308,1,"""South America""" +2023-10-26,87490,9394,"[\""Phone\"", \""Tablet\""]",344.15,"{\""promo\"": \""14%\""}",47240,0,"""Europe""" +2023-12-16,87491,6824,"[\""Monitor\"", \""Laptop\""]",4498.36,"{\""promo\"": \""16%\""}",207958,1,"""Europe""" +2023-04-21,87492,2168,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1269.67,{},128659,0,"""Africa""" +2023-03-28,87493,175,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2611.03,"{\"": \""11%\""}",32556,1,"""Europe""" +2024-05-14,87494,2478,"[\""Monitor\""]",1069.33,{},262963,1,"""South America""" +2024-07-21,87495,918,"[\""Wireless Mouse\""]",329.06,"{\"": \""7%\""}",240570,0,"""Africa""" +2024-06-30,87496,4545,"[\""Monitor\""]",4901.76,"{\"": \""22%\""}",240450,1,"""North America""" +2024-06-26,87497,3766,"[\""Wireless Mouse\""]",3388.31,{},242113,1,"""South America""" +2023-07-02,87498,7942,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1084.29,{},177716,0,"""North America""" +2024-12-13,87499,7139,"[\""Headphones\""]",873.57,{},137148,1,"""North America""" +2023-03-08,87500,9472,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3630.55,{},176356,1,"""Europe""" +2023-09-06,87501,2247,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",2542.34,{},263814,0,"""Asia""" +2024-11-12,87502,3175,"[\""Keyboard\"", \""Headphones\""]",1917.15,"{\"": \""10%\""}",90496,0,"""Africa""" +2024-11-14,87503,6032,"[\""Laptop\""]",4005.94,"{\""promo\"": \""11%\""}",21032,0,"""Asia""" +2023-10-06,87504,7339,"[\""Charger\""]",2811.51,"{\""promo\"": \""18%\""}",37927,0,"""North America""" +2023-04-01,87505,4184,"[\""Headphones\""]",1051.88,{},166559,0,"""South America""" +2024-11-05,87506,1965,"[\""Phone\""]",277.34,{},222235,1,"""Asia""" +2023-07-11,87507,4585,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4356.43,{},201435,1,"""Africa""" +2024-12-15,87508,3201,"[\""Wireless Mouse\"", \""Tablet\""]",405.64,"{\"": \""12%\""}",136561,1,"""South America""" +2024-11-09,87509,7592,"[\""Keyboard\""]",661.52,{},62975,1,"""North America""" +2023-01-06,87510,5797,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2454.62,{},259718,0,"""North America""" +2023-07-04,87511,8757,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1713.81,"{\""promo\"": \""13%\""}",153678,0,"""Asia""" +2023-03-20,87512,3220,"[\""Charger\""]",2382.34,"{\"": \""17%\""}",206844,0,"""Asia""" +2023-01-06,87513,2366,"[\""Headphones\""]",2312.5,"{\""seasonal\"": \""15%\""}",10374,1,"""South America""" +2024-07-30,87514,1337,"[\""Headphones\""]",1106.03,{},258375,1,"""Africa""" +2023-04-15,87515,8050,"[\""Keyboard\""]",4253.37,{},96265,0,"""Europe""" +2023-02-05,87516,680,"[\""Headphones\"", \""Wireless Mouse\""]",4203.89,{},96329,1,"""South America""" +2024-04-14,87517,5888,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2870.76,{},53470,1,"""South America""" +2024-11-01,87518,1754,"[\""Keyboard\"", \""Charger\""]",334.13,{},103251,1,"""North America""" +2023-06-27,87519,6789,"[\""Monitor\""]",1885.18,{},68978,1,"""Asia""" +2024-10-31,87520,6023,"[\""Phone\"", \""Headphones\"", \""Charger\""]",728.04,"{\""promo\"": \""11%\""}",129982,0,"""Africa""" +2024-09-20,87521,5634,"[\""Headphones\""]",931.81,{},80717,1,"""North America""" +2023-08-26,87522,4224,"[\""Keyboard\"", \""Tablet\""]",1435.58,{},229983,0,"""South America""" +2024-01-31,87523,6121,"[\""Charger\""]",3106.1,"{\"": \""26%\""}",244941,0,"""North America""" +2024-05-29,87524,4774,"[\""Monitor\"", \""Keyboard\""]",3053.97,{},212181,0,"""North America""" +2023-08-04,87525,5628,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",507.52,{},121295,1,"""Asia""" +2024-09-23,87526,3100,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1847.22,"{\"": \""20%\""}",259833,0,"""Europe""" +2023-08-05,87527,3594,"[\""Monitor\"", \""Headphones\""]",2807.07,"{\""seasonal\"": \""24%\""}",58160,1,"""South America""" +2023-08-17,87528,9825,"[\""Monitor\"", \""Laptop\""]",1960.36,{},291876,0,"""Africa""" +2023-06-01,87529,4322,"[\""Charger\""]",2476.29,{},298483,0,"""Africa""" +2023-05-31,87530,1951,"[\""Tablet\""]",3765.34,{},102103,1,"""Europe""" +2024-01-11,87531,9037,"[\""Wireless Mouse\"", \""Monitor\""]",885.92,"{\""promo\"": \""17%\""}",80230,0,"""Europe""" +2023-08-10,87532,5421,"[\""Monitor\""]",480.36,"{\""promo\"": \""7%\""}",154879,0,"""South America""" +2024-10-18,87533,3835,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1424.16,{},186471,1,"""Asia""" +2024-05-27,87534,7675,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",4106.09,"{\""promo\"": \""24%\""}",218484,1,"""North America""" +2024-08-20,87535,9821,"[\""Wireless Mouse\""]",2238.24,{},262365,1,"""Africa""" +2023-05-29,87536,2814,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",1681.01,{},170446,0,"""Europe""" +2023-05-17,87537,4159,"[\""Laptop\""]",3682.62,{},179035,0,"""South America""" +2023-11-10,87538,2584,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3392.65,"{\""seasonal\"": \""11%\""}",59738,0,"""Asia""" +2024-01-05,87539,5053,"[\""Charger\"", \""Keyboard\""]",3448.65,{},242102,0,"""North America""" +2024-10-16,87540,967,"[\""Wireless Mouse\"", \""Phone\""]",4524.98,{},159317,1,"""South America""" +2023-09-25,87541,6547,"[\""Monitor\"", \""Tablet\""]",2167.68,{},129898,0,"""Africa""" +2023-06-01,87542,465,"[\""Wireless Mouse\"", \""Monitor\""]",2816.89,"{\""loyalty\"": \""21%\""}",162190,0,"""Asia""" +2024-09-05,87543,3429,"[\""Monitor\""]",106.18,{},139416,1,"""Europe""" +2024-09-14,87544,2959,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1394.38,"{\""seasonal\"": \""13%\""}",78869,1,"""Africa""" +2023-06-20,87545,4900,"[\""Keyboard\""]",2023.14,{},147940,1,"""South America""" +2023-09-05,87546,8159,"[\""Monitor\"", \""Phone\"", \""Charger\""]",1850.78,{},27701,1,"""Africa""" +2024-12-04,87547,7020,"[\""Tablet\"", \""Wireless Mouse\""]",1578.24,{},171249,1,"""Asia""" +2023-10-11,87548,5772,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3160.0,"{\"": \""26%\""}",75150,0,"""Europe""" +2023-08-27,87549,2401,"[\""Laptop\"", \""Monitor\""]",4446.22,{},156152,0,"""Africa""" +2024-10-06,87550,3229,"[\""Charger\""]",323.73,{},180740,1,"""Europe""" +2023-06-16,87551,1043,"[\""Keyboard\"", \""Headphones\""]",3856.11,"{\""promo\"": \""24%\""}",193144,0,"""Africa""" +2023-04-04,87552,1244,"[\""Charger\"", \""Phone\""]",3162.63,{},178823,0,"""Africa""" +2023-03-21,87553,2602,"[\""Monitor\"", \""Tablet\""]",3326.07,{},189580,1,"""Europe""" +2023-11-22,87554,8068,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1396.18,{},128834,1,"""Asia""" +2024-07-18,87555,5626,"[\""Laptop\""]",2727.43,"{\"": \""26%\""}",173167,1,"""Asia""" +2023-02-18,87556,9822,"[\""Charger\"", \""Tablet\""]",979.03,{},152232,1,"""Europe""" +2024-06-08,87557,9184,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1728.51,"{\""promo\"": \""22%\""}",180566,1,"""Asia""" +2024-10-19,87558,4627,"[\""Phone\"", \""Tablet\""]",2532.18,{},104693,0,"""Asia""" +2023-09-17,87559,2835,"[\""Phone\""]",4818.55,{},153992,0,"""Europe""" +2023-08-09,87560,6757,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3080.55,{},225706,1,"""Europe""" +2023-08-13,87561,3715,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2779.83,{},135397,0,"""Africa""" +2023-03-20,87562,541,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1259.67,"{\"": \""16%\""}",32464,0,"""Africa""" +2023-11-26,87563,7818,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3215.81,{},72864,1,"""North America""" +2024-08-12,87564,336,"[\""Tablet\"", \""Phone\""]",955.91,"{\""promo\"": \""9%\""}",91355,1,"""South America""" +2023-01-05,87565,6057,"[\""Headphones\""]",4600.31,"{\""seasonal\"": \""29%\""}",240313,1,"""Africa""" +2023-12-15,87566,2146,"[\""Headphones\""]",971.94,{},47173,1,"""Asia""" +2023-11-12,87567,2066,"[\""Phone\"", \""Monitor\""]",3616.83,"{\""loyalty\"": \""30%\""}",196485,1,"""South America""" +2023-03-08,87568,6698,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",280.93,{},31817,1,"""Asia""" +2023-03-19,87569,9949,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2465.59,{},171080,0,"""South America""" +2023-08-03,87570,1050,"[\""Headphones\"", \""Laptop\""]",3906.71,"{\""promo\"": \""12%\""}",148859,1,"""Asia""" +2023-04-14,87571,9157,"[\""Keyboard\"", \""Tablet\""]",520.34,{},281560,0,"""Africa""" +2024-11-23,87572,150,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4467.24,"{\"": \""7%\""}",159355,0,"""Europe""" +2024-10-30,87573,3841,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4798.03,"{\""loyalty\"": \""29%\""}",158756,0,"""North America""" +2024-07-19,87574,4496,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3150.89,{},166596,0,"""Africa""" +2023-05-11,87575,7577,"[\""Monitor\""]",4911.12,"{\"": \""26%\""}",206259,0,"""Europe""" +2023-10-09,87576,4091,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2083.74,"{\""promo\"": \""30%\""}",167838,1,"""Africa""" +2024-04-25,87577,7471,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",3667.18,{},6569,1,"""North America""" +2024-12-08,87578,9663,"[\""Charger\""]",1815.42,"{\""seasonal\"": \""12%\""}",201494,1,"""Europe""" +2024-09-02,87579,821,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4132.31,{},292383,0,"""South America""" +2024-02-01,87580,1981,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",410.97,{},186256,1,"""North America""" +2024-06-04,87581,5327,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2819.06,"{\""loyalty\"": \""13%\""}",62861,0,"""North America""" +2023-07-03,87582,7173,"[\""Phone\"", \""Wireless Mouse\""]",2764.95,"{\""seasonal\"": \""26%\""}",277002,1,"""North America""" +2023-09-23,87583,2744,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1114.04,{},234365,0,"""Africa""" +2024-08-22,87584,4484,"[\""Wireless Mouse\""]",3852.96,"{\""seasonal\"": \""27%\""}",116357,0,"""South America""" +2023-11-04,87585,8147,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4533.65,{},54858,1,"""Europe""" +2023-03-15,87586,4862,"[\""Phone\"", \""Monitor\""]",4453.49,"{\""seasonal\"": \""30%\""}",176033,1,"""Europe""" +2023-07-14,87587,9213,"[\""Wireless Mouse\"", \""Charger\""]",4469.65,{},43853,0,"""Asia""" +2023-10-26,87588,5896,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",491.96,{},219093,1,"""Asia""" +2023-07-13,87589,5206,"[\""Keyboard\"", \""Phone\""]",4042.29,{},117070,0,"""North America""" +2023-12-21,87590,4960,"[\""Laptop\""]",4754.86,{},150434,1,"""North America""" +2023-07-16,87591,8791,"[\""Laptop\""]",2577.87,"{\""promo\"": \""18%\""}",117318,1,"""South America""" +2023-12-04,87592,6100,"[\""Laptop\"", \""Wireless Mouse\""]",1642.41,{},7010,0,"""Asia""" +2023-07-21,87593,1175,"[\""Keyboard\""]",2947.98,{},109678,1,"""Europe""" +2024-07-06,87594,8162,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4701.76,{},243142,1,"""Europe""" +2024-06-13,87595,8336,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1048.91,{},172672,1,"""Africa""" +2023-06-17,87596,8840,"[\""Headphones\""]",2929.14,"{\""seasonal\"": \""15%\""}",84382,0,"""North America""" +2024-07-27,87597,8441,"[\""Laptop\"", \""Keyboard\""]",3645.59,{},267904,1,"""Europe""" +2023-08-27,87598,4351,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1174.63,{},198770,0,"""North America""" +2023-10-06,87599,2189,"[\""Monitor\"", \""Wireless Mouse\""]",4190.79,"{\""loyalty\"": \""21%\""}",70313,1,"""Europe""" +2023-06-26,87600,1058,"[\""Headphones\""]",4538.69,"{\"": \""11%\""}",221163,0,"""North America""" +2023-08-09,87601,1030,"[\""Monitor\"", \""Headphones\""]",321.13,"{\"": \""18%\""}",296243,0,"""Europe""" +2024-01-12,87602,3466,"[\""Keyboard\"", \""Monitor\""]",1090.77,"{\"": \""6%\""}",126688,0,"""South America""" +2024-06-12,87603,3210,"[\""Keyboard\"", \""Laptop\""]",1597.94,"{\"": \""14%\""}",148424,0,"""South America""" +2023-05-21,87604,3294,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4472.76,"{\"": \""17%\""}",260415,0,"""South America""" +2024-03-07,87605,9232,"[\""Headphones\"", \""Charger\""]",713.77,{},109784,1,"""Asia""" +2023-06-18,87606,8224,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4078.43,{},30425,0,"""South America""" +2023-05-12,87607,6592,"[\""Headphones\""]",4426.68,{},90399,0,"""Europe""" +2023-08-17,87608,4829,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1892.03,{},108955,0,"""Europe""" +2023-04-13,87609,3557,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3866.43,{},217799,0,"""Africa""" +2024-04-10,87610,404,"[\""Phone\""]",1583.22,"{\""promo\"": \""14%\""}",297317,1,"""South America""" +2023-12-11,87611,909,"[\""Laptop\""]",3602.84,"{\""seasonal\"": \""28%\""}",242180,0,"""South America""" +2024-08-21,87612,7751,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",677.94,"{\""loyalty\"": \""9%\""}",2880,1,"""North America""" +2023-07-13,87613,6298,"[\""Tablet\"", \""Wireless Mouse\""]",1636.49,{},79566,1,"""South America""" +2024-10-28,87614,1588,"[\""Charger\"", \""Monitor\""]",1971.91,{},30134,0,"""Africa""" +2023-03-01,87615,8463,"[\""Tablet\"", \""Phone\""]",2749.09,{},260361,1,"""Asia""" +2023-02-22,87616,7101,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",788.07,"{\""promo\"": \""6%\""}",14072,0,"""Europe""" +2024-06-02,87617,9151,"[\""Keyboard\"", \""Monitor\""]",4480.76,{},214803,0,"""South America""" +2024-04-27,87618,9171,"[\""Headphones\"", \""Charger\""]",4692.53,{},289562,0,"""Africa""" +2023-01-21,87619,1361,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",2322.86,"{\""promo\"": \""29%\""}",167058,0,"""Africa""" +2024-01-07,87620,1291,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",1458.25,{},95668,0,"""South America""" +2024-03-07,87621,8478,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2740.31,{},217262,1,"""South America""" +2024-12-25,87622,5863,"[\""Keyboard\""]",4387.21,"{\""promo\"": \""22%\""}",37587,1,"""North America""" +2023-06-30,87623,3003,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2895.75,"{\""promo\"": \""7%\""}",165358,0,"""Europe""" +2023-07-15,87624,6811,"[\""Laptop\"", \""Keyboard\""]",2409.58,"{\""seasonal\"": \""30%\""}",91168,1,"""Africa""" +2023-10-08,87625,3155,"[\""Headphones\""]",4485.9,"{\""loyalty\"": \""21%\""}",38164,0,"""North America""" +2023-09-02,87626,2763,"[\""Headphones\"", \""Tablet\""]",503.56,"{\"": \""17%\""}",133807,0,"""Africa""" +2023-01-07,87627,2077,"[\""Monitor\"", \""Tablet\""]",699.61,{},161662,1,"""South America""" +2023-03-15,87628,8778,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3453.6,"{\"": \""13%\""}",12519,1,"""Africa""" +2023-01-08,87629,9127,"[\""Headphones\""]",2192.58,{},145867,0,"""Asia""" +2024-09-09,87630,5881,"[\""Laptop\"", \""Keyboard\""]",1886.78,{},182746,0,"""South America""" +2023-12-16,87631,6015,"[\""Charger\"", \""Laptop\""]",2135.75,{},120949,1,"""South America""" +2024-01-30,87632,5557,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",382.08,"{\""loyalty\"": \""18%\""}",127152,1,"""Africa""" +2024-12-18,87633,1955,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4475.35,{},155475,0,"""Europe""" +2024-02-19,87634,7937,"[\""Keyboard\""]",3509.07,{},7523,1,"""Africa""" +2024-04-30,87635,3427,"[\""Phone\"", \""Keyboard\""]",2331.76,"{\""loyalty\"": \""14%\""}",214204,0,"""Europe""" +2024-10-22,87636,8325,"[\""Wireless Mouse\""]",1420.3,{},13886,1,"""Africa""" +2023-07-15,87637,3051,"[\""Tablet\""]",1057.36,"{\""promo\"": \""6%\""}",124284,0,"""North America""" +2023-03-25,87638,2278,"[\""Phone\"", \""Laptop\""]",4117.97,"{\""seasonal\"": \""19%\""}",157068,0,"""Asia""" +2024-03-25,87639,3535,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1132.53,"{\""seasonal\"": \""14%\""}",57601,1,"""Asia""" +2024-06-03,87640,2804,"[\""Laptop\""]",1205.47,{},15080,0,"""Europe""" +2024-04-13,87641,4376,"[\""Wireless Mouse\""]",257.99,{},68709,0,"""Europe""" +2023-03-29,87642,8570,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",509.25,"{\""seasonal\"": \""23%\""}",3130,1,"""Asia""" +2024-02-24,87643,3660,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1591.17,{},185701,1,"""South America""" +2024-12-27,87644,2430,"[\""Laptop\"", \""Headphones\""]",512.36,{},1186,1,"""North America""" +2024-01-08,87645,467,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3639.58,{},177840,0,"""Asia""" +2023-05-25,87646,8021,"[\""Headphones\""]",2751.12,{},56501,1,"""Europe""" +2023-07-29,87647,7594,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4159.11,"{\""seasonal\"": \""30%\""}",8172,0,"""South America""" +2023-03-29,87648,6168,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",186.89,"{\""seasonal\"": \""15%\""}",225975,0,"""Asia""" +2024-06-16,87649,804,"[\""Charger\"", \""Wireless Mouse\""]",4522.21,{},203996,0,"""South America""" +2024-11-04,87650,3804,"[\""Monitor\"", \""Tablet\""]",685.33,{},276035,0,"""South America""" +2023-02-17,87651,6509,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4182.7,{},256879,0,"""North America""" +2024-10-03,87652,7451,"[\""Keyboard\"", \""Laptop\""]",2341.85,"{\""loyalty\"": \""30%\""}",95993,0,"""Africa""" +2023-06-24,87653,4334,"[\""Headphones\""]",412.8,{},214494,1,"""South America""" +2024-12-22,87654,5348,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3946.94,"{\""loyalty\"": \""25%\""}",107405,0,"""South America""" +2023-05-02,87655,9047,"[\""Phone\""]",2889.81,{},61346,1,"""Africa""" +2024-03-17,87656,5951,"[\""Charger\""]",2194.01,"{\""promo\"": \""26%\""}",57628,0,"""Europe""" +2023-02-27,87657,1245,"[\""Wireless Mouse\"", \""Keyboard\""]",3618.9,"{\""seasonal\"": \""14%\""}",189310,1,"""North America""" +2023-12-02,87658,4835,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",2631.97,{},108978,0,"""Asia""" +2023-10-17,87659,9177,"[\""Headphones\""]",3853.55,"{\""loyalty\"": \""5%\""}",272935,0,"""North America""" +2024-12-29,87660,6161,"[\""Monitor\""]",528.14,{},250666,0,"""South America""" +2024-11-05,87661,2492,"[\""Laptop\""]",653.62,"{\""seasonal\"": \""15%\""}",46294,1,"""North America""" +2023-06-10,87662,8887,"[\""Headphones\"", \""Laptop\""]",4022.35,"{\"": \""27%\""}",216374,0,"""Europe""" +2024-03-15,87663,9035,"[\""Wireless Mouse\""]",3340.13,{},45568,0,"""Africa""" +2024-07-14,87664,4096,"[\""Wireless Mouse\""]",3088.02,"{\""loyalty\"": \""22%\""}",181724,1,"""Africa""" +2023-02-22,87665,8433,"[\""Laptop\"", \""Charger\""]",2938.94,{},61449,1,"""Asia""" +2024-06-25,87666,8328,"[\""Headphones\"", \""Wireless Mouse\""]",1704.91,{},267850,0,"""Europe""" +2023-10-31,87667,4703,"[\""Monitor\""]",2135.69,{},283832,1,"""Asia""" +2023-07-23,87668,2174,"[\""Wireless Mouse\"", \""Laptop\""]",2314.17,"{\"": \""23%\""}",69469,0,"""North America""" +2024-05-25,87669,7938,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2875.81,{},59274,0,"""North America""" +2023-04-14,87670,6138,"[\""Headphones\""]",1103.8,{},3462,0,"""Europe""" +2024-11-28,87671,6238,"[\""Wireless Mouse\"", \""Tablet\""]",1758.05,{},170895,1,"""Africa""" +2023-03-20,87672,4142,"[\""Charger\"", \""Headphones\""]",881.93,"{\"": \""21%\""}",272858,0,"""South America""" +2023-09-24,87673,8508,"[\""Keyboard\"", \""Monitor\""]",3172.37,{},194514,1,"""South America""" +2023-03-28,87674,7841,"[\""Tablet\"", \""Keyboard\""]",4971.48,"{\""seasonal\"": \""9%\""}",224601,0,"""Europe""" +2023-08-25,87675,4097,"[\""Phone\""]",4194.64,{},106942,0,"""North America""" +2023-12-20,87676,7036,"[\""Tablet\""]",2592.89,"{\""loyalty\"": \""26%\""}",199712,0,"""North America""" +2024-11-21,87677,546,"[\""Phone\""]",3410.4,"{\""promo\"": \""18%\""}",84287,0,"""South America""" +2024-02-10,87678,4514,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4400.52,"{\""loyalty\"": \""23%\""}",206422,0,"""Asia""" +2023-06-12,87679,9838,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3362.86,{},129968,1,"""Europe""" +2023-04-07,87680,7295,"[\""Phone\"", \""Wireless Mouse\""]",3195.2,"{\""promo\"": \""10%\""}",121328,0,"""Europe""" +2023-02-27,87681,2071,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4309.96,{},295633,1,"""North America""" +2023-11-29,87682,4739,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3296.15,{},91540,1,"""Europe""" +2023-04-26,87683,947,"[\""Tablet\"", \""Charger\""]",1286.6,{},97657,0,"""North America""" +2024-06-14,87684,9293,"[\""Headphones\""]",1027.87,{},100648,1,"""Europe""" +2023-01-24,87685,7769,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2292.64,{},83502,0,"""North America""" +2023-07-21,87686,5276,"[\""Charger\""]",88.62,{},214466,1,"""Africa""" +2023-10-12,87687,5074,"[\""Monitor\"", \""Tablet\""]",4694.58,"{\""promo\"": \""13%\""}",1161,0,"""Asia""" +2023-08-11,87688,104,"[\""Wireless Mouse\"", \""Charger\""]",1804.56,"{\""seasonal\"": \""9%\""}",232714,0,"""Europe""" +2023-02-17,87689,252,"[\""Wireless Mouse\"", \""Monitor\""]",1935.11,{},93750,1,"""Africa""" +2023-07-02,87690,3827,"[\""Phone\""]",1950.99,{},212302,0,"""Europe""" +2023-07-19,87691,3564,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",881.08,{},98918,1,"""South America""" +2023-06-04,87692,6223,"[\""Monitor\""]",432.47,{},295726,0,"""North America""" +2023-11-11,87693,5138,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4072.2,{},33748,1,"""Europe""" +2023-07-29,87694,2865,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1792.4,"{\""loyalty\"": \""22%\""}",250187,0,"""North America""" +2023-04-18,87695,2929,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2135.82,"{\""seasonal\"": \""11%\""}",13179,1,"""South America""" +2023-02-19,87696,3548,"[\""Tablet\""]",3350.44,{},201761,0,"""North America""" +2023-08-13,87697,6887,"[\""Wireless Mouse\""]",1857.87,{},103632,1,"""Asia""" +2024-01-23,87698,1158,"[\""Phone\"", \""Charger\""]",565.51,"{\""promo\"": \""21%\""}",282566,1,"""Europe""" +2024-12-12,87699,5135,"[\""Phone\""]",4288.85,"{\"": \""9%\""}",139571,0,"""Europe""" +2024-09-08,87700,6619,"[\""Wireless Mouse\"", \""Laptop\""]",4153.35,"{\""loyalty\"": \""29%\""}",249183,0,"""North America""" +2024-05-21,87701,7141,"[\""Keyboard\"", \""Laptop\""]",3900.88,{},176410,0,"""Asia""" +2023-09-01,87702,4575,"[\""Wireless Mouse\"", \""Monitor\""]",1348.74,{},61657,0,"""Europe""" +2023-03-27,87703,6072,"[\""Laptop\""]",4865.45,"{\""promo\"": \""30%\""}",189504,0,"""Africa""" +2023-02-16,87704,888,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3326.01,"{\""loyalty\"": \""27%\""}",80608,0,"""Europe""" +2024-01-25,87705,2215,"[\""Tablet\"", \""Laptop\""]",583.01,{},295713,1,"""South America""" +2024-05-30,87706,5932,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1724.73,"{\"": \""13%\""}",293126,1,"""North America""" +2024-01-29,87707,4228,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",4819.4,{},77332,0,"""Europe""" +2023-02-15,87708,5266,"[\""Tablet\"", \""Laptop\""]",1670.54,"{\""promo\"": \""24%\""}",204424,0,"""South America""" +2024-04-10,87709,5430,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4463.47,{},3326,0,"""Europe""" +2024-11-21,87710,653,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3748.08,"{\"": \""16%\""}",43129,1,"""South America""" +2023-04-10,87711,1745,"[\""Headphones\""]",141.94,"{\""promo\"": \""16%\""}",78796,0,"""Europe""" +2023-06-22,87712,8494,"[\""Tablet\"", \""Monitor\""]",600.92,{},211241,1,"""Africa""" +2024-03-27,87713,5822,"[\""Wireless Mouse\""]",177.44,{},175709,0,"""South America""" +2024-09-11,87714,3247,"[\""Tablet\"", \""Laptop\""]",3635.8,{},115728,0,"""South America""" +2023-03-30,87715,616,"[\""Wireless Mouse\"", \""Charger\""]",1382.02,"{\""promo\"": \""9%\""}",137245,1,"""South America""" +2024-04-18,87716,7041,"[\""Wireless Mouse\""]",4360.08,"{\""loyalty\"": \""24%\""}",208115,1,"""Africa""" +2023-06-09,87717,8851,"[\""Laptop\""]",764.55,"{\"": \""9%\""}",260918,0,"""Africa""" +2023-01-24,87718,5697,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4993.2,{},189799,0,"""North America""" +2024-11-10,87719,854,"[\""Charger\"", \""Keyboard\""]",342.4,"{\""loyalty\"": \""11%\""}",241459,0,"""Europe""" +2024-07-22,87720,7210,"[\""Phone\"", \""Wireless Mouse\""]",3531.89,{},265394,0,"""North America""" +2024-06-26,87721,8389,"[\""Wireless Mouse\"", \""Monitor\""]",1027.45,"{\""promo\"": \""18%\""}",267320,0,"""South America""" +2023-11-27,87722,4023,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",1770.97,{},114557,1,"""South America""" +2024-10-27,87723,7460,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3733.25,{},175306,1,"""South America""" +2023-02-11,87724,4027,"[\""Wireless Mouse\"", \""Monitor\""]",4815.42,"{\""promo\"": \""7%\""}",279479,0,"""Asia""" +2024-10-16,87725,1324,"[\""Keyboard\"", \""Wireless Mouse\""]",333.96,{},166027,1,"""North America""" +2023-04-30,87726,2495,"[\""Laptop\"", \""Tablet\""]",4516.84,{},204201,0,"""Europe""" +2024-12-30,87727,7759,"[\""Tablet\""]",680.2,{},216789,0,"""Asia""" +2023-01-23,87728,962,"[\""Laptop\""]",1165.38,{},273715,0,"""Europe""" +2024-08-06,87729,2501,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3878.18,{},14507,1,"""South America""" +2024-06-23,87730,7548,"[\""Laptop\""]",1706.86,"{\""loyalty\"": \""24%\""}",211124,0,"""Asia""" +2024-09-24,87731,9216,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",352.65,"{\""loyalty\"": \""29%\""}",66491,1,"""Africa""" +2023-02-24,87732,9957,"[\""Headphones\""]",533.17,{},281618,1,"""South America""" +2023-01-02,87733,391,"[\""Keyboard\"", \""Phone\""]",854.15,"{\""loyalty\"": \""18%\""}",299560,1,"""Asia""" +2023-06-08,87734,4500,"[\""Phone\""]",2559.2,"{\"": \""24%\""}",32488,1,"""Europe""" +2024-08-27,87735,1434,"[\""Keyboard\"", \""Monitor\""]",368.14,{},298868,0,"""South America""" +2023-01-07,87736,9954,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3919.44,"{\""loyalty\"": \""10%\""}",266004,0,"""Europe""" +2024-08-17,87737,8407,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4472.15,{},237309,1,"""South America""" +2024-01-26,87738,5109,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4645.39,{},113129,1,"""North America""" +2024-12-07,87739,9218,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3985.22,{},54629,0,"""Asia""" +2024-01-08,87740,3338,"[\""Phone\""]",1545.0,"{\""seasonal\"": \""16%\""}",18969,1,"""South America""" +2024-07-04,87741,6495,"[\""Wireless Mouse\"", \""Keyboard\""]",2637.11,"{\"": \""5%\""}",267799,0,"""North America""" +2024-10-11,87742,320,"[\""Tablet\"", \""Charger\""]",3887.31,{},263258,1,"""Africa""" +2024-04-19,87743,4894,"[\""Headphones\"", \""Keyboard\""]",4209.31,"{\""loyalty\"": \""22%\""}",56720,1,"""North America""" +2023-01-28,87744,7849,"[\""Monitor\""]",1101.65,"{\""seasonal\"": \""21%\""}",186533,0,"""Europe""" +2023-02-21,87745,2821,"[\""Headphones\"", \""Phone\""]",1054.82,{},279529,1,"""Africa""" +2023-05-11,87746,1113,"[\""Headphones\""]",1411.95,"{\""promo\"": \""27%\""}",165815,0,"""North America""" +2023-01-19,87747,3454,"[\""Laptop\"", \""Keyboard\""]",2236.63,{},113570,1,"""North America""" +2023-07-27,87748,8631,"[\""Monitor\"", \""Wireless Mouse\""]",3659.17,{},158052,1,"""Europe""" +2024-08-15,87749,7082,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3565.99,"{\""seasonal\"": \""25%\""}",157926,0,"""South America""" +2023-10-22,87750,5822,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2740.87,{},128579,1,"""Europe""" +2024-01-20,87751,560,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1544.61,"{\""loyalty\"": \""29%\""}",1780,1,"""Africa""" +2023-10-07,87752,1788,"[\""Headphones\"", \""Keyboard\""]",4614.34,"{\""promo\"": \""14%\""}",1366,1,"""Asia""" +2024-01-05,87753,8627,"[\""Laptop\"", \""Headphones\""]",1654.28,{},22858,1,"""Africa""" +2024-08-23,87754,1299,"[\""Headphones\"", \""Monitor\""]",563.89,{},32937,0,"""North America""" +2023-04-12,87755,5434,"[\""Headphones\""]",2096.69,"{\""seasonal\"": \""30%\""}",62282,1,"""Asia""" +2024-04-08,87756,1578,"[\""Phone\"", \""Charger\""]",1233.62,{},294765,0,"""Europe""" +2024-12-29,87757,9953,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3132.4,"{\"": \""23%\""}",233566,1,"""Europe""" +2023-04-18,87758,8930,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1342.39,{},123338,0,"""Asia""" +2023-06-11,87759,1525,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1088.69,{},217561,0,"""Africa""" +2024-06-06,87760,5903,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3286.16,"{\"": \""13%\""}",84818,0,"""South America""" +2023-01-04,87761,6190,"[\""Monitor\"", \""Headphones\""]",2689.87,"{\""loyalty\"": \""15%\""}",206638,0,"""Europe""" +2024-11-04,87762,8345,"[\""Charger\"", \""Keyboard\""]",320.64,{},146664,0,"""Europe""" +2023-02-25,87763,4950,"[\""Phone\"", \""Charger\""]",2927.46,"{\""seasonal\"": \""12%\""}",130695,1,"""Europe""" +2024-08-14,87764,173,"[\""Tablet\"", \""Monitor\""]",3169.91,{},171010,0,"""North America""" +2024-08-07,87765,3185,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3025.16,"{\""loyalty\"": \""21%\""}",21894,1,"""Africa""" +2024-10-14,87766,3424,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4213.03,{},259402,1,"""Africa""" +2024-07-02,87767,5328,"[\""Charger\"", \""Headphones\""]",2416.41,"{\""promo\"": \""8%\""}",222330,0,"""North America""" +2023-04-10,87768,6842,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",3934.87,{},62926,0,"""Africa""" +2024-05-23,87769,8854,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1067.29,{},252777,0,"""Africa""" +2024-12-01,87770,1590,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",531.69,"{\""promo\"": \""5%\""}",235896,1,"""Africa""" +2023-06-24,87771,6232,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1828.68,{},100482,0,"""Europe""" +2023-03-15,87772,2117,"[\""Tablet\"", \""Charger\""]",4043.1,"{\""promo\"": \""9%\""}",175430,0,"""Asia""" +2024-06-20,87773,9777,"[\""Wireless Mouse\"", \""Phone\""]",739.5,"{\"": \""22%\""}",216727,0,"""Asia""" +2024-05-01,87774,579,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3414.72,"{\""loyalty\"": \""20%\""}",200239,1,"""Africa""" +2024-01-27,87775,451,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1143.41,{},61846,1,"""Africa""" +2023-02-13,87776,5686,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1104.96,"{\"": \""20%\""}",92097,0,"""South America""" +2023-08-13,87777,6725,"[\""Phone\""]",3717.14,{},221877,1,"""Asia""" +2023-03-20,87778,4218,"[\""Keyboard\""]",2965.47,"{\""seasonal\"": \""6%\""}",233970,0,"""Europe""" +2024-11-06,87779,1111,"[\""Monitor\"", \""Phone\""]",3264.58,{},2890,0,"""Europe""" +2024-03-21,87780,3509,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",835.93,"{\""seasonal\"": \""27%\""}",13076,1,"""Europe""" +2024-02-07,87781,2823,"[\""Headphones\"", \""Keyboard\""]",731.37,"{\""seasonal\"": \""25%\""}",220129,1,"""South America""" +2024-11-30,87782,9147,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1497.92,"{\""promo\"": \""28%\""}",248393,0,"""Asia""" +2023-07-07,87783,1152,"[\""Laptop\""]",3001.74,"{\""promo\"": \""22%\""}",73593,1,"""North America""" +2024-08-31,87784,2192,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1529.18,"{\""loyalty\"": \""8%\""}",83089,0,"""Asia""" +2023-10-07,87785,1145,"[\""Charger\"", \""Laptop\""]",3150.8,{},174493,0,"""Europe""" +2024-12-17,87786,5030,"[\""Charger\"", \""Phone\""]",987.31,{},163446,0,"""North America""" +2024-03-10,87787,6050,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3402.47,{},14505,0,"""South America""" +2023-04-23,87788,4567,"[\""Tablet\"", \""Monitor\""]",4291.34,"{\""promo\"": \""13%\""}",296786,0,"""South America""" +2024-03-12,87789,8903,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1422.5,{},156870,0,"""North America""" +2024-07-24,87790,3127,"[\""Tablet\"", \""Laptop\""]",4932.41,{},64788,1,"""South America""" +2024-04-16,87791,422,"[\""Keyboard\"", \""Wireless Mouse\""]",896.91,"{\"": \""10%\""}",251469,1,"""Africa""" +2023-10-27,87792,6891,"[\""Monitor\""]",2998.65,"{\""promo\"": \""13%\""}",186347,1,"""Africa""" +2023-03-17,87793,6957,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3308.29,{},81552,1,"""Asia""" +2024-03-26,87794,4650,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3171.14,"{\""loyalty\"": \""16%\""}",125174,1,"""North America""" +2024-09-06,87795,8535,"[\""Laptop\"", \""Phone\""]",1923.76,"{\""seasonal\"": \""6%\""}",122777,1,"""Africa""" +2023-11-05,87796,68,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3076.84,"{\""promo\"": \""23%\""}",248331,1,"""North America""" +2023-06-13,87797,4573,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2562.1,{},82384,0,"""Africa""" +2023-10-30,87798,102,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1704.73,"{\""promo\"": \""19%\""}",89997,1,"""South America""" +2023-01-31,87799,2472,"[\""Charger\""]",3417.23,"{\"": \""20%\""}",248301,1,"""North America""" +2024-10-04,87800,5523,"[\""Tablet\"", \""Phone\""]",734.41,"{\""promo\"": \""17%\""}",100560,1,"""Europe""" +2023-12-05,87801,7166,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1434.92,"{\""promo\"": \""15%\""}",69551,1,"""Europe""" +2024-09-06,87802,8172,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1272.31,{},5357,0,"""South America""" +2024-05-07,87803,2490,"[\""Tablet\"", \""Charger\""]",2408.68,"{\""promo\"": \""18%\""}",227479,1,"""Europe""" +2024-02-24,87804,482,"[\""Monitor\""]",1786.23,"{\""promo\"": \""7%\""}",118723,0,"""Europe""" +2023-09-08,87805,2874,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2172.03,{},291038,0,"""North America""" +2023-03-21,87806,9783,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2595.66,{},31837,0,"""Asia""" +2024-03-18,87807,7481,"[\""Phone\""]",1102.92,{},216658,1,"""Asia""" +2024-06-05,87808,3139,"[\""Phone\"", \""Wireless Mouse\""]",1416.16,{},166810,0,"""Europe""" +2024-08-04,87809,6928,"[\""Phone\"", \""Keyboard\""]",2943.05,{},73696,1,"""North America""" +2024-07-03,87810,7481,"[\""Wireless Mouse\""]",1939.29,"{\""seasonal\"": \""29%\""}",290672,0,"""Asia""" +2024-05-21,87811,5950,"[\""Wireless Mouse\"", \""Charger\""]",2698.86,"{\""loyalty\"": \""11%\""}",162056,0,"""Asia""" +2023-06-07,87812,6597,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2122.7,"{\"": \""24%\""}",67425,1,"""Asia""" +2024-09-06,87813,5452,"[\""Headphones\""]",3624.75,{},132783,1,"""North America""" +2024-09-12,87814,8032,"[\""Headphones\""]",1849.47,"{\""promo\"": \""22%\""}",174012,1,"""Europe""" +2023-07-25,87815,8422,"[\""Headphones\"", \""Wireless Mouse\""]",2263.97,"{\""promo\"": \""27%\""}",153525,1,"""Africa""" +2024-01-30,87816,9338,"[\""Monitor\""]",643.8,{},89207,1,"""Africa""" +2024-11-09,87817,7389,"[\""Wireless Mouse\""]",3973.01,{},174967,0,"""Africa""" +2024-03-15,87818,9153,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3369.61,"{\"": \""9%\""}",291652,1,"""Africa""" +2024-11-23,87819,6209,"[\""Tablet\"", \""Phone\""]",648.99,"{\""loyalty\"": \""20%\""}",230202,0,"""North America""" +2024-01-17,87820,505,"[\""Phone\"", \""Laptop\""]",157.21,{},138600,0,"""Asia""" +2023-06-26,87821,1194,"[\""Wireless Mouse\"", \""Headphones\""]",3106.01,"{\""loyalty\"": \""23%\""}",89645,1,"""Europe""" +2023-10-08,87822,5052,"[\""Phone\""]",687.19,"{\""seasonal\"": \""5%\""}",157911,1,"""South America""" +2023-06-07,87823,90,"[\""Keyboard\""]",2722.86,"{\""seasonal\"": \""8%\""}",16751,1,"""North America""" +2024-07-30,87824,1504,"[\""Charger\"", \""Keyboard\""]",4563.21,{},193690,1,"""Asia""" +2023-05-04,87825,1257,"[\""Charger\""]",1174.75,"{\""promo\"": \""23%\""}",109986,1,"""North America""" +2023-01-30,87826,3068,"[\""Charger\"", \""Tablet\""]",3182.75,{},176877,1,"""Asia""" +2023-09-29,87827,8047,"[\""Monitor\""]",4509.62,{},120203,1,"""Africa""" +2023-08-16,87828,4767,"[\""Keyboard\"", \""Headphones\""]",4102.21,{},89832,0,"""Europe""" +2024-06-24,87829,6849,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",250.55,{},244942,1,"""South America""" +2023-03-04,87830,1845,"[\""Charger\""]",204.28,"{\""loyalty\"": \""27%\""}",155719,1,"""Europe""" +2023-08-06,87831,5160,"[\""Laptop\"", \""Tablet\""]",4428.41,"{\""loyalty\"": \""23%\""}",173339,0,"""Europe""" +2024-08-09,87832,3688,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2624.65,"{\""loyalty\"": \""21%\""}",140798,0,"""Africa""" +2023-05-23,87833,3611,"[\""Charger\"", \""Wireless Mouse\""]",3599.7,"{\""seasonal\"": \""28%\""}",221834,1,"""Africa""" +2023-06-18,87834,9902,"[\""Headphones\""]",3266.68,"{\""seasonal\"": \""30%\""}",109893,1,"""Asia""" +2024-03-10,87835,4620,"[\""Monitor\"", \""Keyboard\""]",4913.06,"{\"": \""12%\""}",246529,1,"""Africa""" +2023-02-23,87836,1687,"[\""Headphones\"", \""Tablet\""]",699.85,"{\""loyalty\"": \""8%\""}",247641,1,"""Europe""" +2024-08-18,87837,1560,"[\""Phone\""]",1047.09,"{\""seasonal\"": \""25%\""}",109006,1,"""South America""" +2023-05-24,87838,1371,"[\""Headphones\"", \""Keyboard\""]",326.98,"{\"": \""11%\""}",96800,0,"""South America""" +2023-06-15,87839,3401,"[\""Wireless Mouse\"", \""Keyboard\""]",1952.22,"{\""promo\"": \""6%\""}",186542,0,"""North America""" +2023-06-17,87840,1859,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1512.24,{},238980,1,"""North America""" +2023-12-25,87841,6457,"[\""Keyboard\""]",3973.93,"{\""loyalty\"": \""8%\""}",79648,1,"""Asia""" +2024-06-24,87842,5762,"[\""Tablet\"", \""Laptop\""]",4194.47,"{\""promo\"": \""22%\""}",199443,0,"""South America""" +2024-03-19,87843,5452,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",4129.75,{},36152,1,"""Europe""" +2024-09-09,87844,951,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3786.85,"{\""loyalty\"": \""22%\""}",151647,1,"""North America""" +2023-05-21,87845,9180,"[\""Tablet\"", \""Monitor\""]",1142.24,{},22077,1,"""Asia""" +2024-08-23,87846,9834,"[\""Charger\"", \""Monitor\""]",730.31,{},134389,0,"""South America""" +2023-01-31,87847,1433,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4940.65,{},263202,1,"""Asia""" +2024-12-13,87848,4933,"[\""Tablet\"", \""Monitor\""]",2668.67,"{\"": \""19%\""}",297796,1,"""North America""" +2024-03-13,87849,2822,"[\""Tablet\"", \""Phone\""]",294.03,"{\""seasonal\"": \""30%\""}",253253,0,"""North America""" +2024-03-09,87850,9703,"[\""Wireless Mouse\""]",4333.02,{},230181,1,"""Africa""" +2024-01-14,87851,7055,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4677.54,"{\""seasonal\"": \""23%\""}",13910,0,"""Africa""" +2024-12-04,87852,3416,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1374.59,{},126800,1,"""Asia""" +2023-08-21,87853,9088,"[\""Monitor\"", \""Headphones\""]",2798.71,{},17522,1,"""Africa""" +2023-04-26,87854,504,"[\""Keyboard\""]",4367.12,{},38671,0,"""Asia""" +2023-12-17,87855,2016,"[\""Laptop\""]",4416.97,{},201655,1,"""Asia""" +2023-03-17,87856,5291,"[\""Tablet\""]",1338.95,{},191411,0,"""Europe""" +2024-05-28,87857,6467,"[\""Tablet\""]",691.79,"{\""seasonal\"": \""12%\""}",28672,0,"""South America""" +2024-03-23,87858,5848,"[\""Monitor\""]",4944.04,{},272011,0,"""Asia""" +2023-10-26,87859,7351,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",4270.64,{},224002,1,"""Asia""" +2023-02-18,87860,7254,"[\""Wireless Mouse\""]",2119.03,{},150258,0,"""South America""" +2024-05-31,87861,1336,"[\""Phone\""]",2807.71,{},256281,0,"""Asia""" +2024-12-23,87862,3954,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4490.71,"{\""loyalty\"": \""15%\""}",169915,1,"""Asia""" +2024-05-15,87863,1183,"[\""Charger\""]",2538.43,{},243581,1,"""Europe""" +2023-04-07,87864,1661,"[\""Phone\"", \""Charger\""]",2853.83,{},12274,1,"""Europe""" +2024-02-12,87865,268,"[\""Phone\""]",4850.96,{},264854,1,"""Asia""" +2024-10-18,87866,2686,"[\""Charger\""]",4763.06,"{\""seasonal\"": \""5%\""}",275379,0,"""Africa""" +2023-02-21,87867,6419,"[\""Charger\"", \""Keyboard\""]",148.46,"{\""seasonal\"": \""25%\""}",71759,1,"""South America""" +2024-03-30,87868,6002,"[\""Headphones\""]",670.75,{},202249,1,"""Africa""" +2024-05-06,87869,244,"[\""Wireless Mouse\"", \""Keyboard\""]",350.44,"{\""seasonal\"": \""21%\""}",221652,1,"""Europe""" +2024-11-16,87870,9921,"[\""Wireless Mouse\"", \""Monitor\""]",2184.54,{},291051,0,"""Europe""" +2023-09-22,87871,187,"[\""Headphones\"", \""Monitor\""]",4791.37,{},29766,0,"""South America""" +2023-02-07,87872,7383,"[\""Laptop\"", \""Phone\""]",1571.86,{},225996,0,"""Asia""" +2024-11-18,87873,1738,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4585.14,"{\""loyalty\"": \""15%\""}",265441,0,"""North America""" +2023-05-29,87874,2688,"[\""Keyboard\""]",3606.77,"{\""promo\"": \""14%\""}",233576,1,"""Europe""" +2023-02-21,87875,3794,"[\""Monitor\"", \""Laptop\""]",489.95,{},208830,0,"""South America""" +2024-09-04,87876,3544,"[\""Charger\"", \""Wireless Mouse\""]",1923.16,"{\""loyalty\"": \""18%\""}",128215,0,"""South America""" +2024-07-15,87877,9093,"[\""Phone\""]",3598.27,"{\""promo\"": \""29%\""}",56351,1,"""Europe""" +2024-06-02,87878,4273,"[\""Wireless Mouse\"", \""Keyboard\""]",4936.67,{},179131,1,"""Europe""" +2024-03-15,87879,1893,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",731.67,{},232155,0,"""Asia""" +2023-09-08,87880,8345,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3335.86,{},287058,1,"""South America""" +2024-11-11,87881,1146,"[\""Headphones\""]",1256.28,{},116892,0,"""South America""" +2024-07-14,87882,2716,"[\""Monitor\"", \""Laptop\""]",4716.05,{},213741,0,"""North America""" +2024-04-09,87883,5873,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4636.1,{},29632,0,"""North America""" +2024-02-21,87884,5452,"[\""Charger\""]",3070.36,{},75962,0,"""Asia""" +2023-05-20,87885,197,"[\""Charger\""]",4427.88,"{\"": \""11%\""}",96622,0,"""Asia""" +2024-02-12,87886,8736,"[\""Keyboard\""]",187.22,"{\"": \""16%\""}",270930,0,"""South America""" +2023-03-17,87887,3516,"[\""Headphones\"", \""Wireless Mouse\""]",1611.58,"{\""promo\"": \""9%\""}",28373,1,"""Europe""" +2023-07-01,87888,437,"[\""Charger\"", \""Tablet\""]",2317.64,{},218364,1,"""South America""" +2024-07-09,87889,1000,"[\""Laptop\"", \""Wireless Mouse\""]",4645.68,"{\""loyalty\"": \""16%\""}",26011,1,"""Europe""" +2024-06-23,87890,8898,"[\""Monitor\""]",3332.39,{},223392,0,"""Europe""" +2024-02-25,87891,7234,"[\""Keyboard\"", \""Wireless Mouse\""]",1850.28,{},249199,1,"""Africa""" +2024-05-28,87892,6594,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4677.43,"{\""loyalty\"": \""28%\""}",276147,1,"""Asia""" +2023-11-09,87893,132,"[\""Keyboard\""]",4049.66,"{\""loyalty\"": \""6%\""}",111037,1,"""Africa""" +2024-08-25,87894,2152,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3545.61,"{\"": \""23%\""}",131963,0,"""Europe""" +2024-01-31,87895,2855,"[\""Charger\""]",2997.78,{},184979,0,"""Africa""" +2024-09-30,87896,9000,"[\""Charger\"", \""Laptop\""]",632.96,{},158692,1,"""Europe""" +2023-03-17,87897,2069,"[\""Charger\"", \""Laptop\""]",3948.62,{},20756,1,"""Africa""" +2023-07-03,87898,8375,"[\""Tablet\"", \""Headphones\""]",698.05,{},135730,0,"""Asia""" +2024-04-14,87899,9506,"[\""Headphones\""]",1901.96,{},164193,1,"""South America""" +2024-11-03,87900,8799,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3219.62,"{\""promo\"": \""16%\""}",143451,0,"""North America""" +2024-04-26,87901,6605,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4905.77,"{\"": \""24%\""}",6764,0,"""Europe""" +2023-07-13,87902,4882,"[\""Wireless Mouse\"", \""Keyboard\""]",2365.98,"{\""promo\"": \""24%\""}",15115,0,"""Europe""" +2023-12-01,87903,5751,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3187.89,"{\""seasonal\"": \""11%\""}",177587,0,"""Africa""" +2023-06-27,87904,9357,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",4257.57,"{\""seasonal\"": \""23%\""}",51635,1,"""Europe""" +2023-08-05,87905,1487,"[\""Keyboard\""]",3982.08,{},295639,1,"""Europe""" +2024-04-16,87906,8742,"[\""Wireless Mouse\""]",1196.65,"{\""loyalty\"": \""15%\""}",149754,0,"""Europe""" +2024-03-29,87907,753,"[\""Keyboard\""]",2445.58,"{\""seasonal\"": \""20%\""}",260899,0,"""Africa""" +2024-05-27,87908,1316,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1502.02,{},40258,1,"""Europe""" +2023-02-27,87909,8604,"[\""Headphones\""]",2789.93,"{\""promo\"": \""6%\""}",96564,0,"""Africa""" +2023-09-21,87910,8677,"[\""Wireless Mouse\""]",4279.04,{},162797,1,"""Europe""" +2023-11-03,87911,9189,"[\""Keyboard\"", \""Charger\""]",901.94,{},33405,1,"""Asia""" +2023-11-07,87912,4128,"[\""Keyboard\"", \""Tablet\""]",209.71,{},130390,0,"""Asia""" +2024-10-31,87913,9835,"[\""Monitor\""]",3365.86,{},249406,0,"""South America""" +2023-04-07,87914,6589,"[\""Tablet\"", \""Keyboard\""]",2410.03,{},133784,0,"""South America""" +2024-02-13,87915,2136,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",456.71,"{\""loyalty\"": \""15%\""}",94621,0,"""South America""" +2023-12-02,87916,9601,"[\""Headphones\""]",4018.96,"{\""promo\"": \""13%\""}",57259,1,"""South America""" +2024-01-12,87917,309,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4660.24,{},224446,0,"""North America""" +2023-11-30,87918,8690,"[\""Monitor\"", \""Tablet\""]",4417.58,"{\""loyalty\"": \""27%\""}",152199,1,"""North America""" +2024-12-26,87919,8575,"[\""Phone\"", \""Headphones\""]",735.33,{},57592,1,"""Africa""" +2023-03-24,87920,2617,"[\""Charger\""]",3506.29,"{\""seasonal\"": \""28%\""}",241571,0,"""Asia""" +2024-04-03,87921,6025,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4156.16,"{\""seasonal\"": \""16%\""}",148618,1,"""North America""" +2024-02-01,87922,2389,"[\""Monitor\""]",2289.94,"{\""seasonal\"": \""25%\""}",254793,0,"""Africa""" +2024-11-21,87923,3786,"[\""Headphones\"", \""Phone\"", \""Charger\""]",608.1,"{\""seasonal\"": \""17%\""}",9917,0,"""Europe""" +2024-11-27,87924,2808,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",284.53,"{\"": \""13%\""}",14872,1,"""Europe""" +2023-01-13,87925,4601,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3528.99,{},293092,0,"""Asia""" +2023-07-07,87926,3564,"[\""Tablet\"", \""Wireless Mouse\""]",4337.32,"{\""promo\"": \""19%\""}",129822,0,"""Europe""" +2024-08-03,87927,3959,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4562.96,"{\""promo\"": \""25%\""}",11801,1,"""South America""" +2023-12-16,87928,9421,"[\""Monitor\"", \""Laptop\""]",69.4,{},292253,0,"""Africa""" +2024-07-15,87929,69,"[\""Wireless Mouse\"", \""Laptop\""]",2843.48,"{\"": \""10%\""}",168329,0,"""Europe""" +2023-07-20,87930,7857,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3405.64,"{\""loyalty\"": \""28%\""}",150274,0,"""Africa""" +2024-10-30,87931,1952,"[\""Headphones\"", \""Charger\""]",4185.79,{},228408,1,"""Europe""" +2023-12-20,87932,5497,"[\""Laptop\""]",3246.5,"{\""seasonal\"": \""26%\""}",78404,1,"""Europe""" +2024-12-20,87933,1793,"[\""Keyboard\""]",336.28,"{\"": \""17%\""}",14685,0,"""Africa""" +2023-10-30,87934,6316,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1439.67,{},163780,0,"""Asia""" +2024-11-07,87935,8879,"[\""Charger\"", \""Wireless Mouse\""]",2013.9,"{\"": \""27%\""}",190466,0,"""Africa""" +2024-01-20,87936,778,"[\""Keyboard\""]",869.91,"{\"": \""27%\""}",149674,0,"""Asia""" +2024-02-18,87937,3460,"[\""Phone\""]",2689.22,{},284492,0,"""Africa""" +2024-12-02,87938,1330,"[\""Phone\""]",4406.09,"{\"": \""29%\""}",12938,0,"""Asia""" +2023-04-08,87939,2031,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4283.28,{},139398,0,"""North America""" +2024-06-09,87940,9739,"[\""Headphones\"", \""Phone\""]",210.56,"{\"": \""22%\""}",5064,1,"""North America""" +2024-10-23,87941,4582,"[\""Headphones\""]",795.4,"{\"": \""21%\""}",93120,0,"""Africa""" +2023-03-20,87942,7809,"[\""Keyboard\""]",522.23,"{\""promo\"": \""11%\""}",281852,0,"""Asia""" +2024-10-01,87943,8265,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2617.79,"{\"": \""9%\""}",103462,0,"""South America""" +2023-12-25,87944,4146,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4020.21,{},54663,0,"""North America""" +2023-05-22,87945,1665,"[\""Phone\""]",756.35,{},170444,1,"""Europe""" +2023-09-25,87946,808,"[\""Tablet\""]",2908.69,{},296755,1,"""North America""" +2023-09-13,87947,2690,"[\""Wireless Mouse\"", \""Monitor\""]",4878.08,{},280896,1,"""Europe""" +2024-06-14,87948,6341,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2846.72,{},99848,1,"""South America""" +2023-01-09,87949,2837,"[\""Laptop\""]",3948.18,"{\""seasonal\"": \""29%\""}",170529,1,"""North America""" +2023-04-21,87950,8057,"[\""Laptop\"", \""Keyboard\""]",3451.53,"{\"": \""18%\""}",135342,0,"""Asia""" +2024-03-09,87951,7932,"[\""Wireless Mouse\"", \""Headphones\""]",3103.98,"{\"": \""22%\""}",171693,0,"""South America""" +2023-02-20,87952,4580,"[\""Wireless Mouse\"", \""Charger\""]",2136.02,"{\""seasonal\"": \""5%\""}",149113,1,"""Africa""" +2024-09-06,87953,7485,"[\""Tablet\""]",1819.98,{},12283,1,"""North America""" +2023-02-09,87954,6051,"[\""Monitor\"", \""Laptop\""]",3910.06,{},43748,1,"""South America""" +2024-04-21,87955,6316,"[\""Wireless Mouse\"", \""Laptop\""]",2672.47,{},258971,0,"""Africa""" +2024-09-17,87956,4265,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",463.26,{},28634,1,"""South America""" +2023-03-21,87957,5946,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2771.7,{},93794,0,"""South America""" +2023-05-07,87958,6234,"[\""Phone\""]",2745.98,{},271862,0,"""Asia""" +2024-06-09,87959,5516,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1812.75,"{\""loyalty\"": \""28%\""}",87468,0,"""Europe""" +2024-01-23,87960,5411,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1233.08,"{\"": \""5%\""}",119573,1,"""North America""" +2024-10-05,87961,4003,"[\""Monitor\"", \""Tablet\""]",4754.57,"{\""promo\"": \""6%\""}",259202,0,"""South America""" +2023-12-11,87962,2178,"[\""Keyboard\"", \""Tablet\""]",799.95,"{\""seasonal\"": \""6%\""}",9369,1,"""Europe""" +2023-02-27,87963,8816,"[\""Phone\"", \""Monitor\""]",1365.84,"{\"": \""6%\""}",132776,0,"""Africa""" +2024-12-23,87964,4489,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3160.96,{},202410,0,"""Africa""" +2023-02-23,87965,2376,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4886.08,{},109637,1,"""Europe""" +2023-06-27,87966,745,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",837.11,{},109570,0,"""Europe""" +2023-07-19,87967,5289,"[\""Laptop\""]",3965.97,"{\""seasonal\"": \""26%\""}",166264,0,"""Africa""" +2024-05-13,87968,1512,"[\""Charger\"", \""Headphones\""]",845.9,{},276511,0,"""Africa""" +2023-04-17,87969,9769,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1778.25,{},140158,1,"""Asia""" +2024-07-08,87970,905,"[\""Headphones\""]",2709.64,{},157689,1,"""Europe""" +2023-03-16,87971,4289,"[\""Laptop\""]",1270.32,"{\""seasonal\"": \""16%\""}",33008,1,"""South America""" +2024-06-26,87972,6155,"[\""Headphones\"", \""Tablet\""]",4532.88,{},45722,1,"""North America""" +2024-02-23,87973,1459,"[\""Phone\""]",1916.96,{},252555,0,"""South America""" +2024-07-23,87974,5429,"[\""Headphones\"", \""Tablet\""]",3266.76,"{\""loyalty\"": \""7%\""}",3455,1,"""Africa""" +2023-06-28,87975,5302,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",878.12,{},159634,0,"""Europe""" +2023-02-20,87976,1110,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",2390.78,"{\""promo\"": \""10%\""}",241555,1,"""South America""" +2024-09-11,87977,7161,"[\""Charger\"", \""Monitor\""]",345.79,{},42014,1,"""Asia""" +2024-03-30,87978,9525,"[\""Monitor\""]",167.22,{},136356,1,"""Asia""" +2023-01-16,87979,3847,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2539.29,{},68658,1,"""Asia""" +2023-05-23,87980,8418,"[\""Monitor\""]",3680.14,"{\""promo\"": \""27%\""}",254532,0,"""Africa""" +2024-09-14,87981,3699,"[\""Charger\"", \""Headphones\""]",2780.16,{},10379,1,"""Europe""" +2023-02-12,87982,4289,"[\""Headphones\""]",1629.35,"{\""loyalty\"": \""22%\""}",49198,0,"""Africa""" +2024-01-22,87983,8135,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2388.41,{},114209,0,"""North America""" +2024-12-09,87984,2388,"[\""Headphones\""]",192.75,"{\""seasonal\"": \""16%\""}",223261,1,"""Africa""" +2023-12-06,87985,6311,"[\""Keyboard\"", \""Monitor\""]",1925.07,{},273316,1,"""North America""" +2024-02-08,87986,2412,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4742.25,"{\""loyalty\"": \""7%\""}",64916,0,"""South America""" +2024-06-05,87987,1995,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",620.59,{},178638,1,"""Asia""" +2024-03-19,87988,3455,"[\""Monitor\""]",908.55,"{\""promo\"": \""24%\""}",283664,1,"""Africa""" +2023-12-18,87989,7,"[\""Wireless Mouse\"", \""Tablet\""]",1997.71,{},15363,1,"""North America""" +2024-01-21,87990,6195,"[\""Keyboard\"", \""Wireless Mouse\""]",2665.02,{},239614,1,"""Europe""" +2023-02-19,87991,4647,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2145.65,{},47789,1,"""Europe""" +2023-01-14,87992,2616,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",983.73,{},181093,1,"""South America""" +2023-04-20,87993,4490,"[\""Wireless Mouse\"", \""Tablet\""]",3176.0,{},163200,0,"""South America""" +2023-07-08,87994,3501,"[\""Wireless Mouse\"", \""Keyboard\""]",290.77,{},109174,1,"""South America""" +2023-02-04,87995,413,"[\""Tablet\""]",4513.96,"{\"": \""14%\""}",209259,0,"""Europe""" +2023-09-22,87996,6798,"[\""Wireless Mouse\"", \""Tablet\""]",145.48,"{\""promo\"": \""24%\""}",50577,1,"""Africa""" +2023-04-02,87997,7652,"[\""Wireless Mouse\""]",906.47,{},82022,0,"""Africa""" +2024-04-15,87998,6797,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",845.81,"{\""promo\"": \""6%\""}",28026,0,"""Africa""" +2023-04-18,87999,4405,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2720.22,{},167212,1,"""South America""" +2024-02-05,88000,9501,"[\""Phone\""]",1564.32,{},282202,1,"""South America""" +2023-07-14,88001,6824,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",84.0,{},180865,1,"""South America""" +2023-06-09,88002,2724,"[\""Laptop\"", \""Charger\""]",3745.42,"{\""promo\"": \""10%\""}",108441,0,"""Africa""" +2024-08-07,88003,379,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2387.01,{},149897,1,"""South America""" +2023-01-26,88004,646,"[\""Phone\"", \""Headphones\""]",4612.73,"{\""loyalty\"": \""20%\""}",102712,0,"""Asia""" +2023-03-17,88005,1904,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1562.14,"{\"": \""16%\""}",190595,0,"""North America""" +2023-09-17,88006,8919,"[\""Tablet\"", \""Charger\""]",2239.02,{},65440,0,"""Europe""" +2024-06-09,88007,566,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1072.66,"{\""promo\"": \""30%\""}",215812,1,"""South America""" +2024-09-10,88008,5422,"[\""Laptop\""]",3361.61,{},105764,1,"""Africa""" +2024-11-22,88009,2929,"[\""Phone\"", \""Monitor\""]",1896.91,"{\""seasonal\"": \""24%\""}",257877,0,"""North America""" +2024-09-05,88010,87,"[\""Laptop\"", \""Phone\""]",2031.64,"{\"": \""8%\""}",127221,0,"""Africa""" +2023-06-17,88011,1142,"[\""Headphones\"", \""Tablet\""]",75.71,{},122337,1,"""Africa""" +2023-01-21,88012,4098,"[\""Keyboard\"", \""Monitor\""]",1842.56,{},161544,1,"""South America""" +2024-09-01,88013,3510,"[\""Phone\"", \""Monitor\""]",4497.61,{},297091,1,"""South America""" +2023-12-26,88014,8989,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4718.51,"{\""seasonal\"": \""9%\""}",41873,0,"""North America""" +2024-04-29,88015,5496,"[\""Charger\"", \""Monitor\""]",2141.14,"{\""seasonal\"": \""7%\""}",253846,1,"""Africa""" +2024-07-15,88016,2617,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1575.56,{},256222,1,"""South America""" +2024-07-31,88017,9954,"[\""Charger\""]",1639.09,"{\""promo\"": \""9%\""}",18475,1,"""Europe""" +2024-06-19,88018,8709,"[\""Headphones\""]",3045.18,"{\"": \""16%\""}",89705,1,"""Africa""" +2023-08-13,88019,5212,"[\""Monitor\""]",2794.26,{},62808,1,"""Europe""" +2024-11-18,88020,5041,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",624.18,{},108968,1,"""Europe""" +2023-06-16,88021,5531,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2379.76,{},127634,1,"""Africa""" +2023-03-31,88022,7882,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4429.27,{},108797,0,"""North America""" +2024-10-07,88023,8916,"[\""Laptop\"", \""Monitor\""]",1770.7,{},126242,0,"""Asia""" +2024-12-29,88024,2869,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1698.23,"{\""promo\"": \""22%\""}",28585,0,"""Africa""" +2024-02-13,88025,5550,"[\""Monitor\"", \""Headphones\""]",3645.75,"{\""loyalty\"": \""21%\""}",96401,1,"""Europe""" +2023-07-01,88026,6498,"[\""Charger\""]",629.73,{},87683,0,"""South America""" +2023-09-05,88027,576,"[\""Monitor\""]",1498.7,{},284955,0,"""Africa""" +2024-03-26,88028,3022,"[\""Keyboard\""]",2811.53,"{\""seasonal\"": \""13%\""}",138737,1,"""North America""" +2023-12-31,88029,8916,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",701.41,{},125886,0,"""North America""" +2024-11-18,88030,2558,"[\""Laptop\""]",1136.5,"{\""loyalty\"": \""20%\""}",240433,0,"""North America""" +2023-10-07,88031,7131,"[\""Headphones\"", \""Phone\""]",515.28,{},164166,0,"""Africa""" +2024-10-04,88032,4270,"[\""Phone\""]",593.68,"{\""loyalty\"": \""9%\""}",297690,1,"""Europe""" +2023-06-07,88033,8880,"[\""Headphones\"", \""Charger\""]",3805.14,{},211679,1,"""Europe""" +2023-03-15,88034,9382,"[\""Monitor\""]",2637.4,{},240122,1,"""South America""" +2023-10-25,88035,4929,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1512.18,{},142666,0,"""North America""" +2024-08-21,88036,5182,"[\""Monitor\""]",4761.63,{},13053,1,"""Europe""" +2024-03-23,88037,9945,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",1862.74,{},178474,0,"""North America""" +2023-03-27,88038,1260,"[\""Laptop\""]",1027.18,{},163874,1,"""Asia""" +2024-07-08,88039,4586,"[\""Wireless Mouse\"", \""Keyboard\""]",3576.89,{},115151,0,"""Asia""" +2023-02-15,88040,5729,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1423.93,"{\""loyalty\"": \""16%\""}",192824,1,"""Africa""" +2024-09-23,88041,4097,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1437.39,"{\""promo\"": \""21%\""}",270234,0,"""Europe""" +2023-04-07,88042,1243,"[\""Keyboard\"", \""Monitor\""]",1453.92,{},295401,1,"""Europe""" +2024-12-27,88043,7379,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2974.28,"{\"": \""17%\""}",108815,1,"""South America""" +2023-05-28,88044,3283,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4116.33,"{\""promo\"": \""19%\""}",169771,1,"""North America""" +2023-07-16,88045,335,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",105.0,{},237814,0,"""Africa""" +2023-12-02,88046,4901,"[\""Tablet\"", \""Wireless Mouse\""]",516.65,{},70642,0,"""Africa""" +2023-10-24,88047,6733,"[\""Laptop\"", \""Keyboard\""]",785.71,{},241672,0,"""South America""" +2023-01-05,88048,588,"[\""Headphones\""]",4084.92,"{\"": \""6%\""}",22755,1,"""Africa""" +2023-11-20,88049,7429,"[\""Laptop\"", \""Headphones\""]",4805.65,"{\""promo\"": \""21%\""}",86843,0,"""North America""" +2023-02-24,88050,80,"[\""Headphones\"", \""Monitor\""]",2269.97,"{\""seasonal\"": \""20%\""}",25998,1,"""South America""" +2023-03-23,88051,4242,"[\""Tablet\"", \""Monitor\""]",2054.25,"{\""loyalty\"": \""28%\""}",216265,0,"""Asia""" +2024-06-20,88052,9919,"[\""Charger\"", \""Wireless Mouse\""]",1035.54,{},256003,0,"""North America""" +2023-05-24,88053,7734,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4013.86,{},242394,1,"""Asia""" +2024-02-18,88054,6644,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",383.37,"{\""loyalty\"": \""8%\""}",20878,1,"""North America""" +2023-05-27,88055,6600,"[\""Headphones\""]",1446.74,"{\""promo\"": \""6%\""}",213104,1,"""Asia""" +2024-05-15,88056,1371,"[\""Phone\""]",1728.41,{},164856,0,"""Africa""" +2023-11-05,88057,6305,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",65.78,{},133682,1,"""Europe""" +2023-12-30,88058,8200,"[\""Keyboard\"", \""Phone\""]",1239.61,{},201620,1,"""Asia""" +2024-04-06,88059,8503,"[\""Laptop\"", \""Wireless Mouse\""]",492.09,"{\""seasonal\"": \""28%\""}",233072,1,"""Europe""" +2024-10-18,88060,7951,"[\""Keyboard\""]",111.54,"{\""seasonal\"": \""8%\""}",189084,0,"""South America""" +2023-01-23,88061,5261,"[\""Monitor\""]",3327.02,{},281164,0,"""South America""" +2023-11-22,88062,9565,"[\""Wireless Mouse\""]",3329.05,"{\"": \""24%\""}",165000,1,"""South America""" +2023-01-26,88063,7575,"[\""Wireless Mouse\"", \""Laptop\""]",805.39,{},262707,0,"""South America""" +2023-02-23,88064,76,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",199.08,"{\""promo\"": \""8%\""}",7255,0,"""Europe""" +2023-04-15,88065,6868,"[\""Monitor\"", \""Headphones\""]",908.27,"{\""loyalty\"": \""10%\""}",164666,0,"""South America""" +2024-02-21,88066,604,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3969.6,{},163304,1,"""Europe""" +2023-07-07,88067,7806,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4819.3,{},231568,1,"""Asia""" +2024-03-16,88068,7769,"[\""Laptop\"", \""Charger\""]",2400.67,"{\""loyalty\"": \""21%\""}",52716,0,"""Asia""" +2024-09-25,88069,6758,"[\""Monitor\""]",1451.32,"{\"": \""27%\""}",22453,1,"""South America""" +2023-04-14,88070,8767,"[\""Keyboard\""]",4574.79,"{\""loyalty\"": \""21%\""}",72520,0,"""Europe""" +2023-01-14,88071,9433,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4823.84,{},35482,0,"""South America""" +2024-11-30,88072,5172,"[\""Monitor\""]",4731.02,{},127764,1,"""Asia""" +2024-11-19,88073,5622,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1764.26,"{\"": \""14%\""}",154711,0,"""South America""" +2023-04-17,88074,9646,"[\""Charger\"", \""Laptop\""]",3190.71,{},51954,1,"""Asia""" +2023-09-22,88075,5289,"[\""Wireless Mouse\""]",3969.46,"{\""seasonal\"": \""11%\""}",93099,1,"""South America""" +2024-02-07,88076,359,"[\""Monitor\"", \""Phone\""]",1425.15,"{\"": \""12%\""}",192886,0,"""Europe""" +2023-07-19,88077,9203,"[\""Charger\""]",2925.35,{},19046,0,"""South America""" +2024-12-23,88078,3283,"[\""Monitor\""]",2916.97,{},80914,0,"""North America""" +2024-09-02,88079,3240,"[\""Monitor\""]",730.18,"{\""loyalty\"": \""7%\""}",216326,1,"""North America""" +2024-06-01,88080,3810,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",3126.78,{},3536,1,"""Asia""" +2024-04-13,88081,2106,"[\""Headphones\"", \""Wireless Mouse\""]",735.96,"{\""seasonal\"": \""8%\""}",215966,1,"""Asia""" +2023-10-04,88082,5618,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3541.28,"{\""loyalty\"": \""23%\""}",123975,0,"""Africa""" +2023-06-17,88083,6000,"[\""Keyboard\""]",180.95,{},110307,1,"""Africa""" +2024-12-13,88084,7869,"[\""Charger\"", \""Monitor\""]",2234.73,"{\""loyalty\"": \""22%\""}",153713,1,"""Asia""" +2024-09-05,88085,4164,"[\""Laptop\"", \""Wireless Mouse\""]",4264.51,{},52773,1,"""South America""" +2023-10-16,88086,378,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2963.69,{},155632,0,"""North America""" +2023-06-17,88087,1279,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2662.91,{},217021,0,"""South America""" +2023-12-24,88088,6697,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4022.16,{},84274,1,"""North America""" +2024-08-30,88089,2575,"[\""Phone\"", \""Tablet\""]",4783.07,{},192376,1,"""South America""" +2024-12-29,88090,4729,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4627.06,"{\"": \""10%\""}",19982,1,"""Europe""" +2024-05-12,88091,8352,"[\""Charger\"", \""Phone\""]",581.08,"{\"": \""11%\""}",128780,0,"""Europe""" +2023-04-30,88092,2294,"[\""Monitor\""]",2363.14,{},110727,1,"""Europe""" +2023-04-20,88093,6569,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1592.55,{},78377,1,"""Asia""" +2023-12-03,88094,654,"[\""Laptop\""]",4506.7,"{\""promo\"": \""6%\""}",181623,0,"""South America""" +2023-10-22,88095,5172,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1170.43,"{\""loyalty\"": \""15%\""}",118148,1,"""South America""" +2024-08-30,88096,7961,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2303.12,"{\"": \""16%\""}",189778,0,"""North America""" +2024-03-14,88097,9989,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4759.01,"{\""loyalty\"": \""10%\""}",291387,1,"""Africa""" +2023-03-24,88098,5571,"[\""Monitor\""]",1353.14,{},78807,1,"""Asia""" +2023-05-29,88099,2225,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2055.13,{},126571,1,"""Africa""" +2023-12-21,88100,2780,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2779.29,{},6173,0,"""North America""" +2024-12-08,88101,7689,"[\""Headphones\""]",4553.56,{},178000,1,"""Asia""" +2024-04-07,88102,1010,"[\""Headphones\""]",885.2,{},296369,1,"""South America""" +2024-06-04,88103,3735,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2748.34,{},207672,0,"""Asia""" +2024-04-19,88104,2485,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3491.7,{},74382,0,"""Europe""" +2023-03-17,88105,80,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2466.6,{},159453,0,"""North America""" +2024-02-08,88106,2620,"[\""Tablet\""]",1833.6,{},257122,1,"""Africa""" +2024-05-12,88107,6514,"[\""Tablet\""]",4735.23,"{\"": \""16%\""}",210220,1,"""North America""" +2024-10-20,88108,8356,"[\""Wireless Mouse\""]",4275.92,{},229464,1,"""Africa""" +2024-06-02,88109,3885,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1495.14,"{\"": \""13%\""}",51498,0,"""North America""" +2023-09-27,88110,820,"[\""Headphones\"", \""Laptop\""]",3234.33,{},68600,0,"""Asia""" +2023-01-22,88111,2690,"[\""Headphones\""]",4622.24,"{\""loyalty\"": \""15%\""}",192088,1,"""Africa""" +2023-12-04,88112,4496,"[\""Tablet\""]",3275.58,{},55280,0,"""Africa""" +2023-10-01,88113,9575,"[\""Phone\""]",1593.68,"{\"": \""13%\""}",92786,0,"""Africa""" +2024-07-04,88114,2035,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4941.85,"{\""loyalty\"": \""7%\""}",208848,0,"""Asia""" +2023-01-31,88115,5622,"[\""Tablet\"", \""Laptop\""]",2737.45,"{\""seasonal\"": \""9%\""}",297248,0,"""Europe""" +2023-05-03,88116,7955,"[\""Phone\"", \""Keyboard\""]",1358.5,{},166767,0,"""Asia""" +2023-07-26,88117,8060,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1114.51,{},163580,0,"""Africa""" +2023-06-17,88118,1005,"[\""Phone\""]",631.12,{},54893,1,"""Europe""" +2024-07-14,88119,3204,"[\""Laptop\"", \""Headphones\""]",818.37,"{\"": \""13%\""}",103698,1,"""Europe""" +2024-05-01,88120,5885,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3890.74,{},150312,0,"""Asia""" +2023-04-13,88121,3404,"[\""Phone\"", \""Monitor\""]",1073.83,{},114551,0,"""North America""" +2024-08-30,88122,9118,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4448.37,"{\"": \""5%\""}",182510,1,"""Africa""" +2024-03-03,88123,4782,"[\""Tablet\"", \""Wireless Mouse\""]",3115.7,"{\"": \""28%\""}",60806,1,"""Asia""" +2023-12-18,88124,8175,"[\""Headphones\"", \""Charger\""]",2106.69,"{\""seasonal\"": \""29%\""}",66110,1,"""South America""" +2023-01-02,88125,8257,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",3461.71,"{\""seasonal\"": \""9%\""}",196849,1,"""Europe""" +2024-10-17,88126,5382,"[\""Wireless Mouse\"", \""Laptop\""]",284.23,"{\""seasonal\"": \""27%\""}",116154,1,"""South America""" +2024-11-14,88127,2184,"[\""Phone\""]",3344.57,"{\"": \""23%\""}",26970,0,"""Africa""" +2024-09-27,88128,9528,"[\""Phone\""]",4222.3,{},91401,0,"""Europe""" +2024-11-10,88129,5065,"[\""Charger\""]",2986.09,"{\""loyalty\"": \""8%\""}",5321,0,"""Asia""" +2024-02-08,88130,3361,"[\""Laptop\"", \""Keyboard\""]",1553.43,{},67607,0,"""North America""" +2024-10-25,88131,7790,"[\""Laptop\""]",2787.13,"{\""promo\"": \""9%\""}",53492,1,"""South America""" +2023-11-04,88132,7473,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",548.13,"{\"": \""28%\""}",181861,0,"""Asia""" +2023-04-27,88133,704,"[\""Tablet\"", \""Phone\""]",3051.42,{},142245,0,"""South America""" +2024-10-07,88134,9677,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2490.25,"{\"": \""24%\""}",262333,1,"""Asia""" +2023-08-30,88135,9012,"[\""Laptop\"", \""Tablet\""]",1040.41,"{\""promo\"": \""28%\""}",140472,0,"""North America""" +2023-11-30,88136,6430,"[\""Laptop\"", \""Tablet\""]",175.13,{},264260,1,"""Asia""" +2024-10-08,88137,1005,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1170.41,{},6528,1,"""Asia""" +2023-04-04,88138,9265,"[\""Laptop\"", \""Headphones\""]",2772.91,{},213946,1,"""South America""" +2024-04-01,88139,4209,"[\""Keyboard\"", \""Charger\""]",3327.06,"{\""loyalty\"": \""19%\""}",207166,1,"""North America""" +2024-12-20,88140,1441,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3919.26,"{\""promo\"": \""6%\""}",201366,1,"""Europe""" +2023-11-25,88141,7392,"[\""Phone\""]",3356.08,{},218041,1,"""Africa""" +2024-01-19,88142,206,"[\""Wireless Mouse\"", \""Laptop\""]",3559.47,"{\""loyalty\"": \""16%\""}",149021,0,"""North America""" +2023-04-23,88143,2029,"[\""Laptop\""]",322.22,{},22880,1,"""North America""" +2023-07-02,88144,7094,"[\""Charger\""]",919.77,{},88615,1,"""North America""" +2023-05-19,88145,5430,"[\""Wireless Mouse\""]",845.45,"{\"": \""10%\""}",108986,0,"""North America""" +2024-07-24,88146,3322,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",58.53,{},185914,0,"""Europe""" +2023-07-01,88147,1708,"[\""Headphones\""]",4004.87,"{\""loyalty\"": \""28%\""}",183319,1,"""Europe""" +2024-10-31,88148,449,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",482.33,{},28238,0,"""Asia""" +2024-07-11,88149,8644,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",464.74,{},281862,0,"""Africa""" +2024-02-09,88150,2711,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4826.64,"{\""promo\"": \""5%\""}",299678,1,"""Africa""" +2023-01-24,88151,6119,"[\""Phone\""]",4242.49,{},260823,0,"""South America""" +2023-05-07,88152,695,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4567.37,{},199777,0,"""Africa""" +2024-10-31,88153,4955,"[\""Laptop\"", \""Monitor\""]",638.92,"{\""loyalty\"": \""11%\""}",98874,0,"""South America""" +2023-11-20,88154,2213,"[\""Charger\"", \""Phone\""]",3638.14,"{\""loyalty\"": \""29%\""}",219995,1,"""Africa""" +2024-09-07,88155,5541,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2951.01,{},197712,0,"""South America""" +2024-02-05,88156,1575,"[\""Phone\""]",2709.12,{},222215,1,"""Asia""" +2024-03-08,88157,1626,"[\""Headphones\""]",92.88,"{\""seasonal\"": \""6%\""}",22010,0,"""North America""" +2023-11-05,88158,5763,"[\""Laptop\"", \""Wireless Mouse\""]",2290.26,{},57030,1,"""South America""" +2023-11-21,88159,916,"[\""Keyboard\""]",304.5,"{\"": \""14%\""}",225831,1,"""South America""" +2023-04-20,88160,3135,"[\""Wireless Mouse\""]",2524.68,{},33867,1,"""North America""" +2023-03-27,88161,1691,"[\""Keyboard\"", \""Headphones\""]",4368.65,"{\""seasonal\"": \""5%\""}",146355,0,"""Europe""" +2024-05-03,88162,5182,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",651.23,{},111791,1,"""South America""" +2023-05-21,88163,8369,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",2673.52,"{\""seasonal\"": \""16%\""}",267579,1,"""South America""" +2024-02-21,88164,3584,"[\""Charger\"", \""Keyboard\""]",1230.39,"{\""loyalty\"": \""24%\""}",235190,1,"""Europe""" +2023-12-18,88165,3786,"[\""Headphones\""]",2127.04,"{\""seasonal\"": \""25%\""}",185649,0,"""Europe""" +2023-05-12,88166,2925,"[\""Phone\"", \""Laptop\""]",2202.7,"{\""loyalty\"": \""21%\""}",162486,1,"""North America""" +2024-04-15,88167,6751,"[\""Keyboard\"", \""Monitor\""]",106.13,{},229021,0,"""Asia""" +2024-04-15,88168,8192,"[\""Laptop\"", \""Monitor\""]",1727.8,{},101065,0,"""South America""" +2024-03-25,88169,7824,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",180.97,"{\""loyalty\"": \""30%\""}",183837,1,"""Asia""" +2024-07-01,88170,8468,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2409.48,"{\""loyalty\"": \""17%\""}",123204,0,"""Europe""" +2024-02-11,88171,7797,"[\""Wireless Mouse\"", \""Keyboard\""]",2573.82,{},133281,1,"""South America""" +2024-01-23,88172,8552,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4924.2,"{\"": \""23%\""}",214234,0,"""Asia""" +2024-06-12,88173,8742,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3865.84,"{\""promo\"": \""25%\""}",2839,0,"""Europe""" +2024-07-29,88174,1881,"[\""Phone\"", \""Keyboard\""]",3902.11,"{\""promo\"": \""8%\""}",296182,0,"""Asia""" +2024-01-12,88175,9990,"[\""Keyboard\""]",1623.78,{},241753,1,"""Africa""" +2024-09-19,88176,3898,"[\""Phone\""]",731.68,"{\""loyalty\"": \""16%\""}",211829,0,"""South America""" +2024-07-03,88177,5034,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",4412.35,"{\""loyalty\"": \""30%\""}",31996,1,"""South America""" +2023-11-15,88178,8727,"[\""Phone\""]",3622.48,"{\""seasonal\"": \""22%\""}",214377,0,"""Asia""" +2024-08-03,88179,209,"[\""Charger\""]",690.65,"{\""promo\"": \""8%\""}",186795,0,"""North America""" +2024-02-04,88180,4553,"[\""Phone\"", \""Monitor\""]",3855.83,{},213507,1,"""North America""" +2023-10-28,88181,6495,"[\""Wireless Mouse\""]",725.46,"{\""loyalty\"": \""6%\""}",25137,0,"""North America""" +2024-10-23,88182,9586,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1838.26,"{\""promo\"": \""22%\""}",236479,0,"""South America""" +2023-08-06,88183,2518,"[\""Tablet\"", \""Keyboard\""]",431.42,"{\""seasonal\"": \""27%\""}",279135,0,"""South America""" +2024-04-11,88184,6103,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2036.87,{},1514,0,"""Africa""" +2024-11-26,88185,6530,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2510.88,{},113527,1,"""North America""" +2023-03-28,88186,5995,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",684.51,{},88658,0,"""South America""" +2024-06-27,88187,5088,"[\""Wireless Mouse\""]",4322.62,"{\""seasonal\"": \""25%\""}",42974,1,"""South America""" +2023-10-02,88188,7608,"[\""Monitor\""]",2367.31,{},198944,1,"""Asia""" +2024-08-27,88189,9872,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2808.49,{},114064,1,"""Africa""" +2023-04-03,88190,8339,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1896.12,{},295761,1,"""Africa""" +2023-08-26,88191,9414,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1557.01,{},208596,1,"""Europe""" +2023-06-12,88192,1789,"[\""Monitor\"", \""Laptop\""]",3801.81,{},197956,0,"""Africa""" +2024-09-19,88193,839,"[\""Wireless Mouse\""]",3482.9,{},54156,1,"""Asia""" +2024-02-28,88194,3051,"[\""Charger\""]",579.28,{},226105,1,"""Asia""" +2023-08-05,88195,8728,"[\""Phone\""]",4504.55,{},193062,1,"""Asia""" +2023-01-12,88196,8021,"[\""Tablet\"", \""Charger\""]",1473.65,{},41875,1,"""North America""" +2023-10-12,88197,6893,"[\""Laptop\"", \""Monitor\""]",1874.03,{},74877,1,"""North America""" +2023-11-06,88198,9495,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2934.54,{},273983,0,"""North America""" +2024-10-06,88199,4677,"[\""Laptop\"", \""Headphones\""]",1896.89,{},48177,1,"""Africa""" +2023-02-13,88200,8834,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1008.39,{},250568,1,"""Africa""" +2023-07-11,88201,6651,"[\""Tablet\"", \""Charger\""]",927.89,{},203719,0,"""Europe""" +2023-04-24,88202,8348,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",4079.7,{},126411,1,"""Europe""" +2023-05-25,88203,8935,"[\""Charger\""]",2400.13,"{\""promo\"": \""6%\""}",229907,1,"""South America""" +2024-06-10,88204,170,"[\""Wireless Mouse\"", \""Tablet\""]",230.59,"{\""loyalty\"": \""19%\""}",228257,0,"""North America""" +2024-09-17,88205,576,"[\""Monitor\"", \""Charger\""]",1019.73,"{\""seasonal\"": \""19%\""}",220423,0,"""Asia""" +2023-08-11,88206,743,"[\""Wireless Mouse\""]",1972.18,{},244175,0,"""Africa""" +2024-09-18,88207,1108,"[\""Monitor\"", \""Phone\""]",1179.56,{},295242,0,"""South America""" +2023-07-17,88208,4083,"[\""Monitor\"", \""Phone\""]",4850.31,{},31212,1,"""Asia""" +2024-01-26,88209,2983,"[\""Tablet\""]",2708.77,"{\""seasonal\"": \""11%\""}",77576,0,"""Europe""" +2023-12-17,88210,3956,"[\""Monitor\""]",2824.53,"{\""seasonal\"": \""14%\""}",190399,1,"""South America""" +2024-03-13,88211,9697,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",573.88,"{\""seasonal\"": \""21%\""}",93345,0,"""North America""" +2024-04-19,88212,6534,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2460.46,"{\""promo\"": \""20%\""}",70489,0,"""Europe""" +2023-04-07,88213,8367,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",388.7,"{\"": \""18%\""}",258348,0,"""South America""" +2024-12-26,88214,7205,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",722.42,"{\""loyalty\"": \""20%\""}",290173,0,"""Europe""" +2023-07-20,88215,8479,"[\""Headphones\""]",4757.08,{},131082,0,"""Asia""" +2023-02-28,88216,8663,"[\""Phone\""]",1962.75,"{\""promo\"": \""8%\""}",286056,0,"""Africa""" +2024-07-31,88217,17,"[\""Tablet\"", \""Monitor\""]",4126.84,"{\""seasonal\"": \""6%\""}",71280,1,"""South America""" +2024-04-02,88218,381,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1298.18,{},191128,0,"""Europe""" +2024-01-11,88219,545,"[\""Charger\""]",1110.9,"{\""loyalty\"": \""30%\""}",74695,1,"""South America""" +2024-11-21,88220,5408,"[\""Phone\""]",1075.37,"{\""seasonal\"": \""19%\""}",119970,1,"""Asia""" +2024-12-22,88221,4928,"[\""Charger\"", \""Phone\"", \""Monitor\""]",1696.98,"{\""seasonal\"": \""6%\""}",193974,0,"""South America""" +2023-09-26,88222,7281,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2602.22,{},105903,1,"""Asia""" +2023-11-26,88223,7658,"[\""Phone\"", \""Wireless Mouse\""]",913.51,{},234543,0,"""South America""" +2023-10-16,88224,6314,"[\""Wireless Mouse\"", \""Keyboard\""]",4585.37,{},209938,1,"""Asia""" +2023-01-01,88225,7187,"[\""Wireless Mouse\"", \""Tablet\""]",3357.17,{},255307,0,"""South America""" +2023-02-05,88226,1411,"[\""Charger\"", \""Tablet\""]",4465.6,"{\""promo\"": \""23%\""}",56999,0,"""North America""" +2024-09-22,88227,317,"[\""Wireless Mouse\""]",3393.36,{},21103,1,"""Europe""" +2023-09-09,88228,4949,"[\""Charger\"", \""Laptop\""]",2174.74,"{\""loyalty\"": \""30%\""}",31843,0,"""South America""" +2024-07-27,88229,5704,"[\""Phone\"", \""Monitor\""]",4710.55,{},78294,0,"""Africa""" +2023-03-08,88230,7729,"[\""Monitor\""]",4510.28,{},247791,1,"""North America""" +2024-01-03,88231,2665,"[\""Monitor\""]",629.19,"{\""loyalty\"": \""21%\""}",204296,1,"""Europe""" +2024-04-04,88232,5073,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3721.72,{},127922,0,"""Africa""" +2023-08-07,88233,8331,"[\""Charger\"", \""Keyboard\""]",632.91,"{\"": \""7%\""}",37068,0,"""Europe""" +2024-08-16,88234,5688,"[\""Charger\""]",1647.53,"{\""promo\"": \""13%\""}",223062,1,"""Africa""" +2023-10-03,88235,7652,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2197.5,"{\""loyalty\"": \""28%\""}",252495,0,"""Europe""" +2024-11-28,88236,4611,"[\""Monitor\"", \""Phone\"", \""Charger\""]",549.09,"{\"": \""23%\""}",184271,0,"""Africa""" +2023-03-27,88237,2239,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4877.78,{},248008,0,"""South America""" +2024-04-10,88238,3168,"[\""Laptop\"", \""Wireless Mouse\""]",4051.51,"{\""promo\"": \""6%\""}",119050,0,"""Asia""" +2024-12-27,88239,6393,"[\""Keyboard\""]",1619.81,"{\""promo\"": \""28%\""}",55804,1,"""Africa""" +2023-04-16,88240,3503,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",484.08,"{\"": \""9%\""}",238545,0,"""Europe""" +2023-11-15,88241,1310,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3546.38,{},93746,0,"""North America""" +2024-03-12,88242,7192,"[\""Laptop\"", \""Monitor\""]",2994.25,"{\""loyalty\"": \""23%\""}",71415,0,"""North America""" +2023-12-25,88243,1516,"[\""Headphones\"", \""Tablet\""]",1345.32,"{\""seasonal\"": \""17%\""}",115227,1,"""Europe""" +2024-02-26,88244,5639,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2670.66,{},86232,1,"""Europe""" +2024-07-11,88245,7797,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4210.88,{},237610,1,"""South America""" +2024-11-05,88246,5261,"[\""Tablet\"", \""Phone\""]",4591.5,"{\""loyalty\"": \""15%\""}",251539,1,"""Europe""" +2023-05-17,88247,5116,"[\""Headphones\""]",3120.26,"{\""promo\"": \""28%\""}",299889,1,"""Asia""" +2023-06-27,88248,9531,"[\""Wireless Mouse\""]",4336.19,"{\"": \""21%\""}",192498,1,"""South America""" +2024-11-16,88249,7664,"[\""Laptop\"", \""Monitor\""]",2809.77,{},96535,0,"""South America""" +2023-06-17,88250,2362,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3356.72,"{\""loyalty\"": \""9%\""}",269847,0,"""North America""" +2024-07-14,88251,4257,"[\""Headphones\""]",355.75,{},27071,1,"""North America""" +2023-07-26,88252,1955,"[\""Charger\"", \""Keyboard\""]",1694.86,{},269196,1,"""Asia""" +2023-01-02,88253,404,"[\""Laptop\"", \""Keyboard\""]",988.89,"{\""promo\"": \""30%\""}",202459,0,"""Africa""" +2024-01-31,88254,6555,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4492.31,{},8416,1,"""Asia""" +2024-05-15,88255,67,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2231.34,{},232757,0,"""Europe""" +2024-07-09,88256,8622,"[\""Laptop\"", \""Monitor\""]",3133.09,{},280312,1,"""Africa""" +2023-07-21,88257,4894,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3935.05,"{\""promo\"": \""7%\""}",150256,0,"""North America""" +2024-12-21,88258,4909,"[\""Tablet\"", \""Keyboard\""]",1437.64,"{\"": \""11%\""}",219049,0,"""North America""" +2023-07-23,88259,6086,"[\""Wireless Mouse\"", \""Monitor\""]",4037.73,{},58997,0,"""South America""" +2024-07-06,88260,1543,"[\""Phone\""]",1673.29,{},6184,0,"""Africa""" +2023-07-05,88261,2318,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4493.16,{},262769,0,"""South America""" +2024-03-17,88262,9948,"[\""Tablet\"", \""Keyboard\""]",693.14,"{\"": \""18%\""}",195125,1,"""South America""" +2023-04-15,88263,5289,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",395.91,"{\""seasonal\"": \""15%\""}",256500,0,"""South America""" +2024-08-10,88264,1925,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2331.64,{},234260,1,"""North America""" +2023-05-08,88265,4661,"[\""Wireless Mouse\"", \""Monitor\""]",1764.29,"{\""loyalty\"": \""8%\""}",259001,0,"""Asia""" +2023-08-29,88266,7696,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3059.46,"{\""loyalty\"": \""17%\""}",108777,0,"""North America""" +2024-07-04,88267,4762,"[\""Phone\"", \""Wireless Mouse\""]",1736.52,"{\""loyalty\"": \""12%\""}",223959,0,"""Africa""" +2023-05-16,88268,3848,"[\""Headphones\""]",1759.32,"{\"": \""10%\""}",187521,0,"""Africa""" +2024-06-12,88269,8600,"[\""Monitor\""]",3911.32,"{\""loyalty\"": \""19%\""}",193222,1,"""Asia""" +2024-10-10,88270,3286,"[\""Charger\"", \""Tablet\""]",2059.58,"{\"": \""15%\""}",154231,0,"""Asia""" +2023-02-27,88271,3016,"[\""Keyboard\""]",1893.3,"{\""seasonal\"": \""20%\""}",165072,0,"""North America""" +2023-06-18,88272,2484,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2136.39,"{\""loyalty\"": \""21%\""}",75180,0,"""Asia""" +2024-12-16,88273,7046,"[\""Wireless Mouse\""]",3369.43,"{\""promo\"": \""8%\""}",70246,0,"""South America""" +2024-01-24,88274,2070,"[\""Laptop\""]",1295.28,{},6670,0,"""Asia""" +2023-04-24,88275,3491,"[\""Laptop\"", \""Monitor\""]",1622.98,"{\""loyalty\"": \""17%\""}",272527,1,"""Europe""" +2023-07-31,88276,5473,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3797.46,{},89758,1,"""Europe""" +2023-05-12,88277,1695,"[\""Keyboard\""]",3248.89,"{\"": \""9%\""}",189070,0,"""Africa""" +2024-01-10,88278,7752,"[\""Monitor\""]",4804.37,{},199241,1,"""Europe""" +2023-03-10,88279,1455,"[\""Charger\"", \""Phone\""]",2600.56,"{\"": \""14%\""}",279558,0,"""South America""" +2024-07-28,88280,9688,"[\""Headphones\"", \""Monitor\""]",3025.18,"{\""seasonal\"": \""19%\""}",254861,0,"""Europe""" +2024-05-12,88281,3036,"[\""Charger\"", \""Tablet\""]",4288.71,{},180790,1,"""North America""" +2024-12-03,88282,5290,"[\""Tablet\""]",2403.09,{},116425,0,"""North America""" +2023-02-27,88283,985,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3418.6,{},214398,0,"""North America""" +2023-07-26,88284,7023,"[\""Keyboard\"", \""Monitor\""]",651.1,"{\""seasonal\"": \""28%\""}",93773,0,"""Africa""" +2024-04-17,88285,4191,"[\""Monitor\""]",4076.82,"{\""promo\"": \""9%\""}",193227,1,"""Africa""" +2024-04-11,88286,6230,"[\""Charger\""]",159.78,{},12484,1,"""Africa""" +2023-01-03,88287,4461,"[\""Wireless Mouse\"", \""Laptop\""]",1573.23,{},86461,0,"""South America""" +2023-01-27,88288,8215,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4194.15,"{\""seasonal\"": \""10%\""}",102927,0,"""Europe""" +2023-04-07,88289,6138,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2715.11,"{\""seasonal\"": \""27%\""}",35471,1,"""South America""" +2024-05-10,88290,4740,"[\""Laptop\"", \""Headphones\""]",1871.26,{},166801,0,"""South America""" +2024-08-29,88291,8438,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2557.53,"{\""promo\"": \""10%\""}",287058,1,"""North America""" +2023-07-07,88292,1016,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1664.12,{},268701,0,"""Africa""" +2024-05-31,88293,9570,"[\""Wireless Mouse\"", \""Tablet\""]",4554.02,{},183838,1,"""Africa""" +2023-08-02,88294,2553,"[\""Monitor\""]",717.91,{},119796,1,"""South America""" +2024-02-08,88295,3554,"[\""Tablet\""]",1337.07,{},158801,1,"""Europe""" +2024-06-26,88296,7970,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1298.8,"{\""seasonal\"": \""28%\""}",64239,0,"""North America""" +2024-04-20,88297,7860,"[\""Laptop\"", \""Charger\""]",2194.34,{},4627,1,"""North America""" +2023-06-20,88298,7394,"[\""Laptop\""]",2045.83,{},151511,1,"""North America""" +2024-01-20,88299,7399,"[\""Tablet\"", \""Phone\""]",518.05,{},230166,1,"""Africa""" +2023-10-06,88300,6236,"[\""Laptop\"", \""Keyboard\""]",4702.63,"{\"": \""28%\""}",66302,1,"""Africa""" +2024-08-17,88301,2203,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4291.77,{},147406,0,"""North America""" +2023-03-15,88302,8107,"[\""Monitor\"", \""Wireless Mouse\""]",1253.9,"{\""seasonal\"": \""14%\""}",224716,0,"""Europe""" +2024-06-01,88303,8576,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4111.65,{},10816,0,"""South America""" +2024-01-02,88304,1549,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3650.79,{},153423,0,"""South America""" +2023-08-11,88305,4537,"[\""Monitor\"", \""Laptop\""]",2403.38,{},296783,0,"""Africa""" +2023-06-05,88306,3911,"[\""Wireless Mouse\"", \""Keyboard\""]",4783.02,"{\""loyalty\"": \""13%\""}",11751,0,"""North America""" +2023-12-03,88307,1331,"[\""Charger\"", \""Phone\""]",543.21,{},219991,0,"""North America""" +2023-12-22,88308,7473,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1291.95,"{\""loyalty\"": \""18%\""}",133181,1,"""North America""" +2023-05-22,88309,1857,"[\""Phone\"", \""Monitor\""]",690.97,"{\""promo\"": \""7%\""}",158260,1,"""South America""" +2024-05-08,88310,9909,"[\""Keyboard\"", \""Laptop\""]",1694.64,"{\""seasonal\"": \""23%\""}",159523,0,"""South America""" +2023-12-01,88311,4943,"[\""Phone\"", \""Keyboard\""]",3941.26,{},274639,0,"""Europe""" +2024-03-07,88312,9088,"[\""Keyboard\"", \""Phone\""]",483.96,{},39921,0,"""South America""" +2023-10-21,88313,409,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3796.09,"{\""seasonal\"": \""20%\""}",269100,0,"""Asia""" +2023-10-25,88314,2389,"[\""Headphones\"", \""Phone\""]",2926.02,{},117954,0,"""Asia""" +2023-07-01,88315,6340,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2033.3,"{\""promo\"": \""18%\""}",270298,1,"""South America""" +2024-03-24,88316,8263,"[\""Keyboard\"", \""Tablet\""]",1773.05,"{\"": \""25%\""}",125317,0,"""Europe""" +2024-04-12,88317,4303,"[\""Headphones\"", \""Charger\""]",1094.71,{},116727,0,"""North America""" +2023-10-19,88318,2065,"[\""Laptop\"", \""Wireless Mouse\""]",2898.61,"{\""promo\"": \""10%\""}",190532,1,"""Europe""" +2023-05-12,88319,7566,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4040.93,{},184488,1,"""Asia""" +2023-11-07,88320,9097,"[\""Phone\"", \""Keyboard\""]",3426.08,{},21056,0,"""Asia""" +2024-05-17,88321,4841,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2141.46,"{\"": \""12%\""}",47369,0,"""South America""" +2024-02-04,88322,1462,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",514.48,"{\""loyalty\"": \""14%\""}",80320,1,"""Europe""" +2023-03-05,88323,3547,"[\""Phone\""]",3761.08,"{\""seasonal\"": \""11%\""}",165577,1,"""North America""" +2023-09-14,88324,7402,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4373.12,{},68775,1,"""North America""" +2024-02-09,88325,3576,"[\""Laptop\"", \""Phone\""]",54.69,{},64261,1,"""Europe""" +2024-03-14,88326,3637,"[\""Tablet\""]",849.42,{},28541,1,"""Africa""" +2023-12-11,88327,9331,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4278.38,{},37001,0,"""South America""" +2023-07-06,88328,9812,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4743.21,{},141421,0,"""North America""" +2024-04-24,88329,3985,"[\""Tablet\"", \""Headphones\""]",1993.59,{},19932,1,"""South America""" +2023-08-18,88330,794,"[\""Headphones\""]",3813.9,"{\""promo\"": \""19%\""}",100508,0,"""South America""" +2024-05-03,88331,8697,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1814.62,"{\""promo\"": \""30%\""}",128800,1,"""North America""" +2024-01-01,88332,1425,"[\""Phone\""]",4901.14,"{\""seasonal\"": \""12%\""}",259364,0,"""Africa""" +2023-08-04,88333,518,"[\""Phone\"", \""Headphones\""]",667.28,"{\""seasonal\"": \""23%\""}",246235,1,"""North America""" +2024-07-27,88334,7051,"[\""Headphones\""]",2347.19,"{\""seasonal\"": \""12%\""}",288816,0,"""Asia""" +2024-03-16,88335,6379,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",976.32,{},244100,1,"""South America""" +2024-12-04,88336,1795,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2038.22,{},94652,1,"""North America""" +2024-10-19,88337,1408,"[\""Keyboard\""]",2736.7,{},183521,0,"""North America""" +2024-02-04,88338,5842,"[\""Tablet\"", \""Wireless Mouse\""]",1766.17,{},185269,0,"""Africa""" +2024-07-04,88339,3604,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",2018.74,{},130982,1,"""North America""" +2024-09-06,88340,1365,"[\""Keyboard\"", \""Charger\""]",1384.39,{},220741,1,"""Asia""" +2024-05-27,88341,8850,"[\""Tablet\""]",520.79,"{\""promo\"": \""29%\""}",158164,0,"""Europe""" +2024-10-13,88342,9696,"[\""Phone\"", \""Headphones\""]",976.43,{},65793,1,"""Asia""" +2024-03-30,88343,8935,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4195.52,"{\""promo\"": \""16%\""}",231317,1,"""South America""" +2023-07-11,88344,9385,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2100.9,"{\""promo\"": \""16%\""}",72071,0,"""South America""" +2024-11-06,88345,9410,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1118.16,{},198569,1,"""Africa""" +2023-05-09,88346,6340,"[\""Tablet\"", \""Wireless Mouse\""]",4335.01,"{\""loyalty\"": \""10%\""}",298302,1,"""Asia""" +2023-05-08,88347,4221,"[\""Phone\"", \""Headphones\""]",472.96,"{\""promo\"": \""27%\""}",1773,0,"""South America""" +2023-08-13,88348,2469,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4822.86,{},226099,0,"""Asia""" +2024-10-07,88349,505,"[\""Keyboard\"", \""Charger\""]",1160.56,"{\""promo\"": \""11%\""}",213171,1,"""Africa""" +2023-06-18,88350,6008,"[\""Tablet\""]",137.31,{},222467,0,"""Asia""" +2024-03-22,88351,3116,"[\""Phone\""]",2909.68,{},182501,1,"""South America""" +2023-01-10,88352,182,"[\""Tablet\"", \""Keyboard\""]",2310.01,"{\""seasonal\"": \""5%\""}",49608,0,"""Europe""" +2024-11-21,88353,7177,"[\""Phone\""]",794.95,{},86815,1,"""North America""" +2024-10-30,88354,3876,"[\""Laptop\""]",3911.43,"{\""loyalty\"": \""18%\""}",262833,1,"""Europe""" +2024-06-13,88355,5069,"[\""Monitor\"", \""Charger\""]",2481.46,{},86846,1,"""South America""" +2023-04-15,88356,4748,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2630.37,{},86520,0,"""Europe""" +2023-06-27,88357,6137,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4565.24,"{\""seasonal\"": \""11%\""}",127620,0,"""North America""" +2024-12-11,88358,5067,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1178.92,{},136076,0,"""Africa""" +2024-03-10,88359,8385,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",1112.6,{},219160,1,"""Asia""" +2024-05-20,88360,9057,"[\""Charger\"", \""Laptop\""]",4857.98,{},142632,1,"""Africa""" +2024-09-28,88361,7281,"[\""Laptop\"", \""Keyboard\""]",1440.04,{},155027,0,"""North America""" +2023-01-14,88362,9878,"[\""Wireless Mouse\"", \""Charger\""]",4582.93,"{\""loyalty\"": \""12%\""}",275834,1,"""Europe""" +2024-04-23,88363,4431,"[\""Phone\""]",1701.2,{},176217,0,"""Africa""" +2023-04-01,88364,1727,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2720.19,{},128879,1,"""Asia""" +2023-12-21,88365,5288,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4457.62,{},165418,0,"""South America""" +2023-06-11,88366,2562,"[\""Monitor\""]",3563.67,"{\"": \""14%\""}",41088,1,"""Asia""" +2023-07-26,88367,1644,"[\""Tablet\"", \""Headphones\""]",4272.31,{},90667,1,"""Africa""" +2024-06-11,88368,1516,"[\""Phone\""]",1111.74,{},57923,1,"""North America""" +2023-06-02,88369,6289,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",51.4,{},67951,1,"""Asia""" +2023-01-27,88370,6527,"[\""Charger\""]",2934.67,"{\""loyalty\"": \""21%\""}",292503,0,"""Asia""" +2023-09-02,88371,9027,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",131.95,"{\""loyalty\"": \""10%\""}",7674,0,"""South America""" +2024-02-12,88372,9949,"[\""Laptop\"", \""Phone\""]",1124.33,"{\"": \""28%\""}",281377,1,"""Europe""" +2024-09-13,88373,2705,"[\""Charger\"", \""Wireless Mouse\""]",1064.12,"{\"": \""14%\""}",9293,0,"""North America""" +2023-06-09,88374,4359,"[\""Keyboard\""]",235.76,"{\""loyalty\"": \""26%\""}",152560,0,"""Africa""" +2023-07-13,88375,5507,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4080.52,{},35073,1,"""Asia""" +2024-12-23,88376,9887,"[\""Keyboard\"", \""Laptop\""]",4636.1,"{\""loyalty\"": \""16%\""}",274071,1,"""South America""" +2023-06-24,88377,4259,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1659.67,{},134550,1,"""Europe""" +2024-06-11,88378,9284,"[\""Tablet\"", \""Keyboard\""]",141.13,{},80022,0,"""Europe""" +2024-04-30,88379,9546,"[\""Charger\""]",3396.45,"{\""loyalty\"": \""22%\""}",145856,0,"""Africa""" +2024-07-30,88380,9664,"[\""Wireless Mouse\"", \""Headphones\""]",360.28,"{\"": \""17%\""}",86735,0,"""Europe""" +2023-08-10,88381,7095,"[\""Headphones\""]",4832.04,"{\""seasonal\"": \""27%\""}",30502,0,"""South America""" +2023-07-09,88382,7552,"[\""Headphones\"", \""Phone\""]",1479.72,"{\""seasonal\"": \""11%\""}",122327,1,"""North America""" +2024-04-22,88383,9608,"[\""Phone\"", \""Headphones\""]",1745.99,"{\""promo\"": \""20%\""}",194630,1,"""South America""" +2024-03-15,88384,9386,"[\""Laptop\""]",4832.92,{},79034,0,"""Europe""" +2024-08-25,88385,6670,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",78.68,{},283700,0,"""Africa""" +2023-04-29,88386,810,"[\""Monitor\""]",75.06,"{\""loyalty\"": \""16%\""}",210181,0,"""North America""" +2024-08-04,88387,6864,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3628.84,"{\"": \""8%\""}",198623,0,"""North America""" +2024-11-13,88388,1935,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",377.75,{},241890,0,"""North America""" +2024-11-30,88389,8895,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4381.76,"{\"": \""14%\""}",197736,0,"""North America""" +2023-06-11,88390,2528,"[\""Keyboard\""]",343.39,"{\""promo\"": \""26%\""}",89742,1,"""South America""" +2024-12-17,88391,99,"[\""Phone\""]",1744.21,{},185811,0,"""Europe""" +2024-05-05,88392,7778,"[\""Monitor\"", \""Headphones\""]",880.28,"{\""promo\"": \""15%\""}",5114,1,"""South America""" +2024-06-14,88393,4417,"[\""Wireless Mouse\"", \""Laptop\""]",3794.03,{},233870,1,"""Asia""" +2023-07-03,88394,5709,"[\""Headphones\""]",1462.6,{},94788,1,"""North America""" +2023-02-11,88395,790,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",2122.12,{},164317,0,"""South America""" +2023-05-17,88396,7893,"[\""Keyboard\""]",1341.57,"{\""promo\"": \""27%\""}",65424,1,"""Europe""" +2024-07-15,88397,9679,"[\""Monitor\"", \""Keyboard\""]",3223.15,"{\""seasonal\"": \""30%\""}",41109,1,"""Europe""" +2023-08-30,88398,5632,"[\""Phone\"", \""Keyboard\""]",3474.81,"{\""promo\"": \""28%\""}",259887,1,"""South America""" +2023-08-25,88399,6992,"[\""Headphones\""]",2433.76,"{\""seasonal\"": \""25%\""}",34755,0,"""Africa""" +2023-08-22,88400,5915,"[\""Monitor\""]",3563.82,"{\""promo\"": \""26%\""}",142403,1,"""Asia""" +2024-05-17,88401,6219,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2723.98,"{\""loyalty\"": \""29%\""}",185366,0,"""Europe""" +2024-09-21,88402,2891,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1725.59,"{\""loyalty\"": \""15%\""}",212767,1,"""Africa""" +2023-07-23,88403,8661,"[\""Laptop\""]",1050.99,{},238379,1,"""South America""" +2023-12-22,88404,9663,"[\""Charger\""]",4911.33,"{\"": \""21%\""}",161066,1,"""Africa""" +2024-04-22,88405,3527,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1905.63,"{\""seasonal\"": \""12%\""}",99837,1,"""Asia""" +2024-05-30,88406,8086,"[\""Phone\"", \""Charger\""]",3085.72,{},256340,0,"""Europe""" +2023-12-24,88407,1969,"[\""Charger\""]",3255.16,"{\""seasonal\"": \""12%\""}",143792,0,"""Europe""" +2024-08-06,88408,9797,"[\""Wireless Mouse\""]",4648.38,"{\""seasonal\"": \""19%\""}",145765,1,"""Africa""" +2023-03-15,88409,3620,"[\""Charger\""]",4312.59,{},247970,1,"""North America""" +2024-03-30,88410,157,"[\""Keyboard\"", \""Monitor\""]",2303.79,{},255223,1,"""Asia""" +2023-09-27,88411,197,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",161.71,"{\"": \""29%\""}",179868,0,"""North America""" +2023-10-08,88412,9688,"[\""Keyboard\"", \""Monitor\""]",1996.75,{},202324,1,"""Asia""" +2024-08-30,88413,682,"[\""Keyboard\""]",578.73,"{\""promo\"": \""9%\""}",215238,0,"""Asia""" +2023-03-28,88414,324,"[\""Tablet\"", \""Keyboard\""]",2795.34,"{\"": \""12%\""}",276329,0,"""Africa""" +2023-02-24,88415,288,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3229.73,"{\""promo\"": \""10%\""}",92438,0,"""Asia""" +2023-04-04,88416,6293,"[\""Monitor\""]",973.04,"{\""promo\"": \""10%\""}",273148,0,"""South America""" +2023-07-19,88417,8082,"[\""Wireless Mouse\"", \""Tablet\""]",3269.83,{},66724,1,"""South America""" +2024-03-01,88418,2689,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1177.35,{},41886,1,"""South America""" +2023-11-15,88419,6576,"[\""Headphones\""]",4193.47,{},291792,0,"""Europe""" +2023-05-21,88420,5855,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1559.29,{},12031,1,"""Africa""" +2023-04-06,88421,5890,"[\""Headphones\""]",4126.3,"{\""promo\"": \""5%\""}",194216,0,"""North America""" +2023-07-04,88422,6304,"[\""Phone\"", \""Laptop\""]",3638.08,{},230353,0,"""Africa""" +2024-03-15,88423,4010,"[\""Monitor\""]",3315.49,"{\"": \""17%\""}",64287,1,"""Asia""" +2023-09-13,88424,3461,"[\""Headphones\"", \""Laptop\""]",3720.63,"{\"": \""20%\""}",196623,1,"""Europe""" +2023-10-20,88425,369,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",588.47,{},279417,1,"""North America""" +2023-01-05,88426,1691,"[\""Wireless Mouse\"", \""Tablet\""]",1668.74,{},113846,0,"""North America""" +2024-10-07,88427,5978,"[\""Charger\""]",4402.8,{},83098,0,"""Africa""" +2023-11-20,88428,9602,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3323.84,{},166113,0,"""North America""" +2023-02-24,88429,7071,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2118.43,{},139655,1,"""Europe""" +2024-03-18,88430,2383,"[\""Headphones\""]",2160.29,"{\"": \""17%\""}",188016,1,"""Asia""" +2023-08-19,88431,2301,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4112.25,"{\""seasonal\"": \""28%\""}",24244,0,"""Asia""" +2024-01-31,88432,9518,"[\""Monitor\""]",2716.19,{},126186,1,"""North America""" +2023-05-18,88433,522,"[\""Keyboard\""]",3088.66,"{\""loyalty\"": \""30%\""}",81517,1,"""Africa""" +2024-02-16,88434,3972,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",1660.69,{},229065,1,"""Europe""" +2023-04-23,88435,3999,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4378.32,{},197298,0,"""Europe""" +2023-06-18,88436,593,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1452.54,{},97173,1,"""North America""" +2023-07-19,88437,2310,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4440.55,"{\"": \""17%\""}",162043,0,"""Europe""" +2024-10-27,88438,8932,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4261.46,"{\""promo\"": \""5%\""}",163105,0,"""Africa""" +2023-08-10,88439,9078,"[\""Monitor\""]",918.86,"{\"": \""25%\""}",90023,0,"""North America""" +2024-02-22,88440,8243,"[\""Keyboard\""]",4114.19,"{\"": \""13%\""}",184562,1,"""Asia""" +2024-04-03,88441,5450,"[\""Phone\""]",3394.27,"{\""promo\"": \""16%\""}",115090,1,"""South America""" +2024-04-07,88442,4086,"[\""Headphones\""]",3610.3,{},40346,0,"""Europe""" +2024-03-09,88443,2134,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1952.46,{},220407,0,"""South America""" +2023-09-12,88444,8498,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2488.69,"{\""loyalty\"": \""6%\""}",196510,1,"""South America""" +2023-12-28,88445,9932,"[\""Keyboard\"", \""Headphones\""]",1083.86,{},261472,1,"""North America""" +2023-11-10,88446,3742,"[\""Tablet\""]",4902.08,{},92713,1,"""Europe""" +2024-07-22,88447,1020,"[\""Wireless Mouse\"", \""Laptop\""]",3851.81,"{\""seasonal\"": \""29%\""}",216569,1,"""Africa""" +2023-12-02,88448,1814,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1400.53,"{\""loyalty\"": \""7%\""}",129817,1,"""North America""" +2024-08-17,88449,9971,"[\""Laptop\"", \""Tablet\""]",3194.11,{},193420,0,"""North America""" +2023-05-20,88450,7009,"[\""Laptop\""]",594.44,"{\""seasonal\"": \""19%\""}",255318,0,"""Africa""" +2024-10-14,88451,9478,"[\""Keyboard\"", \""Headphones\""]",234.11,"{\""seasonal\"": \""21%\""}",182058,0,"""North America""" +2023-11-15,88452,6842,"[\""Phone\"", \""Charger\""]",807.7,"{\""seasonal\"": \""25%\""}",264470,1,"""South America""" +2024-09-08,88453,1741,"[\""Headphones\"", \""Charger\""]",854.74,"{\""promo\"": \""10%\""}",17567,1,"""North America""" +2023-06-13,88454,8328,"[\""Keyboard\""]",3761.72,{},277097,1,"""Africa""" +2023-04-23,88455,6885,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1011.03,"{\""seasonal\"": \""6%\""}",273841,1,"""North America""" +2024-04-09,88456,1,"[\""Charger\"", \""Keyboard\""]",209.22,{},157825,0,"""North America""" +2023-12-13,88457,1357,"[\""Wireless Mouse\"", \""Charger\""]",274.66,{},52967,0,"""South America""" +2023-09-25,88458,9446,"[\""Phone\""]",385.7,"{\""seasonal\"": \""25%\""}",244451,1,"""North America""" +2024-05-09,88459,1754,"[\""Laptop\""]",1077.56,"{\""promo\"": \""29%\""}",90617,1,"""Europe""" +2023-02-22,88460,6700,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",2405.93,"{\""promo\"": \""26%\""}",244798,1,"""Africa""" +2023-11-17,88461,1974,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4724.92,"{\""promo\"": \""19%\""}",26625,1,"""North America""" +2023-10-12,88462,6768,"[\""Phone\"", \""Keyboard\""]",1377.03,"{\"": \""16%\""}",281049,1,"""Africa""" +2023-02-08,88463,9098,"[\""Headphones\"", \""Monitor\""]",4858.58,"{\""promo\"": \""26%\""}",159562,1,"""Africa""" +2024-07-22,88464,2288,"[\""Wireless Mouse\""]",629.43,{},75675,0,"""North America""" +2024-05-03,88465,589,"[\""Phone\""]",3749.17,{},186149,0,"""South America""" +2023-04-19,88466,1477,"[\""Charger\"", \""Keyboard\""]",1554.58,"{\""promo\"": \""8%\""}",140838,1,"""Africa""" +2024-02-25,88467,849,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1386.47,{},134351,0,"""Africa""" +2023-04-12,88468,8909,"[\""Charger\"", \""Headphones\""]",4464.25,"{\""promo\"": \""27%\""}",4393,0,"""Asia""" +2023-09-27,88469,9788,"[\""Laptop\""]",2609.8,"{\"": \""17%\""}",147448,1,"""North America""" +2023-09-12,88470,8178,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2011.2,{},205980,1,"""Europe""" +2024-10-20,88471,4266,"[\""Charger\""]",3598.16,{},103071,0,"""North America""" +2024-03-14,88472,2254,"[\""Keyboard\""]",4778.57,{},42845,0,"""South America""" +2023-03-18,88473,6649,"[\""Laptop\""]",484.54,"{\""seasonal\"": \""20%\""}",21004,1,"""South America""" +2023-09-16,88474,8086,"[\""Laptop\"", \""Phone\""]",3037.72,{},220536,1,"""Africa""" +2023-04-21,88475,861,"[\""Laptop\"", \""Charger\""]",4604.28,{},274633,1,"""North America""" +2023-09-30,88476,643,"[\""Keyboard\""]",1499.55,{},101833,1,"""North America""" +2023-07-19,88477,2275,"[\""Tablet\""]",1431.05,"{\"": \""16%\""}",16294,0,"""Africa""" +2024-07-22,88478,3228,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1899.2,"{\"": \""10%\""}",173055,0,"""South America""" +2023-10-22,88479,761,"[\""Phone\""]",1527.38,{},288511,0,"""Asia""" +2024-04-09,88480,5310,"[\""Wireless Mouse\"", \""Charger\""]",3636.31,"{\""seasonal\"": \""15%\""}",20875,1,"""Asia""" +2024-07-18,88481,2589,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",867.93,{},180992,1,"""North America""" +2024-06-27,88482,3703,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",3425.14,"{\""promo\"": \""14%\""}",223527,1,"""Africa""" +2024-03-29,88483,4604,"[\""Laptop\"", \""Monitor\""]",3377.37,{},249262,1,"""North America""" +2023-06-24,88484,1316,"[\""Tablet\""]",196.56,{},228007,1,"""North America""" +2024-10-26,88485,1076,"[\""Charger\""]",1811.03,{},87916,0,"""South America""" +2023-06-03,88486,6979,"[\""Monitor\"", \""Phone\""]",3828.19,"{\"": \""9%\""}",148955,1,"""Europe""" +2023-12-15,88487,2695,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4034.92,{},289844,1,"""Europe""" +2024-07-06,88488,5770,"[\""Monitor\""]",4418.38,{},233373,0,"""Asia""" +2024-06-01,88489,1097,"[\""Keyboard\"", \""Laptop\""]",1627.83,{},140959,0,"""South America""" +2024-11-18,88490,7063,"[\""Charger\"", \""Monitor\""]",623.07,"{\""seasonal\"": \""28%\""}",297114,0,"""Africa""" +2024-09-09,88491,3778,"[\""Phone\""]",4472.54,"{\"": \""15%\""}",35550,0,"""Europe""" +2024-04-27,88492,4840,"[\""Tablet\""]",1299.66,"{\""promo\"": \""30%\""}",125233,1,"""Asia""" +2024-08-04,88493,814,"[\""Charger\""]",174.33,"{\""seasonal\"": \""18%\""}",287223,1,"""South America""" +2024-07-20,88494,6731,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3086.02,"{\""promo\"": \""27%\""}",155439,0,"""Asia""" +2024-10-05,88495,2666,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3614.95,{},62279,1,"""South America""" +2023-06-10,88496,1605,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2907.28,"{\""seasonal\"": \""29%\""}",13894,1,"""Asia""" +2024-09-06,88497,1297,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",867.81,"{\"": \""29%\""}",133955,0,"""South America""" +2024-06-10,88498,6829,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",4827.62,"{\"": \""11%\""}",179411,1,"""North America""" +2023-07-23,88499,6895,"[\""Tablet\"", \""Laptop\""]",375.46,{},51343,0,"""North America""" +2023-06-16,88500,7018,"[\""Keyboard\"", \""Charger\""]",2710.17,"{\""seasonal\"": \""21%\""}",173865,0,"""North America""" +2024-12-15,88501,6112,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",4791.01,"{\""seasonal\"": \""10%\""}",235478,1,"""North America""" +2024-02-15,88502,6086,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3095.78,{},194742,0,"""Asia""" +2024-05-19,88503,6743,"[\""Charger\""]",333.2,"{\""promo\"": \""27%\""}",119076,0,"""South America""" +2024-08-28,88504,7472,"[\""Tablet\"", \""Laptop\""]",1941.83,"{\"": \""30%\""}",258436,0,"""Asia""" +2024-11-16,88505,7547,"[\""Phone\"", \""Monitor\""]",4007.97,{},5488,1,"""South America""" +2024-07-19,88506,8490,"[\""Laptop\""]",1054.13,{},74020,0,"""Africa""" +2023-07-18,88507,4103,"[\""Headphones\"", \""Wireless Mouse\""]",1535.03,"{\""seasonal\"": \""10%\""}",270418,1,"""South America""" +2024-10-18,88508,2592,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",310.68,"{\""loyalty\"": \""12%\""}",249481,0,"""Africa""" +2023-12-09,88509,2524,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4089.02,{},71954,1,"""North America""" +2023-12-11,88510,2377,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1618.81,{},213940,1,"""North America""" +2023-12-25,88511,7191,"[\""Tablet\""]",1051.12,{},263820,0,"""Asia""" +2023-01-22,88512,2386,"[\""Wireless Mouse\""]",215.99,"{\""seasonal\"": \""14%\""}",182303,1,"""Asia""" +2023-04-28,88513,5537,"[\""Headphones\""]",3414.04,"{\""seasonal\"": \""25%\""}",283041,1,"""Europe""" +2024-11-13,88514,9911,"[\""Laptop\"", \""Headphones\""]",3739.3,"{\"": \""29%\""}",3449,0,"""Africa""" +2023-10-24,88515,8901,"[\""Wireless Mouse\""]",2090.9,"{\"": \""29%\""}",35353,1,"""Asia""" +2023-10-24,88516,7306,"[\""Wireless Mouse\"", \""Phone\""]",723.31,{},187354,0,"""Africa""" +2023-06-01,88517,1762,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4096.86,"{\""loyalty\"": \""5%\""}",258262,0,"""Africa""" +2024-12-10,88518,6474,"[\""Tablet\"", \""Wireless Mouse\""]",4302.55,{},247080,0,"""North America""" +2023-04-05,88519,2890,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",2022.8,"{\""loyalty\"": \""26%\""}",18184,1,"""Africa""" +2023-08-14,88520,4992,"[\""Wireless Mouse\"", \""Tablet\""]",2823.77,{},56115,0,"""Africa""" +2024-09-13,88521,7787,"[\""Laptop\""]",2900.94,{},268541,0,"""North America""" +2024-02-05,88522,3507,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",2796.31,{},145188,0,"""South America""" +2024-03-01,88523,599,"[\""Keyboard\"", \""Headphones\""]",2829.85,{},119571,1,"""Asia""" +2023-11-08,88524,1164,"[\""Phone\"", \""Keyboard\""]",2123.93,"{\""promo\"": \""25%\""}",216641,0,"""Europe""" +2024-05-25,88525,998,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3839.96,"{\""loyalty\"": \""9%\""}",215273,0,"""Africa""" +2024-08-28,88526,7654,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3799.58,"{\""promo\"": \""30%\""}",87140,1,"""North America""" +2024-11-30,88527,6457,"[\""Charger\""]",1358.9,"{\"": \""24%\""}",50783,0,"""North America""" +2024-05-02,88528,2443,"[\""Wireless Mouse\""]",3335.73,"{\""promo\"": \""11%\""}",97696,1,"""Africa""" +2024-11-20,88529,7521,"[\""Laptop\""]",2101.22,{},159858,0,"""Africa""" +2023-07-27,88530,4368,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4963.81,{},156313,1,"""Asia""" +2024-11-03,88531,7141,"[\""Monitor\"", \""Tablet\""]",1841.75,{},109944,0,"""South America""" +2024-08-22,88532,8784,"[\""Tablet\"", \""Phone\""]",1445.07,"{\""loyalty\"": \""8%\""}",107678,0,"""South America""" +2024-04-24,88533,1946,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",3980.2,{},146779,1,"""Africa""" +2024-01-13,88534,3394,"[\""Charger\"", \""Headphones\""]",1302.8,{},144110,1,"""Asia""" +2023-04-11,88535,7323,"[\""Tablet\""]",2978.89,"{\""seasonal\"": \""14%\""}",127752,1,"""North America""" +2024-09-22,88536,4702,"[\""Headphones\""]",3301.03,"{\""loyalty\"": \""22%\""}",154000,0,"""South America""" +2024-09-30,88537,6853,"[\""Tablet\""]",3138.35,{},264898,0,"""South America""" +2023-01-25,88538,1874,"[\""Charger\"", \""Headphones\""]",171.96,"{\""promo\"": \""21%\""}",293952,0,"""Asia""" +2023-09-08,88539,4932,"[\""Headphones\""]",3527.96,{},130105,1,"""North America""" +2024-09-23,88540,6022,"[\""Tablet\""]",3825.0,{},19142,1,"""North America""" +2024-03-06,88541,9974,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",4020.55,{},60131,1,"""South America""" +2023-11-15,88542,3828,"[\""Monitor\""]",4249.55,"{\""seasonal\"": \""10%\""}",275756,1,"""North America""" +2023-02-10,88543,8204,"[\""Charger\""]",533.05,"{\""seasonal\"": \""21%\""}",214098,0,"""Asia""" +2024-08-11,88544,7502,"[\""Keyboard\""]",1016.85,{},258389,1,"""Europe""" +2024-07-29,88545,1001,"[\""Headphones\"", \""Tablet\""]",1524.44,{},262683,0,"""Europe""" +2024-10-14,88546,6991,"[\""Laptop\""]",1300.57,"{\""loyalty\"": \""24%\""}",90928,0,"""Asia""" +2024-07-19,88547,6672,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4270.2,"{\""loyalty\"": \""9%\""}",125979,0,"""Africa""" +2024-11-13,88548,6274,"[\""Phone\""]",4297.54,"{\""loyalty\"": \""11%\""}",199026,0,"""Africa""" +2024-01-20,88549,5027,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",217.29,{},229908,1,"""Asia""" +2023-05-27,88550,1003,"[\""Wireless Mouse\""]",3969.92,{},38123,0,"""Europe""" +2023-02-25,88551,9072,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3222.04,"{\""loyalty\"": \""24%\""}",143998,1,"""Europe""" +2024-10-04,88552,5478,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",457.52,{},155861,0,"""Europe""" +2024-12-08,88553,5790,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",512.72,{},287779,0,"""South America""" +2024-12-08,88554,5807,"[\""Phone\"", \""Laptop\""]",90.16,"{\""seasonal\"": \""27%\""}",135947,1,"""North America""" +2023-04-23,88555,4005,"[\""Laptop\""]",3128.0,{},23460,0,"""North America""" +2023-09-16,88556,9366,"[\""Monitor\""]",2746.44,{},124508,1,"""North America""" +2024-11-10,88557,3952,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2035.97,"{\""seasonal\"": \""23%\""}",33587,0,"""Asia""" +2024-10-22,88558,7201,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4305.34,"{\""promo\"": \""15%\""}",233045,0,"""Africa""" +2024-09-02,88559,1601,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",4989.97,{},106131,1,"""Europe""" +2023-07-05,88560,9777,"[\""Tablet\"", \""Wireless Mouse\""]",504.06,"{\""loyalty\"": \""10%\""}",11969,1,"""Africa""" +2024-10-30,88561,3015,"[\""Wireless Mouse\""]",4851.21,{},43915,1,"""Europe""" +2023-01-18,88562,6625,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2029.0,{},136606,1,"""Europe""" +2023-12-23,88563,3892,"[\""Keyboard\""]",3837.32,{},97095,1,"""Europe""" +2024-03-04,88564,3421,"[\""Wireless Mouse\""]",4086.95,{},111936,0,"""Africa""" +2023-02-07,88565,7785,"[\""Keyboard\"", \""Tablet\""]",3517.45,{},187596,1,"""Europe""" +2023-06-04,88566,2833,"[\""Charger\"", \""Tablet\""]",791.29,"{\""loyalty\"": \""7%\""}",254362,1,"""Asia""" +2023-09-29,88567,4381,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1792.91,"{\"": \""5%\""}",207992,1,"""Asia""" +2023-08-22,88568,163,"[\""Phone\""]",1393.73,"{\""seasonal\"": \""21%\""}",66163,0,"""Africa""" +2024-12-02,88569,9907,"[\""Charger\""]",4326.08,"{\""seasonal\"": \""13%\""}",261829,1,"""Africa""" +2023-12-30,88570,426,"[\""Headphones\"", \""Wireless Mouse\""]",2674.52,"{\""seasonal\"": \""18%\""}",99579,1,"""South America""" +2023-08-11,88571,4298,"[\""Wireless Mouse\""]",2584.16,"{\""promo\"": \""18%\""}",137622,0,"""South America""" +2024-01-23,88572,6201,"[\""Monitor\"", \""Tablet\""]",217.55,{},193623,0,"""Africa""" +2023-09-12,88573,2243,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4499.38,{},247147,0,"""Asia""" +2024-06-17,88574,8029,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4477.85,{},141493,1,"""Asia""" +2023-10-20,88575,9394,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",51.57,"{\""promo\"": \""18%\""}",56168,1,"""Europe""" +2023-05-15,88576,8275,"[\""Wireless Mouse\""]",3421.43,{},31821,0,"""Europe""" +2024-07-11,88577,3090,"[\""Charger\""]",3432.53,{},266557,0,"""Asia""" +2023-11-02,88578,5339,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",4785.52,{},184174,1,"""South America""" +2024-05-29,88579,4775,"[\""Keyboard\"", \""Charger\""]",3441.78,{},161951,1,"""Europe""" +2024-09-30,88580,1462,"[\""Tablet\""]",1297.74,"{\""seasonal\"": \""6%\""}",260089,1,"""North America""" +2024-05-04,88581,2139,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1895.52,"{\""promo\"": \""29%\""}",104988,1,"""North America""" +2024-07-14,88582,8737,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2362.75,{},202470,0,"""Asia""" +2023-05-24,88583,9053,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1103.03,"{\""seasonal\"": \""17%\""}",248564,1,"""South America""" +2024-06-26,88584,110,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3315.58,"{\""loyalty\"": \""16%\""}",188658,1,"""South America""" +2024-10-29,88585,1237,"[\""Wireless Mouse\"", \""Charger\""]",3019.34,"{\""loyalty\"": \""30%\""}",6275,0,"""Asia""" +2024-08-03,88586,4608,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2520.15,"{\""loyalty\"": \""17%\""}",145542,1,"""North America""" +2023-06-03,88587,8681,"[\""Laptop\"", \""Tablet\""]",2195.07,"{\""promo\"": \""15%\""}",277528,0,"""Africa""" +2024-07-06,88588,4930,"[\""Laptop\""]",3646.75,"{\"": \""14%\""}",287640,1,"""Asia""" +2023-06-01,88589,3034,"[\""Tablet\"", \""Wireless Mouse\""]",4721.22,{},167788,0,"""North America""" +2023-01-31,88590,7936,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1942.04,{},170249,1,"""South America""" +2023-10-31,88591,8332,"[\""Keyboard\"", \""Charger\""]",3763.32,{},53814,0,"""South America""" +2024-12-18,88592,8487,"[\""Keyboard\"", \""Charger\""]",4452.76,"{\""seasonal\"": \""18%\""}",170139,0,"""North America""" +2023-08-21,88593,6051,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3140.89,"{\""promo\"": \""22%\""}",20442,1,"""Africa""" +2023-06-06,88594,4477,"[\""Charger\""]",3328.92,{},112126,0,"""Africa""" +2023-10-12,88595,6745,"[\""Wireless Mouse\"", \""Phone\""]",1257.99,"{\""loyalty\"": \""26%\""}",86764,0,"""South America""" +2023-04-05,88596,3343,"[\""Phone\"", \""Tablet\""]",442.61,{},40653,1,"""South America""" +2023-03-20,88597,8789,"[\""Headphones\"", \""Tablet\""]",3149.64,"{\""seasonal\"": \""18%\""}",270596,0,"""Europe""" +2024-05-23,88598,7210,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",580.28,{},201129,1,"""Africa""" +2024-09-06,88599,7141,"[\""Wireless Mouse\"", \""Headphones\""]",2710.76,{},181011,1,"""Europe""" +2024-02-20,88600,2207,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4685.45,{},238371,1,"""Europe""" +2023-09-04,88601,789,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1187.7,"{\""seasonal\"": \""18%\""}",12074,1,"""South America""" +2023-11-16,88602,1806,"[\""Charger\"", \""Wireless Mouse\""]",3649.64,"{\""promo\"": \""5%\""}",167188,0,"""Africa""" +2023-09-14,88603,5146,"[\""Monitor\"", \""Laptop\""]",3805.2,{},136749,0,"""Asia""" +2024-05-04,88604,8758,"[\""Monitor\""]",2551.51,"{\""loyalty\"": \""25%\""}",175047,1,"""Africa""" +2023-01-20,88605,2026,"[\""Monitor\"", \""Laptop\""]",4147.96,"{\""loyalty\"": \""30%\""}",46994,0,"""Europe""" +2024-09-21,88606,2238,"[\""Monitor\"", \""Laptop\""]",3150.48,{},189347,0,"""South America""" +2023-10-10,88607,8360,"[\""Monitor\""]",259.44,"{\""seasonal\"": \""21%\""}",134453,0,"""Europe""" +2024-02-21,88608,4519,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3249.77,{},121225,0,"""North America""" +2024-08-22,88609,8178,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2432.65,"{\""seasonal\"": \""8%\""}",8731,1,"""North America""" +2024-01-06,88610,2348,"[\""Headphones\""]",2337.66,{},90864,1,"""Europe""" +2024-10-11,88611,1409,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4376.66,"{\""loyalty\"": \""20%\""}",143513,1,"""Africa""" +2024-11-23,88612,1320,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1982.23,"{\""promo\"": \""27%\""}",269614,1,"""North America""" +2024-05-09,88613,147,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2369.94,"{\""seasonal\"": \""20%\""}",41417,0,"""Europe""" +2024-09-29,88614,418,"[\""Charger\""]",3102.3,"{\""promo\"": \""27%\""}",177084,1,"""Asia""" +2024-03-22,88615,4452,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1999.41,{},148278,1,"""Asia""" +2023-04-23,88616,2880,"[\""Wireless Mouse\""]",3309.11,{},66263,1,"""Africa""" +2024-08-14,88617,7680,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",439.43,"{\""seasonal\"": \""7%\""}",38712,1,"""South America""" +2023-06-25,88618,8046,"[\""Charger\"", \""Wireless Mouse\""]",2537.01,"{\"": \""5%\""}",122344,1,"""Asia""" +2023-02-20,88619,6278,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1777.35,"{\""seasonal\"": \""15%\""}",12298,1,"""Europe""" +2023-08-23,88620,117,"[\""Charger\""]",3111.45,{},277639,0,"""Asia""" +2024-01-20,88621,1166,"[\""Phone\"", \""Laptop\""]",1125.77,"{\""loyalty\"": \""8%\""}",39087,0,"""Europe""" +2023-01-15,88622,5549,"[\""Phone\""]",4228.37,{},277693,0,"""North America""" +2023-07-25,88623,4706,"[\""Charger\""]",3207.8,"{\""loyalty\"": \""14%\""}",24894,1,"""Asia""" +2023-01-30,88624,8255,"[\""Monitor\""]",526.88,"{\""loyalty\"": \""18%\""}",33492,1,"""Europe""" +2023-07-18,88625,7456,"[\""Monitor\""]",4564.84,"{\""loyalty\"": \""6%\""}",223658,1,"""North America""" +2023-07-15,88626,7427,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2703.79,{},174141,1,"""South America""" +2023-03-27,88627,5339,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1923.57,"{\""seasonal\"": \""23%\""}",37720,1,"""Asia""" +2024-01-07,88628,6144,"[\""Headphones\"", \""Phone\""]",180.22,{},2015,0,"""North America""" +2024-02-21,88629,6437,"[\""Phone\"", \""Charger\"", \""Headphones\""]",182.69,"{\"": \""20%\""}",199881,1,"""Africa""" +2024-10-05,88630,7960,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1157.4,"{\"": \""18%\""}",209766,0,"""Europe""" +2023-02-08,88631,3052,"[\""Phone\""]",1483.68,"{\""loyalty\"": \""23%\""}",27652,1,"""North America""" +2023-10-11,88632,4991,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",551.87,{},141489,1,"""South America""" +2024-10-10,88633,527,"[\""Wireless Mouse\"", \""Laptop\""]",1706.96,{},132960,1,"""South America""" +2024-10-21,88634,2404,"[\""Monitor\""]",3936.7,"{\""loyalty\"": \""24%\""}",20380,0,"""North America""" +2023-04-29,88635,2520,"[\""Monitor\""]",3601.21,{},106197,0,"""Asia""" +2024-09-01,88636,4671,"[\""Headphones\"", \""Laptop\""]",2196.94,{},282656,0,"""South America""" +2024-11-14,88637,8346,"[\""Tablet\""]",590.69,"{\""promo\"": \""17%\""}",243184,0,"""Asia""" +2023-01-22,88638,1875,"[\""Keyboard\"", \""Laptop\""]",4414.78,{},236486,1,"""Europe""" +2024-04-19,88639,8394,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1149.64,"{\""promo\"": \""20%\""}",80753,1,"""Europe""" +2023-09-26,88640,3893,"[\""Monitor\""]",3679.7,{},274064,1,"""Asia""" +2024-11-14,88641,3158,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",292.34,"{\"": \""29%\""}",289002,1,"""Africa""" +2024-05-13,88642,6358,"[\""Tablet\"", \""Phone\""]",3288.19,"{\""seasonal\"": \""19%\""}",175395,0,"""Africa""" +2023-09-22,88643,8771,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",1620.06,{},39280,1,"""South America""" +2023-01-18,88644,5536,"[\""Monitor\""]",733.18,"{\""loyalty\"": \""29%\""}",164442,0,"""North America""" +2023-07-13,88645,7542,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",442.66,{},164225,0,"""Asia""" +2023-06-29,88646,7432,"[\""Phone\""]",449.4,"{\""promo\"": \""6%\""}",238128,1,"""South America""" +2023-05-09,88647,6406,"[\""Tablet\""]",1545.59,"{\""loyalty\"": \""25%\""}",17303,0,"""Europe""" +2024-06-06,88648,6411,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2570.31,{},267205,0,"""Asia""" +2024-09-10,88649,9911,"[\""Tablet\""]",939.49,"{\""loyalty\"": \""22%\""}",287154,1,"""Europe""" +2023-01-02,88650,5971,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4774.24,{},194128,1,"""South America""" +2023-04-27,88651,9666,"[\""Tablet\"", \""Headphones\""]",792.11,{},11944,0,"""North America""" +2024-08-22,88652,4460,"[\""Monitor\""]",3648.11,{},80888,0,"""Africa""" +2023-01-03,88653,2440,"[\""Tablet\"", \""Charger\""]",233.48,"{\""promo\"": \""19%\""}",272160,1,"""Africa""" +2024-06-13,88654,4508,"[\""Charger\""]",2561.73,{},53900,1,"""Asia""" +2024-05-20,88655,2329,"[\""Monitor\""]",3492.81,"{\""promo\"": \""15%\""}",139684,1,"""Africa""" +2023-10-29,88656,6382,"[\""Tablet\"", \""Keyboard\""]",344.64,"{\"": \""20%\""}",25164,1,"""Europe""" +2023-07-22,88657,753,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2016.39,"{\""seasonal\"": \""21%\""}",11321,1,"""Asia""" +2023-03-29,88658,5780,"[\""Laptop\"", \""Charger\""]",824.96,"{\""loyalty\"": \""27%\""}",41239,0,"""South America""" +2023-10-23,88659,5935,"[\""Wireless Mouse\""]",2930.49,"{\""promo\"": \""16%\""}",14188,1,"""Asia""" +2023-11-27,88660,9160,"[\""Phone\""]",842.29,{},176113,0,"""South America""" +2024-06-09,88661,6547,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",50.68,"{\"": \""28%\""}",244309,0,"""North America""" +2024-02-15,88662,3766,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",782.88,"{\"": \""23%\""}",35453,0,"""Europe""" +2024-06-10,88663,3287,"[\""Wireless Mouse\"", \""Charger\""]",1242.87,"{\""promo\"": \""15%\""}",54583,1,"""North America""" +2024-01-25,88664,1027,"[\""Wireless Mouse\""]",2776.31,{},79944,1,"""Asia""" +2024-06-19,88665,8013,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1015.39,{},101187,1,"""Asia""" +2024-01-15,88666,9493,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2505.48,"{\""promo\"": \""20%\""}",20234,1,"""Africa""" +2023-01-10,88667,708,"[\""Tablet\""]",1002.4,{},183689,1,"""Asia""" +2024-01-01,88668,9125,"[\""Tablet\""]",4307.25,{},225315,1,"""Africa""" +2024-08-27,88669,8208,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1022.22,{},194287,0,"""North America""" +2023-10-09,88670,1274,"[\""Keyboard\""]",3165.72,{},275467,1,"""Africa""" +2024-08-02,88671,2395,"[\""Phone\"", \""Headphones\"", \""Charger\""]",762.84,{},43585,0,"""South America""" +2024-10-30,88672,8947,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4489.73,{},128047,0,"""Europe""" +2024-11-11,88673,6446,"[\""Monitor\""]",3880.96,"{\""loyalty\"": \""20%\""}",175561,1,"""South America""" +2024-09-20,88674,4244,"[\""Headphones\""]",4429.66,"{\""loyalty\"": \""5%\""}",217145,0,"""Europe""" +2024-09-08,88675,2972,"[\""Keyboard\"", \""Monitor\""]",1770.05,{},184344,0,"""Africa""" +2024-09-28,88676,9078,"[\""Keyboard\"", \""Wireless Mouse\""]",1631.06,{},111706,0,"""North America""" +2023-05-02,88677,6401,"[\""Headphones\""]",1086.95,"{\""loyalty\"": \""18%\""}",44505,0,"""North America""" +2023-08-21,88678,6452,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1267.17,"{\""seasonal\"": \""28%\""}",98719,0,"""Africa""" +2023-10-12,88679,6959,"[\""Headphones\""]",2918.84,"{\""promo\"": \""27%\""}",145823,1,"""Asia""" +2023-11-11,88680,257,"[\""Wireless Mouse\"", \""Tablet\""]",1967.86,{},258709,0,"""Africa""" +2024-10-24,88681,7414,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1645.9,"{\""promo\"": \""14%\""}",114530,1,"""North America""" +2024-01-16,88682,1830,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4966.22,"{\""loyalty\"": \""28%\""}",85781,1,"""Europe""" +2024-01-30,88683,5467,"[\""Monitor\"", \""Laptop\""]",2531.89,"{\"": \""9%\""}",246001,1,"""South America""" +2023-03-11,88684,7032,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",1599.08,"{\"": \""5%\""}",91694,0,"""Africa""" +2024-07-12,88685,2918,"[\""Keyboard\""]",3217.42,"{\""promo\"": \""15%\""}",44447,0,"""Europe""" +2024-10-02,88686,5993,"[\""Laptop\"", \""Tablet\""]",3673.69,{},147555,0,"""North America""" +2024-01-13,88687,4993,"[\""Tablet\"", \""Charger\""]",3261.73,"{\""seasonal\"": \""29%\""}",92967,1,"""South America""" +2024-05-25,88688,3520,"[\""Headphones\"", \""Charger\""]",4119.7,{},80675,0,"""Africa""" +2023-08-02,88689,6275,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3153.53,{},75229,1,"""South America""" +2023-12-25,88690,6758,"[\""Headphones\"", \""Keyboard\""]",1989.39,"{\""seasonal\"": \""15%\""}",66443,0,"""South America""" +2024-01-14,88691,2506,"[\""Phone\""]",4488.28,{},255391,1,"""South America""" +2024-01-30,88692,8866,"[\""Wireless Mouse\"", \""Laptop\""]",4601.53,"{\""promo\"": \""7%\""}",274357,1,"""Africa""" +2023-08-13,88693,2963,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",3049.35,{},288941,0,"""South America""" +2024-06-21,88694,7288,"[\""Phone\""]",2288.95,"{\""promo\"": \""20%\""}",193382,0,"""Asia""" +2024-10-22,88695,717,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3640.03,"{\""loyalty\"": \""26%\""}",64827,1,"""North America""" +2024-10-20,88696,1522,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2870.97,"{\"": \""21%\""}",220189,1,"""Europe""" +2024-09-30,88697,8103,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1037.36,"{\""loyalty\"": \""22%\""}",44777,0,"""North America""" +2024-06-13,88698,2526,"[\""Charger\""]",1106.16,{},163333,1,"""South America""" +2024-05-26,88699,380,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3695.1,{},196023,1,"""South America""" +2024-07-05,88700,165,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2304.59,{},203246,0,"""South America""" +2023-07-08,88701,5227,"[\""Keyboard\""]",3231.16,"{\""seasonal\"": \""5%\""}",297139,0,"""Europe""" +2023-08-29,88702,2782,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3599.35,{},232474,1,"""South America""" +2024-03-20,88703,6413,"[\""Keyboard\""]",58.66,"{\""seasonal\"": \""5%\""}",2665,1,"""North America""" +2023-12-09,88704,2537,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",466.63,"{\""promo\"": \""17%\""}",176914,0,"""South America""" +2023-03-15,88705,1481,"[\""Wireless Mouse\"", \""Laptop\""]",446.81,"{\""loyalty\"": \""11%\""}",175603,0,"""Asia""" +2023-09-02,88706,1883,"[\""Laptop\""]",1965.33,{},294754,0,"""Europe""" +2023-02-21,88707,3627,"[\""Charger\""]",1752.99,"{\""loyalty\"": \""20%\""}",105383,1,"""Europe""" +2023-11-03,88708,2625,"[\""Keyboard\"", \""Wireless Mouse\""]",2944.76,"{\""seasonal\"": \""14%\""}",104976,0,"""Africa""" +2023-05-17,88709,1940,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",1070.05,{},135930,1,"""Europe""" +2023-02-19,88710,5716,"[\""Wireless Mouse\""]",3337.4,{},226674,0,"""North America""" +2024-05-18,88711,8459,"[\""Wireless Mouse\"", \""Keyboard\""]",629.21,{},115469,0,"""Europe""" +2023-11-10,88712,1259,"[\""Keyboard\""]",4716.92,{},67238,1,"""Asia""" +2023-09-25,88713,8068,"[\""Tablet\"", \""Charger\""]",375.51,"{\""promo\"": \""27%\""}",290235,1,"""Asia""" +2023-05-21,88714,1052,"[\""Phone\"", \""Tablet\""]",481.76,"{\""seasonal\"": \""23%\""}",264581,0,"""Africa""" +2023-01-14,88715,9697,"[\""Tablet\"", \""Monitor\""]",4513.59,{},121291,1,"""Europe""" +2024-07-07,88716,1218,"[\""Monitor\"", \""Charger\""]",3369.59,{},22528,1,"""North America""" +2023-06-05,88717,3217,"[\""Wireless Mouse\"", \""Headphones\""]",4340.36,{},94081,0,"""South America""" +2024-01-08,88718,107,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4681.78,{},204112,0,"""South America""" +2023-11-20,88719,3368,"[\""Wireless Mouse\""]",835.72,{},120037,0,"""Asia""" +2023-05-02,88720,4260,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4947.06,"{\""seasonal\"": \""20%\""}",29969,1,"""North America""" +2023-01-25,88721,224,"[\""Headphones\"", \""Charger\""]",2151.38,{},121940,0,"""North America""" +2024-09-15,88722,2983,"[\""Keyboard\"", \""Charger\""]",3641.52,{},81523,1,"""North America""" +2023-08-24,88723,1193,"[\""Charger\"", \""Tablet\""]",225.88,"{\""seasonal\"": \""25%\""}",277051,0,"""Africa""" +2023-02-02,88724,3299,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3405.04,{},97404,0,"""Asia""" +2023-04-12,88725,5275,"[\""Headphones\""]",4706.94,"{\""seasonal\"": \""14%\""}",278184,0,"""Asia""" +2024-10-08,88726,7447,"[\""Charger\""]",1054.54,{},69432,1,"""South America""" +2023-08-26,88727,1124,"[\""Phone\"", \""Monitor\""]",4516.49,"{\""seasonal\"": \""28%\""}",199325,0,"""South America""" +2024-06-24,88728,3872,"[\""Phone\"", \""Keyboard\""]",1571.92,"{\"": \""24%\""}",189151,0,"""North America""" +2024-02-22,88729,8322,"[\""Headphones\""]",733.08,{},46602,1,"""South America""" +2024-07-23,88730,2529,"[\""Phone\""]",611.32,"{\""seasonal\"": \""16%\""}",187429,1,"""Europe""" +2023-01-29,88731,1115,"[\""Wireless Mouse\""]",3145.86,"{\""promo\"": \""16%\""}",222331,1,"""Africa""" +2024-04-14,88732,1082,"[\""Keyboard\""]",3742.41,"{\"": \""10%\""}",59021,0,"""Asia""" +2023-10-04,88733,2225,"[\""Laptop\"", \""Monitor\""]",4135.67,{},157665,0,"""Asia""" +2023-10-08,88734,5108,"[\""Laptop\"", \""Tablet\""]",3910.28,"{\""loyalty\"": \""28%\""}",181642,1,"""Europe""" +2024-01-01,88735,5865,"[\""Monitor\"", \""Headphones\""]",3708.01,"{\""loyalty\"": \""8%\""}",266991,0,"""Europe""" +2023-06-19,88736,4512,"[\""Phone\"", \""Keyboard\""]",1298.18,{},243314,0,"""Asia""" +2024-02-24,88737,6724,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",1476.94,{},223177,0,"""Asia""" +2024-02-08,88738,7416,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3143.45,"{\""loyalty\"": \""26%\""}",176051,0,"""North America""" +2024-08-27,88739,895,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3521.62,{},36556,1,"""South America""" +2024-03-16,88740,3397,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1672.21,{},53246,0,"""Europe""" +2023-10-13,88741,3965,"[\""Laptop\"", \""Wireless Mouse\""]",1636.84,"{\"": \""6%\""}",267628,0,"""Africa""" +2024-02-01,88742,7610,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1992.52,"{\"": \""5%\""}",191097,1,"""Africa""" +2023-09-25,88743,932,"[\""Keyboard\""]",4753.68,{},247946,1,"""North America""" +2023-09-02,88744,6707,"[\""Headphones\"", \""Charger\""]",1067.36,{},166205,0,"""Africa""" +2023-07-02,88745,6747,"[\""Laptop\"", \""Tablet\""]",370.87,{},261595,1,"""North America""" +2024-03-26,88746,5965,"[\""Tablet\"", \""Wireless Mouse\""]",444.85,"{\"": \""13%\""}",187057,0,"""Africa""" +2023-04-22,88747,1279,"[\""Keyboard\""]",2675.0,{},125472,0,"""North America""" +2023-10-24,88748,8259,"[\""Headphones\"", \""Keyboard\""]",4398.78,{},222818,0,"""Asia""" +2024-06-13,88749,4647,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2657.45,{},10412,1,"""Europe""" +2023-12-16,88750,2809,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2715.51,"{\"": \""13%\""}",91174,1,"""North America""" +2024-06-13,88751,7762,"[\""Wireless Mouse\""]",3841.22,{},57263,0,"""North America""" +2023-01-19,88752,7872,"[\""Phone\""]",4021.18,"{\""promo\"": \""6%\""}",53142,1,"""Europe""" +2023-09-18,88753,3117,"[\""Keyboard\"", \""Wireless Mouse\""]",2846.75,"{\""loyalty\"": \""15%\""}",44733,0,"""Europe""" +2023-11-30,88754,87,"[\""Laptop\""]",4133.99,{},243585,0,"""Africa""" +2023-09-03,88755,4439,"[\""Monitor\""]",1003.9,"{\""loyalty\"": \""14%\""}",257317,0,"""Europe""" +2024-08-13,88756,5273,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4026.32,{},52099,0,"""Africa""" +2024-12-07,88757,1410,"[\""Keyboard\"", \""Phone\""]",3187.78,{},228191,1,"""North America""" +2024-02-28,88758,8885,"[\""Phone\""]",3573.82,"{\""loyalty\"": \""17%\""}",51482,1,"""Asia""" +2024-03-30,88759,9395,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3811.0,{},148900,1,"""North America""" +2024-05-14,88760,4570,"[\""Tablet\"", \""Wireless Mouse\""]",4273.71,{},244775,0,"""Africa""" +2023-05-13,88761,5505,"[\""Headphones\""]",4475.9,"{\""seasonal\"": \""21%\""}",237212,0,"""Africa""" +2023-08-23,88762,2107,"[\""Monitor\""]",2850.16,"{\""seasonal\"": \""21%\""}",183425,1,"""North America""" +2024-03-18,88763,8791,"[\""Headphones\"", \""Wireless Mouse\""]",3557.44,{},165868,0,"""North America""" +2024-05-05,88764,4535,"[\""Monitor\""]",2626.48,{},231813,1,"""North America""" +2023-11-17,88765,483,"[\""Laptop\""]",1016.53,{},117860,0,"""South America""" +2024-06-20,88766,4437,"[\""Phone\""]",150.28,"{\""promo\"": \""6%\""}",287306,0,"""North America""" +2023-09-10,88767,3680,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2947.42,{},235678,1,"""Europe""" +2023-07-08,88768,6014,"[\""Phone\"", \""Monitor\""]",2647.07,{},117742,0,"""South America""" +2023-06-12,88769,5390,"[\""Charger\"", \""Monitor\""]",4278.87,"{\""seasonal\"": \""25%\""}",254044,1,"""Europe""" +2024-03-02,88770,7916,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",2384.5,{},145042,1,"""North America""" +2024-01-01,88771,833,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2220.1,"{\"": \""12%\""}",249172,1,"""North America""" +2023-11-27,88772,1374,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4255.25,"{\""promo\"": \""19%\""}",4178,0,"""South America""" +2023-03-03,88773,2499,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1660.99,"{\""seasonal\"": \""14%\""}",57307,0,"""Europe""" +2023-01-25,88774,4445,"[\""Wireless Mouse\""]",3090.4,"{\""promo\"": \""30%\""}",267651,0,"""North America""" +2024-12-05,88775,9151,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1886.03,"{\""seasonal\"": \""6%\""}",71787,1,"""Asia""" +2023-09-06,88776,3352,"[\""Phone\"", \""Charger\""]",1979.11,"{\"": \""24%\""}",270105,0,"""South America""" +2023-01-06,88777,5021,"[\""Tablet\"", \""Monitor\""]",2929.78,{},13103,1,"""Asia""" +2023-07-28,88778,2829,"[\""Charger\""]",1732.81,"{\"": \""9%\""}",149741,0,"""North America""" +2023-11-03,88779,4915,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3941.03,{},127306,0,"""Asia""" +2024-12-15,88780,5254,"[\""Keyboard\"", \""Charger\""]",2195.31,{},130367,1,"""South America""" +2023-02-08,88781,4992,"[\""Phone\"", \""Wireless Mouse\""]",2509.0,{},272874,0,"""South America""" +2023-08-23,88782,8556,"[\""Monitor\"", \""Headphones\""]",714.24,{},54524,0,"""Europe""" +2024-02-01,88783,7345,"[\""Laptop\"", \""Tablet\""]",2505.35,{},40527,0,"""Europe""" +2024-08-04,88784,1446,"[\""Phone\""]",2765.02,"{\""seasonal\"": \""17%\""}",142492,0,"""Africa""" +2024-11-25,88785,6016,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3350.06,{},263586,1,"""Europe""" +2024-03-27,88786,9874,"[\""Tablet\""]",3945.44,"{\""seasonal\"": \""8%\""}",24474,1,"""North America""" +2023-01-30,88787,5403,"[\""Laptop\"", \""Phone\""]",1466.13,{},82128,1,"""North America""" +2024-02-04,88788,6084,"[\""Laptop\""]",1348.97,"{\""seasonal\"": \""23%\""}",1420,1,"""Europe""" +2024-08-10,88789,6638,"[\""Charger\""]",3015.5,{},213576,0,"""Asia""" +2023-12-23,88790,7913,"[\""Keyboard\"", \""Headphones\""]",4559.12,{},237008,1,"""North America""" +2024-04-25,88791,3546,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2600.56,{},137862,0,"""Africa""" +2023-03-26,88792,4589,"[\""Headphones\"", \""Phone\""]",1385.8,"{\""seasonal\"": \""20%\""}",144999,1,"""North America""" +2024-01-11,88793,6496,"[\""Wireless Mouse\""]",2212.79,"{\""promo\"": \""10%\""}",260356,0,"""South America""" +2024-12-31,88794,2803,"[\""Monitor\""]",757.53,"{\""promo\"": \""22%\""}",99877,1,"""North America""" +2023-02-11,88795,9285,"[\""Tablet\"", \""Phone\""]",2135.1,{},24301,0,"""South America""" +2024-03-30,88796,8691,"[\""Laptop\""]",2436.45,{},190605,0,"""Asia""" +2023-04-08,88797,8847,"[\""Wireless Mouse\""]",2554.21,"{\"": \""18%\""}",143618,1,"""South America""" +2023-10-14,88798,6857,"[\""Wireless Mouse\"", \""Charger\""]",3858.33,{},250365,1,"""Africa""" +2023-09-13,88799,7129,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1782.14,"{\""promo\"": \""25%\""}",232130,1,"""Asia""" +2024-05-20,88800,5612,"[\""Laptop\""]",4962.32,"{\""seasonal\"": \""18%\""}",75195,0,"""Asia""" +2024-10-19,88801,8812,"[\""Laptop\""]",1021.36,{},240137,0,"""North America""" +2024-04-03,88802,4857,"[\""Monitor\"", \""Wireless Mouse\""]",2539.14,"{\""promo\"": \""24%\""}",147570,1,"""Africa""" +2024-04-22,88803,1045,"[\""Monitor\"", \""Headphones\""]",480.52,"{\""seasonal\"": \""5%\""}",293971,0,"""Africa""" +2024-08-08,88804,1216,"[\""Laptop\"", \""Charger\""]",326.17,{},96471,0,"""Asia""" +2023-04-29,88805,4066,"[\""Keyboard\"", \""Headphones\""]",1762.08,{},140034,0,"""South America""" +2024-07-21,88806,8984,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4867.6,"{\""seasonal\"": \""26%\""}",39330,0,"""Europe""" +2024-03-01,88807,3629,"[\""Phone\"", \""Tablet\""]",4102.08,"{\""loyalty\"": \""21%\""}",73578,0,"""South America""" +2023-01-15,88808,5910,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1346.01,{},107624,0,"""Africa""" +2023-10-18,88809,9625,"[\""Headphones\"", \""Laptop\""]",1125.6,{},71868,0,"""North America""" +2023-01-26,88810,8421,"[\""Monitor\""]",2566.45,"{\""seasonal\"": \""5%\""}",69910,1,"""South America""" +2023-07-31,88811,1363,"[\""Phone\""]",4183.44,{},104861,0,"""Africa""" +2023-01-08,88812,3893,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1203.67,"{\"": \""27%\""}",57589,1,"""Europe""" +2023-12-22,88813,5211,"[\""Laptop\"", \""Wireless Mouse\""]",2247.45,"{\""promo\"": \""18%\""}",234980,1,"""South America""" +2024-11-29,88814,8593,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",992.52,{},281318,1,"""Asia""" +2024-01-10,88815,2258,"[\""Headphones\"", \""Charger\""]",4651.72,{},61900,1,"""Asia""" +2023-01-27,88816,9268,"[\""Phone\"", \""Monitor\""]",1538.64,"{\"": \""24%\""}",250579,1,"""Africa""" +2023-07-28,88817,7759,"[\""Laptop\"", \""Charger\""]",3937.86,"{\"": \""6%\""}",232623,1,"""South America""" +2023-02-25,88818,3582,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2954.15,"{\""seasonal\"": \""11%\""}",150229,1,"""North America""" +2024-05-19,88819,6608,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4583.44,{},240646,0,"""Africa""" +2023-10-30,88820,3091,"[\""Phone\""]",3421.85,"{\""loyalty\"": \""28%\""}",192260,1,"""Africa""" +2023-12-26,88821,9588,"[\""Monitor\""]",1693.01,{},213787,0,"""Africa""" +2023-02-18,88822,7593,"[\""Keyboard\"", \""Charger\""]",4377.78,{},98838,1,"""Africa""" +2023-04-25,88823,9398,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",2277.83,"{\""loyalty\"": \""22%\""}",46621,1,"""Europe""" +2023-06-27,88824,4092,"[\""Charger\""]",1154.2,"{\""seasonal\"": \""30%\""}",6780,0,"""North America""" +2023-05-12,88825,8277,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4091.78,{},291697,1,"""South America""" +2023-03-16,88826,8358,"[\""Headphones\"", \""Wireless Mouse\""]",3188.96,{},188787,0,"""South America""" +2024-08-05,88827,9789,"[\""Wireless Mouse\""]",949.64,{},212311,0,"""Europe""" +2023-08-13,88828,5313,"[\""Keyboard\""]",1742.19,{},153484,1,"""South America""" +2023-12-05,88829,6552,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",978.0,"{\""loyalty\"": \""18%\""}",10001,0,"""Europe""" +2023-09-30,88830,8576,"[\""Headphones\""]",232.84,{},13086,0,"""South America""" +2024-12-02,88831,2760,"[\""Monitor\"", \""Headphones\""]",432.41,"{\"": \""30%\""}",229078,0,"""Africa""" +2023-08-26,88832,540,"[\""Tablet\"", \""Headphones\""]",3050.15,"{\""loyalty\"": \""9%\""}",116484,0,"""South America""" +2023-06-19,88833,8325,"[\""Tablet\"", \""Laptop\""]",4108.32,{},33020,0,"""North America""" +2023-08-17,88834,1810,"[\""Wireless Mouse\"", \""Phone\""]",2166.1,{},47165,1,"""Europe""" +2024-06-27,88835,5139,"[\""Tablet\""]",4556.73,"{\""loyalty\"": \""21%\""}",36566,1,"""South America""" +2024-07-20,88836,1358,"[\""Charger\""]",1603.76,"{\""seasonal\"": \""8%\""}",32083,1,"""South America""" +2024-02-10,88837,9355,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3965.56,"{\""promo\"": \""16%\""}",273620,0,"""South America""" +2023-04-08,88838,9154,"[\""Laptop\"", \""Headphones\""]",3148.84,"{\""promo\"": \""27%\""}",240674,1,"""North America""" +2023-05-03,88839,9266,"[\""Tablet\"", \""Wireless Mouse\""]",2178.95,{},85254,1,"""North America""" +2024-08-20,88840,2426,"[\""Charger\"", \""Keyboard\""]",2789.22,"{\""seasonal\"": \""5%\""}",16402,0,"""Africa""" +2024-09-17,88841,7182,"[\""Wireless Mouse\""]",2608.9,{},235131,0,"""South America""" +2024-06-14,88842,210,"[\""Headphones\"", \""Laptop\""]",707.33,{},112262,0,"""Asia""" +2023-06-05,88843,7873,"[\""Phone\"", \""Tablet\""]",1962.04,"{\""promo\"": \""19%\""}",191978,0,"""Europe""" +2023-05-13,88844,911,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2568.38,{},148798,0,"""Europe""" +2024-03-14,88845,6534,"[\""Keyboard\"", \""Phone\""]",4471.66,{},32123,0,"""Europe""" +2023-05-21,88846,6277,"[\""Wireless Mouse\"", \""Phone\""]",2442.27,{},166727,0,"""Europe""" +2023-03-02,88847,2936,"[\""Headphones\"", \""Phone\""]",1172.12,"{\""loyalty\"": \""26%\""}",120777,0,"""Asia""" +2023-09-02,88848,3574,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2652.77,"{\""promo\"": \""8%\""}",19736,0,"""North America""" +2024-05-04,88849,5994,"[\""Charger\"", \""Keyboard\""]",3828.99,{},168505,0,"""South America""" +2023-07-08,88850,1530,"[\""Charger\""]",228.18,{},165476,1,"""South America""" +2023-09-19,88851,2407,"[\""Phone\"", \""Laptop\""]",912.28,"{\"": \""11%\""}",101222,1,"""Africa""" +2024-10-15,88852,4475,"[\""Tablet\"", \""Charger\""]",1595.94,"{\""seasonal\"": \""12%\""}",111561,0,"""Europe""" +2024-07-15,88853,816,"[\""Monitor\""]",657.14,"{\""loyalty\"": \""21%\""}",276628,1,"""Europe""" +2023-05-16,88854,4623,"[\""Tablet\""]",3672.89,{},151121,0,"""Africa""" +2024-02-15,88855,6642,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3057.91,"{\""seasonal\"": \""15%\""}",35914,0,"""Asia""" +2024-08-07,88856,2808,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4608.43,"{\""loyalty\"": \""19%\""}",38086,1,"""Africa""" +2023-04-21,88857,4795,"[\""Tablet\""]",2077.42,{},197600,0,"""Africa""" +2024-04-14,88858,4405,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3727.61,"{\""seasonal\"": \""6%\""}",270644,1,"""North America""" +2023-12-14,88859,3573,"[\""Headphones\"", \""Phone\""]",4159.76,"{\""loyalty\"": \""17%\""}",81509,0,"""North America""" +2024-06-15,88860,8164,"[\""Tablet\""]",1573.77,"{\""promo\"": \""22%\""}",126025,0,"""South America""" +2024-01-27,88861,4679,"[\""Charger\""]",539.86,{},54413,1,"""South America""" +2023-04-18,88862,8751,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",658.65,{},151253,0,"""Europe""" +2023-11-01,88863,9129,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1441.09,{},199443,0,"""South America""" +2023-12-31,88864,1448,"[\""Keyboard\""]",2352.05,{},239202,0,"""South America""" +2024-02-18,88865,779,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",1521.13,{},189526,0,"""South America""" +2024-11-18,88866,2414,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1517.11,{},188909,1,"""Asia""" +2023-06-09,88867,7357,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",851.77,"{\"": \""27%\""}",117506,0,"""North America""" +2024-03-25,88868,279,"[\""Keyboard\"", \""Phone\""]",2192.3,{},262505,1,"""Asia""" +2024-05-25,88869,1187,"[\""Wireless Mouse\""]",3494.09,"{\""loyalty\"": \""15%\""}",37299,1,"""North America""" +2024-05-10,88870,6833,"[\""Headphones\""]",1600.19,{},235736,1,"""Africa""" +2024-10-17,88871,6290,"[\""Tablet\"", \""Wireless Mouse\""]",4151.43,{},38253,1,"""Europe""" +2023-04-28,88872,3230,"[\""Laptop\"", \""Monitor\""]",4681.67,{},197177,1,"""Asia""" +2023-07-14,88873,1179,"[\""Keyboard\"", \""Charger\""]",630.11,"{\""loyalty\"": \""23%\""}",178512,0,"""North America""" +2024-09-23,88874,5574,"[\""Laptop\""]",3565.68,"{\""promo\"": \""14%\""}",15076,1,"""North America""" +2023-11-06,88875,4871,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",1367.76,{},173202,0,"""Africa""" +2023-09-01,88876,9657,"[\""Keyboard\""]",1111.5,{},228702,0,"""Asia""" +2024-07-10,88877,3318,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2808.45,{},130053,1,"""Africa""" +2024-08-09,88878,3967,"[\""Laptop\"", \""Charger\"", \""Phone\""]",2725.22,"{\""seasonal\"": \""5%\""}",26571,0,"""Europe""" +2023-09-19,88879,8293,"[\""Charger\""]",456.31,{},261545,0,"""North America""" +2024-01-10,88880,595,"[\""Keyboard\""]",3929.9,"{\""promo\"": \""7%\""}",134240,0,"""Africa""" +2023-04-06,88881,2172,"[\""Laptop\"", \""Headphones\""]",628.76,"{\"": \""9%\""}",223260,1,"""Asia""" +2024-11-12,88882,7372,"[\""Phone\"", \""Wireless Mouse\""]",2995.13,{},203352,1,"""Europe""" +2023-11-20,88883,3227,"[\""Wireless Mouse\"", \""Headphones\""]",1741.95,"{\""loyalty\"": \""20%\""}",62336,1,"""Africa""" +2023-09-26,88884,1059,"[\""Charger\""]",4478.54,"{\""seasonal\"": \""29%\""}",81991,0,"""Europe""" +2023-10-16,88885,4465,"[\""Tablet\""]",3955.01,{},9368,0,"""Africa""" +2023-06-02,88886,1638,"[\""Keyboard\"", \""Phone\""]",3629.43,{},167041,1,"""South America""" +2023-11-30,88887,4306,"[\""Headphones\""]",4357.96,"{\""promo\"": \""23%\""}",186678,0,"""Europe""" +2023-03-10,88888,4239,"[\""Charger\"", \""Headphones\""]",1081.8,"{\""seasonal\"": \""11%\""}",56477,0,"""Asia""" +2023-09-23,88889,3020,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4171.89,"{\""loyalty\"": \""12%\""}",52907,1,"""South America""" +2024-04-04,88890,9703,"[\""Laptop\""]",814.0,"{\""seasonal\"": \""27%\""}",159551,0,"""Asia""" +2023-02-14,88891,2580,"[\""Wireless Mouse\""]",653.72,{},224708,1,"""South America""" +2023-03-19,88892,7789,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2563.18,"{\"": \""9%\""}",1529,1,"""North America""" +2024-08-06,88893,848,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4527.26,{},146765,0,"""South America""" +2023-07-04,88894,9105,"[\""Charger\""]",3789.41,{},57965,1,"""South America""" +2023-08-19,88895,1108,"[\""Monitor\"", \""Laptop\""]",1400.36,"{\""seasonal\"": \""14%\""}",57303,1,"""South America""" +2024-01-17,88896,9019,"[\""Laptop\""]",2114.38,{},135177,0,"""South America""" +2023-10-17,88897,4280,"[\""Tablet\""]",526.8,{},47189,1,"""South America""" +2024-07-13,88898,3037,"[\""Monitor\"", \""Wireless Mouse\""]",4687.44,{},242223,0,"""Asia""" +2023-11-05,88899,2213,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4486.89,{},103572,1,"""Europe""" +2023-01-28,88900,206,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",440.09,"{\""seasonal\"": \""12%\""}",254595,1,"""South America""" +2024-09-24,88901,4185,"[\""Phone\"", \""Wireless Mouse\""]",3569.23,"{\"": \""30%\""}",85103,0,"""Europe""" +2023-02-02,88902,7234,"[\""Charger\""]",1907.85,{},181882,1,"""Asia""" +2023-02-04,88903,9442,"[\""Laptop\""]",386.96,{},88909,0,"""Europe""" +2023-01-08,88904,7139,"[\""Charger\""]",4400.74,{},191344,1,"""South America""" +2023-10-06,88905,7356,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1096.85,"{\"": \""8%\""}",88928,0,"""Europe""" +2024-07-02,88906,419,"[\""Laptop\"", \""Wireless Mouse\""]",3973.7,"{\""seasonal\"": \""23%\""}",187051,1,"""Asia""" +2023-11-09,88907,1406,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",702.6,{},56160,1,"""Asia""" +2024-04-22,88908,9416,"[\""Tablet\"", \""Headphones\""]",3425.38,{},130929,1,"""Africa""" +2024-11-02,88909,4321,"[\""Headphones\""]",4467.84,{},270333,0,"""North America""" +2023-01-02,88910,984,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4401.45,"{\""promo\"": \""25%\""}",291087,1,"""Asia""" +2023-09-14,88911,72,"[\""Wireless Mouse\"", \""Charger\""]",4589.35,{},152936,1,"""Africa""" +2023-05-13,88912,4903,"[\""Phone\""]",1687.89,{},124159,1,"""Africa""" +2024-08-04,88913,2968,"[\""Headphones\"", \""Laptop\""]",2436.26,"{\""loyalty\"": \""6%\""}",270735,1,"""North America""" +2023-08-13,88914,557,"[\""Wireless Mouse\"", \""Charger\""]",3060.78,{},93446,0,"""South America""" +2024-08-30,88915,2036,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1696.0,"{\""loyalty\"": \""25%\""}",83761,0,"""Europe""" +2024-03-25,88916,7565,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",2586.62,{},76396,1,"""Africa""" +2024-10-28,88917,5392,"[\""Monitor\""]",2991.97,{},155821,0,"""North America""" +2024-07-11,88918,294,"[\""Laptop\""]",902.23,{},216866,1,"""Asia""" +2024-01-02,88919,3975,"[\""Charger\""]",2482.55,"{\""loyalty\"": \""13%\""}",54514,1,"""Asia""" +2024-07-06,88920,5933,"[\""Wireless Mouse\""]",4792.47,{},241106,0,"""Asia""" +2024-12-31,88921,4363,"[\""Charger\""]",1101.8,"{\""promo\"": \""10%\""}",175443,1,"""North America""" +2023-11-14,88922,4252,"[\""Monitor\""]",4693.8,"{\"": \""22%\""}",2789,0,"""South America""" +2023-11-12,88923,5064,"[\""Phone\"", \""Keyboard\""]",2057.41,{},247848,0,"""North America""" +2024-06-03,88924,1157,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2127.38,"{\""promo\"": \""28%\""}",89939,1,"""North America""" +2023-03-26,88925,6032,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",759.94,{},275568,1,"""Africa""" +2023-03-16,88926,6748,"[\""Headphones\""]",1842.24,"{\"": \""8%\""}",241401,0,"""Asia""" +2024-03-13,88927,168,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1237.75,{},89776,0,"""North America""" +2024-11-19,88928,5648,"[\""Tablet\"", \""Charger\"", \""Phone\""]",4928.73,{},22390,1,"""Europe""" +2024-09-28,88929,4758,"[\""Wireless Mouse\""]",1577.59,"{\""loyalty\"": \""11%\""}",182498,1,"""Europe""" +2024-12-03,88930,8968,"[\""Monitor\"", \""Charger\""]",67.22,{},106223,1,"""South America""" +2024-02-19,88931,3064,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4414.37,{},246397,1,"""Europe""" +2023-08-20,88932,7807,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",985.61,"{\""loyalty\"": \""9%\""}",183621,1,"""South America""" +2023-02-10,88933,841,"[\""Charger\"", \""Wireless Mouse\""]",632.62,{},172800,1,"""North America""" +2023-11-15,88934,9917,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",477.49,{},123777,1,"""North America""" +2023-06-24,88935,848,"[\""Tablet\"", \""Keyboard\""]",3772.21,"{\""seasonal\"": \""15%\""}",206915,0,"""Africa""" +2024-09-19,88936,3249,"[\""Charger\"", \""Monitor\""]",860.43,"{\""loyalty\"": \""9%\""}",221841,1,"""Africa""" +2024-08-05,88937,6080,"[\""Wireless Mouse\"", \""Charger\""]",3071.9,{},179466,1,"""Europe""" +2024-06-07,88938,7786,"[\""Monitor\"", \""Phone\""]",3106.06,{},259573,1,"""Asia""" +2024-10-21,88939,9792,"[\""Headphones\""]",493.71,"{\"": \""10%\""}",95261,0,"""Africa""" +2023-11-30,88940,851,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2818.33,"{\""seasonal\"": \""9%\""}",126953,1,"""North America""" +2024-12-17,88941,4575,"[\""Monitor\""]",2679.13,{},22089,0,"""North America""" +2023-11-02,88942,1884,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3419.18,{},199006,0,"""Asia""" +2023-12-21,88943,7712,"[\""Tablet\""]",1366.51,{},69027,0,"""Africa""" +2023-01-07,88944,4241,"[\""Laptop\""]",112.74,{},56483,1,"""North America""" +2023-08-05,88945,626,"[\""Tablet\"", \""Headphones\""]",2883.41,"{\""promo\"": \""5%\""}",284764,1,"""North America""" +2023-12-15,88946,4872,"[\""Laptop\""]",141.57,"{\"": \""20%\""}",299317,1,"""North America""" +2023-10-23,88947,8312,"[\""Phone\""]",4981.99,"{\"": \""10%\""}",288090,1,"""South America""" +2023-12-14,88948,6720,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3670.01,"{\""loyalty\"": \""19%\""}",60407,0,"""South America""" +2023-09-05,88949,8295,"[\""Wireless Mouse\""]",2635.7,"{\"": \""14%\""}",65768,1,"""North America""" +2023-01-24,88950,2020,"[\""Charger\""]",384.09,"{\""promo\"": \""16%\""}",98106,1,"""South America""" +2023-06-11,88951,4326,"[\""Wireless Mouse\"", \""Monitor\""]",500.77,{},188315,0,"""South America""" +2023-01-07,88952,7252,"[\""Charger\""]",232.53,{},113162,0,"""Africa""" +2023-12-29,88953,4596,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2850.69,"{\""seasonal\"": \""30%\""}",291930,1,"""South America""" +2023-06-30,88954,6129,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",740.76,{},99951,0,"""South America""" +2024-11-09,88955,5891,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1701.7,{},237984,0,"""North America""" +2024-09-11,88956,9559,"[\""Charger\"", \""Keyboard\""]",3092.88,{},257178,0,"""Asia""" +2023-09-20,88957,6852,"[\""Laptop\""]",3070.88,"{\""promo\"": \""25%\""}",202241,1,"""Europe""" +2023-02-26,88958,6814,"[\""Keyboard\"", \""Charger\""]",2466.49,{},241543,1,"""Africa""" +2023-11-02,88959,8289,"[\""Charger\""]",947.39,"{\""promo\"": \""11%\""}",178088,1,"""South America""" +2023-04-11,88960,4622,"[\""Keyboard\""]",4089.64,{},148928,0,"""North America""" +2024-03-23,88961,2581,"[\""Keyboard\"", \""Headphones\""]",3225.21,"{\""seasonal\"": \""29%\""}",188843,0,"""North America""" +2024-10-24,88962,3634,"[\""Tablet\"", \""Phone\""]",4200.37,{},192037,0,"""South America""" +2023-04-14,88963,4600,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2266.06,"{\"": \""24%\""}",281564,1,"""North America""" +2024-12-18,88964,4789,"[\""Charger\""]",558.95,{},246186,0,"""Asia""" +2023-04-17,88965,8283,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4953.87,"{\""loyalty\"": \""8%\""}",189997,1,"""North America""" +2023-07-04,88966,5253,"[\""Phone\""]",1123.51,{},234546,0,"""South America""" +2023-07-15,88967,5308,"[\""Laptop\"", \""Tablet\""]",2689.43,"{\""seasonal\"": \""8%\""}",288810,1,"""North America""" +2023-09-14,88968,2336,"[\""Laptop\""]",4264.18,"{\""loyalty\"": \""27%\""}",292614,0,"""South America""" +2024-02-08,88969,7456,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3567.3,{},10413,1,"""Africa""" +2024-08-08,88970,6137,"[\""Phone\"", \""Tablet\""]",2275.27,"{\""seasonal\"": \""20%\""}",73175,1,"""South America""" +2023-03-28,88971,267,"[\""Phone\"", \""Charger\""]",3385.3,{},152222,1,"""South America""" +2023-05-16,88972,765,"[\""Monitor\""]",1485.33,"{\"": \""12%\""}",265009,1,"""Africa""" +2024-02-02,88973,2671,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1073.24,{},71298,1,"""Asia""" +2023-08-15,88974,272,"[\""Phone\""]",4923.39,{},274247,1,"""Europe""" +2024-03-01,88975,1550,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2679.78,"{\"": \""15%\""}",14871,0,"""Asia""" +2023-08-13,88976,9898,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1615.53,{},5797,1,"""Africa""" +2023-06-22,88977,6565,"[\""Tablet\"", \""Wireless Mouse\""]",1162.07,"{\""loyalty\"": \""12%\""}",19682,0,"""Europe""" +2024-08-03,88978,5990,"[\""Headphones\"", \""Monitor\""]",907.29,"{\""loyalty\"": \""28%\""}",155132,1,"""Asia""" +2023-12-06,88979,2461,"[\""Keyboard\"", \""Wireless Mouse\""]",2211.81,{},227497,0,"""South America""" +2024-10-11,88980,530,"[\""Keyboard\""]",1508.78,{},66871,0,"""North America""" +2024-05-31,88981,6513,"[\""Keyboard\""]",330.98,"{\""seasonal\"": \""19%\""}",129414,0,"""Africa""" +2024-05-18,88982,9683,"[\""Charger\""]",82.64,"{\"": \""7%\""}",187136,1,"""Asia""" +2024-09-28,88983,747,"[\""Phone\"", \""Wireless Mouse\""]",4330.75,"{\""loyalty\"": \""7%\""}",9835,1,"""Europe""" +2024-08-05,88984,1827,"[\""Phone\""]",1431.62,"{\""promo\"": \""8%\""}",253125,0,"""North America""" +2024-11-30,88985,5005,"[\""Phone\""]",4972.2,{},208867,0,"""North America""" +2024-07-15,88986,7423,"[\""Tablet\""]",3259.77,"{\""seasonal\"": \""19%\""}",68959,0,"""Europe""" +2023-12-15,88987,749,"[\""Monitor\""]",127.86,"{\""loyalty\"": \""26%\""}",288567,1,"""North America""" +2024-08-04,88988,3140,"[\""Charger\""]",4963.83,{},260135,1,"""North America""" +2024-07-30,88989,9607,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4176.3,{},257570,1,"""Africa""" +2024-08-02,88990,7992,"[\""Wireless Mouse\""]",2083.83,"{\""loyalty\"": \""9%\""}",216203,0,"""Europe""" +2024-10-10,88991,8436,"[\""Monitor\""]",3815.43,{},222151,0,"""Asia""" +2023-07-16,88992,6991,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",186.95,{},290767,1,"""Africa""" +2023-04-22,88993,5881,"[\""Keyboard\"", \""Phone\""]",1341.34,{},88373,1,"""North America""" +2023-05-31,88994,5947,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3045.49,{},134178,1,"""Europe""" +2023-11-13,88995,3440,"[\""Charger\""]",4186.02,{},42284,1,"""Europe""" +2023-03-16,88996,9317,"[\""Monitor\""]",4700.55,"{\""promo\"": \""23%\""}",2481,1,"""North America""" +2023-12-05,88997,9376,"[\""Wireless Mouse\""]",547.42,"{\""promo\"": \""28%\""}",136191,0,"""Europe""" +2024-03-30,88998,4861,"[\""Headphones\"", \""Monitor\""]",2935.66,"{\"": \""27%\""}",36862,0,"""Africa""" +2024-06-11,88999,5741,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4259.75,{},174502,1,"""Europe""" +2024-09-28,89000,8192,"[\""Charger\""]",612.43,{},57727,0,"""Africa""" +2023-03-01,89001,7537,"[\""Phone\"", \""Wireless Mouse\""]",2374.52,{},100309,0,"""South America""" +2023-06-19,89002,2252,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2575.32,"{\""seasonal\"": \""21%\""}",28264,1,"""Europe""" +2024-12-05,89003,110,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3147.06,"{\"": \""16%\""}",237143,1,"""Europe""" +2024-05-24,89004,6700,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3502.51,{},14455,0,"""Europe""" +2023-01-08,89005,6435,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2335.49,{},109350,1,"""Africa""" +2024-03-18,89006,9946,"[\""Headphones\"", \""Monitor\""]",530.21,{},140490,0,"""Africa""" +2024-01-04,89007,2948,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4655.73,"{\""seasonal\"": \""29%\""}",153603,0,"""South America""" +2024-04-01,89008,3387,"[\""Headphones\""]",1918.77,{},257819,1,"""Asia""" +2023-03-24,89009,6587,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4861.05,"{\""promo\"": \""9%\""}",237969,1,"""North America""" +2023-11-17,89010,2746,"[\""Laptop\""]",1378.43,"{\"": \""27%\""}",138940,1,"""South America""" +2023-03-31,89011,9133,"[\""Phone\""]",2139.45,"{\""seasonal\"": \""25%\""}",18841,0,"""Africa""" +2023-06-29,89012,8614,"[\""Headphones\""]",1721.1,{},184694,1,"""South America""" +2024-07-21,89013,1130,"[\""Monitor\""]",3870.32,{},100520,1,"""Europe""" +2024-11-10,89014,621,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3349.22,{},63415,1,"""Africa""" +2024-05-25,89015,9933,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3423.06,"{\"": \""27%\""}",191482,0,"""Africa""" +2024-10-05,89016,3991,"[\""Tablet\"", \""Wireless Mouse\""]",3917.19,"{\""promo\"": \""10%\""}",29991,0,"""Africa""" +2024-02-15,89017,6151,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",865.75,{},255150,1,"""Asia""" +2024-03-21,89018,66,"[\""Wireless Mouse\"", \""Laptop\""]",3974.68,"{\"": \""26%\""}",155741,0,"""Africa""" +2024-09-22,89019,2315,"[\""Phone\"", \""Laptop\""]",3373.96,"{\""seasonal\"": \""22%\""}",127126,1,"""Europe""" +2024-01-03,89020,3055,"[\""Phone\"", \""Monitor\""]",2128.49,"{\""seasonal\"": \""19%\""}",250808,0,"""North America""" +2024-06-09,89021,6518,"[\""Laptop\"", \""Wireless Mouse\""]",80.55,{},163392,1,"""Africa""" +2024-12-18,89022,2202,"[\""Headphones\""]",4630.07,"{\""promo\"": \""14%\""}",155789,0,"""Africa""" +2024-03-11,89023,6515,"[\""Phone\"", \""Laptop\""]",2449.94,{},212952,0,"""North America""" +2024-11-16,89024,7033,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2892.3,{},294922,1,"""South America""" +2024-06-02,89025,1287,"[\""Headphones\""]",2158.93,"{\""promo\"": \""12%\""}",98759,1,"""Asia""" +2023-07-29,89026,8405,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2178.92,{},173067,1,"""Asia""" +2024-09-15,89027,2637,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4329.31,{},271895,0,"""North America""" +2024-03-17,89028,7517,"[\""Laptop\""]",419.54,"{\""seasonal\"": \""15%\""}",238896,0,"""Africa""" +2024-06-19,89029,4785,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",126.51,{},241485,0,"""South America""" +2024-08-25,89030,2987,"[\""Headphones\""]",4797.5,"{\""promo\"": \""11%\""}",163655,0,"""Europe""" +2024-07-07,89031,198,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1267.34,"{\""loyalty\"": \""25%\""}",145789,0,"""Africa""" +2023-04-01,89032,5319,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1167.68,"{\""promo\"": \""27%\""}",63702,1,"""South America""" +2024-06-28,89033,5472,"[\""Monitor\"", \""Laptop\""]",928.45,{},98408,1,"""North America""" +2023-06-19,89034,5562,"[\""Monitor\""]",2039.63,{},250678,0,"""Africa""" +2023-03-15,89035,8736,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1280.5,"{\"": \""8%\""}",125430,0,"""Africa""" +2024-04-08,89036,8969,"[\""Laptop\"", \""Charger\""]",4792.76,{},196420,0,"""Asia""" +2024-02-25,89037,293,"[\""Wireless Mouse\""]",3065.24,"{\""promo\"": \""22%\""}",12066,1,"""Asia""" +2024-04-11,89038,4221,"[\""Laptop\""]",3408.17,{},26805,0,"""South America""" +2023-08-02,89039,1253,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1747.53,"{\"": \""20%\""}",131249,0,"""South America""" +2024-10-15,89040,6253,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4446.6,{},201631,0,"""Asia""" +2024-02-18,89041,6648,"[\""Charger\""]",562.89,{},213706,1,"""South America""" +2023-06-01,89042,2524,"[\""Monitor\""]",86.19,{},104492,0,"""Asia""" +2024-09-06,89043,3386,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",732.01,"{\"": \""12%\""}",6122,0,"""Asia""" +2024-05-06,89044,8809,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",331.16,"{\"": \""12%\""}",180245,0,"""Asia""" +2024-12-25,89045,8890,"[\""Phone\""]",1270.05,{},157840,1,"""Asia""" +2024-12-21,89046,4137,"[\""Keyboard\""]",4226.7,{},187951,0,"""North America""" +2023-06-17,89047,6746,"[\""Keyboard\"", \""Monitor\""]",735.55,"{\""loyalty\"": \""15%\""}",142334,0,"""North America""" +2024-03-23,89048,1376,"[\""Laptop\""]",420.41,"{\""loyalty\"": \""26%\""}",78652,0,"""Africa""" +2024-08-06,89049,1525,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2940.35,"{\""promo\"": \""26%\""}",134285,1,"""South America""" +2023-05-27,89050,4463,"[\""Wireless Mouse\"", \""Keyboard\""]",2422.76,"{\""loyalty\"": \""28%\""}",128954,0,"""Asia""" +2024-12-16,89051,8582,"[\""Tablet\"", \""Monitor\""]",2183.15,{},269714,1,"""Africa""" +2023-01-21,89052,6171,"[\""Wireless Mouse\"", \""Phone\""]",4875.21,{},141424,1,"""South America""" +2024-04-13,89053,8303,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4893.46,"{\"": \""19%\""}",224551,0,"""North America""" +2024-12-01,89054,2866,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2057.79,"{\""loyalty\"": \""25%\""}",137997,1,"""Africa""" +2024-10-23,89055,6988,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4162.09,"{\""promo\"": \""29%\""}",104205,0,"""South America""" +2024-11-19,89056,1536,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",1986.14,"{\""promo\"": \""18%\""}",162443,0,"""North America""" +2024-01-05,89057,5716,"[\""Monitor\""]",1597.96,"{\""loyalty\"": \""11%\""}",266456,1,"""Asia""" +2024-11-01,89058,5210,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1706.57,{},259331,1,"""Africa""" +2023-04-19,89059,882,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",935.28,{},22180,0,"""South America""" +2024-05-23,89060,8713,"[\""Charger\"", \""Monitor\""]",2259.1,{},135871,1,"""Europe""" +2023-02-21,89061,3341,"[\""Charger\""]",4522.54,"{\"": \""19%\""}",99279,1,"""North America""" +2023-03-28,89062,1226,"[\""Laptop\""]",1482.08,"{\""loyalty\"": \""29%\""}",235026,1,"""Asia""" +2023-10-15,89063,8908,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1662.44,{},168588,0,"""Africa""" +2023-07-14,89064,9076,"[\""Wireless Mouse\""]",1712.27,"{\""promo\"": \""20%\""}",193782,1,"""Asia""" +2024-06-08,89065,2239,"[\""Monitor\""]",1129.14,{},28152,1,"""South America""" +2024-04-06,89066,7256,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4455.65,"{\""promo\"": \""13%\""}",152729,1,"""Europe""" +2024-01-06,89067,8065,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1921.17,"{\""loyalty\"": \""11%\""}",164399,0,"""North America""" +2023-12-30,89068,3020,"[\""Charger\"", \""Wireless Mouse\""]",1110.43,{},163724,1,"""Europe""" +2024-08-13,89069,5034,"[\""Charger\"", \""Laptop\""]",3902.04,{},211012,1,"""Asia""" +2023-02-22,89070,5088,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4934.51,{},297206,1,"""Asia""" +2024-08-17,89071,2738,"[\""Headphones\"", \""Charger\""]",455.15,"{\"": \""16%\""}",215477,0,"""South America""" +2024-02-10,89072,2016,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3380.83,{},280453,0,"""South America""" +2023-10-21,89073,2980,"[\""Laptop\"", \""Phone\""]",2645.44,{},131919,1,"""Europe""" +2023-03-14,89074,830,"[\""Charger\""]",4607.35,"{\""loyalty\"": \""23%\""}",178656,1,"""North America""" +2023-09-16,89075,1086,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1888.76,{},208994,1,"""Africa""" +2023-04-01,89076,2733,"[\""Wireless Mouse\""]",2007.29,{},288506,1,"""Europe""" +2024-01-26,89077,4395,"[\""Keyboard\"", \""Wireless Mouse\""]",614.56,{},15619,1,"""Africa""" +2024-05-20,89078,2702,"[\""Phone\""]",2493.94,{},101593,0,"""South America""" +2024-04-28,89079,7925,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4843.38,{},121480,0,"""Asia""" +2024-02-03,89080,6535,"[\""Keyboard\"", \""Tablet\""]",3892.76,"{\""promo\"": \""22%\""}",64781,0,"""Africa""" +2024-04-22,89081,873,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4031.28,{},270760,0,"""Africa""" +2023-02-11,89082,9217,"[\""Tablet\""]",1337.04,"{\""promo\"": \""23%\""}",45573,0,"""North America""" +2023-03-19,89083,3322,"[\""Keyboard\""]",4552.12,"{\"": \""12%\""}",97580,0,"""North America""" +2024-02-26,89084,2940,"[\""Tablet\"", \""Laptop\""]",3415.95,"{\""loyalty\"": \""17%\""}",195106,1,"""Europe""" +2023-08-05,89085,288,"[\""Monitor\"", \""Wireless Mouse\""]",706.64,{},253333,1,"""Europe""" +2023-03-16,89086,5406,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1317.14,"{\""loyalty\"": \""16%\""}",109740,0,"""South America""" +2023-03-30,89087,1835,"[\""Monitor\""]",898.67,{},127915,0,"""South America""" +2023-09-14,89088,7607,"[\""Laptop\""]",740.67,"{\""seasonal\"": \""17%\""}",249329,1,"""Africa""" +2023-04-30,89089,3392,"[\""Monitor\"", \""Phone\""]",1429.03,{},21465,0,"""Europe""" +2023-05-03,89090,8934,"[\""Phone\"", \""Laptop\""]",1945.19,"{\"": \""10%\""}",200117,0,"""Europe""" +2024-05-28,89091,9375,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2039.14,{},124241,1,"""South America""" +2024-07-30,89092,812,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3934.17,{},71874,1,"""North America""" +2024-07-16,89093,3710,"[\""Laptop\"", \""Keyboard\""]",2514.32,"{\""seasonal\"": \""12%\""}",10508,0,"""Africa""" +2024-04-12,89094,2463,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1701.43,"{\""promo\"": \""9%\""}",281474,0,"""Europe""" +2023-04-15,89095,4173,"[\""Monitor\"", \""Tablet\""]",2062.09,{},3326,0,"""Europe""" +2024-12-10,89096,8522,"[\""Keyboard\"", \""Monitor\""]",3255.73,"{\""promo\"": \""30%\""}",255100,0,"""South America""" +2024-10-13,89097,2551,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",182.38,"{\""loyalty\"": \""27%\""}",136539,0,"""North America""" +2024-08-14,89098,4226,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1316.25,"{\""seasonal\"": \""11%\""}",29285,0,"""Africa""" +2024-09-15,89099,2027,"[\""Monitor\""]",2701.05,"{\""seasonal\"": \""8%\""}",265577,1,"""Europe""" +2023-09-05,89100,9854,"[\""Phone\"", \""Keyboard\""]",2703.33,{},74567,0,"""Europe""" +2024-10-08,89101,2645,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2994.37,{},49018,0,"""North America""" +2023-02-27,89102,5964,"[\""Charger\"", \""Laptop\""]",3565.01,"{\""seasonal\"": \""10%\""}",61684,0,"""Asia""" +2023-03-10,89103,8816,"[\""Wireless Mouse\"", \""Headphones\""]",3216.26,{},130525,0,"""Asia""" +2023-10-26,89104,202,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",839.38,"{\""seasonal\"": \""8%\""}",95451,1,"""Europe""" +2024-10-11,89105,4908,"[\""Headphones\"", \""Laptop\""]",2243.39,"{\""promo\"": \""17%\""}",238867,1,"""North America""" +2023-06-04,89106,780,"[\""Monitor\""]",1700.45,{},115730,1,"""Asia""" +2023-08-23,89107,3473,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3639.41,"{\"": \""16%\""}",19130,0,"""Asia""" +2023-04-29,89108,5301,"[\""Monitor\"", \""Phone\""]",4129.76,{},230176,0,"""Asia""" +2023-10-13,89109,3219,"[\""Headphones\""]",3323.6,"{\""promo\"": \""11%\""}",266156,0,"""Asia""" +2023-05-07,89110,6026,"[\""Phone\"", \""Monitor\""]",3175.88,"{\""seasonal\"": \""6%\""}",194892,1,"""South America""" +2024-07-04,89111,8632,"[\""Phone\"", \""Wireless Mouse\""]",4613.04,{},66001,1,"""Europe""" +2024-04-29,89112,7368,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2368.75,"{\""loyalty\"": \""27%\""}",176210,1,"""Asia""" +2023-04-26,89113,8139,"[\""Monitor\""]",3838.76,{},39909,0,"""North America""" +2024-04-20,89114,8677,"[\""Monitor\""]",980.67,{},24854,1,"""North America""" +2024-09-18,89115,5104,"[\""Wireless Mouse\"", \""Phone\""]",774.86,"{\""promo\"": \""5%\""}",14541,1,"""Asia""" +2023-02-15,89116,9053,"[\""Charger\"", \""Tablet\""]",2701.81,"{\"": \""20%\""}",291819,1,"""Africa""" +2024-11-22,89117,3761,"[\""Headphones\"", \""Phone\""]",53.81,{},64453,1,"""Europe""" +2024-10-07,89118,6809,"[\""Monitor\"", \""Headphones\""]",3914.49,{},35923,1,"""Africa""" +2024-07-01,89119,8616,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",672.02,{},121860,0,"""North America""" +2024-02-14,89120,1723,"[\""Monitor\"", \""Wireless Mouse\""]",1843.93,{},203501,1,"""Asia""" +2023-03-27,89121,3597,"[\""Monitor\""]",504.22,"{\""promo\"": \""8%\""}",262897,1,"""Africa""" +2023-12-17,89122,5628,"[\""Headphones\"", \""Charger\""]",2390.32,"{\""promo\"": \""18%\""}",145741,0,"""Asia""" +2024-04-07,89123,2073,"[\""Laptop\"", \""Headphones\""]",1746.43,"{\""promo\"": \""27%\""}",206264,0,"""Europe""" +2024-02-26,89124,2223,"[\""Laptop\""]",3770.74,"{\"": \""24%\""}",214152,1,"""South America""" +2023-08-04,89125,3036,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1765.08,"{\"": \""29%\""}",34230,1,"""Africa""" +2023-09-05,89126,513,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",882.01,"{\"": \""7%\""}",95152,0,"""Africa""" +2024-10-04,89127,5563,"[\""Wireless Mouse\"", \""Phone\""]",3744.77,"{\"": \""26%\""}",207827,0,"""North America""" +2023-03-21,89128,7934,"[\""Charger\""]",2390.56,{},72457,0,"""South America""" +2024-05-23,89129,7387,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3936.09,"{\""promo\"": \""7%\""}",122733,0,"""Europe""" +2023-11-18,89130,706,"[\""Monitor\"", \""Phone\""]",840.14,"{\""loyalty\"": \""24%\""}",52401,0,"""Asia""" +2024-03-14,89131,2422,"[\""Headphones\"", \""Keyboard\""]",4109.23,"{\""promo\"": \""19%\""}",43586,1,"""Africa""" +2023-08-03,89132,1874,"[\""Laptop\""]",2136.07,"{\"": \""23%\""}",88942,1,"""Africa""" +2024-07-03,89133,4587,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1761.97,"{\""promo\"": \""15%\""}",37839,1,"""Europe""" +2024-01-22,89134,6227,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4080.23,"{\""seasonal\"": \""30%\""}",131470,1,"""Asia""" +2024-12-23,89135,1075,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3807.81,{},146914,0,"""North America""" +2023-06-13,89136,9807,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",571.26,{},172058,0,"""Europe""" +2023-09-22,89137,8240,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3767.27,{},33591,1,"""Africa""" +2024-02-14,89138,8831,"[\""Monitor\""]",2931.88,"{\""seasonal\"": \""12%\""}",115132,1,"""North America""" +2024-07-12,89139,1728,"[\""Keyboard\""]",2754.56,"{\""seasonal\"": \""28%\""}",30975,0,"""South America""" +2024-05-02,89140,1633,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1208.87,{},31986,1,"""Africa""" +2024-03-21,89141,8537,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1029.68,{},234030,0,"""South America""" +2024-01-08,89142,9000,"[\""Keyboard\""]",1226.86,{},274160,0,"""Asia""" +2024-02-04,89143,7161,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4652.72,"{\""seasonal\"": \""26%\""}",49779,1,"""North America""" +2023-11-27,89144,6037,"[\""Laptop\"", \""Tablet\""]",2497.32,{},100672,0,"""Europe""" +2023-05-11,89145,7300,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4244.71,{},35812,0,"""South America""" +2023-07-19,89146,3422,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4809.83,"{\""promo\"": \""11%\""}",10319,0,"""South America""" +2023-09-27,89147,3700,"[\""Wireless Mouse\""]",1900.73,{},270495,0,"""Europe""" +2023-10-02,89148,1666,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3732.91,{},29807,1,"""Africa""" +2023-04-21,89149,9792,"[\""Phone\"", \""Keyboard\""]",1624.25,"{\""loyalty\"": \""29%\""}",268418,0,"""North America""" +2024-06-06,89150,6472,"[\""Phone\""]",3205.05,{},35751,0,"""Asia""" +2023-04-11,89151,4067,"[\""Phone\""]",4451.94,"{\""seasonal\"": \""9%\""}",237643,0,"""South America""" +2023-03-18,89152,2923,"[\""Wireless Mouse\""]",3836.14,"{\"": \""27%\""}",122388,1,"""Asia""" +2024-10-20,89153,5858,"[\""Monitor\"", \""Charger\""]",133.73,"{\"": \""19%\""}",56440,0,"""North America""" +2023-04-07,89154,8629,"[\""Wireless Mouse\"", \""Charger\""]",2296.17,"{\"": \""9%\""}",138342,1,"""Africa""" +2023-01-26,89155,7776,"[\""Monitor\"", \""Tablet\""]",4627.14,{},144840,0,"""Asia""" +2023-03-31,89156,1096,"[\""Keyboard\"", \""Wireless Mouse\""]",1087.14,{},80542,0,"""Africa""" +2024-12-19,89157,8986,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1576.79,"{\""loyalty\"": \""17%\""}",272451,1,"""Europe""" +2024-09-15,89158,1318,"[\""Charger\"", \""Monitor\""]",4883.93,{},168613,1,"""Europe""" +2024-02-07,89159,3635,"[\""Charger\"", \""Monitor\""]",4148.39,"{\"": \""6%\""}",128466,0,"""Europe""" +2023-11-29,89160,2560,"[\""Phone\"", \""Charger\""]",2539.63,{},178661,0,"""Europe""" +2024-11-14,89161,3593,"[\""Keyboard\""]",2922.29,"{\"": \""6%\""}",159395,0,"""Africa""" +2024-03-04,89162,9402,"[\""Laptop\""]",2271.36,"{\""seasonal\"": \""7%\""}",59823,0,"""South America""" +2024-10-17,89163,3417,"[\""Phone\""]",3542.38,{},56088,1,"""Africa""" +2024-12-21,89164,7642,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2054.02,{},221053,0,"""Asia""" +2023-12-02,89165,5676,"[\""Phone\""]",219.1,"{\""loyalty\"": \""16%\""}",165834,1,"""South America""" +2024-11-01,89166,9707,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",857.31,{},250223,0,"""Africa""" +2023-01-06,89167,2829,"[\""Tablet\"", \""Phone\""]",2665.42,{},64900,0,"""Africa""" +2023-11-11,89168,9506,"[\""Keyboard\"", \""Tablet\""]",2883.63,"{\""seasonal\"": \""23%\""}",196349,1,"""South America""" +2024-06-03,89169,6363,"[\""Headphones\""]",4641.41,{},270995,0,"""Asia""" +2024-03-25,89170,6739,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",2390.81,"{\""promo\"": \""24%\""}",160841,1,"""Asia""" +2023-05-05,89171,520,"[\""Keyboard\"", \""Phone\""]",1862.01,"{\""loyalty\"": \""26%\""}",183723,0,"""Africa""" +2023-04-29,89172,4470,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4098.67,{},14011,1,"""South America""" +2023-08-14,89173,6857,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3183.52,{},28484,0,"""Asia""" +2023-01-23,89174,9502,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1105.82,"{\""loyalty\"": \""20%\""}",228418,0,"""South America""" +2024-01-09,89175,6484,"[\""Keyboard\""]",1721.71,{},163282,1,"""Asia""" +2024-11-23,89176,9011,"[\""Tablet\""]",2987.66,{},164416,1,"""Europe""" +2024-02-06,89177,4353,"[\""Headphones\"", \""Phone\"", \""Charger\""]",578.88,{},180242,1,"""Asia""" +2023-10-11,89178,6957,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1487.99,"{\""loyalty\"": \""25%\""}",147638,0,"""North America""" +2024-02-28,89179,2291,"[\""Tablet\"", \""Monitor\""]",3831.21,{},84351,1,"""North America""" +2024-07-27,89180,4256,"[\""Monitor\""]",1201.78,"{\""loyalty\"": \""14%\""}",18201,0,"""North America""" +2024-02-19,89181,7492,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3648.33,"{\""loyalty\"": \""10%\""}",118600,1,"""Africa""" +2023-02-17,89182,4868,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2517.84,"{\""promo\"": \""28%\""}",82609,0,"""South America""" +2024-11-20,89183,4052,"[\""Tablet\""]",3676.29,"{\""loyalty\"": \""20%\""}",85892,1,"""Asia""" +2024-07-10,89184,5346,"[\""Phone\""]",4691.93,"{\""loyalty\"": \""10%\""}",35220,0,"""South America""" +2023-07-17,89185,8499,"[\""Headphones\""]",1112.03,"{\""loyalty\"": \""27%\""}",131400,1,"""North America""" +2023-08-14,89186,8183,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4291.41,{},205965,0,"""Asia""" +2023-08-24,89187,2669,"[\""Keyboard\"", \""Wireless Mouse\""]",4622.19,"{\""promo\"": \""8%\""}",36783,0,"""North America""" +2023-05-19,89188,3980,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",72.07,"{\"": \""29%\""}",161408,1,"""Africa""" +2023-12-14,89189,4580,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3537.33,"{\""seasonal\"": \""7%\""}",98236,0,"""Africa""" +2024-01-26,89190,8966,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4824.0,"{\""loyalty\"": \""14%\""}",267145,0,"""Asia""" +2023-07-26,89191,4788,"[\""Monitor\""]",3628.43,"{\"": \""5%\""}",204300,0,"""Europe""" +2023-09-14,89192,1989,"[\""Wireless Mouse\"", \""Headphones\""]",712.1,"{\"": \""5%\""}",149170,0,"""Africa""" +2023-08-27,89193,7460,"[\""Monitor\""]",4016.49,{},48938,0,"""Asia""" +2024-05-15,89194,4704,"[\""Laptop\""]",2181.46,{},230809,0,"""North America""" +2024-08-08,89195,4791,"[\""Phone\"", \""Keyboard\""]",1048.16,"{\"": \""19%\""}",15879,0,"""Asia""" +2023-01-04,89196,614,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4171.23,"{\""promo\"": \""20%\""}",111282,0,"""Europe""" +2023-06-27,89197,5679,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2079.47,"{\""loyalty\"": \""21%\""}",16616,1,"""North America""" +2023-11-10,89198,5618,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2923.69,{},135150,0,"""North America""" +2024-06-20,89199,3407,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3321.04,{},265583,1,"""South America""" +2023-11-02,89200,4038,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1907.88,"{\""loyalty\"": \""7%\""}",116314,0,"""Africa""" +2023-01-08,89201,6854,"[\""Phone\""]",822.54,"{\"": \""5%\""}",79947,0,"""Asia""" +2023-08-23,89202,28,"[\""Monitor\"", \""Tablet\""]",3158.21,{},214253,1,"""North America""" +2023-11-16,89203,6953,"[\""Wireless Mouse\"", \""Laptop\""]",4303.5,"{\""loyalty\"": \""24%\""}",80143,0,"""Europe""" +2024-04-04,89204,2422,"[\""Keyboard\"", \""Phone\""]",782.22,{},241092,0,"""Africa""" +2023-01-02,89205,8228,"[\""Laptop\""]",2032.27,"{\""loyalty\"": \""28%\""}",244502,0,"""Asia""" +2024-07-24,89206,2094,"[\""Keyboard\""]",2328.86,{},166511,1,"""North America""" +2024-08-07,89207,3837,"[\""Phone\"", \""Headphones\""]",2665.6,"{\""seasonal\"": \""9%\""}",170555,0,"""Africa""" +2023-05-10,89208,4520,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",281.87,{},186350,1,"""Asia""" +2024-06-24,89209,6847,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",437.1,"{\"": \""16%\""}",154393,1,"""Europe""" +2023-08-16,89210,2720,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2687.45,{},290748,0,"""Asia""" +2023-07-17,89211,1550,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1424.65,{},18008,0,"""Africa""" +2023-04-08,89212,5277,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",484.01,"{\""seasonal\"": \""8%\""}",264052,1,"""Africa""" +2024-02-08,89213,9655,"[\""Tablet\"", \""Wireless Mouse\""]",1264.65,{},289165,0,"""North America""" +2023-03-19,89214,1660,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3593.29,"{\""promo\"": \""14%\""}",148877,0,"""North America""" +2023-08-28,89215,562,"[\""Phone\"", \""Headphones\""]",4503.71,{},80457,0,"""Asia""" +2023-05-30,89216,516,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3391.49,"{\""loyalty\"": \""13%\""}",77373,0,"""South America""" +2024-12-22,89217,9724,"[\""Phone\""]",1343.51,"{\""promo\"": \""21%\""}",161144,1,"""Europe""" +2024-02-19,89218,8344,"[\""Wireless Mouse\"", \""Headphones\""]",2875.32,{},248719,0,"""North America""" +2024-09-13,89219,9807,"[\""Laptop\""]",195.94,"{\"": \""7%\""}",215765,1,"""Asia""" +2023-10-07,89220,7048,"[\""Monitor\"", \""Laptop\""]",3179.06,"{\""seasonal\"": \""27%\""}",139509,1,"""South America""" +2023-11-02,89221,5318,"[\""Monitor\"", \""Laptop\""]",2670.55,{},159791,1,"""North America""" +2023-07-01,89222,3357,"[\""Keyboard\"", \""Monitor\""]",3431.37,"{\""seasonal\"": \""19%\""}",256623,0,"""Europe""" +2023-04-17,89223,5629,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1267.88,"{\""promo\"": \""20%\""}",17497,0,"""South America""" +2023-11-03,89224,1748,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1681.98,{},292386,0,"""North America""" +2023-09-18,89225,692,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",4849.34,"{\""promo\"": \""9%\""}",203098,1,"""Europe""" +2023-03-24,89226,8750,"[\""Keyboard\""]",1017.48,"{\"": \""22%\""}",228314,0,"""Europe""" +2024-07-15,89227,9685,"[\""Wireless Mouse\""]",640.8,{},282005,0,"""Asia""" +2023-11-08,89228,1206,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1762.59,{},143217,0,"""South America""" +2023-03-15,89229,790,"[\""Keyboard\"", \""Tablet\""]",1752.93,{},79336,0,"""Africa""" +2023-01-20,89230,244,"[\""Monitor\"", \""Wireless Mouse\""]",2621.88,"{\""loyalty\"": \""7%\""}",6922,0,"""Asia""" +2023-10-31,89231,323,"[\""Keyboard\""]",1346.25,{},211689,0,"""South America""" +2024-12-19,89232,5195,"[\""Keyboard\"", \""Tablet\""]",4497.82,{},198681,0,"""Asia""" +2023-07-04,89233,2213,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1175.59,{},148401,0,"""Asia""" +2024-12-18,89234,590,"[\""Laptop\""]",1239.91,{},62825,1,"""Asia""" +2024-03-18,89235,580,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2734.22,{},123844,1,"""Africa""" +2024-10-17,89236,5075,"[\""Headphones\"", \""Tablet\""]",3089.82,{},12029,1,"""Europe""" +2024-10-07,89237,7097,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1886.46,"{\"": \""29%\""}",221810,0,"""South America""" +2024-08-21,89238,4840,"[\""Laptop\"", \""Phone\"", \""Charger\""]",965.45,{},162186,0,"""Africa""" +2024-03-10,89239,1858,"[\""Laptop\""]",2412.52,"{\""seasonal\"": \""8%\""}",156721,1,"""North America""" +2023-02-27,89240,6668,"[\""Tablet\""]",4618.61,{},156898,1,"""Europe""" +2023-07-22,89241,4391,"[\""Laptop\"", \""Phone\""]",3995.43,"{\""promo\"": \""26%\""}",95892,0,"""South America""" +2024-02-22,89242,1480,"[\""Keyboard\"", \""Charger\""]",2421.09,"{\""seasonal\"": \""10%\""}",94684,0,"""Africa""" +2024-02-18,89243,7409,"[\""Tablet\"", \""Charger\""]",4157.22,{},27555,0,"""Africa""" +2023-07-18,89244,7825,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3363.23,"{\""loyalty\"": \""25%\""}",244139,1,"""South America""" +2024-01-10,89245,2492,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1542.55,"{\""seasonal\"": \""28%\""}",201839,1,"""Africa""" +2024-07-12,89246,6780,"[\""Monitor\"", \""Tablet\""]",4754.86,{},253887,1,"""Africa""" +2023-09-30,89247,3191,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",2622.49,{},158507,0,"""Europe""" +2023-05-28,89248,3749,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",1083.82,{},250790,1,"""North America""" +2024-07-05,89249,2985,"[\""Charger\""]",900.55,"{\""loyalty\"": \""18%\""}",28714,1,"""Africa""" +2024-01-30,89250,5874,"[\""Keyboard\"", \""Headphones\""]",631.65,"{\""promo\"": \""23%\""}",263268,1,"""Asia""" +2023-09-04,89251,1235,"[\""Tablet\"", \""Keyboard\""]",799.22,{},207749,1,"""Europe""" +2023-05-17,89252,6443,"[\""Phone\""]",3653.96,{},258065,0,"""Asia""" +2023-07-11,89253,6347,"[\""Keyboard\""]",3558.34,"{\"": \""21%\""}",15468,0,"""Europe""" +2023-08-11,89254,4306,"[\""Tablet\"", \""Charger\""]",1110.63,{},294056,1,"""Europe""" +2024-05-02,89255,3891,"[\""Laptop\"", \""Headphones\""]",4835.41,{},125425,0,"""Asia""" +2024-11-09,89256,662,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1724.69,{},24798,0,"""Asia""" +2023-05-26,89257,4984,"[\""Wireless Mouse\"", \""Keyboard\""]",4572.31,{},19691,1,"""Europe""" +2024-12-19,89258,303,"[\""Charger\"", \""Monitor\""]",1649.38,{},132189,0,"""Africa""" +2023-12-13,89259,9946,"[\""Monitor\""]",3094.78,{},110564,0,"""Africa""" +2023-03-17,89260,383,"[\""Keyboard\""]",788.72,{},13881,1,"""Asia""" +2023-06-25,89261,246,"[\""Monitor\"", \""Keyboard\""]",4745.2,{},70401,0,"""North America""" +2024-05-26,89262,9079,"[\""Phone\"", \""Monitor\""]",4702.45,{},232925,1,"""North America""" +2023-02-08,89263,2178,"[\""Charger\"", \""Phone\""]",722.53,{},248201,1,"""Asia""" +2024-02-27,89264,7459,"[\""Laptop\"", \""Wireless Mouse\""]",2144.32,{},119224,0,"""South America""" +2024-09-29,89265,2691,"[\""Monitor\"", \""Phone\"", \""Charger\""]",597.59,"{\""seasonal\"": \""25%\""}",167125,1,"""Africa""" +2024-02-05,89266,2421,"[\""Monitor\""]",350.39,"{\""seasonal\"": \""5%\""}",93087,0,"""Asia""" +2023-09-19,89267,8156,"[\""Monitor\"", \""Headphones\""]",2387.99,"{\""loyalty\"": \""16%\""}",289804,1,"""South America""" +2023-07-10,89268,9123,"[\""Monitor\""]",2619.42,"{\"": \""19%\""}",68266,1,"""South America""" +2024-11-25,89269,4136,"[\""Phone\"", \""Charger\""]",3485.89,{},248778,0,"""Africa""" +2023-12-03,89270,1368,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1091.84,{},6424,0,"""North America""" +2024-03-11,89271,6605,"[\""Headphones\"", \""Charger\""]",4987.08,{},102090,1,"""North America""" +2024-06-09,89272,8444,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",2900.59,{},96249,0,"""North America""" +2024-04-03,89273,8093,"[\""Monitor\"", \""Laptop\""]",4237.09,"{\""promo\"": \""29%\""}",86819,1,"""North America""" +2024-09-09,89274,2105,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",586.56,{},120765,0,"""Europe""" +2024-09-11,89275,3173,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2770.84,{},189085,0,"""Asia""" +2023-01-03,89276,9955,"[\""Tablet\""]",2137.67,{},181854,1,"""Asia""" +2023-01-06,89277,7123,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",159.86,"{\""seasonal\"": \""30%\""}",299307,0,"""South America""" +2023-11-24,89278,3173,"[\""Headphones\""]",4585.36,"{\""seasonal\"": \""15%\""}",71694,1,"""Asia""" +2023-05-27,89279,8994,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4628.27,{},207823,1,"""North America""" +2024-03-07,89280,9009,"[\""Headphones\""]",4050.2,{},280288,1,"""North America""" +2023-12-24,89281,8604,"[\""Laptop\""]",851.27,{},119293,1,"""Europe""" +2024-02-02,89282,1371,"[\""Wireless Mouse\"", \""Monitor\""]",4320.2,{},293728,1,"""South America""" +2024-04-02,89283,1974,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3238.89,"{\"": \""8%\""}",248620,1,"""Africa""" +2024-04-30,89284,9169,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",548.18,{},82523,1,"""Africa""" +2023-08-12,89285,7533,"[\""Headphones\"", \""Laptop\""]",1364.89,"{\""seasonal\"": \""11%\""}",171830,1,"""Europe""" +2023-06-16,89286,6500,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2486.07,"{\"": \""9%\""}",134253,0,"""Asia""" +2024-06-29,89287,7920,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4326.42,{},196974,0,"""Africa""" +2024-05-21,89288,2678,"[\""Wireless Mouse\"", \""Monitor\""]",948.75,"{\""seasonal\"": \""24%\""}",3871,0,"""Africa""" +2024-11-28,89289,7504,"[\""Phone\""]",4960.34,"{\""loyalty\"": \""29%\""}",111659,1,"""Europe""" +2024-01-28,89290,8168,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4805.74,{},201436,1,"""Europe""" +2023-05-10,89291,4571,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2381.53,"{\"": \""10%\""}",225583,0,"""South America""" +2024-03-11,89292,1791,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1016.09,{},297182,1,"""North America""" +2024-08-29,89293,4785,"[\""Monitor\""]",4416.97,"{\""promo\"": \""22%\""}",150503,1,"""Europe""" +2023-03-10,89294,1895,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2310.65,{},94994,1,"""Asia""" +2024-03-05,89295,8829,"[\""Monitor\""]",1780.43,"{\""promo\"": \""28%\""}",157204,1,"""Europe""" +2023-09-26,89296,1420,"[\""Phone\""]",1663.83,"{\""seasonal\"": \""13%\""}",201056,0,"""North America""" +2023-07-03,89297,9343,"[\""Charger\"", \""Wireless Mouse\""]",3061.94,"{\""promo\"": \""18%\""}",116764,1,"""South America""" +2023-03-26,89298,8740,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1082.17,{},49772,1,"""Asia""" +2024-09-29,89299,5391,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4779.64,"{\""loyalty\"": \""29%\""}",136096,1,"""South America""" +2024-03-30,89300,9874,"[\""Monitor\"", \""Keyboard\""]",441.78,{},195730,0,"""Europe""" +2024-05-20,89301,4822,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3138.16,{},16553,1,"""Europe""" +2024-05-15,89302,7919,"[\""Headphones\""]",606.84,{},80815,0,"""North America""" +2023-06-16,89303,7832,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3242.05,"{\""seasonal\"": \""13%\""}",197097,0,"""North America""" +2024-07-29,89304,5882,"[\""Phone\""]",3645.42,"{\"": \""16%\""}",136612,0,"""North America""" +2024-10-11,89305,7170,"[\""Headphones\""]",4398.93,"{\""loyalty\"": \""24%\""}",274104,1,"""Europe""" +2023-05-04,89306,9311,"[\""Keyboard\""]",932.95,"{\""promo\"": \""30%\""}",217107,1,"""North America""" +2024-11-30,89307,7523,"[\""Tablet\""]",2795.7,"{\"": \""28%\""}",218526,1,"""Asia""" +2023-05-12,89308,1972,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2557.42,"{\""seasonal\"": \""21%\""}",244908,0,"""Asia""" +2023-02-16,89309,3143,"[\""Headphones\"", \""Monitor\""]",2315.87,"{\""promo\"": \""16%\""}",155670,0,"""North America""" +2024-08-15,89310,1112,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1295.21,"{\""seasonal\"": \""16%\""}",47880,1,"""South America""" +2024-12-20,89311,8143,"[\""Tablet\""]",3708.99,{},145959,0,"""Europe""" +2023-02-11,89312,1591,"[\""Laptop\"", \""Keyboard\""]",4766.8,{},66102,1,"""Europe""" +2024-08-15,89313,7880,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4468.85,"{\""seasonal\"": \""11%\""}",33393,1,"""Europe""" +2024-11-16,89314,3833,"[\""Laptop\"", \""Phone\"", \""Charger\""]",1324.57,{},259085,0,"""South America""" +2023-08-07,89315,9958,"[\""Tablet\"", \""Laptop\""]",2702.54,{},210384,0,"""Europe""" +2023-03-14,89316,6597,"[\""Laptop\""]",1200.02,{},4114,1,"""Asia""" +2024-08-05,89317,4708,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3743.95,"{\""loyalty\"": \""16%\""}",217789,1,"""Asia""" +2024-02-12,89318,2003,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2221.58,"{\"": \""20%\""}",175307,1,"""South America""" +2024-06-24,89319,372,"[\""Charger\""]",2469.75,"{\"": \""25%\""}",115402,0,"""South America""" +2024-03-14,89320,932,"[\""Phone\""]",1990.82,{},51869,1,"""Africa""" +2023-03-12,89321,8975,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3256.37,{},61185,1,"""Europe""" +2024-11-11,89322,1644,"[\""Headphones\"", \""Keyboard\""]",3527.54,"{\""promo\"": \""10%\""}",48042,1,"""Europe""" +2024-04-10,89323,2150,"[\""Monitor\""]",127.61,"{\"": \""14%\""}",53178,1,"""Africa""" +2024-06-06,89324,5845,"[\""Wireless Mouse\""]",1264.56,"{\""seasonal\"": \""16%\""}",274165,1,"""North America""" +2024-06-17,89325,8239,"[\""Headphones\""]",4181.17,{},223859,0,"""North America""" +2024-11-22,89326,2087,"[\""Phone\"", \""Wireless Mouse\""]",3120.34,"{\""seasonal\"": \""28%\""}",167538,0,"""North America""" +2024-09-04,89327,2191,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1008.54,"{\""promo\"": \""25%\""}",163517,1,"""Europe""" +2024-12-20,89328,7361,"[\""Tablet\""]",4187.25,{},296863,0,"""Asia""" +2023-02-26,89329,36,"[\""Laptop\"", \""Charger\""]",3178.32,"{\""seasonal\"": \""27%\""}",68141,1,"""Africa""" +2023-01-17,89330,4465,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1815.39,"{\""loyalty\"": \""10%\""}",199163,1,"""North America""" +2024-01-17,89331,6791,"[\""Headphones\"", \""Monitor\""]",3486.03,{},28532,0,"""Asia""" +2023-05-07,89332,3360,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4602.22,{},273300,0,"""North America""" +2024-04-09,89333,9478,"[\""Phone\"", \""Keyboard\""]",1142.61,{},261885,0,"""Africa""" +2024-08-19,89334,5428,"[\""Charger\""]",3322.53,"{\""seasonal\"": \""29%\""}",243127,0,"""North America""" +2024-02-06,89335,1573,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2302.71,{},80886,0,"""North America""" +2023-09-04,89336,5929,"[\""Keyboard\"", \""Phone\""]",3466.72,{},74191,0,"""Africa""" +2023-04-29,89337,8834,"[\""Tablet\""]",3106.96,{},13541,1,"""South America""" +2024-02-28,89338,1642,"[\""Monitor\"", \""Wireless Mouse\""]",1584.35,{},195916,0,"""Africa""" +2024-10-12,89339,4140,"[\""Laptop\""]",1763.09,"{\""promo\"": \""14%\""}",248137,1,"""Europe""" +2024-10-16,89340,8410,"[\""Keyboard\"", \""Phone\""]",194.79,{},28240,0,"""North America""" +2023-04-15,89341,6335,"[\""Laptop\""]",1209.51,{},54575,0,"""Europe""" +2024-05-28,89342,8909,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2270.46,{},294846,1,"""South America""" +2024-06-17,89343,2293,"[\""Phone\""]",3165.74,{},110007,1,"""Asia""" +2023-02-02,89344,4616,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4779.46,{},172700,1,"""Africa""" +2024-06-26,89345,2088,"[\""Monitor\"", \""Laptop\""]",3269.49,"{\""seasonal\"": \""26%\""}",86592,0,"""North America""" +2023-04-29,89346,9686,"[\""Laptop\""]",377.35,"{\"": \""30%\""}",100696,0,"""Africa""" +2024-06-21,89347,8792,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1859.02,"{\"": \""20%\""}",113181,0,"""Asia""" +2023-10-13,89348,3074,"[\""Charger\""]",633.74,"{\"": \""18%\""}",265763,1,"""Asia""" +2023-09-04,89349,6784,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3797.79,{},286417,1,"""South America""" +2023-02-08,89350,2474,"[\""Wireless Mouse\""]",3744.17,{},73084,1,"""Europe""" +2024-01-11,89351,6916,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",642.74,"{\"": \""27%\""}",104077,0,"""Asia""" +2024-01-05,89352,5487,"[\""Monitor\"", \""Phone\""]",1335.08,"{\""loyalty\"": \""12%\""}",38331,1,"""North America""" +2023-07-28,89353,3431,"[\""Wireless Mouse\""]",681.56,"{\""loyalty\"": \""11%\""}",46642,1,"""North America""" +2024-11-25,89354,449,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",58.61,{},107284,0,"""North America""" +2024-11-20,89355,4295,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4795.79,"{\""seasonal\"": \""14%\""}",283674,1,"""Europe""" +2024-05-07,89356,2008,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2926.65,{},111490,1,"""North America""" +2024-01-07,89357,2319,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3371.38,"{\""loyalty\"": \""20%\""}",157539,0,"""North America""" +2024-08-10,89358,353,"[\""Laptop\"", \""Tablet\""]",3033.39,{},228697,0,"""North America""" +2023-09-30,89359,3669,"[\""Keyboard\""]",186.61,{},212423,0,"""South America""" +2024-12-19,89360,6986,"[\""Tablet\""]",2207.77,{},110206,0,"""Africa""" +2023-06-27,89361,6222,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4689.0,"{\""loyalty\"": \""16%\""}",267811,1,"""North America""" +2023-10-23,89362,3494,"[\""Monitor\"", \""Laptop\""]",3681.01,"{\"": \""19%\""}",104238,1,"""South America""" +2024-06-26,89363,6887,"[\""Monitor\""]",97.95,"{\"": \""13%\""}",199299,1,"""Asia""" +2024-05-15,89364,8118,"[\""Tablet\"", \""Charger\""]",4039.58,"{\"": \""18%\""}",67795,0,"""Asia""" +2023-09-06,89365,2267,"[\""Monitor\"", \""Wireless Mouse\""]",984.39,{},288196,0,"""North America""" +2024-08-11,89366,1621,"[\""Laptop\"", \""Keyboard\""]",2369.19,{},143792,1,"""Africa""" +2024-08-01,89367,3703,"[\""Charger\"", \""Wireless Mouse\""]",2674.24,{},54050,0,"""South America""" +2024-11-07,89368,8374,"[\""Monitor\"", \""Headphones\""]",418.13,"{\""loyalty\"": \""10%\""}",30972,0,"""North America""" +2023-10-12,89369,249,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2230.9,"{\""loyalty\"": \""18%\""}",188547,0,"""Africa""" +2023-07-29,89370,7966,"[\""Laptop\"", \""Wireless Mouse\""]",4177.04,"{\"": \""15%\""}",96803,0,"""Europe""" +2024-05-29,89371,8949,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",79.52,"{\""seasonal\"": \""14%\""}",232121,1,"""North America""" +2023-10-23,89372,8540,"[\""Headphones\"", \""Wireless Mouse\""]",4325.34,"{\"": \""30%\""}",71189,0,"""North America""" +2024-01-30,89373,2347,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1194.28,{},235710,1,"""Asia""" +2023-09-30,89374,6946,"[\""Tablet\""]",2724.85,{},130452,1,"""Asia""" +2023-07-28,89375,9057,"[\""Phone\""]",841.35,"{\""promo\"": \""18%\""}",4185,1,"""Africa""" +2023-08-13,89376,5945,"[\""Keyboard\"", \""Monitor\""]",2775.91,{},37500,0,"""Asia""" +2024-12-12,89377,3890,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4520.41,{},143771,0,"""Africa""" +2024-06-22,89378,8158,"[\""Laptop\"", \""Headphones\""]",160.78,"{\""loyalty\"": \""15%\""}",75368,0,"""North America""" +2024-05-18,89379,6943,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2919.28,{},33161,0,"""North America""" +2024-07-02,89380,8151,"[\""Wireless Mouse\"", \""Laptop\""]",4384.98,"{\""loyalty\"": \""29%\""}",251405,0,"""Europe""" +2023-01-02,89381,1599,"[\""Wireless Mouse\""]",1529.81,{},19158,1,"""Asia""" +2023-09-22,89382,4528,"[\""Headphones\"", \""Keyboard\""]",4803.64,{},17381,1,"""Africa""" +2024-11-27,89383,6347,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2506.1,{},115933,0,"""North America""" +2023-04-09,89384,8149,"[\""Laptop\"", \""Tablet\""]",698.85,"{\"": \""6%\""}",177246,1,"""Asia""" +2023-06-10,89385,8534,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4895.23,"{\""loyalty\"": \""9%\""}",294080,0,"""North America""" +2023-11-24,89386,6789,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4511.72,"{\""seasonal\"": \""24%\""}",223820,0,"""North America""" +2023-07-30,89387,1126,"[\""Tablet\""]",2061.85,"{\""seasonal\"": \""25%\""}",285461,0,"""South America""" +2024-06-30,89388,3090,"[\""Keyboard\""]",3958.02,{},208623,0,"""Europe""" +2023-05-11,89389,1682,"[\""Wireless Mouse\"", \""Monitor\""]",1444.8,"{\""seasonal\"": \""26%\""}",143475,1,"""Europe""" +2023-11-01,89390,1584,"[\""Tablet\"", \""Keyboard\""]",3299.44,"{\""loyalty\"": \""10%\""}",51789,1,"""North America""" +2023-07-26,89391,2008,"[\""Phone\"", \""Laptop\""]",1282.96,{},184732,0,"""Europe""" +2024-06-08,89392,2040,"[\""Laptop\"", \""Wireless Mouse\""]",3989.6,{},228547,1,"""Europe""" +2023-06-12,89393,2627,"[\""Keyboard\""]",2296.41,{},166138,1,"""Europe""" +2023-11-19,89394,9276,"[\""Headphones\""]",1328.53,"{\"": \""26%\""}",28017,0,"""North America""" +2024-08-02,89395,8683,"[\""Headphones\"", \""Phone\""]",3442.24,"{\""seasonal\"": \""8%\""}",71241,0,"""Africa""" +2023-01-13,89396,1539,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2962.28,"{\""loyalty\"": \""6%\""}",205124,1,"""Africa""" +2023-01-04,89397,369,"[\""Tablet\""]",798.36,{},278717,0,"""South America""" +2024-06-22,89398,8288,"[\""Phone\""]",649.35,"{\"": \""27%\""}",222010,1,"""North America""" +2023-05-29,89399,4159,"[\""Keyboard\"", \""Charger\""]",2984.49,{},25240,0,"""Africa""" +2023-08-19,89400,2575,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4285.33,"{\"": \""15%\""}",224103,1,"""Europe""" +2023-02-20,89401,4938,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2074.32,{},76192,0,"""North America""" +2024-10-08,89402,3323,"[\""Wireless Mouse\""]",289.57,{},98540,1,"""North America""" +2024-04-11,89403,5806,"[\""Phone\"", \""Wireless Mouse\""]",4211.73,"{\""promo\"": \""15%\""}",130984,0,"""South America""" +2024-12-08,89404,1740,"[\""Charger\""]",4611.28,{},251222,1,"""Europe""" +2023-03-08,89405,5699,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2276.8,{},24089,0,"""Asia""" +2023-08-19,89406,1668,"[\""Headphones\""]",794.45,"{\""seasonal\"": \""24%\""}",273712,1,"""Asia""" +2024-04-05,89407,217,"[\""Wireless Mouse\"", \""Laptop\""]",592.52,{},153952,0,"""Europe""" +2024-12-04,89408,6418,"[\""Monitor\"", \""Headphones\""]",3681.47,{},89324,0,"""Europe""" +2024-03-29,89409,4374,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1325.14,{},117103,1,"""Asia""" +2024-09-20,89410,779,"[\""Laptop\"", \""Charger\""]",1123.42,"{\""seasonal\"": \""19%\""}",265030,1,"""Asia""" +2023-09-10,89411,9779,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2967.59,{},98954,0,"""South America""" +2024-12-23,89412,1161,"[\""Monitor\""]",1473.62,"{\""loyalty\"": \""6%\""}",91573,1,"""Africa""" +2023-06-11,89413,7140,"[\""Phone\"", \""Tablet\""]",2566.5,{},261506,1,"""Africa""" +2023-06-30,89414,8224,"[\""Tablet\"", \""Keyboard\""]",2375.47,{},277776,0,"""Europe""" +2024-05-15,89415,8789,"[\""Phone\""]",675.48,"{\""seasonal\"": \""24%\""}",74967,0,"""North America""" +2024-04-27,89416,9035,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4466.41,"{\""loyalty\"": \""23%\""}",129789,0,"""North America""" +2024-09-28,89417,2052,"[\""Laptop\"", \""Tablet\""]",2456.03,{},241826,0,"""Europe""" +2023-07-04,89418,5406,"[\""Headphones\""]",4715.97,"{\""seasonal\"": \""29%\""}",112769,1,"""Europe""" +2023-05-02,89419,2323,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3059.59,{},88516,1,"""South America""" +2023-11-30,89420,7930,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1359.91,{},276895,1,"""South America""" +2023-02-28,89421,8243,"[\""Headphones\""]",1888.91,{},188586,1,"""North America""" +2024-12-23,89422,1279,"[\""Charger\"", \""Monitor\""]",3766.69,"{\"": \""25%\""}",259624,1,"""Africa""" +2023-06-10,89423,9834,"[\""Wireless Mouse\""]",4154.68,{},46453,1,"""Asia""" +2023-08-05,89424,1963,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",502.99,"{\""promo\"": \""17%\""}",33544,1,"""North America""" +2023-05-30,89425,9642,"[\""Headphones\"", \""Phone\""]",1729.11,"{\""loyalty\"": \""11%\""}",177578,1,"""Europe""" +2024-05-30,89426,9904,"[\""Keyboard\""]",4381.92,"{\""seasonal\"": \""19%\""}",149833,1,"""South America""" +2024-03-23,89427,5299,"[\""Wireless Mouse\""]",2547.36,"{\"": \""17%\""}",181607,0,"""Africa""" +2024-11-18,89428,3692,"[\""Tablet\""]",4609.92,{},281084,0,"""Europe""" +2023-09-04,89429,8945,"[\""Tablet\""]",2464.32,"{\"": \""15%\""}",242140,1,"""South America""" +2023-12-05,89430,5787,"[\""Charger\""]",2817.62,"{\""seasonal\"": \""26%\""}",200462,1,"""North America""" +2023-05-31,89431,2323,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4041.71,"{\"": \""30%\""}",98124,1,"""Europe""" +2024-05-11,89432,273,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2243.64,{},125287,1,"""Africa""" +2024-07-08,89433,1434,"[\""Phone\""]",1171.19,{},259282,1,"""North America""" +2024-07-21,89434,9239,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4774.33,"{\"": \""10%\""}",78254,0,"""Europe""" +2024-06-17,89435,6677,"[\""Monitor\""]",2822.27,"{\""loyalty\"": \""26%\""}",259952,0,"""South America""" +2024-11-18,89436,6711,"[\""Monitor\"", \""Laptop\""]",4473.59,"{\""seasonal\"": \""11%\""}",205875,1,"""North America""" +2023-02-15,89437,6062,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",309.94,"{\""promo\"": \""10%\""}",169380,0,"""Europe""" +2023-05-15,89438,8620,"[\""Monitor\"", \""Charger\""]",450.98,{},42813,1,"""South America""" +2024-10-31,89439,804,"[\""Keyboard\""]",2675.39,{},67800,1,"""Europe""" +2023-02-02,89440,5289,"[\""Wireless Mouse\""]",2658.37,{},87820,0,"""Europe""" +2023-12-31,89441,1464,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1818.65,{},180989,1,"""Europe""" +2023-03-02,89442,1999,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",105.49,"{\"": \""17%\""}",63276,1,"""Africa""" +2024-03-19,89443,9793,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3549.13,{},30446,1,"""South America""" +2023-09-02,89444,2804,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2949.65,"{\""loyalty\"": \""19%\""}",251581,0,"""Africa""" +2023-07-02,89445,2539,"[\""Charger\""]",2775.94,{},140358,0,"""North America""" +2023-03-04,89446,156,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2541.78,{},13209,1,"""Asia""" +2023-05-04,89447,2804,"[\""Tablet\""]",307.82,"{\""loyalty\"": \""30%\""}",55879,0,"""North America""" +2024-11-09,89448,8437,"[\""Laptop\""]",1716.75,{},223475,1,"""Europe""" +2023-12-14,89449,3860,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4086.21,{},83000,0,"""Africa""" +2024-08-12,89450,8976,"[\""Tablet\"", \""Laptop\""]",877.74,{},42811,0,"""South America""" +2023-01-15,89451,4199,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1823.22,"{\""promo\"": \""19%\""}",207373,1,"""Africa""" +2024-08-21,89452,6284,"[\""Headphones\""]",2028.48,"{\""seasonal\"": \""20%\""}",41795,0,"""Europe""" +2024-09-21,89453,8124,"[\""Charger\""]",441.67,{},63805,1,"""Europe""" +2024-06-30,89454,3124,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1790.89,"{\"": \""12%\""}",248588,1,"""Africa""" +2023-06-17,89455,3258,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2736.54,{},146079,0,"""North America""" +2024-04-10,89456,1830,"[\""Phone\"", \""Headphones\""]",3694.74,"{\""seasonal\"": \""24%\""}",93778,1,"""Asia""" +2023-12-08,89457,5806,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4537.63,"{\"": \""24%\""}",197175,1,"""Asia""" +2023-09-19,89458,8176,"[\""Headphones\"", \""Laptop\""]",2288.57,"{\""loyalty\"": \""5%\""}",2202,1,"""Europe""" +2023-12-12,89459,1235,"[\""Tablet\"", \""Keyboard\""]",200.11,{},272839,1,"""Europe""" +2023-01-06,89460,5873,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",474.62,{},14906,0,"""Asia""" +2024-09-20,89461,7752,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4329.91,"{\"": \""12%\""}",63845,0,"""Asia""" +2023-10-16,89462,3637,"[\""Keyboard\"", \""Phone\""]",629.29,{},173341,1,"""South America""" +2024-06-09,89463,9095,"[\""Headphones\"", \""Keyboard\""]",2604.33,{},288806,0,"""South America""" +2023-05-20,89464,26,"[\""Monitor\""]",2824.58,"{\""promo\"": \""14%\""}",209745,0,"""North America""" +2024-10-31,89465,3274,"[\""Keyboard\"", \""Charger\""]",411.37,{},16449,0,"""South America""" +2023-10-06,89466,9609,"[\""Charger\"", \""Wireless Mouse\""]",4409.16,{},88254,0,"""Africa""" +2024-10-18,89467,837,"[\""Keyboard\""]",3289.37,{},66993,1,"""Asia""" +2024-01-27,89468,5883,"[\""Tablet\"", \""Monitor\""]",3857.63,"{\""seasonal\"": \""9%\""}",167029,1,"""Europe""" +2023-11-05,89469,7670,"[\""Headphones\""]",1118.54,"{\""loyalty\"": \""11%\""}",36238,0,"""South America""" +2024-07-10,89470,2113,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1203.9,{},93875,1,"""Europe""" +2024-04-15,89471,6823,"[\""Tablet\""]",727.44,{},265157,0,"""Asia""" +2024-07-06,89472,3016,"[\""Headphones\"", \""Keyboard\""]",2251.4,"{\""loyalty\"": \""5%\""}",272998,1,"""Asia""" +2023-03-22,89473,9425,"[\""Phone\""]",363.82,{},31690,1,"""South America""" +2023-03-06,89474,1989,"[\""Laptop\""]",762.22,{},203017,1,"""South America""" +2023-02-21,89475,946,"[\""Phone\""]",1829.74,"{\"": \""12%\""}",222438,0,"""North America""" +2023-01-14,89476,9692,"[\""Wireless Mouse\""]",2124.17,{},244106,0,"""Africa""" +2024-02-13,89477,2800,"[\""Headphones\"", \""Tablet\""]",1661.86,"{\""promo\"": \""20%\""}",173330,1,"""Asia""" +2023-05-15,89478,2001,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4807.65,{},132377,1,"""Africa""" +2024-10-21,89479,2593,"[\""Keyboard\""]",2820.76,{},238619,1,"""Europe""" +2024-03-23,89480,263,"[\""Headphones\"", \""Tablet\""]",61.72,"{\"": \""30%\""}",78025,0,"""Asia""" +2023-12-03,89481,7762,"[\""Charger\""]",3035.22,{},91748,1,"""South America""" +2024-12-06,89482,4519,"[\""Laptop\""]",4602.61,"{\""loyalty\"": \""18%\""}",52413,0,"""South America""" +2024-09-07,89483,9750,"[\""Wireless Mouse\"", \""Headphones\""]",2776.16,"{\""loyalty\"": \""5%\""}",32791,1,"""Africa""" +2024-05-19,89484,6765,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4006.42,{},226966,1,"""North America""" +2023-02-15,89485,4133,"[\""Phone\"", \""Charger\""]",1918.43,"{\""seasonal\"": \""11%\""}",42898,0,"""Africa""" +2024-03-27,89486,7464,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1812.76,{},87249,0,"""Asia""" +2024-01-16,89487,5677,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1091.58,"{\""promo\"": \""16%\""}",33981,0,"""Asia""" +2023-11-26,89488,5789,"[\""Laptop\"", \""Monitor\""]",3563.14,{},194288,0,"""South America""" +2024-12-12,89489,1950,"[\""Wireless Mouse\"", \""Phone\""]",163.64,"{\""loyalty\"": \""13%\""}",7654,0,"""South America""" +2024-01-28,89490,89,"[\""Tablet\"", \""Phone\""]",1448.37,{},238020,1,"""North America""" +2024-04-20,89491,1308,"[\""Laptop\"", \""Keyboard\""]",273.98,{},9866,1,"""Africa""" +2023-10-14,89492,5787,"[\""Laptop\"", \""Headphones\""]",4011.27,"{\""loyalty\"": \""17%\""}",17892,0,"""Europe""" +2024-12-27,89493,7447,"[\""Phone\"", \""Headphones\""]",2599.58,"{\"": \""23%\""}",225002,0,"""Africa""" +2023-01-31,89494,2785,"[\""Wireless Mouse\""]",127.2,"{\"": \""5%\""}",201571,1,"""South America""" +2023-09-07,89495,5869,"[\""Keyboard\""]",555.46,"{\""loyalty\"": \""8%\""}",189499,0,"""North America""" +2024-11-05,89496,4548,"[\""Headphones\""]",2554.17,{},247073,0,"""South America""" +2023-08-20,89497,8579,"[\""Tablet\"", \""Phone\""]",688.15,{},106317,0,"""North America""" +2023-03-25,89498,431,"[\""Headphones\"", \""Laptop\""]",3801.87,"{\""promo\"": \""11%\""}",255872,1,"""Europe""" +2023-12-19,89499,1835,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4545.84,"{\""promo\"": \""8%\""}",164293,1,"""Europe""" +2023-02-14,89500,2965,"[\""Keyboard\"", \""Charger\""]",4435.32,{},65103,1,"""South America""" +2023-10-14,89501,5010,"[\""Monitor\"", \""Laptop\""]",4688.38,"{\""loyalty\"": \""27%\""}",108300,0,"""Europe""" +2024-09-13,89502,4564,"[\""Charger\""]",1747.6,{},32990,0,"""South America""" +2024-03-27,89503,5239,"[\""Keyboard\"", \""Laptop\""]",1488.5,"{\""seasonal\"": \""10%\""}",226723,0,"""Europe""" +2024-02-20,89504,9710,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1856.1,"{\""seasonal\"": \""14%\""}",167742,0,"""Europe""" +2024-11-08,89505,527,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",256.87,"{\""seasonal\"": \""27%\""}",201905,0,"""South America""" +2023-07-09,89506,5528,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3376.28,"{\""seasonal\"": \""26%\""}",244418,0,"""South America""" +2024-05-02,89507,408,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2220.51,{},86945,1,"""Europe""" +2023-05-17,89508,7909,"[\""Laptop\"", \""Wireless Mouse\""]",1312.92,"{\""promo\"": \""5%\""}",279388,0,"""Asia""" +2024-06-17,89509,7622,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2231.95,"{\"": \""17%\""}",144907,1,"""South America""" +2024-11-08,89510,5993,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2347.95,{},206447,0,"""North America""" +2024-01-05,89511,2313,"[\""Laptop\"", \""Wireless Mouse\""]",1773.38,{},113718,0,"""North America""" +2024-01-11,89512,9874,"[\""Phone\"", \""Headphones\""]",3877.28,"{\""promo\"": \""17%\""}",219021,0,"""Asia""" +2023-03-15,89513,4730,"[\""Keyboard\""]",3936.23,"{\""promo\"": \""17%\""}",105396,1,"""North America""" +2024-08-31,89514,7403,"[\""Wireless Mouse\""]",3516.21,"{\"": \""16%\""}",181554,0,"""North America""" +2024-11-24,89515,2394,"[\""Headphones\"", \""Laptop\""]",2035.48,"{\""loyalty\"": \""18%\""}",83255,0,"""North America""" +2023-07-26,89516,1043,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4622.08,"{\"": \""14%\""}",70367,1,"""North America""" +2023-02-19,89517,7420,"[\""Monitor\"", \""Tablet\""]",560.64,{},91652,1,"""North America""" +2023-01-19,89518,6866,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",923.46,"{\""seasonal\"": \""23%\""}",179120,0,"""South America""" +2024-11-05,89519,4327,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3617.77,"{\""seasonal\"": \""10%\""}",64125,0,"""Europe""" +2024-03-05,89520,8766,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",1959.87,{},181296,1,"""Africa""" +2024-08-18,89521,4922,"[\""Wireless Mouse\"", \""Charger\""]",152.79,"{\""promo\"": \""28%\""}",59897,0,"""North America""" +2023-09-09,89522,6833,"[\""Headphones\"", \""Laptop\""]",4702.34,"{\""seasonal\"": \""7%\""}",8783,1,"""North America""" +2023-01-10,89523,5763,"[\""Charger\""]",4665.03,"{\""seasonal\"": \""15%\""}",127095,1,"""Africa""" +2023-09-15,89524,631,"[\""Keyboard\"", \""Laptop\""]",683.16,{},178122,0,"""South America""" +2024-02-15,89525,1638,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2016.84,"{\""seasonal\"": \""25%\""}",34818,1,"""Africa""" +2024-01-09,89526,3537,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",258.28,{},208466,0,"""South America""" +2023-05-21,89527,4879,"[\""Wireless Mouse\""]",2221.74,{},99838,1,"""Asia""" +2023-11-18,89528,2791,"[\""Charger\"", \""Monitor\""]",2146.51,{},119945,1,"""South America""" +2023-10-02,89529,7404,"[\""Wireless Mouse\""]",4413.2,{},9146,0,"""Africa""" +2023-06-02,89530,1688,"[\""Charger\"", \""Keyboard\""]",4804.74,{},227548,0,"""Europe""" +2024-11-30,89531,8580,"[\""Tablet\"", \""Laptop\""]",4867.05,{},28633,0,"""Asia""" +2023-01-02,89532,1117,"[\""Phone\"", \""Wireless Mouse\""]",4634.18,"{\""loyalty\"": \""19%\""}",244555,1,"""Africa""" +2024-03-07,89533,880,"[\""Monitor\"", \""Laptop\""]",977.99,"{\""loyalty\"": \""18%\""}",238171,1,"""Europe""" +2024-06-02,89534,9413,"[\""Tablet\"", \""Keyboard\""]",1350.14,{},5583,0,"""Africa""" +2023-10-01,89535,2523,"[\""Charger\"", \""Tablet\""]",1785.35,{},71043,1,"""Europe""" +2024-03-16,89536,1127,"[\""Wireless Mouse\""]",3500.01,{},125359,1,"""Asia""" +2024-08-17,89537,1161,"[\""Laptop\""]",538.27,"{\""promo\"": \""10%\""}",134704,1,"""Europe""" +2024-12-04,89538,2868,"[\""Headphones\"", \""Wireless Mouse\""]",870.35,"{\""loyalty\"": \""19%\""}",108467,0,"""Europe""" +2023-09-15,89539,4381,"[\""Laptop\"", \""Keyboard\""]",1409.77,"{\""seasonal\"": \""7%\""}",200678,1,"""Africa""" +2024-12-19,89540,6742,"[\""Charger\"", \""Monitor\""]",4190.17,"{\""promo\"": \""28%\""}",139312,1,"""Asia""" +2023-09-22,89541,8862,"[\""Laptop\""]",3534.33,{},190105,1,"""North America""" +2023-09-25,89542,6465,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2631.57,{},139059,1,"""Africa""" +2023-08-06,89543,9608,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4598.48,"{\""promo\"": \""20%\""}",298815,1,"""South America""" +2023-03-16,89544,6685,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1095.04,"{\""seasonal\"": \""13%\""}",253895,0,"""Asia""" +2023-12-13,89545,5802,"[\""Charger\"", \""Laptop\""]",4523.67,"{\"": \""17%\""}",32615,0,"""Asia""" +2023-08-26,89546,9738,"[\""Tablet\""]",2772.99,{},239820,0,"""Asia""" +2024-03-06,89547,5548,"[\""Wireless Mouse\""]",1777.98,{},44545,0,"""South America""" +2023-07-11,89548,9059,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",2976.16,"{\""seasonal\"": \""6%\""}",271998,0,"""North America""" +2023-05-10,89549,7828,"[\""Keyboard\"", \""Charger\""]",3056.31,{},150751,0,"""Africa""" +2024-05-09,89550,718,"[\""Monitor\"", \""Charger\""]",3400.72,{},158229,1,"""North America""" +2023-02-27,89551,2070,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2852.11,{},50163,1,"""Europe""" +2024-01-28,89552,7450,"[\""Keyboard\"", \""Wireless Mouse\""]",651.58,"{\"": \""16%\""}",202222,0,"""North America""" +2023-06-12,89553,7261,"[\""Headphones\""]",4814.77,{},298454,1,"""South America""" +2024-12-29,89554,6600,"[\""Keyboard\"", \""Laptop\""]",4143.5,{},248331,1,"""North America""" +2023-01-30,89555,286,"[\""Headphones\""]",2481.64,{},179644,1,"""Africa""" +2023-01-30,89556,6101,"[\""Wireless Mouse\""]",4370.42,{},168149,1,"""Asia""" +2023-10-23,89557,6830,"[\""Laptop\"", \""Keyboard\""]",1705.42,{},1452,0,"""North America""" +2023-07-19,89558,1885,"[\""Tablet\""]",1952.08,"{\"": \""28%\""}",10102,1,"""South America""" +2024-02-02,89559,7734,"[\""Headphones\"", \""Keyboard\""]",3590.99,{},94642,0,"""North America""" +2023-08-10,89560,2819,"[\""Tablet\""]",3965.21,{},63531,1,"""Asia""" +2023-03-27,89561,685,"[\""Monitor\"", \""Keyboard\""]",1777.63,{},116488,0,"""Europe""" +2024-10-06,89562,9542,"[\""Charger\"", \""Tablet\""]",723.86,{},191174,1,"""Europe""" +2024-02-20,89563,3078,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",152.13,{},166362,1,"""South America""" +2023-04-03,89564,4513,"[\""Keyboard\"", \""Wireless Mouse\""]",4339.01,"{\""seasonal\"": \""15%\""}",213578,0,"""Europe""" +2023-10-14,89565,207,"[\""Headphones\""]",3565.54,{},167717,1,"""Europe""" +2024-08-19,89566,8192,"[\""Phone\""]",2316.2,"{\""seasonal\"": \""18%\""}",146324,1,"""Africa""" +2023-08-22,89567,4841,"[\""Keyboard\""]",656.41,{},78576,0,"""Asia""" +2023-03-10,89568,6543,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2866.57,{},20561,0,"""South America""" +2024-06-14,89569,8813,"[\""Monitor\""]",1755.98,"{\""seasonal\"": \""15%\""}",69281,1,"""Africa""" +2023-10-23,89570,8905,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4725.89,"{\""promo\"": \""13%\""}",4786,1,"""Asia""" +2024-02-29,89571,270,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4876.62,"{\"": \""23%\""}",87236,1,"""North America""" +2024-04-10,89572,8975,"[\""Charger\"", \""Phone\""]",4409.14,"{\""loyalty\"": \""8%\""}",136204,0,"""South America""" +2023-11-28,89573,9130,"[\""Keyboard\""]",4848.4,{},96523,0,"""Africa""" +2024-05-11,89574,7515,"[\""Laptop\"", \""Wireless Mouse\""]",4838.68,"{\""seasonal\"": \""7%\""}",65458,0,"""South America""" +2023-12-08,89575,8903,"[\""Charger\"", \""Tablet\""]",4233.66,{},71695,1,"""Europe""" +2023-04-03,89576,8663,"[\""Headphones\"", \""Monitor\""]",1653.19,{},299078,0,"""South America""" +2023-12-19,89577,2001,"[\""Keyboard\"", \""Wireless Mouse\""]",2062.4,{},90090,1,"""North America""" +2024-06-11,89578,591,"[\""Phone\""]",1460.7,"{\""seasonal\"": \""10%\""}",268137,1,"""Asia""" +2024-05-09,89579,6050,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1662.13,"{\"": \""27%\""}",23535,0,"""Europe""" +2024-10-31,89580,286,"[\""Monitor\""]",451.66,"{\""loyalty\"": \""11%\""}",121972,0,"""Asia""" +2023-01-10,89581,7796,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4142.72,{},228208,1,"""North America""" +2023-08-16,89582,5845,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",963.49,"{\""loyalty\"": \""16%\""}",28985,0,"""Europe""" +2024-05-06,89583,8539,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1906.47,{},171500,1,"""Africa""" +2023-06-17,89584,5951,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4526.74,"{\"": \""25%\""}",214350,0,"""South America""" +2024-03-23,89585,8907,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3037.47,"{\""seasonal\"": \""11%\""}",283854,0,"""Africa""" +2023-01-09,89586,4993,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",612.78,{},268414,0,"""Africa""" +2024-01-28,89587,3269,"[\""Tablet\"", \""Wireless Mouse\""]",3608.46,{},40604,0,"""South America""" +2023-03-03,89588,8851,"[\""Tablet\""]",226.34,{},239770,1,"""Europe""" +2023-03-13,89589,4113,"[\""Monitor\"", \""Tablet\""]",3783.62,"{\""seasonal\"": \""10%\""}",98801,0,"""South America""" +2024-12-28,89590,550,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3073.14,{},284688,1,"""Asia""" +2024-01-15,89591,7132,"[\""Phone\"", \""Headphones\""]",4611.91,{},210334,1,"""North America""" +2024-03-15,89592,359,"[\""Tablet\""]",2775.69,"{\""loyalty\"": \""7%\""}",125452,0,"""Africa""" +2024-12-06,89593,1772,"[\""Monitor\"", \""Phone\""]",3717.75,"{\""promo\"": \""5%\""}",67920,0,"""North America""" +2023-04-13,89594,5431,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",234.26,"{\""promo\"": \""30%\""}",247515,1,"""Europe""" +2023-12-01,89595,7925,"[\""Tablet\""]",2220.07,"{\""promo\"": \""13%\""}",254493,1,"""Africa""" +2024-09-01,89596,7660,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3528.29,{},273399,0,"""Europe""" +2024-06-28,89597,6624,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4067.67,"{\"": \""8%\""}",122091,1,"""Africa""" +2024-12-28,89598,1074,"[\""Keyboard\"", \""Monitor\""]",2711.45,"{\"": \""10%\""}",128342,0,"""Europe""" +2023-06-20,89599,5977,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3088.01,{},140330,0,"""North America""" +2024-09-01,89600,9367,"[\""Laptop\"", \""Monitor\""]",1254.45,"{\""promo\"": \""25%\""}",252043,0,"""Asia""" +2024-03-23,89601,9386,"[\""Phone\""]",4964.15,{},229584,1,"""North America""" +2023-04-24,89602,3645,"[\""Wireless Mouse\""]",1260.87,"{\""promo\"": \""24%\""}",210349,1,"""Africa""" +2023-10-07,89603,5187,"[\""Headphones\"", \""Charger\""]",4233.49,"{\""seasonal\"": \""22%\""}",202519,1,"""Asia""" +2024-07-15,89604,2896,"[\""Phone\""]",2295.49,"{\""promo\"": \""24%\""}",274288,0,"""South America""" +2023-01-12,89605,368,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",575.85,{},83352,0,"""Asia""" +2023-01-29,89606,4348,"[\""Keyboard\"", \""Monitor\""]",3927.56,"{\""seasonal\"": \""13%\""}",229213,1,"""South America""" +2023-05-30,89607,5725,"[\""Tablet\""]",4630.7,"{\""loyalty\"": \""18%\""}",122510,0,"""Africa""" +2024-01-09,89608,8707,"[\""Monitor\""]",4970.72,{},63687,1,"""Africa""" +2023-09-13,89609,3715,"[\""Tablet\""]",3999.83,{},257360,0,"""Africa""" +2023-07-01,89610,3447,"[\""Headphones\""]",4699.53,{},240191,1,"""North America""" +2023-10-02,89611,4742,"[\""Monitor\""]",2884.56,"{\""seasonal\"": \""15%\""}",222953,1,"""Africa""" +2023-05-18,89612,2258,"[\""Headphones\"", \""Charger\""]",4114.57,"{\""seasonal\"": \""11%\""}",21126,1,"""Europe""" +2023-04-29,89613,1357,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",429.68,{},71298,1,"""Africa""" +2024-10-16,89614,9154,"[\""Keyboard\"", \""Phone\""]",2440.61,"{\"": \""11%\""}",261822,1,"""Asia""" +2023-04-10,89615,8456,"[\""Keyboard\""]",1968.04,"{\""promo\"": \""10%\""}",150763,1,"""Asia""" +2024-07-06,89616,8880,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",669.17,"{\""seasonal\"": \""27%\""}",143757,1,"""North America""" +2023-10-27,89617,2606,"[\""Headphones\"", \""Keyboard\""]",1295.58,"{\"": \""30%\""}",153173,1,"""North America""" +2024-01-25,89618,9410,"[\""Phone\"", \""Keyboard\""]",3110.77,{},31589,1,"""Europe""" +2024-02-16,89619,8368,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2957.15,{},221242,1,"""Asia""" +2024-03-20,89620,6061,"[\""Phone\"", \""Monitor\""]",4432.45,"{\"": \""5%\""}",152119,1,"""North America""" +2024-02-06,89621,8729,"[\""Keyboard\""]",3788.5,{},140733,0,"""North America""" +2023-08-11,89622,2390,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4755.18,{},296617,1,"""North America""" +2023-12-07,89623,6305,"[\""Wireless Mouse\""]",2123.69,{},97333,1,"""Europe""" +2023-06-19,89624,8726,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4312.66,{},219386,1,"""North America""" +2023-04-05,89625,6382,"[\""Laptop\"", \""Headphones\""]",810.5,{},48370,1,"""South America""" +2024-10-02,89626,7145,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4397.5,{},39387,0,"""Europe""" +2024-02-19,89627,3371,"[\""Monitor\"", \""Charger\""]",2369.48,{},91987,0,"""Africa""" +2023-06-10,89628,4773,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2711.71,"{\""loyalty\"": \""27%\""}",215378,0,"""North America""" +2024-09-15,89629,7940,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1613.77,{},59157,1,"""South America""" +2023-08-05,89630,1554,"[\""Phone\""]",4907.6,"{\""loyalty\"": \""27%\""}",111642,0,"""Europe""" +2024-01-11,89631,760,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4534.54,"{\"": \""10%\""}",257336,1,"""Europe""" +2024-09-09,89632,4392,"[\""Wireless Mouse\"", \""Headphones\""]",2707.37,{},213762,0,"""Europe""" +2023-08-24,89633,2005,"[\""Charger\"", \""Headphones\""]",2926.98,"{\"": \""16%\""}",218463,1,"""North America""" +2023-08-17,89634,3474,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1862.55,{},82265,1,"""Asia""" +2023-08-13,89635,521,"[\""Laptop\""]",3697.94,"{\""loyalty\"": \""23%\""}",69422,0,"""Africa""" +2023-10-17,89636,4241,"[\""Charger\""]",3189.45,"{\"": \""23%\""}",259488,0,"""North America""" +2023-07-06,89637,6914,"[\""Laptop\"", \""Charger\""]",3776.92,{},141788,1,"""Europe""" +2023-12-22,89638,790,"[\""Charger\"", \""Wireless Mouse\""]",1693.01,"{\""loyalty\"": \""18%\""}",19499,1,"""Africa""" +2024-04-01,89639,6752,"[\""Charger\"", \""Tablet\""]",2666.28,"{\""loyalty\"": \""17%\""}",229280,0,"""Africa""" +2024-01-26,89640,1232,"[\""Charger\""]",981.61,{},71251,0,"""Europe""" +2024-10-13,89641,9377,"[\""Wireless Mouse\""]",4811.43,{},115338,0,"""South America""" +2024-06-06,89642,1444,"[\""Laptop\""]",132.8,"{\""seasonal\"": \""22%\""}",186772,1,"""North America""" +2023-03-16,89643,6368,"[\""Headphones\"", \""Laptop\""]",3307.51,"{\""loyalty\"": \""20%\""}",268639,1,"""Africa""" +2024-02-02,89644,6840,"[\""Laptop\""]",2707.32,"{\""promo\"": \""27%\""}",85690,0,"""Europe""" +2024-03-31,89645,5152,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3791.09,{},122924,0,"""Asia""" +2024-03-17,89646,5384,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1394.9,{},60970,1,"""Asia""" +2023-03-18,89647,8285,"[\""Phone\"", \""Keyboard\""]",4677.91,"{\"": \""6%\""}",69949,1,"""Africa""" +2024-11-28,89648,8210,"[\""Monitor\""]",2185.3,"{\""loyalty\"": \""16%\""}",71750,0,"""Africa""" +2023-03-02,89649,2857,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4400.36,"{\""loyalty\"": \""25%\""}",20516,1,"""North America""" +2023-04-23,89650,2722,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1898.88,"{\""loyalty\"": \""16%\""}",91186,0,"""Africa""" +2024-03-10,89651,811,"[\""Laptop\""]",334.91,{},176822,1,"""Africa""" +2023-09-26,89652,8506,"[\""Monitor\"", \""Wireless Mouse\""]",4036.14,"{\""promo\"": \""7%\""}",33606,1,"""Asia""" +2023-10-30,89653,9720,"[\""Headphones\"", \""Laptop\""]",4578.38,"{\""seasonal\"": \""18%\""}",281426,1,"""Asia""" +2023-11-09,89654,2653,"[\""Charger\""]",3952.54,{},237889,1,"""Asia""" +2023-08-17,89655,2296,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1038.42,{},255446,0,"""Africa""" +2023-08-31,89656,4998,"[\""Wireless Mouse\""]",4203.76,{},180800,0,"""South America""" +2023-02-22,89657,151,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",4930.59,{},44265,1,"""South America""" +2023-04-15,89658,9391,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",486.31,{},73692,1,"""Africa""" +2024-05-16,89659,4699,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3100.99,"{\""seasonal\"": \""6%\""}",244219,0,"""South America""" +2024-05-11,89660,6131,"[\""Charger\"", \""Monitor\""]",654.82,"{\""loyalty\"": \""24%\""}",132083,1,"""North America""" +2023-04-15,89661,4156,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4057.04,{},275164,0,"""South America""" +2023-01-12,89662,1315,"[\""Phone\""]",325.44,"{\""promo\"": \""8%\""}",82989,1,"""South America""" +2024-04-08,89663,1398,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4549.47,"{\"": \""17%\""}",124955,0,"""Africa""" +2023-03-23,89664,9687,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3126.12,{},97763,0,"""Africa""" +2024-09-05,89665,2148,"[\""Tablet\""]",264.45,{},70135,1,"""Asia""" +2024-05-06,89666,4871,"[\""Monitor\"", \""Charger\""]",3021.11,"{\""seasonal\"": \""20%\""}",219459,1,"""Asia""" +2023-02-05,89667,255,"[\""Laptop\""]",988.3,"{\""loyalty\"": \""22%\""}",30719,1,"""Asia""" +2024-07-19,89668,8855,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",407.45,"{\""loyalty\"": \""8%\""}",69123,0,"""Asia""" +2024-07-04,89669,4898,"[\""Keyboard\""]",3951.85,{},289509,0,"""South America""" +2024-02-16,89670,1204,"[\""Tablet\""]",656.15,{},77180,0,"""Asia""" +2023-08-07,89671,8199,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1571.44,{},69272,0,"""Africa""" +2023-10-27,89672,7135,"[\""Keyboard\"", \""Laptop\""]",3770.88,"{\""promo\"": \""16%\""}",104343,1,"""North America""" +2024-12-26,89673,5493,"[\""Keyboard\"", \""Laptop\""]",1611.35,{},197342,1,"""Europe""" +2023-10-29,89674,5386,"[\""Monitor\"", \""Keyboard\""]",1292.57,"{\""promo\"": \""14%\""}",157403,1,"""South America""" +2023-05-16,89675,5553,"[\""Wireless Mouse\"", \""Monitor\""]",1247.87,{},232794,1,"""Asia""" +2024-07-17,89676,9700,"[\""Phone\""]",3834.61,{},237456,0,"""Africa""" +2023-02-04,89677,1694,"[\""Laptop\""]",695.95,"{\"": \""30%\""}",3217,1,"""South America""" +2024-06-24,89678,44,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3044.18,"{\""promo\"": \""5%\""}",242414,0,"""South America""" +2023-11-23,89679,3945,"[\""Headphones\"", \""Monitor\""]",98.01,{},243039,1,"""North America""" +2024-08-05,89680,3816,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4943.17,{},91801,1,"""North America""" +2023-09-06,89681,6638,"[\""Tablet\""]",2985.86,{},169298,1,"""South America""" +2024-09-16,89682,2579,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3128.09,"{\""loyalty\"": \""27%\""}",72425,1,"""North America""" +2024-08-06,89683,563,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4920.66,"{\""seasonal\"": \""15%\""}",274814,0,"""Europe""" +2024-03-10,89684,4219,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3770.21,{},210843,1,"""Asia""" +2024-02-07,89685,5911,"[\""Headphones\"", \""Monitor\""]",3013.22,{},209946,1,"""Asia""" +2024-03-28,89686,4423,"[\""Keyboard\""]",3866.24,{},208997,0,"""Asia""" +2023-01-27,89687,7879,"[\""Keyboard\""]",2680.15,{},298657,1,"""South America""" +2023-09-20,89688,4899,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1622.29,{},299228,1,"""Asia""" +2023-12-08,89689,3210,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",759.79,{},158138,1,"""Africa""" +2024-12-24,89690,5894,"[\""Wireless Mouse\"", \""Tablet\""]",4510.21,{},235822,1,"""Asia""" +2023-07-03,89691,1506,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1006.17,"{\"": \""6%\""}",48484,1,"""Asia""" +2024-11-11,89692,1010,"[\""Phone\""]",3151.75,{},87747,0,"""Africa""" +2024-08-07,89693,4319,"[\""Monitor\"", \""Keyboard\""]",1627.01,{},186223,0,"""Africa""" +2023-05-24,89694,6419,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4451.56,"{\""seasonal\"": \""27%\""}",298291,0,"""Europe""" +2023-07-05,89695,259,"[\""Headphones\""]",4852.69,"{\""loyalty\"": \""13%\""}",95550,0,"""Europe""" +2023-08-18,89696,6092,"[\""Tablet\""]",930.17,"{\""seasonal\"": \""29%\""}",224912,0,"""Asia""" +2023-03-25,89697,5206,"[\""Tablet\""]",2909.5,{},40975,0,"""Asia""" +2023-06-18,89698,9586,"[\""Phone\"", \""Wireless Mouse\""]",4281.77,"{\"": \""24%\""}",133780,0,"""Africa""" +2023-10-25,89699,6008,"[\""Keyboard\""]",1622.53,"{\""promo\"": \""29%\""}",146508,0,"""Asia""" +2024-04-30,89700,9039,"[\""Laptop\""]",1472.77,"{\""seasonal\"": \""19%\""}",256221,1,"""Europe""" +2023-04-16,89701,2312,"[\""Charger\"", \""Monitor\""]",2001.87,"{\""loyalty\"": \""7%\""}",18540,0,"""Europe""" +2023-11-11,89702,845,"[\""Tablet\""]",3978.12,{},94443,0,"""South America""" +2023-09-09,89703,7405,"[\""Keyboard\""]",1997.21,"{\"": \""30%\""}",221723,0,"""Europe""" +2023-03-18,89704,2360,"[\""Tablet\""]",2033.88,{},170461,1,"""South America""" +2023-08-21,89705,4573,"[\""Keyboard\"", \""Tablet\""]",1937.1,{},241273,0,"""Asia""" +2024-05-10,89706,2320,"[\""Headphones\"", \""Charger\""]",3826.3,"{\""promo\"": \""5%\""}",264858,0,"""North America""" +2024-12-20,89707,3942,"[\""Monitor\"", \""Laptop\""]",4301.46,{},230856,1,"""Africa""" +2024-12-02,89708,4527,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",539.92,"{\""promo\"": \""14%\""}",217156,1,"""South America""" +2023-07-17,89709,1772,"[\""Headphones\"", \""Phone\""]",4256.02,{},252682,1,"""Asia""" +2023-06-18,89710,6027,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",4314.58,"{\""loyalty\"": \""7%\""}",233212,0,"""South America""" +2024-02-27,89711,9635,"[\""Laptop\"", \""Wireless Mouse\""]",934.04,"{\""promo\"": \""7%\""}",153630,1,"""Africa""" +2024-02-08,89712,681,"[\""Headphones\"", \""Phone\""]",998.41,{},177851,0,"""Asia""" +2023-09-20,89713,7797,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",788.31,{},48839,1,"""Africa""" +2023-09-29,89714,1890,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3518.5,{},225178,0,"""South America""" +2023-12-17,89715,2841,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1158.79,{},94351,1,"""South America""" +2024-11-08,89716,8586,"[\""Headphones\"", \""Monitor\""]",4845.53,{},288434,0,"""North America""" +2024-01-19,89717,3339,"[\""Tablet\""]",3917.93,"{\""seasonal\"": \""7%\""}",79352,0,"""Europe""" +2024-06-01,89718,9366,"[\""Tablet\"", \""Wireless Mouse\""]",2695.76,{},145866,1,"""Africa""" +2023-06-19,89719,4382,"[\""Charger\"", \""Keyboard\""]",3411.18,"{\""loyalty\"": \""30%\""}",261835,0,"""South America""" +2024-10-23,89720,5665,"[\""Keyboard\"", \""Tablet\""]",1949.98,"{\""promo\"": \""28%\""}",256097,0,"""Africa""" +2023-03-04,89721,1649,"[\""Wireless Mouse\""]",631.57,"{\""seasonal\"": \""16%\""}",203741,0,"""Asia""" +2023-05-27,89722,4033,"[\""Phone\""]",2370.5,{},166789,1,"""South America""" +2023-07-05,89723,3434,"[\""Keyboard\""]",4564.95,"{\"": \""14%\""}",112826,0,"""Asia""" +2024-05-02,89724,9311,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3137.38,"{\"": \""7%\""}",123826,1,"""North America""" +2023-06-07,89725,3919,"[\""Wireless Mouse\"", \""Phone\""]",1339.92,{},174525,1,"""Europe""" +2023-05-05,89726,7602,"[\""Laptop\"", \""Headphones\""]",415.77,"{\""loyalty\"": \""27%\""}",58931,0,"""North America""" +2024-03-12,89727,3626,"[\""Phone\"", \""Headphones\""]",2631.07,{},85602,0,"""Europe""" +2024-12-17,89728,1947,"[\""Keyboard\"", \""Headphones\""]",2052.67,{},199399,0,"""South America""" +2023-01-08,89729,3878,"[\""Laptop\""]",3042.11,{},212902,0,"""Europe""" +2024-08-18,89730,2062,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3122.9,"{\""promo\"": \""17%\""}",92914,0,"""South America""" +2024-12-22,89731,6522,"[\""Headphones\"", \""Tablet\""]",868.3,{},264005,0,"""Africa""" +2024-04-27,89732,8192,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1184.62,{},238946,1,"""Africa""" +2023-07-21,89733,5772,"[\""Phone\"", \""Headphones\""]",1351.78,"{\""promo\"": \""7%\""}",174384,1,"""Europe""" +2023-10-22,89734,5201,"[\""Charger\"", \""Tablet\""]",2712.53,{},176754,0,"""Europe""" +2023-10-07,89735,7965,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",4421.21,"{\""loyalty\"": \""17%\""}",9570,1,"""Asia""" +2024-10-09,89736,6726,"[\""Charger\"", \""Monitor\""]",4191.29,{},280555,1,"""Asia""" +2024-08-16,89737,5420,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3560.89,"{\""loyalty\"": \""27%\""}",149131,1,"""South America""" +2024-01-11,89738,3528,"[\""Tablet\""]",4602.56,"{\"": \""12%\""}",19529,1,"""Africa""" +2023-02-05,89739,9257,"[\""Charger\""]",1383.61,"{\""loyalty\"": \""21%\""}",117734,0,"""South America""" +2023-10-14,89740,4456,"[\""Tablet\"", \""Headphones\""]",1360.16,"{\""seasonal\"": \""28%\""}",299882,1,"""Africa""" +2023-05-27,89741,7170,"[\""Tablet\"", \""Charger\""]",2690.31,"{\""loyalty\"": \""13%\""}",257938,1,"""North America""" +2024-09-03,89742,5885,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",521.31,"{\""loyalty\"": \""24%\""}",161215,0,"""Asia""" +2024-07-08,89743,6268,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1874.47,{},91449,0,"""Europe""" +2024-11-21,89744,7438,"[\""Headphones\""]",4731.61,"{\"": \""7%\""}",193710,0,"""Europe""" +2024-07-04,89745,32,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",402.04,{},58770,1,"""North America""" +2023-12-08,89746,189,"[\""Monitor\""]",4551.38,{},156639,0,"""Europe""" +2023-08-26,89747,1726,"[\""Headphones\""]",2939.04,{},24881,0,"""Europe""" +2023-05-05,89748,4045,"[\""Charger\"", \""Headphones\""]",899.27,{},7062,0,"""North America""" +2023-06-24,89749,8407,"[\""Phone\"", \""Tablet\""]",213.73,{},64866,1,"""Asia""" +2024-06-14,89750,2389,"[\""Tablet\""]",58.43,"{\"": \""14%\""}",39802,1,"""Asia""" +2023-08-23,89751,1879,"[\""Tablet\"", \""Charger\""]",1049.99,{},116617,1,"""South America""" +2024-10-10,89752,1599,"[\""Charger\"", \""Laptop\""]",2861.9,{},231329,0,"""North America""" +2024-04-08,89753,5704,"[\""Wireless Mouse\""]",1566.79,{},278124,1,"""North America""" +2023-01-17,89754,1595,"[\""Phone\"", \""Wireless Mouse\""]",2137.45,"{\""promo\"": \""29%\""}",107712,0,"""Asia""" +2023-03-02,89755,826,"[\""Keyboard\""]",138.79,"{\""seasonal\"": \""28%\""}",289698,0,"""Europe""" +2024-06-01,89756,9332,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2286.87,"{\"": \""30%\""}",66957,1,"""Africa""" +2024-10-28,89757,2272,"[\""Laptop\"", \""Wireless Mouse\""]",2235.77,"{\""seasonal\"": \""16%\""}",134473,0,"""Africa""" +2024-08-10,89758,5499,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",4755.37,"{\""seasonal\"": \""15%\""}",127200,0,"""South America""" +2024-03-05,89759,8292,"[\""Phone\""]",3927.24,{},286612,0,"""Europe""" +2023-11-01,89760,1703,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",348.49,"{\""loyalty\"": \""22%\""}",120600,1,"""Africa""" +2024-04-07,89761,9574,"[\""Phone\"", \""Laptop\""]",1954.91,"{\""seasonal\"": \""14%\""}",30670,1,"""North America""" +2024-09-21,89762,6614,"[\""Laptop\"", \""Charger\""]",1522.53,{},14449,1,"""North America""" +2024-03-17,89763,2915,"[\""Charger\""]",517.4,{},227387,1,"""South America""" +2024-12-08,89764,2394,"[\""Wireless Mouse\""]",3175.88,"{\"": \""30%\""}",165369,1,"""Africa""" +2024-02-07,89765,7417,"[\""Laptop\""]",130.53,{},236291,0,"""Asia""" +2023-11-08,89766,3566,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",867.32,"{\""loyalty\"": \""14%\""}",80550,1,"""Europe""" +2024-08-12,89767,6221,"[\""Headphones\"", \""Phone\""]",3902.44,"{\""seasonal\"": \""22%\""}",248131,0,"""North America""" +2023-03-22,89768,3777,"[\""Phone\""]",4647.87,"{\""seasonal\"": \""26%\""}",27430,1,"""Asia""" +2024-07-23,89769,4851,"[\""Laptop\""]",1146.98,{},27575,0,"""Asia""" +2023-09-12,89770,5126,"[\""Keyboard\""]",990.31,{},116758,0,"""Europe""" +2023-12-20,89771,522,"[\""Headphones\"", \""Laptop\""]",2624.19,{},167900,1,"""Europe""" +2024-05-01,89772,5032,"[\""Headphones\""]",4706.02,{},153270,1,"""North America""" +2024-02-14,89773,1280,"[\""Keyboard\""]",919.79,"{\""promo\"": \""10%\""}",273522,1,"""North America""" +2023-08-27,89774,1180,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",66.38,"{\""seasonal\"": \""28%\""}",209280,1,"""Asia""" +2023-03-19,89775,9562,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",396.91,{},92873,1,"""Africa""" +2023-10-29,89776,8409,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",729.15,{},161306,1,"""Asia""" +2024-09-21,89777,3304,"[\""Tablet\"", \""Wireless Mouse\""]",1161.67,{},67755,0,"""Asia""" +2024-07-16,89778,6349,"[\""Phone\"", \""Charger\"", \""Monitor\""]",788.04,"{\""seasonal\"": \""9%\""}",153536,1,"""Africa""" +2024-08-07,89779,6383,"[\""Laptop\""]",4708.69,"{\"": \""17%\""}",215341,1,"""Africa""" +2024-10-27,89780,896,"[\""Headphones\""]",3085.53,"{\"": \""26%\""}",239555,0,"""North America""" +2023-12-26,89781,9105,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1254.24,{},93580,0,"""Asia""" +2023-02-22,89782,77,"[\""Monitor\"", \""Tablet\""]",4691.32,"{\""loyalty\"": \""8%\""}",294682,0,"""South America""" +2023-11-05,89783,5423,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1559.68,{},186508,1,"""Africa""" +2024-11-27,89784,5234,"[\""Monitor\"", \""Charger\""]",66.61,"{\"": \""5%\""}",257823,0,"""Europe""" +2023-04-24,89785,45,"[\""Laptop\""]",3833.37,{},275588,1,"""South America""" +2024-07-29,89786,3056,"[\""Phone\""]",2003.47,{},186391,0,"""South America""" +2023-08-25,89787,7437,"[\""Headphones\"", \""Tablet\""]",2488.91,"{\""loyalty\"": \""7%\""}",276527,0,"""North America""" +2024-04-11,89788,2148,"[\""Wireless Mouse\"", \""Keyboard\""]",3738.27,"{\"": \""16%\""}",183096,0,"""North America""" +2023-07-20,89789,1803,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",995.37,"{\""loyalty\"": \""21%\""}",157798,0,"""South America""" +2023-04-06,89790,8170,"[\""Tablet\""]",3819.27,{},157329,0,"""South America""" +2023-03-01,89791,5177,"[\""Monitor\""]",275.8,"{\""loyalty\"": \""22%\""}",81871,1,"""Africa""" +2024-07-25,89792,4591,"[\""Keyboard\""]",4079.82,"{\""promo\"": \""16%\""}",193887,1,"""North America""" +2024-02-16,89793,5637,"[\""Monitor\"", \""Laptop\""]",283.92,{},251878,1,"""South America""" +2023-12-03,89794,4057,"[\""Monitor\"", \""Tablet\""]",2093.9,{},279789,0,"""North America""" +2023-10-15,89795,5858,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",724.5,{},151464,1,"""Africa""" +2023-06-19,89796,8050,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2534.07,"{\""promo\"": \""8%\""}",141467,0,"""Africa""" +2024-09-21,89797,766,"[\""Phone\"", \""Laptop\""]",2740.39,{},269805,0,"""Africa""" +2024-01-06,89798,871,"[\""Keyboard\""]",3983.26,{},41918,0,"""North America""" +2024-06-17,89799,4770,"[\""Keyboard\""]",944.36,"{\""seasonal\"": \""17%\""}",85498,1,"""Asia""" +2023-12-30,89800,983,"[\""Charger\""]",681.36,"{\""promo\"": \""9%\""}",51135,1,"""Europe""" +2024-03-24,89801,4737,"[\""Wireless Mouse\""]",681.66,"{\""seasonal\"": \""5%\""}",90498,1,"""Asia""" +2024-09-08,89802,4811,"[\""Monitor\""]",1072.9,{},213754,1,"""South America""" +2023-12-31,89803,5969,"[\""Tablet\"", \""Laptop\""]",1813.31,{},290307,1,"""Asia""" +2023-06-06,89804,235,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",746.43,{},112901,0,"""North America""" +2024-07-11,89805,5195,"[\""Tablet\"", \""Keyboard\""]",2853.78,"{\""promo\"": \""19%\""}",242169,0,"""South America""" +2024-02-17,89806,8456,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4475.27,"{\"": \""20%\""}",170540,0,"""Asia""" +2024-05-14,89807,8221,"[\""Monitor\"", \""Tablet\""]",963.54,"{\""seasonal\"": \""29%\""}",263283,0,"""South America""" +2023-02-17,89808,7321,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4850.32,{},20070,0,"""North America""" +2023-12-14,89809,2792,"[\""Tablet\""]",911.43,"{\""promo\"": \""18%\""}",42074,0,"""Europe""" +2023-10-12,89810,9570,"[\""Headphones\""]",212.31,"{\""seasonal\"": \""24%\""}",208557,1,"""South America""" +2023-04-22,89811,7836,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2044.21,"{\"": \""27%\""}",203886,1,"""Asia""" +2024-06-24,89812,44,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2943.18,{},154957,0,"""Europe""" +2024-02-25,89813,5210,"[\""Phone\"", \""Laptop\""]",4092.04,"{\""promo\"": \""22%\""}",93361,0,"""South America""" +2023-09-08,89814,7268,"[\""Charger\"", \""Tablet\""]",3889.39,{},75904,0,"""South America""" +2024-07-31,89815,4287,"[\""Keyboard\"", \""Phone\""]",4487.11,{},180168,1,"""Asia""" +2023-12-06,89816,3899,"[\""Keyboard\"", \""Monitor\""]",2626.91,{},93454,1,"""North America""" +2024-06-03,89817,1149,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",668.51,{},28322,1,"""North America""" +2023-08-10,89818,8716,"[\""Phone\""]",4692.11,"{\""seasonal\"": \""24%\""}",214155,1,"""South America""" +2023-07-17,89819,3889,"[\""Phone\"", \""Charger\""]",637.03,{},299294,0,"""Africa""" +2024-09-21,89820,8100,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",307.45,{},127056,0,"""Africa""" +2023-12-31,89821,329,"[\""Monitor\"", \""Charger\""]",4679.12,{},20955,1,"""South America""" +2024-01-03,89822,5449,"[\""Monitor\"", \""Tablet\""]",518.53,{},129684,0,"""Africa""" +2023-07-06,89823,9098,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1222.36,"{\""loyalty\"": \""22%\""}",13508,1,"""Africa""" +2024-11-13,89824,6835,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",2685.15,{},226810,1,"""South America""" +2024-02-07,89825,8653,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3204.94,"{\""seasonal\"": \""10%\""}",80868,1,"""Africa""" +2023-12-31,89826,3380,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4158.2,{},16698,0,"""Asia""" +2024-12-28,89827,3066,"[\""Headphones\""]",2384.05,"{\"": \""29%\""}",222903,1,"""Europe""" +2024-11-09,89828,5249,"[\""Phone\""]",2472.3,{},201732,1,"""Europe""" +2023-01-25,89829,1145,"[\""Charger\"", \""Wireless Mouse\""]",2994.18,{},31235,0,"""South America""" +2024-07-01,89830,7114,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2072.86,"{\""seasonal\"": \""12%\""}",85792,0,"""Asia""" +2024-03-01,89831,4250,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3701.48,{},23599,0,"""Asia""" +2023-08-20,89832,5143,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",356.97,{},264169,0,"""Africa""" +2024-06-26,89833,4521,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2095.98,{},286026,0,"""Asia""" +2023-01-08,89834,4462,"[\""Headphones\""]",3518.32,{},133845,0,"""Asia""" +2024-09-18,89835,6611,"[\""Wireless Mouse\"", \""Monitor\""]",4434.84,{},281846,0,"""Asia""" +2023-04-12,89836,515,"[\""Phone\""]",2307.73,{},147541,1,"""Africa""" +2024-05-18,89837,481,"[\""Headphones\""]",3261.77,"{\""loyalty\"": \""24%\""}",185891,1,"""South America""" +2024-08-25,89838,8329,"[\""Phone\"", \""Monitor\""]",4132.44,"{\""loyalty\"": \""14%\""}",272771,0,"""Africa""" +2024-09-16,89839,4830,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4780.93,{},244840,1,"""South America""" +2024-01-25,89840,5447,"[\""Charger\"", \""Phone\""]",4656.49,"{\"": \""30%\""}",135434,1,"""North America""" +2024-06-21,89841,6459,"[\""Phone\"", \""Monitor\""]",4423.76,{},7475,1,"""Europe""" +2023-04-14,89842,9989,"[\""Keyboard\"", \""Tablet\""]",3351.04,{},294593,0,"""Europe""" +2024-07-19,89843,5534,"[\""Keyboard\""]",1532.93,"{\""seasonal\"": \""9%\""}",146559,0,"""South America""" +2023-02-23,89844,4386,"[\""Charger\""]",761.59,{},280782,0,"""Asia""" +2024-10-10,89845,2549,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1209.07,{},289179,1,"""Africa""" +2024-08-30,89846,1050,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4211.5,{},271403,0,"""North America""" +2024-10-21,89847,9677,"[\""Wireless Mouse\""]",2844.91,"{\""loyalty\"": \""13%\""}",127566,0,"""Africa""" +2024-12-14,89848,4237,"[\""Headphones\"", \""Charger\""]",4160.58,"{\""seasonal\"": \""14%\""}",183629,1,"""Asia""" +2023-04-06,89849,9405,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3347.91,"{\""seasonal\"": \""14%\""}",171163,1,"""North America""" +2024-05-07,89850,6192,"[\""Monitor\""]",3069.25,"{\""promo\"": \""23%\""}",89930,1,"""North America""" +2023-07-13,89851,1333,"[\""Monitor\"", \""Headphones\""]",1418.0,{},175396,0,"""South America""" +2024-03-30,89852,5116,"[\""Keyboard\"", \""Wireless Mouse\""]",1390.79,"{\""seasonal\"": \""13%\""}",76392,1,"""Asia""" +2023-01-16,89853,8121,"[\""Keyboard\""]",1850.41,{},287057,1,"""Asia""" +2024-05-07,89854,475,"[\""Headphones\""]",3560.11,{},294670,0,"""Europe""" +2024-12-18,89855,1626,"[\""Monitor\"", \""Phone\""]",1144.55,"{\""promo\"": \""7%\""}",274543,1,"""Europe""" +2024-07-25,89856,6015,"[\""Monitor\"", \""Keyboard\""]",2080.23,{},211875,0,"""North America""" +2023-12-09,89857,4388,"[\""Laptop\"", \""Monitor\""]",3130.05,{},200020,1,"""Africa""" +2023-04-23,89858,2098,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",2946.08,"{\""seasonal\"": \""14%\""}",276158,0,"""Europe""" +2024-05-24,89859,2359,"[\""Tablet\""]",912.42,"{\""seasonal\"": \""15%\""}",251639,1,"""North America""" +2023-06-11,89860,8136,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",648.93,"{\""seasonal\"": \""13%\""}",168844,0,"""Europe""" +2023-04-08,89861,5085,"[\""Keyboard\""]",2191.68,{},194538,0,"""North America""" +2024-06-15,89862,6322,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3942.08,{},235707,1,"""Africa""" +2023-02-15,89863,7564,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3105.68,"{\""seasonal\"": \""12%\""}",65454,1,"""South America""" +2024-09-30,89864,5824,"[\""Headphones\""]",3084.03,{},187453,1,"""Europe""" +2024-04-12,89865,2188,"[\""Charger\""]",277.12,{},251893,1,"""Europe""" +2023-09-27,89866,8336,"[\""Laptop\""]",2443.18,"{\""loyalty\"": \""16%\""}",234032,0,"""Africa""" +2024-07-28,89867,8081,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2682.29,"{\"": \""25%\""}",125985,0,"""North America""" +2023-12-24,89868,7727,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1997.19,"{\""seasonal\"": \""7%\""}",249606,0,"""Asia""" +2023-09-03,89869,4043,"[\""Headphones\"", \""Tablet\""]",2230.92,{},214808,0,"""Asia""" +2023-09-24,89870,5074,"[\""Monitor\"", \""Wireless Mouse\""]",1206.26,{},25585,1,"""North America""" +2024-05-23,89871,9847,"[\""Keyboard\""]",749.47,{},150142,1,"""Africa""" +2023-06-18,89872,3180,"[\""Tablet\"", \""Charger\""]",2829.69,"{\"": \""20%\""}",235210,0,"""Asia""" +2023-09-02,89873,6039,"[\""Tablet\"", \""Keyboard\""]",4892.22,{},43144,1,"""South America""" +2023-06-27,89874,3527,"[\""Phone\""]",1650.41,"{\""loyalty\"": \""18%\""}",246266,0,"""North America""" +2023-02-27,89875,5727,"[\""Keyboard\"", \""Charger\""]",1157.95,"{\""seasonal\"": \""29%\""}",145932,0,"""Europe""" +2024-09-24,89876,2527,"[\""Tablet\"", \""Monitor\""]",3772.18,"{\"": \""8%\""}",159476,0,"""Africa""" +2024-11-25,89877,8453,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2129.49,{},141078,1,"""Africa""" +2024-02-19,89878,9669,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3081.46,{},163677,0,"""North America""" +2023-10-04,89879,4055,"[\""Phone\"", \""Charger\""]",3031.28,"{\""seasonal\"": \""16%\""}",166923,1,"""Europe""" +2024-11-16,89880,1222,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3427.13,{},286508,0,"""South America""" +2023-04-12,89881,3673,"[\""Monitor\"", \""Tablet\""]",1652.64,{},251598,1,"""Asia""" +2023-12-02,89882,1292,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",2098.78,"{\""seasonal\"": \""8%\""}",110977,1,"""Europe""" +2024-12-30,89883,5588,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",4928.14,"{\""seasonal\"": \""19%\""}",92930,1,"""South America""" +2023-04-10,89884,9031,"[\""Tablet\""]",3753.31,{},290253,1,"""Africa""" +2023-01-29,89885,4890,"[\""Charger\""]",4197.21,"{\""loyalty\"": \""11%\""}",17677,0,"""Europe""" +2023-03-04,89886,9078,"[\""Headphones\"", \""Laptop\""]",3854.92,{},25254,1,"""South America""" +2023-11-18,89887,4680,"[\""Laptop\""]",4362.19,{},2033,1,"""Asia""" +2023-11-24,89888,9431,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3221.61,{},127021,0,"""South America""" +2023-12-19,89889,2364,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",588.06,"{\"": \""17%\""}",159327,1,"""Africa""" +2023-10-05,89890,2145,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",997.9,{},44270,1,"""North America""" +2024-10-07,89891,3372,"[\""Headphones\""]",1613.84,{},38981,1,"""Asia""" +2023-09-09,89892,2164,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",2386.72,"{\""promo\"": \""25%\""}",285969,1,"""South America""" +2023-10-06,89893,1108,"[\""Phone\"", \""Keyboard\""]",205.71,{},67088,1,"""Africa""" +2024-05-21,89894,7137,"[\""Charger\""]",791.37,"{\"": \""29%\""}",130735,1,"""Europe""" +2024-02-24,89895,785,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",771.05,{},88891,0,"""South America""" +2023-08-13,89896,282,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3573.6,{},228827,1,"""South America""" +2024-12-25,89897,5025,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1760.54,{},71906,1,"""South America""" +2023-04-06,89898,7959,"[\""Keyboard\"", \""Tablet\""]",4707.15,{},182348,0,"""North America""" +2023-06-26,89899,784,"[\""Tablet\"", \""Phone\""]",2360.05,"{\"": \""8%\""}",72707,0,"""Africa""" +2023-01-27,89900,6303,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",970.97,"{\""loyalty\"": \""9%\""}",30067,1,"""Asia""" +2023-07-14,89901,5481,"[\""Phone\"", \""Headphones\""]",1181.58,{},76074,0,"""North America""" +2024-04-01,89902,4916,"[\""Wireless Mouse\""]",2583.7,"{\"": \""17%\""}",109117,1,"""South America""" +2023-06-20,89903,8723,"[\""Headphones\"", \""Keyboard\""]",2613.59,"{\""promo\"": \""20%\""}",241306,0,"""North America""" +2023-11-01,89904,8613,"[\""Headphones\""]",2697.09,{},158591,1,"""Asia""" +2023-07-21,89905,1712,"[\""Monitor\"", \""Keyboard\""]",4257.12,"{\"": \""8%\""}",226784,1,"""North America""" +2024-02-27,89906,6979,"[\""Monitor\""]",2034.98,"{\"": \""29%\""}",277689,1,"""Africa""" +2023-09-08,89907,2007,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2106.8,{},230260,0,"""South America""" +2023-11-10,89908,4402,"[\""Wireless Mouse\"", \""Keyboard\""]",3790.11,"{\""seasonal\"": \""13%\""}",113941,1,"""Europe""" +2023-09-30,89909,2832,"[\""Laptop\""]",184.53,{},261249,1,"""Asia""" +2023-03-22,89910,39,"[\""Monitor\"", \""Headphones\""]",4961.58,"{\""loyalty\"": \""12%\""}",275231,1,"""Asia""" +2023-11-03,89911,828,"[\""Laptop\"", \""Keyboard\""]",1304.79,{},40871,1,"""Africa""" +2023-09-23,89912,4726,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4921.38,"{\"": \""21%\""}",12145,1,"""South America""" +2023-12-05,89913,4172,"[\""Laptop\""]",3063.37,{},145473,0,"""North America""" +2023-05-17,89914,737,"[\""Keyboard\""]",1954.94,"{\""loyalty\"": \""7%\""}",50803,0,"""Africa""" +2023-10-07,89915,5890,"[\""Headphones\"", \""Tablet\""]",3131.97,{},37813,0,"""South America""" +2023-06-20,89916,8770,"[\""Charger\""]",103.76,"{\""loyalty\"": \""16%\""}",112796,0,"""South America""" +2024-06-14,89917,5751,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3486.94,{},9578,1,"""North America""" +2023-03-16,89918,5419,"[\""Tablet\"", \""Monitor\""]",1418.87,{},171229,0,"""Africa""" +2023-08-12,89919,3516,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2430.71,"{\"": \""28%\""}",151374,1,"""Asia""" +2023-10-10,89920,100,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1299.41,{},192327,1,"""South America""" +2024-06-28,89921,6563,"[\""Tablet\"", \""Charger\""]",2862.56,"{\""seasonal\"": \""29%\""}",186417,1,"""North America""" +2023-01-10,89922,1195,"[\""Monitor\"", \""Phone\""]",4163.64,"{\""loyalty\"": \""25%\""}",49260,0,"""Europe""" +2024-07-08,89923,7060,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3979.58,{},240666,0,"""Asia""" +2023-02-24,89924,2877,"[\""Keyboard\"", \""Wireless Mouse\""]",2300.15,"{\""seasonal\"": \""23%\""}",184393,0,"""South America""" +2024-05-19,89925,8882,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3877.85,{},139277,0,"""Asia""" +2024-03-11,89926,1588,"[\""Keyboard\""]",3178.97,"{\""promo\"": \""25%\""}",293185,0,"""Africa""" +2024-03-26,89927,6460,"[\""Wireless Mouse\""]",4681.93,{},248070,1,"""South America""" +2023-07-22,89928,8462,"[\""Headphones\""]",1744.11,{},221672,1,"""South America""" +2024-08-26,89929,3790,"[\""Laptop\""]",1524.32,{},31748,1,"""North America""" +2024-11-03,89930,1289,"[\""Charger\"", \""Wireless Mouse\""]",1221.86,"{\"": \""29%\""}",202094,1,"""Africa""" +2023-02-27,89931,8115,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1339.61,{},194779,0,"""South America""" +2024-03-06,89932,5349,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",4146.52,"{\""promo\"": \""9%\""}",123346,0,"""Europe""" +2024-09-09,89933,2565,"[\""Laptop\""]",4382.44,"{\""seasonal\"": \""11%\""}",293353,1,"""Africa""" +2023-07-28,89934,9151,"[\""Keyboard\""]",605.39,"{\""loyalty\"": \""24%\""}",271173,1,"""Asia""" +2024-10-06,89935,3847,"[\""Tablet\"", \""Phone\""]",3695.57,"{\""seasonal\"": \""7%\""}",26366,1,"""South America""" +2024-04-24,89936,8715,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3822.82,"{\""loyalty\"": \""10%\""}",80219,1,"""Asia""" +2024-04-24,89937,4919,"[\""Keyboard\""]",3454.39,{},299029,0,"""Europe""" +2023-07-12,89938,3230,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",4203.96,"{\""promo\"": \""6%\""}",202583,0,"""Asia""" +2024-12-19,89939,3384,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3506.54,"{\""loyalty\"": \""26%\""}",210037,1,"""Africa""" +2024-06-17,89940,9959,"[\""Wireless Mouse\""]",1276.28,{},173263,0,"""Europe""" +2023-08-21,89941,2929,"[\""Laptop\"", \""Charger\""]",3036.26,"{\""loyalty\"": \""16%\""}",274273,0,"""Asia""" +2023-11-30,89942,449,"[\""Wireless Mouse\"", \""Tablet\""]",484.21,{},17871,0,"""South America""" +2023-09-02,89943,295,"[\""Phone\""]",1003.47,"{\"": \""14%\""}",169628,1,"""Europe""" +2023-06-30,89944,3435,"[\""Charger\"", \""Laptop\""]",1860.73,"{\"": \""29%\""}",46147,1,"""Asia""" +2023-05-05,89945,3492,"[\""Monitor\"", \""Laptop\""]",691.22,{},74312,1,"""Asia""" +2024-03-02,89946,375,"[\""Laptop\"", \""Phone\""]",679.62,"{\""promo\"": \""30%\""}",209913,0,"""Africa""" +2023-01-06,89947,3974,"[\""Tablet\""]",4346.07,"{\"": \""10%\""}",287707,1,"""Africa""" +2024-11-12,89948,6347,"[\""Tablet\""]",4418.53,"{\""loyalty\"": \""9%\""}",35013,1,"""Europe""" +2023-07-13,89949,4508,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4139.92,{},16955,1,"""South America""" +2024-01-21,89950,561,"[\""Headphones\"", \""Laptop\""]",2773.89,{},133729,0,"""Europe""" +2024-11-04,89951,8592,"[\""Headphones\""]",2565.27,{},190102,0,"""South America""" +2024-08-28,89952,8945,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2075.26,"{\""seasonal\"": \""29%\""}",91276,1,"""Europe""" +2024-04-15,89953,5210,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2250.11,"{\""seasonal\"": \""29%\""}",183301,1,"""Europe""" +2024-01-22,89954,5455,"[\""Tablet\""]",3511.28,"{\""promo\"": \""27%\""}",259655,0,"""Europe""" +2024-05-31,89955,4188,"[\""Phone\"", \""Monitor\""]",1492.09,"{\""loyalty\"": \""17%\""}",78170,0,"""Asia""" +2023-06-21,89956,5465,"[\""Phone\""]",4055.53,"{\""promo\"": \""29%\""}",216023,0,"""North America""" +2024-04-21,89957,4312,"[\""Wireless Mouse\""]",3678.79,{},54504,0,"""South America""" +2024-04-24,89958,5210,"[\""Keyboard\"", \""Wireless Mouse\""]",956.04,"{\""promo\"": \""27%\""}",143905,1,"""North America""" +2024-06-19,89959,1019,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2868.02,{},226280,0,"""North America""" +2024-04-06,89960,7025,"[\""Tablet\"", \""Keyboard\""]",2931.16,"{\""seasonal\"": \""14%\""}",183891,0,"""North America""" +2023-10-12,89961,5472,"[\""Monitor\"", \""Phone\""]",902.08,"{\"": \""13%\""}",162721,0,"""Europe""" +2023-03-11,89962,7456,"[\""Monitor\"", \""Wireless Mouse\""]",1202.56,{},238604,1,"""Asia""" +2024-03-02,89963,2018,"[\""Keyboard\""]",1002.01,{},82957,1,"""Asia""" +2023-08-26,89964,1159,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2070.65,{},75522,0,"""Africa""" +2024-02-02,89965,4405,"[\""Monitor\""]",3658.02,{},105682,0,"""North America""" +2023-05-05,89966,4027,"[\""Wireless Mouse\"", \""Charger\""]",3796.24,"{\"": \""7%\""}",196794,0,"""South America""" +2024-05-08,89967,3031,"[\""Charger\""]",2206.88,"{\""seasonal\"": \""30%\""}",206468,0,"""South America""" +2024-02-10,89968,3707,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2162.61,{},284498,1,"""South America""" +2023-08-07,89969,4121,"[\""Headphones\""]",3180.09,{},125005,0,"""Europe""" +2023-10-29,89970,3376,"[\""Phone\"", \""Tablet\""]",4648.45,"{\""seasonal\"": \""14%\""}",266643,0,"""North America""" +2024-01-01,89971,4676,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4455.4,{},10621,1,"""South America""" +2024-07-07,89972,9129,"[\""Keyboard\"", \""Laptop\""]",1659.15,{},133388,1,"""North America""" +2023-05-05,89973,7985,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4854.4,"{\""loyalty\"": \""19%\""}",165836,1,"""Africa""" +2023-08-23,89974,3471,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",546.94,"{\"": \""28%\""}",279198,0,"""Asia""" +2024-12-23,89975,4312,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",288.64,"{\"": \""15%\""}",65975,0,"""Europe""" +2024-11-15,89976,7537,"[\""Laptop\""]",4596.09,{},142267,1,"""South America""" +2024-03-09,89977,9124,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2941.61,"{\""seasonal\"": \""15%\""}",246594,1,"""Europe""" +2024-03-23,89978,6670,"[\""Laptop\""]",2197.63,{},40438,1,"""North America""" +2024-09-15,89979,7660,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",714.91,"{\"": \""18%\""}",22185,0,"""South America""" +2023-10-30,89980,3524,"[\""Phone\""]",2056.17,{},276832,0,"""Asia""" +2023-01-01,89981,8538,"[\""Wireless Mouse\""]",59.88,"{\""promo\"": \""8%\""}",229340,1,"""Africa""" +2023-12-26,89982,5246,"[\""Keyboard\"", \""Tablet\""]",1419.08,{},72830,0,"""Europe""" +2023-05-09,89983,5293,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",569.49,"{\"": \""23%\""}",120659,0,"""North America""" +2024-01-04,89984,8797,"[\""Phone\"", \""Tablet\""]",668.03,{},16907,1,"""North America""" +2023-04-25,89985,1967,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3830.27,"{\""loyalty\"": \""22%\""}",180231,0,"""South America""" +2024-09-04,89986,1601,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",802.71,"{\""loyalty\"": \""16%\""}",114051,1,"""South America""" +2024-06-09,89987,4146,"[\""Phone\"", \""Charger\""]",582.09,"{\""seasonal\"": \""6%\""}",129570,0,"""Asia""" +2023-03-24,89988,512,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1048.74,{},263199,1,"""Europe""" +2023-07-08,89989,3429,"[\""Keyboard\"", \""Headphones\""]",2116.82,"{\""promo\"": \""14%\""}",276943,0,"""Asia""" +2023-12-09,89990,4779,"[\""Tablet\"", \""Monitor\""]",3045.58,"{\""seasonal\"": \""25%\""}",232459,0,"""North America""" +2023-07-17,89991,7852,"[\""Phone\"", \""Monitor\""]",1583.16,"{\""promo\"": \""19%\""}",116207,1,"""Africa""" +2023-03-29,89992,565,"[\""Laptop\"", \""Wireless Mouse\""]",4097.75,"{\""promo\"": \""27%\""}",263189,0,"""North America""" +2024-05-11,89993,6654,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4425.95,{},275376,1,"""North America""" +2023-12-15,89994,8888,"[\""Monitor\""]",3991.12,{},12903,1,"""South America""" +2024-04-24,89995,3199,"[\""Tablet\""]",1036.32,{},60391,0,"""North America""" +2024-04-12,89996,8725,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1408.52,"{\""seasonal\"": \""9%\""}",157255,1,"""North America""" +2023-04-09,89997,1593,"[\""Charger\"", \""Monitor\""]",2045.84,"{\"": \""24%\""}",260861,1,"""Asia""" +2023-08-04,89998,1368,"[\""Wireless Mouse\"", \""Headphones\""]",619.42,{},160521,0,"""South America""" +2024-10-30,89999,1731,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4301.45,{},219995,1,"""Asia""" +2023-03-24,90000,2055,"[\""Charger\"", \""Wireless Mouse\""]",3662.14,"{\"": \""28%\""}",31944,0,"""South America""" +2024-08-17,90001,5379,"[\""Phone\"", \""Laptop\""]",2308.73,{},93661,0,"""Europe""" +2023-04-22,90002,4563,"[\""Keyboard\"", \""Charger\""]",928.93,"{\""loyalty\"": \""17%\""}",1895,1,"""Africa""" +2023-09-22,90003,4314,"[\""Charger\"", \""Phone\""]",2969.07,"{\""seasonal\"": \""10%\""}",176935,0,"""Asia""" +2023-06-28,90004,8066,"[\""Headphones\""]",951.77,{},265526,1,"""Asia""" +2023-11-23,90005,5536,"[\""Charger\""]",3500.88,{},188588,1,"""Asia""" +2023-06-12,90006,5053,"[\""Charger\""]",739.21,{},255630,1,"""Africa""" +2023-05-11,90007,4992,"[\""Keyboard\""]",676.27,"{\"": \""27%\""}",67023,0,"""Asia""" +2023-12-16,90008,8973,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2501.63,"{\""seasonal\"": \""18%\""}",262242,1,"""Europe""" +2024-12-19,90009,5334,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4797.46,{},161039,1,"""Europe""" +2024-01-15,90010,7110,"[\""Wireless Mouse\"", \""Laptop\""]",2043.61,{},70849,1,"""Africa""" +2023-01-17,90011,8322,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1773.5,{},31266,1,"""South America""" +2024-05-17,90012,8194,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2232.5,{},59740,1,"""South America""" +2023-07-27,90013,8758,"[\""Headphones\"", \""Laptop\""]",1904.13,{},181072,1,"""South America""" +2024-04-27,90014,9449,"[\""Headphones\""]",3164.97,"{\""promo\"": \""12%\""}",234692,1,"""North America""" +2023-07-19,90015,3735,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2496.31,"{\""loyalty\"": \""5%\""}",51742,0,"""South America""" +2023-02-27,90016,2702,"[\""Keyboard\"", \""Tablet\""]",3868.13,{},255935,0,"""South America""" +2024-05-07,90017,9674,"[\""Monitor\"", \""Charger\""]",1662.28,"{\""loyalty\"": \""6%\""}",133521,0,"""Asia""" +2024-08-25,90018,6885,"[\""Monitor\""]",4869.41,"{\"": \""15%\""}",157536,0,"""Africa""" +2023-04-24,90019,5896,"[\""Monitor\""]",4958.14,{},297014,0,"""South America""" +2024-07-27,90020,715,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1106.61,"{\"": \""20%\""}",240964,1,"""Europe""" +2023-11-08,90021,5856,"[\""Monitor\""]",2229.26,"{\"": \""25%\""}",18734,0,"""North America""" +2023-01-27,90022,7233,"[\""Headphones\""]",1491.95,{},246333,0,"""Asia""" +2024-03-13,90023,8730,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4986.75,{},201439,0,"""Africa""" +2023-03-21,90024,2879,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1407.14,"{\""loyalty\"": \""20%\""}",269942,1,"""Asia""" +2024-02-26,90025,7121,"[\""Phone\""]",656.46,{},238824,0,"""North America""" +2024-02-27,90026,2056,"[\""Charger\""]",4160.68,{},223759,1,"""Europe""" +2024-07-28,90027,1663,"[\""Headphones\"", \""Wireless Mouse\""]",4658.82,{},172172,0,"""Africa""" +2023-07-22,90028,3418,"[\""Monitor\""]",2826.42,{},186343,1,"""Africa""" +2023-03-12,90029,6326,"[\""Keyboard\""]",1062.91,"{\"": \""21%\""}",273869,1,"""South America""" +2023-05-15,90030,8578,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3571.43,"{\"": \""6%\""}",202507,1,"""Africa""" +2024-12-09,90031,1388,"[\""Wireless Mouse\""]",1596.18,"{\""loyalty\"": \""11%\""}",58742,1,"""South America""" +2023-04-26,90032,1038,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2001.19,"{\""promo\"": \""20%\""}",269780,1,"""South America""" +2023-04-23,90033,5904,"[\""Laptop\""]",550.48,"{\""loyalty\"": \""26%\""}",282520,0,"""Africa""" +2024-11-05,90034,204,"[\""Phone\""]",1956.46,"{\""promo\"": \""25%\""}",52368,1,"""Europe""" +2023-09-16,90035,3161,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1024.23,{},156919,1,"""Asia""" +2023-09-05,90036,912,"[\""Wireless Mouse\""]",1548.62,{},242717,0,"""Africa""" +2023-01-11,90037,9286,"[\""Charger\"", \""Phone\""]",4118.82,{},25665,0,"""Europe""" +2023-11-01,90038,6542,"[\""Tablet\""]",2585.87,"{\""loyalty\"": \""30%\""}",60386,1,"""Asia""" +2023-11-19,90039,5655,"[\""Monitor\""]",2860.26,{},151729,1,"""Europe""" +2023-02-28,90040,1345,"[\""Keyboard\""]",1983.87,{},214300,1,"""South America""" +2023-07-03,90041,4280,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4297.46,{},93193,1,"""North America""" +2024-01-10,90042,7520,"[\""Laptop\""]",3571.66,"{\""loyalty\"": \""30%\""}",59499,0,"""Africa""" +2023-04-05,90043,8480,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3781.52,{},186992,1,"""North America""" +2023-08-21,90044,915,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3376.49,{},231666,1,"""Europe""" +2024-07-16,90045,7041,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1672.86,"{\"": \""9%\""}",111886,1,"""Asia""" +2024-02-24,90046,3919,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",1274.87,{},277453,1,"""Asia""" +2024-12-24,90047,2459,"[\""Charger\""]",681.51,{},44627,1,"""South America""" +2024-10-12,90048,8213,"[\""Laptop\"", \""Keyboard\""]",3432.74,"{\""loyalty\"": \""23%\""}",118271,0,"""Africa""" +2024-06-19,90049,3144,"[\""Phone\"", \""Wireless Mouse\""]",415.13,"{\""promo\"": \""16%\""}",54251,1,"""Europe""" +2024-06-20,90050,9966,"[\""Tablet\"", \""Charger\""]",3550.47,{},153516,0,"""South America""" +2024-02-04,90051,7178,"[\""Monitor\"", \""Wireless Mouse\""]",3054.56,{},212278,1,"""South America""" +2023-05-23,90052,2002,"[\""Monitor\"", \""Headphones\""]",4649.62,{},110443,0,"""North America""" +2024-06-15,90053,3152,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",769.07,{},107267,1,"""Asia""" +2023-12-13,90054,6748,"[\""Headphones\""]",1142.53,{},45436,0,"""North America""" +2023-06-17,90055,3126,"[\""Keyboard\"", \""Charger\""]",3270.15,"{\""seasonal\"": \""5%\""}",193038,0,"""South America""" +2024-05-01,90056,8206,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1894.25,{},133598,1,"""North America""" +2024-11-10,90057,604,"[\""Charger\""]",1045.76,"{\"": \""16%\""}",32102,0,"""South America""" +2024-07-24,90058,8263,"[\""Tablet\""]",2637.13,"{\""seasonal\"": \""12%\""}",53451,1,"""Asia""" +2024-08-27,90059,6406,"[\""Headphones\""]",4066.39,{},166168,0,"""Asia""" +2024-08-18,90060,6901,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3560.77,"{\"": \""5%\""}",58795,1,"""Africa""" +2023-08-28,90061,1924,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",772.05,"{\""loyalty\"": \""19%\""}",283283,0,"""South America""" +2023-06-04,90062,4568,"[\""Charger\"", \""Keyboard\""]",368.77,{},203343,0,"""Africa""" +2023-04-17,90063,7380,"[\""Laptop\"", \""Phone\""]",828.83,"{\""promo\"": \""25%\""}",211753,1,"""Europe""" +2023-07-23,90064,1855,"[\""Tablet\"", \""Laptop\""]",967.58,{},144133,1,"""Europe""" +2023-03-07,90065,3388,"[\""Tablet\""]",3112.07,"{\"": \""10%\""}",179199,0,"""Europe""" +2024-10-28,90066,7127,"[\""Laptop\"", \""Headphones\""]",1924.86,{},245371,0,"""Europe""" +2024-11-29,90067,1820,"[\""Wireless Mouse\""]",277.96,{},190713,1,"""South America""" +2023-12-05,90068,5326,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2864.18,{},103683,1,"""South America""" +2023-02-03,90069,1308,"[\""Keyboard\""]",1334.06,{},237134,1,"""Asia""" +2024-12-18,90070,5838,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3476.69,"{\""promo\"": \""26%\""}",169687,1,"""South America""" +2023-12-14,90071,1588,"[\""Phone\""]",2806.86,{},17830,0,"""Europe""" +2023-10-23,90072,5522,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3338.23,"{\""loyalty\"": \""25%\""}",258374,0,"""North America""" +2024-11-06,90073,9111,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",673.96,"{\""loyalty\"": \""23%\""}",239385,0,"""Africa""" +2023-08-22,90074,1202,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3176.66,{},204987,0,"""South America""" +2024-05-29,90075,7754,"[\""Headphones\"", \""Laptop\""]",1258.13,"{\""promo\"": \""13%\""}",294579,1,"""South America""" +2023-02-21,90076,7235,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",75.32,{},4197,1,"""Europe""" +2024-04-12,90077,575,"[\""Phone\""]",2705.89,{},103232,0,"""North America""" +2024-05-28,90078,1197,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4024.54,"{\"": \""12%\""}",113005,1,"""Europe""" +2024-01-11,90079,3869,"[\""Wireless Mouse\""]",946.6,{},203320,1,"""North America""" +2023-12-23,90080,2227,"[\""Keyboard\"", \""Charger\""]",356.38,"{\""loyalty\"": \""16%\""}",227303,0,"""Africa""" +2024-01-09,90081,6778,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2549.33,"{\""loyalty\"": \""8%\""}",133276,1,"""South America""" +2024-10-22,90082,6901,"[\""Laptop\"", \""Tablet\""]",4513.74,{},247499,0,"""Africa""" +2023-03-26,90083,3811,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1381.37,{},25825,1,"""North America""" +2024-11-17,90084,985,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1150.34,{},244081,1,"""South America""" +2024-02-09,90085,7420,"[\""Laptop\""]",4355.73,{},180560,1,"""Africa""" +2024-06-01,90086,1751,"[\""Headphones\""]",1208.68,{},69775,1,"""Europe""" +2023-08-06,90087,2630,"[\""Wireless Mouse\"", \""Laptop\""]",591.87,{},14043,0,"""North America""" +2024-11-12,90088,7444,"[\""Tablet\"", \""Wireless Mouse\""]",1131.52,{},289252,1,"""South America""" +2023-12-15,90089,8160,"[\""Phone\"", \""Laptop\""]",256.69,"{\""seasonal\"": \""19%\""}",252564,1,"""Africa""" +2023-11-20,90090,1673,"[\""Laptop\""]",1107.04,{},239521,1,"""Asia""" +2024-01-13,90091,1360,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2562.65,{},161825,0,"""North America""" +2023-10-10,90092,240,"[\""Tablet\""]",4021.34,"{\""seasonal\"": \""27%\""}",107968,0,"""North America""" +2024-08-01,90093,8484,"[\""Laptop\"", \""Monitor\""]",3425.51,{},152820,1,"""North America""" +2023-01-03,90094,8841,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",493.15,{},193200,0,"""Europe""" +2024-09-22,90095,2994,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2184.74,{},195635,0,"""South America""" +2023-01-29,90096,1006,"[\""Tablet\"", \""Phone\""]",4273.56,"{\""loyalty\"": \""19%\""}",63200,1,"""Asia""" +2024-03-10,90097,1274,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",3556.18,"{\""promo\"": \""20%\""}",83941,0,"""North America""" +2023-09-11,90098,1292,"[\""Keyboard\""]",1340.86,"{\"": \""17%\""}",75232,1,"""Asia""" +2023-12-07,90099,9866,"[\""Tablet\""]",512.21,"{\""loyalty\"": \""7%\""}",83562,0,"""North America""" +2023-03-09,90100,5232,"[\""Laptop\""]",347.31,"{\"": \""30%\""}",256641,0,"""Africa""" +2023-01-09,90101,5733,"[\""Monitor\"", \""Tablet\""]",1754.04,"{\""seasonal\"": \""21%\""}",84498,0,"""Asia""" +2023-04-08,90102,7285,"[\""Charger\""]",3990.96,{},210443,1,"""Europe""" +2024-03-11,90103,9838,"[\""Phone\""]",3035.63,{},52147,1,"""North America""" +2024-05-29,90104,3419,"[\""Headphones\""]",119.6,"{\""promo\"": \""27%\""}",243161,1,"""Asia""" +2024-09-09,90105,898,"[\""Phone\""]",558.46,"{\""seasonal\"": \""19%\""}",220845,1,"""Africa""" +2024-10-09,90106,9009,"[\""Monitor\"", \""Charger\""]",525.89,"{\""promo\"": \""27%\""}",12973,1,"""South America""" +2023-03-21,90107,6613,"[\""Keyboard\"", \""Phone\""]",3764.75,"{\""loyalty\"": \""21%\""}",148753,1,"""South America""" +2024-12-14,90108,4143,"[\""Keyboard\"", \""Headphones\""]",740.89,"{\"": \""17%\""}",36622,1,"""Asia""" +2023-09-30,90109,4117,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1365.99,{},28151,0,"""North America""" +2024-05-12,90110,9157,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1723.1,"{\"": \""7%\""}",217551,1,"""Africa""" +2023-03-09,90111,8788,"[\""Wireless Mouse\"", \""Tablet\""]",677.37,{},68582,1,"""North America""" +2024-07-15,90112,3406,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3968.34,"{\""loyalty\"": \""27%\""}",236719,0,"""South America""" +2023-08-17,90113,2105,"[\""Tablet\"", \""Charger\""]",1826.88,{},230847,0,"""Asia""" +2024-02-12,90114,4393,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2124.14,"{\"": \""24%\""}",269739,0,"""Africa""" +2023-08-30,90115,6067,"[\""Monitor\"", \""Keyboard\""]",2693.76,"{\"": \""14%\""}",143464,1,"""Africa""" +2024-09-07,90116,9538,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1378.47,{},108116,0,"""Africa""" +2024-01-05,90117,6295,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",177.41,{},94465,0,"""Europe""" +2024-09-08,90118,1903,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1633.12,{},183181,1,"""Africa""" +2024-01-03,90119,8030,"[\""Charger\"", \""Laptop\""]",4486.77,{},130430,1,"""Africa""" +2023-03-05,90120,6517,"[\""Monitor\""]",4696.81,{},230441,0,"""North America""" +2023-10-26,90121,6638,"[\""Headphones\"", \""Monitor\""]",3574.08,"{\"": \""21%\""}",41694,0,"""South America""" +2023-09-07,90122,2044,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",3143.67,{},162010,0,"""Asia""" +2023-07-26,90123,3091,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2918.85,"{\"": \""22%\""}",117844,1,"""Africa""" +2024-05-13,90124,2083,"[\""Tablet\"", \""Keyboard\""]",1501.34,"{\""promo\"": \""14%\""}",132561,1,"""Africa""" +2023-06-27,90125,3366,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1708.59,"{\""promo\"": \""13%\""}",276272,0,"""South America""" +2024-07-06,90126,874,"[\""Tablet\"", \""Laptop\""]",463.17,{},167867,0,"""North America""" +2024-02-01,90127,6279,"[\""Phone\"", \""Charger\""]",1348.09,"{\""loyalty\"": \""25%\""}",6240,1,"""North America""" +2024-06-16,90128,925,"[\""Keyboard\""]",3153.68,"{\""seasonal\"": \""12%\""}",147282,1,"""Africa""" +2024-08-08,90129,6838,"[\""Laptop\""]",298.68,"{\"": \""6%\""}",227204,1,"""South America""" +2024-02-02,90130,7591,"[\""Phone\""]",3467.04,{},3924,0,"""South America""" +2024-04-05,90131,9490,"[\""Wireless Mouse\""]",2361.78,{},215109,0,"""Africa""" +2023-02-02,90132,1154,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1218.02,{},5055,0,"""Asia""" +2023-07-02,90133,6076,"[\""Headphones\"", \""Phone\""]",1553.95,"{\""seasonal\"": \""29%\""}",117535,1,"""Asia""" +2023-04-25,90134,5397,"[\""Wireless Mouse\""]",2845.82,{},78194,1,"""South America""" +2023-11-13,90135,8165,"[\""Tablet\""]",3994.74,{},246706,1,"""Asia""" +2024-07-29,90136,4499,"[\""Tablet\""]",92.69,{},201695,0,"""South America""" +2024-11-10,90137,1103,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4905.45,{},92434,0,"""South America""" +2024-11-27,90138,9846,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4208.25,{},154663,0,"""Africa""" +2024-01-19,90139,5087,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1672.67,{},249494,1,"""Africa""" +2024-03-30,90140,2916,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3790.08,"{\""seasonal\"": \""10%\""}",140249,0,"""Asia""" +2023-09-27,90141,3176,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2625.42,"{\"": \""21%\""}",28173,1,"""Asia""" +2024-05-07,90142,9977,"[\""Phone\"", \""Charger\""]",3371.34,{},143260,1,"""Europe""" +2024-03-23,90143,4710,"[\""Headphones\""]",2811.3,"{\""seasonal\"": \""15%\""}",240969,0,"""Asia""" +2024-10-03,90144,4917,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2343.17,"{\""promo\"": \""28%\""}",158556,0,"""Asia""" +2023-05-15,90145,4,"[\""Phone\""]",3761.45,"{\""seasonal\"": \""15%\""}",246285,0,"""Asia""" +2024-04-05,90146,8716,"[\""Headphones\""]",3461.91,"{\""seasonal\"": \""9%\""}",233950,1,"""South America""" +2024-06-25,90147,9925,"[\""Keyboard\"", \""Wireless Mouse\""]",924.47,{},6268,1,"""Asia""" +2024-06-29,90148,5120,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4020.99,{},221716,1,"""South America""" +2024-03-23,90149,3303,"[\""Tablet\"", \""Monitor\""]",1791.08,"{\""seasonal\"": \""15%\""}",291788,1,"""Asia""" +2023-12-25,90150,7264,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3647.4,"{\""seasonal\"": \""10%\""}",20014,1,"""North America""" +2023-06-17,90151,2573,"[\""Tablet\""]",1220.73,"{\""promo\"": \""28%\""}",89430,1,"""Asia""" +2024-09-27,90152,6571,"[\""Phone\""]",2004.52,{},103582,0,"""North America""" +2023-07-12,90153,7715,"[\""Phone\""]",1154.09,{},47404,0,"""Asia""" +2024-07-06,90154,9298,"[\""Monitor\"", \""Tablet\""]",2344.92,{},203435,1,"""Asia""" +2023-03-06,90155,4962,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",1691.45,{},221932,1,"""Asia""" +2024-09-18,90156,5695,"[\""Charger\"", \""Tablet\""]",591.36,{},275124,1,"""Asia""" +2024-12-20,90157,3202,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3299.54,"{\""promo\"": \""18%\""}",270311,1,"""Africa""" +2023-11-17,90158,1616,"[\""Laptop\"", \""Wireless Mouse\""]",782.65,"{\""promo\"": \""23%\""}",245416,1,"""South America""" +2023-08-17,90159,5950,"[\""Monitor\""]",4520.57,"{\""promo\"": \""6%\""}",135167,0,"""South America""" +2024-05-26,90160,1271,"[\""Laptop\""]",3881.17,"{\"": \""10%\""}",264817,0,"""Africa""" +2023-12-05,90161,8345,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3097.81,"{\"": \""16%\""}",137876,0,"""Africa""" +2024-07-19,90162,3060,"[\""Monitor\""]",4116.6,"{\""promo\"": \""18%\""}",256764,0,"""Asia""" +2024-06-09,90163,4422,"[\""Wireless Mouse\"", \""Keyboard\""]",1318.3,"{\""promo\"": \""16%\""}",227510,1,"""Africa""" +2023-09-07,90164,3817,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1945.43,{},212074,0,"""Asia""" +2023-02-19,90165,6641,"[\""Wireless Mouse\"", \""Keyboard\""]",2353.93,"{\"": \""12%\""}",175109,1,"""South America""" +2023-03-26,90166,8264,"[\""Headphones\"", \""Charger\""]",1588.45,"{\""loyalty\"": \""23%\""}",44698,0,"""South America""" +2024-01-27,90167,7731,"[\""Keyboard\""]",2812.41,"{\""seasonal\"": \""28%\""}",166762,1,"""Asia""" +2024-01-28,90168,7056,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2698.99,"{\""loyalty\"": \""28%\""}",216462,0,"""North America""" +2024-07-07,90169,9710,"[\""Charger\"", \""Headphones\""]",860.97,"{\"": \""20%\""}",209278,1,"""Africa""" +2023-08-31,90170,1132,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",843.38,{},284604,1,"""Asia""" +2024-04-09,90171,488,"[\""Wireless Mouse\"", \""Monitor\""]",3273.88,"{\"": \""22%\""}",118118,0,"""Africa""" +2023-03-23,90172,5536,"[\""Headphones\""]",947.79,"{\"": \""21%\""}",105234,1,"""South America""" +2024-05-24,90173,9671,"[\""Headphones\""]",2038.9,{},63661,0,"""North America""" +2024-07-01,90174,4918,"[\""Tablet\"", \""Headphones\""]",612.51,"{\""loyalty\"": \""20%\""}",115552,1,"""Asia""" +2024-10-03,90175,814,"[\""Tablet\"", \""Headphones\""]",834.2,"{\""promo\"": \""8%\""}",276032,0,"""South America""" +2023-09-10,90176,5769,"[\""Keyboard\""]",949.36,"{\""seasonal\"": \""12%\""}",165750,0,"""Asia""" +2023-02-14,90177,5687,"[\""Wireless Mouse\"", \""Tablet\""]",4515.62,"{\""promo\"": \""27%\""}",51967,0,"""Africa""" +2023-02-14,90178,6564,"[\""Phone\""]",3152.3,"{\"": \""29%\""}",57740,0,"""North America""" +2024-01-06,90179,2769,"[\""Charger\""]",2816.45,{},207888,0,"""South America""" +2024-08-11,90180,1478,"[\""Keyboard\""]",2092.19,{},179952,0,"""Asia""" +2023-02-09,90181,1219,"[\""Tablet\""]",2005.45,"{\""promo\"": \""6%\""}",236590,0,"""South America""" +2024-09-07,90182,8009,"[\""Monitor\""]",2929.68,"{\""loyalty\"": \""27%\""}",21152,0,"""Asia""" +2023-04-19,90183,3125,"[\""Tablet\""]",2364.55,{},150056,1,"""South America""" +2023-04-10,90184,7694,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2196.3,{},185169,0,"""Africa""" +2023-07-07,90185,8070,"[\""Monitor\""]",413.76,{},67376,0,"""South America""" +2024-01-17,90186,3814,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4430.72,{},53751,1,"""Asia""" +2024-08-28,90187,8201,"[\""Keyboard\""]",3008.12,"{\"": \""7%\""}",86156,0,"""Asia""" +2024-08-14,90188,8443,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4944.26,{},62646,1,"""South America""" +2024-01-06,90189,2184,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4635.23,"{\"": \""24%\""}",224405,0,"""North America""" +2024-11-01,90190,2728,"[\""Tablet\""]",2914.35,{},233710,1,"""North America""" +2024-10-28,90191,4086,"[\""Phone\""]",2982.34,"{\""seasonal\"": \""6%\""}",279433,0,"""Asia""" +2024-09-02,90192,1290,"[\""Wireless Mouse\"", \""Charger\""]",4050.98,{},136547,1,"""Africa""" +2024-06-05,90193,417,"[\""Phone\""]",2535.02,"{\""seasonal\"": \""20%\""}",66249,0,"""Asia""" +2024-05-20,90194,7042,"[\""Keyboard\""]",1687.49,{},72862,0,"""Africa""" +2024-02-01,90195,881,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3504.21,"{\""seasonal\"": \""23%\""}",249740,0,"""Asia""" +2024-04-11,90196,1344,"[\""Charger\"", \""Keyboard\""]",3894.1,"{\"": \""28%\""}",122830,0,"""South America""" +2023-06-26,90197,3155,"[\""Headphones\"", \""Monitor\""]",1749.35,{},247342,1,"""Europe""" +2024-12-30,90198,7141,"[\""Wireless Mouse\""]",954.16,"{\""promo\"": \""28%\""}",161361,1,"""Asia""" +2023-05-04,90199,5360,"[\""Tablet\""]",3943.61,"{\"": \""9%\""}",295894,0,"""North America""" +2023-05-05,90200,1664,"[\""Monitor\"", \""Wireless Mouse\""]",2963.79,"{\"": \""18%\""}",4476,1,"""North America""" +2024-12-25,90201,3042,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",2662.14,{},104843,0,"""Africa""" +2024-05-30,90202,6402,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",792.35,{},29063,1,"""Africa""" +2024-03-05,90203,6490,"[\""Tablet\""]",1443.86,{},224264,1,"""South America""" +2024-09-29,90204,1254,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",4988.02,"{\"": \""8%\""}",52003,1,"""Africa""" +2024-02-19,90205,7758,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2581.86,"{\"": \""19%\""}",244608,1,"""Africa""" +2024-05-02,90206,4577,"[\""Laptop\"", \""Keyboard\""]",1108.51,"{\""loyalty\"": \""10%\""}",173313,0,"""North America""" +2024-07-22,90207,66,"[\""Wireless Mouse\""]",2003.03,{},122949,0,"""Asia""" +2024-06-19,90208,3707,"[\""Phone\"", \""Wireless Mouse\""]",1799.16,{},146006,0,"""Asia""" +2023-11-29,90209,9763,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",2659.93,{},297110,0,"""Africa""" +2024-05-30,90210,8680,"[\""Wireless Mouse\""]",2555.86,{},271274,0,"""Europe""" +2024-05-28,90211,9424,"[\""Headphones\""]",2756.49,"{\"": \""30%\""}",201570,0,"""Asia""" +2024-05-17,90212,1802,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2871.26,"{\"": \""28%\""}",248294,1,"""Asia""" +2024-11-29,90213,5080,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",174.36,"{\""promo\"": \""13%\""}",65503,0,"""North America""" +2024-05-25,90214,8588,"[\""Laptop\""]",3825.63,{},231157,0,"""South America""" +2023-02-01,90215,2180,"[\""Tablet\"", \""Laptop\""]",3934.73,{},281215,0,"""Africa""" +2024-02-27,90216,9836,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",907.65,{},195346,1,"""Asia""" +2023-03-27,90217,7797,"[\""Laptop\"", \""Keyboard\""]",728.28,"{\"": \""21%\""}",204684,1,"""Europe""" +2023-10-21,90218,7665,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4073.97,"{\"": \""19%\""}",6414,0,"""North America""" +2023-01-03,90219,4789,"[\""Charger\"", \""Monitor\""]",1849.04,"{\""seasonal\"": \""29%\""}",168801,0,"""Europe""" +2024-09-24,90220,2539,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2270.74,{},248354,0,"""South America""" +2023-05-15,90221,1056,"[\""Tablet\"", \""Charger\""]",1707.36,{},216201,1,"""Europe""" +2023-12-12,90222,4943,"[\""Charger\""]",3072.47,{},261055,0,"""South America""" +2023-11-20,90223,3752,"[\""Wireless Mouse\"", \""Headphones\""]",3680.71,"{\""seasonal\"": \""26%\""}",230414,1,"""South America""" +2023-09-11,90224,6507,"[\""Laptop\"", \""Tablet\""]",2867.95,"{\""promo\"": \""29%\""}",184958,1,"""North America""" +2023-03-21,90225,1441,"[\""Keyboard\"", \""Headphones\""]",1509.4,"{\""seasonal\"": \""14%\""}",28820,0,"""Europe""" +2023-08-25,90226,111,"[\""Keyboard\""]",2189.57,"{\"": \""16%\""}",55202,0,"""Africa""" +2024-11-06,90227,574,"[\""Laptop\"", \""Headphones\""]",4794.48,{},264764,1,"""South America""" +2024-03-05,90228,588,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2284.56,"{\"": \""8%\""}",202697,1,"""Africa""" +2023-03-18,90229,3980,"[\""Wireless Mouse\"", \""Laptop\""]",4174.93,{},266322,0,"""Europe""" +2023-05-29,90230,6076,"[\""Phone\""]",171.04,"{\""seasonal\"": \""21%\""}",192152,1,"""South America""" +2023-10-15,90231,9930,"[\""Headphones\"", \""Tablet\""]",3529.81,"{\""seasonal\"": \""5%\""}",274536,0,"""Africa""" +2023-04-28,90232,5753,"[\""Headphones\""]",1818.33,{},97625,1,"""Asia""" +2024-09-20,90233,1344,"[\""Monitor\"", \""Keyboard\""]",4578.32,{},101624,0,"""Asia""" +2024-06-04,90234,813,"[\""Monitor\""]",227.74,"{\""promo\"": \""29%\""}",25072,1,"""Asia""" +2023-11-04,90235,6428,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1453.28,{},65022,0,"""South America""" +2023-10-14,90236,1867,"[\""Monitor\""]",3901.15,"{\"": \""26%\""}",126360,0,"""Europe""" +2023-06-10,90237,4277,"[\""Tablet\"", \""Keyboard\""]",3425.32,{},94111,1,"""North America""" +2023-05-09,90238,3536,"[\""Charger\"", \""Monitor\""]",823.94,"{\""loyalty\"": \""12%\""}",132955,1,"""Asia""" +2024-04-02,90239,3630,"[\""Wireless Mouse\"", \""Monitor\""]",3826.22,"{\""loyalty\"": \""19%\""}",72791,1,"""Europe""" +2024-10-31,90240,2802,"[\""Charger\""]",4555.75,"{\""promo\"": \""16%\""}",96872,1,"""South America""" +2023-11-19,90241,4748,"[\""Keyboard\""]",2883.66,{},138296,1,"""Europe""" +2024-04-22,90242,7612,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3412.96,{},231483,0,"""Europe""" +2023-02-12,90243,4242,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3312.02,"{\"": \""10%\""}",123577,0,"""Asia""" +2023-04-26,90244,329,"[\""Charger\""]",2485.1,"{\"": \""9%\""}",119638,1,"""Africa""" +2024-06-07,90245,9133,"[\""Tablet\"", \""Keyboard\""]",3397.25,"{\""seasonal\"": \""30%\""}",262576,1,"""Asia""" +2023-08-25,90246,2705,"[\""Charger\"", \""Headphones\""]",1470.92,"{\""seasonal\"": \""5%\""}",60252,1,"""North America""" +2024-12-02,90247,9526,"[\""Tablet\"", \""Phone\""]",884.18,{},112791,0,"""Africa""" +2023-07-11,90248,1153,"[\""Laptop\"", \""Keyboard\""]",1695.99,{},161848,1,"""North America""" +2024-06-10,90249,2939,"[\""Phone\"", \""Monitor\""]",270.51,"{\""seasonal\"": \""9%\""}",98928,1,"""North America""" +2024-11-29,90250,1532,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",255.63,{},294309,1,"""Europe""" +2023-05-08,90251,4370,"[\""Keyboard\"", \""Headphones\""]",4224.9,"{\"": \""7%\""}",295140,1,"""South America""" +2024-06-11,90252,2985,"[\""Keyboard\"", \""Wireless Mouse\""]",2009.7,"{\"": \""27%\""}",18387,0,"""Asia""" +2024-05-24,90253,4824,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3720.11,{},231830,0,"""Asia""" +2023-06-12,90254,2445,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1383.79,{},109022,1,"""South America""" +2024-04-10,90255,3404,"[\""Tablet\"", \""Phone\""]",1094.83,{},250016,1,"""South America""" +2024-12-09,90256,8995,"[\""Monitor\""]",4253.16,{},94391,0,"""Africa""" +2024-08-12,90257,4369,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",3823.01,"{\""loyalty\"": \""16%\""}",185669,0,"""Asia""" +2023-08-17,90258,6912,"[\""Laptop\"", \""Tablet\""]",3751.43,{},216871,1,"""Africa""" +2024-05-30,90259,3643,"[\""Tablet\"", \""Keyboard\""]",547.5,{},39976,0,"""Africa""" +2024-03-14,90260,9745,"[\""Charger\"", \""Monitor\""]",1084.58,{},158185,1,"""Asia""" +2024-07-09,90261,3677,"[\""Monitor\""]",3083.41,"{\""promo\"": \""25%\""}",163718,0,"""Europe""" +2024-11-17,90262,6056,"[\""Tablet\""]",3508.11,{},150181,0,"""North America""" +2024-11-01,90263,3696,"[\""Laptop\"", \""Monitor\""]",4188.99,{},266120,1,"""South America""" +2024-01-01,90264,2000,"[\""Laptop\""]",2212.64,{},63571,1,"""North America""" +2024-06-22,90265,1524,"[\""Headphones\"", \""Keyboard\""]",4594.49,"{\""seasonal\"": \""13%\""}",244426,1,"""North America""" +2023-01-04,90266,2831,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4536.46,{},51151,1,"""Asia""" +2023-06-05,90267,456,"[\""Keyboard\""]",4543.11,"{\"": \""12%\""}",264899,1,"""North America""" +2023-04-17,90268,2918,"[\""Keyboard\"", \""Wireless Mouse\""]",2027.3,"{\""loyalty\"": \""17%\""}",92317,1,"""Africa""" +2024-05-16,90269,5021,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",351.23,{},156176,1,"""Europe""" +2024-11-14,90270,4484,"[\""Charger\"", \""Phone\""]",4571.76,{},270004,0,"""South America""" +2023-02-03,90271,3313,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4778.88,{},219472,1,"""Europe""" +2024-11-09,90272,3471,"[\""Tablet\""]",1615.11,{},264562,0,"""North America""" +2024-05-28,90273,2297,"[\""Phone\"", \""Charger\"", \""Headphones\""]",851.83,{},198883,0,"""South America""" +2023-06-28,90274,9322,"[\""Keyboard\"", \""Charger\""]",3617.34,"{\""seasonal\"": \""26%\""}",205347,0,"""South America""" +2023-06-02,90275,9573,"[\""Keyboard\""]",4698.68,{},285548,1,"""Europe""" +2024-09-29,90276,542,"[\""Headphones\""]",890.19,{},244780,1,"""Asia""" +2023-08-23,90277,3638,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2437.32,{},295290,0,"""North America""" +2024-05-04,90278,1839,"[\""Charger\"", \""Tablet\""]",2864.99,"{\""seasonal\"": \""16%\""}",279739,0,"""Asia""" +2024-04-16,90279,1113,"[\""Laptop\""]",1663.43,{},253507,1,"""Africa""" +2024-06-12,90280,2172,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",642.7,{},73848,1,"""North America""" +2024-12-06,90281,6218,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1457.26,"{\"": \""29%\""}",151264,1,"""Asia""" +2024-02-14,90282,1515,"[\""Charger\"", \""Headphones\""]",4018.13,"{\""loyalty\"": \""7%\""}",271600,0,"""Africa""" +2024-02-19,90283,4027,"[\""Headphones\""]",1809.01,"{\""seasonal\"": \""28%\""}",3192,0,"""South America""" +2023-04-22,90284,3402,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3113.88,"{\""promo\"": \""7%\""}",248226,0,"""North America""" +2024-04-14,90285,5086,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1949.99,{},218502,0,"""South America""" +2023-01-16,90286,557,"[\""Wireless Mouse\""]",4141.19,{},141063,1,"""Asia""" +2023-11-29,90287,5402,"[\""Phone\""]",510.63,{},228097,0,"""Asia""" +2024-12-25,90288,9131,"[\""Charger\""]",1209.81,{},253203,1,"""Africa""" +2023-04-25,90289,9304,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",4801.99,"{\""promo\"": \""22%\""}",18490,0,"""North America""" +2024-08-19,90290,3854,"[\""Wireless Mouse\"", \""Charger\""]",1716.64,"{\""loyalty\"": \""10%\""}",192221,1,"""Europe""" +2024-03-28,90291,7722,"[\""Headphones\""]",1884.09,"{\"": \""22%\""}",12491,1,"""Europe""" +2024-07-13,90292,4941,"[\""Charger\"", \""Keyboard\""]",1222.81,"{\"": \""9%\""}",266025,1,"""Africa""" +2024-09-25,90293,2497,"[\""Laptop\"", \""Keyboard\""]",4361.9,{},80674,0,"""Asia""" +2023-08-11,90294,6577,"[\""Monitor\""]",117.49,"{\""seasonal\"": \""26%\""}",129345,1,"""North America""" +2024-05-01,90295,189,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3355.24,"{\""loyalty\"": \""6%\""}",10104,1,"""North America""" +2023-06-20,90296,2269,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4463.64,"{\"": \""6%\""}",29418,0,"""North America""" +2024-08-29,90297,9006,"[\""Laptop\"", \""Tablet\""]",4269.86,{},266789,1,"""South America""" +2024-02-17,90298,3478,"[\""Keyboard\""]",4170.09,"{\""seasonal\"": \""29%\""}",74310,1,"""North America""" +2024-06-14,90299,511,"[\""Keyboard\""]",773.34,"{\"": \""9%\""}",84975,1,"""Asia""" +2023-06-22,90300,8858,"[\""Charger\"", \""Tablet\""]",1472.39,{},54741,0,"""Asia""" +2023-12-03,90301,1000,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3739.75,{},37188,1,"""North America""" +2023-11-10,90302,3371,"[\""Headphones\""]",3514.89,{},289220,0,"""North America""" +2023-08-01,90303,9630,"[\""Headphones\""]",1033.07,{},174301,1,"""South America""" +2023-12-17,90304,2196,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2057.72,{},183744,0,"""North America""" +2023-06-20,90305,7360,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2727.1,"{\"": \""26%\""}",257700,1,"""South America""" +2023-11-09,90306,4493,"[\""Charger\""]",1802.28,"{\"": \""16%\""}",224268,0,"""Asia""" +2024-09-08,90307,7397,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2949.12,"{\""loyalty\"": \""10%\""}",266544,1,"""South America""" +2024-05-20,90308,826,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1869.63,"{\""loyalty\"": \""9%\""}",70921,1,"""Asia""" +2024-01-01,90309,4634,"[\""Keyboard\"", \""Phone\""]",4454.7,{},210175,0,"""Africa""" +2024-04-02,90310,7562,"[\""Phone\""]",4484.14,{},94387,0,"""Europe""" +2023-06-28,90311,6498,"[\""Wireless Mouse\""]",4016.04,"{\""loyalty\"": \""25%\""}",211385,0,"""Asia""" +2024-05-05,90312,40,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1562.55,{},166492,0,"""Asia""" +2024-01-14,90313,4431,"[\""Phone\""]",890.22,{},34590,0,"""Europe""" +2024-10-26,90314,662,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2936.06,"{\"": \""10%\""}",141376,0,"""Africa""" +2024-08-22,90315,1050,"[\""Phone\""]",3449.58,{},30312,0,"""Africa""" +2024-01-31,90316,2186,"[\""Keyboard\""]",1123.79,{},106599,1,"""South America""" +2024-01-23,90317,7106,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",2928.97,"{\"": \""28%\""}",97483,0,"""Africa""" +2024-04-30,90318,154,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1074.56,{},54894,1,"""Asia""" +2023-05-05,90319,6074,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",386.2,"{\"": \""13%\""}",275403,0,"""Africa""" +2024-05-09,90320,5411,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",818.79,{},70711,0,"""South America""" +2024-09-30,90321,6888,"[\""Charger\""]",667.0,{},284784,0,"""Asia""" +2024-12-15,90322,5323,"[\""Laptop\"", \""Keyboard\""]",3728.82,{},183539,0,"""North America""" +2023-06-19,90323,50,"[\""Phone\"", \""Wireless Mouse\""]",790.17,"{\""loyalty\"": \""22%\""}",103917,1,"""Asia""" +2023-08-01,90324,3175,"[\""Charger\""]",3904.51,"{\""promo\"": \""18%\""}",114767,0,"""Asia""" +2024-02-01,90325,6055,"[\""Keyboard\""]",1042.04,"{\"": \""8%\""}",256232,0,"""Europe""" +2023-05-05,90326,5936,"[\""Charger\"", \""Monitor\""]",4527.96,{},111260,1,"""Africa""" +2024-06-27,90327,2074,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1983.74,"{\""promo\"": \""5%\""}",268929,1,"""Africa""" +2024-10-04,90328,3955,"[\""Wireless Mouse\""]",4448.75,"{\""promo\"": \""26%\""}",168425,0,"""North America""" +2024-08-07,90329,223,"[\""Tablet\"", \""Phone\""]",4888.58,{},190377,1,"""North America""" +2024-09-08,90330,9199,"[\""Keyboard\"", \""Monitor\""]",4552.91,"{\"": \""28%\""}",153619,1,"""Africa""" +2024-10-20,90331,8057,"[\""Wireless Mouse\""]",2315.21,{},18819,0,"""Asia""" +2024-05-23,90332,5201,"[\""Tablet\""]",1303.83,"{\""seasonal\"": \""12%\""}",250441,0,"""Africa""" +2023-10-16,90333,6416,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3171.43,{},112203,1,"""North America""" +2024-05-07,90334,6034,"[\""Monitor\"", \""Keyboard\""]",1854.52,{},90865,1,"""South America""" +2023-10-24,90335,2432,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1210.26,{},254716,0,"""Africa""" +2023-05-14,90336,4716,"[\""Headphones\""]",3528.81,"{\""promo\"": \""29%\""}",87711,1,"""Europe""" +2023-06-14,90337,3372,"[\""Tablet\"", \""Monitor\""]",3938.78,"{\""loyalty\"": \""5%\""}",73090,0,"""Africa""" +2024-11-15,90338,3631,"[\""Charger\"", \""Headphones\""]",590.66,"{\""seasonal\"": \""30%\""}",140232,0,"""Africa""" +2024-10-22,90339,8695,"[\""Laptop\"", \""Charger\""]",2295.5,{},47905,0,"""South America""" +2023-08-05,90340,8419,"[\""Laptop\"", \""Charger\""]",779.38,"{\"": \""28%\""}",43050,1,"""Asia""" +2023-06-10,90341,7429,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1281.16,{},37902,0,"""Africa""" +2024-03-12,90342,2600,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2518.43,"{\""promo\"": \""29%\""}",140377,0,"""Europe""" +2023-11-19,90343,4231,"[\""Tablet\"", \""Phone\""]",2832.08,"{\""seasonal\"": \""24%\""}",234669,0,"""Asia""" +2024-12-16,90344,823,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3231.94,"{\""seasonal\"": \""15%\""}",114945,0,"""South America""" +2024-06-27,90345,4439,"[\""Wireless Mouse\"", \""Keyboard\""]",3027.07,"{\""loyalty\"": \""13%\""}",113390,0,"""Africa""" +2024-07-26,90346,3546,"[\""Keyboard\"", \""Tablet\""]",2146.09,{},236160,0,"""Europe""" +2024-12-04,90347,2634,"[\""Phone\"", \""Monitor\""]",572.95,"{\""seasonal\"": \""6%\""}",111376,0,"""Africa""" +2023-08-19,90348,1496,"[\""Keyboard\""]",3234.03,"{\""loyalty\"": \""20%\""}",32651,0,"""Africa""" +2023-03-03,90349,2783,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4838.86,{},203787,1,"""North America""" +2024-03-03,90350,6414,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2185.96,{},28888,0,"""North America""" +2024-01-01,90351,5317,"[\""Wireless Mouse\"", \""Keyboard\""]",1832.46,"{\""promo\"": \""19%\""}",249830,1,"""Europe""" +2024-01-15,90352,2379,"[\""Keyboard\""]",614.35,"{\"": \""24%\""}",295340,1,"""Europe""" +2023-11-17,90353,7016,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1774.7,{},167950,1,"""Asia""" +2024-06-12,90354,2935,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2588.87,"{\""seasonal\"": \""22%\""}",261171,0,"""Europe""" +2023-04-14,90355,7288,"[\""Headphones\""]",4604.86,"{\""seasonal\"": \""8%\""}",181294,1,"""South America""" +2023-12-22,90356,6937,"[\""Headphones\"", \""Keyboard\""]",1483.71,{},72905,1,"""Africa""" +2024-05-02,90357,3539,"[\""Headphones\""]",3871.82,{},169160,0,"""Asia""" +2023-05-09,90358,1130,"[\""Headphones\"", \""Charger\""]",4671.24,"{\"": \""21%\""}",219462,0,"""Europe""" +2024-03-08,90359,2448,"[\""Headphones\"", \""Charger\""]",995.11,"{\""seasonal\"": \""27%\""}",151674,0,"""South America""" +2023-06-06,90360,5489,"[\""Laptop\"", \""Headphones\""]",4147.21,{},210832,1,"""Asia""" +2024-06-01,90361,6370,"[\""Laptop\"", \""Phone\""]",3965.19,"{\"": \""21%\""}",148727,0,"""South America""" +2023-05-18,90362,5844,"[\""Charger\""]",371.21,"{\"": \""24%\""}",163006,1,"""North America""" +2024-12-15,90363,8312,"[\""Phone\""]",799.89,"{\"": \""20%\""}",201113,0,"""Europe""" +2024-12-11,90364,8679,"[\""Phone\""]",4404.15,{},64846,1,"""South America""" +2023-07-09,90365,1010,"[\""Headphones\""]",2075.09,"{\""promo\"": \""20%\""}",117356,1,"""North America""" +2023-09-25,90366,2565,"[\""Phone\"", \""Monitor\""]",3392.85,"{\""seasonal\"": \""13%\""}",82638,0,"""Asia""" +2023-03-11,90367,6038,"[\""Keyboard\""]",3738.4,{},65288,1,"""North America""" +2023-02-02,90368,991,"[\""Headphones\"", \""Laptop\""]",745.74,"{\"": \""18%\""}",223714,1,"""Europe""" +2023-11-09,90369,1840,"[\""Wireless Mouse\"", \""Keyboard\""]",1877.62,"{\""seasonal\"": \""23%\""}",194804,1,"""Europe""" +2023-11-11,90370,9465,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1368.33,{},258820,0,"""Africa""" +2023-10-19,90371,125,"[\""Charger\""]",867.55,{},62951,0,"""South America""" +2024-07-07,90372,1107,"[\""Headphones\"", \""Laptop\""]",255.34,{},37483,0,"""South America""" +2023-07-03,90373,1494,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1611.98,{},237451,1,"""Africa""" +2023-02-04,90374,3689,"[\""Laptop\""]",1872.97,"{\""loyalty\"": \""14%\""}",48376,1,"""Asia""" +2024-08-05,90375,2847,"[\""Headphones\"", \""Phone\""]",4217.6,{},274295,0,"""Africa""" +2024-08-11,90376,7081,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4247.58,{},68000,1,"""South America""" +2023-10-16,90377,349,"[\""Charger\"", \""Headphones\""]",1793.92,"{\""seasonal\"": \""29%\""}",99324,0,"""North America""" +2023-05-27,90378,9298,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2434.72,"{\"": \""14%\""}",39172,0,"""Africa""" +2024-03-20,90379,810,"[\""Tablet\""]",1166.41,{},51530,1,"""Asia""" +2024-01-03,90380,9918,"[\""Tablet\""]",1300.18,"{\""seasonal\"": \""6%\""}",223871,0,"""Europe""" +2023-10-30,90381,5652,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1774.05,"{\""loyalty\"": \""11%\""}",283526,0,"""South America""" +2023-10-25,90382,890,"[\""Phone\"", \""Keyboard\""]",3049.12,"{\""loyalty\"": \""12%\""}",185043,1,"""Europe""" +2024-09-26,90383,6466,"[\""Monitor\"", \""Laptop\""]",1135.76,"{\""seasonal\"": \""26%\""}",57139,1,"""Asia""" +2023-04-13,90384,2207,"[\""Laptop\""]",3379.06,{},25603,0,"""Asia""" +2024-05-02,90385,5523,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1204.22,{},3169,0,"""Asia""" +2024-01-11,90386,8332,"[\""Phone\""]",635.04,{},169696,1,"""Europe""" +2023-05-06,90387,3511,"[\""Tablet\"", \""Charger\""]",682.69,"{\""loyalty\"": \""20%\""}",29703,1,"""North America""" +2024-03-11,90388,7368,"[\""Monitor\"", \""Tablet\""]",395.54,"{\""loyalty\"": \""11%\""}",85858,0,"""Asia""" +2024-03-29,90389,5572,"[\""Monitor\"", \""Phone\""]",1457.22,{},196753,1,"""Asia""" +2024-03-23,90390,5840,"[\""Keyboard\"", \""Monitor\""]",219.87,"{\"": \""10%\""}",187588,1,"""Asia""" +2024-01-23,90391,633,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1669.53,{},154069,1,"""Asia""" +2024-11-14,90392,6485,"[\""Laptop\"", \""Phone\""]",4050.81,{},230339,0,"""Africa""" +2024-12-22,90393,6866,"[\""Phone\"", \""Monitor\""]",1844.17,{},130632,0,"""South America""" +2024-05-22,90394,6389,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",2001.51,"{\""promo\"": \""15%\""}",52540,1,"""North America""" +2023-06-04,90395,15,"[\""Wireless Mouse\"", \""Keyboard\""]",2272.38,"{\"": \""16%\""}",151233,1,"""Europe""" +2024-01-12,90396,8310,"[\""Laptop\"", \""Headphones\""]",634.92,"{\""promo\"": \""21%\""}",25353,1,"""Asia""" +2024-08-06,90397,2801,"[\""Laptop\""]",1593.74,{},138301,0,"""South America""" +2024-12-29,90398,6277,"[\""Headphones\"", \""Laptop\""]",162.69,"{\""promo\"": \""7%\""}",285159,0,"""Africa""" +2024-01-27,90399,3433,"[\""Charger\"", \""Laptop\"", \""Phone\""]",950.1,"{\"": \""22%\""}",15653,1,"""Africa""" +2024-03-07,90400,1650,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1178.99,{},267714,1,"""North America""" +2023-10-25,90401,439,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1378.27,"{\"": \""20%\""}",227988,1,"""Europe""" +2023-07-11,90402,11,"[\""Monitor\"", \""Phone\""]",583.54,{},243413,0,"""Europe""" +2024-01-14,90403,3288,"[\""Laptop\""]",2168.95,"{\""promo\"": \""8%\""}",94210,1,"""North America""" +2023-04-08,90404,7916,"[\""Tablet\""]",2165.95,"{\"": \""11%\""}",246284,0,"""South America""" +2024-07-28,90405,5234,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2278.14,{},175031,1,"""South America""" +2024-12-11,90406,7936,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2965.76,"{\""loyalty\"": \""7%\""}",180420,0,"""North America""" +2024-04-20,90407,3535,"[\""Wireless Mouse\""]",856.73,"{\""promo\"": \""5%\""}",66046,1,"""Africa""" +2024-01-14,90408,5179,"[\""Headphones\""]",3695.79,"{\""promo\"": \""7%\""}",23821,0,"""Asia""" +2023-05-24,90409,5762,"[\""Wireless Mouse\"", \""Keyboard\""]",4208.59,"{\"": \""15%\""}",246318,1,"""Africa""" +2024-08-13,90410,918,"[\""Headphones\"", \""Wireless Mouse\""]",4067.85,{},1834,0,"""Asia""" +2023-08-17,90411,9277,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4200.29,"{\""seasonal\"": \""20%\""}",273546,1,"""South America""" +2024-01-21,90412,6793,"[\""Monitor\"", \""Headphones\""]",1838.13,{},140773,0,"""Africa""" +2024-11-14,90413,3067,"[\""Headphones\""]",1305.17,{},146935,1,"""Europe""" +2023-10-21,90414,7220,"[\""Monitor\""]",2861.11,"{\""loyalty\"": \""29%\""}",148007,0,"""South America""" +2024-05-05,90415,1867,"[\""Phone\""]",1541.89,{},182909,0,"""Asia""" +2024-09-06,90416,6498,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",4493.2,"{\""loyalty\"": \""10%\""}",105343,0,"""Europe""" +2024-01-08,90417,4525,"[\""Keyboard\"", \""Headphones\""]",2071.43,"{\"": \""5%\""}",194944,0,"""North America""" +2023-07-06,90418,5142,"[\""Keyboard\""]",3270.67,"{\"": \""14%\""}",118656,0,"""Asia""" +2023-05-18,90419,5574,"[\""Monitor\"", \""Wireless Mouse\""]",3866.97,"{\""seasonal\"": \""7%\""}",254142,0,"""Asia""" +2023-11-03,90420,3416,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3909.16,{},260896,1,"""North America""" +2023-10-28,90421,3985,"[\""Wireless Mouse\""]",1762.87,{},18332,1,"""North America""" +2023-12-01,90422,2029,"[\""Monitor\""]",3277.0,{},252293,0,"""South America""" +2024-07-11,90423,3131,"[\""Headphones\""]",4998.32,"{\""loyalty\"": \""30%\""}",124018,0,"""North America""" +2024-10-09,90424,921,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",1350.78,{},270909,1,"""Europe""" +2024-01-21,90425,5730,"[\""Charger\""]",3672.83,{},275509,1,"""Europe""" +2024-10-31,90426,8504,"[\""Wireless Mouse\""]",1295.37,"{\""seasonal\"": \""13%\""}",119529,1,"""North America""" +2024-02-14,90427,9890,"[\""Tablet\"", \""Keyboard\""]",982.73,{},88702,1,"""Europe""" +2024-05-16,90428,9245,"[\""Headphones\"", \""Laptop\""]",2487.05,{},4856,1,"""Africa""" +2024-07-01,90429,1854,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4361.77,{},198110,0,"""Europe""" +2023-08-30,90430,8545,"[\""Phone\""]",4911.8,"{\""promo\"": \""13%\""}",273400,1,"""North America""" +2023-04-16,90431,6254,"[\""Phone\"", \""Keyboard\""]",4327.41,{},240964,1,"""Asia""" +2024-06-16,90432,2720,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3169.34,"{\"": \""12%\""}",295981,1,"""Europe""" +2023-11-17,90433,7145,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1805.71,"{\""loyalty\"": \""18%\""}",165510,0,"""Europe""" +2024-06-08,90434,485,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3450.4,"{\""loyalty\"": \""21%\""}",272016,0,"""Africa""" +2024-10-13,90435,247,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",94.39,"{\"": \""12%\""}",21953,0,"""Europe""" +2024-01-20,90436,9944,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2169.86,{},175212,0,"""South America""" +2024-11-23,90437,2170,"[\""Phone\"", \""Keyboard\""]",2591.49,{},82326,0,"""Asia""" +2024-04-30,90438,5207,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4970.86,{},101417,1,"""Asia""" +2023-04-26,90439,7127,"[\""Keyboard\"", \""Headphones\""]",3560.11,{},64904,1,"""South America""" +2024-06-08,90440,9469,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",861.04,{},66396,1,"""Africa""" +2024-07-04,90441,6167,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1608.21,"{\""promo\"": \""17%\""}",54261,0,"""Asia""" +2024-02-11,90442,5887,"[\""Phone\""]",485.96,{},95559,1,"""Europe""" +2023-10-19,90443,7122,"[\""Keyboard\""]",3173.16,{},257049,1,"""North America""" +2023-01-31,90444,8168,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2388.24,"{\""promo\"": \""25%\""}",45309,0,"""Africa""" +2023-10-12,90445,4535,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",248.67,{},259191,1,"""Asia""" +2024-02-21,90446,3451,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",4522.03,{},263319,0,"""South America""" +2023-06-13,90447,4338,"[\""Charger\"", \""Laptop\""]",4898.54,"{\""promo\"": \""6%\""}",299539,1,"""South America""" +2024-11-07,90448,3024,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1580.13,{},99196,1,"""Asia""" +2023-07-24,90449,3260,"[\""Charger\"", \""Laptop\""]",1522.02,"{\""seasonal\"": \""24%\""}",72600,1,"""North America""" +2023-08-15,90450,4537,"[\""Wireless Mouse\""]",2937.93,{},6283,1,"""South America""" +2024-01-09,90451,2036,"[\""Phone\"", \""Monitor\""]",81.83,"{\"": \""21%\""}",148889,0,"""Europe""" +2023-05-14,90452,1319,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1802.98,"{\"": \""22%\""}",177924,0,"""Asia""" +2023-09-30,90453,3825,"[\""Laptop\"", \""Charger\""]",1485.5,"{\""promo\"": \""9%\""}",155165,0,"""Europe""" +2024-10-14,90454,7079,"[\""Charger\""]",300.24,"{\""seasonal\"": \""10%\""}",138813,1,"""Europe""" +2023-09-29,90455,3488,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3988.63,"{\""promo\"": \""23%\""}",1160,1,"""North America""" +2024-01-31,90456,7953,"[\""Laptop\"", \""Charger\""]",1819.74,"{\""seasonal\"": \""25%\""}",153666,0,"""South America""" +2023-03-20,90457,5785,"[\""Charger\"", \""Tablet\""]",1698.33,{},291350,0,"""Europe""" +2023-02-16,90458,124,"[\""Laptop\"", \""Charger\""]",4567.14,"{\"": \""27%\""}",227304,0,"""Europe""" +2024-03-31,90459,1916,"[\""Wireless Mouse\"", \""Keyboard\""]",2145.54,{},181805,1,"""Africa""" +2023-02-01,90460,1399,"[\""Monitor\"", \""Laptop\""]",2770.38,{},10014,0,"""Africa""" +2023-06-08,90461,1090,"[\""Phone\""]",2091.55,"{\""promo\"": \""22%\""}",51272,1,"""North America""" +2023-09-23,90462,9886,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2810.3,"{\""promo\"": \""24%\""}",172340,0,"""South America""" +2024-09-25,90463,2160,"[\""Phone\""]",1204.36,{},53581,1,"""South America""" +2023-09-24,90464,6851,"[\""Monitor\""]",2993.44,{},52743,0,"""Asia""" +2024-03-05,90465,3174,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3526.77,{},113098,0,"""Asia""" +2023-12-11,90466,2811,"[\""Laptop\"", \""Tablet\""]",318.78,{},11325,0,"""North America""" +2024-05-14,90467,7582,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",350.55,"{\""loyalty\"": \""5%\""}",82600,0,"""South America""" +2023-06-17,90468,5716,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3211.98,"{\""promo\"": \""5%\""}",128537,0,"""South America""" +2023-11-22,90469,5821,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1218.76,"{\""loyalty\"": \""27%\""}",211333,1,"""Europe""" +2024-07-06,90470,4105,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",1470.2,"{\""promo\"": \""8%\""}",187135,1,"""North America""" +2024-07-22,90471,890,"[\""Keyboard\""]",3922.23,{},270240,0,"""Europe""" +2024-08-28,90472,3685,"[\""Monitor\""]",2138.53,"{\""seasonal\"": \""13%\""}",14016,0,"""Africa""" +2023-07-22,90473,8159,"[\""Laptop\"", \""Charger\""]",1881.8,{},68149,1,"""Asia""" +2024-10-12,90474,6749,"[\""Phone\"", \""Charger\""]",1474.12,"{\""promo\"": \""11%\""}",36269,0,"""South America""" +2024-11-03,90475,4067,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2621.51,{},39805,0,"""North America""" +2024-09-09,90476,4735,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4406.4,"{\""loyalty\"": \""13%\""}",50732,1,"""Asia""" +2023-08-23,90477,531,"[\""Headphones\""]",2524.8,{},161780,0,"""Asia""" +2024-03-03,90478,2886,"[\""Keyboard\""]",242.03,{},156565,0,"""Africa""" +2024-05-15,90479,9978,"[\""Charger\""]",3993.96,{},290338,1,"""Europe""" +2023-08-09,90480,8461,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1755.79,"{\""promo\"": \""8%\""}",84214,1,"""Africa""" +2023-10-06,90481,3255,"[\""Phone\"", \""Headphones\""]",982.41,"{\""loyalty\"": \""25%\""}",269352,1,"""Europe""" +2023-12-08,90482,4683,"[\""Headphones\""]",1058.33,"{\""loyalty\"": \""28%\""}",78625,1,"""Europe""" +2023-11-22,90483,6038,"[\""Headphones\"", \""Laptop\""]",2327.82,"{\""promo\"": \""30%\""}",106529,1,"""Africa""" +2023-07-11,90484,2431,"[\""Charger\""]",1089.19,"{\"": \""29%\""}",160847,1,"""Asia""" +2023-09-12,90485,3572,"[\""Laptop\"", \""Wireless Mouse\""]",4296.98,"{\""promo\"": \""13%\""}",250918,0,"""Africa""" +2024-02-07,90486,8774,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2563.73,"{\"": \""14%\""}",39279,0,"""South America""" +2024-01-12,90487,8202,"[\""Tablet\"", \""Laptop\""]",1336.15,{},54113,0,"""Asia""" +2024-01-04,90488,368,"[\""Phone\""]",3114.34,"{\""seasonal\"": \""23%\""}",261880,0,"""Africa""" +2024-04-07,90489,4702,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4833.65,"{\""promo\"": \""9%\""}",291554,1,"""Africa""" +2024-07-08,90490,5870,"[\""Charger\""]",888.08,"{\""loyalty\"": \""28%\""}",213753,0,"""South America""" +2023-12-29,90491,8518,"[\""Keyboard\"", \""Wireless Mouse\""]",408.12,{},227620,1,"""Africa""" +2023-10-05,90492,7942,"[\""Headphones\""]",4840.15,{},176459,0,"""Asia""" +2024-07-04,90493,3271,"[\""Laptop\"", \""Wireless Mouse\""]",1969.04,"{\"": \""6%\""}",213007,1,"""Africa""" +2023-09-18,90494,7641,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3393.45,"{\""promo\"": \""19%\""}",271133,1,"""Africa""" +2024-01-12,90495,7730,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3320.6,"{\""promo\"": \""23%\""}",14855,1,"""South America""" +2024-08-25,90496,3711,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4300.43,{},233587,0,"""Asia""" +2023-02-27,90497,2246,"[\""Keyboard\""]",2378.02,"{\""loyalty\"": \""23%\""}",160520,0,"""Africa""" +2023-10-05,90498,6844,"[\""Tablet\"", \""Wireless Mouse\""]",2507.4,{},186959,0,"""North America""" +2024-10-08,90499,75,"[\""Charger\"", \""Tablet\""]",598.58,{},49646,1,"""Europe""" +2023-07-30,90500,4604,"[\""Monitor\""]",3435.56,"{\""loyalty\"": \""7%\""}",192285,0,"""North America""" +2024-02-08,90501,7824,"[\""Charger\""]",3308.51,{},93792,0,"""Africa""" +2024-10-01,90502,7684,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1211.3,"{\""loyalty\"": \""25%\""}",259405,0,"""Europe""" +2024-08-05,90503,8443,"[\""Tablet\""]",4265.04,{},72009,0,"""Asia""" +2023-11-15,90504,112,"[\""Phone\"", \""Monitor\""]",3410.42,{},112041,1,"""North America""" +2023-04-29,90505,6929,"[\""Laptop\""]",218.39,{},237893,1,"""Europe""" +2023-06-08,90506,7768,"[\""Headphones\""]",762.93,{},292754,1,"""Europe""" +2024-03-14,90507,1392,"[\""Laptop\"", \""Keyboard\""]",4093.85,"{\"": \""26%\""}",286734,1,"""Africa""" +2024-03-12,90508,787,"[\""Charger\""]",3657.46,"{\""loyalty\"": \""24%\""}",185019,0,"""Africa""" +2024-11-02,90509,8385,"[\""Headphones\""]",4296.76,{},123505,0,"""South America""" +2024-10-16,90510,6849,"[\""Laptop\"", \""Monitor\""]",4476.96,{},228568,1,"""Africa""" +2023-01-30,90511,4937,"[\""Keyboard\"", \""Charger\""]",665.23,"{\""seasonal\"": \""7%\""}",84951,0,"""North America""" +2024-03-30,90512,3384,"[\""Phone\""]",2089.12,"{\""promo\"": \""26%\""}",291117,1,"""North America""" +2023-04-15,90513,6534,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4607.25,"{\""seasonal\"": \""7%\""}",139950,0,"""North America""" +2024-09-09,90514,9431,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3471.25,{},82631,0,"""Asia""" +2024-04-01,90515,3738,"[\""Phone\""]",223.76,"{\""promo\"": \""17%\""}",270856,1,"""Asia""" +2023-06-10,90516,1446,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4210.61,{},25638,1,"""South America""" +2023-03-12,90517,9958,"[\""Phone\"", \""Charger\""]",429.41,"{\"": \""5%\""}",127138,1,"""Asia""" +2024-10-07,90518,748,"[\""Laptop\"", \""Wireless Mouse\""]",4012.64,"{\"": \""23%\""}",262483,1,"""South America""" +2023-09-29,90519,5231,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",616.7,{},3771,0,"""Asia""" +2023-07-26,90520,6440,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1955.77,{},214184,1,"""South America""" +2023-07-25,90521,5886,"[\""Charger\"", \""Phone\""]",4441.6,{},140370,0,"""South America""" +2024-10-05,90522,5229,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",807.64,"{\"": \""8%\""}",50343,0,"""Asia""" +2024-06-21,90523,6011,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3838.45,{},112653,0,"""Europe""" +2024-10-17,90524,4686,"[\""Keyboard\"", \""Tablet\""]",4826.41,"{\""loyalty\"": \""27%\""}",55173,0,"""Europe""" +2024-02-19,90525,3861,"[\""Wireless Mouse\""]",877.36,"{\""promo\"": \""25%\""}",184324,0,"""Asia""" +2024-10-20,90526,3174,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4779.06,{},5660,0,"""Europe""" +2024-11-26,90527,2150,"[\""Charger\"", \""Headphones\""]",4105.57,"{\""promo\"": \""18%\""}",245335,0,"""Europe""" +2023-06-10,90528,1468,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2424.02,"{\""seasonal\"": \""25%\""}",35065,1,"""South America""" +2023-08-24,90529,4634,"[\""Monitor\"", \""Headphones\""]",2671.51,"{\"": \""29%\""}",167424,0,"""Europe""" +2024-10-02,90530,4478,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",3542.95,{},157290,1,"""North America""" +2023-03-25,90531,2238,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",602.37,"{\"": \""21%\""}",16518,1,"""North America""" +2024-12-10,90532,3649,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4465.33,{},220703,1,"""North America""" +2023-04-14,90533,3346,"[\""Monitor\""]",84.61,"{\""loyalty\"": \""29%\""}",21987,1,"""Europe""" +2023-08-01,90534,1290,"[\""Monitor\""]",964.06,{},50953,1,"""Asia""" +2024-05-22,90535,756,"[\""Monitor\"", \""Laptop\""]",559.68,{},38877,1,"""North America""" +2024-08-29,90536,9669,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1160.43,"{\""seasonal\"": \""26%\""}",65759,0,"""South America""" +2023-12-18,90537,531,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2449.09,"{\""seasonal\"": \""17%\""}",207598,0,"""Asia""" +2024-11-08,90538,4257,"[\""Phone\""]",1214.72,"{\""loyalty\"": \""12%\""}",91905,1,"""Africa""" +2023-05-29,90539,717,"[\""Tablet\""]",3694.38,{},48064,0,"""Africa""" +2023-04-19,90540,9722,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",61.04,{},76369,1,"""South America""" +2024-08-09,90541,9452,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1319.42,"{\""promo\"": \""21%\""}",23045,1,"""Africa""" +2023-10-15,90542,3921,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2606.32,"{\"": \""27%\""}",52588,1,"""North America""" +2024-09-01,90543,7039,"[\""Tablet\""]",3182.62,{},208265,0,"""Europe""" +2024-11-05,90544,1836,"[\""Laptop\""]",1321.0,"{\""seasonal\"": \""6%\""}",268962,1,"""Africa""" +2024-07-17,90545,5632,"[\""Laptop\"", \""Charger\"", \""Phone\""]",3002.4,"{\""loyalty\"": \""15%\""}",223644,0,"""North America""" +2024-11-04,90546,6818,"[\""Wireless Mouse\"", \""Monitor\""]",1208.6,"{\""loyalty\"": \""15%\""}",246496,0,"""North America""" +2024-04-25,90547,7185,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",214.11,{},61414,0,"""Europe""" +2024-03-01,90548,3318,"[\""Keyboard\"", \""Monitor\""]",2125.06,{},80916,0,"""North America""" +2023-08-19,90549,8047,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2895.41,{},273523,1,"""North America""" +2023-04-17,90550,5324,"[\""Phone\""]",2043.7,"{\""loyalty\"": \""16%\""}",140187,1,"""Africa""" +2023-09-16,90551,145,"[\""Charger\""]",3700.57,{},42522,0,"""Europe""" +2024-09-01,90552,8754,"[\""Laptop\""]",1368.54,{},98118,1,"""North America""" +2024-05-15,90553,6215,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",1524.48,{},155369,0,"""Africa""" +2024-01-01,90554,1137,"[\""Charger\""]",555.34,{},94365,0,"""South America""" +2023-07-21,90555,9345,"[\""Laptop\""]",1463.47,"{\""seasonal\"": \""12%\""}",170814,1,"""Europe""" +2024-05-02,90556,6164,"[\""Keyboard\"", \""Headphones\""]",647.46,{},277980,0,"""North America""" +2024-09-01,90557,6559,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4358.21,{},11363,1,"""South America""" +2023-04-18,90558,3497,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3539.54,"{\""promo\"": \""6%\""}",24391,0,"""Asia""" +2023-05-21,90559,2164,"[\""Monitor\"", \""Headphones\""]",2857.48,{},183327,1,"""Asia""" +2024-08-07,90560,7078,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1985.02,{},253915,1,"""North America""" +2023-02-18,90561,4256,"[\""Charger\""]",4134.05,"{\"": \""19%\""}",229508,1,"""Africa""" +2023-02-07,90562,6480,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4504.05,{},223859,1,"""Europe""" +2023-09-13,90563,4713,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4790.82,"{\""seasonal\"": \""24%\""}",96130,1,"""Europe""" +2024-01-13,90564,748,"[\""Headphones\"", \""Monitor\""]",1400.31,"{\""seasonal\"": \""14%\""}",194894,1,"""Africa""" +2023-05-23,90565,4016,"[\""Keyboard\""]",4109.55,"{\""promo\"": \""6%\""}",100525,1,"""North America""" +2023-02-19,90566,4122,"[\""Tablet\""]",4791.7,{},241861,0,"""Asia""" +2024-11-24,90567,730,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1580.77,"{\""seasonal\"": \""15%\""}",265155,0,"""North America""" +2023-04-24,90568,7221,"[\""Phone\"", \""Tablet\""]",929.73,{},197249,1,"""Europe""" +2024-02-19,90569,4892,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3651.42,"{\""loyalty\"": \""14%\""}",293667,0,"""Africa""" +2024-04-04,90570,3434,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1702.51,"{\""loyalty\"": \""10%\""}",221069,1,"""Asia""" +2024-07-23,90571,7440,"[\""Keyboard\""]",2469.15,{},58034,0,"""Africa""" +2024-07-18,90572,3287,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2041.21,{},29577,0,"""Asia""" +2023-09-18,90573,9121,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2099.55,"{\""loyalty\"": \""14%\""}",106666,0,"""Africa""" +2024-06-23,90574,8212,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3050.52,"{\"": \""5%\""}",139941,1,"""Africa""" +2023-08-03,90575,3174,"[\""Tablet\""]",3504.63,"{\""seasonal\"": \""9%\""}",271192,1,"""South America""" +2023-08-08,90576,4705,"[\""Wireless Mouse\""]",3095.06,{},190279,0,"""Europe""" +2023-07-08,90577,2939,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4711.93,"{\""loyalty\"": \""29%\""}",121700,0,"""South America""" +2024-02-26,90578,4054,"[\""Keyboard\"", \""Tablet\""]",1940.36,{},151679,1,"""Africa""" +2023-02-03,90579,2494,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",200.63,"{\""loyalty\"": \""8%\""}",148231,1,"""Africa""" +2023-12-18,90580,8949,"[\""Headphones\"", \""Charger\""]",4112.09,"{\""loyalty\"": \""18%\""}",210268,0,"""Africa""" +2024-06-10,90581,5949,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",96.97,{},196454,0,"""Africa""" +2023-07-14,90582,4368,"[\""Charger\"", \""Wireless Mouse\""]",1900.55,"{\""seasonal\"": \""24%\""}",13381,1,"""Africa""" +2024-12-21,90583,6583,"[\""Phone\""]",2173.59,"{\""loyalty\"": \""28%\""}",4821,0,"""Africa""" +2023-12-21,90584,9021,"[\""Phone\"", \""Charger\""]",1798.91,{},82259,0,"""North America""" +2023-01-20,90585,3643,"[\""Tablet\"", \""Keyboard\""]",561.8,"{\"": \""16%\""}",236270,1,"""Europe""" +2023-01-19,90586,4829,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",684.06,"{\""loyalty\"": \""12%\""}",56009,0,"""North America""" +2023-04-01,90587,8618,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1217.51,"{\""seasonal\"": \""23%\""}",127720,0,"""South America""" +2023-10-07,90588,4932,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2009.98,{},50648,0,"""Europe""" +2023-11-12,90589,4854,"[\""Headphones\""]",3018.41,{},274194,1,"""Europe""" +2023-07-13,90590,3102,"[\""Wireless Mouse\""]",576.54,{},249687,1,"""Asia""" +2024-01-12,90591,1401,"[\""Headphones\""]",2144.83,"{\""loyalty\"": \""15%\""}",225290,1,"""Africa""" +2023-12-09,90592,3232,"[\""Tablet\""]",4070.77,{},226354,1,"""Africa""" +2024-01-09,90593,1590,"[\""Laptop\"", \""Tablet\""]",4986.12,"{\""loyalty\"": \""18%\""}",163603,1,"""South America""" +2024-08-12,90594,7799,"[\""Monitor\""]",516.12,{},272336,1,"""North America""" +2024-01-30,90595,2764,"[\""Phone\"", \""Keyboard\""]",3193.71,{},134353,0,"""Europe""" +2023-06-12,90596,9194,"[\""Laptop\""]",2716.66,"{\""promo\"": \""29%\""}",108735,0,"""Africa""" +2024-11-10,90597,9509,"[\""Monitor\"", \""Phone\""]",2015.39,{},34520,0,"""South America""" +2023-09-19,90598,2619,"[\""Laptop\""]",531.21,{},149957,0,"""Europe""" +2023-04-30,90599,4898,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1197.31,"{\""seasonal\"": \""17%\""}",108404,0,"""Asia""" +2024-01-20,90600,1164,"[\""Laptop\""]",2062.42,"{\""promo\"": \""20%\""}",128898,0,"""Africa""" +2023-10-18,90601,9721,"[\""Phone\"", \""Wireless Mouse\""]",3525.18,{},272080,1,"""Africa""" +2024-04-23,90602,1402,"[\""Wireless Mouse\"", \""Keyboard\""]",1329.73,{},13649,0,"""North America""" +2023-05-04,90603,8490,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",4473.98,"{\"": \""26%\""}",296551,0,"""Europe""" +2023-01-30,90604,3272,"[\""Headphones\""]",1589.57,{},42189,0,"""Africa""" +2024-08-09,90605,278,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1252.42,{},256458,0,"""North America""" +2024-08-04,90606,2895,"[\""Monitor\"", \""Charger\""]",2331.98,"{\""seasonal\"": \""15%\""}",290044,0,"""South America""" +2024-03-07,90607,2659,"[\""Keyboard\""]",3954.2,{},188655,1,"""Africa""" +2024-10-22,90608,6480,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",2153.64,{},248410,0,"""Europe""" +2023-07-22,90609,8149,"[\""Wireless Mouse\"", \""Monitor\""]",3239.31,{},91028,0,"""South America""" +2024-12-07,90610,4157,"[\""Monitor\"", \""Keyboard\""]",1921.41,{},161993,0,"""North America""" +2024-04-30,90611,537,"[\""Monitor\"", \""Keyboard\""]",3724.9,{},95756,1,"""Asia""" +2024-04-22,90612,6022,"[\""Wireless Mouse\""]",845.88,{},180147,1,"""Africa""" +2023-05-08,90613,3162,"[\""Phone\""]",2149.75,{},199201,0,"""South America""" +2024-12-21,90614,5961,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",775.29,"{\""loyalty\"": \""24%\""}",223330,0,"""Asia""" +2023-09-30,90615,3398,"[\""Keyboard\""]",3601.95,"{\""seasonal\"": \""14%\""}",99974,1,"""Europe""" +2024-12-10,90616,1158,"[\""Keyboard\""]",423.76,"{\"": \""6%\""}",152095,0,"""North America""" +2023-04-12,90617,74,"[\""Laptop\"", \""Monitor\""]",1137.76,{},248781,1,"""South America""" +2024-12-04,90618,1873,"[\""Wireless Mouse\"", \""Tablet\""]",166.44,"{\""seasonal\"": \""6%\""}",184540,0,"""South America""" +2023-12-10,90619,6310,"[\""Charger\"", \""Monitor\""]",1383.63,{},289257,0,"""South America""" +2024-04-21,90620,2062,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3445.27,"{\""seasonal\"": \""11%\""}",2888,0,"""North America""" +2024-09-17,90621,7708,"[\""Headphones\"", \""Laptop\""]",233.68,"{\""seasonal\"": \""20%\""}",126819,0,"""Europe""" +2024-03-14,90622,8123,"[\""Charger\""]",4323.41,"{\"": \""8%\""}",97666,1,"""Europe""" +2024-02-02,90623,6887,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4766.81,{},108181,1,"""South America""" +2024-10-16,90624,1401,"[\""Keyboard\"", \""Headphones\""]",829.8,"{\""seasonal\"": \""23%\""}",13669,1,"""Europe""" +2023-01-19,90625,6562,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",177.54,"{\""promo\"": \""15%\""}",82788,0,"""Europe""" +2023-05-31,90626,9365,"[\""Tablet\""]",1609.15,{},152587,1,"""Africa""" +2023-11-12,90627,648,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1064.98,{},96633,0,"""Europe""" +2024-05-26,90628,5515,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1589.36,{},117418,1,"""Africa""" +2023-10-10,90629,5579,"[\""Laptop\"", \""Charger\""]",1601.06,{},294484,1,"""North America""" +2023-01-06,90630,9986,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3090.28,"{\""promo\"": \""24%\""}",229549,1,"""South America""" +2024-10-04,90631,9712,"[\""Phone\""]",4867.39,{},56630,1,"""Africa""" +2024-02-22,90632,2436,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",567.8,"{\""seasonal\"": \""10%\""}",157899,1,"""North America""" +2024-04-21,90633,2621,"[\""Charger\"", \""Monitor\""]",3462.94,"{\"": \""18%\""}",250802,0,"""South America""" +2024-03-24,90634,1791,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2273.05,"{\""seasonal\"": \""30%\""}",77554,0,"""Africa""" +2023-08-14,90635,7570,"[\""Laptop\"", \""Keyboard\""]",3227.84,{},286887,1,"""Asia""" +2024-06-09,90636,5874,"[\""Headphones\""]",1517.55,{},222093,0,"""South America""" +2024-10-25,90637,6757,"[\""Headphones\""]",4502.82,{},157056,0,"""Africa""" +2024-10-06,90638,1811,"[\""Laptop\"", \""Tablet\""]",3557.23,"{\"": \""23%\""}",237374,1,"""North America""" +2023-11-12,90639,968,"[\""Laptop\""]",4420.2,"{\"": \""15%\""}",296210,1,"""Africa""" +2024-03-05,90640,6350,"[\""Wireless Mouse\"", \""Headphones\""]",2137.66,"{\"": \""30%\""}",189183,0,"""North America""" +2024-03-14,90641,7608,"[\""Monitor\"", \""Keyboard\""]",419.7,"{\""loyalty\"": \""26%\""}",264796,0,"""Asia""" +2024-01-19,90642,6291,"[\""Laptop\""]",1458.78,"{\""promo\"": \""9%\""}",125458,0,"""Europe""" +2023-04-04,90643,2089,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3377.14,{},237818,1,"""North America""" +2023-03-24,90644,1807,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1410.08,{},247734,1,"""Africa""" +2024-02-13,90645,5788,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",1894.66,"{\""loyalty\"": \""15%\""}",234541,1,"""South America""" +2023-05-05,90646,1284,"[\""Headphones\""]",416.51,{},183118,1,"""South America""" +2023-09-14,90647,3229,"[\""Headphones\"", \""Keyboard\""]",1558.69,"{\""seasonal\"": \""24%\""}",40912,1,"""Africa""" +2024-07-27,90648,1006,"[\""Tablet\""]",4280.04,"{\""loyalty\"": \""21%\""}",119690,1,"""Europe""" +2024-07-03,90649,4845,"[\""Monitor\""]",1735.57,{},27673,0,"""South America""" +2023-09-01,90650,405,"[\""Phone\"", \""Wireless Mouse\""]",354.5,"{\"": \""15%\""}",65400,0,"""Asia""" +2023-01-27,90651,998,"[\""Keyboard\"", \""Wireless Mouse\""]",2939.09,{},258117,1,"""Africa""" +2024-07-05,90652,6183,"[\""Charger\""]",3409.68,"{\""promo\"": \""5%\""}",78533,0,"""Asia""" +2023-10-05,90653,5685,"[\""Phone\"", \""Charger\""]",1854.85,{},290080,1,"""South America""" +2024-10-22,90654,1387,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3004.05,"{\"": \""20%\""}",261615,0,"""South America""" +2024-10-14,90655,7863,"[\""Laptop\"", \""Tablet\""]",659.54,{},283543,1,"""Asia""" +2024-12-05,90656,4924,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4261.19,"{\""seasonal\"": \""9%\""}",49091,0,"""Africa""" +2023-09-08,90657,4094,"[\""Headphones\""]",1332.4,{},201098,0,"""Africa""" +2024-05-25,90658,290,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2390.1,{},175628,1,"""Asia""" +2023-12-11,90659,8630,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",610.17,"{\""promo\"": \""5%\""}",106745,0,"""Asia""" +2024-06-09,90660,7427,"[\""Monitor\"", \""Tablet\""]",3957.99,{},272760,1,"""North America""" +2024-09-05,90661,1163,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2371.7,"{\""seasonal\"": \""8%\""}",85944,1,"""South America""" +2024-06-16,90662,8366,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",1881.81,{},277158,0,"""Europe""" +2023-04-18,90663,9577,"[\""Monitor\"", \""Keyboard\""]",3062.27,"{\""seasonal\"": \""5%\""}",174655,0,"""Asia""" +2024-05-25,90664,2309,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",541.19,"{\"": \""20%\""}",297803,0,"""South America""" +2023-11-30,90665,9880,"[\""Wireless Mouse\""]",1839.62,"{\""promo\"": \""17%\""}",202863,1,"""Asia""" +2023-01-22,90666,6913,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1795.65,{},279892,1,"""Europe""" +2023-04-27,90667,5018,"[\""Headphones\"", \""Monitor\""]",2263.88,"{\""loyalty\"": \""10%\""}",262458,1,"""Europe""" +2023-09-03,90668,1486,"[\""Charger\"", \""Headphones\""]",3075.27,{},248475,1,"""Africa""" +2023-12-18,90669,5222,"[\""Wireless Mouse\""]",1161.54,{},272801,0,"""South America""" +2023-06-25,90670,8947,"[\""Charger\"", \""Tablet\""]",1552.82,{},12553,1,"""Europe""" +2024-04-30,90671,4348,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3489.07,"{\"": \""14%\""}",199582,0,"""Asia""" +2023-01-12,90672,2976,"[\""Headphones\"", \""Phone\""]",4820.49,{},183129,1,"""Europe""" +2023-05-26,90673,1777,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1907.48,{},21809,0,"""Asia""" +2024-05-12,90674,1487,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1908.95,{},147700,0,"""South America""" +2024-01-04,90675,4226,"[\""Keyboard\""]",4770.98,"{\""promo\"": \""23%\""}",221766,1,"""Africa""" +2023-11-15,90676,1873,"[\""Monitor\"", \""Charger\""]",2599.74,{},45864,1,"""Europe""" +2023-01-28,90677,7534,"[\""Wireless Mouse\""]",3074.04,"{\""loyalty\"": \""17%\""}",12643,1,"""Asia""" +2023-02-03,90678,6941,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3015.58,"{\""loyalty\"": \""16%\""}",117827,0,"""South America""" +2023-08-28,90679,5819,"[\""Monitor\"", \""Tablet\""]",4562.35,"{\""loyalty\"": \""27%\""}",56472,1,"""Europe""" +2023-04-27,90680,8026,"[\""Phone\"", \""Charger\""]",2133.46,{},270729,1,"""South America""" +2023-10-20,90681,3449,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1494.15,{},15655,0,"""Africa""" +2024-09-10,90682,9915,"[\""Wireless Mouse\""]",2237.49,{},211568,1,"""Europe""" +2024-06-17,90683,4893,"[\""Phone\"", \""Keyboard\""]",52.1,"{\""loyalty\"": \""14%\""}",7748,1,"""Europe""" +2024-09-16,90684,8488,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2209.86,"{\""loyalty\"": \""24%\""}",17281,0,"""North America""" +2023-08-19,90685,9919,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",2957.51,{},222945,1,"""North America""" +2024-06-23,90686,7603,"[\""Tablet\""]",1885.48,{},223466,1,"""North America""" +2024-10-22,90687,5771,"[\""Headphones\""]",774.75,{},106155,0,"""South America""" +2023-05-27,90688,8427,"[\""Wireless Mouse\"", \""Laptop\""]",4964.03,{},173069,1,"""South America""" +2024-06-18,90689,7957,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4361.97,"{\""promo\"": \""15%\""}",243151,1,"""Europe""" +2024-11-05,90690,2362,"[\""Wireless Mouse\"", \""Headphones\""]",1944.91,{},229827,0,"""Europe""" +2023-02-18,90691,9860,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",487.21,"{\""promo\"": \""12%\""}",211336,1,"""Europe""" +2023-07-19,90692,6238,"[\""Tablet\""]",2787.16,{},84084,0,"""Asia""" +2024-08-11,90693,4068,"[\""Wireless Mouse\""]",1015.89,"{\""loyalty\"": \""11%\""}",217938,0,"""South America""" +2024-10-04,90694,8422,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3876.3,{},271173,1,"""South America""" +2024-06-30,90695,6932,"[\""Keyboard\""]",2012.43,{},265297,0,"""South America""" +2024-05-29,90696,6256,"[\""Headphones\"", \""Tablet\""]",134.36,"{\""promo\"": \""27%\""}",279532,0,"""Europe""" +2024-10-07,90697,1184,"[\""Charger\""]",3016.32,"{\""promo\"": \""13%\""}",116487,1,"""Asia""" +2024-06-26,90698,1066,"[\""Tablet\""]",4701.51,"{\"": \""23%\""}",212260,0,"""South America""" +2024-03-22,90699,8115,"[\""Phone\""]",887.05,{},205755,1,"""Africa""" +2023-12-04,90700,785,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3699.05,"{\""promo\"": \""24%\""}",81638,0,"""Asia""" +2023-05-09,90701,6217,"[\""Phone\""]",2377.74,"{\""promo\"": \""22%\""}",199108,0,"""South America""" +2023-03-20,90702,2275,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1602.68,"{\"": \""7%\""}",95400,1,"""Europe""" +2023-03-19,90703,1180,"[\""Phone\"", \""Charger\"", \""Tablet\""]",4390.89,"{\""loyalty\"": \""18%\""}",74761,0,"""South America""" +2023-05-09,90704,7015,"[\""Keyboard\"", \""Laptop\""]",541.17,{},132726,1,"""South America""" +2024-10-22,90705,3424,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3948.5,{},158598,1,"""Europe""" +2023-09-08,90706,8670,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",1758.59,{},162862,1,"""Europe""" +2024-10-23,90707,5237,"[\""Headphones\"", \""Wireless Mouse\""]",2068.06,{},192732,0,"""North America""" +2023-07-18,90708,6898,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4138.34,{},131870,1,"""Asia""" +2024-01-29,90709,6110,"[\""Phone\""]",1062.37,{},292513,1,"""Europe""" +2024-08-07,90710,6671,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2326.0,{},124220,0,"""Europe""" +2024-06-04,90711,108,"[\""Tablet\""]",3411.23,"{\""seasonal\"": \""13%\""}",269240,0,"""Africa""" +2023-11-16,90712,3235,"[\""Tablet\""]",4448.38,"{\""seasonal\"": \""27%\""}",249901,1,"""Europe""" +2024-01-30,90713,2599,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1244.74,"{\""seasonal\"": \""5%\""}",271614,0,"""Asia""" +2024-04-08,90714,9604,"[\""Phone\""]",3160.72,{},275314,1,"""South America""" +2024-05-20,90715,1381,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",306.72,{},248156,1,"""Asia""" +2024-04-12,90716,688,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4240.88,"{\""loyalty\"": \""19%\""}",242913,0,"""Africa""" +2024-10-11,90717,8895,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1036.93,"{\""loyalty\"": \""8%\""}",78112,0,"""South America""" +2024-11-22,90718,9487,"[\""Phone\"", \""Charger\""]",1741.37,"{\""loyalty\"": \""15%\""}",117470,1,"""Asia""" +2023-07-01,90719,1309,"[\""Headphones\"", \""Wireless Mouse\""]",97.23,{},75176,1,"""South America""" +2023-12-30,90720,283,"[\""Tablet\"", \""Headphones\""]",1415.1,{},121437,0,"""South America""" +2023-02-18,90721,1157,"[\""Keyboard\"", \""Phone\""]",3758.62,"{\""promo\"": \""27%\""}",270152,1,"""North America""" +2024-04-06,90722,5629,"[\""Wireless Mouse\""]",3123.3,{},26132,0,"""Asia""" +2023-05-08,90723,8435,"[\""Monitor\"", \""Phone\""]",1606.93,"{\""loyalty\"": \""10%\""}",109944,1,"""South America""" +2023-07-06,90724,6005,"[\""Phone\""]",1088.28,"{\""loyalty\"": \""29%\""}",23545,0,"""Africa""" +2023-04-08,90725,4527,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2369.71,"{\""loyalty\"": \""29%\""}",94154,1,"""Asia""" +2023-08-01,90726,6861,"[\""Phone\"", \""Wireless Mouse\""]",131.78,{},138033,1,"""Asia""" +2023-12-22,90727,4303,"[\""Headphones\""]",4382.2,"{\""loyalty\"": \""17%\""}",115431,1,"""North America""" +2023-05-29,90728,1235,"[\""Laptop\""]",3510.96,"{\""loyalty\"": \""21%\""}",36050,0,"""Europe""" +2024-01-06,90729,9405,"[\""Tablet\"", \""Headphones\""]",2425.29,"{\""seasonal\"": \""14%\""}",80990,1,"""North America""" +2024-11-13,90730,2828,"[\""Monitor\""]",535.06,{},151771,0,"""South America""" +2024-12-03,90731,3883,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",1306.75,"{\""promo\"": \""13%\""}",114867,0,"""North America""" +2024-08-22,90732,4274,"[\""Headphones\"", \""Phone\""]",2140.07,"{\""seasonal\"": \""14%\""}",247967,1,"""Asia""" +2024-01-31,90733,7130,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",274.71,{},224289,0,"""Africa""" +2023-10-15,90734,7310,"[\""Phone\"", \""Laptop\""]",2894.83,{},66509,0,"""Europe""" +2024-07-20,90735,8654,"[\""Phone\""]",189.51,{},239460,1,"""Asia""" +2024-10-14,90736,8745,"[\""Wireless Mouse\"", \""Monitor\""]",217.65,"{\""loyalty\"": \""8%\""}",20462,0,"""South America""" +2024-10-08,90737,7705,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",540.47,"{\"": \""23%\""}",242538,0,"""Europe""" +2023-01-29,90738,581,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4589.2,{},186325,1,"""Asia""" +2023-06-18,90739,2438,"[\""Monitor\"", \""Laptop\""]",4446.51,{},285939,1,"""Asia""" +2023-11-17,90740,3745,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2726.84,"{\""loyalty\"": \""11%\""}",242027,1,"""North America""" +2024-02-01,90741,9638,"[\""Headphones\"", \""Laptop\""]",2268.75,{},232460,1,"""North America""" +2024-09-09,90742,7873,"[\""Monitor\"", \""Charger\""]",1669.64,{},29785,1,"""Europe""" +2023-04-24,90743,1675,"[\""Keyboard\""]",3559.48,"{\"": \""16%\""}",21523,0,"""North America""" +2023-09-02,90744,6113,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4553.12,{},103448,0,"""Africa""" +2023-02-14,90745,6319,"[\""Monitor\"", \""Keyboard\""]",4609.05,{},298018,0,"""North America""" +2023-11-27,90746,9073,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4524.45,{},238762,1,"""North America""" +2024-12-10,90747,3201,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3360.05,{},255923,0,"""North America""" +2023-04-27,90748,6456,"[\""Keyboard\"", \""Headphones\""]",1161.38,"{\""seasonal\"": \""15%\""}",155256,0,"""North America""" +2024-01-11,90749,5274,"[\""Keyboard\"", \""Monitor\""]",3788.2,"{\""loyalty\"": \""12%\""}",57806,0,"""Africa""" +2024-11-23,90750,6225,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4828.74,"{\""seasonal\"": \""10%\""}",278928,0,"""Europe""" +2023-05-04,90751,9492,"[\""Keyboard\""]",2641.6,{},291444,0,"""South America""" +2023-08-17,90752,4002,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2244.85,{},232617,0,"""Asia""" +2024-04-11,90753,1028,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1066.46,{},197051,0,"""Africa""" +2024-02-15,90754,9707,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2378.29,{},195692,0,"""Africa""" +2023-03-06,90755,3847,"[\""Charger\"", \""Monitor\""]",1346.41,{},263452,0,"""North America""" +2023-08-25,90756,6218,"[\""Laptop\""]",2544.35,"{\""seasonal\"": \""20%\""}",116183,0,"""South America""" +2023-03-31,90757,6998,"[\""Wireless Mouse\"", \""Tablet\""]",3607.01,{},292837,0,"""Europe""" +2023-04-20,90758,1546,"[\""Wireless Mouse\""]",3980.54,{},241877,0,"""South America""" +2023-12-15,90759,9334,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",113.07,{},31365,1,"""North America""" +2024-03-03,90760,9780,"[\""Headphones\"", \""Phone\""]",1487.55,{},160627,1,"""North America""" +2024-04-12,90761,1021,"[\""Wireless Mouse\""]",2344.78,"{\""promo\"": \""28%\""}",247344,0,"""South America""" +2024-01-29,90762,2794,"[\""Laptop\"", \""Monitor\""]",654.47,{},84135,1,"""South America""" +2024-07-06,90763,8901,"[\""Keyboard\""]",2580.56,"{\"": \""13%\""}",263144,1,"""South America""" +2023-07-29,90764,1462,"[\""Headphones\""]",1512.2,{},246349,0,"""South America""" +2023-05-11,90765,3421,"[\""Charger\"", \""Phone\""]",3995.7,{},237985,1,"""Africa""" +2024-08-21,90766,6135,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2113.43,{},139425,1,"""Africa""" +2024-12-30,90767,8854,"[\""Headphones\"", \""Keyboard\""]",2340.33,{},165831,0,"""North America""" +2024-11-21,90768,194,"[\""Phone\"", \""Monitor\""]",1837.2,"{\""seasonal\"": \""8%\""}",16705,1,"""South America""" +2023-07-31,90769,6952,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1514.48,"{\""seasonal\"": \""17%\""}",261019,0,"""Asia""" +2023-07-16,90770,2373,"[\""Phone\"", \""Charger\""]",126.79,{},152580,0,"""North America""" +2024-10-04,90771,1327,"[\""Charger\""]",1759.49,"{\""seasonal\"": \""19%\""}",31346,0,"""Europe""" +2024-08-19,90772,5744,"[\""Headphones\""]",756.75,"{\"": \""21%\""}",252541,0,"""Europe""" +2024-05-08,90773,5145,"[\""Keyboard\"", \""Laptop\""]",3385.29,{},209554,0,"""Europe""" +2024-03-30,90774,2578,"[\""Charger\""]",1096.0,{},42731,1,"""Africa""" +2023-08-05,90775,2667,"[\""Wireless Mouse\""]",2916.25,{},167092,1,"""Africa""" +2023-01-27,90776,6635,"[\""Headphones\""]",375.25,"{\""loyalty\"": \""17%\""}",208425,1,"""South America""" +2024-12-27,90777,5420,"[\""Laptop\""]",238.55,{},20773,0,"""Asia""" +2024-01-17,90778,212,"[\""Charger\""]",4685.15,"{\""seasonal\"": \""11%\""}",113204,0,"""North America""" +2024-03-30,90779,7326,"[\""Headphones\""]",717.35,{},95483,0,"""South America""" +2023-02-27,90780,1172,"[\""Charger\"", \""Monitor\""]",1211.45,{},151758,0,"""Africa""" +2023-05-29,90781,9132,"[\""Charger\"", \""Headphones\""]",3296.95,{},167413,0,"""Africa""" +2024-04-04,90782,4397,"[\""Wireless Mouse\""]",3970.79,"{\""seasonal\"": \""19%\""}",275261,1,"""Africa""" +2023-12-07,90783,5936,"[\""Wireless Mouse\"", \""Charger\""]",4165.56,{},44427,0,"""Africa""" +2023-11-26,90784,6381,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3091.96,"{\"": \""13%\""}",138246,1,"""Asia""" +2023-10-28,90785,4293,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2367.41,{},227982,1,"""Asia""" +2023-09-06,90786,6929,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4227.78,"{\""seasonal\"": \""6%\""}",169141,0,"""Europe""" +2023-12-29,90787,6326,"[\""Charger\"", \""Keyboard\""]",2543.9,{},8777,1,"""South America""" +2023-05-06,90788,9743,"[\""Keyboard\""]",3235.41,{},55528,1,"""South America""" +2023-10-04,90789,2924,"[\""Keyboard\""]",509.01,{},298741,0,"""Africa""" +2024-11-04,90790,4966,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1280.18,"{\"": \""6%\""}",94168,1,"""Asia""" +2023-02-25,90791,1812,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2469.17,"{\"": \""30%\""}",246371,0,"""Europe""" +2024-01-17,90792,3163,"[\""Monitor\""]",2007.77,{},19785,0,"""South America""" +2023-01-18,90793,6386,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4375.27,{},93166,0,"""Europe""" +2023-04-27,90794,4483,"[\""Wireless Mouse\""]",3988.95,"{\""loyalty\"": \""22%\""}",138865,0,"""Africa""" +2023-05-24,90795,4486,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2443.23,{},272423,0,"""North America""" +2024-09-18,90796,3009,"[\""Headphones\""]",4433.52,{},89778,0,"""South America""" +2023-06-22,90797,6010,"[\""Tablet\"", \""Wireless Mouse\""]",1682.8,{},91251,1,"""Asia""" +2024-01-27,90798,9276,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",327.73,{},281716,1,"""Europe""" +2023-10-16,90799,5528,"[\""Tablet\"", \""Headphones\""]",389.85,"{\""promo\"": \""10%\""}",107659,0,"""Africa""" +2024-07-16,90800,6629,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1881.97,"{\"": \""13%\""}",194572,0,"""Asia""" +2023-04-25,90801,7858,"[\""Monitor\"", \""Headphones\""]",1338.26,"{\""loyalty\"": \""6%\""}",146854,1,"""Asia""" +2023-10-28,90802,8578,"[\""Tablet\""]",3393.06,{},100048,1,"""Africa""" +2024-09-22,90803,9678,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",116.15,{},110214,0,"""Asia""" +2023-10-24,90804,6350,"[\""Phone\""]",1525.18,"{\""promo\"": \""12%\""}",161907,0,"""South America""" +2024-10-04,90805,6478,"[\""Charger\"", \""Headphones\""]",604.82,{},127692,0,"""Asia""" +2023-10-14,90806,977,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2256.22,"{\""seasonal\"": \""14%\""}",142640,0,"""Africa""" +2024-09-26,90807,2553,"[\""Keyboard\""]",440.94,{},98491,0,"""Europe""" +2023-10-25,90808,7112,"[\""Monitor\""]",3204.53,"{\""promo\"": \""16%\""}",187432,1,"""Africa""" +2023-02-02,90809,632,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",580.75,"{\""seasonal\"": \""29%\""}",103732,1,"""North America""" +2024-05-29,90810,7366,"[\""Laptop\""]",4390.61,"{\""loyalty\"": \""27%\""}",171437,0,"""Africa""" +2024-06-12,90811,6636,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2014.3,{},129734,1,"""South America""" +2023-02-07,90812,1228,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2891.97,{},271396,1,"""Africa""" +2023-11-22,90813,528,"[\""Laptop\""]",1794.57,{},239566,1,"""Asia""" +2024-03-10,90814,3075,"[\""Phone\"", \""Headphones\""]",1966.92,{},257641,1,"""South America""" +2023-01-11,90815,9726,"[\""Phone\"", \""Laptop\""]",3674.04,{},15354,1,"""South America""" +2024-03-25,90816,7545,"[\""Laptop\"", \""Keyboard\""]",3894.93,{},39741,1,"""South America""" +2024-11-25,90817,6344,"[\""Charger\""]",3962.48,{},66653,0,"""Africa""" +2023-10-26,90818,1008,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1020.2,{},259072,1,"""Europe""" +2023-09-04,90819,9070,"[\""Wireless Mouse\"", \""Charger\""]",3564.95,"{\""seasonal\"": \""18%\""}",146825,1,"""Europe""" +2024-09-16,90820,1407,"[\""Monitor\""]",4990.64,{},10488,1,"""South America""" +2024-11-23,90821,8257,"[\""Charger\"", \""Headphones\""]",4935.98,{},117791,0,"""North America""" +2024-01-12,90822,1783,"[\""Wireless Mouse\"", \""Laptop\""]",1530.79,"{\""seasonal\"": \""10%\""}",69024,0,"""North America""" +2023-10-03,90823,2859,"[\""Phone\"", \""Keyboard\""]",4001.24,{},270095,1,"""Europe""" +2024-11-14,90824,9009,"[\""Charger\"", \""Headphones\""]",1112.88,"{\""loyalty\"": \""30%\""}",176520,0,"""Africa""" +2024-08-18,90825,7195,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2264.77,{},147573,1,"""Europe""" +2024-11-25,90826,2322,"[\""Tablet\"", \""Keyboard\""]",4083.05,"{\""promo\"": \""30%\""}",5002,0,"""North America""" +2024-09-19,90827,5244,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",764.53,{},295915,0,"""Europe""" +2024-06-15,90828,1516,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",2658.34,{},91452,0,"""Europe""" +2024-01-08,90829,129,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",699.08,"{\""seasonal\"": \""7%\""}",44457,0,"""North America""" +2023-05-16,90830,4842,"[\""Monitor\""]",2386.57,{},132282,0,"""Asia""" +2023-03-25,90831,5303,"[\""Keyboard\"", \""Monitor\""]",3987.97,{},273042,0,"""Africa""" +2024-09-23,90832,4166,"[\""Charger\"", \""Monitor\""]",2658.41,"{\""loyalty\"": \""14%\""}",263244,0,"""Africa""" +2023-01-25,90833,486,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1265.33,{},63179,0,"""Europe""" +2024-02-27,90834,3411,"[\""Keyboard\""]",1538.38,"{\""promo\"": \""30%\""}",299233,1,"""South America""" +2023-05-02,90835,1492,"[\""Phone\""]",3749.92,"{\"": \""24%\""}",20853,0,"""North America""" +2024-01-08,90836,8611,"[\""Monitor\"", \""Wireless Mouse\""]",4871.62,"{\"": \""10%\""}",78318,1,"""North America""" +2023-04-23,90837,1548,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",364.78,"{\""promo\"": \""7%\""}",278302,1,"""Africa""" +2023-07-10,90838,7433,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",588.78,"{\""seasonal\"": \""11%\""}",159615,1,"""Europe""" +2024-08-31,90839,5343,"[\""Phone\"", \""Laptop\""]",4858.99,{},59226,0,"""Europe""" +2024-12-07,90840,6001,"[\""Wireless Mouse\""]",3830.09,{},134928,1,"""South America""" +2023-04-11,90841,6200,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1901.92,"{\"": \""5%\""}",126460,1,"""Africa""" +2024-12-07,90842,4287,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2918.1,"{\"": \""12%\""}",216759,1,"""Asia""" +2023-11-10,90843,3155,"[\""Phone\""]",1406.78,"{\""promo\"": \""10%\""}",28324,1,"""North America""" +2024-10-12,90844,2609,"[\""Wireless Mouse\""]",4553.32,"{\""promo\"": \""6%\""}",258344,0,"""Africa""" +2023-04-02,90845,4266,"[\""Tablet\"", \""Headphones\""]",4621.67,"{\""seasonal\"": \""26%\""}",291629,0,"""South America""" +2023-05-26,90846,4625,"[\""Charger\""]",1739.21,{},28800,0,"""Asia""" +2023-11-18,90847,367,"[\""Charger\"", \""Laptop\""]",375.87,"{\""promo\"": \""28%\""}",81341,0,"""Europe""" +2024-06-19,90848,7513,"[\""Charger\""]",4379.99,"{\""promo\"": \""24%\""}",175245,1,"""South America""" +2023-05-20,90849,1400,"[\""Keyboard\""]",1343.96,"{\""promo\"": \""22%\""}",85210,0,"""Africa""" +2023-02-01,90850,8851,"[\""Laptop\""]",439.75,"{\""promo\"": \""12%\""}",253954,0,"""North America""" +2023-07-03,90851,2187,"[\""Keyboard\""]",2938.22,"{\"": \""27%\""}",50625,0,"""South America""" +2024-06-18,90852,3637,"[\""Monitor\"", \""Charger\""]",1083.21,{},225605,0,"""North America""" +2023-03-28,90853,451,"[\""Keyboard\""]",87.27,{},59114,1,"""North America""" +2024-04-16,90854,1256,"[\""Monitor\"", \""Headphones\""]",4307.31,{},209564,1,"""South America""" +2024-02-13,90855,6195,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",4054.64,{},108461,0,"""Asia""" +2024-06-19,90856,6565,"[\""Laptop\""]",2314.26,"{\"": \""26%\""}",84268,0,"""South America""" +2023-11-08,90857,3762,"[\""Wireless Mouse\""]",3486.64,"{\""promo\"": \""7%\""}",17117,1,"""Asia""" +2024-02-17,90858,8889,"[\""Charger\"", \""Keyboard\""]",4027.95,{},241924,0,"""Europe""" +2024-02-04,90859,5092,"[\""Monitor\"", \""Wireless Mouse\""]",1498.61,{},141160,0,"""Africa""" +2023-07-20,90860,9651,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2685.32,"{\""seasonal\"": \""8%\""}",120106,0,"""Asia""" +2024-12-15,90861,1717,"[\""Wireless Mouse\"", \""Keyboard\""]",1831.48,"{\""seasonal\"": \""30%\""}",201041,0,"""Asia""" +2024-04-16,90862,4685,"[\""Laptop\"", \""Phone\""]",406.57,{},264401,1,"""North America""" +2023-08-11,90863,8783,"[\""Headphones\""]",260.6,{},102043,0,"""North America""" +2024-05-22,90864,4345,"[\""Monitor\"", \""Headphones\""]",662.29,{},63372,1,"""South America""" +2023-06-17,90865,7386,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3673.02,"{\""promo\"": \""27%\""}",199372,0,"""Europe""" +2023-04-14,90866,2512,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2011.54,"{\""seasonal\"": \""17%\""}",259007,1,"""Africa""" +2023-08-14,90867,8978,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",868.23,{},186650,0,"""North America""" +2023-11-20,90868,7771,"[\""Wireless Mouse\""]",2712.0,{},247830,0,"""South America""" +2023-05-08,90869,6632,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1547.47,{},87328,0,"""Africa""" +2024-01-22,90870,8608,"[\""Charger\""]",2662.52,{},65909,1,"""South America""" +2024-02-12,90871,6207,"[\""Monitor\"", \""Tablet\""]",4795.89,{},32546,1,"""Africa""" +2024-09-19,90872,3538,"[\""Phone\""]",152.83,{},263916,0,"""Europe""" +2024-09-07,90873,989,"[\""Charger\"", \""Tablet\""]",1471.52,{},128039,1,"""Asia""" +2024-06-18,90874,7829,"[\""Monitor\"", \""Headphones\""]",2158.39,"{\""seasonal\"": \""20%\""}",294219,1,"""South America""" +2024-08-30,90875,8097,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2524.9,"{\""promo\"": \""26%\""}",131457,1,"""North America""" +2024-03-11,90876,984,"[\""Headphones\"", \""Wireless Mouse\""]",2886.83,"{\"": \""15%\""}",2220,0,"""Africa""" +2024-08-01,90877,2259,"[\""Laptop\"", \""Keyboard\""]",3773.68,"{\"": \""27%\""}",203581,1,"""North America""" +2024-12-12,90878,8996,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2489.35,{},145601,1,"""Asia""" +2024-03-22,90879,4255,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3385.1,{},86037,1,"""North America""" +2024-09-17,90880,8392,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2945.87,{},120321,1,"""South America""" +2024-11-16,90881,1892,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",418.99,{},208752,1,"""South America""" +2023-01-19,90882,7357,"[\""Phone\""]",2815.96,{},97164,0,"""Europe""" +2023-02-12,90883,7492,"[\""Laptop\"", \""Tablet\""]",2575.02,"{\""loyalty\"": \""11%\""}",156423,0,"""Africa""" +2023-07-30,90884,3654,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3545.42,{},98218,1,"""Africa""" +2023-12-21,90885,8858,"[\""Tablet\"", \""Phone\""]",79.36,"{\""seasonal\"": \""30%\""}",95029,0,"""South America""" +2024-04-13,90886,4363,"[\""Charger\"", \""Wireless Mouse\""]",4692.85,"{\""seasonal\"": \""9%\""}",207101,1,"""North America""" +2023-12-04,90887,545,"[\""Tablet\""]",2141.57,{},38500,1,"""Asia""" +2023-12-18,90888,2712,"[\""Keyboard\""]",1860.65,"{\""promo\"": \""20%\""}",247865,0,"""South America""" +2023-03-31,90889,8575,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2961.73,{},230034,0,"""Africa""" +2024-07-30,90890,9325,"[\""Wireless Mouse\""]",1626.26,{},24201,0,"""North America""" +2023-05-10,90891,4733,"[\""Laptop\"", \""Charger\""]",2158.81,{},61491,0,"""North America""" +2023-12-26,90892,7054,"[\""Headphones\""]",1202.58,"{\""promo\"": \""25%\""}",275493,1,"""Asia""" +2024-04-04,90893,3535,"[\""Tablet\"", \""Laptop\""]",1287.21,"{\""loyalty\"": \""16%\""}",196977,1,"""Europe""" +2023-11-04,90894,3511,"[\""Headphones\"", \""Keyboard\""]",1543.14,"{\"": \""10%\""}",29154,1,"""Asia""" +2024-08-22,90895,9945,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1871.06,"{\""loyalty\"": \""25%\""}",5394,1,"""Europe""" +2024-12-05,90896,9202,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",567.47,{},73581,1,"""Africa""" +2023-11-11,90897,8302,"[\""Laptop\""]",1394.53,"{\"": \""16%\""}",40849,1,"""Europe""" +2024-06-04,90898,7043,"[\""Headphones\"", \""Keyboard\""]",3270.27,{},107307,1,"""North America""" +2024-04-15,90899,2745,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1833.57,"{\"": \""6%\""}",202006,1,"""Europe""" +2024-10-15,90900,5619,"[\""Laptop\"", \""Monitor\""]",1062.28,"{\"": \""24%\""}",124232,1,"""Europe""" +2024-03-07,90901,682,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",955.03,{},101405,0,"""South America""" +2024-07-17,90902,1902,"[\""Wireless Mouse\"", \""Keyboard\""]",1145.48,"{\""loyalty\"": \""8%\""}",220302,1,"""South America""" +2023-10-01,90903,3518,"[\""Phone\""]",1997.44,{},131003,0,"""South America""" +2024-10-09,90904,8916,"[\""Headphones\""]",202.15,{},148255,0,"""North America""" +2024-04-16,90905,7992,"[\""Wireless Mouse\"", \""Tablet\""]",2740.3,{},136739,0,"""Europe""" +2024-10-16,90906,1325,"[\""Phone\""]",4594.39,{},251066,1,"""Africa""" +2023-04-24,90907,3779,"[\""Headphones\""]",2622.4,"{\""loyalty\"": \""13%\""}",216738,1,"""Africa""" +2023-03-15,90908,5301,"[\""Charger\""]",1466.5,{},162497,0,"""South America""" +2023-02-11,90909,3363,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4003.07,"{\"": \""10%\""}",227516,0,"""Asia""" +2023-06-28,90910,6374,"[\""Laptop\"", \""Monitor\""]",4972.3,"{\""seasonal\"": \""14%\""}",244376,1,"""North America""" +2023-08-28,90911,9318,"[\""Laptop\"", \""Charger\""]",1949.4,"{\""promo\"": \""18%\""}",3902,1,"""Asia""" +2024-01-15,90912,8614,"[\""Keyboard\"", \""Headphones\""]",2902.72,"{\"": \""30%\""}",185435,1,"""North America""" +2024-12-23,90913,4377,"[\""Laptop\"", \""Wireless Mouse\""]",1122.17,{},283634,0,"""North America""" +2024-06-19,90914,2065,"[\""Charger\"", \""Wireless Mouse\""]",4636.4,"{\""loyalty\"": \""12%\""}",75306,1,"""Europe""" +2023-01-03,90915,9686,"[\""Wireless Mouse\"", \""Headphones\""]",245.37,{},121798,1,"""South America""" +2024-04-02,90916,9809,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",555.73,{},145885,1,"""Europe""" +2023-11-04,90917,6009,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3053.09,"{\""seasonal\"": \""10%\""}",38650,1,"""South America""" +2023-06-21,90918,9029,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2269.01,"{\""loyalty\"": \""20%\""}",52879,1,"""Africa""" +2023-02-16,90919,2093,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1512.83,"{\""seasonal\"": \""27%\""}",11186,1,"""South America""" +2023-09-16,90920,3419,"[\""Charger\""]",2080.99,{},166919,0,"""North America""" +2023-11-21,90921,549,"[\""Headphones\""]",4727.31,{},235192,1,"""Africa""" +2024-01-17,90922,6987,"[\""Charger\"", \""Keyboard\""]",3354.4,{},216327,1,"""Africa""" +2024-05-09,90923,2067,"[\""Keyboard\"", \""Tablet\""]",1038.84,"{\""promo\"": \""13%\""}",255900,0,"""Europe""" +2023-08-20,90924,2908,"[\""Laptop\""]",3760.55,"{\""promo\"": \""24%\""}",168026,1,"""Africa""" +2024-06-05,90925,9334,"[\""Phone\""]",457.62,"{\"": \""30%\""}",185540,0,"""Europe""" +2024-12-14,90926,5693,"[\""Phone\"", \""Tablet\""]",4806.22,"{\"": \""25%\""}",108448,1,"""Asia""" +2023-12-12,90927,9815,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1576.86,{},52714,0,"""South America""" +2023-03-02,90928,2530,"[\""Tablet\"", \""Wireless Mouse\""]",1233.7,{},15066,1,"""Asia""" +2024-08-15,90929,7656,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2599.62,{},99181,1,"""North America""" +2023-08-26,90930,897,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4103.23,{},205796,0,"""Asia""" +2023-03-30,90931,9668,"[\""Charger\""]",3742.39,"{\""seasonal\"": \""6%\""}",127361,1,"""South America""" +2023-01-11,90932,5631,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",705.7,{},264695,1,"""South America""" +2024-08-21,90933,1143,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3008.75,{},26275,0,"""Asia""" +2023-01-24,90934,3565,"[\""Headphones\""]",676.31,{},80230,1,"""North America""" +2024-12-11,90935,4320,"[\""Keyboard\"", \""Tablet\""]",1893.2,"{\""loyalty\"": \""14%\""}",275028,1,"""Europe""" +2024-08-12,90936,8392,"[\""Headphones\""]",959.66,{},165333,0,"""North America""" +2024-01-29,90937,7608,"[\""Keyboard\"", \""Wireless Mouse\""]",580.44,{},193922,1,"""Europe""" +2023-08-06,90938,5867,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2566.0,"{\""promo\"": \""19%\""}",107360,1,"""Asia""" +2023-09-09,90939,3130,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2260.09,"{\""seasonal\"": \""10%\""}",84181,1,"""Africa""" +2023-11-20,90940,926,"[\""Tablet\""]",3793.36,{},101001,1,"""Asia""" +2024-12-05,90941,446,"[\""Headphones\""]",2356.14,"{\""seasonal\"": \""7%\""}",58799,1,"""North America""" +2023-01-11,90942,2533,"[\""Laptop\""]",3744.52,"{\""promo\"": \""14%\""}",64126,0,"""Africa""" +2023-09-20,90943,3409,"[\""Wireless Mouse\""]",4019.88,{},264561,1,"""Europe""" +2024-10-05,90944,1245,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",623.47,{},173868,0,"""Europe""" +2024-01-29,90945,870,"[\""Keyboard\"", \""Tablet\""]",1153.84,{},291984,0,"""Europe""" +2024-05-11,90946,6810,"[\""Charger\"", \""Tablet\""]",3515.25,{},134992,0,"""Asia""" +2023-04-08,90947,7843,"[\""Wireless Mouse\""]",4152.41,"{\""loyalty\"": \""25%\""}",172359,0,"""South America""" +2023-01-21,90948,2138,"[\""Headphones\"", \""Keyboard\""]",3066.9,{},186373,0,"""North America""" +2024-05-25,90949,3036,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2244.72,{},50598,1,"""Asia""" +2024-07-12,90950,117,"[\""Wireless Mouse\""]",3141.67,"{\""seasonal\"": \""8%\""}",209565,0,"""South America""" +2023-06-10,90951,4521,"[\""Charger\"", \""Wireless Mouse\""]",1696.59,{},273499,0,"""South America""" +2023-06-04,90952,6775,"[\""Wireless Mouse\"", \""Laptop\""]",399.71,{},140384,0,"""Asia""" +2024-08-13,90953,4401,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1016.16,{},214833,1,"""Africa""" +2024-07-25,90954,8442,"[\""Laptop\""]",1366.98,"{\""promo\"": \""14%\""}",32302,1,"""Africa""" +2023-03-03,90955,4339,"[\""Wireless Mouse\"", \""Laptop\""]",2899.83,{},221353,0,"""North America""" +2024-01-03,90956,1876,"[\""Laptop\"", \""Charger\""]",3945.83,"{\""loyalty\"": \""24%\""}",270580,0,"""South America""" +2023-12-14,90957,1268,"[\""Charger\"", \""Keyboard\""]",2306.69,"{\""loyalty\"": \""9%\""}",53045,0,"""North America""" +2024-04-24,90958,5623,"[\""Wireless Mouse\""]",3874.7,{},225448,0,"""Europe""" +2024-02-18,90959,326,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2893.09,{},244685,0,"""North America""" +2024-07-26,90960,9784,"[\""Keyboard\"", \""Headphones\""]",2931.84,"{\""loyalty\"": \""6%\""}",80980,0,"""South America""" +2024-12-21,90961,2151,"[\""Headphones\"", \""Laptop\""]",3876.61,{},256594,1,"""South America""" +2024-07-14,90962,7390,"[\""Phone\"", \""Laptop\""]",3649.32,{},205645,1,"""South America""" +2024-12-07,90963,1836,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1423.43,{},213979,0,"""Asia""" +2023-03-04,90964,8606,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3848.16,{},216382,0,"""South America""" +2024-09-25,90965,3332,"[\""Charger\""]",2424.9,{},254377,1,"""Europe""" +2024-10-18,90966,5706,"[\""Charger\"", \""Headphones\""]",3152.32,{},56881,1,"""North America""" +2023-02-03,90967,1847,"[\""Laptop\"", \""Phone\""]",3576.17,"{\""promo\"": \""19%\""}",150958,1,"""Africa""" +2024-04-26,90968,8441,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2682.74,{},115670,0,"""Asia""" +2024-09-26,90969,4792,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",743.78,"{\"": \""17%\""}",167420,1,"""South America""" +2024-04-21,90970,3450,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2971.7,"{\"": \""13%\""}",236833,1,"""South America""" +2023-04-09,90971,5112,"[\""Headphones\"", \""Tablet\""]",4171.22,"{\""loyalty\"": \""27%\""}",10771,1,"""North America""" +2023-04-22,90972,5246,"[\""Monitor\"", \""Phone\""]",2527.76,{},63282,0,"""Africa""" +2023-02-09,90973,3492,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3252.3,"{\""promo\"": \""30%\""}",181584,0,"""Europe""" +2024-04-11,90974,9624,"[\""Laptop\"", \""Charger\""]",1709.64,{},155297,0,"""North America""" +2024-09-15,90975,4669,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4455.59,{},62928,0,"""Africa""" +2024-04-03,90976,3436,"[\""Monitor\""]",2971.26,"{\"": \""10%\""}",189614,0,"""Africa""" +2023-08-14,90977,427,"[\""Keyboard\"", \""Monitor\""]",1820.8,"{\""loyalty\"": \""10%\""}",186025,1,"""North America""" +2023-04-24,90978,7233,"[\""Keyboard\"", \""Tablet\""]",3655.17,"{\""seasonal\"": \""5%\""}",199334,1,"""South America""" +2023-10-22,90979,663,"[\""Phone\""]",4620.41,{},228506,1,"""North America""" +2024-03-14,90980,4547,"[\""Monitor\"", \""Phone\""]",1902.24,"{\""seasonal\"": \""26%\""}",120837,0,"""Asia""" +2024-04-09,90981,7259,"[\""Monitor\""]",1911.96,{},192912,0,"""South America""" +2024-02-24,90982,836,"[\""Keyboard\""]",1615.0,"{\""promo\"": \""19%\""}",261423,1,"""Asia""" +2024-03-02,90983,269,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3204.1,"{\""promo\"": \""8%\""}",140627,1,"""Asia""" +2024-11-22,90984,4720,"[\""Charger\""]",2754.42,"{\""seasonal\"": \""25%\""}",222969,1,"""Asia""" +2023-01-30,90985,6088,"[\""Headphones\""]",3305.39,"{\""seasonal\"": \""15%\""}",152302,1,"""Asia""" +2024-02-16,90986,9031,"[\""Laptop\""]",1499.77,"{\"": \""20%\""}",161954,0,"""Africa""" +2024-05-02,90987,5256,"[\""Monitor\""]",4450.66,"{\""seasonal\"": \""10%\""}",139929,1,"""North America""" +2024-05-10,90988,5816,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1695.79,{},73823,0,"""Europe""" +2024-05-09,90989,3808,"[\""Monitor\""]",2456.55,"{\""loyalty\"": \""9%\""}",77314,1,"""South America""" +2023-03-01,90990,7569,"[\""Headphones\""]",4223.37,{},126315,0,"""Europe""" +2023-03-26,90991,6294,"[\""Keyboard\"", \""Tablet\""]",4107.68,{},110618,0,"""Asia""" +2024-03-04,90992,136,"[\""Charger\""]",3783.51,{},292489,0,"""South America""" +2023-07-21,90993,1420,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",3190.83,"{\""loyalty\"": \""7%\""}",55101,0,"""Europe""" +2023-09-30,90994,9762,"[\""Tablet\"", \""Phone\""]",4346.43,{},32348,0,"""Africa""" +2023-05-26,90995,6574,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",99.69,"{\""promo\"": \""14%\""}",278862,1,"""North America""" +2023-06-21,90996,761,"[\""Headphones\"", \""Monitor\""]",1107.4,"{\"": \""30%\""}",263112,0,"""Europe""" +2023-11-06,90997,3156,"[\""Monitor\""]",2121.64,{},199600,0,"""Asia""" +2024-12-28,90998,9268,"[\""Wireless Mouse\""]",733.36,"{\"": \""11%\""}",192019,1,"""Europe""" +2023-05-13,90999,7165,"[\""Wireless Mouse\""]",1457.37,{},283771,1,"""North America""" +2023-05-06,91000,2055,"[\""Laptop\""]",515.84,{},238121,1,"""Europe""" +2023-04-03,91001,2746,"[\""Monitor\""]",586.03,"{\""promo\"": \""30%\""}",183440,0,"""North America""" +2024-02-12,91002,3795,"[\""Keyboard\"", \""Monitor\""]",75.6,{},256339,0,"""Europe""" +2024-04-16,91003,4643,"[\""Monitor\""]",3833.69,"{\""promo\"": \""15%\""}",39026,1,"""Africa""" +2023-04-07,91004,2791,"[\""Laptop\"", \""Tablet\""]",1800.71,{},291374,0,"""Asia""" +2023-06-18,91005,6871,"[\""Monitor\""]",1028.15,"{\""loyalty\"": \""6%\""}",173507,1,"""Asia""" +2023-11-21,91006,1604,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3592.24,{},297666,0,"""Africa""" +2023-08-10,91007,5395,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",871.31,{},39605,0,"""Asia""" +2023-03-26,91008,7639,"[\""Charger\"", \""Phone\""]",1457.5,{},288341,0,"""South America""" +2024-07-15,91009,8311,"[\""Monitor\""]",4716.06,"{\""seasonal\"": \""22%\""}",162960,0,"""Asia""" +2023-08-02,91010,9580,"[\""Charger\""]",1563.13,"{\""promo\"": \""5%\""}",256304,0,"""Asia""" +2024-05-30,91011,8527,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4965.89,"{\""loyalty\"": \""28%\""}",50565,1,"""South America""" +2024-03-28,91012,2102,"[\""Keyboard\""]",3373.44,{},244839,1,"""South America""" +2024-09-11,91013,5912,"[\""Monitor\""]",2934.5,{},13756,0,"""Asia""" +2023-07-18,91014,9660,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2572.86,"{\""seasonal\"": \""30%\""}",149595,1,"""South America""" +2024-04-22,91015,4993,"[\""Laptop\""]",1848.05,"{\"": \""30%\""}",216429,0,"""North America""" +2024-08-12,91016,2234,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2522.67,"{\""loyalty\"": \""16%\""}",277596,0,"""North America""" +2024-10-18,91017,8377,"[\""Laptop\""]",2790.17,{},135556,0,"""North America""" +2024-09-21,91018,4518,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",508.29,{},65494,1,"""Asia""" +2024-02-19,91019,1048,"[\""Tablet\"", \""Laptop\""]",2139.36,{},30469,1,"""Europe""" +2023-08-22,91020,9825,"[\""Keyboard\"", \""Laptop\""]",1390.74,"{\"": \""24%\""}",20596,1,"""North America""" +2024-03-15,91021,4291,"[\""Wireless Mouse\"", \""Laptop\""]",3457.22,"{\""seasonal\"": \""22%\""}",196461,0,"""North America""" +2024-06-10,91022,8440,"[\""Wireless Mouse\"", \""Keyboard\""]",4026.2,{},296251,1,"""Asia""" +2024-12-29,91023,1557,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2374.91,"{\""seasonal\"": \""7%\""}",274038,0,"""South America""" +2024-10-13,91024,8456,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3670.59,{},132728,0,"""Asia""" +2024-05-08,91025,1533,"[\""Tablet\"", \""Keyboard\""]",3651.4,"{\"": \""26%\""}",195895,1,"""Europe""" +2024-09-11,91026,8782,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",2192.22,"{\""seasonal\"": \""28%\""}",169286,0,"""Europe""" +2023-06-17,91027,5881,"[\""Monitor\"", \""Tablet\""]",1159.46,{},272299,1,"""South America""" +2023-03-03,91028,615,"[\""Phone\""]",2880.06,{},51333,0,"""Africa""" +2023-11-09,91029,727,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2631.31,"{\"": \""23%\""}",25410,0,"""Europe""" +2023-09-18,91030,4230,"[\""Headphones\""]",1460.11,{},241137,0,"""Europe""" +2023-09-30,91031,8461,"[\""Wireless Mouse\""]",732.34,{},143981,1,"""North America""" +2024-03-02,91032,2516,"[\""Monitor\"", \""Charger\""]",1549.46,{},258139,1,"""Asia""" +2024-03-09,91033,3458,"[\""Wireless Mouse\""]",4311.22,{},202653,1,"""South America""" +2024-12-03,91034,6917,"[\""Phone\""]",1209.17,"{\"": \""11%\""}",181641,0,"""North America""" +2024-04-21,91035,2326,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3446.42,"{\"": \""9%\""}",234863,1,"""Europe""" +2024-12-19,91036,5531,"[\""Phone\"", \""Tablet\"", \""Charger\""]",314.84,"{\""seasonal\"": \""16%\""}",255066,0,"""Europe""" +2024-10-23,91037,7073,"[\""Phone\"", \""Headphones\""]",1411.98,"{\""seasonal\"": \""21%\""}",78013,0,"""Asia""" +2023-01-09,91038,6249,"[\""Charger\""]",4163.78,{},222822,1,"""North America""" +2023-11-28,91039,5544,"[\""Wireless Mouse\"", \""Laptop\""]",2311.63,{},190890,0,"""Europe""" +2024-09-10,91040,2687,"[\""Laptop\"", \""Monitor\""]",3750.16,{},190889,1,"""South America""" +2024-08-30,91041,7666,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3587.79,"{\""seasonal\"": \""25%\""}",43377,0,"""Africa""" +2023-08-12,91042,5920,"[\""Monitor\""]",3495.81,{},246746,0,"""Europe""" +2023-06-09,91043,4084,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3565.87,{},218877,1,"""Asia""" +2023-01-30,91044,1664,"[\""Headphones\""]",2133.16,{},160553,1,"""Asia""" +2024-05-30,91045,4114,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2327.25,{},44530,0,"""Europe""" +2023-07-05,91046,7025,"[\""Wireless Mouse\"", \""Phone\""]",596.56,"{\""seasonal\"": \""12%\""}",101391,1,"""South America""" +2024-02-14,91047,6192,"[\""Monitor\""]",1688.3,{},70748,1,"""North America""" +2024-04-20,91048,8333,"[\""Phone\"", \""Laptop\""]",4504.91,{},124571,1,"""South America""" +2023-08-27,91049,3519,"[\""Headphones\"", \""Phone\""]",4728.32,"{\""seasonal\"": \""20%\""}",240231,1,"""Europe""" +2023-05-26,91050,7999,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3069.64,"{\""promo\"": \""12%\""}",220275,0,"""North America""" +2023-12-16,91051,7450,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",1441.19,"{\""loyalty\"": \""23%\""}",52460,1,"""North America""" +2023-05-12,91052,1389,"[\""Laptop\"", \""Keyboard\""]",4673.71,"{\""seasonal\"": \""23%\""}",138470,0,"""South America""" +2023-09-06,91053,7956,"[\""Wireless Mouse\""]",4699.44,{},274631,0,"""Asia""" +2024-09-19,91054,2564,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4567.48,{},158758,1,"""Africa""" +2023-10-14,91055,8605,"[\""Tablet\""]",2432.92,{},163428,0,"""Europe""" +2023-06-28,91056,5548,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3166.03,{},97718,0,"""Europe""" +2023-07-24,91057,7522,"[\""Keyboard\""]",3234.6,{},167725,1,"""North America""" +2023-02-25,91058,8804,"[\""Tablet\""]",1622.66,"{\""loyalty\"": \""29%\""}",20655,1,"""Asia""" +2024-12-25,91059,1125,"[\""Keyboard\""]",1858.32,{},275240,0,"""Africa""" +2024-07-04,91060,5889,"[\""Monitor\"", \""Charger\""]",3979.43,{},44690,1,"""Europe""" +2024-05-08,91061,1835,"[\""Laptop\"", \""Monitor\""]",830.77,"{\""seasonal\"": \""20%\""}",222674,0,"""South America""" +2023-12-17,91062,7025,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1848.61,{},117299,0,"""Europe""" +2024-05-21,91063,4322,"[\""Monitor\""]",176.91,{},140127,1,"""Asia""" +2024-04-12,91064,4508,"[\""Laptop\""]",2661.01,"{\""seasonal\"": \""13%\""}",236587,0,"""Asia""" +2023-11-05,91065,2762,"[\""Tablet\"", \""Phone\""]",3089.31,"{\""loyalty\"": \""15%\""}",126942,0,"""South America""" +2024-10-06,91066,1767,"[\""Laptop\""]",3061.04,"{\"": \""30%\""}",265053,0,"""North America""" +2023-09-09,91067,504,"[\""Tablet\"", \""Charger\""]",3744.58,{},72923,1,"""Africa""" +2024-04-02,91068,541,"[\""Monitor\"", \""Phone\""]",4372.13,"{\"": \""13%\""}",197767,0,"""Europe""" +2023-12-23,91069,5546,"[\""Tablet\"", \""Wireless Mouse\""]",1960.01,{},24523,0,"""Africa""" +2023-09-16,91070,1695,"[\""Headphones\""]",3730.33,{},213813,0,"""South America""" +2023-07-01,91071,9769,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4020.87,"{\""seasonal\"": \""17%\""}",17378,0,"""Africa""" +2024-02-29,91072,6688,"[\""Charger\""]",2330.55,{},162008,0,"""South America""" +2024-05-24,91073,6665,"[\""Tablet\"", \""Keyboard\""]",264.85,{},211772,0,"""Europe""" +2024-07-13,91074,872,"[\""Monitor\""]",1239.44,{},117405,1,"""North America""" +2023-10-15,91075,7924,"[\""Tablet\"", \""Laptop\""]",1900.61,{},73565,0,"""South America""" +2023-04-17,91076,8715,"[\""Monitor\"", \""Tablet\""]",1068.43,{},29970,0,"""Europe""" +2023-01-21,91077,3167,"[\""Phone\"", \""Keyboard\""]",4198.74,"{\""seasonal\"": \""19%\""}",58370,1,"""Europe""" +2023-01-15,91078,9908,"[\""Keyboard\""]",4712.13,{},265236,0,"""Europe""" +2023-02-24,91079,5388,"[\""Laptop\""]",1314.95,{},42863,1,"""South America""" +2023-04-02,91080,4466,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3559.37,{},55529,0,"""Europe""" +2023-04-25,91081,9276,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",3015.98,{},145724,1,"""Asia""" +2023-03-17,91082,1789,"[\""Wireless Mouse\"", \""Keyboard\""]",1127.8,"{\""seasonal\"": \""27%\""}",14822,1,"""North America""" +2024-09-24,91083,5284,"[\""Headphones\"", \""Wireless Mouse\""]",4671.61,{},47533,0,"""Asia""" +2024-10-17,91084,4452,"[\""Tablet\"", \""Laptop\""]",424.88,{},201892,1,"""South America""" +2024-08-07,91085,9221,"[\""Wireless Mouse\""]",4377.91,{},198415,1,"""South America""" +2023-08-04,91086,5629,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4311.01,{},44113,0,"""Europe""" +2024-02-12,91087,5405,"[\""Keyboard\""]",3755.96,{},85405,0,"""Africa""" +2024-08-16,91088,5001,"[\""Charger\""]",2003.94,"{\""loyalty\"": \""30%\""}",187336,0,"""Africa""" +2024-07-01,91089,5072,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",542.49,{},121978,0,"""Africa""" +2023-10-18,91090,144,"[\""Laptop\"", \""Charger\""]",2327.53,{},68972,0,"""South America""" +2023-09-27,91091,7798,"[\""Phone\""]",3231.65,{},295991,1,"""Africa""" +2023-09-09,91092,3733,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1429.3,"{\""loyalty\"": \""19%\""}",32513,0,"""Asia""" +2024-10-15,91093,654,"[\""Wireless Mouse\"", \""Laptop\""]",2756.16,"{\""promo\"": \""5%\""}",122020,0,"""South America""" +2024-09-02,91094,3328,"[\""Headphones\"", \""Keyboard\""]",4014.84,"{\"": \""19%\""}",29095,1,"""Africa""" +2024-06-04,91095,8173,"[\""Monitor\"", \""Wireless Mouse\""]",2538.66,"{\"": \""26%\""}",26855,0,"""Africa""" +2023-10-13,91096,7114,"[\""Laptop\""]",1731.29,"{\""loyalty\"": \""19%\""}",166461,0,"""Africa""" +2024-02-17,91097,7013,"[\""Laptop\""]",4424.66,"{\"": \""5%\""}",284045,0,"""Europe""" +2024-05-17,91098,3465,"[\""Charger\"", \""Laptop\"", \""Phone\""]",4759.27,"{\""promo\"": \""26%\""}",249305,1,"""North America""" +2024-12-25,91099,7556,"[\""Headphones\""]",1982.13,{},56271,0,"""Europe""" +2023-01-10,91100,9158,"[\""Headphones\""]",4437.55,{},11811,1,"""Africa""" +2023-06-29,91101,5282,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2739.43,{},279112,1,"""South America""" +2023-01-22,91102,2618,"[\""Tablet\""]",3277.12,{},194573,0,"""Europe""" +2024-02-03,91103,4482,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1340.16,{},238640,0,"""Africa""" +2024-01-28,91104,6669,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3923.81,"{\""promo\"": \""30%\""}",192144,1,"""South America""" +2024-10-09,91105,2224,"[\""Charger\"", \""Headphones\""]",2459.97,{},121817,0,"""Africa""" +2024-02-12,91106,9863,"[\""Monitor\""]",3871.5,{},19041,0,"""Europe""" +2023-08-20,91107,2042,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",1980.14,{},210329,1,"""South America""" +2024-07-30,91108,99,"[\""Monitor\"", \""Charger\""]",2659.4,{},50868,0,"""Asia""" +2023-01-24,91109,8934,"[\""Monitor\"", \""Headphones\""]",94.7,"{\"": \""30%\""}",56742,1,"""Asia""" +2024-01-22,91110,3044,"[\""Wireless Mouse\""]",2096.46,{},18688,0,"""Asia""" +2024-08-26,91111,1278,"[\""Headphones\"", \""Wireless Mouse\""]",2681.76,{},75784,0,"""Europe""" +2024-02-09,91112,8042,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",388.66,"{\""promo\"": \""24%\""}",174807,1,"""Asia""" +2023-03-06,91113,8823,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3139.08,"{\""promo\"": \""11%\""}",101604,1,"""North America""" +2024-03-04,91114,9682,"[\""Keyboard\""]",4196.42,{},248024,1,"""Asia""" +2024-11-07,91115,7158,"[\""Monitor\""]",1445.81,{},284272,0,"""Europe""" +2024-05-08,91116,7516,"[\""Wireless Mouse\""]",3177.88,"{\""loyalty\"": \""21%\""}",259832,0,"""North America""" +2024-06-23,91117,9655,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3122.18,"{\""loyalty\"": \""16%\""}",224467,0,"""North America""" +2024-09-28,91118,9504,"[\""Headphones\""]",2064.33,"{\"": \""19%\""}",212214,1,"""Europe""" +2024-12-03,91119,3260,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4099.03,{},171252,1,"""Europe""" +2024-03-14,91120,8680,"[\""Tablet\""]",76.64,{},217351,1,"""Europe""" +2024-03-30,91121,8879,"[\""Monitor\"", \""Laptop\""]",4382.42,"{\""promo\"": \""23%\""}",248918,1,"""Asia""" +2023-02-03,91122,3107,"[\""Charger\""]",4369.45,"{\""seasonal\"": \""18%\""}",232093,1,"""Asia""" +2024-04-08,91123,7375,"[\""Wireless Mouse\"", \""Tablet\""]",180.98,{},196666,1,"""Asia""" +2024-02-10,91124,6130,"[\""Monitor\""]",3316.6,"{\""seasonal\"": \""12%\""}",289548,0,"""Asia""" +2023-06-20,91125,260,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4936.19,"{\""seasonal\"": \""26%\""}",290339,0,"""Asia""" +2024-06-28,91126,4544,"[\""Headphones\""]",3642.71,{},289084,0,"""Europe""" +2023-02-09,91127,9117,"[\""Phone\"", \""Laptop\""]",3526.23,{},62684,0,"""South America""" +2024-01-01,91128,4498,"[\""Phone\""]",2190.36,"{\"": \""28%\""}",202850,0,"""South America""" +2024-10-03,91129,797,"[\""Monitor\"", \""Phone\""]",2529.12,{},44587,1,"""Asia""" +2023-01-29,91130,3840,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2330.22,"{\"": \""30%\""}",122521,1,"""Europe""" +2024-10-30,91131,377,"[\""Laptop\""]",2268.58,"{\"": \""14%\""}",116112,1,"""Asia""" +2023-08-03,91132,4691,"[\""Tablet\""]",4077.8,{},280003,0,"""Asia""" +2024-08-26,91133,8957,"[\""Keyboard\""]",1451.89,"{\""promo\"": \""6%\""}",270513,1,"""Asia""" +2023-01-01,91134,5932,"[\""Wireless Mouse\"", \""Headphones\""]",2681.71,"{\""loyalty\"": \""19%\""}",156695,0,"""Europe""" +2023-07-19,91135,546,"[\""Tablet\""]",4541.0,{},140213,1,"""Asia""" +2023-07-14,91136,5430,"[\""Monitor\"", \""Laptop\""]",2448.93,"{\""seasonal\"": \""27%\""}",246981,1,"""Europe""" +2024-09-07,91137,6933,"[\""Tablet\""]",4234.89,{},244356,1,"""Africa""" +2023-03-05,91138,830,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",307.38,"{\""loyalty\"": \""11%\""}",111484,1,"""Asia""" +2023-05-02,91139,8368,"[\""Charger\""]",4513.21,{},223654,0,"""Europe""" +2023-08-25,91140,5082,"[\""Keyboard\""]",3559.85,{},166162,1,"""South America""" +2024-06-24,91141,9838,"[\""Headphones\"", \""Phone\""]",1707.08,"{\""seasonal\"": \""7%\""}",38711,0,"""North America""" +2024-03-05,91142,1892,"[\""Phone\""]",3789.28,"{\"": \""18%\""}",104894,0,"""South America""" +2023-12-16,91143,8499,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4119.26,{},153255,1,"""Africa""" +2024-04-29,91144,6096,"[\""Laptop\""]",1541.28,{},95889,1,"""North America""" +2024-04-30,91145,8767,"[\""Phone\"", \""Monitor\""]",2683.33,"{\""loyalty\"": \""29%\""}",184469,1,"""South America""" +2023-07-23,91146,5644,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",2079.3,{},199008,1,"""Europe""" +2024-05-24,91147,3448,"[\""Monitor\"", \""Wireless Mouse\""]",1588.45,"{\""seasonal\"": \""28%\""}",133715,0,"""South America""" +2023-02-20,91148,4732,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",2346.64,{},4835,1,"""South America""" +2023-02-22,91149,3024,"[\""Charger\"", \""Phone\""]",4318.82,"{\""loyalty\"": \""7%\""}",181832,1,"""South America""" +2024-10-13,91150,6520,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1924.98,{},254004,0,"""Europe""" +2024-12-22,91151,9107,"[\""Laptop\"", \""Wireless Mouse\""]",337.99,{},63030,0,"""Africa""" +2024-05-16,91152,5768,"[\""Headphones\""]",3271.49,{},199707,1,"""Europe""" +2024-09-07,91153,6920,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4638.9,{},79643,1,"""Africa""" +2024-01-14,91154,1907,"[\""Laptop\"", \""Monitor\""]",2091.21,"{\""seasonal\"": \""10%\""}",247941,1,"""South America""" +2023-03-08,91155,6838,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",646.76,{},172121,1,"""South America""" +2023-08-19,91156,5325,"[\""Tablet\""]",1778.3,"{\""promo\"": \""27%\""}",233167,1,"""Africa""" +2024-11-06,91157,3504,"[\""Tablet\"", \""Charger\""]",1638.22,"{\""promo\"": \""9%\""}",174384,1,"""Asia""" +2023-12-27,91158,3969,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",174.7,"{\""loyalty\"": \""11%\""}",267711,1,"""Africa""" +2023-04-21,91159,1656,"[\""Headphones\""]",2673.63,"{\""seasonal\"": \""7%\""}",86433,0,"""North America""" +2023-06-29,91160,7534,"[\""Laptop\"", \""Wireless Mouse\""]",4178.51,"{\""seasonal\"": \""15%\""}",79898,0,"""South America""" +2023-10-04,91161,1531,"[\""Charger\""]",3650.4,"{\""seasonal\"": \""20%\""}",221058,0,"""Africa""" +2023-01-05,91162,6520,"[\""Laptop\""]",3844.31,"{\"": \""17%\""}",23977,1,"""Asia""" +2023-04-17,91163,5415,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",200.78,"{\"": \""9%\""}",58242,0,"""South America""" +2023-10-04,91164,7243,"[\""Headphones\""]",409.11,"{\""promo\"": \""16%\""}",282879,0,"""South America""" +2024-03-05,91165,4482,"[\""Charger\""]",4940.24,"{\""seasonal\"": \""20%\""}",115294,0,"""Asia""" +2024-12-29,91166,5500,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4903.61,"{\""promo\"": \""28%\""}",288711,1,"""Asia""" +2023-06-08,91167,5351,"[\""Monitor\"", \""Wireless Mouse\""]",1281.0,{},166611,1,"""Asia""" +2024-05-09,91168,8755,"[\""Monitor\""]",1643.98,"{\""seasonal\"": \""29%\""}",25501,1,"""North America""" +2023-12-29,91169,357,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4089.28,"{\""promo\"": \""11%\""}",156409,1,"""Asia""" +2024-07-21,91170,6430,"[\""Wireless Mouse\"", \""Laptop\""]",4577.43,{},135917,1,"""South America""" +2023-02-16,91171,4189,"[\""Phone\"", \""Charger\""]",4000.69,{},125663,1,"""Europe""" +2024-04-08,91172,45,"[\""Monitor\""]",3463.01,{},5964,0,"""Europe""" +2024-01-06,91173,8425,"[\""Charger\"", \""Phone\""]",2472.29,"{\""loyalty\"": \""30%\""}",247096,0,"""Europe""" +2023-11-16,91174,4063,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1600.74,{},136723,0,"""South America""" +2023-04-12,91175,5817,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2871.44,{},221456,1,"""Europe""" +2023-03-04,91176,2046,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4384.53,"{\""promo\"": \""19%\""}",1357,0,"""Asia""" +2023-01-15,91177,4239,"[\""Monitor\""]",4651.85,{},214890,1,"""Europe""" +2024-10-23,91178,8489,"[\""Keyboard\""]",2218.22,"{\""promo\"": \""17%\""}",145726,1,"""Europe""" +2023-01-16,91179,4644,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3665.92,{},152430,1,"""Asia""" +2023-07-22,91180,3916,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4094.08,{},272139,0,"""Europe""" +2023-12-09,91181,5844,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4656.19,"{\""loyalty\"": \""25%\""}",186035,0,"""Africa""" +2024-08-18,91182,3876,"[\""Keyboard\"", \""Laptop\""]",2166.94,"{\""loyalty\"": \""12%\""}",80015,0,"""South America""" +2024-07-26,91183,948,"[\""Charger\""]",3380.32,"{\""seasonal\"": \""23%\""}",260481,0,"""Europe""" +2023-07-12,91184,9245,"[\""Monitor\"", \""Charger\"", \""Phone\""]",302.45,{},82951,0,"""Asia""" +2024-09-13,91185,2242,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4169.33,"{\""seasonal\"": \""10%\""}",213700,0,"""South America""" +2023-09-06,91186,9261,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2683.85,{},222039,0,"""Asia""" +2023-10-25,91187,9357,"[\""Charger\"", \""Headphones\""]",1388.11,{},132468,0,"""Europe""" +2023-01-15,91188,4342,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2825.93,{},4631,0,"""Asia""" +2023-05-22,91189,3453,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2270.94,"{\"": \""6%\""}",181332,1,"""Asia""" +2023-04-26,91190,9940,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1446.92,{},297557,0,"""Asia""" +2024-05-19,91191,2943,"[\""Phone\""]",3636.49,"{\"": \""11%\""}",117734,1,"""Asia""" +2024-09-27,91192,4024,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",4428.55,{},155519,0,"""Europe""" +2023-07-13,91193,5620,"[\""Wireless Mouse\""]",1884.94,"{\""promo\"": \""5%\""}",218951,1,"""Europe""" +2024-01-19,91194,5286,"[\""Laptop\"", \""Charger\""]",4909.33,{},16653,0,"""Africa""" +2023-10-02,91195,6741,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4177.89,{},69115,0,"""Europe""" +2024-07-08,91196,5952,"[\""Wireless Mouse\""]",4688.51,"{\""promo\"": \""27%\""}",241946,1,"""Europe""" +2023-12-08,91197,1922,"[\""Keyboard\""]",376.74,"{\""promo\"": \""29%\""}",37761,1,"""Europe""" +2023-06-29,91198,3633,"[\""Phone\"", \""Keyboard\""]",2878.98,{},78999,1,"""South America""" +2023-09-02,91199,6211,"[\""Monitor\""]",1928.62,"{\"": \""9%\""}",81240,0,"""North America""" +2024-07-30,91200,8440,"[\""Phone\"", \""Headphones\""]",4603.13,{},202143,1,"""Europe""" +2024-09-27,91201,9313,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2967.94,{},186561,0,"""Europe""" +2023-12-04,91202,6579,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2540.13,"{\""loyalty\"": \""19%\""}",252173,1,"""South America""" +2023-12-13,91203,3916,"[\""Laptop\""]",3958.63,"{\""seasonal\"": \""12%\""}",202498,1,"""South America""" +2024-11-08,91204,5838,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4335.96,"{\""seasonal\"": \""7%\""}",42672,0,"""Europe""" +2023-06-15,91205,5326,"[\""Wireless Mouse\""]",3537.97,"{\""seasonal\"": \""8%\""}",277479,0,"""South America""" +2023-03-24,91206,5348,"[\""Wireless Mouse\""]",1562.36,"{\""loyalty\"": \""12%\""}",65231,0,"""Africa""" +2023-09-16,91207,8717,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",667.32,"{\""seasonal\"": \""6%\""}",7197,0,"""Asia""" +2024-01-12,91208,3752,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",766.09,{},84968,1,"""North America""" +2024-11-04,91209,545,"[\""Laptop\"", \""Tablet\""]",3056.32,"{\""promo\"": \""13%\""}",70076,1,"""Asia""" +2023-04-01,91210,1450,"[\""Headphones\""]",1485.74,"{\""seasonal\"": \""9%\""}",171225,0,"""Europe""" +2024-08-03,91211,9572,"[\""Tablet\"", \""Phone\""]",3222.1,{},119145,0,"""Africa""" +2023-08-27,91212,5267,"[\""Phone\""]",550.98,{},283450,0,"""Europe""" +2024-09-19,91213,9733,"[\""Phone\"", \""Charger\""]",4680.68,{},247831,1,"""South America""" +2023-01-24,91214,4267,"[\""Headphones\"", \""Phone\""]",1239.71,"{\""loyalty\"": \""16%\""}",271011,1,"""North America""" +2023-10-10,91215,4769,"[\""Phone\"", \""Wireless Mouse\""]",1805.95,"{\""promo\"": \""30%\""}",257690,1,"""South America""" +2024-02-05,91216,7961,"[\""Headphones\"", \""Phone\""]",3062.21,"{\"": \""27%\""}",240221,0,"""Asia""" +2023-12-28,91217,1792,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",700.53,"{\"": \""12%\""}",240333,1,"""North America""" +2023-04-08,91218,7953,"[\""Headphones\""]",1711.47,"{\"": \""8%\""}",274248,1,"""Africa""" +2024-03-23,91219,382,"[\""Wireless Mouse\""]",2554.68,{},258534,0,"""Africa""" +2024-12-31,91220,5637,"[\""Keyboard\""]",3720.4,{},216380,1,"""North America""" +2023-05-03,91221,6045,"[\""Phone\"", \""Wireless Mouse\""]",4121.28,{},129495,1,"""Africa""" +2023-03-31,91222,3039,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1864.73,{},225776,0,"""Europe""" +2024-06-14,91223,3586,"[\""Headphones\""]",2960.75,"{\""seasonal\"": \""11%\""}",64186,0,"""South America""" +2023-11-30,91224,45,"[\""Charger\""]",864.17,{},211135,1,"""Asia""" +2023-07-28,91225,932,"[\""Charger\""]",871.98,"{\""seasonal\"": \""29%\""}",24749,1,"""Asia""" +2023-02-05,91226,4356,"[\""Laptop\""]",2324.25,{},268388,1,"""North America""" +2023-05-13,91227,2993,"[\""Phone\"", \""Wireless Mouse\""]",3646.47,{},67073,1,"""Asia""" +2023-01-06,91228,5225,"[\""Keyboard\""]",1522.7,{},167550,0,"""South America""" +2024-08-31,91229,5974,"[\""Headphones\""]",2115.17,"{\""seasonal\"": \""9%\""}",85131,0,"""South America""" +2024-10-03,91230,8352,"[\""Keyboard\"", \""Tablet\""]",2815.63,{},226203,1,"""Africa""" +2023-01-14,91231,927,"[\""Keyboard\""]",832.82,"{\""loyalty\"": \""19%\""}",116064,1,"""South America""" +2024-06-06,91232,9029,"[\""Monitor\""]",1369.89,"{\""seasonal\"": \""18%\""}",132613,1,"""South America""" +2023-07-21,91233,5589,"[\""Wireless Mouse\""]",134.1,{},22380,1,"""Asia""" +2024-07-14,91234,3578,"[\""Tablet\""]",2716.9,"{\""loyalty\"": \""16%\""}",167587,0,"""Asia""" +2024-03-03,91235,8968,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2666.74,{},178513,1,"""Asia""" +2024-06-05,91236,4132,"[\""Wireless Mouse\""]",1233.23,"{\""promo\"": \""8%\""}",245600,0,"""Europe""" +2024-08-07,91237,971,"[\""Laptop\""]",873.76,{},94022,1,"""South America""" +2023-10-25,91238,6001,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4214.65,{},125125,0,"""Asia""" +2023-05-25,91239,453,"[\""Wireless Mouse\"", \""Keyboard\""]",1379.14,{},166587,0,"""South America""" +2024-05-02,91240,1780,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",3040.51,{},61098,1,"""Europe""" +2023-06-22,91241,2229,"[\""Phone\""]",2575.85,{},126422,1,"""South America""" +2024-01-24,91242,1442,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3779.0,"{\""promo\"": \""18%\""}",145242,0,"""Europe""" +2023-12-10,91243,7284,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3792.3,{},33171,1,"""South America""" +2023-12-11,91244,5311,"[\""Laptop\"", \""Monitor\""]",4617.08,{},189549,0,"""Africa""" +2024-07-07,91245,869,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1264.38,"{\""promo\"": \""28%\""}",15140,1,"""Africa""" +2024-07-05,91246,6593,"[\""Phone\"", \""Monitor\""]",2683.08,"{\"": \""16%\""}",177853,1,"""Asia""" +2024-09-30,91247,6923,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2358.74,"{\"": \""8%\""}",60016,0,"""Africa""" +2024-05-07,91248,5029,"[\""Tablet\"", \""Charger\""]",2232.11,"{\""seasonal\"": \""11%\""}",177683,0,"""North America""" +2023-07-12,91249,2507,"[\""Charger\"", \""Phone\""]",4934.08,"{\""loyalty\"": \""22%\""}",153240,0,"""Asia""" +2023-01-17,91250,8663,"[\""Phone\"", \""Tablet\""]",597.12,{},64504,1,"""Asia""" +2024-02-29,91251,5990,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4978.08,"{\""loyalty\"": \""16%\""}",260873,0,"""Africa""" +2024-05-28,91252,2820,"[\""Wireless Mouse\""]",2188.81,"{\""loyalty\"": \""13%\""}",42534,0,"""Europe""" +2023-03-31,91253,658,"[\""Headphones\""]",751.97,"{\""loyalty\"": \""14%\""}",15884,1,"""Europe""" +2024-05-30,91254,2640,"[\""Headphones\""]",2486.4,{},275046,0,"""North America""" +2023-06-11,91255,7,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4171.09,{},244362,0,"""Asia""" +2023-11-20,91256,1156,"[\""Tablet\""]",4420.69,"{\""seasonal\"": \""9%\""}",272062,1,"""South America""" +2024-09-23,91257,9755,"[\""Charger\"", \""Monitor\""]",4774.66,{},104712,0,"""South America""" +2024-11-08,91258,222,"[\""Headphones\"", \""Phone\""]",4041.13,"{\""promo\"": \""20%\""}",52602,1,"""Asia""" +2024-11-03,91259,194,"[\""Monitor\"", \""Phone\""]",1678.85,"{\""loyalty\"": \""12%\""}",108373,0,"""North America""" +2023-03-25,91260,4693,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4924.1,"{\""promo\"": \""26%\""}",193694,1,"""Africa""" +2024-03-22,91261,3189,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",837.4,{},128321,1,"""North America""" +2024-09-26,91262,3209,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",62.59,"{\""seasonal\"": \""27%\""}",288011,1,"""Africa""" +2024-07-31,91263,8657,"[\""Wireless Mouse\""]",3497.77,"{\""promo\"": \""24%\""}",138532,1,"""North America""" +2023-11-29,91264,1909,"[\""Headphones\""]",3839.18,{},255011,0,"""Africa""" +2024-08-12,91265,1462,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1739.69,{},87302,1,"""North America""" +2023-07-04,91266,9105,"[\""Headphones\"", \""Monitor\""]",1790.62,{},142549,0,"""North America""" +2024-02-04,91267,241,"[\""Laptop\""]",4373.55,{},155251,1,"""Asia""" +2023-01-11,91268,7803,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",666.99,"{\""promo\"": \""7%\""}",270465,1,"""Africa""" +2023-11-14,91269,5488,"[\""Wireless Mouse\""]",3333.28,"{\""promo\"": \""26%\""}",141214,1,"""North America""" +2023-01-01,91270,9782,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",268.44,"{\"": \""12%\""}",50532,1,"""Asia""" +2023-01-22,91271,5732,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1592.09,"{\"": \""19%\""}",210373,1,"""Europe""" +2023-12-18,91272,2696,"[\""Monitor\"", \""Keyboard\""]",2675.02,{},282862,0,"""Asia""" +2023-10-30,91273,3852,"[\""Monitor\"", \""Phone\""]",1822.05,"{\""loyalty\"": \""15%\""}",253277,0,"""Europe""" +2023-08-18,91274,3392,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4341.62,{},206889,1,"""Asia""" +2023-08-25,91275,342,"[\""Headphones\"", \""Wireless Mouse\""]",2189.59,"{\""promo\"": \""29%\""}",87583,1,"""South America""" +2024-11-02,91276,2214,"[\""Phone\"", \""Monitor\""]",1108.4,{},115639,0,"""Europe""" +2023-01-07,91277,7442,"[\""Headphones\"", \""Keyboard\""]",699.1,"{\""seasonal\"": \""14%\""}",256944,1,"""Africa""" +2023-05-04,91278,6899,"[\""Laptop\"", \""Keyboard\""]",2068.4,{},102455,1,"""Europe""" +2024-03-21,91279,8195,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4215.82,{},176256,1,"""Africa""" +2023-05-13,91280,3516,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2656.68,"{\""promo\"": \""16%\""}",268127,1,"""Asia""" +2024-10-08,91281,4398,"[\""Monitor\""]",4991.91,"{\""seasonal\"": \""12%\""}",81585,1,"""North America""" +2024-11-08,91282,1215,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",3796.96,{},217089,1,"""South America""" +2024-04-20,91283,2442,"[\""Phone\"", \""Tablet\""]",4917.67,{},133557,1,"""Asia""" +2023-09-07,91284,5981,"[\""Tablet\"", \""Charger\""]",4700.84,{},118821,0,"""South America""" +2024-11-07,91285,2859,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",968.43,{},157723,0,"""North America""" +2024-11-14,91286,3853,"[\""Headphones\""]",2950.45,"{\""promo\"": \""24%\""}",18081,1,"""South America""" +2023-04-08,91287,9969,"[\""Charger\"", \""Tablet\""]",4931.35,"{\""loyalty\"": \""19%\""}",146170,0,"""North America""" +2024-05-19,91288,5967,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",854.18,"{\""promo\"": \""11%\""}",285466,0,"""South America""" +2024-04-16,91289,4692,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2607.27,"{\""promo\"": \""7%\""}",275283,0,"""North America""" +2024-01-14,91290,3291,"[\""Laptop\""]",2158.29,{},141159,1,"""South America""" +2023-08-20,91291,7982,"[\""Headphones\"", \""Tablet\""]",1255.61,{},161631,1,"""Africa""" +2023-06-26,91292,8851,"[\""Laptop\""]",1560.59,{},174847,1,"""Europe""" +2024-02-28,91293,7103,"[\""Laptop\"", \""Charger\""]",2176.59,{},87188,0,"""South America""" +2023-02-19,91294,1988,"[\""Keyboard\""]",450.08,{},1741,0,"""Europe""" +2023-08-06,91295,7534,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4577.42,"{\""promo\"": \""26%\""}",133104,1,"""North America""" +2023-02-23,91296,4345,"[\""Phone\"", \""Charger\""]",3648.49,"{\""promo\"": \""6%\""}",286419,1,"""North America""" +2024-07-14,91297,8455,"[\""Keyboard\""]",3688.26,{},186625,1,"""North America""" +2024-12-27,91298,7538,"[\""Wireless Mouse\""]",2781.27,{},2724,0,"""South America""" +2024-02-11,91299,5930,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3208.2,"{\""loyalty\"": \""10%\""}",293749,0,"""Asia""" +2023-02-24,91300,1298,"[\""Laptop\""]",4162.14,"{\""seasonal\"": \""14%\""}",73550,0,"""Africa""" +2024-02-20,91301,5169,"[\""Keyboard\"", \""Charger\""]",2923.6,{},184117,0,"""South America""" +2023-05-19,91302,3205,"[\""Monitor\"", \""Wireless Mouse\""]",853.1,{},21625,0,"""Africa""" +2023-07-15,91303,4151,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4705.1,{},108293,1,"""Africa""" +2024-11-01,91304,1619,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3400.73,"{\""seasonal\"": \""12%\""}",195335,1,"""Asia""" +2024-10-09,91305,2914,"[\""Wireless Mouse\""]",567.12,"{\""loyalty\"": \""15%\""}",3901,0,"""Asia""" +2023-03-25,91306,7459,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3482.31,{},175418,1,"""Africa""" +2023-03-03,91307,1659,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3550.03,"{\""seasonal\"": \""8%\""}",208068,0,"""South America""" +2024-12-10,91308,6894,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1666.41,{},287259,1,"""Africa""" +2024-01-19,91309,7550,"[\""Monitor\"", \""Keyboard\""]",1279.51,"{\""seasonal\"": \""27%\""}",143618,1,"""Europe""" +2023-09-11,91310,8254,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",683.04,"{\""loyalty\"": \""18%\""}",37021,1,"""Africa""" +2023-02-05,91311,9922,"[\""Monitor\"", \""Tablet\""]",1016.6,"{\""seasonal\"": \""9%\""}",162400,0,"""South America""" +2024-07-03,91312,3254,"[\""Laptop\"", \""Wireless Mouse\""]",3960.71,"{\""loyalty\"": \""26%\""}",277917,1,"""Asia""" +2024-12-10,91313,1640,"[\""Monitor\""]",3841.91,"{\""promo\"": \""11%\""}",14198,1,"""Africa""" +2024-12-01,91314,7622,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",147.5,{},274584,0,"""Africa""" +2024-10-03,91315,3785,"[\""Charger\""]",3162.44,"{\""promo\"": \""25%\""}",230942,0,"""Africa""" +2024-08-07,91316,8087,"[\""Tablet\"", \""Phone\""]",2000.49,{},154821,0,"""South America""" +2024-05-19,91317,3282,"[\""Phone\""]",3691.91,{},135803,1,"""Europe""" +2024-08-08,91318,3332,"[\""Phone\"", \""Headphones\""]",1412.75,"{\""loyalty\"": \""22%\""}",220418,0,"""North America""" +2024-10-18,91319,3665,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",541.84,{},112912,0,"""Europe""" +2023-06-17,91320,8281,"[\""Wireless Mouse\""]",4285.43,{},75600,0,"""North America""" +2024-02-02,91321,727,"[\""Phone\""]",2452.02,{},178039,0,"""Africa""" +2024-08-24,91322,4693,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3958.81,{},184414,0,"""Asia""" +2024-03-03,91323,9251,"[\""Tablet\"", \""Charger\"", \""Phone\""]",701.36,"{\""seasonal\"": \""20%\""}",250187,1,"""South America""" +2023-01-01,91324,5207,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4326.14,{},183701,1,"""Africa""" +2023-10-04,91325,5249,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3435.67,{},95666,0,"""Asia""" +2023-09-25,91326,3522,"[\""Headphones\"", \""Charger\""]",4875.82,{},273205,0,"""Africa""" +2023-07-10,91327,6418,"[\""Keyboard\""]",3768.9,{},46503,1,"""South America""" +2023-03-02,91328,1336,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3965.8,"{\""loyalty\"": \""11%\""}",60652,0,"""South America""" +2023-10-29,91329,6660,"[\""Laptop\"", \""Tablet\""]",4429.95,"{\""seasonal\"": \""12%\""}",210838,0,"""Europe""" +2024-03-28,91330,9504,"[\""Monitor\"", \""Charger\""]",1048.57,"{\""loyalty\"": \""25%\""}",46883,1,"""South America""" +2023-01-18,91331,668,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",1239.58,{},298959,1,"""Europe""" +2024-08-08,91332,8057,"[\""Phone\"", \""Wireless Mouse\""]",450.41,{},127974,1,"""North America""" +2023-02-27,91333,4181,"[\""Laptop\"", \""Headphones\""]",4099.72,"{\""loyalty\"": \""13%\""}",195579,1,"""North America""" +2024-10-22,91334,5567,"[\""Laptop\""]",3745.83,{},245638,1,"""Africa""" +2024-04-05,91335,5638,"[\""Laptop\"", \""Keyboard\""]",1975.88,"{\""seasonal\"": \""23%\""}",225014,1,"""South America""" +2023-01-15,91336,4142,"[\""Wireless Mouse\"", \""Monitor\""]",2424.63,"{\""promo\"": \""7%\""}",159122,1,"""Europe""" +2023-03-19,91337,5439,"[\""Monitor\""]",1900.41,{},207225,0,"""North America""" +2024-05-16,91338,9311,"[\""Tablet\"", \""Keyboard\""]",2081.52,{},13570,0,"""North America""" +2024-09-01,91339,7039,"[\""Keyboard\"", \""Tablet\""]",1743.8,"{\"": \""30%\""}",164836,0,"""Europe""" +2023-03-06,91340,2476,"[\""Laptop\"", \""Wireless Mouse\""]",2888.38,"{\"": \""21%\""}",95420,1,"""North America""" +2024-12-22,91341,2325,"[\""Laptop\"", \""Wireless Mouse\""]",655.87,{},155291,0,"""South America""" +2023-11-06,91342,3139,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3002.79,{},24400,0,"""Europe""" +2023-06-12,91343,6242,"[\""Charger\""]",1247.28,{},26085,0,"""Africa""" +2024-01-27,91344,48,"[\""Monitor\""]",1112.36,{},97190,0,"""Europe""" +2024-09-08,91345,9324,"[\""Laptop\"", \""Keyboard\""]",2613.7,{},207885,1,"""North America""" +2023-05-15,91346,8303,"[\""Wireless Mouse\"", \""Headphones\""]",3666.36,{},258140,1,"""North America""" +2023-04-12,91347,480,"[\""Monitor\"", \""Tablet\""]",4020.68,{},279636,1,"""Africa""" +2024-08-16,91348,1330,"[\""Wireless Mouse\""]",542.93,{},98382,1,"""Europe""" +2024-01-10,91349,3107,"[\""Laptop\""]",4806.55,"{\""promo\"": \""27%\""}",234575,0,"""South America""" +2023-06-10,91350,4850,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3682.85,{},249465,0,"""Asia""" +2023-11-26,91351,8328,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2238.82,"{\""seasonal\"": \""24%\""}",139053,1,"""Europe""" +2023-05-18,91352,1512,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2838.95,"{\"": \""6%\""}",224501,0,"""Africa""" +2024-08-15,91353,5794,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1922.87,{},118397,1,"""Asia""" +2023-08-10,91354,6086,"[\""Monitor\"", \""Wireless Mouse\""]",2896.63,"{\""loyalty\"": \""25%\""}",257628,0,"""Europe""" +2023-10-20,91355,5042,"[\""Monitor\"", \""Laptop\""]",1173.79,{},128832,0,"""Europe""" +2024-05-29,91356,5634,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1188.0,{},19527,1,"""Europe""" +2023-11-16,91357,2833,"[\""Wireless Mouse\""]",3548.01,{},68007,0,"""Asia""" +2023-05-02,91358,7323,"[\""Tablet\"", \""Wireless Mouse\""]",2733.61,"{\""promo\"": \""10%\""}",114356,1,"""North America""" +2023-04-28,91359,541,"[\""Wireless Mouse\""]",4716.84,{},24542,1,"""Europe""" +2023-06-05,91360,3443,"[\""Monitor\"", \""Charger\"", \""Phone\""]",742.34,"{\""promo\"": \""19%\""}",290562,0,"""South America""" +2024-09-30,91361,7201,"[\""Keyboard\""]",626.17,{},131337,1,"""Africa""" +2024-10-12,91362,195,"[\""Keyboard\"", \""Laptop\""]",164.48,"{\"": \""5%\""}",69677,0,"""Europe""" +2024-05-19,91363,7555,"[\""Headphones\""]",674.15,{},261008,1,"""Europe""" +2024-03-02,91364,8799,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4482.03,"{\""seasonal\"": \""24%\""}",66438,0,"""Asia""" +2024-07-09,91365,8599,"[\""Wireless Mouse\""]",142.97,"{\""loyalty\"": \""17%\""}",285858,1,"""Asia""" +2023-05-24,91366,8408,"[\""Wireless Mouse\"", \""Headphones\""]",1327.12,{},216589,1,"""South America""" +2023-01-13,91367,1631,"[\""Keyboard\""]",2748.17,"{\""promo\"": \""14%\""}",212745,0,"""Africa""" +2024-07-19,91368,6908,"[\""Keyboard\""]",1883.16,{},28841,1,"""Asia""" +2024-08-13,91369,3204,"[\""Tablet\"", \""Headphones\""]",4264.28,{},225358,0,"""Europe""" +2023-12-24,91370,6835,"[\""Wireless Mouse\""]",2525.11,{},292341,1,"""Africa""" +2024-10-05,91371,1569,"[\""Tablet\"", \""Monitor\""]",4308.54,{},197553,1,"""Europe""" +2023-03-27,91372,124,"[\""Wireless Mouse\""]",1683.51,{},241201,0,"""South America""" +2024-04-22,91373,4796,"[\""Monitor\"", \""Tablet\""]",3369.53,"{\""seasonal\"": \""21%\""}",81445,1,"""North America""" +2023-11-10,91374,7091,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",605.3,{},64495,0,"""South America""" +2024-03-15,91375,4252,"[\""Headphones\""]",4824.97,"{\"": \""24%\""}",51505,0,"""Africa""" +2023-11-24,91376,517,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4193.5,{},1370,1,"""South America""" +2024-09-22,91377,881,"[\""Monitor\"", \""Wireless Mouse\""]",3542.39,{},99707,0,"""North America""" +2024-03-08,91378,1352,"[\""Keyboard\""]",3005.55,{},181767,0,"""North America""" +2024-09-22,91379,2557,"[\""Tablet\""]",143.79,"{\""promo\"": \""27%\""}",263326,0,"""South America""" +2024-09-08,91380,537,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1997.86,{},12941,1,"""Europe""" +2023-05-31,91381,1466,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3283.09,"{\""seasonal\"": \""20%\""}",39589,0,"""Asia""" +2024-02-17,91382,5103,"[\""Headphones\"", \""Phone\""]",4781.15,"{\""seasonal\"": \""15%\""}",142248,0,"""Africa""" +2024-11-21,91383,8767,"[\""Charger\""]",838.01,{},60786,0,"""North America""" +2024-09-30,91384,4741,"[\""Laptop\"", \""Monitor\""]",4381.9,"{\""loyalty\"": \""21%\""}",107828,1,"""Europe""" +2023-04-15,91385,6607,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4434.02,"{\""seasonal\"": \""25%\""}",41765,0,"""Asia""" +2023-03-29,91386,5598,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3575.19,{},110487,0,"""North America""" +2023-07-15,91387,4734,"[\""Wireless Mouse\"", \""Tablet\""]",3158.33,"{\""loyalty\"": \""24%\""}",107252,0,"""North America""" +2023-12-28,91388,9527,"[\""Laptop\""]",2234.26,"{\""loyalty\"": \""23%\""}",292427,0,"""Europe""" +2023-02-23,91389,8004,"[\""Laptop\"", \""Wireless Mouse\""]",874.33,"{\""promo\"": \""24%\""}",249331,1,"""Europe""" +2023-06-20,91390,9457,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",902.03,"{\""loyalty\"": \""30%\""}",111581,0,"""North America""" +2023-08-01,91391,9205,"[\""Laptop\""]",4865.55,"{\""loyalty\"": \""20%\""}",280447,0,"""Africa""" +2023-01-01,91392,6436,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2428.56,{},24176,1,"""North America""" +2024-07-28,91393,9472,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3449.38,{},247674,0,"""South America""" +2024-07-30,91394,211,"[\""Headphones\"", \""Laptop\""]",1318.29,"{\"": \""9%\""}",293086,0,"""Europe""" +2023-12-03,91395,5071,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3726.04,{},66361,0,"""Africa""" +2024-07-04,91396,5508,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",1667.85,{},168750,0,"""Africa""" +2024-03-10,91397,3108,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4510.08,{},15118,0,"""Asia""" +2024-04-26,91398,8078,"[\""Laptop\""]",302.94,{},103560,0,"""Africa""" +2024-06-17,91399,4086,"[\""Wireless Mouse\"", \""Headphones\""]",3761.97,{},185386,1,"""Europe""" +2023-12-17,91400,5501,"[\""Wireless Mouse\"", \""Phone\""]",120.71,"{\""loyalty\"": \""10%\""}",27982,0,"""Africa""" +2024-10-26,91401,6761,"[\""Laptop\"", \""Headphones\""]",1832.82,{},47394,0,"""Asia""" +2023-04-14,91402,3858,"[\""Keyboard\""]",1397.06,{},177417,0,"""Europe""" +2024-04-08,91403,972,"[\""Wireless Mouse\"", \""Monitor\""]",787.38,{},248949,0,"""Asia""" +2023-05-29,91404,3957,"[\""Headphones\"", \""Phone\""]",1666.36,"{\""loyalty\"": \""28%\""}",132028,1,"""North America""" +2023-07-25,91405,2156,"[\""Monitor\"", \""Tablet\""]",239.69,"{\"": \""18%\""}",183053,0,"""Europe""" +2023-05-01,91406,3469,"[\""Headphones\""]",274.81,{},259363,1,"""Asia""" +2023-02-22,91407,2996,"[\""Headphones\""]",577.09,{},176254,1,"""Europe""" +2023-09-04,91408,7156,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3737.02,"{\""loyalty\"": \""16%\""}",78751,0,"""Europe""" +2024-03-31,91409,4577,"[\""Phone\"", \""Headphones\""]",2782.51,{},33273,0,"""Africa""" +2023-03-17,91410,5156,"[\""Headphones\"", \""Tablet\""]",2849.47,{},156150,1,"""Europe""" +2023-03-25,91411,5468,"[\""Keyboard\""]",1673.34,"{\""promo\"": \""16%\""}",83494,0,"""South America""" +2023-04-29,91412,5448,"[\""Charger\"", \""Phone\""]",3073.39,{},114311,0,"""Africa""" +2024-03-04,91413,2442,"[\""Headphones\"", \""Laptop\""]",1740.96,"{\""loyalty\"": \""14%\""}",24894,0,"""Europe""" +2024-08-11,91414,602,"[\""Headphones\""]",3461.84,"{\""loyalty\"": \""14%\""}",73396,1,"""Asia""" +2023-06-02,91415,6470,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4247.29,"{\""loyalty\"": \""13%\""}",213928,1,"""Africa""" +2023-10-22,91416,3238,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3597.02,{},43712,1,"""Asia""" +2023-08-05,91417,1690,"[\""Wireless Mouse\"", \""Charger\""]",2900.35,{},230056,1,"""North America""" +2023-02-22,91418,3040,"[\""Wireless Mouse\""]",1170.55,{},179702,0,"""South America""" +2024-03-03,91419,7449,"[\""Laptop\""]",1867.28,"{\"": \""30%\""}",65628,1,"""South America""" +2023-05-01,91420,1910,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1872.01,{},131613,1,"""Europe""" +2024-02-19,91421,8378,"[\""Tablet\"", \""Wireless Mouse\""]",640.23,{},275124,0,"""South America""" +2023-07-23,91422,6598,"[\""Tablet\""]",2078.92,{},102263,0,"""South America""" +2024-11-11,91423,6328,"[\""Headphones\""]",2994.61,"{\"": \""27%\""}",166591,0,"""South America""" +2024-11-10,91424,1977,"[\""Monitor\"", \""Phone\""]",2765.1,{},238570,0,"""Africa""" +2024-06-21,91425,9825,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2063.18,"{\"": \""12%\""}",20867,1,"""North America""" +2024-01-25,91426,2389,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2010.96,{},187786,1,"""Europe""" +2024-11-09,91427,2799,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",510.77,{},212276,0,"""North America""" +2023-12-13,91428,4739,"[\""Keyboard\""]",898.43,{},180839,1,"""Africa""" +2024-08-05,91429,2634,"[\""Phone\"", \""Laptop\""]",4706.94,{},165030,0,"""Asia""" +2023-08-03,91430,5364,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",3246.49,"{\"": \""23%\""}",103599,1,"""Africa""" +2024-05-27,91431,1940,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",443.2,"{\"": \""6%\""}",185534,0,"""Asia""" +2023-05-29,91432,7736,"[\""Charger\"", \""Tablet\""]",2855.93,"{\"": \""6%\""}",162764,0,"""North America""" +2024-10-18,91433,7323,"[\""Tablet\"", \""Laptop\""]",296.97,"{\""promo\"": \""5%\""}",55044,0,"""North America""" +2023-05-30,91434,594,"[\""Keyboard\""]",4725.1,{},52334,0,"""Asia""" +2024-06-29,91435,4146,"[\""Laptop\"", \""Headphones\""]",130.02,{},233964,1,"""South America""" +2024-01-18,91436,323,"[\""Phone\"", \""Tablet\""]",2138.57,{},205858,1,"""Africa""" +2024-08-27,91437,7534,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",548.32,"{\""promo\"": \""13%\""}",206989,0,"""North America""" +2024-03-13,91438,2838,"[\""Headphones\""]",2056.54,{},268704,1,"""Africa""" +2024-07-27,91439,6469,"[\""Charger\""]",268.77,{},173460,0,"""North America""" +2023-07-30,91440,8173,"[\""Charger\"", \""Headphones\"", \""Phone\""]",452.69,"{\"": \""8%\""}",235585,0,"""South America""" +2023-02-09,91441,5301,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",65.46,{},290705,0,"""Europe""" +2023-03-26,91442,676,"[\""Tablet\""]",3743.99,{},18195,0,"""Europe""" +2023-03-07,91443,7575,"[\""Phone\""]",1617.43,{},4314,1,"""South America""" +2024-11-29,91444,1468,"[\""Headphones\"", \""Phone\""]",4415.66,"{\""promo\"": \""7%\""}",204383,0,"""Africa""" +2024-09-15,91445,9499,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",3914.09,{},212016,1,"""North America""" +2024-04-25,91446,9627,"[\""Laptop\"", \""Phone\""]",3910.48,{},249969,1,"""Europe""" +2023-03-01,91447,7984,"[\""Laptop\"", \""Monitor\""]",1446.01,"{\"": \""8%\""}",266012,0,"""Africa""" +2024-07-19,91448,7716,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1089.32,"{\"": \""14%\""}",211011,1,"""Africa""" +2023-12-08,91449,5380,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",798.46,"{\""seasonal\"": \""29%\""}",43716,1,"""Africa""" +2023-09-17,91450,6117,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",415.81,"{\""seasonal\"": \""29%\""}",178612,1,"""North America""" +2024-07-31,91451,3597,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4731.74,{},168221,0,"""Africa""" +2024-07-10,91452,8464,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",744.52,"{\"": \""20%\""}",202951,0,"""Asia""" +2023-08-26,91453,7666,"[\""Monitor\""]",2913.41,"{\"": \""13%\""}",64445,0,"""South America""" +2023-07-11,91454,4378,"[\""Keyboard\"", \""Wireless Mouse\""]",2128.79,{},209176,0,"""Africa""" +2024-10-28,91455,2546,"[\""Laptop\"", \""Tablet\""]",372.3,{},133742,0,"""Asia""" +2023-06-22,91456,511,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",1586.84,"{\""promo\"": \""14%\""}",108379,1,"""Europe""" +2024-04-28,91457,9115,"[\""Headphones\"", \""Keyboard\""]",2731.11,"{\"": \""19%\""}",196729,1,"""Europe""" +2024-11-11,91458,1983,"[\""Laptop\""]",633.62,{},8758,1,"""Europe""" +2024-06-21,91459,8277,"[\""Wireless Mouse\"", \""Headphones\""]",3346.26,{},262062,1,"""Africa""" +2023-08-10,91460,2063,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",3987.15,"{\""promo\"": \""11%\""}",182967,0,"""Africa""" +2023-09-01,91461,5869,"[\""Laptop\""]",4537.5,"{\"": \""8%\""}",250559,0,"""South America""" +2024-07-15,91462,3840,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1815.61,{},96122,1,"""North America""" +2023-03-03,91463,3906,"[\""Wireless Mouse\"", \""Laptop\""]",2005.08,"{\""loyalty\"": \""5%\""}",119585,0,"""Europe""" +2024-04-17,91464,1752,"[\""Phone\"", \""Headphones\""]",341.7,{},109726,0,"""Asia""" +2023-01-31,91465,8520,"[\""Laptop\""]",3812.01,"{\""promo\"": \""15%\""}",228490,0,"""Asia""" +2023-05-22,91466,7053,"[\""Keyboard\""]",2121.84,{},154047,0,"""North America""" +2023-04-19,91467,2956,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3057.61,"{\"": \""15%\""}",50236,0,"""North America""" +2023-05-23,91468,6565,"[\""Monitor\"", \""Headphones\""]",3320.65,{},138998,1,"""Asia""" +2024-10-22,91469,4685,"[\""Laptop\""]",1245.61,{},49592,0,"""South America""" +2024-06-01,91470,4787,"[\""Phone\"", \""Charger\""]",308.04,{},127381,0,"""North America""" +2024-02-12,91471,4898,"[\""Tablet\""]",2369.25,{},46951,1,"""Asia""" +2024-11-11,91472,9806,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4996.37,"{\""promo\"": \""14%\""}",19737,1,"""Asia""" +2024-07-23,91473,4345,"[\""Monitor\""]",3214.65,{},84384,1,"""Asia""" +2023-12-16,91474,9114,"[\""Keyboard\"", \""Wireless Mouse\""]",2113.79,"{\""promo\"": \""29%\""}",81997,1,"""Africa""" +2023-12-05,91475,5510,"[\""Keyboard\""]",3818.06,{},269266,1,"""Europe""" +2024-07-18,91476,4217,"[\""Phone\""]",3222.41,"{\""loyalty\"": \""26%\""}",27832,1,"""Africa""" +2024-05-18,91477,7890,"[\""Phone\"", \""Headphones\""]",421.02,{},162780,1,"""North America""" +2024-07-16,91478,6831,"[\""Charger\""]",4784.95,{},249326,1,"""South America""" +2023-08-27,91479,2061,"[\""Laptop\"", \""Monitor\""]",4727.2,{},82940,1,"""North America""" +2024-01-06,91480,2295,"[\""Charger\""]",3519.34,"{\""seasonal\"": \""27%\""}",232305,1,"""North America""" +2024-10-30,91481,4102,"[\""Charger\"", \""Wireless Mouse\""]",2950.08,{},146639,1,"""Europe""" +2023-08-04,91482,4900,"[\""Charger\"", \""Phone\""]",2602.72,"{\""promo\"": \""10%\""}",128920,0,"""Asia""" +2024-03-16,91483,4231,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",762.2,"{\""promo\"": \""12%\""}",254657,0,"""South America""" +2023-02-14,91484,9418,"[\""Tablet\"", \""Monitor\""]",1018.02,{},61078,0,"""North America""" +2023-06-10,91485,6898,"[\""Headphones\""]",3493.82,"{\""promo\"": \""18%\""}",241717,0,"""North America""" +2023-04-22,91486,8927,"[\""Headphones\"", \""Keyboard\""]",1471.73,"{\""loyalty\"": \""16%\""}",200145,0,"""Africa""" +2023-09-26,91487,272,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1345.74,"{\""seasonal\"": \""20%\""}",268019,1,"""North America""" +2024-01-10,91488,7023,"[\""Wireless Mouse\"", \""Tablet\""]",2656.04,"{\""seasonal\"": \""8%\""}",61469,1,"""Asia""" +2023-02-13,91489,4807,"[\""Laptop\""]",2342.37,{},223959,0,"""Asia""" +2024-08-08,91490,6061,"[\""Headphones\"", \""Laptop\""]",4212.84,{},207046,1,"""Europe""" +2024-09-03,91491,6769,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",1008.75,"{\"": \""5%\""}",3728,1,"""Asia""" +2024-09-22,91492,7096,"[\""Keyboard\""]",4874.61,{},29599,1,"""Europe""" +2024-03-12,91493,5127,"[\""Keyboard\"", \""Laptop\""]",2544.09,"{\""loyalty\"": \""18%\""}",65134,0,"""South America""" +2023-02-11,91494,3459,"[\""Wireless Mouse\"", \""Tablet\""]",4238.35,"{\"": \""8%\""}",292072,0,"""South America""" +2024-06-25,91495,1921,"[\""Keyboard\""]",2990.5,{},204639,1,"""Africa""" +2023-06-06,91496,9262,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",2410.35,{},28231,1,"""South America""" +2024-06-06,91497,4029,"[\""Tablet\""]",3486.19,{},249104,1,"""Asia""" +2024-03-20,91498,4097,"[\""Headphones\""]",3967.85,"{\"": \""9%\""}",144631,0,"""Europe""" +2023-09-10,91499,1447,"[\""Laptop\"", \""Wireless Mouse\""]",4598.83,{},40399,1,"""Asia""" +2023-05-09,91500,3589,"[\""Tablet\""]",2752.98,"{\"": \""16%\""}",200222,1,"""Europe""" +2024-09-26,91501,6664,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4759.72,{},167187,1,"""South America""" +2024-04-22,91502,3069,"[\""Keyboard\"", \""Charger\""]",1371.76,"{\""promo\"": \""12%\""}",241959,1,"""Europe""" +2024-08-03,91503,6313,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2345.68,{},164080,1,"""Europe""" +2023-03-22,91504,5316,"[\""Phone\"", \""Charger\""]",4455.7,"{\""promo\"": \""12%\""}",39749,1,"""Asia""" +2023-09-16,91505,2352,"[\""Charger\""]",917.46,"{\""promo\"": \""10%\""}",196387,0,"""Asia""" +2023-03-04,91506,9840,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4643.15,"{\""seasonal\"": \""25%\""}",144733,1,"""North America""" +2024-10-17,91507,4333,"[\""Charger\"", \""Monitor\""]",4587.94,"{\"": \""22%\""}",245127,1,"""Asia""" +2023-10-13,91508,2185,"[\""Keyboard\""]",2152.93,"{\""seasonal\"": \""24%\""}",242679,1,"""Europe""" +2023-01-09,91509,5545,"[\""Monitor\""]",2796.35,"{\""promo\"": \""14%\""}",286824,0,"""Asia""" +2024-10-05,91510,43,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3254.49,{},233149,0,"""Europe""" +2024-03-02,91511,3805,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4154.67,"{\"": \""29%\""}",209428,0,"""Europe""" +2024-08-12,91512,1496,"[\""Phone\"", \""Headphones\""]",350.39,{},299315,0,"""Asia""" +2023-09-23,91513,2915,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4016.21,"{\"": \""13%\""}",220627,1,"""Asia""" +2023-03-15,91514,1170,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1011.72,"{\""loyalty\"": \""23%\""}",100632,1,"""Africa""" +2023-04-25,91515,557,"[\""Laptop\"", \""Tablet\""]",1664.89,"{\"": \""18%\""}",283019,1,"""Europe""" +2023-10-28,91516,1009,"[\""Headphones\"", \""Wireless Mouse\""]",931.9,{},141323,0,"""Europe""" +2023-06-15,91517,5680,"[\""Charger\"", \""Headphones\""]",4897.12,{},229045,1,"""Asia""" +2023-08-07,91518,6148,"[\""Laptop\""]",4746.73,"{\"": \""11%\""}",218980,0,"""North America""" +2024-10-17,91519,1258,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",1458.28,{},168863,0,"""Asia""" +2024-10-17,91520,689,"[\""Charger\""]",3180.66,{},288737,1,"""Africa""" +2024-12-09,91521,3307,"[\""Wireless Mouse\""]",991.95,"{\"": \""7%\""}",211965,0,"""Africa""" +2023-09-29,91522,5652,"[\""Wireless Mouse\"", \""Phone\""]",1857.97,"{\"": \""29%\""}",4933,1,"""Asia""" +2023-02-20,91523,5447,"[\""Charger\""]",3086.67,"{\""seasonal\"": \""9%\""}",169999,1,"""Europe""" +2024-06-24,91524,2368,"[\""Headphones\"", \""Keyboard\""]",3300.57,"{\"": \""6%\""}",58412,0,"""Asia""" +2024-08-28,91525,2485,"[\""Tablet\"", \""Charger\""]",1203.57,{},135036,0,"""Europe""" +2024-12-07,91526,9799,"[\""Laptop\"", \""Tablet\""]",3766.54,{},14306,1,"""Africa""" +2023-09-25,91527,3967,"[\""Phone\"", \""Wireless Mouse\""]",4943.77,"{\"": \""8%\""}",169548,0,"""North America""" +2024-02-08,91528,283,"[\""Charger\"", \""Wireless Mouse\""]",1504.5,"{\"": \""21%\""}",297038,1,"""Africa""" +2023-01-24,91529,1415,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2019.61,"{\""seasonal\"": \""19%\""}",82202,1,"""South America""" +2024-11-18,91530,2301,"[\""Charger\""]",1005.69,"{\""promo\"": \""17%\""}",108954,1,"""Asia""" +2023-05-01,91531,6194,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",547.0,"{\""promo\"": \""21%\""}",101667,0,"""North America""" +2023-12-06,91532,1935,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2577.75,{},232278,1,"""South America""" +2024-12-16,91533,5957,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",616.91,{},214297,0,"""Europe""" +2024-05-10,91534,2650,"[\""Headphones\"", \""Monitor\""]",3088.86,"{\""promo\"": \""20%\""}",233632,1,"""North America""" +2024-01-09,91535,7655,"[\""Headphones\""]",3077.51,"{\""seasonal\"": \""14%\""}",192209,0,"""South America""" +2024-05-16,91536,1272,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",3304.08,{},29719,0,"""Africa""" +2023-03-07,91537,8768,"[\""Wireless Mouse\"", \""Monitor\""]",3656.71,{},219862,0,"""North America""" +2023-11-03,91538,1580,"[\""Laptop\""]",4341.01,{},95865,1,"""Africa""" +2024-04-17,91539,4263,"[\""Monitor\""]",4604.95,"{\""loyalty\"": \""8%\""}",80176,1,"""South America""" +2023-09-18,91540,4053,"[\""Phone\""]",1129.72,"{\""promo\"": \""28%\""}",293758,0,"""Asia""" +2024-10-01,91541,262,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",118.37,{},296957,0,"""South America""" +2024-12-30,91542,8973,"[\""Laptop\"", \""Charger\""]",3445.93,"{\"": \""9%\""}",249971,0,"""Asia""" +2023-03-05,91543,772,"[\""Charger\""]",2728.6,{},221866,0,"""North America""" +2024-12-19,91544,9304,"[\""Charger\"", \""Headphones\""]",2287.51,{},141027,0,"""Africa""" +2024-02-11,91545,133,"[\""Charger\"", \""Monitor\""]",982.62,{},245716,1,"""North America""" +2023-08-07,91546,8148,"[\""Headphones\""]",3425.83,"{\""promo\"": \""15%\""}",294232,0,"""Asia""" +2023-12-28,91547,5976,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3952.79,"{\""loyalty\"": \""15%\""}",211082,0,"""North America""" +2024-05-06,91548,6054,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4142.82,"{\"": \""11%\""}",233656,1,"""Europe""" +2024-03-18,91549,5043,"[\""Monitor\"", \""Keyboard\""]",3869.37,"{\""promo\"": \""23%\""}",111700,1,"""South America""" +2023-10-30,91550,9730,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3232.8,{},261398,1,"""Europe""" +2024-02-02,91551,6155,"[\""Wireless Mouse\""]",3742.1,{},54827,1,"""Europe""" +2024-10-04,91552,1216,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3736.96,"{\"": \""17%\""}",229107,0,"""North America""" +2024-04-23,91553,9910,"[\""Monitor\"", \""Headphones\""]",4961.92,{},1676,1,"""Africa""" +2024-06-08,91554,685,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",2248.16,{},169211,0,"""Africa""" +2024-07-06,91555,9313,"[\""Keyboard\""]",1180.76,{},279802,0,"""Africa""" +2023-03-17,91556,8071,"[\""Tablet\"", \""Wireless Mouse\""]",2391.78,"{\""seasonal\"": \""9%\""}",223554,0,"""South America""" +2024-11-03,91557,1491,"[\""Wireless Mouse\""]",4229.53,{},134895,0,"""Europe""" +2023-11-27,91558,6493,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1341.35,"{\"": \""11%\""}",298798,0,"""Africa""" +2024-06-07,91559,9114,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4874.2,{},255078,0,"""Africa""" +2023-04-21,91560,143,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2293.82,"{\""loyalty\"": \""21%\""}",1717,1,"""Europe""" +2024-05-18,91561,5231,"[\""Keyboard\"", \""Wireless Mouse\""]",3710.57,"{\""loyalty\"": \""29%\""}",228120,1,"""North America""" +2023-12-21,91562,3713,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3094.42,{},69535,1,"""Africa""" +2023-11-16,91563,2157,"[\""Tablet\"", \""Keyboard\""]",4906.76,{},42547,1,"""Europe""" +2024-09-12,91564,4147,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",561.82,"{\""loyalty\"": \""28%\""}",135493,0,"""Africa""" +2023-11-22,91565,6804,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4781.45,{},6778,1,"""Asia""" +2023-03-18,91566,799,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1791.96,"{\""promo\"": \""7%\""}",283275,0,"""South America""" +2023-03-08,91567,8991,"[\""Keyboard\"", \""Phone\""]",4508.6,{},143779,1,"""Africa""" +2023-03-25,91568,6605,"[\""Phone\""]",587.99,"{\"": \""26%\""}",264952,0,"""Europe""" +2024-12-08,91569,356,"[\""Wireless Mouse\""]",3526.58,{},137513,0,"""Asia""" +2023-05-20,91570,4165,"[\""Headphones\"", \""Tablet\""]",4098.97,"{\""promo\"": \""12%\""}",167011,1,"""North America""" +2023-11-20,91571,6564,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",939.38,"{\""seasonal\"": \""21%\""}",293547,1,"""North America""" +2023-08-07,91572,7725,"[\""Phone\"", \""Monitor\""]",2907.14,{},179713,1,"""Asia""" +2023-06-14,91573,2780,"[\""Keyboard\"", \""Phone\""]",463.56,"{\"": \""20%\""}",237083,1,"""South America""" +2024-07-04,91574,2334,"[\""Laptop\"", \""Wireless Mouse\""]",1623.17,{},89849,1,"""North America""" +2023-02-08,91575,8466,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4112.59,"{\""seasonal\"": \""25%\""}",254945,1,"""Asia""" +2024-03-03,91576,9142,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1150.06,{},186529,1,"""South America""" +2024-08-31,91577,6733,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4277.84,{},89499,1,"""Europe""" +2024-06-02,91578,8355,"[\""Charger\""]",2581.45,"{\""promo\"": \""22%\""}",220361,1,"""Africa""" +2024-07-03,91579,4763,"[\""Headphones\""]",2984.53,"{\"": \""8%\""}",199815,1,"""South America""" +2024-04-24,91580,2354,"[\""Wireless Mouse\"", \""Tablet\""]",4824.52,"{\""loyalty\"": \""7%\""}",203563,1,"""South America""" +2023-03-28,91581,3328,"[\""Phone\"", \""Laptop\""]",4364.62,{},179126,0,"""North America""" +2024-05-16,91582,6644,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4830.67,"{\""loyalty\"": \""5%\""}",104495,1,"""Asia""" +2023-04-10,91583,6435,"[\""Charger\""]",1012.88,"{\""seasonal\"": \""14%\""}",75735,1,"""Europe""" +2024-05-26,91584,6544,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3036.27,{},54852,1,"""South America""" +2023-03-02,91585,9276,"[\""Laptop\"", \""Phone\""]",2444.11,{},175665,0,"""North America""" +2023-09-02,91586,9007,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",791.55,{},41377,0,"""Africa""" +2024-05-10,91587,9244,"[\""Keyboard\"", \""Phone\""]",3146.34,"{\""seasonal\"": \""27%\""}",174377,0,"""North America""" +2024-05-08,91588,1393,"[\""Phone\""]",1698.64,"{\""seasonal\"": \""10%\""}",66496,1,"""Asia""" +2024-03-02,91589,2045,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4097.12,"{\""seasonal\"": \""21%\""}",59601,0,"""Africa""" +2024-08-24,91590,3000,"[\""Keyboard\""]",432.25,{},197035,1,"""Asia""" +2024-11-30,91591,9218,"[\""Laptop\"", \""Charger\""]",2546.65,{},188857,1,"""Africa""" +2024-02-10,91592,6233,"[\""Phone\"", \""Laptop\"", \""Charger\""]",530.13,{},13190,1,"""Africa""" +2024-02-20,91593,7361,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",888.68,"{\""promo\"": \""27%\""}",179301,1,"""South America""" +2023-05-29,91594,892,"[\""Phone\""]",1547.91,{},18757,0,"""South America""" +2023-04-17,91595,2075,"[\""Laptop\"", \""Tablet\""]",2399.98,{},93733,1,"""Asia""" +2024-09-29,91596,3336,"[\""Keyboard\"", \""Headphones\""]",2731.99,"{\""promo\"": \""29%\""}",205857,1,"""South America""" +2024-04-04,91597,4436,"[\""Headphones\""]",835.43,"{\""loyalty\"": \""18%\""}",116561,0,"""Europe""" +2024-12-09,91598,3126,"[\""Monitor\""]",871.64,{},39592,0,"""Europe""" +2024-11-20,91599,4327,"[\""Tablet\"", \""Monitor\""]",90.28,{},217205,1,"""South America""" +2023-03-31,91600,3305,"[\""Laptop\"", \""Headphones\""]",3595.47,"{\""promo\"": \""30%\""}",109446,1,"""South America""" +2023-07-14,91601,4285,"[\""Charger\"", \""Wireless Mouse\""]",4210.14,{},32867,0,"""Europe""" +2023-08-17,91602,5291,"[\""Tablet\"", \""Monitor\""]",974.99,{},177596,0,"""South America""" +2023-10-16,91603,63,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4644.38,"{\""loyalty\"": \""12%\""}",280682,0,"""South America""" +2024-10-16,91604,3321,"[\""Headphones\""]",4506.37,{},264483,1,"""North America""" +2024-06-29,91605,9010,"[\""Tablet\""]",3038.67,"{\""seasonal\"": \""21%\""}",194166,1,"""Africa""" +2023-11-16,91606,7796,"[\""Wireless Mouse\"", \""Laptop\""]",1692.36,"{\""promo\"": \""11%\""}",36003,1,"""Africa""" +2023-08-21,91607,3540,"[\""Headphones\""]",4747.96,"{\""loyalty\"": \""28%\""}",20428,0,"""Europe""" +2023-08-27,91608,6915,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3851.6,"{\""promo\"": \""21%\""}",8119,1,"""Africa""" +2023-02-26,91609,1830,"[\""Headphones\"", \""Laptop\""]",3991.92,{},94565,0,"""North America""" +2023-03-22,91610,397,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4105.24,"{\""promo\"": \""9%\""}",29667,0,"""South America""" +2024-11-30,91611,7669,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3988.61,{},128814,0,"""South America""" +2024-07-24,91612,3284,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1998.45,{},294164,1,"""North America""" +2023-11-24,91613,4073,"[\""Wireless Mouse\"", \""Charger\""]",2083.04,"{\"": \""29%\""}",141485,1,"""North America""" +2024-11-11,91614,5908,"[\""Keyboard\"", \""Charger\""]",3627.91,"{\"": \""26%\""}",78878,1,"""Africa""" +2024-09-02,91615,7565,"[\""Keyboard\"", \""Wireless Mouse\""]",4991.25,{},240439,1,"""Africa""" +2023-08-02,91616,3827,"[\""Phone\"", \""Laptop\"", \""Charger\""]",3379.33,"{\""seasonal\"": \""30%\""}",20758,1,"""North America""" +2024-08-03,91617,215,"[\""Keyboard\""]",2796.65,"{\""promo\"": \""9%\""}",120614,0,"""Africa""" +2023-01-28,91618,3910,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",721.2,"{\""loyalty\"": \""28%\""}",145538,0,"""Asia""" +2023-03-04,91619,9572,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3891.95,"{\""loyalty\"": \""6%\""}",288511,0,"""North America""" +2024-07-16,91620,5786,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4238.94,"{\"": \""12%\""}",160986,1,"""Asia""" +2023-05-13,91621,9725,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4020.3,"{\""loyalty\"": \""23%\""}",95675,0,"""North America""" +2023-01-08,91622,1336,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4826.59,{},208109,1,"""Africa""" +2023-01-28,91623,5063,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",3087.93,"{\""promo\"": \""27%\""}",154440,1,"""Europe""" +2023-08-30,91624,5972,"[\""Monitor\"", \""Charger\""]",3700.81,"{\"": \""10%\""}",131500,1,"""Africa""" +2023-11-02,91625,2139,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3225.91,"{\"": \""14%\""}",15488,1,"""South America""" +2024-05-09,91626,6330,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4388.7,"{\""promo\"": \""30%\""}",104883,0,"""South America""" +2024-09-01,91627,3091,"[\""Headphones\"", \""Wireless Mouse\""]",4830.54,"{\""loyalty\"": \""8%\""}",277743,0,"""South America""" +2024-03-12,91628,3626,"[\""Laptop\""]",1739.02,{},182522,1,"""Europe""" +2023-07-01,91629,5881,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3932.96,"{\"": \""22%\""}",198734,1,"""Africa""" +2023-05-03,91630,1654,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1410.44,"{\""loyalty\"": \""6%\""}",250643,1,"""Africa""" +2023-09-02,91631,2004,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",808.12,{},281388,1,"""Europe""" +2023-06-09,91632,6496,"[\""Headphones\""]",2360.19,{},62389,1,"""Africa""" +2024-08-25,91633,7220,"[\""Keyboard\"", \""Charger\""]",1765.79,"{\""loyalty\"": \""18%\""}",238152,1,"""North America""" +2024-04-13,91634,8004,"[\""Phone\""]",482.65,{},174710,0,"""Asia""" +2024-02-28,91635,9025,"[\""Phone\"", \""Headphones\""]",3358.99,{},262703,1,"""South America""" +2024-06-16,91636,9343,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1944.92,{},196228,1,"""Africa""" +2024-04-21,91637,5978,"[\""Tablet\"", \""Keyboard\""]",3943.5,{},59445,0,"""Africa""" +2024-12-17,91638,4385,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4195.33,"{\""seasonal\"": \""6%\""}",240629,1,"""Asia""" +2023-06-24,91639,3259,"[\""Headphones\"", \""Laptop\""]",1666.15,"{\""promo\"": \""6%\""}",297315,0,"""Africa""" +2024-07-28,91640,5005,"[\""Phone\"", \""Laptop\""]",2123.36,"{\"": \""16%\""}",216768,1,"""Europe""" +2023-06-03,91641,8054,"[\""Laptop\"", \""Wireless Mouse\""]",635.01,{},49063,0,"""South America""" +2023-07-17,91642,2370,"[\""Phone\""]",1281.01,"{\"": \""5%\""}",170379,0,"""North America""" +2024-12-26,91643,4748,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1542.34,"{\""loyalty\"": \""5%\""}",145911,1,"""North America""" +2024-06-22,91644,2095,"[\""Keyboard\""]",1230.25,{},25788,1,"""Africa""" +2024-06-21,91645,3556,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1780.15,"{\""seasonal\"": \""14%\""}",59430,1,"""Asia""" +2023-08-02,91646,8779,"[\""Charger\""]",3913.7,{},8602,1,"""South America""" +2024-08-29,91647,9052,"[\""Tablet\""]",1318.04,"{\""seasonal\"": \""18%\""}",15922,1,"""South America""" +2024-10-04,91648,139,"[\""Phone\"", \""Tablet\""]",1133.63,"{\""seasonal\"": \""24%\""}",10527,0,"""Europe""" +2024-01-21,91649,6392,"[\""Monitor\""]",518.08,{},82787,1,"""Europe""" +2024-08-05,91650,7917,"[\""Keyboard\"", \""Tablet\""]",1475.39,"{\""loyalty\"": \""27%\""}",102024,0,"""Europe""" +2024-03-08,91651,1709,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4937.65,{},123800,1,"""South America""" +2023-03-27,91652,7865,"[\""Monitor\""]",498.01,{},10664,0,"""Europe""" +2024-09-21,91653,8009,"[\""Wireless Mouse\""]",397.12,"{\""loyalty\"": \""21%\""}",130102,1,"""North America""" +2024-04-27,91654,3362,"[\""Phone\""]",2146.48,{},206512,0,"""South America""" +2024-04-23,91655,3274,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",480.31,{},44377,1,"""Asia""" +2023-07-25,91656,4215,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3867.54,{},62591,0,"""Asia""" +2024-02-19,91657,1479,"[\""Monitor\"", \""Tablet\""]",1780.99,"{\""seasonal\"": \""19%\""}",267108,0,"""Asia""" +2023-02-06,91658,1115,"[\""Charger\"", \""Tablet\""]",3699.49,{},140781,0,"""South America""" +2024-01-23,91659,1226,"[\""Laptop\"", \""Monitor\""]",4521.9,{},227451,0,"""South America""" +2024-06-18,91660,678,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3165.12,{},4246,1,"""Europe""" +2023-10-01,91661,3384,"[\""Phone\"", \""Laptop\""]",2328.97,{},162309,0,"""South America""" +2024-10-12,91662,8992,"[\""Laptop\""]",3172.2,{},151160,0,"""South America""" +2023-02-16,91663,7563,"[\""Phone\"", \""Keyboard\""]",3013.16,"{\"": \""14%\""}",270087,1,"""Africa""" +2024-07-28,91664,4088,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",4278.6,{},208127,0,"""Asia""" +2023-02-02,91665,8211,"[\""Headphones\"", \""Keyboard\""]",2142.7,"{\"": \""7%\""}",133805,0,"""North America""" +2023-12-17,91666,9845,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1246.02,{},156889,0,"""North America""" +2023-07-12,91667,6552,"[\""Phone\"", \""Laptop\""]",2105.68,"{\""seasonal\"": \""25%\""}",256064,1,"""Europe""" +2023-01-14,91668,5453,"[\""Wireless Mouse\""]",1168.38,{},131577,1,"""Asia""" +2023-06-21,91669,87,"[\""Phone\""]",4301.25,"{\"": \""19%\""}",36986,1,"""Africa""" +2023-05-16,91670,5678,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1435.27,"{\"": \""24%\""}",51432,1,"""Asia""" +2024-02-15,91671,8510,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1044.75,{},75471,0,"""Asia""" +2024-06-12,91672,6151,"[\""Keyboard\""]",2953.13,"{\""loyalty\"": \""15%\""}",132255,0,"""Europe""" +2023-05-01,91673,1452,"[\""Headphones\""]",2115.64,"{\""promo\"": \""8%\""}",41510,1,"""South America""" +2024-05-26,91674,3400,"[\""Charger\"", \""Monitor\""]",2090.46,"{\"": \""9%\""}",255602,1,"""North America""" +2023-04-20,91675,4829,"[\""Tablet\"", \""Wireless Mouse\""]",57.33,"{\""seasonal\"": \""14%\""}",218527,1,"""Asia""" +2023-01-04,91676,8956,"[\""Monitor\"", \""Laptop\""]",2939.45,"{\""promo\"": \""19%\""}",31198,1,"""Europe""" +2023-12-20,91677,2297,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3948.56,{},204291,0,"""Asia""" +2023-02-10,91678,5200,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4444.96,"{\""seasonal\"": \""17%\""}",186960,1,"""Africa""" +2024-10-14,91679,7189,"[\""Charger\""]",507.54,"{\""loyalty\"": \""7%\""}",162504,1,"""Europe""" +2023-06-16,91680,3006,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4885.39,{},187629,0,"""Europe""" +2024-03-06,91681,1655,"[\""Charger\"", \""Keyboard\""]",545.33,"{\""seasonal\"": \""17%\""}",230349,1,"""North America""" +2023-05-06,91682,2991,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",3067.56,{},257239,0,"""Europe""" +2023-12-29,91683,6432,"[\""Headphones\"", \""Keyboard\""]",4874.24,{},23278,1,"""Asia""" +2024-01-18,91684,6248,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2014.9,"{\"": \""15%\""}",200134,0,"""Africa""" +2023-04-01,91685,4307,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1604.17,"{\""seasonal\"": \""9%\""}",203968,0,"""Africa""" +2023-08-20,91686,867,"[\""Laptop\"", \""Monitor\""]",3500.35,"{\""seasonal\"": \""18%\""}",16713,0,"""South America""" +2023-10-24,91687,524,"[\""Phone\"", \""Laptop\""]",2592.96,"{\""seasonal\"": \""29%\""}",122400,1,"""Africa""" +2024-06-21,91688,155,"[\""Wireless Mouse\""]",1502.35,{},288923,1,"""South America""" +2024-12-12,91689,3427,"[\""Wireless Mouse\""]",2402.65,"{\""seasonal\"": \""25%\""}",51020,1,"""North America""" +2023-08-12,91690,8437,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3400.84,"{\""seasonal\"": \""28%\""}",6928,0,"""Africa""" +2023-02-21,91691,9292,"[\""Phone\"", \""Charger\"", \""Tablet\""]",53.62,{},74247,1,"""North America""" +2023-03-18,91692,9588,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4346.78,{},63785,0,"""North America""" +2023-06-01,91693,6883,"[\""Tablet\""]",4877.05,"{\"": \""12%\""}",75809,0,"""Asia""" +2024-08-01,91694,2822,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",636.38,"{\""loyalty\"": \""14%\""}",270106,1,"""North America""" +2023-07-06,91695,2256,"[\""Keyboard\"", \""Tablet\""]",641.69,{},253584,1,"""Africa""" +2024-12-27,91696,4147,"[\""Laptop\"", \""Charger\""]",759.49,{},293211,1,"""South America""" +2024-02-10,91697,1730,"[\""Headphones\"", \""Tablet\""]",4063.98,{},181694,0,"""Europe""" +2023-08-15,91698,7708,"[\""Charger\""]",4502.63,"{\""promo\"": \""27%\""}",263333,0,"""Europe""" +2023-02-27,91699,4133,"[\""Headphones\"", \""Keyboard\""]",3458.51,"{\""promo\"": \""17%\""}",228955,1,"""Africa""" +2023-04-12,91700,1256,"[\""Phone\"", \""Keyboard\""]",411.59,"{\""loyalty\"": \""9%\""}",288697,0,"""South America""" +2023-01-02,91701,5267,"[\""Charger\"", \""Tablet\""]",2609.35,"{\""seasonal\"": \""7%\""}",66438,0,"""Asia""" +2023-01-03,91702,471,"[\""Keyboard\""]",4202.68,"{\"": \""23%\""}",166964,1,"""Europe""" +2023-03-03,91703,4420,"[\""Monitor\""]",4672.55,"{\"": \""17%\""}",84264,1,"""North America""" +2024-12-08,91704,190,"[\""Tablet\"", \""Keyboard\""]",2335.18,{},231240,0,"""Europe""" +2024-09-30,91705,2040,"[\""Monitor\""]",193.11,{},252299,0,"""South America""" +2024-12-20,91706,4646,"[\""Monitor\""]",2366.82,"{\"": \""11%\""}",14233,1,"""Asia""" +2023-02-20,91707,7883,"[\""Laptop\"", \""Monitor\""]",3655.54,{},82287,1,"""Europe""" +2023-12-04,91708,7977,"[\""Charger\"", \""Phone\""]",3897.11,{},175874,1,"""Europe""" +2024-10-20,91709,2277,"[\""Keyboard\"", \""Laptop\""]",744.49,"{\""promo\"": \""21%\""}",15665,1,"""Europe""" +2024-11-25,91710,4909,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4750.01,{},118569,0,"""Asia""" +2024-11-06,91711,9839,"[\""Charger\"", \""Headphones\""]",1170.65,{},289765,0,"""Asia""" +2024-11-14,91712,7654,"[\""Keyboard\"", \""Wireless Mouse\""]",1368.28,{},46970,0,"""North America""" +2023-04-06,91713,5018,"[\""Monitor\""]",1248.15,"{\""loyalty\"": \""29%\""}",105427,0,"""North America""" +2023-01-21,91714,5080,"[\""Wireless Mouse\""]",872.8,{},299607,0,"""Africa""" +2024-11-30,91715,6334,"[\""Charger\"", \""Phone\""]",3306.89,{},185662,1,"""South America""" +2023-09-06,91716,5341,"[\""Laptop\"", \""Charger\""]",2008.26,{},88786,1,"""South America""" +2024-12-14,91717,4502,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4116.66,{},152557,1,"""Asia""" +2024-05-24,91718,1061,"[\""Monitor\""]",548.32,{},281354,0,"""Africa""" +2024-11-05,91719,4142,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4860.68,"{\""seasonal\"": \""13%\""}",158522,1,"""Africa""" +2023-12-18,91720,2145,"[\""Headphones\"", \""Phone\""]",1106.15,{},290255,1,"""South America""" +2024-08-23,91721,9166,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3263.4,{},240679,0,"""South America""" +2023-03-11,91722,7399,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3877.46,"{\"": \""20%\""}",151619,1,"""Asia""" +2023-05-02,91723,9126,"[\""Monitor\"", \""Wireless Mouse\""]",3262.05,"{\"": \""24%\""}",41916,0,"""Europe""" +2023-06-28,91724,5897,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",3455.99,"{\""promo\"": \""14%\""}",282850,0,"""North America""" +2023-03-21,91725,5529,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",304.95,"{\""promo\"": \""16%\""}",150863,1,"""Europe""" +2024-09-13,91726,3634,"[\""Wireless Mouse\"", \""Phone\""]",2692.56,{},41952,1,"""Asia""" +2024-03-27,91727,4533,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3871.67,"{\""promo\"": \""22%\""}",205151,1,"""Asia""" +2024-11-19,91728,6208,"[\""Laptop\""]",535.75,"{\""seasonal\"": \""28%\""}",242630,0,"""Asia""" +2024-01-13,91729,8280,"[\""Wireless Mouse\"", \""Monitor\""]",1815.09,{},17678,1,"""North America""" +2023-05-30,91730,1017,"[\""Phone\"", \""Monitor\""]",1363.73,"{\"": \""7%\""}",227744,1,"""Africa""" +2023-07-16,91731,6855,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",4732.46,{},218661,0,"""Europe""" +2024-12-12,91732,1038,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2874.23,{},292185,1,"""Africa""" +2023-06-10,91733,8520,"[\""Headphones\""]",927.07,"{\""promo\"": \""17%\""}",17050,1,"""South America""" +2023-09-17,91734,2649,"[\""Laptop\""]",2478.16,{},263574,0,"""Europe""" +2023-04-22,91735,1882,"[\""Charger\""]",735.07,"{\""seasonal\"": \""27%\""}",214437,1,"""Asia""" +2023-10-28,91736,1336,"[\""Laptop\""]",3372.59,{},266166,0,"""North America""" +2024-07-15,91737,6039,"[\""Headphones\"", \""Keyboard\""]",2752.27,"{\"": \""30%\""}",185186,1,"""Asia""" +2024-10-31,91738,5532,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",784.33,{},244206,0,"""Asia""" +2024-07-24,91739,7538,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3226.7,{},251759,1,"""South America""" +2024-03-10,91740,6594,"[\""Phone\""]",1263.39,{},153709,0,"""South America""" +2024-10-03,91741,2806,"[\""Monitor\""]",4404.81,"{\""seasonal\"": \""24%\""}",132636,0,"""North America""" +2023-12-22,91742,2459,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2676.39,"{\""seasonal\"": \""11%\""}",31095,1,"""North America""" +2023-09-22,91743,5039,"[\""Tablet\""]",466.25,"{\""loyalty\"": \""20%\""}",265869,0,"""Africa""" +2023-02-19,91744,955,"[\""Headphones\"", \""Charger\""]",2837.51,{},262338,1,"""South America""" +2024-02-27,91745,7945,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3819.44,{},171331,0,"""Asia""" +2023-05-08,91746,2827,"[\""Phone\"", \""Charger\""]",3850.35,{},183895,1,"""South America""" +2024-08-19,91747,1022,"[\""Monitor\"", \""Keyboard\""]",1276.51,"{\"": \""5%\""}",50425,0,"""Europe""" +2024-05-21,91748,5092,"[\""Keyboard\"", \""Charger\""]",1559.13,"{\"": \""10%\""}",83493,1,"""South America""" +2023-12-13,91749,8386,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3941.17,"{\""promo\"": \""11%\""}",151376,0,"""Europe""" +2023-01-22,91750,526,"[\""Keyboard\"", \""Wireless Mouse\""]",1198.23,"{\""seasonal\"": \""15%\""}",32556,1,"""North America""" +2024-06-04,91751,9105,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",585.87,"{\"": \""16%\""}",46038,1,"""Africa""" +2023-03-15,91752,3836,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1711.03,"{\""promo\"": \""19%\""}",284475,1,"""North America""" +2024-03-30,91753,5005,"[\""Phone\"", \""Headphones\""]",861.42,"{\""seasonal\"": \""17%\""}",63465,1,"""South America""" +2024-10-14,91754,3234,"[\""Laptop\"", \""Keyboard\""]",502.94,{},34406,1,"""Asia""" +2024-05-04,91755,8864,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",4177.01,{},76845,1,"""South America""" +2024-04-17,91756,3953,"[\""Charger\"", \""Keyboard\""]",1294.23,"{\"": \""7%\""}",63945,0,"""South America""" +2023-07-13,91757,1403,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1569.54,{},133053,0,"""Europe""" +2023-08-02,91758,3815,"[\""Laptop\""]",1410.73,"{\""seasonal\"": \""20%\""}",209454,0,"""North America""" +2024-11-05,91759,600,"[\""Tablet\"", \""Headphones\""]",4869.28,"{\"": \""19%\""}",53387,0,"""Africa""" +2023-02-25,91760,4272,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",385.92,{},295718,1,"""North America""" +2023-04-29,91761,9934,"[\""Laptop\"", \""Wireless Mouse\""]",4821.71,{},251119,1,"""Asia""" +2023-09-11,91762,8473,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",619.05,{},117105,1,"""Europe""" +2024-07-23,91763,5205,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1012.09,{},46947,0,"""Europe""" +2024-10-24,91764,1444,"[\""Wireless Mouse\""]",3338.12,"{\""promo\"": \""27%\""}",119375,0,"""Africa""" +2023-02-24,91765,936,"[\""Monitor\"", \""Headphones\""]",1355.04,"{\"": \""22%\""}",102134,0,"""Africa""" +2024-08-04,91766,6720,"[\""Keyboard\"", \""Tablet\""]",371.49,"{\"": \""17%\""}",250223,0,"""North America""" +2024-10-29,91767,4542,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3435.6,{},201433,0,"""Africa""" +2024-12-12,91768,8726,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",2555.15,"{\""promo\"": \""19%\""}",256640,0,"""North America""" +2024-06-07,91769,1779,"[\""Phone\""]",2165.34,{},127490,0,"""North America""" +2023-07-07,91770,1766,"[\""Charger\"", \""Laptop\""]",2297.22,{},3025,0,"""North America""" +2023-10-12,91771,650,"[\""Headphones\""]",1403.05,"{\""seasonal\"": \""14%\""}",129409,0,"""North America""" +2023-08-14,91772,4839,"[\""Wireless Mouse\"", \""Charger\""]",917.06,"{\""seasonal\"": \""9%\""}",21426,1,"""Africa""" +2023-06-28,91773,2623,"[\""Tablet\"", \""Monitor\""]",2980.61,"{\""promo\"": \""25%\""}",161219,1,"""Africa""" +2024-04-08,91774,6343,"[\""Keyboard\""]",97.88,{},40804,1,"""Asia""" +2023-07-26,91775,8260,"[\""Laptop\""]",3590.98,"{\""promo\"": \""19%\""}",85191,1,"""Asia""" +2023-05-01,91776,3909,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2922.11,{},222240,0,"""Asia""" +2023-08-13,91777,6707,"[\""Keyboard\"", \""Laptop\""]",4325.6,{},13537,0,"""South America""" +2024-12-16,91778,9142,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1233.69,"{\""promo\"": \""7%\""}",125913,1,"""North America""" +2024-06-27,91779,4425,"[\""Headphones\""]",4850.68,{},202621,1,"""South America""" +2023-09-17,91780,6726,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2224.15,{},271717,0,"""North America""" +2024-04-11,91781,9446,"[\""Keyboard\"", \""Charger\""]",1485.87,{},289507,0,"""Europe""" +2024-06-29,91782,1427,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1966.22,{},253659,1,"""North America""" +2023-05-23,91783,6478,"[\""Wireless Mouse\""]",167.82,{},11799,0,"""South America""" +2023-10-15,91784,3021,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1299.84,"{\""seasonal\"": \""26%\""}",130642,1,"""Asia""" +2023-01-12,91785,1451,"[\""Phone\""]",4415.86,"{\""seasonal\"": \""24%\""}",254783,0,"""Africa""" +2024-12-13,91786,7351,"[\""Monitor\"", \""Phone\""]",4152.94,"{\""promo\"": \""27%\""}",192655,0,"""Asia""" +2024-05-03,91787,1097,"[\""Tablet\"", \""Phone\""]",2852.57,"{\""promo\"": \""29%\""}",21812,1,"""Asia""" +2023-08-22,91788,340,"[\""Wireless Mouse\""]",3068.98,{},71948,0,"""Africa""" +2023-12-19,91789,4858,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",668.1,{},7337,1,"""Africa""" +2023-09-05,91790,1477,"[\""Phone\"", \""Monitor\""]",3111.59,"{\"": \""17%\""}",252251,0,"""Asia""" +2023-09-14,91791,1026,"[\""Charger\""]",4999.51,{},174048,1,"""Africa""" +2023-07-13,91792,9999,"[\""Headphones\""]",224.85,{},205443,1,"""Europe""" +2024-07-14,91793,7408,"[\""Wireless Mouse\"", \""Laptop\""]",2665.92,{},215006,1,"""Asia""" +2023-01-07,91794,790,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3758.79,"{\"": \""29%\""}",218863,0,"""Asia""" +2024-01-07,91795,1255,"[\""Monitor\"", \""Charger\""]",4646.9,{},229028,1,"""South America""" +2023-07-08,91796,9750,"[\""Phone\""]",2689.15,{},14839,0,"""Europe""" +2023-01-18,91797,8110,"[\""Keyboard\"", \""Wireless Mouse\""]",4963.26,{},218042,1,"""South America""" +2024-05-29,91798,8716,"[\""Laptop\"", \""Monitor\""]",4093.4,{},196878,1,"""North America""" +2023-09-12,91799,711,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",3131.04,{},8392,0,"""Europe""" +2024-09-13,91800,1260,"[\""Charger\"", \""Phone\"", \""Tablet\""]",2639.39,{},70968,1,"""North America""" +2023-06-12,91801,7300,"[\""Headphones\""]",2135.9,"{\""promo\"": \""15%\""}",90174,1,"""North America""" +2023-10-15,91802,8579,"[\""Wireless Mouse\""]",3791.72,"{\""loyalty\"": \""17%\""}",16603,0,"""North America""" +2023-01-03,91803,4860,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",2577.79,"{\""loyalty\"": \""23%\""}",69461,0,"""Asia""" +2024-10-30,91804,5142,"[\""Tablet\""]",3259.68,"{\""promo\"": \""19%\""}",57448,1,"""Africa""" +2023-11-24,91805,4694,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2406.52,{},196360,0,"""Asia""" +2023-07-08,91806,1408,"[\""Wireless Mouse\""]",3944.04,{},167274,0,"""South America""" +2023-07-10,91807,73,"[\""Laptop\""]",2758.51,"{\""seasonal\"": \""9%\""}",57371,0,"""North America""" +2023-07-26,91808,8700,"[\""Laptop\""]",322.45,"{\""promo\"": \""6%\""}",124074,0,"""Asia""" +2023-11-08,91809,7692,"[\""Monitor\""]",2162.25,{},154400,1,"""North America""" +2023-04-24,91810,8765,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3422.4,{},199130,1,"""Europe""" +2023-07-13,91811,7646,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1013.26,"{\""loyalty\"": \""13%\""}",125812,1,"""Africa""" +2023-08-30,91812,5381,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1931.63,{},97489,1,"""North America""" +2024-06-13,91813,3491,"[\""Headphones\"", \""Phone\""]",1107.69,"{\"": \""21%\""}",206851,1,"""Asia""" +2023-05-09,91814,4930,"[\""Laptop\""]",855.36,"{\""seasonal\"": \""20%\""}",228092,0,"""North America""" +2024-10-20,91815,5176,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1124.5,"{\"": \""29%\""}",154043,0,"""Europe""" +2023-08-08,91816,1044,"[\""Headphones\"", \""Wireless Mouse\""]",1555.2,{},89660,1,"""Asia""" +2023-12-15,91817,4810,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",499.64,"{\"": \""30%\""}",206841,0,"""Europe""" +2024-05-24,91818,7798,"[\""Headphones\""]",715.78,{},30387,1,"""South America""" +2023-02-23,91819,5915,"[\""Phone\"", \""Wireless Mouse\""]",457.75,{},222651,1,"""North America""" +2023-03-04,91820,1672,"[\""Laptop\""]",4873.23,"{\""promo\"": \""7%\""}",201242,1,"""Asia""" +2023-09-16,91821,8656,"[\""Tablet\"", \""Phone\""]",1894.95,{},139760,0,"""South America""" +2024-12-06,91822,8998,"[\""Monitor\"", \""Wireless Mouse\""]",3542.97,"{\"": \""8%\""}",220291,0,"""Europe""" +2023-12-25,91823,2169,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3004.76,"{\"": \""5%\""}",202779,1,"""Asia""" +2024-03-05,91824,5887,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",4833.2,{},6753,1,"""Asia""" +2023-09-11,91825,7510,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3829.64,{},299054,0,"""South America""" +2024-06-03,91826,703,"[\""Tablet\"", \""Charger\""]",1231.84,{},34258,1,"""North America""" +2024-09-13,91827,1429,"[\""Phone\""]",1811.05,{},25041,1,"""Europe""" +2024-05-24,91828,1790,"[\""Wireless Mouse\"", \""Charger\""]",3598.48,{},42705,0,"""Asia""" +2023-05-20,91829,776,"[\""Tablet\"", \""Keyboard\""]",1853.88,{},206279,0,"""Europe""" +2024-06-04,91830,15,"[\""Laptop\""]",2875.31,"{\""promo\"": \""26%\""}",69464,1,"""Asia""" +2023-06-26,91831,6044,"[\""Wireless Mouse\"", \""Laptop\""]",2749.56,"{\"": \""30%\""}",32311,1,"""Europe""" +2024-01-12,91832,6100,"[\""Keyboard\""]",314.23,"{\""loyalty\"": \""29%\""}",31174,1,"""Asia""" +2024-06-13,91833,1023,"[\""Charger\"", \""Wireless Mouse\""]",2388.99,"{\""seasonal\"": \""14%\""}",282772,1,"""South America""" +2024-12-10,91834,9573,"[\""Wireless Mouse\""]",3584.57,"{\""loyalty\"": \""25%\""}",218903,1,"""Asia""" +2024-06-13,91835,3776,"[\""Headphones\""]",625.02,{},55189,0,"""Europe""" +2023-07-17,91836,4818,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3893.31,{},143397,1,"""Asia""" +2023-01-19,91837,4257,"[\""Phone\""]",3680.19,"{\""promo\"": \""30%\""}",59044,0,"""South America""" +2023-10-20,91838,335,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",1213.14,{},211732,0,"""South America""" +2023-08-01,91839,7026,"[\""Phone\"", \""Charger\"", \""Headphones\""]",587.45,"{\""promo\"": \""12%\""}",13640,1,"""South America""" +2023-05-25,91840,4632,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3463.59,"{\""seasonal\"": \""17%\""}",175992,1,"""Asia""" +2024-07-02,91841,1974,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1254.75,"{\""seasonal\"": \""8%\""}",183450,0,"""Europe""" +2024-10-08,91842,5951,"[\""Laptop\"", \""Headphones\""]",2274.82,"{\""loyalty\"": \""21%\""}",52944,1,"""Africa""" +2024-04-04,91843,1192,"[\""Tablet\"", \""Headphones\""]",4710.9,{},23038,1,"""Asia""" +2024-07-18,91844,8176,"[\""Phone\""]",2476.7,"{\""promo\"": \""22%\""}",151171,1,"""South America""" +2023-10-12,91845,3154,"[\""Wireless Mouse\""]",3401.16,{},241683,1,"""Africa""" +2023-01-29,91846,2929,"[\""Headphones\""]",4130.75,"{\""seasonal\"": \""21%\""}",253749,1,"""Asia""" +2023-06-26,91847,1066,"[\""Laptop\"", \""Headphones\""]",946.12,{},173019,1,"""Europe""" +2023-09-15,91848,6068,"[\""Headphones\"", \""Wireless Mouse\""]",3554.76,"{\""loyalty\"": \""10%\""}",215451,0,"""Asia""" +2024-09-25,91849,2807,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4220.33,"{\""seasonal\"": \""28%\""}",21429,0,"""Africa""" +2023-02-22,91850,9424,"[\""Monitor\""]",3184.6,{},277726,0,"""Africa""" +2024-07-11,91851,2060,"[\""Tablet\""]",1090.18,{},207608,1,"""Africa""" +2023-12-28,91852,9979,"[\""Tablet\""]",493.82,"{\""seasonal\"": \""13%\""}",273376,0,"""Africa""" +2024-08-22,91853,7238,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2653.07,"{\""promo\"": \""26%\""}",97256,0,"""Asia""" +2023-11-07,91854,6463,"[\""Wireless Mouse\""]",4970.85,"{\""seasonal\"": \""20%\""}",82745,0,"""Europe""" +2023-11-05,91855,8907,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3526.94,{},145621,0,"""Europe""" +2024-05-07,91856,5160,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",3055.63,"{\"": \""20%\""}",247241,1,"""South America""" +2023-02-21,91857,1668,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4675.8,{},90067,1,"""Europe""" +2023-10-23,91858,1430,"[\""Wireless Mouse\""]",3260.8,"{\"": \""6%\""}",95455,0,"""North America""" +2024-11-22,91859,5224,"[\""Laptop\"", \""Wireless Mouse\""]",4682.0,"{\""promo\"": \""27%\""}",174976,0,"""South America""" +2023-01-06,91860,9026,"[\""Tablet\"", \""Phone\"", \""Charger\""]",345.43,"{\""seasonal\"": \""26%\""}",201159,1,"""Africa""" +2024-10-15,91861,5093,"[\""Headphones\"", \""Keyboard\""]",4148.94,{},243249,1,"""North America""" +2023-10-24,91862,3168,"[\""Charger\""]",3284.12,"{\""seasonal\"": \""5%\""}",281387,1,"""South America""" +2023-04-09,91863,9793,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3506.14,"{\""promo\"": \""22%\""}",145340,1,"""North America""" +2023-01-25,91864,4074,"[\""Keyboard\"", \""Laptop\""]",1698.08,{},225015,0,"""North America""" +2023-07-29,91865,2795,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4919.87,{},133826,1,"""South America""" +2024-06-18,91866,6986,"[\""Charger\""]",999.23,{},73157,1,"""South America""" +2024-01-21,91867,8440,"[\""Headphones\"", \""Monitor\""]",2972.73,"{\""seasonal\"": \""16%\""}",123412,0,"""Europe""" +2023-07-17,91868,7015,"[\""Headphones\""]",3892.96,"{\""promo\"": \""29%\""}",179648,0,"""Asia""" +2024-03-24,91869,1968,"[\""Laptop\""]",3285.78,"{\""loyalty\"": \""12%\""}",34454,1,"""Africa""" +2023-06-09,91870,8079,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",105.47,{},83132,0,"""Africa""" +2023-02-18,91871,6116,"[\""Laptop\""]",2796.26,"{\""promo\"": \""17%\""}",101589,1,"""South America""" +2023-01-17,91872,3628,"[\""Monitor\""]",3559.78,{},193910,1,"""South America""" +2023-01-16,91873,5940,"[\""Monitor\""]",1444.26,{},105923,1,"""Asia""" +2024-01-30,91874,4465,"[\""Charger\"", \""Tablet\""]",999.86,"{\""seasonal\"": \""12%\""}",254919,0,"""Europe""" +2023-07-15,91875,3000,"[\""Keyboard\"", \""Tablet\""]",3501.24,"{\""promo\"": \""16%\""}",167867,0,"""Africa""" +2024-07-25,91876,4533,"[\""Wireless Mouse\"", \""Headphones\""]",2385.93,{},174157,0,"""South America""" +2023-07-24,91877,4553,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2627.58,{},19974,0,"""Africa""" +2023-01-12,91878,5451,"[\""Wireless Mouse\""]",2923.67,{},216739,1,"""North America""" +2023-02-16,91879,7535,"[\""Phone\"", \""Charger\""]",4566.96,{},174075,0,"""Africa""" +2023-04-13,91880,6399,"[\""Monitor\"", \""Wireless Mouse\""]",4599.93,"{\"": \""7%\""}",117214,1,"""South America""" +2023-04-21,91881,5307,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",631.01,"{\"": \""6%\""}",214725,1,"""Africa""" +2023-08-24,91882,9858,"[\""Keyboard\""]",1457.83,{},121021,1,"""Asia""" +2023-12-03,91883,4329,"[\""Headphones\"", \""Keyboard\""]",4643.85,"{\""loyalty\"": \""22%\""}",170157,1,"""North America""" +2023-06-15,91884,5361,"[\""Headphones\"", \""Tablet\""]",762.5,"{\"": \""10%\""}",162631,1,"""Asia""" +2023-02-14,91885,635,"[\""Charger\"", \""Tablet\""]",1809.86,"{\""seasonal\"": \""28%\""}",192233,0,"""Africa""" +2023-01-27,91886,2328,"[\""Laptop\""]",4264.7,{},297186,0,"""Asia""" +2024-11-14,91887,6482,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",753.56,{},101855,0,"""South America""" +2024-10-08,91888,7642,"[\""Monitor\"", \""Tablet\""]",132.6,{},116597,0,"""North America""" +2024-10-12,91889,5561,"[\""Tablet\"", \""Headphones\""]",1236.7,{},289356,1,"""Asia""" +2023-05-01,91890,7649,"[\""Laptop\"", \""Charger\""]",599.66,{},166093,0,"""Africa""" +2023-06-29,91891,9269,"[\""Headphones\""]",3294.55,"{\""seasonal\"": \""24%\""}",44057,1,"""North America""" +2023-09-28,91892,2069,"[\""Monitor\"", \""Laptop\""]",2968.37,{},160756,0,"""Europe""" +2024-06-02,91893,2581,"[\""Wireless Mouse\""]",4204.46,"{\"": \""17%\""}",191388,1,"""Asia""" +2023-11-26,91894,5214,"[\""Charger\""]",3615.47,{},126557,0,"""South America""" +2024-05-25,91895,3443,"[\""Headphones\""]",4073.89,"{\""seasonal\"": \""25%\""}",120198,1,"""Europe""" +2024-05-26,91896,8130,"[\""Phone\""]",4888.45,"{\""promo\"": \""8%\""}",62671,0,"""South America""" +2023-07-19,91897,1232,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",709.78,{},246028,0,"""South America""" +2024-09-23,91898,1580,"[\""Wireless Mouse\""]",1297.31,{},136899,1,"""Africa""" +2023-03-25,91899,4757,"[\""Laptop\""]",1302.72,"{\"": \""25%\""}",212313,1,"""North America""" +2023-09-17,91900,1779,"[\""Wireless Mouse\"", \""Phone\""]",4140.77,{},286158,0,"""South America""" +2024-01-23,91901,8402,"[\""Laptop\"", \""Monitor\""]",77.9,{},128980,0,"""Asia""" +2023-04-19,91902,4189,"[\""Tablet\""]",2945.53,"{\""loyalty\"": \""20%\""}",83810,1,"""Europe""" +2024-12-08,91903,3235,"[\""Charger\""]",946.08,{},234366,1,"""Africa""" +2024-04-20,91904,1816,"[\""Tablet\""]",902.92,"{\"": \""29%\""}",54157,1,"""Asia""" +2024-04-06,91905,7760,"[\""Phone\""]",3705.71,"{\""seasonal\"": \""16%\""}",100446,1,"""Africa""" +2023-07-23,91906,7056,"[\""Monitor\""]",1370.68,"{\""promo\"": \""8%\""}",208756,0,"""North America""" +2023-02-21,91907,3504,"[\""Keyboard\"", \""Headphones\""]",4961.96,{},249683,1,"""Africa""" +2023-12-31,91908,2646,"[\""Monitor\"", \""Wireless Mouse\""]",1729.56,{},113506,0,"""Asia""" +2024-07-18,91909,7229,"[\""Keyboard\"", \""Tablet\""]",2849.4,{},146711,0,"""Asia""" +2024-06-21,91910,2418,"[\""Keyboard\""]",1409.89,{},246719,1,"""South America""" +2023-05-25,91911,4104,"[\""Monitor\"", \""Keyboard\""]",1032.13,"{\"": \""7%\""}",72339,0,"""South America""" +2023-06-26,91912,8970,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",3814.69,"{\""seasonal\"": \""23%\""}",117347,0,"""North America""" +2024-05-20,91913,4775,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",2899.94,{},85488,1,"""Asia""" +2024-08-12,91914,3285,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2186.85,{},276465,1,"""North America""" +2023-02-26,91915,2332,"[\""Monitor\"", \""Keyboard\""]",1224.52,{},156993,1,"""Europe""" +2024-06-03,91916,8237,"[\""Laptop\""]",268.66,"{\"": \""15%\""}",240765,1,"""Africa""" +2023-08-24,91917,3638,"[\""Phone\""]",1324.72,"{\""loyalty\"": \""22%\""}",32323,0,"""Europe""" +2024-09-10,91918,4375,"[\""Charger\"", \""Laptop\""]",3826.32,{},239014,1,"""South America""" +2024-01-01,91919,3932,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",1334.85,"{\"": \""27%\""}",48182,0,"""Europe""" +2024-06-01,91920,4526,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1693.58,{},291689,0,"""South America""" +2024-02-18,91921,3673,"[\""Charger\"", \""Headphones\"", \""Phone\""]",4881.49,"{\""seasonal\"": \""23%\""}",273320,1,"""Europe""" +2024-07-26,91922,8514,"[\""Charger\"", \""Phone\""]",4169.32,{},181328,0,"""Europe""" +2024-03-16,91923,506,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",2247.2,{},127162,0,"""North America""" +2023-09-25,91924,4004,"[\""Headphones\""]",4255.17,"{\""seasonal\"": \""10%\""}",208113,1,"""North America""" +2023-03-30,91925,2936,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4727.63,{},83247,1,"""South America""" +2023-05-22,91926,5158,"[\""Tablet\""]",2440.71,{},74168,0,"""Asia""" +2024-06-28,91927,280,"[\""Phone\""]",4710.78,"{\""loyalty\"": \""18%\""}",147922,1,"""Europe""" +2023-09-07,91928,2380,"[\""Charger\""]",3927.71,{},233097,1,"""Africa""" +2024-12-07,91929,1708,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1801.8,{},107244,1,"""Europe""" +2023-09-06,91930,9831,"[\""Keyboard\""]",2112.02,"{\""seasonal\"": \""7%\""}",120066,0,"""South America""" +2023-05-02,91931,7864,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",285.43,{},230035,0,"""Africa""" +2023-01-06,91932,2269,"[\""Keyboard\""]",1754.66,"{\""seasonal\"": \""12%\""}",190327,1,"""Europe""" +2024-02-11,91933,5863,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3348.83,"{\""promo\"": \""7%\""}",76440,0,"""Africa""" +2024-02-08,91934,357,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4599.63,"{\""seasonal\"": \""12%\""}",6138,0,"""Europe""" +2023-08-26,91935,3332,"[\""Keyboard\""]",1620.29,"{\""loyalty\"": \""13%\""}",115299,0,"""Asia""" +2024-02-15,91936,4707,"[\""Wireless Mouse\""]",2390.53,"{\"": \""26%\""}",259670,1,"""Asia""" +2024-09-17,91937,5644,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1445.93,"{\"": \""20%\""}",39473,0,"""South America""" +2023-12-30,91938,2706,"[\""Tablet\"", \""Wireless Mouse\""]",3172.74,{},280183,1,"""Europe""" +2024-06-05,91939,4912,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",282.07,"{\""seasonal\"": \""19%\""}",189085,1,"""North America""" +2023-04-05,91940,2600,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2318.79,{},60158,1,"""South America""" +2024-02-25,91941,9065,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2645.39,"{\"": \""7%\""}",155169,1,"""North America""" +2023-01-29,91942,4542,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2551.33,{},47491,1,"""Africa""" +2024-09-03,91943,3578,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4821.16,{},74395,1,"""Europe""" +2023-11-07,91944,77,"[\""Monitor\"", \""Keyboard\""]",4607.87,{},51595,1,"""North America""" +2023-06-21,91945,4123,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",3285.11,{},112989,1,"""Europe""" +2024-08-27,91946,1978,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",4822.53,{},55263,1,"""Europe""" +2024-08-21,91947,7469,"[\""Phone\""]",1727.27,{},184446,1,"""Africa""" +2024-07-26,91948,7266,"[\""Headphones\"", \""Laptop\""]",1292.13,"{\""promo\"": \""11%\""}",91271,0,"""South America""" +2024-11-20,91949,3410,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3636.27,{},212348,1,"""South America""" +2024-04-13,91950,9551,"[\""Laptop\"", \""Charger\""]",1658.8,{},278166,0,"""Africa""" +2023-09-04,91951,3023,"[\""Tablet\""]",3319.14,"{\""promo\"": \""11%\""}",248916,1,"""South America""" +2023-01-10,91952,9088,"[\""Keyboard\""]",4023.81,{},249007,1,"""Africa""" +2023-07-31,91953,3051,"[\""Phone\"", \""Wireless Mouse\""]",3051.87,"{\""loyalty\"": \""13%\""}",8899,1,"""Europe""" +2024-05-06,91954,3364,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",4087.98,"{\""seasonal\"": \""18%\""}",44446,0,"""North America""" +2023-04-27,91955,3886,"[\""Tablet\""]",4853.14,{},37074,1,"""Africa""" +2024-03-15,91956,3351,"[\""Monitor\"", \""Headphones\""]",693.41,{},187573,1,"""Europe""" +2023-06-18,91957,1712,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4013.33,"{\"": \""10%\""}",130239,0,"""North America""" +2023-09-25,91958,3702,"[\""Headphones\""]",4753.89,{},125428,1,"""Africa""" +2023-01-31,91959,5686,"[\""Charger\""]",549.41,{},222219,0,"""Europe""" +2023-05-20,91960,8238,"[\""Headphones\"", \""Laptop\""]",3895.9,{},73569,0,"""Europe""" +2024-01-07,91961,4369,"[\""Tablet\"", \""Wireless Mouse\""]",4110.93,"{\""promo\"": \""29%\""}",214766,0,"""Africa""" +2024-09-20,91962,3971,"[\""Phone\"", \""Monitor\""]",4025.5,{},112367,1,"""North America""" +2023-10-31,91963,6188,"[\""Monitor\"", \""Wireless Mouse\""]",4046.67,{},60845,1,"""Asia""" +2023-07-16,91964,1908,"[\""Headphones\""]",2589.19,{},166834,1,"""North America""" +2024-05-06,91965,7740,"[\""Monitor\""]",289.72,{},257553,1,"""Asia""" +2023-06-06,91966,1729,"[\""Tablet\"", \""Charger\""]",4449.36,"{\""seasonal\"": \""13%\""}",18214,1,"""North America""" +2024-07-02,91967,425,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1712.29,"{\""loyalty\"": \""26%\""}",105323,0,"""Asia""" +2024-09-26,91968,6392,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1886.38,"{\""promo\"": \""12%\""}",242266,1,"""Africa""" +2024-05-10,91969,626,"[\""Wireless Mouse\"", \""Headphones\""]",3638.39,{},283774,1,"""North America""" +2023-07-30,91970,4308,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",110.21,"{\""seasonal\"": \""5%\""}",42085,1,"""South America""" +2023-06-21,91971,4641,"[\""Phone\"", \""Keyboard\""]",1789.86,{},231739,0,"""North America""" +2023-12-19,91972,7615,"[\""Charger\""]",3594.36,{},276315,0,"""Africa""" +2023-01-04,91973,5034,"[\""Charger\""]",3508.49,"{\"": \""11%\""}",182026,1,"""South America""" +2023-04-01,91974,4277,"[\""Headphones\""]",3703.3,"{\"": \""6%\""}",230086,1,"""Europe""" +2024-05-02,91975,1975,"[\""Charger\"", \""Wireless Mouse\""]",3174.65,{},229540,0,"""Europe""" +2023-08-24,91976,7728,"[\""Monitor\"", \""Wireless Mouse\""]",4782.36,"{\"": \""9%\""}",288747,0,"""Africa""" +2023-04-28,91977,6743,"[\""Tablet\"", \""Wireless Mouse\""]",4679.64,{},145775,1,"""Europe""" +2023-03-15,91978,8794,"[\""Monitor\""]",4343.43,"{\""promo\"": \""19%\""}",32347,1,"""Africa""" +2024-01-01,91979,4134,"[\""Tablet\"", \""Keyboard\""]",1662.25,{},239942,1,"""Europe""" +2023-11-15,91980,5468,"[\""Keyboard\""]",1874.07,"{\""promo\"": \""10%\""}",91152,0,"""Asia""" +2023-04-12,91981,5899,"[\""Monitor\""]",2857.69,{},173154,1,"""Europe""" +2023-02-23,91982,7742,"[\""Charger\""]",943.23,{},10311,1,"""Asia""" +2024-12-01,91983,6396,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",203.21,{},158527,1,"""North America""" +2024-01-22,91984,3047,"[\""Wireless Mouse\"", \""Tablet\""]",2669.95,"{\""promo\"": \""28%\""}",9597,1,"""South America""" +2023-10-05,91985,9114,"[\""Tablet\"", \""Headphones\""]",3136.76,{},150534,0,"""Europe""" +2024-03-10,91986,2069,"[\""Monitor\""]",2537.49,{},219023,1,"""Africa""" +2024-08-29,91987,7838,"[\""Keyboard\""]",4243.55,{},193280,1,"""Asia""" +2023-11-25,91988,3329,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",781.54,"{\""promo\"": \""28%\""}",98759,1,"""Europe""" +2023-10-30,91989,8200,"[\""Tablet\"", \""Phone\""]",2186.76,{},40506,0,"""Africa""" +2024-05-27,91990,9284,"[\""Laptop\""]",2886.38,{},1452,0,"""Europe""" +2023-04-04,91991,7331,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4724.82,"{\"": \""8%\""}",51790,1,"""Africa""" +2023-06-18,91992,4859,"[\""Monitor\""]",1791.76,{},156662,0,"""Europe""" +2023-05-06,91993,4321,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2489.25,"{\""loyalty\"": \""25%\""}",174773,0,"""North America""" +2023-02-22,91994,7677,"[\""Phone\"", \""Headphones\""]",1585.4,{},284890,1,"""North America""" +2024-09-01,91995,2602,"[\""Laptop\"", \""Tablet\""]",3453.43,{},252035,1,"""South America""" +2024-04-25,91996,8999,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3626.08,{},144332,0,"""North America""" +2023-10-18,91997,2054,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2055.09,"{\""seasonal\"": \""30%\""}",181390,0,"""Europe""" +2024-04-10,91998,6639,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3147.6,{},105532,1,"""South America""" +2024-12-14,91999,5738,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",364.05,"{\""loyalty\"": \""29%\""}",163211,0,"""Asia""" +2023-01-24,92000,2887,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4557.14,"{\""seasonal\"": \""15%\""}",105582,0,"""Europe""" +2024-03-23,92001,2855,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1690.38,{},239593,0,"""Asia""" +2024-10-29,92002,8190,"[\""Monitor\""]",392.8,{},222432,0,"""Asia""" +2024-02-28,92003,8266,"[\""Wireless Mouse\"", \""Phone\""]",1545.2,{},259344,1,"""South America""" +2024-04-28,92004,4747,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3038.84,"{\""loyalty\"": \""13%\""}",67830,0,"""Asia""" +2023-11-18,92005,7671,"[\""Laptop\""]",2473.73,{},188318,0,"""Europe""" +2023-04-15,92006,7079,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3044.22,"{\""loyalty\"": \""12%\""}",66560,1,"""North America""" +2023-04-12,92007,8028,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2968.91,{},139171,1,"""Asia""" +2024-09-02,92008,9312,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1170.1,{},256077,0,"""Europe""" +2023-06-28,92009,4347,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",874.85,"{\"": \""20%\""}",144867,1,"""North America""" +2023-04-24,92010,7592,"[\""Headphones\"", \""Wireless Mouse\""]",4822.32,{},90749,1,"""North America""" +2024-04-03,92011,8714,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4749.69,{},225363,0,"""Africa""" +2024-11-07,92012,3032,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4826.15,"{\""seasonal\"": \""26%\""}",47110,0,"""Asia""" +2023-05-18,92013,9150,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2742.46,{},241905,1,"""Africa""" +2023-07-01,92014,12,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3138.29,"{\""loyalty\"": \""19%\""}",190584,1,"""Africa""" +2023-05-28,92015,3281,"[\""Headphones\""]",1070.21,"{\"": \""12%\""}",164855,1,"""Asia""" +2024-02-13,92016,6873,"[\""Keyboard\""]",1410.04,{},222252,0,"""North America""" +2024-12-08,92017,5135,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",3715.52,{},242079,0,"""Europe""" +2024-05-02,92018,5216,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",106.95,{},148042,0,"""Asia""" +2023-03-29,92019,6166,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4061.83,"{\""seasonal\"": \""11%\""}",139648,1,"""South America""" +2023-12-26,92020,2088,"[\""Phone\""]",421.44,{},169432,1,"""South America""" +2024-05-03,92021,2237,"[\""Phone\"", \""Tablet\""]",4742.58,"{\""seasonal\"": \""26%\""}",197490,1,"""Africa""" +2023-09-24,92022,7549,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",531.25,{},97520,1,"""Africa""" +2023-07-11,92023,3905,"[\""Laptop\"", \""Keyboard\""]",295.9,{},167351,1,"""Europe""" +2023-11-09,92024,2402,"[\""Wireless Mouse\""]",3865.03,"{\""promo\"": \""11%\""}",273055,1,"""Asia""" +2023-03-11,92025,7824,"[\""Wireless Mouse\"", \""Laptop\""]",540.38,{},169411,0,"""South America""" +2023-12-22,92026,2143,"[\""Charger\""]",701.42,{},228154,1,"""North America""" +2024-07-29,92027,5376,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2677.72,"{\""promo\"": \""15%\""}",70352,1,"""Europe""" +2023-08-08,92028,3832,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",646.31,{},293906,1,"""Africa""" +2023-08-31,92029,9047,"[\""Monitor\"", \""Phone\""]",1294.04,{},31579,0,"""Africa""" +2023-11-13,92030,7095,"[\""Charger\"", \""Laptop\""]",4936.26,"{\"": \""30%\""}",148558,1,"""Africa""" +2024-08-08,92031,864,"[\""Headphones\""]",2691.66,"{\""promo\"": \""18%\""}",44087,1,"""South America""" +2023-02-13,92032,3395,"[\""Phone\""]",774.23,"{\""seasonal\"": \""8%\""}",245708,1,"""Africa""" +2024-01-09,92033,9411,"[\""Wireless Mouse\"", \""Monitor\""]",3527.47,{},88673,1,"""Africa""" +2024-10-03,92034,3704,"[\""Headphones\""]",1970.52,{},20165,0,"""Europe""" +2023-05-16,92035,8021,"[\""Phone\"", \""Headphones\""]",3830.35,"{\"": \""14%\""}",208144,1,"""South America""" +2023-02-08,92036,3464,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1026.83,{},98613,0,"""Asia""" +2023-11-19,92037,9986,"[\""Phone\""]",3978.14,"{\"": \""14%\""}",273320,1,"""Africa""" +2024-05-01,92038,6577,"[\""Tablet\""]",2470.62,{},130398,1,"""Europe""" +2024-10-02,92039,9953,"[\""Phone\""]",1256.42,"{\""seasonal\"": \""15%\""}",175541,0,"""South America""" +2023-02-21,92040,6411,"[\""Headphones\""]",2982.19,{},43270,1,"""Asia""" +2024-01-13,92041,5094,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1146.17,"{\"": \""19%\""}",200662,0,"""Africa""" +2024-05-19,92042,9786,"[\""Keyboard\"", \""Charger\""]",1605.32,"{\""loyalty\"": \""30%\""}",186345,1,"""Europe""" +2023-08-13,92043,2287,"[\""Phone\"", \""Charger\""]",2555.03,"{\""loyalty\"": \""7%\""}",277127,0,"""North America""" +2023-12-01,92044,1791,"[\""Keyboard\"", \""Tablet\""]",4110.63,"{\""seasonal\"": \""13%\""}",167380,1,"""North America""" +2023-01-12,92045,7806,"[\""Headphones\"", \""Phone\""]",4101.8,"{\""promo\"": \""11%\""}",95193,0,"""Africa""" +2024-10-22,92046,4204,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2827.09,{},92771,0,"""South America""" +2023-07-17,92047,15,"[\""Phone\"", \""Tablet\""]",3479.85,{},154890,0,"""North America""" +2024-11-05,92048,1085,"[\""Keyboard\"", \""Phone\""]",533.82,"{\""promo\"": \""25%\""}",239982,1,"""Europe""" +2024-11-06,92049,4099,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3706.21,"{\""promo\"": \""8%\""}",70074,0,"""North America""" +2024-07-24,92050,3613,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1778.16,"{\"": \""11%\""}",54270,1,"""Africa""" +2024-11-05,92051,4011,"[\""Headphones\"", \""Laptop\""]",3182.24,"{\"": \""17%\""}",160853,0,"""Europe""" +2023-10-24,92052,9287,"[\""Keyboard\""]",1934.38,{},167142,0,"""Europe""" +2023-04-04,92053,6708,"[\""Headphones\""]",4249.21,{},108998,0,"""Europe""" +2024-04-10,92054,9701,"[\""Wireless Mouse\""]",4167.31,"{\""promo\"": \""24%\""}",145486,0,"""Africa""" +2023-11-10,92055,9867,"[\""Charger\""]",2598.91,{},11645,1,"""North America""" +2024-03-10,92056,354,"[\""Wireless Mouse\"", \""Charger\""]",99.02,{},87566,0,"""Asia""" +2023-05-31,92057,1575,"[\""Monitor\""]",3398.27,{},45779,1,"""Asia""" +2024-01-05,92058,4694,"[\""Tablet\"", \""Wireless Mouse\""]",4344.95,{},248616,1,"""Asia""" +2024-02-06,92059,9204,"[\""Phone\"", \""Charger\"", \""Monitor\""]",560.6,"{\""loyalty\"": \""27%\""}",26081,1,"""Africa""" +2024-01-10,92060,2118,"[\""Phone\"", \""Laptop\""]",2012.04,"{\""loyalty\"": \""24%\""}",75382,1,"""Africa""" +2024-12-09,92061,8869,"[\""Charger\""]",4657.66,"{\""promo\"": \""25%\""}",103230,1,"""Europe""" +2023-01-23,92062,784,"[\""Laptop\""]",1654.48,{},253022,0,"""Africa""" +2024-08-01,92063,6254,"[\""Headphones\"", \""Phone\""]",2615.59,{},103461,1,"""Africa""" +2023-08-08,92064,5223,"[\""Tablet\"", \""Headphones\""]",2304.25,"{\""loyalty\"": \""7%\""}",132615,0,"""South America""" +2024-10-19,92065,8318,"[\""Laptop\""]",1210.88,{},78735,1,"""Asia""" +2024-03-09,92066,1582,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3666.79,"{\"": \""11%\""}",138466,1,"""North America""" +2024-07-18,92067,1760,"[\""Phone\"", \""Wireless Mouse\""]",4217.3,"{\""promo\"": \""9%\""}",140082,1,"""Africa""" +2024-12-25,92068,679,"[\""Charger\"", \""Laptop\""]",384.27,{},103293,0,"""Asia""" +2023-01-03,92069,678,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",3316.57,"{\""promo\"": \""26%\""}",197550,0,"""South America""" +2024-04-28,92070,1273,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",2943.32,{},134544,1,"""Asia""" +2024-12-12,92071,4411,"[\""Keyboard\""]",3578.55,"{\"": \""14%\""}",183419,0,"""Europe""" +2023-07-06,92072,8829,"[\""Tablet\""]",2993.64,"{\"": \""12%\""}",245901,1,"""Asia""" +2023-10-14,92073,8144,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3275.88,"{\""loyalty\"": \""8%\""}",50198,0,"""South America""" +2024-12-31,92074,6345,"[\""Tablet\"", \""Headphones\""]",3150.8,{},80065,0,"""Asia""" +2024-01-07,92075,4632,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1980.47,"{\""loyalty\"": \""12%\""}",55750,0,"""Asia""" +2023-03-16,92076,987,"[\""Phone\"", \""Wireless Mouse\""]",4790.56,{},151343,0,"""Asia""" +2023-04-12,92077,4416,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1080.66,{},169188,0,"""Africa""" +2023-02-14,92078,1057,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",883.31,{},138737,0,"""Africa""" +2023-07-22,92079,5180,"[\""Headphones\""]",299.0,{},174941,0,"""North America""" +2024-04-16,92080,4182,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3919.26,"{\""promo\"": \""20%\""}",80794,1,"""Africa""" +2024-04-16,92081,5719,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3499.28,"{\""seasonal\"": \""18%\""}",286827,1,"""Asia""" +2024-07-04,92082,8929,"[\""Wireless Mouse\"", \""Charger\""]",990.4,{},46432,0,"""Asia""" +2023-07-13,92083,490,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",515.61,"{\"": \""12%\""}",104367,0,"""North America""" +2023-02-16,92084,2812,"[\""Monitor\"", \""Phone\""]",4887.8,"{\""loyalty\"": \""5%\""}",258875,0,"""Europe""" +2023-11-28,92085,7729,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1456.6,{},4305,0,"""Africa""" +2023-02-03,92086,4337,"[\""Charger\"", \""Headphones\""]",1989.69,"{\""loyalty\"": \""23%\""}",92052,0,"""South America""" +2023-11-25,92087,2840,"[\""Headphones\"", \""Tablet\""]",2946.96,"{\"": \""27%\""}",215078,1,"""Europe""" +2023-10-16,92088,3761,"[\""Wireless Mouse\""]",3231.08,"{\"": \""10%\""}",51725,0,"""Africa""" +2024-03-24,92089,7424,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4315.51,{},102488,1,"""Africa""" +2024-07-26,92090,2121,"[\""Keyboard\"", \""Laptop\""]",478.4,{},200925,0,"""Africa""" +2024-05-03,92091,1531,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",2362.99,{},222632,0,"""Asia""" +2023-07-24,92092,8251,"[\""Phone\""]",1206.52,"{\""promo\"": \""16%\""}",203322,1,"""South America""" +2023-04-23,92093,3680,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",226.93,{},156878,0,"""Asia""" +2024-06-01,92094,7462,"[\""Laptop\"", \""Charger\""]",2731.6,{},158607,0,"""North America""" +2024-09-19,92095,2532,"[\""Tablet\""]",800.37,{},101119,1,"""North America""" +2023-06-03,92096,6665,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4367.03,"{\""loyalty\"": \""22%\""}",98171,1,"""South America""" +2024-11-11,92097,5573,"[\""Monitor\"", \""Charger\""]",2581.09,"{\"": \""11%\""}",230247,0,"""South America""" +2023-08-08,92098,9383,"[\""Tablet\"", \""Charger\""]",1132.18,{},229686,0,"""Europe""" +2024-12-19,92099,7774,"[\""Tablet\"", \""Monitor\""]",3196.3,"{\""loyalty\"": \""9%\""}",76690,0,"""North America""" +2024-11-09,92100,731,"[\""Headphones\"", \""Phone\""]",3396.78,{},134503,1,"""South America""" +2024-03-05,92101,3741,"[\""Monitor\"", \""Keyboard\""]",1986.98,{},12509,1,"""Africa""" +2024-02-11,92102,8645,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4078.44,{},160677,0,"""North America""" +2023-07-29,92103,9907,"[\""Phone\"", \""Wireless Mouse\""]",798.93,{},44767,1,"""Africa""" +2024-11-05,92104,5783,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",311.87,"{\""loyalty\"": \""26%\""}",192752,1,"""Europe""" +2024-09-26,92105,8202,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1236.43,{},253639,0,"""North America""" +2024-05-30,92106,9882,"[\""Headphones\""]",4270.97,{},107608,1,"""Asia""" +2023-04-09,92107,1970,"[\""Wireless Mouse\""]",1289.74,{},118544,1,"""Europe""" +2023-05-06,92108,7429,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1044.29,{},254426,1,"""Europe""" +2024-04-07,92109,5266,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",90.04,{},104555,0,"""Africa""" +2023-11-13,92110,3112,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4691.1,{},171806,1,"""Europe""" +2023-11-29,92111,643,"[\""Wireless Mouse\""]",3841.59,"{\""loyalty\"": \""12%\""}",5571,0,"""South America""" +2024-10-18,92112,5407,"[\""Wireless Mouse\""]",2167.28,{},261651,0,"""Europe""" +2023-05-01,92113,7478,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1918.2,"{\""loyalty\"": \""24%\""}",17460,0,"""South America""" +2023-03-26,92114,6081,"[\""Headphones\""]",2645.82,"{\""promo\"": \""16%\""}",242820,0,"""Europe""" +2024-06-04,92115,8065,"[\""Keyboard\""]",2206.09,{},7043,0,"""South America""" +2023-06-04,92116,9570,"[\""Headphones\""]",1742.25,{},91430,1,"""Africa""" +2023-08-16,92117,789,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4789.65,"{\""seasonal\"": \""8%\""}",246900,0,"""Africa""" +2023-07-28,92118,4890,"[\""Charger\"", \""Keyboard\""]",958.74,{},248980,0,"""Europe""" +2024-02-11,92119,2639,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2834.55,"{\""seasonal\"": \""16%\""}",119420,1,"""Asia""" +2024-01-24,92120,6321,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",3968.96,"{\"": \""14%\""}",109404,0,"""South America""" +2024-09-03,92121,9573,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2118.99,{},26908,0,"""Asia""" +2023-02-10,92122,3882,"[\""Wireless Mouse\"", \""Monitor\""]",3115.21,"{\""seasonal\"": \""23%\""}",164936,1,"""Africa""" +2024-06-06,92123,4801,"[\""Wireless Mouse\"", \""Tablet\""]",3998.76,{},145802,0,"""Asia""" +2023-08-21,92124,2833,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",299.99,{},115722,0,"""Europe""" +2023-11-28,92125,1138,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4683.89,"{\"": \""27%\""}",156873,1,"""Asia""" +2024-04-05,92126,9070,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3374.87,{},207153,1,"""South America""" +2024-01-24,92127,1430,"[\""Wireless Mouse\""]",3812.21,"{\"": \""14%\""}",192895,0,"""Africa""" +2023-05-16,92128,7621,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3948.49,"{\"": \""14%\""}",178611,1,"""South America""" +2023-12-05,92129,901,"[\""Keyboard\""]",1258.07,{},161145,1,"""Asia""" +2024-11-30,92130,8509,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",542.48,"{\""seasonal\"": \""16%\""}",223613,0,"""Asia""" +2023-10-08,92131,7714,"[\""Wireless Mouse\""]",598.34,{},56793,0,"""North America""" +2024-04-14,92132,7474,"[\""Monitor\""]",4389.21,{},109570,1,"""Africa""" +2023-11-24,92133,4636,"[\""Monitor\""]",808.78,{},141697,0,"""South America""" +2024-01-05,92134,5317,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3611.24,"{\""loyalty\"": \""12%\""}",191638,0,"""Africa""" +2024-10-22,92135,7932,"[\""Charger\"", \""Monitor\""]",4265.15,{},255651,0,"""South America""" +2023-09-19,92136,3489,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3583.63,{},5360,1,"""North America""" +2024-10-17,92137,2612,"[\""Tablet\""]",4185.1,"{\""seasonal\"": \""13%\""}",42598,0,"""Africa""" +2024-08-24,92138,3143,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1368.71,{},172344,0,"""North America""" +2024-07-13,92139,8937,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1630.85,{},110640,1,"""North America""" +2024-02-29,92140,5640,"[\""Keyboard\"", \""Laptop\""]",946.98,"{\""loyalty\"": \""13%\""}",220484,1,"""Asia""" +2024-10-01,92141,339,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",725.38,{},189079,0,"""South America""" +2023-11-05,92142,3765,"[\""Keyboard\""]",617.8,"{\""promo\"": \""8%\""}",14324,0,"""South America""" +2024-03-29,92143,3474,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4250.56,"{\""promo\"": \""7%\""}",208883,1,"""Europe""" +2023-10-22,92144,5974,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4084.79,{},269203,0,"""Africa""" +2024-04-19,92145,7477,"[\""Keyboard\"", \""Charger\""]",4918.91,"{\""seasonal\"": \""16%\""}",192077,0,"""Africa""" +2023-09-27,92146,9878,"[\""Charger\"", \""Laptop\""]",4861.12,{},226381,1,"""South America""" +2024-09-20,92147,2342,"[\""Headphones\"", \""Keyboard\""]",689.21,{},222089,1,"""South America""" +2023-09-16,92148,9990,"[\""Wireless Mouse\""]",2573.26,{},295518,1,"""Africa""" +2024-10-25,92149,4973,"[\""Keyboard\""]",2854.92,{},250799,0,"""North America""" +2023-05-24,92150,3748,"[\""Tablet\""]",2374.52,{},38532,1,"""South America""" +2023-07-07,92151,6253,"[\""Monitor\"", \""Laptop\""]",4300.4,{},210763,1,"""North America""" +2023-02-23,92152,9551,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4796.98,"{\""seasonal\"": \""13%\""}",250528,0,"""Africa""" +2024-06-15,92153,2069,"[\""Charger\""]",652.81,{},277429,0,"""Africa""" +2024-11-26,92154,9694,"[\""Charger\""]",875.15,{},130237,0,"""South America""" +2023-11-02,92155,1706,"[\""Monitor\"", \""Keyboard\""]",1455.03,"{\"": \""26%\""}",215866,0,"""South America""" +2024-08-31,92156,1422,"[\""Wireless Mouse\""]",4535.36,"{\""seasonal\"": \""6%\""}",160838,1,"""Asia""" +2023-07-19,92157,3656,"[\""Charger\""]",1904.59,{},195488,0,"""North America""" +2023-12-27,92158,9729,"[\""Tablet\""]",1894.33,"{\"": \""9%\""}",43736,0,"""Africa""" +2024-02-27,92159,3202,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",146.4,{},10820,0,"""Asia""" +2023-11-13,92160,3369,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",899.35,"{\""promo\"": \""17%\""}",83764,0,"""Asia""" +2023-10-24,92161,1938,"[\""Phone\"", \""Tablet\""]",4658.76,"{\""loyalty\"": \""24%\""}",188582,1,"""North America""" +2024-10-17,92162,5802,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1715.68,{},25659,1,"""Africa""" +2023-05-31,92163,345,"[\""Monitor\""]",1279.69,"{\"": \""25%\""}",173664,1,"""Asia""" +2023-12-26,92164,9394,"[\""Keyboard\""]",530.55,"{\""promo\"": \""12%\""}",138291,0,"""Europe""" +2024-04-27,92165,6495,"[\""Wireless Mouse\"", \""Keyboard\""]",4781.76,{},75091,1,"""Asia""" +2024-02-15,92166,1990,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",960.43,"{\""seasonal\"": \""6%\""}",187307,0,"""Europe""" +2023-08-27,92167,1893,"[\""Keyboard\""]",1994.95,{},84898,0,"""Africa""" +2024-12-30,92168,8672,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3915.71,"{\""seasonal\"": \""20%\""}",226622,0,"""Europe""" +2024-07-14,92169,2519,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4930.88,"{\""promo\"": \""23%\""}",98728,1,"""Africa""" +2024-04-28,92170,9792,"[\""Phone\""]",3296.35,{},203935,0,"""Africa""" +2024-12-22,92171,7460,"[\""Laptop\""]",1226.09,{},242040,0,"""Europe""" +2024-02-12,92172,9232,"[\""Laptop\"", \""Monitor\""]",982.73,{},67003,0,"""North America""" +2024-04-26,92173,5345,"[\""Headphones\"", \""Keyboard\""]",4325.13,"{\""seasonal\"": \""7%\""}",240094,0,"""Africa""" +2024-05-29,92174,3655,"[\""Headphones\"", \""Charger\""]",867.69,{},265679,1,"""South America""" +2023-01-03,92175,5571,"[\""Charger\"", \""Wireless Mouse\""]",1897.17,{},192171,1,"""Europe""" +2023-01-01,92176,5240,"[\""Charger\"", \""Headphones\""]",441.43,"{\""loyalty\"": \""22%\""}",73554,1,"""Europe""" +2024-02-03,92177,2716,"[\""Charger\""]",850.9,{},99346,0,"""Asia""" +2023-02-20,92178,2058,"[\""Wireless Mouse\""]",384.69,{},166808,0,"""Asia""" +2024-01-09,92179,3805,"[\""Phone\"", \""Headphones\""]",2301.99,{},115876,1,"""Africa""" +2024-08-11,92180,2498,"[\""Monitor\"", \""Wireless Mouse\""]",2279.88,"{\""loyalty\"": \""29%\""}",140940,1,"""Asia""" +2024-01-23,92181,8608,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2293.95,"{\""seasonal\"": \""30%\""}",115014,1,"""Asia""" +2023-04-28,92182,6941,"[\""Monitor\""]",4507.5,{},46524,0,"""Africa""" +2023-06-21,92183,9614,"[\""Headphones\"", \""Wireless Mouse\""]",3307.25,{},81207,0,"""Asia""" +2024-11-23,92184,4070,"[\""Monitor\"", \""Phone\""]",2698.64,"{\"": \""6%\""}",126099,1,"""North America""" +2024-09-02,92185,9371,"[\""Charger\""]",2347.32,"{\""loyalty\"": \""10%\""}",116017,0,"""Europe""" +2024-06-09,92186,9847,"[\""Keyboard\"", \""Tablet\""]",3545.46,"{\"": \""12%\""}",168341,0,"""North America""" +2023-09-14,92187,4242,"[\""Monitor\"", \""Keyboard\""]",267.67,"{\""promo\"": \""6%\""}",275025,1,"""North America""" +2023-10-31,92188,5527,"[\""Wireless Mouse\"", \""Headphones\""]",279.49,"{\""loyalty\"": \""18%\""}",88713,0,"""Asia""" +2023-07-04,92189,9486,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",2059.47,{},136091,1,"""North America""" +2024-09-07,92190,3522,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4751.8,"{\"": \""15%\""}",271883,0,"""South America""" +2024-02-05,92191,9506,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",3371.39,{},30339,1,"""Europe""" +2024-08-27,92192,117,"[\""Tablet\"", \""Keyboard\""]",2336.89,"{\""loyalty\"": \""10%\""}",213739,1,"""South America""" +2023-01-26,92193,1184,"[\""Wireless Mouse\"", \""Monitor\""]",1224.0,{},35775,0,"""South America""" +2024-10-06,92194,5279,"[\""Monitor\"", \""Phone\""]",4890.77,"{\""seasonal\"": \""5%\""}",28941,1,"""Europe""" +2024-02-19,92195,2732,"[\""Monitor\"", \""Wireless Mouse\""]",2228.46,{},154082,0,"""Asia""" +2024-12-04,92196,578,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1512.41,{},20067,1,"""Europe""" +2023-09-07,92197,6111,"[\""Keyboard\"", \""Charger\""]",2595.22,"{\""seasonal\"": \""22%\""}",214968,0,"""Africa""" +2024-10-11,92198,2053,"[\""Laptop\""]",3356.56,"{\""loyalty\"": \""25%\""}",114951,0,"""North America""" +2023-08-23,92199,8323,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",3980.15,{},17420,0,"""South America""" +2023-12-20,92200,2185,"[\""Headphones\""]",4402.33,"{\""seasonal\"": \""13%\""}",113100,0,"""North America""" +2023-03-14,92201,9856,"[\""Phone\"", \""Wireless Mouse\""]",2614.24,{},236009,0,"""North America""" +2024-01-09,92202,6444,"[\""Phone\"", \""Monitor\""]",54.42,{},241880,0,"""Europe""" +2024-10-01,92203,4078,"[\""Monitor\"", \""Headphones\""]",1384.72,"{\""loyalty\"": \""28%\""}",152952,0,"""Africa""" +2023-10-09,92204,842,"[\""Laptop\"", \""Charger\""]",464.52,{},102000,1,"""South America""" +2023-08-28,92205,8889,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1940.17,{},84200,1,"""Asia""" +2024-01-03,92206,2768,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3025.74,{},136988,1,"""North America""" +2024-07-28,92207,1477,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4638.58,"{\""promo\"": \""28%\""}",87719,0,"""Asia""" +2024-07-03,92208,3857,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1845.91,{},128644,0,"""Asia""" +2023-10-09,92209,5195,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",1772.1,"{\""promo\"": \""20%\""}",169331,1,"""Africa""" +2024-02-28,92210,5709,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4095.0,"{\""seasonal\"": \""10%\""}",12369,1,"""North America""" +2023-05-12,92211,3767,"[\""Wireless Mouse\""]",4370.43,{},154586,0,"""Africa""" +2023-11-22,92212,71,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",3786.22,"{\""seasonal\"": \""30%\""}",167914,1,"""Asia""" +2023-02-14,92213,7360,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4363.95,{},171775,0,"""North America""" +2024-05-29,92214,7224,"[\""Charger\"", \""Phone\""]",3021.17,"{\""seasonal\"": \""18%\""}",274418,1,"""Africa""" +2024-04-16,92215,1104,"[\""Keyboard\""]",3031.04,{},104592,0,"""South America""" +2024-10-23,92216,3118,"[\""Keyboard\"", \""Monitor\""]",1979.89,"{\""seasonal\"": \""26%\""}",210946,0,"""Asia""" +2023-09-10,92217,127,"[\""Laptop\"", \""Charger\""]",4778.8,{},206525,1,"""Africa""" +2024-08-13,92218,6705,"[\""Keyboard\"", \""Laptop\""]",1476.32,"{\""seasonal\"": \""6%\""}",167581,0,"""Africa""" +2023-06-14,92219,650,"[\""Headphones\""]",1747.29,{},177253,0,"""North America""" +2024-11-05,92220,556,"[\""Wireless Mouse\"", \""Monitor\""]",3002.01,"{\""seasonal\"": \""7%\""}",276365,1,"""Africa""" +2024-10-10,92221,3261,"[\""Keyboard\"", \""Wireless Mouse\""]",1130.3,{},22427,0,"""South America""" +2023-07-09,92222,9841,"[\""Charger\""]",2757.83,{},216343,0,"""Asia""" +2024-06-26,92223,8280,"[\""Phone\"", \""Headphones\""]",831.18,"{\""loyalty\"": \""5%\""}",92237,0,"""South America""" +2024-09-18,92224,8406,"[\""Keyboard\""]",2745.42,"{\""seasonal\"": \""9%\""}",60276,0,"""Asia""" +2023-04-20,92225,8922,"[\""Keyboard\""]",3388.73,{},299387,0,"""Europe""" +2024-05-25,92226,4328,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",3893.02,"{\""promo\"": \""9%\""}",51210,0,"""North America""" +2023-10-24,92227,5084,"[\""Tablet\""]",4378.64,"{\""seasonal\"": \""21%\""}",107621,1,"""Africa""" +2023-12-04,92228,2848,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1843.6,{},182031,1,"""Europe""" +2024-02-27,92229,227,"[\""Headphones\""]",1312.75,{},15933,1,"""Asia""" +2023-10-09,92230,9458,"[\""Charger\"", \""Keyboard\""]",2268.96,{},34347,0,"""Europe""" +2024-12-11,92231,4654,"[\""Charger\"", \""Phone\""]",3591.42,"{\"": \""18%\""}",94454,1,"""Europe""" +2023-10-05,92232,2769,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",1772.64,"{\""seasonal\"": \""25%\""}",259078,1,"""Europe""" +2024-12-12,92233,4321,"[\""Laptop\"", \""Charger\""]",4363.7,{},246825,1,"""Europe""" +2023-11-23,92234,7075,"[\""Monitor\"", \""Headphones\""]",2190.93,{},54364,1,"""Europe""" +2024-10-24,92235,4962,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1723.88,{},120766,0,"""North America""" +2024-04-27,92236,8742,"[\""Tablet\""]",1778.33,{},1907,1,"""Africa""" +2023-12-03,92237,6905,"[\""Charger\"", \""Keyboard\""]",1459.13,{},1869,1,"""Europe""" +2023-09-27,92238,4703,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1022.15,{},82277,0,"""Europe""" +2023-06-25,92239,7156,"[\""Wireless Mouse\"", \""Tablet\""]",3964.27,{},176276,0,"""Africa""" +2024-10-07,92240,8322,"[\""Monitor\""]",1894.23,"{\""loyalty\"": \""25%\""}",65313,0,"""Asia""" +2023-12-26,92241,7992,"[\""Laptop\"", \""Tablet\""]",1805.54,{},86478,0,"""Asia""" +2024-11-04,92242,136,"[\""Charger\""]",2219.21,"{\""seasonal\"": \""25%\""}",79728,0,"""Europe""" +2024-11-16,92243,3473,"[\""Keyboard\"", \""Charger\""]",4858.92,"{\""loyalty\"": \""5%\""}",290381,1,"""Europe""" +2023-11-15,92244,5996,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2705.18,"{\""promo\"": \""23%\""}",224586,0,"""Africa""" +2024-09-09,92245,3751,"[\""Laptop\"", \""Wireless Mouse\""]",2082.56,{},299709,1,"""Africa""" +2023-05-23,92246,5623,"[\""Wireless Mouse\"", \""Headphones\""]",4337.0,"{\""seasonal\"": \""8%\""}",27571,0,"""Europe""" +2024-05-26,92247,7154,"[\""Monitor\"", \""Charger\""]",1112.63,"{\""loyalty\"": \""28%\""}",79187,0,"""South America""" +2023-12-17,92248,244,"[\""Keyboard\""]",627.48,"{\""promo\"": \""26%\""}",139733,0,"""North America""" +2024-06-02,92249,5157,"[\""Wireless Mouse\""]",2015.16,{},209550,0,"""Africa""" +2024-03-20,92250,7253,"[\""Keyboard\""]",1162.04,"{\""promo\"": \""29%\""}",277179,0,"""Europe""" +2023-09-19,92251,5045,"[\""Keyboard\""]",4978.14,{},234573,0,"""South America""" +2024-09-18,92252,4016,"[\""Laptop\"", \""Tablet\""]",3780.29,{},192991,0,"""Africa""" +2024-12-17,92253,1042,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2119.21,{},173919,0,"""Africa""" +2023-08-20,92254,522,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",197.81,"{\""loyalty\"": \""21%\""}",231473,1,"""Asia""" +2023-06-14,92255,7904,"[\""Headphones\""]",3388.25,{},156820,1,"""Europe""" +2024-09-03,92256,9676,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3225.45,{},29196,1,"""Europe""" +2024-12-15,92257,3280,"[\""Phone\"", \""Headphones\""]",2617.24,{},6466,0,"""Europe""" +2024-04-02,92258,1608,"[\""Laptop\"", \""Charger\""]",3900.81,"{\""seasonal\"": \""14%\""}",295634,0,"""North America""" +2023-10-28,92259,9876,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1088.33,"{\""seasonal\"": \""10%\""}",241855,1,"""Africa""" +2024-02-07,92260,9822,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2309.85,{},114509,1,"""Europe""" +2024-11-29,92261,7763,"[\""Keyboard\""]",4016.47,{},98897,0,"""Africa""" +2024-05-05,92262,4984,"[\""Monitor\""]",4242.81,"{\""promo\"": \""6%\""}",148924,0,"""Asia""" +2024-09-13,92263,966,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",4961.95,"{\""promo\"": \""17%\""}",215042,1,"""Africa""" +2024-04-02,92264,2551,"[\""Charger\"", \""Laptop\""]",374.69,{},228714,1,"""Europe""" +2024-08-03,92265,4982,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1460.69,"{\""loyalty\"": \""26%\""}",47567,0,"""North America""" +2024-09-13,92266,6567,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1696.16,"{\""loyalty\"": \""14%\""}",162587,0,"""Asia""" +2024-11-05,92267,8212,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3668.02,"{\""seasonal\"": \""16%\""}",48500,1,"""North America""" +2023-06-04,92268,1878,"[\""Tablet\""]",3012.84,"{\""seasonal\"": \""16%\""}",254619,0,"""Europe""" +2023-05-27,92269,2644,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",2453.33,"{\""promo\"": \""8%\""}",214659,0,"""Africa""" +2023-06-27,92270,4013,"[\""Laptop\"", \""Wireless Mouse\""]",3308.64,{},177888,0,"""Africa""" +2023-02-19,92271,9183,"[\""Wireless Mouse\""]",4298.05,{},144176,0,"""Europe""" +2024-02-13,92272,77,"[\""Wireless Mouse\"", \""Laptop\""]",2881.91,{},26204,1,"""Africa""" +2023-10-07,92273,2579,"[\""Phone\"", \""Headphones\""]",79.87,{},172512,1,"""Europe""" +2024-03-26,92274,7690,"[\""Laptop\""]",1554.5,"{\""seasonal\"": \""25%\""}",16825,1,"""Africa""" +2023-06-03,92275,2731,"[\""Tablet\"", \""Laptop\""]",85.0,{},275795,1,"""Asia""" +2024-10-12,92276,7528,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1178.52,"{\"": \""25%\""}",212993,0,"""North America""" +2024-02-23,92277,7646,"[\""Charger\""]",4093.08,{},187445,0,"""Asia""" +2023-11-27,92278,1362,"[\""Tablet\""]",2115.57,"{\""promo\"": \""7%\""}",193621,0,"""Asia""" +2023-06-12,92279,6482,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1926.87,"{\"": \""14%\""}",94919,1,"""North America""" +2023-12-27,92280,1808,"[\""Headphones\"", \""Tablet\""]",4499.31,{},17406,0,"""Asia""" +2023-01-02,92281,7114,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1964.83,{},99971,1,"""North America""" +2024-06-08,92282,5692,"[\""Wireless Mouse\""]",2673.29,"{\""promo\"": \""12%\""}",171295,0,"""Europe""" +2023-06-05,92283,2734,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",1430.71,{},140197,0,"""Asia""" +2023-05-07,92284,195,"[\""Wireless Mouse\"", \""Phone\""]",1014.61,"{\""seasonal\"": \""13%\""}",38471,1,"""Europe""" +2023-06-11,92285,622,"[\""Keyboard\"", \""Headphones\""]",3078.33,"{\"": \""21%\""}",57397,0,"""Africa""" +2023-08-31,92286,872,"[\""Charger\"", \""Monitor\""]",1878.71,"{\""seasonal\"": \""24%\""}",105038,0,"""Africa""" +2024-07-08,92287,1548,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3626.7,{},142149,0,"""North America""" +2024-03-22,92288,5457,"[\""Keyboard\""]",4593.14,{},213961,0,"""Asia""" +2024-06-06,92289,8160,"[\""Charger\"", \""Wireless Mouse\""]",3963.28,{},134901,1,"""Asia""" +2023-01-10,92290,8899,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4877.83,{},79082,0,"""Asia""" +2023-03-19,92291,5976,"[\""Keyboard\"", \""Headphones\""]",2487.07,{},107896,1,"""South America""" +2023-09-04,92292,7530,"[\""Charger\"", \""Monitor\""]",3376.78,"{\""promo\"": \""27%\""}",180366,0,"""Europe""" +2023-04-13,92293,5211,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1213.12,"{\""seasonal\"": \""29%\""}",13567,0,"""South America""" +2024-03-04,92294,3720,"[\""Charger\"", \""Phone\""]",2182.01,{},256884,1,"""Asia""" +2024-01-26,92295,314,"[\""Monitor\"", \""Headphones\""]",3763.16,"{\""promo\"": \""15%\""}",270645,1,"""Africa""" +2024-12-29,92296,5349,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",2556.89,{},141046,0,"""North America""" +2024-06-19,92297,6248,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1970.02,"{\""loyalty\"": \""10%\""}",167919,0,"""Asia""" +2024-01-01,92298,1589,"[\""Laptop\""]",3443.8,{},111698,0,"""Asia""" +2023-12-24,92299,1015,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4494.07,"{\""promo\"": \""13%\""}",125539,0,"""North America""" +2024-10-19,92300,6901,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4051.5,"{\""promo\"": \""14%\""}",184984,0,"""North America""" +2023-08-11,92301,1534,"[\""Tablet\""]",4325.05,"{\""loyalty\"": \""28%\""}",32904,1,"""Europe""" +2023-11-09,92302,3649,"[\""Monitor\""]",2514.78,"{\""loyalty\"": \""5%\""}",84436,1,"""Europe""" +2023-03-20,92303,1162,"[\""Wireless Mouse\"", \""Headphones\""]",876.85,"{\""seasonal\"": \""25%\""}",124030,0,"""South America""" +2024-02-16,92304,4943,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3972.29,{},105405,1,"""Africa""" +2024-08-29,92305,3832,"[\""Keyboard\"", \""Tablet\""]",922.62,"{\"": \""17%\""}",33772,1,"""Europe""" +2024-02-01,92306,3808,"[\""Wireless Mouse\"", \""Laptop\""]",832.58,{},17712,0,"""Europe""" +2024-12-16,92307,5107,"[\""Headphones\"", \""Phone\""]",2441.74,{},294850,0,"""Africa""" +2023-06-23,92308,2658,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1083.94,"{\""loyalty\"": \""24%\""}",273402,1,"""Asia""" +2023-07-05,92309,3845,"[\""Phone\"", \""Tablet\""]",2673.7,{},170778,1,"""Asia""" +2023-10-16,92310,6848,"[\""Wireless Mouse\"", \""Monitor\""]",3276.69,{},177532,0,"""Asia""" +2023-01-27,92311,17,"[\""Phone\""]",4175.26,{},268328,0,"""Europe""" +2023-04-20,92312,3936,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4897.55,{},23175,1,"""Europe""" +2023-01-30,92313,2338,"[\""Laptop\"", \""Charger\""]",2181.21,"{\"": \""17%\""}",84801,1,"""Africa""" +2023-01-19,92314,5977,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1466.28,{},165574,1,"""Asia""" +2024-03-10,92315,9825,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",953.04,{},196566,0,"""North America""" +2023-02-09,92316,4802,"[\""Phone\""]",881.2,"{\"": \""23%\""}",12113,1,"""Asia""" +2024-08-19,92317,4599,"[\""Charger\""]",575.85,{},32841,1,"""Europe""" +2023-05-29,92318,2996,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3771.09,"{\""promo\"": \""18%\""}",100109,0,"""North America""" +2023-05-15,92319,1284,"[\""Tablet\""]",4876.32,{},241856,0,"""South America""" +2024-09-07,92320,4782,"[\""Charger\"", \""Phone\"", \""Monitor\""]",2313.16,{},49331,1,"""South America""" +2024-06-27,92321,8431,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",157.46,"{\""seasonal\"": \""26%\""}",265354,0,"""South America""" +2024-10-12,92322,6896,"[\""Monitor\"", \""Laptop\""]",181.89,{},290411,0,"""South America""" +2024-11-08,92323,7244,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3214.68,{},166633,1,"""Asia""" +2023-09-20,92324,5296,"[\""Phone\""]",653.94,"{\""promo\"": \""6%\""}",5685,0,"""Asia""" +2024-11-06,92325,8904,"[\""Charger\"", \""Headphones\""]",1931.73,"{\""seasonal\"": \""16%\""}",124218,0,"""North America""" +2023-01-19,92326,634,"[\""Charger\"", \""Keyboard\""]",1635.39,{},265377,1,"""South America""" +2024-08-05,92327,3228,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4037.92,{},122687,0,"""Asia""" +2024-05-15,92328,7714,"[\""Tablet\"", \""Monitor\""]",926.42,"{\""promo\"": \""20%\""}",23106,0,"""Europe""" +2024-07-09,92329,8014,"[\""Tablet\"", \""Headphones\""]",2438.63,{},266967,1,"""South America""" +2023-10-13,92330,8211,"[\""Headphones\"", \""Keyboard\""]",2920.9,"{\""seasonal\"": \""16%\""}",223294,1,"""Africa""" +2024-07-11,92331,1215,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2663.66,"{\""seasonal\"": \""27%\""}",215084,0,"""Europe""" +2024-08-15,92332,5875,"[\""Wireless Mouse\"", \""Charger\""]",2292.67,{},160029,0,"""South America""" +2023-06-18,92333,1625,"[\""Headphones\""]",1161.73,"{\""promo\"": \""23%\""}",183016,1,"""Europe""" +2024-06-23,92334,1528,"[\""Keyboard\"", \""Headphones\""]",4546.32,{},213063,0,"""Europe""" +2023-12-30,92335,4342,"[\""Headphones\""]",1717.7,"{\"": \""11%\""}",176137,0,"""Asia""" +2023-08-08,92336,2430,"[\""Keyboard\""]",1558.51,{},100122,1,"""Africa""" +2024-05-31,92337,6431,"[\""Keyboard\""]",2941.09,"{\""loyalty\"": \""23%\""}",261800,0,"""Africa""" +2024-02-25,92338,8338,"[\""Charger\""]",2539.54,{},191146,1,"""North America""" +2023-10-10,92339,6833,"[\""Charger\"", \""Phone\""]",968.08,"{\""seasonal\"": \""20%\""}",277621,1,"""North America""" +2023-12-21,92340,7312,"[\""Tablet\"", \""Keyboard\""]",2088.74,"{\""loyalty\"": \""25%\""}",94658,1,"""Europe""" +2024-04-09,92341,5458,"[\""Wireless Mouse\"", \""Keyboard\""]",861.17,"{\""promo\"": \""9%\""}",252372,1,"""Africa""" +2024-10-26,92342,16,"[\""Headphones\"", \""Charger\""]",2484.8,"{\""seasonal\"": \""15%\""}",153760,1,"""Africa""" +2023-02-24,92343,3395,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3678.72,{},99844,0,"""Asia""" +2023-04-24,92344,473,"[\""Tablet\""]",3559.28,{},156858,1,"""Asia""" +2024-03-12,92345,5414,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4627.64,"{\"": \""23%\""}",109494,1,"""North America""" +2023-07-13,92346,5648,"[\""Wireless Mouse\"", \""Keyboard\""]",1859.42,"{\""loyalty\"": \""13%\""}",7106,0,"""North America""" +2023-07-23,92347,207,"[\""Wireless Mouse\""]",2736.31,"{\"": \""23%\""}",261939,0,"""Europe""" +2023-02-03,92348,848,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1750.12,"{\""promo\"": \""5%\""}",3741,1,"""South America""" +2024-03-03,92349,74,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2977.27,{},196742,1,"""Europe""" +2024-08-20,92350,2815,"[\""Headphones\"", \""Keyboard\""]",1656.54,{},92179,1,"""North America""" +2024-10-20,92351,4510,"[\""Phone\"", \""Tablet\""]",1997.45,{},219297,1,"""Africa""" +2023-03-16,92352,9807,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",90.46,"{\""seasonal\"": \""26%\""}",188853,0,"""North America""" +2024-12-31,92353,8334,"[\""Laptop\""]",1779.58,{},296940,0,"""South America""" +2023-06-08,92354,9647,"[\""Monitor\"", \""Headphones\""]",1173.78,"{\""loyalty\"": \""26%\""}",47011,0,"""South America""" +2024-07-03,92355,3708,"[\""Charger\""]",1469.64,"{\"": \""11%\""}",201952,0,"""North America""" +2024-09-15,92356,4207,"[\""Charger\""]",2822.74,"{\""promo\"": \""24%\""}",74116,1,"""Asia""" +2023-04-06,92357,7043,"[\""Laptop\"", \""Monitor\""]",2555.24,{},116274,0,"""Europe""" +2024-10-15,92358,4336,"[\""Laptop\"", \""Wireless Mouse\""]",1306.62,"{\"": \""24%\""}",202443,0,"""Africa""" +2023-05-19,92359,1698,"[\""Monitor\"", \""Headphones\""]",3958.19,"{\""promo\"": \""12%\""}",208265,0,"""North America""" +2023-11-30,92360,1617,"[\""Wireless Mouse\""]",4209.52,"{\""seasonal\"": \""24%\""}",295742,1,"""Africa""" +2023-05-21,92361,4019,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1597.42,{},100744,1,"""South America""" +2024-07-14,92362,2084,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4785.48,"{\""loyalty\"": \""6%\""}",208687,0,"""Africa""" +2023-03-13,92363,7544,"[\""Charger\"", \""Monitor\"", \""Phone\""]",1830.33,"{\"": \""25%\""}",175664,0,"""Europe""" +2023-03-20,92364,3971,"[\""Keyboard\""]",2870.05,"{\""loyalty\"": \""9%\""}",296008,0,"""Europe""" +2023-12-11,92365,2422,"[\""Keyboard\"", \""Headphones\""]",4459.67,{},159772,0,"""South America""" +2023-06-24,92366,1450,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3510.07,{},101539,0,"""South America""" +2024-08-12,92367,3659,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1626.86,"{\""promo\"": \""8%\""}",52341,1,"""Africa""" +2024-07-09,92368,1858,"[\""Tablet\"", \""Phone\""]",4708.93,{},104022,0,"""Europe""" +2023-03-26,92369,1577,"[\""Charger\""]",459.44,{},147381,0,"""North America""" +2023-12-27,92370,3271,"[\""Charger\"", \""Wireless Mouse\""]",3606.64,"{\""seasonal\"": \""22%\""}",151062,0,"""North America""" +2024-08-27,92371,6948,"[\""Monitor\"", \""Tablet\""]",4247.29,"{\""promo\"": \""20%\""}",130299,0,"""Africa""" +2023-04-22,92372,8768,"[\""Monitor\""]",1312.96,{},174241,1,"""South America""" +2023-04-23,92373,7472,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",230.35,{},113393,0,"""South America""" +2023-10-23,92374,6249,"[\""Keyboard\""]",4441.13,"{\"": \""6%\""}",39952,0,"""Africa""" +2023-10-30,92375,5084,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2064.76,{},184450,0,"""Asia""" +2024-08-16,92376,231,"[\""Wireless Mouse\""]",1958.08,"{\""loyalty\"": \""13%\""}",62962,1,"""Asia""" +2023-03-24,92377,6057,"[\""Monitor\""]",2169.17,"{\""promo\"": \""7%\""}",182143,1,"""Africa""" +2023-02-04,92378,8814,"[\""Phone\"", \""Monitor\""]",4663.87,"{\""seasonal\"": \""26%\""}",23711,1,"""North America""" +2023-04-22,92379,1130,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",1299.4,"{\""loyalty\"": \""7%\""}",297133,0,"""North America""" +2023-05-04,92380,2716,"[\""Charger\"", \""Phone\""]",1437.46,{},55505,0,"""Asia""" +2024-05-29,92381,582,"[\""Monitor\""]",2141.64,"{\"": \""24%\""}",256102,1,"""South America""" +2024-11-28,92382,6429,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",913.07,{},118406,1,"""South America""" +2024-11-10,92383,8157,"[\""Tablet\""]",2437.67,"{\""seasonal\"": \""24%\""}",266976,1,"""Africa""" +2023-04-28,92384,4473,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1503.38,{},108741,1,"""Africa""" +2024-12-02,92385,1417,"[\""Keyboard\"", \""Monitor\""]",3796.12,"{\""promo\"": \""29%\""}",132090,1,"""Africa""" +2024-08-24,92386,2414,"[\""Keyboard\""]",1846.52,{},214434,0,"""Africa""" +2024-10-27,92387,6076,"[\""Charger\"", \""Headphones\""]",4992.97,"{\""promo\"": \""9%\""}",153671,1,"""Europe""" +2024-04-11,92388,2926,"[\""Wireless Mouse\"", \""Keyboard\""]",4989.31,"{\""loyalty\"": \""10%\""}",38480,1,"""North America""" +2024-01-09,92389,9017,"[\""Monitor\""]",2726.06,{},227968,0,"""South America""" +2023-07-23,92390,2904,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4750.95,{},248035,0,"""South America""" +2024-12-24,92391,4685,"[\""Monitor\""]",3178.14,{},299417,1,"""Asia""" +2023-12-14,92392,9052,"[\""Charger\""]",3679.98,{},135294,1,"""South America""" +2024-12-31,92393,5551,"[\""Tablet\""]",1794.46,"{\""promo\"": \""30%\""}",7642,0,"""Europe""" +2023-10-27,92394,6348,"[\""Charger\""]",2578.0,{},265304,1,"""Asia""" +2023-05-25,92395,1208,"[\""Laptop\""]",4071.33,{},33713,0,"""Africa""" +2024-06-28,92396,9850,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3626.13,"{\""loyalty\"": \""12%\""}",107342,0,"""Europe""" +2024-04-02,92397,5407,"[\""Laptop\""]",258.07,{},94022,1,"""Europe""" +2024-04-28,92398,3781,"[\""Laptop\""]",2413.75,"{\"": \""26%\""}",246417,1,"""North America""" +2023-05-19,92399,2510,"[\""Laptop\""]",1413.92,"{\""seasonal\"": \""24%\""}",213369,1,"""Europe""" +2023-05-13,92400,2093,"[\""Tablet\""]",4524.22,{},128168,1,"""North America""" +2023-10-30,92401,2982,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3904.13,"{\"": \""13%\""}",67119,0,"""Asia""" +2024-08-10,92402,3898,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",4405.64,{},285006,1,"""Africa""" +2024-05-17,92403,9794,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3613.78,{},36106,0,"""Africa""" +2023-01-24,92404,6535,"[\""Laptop\""]",1375.58,"{\""loyalty\"": \""14%\""}",22240,1,"""Africa""" +2023-02-19,92405,3010,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4401.77,{},269408,1,"""North America""" +2024-01-23,92406,5726,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4523.24,{},126692,1,"""Asia""" +2023-04-16,92407,8252,"[\""Charger\""]",3849.4,{},251305,1,"""Asia""" +2023-03-31,92408,6013,"[\""Monitor\""]",2591.62,"{\"": \""16%\""}",118648,1,"""Africa""" +2024-01-14,92409,7125,"[\""Wireless Mouse\""]",1943.48,{},46489,1,"""Africa""" +2023-07-04,92410,3208,"[\""Charger\"", \""Phone\""]",3714.2,"{\""loyalty\"": \""10%\""}",162121,1,"""Asia""" +2023-07-17,92411,4285,"[\""Wireless Mouse\"", \""Laptop\""]",141.65,"{\""loyalty\"": \""18%\""}",169515,0,"""Africa""" +2023-12-31,92412,3538,"[\""Tablet\"", \""Headphones\""]",779.63,"{\""loyalty\"": \""26%\""}",191739,0,"""Africa""" +2024-10-08,92413,9250,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1124.84,{},267483,0,"""Africa""" +2024-03-17,92414,2062,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",614.84,"{\"": \""11%\""}",158134,0,"""Europe""" +2023-11-17,92415,8187,"[\""Headphones\"", \""Laptop\""]",4902.58,{},199661,0,"""Europe""" +2023-11-18,92416,3346,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4307.65,{},28206,1,"""Europe""" +2023-03-10,92417,7333,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3441.63,"{\""loyalty\"": \""8%\""}",135781,0,"""North America""" +2023-10-25,92418,6547,"[\""Keyboard\"", \""Phone\""]",1099.9,"{\""promo\"": \""7%\""}",18254,1,"""Africa""" +2023-06-20,92419,6573,"[\""Phone\""]",4144.31,"{\"": \""20%\""}",34366,0,"""Africa""" +2024-04-14,92420,9317,"[\""Monitor\""]",4746.59,"{\""loyalty\"": \""14%\""}",287074,0,"""Africa""" +2023-09-19,92421,6063,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",2637.25,"{\"": \""17%\""}",283486,1,"""Europe""" +2024-12-20,92422,746,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",448.91,{},232199,0,"""North America""" +2023-01-20,92423,5406,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2089.11,{},132705,1,"""North America""" +2024-09-16,92424,748,"[\""Tablet\""]",3007.83,"{\"": \""20%\""}",287197,0,"""North America""" +2023-05-10,92425,203,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3299.64,{},88200,1,"""Europe""" +2023-02-23,92426,817,"[\""Tablet\"", \""Phone\""]",1391.77,"{\""seasonal\"": \""17%\""}",161181,0,"""Africa""" +2024-01-22,92427,7770,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",4946.03,{},53146,0,"""North America""" +2023-08-09,92428,7047,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4353.11,"{\"": \""22%\""}",216751,1,"""Europe""" +2024-12-23,92429,1487,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",1433.25,"{\""seasonal\"": \""9%\""}",254124,0,"""Europe""" +2024-02-29,92430,9390,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",1658.12,{},23440,1,"""South America""" +2024-11-02,92431,233,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1744.29,{},193021,0,"""Africa""" +2024-09-21,92432,9541,"[\""Headphones\""]",4888.06,"{\""promo\"": \""7%\""}",267816,1,"""Africa""" +2024-05-28,92433,283,"[\""Laptop\"", \""Headphones\""]",4932.23,{},226426,0,"""South America""" +2023-11-05,92434,6291,"[\""Wireless Mouse\"", \""Keyboard\""]",1220.15,"{\"": \""23%\""}",27631,0,"""South America""" +2023-08-02,92435,4833,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4084.33,{},74526,0,"""North America""" +2023-12-03,92436,5898,"[\""Phone\""]",1411.32,{},134066,1,"""Asia""" +2024-07-25,92437,4497,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2066.01,"{\""seasonal\"": \""11%\""}",108454,1,"""Europe""" +2023-12-03,92438,4449,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4370.16,{},13308,1,"""Africa""" +2023-03-14,92439,3129,"[\""Phone\"", \""Charger\""]",3834.92,{},90851,0,"""North America""" +2023-12-05,92440,3867,"[\""Charger\"", \""Keyboard\""]",943.18,"{\""promo\"": \""19%\""}",27674,0,"""North America""" +2024-09-13,92441,3521,"[\""Phone\""]",2345.11,"{\""seasonal\"": \""14%\""}",173848,0,"""Europe""" +2023-09-24,92442,8559,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",616.71,{},269552,1,"""Asia""" +2023-07-10,92443,6446,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",916.93,"{\""seasonal\"": \""10%\""}",162070,0,"""Africa""" +2023-09-09,92444,4976,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2490.5,"{\""seasonal\"": \""28%\""}",81501,1,"""Europe""" +2023-09-08,92445,5616,"[\""Phone\"", \""Charger\""]",279.09,{},50098,0,"""North America""" +2023-09-15,92446,4779,"[\""Keyboard\"", \""Laptop\""]",3428.12,"{\""loyalty\"": \""10%\""}",6722,0,"""Africa""" +2024-09-13,92447,7773,"[\""Wireless Mouse\"", \""Charger\""]",4772.09,"{\"": \""25%\""}",4579,0,"""Europe""" +2024-12-08,92448,4517,"[\""Laptop\"", \""Tablet\""]",4970.13,{},156596,1,"""Africa""" +2023-10-05,92449,7262,"[\""Headphones\"", \""Keyboard\""]",882.82,{},290960,1,"""Europe""" +2023-09-15,92450,2257,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4644.86,{},8640,1,"""Africa""" +2024-07-04,92451,4230,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4005.48,"{\""seasonal\"": \""29%\""}",93611,1,"""Africa""" +2023-12-08,92452,841,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",501.1,"{\""seasonal\"": \""8%\""}",291400,0,"""North America""" +2023-08-30,92453,7945,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",2968.47,"{\""seasonal\"": \""11%\""}",240138,0,"""North America""" +2023-02-28,92454,6664,"[\""Headphones\""]",4557.4,"{\""loyalty\"": \""29%\""}",186296,0,"""North America""" +2024-08-25,92455,8615,"[\""Keyboard\""]",4969.81,{},198570,1,"""Europe""" +2024-03-24,92456,9059,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",3479.87,{},21942,0,"""Europe""" +2023-10-26,92457,9681,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",1011.07,{},17097,1,"""North America""" +2023-09-22,92458,6864,"[\""Tablet\"", \""Monitor\""]",3102.74,{},250936,0,"""North America""" +2024-09-01,92459,9356,"[\""Laptop\"", \""Keyboard\""]",4933.06,{},36606,1,"""Europe""" +2024-05-27,92460,8060,"[\""Tablet\""]",894.92,{},17079,0,"""Europe""" +2024-08-25,92461,2183,"[\""Tablet\""]",1568.3,"{\""loyalty\"": \""12%\""}",67574,1,"""North America""" +2024-11-26,92462,1217,"[\""Monitor\"", \""Phone\""]",4833.32,{},287795,0,"""Africa""" +2024-03-03,92463,6354,"[\""Phone\""]",1472.8,{},60542,1,"""South America""" +2024-10-11,92464,5225,"[\""Monitor\""]",2657.17,"{\""loyalty\"": \""27%\""}",132082,1,"""South America""" +2023-10-24,92465,5578,"[\""Phone\"", \""Monitor\""]",1442.16,"{\"": \""12%\""}",299808,1,"""Europe""" +2023-04-28,92466,2559,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3211.63,"{\""loyalty\"": \""26%\""}",13618,1,"""Africa""" +2024-05-13,92467,6500,"[\""Keyboard\"", \""Phone\""]",4126.8,"{\""loyalty\"": \""20%\""}",209279,1,"""Africa""" +2023-05-14,92468,3429,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1240.29,"{\""promo\"": \""30%\""}",268826,0,"""South America""" +2023-07-27,92469,1597,"[\""Wireless Mouse\"", \""Keyboard\""]",316.16,{},80131,1,"""Europe""" +2024-12-01,92470,376,"[\""Tablet\"", \""Charger\""]",600.56,{},145536,1,"""Africa""" +2023-07-08,92471,9494,"[\""Keyboard\""]",426.88,{},177288,0,"""Asia""" +2023-11-25,92472,7689,"[\""Keyboard\"", \""Wireless Mouse\""]",1152.07,{},275351,1,"""Africa""" +2023-10-06,92473,9738,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3628.99,"{\""loyalty\"": \""24%\""}",79096,1,"""Europe""" +2023-07-16,92474,6852,"[\""Keyboard\"", \""Phone\""]",1242.51,{},26060,1,"""North America""" +2023-10-13,92475,4615,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2839.82,"{\""loyalty\"": \""29%\""}",171287,1,"""North America""" +2024-03-15,92476,4781,"[\""Keyboard\"", \""Tablet\""]",2825.03,{},119455,0,"""Europe""" +2023-02-10,92477,983,"[\""Headphones\""]",3998.23,"{\"": \""30%\""}",132554,1,"""Africa""" +2024-02-22,92478,5345,"[\""Tablet\"", \""Keyboard\""]",2136.48,"{\""loyalty\"": \""25%\""}",87197,1,"""South America""" +2024-02-11,92479,327,"[\""Laptop\""]",631.69,"{\""loyalty\"": \""6%\""}",257956,0,"""Asia""" +2023-03-14,92480,1345,"[\""Phone\""]",3202.81,"{\""loyalty\"": \""28%\""}",2362,1,"""Africa""" +2023-03-31,92481,2131,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",643.1,"{\""seasonal\"": \""9%\""}",205485,1,"""Asia""" +2023-12-05,92482,7295,"[\""Charger\""]",1503.96,"{\""loyalty\"": \""13%\""}",126225,0,"""Asia""" +2023-10-10,92483,3246,"[\""Keyboard\"", \""Laptop\""]",441.97,"{\"": \""19%\""}",263134,0,"""South America""" +2024-06-13,92484,5381,"[\""Keyboard\"", \""Tablet\""]",4476.04,{},88789,1,"""Africa""" +2023-10-02,92485,3232,"[\""Phone\"", \""Monitor\""]",231.07,"{\"": \""30%\""}",29470,1,"""South America""" +2024-09-04,92486,4732,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1667.49,{},98614,0,"""Europe""" +2023-03-20,92487,9245,"[\""Headphones\""]",1178.61,"{\"": \""13%\""}",3165,1,"""Asia""" +2023-03-31,92488,7940,"[\""Headphones\""]",3938.98,"{\""seasonal\"": \""8%\""}",83775,0,"""Europe""" +2024-08-11,92489,5733,"[\""Tablet\"", \""Keyboard\""]",318.7,{},238463,1,"""Europe""" +2023-02-22,92490,5794,"[\""Monitor\""]",1224.33,{},220336,0,"""North America""" +2024-12-21,92491,5895,"[\""Charger\""]",245.96,"{\""seasonal\"": \""12%\""}",97430,0,"""Africa""" +2024-08-14,92492,3663,"[\""Headphones\""]",1157.0,"{\""promo\"": \""8%\""}",259215,0,"""North America""" +2023-04-06,92493,494,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",983.27,{},218282,1,"""North America""" +2023-04-21,92494,4028,"[\""Wireless Mouse\"", \""Laptop\""]",558.33,"{\""loyalty\"": \""28%\""}",279048,0,"""Africa""" +2023-10-14,92495,9464,"[\""Laptop\"", \""Monitor\""]",4211.83,"{\"": \""27%\""}",73320,0,"""South America""" +2024-09-11,92496,5381,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",2169.99,"{\""promo\"": \""19%\""}",221399,0,"""Europe""" +2024-10-01,92497,9534,"[\""Keyboard\"", \""Headphones\""]",576.82,{},31790,1,"""North America""" +2023-04-27,92498,4402,"[\""Headphones\""]",2334.85,"{\""seasonal\"": \""25%\""}",33823,0,"""Asia""" +2024-11-28,92499,5943,"[\""Headphones\"", \""Keyboard\""]",776.38,{},209382,1,"""Africa""" +2024-07-01,92500,5749,"[\""Phone\""]",1408.15,{},155548,1,"""Europe""" +2023-09-06,92501,5187,"[\""Phone\""]",2032.04,{},45905,1,"""Africa""" +2023-09-18,92502,1273,"[\""Laptop\"", \""Charger\""]",2322.33,"{\""loyalty\"": \""29%\""}",94263,0,"""North America""" +2024-01-29,92503,1946,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1749.94,{},28513,0,"""Europe""" +2024-04-15,92504,3013,"[\""Wireless Mouse\"", \""Keyboard\""]",4995.54,"{\""loyalty\"": \""12%\""}",159217,0,"""Africa""" +2024-06-01,92505,5728,"[\""Laptop\"", \""Headphones\""]",513.15,{},70088,0,"""Asia""" +2023-06-25,92506,2012,"[\""Tablet\""]",2499.63,{},197838,1,"""Africa""" +2024-11-01,92507,687,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4915.02,{},151775,0,"""Europe""" +2024-12-04,92508,6374,"[\""Charger\""]",2636.12,"{\"": \""27%\""}",261185,1,"""South America""" +2024-11-20,92509,8030,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2017.7,{},164432,1,"""Asia""" +2024-01-24,92510,726,"[\""Laptop\""]",1854.31,{},197860,1,"""Europe""" +2024-06-24,92511,7107,"[\""Charger\""]",1567.66,{},50098,1,"""Africa""" +2024-09-28,92512,6777,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4964.48,{},36711,1,"""South America""" +2023-04-09,92513,2563,"[\""Monitor\"", \""Wireless Mouse\""]",4988.43,"{\""promo\"": \""12%\""}",30767,1,"""South America""" +2024-03-12,92514,9180,"[\""Monitor\"", \""Tablet\""]",3320.72,"{\""promo\"": \""30%\""}",228782,1,"""Europe""" +2024-02-29,92515,7124,"[\""Keyboard\"", \""Laptop\""]",1446.53,{},98077,1,"""Asia""" +2024-10-08,92516,7954,"[\""Keyboard\"", \""Wireless Mouse\""]",4840.0,"{\""promo\"": \""8%\""}",17967,1,"""South America""" +2024-09-13,92517,3274,"[\""Headphones\""]",1579.09,{},128793,1,"""Africa""" +2023-07-18,92518,4352,"[\""Keyboard\""]",4607.48,"{\"": \""28%\""}",145936,0,"""Asia""" +2023-04-26,92519,7964,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",1477.54,{},77315,0,"""Europe""" +2024-10-02,92520,6719,"[\""Monitor\"", \""Charger\""]",938.41,{},24484,1,"""Europe""" +2024-01-08,92521,4878,"[\""Tablet\""]",109.66,"{\""promo\"": \""16%\""}",153341,0,"""Europe""" +2024-04-27,92522,9694,"[\""Charger\""]",3353.75,"{\"": \""14%\""}",130507,1,"""North America""" +2023-04-23,92523,6307,"[\""Monitor\"", \""Wireless Mouse\""]",2655.87,"{\""seasonal\"": \""28%\""}",284268,0,"""Europe""" +2023-05-28,92524,9117,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4892.65,{},161539,1,"""North America""" +2023-11-25,92525,4938,"[\""Phone\"", \""Keyboard\""]",3561.53,"{\"": \""26%\""}",46427,1,"""Africa""" +2024-07-24,92526,4417,"[\""Keyboard\"", \""Charger\""]",2255.22,"{\"": \""24%\""}",146983,1,"""South America""" +2023-01-27,92527,2692,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",910.28,"{\""loyalty\"": \""6%\""}",67503,1,"""Europe""" +2024-12-25,92528,1361,"[\""Keyboard\""]",3499.02,"{\"": \""17%\""}",260090,1,"""Asia""" +2024-09-09,92529,1093,"[\""Headphones\"", \""Charger\""]",487.02,{},78571,1,"""South America""" +2023-12-31,92530,5217,"[\""Headphones\"", \""Keyboard\""]",4993.35,{},208091,0,"""Asia""" +2024-12-30,92531,7084,"[\""Headphones\""]",1141.26,"{\""promo\"": \""20%\""}",146038,0,"""Africa""" +2023-11-05,92532,3493,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",234.6,"{\""promo\"": \""17%\""}",296316,0,"""Africa""" +2023-06-16,92533,1282,"[\""Phone\""]",273.12,{},132248,0,"""Europe""" +2024-08-22,92534,6508,"[\""Laptop\"", \""Phone\""]",3882.55,{},208776,0,"""Africa""" +2024-05-16,92535,7174,"[\""Monitor\"", \""Phone\""]",1540.19,{},13689,0,"""Europe""" +2024-11-28,92536,6462,"[\""Charger\"", \""Headphones\""]",2290.1,{},91540,1,"""Asia""" +2024-11-16,92537,2739,"[\""Wireless Mouse\"", \""Laptop\""]",760.02,{},218973,0,"""North America""" +2023-05-20,92538,921,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4626.08,"{\""seasonal\"": \""14%\""}",38043,0,"""Asia""" +2023-08-21,92539,7990,"[\""Headphones\"", \""Charger\""]",3710.72,"{\""loyalty\"": \""21%\""}",21088,1,"""Africa""" +2023-10-15,92540,271,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4167.53,{},183188,0,"""Africa""" +2023-03-12,92541,2505,"[\""Monitor\"", \""Tablet\""]",1103.48,{},128005,1,"""Asia""" +2023-04-10,92542,7734,"[\""Keyboard\"", \""Wireless Mouse\""]",2364.75,{},107276,0,"""South America""" +2024-01-26,92543,4199,"[\""Wireless Mouse\"", \""Charger\""]",400.48,{},168451,0,"""Asia""" +2024-05-03,92544,9716,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",2856.32,{},243596,1,"""South America""" +2024-09-08,92545,5664,"[\""Laptop\""]",3419.0,{},63645,1,"""South America""" +2023-07-28,92546,6455,"[\""Monitor\""]",2585.59,{},18643,1,"""South America""" +2023-10-03,92547,2945,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4127.8,{},51533,1,"""North America""" +2024-08-09,92548,968,"[\""Keyboard\"", \""Phone\""]",2348.14,{},176422,1,"""Asia""" +2024-12-19,92549,9673,"[\""Monitor\"", \""Tablet\""]",2506.34,{},151605,0,"""Asia""" +2023-06-09,92550,1014,"[\""Monitor\""]",2564.73,{},240567,1,"""North America""" +2024-10-28,92551,8487,"[\""Monitor\"", \""Keyboard\""]",4289.88,"{\""seasonal\"": \""16%\""}",289721,0,"""North America""" +2023-09-05,92552,6952,"[\""Phone\"", \""Charger\""]",1137.21,"{\""loyalty\"": \""23%\""}",251564,0,"""North America""" +2024-04-15,92553,9501,"[\""Keyboard\""]",4918.67,"{\""seasonal\"": \""13%\""}",216978,0,"""Africa""" +2023-07-08,92554,5659,"[\""Wireless Mouse\""]",2595.13,{},217449,1,"""North America""" +2023-03-21,92555,6512,"[\""Laptop\"", \""Phone\""]",1862.95,"{\""seasonal\"": \""10%\""}",209818,0,"""Asia""" +2023-04-01,92556,8878,"[\""Headphones\""]",434.52,"{\""seasonal\"": \""18%\""}",251139,1,"""North America""" +2024-01-22,92557,1501,"[\""Headphones\"", \""Wireless Mouse\""]",469.02,{},297888,0,"""Europe""" +2023-02-17,92558,180,"[\""Tablet\"", \""Laptop\""]",3087.31,"{\""promo\"": \""29%\""}",127011,1,"""South America""" +2024-05-28,92559,4566,"[\""Headphones\""]",4080.6,{},268276,0,"""Africa""" +2024-01-12,92560,2269,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4994.39,{},277287,0,"""Asia""" +2024-02-01,92561,6681,"[\""Tablet\"", \""Monitor\""]",1818.69,"{\""seasonal\"": \""13%\""}",102238,0,"""South America""" +2024-05-21,92562,6224,"[\""Tablet\""]",4007.93,{},50956,1,"""Asia""" +2024-01-04,92563,6993,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1427.61,"{\""promo\"": \""11%\""}",64689,1,"""North America""" +2023-06-19,92564,5547,"[\""Wireless Mouse\"", \""Tablet\""]",3852.33,{},196244,1,"""Europe""" +2024-03-02,92565,2920,"[\""Charger\"", \""Phone\""]",3625.79,{},35001,0,"""Africa""" +2024-04-21,92566,8828,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",982.14,{},36385,1,"""South America""" +2024-07-22,92567,1682,"[\""Monitor\"", \""Wireless Mouse\""]",444.63,"{\""seasonal\"": \""30%\""}",290167,1,"""South America""" +2023-06-07,92568,6566,"[\""Charger\"", \""Laptop\""]",112.97,"{\""loyalty\"": \""30%\""}",172860,1,"""Africa""" +2024-07-22,92569,1627,"[\""Phone\""]",3476.81,"{\"": \""10%\""}",40331,1,"""Asia""" +2024-03-06,92570,6305,"[\""Headphones\"", \""Charger\""]",1487.5,{},136290,1,"""Asia""" +2023-08-20,92571,3470,"[\""Charger\""]",3838.98,{},295195,1,"""North America""" +2024-08-01,92572,7537,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1841.14,{},23256,1,"""South America""" +2023-02-26,92573,3398,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2411.34,{},169565,1,"""South America""" +2024-04-05,92574,2986,"[\""Tablet\""]",725.34,"{\"": \""12%\""}",165023,1,"""Europe""" +2024-08-01,92575,4063,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1994.96,{},53738,1,"""South America""" +2023-01-21,92576,4263,"[\""Tablet\"", \""Headphones\""]",1640.73,"{\"": \""6%\""}",220049,0,"""Asia""" +2023-05-20,92577,8688,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3418.24,{},298950,1,"""Africa""" +2024-07-11,92578,3542,"[\""Monitor\""]",1588.0,"{\"": \""25%\""}",246526,0,"""Asia""" +2024-08-07,92579,1624,"[\""Tablet\"", \""Phone\""]",2018.5,{},42958,1,"""Europe""" +2024-01-20,92580,8317,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",896.31,{},257251,1,"""South America""" +2023-12-13,92581,8555,"[\""Keyboard\""]",1406.83,{},162756,0,"""North America""" +2024-06-10,92582,1670,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4275.72,{},119320,1,"""Africa""" +2023-12-26,92583,4747,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",4788.53,"{\""loyalty\"": \""13%\""}",79533,0,"""Asia""" +2024-05-20,92584,1443,"[\""Laptop\""]",4569.1,{},227666,0,"""North America""" +2023-04-22,92585,9797,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3863.71,"{\""seasonal\"": \""30%\""}",162546,1,"""Europe""" +2023-06-27,92586,4670,"[\""Headphones\""]",4022.04,{},294427,1,"""Africa""" +2023-11-10,92587,5147,"[\""Charger\""]",1515.93,{},136889,0,"""Europe""" +2024-07-08,92588,9672,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1830.39,"{\""promo\"": \""24%\""}",85028,0,"""Asia""" +2023-07-31,92589,4311,"[\""Laptop\""]",704.31,"{\""loyalty\"": \""29%\""}",86102,0,"""North America""" +2024-11-30,92590,8072,"[\""Charger\"", \""Phone\""]",1703.37,"{\""promo\"": \""12%\""}",109683,0,"""South America""" +2023-12-26,92591,5044,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1782.59,"{\"": \""9%\""}",298808,0,"""Asia""" +2023-01-17,92592,8705,"[\""Wireless Mouse\""]",1312.14,"{\""promo\"": \""28%\""}",166939,1,"""North America""" +2023-02-11,92593,6790,"[\""Laptop\"", \""Phone\""]",2656.95,{},219249,0,"""Africa""" +2024-06-07,92594,6837,"[\""Tablet\"", \""Monitor\""]",427.91,{},37997,1,"""South America""" +2023-09-24,92595,1914,"[\""Monitor\""]",3236.54,"{\"": \""9%\""}",209619,0,"""South America""" +2024-04-28,92596,7828,"[\""Phone\"", \""Charger\""]",651.52,{},96403,0,"""Europe""" +2024-06-19,92597,9578,"[\""Monitor\""]",1916.04,"{\""loyalty\"": \""10%\""}",138836,0,"""North America""" +2023-01-07,92598,7745,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3246.14,{},55052,1,"""Asia""" +2024-08-14,92599,3115,"[\""Monitor\""]",1903.69,"{\""promo\"": \""16%\""}",270710,1,"""North America""" +2024-12-13,92600,6550,"[\""Phone\""]",3947.09,{},98493,1,"""Europe""" +2024-10-27,92601,3126,"[\""Keyboard\"", \""Charger\""]",4833.94,"{\"": \""29%\""}",208625,0,"""Asia""" +2023-01-29,92602,2987,"[\""Wireless Mouse\""]",4912.88,"{\""loyalty\"": \""23%\""}",119542,0,"""North America""" +2024-03-12,92603,9809,"[\""Keyboard\""]",3401.03,{},171661,0,"""North America""" +2024-03-05,92604,9665,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3435.28,{},183791,0,"""Europe""" +2023-04-12,92605,5682,"[\""Laptop\"", \""Tablet\""]",317.09,{},290864,1,"""South America""" +2023-04-15,92606,6035,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4595.98,{},186079,1,"""Africa""" +2023-10-05,92607,6920,"[\""Tablet\""]",1335.37,"{\""seasonal\"": \""10%\""}",223645,1,"""Asia""" +2023-08-08,92608,2426,"[\""Phone\"", \""Headphones\""]",2089.25,"{\""seasonal\"": \""20%\""}",275561,0,"""North America""" +2024-10-08,92609,8168,"[\""Tablet\"", \""Keyboard\""]",1233.48,"{\""promo\"": \""6%\""}",296031,1,"""Europe""" +2023-01-02,92610,9380,"[\""Headphones\""]",4117.55,"{\""promo\"": \""15%\""}",213890,1,"""Asia""" +2024-07-08,92611,2932,"[\""Monitor\""]",2615.1,{},154177,0,"""Europe""" +2023-09-06,92612,4307,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",554.81,"{\""loyalty\"": \""7%\""}",259952,1,"""South America""" +2023-09-11,92613,880,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2196.29,{},233176,1,"""South America""" +2023-06-08,92614,5864,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4100.39,"{\""seasonal\"": \""5%\""}",285003,0,"""North America""" +2023-08-26,92615,3869,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",3450.03,"{\""seasonal\"": \""18%\""}",161213,1,"""Africa""" +2024-09-15,92616,2823,"[\""Keyboard\""]",1674.38,"{\""loyalty\"": \""17%\""}",137399,1,"""Europe""" +2023-02-22,92617,1350,"[\""Phone\""]",91.64,{},132464,1,"""Africa""" +2024-02-12,92618,230,"[\""Tablet\""]",1060.06,"{\""loyalty\"": \""5%\""}",32293,1,"""Asia""" +2023-08-09,92619,9787,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2280.7,{},255996,0,"""Europe""" +2023-01-30,92620,6556,"[\""Keyboard\"", \""Charger\""]",4757.12,"{\""promo\"": \""28%\""}",248427,0,"""Africa""" +2024-06-01,92621,2425,"[\""Phone\"", \""Wireless Mouse\""]",192.64,{},210231,1,"""South America""" +2023-08-11,92622,400,"[\""Keyboard\"", \""Headphones\""]",1146.57,{},289538,0,"""Africa""" +2024-12-12,92623,8426,"[\""Monitor\""]",787.87,{},103420,0,"""South America""" +2024-12-23,92624,8958,"[\""Charger\""]",1492.94,"{\"": \""14%\""}",246854,0,"""North America""" +2024-06-05,92625,3535,"[\""Tablet\"", \""Headphones\""]",289.15,{},135732,1,"""Africa""" +2023-06-08,92626,4701,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4643.61,{},70725,1,"""South America""" +2023-04-21,92627,5946,"[\""Wireless Mouse\""]",1332.66,"{\""loyalty\"": \""7%\""}",2659,1,"""South America""" +2023-04-13,92628,4329,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4353.55,"{\"": \""23%\""}",229102,1,"""Africa""" +2024-12-21,92629,6194,"[\""Wireless Mouse\"", \""Charger\""]",2916.96,{},162897,0,"""Asia""" +2024-11-26,92630,6651,"[\""Keyboard\"", \""Phone\""]",4046.8,"{\""seasonal\"": \""7%\""}",54524,1,"""North America""" +2023-09-28,92631,8502,"[\""Monitor\""]",3639.5,"{\"": \""13%\""}",152249,0,"""Europe""" +2024-12-24,92632,578,"[\""Monitor\""]",3774.36,{},46958,1,"""Asia""" +2023-02-24,92633,1199,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",714.04,"{\""promo\"": \""8%\""}",144411,1,"""Asia""" +2024-06-07,92634,9032,"[\""Wireless Mouse\""]",4352.83,{},165806,0,"""Africa""" +2024-02-13,92635,1862,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",829.63,"{\"": \""11%\""}",119407,0,"""Asia""" +2023-03-31,92636,6411,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4835.77,{},219919,0,"""North America""" +2024-04-04,92637,9681,"[\""Phone\"", \""Laptop\""]",458.24,"{\""seasonal\"": \""25%\""}",184834,1,"""Africa""" +2024-10-09,92638,2968,"[\""Phone\"", \""Charger\""]",2816.44,{},230844,1,"""South America""" +2023-05-08,92639,2019,"[\""Keyboard\"", \""Monitor\""]",168.78,"{\""seasonal\"": \""24%\""}",221142,1,"""South America""" +2023-04-16,92640,6535,"[\""Headphones\""]",3648.31,"{\""seasonal\"": \""13%\""}",109763,1,"""Asia""" +2024-01-20,92641,7417,"[\""Monitor\"", \""Phone\""]",3796.44,{},221925,1,"""North America""" +2023-09-24,92642,6130,"[\""Phone\""]",342.96,{},119088,1,"""Asia""" +2023-03-19,92643,6673,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",2168.11,{},298617,1,"""Asia""" +2023-05-08,92644,1034,"[\""Monitor\""]",579.04,{},107433,1,"""Africa""" +2024-10-02,92645,1994,"[\""Tablet\"", \""Charger\""]",4102.46,{},111317,0,"""Europe""" +2024-10-25,92646,4194,"[\""Monitor\""]",2068.42,{},173494,0,"""North America""" +2024-07-13,92647,4999,"[\""Tablet\""]",4299.34,"{\""promo\"": \""18%\""}",56182,0,"""South America""" +2024-07-28,92648,4040,"[\""Wireless Mouse\""]",3073.35,{},109539,0,"""Asia""" +2024-09-26,92649,8255,"[\""Phone\"", \""Headphones\""]",1435.54,"{\""loyalty\"": \""7%\""}",49136,0,"""Europe""" +2024-03-03,92650,5830,"[\""Tablet\"", \""Laptop\""]",4931.75,{},155157,0,"""North America""" +2023-12-31,92651,2575,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1891.9,{},140935,0,"""Africa""" +2023-02-04,92652,6101,"[\""Headphones\"", \""Monitor\""]",2590.53,"{\"": \""16%\""}",168850,1,"""Asia""" +2024-02-05,92653,326,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4938.63,"{\""loyalty\"": \""5%\""}",288772,0,"""North America""" +2024-08-10,92654,548,"[\""Wireless Mouse\""]",1734.32,"{\""loyalty\"": \""8%\""}",226911,0,"""Europe""" +2023-01-15,92655,46,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",1723.0,{},289988,1,"""Africa""" +2024-12-10,92656,1059,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",4502.06,"{\""loyalty\"": \""5%\""}",289199,0,"""Africa""" +2023-09-09,92657,5750,"[\""Laptop\""]",3788.76,{},185584,0,"""Europe""" +2023-09-28,92658,1010,"[\""Laptop\""]",2639.01,"{\""loyalty\"": \""29%\""}",278819,1,"""South America""" +2023-11-10,92659,8128,"[\""Headphones\""]",2262.99,"{\""seasonal\"": \""17%\""}",92119,1,"""Europe""" +2023-03-16,92660,2680,"[\""Monitor\""]",4730.76,"{\""seasonal\"": \""28%\""}",295561,1,"""Asia""" +2024-07-06,92661,7987,"[\""Headphones\""]",2618.7,{},133988,0,"""South America""" +2023-04-10,92662,618,"[\""Keyboard\"", \""Phone\""]",3452.38,{},229735,1,"""Asia""" +2024-12-07,92663,9612,"[\""Monitor\""]",4528.32,{},140274,0,"""North America""" +2024-03-25,92664,9090,"[\""Phone\"", \""Charger\""]",1169.95,{},72193,0,"""Europe""" +2024-10-26,92665,9303,"[\""Laptop\""]",4022.88,"{\""promo\"": \""19%\""}",215643,1,"""Africa""" +2023-07-15,92666,307,"[\""Keyboard\""]",427.79,{},227522,0,"""Africa""" +2023-04-25,92667,319,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",399.28,"{\""promo\"": \""24%\""}",165107,1,"""South America""" +2023-01-02,92668,8988,"[\""Phone\"", \""Laptop\""]",3695.97,"{\""loyalty\"": \""8%\""}",92487,1,"""Europe""" +2024-10-04,92669,6828,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",3274.69,{},2471,0,"""Asia""" +2023-07-16,92670,3531,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1120.05,{},109778,0,"""Africa""" +2023-02-15,92671,5004,"[\""Monitor\""]",1654.63,{},174012,0,"""Africa""" +2024-01-18,92672,291,"[\""Phone\"", \""Monitor\""]",3192.85,"{\""promo\"": \""9%\""}",52762,0,"""North America""" +2024-01-10,92673,1153,"[\""Tablet\"", \""Keyboard\""]",2206.81,"{\""promo\"": \""22%\""}",24804,0,"""Africa""" +2023-09-16,92674,8530,"[\""Monitor\""]",3896.24,"{\""seasonal\"": \""22%\""}",60107,1,"""Europe""" +2024-08-25,92675,6391,"[\""Wireless Mouse\"", \""Charger\""]",2294.68,"{\""loyalty\"": \""20%\""}",211805,1,"""South America""" +2023-12-18,92676,4518,"[\""Charger\"", \""Tablet\""]",3139.16,{},243800,1,"""Africa""" +2024-11-26,92677,9005,"[\""Phone\"", \""Tablet\""]",2207.23,"{\""loyalty\"": \""10%\""}",38497,1,"""Africa""" +2024-10-26,92678,3605,"[\""Headphones\""]",4711.06,{},210059,1,"""Asia""" +2024-11-15,92679,1237,"[\""Wireless Mouse\"", \""Laptop\""]",2777.67,"{\"": \""8%\""}",80098,0,"""South America""" +2024-06-02,92680,2945,"[\""Tablet\"", \""Laptop\""]",3850.79,{},280243,0,"""Asia""" +2023-11-03,92681,2764,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4347.64,{},232380,1,"""Asia""" +2023-02-03,92682,356,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1286.74,{},296078,0,"""Asia""" +2024-08-19,92683,8585,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",4636.47,{},186102,1,"""North America""" +2024-10-19,92684,3244,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",2715.65,{},222316,1,"""South America""" +2024-05-23,92685,1066,"[\""Tablet\"", \""Charger\""]",1789.51,"{\"": \""7%\""}",192660,0,"""Asia""" +2024-12-02,92686,8865,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3922.2,"{\"": \""10%\""}",93754,0,"""Asia""" +2023-12-14,92687,1483,"[\""Wireless Mouse\"", \""Laptop\""]",3906.63,{},239936,1,"""Asia""" +2024-04-06,92688,5870,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",662.59,{},57647,0,"""North America""" +2024-09-27,92689,2385,"[\""Laptop\"", \""Phone\""]",3690.69,{},2550,0,"""Africa""" +2024-09-11,92690,1409,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",741.58,"{\"": \""20%\""}",184569,1,"""South America""" +2024-03-29,92691,7466,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",2117.28,"{\""promo\"": \""28%\""}",130046,1,"""North America""" +2024-06-08,92692,5190,"[\""Charger\""]",3426.59,"{\""seasonal\"": \""15%\""}",111514,1,"""North America""" +2023-07-08,92693,4620,"[\""Phone\"", \""Charger\""]",1442.55,{},289023,0,"""Europe""" +2024-01-13,92694,9072,"[\""Headphones\"", \""Charger\""]",3238.61,{},196073,0,"""Africa""" +2024-09-14,92695,9506,"[\""Phone\""]",2276.66,{},222046,1,"""North America""" +2023-01-13,92696,6998,"[\""Charger\"", \""Tablet\""]",4648.94,{},123122,1,"""Asia""" +2023-10-13,92697,8159,"[\""Monitor\""]",2826.91,{},104322,0,"""Africa""" +2023-07-21,92698,6159,"[\""Phone\""]",980.05,{},164210,1,"""South America""" +2024-07-13,92699,7772,"[\""Laptop\"", \""Charger\""]",640.57,"{\""promo\"": \""17%\""}",71620,1,"""Asia""" +2024-11-14,92700,8412,"[\""Tablet\"", \""Phone\""]",2228.77,"{\"": \""29%\""}",8734,0,"""Africa""" +2024-08-15,92701,2049,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",3989.46,"{\""promo\"": \""13%\""}",30734,1,"""North America""" +2024-11-20,92702,5704,"[\""Wireless Mouse\""]",4955.0,"{\"": \""22%\""}",135079,0,"""North America""" +2023-05-19,92703,4589,"[\""Keyboard\""]",2402.34,{},144544,0,"""Africa""" +2023-07-23,92704,805,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2931.3,{},24223,0,"""Asia""" +2023-01-31,92705,4367,"[\""Tablet\""]",1918.73,"{\""seasonal\"": \""30%\""}",77189,0,"""North America""" +2024-11-07,92706,8956,"[\""Keyboard\"", \""Tablet\""]",2912.97,{},34826,1,"""South America""" +2024-07-21,92707,4234,"[\""Keyboard\"", \""Charger\""]",2943.61,{},298822,1,"""Europe""" +2023-07-20,92708,9512,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1298.37,{},69986,0,"""Africa""" +2023-08-01,92709,9565,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3753.58,"{\"": \""13%\""}",161607,0,"""South America""" +2023-09-20,92710,2340,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",330.98,"{\"": \""8%\""}",208781,0,"""South America""" +2023-07-20,92711,2347,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",2508.02,{},156360,0,"""Europe""" +2023-08-13,92712,6578,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",2468.87,{},17581,1,"""Africa""" +2024-07-03,92713,4804,"[\""Headphones\""]",1985.54,"{\""loyalty\"": \""17%\""}",124476,1,"""Asia""" +2024-08-03,92714,5083,"[\""Charger\""]",4981.3,{},173234,1,"""South America""" +2024-04-09,92715,601,"[\""Laptop\""]",3284.21,{},132736,1,"""South America""" +2023-12-23,92716,207,"[\""Tablet\"", \""Charger\"", \""Phone\""]",1337.56,"{\""loyalty\"": \""21%\""}",94497,1,"""Asia""" +2024-08-07,92717,970,"[\""Keyboard\""]",1862.35,"{\"": \""24%\""}",109013,0,"""North America""" +2024-04-16,92718,1677,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1016.59,{},218847,0,"""Asia""" +2023-02-12,92719,1104,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",2189.41,"{\""seasonal\"": \""28%\""}",197105,0,"""North America""" +2023-03-11,92720,1442,"[\""Charger\"", \""Phone\""]",4855.57,"{\""promo\"": \""7%\""}",47817,0,"""South America""" +2024-09-20,92721,975,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2288.78,"{\"": \""13%\""}",104524,1,"""Africa""" +2024-07-26,92722,9009,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4568.76,"{\""seasonal\"": \""24%\""}",26293,0,"""Asia""" +2023-10-25,92723,513,"[\""Headphones\""]",4310.93,{},188083,0,"""Africa""" +2024-09-27,92724,7680,"[\""Charger\""]",3928.34,{},37223,0,"""Europe""" +2024-12-26,92725,1112,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",1161.89,{},298577,0,"""Europe""" +2024-06-01,92726,6821,"[\""Tablet\""]",3258.59,"{\""promo\"": \""15%\""}",275089,0,"""South America""" +2023-10-08,92727,6267,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3502.11,"{\""promo\"": \""15%\""}",281457,0,"""Europe""" +2024-06-27,92728,3878,"[\""Monitor\"", \""Tablet\""]",2736.91,{},174543,1,"""South America""" +2024-12-17,92729,3975,"[\""Tablet\""]",1715.39,"{\""promo\"": \""8%\""}",84623,1,"""North America""" +2024-08-01,92730,3821,"[\""Phone\"", \""Tablet\""]",4545.7,{},242052,0,"""Asia""" +2024-07-22,92731,6796,"[\""Tablet\"", \""Charger\""]",2797.55,{},150830,0,"""Africa""" +2024-04-14,92732,9684,"[\""Wireless Mouse\"", \""Charger\""]",661.61,{},155891,0,"""Europe""" +2023-11-17,92733,1673,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",888.52,"{\""loyalty\"": \""20%\""}",41163,0,"""North America""" +2023-06-02,92734,9364,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2975.58,"{\"": \""6%\""}",64121,1,"""South America""" +2024-04-20,92735,2103,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",923.11,{},27821,1,"""Europe""" +2023-02-26,92736,7393,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",601.13,"{\""seasonal\"": \""15%\""}",122294,1,"""South America""" +2023-03-05,92737,805,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",578.53,{},276640,1,"""Asia""" +2023-11-11,92738,615,"[\""Keyboard\""]",4734.82,{},152532,1,"""Asia""" +2023-06-02,92739,2360,"[\""Headphones\""]",3767.64,{},258867,0,"""Asia""" +2024-02-08,92740,8584,"[\""Wireless Mouse\"", \""Monitor\""]",4991.6,"{\""seasonal\"": \""29%\""}",195926,1,"""North America""" +2023-03-18,92741,6798,"[\""Phone\""]",2719.0,"{\"": \""29%\""}",280908,0,"""Asia""" +2024-05-10,92742,5891,"[\""Keyboard\""]",2196.66,"{\""promo\"": \""27%\""}",94324,1,"""South America""" +2024-11-20,92743,9825,"[\""Headphones\"", \""Keyboard\""]",3777.69,"{\""promo\"": \""6%\""}",80973,1,"""Asia""" +2023-10-20,92744,5150,"[\""Phone\"", \""Tablet\""]",684.22,{},156150,0,"""Asia""" +2024-05-31,92745,8156,"[\""Headphones\"", \""Keyboard\""]",4464.17,"{\"": \""17%\""}",188788,0,"""Asia""" +2024-12-10,92746,4328,"[\""Headphones\"", \""Wireless Mouse\""]",833.34,"{\""seasonal\"": \""6%\""}",221724,1,"""Asia""" +2023-09-28,92747,8794,"[\""Headphones\"", \""Laptop\""]",4652.36,{},1468,0,"""North America""" +2024-10-28,92748,5017,"[\""Headphones\""]",1964.95,"{\""seasonal\"": \""27%\""}",11010,0,"""North America""" +2023-03-21,92749,7804,"[\""Headphones\"", \""Keyboard\""]",2289.97,{},192916,1,"""South America""" +2023-09-19,92750,4465,"[\""Tablet\"", \""Charger\""]",3739.83,"{\""seasonal\"": \""16%\""}",177574,0,"""South America""" +2024-05-18,92751,9201,"[\""Tablet\""]",2494.08,"{\"": \""10%\""}",261447,0,"""South America""" +2023-12-23,92752,454,"[\""Tablet\""]",1831.82,{},177536,0,"""Africa""" +2024-04-21,92753,6998,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",4745.32,"{\""seasonal\"": \""18%\""}",18623,1,"""Europe""" +2024-01-11,92754,6606,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2146.51,{},26142,0,"""Asia""" +2023-02-12,92755,4130,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2205.07,{},31513,1,"""Asia""" +2024-07-04,92756,4385,"[\""Charger\""]",2197.07,"{\"": \""29%\""}",169650,0,"""Europe""" +2024-10-24,92757,7483,"[\""Monitor\"", \""Laptop\""]",3275.42,{},206922,0,"""North America""" +2024-06-19,92758,8073,"[\""Charger\""]",923.6,"{\"": \""18%\""}",183073,0,"""Europe""" +2024-01-15,92759,7413,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3772.81,{},229932,0,"""Africa""" +2024-07-09,92760,7521,"[\""Phone\"", \""Keyboard\""]",654.81,"{\""promo\"": \""7%\""}",118094,1,"""Africa""" +2023-08-11,92761,1538,"[\""Keyboard\"", \""Headphones\""]",2805.79,"{\"": \""30%\""}",48969,1,"""Europe""" +2024-01-05,92762,8919,"[\""Laptop\"", \""Charger\""]",756.52,{},276288,0,"""North America""" +2023-01-07,92763,1993,"[\""Laptop\""]",1045.81,{},45056,0,"""South America""" +2023-05-17,92764,3678,"[\""Wireless Mouse\""]",213.46,{},70731,1,"""Europe""" +2024-02-05,92765,9542,"[\""Keyboard\""]",765.46,{},1489,1,"""Africa""" +2023-11-21,92766,8018,"[\""Charger\"", \""Tablet\""]",3814.17,{},288021,0,"""South America""" +2024-06-09,92767,2043,"[\""Headphones\""]",1927.28,{},194334,0,"""North America""" +2023-04-09,92768,1784,"[\""Keyboard\""]",4719.65,{},225894,1,"""Asia""" +2024-11-23,92769,7266,"[\""Headphones\"", \""Keyboard\""]",675.82,"{\""promo\"": \""17%\""}",203069,0,"""Europe""" +2023-11-01,92770,531,"[\""Laptop\"", \""Monitor\""]",2905.89,{},183626,0,"""North America""" +2024-04-24,92771,5927,"[\""Phone\""]",4370.77,"{\"": \""15%\""}",40632,1,"""South America""" +2023-03-24,92772,2785,"[\""Tablet\""]",4722.78,"{\""seasonal\"": \""11%\""}",90781,0,"""Europe""" +2024-12-27,92773,9671,"[\""Keyboard\""]",2263.06,{},248194,1,"""Africa""" +2024-06-18,92774,2737,"[\""Tablet\""]",3077.24,"{\""promo\"": \""12%\""}",186359,0,"""Asia""" +2024-01-03,92775,2853,"[\""Headphones\""]",851.15,"{\""seasonal\"": \""12%\""}",199244,0,"""Asia""" +2024-05-25,92776,3450,"[\""Headphones\"", \""Laptop\""]",2388.35,"{\""promo\"": \""28%\""}",186722,0,"""South America""" +2023-06-03,92777,6271,"[\""Wireless Mouse\"", \""Headphones\""]",2207.98,"{\""seasonal\"": \""30%\""}",87293,0,"""Asia""" +2023-12-23,92778,1029,"[\""Charger\""]",4128.71,{},142634,0,"""Asia""" +2024-02-01,92779,4979,"[\""Wireless Mouse\"", \""Tablet\""]",297.58,{},21637,1,"""Africa""" +2024-12-15,92780,6273,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3922.94,{},37708,0,"""South America""" +2024-05-07,92781,2336,"[\""Charger\""]",4667.16,{},97906,1,"""North America""" +2024-09-29,92782,7362,"[\""Phone\"", \""Keyboard\""]",4657.55,"{\""promo\"": \""8%\""}",135448,0,"""South America""" +2023-02-17,92783,7909,"[\""Headphones\"", \""Keyboard\""]",4864.67,"{\""promo\"": \""14%\""}",282165,1,"""Africa""" +2024-07-13,92784,3869,"[\""Monitor\"", \""Laptop\""]",4172.86,"{\""seasonal\"": \""10%\""}",138337,0,"""North America""" +2023-07-24,92785,9624,"[\""Keyboard\"", \""Tablet\""]",2893.19,{},92478,1,"""North America""" +2023-04-26,92786,9961,"[\""Charger\"", \""Tablet\""]",2954.15,"{\"": \""19%\""}",203076,0,"""Asia""" +2024-02-06,92787,7098,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3616.89,"{\""promo\"": \""6%\""}",118962,0,"""Asia""" +2024-03-17,92788,3115,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2514.92,"{\"": \""15%\""}",145432,0,"""Asia""" +2023-12-17,92789,9791,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4809.83,{},248063,1,"""South America""" +2023-12-12,92790,7249,"[\""Monitor\""]",400.81,"{\""seasonal\"": \""26%\""}",5797,0,"""Asia""" +2023-03-21,92791,2793,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",2798.47,"{\""seasonal\"": \""15%\""}",288397,1,"""Africa""" +2023-10-01,92792,3899,"[\""Charger\""]",3395.98,{},5625,1,"""North America""" +2024-11-11,92793,6308,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4167.35,"{\"": \""28%\""}",55110,0,"""South America""" +2024-03-23,92794,2240,"[\""Laptop\""]",3450.2,"{\""seasonal\"": \""19%\""}",122521,0,"""Europe""" +2023-08-31,92795,2198,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",1114.79,"{\""promo\"": \""28%\""}",55352,0,"""Asia""" +2024-10-30,92796,6989,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3583.8,{},285032,1,"""Africa""" +2024-01-03,92797,4235,"[\""Laptop\""]",2753.83,{},176803,0,"""Asia""" +2024-01-13,92798,4871,"[\""Charger\"", \""Keyboard\""]",610.17,{},67838,0,"""South America""" +2024-04-27,92799,5907,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4185.78,"{\""seasonal\"": \""29%\""}",272515,0,"""Asia""" +2024-03-23,92800,4459,"[\""Wireless Mouse\"", \""Headphones\""]",4969.59,{},72658,1,"""Europe""" +2024-02-28,92801,9807,"[\""Monitor\""]",4321.0,{},112354,1,"""North America""" +2023-06-14,92802,1936,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1338.67,"{\""loyalty\"": \""20%\""}",75925,0,"""Asia""" +2023-01-05,92803,6013,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2986.14,"{\""loyalty\"": \""14%\""}",5679,1,"""Europe""" +2024-03-07,92804,254,"[\""Phone\""]",4696.09,{},93313,0,"""Europe""" +2023-03-04,92805,3917,"[\""Tablet\"", \""Laptop\""]",849.07,{},58682,0,"""Europe""" +2023-01-20,92806,3079,"[\""Laptop\""]",1720.28,{},17386,1,"""North America""" +2024-03-06,92807,973,"[\""Wireless Mouse\"", \""Keyboard\""]",1876.75,"{\""seasonal\"": \""20%\""}",252248,0,"""Europe""" +2023-12-29,92808,250,"[\""Keyboard\"", \""Tablet\""]",52.0,{},175629,1,"""South America""" +2023-05-19,92809,2772,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4030.13,{},12591,1,"""Asia""" +2023-02-22,92810,7591,"[\""Charger\""]",2494.12,{},28564,1,"""Asia""" +2023-05-23,92811,2414,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",4101.29,{},118336,1,"""Europe""" +2024-03-01,92812,8308,"[\""Tablet\""]",368.82,"{\"": \""28%\""}",211884,0,"""South America""" +2023-09-13,92813,1728,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",63.57,{},237508,1,"""South America""" +2023-03-14,92814,8824,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",442.8,"{\""promo\"": \""15%\""}",43298,0,"""North America""" +2024-06-03,92815,7702,"[\""Laptop\""]",4326.01,"{\""loyalty\"": \""6%\""}",62515,0,"""North America""" +2023-06-18,92816,6632,"[\""Wireless Mouse\"", \""Tablet\""]",2251.19,"{\""promo\"": \""9%\""}",104391,0,"""Africa""" +2023-07-15,92817,8752,"[\""Monitor\""]",2204.18,"{\""loyalty\"": \""17%\""}",10567,1,"""Africa""" +2023-08-22,92818,9828,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1018.31,"{\"": \""16%\""}",299880,0,"""South America""" +2023-01-25,92819,6395,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",2343.44,{},194671,1,"""South America""" +2024-09-04,92820,6083,"[\""Keyboard\""]",1803.11,{},177227,1,"""Africa""" +2024-02-21,92821,2292,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3290.68,"{\""seasonal\"": \""11%\""}",36773,1,"""South America""" +2023-04-17,92822,464,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",2234.15,{},37137,0,"""North America""" +2024-02-07,92823,1641,"[\""Tablet\"", \""Laptop\""]",2747.41,"{\""seasonal\"": \""22%\""}",161643,1,"""Africa""" +2023-10-03,92824,6324,"[\""Tablet\"", \""Keyboard\""]",4892.85,{},205535,1,"""Asia""" +2023-05-09,92825,7042,"[\""Keyboard\"", \""Tablet\""]",4070.92,{},123072,0,"""Asia""" +2024-05-22,92826,205,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3551.64,"{\""seasonal\"": \""6%\""}",140948,0,"""Asia""" +2023-07-03,92827,4919,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2474.38,"{\""promo\"": \""14%\""}",169140,1,"""Africa""" +2023-06-14,92828,1516,"[\""Charger\"", \""Phone\""]",2049.19,"{\""loyalty\"": \""11%\""}",202962,1,"""Asia""" +2024-10-29,92829,4296,"[\""Wireless Mouse\"", \""Tablet\""]",343.83,{},213436,1,"""North America""" +2023-01-30,92830,8088,"[\""Phone\"", \""Keyboard\""]",3952.97,{},115563,1,"""North America""" +2023-07-07,92831,5778,"[\""Laptop\"", \""Headphones\""]",3133.53,"{\""promo\"": \""26%\""}",191885,1,"""Europe""" +2024-09-25,92832,1162,"[\""Monitor\""]",3752.92,{},299185,0,"""South America""" +2024-03-22,92833,762,"[\""Wireless Mouse\""]",4211.22,{},240655,1,"""Europe""" +2023-02-11,92834,2551,"[\""Headphones\"", \""Tablet\""]",3466.85,{},37725,1,"""Europe""" +2023-12-29,92835,9386,"[\""Laptop\"", \""Keyboard\""]",4836.68,"{\""seasonal\"": \""18%\""}",77315,0,"""Africa""" +2024-09-19,92836,662,"[\""Laptop\"", \""Tablet\""]",4843.55,{},59151,1,"""Europe""" +2023-04-13,92837,8434,"[\""Charger\"", \""Tablet\""]",2164.78,{},67153,0,"""South America""" +2023-08-08,92838,8512,"[\""Wireless Mouse\"", \""Headphones\""]",1143.93,{},192485,0,"""Asia""" +2023-04-21,92839,9685,"[\""Headphones\"", \""Charger\""]",2589.61,{},58117,1,"""Europe""" +2023-09-29,92840,6312,"[\""Phone\"", \""Keyboard\""]",4465.8,{},7229,1,"""Europe""" +2024-05-21,92841,7436,"[\""Laptop\"", \""Headphones\""]",2467.51,"{\"": \""8%\""}",160533,0,"""Asia""" +2023-03-26,92842,1975,"[\""Phone\""]",1182.08,{},298533,0,"""North America""" +2024-05-18,92843,8470,"[\""Tablet\"", \""Charger\""]",153.86,"{\""seasonal\"": \""7%\""}",68874,0,"""Africa""" +2024-06-20,92844,5887,"[\""Charger\"", \""Laptop\""]",193.88,"{\""loyalty\"": \""18%\""}",2153,1,"""North America""" +2024-03-24,92845,1198,"[\""Laptop\"", \""Monitor\""]",3399.94,{},75705,0,"""Europe""" +2024-10-04,92846,7319,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3886.54,"{\""loyalty\"": \""28%\""}",148081,0,"""South America""" +2024-12-28,92847,6857,"[\""Wireless Mouse\"", \""Tablet\""]",803.1,{},56310,0,"""Europe""" +2023-07-25,92848,614,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4972.79,{},285858,1,"""South America""" +2023-08-11,92849,6996,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",2175.15,"{\""seasonal\"": \""26%\""}",294546,0,"""South America""" +2023-04-25,92850,2310,"[\""Charger\"", \""Laptop\""]",4176.15,{},152054,1,"""North America""" +2024-09-24,92851,818,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4151.16,{},283066,1,"""Europe""" +2024-01-15,92852,3810,"[\""Charger\"", \""Laptop\""]",2143.5,{},120755,1,"""Asia""" +2024-05-22,92853,1963,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1564.08,{},87356,1,"""Europe""" +2024-04-07,92854,9787,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",327.34,"{\""promo\"": \""8%\""}",260331,0,"""South America""" +2023-01-11,92855,8668,"[\""Charger\""]",4773.68,"{\""loyalty\"": \""13%\""}",103514,1,"""North America""" +2023-12-29,92856,817,"[\""Laptop\"", \""Monitor\""]",2395.47,{},238699,0,"""South America""" +2023-05-07,92857,8821,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",539.54,"{\""promo\"": \""26%\""}",9191,0,"""Africa""" +2023-11-18,92858,63,"[\""Tablet\""]",94.29,"{\"": \""21%\""}",169949,0,"""Asia""" +2023-01-09,92859,1664,"[\""Phone\""]",3112.1,{},91780,0,"""Asia""" +2024-04-24,92860,9505,"[\""Laptop\""]",4649.61,"{\""promo\"": \""20%\""}",254219,1,"""South America""" +2023-05-09,92861,2923,"[\""Charger\""]",847.68,{},168455,0,"""Europe""" +2024-01-11,92862,638,"[\""Headphones\"", \""Laptop\""]",2840.62,"{\""promo\"": \""11%\""}",269733,1,"""Europe""" +2024-10-20,92863,64,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",2623.27,"{\""loyalty\"": \""22%\""}",26566,0,"""South America""" +2023-02-08,92864,7997,"[\""Keyboard\""]",3152.68,{},248689,0,"""Africa""" +2023-04-20,92865,2555,"[\""Phone\""]",1032.88,"{\"": \""19%\""}",252954,1,"""Europe""" +2024-04-26,92866,6110,"[\""Monitor\"", \""Laptop\""]",523.38,"{\"": \""29%\""}",126742,0,"""North America""" +2024-12-05,92867,4631,"[\""Wireless Mouse\""]",2648.36,{},261732,1,"""Africa""" +2023-08-10,92868,4925,"[\""Charger\"", \""Wireless Mouse\""]",4293.35,"{\"": \""22%\""}",221545,0,"""Asia""" +2024-04-30,92869,3136,"[\""Charger\""]",594.04,{},140706,1,"""North America""" +2024-07-20,92870,8045,"[\""Headphones\"", \""Keyboard\""]",2509.79,"{\""seasonal\"": \""22%\""}",46981,0,"""Europe""" +2024-08-04,92871,8947,"[\""Laptop\"", \""Tablet\""]",3046.77,{},214738,0,"""Africa""" +2023-01-30,92872,829,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4332.39,{},4174,0,"""Europe""" +2023-12-08,92873,3696,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",4971.57,"{\"": \""22%\""}",97984,0,"""Africa""" +2024-08-29,92874,5086,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4529.11,{},51796,0,"""North America""" +2024-06-06,92875,2046,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3954.81,{},242211,0,"""South America""" +2024-08-29,92876,8314,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3735.72,"{\""promo\"": \""20%\""}",230732,1,"""Europe""" +2024-08-11,92877,7332,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4514.62,"{\""loyalty\"": \""30%\""}",228485,1,"""North America""" +2024-06-17,92878,8277,"[\""Headphones\"", \""Tablet\""]",4112.18,"{\""loyalty\"": \""26%\""}",262897,1,"""Asia""" +2023-01-16,92879,3880,"[\""Charger\"", \""Wireless Mouse\""]",1949.41,"{\""promo\"": \""10%\""}",102324,0,"""Africa""" +2023-02-27,92880,7684,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1277.85,"{\""seasonal\"": \""30%\""}",229605,1,"""Europe""" +2024-11-07,92881,2556,"[\""Monitor\""]",2861.65,"{\""promo\"": \""12%\""}",145704,0,"""Europe""" +2024-05-09,92882,6559,"[\""Monitor\"", \""Headphones\""]",2296.42,{},123064,1,"""Africa""" +2023-09-24,92883,3775,"[\""Phone\""]",1591.25,{},299989,1,"""North America""" +2024-04-23,92884,7203,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4288.44,{},82922,1,"""Europe""" +2023-08-15,92885,6658,"[\""Phone\"", \""Monitor\""]",859.73,{},32924,1,"""North America""" +2024-11-28,92886,6805,"[\""Wireless Mouse\"", \""Laptop\""]",2247.04,"{\""promo\"": \""19%\""}",281996,1,"""Africa""" +2024-06-04,92887,5218,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",3350.54,"{\""seasonal\"": \""30%\""}",212869,0,"""South America""" +2024-09-01,92888,9141,"[\""Monitor\"", \""Phone\""]",3128.81,"{\"": \""24%\""}",117125,0,"""Africa""" +2023-11-12,92889,9476,"[\""Charger\"", \""Headphones\""]",3589.01,{},190628,0,"""South America""" +2024-03-29,92890,3090,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2305.13,"{\"": \""24%\""}",112143,1,"""North America""" +2023-09-02,92891,7783,"[\""Charger\""]",3630.64,{},260509,0,"""Asia""" +2024-05-14,92892,9471,"[\""Wireless Mouse\"", \""Keyboard\""]",1758.17,"{\""promo\"": \""22%\""}",227472,0,"""North America""" +2023-05-14,92893,8334,"[\""Monitor\"", \""Keyboard\""]",3763.11,"{\""promo\"": \""29%\""}",262392,0,"""North America""" +2024-10-21,92894,2426,"[\""Headphones\""]",492.17,"{\"": \""6%\""}",85057,0,"""Asia""" +2024-10-19,92895,8571,"[\""Charger\"", \""Monitor\""]",2112.96,"{\""seasonal\"": \""27%\""}",90020,0,"""Europe""" +2024-04-26,92896,2737,"[\""Tablet\""]",866.41,"{\""seasonal\"": \""12%\""}",20521,1,"""North America""" +2023-09-18,92897,4393,"[\""Tablet\"", \""Charger\""]",3704.04,"{\""loyalty\"": \""7%\""}",185706,0,"""North America""" +2023-10-07,92898,74,"[\""Wireless Mouse\"", \""Headphones\""]",205.95,{},97451,0,"""North America""" +2023-09-07,92899,1730,"[\""Charger\"", \""Phone\""]",2068.26,"{\""loyalty\"": \""6%\""}",138675,0,"""South America""" +2023-12-19,92900,7523,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1124.01,{},51317,0,"""Africa""" +2023-03-10,92901,570,"[\""Charger\"", \""Laptop\""]",74.88,{},155794,0,"""Africa""" +2024-09-02,92902,4608,"[\""Tablet\"", \""Laptop\""]",450.82,"{\""loyalty\"": \""19%\""}",188209,1,"""Africa""" +2023-02-07,92903,5893,"[\""Monitor\"", \""Tablet\""]",2182.41,{},70791,1,"""Asia""" +2024-10-31,92904,1603,"[\""Tablet\"", \""Wireless Mouse\""]",1524.44,"{\""loyalty\"": \""9%\""}",272331,0,"""Africa""" +2023-04-14,92905,522,"[\""Charger\""]",2180.89,"{\"": \""26%\""}",167560,1,"""South America""" +2023-08-04,92906,875,"[\""Laptop\"", \""Keyboard\""]",4922.01,{},246416,1,"""Europe""" +2024-01-20,92907,142,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",737.62,"{\"": \""12%\""}",98190,0,"""North America""" +2023-08-30,92908,7464,"[\""Tablet\""]",2938.17,{},290726,1,"""Africa""" +2024-07-27,92909,1252,"[\""Phone\"", \""Charger\"", \""Monitor\""]",4747.83,{},152520,1,"""Africa""" +2023-01-08,92910,2223,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",1967.01,{},3731,0,"""Africa""" +2024-09-30,92911,1906,"[\""Phone\""]",3918.26,"{\""seasonal\"": \""6%\""}",200689,0,"""Asia""" +2023-11-15,92912,792,"[\""Monitor\""]",2458.53,{},201658,0,"""Africa""" +2023-07-18,92913,254,"[\""Laptop\"", \""Tablet\""]",4840.54,{},268392,1,"""Africa""" +2023-08-04,92914,9364,"[\""Wireless Mouse\""]",796.44,{},120877,1,"""North America""" +2024-06-20,92915,8052,"[\""Monitor\""]",585.14,"{\""promo\"": \""16%\""}",138702,1,"""Asia""" +2023-06-04,92916,8097,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2715.06,{},252373,1,"""North America""" +2024-01-31,92917,5857,"[\""Charger\"", \""Wireless Mouse\""]",3967.0,"{\""seasonal\"": \""26%\""}",57821,0,"""South America""" +2023-04-26,92918,7290,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4979.76,{},119815,0,"""North America""" +2023-04-18,92919,8557,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",2012.38,{},11566,1,"""Asia""" +2023-04-30,92920,617,"[\""Keyboard\"", \""Monitor\""]",872.62,{},284469,0,"""North America""" +2024-04-13,92921,1998,"[\""Wireless Mouse\""]",1823.04,{},86354,1,"""Asia""" +2023-08-30,92922,8535,"[\""Phone\"", \""Charger\""]",465.0,{},154495,1,"""Europe""" +2024-02-20,92923,2238,"[\""Phone\""]",3162.45,"{\""promo\"": \""18%\""}",226297,0,"""South America""" +2023-06-22,92924,8991,"[\""Keyboard\"", \""Laptop\""]",3497.63,{},179108,1,"""Asia""" +2023-12-01,92925,120,"[\""Phone\""]",3796.34,{},74947,1,"""Africa""" +2024-03-05,92926,5923,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2555.66,{},10042,1,"""Europe""" +2023-04-09,92927,9061,"[\""Laptop\""]",421.64,{},142633,1,"""Europe""" +2023-01-16,92928,6619,"[\""Keyboard\""]",4970.64,{},265398,1,"""Africa""" +2024-02-12,92929,5808,"[\""Headphones\"", \""Monitor\""]",4424.82,"{\""promo\"": \""27%\""}",49623,1,"""Asia""" +2024-12-11,92930,1120,"[\""Charger\"", \""Phone\"", \""Headphones\""]",381.82,{},5748,0,"""Europe""" +2023-09-16,92931,4051,"[\""Monitor\"", \""Wireless Mouse\""]",4031.71,"{\""promo\"": \""20%\""}",299997,0,"""Europe""" +2023-12-18,92932,418,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3754.34,"{\""loyalty\"": \""20%\""}",34573,0,"""Europe""" +2023-09-25,92933,3660,"[\""Laptop\""]",1250.86,{},48829,0,"""North America""" +2023-09-24,92934,3956,"[\""Laptop\"", \""Keyboard\""]",3303.94,"{\"": \""6%\""}",120814,0,"""North America""" +2023-04-09,92935,2217,"[\""Tablet\"", \""Phone\""]",1082.67,"{\"": \""13%\""}",117121,1,"""North America""" +2024-12-28,92936,7576,"[\""Charger\""]",3037.93,{},279980,1,"""Asia""" +2023-03-29,92937,6062,"[\""Headphones\""]",4781.44,"{\""promo\"": \""30%\""}",105568,1,"""Europe""" +2024-01-26,92938,8750,"[\""Charger\""]",3303.07,{},136187,0,"""Europe""" +2023-09-14,92939,7637,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1780.62,{},12985,0,"""Asia""" +2023-11-15,92940,181,"[\""Charger\""]",2549.16,"{\""loyalty\"": \""14%\""}",250355,0,"""Africa""" +2023-09-14,92941,3374,"[\""Headphones\"", \""Keyboard\""]",3667.26,"{\"": \""21%\""}",182077,1,"""Asia""" +2024-12-08,92942,4565,"[\""Wireless Mouse\"", \""Headphones\""]",791.29,{},106313,1,"""South America""" +2023-08-13,92943,1338,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1964.58,"{\""seasonal\"": \""15%\""}",87507,0,"""North America""" +2023-10-10,92944,6441,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3378.41,"{\""seasonal\"": \""5%\""}",284227,1,"""Africa""" +2023-03-14,92945,7692,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",4807.77,{},242497,1,"""North America""" +2023-09-01,92946,3068,"[\""Wireless Mouse\"", \""Tablet\""]",4857.19,{},87588,1,"""Africa""" +2023-08-31,92947,277,"[\""Headphones\"", \""Phone\""]",3890.53,{},177335,0,"""Europe""" +2024-01-29,92948,9184,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3758.46,"{\"": \""9%\""}",100007,1,"""North America""" +2023-12-22,92949,5829,"[\""Monitor\""]",2000.35,{},240353,1,"""Asia""" +2023-08-03,92950,7184,"[\""Charger\""]",716.62,"{\""promo\"": \""18%\""}",299262,0,"""South America""" +2024-04-02,92951,6349,"[\""Headphones\""]",634.14,{},265032,1,"""Asia""" +2024-06-13,92952,5576,"[\""Wireless Mouse\"", \""Monitor\""]",1325.05,{},59000,1,"""Asia""" +2023-10-21,92953,73,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",2809.2,{},288615,1,"""Africa""" +2023-12-24,92954,413,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2687.74,{},54052,1,"""Asia""" +2024-08-30,92955,520,"[\""Headphones\"", \""Laptop\""]",3046.0,"{\""promo\"": \""10%\""}",101500,0,"""Africa""" +2024-09-25,92956,3833,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3158.97,"{\"": \""5%\""}",246127,0,"""North America""" +2024-06-26,92957,1818,"[\""Monitor\"", \""Charger\"", \""Phone\""]",569.77,{},132838,0,"""Asia""" +2024-12-30,92958,7021,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",307.56,"{\""promo\"": \""24%\""}",261069,1,"""Europe""" +2023-06-03,92959,870,"[\""Headphones\"", \""Keyboard\""]",1301.16,"{\""seasonal\"": \""27%\""}",154174,0,"""South America""" +2024-05-14,92960,5804,"[\""Phone\""]",4960.96,"{\""seasonal\"": \""25%\""}",234050,0,"""Africa""" +2024-04-14,92961,8481,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2650.06,{},119193,0,"""Asia""" +2024-05-24,92962,7652,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1719.58,"{\"": \""5%\""}",105021,0,"""South America""" +2023-09-26,92963,8281,"[\""Tablet\""]",1716.48,{},70446,1,"""Africa""" +2024-07-10,92964,7471,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3409.37,"{\""seasonal\"": \""7%\""}",214640,0,"""Africa""" +2024-07-08,92965,9559,"[\""Phone\"", \""Charger\""]",2285.43,"{\""seasonal\"": \""14%\""}",95615,1,"""Africa""" +2023-11-06,92966,1435,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",76.84,"{\""loyalty\"": \""21%\""}",195089,0,"""Africa""" +2023-07-01,92967,363,"[\""Keyboard\""]",4532.85,"{\""promo\"": \""12%\""}",161119,1,"""Africa""" +2023-11-15,92968,6992,"[\""Headphones\"", \""Charger\""]",4326.67,{},169041,0,"""Asia""" +2023-07-13,92969,5976,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3056.71,"{\""seasonal\"": \""19%\""}",276483,1,"""Europe""" +2024-01-14,92970,9559,"[\""Phone\"", \""Tablet\""]",1363.59,{},72903,0,"""Africa""" +2023-03-04,92971,2445,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4094.59,"{\"": \""13%\""}",24002,1,"""North America""" +2024-07-03,92972,2638,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4868.19,{},20244,0,"""South America""" +2023-01-18,92973,6861,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3217.99,{},74905,0,"""Africa""" +2024-06-19,92974,9097,"[\""Tablet\""]",4703.55,{},140775,1,"""Asia""" +2024-04-23,92975,8860,"[\""Keyboard\"", \""Charger\""]",1652.31,{},46246,0,"""Europe""" +2023-09-12,92976,5040,"[\""Headphones\""]",3890.21,{},37245,0,"""North America""" +2023-10-08,92977,4419,"[\""Charger\"", \""Keyboard\""]",1306.02,"{\""loyalty\"": \""15%\""}",201914,0,"""South America""" +2024-12-26,92978,8597,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1514.39,"{\""promo\"": \""27%\""}",126123,1,"""Asia""" +2023-03-23,92979,4241,"[\""Monitor\""]",2855.58,"{\""seasonal\"": \""23%\""}",147881,0,"""South America""" +2023-06-18,92980,104,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2367.6,{},87568,1,"""North America""" +2024-03-12,92981,1109,"[\""Phone\""]",2324.96,"{\""loyalty\"": \""24%\""}",218700,0,"""Europe""" +2023-01-02,92982,3784,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",1135.34,"{\""seasonal\"": \""25%\""}",197578,0,"""Africa""" +2024-04-30,92983,4244,"[\""Tablet\""]",4728.18,{},196995,0,"""Asia""" +2024-11-05,92984,9393,"[\""Tablet\""]",448.81,"{\""promo\"": \""17%\""}",284801,1,"""North America""" +2023-05-14,92985,6935,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",1222.52,"{\""loyalty\"": \""9%\""}",112653,0,"""Asia""" +2023-08-24,92986,5200,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3165.32,"{\""loyalty\"": \""21%\""}",165841,1,"""Asia""" +2023-08-31,92987,8012,"[\""Phone\"", \""Monitor\""]",1476.75,{},85641,1,"""Europe""" +2023-04-26,92988,9726,"[\""Wireless Mouse\""]",3383.77,{},133698,0,"""North America""" +2024-11-15,92989,6984,"[\""Monitor\"", \""Charger\""]",2441.62,"{\""loyalty\"": \""28%\""}",124859,1,"""North America""" +2023-02-20,92990,7175,"[\""Tablet\""]",2178.12,"{\"": \""7%\""}",169120,0,"""South America""" +2024-12-22,92991,761,"[\""Charger\"", \""Monitor\""]",4927.94,"{\""promo\"": \""23%\""}",28214,1,"""Asia""" +2024-05-31,92992,3571,"[\""Monitor\"", \""Laptop\""]",3093.47,"{\""loyalty\"": \""18%\""}",4167,0,"""South America""" +2024-04-28,92993,9395,"[\""Keyboard\"", \""Tablet\""]",3599.37,"{\""promo\"": \""25%\""}",26827,1,"""South America""" +2024-09-14,92994,4200,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2686.93,{},194333,0,"""Africa""" +2024-02-27,92995,4659,"[\""Keyboard\""]",953.02,{},68329,1,"""Asia""" +2023-11-08,92996,9745,"[\""Phone\"", \""Headphones\""]",706.18,"{\"": \""18%\""}",289363,0,"""Europe""" +2024-03-10,92997,4341,"[\""Tablet\""]",799.36,{},83593,0,"""Africa""" +2023-02-21,92998,2402,"[\""Monitor\""]",2176.14,"{\"": \""14%\""}",67349,0,"""Europe""" +2024-04-13,92999,717,"[\""Wireless Mouse\""]",3540.49,{},136884,0,"""South America""" +2024-06-10,93000,6161,"[\""Tablet\"", \""Monitor\""]",1989.88,{},102324,1,"""Europe""" +2024-08-17,93001,2932,"[\""Keyboard\"", \""Monitor\""]",2653.69,"{\"": \""18%\""}",219223,1,"""Asia""" +2024-03-04,93002,5644,"[\""Laptop\""]",1207.19,"{\"": \""13%\""}",116724,0,"""Europe""" +2024-03-22,93003,9328,"[\""Charger\""]",4359.01,{},127176,1,"""Africa""" +2023-04-24,93004,6316,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1816.4,"{\""seasonal\"": \""29%\""}",35797,1,"""Asia""" +2024-04-19,93005,8740,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4249.22,"{\""seasonal\"": \""14%\""}",298500,0,"""Africa""" +2024-07-16,93006,1082,"[\""Laptop\""]",495.34,"{\""seasonal\"": \""25%\""}",56508,0,"""Asia""" +2023-03-26,93007,8308,"[\""Charger\""]",1659.65,{},115681,0,"""South America""" +2024-06-22,93008,2556,"[\""Headphones\"", \""Tablet\""]",1958.55,"{\""promo\"": \""17%\""}",121820,0,"""Africa""" +2023-02-09,93009,7943,"[\""Headphones\"", \""Wireless Mouse\""]",515.73,{},47091,0,"""Asia""" +2024-12-13,93010,6534,"[\""Laptop\"", \""Wireless Mouse\""]",3926.2,"{\""seasonal\"": \""23%\""}",251346,1,"""Asia""" +2024-10-11,93011,5167,"[\""Wireless Mouse\"", \""Tablet\""]",3054.02,{},29719,0,"""Asia""" +2023-06-21,93012,37,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2304.02,"{\""promo\"": \""20%\""}",22336,1,"""Africa""" +2023-09-23,93013,3614,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3679.7,{},174574,1,"""North America""" +2023-01-13,93014,856,"[\""Headphones\""]",3865.77,{},209345,0,"""Africa""" +2024-03-22,93015,4910,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3248.48,"{\""loyalty\"": \""27%\""}",123116,0,"""Africa""" +2023-11-29,93016,2586,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",3931.01,"{\""seasonal\"": \""13%\""}",143559,0,"""South America""" +2024-09-10,93017,4759,"[\""Keyboard\"", \""Headphones\""]",4302.72,"{\""promo\"": \""21%\""}",193672,1,"""Africa""" +2024-03-31,93018,9836,"[\""Laptop\"", \""Wireless Mouse\""]",928.03,"{\""promo\"": \""29%\""}",232802,0,"""Europe""" +2024-08-29,93019,1824,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3970.91,{},43416,0,"""Europe""" +2023-08-28,93020,8147,"[\""Keyboard\"", \""Tablet\""]",4605.78,"{\""seasonal\"": \""28%\""}",65482,0,"""South America""" +2024-02-09,93021,2776,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",1280.32,{},287288,0,"""Asia""" +2023-11-28,93022,9026,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1669.39,{},222674,0,"""Asia""" +2023-07-24,93023,3742,"[\""Monitor\""]",291.21,"{\""loyalty\"": \""17%\""}",90618,0,"""North America""" +2024-06-06,93024,4476,"[\""Wireless Mouse\""]",868.4,"{\""loyalty\"": \""6%\""}",150648,0,"""South America""" +2023-09-15,93025,7660,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3407.52,"{\""seasonal\"": \""19%\""}",144034,0,"""North America""" +2024-01-04,93026,7699,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3428.72,{},124622,0,"""Africa""" +2024-09-14,93027,8465,"[\""Charger\"", \""Keyboard\""]",4894.97,{},249647,0,"""Europe""" +2024-03-09,93028,8634,"[\""Headphones\"", \""Laptop\""]",1418.02,"{\"": \""12%\""}",233870,1,"""Africa""" +2023-12-06,93029,5665,"[\""Wireless Mouse\"", \""Headphones\""]",2481.51,"{\""seasonal\"": \""19%\""}",86670,1,"""South America""" +2023-01-13,93030,2507,"[\""Charger\""]",2816.11,{},154885,1,"""Europe""" +2023-06-03,93031,1925,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4215.16,{},155145,0,"""Asia""" +2023-07-22,93032,8340,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3075.87,{},88253,0,"""South America""" +2023-12-26,93033,1746,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",2242.9,"{\""promo\"": \""17%\""}",65415,0,"""South America""" +2023-12-06,93034,3993,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",831.56,"{\""seasonal\"": \""15%\""}",206954,0,"""South America""" +2023-04-03,93035,6090,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",190.74,{},268689,1,"""Asia""" +2024-03-21,93036,1175,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",1133.62,{},299898,0,"""South America""" +2024-07-26,93037,6875,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",2310.01,{},134714,0,"""North America""" +2024-12-11,93038,7697,"[\""Wireless Mouse\""]",3090.48,{},94670,0,"""North America""" +2024-06-11,93039,1092,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4865.26,"{\""seasonal\"": \""13%\""}",120892,0,"""South America""" +2023-06-14,93040,6563,"[\""Monitor\"", \""Wireless Mouse\""]",4974.27,{},233663,1,"""Africa""" +2023-01-09,93041,8796,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",4756.94,{},197300,0,"""Africa""" +2023-01-03,93042,9359,"[\""Monitor\"", \""Keyboard\""]",2995.22,{},150368,1,"""Asia""" +2023-05-26,93043,5776,"[\""Headphones\"", \""Charger\""]",3455.79,"{\""seasonal\"": \""7%\""}",147618,1,"""South America""" +2024-12-10,93044,7009,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",650.51,"{\"": \""30%\""}",238207,1,"""Europe""" +2023-05-20,93045,5178,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",3935.24,{},9216,1,"""Asia""" +2023-10-23,93046,5010,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2933.24,"{\""promo\"": \""15%\""}",78587,0,"""North America""" +2023-02-15,93047,856,"[\""Phone\"", \""Tablet\""]",3922.32,{},134121,1,"""Africa""" +2023-11-20,93048,3378,"[\""Laptop\""]",1552.38,{},10721,0,"""Europe""" +2023-10-20,93049,7790,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4476.03,{},295566,1,"""Europe""" +2023-09-29,93050,4884,"[\""Laptop\"", \""Wireless Mouse\""]",4760.07,{},58451,1,"""Europe""" +2023-03-04,93051,9990,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",4498.93,"{\""loyalty\"": \""17%\""}",153662,1,"""Africa""" +2024-11-05,93052,7949,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",237.52,"{\""seasonal\"": \""29%\""}",250403,0,"""Europe""" +2024-09-22,93053,873,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4601.48,{},282610,1,"""Asia""" +2024-07-17,93054,2295,"[\""Keyboard\"", \""Tablet\""]",1538.06,"{\""promo\"": \""14%\""}",189842,1,"""Europe""" +2023-07-14,93055,5351,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",71.62,{},178906,1,"""Asia""" +2024-10-04,93056,3926,"[\""Laptop\""]",347.57,{},186596,0,"""North America""" +2024-01-13,93057,3567,"[\""Charger\""]",2077.56,"{\""loyalty\"": \""23%\""}",262008,0,"""Africa""" +2023-02-23,93058,3683,"[\""Monitor\"", \""Laptop\""]",458.84,{},40270,0,"""Europe""" +2023-05-15,93059,391,"[\""Monitor\"", \""Tablet\""]",157.73,{},271736,0,"""South America""" +2023-04-27,93060,7391,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3789.49,{},299122,0,"""Europe""" +2023-06-17,93061,2300,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",798.41,{},170627,0,"""Europe""" +2023-12-28,93062,9883,"[\""Phone\""]",1860.07,"{\""seasonal\"": \""12%\""}",278290,1,"""North America""" +2024-12-16,93063,7320,"[\""Tablet\"", \""Monitor\""]",3746.53,"{\"": \""9%\""}",298464,0,"""North America""" +2023-06-08,93064,7603,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1416.59,{},54564,0,"""North America""" +2023-01-10,93065,423,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",2046.72,{},289780,1,"""Asia""" +2023-07-26,93066,8066,"[\""Laptop\""]",3623.51,"{\""promo\"": \""18%\""}",271679,1,"""Africa""" +2023-03-24,93067,2037,"[\""Wireless Mouse\""]",4641.09,"{\"": \""23%\""}",180291,1,"""Africa""" +2023-10-01,93068,1600,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4207.58,{},173934,0,"""Asia""" +2023-12-13,93069,6009,"[\""Monitor\"", \""Phone\""]",371.1,"{\""loyalty\"": \""5%\""}",290943,1,"""South America""" +2024-03-21,93070,7854,"[\""Headphones\""]",4646.87,"{\""promo\"": \""19%\""}",279440,0,"""Africa""" +2023-10-16,93071,6246,"[\""Charger\"", \""Monitor\""]",2265.98,"{\"": \""29%\""}",123422,1,"""Africa""" +2023-12-28,93072,2812,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2882.25,"{\""loyalty\"": \""24%\""}",80919,0,"""Asia""" +2024-10-24,93073,3406,"[\""Headphones\""]",4878.07,"{\""promo\"": \""14%\""}",108387,1,"""Africa""" +2023-12-28,93074,3790,"[\""Phone\"", \""Keyboard\""]",4962.94,"{\""seasonal\"": \""29%\""}",242510,1,"""Africa""" +2023-11-11,93075,3111,"[\""Charger\"", \""Wireless Mouse\""]",1679.66,"{\"": \""9%\""}",142865,0,"""Asia""" +2023-06-25,93076,7362,"[\""Monitor\""]",2739.12,{},126571,1,"""Asia""" +2024-02-06,93077,5998,"[\""Monitor\"", \""Charger\""]",1401.1,"{\""loyalty\"": \""9%\""}",204941,1,"""Asia""" +2023-08-27,93078,4240,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1075.58,"{\""seasonal\"": \""27%\""}",173859,0,"""Asia""" +2023-05-19,93079,3770,"[\""Keyboard\""]",3331.61,{},101071,0,"""Asia""" +2024-10-12,93080,8277,"[\""Phone\""]",2403.31,{},195381,0,"""Africa""" +2024-09-25,93081,7341,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1268.77,{},234443,1,"""North America""" +2023-01-12,93082,6521,"[\""Tablet\"", \""Monitor\""]",3127.34,"{\""seasonal\"": \""25%\""}",81635,1,"""Asia""" +2023-07-12,93083,5118,"[\""Tablet\""]",1005.71,"{\""loyalty\"": \""30%\""}",209733,0,"""Africa""" +2024-04-14,93084,5258,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",364.61,{},81932,0,"""South America""" +2024-02-07,93085,2281,"[\""Tablet\"", \""Monitor\""]",2570.56,"{\""promo\"": \""9%\""}",277523,1,"""Europe""" +2024-05-18,93086,504,"[\""Headphones\""]",3306.66,"{\""seasonal\"": \""12%\""}",16494,0,"""South America""" +2024-05-07,93087,7975,"[\""Wireless Mouse\"", \""Keyboard\""]",2037.11,"{\""seasonal\"": \""30%\""}",53129,0,"""Asia""" +2023-06-04,93088,5160,"[\""Monitor\"", \""Phone\"", \""Charger\""]",4764.78,{},192685,1,"""North America""" +2024-04-17,93089,673,"[\""Monitor\"", \""Charger\""]",4924.88,{},57049,0,"""North America""" +2024-01-11,93090,1927,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",358.92,"{\""loyalty\"": \""16%\""}",235159,0,"""Asia""" +2024-06-16,93091,1155,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4468.66,{},179584,0,"""North America""" +2024-10-07,93092,8241,"[\""Phone\""]",276.9,{},277973,1,"""Europe""" +2024-09-27,93093,7028,"[\""Keyboard\"", \""Charger\""]",2091.59,{},21697,0,"""Africa""" +2023-03-14,93094,5511,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",1324.94,{},146030,0,"""Africa""" +2023-03-28,93095,6186,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3701.88,"{\""promo\"": \""13%\""}",197654,1,"""Asia""" +2024-01-24,93096,679,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2154.56,{},102249,1,"""South America""" +2023-06-26,93097,8926,"[\""Monitor\"", \""Phone\""]",2111.09,"{\"": \""6%\""}",1116,0,"""South America""" +2024-01-19,93098,9452,"[\""Keyboard\""]",2558.73,{},34676,0,"""Africa""" +2024-05-26,93099,8147,"[\""Wireless Mouse\""]",1702.97,{},53951,1,"""Asia""" +2024-04-25,93100,5528,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",858.69,{},143049,0,"""South America""" +2024-05-27,93101,2723,"[\""Tablet\""]",2868.34,"{\""loyalty\"": \""25%\""}",229743,1,"""Asia""" +2023-05-17,93102,3718,"[\""Phone\"", \""Tablet\""]",3464.1,"{\""loyalty\"": \""18%\""}",56762,1,"""South America""" +2024-10-29,93103,7668,"[\""Charger\"", \""Laptop\""]",4705.46,{},39551,1,"""Asia""" +2023-12-15,93104,5803,"[\""Charger\"", \""Keyboard\""]",2343.77,"{\""seasonal\"": \""24%\""}",133711,1,"""Europe""" +2023-05-30,93105,1220,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",1174.42,{},9875,0,"""Europe""" +2024-04-05,93106,4465,"[\""Headphones\"", \""Monitor\""]",3813.02,"{\"": \""7%\""}",287609,1,"""Asia""" +2024-07-25,93107,4874,"[\""Keyboard\"", \""Wireless Mouse\""]",212.84,"{\""loyalty\"": \""11%\""}",169146,1,"""Europe""" +2024-10-09,93108,8285,"[\""Headphones\"", \""Laptop\""]",1642.74,{},208389,0,"""Africa""" +2023-04-06,93109,3797,"[\""Keyboard\""]",2755.39,"{\""promo\"": \""28%\""}",256194,1,"""North America""" +2023-07-27,93110,7785,"[\""Laptop\""]",3158.78,{},276132,0,"""Europe""" +2023-11-16,93111,8739,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3626.26,{},228327,1,"""Europe""" +2023-07-30,93112,5154,"[\""Keyboard\"", \""Wireless Mouse\""]",3421.88,"{\""loyalty\"": \""6%\""}",153703,1,"""North America""" +2024-02-29,93113,2529,"[\""Headphones\""]",2374.09,{},111856,0,"""North America""" +2024-07-06,93114,5980,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4952.27,"{\""promo\"": \""9%\""}",155932,0,"""Asia""" +2024-06-27,93115,5375,"[\""Phone\""]",4984.59,"{\""seasonal\"": \""29%\""}",22380,1,"""Africa""" +2023-06-08,93116,5113,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3980.75,{},40156,0,"""South America""" +2023-09-02,93117,9777,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",4795.4,{},248383,0,"""South America""" +2023-05-05,93118,8898,"[\""Keyboard\"", \""Charger\""]",4530.96,{},6735,0,"""Africa""" +2024-02-17,93119,9340,"[\""Laptop\"", \""Charger\""]",1668.51,"{\""seasonal\"": \""30%\""}",14175,0,"""Africa""" +2023-08-19,93120,6,"[\""Monitor\""]",1068.34,{},257141,0,"""North America""" +2024-02-19,93121,1272,"[\""Headphones\"", \""Keyboard\""]",2380.13,{},102369,1,"""Africa""" +2023-01-17,93122,1695,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",3150.77,"{\""seasonal\"": \""23%\""}",256174,0,"""North America""" +2024-11-09,93123,2562,"[\""Headphones\""]",3543.7,{},293048,0,"""Asia""" +2023-05-14,93124,1302,"[\""Keyboard\"", \""Tablet\""]",1313.72,"{\""promo\"": \""23%\""}",179071,1,"""Africa""" +2024-08-10,93125,1178,"[\""Tablet\"", \""Wireless Mouse\""]",3992.89,{},15838,1,"""Asia""" +2023-07-21,93126,8075,"[\""Keyboard\""]",1083.18,"{\""promo\"": \""24%\""}",98502,0,"""North America""" +2023-10-10,93127,2820,"[\""Charger\""]",722.41,"{\""promo\"": \""21%\""}",106405,0,"""North America""" +2024-08-29,93128,4996,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2973.27,"{\""loyalty\"": \""16%\""}",56737,1,"""South America""" +2024-03-27,93129,4174,"[\""Tablet\""]",3058.64,{},237332,1,"""Europe""" +2023-04-22,93130,1993,"[\""Keyboard\"", \""Headphones\""]",1502.27,{},136841,1,"""Europe""" +2024-09-17,93131,7130,"[\""Keyboard\"", \""Phone\""]",1029.67,{},39590,1,"""Asia""" +2023-09-20,93132,3879,"[\""Tablet\"", \""Keyboard\""]",4012.55,{},210037,0,"""North America""" +2024-07-20,93133,8233,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1204.07,{},170319,0,"""Europe""" +2023-04-27,93134,2642,"[\""Phone\"", \""Tablet\""]",2293.66,"{\"": \""16%\""}",219824,1,"""Asia""" +2023-02-19,93135,2510,"[\""Laptop\"", \""Keyboard\""]",3832.45,{},245803,0,"""Asia""" +2023-09-17,93136,5179,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1916.06,"{\""promo\"": \""8%\""}",278535,1,"""Africa""" +2023-03-18,93137,2358,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1898.35,{},196296,1,"""Africa""" +2024-06-30,93138,4376,"[\""Phone\"", \""Laptop\""]",2894.92,"{\""promo\"": \""9%\""}",143464,1,"""North America""" +2024-11-18,93139,3213,"[\""Wireless Mouse\"", \""Keyboard\""]",1728.25,"{\""promo\"": \""10%\""}",261303,1,"""Africa""" +2024-07-21,93140,9767,"[\""Headphones\"", \""Keyboard\""]",4198.75,"{\""seasonal\"": \""28%\""}",10420,0,"""Africa""" +2024-08-09,93141,3248,"[\""Wireless Mouse\"", \""Keyboard\""]",1691.94,{},264298,1,"""Africa""" +2023-01-09,93142,605,"[\""Headphones\"", \""Keyboard\""]",3742.34,"{\""seasonal\"": \""18%\""}",114363,0,"""North America""" +2024-04-27,93143,6308,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2082.66,"{\""seasonal\"": \""20%\""}",1533,0,"""Europe""" +2024-03-27,93144,492,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",3149.39,"{\"": \""5%\""}",246481,0,"""South America""" +2023-03-08,93145,2135,"[\""Keyboard\"", \""Wireless Mouse\""]",1688.39,{},24795,0,"""Africa""" +2023-07-13,93146,8096,"[\""Keyboard\"", \""Monitor\""]",4486.27,"{\""promo\"": \""5%\""}",254106,1,"""Europe""" +2023-08-18,93147,1954,"[\""Keyboard\"", \""Phone\""]",4338.99,{},56659,1,"""Europe""" +2024-03-28,93148,5418,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3900.93,{},294955,1,"""South America""" +2023-07-19,93149,6731,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1861.14,"{\""promo\"": \""25%\""}",151872,1,"""Asia""" +2023-11-13,93150,721,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2120.76,{},235256,1,"""North America""" +2023-01-28,93151,7493,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1019.87,"{\""loyalty\"": \""23%\""}",211093,0,"""Europe""" +2023-12-14,93152,2963,"[\""Wireless Mouse\""]",4651.29,{},75453,1,"""Africa""" +2023-03-26,93153,3443,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1235.8,{},6010,0,"""Europe""" +2024-07-05,93154,1909,"[\""Charger\"", \""Wireless Mouse\""]",2528.12,"{\""seasonal\"": \""30%\""}",67327,1,"""South America""" +2024-09-16,93155,3209,"[\""Wireless Mouse\""]",1909.28,{},119091,0,"""North America""" +2023-04-19,93156,8188,"[\""Tablet\"", \""Headphones\""]",651.22,{},6105,1,"""South America""" +2023-09-10,93157,1709,"[\""Laptop\"", \""Monitor\""]",2194.98,"{\"": \""25%\""}",63632,1,"""Europe""" +2023-04-02,93158,4456,"[\""Keyboard\"", \""Tablet\""]",1240.84,"{\"": \""17%\""}",24384,1,"""Asia""" +2024-09-29,93159,2977,"[\""Laptop\"", \""Keyboard\""]",3474.08,{},252575,0,"""South America""" +2023-05-17,93160,6657,"[\""Monitor\""]",1592.4,"{\"": \""20%\""}",97137,1,"""Asia""" +2024-01-20,93161,2104,"[\""Wireless Mouse\""]",1439.62,{},44537,1,"""Europe""" +2024-08-26,93162,302,"[\""Tablet\""]",2954.23,"{\"": \""26%\""}",178498,1,"""South America""" +2024-09-24,93163,7319,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4045.57,{},100482,1,"""Europe""" +2023-01-18,93164,8687,"[\""Charger\""]",2984.21,{},16847,1,"""Europe""" +2023-12-27,93165,2762,"[\""Phone\"", \""Charger\""]",4159.75,"{\"": \""30%\""}",251456,1,"""South America""" +2024-02-13,93166,3463,"[\""Laptop\""]",4423.7,"{\"": \""12%\""}",135450,1,"""Europe""" +2023-11-15,93167,7876,"[\""Wireless Mouse\"", \""Headphones\""]",3810.27,"{\"": \""9%\""}",244774,1,"""Asia""" +2023-05-24,93168,2748,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",1201.49,"{\""loyalty\"": \""30%\""}",207973,1,"""North America""" +2024-06-09,93169,731,"[\""Wireless Mouse\""]",1510.03,{},270453,1,"""Asia""" +2024-05-23,93170,7663,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2462.98,{},100279,0,"""Europe""" +2024-12-15,93171,8881,"[\""Keyboard\"", \""Phone\""]",2696.34,"{\""seasonal\"": \""19%\""}",225659,0,"""North America""" +2023-01-15,93172,858,"[\""Charger\""]",4329.99,{},32581,1,"""Europe""" +2024-03-08,93173,7535,"[\""Phone\"", \""Tablet\""]",1416.41,"{\"": \""9%\""}",281941,1,"""Asia""" +2024-03-29,93174,3384,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1348.29,"{\"": \""14%\""}",220031,1,"""Asia""" +2024-11-23,93175,2240,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2718.07,"{\"": \""13%\""}",67379,0,"""Asia""" +2023-05-03,93176,7812,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2118.3,"{\"": \""21%\""}",39860,0,"""Europe""" +2024-03-24,93177,1774,"[\""Tablet\""]",4742.16,"{\""loyalty\"": \""22%\""}",211466,0,"""North America""" +2024-09-19,93178,8573,"[\""Phone\"", \""Keyboard\""]",1670.07,{},160082,0,"""Africa""" +2024-04-02,93179,7187,"[\""Laptop\""]",1362.62,"{\"": \""22%\""}",67322,1,"""Africa""" +2024-09-21,93180,5947,"[\""Tablet\""]",1630.98,"{\""seasonal\"": \""11%\""}",263781,1,"""Europe""" +2024-02-20,93181,1359,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3700.19,{},292166,1,"""South America""" +2023-06-10,93182,2867,"[\""Keyboard\""]",439.71,{},245504,1,"""Europe""" +2023-03-04,93183,5623,"[\""Monitor\"", \""Charger\""]",3843.59,"{\""promo\"": \""11%\""}",194758,0,"""Africa""" +2024-04-23,93184,2601,"[\""Keyboard\""]",4355.1,"{\""seasonal\"": \""25%\""}",134425,1,"""Asia""" +2023-07-09,93185,4891,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4145.48,{},250463,0,"""North America""" +2024-01-18,93186,2957,"[\""Headphones\""]",2360.07,{},243664,1,"""North America""" +2024-09-06,93187,8449,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",4428.4,{},190654,1,"""Africa""" +2023-04-19,93188,3105,"[\""Headphones\""]",1924.81,"{\""promo\"": \""10%\""}",76170,0,"""Europe""" +2024-04-07,93189,845,"[\""Tablet\"", \""Monitor\""]",3947.61,"{\"": \""9%\""}",278463,1,"""Europe""" +2023-03-24,93190,9301,"[\""Monitor\""]",3378.86,{},162159,1,"""Africa""" +2023-01-19,93191,7448,"[\""Monitor\""]",2319.82,"{\""loyalty\"": \""9%\""}",46446,1,"""Africa""" +2023-06-09,93192,171,"[\""Phone\""]",835.91,"{\""promo\"": \""15%\""}",264481,0,"""Asia""" +2024-05-30,93193,9402,"[\""Monitor\"", \""Keyboard\""]",3239.25,{},105853,1,"""South America""" +2023-11-20,93194,6721,"[\""Laptop\"", \""Wireless Mouse\""]",3893.73,"{\""loyalty\"": \""16%\""}",258075,1,"""Africa""" +2023-06-27,93195,6053,"[\""Phone\"", \""Tablet\""]",1614.29,{},176838,0,"""Asia""" +2024-09-11,93196,6004,"[\""Laptop\"", \""Monitor\""]",2725.56,"{\""promo\"": \""23%\""}",81761,1,"""Europe""" +2023-12-12,93197,6892,"[\""Tablet\""]",765.96,"{\""promo\"": \""5%\""}",151818,1,"""Europe""" +2023-03-09,93198,3688,"[\""Keyboard\""]",2059.23,"{\""promo\"": \""29%\""}",289032,0,"""North America""" +2024-06-04,93199,6267,"[\""Keyboard\""]",81.08,{},237092,0,"""Europe""" +2023-03-09,93200,7570,"[\""Monitor\""]",312.98,"{\""promo\"": \""14%\""}",247470,1,"""South America""" +2024-05-07,93201,3903,"[\""Headphones\"", \""Phone\""]",2993.26,{},127314,0,"""North America""" +2023-05-31,93202,2181,"[\""Charger\"", \""Phone\""]",561.17,{},130945,0,"""Europe""" +2023-08-16,93203,4409,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3051.31,{},176961,1,"""Africa""" +2023-09-16,93204,6078,"[\""Charger\""]",1174.45,"{\""promo\"": \""20%\""}",241508,0,"""Africa""" +2023-05-15,93205,2843,"[\""Tablet\""]",1453.55,{},153542,0,"""South America""" +2023-06-20,93206,7454,"[\""Laptop\"", \""Phone\""]",1258.82,"{\""seasonal\"": \""15%\""}",122373,1,"""Asia""" +2023-02-10,93207,3434,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3673.81,{},86207,1,"""Asia""" +2023-08-12,93208,4314,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",1604.48,{},208745,1,"""North America""" +2023-03-12,93209,9067,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4926.43,{},194591,1,"""South America""" +2023-12-25,93210,7011,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4437.21,{},276372,1,"""Asia""" +2024-07-08,93211,4455,"[\""Tablet\""]",3623.99,{},282553,0,"""Africa""" +2023-04-30,93212,5242,"[\""Keyboard\""]",2446.96,{},172528,1,"""South America""" +2024-11-08,93213,2590,"[\""Keyboard\"", \""Wireless Mouse\""]",4815.88,{},228313,0,"""North America""" +2023-02-27,93214,4183,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2854.31,"{\""seasonal\"": \""16%\""}",12895,0,"""South America""" +2024-03-14,93215,5344,"[\""Monitor\"", \""Wireless Mouse\""]",4606.54,"{\""loyalty\"": \""7%\""}",186905,0,"""South America""" +2023-10-02,93216,2789,"[\""Monitor\""]",3453.61,"{\""seasonal\"": \""21%\""}",276563,0,"""Asia""" +2023-08-12,93217,1343,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",659.31,{},11864,1,"""South America""" +2024-09-19,93218,2473,"[\""Monitor\""]",1977.17,{},125275,1,"""South America""" +2024-03-27,93219,8976,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1127.52,"{\""seasonal\"": \""7%\""}",150991,0,"""North America""" +2023-05-19,93220,6775,"[\""Tablet\""]",2017.07,{},286605,0,"""North America""" +2024-11-13,93221,2809,"[\""Wireless Mouse\""]",2810.6,{},15695,1,"""South America""" +2024-01-12,93222,8428,"[\""Wireless Mouse\"", \""Keyboard\""]",3659.21,{},218145,0,"""Asia""" +2024-01-01,93223,2993,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",801.63,"{\""loyalty\"": \""20%\""}",83274,1,"""Asia""" +2024-12-10,93224,2631,"[\""Headphones\""]",4521.33,"{\""promo\"": \""18%\""}",22068,0,"""South America""" +2023-10-05,93225,1453,"[\""Charger\"", \""Laptop\""]",3714.29,{},171985,0,"""North America""" +2023-11-24,93226,5104,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3250.37,{},189508,1,"""South America""" +2023-11-26,93227,9309,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",1940.34,{},90346,0,"""South America""" +2023-02-21,93228,3492,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1650.21,"{\"": \""26%\""}",181123,0,"""Africa""" +2024-01-17,93229,2357,"[\""Charger\"", \""Wireless Mouse\""]",1306.63,"{\"": \""19%\""}",172949,0,"""North America""" +2024-10-15,93230,6164,"[\""Laptop\"", \""Wireless Mouse\""]",4656.35,{},197742,1,"""South America""" +2024-06-16,93231,470,"[\""Charger\"", \""Phone\""]",756.4,{},133933,0,"""Europe""" +2023-04-04,93232,3808,"[\""Tablet\"", \""Charger\""]",379.18,"{\""promo\"": \""8%\""}",111821,0,"""North America""" +2023-10-28,93233,4811,"[\""Phone\"", \""Keyboard\""]",1567.75,{},1133,0,"""Asia""" +2023-08-11,93234,9800,"[\""Monitor\"", \""Laptop\""]",645.74,"{\"": \""13%\""}",247380,0,"""Asia""" +2023-01-07,93235,9496,"[\""Wireless Mouse\"", \""Keyboard\""]",900.34,{},33318,1,"""Europe""" +2024-07-26,93236,6362,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3954.73,"{\"": \""29%\""}",17206,1,"""South America""" +2024-08-26,93237,3329,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1730.44,{},68335,1,"""North America""" +2023-06-19,93238,151,"[\""Keyboard\"", \""Wireless Mouse\""]",4103.53,"{\"": \""11%\""}",23870,0,"""South America""" +2023-04-21,93239,5850,"[\""Monitor\"", \""Phone\""]",2749.17,"{\""loyalty\"": \""9%\""}",23379,0,"""Africa""" +2023-08-16,93240,2706,"[\""Wireless Mouse\"", \""Keyboard\""]",245.18,"{\"": \""11%\""}",189844,1,"""Africa""" +2023-02-21,93241,4057,"[\""Charger\""]",4961.53,"{\""promo\"": \""7%\""}",60337,1,"""North America""" +2024-12-05,93242,810,"[\""Phone\"", \""Keyboard\""]",146.39,"{\""loyalty\"": \""25%\""}",241849,0,"""Europe""" +2023-10-19,93243,8900,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",223.12,"{\""seasonal\"": \""19%\""}",231836,0,"""Asia""" +2023-12-11,93244,2353,"[\""Monitor\"", \""Laptop\""]",1406.96,{},247726,1,"""South America""" +2024-06-14,93245,7587,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3518.77,{},218234,1,"""Africa""" +2023-07-16,93246,7811,"[\""Phone\"", \""Keyboard\""]",3979.62,{},169087,0,"""South America""" +2024-11-17,93247,7110,"[\""Monitor\"", \""Headphones\""]",1784.58,"{\""loyalty\"": \""16%\""}",203346,0,"""Asia""" +2024-05-28,93248,6520,"[\""Wireless Mouse\""]",2606.5,{},171160,1,"""Africa""" +2024-05-24,93249,4444,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",3945.49,"{\""promo\"": \""5%\""}",227613,0,"""North America""" +2024-07-18,93250,597,"[\""Laptop\"", \""Headphones\""]",1073.01,{},204035,0,"""North America""" +2023-09-24,93251,9911,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4877.99,"{\""promo\"": \""7%\""}",16647,1,"""North America""" +2024-09-26,93252,3775,"[\""Laptop\""]",3133.09,{},123792,1,"""South America""" +2023-09-09,93253,402,"[\""Keyboard\""]",4584.88,{},180002,1,"""Africa""" +2024-09-13,93254,7454,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1778.61,{},159509,1,"""Europe""" +2023-09-09,93255,3986,"[\""Laptop\""]",1681.74,{},280747,0,"""Africa""" +2024-04-18,93256,1549,"[\""Tablet\"", \""Wireless Mouse\""]",1601.98,"{\""loyalty\"": \""23%\""}",277426,0,"""North America""" +2024-06-11,93257,2529,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4759.12,"{\"": \""14%\""}",84682,0,"""Africa""" +2024-08-02,93258,7023,"[\""Wireless Mouse\"", \""Headphones\""]",4510.23,{},61961,1,"""South America""" +2023-04-20,93259,1904,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3309.14,{},60325,1,"""North America""" +2024-05-27,93260,9665,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",952.9,"{\"": \""24%\""}",95709,1,"""North America""" +2024-12-08,93261,8622,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4828.76,"{\""loyalty\"": \""7%\""}",273525,0,"""Africa""" +2023-03-21,93262,990,"[\""Monitor\"", \""Charger\""]",1772.43,"{\""loyalty\"": \""25%\""}",94814,1,"""Europe""" +2023-12-08,93263,5600,"[\""Laptop\"", \""Wireless Mouse\""]",4992.68,"{\""loyalty\"": \""14%\""}",191046,0,"""South America""" +2023-11-05,93264,3901,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",2929.95,{},11407,0,"""Europe""" +2023-01-16,93265,2953,"[\""Charger\""]",4288.12,{},225733,1,"""Africa""" +2024-10-05,93266,9244,"[\""Laptop\"", \""Phone\""]",1784.74,{},211957,0,"""Europe""" +2023-09-26,93267,3598,"[\""Laptop\"", \""Charger\""]",3348.24,"{\""seasonal\"": \""11%\""}",17132,1,"""Asia""" +2023-08-16,93268,2009,"[\""Charger\"", \""Laptop\""]",1939.21,"{\""loyalty\"": \""8%\""}",292054,1,"""Asia""" +2024-04-20,93269,9482,"[\""Wireless Mouse\"", \""Laptop\""]",996.61,"{\"": \""20%\""}",266945,1,"""Asia""" +2023-10-04,93270,7672,"[\""Laptop\"", \""Monitor\""]",3790.12,"{\"": \""21%\""}",103667,1,"""South America""" +2023-09-16,93271,4180,"[\""Charger\"", \""Monitor\""]",530.36,"{\""promo\"": \""16%\""}",252626,0,"""South America""" +2023-04-25,93272,7573,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2513.94,"{\""promo\"": \""17%\""}",136023,0,"""Asia""" +2023-07-24,93273,7021,"[\""Keyboard\""]",2846.14,{},252086,0,"""Africa""" +2023-03-08,93274,7968,"[\""Headphones\""]",2952.54,"{\""loyalty\"": \""16%\""}",100137,1,"""Europe""" +2023-10-05,93275,2329,"[\""Headphones\""]",3346.5,"{\""loyalty\"": \""19%\""}",114418,1,"""Africa""" +2024-08-23,93276,2893,"[\""Monitor\""]",2366.53,"{\""seasonal\"": \""14%\""}",199718,0,"""Asia""" +2024-06-25,93277,4456,"[\""Charger\"", \""Monitor\""]",1357.87,"{\""promo\"": \""7%\""}",214575,0,"""South America""" +2023-08-21,93278,2111,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",4671.48,"{\""promo\"": \""15%\""}",164071,1,"""South America""" +2023-06-11,93279,6582,"[\""Wireless Mouse\"", \""Monitor\""]",4246.16,{},182883,0,"""South America""" +2023-06-09,93280,5910,"[\""Keyboard\"", \""Wireless Mouse\""]",4594.1,{},270103,1,"""Europe""" +2023-09-03,93281,352,"[\""Tablet\"", \""Laptop\""]",4928.53,"{\""promo\"": \""25%\""}",260010,1,"""South America""" +2024-05-12,93282,6507,"[\""Tablet\"", \""Phone\""]",1963.62,{},240771,0,"""Africa""" +2024-08-15,93283,7055,"[\""Wireless Mouse\"", \""Charger\""]",4249.45,{},215263,0,"""Asia""" +2023-02-09,93284,3167,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3421.6,"{\"": \""10%\""}",60054,1,"""Europe""" +2024-05-07,93285,8776,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4494.02,"{\""seasonal\"": \""28%\""}",231510,1,"""North America""" +2024-01-13,93286,2426,"[\""Tablet\"", \""Charger\""]",2983.84,"{\"": \""22%\""}",243405,0,"""Europe""" +2023-12-10,93287,3060,"[\""Monitor\""]",3871.98,"{\""loyalty\"": \""15%\""}",76393,1,"""Asia""" +2024-07-07,93288,348,"[\""Laptop\""]",2625.02,{},120130,1,"""Europe""" +2024-03-09,93289,3132,"[\""Charger\""]",3909.27,{},192605,0,"""North America""" +2023-05-17,93290,5019,"[\""Wireless Mouse\""]",1117.73,{},145335,1,"""Asia""" +2023-01-09,93291,7336,"[\""Laptop\""]",768.51,"{\""loyalty\"": \""23%\""}",153468,1,"""Africa""" +2024-05-23,93292,4282,"[\""Wireless Mouse\""]",305.9,{},192985,1,"""North America""" +2024-06-25,93293,452,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",307.39,{},196940,1,"""North America""" +2024-09-22,93294,3525,"[\""Phone\"", \""Tablet\""]",726.59,"{\""promo\"": \""11%\""}",8895,0,"""South America""" +2024-10-17,93295,9483,"[\""Headphones\""]",431.64,{},262626,0,"""Asia""" +2023-04-20,93296,8325,"[\""Wireless Mouse\"", \""Keyboard\""]",2104.93,{},56249,1,"""Europe""" +2024-11-14,93297,6486,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",697.82,"{\""loyalty\"": \""27%\""}",187949,0,"""Europe""" +2024-08-29,93298,1648,"[\""Laptop\""]",4029.09,{},288653,0,"""South America""" +2023-09-24,93299,7070,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1597.14,{},73413,1,"""Europe""" +2024-10-10,93300,8137,"[\""Laptop\""]",1979.27,"{\""promo\"": \""21%\""}",125620,1,"""South America""" +2023-09-16,93301,1239,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3056.76,{},144384,0,"""Europe""" +2023-04-02,93302,6300,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3416.44,"{\""seasonal\"": \""28%\""}",293846,1,"""South America""" +2023-06-09,93303,6533,"[\""Monitor\""]",2674.8,{},235303,0,"""Africa""" +2023-11-04,93304,2617,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",599.87,{},245667,1,"""Asia""" +2023-12-01,93305,2,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2758.13,"{\""seasonal\"": \""5%\""}",183678,1,"""Africa""" +2024-11-07,93306,6442,"[\""Phone\""]",3996.77,{},96070,1,"""South America""" +2024-05-16,93307,6856,"[\""Wireless Mouse\"", \""Headphones\""]",1431.93,"{\"": \""27%\""}",169234,0,"""Africa""" +2023-10-28,93308,2925,"[\""Tablet\"", \""Laptop\""]",1159.41,{},175375,1,"""Asia""" +2024-12-05,93309,7589,"[\""Headphones\"", \""Phone\""]",773.93,"{\""loyalty\"": \""29%\""}",207956,0,"""North America""" +2024-11-17,93310,4918,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4070.13,"{\""promo\"": \""26%\""}",162695,0,"""South America""" +2023-10-09,93311,5461,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",2982.73,{},248783,1,"""Africa""" +2024-03-06,93312,6419,"[\""Phone\""]",1534.14,"{\""loyalty\"": \""8%\""}",197695,1,"""Asia""" +2023-04-25,93313,1872,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",3202.66,{},166231,1,"""North America""" +2023-04-17,93314,9872,"[\""Laptop\"", \""Wireless Mouse\""]",2731.08,{},115163,1,"""Africa""" +2024-06-28,93315,9680,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",2411.38,"{\"": \""17%\""}",53126,1,"""North America""" +2024-01-21,93316,5800,"[\""Wireless Mouse\""]",1160.06,{},292373,0,"""North America""" +2023-05-21,93317,8469,"[\""Keyboard\""]",793.83,"{\""promo\"": \""26%\""}",69886,0,"""South America""" +2024-04-26,93318,5265,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",381.84,{},150676,1,"""Asia""" +2023-07-31,93319,6234,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1234.47,{},140327,1,"""South America""" +2023-01-24,93320,5984,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",3445.38,"{\"": \""7%\""}",155938,0,"""Asia""" +2024-05-14,93321,511,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",687.29,{},30768,1,"""Asia""" +2023-05-19,93322,9205,"[\""Keyboard\"", \""Headphones\""]",1758.18,{},271985,1,"""Asia""" +2023-12-17,93323,1187,"[\""Laptop\"", \""Phone\""]",3157.62,{},1286,1,"""North America""" +2024-09-09,93324,8423,"[\""Laptop\"", \""Headphones\""]",1316.36,{},6384,0,"""Europe""" +2023-08-15,93325,3048,"[\""Tablet\""]",749.2,"{\""seasonal\"": \""27%\""}",254693,1,"""Asia""" +2024-09-02,93326,4282,"[\""Tablet\""]",1814.91,"{\""seasonal\"": \""12%\""}",148128,1,"""North America""" +2023-09-17,93327,1646,"[\""Laptop\"", \""Phone\""]",308.71,"{\""loyalty\"": \""13%\""}",123891,1,"""Asia""" +2023-02-09,93328,1780,"[\""Keyboard\"", \""Monitor\""]",1654.45,"{\""promo\"": \""18%\""}",149349,1,"""Asia""" +2023-12-01,93329,4854,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2943.39,"{\""promo\"": \""21%\""}",135625,1,"""Africa""" +2024-09-08,93330,4806,"[\""Charger\"", \""Wireless Mouse\""]",4779.09,{},25446,1,"""South America""" +2024-07-12,93331,9007,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",4759.95,"{\""seasonal\"": \""29%\""}",283079,1,"""North America""" +2023-10-15,93332,5854,"[\""Phone\""]",4187.77,{},162331,1,"""Africa""" +2024-06-15,93333,8143,"[\""Keyboard\"", \""Wireless Mouse\""]",4739.26,"{\""loyalty\"": \""5%\""}",129995,0,"""South America""" +2023-11-19,93334,4658,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",478.13,{},123957,0,"""North America""" +2024-06-08,93335,5920,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1837.16,{},277311,1,"""Europe""" +2023-06-24,93336,613,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3467.98,"{\"": \""30%\""}",98179,1,"""Africa""" +2024-01-01,93337,7142,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3261.43,{},138718,0,"""North America""" +2023-03-11,93338,9208,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1668.38,"{\""promo\"": \""12%\""}",37492,1,"""Africa""" +2024-02-07,93339,8323,"[\""Laptop\""]",2302.95,"{\""promo\"": \""14%\""}",270674,0,"""North America""" +2023-11-06,93340,712,"[\""Keyboard\"", \""Tablet\""]",2928.55,{},243894,1,"""Europe""" +2024-04-02,93341,4148,"[\""Keyboard\""]",2748.06,{},191821,1,"""Europe""" +2024-06-17,93342,5685,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3393.17,{},187097,0,"""South America""" +2024-06-21,93343,709,"[\""Keyboard\"", \""Tablet\""]",3716.36,"{\""promo\"": \""20%\""}",239011,0,"""Asia""" +2024-12-23,93344,1194,"[\""Wireless Mouse\"", \""Keyboard\""]",1629.28,"{\""seasonal\"": \""25%\""}",88207,1,"""Africa""" +2024-04-14,93345,6393,"[\""Monitor\""]",1342.86,{},232831,1,"""Asia""" +2024-10-28,93346,8034,"[\""Tablet\"", \""Laptop\""]",4147.58,{},285353,0,"""Asia""" +2023-11-06,93347,2548,"[\""Keyboard\""]",221.32,{},264130,1,"""Asia""" +2023-05-05,93348,8075,"[\""Wireless Mouse\""]",622.31,"{\""loyalty\"": \""15%\""}",220144,0,"""Asia""" +2023-12-29,93349,6861,"[\""Wireless Mouse\""]",160.64,"{\""seasonal\"": \""20%\""}",273613,1,"""Europe""" +2023-11-18,93350,2485,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",489.65,{},143665,1,"""Europe""" +2023-09-06,93351,448,"[\""Keyboard\"", \""Phone\""]",968.55,"{\"": \""29%\""}",245417,1,"""South America""" +2024-04-06,93352,1413,"[\""Keyboard\""]",4897.31,"{\"": \""7%\""}",218944,1,"""Africa""" +2024-01-18,93353,1297,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1692.98,"{\""loyalty\"": \""19%\""}",296697,1,"""Africa""" +2024-09-13,93354,4920,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3831.44,{},25840,0,"""Europe""" +2024-01-08,93355,265,"[\""Headphones\"", \""Tablet\""]",993.83,"{\""seasonal\"": \""18%\""}",171324,0,"""North America""" +2023-11-28,93356,9589,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",344.89,"{\""promo\"": \""23%\""}",184846,1,"""Africa""" +2024-01-19,93357,9836,"[\""Phone\""]",3991.83,{},22708,0,"""North America""" +2024-11-12,93358,734,"[\""Keyboard\""]",401.9,{},249048,0,"""South America""" +2023-12-03,93359,2631,"[\""Charger\"", \""Monitor\""]",753.43,"{\""promo\"": \""25%\""}",197938,1,"""Africa""" +2023-07-11,93360,6916,"[\""Tablet\""]",1173.11,{},213188,1,"""Asia""" +2023-08-01,93361,849,"[\""Keyboard\"", \""Headphones\""]",3393.77,"{\"": \""8%\""}",169288,1,"""Asia""" +2024-10-17,93362,4528,"[\""Laptop\"", \""Keyboard\""]",2540.37,"{\""promo\"": \""6%\""}",248189,0,"""North America""" +2024-03-05,93363,4659,"[\""Monitor\""]",3419.36,{},217075,0,"""Europe""" +2024-09-22,93364,3157,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3123.19,"{\""promo\"": \""6%\""}",183576,1,"""Europe""" +2024-06-21,93365,9026,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4015.52,"{\"": \""29%\""}",260307,0,"""South America""" +2023-02-13,93366,2625,"[\""Wireless Mouse\"", \""Charger\""]",1502.3,"{\"": \""6%\""}",190366,1,"""Asia""" +2023-07-26,93367,8155,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2149.52,{},118759,0,"""Europe""" +2024-07-09,93368,1746,"[\""Keyboard\"", \""Charger\""]",3808.61,{},92180,0,"""Asia""" +2024-05-23,93369,3219,"[\""Phone\"", \""Monitor\"", \""Charger\""]",499.35,{},87280,1,"""North America""" +2023-09-21,93370,3139,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",1041.26,{},53839,0,"""South America""" +2024-08-18,93371,243,"[\""Wireless Mouse\""]",4933.08,"{\""loyalty\"": \""9%\""}",242969,1,"""Europe""" +2024-10-03,93372,7894,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3887.44,{},243966,0,"""South America""" +2023-04-05,93373,8286,"[\""Charger\"", \""Laptop\""]",4452.14,{},228751,1,"""Europe""" +2023-11-15,93374,967,"[\""Monitor\"", \""Headphones\""]",486.35,{},88533,0,"""Asia""" +2024-09-27,93375,1337,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",1026.49,{},246876,0,"""Asia""" +2024-01-30,93376,4024,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",3261.43,"{\""seasonal\"": \""21%\""}",158166,0,"""North America""" +2023-03-03,93377,6207,"[\""Phone\"", \""Charger\""]",3520.42,"{\""promo\"": \""16%\""}",175377,1,"""Asia""" +2023-05-29,93378,3575,"[\""Headphones\""]",670.57,"{\"": \""30%\""}",215620,0,"""South America""" +2023-01-15,93379,6429,"[\""Laptop\""]",1288.45,{},219566,1,"""Africa""" +2023-10-21,93380,6547,"[\""Wireless Mouse\"", \""Keyboard\""]",1664.93,"{\""seasonal\"": \""16%\""}",126158,0,"""Asia""" +2024-12-27,93381,4781,"[\""Headphones\"", \""Tablet\""]",2397.03,{},138485,0,"""Africa""" +2023-07-22,93382,4003,"[\""Laptop\"", \""Charger\""]",202.66,"{\""loyalty\"": \""14%\""}",160567,0,"""North America""" +2024-10-03,93383,1353,"[\""Phone\"", \""Tablet\""]",3325.4,"{\""loyalty\"": \""23%\""}",287725,1,"""Africa""" +2024-07-18,93384,9155,"[\""Monitor\"", \""Laptop\""]",3856.83,"{\""promo\"": \""19%\""}",162024,1,"""Africa""" +2024-12-19,93385,813,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1090.9,"{\""loyalty\"": \""22%\""}",172393,1,"""South America""" +2023-03-17,93386,2935,"[\""Phone\"", \""Wireless Mouse\""]",1515.11,"{\""seasonal\"": \""16%\""}",256800,0,"""Asia""" +2023-08-22,93387,7479,"[\""Headphones\"", \""Monitor\""]",3084.62,"{\"": \""5%\""}",172084,0,"""North America""" +2024-07-14,93388,6745,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",584.12,"{\""promo\"": \""23%\""}",190530,0,"""Africa""" +2024-04-01,93389,3301,"[\""Laptop\"", \""Headphones\""]",3970.34,"{\""promo\"": \""29%\""}",75239,1,"""Asia""" +2024-05-13,93390,7152,"[\""Wireless Mouse\""]",4550.33,{},273443,0,"""South America""" +2024-08-13,93391,831,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1178.58,{},150882,0,"""North America""" +2024-08-09,93392,2742,"[\""Monitor\""]",2376.11,"{\"": \""8%\""}",194213,1,"""Europe""" +2023-12-25,93393,9867,"[\""Tablet\""]",2404.09,{},104043,1,"""North America""" +2023-06-05,93394,8035,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2994.3,"{\"": \""29%\""}",85891,0,"""South America""" +2023-03-21,93395,5807,"[\""Charger\""]",543.31,{},124409,1,"""North America""" +2024-09-16,93396,3987,"[\""Keyboard\""]",1683.87,{},221893,0,"""Europe""" +2023-07-29,93397,6532,"[\""Phone\""]",1351.33,{},58241,0,"""Europe""" +2024-07-06,93398,6956,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1734.18,"{\""promo\"": \""11%\""}",210373,0,"""Europe""" +2024-06-13,93399,3149,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3531.48,{},265749,1,"""Asia""" +2024-11-13,93400,9249,"[\""Monitor\""]",4892.66,"{\""loyalty\"": \""27%\""}",143437,0,"""Europe""" +2023-01-29,93401,1224,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",643.91,{},180119,1,"""Asia""" +2024-03-23,93402,3325,"[\""Monitor\"", \""Phone\""]",2360.62,{},264947,0,"""South America""" +2023-10-31,93403,6363,"[\""Wireless Mouse\"", \""Laptop\""]",777.44,"{\"": \""9%\""}",156367,0,"""North America""" +2024-02-19,93404,3025,"[\""Wireless Mouse\"", \""Headphones\""]",4118.46,{},165051,1,"""Africa""" +2024-09-24,93405,1762,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",880.74,{},127461,0,"""South America""" +2023-07-10,93406,3014,"[\""Wireless Mouse\""]",132.3,"{\""seasonal\"": \""18%\""}",65922,1,"""Africa""" +2023-02-20,93407,5898,"[\""Laptop\"", \""Keyboard\""]",1378.61,"{\"": \""20%\""}",127110,0,"""Africa""" +2024-09-03,93408,9432,"[\""Headphones\""]",3870.12,{},68380,1,"""South America""" +2024-02-02,93409,8365,"[\""Monitor\""]",146.55,{},123123,1,"""Africa""" +2023-06-07,93410,1329,"[\""Tablet\"", \""Charger\""]",175.63,{},293838,1,"""Africa""" +2023-12-22,93411,1091,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1185.42,{},183828,0,"""Africa""" +2023-10-04,93412,3207,"[\""Monitor\"", \""Laptop\""]",192.14,{},56157,1,"""North America""" +2023-12-16,93413,2506,"[\""Keyboard\"", \""Tablet\""]",4826.15,"{\""seasonal\"": \""12%\""}",89180,1,"""Europe""" +2024-12-05,93414,2776,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",4215.94,"{\"": \""27%\""}",2117,1,"""Asia""" +2024-02-27,93415,7665,"[\""Charger\"", \""Monitor\""]",1724.28,"{\""promo\"": \""23%\""}",270072,1,"""Europe""" +2024-11-05,93416,6078,"[\""Phone\""]",760.54,{},224627,1,"""Europe""" +2024-08-10,93417,9017,"[\""Keyboard\""]",4403.75,"{\"": \""22%\""}",131497,0,"""Europe""" +2024-06-08,93418,678,"[\""Tablet\""]",3894.73,{},268440,1,"""Europe""" +2024-12-01,93419,5890,"[\""Headphones\"", \""Phone\""]",3531.35,"{\""promo\"": \""11%\""}",185727,1,"""Asia""" +2023-05-23,93420,2461,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",1817.54,{},138777,0,"""Europe""" +2023-10-09,93421,427,"[\""Charger\""]",4378.79,"{\""promo\"": \""26%\""}",214718,0,"""North America""" +2024-09-01,93422,3829,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4445.97,{},168743,0,"""North America""" +2024-01-05,93423,1754,"[\""Tablet\"", \""Laptop\""]",4798.07,{},106835,1,"""North America""" +2023-05-19,93424,639,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",3755.45,{},99914,0,"""Asia""" +2023-11-15,93425,9666,"[\""Monitor\"", \""Laptop\""]",3830.53,"{\""loyalty\"": \""12%\""}",202395,1,"""South America""" +2024-10-21,93426,6998,"[\""Keyboard\"", \""Charger\""]",4059.73,"{\""loyalty\"": \""22%\""}",205601,1,"""South America""" +2024-05-29,93427,9660,"[\""Laptop\"", \""Headphones\""]",796.43,{},224558,1,"""Asia""" +2023-01-23,93428,580,"[\""Charger\"", \""Phone\""]",436.93,{},180351,0,"""South America""" +2024-01-04,93429,5647,"[\""Keyboard\""]",4535.54,"{\"": \""27%\""}",160659,1,"""Europe""" +2024-03-22,93430,1711,"[\""Wireless Mouse\""]",2414.25,"{\"": \""13%\""}",287822,1,"""South America""" +2024-12-08,93431,4375,"[\""Headphones\"", \""Monitor\""]",1508.35,{},229678,0,"""Europe""" +2023-04-19,93432,80,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2701.86,{},79634,1,"""Europe""" +2024-08-13,93433,9808,"[\""Monitor\""]",3308.77,"{\"": \""27%\""}",146755,1,"""Europe""" +2024-02-06,93434,1446,"[\""Headphones\""]",4929.14,{},282822,1,"""Asia""" +2023-03-30,93435,8583,"[\""Monitor\"", \""Charger\""]",991.87,{},35230,0,"""South America""" +2023-04-01,93436,2495,"[\""Headphones\"", \""Wireless Mouse\""]",3661.01,{},188896,1,"""North America""" +2024-03-31,93437,1635,"[\""Laptop\"", \""Charger\""]",3780.76,{},107456,0,"""South America""" +2023-11-30,93438,5094,"[\""Phone\"", \""Laptop\""]",4203.19,{},236991,0,"""Europe""" +2024-10-14,93439,679,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2066.73,{},289952,0,"""South America""" +2024-10-12,93440,4526,"[\""Laptop\"", \""Monitor\""]",2451.87,"{\""loyalty\"": \""16%\""}",287374,0,"""North America""" +2023-04-30,93441,7122,"[\""Monitor\""]",1583.21,{},132882,0,"""Africa""" +2023-03-06,93442,8701,"[\""Tablet\"", \""Laptop\""]",770.03,"{\""loyalty\"": \""6%\""}",12267,1,"""South America""" +2024-12-04,93443,5041,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1474.21,{},299388,1,"""South America""" +2024-07-15,93444,8311,"[\""Headphones\"", \""Charger\""]",994.43,"{\"": \""24%\""}",48185,0,"""North America""" +2023-06-28,93445,1556,"[\""Wireless Mouse\"", \""Monitor\""]",1974.76,{},91547,0,"""Africa""" +2024-08-07,93446,5911,"[\""Wireless Mouse\""]",4328.73,"{\""loyalty\"": \""27%\""}",202939,0,"""Asia""" +2023-07-05,93447,3525,"[\""Charger\"", \""Wireless Mouse\""]",2943.99,"{\""loyalty\"": \""22%\""}",162044,0,"""Asia""" +2023-12-23,93448,8938,"[\""Headphones\""]",4652.11,{},46087,1,"""Asia""" +2023-10-30,93449,5040,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",723.26,"{\"": \""14%\""}",148044,0,"""North America""" +2023-12-25,93450,695,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4494.46,{},108723,0,"""Asia""" +2023-12-12,93451,2781,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",548.76,{},29053,1,"""North America""" +2024-12-24,93452,1819,"[\""Keyboard\""]",2874.81,"{\""promo\"": \""20%\""}",103889,0,"""Africa""" +2023-07-11,93453,4219,"[\""Phone\"", \""Keyboard\""]",2005.17,{},26137,1,"""Europe""" +2024-06-21,93454,6944,"[\""Monitor\"", \""Phone\""]",2757.48,"{\""loyalty\"": \""9%\""}",177421,0,"""South America""" +2023-08-26,93455,3027,"[\""Charger\"", \""Tablet\""]",1608.93,"{\""promo\"": \""10%\""}",263010,0,"""Europe""" +2023-11-19,93456,8845,"[\""Wireless Mouse\"", \""Keyboard\""]",3606.31,{},212472,0,"""Africa""" +2024-09-10,93457,5199,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",2693.39,"{\""loyalty\"": \""24%\""}",4548,0,"""Africa""" +2023-05-13,93458,5556,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",96.48,"{\"": \""26%\""}",216944,0,"""North America""" +2024-07-28,93459,8139,"[\""Laptop\""]",235.43,{},1863,1,"""North America""" +2024-12-31,93460,6021,"[\""Wireless Mouse\""]",984.04,{},297475,1,"""North America""" +2024-04-26,93461,3128,"[\""Tablet\""]",3503.38,{},14455,0,"""Africa""" +2023-10-05,93462,2162,"[\""Monitor\""]",270.87,{},231289,1,"""Asia""" +2024-08-03,93463,5237,"[\""Keyboard\""]",2790.83,"{\"": \""26%\""}",3206,1,"""Asia""" +2024-09-06,93464,8700,"[\""Laptop\""]",818.98,{},270631,0,"""Asia""" +2023-04-24,93465,5738,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3711.67,{},26657,0,"""Europe""" +2024-06-26,93466,8302,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3817.87,{},35930,1,"""South America""" +2024-01-31,93467,42,"[\""Charger\""]",3504.91,"{\""loyalty\"": \""14%\""}",37156,0,"""Africa""" +2024-03-25,93468,8611,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3303.93,"{\""loyalty\"": \""10%\""}",115890,1,"""Asia""" +2024-10-05,93469,1744,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2577.82,"{\"": \""16%\""}",125628,0,"""South America""" +2023-05-01,93470,581,"[\""Charger\"", \""Wireless Mouse\""]",2446.08,{},21467,1,"""North America""" +2024-10-05,93471,6639,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1947.37,"{\""seasonal\"": \""13%\""}",50996,1,"""North America""" +2023-02-08,93472,1662,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",3474.3,{},92769,1,"""South America""" +2023-12-10,93473,5505,"[\""Headphones\"", \""Monitor\""]",1863.32,"{\""loyalty\"": \""16%\""}",179824,0,"""Asia""" +2024-11-04,93474,4252,"[\""Wireless Mouse\"", \""Laptop\""]",3983.58,"{\""loyalty\"": \""22%\""}",120173,1,"""Europe""" +2023-07-28,93475,8891,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1866.32,"{\""seasonal\"": \""7%\""}",204262,0,"""North America""" +2024-08-26,93476,3109,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",1127.27,{},131712,1,"""South America""" +2024-12-03,93477,9616,"[\""Laptop\"", \""Headphones\""]",1975.67,"{\""promo\"": \""17%\""}",190576,0,"""Africa""" +2023-01-28,93478,4713,"[\""Charger\""]",1835.62,{},104169,1,"""North America""" +2023-10-05,93479,4137,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4125.55,"{\""loyalty\"": \""10%\""}",186002,1,"""South America""" +2024-06-22,93480,5947,"[\""Headphones\"", \""Monitor\""]",2206.63,{},115737,1,"""North America""" +2023-04-13,93481,7441,"[\""Phone\""]",252.39,"{\""promo\"": \""27%\""}",297820,0,"""Asia""" +2024-12-13,93482,9674,"[\""Keyboard\"", \""Wireless Mouse\""]",3896.12,"{\""loyalty\"": \""19%\""}",105984,0,"""Europe""" +2024-08-24,93483,7650,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4816.64,{},112515,1,"""North America""" +2023-03-26,93484,964,"[\""Phone\""]",3053.34,"{\"": \""15%\""}",276478,1,"""Africa""" +2023-08-03,93485,2956,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",670.64,{},290414,0,"""Europe""" +2023-04-15,93486,7890,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4257.25,{},219327,1,"""Africa""" +2023-09-18,93487,6297,"[\""Wireless Mouse\"", \""Headphones\""]",1489.78,{},271996,0,"""North America""" +2023-12-16,93488,2793,"[\""Keyboard\""]",4516.86,{},266705,1,"""South America""" +2023-09-24,93489,4302,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1273.55,"{\""promo\"": \""14%\""}",93562,0,"""Africa""" +2024-04-19,93490,1073,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2259.03,"{\""loyalty\"": \""7%\""}",144835,0,"""North America""" +2023-10-24,93491,4052,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1124.51,"{\""seasonal\"": \""16%\""}",63202,0,"""Europe""" +2024-01-20,93492,3031,"[\""Monitor\""]",3964.75,"{\"": \""10%\""}",45527,1,"""Europe""" +2024-01-03,93493,3593,"[\""Charger\""]",2723.42,{},43230,0,"""Asia""" +2023-09-19,93494,2007,"[\""Phone\"", \""Charger\""]",1780.96,"{\""promo\"": \""22%\""}",7401,0,"""Europe""" +2024-10-30,93495,6935,"[\""Keyboard\""]",185.87,{},65555,0,"""Asia""" +2024-08-16,93496,4879,"[\""Tablet\""]",2587.78,{},86258,1,"""Africa""" +2024-11-06,93497,5785,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1176.69,"{\"": \""5%\""}",101099,1,"""Africa""" +2024-11-10,93498,8504,"[\""Keyboard\"", \""Headphones\""]",4502.41,"{\"": \""29%\""}",29827,1,"""North America""" +2024-09-08,93499,1844,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",2425.94,{},151574,1,"""Europe""" +2024-11-27,93500,8497,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",566.48,"{\""promo\"": \""21%\""}",14950,1,"""Asia""" +2024-11-14,93501,6595,"[\""Tablet\""]",413.78,"{\""loyalty\"": \""7%\""}",72816,0,"""Europe""" +2023-10-31,93502,4157,"[\""Charger\"", \""Headphones\"", \""Phone\""]",637.67,"{\"": \""12%\""}",66721,0,"""Africa""" +2023-01-27,93503,2674,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2523.05,{},281332,1,"""North America""" +2024-04-18,93504,8076,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",613.46,{},155000,1,"""South America""" +2023-04-05,93505,2930,"[\""Laptop\""]",1459.81,{},144362,1,"""South America""" +2023-05-02,93506,1378,"[\""Phone\""]",4117.61,{},59164,0,"""North America""" +2024-10-19,93507,4541,"[\""Charger\"", \""Monitor\""]",3246.18,{},227604,0,"""Europe""" +2024-02-15,93508,4887,"[\""Headphones\""]",2680.66,{},219295,1,"""North America""" +2023-07-23,93509,1884,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",4193.2,{},7379,1,"""South America""" +2024-12-05,93510,7765,"[\""Wireless Mouse\"", \""Headphones\""]",3881.83,"{\""seasonal\"": \""23%\""}",245142,0,"""Africa""" +2023-06-17,93511,3008,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3526.47,{},34018,0,"""Asia""" +2023-06-25,93512,8295,"[\""Headphones\"", \""Tablet\""]",3638.69,"{\"": \""23%\""}",30355,0,"""Asia""" +2023-09-03,93513,6245,"[\""Monitor\""]",3990.35,{},257916,1,"""South America""" +2023-01-10,93514,4213,"[\""Monitor\""]",2291.79,"{\""loyalty\"": \""6%\""}",139974,0,"""South America""" +2023-12-03,93515,193,"[\""Laptop\"", \""Tablet\""]",4046.43,{},94575,1,"""Asia""" +2024-11-07,93516,2702,"[\""Laptop\""]",68.52,{},181806,0,"""South America""" +2023-12-20,93517,5294,"[\""Charger\""]",4979.44,"{\"": \""8%\""}",42585,0,"""South America""" +2024-07-21,93518,609,"[\""Headphones\""]",2226.92,"{\""seasonal\"": \""23%\""}",176052,1,"""North America""" +2023-07-02,93519,9413,"[\""Charger\"", \""Tablet\""]",347.73,"{\""loyalty\"": \""28%\""}",152535,1,"""South America""" +2024-07-09,93520,5309,"[\""Charger\"", \""Laptop\""]",2501.46,"{\""seasonal\"": \""28%\""}",245755,1,"""South America""" +2023-11-21,93521,8269,"[\""Monitor\"", \""Phone\""]",513.56,"{\""seasonal\"": \""10%\""}",219122,1,"""Africa""" +2023-04-01,93522,3003,"[\""Headphones\"", \""Laptop\""]",2040.82,"{\"": \""30%\""}",60122,1,"""North America""" +2024-06-17,93523,8598,"[\""Headphones\"", \""Wireless Mouse\""]",1588.15,{},210086,0,"""North America""" +2023-09-04,93524,7883,"[\""Monitor\"", \""Phone\""]",1680.52,{},74342,1,"""South America""" +2024-06-07,93525,60,"[\""Phone\"", \""Keyboard\""]",1667.54,"{\"": \""16%\""}",114818,0,"""South America""" +2024-12-01,93526,1479,"[\""Tablet\"", \""Headphones\""]",276.83,{},25137,1,"""Asia""" +2024-08-08,93527,2471,"[\""Monitor\""]",460.7,"{\""promo\"": \""30%\""}",17302,0,"""Asia""" +2023-05-24,93528,4921,"[\""Laptop\""]",2275.37,{},261277,0,"""North America""" +2023-07-08,93529,1395,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2194.46,"{\""seasonal\"": \""22%\""}",257562,0,"""Asia""" +2023-12-02,93530,6760,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",2628.53,{},212172,1,"""Europe""" +2024-05-24,93531,6128,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1451.92,{},116223,1,"""Asia""" +2023-07-05,93532,1312,"[\""Laptop\""]",998.73,{},272727,1,"""Asia""" +2024-11-01,93533,6298,"[\""Tablet\""]",238.46,"{\""seasonal\"": \""13%\""}",183517,1,"""Europe""" +2023-08-08,93534,3595,"[\""Monitor\"", \""Phone\""]",3575.84,{},105816,0,"""North America""" +2023-10-03,93535,7767,"[\""Charger\""]",3802.33,"{\""seasonal\"": \""6%\""}",39346,0,"""Europe""" +2023-11-22,93536,4666,"[\""Monitor\""]",4412.26,"{\"": \""22%\""}",96708,1,"""South America""" +2023-04-10,93537,7717,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2779.07,"{\""promo\"": \""8%\""}",263546,0,"""Africa""" +2023-10-16,93538,4127,"[\""Headphones\""]",3480.05,"{\""promo\"": \""24%\""}",156728,0,"""Africa""" +2024-03-07,93539,4032,"[\""Keyboard\"", \""Monitor\""]",1443.53,{},24846,0,"""Europe""" +2024-04-04,93540,7207,"[\""Wireless Mouse\""]",1130.59,{},282226,0,"""Europe""" +2023-08-04,93541,6451,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4799.39,"{\"": \""6%\""}",26788,0,"""Europe""" +2023-06-23,93542,4128,"[\""Wireless Mouse\""]",4443.57,{},38981,1,"""Europe""" +2024-11-17,93543,8960,"[\""Headphones\""]",2399.57,"{\""promo\"": \""8%\""}",274000,0,"""Asia""" +2023-04-07,93544,4959,"[\""Charger\"", \""Keyboard\""]",3500.96,"{\""promo\"": \""22%\""}",83380,1,"""South America""" +2023-08-26,93545,6031,"[\""Charger\"", \""Keyboard\""]",2619.52,{},67511,1,"""South America""" +2024-03-02,93546,6379,"[\""Charger\"", \""Phone\""]",3408.58,"{\""loyalty\"": \""20%\""}",65205,0,"""Africa""" +2024-06-16,93547,263,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",3976.39,{},240292,0,"""Africa""" +2023-10-18,93548,5981,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",2831.03,{},192973,0,"""Asia""" +2023-11-22,93549,8471,"[\""Laptop\"", \""Wireless Mouse\""]",4119.76,"{\""promo\"": \""23%\""}",103055,0,"""North America""" +2023-11-12,93550,7681,"[\""Phone\""]",4047.47,"{\""promo\"": \""28%\""}",26214,1,"""Asia""" +2024-12-17,93551,5662,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",1368.04,"{\""loyalty\"": \""10%\""}",20847,0,"""Europe""" +2024-05-25,93552,1833,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1326.37,"{\""seasonal\"": \""18%\""}",86015,1,"""Europe""" +2023-08-07,93553,5559,"[\""Phone\""]",2858.64,"{\""promo\"": \""18%\""}",11587,1,"""South America""" +2023-02-09,93554,7613,"[\""Charger\"", \""Keyboard\""]",4688.83,"{\""loyalty\"": \""6%\""}",259098,0,"""Africa""" +2023-11-03,93555,8749,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",4996.16,"{\""seasonal\"": \""27%\""}",179475,0,"""Africa""" +2024-10-10,93556,6769,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",775.27,"{\""seasonal\"": \""24%\""}",38650,1,"""North America""" +2024-03-21,93557,6970,"[\""Wireless Mouse\""]",296.5,{},298731,0,"""Europe""" +2023-07-13,93558,5833,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",762.74,"{\""loyalty\"": \""7%\""}",86540,0,"""South America""" +2024-05-31,93559,9447,"[\""Monitor\"", \""Headphones\""]",3811.69,{},273876,0,"""Asia""" +2023-03-15,93560,3261,"[\""Monitor\""]",438.69,{},202599,1,"""Africa""" +2023-10-17,93561,9056,"[\""Laptop\"", \""Monitor\""]",858.57,{},47779,0,"""North America""" +2023-02-20,93562,6420,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",4417.25,{},163148,1,"""Asia""" +2023-11-23,93563,9262,"[\""Wireless Mouse\"", \""Phone\""]",1642.96,{},204373,0,"""Europe""" +2023-11-13,93564,4986,"[\""Charger\""]",1988.52,"{\""loyalty\"": \""27%\""}",270190,0,"""North America""" +2024-10-06,93565,5542,"[\""Keyboard\"", \""Monitor\""]",107.39,"{\""seasonal\"": \""22%\""}",133307,1,"""Asia""" +2024-09-01,93566,5764,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4996.96,"{\""loyalty\"": \""9%\""}",185419,0,"""South America""" +2023-08-09,93567,4231,"[\""Keyboard\""]",4690.74,{},288583,0,"""North America""" +2024-09-27,93568,1643,"[\""Phone\"", \""Tablet\""]",4136.08,"{\""loyalty\"": \""9%\""}",119324,1,"""South America""" +2023-12-06,93569,7268,"[\""Laptop\"", \""Headphones\""]",4825.97,{},258290,0,"""Asia""" +2024-07-22,93570,3718,"[\""Monitor\""]",3699.47,{},211903,0,"""Africa""" +2024-02-08,93571,6509,"[\""Tablet\"", \""Keyboard\""]",3299.0,"{\""loyalty\"": \""25%\""}",249480,0,"""South America""" +2024-08-07,93572,7795,"[\""Tablet\"", \""Monitor\""]",728.99,"{\""loyalty\"": \""21%\""}",25045,1,"""Africa""" +2024-05-19,93573,700,"[\""Phone\""]",4297.68,"{\""promo\"": \""14%\""}",222311,1,"""Asia""" +2023-01-22,93574,7363,"[\""Laptop\""]",1759.71,"{\""seasonal\"": \""26%\""}",48344,0,"""Europe""" +2023-04-13,93575,5028,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4490.68,{},285927,1,"""North America""" +2023-05-30,93576,4940,"[\""Monitor\"", \""Laptop\"", \""Wireless Mouse\""]",3306.74,{},295756,1,"""South America""" +2023-03-16,93577,8139,"[\""Wireless Mouse\""]",4275.26,"{\""seasonal\"": \""27%\""}",67133,0,"""Africa""" +2024-04-24,93578,1562,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2535.8,{},257217,0,"""Africa""" +2023-03-19,93579,4289,"[\""Wireless Mouse\""]",3496.99,{},172621,0,"""North America""" +2023-11-17,93580,846,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3175.75,{},195093,0,"""Asia""" +2024-12-20,93581,9049,"[\""Tablet\"", \""Keyboard\""]",1336.74,"{\""seasonal\"": \""19%\""}",118645,1,"""Asia""" +2024-09-06,93582,1057,"[\""Headphones\""]",4864.9,"{\""promo\"": \""15%\""}",30177,1,"""Africa""" +2024-08-19,93583,2051,"[\""Tablet\""]",2260.73,{},47279,0,"""Africa""" +2024-06-18,93584,5653,"[\""Laptop\"", \""Wireless Mouse\""]",4218.69,{},17065,0,"""North America""" +2024-10-12,93585,3278,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",4584.43,{},272750,1,"""North America""" +2024-12-23,93586,1516,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2357.1,{},253606,1,"""Africa""" +2024-07-19,93587,3343,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2713.68,"{\""seasonal\"": \""21%\""}",186479,1,"""Europe""" +2024-10-10,93588,3333,"[\""Laptop\""]",3457.29,{},220220,0,"""North America""" +2023-09-04,93589,5090,"[\""Laptop\"", \""Charger\""]",1675.02,{},112785,1,"""Asia""" +2024-01-13,93590,6865,"[\""Charger\""]",753.72,{},237087,1,"""Europe""" +2023-01-28,93591,2655,"[\""Phone\"", \""Laptop\""]",1101.06,{},273437,1,"""Africa""" +2024-03-29,93592,3748,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3875.41,{},198955,1,"""Europe""" +2024-11-08,93593,407,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",630.56,{},259075,1,"""Asia""" +2024-10-19,93594,6798,"[\""Wireless Mouse\"", \""Headphones\""]",494.26,"{\""loyalty\"": \""28%\""}",130190,1,"""Asia""" +2023-12-14,93595,6866,"[\""Keyboard\""]",4450.3,"{\""loyalty\"": \""25%\""}",80617,0,"""Europe""" +2024-02-13,93596,1177,"[\""Keyboard\""]",1037.0,"{\""loyalty\"": \""7%\""}",157257,1,"""Europe""" +2024-01-17,93597,2594,"[\""Phone\"", \""Charger\""]",203.59,"{\""seasonal\"": \""20%\""}",144341,1,"""North America""" +2023-03-21,93598,7889,"[\""Phone\"", \""Tablet\""]",2382.99,"{\""seasonal\"": \""27%\""}",219857,0,"""Africa""" +2023-01-08,93599,8513,"[\""Tablet\""]",481.74,{},247807,0,"""South America""" +2023-06-20,93600,7241,"[\""Tablet\"", \""Keyboard\""]",4720.19,{},42021,0,"""Europe""" +2023-07-08,93601,2471,"[\""Tablet\""]",967.48,"{\""loyalty\"": \""13%\""}",34206,0,"""Asia""" +2023-08-13,93602,6780,"[\""Headphones\""]",1298.4,{},179779,1,"""Europe""" +2023-06-04,93603,2666,"[\""Laptop\""]",1001.58,"{\""promo\"": \""28%\""}",257210,0,"""Asia""" +2023-05-07,93604,2157,"[\""Tablet\""]",89.92,"{\""promo\"": \""24%\""}",218127,1,"""Europe""" +2024-09-07,93605,1007,"[\""Laptop\""]",2270.77,{},201604,1,"""Africa""" +2023-08-06,93606,3427,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4297.8,{},58023,1,"""Asia""" +2023-09-16,93607,8501,"[\""Headphones\""]",3363.99,"{\""promo\"": \""27%\""}",244728,0,"""North America""" +2024-03-10,93608,8658,"[\""Laptop\"", \""Keyboard\""]",116.33,{},61561,0,"""South America""" +2023-09-07,93609,850,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",1538.24,{},239132,1,"""North America""" +2023-11-11,93610,9766,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",52.22,{},291497,0,"""South America""" +2024-10-11,93611,9219,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",4561.4,{},47763,1,"""Africa""" +2023-04-15,93612,2084,"[\""Monitor\""]",109.18,{},98279,0,"""Europe""" +2023-05-03,93613,1315,"[\""Charger\""]",2657.88,"{\""seasonal\"": \""18%\""}",198667,1,"""Africa""" +2023-09-30,93614,1617,"[\""Phone\"", \""Keyboard\""]",591.91,{},216732,0,"""Europe""" +2023-10-03,93615,8639,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4992.65,{},137529,0,"""Europe""" +2023-10-13,93616,8787,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3923.83,{},227433,0,"""Asia""" +2023-10-11,93617,6006,"[\""Monitor\"", \""Phone\""]",4200.69,"{\""promo\"": \""23%\""}",264516,1,"""South America""" +2023-02-12,93618,9571,"[\""Headphones\""]",3391.47,"{\""seasonal\"": \""9%\""}",68821,1,"""South America""" +2023-11-06,93619,3165,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",2026.97,{},159588,0,"""Asia""" +2023-05-15,93620,3710,"[\""Laptop\"", \""Phone\""]",223.24,{},15295,1,"""Africa""" +2023-06-18,93621,6120,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3358.47,"{\""seasonal\"": \""29%\""}",174506,1,"""Africa""" +2024-05-07,93622,8525,"[\""Headphones\"", \""Charger\""]",2065.1,"{\""seasonal\"": \""6%\""}",52433,0,"""Europe""" +2024-07-15,93623,1075,"[\""Keyboard\"", \""Wireless Mouse\""]",1903.97,{},35301,0,"""Africa""" +2023-10-27,93624,6385,"[\""Phone\""]",909.87,"{\""promo\"": \""26%\""}",268957,0,"""South America""" +2024-01-23,93625,7141,"[\""Charger\""]",4428.91,"{\""seasonal\"": \""24%\""}",270631,0,"""South America""" +2024-12-19,93626,6824,"[\""Laptop\""]",3462.95,"{\""loyalty\"": \""22%\""}",104400,1,"""South America""" +2023-09-12,93627,8179,"[\""Tablet\""]",511.07,{},178094,0,"""Asia""" +2024-03-08,93628,3971,"[\""Phone\"", \""Wireless Mouse\""]",72.17,"{\""promo\"": \""28%\""}",21683,0,"""Asia""" +2023-10-20,93629,2923,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2971.5,"{\""loyalty\"": \""16%\""}",81098,1,"""Africa""" +2024-11-10,93630,1716,"[\""Monitor\""]",762.21,"{\"": \""23%\""}",80768,1,"""Asia""" +2023-10-26,93631,4241,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4682.01,"{\""promo\"": \""15%\""}",29754,0,"""Africa""" +2024-09-26,93632,566,"[\""Monitor\""]",1966.15,"{\""promo\"": \""18%\""}",217173,1,"""North America""" +2024-09-28,93633,7651,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4120.94,"{\""promo\"": \""28%\""}",219167,1,"""Europe""" +2024-07-07,93634,5973,"[\""Headphones\""]",2824.51,"{\"": \""10%\""}",263159,0,"""Europe""" +2024-10-15,93635,8456,"[\""Charger\"", \""Wireless Mouse\""]",4447.51,{},160475,1,"""Africa""" +2024-06-29,93636,1832,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4000.77,{},187527,0,"""South America""" +2024-04-22,93637,9748,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2823.95,{},203695,0,"""Africa""" +2024-09-23,93638,2580,"[\""Charger\""]",3621.56,"{\"": \""17%\""}",147307,1,"""Europe""" +2024-08-11,93639,830,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4350.85,{},175531,0,"""Europe""" +2024-06-20,93640,3836,"[\""Charger\""]",176.92,"{\""promo\"": \""5%\""}",88693,0,"""South America""" +2024-10-19,93641,1006,"[\""Tablet\"", \""Keyboard\""]",2252.41,"{\""seasonal\"": \""10%\""}",298300,1,"""North America""" +2023-03-13,93642,8205,"[\""Tablet\"", \""Headphones\""]",1522.34,{},215146,1,"""Europe""" +2024-08-23,93643,6752,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",179.38,"{\"": \""26%\""}",166178,1,"""South America""" +2023-08-31,93644,4134,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1618.67,{},120256,0,"""Europe""" +2024-07-19,93645,6947,"[\""Charger\""]",3097.83,"{\""loyalty\"": \""13%\""}",252510,0,"""Africa""" +2024-06-11,93646,9042,"[\""Keyboard\"", \""Headphones\""]",3031.07,"{\""seasonal\"": \""24%\""}",22961,0,"""Asia""" +2023-11-15,93647,7192,"[\""Phone\""]",731.69,"{\"": \""29%\""}",224825,1,"""Asia""" +2024-09-11,93648,4437,"[\""Charger\"", \""Laptop\""]",442.98,"{\"": \""28%\""}",89119,1,"""Asia""" +2023-02-10,93649,7421,"[\""Monitor\""]",4047.51,"{\"": \""10%\""}",128534,0,"""Asia""" +2023-07-17,93650,7135,"[\""Monitor\"", \""Phone\""]",4498.74,"{\""loyalty\"": \""22%\""}",212886,1,"""North America""" +2023-02-12,93651,6022,"[\""Headphones\"", \""Tablet\""]",3327.42,"{\"": \""13%\""}",254090,0,"""Asia""" +2023-07-13,93652,2487,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2394.09,{},246863,1,"""Asia""" +2023-06-25,93653,7685,"[\""Phone\"", \""Laptop\"", \""Charger\""]",4482.92,"{\""seasonal\"": \""28%\""}",65439,1,"""North America""" +2023-08-19,93654,4577,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",2089.0,"{\""loyalty\"": \""9%\""}",58069,0,"""Africa""" +2023-09-22,93655,6031,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2553.56,"{\"": \""21%\""}",216542,0,"""North America""" +2024-07-27,93656,2718,"[\""Wireless Mouse\""]",2795.34,{},159366,0,"""North America""" +2023-06-21,93657,2527,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3248.64,"{\"": \""28%\""}",81736,0,"""Africa""" +2023-03-23,93658,9127,"[\""Tablet\"", \""Phone\""]",3871.83,"{\""loyalty\"": \""8%\""}",257089,0,"""South America""" +2024-09-18,93659,6999,"[\""Monitor\"", \""Laptop\""]",3014.41,"{\""promo\"": \""7%\""}",256957,0,"""Africa""" +2024-07-15,93660,3865,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",2672.59,"{\"": \""21%\""}",29557,1,"""Asia""" +2024-11-03,93661,1365,"[\""Wireless Mouse\""]",4423.0,"{\""loyalty\"": \""16%\""}",169411,0,"""Europe""" +2024-06-03,93662,8448,"[\""Charger\"", \""Laptop\""]",2860.59,{},222302,0,"""North America""" +2024-07-09,93663,8383,"[\""Monitor\""]",1379.15,{},165758,1,"""North America""" +2024-07-31,93664,9555,"[\""Keyboard\"", \""Phone\""]",4031.11,{},86603,1,"""North America""" +2023-08-29,93665,9290,"[\""Headphones\""]",2085.91,"{\"": \""26%\""}",53137,0,"""Europe""" +2024-07-20,93666,5971,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",982.75,{},5484,1,"""South America""" +2023-05-11,93667,7788,"[\""Phone\"", \""Headphones\""]",1206.88,{},279828,0,"""Africa""" +2023-08-06,93668,1258,"[\""Laptop\""]",3649.67,{},74451,1,"""Europe""" +2024-04-10,93669,4179,"[\""Keyboard\""]",365.76,"{\"": \""5%\""}",187584,0,"""Europe""" +2023-10-03,93670,238,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3349.8,"{\""seasonal\"": \""13%\""}",174480,0,"""South America""" +2023-12-16,93671,3882,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3686.69,"{\"": \""8%\""}",95601,1,"""Asia""" +2023-11-04,93672,8308,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4418.07,{},70646,0,"""Africa""" +2023-05-19,93673,4299,"[\""Keyboard\"", \""Headphones\""]",2494.36,"{\""promo\"": \""16%\""}",38571,1,"""North America""" +2023-07-30,93674,7762,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2007.82,{},275141,1,"""South America""" +2024-03-08,93675,4292,"[\""Monitor\"", \""Tablet\""]",2128.84,"{\""seasonal\"": \""21%\""}",192858,1,"""South America""" +2023-11-19,93676,8215,"[\""Wireless Mouse\"", \""Keyboard\""]",892.86,{},211160,0,"""South America""" +2023-05-22,93677,2091,"[\""Charger\"", \""Wireless Mouse\""]",518.22,"{\""seasonal\"": \""19%\""}",69517,0,"""North America""" +2024-05-16,93678,4738,"[\""Wireless Mouse\"", \""Laptop\""]",3101.75,"{\""promo\"": \""23%\""}",136012,0,"""North America""" +2024-08-24,93679,4144,"[\""Tablet\""]",4786.07,{},176956,1,"""Asia""" +2023-10-03,93680,1840,"[\""Phone\""]",4398.73,"{\""seasonal\"": \""27%\""}",243020,0,"""North America""" +2024-09-08,93681,9165,"[\""Charger\"", \""Keyboard\""]",935.52,{},211058,0,"""Europe""" +2023-03-04,93682,3045,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4496.39,{},1400,0,"""North America""" +2023-01-22,93683,9631,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3293.94,{},281001,1,"""Africa""" +2024-07-07,93684,8831,"[\""Wireless Mouse\"", \""Charger\""]",4482.64,{},225103,0,"""Asia""" +2023-02-24,93685,4493,"[\""Headphones\""]",2312.86,"{\"": \""16%\""}",245058,0,"""South America""" +2024-12-07,93686,9906,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3897.67,{},271984,0,"""North America""" +2024-03-22,93687,1247,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2521.05,"{\"": \""14%\""}",253394,0,"""North America""" +2024-08-27,93688,3005,"[\""Headphones\"", \""Phone\""]",848.86,"{\""seasonal\"": \""25%\""}",286308,1,"""Asia""" +2023-09-03,93689,8366,"[\""Headphones\""]",2575.31,"{\""loyalty\"": \""24%\""}",119288,0,"""North America""" +2024-03-29,93690,8090,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",2175.54,"{\""seasonal\"": \""13%\""}",124902,1,"""South America""" +2023-01-24,93691,843,"[\""Laptop\"", \""Monitor\""]",3654.17,{},297953,0,"""South America""" +2023-12-14,93692,6724,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3631.63,"{\""seasonal\"": \""26%\""}",246457,0,"""Europe""" +2023-05-14,93693,4756,"[\""Keyboard\""]",2382.44,"{\""loyalty\"": \""24%\""}",249577,0,"""Europe""" +2024-06-12,93694,9243,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",443.86,{},243333,0,"""Asia""" +2023-08-17,93695,1903,"[\""Keyboard\""]",938.54,{},22126,1,"""South America""" +2023-05-17,93696,5234,"[\""Laptop\""]",678.32,"{\"": \""9%\""}",271644,0,"""Asia""" +2023-08-30,93697,3931,"[\""Monitor\"", \""Phone\""]",56.56,"{\""promo\"": \""16%\""}",8208,1,"""Asia""" +2024-04-09,93698,4197,"[\""Charger\""]",1531.09,{},110408,1,"""North America""" +2024-02-02,93699,9824,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",2907.61,{},79515,0,"""Africa""" +2023-02-21,93700,4508,"[\""Keyboard\""]",3395.03,"{\""promo\"": \""22%\""}",285206,1,"""Europe""" +2023-12-26,93701,3595,"[\""Laptop\"", \""Charger\""]",3229.06,{},66633,0,"""Africa""" +2024-09-26,93702,396,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3556.19,"{\"": \""30%\""}",122262,0,"""Asia""" +2024-05-15,93703,2054,"[\""Wireless Mouse\"", \""Monitor\""]",3504.49,"{\"": \""18%\""}",87581,0,"""Europe""" +2023-07-14,93704,8547,"[\""Laptop\"", \""Keyboard\""]",260.14,"{\""promo\"": \""19%\""}",196409,1,"""Africa""" +2023-12-16,93705,4385,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",3657.04,{},113440,0,"""South America""" +2024-10-11,93706,5402,"[\""Monitor\""]",2481.61,"{\""seasonal\"": \""8%\""}",291194,0,"""Africa""" +2024-07-28,93707,6154,"[\""Headphones\""]",3588.16,"{\"": \""27%\""}",185771,0,"""Europe""" +2024-05-03,93708,9820,"[\""Keyboard\"", \""Wireless Mouse\""]",1598.62,{},19896,0,"""South America""" +2024-03-19,93709,426,"[\""Headphones\""]",2568.88,{},118719,1,"""Africa""" +2023-06-10,93710,5960,"[\""Keyboard\""]",3784.54,"{\""promo\"": \""18%\""}",234709,1,"""Asia""" +2024-01-24,93711,331,"[\""Monitor\""]",3964.86,"{\""loyalty\"": \""27%\""}",122955,0,"""South America""" +2024-03-10,93712,2728,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4789.68,"{\""seasonal\"": \""13%\""}",116383,0,"""North America""" +2023-03-02,93713,7905,"[\""Phone\"", \""Charger\""]",4342.28,"{\""promo\"": \""26%\""}",292165,0,"""Europe""" +2023-02-15,93714,9315,"[\""Phone\"", \""Headphones\""]",1675.4,"{\"": \""17%\""}",268156,0,"""Europe""" +2023-08-29,93715,1167,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3244.2,{},137101,0,"""Africa""" +2024-01-06,93716,400,"[\""Wireless Mouse\""]",3959.72,{},224107,1,"""North America""" +2023-01-08,93717,9670,"[\""Charger\""]",3641.61,"{\""loyalty\"": \""10%\""}",180244,1,"""Europe""" +2023-06-19,93718,6545,"[\""Tablet\"", \""Wireless Mouse\""]",368.28,{},159515,0,"""North America""" +2024-04-10,93719,9173,"[\""Phone\"", \""Keyboard\""]",3973.9,"{\""loyalty\"": \""9%\""}",105684,0,"""South America""" +2024-05-19,93720,3878,"[\""Keyboard\""]",2619.75,{},200488,1,"""Africa""" +2023-06-13,93721,2516,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",303.32,"{\"": \""16%\""}",245063,1,"""Europe""" +2023-12-22,93722,1375,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4827.45,{},261653,1,"""Africa""" +2023-03-10,93723,4409,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",1092.09,"{\""promo\"": \""24%\""}",231800,1,"""North America""" +2024-06-16,93724,4608,"[\""Keyboard\"", \""Headphones\""]",2196.35,{},66817,1,"""South America""" +2023-12-05,93725,8704,"[\""Wireless Mouse\""]",3346.3,"{\""seasonal\"": \""20%\""}",107503,0,"""Africa""" +2023-11-07,93726,3581,"[\""Charger\""]",932.86,{},235524,0,"""Asia""" +2023-09-19,93727,8859,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3563.81,"{\""loyalty\"": \""30%\""}",198814,0,"""Europe""" +2024-08-12,93728,3916,"[\""Phone\"", \""Wireless Mouse\""]",2749.82,"{\""loyalty\"": \""27%\""}",53269,1,"""South America""" +2023-06-14,93729,2361,"[\""Keyboard\""]",87.56,{},96820,0,"""North America""" +2024-12-30,93730,2040,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",860.18,"{\""loyalty\"": \""5%\""}",120563,1,"""Africa""" +2023-08-08,93731,2106,"[\""Tablet\"", \""Headphones\""]",3115.76,{},248956,0,"""Asia""" +2023-04-06,93732,9714,"[\""Monitor\""]",2508.37,"{\""promo\"": \""5%\""}",204939,1,"""Europe""" +2023-10-21,93733,4580,"[\""Wireless Mouse\""]",2619.47,"{\""seasonal\"": \""22%\""}",275421,1,"""Asia""" +2023-09-29,93734,9048,"[\""Phone\"", \""Tablet\""]",4841.21,{},207121,0,"""Africa""" +2023-02-24,93735,9615,"[\""Headphones\""]",1897.54,"{\""promo\"": \""28%\""}",194541,0,"""Europe""" +2024-10-05,93736,2215,"[\""Monitor\""]",2219.22,{},209544,0,"""Europe""" +2023-04-08,93737,3227,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",543.96,{},234872,1,"""Europe""" +2024-04-24,93738,5381,"[\""Keyboard\""]",1118.96,"{\""loyalty\"": \""8%\""}",103846,1,"""Africa""" +2023-06-13,93739,824,"[\""Keyboard\"", \""Wireless Mouse\""]",514.04,{},121743,0,"""South America""" +2024-10-27,93740,4578,"[\""Wireless Mouse\"", \""Headphones\""]",1825.03,"{\""seasonal\"": \""15%\""}",145223,1,"""South America""" +2023-02-02,93741,7850,"[\""Keyboard\"", \""Wireless Mouse\""]",2941.01,{},106002,0,"""Asia""" +2023-07-27,93742,9349,"[\""Wireless Mouse\""]",785.22,"{\""promo\"": \""12%\""}",65782,0,"""Asia""" +2024-06-09,93743,8349,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4053.6,"{\""seasonal\"": \""14%\""}",241838,0,"""Europe""" +2024-06-01,93744,431,"[\""Monitor\"", \""Keyboard\""]",2210.28,{},35494,0,"""North America""" +2024-11-29,93745,1393,"[\""Phone\""]",4970.74,"{\""promo\"": \""17%\""}",39032,1,"""Africa""" +2023-08-14,93746,4038,"[\""Tablet\"", \""Headphones\""]",535.61,{},22895,1,"""Europe""" +2023-09-17,93747,5051,"[\""Charger\""]",2136.69,"{\""promo\"": \""5%\""}",221843,1,"""Africa""" +2023-11-01,93748,2720,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2553.2,{},241469,0,"""Asia""" +2023-04-14,93749,807,"[\""Monitor\""]",1255.38,"{\""loyalty\"": \""10%\""}",288781,0,"""South America""" +2024-11-27,93750,7641,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3688.08,{},81150,1,"""South America""" +2023-01-06,93751,4736,"[\""Charger\""]",1991.43,{},198745,0,"""Asia""" +2023-04-05,93752,5028,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3078.09,"{\""loyalty\"": \""12%\""}",252609,0,"""North America""" +2024-11-13,93753,2746,"[\""Wireless Mouse\""]",1847.77,"{\""promo\"": \""12%\""}",224459,0,"""Asia""" +2023-10-07,93754,6664,"[\""Laptop\""]",4389.92,{},27805,1,"""Asia""" +2023-06-22,93755,3918,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4684.58,{},257083,0,"""South America""" +2024-01-23,93756,3662,"[\""Keyboard\"", \""Phone\""]",2792.28,{},130750,1,"""South America""" +2023-08-06,93757,3692,"[\""Keyboard\""]",4809.17,{},73775,0,"""South America""" +2024-07-22,93758,4521,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4147.8,"{\""promo\"": \""9%\""}",137789,1,"""North America""" +2023-02-12,93759,6470,"[\""Charger\""]",3205.55,{},91060,0,"""Asia""" +2024-09-29,93760,135,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4891.65,{},6854,0,"""South America""" +2023-04-15,93761,4102,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",89.03,{},113525,1,"""Africa""" +2024-03-13,93762,8349,"[\""Keyboard\""]",511.29,"{\""loyalty\"": \""23%\""}",264189,1,"""South America""" +2023-04-28,93763,2043,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4963.74,"{\""promo\"": \""16%\""}",1666,0,"""South America""" +2023-05-21,93764,9858,"[\""Laptop\""]",4281.3,{},9794,0,"""Africa""" +2024-02-16,93765,9499,"[\""Headphones\"", \""Monitor\""]",3451.58,{},180132,0,"""Asia""" +2023-10-16,93766,4637,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3705.2,"{\""loyalty\"": \""21%\""}",39920,0,"""Africa""" +2023-10-22,93767,856,"[\""Charger\"", \""Keyboard\""]",2341.65,{},270157,1,"""Asia""" +2024-10-12,93768,5499,"[\""Headphones\""]",143.97,"{\""seasonal\"": \""15%\""}",237008,1,"""Africa""" +2023-06-03,93769,4554,"[\""Monitor\"", \""Charger\""]",4810.27,"{\""promo\"": \""16%\""}",49353,0,"""Africa""" +2023-10-12,93770,4681,"[\""Phone\"", \""Laptop\"", \""Charger\""]",840.85,{},46048,1,"""Asia""" +2023-01-08,93771,9860,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",871.02,"{\""promo\"": \""14%\""}",276839,0,"""North America""" +2023-04-15,93772,2101,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",1074.78,"{\""loyalty\"": \""11%\""}",234853,1,"""Africa""" +2024-03-30,93773,4974,"[\""Laptop\""]",881.34,{},220327,0,"""Europe""" +2023-02-18,93774,1934,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",831.18,"{\""loyalty\"": \""28%\""}",236995,0,"""North America""" +2024-02-06,93775,4214,"[\""Headphones\""]",3432.59,"{\""promo\"": \""26%\""}",78114,0,"""Asia""" +2024-07-20,93776,1260,"[\""Monitor\"", \""Keyboard\""]",792.74,"{\""seasonal\"": \""19%\""}",291963,1,"""Europe""" +2024-07-15,93777,3823,"[\""Monitor\""]",1756.75,"{\""promo\"": \""5%\""}",11904,0,"""Africa""" +2023-06-07,93778,3395,"[\""Charger\"", \""Laptop\""]",4648.66,"{\""seasonal\"": \""9%\""}",102691,1,"""North America""" +2023-02-21,93779,183,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1399.21,"{\""seasonal\"": \""11%\""}",274536,0,"""Africa""" +2024-04-03,93780,1782,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",4948.35,{},273937,0,"""South America""" +2024-01-04,93781,9831,"[\""Tablet\"", \""Keyboard\""]",1608.81,"{\""promo\"": \""9%\""}",102660,0,"""Europe""" +2024-09-03,93782,2279,"[\""Laptop\""]",1733.25,"{\"": \""22%\""}",55772,0,"""Asia""" +2024-07-16,93783,9305,"[\""Keyboard\"", \""Laptop\""]",1773.63,"{\""seasonal\"": \""15%\""}",44004,1,"""South America""" +2024-02-29,93784,1230,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1994.12,"{\""promo\"": \""13%\""}",51355,0,"""Europe""" +2023-11-05,93785,6646,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4262.53,"{\""seasonal\"": \""12%\""}",4776,0,"""Asia""" +2024-02-19,93786,8155,"[\""Phone\""]",1014.64,"{\""loyalty\"": \""27%\""}",128889,0,"""Europe""" +2023-06-29,93787,869,"[\""Keyboard\"", \""Monitor\""]",883.32,"{\""seasonal\"": \""19%\""}",189342,0,"""South America""" +2023-03-18,93788,3260,"[\""Headphones\"", \""Wireless Mouse\""]",1655.23,"{\""seasonal\"": \""21%\""}",263254,1,"""Africa""" +2024-06-29,93789,3891,"[\""Tablet\""]",3548.62,"{\""seasonal\"": \""6%\""}",75843,1,"""South America""" +2023-05-12,93790,7369,"[\""Phone\""]",2636.1,"{\""loyalty\"": \""19%\""}",41401,0,"""Europe""" +2023-06-05,93791,5051,"[\""Tablet\"", \""Monitor\""]",770.26,"{\""seasonal\"": \""9%\""}",35874,0,"""North America""" +2023-11-28,93792,6776,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",827.4,"{\""loyalty\"": \""17%\""}",182312,0,"""Africa""" +2023-07-02,93793,9434,"[\""Phone\""]",2101.89,"{\""seasonal\"": \""15%\""}",81377,0,"""Africa""" +2023-01-20,93794,7035,"[\""Charger\""]",4828.77,"{\""loyalty\"": \""7%\""}",47459,0,"""Europe""" +2024-02-21,93795,3980,"[\""Tablet\"", \""Charger\""]",4193.54,{},23778,0,"""Asia""" +2024-05-25,93796,1914,"[\""Monitor\"", \""Laptop\""]",4819.08,"{\""loyalty\"": \""11%\""}",63738,1,"""Africa""" +2023-12-29,93797,6917,"[\""Charger\""]",4204.85,{},158241,1,"""North America""" +2023-04-06,93798,6015,"[\""Phone\""]",4971.37,"{\""promo\"": \""6%\""}",281321,1,"""Africa""" +2024-12-10,93799,8656,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4190.87,"{\"": \""23%\""}",88128,0,"""South America""" +2024-02-13,93800,9339,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2210.18,"{\""promo\"": \""13%\""}",166983,0,"""North America""" +2024-08-22,93801,1393,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1264.75,{},87552,1,"""South America""" +2023-07-30,93802,3161,"[\""Monitor\""]",862.77,"{\""loyalty\"": \""24%\""}",46061,0,"""North America""" +2024-07-22,93803,9917,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",2987.15,"{\"": \""14%\""}",77740,0,"""South America""" +2023-12-16,93804,2580,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",3399.35,{},292788,1,"""Africa""" +2023-01-31,93805,9570,"[\""Keyboard\""]",4584.09,"{\""promo\"": \""30%\""}",39427,1,"""North America""" +2024-05-16,93806,4270,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",4440.97,"{\""loyalty\"": \""5%\""}",263005,0,"""Africa""" +2024-10-24,93807,4538,"[\""Phone\"", \""Keyboard\""]",856.63,{},19917,0,"""North America""" +2024-04-12,93808,7881,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2177.53,{},272327,0,"""North America""" +2024-09-12,93809,1979,"[\""Wireless Mouse\""]",3203.16,{},133133,1,"""North America""" +2023-06-16,93810,7365,"[\""Wireless Mouse\"", \""Tablet\""]",3867.29,{},70179,1,"""Africa""" +2024-11-03,93811,9586,"[\""Keyboard\""]",470.44,"{\""promo\"": \""8%\""}",295724,1,"""Africa""" +2023-11-10,93812,9943,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4525.5,"{\""promo\"": \""13%\""}",108984,0,"""Europe""" +2024-10-20,93813,2258,"[\""Wireless Mouse\"", \""Keyboard\""]",3040.71,{},181071,1,"""Asia""" +2024-06-20,93814,7952,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",2164.51,"{\"": \""26%\""}",36057,0,"""Asia""" +2024-12-14,93815,7171,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",1215.67,"{\""promo\"": \""11%\""}",289145,0,"""Europe""" +2023-04-25,93816,8108,"[\""Phone\"", \""Tablet\""]",2164.66,"{\""loyalty\"": \""19%\""}",99602,1,"""Europe""" +2023-07-03,93817,3770,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",590.34,{},231634,0,"""Europe""" +2024-07-03,93818,8182,"[\""Tablet\""]",1877.91,{},169892,0,"""Africa""" +2023-01-12,93819,9686,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3739.02,"{\"": \""18%\""}",260013,0,"""Europe""" +2024-03-03,93820,8041,"[\""Headphones\""]",3057.33,"{\""promo\"": \""29%\""}",123055,1,"""Europe""" +2024-01-24,93821,1317,"[\""Tablet\"", \""Monitor\""]",1712.73,{},290412,1,"""Europe""" +2024-04-10,93822,715,"[\""Laptop\""]",436.55,"{\"": \""20%\""}",79883,0,"""North America""" +2023-05-31,93823,3466,"[\""Keyboard\"", \""Monitor\""]",1624.95,"{\""promo\"": \""19%\""}",186617,0,"""Europe""" +2024-04-20,93824,6549,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1479.24,{},245361,1,"""Europe""" +2024-11-12,93825,8253,"[\""Wireless Mouse\"", \""Keyboard\""]",1158.62,{},264963,0,"""North America""" +2024-08-02,93826,2480,"[\""Tablet\""]",206.64,"{\""promo\"": \""6%\""}",109677,1,"""Europe""" +2024-04-28,93827,5038,"[\""Monitor\""]",2220.23,"{\""seasonal\"": \""22%\""}",5100,0,"""Africa""" +2024-09-27,93828,8578,"[\""Charger\"", \""Phone\"", \""Monitor\""]",3458.78,"{\""loyalty\"": \""28%\""}",224755,1,"""North America""" +2024-07-08,93829,7942,"[\""Tablet\"", \""Laptop\""]",535.9,"{\""seasonal\"": \""28%\""}",276492,1,"""North America""" +2023-11-19,93830,6886,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2304.19,"{\"": \""13%\""}",31587,1,"""North America""" +2023-07-28,93831,7486,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4689.52,{},283433,1,"""North America""" +2023-10-31,93832,9461,"[\""Charger\""]",4991.14,{},92420,1,"""North America""" +2023-12-12,93833,6980,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2071.04,"{\""seasonal\"": \""15%\""}",29618,1,"""North America""" +2023-11-14,93834,4591,"[\""Wireless Mouse\"", \""Tablet\""]",1452.8,{},162310,0,"""Europe""" +2024-06-28,93835,2782,"[\""Phone\"", \""Keyboard\""]",4025.51,{},139940,1,"""Africa""" +2024-04-04,93836,9378,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4522.7,"{\""loyalty\"": \""12%\""}",192991,1,"""Europe""" +2024-12-01,93837,1041,"[\""Charger\"", \""Monitor\""]",1513.14,{},129880,1,"""Africa""" +2023-04-20,93838,1594,"[\""Tablet\""]",4498.83,"{\""seasonal\"": \""25%\""}",164093,0,"""North America""" +2024-11-26,93839,301,"[\""Keyboard\"", \""Headphones\""]",4359.28,{},25759,1,"""Europe""" +2023-02-20,93840,4241,"[\""Phone\""]",2545.54,"{\""loyalty\"": \""23%\""}",250269,1,"""Africa""" +2024-06-05,93841,4242,"[\""Headphones\""]",2195.87,{},72836,1,"""Africa""" +2023-04-22,93842,9045,"[\""Keyboard\""]",3624.77,"{\""loyalty\"": \""6%\""}",251608,0,"""South America""" +2023-07-15,93843,5935,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",687.43,"{\""seasonal\"": \""10%\""}",216861,0,"""Europe""" +2024-05-10,93844,264,"[\""Charger\"", \""Wireless Mouse\""]",1939.28,{},175760,1,"""Asia""" +2024-09-05,93845,6094,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2078.59,{},36809,1,"""North America""" +2024-10-23,93846,8956,"[\""Charger\"", \""Laptop\""]",870.95,{},169414,0,"""South America""" +2024-06-29,93847,2283,"[\""Keyboard\""]",3984.95,"{\"": \""12%\""}",37765,0,"""North America""" +2023-02-24,93848,94,"[\""Monitor\""]",1530.27,{},3731,0,"""North America""" +2023-10-30,93849,5304,"[\""Keyboard\""]",1046.4,{},67338,0,"""Asia""" +2023-06-05,93850,628,"[\""Monitor\""]",3087.2,"{\""loyalty\"": \""24%\""}",83748,0,"""Africa""" +2023-08-25,93851,8594,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",56.34,"{\""seasonal\"": \""21%\""}",258639,1,"""Africa""" +2023-11-30,93852,5045,"[\""Tablet\""]",2745.18,{},245650,1,"""Africa""" +2023-12-16,93853,6635,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",4851.66,"{\""seasonal\"": \""7%\""}",15744,1,"""Europe""" +2024-10-23,93854,8563,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3470.25,{},156303,0,"""North America""" +2023-03-19,93855,4842,"[\""Keyboard\"", \""Phone\""]",3109.25,"{\""seasonal\"": \""5%\""}",149291,0,"""South America""" +2023-03-09,93856,2328,"[\""Charger\""]",4469.1,"{\""promo\"": \""11%\""}",193903,0,"""Africa""" +2024-07-02,93857,3964,"[\""Tablet\"", \""Headphones\""]",3479.07,"{\"": \""24%\""}",84514,0,"""Europe""" +2024-03-30,93858,4246,"[\""Headphones\""]",138.5,{},226710,0,"""Africa""" +2024-03-13,93859,6135,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",4239.54,{},67738,0,"""Africa""" +2024-02-27,93860,5756,"[\""Charger\"", \""Phone\"", \""Laptop\""]",518.9,{},285181,1,"""Europe""" +2024-05-17,93861,9148,"[\""Monitor\"", \""Laptop\""]",2643.88,{},209002,0,"""North America""" +2024-01-09,93862,2103,"[\""Wireless Mouse\""]",3927.88,"{\""loyalty\"": \""9%\""}",102489,1,"""Europe""" +2023-08-21,93863,2840,"[\""Phone\""]",2782.8,{},216153,1,"""Europe""" +2024-06-06,93864,6462,"[\""Monitor\""]",2262.27,"{\""promo\"": \""26%\""}",39039,1,"""North America""" +2023-12-04,93865,5820,"[\""Tablet\"", \""Wireless Mouse\""]",4348.91,"{\""loyalty\"": \""13%\""}",114417,0,"""Europe""" +2023-07-13,93866,5062,"[\""Tablet\"", \""Keyboard\""]",4081.07,"{\"": \""16%\""}",41999,0,"""South America""" +2023-02-05,93867,5733,"[\""Monitor\""]",4451.04,{},135841,0,"""Europe""" +2023-04-20,93868,3357,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",381.48,"{\""seasonal\"": \""8%\""}",279031,1,"""Asia""" +2023-03-27,93869,6555,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",3846.49,"{\"": \""22%\""}",166387,0,"""Europe""" +2023-08-16,93870,183,"[\""Headphones\"", \""Monitor\""]",2428.4,{},205546,1,"""Asia""" +2024-06-29,93871,1499,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1298.99,{},161487,0,"""Europe""" +2023-08-11,93872,1907,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1172.14,{},77242,0,"""Africa""" +2023-10-18,93873,7455,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1320.86,"{\""seasonal\"": \""29%\""}",177908,0,"""Asia""" +2023-10-22,93874,7955,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3644.93,{},214925,0,"""Asia""" +2024-10-27,93875,4754,"[\""Laptop\""]",4991.6,{},278540,0,"""North America""" +2023-06-13,93876,3629,"[\""Phone\"", \""Charger\"", \""Headphones\""]",4272.15,{},171813,1,"""South America""" +2024-02-06,93877,6331,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4702.85,{},103478,0,"""North America""" +2023-04-18,93878,8868,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2600.53,"{\""promo\"": \""30%\""}",254343,1,"""Europe""" +2024-04-04,93879,1749,"[\""Monitor\"", \""Charger\""]",2538.53,"{\""loyalty\"": \""22%\""}",104328,1,"""Europe""" +2023-02-28,93880,9821,"[\""Headphones\"", \""Keyboard\""]",3263.45,{},22912,0,"""Africa""" +2024-05-12,93881,4424,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",4831.78,"{\""loyalty\"": \""13%\""}",95675,0,"""Asia""" +2024-10-11,93882,4290,"[\""Phone\"", \""Keyboard\""]",3389.61,{},73114,1,"""Europe""" +2023-02-03,93883,2587,"[\""Phone\"", \""Charger\""]",4995.53,"{\""loyalty\"": \""18%\""}",149998,1,"""Africa""" +2023-04-21,93884,6414,"[\""Tablet\"", \""Wireless Mouse\""]",538.18,{},240035,1,"""Africa""" +2024-12-31,93885,8236,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",385.63,"{\""loyalty\"": \""14%\""}",65052,0,"""North America""" +2024-04-05,93886,1737,"[\""Tablet\""]",4934.16,"{\""promo\"": \""26%\""}",174751,0,"""North America""" +2023-11-15,93887,8331,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1350.19,"{\"": \""30%\""}",203133,1,"""South America""" +2024-03-03,93888,4072,"[\""Laptop\""]",1782.02,"{\"": \""11%\""}",165103,1,"""Asia""" +2024-10-21,93889,5226,"[\""Tablet\""]",2302.36,"{\""loyalty\"": \""28%\""}",296149,0,"""Africa""" +2024-10-04,93890,9532,"[\""Charger\"", \""Phone\""]",624.72,"{\""loyalty\"": \""29%\""}",69787,0,"""South America""" +2024-04-27,93891,7730,"[\""Charger\""]",3103.71,"{\""promo\"": \""14%\""}",184121,0,"""Europe""" +2024-06-29,93892,9698,"[\""Headphones\""]",855.04,{},82117,0,"""South America""" +2024-09-10,93893,4788,"[\""Headphones\""]",3359.52,{},90320,1,"""Europe""" +2023-07-04,93894,7399,"[\""Laptop\"", \""Headphones\""]",2590.14,{},247822,1,"""Asia""" +2024-01-26,93895,640,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1944.59,"{\""seasonal\"": \""16%\""}",258023,1,"""Asia""" +2024-06-30,93896,5435,"[\""Headphones\"", \""Keyboard\""]",2094.98,"{\""loyalty\"": \""11%\""}",294782,1,"""Africa""" +2024-11-02,93897,8507,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3847.88,"{\""loyalty\"": \""16%\""}",97157,0,"""Africa""" +2024-01-20,93898,3778,"[\""Wireless Mouse\"", \""Phone\""]",4497.85,"{\""promo\"": \""19%\""}",281980,0,"""North America""" +2023-08-14,93899,5131,"[\""Tablet\""]",2600.74,{},191482,0,"""Asia""" +2023-07-24,93900,4483,"[\""Wireless Mouse\""]",2061.46,"{\""promo\"": \""12%\""}",280131,0,"""Africa""" +2023-08-29,93901,2874,"[\""Keyboard\""]",3927.47,"{\""promo\"": \""21%\""}",89318,0,"""South America""" +2024-11-11,93902,3519,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",725.47,"{\""seasonal\"": \""29%\""}",285647,1,"""South America""" +2023-07-07,93903,7352,"[\""Laptop\""]",3984.99,{},210154,1,"""North America""" +2023-03-10,93904,5040,"[\""Monitor\""]",1129.63,{},288781,0,"""Europe""" +2023-06-29,93905,3301,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3982.45,{},298768,0,"""Europe""" +2023-04-12,93906,2451,"[\""Monitor\""]",4251.09,"{\""promo\"": \""8%\""}",52330,0,"""Europe""" +2024-12-14,93907,1850,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4389.53,{},129996,1,"""Africa""" +2024-12-03,93908,9615,"[\""Laptop\""]",1034.17,"{\""seasonal\"": \""14%\""}",158576,0,"""Asia""" +2023-09-26,93909,6273,"[\""Wireless Mouse\""]",3041.85,{},122666,0,"""Europe""" +2023-07-09,93910,5603,"[\""Wireless Mouse\""]",1112.91,{},25205,0,"""Africa""" +2023-02-17,93911,259,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",4454.34,{},197077,1,"""South America""" +2023-02-01,93912,2733,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",452.97,"{\""promo\"": \""28%\""}",59170,1,"""Africa""" +2023-06-19,93913,9948,"[\""Keyboard\""]",2623.82,"{\"": \""29%\""}",114520,1,"""Europe""" +2024-02-01,93914,5208,"[\""Keyboard\""]",1948.79,"{\"": \""28%\""}",144335,1,"""Africa""" +2023-07-27,93915,2175,"[\""Wireless Mouse\""]",1291.15,{},99630,1,"""Asia""" +2024-06-17,93916,2853,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2989.7,{},252021,0,"""Africa""" +2023-03-24,93917,5465,"[\""Wireless Mouse\""]",4704.06,"{\""seasonal\"": \""22%\""}",161187,0,"""Africa""" +2023-02-20,93918,2213,"[\""Laptop\""]",3785.37,"{\""promo\"": \""22%\""}",113957,0,"""Europe""" +2023-01-10,93919,6572,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",3413.98,"{\""loyalty\"": \""10%\""}",60810,0,"""South America""" +2023-05-15,93920,1893,"[\""Headphones\"", \""Phone\""]",1202.36,{},265136,1,"""North America""" +2023-04-12,93921,8430,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",458.97,"{\""loyalty\"": \""15%\""}",115642,0,"""South America""" +2023-01-25,93922,9794,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1936.09,{},3549,0,"""South America""" +2023-06-22,93923,6552,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3493.24,{},261235,1,"""North America""" +2024-06-23,93924,4361,"[\""Keyboard\"", \""Charger\""]",2216.17,{},27397,0,"""South America""" +2024-11-18,93925,123,"[\""Headphones\""]",3985.08,{},126399,0,"""Europe""" +2023-06-28,93926,5499,"[\""Laptop\""]",2684.37,{},230273,1,"""Europe""" +2023-11-25,93927,7918,"[\""Monitor\"", \""Wireless Mouse\""]",3322.85,"{\""promo\"": \""25%\""}",4197,1,"""Africa""" +2023-09-01,93928,3270,"[\""Headphones\"", \""Keyboard\""]",622.13,"{\""loyalty\"": \""13%\""}",5974,1,"""Africa""" +2024-01-12,93929,755,"[\""Charger\""]",3750.63,"{\"": \""28%\""}",71983,1,"""Europe""" +2023-05-04,93930,9809,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3432.87,{},288343,1,"""North America""" +2024-02-29,93931,9052,"[\""Keyboard\""]",96.79,"{\""promo\"": \""23%\""}",131370,1,"""Africa""" +2023-10-14,93932,7372,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",847.23,{},298308,0,"""North America""" +2024-12-02,93933,1141,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4258.24,"{\""seasonal\"": \""17%\""}",34972,0,"""Africa""" +2023-01-06,93934,8003,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2066.15,"{\""loyalty\"": \""13%\""}",98200,0,"""Africa""" +2023-06-09,93935,2617,"[\""Tablet\"", \""Headphones\""]",492.86,"{\""seasonal\"": \""8%\""}",286978,0,"""North America""" +2023-01-15,93936,6868,"[\""Phone\""]",615.54,"{\""loyalty\"": \""26%\""}",92668,0,"""South America""" +2023-07-07,93937,869,"[\""Monitor\"", \""Tablet\""]",1147.02,{},33816,1,"""Europe""" +2023-12-06,93938,6617,"[\""Phone\""]",1855.33,{},181166,1,"""South America""" +2023-02-01,93939,1950,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1647.78,{},86875,1,"""South America""" +2024-12-17,93940,5159,"[\""Laptop\""]",1485.55,{},288731,1,"""North America""" +2024-05-29,93941,6689,"[\""Keyboard\"", \""Laptop\""]",2299.72,"{\"": \""11%\""}",46425,1,"""Africa""" +2023-12-18,93942,5921,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3596.28,"{\"": \""14%\""}",108469,0,"""Asia""" +2024-03-04,93943,6448,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2795.95,{},168153,1,"""North America""" +2023-11-25,93944,7545,"[\""Tablet\""]",2376.81,"{\""loyalty\"": \""14%\""}",176209,0,"""Europe""" +2023-12-18,93945,4159,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",2462.04,{},67616,0,"""North America""" +2023-08-30,93946,1638,"[\""Wireless Mouse\"", \""Charger\""]",4979.91,"{\""seasonal\"": \""20%\""}",226470,1,"""Africa""" +2023-12-19,93947,7486,"[\""Phone\"", \""Tablet\""]",4436.59,{},180578,1,"""Africa""" +2023-05-08,93948,6634,"[\""Keyboard\"", \""Wireless Mouse\""]",2798.77,{},186326,0,"""North America""" +2024-09-22,93949,5768,"[\""Keyboard\""]",2642.48,{},54440,0,"""Europe""" +2023-03-16,93950,9191,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2495.16,"{\"": \""12%\""}",78059,0,"""Africa""" +2024-11-18,93951,422,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1572.36,"{\""promo\"": \""11%\""}",249784,0,"""North America""" +2024-02-04,93952,6345,"[\""Phone\""]",2037.63,{},215797,1,"""Europe""" +2024-10-25,93953,6603,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",4119.91,"{\""seasonal\"": \""18%\""}",185169,1,"""Europe""" +2024-12-20,93954,3599,"[\""Tablet\"", \""Monitor\""]",2928.05,"{\""promo\"": \""13%\""}",77370,1,"""Africa""" +2024-07-24,93955,8109,"[\""Monitor\""]",50.26,{},161538,0,"""South America""" +2023-03-10,93956,2832,"[\""Keyboard\"", \""Wireless Mouse\""]",4611.28,{},263949,0,"""Europe""" +2024-11-03,93957,6668,"[\""Headphones\""]",3577.38,"{\"": \""24%\""}",258671,1,"""Europe""" +2023-05-05,93958,247,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2349.67,"{\""seasonal\"": \""19%\""}",128557,1,"""North America""" +2024-02-08,93959,5387,"[\""Phone\"", \""Tablet\""]",1628.73,{},217164,0,"""South America""" +2024-04-16,93960,2719,"[\""Laptop\"", \""Monitor\""]",3685.99,"{\""seasonal\"": \""27%\""}",17886,1,"""South America""" +2024-09-22,93961,3949,"[\""Charger\"", \""Headphones\""]",1960.73,"{\""loyalty\"": \""6%\""}",176836,0,"""North America""" +2024-09-17,93962,9842,"[\""Headphones\"", \""Phone\""]",514.06,"{\""seasonal\"": \""8%\""}",70347,1,"""South America""" +2024-06-14,93963,661,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",731.02,"{\""promo\"": \""23%\""}",80993,0,"""North America""" +2024-04-06,93964,3020,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3626.87,"{\""loyalty\"": \""23%\""}",191591,0,"""South America""" +2024-10-04,93965,7915,"[\""Phone\"", \""Tablet\""]",3922.9,"{\""seasonal\"": \""28%\""}",184451,1,"""North America""" +2023-02-22,93966,4388,"[\""Charger\""]",948.67,{},102494,1,"""Asia""" +2023-01-07,93967,1933,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",4371.57,"{\""loyalty\"": \""8%\""}",27260,0,"""Africa""" +2023-04-21,93968,1580,"[\""Keyboard\"", \""Laptop\""]",3904.08,{},246304,1,"""North America""" +2024-03-25,93969,8140,"[\""Keyboard\""]",4608.06,"{\""promo\"": \""28%\""}",118671,0,"""South America""" +2023-09-02,93970,4234,"[\""Headphones\""]",2498.55,"{\""seasonal\"": \""15%\""}",176278,1,"""Asia""" +2024-07-23,93971,5242,"[\""Charger\""]",2839.63,{},23737,0,"""Asia""" +2023-12-31,93972,949,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4110.96,{},127023,1,"""Africa""" +2024-06-07,93973,4563,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",1794.57,"{\"": \""28%\""}",141727,0,"""Africa""" +2024-04-07,93974,1188,"[\""Laptop\"", \""Keyboard\""]",3967.95,{},256702,1,"""North America""" +2023-10-29,93975,2249,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1743.43,{},264449,1,"""North America""" +2023-06-13,93976,7644,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",1148.29,{},75689,0,"""Asia""" +2024-01-30,93977,3891,"[\""Charger\""]",1332.34,"{\"": \""17%\""}",25219,0,"""Africa""" +2023-05-26,93978,732,"[\""Headphones\""]",3464.91,{},178698,0,"""South America""" +2023-04-17,93979,8591,"[\""Charger\""]",398.27,{},222426,1,"""North America""" +2024-04-14,93980,7028,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1480.25,"{\""seasonal\"": \""28%\""}",206388,0,"""South America""" +2023-05-19,93981,8943,"[\""Laptop\""]",2865.45,"{\""seasonal\"": \""22%\""}",208871,1,"""South America""" +2023-03-21,93982,5241,"[\""Laptop\"", \""Monitor\""]",4255.49,"{\""promo\"": \""20%\""}",223159,0,"""Asia""" +2023-09-14,93983,7297,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4337.56,{},195429,0,"""Asia""" +2024-12-08,93984,7197,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",4711.64,{},119689,1,"""South America""" +2024-12-13,93985,9078,"[\""Wireless Mouse\""]",4259.27,"{\""promo\"": \""12%\""}",282635,0,"""North America""" +2024-12-04,93986,687,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4958.11,{},26657,0,"""Africa""" +2023-08-14,93987,8366,"[\""Monitor\"", \""Tablet\""]",1532.07,"{\""promo\"": \""26%\""}",46162,1,"""Africa""" +2024-12-19,93988,7287,"[\""Phone\"", \""Tablet\""]",2050.1,{},129599,0,"""Europe""" +2024-04-23,93989,7810,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",2254.42,"{\""seasonal\"": \""15%\""}",160176,0,"""North America""" +2024-12-22,93990,7030,"[\""Laptop\""]",2536.02,{},48244,1,"""Europe""" +2023-06-05,93991,5275,"[\""Monitor\"", \""Phone\""]",2924.75,"{\"": \""15%\""}",44953,0,"""Europe""" +2024-09-27,93992,7867,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4453.57,{},292469,1,"""Africa""" +2023-07-06,93993,2286,"[\""Tablet\""]",3353.54,"{\""promo\"": \""26%\""}",296029,0,"""South America""" +2024-11-27,93994,1291,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",3663.28,{},277766,1,"""South America""" +2023-04-24,93995,3730,"[\""Headphones\"", \""Monitor\""]",4148.25,"{\""seasonal\"": \""22%\""}",230620,0,"""Europe""" +2023-07-31,93996,851,"[\""Charger\""]",1994.02,{},196224,1,"""Africa""" +2024-03-18,93997,5966,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4017.02,{},121461,1,"""Europe""" +2023-05-07,93998,2018,"[\""Tablet\""]",1113.02,"{\""seasonal\"": \""25%\""}",222729,1,"""Asia""" +2023-06-30,93999,143,"[\""Charger\""]",1593.41,{},119287,1,"""Europe""" +2023-06-02,94000,5634,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4857.16,{},91130,1,"""North America""" +2023-09-25,94001,8596,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",1978.38,"{\""promo\"": \""5%\""}",2670,0,"""North America""" +2023-12-24,94002,2007,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",330.33,{},25303,0,"""South America""" +2023-05-13,94003,1657,"[\""Monitor\"", \""Laptop\""]",4574.53,{},217561,0,"""Asia""" +2024-06-05,94004,6163,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4923.4,"{\""seasonal\"": \""13%\""}",226816,0,"""North America""" +2023-09-16,94005,8829,"[\""Charger\"", \""Tablet\""]",3751.45,{},173008,1,"""South America""" +2024-10-30,94006,3876,"[\""Headphones\"", \""Laptop\""]",823.86,"{\""loyalty\"": \""10%\""}",75078,1,"""Europe""" +2024-12-18,94007,8551,"[\""Charger\"", \""Tablet\""]",2205.38,"{\""promo\"": \""17%\""}",57839,1,"""Asia""" +2024-03-19,94008,8962,"[\""Tablet\""]",396.47,{},3415,0,"""Europe""" +2023-06-11,94009,8158,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1811.7,"{\"": \""7%\""}",133598,1,"""Africa""" +2024-10-05,94010,1229,"[\""Tablet\"", \""Monitor\""]",4745.92,"{\"": \""13%\""}",145767,0,"""South America""" +2023-08-12,94011,5879,"[\""Keyboard\"", \""Phone\""]",1176.52,{},163940,0,"""South America""" +2024-12-21,94012,1418,"[\""Keyboard\"", \""Phone\""]",3243.98,"{\""seasonal\"": \""30%\""}",125388,1,"""South America""" +2023-07-14,94013,7025,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",286.56,"{\""seasonal\"": \""20%\""}",88262,1,"""Africa""" +2023-05-07,94014,702,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",722.6,{},41946,1,"""Africa""" +2023-11-14,94015,3773,"[\""Headphones\"", \""Phone\"", \""Charger\""]",2190.09,{},49682,0,"""South America""" +2023-11-11,94016,1915,"[\""Keyboard\""]",3028.34,"{\""seasonal\"": \""14%\""}",75293,0,"""Europe""" +2024-11-03,94017,5147,"[\""Keyboard\"", \""Phone\""]",368.43,"{\"": \""23%\""}",16822,0,"""Europe""" +2023-06-26,94018,6773,"[\""Tablet\""]",1312.33,{},210543,1,"""North America""" +2024-11-13,94019,9237,"[\""Wireless Mouse\"", \""Laptop\""]",3972.27,{},259596,1,"""Africa""" +2024-06-22,94020,6894,"[\""Monitor\"", \""Wireless Mouse\""]",1586.14,"{\""loyalty\"": \""12%\""}",277955,1,"""Africa""" +2023-10-01,94021,7954,"[\""Laptop\""]",798.83,{},103468,0,"""Europe""" +2024-09-22,94022,2949,"[\""Tablet\"", \""Charger\""]",4804.44,"{\""loyalty\"": \""26%\""}",274005,0,"""Asia""" +2023-01-31,94023,5892,"[\""Keyboard\"", \""Tablet\""]",425.19,{},195476,0,"""Africa""" +2023-07-08,94024,9957,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",2572.01,{},183566,1,"""Africa""" +2023-03-26,94025,8578,"[\""Charger\"", \""Tablet\""]",4205.37,"{\""loyalty\"": \""14%\""}",148603,1,"""Africa""" +2024-03-14,94026,216,"[\""Wireless Mouse\""]",1467.51,"{\""promo\"": \""13%\""}",254933,1,"""South America""" +2024-12-26,94027,8380,"[\""Phone\"", \""Wireless Mouse\""]",854.29,{},271512,1,"""North America""" +2024-11-07,94028,9937,"[\""Phone\""]",1522.36,"{\""promo\"": \""27%\""}",237919,0,"""South America""" +2023-04-21,94029,8071,"[\""Phone\"", \""Charger\""]",3464.19,"{\""seasonal\"": \""9%\""}",52532,1,"""South America""" +2024-04-19,94030,6879,"[\""Phone\""]",205.26,{},34525,0,"""North America""" +2023-09-03,94031,3802,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",3682.57,"{\""seasonal\"": \""17%\""}",104484,1,"""South America""" +2023-12-27,94032,7758,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4580.31,{},253386,1,"""Africa""" +2024-09-03,94033,4453,"[\""Laptop\"", \""Monitor\""]",2877.61,{},176975,1,"""Asia""" +2023-05-19,94034,9394,"[\""Keyboard\""]",4301.54,{},237345,1,"""North America""" +2023-10-17,94035,3095,"[\""Headphones\""]",3750.01,"{\""promo\"": \""24%\""}",60008,0,"""North America""" +2024-11-29,94036,8124,"[\""Charger\""]",4014.76,{},217259,1,"""Africa""" +2024-12-15,94037,8202,"[\""Laptop\""]",173.13,"{\""loyalty\"": \""18%\""}",84483,0,"""Africa""" +2024-12-09,94038,817,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",1845.79,{},43141,0,"""Africa""" +2024-06-26,94039,4784,"[\""Phone\"", \""Keyboard\""]",2186.17,"{\""seasonal\"": \""24%\""}",229707,0,"""Africa""" +2023-12-05,94040,6732,"[\""Monitor\"", \""Headphones\""]",1219.8,"{\"": \""26%\""}",152676,1,"""South America""" +2024-09-09,94041,633,"[\""Laptop\"", \""Headphones\""]",4241.06,{},82093,1,"""Asia""" +2024-04-05,94042,8883,"[\""Headphones\"", \""Monitor\""]",876.51,{},1143,1,"""Africa""" +2023-10-16,94043,68,"[\""Keyboard\"", \""Wireless Mouse\""]",3367.27,{},174825,1,"""North America""" +2023-07-26,94044,7725,"[\""Phone\"", \""Charger\""]",2990.47,{},145046,0,"""South America""" +2024-06-13,94045,2390,"[\""Headphones\"", \""Monitor\""]",929.65,"{\""promo\"": \""27%\""}",172389,0,"""Europe""" +2024-08-01,94046,9445,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",138.77,"{\""promo\"": \""14%\""}",87201,1,"""North America""" +2023-08-11,94047,8166,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3904.24,{},69889,0,"""Africa""" +2023-06-04,94048,7355,"[\""Tablet\""]",1458.63,{},209416,1,"""Europe""" +2023-03-09,94049,1004,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",1802.74,{},223468,1,"""North America""" +2024-07-20,94050,714,"[\""Laptop\"", \""Wireless Mouse\""]",1142.77,"{\"": \""6%\""}",228096,0,"""South America""" +2023-12-10,94051,8885,"[\""Charger\""]",4610.83,{},201141,1,"""South America""" +2023-01-27,94052,5681,"[\""Phone\"", \""Charger\""]",1350.59,{},4968,1,"""Europe""" +2023-05-27,94053,1595,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",609.41,"{\""seasonal\"": \""25%\""}",158013,0,"""South America""" +2023-04-02,94054,485,"[\""Wireless Mouse\"", \""Headphones\""]",4363.79,"{\""promo\"": \""12%\""}",106134,1,"""Africa""" +2023-05-31,94055,5242,"[\""Monitor\""]",2840.24,"{\""seasonal\"": \""27%\""}",173312,0,"""North America""" +2024-09-11,94056,7672,"[\""Monitor\""]",4238.97,{},65253,1,"""Asia""" +2024-11-02,94057,4608,"[\""Monitor\"", \""Headphones\""]",3447.56,{},95006,1,"""North America""" +2024-06-20,94058,5570,"[\""Monitor\""]",872.39,"{\""promo\"": \""30%\""}",71632,0,"""Africa""" +2024-04-19,94059,2628,"[\""Laptop\""]",4034.26,"{\""seasonal\"": \""22%\""}",11825,0,"""Africa""" +2023-06-07,94060,4060,"[\""Keyboard\""]",3205.35,{},223421,1,"""North America""" +2024-12-14,94061,1935,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4775.22,"{\""seasonal\"": \""25%\""}",236483,1,"""Africa""" +2024-02-08,94062,2624,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2348.96,"{\""seasonal\"": \""22%\""}",146361,0,"""Asia""" +2023-12-15,94063,5677,"[\""Keyboard\"", \""Charger\""]",1017.12,{},74799,0,"""Europe""" +2024-02-23,94064,8962,"[\""Phone\"", \""Tablet\""]",816.6,"{\""promo\"": \""15%\""}",45341,1,"""North America""" +2024-03-22,94065,2355,"[\""Headphones\""]",2490.97,"{\""promo\"": \""11%\""}",214112,1,"""Africa""" +2024-07-29,94066,5041,"[\""Monitor\"", \""Phone\""]",450.06,{},38397,1,"""North America""" +2023-11-18,94067,7520,"[\""Phone\"", \""Tablet\""]",1788.36,"{\""seasonal\"": \""27%\""}",127721,0,"""South America""" +2024-11-09,94068,4016,"[\""Tablet\"", \""Monitor\""]",406.36,"{\""seasonal\"": \""10%\""}",276180,1,"""North America""" +2024-04-11,94069,4659,"[\""Phone\"", \""Charger\""]",2597.81,"{\"": \""28%\""}",90483,0,"""South America""" +2023-12-28,94070,1151,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1694.47,"{\"": \""16%\""}",94951,1,"""Africa""" +2023-02-08,94071,1724,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",203.92,{},147824,1,"""Asia""" +2023-09-23,94072,8111,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1947.53,"{\""loyalty\"": \""29%\""}",45181,0,"""South America""" +2024-09-02,94073,208,"[\""Monitor\""]",3551.99,{},110399,0,"""South America""" +2024-05-27,94074,7040,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4150.42,"{\"": \""12%\""}",277253,0,"""Africa""" +2023-07-17,94075,192,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1382.01,"{\""promo\"": \""9%\""}",263633,0,"""Asia""" +2024-05-06,94076,8276,"[\""Charger\"", \""Wireless Mouse\""]",2911.8,"{\""loyalty\"": \""24%\""}",134940,1,"""Africa""" +2023-07-07,94077,6351,"[\""Phone\""]",2174.53,"{\""seasonal\"": \""21%\""}",58442,0,"""Europe""" +2024-04-02,94078,6357,"[\""Wireless Mouse\"", \""Phone\""]",944.32,"{\""loyalty\"": \""13%\""}",218617,0,"""Europe""" +2023-10-24,94079,3426,"[\""Charger\"", \""Keyboard\""]",4028.43,"{\""seasonal\"": \""22%\""}",164761,0,"""South America""" +2023-11-20,94080,1175,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3904.71,{},23106,1,"""Europe""" +2024-06-13,94081,5381,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1436.54,"{\"": \""28%\""}",96442,0,"""North America""" +2023-06-06,94082,2458,"[\""Phone\"", \""Monitor\""]",4383.23,{},89014,0,"""Asia""" +2023-09-28,94083,9518,"[\""Keyboard\"", \""Wireless Mouse\""]",4821.47,"{\""promo\"": \""14%\""}",186144,0,"""Africa""" +2023-04-12,94084,216,"[\""Wireless Mouse\""]",408.56,"{\""loyalty\"": \""6%\""}",42618,0,"""Asia""" +2024-02-08,94085,5572,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3326.01,"{\""promo\"": \""7%\""}",85295,1,"""Europe""" +2023-12-21,94086,8530,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",2013.36,{},145925,0,"""South America""" +2023-07-02,94087,522,"[\""Headphones\""]",4712.93,{},144051,0,"""Asia""" +2023-04-10,94088,2542,"[\""Keyboard\""]",314.31,{},85388,1,"""Africa""" +2024-02-16,94089,8369,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1613.36,{},232179,1,"""Europe""" +2023-07-06,94090,6464,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4352.61,"{\"": \""12%\""}",222169,0,"""Africa""" +2023-07-22,94091,9129,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3331.13,"{\""promo\"": \""8%\""}",270025,0,"""North America""" +2024-01-10,94092,5637,"[\""Wireless Mouse\"", \""Headphones\""]",324.23,"{\""loyalty\"": \""14%\""}",79694,0,"""Africa""" +2024-07-27,94093,1751,"[\""Headphones\"", \""Wireless Mouse\""]",391.55,"{\""seasonal\"": \""17%\""}",157040,0,"""North America""" +2024-04-19,94094,4956,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2805.85,"{\""loyalty\"": \""24%\""}",76852,1,"""North America""" +2024-04-19,94095,5164,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2248.42,{},113850,1,"""Africa""" +2024-08-23,94096,9548,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",3211.87,"{\""seasonal\"": \""20%\""}",297229,0,"""South America""" +2023-12-24,94097,2321,"[\""Monitor\""]",2229.9,"{\"": \""15%\""}",27233,0,"""North America""" +2024-05-17,94098,9404,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4041.58,"{\""seasonal\"": \""24%\""}",245926,1,"""Europe""" +2023-05-02,94099,9113,"[\""Phone\"", \""Tablet\""]",4770.65,{},82645,0,"""North America""" +2023-07-03,94100,690,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",659.48,{},290484,1,"""Europe""" +2023-11-11,94101,278,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1856.11,{},83748,0,"""Africa""" +2023-12-17,94102,5851,"[\""Charger\"", \""Laptop\"", \""Phone\""]",164.26,"{\""promo\"": \""7%\""}",155688,0,"""Africa""" +2023-01-08,94103,6591,"[\""Tablet\""]",4718.55,{},269358,1,"""North America""" +2024-01-31,94104,5999,"[\""Laptop\"", \""Tablet\""]",2314.93,{},170684,1,"""Asia""" +2023-04-24,94105,5870,"[\""Laptop\""]",1748.66,{},151097,0,"""South America""" +2024-05-31,94106,5112,"[\""Laptop\""]",4605.15,"{\""promo\"": \""30%\""}",144254,0,"""South America""" +2023-01-28,94107,169,"[\""Charger\""]",536.29,{},77427,0,"""Asia""" +2023-01-27,94108,9549,"[\""Keyboard\"", \""Phone\""]",4334.41,"{\"": \""22%\""}",196521,0,"""Europe""" +2024-02-29,94109,9173,"[\""Phone\"", \""Charger\""]",3937.35,"{\""loyalty\"": \""30%\""}",211301,1,"""North America""" +2024-07-28,94110,2090,"[\""Wireless Mouse\""]",1211.0,"{\""promo\"": \""13%\""}",81005,1,"""Europe""" +2023-11-20,94111,2556,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",4412.73,{},98959,1,"""South America""" +2024-02-25,94112,7978,"[\""Tablet\""]",1034.25,"{\""promo\"": \""23%\""}",4333,0,"""South America""" +2024-10-10,94113,3736,"[\""Tablet\"", \""Charger\""]",1438.85,{},191554,1,"""Africa""" +2023-09-02,94114,503,"[\""Phone\"", \""Tablet\""]",2420.62,{},19950,0,"""Asia""" +2024-11-26,94115,7254,"[\""Monitor\"", \""Headphones\""]",368.64,{},242351,1,"""Asia""" +2023-08-31,94116,9878,"[\""Headphones\"", \""Tablet\""]",2317.0,{},299954,1,"""Europe""" +2024-09-01,94117,9536,"[\""Monitor\"", \""Phone\""]",3098.99,{},231201,0,"""Asia""" +2024-01-29,94118,7880,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4769.95,"{\""promo\"": \""11%\""}",85104,1,"""Europe""" +2023-01-18,94119,3274,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4879.3,"{\""seasonal\"": \""26%\""}",282095,0,"""Europe""" +2023-12-08,94120,7394,"[\""Charger\""]",61.39,"{\""seasonal\"": \""6%\""}",21026,1,"""Asia""" +2023-07-23,94121,2431,"[\""Tablet\""]",3808.16,{},124876,0,"""Europe""" +2024-02-26,94122,6193,"[\""Tablet\""]",3847.6,"{\""promo\"": \""18%\""}",22304,1,"""Africa""" +2024-10-16,94123,6363,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3592.62,{},86942,0,"""Africa""" +2023-12-31,94124,9307,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1215.37,{},141199,1,"""South America""" +2023-06-05,94125,2859,"[\""Phone\""]",1592.06,"{\""loyalty\"": \""6%\""}",126342,0,"""South America""" +2024-11-02,94126,3137,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4965.69,"{\""seasonal\"": \""19%\""}",265238,1,"""North America""" +2024-10-20,94127,3091,"[\""Tablet\"", \""Wireless Mouse\""]",4726.89,{},68788,0,"""Europe""" +2024-08-01,94128,761,"[\""Charger\""]",2099.38,{},137934,1,"""North America""" +2023-07-30,94129,5398,"[\""Keyboard\""]",4207.37,{},167820,0,"""Europe""" +2024-12-04,94130,974,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1391.51,{},178273,0,"""Europe""" +2024-05-31,94131,5446,"[\""Wireless Mouse\"", \""Charger\""]",2832.5,{},53425,0,"""Africa""" +2023-06-20,94132,6719,"[\""Monitor\"", \""Phone\""]",2756.05,"{\"": \""24%\""}",216257,0,"""South America""" +2024-08-27,94133,7291,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4248.44,{},200150,0,"""Europe""" +2024-08-29,94134,8329,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4324.15,"{\"": \""29%\""}",157601,0,"""Europe""" +2023-02-18,94135,1344,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2684.29,{},98843,1,"""North America""" +2024-10-25,94136,2404,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1392.36,{},186693,1,"""North America""" +2023-11-04,94137,3131,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",4258.32,{},211168,1,"""South America""" +2024-11-24,94138,8076,"[\""Tablet\""]",3825.65,{},224604,0,"""South America""" +2023-04-13,94139,2763,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3573.49,{},37187,1,"""North America""" +2024-09-16,94140,3164,"[\""Phone\"", \""Tablet\""]",3524.48,"{\"": \""13%\""}",238076,0,"""North America""" +2023-05-26,94141,3840,"[\""Monitor\"", \""Laptop\""]",4863.61,"{\""loyalty\"": \""26%\""}",65732,0,"""North America""" +2023-08-11,94142,8911,"[\""Charger\"", \""Tablet\""]",2185.09,{},247595,0,"""Africa""" +2023-12-20,94143,2724,"[\""Laptop\""]",4601.73,{},47500,0,"""North America""" +2024-06-21,94144,2253,"[\""Keyboard\""]",460.12,{},297866,1,"""South America""" +2024-03-21,94145,7448,"[\""Headphones\""]",3831.25,"{\"": \""11%\""}",93822,1,"""Africa""" +2024-02-07,94146,1520,"[\""Laptop\""]",609.63,{},140227,0,"""Asia""" +2023-08-05,94147,7202,"[\""Charger\"", \""Keyboard\""]",1549.78,"{\""promo\"": \""15%\""}",290065,0,"""Africa""" +2024-01-12,94148,3225,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1959.76,"{\""promo\"": \""19%\""}",210519,0,"""Asia""" +2024-09-23,94149,7090,"[\""Charger\""]",1420.86,"{\""loyalty\"": \""8%\""}",86675,1,"""North America""" +2024-12-27,94150,4535,"[\""Monitor\"", \""Laptop\""]",2892.25,{},222183,0,"""North America""" +2024-06-24,94151,356,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",705.82,"{\"": \""6%\""}",12947,0,"""North America""" +2024-12-29,94152,3645,"[\""Wireless Mouse\""]",724.82,{},60359,0,"""North America""" +2023-04-10,94153,7267,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2884.16,{},119677,1,"""Africa""" +2024-09-30,94154,6427,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1490.88,"{\"": \""8%\""}",80929,1,"""South America""" +2023-09-14,94155,1061,"[\""Headphones\"", \""Monitor\""]",1727.2,{},99021,1,"""South America""" +2023-11-25,94156,2686,"[\""Tablet\"", \""Keyboard\""]",238.53,"{\""promo\"": \""9%\""}",120129,1,"""South America""" +2024-08-19,94157,3194,"[\""Keyboard\"", \""Charger\""]",1499.18,"{\""seasonal\"": \""10%\""}",175765,0,"""Africa""" +2024-09-25,94158,5145,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4999.71,{},108311,0,"""North America""" +2024-05-17,94159,1127,"[\""Headphones\"", \""Charger\""]",679.94,"{\""seasonal\"": \""10%\""}",25483,1,"""Asia""" +2024-02-07,94160,1400,"[\""Charger\"", \""Tablet\""]",973.03,{},37632,1,"""Europe""" +2024-03-03,94161,6142,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",2374.23,{},34214,1,"""South America""" +2023-04-23,94162,7647,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4158.83,{},208040,1,"""North America""" +2024-07-18,94163,8138,"[\""Headphones\""]",2144.52,"{\""promo\"": \""25%\""}",32545,0,"""Asia""" +2023-07-07,94164,7036,"[\""Charger\"", \""Tablet\""]",3618.34,"{\""loyalty\"": \""25%\""}",21025,0,"""North America""" +2023-03-11,94165,514,"[\""Tablet\"", \""Charger\""]",3566.21,{},193645,1,"""Europe""" +2023-07-10,94166,9320,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",3536.4,"{\"": \""14%\""}",278099,0,"""Europe""" +2023-01-18,94167,5462,"[\""Headphones\"", \""Wireless Mouse\""]",2556.98,"{\""promo\"": \""17%\""}",22959,1,"""North America""" +2024-09-04,94168,9588,"[\""Wireless Mouse\"", \""Phone\""]",2504.73,{},17152,1,"""Europe""" +2023-09-14,94169,9068,"[\""Headphones\""]",2815.61,{},74754,1,"""South America""" +2023-07-16,94170,2973,"[\""Headphones\"", \""Phone\""]",1724.33,"{\""seasonal\"": \""21%\""}",24005,1,"""Asia""" +2024-09-03,94171,9315,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1262.59,{},244438,0,"""North America""" +2023-09-11,94172,7649,"[\""Monitor\"", \""Tablet\""]",3377.89,"{\""loyalty\"": \""5%\""}",247845,0,"""Africa""" +2023-11-14,94173,3010,"[\""Laptop\""]",645.36,"{\""seasonal\"": \""24%\""}",121832,0,"""Europe""" +2024-12-03,94174,7744,"[\""Keyboard\""]",2405.16,"{\""loyalty\"": \""19%\""}",94618,0,"""Africa""" +2024-08-27,94175,2561,"[\""Keyboard\""]",2560.08,"{\""promo\"": \""16%\""}",210597,0,"""Asia""" +2023-02-05,94176,4839,"[\""Phone\"", \""Charger\""]",1445.73,{},81694,1,"""Asia""" +2024-12-12,94177,4665,"[\""Charger\"", \""Phone\""]",1050.41,"{\""loyalty\"": \""7%\""}",202449,0,"""Europe""" +2024-02-18,94178,480,"[\""Phone\""]",3747.52,"{\""seasonal\"": \""23%\""}",162937,0,"""Africa""" +2023-11-21,94179,1868,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2549.94,{},181006,0,"""South America""" +2023-03-13,94180,7472,"[\""Tablet\""]",1794.96,{},84299,0,"""Africa""" +2024-01-01,94181,3948,"[\""Laptop\"", \""Tablet\""]",2131.18,"{\""loyalty\"": \""23%\""}",139274,1,"""Africa""" +2023-08-05,94182,5263,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2583.73,{},186730,0,"""Europe""" +2024-03-12,94183,6469,"[\""Charger\"", \""Monitor\""]",277.28,{},284468,1,"""Europe""" +2023-12-25,94184,2989,"[\""Phone\""]",162.74,{},150911,1,"""South America""" +2024-09-18,94185,7607,"[\""Charger\""]",965.7,"{\"": \""22%\""}",33716,0,"""Asia""" +2024-03-07,94186,4729,"[\""Monitor\""]",2729.83,"{\"": \""19%\""}",3209,0,"""South America""" +2023-09-12,94187,1659,"[\""Keyboard\""]",114.93,"{\""loyalty\"": \""7%\""}",133312,1,"""Europe""" +2023-03-31,94188,7139,"[\""Laptop\"", \""Charger\""]",3224.95,{},155070,1,"""Asia""" +2024-12-30,94189,5234,"[\""Charger\""]",3578.64,{},196007,1,"""Africa""" +2023-07-05,94190,2444,"[\""Headphones\"", \""Laptop\""]",2313.1,{},159704,0,"""Europe""" +2023-06-10,94191,2492,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",4371.76,"{\""seasonal\"": \""17%\""}",40055,1,"""Africa""" +2023-06-20,94192,9848,"[\""Phone\"", \""Tablet\""]",1958.01,{},280188,1,"""Europe""" +2023-10-10,94193,5345,"[\""Laptop\"", \""Tablet\""]",4723.33,"{\""promo\"": \""26%\""}",13565,1,"""Europe""" +2023-04-08,94194,9075,"[\""Charger\""]",2477.07,{},142722,0,"""Asia""" +2023-06-27,94195,7128,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1211.99,"{\""loyalty\"": \""16%\""}",238314,0,"""North America""" +2023-09-08,94196,3180,"[\""Laptop\"", \""Headphones\""]",905.75,"{\""seasonal\"": \""12%\""}",66713,0,"""Asia""" +2023-12-14,94197,4455,"[\""Wireless Mouse\""]",279.69,{},178751,0,"""South America""" +2024-11-12,94198,6152,"[\""Tablet\"", \""Headphones\""]",3958.29,"{\"": \""13%\""}",195408,1,"""Asia""" +2024-07-27,94199,3479,"[\""Wireless Mouse\""]",2431.21,{},139336,1,"""Africa""" +2024-01-20,94200,9954,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",532.47,"{\"": \""28%\""}",32210,0,"""North America""" +2024-05-18,94201,1508,"[\""Wireless Mouse\"", \""Laptop\""]",390.9,"{\""seasonal\"": \""17%\""}",298018,0,"""Africa""" +2024-01-03,94202,7523,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",2305.58,{},231189,1,"""South America""" +2024-07-06,94203,953,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4089.45,{},51538,1,"""South America""" +2024-12-25,94204,4144,"[\""Headphones\""]",4499.78,"{\""promo\"": \""17%\""}",42444,1,"""North America""" +2024-07-24,94205,7455,"[\""Tablet\""]",3042.52,{},8555,1,"""South America""" +2023-04-04,94206,857,"[\""Wireless Mouse\""]",3650.94,"{\""loyalty\"": \""23%\""}",6766,1,"""South America""" +2024-02-05,94207,5582,"[\""Phone\""]",3507.98,"{\"": \""18%\""}",294226,0,"""Europe""" +2023-12-14,94208,1806,"[\""Tablet\""]",3421.66,"{\""promo\"": \""5%\""}",10118,1,"""South America""" +2023-06-29,94209,9678,"[\""Monitor\""]",3375.49,"{\""loyalty\"": \""13%\""}",203666,1,"""Asia""" +2023-06-17,94210,2738,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3810.53,"{\""promo\"": \""22%\""}",282757,0,"""Africa""" +2023-03-11,94211,650,"[\""Wireless Mouse\""]",3068.23,{},296527,1,"""Africa""" +2024-08-01,94212,7452,"[\""Tablet\"", \""Headphones\""]",2086.49,"{\"": \""23%\""}",190369,1,"""North America""" +2023-06-11,94213,965,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",4391.34,"{\""seasonal\"": \""16%\""}",86963,1,"""South America""" +2023-05-19,94214,332,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",2791.56,{},227020,0,"""Asia""" +2023-10-15,94215,4725,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4634.33,"{\""promo\"": \""7%\""}",150471,1,"""Asia""" +2023-06-01,94216,9597,"[\""Laptop\""]",4658.94,"{\"": \""23%\""}",68631,1,"""South America""" +2023-11-05,94217,3309,"[\""Headphones\"", \""Charger\""]",126.35,"{\""loyalty\"": \""11%\""}",4974,0,"""Europe""" +2023-01-10,94218,7838,"[\""Headphones\""]",546.29,"{\""loyalty\"": \""25%\""}",23030,1,"""Africa""" +2024-10-13,94219,5610,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2557.0,"{\"": \""15%\""}",290527,0,"""South America""" +2023-03-03,94220,7356,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",1120.62,{},91562,1,"""North America""" +2024-06-07,94221,1563,"[\""Charger\""]",1606.23,{},250061,1,"""Africa""" +2024-01-11,94222,7984,"[\""Laptop\""]",2470.23,{},43050,1,"""Europe""" +2024-11-04,94223,3001,"[\""Keyboard\"", \""Tablet\""]",4529.06,"{\"": \""18%\""}",139394,1,"""Africa""" +2023-07-20,94224,8742,"[\""Keyboard\"", \""Phone\""]",1754.19,{},154637,1,"""Africa""" +2023-04-10,94225,8479,"[\""Tablet\"", \""Charger\""]",3493.79,"{\""seasonal\"": \""7%\""}",34484,1,"""Africa""" +2023-10-19,94226,4626,"[\""Tablet\""]",1593.88,"{\""loyalty\"": \""23%\""}",263501,0,"""North America""" +2024-05-19,94227,2003,"[\""Phone\"", \""Tablet\""]",3701.68,"{\""seasonal\"": \""25%\""}",272374,1,"""Africa""" +2023-04-12,94228,6081,"[\""Laptop\"", \""Wireless Mouse\""]",3258.58,"{\""promo\"": \""22%\""}",115483,1,"""South America""" +2023-10-21,94229,4173,"[\""Monitor\"", \""Phone\""]",4373.65,{},224845,1,"""Asia""" +2023-08-20,94230,5819,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",1972.25,{},168276,0,"""North America""" +2023-11-08,94231,7246,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",612.57,{},115503,1,"""North America""" +2023-07-07,94232,7048,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4312.65,"{\""loyalty\"": \""6%\""}",188697,0,"""Europe""" +2023-01-06,94233,8241,"[\""Tablet\""]",1525.14,"{\""loyalty\"": \""11%\""}",150303,1,"""Europe""" +2024-09-24,94234,8792,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3036.7,"{\"": \""10%\""}",37840,0,"""Europe""" +2023-09-12,94235,1664,"[\""Tablet\"", \""Monitor\""]",2597.63,"{\""seasonal\"": \""20%\""}",87308,0,"""Europe""" +2024-08-13,94236,640,"[\""Wireless Mouse\"", \""Charger\""]",2326.89,"{\""seasonal\"": \""24%\""}",9447,0,"""South America""" +2023-11-16,94237,4298,"[\""Laptop\""]",693.21,"{\""promo\"": \""26%\""}",21594,0,"""North America""" +2023-05-31,94238,8414,"[\""Tablet\"", \""Wireless Mouse\""]",1800.97,{},175806,0,"""North America""" +2024-01-20,94239,6459,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",882.91,{},20550,1,"""Europe""" +2023-10-04,94240,4949,"[\""Phone\"", \""Wireless Mouse\""]",369.6,{},246332,0,"""North America""" +2023-01-14,94241,7311,"[\""Monitor\""]",4462.38,{},272115,0,"""Europe""" +2023-03-13,94242,5413,"[\""Keyboard\"", \""Tablet\""]",4992.45,{},273961,1,"""Africa""" +2023-01-01,94243,623,"[\""Headphones\"", \""Charger\""]",1148.86,{},169051,1,"""South America""" +2024-07-04,94244,5828,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3622.77,{},26279,1,"""North America""" +2023-10-31,94245,6879,"[\""Wireless Mouse\"", \""Laptop\""]",1838.56,{},61470,1,"""Europe""" +2024-03-24,94246,2744,"[\""Laptop\""]",1745.41,{},108381,1,"""South America""" +2023-12-04,94247,9857,"[\""Monitor\""]",3484.84,{},32753,0,"""Asia""" +2023-05-01,94248,157,"[\""Monitor\"", \""Wireless Mouse\""]",1066.96,"{\""promo\"": \""28%\""}",76353,0,"""Asia""" +2024-08-18,94249,2585,"[\""Monitor\"", \""Phone\"", \""Charger\""]",163.59,"{\""seasonal\"": \""25%\""}",181677,1,"""Africa""" +2024-01-02,94250,8055,"[\""Laptop\""]",2211.78,{},270982,0,"""Europe""" +2023-10-09,94251,9548,"[\""Wireless Mouse\"", \""Monitor\""]",4106.16,{},264240,0,"""Africa""" +2023-04-26,94252,5001,"[\""Charger\"", \""Phone\""]",4266.62,"{\""seasonal\"": \""28%\""}",224952,1,"""Africa""" +2024-03-12,94253,9718,"[\""Headphones\""]",1411.18,{},57482,0,"""Asia""" +2024-06-10,94254,2131,"[\""Tablet\""]",4950.41,"{\""promo\"": \""22%\""}",35972,1,"""Europe""" +2023-03-23,94255,4867,"[\""Monitor\""]",2786.6,"{\"": \""26%\""}",236626,0,"""North America""" +2023-03-02,94256,8112,"[\""Phone\"", \""Keyboard\""]",3013.7,"{\""seasonal\"": \""19%\""}",209181,0,"""Europe""" +2024-12-09,94257,5906,"[\""Wireless Mouse\"", \""Charger\""]",2828.96,"{\"": \""28%\""}",206362,0,"""Europe""" +2023-10-27,94258,8616,"[\""Monitor\""]",2783.79,{},141409,1,"""North America""" +2023-01-29,94259,5320,"[\""Monitor\"", \""Tablet\""]",274.09,{},137817,0,"""Europe""" +2024-08-26,94260,6395,"[\""Keyboard\"", \""Charger\""]",4436.9,{},284581,1,"""Africa""" +2024-08-22,94261,419,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",2898.73,{},296597,1,"""Africa""" +2024-09-30,94262,9001,"[\""Tablet\"", \""Charger\""]",323.76,"{\""seasonal\"": \""29%\""}",180546,1,"""Asia""" +2024-01-25,94263,5034,"[\""Laptop\""]",4033.97,{},252873,1,"""Asia""" +2024-02-01,94264,5189,"[\""Headphones\"", \""Keyboard\""]",3428.91,"{\""promo\"": \""23%\""}",177778,0,"""South America""" +2024-09-23,94265,111,"[\""Phone\"", \""Tablet\""]",2476.63,{},188791,0,"""Asia""" +2024-08-16,94266,4946,"[\""Phone\""]",3674.58,"{\""loyalty\"": \""22%\""}",177906,0,"""North America""" +2023-11-27,94267,3650,"[\""Phone\"", \""Monitor\""]",2871.09,"{\""promo\"": \""13%\""}",134047,0,"""North America""" +2023-12-25,94268,3610,"[\""Charger\"", \""Tablet\""]",4306.32,"{\""promo\"": \""11%\""}",40825,1,"""South America""" +2024-03-31,94269,9868,"[\""Keyboard\""]",141.72,"{\"": \""27%\""}",295678,0,"""Africa""" +2023-08-08,94270,4354,"[\""Headphones\""]",2051.91,"{\""loyalty\"": \""29%\""}",171258,0,"""Asia""" +2024-01-27,94271,5734,"[\""Phone\""]",552.45,"{\""loyalty\"": \""26%\""}",57584,0,"""Europe""" +2024-11-06,94272,5529,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",197.17,"{\"": \""23%\""}",51967,0,"""South America""" +2024-12-05,94273,3891,"[\""Headphones\""]",2813.43,"{\""loyalty\"": \""11%\""}",166844,0,"""Asia""" +2024-06-13,94274,8704,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",492.91,"{\""loyalty\"": \""7%\""}",246014,1,"""North America""" +2024-11-28,94275,9431,"[\""Monitor\"", \""Charger\""]",3880.01,{},160295,1,"""South America""" +2023-01-16,94276,4654,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",1251.66,"{\""loyalty\"": \""29%\""}",53543,1,"""Africa""" +2024-12-14,94277,9433,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",201.62,"{\"": \""14%\""}",154705,0,"""Europe""" +2024-11-23,94278,3714,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",869.65,"{\""loyalty\"": \""29%\""}",186906,1,"""Africa""" +2023-04-07,94279,3102,"[\""Monitor\""]",188.49,"{\""seasonal\"": \""29%\""}",143278,1,"""South America""" +2023-12-09,94280,9996,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",1991.47,"{\""promo\"": \""26%\""}",187415,0,"""Asia""" +2024-05-25,94281,5299,"[\""Monitor\"", \""Headphones\""]",2846.7,{},263706,1,"""Asia""" +2023-08-11,94282,2500,"[\""Wireless Mouse\""]",3117.69,{},41259,0,"""Africa""" +2024-03-17,94283,1412,"[\""Monitor\"", \""Laptop\""]",4448.49,"{\""loyalty\"": \""22%\""}",95717,0,"""Europe""" +2024-02-15,94284,9352,"[\""Keyboard\""]",1912.02,{},262151,1,"""Africa""" +2023-12-14,94285,3286,"[\""Phone\"", \""Tablet\""]",1700.38,{},131106,0,"""North America""" +2024-08-30,94286,6158,"[\""Keyboard\""]",396.32,"{\""promo\"": \""11%\""}",249538,0,"""North America""" +2024-02-21,94287,4766,"[\""Headphones\"", \""Charger\""]",3900.76,{},62364,1,"""South America""" +2023-03-22,94288,6520,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1020.1,{},282841,1,"""Europe""" +2023-09-07,94289,4683,"[\""Laptop\"", \""Headphones\""]",1310.16,"{\""seasonal\"": \""26%\""}",51965,1,"""Europe""" +2024-01-22,94290,6220,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",1822.96,{},149768,1,"""North America""" +2024-06-09,94291,7670,"[\""Headphones\"", \""Phone\""]",2476.33,{},12749,1,"""Europe""" +2023-04-17,94292,9716,"[\""Wireless Mouse\"", \""Laptop\""]",3784.15,"{\""seasonal\"": \""13%\""}",17292,0,"""North America""" +2024-06-01,94293,2748,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2844.1,"{\""loyalty\"": \""27%\""}",232727,0,"""Europe""" +2024-07-08,94294,2940,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",1989.28,"{\""loyalty\"": \""18%\""}",297650,1,"""South America""" +2024-12-17,94295,3138,"[\""Wireless Mouse\"", \""Monitor\""]",3236.82,"{\""seasonal\"": \""9%\""}",109083,1,"""Asia""" +2024-02-26,94296,3878,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",2398.91,"{\""loyalty\"": \""18%\""}",248127,0,"""Africa""" +2024-12-23,94297,9995,"[\""Laptop\""]",3101.33,{},297592,0,"""Europe""" +2024-05-13,94298,6612,"[\""Keyboard\""]",946.38,{},213562,0,"""Asia""" +2023-01-13,94299,5280,"[\""Monitor\"", \""Keyboard\""]",2815.85,"{\""promo\"": \""25%\""}",124840,0,"""North America""" +2024-03-02,94300,4120,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",86.82,"{\""loyalty\"": \""21%\""}",165904,0,"""North America""" +2023-06-20,94301,8252,"[\""Keyboard\""]",4927.04,{},206441,0,"""South America""" +2023-01-03,94302,9698,"[\""Laptop\""]",4215.59,{},216016,1,"""North America""" +2024-12-01,94303,7758,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3798.21,"{\""loyalty\"": \""22%\""}",221497,0,"""Africa""" +2024-08-06,94304,8497,"[\""Monitor\""]",1224.95,{},177007,1,"""South America""" +2024-05-23,94305,8118,"[\""Tablet\""]",469.47,{},84907,1,"""South America""" +2023-01-28,94306,3905,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2064.73,{},208718,1,"""Asia""" +2023-10-21,94307,2487,"[\""Charger\""]",1498.07,"{\""loyalty\"": \""21%\""}",28382,0,"""North America""" +2024-10-01,94308,8095,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3266.0,{},148323,0,"""North America""" +2024-10-13,94309,63,"[\""Tablet\""]",3660.35,"{\""loyalty\"": \""26%\""}",254931,0,"""Europe""" +2023-05-07,94310,2165,"[\""Tablet\"", \""Headphones\""]",1287.85,{},77228,0,"""North America""" +2023-06-30,94311,8561,"[\""Charger\"", \""Wireless Mouse\""]",2953.6,{},51752,1,"""North America""" +2024-02-15,94312,8586,"[\""Monitor\"", \""Keyboard\""]",4068.64,{},258358,1,"""Europe""" +2023-05-12,94313,9826,"[\""Keyboard\"", \""Phone\""]",3241.29,"{\""seasonal\"": \""28%\""}",299278,0,"""Asia""" +2024-08-14,94314,7572,"[\""Headphones\"", \""Charger\""]",593.94,{},168173,1,"""Asia""" +2024-12-12,94315,3503,"[\""Monitor\""]",3342.63,{},141408,0,"""Europe""" +2023-04-20,94316,4113,"[\""Monitor\"", \""Tablet\""]",4855.37,"{\""promo\"": \""6%\""}",177845,1,"""Europe""" +2024-11-06,94317,6915,"[\""Tablet\"", \""Laptop\""]",1557.95,{},11005,1,"""Africa""" +2023-05-17,94318,6544,"[\""Phone\"", \""Keyboard\""]",2019.92,"{\"": \""9%\""}",191791,0,"""Europe""" +2023-10-28,94319,3984,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4388.36,"{\""promo\"": \""15%\""}",247038,1,"""South America""" +2024-01-30,94320,5841,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3616.9,{},203037,1,"""Africa""" +2024-02-21,94321,8894,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",4460.99,"{\"": \""13%\""}",274866,1,"""Europe""" +2024-05-02,94322,2145,"[\""Laptop\""]",3870.27,"{\""promo\"": \""9%\""}",57491,0,"""Europe""" +2023-07-05,94323,9647,"[\""Headphones\""]",4154.18,"{\""seasonal\"": \""12%\""}",20340,0,"""North America""" +2024-06-05,94324,7130,"[\""Laptop\""]",4008.43,{},15888,0,"""Europe""" +2023-10-13,94325,1415,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",916.98,{},13023,0,"""Africa""" +2024-09-21,94326,8246,"[\""Wireless Mouse\""]",4475.0,"{\""promo\"": \""24%\""}",167696,0,"""Africa""" +2024-11-18,94327,9734,"[\""Monitor\"", \""Phone\""]",2838.17,"{\""loyalty\"": \""6%\""}",242691,0,"""South America""" +2024-03-30,94328,2353,"[\""Headphones\""]",3504.26,"{\""promo\"": \""16%\""}",81135,0,"""Asia""" +2024-01-28,94329,6859,"[\""Charger\"", \""Tablet\""]",3634.29,"{\""loyalty\"": \""5%\""}",281212,0,"""Europe""" +2024-05-03,94330,5711,"[\""Keyboard\"", \""Phone\""]",3948.58,"{\""promo\"": \""28%\""}",221058,0,"""Africa""" +2023-07-13,94331,9645,"[\""Monitor\""]",4071.8,{},101028,0,"""Asia""" +2023-08-19,94332,4868,"[\""Tablet\""]",4068.46,{},50267,1,"""Asia""" +2023-04-08,94333,5812,"[\""Tablet\"", \""Phone\"", \""Charger\""]",3761.43,"{\""seasonal\"": \""21%\""}",289056,1,"""Asia""" +2024-04-11,94334,8899,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1680.22,{},12802,0,"""South America""" +2023-04-25,94335,4509,"[\""Monitor\""]",4994.74,"{\""promo\"": \""18%\""}",22491,1,"""Europe""" +2023-10-31,94336,7344,"[\""Keyboard\""]",3574.04,"{\""loyalty\"": \""7%\""}",178524,0,"""South America""" +2024-07-30,94337,2271,"[\""Charger\"", \""Laptop\""]",1544.63,"{\""loyalty\"": \""29%\""}",28102,1,"""Europe""" +2024-05-18,94338,9472,"[\""Tablet\"", \""Charger\""]",1314.2,{},42515,1,"""Europe""" +2024-02-26,94339,49,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",781.39,"{\"": \""6%\""}",164848,1,"""North America""" +2024-05-05,94340,5669,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3257.98,{},93215,1,"""Europe""" +2024-11-05,94341,727,"[\""Charger\""]",3248.91,{},25692,0,"""Africa""" +2023-06-09,94342,2164,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3622.96,{},134422,0,"""Africa""" +2023-09-29,94343,9177,"[\""Laptop\""]",161.69,"{\"": \""28%\""}",80423,1,"""Europe""" +2023-05-31,94344,7380,"[\""Headphones\"", \""Keyboard\""]",2334.94,{},224446,0,"""South America""" +2024-01-29,94345,6331,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",4851.46,"{\""seasonal\"": \""16%\""}",53621,0,"""North America""" +2023-06-14,94346,5167,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",4088.95,{},176197,0,"""South America""" +2023-08-27,94347,9398,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",3247.09,"{\""seasonal\"": \""11%\""}",188582,0,"""Asia""" +2023-10-22,94348,3988,"[\""Keyboard\""]",1162.06,"{\""promo\"": \""9%\""}",124838,1,"""Asia""" +2024-11-06,94349,7335,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",411.16,"{\""seasonal\"": \""25%\""}",261624,0,"""South America""" +2023-06-20,94350,3415,"[\""Headphones\""]",341.42,"{\""promo\"": \""6%\""}",90086,1,"""North America""" +2024-09-14,94351,5769,"[\""Wireless Mouse\"", \""Laptop\""]",2912.53,"{\""promo\"": \""18%\""}",156915,1,"""Africa""" +2023-03-12,94352,7476,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",4628.0,{},256135,1,"""North America""" +2023-08-28,94353,9953,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2437.39,"{\""loyalty\"": \""22%\""}",174516,1,"""South America""" +2023-03-01,94354,1799,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",4031.9,{},84371,1,"""North America""" +2023-07-18,94355,9392,"[\""Keyboard\"", \""Monitor\""]",4061.36,{},228234,0,"""Asia""" +2024-06-29,94356,1960,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2283.99,"{\""loyalty\"": \""22%\""}",21437,0,"""North America""" +2023-11-01,94357,1324,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1657.96,"{\""loyalty\"": \""7%\""}",180340,0,"""Africa""" +2023-11-07,94358,1957,"[\""Headphones\""]",4640.94,"{\""loyalty\"": \""13%\""}",223228,0,"""South America""" +2023-04-12,94359,8660,"[\""Laptop\""]",4384.84,"{\""promo\"": \""18%\""}",215201,1,"""Africa""" +2024-05-12,94360,2839,"[\""Keyboard\""]",2386.09,"{\""promo\"": \""9%\""}",122429,1,"""Asia""" +2024-09-24,94361,1834,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",400.04,"{\"": \""27%\""}",147224,0,"""South America""" +2024-06-07,94362,1296,"[\""Keyboard\"", \""Monitor\""]",1523.84,"{\"": \""29%\""}",144542,0,"""Asia""" +2024-07-07,94363,2616,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",908.87,{},216326,0,"""South America""" +2024-12-10,94364,1987,"[\""Phone\""]",3577.09,{},158578,1,"""North America""" +2024-02-15,94365,2482,"[\""Charger\"", \""Keyboard\""]",1142.99,"{\"": \""27%\""}",117206,1,"""Europe""" +2023-09-25,94366,4909,"[\""Laptop\""]",3651.81,{},100394,0,"""Asia""" +2024-08-24,94367,7629,"[\""Keyboard\""]",563.03,{},290486,1,"""Asia""" +2023-08-13,94368,9600,"[\""Wireless Mouse\"", \""Keyboard\""]",1663.27,{},211994,0,"""South America""" +2023-10-25,94369,7045,"[\""Monitor\""]",3007.69,{},172301,0,"""North America""" +2024-11-05,94370,2531,"[\""Wireless Mouse\""]",3149.64,"{\"": \""14%\""}",89617,1,"""North America""" +2024-09-20,94371,997,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4490.59,"{\""loyalty\"": \""17%\""}",74458,1,"""Asia""" +2024-03-19,94372,8111,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",4927.67,"{\"": \""5%\""}",59039,0,"""North America""" +2023-06-25,94373,2154,"[\""Keyboard\"", \""Charger\""]",4600.15,"{\"": \""5%\""}",59137,1,"""Asia""" +2024-07-25,94374,98,"[\""Monitor\""]",4444.35,{},62588,0,"""South America""" +2023-12-24,94375,7853,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4058.47,{},213997,1,"""Asia""" +2024-03-18,94376,2404,"[\""Laptop\""]",1404.34,"{\""promo\"": \""7%\""}",74980,0,"""Africa""" +2024-07-21,94377,8162,"[\""Phone\""]",3088.86,{},265112,1,"""North America""" +2024-02-11,94378,3043,"[\""Headphones\"", \""Keyboard\""]",2429.55,"{\"": \""16%\""}",81655,0,"""North America""" +2023-09-25,94379,2696,"[\""Wireless Mouse\"", \""Charger\""]",1471.55,"{\""promo\"": \""29%\""}",256383,1,"""Africa""" +2023-05-05,94380,4142,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",3997.38,{},242315,0,"""South America""" +2024-04-13,94381,1540,"[\""Keyboard\""]",317.84,"{\""loyalty\"": \""14%\""}",192994,0,"""North America""" +2023-02-20,94382,9000,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1027.84,{},33948,0,"""Asia""" +2024-06-01,94383,2654,"[\""Monitor\"", \""Laptop\""]",4062.45,{},99406,0,"""South America""" +2023-07-16,94384,8891,"[\""Tablet\"", \""Keyboard\""]",2528.88,"{\""seasonal\"": \""29%\""}",114625,0,"""Europe""" +2023-06-18,94385,3125,"[\""Wireless Mouse\""]",3817.78,"{\""promo\"": \""17%\""}",244792,0,"""South America""" +2023-09-13,94386,7438,"[\""Phone\""]",3289.8,{},32787,0,"""Europe""" +2024-07-09,94387,1221,"[\""Keyboard\"", \""Monitor\""]",1983.4,{},199748,1,"""North America""" +2024-02-02,94388,6084,"[\""Keyboard\""]",485.87,"{\""loyalty\"": \""26%\""}",43239,1,"""Europe""" +2023-10-04,94389,9942,"[\""Charger\"", \""Tablet\""]",3584.8,{},221128,1,"""Africa""" +2024-04-19,94390,6349,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",567.1,{},85487,0,"""Africa""" +2023-01-08,94391,5095,"[\""Charger\"", \""Monitor\""]",1048.42,{},102074,1,"""North America""" +2024-04-13,94392,9351,"[\""Phone\"", \""Laptop\""]",890.21,{},230967,1,"""Africa""" +2023-06-03,94393,5291,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",3611.46,"{\""promo\"": \""9%\""}",88624,0,"""Asia""" +2024-08-25,94394,4983,"[\""Charger\"", \""Wireless Mouse\""]",1841.03,"{\""loyalty\"": \""28%\""}",151660,0,"""Europe""" +2023-10-13,94395,113,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2652.68,"{\""promo\"": \""9%\""}",32724,1,"""North America""" +2023-07-04,94396,4176,"[\""Wireless Mouse\""]",733.31,{},291480,1,"""Africa""" +2024-05-18,94397,9938,"[\""Headphones\"", \""Wireless Mouse\""]",3285.54,{},139535,1,"""South America""" +2023-02-17,94398,2988,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1990.45,"{\"": \""9%\""}",192323,1,"""Asia""" +2024-04-13,94399,2356,"[\""Monitor\"", \""Phone\""]",4772.91,"{\""seasonal\"": \""23%\""}",281049,0,"""Africa""" +2023-08-18,94400,4786,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1758.55,{},277380,0,"""North America""" +2024-08-23,94401,5281,"[\""Keyboard\""]",3478.32,"{\""loyalty\"": \""20%\""}",217311,1,"""North America""" +2023-08-14,94402,9856,"[\""Tablet\"", \""Wireless Mouse\""]",3249.27,"{\"": \""7%\""}",279315,0,"""Asia""" +2024-06-28,94403,5675,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4213.32,"{\""promo\"": \""27%\""}",35038,0,"""Africa""" +2023-10-20,94404,5326,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1176.06,{},20388,0,"""Asia""" +2024-09-12,94405,7817,"[\""Tablet\"", \""Laptop\""]",4829.28,"{\""seasonal\"": \""5%\""}",211369,1,"""North America""" +2024-09-12,94406,4458,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",2736.28,{},45150,1,"""Africa""" +2024-02-12,94407,8016,"[\""Keyboard\""]",674.9,"{\""seasonal\"": \""24%\""}",234176,1,"""North America""" +2023-04-29,94408,878,"[\""Monitor\""]",2655.4,{},43134,0,"""Africa""" +2024-08-14,94409,7848,"[\""Headphones\""]",2128.1,{},83081,0,"""Europe""" +2023-05-13,94410,6332,"[\""Wireless Mouse\"", \""Tablet\""]",1901.42,{},231731,0,"""North America""" +2023-04-22,94411,2065,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2487.14,{},253652,1,"""Asia""" +2024-10-13,94412,6796,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4564.31,{},7289,0,"""Europe""" +2023-09-26,94413,946,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",1054.71,"{\""promo\"": \""18%\""}",12677,1,"""Asia""" +2024-08-28,94414,1796,"[\""Laptop\""]",1578.15,{},139937,0,"""Europe""" +2024-10-21,94415,6549,"[\""Laptop\"", \""Charger\""]",4281.27,"{\""seasonal\"": \""28%\""}",156917,0,"""Asia""" +2024-05-31,94416,5765,"[\""Laptop\""]",233.51,{},12687,1,"""North America""" +2023-03-24,94417,7797,"[\""Phone\""]",4528.42,"{\"": \""11%\""}",90737,0,"""Asia""" +2023-10-31,94418,4202,"[\""Laptop\""]",4526.95,"{\"": \""15%\""}",181410,0,"""Africa""" +2023-11-10,94419,3566,"[\""Laptop\"", \""Monitor\""]",3093.42,"{\""promo\"": \""27%\""}",297482,1,"""Asia""" +2024-05-06,94420,4548,"[\""Charger\""]",1164.63,{},284607,0,"""Africa""" +2024-10-17,94421,1500,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3206.26,{},124807,1,"""North America""" +2024-04-10,94422,629,"[\""Charger\"", \""Wireless Mouse\""]",3320.75,{},7433,1,"""Europe""" +2024-01-01,94423,6964,"[\""Wireless Mouse\""]",1840.7,{},166073,1,"""Asia""" +2023-02-16,94424,4025,"[\""Wireless Mouse\""]",3686.39,"{\""loyalty\"": \""5%\""}",134230,1,"""North America""" +2024-02-10,94425,5142,"[\""Laptop\"", \""Charger\""]",1328.72,"{\""loyalty\"": \""25%\""}",192757,1,"""North America""" +2024-04-22,94426,1215,"[\""Keyboard\"", \""Headphones\""]",4434.72,"{\""promo\"": \""16%\""}",202432,0,"""South America""" +2024-07-26,94427,5132,"[\""Wireless Mouse\"", \""Tablet\""]",2143.01,"{\""loyalty\"": \""18%\""}",231021,0,"""Asia""" +2024-03-15,94428,5396,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",1960.19,"{\"": \""6%\""}",234684,1,"""South America""" +2024-07-05,94429,7392,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",1040.62,{},283104,0,"""North America""" +2024-11-12,94430,5580,"[\""Tablet\"", \""Phone\""]",3272.9,{},162382,1,"""South America""" +2023-02-18,94431,3179,"[\""Laptop\"", \""Phone\""]",914.17,"{\"": \""29%\""}",266905,1,"""South America""" +2024-02-27,94432,952,"[\""Charger\""]",565.69,"{\""loyalty\"": \""17%\""}",57339,1,"""Asia""" +2024-09-27,94433,5103,"[\""Headphones\"", \""Phone\"", \""Charger\""]",292.85,"{\""loyalty\"": \""28%\""}",253627,1,"""North America""" +2023-04-23,94434,7027,"[\""Laptop\""]",3716.4,{},272320,0,"""Asia""" +2023-02-07,94435,9268,"[\""Keyboard\"", \""Charger\""]",847.74,{},193941,0,"""Africa""" +2023-07-06,94436,9460,"[\""Headphones\""]",4096.23,{},221775,0,"""Africa""" +2024-05-17,94437,9353,"[\""Monitor\""]",4422.18,"{\""promo\"": \""10%\""}",273722,1,"""South America""" +2023-03-23,94438,9017,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",303.92,"{\""seasonal\"": \""14%\""}",280230,0,"""North America""" +2023-07-24,94439,144,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",516.17,"{\""promo\"": \""28%\""}",270111,1,"""Africa""" +2023-06-17,94440,3750,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3753.92,"{\""promo\"": \""14%\""}",120631,1,"""North America""" +2024-12-02,94441,2484,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2186.04,{},77429,0,"""Asia""" +2023-11-18,94442,2485,"[\""Charger\""]",1309.11,"{\""promo\"": \""14%\""}",272873,0,"""Asia""" +2024-04-22,94443,1269,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2035.84,"{\""promo\"": \""18%\""}",238223,0,"""Asia""" +2024-01-04,94444,4342,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3712.64,{},180558,1,"""North America""" +2024-09-22,94445,4552,"[\""Laptop\""]",4950.14,"{\""loyalty\"": \""13%\""}",5263,0,"""North America""" +2024-01-25,94446,5415,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",57.36,"{\""seasonal\"": \""7%\""}",275369,1,"""North America""" +2024-02-23,94447,8935,"[\""Charger\""]",1661.21,{},163798,1,"""Africa""" +2023-04-22,94448,1018,"[\""Wireless Mouse\"", \""Keyboard\""]",3327.92,{},16201,1,"""South America""" +2023-03-17,94449,5387,"[\""Keyboard\"", \""Monitor\""]",3518.87,{},15195,0,"""South America""" +2024-09-20,94450,7049,"[\""Tablet\""]",2313.4,{},91498,1,"""Europe""" +2023-10-20,94451,1977,"[\""Tablet\""]",1766.74,"{\"": \""26%\""}",109642,1,"""Africa""" +2023-02-14,94452,8552,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",3361.71,{},210700,0,"""Asia""" +2023-08-13,94453,5408,"[\""Tablet\""]",3376.14,"{\""loyalty\"": \""19%\""}",165245,0,"""South America""" +2024-10-09,94454,5960,"[\""Headphones\""]",3800.51,"{\""loyalty\"": \""16%\""}",280459,0,"""North America""" +2024-05-04,94455,306,"[\""Monitor\"", \""Wireless Mouse\""]",2271.47,{},69830,0,"""Africa""" +2023-02-11,94456,6733,"[\""Keyboard\"", \""Laptop\""]",1007.3,{},106077,0,"""Asia""" +2023-01-16,94457,9110,"[\""Wireless Mouse\""]",67.91,{},208372,1,"""Asia""" +2023-05-26,94458,5007,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",153.68,{},203360,1,"""Asia""" +2023-06-08,94459,5850,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",329.33,{},40433,0,"""South America""" +2024-11-01,94460,4070,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3856.47,"{\""loyalty\"": \""21%\""}",62303,0,"""Europe""" +2023-12-24,94461,5726,"[\""Tablet\"", \""Keyboard\""]",3761.92,{},230185,0,"""Asia""" +2023-06-11,94462,9745,"[\""Monitor\"", \""Tablet\""]",2693.67,{},283829,0,"""North America""" +2024-06-11,94463,6215,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",69.78,"{\""seasonal\"": \""23%\""}",256097,0,"""Asia""" +2023-06-01,94464,8081,"[\""Tablet\"", \""Monitor\""]",769.8,{},189849,0,"""Asia""" +2023-07-28,94465,7499,"[\""Laptop\""]",725.59,{},51526,0,"""Asia""" +2023-07-30,94466,240,"[\""Keyboard\"", \""Monitor\""]",177.34,"{\""loyalty\"": \""7%\""}",143043,1,"""Europe""" +2023-12-13,94467,9451,"[\""Tablet\""]",4803.26,{},193021,1,"""Asia""" +2023-07-19,94468,804,"[\""Wireless Mouse\"", \""Keyboard\""]",2531.11,{},100829,1,"""Africa""" +2023-08-21,94469,4039,"[\""Charger\"", \""Headphones\""]",3881.52,{},142301,1,"""South America""" +2023-02-04,94470,8093,"[\""Phone\""]",2447.14,"{\"": \""19%\""}",182277,1,"""North America""" +2023-04-19,94471,3874,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2444.21,{},276146,1,"""South America""" +2024-08-10,94472,6299,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",2121.57,{},292558,1,"""Asia""" +2023-08-11,94473,2330,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3593.12,"{\""promo\"": \""25%\""}",215004,1,"""North America""" +2024-03-19,94474,7080,"[\""Laptop\""]",953.69,"{\"": \""18%\""}",168544,1,"""North America""" +2023-02-12,94475,6854,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4768.82,{},6760,1,"""South America""" +2024-10-08,94476,4788,"[\""Charger\""]",2335.28,"{\""loyalty\"": \""24%\""}",299924,0,"""Europe""" +2023-12-15,94477,2505,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2392.87,{},89968,0,"""Africa""" +2024-02-28,94478,8383,"[\""Phone\""]",2809.48,"{\""seasonal\"": \""20%\""}",96329,1,"""Europe""" +2023-11-25,94479,4780,"[\""Phone\""]",3478.33,"{\""promo\"": \""30%\""}",129467,1,"""North America""" +2023-10-01,94480,3878,"[\""Tablet\"", \""Phone\""]",379.04,"{\"": \""7%\""}",124302,1,"""Africa""" +2024-09-04,94481,4126,"[\""Wireless Mouse\"", \""Phone\""]",2318.04,{},91409,0,"""South America""" +2023-01-11,94482,9392,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4123.57,"{\"": \""25%\""}",4959,0,"""South America""" +2024-08-30,94483,9582,"[\""Phone\"", \""Monitor\""]",1370.91,{},218655,1,"""Africa""" +2024-09-19,94484,7078,"[\""Monitor\"", \""Laptop\""]",534.08,{},44356,0,"""Africa""" +2023-02-15,94485,4168,"[\""Tablet\"", \""Monitor\""]",2487.43,"{\""loyalty\"": \""19%\""}",248249,1,"""Africa""" +2023-10-27,94486,545,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",4658.04,"{\""promo\"": \""11%\""}",163255,1,"""South America""" +2023-04-10,94487,8302,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3304.47,{},214807,0,"""Africa""" +2024-03-09,94488,7366,"[\""Tablet\""]",4801.13,{},178031,1,"""Europe""" +2023-01-15,94489,7609,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2755.52,{},246043,1,"""Asia""" +2023-11-06,94490,3768,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1243.65,"{\""loyalty\"": \""19%\""}",261958,0,"""South America""" +2023-07-31,94491,9446,"[\""Wireless Mouse\"", \""Phone\""]",2326.75,{},138422,0,"""Europe""" +2023-12-19,94492,6350,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",1301.13,"{\""loyalty\"": \""20%\""}",176292,0,"""Africa""" +2024-07-23,94493,6436,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1371.09,"{\""seasonal\"": \""17%\""}",66097,0,"""South America""" +2024-02-09,94494,1099,"[\""Wireless Mouse\"", \""Headphones\""]",3533.99,"{\""promo\"": \""17%\""}",146298,1,"""Asia""" +2023-02-02,94495,4352,"[\""Wireless Mouse\""]",1143.73,"{\""promo\"": \""22%\""}",176189,0,"""Asia""" +2024-01-20,94496,7286,"[\""Charger\"", \""Laptop\""]",1578.66,{},79503,0,"""North America""" +2023-01-17,94497,8100,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4354.97,{},73724,0,"""South America""" +2023-06-25,94498,2825,"[\""Tablet\"", \""Wireless Mouse\""]",567.95,{},168447,1,"""Africa""" +2023-04-13,94499,6744,"[\""Keyboard\""]",4831.89,"{\""seasonal\"": \""14%\""}",104961,0,"""Asia""" +2024-05-04,94500,1753,"[\""Phone\"", \""Laptop\"", \""Charger\""]",132.6,"{\""promo\"": \""9%\""}",14772,0,"""North America""" +2024-08-13,94501,4334,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2036.22,{},261104,0,"""North America""" +2024-07-29,94502,9062,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2187.37,{},180912,1,"""Europe""" +2023-12-03,94503,7226,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1263.99,{},246289,0,"""Africa""" +2023-05-25,94504,3935,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2256.13,{},296126,1,"""Africa""" +2024-02-16,94505,8593,"[\""Phone\""]",3275.92,"{\""promo\"": \""5%\""}",92120,0,"""Europe""" +2024-04-30,94506,740,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4146.23,"{\""loyalty\"": \""17%\""}",252050,0,"""South America""" +2024-07-01,94507,8763,"[\""Phone\"", \""Laptop\"", \""Charger\""]",2877.05,"{\""loyalty\"": \""23%\""}",152771,1,"""Europe""" +2024-10-21,94508,236,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1152.57,"{\""loyalty\"": \""11%\""}",123686,1,"""Africa""" +2023-02-06,94509,9685,"[\""Monitor\""]",767.16,{},210637,0,"""Asia""" +2023-02-24,94510,2771,"[\""Headphones\"", \""Wireless Mouse\""]",480.25,"{\""promo\"": \""12%\""}",144340,1,"""South America""" +2024-04-30,94511,2099,"[\""Phone\"", \""Tablet\""]",2532.95,"{\""loyalty\"": \""6%\""}",83340,1,"""South America""" +2024-05-16,94512,564,"[\""Phone\"", \""Headphones\""]",2085.48,"{\"": \""12%\""}",79525,1,"""Europe""" +2023-02-24,94513,3588,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",1383.79,"{\""seasonal\"": \""6%\""}",50571,0,"""Africa""" +2024-09-20,94514,3655,"[\""Monitor\"", \""Charger\""]",54.08,{},156157,1,"""North America""" +2024-06-07,94515,1134,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",78.72,"{\""loyalty\"": \""8%\""}",298199,1,"""South America""" +2023-11-01,94516,6528,"[\""Phone\"", \""Headphones\""]",3977.53,{},182681,1,"""Asia""" +2023-01-29,94517,3549,"[\""Phone\"", \""Headphones\""]",4665.23,{},78208,0,"""Europe""" +2024-10-27,94518,8818,"[\""Laptop\""]",3723.68,{},182712,1,"""South America""" +2023-12-01,94519,1216,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",218.8,{},4140,1,"""North America""" +2024-11-17,94520,2806,"[\""Headphones\""]",2989.64,{},57345,1,"""Africa""" +2024-06-06,94521,5208,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2603.26,{},84005,1,"""South America""" +2024-09-27,94522,268,"[\""Monitor\""]",4994.12,{},276852,0,"""South America""" +2023-04-25,94523,6765,"[\""Phone\"", \""Tablet\""]",2475.78,{},31116,1,"""Asia""" +2023-05-08,94524,4890,"[\""Headphones\""]",551.82,{},12353,0,"""North America""" +2023-12-29,94525,7373,"[\""Tablet\"", \""Wireless Mouse\""]",2186.72,{},40198,1,"""Africa""" +2023-06-25,94526,9298,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",601.23,{},38304,0,"""Asia""" +2024-08-29,94527,2924,"[\""Wireless Mouse\""]",4725.46,{},267751,1,"""North America""" +2023-12-30,94528,3188,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",860.35,"{\""promo\"": \""22%\""}",128465,1,"""Africa""" +2023-01-18,94529,7063,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2676.02,{},176626,0,"""Asia""" +2024-11-27,94530,904,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3731.93,{},132553,0,"""Europe""" +2024-06-27,94531,5718,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",239.09,"{\""seasonal\"": \""20%\""}",171356,0,"""Europe""" +2023-01-23,94532,1350,"[\""Charger\""]",3418.17,"{\""loyalty\"": \""24%\""}",217047,1,"""Africa""" +2024-12-26,94533,8670,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2763.65,{},220423,1,"""Asia""" +2024-09-23,94534,9630,"[\""Tablet\""]",3509.34,"{\"": \""18%\""}",161210,0,"""Asia""" +2023-05-16,94535,6788,"[\""Keyboard\""]",3643.1,"{\""seasonal\"": \""18%\""}",294150,0,"""Asia""" +2023-12-27,94536,3106,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4711.87,"{\""promo\"": \""18%\""}",192870,0,"""Asia""" +2023-04-09,94537,2784,"[\""Laptop\"", \""Keyboard\""]",4543.49,{},205772,0,"""Africa""" +2024-05-10,94538,3818,"[\""Headphones\"", \""Monitor\""]",2439.7,"{\""promo\"": \""19%\""}",237904,1,"""Africa""" +2023-04-01,94539,6128,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",816.54,"{\""loyalty\"": \""29%\""}",32880,1,"""North America""" +2023-05-23,94540,5849,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",3378.71,{},236062,0,"""Asia""" +2024-07-11,94541,7816,"[\""Headphones\"", \""Charger\""]",4904.69,"{\"": \""21%\""}",241219,1,"""Europe""" +2023-03-08,94542,5677,"[\""Laptop\""]",1115.12,"{\"": \""20%\""}",223572,0,"""North America""" +2024-10-17,94543,6744,"[\""Laptop\""]",257.69,{},167188,1,"""Asia""" +2023-06-20,94544,6007,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1249.76,{},46279,1,"""Africa""" +2023-03-06,94545,5969,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",4561.11,"{\""seasonal\"": \""5%\""}",182288,1,"""South America""" +2024-12-20,94546,3490,"[\""Tablet\""]",3748.22,{},243527,0,"""Europe""" +2024-12-27,94547,2904,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",4576.59,{},31251,0,"""South America""" +2024-05-30,94548,1564,"[\""Keyboard\""]",4377.64,{},154884,1,"""Africa""" +2023-08-16,94549,4887,"[\""Charger\"", \""Monitor\""]",2646.6,"{\"": \""16%\""}",44388,1,"""Asia""" +2024-11-21,94550,4751,"[\""Keyboard\"", \""Phone\""]",3923.21,{},271759,0,"""Asia""" +2023-07-26,94551,3768,"[\""Charger\""]",620.72,"{\""seasonal\"": \""15%\""}",136103,1,"""South America""" +2024-07-31,94552,321,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",995.0,{},81901,0,"""South America""" +2023-11-22,94553,2711,"[\""Wireless Mouse\""]",2168.0,"{\""promo\"": \""20%\""}",280959,0,"""Asia""" +2023-04-07,94554,8005,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4531.63,"{\""loyalty\"": \""10%\""}",19238,1,"""Europe""" +2023-10-08,94555,751,"[\""Monitor\"", \""Laptop\""]",1561.53,{},83029,0,"""Europe""" +2024-02-17,94556,5250,"[\""Laptop\"", \""Headphones\""]",352.47,"{\""promo\"": \""22%\""}",87754,1,"""Europe""" +2024-06-02,94557,465,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",1299.45,{},185850,0,"""Europe""" +2024-09-04,94558,4704,"[\""Monitor\"", \""Laptop\""]",1268.96,{},36803,1,"""Asia""" +2024-03-16,94559,8562,"[\""Wireless Mouse\"", \""Phone\""]",437.32,{},146287,1,"""South America""" +2023-05-16,94560,3009,"[\""Wireless Mouse\"", \""Keyboard\""]",3004.77,{},98688,0,"""Africa""" +2024-05-11,94561,3894,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",4201.71,"{\""promo\"": \""8%\""}",289920,1,"""South America""" +2023-04-06,94562,38,"[\""Tablet\"", \""Charger\""]",1991.04,"{\""seasonal\"": \""30%\""}",244724,1,"""Africa""" +2023-08-13,94563,7462,"[\""Tablet\""]",2621.99,{},83187,1,"""Africa""" +2023-02-11,94564,9685,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",4386.77,"{\""loyalty\"": \""13%\""}",135741,1,"""Africa""" +2024-12-12,94565,6374,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",2974.14,"{\""seasonal\"": \""18%\""}",175269,1,"""South America""" +2024-08-07,94566,2190,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2750.9,{},191533,0,"""Asia""" +2024-06-27,94567,8046,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1427.99,{},24513,1,"""Africa""" +2024-11-18,94568,657,"[\""Wireless Mouse\""]",2721.43,"{\""loyalty\"": \""13%\""}",164477,1,"""Europe""" +2023-09-22,94569,2445,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",404.58,"{\""loyalty\"": \""19%\""}",60568,1,"""Europe""" +2023-08-23,94570,835,"[\""Tablet\""]",4770.11,{},137197,1,"""North America""" +2024-12-11,94571,9188,"[\""Tablet\"", \""Headphones\""]",4900.2,"{\""promo\"": \""30%\""}",249749,0,"""Europe""" +2024-12-07,94572,9471,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",80.61,"{\""loyalty\"": \""23%\""}",206127,0,"""Asia""" +2023-11-20,94573,4424,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4292.9,"{\""loyalty\"": \""22%\""}",193731,1,"""North America""" +2024-09-15,94574,6958,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4369.73,{},159396,0,"""Asia""" +2024-04-14,94575,536,"[\""Wireless Mouse\""]",305.44,{},196125,0,"""Asia""" +2023-03-03,94576,8681,"[\""Phone\"", \""Laptop\""]",1547.37,"{\""seasonal\"": \""27%\""}",135119,1,"""North America""" +2024-11-06,94577,5141,"[\""Monitor\"", \""Tablet\""]",3424.37,"{\""seasonal\"": \""11%\""}",220135,1,"""Asia""" +2024-10-31,94578,1307,"[\""Wireless Mouse\"", \""Phone\""]",3669.25,"{\""loyalty\"": \""30%\""}",228941,1,"""South America""" +2024-05-16,94579,5918,"[\""Keyboard\"", \""Charger\""]",3112.51,{},139647,0,"""South America""" +2024-10-26,94580,5383,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3898.55,{},209102,0,"""Europe""" +2024-02-07,94581,2472,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",1610.37,"{\""seasonal\"": \""9%\""}",147361,1,"""Europe""" +2023-01-28,94582,1044,"[\""Monitor\""]",3752.66,"{\"": \""16%\""}",44626,0,"""Asia""" +2023-09-22,94583,2198,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1172.28,"{\""seasonal\"": \""11%\""}",92175,0,"""Asia""" +2023-03-26,94584,6703,"[\""Headphones\"", \""Keyboard\""]",2009.1,"{\""seasonal\"": \""11%\""}",70710,0,"""Europe""" +2023-10-07,94585,1395,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",4607.09,"{\"": \""30%\""}",255030,0,"""North America""" +2024-08-07,94586,6370,"[\""Monitor\"", \""Phone\""]",730.73,{},174003,1,"""Asia""" +2024-10-05,94587,4120,"[\""Tablet\""]",550.91,"{\""seasonal\"": \""10%\""}",245211,1,"""Europe""" +2023-09-06,94588,9428,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1536.05,{},126140,1,"""South America""" +2023-02-17,94589,4403,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",575.98,"{\""seasonal\"": \""9%\""}",297658,0,"""North America""" +2024-11-05,94590,5671,"[\""Laptop\""]",3704.74,{},80109,1,"""Africa""" +2024-08-13,94591,9331,"[\""Monitor\"", \""Charger\""]",1393.14,{},5719,1,"""Africa""" +2023-11-16,94592,4449,"[\""Monitor\"", \""Tablet\""]",1845.22,{},270900,0,"""Asia""" +2023-11-01,94593,2409,"[\""Laptop\""]",2287.39,"{\""loyalty\"": \""7%\""}",113499,1,"""Europe""" +2023-09-13,94594,3542,"[\""Charger\"", \""Tablet\"", \""Phone\""]",676.56,"{\"": \""24%\""}",238567,1,"""North America""" +2023-08-13,94595,4548,"[\""Wireless Mouse\"", \""Tablet\""]",367.12,{},296360,1,"""Asia""" +2024-10-03,94596,7139,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4082.64,{},85142,0,"""Europe""" +2024-11-20,94597,6508,"[\""Tablet\""]",3730.29,"{\""promo\"": \""5%\""}",177465,0,"""Asia""" +2023-02-20,94598,6884,"[\""Charger\"", \""Phone\""]",4508.45,"{\""seasonal\"": \""22%\""}",161299,0,"""North America""" +2024-04-03,94599,3115,"[\""Charger\""]",1040.54,"{\"": \""25%\""}",187988,0,"""Africa""" +2024-08-23,94600,9454,"[\""Laptop\""]",1600.49,"{\""seasonal\"": \""23%\""}",262290,1,"""South America""" +2023-04-03,94601,6699,"[\""Monitor\""]",475.76,{},215078,0,"""North America""" +2024-12-18,94602,6961,"[\""Keyboard\""]",4059.42,{},299318,1,"""Europe""" +2024-04-19,94603,2317,"[\""Monitor\"", \""Phone\"", \""Charger\""]",311.84,{},294823,0,"""South America""" +2024-11-18,94604,9798,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",447.95,{},286525,0,"""North America""" +2024-12-14,94605,4521,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3554.26,{},12849,1,"""Europe""" +2023-12-22,94606,8785,"[\""Laptop\""]",2496.41,"{\""loyalty\"": \""8%\""}",283429,0,"""North America""" +2023-04-28,94607,1538,"[\""Headphones\"", \""Phone\""]",2789.08,"{\"": \""23%\""}",220642,0,"""Europe""" +2023-08-17,94608,2840,"[\""Charger\"", \""Laptop\""]",4556.89,"{\""loyalty\"": \""25%\""}",112836,1,"""North America""" +2023-12-16,94609,567,"[\""Keyboard\"", \""Monitor\""]",1838.23,"{\""promo\"": \""18%\""}",145211,1,"""South America""" +2024-07-06,94610,1780,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",1474.72,{},291111,0,"""Europe""" +2024-12-30,94611,9726,"[\""Wireless Mouse\""]",2663.08,{},101879,0,"""Africa""" +2023-04-20,94612,3572,"[\""Headphones\"", \""Laptop\""]",1442.28,"{\""promo\"": \""5%\""}",48414,1,"""Europe""" +2024-10-01,94613,7047,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4117.18,"{\""promo\"": \""29%\""}",277247,0,"""South America""" +2023-05-13,94614,2782,"[\""Keyboard\"", \""Tablet\""]",2893.67,{},202715,1,"""Asia""" +2023-02-16,94615,8613,"[\""Laptop\""]",4253.2,"{\""seasonal\"": \""6%\""}",270835,1,"""North America""" +2024-09-08,94616,9955,"[\""Charger\"", \""Keyboard\""]",1648.23,"{\"": \""5%\""}",222590,0,"""Africa""" +2023-10-12,94617,8766,"[\""Monitor\""]",817.06,"{\""promo\"": \""16%\""}",63444,1,"""Europe""" +2023-03-23,94618,5312,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4928.04,{},260065,1,"""Africa""" +2024-04-23,94619,4634,"[\""Keyboard\""]",2605.2,{},49943,1,"""South America""" +2023-05-08,94620,25,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",2398.84,"{\""loyalty\"": \""6%\""}",49434,0,"""North America""" +2024-11-07,94621,4860,"[\""Phone\""]",800.72,{},273810,0,"""South America""" +2023-07-25,94622,8277,"[\""Monitor\""]",952.31,{},29977,0,"""South America""" +2023-04-14,94623,1938,"[\""Tablet\""]",722.51,{},49309,1,"""North America""" +2023-06-26,94624,8553,"[\""Laptop\"", \""Phone\""]",3241.07,"{\""loyalty\"": \""15%\""}",166775,0,"""Asia""" +2024-07-02,94625,228,"[\""Tablet\""]",822.95,"{\""loyalty\"": \""19%\""}",289250,0,"""Asia""" +2023-07-26,94626,651,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4204.1,"{\""loyalty\"": \""8%\""}",154507,1,"""Asia""" +2024-09-21,94627,7582,"[\""Charger\""]",3215.8,"{\"": \""6%\""}",249499,1,"""South America""" +2024-01-08,94628,3044,"[\""Charger\""]",1562.22,"{\"": \""22%\""}",78607,1,"""Europe""" +2023-06-08,94629,5970,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1952.96,"{\""promo\"": \""22%\""}",104772,1,"""South America""" +2024-08-01,94630,7249,"[\""Laptop\""]",170.49,"{\""loyalty\"": \""7%\""}",208435,1,"""Europe""" +2023-11-15,94631,2341,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4665.76,"{\"": \""9%\""}",263375,1,"""Asia""" +2024-04-11,94632,1310,"[\""Laptop\"", \""Wireless Mouse\""]",300.94,"{\""seasonal\"": \""8%\""}",136829,0,"""Europe""" +2023-04-25,94633,235,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1819.93,{},68724,1,"""North America""" +2023-04-02,94634,6889,"[\""Monitor\""]",2970.96,{},273903,1,"""Africa""" +2023-05-27,94635,6321,"[\""Phone\"", \""Monitor\""]",759.76,{},217190,0,"""Africa""" +2023-03-27,94636,7860,"[\""Wireless Mouse\""]",1630.7,"{\""loyalty\"": \""15%\""}",189276,1,"""Europe""" +2023-12-09,94637,6299,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",2342.18,{},111861,1,"""Europe""" +2024-10-20,94638,1333,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3989.05,{},287636,1,"""Africa""" +2023-02-07,94639,8413,"[\""Monitor\"", \""Laptop\""]",1922.81,"{\""seasonal\"": \""7%\""}",100067,0,"""Europe""" +2024-01-07,94640,9262,"[\""Monitor\""]",3429.25,{},94082,0,"""Europe""" +2024-09-16,94641,8738,"[\""Wireless Mouse\""]",191.26,{},159168,0,"""Africa""" +2023-11-18,94642,6717,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",2972.26,"{\""seasonal\"": \""9%\""}",275227,1,"""Africa""" +2023-06-23,94643,6543,"[\""Keyboard\"", \""Headphones\""]",1505.69,"{\"": \""30%\""}",58588,0,"""Africa""" +2023-08-13,94644,8160,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3859.32,{},123498,1,"""Africa""" +2023-07-10,94645,8253,"[\""Keyboard\"", \""Wireless Mouse\""]",4353.99,{},60407,0,"""North America""" +2024-09-23,94646,3144,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",244.06,{},9187,1,"""South America""" +2023-06-09,94647,9841,"[\""Tablet\""]",4139.29,{},275369,1,"""Europe""" +2024-10-04,94648,5175,"[\""Wireless Mouse\"", \""Tablet\""]",3690.53,{},211240,0,"""South America""" +2024-02-28,94649,8514,"[\""Wireless Mouse\""]",3665.98,"{\"": \""11%\""}",287318,1,"""Europe""" +2024-08-14,94650,9889,"[\""Keyboard\"", \""Tablet\""]",3242.74,{},171488,1,"""South America""" +2023-03-09,94651,8064,"[\""Keyboard\"", \""Charger\""]",1031.5,"{\""promo\"": \""27%\""}",25613,1,"""South America""" +2024-12-18,94652,9315,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",2169.4,"{\"": \""10%\""}",273085,1,"""Asia""" +2024-11-10,94653,4659,"[\""Phone\"", \""Wireless Mouse\""]",2194.09,"{\""promo\"": \""7%\""}",171132,1,"""Europe""" +2023-08-28,94654,2970,"[\""Monitor\""]",4737.41,{},172236,0,"""Asia""" +2024-02-18,94655,7351,"[\""Monitor\"", \""Laptop\""]",1643.55,{},153050,0,"""Europe""" +2024-04-17,94656,263,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2515.6,{},117616,0,"""South America""" +2023-08-14,94657,207,"[\""Charger\"", \""Tablet\""]",980.34,"{\"": \""27%\""}",104365,0,"""North America""" +2024-11-13,94658,1795,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",1865.28,{},276789,0,"""Africa""" +2023-09-20,94659,603,"[\""Headphones\""]",4173.06,"{\"": \""7%\""}",5479,0,"""Europe""" +2024-03-09,94660,4903,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1424.02,"{\""loyalty\"": \""11%\""}",167548,0,"""North America""" +2023-12-30,94661,7842,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",2831.97,"{\"": \""11%\""}",218933,1,"""Africa""" +2024-10-28,94662,7965,"[\""Monitor\"", \""Keyboard\""]",2591.14,"{\""promo\"": \""14%\""}",95198,1,"""Europe""" +2024-01-06,94663,6817,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",204.35,"{\"": \""25%\""}",55276,1,"""Asia""" +2023-12-19,94664,2679,"[\""Monitor\"", \""Tablet\""]",1623.26,"{\""loyalty\"": \""22%\""}",271516,0,"""Asia""" +2023-09-15,94665,9605,"[\""Tablet\""]",2256.97,"{\""seasonal\"": \""16%\""}",244235,0,"""North America""" +2024-10-02,94666,7078,"[\""Tablet\""]",2652.12,{},195301,0,"""Africa""" +2024-09-29,94667,6060,"[\""Phone\"", \""Laptop\""]",1569.01,"{\"": \""30%\""}",198247,1,"""South America""" +2023-11-26,94668,6881,"[\""Phone\"", \""Charger\""]",1035.59,{},256057,1,"""Africa""" +2023-11-28,94669,5997,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",3427.6,{},137272,1,"""North America""" +2024-09-14,94670,7022,"[\""Phone\""]",3400.99,{},7999,0,"""North America""" +2024-02-18,94671,8300,"[\""Phone\"", \""Monitor\""]",4878.74,"{\""loyalty\"": \""5%\""}",294364,0,"""South America""" +2023-12-14,94672,3530,"[\""Phone\""]",1959.06,"{\""loyalty\"": \""18%\""}",105226,0,"""Europe""" +2024-01-27,94673,2287,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3791.45,"{\""loyalty\"": \""29%\""}",89392,1,"""South America""" +2023-06-18,94674,3649,"[\""Monitor\"", \""Headphones\""]",3049.47,{},59023,1,"""South America""" +2024-02-08,94675,1479,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2773.86,"{\"": \""21%\""}",23324,1,"""North America""" +2024-08-17,94676,3702,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",2003.51,"{\""loyalty\"": \""30%\""}",118023,0,"""South America""" +2023-02-18,94677,2948,"[\""Keyboard\""]",1521.64,"{\"": \""13%\""}",40802,1,"""Europe""" +2024-08-05,94678,9673,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1001.81,{},222064,1,"""South America""" +2024-03-25,94679,3007,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2442.94,"{\"": \""8%\""}",174732,1,"""South America""" +2023-09-15,94680,5151,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",518.94,{},192108,0,"""South America""" +2023-03-12,94681,3705,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",2675.6,"{\""promo\"": \""19%\""}",268714,0,"""Africa""" +2024-09-24,94682,5749,"[\""Phone\""]",312.55,"{\"": \""22%\""}",75836,1,"""South America""" +2023-11-01,94683,6625,"[\""Charger\"", \""Laptop\""]",3075.21,"{\"": \""17%\""}",205793,0,"""Africa""" +2023-10-27,94684,9296,"[\""Headphones\""]",3109.47,{},185535,1,"""Africa""" +2023-09-09,94685,6672,"[\""Tablet\"", \""Phone\"", \""Charger\""]",535.86,"{\""loyalty\"": \""14%\""}",207591,1,"""North America""" +2024-03-10,94686,7701,"[\""Keyboard\""]",1033.6,"{\""promo\"": \""22%\""}",258687,1,"""Europe""" +2024-07-19,94687,9032,"[\""Wireless Mouse\"", \""Phone\""]",371.45,{},124312,0,"""Europe""" +2024-10-13,94688,9227,"[\""Tablet\""]",2173.7,"{\"": \""9%\""}",229346,0,"""North America""" +2024-12-27,94689,1317,"[\""Keyboard\"", \""Wireless Mouse\""]",4517.11,"{\"": \""27%\""}",37350,1,"""South America""" +2024-06-01,94690,20,"[\""Phone\""]",1313.55,"{\"": \""6%\""}",205331,1,"""Europe""" +2024-12-11,94691,1390,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",52.98,{},67312,1,"""South America""" +2024-10-31,94692,6969,"[\""Wireless Mouse\""]",1563.59,{},183745,1,"""Asia""" +2024-08-30,94693,766,"[\""Wireless Mouse\"", \""Tablet\""]",2460.54,{},65072,0,"""Africa""" +2024-11-11,94694,2595,"[\""Laptop\"", \""Wireless Mouse\""]",172.25,"{\"": \""28%\""}",161886,0,"""North America""" +2024-06-24,94695,4117,"[\""Laptop\""]",4509.45,"{\""promo\"": \""26%\""}",46963,1,"""Europe""" +2024-03-04,94696,7947,"[\""Laptop\"", \""Monitor\""]",3939.75,"{\""promo\"": \""10%\""}",147522,1,"""South America""" +2023-10-13,94697,2070,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",215.0,"{\""seasonal\"": \""21%\""}",143037,1,"""South America""" +2023-05-27,94698,9907,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3413.77,"{\""loyalty\"": \""18%\""}",171664,0,"""North America""" +2023-05-05,94699,2411,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2140.07,{},139579,0,"""North America""" +2024-03-01,94700,4870,"[\""Laptop\""]",368.17,"{\""loyalty\"": \""6%\""}",270081,0,"""Europe""" +2024-05-09,94701,9492,"[\""Headphones\""]",4676.15,{},75701,1,"""Europe""" +2024-07-25,94702,8418,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3391.43,"{\"": \""26%\""}",171235,1,"""Asia""" +2023-08-01,94703,244,"[\""Phone\"", \""Laptop\"", \""Charger\""]",417.99,"{\"": \""8%\""}",169056,0,"""Europe""" +2023-04-22,94704,1162,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",269.78,"{\"": \""21%\""}",77102,1,"""Europe""" +2023-12-22,94705,759,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1507.41,{},226064,1,"""Asia""" +2024-03-03,94706,2830,"[\""Charger\""]",878.37,"{\""seasonal\"": \""14%\""}",211362,1,"""North America""" +2024-10-12,94707,1528,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3498.9,{},80660,1,"""Europe""" +2024-10-17,94708,1624,"[\""Keyboard\"", \""Headphones\""]",2645.05,"{\""seasonal\"": \""24%\""}",194579,0,"""Asia""" +2023-07-10,94709,5588,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3789.39,{},129719,1,"""Africa""" +2023-08-30,94710,442,"[\""Laptop\"", \""Headphones\""]",1547.78,"{\"": \""24%\""}",62972,1,"""Europe""" +2024-10-20,94711,5563,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",352.29,"{\""seasonal\"": \""22%\""}",126136,0,"""Europe""" +2024-07-10,94712,2606,"[\""Laptop\""]",2188.76,{},120926,0,"""Africa""" +2024-01-06,94713,2796,"[\""Monitor\""]",3165.47,"{\""promo\"": \""24%\""}",274515,1,"""South America""" +2024-04-07,94714,8802,"[\""Headphones\"", \""Keyboard\""]",1227.59,"{\""loyalty\"": \""10%\""}",172722,0,"""Europe""" +2024-09-23,94715,7132,"[\""Phone\""]",237.41,{},103299,0,"""Europe""" +2023-09-02,94716,9153,"[\""Keyboard\"", \""Charger\""]",4052.12,{},57459,1,"""Europe""" +2023-08-29,94717,220,"[\""Tablet\""]",2041.45,"{\""loyalty\"": \""12%\""}",155668,1,"""South America""" +2024-12-07,94718,349,"[\""Charger\""]",2057.79,"{\""promo\"": \""27%\""}",158613,0,"""North America""" +2023-12-15,94719,4380,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2138.39,{},218663,0,"""North America""" +2023-01-29,94720,553,"[\""Charger\""]",2206.86,{},99396,0,"""Europe""" +2024-12-20,94721,9161,"[\""Monitor\"", \""Headphones\""]",964.87,{},104837,0,"""Asia""" +2023-03-24,94722,574,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",354.43,"{\"": \""15%\""}",248608,1,"""Africa""" +2023-12-15,94723,5038,"[\""Laptop\""]",817.0,"{\"": \""27%\""}",188304,0,"""South America""" +2024-05-23,94724,3834,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1816.91,"{\"": \""7%\""}",253630,1,"""North America""" +2024-06-19,94725,1986,"[\""Charger\""]",3517.04,{},79116,1,"""South America""" +2024-10-28,94726,9140,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",2729.47,{},15682,1,"""Europe""" +2023-07-17,94727,3820,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2656.62,{},120420,0,"""Africa""" +2024-05-20,94728,3412,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2163.09,{},198040,0,"""North America""" +2024-10-01,94729,1794,"[\""Charger\""]",3423.76,{},157590,1,"""North America""" +2023-07-29,94730,1389,"[\""Keyboard\""]",2618.99,"{\""seasonal\"": \""11%\""}",73207,1,"""Europe""" +2023-09-01,94731,6359,"[\""Charger\""]",1809.3,{},115938,1,"""Europe""" +2024-01-14,94732,8531,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3546.01,"{\""loyalty\"": \""8%\""}",147534,0,"""Africa""" +2023-12-17,94733,3314,"[\""Phone\""]",2828.94,{},135115,0,"""South America""" +2024-12-05,94734,8212,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4497.94,"{\""loyalty\"": \""16%\""}",221461,0,"""South America""" +2024-04-01,94735,9294,"[\""Monitor\""]",4420.4,{},153969,1,"""North America""" +2023-03-26,94736,1145,"[\""Monitor\""]",2354.94,{},81648,0,"""Europe""" +2024-04-14,94737,1110,"[\""Laptop\""]",1704.02,"{\""loyalty\"": \""23%\""}",103501,0,"""South America""" +2024-06-25,94738,9816,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1571.16,"{\""loyalty\"": \""10%\""}",143721,1,"""Asia""" +2023-06-18,94739,1610,"[\""Wireless Mouse\"", \""Monitor\""]",1159.26,{},138525,0,"""South America""" +2024-03-05,94740,1402,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1279.54,"{\""loyalty\"": \""16%\""}",148601,0,"""Africa""" +2024-04-24,94741,1757,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2563.62,"{\""seasonal\"": \""24%\""}",185828,1,"""Asia""" +2023-03-11,94742,6586,"[\""Headphones\""]",1225.85,"{\""seasonal\"": \""29%\""}",239195,1,"""North America""" +2023-06-22,94743,8223,"[\""Tablet\""]",408.02,{},12027,0,"""Africa""" +2024-06-10,94744,5328,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3725.67,{},208419,0,"""North America""" +2024-03-09,94745,7858,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3229.03,"{\""loyalty\"": \""21%\""}",155017,1,"""South America""" +2024-05-27,94746,6123,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4790.79,{},135819,0,"""Africa""" +2023-07-24,94747,5888,"[\""Wireless Mouse\""]",4638.82,{},26643,1,"""South America""" +2024-05-28,94748,4230,"[\""Keyboard\"", \""Laptop\""]",2647.56,"{\"": \""25%\""}",182109,1,"""South America""" +2023-06-15,94749,1566,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2387.16,"{\""seasonal\"": \""13%\""}",286840,1,"""Europe""" +2023-02-19,94750,6376,"[\""Laptop\""]",4393.61,"{\""promo\"": \""11%\""}",1574,0,"""Europe""" +2023-04-06,94751,6598,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",771.34,"{\""promo\"": \""13%\""}",213579,0,"""Africa""" +2023-10-13,94752,2018,"[\""Phone\"", \""Keyboard\""]",4583.03,"{\""loyalty\"": \""27%\""}",131469,0,"""Europe""" +2023-05-13,94753,6617,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",2682.59,"{\""promo\"": \""11%\""}",271140,0,"""South America""" +2023-11-22,94754,3627,"[\""Keyboard\"", \""Laptop\""]",1526.46,{},268272,1,"""South America""" +2023-02-10,94755,6327,"[\""Charger\""]",2681.37,"{\"": \""8%\""}",285785,1,"""Europe""" +2024-05-09,94756,5904,"[\""Charger\""]",3905.95,{},291132,1,"""Africa""" +2023-10-21,94757,1279,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",947.33,"{\""loyalty\"": \""26%\""}",164277,0,"""Europe""" +2024-03-05,94758,5566,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4164.24,{},203451,0,"""South America""" +2023-12-27,94759,4694,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4371.18,"{\""promo\"": \""27%\""}",298803,0,"""Africa""" +2023-03-06,94760,709,"[\""Monitor\""]",4489.49,"{\""loyalty\"": \""15%\""}",209539,0,"""South America""" +2024-06-23,94761,551,"[\""Wireless Mouse\""]",4334.96,{},31159,1,"""Asia""" +2023-11-12,94762,7160,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",335.11,"{\""loyalty\"": \""28%\""}",44530,1,"""Europe""" +2024-03-15,94763,6113,"[\""Charger\""]",1844.37,"{\""promo\"": \""7%\""}",134196,0,"""South America""" +2024-08-25,94764,212,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1013.13,{},277538,0,"""South America""" +2024-09-27,94765,2815,"[\""Wireless Mouse\""]",3910.31,"{\""seasonal\"": \""17%\""}",154792,1,"""South America""" +2024-06-21,94766,2889,"[\""Laptop\"", \""Headphones\""]",1778.66,"{\""seasonal\"": \""28%\""}",81290,0,"""Africa""" +2024-10-29,94767,2904,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",2333.85,{},97803,1,"""South America""" +2023-04-27,94768,904,"[\""Keyboard\"", \""Laptop\""]",1328.03,"{\"": \""19%\""}",156803,0,"""Africa""" +2024-05-25,94769,2232,"[\""Wireless Mouse\"", \""Phone\""]",2755.73,"{\""loyalty\"": \""22%\""}",283698,0,"""Asia""" +2023-11-04,94770,7159,"[\""Charger\""]",2231.21,{},209913,1,"""Europe""" +2023-02-05,94771,4275,"[\""Wireless Mouse\""]",4363.17,"{\""seasonal\"": \""25%\""}",195645,1,"""Europe""" +2024-09-02,94772,812,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",4553.29,"{\"": \""27%\""}",67786,0,"""Africa""" +2024-03-05,94773,1588,"[\""Phone\""]",2849.66,"{\""seasonal\"": \""23%\""}",29823,0,"""North America""" +2024-06-10,94774,415,"[\""Charger\"", \""Monitor\""]",2266.47,{},192446,0,"""Europe""" +2024-08-20,94775,417,"[\""Tablet\""]",1372.32,{},46954,0,"""South America""" +2024-06-11,94776,9458,"[\""Charger\"", \""Monitor\""]",1922.58,{},56813,0,"""Europe""" +2024-06-19,94777,4030,"[\""Phone\""]",1555.59,{},292658,0,"""South America""" +2024-01-26,94778,2129,"[\""Headphones\"", \""Monitor\""]",1093.54,{},162834,1,"""Asia""" +2023-07-27,94779,6689,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1388.18,"{\""loyalty\"": \""18%\""}",12704,0,"""Africa""" +2024-04-26,94780,6009,"[\""Tablet\""]",1154.89,"{\""seasonal\"": \""24%\""}",112403,1,"""Asia""" +2023-02-16,94781,4189,"[\""Charger\""]",4776.96,{},266246,1,"""South America""" +2023-04-20,94782,3520,"[\""Keyboard\""]",4299.44,{},280515,0,"""South America""" +2023-02-01,94783,6988,"[\""Wireless Mouse\"", \""Headphones\""]",2242.69,{},198129,0,"""Europe""" +2024-08-11,94784,1962,"[\""Headphones\""]",4625.07,{},89130,0,"""South America""" +2023-09-11,94785,8633,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",3117.61,{},296260,0,"""Asia""" +2023-11-04,94786,84,"[\""Charger\"", \""Phone\""]",1726.74,"{\""loyalty\"": \""22%\""}",26729,1,"""Europe""" +2023-02-11,94787,7027,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4928.71,"{\""loyalty\"": \""24%\""}",264370,0,"""Europe""" +2024-01-24,94788,8481,"[\""Charger\""]",2912.92,{},77758,1,"""North America""" +2023-11-19,94789,214,"[\""Tablet\"", \""Headphones\""]",3835.31,{},42131,0,"""South America""" +2024-01-05,94790,5140,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1454.36,"{\""promo\"": \""27%\""}",220862,0,"""South America""" +2024-12-04,94791,2011,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",638.06,{},11695,1,"""Asia""" +2024-04-25,94792,5792,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",413.61,{},137962,1,"""Europe""" +2023-10-09,94793,9825,"[\""Laptop\""]",4914.04,{},169643,0,"""Africa""" +2024-10-10,94794,4032,"[\""Phone\"", \""Wireless Mouse\""]",2945.66,{},136722,1,"""Africa""" +2023-09-13,94795,6949,"[\""Monitor\""]",3783.47,"{\""seasonal\"": \""22%\""}",260950,0,"""South America""" +2023-05-15,94796,6372,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1383.17,"{\""promo\"": \""26%\""}",22824,1,"""Europe""" +2023-03-10,94797,6175,"[\""Tablet\""]",1956.08,"{\""seasonal\"": \""8%\""}",222010,1,"""North America""" +2024-03-21,94798,2844,"[\""Monitor\""]",4297.51,{},244906,0,"""Asia""" +2024-06-10,94799,6496,"[\""Laptop\""]",308.49,{},141384,0,"""Africa""" +2024-09-21,94800,5204,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4696.28,{},99879,0,"""Asia""" +2023-10-13,94801,8200,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",103.72,"{\""loyalty\"": \""13%\""}",133220,0,"""Asia""" +2024-02-15,94802,548,"[\""Headphones\""]",3624.49,"{\""seasonal\"": \""11%\""}",104388,1,"""Africa""" +2023-09-15,94803,9225,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",2009.59,{},277327,1,"""North America""" +2024-09-02,94804,1038,"[\""Charger\""]",143.3,{},3692,0,"""North America""" +2023-01-29,94805,7053,"[\""Laptop\""]",4710.21,"{\""promo\"": \""5%\""}",99184,0,"""Asia""" +2024-10-16,94806,1810,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2849.57,"{\""promo\"": \""11%\""}",94127,0,"""North America""" +2023-07-03,94807,2685,"[\""Phone\"", \""Charger\""]",585.22,{},223018,0,"""South America""" +2023-07-15,94808,7695,"[\""Wireless Mouse\"", \""Tablet\""]",79.32,"{\""loyalty\"": \""28%\""}",168351,1,"""Europe""" +2023-03-28,94809,6427,"[\""Laptop\"", \""Phone\""]",2047.67,{},101824,0,"""North America""" +2023-07-06,94810,1076,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",3507.63,"{\"": \""18%\""}",277647,1,"""North America""" +2023-03-22,94811,3504,"[\""Charger\"", \""Wireless Mouse\""]",3493.22,{},183775,0,"""North America""" +2023-06-26,94812,3446,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3284.19,"{\""loyalty\"": \""26%\""}",78010,0,"""Asia""" +2023-11-07,94813,9129,"[\""Wireless Mouse\""]",714.55,"{\"": \""16%\""}",117803,0,"""Africa""" +2024-04-01,94814,5655,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3423.96,"{\"": \""14%\""}",147620,1,"""Africa""" +2023-08-08,94815,2410,"[\""Keyboard\"", \""Tablet\""]",4436.75,{},215043,0,"""Asia""" +2024-01-29,94816,6680,"[\""Charger\""]",2543.49,{},236519,0,"""Asia""" +2024-10-15,94817,3303,"[\""Phone\"", \""Monitor\""]",1332.93,"{\"": \""26%\""}",67000,0,"""Africa""" +2023-01-17,94818,5969,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",4814.55,{},269337,0,"""North America""" +2023-03-15,94819,3266,"[\""Charger\"", \""Phone\""]",4122.69,{},104537,1,"""North America""" +2023-01-31,94820,5766,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2080.66,"{\""seasonal\"": \""21%\""}",80714,0,"""Europe""" +2024-04-26,94821,6092,"[\""Phone\""]",4473.48,"{\""seasonal\"": \""22%\""}",39655,1,"""South America""" +2023-04-25,94822,391,"[\""Headphones\""]",1129.46,{},202958,1,"""Europe""" +2023-10-19,94823,710,"[\""Keyboard\""]",3159.54,{},236200,1,"""South America""" +2024-06-29,94824,1272,"[\""Keyboard\"", \""Laptop\""]",1961.92,{},174966,0,"""South America""" +2024-09-20,94825,9131,"[\""Keyboard\"", \""Wireless Mouse\""]",2453.75,"{\""loyalty\"": \""17%\""}",74479,0,"""South America""" +2023-09-21,94826,9208,"[\""Wireless Mouse\""]",1380.15,"{\""loyalty\"": \""13%\""}",173827,0,"""Africa""" +2024-06-26,94827,7646,"[\""Monitor\"", \""Phone\""]",1085.59,"{\""loyalty\"": \""18%\""}",267335,1,"""Europe""" +2023-02-10,94828,146,"[\""Headphones\"", \""Laptop\""]",3460.06,"{\""promo\"": \""20%\""}",126759,1,"""Africa""" +2024-08-14,94829,9414,"[\""Laptop\""]",4708.41,{},74638,0,"""Asia""" +2024-02-15,94830,6416,"[\""Laptop\""]",1123.31,{},133050,0,"""Europe""" +2024-05-04,94831,7751,"[\""Charger\"", \""Wireless Mouse\""]",3175.15,{},104565,0,"""Europe""" +2024-12-02,94832,2622,"[\""Monitor\"", \""Wireless Mouse\""]",997.88,{},2290,1,"""Africa""" +2024-06-11,94833,2830,"[\""Monitor\"", \""Laptop\""]",1808.23,{},185798,0,"""Europe""" +2024-12-31,94834,1404,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",3339.61,"{\""seasonal\"": \""15%\""}",181625,0,"""South America""" +2024-02-19,94835,2272,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4569.17,"{\""loyalty\"": \""30%\""}",84011,0,"""Asia""" +2023-04-24,94836,7337,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4263.08,{},8480,0,"""North America""" +2024-09-13,94837,1627,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4382.8,{},115803,0,"""North America""" +2023-02-23,94838,3214,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3656.61,"{\""loyalty\"": \""24%\""}",213140,0,"""Asia""" +2023-04-29,94839,9040,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4204.81,"{\"": \""14%\""}",132455,0,"""Europe""" +2024-06-28,94840,2537,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4166.67,"{\""loyalty\"": \""13%\""}",85588,1,"""North America""" +2024-02-23,94841,1968,"[\""Laptop\"", \""Monitor\""]",677.08,{},281223,1,"""Asia""" +2023-07-23,94842,778,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",2697.72,"{\""seasonal\"": \""22%\""}",121246,1,"""Asia""" +2024-11-09,94843,5733,"[\""Tablet\""]",2457.03,"{\"": \""27%\""}",197211,1,"""Africa""" +2023-12-21,94844,6263,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",502.47,{},230036,1,"""Asia""" +2024-01-24,94845,7776,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3385.0,"{\"": \""21%\""}",97558,1,"""Africa""" +2023-03-04,94846,6973,"[\""Tablet\"", \""Phone\""]",3439.92,{},58752,0,"""Asia""" +2023-11-27,94847,5078,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4249.4,{},298841,1,"""North America""" +2024-03-14,94848,2292,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",1494.83,{},147697,0,"""South America""" +2023-12-16,94849,8993,"[\""Laptop\"", \""Phone\""]",4885.76,"{\""loyalty\"": \""26%\""}",270799,0,"""Asia""" +2024-01-19,94850,3698,"[\""Keyboard\""]",4929.99,"{\"": \""23%\""}",79080,0,"""Europe""" +2024-06-14,94851,7927,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",631.89,{},43000,1,"""Africa""" +2024-05-31,94852,3699,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",3492.72,"{\""loyalty\"": \""9%\""}",210116,1,"""Africa""" +2024-07-11,94853,9497,"[\""Laptop\""]",3599.67,"{\"": \""21%\""}",244560,1,"""North America""" +2023-10-07,94854,3987,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4852.91,{},95984,1,"""Europe""" +2023-10-04,94855,4632,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2849.45,"{\"": \""9%\""}",294551,0,"""North America""" +2023-03-27,94856,5756,"[\""Wireless Mouse\"", \""Phone\""]",3595.52,{},297655,0,"""Africa""" +2023-05-05,94857,477,"[\""Headphones\""]",4600.58,{},226741,0,"""Asia""" +2023-03-15,94858,478,"[\""Tablet\""]",2488.53,"{\""promo\"": \""19%\""}",103707,1,"""North America""" +2024-12-24,94859,3606,"[\""Headphones\"", \""Charger\""]",200.72,{},38536,0,"""Africa""" +2024-01-09,94860,3540,"[\""Phone\"", \""Charger\""]",4230.44,"{\"": \""18%\""}",298702,1,"""North America""" +2023-07-16,94861,9966,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",593.15,{},81790,1,"""South America""" +2023-04-12,94862,8766,"[\""Wireless Mouse\"", \""Tablet\""]",4793.88,{},280499,1,"""Africa""" +2024-03-12,94863,3332,"[\""Tablet\""]",4676.83,{},55505,0,"""Europe""" +2024-05-06,94864,1452,"[\""Charger\"", \""Headphones\""]",3573.1,{},90853,0,"""Africa""" +2023-12-14,94865,2243,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3447.38,{},281041,0,"""Africa""" +2024-01-15,94866,5877,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4769.32,"{\""seasonal\"": \""9%\""}",213184,1,"""Africa""" +2023-05-07,94867,1468,"[\""Headphones\"", \""Wireless Mouse\""]",414.11,"{\"": \""14%\""}",263024,1,"""North America""" +2024-12-12,94868,7507,"[\""Keyboard\"", \""Laptop\""]",3002.64,{},264231,0,"""South America""" +2023-05-31,94869,2174,"[\""Charger\""]",887.95,"{\"": \""6%\""}",185548,1,"""Europe""" +2023-03-18,94870,2520,"[\""Phone\""]",1812.12,{},92525,1,"""South America""" +2023-05-17,94871,3380,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2276.37,"{\""loyalty\"": \""14%\""}",172408,1,"""Africa""" +2024-08-14,94872,9444,"[\""Charger\"", \""Tablet\"", \""Phone\""]",4072.63,"{\""loyalty\"": \""22%\""}",125041,0,"""South America""" +2024-04-12,94873,4666,"[\""Headphones\""]",3897.73,"{\"": \""28%\""}",208123,0,"""Asia""" +2023-12-27,94874,8471,"[\""Headphones\""]",2297.45,"{\""loyalty\"": \""6%\""}",185305,1,"""South America""" +2023-10-02,94875,540,"[\""Headphones\"", \""Keyboard\""]",525.92,{},219959,0,"""North America""" +2024-04-30,94876,4818,"[\""Tablet\""]",793.6,"{\"": \""15%\""}",18842,1,"""Asia""" +2023-04-10,94877,8689,"[\""Tablet\"", \""Keyboard\""]",1613.47,"{\""promo\"": \""24%\""}",52519,0,"""South America""" +2023-02-06,94878,3620,"[\""Monitor\"", \""Keyboard\""]",4869.59,"{\""promo\"": \""28%\""}",10619,0,"""Europe""" +2023-05-23,94879,1825,"[\""Wireless Mouse\"", \""Headphones\""]",647.48,"{\""loyalty\"": \""27%\""}",169952,0,"""North America""" +2024-11-08,94880,1366,"[\""Tablet\""]",1629.12,{},125959,0,"""Asia""" +2023-07-19,94881,893,"[\""Phone\"", \""Monitor\""]",643.66,{},236853,0,"""Africa""" +2023-05-24,94882,8857,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1949.96,{},88375,1,"""North America""" +2024-10-26,94883,6779,"[\""Wireless Mouse\"", \""Monitor\""]",345.67,"{\""promo\"": \""8%\""}",273588,0,"""Africa""" +2023-11-02,94884,3795,"[\""Headphones\"", \""Tablet\""]",4035.76,"{\""promo\"": \""28%\""}",252726,0,"""Africa""" +2023-07-31,94885,1147,"[\""Phone\"", \""Monitor\""]",1442.96,{},5303,1,"""Europe""" +2023-08-16,94886,3718,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4278.32,{},104613,1,"""North America""" +2023-08-16,94887,869,"[\""Wireless Mouse\"", \""Headphones\""]",819.88,"{\"": \""25%\""}",249490,0,"""Europe""" +2023-10-09,94888,9234,"[\""Tablet\"", \""Wireless Mouse\""]",2621.52,"{\"": \""16%\""}",178700,1,"""Europe""" +2024-11-30,94889,3519,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1173.19,{},236293,1,"""Asia""" +2024-02-10,94890,7528,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",70.26,"{\""loyalty\"": \""20%\""}",258223,0,"""South America""" +2023-08-31,94891,7492,"[\""Monitor\""]",1502.78,"{\"": \""13%\""}",147846,1,"""South America""" +2023-06-07,94892,9600,"[\""Wireless Mouse\"", \""Keyboard\""]",2599.79,"{\""seasonal\"": \""28%\""}",203036,0,"""Asia""" +2023-09-30,94893,6575,"[\""Phone\"", \""Laptop\""]",1035.71,"{\""loyalty\"": \""20%\""}",41180,0,"""North America""" +2023-04-05,94894,382,"[\""Headphones\"", \""Phone\""]",1514.27,"{\""loyalty\"": \""11%\""}",177810,1,"""Europe""" +2023-04-18,94895,6891,"[\""Laptop\""]",2478.54,{},214046,0,"""Africa""" +2024-03-03,94896,1838,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",237.39,{},130865,0,"""Africa""" +2024-11-27,94897,3109,"[\""Wireless Mouse\""]",1996.38,"{\""promo\"": \""11%\""}",129802,0,"""Asia""" +2023-12-07,94898,2472,"[\""Phone\""]",4305.49,"{\""seasonal\"": \""9%\""}",242728,1,"""Asia""" +2023-09-11,94899,9331,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4378.97,{},157071,1,"""South America""" +2023-01-19,94900,6241,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4964.21,{},179175,1,"""Asia""" +2023-09-15,94901,6205,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",4858.44,"{\"": \""17%\""}",64392,1,"""South America""" +2023-08-03,94902,7933,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4826.01,"{\""seasonal\"": \""16%\""}",21493,1,"""Asia""" +2023-06-19,94903,7826,"[\""Charger\"", \""Monitor\""]",358.56,"{\""loyalty\"": \""23%\""}",82564,1,"""Europe""" +2024-03-21,94904,3116,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1627.72,{},124448,0,"""Asia""" +2023-01-25,94905,7743,"[\""Tablet\""]",3042.18,{},123267,1,"""Europe""" +2024-09-15,94906,5993,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",2519.67,"{\""loyalty\"": \""28%\""}",41652,1,"""Europe""" +2023-07-26,94907,5933,"[\""Charger\""]",549.33,"{\"": \""16%\""}",65253,0,"""Africa""" +2024-04-29,94908,8461,"[\""Wireless Mouse\""]",770.39,{},211697,1,"""North America""" +2024-08-20,94909,5160,"[\""Monitor\"", \""Phone\""]",1462.7,{},56810,0,"""Asia""" +2024-03-01,94910,267,"[\""Laptop\"", \""Wireless Mouse\""]",774.11,{},141250,0,"""Africa""" +2023-08-14,94911,5444,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1365.11,{},244027,1,"""South America""" +2024-08-11,94912,1461,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",263.57,"{\"": \""19%\""}",169886,1,"""North America""" +2024-04-29,94913,9550,"[\""Tablet\"", \""Keyboard\""]",1521.97,{},285945,0,"""South America""" +2023-04-12,94914,7783,"[\""Phone\""]",4046.86,{},134150,0,"""Africa""" +2023-12-06,94915,2683,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",1037.44,"{\""promo\"": \""9%\""}",113933,1,"""South America""" +2024-08-14,94916,4972,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2363.14,{},48631,1,"""Africa""" +2024-06-06,94917,4157,"[\""Wireless Mouse\""]",3134.26,{},76807,0,"""Europe""" +2023-04-08,94918,9918,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",446.44,{},178984,1,"""Europe""" +2023-03-07,94919,4835,"[\""Monitor\"", \""Charger\""]",1660.01,{},215103,1,"""North America""" +2024-02-15,94920,870,"[\""Wireless Mouse\"", \""Laptop\"", \""Headphones\""]",3252.89,"{\""promo\"": \""16%\""}",240836,0,"""Africa""" +2023-03-14,94921,2453,"[\""Headphones\"", \""Phone\"", \""Charger\""]",474.19,{},157173,1,"""South America""" +2023-07-03,94922,2208,"[\""Monitor\""]",558.95,"{\"": \""9%\""}",282953,1,"""North America""" +2023-02-20,94923,3954,"[\""Keyboard\""]",4315.27,{},98862,0,"""South America""" +2024-10-01,94924,7594,"[\""Charger\"", \""Tablet\""]",887.03,"{\""promo\"": \""5%\""}",8666,1,"""Asia""" +2023-07-19,94925,1654,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",777.06,"{\"": \""9%\""}",198306,1,"""South America""" +2023-05-23,94926,1605,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4374.68,{},170303,1,"""Asia""" +2024-01-17,94927,5623,"[\""Phone\""]",3913.21,{},113650,0,"""North America""" +2023-02-24,94928,4253,"[\""Charger\""]",3729.39,"{\""loyalty\"": \""8%\""}",215275,0,"""Europe""" +2024-02-20,94929,7354,"[\""Charger\"", \""Keyboard\""]",2803.44,{},9172,0,"""Europe""" +2023-12-11,94930,7912,"[\""Laptop\"", \""Headphones\""]",3045.03,"{\""seasonal\"": \""12%\""}",67836,0,"""Europe""" +2023-10-31,94931,7223,"[\""Monitor\""]",4648.99,"{\""loyalty\"": \""20%\""}",259929,1,"""Asia""" +2023-08-23,94932,6037,"[\""Monitor\"", \""Charger\""]",4685.18,{},13303,1,"""Africa""" +2024-12-23,94933,3857,"[\""Tablet\""]",754.13,"{\""seasonal\"": \""13%\""}",2873,0,"""Africa""" +2023-11-27,94934,1962,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3522.66,"{\""promo\"": \""29%\""}",299452,1,"""Asia""" +2024-03-07,94935,3091,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1223.1,"{\""seasonal\"": \""7%\""}",250489,1,"""South America""" +2023-09-03,94936,1604,"[\""Keyboard\""]",488.72,{},218043,1,"""Africa""" +2024-12-30,94937,9764,"[\""Tablet\"", \""Monitor\""]",1160.04,"{\""loyalty\"": \""26%\""}",100133,0,"""Asia""" +2024-03-04,94938,6896,"[\""Wireless Mouse\""]",3290.45,"{\"": \""30%\""}",219322,0,"""South America""" +2023-09-09,94939,9492,"[\""Keyboard\""]",2126.84,{},19905,0,"""Asia""" +2023-06-25,94940,9131,"[\""Wireless Mouse\"", \""Tablet\""]",223.63,"{\"": \""19%\""}",260343,1,"""South America""" +2023-03-01,94941,6142,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",573.37,"{\""promo\"": \""10%\""}",119259,1,"""Europe""" +2023-01-10,94942,331,"[\""Phone\""]",2062.48,"{\""loyalty\"": \""28%\""}",175222,0,"""Asia""" +2023-08-23,94943,83,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",740.41,{},12102,1,"""North America""" +2024-10-12,94944,5032,"[\""Laptop\""]",2961.39,{},165746,1,"""Europe""" +2023-03-31,94945,5949,"[\""Monitor\""]",2443.01,"{\""seasonal\"": \""9%\""}",93660,0,"""Europe""" +2024-05-06,94946,3919,"[\""Monitor\""]",4345.2,{},175145,1,"""North America""" +2024-09-07,94947,3357,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",4466.58,"{\""seasonal\"": \""7%\""}",298894,0,"""Europe""" +2023-11-21,94948,6688,"[\""Charger\"", \""Monitor\""]",2680.18,"{\""seasonal\"": \""5%\""}",224731,1,"""Asia""" +2024-02-29,94949,9235,"[\""Headphones\""]",3577.9,{},112543,1,"""North America""" +2024-01-29,94950,7381,"[\""Wireless Mouse\"", \""Monitor\""]",4975.31,"{\""seasonal\"": \""20%\""}",165179,1,"""North America""" +2023-06-06,94951,3313,"[\""Wireless Mouse\"", \""Monitor\""]",2472.15,"{\"": \""12%\""}",178410,1,"""Asia""" +2023-12-03,94952,8169,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",2260.58,{},106342,0,"""Europe""" +2023-02-18,94953,6090,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",1549.66,{},30396,1,"""Asia""" +2023-03-02,94954,5903,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3143.56,"{\"": \""29%\""}",116296,1,"""North America""" +2024-05-02,94955,2975,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",163.29,"{\""promo\"": \""17%\""}",291016,0,"""Europe""" +2024-05-03,94956,1945,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1382.38,"{\""seasonal\"": \""5%\""}",166848,0,"""North America""" +2023-06-04,94957,5180,"[\""Tablet\""]",2581.64,"{\""loyalty\"": \""27%\""}",299473,0,"""Asia""" +2024-08-01,94958,1342,"[\""Charger\""]",2141.57,"{\""loyalty\"": \""18%\""}",243778,1,"""Europe""" +2023-07-22,94959,7114,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",1535.95,{},19268,0,"""Asia""" +2024-04-07,94960,7044,"[\""Keyboard\""]",1655.11,{},69040,1,"""North America""" +2024-10-27,94961,3606,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",573.86,"{\""promo\"": \""12%\""}",141220,1,"""South America""" +2023-10-28,94962,416,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3495.32,{},139859,1,"""Africa""" +2024-04-06,94963,2570,"[\""Laptop\""]",3255.23,{},188385,0,"""North America""" +2024-05-17,94964,6738,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",2528.18,"{\""seasonal\"": \""29%\""}",31327,1,"""North America""" +2023-04-05,94965,2812,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",651.98,"{\""seasonal\"": \""15%\""}",22156,1,"""Asia""" +2024-03-16,94966,7826,"[\""Wireless Mouse\"", \""Charger\""]",4323.16,"{\"": \""6%\""}",128154,0,"""Europe""" +2024-11-24,94967,1589,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2014.01,{},113583,0,"""Asia""" +2024-02-19,94968,195,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",3696.39,{},183647,0,"""Europe""" +2023-02-08,94969,6593,"[\""Charger\""]",1385.4,{},12302,1,"""Europe""" +2024-11-09,94970,1297,"[\""Phone\""]",3662.35,"{\"": \""18%\""}",237367,0,"""Asia""" +2024-04-13,94971,6347,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",4112.81,"{\""seasonal\"": \""8%\""}",7174,0,"""North America""" +2024-08-20,94972,3168,"[\""Keyboard\"", \""Laptop\""]",964.78,{},2124,0,"""Europe""" +2024-04-28,94973,5975,"[\""Keyboard\""]",1704.9,"{\""promo\"": \""29%\""}",23109,0,"""North America""" +2023-06-18,94974,734,"[\""Charger\"", \""Laptop\""]",965.4,"{\""promo\"": \""10%\""}",79030,1,"""Europe""" +2023-06-09,94975,4293,"[\""Headphones\""]",645.44,{},215059,1,"""Asia""" +2023-08-04,94976,1111,"[\""Keyboard\""]",532.76,{},167366,1,"""North America""" +2023-03-14,94977,5184,"[\""Tablet\"", \""Charger\""]",1536.21,{},58829,0,"""South America""" +2023-09-07,94978,9126,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1438.78,"{\""promo\"": \""20%\""}",139871,1,"""North America""" +2024-07-22,94979,1066,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2565.61,{},66165,1,"""North America""" +2023-01-23,94980,8849,"[\""Wireless Mouse\""]",1769.52,"{\"": \""19%\""}",12189,0,"""Europe""" +2024-07-11,94981,7844,"[\""Keyboard\"", \""Monitor\""]",3749.55,{},291530,1,"""South America""" +2023-03-25,94982,3459,"[\""Monitor\""]",2412.34,"{\"": \""13%\""}",294252,1,"""South America""" +2024-01-18,94983,803,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4627.65,{},2963,0,"""Asia""" +2024-09-25,94984,4324,"[\""Keyboard\""]",1826.42,"{\""seasonal\"": \""9%\""}",113349,0,"""Europe""" +2024-04-01,94985,4522,"[\""Charger\"", \""Wireless Mouse\""]",264.9,{},202105,0,"""Asia""" +2024-03-20,94986,3743,"[\""Headphones\"", \""Phone\""]",737.88,"{\""seasonal\"": \""6%\""}",75618,1,"""Asia""" +2024-08-11,94987,6181,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",538.37,{},183238,1,"""Asia""" +2023-06-03,94988,3246,"[\""Phone\"", \""Keyboard\""]",4524.33,{},41409,0,"""Europe""" +2024-06-14,94989,8512,"[\""Keyboard\"", \""Tablet\""]",2329.87,"{\"": \""15%\""}",276220,1,"""North America""" +2024-07-23,94990,5150,"[\""Charger\"", \""Tablet\""]",1511.02,"{\"": \""7%\""}",206595,0,"""Africa""" +2024-02-25,94991,9696,"[\""Headphones\"", \""Tablet\""]",4646.46,"{\""seasonal\"": \""19%\""}",86478,0,"""Africa""" +2023-09-06,94992,9292,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4183.09,"{\""loyalty\"": \""25%\""}",90335,1,"""Asia""" +2023-08-23,94993,9820,"[\""Charger\""]",2863.52,"{\"": \""23%\""}",250576,1,"""South America""" +2024-07-23,94994,224,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4652.29,"{\""promo\"": \""24%\""}",189993,0,"""North America""" +2024-03-15,94995,7939,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1500.29,{},128772,1,"""North America""" +2023-04-23,94996,6613,"[\""Charger\"", \""Headphones\""]",1412.49,"{\"": \""29%\""}",221499,1,"""Africa""" +2024-05-08,94997,7337,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1110.08,"{\"": \""17%\""}",207226,1,"""South America""" +2024-08-15,94998,8528,"[\""Charger\""]",4296.6,{},131403,0,"""Europe""" +2024-07-07,94999,9014,"[\""Keyboard\"", \""Charger\""]",2903.85,"{\""promo\"": \""12%\""}",72665,0,"""Africa""" +2023-07-25,95000,6503,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",78.85,"{\"": \""19%\""}",173037,0,"""North America""" +2023-04-17,95001,5075,"[\""Headphones\""]",4987.61,"{\""seasonal\"": \""17%\""}",206226,1,"""Asia""" +2023-02-06,95002,5289,"[\""Monitor\""]",4271.16,"{\"": \""30%\""}",235169,1,"""Africa""" +2023-11-02,95003,3999,"[\""Keyboard\""]",4583.91,{},113644,1,"""North America""" +2024-01-08,95004,2254,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",255.82,"{\""promo\"": \""24%\""}",168506,0,"""Africa""" +2023-01-23,95005,6917,"[\""Charger\""]",4262.27,{},146034,0,"""South America""" +2023-05-14,95006,6207,"[\""Charger\"", \""Keyboard\""]",3278.5,{},117999,1,"""Asia""" +2024-10-31,95007,957,"[\""Phone\"", \""Tablet\""]",3233.06,{},239315,1,"""Europe""" +2023-10-10,95008,7659,"[\""Keyboard\"", \""Monitor\""]",2105.48,{},186006,0,"""Europe""" +2024-06-05,95009,8831,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4275.55,"{\""seasonal\"": \""21%\""}",10521,1,"""South America""" +2024-01-15,95010,7691,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3763.86,"{\""promo\"": \""26%\""}",212601,0,"""Asia""" +2023-01-09,95011,9655,"[\""Phone\""]",2305.95,"{\""seasonal\"": \""16%\""}",131937,0,"""North America""" +2023-02-23,95012,7084,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1370.88,"{\""loyalty\"": \""18%\""}",136265,1,"""North America""" +2023-05-15,95013,9219,"[\""Monitor\"", \""Phone\""]",4890.97,{},46477,0,"""Africa""" +2024-05-16,95014,8957,"[\""Laptop\""]",3527.69,"{\"": \""11%\""}",180242,1,"""Asia""" +2023-07-10,95015,1747,"[\""Phone\"", \""Headphones\""]",2465.3,"{\""seasonal\"": \""15%\""}",78914,0,"""North America""" +2024-09-25,95016,2746,"[\""Charger\"", \""Laptop\""]",556.65,{},84089,0,"""South America""" +2023-10-15,95017,4542,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3837.44,"{\""promo\"": \""26%\""}",172993,1,"""South America""" +2024-08-22,95018,4664,"[\""Headphones\""]",4875.51,"{\"": \""16%\""}",111132,1,"""Africa""" +2023-09-22,95019,4109,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1220.6,{},188140,0,"""North America""" +2023-04-12,95020,4105,"[\""Headphones\""]",4450.17,"{\""promo\"": \""14%\""}",257542,0,"""Europe""" +2024-11-19,95021,1376,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",1465.06,{},233666,1,"""North America""" +2023-02-15,95022,5059,"[\""Headphones\""]",2220.96,{},203466,0,"""Africa""" +2024-04-12,95023,9958,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",470.41,"{\""loyalty\"": \""13%\""}",276848,0,"""Asia""" +2024-06-03,95024,7912,"[\""Wireless Mouse\""]",1653.2,"{\""seasonal\"": \""26%\""}",212061,0,"""Europe""" +2024-02-17,95025,2207,"[\""Monitor\""]",3957.78,"{\""seasonal\"": \""25%\""}",26903,0,"""North America""" +2023-12-04,95026,3675,"[\""Phone\"", \""Keyboard\""]",3032.75,{},207806,1,"""South America""" +2023-07-13,95027,2980,"[\""Tablet\"", \""Keyboard\""]",1603.88,{},254112,0,"""Europe""" +2023-03-09,95028,2404,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",291.84,"{\""seasonal\"": \""9%\""}",276818,1,"""North America""" +2024-08-17,95029,3400,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",3794.99,"{\"": \""26%\""}",94727,0,"""Asia""" +2024-12-22,95030,5401,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3581.19,{},207516,1,"""Europe""" +2023-02-23,95031,3060,"[\""Monitor\""]",4483.4,{},24406,0,"""Europe""" +2024-02-29,95032,3429,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",143.93,"{\"": \""27%\""}",50963,1,"""Asia""" +2024-07-22,95033,2806,"[\""Monitor\""]",3189.64,"{\""loyalty\"": \""19%\""}",136289,0,"""Africa""" +2024-11-13,95034,5806,"[\""Laptop\""]",1162.21,{},112257,0,"""Europe""" +2023-07-14,95035,5161,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2366.39,"{\""promo\"": \""29%\""}",54795,1,"""Europe""" +2024-05-28,95036,9129,"[\""Wireless Mouse\"", \""Laptop\""]",1214.32,{},137101,0,"""Asia""" +2024-07-12,95037,7830,"[\""Laptop\"", \""Headphones\""]",3091.42,"{\"": \""22%\""}",167041,1,"""South America""" +2023-11-21,95038,7925,"[\""Laptop\""]",4172.23,{},292231,0,"""Africa""" +2024-07-01,95039,1293,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2364.54,{},151499,1,"""South America""" +2023-07-14,95040,6045,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4712.33,{},60850,1,"""South America""" +2023-07-26,95041,9386,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",161.5,{},25092,0,"""North America""" +2023-08-21,95042,3475,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1740.16,{},139653,1,"""Europe""" +2024-11-05,95043,5922,"[\""Tablet\"", \""Charger\""]",932.79,{},217989,0,"""Europe""" +2023-09-27,95044,112,"[\""Charger\"", \""Tablet\""]",2769.73,"{\"": \""28%\""}",111719,0,"""Europe""" +2023-11-06,95045,9272,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3886.17,{},103044,0,"""Africa""" +2024-08-18,95046,18,"[\""Phone\"", \""Charger\""]",2582.81,{},153208,0,"""North America""" +2024-09-05,95047,4870,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",2115.68,{},294153,1,"""Europe""" +2023-05-25,95048,4334,"[\""Tablet\"", \""Phone\"", \""Charger\""]",4992.49,"{\"": \""24%\""}",137119,1,"""South America""" +2023-11-25,95049,2094,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",1848.47,{},89139,1,"""Europe""" +2024-12-09,95050,3251,"[\""Monitor\""]",1102.92,{},252058,1,"""Europe""" +2024-06-13,95051,2995,"[\""Phone\""]",2311.95,{},32866,0,"""Asia""" +2023-05-16,95052,2859,"[\""Phone\""]",1030.34,"{\""promo\"": \""27%\""}",277971,0,"""North America""" +2024-01-23,95053,2833,"[\""Headphones\"", \""Monitor\""]",2680.58,"{\""seasonal\"": \""15%\""}",225028,0,"""North America""" +2023-01-30,95054,3167,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2278.85,{},176776,0,"""Europe""" +2024-11-20,95055,862,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",337.06,{},206558,0,"""Europe""" +2023-04-20,95056,3809,"[\""Keyboard\"", \""Wireless Mouse\""]",3991.64,{},285702,0,"""South America""" +2023-09-23,95057,6475,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2494.16,"{\""promo\"": \""21%\""}",228743,1,"""South America""" +2023-08-12,95058,8617,"[\""Monitor\""]",2450.92,"{\""promo\"": \""27%\""}",97448,0,"""Asia""" +2023-04-19,95059,5406,"[\""Monitor\""]",2210.05,"{\""promo\"": \""16%\""}",9851,1,"""Europe""" +2023-05-02,95060,1893,"[\""Charger\""]",4852.95,{},43715,1,"""Europe""" +2023-05-07,95061,1311,"[\""Charger\""]",1439.8,{},268617,0,"""Africa""" +2024-10-28,95062,1722,"[\""Keyboard\""]",2418.59,"{\""seasonal\"": \""25%\""}",253650,0,"""Europe""" +2023-04-16,95063,6609,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3865.52,"{\""seasonal\"": \""22%\""}",276270,1,"""Asia""" +2023-03-11,95064,9462,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4021.31,{},294655,1,"""North America""" +2024-01-22,95065,9461,"[\""Monitor\"", \""Phone\""]",95.4,"{\""loyalty\"": \""19%\""}",121912,0,"""Africa""" +2024-05-11,95066,2682,"[\""Laptop\"", \""Wireless Mouse\""]",4106.91,"{\""loyalty\"": \""13%\""}",82811,1,"""North America""" +2024-03-10,95067,6493,"[\""Tablet\""]",4508.21,{},293012,0,"""North America""" +2023-11-13,95068,1083,"[\""Monitor\""]",528.41,{},265171,0,"""North America""" +2024-04-27,95069,3458,"[\""Laptop\""]",709.48,"{\""loyalty\"": \""27%\""}",164014,1,"""North America""" +2023-08-09,95070,9668,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",4866.19,{},174495,1,"""South America""" +2023-02-14,95071,3978,"[\""Monitor\"", \""Phone\"", \""Charger\""]",3941.0,{},52328,0,"""Africa""" +2023-10-06,95072,3294,"[\""Laptop\""]",1361.65,{},208313,1,"""Europe""" +2023-05-15,95073,1356,"[\""Tablet\"", \""Charger\""]",2316.62,"{\"": \""7%\""}",269820,0,"""North America""" +2024-03-24,95074,9319,"[\""Keyboard\""]",1573.79,{},174402,0,"""Asia""" +2023-05-27,95075,2532,"[\""Headphones\""]",2926.77,{},95628,1,"""Africa""" +2024-11-05,95076,4960,"[\""Monitor\"", \""Wireless Mouse\""]",3132.32,{},204713,0,"""South America""" +2024-05-30,95077,3037,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",475.47,{},17922,0,"""Asia""" +2024-01-02,95078,9494,"[\""Headphones\""]",4779.78,"{\""seasonal\"": \""7%\""}",5058,1,"""North America""" +2023-03-08,95079,252,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",676.44,"{\""promo\"": \""27%\""}",213450,0,"""Africa""" +2023-09-17,95080,5316,"[\""Charger\"", \""Tablet\""]",3638.2,{},40062,1,"""Asia""" +2023-07-20,95081,3530,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4184.94,"{\""seasonal\"": \""10%\""}",231759,1,"""North America""" +2024-05-28,95082,5218,"[\""Charger\""]",1070.34,"{\""promo\"": \""21%\""}",234598,1,"""South America""" +2024-06-06,95083,6412,"[\""Charger\""]",3038.1,"{\"": \""17%\""}",205372,1,"""Asia""" +2024-08-06,95084,7129,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",1754.13,"{\"": \""19%\""}",282337,0,"""Asia""" +2024-03-18,95085,2532,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",343.49,"{\""seasonal\"": \""10%\""}",99748,1,"""Europe""" +2023-02-19,95086,7849,"[\""Charger\"", \""Tablet\"", \""Phone\""]",638.34,"{\""promo\"": \""18%\""}",171498,1,"""South America""" +2024-12-22,95087,6726,"[\""Phone\""]",82.08,{},229731,1,"""North America""" +2024-02-19,95088,3740,"[\""Phone\"", \""Charger\""]",2411.39,"{\""promo\"": \""13%\""}",179623,1,"""Asia""" +2024-07-26,95089,2455,"[\""Keyboard\"", \""Headphones\""]",1862.43,{},282396,0,"""South America""" +2023-12-21,95090,4679,"[\""Keyboard\""]",3921.58,"{\""loyalty\"": \""27%\""}",232748,0,"""Africa""" +2023-08-02,95091,2757,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",4730.39,"{\"": \""22%\""}",200880,0,"""South America""" +2024-10-13,95092,3993,"[\""Charger\""]",4487.38,{},184142,0,"""South America""" +2023-03-26,95093,125,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",606.03,{},75092,0,"""Africa""" +2023-04-09,95094,6785,"[\""Headphones\"", \""Tablet\""]",3704.6,"{\""seasonal\"": \""23%\""}",16195,1,"""Africa""" +2024-11-24,95095,402,"[\""Keyboard\"", \""Headphones\""]",1511.82,{},55917,0,"""Europe""" +2023-08-14,95096,8875,"[\""Wireless Mouse\"", \""Laptop\""]",3462.21,"{\""promo\"": \""5%\""}",242245,0,"""South America""" +2024-07-10,95097,5966,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2425.61,{},46231,0,"""Africa""" +2023-12-15,95098,6748,"[\""Wireless Mouse\""]",2069.35,"{\"": \""15%\""}",85036,0,"""Europe""" +2023-07-13,95099,1095,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3670.67,{},177434,1,"""Asia""" +2024-01-29,95100,4496,"[\""Laptop\"", \""Keyboard\""]",1798.91,"{\"": \""22%\""}",242271,1,"""Asia""" +2023-01-27,95101,4870,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",3772.8,"{\"": \""27%\""}",209185,1,"""Europe""" +2023-09-05,95102,7739,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1035.72,"{\""loyalty\"": \""24%\""}",62715,1,"""North America""" +2024-11-10,95103,3739,"[\""Laptop\"", \""Wireless Mouse\""]",4237.13,"{\"": \""25%\""}",18078,0,"""North America""" +2023-10-12,95104,2359,"[\""Headphones\""]",3981.87,"{\""loyalty\"": \""28%\""}",238747,1,"""South America""" +2024-02-03,95105,4600,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",1515.17,"{\""seasonal\"": \""8%\""}",268812,1,"""Africa""" +2023-04-22,95106,5904,"[\""Laptop\""]",4980.69,{},223269,1,"""Africa""" +2023-10-16,95107,2677,"[\""Laptop\"", \""Headphones\""]",3589.94,"{\"": \""28%\""}",60521,1,"""North America""" +2023-01-15,95108,127,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2902.34,"{\""loyalty\"": \""24%\""}",111009,0,"""North America""" +2023-09-28,95109,4277,"[\""Keyboard\""]",1838.76,{},279357,0,"""Europe""" +2023-10-10,95110,8146,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4840.19,"{\""loyalty\"": \""5%\""}",80291,1,"""South America""" +2024-07-20,95111,7253,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2116.79,{},108633,0,"""North America""" +2024-04-20,95112,7073,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",3719.09,{},54212,0,"""Asia""" +2023-03-13,95113,1942,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3075.68,{},271982,0,"""Asia""" +2024-08-20,95114,9078,"[\""Charger\"", \""Monitor\""]",3490.08,{},284169,0,"""North America""" +2024-10-03,95115,6277,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2204.37,{},59215,0,"""South America""" +2024-01-31,95116,1330,"[\""Wireless Mouse\"", \""Headphones\""]",230.21,"{\""promo\"": \""17%\""}",166215,0,"""North America""" +2023-11-06,95117,8637,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4313.9,{},197835,1,"""Europe""" +2024-05-02,95118,685,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",4890.6,{},84528,1,"""South America""" +2024-12-12,95119,4619,"[\""Keyboard\""]",1484.05,{},37468,0,"""South America""" +2023-01-15,95120,3953,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",2066.95,"{\""seasonal\"": \""21%\""}",225225,1,"""Europe""" +2024-12-23,95121,4489,"[\""Keyboard\"", \""Tablet\""]",1217.72,"{\""promo\"": \""6%\""}",111626,1,"""South America""" +2024-03-11,95122,6337,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3126.49,{},213021,1,"""South America""" +2024-06-08,95123,5497,"[\""Phone\"", \""Keyboard\""]",1712.95,"{\"": \""22%\""}",169814,0,"""South America""" +2024-11-09,95124,4624,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4550.39,{},278624,1,"""Europe""" +2023-12-25,95125,7191,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3861.22,"{\""loyalty\"": \""11%\""}",240943,0,"""North America""" +2024-05-30,95126,5468,"[\""Laptop\""]",3618.2,"{\"": \""14%\""}",184141,0,"""Europe""" +2024-11-09,95127,512,"[\""Wireless Mouse\""]",3495.01,{},19760,1,"""South America""" +2023-05-07,95128,2831,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",3839.41,{},89567,1,"""South America""" +2024-06-11,95129,8991,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3540.12,"{\""seasonal\"": \""15%\""}",224593,1,"""Asia""" +2024-09-13,95130,1549,"[\""Keyboard\"", \""Headphones\""]",3142.9,{},174028,0,"""North America""" +2023-03-16,95131,7880,"[\""Laptop\""]",1610.82,{},132828,0,"""Europe""" +2024-12-30,95132,9298,"[\""Laptop\"", \""Monitor\""]",1491.23,"{\""loyalty\"": \""10%\""}",17080,1,"""North America""" +2023-08-30,95133,4620,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",1987.14,{},60725,0,"""North America""" +2023-09-19,95134,936,"[\""Headphones\"", \""Phone\""]",4283.51,{},25364,0,"""Asia""" +2023-09-05,95135,9297,"[\""Keyboard\""]",1211.01,{},70966,0,"""Asia""" +2024-04-08,95136,490,"[\""Tablet\""]",628.82,{},193159,1,"""Africa""" +2024-12-10,95137,9620,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",4753.68,"{\"": \""26%\""}",134019,0,"""South America""" +2024-10-28,95138,8175,"[\""Headphones\""]",1512.58,"{\"": \""17%\""}",45554,0,"""South America""" +2023-04-10,95139,2113,"[\""Monitor\"", \""Wireless Mouse\""]",3254.36,"{\""promo\"": \""30%\""}",139176,1,"""Africa""" +2023-05-24,95140,6949,"[\""Phone\""]",4064.79,"{\""loyalty\"": \""14%\""}",271397,1,"""Africa""" +2023-09-09,95141,1044,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",2933.37,"{\""seasonal\"": \""20%\""}",32189,0,"""North America""" +2024-06-24,95142,1666,"[\""Laptop\""]",1266.02,{},177377,0,"""Asia""" +2023-03-18,95143,9128,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3244.73,{},46577,0,"""North America""" +2024-01-24,95144,2209,"[\""Charger\""]",3714.28,"{\""loyalty\"": \""16%\""}",189885,0,"""Asia""" +2023-05-07,95145,9921,"[\""Monitor\""]",4245.68,{},130493,0,"""Europe""" +2023-06-04,95146,2773,"[\""Headphones\""]",4084.6,"{\""loyalty\"": \""30%\""}",281574,1,"""Europe""" +2023-06-24,95147,2264,"[\""Laptop\"", \""Tablet\""]",849.63,"{\""loyalty\"": \""15%\""}",27747,0,"""Asia""" +2024-11-19,95148,9384,"[\""Phone\""]",1930.35,{},158981,0,"""Asia""" +2023-05-04,95149,4854,"[\""Keyboard\"", \""Tablet\""]",3963.01,{},24317,0,"""South America""" +2023-07-18,95150,5433,"[\""Tablet\"", \""Phone\""]",424.95,{},234983,1,"""Europe""" +2023-04-05,95151,9955,"[\""Headphones\""]",3113.36,"{\""seasonal\"": \""6%\""}",94487,1,"""North America""" +2024-11-06,95152,6314,"[\""Tablet\"", \""Headphones\""]",337.25,"{\""loyalty\"": \""15%\""}",184126,0,"""Europe""" +2023-04-28,95153,6049,"[\""Wireless Mouse\""]",3980.24,{},278137,0,"""North America""" +2024-04-20,95154,8564,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4193.42,"{\""loyalty\"": \""16%\""}",243697,1,"""South America""" +2024-06-14,95155,957,"[\""Charger\"", \""Laptop\""]",4785.49,"{\""seasonal\"": \""27%\""}",237375,0,"""Europe""" +2023-03-03,95156,6496,"[\""Monitor\"", \""Phone\""]",4591.85,"{\"": \""27%\""}",47960,1,"""Europe""" +2024-07-08,95157,7779,"[\""Phone\""]",460.09,"{\""promo\"": \""30%\""}",245939,0,"""Africa""" +2024-07-25,95158,8977,"[\""Phone\"", \""Keyboard\""]",3471.48,"{\""seasonal\"": \""10%\""}",192404,1,"""South America""" +2024-06-10,95159,442,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1687.08,{},172684,1,"""Africa""" +2023-11-05,95160,7215,"[\""Charger\"", \""Laptop\""]",4676.88,{},107734,1,"""South America""" +2023-10-10,95161,1642,"[\""Wireless Mouse\"", \""Phone\""]",89.31,"{\""promo\"": \""15%\""}",7307,1,"""South America""" +2024-01-16,95162,7197,"[\""Tablet\"", \""Laptop\""]",112.49,"{\""loyalty\"": \""24%\""}",172991,0,"""South America""" +2024-01-26,95163,7154,"[\""Tablet\"", \""Wireless Mouse\""]",3026.0,{},88705,0,"""Europe""" +2024-09-14,95164,3050,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",2745.39,"{\""loyalty\"": \""24%\""}",59422,0,"""Europe""" +2024-08-10,95165,6256,"[\""Headphones\"", \""Wireless Mouse\""]",4665.83,{},270476,0,"""Asia""" +2024-08-07,95166,8414,"[\""Monitor\""]",1849.7,"{\"": \""10%\""}",294928,0,"""South America""" +2023-02-22,95167,4922,"[\""Keyboard\""]",2567.4,"{\"": \""23%\""}",21448,1,"""Europe""" +2023-10-11,95168,9394,"[\""Tablet\""]",3096.03,{},167104,0,"""Asia""" +2024-04-27,95169,6999,"[\""Tablet\""]",3177.2,{},156536,1,"""Europe""" +2024-10-22,95170,6433,"[\""Headphones\""]",713.2,{},94413,1,"""North America""" +2024-03-29,95171,5680,"[\""Charger\""]",1960.08,{},179979,0,"""Europe""" +2024-09-10,95172,2943,"[\""Tablet\"", \""Phone\""]",4523.69,"{\"": \""8%\""}",135342,1,"""South America""" +2024-11-10,95173,6405,"[\""Keyboard\"", \""Phone\""]",3664.71,"{\""seasonal\"": \""23%\""}",63418,1,"""North America""" +2023-10-01,95174,6102,"[\""Phone\""]",3856.17,{},115932,0,"""South America""" +2023-10-17,95175,3776,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",140.89,{},123907,0,"""South America""" +2024-06-11,95176,262,"[\""Laptop\"", \""Wireless Mouse\""]",3707.06,"{\""seasonal\"": \""10%\""}",57575,0,"""Asia""" +2023-10-12,95177,5630,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4567.68,{},11628,1,"""Europe""" +2023-06-25,95178,9843,"[\""Phone\""]",4622.96,"{\""promo\"": \""5%\""}",280628,0,"""Africa""" +2024-07-23,95179,6086,"[\""Monitor\"", \""Wireless Mouse\"", \""Charger\""]",3311.52,{},70919,0,"""North America""" +2023-06-19,95180,548,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4243.43,"{\""seasonal\"": \""27%\""}",269670,0,"""North America""" +2023-09-13,95181,7063,"[\""Keyboard\"", \""Monitor\""]",2264.77,"{\"": \""21%\""}",55200,0,"""North America""" +2023-03-23,95182,8270,"[\""Phone\""]",4153.85,"{\""seasonal\"": \""21%\""}",144264,1,"""Asia""" +2023-10-11,95183,2524,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",2511.54,{},285492,1,"""South America""" +2023-03-01,95184,4453,"[\""Tablet\"", \""Phone\""]",2308.32,{},133043,0,"""South America""" +2023-08-19,95185,3521,"[\""Wireless Mouse\"", \""Tablet\""]",4908.9,"{\""loyalty\"": \""26%\""}",215296,1,"""North America""" +2023-09-12,95186,470,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3707.06,{},151445,0,"""Asia""" +2023-09-03,95187,3581,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",367.19,"{\""loyalty\"": \""21%\""}",237143,0,"""North America""" +2023-11-06,95188,6796,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",2997.3,"{\""seasonal\"": \""26%\""}",108180,1,"""North America""" +2024-12-21,95189,2272,"[\""Laptop\""]",2390.97,{},270020,1,"""Africa""" +2024-02-17,95190,4604,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4852.39,"{\""loyalty\"": \""16%\""}",78716,1,"""Europe""" +2023-12-21,95191,2131,"[\""Headphones\"", \""Phone\""]",55.79,{},181858,0,"""Africa""" +2024-02-02,95192,3060,"[\""Phone\"", \""Headphones\""]",4120.16,"{\""seasonal\"": \""26%\""}",160175,1,"""Europe""" +2023-06-23,95193,8011,"[\""Charger\"", \""Phone\"", \""Laptop\""]",2276.03,{},213535,1,"""North America""" +2024-02-22,95194,8382,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1350.0,{},253886,0,"""Asia""" +2023-01-18,95195,1552,"[\""Tablet\""]",145.91,{},215609,1,"""North America""" +2023-05-13,95196,2310,"[\""Tablet\"", \""Laptop\""]",2239.74,{},172962,0,"""South America""" +2024-03-20,95197,8400,"[\""Tablet\""]",1494.06,"{\""loyalty\"": \""20%\""}",237955,0,"""North America""" +2023-05-10,95198,2998,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",299.08,{},172748,0,"""North America""" +2024-09-26,95199,5862,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",948.39,{},66597,1,"""South America""" +2024-06-22,95200,1440,"[\""Charger\"", \""Headphones\""]",2425.33,{},185552,1,"""Africa""" +2024-04-15,95201,1703,"[\""Phone\""]",4039.37,"{\""seasonal\"": \""24%\""}",38292,0,"""Europe""" +2024-04-09,95202,8497,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3344.3,{},3741,0,"""Asia""" +2024-03-06,95203,7387,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1046.05,"{\""seasonal\"": \""12%\""}",149633,0,"""Europe""" +2024-10-14,95204,3334,"[\""Charger\"", \""Monitor\""]",4907.27,{},161297,0,"""South America""" +2024-03-17,95205,6453,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2470.8,{},237102,1,"""South America""" +2023-11-28,95206,2450,"[\""Keyboard\""]",1188.64,"{\""loyalty\"": \""10%\""}",41172,0,"""Asia""" +2023-12-21,95207,987,"[\""Monitor\""]",1365.98,{},113519,1,"""Europe""" +2024-04-07,95208,258,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2799.43,{},182863,1,"""Asia""" +2023-06-11,95209,8607,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2566.03,"{\"": \""13%\""}",63228,0,"""North America""" +2024-07-25,95210,9864,"[\""Phone\""]",4417.04,{},144720,0,"""Europe""" +2024-05-07,95211,835,"[\""Wireless Mouse\""]",3163.72,"{\""promo\"": \""26%\""}",11358,1,"""Asia""" +2023-07-29,95212,2650,"[\""Phone\"", \""Tablet\""]",4382.29,"{\""seasonal\"": \""28%\""}",153981,0,"""Africa""" +2024-05-05,95213,9407,"[\""Headphones\""]",363.22,{},250321,1,"""South America""" +2024-09-19,95214,7174,"[\""Monitor\""]",2840.26,{},199866,1,"""South America""" +2024-10-28,95215,8124,"[\""Tablet\"", \""Keyboard\""]",2324.99,"{\""loyalty\"": \""9%\""}",173029,1,"""Europe""" +2023-12-02,95216,5977,"[\""Laptop\"", \""Tablet\""]",4867.07,{},109974,1,"""Europe""" +2023-03-06,95217,8418,"[\""Wireless Mouse\"", \""Laptop\""]",939.26,{},249293,0,"""South America""" +2023-04-18,95218,1605,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",444.29,{},234419,1,"""Europe""" +2024-08-24,95219,1400,"[\""Charger\"", \""Monitor\"", \""Phone\""]",3596.45,{},76862,1,"""North America""" +2023-08-27,95220,2081,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",1565.63,{},156953,0,"""Africa""" +2023-07-05,95221,9561,"[\""Headphones\"", \""Wireless Mouse\""]",1995.44,{},19947,0,"""Asia""" +2023-12-31,95222,6465,"[\""Wireless Mouse\""]",3925.86,{},178966,0,"""Africa""" +2023-12-03,95223,7015,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4426.39,{},29513,1,"""Asia""" +2023-07-07,95224,841,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3706.59,{},28188,0,"""South America""" +2023-09-08,95225,8805,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4090.74,{},47514,0,"""Africa""" +2023-02-17,95226,180,"[\""Tablet\"", \""Headphones\""]",3391.87,{},144277,0,"""Europe""" +2023-06-23,95227,4435,"[\""Monitor\""]",255.07,{},68695,0,"""Africa""" +2024-07-18,95228,8384,"[\""Monitor\"", \""Tablet\""]",4883.29,"{\""seasonal\"": \""24%\""}",268717,1,"""North America""" +2023-05-11,95229,5725,"[\""Laptop\""]",760.53,{},15952,1,"""Europe""" +2024-07-07,95230,2368,"[\""Laptop\""]",525.43,{},61967,1,"""North America""" +2024-10-08,95231,4864,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2881.77,"{\"": \""26%\""}",172466,0,"""Asia""" +2024-10-05,95232,7164,"[\""Laptop\""]",2823.24,{},146657,1,"""North America""" +2023-01-05,95233,1767,"[\""Charger\""]",1317.7,{},1807,0,"""Asia""" +2024-08-01,95234,1134,"[\""Headphones\"", \""Wireless Mouse\""]",4833.59,{},214398,0,"""South America""" +2024-04-17,95235,6999,"[\""Wireless Mouse\"", \""Phone\""]",4726.95,{},45598,0,"""North America""" +2024-11-13,95236,6722,"[\""Tablet\"", \""Headphones\""]",3739.79,"{\""loyalty\"": \""8%\""}",17887,0,"""South America""" +2023-04-12,95237,5625,"[\""Keyboard\"", \""Monitor\""]",3575.36,"{\"": \""29%\""}",27591,1,"""Asia""" +2023-10-06,95238,5417,"[\""Wireless Mouse\"", \""Phone\""]",3348.95,{},13898,1,"""Asia""" +2024-09-25,95239,4239,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",4433.06,"{\""loyalty\"": \""25%\""}",289870,1,"""South America""" +2023-11-25,95240,9044,"[\""Laptop\""]",1283.87,"{\""loyalty\"": \""10%\""}",235278,1,"""Europe""" +2024-04-27,95241,8861,"[\""Charger\"", \""Wireless Mouse\""]",2774.21,"{\""promo\"": \""20%\""}",259626,1,"""Asia""" +2023-10-31,95242,6125,"[\""Wireless Mouse\""]",1973.75,{},150206,1,"""North America""" +2023-12-03,95243,5649,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4449.07,{},55417,0,"""South America""" +2023-08-28,95244,8473,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",2127.12,"{\""promo\"": \""27%\""}",171208,0,"""Africa""" +2024-06-25,95245,2004,"[\""Headphones\"", \""Wireless Mouse\""]",1588.14,"{\""loyalty\"": \""26%\""}",186806,0,"""Asia""" +2024-01-14,95246,8057,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4761.71,{},153508,0,"""North America""" +2024-09-22,95247,9578,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",2417.25,"{\""loyalty\"": \""8%\""}",84748,0,"""Asia""" +2023-02-14,95248,9859,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",2194.29,{},257977,1,"""South America""" +2023-03-15,95249,5924,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2696.18,{},113381,1,"""Europe""" +2023-01-26,95250,2930,"[\""Laptop\"", \""Phone\""]",1487.68,"{\""seasonal\"": \""12%\""}",27173,1,"""Europe""" +2024-10-14,95251,126,"[\""Laptop\""]",1144.98,{},286364,0,"""North America""" +2024-11-06,95252,1834,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2519.22,{},170083,0,"""Asia""" +2023-01-12,95253,4464,"[\""Tablet\""]",4123.38,{},265363,1,"""Asia""" +2024-03-11,95254,9207,"[\""Keyboard\""]",4978.69,{},282001,1,"""South America""" +2023-04-06,95255,9872,"[\""Keyboard\"", \""Monitor\""]",3712.97,"{\"": \""25%\""}",157285,0,"""Europe""" +2024-12-04,95256,8933,"[\""Wireless Mouse\""]",4826.26,{},176004,1,"""South America""" +2023-04-13,95257,3881,"[\""Headphones\""]",4826.76,{},286337,0,"""Asia""" +2024-01-16,95258,8501,"[\""Laptop\""]",1162.41,"{\""loyalty\"": \""26%\""}",108499,1,"""North America""" +2024-09-09,95259,149,"[\""Charger\"", \""Phone\""]",2006.99,{},194807,1,"""South America""" +2024-08-03,95260,502,"[\""Charger\"", \""Wireless Mouse\""]",446.09,{},145645,1,"""Europe""" +2024-08-12,95261,17,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",3847.5,{},282396,1,"""South America""" +2024-04-13,95262,1165,"[\""Wireless Mouse\""]",3449.88,"{\"": \""20%\""}",32191,0,"""Asia""" +2023-05-12,95263,4414,"[\""Monitor\""]",4024.47,"{\""loyalty\"": \""27%\""}",52809,0,"""Africa""" +2023-06-06,95264,4532,"[\""Wireless Mouse\""]",875.41,"{\""seasonal\"": \""23%\""}",57872,0,"""Africa""" +2023-05-27,95265,3120,"[\""Laptop\""]",1815.65,"{\""loyalty\"": \""21%\""}",3801,1,"""North America""" +2023-11-16,95266,5317,"[\""Headphones\"", \""Wireless Mouse\""]",2291.32,"{\""promo\"": \""13%\""}",121937,0,"""Europe""" +2024-11-23,95267,4646,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",2008.05,{},281557,0,"""Africa""" +2024-05-17,95268,3352,"[\""Laptop\"", \""Headphones\""]",4723.86,"{\""loyalty\"": \""9%\""}",16115,1,"""North America""" +2024-01-24,95269,7963,"[\""Wireless Mouse\""]",1795.42,{},133032,1,"""Africa""" +2024-02-11,95270,7095,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2475.61,"{\"": \""5%\""}",244259,1,"""Asia""" +2023-06-28,95271,7623,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1840.23,"{\""loyalty\"": \""23%\""}",213317,1,"""Asia""" +2024-11-07,95272,5040,"[\""Monitor\""]",912.7,{},139994,1,"""Asia""" +2024-07-12,95273,1491,"[\""Keyboard\""]",207.06,"{\""loyalty\"": \""22%\""}",249165,1,"""Africa""" +2023-06-17,95274,7651,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4410.77,"{\""seasonal\"": \""22%\""}",1351,1,"""North America""" +2023-07-22,95275,1487,"[\""Laptop\""]",1330.06,{},251928,0,"""North America""" +2023-09-14,95276,1240,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",1988.99,"{\""seasonal\"": \""19%\""}",170796,0,"""South America""" +2024-09-29,95277,9560,"[\""Wireless Mouse\"", \""Phone\""]",3700.92,{},191474,1,"""Africa""" +2023-03-12,95278,3610,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",1046.74,{},280764,0,"""Africa""" +2024-06-05,95279,5200,"[\""Headphones\""]",3641.31,"{\""seasonal\"": \""7%\""}",199107,1,"""South America""" +2024-02-19,95280,9972,"[\""Keyboard\""]",777.21,{},152920,1,"""Africa""" +2023-10-12,95281,9364,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3977.49,{},75922,1,"""North America""" +2024-06-09,95282,8099,"[\""Charger\""]",1372.22,{},288005,0,"""Africa""" +2024-08-06,95283,1174,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3277.09,{},70449,1,"""Africa""" +2024-06-11,95284,7048,"[\""Charger\"", \""Phone\""]",2069.89,"{\"": \""19%\""}",246847,0,"""North America""" +2023-04-23,95285,7800,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",4729.04,"{\"": \""10%\""}",128742,1,"""Asia""" +2023-11-26,95286,2967,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",3503.75,{},104637,0,"""South America""" +2024-12-29,95287,4370,"[\""Wireless Mouse\""]",1893.94,{},184641,1,"""Europe""" +2024-04-11,95288,2149,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1058.19,{},220156,1,"""South America""" +2024-05-07,95289,6420,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",2577.14,"{\""loyalty\"": \""13%\""}",47508,0,"""Africa""" +2024-07-09,95290,2553,"[\""Tablet\""]",282.15,{},72359,1,"""South America""" +2024-12-30,95291,6367,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",2942.23,{},87511,1,"""North America""" +2024-02-09,95292,2968,"[\""Headphones\"", \""Charger\""]",442.68,"{\""promo\"": \""28%\""}",210001,0,"""North America""" +2024-06-03,95293,3460,"[\""Headphones\"", \""Laptop\""]",2436.52,{},256421,0,"""North America""" +2023-05-05,95294,8955,"[\""Charger\"", \""Headphones\""]",3727.96,"{\""loyalty\"": \""25%\""}",35149,0,"""Asia""" +2024-09-12,95295,2176,"[\""Laptop\""]",2230.48,"{\""loyalty\"": \""23%\""}",88124,1,"""South America""" +2024-06-20,95296,5838,"[\""Headphones\""]",3608.0,{},95797,1,"""Africa""" +2024-10-12,95297,9139,"[\""Phone\""]",3609.06,{},153545,0,"""South America""" +2024-03-26,95298,4443,"[\""Charger\"", \""Tablet\""]",4837.78,{},105603,1,"""North America""" +2024-01-21,95299,8856,"[\""Tablet\""]",4942.74,"{\""promo\"": \""12%\""}",264210,0,"""North America""" +2024-09-16,95300,1104,"[\""Phone\"", \""Tablet\"", \""Charger\""]",1727.81,"{\"": \""15%\""}",10389,1,"""Europe""" +2024-11-21,95301,8383,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",236.42,{},62288,0,"""South America""" +2023-05-29,95302,5479,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4736.42,{},39900,1,"""Europe""" +2023-06-17,95303,9875,"[\""Phone\"", \""Headphones\""]",3288.96,"{\""seasonal\"": \""15%\""}",295521,0,"""South America""" +2023-08-08,95304,2856,"[\""Tablet\""]",2495.62,"{\"": \""6%\""}",187316,1,"""Europe""" +2024-01-26,95305,8440,"[\""Laptop\""]",84.3,{},123187,1,"""Europe""" +2023-08-31,95306,2572,"[\""Monitor\""]",3337.35,{},27173,0,"""Europe""" +2024-12-05,95307,1532,"[\""Monitor\"", \""Tablet\""]",4332.97,"{\""seasonal\"": \""7%\""}",193619,1,"""South America""" +2024-02-24,95308,3581,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",1882.88,"{\""seasonal\"": \""15%\""}",99455,0,"""Europe""" +2024-03-14,95309,6271,"[\""Wireless Mouse\""]",2983.64,{},290272,1,"""North America""" +2023-11-17,95310,8230,"[\""Headphones\""]",2572.74,{},68028,0,"""South America""" +2024-08-18,95311,652,"[\""Phone\"", \""Monitor\""]",2226.6,{},28292,0,"""South America""" +2024-08-11,95312,9515,"[\""Charger\"", \""Tablet\"", \""Phone\""]",3753.6,{},75028,0,"""Africa""" +2024-11-29,95313,1824,"[\""Laptop\"", \""Phone\""]",1610.0,{},47589,0,"""Asia""" +2023-03-06,95314,3720,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",471.96,"{\""promo\"": \""9%\""}",84121,0,"""North America""" +2024-10-05,95315,5201,"[\""Laptop\""]",493.4,"{\"": \""5%\""}",245482,1,"""Asia""" +2024-08-04,95316,3687,"[\""Headphones\"", \""Phone\""]",2939.53,"{\""seasonal\"": \""17%\""}",170651,0,"""Asia""" +2023-11-20,95317,9654,"[\""Wireless Mouse\""]",4462.41,{},167034,0,"""Africa""" +2024-04-20,95318,3293,"[\""Wireless Mouse\""]",708.63,"{\""loyalty\"": \""28%\""}",36746,1,"""Europe""" +2023-11-11,95319,6916,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3953.54,"{\""seasonal\"": \""18%\""}",6111,0,"""South America""" +2024-11-08,95320,4242,"[\""Monitor\"", \""Wireless Mouse\""]",1007.99,{},227377,1,"""North America""" +2024-11-03,95321,6850,"[\""Monitor\"", \""Phone\""]",1654.42,{},164603,0,"""Asia""" +2023-04-06,95322,7670,"[\""Tablet\"", \""Laptop\""]",4322.45,{},98855,0,"""Europe""" +2024-01-08,95323,256,"[\""Headphones\"", \""Phone\""]",3884.98,"{\""seasonal\"": \""16%\""}",209909,1,"""Asia""" +2023-07-05,95324,4797,"[\""Laptop\""]",814.97,"{\"": \""26%\""}",5623,1,"""Asia""" +2024-08-20,95325,8580,"[\""Headphones\""]",3988.79,"{\""loyalty\"": \""23%\""}",32955,1,"""Africa""" +2024-02-14,95326,153,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",685.41,"{\""seasonal\"": \""15%\""}",249537,1,"""Europe""" +2024-09-27,95327,507,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3595.41,"{\""promo\"": \""22%\""}",20172,0,"""Europe""" +2023-06-25,95328,7176,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",4033.54,"{\""promo\"": \""24%\""}",234429,0,"""Europe""" +2024-02-26,95329,8653,"[\""Monitor\"", \""Charger\""]",3841.41,"{\""loyalty\"": \""24%\""}",298264,0,"""Africa""" +2024-05-01,95330,1071,"[\""Tablet\"", \""Keyboard\""]",1014.17,{},14428,1,"""South America""" +2023-08-11,95331,8952,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2298.07,"{\"": \""12%\""}",109513,0,"""Europe""" +2023-09-19,95332,5979,"[\""Monitor\"", \""Keyboard\""]",2122.41,{},76448,1,"""Europe""" +2023-07-19,95333,9141,"[\""Phone\""]",2822.22,"{\""promo\"": \""11%\""}",53875,1,"""Europe""" +2024-07-22,95334,6337,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",152.89,{},38863,0,"""North America""" +2024-01-07,95335,4537,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3024.19,"{\""seasonal\"": \""16%\""}",226139,1,"""Europe""" +2024-01-12,95336,1670,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2439.83,"{\"": \""13%\""}",46004,1,"""Europe""" +2023-12-29,95337,1385,"[\""Monitor\""]",3179.99,"{\""loyalty\"": \""17%\""}",18553,1,"""South America""" +2023-07-22,95338,1332,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",261.04,"{\""promo\"": \""28%\""}",191164,1,"""North America""" +2024-10-28,95339,8503,"[\""Tablet\""]",2791.62,{},126449,0,"""Africa""" +2023-11-01,95340,4888,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",1895.86,{},248433,0,"""North America""" +2024-06-12,95341,2381,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",2107.57,{},210692,0,"""Europe""" +2024-12-29,95342,971,"[\""Charger\"", \""Headphones\""]",1190.1,"{\""seasonal\"": \""10%\""}",168019,0,"""Europe""" +2024-03-04,95343,3278,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3872.3,"{\""promo\"": \""15%\""}",71292,1,"""Asia""" +2023-09-17,95344,8918,"[\""Laptop\""]",1106.27,"{\""seasonal\"": \""19%\""}",196710,0,"""South America""" +2024-08-10,95345,4170,"[\""Wireless Mouse\"", \""Keyboard\""]",181.93,{},77615,0,"""North America""" +2023-10-14,95346,8952,"[\""Phone\""]",3704.61,{},35560,0,"""South America""" +2024-10-09,95347,4927,"[\""Charger\"", \""Wireless Mouse\""]",3446.47,{},142986,0,"""Europe""" +2024-04-28,95348,7845,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",617.08,"{\""loyalty\"": \""25%\""}",59162,0,"""Europe""" +2023-11-18,95349,8230,"[\""Monitor\"", \""Charger\""]",180.21,"{\""seasonal\"": \""16%\""}",196268,0,"""Asia""" +2023-06-24,95350,9663,"[\""Charger\""]",810.89,"{\""seasonal\"": \""25%\""}",3022,0,"""Asia""" +2024-03-23,95351,7354,"[\""Wireless Mouse\"", \""Keyboard\""]",951.46,{},234535,0,"""South America""" +2023-05-09,95352,377,"[\""Monitor\""]",4656.0,{},274244,1,"""Asia""" +2024-05-12,95353,4353,"[\""Keyboard\"", \""Monitor\""]",3517.51,{},61985,0,"""North America""" +2024-05-12,95354,6390,"[\""Laptop\""]",4985.85,"{\"": \""22%\""}",82290,1,"""Europe""" +2024-01-19,95355,5160,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",4586.48,"{\""seasonal\"": \""30%\""}",53971,0,"""Europe""" +2024-02-05,95356,2040,"[\""Phone\"", \""Tablet\""]",1299.53,"{\""seasonal\"": \""26%\""}",152021,0,"""South America""" +2024-12-23,95357,9852,"[\""Headphones\"", \""Keyboard\""]",1871.93,"{\"": \""19%\""}",202655,0,"""Africa""" +2024-04-29,95358,1916,"[\""Tablet\"", \""Charger\""]",3366.27,{},22738,1,"""Africa""" +2024-06-22,95359,8597,"[\""Phone\"", \""Tablet\""]",614.45,{},192058,0,"""South America""" +2023-08-17,95360,9382,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2739.22,{},18707,0,"""Asia""" +2023-10-31,95361,4715,"[\""Charger\""]",4941.38,"{\""loyalty\"": \""15%\""}",237188,1,"""North America""" +2024-07-22,95362,6984,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",1454.88,"{\""seasonal\"": \""22%\""}",145938,0,"""South America""" +2024-05-05,95363,126,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",773.49,{},211336,1,"""Asia""" +2023-10-13,95364,7771,"[\""Monitor\"", \""Phone\""]",894.4,"{\""loyalty\"": \""21%\""}",52254,0,"""South America""" +2024-04-30,95365,4760,"[\""Charger\""]",4617.87,"{\""loyalty\"": \""20%\""}",160196,1,"""North America""" +2024-10-15,95366,2832,"[\""Laptop\"", \""Wireless Mouse\""]",4023.33,"{\""loyalty\"": \""11%\""}",19864,0,"""Asia""" +2023-10-25,95367,1981,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",4925.86,"{\"": \""30%\""}",254128,1,"""Asia""" +2023-03-07,95368,702,"[\""Phone\"", \""Charger\""]",2057.5,{},124986,1,"""South America""" +2024-05-05,95369,6729,"[\""Headphones\""]",1279.99,{},286991,0,"""North America""" +2023-10-01,95370,3625,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",1995.35,{},75424,0,"""Asia""" +2023-05-21,95371,2457,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4142.42,{},206319,0,"""Asia""" +2023-07-01,95372,2342,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1496.45,{},291021,1,"""North America""" +2023-01-23,95373,7683,"[\""Tablet\"", \""Wireless Mouse\""]",1224.19,{},246707,0,"""South America""" +2023-06-13,95374,2833,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",866.59,{},205455,1,"""South America""" +2024-05-01,95375,5241,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2532.27,"{\""promo\"": \""5%\""}",167554,1,"""Asia""" +2024-12-13,95376,8877,"[\""Laptop\"", \""Phone\""]",3881.38,"{\""loyalty\"": \""15%\""}",229614,0,"""Asia""" +2023-12-16,95377,9959,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1210.16,"{\""loyalty\"": \""28%\""}",175016,0,"""South America""" +2024-05-13,95378,2156,"[\""Charger\""]",3572.14,"{\""promo\"": \""13%\""}",159167,0,"""South America""" +2024-01-20,95379,8308,"[\""Phone\""]",3709.64,{},54311,0,"""Africa""" +2024-07-18,95380,4898,"[\""Monitor\"", \""Phone\"", \""Charger\""]",724.29,"{\"": \""12%\""}",59956,0,"""Asia""" +2023-01-10,95381,2490,"[\""Phone\""]",466.55,"{\""seasonal\"": \""23%\""}",40851,1,"""Africa""" +2023-04-22,95382,3856,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1236.97,{},93531,0,"""Europe""" +2024-05-15,95383,122,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3468.38,"{\""loyalty\"": \""20%\""}",27514,0,"""South America""" +2024-10-07,95384,4700,"[\""Phone\""]",1883.88,"{\""promo\"": \""7%\""}",84441,0,"""Europe""" +2023-07-30,95385,489,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",805.2,{},284404,0,"""South America""" +2023-03-21,95386,10000,"[\""Charger\""]",1714.61,"{\""loyalty\"": \""22%\""}",50942,1,"""Africa""" +2024-09-26,95387,8682,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",794.14,{},215089,1,"""North America""" +2023-10-30,95388,8328,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2933.01,"{\"": \""16%\""}",24250,1,"""Asia""" +2024-05-04,95389,7271,"[\""Keyboard\"", \""Laptop\""]",1851.97,"{\""loyalty\"": \""27%\""}",158996,0,"""Europe""" +2024-02-03,95390,5710,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1116.16,{},299722,1,"""Asia""" +2023-04-08,95391,9699,"[\""Phone\""]",1610.81,"{\"": \""24%\""}",28287,1,"""Asia""" +2023-08-27,95392,3768,"[\""Monitor\"", \""Phone\""]",4405.39,"{\""promo\"": \""28%\""}",120596,1,"""Asia""" +2023-09-06,95393,4185,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",4467.21,"{\""loyalty\"": \""15%\""}",177546,1,"""Europe""" +2023-06-24,95394,9451,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3946.8,{},22394,0,"""North America""" +2024-02-12,95395,2049,"[\""Headphones\"", \""Tablet\""]",1362.65,{},219616,0,"""Asia""" +2024-10-10,95396,5174,"[\""Charger\"", \""Wireless Mouse\""]",1608.86,"{\""loyalty\"": \""23%\""}",15420,0,"""Europe""" +2024-05-05,95397,4637,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3309.26,"{\"": \""19%\""}",20532,1,"""North America""" +2024-01-29,95398,5817,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1921.99,{},129450,1,"""South America""" +2024-05-17,95399,387,"[\""Keyboard\"", \""Tablet\""]",3969.35,"{\""promo\"": \""14%\""}",295452,0,"""North America""" +2023-12-17,95400,2973,"[\""Tablet\""]",4089.12,"{\"": \""21%\""}",183731,1,"""Europe""" +2024-07-13,95401,5525,"[\""Headphones\"", \""Monitor\""]",2653.03,{},141064,1,"""Asia""" +2024-06-18,95402,5654,"[\""Keyboard\""]",2711.85,{},95777,0,"""Asia""" +2024-08-21,95403,9136,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2222.66,{},125048,1,"""Africa""" +2023-06-05,95404,3461,"[\""Monitor\""]",1334.15,{},256013,1,"""North America""" +2023-07-08,95405,2285,"[\""Headphones\""]",3236.73,{},243879,1,"""Africa""" +2024-02-08,95406,2081,"[\""Wireless Mouse\""]",3189.42,"{\"": \""29%\""}",207486,1,"""North America""" +2023-05-19,95407,4400,"[\""Laptop\""]",3448.6,"{\""loyalty\"": \""25%\""}",241491,1,"""South America""" +2023-06-25,95408,950,"[\""Charger\""]",2705.79,{},248319,0,"""Asia""" +2023-05-15,95409,4603,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3523.35,"{\""seasonal\"": \""6%\""}",173111,0,"""Asia""" +2023-12-25,95410,4862,"[\""Charger\"", \""Tablet\""]",3152.48,"{\""seasonal\"": \""27%\""}",153758,0,"""South America""" +2024-10-27,95411,8728,"[\""Headphones\"", \""Tablet\""]",4487.6,{},193682,0,"""Europe""" +2023-03-13,95412,3452,"[\""Monitor\""]",4640.04,"{\""promo\"": \""11%\""}",2466,0,"""Europe""" +2023-11-03,95413,4306,"[\""Monitor\""]",920.79,{},157687,1,"""Europe""" +2023-10-19,95414,9471,"[\""Monitor\""]",2346.2,{},135609,1,"""Africa""" +2024-12-25,95415,6872,"[\""Laptop\"", \""Tablet\""]",2098.4,"{\""loyalty\"": \""27%\""}",288023,1,"""Asia""" +2023-07-02,95416,6598,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",657.46,{},94671,0,"""Asia""" +2024-05-28,95417,2145,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",754.58,"{\"": \""29%\""}",188157,0,"""North America""" +2024-06-12,95418,7453,"[\""Phone\"", \""Laptop\""]",400.87,{},250607,0,"""Africa""" +2024-11-07,95419,1161,"[\""Wireless Mouse\"", \""Laptop\""]",276.93,{},209004,1,"""Asia""" +2023-12-04,95420,4556,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4177.57,"{\""loyalty\"": \""25%\""}",172543,0,"""North America""" +2023-01-18,95421,920,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",3351.69,"{\""promo\"": \""28%\""}",55051,0,"""South America""" +2023-07-12,95422,3072,"[\""Keyboard\""]",1975.09,{},172374,0,"""Africa""" +2023-06-06,95423,6319,"[\""Keyboard\""]",3892.67,{},148732,1,"""South America""" +2024-12-25,95424,8148,"[\""Monitor\"", \""Headphones\""]",2103.62,"{\""loyalty\"": \""16%\""}",141184,1,"""Africa""" +2024-07-21,95425,4344,"[\""Tablet\"", \""Laptop\""]",1142.39,"{\""loyalty\"": \""11%\""}",39532,0,"""Africa""" +2023-03-09,95426,5815,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1412.85,{},126408,0,"""Asia""" +2024-02-24,95427,3260,"[\""Tablet\"", \""Headphones\""]",3318.99,"{\""promo\"": \""16%\""}",182111,0,"""Africa""" +2024-01-17,95428,2151,"[\""Wireless Mouse\"", \""Headphones\""]",1551.48,"{\""loyalty\"": \""27%\""}",246871,0,"""South America""" +2024-12-04,95429,7351,"[\""Headphones\""]",3025.71,"{\""loyalty\"": \""18%\""}",112478,0,"""South America""" +2024-02-24,95430,7253,"[\""Monitor\""]",64.99,{},54241,1,"""Africa""" +2023-04-25,95431,527,"[\""Phone\"", \""Monitor\""]",801.75,{},293837,1,"""North America""" +2024-12-05,95432,8903,"[\""Laptop\""]",2252.1,"{\"": \""6%\""}",262152,0,"""Africa""" +2023-12-03,95433,1917,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3201.84,"{\""loyalty\"": \""14%\""}",9611,1,"""Europe""" +2023-08-19,95434,9475,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4074.32,"{\""loyalty\"": \""9%\""}",93065,0,"""Europe""" +2024-10-21,95435,5427,"[\""Tablet\"", \""Keyboard\""]",2504.28,"{\""loyalty\"": \""8%\""}",81499,1,"""North America""" +2023-11-08,95436,4193,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",3778.16,{},161341,1,"""North America""" +2023-11-05,95437,1334,"[\""Tablet\""]",4692.78,"{\"": \""18%\""}",69071,0,"""North America""" +2023-04-28,95438,868,"[\""Wireless Mouse\""]",3830.7,"{\""loyalty\"": \""22%\""}",113074,0,"""South America""" +2024-02-28,95439,5286,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",1053.95,"{\""seasonal\"": \""27%\""}",299990,0,"""South America""" +2024-06-23,95440,5492,"[\""Monitor\""]",1006.07,{},79842,1,"""Europe""" +2023-10-22,95441,9207,"[\""Phone\""]",1397.83,"{\"": \""17%\""}",264671,1,"""Africa""" +2023-01-16,95442,5048,"[\""Phone\""]",3553.93,{},9643,1,"""North America""" +2024-08-04,95443,4579,"[\""Monitor\""]",3297.15,"{\""seasonal\"": \""7%\""}",243950,0,"""North America""" +2023-01-18,95444,6618,"[\""Headphones\"", \""Laptop\""]",2070.93,"{\""seasonal\"": \""27%\""}",26851,0,"""Asia""" +2024-10-04,95445,8416,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1656.72,"{\""seasonal\"": \""28%\""}",242248,0,"""North America""" +2023-06-24,95446,9374,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3540.81,"{\""loyalty\"": \""19%\""}",22826,1,"""North America""" +2023-02-21,95447,3397,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",496.59,"{\""loyalty\"": \""15%\""}",221876,1,"""Africa""" +2023-08-06,95448,4569,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3456.11,{},136099,0,"""Europe""" +2023-11-22,95449,5543,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",1228.52,"{\""loyalty\"": \""30%\""}",45410,0,"""South America""" +2024-06-26,95450,771,"[\""Tablet\"", \""Laptop\""]",172.27,{},15355,1,"""Asia""" +2023-09-09,95451,4121,"[\""Headphones\""]",4202.18,"{\""promo\"": \""25%\""}",11093,1,"""Asia""" +2024-12-21,95452,2956,"[\""Wireless Mouse\""]",4095.01,{},292953,0,"""Asia""" +2024-04-12,95453,9841,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1046.19,{},163087,1,"""South America""" +2024-05-08,95454,8541,"[\""Keyboard\"", \""Charger\""]",1465.83,{},211869,1,"""Africa""" +2024-06-24,95455,3108,"[\""Monitor\"", \""Wireless Mouse\""]",2196.06,{},109346,0,"""North America""" +2023-05-30,95456,6567,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",2502.87,{},142857,0,"""South America""" +2023-05-25,95457,8583,"[\""Laptop\""]",2916.02,{},119006,1,"""South America""" +2023-04-05,95458,4222,"[\""Keyboard\"", \""Phone\""]",1946.22,{},220730,0,"""North America""" +2023-07-23,95459,6092,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1561.04,{},236160,1,"""Europe""" +2024-01-17,95460,3594,"[\""Keyboard\"", \""Charger\""]",1277.5,{},96639,0,"""North America""" +2023-09-05,95461,1088,"[\""Monitor\""]",3395.45,{},282660,0,"""South America""" +2024-06-28,95462,2986,"[\""Tablet\"", \""Keyboard\""]",3604.33,"{\""seasonal\"": \""16%\""}",12854,1,"""North America""" +2024-06-25,95463,4568,"[\""Phone\"", \""Keyboard\""]",4996.65,{},189670,0,"""North America""" +2023-10-11,95464,4777,"[\""Charger\""]",3639.11,{},22179,0,"""Europe""" +2023-07-22,95465,2683,"[\""Monitor\""]",4378.33,"{\""promo\"": \""17%\""}",63670,0,"""Asia""" +2023-12-07,95466,9971,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2946.08,{},5322,1,"""North America""" +2024-07-20,95467,1769,"[\""Wireless Mouse\"", \""Keyboard\""]",4789.15,{},12723,0,"""North America""" +2023-02-01,95468,5445,"[\""Headphones\""]",797.18,{},296342,0,"""Africa""" +2024-06-12,95469,6690,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",4278.25,{},57761,1,"""Europe""" +2024-07-04,95470,4662,"[\""Laptop\""]",4052.07,"{\"": \""28%\""}",44385,0,"""Europe""" +2024-06-25,95471,5722,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3412.67,{},102781,0,"""Asia""" +2023-09-22,95472,1980,"[\""Monitor\"", \""Tablet\""]",993.02,"{\""promo\"": \""26%\""}",267563,0,"""Africa""" +2024-05-24,95473,8970,"[\""Tablet\""]",539.26,"{\""promo\"": \""16%\""}",38291,1,"""South America""" +2023-11-22,95474,1560,"[\""Tablet\""]",4453.24,"{\""seasonal\"": \""25%\""}",170614,1,"""Africa""" +2024-01-31,95475,3691,"[\""Headphones\"", \""Charger\""]",4041.65,"{\""loyalty\"": \""6%\""}",273885,0,"""Africa""" +2023-08-10,95476,106,"[\""Tablet\"", \""Wireless Mouse\""]",750.24,{},236165,1,"""Europe""" +2023-12-20,95477,3105,"[\""Phone\""]",1682.85,{},199201,0,"""Asia""" +2023-04-06,95478,2227,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4491.64,{},174904,0,"""Asia""" +2024-07-03,95479,263,"[\""Keyboard\"", \""Laptop\""]",2870.34,{},292940,0,"""North America""" +2024-12-12,95480,6744,"[\""Monitor\"", \""Charger\""]",566.74,{},259325,1,"""Asia""" +2024-07-08,95481,3313,"[\""Keyboard\"", \""Phone\""]",1255.93,{},97423,1,"""Africa""" +2023-05-24,95482,2885,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1333.13,"{\""promo\"": \""18%\""}",284554,0,"""Africa""" +2024-05-17,95483,5166,"[\""Monitor\"", \""Charger\""]",2319.35,{},168172,0,"""Asia""" +2024-01-12,95484,5447,"[\""Tablet\"", \""Phone\""]",4540.81,"{\"": \""23%\""}",99222,1,"""Africa""" +2024-10-05,95485,7182,"[\""Phone\"", \""Headphones\""]",734.61,"{\"": \""29%\""}",212605,1,"""Asia""" +2023-03-10,95486,8799,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",2740.4,"{\"": \""29%\""}",227874,0,"""Asia""" +2023-10-16,95487,2302,"[\""Laptop\""]",1193.74,"{\"": \""16%\""}",92995,1,"""North America""" +2023-01-11,95488,9293,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4561.73,{},128812,0,"""Europe""" +2023-07-04,95489,1929,"[\""Keyboard\""]",4635.71,"{\""seasonal\"": \""15%\""}",173910,1,"""Africa""" +2023-06-21,95490,1619,"[\""Wireless Mouse\""]",2821.41,{},197840,0,"""North America""" +2024-08-19,95491,6354,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",2496.71,"{\"": \""19%\""}",25353,0,"""South America""" +2024-01-30,95492,2301,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",1825.66,{},176655,0,"""Asia""" +2023-01-03,95493,298,"[\""Keyboard\"", \""Headphones\""]",214.56,"{\"": \""18%\""}",61583,0,"""South America""" +2023-02-10,95494,2481,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",2963.75,{},53469,0,"""Asia""" +2023-02-06,95495,7208,"[\""Monitor\"", \""Wireless Mouse\""]",215.39,"{\""seasonal\"": \""8%\""}",31207,1,"""North America""" +2024-08-01,95496,8813,"[\""Tablet\"", \""Wireless Mouse\""]",2638.64,"{\"": \""7%\""}",240229,0,"""North America""" +2024-08-20,95497,249,"[\""Phone\""]",3771.28,"{\""promo\"": \""10%\""}",24263,1,"""North America""" +2024-03-27,95498,8713,"[\""Keyboard\""]",1051.49,{},182302,1,"""North America""" +2023-11-03,95499,5652,"[\""Tablet\"", \""Headphones\""]",4238.52,{},272132,0,"""North America""" +2024-04-07,95500,2787,"[\""Phone\""]",3229.74,"{\""seasonal\"": \""5%\""}",267835,0,"""Asia""" +2023-03-20,95501,838,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",4868.76,{},120410,1,"""Africa""" +2024-11-10,95502,7746,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1281.19,{},47529,0,"""Africa""" +2023-06-24,95503,9356,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",4299.89,"{\"": \""11%\""}",73313,1,"""North America""" +2023-06-12,95504,134,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4529.85,{},96022,0,"""Europe""" +2023-11-29,95505,3983,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4908.22,"{\""promo\"": \""10%\""}",231256,1,"""Africa""" +2024-01-03,95506,92,"[\""Phone\"", \""Laptop\""]",1451.52,"{\""loyalty\"": \""6%\""}",166481,0,"""South America""" +2023-01-30,95507,9491,"[\""Phone\"", \""Monitor\""]",4406.77,"{\""seasonal\"": \""7%\""}",283579,0,"""Asia""" +2024-11-15,95508,4370,"[\""Charger\""]",919.49,{},58223,0,"""Africa""" +2024-02-18,95509,9122,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1762.43,"{\"": \""27%\""}",226856,1,"""Asia""" +2023-04-28,95510,8759,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",518.14,{},270371,1,"""South America""" +2023-02-11,95511,4485,"[\""Headphones\"", \""Laptop\""]",2611.83,{},260446,0,"""North America""" +2024-08-31,95512,3600,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",801.88,{},211354,1,"""Africa""" +2023-02-12,95513,8346,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",1937.68,{},223997,1,"""Africa""" +2023-02-06,95514,2599,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2052.23,{},142787,0,"""Europe""" +2024-05-15,95515,7171,"[\""Headphones\"", \""Laptop\""]",1677.55,"{\""promo\"": \""29%\""}",291609,0,"""South America""" +2023-04-26,95516,1400,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2844.22,{},146960,1,"""Europe""" +2023-09-18,95517,9983,"[\""Headphones\"", \""Wireless Mouse\""]",607.73,{},150757,0,"""Europe""" +2024-04-13,95518,3346,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",4644.05,{},104719,1,"""Africa""" +2023-07-10,95519,3926,"[\""Keyboard\""]",2797.9,{},91501,1,"""South America""" +2024-08-19,95520,5730,"[\""Charger\""]",2469.91,{},41801,1,"""North America""" +2023-08-30,95521,5109,"[\""Tablet\""]",615.65,"{\""seasonal\"": \""7%\""}",130356,1,"""Asia""" +2023-08-29,95522,9854,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4968.29,"{\""loyalty\"": \""26%\""}",103844,0,"""Africa""" +2024-06-02,95523,5792,"[\""Wireless Mouse\""]",150.57,{},234966,1,"""Asia""" +2024-06-15,95524,2967,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",574.28,{},159675,1,"""Europe""" +2023-01-24,95525,8315,"[\""Laptop\""]",3003.31,{},55560,0,"""North America""" +2023-03-01,95526,5676,"[\""Phone\""]",4983.18,{},256113,0,"""North America""" +2024-01-31,95527,8110,"[\""Phone\"", \""Headphones\""]",3160.97,"{\""promo\"": \""18%\""}",77865,1,"""Asia""" +2023-11-17,95528,9611,"[\""Headphones\""]",703.94,"{\""seasonal\"": \""17%\""}",5166,1,"""Europe""" +2023-09-19,95529,3798,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2949.29,"{\"": \""25%\""}",157836,1,"""South America""" +2024-09-17,95530,4645,"[\""Monitor\"", \""Keyboard\""]",554.34,"{\"": \""30%\""}",237648,0,"""South America""" +2024-04-20,95531,2022,"[\""Charger\"", \""Laptop\"", \""Phone\""]",3306.96,"{\"": \""10%\""}",218476,1,"""North America""" +2024-06-11,95532,9149,"[\""Charger\"", \""Wireless Mouse\""]",2766.59,"{\"": \""8%\""}",263236,1,"""South America""" +2023-04-20,95533,2552,"[\""Keyboard\""]",4628.46,{},227100,0,"""South America""" +2023-08-23,95534,584,"[\""Tablet\"", \""Wireless Mouse\""]",1692.28,"{\""promo\"": \""27%\""}",35704,1,"""Europe""" +2023-02-08,95535,5496,"[\""Phone\""]",307.21,"{\""promo\"": \""5%\""}",50506,0,"""Europe""" +2024-03-22,95536,7209,"[\""Wireless Mouse\"", \""Phone\""]",381.51,{},204047,0,"""Asia""" +2023-09-30,95537,1838,"[\""Monitor\""]",1880.69,"{\""seasonal\"": \""7%\""}",5466,0,"""South America""" +2023-10-14,95538,6584,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3413.61,{},23109,0,"""Asia""" +2024-06-03,95539,8651,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1454.02,{},155470,0,"""Asia""" +2024-04-30,95540,9239,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",4125.23,{},144781,1,"""South America""" +2024-12-21,95541,192,"[\""Keyboard\""]",4941.92,"{\"": \""16%\""}",23713,1,"""Africa""" +2023-12-03,95542,621,"[\""Keyboard\""]",427.84,{},63712,0,"""Asia""" +2023-05-19,95543,9591,"[\""Keyboard\""]",3175.19,"{\""promo\"": \""25%\""}",258463,0,"""Europe""" +2023-07-18,95544,2742,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",4122.64,"{\"": \""5%\""}",222948,1,"""South America""" +2024-04-20,95545,8613,"[\""Laptop\""]",3577.35,"{\""promo\"": \""16%\""}",73445,0,"""Africa""" +2023-08-01,95546,142,"[\""Monitor\"", \""Tablet\""]",1870.87,{},290860,1,"""Asia""" +2023-11-21,95547,4328,"[\""Wireless Mouse\"", \""Headphones\""]",451.85,"{\""loyalty\"": \""11%\""}",220725,0,"""Europe""" +2023-06-16,95548,2285,"[\""Headphones\"", \""Laptop\""]",1023.3,{},78183,0,"""Africa""" +2024-11-10,95549,8412,"[\""Charger\"", \""Phone\""]",625.45,{},293456,1,"""Africa""" +2023-08-08,95550,400,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4102.44,{},247761,1,"""Asia""" +2023-06-03,95551,1777,"[\""Monitor\""]",1463.74,"{\""promo\"": \""9%\""}",154556,0,"""Europe""" +2024-05-04,95552,9460,"[\""Monitor\"", \""Charger\""]",1466.78,{},274336,0,"""South America""" +2023-01-14,95553,2995,"[\""Tablet\"", \""Wireless Mouse\""]",4244.17,{},284913,1,"""Africa""" +2023-10-10,95554,1178,"[\""Charger\""]",281.33,{},119897,0,"""Asia""" +2023-06-22,95555,7934,"[\""Charger\"", \""Headphones\""]",4390.54,"{\"": \""21%\""}",102429,0,"""North America""" +2023-07-22,95556,546,"[\""Monitor\""]",4375.65,"{\""seasonal\"": \""12%\""}",139322,1,"""Africa""" +2023-12-21,95557,3185,"[\""Headphones\""]",2549.78,"{\"": \""17%\""}",155501,1,"""Asia""" +2023-10-27,95558,3618,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",2887.26,{},220048,0,"""Africa""" +2023-12-24,95559,4107,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3615.95,{},25055,1,"""Africa""" +2023-12-27,95560,6500,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2829.75,{},102945,1,"""Europe""" +2024-05-05,95561,4908,"[\""Headphones\"", \""Charger\""]",787.28,{},79767,1,"""Asia""" +2024-05-28,95562,4852,"[\""Keyboard\"", \""Laptop\""]",4923.77,{},98212,0,"""Asia""" +2023-05-05,95563,6426,"[\""Wireless Mouse\""]",4420.54,"{\""seasonal\"": \""14%\""}",212188,0,"""Europe""" +2023-08-22,95564,4962,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",1775.33,{},285067,1,"""Europe""" +2023-11-15,95565,4571,"[\""Charger\""]",3392.39,{},289953,1,"""Africa""" +2023-12-24,95566,72,"[\""Phone\"", \""Keyboard\""]",1873.13,"{\""promo\"": \""9%\""}",180289,0,"""Asia""" +2024-04-22,95567,6221,"[\""Tablet\""]",4134.79,"{\""promo\"": \""19%\""}",124649,1,"""Europe""" +2024-06-01,95568,9106,"[\""Charger\"", \""Monitor\""]",4404.37,{},249986,0,"""Europe""" +2024-08-10,95569,3401,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",50.08,{},273668,1,"""Asia""" +2024-03-27,95570,534,"[\""Laptop\"", \""Headphones\""]",2788.63,{},255289,1,"""Asia""" +2023-05-15,95571,1563,"[\""Keyboard\"", \""Laptop\""]",2226.44,"{\""loyalty\"": \""13%\""}",17724,0,"""Asia""" +2024-05-27,95572,589,"[\""Headphones\""]",2985.68,"{\""seasonal\"": \""27%\""}",181805,0,"""Africa""" +2024-05-17,95573,4895,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4278.12,"{\""seasonal\"": \""18%\""}",291565,0,"""Asia""" +2024-08-08,95574,7491,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",903.62,{},299706,0,"""Africa""" +2023-12-28,95575,5167,"[\""Charger\"", \""Phone\"", \""Headphones\""]",3345.33,"{\""loyalty\"": \""6%\""}",48479,0,"""Asia""" +2024-06-13,95576,4913,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",3209.77,{},40968,0,"""Africa""" +2023-06-04,95577,9041,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4940.65,{},86190,1,"""South America""" +2024-12-29,95578,7741,"[\""Monitor\""]",3263.71,"{\"": \""27%\""}",61450,1,"""North America""" +2023-02-14,95579,3616,"[\""Wireless Mouse\""]",4491.26,"{\""seasonal\"": \""28%\""}",152486,0,"""South America""" +2024-11-18,95580,5624,"[\""Charger\""]",2985.49,{},279205,1,"""Asia""" +2024-03-31,95581,8367,"[\""Headphones\"", \""Keyboard\""]",351.82,"{\""loyalty\"": \""10%\""}",85944,1,"""Africa""" +2023-05-24,95582,7302,"[\""Wireless Mouse\"", \""Headphones\""]",1430.63,{},158522,1,"""North America""" +2024-04-24,95583,6841,"[\""Phone\""]",4350.15,"{\"": \""16%\""}",196722,1,"""Europe""" +2024-02-08,95584,5504,"[\""Keyboard\"", \""Phone\""]",2969.48,"{\""seasonal\"": \""22%\""}",39239,1,"""Asia""" +2024-01-15,95585,7781,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3432.02,"{\""seasonal\"": \""21%\""}",138514,1,"""Europe""" +2023-03-04,95586,6526,"[\""Keyboard\"", \""Laptop\""]",2121.23,{},179903,1,"""South America""" +2024-03-02,95587,514,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",1092.69,"{\"": \""23%\""}",108210,0,"""South America""" +2024-08-20,95588,5263,"[\""Keyboard\"", \""Headphones\""]",2469.9,{},49012,1,"""North America""" +2023-10-19,95589,7675,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",4811.55,"{\""seasonal\"": \""8%\""}",232728,0,"""Africa""" +2023-12-28,95590,1231,"[\""Phone\"", \""Charger\"", \""Monitor\""]",832.31,"{\"": \""28%\""}",173227,0,"""South America""" +2023-05-31,95591,5035,"[\""Monitor\"", \""Headphones\""]",1644.32,{},188979,0,"""Africa""" +2024-07-15,95592,6196,"[\""Keyboard\""]",4451.15,{},218119,0,"""North America""" +2024-02-05,95593,1506,"[\""Wireless Mouse\"", \""Headphones\""]",4390.14,"{\""seasonal\"": \""17%\""}",227671,1,"""South America""" +2023-08-23,95594,8827,"[\""Phone\""]",3092.18,"{\""loyalty\"": \""9%\""}",146616,1,"""South America""" +2024-04-01,95595,4735,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2998.93,{},103041,1,"""Asia""" +2024-05-03,95596,6762,"[\""Monitor\"", \""Wireless Mouse\""]",4909.85,"{\"": \""5%\""}",270702,0,"""Asia""" +2023-12-13,95597,4855,"[\""Tablet\"", \""Phone\""]",2231.17,"{\""loyalty\"": \""29%\""}",27399,1,"""North America""" +2023-09-07,95598,8717,"[\""Wireless Mouse\"", \""Laptop\""]",3369.39,"{\""loyalty\"": \""21%\""}",219388,0,"""Europe""" +2023-05-06,95599,6867,"[\""Monitor\""]",1161.95,{},270032,0,"""Asia""" +2024-07-21,95600,7373,"[\""Headphones\"", \""Monitor\""]",1579.45,"{\""seasonal\"": \""16%\""}",132425,0,"""North America""" +2024-01-04,95601,3816,"[\""Phone\""]",1232.09,{},266197,0,"""Africa""" +2024-09-15,95602,4554,"[\""Charger\"", \""Monitor\""]",4925.99,{},76815,0,"""Africa""" +2024-03-12,95603,4766,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2418.21,"{\"": \""18%\""}",284699,0,"""Europe""" +2024-05-25,95604,1534,"[\""Wireless Mouse\"", \""Keyboard\""]",2733.53,"{\""loyalty\"": \""7%\""}",113434,1,"""Africa""" +2024-06-27,95605,5037,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4270.53,"{\"": \""22%\""}",172973,1,"""Asia""" +2024-11-26,95606,3090,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3253.01,"{\"": \""12%\""}",81885,0,"""Europe""" +2023-11-11,95607,3703,"[\""Keyboard\""]",4819.86,"{\"": \""12%\""}",187031,1,"""South America""" +2023-05-07,95608,8945,"[\""Laptop\"", \""Wireless Mouse\""]",849.9,"{\"": \""8%\""}",225097,0,"""Europe""" +2024-01-15,95609,8229,"[\""Keyboard\""]",1492.48,{},253169,1,"""Europe""" +2024-12-10,95610,2005,"[\""Keyboard\""]",1803.05,{},122524,1,"""Europe""" +2024-02-25,95611,5878,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",272.22,{},276762,1,"""North America""" +2023-10-17,95612,3840,"[\""Wireless Mouse\""]",4757.96,"{\""loyalty\"": \""10%\""}",22765,0,"""Europe""" +2024-09-03,95613,8414,"[\""Keyboard\"", \""Wireless Mouse\""]",4319.78,{},226840,1,"""North America""" +2024-12-03,95614,1844,"[\""Phone\"", \""Tablet\""]",4573.57,{},9133,0,"""North America""" +2023-04-07,95615,4924,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1918.91,{},58826,1,"""Asia""" +2023-09-28,95616,9457,"[\""Keyboard\"", \""Phone\""]",1542.9,"{\""seasonal\"": \""13%\""}",163112,1,"""Europe""" +2024-12-03,95617,2247,"[\""Headphones\"", \""Phone\""]",1564.68,"{\""seasonal\"": \""17%\""}",247777,0,"""Africa""" +2023-11-23,95618,2801,"[\""Charger\"", \""Headphones\""]",3633.72,{},19521,1,"""Asia""" +2024-10-17,95619,3717,"[\""Monitor\""]",1344.68,"{\""loyalty\"": \""20%\""}",290333,1,"""Europe""" +2024-12-03,95620,9241,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4361.65,"{\"": \""10%\""}",97396,1,"""South America""" +2023-11-14,95621,3126,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",2417.67,{},104124,0,"""Africa""" +2023-08-16,95622,7284,"[\""Monitor\"", \""Phone\""]",4240.33,{},40607,0,"""Asia""" +2024-11-09,95623,8609,"[\""Charger\"", \""Tablet\"", \""Phone\""]",1629.35,{},251481,1,"""Asia""" +2024-10-02,95624,1559,"[\""Laptop\""]",1782.5,{},191827,1,"""Africa""" +2024-01-11,95625,8963,"[\""Phone\""]",1137.04,"{\""loyalty\"": \""12%\""}",136200,1,"""North America""" +2023-07-19,95626,917,"[\""Laptop\""]",2994.43,"{\""seasonal\"": \""20%\""}",222443,1,"""North America""" +2024-11-11,95627,3820,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4630.07,"{\""loyalty\"": \""12%\""}",215345,0,"""South America""" +2024-04-18,95628,873,"[\""Keyboard\""]",4657.21,"{\""loyalty\"": \""18%\""}",40423,1,"""South America""" +2024-03-03,95629,691,"[\""Monitor\"", \""Headphones\""]",575.89,{},294986,1,"""South America""" +2023-03-28,95630,1507,"[\""Headphones\"", \""Charger\""]",628.32,{},223264,0,"""North America""" +2023-08-17,95631,4489,"[\""Charger\""]",1955.87,"{\""promo\"": \""20%\""}",282978,1,"""Europe""" +2023-09-07,95632,7261,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1474.37,"{\""promo\"": \""14%\""}",159133,1,"""Africa""" +2023-03-17,95633,4291,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4804.14,"{\""loyalty\"": \""12%\""}",166729,1,"""Asia""" +2024-05-21,95634,2066,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",541.94,"{\""promo\"": \""6%\""}",50168,0,"""Asia""" +2023-06-16,95635,2696,"[\""Monitor\""]",1295.08,{},288751,1,"""South America""" +2023-08-30,95636,7510,"[\""Charger\""]",1788.45,{},216872,1,"""Asia""" +2024-03-20,95637,4233,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1260.81,"{\""seasonal\"": \""23%\""}",154966,1,"""Asia""" +2023-06-23,95638,9765,"[\""Tablet\"", \""Keyboard\""]",3502.78,"{\""promo\"": \""26%\""}",155773,0,"""South America""" +2023-09-22,95639,3960,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3010.58,"{\""seasonal\"": \""25%\""}",130111,0,"""Asia""" +2023-08-11,95640,3913,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",718.27,{},12594,0,"""Europe""" +2024-12-07,95641,3193,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3020.2,{},3835,0,"""North America""" +2024-10-20,95642,8235,"[\""Phone\"", \""Laptop\""]",771.0,{},240471,0,"""Europe""" +2024-09-02,95643,5389,"[\""Laptop\""]",2403.68,"{\"": \""19%\""}",214754,0,"""Europe""" +2024-09-11,95644,3221,"[\""Tablet\"", \""Headphones\""]",844.33,{},63875,1,"""Asia""" +2023-03-08,95645,6631,"[\""Laptop\"", \""Phone\""]",1378.82,{},174574,0,"""Africa""" +2023-10-25,95646,1578,"[\""Charger\"", \""Phone\"", \""Headphones\""]",4436.56,{},140719,1,"""Africa""" +2023-05-14,95647,1958,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4449.76,"{\""promo\"": \""24%\""}",170832,1,"""Africa""" +2023-02-08,95648,4601,"[\""Keyboard\""]",3403.05,{},163005,1,"""Europe""" +2024-12-01,95649,7137,"[\""Phone\""]",3774.32,{},220837,1,"""Asia""" +2023-03-19,95650,4624,"[\""Charger\"", \""Wireless Mouse\""]",3680.09,{},193397,1,"""Europe""" +2023-10-05,95651,8454,"[\""Phone\"", \""Headphones\"", \""Charger\""]",4510.91,"{\"": \""6%\""}",115160,0,"""South America""" +2024-11-07,95652,2505,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4137.35,{},173575,0,"""Asia""" +2024-03-25,95653,3260,"[\""Charger\""]",2358.48,{},74241,1,"""South America""" +2023-01-03,95654,8622,"[\""Tablet\"", \""Monitor\""]",1473.46,"{\""seasonal\"": \""17%\""}",149310,0,"""Europe""" +2024-05-08,95655,7791,"[\""Keyboard\"", \""Charger\""]",2851.97,"{\""seasonal\"": \""16%\""}",49394,0,"""Europe""" +2023-03-03,95656,952,"[\""Laptop\"", \""Wireless Mouse\""]",3369.47,"{\""promo\"": \""30%\""}",96503,0,"""North America""" +2023-09-17,95657,9915,"[\""Tablet\"", \""Keyboard\""]",4690.06,"{\""loyalty\"": \""5%\""}",68891,1,"""Africa""" +2024-11-09,95658,8691,"[\""Laptop\"", \""Charger\""]",4510.76,"{\"": \""14%\""}",2955,1,"""Africa""" +2024-02-06,95659,6353,"[\""Phone\"", \""Keyboard\""]",4508.6,"{\""seasonal\"": \""25%\""}",286166,1,"""North America""" +2023-02-18,95660,2883,"[\""Phone\""]",931.18,"{\""seasonal\"": \""7%\""}",96829,0,"""Europe""" +2023-08-26,95661,3188,"[\""Phone\"", \""Laptop\""]",3618.94,"{\""seasonal\"": \""24%\""}",199460,1,"""North America""" +2023-11-26,95662,8047,"[\""Tablet\""]",4982.31,{},271611,0,"""North America""" +2023-07-04,95663,5213,"[\""Laptop\""]",4411.56,"{\"": \""21%\""}",267922,0,"""Europe""" +2023-01-18,95664,5056,"[\""Monitor\"", \""Laptop\""]",2428.22,{},175346,1,"""North America""" +2024-01-16,95665,8087,"[\""Wireless Mouse\"", \""Monitor\""]",4869.23,{},217322,1,"""Asia""" +2024-09-08,95666,7267,"[\""Keyboard\"", \""Laptop\""]",4264.48,"{\""loyalty\"": \""24%\""}",271422,1,"""North America""" +2023-04-26,95667,8168,"[\""Keyboard\"", \""Monitor\""]",2642.25,"{\""loyalty\"": \""12%\""}",211342,1,"""North America""" +2024-05-06,95668,7751,"[\""Monitor\""]",799.93,"{\""loyalty\"": \""6%\""}",109827,0,"""North America""" +2023-04-24,95669,1147,"[\""Tablet\""]",3637.69,"{\""promo\"": \""29%\""}",83001,1,"""Asia""" +2023-09-28,95670,4458,"[\""Tablet\""]",501.62,{},192552,1,"""South America""" +2024-05-12,95671,5841,"[\""Charger\""]",886.6,"{\""seasonal\"": \""29%\""}",267276,0,"""North America""" +2023-08-29,95672,8481,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",2945.57,"{\"": \""10%\""}",291712,1,"""South America""" +2023-07-18,95673,3237,"[\""Charger\"", \""Phone\"", \""Monitor\""]",795.22,{},268222,0,"""South America""" +2023-12-24,95674,9389,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",1212.08,{},282826,1,"""Africa""" +2023-09-02,95675,4106,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",4168.66,{},94974,1,"""Europe""" +2024-10-21,95676,7185,"[\""Wireless Mouse\""]",508.55,{},41476,1,"""Africa""" +2023-05-16,95677,7100,"[\""Wireless Mouse\""]",3529.76,"{\""loyalty\"": \""23%\""}",82857,1,"""Asia""" +2024-01-20,95678,7430,"[\""Keyboard\""]",3188.43,{},46412,0,"""South America""" +2024-11-06,95679,4644,"[\""Headphones\""]",2301.32,"{\"": \""10%\""}",200979,1,"""South America""" +2023-05-03,95680,1369,"[\""Monitor\""]",3216.21,"{\""loyalty\"": \""14%\""}",94796,1,"""North America""" +2023-06-08,95681,2062,"[\""Wireless Mouse\"", \""Monitor\""]",3252.92,{},8993,0,"""Africa""" +2024-08-11,95682,3665,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3489.52,"{\""loyalty\"": \""28%\""}",274218,0,"""Africa""" +2023-11-11,95683,5540,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",2157.04,"{\""promo\"": \""19%\""}",272245,0,"""South America""" +2024-03-21,95684,8673,"[\""Phone\"", \""Charger\""]",4715.85,"{\"": \""19%\""}",211126,1,"""South America""" +2023-04-08,95685,6410,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4213.03,"{\""loyalty\"": \""7%\""}",51405,0,"""Asia""" +2023-09-17,95686,8193,"[\""Headphones\""]",3579.33,{},182118,1,"""Europe""" +2023-01-31,95687,2775,"[\""Charger\""]",4433.27,"{\"": \""30%\""}",191475,0,"""North America""" +2023-11-28,95688,3822,"[\""Keyboard\""]",3046.47,{},86469,1,"""North America""" +2023-12-06,95689,4918,"[\""Headphones\"", \""Monitor\""]",771.76,{},45909,1,"""South America""" +2023-09-22,95690,9914,"[\""Headphones\""]",4229.47,{},45642,0,"""North America""" +2023-02-17,95691,5087,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3743.13,"{\"": \""24%\""}",27546,1,"""North America""" +2023-06-23,95692,6145,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1290.38,"{\"": \""27%\""}",28798,1,"""South America""" +2023-11-03,95693,6152,"[\""Wireless Mouse\"", \""Laptop\""]",270.5,"{\"": \""14%\""}",94988,0,"""Asia""" +2024-12-03,95694,1674,"[\""Phone\""]",2932.65,"{\""loyalty\"": \""12%\""}",270173,1,"""North America""" +2024-06-18,95695,9957,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",609.97,"{\""promo\"": \""29%\""}",141095,0,"""North America""" +2024-03-10,95696,9814,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",472.34,"{\""seasonal\"": \""18%\""}",258712,0,"""Africa""" +2023-05-12,95697,579,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",4194.9,"{\""promo\"": \""14%\""}",285982,0,"""North America""" +2024-07-01,95698,7336,"[\""Headphones\""]",696.0,{},192083,0,"""Europe""" +2023-10-27,95699,7340,"[\""Keyboard\""]",232.44,"{\""promo\"": \""9%\""}",227338,1,"""Europe""" +2024-02-16,95700,187,"[\""Monitor\"", \""Keyboard\""]",2532.68,"{\""loyalty\"": \""19%\""}",218113,1,"""Asia""" +2024-12-08,95701,476,"[\""Keyboard\"", \""Laptop\""]",2187.99,{},102802,1,"""Europe""" +2023-05-06,95702,6786,"[\""Phone\""]",2556.11,"{\"": \""28%\""}",256862,0,"""Asia""" +2024-07-22,95703,8857,"[\""Phone\"", \""Tablet\""]",2953.43,"{\""loyalty\"": \""11%\""}",288732,1,"""South America""" +2024-07-19,95704,6221,"[\""Tablet\"", \""Keyboard\""]",3470.05,"{\""promo\"": \""8%\""}",35416,1,"""Asia""" +2023-12-03,95705,99,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",866.03,"{\"": \""19%\""}",257156,0,"""Asia""" +2023-09-07,95706,9761,"[\""Tablet\"", \""Phone\""]",3060.52,{},64614,0,"""Africa""" +2024-05-25,95707,8997,"[\""Charger\"", \""Phone\""]",4321.58,"{\""seasonal\"": \""27%\""}",234561,0,"""Asia""" +2023-09-29,95708,6232,"[\""Headphones\""]",2356.19,"{\"": \""28%\""}",185144,0,"""North America""" +2024-01-27,95709,6346,"[\""Monitor\""]",3271.6,{},102254,0,"""Europe""" +2024-01-23,95710,7058,"[\""Charger\"", \""Keyboard\""]",3715.1,"{\""promo\"": \""18%\""}",127476,1,"""Africa""" +2023-04-07,95711,2412,"[\""Laptop\""]",4354.39,{},125397,0,"""Asia""" +2023-10-18,95712,6099,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2185.08,"{\""seasonal\"": \""28%\""}",170022,0,"""North America""" +2024-02-23,95713,4241,"[\""Tablet\"", \""Keyboard\""]",3906.85,"{\""loyalty\"": \""30%\""}",29737,1,"""South America""" +2024-08-14,95714,1142,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",594.24,{},32350,1,"""Europe""" +2024-09-13,95715,6286,"[\""Phone\"", \""Laptop\""]",2477.78,{},26060,0,"""South America""" +2024-11-29,95716,9810,"[\""Laptop\"", \""Headphones\""]",3397.53,"{\""loyalty\"": \""18%\""}",44407,1,"""South America""" +2023-08-19,95717,2834,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",1314.35,"{\"": \""18%\""}",202063,0,"""Africa""" +2023-02-24,95718,3923,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",897.36,{},11298,1,"""South America""" +2024-07-19,95719,9961,"[\""Phone\"", \""Wireless Mouse\""]",2306.35,"{\""loyalty\"": \""21%\""}",230004,1,"""Asia""" +2023-11-20,95720,9813,"[\""Phone\""]",4090.61,"{\""loyalty\"": \""18%\""}",47938,0,"""Asia""" +2024-03-17,95721,6993,"[\""Wireless Mouse\""]",1695.34,{},128097,1,"""Europe""" +2023-04-16,95722,4849,"[\""Tablet\"", \""Phone\""]",1860.35,"{\""seasonal\"": \""8%\""}",236794,0,"""Asia""" +2023-07-09,95723,9339,"[\""Tablet\""]",4580.46,"{\"": \""22%\""}",276506,0,"""North America""" +2024-09-22,95724,4701,"[\""Headphones\"", \""Laptop\""]",1581.56,{},278947,0,"""Europe""" +2023-05-27,95725,9841,"[\""Tablet\"", \""Monitor\""]",2982.71,"{\""loyalty\"": \""12%\""}",131254,0,"""South America""" +2023-11-24,95726,5550,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",4231.29,"{\"": \""16%\""}",210707,0,"""South America""" +2023-01-18,95727,6033,"[\""Wireless Mouse\""]",2217.88,{},32194,1,"""Africa""" +2023-01-15,95728,5406,"[\""Laptop\""]",2050.29,"{\""promo\"": \""5%\""}",95917,1,"""Africa""" +2023-08-01,95729,7413,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",1554.62,"{\"": \""25%\""}",31743,1,"""South America""" +2024-04-05,95730,9535,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3727.34,{},165809,1,"""Africa""" +2024-06-24,95731,4963,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2280.12,"{\""seasonal\"": \""16%\""}",177192,0,"""Europe""" +2024-10-18,95732,7382,"[\""Keyboard\""]",3559.17,"{\"": \""5%\""}",70546,1,"""South America""" +2024-04-08,95733,6342,"[\""Tablet\""]",2219.12,{},156837,1,"""South America""" +2024-02-29,95734,2094,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1707.27,"{\""seasonal\"": \""6%\""}",274024,0,"""North America""" +2024-08-21,95735,2054,"[\""Headphones\""]",4293.74,"{\""seasonal\"": \""28%\""}",8011,1,"""Asia""" +2023-05-21,95736,201,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",988.12,"{\""loyalty\"": \""18%\""}",60673,0,"""Africa""" +2024-09-07,95737,6336,"[\""Charger\""]",3235.52,{},268641,1,"""Asia""" +2024-08-21,95738,2849,"[\""Laptop\"", \""Monitor\""]",1534.17,{},217302,1,"""Africa""" +2023-02-15,95739,2530,"[\""Wireless Mouse\"", \""Charger\""]",470.6,"{\""seasonal\"": \""27%\""}",193488,0,"""Asia""" +2024-01-13,95740,4450,"[\""Keyboard\""]",191.01,{},14191,1,"""South America""" +2023-11-25,95741,3396,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",520.7,{},267967,0,"""Asia""" +2024-10-08,95742,6620,"[\""Keyboard\"", \""Headphones\""]",4064.0,"{\""promo\"": \""26%\""}",213908,0,"""South America""" +2023-11-06,95743,1107,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3344.18,{},101683,0,"""Asia""" +2024-12-10,95744,9777,"[\""Laptop\"", \""Keyboard\""]",1203.37,{},64136,1,"""Europe""" +2024-12-01,95745,798,"[\""Laptop\"", \""Wireless Mouse\""]",859.39,"{\""loyalty\"": \""21%\""}",33994,1,"""Asia""" +2024-11-30,95746,8553,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2419.22,"{\""seasonal\"": \""10%\""}",134435,1,"""Europe""" +2024-03-16,95747,1057,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1330.31,"{\""seasonal\"": \""24%\""}",15353,0,"""Asia""" +2024-10-23,95748,6447,"[\""Keyboard\"", \""Laptop\""]",1251.03,"{\"": \""10%\""}",142406,1,"""Asia""" +2024-06-28,95749,5146,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2579.68,{},81946,1,"""Africa""" +2023-08-06,95750,4099,"[\""Phone\"", \""Charger\""]",2996.93,"{\"": \""6%\""}",173677,1,"""South America""" +2024-04-10,95751,7167,"[\""Laptop\"", \""Headphones\""]",834.47,"{\""loyalty\"": \""18%\""}",54409,1,"""North America""" +2024-10-29,95752,8123,"[\""Phone\"", \""Charger\""]",3891.31,"{\"": \""21%\""}",250982,0,"""Africa""" +2023-08-07,95753,2187,"[\""Laptop\""]",4648.14,"{\""loyalty\"": \""5%\""}",154942,1,"""North America""" +2023-06-07,95754,1099,"[\""Wireless Mouse\""]",3733.48,{},190764,0,"""South America""" +2024-11-20,95755,1053,"[\""Phone\""]",872.25,"{\"": \""17%\""}",283634,1,"""Asia""" +2023-06-11,95756,641,"[\""Charger\"", \""Phone\""]",4024.93,{},258705,1,"""South America""" +2024-10-21,95757,2334,"[\""Tablet\""]",947.41,"{\""promo\"": \""13%\""}",246302,0,"""Asia""" +2023-08-02,95758,455,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",322.39,"{\"": \""23%\""}",45635,1,"""North America""" +2023-09-25,95759,3392,"[\""Wireless Mouse\"", \""Charger\""]",1096.49,{},208088,0,"""Europe""" +2024-02-08,95760,2469,"[\""Wireless Mouse\"", \""Charger\""]",2579.21,"{\""seasonal\"": \""24%\""}",121483,1,"""Asia""" +2023-10-05,95761,2491,"[\""Monitor\""]",3968.64,"{\""loyalty\"": \""24%\""}",2200,0,"""Africa""" +2023-08-20,95762,2949,"[\""Monitor\""]",4748.44,"{\""promo\"": \""16%\""}",56887,1,"""South America""" +2024-07-16,95763,3393,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1685.27,{},248708,0,"""Europe""" +2023-07-03,95764,1372,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2044.63,{},249490,0,"""Africa""" +2024-07-08,95765,7641,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",3586.69,{},63718,0,"""Asia""" +2024-06-01,95766,7778,"[\""Tablet\""]",3517.74,{},264540,0,"""Europe""" +2024-02-18,95767,1317,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",929.18,{},113817,1,"""Asia""" +2023-10-03,95768,8353,"[\""Headphones\"", \""Laptop\""]",4336.74,"{\""promo\"": \""20%\""}",140470,1,"""Europe""" +2023-01-16,95769,8863,"[\""Phone\"", \""Laptop\"", \""Tablet\""]",4826.32,"{\""loyalty\"": \""11%\""}",58863,0,"""Africa""" +2024-09-08,95770,9572,"[\""Keyboard\""]",3719.0,"{\"": \""17%\""}",232115,0,"""Asia""" +2023-06-30,95771,3703,"[\""Tablet\"", \""Laptop\""]",1789.58,{},80162,1,"""Africa""" +2024-06-26,95772,5406,"[\""Tablet\"", \""Phone\""]",1084.81,"{\""promo\"": \""18%\""}",297338,0,"""Africa""" +2023-06-28,95773,6560,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",112.76,{},183119,0,"""Europe""" +2023-12-29,95774,3344,"[\""Monitor\"", \""Tablet\""]",3705.94,"{\""promo\"": \""19%\""}",2622,1,"""Europe""" +2023-09-12,95775,8473,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",1266.84,"{\""seasonal\"": \""15%\""}",279484,1,"""Asia""" +2024-02-29,95776,3453,"[\""Phone\"", \""Monitor\""]",2419.26,{},162271,1,"""Asia""" +2023-12-01,95777,1093,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4292.17,"{\""loyalty\"": \""9%\""}",44687,0,"""Africa""" +2024-07-26,95778,7585,"[\""Monitor\""]",1229.55,{},267711,1,"""North America""" +2024-02-05,95779,2241,"[\""Keyboard\"", \""Tablet\""]",285.68,{},122916,0,"""Europe""" +2023-01-30,95780,5907,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1078.0,"{\""promo\"": \""30%\""}",18943,1,"""Asia""" +2023-09-07,95781,2021,"[\""Laptop\"", \""Wireless Mouse\""]",1175.15,"{\""promo\"": \""22%\""}",227806,1,"""Africa""" +2024-12-30,95782,637,"[\""Monitor\"", \""Keyboard\""]",2740.83,{},36501,0,"""Africa""" +2024-06-17,95783,5487,"[\""Phone\""]",3544.78,{},180731,1,"""North America""" +2023-10-07,95784,5118,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",2634.37,"{\""promo\"": \""20%\""}",60240,1,"""Africa""" +2023-04-29,95785,8340,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3363.16,{},281598,0,"""North America""" +2024-09-22,95786,1260,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4914.2,{},116734,0,"""Europe""" +2024-01-08,95787,7844,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3151.47,{},165444,0,"""Europe""" +2023-01-02,95788,7183,"[\""Laptop\"", \""Keyboard\""]",4576.09,"{\""promo\"": \""21%\""}",186365,0,"""Asia""" +2023-01-02,95789,9865,"[\""Headphones\"", \""Tablet\""]",1354.67,"{\""loyalty\"": \""24%\""}",108958,0,"""Europe""" +2024-08-21,95790,9873,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4846.08,{},266737,0,"""Europe""" +2023-12-24,95791,5582,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",4674.4,{},259992,1,"""Africa""" +2023-03-10,95792,2562,"[\""Monitor\""]",3364.33,{},267168,0,"""Africa""" +2023-03-30,95793,1390,"[\""Headphones\""]",1266.44,{},165688,0,"""North America""" +2023-04-01,95794,6665,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3450.39,"{\""seasonal\"": \""23%\""}",21555,1,"""North America""" +2023-06-29,95795,1216,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1508.06,{},284085,1,"""South America""" +2023-09-24,95796,5595,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",4721.63,"{\""loyalty\"": \""18%\""}",151997,0,"""South America""" +2023-03-19,95797,3759,"[\""Keyboard\"", \""Wireless Mouse\""]",1887.4,{},141196,0,"""Asia""" +2023-06-07,95798,658,"[\""Tablet\""]",3114.92,{},273115,0,"""South America""" +2024-07-15,95799,7564,"[\""Wireless Mouse\""]",4282.73,"{\""seasonal\"": \""13%\""}",128046,0,"""North America""" +2023-07-26,95800,472,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1266.71,{},51016,1,"""Asia""" +2023-10-11,95801,8782,"[\""Headphones\""]",848.43,"{\"": \""21%\""}",203074,1,"""Europe""" +2024-02-13,95802,3000,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3650.51,{},102643,0,"""Asia""" +2023-12-15,95803,8125,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",459.74,{},31525,0,"""North America""" +2023-07-04,95804,1798,"[\""Wireless Mouse\""]",749.26,"{\""loyalty\"": \""18%\""}",98462,1,"""Asia""" +2023-09-15,95805,2502,"[\""Charger\""]",2845.17,{},181937,1,"""Africa""" +2023-07-09,95806,3256,"[\""Headphones\"", \""Tablet\""]",3410.85,"{\""seasonal\"": \""22%\""}",194275,1,"""Asia""" +2023-04-30,95807,152,"[\""Tablet\""]",1359.73,{},130618,1,"""Africa""" +2023-09-03,95808,3658,"[\""Charger\"", \""Headphones\""]",1795.11,{},39605,0,"""South America""" +2024-07-21,95809,8749,"[\""Monitor\""]",1586.23,{},80595,0,"""Europe""" +2024-10-31,95810,97,"[\""Tablet\""]",4835.72,"{\""seasonal\"": \""7%\""}",262442,0,"""North America""" +2024-05-23,95811,2834,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",4184.0,{},33366,0,"""Europe""" +2024-01-21,95812,9174,"[\""Wireless Mouse\"", \""Tablet\""]",2144.12,{},115613,0,"""Europe""" +2024-02-06,95813,1247,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3477.67,{},88786,1,"""North America""" +2024-10-16,95814,5002,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",774.58,{},264912,1,"""Africa""" +2023-04-05,95815,8134,"[\""Headphones\"", \""Tablet\""]",4877.29,"{\""promo\"": \""19%\""}",282872,1,"""Europe""" +2023-04-15,95816,1421,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",2615.63,{},62647,1,"""North America""" +2024-03-28,95817,4525,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1196.62,{},127342,0,"""Europe""" +2023-06-06,95818,1712,"[\""Laptop\""]",4379.9,{},129385,0,"""Africa""" +2024-11-25,95819,4805,"[\""Tablet\""]",2817.32,"{\""promo\"": \""26%\""}",168392,1,"""Asia""" +2023-11-04,95820,3427,"[\""Keyboard\"", \""Laptop\""]",4946.5,"{\""loyalty\"": \""17%\""}",193850,1,"""North America""" +2023-09-16,95821,3454,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2606.63,{},260936,0,"""Asia""" +2023-12-21,95822,8501,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",961.14,{},124653,1,"""North America""" +2023-05-07,95823,8204,"[\""Keyboard\""]",3600.74,"{\""promo\"": \""28%\""}",189210,0,"""Asia""" +2023-07-31,95824,5859,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3670.11,"{\""seasonal\"": \""20%\""}",71074,0,"""North America""" +2023-06-13,95825,4566,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",213.1,"{\"": \""25%\""}",198603,0,"""Europe""" +2024-05-08,95826,3958,"[\""Monitor\"", \""Charger\""]",473.38,{},103865,0,"""North America""" +2023-10-28,95827,6529,"[\""Charger\"", \""Wireless Mouse\""]",903.43,"{\""seasonal\"": \""30%\""}",174893,1,"""Asia""" +2023-04-10,95828,2035,"[\""Monitor\""]",4863.9,{},155646,0,"""North America""" +2023-06-11,95829,5310,"[\""Wireless Mouse\""]",1914.13,"{\""promo\"": \""27%\""}",143963,1,"""Asia""" +2023-03-31,95830,2055,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2928.71,"{\"": \""8%\""}",92005,0,"""Europe""" +2023-11-10,95831,3997,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1479.38,"{\"": \""5%\""}",171720,0,"""South America""" +2024-11-26,95832,2198,"[\""Charger\""]",4732.99,{},19361,1,"""Europe""" +2023-07-14,95833,9365,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",1966.92,"{\""promo\"": \""29%\""}",277814,0,"""Africa""" +2023-12-22,95834,1387,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",107.33,"{\""seasonal\"": \""26%\""}",159633,0,"""South America""" +2023-04-01,95835,4037,"[\""Keyboard\""]",3839.71,{},144797,1,"""Europe""" +2023-02-14,95836,566,"[\""Phone\"", \""Wireless Mouse\""]",4409.09,{},264278,1,"""Asia""" +2023-07-11,95837,9754,"[\""Wireless Mouse\"", \""Keyboard\""]",4208.95,"{\""seasonal\"": \""11%\""}",104842,0,"""Europe""" +2024-12-21,95838,5356,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",3708.77,{},136883,0,"""Asia""" +2024-06-03,95839,8094,"[\""Headphones\"", \""Tablet\""]",2872.16,"{\""seasonal\"": \""8%\""}",76061,1,"""North America""" +2023-03-30,95840,5924,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",1385.62,{},151969,0,"""Africa""" +2023-08-31,95841,8203,"[\""Keyboard\"", \""Headphones\""]",2614.05,"{\"": \""8%\""}",1386,0,"""North America""" +2024-10-26,95842,3885,"[\""Tablet\"", \""Laptop\""]",472.62,{},82150,0,"""South America""" +2023-07-13,95843,4732,"[\""Keyboard\"", \""Headphones\""]",1347.85,"{\""seasonal\"": \""16%\""}",67469,0,"""South America""" +2024-09-08,95844,3843,"[\""Phone\"", \""Monitor\""]",4328.02,{},51880,1,"""North America""" +2023-06-02,95845,6499,"[\""Wireless Mouse\"", \""Charger\""]",1131.24,"{\""seasonal\"": \""18%\""}",117417,0,"""North America""" +2023-05-12,95846,9793,"[\""Keyboard\""]",1198.56,"{\""loyalty\"": \""19%\""}",158712,0,"""Africa""" +2024-06-13,95847,1753,"[\""Wireless Mouse\"", \""Charger\""]",539.21,"{\""loyalty\"": \""7%\""}",165640,0,"""North America""" +2023-06-18,95848,5416,"[\""Tablet\""]",1040.93,"{\"": \""6%\""}",52970,0,"""Africa""" +2023-12-13,95849,3606,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1351.98,"{\""loyalty\"": \""22%\""}",223297,0,"""South America""" +2023-11-23,95850,7600,"[\""Monitor\""]",1548.76,"{\""promo\"": \""8%\""}",18472,1,"""South America""" +2024-08-01,95851,1921,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",2763.52,{},25412,0,"""North America""" +2024-09-02,95852,7883,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4637.55,"{\""loyalty\"": \""28%\""}",24607,1,"""South America""" +2024-01-08,95853,2921,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",4434.22,{},186979,1,"""Asia""" +2023-12-24,95854,9542,"[\""Laptop\""]",185.79,{},141007,0,"""Asia""" +2023-03-19,95855,4969,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",4742.66,"{\"": \""23%\""}",113965,0,"""South America""" +2023-07-08,95856,6372,"[\""Charger\""]",3468.94,"{\""seasonal\"": \""18%\""}",33213,0,"""Africa""" +2024-06-18,95857,510,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4952.49,{},85695,1,"""North America""" +2024-02-21,95858,3618,"[\""Headphones\"", \""Tablet\""]",2809.64,{},183674,0,"""North America""" +2023-05-31,95859,4402,"[\""Headphones\"", \""Laptop\""]",1920.92,"{\"": \""15%\""}",44203,1,"""South America""" +2023-07-12,95860,2632,"[\""Charger\"", \""Laptop\"", \""Monitor\""]",1069.98,{},180853,1,"""Europe""" +2023-01-03,95861,5327,"[\""Charger\"", \""Tablet\""]",3463.68,"{\"": \""19%\""}",217996,1,"""Asia""" +2024-06-29,95862,9398,"[\""Phone\""]",4237.89,"{\"": \""7%\""}",10399,1,"""Asia""" +2024-12-02,95863,4939,"[\""Monitor\""]",4143.48,{},47005,0,"""Europe""" +2024-07-27,95864,7293,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",3181.69,{},192725,0,"""South America""" +2023-07-30,95865,2407,"[\""Headphones\"", \""Keyboard\""]",3381.56,{},283976,0,"""North America""" +2023-02-23,95866,1568,"[\""Wireless Mouse\""]",4426.58,{},48120,1,"""Africa""" +2023-05-17,95867,5180,"[\""Charger\"", \""Tablet\""]",2649.41,{},161224,1,"""Europe""" +2023-01-06,95868,911,"[\""Charger\""]",3544.09,"{\""loyalty\"": \""25%\""}",106893,0,"""South America""" +2023-10-08,95869,6747,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2704.01,{},76199,0,"""Europe""" +2023-07-08,95870,461,"[\""Monitor\""]",3200.64,{},284494,1,"""North America""" +2023-09-26,95871,258,"[\""Monitor\"", \""Wireless Mouse\""]",411.5,{},31825,0,"""Asia""" +2023-03-30,95872,3341,"[\""Monitor\"", \""Wireless Mouse\""]",2963.24,"{\"": \""24%\""}",168812,1,"""North America""" +2024-07-26,95873,7258,"[\""Phone\""]",2773.61,{},138764,1,"""Africa""" +2023-02-13,95874,8694,"[\""Wireless Mouse\""]",2831.06,"{\""loyalty\"": \""24%\""}",233069,1,"""Europe""" +2024-08-05,95875,6130,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1194.54,"{\""seasonal\"": \""24%\""}",238770,1,"""South America""" +2024-10-04,95876,5660,"[\""Wireless Mouse\""]",206.4,{},298654,1,"""North America""" +2023-04-04,95877,8396,"[\""Keyboard\""]",99.05,"{\""seasonal\"": \""19%\""}",11134,1,"""North America""" +2023-03-27,95878,6760,"[\""Keyboard\""]",4905.35,{},150559,1,"""Asia""" +2024-11-26,95879,9218,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",2223.76,{},131307,1,"""Europe""" +2024-10-03,95880,2077,"[\""Laptop\""]",4578.85,{},233638,0,"""South America""" +2023-03-22,95881,5507,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",4347.61,"{\""promo\"": \""5%\""}",113070,1,"""North America""" +2023-11-29,95882,6536,"[\""Monitor\"", \""Laptop\""]",3860.04,{},271626,1,"""Asia""" +2024-02-26,95883,7355,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4355.61,"{\"": \""12%\""}",132122,0,"""Asia""" +2023-04-17,95884,5250,"[\""Headphones\"", \""Laptop\""]",4968.5,{},256515,1,"""Africa""" +2023-12-09,95885,5216,"[\""Charger\"", \""Keyboard\""]",2800.35,"{\"": \""14%\""}",140904,0,"""South America""" +2024-10-14,95886,9578,"[\""Laptop\"", \""Phone\""]",1428.83,{},239808,1,"""Africa""" +2024-07-26,95887,3330,"[\""Charger\"", \""Phone\""]",2531.63,"{\""seasonal\"": \""21%\""}",125715,1,"""North America""" +2023-04-18,95888,3573,"[\""Keyboard\""]",2466.2,"{\"": \""29%\""}",222747,0,"""South America""" +2023-04-28,95889,4618,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",3189.19,{},234169,0,"""North America""" +2023-06-10,95890,2721,"[\""Keyboard\""]",3331.18,"{\"": \""23%\""}",111205,1,"""Asia""" +2023-05-17,95891,6989,"[\""Keyboard\"", \""Laptop\""]",2720.85,"{\""seasonal\"": \""25%\""}",250466,1,"""Asia""" +2023-08-26,95892,2793,"[\""Laptop\""]",745.8,{},22730,1,"""South America""" +2023-06-16,95893,9659,"[\""Keyboard\""]",4178.35,"{\""promo\"": \""29%\""}",12061,1,"""Europe""" +2024-07-21,95894,71,"[\""Keyboard\"", \""Phone\""]",2517.77,{},154450,1,"""Africa""" +2024-02-22,95895,2909,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",2342.02,"{\""promo\"": \""24%\""}",150010,0,"""South America""" +2024-11-29,95896,9066,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3635.23,{},29929,0,"""Africa""" +2024-12-24,95897,4421,"[\""Monitor\""]",2503.62,"{\""promo\"": \""21%\""}",129920,1,"""Africa""" +2023-10-24,95898,2696,"[\""Charger\"", \""Tablet\""]",4611.93,{},202867,1,"""South America""" +2024-10-26,95899,4841,"[\""Charger\""]",4224.52,"{\""promo\"": \""7%\""}",198783,1,"""North America""" +2023-12-06,95900,6252,"[\""Monitor\""]",531.75,{},271719,1,"""Asia""" +2023-02-12,95901,4721,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",1282.54,"{\""promo\"": \""5%\""}",196061,1,"""Asia""" +2024-03-12,95902,6224,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",609.73,{},64841,1,"""Asia""" +2023-11-03,95903,3409,"[\""Phone\"", \""Tablet\""]",881.04,"{\""promo\"": \""14%\""}",296255,1,"""Africa""" +2023-05-28,95904,8902,"[\""Tablet\""]",4371.65,"{\""seasonal\"": \""21%\""}",256657,0,"""Africa""" +2023-02-16,95905,230,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2011.56,{},91535,0,"""Asia""" +2024-03-24,95906,2846,"[\""Wireless Mouse\""]",4700.81,{},120986,0,"""North America""" +2023-08-14,95907,9117,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",436.75,{},28954,1,"""North America""" +2023-04-24,95908,7079,"[\""Charger\""]",1652.41,{},46188,0,"""North America""" +2024-04-11,95909,4693,"[\""Wireless Mouse\""]",4889.8,{},1576,0,"""Europe""" +2024-05-04,95910,7256,"[\""Wireless Mouse\""]",1988.4,{},204142,0,"""North America""" +2023-04-11,95911,4741,"[\""Charger\"", \""Headphones\""]",4648.74,{},283447,0,"""Africa""" +2023-04-19,95912,4959,"[\""Charger\"", \""Laptop\""]",916.93,"{\""seasonal\"": \""29%\""}",20747,0,"""Africa""" +2023-10-28,95913,7847,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2897.72,"{\""seasonal\"": \""21%\""}",176974,1,"""North America""" +2024-07-25,95914,7070,"[\""Monitor\""]",963.24,"{\""seasonal\"": \""9%\""}",16653,1,"""Europe""" +2023-04-28,95915,6183,"[\""Charger\""]",3815.57,"{\""seasonal\"": \""5%\""}",274306,1,"""Europe""" +2023-12-06,95916,4461,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",601.53,{},193842,0,"""Asia""" +2024-04-17,95917,6950,"[\""Tablet\""]",3828.19,{},92289,0,"""Africa""" +2023-05-21,95918,5885,"[\""Keyboard\""]",908.49,{},74435,0,"""Asia""" +2024-04-20,95919,5190,"[\""Tablet\""]",195.92,"{\""promo\"": \""21%\""}",273817,1,"""South America""" +2023-10-20,95920,3362,"[\""Laptop\"", \""Phone\""]",3941.54,"{\"": \""26%\""}",125683,1,"""South America""" +2023-06-08,95921,9560,"[\""Wireless Mouse\"", \""Phone\""]",4567.6,"{\""promo\"": \""24%\""}",212500,1,"""North America""" +2024-11-09,95922,8734,"[\""Monitor\""]",3037.86,{},259170,1,"""Asia""" +2023-05-11,95923,3367,"[\""Headphones\""]",4828.88,{},165422,0,"""North America""" +2023-10-03,95924,354,"[\""Wireless Mouse\""]",4634.68,{},257696,1,"""Africa""" +2024-09-06,95925,9705,"[\""Tablet\"", \""Wireless Mouse\""]",4957.3,{},271361,0,"""Africa""" +2024-08-20,95926,3486,"[\""Monitor\""]",4297.25,"{\"": \""25%\""}",118845,0,"""North America""" +2024-02-10,95927,899,"[\""Wireless Mouse\"", \""Monitor\""]",4908.46,"{\""loyalty\"": \""18%\""}",216234,1,"""South America""" +2023-10-25,95928,1927,"[\""Laptop\""]",3042.01,"{\""seasonal\"": \""13%\""}",4852,1,"""Europe""" +2024-05-19,95929,8399,"[\""Phone\"", \""Headphones\""]",2491.84,"{\"": \""8%\""}",113668,0,"""South America""" +2024-06-12,95930,4181,"[\""Keyboard\""]",844.95,"{\""promo\"": \""8%\""}",247277,0,"""South America""" +2023-06-30,95931,7177,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3389.76,"{\""loyalty\"": \""27%\""}",272373,0,"""Europe""" +2023-09-20,95932,4672,"[\""Wireless Mouse\"", \""Tablet\""]",2308.58,"{\""promo\"": \""17%\""}",13553,1,"""South America""" +2023-01-03,95933,4158,"[\""Laptop\"", \""Phone\"", \""Charger\""]",4851.77,{},167024,1,"""Europe""" +2023-03-12,95934,8427,"[\""Monitor\"", \""Phone\""]",2129.36,"{\""loyalty\"": \""12%\""}",197337,1,"""North America""" +2024-10-23,95935,8358,"[\""Keyboard\""]",1513.94,"{\""loyalty\"": \""29%\""}",255385,1,"""South America""" +2024-08-23,95936,1514,"[\""Monitor\""]",2598.28,{},45149,0,"""Europe""" +2023-11-05,95937,4634,"[\""Monitor\""]",2863.83,{},196164,0,"""North America""" +2024-08-29,95938,4803,"[\""Headphones\""]",3829.03,"{\""promo\"": \""11%\""}",181560,1,"""South America""" +2024-12-01,95939,1296,"[\""Headphones\""]",1795.83,"{\"": \""22%\""}",91720,0,"""Europe""" +2024-09-29,95940,1641,"[\""Monitor\""]",4193.36,{},192729,1,"""Asia""" +2023-10-15,95941,9152,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1221.36,{},278652,1,"""South America""" +2023-07-21,95942,3720,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",681.94,"{\"": \""20%\""}",252112,1,"""South America""" +2024-01-24,95943,7344,"[\""Charger\"", \""Laptop\""]",4191.24,"{\""seasonal\"": \""19%\""}",113234,1,"""Asia""" +2024-07-01,95944,9771,"[\""Phone\""]",2775.36,"{\""promo\"": \""13%\""}",197170,0,"""Asia""" +2024-03-28,95945,768,"[\""Wireless Mouse\""]",810.76,{},238833,1,"""North America""" +2023-04-06,95946,6999,"[\""Wireless Mouse\"", \""Charger\""]",63.18,"{\""promo\"": \""13%\""}",82238,0,"""Asia""" +2024-11-07,95947,2768,"[\""Phone\"", \""Monitor\""]",4059.98,{},9311,0,"""South America""" +2023-11-23,95948,9443,"[\""Tablet\"", \""Phone\""]",371.53,"{\"": \""23%\""}",226356,0,"""South America""" +2023-03-10,95949,4996,"[\""Tablet\""]",2115.3,{},69127,0,"""Europe""" +2023-09-16,95950,4983,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3765.12,"{\""promo\"": \""18%\""}",252721,1,"""South America""" +2024-12-14,95951,6235,"[\""Phone\"", \""Charger\""]",4254.19,{},23101,0,"""Asia""" +2024-06-07,95952,9970,"[\""Laptop\"", \""Wireless Mouse\""]",3888.26,"{\"": \""21%\""}",44493,1,"""South America""" +2024-12-31,95953,9188,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",2142.81,{},231676,0,"""Asia""" +2024-09-13,95954,427,"[\""Phone\"", \""Laptop\""]",3216.35,"{\""promo\"": \""27%\""}",120173,1,"""North America""" +2023-11-23,95955,4529,"[\""Headphones\"", \""Wireless Mouse\""]",560.78,{},207682,0,"""Asia""" +2024-02-17,95956,447,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1297.75,"{\""promo\"": \""17%\""}",205117,1,"""North America""" +2024-09-15,95957,7992,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1697.21,{},233600,1,"""Europe""" +2024-11-21,95958,2956,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",1027.51,"{\""promo\"": \""22%\""}",154124,1,"""Europe""" +2024-09-13,95959,2124,"[\""Laptop\"", \""Keyboard\""]",3491.63,"{\""promo\"": \""22%\""}",200072,1,"""Asia""" +2023-10-13,95960,3203,"[\""Wireless Mouse\"", \""Headphones\""]",2808.18,{},214934,0,"""South America""" +2024-12-13,95961,5389,"[\""Charger\"", \""Headphones\""]",738.76,"{\""promo\"": \""21%\""}",45514,1,"""South America""" +2023-01-11,95962,840,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1439.11,"{\""promo\"": \""7%\""}",259247,1,"""Asia""" +2023-10-05,95963,4934,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",4993.62,"{\""promo\"": \""28%\""}",254446,0,"""Asia""" +2023-07-14,95964,5769,"[\""Phone\"", \""Charger\"", \""Laptop\""]",4239.02,"{\""seasonal\"": \""19%\""}",137204,1,"""North America""" +2023-03-14,95965,84,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",3950.26,{},143625,1,"""North America""" +2024-10-02,95966,5462,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",478.04,"{\""seasonal\"": \""16%\""}",226503,1,"""South America""" +2023-08-02,95967,5140,"[\""Laptop\"", \""Wireless Mouse\""]",1255.14,"{\"": \""17%\""}",106764,1,"""South America""" +2024-10-18,95968,180,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",1058.87,{},208312,1,"""Asia""" +2024-07-30,95969,9616,"[\""Laptop\"", \""Keyboard\""]",3325.65,{},24207,1,"""South America""" +2024-08-28,95970,1220,"[\""Wireless Mouse\""]",4116.0,"{\""seasonal\"": \""6%\""}",68120,0,"""North America""" +2024-08-09,95971,1872,"[\""Headphones\""]",3180.15,{},163905,0,"""Europe""" +2024-11-16,95972,8646,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",2462.89,"{\""promo\"": \""30%\""}",29252,1,"""Europe""" +2023-03-19,95973,4499,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",1925.56,"{\""promo\"": \""15%\""}",276396,1,"""Europe""" +2023-10-10,95974,9474,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",4432.55,"{\""loyalty\"": \""27%\""}",98100,0,"""South America""" +2023-05-30,95975,5888,"[\""Laptop\""]",4497.74,{},242572,0,"""Africa""" +2024-07-10,95976,3905,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",65.01,"{\""seasonal\"": \""30%\""}",169459,0,"""Europe""" +2023-02-26,95977,7916,"[\""Phone\"", \""Wireless Mouse\""]",1277.06,{},54754,0,"""North America""" +2023-07-20,95978,6581,"[\""Phone\""]",4458.16,"{\""loyalty\"": \""29%\""}",55155,0,"""North America""" +2023-10-03,95979,9465,"[\""Charger\""]",2673.72,"{\""loyalty\"": \""22%\""}",7633,1,"""Europe""" +2023-02-01,95980,2905,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2284.68,"{\""seasonal\"": \""30%\""}",167622,0,"""South America""" +2024-07-09,95981,5067,"[\""Headphones\"", \""Charger\""]",2899.78,"{\""loyalty\"": \""15%\""}",197678,0,"""North America""" +2023-11-04,95982,2201,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",3918.67,{},26464,1,"""Asia""" +2024-10-15,95983,4547,"[\""Monitor\"", \""Charger\""]",2880.21,"{\""seasonal\"": \""28%\""}",244566,0,"""Asia""" +2024-07-17,95984,8090,"[\""Tablet\""]",3610.26,{},205454,0,"""Europe""" +2023-03-14,95985,7408,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",1738.83,"{\""seasonal\"": \""22%\""}",273040,0,"""Europe""" +2023-06-06,95986,6757,"[\""Tablet\""]",1286.05,{},225395,0,"""South America""" +2024-08-27,95987,8963,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3829.3,"{\""loyalty\"": \""14%\""}",280897,0,"""South America""" +2023-10-16,95988,7310,"[\""Phone\"", \""Laptop\"", \""Charger\""]",1671.34,"{\""loyalty\"": \""7%\""}",212387,0,"""Asia""" +2024-03-11,95989,7025,"[\""Tablet\""]",685.74,"{\"": \""30%\""}",139937,0,"""North America""" +2023-09-08,95990,3757,"[\""Tablet\"", \""Charger\""]",4341.94,{},245657,1,"""Africa""" +2023-03-14,95991,1695,"[\""Headphones\"", \""Monitor\""]",2701.21,"{\""seasonal\"": \""13%\""}",48263,0,"""Africa""" +2024-06-24,95992,9292,"[\""Monitor\""]",4049.74,{},288419,0,"""Africa""" +2024-10-07,95993,6481,"[\""Headphones\"", \""Laptop\""]",1581.08,{},167797,1,"""North America""" +2024-01-15,95994,7412,"[\""Tablet\""]",1927.39,{},211452,1,"""North America""" +2023-07-07,95995,181,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3020.82,"{\"": \""20%\""}",152375,0,"""Asia""" +2023-06-11,95996,7619,"[\""Laptop\"", \""Keyboard\""]",4696.51,"{\""seasonal\"": \""9%\""}",10174,1,"""Europe""" +2024-09-21,95997,3262,"[\""Keyboard\""]",3610.07,"{\""promo\"": \""17%\""}",166793,0,"""Asia""" +2024-07-05,95998,5137,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",1041.65,{},232209,1,"""Africa""" +2023-01-10,95999,4767,"[\""Phone\"", \""Headphones\""]",942.76,{},33724,0,"""South America""" +2024-10-11,96000,7097,"[\""Phone\""]",2517.92,"{\"": \""25%\""}",2788,0,"""Africa""" +2024-03-02,96001,4150,"[\""Wireless Mouse\""]",4732.32,{},286911,1,"""Asia""" +2023-03-16,96002,6288,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1855.09,"{\""seasonal\"": \""25%\""}",194597,0,"""North America""" +2024-07-11,96003,3379,"[\""Laptop\""]",3637.19,"{\"": \""30%\""}",171540,1,"""Asia""" +2023-10-16,96004,6056,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",2308.8,"{\"": \""10%\""}",6424,1,"""Asia""" +2023-09-12,96005,841,"[\""Monitor\""]",4555.12,{},128358,0,"""Asia""" +2023-09-13,96006,9277,"[\""Phone\""]",3912.56,"{\""seasonal\"": \""5%\""}",270687,1,"""North America""" +2023-11-02,96007,9745,"[\""Wireless Mouse\""]",3154.02,{},208841,0,"""Africa""" +2023-05-05,96008,7341,"[\""Headphones\"", \""Wireless Mouse\""]",1778.86,{},207877,1,"""North America""" +2024-04-04,96009,1080,"[\""Monitor\""]",2897.91,"{\""seasonal\"": \""18%\""}",138168,0,"""South America""" +2024-06-24,96010,6580,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",2718.61,"{\"": \""24%\""}",61047,1,"""Asia""" +2023-07-19,96011,967,"[\""Laptop\"", \""Headphones\""]",1762.57,{},280811,1,"""Africa""" +2024-02-14,96012,580,"[\""Headphones\"", \""Phone\"", \""Charger\""]",137.63,"{\"": \""7%\""}",223795,1,"""Europe""" +2024-11-13,96013,2788,"[\""Phone\""]",2597.5,"{\""promo\"": \""22%\""}",207731,1,"""Asia""" +2024-06-21,96014,1361,"[\""Wireless Mouse\"", \""Tablet\""]",2214.96,"{\"": \""6%\""}",205644,0,"""Europe""" +2023-03-15,96015,3859,"[\""Keyboard\""]",2215.9,{},66553,0,"""North America""" +2024-04-18,96016,8245,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",461.85,{},142156,1,"""Europe""" +2023-09-18,96017,3514,"[\""Laptop\""]",3707.29,"{\""seasonal\"": \""9%\""}",222159,0,"""Asia""" +2023-11-11,96018,1489,"[\""Phone\""]",2597.44,{},54056,1,"""Asia""" +2024-11-26,96019,6375,"[\""Wireless Mouse\""]",3952.7,{},13731,0,"""South America""" +2023-01-26,96020,2028,"[\""Phone\"", \""Headphones\""]",4590.64,"{\"": \""19%\""}",192644,0,"""Asia""" +2023-07-23,96021,1476,"[\""Monitor\""]",1183.14,"{\""promo\"": \""29%\""}",125604,1,"""North America""" +2023-09-06,96022,8901,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2558.64,"{\""seasonal\"": \""14%\""}",82964,1,"""Africa""" +2023-06-28,96023,8143,"[\""Charger\"", \""Monitor\""]",2647.23,{},44633,0,"""North America""" +2024-10-06,96024,8614,"[\""Monitor\"", \""Wireless Mouse\""]",1769.71,{},20688,1,"""Asia""" +2023-09-19,96025,3079,"[\""Phone\"", \""Monitor\""]",3755.55,{},282225,0,"""Africa""" +2024-05-30,96026,7792,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",2377.53,{},101451,1,"""Africa""" +2023-04-30,96027,5589,"[\""Headphones\"", \""Phone\""]",995.76,{},73730,0,"""Africa""" +2024-06-13,96028,6705,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",4494.65,"{\""seasonal\"": \""8%\""}",112758,1,"""Asia""" +2023-03-17,96029,2137,"[\""Headphones\""]",912.65,"{\""loyalty\"": \""20%\""}",148760,0,"""Asia""" +2023-05-27,96030,9390,"[\""Phone\""]",4056.45,{},282854,1,"""South America""" +2023-11-29,96031,2749,"[\""Headphones\"", \""Phone\""]",2464.19,{},92424,1,"""South America""" +2023-02-05,96032,7274,"[\""Laptop\""]",4371.92,{},203515,1,"""Asia""" +2024-08-19,96033,1392,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1824.86,"{\""seasonal\"": \""25%\""}",75599,0,"""North America""" +2023-08-14,96034,7095,"[\""Phone\""]",3929.84,{},209677,0,"""Asia""" +2024-02-16,96035,2302,"[\""Phone\""]",2266.59,{},181686,1,"""North America""" +2023-02-20,96036,7417,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",2001.07,"{\"": \""23%\""}",63771,1,"""Asia""" +2023-08-31,96037,4923,"[\""Charger\""]",646.73,"{\""loyalty\"": \""28%\""}",254327,1,"""Asia""" +2024-03-11,96038,1944,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",3755.24,{},155122,1,"""North America""" +2024-11-02,96039,7027,"[\""Laptop\"", \""Phone\""]",1571.02,"{\"": \""15%\""}",103618,0,"""Africa""" +2023-05-18,96040,1650,"[\""Wireless Mouse\""]",3140.33,"{\""seasonal\"": \""28%\""}",60546,1,"""Europe""" +2023-01-04,96041,4701,"[\""Keyboard\"", \""Monitor\""]",3284.77,{},222315,0,"""Africa""" +2024-05-27,96042,812,"[\""Phone\"", \""Headphones\""]",4590.95,"{\""loyalty\"": \""23%\""}",263012,1,"""North America""" +2024-01-16,96043,7261,"[\""Laptop\"", \""Phone\""]",1144.82,{},91981,1,"""South America""" +2024-01-23,96044,9888,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",522.65,{},149260,0,"""North America""" +2024-10-30,96045,2628,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3334.43,{},139649,1,"""Africa""" +2024-07-26,96046,4335,"[\""Charger\""]",1437.54,{},220714,1,"""Europe""" +2024-02-09,96047,426,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",1568.88,{},51912,1,"""Africa""" +2024-12-09,96048,4939,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",423.62,{},128374,1,"""Europe""" +2024-11-11,96049,9317,"[\""Keyboard\""]",126.0,{},48270,0,"""Asia""" +2023-02-25,96050,1626,"[\""Wireless Mouse\"", \""Monitor\""]",4034.16,{},11939,1,"""South America""" +2024-06-27,96051,9954,"[\""Laptop\"", \""Phone\""]",4136.46,{},244748,0,"""North America""" +2024-04-21,96052,3909,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4725.36,{},230152,1,"""North America""" +2023-05-18,96053,2178,"[\""Charger\"", \""Monitor\""]",1920.37,"{\""promo\"": \""9%\""}",233181,0,"""North America""" +2023-09-20,96054,2053,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",602.44,{},132761,1,"""Asia""" +2024-09-14,96055,7825,"[\""Headphones\""]",1561.61,"{\""loyalty\"": \""23%\""}",271732,0,"""Africa""" +2024-12-16,96056,749,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3284.39,"{\""promo\"": \""9%\""}",196373,1,"""North America""" +2023-03-22,96057,44,"[\""Monitor\"", \""Wireless Mouse\""]",1545.56,"{\"": \""15%\""}",54055,1,"""North America""" +2024-06-02,96058,8275,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",2773.02,"{\""promo\"": \""25%\""}",297293,1,"""South America""" +2024-07-31,96059,6150,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",3623.82,{},141635,1,"""Europe""" +2024-08-20,96060,7974,"[\""Wireless Mouse\""]",2391.98,"{\""promo\"": \""26%\""}",156440,0,"""Europe""" +2024-10-24,96061,9390,"[\""Headphones\""]",3938.29,{},12997,1,"""Asia""" +2023-12-09,96062,5101,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",1459.7,{},83706,1,"""South America""" +2024-06-13,96063,893,"[\""Wireless Mouse\"", \""Headphones\""]",2356.41,"{\""seasonal\"": \""9%\""}",273088,0,"""Africa""" +2023-01-19,96064,2399,"[\""Charger\"", \""Phone\""]",1901.41,{},100400,1,"""Africa""" +2023-12-13,96065,8073,"[\""Keyboard\""]",1334.0,{},196760,0,"""North America""" +2024-05-03,96066,3048,"[\""Headphones\"", \""Tablet\""]",1815.04,"{\""seasonal\"": \""13%\""}",188723,1,"""Asia""" +2023-09-05,96067,3918,"[\""Wireless Mouse\"", \""Tablet\""]",4816.11,{},238318,1,"""Europe""" +2023-09-15,96068,3145,"[\""Laptop\"", \""Charger\""]",1134.23,"{\""promo\"": \""9%\""}",251836,1,"""South America""" +2024-09-17,96069,2130,"[\""Tablet\"", \""Headphones\""]",1098.26,{},64219,0,"""Asia""" +2024-02-08,96070,839,"[\""Wireless Mouse\""]",2025.37,{},174815,0,"""South America""" +2023-08-18,96071,4611,"[\""Keyboard\"", \""Monitor\""]",2241.42,"{\""loyalty\"": \""29%\""}",297175,1,"""South America""" +2024-12-30,96072,1667,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1240.08,{},83002,0,"""Europe""" +2024-01-04,96073,5541,"[\""Wireless Mouse\"", \""Monitor\""]",4389.69,{},80071,0,"""North America""" +2023-09-28,96074,4250,"[\""Wireless Mouse\"", \""Tablet\""]",2853.01,{},251787,0,"""North America""" +2024-04-27,96075,6990,"[\""Tablet\""]",2676.75,{},246933,0,"""South America""" +2024-07-19,96076,1578,"[\""Phone\""]",4955.86,"{\""seasonal\"": \""8%\""}",225187,0,"""North America""" +2023-09-13,96077,3319,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",627.46,"{\""promo\"": \""16%\""}",201844,1,"""Africa""" +2023-03-14,96078,6684,"[\""Monitor\"", \""Laptop\""]",431.2,"{\"": \""13%\""}",273133,1,"""North America""" +2024-01-26,96079,2144,"[\""Monitor\""]",1569.15,"{\"": \""9%\""}",10852,0,"""Europe""" +2023-01-17,96080,5669,"[\""Headphones\"", \""Keyboard\""]",459.13,"{\""seasonal\"": \""25%\""}",265004,0,"""North America""" +2023-10-08,96081,9133,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4365.22,{},67978,1,"""South America""" +2023-07-25,96082,175,"[\""Tablet\""]",3282.04,{},9947,1,"""Europe""" +2024-09-12,96083,6610,"[\""Charger\""]",888.63,{},56184,1,"""Africa""" +2023-10-31,96084,3429,"[\""Headphones\""]",748.75,"{\"": \""25%\""}",41842,1,"""South America""" +2023-04-06,96085,6247,"[\""Headphones\"", \""Keyboard\""]",4480.65,{},193900,0,"""Europe""" +2024-02-09,96086,7910,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",662.3,"{\""seasonal\"": \""19%\""}",107140,1,"""Africa""" +2023-12-01,96087,1959,"[\""Phone\"", \""Charger\""]",2299.76,"{\""promo\"": \""7%\""}",86373,1,"""Africa""" +2023-12-10,96088,2777,"[\""Headphones\""]",1221.2,"{\""promo\"": \""6%\""}",230178,0,"""Europe""" +2023-05-20,96089,7175,"[\""Charger\""]",3231.07,"{\""promo\"": \""24%\""}",33494,1,"""Europe""" +2024-10-25,96090,5469,"[\""Monitor\"", \""Phone\""]",3514.78,"{\"": \""11%\""}",234548,1,"""North America""" +2024-08-23,96091,3608,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4039.89,"{\""promo\"": \""22%\""}",96929,1,"""North America""" +2024-11-21,96092,2304,"[\""Headphones\"", \""Phone\""]",4337.47,{},250216,0,"""Africa""" +2023-08-11,96093,8148,"[\""Keyboard\""]",149.5,"{\""promo\"": \""19%\""}",65061,0,"""North America""" +2023-02-17,96094,5205,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",3679.96,{},209926,0,"""Asia""" +2024-05-09,96095,8914,"[\""Phone\"", \""Charger\""]",2781.79,{},74507,1,"""South America""" +2024-07-23,96096,4903,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",374.79,"{\""loyalty\"": \""18%\""}",104914,0,"""Asia""" +2024-06-21,96097,2212,"[\""Monitor\"", \""Headphones\"", \""Charger\""]",1822.07,"{\"": \""30%\""}",272788,1,"""South America""" +2023-06-07,96098,7688,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3135.42,{},179337,1,"""Europe""" +2024-05-07,96099,9107,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4021.63,"{\""promo\"": \""8%\""}",61363,1,"""Asia""" +2024-01-16,96100,3358,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2354.95,{},40665,0,"""Europe""" +2023-11-20,96101,935,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1939.9,{},191717,1,"""Asia""" +2023-01-06,96102,9313,"[\""Phone\""]",3388.53,"{\""promo\"": \""20%\""}",253839,0,"""Africa""" +2023-09-15,96103,7040,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1285.16,"{\""promo\"": \""10%\""}",285889,0,"""Africa""" +2024-11-18,96104,9416,"[\""Laptop\"", \""Wireless Mouse\""]",3449.02,"{\"": \""13%\""}",231309,0,"""Asia""" +2023-01-05,96105,3744,"[\""Headphones\"", \""Wireless Mouse\""]",4548.9,"{\""loyalty\"": \""10%\""}",216114,0,"""North America""" +2023-05-15,96106,8014,"[\""Charger\""]",2656.84,"{\""loyalty\"": \""5%\""}",174865,0,"""South America""" +2023-09-25,96107,9847,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",982.63,"{\""promo\"": \""5%\""}",225681,0,"""Africa""" +2023-02-18,96108,958,"[\""Phone\"", \""Wireless Mouse\""]",1738.38,{},238595,1,"""Asia""" +2024-10-19,96109,4008,"[\""Phone\"", \""Wireless Mouse\""]",4815.37,"{\""loyalty\"": \""8%\""}",17938,0,"""Europe""" +2023-09-24,96110,8080,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",351.69,"{\""promo\"": \""21%\""}",204249,1,"""Africa""" +2024-07-18,96111,3114,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",4380.71,"{\""promo\"": \""9%\""}",99818,1,"""Asia""" +2023-06-09,96112,3449,"[\""Laptop\""]",4630.3,{},114772,1,"""North America""" +2023-11-20,96113,7221,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4426.4,"{\""promo\"": \""30%\""}",136727,0,"""Asia""" +2023-01-02,96114,6635,"[\""Keyboard\""]",487.2,"{\""promo\"": \""27%\""}",156778,0,"""Africa""" +2023-01-31,96115,8863,"[\""Keyboard\"", \""Phone\""]",3693.23,{},160064,0,"""North America""" +2023-09-20,96116,1453,"[\""Keyboard\""]",3543.75,"{\"": \""20%\""}",251023,1,"""Africa""" +2024-01-27,96117,6311,"[\""Charger\"", \""Wireless Mouse\""]",2743.51,"{\""loyalty\"": \""8%\""}",82355,0,"""North America""" +2023-12-12,96118,2749,"[\""Keyboard\""]",1337.98,{},37470,1,"""South America""" +2024-02-09,96119,6686,"[\""Tablet\"", \""Charger\""]",1110.42,"{\""promo\"": \""5%\""}",40375,1,"""South America""" +2024-01-18,96120,515,"[\""Charger\"", \""Headphones\""]",3654.54,{},214940,1,"""Europe""" +2024-07-28,96121,273,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",1082.47,"{\""loyalty\"": \""15%\""}",264103,1,"""Africa""" +2023-09-18,96122,7837,"[\""Phone\"", \""Headphones\""]",1671.97,"{\"": \""8%\""}",148819,0,"""North America""" +2024-03-02,96123,7601,"[\""Laptop\""]",1192.24,"{\""seasonal\"": \""27%\""}",16331,0,"""Asia""" +2024-04-20,96124,9463,"[\""Monitor\""]",2112.43,"{\""promo\"": \""13%\""}",46389,0,"""North America""" +2023-12-27,96125,9617,"[\""Phone\""]",721.49,"{\""promo\"": \""30%\""}",97125,1,"""Europe""" +2024-05-04,96126,3505,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",592.34,"{\""loyalty\"": \""9%\""}",210237,0,"""South America""" +2024-09-19,96127,7498,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2104.77,"{\"": \""30%\""}",197131,0,"""South America""" +2024-01-25,96128,6361,"[\""Keyboard\""]",1979.66,{},206918,1,"""Europe""" +2023-05-04,96129,2497,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1048.45,{},136615,0,"""Africa""" +2024-01-13,96130,5343,"[\""Laptop\""]",2997.02,{},66672,1,"""Africa""" +2024-12-14,96131,467,"[\""Phone\"", \""Charger\""]",2938.49,{},123478,0,"""North America""" +2023-09-17,96132,1920,"[\""Wireless Mouse\""]",4139.54,{},58090,0,"""Asia""" +2024-10-16,96133,4391,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",276.2,"{\"": \""5%\""}",10028,1,"""Asia""" +2023-02-10,96134,2523,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2530.17,{},80969,1,"""Africa""" +2023-04-09,96135,7686,"[\""Monitor\""]",211.95,{},15898,0,"""Asia""" +2023-10-30,96136,3176,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",3230.1,{},124646,1,"""Asia""" +2023-03-03,96137,533,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3947.5,"{\""loyalty\"": \""17%\""}",38786,0,"""North America""" +2023-03-22,96138,8047,"[\""Phone\""]",540.39,"{\""promo\"": \""11%\""}",188506,1,"""Asia""" +2024-01-04,96139,8292,"[\""Phone\""]",1989.89,{},239573,1,"""Asia""" +2023-11-01,96140,8789,"[\""Monitor\"", \""Keyboard\""]",1474.61,"{\"": \""25%\""}",98412,1,"""North America""" +2023-01-10,96141,1872,"[\""Phone\"", \""Headphones\""]",2861.93,{},255729,0,"""Africa""" +2024-11-30,96142,3565,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3522.65,{},62745,0,"""Asia""" +2023-02-28,96143,8153,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",796.84,{},78492,1,"""Asia""" +2024-08-27,96144,8605,"[\""Wireless Mouse\""]",4173.92,{},27843,0,"""Asia""" +2024-03-12,96145,1463,"[\""Charger\"", \""Phone\""]",2065.27,{},19992,1,"""North America""" +2024-04-11,96146,1255,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",1872.3,{},171828,1,"""Europe""" +2023-06-19,96147,9325,"[\""Keyboard\"", \""Phone\""]",4603.14,{},294085,0,"""South America""" +2023-06-16,96148,1282,"[\""Laptop\""]",3973.18,"{\"": \""26%\""}",158417,1,"""Europe""" +2023-07-19,96149,3216,"[\""Headphones\""]",2962.57,{},141016,0,"""Europe""" +2023-09-13,96150,469,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4100.97,{},225619,0,"""Africa""" +2023-05-05,96151,9069,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1638.65,"{\""promo\"": \""24%\""}",52844,0,"""Asia""" +2024-12-20,96152,3192,"[\""Monitor\"", \""Wireless Mouse\""]",1226.05,{},30452,0,"""Africa""" +2023-08-06,96153,5396,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",1501.98,"{\"": \""5%\""}",11430,0,"""North America""" +2023-07-09,96154,3398,"[\""Wireless Mouse\"", \""Keyboard\""]",2713.04,{},78198,1,"""South America""" +2023-07-01,96155,6024,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",1635.79,{},208812,1,"""North America""" +2024-01-21,96156,5625,"[\""Monitor\""]",1529.86,{},32979,0,"""Europe""" +2023-02-20,96157,8973,"[\""Phone\""]",3121.91,{},82156,0,"""Europe""" +2023-03-03,96158,9907,"[\""Phone\""]",751.95,{},90398,0,"""South America""" +2023-04-16,96159,5521,"[\""Charger\"", \""Wireless Mouse\""]",4565.99,{},33932,1,"""Europe""" +2024-06-03,96160,477,"[\""Charger\""]",467.23,"{\"": \""21%\""}",248886,1,"""Asia""" +2023-12-31,96161,4290,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",408.18,"{\""promo\"": \""13%\""}",268046,0,"""Africa""" +2024-03-08,96162,7060,"[\""Tablet\""]",461.93,"{\"": \""25%\""}",265528,0,"""North America""" +2024-06-07,96163,2617,"[\""Wireless Mouse\""]",2403.47,{},272693,0,"""Asia""" +2024-03-31,96164,1443,"[\""Headphones\""]",2902.69,"{\""promo\"": \""10%\""}",81351,0,"""Europe""" +2023-09-16,96165,1802,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2655.3,{},235413,0,"""South America""" +2024-09-05,96166,173,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4973.39,"{\""loyalty\"": \""10%\""}",198583,1,"""Africa""" +2024-08-02,96167,6117,"[\""Headphones\""]",4136.48,"{\""promo\"": \""23%\""}",1014,1,"""North America""" +2024-09-30,96168,6602,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",2952.8,"{\""loyalty\"": \""30%\""}",273802,0,"""South America""" +2024-10-16,96169,8546,"[\""Laptop\""]",2566.8,{},211365,1,"""South America""" +2024-02-27,96170,5270,"[\""Monitor\""]",494.07,"{\"": \""7%\""}",170840,0,"""South America""" +2024-04-02,96171,274,"[\""Phone\"", \""Charger\"", \""Monitor\""]",628.26,"{\""promo\"": \""23%\""}",234061,0,"""Africa""" +2023-10-14,96172,5675,"[\""Tablet\"", \""Wireless Mouse\""]",2390.35,"{\""loyalty\"": \""10%\""}",89009,0,"""South America""" +2024-09-05,96173,5089,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",3528.18,"{\""loyalty\"": \""17%\""}",57415,0,"""South America""" +2024-03-14,96174,388,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",1776.24,{},52305,1,"""South America""" +2024-07-12,96175,4397,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",411.99,{},184501,1,"""North America""" +2023-08-04,96176,6195,"[\""Keyboard\""]",407.91,{},14337,1,"""Asia""" +2024-01-02,96177,9237,"[\""Monitor\"", \""Keyboard\""]",927.42,"{\""seasonal\"": \""10%\""}",182335,1,"""Africa""" +2023-04-26,96178,1204,"[\""Keyboard\""]",2751.83,{},140254,0,"""Europe""" +2023-12-08,96179,389,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1048.54,"{\"": \""5%\""}",33153,1,"""Africa""" +2023-06-07,96180,9912,"[\""Charger\"", \""Laptop\"", \""Phone\""]",2161.97,"{\""loyalty\"": \""22%\""}",33730,0,"""Africa""" +2024-11-29,96181,5086,"[\""Tablet\"", \""Wireless Mouse\""]",1982.73,{},189516,1,"""Africa""" +2023-11-02,96182,4004,"[\""Charger\""]",365.08,"{\""promo\"": \""20%\""}",120163,1,"""North America""" +2024-12-24,96183,3463,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",801.53,{},130940,0,"""Africa""" +2023-03-19,96184,5267,"[\""Laptop\"", \""Tablet\""]",4229.27,"{\""promo\"": \""21%\""}",274521,1,"""North America""" +2023-12-10,96185,3880,"[\""Keyboard\""]",4784.1,{},166466,1,"""Europe""" +2023-12-25,96186,6916,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2840.33,{},293389,1,"""Europe""" +2023-12-31,96187,1061,"[\""Wireless Mouse\"", \""Tablet\""]",483.1,"{\""seasonal\"": \""24%\""}",131528,1,"""North America""" +2023-10-18,96188,1508,"[\""Tablet\"", \""Headphones\""]",3821.97,"{\""loyalty\"": \""9%\""}",203447,0,"""Asia""" +2023-07-21,96189,8845,"[\""Charger\""]",839.42,{},163884,1,"""Africa""" +2024-02-28,96190,7490,"[\""Tablet\"", \""Keyboard\""]",331.22,{},240407,0,"""Asia""" +2024-05-17,96191,4408,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",1413.64,{},211843,1,"""Europe""" +2023-06-11,96192,933,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",328.98,{},204392,1,"""North America""" +2024-11-21,96193,2840,"[\""Wireless Mouse\""]",4293.38,"{\""seasonal\"": \""8%\""}",168105,0,"""North America""" +2023-11-11,96194,9510,"[\""Headphones\"", \""Phone\"", \""Charger\""]",241.2,{},169484,1,"""Asia""" +2024-01-10,96195,1845,"[\""Headphones\""]",4749.67,{},232286,0,"""Asia""" +2024-03-27,96196,4569,"[\""Headphones\"", \""Monitor\""]",994.66,"{\"": \""13%\""}",246083,0,"""Europe""" +2024-05-20,96197,1941,"[\""Charger\"", \""Wireless Mouse\""]",4958.17,"{\""promo\"": \""27%\""}",235939,1,"""Africa""" +2024-01-19,96198,5727,"[\""Laptop\"", \""Keyboard\""]",4660.53,{},223386,0,"""South America""" +2023-08-21,96199,2085,"[\""Tablet\""]",864.36,"{\""promo\"": \""21%\""}",204012,0,"""Asia""" +2024-07-10,96200,6759,"[\""Laptop\"", \""Headphones\""]",4288.9,{},166954,0,"""South America""" +2024-06-02,96201,9053,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",3412.83,{},180556,0,"""Europe""" +2024-10-28,96202,8643,"[\""Monitor\"", \""Laptop\""]",1970.97,"{\""seasonal\"": \""10%\""}",282668,1,"""South America""" +2023-12-31,96203,9238,"[\""Keyboard\"", \""Laptop\""]",3903.13,{},241626,1,"""North America""" +2023-05-22,96204,5099,"[\""Tablet\""]",3711.89,{},108510,1,"""Europe""" +2024-09-21,96205,2635,"[\""Headphones\""]",3904.0,"{\""seasonal\"": \""15%\""}",24977,1,"""Africa""" +2023-02-22,96206,9250,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",3670.05,{},22819,1,"""North America""" +2023-04-28,96207,3039,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1356.85,"{\"": \""16%\""}",70452,0,"""Africa""" +2023-09-04,96208,6393,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2588.9,"{\""seasonal\"": \""7%\""}",68698,1,"""South America""" +2024-08-26,96209,4688,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2059.06,{},276288,0,"""South America""" +2024-07-19,96210,9396,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",413.36,"{\"": \""19%\""}",213580,0,"""South America""" +2024-02-26,96211,1084,"[\""Tablet\""]",518.33,{},157108,0,"""South America""" +2024-02-22,96212,9306,"[\""Keyboard\"", \""Wireless Mouse\""]",1088.48,{},237058,1,"""North America""" +2023-07-11,96213,6804,"[\""Charger\""]",706.82,"{\""seasonal\"": \""28%\""}",76117,0,"""Africa""" +2023-08-23,96214,3230,"[\""Tablet\"", \""Laptop\""]",4409.67,{},170857,0,"""Africa""" +2023-06-14,96215,4113,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",351.96,{},7019,1,"""Africa""" +2023-05-01,96216,6629,"[\""Phone\"", \""Laptop\""]",3308.91,{},10837,0,"""Europe""" +2023-06-19,96217,2193,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1883.45,"{\""promo\"": \""18%\""}",178079,1,"""Asia""" +2024-10-13,96218,7139,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3677.78,{},182500,1,"""Europe""" +2024-08-19,96219,6093,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",4625.72,{},140950,0,"""North America""" +2024-12-04,96220,2124,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3673.78,"{\""seasonal\"": \""20%\""}",54353,1,"""Asia""" +2024-05-18,96221,4151,"[\""Tablet\""]",4050.19,{},178273,1,"""Asia""" +2023-09-12,96222,6454,"[\""Laptop\""]",352.45,"{\""promo\"": \""15%\""}",53420,0,"""Asia""" +2024-09-23,96223,7567,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",1531.3,"{\"": \""21%\""}",256397,0,"""South America""" +2023-01-11,96224,838,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2464.52,"{\""promo\"": \""15%\""}",269465,1,"""North America""" +2023-01-16,96225,1620,"[\""Monitor\""]",2601.18,"{\""seasonal\"": \""20%\""}",69134,1,"""North America""" +2023-12-26,96226,6846,"[\""Headphones\""]",4406.48,"{\"": \""12%\""}",154140,1,"""Europe""" +2023-03-14,96227,1449,"[\""Wireless Mouse\"", \""Headphones\""]",2096.36,{},278333,1,"""Europe""" +2023-01-10,96228,9264,"[\""Monitor\""]",1881.67,{},19831,0,"""North America""" +2023-06-06,96229,1797,"[\""Keyboard\""]",4943.62,"{\""seasonal\"": \""6%\""}",94718,1,"""North America""" +2023-09-25,96230,8013,"[\""Laptop\"", \""Tablet\""]",3413.99,{},195325,1,"""South America""" +2024-04-02,96231,9872,"[\""Wireless Mouse\""]",4291.02,{},129701,0,"""Europe""" +2023-10-23,96232,6191,"[\""Phone\""]",171.58,{},51263,1,"""South America""" +2023-04-18,96233,9869,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",4511.43,"{\""seasonal\"": \""20%\""}",69769,0,"""Africa""" +2023-01-02,96234,9952,"[\""Wireless Mouse\"", \""Charger\""]",2254.44,{},40023,1,"""North America""" +2024-07-07,96235,7589,"[\""Wireless Mouse\""]",2128.88,{},49323,1,"""Europe""" +2023-11-26,96236,8280,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",469.78,{},263987,1,"""Asia""" +2024-05-07,96237,8624,"[\""Monitor\"", \""Phone\""]",3870.46,"{\"": \""11%\""}",212314,0,"""South America""" +2023-05-14,96238,7399,"[\""Laptop\""]",4471.88,"{\"": \""6%\""}",104371,1,"""Asia""" +2024-05-26,96239,3261,"[\""Headphones\""]",4632.65,"{\""promo\"": \""13%\""}",70185,1,"""North America""" +2024-12-19,96240,4846,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3214.8,"{\""seasonal\"": \""8%\""}",25324,1,"""Europe""" +2023-09-16,96241,7545,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",3916.67,{},178644,0,"""Africa""" +2023-08-09,96242,8043,"[\""Wireless Mouse\"", \""Tablet\""]",3376.28,{},284246,0,"""Africa""" +2024-08-15,96243,8188,"[\""Laptop\""]",146.19,{},189804,1,"""North America""" +2024-03-04,96244,6152,"[\""Phone\""]",2379.86,{},288138,1,"""Asia""" +2024-12-02,96245,5626,"[\""Charger\""]",91.59,{},12648,0,"""Asia""" +2024-03-15,96246,9660,"[\""Laptop\"", \""Charger\""]",4951.74,"{\""seasonal\"": \""15%\""}",62475,1,"""Europe""" +2024-04-16,96247,6856,"[\""Headphones\""]",3198.97,{},20362,0,"""Asia""" +2024-09-11,96248,6800,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3319.19,"{\""seasonal\"": \""12%\""}",160071,1,"""Europe""" +2023-02-10,96249,4656,"[\""Tablet\"", \""Keyboard\""]",1745.46,{},49311,1,"""North America""" +2024-03-23,96250,8090,"[\""Headphones\""]",2332.76,"{\""loyalty\"": \""16%\""}",133565,1,"""South America""" +2024-06-14,96251,4364,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",2640.48,{},78102,1,"""South America""" +2024-05-04,96252,5148,"[\""Phone\"", \""Charger\""]",2840.48,"{\""loyalty\"": \""29%\""}",162279,1,"""Europe""" +2024-04-22,96253,5570,"[\""Keyboard\""]",2798.46,"{\""promo\"": \""23%\""}",268122,0,"""North America""" +2023-11-12,96254,1124,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4583.37,"{\"": \""13%\""}",56971,0,"""North America""" +2023-03-10,96255,9064,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2555.49,{},203722,0,"""North America""" +2023-05-13,96256,4356,"[\""Keyboard\"", \""Charger\""]",4902.62,"{\""promo\"": \""13%\""}",40102,1,"""Africa""" +2023-02-25,96257,4576,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4825.21,{},8965,0,"""Europe""" +2024-11-05,96258,8160,"[\""Monitor\"", \""Wireless Mouse\""]",4065.02,{},22917,0,"""Africa""" +2024-07-30,96259,8395,"[\""Headphones\""]",4445.98,"{\""loyalty\"": \""18%\""}",240785,1,"""North America""" +2024-03-18,96260,4461,"[\""Tablet\"", \""Wireless Mouse\""]",2503.99,{},211070,1,"""Asia""" +2024-06-11,96261,9259,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4248.34,{},232759,0,"""North America""" +2023-12-31,96262,5471,"[\""Laptop\"", \""Monitor\""]",3644.73,{},74048,0,"""South America""" +2024-09-23,96263,149,"[\""Charger\"", \""Keyboard\""]",3016.2,{},13784,0,"""Africa""" +2024-09-27,96264,5999,"[\""Tablet\"", \""Phone\"", \""Charger\""]",2220.37,{},15090,0,"""Asia""" +2023-07-26,96265,9042,"[\""Phone\"", \""Wireless Mouse\""]",238.54,{},109175,1,"""Europe""" +2024-06-09,96266,6816,"[\""Phone\""]",1226.36,{},209106,0,"""Europe""" +2023-12-19,96267,6892,"[\""Laptop\""]",3702.6,"{\"": \""24%\""}",128911,1,"""Africa""" +2023-10-07,96268,404,"[\""Charger\""]",1719.15,"{\""seasonal\"": \""19%\""}",236898,1,"""Asia""" +2024-01-18,96269,2645,"[\""Tablet\""]",3205.86,{},196818,1,"""Europe""" +2024-02-09,96270,3512,"[\""Phone\"", \""Headphones\""]",4030.41,{},234924,0,"""Africa""" +2024-12-04,96271,6379,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",4919.94,"{\""promo\"": \""25%\""}",186911,0,"""North America""" +2024-09-30,96272,9083,"[\""Headphones\""]",372.49,{},89690,0,"""South America""" +2023-07-12,96273,3003,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4873.2,"{\"": \""5%\""}",12471,0,"""Europe""" +2023-12-16,96274,7075,"[\""Headphones\"", \""Phone\""]",633.55,{},211191,0,"""South America""" +2024-01-24,96275,3482,"[\""Monitor\"", \""Phone\""]",3124.78,"{\""loyalty\"": \""6%\""}",199607,0,"""Asia""" +2024-11-14,96276,9156,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",547.3,{},276787,1,"""North America""" +2023-02-26,96277,3985,"[\""Keyboard\""]",3047.58,{},215909,1,"""South America""" +2024-03-12,96278,2372,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3256.9,{},160580,1,"""Asia""" +2023-01-25,96279,9442,"[\""Charger\"", \""Laptop\"", \""Phone\""]",768.23,"{\""seasonal\"": \""15%\""}",12455,0,"""Asia""" +2024-08-17,96280,4953,"[\""Keyboard\"", \""Charger\""]",3128.96,"{\""loyalty\"": \""27%\""}",280480,1,"""Africa""" +2024-12-11,96281,3305,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1477.25,"{\"": \""25%\""}",217655,1,"""Africa""" +2023-03-05,96282,368,"[\""Charger\""]",3239.87,"{\"": \""25%\""}",79104,1,"""Asia""" +2023-02-15,96283,9644,"[\""Headphones\""]",142.71,{},175337,1,"""South America""" +2023-02-16,96284,3713,"[\""Charger\""]",2599.19,"{\""seasonal\"": \""8%\""}",103247,1,"""Africa""" +2024-11-05,96285,2477,"[\""Keyboard\""]",152.28,{},208098,0,"""Europe""" +2023-05-17,96286,6363,"[\""Keyboard\""]",945.09,"{\""loyalty\"": \""11%\""}",151547,1,"""Africa""" +2023-01-20,96287,5061,"[\""Laptop\"", \""Monitor\""]",334.29,"{\"": \""6%\""}",204571,1,"""North America""" +2024-05-29,96288,7326,"[\""Keyboard\""]",1928.05,{},245647,1,"""North America""" +2024-01-22,96289,9403,"[\""Phone\"", \""Headphones\""]",4155.58,{},134347,0,"""South America""" +2024-04-23,96290,4219,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",965.09,"{\""seasonal\"": \""10%\""}",126704,1,"""Asia""" +2024-01-25,96291,9952,"[\""Keyboard\""]",4418.2,"{\"": \""7%\""}",16785,0,"""North America""" +2023-10-23,96292,1686,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3640.99,"{\"": \""23%\""}",41297,1,"""North America""" +2024-12-21,96293,76,"[\""Monitor\""]",4437.08,{},140670,0,"""North America""" +2024-11-02,96294,5255,"[\""Phone\"", \""Keyboard\""]",2886.35,"{\"": \""29%\""}",293873,1,"""South America""" +2023-12-19,96295,2342,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",265.38,"{\"": \""16%\""}",290149,0,"""South America""" +2024-05-15,96296,8709,"[\""Phone\""]",850.69,"{\""seasonal\"": \""13%\""}",24860,1,"""Europe""" +2023-08-12,96297,6947,"[\""Laptop\""]",2518.42,"{\""seasonal\"": \""24%\""}",253636,1,"""Africa""" +2023-08-04,96298,5813,"[\""Keyboard\"", \""Laptop\""]",2383.98,{},271882,1,"""Asia""" +2023-07-31,96299,6309,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",564.1,{},43756,0,"""Africa""" +2024-04-13,96300,5575,"[\""Headphones\"", \""Laptop\""]",3062.01,"{\"": \""15%\""}",47558,0,"""North America""" +2023-01-26,96301,4552,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2795.79,{},88876,1,"""Africa""" +2023-06-27,96302,2031,"[\""Tablet\"", \""Headphones\""]",641.14,{},255894,1,"""Asia""" +2024-10-05,96303,3879,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",980.77,{},69261,0,"""Africa""" +2024-04-12,96304,8565,"[\""Phone\"", \""Charger\""]",4271.84,{},78677,0,"""Europe""" +2024-07-05,96305,4886,"[\""Keyboard\""]",1057.91,"{\""promo\"": \""25%\""}",227169,1,"""Asia""" +2023-06-14,96306,8542,"[\""Monitor\"", \""Tablet\""]",713.94,"{\""loyalty\"": \""11%\""}",205327,0,"""North America""" +2024-12-14,96307,7367,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",1381.7,"{\""promo\"": \""8%\""}",221589,1,"""Asia""" +2023-04-21,96308,6888,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",3608.7,"{\""seasonal\"": \""7%\""}",90701,1,"""Asia""" +2023-10-21,96309,3563,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",618.05,"{\""loyalty\"": \""27%\""}",114365,0,"""Africa""" +2023-04-22,96310,1730,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3474.83,{},240182,1,"""Asia""" +2023-07-27,96311,8381,"[\""Monitor\""]",474.0,{},136081,1,"""South America""" +2024-04-28,96312,7848,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",935.31,{},92173,1,"""Asia""" +2024-04-24,96313,3106,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",2116.21,{},285421,0,"""North America""" +2023-06-25,96314,3904,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2490.26,"{\""loyalty\"": \""20%\""}",122260,1,"""South America""" +2024-10-11,96315,7503,"[\""Tablet\"", \""Charger\""]",4195.13,{},102419,1,"""North America""" +2023-02-05,96316,1609,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",4939.66,{},118159,1,"""Asia""" +2024-10-07,96317,5568,"[\""Phone\""]",3199.09,"{\""promo\"": \""24%\""}",71809,0,"""Europe""" +2024-12-11,96318,2600,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4498.28,"{\""seasonal\"": \""28%\""}",159887,1,"""Asia""" +2024-05-21,96319,6056,"[\""Wireless Mouse\"", \""Keyboard\""]",4786.74,"{\"": \""14%\""}",186874,0,"""Africa""" +2023-01-17,96320,5599,"[\""Headphones\""]",3285.69,"{\""seasonal\"": \""23%\""}",204438,0,"""Europe""" +2024-02-18,96321,3967,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",1724.87,{},267062,1,"""South America""" +2023-09-04,96322,5680,"[\""Charger\""]",1137.52,"{\""seasonal\"": \""10%\""}",134201,1,"""Asia""" +2023-09-24,96323,1754,"[\""Phone\"", \""Tablet\""]",130.79,"{\""loyalty\"": \""22%\""}",27202,1,"""Asia""" +2024-09-20,96324,7131,"[\""Wireless Mouse\""]",2661.9,"{\"": \""9%\""}",166762,1,"""North America""" +2023-03-14,96325,5020,"[\""Monitor\"", \""Wireless Mouse\""]",1396.0,"{\""loyalty\"": \""22%\""}",202149,1,"""Asia""" +2023-06-27,96326,4238,"[\""Charger\"", \""Monitor\""]",309.6,"{\"": \""10%\""}",288954,1,"""Europe""" +2024-02-03,96327,7224,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",447.36,"{\""seasonal\"": \""19%\""}",229218,1,"""Asia""" +2023-11-23,96328,8074,"[\""Tablet\"", \""Laptop\""]",4004.23,{},289585,0,"""South America""" +2024-03-13,96329,9691,"[\""Keyboard\""]",1269.86,{},39219,0,"""Europe""" +2023-09-07,96330,6382,"[\""Monitor\"", \""Headphones\""]",4603.98,{},211556,1,"""North America""" +2024-07-05,96331,3400,"[\""Charger\"", \""Wireless Mouse\""]",3039.58,{},90510,1,"""North America""" +2024-03-09,96332,5182,"[\""Keyboard\"", \""Wireless Mouse\""]",94.91,{},183198,0,"""South America""" +2023-05-13,96333,6993,"[\""Tablet\"", \""Laptop\""]",2242.51,{},289139,1,"""Europe""" +2023-10-05,96334,3465,"[\""Tablet\"", \""Phone\""]",3475.86,{},174955,1,"""North America""" +2023-10-11,96335,3724,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",2457.14,{},286976,0,"""Asia""" +2023-04-11,96336,1974,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3419.82,"{\""seasonal\"": \""18%\""}",16050,0,"""Asia""" +2024-11-29,96337,8430,"[\""Charger\"", \""Phone\"", \""Tablet\""]",1211.43,"{\""loyalty\"": \""15%\""}",51224,0,"""Asia""" +2024-04-04,96338,8240,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1276.77,{},232644,1,"""Asia""" +2023-05-29,96339,2804,"[\""Wireless Mouse\""]",483.35,"{\"": \""30%\""}",116944,0,"""Asia""" +2024-06-20,96340,554,"[\""Phone\""]",334.22,{},181797,1,"""North America""" +2023-09-14,96341,292,"[\""Wireless Mouse\""]",964.03,{},127225,1,"""Africa""" +2023-12-03,96342,3472,"[\""Monitor\"", \""Headphones\""]",4584.38,"{\""loyalty\"": \""5%\""}",165875,1,"""Europe""" +2023-12-20,96343,2905,"[\""Monitor\""]",434.33,"{\"": \""21%\""}",14720,0,"""Africa""" +2023-01-22,96344,5036,"[\""Phone\"", \""Monitor\""]",1668.95,{},3145,0,"""Africa""" +2023-10-28,96345,2019,"[\""Wireless Mouse\"", \""Phone\""]",3795.04,{},281029,0,"""Asia""" +2023-02-22,96346,7807,"[\""Monitor\""]",3091.04,{},153089,0,"""North America""" +2024-05-18,96347,2503,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4967.09,{},165238,0,"""North America""" +2024-01-10,96348,2842,"[\""Wireless Mouse\"", \""Tablet\""]",787.52,"{\"": \""8%\""}",90403,0,"""Europe""" +2024-08-25,96349,9266,"[\""Keyboard\"", \""Monitor\""]",4717.67,"{\""promo\"": \""30%\""}",138005,1,"""South America""" +2023-07-25,96350,6845,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",1454.59,{},83851,0,"""North America""" +2024-11-24,96351,3804,"[\""Tablet\"", \""Laptop\""]",3732.74,{},291712,1,"""Europe""" +2024-07-29,96352,2859,"[\""Tablet\""]",2883.25,"{\""promo\"": \""24%\""}",233456,1,"""Europe""" +2023-07-19,96353,8435,"[\""Headphones\""]",454.63,"{\""promo\"": \""28%\""}",234448,1,"""Europe""" +2023-06-01,96354,3822,"[\""Laptop\""]",1179.59,"{\"": \""18%\""}",251788,0,"""North America""" +2023-07-20,96355,4685,"[\""Charger\"", \""Wireless Mouse\""]",2160.13,{},171610,1,"""Asia""" +2024-06-07,96356,8439,"[\""Phone\""]",963.27,{},264196,1,"""Asia""" +2023-05-30,96357,1718,"[\""Tablet\""]",4625.59,"{\""promo\"": \""15%\""}",47294,1,"""Africa""" +2023-05-15,96358,6095,"[\""Headphones\""]",3609.04,"{\""loyalty\"": \""30%\""}",283245,1,"""North America""" +2023-01-31,96359,753,"[\""Phone\"", \""Laptop\""]",3901.85,"{\""loyalty\"": \""25%\""}",273179,0,"""South America""" +2023-01-31,96360,8753,"[\""Charger\""]",957.13,{},50721,1,"""North America""" +2024-06-16,96361,8408,"[\""Phone\""]",322.66,{},288956,0,"""North America""" +2024-07-04,96362,1029,"[\""Phone\""]",4584.04,{},8350,0,"""Europe""" +2023-04-09,96363,1743,"[\""Headphones\"", \""Charger\"", \""Phone\""]",2031.27,{},23041,1,"""Africa""" +2023-05-15,96364,8076,"[\""Charger\"", \""Laptop\""]",123.95,{},19498,1,"""Africa""" +2023-04-12,96365,1994,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2833.86,"{\""loyalty\"": \""15%\""}",74166,1,"""South America""" +2023-03-28,96366,323,"[\""Headphones\"", \""Phone\""]",3158.77,"{\""promo\"": \""25%\""}",143064,0,"""South America""" +2023-11-24,96367,9187,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",1181.85,{},222459,1,"""Asia""" +2024-09-21,96368,4675,"[\""Keyboard\""]",2300.91,"{\""loyalty\"": \""23%\""}",165649,0,"""North America""" +2024-05-31,96369,4530,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1376.13,{},126292,1,"""North America""" +2024-05-27,96370,7116,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2843.59,{},102242,1,"""Asia""" +2023-03-12,96371,5986,"[\""Tablet\""]",4192.38,"{\"": \""17%\""}",198083,1,"""Asia""" +2023-04-07,96372,169,"[\""Monitor\""]",4176.02,{},195012,0,"""North America""" +2023-02-08,96373,9792,"[\""Tablet\"", \""Charger\""]",4556.48,{},245932,0,"""South America""" +2024-07-24,96374,5978,"[\""Charger\"", \""Laptop\""]",4653.26,{},72059,0,"""Asia""" +2023-02-07,96375,7016,"[\""Monitor\"", \""Keyboard\""]",3543.49,"{\"": \""22%\""}",7107,0,"""Europe""" +2024-09-03,96376,7576,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",2945.45,"{\""seasonal\"": \""10%\""}",259112,1,"""Africa""" +2024-08-15,96377,6427,"[\""Wireless Mouse\"", \""Phone\"", \""Keyboard\""]",4427.09,"{\""loyalty\"": \""29%\""}",190613,1,"""Asia""" +2023-03-13,96378,7059,"[\""Charger\""]",2486.26,"{\""promo\"": \""5%\""}",201388,1,"""Africa""" +2023-05-31,96379,8425,"[\""Tablet\""]",691.43,{},3353,1,"""Africa""" +2024-03-27,96380,4710,"[\""Headphones\""]",740.15,{},18495,0,"""Europe""" +2024-12-09,96381,4896,"[\""Keyboard\"", \""Tablet\""]",4144.27,"{\""loyalty\"": \""16%\""}",45180,1,"""North America""" +2023-01-01,96382,7202,"[\""Tablet\"", \""Monitor\""]",4041.2,{},62944,0,"""Africa""" +2023-10-11,96383,734,"[\""Keyboard\"", \""Wireless Mouse\""]",3975.65,"{\""promo\"": \""16%\""}",84201,1,"""Africa""" +2024-09-21,96384,4646,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1071.61,"{\"": \""18%\""}",137701,1,"""Africa""" +2024-09-06,96385,1151,"[\""Monitor\""]",735.84,{},36612,0,"""Asia""" +2023-06-05,96386,5945,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",4531.38,"{\""seasonal\"": \""9%\""}",190796,1,"""Africa""" +2024-03-16,96387,1192,"[\""Phone\""]",2349.89,"{\""seasonal\"": \""18%\""}",134798,0,"""Asia""" +2024-07-03,96388,5023,"[\""Phone\""]",1001.15,{},13627,0,"""South America""" +2023-05-21,96389,7572,"[\""Monitor\""]",1667.75,"{\""promo\"": \""9%\""}",221951,0,"""North America""" +2023-05-08,96390,8685,"[\""Monitor\"", \""Phone\""]",3818.23,"{\""loyalty\"": \""30%\""}",127989,1,"""South America""" +2023-04-28,96391,6598,"[\""Tablet\"", \""Wireless Mouse\""]",3068.46,"{\""promo\"": \""20%\""}",120726,1,"""North America""" +2023-09-13,96392,4952,"[\""Headphones\"", \""Charger\""]",758.87,"{\""loyalty\"": \""21%\""}",232665,0,"""South America""" +2024-11-05,96393,3215,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2793.61,"{\"": \""13%\""}",56009,0,"""Europe""" +2023-10-22,96394,3078,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1343.6,"{\"": \""21%\""}",192672,0,"""South America""" +2023-01-18,96395,243,"[\""Wireless Mouse\"", \""Phone\""]",2442.44,"{\""seasonal\"": \""25%\""}",132748,0,"""Africa""" +2023-05-07,96396,8632,"[\""Laptop\""]",2493.85,"{\""loyalty\"": \""17%\""}",74776,1,"""North America""" +2024-03-10,96397,2228,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4463.42,"{\""promo\"": \""20%\""}",190718,0,"""North America""" +2023-06-18,96398,6043,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",4670.02,{},213455,0,"""Asia""" +2023-05-14,96399,7571,"[\""Laptop\"", \""Keyboard\""]",3106.92,{},100077,0,"""Asia""" +2023-11-02,96400,2672,"[\""Monitor\""]",3078.2,{},124158,0,"""Africa""" +2024-07-13,96401,8673,"[\""Wireless Mouse\"", \""Charger\""]",3827.2,"{\""promo\"": \""5%\""}",38613,1,"""Africa""" +2024-09-17,96402,4791,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3619.85,{},35536,1,"""North America""" +2023-08-18,96403,1495,"[\""Charger\""]",329.05,{},173358,0,"""North America""" +2023-09-25,96404,894,"[\""Phone\"", \""Monitor\""]",1271.49,"{\""seasonal\"": \""12%\""}",27496,1,"""Asia""" +2024-05-02,96405,5876,"[\""Headphones\""]",1555.59,{},35072,0,"""North America""" +2024-09-16,96406,566,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",2140.85,{},30991,1,"""Asia""" +2024-08-06,96407,7471,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1972.08,{},259151,0,"""Europe""" +2023-12-19,96408,8975,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",723.64,{},159062,0,"""South America""" +2023-01-22,96409,3117,"[\""Laptop\"", \""Keyboard\""]",506.08,{},25221,1,"""North America""" +2023-10-31,96410,694,"[\""Tablet\"", \""Laptop\""]",806.09,"{\""promo\"": \""10%\""}",48914,1,"""Africa""" +2024-09-03,96411,2970,"[\""Headphones\"", \""Phone\""]",3183.06,"{\"": \""21%\""}",208424,1,"""North America""" +2023-10-13,96412,3038,"[\""Charger\"", \""Keyboard\""]",3929.56,{},128421,0,"""North America""" +2024-11-29,96413,1157,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",2861.13,{},118995,1,"""Africa""" +2024-04-12,96414,5370,"[\""Charger\""]",210.1,{},21468,0,"""Europe""" +2024-07-18,96415,3954,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",4797.35,{},216750,1,"""North America""" +2023-04-10,96416,6908,"[\""Charger\"", \""Monitor\""]",2949.65,"{\"": \""15%\""}",251250,0,"""Asia""" +2023-12-30,96417,9667,"[\""Keyboard\"", \""Headphones\""]",2964.29,{},188342,0,"""North America""" +2024-10-01,96418,6087,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",755.91,{},146906,1,"""Africa""" +2024-03-27,96419,4429,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",2726.69,{},68964,0,"""North America""" +2024-09-05,96420,6326,"[\""Tablet\"", \""Laptop\""]",4089.4,"{\""promo\"": \""22%\""}",168311,0,"""Asia""" +2023-01-19,96421,4071,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",4036.99,"{\""loyalty\"": \""29%\""}",242810,1,"""Africa""" +2023-05-01,96422,2423,"[\""Keyboard\"", \""Monitor\""]",1278.78,"{\""promo\"": \""14%\""}",134404,0,"""Europe""" +2024-11-16,96423,8370,"[\""Phone\"", \""Wireless Mouse\""]",53.71,"{\""loyalty\"": \""12%\""}",201095,1,"""Europe""" +2024-04-12,96424,9719,"[\""Tablet\""]",2808.31,"{\""loyalty\"": \""21%\""}",206050,0,"""North America""" +2024-01-31,96425,1145,"[\""Charger\"", \""Monitor\""]",3791.16,"{\""promo\"": \""15%\""}",219361,1,"""North America""" +2023-09-21,96426,1150,"[\""Wireless Mouse\"", \""Headphones\""]",1759.93,"{\""loyalty\"": \""25%\""}",292906,1,"""Asia""" +2024-08-26,96427,6555,"[\""Keyboard\""]",296.42,{},232271,1,"""North America""" +2023-09-11,96428,2197,"[\""Keyboard\"", \""Charger\""]",4084.95,{},125058,0,"""Africa""" +2023-09-09,96429,2860,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",2857.2,"{\"": \""7%\""}",98395,0,"""Asia""" +2023-03-20,96430,5094,"[\""Keyboard\""]",4670.52,"{\""promo\"": \""18%\""}",56433,0,"""North America""" +2023-09-12,96431,6896,"[\""Tablet\""]",1986.7,"{\""seasonal\"": \""9%\""}",120779,1,"""South America""" +2024-12-23,96432,8525,"[\""Headphones\""]",3747.94,"{\""seasonal\"": \""5%\""}",174325,1,"""Europe""" +2024-07-26,96433,5864,"[\""Keyboard\""]",3441.67,"{\""promo\"": \""25%\""}",47143,1,"""South America""" +2023-02-01,96434,5803,"[\""Tablet\"", \""Monitor\""]",450.04,{},225724,1,"""Europe""" +2024-05-30,96435,1386,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3171.81,{},185860,1,"""South America""" +2024-11-20,96436,2059,"[\""Wireless Mouse\"", \""Keyboard\""]",4419.78,"{\""promo\"": \""28%\""}",266361,1,"""North America""" +2024-08-12,96437,116,"[\""Keyboard\"", \""Charger\""]",1987.6,{},128778,1,"""Europe""" +2023-12-30,96438,2213,"[\""Laptop\"", \""Tablet\""]",4190.03,{},268606,1,"""Africa""" +2024-06-01,96439,870,"[\""Laptop\"", \""Wireless Mouse\""]",3977.05,"{\""seasonal\"": \""17%\""}",142858,0,"""Africa""" +2023-11-13,96440,43,"[\""Monitor\""]",4704.7,"{\""promo\"": \""23%\""}",82875,1,"""North America""" +2023-07-24,96441,2205,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",3192.21,{},194763,1,"""Africa""" +2023-04-12,96442,7447,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2261.06,{},292232,0,"""North America""" +2024-08-26,96443,2255,"[\""Charger\"", \""Tablet\""]",1849.03,"{\""seasonal\"": \""10%\""}",126633,1,"""Africa""" +2023-08-24,96444,7809,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4133.28,{},17147,0,"""Asia""" +2024-02-22,96445,6671,"[\""Headphones\"", \""Phone\""]",4531.1,"{\""promo\"": \""29%\""}",258365,0,"""Africa""" +2023-11-18,96446,2990,"[\""Tablet\"", \""Phone\""]",3629.16,{},236968,0,"""Europe""" +2024-08-19,96447,1235,"[\""Headphones\""]",1666.44,"{\""promo\"": \""28%\""}",233606,0,"""South America""" +2023-07-27,96448,4412,"[\""Laptop\"", \""Charger\""]",954.22,"{\"": \""5%\""}",26384,1,"""South America""" +2024-12-06,96449,5925,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1433.84,{},108258,0,"""North America""" +2024-07-13,96450,2687,"[\""Charger\"", \""Wireless Mouse\""]",4017.22,{},105542,1,"""Asia""" +2024-11-12,96451,4796,"[\""Keyboard\"", \""Headphones\""]",973.85,{},47305,1,"""Europe""" +2024-09-03,96452,1744,"[\""Charger\""]",2097.56,"{\""promo\"": \""20%\""}",4410,1,"""Europe""" +2024-07-30,96453,4885,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4867.62,"{\""seasonal\"": \""8%\""}",142178,1,"""Africa""" +2023-01-02,96454,6228,"[\""Monitor\"", \""Laptop\""]",4341.82,"{\""promo\"": \""10%\""}",59126,0,"""Africa""" +2023-01-03,96455,1915,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",3278.34,"{\"": \""23%\""}",179203,1,"""South America""" +2023-03-20,96456,1050,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2647.84,"{\"": \""22%\""}",296796,0,"""Africa""" +2023-04-05,96457,8872,"[\""Laptop\""]",3270.14,"{\""loyalty\"": \""22%\""}",255947,0,"""South America""" +2023-04-03,96458,1512,"[\""Charger\""]",2471.17,"{\""promo\"": \""26%\""}",190557,1,"""Europe""" +2024-10-10,96459,1594,"[\""Monitor\""]",4887.9,{},116443,1,"""South America""" +2023-10-24,96460,3135,"[\""Charger\""]",2661.77,{},150240,1,"""Europe""" +2023-09-24,96461,9125,"[\""Keyboard\""]",4209.29,{},261707,1,"""Africa""" +2023-07-16,96462,7802,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",1975.07,{},145281,1,"""Asia""" +2023-06-22,96463,7283,"[\""Charger\"", \""Headphones\""]",2298.52,{},10249,1,"""North America""" +2023-01-06,96464,9024,"[\""Keyboard\"", \""Monitor\""]",2023.35,{},248650,1,"""Europe""" +2024-07-19,96465,4803,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",2360.66,{},86165,1,"""Europe""" +2024-06-06,96466,2493,"[\""Charger\"", \""Laptop\""]",533.67,{},116604,0,"""Europe""" +2024-10-11,96467,5730,"[\""Phone\""]",794.17,{},100847,1,"""Africa""" +2024-05-19,96468,1280,"[\""Keyboard\"", \""Phone\""]",888.04,{},81956,1,"""North America""" +2024-11-26,96469,6573,"[\""Laptop\"", \""Wireless Mouse\""]",2629.02,{},273812,1,"""Asia""" +2024-11-21,96470,7040,"[\""Keyboard\"", \""Monitor\""]",3679.43,{},44021,0,"""Asia""" +2023-08-30,96471,9122,"[\""Tablet\""]",4623.88,"{\""loyalty\"": \""20%\""}",218247,0,"""North America""" +2024-05-31,96472,9288,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",431.89,{},3242,1,"""Africa""" +2023-02-02,96473,3255,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",934.22,{},116402,0,"""South America""" +2024-04-19,96474,1424,"[\""Headphones\""]",4114.33,"{\""loyalty\"": \""10%\""}",291942,1,"""South America""" +2024-07-15,96475,811,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2193.57,"{\"": \""20%\""}",106168,1,"""Africa""" +2024-11-06,96476,3629,"[\""Wireless Mouse\""]",1794.28,{},130901,0,"""Europe""" +2024-10-18,96477,2015,"[\""Wireless Mouse\"", \""Laptop\""]",4457.34,{},219099,0,"""Africa""" +2023-06-30,96478,675,"[\""Keyboard\"", \""Wireless Mouse\""]",4538.44,{},212184,1,"""North America""" +2024-01-15,96479,8483,"[\""Charger\""]",735.36,{},40133,0,"""Africa""" +2023-11-07,96480,6021,"[\""Phone\""]",2007.53,"{\""loyalty\"": \""13%\""}",149257,1,"""Asia""" +2024-09-04,96481,287,"[\""Laptop\""]",2634.58,{},161652,1,"""Asia""" +2023-10-11,96482,6085,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",4046.8,{},232962,0,"""North America""" +2024-11-21,96483,6844,"[\""Headphones\""]",2608.49,{},142589,1,"""Africa""" +2024-12-18,96484,280,"[\""Monitor\""]",966.64,{},88851,1,"""Asia""" +2023-12-19,96485,9807,"[\""Laptop\"", \""Keyboard\""]",175.02,{},138579,0,"""Africa""" +2023-12-16,96486,6993,"[\""Headphones\""]",322.57,"{\""seasonal\"": \""19%\""}",249756,0,"""North America""" +2023-03-13,96487,9076,"[\""Tablet\""]",3403.73,{},64633,0,"""Europe""" +2024-05-06,96488,9889,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",2800.2,{},40037,1,"""Europe""" +2023-05-20,96489,6825,"[\""Keyboard\"", \""Tablet\""]",1548.77,"{\""promo\"": \""15%\""}",148875,0,"""Europe""" +2024-07-18,96490,1211,"[\""Phone\"", \""Monitor\"", \""Charger\""]",3498.13,{},253771,1,"""Asia""" +2024-05-16,96491,9979,"[\""Monitor\"", \""Keyboard\""]",118.49,{},212242,0,"""Europe""" +2023-05-12,96492,2792,"[\""Laptop\""]",1619.85,"{\""seasonal\"": \""24%\""}",43803,0,"""Africa""" +2023-08-09,96493,4605,"[\""Keyboard\""]",3247.09,{},233442,1,"""Asia""" +2024-04-04,96494,9620,"[\""Charger\"", \""Laptop\""]",4706.89,"{\""seasonal\"": \""15%\""}",91275,1,"""North America""" +2023-02-26,96495,3960,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3212.97,{},67688,0,"""Africa""" +2024-12-31,96496,5125,"[\""Keyboard\"", \""Wireless Mouse\""]",3057.82,{},91135,0,"""Europe""" +2024-12-19,96497,8853,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2852.04,"{\"": \""22%\""}",63411,0,"""South America""" +2023-06-17,96498,6381,"[\""Wireless Mouse\""]",4930.67,{},82193,1,"""North America""" +2023-04-08,96499,8801,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",2904.27,"{\""loyalty\"": \""23%\""}",156824,1,"""Asia""" +2023-05-06,96500,308,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2293.68,"{\""seasonal\"": \""7%\""}",130389,0,"""Africa""" +2023-03-01,96501,5841,"[\""Headphones\""]",3968.63,{},18154,1,"""Africa""" +2024-09-25,96502,172,"[\""Wireless Mouse\""]",4797.58,{},203013,0,"""Asia""" +2024-09-12,96503,8169,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",657.57,{},125211,1,"""South America""" +2023-09-17,96504,6966,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",2431.68,{},69590,0,"""Africa""" +2024-10-20,96505,1175,"[\""Wireless Mouse\""]",1044.77,"{\""loyalty\"": \""14%\""}",28871,1,"""Europe""" +2024-12-20,96506,8033,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",4243.11,"{\"": \""19%\""}",31690,1,"""North America""" +2024-04-05,96507,7670,"[\""Keyboard\"", \""Tablet\""]",100.29,"{\""loyalty\"": \""26%\""}",153334,1,"""Asia""" +2023-03-01,96508,5713,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",576.6,{},220542,1,"""Africa""" +2024-08-30,96509,3140,"[\""Phone\"", \""Tablet\""]",1558.52,"{\""seasonal\"": \""5%\""}",29306,0,"""North America""" +2024-02-22,96510,709,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",766.49,"{\"": \""8%\""}",124720,1,"""South America""" +2023-12-26,96511,3949,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",1240.98,"{\""seasonal\"": \""13%\""}",210633,0,"""Asia""" +2024-08-04,96512,9287,"[\""Tablet\""]",4446.85,{},32627,0,"""Europe""" +2023-03-30,96513,2068,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",4123.95,{},117306,0,"""Africa""" +2024-03-26,96514,1048,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",3629.54,{},285971,0,"""North America""" +2023-02-10,96515,7860,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3146.59,{},53969,1,"""Europe""" +2023-02-11,96516,7856,"[\""Monitor\"", \""Charger\""]",3191.97,"{\""promo\"": \""19%\""}",80776,1,"""Europe""" +2024-05-20,96517,3214,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4565.16,{},247185,1,"""Europe""" +2023-02-22,96518,9389,"[\""Headphones\""]",3711.24,{},77410,1,"""North America""" +2024-04-18,96519,2996,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2087.94,"{\""seasonal\"": \""20%\""}",227818,1,"""Africa""" +2024-10-12,96520,6580,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",695.85,"{\""loyalty\"": \""18%\""}",43310,0,"""Asia""" +2024-01-09,96521,4540,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3523.08,"{\""promo\"": \""27%\""}",82493,1,"""Asia""" +2023-09-02,96522,174,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3737.24,"{\""loyalty\"": \""19%\""}",173980,1,"""Asia""" +2024-05-04,96523,3980,"[\""Headphones\""]",3114.99,{},147643,0,"""Europe""" +2024-11-30,96524,5744,"[\""Keyboard\""]",112.32,"{\""loyalty\"": \""13%\""}",116861,0,"""Asia""" +2024-10-21,96525,1578,"[\""Headphones\"", \""Charger\""]",3575.48,"{\"": \""12%\""}",182535,1,"""South America""" +2023-07-22,96526,9741,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",1521.42,"{\""promo\"": \""5%\""}",177412,0,"""South America""" +2023-10-13,96527,5585,"[\""Keyboard\""]",1577.15,"{\""promo\"": \""10%\""}",259701,0,"""Africa""" +2024-03-06,96528,4311,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",1938.52,"{\"": \""6%\""}",131460,0,"""North America""" +2024-02-14,96529,9679,"[\""Headphones\""]",1009.24,{},187391,1,"""Europe""" +2023-06-18,96530,8265,"[\""Charger\""]",4783.59,{},10272,0,"""North America""" +2024-10-27,96531,9060,"[\""Tablet\"", \""Charger\""]",927.35,{},50033,1,"""South America""" +2023-05-25,96532,1489,"[\""Laptop\"", \""Wireless Mouse\""]",1115.23,"{\""loyalty\"": \""9%\""}",278074,0,"""Africa""" +2023-12-21,96533,1330,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2216.16,"{\""seasonal\"": \""25%\""}",243716,1,"""Africa""" +2023-05-31,96534,2153,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1496.41,"{\""loyalty\"": \""10%\""}",260442,0,"""Europe""" +2023-03-23,96535,7984,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",3840.82,{},286103,1,"""Europe""" +2023-01-13,96536,9537,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3419.44,{},49520,0,"""Asia""" +2023-05-07,96537,9423,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4993.21,"{\""promo\"": \""25%\""}",119531,0,"""Africa""" +2024-04-04,96538,8862,"[\""Keyboard\"", \""Laptop\""]",3958.81,"{\""loyalty\"": \""14%\""}",90494,0,"""Europe""" +2023-02-03,96539,2810,"[\""Phone\""]",715.93,"{\""seasonal\"": \""20%\""}",49378,1,"""Africa""" +2024-07-04,96540,8337,"[\""Monitor\""]",61.55,"{\""seasonal\"": \""16%\""}",272562,0,"""South America""" +2024-03-15,96541,8428,"[\""Keyboard\""]",4266.24,{},251455,0,"""Asia""" +2024-04-22,96542,8446,"[\""Headphones\"", \""Wireless Mouse\""]",4316.31,{},102627,0,"""Africa""" +2024-07-11,96543,9864,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3547.12,{},255964,0,"""Africa""" +2024-11-07,96544,4884,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",703.63,"{\""seasonal\"": \""28%\""}",260736,0,"""Africa""" +2024-12-25,96545,864,"[\""Monitor\"", \""Headphones\""]",2166.15,{},78793,1,"""Asia""" +2023-10-20,96546,3224,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4786.21,"{\"": \""27%\""}",208408,1,"""South America""" +2023-01-16,96547,5004,"[\""Wireless Mouse\"", \""Phone\""]",3386.2,"{\""promo\"": \""11%\""}",33958,0,"""Europe""" +2023-04-22,96548,1992,"[\""Laptop\""]",403.01,"{\""loyalty\"": \""16%\""}",272627,0,"""Africa""" +2023-10-04,96549,6666,"[\""Monitor\"", \""Tablet\""]",3561.64,"{\"": \""19%\""}",179440,1,"""South America""" +2024-12-02,96550,785,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2856.0,{},91445,1,"""Europe""" +2023-06-16,96551,3751,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1537.71,{},60866,1,"""Asia""" +2024-05-17,96552,3398,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",741.56,"{\""seasonal\"": \""18%\""}",77123,0,"""Asia""" +2024-12-13,96553,7428,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1286.64,"{\""loyalty\"": \""10%\""}",118987,1,"""Asia""" +2023-06-22,96554,9878,"[\""Keyboard\""]",4347.78,{},239207,1,"""Asia""" +2023-12-26,96555,5287,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1704.88,"{\""seasonal\"": \""23%\""}",252794,0,"""South America""" +2024-02-28,96556,869,"[\""Wireless Mouse\"", \""Charger\""]",1504.32,{},241585,1,"""Europe""" +2023-11-22,96557,3592,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4043.8,{},130777,0,"""Africa""" +2023-08-05,96558,7100,"[\""Charger\"", \""Wireless Mouse\""]",2598.84,"{\""loyalty\"": \""29%\""}",80635,1,"""North America""" +2023-08-20,96559,2857,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1495.95,{},203077,1,"""North America""" +2023-01-17,96560,8610,"[\""Charger\"", \""Phone\""]",2491.17,"{\"": \""13%\""}",144851,1,"""South America""" +2024-06-28,96561,8322,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",482.42,"{\""loyalty\"": \""23%\""}",142972,1,"""North America""" +2024-07-25,96562,958,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",1660.98,"{\""promo\"": \""22%\""}",205066,1,"""Asia""" +2023-10-24,96563,2581,"[\""Tablet\"", \""Wireless Mouse\""]",4119.93,{},156318,1,"""North America""" +2023-12-18,96564,2897,"[\""Monitor\""]",3505.34,"{\""promo\"": \""10%\""}",273632,1,"""South America""" +2024-12-20,96565,15,"[\""Phone\""]",2844.76,{},165758,0,"""South America""" +2023-06-24,96566,5989,"[\""Charger\"", \""Keyboard\""]",2435.9,{},203328,1,"""Africa""" +2023-08-03,96567,6808,"[\""Wireless Mouse\""]",4106.03,"{\""promo\"": \""15%\""}",43293,1,"""Africa""" +2024-02-07,96568,3757,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",4016.69,"{\"": \""8%\""}",225259,1,"""Asia""" +2023-05-06,96569,8528,"[\""Headphones\"", \""Laptop\""]",3654.97,{},252480,0,"""Asia""" +2023-10-14,96570,1263,"[\""Wireless Mouse\"", \""Keyboard\""]",2773.16,"{\""loyalty\"": \""9%\""}",14455,0,"""Europe""" +2023-11-06,96571,529,"[\""Laptop\"", \""Tablet\""]",1987.83,"{\"": \""5%\""}",260322,0,"""Asia""" +2023-09-05,96572,8280,"[\""Phone\"", \""Charger\""]",1289.17,"{\""loyalty\"": \""27%\""}",180730,1,"""South America""" +2023-05-26,96573,7828,"[\""Keyboard\"", \""Wireless Mouse\""]",2703.47,"{\""seasonal\"": \""27%\""}",59089,1,"""North America""" +2023-04-25,96574,1256,"[\""Monitor\""]",1590.84,"{\""promo\"": \""23%\""}",106744,0,"""South America""" +2023-05-30,96575,633,"[\""Tablet\"", \""Keyboard\""]",1542.98,{},164744,0,"""Europe""" +2024-05-15,96576,668,"[\""Headphones\""]",4576.86,{},277835,1,"""Africa""" +2024-02-15,96577,7622,"[\""Laptop\""]",3073.1,"{\""loyalty\"": \""11%\""}",197694,1,"""North America""" +2024-11-02,96578,5913,"[\""Wireless Mouse\""]",3516.22,{},250971,1,"""Africa""" +2024-04-01,96579,9405,"[\""Phone\""]",3384.34,"{\""loyalty\"": \""11%\""}",274714,0,"""Africa""" +2024-11-17,96580,3401,"[\""Phone\""]",4401.69,"{\"": \""21%\""}",188263,0,"""South America""" +2024-07-02,96581,5342,"[\""Charger\"", \""Keyboard\""]",1245.07,{},59930,1,"""Africa""" +2023-04-11,96582,7325,"[\""Phone\""]",1173.77,{},165943,0,"""Asia""" +2023-08-17,96583,7834,"[\""Wireless Mouse\"", \""Tablet\""]",1768.43,{},271577,1,"""Africa""" +2023-04-07,96584,583,"[\""Tablet\""]",1575.87,{},228073,1,"""Africa""" +2024-11-09,96585,4211,"[\""Laptop\"", \""Keyboard\""]",3188.38,"{\"": \""18%\""}",123523,1,"""Africa""" +2024-08-17,96586,4271,"[\""Wireless Mouse\"", \""Charger\""]",4325.65,{},7979,0,"""Europe""" +2023-02-13,96587,8019,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",1686.61,{},192380,1,"""Europe""" +2023-06-15,96588,8714,"[\""Charger\"", \""Keyboard\""]",3110.25,{},15073,1,"""Europe""" +2024-10-23,96589,7795,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3834.31,{},208813,1,"""Africa""" +2024-12-09,96590,1615,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1710.68,"{\"": \""22%\""}",187014,1,"""South America""" +2023-03-30,96591,5423,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3939.56,"{\""seasonal\"": \""6%\""}",59532,1,"""Asia""" +2024-09-01,96592,4184,"[\""Monitor\"", \""Phone\""]",2246.98,{},206109,1,"""South America""" +2023-01-06,96593,381,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",3062.6,"{\"": \""20%\""}",257781,0,"""Asia""" +2023-12-26,96594,7530,"[\""Monitor\""]",3514.47,"{\""promo\"": \""12%\""}",244778,0,"""South America""" +2023-07-23,96595,449,"[\""Wireless Mouse\""]",1132.47,"{\"": \""8%\""}",296281,1,"""North America""" +2024-07-31,96596,2724,"[\""Keyboard\""]",1370.99,"{\""promo\"": \""19%\""}",269604,0,"""South America""" +2023-10-02,96597,9138,"[\""Laptop\"", \""Headphones\""]",343.08,"{\""seasonal\"": \""7%\""}",186144,0,"""South America""" +2024-06-01,96598,6680,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4740.07,"{\"": \""29%\""}",94972,0,"""Africa""" +2023-10-20,96599,1471,"[\""Tablet\""]",2268.15,{},151305,1,"""North America""" +2023-11-27,96600,1958,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",952.31,"{\"": \""13%\""}",146487,0,"""Europe""" +2024-09-28,96601,9217,"[\""Wireless Mouse\"", \""Tablet\""]",4791.75,{},123625,1,"""Africa""" +2024-07-10,96602,1322,"[\""Laptop\""]",974.86,"{\""loyalty\"": \""10%\""}",138485,1,"""Asia""" +2023-08-30,96603,5357,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4007.68,"{\""seasonal\"": \""7%\""}",170066,1,"""South America""" +2023-12-08,96604,4980,"[\""Phone\"", \""Wireless Mouse\""]",1833.05,"{\""promo\"": \""11%\""}",207775,0,"""Europe""" +2024-05-10,96605,4652,"[\""Tablet\"", \""Monitor\""]",3864.85,{},176572,0,"""Europe""" +2023-07-11,96606,7934,"[\""Headphones\"", \""Monitor\""]",2591.88,"{\"": \""23%\""}",147121,0,"""North America""" +2024-11-13,96607,8011,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2435.56,{},170351,1,"""South America""" +2023-02-27,96608,3137,"[\""Tablet\"", \""Headphones\"", \""Keyboard\""]",4175.67,"{\""promo\"": \""26%\""}",111719,1,"""North America""" +2023-09-15,96609,7702,"[\""Laptop\""]",1084.33,"{\""promo\"": \""18%\""}",264596,1,"""Africa""" +2024-11-17,96610,935,"[\""Wireless Mouse\""]",3971.97,"{\""promo\"": \""10%\""}",40593,1,"""Europe""" +2023-01-18,96611,6568,"[\""Phone\""]",1814.65,{},125313,1,"""North America""" +2023-08-20,96612,6657,"[\""Phone\""]",3449.61,"{\"": \""7%\""}",1170,0,"""North America""" +2023-01-08,96613,6993,"[\""Headphones\"", \""Tablet\""]",4683.9,{},164826,1,"""Asia""" +2023-04-29,96614,7851,"[\""Monitor\""]",311.84,{},5525,0,"""South America""" +2023-06-18,96615,79,"[\""Tablet\""]",3222.51,"{\"": \""9%\""}",104783,1,"""Europe""" +2024-03-15,96616,9044,"[\""Laptop\"", \""Phone\""]",3778.39,"{\""seasonal\"": \""29%\""}",159242,1,"""Asia""" +2024-02-15,96617,8943,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",4057.99,"{\""seasonal\"": \""13%\""}",73650,1,"""North America""" +2024-10-19,96618,8177,"[\""Tablet\""]",4698.96,"{\""loyalty\"": \""15%\""}",169100,0,"""Africa""" +2024-11-27,96619,1102,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",4657.23,{},51496,1,"""Africa""" +2024-07-07,96620,3189,"[\""Wireless Mouse\""]",4503.49,{},132741,0,"""South America""" +2024-01-22,96621,4988,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3136.05,"{\"": \""24%\""}",258597,1,"""Asia""" +2024-11-07,96622,2638,"[\""Monitor\"", \""Keyboard\""]",4197.26,{},45175,0,"""Europe""" +2023-07-31,96623,695,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1915.68,"{\"": \""9%\""}",103385,0,"""Africa""" +2023-11-06,96624,6152,"[\""Phone\"", \""Tablet\""]",2738.61,"{\"": \""16%\""}",61346,1,"""Asia""" +2024-02-18,96625,4710,"[\""Charger\"", \""Wireless Mouse\""]",4445.27,{},146590,0,"""Asia""" +2023-02-04,96626,3763,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1190.04,{},227639,1,"""Africa""" +2023-05-03,96627,3107,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1001.52,"{\"": \""21%\""}",163280,0,"""Asia""" +2023-11-17,96628,5745,"[\""Laptop\""]",1707.74,"{\"": \""29%\""}",50166,1,"""North America""" +2024-01-12,96629,575,"[\""Wireless Mouse\""]",4104.66,{},277129,1,"""Europe""" +2023-10-09,96630,9878,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1472.2,"{\""seasonal\"": \""19%\""}",181605,0,"""North America""" +2023-11-14,96631,829,"[\""Monitor\""]",458.65,{},255450,1,"""North America""" +2023-11-10,96632,3364,"[\""Keyboard\""]",1808.68,{},105244,0,"""South America""" +2023-10-23,96633,997,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2714.71,"{\""loyalty\"": \""11%\""}",86437,1,"""South America""" +2023-11-26,96634,5496,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4001.56,{},18240,0,"""Africa""" +2023-11-17,96635,3025,"[\""Monitor\""]",927.2,{},223836,1,"""Europe""" +2024-09-10,96636,3131,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",370.82,"{\""seasonal\"": \""18%\""}",292199,1,"""North America""" +2023-08-09,96637,5765,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",4126.62,"{\""seasonal\"": \""7%\""}",241031,0,"""Asia""" +2024-11-24,96638,2133,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",4279.5,"{\""loyalty\"": \""11%\""}",159298,1,"""Africa""" +2024-07-07,96639,583,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",2937.3,{},171914,1,"""Asia""" +2024-02-03,96640,399,"[\""Monitor\"", \""Charger\""]",880.99,{},160269,1,"""Europe""" +2023-10-23,96641,7858,"[\""Monitor\"", \""Phone\""]",3006.45,{},97606,0,"""South America""" +2024-01-31,96642,8296,"[\""Tablet\""]",2619.48,"{\""loyalty\"": \""12%\""}",61367,1,"""Europe""" +2023-01-31,96643,2667,"[\""Phone\"", \""Headphones\""]",4725.24,{},207636,1,"""Africa""" +2023-12-21,96644,9664,"[\""Headphones\"", \""Wireless Mouse\""]",3829.19,{},268665,1,"""Africa""" +2024-02-19,96645,1824,"[\""Keyboard\"", \""Charger\""]",1776.52,"{\"": \""12%\""}",111921,0,"""South America""" +2023-01-02,96646,6562,"[\""Charger\""]",973.1,{},124046,1,"""Asia""" +2023-08-14,96647,744,"[\""Headphones\"", \""Charger\"", \""Keyboard\""]",3880.15,"{\""loyalty\"": \""24%\""}",89590,0,"""Africa""" +2023-02-17,96648,9284,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4904.52,"{\""seasonal\"": \""12%\""}",135145,1,"""Asia""" +2024-07-01,96649,3695,"[\""Monitor\""]",4189.64,"{\"": \""23%\""}",120779,1,"""Asia""" +2023-12-10,96650,5893,"[\""Charger\"", \""Tablet\""]",2026.99,"{\"": \""7%\""}",105481,0,"""Europe""" +2023-01-09,96651,5801,"[\""Monitor\"", \""Headphones\""]",4559.44,{},126789,1,"""Asia""" +2023-10-02,96652,3309,"[\""Monitor\"", \""Headphones\""]",4320.89,{},10744,0,"""South America""" +2024-01-15,96653,5590,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4871.24,{},245271,0,"""Africa""" +2024-07-17,96654,7491,"[\""Charger\"", \""Laptop\""]",3150.41,"{\""promo\"": \""29%\""}",263164,0,"""Asia""" +2023-12-18,96655,3213,"[\""Laptop\""]",4303.86,"{\""seasonal\"": \""21%\""}",90641,1,"""South America""" +2023-03-07,96656,1716,"[\""Tablet\"", \""Monitor\""]",2707.65,{},169829,1,"""North America""" +2024-12-21,96657,4512,"[\""Charger\"", \""Headphones\""]",973.65,{},61449,1,"""Africa""" +2023-08-25,96658,1677,"[\""Headphones\"", \""Tablet\""]",780.7,"{\""loyalty\"": \""18%\""}",57177,1,"""Africa""" +2023-03-28,96659,3507,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1571.98,"{\""loyalty\"": \""21%\""}",293756,1,"""Europe""" +2023-01-31,96660,1272,"[\""Tablet\"", \""Laptop\""]",1022.62,{},191380,1,"""Asia""" +2024-04-02,96661,7666,"[\""Wireless Mouse\""]",2746.32,{},120499,0,"""Asia""" +2024-12-04,96662,9792,"[\""Charger\"", \""Monitor\""]",2855.23,"{\""seasonal\"": \""12%\""}",41637,0,"""South America""" +2023-02-08,96663,2074,"[\""Monitor\"", \""Phone\""]",4312.46,{},210852,0,"""Europe""" +2024-03-20,96664,4131,"[\""Phone\""]",2337.94,"{\""loyalty\"": \""5%\""}",31383,0,"""North America""" +2023-06-29,96665,1637,"[\""Laptop\""]",222.52,"{\""promo\"": \""5%\""}",273157,1,"""Asia""" +2024-04-22,96666,2132,"[\""Wireless Mouse\"", \""Laptop\""]",1408.14,"{\"": \""25%\""}",264264,1,"""Asia""" +2023-06-12,96667,1891,"[\""Tablet\""]",2441.06,{},292996,0,"""Africa""" +2023-04-03,96668,1038,"[\""Keyboard\"", \""Charger\""]",2398.26,"{\""promo\"": \""23%\""}",67012,1,"""Europe""" +2024-03-20,96669,4763,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4025.44,{},186712,0,"""Asia""" +2023-07-14,96670,7104,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",2501.68,{},162616,0,"""North America""" +2024-11-04,96671,1662,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1888.64,{},62704,1,"""Africa""" +2024-04-06,96672,8042,"[\""Monitor\""]",4419.71,{},207142,0,"""Asia""" +2024-03-24,96673,5331,"[\""Phone\""]",2515.96,{},235367,1,"""South America""" +2023-08-01,96674,2741,"[\""Laptop\"", \""Tablet\""]",68.03,{},198059,1,"""Asia""" +2023-02-15,96675,1205,"[\""Keyboard\"", \""Monitor\"", \""Wireless Mouse\""]",2733.61,{},163595,0,"""Europe""" +2023-07-09,96676,6612,"[\""Tablet\""]",572.98,"{\""loyalty\"": \""27%\""}",123503,1,"""South America""" +2024-10-28,96677,1721,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",1441.87,"{\""loyalty\"": \""26%\""}",170795,1,"""North America""" +2023-05-24,96678,948,"[\""Laptop\"", \""Monitor\""]",2724.78,"{\"": \""21%\""}",33008,0,"""Asia""" +2023-01-31,96679,1354,"[\""Phone\"", \""Tablet\""]",131.76,{},109529,0,"""South America""" +2024-05-31,96680,365,"[\""Laptop\"", \""Phone\"", \""Charger\""]",2559.59,"{\""loyalty\"": \""28%\""}",291927,0,"""Asia""" +2023-11-30,96681,7703,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",1255.4,"{\"": \""9%\""}",138647,0,"""South America""" +2023-04-02,96682,6902,"[\""Headphones\"", \""Charger\""]",1413.54,"{\""loyalty\"": \""12%\""}",13319,0,"""South America""" +2023-01-04,96683,1487,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2149.78,"{\"": \""12%\""}",213712,1,"""Asia""" +2024-07-03,96684,3627,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",2187.49,"{\""loyalty\"": \""16%\""}",151069,0,"""Asia""" +2023-11-20,96685,5453,"[\""Monitor\"", \""Phone\""]",1732.02,"{\""promo\"": \""20%\""}",139988,0,"""South America""" +2024-12-21,96686,1263,"[\""Headphones\"", \""Wireless Mouse\""]",4908.54,{},292244,0,"""Africa""" +2024-10-02,96687,2975,"[\""Tablet\"", \""Charger\""]",1931.21,{},282653,1,"""Africa""" +2024-03-25,96688,2662,"[\""Wireless Mouse\""]",508.04,{},285053,1,"""Europe""" +2023-05-30,96689,5270,"[\""Monitor\""]",1050.28,{},88861,1,"""Africa""" +2023-10-06,96690,8586,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",3090.83,"{\"": \""13%\""}",87673,0,"""Asia""" +2024-04-15,96691,8958,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3903.91,{},296136,1,"""Africa""" +2024-11-26,96692,9580,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",4585.69,{},204249,1,"""Europe""" +2023-10-22,96693,9687,"[\""Charger\"", \""Headphones\""]",459.64,"{\""seasonal\"": \""17%\""}",146472,1,"""Africa""" +2024-08-23,96694,6543,"[\""Phone\"", \""Headphones\""]",4027.51,"{\""promo\"": \""28%\""}",83099,1,"""South America""" +2023-10-10,96695,4167,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",3357.87,"{\""promo\"": \""6%\""}",178430,1,"""North America""" +2023-01-19,96696,2910,"[\""Phone\""]",2550.64,"{\"": \""5%\""}",30550,1,"""South America""" +2024-05-24,96697,4938,"[\""Tablet\""]",3552.96,"{\""promo\"": \""30%\""}",188671,0,"""Africa""" +2024-06-04,96698,7701,"[\""Wireless Mouse\"", \""Monitor\""]",63.2,"{\""loyalty\"": \""29%\""}",110015,1,"""Africa""" +2024-05-10,96699,523,"[\""Phone\"", \""Charger\"", \""Headphones\""]",437.04,"{\""seasonal\"": \""18%\""}",274800,0,"""Africa""" +2024-10-27,96700,676,"[\""Phone\""]",3797.75,"{\"": \""8%\""}",115265,1,"""Asia""" +2024-02-15,96701,7436,"[\""Wireless Mouse\""]",2763.27,"{\"": \""11%\""}",259171,0,"""Africa""" +2024-06-19,96702,4682,"[\""Monitor\""]",512.03,"{\"": \""27%\""}",227279,0,"""Africa""" +2024-12-31,96703,9037,"[\""Keyboard\""]",434.16,{},175319,0,"""Europe""" +2024-02-23,96704,3626,"[\""Tablet\""]",4856.96,"{\"": \""21%\""}",121158,1,"""Europe""" +2023-09-29,96705,8749,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",3523.1,"{\"": \""20%\""}",65830,1,"""North America""" +2023-06-01,96706,7313,"[\""Laptop\"", \""Monitor\""]",2427.65,"{\"": \""13%\""}",1906,0,"""Europe""" +2024-03-14,96707,4344,"[\""Charger\"", \""Monitor\""]",159.14,{},13186,1,"""North America""" +2024-08-09,96708,4775,"[\""Charger\""]",4630.32,{},284711,1,"""Africa""" +2024-05-01,96709,2944,"[\""Wireless Mouse\""]",1812.54,{},269759,1,"""Europe""" +2023-06-17,96710,8924,"[\""Monitor\""]",80.33,"{\""loyalty\"": \""12%\""}",26617,0,"""North America""" +2023-07-26,96711,3855,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",4148.63,{},99782,1,"""North America""" +2023-10-04,96712,9051,"[\""Headphones\"", \""Phone\""]",3535.3,"{\""promo\"": \""30%\""}",121463,0,"""Europe""" +2023-09-25,96713,7651,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2131.4,"{\""promo\"": \""15%\""}",65532,1,"""North America""" +2024-01-16,96714,8497,"[\""Headphones\""]",2168.15,{},222029,0,"""Europe""" +2023-01-23,96715,6394,"[\""Wireless Mouse\"", \""Phone\""]",4611.44,"{\"": \""22%\""}",204038,0,"""Asia""" +2023-09-15,96716,6122,"[\""Keyboard\""]",246.71,{},149041,1,"""Asia""" +2024-01-14,96717,670,"[\""Tablet\""]",2962.94,"{\""seasonal\"": \""23%\""}",288915,0,"""Africa""" +2024-09-21,96718,2182,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",1488.33,"{\"": \""20%\""}",151549,1,"""Europe""" +2023-05-11,96719,476,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",1740.22,"{\"": \""12%\""}",11458,0,"""Africa""" +2023-03-13,96720,7736,"[\""Wireless Mouse\"", \""Laptop\""]",682.92,{},66861,0,"""Asia""" +2024-09-03,96721,1537,"[\""Phone\"", \""Laptop\""]",4621.04,"{\""seasonal\"": \""17%\""}",270376,0,"""South America""" +2023-11-19,96722,7886,"[\""Keyboard\"", \""Monitor\""]",4377.95,"{\"": \""27%\""}",56442,1,"""Africa""" +2023-02-02,96723,8924,"[\""Laptop\"", \""Monitor\""]",2386.0,"{\""promo\"": \""30%\""}",200221,0,"""Europe""" +2023-09-06,96724,6996,"[\""Keyboard\""]",4856.1,{},251177,0,"""Asia""" +2024-02-05,96725,9409,"[\""Headphones\"", \""Laptop\""]",1752.39,"{\"": \""9%\""}",272774,1,"""Europe""" +2024-04-19,96726,8075,"[\""Wireless Mouse\"", \""Monitor\""]",990.99,"{\""seasonal\"": \""28%\""}",259778,1,"""Africa""" +2024-07-07,96727,7630,"[\""Charger\"", \""Phone\""]",4260.68,{},117621,0,"""North America""" +2024-11-22,96728,3161,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1218.92,"{\""promo\"": \""17%\""}",277013,0,"""North America""" +2023-07-18,96729,9366,"[\""Wireless Mouse\""]",3005.78,{},126880,1,"""North America""" +2023-09-05,96730,5349,"[\""Keyboard\"", \""Tablet\""]",3889.33,{},135269,1,"""Africa""" +2024-09-07,96731,2425,"[\""Laptop\""]",467.53,"{\""seasonal\"": \""25%\""}",8096,0,"""Asia""" +2024-10-27,96732,6799,"[\""Laptop\""]",2516.35,"{\""seasonal\"": \""10%\""}",291611,1,"""North America""" +2024-08-02,96733,5692,"[\""Keyboard\""]",2162.94,{},128085,1,"""South America""" +2024-02-20,96734,836,"[\""Charger\""]",1216.96,"{\""seasonal\"": \""9%\""}",31801,1,"""North America""" +2023-02-06,96735,5438,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",2437.07,"{\""loyalty\"": \""20%\""}",154400,0,"""South America""" +2023-06-15,96736,102,"[\""Phone\""]",1063.81,{},111874,1,"""North America""" +2023-01-09,96737,8571,"[\""Charger\""]",4257.01,{},96728,1,"""Africa""" +2024-05-22,96738,2061,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",387.88,"{\""seasonal\"": \""15%\""}",84632,1,"""Asia""" +2023-06-25,96739,5256,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4942.96,"{\""loyalty\"": \""7%\""}",135642,0,"""North America""" +2023-01-27,96740,3304,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",4866.9,{},39968,1,"""North America""" +2023-04-28,96741,4851,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",1956.45,{},75060,0,"""South America""" +2024-12-31,96742,9836,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",4031.67,"{\""seasonal\"": \""30%\""}",258138,0,"""South America""" +2024-07-20,96743,9309,"[\""Headphones\"", \""Laptop\""]",2229.74,{},35005,0,"""Europe""" +2023-12-08,96744,9004,"[\""Laptop\""]",4748.07,"{\""seasonal\"": \""16%\""}",256873,0,"""Europe""" +2024-07-27,96745,3456,"[\""Tablet\""]",1443.6,{},8645,1,"""Africa""" +2023-10-11,96746,1258,"[\""Charger\""]",1243.69,{},228290,1,"""North America""" +2024-06-17,96747,8966,"[\""Phone\""]",2381.85,"{\""loyalty\"": \""17%\""}",132213,1,"""North America""" +2024-06-09,96748,4349,"[\""Phone\"", \""Monitor\"", \""Charger\""]",1126.98,{},240516,0,"""South America""" +2024-07-30,96749,2015,"[\""Charger\""]",3822.05,{},40380,0,"""Asia""" +2024-06-26,96750,5688,"[\""Laptop\""]",4070.54,"{\""promo\"": \""17%\""}",255281,1,"""Europe""" +2024-12-26,96751,6174,"[\""Wireless Mouse\""]",3429.08,"{\"": \""23%\""}",71990,0,"""Africa""" +2024-11-05,96752,1274,"[\""Phone\""]",1906.05,"{\""seasonal\"": \""9%\""}",121367,0,"""Asia""" +2023-04-28,96753,1590,"[\""Monitor\"", \""Laptop\""]",1894.02,"{\""loyalty\"": \""23%\""}",171588,0,"""Europe""" +2023-02-23,96754,8070,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1366.73,"{\""loyalty\"": \""6%\""}",94090,1,"""Africa""" +2024-04-03,96755,1153,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",4835.32,{},206303,0,"""Africa""" +2024-05-02,96756,8377,"[\""Charger\""]",1325.01,{},6946,1,"""North America""" +2023-09-30,96757,3076,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",2556.13,"{\""promo\"": \""8%\""}",67025,1,"""South America""" +2023-11-27,96758,2846,"[\""Charger\"", \""Headphones\""]",3430.22,"{\""promo\"": \""26%\""}",243423,1,"""Africa""" +2023-02-12,96759,5139,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3684.2,"{\"": \""28%\""}",244119,1,"""South America""" +2024-07-04,96760,1619,"[\""Charger\""]",3718.43,{},65882,0,"""Africa""" +2024-05-05,96761,5554,"[\""Phone\""]",149.56,{},243360,0,"""Asia""" +2023-11-16,96762,8624,"[\""Headphones\"", \""Wireless Mouse\""]",4410.71,"{\""seasonal\"": \""12%\""}",248466,1,"""South America""" +2024-11-22,96763,4562,"[\""Keyboard\""]",2547.8,{},11661,0,"""Asia""" +2024-02-06,96764,7563,"[\""Charger\"", \""Keyboard\""]",3007.1,"{\""seasonal\"": \""14%\""}",37901,0,"""Europe""" +2023-10-04,96765,1581,"[\""Tablet\"", \""Laptop\""]",3919.99,"{\""promo\"": \""19%\""}",226135,0,"""Asia""" +2024-02-05,96766,7703,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3748.99,"{\""loyalty\"": \""13%\""}",282617,0,"""Europe""" +2024-12-28,96767,3559,"[\""Phone\""]",309.95,{},147946,0,"""North America""" +2023-03-31,96768,7122,"[\""Laptop\"", \""Keyboard\""]",4307.14,{},120192,0,"""South America""" +2023-10-24,96769,2576,"[\""Keyboard\"", \""Monitor\""]",2093.34,"{\""loyalty\"": \""18%\""}",289507,0,"""Africa""" +2024-06-09,96770,4372,"[\""Phone\"", \""Tablet\"", \""Monitor\""]",1285.61,"{\""seasonal\"": \""24%\""}",102303,0,"""Asia""" +2023-08-12,96771,7064,"[\""Laptop\"", \""Keyboard\""]",3233.83,"{\""seasonal\"": \""10%\""}",156974,1,"""Europe""" +2024-01-09,96772,5206,"[\""Tablet\"", \""Phone\""]",1550.51,{},279520,0,"""North America""" +2023-09-16,96773,993,"[\""Phone\"", \""Monitor\""]",3632.84,"{\""seasonal\"": \""25%\""}",286064,0,"""North America""" +2023-06-13,96774,7515,"[\""Phone\""]",1278.73,"{\""promo\"": \""18%\""}",203379,0,"""North America""" +2023-11-18,96775,2409,"[\""Wireless Mouse\""]",4077.95,"{\""seasonal\"": \""10%\""}",10962,1,"""Europe""" +2024-01-28,96776,442,"[\""Phone\""]",3949.36,"{\""seasonal\"": \""30%\""}",194235,1,"""Asia""" +2023-05-13,96777,2120,"[\""Phone\"", \""Laptop\""]",3847.81,{},231733,1,"""Europe""" +2024-12-20,96778,9655,"[\""Monitor\"", \""Headphones\""]",4029.81,{},85909,1,"""Asia""" +2023-01-02,96779,6385,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",2964.57,{},6606,1,"""Europe""" +2023-04-06,96780,9388,"[\""Monitor\""]",2849.04,{},48624,0,"""Africa""" +2024-05-23,96781,7412,"[\""Wireless Mouse\"", \""Phone\"", \""Headphones\""]",920.63,{},22292,0,"""Europe""" +2023-10-31,96782,3321,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",2043.26,"{\""loyalty\"": \""6%\""}",279936,1,"""Europe""" +2023-01-01,96783,9199,"[\""Wireless Mouse\"", \""Phone\""]",275.77,"{\""loyalty\"": \""22%\""}",250021,0,"""North America""" +2024-09-26,96784,4344,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",266.45,{},77603,0,"""Asia""" +2024-07-25,96785,9248,"[\""Laptop\""]",2855.15,{},272276,0,"""Africa""" +2024-03-30,96786,7646,"[\""Keyboard\""]",94.91,{},264472,1,"""Asia""" +2024-09-27,96787,6958,"[\""Phone\""]",2775.98,{},277121,1,"""Asia""" +2023-11-09,96788,267,"[\""Monitor\"", \""Laptop\""]",924.71,{},203669,0,"""South America""" +2023-11-29,96789,4109,"[\""Keyboard\"", \""Phone\""]",4121.83,"{\""promo\"": \""22%\""}",225515,0,"""Europe""" +2023-05-21,96790,2409,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",165.45,"{\"": \""17%\""}",29966,1,"""Africa""" +2024-07-05,96791,2004,"[\""Wireless Mouse\""]",2900.4,"{\""loyalty\"": \""21%\""}",237433,1,"""Asia""" +2024-07-12,96792,5110,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",3959.66,{},6234,1,"""North America""" +2023-07-12,96793,7205,"[\""Phone\"", \""Charger\""]",213.56,"{\""promo\"": \""16%\""}",168350,1,"""Asia""" +2023-01-25,96794,28,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",3236.97,"{\""seasonal\"": \""11%\""}",33020,0,"""Europe""" +2023-07-02,96795,5586,"[\""Charger\""]",2545.46,"{\"": \""5%\""}",251651,0,"""North America""" +2023-03-01,96796,9309,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",75.92,{},17133,1,"""Africa""" +2023-10-11,96797,7021,"[\""Tablet\"", \""Wireless Mouse\""]",1891.5,"{\"": \""15%\""}",51863,1,"""Africa""" +2023-11-28,96798,9185,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",4144.26,{},164434,1,"""Europe""" +2024-03-04,96799,5221,"[\""Charger\""]",1527.3,"{\""seasonal\"": \""20%\""}",112515,0,"""South America""" +2023-05-26,96800,6069,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",3429.7,"{\""loyalty\"": \""9%\""}",291763,0,"""Europe""" +2024-07-18,96801,1320,"[\""Wireless Mouse\""]",600.1,"{\""loyalty\"": \""29%\""}",167892,1,"""South America""" +2024-10-30,96802,4760,"[\""Monitor\""]",2480.57,"{\""loyalty\"": \""22%\""}",296013,0,"""South America""" +2024-05-15,96803,7111,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3496.87,"{\""loyalty\"": \""20%\""}",37326,0,"""Africa""" +2023-03-20,96804,8433,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",3361.49,"{\""promo\"": \""10%\""}",91770,0,"""Africa""" +2023-07-30,96805,5686,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3035.2,"{\"": \""28%\""}",69565,1,"""North America""" +2024-07-04,96806,642,"[\""Keyboard\""]",3550.3,{},265251,0,"""Asia""" +2024-07-29,96807,4597,"[\""Phone\"", \""Charger\""]",2477.02,"{\""seasonal\"": \""29%\""}",197654,0,"""Europe""" +2024-04-24,96808,7882,"[\""Wireless Mouse\"", \""Charger\""]",4150.75,"{\"": \""26%\""}",202230,1,"""Europe""" +2023-06-02,96809,1961,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",2032.44,"{\""promo\"": \""19%\""}",273134,0,"""Europe""" +2024-12-28,96810,9251,"[\""Keyboard\""]",4390.79,{},129935,1,"""Africa""" +2024-04-19,96811,6369,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",290.14,{},232595,1,"""North America""" +2023-07-21,96812,5633,"[\""Headphones\"", \""Charger\""]",2927.7,"{\""seasonal\"": \""14%\""}",61544,0,"""North America""" +2023-05-18,96813,9545,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4764.32,{},293642,0,"""Africa""" +2023-04-30,96814,1893,"[\""Headphones\""]",500.08,"{\""loyalty\"": \""21%\""}",184301,0,"""South America""" +2024-03-22,96815,590,"[\""Wireless Mouse\""]",2116.27,"{\""promo\"": \""9%\""}",93491,0,"""Africa""" +2023-12-28,96816,8748,"[\""Wireless Mouse\""]",2151.16,"{\""loyalty\"": \""6%\""}",226936,0,"""Africa""" +2024-10-07,96817,9773,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",4667.42,"{\""promo\"": \""19%\""}",25917,1,"""North America""" +2024-10-16,96818,6998,"[\""Keyboard\"", \""Headphones\""]",3584.79,{},264518,1,"""South America""" +2024-08-10,96819,6844,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3778.68,{},169558,1,"""North America""" +2024-04-17,96820,153,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",1119.48,"{\""loyalty\"": \""24%\""}",7407,1,"""South America""" +2024-04-11,96821,4938,"[\""Keyboard\"", \""Phone\""]",4928.99,{},228403,0,"""South America""" +2024-03-06,96822,1311,"[\""Tablet\"", \""Wireless Mouse\""]",3391.84,{},222967,0,"""North America""" +2024-03-01,96823,1666,"[\""Phone\"", \""Keyboard\""]",743.62,{},140266,0,"""Africa""" +2023-02-22,96824,885,"[\""Headphones\"", \""Laptop\""]",4452.73,{},15661,0,"""North America""" +2023-06-24,96825,2255,"[\""Monitor\""]",4822.65,{},10083,1,"""Europe""" +2023-03-15,96826,8310,"[\""Tablet\"", \""Laptop\""]",383.03,{},59651,0,"""North America""" +2024-01-26,96827,8954,"[\""Headphones\"", \""Phone\""]",2587.9,"{\""loyalty\"": \""26%\""}",229046,0,"""Asia""" +2024-03-30,96828,8498,"[\""Keyboard\"", \""Tablet\""]",2239.71,"{\""promo\"": \""6%\""}",8572,0,"""Europe""" +2023-09-11,96829,8092,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2316.26,{},292312,0,"""North America""" +2024-12-22,96830,1027,"[\""Headphones\""]",1823.16,{},295811,1,"""Africa""" +2023-12-23,96831,3862,"[\""Headphones\"", \""Keyboard\""]",739.99,"{\""seasonal\"": \""21%\""}",183974,0,"""North America""" +2024-10-26,96832,2317,"[\""Phone\""]",3020.58,"{\"": \""16%\""}",154604,1,"""Europe""" +2024-07-30,96833,1374,"[\""Laptop\"", \""Tablet\""]",874.16,{},238121,0,"""Europe""" +2023-12-11,96834,6649,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",3883.52,{},66158,0,"""Asia""" +2023-10-06,96835,77,"[\""Charger\""]",361.38,{},254052,0,"""Europe""" +2023-05-23,96836,685,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3085.49,"{\""seasonal\"": \""9%\""}",222053,1,"""South America""" +2024-03-05,96837,456,"[\""Phone\"", \""Monitor\""]",4908.8,{},81525,0,"""Asia""" +2024-03-17,96838,4761,"[\""Keyboard\""]",1732.98,{},154598,0,"""Africa""" +2023-10-14,96839,7738,"[\""Tablet\""]",4734.82,"{\""promo\"": \""11%\""}",33844,0,"""Asia""" +2023-12-23,96840,6303,"[\""Headphones\""]",4298.6,{},96430,1,"""Asia""" +2024-11-11,96841,7155,"[\""Laptop\""]",892.8,{},209495,0,"""South America""" +2023-12-09,96842,9460,"[\""Monitor\"", \""Charger\""]",4264.74,"{\""promo\"": \""27%\""}",100586,1,"""South America""" +2023-12-31,96843,9654,"[\""Keyboard\""]",1274.3,{},172759,0,"""Europe""" +2023-12-27,96844,7436,"[\""Monitor\"", \""Phone\""]",3793.54,"{\""loyalty\"": \""14%\""}",49549,0,"""Europe""" +2024-03-25,96845,5001,"[\""Charger\"", \""Keyboard\""]",3959.74,{},240979,0,"""Asia""" +2023-11-28,96846,9653,"[\""Headphones\"", \""Laptop\"", \""Wireless Mouse\""]",1567.9,{},259071,0,"""South America""" +2024-05-18,96847,9748,"[\""Keyboard\""]",714.05,{},64274,0,"""Asia""" +2023-09-27,96848,882,"[\""Keyboard\""]",2023.64,{},190304,1,"""North America""" +2024-07-25,96849,6734,"[\""Keyboard\"", \""Headphones\""]",633.05,{},68325,1,"""North America""" +2024-02-26,96850,9698,"[\""Headphones\"", \""Charger\""]",977.27,{},240700,1,"""Africa""" +2024-08-26,96851,2620,"[\""Tablet\"", \""Wireless Mouse\""]",4613.52,"{\"": \""26%\""}",4849,0,"""Africa""" +2023-10-13,96852,788,"[\""Phone\""]",2526.37,"{\""seasonal\"": \""13%\""}",234836,0,"""Africa""" +2023-02-03,96853,4192,"[\""Laptop\""]",2568.74,{},106973,0,"""South America""" +2024-01-23,96854,3764,"[\""Monitor\"", \""Phone\""]",671.21,"{\""seasonal\"": \""22%\""}",269031,1,"""Asia""" +2023-10-13,96855,8973,"[\""Phone\"", \""Headphones\""]",2678.85,"{\""promo\"": \""22%\""}",183096,1,"""North America""" +2024-06-03,96856,4307,"[\""Tablet\"", \""Headphones\""]",1304.43,"{\""loyalty\"": \""23%\""}",177729,0,"""Africa""" +2024-06-25,96857,6558,"[\""Phone\""]",2182.28,"{\""promo\"": \""10%\""}",288407,0,"""South America""" +2023-04-09,96858,6769,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",1516.46,"{\"": \""22%\""}",228459,0,"""Europe""" +2024-02-13,96859,8130,"[\""Charger\"", \""Keyboard\""]",2793.45,"{\""seasonal\"": \""7%\""}",291201,0,"""Asia""" +2023-05-18,96860,9285,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",949.44,"{\""seasonal\"": \""12%\""}",6478,0,"""North America""" +2023-02-04,96861,4298,"[\""Wireless Mouse\""]",1614.84,"{\""loyalty\"": \""27%\""}",200723,0,"""Africa""" +2024-06-04,96862,533,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",2463.7,{},197910,0,"""South America""" +2024-07-25,96863,2679,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",127.79,{},161183,1,"""Asia""" +2023-06-05,96864,6567,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1248.78,"{\""promo\"": \""17%\""}",248509,1,"""Asia""" +2023-10-09,96865,8137,"[\""Tablet\""]",2627.97,"{\"": \""18%\""}",295123,0,"""Europe""" +2023-10-18,96866,4936,"[\""Monitor\"", \""Charger\""]",4802.89,{},251075,1,"""Europe""" +2023-12-29,96867,6710,"[\""Headphones\"", \""Keyboard\""]",1526.04,{},147996,1,"""Europe""" +2024-10-12,96868,5344,"[\""Laptop\"", \""Phone\""]",2938.65,{},36629,1,"""Europe""" +2023-04-03,96869,9797,"[\""Keyboard\""]",3404.56,{},35065,1,"""Africa""" +2023-11-10,96870,3208,"[\""Phone\""]",858.06,{},82914,0,"""South America""" +2024-10-24,96871,5704,"[\""Monitor\""]",3022.42,{},292652,0,"""South America""" +2024-11-28,96872,897,"[\""Tablet\""]",3512.87,{},243686,0,"""Africa""" +2023-12-06,96873,955,"[\""Monitor\""]",1595.75,{},174191,1,"""Europe""" +2023-11-07,96874,4783,"[\""Tablet\"", \""Laptop\""]",2051.7,{},72075,1,"""South America""" +2024-02-20,96875,1288,"[\""Keyboard\""]",2805.56,{},164171,1,"""North America""" +2023-02-15,96876,8278,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",840.95,"{\""loyalty\"": \""11%\""}",284285,0,"""Europe""" +2023-12-17,96877,2697,"[\""Charger\"", \""Keyboard\""]",1985.17,"{\"": \""9%\""}",99940,0,"""Europe""" +2024-04-25,96878,2538,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",3769.97,{},15175,1,"""South America""" +2024-06-08,96879,5868,"[\""Monitor\""]",956.87,{},230168,1,"""South America""" +2023-06-03,96880,2488,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",1604.84,{},13430,1,"""North America""" +2023-05-13,96881,5739,"[\""Headphones\"", \""Monitor\""]",1582.63,{},117849,1,"""Asia""" +2023-11-01,96882,2275,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",2231.9,"{\""seasonal\"": \""26%\""}",188837,0,"""Asia""" +2024-09-03,96883,4003,"[\""Charger\""]",2559.27,"{\""loyalty\"": \""24%\""}",153618,1,"""Europe""" +2023-02-26,96884,6916,"[\""Wireless Mouse\"", \""Phone\""]",661.91,{},268079,1,"""Europe""" +2024-08-14,96885,6593,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3088.09,"{\"": \""16%\""}",152324,1,"""Europe""" +2023-11-10,96886,6800,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",4942.48,{},139211,0,"""North America""" +2023-07-17,96887,1287,"[\""Laptop\""]",2744.85,"{\""loyalty\"": \""20%\""}",136981,0,"""North America""" +2023-05-22,96888,2064,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",1610.22,{},273941,0,"""Europe""" +2024-04-10,96889,7356,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",2227.45,{},232344,0,"""Asia""" +2023-12-06,96890,1607,"[\""Wireless Mouse\"", \""Charger\""]",1266.39,{},174527,1,"""North America""" +2024-04-13,96891,2694,"[\""Charger\""]",4135.31,"{\""promo\"": \""23%\""}",149642,0,"""South America""" +2023-03-27,96892,8811,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4204.55,"{\""promo\"": \""6%\""}",55141,0,"""North America""" +2023-11-19,96893,7050,"[\""Phone\""]",3391.47,{},174206,0,"""Asia""" +2024-11-22,96894,8324,"[\""Monitor\"", \""Tablet\""]",354.27,{},202123,0,"""Asia""" +2023-04-06,96895,5167,"[\""Monitor\""]",2482.53,{},190088,0,"""North America""" +2023-06-01,96896,9365,"[\""Keyboard\"", \""Phone\""]",4950.65,"{\""seasonal\"": \""20%\""}",111442,1,"""Africa""" +2023-05-02,96897,8755,"[\""Monitor\"", \""Laptop\""]",2701.08,"{\""promo\"": \""27%\""}",74075,0,"""Africa""" +2024-05-16,96898,4421,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",4510.69,"{\""loyalty\"": \""7%\""}",173689,0,"""North America""" +2024-05-31,96899,4195,"[\""Keyboard\""]",4759.94,"{\""promo\"": \""20%\""}",87500,1,"""Asia""" +2024-05-12,96900,7137,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2212.27,"{\""loyalty\"": \""28%\""}",85608,0,"""Africa""" +2024-12-31,96901,3608,"[\""Laptop\"", \""Keyboard\""]",2270.06,"{\"": \""14%\""}",78240,0,"""North America""" +2023-04-09,96902,5728,"[\""Headphones\"", \""Laptop\""]",2353.98,"{\"": \""20%\""}",275737,0,"""Asia""" +2023-12-03,96903,3475,"[\""Laptop\"", \""Keyboard\""]",4120.73,"{\""seasonal\"": \""17%\""}",6291,0,"""South America""" +2023-02-05,96904,1623,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",3176.4,{},62685,0,"""North America""" +2023-06-24,96905,6408,"[\""Headphones\""]",3560.2,"{\"": \""11%\""}",193952,1,"""South America""" +2024-06-30,96906,9487,"[\""Keyboard\"", \""Charger\""]",3148.89,{},145118,1,"""Europe""" +2024-09-27,96907,8051,"[\""Headphones\""]",3460.24,"{\""seasonal\"": \""16%\""}",131184,0,"""Europe""" +2023-09-25,96908,8021,"[\""Tablet\"", \""Monitor\""]",323.32,"{\"": \""12%\""}",132770,0,"""South America""" +2024-08-03,96909,9608,"[\""Keyboard\""]",2217.41,{},31144,1,"""North America""" +2023-07-15,96910,2132,"[\""Keyboard\"", \""Headphones\""]",4417.44,{},226820,0,"""South America""" +2024-03-19,96911,8956,"[\""Laptop\""]",4001.96,"{\"": \""15%\""}",243292,0,"""North America""" +2024-11-22,96912,3037,"[\""Monitor\"", \""Keyboard\""]",4100.89,{},122947,1,"""Asia""" +2024-04-09,96913,230,"[\""Charger\""]",404.62,{},265704,0,"""Europe""" +2024-09-11,96914,9968,"[\""Laptop\""]",4781.24,{},246842,1,"""Europe""" +2024-12-07,96915,3308,"[\""Charger\""]",4908.55,{},68746,1,"""South America""" +2023-10-18,96916,403,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",537.5,"{\""loyalty\"": \""5%\""}",2879,1,"""Asia""" +2024-04-12,96917,8125,"[\""Keyboard\""]",3625.3,{},250935,0,"""Africa""" +2023-12-22,96918,4656,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3855.0,{},205325,1,"""Europe""" +2023-04-05,96919,7981,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",921.24,"{\""promo\"": \""29%\""}",128466,1,"""North America""" +2024-09-06,96920,1525,"[\""Keyboard\"", \""Laptop\""]",4992.54,{},299625,0,"""South America""" +2024-03-03,96921,1124,"[\""Phone\""]",3976.97,"{\""loyalty\"": \""22%\""}",185452,1,"""North America""" +2024-08-02,96922,1618,"[\""Tablet\""]",1245.67,"{\""loyalty\"": \""13%\""}",248190,0,"""North America""" +2023-07-29,96923,3917,"[\""Monitor\""]",3666.73,{},204624,0,"""South America""" +2023-01-07,96924,5408,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",352.16,{},249140,1,"""Africa""" +2023-08-10,96925,4343,"[\""Keyboard\""]",220.47,{},1857,0,"""Europe""" +2024-02-15,96926,9439,"[\""Keyboard\""]",2414.25,{},122572,1,"""Asia""" +2023-10-10,96927,5693,"[\""Keyboard\""]",2859.6,"{\"": \""23%\""}",208167,1,"""Africa""" +2023-02-18,96928,9157,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",1299.88,{},297116,1,"""Europe""" +2023-05-26,96929,8662,"[\""Wireless Mouse\"", \""Laptop\""]",914.22,{},157039,0,"""North America""" +2024-04-14,96930,3881,"[\""Keyboard\"", \""Charger\"", \""Headphones\""]",2720.97,{},71927,1,"""Africa""" +2024-06-23,96931,4387,"[\""Headphones\"", \""Charger\""]",1316.94,"{\""loyalty\"": \""23%\""}",187721,0,"""North America""" +2023-02-05,96932,3344,"[\""Keyboard\""]",1969.9,{},268512,0,"""North America""" +2023-06-03,96933,5900,"[\""Wireless Mouse\""]",2208.99,"{\""promo\"": \""10%\""}",208276,1,"""Asia""" +2024-09-08,96934,8216,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2944.21,"{\""promo\"": \""17%\""}",103452,0,"""Asia""" +2023-05-02,96935,6152,"[\""Monitor\""]",2035.43,{},63434,1,"""Africa""" +2023-03-14,96936,1998,"[\""Charger\""]",569.26,{},145291,0,"""Africa""" +2024-11-06,96937,1008,"[\""Monitor\""]",1159.02,"{\""loyalty\"": \""14%\""}",114497,1,"""Asia""" +2024-12-03,96938,5073,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",1824.88,"{\""promo\"": \""17%\""}",55904,1,"""Europe""" +2023-11-24,96939,9179,"[\""Tablet\"", \""Charger\""]",2816.26,{},11427,0,"""South America""" +2024-03-20,96940,2237,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",2918.83,"{\""seasonal\"": \""19%\""}",289172,0,"""South America""" +2024-09-15,96941,3548,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",3531.96,{},261916,1,"""North America""" +2023-06-13,96942,1463,"[\""Headphones\""]",3180.89,{},109724,0,"""South America""" +2023-07-26,96943,8327,"[\""Wireless Mouse\"", \""Laptop\""]",2994.44,"{\"": \""20%\""}",220114,1,"""Asia""" +2024-09-13,96944,8565,"[\""Phone\""]",677.62,{},246036,0,"""South America""" +2023-12-30,96945,8476,"[\""Charger\""]",3410.71,"{\""seasonal\"": \""26%\""}",243385,1,"""Europe""" +2024-05-26,96946,862,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",1929.58,{},84242,1,"""South America""" +2023-02-26,96947,4385,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2322.83,"{\""promo\"": \""6%\""}",187226,1,"""North America""" +2023-12-10,96948,3932,"[\""Charger\""]",969.03,"{\""seasonal\"": \""6%\""}",180327,0,"""North America""" +2024-04-12,96949,313,"[\""Laptop\"", \""Headphones\""]",174.81,"{\""seasonal\"": \""9%\""}",76969,1,"""Europe""" +2023-02-09,96950,3144,"[\""Charger\"", \""Wireless Mouse\""]",1215.07,"{\""seasonal\"": \""21%\""}",250659,1,"""Asia""" +2024-10-15,96951,6286,"[\""Keyboard\"", \""Laptop\""]",2307.45,"{\""promo\"": \""18%\""}",79213,0,"""Asia""" +2023-05-20,96952,5523,"[\""Phone\""]",4078.44,{},131602,1,"""Europe""" +2023-11-10,96953,6018,"[\""Monitor\"", \""Keyboard\""]",319.52,"{\""loyalty\"": \""27%\""}",153516,0,"""North America""" +2024-03-01,96954,408,"[\""Phone\"", \""Monitor\""]",367.67,"{\""promo\"": \""13%\""}",78565,0,"""Asia""" +2023-08-24,96955,1565,"[\""Charger\"", \""Laptop\""]",4657.63,{},243292,1,"""North America""" +2023-10-21,96956,26,"[\""Wireless Mouse\""]",1432.65,{},95015,1,"""North America""" +2023-10-15,96957,4830,"[\""Phone\"", \""Tablet\""]",500.22,{},185627,1,"""Africa""" +2024-07-30,96958,5012,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",950.34,"{\""seasonal\"": \""20%\""}",201268,0,"""Europe""" +2023-09-20,96959,847,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",1592.82,"{\""seasonal\"": \""30%\""}",249951,0,"""Asia""" +2024-12-13,96960,3682,"[\""Headphones\"", \""Wireless Mouse\""]",1324.74,{},208223,0,"""North America""" +2024-09-18,96961,1160,"[\""Laptop\""]",3753.51,"{\"": \""7%\""}",240867,1,"""South America""" +2023-02-25,96962,9636,"[\""Headphones\""]",1982.37,{},80070,0,"""North America""" +2024-07-20,96963,9357,"[\""Headphones\"", \""Wireless Mouse\""]",2110.2,{},8304,1,"""Europe""" +2024-05-08,96964,9728,"[\""Keyboard\""]",1200.5,{},263640,0,"""North America""" +2024-08-31,96965,2547,"[\""Charger\"", \""Laptop\""]",2560.39,"{\"": \""18%\""}",46069,0,"""Asia""" +2024-08-02,96966,6045,"[\""Monitor\""]",3256.15,{},176047,0,"""South America""" +2023-01-29,96967,6286,"[\""Charger\"", \""Headphones\""]",3657.53,"{\"": \""28%\""}",209918,0,"""North America""" +2024-10-16,96968,2429,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2193.08,{},169912,1,"""Africa""" +2023-08-13,96969,1319,"[\""Phone\"", \""Charger\""]",814.33,{},186252,1,"""North America""" +2024-02-08,96970,722,"[\""Charger\"", \""Phone\""]",1237.88,"{\""seasonal\"": \""30%\""}",93014,1,"""South America""" +2023-06-02,96971,3115,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",3347.04,{},296105,0,"""South America""" +2023-10-04,96972,9478,"[\""Tablet\"", \""Charger\""]",3460.53,"{\"": \""28%\""}",103367,0,"""North America""" +2023-04-03,96973,9274,"[\""Tablet\"", \""Keyboard\""]",182.06,"{\"": \""9%\""}",75008,0,"""South America""" +2024-02-15,96974,7559,"[\""Phone\""]",2267.67,"{\""promo\"": \""10%\""}",203111,0,"""North America""" +2023-09-19,96975,9292,"[\""Headphones\""]",1578.97,"{\""promo\"": \""12%\""}",148687,1,"""North America""" +2023-12-09,96976,7021,"[\""Laptop\"", \""Charger\""]",3513.64,"{\"": \""25%\""}",121578,0,"""Europe""" +2024-07-04,96977,6444,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",4652.01,"{\"": \""9%\""}",150875,0,"""North America""" +2023-03-06,96978,6747,"[\""Phone\"", \""Keyboard\""]",1277.86,{},186851,0,"""North America""" +2024-09-28,96979,4051,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3429.26,{},15786,1,"""Asia""" +2023-04-24,96980,7702,"[\""Wireless Mouse\"", \""Tablet\""]",2279.16,"{\"": \""7%\""}",171179,1,"""South America""" +2023-07-25,96981,7329,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",3878.75,"{\""seasonal\"": \""28%\""}",102179,1,"""Africa""" +2024-09-24,96982,5400,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",3321.96,{},102707,0,"""Africa""" +2023-04-10,96983,2789,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",1080.77,"{\"": \""18%\""}",239655,0,"""North America""" +2023-01-18,96984,9927,"[\""Wireless Mouse\""]",409.94,{},107331,0,"""Asia""" +2023-11-10,96985,4105,"[\""Monitor\"", \""Wireless Mouse\""]",3004.72,{},188459,1,"""Asia""" +2024-06-07,96986,192,"[\""Keyboard\"", \""Monitor\""]",1464.29,"{\"": \""10%\""}",185616,0,"""South America""" +2023-05-11,96987,1497,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3622.4,{},299149,0,"""South America""" +2024-09-14,96988,3169,"[\""Keyboard\"", \""Phone\""]",332.9,"{\""promo\"": \""24%\""}",273548,0,"""Asia""" +2024-12-19,96989,6277,"[\""Headphones\""]",284.64,"{\""loyalty\"": \""15%\""}",229194,0,"""North America""" +2024-04-11,96990,4620,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",783.77,{},271809,1,"""North America""" +2024-05-24,96991,1388,"[\""Laptop\"", \""Phone\""]",1312.06,{},208185,1,"""Europe""" +2024-01-21,96992,5069,"[\""Keyboard\"", \""Wireless Mouse\""]",3041.17,"{\""promo\"": \""5%\""}",199145,1,"""Europe""" +2023-08-31,96993,9496,"[\""Laptop\"", \""Keyboard\""]",3787.55,"{\""promo\"": \""17%\""}",104677,1,"""Africa""" +2024-05-26,96994,6183,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",3132.48,{},133238,1,"""Asia""" +2023-03-30,96995,260,"[\""Charger\""]",1080.72,{},145378,0,"""Europe""" +2023-07-08,96996,7273,"[\""Laptop\"", \""Keyboard\""]",3626.23,"{\"": \""25%\""}",59635,1,"""Africa""" +2024-12-30,96997,2970,"[\""Tablet\""]",1454.87,{},260612,1,"""Europe""" +2023-07-03,96998,1912,"[\""Monitor\""]",768.12,"{\""loyalty\"": \""17%\""}",223695,0,"""Africa""" +2023-03-28,96999,4440,"[\""Charger\""]",3684.66,{},122122,1,"""Europe""" +2024-10-09,97000,9262,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",736.53,"{\""seasonal\"": \""20%\""}",83042,0,"""North America""" +2024-11-08,97001,8826,"[\""Keyboard\"", \""Laptop\""]",2202.14,{},296309,1,"""South America""" +2023-07-14,97002,2735,"[\""Tablet\""]",122.01,{},145982,0,"""Asia""" +2023-07-16,97003,6979,"[\""Charger\"", \""Monitor\"", \""Phone\""]",4099.53,{},208436,0,"""South America""" +2023-09-14,97004,2801,"[\""Charger\"", \""Wireless Mouse\""]",4459.09,"{\""seasonal\"": \""20%\""}",83887,1,"""Asia""" +2024-04-27,97005,3754,"[\""Monitor\"", \""Tablet\""]",368.87,{},187442,0,"""Africa""" +2024-03-11,97006,6085,"[\""Wireless Mouse\"", \""Headphones\""]",204.28,{},282502,1,"""Africa""" +2024-12-21,97007,3637,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4725.05,"{\""loyalty\"": \""23%\""}",152642,1,"""North America""" +2024-10-30,97008,5505,"[\""Headphones\""]",2970.69,"{\"": \""16%\""}",29194,1,"""Africa""" +2024-07-19,97009,9241,"[\""Wireless Mouse\""]",54.23,"{\""loyalty\"": \""24%\""}",130390,0,"""South America""" +2024-04-02,97010,9979,"[\""Headphones\"", \""Keyboard\""]",2360.46,{},75883,1,"""South America""" +2024-11-07,97011,7154,"[\""Charger\"", \""Wireless Mouse\""]",1329.41,{},88385,1,"""North America""" +2024-03-20,97012,9566,"[\""Laptop\"", \""Monitor\""]",784.08,{},275178,0,"""Europe""" +2023-09-05,97013,1054,"[\""Phone\"", \""Keyboard\""]",4319.15,"{\""seasonal\"": \""23%\""}",52742,1,"""Europe""" +2023-09-18,97014,5930,"[\""Keyboard\"", \""Wireless Mouse\""]",64.79,{},111179,0,"""Africa""" +2024-08-22,97015,8270,"[\""Charger\""]",4325.61,{},258825,1,"""North America""" +2023-08-06,97016,2275,"[\""Tablet\"", \""Monitor\""]",1047.69,{},102717,0,"""Africa""" +2023-08-16,97017,1065,"[\""Tablet\""]",573.95,"{\""seasonal\"": \""17%\""}",18223,0,"""Europe""" +2023-01-16,97018,5336,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4631.64,{},28410,1,"""South America""" +2023-01-10,97019,1861,"[\""Monitor\"", \""Tablet\""]",1746.46,{},248770,0,"""Africa""" +2024-02-12,97020,5628,"[\""Wireless Mouse\"", \""Tablet\""]",4079.3,{},271747,1,"""South America""" +2024-02-13,97021,8062,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",4311.77,{},65308,0,"""North America""" +2024-05-14,97022,3000,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3754.81,{},47365,1,"""Africa""" +2024-06-18,97023,6672,"[\""Monitor\""]",3458.72,{},84862,0,"""Africa""" +2023-02-08,97024,8111,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",2942.19,"{\"": \""8%\""}",201897,1,"""South America""" +2023-01-18,97025,8068,"[\""Charger\""]",1433.74,"{\"": \""14%\""}",151840,0,"""North America""" +2023-09-17,97026,8050,"[\""Keyboard\""]",1038.23,{},117241,0,"""Asia""" +2024-08-28,97027,8050,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4136.83,"{\"": \""28%\""}",141012,1,"""Europe""" +2023-05-06,97028,6746,"[\""Tablet\""]",1215.45,{},275962,0,"""Africa""" +2023-07-13,97029,733,"[\""Laptop\"", \""Keyboard\""]",4536.15,{},127980,1,"""North America""" +2024-01-17,97030,7601,"[\""Keyboard\""]",4725.57,{},199856,1,"""Africa""" +2024-08-19,97031,7493,"[\""Tablet\""]",4931.99,{},238849,0,"""Africa""" +2023-09-26,97032,22,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",3074.87,"{\"": \""13%\""}",263132,1,"""North America""" +2023-07-08,97033,7483,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2616.34,{},23653,0,"""Africa""" +2024-10-11,97034,4072,"[\""Phone\"", \""Headphones\""]",1964.96,{},275054,0,"""Europe""" +2023-09-02,97035,4636,"[\""Tablet\"", \""Headphones\""]",1182.68,"{\""loyalty\"": \""21%\""}",97775,1,"""Africa""" +2024-10-03,97036,8070,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",85.79,"{\"": \""12%\""}",96409,1,"""North America""" +2023-05-23,97037,9894,"[\""Monitor\""]",3410.86,{},233097,1,"""Europe""" +2024-04-30,97038,7404,"[\""Monitor\""]",3382.1,{},55215,1,"""Asia""" +2023-11-15,97039,8533,"[\""Keyboard\"", \""Laptop\""]",4433.87,{},138484,1,"""South America""" +2023-11-14,97040,8145,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",3510.81,{},110245,0,"""Europe""" +2024-01-12,97041,697,"[\""Keyboard\"", \""Laptop\""]",4454.39,{},267430,1,"""North America""" +2024-09-07,97042,7804,"[\""Wireless Mouse\""]",4822.08,"{\""seasonal\"": \""30%\""}",74782,1,"""Europe""" +2023-02-05,97043,6119,"[\""Laptop\""]",1943.79,{},3325,1,"""South America""" +2024-12-17,97044,6091,"[\""Wireless Mouse\""]",4885.2,"{\""loyalty\"": \""10%\""}",298289,1,"""Asia""" +2023-01-20,97045,9241,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2236.1,"{\""promo\"": \""7%\""}",55383,0,"""South America""" +2023-01-30,97046,7740,"[\""Keyboard\""]",1109.87,"{\""loyalty\"": \""27%\""}",171360,0,"""North America""" +2024-06-17,97047,9378,"[\""Headphones\""]",3588.0,"{\""seasonal\"": \""16%\""}",127731,0,"""Africa""" +2024-09-29,97048,5474,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",1181.88,{},297813,1,"""Europe""" +2024-08-22,97049,6449,"[\""Laptop\"", \""Headphones\""]",2986.09,{},191414,0,"""Europe""" +2023-12-11,97050,1871,"[\""Phone\"", \""Headphones\""]",1762.13,"{\""seasonal\"": \""25%\""}",72582,0,"""Asia""" +2024-09-07,97051,1677,"[\""Phone\"", \""Headphones\""]",3184.87,{},244462,0,"""South America""" +2024-08-24,97052,3149,"[\""Charger\""]",4903.13,"{\""promo\"": \""11%\""}",131940,0,"""North America""" +2024-05-22,97053,3173,"[\""Tablet\"", \""Charger\""]",2242.54,{},268637,0,"""Asia""" +2023-11-12,97054,1950,"[\""Tablet\""]",2353.18,{},66846,1,"""North America""" +2024-08-22,97055,5151,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",4601.28,{},30460,0,"""Africa""" +2024-03-08,97056,9184,"[\""Monitor\"", \""Tablet\""]",4255.64,{},283746,1,"""Europe""" +2023-09-03,97057,8678,"[\""Tablet\"", \""Laptop\""]",1007.88,"{\""promo\"": \""9%\""}",44637,0,"""Africa""" +2024-09-18,97058,3637,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",374.29,"{\""loyalty\"": \""9%\""}",215179,0,"""Asia""" +2023-04-24,97059,8142,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4490.7,{},157989,1,"""North America""" +2024-06-24,97060,3058,"[\""Charger\"", \""Headphones\""]",2444.34,"{\""loyalty\"": \""16%\""}",75188,1,"""South America""" +2023-05-01,97061,9869,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",1624.55,{},119665,1,"""Europe""" +2024-10-16,97062,7918,"[\""Tablet\""]",3098.13,{},230513,1,"""Asia""" +2024-01-05,97063,7978,"[\""Keyboard\"", \""Charger\""]",2797.62,"{\""promo\"": \""25%\""}",265150,1,"""Africa""" +2023-09-27,97064,3214,"[\""Charger\"", \""Laptop\""]",2079.48,{},182211,0,"""Europe""" +2023-04-20,97065,1393,"[\""Wireless Mouse\""]",4462.16,"{\""seasonal\"": \""23%\""}",271225,1,"""North America""" +2024-09-26,97066,2111,"[\""Laptop\""]",2266.68,"{\""loyalty\"": \""9%\""}",135198,0,"""Europe""" +2024-03-06,97067,7465,"[\""Laptop\"", \""Charger\""]",4084.48,{},162833,1,"""South America""" +2024-03-16,97068,590,"[\""Charger\"", \""Laptop\""]",2975.79,"{\""promo\"": \""19%\""}",123601,1,"""Asia""" +2023-10-18,97069,7018,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3506.34,{},159804,1,"""Asia""" +2023-12-27,97070,3999,"[\""Wireless Mouse\"", \""Keyboard\""]",4667.49,"{\"": \""20%\""}",287552,1,"""Africa""" +2023-01-31,97071,8150,"[\""Laptop\"", \""Wireless Mouse\""]",2119.97,{},189595,0,"""Africa""" +2023-04-21,97072,2353,"[\""Laptop\"", \""Phone\""]",740.46,{},275277,0,"""South America""" +2023-10-06,97073,6555,"[\""Monitor\""]",677.56,{},28947,0,"""South America""" +2024-04-26,97074,800,"[\""Monitor\""]",732.84,{},40497,1,"""Europe""" +2024-10-04,97075,6410,"[\""Phone\"", \""Headphones\""]",4195.56,"{\"": \""8%\""}",226373,0,"""Europe""" +2023-02-10,97076,4590,"[\""Keyboard\"", \""Charger\""]",3297.68,"{\""seasonal\"": \""19%\""}",5908,0,"""Asia""" +2024-06-21,97077,4155,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1630.45,{},16814,1,"""South America""" +2024-08-27,97078,5918,"[\""Headphones\"", \""Tablet\""]",4930.43,{},257557,1,"""North America""" +2024-06-23,97079,5950,"[\""Monitor\""]",4857.74,"{\"": \""7%\""}",8485,0,"""South America""" +2024-10-19,97080,7928,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",1350.12,{},95879,1,"""Africa""" +2023-11-09,97081,5713,"[\""Laptop\""]",4298.39,{},278216,0,"""Africa""" +2023-05-15,97082,610,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3132.55,"{\""promo\"": \""6%\""}",178079,0,"""Asia""" +2023-03-03,97083,7964,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",266.31,{},120503,1,"""Asia""" +2024-12-09,97084,2392,"[\""Tablet\"", \""Phone\""]",3652.98,{},223849,0,"""South America""" +2024-02-17,97085,3172,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",190.47,{},248242,1,"""Asia""" +2024-11-18,97086,970,"[\""Tablet\""]",4778.24,"{\"": \""12%\""}",121696,0,"""North America""" +2023-04-21,97087,5031,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4418.48,"{\""promo\"": \""24%\""}",290395,1,"""Africa""" +2024-08-10,97088,1234,"[\""Tablet\""]",4079.28,"{\"": \""17%\""}",215623,0,"""South America""" +2023-11-17,97089,108,"[\""Wireless Mouse\""]",2649.19,"{\""seasonal\"": \""25%\""}",87123,0,"""Europe""" +2023-04-18,97090,2825,"[\""Tablet\""]",2954.35,"{\""promo\"": \""17%\""}",143606,0,"""South America""" +2024-06-16,97091,922,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",920.11,{},135412,0,"""North America""" +2023-10-20,97092,9518,"[\""Wireless Mouse\""]",3655.18,"{\""seasonal\"": \""17%\""}",85230,1,"""South America""" +2023-11-13,97093,501,"[\""Monitor\"", \""Charger\""]",3286.78,{},257215,1,"""Europe""" +2024-10-27,97094,6504,"[\""Monitor\""]",103.25,{},193716,1,"""North America""" +2023-11-24,97095,4826,"[\""Phone\"", \""Charger\""]",4389.84,"{\""loyalty\"": \""28%\""}",131060,0,"""Europe""" +2023-11-21,97096,4004,"[\""Laptop\"", \""Headphones\""]",2197.44,{},279644,0,"""South America""" +2023-10-26,97097,7921,"[\""Keyboard\"", \""Monitor\""]",2276.96,"{\""seasonal\"": \""22%\""}",90737,1,"""Africa""" +2023-08-11,97098,6470,"[\""Monitor\"", \""Headphones\""]",2087.47,{},53410,0,"""Africa""" +2024-08-04,97099,380,"[\""Charger\""]",4818.08,{},293492,0,"""Africa""" +2024-03-25,97100,4885,"[\""Charger\""]",4695.4,{},198413,0,"""South America""" +2023-12-17,97101,3436,"[\""Monitor\""]",2698.32,{},19211,1,"""Asia""" +2023-09-19,97102,3791,"[\""Charger\"", \""Wireless Mouse\""]",250.6,{},191835,0,"""Africa""" +2024-10-16,97103,4336,"[\""Headphones\""]",973.46,"{\""promo\"": \""29%\""}",98677,0,"""Asia""" +2023-05-13,97104,8072,"[\""Wireless Mouse\"", \""Monitor\""]",4905.65,"{\"": \""28%\""}",181308,1,"""Asia""" +2024-07-18,97105,3890,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",3611.47,{},224025,0,"""Asia""" +2023-08-18,97106,3339,"[\""Wireless Mouse\""]",2196.0,{},60109,0,"""South America""" +2024-11-27,97107,1029,"[\""Charger\""]",98.63,{},265892,0,"""Europe""" +2023-04-10,97108,3041,"[\""Phone\"", \""Monitor\""]",1813.57,{},32605,1,"""Europe""" +2024-05-12,97109,451,"[\""Keyboard\"", \""Wireless Mouse\""]",575.84,"{\""promo\"": \""5%\""}",52566,1,"""North America""" +2024-03-17,97110,2471,"[\""Wireless Mouse\""]",951.18,"{\""loyalty\"": \""18%\""}",170670,0,"""South America""" +2024-07-02,97111,2594,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",4879.78,"{\""seasonal\"": \""5%\""}",247202,0,"""Africa""" +2023-03-13,97112,4597,"[\""Headphones\""]",3743.49,{},22752,0,"""Europe""" +2023-10-09,97113,6894,"[\""Laptop\"", \""Keyboard\""]",1602.85,"{\""seasonal\"": \""18%\""}",10995,1,"""Africa""" +2024-11-10,97114,743,"[\""Phone\"", \""Headphones\""]",262.96,"{\""seasonal\"": \""27%\""}",184123,1,"""Asia""" +2024-09-08,97115,1746,"[\""Laptop\""]",2564.72,{},96925,1,"""South America""" +2023-04-19,97116,4459,"[\""Wireless Mouse\"", \""Monitor\""]",476.54,{},124389,0,"""North America""" +2023-11-30,97117,6418,"[\""Laptop\"", \""Phone\""]",2284.17,"{\""loyalty\"": \""11%\""}",86760,0,"""Asia""" +2024-09-10,97118,2471,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",1535.74,{},64968,1,"""Europe""" +2024-09-18,97119,536,"[\""Phone\""]",894.8,"{\"": \""8%\""}",126622,1,"""North America""" +2024-11-30,97120,3662,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4974.99,{},112639,1,"""Asia""" +2024-12-19,97121,3620,"[\""Phone\""]",1708.81,{},193077,0,"""South America""" +2023-08-28,97122,377,"[\""Phone\"", \""Headphones\""]",1813.74,"{\""seasonal\"": \""21%\""}",251344,0,"""Europe""" +2024-12-01,97123,3631,"[\""Keyboard\"", \""Headphones\""]",683.3,{},260665,1,"""North America""" +2023-03-27,97124,3232,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3051.49,{},57442,1,"""Europe""" +2024-04-22,97125,2447,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2724.92,{},51004,1,"""Asia""" +2024-07-30,97126,8023,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",3414.0,{},195021,0,"""North America""" +2024-12-13,97127,212,"[\""Keyboard\""]",4869.78,"{\""seasonal\"": \""26%\""}",104653,0,"""North America""" +2023-02-06,97128,4603,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",4257.82,"{\""loyalty\"": \""21%\""}",80231,1,"""Asia""" +2024-10-26,97129,9352,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3615.41,{},220549,1,"""North America""" +2023-06-18,97130,4679,"[\""Laptop\"", \""Charger\""]",364.69,{},12616,1,"""Africa""" +2023-09-20,97131,9537,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",2184.82,{},237745,1,"""Africa""" +2024-10-05,97132,6420,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",637.81,{},143845,1,"""Asia""" +2024-05-03,97133,4419,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",3401.92,{},76617,1,"""South America""" +2024-03-27,97134,8951,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3839.78,{},105173,1,"""Africa""" +2024-07-28,97135,1333,"[\""Keyboard\"", \""Wireless Mouse\""]",3212.04,{},144720,1,"""Europe""" +2024-03-22,97136,3142,"[\""Headphones\"", \""Tablet\""]",1282.94,{},265629,1,"""Africa""" +2023-01-30,97137,2044,"[\""Keyboard\""]",3321.51,"{\""seasonal\"": \""9%\""}",277991,1,"""North America""" +2023-03-28,97138,4262,"[\""Monitor\"", \""Wireless Mouse\""]",1003.41,{},77317,1,"""South America""" +2024-02-27,97139,4763,"[\""Phone\"", \""Charger\""]",4950.67,"{\""loyalty\"": \""11%\""}",28817,0,"""Asia""" +2023-12-14,97140,7932,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",4158.86,{},139352,1,"""South America""" +2023-07-14,97141,426,"[\""Headphones\"", \""Laptop\""]",4181.43,{},132625,1,"""Africa""" +2023-11-20,97142,4004,"[\""Wireless Mouse\""]",4545.22,"{\"": \""15%\""}",252837,0,"""Europe""" +2024-10-15,97143,6353,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",3495.1,{},163735,0,"""Asia""" +2024-04-19,97144,5025,"[\""Laptop\"", \""Keyboard\""]",712.3,{},206538,1,"""North America""" +2024-11-19,97145,9644,"[\""Tablet\""]",4175.06,"{\""promo\"": \""7%\""}",272684,1,"""Europe""" +2024-11-01,97146,8579,"[\""Monitor\""]",2101.61,"{\""promo\"": \""22%\""}",121042,1,"""South America""" +2023-03-02,97147,6570,"[\""Tablet\""]",3144.01,{},274197,0,"""Asia""" +2024-06-08,97148,492,"[\""Laptop\"", \""Tablet\""]",4554.79,"{\"": \""20%\""}",54578,1,"""South America""" +2024-04-15,97149,6212,"[\""Tablet\""]",4819.2,"{\""seasonal\"": \""12%\""}",282166,0,"""Africa""" +2024-03-26,97150,5024,"[\""Charger\""]",413.57,{},228332,1,"""Europe""" +2023-12-27,97151,9830,"[\""Headphones\""]",4427.45,"{\""promo\"": \""10%\""}",53911,0,"""Asia""" +2024-04-04,97152,104,"[\""Charger\""]",173.63,"{\""seasonal\"": \""7%\""}",6690,1,"""Europe""" +2023-03-29,97153,8535,"[\""Laptop\""]",3163.47,"{\""seasonal\"": \""21%\""}",250255,1,"""Asia""" +2023-10-27,97154,7273,"[\""Wireless Mouse\""]",2314.5,"{\"": \""29%\""}",281188,0,"""Europe""" +2023-03-28,97155,2829,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3768.42,{},47020,0,"""Europe""" +2023-02-08,97156,1359,"[\""Phone\"", \""Charger\""]",2831.97,"{\"": \""23%\""}",196197,1,"""South America""" +2024-08-31,97157,6271,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",3086.11,"{\"": \""15%\""}",113471,1,"""Africa""" +2023-10-02,97158,6341,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",3530.34,{},251024,1,"""Africa""" +2023-09-04,97159,5287,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",2496.93,"{\""seasonal\"": \""10%\""}",14894,0,"""Asia""" +2023-03-24,97160,4132,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",3997.76,{},129443,1,"""Europe""" +2024-01-30,97161,4810,"[\""Laptop\""]",4102.29,{},215741,0,"""South America""" +2024-10-25,97162,8705,"[\""Keyboard\"", \""Phone\""]",1961.16,{},248235,0,"""Asia""" +2023-09-17,97163,8774,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3352.35,{},69130,1,"""Europe""" +2023-08-23,97164,7946,"[\""Monitor\""]",1421.53,{},79579,1,"""South America""" +2024-02-20,97165,6718,"[\""Tablet\"", \""Monitor\""]",2396.8,{},161629,0,"""South America""" +2023-10-09,97166,2004,"[\""Monitor\""]",3780.27,"{\""loyalty\"": \""19%\""}",219644,1,"""Asia""" +2023-02-17,97167,6433,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",4545.69,{},79363,1,"""Africa""" +2024-06-12,97168,6480,"[\""Charger\""]",3157.11,"{\""loyalty\"": \""16%\""}",256540,1,"""Europe""" +2024-09-28,97169,9618,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",1688.27,"{\""loyalty\"": \""16%\""}",106221,1,"""South America""" +2024-12-19,97170,7845,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1376.86,"{\""promo\"": \""9%\""}",7624,1,"""Africa""" +2024-01-14,97171,2645,"[\""Tablet\""]",2978.45,{},125123,1,"""North America""" +2024-05-28,97172,6564,"[\""Laptop\""]",1751.78,"{\""promo\"": \""17%\""}",155281,0,"""Europe""" +2023-10-23,97173,8528,"[\""Wireless Mouse\"", \""Keyboard\""]",2499.95,{},70853,0,"""Europe""" +2024-09-10,97174,961,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1086.0,"{\""seasonal\"": \""27%\""}",194819,1,"""North America""" +2023-05-19,97175,3867,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3901.91,"{\""seasonal\"": \""13%\""}",30008,0,"""Africa""" +2024-09-10,97176,8210,"[\""Keyboard\"", \""Tablet\""]",3884.28,{},265370,0,"""North America""" +2023-06-14,97177,7590,"[\""Tablet\""]",2266.89,"{\""seasonal\"": \""16%\""}",98379,1,"""Africa""" +2024-01-28,97178,3063,"[\""Charger\""]",4623.9,{},239109,0,"""South America""" +2024-07-21,97179,5834,"[\""Monitor\""]",3423.08,"{\""loyalty\"": \""15%\""}",268870,0,"""Europe""" +2023-03-09,97180,2764,"[\""Headphones\""]",4656.67,{},8012,1,"""Europe""" +2023-08-23,97181,7416,"[\""Laptop\""]",3460.47,"{\""promo\"": \""21%\""}",260156,1,"""North America""" +2024-02-27,97182,6841,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",2101.61,{},69936,1,"""North America""" +2023-03-14,97183,1656,"[\""Laptop\""]",1756.2,"{\""loyalty\"": \""28%\""}",239559,1,"""Asia""" +2024-08-02,97184,211,"[\""Keyboard\"", \""Phone\""]",136.73,"{\""loyalty\"": \""25%\""}",5094,1,"""Asia""" +2024-10-08,97185,965,"[\""Charger\"", \""Wireless Mouse\""]",414.96,"{\""seasonal\"": \""6%\""}",284153,0,"""Europe""" +2024-03-08,97186,858,"[\""Phone\"", \""Charger\""]",3392.89,{},246550,1,"""Africa""" +2024-12-04,97187,7917,"[\""Laptop\"", \""Keyboard\""]",1442.9,{},224507,1,"""Africa""" +2023-12-05,97188,8467,"[\""Charger\""]",4805.54,{},56777,1,"""Asia""" +2023-03-31,97189,8047,"[\""Tablet\"", \""Phone\""]",1043.3,{},152691,1,"""Asia""" +2024-04-10,97190,2780,"[\""Tablet\""]",2105.49,"{\""loyalty\"": \""7%\""}",8794,0,"""Africa""" +2023-05-05,97191,2960,"[\""Laptop\""]",3059.62,{},242583,1,"""South America""" +2024-04-15,97192,1628,"[\""Headphones\""]",2762.05,"{\"": \""18%\""}",246219,1,"""South America""" +2023-05-22,97193,6308,"[\""Laptop\""]",584.12,"{\""loyalty\"": \""8%\""}",257447,1,"""North America""" +2023-12-08,97194,7384,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1429.19,{},202979,1,"""South America""" +2023-03-18,97195,5767,"[\""Headphones\"", \""Tablet\""]",3360.87,{},93340,1,"""Asia""" +2024-08-08,97196,5231,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",3587.96,"{\""promo\"": \""28%\""}",209962,1,"""Asia""" +2024-11-24,97197,953,"[\""Laptop\"", \""Wireless Mouse\""]",722.75,{},209234,0,"""Europe""" +2024-04-30,97198,3951,"[\""Monitor\""]",1174.1,"{\""seasonal\"": \""19%\""}",53295,1,"""South America""" +2024-11-29,97199,6851,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",385.51,{},292874,1,"""South America""" +2024-04-19,97200,2931,"[\""Keyboard\"", \""Headphones\"", \""Monitor\""]",3187.43,"{\""loyalty\"": \""10%\""}",153027,1,"""South America""" +2023-04-28,97201,8475,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1468.85,"{\"": \""10%\""}",287036,0,"""Europe""" +2023-10-15,97202,7835,"[\""Keyboard\""]",378.74,"{\"": \""14%\""}",156936,0,"""Africa""" +2023-03-08,97203,1296,"[\""Phone\""]",3033.67,{},264153,0,"""Europe""" +2024-02-21,97204,187,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3649.04,"{\"": \""12%\""}",47040,1,"""North America""" +2024-12-05,97205,5488,"[\""Wireless Mouse\""]",3369.49,{},57964,0,"""Asia""" +2024-01-01,97206,7120,"[\""Keyboard\""]",2696.09,"{\""promo\"": \""10%\""}",125903,1,"""North America""" +2023-04-26,97207,9479,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",4084.49,{},7161,1,"""Africa""" +2024-02-21,97208,9239,"[\""Keyboard\"", \""Headphones\""]",841.89,{},47840,0,"""Asia""" +2023-01-21,97209,2232,"[\""Headphones\"", \""Monitor\""]",4753.98,"{\"": \""9%\""}",1490,0,"""South America""" +2024-05-02,97210,8011,"[\""Tablet\""]",2984.83,{},148231,1,"""South America""" +2024-06-23,97211,1881,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3228.08,"{\""seasonal\"": \""24%\""}",277798,0,"""South America""" +2023-04-13,97212,3491,"[\""Phone\"", \""Keyboard\""]",3883.63,{},90538,0,"""Africa""" +2024-04-30,97213,8472,"[\""Charger\"", \""Keyboard\""]",1624.42,{},281965,0,"""Africa""" +2023-08-11,97214,1873,"[\""Laptop\"", \""Wireless Mouse\""]",2794.92,{},29218,0,"""Asia""" +2024-03-02,97215,5243,"[\""Keyboard\"", \""Charger\""]",1543.76,"{\""promo\"": \""5%\""}",239146,0,"""North America""" +2023-08-06,97216,7183,"[\""Charger\""]",2195.97,{},260203,1,"""Africa""" +2023-10-31,97217,7826,"[\""Keyboard\"", \""Headphones\""]",1344.98,{},75769,1,"""Asia""" +2023-04-20,97218,1893,"[\""Tablet\"", \""Charger\""]",1485.44,"{\""promo\"": \""12%\""}",149030,1,"""Europe""" +2024-02-10,97219,3390,"[\""Charger\""]",1029.68,{},250903,0,"""Asia""" +2024-06-10,97220,4235,"[\""Keyboard\"", \""Monitor\""]",1284.69,"{\""promo\"": \""22%\""}",148744,0,"""North America""" +2024-10-03,97221,3558,"[\""Monitor\""]",3618.41,{},183457,0,"""Asia""" +2023-04-14,97222,8142,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",310.41,"{\""loyalty\"": \""12%\""}",77816,1,"""Africa""" +2023-08-03,97223,1796,"[\""Phone\""]",4811.25,{},20661,1,"""Africa""" +2023-07-25,97224,1712,"[\""Phone\""]",1756.55,"{\""promo\"": \""7%\""}",50227,0,"""Asia""" +2023-08-13,97225,9717,"[\""Laptop\"", \""Monitor\""]",1311.04,{},283808,1,"""South America""" +2023-10-04,97226,1561,"[\""Monitor\"", \""Wireless Mouse\""]",1225.86,"{\"": \""20%\""}",189941,1,"""Asia""" +2024-09-12,97227,6177,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",4618.48,"{\""seasonal\"": \""7%\""}",166886,1,"""North America""" +2023-03-17,97228,6036,"[\""Laptop\"", \""Keyboard\""]",4304.62,{},21192,0,"""North America""" +2024-05-06,97229,961,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",414.58,"{\""promo\"": \""30%\""}",195724,1,"""South America""" +2023-02-27,97230,3434,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",4999.5,"{\"": \""15%\""}",6073,1,"""North America""" +2024-03-13,97231,2483,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",1703.58,{},8858,1,"""Asia""" +2024-08-31,97232,5292,"[\""Laptop\""]",3359.03,"{\""promo\"": \""24%\""}",50808,0,"""Europe""" +2023-03-14,97233,6133,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",3253.77,"{\""promo\"": \""9%\""}",67240,1,"""South America""" +2023-05-17,97234,2356,"[\""Wireless Mouse\"", \""Headphones\""]",3019.64,"{\""promo\"": \""6%\""}",296893,1,"""Africa""" +2024-12-24,97235,1637,"[\""Keyboard\""]",3447.59,{},209951,1,"""Africa""" +2023-03-23,97236,7643,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",2523.49,{},276483,0,"""North America""" +2023-01-09,97237,4099,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",4144.4,"{\""seasonal\"": \""10%\""}",136256,0,"""Asia""" +2024-09-04,97238,1538,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",1678.74,"{\""promo\"": \""7%\""}",143184,1,"""North America""" +2024-02-01,97239,3088,"[\""Laptop\""]",1673.7,{},64818,1,"""South America""" +2023-03-18,97240,9902,"[\""Monitor\""]",4727.08,{},277534,0,"""Africa""" +2023-12-07,97241,4442,"[\""Wireless Mouse\"", \""Keyboard\""]",2390.77,"{\""loyalty\"": \""26%\""}",166689,0,"""Asia""" +2023-11-20,97242,3333,"[\""Tablet\"", \""Wireless Mouse\""]",4620.45,"{\""seasonal\"": \""12%\""}",170730,1,"""North America""" +2024-09-19,97243,7002,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",879.94,"{\""promo\"": \""9%\""}",112403,0,"""North America""" +2024-06-26,97244,6450,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",62.06,"{\""promo\"": \""20%\""}",67202,1,"""Africa""" +2023-06-20,97245,8311,"[\""Laptop\""]",3686.79,{},171659,1,"""Europe""" +2024-06-18,97246,8888,"[\""Monitor\"", \""Charger\""]",1306.03,"{\""loyalty\"": \""26%\""}",84969,1,"""North America""" +2023-11-07,97247,7244,"[\""Laptop\"", \""Keyboard\""]",4059.6,"{\""seasonal\"": \""27%\""}",78561,0,"""South America""" +2024-07-27,97248,9981,"[\""Tablet\"", \""Laptop\""]",4941.04,{},232408,1,"""Europe""" +2023-11-14,97249,3043,"[\""Tablet\""]",3590.4,{},10321,1,"""South America""" +2024-03-29,97250,3667,"[\""Wireless Mouse\"", \""Charger\""]",2339.21,{},248072,0,"""North America""" +2023-07-31,97251,8965,"[\""Laptop\"", \""Tablet\""]",3488.21,"{\""loyalty\"": \""11%\""}",227589,1,"""Asia""" +2023-07-01,97252,7523,"[\""Keyboard\""]",74.93,{},132598,1,"""North America""" +2024-07-25,97253,106,"[\""Monitor\""]",854.23,"{\"": \""15%\""}",243317,0,"""North America""" +2023-08-08,97254,7,"[\""Monitor\""]",2089.36,"{\""seasonal\"": \""9%\""}",170094,0,"""South America""" +2024-12-14,97255,1997,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",4049.42,"{\""loyalty\"": \""27%\""}",248647,1,"""Asia""" +2023-11-02,97256,1326,"[\""Charger\"", \""Laptop\""]",2129.71,"{\""seasonal\"": \""16%\""}",50393,0,"""Asia""" +2024-05-06,97257,7882,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",3642.74,"{\"": \""27%\""}",71401,1,"""South America""" +2024-12-09,97258,2155,"[\""Keyboard\"", \""Laptop\""]",1192.35,"{\""loyalty\"": \""6%\""}",240072,1,"""North America""" +2023-07-15,97259,4780,"[\""Monitor\""]",3539.42,{},260081,1,"""North America""" +2023-05-10,97260,7371,"[\""Laptop\"", \""Phone\""]",3326.06,"{\""seasonal\"": \""5%\""}",261840,1,"""Europe""" +2023-07-05,97261,3762,"[\""Phone\"", \""Charger\""]",1500.08,{},173237,1,"""North America""" +2023-01-06,97262,8215,"[\""Laptop\""]",333.82,{},150100,0,"""Africa""" +2023-05-26,97263,3067,"[\""Phone\"", \""Headphones\""]",1140.82,"{\"": \""11%\""}",3899,0,"""Asia""" +2024-08-28,97264,6637,"[\""Wireless Mouse\""]",3772.26,{},128209,0,"""North America""" +2024-04-10,97265,8640,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",766.46,"{\""loyalty\"": \""22%\""}",105442,0,"""Africa""" +2023-05-23,97266,4883,"[\""Keyboard\"", \""Phone\""]",4233.33,"{\""promo\"": \""6%\""}",235282,1,"""Europe""" +2024-05-27,97267,681,"[\""Phone\""]",2528.48,{},103367,1,"""Europe""" +2023-09-09,97268,8553,"[\""Headphones\""]",2881.81,{},151742,0,"""North America""" +2024-03-20,97269,9471,"[\""Laptop\"", \""Monitor\""]",4754.75,{},215326,1,"""Europe""" +2024-11-08,97270,2843,"[\""Tablet\""]",2846.77,"{\""seasonal\"": \""25%\""}",144569,1,"""South America""" +2024-09-04,97271,1251,"[\""Phone\""]",4287.02,"{\""promo\"": \""14%\""}",180876,0,"""Africa""" +2023-10-31,97272,520,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2505.0,"{\""promo\"": \""23%\""}",114895,1,"""South America""" +2024-11-05,97273,7812,"[\""Wireless Mouse\"", \""Phone\""]",4775.2,{},238202,1,"""South America""" +2023-10-30,97274,7123,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",3809.77,{},263277,1,"""South America""" +2023-11-15,97275,5415,"[\""Keyboard\"", \""Tablet\"", \""Wireless Mouse\""]",247.08,{},34129,0,"""South America""" +2023-06-21,97276,4580,"[\""Laptop\""]",2274.9,"{\"": \""21%\""}",16165,1,"""Europe""" +2023-08-02,97277,6918,"[\""Keyboard\""]",489.48,{},285604,0,"""North America""" +2024-07-28,97278,3232,"[\""Phone\"", \""Wireless Mouse\""]",389.04,"{\"": \""27%\""}",200796,1,"""North America""" +2023-06-10,97279,8045,"[\""Charger\""]",3246.83,{},114623,1,"""Europe""" +2023-01-06,97280,159,"[\""Tablet\"", \""Charger\""]",3391.22,"{\"": \""26%\""}",189388,0,"""South America""" +2023-10-10,97281,3636,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",3888.02,"{\""seasonal\"": \""26%\""}",123807,1,"""Africa""" +2023-10-20,97282,333,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",2360.05,{},31817,1,"""South America""" +2024-06-12,97283,1273,"[\""Wireless Mouse\""]",2614.01,"{\""promo\"": \""15%\""}",75801,1,"""Africa""" +2023-07-04,97284,8571,"[\""Laptop\"", \""Keyboard\""]",3553.14,{},131651,1,"""Africa""" +2024-08-19,97285,9922,"[\""Tablet\""]",2738.32,{},67128,0,"""North America""" +2024-11-01,97286,2567,"[\""Wireless Mouse\""]",3025.21,{},129420,1,"""Africa""" +2024-02-29,97287,9663,"[\""Tablet\"", \""Charger\""]",2606.39,"{\""seasonal\"": \""25%\""}",61793,1,"""Asia""" +2023-03-04,97288,3520,"[\""Phone\""]",2573.15,{},56337,1,"""North America""" +2024-11-05,97289,8965,"[\""Monitor\"", \""Tablet\"", \""Wireless Mouse\""]",3175.86,"{\""loyalty\"": \""22%\""}",169293,1,"""South America""" +2024-05-02,97290,9860,"[\""Wireless Mouse\"", \""Keyboard\""]",3036.27,"{\"": \""23%\""}",1518,0,"""Europe""" +2024-06-13,97291,3278,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4834.29,"{\""promo\"": \""6%\""}",203357,0,"""South America""" +2023-02-24,97292,455,"[\""Charger\""]",4631.18,{},252394,1,"""North America""" +2023-03-23,97293,8886,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3612.48,{},128271,0,"""Africa""" +2024-08-13,97294,4627,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",921.1,"{\""loyalty\"": \""10%\""}",60170,1,"""Europe""" +2024-08-11,97295,5252,"[\""Charger\""]",969.41,"{\"": \""11%\""}",31002,0,"""South America""" +2024-09-11,97296,5357,"[\""Wireless Mouse\"", \""Headphones\""]",3822.26,{},246390,1,"""Asia""" +2023-01-15,97297,4366,"[\""Keyboard\"", \""Headphones\""]",3178.26,{},120119,1,"""South America""" +2024-05-06,97298,3962,"[\""Phone\""]",4394.14,{},196577,0,"""Europe""" +2024-05-02,97299,140,"[\""Monitor\""]",3715.9,"{\""seasonal\"": \""28%\""}",28381,1,"""South America""" +2024-10-14,97300,2411,"[\""Tablet\"", \""Headphones\""]",4971.08,{},96155,1,"""North America""" +2023-09-24,97301,1619,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",877.18,"{\""seasonal\"": \""12%\""}",251244,1,"""Africa""" +2023-12-26,97302,5524,"[\""Headphones\"", \""Keyboard\""]",3499.29,{},131366,0,"""Europe""" +2024-03-04,97303,4487,"[\""Phone\"", \""Headphones\""]",3670.36,"{\"": \""27%\""}",120421,0,"""Asia""" +2023-07-27,97304,7330,"[\""Wireless Mouse\"", \""Charger\""]",3378.64,"{\""loyalty\"": \""9%\""}",71297,1,"""South America""" +2024-12-14,97305,716,"[\""Phone\"", \""Monitor\""]",1835.31,"{\""promo\"": \""6%\""}",50265,1,"""Asia""" +2023-04-18,97306,1858,"[\""Laptop\"", \""Headphones\"", \""Phone\""]",4039.13,{},219646,0,"""Asia""" +2023-04-17,97307,8216,"[\""Laptop\"", \""Monitor\""]",2091.11,"{\""loyalty\"": \""22%\""}",214178,1,"""Europe""" +2024-07-19,97308,6122,"[\""Phone\"", \""Charger\""]",593.99,{},21070,0,"""Europe""" +2023-05-22,97309,8019,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",2690.04,{},221704,1,"""Europe""" +2024-12-23,97310,1021,"[\""Charger\""]",2127.68,{},10951,1,"""Africa""" +2023-07-08,97311,9208,"[\""Headphones\""]",2424.95,"{\""loyalty\"": \""7%\""}",207352,0,"""South America""" +2024-04-01,97312,4493,"[\""Laptop\"", \""Headphones\""]",4734.6,{},34968,1,"""South America""" +2024-08-27,97313,9319,"[\""Monitor\"", \""Tablet\""]",1147.41,"{\""seasonal\"": \""26%\""}",151192,1,"""South America""" +2023-02-13,97314,7907,"[\""Tablet\""]",1004.26,{},112827,1,"""South America""" +2023-05-12,97315,6605,"[\""Charger\"", \""Laptop\""]",4444.89,{},136517,0,"""Africa""" +2024-08-04,97316,950,"[\""Headphones\"", \""Laptop\""]",1747.79,"{\"": \""21%\""}",287749,0,"""Europe""" +2024-04-14,97317,9338,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2098.31,{},50296,0,"""South America""" +2024-01-16,97318,1564,"[\""Laptop\""]",1288.91,"{\""promo\"": \""24%\""}",112511,1,"""Asia""" +2023-06-12,97319,7169,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",2918.39,{},49281,0,"""South America""" +2023-05-14,97320,9069,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3735.06,"{\""promo\"": \""26%\""}",122677,0,"""Asia""" +2023-10-22,97321,4158,"[\""Wireless Mouse\"", \""Phone\""]",3044.9,"{\""loyalty\"": \""6%\""}",78684,1,"""Europe""" +2023-01-19,97322,1566,"[\""Wireless Mouse\""]",2388.2,{},154355,0,"""South America""" +2024-11-16,97323,3156,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",803.22,"{\""loyalty\"": \""17%\""}",285955,1,"""Africa""" +2023-01-15,97324,6856,"[\""Laptop\""]",4655.55,"{\""loyalty\"": \""22%\""}",37032,0,"""Africa""" +2024-03-22,97325,5615,"[\""Tablet\"", \""Charger\""]",128.53,"{\""promo\"": \""15%\""}",293482,0,"""North America""" +2023-03-17,97326,5381,"[\""Tablet\"", \""Headphones\""]",3525.56,"{\""loyalty\"": \""28%\""}",110117,0,"""North America""" +2024-08-12,97327,6206,"[\""Phone\""]",1205.1,"{\"": \""16%\""}",125791,0,"""Africa""" +2023-08-07,97328,3618,"[\""Monitor\""]",3201.36,{},15372,0,"""Africa""" +2023-08-31,97329,7187,"[\""Wireless Mouse\""]",3133.06,"{\""promo\"": \""25%\""}",103303,1,"""Europe""" +2024-05-21,97330,3124,"[\""Wireless Mouse\"", \""Laptop\"", \""Monitor\""]",2677.07,"{\""promo\"": \""30%\""}",205664,1,"""Africa""" +2023-07-23,97331,4689,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",2016.39,{},185075,1,"""Asia""" +2023-11-06,97332,4319,"[\""Wireless Mouse\""]",736.59,{},107143,1,"""North America""" +2023-02-08,97333,4774,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",94.61,"{\""seasonal\"": \""23%\""}",237780,0,"""North America""" +2024-12-30,97334,6550,"[\""Laptop\""]",4222.16,{},5009,1,"""Europe""" +2024-10-05,97335,9283,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",1572.31,"{\"": \""14%\""}",7820,1,"""North America""" +2024-11-10,97336,8389,"[\""Laptop\""]",2432.87,{},160357,1,"""Asia""" +2024-03-03,97337,7065,"[\""Wireless Mouse\"", \""Laptop\""]",3225.27,{},96653,0,"""Asia""" +2024-08-09,97338,7669,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",4792.19,{},197769,0,"""South America""" +2023-11-09,97339,6475,"[\""Wireless Mouse\""]",556.1,"{\""loyalty\"": \""20%\""}",71252,0,"""Europe""" +2024-01-02,97340,263,"[\""Wireless Mouse\""]",2184.36,"{\"": \""23%\""}",98123,0,"""Africa""" +2024-05-17,97341,4912,"[\""Phone\""]",687.74,{},279334,0,"""Asia""" +2024-09-25,97342,7806,"[\""Charger\""]",421.93,{},61111,1,"""North America""" +2024-10-15,97343,1781,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",320.88,"{\""loyalty\"": \""6%\""}",34579,0,"""Africa""" +2024-03-20,97344,2048,"[\""Keyboard\""]",192.15,"{\"": \""29%\""}",294959,1,"""Europe""" +2023-06-08,97345,4349,"[\""Monitor\"", \""Charger\"", \""Phone\""]",4131.53,"{\""promo\"": \""27%\""}",184949,0,"""South America""" +2024-10-12,97346,1844,"[\""Monitor\""]",2447.02,{},289755,0,"""North America""" +2023-09-01,97347,8864,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1553.75,"{\""loyalty\"": \""26%\""}",96434,1,"""Asia""" +2023-09-30,97348,1379,"[\""Monitor\""]",2921.45,"{\""loyalty\"": \""7%\""}",204498,1,"""Europe""" +2023-04-19,97349,250,"[\""Phone\"", \""Headphones\""]",2985.25,{},176181,0,"""Asia""" +2023-06-17,97350,3808,"[\""Keyboard\"", \""Wireless Mouse\""]",546.32,{},236479,1,"""Europe""" +2024-10-21,97351,713,"[\""Phone\"", \""Tablet\""]",1887.18,{},103599,0,"""North America""" +2023-03-15,97352,2010,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",439.19,"{\"": \""22%\""}",60181,0,"""Africa""" +2023-11-27,97353,2350,"[\""Monitor\""]",4452.39,{},48407,0,"""Africa""" +2023-09-23,97354,5426,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",1243.04,{},221793,1,"""Asia""" +2024-03-21,97355,9239,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",2788.08,{},58459,1,"""Africa""" +2024-09-25,97356,6195,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",4088.12,"{\""loyalty\"": \""6%\""}",211419,1,"""Europe""" +2024-10-02,97357,3077,"[\""Wireless Mouse\"", \""Phone\""]",3495.34,"{\"": \""11%\""}",141247,1,"""Asia""" +2024-06-20,97358,4787,"[\""Tablet\"", \""Charger\""]",4388.91,{},158629,1,"""Europe""" +2023-01-02,97359,3918,"[\""Keyboard\""]",1790.05,{},95152,1,"""North America""" +2023-11-09,97360,2643,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",4403.85,{},206983,1,"""South America""" +2023-03-27,97361,5081,"[\""Monitor\""]",1239.64,"{\""seasonal\"": \""27%\""}",34368,1,"""South America""" +2023-01-03,97362,3769,"[\""Headphones\"", \""Laptop\""]",454.87,{},10617,0,"""North America""" +2023-03-22,97363,7046,"[\""Keyboard\"", \""Headphones\"", \""Tablet\""]",985.08,{},83683,0,"""Asia""" +2024-05-24,97364,8550,"[\""Wireless Mouse\""]",3095.68,"{\"": \""22%\""}",196050,0,"""South America""" +2024-07-15,97365,2505,"[\""Phone\"", \""Monitor\""]",1554.69,{},224314,1,"""Africa""" +2023-09-29,97366,3531,"[\""Charger\""]",2137.69,"{\""loyalty\"": \""20%\""}",95717,1,"""Africa""" +2024-06-28,97367,1264,"[\""Wireless Mouse\""]",4062.6,"{\""promo\"": \""13%\""}",145075,1,"""Asia""" +2023-08-06,97368,7366,"[\""Keyboard\"", \""Laptop\""]",2499.42,"{\""loyalty\"": \""20%\""}",187554,0,"""Europe""" +2024-08-05,97369,5985,"[\""Phone\""]",2084.03,"{\""loyalty\"": \""5%\""}",229541,0,"""North America""" +2023-11-28,97370,9500,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4000.54,"{\""seasonal\"": \""12%\""}",184985,1,"""Europe""" +2024-12-05,97371,4924,"[\""Laptop\"", \""Wireless Mouse\""]",810.99,"{\""promo\"": \""25%\""}",12356,1,"""North America""" +2024-07-31,97372,6766,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",751.89,{},158582,1,"""Asia""" +2023-11-04,97373,2639,"[\""Tablet\""]",2413.46,{},69213,1,"""North America""" +2024-10-17,97374,1041,"[\""Wireless Mouse\"", \""Headphones\""]",2057.37,{},163693,1,"""Africa""" +2023-02-10,97375,5236,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3133.47,{},251009,1,"""North America""" +2023-07-20,97376,6444,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4106.28,{},210371,1,"""North America""" +2024-02-14,97377,149,"[\""Wireless Mouse\""]",238.83,"{\"": \""13%\""}",191431,1,"""North America""" +2024-01-20,97378,4253,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1018.5,"{\""loyalty\"": \""15%\""}",153575,0,"""North America""" +2023-05-27,97379,1880,"[\""Keyboard\"", \""Charger\""]",3334.79,"{\""seasonal\"": \""28%\""}",144572,0,"""Asia""" +2024-12-20,97380,2399,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",435.46,"{\"": \""10%\""}",62331,0,"""South America""" +2024-04-24,97381,2353,"[\""Keyboard\"", \""Phone\""]",4118.15,{},141581,0,"""South America""" +2023-02-28,97382,763,"[\""Monitor\"", \""Charger\""]",2318.51,{},275993,0,"""Africa""" +2024-11-23,97383,6141,"[\""Charger\""]",1917.16,"{\""seasonal\"": \""21%\""}",123756,0,"""North America""" +2023-09-15,97384,7552,"[\""Charger\"", \""Monitor\""]",2291.58,{},132412,1,"""North America""" +2023-05-19,97385,7926,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1515.35,"{\""loyalty\"": \""17%\""}",123994,1,"""North America""" +2024-05-02,97386,2518,"[\""Charger\""]",3930.95,"{\""loyalty\"": \""18%\""}",93203,1,"""Africa""" +2023-03-02,97387,4818,"[\""Laptop\""]",1196.32,{},117302,1,"""Europe""" +2024-07-12,97388,1048,"[\""Phone\""]",1169.02,{},25632,1,"""Europe""" +2024-02-24,97389,2380,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2246.96,"{\""promo\"": \""21%\""}",240162,0,"""Asia""" +2024-01-22,97390,8022,"[\""Headphones\"", \""Phone\""]",2280.67,{},272181,0,"""Asia""" +2024-02-17,97391,6115,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",4681.89,{},215471,1,"""Africa""" +2024-03-01,97392,9691,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2084.39,"{\"": \""14%\""}",278371,0,"""South America""" +2024-08-26,97393,5476,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2321.98,{},237835,1,"""Asia""" +2023-05-05,97394,1835,"[\""Laptop\""]",1298.7,"{\""seasonal\"": \""28%\""}",27026,0,"""Africa""" +2023-12-25,97395,5848,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1908.55,{},251310,1,"""North America""" +2024-09-16,97396,8782,"[\""Laptop\"", \""Charger\""]",1919.22,{},70626,0,"""North America""" +2023-04-06,97397,5492,"[\""Laptop\""]",3120.14,{},4364,0,"""South America""" +2023-02-06,97398,8535,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",174.81,"{\""promo\"": \""9%\""}",260901,1,"""Asia""" +2023-06-11,97399,812,"[\""Wireless Mouse\"", \""Headphones\""]",2495.13,{},122231,1,"""North America""" +2023-09-27,97400,5019,"[\""Charger\"", \""Laptop\"", \""Phone\""]",526.93,"{\""seasonal\"": \""18%\""}",102703,1,"""Asia""" +2023-09-22,97401,1847,"[\""Wireless Mouse\""]",4893.27,{},28138,1,"""Asia""" +2023-01-18,97402,9252,"[\""Phone\"", \""Laptop\""]",1724.64,"{\""promo\"": \""20%\""}",21791,1,"""North America""" +2024-08-17,97403,6575,"[\""Phone\"", \""Laptop\"", \""Monitor\""]",4483.2,"{\""seasonal\"": \""20%\""}",233785,0,"""Europe""" +2023-09-10,97404,3522,"[\""Monitor\""]",1291.45,"{\""seasonal\"": \""28%\""}",60618,0,"""Africa""" +2023-11-04,97405,4403,"[\""Headphones\"", \""Wireless Mouse\""]",597.75,{},219034,0,"""Asia""" +2024-02-06,97406,1992,"[\""Phone\""]",3836.9,"{\""seasonal\"": \""28%\""}",288987,1,"""Asia""" +2024-08-17,97407,718,"[\""Phone\"", \""Keyboard\""]",3046.34,{},180474,1,"""Africa""" +2023-12-08,97408,5861,"[\""Monitor\"", \""Headphones\""]",814.2,{},89928,1,"""North America""" +2024-01-13,97409,5710,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",358.28,"{\""promo\"": \""28%\""}",42462,0,"""Africa""" +2023-08-15,97410,6280,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1515.9,"{\"": \""16%\""}",9379,0,"""Europe""" +2024-09-06,97411,5160,"[\""Monitor\""]",2556.75,"{\""loyalty\"": \""30%\""}",138953,1,"""North America""" +2024-11-02,97412,8627,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",260.48,{},144741,0,"""South America""" +2024-11-24,97413,2297,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",3841.05,{},70472,1,"""South America""" +2023-05-30,97414,5316,"[\""Keyboard\""]",991.86,"{\""seasonal\"": \""10%\""}",165279,0,"""Africa""" +2024-11-12,97415,8141,"[\""Charger\""]",3533.83,"{\""seasonal\"": \""12%\""}",162059,0,"""South America""" +2024-01-07,97416,2235,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",3312.43,{},146974,0,"""South America""" +2024-11-02,97417,146,"[\""Laptop\""]",1794.28,"{\""promo\"": \""25%\""}",218330,1,"""Europe""" +2024-06-01,97418,5391,"[\""Headphones\"", \""Monitor\""]",4403.8,{},109502,1,"""Europe""" +2023-11-23,97419,3290,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3379.87,"{\""loyalty\"": \""8%\""}",256770,0,"""Asia""" +2023-04-24,97420,5240,"[\""Charger\"", \""Monitor\""]",3379.97,{},103960,1,"""Africa""" +2023-08-28,97421,8142,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",3291.07,"{\""loyalty\"": \""12%\""}",189159,1,"""Africa""" +2024-03-15,97422,9913,"[\""Laptop\"", \""Wireless Mouse\""]",1528.32,{},49850,1,"""North America""" +2023-08-12,97423,2941,"[\""Keyboard\"", \""Monitor\""]",656.47,{},173108,1,"""South America""" +2024-12-22,97424,2986,"[\""Wireless Mouse\""]",1816.6,"{\""promo\"": \""17%\""}",215977,0,"""Asia""" +2023-07-05,97425,1076,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",3703.41,{},210838,1,"""Asia""" +2024-01-25,97426,8491,"[\""Tablet\""]",2113.71,"{\"": \""16%\""}",164572,0,"""South America""" +2024-05-18,97427,8840,"[\""Monitor\""]",1174.27,{},71243,0,"""South America""" +2023-01-12,97428,4072,"[\""Phone\""]",2413.21,{},76428,0,"""North America""" +2024-06-29,97429,7047,"[\""Headphones\""]",2054.27,"{\"": \""16%\""}",165829,0,"""North America""" +2023-07-26,97430,3724,"[\""Charger\""]",3592.99,"{\""promo\"": \""20%\""}",14449,0,"""Asia""" +2024-06-25,97431,5974,"[\""Laptop\"", \""Monitor\""]",3164.23,{},111379,0,"""Africa""" +2023-02-07,97432,6517,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",4095.09,"{\""promo\"": \""11%\""}",1347,1,"""Africa""" +2024-10-25,97433,5884,"[\""Charger\"", \""Laptop\""]",584.94,"{\""promo\"": \""26%\""}",183710,1,"""Asia""" +2024-08-19,97434,9769,"[\""Wireless Mouse\"", \""Charger\""]",2307.5,"{\""loyalty\"": \""30%\""}",294532,0,"""South America""" +2023-12-19,97435,5163,"[\""Charger\"", \""Wireless Mouse\""]",3298.82,{},219079,1,"""Asia""" +2023-06-26,97436,700,"[\""Laptop\""]",3074.13,{},163949,0,"""Africa""" +2023-11-19,97437,972,"[\""Wireless Mouse\""]",1623.21,{},104940,1,"""South America""" +2024-09-29,97438,6793,"[\""Headphones\""]",2910.02,{},125312,1,"""North America""" +2023-06-28,97439,3536,"[\""Tablet\"", \""Headphones\""]",2951.12,"{\""seasonal\"": \""6%\""}",275190,1,"""Asia""" +2024-11-18,97440,5033,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",3657.84,{},126788,1,"""South America""" +2024-12-23,97441,5487,"[\""Charger\"", \""Laptop\""]",343.48,"{\""promo\"": \""15%\""}",286351,0,"""Asia""" +2023-03-19,97442,7369,"[\""Keyboard\"", \""Laptop\""]",1705.36,{},233479,1,"""Europe""" +2023-03-09,97443,231,"[\""Charger\"", \""Wireless Mouse\""]",1140.96,"{\""seasonal\"": \""7%\""}",200954,1,"""Europe""" +2023-12-30,97444,4555,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",3121.24,"{\"": \""26%\""}",96869,1,"""North America""" +2024-04-29,97445,9810,"[\""Monitor\"", \""Tablet\""]",3022.56,"{\""loyalty\"": \""6%\""}",83514,0,"""North America""" +2024-06-19,97446,9542,"[\""Laptop\""]",4367.28,"{\""loyalty\"": \""15%\""}",164104,0,"""North America""" +2023-05-21,97447,6334,"[\""Keyboard\"", \""Phone\""]",1131.32,{},263404,0,"""Asia""" +2024-10-02,97448,475,"[\""Charger\""]",1075.05,{},242546,0,"""South America""" +2024-01-09,97449,6670,"[\""Phone\"", \""Keyboard\""]",3716.01,{},145056,0,"""South America""" +2023-01-18,97450,2235,"[\""Phone\""]",152.96,"{\""promo\"": \""16%\""}",237629,0,"""Africa""" +2024-07-22,97451,9166,"[\""Phone\"", \""Monitor\""]",2701.88,{},130100,0,"""Africa""" +2024-10-31,97452,7323,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1129.6,{},24430,1,"""Europe""" +2023-03-14,97453,5105,"[\""Laptop\"", \""Phone\""]",2535.95,"{\""seasonal\"": \""23%\""}",190509,1,"""North America""" +2024-03-29,97454,664,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",1698.05,"{\""promo\"": \""26%\""}",74226,1,"""Africa""" +2024-01-04,97455,1266,"[\""Headphones\"", \""Laptop\""]",3083.49,"{\""loyalty\"": \""9%\""}",165592,1,"""Europe""" +2024-01-17,97456,8725,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",1545.09,"{\""seasonal\"": \""10%\""}",27507,0,"""Europe""" +2024-12-05,97457,298,"[\""Phone\""]",4782.56,{},117619,1,"""Asia""" +2024-09-04,97458,9685,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3400.58,{},156331,0,"""North America""" +2024-07-11,97459,4458,"[\""Wireless Mouse\""]",3112.93,{},140095,0,"""North America""" +2023-12-22,97460,7170,"[\""Keyboard\"", \""Phone\""]",1081.53,{},62480,0,"""Africa""" +2023-03-16,97461,395,"[\""Charger\""]",4725.01,"{\""loyalty\"": \""25%\""}",299944,0,"""South America""" +2023-03-04,97462,1189,"[\""Wireless Mouse\"", \""Headphones\""]",1373.33,"{\""seasonal\"": \""30%\""}",253603,1,"""Africa""" +2023-01-06,97463,378,"[\""Charger\""]",279.74,{},89531,0,"""Europe""" +2023-12-22,97464,9910,"[\""Keyboard\""]",1577.89,{},39479,1,"""Asia""" +2023-09-01,97465,9165,"[\""Headphones\"", \""Laptop\""]",4733.69,{},209441,1,"""Asia""" +2024-06-09,97466,2458,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1451.43,"{\"": \""21%\""}",247911,1,"""Asia""" +2023-05-25,97467,7602,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",621.49,{},97733,1,"""Asia""" +2023-09-03,97468,6324,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4865.02,"{\""promo\"": \""19%\""}",212200,0,"""North America""" +2024-02-16,97469,5156,"[\""Tablet\"", \""Keyboard\"", \""Charger\""]",2002.9,{},9928,1,"""North America""" +2024-04-08,97470,7936,"[\""Wireless Mouse\""]",2381.08,{},62382,0,"""Asia""" +2023-04-09,97471,8513,"[\""Laptop\"", \""Phone\""]",2039.18,"{\""loyalty\"": \""12%\""}",29335,1,"""South America""" +2024-10-24,97472,9225,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",1980.09,{},97772,1,"""Europe""" +2024-06-28,97473,6690,"[\""Keyboard\"", \""Monitor\""]",3315.92,{},231355,0,"""South America""" +2023-12-26,97474,1023,"[\""Headphones\""]",806.18,{},186501,1,"""Europe""" +2023-04-07,97475,6507,"[\""Keyboard\""]",2314.94,{},291718,0,"""Africa""" +2023-01-22,97476,2925,"[\""Wireless Mouse\""]",4245.76,{},176832,1,"""Africa""" +2024-08-20,97477,359,"[\""Phone\"", \""Laptop\""]",4463.77,{},132111,0,"""North America""" +2023-12-12,97478,8187,"[\""Phone\"", \""Tablet\""]",4986.67,{},199620,1,"""Asia""" +2024-05-18,97479,7807,"[\""Charger\""]",1896.09,"{\""seasonal\"": \""14%\""}",264916,1,"""North America""" +2023-01-27,97480,3380,"[\""Laptop\"", \""Headphones\""]",4994.04,{},121431,1,"""North America""" +2024-11-02,97481,688,"[\""Tablet\""]",1518.35,{},15317,0,"""North America""" +2024-11-26,97482,9790,"[\""Wireless Mouse\""]",1045.8,{},144866,0,"""North America""" +2023-11-03,97483,7910,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",554.45,"{\""loyalty\"": \""30%\""}",232701,1,"""Asia""" +2023-06-22,97484,6349,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",2905.0,{},124707,0,"""Europe""" +2024-01-01,97485,4968,"[\""Headphones\"", \""Wireless Mouse\""]",3100.7,"{\""seasonal\"": \""21%\""}",257794,1,"""Europe""" +2024-07-24,97486,4921,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",1417.81,{},266607,1,"""Asia""" +2024-02-17,97487,200,"[\""Phone\""]",2838.52,{},84499,1,"""Asia""" +2023-09-21,97488,594,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",4861.66,{},83048,1,"""Europe""" +2024-01-03,97489,3762,"[\""Keyboard\"", \""Tablet\""]",2714.18,{},258434,0,"""Africa""" +2024-10-16,97490,4285,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",1005.87,"{\""loyalty\"": \""15%\""}",40047,1,"""Africa""" +2023-08-15,97491,4408,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",3316.44,{},294644,0,"""North America""" +2024-09-16,97492,4167,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4329.92,{},289429,0,"""North America""" +2023-11-05,97493,9088,"[\""Charger\"", \""Laptop\""]",4366.5,"{\"": \""29%\""}",57050,0,"""South America""" +2024-10-02,97494,5425,"[\""Phone\""]",4934.33,"{\""loyalty\"": \""21%\""}",107760,0,"""Africa""" +2024-02-27,97495,6101,"[\""Tablet\""]",4403.29,{},129572,0,"""Asia""" +2023-05-04,97496,1681,"[\""Wireless Mouse\""]",3394.19,{},119081,0,"""South America""" +2023-01-03,97497,8449,"[\""Tablet\"", \""Charger\""]",1635.23,"{\""promo\"": \""6%\""}",71722,1,"""South America""" +2024-01-17,97498,8705,"[\""Headphones\""]",1331.67,{},6577,1,"""North America""" +2024-06-16,97499,2358,"[\""Wireless Mouse\""]",3984.95,"{\"": \""12%\""}",15969,0,"""Europe""" +2023-09-23,97500,5389,"[\""Wireless Mouse\""]",115.2,"{\""promo\"": \""28%\""}",136861,1,"""North America""" +2024-08-10,97501,1072,"[\""Monitor\""]",852.15,{},173076,1,"""North America""" +2024-10-24,97502,3724,"[\""Tablet\""]",376.21,"{\""seasonal\"": \""5%\""}",154058,1,"""Asia""" +2024-10-05,97503,5689,"[\""Headphones\""]",1710.04,{},129309,1,"""Europe""" +2024-05-12,97504,3146,"[\""Monitor\"", \""Wireless Mouse\""]",3256.55,"{\""loyalty\"": \""10%\""}",76810,1,"""North America""" +2024-01-05,97505,6223,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",3367.09,"{\""loyalty\"": \""8%\""}",126953,1,"""Africa""" +2024-07-18,97506,7824,"[\""Keyboard\"", \""Charger\""]",705.47,{},50463,0,"""Africa""" +2023-10-06,97507,2534,"[\""Monitor\"", \""Tablet\""]",3195.34,"{\""seasonal\"": \""19%\""}",7328,1,"""North America""" +2023-03-01,97508,8383,"[\""Headphones\"", \""Monitor\""]",1124.48,"{\""loyalty\"": \""22%\""}",1308,0,"""Africa""" +2023-03-23,97509,5198,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2684.9,{},264480,0,"""Africa""" +2024-04-02,97510,9506,"[\""Charger\"", \""Tablet\""]",3066.6,{},33065,0,"""Europe""" +2024-06-10,97511,2720,"[\""Tablet\"", \""Wireless Mouse\""]",3371.8,{},182783,1,"""Europe""" +2024-11-28,97512,3019,"[\""Wireless Mouse\"", \""Headphones\""]",1341.48,"{\"": \""14%\""}",223206,1,"""North America""" +2024-03-15,97513,6582,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",2174.19,"{\"": \""30%\""}",277679,0,"""North America""" +2024-11-20,97514,2334,"[\""Tablet\""]",4066.23,{},23640,0,"""Africa""" +2023-04-15,97515,2532,"[\""Charger\"", \""Monitor\""]",1274.62,"{\""loyalty\"": \""25%\""}",102308,1,"""South America""" +2023-02-07,97516,2673,"[\""Monitor\""]",3322.07,{},111817,1,"""North America""" +2023-10-30,97517,3937,"[\""Keyboard\"", \""Monitor\""]",739.99,"{\""promo\"": \""27%\""}",294281,1,"""Asia""" +2023-10-09,97518,9767,"[\""Charger\""]",3924.21,"{\""seasonal\"": \""13%\""}",230058,0,"""Africa""" +2024-05-20,97519,504,"[\""Monitor\""]",2199.69,"{\""seasonal\"": \""22%\""}",195475,0,"""Europe""" +2024-10-01,97520,6622,"[\""Charger\""]",2873.33,"{\""loyalty\"": \""18%\""}",264205,1,"""South America""" +2023-04-25,97521,1815,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3313.62,{},11049,1,"""Asia""" +2024-05-19,97522,4786,"[\""Charger\""]",712.96,{},102856,1,"""South America""" +2023-09-21,97523,3493,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4676.27,{},101223,1,"""South America""" +2024-12-13,97524,8871,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",2834.09,"{\""promo\"": \""12%\""}",158639,0,"""South America""" +2023-04-03,97525,3614,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",1800.67,"{\""loyalty\"": \""11%\""}",209218,0,"""North America""" +2023-12-11,97526,147,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3925.34,"{\""loyalty\"": \""30%\""}",212705,0,"""Africa""" +2024-03-21,97527,4528,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",243.6,"{\""seasonal\"": \""17%\""}",71458,1,"""Europe""" +2024-12-09,97528,6385,"[\""Wireless Mouse\"", \""Phone\""]",2719.4,{},260434,1,"""South America""" +2023-06-19,97529,5531,"[\""Phone\""]",3919.47,{},250029,0,"""Africa""" +2024-11-17,97530,8425,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3196.56,{},209424,0,"""North America""" +2024-01-10,97531,4424,"[\""Phone\"", \""Wireless Mouse\""]",1377.3,{},271927,1,"""South America""" +2023-12-17,97532,1428,"[\""Tablet\""]",4880.0,{},189576,0,"""Asia""" +2024-11-23,97533,6356,"[\""Headphones\"", \""Monitor\""]",2911.58,"{\""seasonal\"": \""17%\""}",167303,1,"""North America""" +2023-06-20,97534,9883,"[\""Keyboard\""]",1587.78,{},186563,0,"""South America""" +2024-10-05,97535,5731,"[\""Laptop\""]",3154.96,{},214460,1,"""South America""" +2023-03-10,97536,4885,"[\""Monitor\""]",3719.21,"{\""seasonal\"": \""18%\""}",44070,1,"""Europe""" +2023-11-27,97537,3093,"[\""Charger\"", \""Wireless Mouse\""]",946.13,"{\""promo\"": \""18%\""}",18242,1,"""South America""" +2024-02-05,97538,6236,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1164.32,{},67401,0,"""Europe""" +2023-08-15,97539,5408,"[\""Keyboard\"", \""Charger\""]",3093.18,"{\""loyalty\"": \""14%\""}",96372,0,"""Africa""" +2024-03-07,97540,7003,"[\""Laptop\"", \""Charger\"", \""Headphones\""]",2869.08,{},230407,1,"""Asia""" +2024-03-16,97541,5955,"[\""Keyboard\""]",1278.96,{},103695,0,"""South America""" +2023-05-27,97542,5255,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3764.34,{},212129,0,"""Asia""" +2024-07-15,97543,2963,"[\""Phone\"", \""Tablet\""]",2358.06,"{\"": \""25%\""}",250641,1,"""Europe""" +2023-03-06,97544,6880,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",2059.2,{},285107,1,"""Africa""" +2023-07-27,97545,4293,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",705.09,"{\""seasonal\"": \""10%\""}",254427,0,"""North America""" +2023-11-28,97546,3978,"[\""Keyboard\"", \""Charger\""]",1795.64,"{\""seasonal\"": \""15%\""}",186047,1,"""Africa""" +2023-08-07,97547,1347,"[\""Charger\""]",2281.91,"{\"": \""8%\""}",239334,0,"""South America""" +2024-05-12,97548,7484,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",152.71,"{\""loyalty\"": \""12%\""}",6805,1,"""Africa""" +2024-07-11,97549,1039,"[\""Monitor\"", \""Keyboard\""]",2543.44,{},238977,1,"""Asia""" +2023-08-21,97550,6075,"[\""Laptop\""]",99.76,"{\""loyalty\"": \""30%\""}",270849,0,"""Europe""" +2024-07-24,97551,2887,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",2600.44,"{\""loyalty\"": \""24%\""}",159188,0,"""Europe""" +2023-03-15,97552,422,"[\""Tablet\""]",3516.0,{},175218,0,"""Europe""" +2023-05-25,97553,9335,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",739.52,{},107869,0,"""North America""" +2024-04-01,97554,4328,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",4471.11,{},24299,1,"""North America""" +2023-01-14,97555,6788,"[\""Tablet\"", \""Headphones\""]",1745.61,{},38032,1,"""Europe""" +2023-07-17,97556,2598,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2097.09,"{\""loyalty\"": \""8%\""}",190369,0,"""Asia""" +2024-01-29,97557,2257,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4762.7,{},179040,0,"""South America""" +2023-09-16,97558,8780,"[\""Headphones\""]",2327.88,{},112091,1,"""Africa""" +2024-03-14,97559,9200,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",4663.25,{},191110,1,"""Asia""" +2024-02-11,97560,3515,"[\""Monitor\"", \""Tablet\""]",376.58,{},177071,1,"""Asia""" +2023-09-06,97561,7490,"[\""Phone\""]",4405.82,{},291358,0,"""North America""" +2023-11-21,97562,7964,"[\""Keyboard\"", \""Monitor\""]",3643.22,"{\""promo\"": \""11%\""}",163683,0,"""Europe""" +2024-08-26,97563,1578,"[\""Headphones\"", \""Monitor\""]",4334.53,"{\""promo\"": \""9%\""}",21742,0,"""Asia""" +2024-11-23,97564,9196,"[\""Keyboard\"", \""Wireless Mouse\""]",1355.97,"{\""seasonal\"": \""19%\""}",223769,1,"""Europe""" +2023-12-10,97565,462,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4611.36,"{\""loyalty\"": \""27%\""}",137978,1,"""Europe""" +2023-03-20,97566,6757,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",876.65,"{\""seasonal\"": \""25%\""}",169545,1,"""Asia""" +2024-10-16,97567,8836,"[\""Laptop\""]",953.96,{},8198,0,"""North America""" +2023-06-01,97568,5896,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",69.23,{},194140,0,"""Asia""" +2024-07-06,97569,6931,"[\""Headphones\"", \""Phone\"", \""Charger\""]",4979.43,{},203309,0,"""Europe""" +2024-12-18,97570,2627,"[\""Monitor\"", \""Keyboard\"", \""Charger\""]",4155.72,{},185431,1,"""South America""" +2023-11-12,97571,3427,"[\""Wireless Mouse\"", \""Headphones\""]",4058.08,"{\""loyalty\"": \""24%\""}",267882,0,"""Europe""" +2023-10-11,97572,4596,"[\""Monitor\"", \""Keyboard\"", \""Phone\""]",481.1,{},145386,1,"""Asia""" +2023-12-24,97573,8803,"[\""Monitor\"", \""Phone\""]",1213.96,"{\""promo\"": \""24%\""}",52352,1,"""South America""" +2023-06-20,97574,3436,"[\""Keyboard\""]",3209.0,"{\""seasonal\"": \""18%\""}",141665,1,"""Africa""" +2024-11-26,97575,9634,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",1043.24,"{\"": \""29%\""}",233801,0,"""Asia""" +2024-07-16,97576,8770,"[\""Laptop\"", \""Headphones\""]",1295.31,{},36578,0,"""South America""" +2024-05-17,97577,9272,"[\""Monitor\""]",4375.49,{},165967,1,"""Africa""" +2023-04-20,97578,8678,"[\""Phone\"", \""Tablet\""]",2354.32,"{\""loyalty\"": \""10%\""}",18195,0,"""Asia""" +2023-07-14,97579,8259,"[\""Tablet\"", \""Wireless Mouse\""]",4391.15,"{\""seasonal\"": \""29%\""}",156146,0,"""North America""" +2023-08-26,97580,9977,"[\""Tablet\""]",3860.05,"{\"": \""10%\""}",271221,0,"""North America""" +2023-07-19,97581,6881,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",3161.47,"{\""seasonal\"": \""23%\""}",173737,1,"""South America""" +2023-12-31,97582,9493,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",4997.0,{},298413,0,"""North America""" +2023-11-18,97583,1157,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",885.59,{},75217,0,"""South America""" +2024-03-03,97584,2775,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",986.39,"{\""seasonal\"": \""23%\""}",136258,0,"""South America""" +2023-11-05,97585,7651,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1193.09,"{\""loyalty\"": \""15%\""}",38303,0,"""Africa""" +2023-09-23,97586,1115,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",4019.39,{},217847,1,"""Asia""" +2024-09-18,97587,1847,"[\""Laptop\"", \""Keyboard\""]",2125.05,"{\""promo\"": \""29%\""}",81371,0,"""Europe""" +2023-08-09,97588,9262,"[\""Laptop\"", \""Charger\""]",673.18,"{\"": \""11%\""}",199780,0,"""North America""" +2024-05-25,97589,7580,"[\""Phone\"", \""Charger\""]",2177.82,"{\""loyalty\"": \""25%\""}",131077,1,"""South America""" +2023-05-12,97590,9038,"[\""Tablet\""]",1725.65,{},91054,0,"""Asia""" +2024-12-25,97591,7818,"[\""Wireless Mouse\""]",3989.63,{},241999,0,"""North America""" +2023-05-26,97592,1878,"[\""Tablet\"", \""Phone\""]",3494.49,"{\""promo\"": \""30%\""}",123438,1,"""Asia""" +2023-01-15,97593,9350,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2500.35,"{\"": \""18%\""}",92675,1,"""Europe""" +2024-10-12,97594,6450,"[\""Headphones\""]",1000.69,{},17049,1,"""Africa""" +2024-12-17,97595,1837,"[\""Wireless Mouse\""]",3991.03,"{\"": \""22%\""}",221869,1,"""Africa""" +2023-06-17,97596,6372,"[\""Monitor\""]",1689.72,{},195741,1,"""Asia""" +2023-01-23,97597,7979,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",3666.88,{},169466,0,"""Europe""" +2023-03-24,97598,3668,"[\""Keyboard\""]",3591.04,"{\""promo\"": \""8%\""}",38038,0,"""South America""" +2023-04-18,97599,2710,"[\""Tablet\"", \""Laptop\""]",3767.34,{},178771,1,"""South America""" +2023-09-26,97600,3952,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",295.06,"{\"": \""7%\""}",200677,0,"""North America""" +2024-07-06,97601,5107,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",597.99,"{\""promo\"": \""27%\""}",45200,0,"""Africa""" +2023-07-04,97602,9277,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",702.15,"{\"": \""6%\""}",144166,0,"""Europe""" +2024-08-29,97603,1264,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",4907.54,"{\"": \""27%\""}",294003,1,"""Europe""" +2023-11-30,97604,787,"[\""Charger\""]",1354.43,"{\""seasonal\"": \""7%\""}",170237,0,"""Africa""" +2023-12-13,97605,7461,"[\""Phone\""]",2682.17,{},181871,0,"""North America""" +2023-11-25,97606,2969,"[\""Laptop\"", \""Phone\""]",2074.66,"{\""loyalty\"": \""11%\""}",164844,1,"""South America""" +2024-03-05,97607,2206,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3624.33,{},284410,1,"""Asia""" +2023-09-10,97608,8861,"[\""Monitor\"", \""Charger\""]",3482.06,{},17584,1,"""Africa""" +2024-11-02,97609,6987,"[\""Charger\"", \""Phone\"", \""Wireless Mouse\""]",4607.5,{},187294,1,"""Africa""" +2024-12-17,97610,7284,"[\""Charger\""]",232.5,"{\""seasonal\"": \""14%\""}",99231,0,"""Asia""" +2024-09-23,97611,260,"[\""Keyboard\"", \""Charger\""]",1874.83,{},123329,0,"""Europe""" +2024-08-24,97612,6147,"[\""Phone\"", \""Charger\""]",790.53,"{\""loyalty\"": \""9%\""}",55378,0,"""Europe""" +2023-11-11,97613,7612,"[\""Charger\"", \""Phone\""]",4410.99,{},194819,0,"""North America""" +2024-09-22,97614,1639,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",357.83,{},299754,0,"""Europe""" +2024-02-15,97615,539,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",3353.18,{},109678,1,"""North America""" +2023-12-28,97616,2107,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4941.01,{},89106,1,"""Africa""" +2024-04-16,97617,384,"[\""Phone\"", \""Laptop\""]",4379.76,{},272862,0,"""Europe""" +2023-12-01,97618,4809,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4657.35,{},16668,1,"""Asia""" +2023-02-16,97619,25,"[\""Laptop\"", \""Charger\""]",1296.52,"{\"": \""24%\""}",48541,0,"""Africa""" +2024-09-30,97620,9876,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4281.94,"{\""promo\"": \""10%\""}",278929,1,"""North America""" +2023-10-14,97621,2085,"[\""Wireless Mouse\"", \""Charger\""]",3968.7,"{\""seasonal\"": \""10%\""}",230705,1,"""South America""" +2023-10-02,97622,1482,"[\""Phone\"", \""Tablet\""]",1681.01,"{\""seasonal\"": \""18%\""}",22344,1,"""Asia""" +2023-11-18,97623,9876,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",2164.27,"{\""loyalty\"": \""6%\""}",120542,1,"""South America""" +2023-05-21,97624,7148,"[\""Keyboard\"", \""Charger\""]",2369.94,"{\"": \""24%\""}",248817,1,"""South America""" +2023-07-27,97625,8764,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2469.14,"{\""seasonal\"": \""9%\""}",279541,1,"""Asia""" +2023-06-28,97626,8796,"[\""Tablet\""]",465.07,"{\""seasonal\"": \""29%\""}",88202,0,"""Europe""" +2024-04-06,97627,9654,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2097.08,"{\""promo\"": \""21%\""}",257112,0,"""Europe""" +2023-01-19,97628,6339,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",2082.38,"{\""loyalty\"": \""11%\""}",228621,1,"""Asia""" +2023-07-10,97629,6761,"[\""Tablet\""]",1490.34,"{\""seasonal\"": \""24%\""}",156274,1,"""North America""" +2023-11-17,97630,6357,"[\""Keyboard\"", \""Tablet\""]",4303.03,"{\""promo\"": \""26%\""}",265733,0,"""South America""" +2024-08-08,97631,5940,"[\""Tablet\""]",2822.29,{},93335,1,"""South America""" +2024-11-25,97632,9930,"[\""Phone\""]",2768.04,"{\""loyalty\"": \""22%\""}",31663,1,"""North America""" +2023-06-30,97633,6181,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",4190.06,{},203269,1,"""Europe""" +2023-06-03,97634,4539,"[\""Headphones\"", \""Wireless Mouse\""]",3413.62,"{\""seasonal\"": \""18%\""}",56886,1,"""Asia""" +2023-02-17,97635,190,"[\""Keyboard\"", \""Tablet\""]",1274.96,{},134528,1,"""Asia""" +2024-08-28,97636,7083,"[\""Laptop\""]",1941.19,{},114383,0,"""Asia""" +2024-04-06,97637,3389,"[\""Tablet\""]",2922.43,{},150584,0,"""Africa""" +2024-07-09,97638,8097,"[\""Phone\""]",919.41,"{\""loyalty\"": \""22%\""}",12682,1,"""Europe""" +2024-07-16,97639,3369,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",1198.33,{},149507,0,"""Europe""" +2023-01-23,97640,2084,"[\""Phone\"", \""Keyboard\""]",2409.24,"{\""loyalty\"": \""18%\""}",83806,0,"""South America""" +2024-04-26,97641,7793,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",4324.6,{},155998,1,"""South America""" +2024-04-24,97642,8420,"[\""Keyboard\""]",2131.06,{},24320,1,"""Europe""" +2023-08-27,97643,5358,"[\""Charger\""]",2805.94,{},201808,1,"""Asia""" +2023-11-20,97644,6517,"[\""Wireless Mouse\""]",4959.49,"{\""promo\"": \""25%\""}",75450,1,"""North America""" +2024-06-15,97645,6478,"[\""Headphones\""]",3887.8,{},111204,0,"""Africa""" +2023-01-08,97646,679,"[\""Headphones\""]",747.62,{},247428,0,"""Asia""" +2024-10-11,97647,9965,"[\""Laptop\""]",1802.59,"{\"": \""30%\""}",243327,1,"""North America""" +2023-04-17,97648,4738,"[\""Phone\"", \""Charger\""]",2278.64,"{\"": \""30%\""}",263605,1,"""Europe""" +2023-10-09,97649,4686,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",3304.72,"{\""seasonal\"": \""12%\""}",57704,0,"""Africa""" +2023-12-06,97650,8287,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",1780.81,{},4954,0,"""North America""" +2023-10-30,97651,2106,"[\""Wireless Mouse\"", \""Headphones\""]",2562.1,"{\""seasonal\"": \""16%\""}",211665,0,"""Africa""" +2024-05-12,97652,8766,"[\""Keyboard\""]",3605.53,{},1129,1,"""South America""" +2024-12-26,97653,5762,"[\""Tablet\""]",4669.63,{},148350,0,"""North America""" +2023-11-11,97654,9166,"[\""Phone\"", \""Keyboard\""]",2520.1,"{\""promo\"": \""5%\""}",183327,1,"""Asia""" +2024-07-28,97655,2494,"[\""Charger\""]",1007.22,"{\"": \""26%\""}",275969,0,"""Africa""" +2024-04-11,97656,7038,"[\""Headphones\"", \""Tablet\""]",3954.37,"{\""loyalty\"": \""6%\""}",223634,0,"""Europe""" +2023-11-24,97657,9013,"[\""Headphones\"", \""Monitor\""]",1601.12,"{\"": \""6%\""}",295072,1,"""Europe""" +2023-02-05,97658,52,"[\""Charger\"", \""Laptop\""]",2616.48,"{\""promo\"": \""28%\""}",265888,0,"""North America""" +2024-04-22,97659,8564,"[\""Headphones\""]",3053.28,"{\""seasonal\"": \""9%\""}",199701,1,"""North America""" +2023-10-04,97660,1435,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",1949.09,{},206327,1,"""South America""" +2023-02-08,97661,1997,"[\""Headphones\"", \""Monitor\""]",476.11,{},199587,1,"""Asia""" +2024-02-14,97662,797,"[\""Laptop\"", \""Headphones\""]",1128.87,{},252246,0,"""Europe""" +2023-09-25,97663,9283,"[\""Keyboard\"", \""Headphones\""]",3240.59,{},224983,1,"""Asia""" +2024-05-07,97664,4056,"[\""Tablet\""]",2244.85,{},166049,1,"""South America""" +2024-02-22,97665,212,"[\""Monitor\""]",4396.96,"{\""promo\"": \""17%\""}",135394,1,"""North America""" +2023-11-30,97666,5633,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",3364.0,"{\"": \""15%\""}",27632,1,"""Asia""" +2024-07-22,97667,7280,"[\""Wireless Mouse\""]",3809.78,{},296996,1,"""North America""" +2024-09-24,97668,9053,"[\""Headphones\"", \""Charger\"", \""Phone\""]",3330.68,"{\""loyalty\"": \""13%\""}",10430,1,"""South America""" +2024-11-13,97669,6499,"[\""Wireless Mouse\"", \""Monitor\""]",1115.66,{},127992,0,"""Asia""" +2023-05-04,97670,3904,"[\""Phone\"", \""Keyboard\""]",4278.81,{},169624,1,"""South America""" +2024-01-15,97671,8741,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",1787.66,"{\""seasonal\"": \""16%\""}",83344,0,"""Europe""" +2023-10-23,97672,5097,"[\""Keyboard\"", \""Laptop\""]",1895.84,"{\""seasonal\"": \""10%\""}",39392,0,"""South America""" +2023-01-30,97673,1597,"[\""Headphones\""]",1425.31,"{\""loyalty\"": \""29%\""}",27444,0,"""Asia""" +2024-01-19,97674,8986,"[\""Laptop\""]",1289.66,{},171325,0,"""North America""" +2024-08-04,97675,8046,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",494.73,"{\"": \""24%\""}",178599,1,"""South America""" +2024-01-23,97676,9089,"[\""Keyboard\""]",2794.69,"{\""promo\"": \""10%\""}",202163,0,"""Europe""" +2023-01-16,97677,5243,"[\""Tablet\"", \""Headphones\""]",168.72,"{\""promo\"": \""25%\""}",5195,0,"""North America""" +2024-11-27,97678,3878,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",3961.85,"{\""promo\"": \""23%\""}",132362,1,"""South America""" +2023-11-28,97679,2691,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",4768.17,"{\""promo\"": \""15%\""}",66521,1,"""North America""" +2023-12-02,97680,1870,"[\""Headphones\"", \""Charger\"", \""Phone\""]",1644.44,"{\""seasonal\"": \""30%\""}",121549,0,"""Europe""" +2024-11-08,97681,7652,"[\""Keyboard\"", \""Headphones\""]",1059.92,{},10570,0,"""Africa""" +2024-01-16,97682,9439,"[\""Headphones\""]",2877.83,"{\""seasonal\"": \""11%\""}",167650,1,"""South America""" +2024-10-07,97683,5583,"[\""Wireless Mouse\""]",634.03,"{\""seasonal\"": \""22%\""}",15272,0,"""Europe""" +2024-10-01,97684,9574,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",81.15,{},54505,0,"""Asia""" +2024-11-21,97685,4243,"[\""Keyboard\""]",4381.12,{},147712,1,"""Asia""" +2023-07-01,97686,1604,"[\""Wireless Mouse\"", \""Laptop\""]",1152.58,"{\""promo\"": \""20%\""}",157928,1,"""Europe""" +2024-12-10,97687,3448,"[\""Laptop\""]",1697.84,{},144020,1,"""Africa""" +2023-08-26,97688,5364,"[\""Charger\""]",472.49,"{\""seasonal\"": \""20%\""}",147052,0,"""South America""" +2023-12-20,97689,3308,"[\""Wireless Mouse\"", \""Keyboard\""]",4556.86,"{\""promo\"": \""26%\""}",60419,0,"""Europe""" +2024-07-19,97690,4403,"[\""Wireless Mouse\""]",4962.7,"{\""seasonal\"": \""22%\""}",290307,0,"""Europe""" +2024-08-23,97691,7226,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1898.11,{},124539,0,"""North America""" +2023-06-11,97692,9610,"[\""Headphones\""]",1089.41,{},155276,0,"""South America""" +2024-06-19,97693,8237,"[\""Tablet\"", \""Wireless Mouse\""]",2939.43,{},76866,1,"""Europe""" +2023-02-23,97694,3020,"[\""Laptop\""]",1338.03,"{\""seasonal\"": \""13%\""}",121573,0,"""Africa""" +2023-01-27,97695,7069,"[\""Phone\"", \""Wireless Mouse\""]",3826.52,{},4989,0,"""Africa""" +2023-06-22,97696,6361,"[\""Phone\"", \""Laptop\""]",2201.84,{},5318,1,"""Africa""" +2023-10-01,97697,5552,"[\""Laptop\"", \""Monitor\""]",1857.95,"{\""loyalty\"": \""22%\""}",141059,1,"""Europe""" +2023-11-14,97698,5535,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2762.4,{},72315,0,"""Asia""" +2024-05-06,97699,7520,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",3089.39,{},108556,0,"""Europe""" +2024-06-23,97700,8154,"[\""Laptop\"", \""Keyboard\""]",1233.74,"{\""seasonal\"": \""8%\""}",215988,1,"""Asia""" +2024-07-27,97701,4252,"[\""Charger\""]",3902.87,{},110593,1,"""Asia""" +2024-06-24,97702,5201,"[\""Monitor\""]",3659.43,"{\"": \""24%\""}",225733,0,"""Africa""" +2023-04-28,97703,6506,"[\""Charger\"", \""Keyboard\""]",4595.58,"{\""promo\"": \""23%\""}",216970,1,"""North America""" +2024-09-04,97704,1168,"[\""Charger\""]",2192.46,"{\""loyalty\"": \""11%\""}",288110,1,"""Europe""" +2023-07-09,97705,4885,"[\""Keyboard\""]",3925.59,"{\""loyalty\"": \""6%\""}",192969,1,"""Africa""" +2023-11-13,97706,9777,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3992.56,{},238105,0,"""South America""" +2024-04-03,97707,1883,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1060.47,{},184546,0,"""Europe""" +2023-11-29,97708,9302,"[\""Monitor\""]",1651.07,{},253449,1,"""Europe""" +2024-11-06,97709,5908,"[\""Monitor\""]",361.38,{},223294,0,"""South America""" +2023-08-13,97710,8758,"[\""Keyboard\"", \""Charger\""]",1220.09,"{\""seasonal\"": \""10%\""}",121096,0,"""Asia""" +2024-11-10,97711,6951,"[\""Phone\""]",54.89,"{\""seasonal\"": \""23%\""}",8241,0,"""South America""" +2024-02-02,97712,236,"[\""Laptop\"", \""Wireless Mouse\""]",2867.26,"{\"": \""16%\""}",169761,0,"""North America""" +2023-05-05,97713,3907,"[\""Headphones\""]",736.97,"{\"": \""25%\""}",133315,1,"""Africa""" +2024-11-09,97714,9410,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2820.47,"{\""loyalty\"": \""9%\""}",111154,1,"""Africa""" +2023-10-20,97715,5724,"[\""Tablet\""]",999.39,{},273516,1,"""Europe""" +2023-08-03,97716,7760,"[\""Headphones\"", \""Charger\""]",385.3,"{\""loyalty\"": \""15%\""}",203753,1,"""Africa""" +2024-09-24,97717,8080,"[\""Keyboard\"", \""Charger\""]",2730.71,{},79639,0,"""Europe""" +2023-09-02,97718,9761,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",733.66,{},279622,1,"""Asia""" +2023-06-29,97719,2387,"[\""Tablet\""]",3202.73,"{\""seasonal\"": \""16%\""}",251831,1,"""Europe""" +2023-05-06,97720,6743,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2209.69,{},108652,1,"""South America""" +2023-07-08,97721,9222,"[\""Tablet\"", \""Charger\""]",541.45,"{\"": \""6%\""}",43834,1,"""Asia""" +2024-02-07,97722,3937,"[\""Monitor\"", \""Wireless Mouse\""]",2063.46,{},3350,0,"""Africa""" +2023-10-11,97723,5259,"[\""Charger\"", \""Headphones\""]",2931.23,"{\""seasonal\"": \""30%\""}",208050,0,"""Asia""" +2023-06-27,97724,9529,"[\""Monitor\"", \""Wireless Mouse\""]",1023.37,{},263029,1,"""Africa""" +2024-02-04,97725,1465,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",1123.4,{},234367,1,"""Asia""" +2023-02-04,97726,8460,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",4532.03,"{\""promo\"": \""11%\""}",46385,1,"""Africa""" +2023-07-20,97727,3711,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",3400.7,{},40710,0,"""South America""" +2024-12-23,97728,2517,"[\""Keyboard\""]",414.18,{},60127,1,"""North America""" +2023-01-11,97729,1961,"[\""Tablet\""]",4012.45,{},253760,1,"""Europe""" +2023-03-28,97730,3489,"[\""Charger\""]",1403.33,"{\""seasonal\"": \""13%\""}",126395,1,"""Europe""" +2024-09-11,97731,4995,"[\""Keyboard\"", \""Headphones\""]",3072.21,{},163771,1,"""North America""" +2023-12-15,97732,6685,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1720.31,"{\"": \""16%\""}",209523,0,"""Africa""" +2024-04-27,97733,9843,"[\""Tablet\"", \""Charger\""]",4620.91,{},217495,1,"""Africa""" +2023-03-16,97734,7530,"[\""Keyboard\"", \""Laptop\""]",3218.17,"{\""seasonal\"": \""11%\""}",186636,0,"""Asia""" +2023-05-04,97735,122,"[\""Keyboard\""]",455.73,"{\""seasonal\"": \""28%\""}",283355,0,"""Africa""" +2023-12-15,97736,2994,"[\""Tablet\"", \""Monitor\""]",2250.27,{},267744,1,"""Africa""" +2023-01-21,97737,851,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4646.18,"{\""promo\"": \""18%\""}",287634,1,"""North America""" +2023-12-12,97738,3142,"[\""Charger\""]",658.46,{},161133,1,"""Europe""" +2023-02-25,97739,7244,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3524.74,{},166171,0,"""North America""" +2024-12-28,97740,4989,"[\""Charger\""]",1370.4,"{\""promo\"": \""24%\""}",53464,0,"""North America""" +2024-02-19,97741,7487,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",4316.04,"{\""seasonal\"": \""20%\""}",267030,0,"""Africa""" +2024-03-01,97742,9690,"[\""Keyboard\"", \""Monitor\"", \""Laptop\""]",3065.46,"{\""promo\"": \""18%\""}",70619,1,"""North America""" +2024-09-09,97743,2765,"[\""Monitor\""]",4348.55,"{\""promo\"": \""17%\""}",6122,0,"""North America""" +2023-04-21,97744,8933,"[\""Monitor\""]",3564.84,"{\""loyalty\"": \""17%\""}",148781,0,"""North America""" +2023-02-12,97745,8327,"[\""Phone\"", \""Charger\""]",4400.35,"{\""loyalty\"": \""28%\""}",40914,1,"""Europe""" +2023-09-01,97746,4066,"[\""Monitor\"", \""Wireless Mouse\""]",4833.85,{},87995,1,"""Europe""" +2023-11-27,97747,7583,"[\""Headphones\"", \""Laptop\""]",1226.45,"{\""seasonal\"": \""12%\""}",12028,0,"""North America""" +2024-03-15,97748,5977,"[\""Phone\"", \""Wireless Mouse\""]",1901.8,{},100887,1,"""Asia""" +2024-01-31,97749,6471,"[\""Keyboard\""]",3796.19,"{\"": \""27%\""}",199529,1,"""Africa""" +2023-10-04,97750,2196,"[\""Phone\"", \""Laptop\""]",2902.62,"{\""seasonal\"": \""8%\""}",151035,0,"""South America""" +2023-10-11,97751,9598,"[\""Wireless Mouse\""]",588.85,"{\""loyalty\"": \""11%\""}",23513,1,"""Europe""" +2024-02-24,97752,9628,"[\""Headphones\"", \""Phone\""]",4235.69,{},110098,0,"""North America""" +2023-02-27,97753,8211,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1869.42,"{\"": \""18%\""}",113508,0,"""North America""" +2023-11-17,97754,1,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",2330.54,{},248537,1,"""North America""" +2023-11-18,97755,5578,"[\""Keyboard\""]",3422.22,"{\""seasonal\"": \""5%\""}",9787,1,"""Europe""" +2024-11-14,97756,7526,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",294.57,"{\""loyalty\"": \""12%\""}",62436,1,"""South America""" +2024-08-22,97757,1769,"[\""Charger\""]",1194.66,{},25277,0,"""Africa""" +2023-07-19,97758,7172,"[\""Phone\"", \""Laptop\""]",3596.31,"{\"": \""11%\""}",297723,1,"""North America""" +2023-04-15,97759,5612,"[\""Phone\"", \""Laptop\""]",504.67,{},5284,0,"""Africa""" +2023-03-09,97760,5888,"[\""Charger\"", \""Wireless Mouse\""]",3892.75,{},144226,1,"""Africa""" +2024-06-13,97761,5422,"[\""Charger\"", \""Wireless Mouse\""]",1472.77,"{\"": \""6%\""}",231534,0,"""Africa""" +2024-08-10,97762,8013,"[\""Headphones\"", \""Laptop\""]",3002.84,"{\""loyalty\"": \""15%\""}",168534,1,"""South America""" +2024-03-17,97763,1485,"[\""Laptop\""]",2141.32,"{\"": \""26%\""}",215001,1,"""South America""" +2023-02-24,97764,6677,"[\""Monitor\"", \""Phone\""]",1191.49,"{\""seasonal\"": \""8%\""}",162544,0,"""North America""" +2024-10-22,97765,1310,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4057.18,{},66763,1,"""Europe""" +2023-09-23,97766,581,"[\""Keyboard\"", \""Laptop\""]",4523.63,"{\""promo\"": \""18%\""}",90111,0,"""Africa""" +2023-04-08,97767,7059,"[\""Charger\"", \""Laptop\""]",1510.96,{},52601,0,"""Africa""" +2023-06-14,97768,3970,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",615.43,"{\""loyalty\"": \""27%\""}",289189,0,"""South America""" +2023-02-05,97769,1260,"[\""Laptop\""]",1559.08,"{\""promo\"": \""7%\""}",126481,1,"""North America""" +2024-08-04,97770,3954,"[\""Charger\"", \""Monitor\""]",1689.74,{},67978,1,"""Africa""" +2024-12-03,97771,3764,"[\""Wireless Mouse\""]",642.17,{},39544,1,"""Africa""" +2023-06-09,97772,603,"[\""Laptop\""]",2962.07,{},188551,1,"""Europe""" +2023-10-06,97773,7998,"[\""Laptop\"", \""Charger\""]",4993.9,"{\""promo\"": \""22%\""}",150123,1,"""Europe""" +2024-04-22,97774,7030,"[\""Phone\"", \""Tablet\""]",4778.62,{},154515,0,"""South America""" +2023-01-13,97775,3857,"[\""Wireless Mouse\""]",3736.95,"{\""promo\"": \""25%\""}",86691,0,"""Europe""" +2024-03-24,97776,1153,"[\""Laptop\""]",385.79,{},91924,1,"""Asia""" +2023-03-26,97777,2663,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",178.88,"{\"": \""13%\""}",167729,1,"""Africa""" +2023-06-10,97778,8303,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",3340.03,"{\""promo\"": \""6%\""}",159856,1,"""Africa""" +2024-10-19,97779,771,"[\""Headphones\""]",3825.65,{},218652,1,"""Africa""" +2024-12-19,97780,4607,"[\""Keyboard\"", \""Monitor\""]",4887.28,{},57839,1,"""Africa""" +2024-08-28,97781,7713,"[\""Charger\"", \""Headphones\""]",4438.11,"{\""loyalty\"": \""6%\""}",295738,1,"""Africa""" +2024-04-27,97782,8857,"[\""Charger\""]",2526.88,{},13401,1,"""Europe""" +2023-10-26,97783,9754,"[\""Laptop\""]",1998.43,{},11737,1,"""Africa""" +2024-06-14,97784,7256,"[\""Keyboard\"", \""Charger\""]",2107.5,{},244334,0,"""Africa""" +2024-09-09,97785,9106,"[\""Monitor\"", \""Headphones\""]",1121.42,"{\""seasonal\"": \""8%\""}",199401,1,"""Africa""" +2023-08-21,97786,9320,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",3602.18,"{\""seasonal\"": \""21%\""}",44751,1,"""South America""" +2024-01-20,97787,4089,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3857.73,{},58441,0,"""Africa""" +2023-05-31,97788,8577,"[\""Keyboard\""]",574.5,"{\""loyalty\"": \""14%\""}",47731,1,"""Europe""" +2024-02-02,97789,4681,"[\""Laptop\""]",4069.69,{},288184,1,"""North America""" +2023-01-23,97790,3450,"[\""Tablet\"", \""Phone\""]",2290.63,"{\""seasonal\"": \""7%\""}",266094,1,"""Asia""" +2023-07-31,97791,1350,"[\""Headphones\"", \""Laptop\""]",3390.52,"{\""seasonal\"": \""29%\""}",188962,1,"""North America""" +2024-03-23,97792,3651,"[\""Keyboard\""]",3079.12,"{\""loyalty\"": \""18%\""}",77098,0,"""Africa""" +2023-10-19,97793,2115,"[\""Charger\""]",931.47,{},32941,0,"""South America""" +2024-07-21,97794,8451,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",2482.01,{},32801,0,"""Africa""" +2023-10-11,97795,3390,"[\""Keyboard\"", \""Laptop\""]",4399.28,"{\""seasonal\"": \""20%\""}",122019,0,"""North America""" +2023-03-02,97796,8061,"[\""Keyboard\""]",3127.16,{},69419,0,"""Europe""" +2023-08-23,97797,2938,"[\""Charger\""]",1409.38,{},85223,0,"""South America""" +2024-01-15,97798,5421,"[\""Tablet\"", \""Wireless Mouse\""]",1925.33,{},15924,0,"""Asia""" +2023-09-08,97799,6930,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",824.12,{},144255,1,"""Asia""" +2024-09-15,97800,1083,"[\""Keyboard\"", \""Laptop\""]",3214.58,"{\""promo\"": \""20%\""}",192925,0,"""Europe""" +2023-02-13,97801,4619,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3093.3,"{\""seasonal\"": \""13%\""}",58942,0,"""South America""" +2023-03-30,97802,6365,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",2139.18,"{\""loyalty\"": \""30%\""}",86820,0,"""Europe""" +2023-09-07,97803,3327,"[\""Phone\""]",4054.15,{},243191,0,"""Asia""" +2023-02-06,97804,9879,"[\""Phone\"", \""Headphones\""]",4134.43,"{\""promo\"": \""10%\""}",39940,1,"""Europe""" +2023-07-24,97805,5320,"[\""Phone\"", \""Headphones\""]",4973.28,{},2430,0,"""Asia""" +2024-01-16,97806,8450,"[\""Charger\"", \""Monitor\"", \""Phone\""]",2865.29,"{\""loyalty\"": \""11%\""}",62241,1,"""South America""" +2023-10-11,97807,5828,"[\""Phone\"", \""Laptop\""]",4289.68,"{\"": \""7%\""}",44371,1,"""North America""" +2023-05-27,97808,5412,"[\""Laptop\""]",2448.35,{},215451,0,"""North America""" +2024-10-22,97809,7881,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",75.23,{},130948,1,"""North America""" +2023-03-31,97810,7253,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1292.38,"{\"": \""21%\""}",55499,0,"""Africa""" +2023-12-19,97811,8055,"[\""Wireless Mouse\"", \""Keyboard\""]",1343.41,"{\""promo\"": \""21%\""}",29624,0,"""Africa""" +2024-06-04,97812,4506,"[\""Headphones\"", \""Phone\""]",1712.52,"{\"": \""18%\""}",257262,0,"""Asia""" +2023-08-04,97813,4826,"[\""Tablet\"", \""Wireless Mouse\""]",2341.97,"{\""seasonal\"": \""22%\""}",226286,0,"""Europe""" +2023-12-09,97814,6249,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",502.94,"{\""loyalty\"": \""21%\""}",197421,0,"""North America""" +2023-04-17,97815,3582,"[\""Headphones\"", \""Charger\""]",4871.99,{},139991,0,"""South America""" +2023-12-17,97816,874,"[\""Tablet\""]",2928.16,"{\"": \""7%\""}",235493,0,"""North America""" +2024-02-01,97817,1204,"[\""Keyboard\"", \""Charger\""]",3901.88,"{\""loyalty\"": \""20%\""}",59276,1,"""Europe""" +2023-07-09,97818,6459,"[\""Phone\"", \""Wireless Mouse\"", \""Laptop\""]",652.55,"{\"": \""10%\""}",297523,0,"""Africa""" +2024-11-16,97819,2351,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",3975.23,{},24386,1,"""South America""" +2024-08-15,97820,4777,"[\""Charger\"", \""Laptop\""]",3334.13,{},162359,1,"""South America""" +2023-06-21,97821,5533,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",3349.52,"{\""loyalty\"": \""26%\""}",55973,1,"""North America""" +2023-06-18,97822,8762,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4302.28,"{\""seasonal\"": \""16%\""}",36601,1,"""South America""" +2023-01-15,97823,2270,"[\""Laptop\""]",4658.93,{},71421,1,"""South America""" +2023-05-03,97824,9810,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",3774.67,{},143360,0,"""North America""" +2024-01-26,97825,8300,"[\""Tablet\"", \""Phone\""]",3224.11,"{\""seasonal\"": \""26%\""}",133663,0,"""Africa""" +2024-10-21,97826,4317,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",4841.13,{},122991,1,"""Asia""" +2023-03-30,97827,2266,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1274.9,"{\""promo\"": \""8%\""}",174856,0,"""North America""" +2024-02-22,97828,4763,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",407.55,{},218262,0,"""North America""" +2023-04-29,97829,3031,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3662.6,{},96318,1,"""Africa""" +2024-04-28,97830,1061,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3692.37,{},292925,0,"""Africa""" +2023-07-31,97831,5920,"[\""Monitor\""]",2350.0,{},193536,0,"""Asia""" +2024-11-14,97832,2784,"[\""Keyboard\"", \""Monitor\""]",2402.98,{},74306,1,"""Europe""" +2024-08-04,97833,2925,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",650.65,"{\""seasonal\"": \""26%\""}",97719,1,"""North America""" +2023-03-30,97834,9051,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",1342.61,"{\"": \""27%\""}",209477,1,"""South America""" +2024-09-25,97835,9271,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3604.15,"{\""seasonal\"": \""29%\""}",139524,0,"""Asia""" +2024-09-22,97836,8472,"[\""Phone\""]",1004.68,"{\""loyalty\"": \""26%\""}",299829,0,"""Africa""" +2024-10-20,97837,4740,"[\""Laptop\""]",1098.33,"{\""loyalty\"": \""13%\""}",171572,1,"""Europe""" +2024-09-15,97838,4654,"[\""Headphones\""]",4754.4,"{\"": \""24%\""}",231771,1,"""Europe""" +2023-12-05,97839,4805,"[\""Headphones\"", \""Wireless Mouse\""]",1913.16,"{\""promo\"": \""16%\""}",7758,1,"""South America""" +2024-08-14,97840,1397,"[\""Charger\""]",2831.78,"{\"": \""25%\""}",36911,1,"""Africa""" +2024-01-23,97841,346,"[\""Laptop\""]",2633.17,{},192195,1,"""North America""" +2024-06-23,97842,4189,"[\""Laptop\"", \""Monitor\""]",4604.12,"{\""promo\"": \""9%\""}",121143,0,"""South America""" +2023-04-07,97843,5258,"[\""Laptop\"", \""Phone\""]",2831.4,{},168030,0,"""Asia""" +2024-02-26,97844,7652,"[\""Laptop\"", \""Keyboard\""]",4638.89,"{\""seasonal\"": \""21%\""}",254197,1,"""North America""" +2024-03-06,97845,9809,"[\""Phone\""]",2022.46,"{\"": \""5%\""}",270967,0,"""Europe""" +2023-03-03,97846,8370,"[\""Charger\"", \""Monitor\""]",787.17,"{\""promo\"": \""28%\""}",141434,1,"""Africa""" +2024-12-28,97847,891,"[\""Wireless Mouse\""]",1071.48,{},14181,0,"""Europe""" +2024-11-09,97848,5601,"[\""Tablet\""]",3027.7,"{\""seasonal\"": \""16%\""}",296796,0,"""Asia""" +2023-02-09,97849,8349,"[\""Wireless Mouse\"", \""Tablet\""]",1055.61,{},120347,0,"""Europe""" +2024-02-11,97850,8072,"[\""Wireless Mouse\"", \""Tablet\""]",3982.59,{},226747,1,"""Asia""" +2023-10-19,97851,4975,"[\""Keyboard\""]",477.26,{},252347,0,"""Asia""" +2024-12-09,97852,3346,"[\""Headphones\""]",4979.36,"{\""loyalty\"": \""27%\""}",245981,0,"""South America""" +2024-05-24,97853,6932,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",3206.18,{},119181,1,"""Europe""" +2024-10-07,97854,626,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3895.76,"{\""seasonal\"": \""29%\""}",36343,1,"""Europe""" +2023-04-16,97855,5212,"[\""Headphones\""]",3773.4,{},58771,1,"""Asia""" +2023-07-13,97856,5232,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",4768.01,{},248823,0,"""South America""" +2024-12-18,97857,7823,"[\""Wireless Mouse\"", \""Keyboard\""]",779.03,{},2168,0,"""North America""" +2023-03-12,97858,8029,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",878.56,{},241006,0,"""South America""" +2023-07-20,97859,5720,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4620.0,{},217097,1,"""Europe""" +2024-06-11,97860,4459,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4365.04,{},175311,1,"""South America""" +2024-04-23,97861,7048,"[\""Monitor\"", \""Phone\""]",1599.14,"{\""loyalty\"": \""20%\""}",201640,0,"""North America""" +2024-09-21,97862,4913,"[\""Tablet\""]",3620.05,{},152715,1,"""South America""" +2023-08-28,97863,7030,"[\""Monitor\"", \""Tablet\""]",1983.29,"{\""promo\"": \""26%\""}",233478,1,"""South America""" +2024-12-14,97864,6778,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",4532.02,{},38933,1,"""Asia""" +2023-06-28,97865,5142,"[\""Monitor\""]",3577.46,"{\"": \""13%\""}",173049,0,"""North America""" +2024-02-27,97866,6620,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",4873.8,{},280358,0,"""Europe""" +2023-07-06,97867,261,"[\""Monitor\""]",4796.47,{},84949,1,"""North America""" +2023-05-02,97868,7505,"[\""Headphones\"", \""Wireless Mouse\""]",361.27,{},17047,1,"""North America""" +2023-01-05,97869,6973,"[\""Tablet\""]",2948.75,{},147086,1,"""Asia""" +2024-01-01,97870,7563,"[\""Headphones\""]",3678.24,{},7809,0,"""Asia""" +2024-11-12,97871,5804,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",3207.37,"{\""seasonal\"": \""29%\""}",172353,1,"""Europe""" +2024-03-01,97872,6567,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",2831.66,"{\"": \""13%\""}",261681,1,"""Africa""" +2024-06-07,97873,2004,"[\""Headphones\""]",2581.32,"{\""promo\"": \""30%\""}",238355,1,"""Asia""" +2023-08-23,97874,9436,"[\""Phone\""]",765.84,"{\""loyalty\"": \""6%\""}",43957,0,"""Africa""" +2024-07-22,97875,5708,"[\""Phone\"", \""Headphones\""]",3304.75,"{\"": \""6%\""}",292362,1,"""Asia""" +2024-12-02,97876,8569,"[\""Wireless Mouse\""]",1974.99,"{\"": \""25%\""}",191807,0,"""Europe""" +2023-09-05,97877,9263,"[\""Keyboard\"", \""Laptop\""]",4888.24,"{\""loyalty\"": \""10%\""}",119735,0,"""Asia""" +2024-09-03,97878,9948,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",4491.92,{},221226,1,"""Africa""" +2024-04-09,97879,1945,"[\""Wireless Mouse\""]",4974.37,{},121493,1,"""Asia""" +2023-07-31,97880,4605,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1512.69,"{\""seasonal\"": \""11%\""}",285670,0,"""Africa""" +2024-06-03,97881,7115,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",3858.06,"{\""seasonal\"": \""19%\""}",295805,0,"""South America""" +2023-03-27,97882,3037,"[\""Monitor\""]",3203.57,{},61699,1,"""Europe""" +2023-03-16,97883,5884,"[\""Phone\"", \""Wireless Mouse\""]",601.47,"{\"": \""8%\""}",295011,1,"""Europe""" +2024-06-27,97884,4634,"[\""Tablet\"", \""Wireless Mouse\""]",3968.02,{},110760,0,"""Europe""" +2024-07-19,97885,231,"[\""Laptop\"", \""Wireless Mouse\""]",3917.45,{},274648,1,"""South America""" +2023-02-26,97886,3918,"[\""Laptop\"", \""Keyboard\""]",3592.59,"{\""promo\"": \""28%\""}",282537,0,"""South America""" +2024-12-05,97887,7262,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",4663.74,"{\""seasonal\"": \""7%\""}",123201,0,"""North America""" +2023-03-26,97888,2685,"[\""Tablet\"", \""Keyboard\""]",2661.04,{},129452,1,"""North America""" +2024-09-05,97889,1174,"[\""Wireless Mouse\"", \""Keyboard\""]",4467.48,"{\""promo\"": \""30%\""}",108019,1,"""North America""" +2024-08-09,97890,3529,"[\""Keyboard\"", \""Headphones\"", \""Charger\""]",4875.39,"{\""promo\"": \""17%\""}",158742,1,"""North America""" +2024-11-23,97891,3866,"[\""Phone\""]",3641.74,"{\""loyalty\"": \""24%\""}",64115,1,"""South America""" +2024-06-06,97892,857,"[\""Phone\"", \""Charger\""]",2294.32,"{\""promo\"": \""14%\""}",137153,0,"""Asia""" +2023-02-26,97893,9591,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",4462.69,"{\""promo\"": \""18%\""}",134745,1,"""North America""" +2024-11-19,97894,2008,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3235.0,"{\"": \""23%\""}",296589,1,"""North America""" +2023-12-19,97895,7793,"[\""Headphones\""]",3442.92,{},248216,1,"""Asia""" +2024-02-23,97896,7202,"[\""Tablet\"", \""Keyboard\""]",2633.4,"{\""loyalty\"": \""13%\""}",41407,0,"""Europe""" +2024-02-21,97897,3887,"[\""Wireless Mouse\""]",4381.6,{},244325,0,"""South America""" +2023-02-09,97898,9566,"[\""Tablet\""]",1276.75,{},215096,0,"""South America""" +2024-04-17,97899,7437,"[\""Headphones\""]",4469.87,{},80479,1,"""North America""" +2023-05-09,97900,7778,"[\""Charger\"", \""Monitor\""]",4300.05,"{\"": \""21%\""}",36661,1,"""Europe""" +2023-05-26,97901,3244,"[\""Headphones\"", \""Charger\""]",1870.81,"{\""seasonal\"": \""9%\""}",297248,1,"""Africa""" +2023-03-13,97902,1075,"[\""Laptop\"", \""Charger\""]",1399.44,"{\""seasonal\"": \""29%\""}",277094,0,"""Europe""" +2024-11-02,97903,7513,"[\""Headphones\""]",3531.62,{},35341,1,"""North America""" +2024-07-12,97904,8571,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",79.53,{},134623,1,"""Europe""" +2024-10-07,97905,4201,"[\""Monitor\""]",1326.3,{},91032,0,"""Africa""" +2024-06-20,97906,2957,"[\""Tablet\"", \""Wireless Mouse\""]",4321.83,{},248691,1,"""Africa""" +2023-07-30,97907,603,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",3312.53,{},211799,1,"""South America""" +2024-03-20,97908,6207,"[\""Phone\""]",3109.28,"{\""loyalty\"": \""29%\""}",285904,0,"""South America""" +2023-09-22,97909,9304,"[\""Monitor\"", \""Tablet\""]",2225.85,"{\"": \""13%\""}",119246,1,"""Africa""" +2023-09-04,97910,1545,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",2550.67,{},49700,0,"""Europe""" +2024-12-16,97911,6351,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",1222.17,{},130636,1,"""South America""" +2024-08-23,97912,4037,"[\""Laptop\"", \""Wireless Mouse\""]",4139.3,{},109449,0,"""Africa""" +2024-03-10,97913,7321,"[\""Wireless Mouse\"", \""Tablet\""]",2070.02,{},23484,1,"""Asia""" +2023-02-02,97914,287,"[\""Tablet\"", \""Laptop\""]",2258.13,"{\""seasonal\"": \""13%\""}",48560,0,"""Europe""" +2023-02-09,97915,2982,"[\""Phone\""]",4035.63,"{\""seasonal\"": \""10%\""}",173008,1,"""Europe""" +2023-01-31,97916,2214,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4673.23,"{\""promo\"": \""6%\""}",116091,0,"""South America""" +2023-04-17,97917,2435,"[\""Laptop\"", \""Phone\""]",356.39,"{\""seasonal\"": \""8%\""}",246369,1,"""Asia""" +2023-11-23,97918,2664,"[\""Laptop\""]",3912.56,"{\"": \""5%\""}",265556,0,"""North America""" +2023-04-27,97919,1749,"[\""Tablet\"", \""Monitor\""]",3046.59,"{\"": \""29%\""}",57485,1,"""North America""" +2024-01-19,97920,4435,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",2084.36,"{\""promo\"": \""30%\""}",112774,1,"""North America""" +2024-12-30,97921,3020,"[\""Charger\"", \""Laptop\""]",4391.27,"{\""seasonal\"": \""24%\""}",193786,1,"""Europe""" +2023-08-07,97922,3271,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",3737.57,"{\""seasonal\"": \""17%\""}",82793,0,"""Africa""" +2023-12-19,97923,9178,"[\""Phone\""]",4763.89,{},147309,1,"""North America""" +2024-08-11,97924,4841,"[\""Monitor\"", \""Laptop\""]",3457.31,"{\"": \""5%\""}",102754,0,"""Africa""" +2023-09-27,97925,1821,"[\""Laptop\""]",3614.44,{},117477,1,"""North America""" +2024-10-31,97926,6336,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",1388.62,"{\""seasonal\"": \""5%\""}",106120,0,"""Africa""" +2024-05-04,97927,2033,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4845.82,"{\""seasonal\"": \""7%\""}",248437,0,"""North America""" +2023-10-28,97928,5349,"[\""Laptop\""]",1254.93,{},85712,1,"""South America""" +2024-05-02,97929,5310,"[\""Monitor\""]",2237.79,"{\"": \""22%\""}",250935,0,"""South America""" +2024-04-15,97930,4803,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",4390.83,{},14461,0,"""South America""" +2023-02-27,97931,3651,"[\""Keyboard\""]",1448.65,{},127089,0,"""North America""" +2023-08-15,97932,9342,"[\""Laptop\"", \""Charger\""]",1779.49,{},294061,1,"""Asia""" +2024-11-12,97933,8106,"[\""Phone\"", \""Monitor\"", \""Charger\""]",2503.14,{},270472,1,"""Asia""" +2023-11-20,97934,6258,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",2710.6,"{\""seasonal\"": \""8%\""}",269590,1,"""Europe""" +2023-06-04,97935,9060,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",478.37,"{\""seasonal\"": \""24%\""}",1184,1,"""Asia""" +2023-01-30,97936,4102,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",1111.17,"{\""promo\"": \""14%\""}",150864,1,"""Asia""" +2024-04-11,97937,2442,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",3992.94,"{\""seasonal\"": \""9%\""}",59963,0,"""North America""" +2024-02-13,97938,8975,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",4085.33,"{\""loyalty\"": \""22%\""}",182035,0,"""Asia""" +2024-02-23,97939,8882,"[\""Monitor\"", \""Charger\""]",1226.89,"{\""seasonal\"": \""19%\""}",167281,1,"""Asia""" +2024-10-29,97940,1642,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4002.47,{},115297,1,"""Europe""" +2024-02-23,97941,8563,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1644.74,{},134156,0,"""North America""" +2023-02-15,97942,4721,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4735.55,"{\""promo\"": \""30%\""}",90994,1,"""Africa""" +2023-02-27,97943,7172,"[\""Keyboard\""]",4427.69,"{\""promo\"": \""22%\""}",287161,0,"""Europe""" +2023-11-01,97944,2518,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1493.5,{},288645,0,"""North America""" +2023-05-20,97945,2990,"[\""Keyboard\""]",3396.04,{},215280,1,"""South America""" +2024-11-20,97946,3898,"[\""Charger\"", \""Headphones\"", \""Laptop\""]",123.08,"{\""seasonal\"": \""30%\""}",123214,0,"""South America""" +2023-07-07,97947,2969,"[\""Wireless Mouse\""]",1119.52,"{\""promo\"": \""8%\""}",299157,1,"""Africa""" +2023-10-19,97948,8780,"[\""Charger\""]",917.72,{},132300,1,"""Europe""" +2024-09-23,97949,1534,"[\""Monitor\"", \""Wireless Mouse\""]",1926.35,"{\""promo\"": \""24%\""}",234894,1,"""Europe""" +2024-03-17,97950,1730,"[\""Charger\""]",2167.6,{},35008,0,"""South America""" +2024-12-11,97951,2796,"[\""Phone\"", \""Laptop\""]",4858.78,"{\""promo\"": \""24%\""}",227403,1,"""Europe""" +2024-12-26,97952,4622,"[\""Tablet\"", \""Monitor\""]",692.02,"{\"": \""24%\""}",27052,1,"""Asia""" +2024-12-18,97953,3998,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",153.69,"{\""seasonal\"": \""7%\""}",283482,0,"""Asia""" +2023-02-27,97954,2385,"[\""Charger\""]",1102.68,"{\"": \""27%\""}",176699,0,"""Asia""" +2024-09-16,97955,8581,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",365.51,{},31116,1,"""Africa""" +2024-05-09,97956,5110,"[\""Monitor\""]",2691.37,"{\""loyalty\"": \""18%\""}",271164,1,"""Asia""" +2024-04-10,97957,4066,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",1004.76,{},57444,0,"""Asia""" +2023-04-03,97958,6611,"[\""Keyboard\""]",1449.85,"{\""loyalty\"": \""22%\""}",119455,0,"""Asia""" +2024-12-03,97959,5099,"[\""Laptop\"", \""Monitor\""]",858.71,"{\""promo\"": \""20%\""}",230748,0,"""Europe""" +2023-07-15,97960,7242,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1016.52,{},33701,1,"""Asia""" +2024-09-28,97961,4289,"[\""Keyboard\"", \""Monitor\""]",4076.13,{},61710,0,"""Asia""" +2024-02-02,97962,8110,"[\""Charger\""]",2339.28,{},220595,0,"""Africa""" +2023-02-01,97963,2433,"[\""Charger\"", \""Laptop\""]",2823.33,"{\""seasonal\"": \""10%\""}",219324,0,"""North America""" +2024-02-27,97964,9895,"[\""Keyboard\"", \""Wireless Mouse\""]",1221.94,"{\"": \""23%\""}",292232,1,"""South America""" +2024-12-18,97965,4943,"[\""Wireless Mouse\""]",308.08,"{\""seasonal\"": \""20%\""}",33452,0,"""Africa""" +2024-12-11,97966,4217,"[\""Headphones\"", \""Tablet\""]",1066.3,{},127528,0,"""Asia""" +2024-09-17,97967,20,"[\""Tablet\""]",516.71,{},115867,0,"""South America""" +2024-02-08,97968,268,"[\""Monitor\"", \""Laptop\""]",4626.35,{},162072,0,"""North America""" +2024-04-01,97969,3598,"[\""Laptop\"", \""Charger\""]",3624.23,{},227424,0,"""Asia""" +2024-05-03,97970,2547,"[\""Tablet\""]",3557.18,"{\"": \""15%\""}",262703,1,"""South America""" +2023-08-05,97971,8258,"[\""Keyboard\""]",4440.66,"{\""seasonal\"": \""10%\""}",236884,1,"""Asia""" +2023-07-24,97972,8161,"[\""Laptop\"", \""Wireless Mouse\""]",2089.56,"{\""loyalty\"": \""14%\""}",126708,1,"""Asia""" +2024-11-02,97973,9227,"[\""Wireless Mouse\""]",188.25,{},128601,0,"""Africa""" +2024-12-03,97974,2883,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",1078.43,"{\""promo\"": \""7%\""}",260375,1,"""Asia""" +2024-06-25,97975,4199,"[\""Laptop\"", \""Headphones\"", \""Charger\""]",2065.63,{},161381,1,"""Asia""" +2024-05-18,97976,2716,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3112.4,{},244217,0,"""Africa""" +2024-09-24,97977,2866,"[\""Headphones\"", \""Phone\""]",519.71,"{\""seasonal\"": \""25%\""}",56131,1,"""Africa""" +2024-11-12,97978,8296,"[\""Monitor\""]",1943.41,{},237798,0,"""South America""" +2023-11-02,97979,1008,"[\""Phone\"", \""Charger\"", \""Tablet\""]",604.77,"{\""loyalty\"": \""5%\""}",259217,1,"""North America""" +2023-02-12,97980,330,"[\""Tablet\"", \""Charger\""]",3273.49,{},172708,1,"""Europe""" +2023-06-30,97981,9803,"[\""Headphones\""]",1697.84,"{\"": \""8%\""}",132141,1,"""South America""" +2023-10-20,97982,6971,"[\""Wireless Mouse\""]",66.46,{},167977,0,"""Asia""" +2024-07-18,97983,4809,"[\""Phone\"", \""Keyboard\""]",4772.93,{},293699,0,"""Europe""" +2023-07-23,97984,555,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",2330.56,"{\""seasonal\"": \""16%\""}",166294,1,"""North America""" +2023-08-22,97985,3326,"[\""Headphones\"", \""Laptop\""]",2807.3,{},51814,1,"""South America""" +2023-12-13,97986,9809,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",1439.05,"{\"": \""8%\""}",231317,0,"""Asia""" +2023-12-11,97987,2385,"[\""Charger\""]",576.52,{},34654,1,"""Asia""" +2023-08-22,97988,6878,"[\""Charger\"", \""Tablet\""]",958.68,{},201439,1,"""North America""" +2023-09-03,97989,4273,"[\""Phone\"", \""Charger\""]",4315.59,{},127634,1,"""Africa""" +2023-10-25,97990,6038,"[\""Laptop\""]",837.37,"{\"": \""30%\""}",192410,0,"""South America""" +2024-10-25,97991,1481,"[\""Laptop\"", \""Charger\""]",2814.09,{},72327,0,"""South America""" +2023-07-21,97992,2876,"[\""Keyboard\"", \""Wireless Mouse\""]",2332.97,"{\""seasonal\"": \""13%\""}",143072,0,"""North America""" +2024-04-16,97993,438,"[\""Headphones\""]",4034.05,{},110545,0,"""South America""" +2024-09-19,97994,2440,"[\""Tablet\""]",3828.99,"{\"": \""13%\""}",247908,1,"""North America""" +2023-05-20,97995,1602,"[\""Headphones\"", \""Monitor\"", \""Charger\""]",3252.26,{},139017,1,"""North America""" +2024-07-09,97996,5552,"[\""Monitor\"", \""Headphones\""]",1378.57,"{\""promo\"": \""28%\""}",14619,0,"""South America""" +2023-01-23,97997,5704,"[\""Phone\"", \""Headphones\"", \""Charger\""]",3898.07,{},183931,1,"""Africa""" +2024-11-19,97998,6787,"[\""Laptop\""]",2193.54,"{\""promo\"": \""23%\""}",126666,1,"""South America""" +2024-02-07,97999,2770,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",1355.4,"{\"": \""25%\""}",282905,0,"""Africa""" +2023-06-26,98000,4327,"[\""Charger\""]",781.68,{},55153,1,"""Europe""" +2024-10-30,98001,1655,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",2108.5,"{\""seasonal\"": \""9%\""}",293008,0,"""North America""" +2023-06-14,98002,7910,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",2826.29,"{\"": \""14%\""}",216063,1,"""Europe""" +2023-10-25,98003,3379,"[\""Wireless Mouse\""]",4281.64,{},293397,1,"""Europe""" +2023-11-14,98004,7767,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4362.42,{},201789,0,"""North America""" +2023-03-16,98005,4553,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",2892.99,{},214939,0,"""Europe""" +2024-09-08,98006,8826,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",4003.18,{},192012,0,"""South America""" +2024-12-10,98007,641,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2981.92,{},207700,1,"""South America""" +2023-03-23,98008,5358,"[\""Laptop\"", \""Charger\""]",1960.07,{},65706,0,"""North America""" +2024-08-25,98009,2925,"[\""Laptop\""]",259.98,"{\""loyalty\"": \""17%\""}",258993,1,"""Africa""" +2024-04-17,98010,5755,"[\""Monitor\"", \""Headphones\""]",1075.58,"{\"": \""18%\""}",134503,1,"""North America""" +2024-01-17,98011,7221,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",3441.23,"{\""seasonal\"": \""13%\""}",125114,1,"""Asia""" +2023-05-10,98012,8849,"[\""Monitor\"", \""Headphones\"", \""Keyboard\""]",800.92,{},153635,0,"""Europe""" +2023-04-19,98013,3189,"[\""Phone\""]",3856.83,"{\"": \""27%\""}",151264,0,"""Europe""" +2023-03-17,98014,826,"[\""Headphones\"", \""Charger\""]",3591.94,{},183141,0,"""South America""" +2023-09-23,98015,9979,"[\""Headphones\"", \""Wireless Mouse\""]",552.93,{},165858,1,"""South America""" +2023-07-06,98016,8577,"[\""Laptop\"", \""Phone\""]",130.29,"{\"": \""28%\""}",2530,1,"""Europe""" +2023-06-12,98017,9315,"[\""Phone\""]",2943.03,"{\""loyalty\"": \""8%\""}",93358,1,"""North America""" +2024-07-12,98018,3348,"[\""Headphones\""]",4196.35,{},244426,0,"""Europe""" +2023-05-27,98019,1761,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",3591.87,"{\""seasonal\"": \""23%\""}",218991,1,"""North America""" +2023-12-04,98020,2847,"[\""Monitor\""]",662.79,"{\""promo\"": \""13%\""}",293606,1,"""North America""" +2023-02-03,98021,5592,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1122.64,{},59575,0,"""South America""" +2024-11-15,98022,8897,"[\""Laptop\"", \""Tablet\""]",1429.24,{},6275,0,"""Europe""" +2023-10-26,98023,9137,"[\""Monitor\"", \""Laptop\""]",3408.49,"{\"": \""5%\""}",161628,1,"""Africa""" +2024-06-27,98024,5194,"[\""Phone\"", \""Laptop\""]",727.58,{},119808,0,"""Asia""" +2023-11-18,98025,3082,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",568.5,"{\""seasonal\"": \""10%\""}",296258,1,"""South America""" +2023-05-21,98026,2008,"[\""Charger\"", \""Wireless Mouse\""]",4630.66,{},111890,1,"""South America""" +2024-07-20,98027,841,"[\""Keyboard\""]",2862.85,{},50504,1,"""North America""" +2024-02-06,98028,4196,"[\""Monitor\""]",1744.67,"{\""seasonal\"": \""11%\""}",125977,0,"""Asia""" +2024-05-03,98029,7591,"[\""Tablet\"", \""Laptop\""]",3471.5,"{\""seasonal\"": \""15%\""}",12036,0,"""South America""" +2023-05-03,98030,6809,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",2857.41,{},170891,1,"""Europe""" +2024-02-13,98031,6541,"[\""Phone\""]",1283.01,"{\"": \""21%\""}",81639,1,"""North America""" +2023-06-29,98032,1318,"[\""Keyboard\"", \""Monitor\""]",4536.5,{},7729,0,"""North America""" +2023-05-09,98033,7114,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",4190.61,"{\"": \""19%\""}",48051,1,"""North America""" +2024-07-24,98034,4516,"[\""Wireless Mouse\"", \""Monitor\""]",4711.48,"{\""loyalty\"": \""6%\""}",101893,0,"""Asia""" +2024-03-11,98035,7156,"[\""Monitor\""]",1579.96,{},279622,1,"""Asia""" +2023-11-03,98036,5636,"[\""Wireless Mouse\"", \""Headphones\""]",3184.9,"{\""promo\"": \""16%\""}",201753,1,"""North America""" +2023-01-01,98037,6961,"[\""Wireless Mouse\"", \""Keyboard\""]",2110.61,{},183942,1,"""South America""" +2024-08-17,98038,2573,"[\""Keyboard\"", \""Monitor\""]",2655.28,{},120057,0,"""North America""" +2023-01-07,98039,6124,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",644.11,"{\""seasonal\"": \""23%\""}",13868,0,"""North America""" +2023-04-09,98040,9159,"[\""Monitor\"", \""Headphones\""]",1006.15,{},222568,0,"""North America""" +2024-05-26,98041,4052,"[\""Charger\""]",2190.51,"{\""seasonal\"": \""11%\""}",73551,1,"""South America""" +2024-10-26,98042,1877,"[\""Phone\"", \""Tablet\""]",1392.54,"{\""promo\"": \""15%\""}",145284,1,"""South America""" +2024-10-11,98043,6731,"[\""Wireless Mouse\""]",4667.1,"{\""promo\"": \""25%\""}",285670,0,"""Asia""" +2024-11-13,98044,220,"[\""Phone\"", \""Monitor\"", \""Laptop\""]",1914.0,{},129912,1,"""South America""" +2024-12-11,98045,5646,"[\""Tablet\"", \""Monitor\""]",3305.39,"{\""loyalty\"": \""9%\""}",236071,0,"""Europe""" +2023-11-22,98046,7405,"[\""Phone\"", \""Tablet\"", \""Charger\""]",80.4,"{\""seasonal\"": \""25%\""}",266013,1,"""South America""" +2024-03-13,98047,7547,"[\""Monitor\"", \""Wireless Mouse\""]",4043.24,"{\""promo\"": \""21%\""}",140785,1,"""Europe""" +2024-04-16,98048,9243,"[\""Monitor\""]",3824.4,{},49198,1,"""North America""" +2024-04-01,98049,8292,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",1145.31,"{\""seasonal\"": \""28%\""}",198004,1,"""South America""" +2024-11-06,98050,8412,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",299.96,{},258909,0,"""North America""" +2024-10-07,98051,8330,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2938.48,"{\""seasonal\"": \""23%\""}",243695,1,"""North America""" +2024-02-04,98052,640,"[\""Phone\""]",1497.72,{},155077,0,"""South America""" +2023-04-24,98053,3442,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",3016.69,"{\"": \""12%\""}",275935,0,"""Europe""" +2024-01-25,98054,6630,"[\""Monitor\""]",1496.77,{},194626,0,"""Europe""" +2023-05-10,98055,1393,"[\""Monitor\""]",1992.17,"{\"": \""24%\""}",75804,1,"""South America""" +2024-06-26,98056,2573,"[\""Keyboard\""]",2252.04,"{\"": \""12%\""}",267490,1,"""South America""" +2024-03-15,98057,9323,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",3341.32,"{\""promo\"": \""19%\""}",37481,0,"""Asia""" +2024-12-16,98058,5615,"[\""Tablet\""]",2317.7,{},63151,0,"""Europe""" +2023-12-23,98059,1518,"[\""Tablet\""]",2323.66,"{\"": \""8%\""}",101645,0,"""Europe""" +2023-04-21,98060,8360,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3664.24,"{\""seasonal\"": \""19%\""}",36285,1,"""South America""" +2024-06-13,98061,9866,"[\""Laptop\"", \""Phone\""]",4158.32,"{\"": \""13%\""}",28981,1,"""Africa""" +2023-06-13,98062,7986,"[\""Wireless Mouse\"", \""Laptop\""]",2880.78,"{\""loyalty\"": \""14%\""}",249599,1,"""South America""" +2023-03-07,98063,4954,"[\""Wireless Mouse\"", \""Tablet\""]",4119.25,"{\""seasonal\"": \""12%\""}",296303,0,"""Asia""" +2023-08-06,98064,6791,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",2483.0,{},196026,1,"""Africa""" +2023-07-16,98065,1923,"[\""Keyboard\""]",4688.97,{},246082,0,"""South America""" +2024-08-25,98066,29,"[\""Monitor\"", \""Wireless Mouse\""]",2893.87,"{\""loyalty\"": \""30%\""}",82177,0,"""Africa""" +2023-11-22,98067,3848,"[\""Tablet\"", \""Wireless Mouse\""]",3749.06,{},12360,1,"""Africa""" +2023-06-16,98068,3852,"[\""Keyboard\"", \""Phone\""]",4419.49,"{\""seasonal\"": \""9%\""}",180168,0,"""South America""" +2023-08-27,98069,4459,"[\""Tablet\""]",923.66,"{\""seasonal\"": \""22%\""}",165583,0,"""North America""" +2024-08-11,98070,1253,"[\""Keyboard\""]",4446.45,"{\""promo\"": \""10%\""}",171646,0,"""Africa""" +2024-05-14,98071,3228,"[\""Phone\"", \""Charger\"", \""Tablet\""]",2307.57,{},239182,0,"""Africa""" +2024-07-22,98072,1712,"[\""Laptop\"", \""Tablet\""]",1258.24,{},59373,1,"""Europe""" +2024-07-06,98073,9695,"[\""Monitor\""]",2242.27,"{\""loyalty\"": \""9%\""}",58809,0,"""Europe""" +2023-06-07,98074,5119,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2699.74,{},235180,1,"""Asia""" +2024-10-22,98075,3878,"[\""Monitor\""]",3595.99,{},80108,1,"""North America""" +2023-05-05,98076,3445,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",3430.49,{},167894,0,"""North America""" +2023-05-19,98077,4215,"[\""Laptop\"", \""Monitor\""]",1942.2,{},171499,1,"""Asia""" +2023-06-18,98078,7605,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4056.87,"{\"": \""25%\""}",197347,0,"""South America""" +2023-06-14,98079,8455,"[\""Charger\"", \""Tablet\""]",368.23,{},145844,0,"""South America""" +2024-02-28,98080,4723,"[\""Keyboard\"", \""Tablet\"", \""Phone\""]",2757.26,"{\""loyalty\"": \""11%\""}",34373,0,"""Europe""" +2024-10-24,98081,4538,"[\""Keyboard\""]",88.07,"{\"": \""28%\""}",72845,1,"""South America""" +2023-12-12,98082,4897,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",4112.95,{},181305,1,"""Asia""" +2023-02-07,98083,2949,"[\""Charger\"", \""Phone\"", \""Tablet\""]",3697.46,{},289729,0,"""Asia""" +2023-07-10,98084,7729,"[\""Wireless Mouse\"", \""Phone\"", \""Charger\""]",2183.64,"{\"": \""16%\""}",2688,1,"""Asia""" +2023-05-11,98085,392,"[\""Wireless Mouse\"", \""Charger\""]",1743.07,{},8920,1,"""Africa""" +2024-09-19,98086,6547,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",2047.0,"{\""promo\"": \""8%\""}",37195,0,"""Africa""" +2023-06-03,98087,4631,"[\""Laptop\""]",4356.52,{},19202,0,"""Europe""" +2024-10-21,98088,3172,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2234.68,{},187803,1,"""Asia""" +2023-06-27,98089,6944,"[\""Charger\"", \""Monitor\"", \""Wireless Mouse\""]",1387.32,"{\""promo\"": \""12%\""}",24020,0,"""Africa""" +2023-10-18,98090,4657,"[\""Wireless Mouse\"", \""Headphones\""]",1481.21,{},194870,1,"""North America""" +2023-12-09,98091,7910,"[\""Laptop\""]",4908.29,{},186167,0,"""Europe""" +2024-07-16,98092,9113,"[\""Wireless Mouse\"", \""Laptop\""]",252.75,"{\"": \""10%\""}",205022,0,"""North America""" +2023-01-21,98093,8733,"[\""Phone\""]",2544.08,"{\""seasonal\"": \""13%\""}",202273,0,"""South America""" +2024-08-31,98094,336,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",147.57,{},217080,1,"""Europe""" +2024-01-03,98095,5773,"[\""Wireless Mouse\"", \""Charger\"", \""Keyboard\""]",3335.41,"{\""promo\"": \""8%\""}",268043,1,"""North America""" +2024-05-18,98096,8294,"[\""Tablet\"", \""Monitor\""]",4690.05,{},39669,1,"""South America""" +2024-08-14,98097,8149,"[\""Monitor\"", \""Phone\""]",1132.76,"{\""promo\"": \""16%\""}",82570,0,"""North America""" +2023-03-14,98098,7547,"[\""Phone\"", \""Headphones\""]",4047.01,{},118907,1,"""Europe""" +2023-09-29,98099,50,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",459.0,"{\"": \""24%\""}",188811,1,"""North America""" +2024-08-16,98100,5940,"[\""Laptop\""]",4012.59,"{\"": \""14%\""}",163328,0,"""Europe""" +2023-02-18,98101,1856,"[\""Laptop\"", \""Monitor\"", \""Wireless Mouse\""]",137.32,"{\"": \""24%\""}",92300,1,"""Asia""" +2024-06-19,98102,42,"[\""Tablet\""]",2668.15,{},205100,1,"""Africa""" +2023-03-17,98103,7520,"[\""Keyboard\"", \""Laptop\""]",3633.83,{},199141,1,"""Asia""" +2023-04-01,98104,1549,"[\""Tablet\""]",451.13,"{\""loyalty\"": \""26%\""}",263317,0,"""Africa""" +2023-03-02,98105,5178,"[\""Monitor\"", \""Tablet\""]",1886.11,"{\""promo\"": \""9%\""}",67212,0,"""South America""" +2024-09-25,98106,5139,"[\""Headphones\"", \""Charger\""]",3318.69,{},292881,0,"""Africa""" +2024-07-11,98107,6229,"[\""Charger\""]",811.93,{},85485,0,"""South America""" +2024-03-02,98108,5067,"[\""Laptop\"", \""Keyboard\""]",4725.39,"{\""loyalty\"": \""16%\""}",81822,1,"""Asia""" +2023-07-09,98109,6054,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",670.38,"{\""seasonal\"": \""8%\""}",204552,0,"""Asia""" +2023-07-19,98110,8021,"[\""Monitor\"", \""Charger\"", \""Phone\""]",3080.41,{},161087,1,"""Africa""" +2023-07-29,98111,533,"[\""Tablet\""]",4373.12,"{\""loyalty\"": \""15%\""}",160940,1,"""Europe""" +2024-01-02,98112,2138,"[\""Headphones\""]",4176.59,"{\""loyalty\"": \""6%\""}",210977,1,"""Asia""" +2023-12-19,98113,2149,"[\""Monitor\"", \""Keyboard\""]",910.18,{},26096,0,"""Africa""" +2024-09-30,98114,6450,"[\""Keyboard\""]",3343.9,"{\""seasonal\"": \""26%\""}",47666,1,"""Asia""" +2023-09-28,98115,1475,"[\""Monitor\""]",774.47,{},190441,0,"""North America""" +2024-11-21,98116,8931,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",3250.49,{},295881,1,"""Asia""" +2023-04-01,98117,77,"[\""Tablet\""]",1394.46,{},120910,0,"""South America""" +2023-08-17,98118,2403,"[\""Keyboard\"", \""Phone\""]",1719.95,"{\""promo\"": \""14%\""}",238819,0,"""South America""" +2023-01-18,98119,2143,"[\""Tablet\""]",2583.56,"{\""promo\"": \""12%\""}",116101,0,"""Africa""" +2024-10-27,98120,137,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",1159.78,{},140155,0,"""Africa""" +2023-02-27,98121,6049,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",3835.82,{},51611,1,"""Europe""" +2023-06-18,98122,1171,"[\""Monitor\"", \""Headphones\""]",2416.92,{},224740,1,"""Europe""" +2023-05-23,98123,8859,"[\""Headphones\""]",3884.99,{},114845,0,"""South America""" +2023-10-05,98124,1243,"[\""Keyboard\""]",313.67,"{\"": \""19%\""}",94456,1,"""Africa""" +2024-07-08,98125,7767,"[\""Laptop\"", \""Wireless Mouse\"", \""Charger\""]",3719.58,{},114648,1,"""Africa""" +2024-03-24,98126,7293,"[\""Phone\""]",4368.59,{},263671,0,"""Asia""" +2024-04-29,98127,2542,"[\""Charger\"", \""Laptop\"", \""Wireless Mouse\""]",3714.85,"{\"": \""27%\""}",29737,0,"""Europe""" +2024-09-12,98128,491,"[\""Headphones\"", \""Phone\""]",725.66,"{\""promo\"": \""30%\""}",235737,0,"""Africa""" +2024-08-09,98129,6427,"[\""Wireless Mouse\""]",169.87,"{\""promo\"": \""10%\""}",73621,0,"""Africa""" +2024-01-10,98130,3366,"[\""Headphones\"", \""Wireless Mouse\""]",4375.36,"{\"": \""25%\""}",118057,0,"""Africa""" +2024-05-08,98131,5043,"[\""Wireless Mouse\"", \""Keyboard\""]",4341.53,"{\""seasonal\"": \""6%\""}",199375,0,"""Europe""" +2024-03-08,98132,8083,"[\""Headphones\"", \""Tablet\""]",2060.6,"{\""seasonal\"": \""28%\""}",5721,0,"""North America""" +2023-02-26,98133,2146,"[\""Phone\"", \""Charger\"", \""Headphones\""]",2608.86,"{\""promo\"": \""15%\""}",104461,0,"""North America""" +2024-05-31,98134,2109,"[\""Headphones\""]",2637.41,"{\""loyalty\"": \""15%\""}",139625,0,"""Asia""" +2024-09-15,98135,3827,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",616.46,"{\""seasonal\"": \""6%\""}",58976,0,"""Europe""" +2024-08-23,98136,7717,"[\""Laptop\"", \""Headphones\""]",3542.23,"{\"": \""18%\""}",11346,0,"""Europe""" +2023-03-06,98137,2422,"[\""Keyboard\""]",2455.63,"{\""promo\"": \""20%\""}",154348,1,"""Africa""" +2024-11-06,98138,6769,"[\""Tablet\""]",4648.62,{},54936,1,"""Asia""" +2024-07-15,98139,5623,"[\""Tablet\""]",4239.32,{},72820,0,"""North America""" +2023-10-19,98140,1730,"[\""Laptop\"", \""Monitor\"", \""Tablet\""]",1259.83,"{\"": \""8%\""}",77779,1,"""Asia""" +2024-10-06,98141,9956,"[\""Phone\""]",1565.03,{},168161,1,"""North America""" +2024-06-17,98142,4214,"[\""Tablet\""]",1937.53,"{\""loyalty\"": \""12%\""}",238692,0,"""Africa""" +2024-04-07,98143,4081,"[\""Laptop\"", \""Tablet\""]",2589.5,"{\""loyalty\"": \""22%\""}",238015,1,"""Asia""" +2023-10-21,98144,3606,"[\""Charger\""]",180.46,"{\""seasonal\"": \""24%\""}",285456,0,"""Europe""" +2023-03-11,98145,3548,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",3052.59,{},138509,1,"""North America""" +2024-07-17,98146,553,"[\""Wireless Mouse\"", \""Phone\""]",3986.5,"{\""seasonal\"": \""26%\""}",21969,0,"""Africa""" +2024-08-25,98147,7380,"[\""Headphones\"", \""Monitor\""]",3116.24,"{\""loyalty\"": \""15%\""}",151991,0,"""Asia""" +2023-09-09,98148,8091,"[\""Headphones\""]",1839.89,{},109454,1,"""Africa""" +2023-03-06,98149,6322,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2318.05,"{\"": \""5%\""}",233514,0,"""Africa""" +2024-01-23,98150,9618,"[\""Monitor\"", \""Charger\""]",4012.58,"{\""seasonal\"": \""24%\""}",75163,0,"""Asia""" +2023-07-26,98151,4598,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",150.76,{},86316,0,"""Africa""" +2023-05-14,98152,4527,"[\""Charger\"", \""Laptop\""]",2909.4,"{\""promo\"": \""30%\""}",251900,0,"""South America""" +2024-02-09,98153,6001,"[\""Monitor\"", \""Phone\"", \""Keyboard\""]",2367.06,{},203735,0,"""Africa""" +2023-01-17,98154,7230,"[\""Tablet\""]",3968.19,"{\""promo\"": \""15%\""}",21438,1,"""Europe""" +2024-07-18,98155,3904,"[\""Headphones\"", \""Laptop\""]",2882.3,{},261799,1,"""North America""" +2023-03-19,98156,7565,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",447.55,{},274969,1,"""South America""" +2024-03-21,98157,3662,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",461.69,"{\""promo\"": \""8%\""}",31272,0,"""Europe""" +2023-01-07,98158,6018,"[\""Wireless Mouse\"", \""Laptop\"", \""Keyboard\""]",2619.59,"{\""promo\"": \""8%\""}",252283,1,"""Asia""" +2023-05-23,98159,480,"[\""Charger\""]",4460.18,{},149325,0,"""South America""" +2023-02-26,98160,9325,"[\""Tablet\""]",4293.88,{},117544,1,"""Europe""" +2023-09-30,98161,2415,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4523.96,"{\""loyalty\"": \""21%\""}",92197,0,"""North America""" +2024-11-04,98162,6970,"[\""Laptop\"", \""Wireless Mouse\""]",4453.59,"{\""promo\"": \""24%\""}",270314,1,"""South America""" +2024-03-11,98163,8503,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",1907.52,{},168216,1,"""Asia""" +2024-01-06,98164,2019,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",4397.43,"{\""promo\"": \""12%\""}",248494,0,"""Africa""" +2023-12-02,98165,5271,"[\""Keyboard\"", \""Tablet\""]",676.49,"{\"": \""26%\""}",132973,1,"""Africa""" +2024-02-03,98166,5335,"[\""Keyboard\"", \""Tablet\""]",1866.44,"{\""seasonal\"": \""13%\""}",122045,1,"""Africa""" +2024-12-18,98167,9504,"[\""Monitor\""]",3806.86,"{\"": \""15%\""}",91662,1,"""North America""" +2024-06-23,98168,7640,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",675.23,"{\""promo\"": \""10%\""}",197490,1,"""Europe""" +2023-08-30,98169,1959,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",4525.76,"{\"": \""30%\""}",27207,1,"""Africa""" +2023-09-24,98170,9572,"[\""Keyboard\""]",97.92,"{\""seasonal\"": \""7%\""}",180477,0,"""Europe""" +2023-10-20,98171,4582,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",2895.87,"{\""promo\"": \""21%\""}",48050,1,"""Europe""" +2023-10-12,98172,5480,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",3273.48,"{\""seasonal\"": \""24%\""}",151652,0,"""Europe""" +2024-02-05,98173,9982,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",3480.74,{},191449,1,"""Africa""" +2023-10-25,98174,55,"[\""Laptop\""]",1663.85,"{\""promo\"": \""10%\""}",3390,1,"""Europe""" +2023-08-05,98175,8081,"[\""Monitor\"", \""Charger\""]",2937.61,{},227328,0,"""Asia""" +2023-09-22,98176,2054,"[\""Tablet\"", \""Headphones\""]",1179.58,"{\""seasonal\"": \""11%\""}",228283,1,"""Asia""" +2024-02-11,98177,5765,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3582.11,{},138330,1,"""North America""" +2024-09-27,98178,5515,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",3131.39,{},78260,0,"""Asia""" +2023-04-11,98179,2492,"[\""Monitor\"", \""Keyboard\""]",1391.8,{},44711,0,"""Asia""" +2024-11-09,98180,4535,"[\""Laptop\"", \""Tablet\""]",2724.96,{},35043,0,"""North America""" +2024-04-19,98181,3238,"[\""Wireless Mouse\"", \""Monitor\""]",1480.63,"{\""seasonal\"": \""16%\""}",255383,0,"""Africa""" +2024-11-18,98182,5227,"[\""Keyboard\"", \""Tablet\""]",3454.96,"{\""seasonal\"": \""19%\""}",114991,1,"""Europe""" +2023-05-15,98183,2170,"[\""Headphones\""]",3775.27,{},6191,0,"""Africa""" +2024-07-03,98184,4023,"[\""Wireless Mouse\"", \""Charger\""]",1005.76,{},276725,1,"""Africa""" +2024-09-07,98185,4459,"[\""Charger\"", \""Wireless Mouse\"", \""Keyboard\""]",525.47,{},128101,0,"""North America""" +2023-05-12,98186,6771,"[\""Wireless Mouse\"", \""Charger\""]",2475.74,"{\""seasonal\"": \""19%\""}",212021,0,"""Africa""" +2023-11-01,98187,9748,"[\""Headphones\"", \""Keyboard\""]",1549.42,"{\""promo\"": \""27%\""}",36441,1,"""North America""" +2023-10-08,98188,893,"[\""Phone\"", \""Charger\""]",4722.52,"{\""seasonal\"": \""17%\""}",165909,1,"""North America""" +2024-10-22,98189,5632,"[\""Laptop\""]",592.55,{},39720,1,"""Africa""" +2023-06-18,98190,3186,"[\""Monitor\"", \""Phone\""]",4361.05,{},272726,0,"""Europe""" +2024-01-03,98191,5504,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2702.0,{},147209,0,"""Africa""" +2023-07-30,98192,6905,"[\""Monitor\"", \""Tablet\""]",1632.44,"{\""promo\"": \""17%\""}",47869,1,"""Africa""" +2024-06-16,98193,7071,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",2291.06,{},176590,0,"""North America""" +2023-04-17,98194,8159,"[\""Keyboard\""]",3119.71,"{\""loyalty\"": \""7%\""}",7184,1,"""Europe""" +2023-11-16,98195,3926,"[\""Keyboard\""]",3549.17,{},252724,1,"""Asia""" +2023-03-27,98196,9113,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",2225.54,{},259074,1,"""Europe""" +2023-06-20,98197,9337,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2361.9,"{\""promo\"": \""22%\""}",217693,1,"""South America""" +2024-01-09,98198,387,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1150.69,{},150078,0,"""North America""" +2023-05-27,98199,2947,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",3745.84,{},10123,0,"""South America""" +2024-12-05,98200,9862,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",4609.21,"{\""loyalty\"": \""25%\""}",35349,0,"""South America""" +2023-02-27,98201,891,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",4076.64,{},28054,0,"""Europe""" +2024-05-21,98202,3181,"[\""Laptop\""]",4540.21,{},127738,1,"""Europe""" +2023-06-28,98203,9696,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",901.02,{},121214,1,"""South America""" +2024-10-30,98204,1278,"[\""Monitor\""]",3641.8,"{\"": \""25%\""}",242149,0,"""South America""" +2024-06-07,98205,4060,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",2946.02,"{\""promo\"": \""30%\""}",263570,0,"""Africa""" +2024-08-11,98206,5460,"[\""Laptop\"", \""Phone\""]",3357.77,"{\""loyalty\"": \""27%\""}",254710,1,"""North America""" +2023-09-01,98207,6863,"[\""Tablet\"", \""Wireless Mouse\""]",1935.76,{},55876,1,"""Europe""" +2023-02-03,98208,599,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2387.36,"{\"": \""12%\""}",258969,0,"""Asia""" +2023-07-19,98209,922,"[\""Monitor\""]",1709.37,"{\""promo\"": \""23%\""}",205888,1,"""South America""" +2024-10-16,98210,8460,"[\""Phone\"", \""Monitor\""]",3799.83,"{\""loyalty\"": \""13%\""}",200475,0,"""Africa""" +2024-06-09,98211,4883,"[\""Laptop\"", \""Tablet\""]",4719.46,{},252493,1,"""South America""" +2024-10-27,98212,9327,"[\""Tablet\""]",3992.19,"{\""promo\"": \""5%\""}",67612,0,"""Africa""" +2024-12-11,98213,8115,"[\""Tablet\""]",969.49,"{\""seasonal\"": \""12%\""}",252827,1,"""Africa""" +2023-07-14,98214,6197,"[\""Monitor\"", \""Tablet\""]",807.57,{},79009,0,"""Europe""" +2024-01-22,98215,9221,"[\""Headphones\"", \""Laptop\""]",4046.58,"{\""promo\"": \""12%\""}",124923,0,"""Africa""" +2024-04-14,98216,2357,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",4378.84,"{\""loyalty\"": \""21%\""}",260168,0,"""North America""" +2023-02-16,98217,7840,"[\""Wireless Mouse\""]",2495.09,"{\""promo\"": \""11%\""}",266225,1,"""Africa""" +2024-07-23,98218,1334,"[\""Phone\""]",900.53,"{\""seasonal\"": \""13%\""}",145040,0,"""Asia""" +2024-01-09,98219,9406,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",2621.54,{},160110,0,"""Asia""" +2024-01-10,98220,3577,"[\""Monitor\"", \""Laptop\""]",2141.99,"{\""loyalty\"": \""20%\""}",142353,0,"""North America""" +2023-03-13,98221,1966,"[\""Tablet\""]",437.74,{},97969,1,"""South America""" +2024-07-12,98222,8811,"[\""Headphones\"", \""Charger\""]",1863.98,"{\""loyalty\"": \""13%\""}",200744,1,"""Europe""" +2024-12-07,98223,9820,"[\""Laptop\""]",605.37,"{\""loyalty\"": \""30%\""}",296816,0,"""Europe""" +2024-04-14,98224,8446,"[\""Laptop\""]",1142.8,"{\""promo\"": \""5%\""}",201284,1,"""South America""" +2024-02-04,98225,5686,"[\""Laptop\"", \""Charger\""]",2795.4,"{\""promo\"": \""18%\""}",233971,1,"""Asia""" +2023-03-10,98226,7193,"[\""Wireless Mouse\""]",4306.49,"{\"": \""26%\""}",60461,0,"""South America""" +2024-08-03,98227,2202,"[\""Keyboard\""]",2738.91,{},91231,0,"""Europe""" +2023-04-26,98228,3630,"[\""Wireless Mouse\""]",1144.33,{},16352,1,"""North America""" +2024-06-12,98229,2715,"[\""Keyboard\""]",469.89,{},35123,0,"""South America""" +2023-03-16,98230,2748,"[\""Charger\"", \""Wireless Mouse\""]",3826.6,"{\"": \""17%\""}",293068,0,"""Europe""" +2023-03-29,98231,8624,"[\""Headphones\"", \""Wireless Mouse\""]",1648.39,{},133091,0,"""Africa""" +2024-08-28,98232,3846,"[\""Headphones\""]",3159.56,{},39248,0,"""South America""" +2024-01-02,98233,7256,"[\""Keyboard\"", \""Wireless Mouse\"", \""Charger\""]",3408.85,"{\""loyalty\"": \""22%\""}",165607,0,"""Africa""" +2023-05-12,98234,6120,"[\""Phone\""]",4120.43,"{\""loyalty\"": \""28%\""}",293551,1,"""South America""" +2024-10-02,98235,9562,"[\""Phone\""]",3296.87,{},118461,0,"""North America""" +2023-01-03,98236,7152,"[\""Phone\"", \""Headphones\""]",4610.95,"{\""promo\"": \""6%\""}",125347,1,"""Africa""" +2023-08-27,98237,9980,"[\""Phone\"", \""Headphones\""]",2098.25,"{\""loyalty\"": \""18%\""}",212737,0,"""Africa""" +2023-08-21,98238,4806,"[\""Monitor\"", \""Laptop\""]",97.3,"{\""promo\"": \""7%\""}",20130,1,"""North America""" +2024-04-08,98239,9177,"[\""Charger\"", \""Keyboard\"", \""Phone\""]",540.2,"{\""loyalty\"": \""15%\""}",106541,1,"""Asia""" +2024-06-15,98240,7935,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3617.2,{},83286,1,"""South America""" +2024-10-22,98241,6485,"[\""Wireless Mouse\""]",3555.49,"{\"": \""7%\""}",69918,1,"""Europe""" +2024-05-16,98242,7866,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",1572.74,"{\""loyalty\"": \""21%\""}",93971,1,"""Africa""" +2023-01-22,98243,837,"[\""Wireless Mouse\"", \""Headphones\""]",3778.64,{},248795,0,"""Asia""" +2024-12-20,98244,656,"[\""Headphones\"", \""Laptop\""]",3342.72,{},148708,0,"""South America""" +2023-11-03,98245,4075,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4755.52,"{\""seasonal\"": \""7%\""}",147475,0,"""Africa""" +2023-02-02,98246,2801,"[\""Laptop\"", \""Wireless Mouse\""]",4334.6,{},35723,1,"""North America""" +2024-04-15,98247,1069,"[\""Phone\"", \""Wireless Mouse\""]",603.18,{},187652,1,"""South America""" +2023-08-20,98248,938,"[\""Laptop\""]",1681.02,{},21713,1,"""North America""" +2024-03-04,98249,9170,"[\""Keyboard\""]",4574.77,{},70339,1,"""Africa""" +2024-06-28,98250,729,"[\""Phone\"", \""Laptop\"", \""Headphones\""]",2379.06,{},25632,0,"""Africa""" +2023-08-09,98251,1915,"[\""Tablet\""]",3763.79,{},201789,0,"""Europe""" +2023-04-13,98252,2871,"[\""Phone\"", \""Charger\""]",358.07,{},203530,1,"""Europe""" +2024-10-11,98253,4520,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",608.88,{},70860,0,"""Africa""" +2024-12-26,98254,9334,"[\""Headphones\"", \""Monitor\""]",1687.59,"{\""promo\"": \""18%\""}",9449,0,"""Asia""" +2024-03-27,98255,6873,"[\""Monitor\""]",4170.43,"{\"": \""28%\""}",188290,1,"""Asia""" +2023-03-22,98256,9331,"[\""Tablet\"", \""Phone\"", \""Charger\""]",1680.09,{},296003,0,"""Asia""" +2024-01-09,98257,8319,"[\""Laptop\"", \""Headphones\""]",771.29,"{\""loyalty\"": \""23%\""}",117275,0,"""North America""" +2023-09-15,98258,6289,"[\""Headphones\""]",1190.71,{},102606,0,"""Europe""" +2024-11-24,98259,7558,"[\""Tablet\""]",748.39,"{\""loyalty\"": \""16%\""}",114967,1,"""Asia""" +2023-09-12,98260,3890,"[\""Wireless Mouse\"", \""Tablet\""]",4424.42,{},28044,1,"""North America""" +2024-11-04,98261,6341,"[\""Laptop\"", \""Keyboard\""]",312.91,"{\""promo\"": \""16%\""}",106174,1,"""Asia""" +2023-02-12,98262,5020,"[\""Headphones\"", \""Phone\""]",3824.78,"{\""loyalty\"": \""27%\""}",63207,1,"""Asia""" +2024-01-01,98263,7164,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",1440.99,{},136128,0,"""Asia""" +2023-07-19,98264,5023,"[\""Keyboard\"", \""Wireless Mouse\""]",289.89,{},104154,0,"""South America""" +2024-10-30,98265,4757,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4312.75,{},76266,0,"""North America""" +2023-07-06,98266,7542,"[\""Headphones\"", \""Wireless Mouse\""]",415.81,"{\""promo\"": \""29%\""}",153211,1,"""Asia""" +2024-10-14,98267,2303,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",4151.04,"{\""loyalty\"": \""14%\""}",71063,1,"""Africa""" +2024-05-07,98268,2113,"[\""Laptop\"", \""Tablet\"", \""Phone\""]",915.16,{},106858,1,"""Asia""" +2023-03-31,98269,4049,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",3987.55,"{\""promo\"": \""30%\""}",255165,1,"""North America""" +2023-10-11,98270,2921,"[\""Tablet\""]",2506.17,"{\""seasonal\"": \""30%\""}",203241,1,"""Africa""" +2024-07-02,98271,8065,"[\""Tablet\""]",2817.45,"{\"": \""6%\""}",209653,0,"""Asia""" +2023-11-01,98272,6235,"[\""Phone\"", \""Keyboard\""]",3398.66,{},19682,0,"""Africa""" +2024-06-14,98273,9846,"[\""Tablet\""]",3031.46,"{\"": \""27%\""}",209599,0,"""Africa""" +2024-12-15,98274,7410,"[\""Phone\"", \""Charger\"", \""Tablet\""]",3211.13,"{\""seasonal\"": \""12%\""}",172993,1,"""Asia""" +2024-06-02,98275,8354,"[\""Phone\""]",2401.53,{},193310,1,"""North America""" +2023-09-25,98276,8973,"[\""Headphones\""]",4079.96,"{\""promo\"": \""14%\""}",82879,1,"""Asia""" +2023-08-14,98277,1545,"[\""Tablet\""]",4146.94,"{\"": \""16%\""}",236063,1,"""Europe""" +2024-09-26,98278,9924,"[\""Wireless Mouse\""]",676.4,{},184974,1,"""South America""" +2023-02-16,98279,8691,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",3017.6,{},253255,0,"""Europe""" +2023-07-11,98280,3495,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",1242.03,"{\""promo\"": \""11%\""}",214407,1,"""South America""" +2023-06-24,98281,6228,"[\""Monitor\"", \""Charger\"", \""Phone\""]",2688.04,"{\""seasonal\"": \""6%\""}",97507,1,"""South America""" +2024-09-04,98282,4565,"[\""Monitor\""]",2726.92,{},184150,0,"""South America""" +2023-11-23,98283,145,"[\""Laptop\"", \""Phone\"", \""Charger\""]",3789.49,"{\"": \""11%\""}",57335,0,"""Asia""" +2023-01-20,98284,9274,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",4606.72,"{\""promo\"": \""10%\""}",98178,1,"""Europe""" +2024-06-11,98285,8427,"[\""Laptop\""]",918.72,{},253473,0,"""Asia""" +2024-04-11,98286,3299,"[\""Wireless Mouse\""]",4251.37,{},5656,1,"""South America""" +2024-10-12,98287,6374,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",3628.8,"{\"": \""7%\""}",297874,0,"""Europe""" +2024-11-24,98288,5246,"[\""Wireless Mouse\"", \""Headphones\"", \""Charger\""]",277.91,{},140776,0,"""Africa""" +2023-04-19,98289,140,"[\""Monitor\""]",2924.7,"{\"": \""20%\""}",265651,0,"""Asia""" +2024-09-03,98290,8723,"[\""Keyboard\""]",2879.51,"{\""seasonal\"": \""29%\""}",256298,0,"""Asia""" +2024-01-25,98291,4602,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",2615.92,"{\""seasonal\"": \""28%\""}",76505,1,"""Asia""" +2024-07-24,98292,4433,"[\""Keyboard\""]",3684.07,{},254830,0,"""Asia""" +2023-02-10,98293,5298,"[\""Phone\"", \""Headphones\""]",3158.42,{},111833,1,"""North America""" +2024-09-21,98294,4676,"[\""Wireless Mouse\""]",322.81,"{\""loyalty\"": \""11%\""}",273821,0,"""Asia""" +2024-07-31,98295,6942,"[\""Laptop\"", \""Headphones\""]",2067.11,{},236675,1,"""South America""" +2023-06-14,98296,9251,"[\""Wireless Mouse\"", \""Headphones\""]",2939.4,{},288880,0,"""North America""" +2023-04-23,98297,5648,"[\""Laptop\"", \""Wireless Mouse\""]",2112.46,"{\""loyalty\"": \""17%\""}",238746,1,"""South America""" +2024-11-01,98298,5259,"[\""Keyboard\""]",2721.62,"{\""loyalty\"": \""13%\""}",44759,0,"""Asia""" +2023-09-02,98299,8292,"[\""Tablet\"", \""Keyboard\""]",938.22,"{\"": \""30%\""}",218435,1,"""Africa""" +2023-09-16,98300,7239,"[\""Tablet\"", \""Phone\""]",4093.68,"{\""seasonal\"": \""30%\""}",210511,1,"""North America""" +2024-06-06,98301,6638,"[\""Tablet\"", \""Monitor\""]",3885.04,"{\""promo\"": \""7%\""}",74112,1,"""Africa""" +2023-04-20,98302,5120,"[\""Tablet\"", \""Phone\"", \""Charger\""]",302.01,"{\""loyalty\"": \""9%\""}",170905,0,"""South America""" +2023-10-06,98303,5423,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",3062.82,{},185973,1,"""North America""" +2023-12-12,98304,5624,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3480.61,"{\"": \""29%\""}",217375,0,"""North America""" +2024-08-27,98305,2694,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",2231.53,"{\""promo\"": \""15%\""}",197861,0,"""Asia""" +2024-12-22,98306,4445,"[\""Charger\""]",301.45,{},102453,0,"""Europe""" +2024-01-07,98307,4312,"[\""Wireless Mouse\""]",3279.48,{},189549,1,"""South America""" +2024-08-06,98308,4586,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",1903.74,"{\""seasonal\"": \""11%\""}",248034,1,"""North America""" +2024-12-27,98309,4561,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",1679.52,{},170695,0,"""North America""" +2023-03-18,98310,3382,"[\""Laptop\""]",4746.09,"{\""promo\"": \""21%\""}",166144,0,"""Asia""" +2023-10-23,98311,4278,"[\""Wireless Mouse\"", \""Keyboard\""]",1276.4,"{\""seasonal\"": \""27%\""}",209114,0,"""Europe""" +2024-12-29,98312,7251,"[\""Headphones\"", \""Laptop\""]",2559.55,{},292484,1,"""Europe""" +2023-10-01,98313,7382,"[\""Laptop\"", \""Wireless Mouse\"", \""Headphones\""]",3965.39,"{\"": \""7%\""}",84284,1,"""North America""" +2023-09-02,98314,6821,"[\""Phone\"", \""Monitor\""]",2224.32,"{\"": \""5%\""}",155465,0,"""North America""" +2024-06-19,98315,1909,"[\""Wireless Mouse\""]",4988.4,"{\""promo\"": \""27%\""}",243132,0,"""South America""" +2024-07-01,98316,2291,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",1065.42,{},114184,1,"""South America""" +2023-07-22,98317,5482,"[\""Phone\""]",3839.93,{},134421,0,"""Asia""" +2023-07-18,98318,1719,"[\""Keyboard\"", \""Headphones\""]",3906.58,"{\"": \""23%\""}",121216,1,"""North America""" +2024-05-22,98319,2130,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",2344.13,{},183837,1,"""North America""" +2023-01-17,98320,9462,"[\""Keyboard\"", \""Laptop\""]",3397.02,"{\"": \""28%\""}",238720,0,"""Asia""" +2024-06-30,98321,9482,"[\""Keyboard\"", \""Monitor\""]",3597.2,{},131800,0,"""Asia""" +2023-10-21,98322,3367,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",1596.65,"{\""seasonal\"": \""10%\""}",197724,1,"""North America""" +2023-03-13,98323,9037,"[\""Laptop\"", \""Phone\""]",4873.79,"{\""promo\"": \""19%\""}",269706,1,"""Africa""" +2023-05-25,98324,9001,"[\""Tablet\""]",3071.34,"{\""promo\"": \""20%\""}",166008,1,"""North America""" +2023-12-06,98325,9986,"[\""Monitor\""]",4441.55,{},23653,1,"""North America""" +2024-10-08,98326,6686,"[\""Keyboard\""]",1068.35,{},128212,1,"""Europe""" +2024-04-08,98327,5075,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",671.93,{},257419,1,"""Asia""" +2024-09-17,98328,5456,"[\""Tablet\"", \""Wireless Mouse\"", \""Phone\""]",1935.56,"{\""loyalty\"": \""8%\""}",203539,1,"""Asia""" +2023-03-27,98329,1908,"[\""Headphones\""]",4484.41,{},104171,1,"""Africa""" +2024-05-14,98330,8054,"[\""Monitor\""]",259.8,{},241579,1,"""South America""" +2024-03-09,98331,119,"[\""Headphones\""]",3648.23,{},83232,1,"""South America""" +2023-12-18,98332,9508,"[\""Charger\"", \""Monitor\""]",1799.65,{},15577,0,"""North America""" +2023-05-04,98333,5943,"[\""Phone\""]",4437.23,"{\""loyalty\"": \""22%\""}",253634,1,"""Africa""" +2023-06-02,98334,7368,"[\""Charger\"", \""Phone\""]",616.77,"{\""loyalty\"": \""25%\""}",129636,0,"""North America""" +2023-09-27,98335,825,"[\""Phone\""]",2786.64,"{\"": \""20%\""}",210319,1,"""Asia""" +2024-02-29,98336,7697,"[\""Phone\"", \""Headphones\""]",1581.47,"{\""seasonal\"": \""23%\""}",251066,1,"""Africa""" +2024-07-30,98337,7685,"[\""Laptop\""]",3022.04,"{\""promo\"": \""12%\""}",49578,0,"""North America""" +2023-10-14,98338,5648,"[\""Laptop\"", \""Monitor\""]",2830.94,{},26829,0,"""Europe""" +2024-01-21,98339,744,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4994.13,{},5298,1,"""Africa""" +2023-10-01,98340,3805,"[\""Monitor\""]",1955.99,{},63784,0,"""Africa""" +2023-10-27,98341,6661,"[\""Tablet\""]",2198.88,{},188586,0,"""Africa""" +2023-11-19,98342,3657,"[\""Keyboard\"", \""Phone\""]",53.26,"{\"": \""6%\""}",147569,1,"""South America""" +2023-05-24,98343,1245,"[\""Monitor\"", \""Keyboard\""]",4219.68,{},299234,1,"""South America""" +2024-08-31,98344,2994,"[\""Monitor\"", \""Phone\""]",424.76,"{\""loyalty\"": \""17%\""}",194660,0,"""Africa""" +2023-06-09,98345,1027,"[\""Laptop\""]",488.38,{},34789,1,"""Asia""" +2024-07-25,98346,8602,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3133.04,{},191481,1,"""Africa""" +2024-07-23,98347,9962,"[\""Headphones\""]",2983.22,"{\""loyalty\"": \""27%\""}",238544,0,"""Europe""" +2023-11-14,98348,724,"[\""Tablet\"", \""Monitor\""]",3918.06,{},79298,0,"""Europe""" +2024-07-11,98349,2592,"[\""Monitor\""]",4169.88,"{\""loyalty\"": \""25%\""}",244597,1,"""North America""" +2023-06-11,98350,4904,"[\""Keyboard\""]",2865.48,"{\"": \""18%\""}",74152,1,"""Asia""" +2024-06-05,98351,8521,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",4969.13,{},159977,1,"""Europe""" +2023-01-16,98352,5189,"[\""Headphones\""]",2263.99,"{\"": \""30%\""}",261090,1,"""Asia""" +2024-08-15,98353,8886,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3570.38,"{\""promo\"": \""12%\""}",102341,1,"""North America""" +2023-04-10,98354,4539,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",4501.44,{},38187,1,"""Europe""" +2023-10-07,98355,406,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3561.79,"{\""promo\"": \""5%\""}",294023,0,"""South America""" +2024-07-24,98356,8609,"[\""Keyboard\"", \""Charger\""]",3454.75,{},26810,1,"""North America""" +2024-09-26,98357,2600,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",662.78,"{\"": \""10%\""}",130801,1,"""Europe""" +2024-09-28,98358,3333,"[\""Wireless Mouse\"", \""Phone\""]",805.84,"{\"": \""10%\""}",198806,1,"""South America""" +2023-09-09,98359,1148,"[\""Monitor\""]",3349.53,"{\""promo\"": \""18%\""}",248102,1,"""Europe""" +2023-12-23,98360,6365,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2288.76,"{\""loyalty\"": \""11%\""}",231733,0,"""North America""" +2023-05-05,98361,9977,"[\""Wireless Mouse\"", \""Headphones\""]",2129.97,"{\""seasonal\"": \""13%\""}",110675,0,"""North America""" +2024-08-01,98362,9597,"[\""Headphones\"", \""Tablet\""]",929.1,"{\""loyalty\"": \""8%\""}",249478,1,"""South America""" +2024-08-19,98363,8281,"[\""Phone\""]",4687.08,"{\""loyalty\"": \""12%\""}",209360,0,"""Europe""" +2023-10-23,98364,4024,"[\""Keyboard\"", \""Monitor\"", \""Charger\""]",3315.28,"{\""seasonal\"": \""27%\""}",88073,1,"""North America""" +2023-06-09,98365,9623,"[\""Phone\""]",4740.15,{},109945,0,"""Asia""" +2024-04-17,98366,457,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4539.36,{},11401,1,"""Asia""" +2023-06-28,98367,6856,"[\""Wireless Mouse\"", \""Phone\""]",1374.9,"{\"": \""27%\""}",116149,0,"""South America""" +2023-05-05,98368,292,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2480.1,{},12608,1,"""South America""" +2023-11-19,98369,4314,"[\""Wireless Mouse\"", \""Phone\""]",3796.86,"{\""seasonal\"": \""11%\""}",1036,0,"""North America""" +2024-04-17,98370,4742,"[\""Monitor\"", \""Charger\"", \""Keyboard\""]",4662.87,{},59628,1,"""Europe""" +2023-09-07,98371,7736,"[\""Monitor\"", \""Tablet\"", \""Headphones\""]",572.19,"{\""promo\"": \""30%\""}",1915,1,"""South America""" +2024-02-07,98372,1083,"[\""Wireless Mouse\"", \""Laptop\""]",2151.06,{},108743,1,"""South America""" +2023-12-26,98373,8331,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",3499.94,"{\"": \""11%\""}",16219,1,"""Asia""" +2023-03-17,98374,2535,"[\""Tablet\"", \""Wireless Mouse\""]",151.21,{},146957,0,"""South America""" +2023-06-08,98375,3105,"[\""Tablet\""]",2038.14,{},231008,1,"""South America""" +2023-10-30,98376,5747,"[\""Laptop\"", \""Wireless Mouse\""]",2026.34,{},154389,1,"""North America""" +2023-05-14,98377,7626,"[\""Wireless Mouse\"", \""Monitor\""]",360.43,{},69695,1,"""Asia""" +2023-11-05,98378,5241,"[\""Keyboard\"", \""Monitor\""]",3744.52,{},227871,1,"""South America""" +2023-10-01,98379,3581,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2486.44,"{\""promo\"": \""23%\""}",20447,0,"""Asia""" +2024-07-23,98380,7923,"[\""Charger\""]",3247.18,{},281892,1,"""Asia""" +2024-09-11,98381,2147,"[\""Headphones\""]",4376.6,"{\"": \""21%\""}",105784,0,"""South America""" +2024-08-04,98382,742,"[\""Wireless Mouse\"", \""Monitor\""]",2133.35,"{\""promo\"": \""9%\""}",19620,1,"""Asia""" +2023-04-08,98383,4415,"[\""Laptop\"", \""Phone\""]",4912.62,"{\""loyalty\"": \""27%\""}",196966,0,"""Asia""" +2023-08-13,98384,7888,"[\""Monitor\""]",4698.85,{},79392,1,"""Europe""" +2024-02-11,98385,7444,"[\""Wireless Mouse\""]",4673.87,"{\""promo\"": \""26%\""}",80259,1,"""North America""" +2024-03-12,98386,7868,"[\""Headphones\"", \""Keyboard\""]",954.86,"{\"": \""18%\""}",242024,1,"""South America""" +2024-07-20,98387,7182,"[\""Keyboard\""]",4217.53,"{\"": \""9%\""}",17430,1,"""Africa""" +2024-02-20,98388,3784,"[\""Monitor\"", \""Tablet\"", \""Laptop\""]",1818.7,{},91912,1,"""Europe""" +2024-01-21,98389,9047,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",3005.81,{},132499,1,"""Europe""" +2024-07-19,98390,1239,"[\""Tablet\"", \""Phone\""]",4967.85,"{\"": \""10%\""}",126973,0,"""Asia""" +2024-11-23,98391,9413,"[\""Headphones\""]",3494.86,"{\""loyalty\"": \""6%\""}",66184,0,"""South America""" +2024-02-27,98392,8535,"[\""Laptop\""]",4546.22,"{\"": \""25%\""}",141362,1,"""North America""" +2023-10-22,98393,451,"[\""Headphones\"", \""Wireless Mouse\""]",4741.33,{},21700,0,"""North America""" +2023-06-24,98394,213,"[\""Wireless Mouse\""]",1577.99,"{\""loyalty\"": \""29%\""}",209687,0,"""North America""" +2024-09-16,98395,1616,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",663.97,{},126614,0,"""North America""" +2023-03-18,98396,6112,"[\""Headphones\""]",455.29,"{\""seasonal\"": \""7%\""}",250479,1,"""Asia""" +2023-12-13,98397,8081,"[\""Charger\"", \""Monitor\""]",1399.54,"{\""loyalty\"": \""14%\""}",92458,0,"""Europe""" +2023-08-02,98398,920,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",962.93,"{\"": \""7%\""}",130317,0,"""Africa""" +2024-11-10,98399,4900,"[\""Keyboard\""]",1553.64,"{\""loyalty\"": \""7%\""}",60760,1,"""Asia""" +2023-07-01,98400,433,"[\""Laptop\""]",1979.99,"{\""loyalty\"": \""23%\""}",109082,1,"""Asia""" +2023-11-04,98401,4101,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",4275.9,"{\""seasonal\"": \""26%\""}",120365,0,"""Asia""" +2024-02-10,98402,3518,"[\""Keyboard\""]",4314.46,{},147111,0,"""Africa""" +2024-06-09,98403,7246,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",503.9,{},205570,1,"""North America""" +2023-07-23,98404,6591,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",2195.01,{},52299,1,"""Asia""" +2024-07-03,98405,1561,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",4425.78,"{\"": \""23%\""}",117692,0,"""Africa""" +2024-05-25,98406,2145,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",1249.99,"{\""seasonal\"": \""9%\""}",253886,0,"""South America""" +2024-09-16,98407,8153,"[\""Laptop\"", \""Monitor\""]",4923.54,"{\""seasonal\"": \""6%\""}",242762,0,"""South America""" +2023-10-24,98408,6690,"[\""Tablet\"", \""Monitor\""]",335.03,{},67435,0,"""North America""" +2023-03-21,98409,4160,"[\""Monitor\""]",2143.43,{},105070,1,"""North America""" +2023-01-01,98410,9876,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",4017.14,"{\"": \""29%\""}",272549,1,"""Africa""" +2024-03-01,98411,8367,"[\""Headphones\""]",896.99,"{\"": \""27%\""}",96205,0,"""North America""" +2023-06-06,98412,4164,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4637.33,{},24865,1,"""South America""" +2024-08-25,98413,8601,"[\""Phone\""]",433.32,{},57245,0,"""Europe""" +2023-05-01,98414,9157,"[\""Tablet\""]",394.31,"{\""promo\"": \""21%\""}",110511,0,"""North America""" +2023-10-03,98415,9579,"[\""Keyboard\"", \""Headphones\"", \""Wireless Mouse\""]",4989.97,{},52446,0,"""North America""" +2023-04-28,98416,9402,"[\""Laptop\"", \""Phone\""]",3659.15,"{\""promo\"": \""6%\""}",221111,1,"""Asia""" +2024-04-02,98417,3383,"[\""Monitor\"", \""Phone\""]",3157.98,{},54732,1,"""Africa""" +2024-08-11,98418,9196,"[\""Tablet\""]",2762.35,"{\""loyalty\"": \""20%\""}",39262,1,"""Asia""" +2024-06-30,98419,7771,"[\""Laptop\"", \""Tablet\"", \""Headphones\""]",2301.47,"{\""seasonal\"": \""15%\""}",124511,1,"""Africa""" +2023-05-30,98420,5849,"[\""Monitor\"", \""Tablet\""]",617.8,{},111462,0,"""Europe""" +2023-10-07,98421,4366,"[\""Laptop\""]",4412.22,{},219097,1,"""North America""" +2023-07-19,98422,1867,"[\""Laptop\"", \""Headphones\""]",1409.18,"{\""loyalty\"": \""8%\""}",221555,0,"""Asia""" +2024-03-12,98423,3204,"[\""Tablet\"", \""Wireless Mouse\""]",4138.92,{},235478,1,"""North America""" +2024-06-27,98424,8602,"[\""Wireless Mouse\""]",1215.53,{},169968,0,"""Asia""" +2024-10-15,98425,3402,"[\""Tablet\"", \""Keyboard\""]",3969.8,"{\"": \""24%\""}",88660,0,"""North America""" +2024-07-21,98426,4496,"[\""Keyboard\"", \""Wireless Mouse\""]",342.87,{},204441,1,"""Asia""" +2023-10-19,98427,884,"[\""Tablet\""]",2181.43,"{\""seasonal\"": \""8%\""}",273236,0,"""Europe""" +2024-10-05,98428,101,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",2503.95,"{\""loyalty\"": \""15%\""}",79318,1,"""Africa""" +2023-12-16,98429,8033,"[\""Charger\""]",3014.06,{},183032,0,"""Africa""" +2024-07-07,98430,9014,"[\""Headphones\"", \""Keyboard\""]",3985.23,{},203604,0,"""Africa""" +2024-04-20,98431,8715,"[\""Keyboard\"", \""Phone\""]",2225.34,"{\""seasonal\"": \""7%\""}",214428,1,"""Asia""" +2024-04-25,98432,2253,"[\""Headphones\""]",2239.39,{},91590,0,"""Asia""" +2023-04-25,98433,3610,"[\""Monitor\""]",2829.84,{},149680,0,"""South America""" +2024-07-04,98434,290,"[\""Wireless Mouse\"", \""Laptop\"", \""Charger\""]",4665.37,{},293272,0,"""South America""" +2024-10-19,98435,1917,"[\""Monitor\"", \""Phone\""]",162.15,"{\"": \""25%\""}",138346,0,"""Asia""" +2023-05-25,98436,1680,"[\""Tablet\"", \""Charger\""]",2470.92,{},172852,0,"""Asia""" +2024-05-15,98437,8788,"[\""Charger\""]",3260.88,{},42659,1,"""Asia""" +2023-12-31,98438,1930,"[\""Wireless Mouse\""]",681.48,{},113070,0,"""South America""" +2024-09-14,98439,8229,"[\""Laptop\"", \""Phone\""]",2025.74,"{\""promo\"": \""6%\""}",149353,1,"""Africa""" +2024-02-11,98440,7368,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3185.78,{},278393,0,"""Asia""" +2024-07-19,98441,2639,"[\""Headphones\"", \""Charger\""]",1640.81,"{\"": \""23%\""}",63786,1,"""South America""" +2024-01-09,98442,1921,"[\""Laptop\""]",751.3,"{\""seasonal\"": \""24%\""}",175274,0,"""North America""" +2024-07-17,98443,6631,"[\""Monitor\"", \""Phone\""]",4828.13,{},210032,0,"""Asia""" +2024-02-02,98444,2553,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1630.95,"{\""loyalty\"": \""16%\""}",148663,1,"""Africa""" +2023-11-28,98445,4747,"[\""Laptop\""]",4874.98,"{\"": \""15%\""}",200844,1,"""South America""" +2024-07-04,98446,2842,"[\""Wireless Mouse\"", \""Keyboard\""]",2971.27,{},48911,1,"""Africa""" +2024-06-17,98447,2478,"[\""Laptop\"", \""Charger\""]",4657.02,"{\"": \""8%\""}",211440,0,"""South America""" +2024-11-21,98448,7828,"[\""Charger\""]",3555.27,{},142372,0,"""South America""" +2023-08-09,98449,4660,"[\""Wireless Mouse\""]",2511.27,"{\""seasonal\"": \""29%\""}",37223,0,"""Europe""" +2024-05-10,98450,2195,"[\""Phone\"", \""Tablet\""]",4369.4,{},114003,1,"""South America""" +2024-03-15,98451,1533,"[\""Charger\"", \""Tablet\""]",2983.65,{},59556,1,"""Asia""" +2024-12-13,98452,4288,"[\""Charger\""]",496.52,"{\""loyalty\"": \""16%\""}",178747,0,"""South America""" +2024-11-19,98453,2949,"[\""Monitor\"", \""Headphones\""]",2832.81,"{\""loyalty\"": \""22%\""}",175416,0,"""South America""" +2023-05-23,98454,3968,"[\""Wireless Mouse\""]",2452.62,"{\""promo\"": \""23%\""}",266221,0,"""Europe""" +2023-07-19,98455,9292,"[\""Wireless Mouse\"", \""Charger\""]",2609.09,{},192527,0,"""Africa""" +2023-09-28,98456,2435,"[\""Laptop\"", \""Tablet\""]",2980.31,"{\""loyalty\"": \""26%\""}",195641,0,"""Africa""" +2023-05-27,98457,5520,"[\""Wireless Mouse\""]",3172.98,{},277330,0,"""North America""" +2024-09-02,98458,5967,"[\""Keyboard\"", \""Monitor\""]",3307.59,"{\""loyalty\"": \""14%\""}",64749,0,"""South America""" +2024-02-20,98459,3220,"[\""Headphones\"", \""Charger\"", \""Phone\""]",4467.18,"{\""promo\"": \""30%\""}",246546,0,"""Asia""" +2023-06-16,98460,9984,"[\""Charger\"", \""Phone\""]",4237.36,{},251710,0,"""South America""" +2023-01-28,98461,8362,"[\""Phone\""]",3094.29,"{\""seasonal\"": \""12%\""}",163652,0,"""Europe""" +2024-09-25,98462,9385,"[\""Keyboard\""]",2312.66,"{\""promo\"": \""24%\""}",198214,1,"""Europe""" +2024-03-27,98463,8665,"[\""Tablet\""]",1960.74,{},100884,0,"""Asia""" +2024-02-24,98464,5236,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",3931.41,{},231631,1,"""North America""" +2023-09-23,98465,2693,"[\""Laptop\"", \""Phone\""]",4949.0,"{\""loyalty\"": \""30%\""}",24524,0,"""North America""" +2023-01-29,98466,602,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",650.04,{},155567,1,"""South America""" +2024-10-09,98467,6720,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",659.33,{},102282,0,"""South America""" +2023-05-07,98468,3497,"[\""Keyboard\""]",4216.21,"{\""seasonal\"": \""10%\""}",161818,0,"""North America""" +2023-11-27,98469,6257,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3501.4,"{\""seasonal\"": \""14%\""}",240443,1,"""North America""" +2024-04-02,98470,947,"[\""Laptop\""]",679.54,"{\""seasonal\"": \""13%\""}",224924,0,"""Asia""" +2023-02-24,98471,3653,"[\""Headphones\""]",4562.2,{},252812,1,"""Africa""" +2024-02-20,98472,5066,"[\""Headphones\""]",4409.46,"{\""loyalty\"": \""25%\""}",118165,0,"""Africa""" +2023-12-10,98473,7126,"[\""Laptop\"", \""Headphones\""]",1582.93,{},206185,1,"""Asia""" +2024-11-01,98474,4067,"[\""Headphones\"", \""Wireless Mouse\""]",1303.5,"{\"": \""20%\""}",150626,0,"""Europe""" +2023-02-16,98475,726,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",3936.74,{},105528,1,"""Asia""" +2023-08-24,98476,4781,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",2651.32,{},119539,1,"""South America""" +2023-02-07,98477,5456,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2419.41,{},146685,1,"""Europe""" +2024-08-24,98478,2010,"[\""Charger\""]",4643.43,{},292160,0,"""Europe""" +2023-11-13,98479,121,"[\""Keyboard\"", \""Charger\""]",4418.99,"{\"": \""14%\""}",131196,0,"""Europe""" +2023-12-04,98480,5500,"[\""Laptop\"", \""Wireless Mouse\""]",254.52,"{\""loyalty\"": \""26%\""}",220176,1,"""Africa""" +2024-03-27,98481,4517,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",3125.6,{},153283,1,"""South America""" +2024-09-01,98482,4840,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1675.7,"{\""loyalty\"": \""21%\""}",39870,0,"""North America""" +2023-05-21,98483,3785,"[\""Charger\"", \""Wireless Mouse\""]",4728.75,"{\"": \""26%\""}",185988,1,"""North America""" +2023-05-10,98484,436,"[\""Keyboard\"", \""Monitor\""]",2648.44,{},251431,1,"""Europe""" +2024-03-08,98485,1209,"[\""Phone\"", \""Laptop\""]",2556.29,{},290984,0,"""South America""" +2023-02-16,98486,8889,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4742.24,"{\"": \""25%\""}",250182,1,"""South America""" +2023-08-16,98487,2781,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",627.71,{},174343,0,"""Europe""" +2024-12-03,98488,1247,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",1894.89,{},168468,1,"""North America""" +2023-01-12,98489,2226,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",83.06,{},165448,0,"""North America""" +2023-02-04,98490,3576,"[\""Phone\""]",977.01,"{\""loyalty\"": \""28%\""}",168746,0,"""Asia""" +2023-11-01,98491,319,"[\""Laptop\"", \""Tablet\""]",327.0,{},118549,0,"""Africa""" +2024-02-13,98492,692,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4231.68,{},234445,0,"""South America""" +2023-12-18,98493,2913,"[\""Keyboard\""]",4442.23,"{\""seasonal\"": \""7%\""}",17848,0,"""South America""" +2024-10-01,98494,7340,"[\""Tablet\""]",1646.09,{},1014,1,"""South America""" +2024-01-20,98495,6269,"[\""Monitor\"", \""Charger\""]",2460.85,"{\""seasonal\"": \""27%\""}",83025,0,"""Asia""" +2024-02-17,98496,7837,"[\""Laptop\"", \""Phone\""]",2570.51,"{\""seasonal\"": \""12%\""}",18903,0,"""Africa""" +2024-08-02,98497,9134,"[\""Laptop\"", \""Keyboard\""]",3810.19,"{\""loyalty\"": \""26%\""}",17012,0,"""South America""" +2023-04-13,98498,364,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",451.77,"{\""promo\"": \""6%\""}",139597,0,"""Africa""" +2024-07-22,98499,8615,"[\""Headphones\"", \""Laptop\""]",1933.32,"{\""seasonal\"": \""29%\""}",150557,0,"""South America""" +2023-04-05,98500,319,"[\""Charger\"", \""Phone\""]",3409.94,"{\""loyalty\"": \""20%\""}",149222,0,"""Europe""" +2023-08-29,98501,5295,"[\""Laptop\""]",4064.67,{},113093,1,"""South America""" +2023-01-26,98502,466,"[\""Laptop\"", \""Charger\""]",1518.85,"{\""promo\"": \""11%\""}",89502,0,"""Africa""" +2024-12-11,98503,5241,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1633.78,"{\""seasonal\"": \""14%\""}",6140,0,"""Europe""" +2024-02-23,98504,4356,"[\""Headphones\""]",1570.1,"{\"": \""6%\""}",231102,0,"""Europe""" +2023-08-29,98505,9902,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1136.18,"{\"": \""10%\""}",247763,1,"""Europe""" +2023-07-28,98506,9013,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",1592.56,{},256022,0,"""North America""" +2023-03-07,98507,2621,"[\""Wireless Mouse\"", \""Monitor\"", \""Phone\""]",4722.9,"{\"": \""28%\""}",95189,1,"""North America""" +2024-08-28,98508,873,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",1211.43,{},44556,0,"""Africa""" +2023-07-17,98509,530,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3763.52,"{\""promo\"": \""25%\""}",185412,0,"""Europe""" +2024-12-26,98510,7861,"[\""Wireless Mouse\"", \""Headphones\""]",2810.16,{},3016,0,"""Asia""" +2024-11-15,98511,937,"[\""Phone\""]",1662.12,{},143555,1,"""Africa""" +2023-02-06,98512,7752,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",2416.19,{},249332,0,"""South America""" +2023-04-22,98513,3259,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",4703.22,"{\""promo\"": \""20%\""}",204607,0,"""Europe""" +2023-04-13,98514,3739,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",1095.67,"{\""promo\"": \""20%\""}",189198,0,"""Europe""" +2024-08-08,98515,444,"[\""Headphones\""]",4183.7,{},242752,1,"""Europe""" +2024-12-10,98516,7229,"[\""Laptop\""]",2207.2,"{\""seasonal\"": \""28%\""}",273062,0,"""North America""" +2023-08-15,98517,7005,"[\""Charger\""]",125.2,{},19691,1,"""South America""" +2023-06-28,98518,141,"[\""Phone\"", \""Monitor\""]",134.55,{},200194,0,"""Europe""" +2023-08-02,98519,1690,"[\""Charger\""]",1771.08,{},130339,0,"""South America""" +2024-01-21,98520,1387,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",2705.04,{},39731,0,"""North America""" +2023-06-17,98521,8440,"[\""Keyboard\"", \""Tablet\""]",2181.84,"{\""promo\"": \""8%\""}",60662,0,"""Europe""" +2024-09-26,98522,5750,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",2532.94,"{\""seasonal\"": \""12%\""}",217152,1,"""Asia""" +2023-11-09,98523,1900,"[\""Tablet\"", \""Phone\""]",4663.09,"{\"": \""11%\""}",75684,1,"""Europe""" +2024-04-11,98524,664,"[\""Laptop\""]",759.27,"{\""seasonal\"": \""15%\""}",127690,1,"""Africa""" +2023-12-12,98525,8197,"[\""Headphones\""]",1764.29,"{\"": \""25%\""}",220483,0,"""South America""" +2023-09-11,98526,5177,"[\""Tablet\"", \""Monitor\""]",2856.23,{},182400,0,"""Africa""" +2023-05-20,98527,9282,"[\""Keyboard\"", \""Laptop\""]",2565.67,"{\""promo\"": \""30%\""}",9211,1,"""North America""" +2024-09-28,98528,3324,"[\""Monitor\""]",4066.22,{},216403,1,"""Europe""" +2023-02-02,98529,7416,"[\""Phone\"", \""Wireless Mouse\"", \""Tablet\""]",4426.63,"{\""seasonal\"": \""16%\""}",238698,1,"""Asia""" +2024-01-01,98530,1383,"[\""Laptop\""]",3900.42,{},106324,0,"""Africa""" +2023-08-03,98531,2904,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",3409.36,"{\""promo\"": \""22%\""}",261426,0,"""Africa""" +2024-07-08,98532,9369,"[\""Headphones\""]",1431.18,{},284018,0,"""Africa""" +2024-06-06,98533,6656,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",916.81,"{\""seasonal\"": \""27%\""}",267043,0,"""North America""" +2024-03-17,98534,7261,"[\""Tablet\""]",722.34,"{\"": \""7%\""}",217481,1,"""North America""" +2024-07-03,98535,3546,"[\""Phone\"", \""Tablet\""]",2175.59,{},17405,1,"""North America""" +2024-02-18,98536,9157,"[\""Wireless Mouse\"", \""Keyboard\""]",4732.74,{},161517,0,"""Europe""" +2023-05-25,98537,7952,"[\""Wireless Mouse\""]",3960.11,"{\"": \""18%\""}",77539,1,"""Africa""" +2024-06-24,98538,6009,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",4639.14,"{\""loyalty\"": \""15%\""}",95103,1,"""South America""" +2023-10-11,98539,3570,"[\""Laptop\""]",4800.21,"{\""promo\"": \""26%\""}",137799,0,"""Asia""" +2024-03-31,98540,5979,"[\""Charger\""]",2636.66,"{\"": \""27%\""}",88085,0,"""Europe""" +2023-10-19,98541,9153,"[\""Tablet\"", \""Charger\""]",3494.53,{},201767,1,"""South America""" +2023-06-07,98542,5210,"[\""Phone\"", \""Wireless Mouse\""]",1940.72,{},234704,1,"""Africa""" +2024-04-16,98543,7973,"[\""Phone\"", \""Laptop\""]",3403.06,{},262792,0,"""Europe""" +2023-03-11,98544,7033,"[\""Keyboard\"", \""Monitor\""]",2856.26,"{\""promo\"": \""17%\""}",168677,1,"""North America""" +2023-10-29,98545,5024,"[\""Phone\"", \""Tablet\""]",2292.43,{},185023,0,"""Asia""" +2024-05-31,98546,3300,"[\""Wireless Mouse\""]",4227.6,{},105953,1,"""South America""" +2023-04-06,98547,3146,"[\""Wireless Mouse\"", \""Charger\""]",2331.82,"{\""seasonal\"": \""9%\""}",292675,1,"""Asia""" +2023-03-01,98548,7518,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",4154.72,{},11055,1,"""South America""" +2023-03-15,98549,7317,"[\""Wireless Mouse\"", \""Headphones\""]",4563.37,{},149978,1,"""Europe""" +2024-08-23,98550,924,"[\""Headphones\"", \""Keyboard\""]",4498.98,"{\""loyalty\"": \""22%\""}",94878,1,"""Europe""" +2023-06-10,98551,7771,"[\""Phone\"", \""Charger\""]",4036.13,{},71990,1,"""Africa""" +2024-07-01,98552,3144,"[\""Phone\""]",772.57,"{\""loyalty\"": \""26%\""}",274656,0,"""Asia""" +2023-03-02,98553,330,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",660.34,"{\""seasonal\"": \""13%\""}",127351,1,"""South America""" +2024-01-16,98554,1739,"[\""Charger\"", \""Laptop\""]",2635.15,{},134751,1,"""North America""" +2024-09-28,98555,6410,"[\""Laptop\"", \""Headphones\""]",3050.96,{},19705,0,"""Europe""" +2023-03-17,98556,1996,"[\""Laptop\""]",1727.31,"{\"": \""14%\""}",83718,0,"""Europe""" +2023-12-17,98557,4742,"[\""Charger\"", \""Headphones\""]",84.12,"{\""seasonal\"": \""6%\""}",287415,1,"""Asia""" +2023-09-26,98558,2054,"[\""Tablet\"", \""Headphones\""]",4597.92,"{\"": \""21%\""}",97982,0,"""Asia""" +2024-01-16,98559,3403,"[\""Monitor\"", \""Phone\""]",4387.58,"{\""seasonal\"": \""26%\""}",185074,0,"""South America""" +2023-01-28,98560,5368,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",2717.8,{},203863,1,"""North America""" +2023-03-13,98561,1590,"[\""Phone\"", \""Wireless Mouse\""]",606.1,{},290910,0,"""South America""" +2024-07-31,98562,9992,"[\""Phone\""]",4461.38,"{\""seasonal\"": \""17%\""}",106469,0,"""Europe""" +2023-03-06,98563,7651,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",1865.86,"{\""seasonal\"": \""7%\""}",131141,1,"""Europe""" +2023-09-22,98564,8289,"[\""Laptop\"", \""Monitor\""]",122.04,{},176716,0,"""Africa""" +2024-11-25,98565,6572,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",3481.67,{},144916,0,"""South America""" +2023-09-30,98566,9350,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3705.95,"{\""seasonal\"": \""30%\""}",121006,0,"""Asia""" +2023-06-23,98567,5722,"[\""Charger\""]",1451.03,{},260001,1,"""South America""" +2023-02-12,98568,1917,"[\""Keyboard\"", \""Monitor\""]",886.23,"{\"": \""23%\""}",14032,0,"""South America""" +2024-11-01,98569,1301,"[\""Monitor\"", \""Keyboard\""]",4267.03,"{\""loyalty\"": \""19%\""}",297758,0,"""Europe""" +2023-08-20,98570,6673,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",2399.16,"{\""seasonal\"": \""10%\""}",184880,0,"""Africa""" +2024-12-02,98571,9280,"[\""Monitor\"", \""Headphones\""]",2691.49,"{\""loyalty\"": \""29%\""}",69021,1,"""South America""" +2023-03-27,98572,7957,"[\""Phone\"", \""Tablet\""]",4411.15,{},263770,1,"""Asia""" +2023-10-07,98573,8347,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",1531.49,{},110564,1,"""North America""" +2023-03-16,98574,1593,"[\""Charger\"", \""Monitor\"", \""Phone\""]",484.14,{},238350,0,"""South America""" +2023-08-09,98575,6650,"[\""Tablet\"", \""Wireless Mouse\""]",3366.64,"{\""promo\"": \""27%\""}",105114,1,"""North America""" +2023-07-19,98576,2430,"[\""Tablet\"", \""Keyboard\""]",1651.02,{},229569,0,"""Africa""" +2023-03-05,98577,1821,"[\""Monitor\""]",1967.25,{},23567,1,"""Asia""" +2023-03-13,98578,2782,"[\""Monitor\"", \""Tablet\""]",2123.34,{},78810,0,"""North America""" +2023-10-26,98579,7595,"[\""Laptop\""]",1723.2,{},221093,1,"""Asia""" +2024-01-07,98580,2976,"[\""Monitor\""]",1682.72,{},245562,1,"""Africa""" +2023-09-18,98581,978,"[\""Charger\"", \""Phone\""]",4968.45,{},208093,0,"""Europe""" +2023-08-19,98582,9152,"[\""Phone\"", \""Laptop\""]",1023.14,"{\""promo\"": \""25%\""}",68832,0,"""South America""" +2023-03-01,98583,2744,"[\""Monitor\""]",620.66,{},263852,1,"""North America""" +2024-04-20,98584,744,"[\""Keyboard\""]",389.97,{},263729,0,"""Africa""" +2023-04-22,98585,5164,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",426.67,"{\""seasonal\"": \""5%\""}",112082,1,"""Africa""" +2024-10-04,98586,9557,"[\""Charger\""]",592.1,"{\""seasonal\"": \""21%\""}",91058,0,"""Asia""" +2023-03-25,98587,739,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",3384.65,"{\""promo\"": \""25%\""}",32499,0,"""Asia""" +2023-10-12,98588,4374,"[\""Phone\"", \""Monitor\""]",1619.76,"{\"": \""7%\""}",25348,1,"""South America""" +2024-12-26,98589,9676,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3434.93,"{\""seasonal\"": \""10%\""}",218362,1,"""Africa""" +2024-06-14,98590,6039,"[\""Keyboard\""]",797.74,{},156787,1,"""Africa""" +2023-08-06,98591,9990,"[\""Laptop\""]",4685.85,{},128021,1,"""Europe""" +2023-11-03,98592,2452,"[\""Monitor\"", \""Laptop\""]",561.73,{},204031,1,"""North America""" +2023-01-16,98593,2164,"[\""Keyboard\"", \""Wireless Mouse\""]",2543.49,"{\"": \""17%\""}",271733,1,"""Africa""" +2023-07-26,98594,1347,"[\""Charger\""]",4073.77,{},134730,1,"""Africa""" +2023-02-08,98595,9472,"[\""Charger\"", \""Tablet\"", \""Headphones\""]",4330.89,"{\""seasonal\"": \""28%\""}",88930,1,"""Africa""" +2023-05-02,98596,1463,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1522.08,{},245402,1,"""South America""" +2024-10-19,98597,8098,"[\""Wireless Mouse\""]",4477.21,{},18804,0,"""Asia""" +2024-04-01,98598,7341,"[\""Monitor\""]",1418.18,"{\""promo\"": \""8%\""}",100795,0,"""Africa""" +2023-10-02,98599,8036,"[\""Monitor\""]",1162.39,{},175775,1,"""Europe""" +2023-09-29,98600,6618,"[\""Charger\"", \""Headphones\"", \""Phone\""]",76.5,{},243624,1,"""Asia""" +2023-03-30,98601,9173,"[\""Wireless Mouse\""]",2036.0,"{\""promo\"": \""30%\""}",93894,1,"""North America""" +2024-08-06,98602,2101,"[\""Charger\""]",512.83,{},168375,1,"""North America""" +2024-03-10,98603,3243,"[\""Keyboard\"", \""Phone\""]",86.48,{},245333,0,"""North America""" +2024-04-12,98604,2045,"[\""Tablet\""]",4523.06,"{\""seasonal\"": \""12%\""}",246343,1,"""North America""" +2024-06-14,98605,4803,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3672.99,"{\""loyalty\"": \""24%\""}",142020,0,"""Europe""" +2024-02-21,98606,3727,"[\""Charger\""]",4077.68,"{\""promo\"": \""13%\""}",121214,0,"""Africa""" +2024-05-09,98607,1660,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1495.68,{},155163,1,"""Africa""" +2024-05-11,98608,576,"[\""Phone\"", \""Laptop\""]",469.24,"{\""promo\"": \""16%\""}",139172,0,"""Europe""" +2023-05-07,98609,1633,"[\""Wireless Mouse\"", \""Phone\""]",2802.07,"{\""loyalty\"": \""24%\""}",134222,1,"""Africa""" +2024-11-23,98610,1635,"[\""Headphones\"", \""Phone\""]",592.47,{},272945,0,"""Europe""" +2023-08-31,98611,6505,"[\""Wireless Mouse\""]",2735.21,"{\""loyalty\"": \""24%\""}",51176,1,"""Asia""" +2023-08-22,98612,9405,"[\""Tablet\"", \""Monitor\"", \""Charger\""]",1807.09,"{\""seasonal\"": \""9%\""}",3263,1,"""Africa""" +2023-10-22,98613,5390,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",542.1,"{\""seasonal\"": \""24%\""}",277371,0,"""Africa""" +2023-08-23,98614,1584,"[\""Wireless Mouse\""]",3147.52,"{\""loyalty\"": \""23%\""}",21719,1,"""Asia""" +2024-08-07,98615,8834,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",2018.94,"{\""seasonal\"": \""13%\""}",239280,1,"""South America""" +2023-03-10,98616,5258,"[\""Monitor\"", \""Laptop\"", \""Headphones\""]",3275.41,"{\""promo\"": \""12%\""}",192304,1,"""South America""" +2023-07-30,98617,6840,"[\""Charger\""]",2260.7,{},232273,0,"""North America""" +2024-04-22,98618,9751,"[\""Tablet\""]",2792.61,"{\""seasonal\"": \""8%\""}",68012,0,"""Asia""" +2024-01-28,98619,8805,"[\""Charger\"", \""Wireless Mouse\""]",1948.13,"{\""seasonal\"": \""11%\""}",258034,0,"""Africa""" +2024-05-08,98620,527,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",92.41,"{\""loyalty\"": \""15%\""}",205704,0,"""North America""" +2023-01-10,98621,8540,"[\""Keyboard\""]",2914.81,"{\""loyalty\"": \""10%\""}",294927,1,"""South America""" +2024-03-20,98622,6827,"[\""Wireless Mouse\"", \""Headphones\""]",4273.35,"{\""seasonal\"": \""9%\""}",122601,1,"""Asia""" +2024-12-09,98623,8539,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",104.35,{},153980,0,"""South America""" +2023-01-06,98624,7087,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",844.64,"{\""loyalty\"": \""17%\""}",114302,0,"""Africa""" +2023-12-22,98625,6131,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3390.4,"{\"": \""15%\""}",292538,0,"""Asia""" +2023-01-02,98626,3440,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",1617.01,"{\"": \""23%\""}",130968,1,"""Asia""" +2024-07-01,98627,1620,"[\""Wireless Mouse\"", \""Charger\""]",1672.56,"{\"": \""28%\""}",163051,1,"""Asia""" +2023-08-01,98628,4858,"[\""Wireless Mouse\""]",4397.23,"{\""seasonal\"": \""14%\""}",176945,1,"""South America""" +2023-08-27,98629,6678,"[\""Monitor\""]",4602.56,"{\""seasonal\"": \""15%\""}",177716,1,"""Africa""" +2023-12-25,98630,9798,"[\""Monitor\"", \""Laptop\""]",506.96,{},269974,0,"""South America""" +2023-05-26,98631,1347,"[\""Charger\""]",4660.63,"{\"": \""25%\""}",153525,1,"""Africa""" +2023-04-06,98632,8425,"[\""Headphones\""]",4996.31,"{\""loyalty\"": \""7%\""}",198571,0,"""South America""" +2023-12-01,98633,2976,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",1691.84,{},251776,0,"""Europe""" +2024-08-11,98634,1317,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2173.73,{},278119,1,"""North America""" +2023-04-28,98635,3956,"[\""Keyboard\""]",2133.11,"{\""promo\"": \""13%\""}",243510,0,"""Africa""" +2024-04-15,98636,3206,"[\""Laptop\""]",1230.92,"{\"": \""26%\""}",188177,0,"""South America""" +2023-06-25,98637,6966,"[\""Monitor\""]",3234.8,"{\"": \""22%\""}",31726,1,"""Africa""" +2024-12-01,98638,9834,"[\""Keyboard\"", \""Phone\"", \""Headphones\""]",3724.93,{},58187,0,"""South America""" +2023-12-19,98639,5584,"[\""Laptop\"", \""Headphones\""]",4083.27,"{\"": \""11%\""}",23607,0,"""Africa""" +2023-06-08,98640,3490,"[\""Phone\"", \""Charger\""]",1698.74,"{\""promo\"": \""20%\""}",123157,1,"""Africa""" +2023-10-15,98641,5731,"[\""Wireless Mouse\""]",1972.77,{},168754,1,"""Asia""" +2024-01-22,98642,4077,"[\""Headphones\""]",1177.88,"{\""promo\"": \""11%\""}",172317,0,"""North America""" +2023-06-30,98643,1155,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",1168.84,{},124673,1,"""Asia""" +2023-03-13,98644,9668,"[\""Headphones\""]",3584.93,{},19410,0,"""South America""" +2023-05-31,98645,6757,"[\""Keyboard\"", \""Tablet\""]",1017.29,{},70223,1,"""Europe""" +2024-10-08,98646,3801,"[\""Phone\"", \""Keyboard\""]",479.42,"{\""promo\"": \""20%\""}",71568,1,"""Africa""" +2023-10-25,98647,9334,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",2934.16,{},223090,1,"""Africa""" +2024-03-30,98648,4794,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1538.24,{},167082,1,"""Asia""" +2023-06-04,98649,5253,"[\""Monitor\"", \""Keyboard\"", \""Tablet\""]",1180.77,"{\"": \""10%\""}",37652,1,"""Europe""" +2024-08-22,98650,5001,"[\""Wireless Mouse\"", \""Charger\""]",75.76,{},5718,0,"""Europe""" +2024-04-26,98651,9564,"[\""Laptop\""]",3418.8,{},299606,0,"""Asia""" +2024-12-12,98652,603,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1677.38,"{\""loyalty\"": \""18%\""}",246006,0,"""Asia""" +2024-06-20,98653,880,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",3553.63,{},203209,0,"""Europe""" +2023-07-04,98654,9047,"[\""Tablet\""]",2015.85,"{\""loyalty\"": \""30%\""}",41913,0,"""Africa""" +2024-07-03,98655,8745,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",4757.36,{},289698,1,"""Europe""" +2023-02-14,98656,177,"[\""Headphones\""]",4969.55,{},150142,1,"""South America""" +2024-06-29,98657,8939,"[\""Keyboard\""]",3814.7,"{\""seasonal\"": \""22%\""}",173441,0,"""South America""" +2023-10-08,98658,3298,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1674.73,"{\"": \""19%\""}",150920,0,"""Europe""" +2024-06-25,98659,4131,"[\""Keyboard\"", \""Tablet\""]",3498.66,{},200758,0,"""North America""" +2023-08-25,98660,6194,"[\""Headphones\""]",2996.75,{},231918,1,"""Africa""" +2023-12-10,98661,542,"[\""Monitor\"", \""Tablet\""]",3948.22,{},132591,1,"""Asia""" +2024-04-24,98662,4474,"[\""Charger\""]",447.46,{},286111,1,"""Europe""" +2024-10-20,98663,3492,"[\""Phone\"", \""Monitor\""]",4401.47,{},128336,1,"""Europe""" +2023-05-25,98664,1491,"[\""Wireless Mouse\"", \""Charger\""]",3170.69,{},108351,0,"""Africa""" +2024-01-10,98665,2806,"[\""Phone\"", \""Headphones\""]",2231.88,{},222574,0,"""North America""" +2023-05-01,98666,4662,"[\""Phone\""]",3774.03,{},78767,1,"""South America""" +2024-01-12,98667,202,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",4444.23,"{\""seasonal\"": \""13%\""}",36842,0,"""Europe""" +2023-12-08,98668,7522,"[\""Phone\"", \""Headphones\"", \""Monitor\""]",2403.32,{},112542,0,"""Africa""" +2024-06-18,98669,7626,"[\""Headphones\""]",3995.34,"{\""loyalty\"": \""23%\""}",188270,1,"""Africa""" +2024-02-16,98670,7975,"[\""Phone\"", \""Monitor\""]",3780.79,{},222011,0,"""Europe""" +2023-07-16,98671,2405,"[\""Phone\""]",441.5,{},11219,0,"""Europe""" +2024-06-12,98672,1605,"[\""Keyboard\""]",3482.74,"{\""loyalty\"": \""13%\""}",14743,1,"""South America""" +2024-01-08,98673,270,"[\""Monitor\"", \""Tablet\""]",717.82,{},286692,0,"""South America""" +2023-08-22,98674,2624,"[\""Laptop\"", \""Keyboard\"", \""Monitor\""]",211.13,"{\""promo\"": \""11%\""}",62987,0,"""North America""" +2023-12-02,98675,868,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3028.47,"{\"": \""7%\""}",99783,1,"""Africa""" +2023-11-09,98676,3447,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",2536.44,"{\""seasonal\"": \""23%\""}",238633,1,"""Asia""" +2024-10-06,98677,7484,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",4768.65,{},239738,1,"""Asia""" +2024-10-26,98678,4063,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",4717.21,"{\""promo\"": \""17%\""}",47569,1,"""Asia""" +2023-08-17,98679,9454,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",1812.26,"{\"": \""24%\""}",236616,1,"""North America""" +2023-11-20,98680,7279,"[\""Tablet\""]",1408.56,{},291193,0,"""Africa""" +2024-01-14,98681,283,"[\""Monitor\"", \""Phone\""]",2478.85,"{\""seasonal\"": \""7%\""}",293403,1,"""Asia""" +2023-01-04,98682,8639,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",1930.2,{},71234,1,"""South America""" +2024-11-27,98683,644,"[\""Monitor\"", \""Headphones\"", \""Wireless Mouse\""]",687.86,"{\""loyalty\"": \""9%\""}",12054,0,"""Africa""" +2023-03-15,98684,8142,"[\""Keyboard\"", \""Charger\""]",961.74,{},8646,0,"""South America""" +2024-03-22,98685,8385,"[\""Keyboard\"", \""Monitor\""]",1396.22,"{\""loyalty\"": \""29%\""}",281950,1,"""Europe""" +2024-04-13,98686,9967,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",847.25,{},98469,1,"""Africa""" +2024-03-01,98687,5524,"[\""Phone\"", \""Wireless Mouse\"", \""Headphones\""]",2643.98,{},185773,1,"""North America""" +2023-07-07,98688,8229,"[\""Monitor\""]",2258.16,"{\""loyalty\"": \""8%\""}",12552,0,"""Africa""" +2024-01-06,98689,9696,"[\""Laptop\"", \""Phone\""]",2140.34,"{\""loyalty\"": \""17%\""}",217049,1,"""Europe""" +2023-03-28,98690,7425,"[\""Laptop\"", \""Charger\""]",467.97,"{\""loyalty\"": \""28%\""}",278349,0,"""Europe""" +2024-02-15,98691,4762,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",3855.95,"{\"": \""16%\""}",183220,0,"""Europe""" +2023-08-30,98692,1547,"[\""Charger\"", \""Wireless Mouse\""]",3455.51,"{\""promo\"": \""21%\""}",258806,1,"""Africa""" +2023-10-11,98693,729,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3254.83,"{\"": \""18%\""}",90872,1,"""Europe""" +2023-10-23,98694,5389,"[\""Charger\""]",4215.53,{},134554,0,"""North America""" +2024-03-04,98695,9286,"[\""Tablet\""]",725.57,"{\""promo\"": \""30%\""}",163630,1,"""Europe""" +2023-04-18,98696,2240,"[\""Keyboard\"", \""Laptop\""]",1934.58,{},264009,1,"""Africa""" +2024-11-11,98697,7484,"[\""Monitor\""]",1052.62,{},238567,1,"""South America""" +2024-01-06,98698,2184,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",980.56,{},213662,1,"""Europe""" +2023-05-20,98699,5461,"[\""Keyboard\""]",3481.2,{},167067,0,"""North America""" +2024-07-09,98700,5941,"[\""Keyboard\""]",2367.56,"{\""promo\"": \""23%\""}",119576,0,"""Africa""" +2023-11-23,98701,5617,"[\""Laptop\""]",3053.62,{},240770,1,"""Europe""" +2024-12-02,98702,29,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",648.37,{},141340,0,"""North America""" +2023-08-18,98703,4579,"[\""Charger\"", \""Headphones\"", \""Wireless Mouse\""]",1755.53,"{\""seasonal\"": \""16%\""}",80819,1,"""Africa""" +2023-07-13,98704,2810,"[\""Monitor\"", \""Tablet\""]",2162.01,{},206704,0,"""Africa""" +2024-01-20,98705,264,"[\""Wireless Mouse\""]",80.62,{},21727,1,"""Africa""" +2023-09-11,98706,4582,"[\""Tablet\"", \""Keyboard\""]",4339.22,{},171914,0,"""Africa""" +2024-08-23,98707,1988,"[\""Tablet\"", \""Wireless Mouse\""]",1862.71,"{\"": \""23%\""}",192284,1,"""Africa""" +2024-10-05,98708,4949,"[\""Headphones\"", \""Tablet\"", \""Monitor\""]",3383.98,{},6420,0,"""South America""" +2023-08-03,98709,7969,"[\""Keyboard\"", \""Tablet\""]",1103.8,"{\""loyalty\"": \""23%\""}",131720,1,"""Africa""" +2023-08-08,98710,1416,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",1008.63,"{\""seasonal\"": \""16%\""}",66396,0,"""Europe""" +2023-10-07,98711,556,"[\""Phone\""]",599.97,"{\"": \""12%\""}",167774,1,"""Europe""" +2023-09-18,98712,8037,"[\""Phone\"", \""Charger\""]",2821.18,{},265817,0,"""Asia""" +2023-09-11,98713,9722,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2215.72,"{\""seasonal\"": \""13%\""}",177901,1,"""South America""" +2024-07-17,98714,3690,"[\""Headphones\""]",3633.28,{},245283,0,"""North America""" +2023-07-12,98715,8069,"[\""Wireless Mouse\""]",3342.7,"{\""seasonal\"": \""11%\""}",18710,1,"""Europe""" +2024-08-04,98716,8039,"[\""Laptop\"", \""Tablet\"", \""Wireless Mouse\""]",2387.37,"{\"": \""17%\""}",43926,1,"""South America""" +2024-09-04,98717,6884,"[\""Headphones\""]",1917.71,"{\"": \""30%\""}",3224,1,"""South America""" +2024-09-15,98718,990,"[\""Keyboard\"", \""Phone\""]",967.62,"{\"": \""8%\""}",26225,1,"""North America""" +2023-01-30,98719,2710,"[\""Laptop\"", \""Tablet\""]",4535.04,{},112630,0,"""South America""" +2023-07-02,98720,5338,"[\""Keyboard\"", \""Phone\""]",1483.1,"{\"": \""30%\""}",200912,1,"""South America""" +2024-04-16,98721,4634,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",3185.02,{},261176,0,"""South America""" +2024-05-29,98722,7888,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1966.59,{},200559,1,"""Asia""" +2023-08-10,98723,33,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",3342.8,"{\""seasonal\"": \""22%\""}",115133,0,"""Europe""" +2024-05-23,98724,4163,"[\""Charger\"", \""Keyboard\""]",677.67,{},133049,1,"""Africa""" +2023-03-05,98725,6591,"[\""Wireless Mouse\"", \""Monitor\""]",3229.19,{},239879,0,"""North America""" +2023-06-23,98726,2329,"[\""Phone\""]",3829.75,{},85086,0,"""Asia""" +2024-01-03,98727,1555,"[\""Keyboard\"", \""Laptop\""]",3689.15,"{\"": \""20%\""}",6951,1,"""South America""" +2024-12-25,98728,498,"[\""Headphones\"", \""Wireless Mouse\""]",2731.61,{},70805,0,"""North America""" +2024-10-09,98729,7967,"[\""Phone\""]",3307.37,"{\""loyalty\"": \""17%\""}",153942,0,"""Africa""" +2023-07-30,98730,1402,"[\""Tablet\"", \""Laptop\"", \""Monitor\""]",812.08,{},223795,1,"""Europe""" +2023-03-21,98731,7793,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",200.18,{},145352,1,"""South America""" +2023-12-25,98732,6841,"[\""Phone\"", \""Headphones\""]",1439.66,"{\"": \""23%\""}",87575,1,"""Africa""" +2023-12-30,98733,9979,"[\""Headphones\""]",172.83,"{\""loyalty\"": \""18%\""}",22449,1,"""Europe""" +2023-02-01,98734,4009,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3715.52,"{\"": \""21%\""}",2996,1,"""Asia""" +2023-08-14,98735,6695,"[\""Wireless Mouse\""]",3363.06,{},24961,0,"""North America""" +2023-07-31,98736,5659,"[\""Charger\"", \""Headphones\"", \""Tablet\""]",3647.84,{},296817,1,"""Asia""" +2024-09-06,98737,764,"[\""Charger\"", \""Monitor\""]",2477.42,"{\""loyalty\"": \""20%\""}",153052,0,"""South America""" +2024-06-01,98738,1434,"[\""Laptop\"", \""Phone\""]",1598.29,{},129526,1,"""Asia""" +2024-05-31,98739,5090,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",4894.43,{},215641,0,"""North America""" +2024-09-28,98740,7107,"[\""Keyboard\"", \""Headphones\""]",688.51,{},279446,1,"""South America""" +2023-12-20,98741,584,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",1863.86,"{\""loyalty\"": \""24%\""}",255437,1,"""South America""" +2023-09-14,98742,5058,"[\""Keyboard\""]",4271.65,{},146377,0,"""Europe""" +2024-03-10,98743,9151,"[\""Monitor\"", \""Laptop\"", \""Phone\""]",592.25,"{\""loyalty\"": \""11%\""}",116025,1,"""Europe""" +2024-01-18,98744,5850,"[\""Tablet\""]",1114.14,"{\"": \""6%\""}",184382,1,"""North America""" +2023-10-10,98745,8418,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",2883.13,{},121028,0,"""Africa""" +2024-02-15,98746,5635,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",2207.5,{},214324,0,"""Africa""" +2024-12-02,98747,2308,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",126.22,"{\""promo\"": \""25%\""}",249337,1,"""Europe""" +2024-08-06,98748,8706,"[\""Charger\""]",623.38,"{\""loyalty\"": \""24%\""}",21458,1,"""Europe""" +2023-11-27,98749,2518,"[\""Headphones\""]",3759.62,{},242940,1,"""Africa""" +2024-11-30,98750,9538,"[\""Phone\"", \""Monitor\"", \""Charger\""]",500.82,{},155710,0,"""South America""" +2023-12-02,98751,2087,"[\""Tablet\""]",482.39,"{\""promo\"": \""23%\""}",114595,1,"""Europe""" +2024-08-06,98752,5788,"[\""Tablet\""]",1761.09,"{\"": \""12%\""}",53366,0,"""Europe""" +2024-09-24,98753,6300,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",225.72,"{\""promo\"": \""29%\""}",95895,0,"""North America""" +2023-07-10,98754,3803,"[\""Wireless Mouse\""]",1592.71,"{\"": \""10%\""}",189727,0,"""Asia""" +2024-12-03,98755,3987,"[\""Phone\"", \""Wireless Mouse\""]",168.45,"{\""loyalty\"": \""11%\""}",63064,0,"""South America""" +2024-12-21,98756,6021,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",257.11,{},138740,1,"""Africa""" +2024-11-09,98757,9854,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",1173.56,{},241850,1,"""Asia""" +2023-01-19,98758,4530,"[\""Headphones\"", \""Wireless Mouse\"", \""Monitor\""]",4710.76,"{\""seasonal\"": \""18%\""}",196162,1,"""North America""" +2023-04-14,98759,4826,"[\""Charger\""]",3144.83,"{\""loyalty\"": \""8%\""}",202704,0,"""South America""" +2024-03-16,98760,4554,"[\""Phone\"", \""Monitor\""]",1362.05,{},178138,0,"""South America""" +2024-06-04,98761,9420,"[\""Wireless Mouse\"", \""Tablet\""]",1205.06,"{\""promo\"": \""7%\""}",175469,0,"""South America""" +2024-06-04,98762,2103,"[\""Laptop\""]",1563.91,{},136022,0,"""Asia""" +2024-08-23,98763,9598,"[\""Keyboard\"", \""Monitor\""]",1611.88,{},87862,0,"""North America""" +2024-10-31,98764,8157,"[\""Phone\"", \""Tablet\""]",4201.35,{},46737,1,"""Asia""" +2024-08-31,98765,3204,"[\""Charger\""]",4146.25,"{\""promo\"": \""10%\""}",14190,0,"""South America""" +2024-01-06,98766,7574,"[\""Charger\""]",3381.13,{},217869,0,"""Europe""" +2023-06-02,98767,867,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",2866.52,{},14327,0,"""Europe""" +2024-07-17,98768,5969,"[\""Laptop\""]",663.41,"{\""seasonal\"": \""18%\""}",238313,0,"""North America""" +2023-08-07,98769,6171,"[\""Charger\""]",2212.61,"{\"": \""28%\""}",67816,0,"""Africa""" +2023-05-02,98770,6435,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4430.97,{},292649,1,"""Asia""" +2023-12-14,98771,6662,"[\""Charger\""]",2582.66,"{\""promo\"": \""21%\""}",189164,0,"""South America""" +2024-08-14,98772,8838,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",883.74,"{\""loyalty\"": \""9%\""}",212405,1,"""Europe""" +2023-03-22,98773,1074,"[\""Headphones\"", \""Charger\""]",2494.82,"{\""loyalty\"": \""10%\""}",285079,1,"""Asia""" +2024-01-03,98774,6604,"[\""Tablet\"", \""Laptop\""]",1953.46,"{\"": \""27%\""}",268276,1,"""Europe""" +2023-10-15,98775,4056,"[\""Keyboard\"", \""Tablet\""]",2458.44,"{\""seasonal\"": \""29%\""}",181842,0,"""Europe""" +2023-01-07,98776,6813,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",538.52,{},156515,1,"""Europe""" +2024-07-17,98777,36,"[\""Phone\""]",3330.16,"{\""seasonal\"": \""17%\""}",269534,0,"""South America""" +2024-09-01,98778,5012,"[\""Phone\""]",2466.36,"{\""promo\"": \""6%\""}",230316,1,"""Asia""" +2023-03-17,98779,9195,"[\""Phone\"", \""Tablet\""]",1368.83,{},145999,1,"""North America""" +2024-01-05,98780,7695,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",1349.76,"{\""seasonal\"": \""19%\""}",179061,1,"""Asia""" +2024-06-14,98781,6124,"[\""Keyboard\"", \""Headphones\""]",2153.24,"{\""loyalty\"": \""14%\""}",139811,0,"""South America""" +2023-10-26,98782,2856,"[\""Laptop\"", \""Wireless Mouse\""]",436.82,{},29499,0,"""North America""" +2024-11-25,98783,5926,"[\""Keyboard\"", \""Headphones\""]",1314.11,"{\""promo\"": \""7%\""}",259050,0,"""North America""" +2023-02-08,98784,6492,"[\""Charger\""]",4268.48,{},111935,0,"""North America""" +2024-11-04,98785,6007,"[\""Headphones\"", \""Charger\"", \""Monitor\""]",4476.72,{},103712,0,"""North America""" +2023-11-20,98786,1267,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1958.98,{},246675,1,"""Europe""" +2024-08-09,98787,5080,"[\""Charger\"", \""Laptop\"", \""Headphones\""]",385.45,{},136779,0,"""Africa""" +2024-03-21,98788,3519,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4865.02,"{\"": \""11%\""}",9133,1,"""Africa""" +2023-02-04,98789,1215,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",1609.57,{},15582,1,"""North America""" +2023-01-01,98790,9006,"[\""Tablet\"", \""Keyboard\""]",4897.72,"{\""promo\"": \""29%\""}",10890,1,"""South America""" +2023-05-30,98791,3325,"[\""Monitor\"", \""Tablet\""]",4382.89,{},268598,0,"""North America""" +2024-12-30,98792,4029,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3478.03,{},40018,0,"""North America""" +2024-04-23,98793,413,"[\""Charger\"", \""Wireless Mouse\"", \""Monitor\""]",4610.24,"{\"": \""18%\""}",101199,1,"""Africa""" +2023-10-16,98794,456,"[\""Headphones\""]",3690.06,"{\"": \""16%\""}",298212,0,"""Africa""" +2023-08-06,98795,3097,"[\""Headphones\"", \""Wireless Mouse\"", \""Tablet\""]",1588.18,{},204747,0,"""Asia""" +2023-11-19,98796,4058,"[\""Headphones\"", \""Charger\""]",68.77,{},218715,1,"""South America""" +2023-06-03,98797,463,"[\""Monitor\""]",4686.27,"{\""seasonal\"": \""18%\""}",34220,1,"""Africa""" +2023-04-18,98798,1605,"[\""Tablet\"", \""Wireless Mouse\"", \""Headphones\""]",2889.11,"{\""loyalty\"": \""11%\""}",203863,0,"""Asia""" +2023-02-12,98799,5676,"[\""Keyboard\""]",2900.24,{},32812,0,"""South America""" +2023-04-20,98800,2234,"[\""Charger\"", \""Tablet\""]",2509.19,{},175554,1,"""Africa""" +2023-04-22,98801,3584,"[\""Headphones\""]",3264.3,"{\"": \""28%\""}",272836,1,"""South America""" +2023-12-25,98802,1637,"[\""Monitor\""]",1646.97,{},65740,1,"""North America""" +2024-10-21,98803,5483,"[\""Keyboard\""]",4992.15,"{\""seasonal\"": \""11%\""}",165184,1,"""Africa""" +2023-07-26,98804,795,"[\""Wireless Mouse\"", \""Headphones\""]",1573.4,{},27910,0,"""Asia""" +2024-03-11,98805,7568,"[\""Laptop\"", \""Monitor\""]",1483.64,"{\""loyalty\"": \""16%\""}",223976,0,"""North America""" +2023-02-08,98806,4388,"[\""Tablet\""]",4495.67,"{\""promo\"": \""21%\""}",262890,1,"""North America""" +2023-11-18,98807,5380,"[\""Phone\"", \""Keyboard\"", \""Headphones\""]",2162.85,{},31798,0,"""Asia""" +2023-07-18,98808,5275,"[\""Monitor\"", \""Tablet\""]",1708.22,{},235312,0,"""North America""" +2023-07-18,98809,3203,"[\""Tablet\""]",2282.58,"{\""promo\"": \""7%\""}",259097,1,"""Europe""" +2024-05-05,98810,4195,"[\""Tablet\"", \""Wireless Mouse\"", \""Monitor\""]",2239.4,"{\""seasonal\"": \""11%\""}",136171,1,"""North America""" +2023-10-13,98811,9402,"[\""Tablet\"", \""Charger\""]",2240.96,{},143070,0,"""South America""" +2024-10-12,98812,1940,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",1273.75,"{\""loyalty\"": \""22%\""}",202081,0,"""Africa""" +2024-04-22,98813,7452,"[\""Laptop\"", \""Keyboard\"", \""Charger\""]",3836.81,{},142439,0,"""Europe""" +2024-04-15,98814,3424,"[\""Laptop\""]",560.89,{},17942,0,"""North America""" +2024-06-17,98815,6258,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",2908.11,"{\""promo\"": \""17%\""}",58828,1,"""North America""" +2023-10-16,98816,5586,"[\""Tablet\""]",2472.68,{},63947,0,"""North America""" +2024-08-08,98817,458,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",1539.6,{},219777,0,"""South America""" +2024-05-06,98818,843,"[\""Headphones\""]",3701.05,"{\""promo\"": \""11%\""}",193741,1,"""South America""" +2024-04-26,98819,9678,"[\""Tablet\"", \""Charger\"", \""Headphones\""]",275.67,"{\"": \""19%\""}",214802,0,"""Africa""" +2024-12-12,98820,444,"[\""Tablet\""]",673.5,{},168370,1,"""Europe""" +2024-03-06,98821,4619,"[\""Phone\"", \""Monitor\"", \""Wireless Mouse\""]",4838.34,{},125218,1,"""North America""" +2023-10-24,98822,7325,"[\""Tablet\""]",4846.65,"{\""loyalty\"": \""12%\""}",53916,0,"""Europe""" +2023-07-30,98823,6471,"[\""Laptop\"", \""Tablet\""]",3507.19,"{\""promo\"": \""29%\""}",252341,1,"""South America""" +2023-03-08,98824,1054,"[\""Charger\"", \""Monitor\""]",1930.35,{},19002,1,"""Europe""" +2023-12-25,98825,6442,"[\""Charger\""]",2321.71,"{\""seasonal\"": \""8%\""}",132510,1,"""Africa""" +2024-07-16,98826,2059,"[\""Keyboard\""]",656.16,"{\"": \""8%\""}",248412,1,"""Africa""" +2023-04-05,98827,7135,"[\""Laptop\"", \""Headphones\""]",4273.73,{},227182,0,"""South America""" +2024-05-17,98828,6485,"[\""Keyboard\"", \""Phone\"", \""Tablet\""]",2815.09,"{\""promo\"": \""10%\""}",268294,0,"""Africa""" +2023-05-15,98829,9420,"[\""Tablet\""]",1394.94,"{\""loyalty\"": \""17%\""}",35238,1,"""Asia""" +2024-11-13,98830,683,"[\""Monitor\""]",4183.31,{},260935,0,"""Asia""" +2024-12-09,98831,3008,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3936.31,{},240475,0,"""Asia""" +2024-04-19,98832,9774,"[\""Charger\""]",4930.18,"{\""seasonal\"": \""10%\""}",154890,0,"""Asia""" +2024-01-03,98833,5564,"[\""Headphones\""]",3173.67,{},99176,1,"""Europe""" +2024-11-28,98834,9771,"[\""Tablet\""]",4823.6,"{\"": \""26%\""}",134503,0,"""South America""" +2023-03-07,98835,9151,"[\""Tablet\"", \""Phone\""]",1138.2,"{\""promo\"": \""26%\""}",167836,0,"""Europe""" +2023-02-06,98836,2321,"[\""Keyboard\""]",4975.38,{},51425,1,"""Africa""" +2024-02-07,98837,9965,"[\""Tablet\"", \""Wireless Mouse\""]",4409.13,{},189690,1,"""Asia""" +2023-08-21,98838,5235,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",71.62,"{\""promo\"": \""6%\""}",293867,0,"""Asia""" +2023-12-20,98839,8717,"[\""Keyboard\""]",2137.0,"{\""loyalty\"": \""27%\""}",42965,1,"""South America""" +2023-12-22,98840,2848,"[\""Phone\""]",1917.32,"{\""seasonal\"": \""12%\""}",223397,0,"""South America""" +2023-09-06,98841,7202,"[\""Laptop\"", \""Keyboard\"", \""Tablet\""]",3027.11,"{\""seasonal\"": \""11%\""}",208584,1,"""North America""" +2023-03-16,98842,3101,"[\""Headphones\"", \""Charger\""]",1202.97,"{\""promo\"": \""7%\""}",116435,1,"""Africa""" +2023-02-23,98843,2317,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1828.2,{},249416,1,"""South America""" +2023-04-07,98844,2783,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",838.83,"{\""seasonal\"": \""30%\""}",280761,0,"""South America""" +2024-10-28,98845,4751,"[\""Headphones\""]",4498.72,"{\"": \""10%\""}",212311,1,"""North America""" +2023-05-04,98846,6882,"[\""Headphones\"", \""Phone\""]",2971.51,"{\"": \""15%\""}",86586,1,"""Asia""" +2024-03-19,98847,72,"[\""Monitor\"", \""Tablet\""]",2855.22,{},32190,0,"""South America""" +2024-11-22,98848,4974,"[\""Tablet\""]",1547.01,{},257496,0,"""Africa""" +2024-11-21,98849,904,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3438.97,"{\""seasonal\"": \""14%\""}",63192,1,"""South America""" +2024-09-28,98850,9724,"[\""Phone\"", \""Charger\"", \""Laptop\""]",1144.89,{},102293,0,"""Africa""" +2024-12-01,98851,9565,"[\""Monitor\""]",1945.98,"{\""seasonal\"": \""20%\""}",280150,1,"""Europe""" +2024-05-10,98852,8852,"[\""Keyboard\""]",4363.96,{},121963,0,"""North America""" +2023-04-06,98853,5896,"[\""Wireless Mouse\"", \""Tablet\""]",2354.56,{},1603,1,"""Europe""" +2024-08-08,98854,4070,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",202.3,{},115070,0,"""Asia""" +2023-07-09,98855,7999,"[\""Phone\"", \""Headphones\""]",3373.67,"{\"": \""29%\""}",244547,1,"""Africa""" +2023-08-22,98856,3654,"[\""Phone\"", \""Charger\"", \""Laptop\""]",2362.1,"{\""loyalty\"": \""17%\""}",103624,1,"""Europe""" +2024-09-25,98857,2160,"[\""Headphones\"", \""Laptop\""]",4274.35,"{\""loyalty\"": \""10%\""}",209071,0,"""Asia""" +2024-07-11,98858,7461,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",3452.54,"{\"": \""28%\""}",238248,1,"""Africa""" +2023-10-05,98859,9671,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",92.42,{},30665,0,"""Africa""" +2023-09-07,98860,1056,"[\""Tablet\"", \""Charger\""]",3751.58,{},207063,0,"""Europe""" +2024-06-22,98861,9874,"[\""Phone\"", \""Charger\"", \""Headphones\""]",3203.25,"{\"": \""12%\""}",281575,1,"""South America""" +2024-06-21,98862,2203,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",3271.9,{},240636,1,"""Asia""" +2023-03-13,98863,1302,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",2972.24,{},293152,1,"""Asia""" +2023-03-11,98864,2387,"[\""Keyboard\""]",1889.2,{},299478,0,"""North America""" +2023-06-05,98865,9594,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3534.04,{},195046,0,"""Africa""" +2023-03-02,98866,2001,"[\""Keyboard\"", \""Headphones\""]",2219.45,"{\""promo\"": \""27%\""}",4925,1,"""South America""" +2024-02-08,98867,6389,"[\""Keyboard\"", \""Laptop\""]",4305.21,{},102921,1,"""Africa""" +2024-06-18,98868,8710,"[\""Headphones\"", \""Monitor\""]",57.38,{},31959,1,"""South America""" +2024-03-27,98869,2423,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",2793.37,"{\""promo\"": \""27%\""}",258650,0,"""North America""" +2024-05-05,98870,8873,"[\""Tablet\"", \""Headphones\""]",4866.08,{},208706,0,"""South America""" +2023-06-21,98871,1387,"[\""Tablet\"", \""Keyboard\"", \""Wireless Mouse\""]",265.93,"{\""seasonal\"": \""28%\""}",125634,1,"""North America""" +2024-10-04,98872,7234,"[\""Tablet\"", \""Phone\""]",4648.56,{},239731,0,"""South America""" +2024-01-29,98873,9621,"[\""Laptop\""]",2929.72,{},166296,1,"""Africa""" +2024-07-26,98874,8861,"[\""Laptop\""]",1479.68,"{\""seasonal\"": \""7%\""}",87407,1,"""North America""" +2023-04-14,98875,1529,"[\""Headphones\"", \""Charger\"", \""Laptop\""]",2879.77,{},258450,1,"""Africa""" +2023-06-17,98876,3049,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",2001.76,{},208855,1,"""Europe""" +2024-06-11,98877,7924,"[\""Tablet\"", \""Headphones\""]",2982.15,{},120956,1,"""North America""" +2024-11-09,98878,7558,"[\""Monitor\""]",4746.33,"{\""promo\"": \""30%\""}",169111,0,"""Africa""" +2023-11-09,98879,3469,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",3270.26,{},265376,0,"""Europe""" +2024-08-18,98880,1799,"[\""Tablet\"", \""Charger\""]",803.9,{},72351,1,"""Asia""" +2023-08-30,98881,3578,"[\""Tablet\"", \""Charger\"", \""Wireless Mouse\""]",3230.88,{},198682,0,"""North America""" +2024-01-30,98882,2662,"[\""Tablet\"", \""Monitor\""]",909.47,{},218961,0,"""North America""" +2023-07-03,98883,1142,"[\""Charger\"", \""Wireless Mouse\""]",1485.04,{},29702,0,"""North America""" +2024-06-12,98884,6081,"[\""Tablet\"", \""Headphones\""]",4099.9,"{\"": \""12%\""}",173233,1,"""South America""" +2023-03-22,98885,9715,"[\""Laptop\"", \""Headphones\""]",3184.96,{},103969,1,"""Asia""" +2023-08-01,98886,734,"[\""Wireless Mouse\"", \""Charger\"", \""Monitor\""]",705.11,{},73069,0,"""Africa""" +2023-08-17,98887,6291,"[\""Phone\"", \""Wireless Mouse\""]",1557.51,"{\""loyalty\"": \""11%\""}",299250,1,"""Africa""" +2024-02-06,98888,3198,"[\""Headphones\""]",4464.68,{},172290,1,"""Europe""" +2024-01-09,98889,6296,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",1790.3,{},82888,0,"""North America""" +2023-04-27,98890,2868,"[\""Headphones\"", \""Wireless Mouse\""]",2558.52,"{\""promo\"": \""19%\""}",263436,0,"""South America""" +2023-09-27,98891,3463,"[\""Headphones\"", \""Charger\""]",3350.29,{},283909,0,"""Asia""" +2023-04-13,98892,6826,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",1003.11,{},1522,0,"""South America""" +2024-10-22,98893,6500,"[\""Charger\"", \""Wireless Mouse\"", \""Laptop\""]",4688.23,{},267925,0,"""Africa""" +2023-03-14,98894,5952,"[\""Monitor\"", \""Phone\""]",2839.33,"{\"": \""27%\""}",47498,0,"""Africa""" +2024-10-12,98895,82,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3899.82,{},296212,0,"""Asia""" +2023-06-10,98896,132,"[\""Laptop\""]",3520.54,"{\""seasonal\"": \""24%\""}",3241,1,"""North America""" +2023-04-20,98897,6792,"[\""Tablet\""]",4676.47,"{\"": \""7%\""}",37084,0,"""Africa""" +2023-03-18,98898,6789,"[\""Charger\"", \""Laptop\""]",3696.74,"{\""seasonal\"": \""13%\""}",238201,1,"""Asia""" +2023-09-21,98899,7097,"[\""Wireless Mouse\"", \""Headphones\"", \""Keyboard\""]",477.78,{},73283,1,"""South America""" +2023-11-20,98900,1282,"[\""Charger\""]",388.84,{},294080,1,"""South America""" +2024-10-23,98901,6123,"[\""Wireless Mouse\""]",2738.44,{},168295,0,"""North America""" +2024-12-14,98902,6401,"[\""Laptop\"", \""Phone\""]",1980.76,{},55055,1,"""Europe""" +2024-03-20,98903,5521,"[\""Wireless Mouse\""]",993.88,{},234944,0,"""Asia""" +2024-07-03,98904,7251,"[\""Keyboard\"", \""Monitor\""]",576.84,"{\""promo\"": \""28%\""}",4397,0,"""South America""" +2023-01-31,98905,5069,"[\""Headphones\""]",580.67,"{\"": \""28%\""}",159539,0,"""Africa""" +2024-09-21,98906,1119,"[\""Headphones\"", \""Wireless Mouse\""]",1160.69,{},136365,0,"""Asia""" +2023-10-27,98907,2610,"[\""Monitor\""]",2187.08,{},10825,0,"""South America""" +2023-01-24,98908,1245,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3979.58,"{\""promo\"": \""15%\""}",290280,0,"""North America""" +2024-03-28,98909,1941,"[\""Laptop\"", \""Charger\""]",2107.58,"{\""promo\"": \""5%\""}",21362,1,"""South America""" +2024-10-27,98910,6302,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",3271.04,{},243566,0,"""Europe""" +2023-07-29,98911,4710,"[\""Laptop\"", \""Charger\"", \""Wireless Mouse\""]",98.3,{},260581,0,"""North America""" +2024-02-13,98912,7850,"[\""Laptop\""]",3221.59,"{\"": \""13%\""}",75071,1,"""Asia""" +2023-11-21,98913,3992,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",4281.83,{},14126,1,"""Europe""" +2024-03-17,98914,9348,"[\""Tablet\"", \""Wireless Mouse\""]",674.21,{},113058,1,"""Asia""" +2023-05-08,98915,5847,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",1483.81,"{\""seasonal\"": \""22%\""}",255664,1,"""Asia""" +2024-02-05,98916,2762,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",2905.98,{},35779,1,"""Asia""" +2023-09-27,98917,7965,"[\""Charger\""]",3113.38,"{\"": \""24%\""}",90633,0,"""Africa""" +2024-10-23,98918,5980,"[\""Tablet\"", \""Phone\""]",2301.41,{},277737,0,"""Africa""" +2024-05-21,98919,5524,"[\""Tablet\"", \""Monitor\""]",4332.52,"{\""promo\"": \""26%\""}",167946,1,"""Africa""" +2023-01-19,98920,3794,"[\""Headphones\""]",3272.22,{},72474,1,"""South America""" +2023-01-31,98921,1111,"[\""Charger\"", \""Headphones\"", \""Phone\""]",2262.45,"{\""promo\"": \""21%\""}",266811,1,"""Africa""" +2023-05-06,98922,9797,"[\""Tablet\""]",3261.42,{},45795,0,"""South America""" +2024-03-22,98923,1459,"[\""Laptop\"", \""Monitor\""]",787.24,"{\""seasonal\"": \""20%\""}",154529,0,"""Africa""" +2024-01-08,98924,4712,"[\""Tablet\"", \""Wireless Mouse\""]",503.78,"{\""promo\"": \""24%\""}",156816,0,"""Africa""" +2024-06-07,98925,8160,"[\""Phone\"", \""Laptop\""]",1346.69,{},52698,1,"""North America""" +2024-02-20,98926,3734,"[\""Phone\""]",2467.2,"{\"": \""20%\""}",250545,0,"""Africa""" +2024-09-27,98927,9808,"[\""Wireless Mouse\"", \""Charger\""]",3057.45,"{\""seasonal\"": \""17%\""}",47271,0,"""Europe""" +2023-08-22,98928,6632,"[\""Wireless Mouse\"", \""Laptop\""]",3566.88,{},214577,0,"""Africa""" +2023-11-10,98929,86,"[\""Laptop\"", \""Monitor\""]",1766.86,"{\""seasonal\"": \""5%\""}",221694,1,"""Europe""" +2024-08-06,98930,4733,"[\""Wireless Mouse\"", \""Laptop\""]",2832.53,"{\""promo\"": \""24%\""}",1206,0,"""Africa""" +2024-11-11,98931,3080,"[\""Tablet\"", \""Charger\"", \""Monitor\""]",108.36,{},12613,1,"""Europe""" +2024-11-16,98932,5660,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1052.78,"{\"": \""24%\""}",196295,0,"""Africa""" +2024-03-10,98933,4815,"[\""Monitor\"", \""Laptop\""]",4827.05,{},30072,1,"""North America""" +2023-10-13,98934,5010,"[\""Laptop\"", \""Charger\""]",2585.51,{},18684,0,"""Asia""" +2023-01-01,98935,6703,"[\""Tablet\""]",4000.83,"{\"": \""11%\""}",105968,1,"""Europe""" +2023-05-04,98936,1402,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",2292.01,"{\""seasonal\"": \""21%\""}",111366,1,"""Europe""" +2024-05-17,98937,5568,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2357.18,{},298203,1,"""South America""" +2023-02-04,98938,3225,"[\""Wireless Mouse\"", \""Tablet\""]",4812.25,"{\"": \""19%\""}",276444,0,"""Asia""" +2023-08-23,98939,1339,"[\""Headphones\"", \""Laptop\""]",1764.76,{},9382,0,"""Africa""" +2023-05-02,98940,2847,"[\""Phone\""]",3999.24,{},16950,0,"""South America""" +2023-04-26,98941,1729,"[\""Laptop\"", \""Keyboard\""]",432.8,{},190552,0,"""Africa""" +2023-10-01,98942,9073,"[\""Wireless Mouse\"", \""Phone\""]",4467.42,"{\"": \""11%\""}",78142,1,"""South America""" +2023-09-07,98943,6024,"[\""Phone\"", \""Wireless Mouse\"", \""Monitor\""]",4664.19,"{\""seasonal\"": \""26%\""}",31170,0,"""Europe""" +2023-10-11,98944,7188,"[\""Phone\"", \""Wireless Mouse\""]",3574.06,{},114060,1,"""Asia""" +2023-12-14,98945,833,"[\""Tablet\""]",997.51,{},71741,0,"""Europe""" +2024-08-25,98946,1931,"[\""Monitor\"", \""Charger\""]",943.69,"{\""loyalty\"": \""15%\""}",253381,1,"""North America""" +2024-07-16,98947,8863,"[\""Laptop\""]",4462.22,{},48478,1,"""Asia""" +2024-09-13,98948,4003,"[\""Tablet\"", \""Charger\"", \""Phone\""]",2029.18,"{\""loyalty\"": \""9%\""}",138030,0,"""Asia""" +2023-02-22,98949,898,"[\""Laptop\""]",4191.24,"{\""loyalty\"": \""23%\""}",143947,1,"""South America""" +2023-03-08,98950,9914,"[\""Monitor\"", \""Keyboard\""]",2537.73,{},2318,1,"""Africa""" +2023-06-23,98951,4395,"[\""Laptop\""]",3770.19,{},181556,0,"""Europe""" +2023-02-03,98952,8195,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",4880.38,{},232483,1,"""North America""" +2024-09-18,98953,8355,"[\""Tablet\"", \""Phone\""]",1453.1,"{\""promo\"": \""24%\""}",185168,1,"""North America""" +2023-11-27,98954,985,"[\""Monitor\"", \""Phone\""]",2974.85,"{\"": \""25%\""}",121763,1,"""South America""" +2024-08-31,98955,8547,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2656.49,"{\""loyalty\"": \""7%\""}",126358,1,"""North America""" +2023-08-02,98956,7622,"[\""Phone\""]",882.36,"{\"": \""13%\""}",238928,0,"""North America""" +2023-12-06,98957,8433,"[\""Monitor\""]",2161.3,{},171666,0,"""Africa""" +2023-11-05,98958,178,"[\""Charger\""]",90.88,{},153107,0,"""South America""" +2024-09-20,98959,6637,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",709.76,"{\""seasonal\"": \""16%\""}",230160,1,"""Asia""" +2023-02-12,98960,4713,"[\""Phone\"", \""Laptop\""]",4865.04,{},229043,0,"""North America""" +2023-07-07,98961,9570,"[\""Charger\""]",1669.14,{},21213,0,"""North America""" +2024-04-05,98962,4932,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",4442.21,"{\""loyalty\"": \""8%\""}",123114,1,"""Africa""" +2024-10-04,98963,3642,"[\""Laptop\"", \""Headphones\""]",4982.84,"{\""seasonal\"": \""28%\""}",69207,1,"""South America""" +2024-02-08,98964,4733,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",501.7,{},71831,1,"""Europe""" +2024-03-16,98965,4284,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4297.47,{},66590,1,"""South America""" +2023-09-28,98966,1701,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4280.72,"{\""loyalty\"": \""15%\""}",34527,0,"""North America""" +2023-02-14,98967,4880,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3452.99,{},86646,0,"""Asia""" +2023-06-17,98968,1049,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3735.37,"{\"": \""30%\""}",39899,0,"""North America""" +2024-09-14,98969,3309,"[\""Wireless Mouse\"", \""Keyboard\""]",4721.62,{},242674,0,"""Europe""" +2023-07-09,98970,3785,"[\""Monitor\""]",1782.98,{},279823,0,"""Asia""" +2024-01-29,98971,7358,"[\""Wireless Mouse\""]",2962.56,{},62373,1,"""Europe""" +2023-01-16,98972,8794,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",4474.3,{},272305,1,"""North America""" +2023-10-08,98973,9832,"[\""Tablet\""]",2974.48,{},1792,0,"""North America""" +2023-03-05,98974,1712,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",3708.16,"{\""seasonal\"": \""29%\""}",125542,1,"""Africa""" +2023-10-30,98975,9575,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",2079.52,"{\""promo\"": \""25%\""}",106863,0,"""Asia""" +2023-12-19,98976,1706,"[\""Monitor\""]",4706.16,{},268462,0,"""Europe""" +2024-01-19,98977,7547,"[\""Monitor\""]",751.07,"{\""seasonal\"": \""14%\""}",77586,0,"""North America""" +2023-03-06,98978,6970,"[\""Monitor\""]",3740.33,"{\""loyalty\"": \""5%\""}",102104,0,"""Asia""" +2023-12-29,98979,1409,"[\""Headphones\"", \""Laptop\""]",3955.27,"{\""loyalty\"": \""23%\""}",244860,0,"""South America""" +2024-10-04,98980,1619,"[\""Keyboard\""]",3464.13,{},271250,0,"""Africa""" +2024-08-26,98981,1010,"[\""Laptop\"", \""Charger\""]",3310.0,"{\""promo\"": \""27%\""}",118371,1,"""South America""" +2024-03-28,98982,3109,"[\""Headphones\""]",3803.79,"{\""loyalty\"": \""22%\""}",139419,0,"""Asia""" +2023-09-03,98983,9764,"[\""Phone\""]",2014.33,{},274866,1,"""Asia""" +2024-04-21,98984,9363,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",2158.05,"{\""promo\"": \""29%\""}",246769,1,"""Africa""" +2024-10-31,98985,7124,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",2179.83,"{\"": \""14%\""}",219474,0,"""Africa""" +2024-11-22,98986,4534,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",3843.44,{},223013,0,"""Asia""" +2024-02-16,98987,3956,"[\""Monitor\"", \""Tablet\""]",3693.11,"{\""loyalty\"": \""29%\""}",69838,1,"""Europe""" +2024-07-10,98988,3910,"[\""Headphones\"", \""Monitor\""]",1368.65,{},127377,1,"""Asia""" +2023-12-13,98989,9322,"[\""Tablet\"", \""Laptop\""]",4532.79,{},114941,1,"""Europe""" +2024-03-22,98990,3301,"[\""Phone\""]",1024.05,"{\""loyalty\"": \""29%\""}",268957,0,"""North America""" +2023-08-23,98991,8489,"[\""Phone\"", \""Keyboard\""]",905.83,{},47868,1,"""Asia""" +2023-05-31,98992,2458,"[\""Laptop\""]",3223.5,"{\""seasonal\"": \""13%\""}",137884,0,"""Africa""" +2023-10-20,98993,5615,"[\""Tablet\"", \""Keyboard\""]",2427.37,{},110029,1,"""South America""" +2024-12-19,98994,5503,"[\""Monitor\"", \""Tablet\""]",2653.47,"{\"": \""14%\""}",74126,1,"""South America""" +2024-11-26,98995,1096,"[\""Tablet\"", \""Phone\"", \""Wireless Mouse\""]",973.02,{},177089,0,"""South America""" +2023-01-14,98996,3835,"[\""Laptop\"", \""Phone\"", \""Charger\""]",548.82,{},44221,1,"""Africa""" +2024-10-16,98997,6652,"[\""Wireless Mouse\""]",4790.82,"{\""loyalty\"": \""8%\""}",128661,0,"""Europe""" +2023-09-16,98998,128,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",4425.14,"{\""seasonal\"": \""16%\""}",173167,0,"""South America""" +2024-12-05,98999,9557,"[\""Wireless Mouse\"", \""Keyboard\"", \""Phone\""]",3138.11,{},135741,1,"""North America""" +2023-06-03,99000,9512,"[\""Phone\""]",3501.22,"{\""promo\"": \""19%\""}",218461,1,"""Asia""" +2023-06-13,99001,5684,"[\""Phone\""]",2948.18,"{\""loyalty\"": \""10%\""}",148233,1,"""Africa""" +2024-10-16,99002,6103,"[\""Laptop\""]",687.93,{},179003,0,"""South America""" +2023-06-15,99003,627,"[\""Charger\"", \""Monitor\""]",4470.83,"{\""seasonal\"": \""30%\""}",156610,1,"""North America""" +2023-12-30,99004,1736,"[\""Monitor\"", \""Charger\""]",4150.0,"{\""seasonal\"": \""25%\""}",246943,1,"""North America""" +2024-06-10,99005,668,"[\""Phone\"", \""Wireless Mouse\""]",324.65,"{\""loyalty\"": \""19%\""}",43013,0,"""Asia""" +2024-11-15,99006,8216,"[\""Tablet\"", \""Keyboard\""]",2887.67,{},15165,0,"""Africa""" +2023-04-13,99007,6238,"[\""Phone\"", \""Tablet\""]",1737.63,"{\""seasonal\"": \""19%\""}",263654,1,"""Europe""" +2023-01-10,99008,6176,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",2627.58,{},234258,0,"""Europe""" +2024-06-01,99009,7234,"[\""Keyboard\"", \""Laptop\"", \""Headphones\""]",3268.21,{},275947,0,"""Europe""" +2023-09-14,99010,9491,"[\""Monitor\"", \""Keyboard\""]",2925.21,{},58955,1,"""Africa""" +2024-05-23,99011,8442,"[\""Wireless Mouse\"", \""Keyboard\"", \""Headphones\""]",90.74,"{\""seasonal\"": \""11%\""}",173074,0,"""Africa""" +2024-02-25,99012,5898,"[\""Phone\"", \""Headphones\""]",1854.4,"{\""loyalty\"": \""22%\""}",98057,0,"""South America""" +2023-09-30,99013,7079,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",169.98,"{\""loyalty\"": \""7%\""}",289271,0,"""Europe""" +2023-05-10,99014,4050,"[\""Tablet\"", \""Keyboard\"", \""Laptop\""]",1788.87,"{\"": \""20%\""}",89014,0,"""Asia""" +2023-01-29,99015,5907,"[\""Keyboard\"", \""Tablet\""]",4726.64,"{\""loyalty\"": \""18%\""}",142907,1,"""Europe""" +2024-06-07,99016,4115,"[\""Monitor\""]",3106.04,"{\""promo\"": \""28%\""}",195407,1,"""North America""" +2024-10-18,99017,8115,"[\""Charger\""]",1149.04,{},32668,0,"""North America""" +2024-03-25,99018,1143,"[\""Monitor\""]",1292.83,{},248338,0,"""Asia""" +2024-06-01,99019,4278,"[\""Wireless Mouse\""]",3120.91,"{\""loyalty\"": \""9%\""}",92504,0,"""Europe""" +2024-01-26,99020,9833,"[\""Tablet\"", \""Charger\""]",3645.24,{},95762,1,"""Europe""" +2023-02-23,99021,9607,"[\""Phone\"", \""Keyboard\"", \""Charger\""]",1319.11,"{\"": \""16%\""}",234144,1,"""Africa""" +2023-09-17,99022,1908,"[\""Headphones\"", \""Laptop\""]",4991.43,{},60509,0,"""Europe""" +2024-05-28,99023,3705,"[\""Tablet\""]",1313.38,{},23296,0,"""South America""" +2024-02-01,99024,5199,"[\""Tablet\"", \""Phone\""]",2709.83,{},232163,0,"""North America""" +2024-09-25,99025,2900,"[\""Laptop\""]",3934.49,{},249399,1,"""Europe""" +2023-03-30,99026,3123,"[\""Headphones\"", \""Phone\"", \""Keyboard\""]",1355.64,{},30228,1,"""South America""" +2023-05-23,99027,8088,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",1140.22,{},70339,0,"""Africa""" +2023-02-13,99028,4070,"[\""Monitor\"", \""Charger\""]",4542.06,{},192992,0,"""Africa""" +2023-06-11,99029,3203,"[\""Keyboard\"", \""Tablet\""]",224.87,"{\""seasonal\"": \""23%\""}",177493,1,"""Europe""" +2023-09-20,99030,8708,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2033.48,{},211110,0,"""South America""" +2024-04-10,99031,2535,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",694.76,"{\""seasonal\"": \""14%\""}",212251,1,"""South America""" +2023-06-15,99032,7516,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",4245.6,"{\"": \""28%\""}",14844,1,"""North America""" +2024-03-15,99033,2357,"[\""Laptop\""]",3472.91,{},18302,1,"""South America""" +2023-12-23,99034,959,"[\""Charger\""]",563.43,"{\""promo\"": \""17%\""}",62783,1,"""South America""" +2024-11-25,99035,2654,"[\""Keyboard\"", \""Wireless Mouse\""]",2225.88,{},40151,0,"""North America""" +2023-02-26,99036,2932,"[\""Keyboard\"", \""Wireless Mouse\"", \""Headphones\""]",4845.87,"{\"": \""19%\""}",296451,1,"""North America""" +2023-12-14,99037,7550,"[\""Tablet\"", \""Phone\""]",2571.65,"{\""promo\"": \""18%\""}",290921,0,"""South America""" +2024-12-19,99038,9254,"[\""Phone\""]",4827.06,"{\""promo\"": \""19%\""}",175360,0,"""Asia""" +2023-10-14,99039,1909,"[\""Laptop\"", \""Keyboard\""]",3441.37,"{\""promo\"": \""30%\""}",173036,0,"""Africa""" +2023-01-25,99040,1707,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",1727.42,"{\""seasonal\"": \""28%\""}",145572,1,"""North America""" +2024-05-14,99041,4357,"[\""Laptop\"", \""Phone\"", \""Keyboard\""]",3315.43,"{\""promo\"": \""11%\""}",123194,1,"""Europe""" +2023-08-11,99042,8656,"[\""Headphones\"", \""Tablet\""]",998.35,"{\""seasonal\"": \""21%\""}",14337,1,"""Europe""" +2023-01-01,99043,3652,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",3505.72,{},214507,1,"""South America""" +2023-07-04,99044,60,"[\""Tablet\""]",3001.34,"{\""promo\"": \""6%\""}",122173,0,"""South America""" +2024-06-19,99045,7742,"[\""Headphones\"", \""Tablet\""]",2156.15,{},64333,0,"""North America""" +2024-04-22,99046,2001,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",3720.19,"{\""seasonal\"": \""9%\""}",230950,1,"""Asia""" +2024-08-16,99047,3486,"[\""Charger\""]",1843.45,"{\""promo\"": \""24%\""}",101719,1,"""Africa""" +2024-11-15,99048,3542,"[\""Laptop\"", \""Charger\""]",268.73,"{\""promo\"": \""10%\""}",75796,0,"""Europe""" +2024-02-19,99049,1311,"[\""Keyboard\""]",956.17,{},16671,1,"""Europe""" +2023-06-07,99050,3892,"[\""Keyboard\"", \""Laptop\""]",4443.59,"{\"": \""11%\""}",268140,1,"""Europe""" +2024-05-18,99051,3214,"[\""Headphones\""]",2385.42,"{\"": \""27%\""}",40567,0,"""Asia""" +2024-06-24,99052,7110,"[\""Laptop\"", \""Wireless Mouse\""]",4115.53,"{\"": \""23%\""}",9557,1,"""Africa""" +2023-12-30,99053,629,"[\""Headphones\"", \""Charger\""]",2313.05,"{\"": \""8%\""}",281497,1,"""Asia""" +2023-12-05,99054,9521,"[\""Keyboard\"", \""Laptop\"", \""Charger\""]",1791.53,{},90475,0,"""Asia""" +2023-05-30,99055,9914,"[\""Monitor\"", \""Wireless Mouse\""]",1960.06,"{\"": \""12%\""}",69472,0,"""North America""" +2024-10-24,99056,3639,"[\""Keyboard\""]",3634.3,{},295927,0,"""South America""" +2024-05-25,99057,4083,"[\""Laptop\"", \""Monitor\""]",3180.84,{},56184,0,"""Africa""" +2024-03-16,99058,1574,"[\""Headphones\""]",1914.3,{},245861,1,"""Europe""" +2023-10-11,99059,4224,"[\""Phone\""]",3339.54,"{\""promo\"": \""21%\""}",263402,0,"""South America""" +2023-09-03,99060,8507,"[\""Charger\"", \""Keyboard\""]",3395.81,{},208990,1,"""Europe""" +2023-11-15,99061,4114,"[\""Tablet\"", \""Phone\""]",3551.62,"{\""seasonal\"": \""25%\""}",61652,0,"""Africa""" +2023-05-26,99062,3481,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",2765.82,"{\""seasonal\"": \""28%\""}",233829,1,"""Africa""" +2023-06-07,99063,3108,"[\""Wireless Mouse\"", \""Headphones\"", \""Laptop\""]",3239.87,{},254340,1,"""North America""" +2024-08-12,99064,3927,"[\""Keyboard\""]",3723.69,"{\""loyalty\"": \""30%\""}",70330,1,"""North America""" +2024-03-12,99065,3971,"[\""Charger\"", \""Phone\""]",3805.65,{},1357,0,"""South America""" +2023-06-28,99066,2038,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",386.55,"{\""promo\"": \""10%\""}",105426,1,"""South America""" +2023-03-23,99067,5326,"[\""Headphones\""]",3467.36,{},236245,1,"""South America""" +2023-04-03,99068,4457,"[\""Phone\"", \""Keyboard\""]",230.59,"{\"": \""18%\""}",195813,1,"""Europe""" +2023-06-17,99069,624,"[\""Keyboard\""]",2288.74,{},7502,1,"""North America""" +2023-07-07,99070,8768,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",3615.74,"{\""seasonal\"": \""18%\""}",268310,1,"""South America""" +2024-07-04,99071,3917,"[\""Phone\"", \""Charger\"", \""Tablet\""]",59.87,{},113948,0,"""North America""" +2024-04-08,99072,8273,"[\""Laptop\""]",3835.89,{},133998,0,"""South America""" +2023-01-01,99073,7483,"[\""Headphones\""]",2795.54,"{\""promo\"": \""10%\""}",238767,1,"""Asia""" +2023-09-03,99074,6450,"[\""Phone\"", \""Headphones\"", \""Keyboard\""]",4932.88,"{\""promo\"": \""25%\""}",121874,0,"""North America""" +2024-06-20,99075,8980,"[\""Headphones\"", \""Monitor\"", \""Keyboard\""]",4777.4,"{\""promo\"": \""30%\""}",265093,1,"""Asia""" +2024-05-08,99076,7642,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",4255.83,"{\"": \""11%\""}",99505,0,"""Asia""" +2023-04-23,99077,3817,"[\""Laptop\""]",2145.15,{},19088,0,"""North America""" +2023-05-04,99078,5021,"[\""Tablet\""]",683.27,"{\"": \""27%\""}",96169,0,"""Africa""" +2023-07-13,99079,1515,"[\""Charger\""]",210.64,"{\""loyalty\"": \""27%\""}",73630,0,"""North America""" +2023-09-21,99080,3714,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",4414.37,"{\""seasonal\"": \""24%\""}",155389,0,"""Asia""" +2024-06-26,99081,3933,"[\""Charger\"", \""Laptop\""]",1902.69,{},267746,0,"""South America""" +2023-09-09,99082,9895,"[\""Phone\""]",1065.25,{},7176,1,"""North America""" +2024-01-26,99083,2253,"[\""Monitor\"", \""Tablet\""]",4540.39,{},118543,0,"""Africa""" +2023-10-29,99084,8867,"[\""Charger\""]",1401.1,{},283273,1,"""South America""" +2024-09-01,99085,2844,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",292.63,{},151858,1,"""Asia""" +2024-05-08,99086,7746,"[\""Tablet\"", \""Laptop\"", \""Wireless Mouse\""]",3132.62,{},188727,0,"""South America""" +2023-05-18,99087,9249,"[\""Keyboard\""]",4576.11,{},95635,1,"""South America""" +2024-07-30,99088,7704,"[\""Headphones\""]",2370.3,"{\""seasonal\"": \""12%\""}",124506,0,"""North America""" +2024-06-13,99089,1640,"[\""Charger\"", \""Tablet\""]",274.24,"{\"": \""10%\""}",70419,0,"""Asia""" +2023-11-22,99090,2519,"[\""Monitor\"", \""Charger\"", \""Laptop\""]",3435.88,"{\"": \""18%\""}",161182,1,"""South America""" +2023-09-25,99091,7849,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",1122.87,"{\"": \""8%\""}",78101,1,"""North America""" +2024-12-03,99092,4607,"[\""Charger\"", \""Laptop\"", \""Tablet\""]",4597.16,{},111667,0,"""North America""" +2024-09-02,99093,309,"[\""Monitor\"", \""Laptop\""]",2157.08,{},254491,1,"""North America""" +2023-09-03,99094,4046,"[\""Wireless Mouse\"", \""Laptop\""]",241.46,"{\""loyalty\"": \""24%\""}",66103,1,"""Asia""" +2024-09-19,99095,7765,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",998.74,{},268079,1,"""Africa""" +2023-06-14,99096,6516,"[\""Charger\"", \""Keyboard\""]",807.58,{},139371,1,"""Europe""" +2024-04-12,99097,6805,"[\""Keyboard\""]",4001.87,"{\""promo\"": \""29%\""}",291111,1,"""Europe""" +2024-07-21,99098,7990,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",3398.33,{},196547,0,"""Asia""" +2024-01-05,99099,6925,"[\""Headphones\"", \""Monitor\"", \""Laptop\""]",4470.82,{},160446,0,"""South America""" +2024-04-30,99100,8870,"[\""Keyboard\""]",1386.04,"{\""loyalty\"": \""25%\""}",220667,1,"""South America""" +2023-08-27,99101,8199,"[\""Monitor\"", \""Laptop\""]",2877.55,{},216815,0,"""Asia""" +2024-02-28,99102,4244,"[\""Headphones\"", \""Charger\""]",2943.72,"{\""promo\"": \""28%\""}",209592,1,"""Europe""" +2023-02-08,99103,933,"[\""Wireless Mouse\"", \""Monitor\""]",1923.13,{},121472,1,"""Europe""" +2024-10-05,99104,852,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",3711.54,"{\""promo\"": \""27%\""}",27978,1,"""Europe""" +2023-06-19,99105,4472,"[\""Tablet\""]",4606.0,{},121200,1,"""North America""" +2024-05-04,99106,3553,"[\""Tablet\""]",3624.66,"{\""loyalty\"": \""17%\""}",228063,1,"""Africa""" +2024-08-21,99107,2612,"[\""Phone\""]",3093.62,{},222773,1,"""Europe""" +2023-10-06,99108,8812,"[\""Phone\"", \""Headphones\"", \""Charger\""]",1245.05,"{\""seasonal\"": \""11%\""}",98733,0,"""South America""" +2023-05-05,99109,8652,"[\""Tablet\"", \""Laptop\""]",786.61,"{\"": \""25%\""}",213579,0,"""Africa""" +2023-04-18,99110,6090,"[\""Phone\"", \""Headphones\""]",4773.45,"{\""seasonal\"": \""9%\""}",232967,1,"""Asia""" +2023-02-11,99111,4116,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",1262.69,"{\"": \""22%\""}",190985,1,"""North America""" +2023-01-24,99112,3896,"[\""Charger\""]",3293.39,"{\""promo\"": \""28%\""}",16064,1,"""Asia""" +2023-09-28,99113,3632,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",3010.09,"{\"": \""18%\""}",201878,0,"""Africa""" +2023-06-18,99114,3922,"[\""Wireless Mouse\"", \""Monitor\""]",2589.1,"{\""promo\"": \""17%\""}",270227,0,"""South America""" +2023-06-01,99115,8238,"[\""Laptop\"", \""Charger\"", \""Tablet\""]",2979.97,"{\"": \""15%\""}",107869,0,"""Africa""" +2024-11-27,99116,8757,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",265.65,"{\""loyalty\"": \""17%\""}",139621,1,"""Asia""" +2023-12-20,99117,9608,"[\""Laptop\"", \""Charger\""]",2788.39,{},272169,1,"""Africa""" +2024-11-20,99118,6686,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",3561.19,"{\""seasonal\"": \""8%\""}",292267,0,"""North America""" +2023-06-13,99119,7822,"[\""Tablet\"", \""Phone\""]",2705.17,"{\""promo\"": \""27%\""}",222771,0,"""Asia""" +2023-08-30,99120,5209,"[\""Monitor\"", \""Tablet\""]",3529.54,{},265439,0,"""Europe""" +2023-05-03,99121,471,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2041.99,"{\""promo\"": \""12%\""}",232127,1,"""South America""" +2023-11-29,99122,8179,"[\""Headphones\"", \""Laptop\""]",4004.06,{},239376,0,"""Africa""" +2023-06-16,99123,6594,"[\""Tablet\"", \""Monitor\""]",4245.51,{},42451,0,"""Asia""" +2023-11-16,99124,2869,"[\""Wireless Mouse\"", \""Laptop\""]",653.74,"{\""loyalty\"": \""24%\""}",11270,0,"""Asia""" +2024-05-21,99125,4316,"[\""Monitor\"", \""Wireless Mouse\"", \""Phone\""]",1760.1,{},140967,0,"""Asia""" +2024-07-16,99126,9957,"[\""Headphones\""]",3473.71,{},297599,1,"""Africa""" +2024-06-12,99127,9566,"[\""Keyboard\"", \""Monitor\"", \""Headphones\""]",737.95,"{\"": \""26%\""}",158570,0,"""Europe""" +2023-12-28,99128,6559,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",4932.14,"{\""seasonal\"": \""17%\""}",188587,1,"""Africa""" +2023-05-03,99129,4598,"[\""Laptop\""]",2767.15,"{\"": \""29%\""}",150881,0,"""Asia""" +2024-05-06,99130,410,"[\""Headphones\"", \""Tablet\"", \""Laptop\""]",4623.55,"{\""seasonal\"": \""10%\""}",252814,1,"""South America""" +2023-11-24,99131,8011,"[\""Charger\"", \""Monitor\""]",3762.13,"{\""seasonal\"": \""16%\""}",53753,1,"""Africa""" +2024-08-09,99132,2097,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3915.05,"{\""seasonal\"": \""13%\""}",15314,1,"""North America""" +2024-06-28,99133,3867,"[\""Headphones\"", \""Tablet\"", \""Keyboard\""]",4476.24,{},254429,1,"""Europe""" +2023-02-28,99134,5078,"[\""Monitor\"", \""Wireless Mouse\""]",3707.97,"{\""seasonal\"": \""17%\""}",155139,1,"""Africa""" +2024-10-08,99135,8130,"[\""Wireless Mouse\"", \""Phone\"", \""Tablet\""]",266.1,"{\""seasonal\"": \""11%\""}",130844,1,"""South America""" +2023-06-24,99136,7078,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",3463.03,{},271697,1,"""Europe""" +2024-09-28,99137,3936,"[\""Wireless Mouse\"", \""Charger\"", \""Laptop\""]",3259.64,"{\"": \""15%\""}",121134,0,"""Asia""" +2024-09-07,99138,7456,"[\""Keyboard\""]",1207.68,"{\"": \""16%\""}",284236,0,"""North America""" +2023-07-07,99139,8045,"[\""Tablet\"", \""Phone\""]",4492.64,{},83109,0,"""Europe""" +2023-03-11,99140,5045,"[\""Tablet\"", \""Monitor\""]",2591.15,{},181637,1,"""South America""" +2023-12-26,99141,3432,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",414.41,{},187783,1,"""Europe""" +2023-12-16,99142,5115,"[\""Charger\"", \""Tablet\"", \""Keyboard\""]",4709.08,"{\""promo\"": \""23%\""}",85064,1,"""Europe""" +2023-10-05,99143,397,"[\""Tablet\"", \""Keyboard\""]",1064.53,"{\"": \""5%\""}",110051,1,"""North America""" +2023-11-15,99144,2034,"[\""Laptop\"", \""Charger\""]",2973.25,"{\""promo\"": \""6%\""}",82444,1,"""Asia""" +2023-08-26,99145,7558,"[\""Charger\"", \""Phone\""]",3181.46,{},137622,1,"""North America""" +2023-07-17,99146,9907,"[\""Headphones\"", \""Keyboard\""]",2335.97,{},252687,0,"""Asia""" +2024-07-26,99147,9519,"[\""Monitor\""]",3391.35,{},222215,0,"""South America""" +2024-10-27,99148,1979,"[\""Monitor\"", \""Charger\""]",4664.01,{},127143,0,"""North America""" +2024-06-07,99149,3840,"[\""Laptop\""]",1165.87,{},100528,1,"""Europe""" +2024-04-27,99150,5867,"[\""Tablet\""]",748.7,{},25833,0,"""Europe""" +2023-05-20,99151,2409,"[\""Headphones\""]",2846.5,"{\""loyalty\"": \""9%\""}",209724,1,"""Asia""" +2024-11-21,99152,138,"[\""Keyboard\"", \""Headphones\""]",444.85,{},256814,0,"""Europe""" +2024-09-07,99153,274,"[\""Tablet\"", \""Keyboard\"", \""Monitor\""]",2812.43,"{\"": \""25%\""}",192155,1,"""Africa""" +2024-08-19,99154,257,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",1300.25,"{\""loyalty\"": \""21%\""}",123668,1,"""South America""" +2023-03-17,99155,5847,"[\""Headphones\""]",580.03,{},53772,1,"""Asia""" +2023-05-28,99156,9651,"[\""Charger\"", \""Monitor\"", \""Keyboard\""]",3845.15,"{\"": \""16%\""}",207183,0,"""North America""" +2023-01-23,99157,7342,"[\""Phone\"", \""Headphones\"", \""Laptop\""]",2004.68,"{\""promo\"": \""20%\""}",168508,0,"""Asia""" +2024-10-02,99158,8614,"[\""Phone\"", \""Charger\"", \""Monitor\""]",3737.26,{},137432,0,"""Asia""" +2024-05-26,99159,9379,"[\""Keyboard\""]",3889.1,{},156245,0,"""Africa""" +2023-09-01,99160,482,"[\""Charger\""]",2548.32,"{\""seasonal\"": \""11%\""}",199339,0,"""Asia""" +2023-01-24,99161,9714,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",4130.17,{},143510,0,"""Asia""" +2023-12-26,99162,3571,"[\""Wireless Mouse\"", \""Laptop\""]",4080.64,{},168054,0,"""Africa""" +2023-09-01,99163,5920,"[\""Monitor\"", \""Laptop\""]",3831.93,"{\""loyalty\"": \""16%\""}",94593,0,"""South America""" +2023-05-23,99164,5878,"[\""Tablet\"", \""Monitor\"", \""Wireless Mouse\""]",944.31,"{\""loyalty\"": \""9%\""}",269733,1,"""Asia""" +2024-07-22,99165,7708,"[\""Tablet\""]",4862.8,"{\""promo\"": \""6%\""}",68199,0,"""Europe""" +2023-09-09,99166,2372,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",1565.5,"{\""promo\"": \""6%\""}",293000,1,"""Asia""" +2023-10-26,99167,8375,"[\""Keyboard\"", \""Phone\"", \""Laptop\""]",877.02,{},262292,1,"""Asia""" +2024-01-28,99168,6204,"[\""Wireless Mouse\""]",2167.71,"{\"": \""21%\""}",110177,1,"""North America""" +2023-12-08,99169,6167,"[\""Phone\"", \""Tablet\""]",1032.62,"{\""promo\"": \""22%\""}",202401,1,"""North America""" +2024-04-02,99170,8048,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",885.02,"{\""seasonal\"": \""30%\""}",90377,1,"""Africa""" +2023-10-12,99171,5152,"[\""Tablet\""]",2055.58,"{\""loyalty\"": \""22%\""}",103902,1,"""Africa""" +2024-08-22,99172,1164,"[\""Headphones\""]",352.22,"{\"": \""8%\""}",9505,1,"""South America""" +2023-05-04,99173,235,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",1714.82,{},270086,1,"""Asia""" +2023-07-04,99174,4817,"[\""Laptop\""]",179.97,{},234941,1,"""South America""" +2024-12-12,99175,3454,"[\""Wireless Mouse\"", \""Keyboard\"", \""Laptop\""]",1173.29,"{\""seasonal\"": \""10%\""}",169368,0,"""Africa""" +2023-09-17,99176,7931,"[\""Tablet\""]",1772.46,{},106980,0,"""Africa""" +2023-07-26,99177,4296,"[\""Laptop\"", \""Headphones\""]",3971.73,"{\"": \""9%\""}",266853,1,"""Africa""" +2023-09-29,99178,2821,"[\""Charger\"", \""Monitor\"", \""Laptop\""]",4442.73,{},275392,1,"""South America""" +2023-02-01,99179,6153,"[\""Headphones\""]",1252.99,"{\""seasonal\"": \""6%\""}",215390,0,"""Europe""" +2024-04-10,99180,2065,"[\""Phone\""]",661.22,{},260655,0,"""North America""" +2023-12-28,99181,8184,"[\""Keyboard\""]",4143.95,"{\""promo\"": \""15%\""}",12752,0,"""Africa""" +2023-04-02,99182,8324,"[\""Phone\"", \""Tablet\"", \""Charger\""]",2839.02,"{\"": \""16%\""}",227106,0,"""South America""" +2024-10-18,99183,7570,"[\""Wireless Mouse\"", \""Monitor\""]",1379.91,"{\"": \""8%\""}",254370,1,"""North America""" +2023-08-04,99184,4281,"[\""Headphones\""]",4376.81,{},74455,0,"""Asia""" +2024-10-06,99185,6796,"[\""Laptop\"", \""Charger\""]",2604.94,"{\"": \""11%\""}",220962,0,"""Europe""" +2024-01-04,99186,3162,"[\""Headphones\"", \""Laptop\""]",1391.91,"{\""promo\"": \""7%\""}",221391,1,"""Africa""" +2023-01-01,99187,8194,"[\""Phone\"", \""Wireless Mouse\""]",909.52,{},103113,1,"""Africa""" +2023-11-08,99188,6353,"[\""Headphones\"", \""Keyboard\"", \""Monitor\""]",4046.81,"{\""seasonal\"": \""8%\""}",124631,1,"""Asia""" +2023-05-05,99189,1737,"[\""Headphones\"", \""Wireless Mouse\"", \""Keyboard\""]",4320.98,"{\""promo\"": \""19%\""}",131032,1,"""Africa""" +2023-07-01,99190,2787,"[\""Charger\"", \""Headphones\""]",1635.91,"{\""loyalty\"": \""14%\""}",57261,0,"""Africa""" +2023-04-18,99191,9930,"[\""Wireless Mouse\"", \""Phone\""]",2860.42,"{\""promo\"": \""24%\""}",296416,0,"""North America""" +2024-04-21,99192,17,"[\""Wireless Mouse\"", \""Headphones\""]",3237.63,"{\""seasonal\"": \""12%\""}",207595,0,"""South America""" +2023-11-09,99193,3034,"[\""Phone\""]",55.84,{},17376,1,"""Europe""" +2024-05-17,99194,9951,"[\""Wireless Mouse\""]",1575.27,"{\""promo\"": \""27%\""}",180603,1,"""North America""" +2023-03-07,99195,8510,"[\""Monitor\"", \""Phone\""]",3760.36,{},50536,0,"""Asia""" +2023-03-20,99196,3064,"[\""Wireless Mouse\""]",1907.73,"{\""promo\"": \""22%\""}",103533,1,"""South America""" +2024-09-07,99197,972,"[\""Wireless Mouse\""]",1706.34,{},91333,0,"""North America""" +2024-02-07,99198,2006,"[\""Keyboard\""]",4796.83,{},98731,1,"""Asia""" +2023-08-31,99199,3901,"[\""Wireless Mouse\"", \""Phone\""]",2018.45,"{\""promo\"": \""14%\""}",95160,1,"""Asia""" +2023-05-31,99200,5306,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",4372.36,"{\""loyalty\"": \""10%\""}",297699,0,"""North America""" +2023-04-27,99201,8408,"[\""Monitor\""]",2651.6,{},236406,0,"""Africa""" +2024-11-05,99202,9718,"[\""Monitor\""]",2404.42,"{\"": \""9%\""}",218068,1,"""South America""" +2024-05-12,99203,919,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",2298.43,"{\""loyalty\"": \""14%\""}",256096,1,"""Europe""" +2024-02-18,99204,8440,"[\""Wireless Mouse\""]",1373.92,"{\""promo\"": \""5%\""}",299871,1,"""South America""" +2024-10-29,99205,9295,"[\""Monitor\"", \""Headphones\""]",961.82,{},205308,0,"""Europe""" +2024-12-24,99206,7681,"[\""Phone\"", \""Headphones\""]",4363.16,"{\""seasonal\"": \""22%\""}",141992,1,"""Asia""" +2024-04-20,99207,2245,"[\""Wireless Mouse\"", \""Phone\""]",3661.2,{},289060,1,"""Europe""" +2024-11-27,99208,1733,"[\""Keyboard\"", \""Monitor\""]",3084.26,{},188646,1,"""Europe""" +2024-10-29,99209,956,"[\""Phone\"", \""Charger\""]",518.11,"{\""promo\"": \""18%\""}",103186,1,"""Asia""" +2023-04-19,99210,4670,"[\""Wireless Mouse\"", \""Tablet\""]",4659.65,{},125224,1,"""South America""" +2024-06-14,99211,6345,"[\""Headphones\"", \""Laptop\"", \""Charger\""]",1375.11,{},293743,0,"""Europe""" +2024-07-05,99212,3522,"[\""Charger\""]",2136.12,{},120292,1,"""Africa""" +2024-12-21,99213,3104,"[\""Phone\"", \""Monitor\""]",1930.98,{},145302,1,"""North America""" +2023-06-25,99214,7463,"[\""Phone\"", \""Monitor\""]",1865.84,"{\"": \""17%\""}",27037,1,"""North America""" +2024-01-25,99215,4334,"[\""Wireless Mouse\"", \""Charger\""]",1211.11,"{\"": \""7%\""}",228692,1,"""South America""" +2024-07-15,99216,3404,"[\""Laptop\"", \""Monitor\""]",780.43,"{\""promo\"": \""8%\""}",200168,1,"""Africa""" +2023-03-13,99217,1894,"[\""Wireless Mouse\""]",993.43,{},214809,1,"""Asia""" +2024-10-23,99218,8288,"[\""Charger\"", \""Keyboard\""]",4963.83,{},169929,0,"""Africa""" +2024-04-02,99219,3822,"[\""Phone\""]",2695.06,{},182229,1,"""North America""" +2024-09-12,99220,803,"[\""Tablet\"", \""Phone\""]",2738.83,{},210744,1,"""Asia""" +2024-11-30,99221,2530,"[\""Laptop\""]",3988.02,"{\"": \""22%\""}",40354,0,"""Asia""" +2024-09-18,99222,4938,"[\""Monitor\"", \""Keyboard\""]",2978.56,{},248008,0,"""North America""" +2024-06-03,99223,4288,"[\""Headphones\"", \""Tablet\"", \""Charger\""]",882.49,{},152173,0,"""Asia""" +2024-03-18,99224,8470,"[\""Laptop\"", \""Monitor\""]",2565.39,"{\"": \""5%\""}",55746,1,"""North America""" +2024-03-16,99225,8467,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",3868.7,"{\"": \""5%\""}",162278,0,"""North America""" +2023-05-23,99226,4223,"[\""Headphones\"", \""Keyboard\""]",63.88,"{\""loyalty\"": \""16%\""}",151520,0,"""Africa""" +2023-12-24,99227,1558,"[\""Charger\""]",711.65,"{\""seasonal\"": \""9%\""}",215088,1,"""North America""" +2023-10-31,99228,7311,"[\""Phone\""]",3260.76,{},111389,1,"""South America""" +2023-06-22,99229,4327,"[\""Wireless Mouse\"", \""Laptop\""]",2010.95,"{\""loyalty\"": \""14%\""}",241838,0,"""Africa""" +2023-01-14,99230,8344,"[\""Monitor\"", \""Tablet\""]",1653.4,"{\""promo\"": \""13%\""}",295844,1,"""Asia""" +2024-02-16,99231,5089,"[\""Laptop\""]",1636.08,"{\"": \""30%\""}",93028,0,"""Africa""" +2024-12-13,99232,1183,"[\""Keyboard\""]",1401.21,"{\""loyalty\"": \""28%\""}",225992,0,"""South America""" +2024-07-19,99233,7804,"[\""Headphones\"", \""Tablet\"", \""Wireless Mouse\""]",4346.28,"{\""seasonal\"": \""8%\""}",64219,1,"""North America""" +2023-10-21,99234,732,"[\""Keyboard\""]",710.96,"{\""seasonal\"": \""6%\""}",18254,0,"""Asia""" +2024-12-29,99235,7587,"[\""Laptop\"", \""Headphones\""]",363.11,{},183298,1,"""Europe""" +2023-01-29,99236,8106,"[\""Phone\"", \""Wireless Mouse\""]",2198.69,"{\"": \""26%\""}",133493,0,"""Asia""" +2024-03-01,99237,2588,"[\""Wireless Mouse\"", \""Tablet\"", \""Charger\""]",2739.08,"{\"": \""22%\""}",73544,1,"""Europe""" +2023-07-26,99238,7939,"[\""Keyboard\""]",1041.42,{},217748,1,"""North America""" +2024-04-16,99239,3620,"[\""Monitor\"", \""Wireless Mouse\""]",2837.16,"{\""loyalty\"": \""20%\""}",105951,0,"""South America""" +2024-11-05,99240,4675,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2145.56,{},33363,1,"""Africa""" +2024-05-05,99241,6318,"[\""Keyboard\"", \""Tablet\""]",4296.04,{},212382,1,"""Africa""" +2024-01-22,99242,6219,"[\""Keyboard\""]",2039.57,{},109872,0,"""North America""" +2024-04-16,99243,8159,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4776.51,"{\""seasonal\"": \""14%\""}",62402,1,"""Africa""" +2024-03-07,99244,3262,"[\""Phone\"", \""Laptop\""]",2397.84,{},240712,1,"""South America""" +2023-06-27,99245,5548,"[\""Laptop\""]",4222.87,{},127127,1,"""Asia""" +2023-05-23,99246,191,"[\""Wireless Mouse\"", \""Phone\"", \""Laptop\""]",2613.11,{},206037,1,"""Asia""" +2024-01-23,99247,6999,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",2183.28,"{\"": \""25%\""}",116538,0,"""South America""" +2023-09-14,99248,5928,"[\""Headphones\""]",4679.93,"{\"": \""27%\""}",75680,0,"""North America""" +2023-05-17,99249,1079,"[\""Phone\""]",2680.72,"{\""loyalty\"": \""7%\""}",196162,1,"""Europe""" +2024-06-02,99250,7470,"[\""Tablet\"", \""Laptop\""]",4115.6,{},176795,0,"""North America""" +2023-10-19,99251,6594,"[\""Wireless Mouse\"", \""Keyboard\"", \""Tablet\""]",930.94,{},221478,0,"""Africa""" +2023-01-03,99252,8997,"[\""Keyboard\""]",1567.62,{},290462,1,"""Europe""" +2024-03-05,99253,4369,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",3255.42,{},95295,1,"""South America""" +2024-03-12,99254,6842,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2142.21,"{\""loyalty\"": \""21%\""}",271497,0,"""South America""" +2023-10-30,99255,6999,"[\""Monitor\"", \""Laptop\""]",4899.47,"{\""promo\"": \""18%\""}",91417,0,"""Africa""" +2024-07-01,99256,178,"[\""Tablet\"", \""Monitor\""]",3803.65,{},134262,0,"""Europe""" +2024-12-31,99257,7404,"[\""Monitor\""]",2782.36,{},167413,1,"""Asia""" +2024-08-30,99258,4731,"[\""Headphones\"", \""Tablet\""]",3039.75,"{\"": \""19%\""}",271820,0,"""North America""" +2024-07-12,99259,6338,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",440.97,{},280335,1,"""Asia""" +2024-11-06,99260,9520,"[\""Monitor\""]",2668.73,{},248293,0,"""North America""" +2023-10-28,99261,4227,"[\""Charger\"", \""Wireless Mouse\""]",353.11,{},84158,0,"""Africa""" +2024-08-12,99262,347,"[\""Tablet\""]",1116.43,{},234115,0,"""Europe""" +2024-05-29,99263,6133,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3756.96,{},146738,1,"""Africa""" +2024-04-10,99264,8499,"[\""Charger\""]",929.96,"{\""seasonal\"": \""20%\""}",198411,0,"""South America""" +2024-09-08,99265,6331,"[\""Laptop\"", \""Charger\"", \""Keyboard\""]",4265.09,"{\"": \""14%\""}",149051,0,"""North America""" +2023-06-29,99266,6393,"[\""Keyboard\""]",2347.84,"{\"": \""25%\""}",158963,1,"""South America""" +2023-06-06,99267,5206,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",591.29,{},163727,1,"""Africa""" +2023-03-15,99268,96,"[\""Headphones\"", \""Phone\"", \""Tablet\""]",2931.37,"{\""loyalty\"": \""18%\""}",83527,0,"""Europe""" +2024-12-06,99269,5483,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",3232.27,{},222579,1,"""Asia""" +2024-05-26,99270,4930,"[\""Laptop\"", \""Phone\""]",489.81,{},35898,0,"""Asia""" +2023-10-07,99271,7364,"[\""Monitor\"", \""Headphones\""]",554.32,{},139537,0,"""North America""" +2023-11-27,99272,109,"[\""Wireless Mouse\""]",4805.9,"{\""promo\"": \""29%\""}",33822,1,"""Africa""" +2023-02-15,99273,7787,"[\""Monitor\"", \""Laptop\""]",2159.37,{},91840,1,"""Africa""" +2024-02-15,99274,3221,"[\""Headphones\"", \""Laptop\""]",468.0,{},94182,0,"""Asia""" +2023-02-19,99275,5862,"[\""Phone\"", \""Charger\""]",4547.15,"{\""promo\"": \""25%\""}",180667,0,"""Africa""" +2024-02-06,99276,7757,"[\""Headphones\"", \""Phone\""]",4936.92,"{\""loyalty\"": \""25%\""}",191436,0,"""North America""" +2023-04-25,99277,1369,"[\""Tablet\""]",266.8,"{\""loyalty\"": \""19%\""}",76438,0,"""North America""" +2024-04-14,99278,6310,"[\""Monitor\"", \""Charger\""]",1024.43,"{\""loyalty\"": \""10%\""}",221607,0,"""Asia""" +2024-05-03,99279,6972,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",3728.09,"{\""promo\"": \""19%\""}",230441,0,"""South America""" +2024-02-18,99280,5816,"[\""Keyboard\"", \""Wireless Mouse\"", \""Phone\""]",4987.76,"{\""loyalty\"": \""7%\""}",85392,0,"""Asia""" +2024-03-19,99281,6149,"[\""Phone\"", \""Keyboard\""]",2637.42,{},291427,0,"""North America""" +2023-02-04,99282,4420,"[\""Wireless Mouse\""]",2648.99,{},226349,0,"""South America""" +2024-06-20,99283,254,"[\""Tablet\""]",4373.06,{},193712,0,"""North America""" +2024-02-08,99284,8215,"[\""Charger\"", \""Keyboard\"", \""Tablet\""]",2842.48,"{\""promo\"": \""25%\""}",202719,1,"""North America""" +2023-10-14,99285,2636,"[\""Wireless Mouse\""]",2736.62,{},104953,1,"""South America""" +2024-04-09,99286,9053,"[\""Wireless Mouse\""]",4228.95,{},72420,1,"""South America""" +2023-12-07,99287,4447,"[\""Phone\"", \""Monitor\""]",1831.09,"{\""promo\"": \""9%\""}",246984,1,"""Asia""" +2024-03-18,99288,9653,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",3803.46,"{\""seasonal\"": \""17%\""}",231454,0,"""North America""" +2024-09-22,99289,6612,"[\""Charger\"", \""Tablet\""]",3929.8,{},293048,1,"""Asia""" +2023-06-15,99290,1414,"[\""Wireless Mouse\"", \""Charger\"", \""Tablet\""]",2622.64,{},206157,0,"""Asia""" +2024-05-17,99291,1605,"[\""Charger\"", \""Headphones\"", \""Phone\""]",403.6,{},28812,1,"""Asia""" +2023-04-01,99292,2018,"[\""Phone\"", \""Tablet\"", \""Charger\""]",3200.5,"{\""seasonal\"": \""22%\""}",211825,1,"""South America""" +2024-02-24,99293,7568,"[\""Charger\"", \""Tablet\"", \""Phone\""]",2109.69,"{\""seasonal\"": \""18%\""}",118423,1,"""Africa""" +2024-03-12,99294,200,"[\""Monitor\""]",1696.1,{},148148,0,"""South America""" +2024-03-15,99295,4713,"[\""Keyboard\"", \""Charger\""]",2828.2,{},148608,1,"""South America""" +2024-10-01,99296,7228,"[\""Wireless Mouse\"", \""Monitor\""]",4646.83,"{\""promo\"": \""30%\""}",165782,1,"""South America""" +2023-10-28,99297,9996,"[\""Wireless Mouse\""]",3725.38,"{\""loyalty\"": \""14%\""}",186787,1,"""Africa""" +2023-09-09,99298,7657,"[\""Tablet\"", \""Laptop\""]",3876.03,"{\""loyalty\"": \""13%\""}",82662,0,"""North America""" +2023-12-05,99299,9120,"[\""Headphones\""]",3203.18,{},62911,1,"""Africa""" +2023-03-06,99300,4673,"[\""Keyboard\""]",4684.56,{},124858,1,"""North America""" +2024-11-03,99301,5636,"[\""Headphones\"", \""Monitor\""]",4707.72,{},16050,1,"""North America""" +2024-09-27,99302,3597,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",99.13,{},21270,1,"""Europe""" +2023-09-06,99303,5772,"[\""Charger\"", \""Monitor\""]",4799.9,{},215488,1,"""Africa""" +2023-07-22,99304,1981,"[\""Keyboard\""]",4208.01,{},172202,1,"""Europe""" +2023-12-15,99305,4253,"[\""Tablet\""]",1112.06,{},155037,1,"""South America""" +2023-09-07,99306,2357,"[\""Laptop\""]",2884.7,{},99759,0,"""Africa""" +2023-10-31,99307,1532,"[\""Monitor\"", \""Wireless Mouse\"", \""Laptop\""]",4938.49,{},61269,0,"""Africa""" +2023-11-11,99308,5860,"[\""Charger\""]",365.84,"{\""loyalty\"": \""30%\""}",86711,1,"""Asia""" +2024-03-14,99309,6742,"[\""Charger\"", \""Headphones\"", \""Phone\""]",3679.17,{},99369,0,"""North America""" +2024-08-11,99310,6645,"[\""Keyboard\"", \""Wireless Mouse\""]",4397.48,"{\""promo\"": \""5%\""}",38438,0,"""South America""" +2024-09-29,99311,593,"[\""Charger\""]",1375.46,"{\""promo\"": \""8%\""}",26450,1,"""South America""" +2023-02-27,99312,6403,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",181.0,"{\""promo\"": \""15%\""}",178382,0,"""South America""" +2024-09-16,99313,2021,"[\""Monitor\"", \""Tablet\""]",673.91,{},110893,1,"""Africa""" +2024-08-02,99314,6783,"[\""Headphones\""]",1317.14,{},190754,0,"""Asia""" +2024-05-21,99315,5244,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",1824.14,{},161743,1,"""Africa""" +2024-07-30,99316,1784,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",194.09,{},74265,1,"""Africa""" +2023-08-11,99317,9660,"[\""Charger\""]",2985.02,"{\""promo\"": \""5%\""}",178127,0,"""South America""" +2024-04-04,99318,2290,"[\""Wireless Mouse\""]",3547.7,"{\""loyalty\"": \""9%\""}",49455,0,"""Africa""" +2024-04-24,99319,8569,"[\""Laptop\"", \""Charger\"", \""Phone\""]",4871.76,"{\""seasonal\"": \""24%\""}",165274,1,"""South America""" +2023-06-25,99320,5769,"[\""Charger\""]",1714.0,{},92392,0,"""Asia""" +2023-11-28,99321,4076,"[\""Phone\"", \""Tablet\""]",2381.04,"{\""promo\"": \""30%\""}",32996,1,"""North America""" +2024-10-24,99322,2410,"[\""Phone\"", \""Charger\""]",620.64,"{\""seasonal\"": \""11%\""}",175252,1,"""North America""" +2024-09-07,99323,2926,"[\""Monitor\"", \""Laptop\""]",4152.92,"{\""promo\"": \""18%\""}",199943,0,"""Africa""" +2023-12-27,99324,1149,"[\""Wireless Mouse\"", \""Headphones\""]",4277.75,{},213665,0,"""South America""" +2023-04-23,99325,1588,"[\""Keyboard\"", \""Laptop\""]",1018.78,{},238556,1,"""South America""" +2023-01-19,99326,4299,"[\""Monitor\"", \""Wireless Mouse\""]",3621.42,"{\""loyalty\"": \""15%\""}",284641,0,"""South America""" +2024-06-09,99327,4774,"[\""Phone\""]",3681.97,{},58430,0,"""Europe""" +2024-03-30,99328,9550,"[\""Laptop\"", \""Headphones\"", \""Wireless Mouse\""]",4429.96,{},141598,1,"""Europe""" +2023-09-05,99329,4675,"[\""Laptop\"", \""Tablet\""]",4380.1,{},65021,0,"""North America""" +2024-10-05,99330,3086,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",4925.81,{},165340,0,"""Africa""" +2024-10-27,99331,1066,"[\""Headphones\"", \""Wireless Mouse\""]",3400.25,"{\""loyalty\"": \""19%\""}",201433,0,"""South America""" +2024-03-05,99332,4374,"[\""Phone\"", \""Keyboard\"", \""Tablet\""]",924.99,{},13176,0,"""North America""" +2024-04-16,99333,8864,"[\""Laptop\"", \""Headphones\""]",2287.12,{},262191,0,"""Asia""" +2023-01-23,99334,8284,"[\""Wireless Mouse\"", \""Charger\""]",4246.71,"{\""promo\"": \""8%\""}",260491,0,"""Europe""" +2023-06-17,99335,5847,"[\""Charger\""]",323.11,"{\""seasonal\"": \""16%\""}",290325,0,"""Europe""" +2023-10-23,99336,7770,"[\""Wireless Mouse\"", \""Monitor\""]",4846.7,"{\"": \""7%\""}",57468,0,"""Asia""" +2024-01-23,99337,8340,"[\""Laptop\""]",1206.41,"{\""seasonal\"": \""27%\""}",296248,0,"""Africa""" +2023-09-18,99338,4789,"[\""Laptop\""]",363.58,{},199951,0,"""North America""" +2023-09-08,99339,6036,"[\""Tablet\"", \""Phone\"", \""Headphones\""]",1237.95,"{\"": \""6%\""}",107986,0,"""North America""" +2023-11-28,99340,7416,"[\""Charger\""]",4904.98,"{\""loyalty\"": \""10%\""}",287920,0,"""North America""" +2024-09-23,99341,7264,"[\""Phone\""]",388.04,{},138165,1,"""Europe""" +2023-05-22,99342,4961,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",4622.13,{},116994,0,"""North America""" +2024-01-09,99343,7300,"[\""Wireless Mouse\""]",2165.46,"{\""loyalty\"": \""22%\""}",207066,0,"""Asia""" +2023-09-03,99344,8421,"[\""Laptop\""]",2509.65,{},236589,1,"""Asia""" +2024-11-18,99345,7839,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",1898.43,"{\"": \""28%\""}",219233,1,"""Europe""" +2023-02-12,99346,8338,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",2213.66,"{\""promo\"": \""6%\""}",222199,1,"""Europe""" +2023-03-16,99347,5144,"[\""Monitor\"", \""Laptop\""]",134.16,{},88294,1,"""North America""" +2024-09-22,99348,8419,"[\""Charger\""]",1220.82,"{\""promo\"": \""29%\""}",181242,0,"""South America""" +2024-03-09,99349,2796,"[\""Laptop\""]",1553.97,"{\"": \""23%\""}",279390,1,"""Asia""" +2024-05-25,99350,1243,"[\""Laptop\""]",3692.5,"{\""loyalty\"": \""29%\""}",27221,0,"""North America""" +2024-11-14,99351,8323,"[\""Phone\""]",962.14,"{\""promo\"": \""12%\""}",166778,1,"""Africa""" +2024-02-27,99352,7481,"[\""Keyboard\""]",2395.74,"{\""seasonal\"": \""18%\""}",135872,0,"""Asia""" +2023-05-22,99353,6090,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3644.82,{},135212,1,"""Africa""" +2024-09-11,99354,5421,"[\""Laptop\"", \""Charger\""]",3905.53,"{\""seasonal\"": \""30%\""}",211109,0,"""Europe""" +2024-03-31,99355,8766,"[\""Wireless Mouse\"", \""Monitor\"", \""Laptop\""]",3311.66,{},146152,0,"""Europe""" +2024-03-10,99356,4839,"[\""Charger\"", \""Tablet\"", \""Wireless Mouse\""]",1534.13,"{\""loyalty\"": \""19%\""}",17552,0,"""Asia""" +2024-08-24,99357,2069,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",156.41,"{\""promo\"": \""30%\""}",223802,0,"""Asia""" +2024-01-12,99358,3797,"[\""Phone\"", \""Charger\""]",79.68,"{\"": \""26%\""}",266546,0,"""Europe""" +2023-10-09,99359,8115,"[\""Keyboard\"", \""Tablet\""]",1195.95,"{\""loyalty\"": \""11%\""}",281221,1,"""Asia""" +2023-10-16,99360,5804,"[\""Wireless Mouse\"", \""Monitor\"", \""Headphones\""]",1580.53,{},201491,0,"""Asia""" +2023-11-19,99361,1732,"[\""Laptop\"", \""Headphones\""]",4280.31,"{\""loyalty\"": \""10%\""}",141307,1,"""South America""" +2024-07-03,99362,8377,"[\""Wireless Mouse\"", \""Charger\"", \""Phone\""]",2480.27,{},111462,1,"""Europe""" +2024-05-14,99363,681,"[\""Keyboard\"", \""Wireless Mouse\""]",71.6,"{\"": \""10%\""}",41817,1,"""South America""" +2023-04-03,99364,4651,"[\""Keyboard\"", \""Wireless Mouse\""]",584.75,"{\"": \""26%\""}",104553,0,"""South America""" +2023-11-21,99365,1966,"[\""Tablet\"", \""Phone\""]",656.11,{},29188,1,"""Europe""" +2023-09-26,99366,1250,"[\""Laptop\""]",2253.13,{},76524,0,"""Asia""" +2024-10-11,99367,3316,"[\""Headphones\""]",2623.81,{},85340,1,"""South America""" +2024-09-25,99368,605,"[\""Phone\"", \""Headphones\"", \""Charger\""]",2831.54,"{\""promo\"": \""17%\""}",222418,1,"""Africa""" +2024-03-08,99369,2405,"[\""Monitor\""]",1499.94,"{\""promo\"": \""17%\""}",69603,1,"""Europe""" +2024-04-23,99370,5209,"[\""Charger\""]",2724.05,"{\""promo\"": \""19%\""}",61907,0,"""South America""" +2024-07-23,99371,9234,"[\""Headphones\""]",4423.58,{},120260,0,"""Africa""" +2024-07-02,99372,7800,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",2580.35,"{\""loyalty\"": \""5%\""}",184099,0,"""Africa""" +2024-12-18,99373,4449,"[\""Keyboard\"", \""Phone\"", \""Wireless Mouse\""]",4366.81,{},51163,1,"""Asia""" +2023-06-28,99374,6742,"[\""Wireless Mouse\""]",3011.58,{},76889,1,"""North America""" +2024-06-27,99375,5422,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",1624.4,"{\"": \""5%\""}",56851,1,"""South America""" +2024-12-21,99376,2387,"[\""Headphones\"", \""Laptop\""]",4001.28,"{\""seasonal\"": \""19%\""}",228802,0,"""Asia""" +2023-08-05,99377,1733,"[\""Charger\"", \""Keyboard\""]",2763.45,{},160534,1,"""Europe""" +2024-05-30,99378,2116,"[\""Laptop\"", \""Keyboard\""]",1848.83,{},53590,1,"""North America""" +2024-04-03,99379,5301,"[\""Keyboard\""]",232.93,{},264917,1,"""Asia""" +2023-11-12,99380,9860,"[\""Wireless Mouse\"", \""Monitor\""]",2255.24,"{\""promo\"": \""24%\""}",37591,0,"""North America""" +2024-01-14,99381,7596,"[\""Keyboard\""]",1933.1,"{\""seasonal\"": \""6%\""}",243181,0,"""Africa""" +2023-11-10,99382,611,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",2537.81,"{\""promo\"": \""8%\""}",167857,1,"""North America""" +2023-06-10,99383,5414,"[\""Headphones\"", \""Keyboard\"", \""Phone\""]",1155.64,{},76707,0,"""North America""" +2024-07-02,99384,8280,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",2991.91,{},103228,1,"""Africa""" +2023-10-12,99385,3993,"[\""Monitor\"", \""Headphones\""]",941.32,{},141701,1,"""South America""" +2024-03-11,99386,7117,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",431.95,{},204865,1,"""North America""" +2023-07-02,99387,2891,"[\""Phone\""]",4579.23,"{\""promo\"": \""26%\""}",284314,0,"""North America""" +2023-07-13,99388,4288,"[\""Tablet\"", \""Monitor\"", \""Laptop\""]",2935.99,{},172075,1,"""Asia""" +2023-09-06,99389,119,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",114.1,"{\""promo\"": \""29%\""}",6378,0,"""Europe""" +2024-06-06,99390,2599,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",4735.24,{},223221,0,"""Europe""" +2023-06-14,99391,5343,"[\""Monitor\""]",2981.26,"{\""seasonal\"": \""15%\""}",71946,1,"""Africa""" +2024-11-03,99392,1660,"[\""Tablet\"", \""Phone\"", \""Laptop\""]",4268.73,"{\""loyalty\"": \""21%\""}",22185,1,"""Asia""" +2023-01-26,99393,8335,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4464.3,{},54831,0,"""South America""" +2024-08-01,99394,5644,"[\""Monitor\"", \""Keyboard\"", \""Laptop\""]",2345.64,{},109666,0,"""North America""" +2023-04-04,99395,2114,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",3676.35,{},202217,0,"""Asia""" +2023-04-27,99396,9324,"[\""Monitor\"", \""Charger\"", \""Wireless Mouse\""]",1195.94,"{\""seasonal\"": \""19%\""}",95368,0,"""South America""" +2023-07-31,99397,1510,"[\""Headphones\"", \""Wireless Mouse\""]",4489.84,"{\""seasonal\"": \""7%\""}",229086,1,"""Europe""" +2024-06-19,99398,6829,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",2010.6,{},236106,1,"""Europe""" +2024-07-13,99399,45,"[\""Wireless Mouse\""]",3195.0,"{\""seasonal\"": \""18%\""}",155363,0,"""North America""" +2023-02-07,99400,3671,"[\""Keyboard\""]",4382.34,"{\"": \""29%\""}",258339,0,"""Europe""" +2023-08-21,99401,8911,"[\""Phone\""]",2148.09,{},44821,1,"""Europe""" +2024-08-20,99402,8685,"[\""Tablet\"", \""Phone\"", \""Keyboard\""]",1932.96,{},10989,0,"""Asia""" +2023-01-21,99403,7577,"[\""Phone\"", \""Monitor\"", \""Keyboard\""]",745.97,{},288475,0,"""South America""" +2024-01-21,99404,2651,"[\""Headphones\"", \""Laptop\"", \""Monitor\""]",3785.8,"{\"": \""20%\""}",253909,1,"""North America""" +2024-07-26,99405,9640,"[\""Phone\""]",3100.91,"{\""promo\"": \""17%\""}",270497,1,"""Africa""" +2023-12-17,99406,6013,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",2299.31,{},6160,0,"""Europe""" +2024-01-16,99407,532,"[\""Headphones\""]",682.64,"{\"": \""26%\""}",173479,1,"""South America""" +2024-11-08,99408,2443,"[\""Phone\""]",3087.48,"{\""loyalty\"": \""28%\""}",9567,1,"""Africa""" +2024-02-21,99409,3527,"[\""Tablet\"", \""Wireless Mouse\""]",3119.95,"{\""loyalty\"": \""21%\""}",98915,1,"""Africa""" +2023-01-15,99410,1712,"[\""Charger\"", \""Keyboard\""]",1149.01,{},234091,0,"""Asia""" +2024-03-10,99411,5117,"[\""Phone\"", \""Monitor\"", \""Charger\""]",4944.48,{},242116,1,"""Africa""" +2024-03-23,99412,7613,"[\""Tablet\"", \""Keyboard\"", \""Phone\""]",3508.49,"{\""seasonal\"": \""24%\""}",286610,0,"""South America""" +2024-02-22,99413,1298,"[\""Phone\""]",2001.57,{},8168,0,"""Africa""" +2023-06-30,99414,4418,"[\""Laptop\"", \""Keyboard\"", \""Headphones\""]",3583.83,{},60117,1,"""Europe""" +2023-11-30,99415,9168,"[\""Monitor\""]",2355.72,{},233038,0,"""South America""" +2024-08-23,99416,4045,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1529.65,"{\""promo\"": \""12%\""}",69610,0,"""Africa""" +2023-01-11,99417,5083,"[\""Tablet\"", \""Laptop\""]",909.42,{},221658,1,"""Africa""" +2023-07-04,99418,1817,"[\""Charger\"", \""Headphones\"", \""Keyboard\""]",3081.63,{},137968,1,"""Europe""" +2024-10-14,99419,8725,"[\""Headphones\"", \""Phone\""]",581.47,"{\""seasonal\"": \""16%\""}",291553,1,"""North America""" +2024-04-17,99420,1311,"[\""Wireless Mouse\"", \""Phone\""]",2945.95,{},219291,1,"""Europe""" +2024-09-24,99421,5134,"[\""Laptop\"", \""Phone\"", \""Tablet\""]",3039.6,{},33702,0,"""South America""" +2023-11-14,99422,5531,"[\""Laptop\"", \""Monitor\""]",2095.97,{},113496,0,"""Asia""" +2024-07-10,99423,9258,"[\""Monitor\""]",3154.87,"{\"": \""16%\""}",265818,0,"""Europe""" +2024-02-29,99424,5243,"[\""Monitor\""]",4077.29,"{\"": \""15%\""}",150513,1,"""Africa""" +2023-06-01,99425,819,"[\""Wireless Mouse\"", \""Charger\""]",4878.35,"{\""loyalty\"": \""20%\""}",82284,0,"""Africa""" +2024-06-02,99426,8900,"[\""Tablet\"", \""Wireless Mouse\"", \""Keyboard\""]",3621.55,{},224634,1,"""South America""" +2023-10-11,99427,7734,"[\""Tablet\"", \""Headphones\""]",409.59,"{\""promo\"": \""13%\""}",155481,0,"""North America""" +2024-11-11,99428,7123,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",1451.72,"{\""promo\"": \""13%\""}",191644,0,"""Africa""" +2023-11-16,99429,6329,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",617.85,"{\""promo\"": \""12%\""}",59575,1,"""Europe""" +2024-05-01,99430,1351,"[\""Tablet\"", \""Wireless Mouse\""]",766.99,"{\""loyalty\"": \""12%\""}",43777,0,"""Europe""" +2023-02-03,99431,235,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3652.71,"{\"": \""7%\""}",93756,1,"""Europe""" +2023-07-09,99432,9329,"[\""Charger\"", \""Wireless Mouse\"", \""Tablet\""]",1697.35,{},236153,0,"""South America""" +2024-03-14,99433,9958,"[\""Monitor\""]",1154.7,{},196640,0,"""North America""" +2023-09-13,99434,2078,"[\""Laptop\"", \""Tablet\"", \""Monitor\""]",4996.84,"{\""loyalty\"": \""13%\""}",172919,1,"""Europe""" +2024-05-18,99435,5144,"[\""Wireless Mouse\""]",126.26,{},2866,0,"""North America""" +2024-01-02,99436,4603,"[\""Headphones\"", \""Monitor\"", \""Wireless Mouse\""]",3808.63,"{\""promo\"": \""26%\""}",38730,0,"""Africa""" +2024-02-09,99437,7758,"[\""Wireless Mouse\""]",3402.95,"{\""promo\"": \""13%\""}",112555,1,"""Africa""" +2024-06-15,99438,8556,"[\""Headphones\"", \""Phone\"", \""Wireless Mouse\""]",3198.17,"{\""loyalty\"": \""11%\""}",240946,0,"""North America""" +2024-11-03,99439,2740,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",2781.08,"{\""promo\"": \""28%\""}",99029,0,"""Asia""" +2024-08-12,99440,7675,"[\""Keyboard\"", \""Laptop\"", \""Tablet\""]",2477.42,"{\"": \""12%\""}",215825,1,"""Asia""" +2024-11-13,99441,7983,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",376.31,"{\""promo\"": \""19%\""}",255077,0,"""Asia""" +2023-07-16,99442,7761,"[\""Tablet\""]",2645.8,"{\"": \""18%\""}",144400,0,"""South America""" +2024-01-14,99443,4597,"[\""Phone\"", \""Laptop\""]",2498.6,"{\""seasonal\"": \""15%\""}",262379,1,"""Europe""" +2023-02-17,99444,5188,"[\""Laptop\"", \""Wireless Mouse\"", \""Keyboard\""]",127.28,"{\"": \""8%\""}",109224,0,"""Africa""" +2024-07-08,99445,4921,"[\""Monitor\"", \""Phone\""]",1607.23,{},159382,0,"""Asia""" +2024-09-22,99446,6524,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",391.55,{},251672,1,"""North America""" +2023-03-11,99447,3173,"[\""Phone\"", \""Charger\""]",311.2,"{\"": \""16%\""}",63859,1,"""Asia""" +2023-11-07,99448,3398,"[\""Monitor\"", \""Laptop\""]",3939.52,"{\""loyalty\"": \""19%\""}",93513,1,"""South America""" +2024-05-19,99449,7071,"[\""Laptop\"", \""Headphones\"", \""Tablet\""]",2665.9,"{\""seasonal\"": \""9%\""}",204518,0,"""Europe""" +2023-10-31,99450,1148,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4452.67,"{\""loyalty\"": \""26%\""}",34035,0,"""Europe""" +2024-11-19,99451,8314,"[\""Monitor\"", \""Phone\"", \""Headphones\""]",3267.87,{},173226,0,"""South America""" +2023-11-10,99452,9505,"[\""Headphones\""]",2879.96,{},285834,1,"""Africa""" +2024-09-07,99453,1590,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",1701.88,{},34097,0,"""Africa""" +2024-09-22,99454,5158,"[\""Keyboard\"", \""Charger\"", \""Tablet\""]",258.02,"{\""seasonal\"": \""21%\""}",129497,0,"""Asia""" +2024-03-30,99455,3685,"[\""Laptop\"", \""Headphones\"", \""Keyboard\""]",3880.13,"{\""loyalty\"": \""12%\""}",276029,1,"""South America""" +2023-04-19,99456,2264,"[\""Phone\""]",4839.77,"{\"": \""6%\""}",89524,0,"""South America""" +2024-12-07,99457,1567,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",3939.96,{},99727,0,"""Asia""" +2024-04-29,99458,8877,"[\""Laptop\""]",3417.01,"{\"": \""19%\""}",128668,0,"""Asia""" +2024-08-21,99459,2755,"[\""Wireless Mouse\"", \""Tablet\"", \""Monitor\""]",2269.61,{},32074,0,"""Europe""" +2024-03-11,99460,3791,"[\""Wireless Mouse\""]",1058.98,{},117160,1,"""South America""" +2023-06-20,99461,9988,"[\""Tablet\"", \""Charger\""]",2341.83,{},64227,0,"""South America""" +2024-06-17,99462,3486,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3855.74,{},168438,0,"""Africa""" +2024-05-24,99463,7008,"[\""Keyboard\"", \""Wireless Mouse\"", \""Tablet\""]",2911.13,{},22933,0,"""South America""" +2023-08-08,99464,5532,"[\""Phone\"", \""Charger\"", \""Monitor\""]",1334.47,{},103530,0,"""North America""" +2024-06-17,99465,5469,"[\""Laptop\"", \""Monitor\""]",3865.43,{},104747,0,"""Asia""" +2023-09-26,99466,4918,"[\""Tablet\"", \""Headphones\""]",3831.49,{},73228,1,"""Europe""" +2024-09-10,99467,9411,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",1423.46,"{\""seasonal\"": \""8%\""}",214967,0,"""Asia""" +2024-10-17,99468,8887,"[\""Headphones\""]",1518.29,{},190740,0,"""Europe""" +2024-04-04,99469,8267,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",404.6,{},66745,0,"""Asia""" +2023-10-12,99470,3351,"[\""Laptop\"", \""Monitor\""]",2801.48,"{\""seasonal\"": \""18%\""}",116163,0,"""Africa""" +2023-12-12,99471,5949,"[\""Wireless Mouse\"", \""Headphones\""]",3319.99,"{\""seasonal\"": \""7%\""}",230096,1,"""Europe""" +2024-04-27,99472,5107,"[\""Laptop\"", \""Phone\"", \""Monitor\""]",4457.32,"{\""loyalty\"": \""28%\""}",207157,0,"""North America""" +2023-03-17,99473,5036,"[\""Phone\"", \""Keyboard\""]",1327.31,{},183629,1,"""North America""" +2024-10-09,99474,9823,"[\""Phone\"", \""Laptop\""]",98.94,{},47605,1,"""Europe""" +2023-05-07,99475,4480,"[\""Monitor\""]",2081.16,{},86568,1,"""North America""" +2023-05-17,99476,8541,"[\""Headphones\""]",1740.68,{},139374,0,"""South America""" +2023-03-20,99477,8312,"[\""Monitor\""]",1257.41,{},112888,1,"""South America""" +2023-08-26,99478,5744,"[\""Tablet\"", \""Phone\""]",4458.21,{},195946,1,"""South America""" +2024-02-13,99479,4905,"[\""Monitor\""]",3029.82,{},245823,0,"""Europe""" +2024-01-20,99480,2925,"[\""Headphones\"", \""Laptop\""]",1678.93,{},53862,0,"""Europe""" +2024-04-25,99481,8954,"[\""Phone\"", \""Keyboard\""]",4390.65,{},243576,0,"""Asia""" +2024-01-28,99482,48,"[\""Headphones\""]",1650.84,"{\"": \""24%\""}",85052,1,"""Asia""" +2023-09-03,99483,3308,"[\""Charger\"", \""Phone\"", \""Headphones\""]",2697.39,"{\""promo\"": \""7%\""}",249991,0,"""Europe""" +2023-10-25,99484,6381,"[\""Wireless Mouse\"", \""Tablet\""]",4158.35,{},101142,1,"""Asia""" +2024-10-07,99485,2628,"[\""Phone\"", \""Wireless Mouse\"", \""Charger\""]",4201.0,"{\"": \""20%\""}",3437,1,"""Europe""" +2024-12-02,99486,9638,"[\""Phone\"", \""Wireless Mouse\"", \""Keyboard\""]",272.82,"{\"": \""15%\""}",146299,0,"""South America""" +2023-06-02,99487,2984,"[\""Tablet\""]",3201.28,"{\""seasonal\"": \""25%\""}",37547,0,"""Asia""" +2023-06-05,99488,2676,"[\""Tablet\"", \""Charger\"", \""Phone\""]",3544.11,"{\""promo\"": \""9%\""}",204472,0,"""North America""" +2024-03-10,99489,6376,"[\""Keyboard\"", \""Tablet\"", \""Monitor\""]",3255.08,"{\"": \""30%\""}",31109,0,"""Europe""" +2024-05-08,99490,4785,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",1917.53,"{\""loyalty\"": \""23%\""}",32907,1,"""Europe""" +2023-04-21,99491,510,"[\""Phone\""]",2325.9,{},110203,1,"""Asia""" +2023-10-17,99492,6681,"[\""Headphones\"", \""Laptop\"", \""Keyboard\""]",205.86,"{\""promo\"": \""19%\""}",259722,1,"""North America""" +2023-10-26,99493,8593,"[\""Keyboard\""]",608.45,{},36636,0,"""Africa""" +2023-04-22,99494,8033,"[\""Phone\"", \""Monitor\""]",261.01,"{\""loyalty\"": \""10%\""}",130433,0,"""South America""" +2023-09-24,99495,7260,"[\""Laptop\""]",4764.69,{},137807,1,"""Africa""" +2023-12-20,99496,9806,"[\""Tablet\""]",295.0,{},277780,1,"""South America""" +2023-12-17,99497,1817,"[\""Laptop\"", \""Charger\"", \""Phone\""]",1846.35,{},213594,0,"""Asia""" +2023-09-23,99498,2616,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",512.43,"{\""seasonal\"": \""22%\""}",245902,1,"""Africa""" +2024-08-21,99499,5155,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",4558.61,{},253238,0,"""Asia""" +2024-05-25,99500,1916,"[\""Headphones\"", \""Monitor\""]",2894.44,"{\""seasonal\"": \""25%\""}",26154,1,"""South America""" +2023-11-07,99501,1710,"[\""Monitor\"", \""Headphones\""]",4283.74,"{\""promo\"": \""24%\""}",288287,1,"""North America""" +2023-02-12,99502,8883,"[\""Tablet\"", \""Laptop\""]",4280.76,"{\""loyalty\"": \""7%\""}",261884,0,"""South America""" +2023-05-29,99503,4945,"[\""Headphones\"", \""Tablet\""]",3084.24,"{\""seasonal\"": \""25%\""}",244041,0,"""Europe""" +2024-10-28,99504,921,"[\""Keyboard\""]",2892.06,"{\""seasonal\"": \""20%\""}",271401,0,"""Europe""" +2024-05-25,99505,6785,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",985.93,"{\""promo\"": \""27%\""}",70181,0,"""Asia""" +2024-07-01,99506,4930,"[\""Wireless Mouse\"", \""Tablet\"", \""Keyboard\""]",3922.85,{},285954,1,"""North America""" +2024-11-11,99507,3473,"[\""Monitor\"", \""Tablet\"", \""Keyboard\""]",2681.26,{},66415,0,"""Asia""" +2023-09-19,99508,9442,"[\""Laptop\"", \""Charger\""]",1809.46,{},237657,0,"""North America""" +2023-07-09,99509,4730,"[\""Phone\"", \""Laptop\"", \""Wireless Mouse\""]",3555.46,"{\""seasonal\"": \""10%\""}",226448,1,"""Europe""" +2024-10-24,99510,2807,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",4576.44,{},253876,0,"""North America""" +2024-09-08,99511,9570,"[\""Headphones\"", \""Phone\""]",3824.77,{},251127,1,"""Africa""" +2023-11-26,99512,9900,"[\""Monitor\""]",804.25,{},152245,1,"""North America""" +2023-10-25,99513,6099,"[\""Monitor\"", \""Charger\""]",175.05,{},282763,1,"""Africa""" +2023-06-08,99514,9846,"[\""Laptop\""]",4434.68,"{\"": \""13%\""}",294469,1,"""Africa""" +2023-01-07,99515,4254,"[\""Tablet\"", \""Keyboard\"", \""Headphones\""]",3594.25,"{\"": \""28%\""}",131003,1,"""Africa""" +2023-05-20,99516,6004,"[\""Monitor\""]",4857.5,{},206483,0,"""Asia""" +2024-07-08,99517,857,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",3031.82,"{\""promo\"": \""13%\""}",118518,0,"""North America""" +2024-09-13,99518,3917,"[\""Tablet\"", \""Headphones\"", \""Monitor\""]",3597.51,"{\"": \""14%\""}",136164,1,"""South America""" +2024-04-08,99519,5858,"[\""Monitor\"", \""Keyboard\""]",174.05,{},72209,1,"""South America""" +2024-07-21,99520,4236,"[\""Charger\"", \""Tablet\""]",3890.66,"{\"": \""9%\""}",276340,1,"""North America""" +2024-01-28,99521,119,"[\""Keyboard\""]",1060.69,"{\""promo\"": \""22%\""}",192437,0,"""South America""" +2024-11-27,99522,5525,"[\""Keyboard\"", \""Tablet\""]",3107.64,{},88593,0,"""North America""" +2023-07-04,99523,2691,"[\""Phone\"", \""Tablet\"", \""Headphones\""]",3345.21,"{\""loyalty\"": \""15%\""}",78442,0,"""Asia""" +2023-10-17,99524,31,"[\""Headphones\"", \""Tablet\"", \""Phone\""]",796.94,{},138166,0,"""North America""" +2023-04-27,99525,5095,"[\""Wireless Mouse\""]",4436.3,"{\""promo\"": \""16%\""}",248851,0,"""South America""" +2024-08-13,99526,2215,"[\""Laptop\""]",2111.76,"{\""seasonal\"": \""8%\""}",11908,0,"""Africa""" +2023-11-16,99527,4200,"[\""Monitor\""]",204.52,"{\"": \""9%\""}",205460,0,"""South America""" +2024-01-09,99528,1418,"[\""Charger\"", \""Headphones\"", \""Monitor\""]",4264.86,"{\"": \""19%\""}",140871,1,"""Africa""" +2024-11-29,99529,3953,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",470.59,{},75269,1,"""North America""" +2023-01-04,99530,9738,"[\""Monitor\""]",4688.32,{},138698,1,"""Asia""" +2024-11-13,99531,4963,"[\""Wireless Mouse\"", \""Keyboard\"", \""Monitor\""]",126.37,"{\""promo\"": \""23%\""}",147638,0,"""North America""" +2023-11-20,99532,7974,"[\""Headphones\""]",620.57,{},75996,1,"""Africa""" +2023-04-14,99533,8038,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",285.68,"{\""promo\"": \""30%\""}",162558,1,"""Europe""" +2023-09-22,99534,1725,"[\""Tablet\""]",734.51,{},259976,1,"""South America""" +2023-02-09,99535,8716,"[\""Charger\""]",2929.8,"{\"": \""8%\""}",88872,1,"""Europe""" +2024-09-02,99536,4305,"[\""Charger\"", \""Keyboard\""]",1087.27,"{\"": \""10%\""}",164546,1,"""Europe""" +2024-05-08,99537,7421,"[\""Tablet\"", \""Charger\""]",3609.06,{},144210,0,"""North America""" +2023-12-12,99538,4693,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",3013.17,"{\"": \""7%\""}",97878,1,"""Europe""" +2024-06-26,99539,3055,"[\""Charger\"", \""Tablet\"", \""Monitor\""]",3994.93,"{\""loyalty\"": \""7%\""}",73446,1,"""Africa""" +2024-09-23,99540,9782,"[\""Laptop\""]",1422.98,{},266270,1,"""South America""" +2024-04-21,99541,6746,"[\""Phone\"", \""Charger\"", \""Headphones\""]",1268.68,{},96361,0,"""Europe""" +2024-05-24,99542,458,"[\""Wireless Mouse\"", \""Monitor\""]",3745.42,"{\"": \""11%\""}",91137,0,"""Asia""" +2023-03-25,99543,4229,"[\""Keyboard\""]",4350.79,"{\"": \""30%\""}",159092,0,"""Europe""" +2024-03-03,99544,3125,"[\""Wireless Mouse\""]",384.08,{},59261,0,"""South America""" +2023-09-28,99545,5325,"[\""Laptop\""]",4353.2,"{\""loyalty\"": \""15%\""}",79649,0,"""South America""" +2024-07-04,99546,5401,"[\""Laptop\"", \""Keyboard\"", \""Phone\""]",4633.13,"{\""seasonal\"": \""22%\""}",4634,1,"""Africa""" +2024-11-20,99547,5178,"[\""Headphones\"", \""Charger\""]",3553.93,{},288596,1,"""Asia""" +2024-11-18,99548,94,"[\""Laptop\""]",2756.06,{},31119,1,"""Africa""" +2023-11-24,99549,5857,"[\""Keyboard\"", \""Tablet\"", \""Laptop\""]",318.93,"{\""promo\"": \""11%\""}",21953,0,"""Africa""" +2024-02-16,99550,9569,"[\""Laptop\"", \""Keyboard\""]",1119.62,{},116541,1,"""Africa""" +2024-04-27,99551,169,"[\""Phone\"", \""Headphones\""]",302.48,{},143416,0,"""Asia""" +2024-03-13,99552,5938,"[\""Charger\"", \""Wireless Mouse\""]",3956.81,"{\""seasonal\"": \""15%\""}",202937,1,"""North America""" +2024-06-03,99553,3196,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",871.09,"{\""seasonal\"": \""18%\""}",259479,1,"""Africa""" +2023-08-02,99554,8102,"[\""Tablet\""]",3064.35,"{\""promo\"": \""9%\""}",236980,0,"""Asia""" +2023-10-11,99555,7073,"[\""Charger\"", \""Keyboard\"", \""Monitor\""]",2196.23,"{\"": \""5%\""}",251434,1,"""South America""" +2023-06-18,99556,9813,"[\""Keyboard\""]",2152.05,"{\""loyalty\"": \""5%\""}",117041,1,"""Asia""" +2023-08-07,99557,6858,"[\""Charger\"", \""Keyboard\""]",4360.85,"{\""seasonal\"": \""26%\""}",282180,1,"""Asia""" +2024-12-26,99558,7864,"[\""Headphones\"", \""Monitor\""]",2734.3,{},37372,1,"""Europe""" +2024-04-06,99559,5005,"[\""Phone\"", \""Keyboard\"", \""Laptop\""]",4065.88,"{\""seasonal\"": \""26%\""}",228987,1,"""Asia""" +2024-03-23,99560,1835,"[\""Phone\""]",872.03,{},197584,0,"""South America""" +2024-07-10,99561,2709,"[\""Tablet\"", \""Monitor\"", \""Phone\""]",1118.51,"{\""promo\"": \""26%\""}",204947,1,"""Asia""" +2023-08-03,99562,7036,"[\""Tablet\""]",2421.34,{},276974,1,"""Africa""" +2023-12-18,99563,6868,"[\""Laptop\"", \""Headphones\"", \""Monitor\""]",3073.48,"{\"": \""26%\""}",228386,0,"""North America""" +2023-01-19,99564,9989,"[\""Headphones\""]",2892.11,"{\""promo\"": \""27%\""}",136827,0,"""North America""" +2023-02-06,99565,4621,"[\""Headphones\""]",1859.51,"{\""seasonal\"": \""21%\""}",52574,1,"""Africa""" +2023-05-23,99566,6756,"[\""Keyboard\""]",3303.85,{},142713,0,"""Africa""" +2024-10-20,99567,7245,"[\""Phone\"", \""Charger\""]",2946.76,"{\""loyalty\"": \""13%\""}",164695,1,"""Europe""" +2024-11-09,99568,8749,"[\""Charger\""]",1743.89,{},103812,1,"""South America""" +2023-03-19,99569,8622,"[\""Headphones\"", \""Tablet\""]",576.32,"{\"": \""21%\""}",169652,0,"""Europe""" +2023-11-11,99570,93,"[\""Keyboard\""]",2069.77,{},169199,1,"""Asia""" +2024-02-11,99571,1768,"[\""Charger\"", \""Laptop\""]",4183.82,"{\""seasonal\"": \""14%\""}",152058,1,"""South America""" +2024-12-06,99572,8544,"[\""Tablet\"", \""Laptop\""]",2995.07,{},208539,0,"""Europe""" +2023-06-15,99573,9672,"[\""Keyboard\"", \""Tablet\"", \""Charger\""]",4438.44,"{\"": \""10%\""}",245655,0,"""South America""" +2024-07-19,99574,5434,"[\""Charger\"", \""Wireless Mouse\""]",3095.3,"{\""seasonal\"": \""24%\""}",263213,1,"""Africa""" +2024-07-03,99575,7753,"[\""Tablet\"", \""Charger\"", \""Laptop\""]",4800.77,{},270590,0,"""North America""" +2024-04-22,99576,472,"[\""Wireless Mouse\""]",3264.78,"{\""loyalty\"": \""24%\""}",263095,0,"""Asia""" +2023-05-28,99577,7718,"[\""Phone\""]",2916.95,{},37098,1,"""Africa""" +2023-12-30,99578,4907,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",4625.62,{},246973,1,"""South America""" +2023-05-28,99579,2757,"[\""Charger\"", \""Wireless Mouse\""]",3584.26,{},3687,1,"""Europe""" +2023-02-09,99580,6412,"[\""Phone\"", \""Wireless Mouse\""]",3297.83,{},18422,1,"""South America""" +2024-05-14,99581,3387,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2385.35,"{\"": \""5%\""}",139646,1,"""Asia""" +2024-12-22,99582,4460,"[\""Laptop\""]",1823.72,{},2978,0,"""North America""" +2023-09-22,99583,3201,"[\""Headphones\""]",2308.67,"{\""loyalty\"": \""24%\""}",171393,0,"""North America""" +2023-01-17,99584,3694,"[\""Charger\"", \""Keyboard\""]",4715.18,{},133596,1,"""Europe""" +2023-05-26,99585,201,"[\""Charger\"", \""Laptop\"", \""Keyboard\""]",4114.57,{},232955,1,"""North America""" +2023-10-26,99586,1887,"[\""Wireless Mouse\""]",3309.52,"{\"": \""18%\""}",137636,0,"""North America""" +2023-08-09,99587,7666,"[\""Laptop\"", \""Monitor\"", \""Charger\""]",1559.57,"{\""seasonal\"": \""22%\""}",61551,1,"""Asia""" +2023-07-23,99588,6526,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",3538.33,"{\"": \""9%\""}",184582,0,"""North America""" +2024-07-20,99589,8803,"[\""Headphones\"", \""Wireless Mouse\""]",590.43,{},183268,0,"""South America""" +2023-02-20,99590,2547,"[\""Keyboard\"", \""Laptop\""]",2632.29,{},243795,0,"""North America""" +2024-01-01,99591,6139,"[\""Keyboard\"", \""Charger\"", \""Phone\""]",3094.07,"{\""seasonal\"": \""8%\""}",277892,1,"""Africa""" +2023-10-17,99592,4324,"[\""Keyboard\"", \""Charger\"", \""Monitor\""]",1061.88,{},173561,1,"""Asia""" +2024-05-30,99593,322,"[\""Tablet\""]",1731.39,"{\""loyalty\"": \""26%\""}",226135,0,"""Europe""" +2024-12-05,99594,4502,"[\""Wireless Mouse\"", \""Phone\"", \""Monitor\""]",2676.06,"{\""seasonal\"": \""23%\""}",221837,0,"""North America""" +2023-01-26,99595,5360,"[\""Tablet\""]",4052.64,"{\""promo\"": \""28%\""}",29688,1,"""Africa""" +2023-10-10,99596,9111,"[\""Wireless Mouse\"", \""Charger\""]",510.34,"{\""seasonal\"": \""9%\""}",246984,0,"""Asia""" +2023-09-05,99597,1866,"[\""Charger\"", \""Laptop\""]",2917.98,"{\""promo\"": \""28%\""}",146457,1,"""Asia""" +2024-01-13,99598,3717,"[\""Keyboard\"", \""Monitor\"", \""Phone\""]",3746.23,{},216402,0,"""Africa""" +2023-08-20,99599,7530,"[\""Monitor\""]",4401.8,"{\"": \""28%\""}",254264,1,"""South America""" +2023-05-17,99600,2790,"[\""Charger\"", \""Phone\"", \""Keyboard\""]",4118.12,{},135294,1,"""South America""" +2023-10-05,99601,2536,"[\""Headphones\"", \""Keyboard\""]",362.81,{},75968,0,"""Asia""" +2024-02-24,99602,5947,"[\""Laptop\"", \""Headphones\""]",4233.53,"{\""loyalty\"": \""26%\""}",197659,0,"""North America""" +2024-09-20,99603,8364,"[\""Tablet\"", \""Monitor\""]",2565.36,"{\"": \""16%\""}",260663,1,"""South America""" +2023-04-10,99604,9321,"[\""Monitor\"", \""Tablet\"", \""Charger\""]",1271.76,{},146263,0,"""North America""" +2023-09-02,99605,1887,"[\""Headphones\""]",299.84,"{\""seasonal\"": \""11%\""}",225170,0,"""Asia""" +2023-02-03,99606,5383,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",803.88,{},149107,1,"""South America""" +2024-10-04,99607,1617,"[\""Headphones\"", \""Phone\"", \""Charger\""]",1449.95,"{\""promo\"": \""5%\""}",241616,0,"""North America""" +2024-08-18,99608,1244,"[\""Phone\"", \""Keyboard\""]",3877.55,"{\""seasonal\"": \""16%\""}",90528,1,"""Asia""" +2024-01-29,99609,3239,"[\""Charger\"", \""Monitor\""]",663.11,{},136745,1,"""South America""" +2024-05-13,99610,3159,"[\""Monitor\"", \""Charger\""]",4652.72,{},8282,0,"""Europe""" +2023-09-10,99611,4622,"[\""Keyboard\""]",2873.0,{},241997,1,"""Africa""" +2024-04-28,99612,2304,"[\""Laptop\"", \""Keyboard\""]",896.47,{},85555,0,"""Europe""" +2023-02-17,99613,5402,"[\""Headphones\"", \""Phone\"", \""Monitor\""]",4936.22,{},174408,0,"""South America""" +2023-11-02,99614,7610,"[\""Tablet\""]",165.92,{},192978,0,"""Africa""" +2024-02-09,99615,3797,"[\""Phone\"", \""Monitor\""]",752.71,"{\""loyalty\"": \""21%\""}",60596,0,"""Asia""" +2024-12-12,99616,5536,"[\""Tablet\""]",883.07,{},147304,0,"""Asia""" +2024-07-06,99617,6091,"[\""Tablet\""]",2583.27,"{\"": \""19%\""}",43690,1,"""North America""" +2024-04-30,99618,7797,"[\""Headphones\""]",2137.78,{},89896,0,"""Europe""" +2023-07-28,99619,9059,"[\""Monitor\"", \""Headphones\"", \""Laptop\""]",2639.44,{},270809,0,"""South America""" +2024-11-24,99620,8035,"[\""Keyboard\"", \""Charger\""]",3759.11,{},137379,0,"""Europe""" +2024-04-06,99621,3972,"[\""Keyboard\"", \""Charger\"", \""Wireless Mouse\""]",1704.82,"{\""promo\"": \""11%\""}",231301,0,"""South America""" +2023-07-03,99622,6941,"[\""Tablet\"", \""Laptop\""]",2936.93,"{\""loyalty\"": \""12%\""}",36776,0,"""Africa""" +2024-10-08,99623,9385,"[\""Headphones\"", \""Charger\""]",4367.05,"{\""promo\"": \""9%\""}",45299,1,"""Europe""" +2023-05-08,99624,8684,"[\""Keyboard\"", \""Phone\""]",4886.72,"{\""promo\"": \""25%\""}",118094,0,"""Europe""" +2024-12-28,99625,661,"[\""Laptop\""]",4649.68,{},241006,1,"""Asia""" +2024-03-03,99626,6724,"[\""Headphones\"", \""Keyboard\"", \""Tablet\""]",889.75,{},97812,1,"""Africa""" +2023-04-16,99627,2023,"[\""Phone\"", \""Keyboard\""]",4763.57,{},270046,1,"""Asia""" +2023-02-20,99628,8160,"[\""Laptop\""]",3597.24,"{\""promo\"": \""15%\""}",260038,1,"""South America""" +2023-04-30,99629,7023,"[\""Laptop\""]",785.86,{},10524,0,"""North America""" +2024-08-01,99630,587,"[\""Headphones\"", \""Wireless Mouse\""]",3491.11,"{\"": \""22%\""}",92974,0,"""North America""" +2023-03-14,99631,6598,"[\""Charger\""]",2951.74,"{\"": \""28%\""}",79615,1,"""Africa""" +2024-01-24,99632,8491,"[\""Tablet\""]",2819.61,{},15097,1,"""North America""" +2024-04-12,99633,7409,"[\""Charger\"", \""Phone\"", \""Tablet\""]",4046.11,"{\"": \""7%\""}",158348,1,"""South America""" +2023-02-14,99634,7784,"[\""Keyboard\"", \""Laptop\""]",4604.9,{},60552,0,"""Asia""" +2023-03-02,99635,5068,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",3560.06,"{\""seasonal\"": \""11%\""}",298223,0,"""Europe""" +2024-08-06,99636,5670,"[\""Keyboard\"", \""Headphones\"", \""Phone\""]",2635.17,{},142025,1,"""North America""" +2023-04-07,99637,8848,"[\""Wireless Mouse\""]",3082.38,{},71848,1,"""Asia""" +2023-05-29,99638,305,"[\""Headphones\"", \""Wireless Mouse\"", \""Phone\""]",1192.81,{},152414,1,"""Africa""" +2023-04-28,99639,8011,"[\""Headphones\"", \""Tablet\""]",3686.38,{},123439,1,"""North America""" +2024-08-06,99640,1939,"[\""Tablet\"", \""Laptop\"", \""Phone\""]",1623.3,"{\""promo\"": \""23%\""}",130208,0,"""Africa""" +2024-08-15,99641,5943,"[\""Keyboard\""]",989.2,{},94211,0,"""North America""" +2023-01-08,99642,709,"[\""Tablet\""]",2306.96,"{\""promo\"": \""17%\""}",142582,0,"""Asia""" +2024-07-04,99643,8625,"[\""Laptop\"", \""Phone\"", \""Headphones\""]",1802.22,{},299491,0,"""Africa""" +2023-01-15,99644,6354,"[\""Monitor\""]",3541.34,{},58746,0,"""North America""" +2024-09-07,99645,7761,"[\""Headphones\"", \""Phone\""]",3936.98,{},198927,1,"""Asia""" +2024-11-19,99646,7536,"[\""Laptop\""]",1485.79,"{\""seasonal\"": \""18%\""}",139340,0,"""South America""" +2024-05-17,99647,6923,"[\""Laptop\""]",3410.23,{},275614,0,"""Asia""" +2024-08-04,99648,3760,"[\""Phone\""]",1643.37,"{\""seasonal\"": \""11%\""}",17153,1,"""North America""" +2024-10-06,99649,5686,"[\""Laptop\"", \""Charger\""]",4506.58,{},206009,1,"""Europe""" +2024-08-16,99650,1644,"[\""Wireless Mouse\""]",2809.72,{},190129,0,"""Asia""" +2024-03-08,99651,4836,"[\""Monitor\""]",2428.0,{},47694,0,"""Europe""" +2024-12-01,99652,8223,"[\""Laptop\"", \""Keyboard\""]",4059.5,{},278605,1,"""Europe""" +2024-06-12,99653,7491,"[\""Keyboard\""]",609.89,"{\"": \""30%\""}",155627,0,"""North America""" +2023-03-31,99654,1227,"[\""Charger\""]",2899.41,{},129351,1,"""Europe""" +2024-02-22,99655,7079,"[\""Laptop\""]",3904.45,{},75866,0,"""North America""" +2023-03-22,99656,6908,"[\""Tablet\"", \""Keyboard\""]",1863.84,{},183072,1,"""Asia""" +2024-03-24,99657,6209,"[\""Keyboard\""]",2065.99,{},60117,1,"""North America""" +2024-11-03,99658,1345,"[\""Keyboard\"", \""Monitor\""]",631.31,{},2347,0,"""North America""" +2023-06-27,99659,5290,"[\""Tablet\"", \""Laptop\""]",1593.93,{},51645,0,"""South America""" +2024-09-08,99660,4902,"[\""Wireless Mouse\""]",2493.22,{},205757,0,"""South America""" +2023-09-15,99661,3397,"[\""Wireless Mouse\"", \""Charger\"", \""Headphones\""]",3671.25,{},230673,0,"""Europe""" +2024-07-02,99662,5394,"[\""Wireless Mouse\"", \""Headphones\""]",1454.58,"{\""promo\"": \""20%\""}",95332,0,"""Asia""" +2024-04-13,99663,7210,"[\""Monitor\"", \""Keyboard\""]",1039.57,{},59935,1,"""Asia""" +2023-09-17,99664,3720,"[\""Charger\"", \""Laptop\"", \""Phone\""]",1867.41,"{\""loyalty\"": \""29%\""}",284602,1,"""Africa""" +2024-12-31,99665,5327,"[\""Wireless Mouse\"", \""Headphones\""]",3997.48,{},70078,1,"""North America""" +2024-10-13,99666,1194,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",3351.69,{},114253,0,"""North America""" +2023-08-03,99667,5628,"[\""Keyboard\""]",265.88,"{\""seasonal\"": \""10%\""}",126442,1,"""South America""" +2024-07-25,99668,2052,"[\""Keyboard\""]",2452.23,"{\"": \""8%\""}",280201,1,"""North America""" +2023-02-28,99669,8347,"[\""Charger\"", \""Wireless Mouse\"", \""Headphones\""]",4243.82,{},150481,0,"""North America""" +2023-02-17,99670,7071,"[\""Keyboard\"", \""Phone\"", \""Charger\""]",722.1,{},181879,0,"""Europe""" +2023-12-21,99671,9848,"[\""Wireless Mouse\"", \""Keyboard\""]",4823.42,"{\""loyalty\"": \""25%\""}",130009,1,"""Asia""" +2024-11-29,99672,1287,"[\""Wireless Mouse\"", \""Keyboard\""]",4680.15,"{\""promo\"": \""12%\""}",187036,1,"""Africa""" +2023-07-02,99673,4287,"[\""Headphones\"", \""Wireless Mouse\"", \""Laptop\""]",4571.61,"{\""seasonal\"": \""17%\""}",234656,0,"""Africa""" +2023-12-07,99674,7052,"[\""Wireless Mouse\""]",1759.47,{},22893,0,"""North America""" +2024-10-28,99675,620,"[\""Phone\""]",1294.19,"{\""loyalty\"": \""23%\""}",297771,0,"""Africa""" +2023-04-22,99676,7765,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",2806.9,{},232726,1,"""Europe""" +2024-12-17,99677,8320,"[\""Keyboard\"", \""Wireless Mouse\"", \""Monitor\""]",4820.89,"{\""seasonal\"": \""14%\""}",35484,0,"""Europe""" +2024-03-03,99678,8646,"[\""Tablet\"", \""Laptop\"", \""Charger\""]",937.7,"{\"": \""18%\""}",127200,1,"""Africa""" +2024-12-22,99679,8705,"[\""Phone\"", \""Headphones\""]",728.2,{},138183,1,"""Europe""" +2024-08-02,99680,6463,"[\""Wireless Mouse\"", \""Phone\""]",359.14,"{\"": \""28%\""}",184303,1,"""Africa""" +2024-05-26,99681,7665,"[\""Keyboard\"", \""Headphones\""]",1483.12,{},281810,1,"""South America""" +2023-05-06,99682,7570,"[\""Headphones\""]",4443.07,"{\"": \""21%\""}",186513,0,"""North America""" +2024-11-10,99683,3068,"[\""Monitor\""]",625.32,{},25740,0,"""Africa""" +2023-07-21,99684,3442,"[\""Phone\""]",1917.39,{},150701,0,"""Europe""" +2024-10-18,99685,5793,"[\""Keyboard\"", \""Charger\""]",3903.99,"{\""seasonal\"": \""14%\""}",141323,1,"""Asia""" +2024-04-25,99686,3539,"[\""Headphones\"", \""Tablet\""]",4092.21,{},200120,0,"""South America""" +2023-07-13,99687,5439,"[\""Charger\"", \""Keyboard\""]",78.54,{},269743,1,"""North America""" +2024-12-09,99688,1587,"[\""Headphones\"", \""Laptop\"", \""Phone\""]",4325.63,{},83490,1,"""Africa""" +2024-01-05,99689,1148,"[\""Keyboard\"", \""Laptop\""]",356.74,{},270275,1,"""North America""" +2023-04-30,99690,1270,"[\""Wireless Mouse\"", \""Monitor\"", \""Charger\""]",1625.21,{},10877,1,"""Asia""" +2024-06-18,99691,1378,"[\""Tablet\"", \""Charger\"", \""Keyboard\""]",1624.48,{},100912,0,"""North America""" +2024-02-24,99692,1095,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",3594.09,{},117965,0,"""Africa""" +2024-03-15,99693,4504,"[\""Keyboard\""]",4381.5,{},279663,1,"""Asia""" +2023-07-26,99694,9527,"[\""Charger\"", \""Phone\"", \""Laptop\""]",3229.99,{},84331,0,"""North America""" +2024-09-06,99695,9553,"[\""Charger\"", \""Keyboard\"", \""Wireless Mouse\""]",4709.69,"{\"": \""27%\""}",213631,1,"""Asia""" +2024-01-28,99696,7925,"[\""Charger\"", \""Phone\"", \""Laptop\""]",1129.01,{},164910,0,"""North America""" +2023-11-13,99697,7773,"[\""Monitor\""]",3038.61,"{\""loyalty\"": \""6%\""}",256660,1,"""North America""" +2024-05-27,99698,389,"[\""Charger\"", \""Wireless Mouse\""]",4722.5,{},260938,1,"""Europe""" +2024-11-29,99699,6446,"[\""Wireless Mouse\"", \""Tablet\"", \""Laptop\""]",246.46,"{\""seasonal\"": \""20%\""}",220282,1,"""Europe""" +2024-11-24,99700,811,"[\""Tablet\"", \""Wireless Mouse\"", \""Charger\""]",3799.93,{},12904,1,"""South America""" +2024-03-21,99701,2078,"[\""Wireless Mouse\"", \""Keyboard\"", \""Charger\""]",2967.03,"{\""loyalty\"": \""5%\""}",147832,1,"""North America""" +2024-02-10,99702,6183,"[\""Keyboard\"", \""Wireless Mouse\"", \""Laptop\""]",3051.6,"{\""seasonal\"": \""30%\""}",296089,0,"""North America""" +2024-03-25,99703,4445,"[\""Laptop\"", \""Tablet\"", \""Keyboard\""]",3623.59,{},172064,0,"""Africa""" +2023-09-25,99704,6734,"[\""Charger\""]",4479.7,"{\""promo\"": \""24%\""}",114419,1,"""Europe""" +2024-06-06,99705,5465,"[\""Monitor\""]",61.56,{},205689,1,"""Africa""" +2024-12-10,99706,2745,"[\""Monitor\"", \""Tablet\"", \""Phone\""]",4042.53,"{\""promo\"": \""5%\""}",78028,0,"""Africa""" +2024-11-20,99707,5834,"[\""Keyboard\""]",3746.94,"{\"": \""17%\""}",140138,1,"""North America""" +2023-10-08,99708,3253,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",195.36,{},153257,0,"""North America""" +2024-04-24,99709,2820,"[\""Monitor\""]",4861.49,"{\""seasonal\"": \""20%\""}",101539,0,"""Africa""" +2024-10-10,99710,1807,"[\""Phone\""]",3797.99,"{\"": \""22%\""}",240193,1,"""Europe""" +2024-05-28,99711,3963,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",3824.13,"{\"": \""20%\""}",250900,1,"""Europe""" +2023-06-20,99712,8299,"[\""Headphones\""]",1265.87,{},166404,1,"""South America""" +2023-07-19,99713,3485,"[\""Monitor\"", \""Keyboard\"", \""Wireless Mouse\""]",1440.13,{},53404,0,"""Africa""" +2023-04-27,99714,4155,"[\""Tablet\"", \""Monitor\""]",4492.53,{},97608,1,"""North America""" +2023-09-02,99715,8510,"[\""Phone\"", \""Laptop\"", \""Keyboard\""]",723.62,{},130536,1,"""Asia""" +2023-07-25,99716,6331,"[\""Charger\""]",2945.5,"{\""seasonal\"": \""24%\""}",86765,0,"""Europe""" +2023-07-22,99717,4677,"[\""Headphones\"", \""Charger\""]",2294.03,{},266116,1,"""Europe""" +2024-09-24,99718,9856,"[\""Tablet\"", \""Monitor\""]",4613.91,"{\""loyalty\"": \""27%\""}",165075,1,"""North America""" +2023-05-28,99719,5543,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",516.03,{},118801,1,"""South America""" +2024-01-20,99720,9793,"[\""Tablet\""]",3150.27,{},277786,0,"""Africa""" +2023-02-01,99721,8187,"[\""Wireless Mouse\"", \""Laptop\""]",3330.43,"{\""loyalty\"": \""23%\""}",282259,1,"""North America""" +2023-05-24,99722,9218,"[\""Phone\"", \""Laptop\""]",3238.4,"{\""loyalty\"": \""23%\""}",257869,0,"""South America""" +2024-09-24,99723,8229,"[\""Monitor\"", \""Keyboard\""]",4795.75,"{\""seasonal\"": \""23%\""}",262561,0,"""North America""" +2023-04-19,99724,1855,"[\""Charger\"", \""Keyboard\"", \""Laptop\""]",4268.69,"{\""promo\"": \""15%\""}",268487,1,"""South America""" +2024-11-25,99725,3944,"[\""Phone\"", \""Charger\"", \""Keyboard\""]",3386.09,{},11317,0,"""South America""" +2023-09-13,99726,1129,"[\""Wireless Mouse\"", \""Tablet\"", \""Phone\""]",4531.41,"{\""seasonal\"": \""25%\""}",40615,1,"""Europe""" +2023-02-08,99727,7346,"[\""Phone\"", \""Charger\""]",1942.52,{},175918,1,"""North America""" +2023-05-01,99728,6662,"[\""Headphones\""]",3716.17,{},287648,1,"""Africa""" +2024-11-22,99729,6278,"[\""Phone\"", \""Monitor\"", \""Tablet\""]",1225.34,{},199949,0,"""North America""" +2024-01-03,99730,277,"[\""Monitor\"", \""Laptop\"", \""Keyboard\""]",615.07,{},250041,0,"""North America""" +2023-07-23,99731,8765,"[\""Laptop\"", \""Headphones\""]",3880.72,"{\"": \""29%\""}",294588,1,"""North America""" +2023-06-24,99732,1083,"[\""Laptop\"", \""Wireless Mouse\""]",1610.65,{},180503,0,"""Africa""" +2023-05-08,99733,8739,"[\""Laptop\""]",2234.62,"{\""loyalty\"": \""7%\""}",66413,1,"""Europe""" +2024-01-18,99734,5228,"[\""Tablet\""]",3139.42,{},65345,0,"""South America""" +2024-05-20,99735,8864,"[\""Headphones\"", \""Keyboard\""]",465.65,"{\""seasonal\"": \""16%\""}",250681,1,"""North America""" +2023-03-22,99736,429,"[\""Phone\""]",4897.9,{},183203,1,"""South America""" +2024-07-28,99737,8138,"[\""Keyboard\""]",2695.04,{},167417,0,"""Europe""" +2023-09-16,99738,3907,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",2168.67,{},163615,0,"""North America""" +2024-10-29,99739,2564,"[\""Phone\"", \""Tablet\"", \""Laptop\""]",1667.75,{},53387,0,"""South America""" +2023-10-11,99740,6211,"[\""Phone\"", \""Tablet\"", \""Wireless Mouse\""]",1684.51,"{\""promo\"": \""21%\""}",198188,1,"""Asia""" +2024-07-11,99741,5238,"[\""Phone\""]",3576.9,{},71680,0,"""Africa""" +2023-03-28,99742,1028,"[\""Headphones\"", \""Phone\""]",508.95,{},258695,0,"""Africa""" +2023-07-29,99743,3854,"[\""Charger\"", \""Keyboard\""]",56.96,"{\""promo\"": \""28%\""}",116621,0,"""Asia""" +2023-08-02,99744,9227,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",3665.72,"{\"": \""28%\""}",273870,0,"""South America""" +2023-08-17,99745,214,"[\""Tablet\"", \""Headphones\"", \""Laptop\""]",2451.63,"{\""seasonal\"": \""7%\""}",135434,1,"""Europe""" +2024-03-20,99746,3757,"[\""Monitor\"", \""Headphones\""]",4893.09,{},284753,0,"""Africa""" +2023-11-22,99747,4492,"[\""Laptop\"", \""Wireless Mouse\"", \""Tablet\""]",4019.75,{},298141,0,"""North America""" +2023-09-04,99748,5771,"[\""Tablet\"", \""Headphones\"", \""Charger\""]",2676.87,{},255811,0,"""North America""" +2023-07-26,99749,1909,"[\""Laptop\"", \""Tablet\""]",2569.29,{},63516,0,"""South America""" +2023-02-06,99750,7578,"[\""Laptop\"", \""Wireless Mouse\"", \""Phone\""]",2935.29,{},39901,1,"""Africa""" +2023-12-01,99751,19,"[\""Wireless Mouse\"", \""Laptop\"", \""Tablet\""]",2631.71,"{\""loyalty\"": \""7%\""}",187493,0,"""North America""" +2023-01-17,99752,2514,"[\""Keyboard\""]",1432.48,"{\"": \""15%\""}",21411,0,"""Africa""" +2023-04-05,99753,7369,"[\""Charger\"", \""Monitor\""]",4656.42,{},46947,1,"""South America""" +2024-08-29,99754,7639,"[\""Wireless Mouse\""]",1841.92,{},123191,1,"""South America""" +2023-11-18,99755,567,"[\""Monitor\"", \""Headphones\"", \""Phone\""]",3018.79,"{\""promo\"": \""20%\""}",1585,1,"""Africa""" +2023-02-22,99756,1754,"[\""Wireless Mouse\""]",4730.08,{},17450,0,"""South America""" +2024-08-13,99757,4244,"[\""Wireless Mouse\""]",2338.61,{},33304,1,"""Asia""" +2023-03-20,99758,7469,"[\""Tablet\"", \""Phone\""]",4162.39,"{\""seasonal\"": \""10%\""}",38697,1,"""Europe""" +2024-03-28,99759,6508,"[\""Monitor\"", \""Charger\"", \""Phone\""]",1595.98,{},173214,0,"""Europe""" +2024-12-24,99760,2848,"[\""Wireless Mouse\"", \""Monitor\""]",657.17,{},30032,0,"""South America""" +2024-02-06,99761,3719,"[\""Monitor\"", \""Keyboard\""]",1805.3,{},216896,1,"""Europe""" +2023-07-27,99762,5595,"[\""Charger\""]",341.54,{},106503,1,"""North America""" +2024-04-06,99763,6965,"[\""Headphones\"", \""Charger\"", \""Wireless Mouse\""]",1466.73,"{\""loyalty\"": \""22%\""}",64288,0,"""Europe""" +2023-01-01,99764,7184,"[\""Monitor\""]",1829.85,{},157471,0,"""Asia""" +2024-10-23,99765,5899,"[\""Charger\"", \""Phone\"", \""Headphones\""]",247.33,"{\""loyalty\"": \""20%\""}",227499,1,"""North America""" +2023-02-18,99766,5392,"[\""Keyboard\""]",2590.21,{},63242,0,"""Africa""" +2024-06-11,99767,4245,"[\""Keyboard\"", \""Headphones\"", \""Laptop\""]",1189.88,{},23658,0,"""Asia""" +2024-09-29,99768,4301,"[\""Laptop\"", \""Keyboard\"", \""Wireless Mouse\""]",4937.95,{},21235,1,"""Europe""" +2023-01-15,99769,5125,"[\""Phone\"", \""Monitor\""]",4516.05,"{\""loyalty\"": \""20%\""}",78593,0,"""North America""" +2023-07-15,99770,713,"[\""Keyboard\"", \""Phone\""]",2812.29,{},223198,1,"""Europe""" +2024-02-01,99771,2442,"[\""Headphones\"", \""Monitor\""]",4185.9,"{\""seasonal\"": \""5%\""}",118135,1,"""Asia""" +2024-05-26,99772,2629,"[\""Tablet\"", \""Laptop\"", \""Headphones\""]",1492.28,{},77207,0,"""Asia""" +2023-02-19,99773,1301,"[\""Phone\"", \""Laptop\""]",2075.71,{},232433,0,"""Asia""" +2024-11-05,99774,4069,"[\""Monitor\"", \""Charger\""]",4850.24,{},281231,1,"""Europe""" +2024-12-16,99775,4626,"[\""Phone\"", \""Tablet\""]",1614.26,{},152284,1,"""North America""" +2024-09-07,99776,7499,"[\""Tablet\""]",1796.54,{},24019,0,"""Asia""" +2023-03-30,99777,9734,"[\""Charger\"", \""Monitor\"", \""Tablet\""]",2529.02,"{\""promo\"": \""26%\""}",116188,1,"""South America""" +2024-06-25,99778,8973,"[\""Phone\""]",577.97,"{\""promo\"": \""9%\""}",109272,1,"""Asia""" +2023-07-08,99779,5893,"[\""Charger\"", \""Tablet\""]",3743.89,{},258924,0,"""South America""" +2024-06-04,99780,5309,"[\""Keyboard\"", \""Phone\"", \""Monitor\""]",3020.66,{},33641,1,"""Africa""" +2023-02-03,99781,1956,"[\""Phone\""]",151.91,{},293586,1,"""Europe""" +2024-03-23,99782,3385,"[\""Laptop\""]",4395.63,{},157430,1,"""Africa""" +2024-08-21,99783,9104,"[\""Monitor\""]",1995.46,"{\""loyalty\"": \""17%\""}",281108,0,"""North America""" +2024-06-24,99784,3521,"[\""Headphones\""]",108.93,{},275622,1,"""Asia""" +2024-06-20,99785,7589,"[\""Phone\"", \""Tablet\"", \""Keyboard\""]",754.07,{},32053,1,"""Africa""" +2024-06-15,99786,2972,"[\""Charger\"", \""Phone\""]",119.79,"{\""promo\"": \""5%\""}",179799,0,"""North America""" +2023-09-23,99787,2508,"[\""Tablet\"", \""Phone\"", \""Monitor\""]",4904.77,"{\""seasonal\"": \""23%\""}",108395,0,"""Asia""" +2023-11-06,99788,5181,"[\""Charger\"", \""Phone\"", \""Monitor\""]",4757.39,{},240171,1,"""South America""" +2024-09-12,99789,1908,"[\""Charger\"", \""Phone\""]",111.22,{},189693,1,"""South America""" +2024-11-10,99790,8985,"[\""Monitor\"", \""Phone\"", \""Tablet\""]",380.7,{},210524,0,"""South America""" +2024-08-26,99791,7317,"[\""Tablet\"", \""Wireless Mouse\""]",3561.78,{},127702,0,"""Asia""" +2023-01-15,99792,6333,"[\""Monitor\""]",669.8,"{\"": \""15%\""}",163739,1,"""North America""" +2024-12-27,99793,4720,"[\""Keyboard\"", \""Laptop\"", \""Wireless Mouse\""]",3157.08,{},107531,1,"""Africa""" +2024-09-03,99794,5831,"[\""Headphones\""]",1465.74,"{\""promo\"": \""22%\""}",213853,0,"""Africa""" +2023-12-06,99795,8497,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2890.81,"{\"": \""22%\""}",226793,1,"""Asia""" +2023-06-14,99796,814,"[\""Wireless Mouse\"", \""Headphones\"", \""Monitor\""]",1372.95,{},53966,1,"""North America""" +2023-08-04,99797,9702,"[\""Monitor\""]",1551.77,"{\""loyalty\"": \""26%\""}",228872,1,"""North America""" +2023-01-03,99798,9504,"[\""Charger\"", \""Laptop\"", \""Phone\""]",407.99,"{\""seasonal\"": \""20%\""}",146071,1,"""Africa""" +2024-02-20,99799,4200,"[\""Laptop\"", \""Tablet\""]",3471.2,"{\""loyalty\"": \""8%\""}",236923,0,"""South America""" +2023-05-05,99800,3256,"[\""Wireless Mouse\"", \""Monitor\"", \""Tablet\""]",891.99,{},157682,1,"""North America""" +2024-12-29,99801,9706,"[\""Keyboard\""]",535.36,{},84134,0,"""North America""" +2023-02-14,99802,4670,"[\""Tablet\"", \""Charger\""]",188.82,"{\"": \""6%\""}",246438,1,"""Europe""" +2023-06-10,99803,3537,"[\""Headphones\"", \""Monitor\""]",4029.03,{},127007,0,"""Asia""" +2024-12-13,99804,6660,"[\""Wireless Mouse\"", \""Headphones\"", \""Phone\""]",2208.11,{},48285,1,"""Asia""" +2023-06-04,99805,9608,"[\""Tablet\"", \""Laptop\"", \""Keyboard\""]",4031.38,{},163646,1,"""Asia""" +2024-07-20,99806,256,"[\""Laptop\""]",2917.08,{},126456,1,"""Africa""" +2024-05-12,99807,5436,"[\""Laptop\"", \""Tablet\"", \""Charger\""]",3397.59,"{\""seasonal\"": \""8%\""}",1450,0,"""South America""" +2024-02-18,99808,6579,"[\""Headphones\"", \""Monitor\"", \""Tablet\""]",1501.73,{},179738,1,"""North America""" +2024-08-11,99809,950,"[\""Phone\"", \""Keyboard\"", \""Monitor\""]",2428.85,{},204788,0,"""Asia""" +2024-04-19,99810,5782,"[\""Charger\""]",1375.35,"{\""loyalty\"": \""18%\""}",255197,1,"""Asia""" +2024-07-23,99811,9442,"[\""Tablet\"", \""Keyboard\""]",2383.47,{},4438,0,"""North America""" +2023-12-21,99812,1650,"[\""Phone\""]",654.4,{},244209,0,"""North America""" +2023-06-16,99813,6166,"[\""Keyboard\"", \""Monitor\""]",2166.98,"{\""promo\"": \""16%\""}",199188,0,"""Africa""" +2024-09-08,99814,7469,"[\""Tablet\"", \""Laptop\""]",1130.12,"{\""promo\"": \""20%\""}",141584,0,"""Europe""" +2023-10-24,99815,6455,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",2602.31,"{\""loyalty\"": \""27%\""}",131114,1,"""Asia""" +2024-05-09,99816,2213,"[\""Charger\""]",2474.97,{},21961,1,"""South America""" +2024-04-15,99817,3395,"[\""Laptop\"", \""Monitor\"", \""Headphones\""]",210.31,{},147975,1,"""Europe""" +2023-04-17,99818,2565,"[\""Tablet\""]",1364.11,{},164180,1,"""South America""" +2023-09-06,99819,3259,"[\""Charger\""]",3362.8,"{\"": \""19%\""}",278458,0,"""North America""" +2023-07-07,99820,9720,"[\""Tablet\"", \""Phone\""]",3685.01,"{\"": \""22%\""}",243582,0,"""North America""" +2024-08-15,99821,3180,"[\""Tablet\"", \""Charger\""]",1644.5,{},190278,1,"""North America""" +2023-11-21,99822,3170,"[\""Monitor\"", \""Charger\"", \""Tablet\""]",3539.4,"{\""promo\"": \""20%\""}",68475,0,"""North America""" +2023-02-04,99823,7776,"[\""Charger\"", \""Keyboard\"", \""Headphones\""]",4722.11,"{\""promo\"": \""9%\""}",21132,0,"""Europe""" +2024-11-11,99824,5043,"[\""Headphones\"", \""Keyboard\""]",1795.72,{},24602,1,"""Europe""" +2023-06-01,99825,7661,"[\""Headphones\"", \""Keyboard\"", \""Charger\""]",3661.05,"{\"": \""18%\""}",17086,0,"""Africa""" +2023-07-08,99826,21,"[\""Monitor\"", \""Tablet\""]",2322.61,"{\"": \""17%\""}",228134,0,"""North America""" +2024-05-11,99827,7713,"[\""Tablet\"", \""Monitor\""]",1739.14,"{\""seasonal\"": \""17%\""}",65543,0,"""North America""" +2024-10-28,99828,2142,"[\""Keyboard\""]",481.51,"{\"": \""10%\""}",248157,0,"""South America""" +2024-05-10,99829,4254,"[\""Laptop\"", \""Charger\"", \""Monitor\""]",1226.35,"{\""promo\"": \""18%\""}",233179,0,"""Africa""" +2023-09-01,99830,6700,"[\""Keyboard\"", \""Laptop\""]",1152.06,{},65463,0,"""Europe""" +2023-08-31,99831,1736,"[\""Tablet\"", \""Headphones\""]",854.47,{},260503,1,"""North America""" +2023-06-07,99832,4707,"[\""Keyboard\"", \""Phone\""]",2970.48,{},67483,0,"""North America""" +2024-10-03,99833,5654,"[\""Laptop\"", \""Wireless Mouse\""]",694.69,{},294549,0,"""South America""" +2024-11-16,99834,1208,"[\""Headphones\"", \""Keyboard\""]",4865.54,"{\""promo\"": \""13%\""}",107154,1,"""Asia""" +2023-04-01,99835,222,"[\""Headphones\"", \""Charger\""]",4294.62,{},270583,0,"""Europe""" +2023-11-24,99836,8825,"[\""Monitor\"", \""Wireless Mouse\"", \""Tablet\""]",3602.82,"{\""seasonal\"": \""12%\""}",136072,0,"""North America""" +2023-08-15,99837,9649,"[\""Charger\""]",1470.48,{},186490,0,"""South America""" +2023-08-09,99838,7036,"[\""Wireless Mouse\"", \""Laptop\""]",3680.47,"{\"": \""10%\""}",194587,0,"""Africa""" +2024-03-22,99839,7849,"[\""Keyboard\""]",4168.6,{},5208,0,"""South America""" +2023-11-02,99840,4119,"[\""Wireless Mouse\""]",4678.81,{},296187,0,"""Asia""" +2024-08-30,99841,285,"[\""Monitor\""]",4571.02,{},248794,1,"""North America""" +2024-11-16,99842,2108,"[\""Charger\"", \""Phone\"", \""Headphones\""]",1364.89,{},174620,1,"""Asia""" +2023-08-06,99843,6370,"[\""Phone\""]",3010.95,{},46272,0,"""Europe""" +2023-12-25,99844,7484,"[\""Charger\""]",4200.33,{},292973,0,"""North America""" +2024-04-13,99845,9886,"[\""Tablet\""]",2307.67,{},194279,0,"""North America""" +2023-11-01,99846,4874,"[\""Keyboard\""]",2761.43,{},292290,0,"""South America""" +2023-05-24,99847,9057,"[\""Phone\"", \""Headphones\"", \""Wireless Mouse\""]",1211.43,{},174785,1,"""Asia""" +2024-01-25,99848,793,"[\""Keyboard\"", \""Tablet\"", \""Headphones\""]",4395.98,"{\"": \""9%\""}",188713,1,"""Europe""" +2024-03-18,99849,4656,"[\""Monitor\"", \""Wireless Mouse\"", \""Headphones\""]",2394.94,{},111016,1,"""Asia""" +2023-03-29,99850,803,"[\""Charger\""]",2570.27,"{\""seasonal\"": \""6%\""}",194022,0,"""North America""" +2023-12-20,99851,798,"[\""Wireless Mouse\"", \""Laptop\"", \""Phone\""]",3112.99,{},198747,0,"""Europe""" +2024-11-15,99852,1438,"[\""Laptop\"", \""Tablet\""]",3368.32,"{\""promo\"": \""13%\""}",106672,0,"""North America""" +2023-01-13,99853,7663,"[\""Tablet\""]",353.51,"{\""loyalty\"": \""7%\""}",168155,0,"""North America""" +2023-05-14,99854,7440,"[\""Headphones\"", \""Monitor\""]",2901.34,"{\""seasonal\"": \""23%\""}",34017,0,"""South America""" +2023-02-05,99855,2682,"[\""Headphones\"", \""Monitor\""]",2200.37,{},216236,1,"""Europe""" +2023-06-25,99856,2635,"[\""Headphones\""]",312.31,{},6857,1,"""South America""" +2023-01-15,99857,241,"[\""Phone\"", \""Headphones\""]",3111.81,{},173715,1,"""Europe""" +2024-11-16,99858,2297,"[\""Monitor\"", \""Phone\"", \""Wireless Mouse\""]",1655.17,"{\""seasonal\"": \""12%\""}",175326,0,"""South America""" +2024-12-27,99859,4199,"[\""Keyboard\""]",4526.45,{},109584,1,"""North America""" +2023-06-30,99860,4536,"[\""Laptop\"", \""Charger\""]",2587.17,{},45885,0,"""South America""" +2023-11-30,99861,3911,"[\""Keyboard\"", \""Phone\""]",2015.96,"{\""loyalty\"": \""30%\""}",113868,0,"""Asia""" +2023-09-14,99862,1439,"[\""Wireless Mouse\"", \""Charger\""]",3920.89,{},125444,0,"""South America""" +2023-09-10,99863,1540,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",4008.83,{},71727,1,"""North America""" +2023-08-29,99864,4148,"[\""Keyboard\""]",1577.11,"{\""loyalty\"": \""14%\""}",91594,0,"""North America""" +2024-08-25,99865,8026,"[\""Laptop\"", \""Monitor\""]",2301.1,"{\""promo\"": \""13%\""}",25690,0,"""Africa""" +2024-12-05,99866,2992,"[\""Monitor\"", \""Charger\""]",2601.72,{},141194,1,"""Europe""" +2024-07-13,99867,3600,"[\""Phone\"", \""Keyboard\""]",3214.17,"{\""seasonal\"": \""11%\""}",189630,0,"""Asia""" +2024-06-12,99868,7484,"[\""Phone\"", \""Headphones\"", \""Tablet\""]",2846.28,{},149843,1,"""South America""" +2023-06-04,99869,8828,"[\""Wireless Mouse\""]",1776.04,{},290682,0,"""Africa""" +2023-12-03,99870,3928,"[\""Headphones\"", \""Wireless Mouse\""]",4166.96,"{\""seasonal\"": \""13%\""}",205476,0,"""Africa""" +2023-02-16,99871,2148,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",838.12,"{\""loyalty\"": \""20%\""}",282208,1,"""South America""" +2024-12-16,99872,2698,"[\""Headphones\"", \""Keyboard\"", \""Laptop\""]",3463.32,"{\""loyalty\"": \""28%\""}",113891,1,"""South America""" +2024-02-14,99873,763,"[\""Laptop\""]",2196.45,{},189014,1,"""North America""" +2024-11-22,99874,2562,"[\""Phone\""]",3938.57,"{\"": \""24%\""}",210919,0,"""Europe""" +2023-12-24,99875,9715,"[\""Wireless Mouse\"", \""Tablet\""]",4187.8,{},288750,0,"""North America""" +2024-02-09,99876,8684,"[\""Tablet\"", \""Monitor\"", \""Headphones\""]",4460.88,{},229572,1,"""Asia""" +2023-07-15,99877,4181,"[\""Laptop\""]",4945.41,{},183246,0,"""Africa""" +2023-04-20,99878,3277,"[\""Tablet\"", \""Headphones\"", \""Phone\""]",1871.82,{},284170,0,"""North America""" +2024-11-22,99879,3660,"[\""Tablet\"", \""Headphones\""]",4618.23,{},6350,0,"""South America""" +2024-04-29,99880,7892,"[\""Monitor\"", \""Tablet\""]",3355.76,{},275511,1,"""South America""" +2023-08-17,99881,6330,"[\""Laptop\""]",4667.49,{},14768,0,"""Europe""" +2023-06-11,99882,1843,"[\""Headphones\""]",1251.73,{},245443,0,"""Asia""" +2024-12-19,99883,9963,"[\""Charger\"", \""Wireless Mouse\"", \""Phone\""]",1996.72,{},148509,1,"""Asia""" +2023-03-07,99884,2940,"[\""Wireless Mouse\"", \""Monitor\"", \""Keyboard\""]",1228.96,"{\""seasonal\"": \""17%\""}",179893,0,"""Asia""" +2023-03-28,99885,3690,"[\""Charger\"", \""Headphones\""]",564.89,{},38534,1,"""North America""" +2023-07-30,99886,9758,"[\""Charger\"", \""Monitor\"", \""Headphones\""]",2753.61,{},172151,0,"""Africa""" +2024-01-12,99887,4774,"[\""Monitor\"", \""Charger\"", \""Headphones\""]",4291.49,{},36268,0,"""Asia""" +2023-05-09,99888,4139,"[\""Keyboard\"", \""Tablet\""]",603.73,{},215350,0,"""Europe""" +2023-05-02,99889,8418,"[\""Phone\"", \""Tablet\""]",4661.63,"{\""seasonal\"": \""8%\""}",100720,0,"""North America""" +2024-08-20,99890,3029,"[\""Monitor\"", \""Laptop\""]",4108.2,{},66552,0,"""North America""" +2023-09-16,99891,8698,"[\""Monitor\"", \""Headphones\""]",3336.12,{},139432,1,"""Asia""" +2024-05-25,99892,3507,"[\""Phone\"", \""Charger\""]",4334.47,{},127694,1,"""South America""" +2024-03-17,99893,5590,"[\""Keyboard\""]",2901.57,{},170014,1,"""Asia""" +2024-08-13,99894,2178,"[\""Headphones\"", \""Monitor\"", \""Phone\""]",2686.35,"{\""loyalty\"": \""11%\""}",164794,0,"""North America""" +2024-07-17,99895,7814,"[\""Headphones\"", \""Wireless Mouse\"", \""Charger\""]",4460.93,{},280022,1,"""North America""" +2023-12-14,99896,6769,"[\""Wireless Mouse\""]",2677.44,{},225404,0,"""Europe""" +2024-09-20,99897,6224,"[\""Laptop\"", \""Monitor\"", \""Phone\""]",2212.85,"{\""seasonal\"": \""11%\""}",284172,0,"""Africa""" +2024-09-22,99898,1459,"[\""Phone\""]",825.58,"{\""loyalty\"": \""13%\""}",32415,1,"""Europe""" +2023-09-23,99899,8897,"[\""Tablet\"", \""Headphones\"", \""Wireless Mouse\""]",2806.85,{},28827,0,"""North America""" +2023-11-11,99900,2868,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",556.25,{},27759,0,"""South America""" +2024-11-25,99901,8873,"[\""Tablet\""]",1918.73,"{\"": \""8%\""}",163021,0,"""South America""" +2024-07-06,99902,4884,"[\""Charger\""]",1781.42,{},270597,1,"""Asia""" +2023-08-17,99903,3149,"[\""Charger\"", \""Tablet\""]",4678.1,{},55155,1,"""North America""" +2023-03-29,99904,7521,"[\""Charger\""]",3466.53,"{\""promo\"": \""11%\""}",33054,0,"""Africa""" +2024-12-14,99905,9576,"[\""Wireless Mouse\"", \""Headphones\"", \""Tablet\""]",2617.28,{},147373,1,"""Asia""" +2023-05-09,99906,7754,"[\""Keyboard\"", \""Charger\"", \""Laptop\""]",3142.56,"{\"": \""24%\""}",4434,1,"""Asia""" +2024-05-07,99907,276,"[\""Keyboard\"", \""Charger\""]",4340.5,{},279709,1,"""Asia""" +2023-03-05,99908,6970,"[\""Wireless Mouse\"", \""Phone\""]",2264.45,"{\"": \""7%\""}",54708,0,"""North America""" +2024-03-21,99909,387,"[\""Phone\"", \""Tablet\""]",337.37,{},174738,0,"""Asia""" +2024-06-19,99910,2688,"[\""Laptop\""]",2851.08,{},172012,1,"""Africa""" +2023-05-01,99911,4092,"[\""Laptop\"", \""Phone\""]",3657.44,{},4974,1,"""Europe""" +2024-04-23,99912,1844,"[\""Tablet\"", \""Keyboard\""]",1892.98,"{\""promo\"": \""6%\""}",200047,1,"""South America""" +2023-02-19,99913,975,"[\""Monitor\""]",80.33,"{\""promo\"": \""7%\""}",19162,1,"""Africa""" +2024-12-21,99914,1118,"[\""Wireless Mouse\"", \""Charger\""]",1106.09,{},28220,1,"""Asia""" +2023-01-27,99915,4930,"[\""Monitor\"", \""Keyboard\"", \""Headphones\""]",1089.17,"{\""loyalty\"": \""22%\""}",20693,1,"""Africa""" +2024-06-30,99916,6857,"[\""Monitor\"", \""Phone\"", \""Laptop\""]",1570.15,{},125484,0,"""North America""" +2023-10-26,99917,8904,"[\""Phone\"", \""Keyboard\""]",4653.02,"{\""loyalty\"": \""9%\""}",219045,0,"""Africa""" +2023-10-05,99918,8924,"[\""Laptop\"", \""Phone\"", \""Wireless Mouse\""]",3802.35,{},26176,1,"""North America""" +2024-06-07,99919,9008,"[\""Monitor\"", \""Laptop\"", \""Charger\""]",199.53,{},117011,0,"""South America""" +2024-11-22,99920,9558,"[\""Keyboard\"", \""Monitor\""]",4128.0,{},248427,0,"""Europe""" +2024-05-09,99921,4177,"[\""Headphones\"", \""Phone\"", \""Laptop\""]",1309.31,{},45736,1,"""Africa""" +2023-06-28,99922,7911,"[\""Laptop\""]",3888.06,"{\""seasonal\"": \""14%\""}",251362,1,"""North America""" +2024-01-22,99923,4450,"[\""Headphones\""]",3606.07,"{\""promo\"": \""17%\""}",117795,1,"""South America""" +2024-05-11,99924,6519,"[\""Charger\"", \""Headphones\""]",4062.03,"{\"": \""7%\""}",39701,0,"""Africa""" +2023-05-26,99925,3294,"[\""Charger\""]",2919.92,"{\""seasonal\"": \""19%\""}",115123,1,"""Asia""" +2024-05-05,99926,2240,"[\""Keyboard\""]",2030.58,"{\""loyalty\"": \""10%\""}",160101,1,"""North America""" +2023-12-04,99927,294,"[\""Wireless Mouse\""]",3671.23,"{\""seasonal\"": \""16%\""}",296582,0,"""Africa""" +2024-03-14,99928,1754,"[\""Headphones\""]",2870.78,"{\""loyalty\"": \""8%\""}",118642,1,"""Asia""" +2023-09-29,99929,9201,"[\""Headphones\""]",2166.89,{},130129,1,"""South America""" +2023-09-11,99930,2809,"[\""Laptop\"", \""Monitor\"", \""Keyboard\""]",1720.15,{},30694,1,"""South America""" +2024-06-23,99931,141,"[\""Laptop\"", \""Headphones\""]",157.45,"{\""seasonal\"": \""19%\""}",100578,0,"""Europe""" +2023-07-18,99932,1384,"[\""Wireless Mouse\"", \""Laptop\""]",1487.32,"{\""seasonal\"": \""18%\""}",40854,1,"""South America""" +2023-09-15,99933,1997,"[\""Keyboard\"", \""Charger\""]",1415.31,"{\"": \""18%\""}",112836,0,"""Africa""" +2024-08-13,99934,5477,"[\""Headphones\"", \""Phone\""]",2061.44,{},40238,0,"""Asia""" +2023-06-03,99935,82,"[\""Tablet\"", \""Keyboard\""]",2615.24,{},225412,1,"""Asia""" +2023-05-21,99936,5768,"[\""Headphones\"", \""Charger\"", \""Tablet\""]",3455.76,"{\""loyalty\"": \""28%\""}",93842,1,"""Africa""" +2023-04-28,99937,2316,"[\""Phone\"", \""Keyboard\"", \""Wireless Mouse\""]",2283.87,{},163045,0,"""South America""" +2023-10-20,99938,2741,"[\""Charger\""]",1986.18,{},267519,1,"""Europe""" +2023-12-13,99939,3328,"[\""Tablet\""]",3628.83,"{\""loyalty\"": \""21%\""}",226543,1,"""South America""" +2023-09-19,99940,5063,"[\""Keyboard\"", \""Tablet\""]",1817.19,"{\""promo\"": \""7%\""}",226609,0,"""South America""" +2024-09-25,99941,1473,"[\""Keyboard\""]",2560.45,"{\"": \""30%\""}",133849,0,"""South America""" +2024-04-08,99942,8591,"[\""Charger\"", \""Tablet\"", \""Laptop\""]",4169.54,{},136367,0,"""Europe""" +2024-11-25,99943,2067,"[\""Phone\""]",4978.94,"{\""promo\"": \""7%\""}",249196,0,"""North America""" +2024-01-30,99944,9651,"[\""Phone\""]",2340.31,{},234239,0,"""South America""" +2023-01-14,99945,1141,"[\""Charger\""]",228.97,{},240435,0,"""South America""" +2024-10-07,99946,1987,"[\""Charger\""]",1124.75,"{\""seasonal\"": \""27%\""}",120211,0,"""South America""" +2023-10-21,99947,6258,"[\""Laptop\"", \""Monitor\""]",3514.72,"{\"": \""19%\""}",186313,1,"""Africa""" +2024-04-04,99948,3562,"[\""Monitor\""]",2324.98,"{\""loyalty\"": \""14%\""}",125244,1,"""Africa""" +2024-07-14,99949,9474,"[\""Phone\"", \""Charger\"", \""Wireless Mouse\""]",1935.9,{},126957,0,"""Africa""" +2024-11-12,99950,101,"[\""Keyboard\"", \""Tablet\""]",785.93,"{\""loyalty\"": \""24%\""}",129301,0,"""Europe""" +2023-05-31,99951,2138,"[\""Phone\"", \""Monitor\"", \""Headphones\""]",1217.43,"{\""seasonal\"": \""16%\""}",100012,1,"""Europe""" +2024-01-06,99952,6769,"[\""Tablet\""]",1182.33,"{\""loyalty\"": \""28%\""}",105363,0,"""Africa""" +2024-02-14,99953,5593,"[\""Monitor\"", \""Headphones\"", \""Tablet\""]",434.29,{},6109,1,"""Asia""" +2024-06-14,99954,5258,"[\""Tablet\""]",4161.84,"{\"": \""9%\""}",113952,0,"""Europe""" +2024-07-01,99955,3522,"[\""Tablet\"", \""Headphones\""]",1661.42,{},256486,0,"""North America""" +2024-02-20,99956,8689,"[\""Charger\""]",4891.3,{},139670,0,"""South America""" +2024-08-17,99957,5844,"[\""Keyboard\"", \""Monitor\""]",996.44,{},266189,0,"""Europe""" +2023-03-18,99958,2958,"[\""Tablet\""]",3748.04,"{\""loyalty\"": \""14%\""}",264727,0,"""Africa""" +2023-12-01,99959,1813,"[\""Headphones\""]",2670.77,{},240889,1,"""Europe""" +2024-11-21,99960,9563,"[\""Tablet\"", \""Monitor\"", \""Keyboard\""]",3322.99,"{\""seasonal\"": \""6%\""}",223426,1,"""Africa""" +2024-01-21,99961,6616,"[\""Keyboard\"", \""Laptop\"", \""Phone\""]",617.96,{},192704,1,"""Africa""" +2024-08-13,99962,3442,"[\""Tablet\""]",135.65,{},264623,1,"""Europe""" +2023-03-18,99963,9880,"[\""Phone\"", \""Tablet\"", \""Charger\""]",274.18,{},272900,1,"""Europe""" +2023-09-25,99964,1138,"[\""Monitor\"", \""Charger\""]",2937.83,{},168350,0,"""North America""" +2024-07-08,99965,9577,"[\""Headphones\""]",1866.34,"{\""seasonal\"": \""17%\""}",24396,0,"""Asia""" +2024-01-30,99966,7299,"[\""Monitor\""]",1270.0,{},259434,1,"""Asia""" +2023-11-11,99967,1102,"[\""Tablet\""]",2048.61,{},192159,0,"""Asia""" +2023-07-24,99968,9118,"[\""Headphones\"", \""Charger\""]",4728.41,"{\""promo\"": \""17%\""}",131148,1,"""Africa""" +2023-06-02,99969,3062,"[\""Headphones\"", \""Keyboard\"", \""Wireless Mouse\""]",3118.67,"{\""seasonal\"": \""26%\""}",81653,0,"""Europe""" +2024-11-30,99970,721,"[\""Monitor\""]",1772.37,"{\""promo\"": \""13%\""}",83833,0,"""Europe""" +2023-01-29,99971,947,"[\""Phone\""]",2872.56,"{\""seasonal\"": \""30%\""}",236860,0,"""North America""" +2024-07-05,99972,7805,"[\""Monitor\"", \""Wireless Mouse\"", \""Keyboard\""]",3458.0,{},171217,1,"""Africa""" +2024-12-11,99973,9094,"[\""Keyboard\"", \""Wireless Mouse\""]",4031.93,"{\""seasonal\"": \""5%\""}",44719,0,"""Europe""" +2024-12-01,99974,4738,"[\""Charger\""]",3891.38,"{\""promo\"": \""16%\""}",264789,1,"""Asia""" +2023-03-12,99975,4606,"[\""Laptop\"", \""Phone\""]",821.56,{},78681,1,"""North America""" +2024-12-11,99976,3416,"[\""Monitor\""]",3804.46,{},146043,1,"""Africa""" +2023-06-22,99977,8380,"[\""Wireless Mouse\"", \""Phone\""]",4021.32,{},242979,1,"""South America""" +2023-07-22,99978,9744,"[\""Keyboard\"", \""Laptop\"", \""Monitor\""]",3570.7,"{\""promo\"": \""23%\""}",117588,1,"""North America""" +2023-07-17,99979,5014,"[\""Laptop\"", \""Phone\""]",2175.76,"{\""promo\"": \""18%\""}",67945,1,"""South America""" +2023-10-28,99980,3868,"[\""Phone\"", \""Monitor\""]",1874.75,"{\""loyalty\"": \""24%\""}",3872,0,"""Asia""" +2024-05-20,99981,6756,"[\""Headphones\""]",3578.23,"{\""seasonal\"": \""27%\""}",286055,1,"""Africa""" +2024-07-05,99982,5017,"[\""Wireless Mouse\"", \""Tablet\"", \""Headphones\""]",3418.24,{},172200,1,"""North America""" +2024-02-04,99983,8566,"[\""Tablet\"", \""Charger\""]",301.79,{},277165,0,"""South America""" +2024-12-19,99984,3394,"[\""Headphones\"", \""Laptop\"", \""Tablet\""]",972.68,{},209006,0,"""Asia""" +2023-09-27,99985,7735,"[\""Laptop\""]",774.97,"{\"": \""10%\""}",3651,0,"""Africa""" +2024-04-10,99986,8400,"[\""Phone\""]",1224.96,"{\""loyalty\"": \""24%\""}",288244,0,"""South America""" +2024-02-26,99987,7109,"[\""Monitor\"", \""Laptop\"", \""Tablet\""]",4107.54,{},149235,1,"""South America""" +2023-09-12,99988,2309,"[\""Tablet\""]",1378.9,{},259958,1,"""Africa""" +2023-09-08,99989,6892,"[\""Keyboard\"", \""Monitor\"", \""Tablet\""]",4097.3,{},191676,1,"""South America""" +2024-07-04,99990,9139,"[\""Headphones\"", \""Charger\""]",1051.27,"{\"": \""19%\""}",288844,0,"""South America""" +2023-07-25,99991,2638,"[\""Phone\"", \""Headphones\""]",1049.02,"{\""seasonal\"": \""7%\""}",271565,1,"""Africa""" +2023-11-15,99992,3472,"[\""Tablet\"", \""Wireless Mouse\""]",1123.82,{},77067,0,"""North America""" +2023-02-19,99993,637,"[\""Keyboard\"", \""Tablet\""]",4443.78,"{\""seasonal\"": \""7%\""}",101995,0,"""North America""" +2024-02-04,99994,486,"[\""Laptop\"", \""Headphones\""]",4421.9,{},96222,1,"""Asia""" +2024-08-21,99995,5321,"[\""Laptop\"", \""Phone\""]",2794.05,{},191759,1,"""Africa""" +2023-06-05,99996,4671,"[\""Tablet\"", \""Wireless Mouse\"", \""Laptop\""]",3720.59,{},227620,0,"""South America""" +2023-08-10,99997,6768,"[\""Charger\"", \""Phone\"", \""Laptop\""]",4589.85,{},200154,1,"""North America""" +2023-09-19,99998,860,"[\""Keyboard\""]",3490.74,"{\""seasonal\"": \""27%\""}",228226,1,"""South America""" +2024-01-27,99999,6173,"[\""Wireless Mouse\""]",1983.29,"{\"": \""7%\""}",154614,0,"""Europe""" +2024-02-11,100000,3728,"[\""Laptop\"", \""Wireless Mouse\"", \""Monitor\""]",1330.35,{},193770,1,"""North America""" \ No newline at end of file diff --git a/web-local/tests/sources/source-blankFile.spec.ts b/web-local/tests/sources/source-blankFile.spec.ts new file mode 100644 index 00000000000..9d096357e8a --- /dev/null +++ b/web-local/tests/sources/source-blankFile.spec.ts @@ -0,0 +1,68 @@ +import { test } from '@playwright/test'; +import { test as RillTest } from '../utils/test'; +import { addFileWithCheck, waitForTable } from '../utils/sourceHelpers'; +import { renameFileUsingMenu, actionUsingMenu, checkExistInConnector } from '../utils/commonHelpers'; + +/// Blank File test +/// In this test we create a `untilted_file`, create a second one to ensure `_1` is appended +/// Following that we rename and modify the contents of a file to a source +/// Re-create a file to ensure it makes a `untitiled_file`, then duplicate it. + +/// Need to add checks for the Sources + +test.describe('Creating a blank file... and making a source.', () => { + RillTest('Creating Blank file', async ({ page }) => { + // create blank file + await addFileWithCheck(page, 'untitled_file'); + // Wait for the file `untitled_file` to be present on the page + await page.waitForSelector('li[aria-label="/untitled_file Nav Entry"]', { state: 'visible' }); + + //create another blank file and expected untitled_file_1 + await addFileWithCheck(page, 'untitled_file_1'); + await page.waitForSelector('li[aria-label="/untitled_file_1 Nav Entry"]', { state: 'visible' }); + + + await renameFileUsingMenu(page, '/untitled_file', 'source.yaml') + + await page.waitForSelector('li[aria-label="/source.yaml Nav Entry"]', { state: 'visible' }); + console.log('File renamed successfully to source.yaml!'); + + const textBox = page + .getByLabel('Code editor') // Locate the labeled parent + .getByRole('textbox'); // Find the inner textbox + + // Wait for the textbox to be visible + await textBox.waitFor({ state: 'visible' }); + + // Rewrite the contents of the textbox + await textBox.fill(`# Testing manual file creation + + type: source + + connector: "duckdb" + sql: "select * from read_csv('gs://playwright-gcs-qa/AdBids_csv.csv', auto_detect=true, ignore_errors=1, header=true)"`); + + console.log('Successfully Modified Contents. Checking for data.'); + + + await waitForTable(page, '/source.yaml', ['timestamp', 'id', 'bid_price', 'domain', 'publisher']); + + //CREATING A NEW BLANK FILE, EXPECT IT TO BE `untitled_file` as we modified the original + + console.log("Creating a new file, expecting `untitled_file`") + // create new blank file + await addFileWithCheck(page, 'untitled_file'); + await page.waitForSelector('li[aria-label="/untitled_file Nav Entry"]', { state: 'visible' }); + + + // TEST FOR DUPLICATES and refresh + + // Locate and click the ellipsis menu button for `untitled_file` + await actionUsingMenu(page, "/source.yaml", "Duplicate") + await page.getByText("View this source").click(); + + // checks? + await page.waitForSelector('li[aria-label="/source (copy).yaml Nav Entry"]', { state: 'visible' }); + await checkExistInConnector(page, "duckdb", "main_db", "source (copy)"); + }); +}); diff --git a/web-local/tests/utils/commonHelpers.ts b/web-local/tests/utils/commonHelpers.ts index b66ce0dfd29..54cf828f2ad 100644 --- a/web-local/tests/utils/commonHelpers.ts +++ b/web-local/tests/utils/commonHelpers.ts @@ -1,5 +1,6 @@ import { asyncWaitUntil } from "@rilldata/web-common/lib/waitUtils"; import type { Page } from "playwright"; +import { expect } from "@playwright/test"; export async function openFileNavEntryContextMenu( page: Page, @@ -19,7 +20,7 @@ export async function clickMenuButton( text: string, role: "menuitem" | "option" = "menuitem", ) { - await page.getByRole(role, { name: text }).click(); + await page.getByRole(role, { name: text }).first().click(); } export async function waitForProfiling( @@ -139,3 +140,44 @@ export async function updateCodeEditor(page: Page, code: string) { await page.keyboard.insertText(code); await page.waitForTimeout(600); } + +export async function duplicateFileUsingMenu(page: Page, filePath: string) { + // open context menu and click rename + await openFileNavEntryContextMenu(page, filePath); + await clickMenuButton(page, "Duplicate"); +} + +export async function refreshFileUsingMenu(page: Page, filePath: string) { + // open context menu and click rename + await openFileNavEntryContextMenu(page, filePath); + await clickMenuButton(page, "Refresh source"); +} + +//maybe better to generalize actions, so for duplicate, rename, refresh +export async function actionUsingMenu( + page: Page, + filePath: string, + action: string, +) { + // open context menu and click rename + await openFileNavEntryContextMenu(page, filePath); + await clickMenuButton(page, action); +} + +export async function checkExistInConnector( + page: Page, + connector: string, + db: string, + fileName: string, +) { + await page.locator(`li[aria-label="${connector}"]`).click(); + await page.locator(`li[aria-label="${db}"]`).click(); + await page.locator(`li[aria-label^="${db}."]`).click(); //table name dynamic + await expect( + page + .locator( + `[aria-label*="${connector}-${db}."][aria-label*=".${fileName}"]`, + ) + .first(), + ).toBeVisible(); //table name dynamic +} diff --git a/web-local/tests/utils/inspectorHelpers.ts b/web-local/tests/utils/inspectorHelpers.ts new file mode 100644 index 00000000000..e2e60013bbf --- /dev/null +++ b/web-local/tests/utils/inspectorHelpers.ts @@ -0,0 +1,69 @@ +import { expect } from "@playwright/test"; +import type { Page } from "playwright"; + +// checking source inspector rows and column values. +export async function checkInspectorSource( + page: Page, + expectedRows: string, //expected row count + expectedColumns: string, //expected column_count + sourceColumns: Array, +) { + // check row count + const inspectorRows = await page.getByRole("cell", { name: /rows$/i }); + const fullTextRow = await inspectorRows.textContent(); + + // Extract the numeric part from the string + const numericValueRow = fullTextRow?.match(/\d{1,3}(,\d{3})*/)?.[0]; + expect(numericValueRow).toBe(expectedRows); + + // check column count + const inspectorCols = await page.getByRole("cell", { name: /columns$/i }); + const fullTextCol = await inspectorCols.textContent(); + + // Extract the numeric part from the string + const numericValueCol = fullTextCol?.match(/\d{1,3}(,\d{3})*/)?.[0]; + expect(numericValueCol).toBe(expectedColumns); + + // checking the column details, + await Promise.all([testColumnsAndChartnDiv(page, sourceColumns)]); +} + +// function that opens each column and checks if not empty. Need to check with CH source to see if this is actually working. //closes div +async function testColumnsAndChartnDiv(page, expectedColumns) { + for (const columnName of expectedColumns) { + // Click the button by its name + await page.getByRole("button", { name: columnName }).click(); + + // Wait for the column div to be visible + const presentationDiv = await page.waitForSelector( + 'div[role="presentation"]', + { state: "visible" }, + ); + // Assert that the div is not empty (not falsy) IE: has contents + expect(presentationDiv).not.toBeFalsy(); + + // Close the column div by clicking the button again + await page.getByRole("button", { name: columnName }).click(); + } +} + +// checking model inspector rows and column values. +export async function checkInspectorModel( + page: Page, + expectedRows: string, //expected row count + expectedColumns: string, //expected column_count + sourceColumns: Array, +) { + const inspectorWrapper = await page.locator(".inspector-wrapper"); + + // Check if the text '100,000 rows' and '16 columns' exists within the container, needed to change as UI changes a bit from source + await expect( + inspectorWrapper.locator(`text="${expectedRows} rows"`), + ).toHaveCount(1); + await expect( + inspectorWrapper.locator(`text="${expectedColumns} columns"`), + ).toHaveCount(1); + + // checking the column details for not empty, + await Promise.all([testColumnsAndChartnDiv(page, sourceColumns)]); +} diff --git a/web-local/tests/utils/sourceHelpers.ts b/web-local/tests/utils/sourceHelpers.ts index 6f4bf5b4678..0c0b7c80411 100644 --- a/web-local/tests/utils/sourceHelpers.ts +++ b/web-local/tests/utils/sourceHelpers.ts @@ -7,7 +7,11 @@ import { asyncWait } from "@rilldata/web-common/lib/waitUtils"; import path from "node:path"; import type { Page } from "playwright"; import { fileURLToPath } from "url"; -import { clickModalButton, waitForProfiling } from "./commonHelpers"; +import { + clickModalButton, + waitForProfiling, + getFileNavEntry, +} from "./commonHelpers"; import { waitForFileNavEntry } from "./waitHelpers"; const __filename = fileURLToPath(import.meta.url); @@ -86,3 +90,663 @@ export async function waitForSource( waitForProfiling(page, name, columns), ]); } + +//additions by Roy + +export async function addFileWithCheck( + page: Page, + file: string, //used to check URL for creation +) { + const filePath = `/files/${file}`; + // add asset button + await page.getByLabel("Add Asset").click(); + // Hover over "More" to reveal the dropdown menu + await page.locator("text=More").hover(); + // Click the "Blank file" button + await page.locator("text=Blank file").click(); + //check the URL for created file. + await page.waitForURL(`**${filePath}`); +} + +export async function addFolderWithCheck( + page: Page, + file: string, //used to check URL for creation +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // Hover over "More" to reveal the dropdown menu + await page.locator("text=More").hover(); + // Click the "Blank file" button + await page.getByRole("menuitem", { name: "Folder" }).click(); + // how to check folder...? + const entityLocator = getFileNavEntry(page, file); + await entityLocator.isVisible(); +} + +export async function waitForTable( + page: Page, + filePath: string, + columns: Array, +) { + const [, fileName] = splitFolderAndFileName(filePath); + const name = extractFileName(fileName); + + await Promise.all([ + page.getByText("View this source").click(), + waitForFileNavEntry(page, filePath, false), + waitForProfiling(page, name, columns), //this one is imported bc failed sources will still navigate + ]); +} + +//S3, GCS, ABS +export async function cloud( + page: Page, + file: string, + comp: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator(`button#${comp}`).click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + console.log("opened the UI"); + + const inputField = page.locator("input#path"); + // Modify the text + // Get the current working directory + await inputField.fill( + comp === "gcs" + ? `gs://playwright-${comp}-qa/${file}` + : `${comp}://playwright-${comp}-qa/${file}`, + ); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#name"); + const fileName = file.split(".")[0]; + + // Modify the text + await inputField2.fill(fileName); + + // add source menu item + await page + .locator(`button[form="add-data-${comp}-form"]`) + .waitFor({ state: "visible" }); + await page.locator(`button[form="add-data-${comp}-form"]`).click(); + // await page.waitForTimeout(5000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +// Additions MySQL +export async function mySQLDataset( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#mysql").click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + const inputField = page.locator("input#sql"); + // Modify the text + await inputField.fill(`SELECT * FROM ${file};`); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#dsn"); + + // Modify the text + await inputField2.fill("root:rootpass@tcp(127.0.0.1:3306)/default"); + + // Locate the source_name text box and modify + const inputField3 = page.locator("input#name"); + + // Modify the text + await inputField3.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-mysql-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-mysql-form"]').click(); + await page.waitForTimeout(2000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +// Additions SQLITE +export async function sqlLiteDataset( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#sqlite").click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + console.log("opened the UI"); + + const currentDir = process.cwd(); // Returns the directory where the script is executed + const dbPath = path.join(currentDir, "mydb.sqlite"); + + const inputField = page.locator("input#db"); + // Modify the text + // Get the current working directory + + await inputField.fill(dbPath); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#table"); + + // Modify the text + await inputField2.fill(`${file}`); + + // Locate the source_name text box and modify + const inputField3 = page.locator("input#name"); + + // Modify the text + await inputField3.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-sqlite-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-sqlite-form"]').click(); + await page.waitForTimeout(5000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +// Additions postgre +export async function pgDataset( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#postgres").click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + console.log("opened the UI"); + + const inputField = page.locator("input#sql"); + // Modify the text + // Get the current working directory + await inputField.fill(`SELECT * FROM ${file};`); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#database_url"); + + // Modify the text + await inputField2.fill( + "postgresql://postgres:postgrespass@localhost:5432/default", + ); + + // Locate the source_name text box and modify + const inputField3 = page.locator("input#name"); + + // Modify the text + await inputField3.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-postgres-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-postgres-form"]').click(); + await page.waitForTimeout(5000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +export async function DuckDB( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#duckdb").click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + const currentDir = process.cwd(); // Returns the directory where the script is executed + const dbPath = path.resolve(currentDir, "tests/data/playwright.db"); //need to fix this when ready to deploy + + const inputField = page.locator("input#db"); + + // Modify the text + // Get the current working directory + await inputField.fill(dbPath); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#sql"); + + // Modify the text + await inputField2.fill(`SELECT * FROM ${file};`); + + // Locate the source_name text box and modify + const inputField3 = page.locator("input#name"); + + // Modify the text + await inputField3.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-duckdb-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-duckdb-form"]').click(); + // await page.waitForTimeout(5000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +export async function MotherDuck( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#motherduck").click(); + + // input the needed details for mysql + // Locate the SQL text box and modify + const currentDir = process.cwd(); // Returns the directory where the script is executed + const dbPath = path.resolve(currentDir, "tests/data/playwright.db"); //need to fix this when ready to deploy + + const inputField = page.locator("input#dsn"); + + // Modify the text + // Get the current working directory + await inputField.fill(dbPath); + + // Locate the DSN text box and modify + const inputField2 = page.locator("input#sql"); + + // Modify the text + await inputField2.fill(`SELECT * FROM ${file};`); + + // Locate the source_name text box and modify + const inputField3 = page.locator("input#token"); + // Modify the text + await inputField3.fill(""); + + // Locate the source_name text box and modify + const inputField4 = page.locator("input#name"); + // Modify the text + await inputField4.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-motherduck-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-motherduck-form"]').click(); + // await page.waitForTimeout(5000); // Waits for 5000 milliseconds (5 seconds) -- refreshing page bc idk whats happnening forever load + // await page.reload(); + + // TODO: infer duplicate + //currently we dont check anything when duplicate source is added, or sometimes it overwrites. +} + +export async function BigQuery( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#bigquery").click(); + + const inputField = page.locator("input#sql"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#project_id"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#name"); + // Modify the text + await inputField3.fill(`${file}`); + // add source menu item + await page + .locator('button[form="add-data-bigquery-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-bigquery-form"]').click(); +} + +export async function Athena( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#athena").click(); + + const inputField = page.locator("input#sql"); + // Modify the text + await inputField.fill(""); + const inputField2 = page.locator("input#name"); + // Modify the text + await inputField2.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-athena-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-athena-form"]').click(); +} + +export async function Redshift( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#redshift").click(); + + const inputField = page.locator("input#sql"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#output-location"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#database"); + // Modify the text + await inputField3.fill(""); + + const inputField4 = page.locator("input#role_arn"); + // Modify the text + await inputField4.fill(""); + + const inputField5 = page.locator("input#name"); + // Modify the text + await inputField5.fill(`${file}`); + // add source menu item + await page + .locator('button[form="add-data-redshift-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-redshift-form"]').click(); +} + +export async function Snowflake( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#snowflake").click(); + + const inputField = page.locator("input#sql"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#name"); + // Modify the text + await inputField2.fill(`${file}`); + + //optional + const inputField3 = page.locator("input#dsn"); + // Modify the text + await inputField3.fill(""); + + // add source menu item + await page + .locator('button[form="add-data-snowflake-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-snowflake-form"]').click(); +} + +export async function Salesforce( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#salesforce").click(); + + const inputField = page.locator("input#soql"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#sobject"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#queryAll"); //checkbox + // Modify the text + await inputField3.fill(""); + + const inputField4 = page.locator("input#username"); + // Modify the text + await inputField4.fill(""); + + const inputField5 = page.locator("input#password"); + // Modify the text + await inputField5.fill(""); + + const inputField6 = page.locator("input#name"); + // Modify the text + await inputField6.fill(`${file}`); + + // add source menu item + await page + .locator('button[form="add-data-salesforce-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-salesforce-form"]').click(); +} + +export async function HTTPS( + page: Page, + file: string, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#https").click(); + + const inputField = page.locator("input#path"); + // Modify the text + await inputField.fill(""); + const inputField2 = page.locator("input#name"); + // Modify the text + await inputField2.fill(`${file}`); + // add source menu item + await page + .locator('button[form="add-data-https-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-https-form"]').click(); +} + +/// OLAP ENGINES (also need to test making a manual file, and DSN) +export async function ClickHouse( + page: Page, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#clickhouse").click(); + + const inputField = page.locator("input#host"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#port"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#username"); + // Modify the text + await inputField3.fill(""); + + const inputField4 = page.locator("input#password"); + // Modify the text + await inputField4.fill(""); + + const inputField5 = page.locator("input#ssl"); + // Modify the text + await inputField5.fill(""); + + const inputField6 = page.locator("input#database"); + // Modify the text + await inputField6.fill(""); + + // add source menu item + await page + .locator('button[form="add-data-clickhouse-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-clickhouse-form"]').click(); +} + +export async function Druid( + page: Page, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#druid").click(); + + const inputField = page.locator("input#host"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#port"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#username"); + // Modify the text + await inputField3.fill(""); + + const inputField4 = page.locator("input#password"); + // Modify the text + await inputField4.fill(""); + + const inputField5 = page.locator("input#ssl"); + // Modify the text + await inputField5.fill(""); + + // add source menu item + await page + .locator('button[form="add-data-druid-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-druid-form"]').click(); +} + +export async function Pinot( + page: Page, + // isDuplicate = false, + // keepBoth = false, +) { + // add asset button + await page.getByLabel("Add Asset").click(); + // add source menu item + await page.getByLabel("Add Source").click(); + // click local file button + await page.locator("button#pinot").click(); + + const inputField = page.locator("input#host"); + // Modify the text + await inputField.fill(""); + + const inputField2 = page.locator("input#port"); + // Modify the text + await inputField2.fill(""); + + const inputField3 = page.locator("input#username"); + // Modify the text + await inputField3.fill(""); + + const inputField4 = page.locator("input#password"); + // Modify the text + await inputField4.fill(""); + + const inputField5 = page.locator("input#ssl"); + // Modify the text + await inputField5.fill(""); + + // add source menu item + await page + .locator('button[form="add-data-pinot-form"]') + .waitFor({ state: "visible" }); + await page.locator('button[form="add-data-pinot-form"]').click(); +} diff --git a/web-local/tests/utils/waitHelpers.ts b/web-local/tests/utils/waitHelpers.ts index 132cfa1420a..810c2d52319 100644 --- a/web-local/tests/utils/waitHelpers.ts +++ b/web-local/tests/utils/waitHelpers.ts @@ -9,6 +9,7 @@ export async function waitForFileNavEntry( navigated: boolean, ) { await page.getByLabel(`${filePath} Nav Entry`).waitFor(); + if (navigated) { await page.waitForURL(new RegExp(`/files${filePath}`)); }